From 4c23da2851c707ba7a64a2fe00c902ee61efad69 Mon Sep 17 00:00:00 2001 From: Philip Mateescu Date: Sat, 7 Feb 2026 16:11:23 +0800 Subject: [PATCH 1/5] adds script to generate samples for test fixtures out of the discogs files script also captures the extracted ids and thus ability to refresh the sample files from new discog dumps Used #AI-Codex --- README.md | 51 ++ alternatives/dotnet/README.md | 6 + tests/fixtures/generate_fixtures.py | 1097 +++++++++++++++++++++++++++ 3 files changed, 1154 insertions(+) create mode 100644 tests/fixtures/generate_fixtures.py diff --git a/README.md b/README.md index 3f6d200..f24cd9e 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,57 @@ Processing releases: 78%|█████████████████ The total amount and percentages might be off a bit as the exact amount is not known while reading the file. Specifying `--apicounts` will provide more accurate predictions by getting the latest amounts from the Discogs API. +### Generating XML fixtures + +For parity testing between the Python and .NET parsers, you can generate a small, +coherent set of XML fixtures (with relationships preserved across files). + +Script: `tests/fixtures/generate_fixtures.py` + +Example (runs against `tests/samples`): + +```sh +uv run --with lxml python tests/fixtures/generate_fixtures.py \ + --input-dir tests/samples \ + --output-dir tests/fixtures \ + --size 25 \ + --complexity highest +``` + +Options: +- `--size`: number of releases to seed (default 25). +- `--complexity`: `highest` (default), `random`, or `mixed`. + - `highest`: pick releases with the largest overall feature count (tracks, artists, labels, + identifiers, videos, etc.). If availability scan is enabled, prioritizes releases that + reference IDs present in the available dumps. + - `random`: uniform random sample (deterministic with `--seed`). + - `mixed`: combine a top slice of complex releases with a random remainder. Controlled by + `--mixed-ratio`. +- `--mixed-ratio`: only used when `--complexity mixed`. Fraction of releases taken from the + "top complexity" set; the remainder is random. Default `0.7`. +- `--availability-scan`: `auto` (default), `always`, or `never`. + - `always`: scan artists/labels/masters to prefer releases whose references exist in those + files (best coherence, slower on big dumps). + - `never`: skip scanning; selection is purely by complexity/randomness. + - `auto`: only scan if the combined size of artists/labels/masters is below + `--availability-max-mb`. +- `--availability-max-mb`: size threshold used when `--availability-scan auto` (default 256). +- `--seed`: RNG seed used for deterministic sampling (default 1). +- `--input-dir`: folder containing the Discogs dumps (default `tests/samples`). +- `--output-dir`: folder to write fixtures (default `tests/fixtures`). +- `--progress-every`: print progress every N parsed entities (default 50,000; set to 0 to disable). +- `--manifest`: reuse an existing `manifest.json` to extract exactly the listed IDs. + In this mode, selection/complexity options are ignored and no graph expansion + is performed; the script only pulls the specified entities from the dumps. + +Outputs: +- Fixture XML files are written to `tests/fixtures/`. +- A `tests/fixtures/manifest.json` is produced with IDs, counts, and missing + references for debugging. + +The script supports both `.xml` and `.xml.gz` files and preserves XML header/doctype/namespace +if present. To run against the latest dumps in `./tmp`, use `--input-dir ./tmp`. + ### Importing If `pv` is available it will be used to display progress during import. diff --git a/alternatives/dotnet/README.md b/alternatives/dotnet/README.md index 4793523..500bd5f 100644 --- a/alternatives/dotnet/README.md +++ b/alternatives/dotnet/README.md @@ -67,3 +67,9 @@ to the executable: `discogs /tmp/discogs_20200806_artists.xml.gz /tmp/discogs_20 Currently, the program exports the csv files in the same folder as each of the original xml files. If you would like the csv files to be compressed to `.csv.gz`, pass the `--gz` argument: `discogs --gz /tmp/discogs_20200806_artists.xml.gz`. + +## Generating XML fixtures + +To generate sample XML files for parity testing, +see the `Generating XML fixtures` section in the [Python README](../python/README.md). + diff --git a/tests/fixtures/generate_fixtures.py b/tests/fixtures/generate_fixtures.py new file mode 100644 index 0000000..2e91d86 --- /dev/null +++ b/tests/fixtures/generate_fixtures.py @@ -0,0 +1,1097 @@ +#!/usr/bin/env python3 +""" +Generate coherent Discogs XML fixtures by sampling releases and closing references. + +Example: + uv run python tests/fixtures/generate_fixtures.py \ + --input-dir tests/samples \ + --output-dir tests/fixtures \ + --size 25 \ + --complexity highest +""" + +from __future__ import annotations + +import argparse +import gzip +import json +import random +import re +import sys +from dataclasses import dataclass +from datetime import datetime, timezone +from pathlib import Path +from typing import Dict, Iterable, List, Optional, Sequence, Tuple +import time +from xml.sax.saxutils import escape as xml_escape + +from lxml import etree + + +@dataclass +class SourceInfo: + path: Path + preamble_lines: List[str] + root_tag: str + root_attrib: Dict[str, str] + nsmap: Dict[Optional[str], str] + + +@dataclass +class Progress: + label: str + every: int + count: int = 0 + start: float = 0.0 + + def __post_init__(self) -> None: + """Initialize timing and emit a start message.""" + self.start = time.perf_counter() + print(f"{self.label}: starting", file=sys.stderr) + + def tick(self, n: int = 1) -> None: + """Increment progress and emit a periodic message.""" + if self.every <= 0: + return + self.count += n + if self.count % self.every == 0: + elapsed = max(time.perf_counter() - self.start, 0.001) + rate = self.count / elapsed + print( + f"{self.label}: {self.count} items ({rate:,.1f}/s)", + file=sys.stderr, + ) + + def finish(self) -> None: + """Emit a completion message with total rate.""" + elapsed = max(time.perf_counter() - self.start, 0.001) + rate = self.count / elapsed if self.count else 0.0 + print( + f"{self.label}: done {self.count} items in {elapsed:.1f}s ({rate:,.1f}/s)", + file=sys.stderr, + ) + +def make_progress(label: str, every: int) -> Optional[Progress]: + """Create a Progress helper or return None when disabled.""" + if every <= 0: + return None + return Progress(label, every) + + +def open_xml(path: Path): + """Open an XML file, transparently handling .gz inputs.""" + if str(path).endswith(".gz"): + return gzip.open(path, "rb") + return path.open("rb") + + +def extract_preamble(path: Path, max_bytes: int = 65536) -> List[str]: + """Return XML declaration and DOCTYPE lines from the file header.""" + with open_xml(path) as fp: + data = fp.read(max_bytes) + text = data.decode("utf-8", errors="replace") + parts: List[str] = [] + for match in re.finditer(r"<\?xml[^?]*\?>|]*>", text, re.IGNORECASE): + parts.append(match.group(0).strip()) + return parts + + +def get_root_info(path: Path) -> Tuple[str, Dict[str, str], Dict[Optional[str], str]]: + """Extract root tag, attributes, and namespace map from an XML file.""" + with open_xml(path) as fp: + context = etree.iterparse(fp, events=("start",), huge_tree=True) + _, root = next(context) + return root.tag, dict(root.attrib), dict(root.nsmap) + + +def qname(tag: str, nsmap: Dict[Optional[str], str]) -> str: + """Convert a namespace-qualified tag into a prefixed name when possible.""" + if tag.startswith("{"): + uri, local = tag[1:].split("}", 1) + prefix = None + for k, v in nsmap.items(): + if v == uri and k is not None: + prefix = k + break + if prefix: + return f"{prefix}:{local}" + return local + return tag + + +def build_root_tag( + tag: str, attrib: Dict[str, str], nsmap: Dict[Optional[str], str] +) -> Tuple[str, str]: + """Build start/end root tags, preserving attributes and namespaces.""" + qn = qname(tag, nsmap) + attrs: List[str] = [] + for k, v in attrib.items(): + ak = qname(k, nsmap) if k.startswith("{") else k + attrs.append(f'{ak}="{xml_escape(v)}"') + for prefix, uri in nsmap.items(): + if prefix is None: + attrs.append(f'xmlns="{xml_escape(uri)}"') + else: + attrs.append(f'xmlns:{prefix}="{xml_escape(uri)}"') + attr_text = "" + if attrs: + attr_text = " " + " ".join(attrs) + start = f"<{qn}{attr_text}>" + end = f"" + return start, end + + +def iter_entities( + path: Path, tag: str, progress: Optional[Progress] = None +) -> Iterable[etree._Element]: + """Yield entities for a given tag using streaming parse and cleanup.""" + with open_xml(path) as fp: + context = etree.iterparse(fp, tag=tag, events=("end",), huge_tree=True) + for _, element in context: + if progress is not None: + progress.tick() + yield element + element.clear() + for ancestor in element.xpath("ancestor-or-self::*"): + while ancestor.getprevious() is not None: + del ancestor.getparent()[0] + + +def xpath_count(element: etree._Element, expr: str) -> int: + """Return integer count for an XPath expression.""" + return int(element.xpath(f"count({expr})")) + + +def ln(name: str) -> str: + """Build a local-name XPath selector for namespace-agnostic matching.""" + return f'*[local-name()="{name}"]' + + +def release_complexity(element: etree._Element) -> Dict[str, int]: + """Compute a per-release feature count used for selection ranking.""" + counts = { + "release_artists": xpath_count(element, f"./{ln('artists')}/{ln('artist')}"), + "release_extraartists": xpath_count( + element, f"./{ln('extraartists')}/{ln('artist')}" + ), + "track_artists": xpath_count( + element, f".//{ln('tracklist')}//{ln('artists')}/{ln('artist')}" + ), + "track_extraartists": xpath_count( + element, f".//{ln('tracklist')}//{ln('extraartists')}/{ln('artist')}" + ), + "labels": xpath_count(element, f"./{ln('labels')}/{ln('label')}"), + "formats": xpath_count(element, f"./{ln('formats')}/{ln('format')}"), + "tracks": xpath_count(element, f".//{ln('tracklist')}//{ln('track')}"), + "identifiers": xpath_count( + element, f"./{ln('identifiers')}/{ln('identifier')}" + ), + "videos": xpath_count(element, f"./{ln('videos')}/{ln('video')}"), + "companies": xpath_count(element, f"./{ln('companies')}/{ln('company')}"), + "images": xpath_count(element, f"./{ln('images')}/{ln('image')}"), + "genres": xpath_count(element, f"./{ln('genres')}/{ln('genre')}"), + "styles": xpath_count(element, f"./{ln('styles')}/{ln('style')}"), + } + counts["total"] = sum(counts.values()) + return counts + + +def release_id(element: etree._Element) -> Optional[int]: + """Return release id from the element attribute, if valid.""" + value = element.get("id") + if value is None: + return None + try: + return int(value) + except ValueError: + return None + + +def master_id(element: etree._Element) -> Optional[int]: + """Return master id from the element attribute, if valid.""" + value = element.get("id") + if value is None: + return None + try: + return int(value) + except ValueError: + return None + + +def child_id_text(element: etree._Element) -> Optional[int]: + """Return integer id from a child element, if present.""" + node = element.find("id") + if node is None or node.text is None: + return None + try: + return int(node.text) + except ValueError: + return None + + +def collect_release_refs(element: etree._Element) -> Tuple[set, set, set]: + """Collect master, artist, and label ids referenced by a release.""" + master_ids: set = set() + artist_ids: set = set() + label_ids: set = set() + + for node in element.xpath(f"./{ln('master_id')}"): + if node.text: + try: + master_ids.add(int(node.text)) + except ValueError: + pass + + for node in element.xpath(f".//{ln('artist')}/{ln('id')}"): + if node.text: + try: + artist_ids.add(int(node.text)) + except ValueError: + pass + + for node in element.xpath(f".//{ln('labels')}/{ln('label')}"): + value = node.get("id") + if value: + try: + label_ids.add(int(value)) + except ValueError: + pass + + for node in element.xpath(f".//{ln('companies')}/{ln('company')}/{ln('id')}"): + if node.text: + try: + label_ids.add(int(node.text)) + except ValueError: + pass + + return master_ids, artist_ids, label_ids + + +def collect_master_refs(element: etree._Element) -> Tuple[set, set]: + """Collect main_release and artist ids referenced by a master.""" + release_ids: set = set() + artist_ids: set = set() + + for node in element.xpath(f"./{ln('main_release')}"): + if node.text: + try: + release_ids.add(int(node.text)) + except ValueError: + pass + + for node in element.xpath(f".//{ln('artists')}/{ln('artist')}/{ln('id')}"): + if node.text: + try: + artist_ids.add(int(node.text)) + except ValueError: + pass + + return release_ids, artist_ids + + +def collect_artist_member_ids(element: etree._Element) -> set: + """Collect member artist ids embedded in an artist element.""" + member_ids: set = set() + for node in element.xpath(f".//{ln('members')}/{ln('name')}"): + value = node.get("id") + if value: + try: + member_ids.add(int(value)) + except ValueError: + pass + for node in element.xpath(f".//{ln('members')}/{ln('id')}"): + if node.text: + try: + member_ids.add(int(node.text)) + except ValueError: + pass + return member_ids + + +def reservoir_add( + reservoir: List[Tuple[int, int, bytes, Dict[str, int]]], + seen: int, + capacity: int, + item: Tuple[int, int, bytes, Dict[str, int]], + rng: random.Random, +) -> None: + """Update a reservoir sample in-place.""" + if capacity <= 0: + return + if len(reservoir) < capacity: + reservoir.append(item) + return + j = rng.randrange(seen) + if j < capacity: + reservoir[j] = item + + +def select_releases( + path: Path, + size: int, + complexity: str, + seed: int, + mixed_ratio: float, + available_artists: Optional[set], + available_labels: Optional[set], + available_masters: Optional[set], + progress_every: int, +) -> Tuple[Dict[int, bytes], Dict[int, Dict[str, int]], Dict[int, int]]: + """Select release elements according to complexity or randomness.""" + rng = random.Random(seed) + if size <= 0: + return {}, {}, {} + + selected: Dict[int, bytes] = {} + meta: Dict[int, Dict[str, int]] = {} + coverage_map: Dict[int, int] = {} + + def coverage_score(element: etree._Element) -> Optional[int]: + """Compute how many referenced ids are present in available dumps.""" + if ( + available_artists is None + or available_labels is None + or available_masters is None + ): + return None + masters, artists, labels = collect_release_refs(element) + score = 0 + score += len(masters & available_masters) + score += len(artists & available_artists) + score += len(labels & available_labels) + return score + + progress = make_progress("Scanning releases (selection)", progress_every) + if complexity == "random": + reservoir: List[Tuple[int, int, bytes, Dict[str, int]]] = [] + seen = 0 + for element in iter_entities(path, "release", progress): + rid = release_id(element) + if rid is None: + continue + counts = release_complexity(element) + cov = coverage_score(element) or 0 + xml_bytes = etree.tostring(element, encoding="utf-8") + seen += 1 + reservoir_add( + reservoir, + seen, + size, + (cov, rid, xml_bytes, counts), + rng, + ) + for cov, rid, xml_bytes, counts in reservoir: + selected[rid] = xml_bytes + meta[rid] = counts + coverage_map[rid] = cov + if progress is not None: + progress.finish() + return selected, meta, coverage_map + + if complexity == "mixed": + top_size = max(1, int(round(size * mixed_ratio))) + remaining = max(0, size - top_size) + top_heap: List[Tuple[Tuple[int, int], int, bytes, Dict[str, int], int]] = [] + for element in iter_entities(path, "release", progress): + rid = release_id(element) + if rid is None: + continue + counts = release_complexity(element) + cov = coverage_score(element) + if cov is None: + score_key = (counts["total"], 0) + cov = 0 + else: + score_key = (cov, counts["total"]) + xml_bytes = etree.tostring(element, encoding="utf-8") + item = (score_key, rid, xml_bytes, counts, cov) + if len(top_heap) < top_size: + top_heap.append(item) + top_heap.sort(key=lambda x: (x[0], x[1])) + else: + if (score_key, rid) > (top_heap[0][0], top_heap[0][1]): + top_heap[0] = item + top_heap.sort(key=lambda x: (x[0], x[1])) + + top_ids = {rid for _, rid, _, _, _ in top_heap} + reservoir: List[Tuple[int, int, bytes, Dict[str, int]]] = [] + seen = 0 + if remaining > 0: + if progress is not None: + progress.finish() + progress = make_progress("Scanning releases (mixed remainder)", progress_every) + for element in iter_entities(path, "release", progress): + rid = release_id(element) + if rid is None or rid in top_ids: + continue + counts = release_complexity(element) + cov = coverage_score(element) or 0 + xml_bytes = etree.tostring(element, encoding="utf-8") + seen += 1 + reservoir_add( + reservoir, + seen, + remaining, + (cov, rid, xml_bytes, counts), + rng, + ) + + for score_key, rid, xml_bytes, counts, cov in top_heap: + selected[rid] = xml_bytes + meta[rid] = counts + coverage_map[rid] = cov + for cov, rid, xml_bytes, counts in reservoir: + selected[rid] = xml_bytes + meta[rid] = counts + coverage_map[rid] = cov + if progress is not None: + progress.finish() + return selected, meta, coverage_map + + # highest complexity (default) + top_heap: List[Tuple[Tuple[int, int], int, bytes, Dict[str, int], int]] = [] + for element in iter_entities(path, "release", progress): + rid = release_id(element) + if rid is None: + continue + counts = release_complexity(element) + cov = coverage_score(element) + if cov is None: + score_key = (counts["total"], 0) + cov = 0 + else: + score_key = (cov, counts["total"]) + xml_bytes = etree.tostring(element, encoding="utf-8") + item = (score_key, rid, xml_bytes, counts, cov) + if len(top_heap) < size: + top_heap.append(item) + top_heap.sort(key=lambda x: (x[0], x[1])) + else: + if (score_key, rid) > (top_heap[0][0], top_heap[0][1]): + top_heap[0] = item + top_heap.sort(key=lambda x: (x[0], x[1])) + + for score_key, rid, xml_bytes, counts, cov in top_heap: + selected[rid] = xml_bytes + meta[rid] = counts + coverage_map[rid] = cov + if progress is not None: + progress.finish() + return selected, meta, coverage_map + + +def extract_releases( + path: Path, + target_ids: set, + existing: Dict[int, bytes], + meta: Dict[int, Dict[str, int]], + progress_every: int, +) -> Tuple[set, set, set]: + """Extract releases by id and collect their cross-file references.""" + new_master_ids: set = set() + new_artist_ids: set = set() + new_label_ids: set = set() + remaining = target_ids - set(existing.keys()) + if not remaining: + return new_master_ids, new_artist_ids, new_label_ids + + progress = make_progress("Scanning releases (closure)", progress_every) + for element in iter_entities(path, "release", progress): + rid = release_id(element) + if rid is None or rid not in remaining: + continue + counts = release_complexity(element) + meta[rid] = counts + xml_bytes = etree.tostring(element, encoding="utf-8") + existing[rid] = xml_bytes + masters, artists, labels = collect_release_refs(element) + new_master_ids |= masters + new_artist_ids |= artists + new_label_ids |= labels + + if progress is not None: + progress.finish() + return new_master_ids, new_artist_ids, new_label_ids + + +def extract_masters( + path: Path, + target_ids: set, + existing: Dict[int, bytes], + progress_every: int, +) -> Tuple[set, set]: + """Extract masters by id and collect referenced releases and artists.""" + new_release_ids: set = set() + new_artist_ids: set = set() + remaining = target_ids - set(existing.keys()) + if not remaining: + return new_release_ids, new_artist_ids + + progress = make_progress("Scanning masters", progress_every) + for element in iter_entities(path, "master", progress): + mid = master_id(element) + if mid is None or mid not in remaining: + continue + xml_bytes = etree.tostring(element, encoding="utf-8") + existing[mid] = xml_bytes + releases, artists = collect_master_refs(element) + new_release_ids |= releases + new_artist_ids |= artists + + if progress is not None: + progress.finish() + return new_release_ids, new_artist_ids + + +def extract_artists( + path: Path, + target_ids: set, + existing: Dict[int, bytes], + progress_every: int, +) -> set: + """Extract artists by id and collect member references.""" + new_member_ids: set = set() + remaining = target_ids - set(existing.keys()) + if not remaining: + return new_member_ids + + progress = make_progress("Scanning artists", progress_every) + for element in iter_entities(path, "artist", progress): + aid = child_id_text(element) + if aid is None or aid not in remaining: + continue + xml_bytes = etree.tostring(element, encoding="utf-8") + existing[aid] = xml_bytes + new_member_ids |= collect_artist_member_ids(element) + if progress is not None: + progress.finish() + return new_member_ids + + +def extract_labels( + path: Path, + target_ids: set, + existing: Dict[int, bytes], + progress_every: int, +) -> None: + """Extract labels by id into the output map.""" + remaining = target_ids - set(existing.keys()) + if not remaining: + return + progress = make_progress("Scanning labels", progress_every) + for element in iter_entities(path, "label", progress): + lid = child_id_text(element) + if lid is None or lid not in remaining: + continue + existing[lid] = etree.tostring(element, encoding="utf-8") + if progress is not None: + progress.finish() + + +def extract_by_id( + path: Path, + tag: str, + target_ids: set, + existing: Dict[int, bytes], + progress_every: int, + *, + id_attr: Optional[str] = None, + id_child: Optional[str] = None, + label: Optional[str] = None, +) -> None: + """Extract elements by id (attribute or child element).""" + remaining = target_ids - set(existing.keys()) + if not remaining: + return + progress = make_progress(label or f"Scanning {tag}s", progress_every) + for element in iter_entities(path, tag, progress): + value: Optional[str] = None + if id_attr: + value = element.get(id_attr) + elif id_child: + node = element.find(id_child) + if node is not None: + value = node.text + if not value: + continue + try: + entity_id = int(value) + except ValueError: + continue + if entity_id not in remaining: + continue + existing[entity_id] = etree.tostring(element, encoding="utf-8") + if progress is not None: + progress.finish() + + +def write_output( + info: SourceInfo, + elements_by_id: Dict[int, bytes], + output_path: Path, +) -> None: + """Write a fixture XML file with preserved header and root info.""" + output_path.parent.mkdir(parents=True, exist_ok=True) + preamble = info.preamble_lines + start_tag, end_tag = build_root_tag(info.root_tag, info.root_attrib, info.nsmap) + ids = sorted(elements_by_id.keys()) + with output_path.open("wb") as fp: + for line in preamble: + fp.write(line.encode("utf-8")) + fp.write(b"\n") + fp.write(start_tag.encode("utf-8")) + fp.write(b"\n") + for i in ids: + fp.write(elements_by_id[i]) + fp.write(b"\n") + fp.write(end_tag.encode("utf-8")) + fp.write(b"\n") + + +def find_dump(input_dir: Path, kind: str) -> Path: + """Locate a dump file by kind, preferring uncompressed XML.""" + patterns = [f"*{kind}*.xml", f"*{kind}*.xml.gz"] + candidates: List[Path] = [] + for pattern in patterns: + candidates.extend(sorted(input_dir.glob(pattern))) + if not candidates: + raise FileNotFoundError(f"Could not find {kind} dump in {input_dir}") + # prefer uncompressed + for p in candidates: + if p.suffix == ".xml": + return p + return candidates[0] + + +def output_name(source: Path) -> str: + """Return the output filename for a source path.""" + name = source.name + if name.endswith(".xml.gz"): + return name[:-3] + return name + + +def build_source_info(path: Path) -> SourceInfo: + """Load root and preamble details needed to write fixtures.""" + root_tag, root_attrib, nsmap = get_root_info(path) + return SourceInfo( + path=path, + preamble_lines=extract_preamble(path), + root_tag=root_tag, + root_attrib=root_attrib, + nsmap=nsmap, + ) + + +def collect_available_ids( + path: Path, + tag: str, + id_from_attr: bool, + progress_every: int, + label: str, +) -> set: + """Scan a dump file to gather available ids for coverage scoring.""" + ids: set = set() + progress = make_progress(label, progress_every) + for element in iter_entities(path, tag, progress): + if id_from_attr: + value = element.get("id") + if value: + try: + ids.add(int(value)) + except ValueError: + pass + else: + node = element.find("id") + if node is not None and node.text: + try: + ids.add(int(node.text)) + except ValueError: + pass + if progress is not None: + progress.finish() + return ids + + +def main(argv: Optional[Sequence[str]] = None) -> int: + """CLI entry point for fixture generation.""" + parser = argparse.ArgumentParser(description="Generate Discogs XML fixtures") + parser.add_argument("--input-dir", type=Path, default=Path("tests/samples")) + parser.add_argument("--output-dir", type=Path, default=Path("tests/fixtures")) + parser.add_argument( + "--manifest", + type=Path, + help="Reuse an existing manifest.json to select exact IDs", + ) + parser.add_argument("--artists") + parser.add_argument("--labels") + parser.add_argument("--masters") + parser.add_argument("--releases") + parser.add_argument("--size", type=int, default=25) + parser.add_argument( + "--complexity", + choices=["highest", "random", "mixed"], + default="highest", + ) + parser.add_argument("--seed", type=int, default=1) + parser.add_argument("--mixed-ratio", type=float, default=0.7) + parser.add_argument( + "--availability-scan", + choices=["auto", "always", "never"], + default="auto", + help="Scan artists/labels/masters for available IDs to improve coherence", + ) + parser.add_argument( + "--availability-max-mb", + type=int, + default=256, + help="When availability-scan=auto, only scan if total size <= this value", + ) + parser.add_argument( + "--progress-every", + type=int, + default=50000, + help="Print progress every N parsed entities (0 to disable)", + ) + args = parser.parse_args(argv) + + input_dir: Path = args.input_dir + output_dir: Path = args.output_dir + + artists_path = Path(args.artists) if args.artists else find_dump(input_dir, "artists") + labels_path = Path(args.labels) if args.labels else find_dump(input_dir, "labels") + masters_path = Path(args.masters) if args.masters else find_dump(input_dir, "masters") + releases_path = ( + Path(args.releases) if args.releases else find_dump(input_dir, "releases") + ) + + for p in (artists_path, labels_path, masters_path, releases_path): + if not p.exists(): + raise FileNotFoundError(f"Missing input file: {p}") + + def mb(path: Path) -> float: + """Return file size in megabytes for display.""" + return path.stat().st_size / (1024 * 1024) + + print("Input files:", file=sys.stderr) + print(f" artists: {artists_path} ({mb(artists_path):.1f} MB)", file=sys.stderr) + print(f" labels: {labels_path} ({mb(labels_path):.1f} MB)", file=sys.stderr) + print(f" masters: {masters_path} ({mb(masters_path):.1f} MB)", file=sys.stderr) + print(f" releases: {releases_path} ({mb(releases_path):.1f} MB)", file=sys.stderr) + + sources = { + "artists": build_source_info(artists_path), + "labels": build_source_info(labels_path), + "masters": build_source_info(masters_path), + "releases": build_source_info(releases_path), + } + + manifest_mode = args.manifest is not None + do_availability_scan = False + release_meta: Dict[int, Dict[str, int]] = {} + release_coverage: Dict[int, int] = {} + + if manifest_mode: + manifest_path = args.manifest + if not manifest_path.exists(): + raise FileNotFoundError(f"Missing manifest file: {manifest_path}") + manifest_data = json.loads(manifest_path.read_text(encoding="utf-8")) + ids = manifest_data.get("ids", {}) + needed_release_ids = set(ids.get("releases", [])) + needed_master_ids = set(ids.get("masters", [])) + needed_artist_ids = set(ids.get("artists", [])) + needed_label_ids = set(ids.get("labels", [])) + seed_release_ids = set(ids.get("seed_releases", needed_release_ids)) + + for entry in manifest_data.get("release_complexity", []): + rid = entry.get("id") + if rid is None: + continue + counts = entry.get("counts") + if isinstance(counts, dict): + release_meta[rid] = counts + coverage = entry.get("coverage") + if isinstance(coverage, int): + release_coverage[rid] = coverage + + print(f"Manifest replay: {manifest_path}", file=sys.stderr) + print( + "Progress:", + f"every={args.progress_every} (0 disables)", + file=sys.stderr, + ) + + release_map: Dict[int, bytes] = {} + master_map: Dict[int, bytes] = {} + artist_map: Dict[int, bytes] = {} + label_map: Dict[int, bytes] = {} + + extract_by_id( + releases_path, + "release", + needed_release_ids, + release_map, + args.progress_every, + id_attr="id", + label="Scanning releases (manifest)", + ) + extract_by_id( + masters_path, + "master", + needed_master_ids, + master_map, + args.progress_every, + id_attr="id", + label="Scanning masters (manifest)", + ) + extract_by_id( + artists_path, + "artist", + needed_artist_ids, + artist_map, + args.progress_every, + id_child="id", + label="Scanning artists (manifest)", + ) + extract_by_id( + labels_path, + "label", + needed_label_ids, + label_map, + args.progress_every, + id_child="id", + label="Scanning labels (manifest)", + ) + else: + total_size_mb = ( + artists_path.stat().st_size + + labels_path.stat().st_size + + masters_path.stat().st_size + ) / (1024 * 1024) + do_availability_scan = False + if args.availability_scan == "always": + do_availability_scan = True + elif args.availability_scan == "auto": + do_availability_scan = total_size_mb <= args.availability_max_mb + + print( + "Availability scan:", + f"mode={args.availability_scan}", + f"used={do_availability_scan}", + f"threshold={args.availability_max_mb} MB", + file=sys.stderr, + ) + print( + "Selection:", + f"size={args.size}", + f"complexity={args.complexity}", + f"seed={args.seed}", + f"mixed_ratio={args.mixed_ratio}", + file=sys.stderr, + ) + print( + "Progress:", + f"every={args.progress_every} (0 disables)", + file=sys.stderr, + ) + + available_artists = None + available_labels = None + available_masters = None + if do_availability_scan: + available_artists = collect_available_ids( + artists_path, + "artist", + False, + args.progress_every, + "Scanning artists (availability)", + ) + available_labels = collect_available_ids( + labels_path, + "label", + False, + args.progress_every, + "Scanning labels (availability)", + ) + available_masters = collect_available_ids( + masters_path, + "master", + True, + args.progress_every, + "Scanning masters (availability)", + ) + + selected_releases, release_meta, release_coverage = select_releases( + releases_path, + args.size, + args.complexity, + args.seed, + args.mixed_ratio, + available_artists, + available_labels, + available_masters, + args.progress_every, + ) + seed_release_ids = set(selected_releases.keys()) + + release_map: Dict[int, bytes] = dict(selected_releases) + master_map: Dict[int, bytes] = {} + artist_map: Dict[int, bytes] = {} + label_map: Dict[int, bytes] = {} + + needed_release_ids: set = set(release_map.keys()) + needed_master_ids: set = set() + needed_artist_ids: set = set() + needed_label_ids: set = set() + + # collect refs from seed releases + for rid, xml_bytes in list(release_map.items()): + element = etree.fromstring(xml_bytes) + masters, artists, labels = collect_release_refs(element) + needed_master_ids |= masters + needed_artist_ids |= artists + needed_label_ids |= labels + + # close release/master references + while True: + added_any = False + + new_release_ids, new_artist_ids = extract_masters( + masters_path, needed_master_ids, master_map, args.progress_every + ) + if new_release_ids or new_artist_ids: + if new_release_ids - needed_release_ids: + needed_release_ids |= new_release_ids + added_any = True + if new_artist_ids - needed_artist_ids: + needed_artist_ids |= new_artist_ids + added_any = True + + new_master_ids, new_artist_ids, new_label_ids = extract_releases( + releases_path, + needed_release_ids, + release_map, + release_meta, + args.progress_every, + ) + if new_master_ids or new_artist_ids or new_label_ids: + if new_master_ids - needed_master_ids: + needed_master_ids |= new_master_ids + added_any = True + if new_artist_ids - needed_artist_ids: + needed_artist_ids |= new_artist_ids + added_any = True + if new_label_ids - needed_label_ids: + needed_label_ids |= new_label_ids + added_any = True + + if not added_any: + break + + # close artist member references + while True: + new_member_ids = extract_artists( + artists_path, needed_artist_ids, artist_map, args.progress_every + ) + if not new_member_ids - needed_artist_ids: + break + needed_artist_ids |= new_member_ids + + # labels + extract_labels(labels_path, needed_label_ids, label_map, args.progress_every) + + output_dir.mkdir(parents=True, exist_ok=True) + write_output( + sources["artists"], + artist_map, + output_dir / output_name(artists_path), + ) + write_output( + sources["labels"], + label_map, + output_dir / output_name(labels_path), + ) + write_output( + sources["masters"], + master_map, + output_dir / output_name(masters_path), + ) + write_output( + sources["releases"], + release_map, + output_dir / output_name(releases_path), + ) + + if manifest_mode: + sample_size = len(seed_release_ids) + complexity_label = "manifest" + manifest_source = str(args.manifest) + else: + sample_size = args.size + complexity_label = args.complexity + manifest_source = None + + manifest = { + "generated_at": datetime.now(timezone.utc).isoformat(), + "config": { + "input_dir": str(input_dir), + "output_dir": str(output_dir), + "sample_size": sample_size, + "complexity": complexity_label, + "seed": args.seed, + "mixed_ratio": args.mixed_ratio, + "availability_scan": args.availability_scan, + "availability_max_mb": args.availability_max_mb, + "availability_used": do_availability_scan, + "manifest_mode": manifest_mode, + "manifest_path": manifest_source, + "input_files": { + "artists": str(artists_path), + "labels": str(labels_path), + "masters": str(masters_path), + "releases": str(releases_path), + }, + }, + "counts": { + "seed_releases": len(seed_release_ids), + "releases": len(release_map), + "masters": len(master_map), + "artists": len(artist_map), + "labels": len(label_map), + }, + "ids": { + "seed_releases": sorted(seed_release_ids), + "releases": sorted(release_map.keys()), + "masters": sorted(master_map.keys()), + "artists": sorted(artist_map.keys()), + "labels": sorted(label_map.keys()), + }, + "release_complexity": [ + { + "id": rid, + "reason": "seed" if rid in seed_release_ids else "closure", + "counts": release_meta.get(rid, {}), + "coverage": release_coverage.get(rid, None), + } + for rid in sorted(release_map.keys()) + ], + "missing": { + "releases": sorted(needed_release_ids - set(release_map.keys())), + "masters": sorted(needed_master_ids - set(master_map.keys())), + "artists": sorted(needed_artist_ids - set(artist_map.keys())), + "labels": sorted(needed_label_ids - set(label_map.keys())), + }, + } + + manifest_path = output_dir / "manifest.json" + manifest_path.write_text(json.dumps(manifest, indent=2), encoding="utf-8") + + print("Wrote fixtures to", output_dir) + print("Releases:", len(release_map), "Masters:", len(master_map)) + print("Artists:", len(artist_map), "Labels:", len(label_map)) + print("Manifest:", manifest_path) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) From 5e5d9e2f9bf448fcbe8b49d0da1b60d76593571f Mon Sep 17 00:00:00 2001 From: Philip Mateescu Date: Sat, 7 Feb 2026 16:19:18 +0800 Subject: [PATCH 2/5] improve performance after code review #AI-Codex --- tests/fixtures/generate_fixtures.py | 42 ++++++++++++++++------------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/tests/fixtures/generate_fixtures.py b/tests/fixtures/generate_fixtures.py index 2e91d86..0b9a441 100644 --- a/tests/fixtures/generate_fixtures.py +++ b/tests/fixtures/generate_fixtures.py @@ -14,6 +14,7 @@ import argparse import gzip +import heapq import json import random import re @@ -144,7 +145,10 @@ def build_root_tag( def iter_entities( path: Path, tag: str, progress: Optional[Progress] = None ) -> Iterable[etree._Element]: - """Yield entities for a given tag using streaming parse and cleanup.""" + """Yield entities for a given tag using streaming parse and cleanup. + + Uses lxml's huge_tree mode for very large (trusted) Discogs dumps. + """ with open_xml(path) as fp: context = etree.iterparse(fp, tag=tag, events=("end",), huge_tree=True) for _, element in context: @@ -152,9 +156,10 @@ def iter_entities( progress.tick() yield element element.clear() - for ancestor in element.xpath("ancestor-or-self::*"): - while ancestor.getprevious() is not None: - del ancestor.getparent()[0] + parent = element.getparent() + if parent is not None: + while element.getprevious() is not None: + del parent[0] def xpath_count(element: etree._Element, expr: str) -> int: @@ -361,6 +366,19 @@ def coverage_score(element: etree._Element) -> Optional[int]: score += len(labels & available_labels) return score + def push_top( + heap: List[Tuple[Tuple[int, int], int, bytes, Dict[str, int], int]], + item: Tuple[Tuple[int, int], int, bytes, Dict[str, int], int], + limit: int, + ) -> None: + if limit <= 0: + return + if len(heap) < limit: + heapq.heappush(heap, item) + else: + if item[:2] > heap[0][:2]: + heapq.heapreplace(heap, item) + progress = make_progress("Scanning releases (selection)", progress_every) if complexity == "random": reservoir: List[Tuple[int, int, bytes, Dict[str, int]]] = [] @@ -405,13 +423,7 @@ def coverage_score(element: etree._Element) -> Optional[int]: score_key = (cov, counts["total"]) xml_bytes = etree.tostring(element, encoding="utf-8") item = (score_key, rid, xml_bytes, counts, cov) - if len(top_heap) < top_size: - top_heap.append(item) - top_heap.sort(key=lambda x: (x[0], x[1])) - else: - if (score_key, rid) > (top_heap[0][0], top_heap[0][1]): - top_heap[0] = item - top_heap.sort(key=lambda x: (x[0], x[1])) + push_top(top_heap, item, top_size) top_ids = {rid for _, rid, _, _, _ in top_heap} reservoir: List[Tuple[int, int, bytes, Dict[str, int]]] = [] @@ -463,13 +475,7 @@ def coverage_score(element: etree._Element) -> Optional[int]: score_key = (cov, counts["total"]) xml_bytes = etree.tostring(element, encoding="utf-8") item = (score_key, rid, xml_bytes, counts, cov) - if len(top_heap) < size: - top_heap.append(item) - top_heap.sort(key=lambda x: (x[0], x[1])) - else: - if (score_key, rid) > (top_heap[0][0], top_heap[0][1]): - top_heap[0] = item - top_heap.sort(key=lambda x: (x[0], x[1])) + push_top(top_heap, item, size) for score_key, rid, xml_bytes, counts, cov in top_heap: selected[rid] = xml_bytes From 746eed4dc798ca94c21ade5ef04953fc6e45d7d7 Mon Sep 17 00:00:00 2001 From: Philip Mateescu Date: Sat, 7 Feb 2026 17:09:34 +0800 Subject: [PATCH 3/5] adds an editor config file for consistent styles --- .editorconfig | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..03c26c8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,25 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.py] +max_line_length = 120 +ensure_newline_before_comments = true +include_trailing_comma = true +use_parentheses = true + +[*.sh] +indent_style = tab +indent_size = 4 + +[*.{yml,yaml,json,xml}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false From 2f88224e322d8d756ed55c027352d030142bd153 Mon Sep 17 00:00:00 2001 From: Philip Mateescu Date: Sat, 7 Feb 2026 17:09:43 +0800 Subject: [PATCH 4/5] small improvements to README --- README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index f24cd9e..319b098 100644 --- a/README.md +++ b/README.md @@ -4,34 +4,34 @@ discogs-xml2db is a python program for importing [discogs data dumps](https://da into several databases. Version 2 is a rewrite of the original *discogs-xml2db* -(referred in here as the *classic* version). -It is based on a [branch by RedApple](https://github.com/redapple/discogs-xml2db) +(referred to here as the *classic* version). +It is based on a [branch by RedApple,](https://github.com/redapple/discogs-xml2db) and it is several times faster. -Currently supports MySQL and PostgreSQL as target databases. +Currently, it supports MySQL and PostgreSQL as target databases. Instructions for importing into MongoDB, though these are untested. Let us know how it goes! ## Experimental version In parallel to the original Python codebase, we're working on a parser/exporter -that's even faster. This is a complete rewrite in C# and initial results are highly +that's even faster. This is a complete rewrite in C #, and initial results are highly promising: -| File | Record Count | Python | C# | -| --- | ---: | :---: | :---: | -| discogs_20200806_artists.xml.gz | 7,046,615 | 6:22 | 2:35 | -| discogs_20200806_labels.xml.gz | 1,571,873 | 1:15 | 0:22 | -| discogs_20200806_masters.xml.gz | 1,734,371 | 3:56 | 1:57 | -| discogs_20200806_releases.xml.gz | 12,867,980 | 1:45:16 | 42:38 | +| File | Record Count | Python | C# | +|----------------------------------|-------------:|:-------:|:-----:| +| discogs_20200806_artists.xml.gz | 7,046,615 | 6:22 | 2:35 | +| discogs_20200806_labels.xml.gz | 1,571,873 | 1:15 | 0:22 | +| discogs_20200806_masters.xml.gz | 1,734,371 | 3:56 | 1:57 | +| discogs_20200806_releases.xml.gz | 12,867,980 | 1:45:16 | 42:38 | -If you're interested in testing one of this versions, read more about it +If you're interested in testing one of these versions, read more about it in the [.NET Parser README](./alternatives/dotnet/README.md) or grab the appropriate binaries from the [Releases page](https://github.com/philipmat/discogs-xml2db/releases). -While this version does not have yet complete feature-parity with the Python -version, the core export-to-csv is there and it's likely it will +While this version does not have complete feature-parity with the Python +version (yet), the core export-to-csv is there, and it's likely it will eventually replace it. ![DotNet Build](https://github.com/philipmat/discogs-xml2db/workflows/DotNet%20Build/badge.svg) @@ -49,7 +49,7 @@ Importing to some databases may require additional dependencies, see the documentation for your target database below. It's best that a [Python virtual environment](https://docs.python.org/3/library/venv.html) -is created in order to install the required modules in a safe +is created to install the required modules in a safe location, which does not require elevated security permissions: ```sh @@ -73,7 +73,7 @@ Installation instruction for other platforms can be found in the [pip documentat Download the latest dump files from discogs manually from [discogs](https://data.discogs.com/) or run `get_latest_dumps.sh`. -To check the files' integrity download the appropriate checksum file from +To check the files' integrity, download the appropriate checksum file from [https://data.discogs.com/](https://data.discogs.com/), place it in the same directory as the dumps and compare the checksums. @@ -119,7 +119,7 @@ There are two run modes: Not needed if the individual files are specified. - `--bz2`: Compresses output csv files using bz2 compression library. - `--limit=`: Limits export to some number of entities -- `--apicounts`: Makes progress report more accurate by getting total amounts from Discogs API. +- `--apicounts`: Makes the progress report more accurate by getting total amounts from Discogs API. - `--output` : the folder where to store the csv files; default it current directory The exporter provides progress information in real time: @@ -173,7 +173,7 @@ Options: - `--output-dir`: folder to write fixtures (default `tests/fixtures`). - `--progress-every`: print progress every N parsed entities (default 50,000; set to 0 to disable). - `--manifest`: reuse an existing `manifest.json` to extract exactly the listed IDs. - In this mode, selection/complexity options are ignored and no graph expansion + In this mode, selection/complexity options are ignored, and no graph expansion is performed; the script only pulls the specified entities from the dumps. Outputs: @@ -261,16 +261,16 @@ as explained in [this tutorial](https://medium.com/codait/simple-csv-import-for- *speedup* is many times faster than *classic* because it uses a different approach: -1. The discogs xml dumps are first converted into one csv file per database table. +1. The discogs XML dumps are first converted into one csv file per database table. 2. These csv files are then imported into the different target databases (bulk load). - This is different from *classic* discogs-xml2db which loads records into the database - one by one while parsing the xml file, waiting on the database after every row. + This is different from *classic* discogs-xml2db, which loads records into the database + one by one while parsing the XML file, waiting on the database after every row. *speedup* requires less disk space than *classic* as it can work while the dump files are still compressed. -While the uncompressed dumps for May 2020 take up 57GB of space the compressed dumps are only 8.8GB. +While the uncompressed dumps for May 2020 take up 57GB of space, the compressed dumps are only 8.8GB. The dumps can be deleted after converting them to compressed CSV files (6.1GB). -As many databases can import CSV files out of the box it should be easy +As many databases can import CSV files out of the box, it should be easy to add support for more databases to discogs-xml2db *speedup* in the future. ### Database schema changes @@ -291,8 +291,8 @@ The following things changed compared to *classic* `discogs-xml2db`: - added: `label` has new `parent_id` field - added: `release_label` has extra fields - moved: `aliases` now in `artist_alias` table -- moved: `tracks_extra_artists` now in `track_artist` table with extra flag -- moved: `releases_extra_artists` now in `release_track_artist` table with extra flag +- moved: `tracks_extra_artists` now in `track_artist` table with an extra flag +- moved: `releases_extra_artists` now in `release_track_artist` table with an extra flag - moved: `release.genres` now in own `release_genre` table - moved: `release.styles` now in own `release_style` table - moved: `release.barcode` now in `release_identifier` table From 23e6a5f1b39d5a33d067e14cc833d741a73bc9a0 Mon Sep 17 00:00:00 2001 From: Philip Mateescu Date: Sat, 7 Feb 2026 17:35:06 +0800 Subject: [PATCH 5/5] sample test fixtures from 20260201 files --- tests/fixtures/discogs_20260201_artists.xml | 83902 +++++++++++++++++ tests/fixtures/discogs_20260201_labels.xml | 1094 + tests/fixtures/discogs_20260201_masters.xml | 10 + tests/fixtures/discogs_20260201_releases.xml | 3211 + tests/fixtures/manifest.json | 31451 ++++++ 5 files changed, 119668 insertions(+) create mode 100644 tests/fixtures/discogs_20260201_artists.xml create mode 100644 tests/fixtures/discogs_20260201_labels.xml create mode 100644 tests/fixtures/discogs_20260201_masters.xml create mode 100644 tests/fixtures/discogs_20260201_releases.xml create mode 100644 tests/fixtures/manifest.json diff --git a/tests/fixtures/discogs_20260201_artists.xml b/tests/fixtures/discogs_20260201_artists.xml new file mode 100644 index 0000000..7770361 --- /dev/null +++ b/tests/fixtures/discogs_20260201_artists.xml @@ -0,0 +1,83902 @@ + +71Baby DocQuentin FranglenUK Hard House / Trance Producer. Baby Doc was one of the pioneers of the [i]Nu NRG[/i] sound through the Mid 90's. + +Baby Doc and [a=S-J] ran [l=Opium Records] and [l=Arriba Records]. He also co-owned the Dream Inn label with Jon The Dentist.Correcthttps://www.facebook.com/djBabydoc/Baby DoBaby/DocBabyDocBabydocBad ManQuentin Franglen + +415Chris De LucaChris de LucaMusic ProducerNeeds Votehttp://www.chrisdelucamusic.com/https://www.cawwscreative.com/https://www.instagram.com/chrisdeluca/C. De LucaC.De LucaCDLCLPChicca Chris De LucaChris DeLucaChris de LucaChristian De LucaDe Luca_CDL_FunkstörungGodzilla vs. MetalheadMusik Aus StromChris De Luca vs. Phon.oCalyx MasteringDelect + +1649Rhythm MastersBritish house music production duo. + +Before calling themselves the "Rhythm Masters", Chetcuti & Mac worked under a series of aliases such as [a=Rhythm Robbers], [a=R.M. Project], and [a=Masters Of Rhythm]. + +Contracted as remixers, they left their mark on many club hits of the late 1990s-early 2000s, including hits such as [a=Todd Terry] "[m=77989]" (1996) and [a=Mutiny] "[m=86746]" (2000). + +Their album "[m=140811]" (2001) contained the singles "[m=140821]" (2001), "[m=140816]" (2001), and "[m=140818]" (2001). Further singles were planned, but the Rhythm Masters split not too long after, citing creative differences. + +Later on they came back together for different projects. The release of delirious electro/house single "[m=2024662]" (2005), showed once again their ability to deliver strong club cuts. +Needs Votehttps://soundcloud.com/dis-funktional-recordingshttps://www.facebook.com/RhythmMastersOfficial/https://en.wikipedia.org/wiki/Rhythm_MastersRMRhyhm MastersRhythem MasteRhythm MasterRhythm MastercRhythm Masters (Chetcuti / McGuinness)Rhythm Masters (Chetcuti/McGuiness)Rhythm Masters, TheRhythmastersRhytm MastersRythm MastersRythm Masters, TheRythym MastersThe Rhythm MasterThe Rhythm MastersThe Rhythm MasterzThe Rythm MastersThytm MastersUp & DownThe Dub MastersRhythmatic JunkiesHitmenBlue LagoonDisco DubbersTrailer ParksR.M. ProjectMaltese MassiveThe SquadiesMasters Of RhythmGroove Masters (3)3rd DimensionGo > ZoR & SRhythm RobbersThe MutatorRobert ChetcutiStephen McGuinness + +1680JXJake Williams[a1680] was [a365660]'s successful project, selling in excess of 500,000 copies of popular and anthemic dance tracks. +"There's Nothing I Won't Do" (1996), was his biggest hit, reaching #4 on the UK Singles Chart. +CorrectJ XJ-XJ.X.MekkaOblikRex The DogJake Williams2 Brothers (2) + +1681Tin Tin OutUK dance music outfit comprising Darren Stokes and Lyndsey Edwards. + +The group was formed in 1993 when Stokes (A&R Director for Pulse 8 Records) met Edwards, (a keyboard player and musical technician) on a session for the label. Adopting the name Tin Tin Out they output a multitude of remixes and were signed by VC Recordings in 1995. + +Tin Tin Out first reached the UK charts in August 1994 with ‘The Feeling’. In March 1998 they got their first UK Top 10 with a version of the Sundays’ ‘Here’s Where The Story Ends’. Their biggest chart success came in November 1999 with a cover version of Edie Brickell’s ‘What I Am' with Emma Bunton providing vocals, which reached number 2 on the UK charts.Needs Votehttp://www.myspace.com/tintinoutmusichttps://en.wikipedia.org/wiki/Tin_Tin_OutShelley NelsonT.T.O.Tin TinTin Tin Out!Tin Tin Out!?Tin-Tin OutTinTinOutTintinouttintinout挻挻傲樂團Baby BlueLindsay EdwardsDarren Stokes + +1686ArtemesiaPatrick PrinsHard Trance DJ from the Netherlands.Needs Votehttps://artemesiaprinz.bandcamp.com/ArtEmisiaArtemeziaArtemisiaArtmesiaArtomesiaIndicaSubliminal CutsSandmanPatrick PrinsThe Peppermint LoungeCastle TrancelottMovin' MelodiesEating HabitsThe Human NatureOcean MotionBed & BondageAlliumChicks With TricksThe EthicsThe Urban Sound Of AmsterdamDavid JeffersonPetri DineroJoker's Up + +1687HyperlogicAmadeus Mozart, Andy Pickles, Paul JanesHyperlogic is production duo and Tidy Trax owners Amadeus Mozart and Andy Pickles, who had hit dance single 'Only Me' On the second single 'U Got The Love' Paul Janes joined the team. Needs Votewww.tidytrax.co.ukHyper LogicPaul JanesAndy PicklesAmadeus Mozart + +2029Neon LightsCorrectNeon Light'sMr. BishiVolts WagenSteve HillJon Langford + +2265Roy AyersRoy Edward Ayers, Jr. American funk, soul and jazz vibraphone player, composer and producer. +Born September 10, 1940 in Los Angeles, California. +Died March 4, 2025 in New York. +Ayers began his career as a post-bop jazz artist, releasing several albums with [l681], before his tenure at [l1610] beginning in the 1970s, during which he helped pioneer jazz-funk. +Among his hits are Everybody Loves The Sunshine, Searching and Running Away, as well as collaborations with [a=Fela Kuti]. +Founded his own label [l12536] in 1980. +Father of [a747956] and [a550856].Needs Votehttp://www.royayers.comhttp://royayers.bandcamp.comhttp://www.facebook.com/RoyAyershttp://www.instagram.com/royayerssunshinehttp://en.wikipedia.org/wiki/Roy_Ayershttps://www.imdb.com/name/nm0043806/https://www.allmusic.com/artist/roy-ayers-mn0000345168AyersAyresMr. Roy AyersR AyersR. AyersR. AyresR. J. AyersR.AyersRaw AyersRay AyersRobert AyersRon AyersRon AyresRoy AresRoy AversRoy AwersRoy AyeresRoy Ayers Jr.Roy Ayers, JR.Roy AyesRoy AyresRoy E. Ayers, Jr.Roy HayesRoy Ayers UbiquityUbiquity (4)Gerald Wilson OrchestraThe Jack Wilson QuartetRoy Ayers Quartet + +2433MoonmanFerry CorstenAlias used by Ferry Corsten from 1996-1999. Known for "Don't Be Afraid" & "Galaxia". + +He also used the Moonman name for remixes, many of which have become classic Trance anthems. + +For example: [r=26595], [r=70706], [r=146449] & [r=2277609].Correcthttp://www.ferrycorsten.com/http://www.facebook.com/FerryCorstenhttp://twitter.com/FerryCorstenhttp://vk.com/ferrycorstenhttp://soundcloud.com/ferry-corsten http://www.youtube.com/ferrycorstenhttp://www.instagram.com/ferrycorstenhttps://www.mixcloud.com/FerryCorstenMonnmanMoon ManMoonmansMoonmenFerry CorstenAlbionFree InsidePulp VictimDigital ControlExiterFunk EinsatzEon (2)A Jolly Good FellowFerrZenithalSidewinder (2)DotNL4x4Kinky ToysDance TherapySystem FParty CruiserRaya ShakuBypass (4)Skywalker (4)The NutterFirmly UndagroundCyber FDelaquenteLunalifeFarinhaPulse (28)DJ Sno-WhiteFesten (2)East Vs. West + +2782Candy JCandice JordanCorrectCandi JCandyCandy J.Miss CandySweet Pussy PaulineHateful Head HelenBoom Boom (2)Candice Jordan + +3101Fatboy SlimNorman Quentin Cook (born Quentin Leo Cook — name changed by deed poll in 2002)Born in the UK as Quentin Leo Cook on 31 July 1963. Was married to radio DJ & television presenter Zoë Ball, thus son-in-law of British television personality [a=Johnny Ball]. + +Cook adopted the new pseudonym Fatboy Slim in 1995. The Fatboy Slim album and Cook's second solo album Better Living Through Chemistry (released through Skint Records) contained the Top 40 UK hit, "Everybody Needs a 303". +Fatboy Slim's next work was the single "The Rockafeller Skank", released prior to the album You've Come a Long Way, Baby, both of which were released in 1998. "Praise You", also from this album, was Cook's first UK solo number one. Its music video, starring Spike Jonze, won numerous awards. +In 2000, Fatboy Slim released his third studio album, Halfway Between the Gutter and the Stars, and featured two collaborations with Macy Gray and "Weapon of Choice", which also was made into an award-winning video starring Christopher Walken. +In 2003, he produced Crazy Beat and Gene by Gene from the Blur album Think Tank, and in 2004, Palookaville was Cook's first studio album for four years. +Fatboy Slim's greatest hits album Why Try Harder was released on 19 June 2006. It comprises eighteen tracks, including ten Top 40 singles, a couple of Number Ones and two exclusive new tracks – "Champion Sound" and "That Old Pair of Jeans".Needs Votehttps://www.fatboyslim.net/https://www.facebook.com/fatboyslimhttps://twitter.com/fatboyslimhttps://en.wikipedia.org/wiki/Fatboy_SlimF SlimF. SlimF.SlimFBSFaboyFat BoyFat Boy SlimFat Boy Slim 99Fat Boy SlimeFatBoySlimFatbot SlimFatboyFatboy AlimFatboy ClimFatboy FatFatboy SlimeFatboySlimFatboyslimSlimSlim Boy Fat流線胖小子Norman CookThe Feelgood FactorUrban All StarsSunny Side UpYum Yum Head FoodChemistry (4)Son Of A Cheeky BoyCheeky BoyAttack HamsterCharlie StainsQuentoxD.J. Mega-Mix + +3233Les BaxterLeslie Thompson BaxterAmerican composer and conductor (born March 14, 1922, Mexia, Texas - died January 15, 1996, Newport Beach, California). +Wrote over 150 film soundtracks. Also known for "[url=http://www.discogs.com/master/645136]The Poor People of Paris[/url]" (1956), a number-one hit.Needs Votehttps://lesbaxter.com/http://www.tamboo.com/baxter/http://www.spaceagepop.com/baxter.htmhttps://en.wikipedia.org/wiki/Les_Baxterhttps://www.imdb.com/name/nm0005958/BaxBaxterL BaxterL. BaxterL. LaxterL.BaxterLes BasterLes Baxter'sLes BuckstarLes DexterLesley BaxterLeslie BaxterLess BaxterLex BaxterLez BaxterCasanova (24)Les Baxter & His OrchestraThe Mel-TonesLes Baxter's DrumsLes Baxter, His Chorus And OrchestraLes Baxter ChorusLes Baxter's BalladeersTheremin With Vocal Group And OrchestraLes Baxter Trio + +3386Kevin SaundersonKevin Maurice SaundersonDJ and producer, born 5 September 1964 in Brooklyn, New York. +Education: Belleville High School, Eastern Michigan University. +Married to [a=Ann Saunderson]. +Father of [a=Dantiez Saunderson] and [a=Damarii Saunderson]. +Brother of [a=Ron Saunderson (2)]. +Production company: [l=KMS Productions]. +Copyright and label: [l=KMS Records] and [l=KMS].Needs Votehttp://kevinsaunderson.comhttp://kevinsaunderson.bandcamp.comhttp://www.facebook.com/kevinsaundersonofficialhttp://www.instagram.com/kevinsaundersonhttp://soundcloud.com/kevinsaundersonhttp://twitter.com/kevinsaundersonhttp://en.wikipedia.org/wiki/Kevin_Saundersonhttp://www.youtube.com/channel/UCwwknnszOAHOXMC__NLZxWwK SaundersonK SaundersonK. SaundersonK. Saunderson,K. SuandersonK.SaundersK.SaundersonKMSKMS Of DetroitKevi SaundersonKevinKevin "Master Reece" SaundersonKevin "Master Reece' SaundersonKevin "Master Reese"Kevin "Master Reese" SaundersonKevin "Master Reese" SaundersonKevin "Master Reese"/SaundersonKevin "Master" ReeseKevin "Master" Reese SaundersonKevin "Masterson Reese" SaundersonKevin "Reece" SaundersonKevin "Rees" SaundersonKevin "Reese" SaundersonKevin "Reeve" SaundersonKevin ''Master Reese'' SaundersonKevin 'Master Reese' SaundersonKevin 'Master Reese' SaundersoneKevin 'Reese' SaundersonKevin (Reese) SaundersonKevin <<Reese>> SaundersonKevin ?Master Reece" SaundersonKevin Master ReeseKevin Master Reese SaundersonKevin Maurice SaundersonKevin Reese SaundersonKevin S.Kevin SandersonKevin SaudersonKevin SaundersenKevin SdaundersonKevin SuandersonKevin «Reese» SaundersonKevin »Master Reese« SaundersonKevin “Reese” SaundersonKevon SaundersonSanderonSandersonSaudersonSaundersonSaunderson KevinSaunderson, KevinSuandersonReeseKeynotesEsser'ayTronikhouseK.S. ExperienceE-DancerInner CityKreemReese & SantonioThe Reese ProjectKaos2 The Hard WayThe Bad BoysTranzistorIntercityUnreleased Project (2)3 DownThe Belleville Three + +3468Frank WilsonFrank Edward Wilson[b]Do NOT confuse with [a=Frank Wilson (13)] who wrote for [a=Barry White], [a=Love Unlimited], [a=Marvin Gaye] ("Oh How I'd Miss You"), [a=Gloria Scott] and [a=Paul Petersen] ("Your Love's Got Me Burnin' Alive")[/b] +American songwriter and producer, born 5 December 1940 in Houston, Texas, USA, died 27 September 2012. Frank cut a few singles of his own but preferred to adopt a fictitious identity on every occasion. He released 45s as Sonny Daye (Power), a duet with Sherlie Matthews credited to Sherl Matthews & Sonny Daye (Power), Eddie Wilson (Tollie) and Chester St. Anthony (A&M). Worked with [a=Marc Gordon (2)] for [l=Motown] in Los Angeles, CA. Often associated with publisher [l=Jobete] + +Needs Votehttps://www.soul-source.co.uk/articles/soul-articles/frank-wilson-the-story-of-do-i-love-you-indeed-i-do-r2565/https://soulstrutter.blogspot.com/2022/12/frank-wilson-profile.htmlhttps://www.theguardian.com/music/2012/oct/05/frank-wilsonhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&keyid=1390788&subid=0&page=1&fromrow=1&torow=25https://www.harboroughmail.co.uk/news/people/its-finding-holy-grail-harborough-multi-millionaire-spends-ps100000-worlds-most-valuable-motown-record-2934123https://repertoire.bmi.com/Search/Catalog?num=9zuao6kEEWxG5upp8JvL2Q%253d%253d&cae=a3NB6pqeDtZaMUI9xyqaWw%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Do%20I%20Love%20You%20%28indeed%20i%20do%29%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A20%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dhttps://en.wikipedia.org/wiki/Frank_Wilson_(musician)BowenE. WilsonF WilsonF, WilsonF. E. WilsonF. Ed WilsonF. WIlsonF. WilliamsF. WilsonF. WilsorF. WinsonF.E. WilsonF.WilsonFrankFrank E WilsonFrank E. WilsonFrank Ed WilsonFrank Edward WilsonFrank Edwards WilsonFrankie WilsonFranky WilsonFu WilsonG. WilsonP. WilsonR. WilsonR.E. WilsonWilsonWison“Smokey”Chester St. AnthonyEddie Wilson (7)Eddie Foster (7)Sonny Daye (2)The Clan + +3631Rob TisseraHettiarachige Robert Darren TisseraHouse/hard dance DJ & producer, DJ tuition and studio engineer from Leeds, United KingdomNeeds Votehttps://www.facebook.com/robtisseraofficial/https://twitter.com/robtisserahttps://soundcloud.com/rob-tissera/https://myspace.com/robtisserahttps://web.archive.org/web/20040611062246/http://www.robtissera.com/Bob TisseraDJ Rob TissekaP.TisseraR TisseraR. TisseraR.TisseraRob TiserraRob TisserraTisseraCircle CityMegadrive (3)P.P. OrangeBobby Tee (2)NativeQuakeFlipped OutRT ProjectL-DopaS. FactorBump 'n' GrindMaison All StarsThe Freak Brothers (3)System Exclusive (5) + +3865Herbie HancockHerbert Jeffrey HancockAmerican jazz pianist, keyboardist, composer, band leader +Born April 12, 1940, in Chicago, Illinois, USA. +Hancock is one of the best-known modern jazz composers, creator of “Watermelon Man” (which has been a reference point throughout his career), “Maiden Voyage”, “Dolphin Dance”, right through to the dance grooves of “[r=3173760]”. Learned the piano from the age of 6, performing piano concertos by [a95546] with the [a837562] aged 11. He came to wider attention via his work with trumpeter [a20956] who introduced him to [l281] co-founder [a252962]; he recorded for Lion's label as both leader and sideman throughout the 1960s while he was a member of trumpeter [a23755]' regular working group from 1963 to 1968. Entered a period of working in jazz fusion from the late 1960s, initially with Davis, and then in his own groups in the 1970s; the "Headhunters" album was a best seller. Around the same time, he worked with the acoustic [a813480], effectively the Davis second quintet with [a55745] substituting.Needs Votehttps://www.herbiehancock.comhttps://www.facebook.com/herbiehancockhttps://www.imdb.com/name/nm0359372https://myspace.com/herbiehancockhttps://myspace.com/herbiehancockrealhttps://www.npr.org/artists/15294441/herbie-hancockhttps://soundcloud.com/herbie-hancock-musichttps://twitter.com/herbiehancockhttps://www.whosampled.com/Herbie-Hancockhttps://en.wikipedia.org/wiki/Herbie_Hancockhttps://www.youtube.com/user/hancockmusichttps://www.youtube.com/user/HerbieHancockVEVOhttps://www.allmusic.com/artist/herbie-hancock-mn0000957296https://www.progarchives.com/artist.asp?id=4024H HancockH HancoockH,. HancockH. HanH. HanckockH. HanckokH. HancockH. HancookH. HandcockH. HanncockH. HarcockH. HaucockH. HenkokasH. J. HancockH.H.H.HancockH.HerbertH.J. HancockH.P.HanckockHancockHancock - HancockHancock HerbetHancock, HerbieHancocqHancokHankcockHanockHarbie HancockHarby HankokHarvie HancockHebert HangkokHeibie HahcockHelbie HahcockHerb HancockHerb HancokHerb HandcockHerbcockHerberet HancockHerbert HancockHerbert J HancockHerbert J. HancockHerbert Jeffrey "Herbie" HancockHerbert Jeffrey HancockHerbert [Herbie] Jeffrey HancockHerbet HancockHerbi HanncockHerbieHerbie FosterHerbie HHerbie HahcockHerbie HanckockHerbie HanckokHerbie HancocHerbie Hancock (Mwandishi)Herbie Hancock HwandishiHerbie Hancock MwandishiHerbie Hancock-MwandisiHerbie HancodkHerbie HancokHerbie HancookHerbie HandcockHerbie HandcokHerbie HandkockHerbie HaneckHerbie HankcockHerbie HankockHerby HancockHerby HandcockHervé HancockJ HancockJ. HancockJohn HancockMr. Herbie HancockMwandishi (Herbie Hancock)Mwandishi / Herbie HancockMwandishi Herbie HancockW. HancockХанкокХърби ХанкокХэрби Хэнкокハービー・ハンコックハーヴィー・ハンコック赫比·汉考克Ronnie ClarkMwandishiThe HeadhuntersBahia BlackArtists United Against ApartheidThe Miles Davis QuintetArtists United For NatureThe Herbie Hancock QuintetThe Hank Mobley QuintetGiants (3)The V.S.O.P. QuintetOrquestra WasEric Dolphy QuintetCollins-Shepley GalaxyHerbie Hancock TrioThe Herbie Hancock GroupPepper Adams Donald Byrd QuintetJoe Henderson QuartetThe Rockit BandCharles Tolliver And His All StarsHerbie Hancock QuartetBuster Williams QuartetThe Herbie Hancock SextetVarious Artists For Children's PromiseHerbie Hancock Bobby Hutcherson QuartetHerbie Hancock's Super QuartetHerbie Hancock Special Quartet + +3868Inner CityAmerican house and techno group formed in Detroit in 1988. The group was originally composed of producer and composer Kevin Saunderson and Chicago native Shanna Jackson, a.k.a. [a=Paris Grey]. Kevin Saunderson is renowned as one of the Belleville Three (along with [a=Juan Atkins] and [a=Derrick May]), the main originators of the Detroit Techno sound. +[a=Ann Saunderson] (Kevin's wife) has also been involved in the group. +The group is currently Kevin, [a=Dantiez Saunderson] (their son), and vocalist [a=Steffanie Christian]. +Needs Votehttp://www.innercitydetroit.comhttps://en.wikipedia.org/wiki/Inner_City_%28band%29http://www.allmusic.com/artist/inner-city-mn0000091122/biographyhttps://www.facebook.com/InnerCityDetroithttp://www.youtube.com/user/InnerCityVEVOI.C.Inerr CityInner CircleInner CiteeInner-CityInnerCityInnercityLiner CityChanel (21)Kevin SaundersonAnn SaundersonShanna JacksonDantiez SaundersonSteffanie Christian + +4013Nick SentienceNicholas FryerHard dance producer, remixer, engineer & DJ from London, UK. +He has played at Ministry of Sound, Gatecrasher, Cream, Space to mention a few clubs. + +Officially the youngest DJ and producer in the world to enter the top 100 DJ list at the age 20 in 2000 (voted as 74th). + +Awards: +Tune of the Year 2003 - Cause and Effect | Mixmag +Remix of the year 2003 - Never lost His Hardcore Remix +Winner HDA - remix of the year Hostile +Best Newcomer | Musik Magazine 2001Correcthttp://web.archive.org/web/20110430062226/http://www.nicksentience.com/http://web.archive.org/web/20150509041637/http://www.nicksentience.com/https://soundcloud.com/nicksentiencehttps://myspace.com/nicksentiencehttps://www.youtube.com/nicksentiencehttps://www.facebook.com/nicksentience.productions/https://www.facebook.com/nickonformathttps://twitter.com/nicksentiencehttp://web.archive.org/web/20051207043143/http://www.qualitytrax.net/nicksentience/http://web.archive.org/web/20061129142918/http://www.nicksentience.net/http://web.archive.org/web/20090207094702/http://www.nicksentience.net/N SentienceN. SentienceN.SentienceNike SentienceSentienceNick FryerFake Hero + +4066Human ResourceDutch hardcore/gabber group established in 1990 by Robert Mahu & Johan van Beek. Later joined by keyboardists Jasper Drexhage and Guido Pernet (also MC), as well as by rapper and former professional basketball player Larenzo Nash. All came from Ridderkerk, The Netherlands. +In 1992 Van Beek left without being replaced. Soon after rapper [a=Marvin D (2)] (aka Marvin Tholen) became a band member but left in 1995. After Drexhage's departure over dissatisfaction with their new hardcore sound he was replaced by Sander Scheurwater. Human Resource disbanded at the end of 1990s. +In 2004 Guido Pernet formed the band once again, this time with Zenon Zevenbergen (as MC) and Maurice Steenbergen. Zevenbergen left soon after the tour in 2005. The same year they introduced the new hardcore-gabber music festival [l=Dominator].Needs Votehttp://en.wikipedia.org/wiki/Human_Resource_(band)H. ResourceHRHuman NatureHuman RecourceHuman ResorseHuman Resource 44 MHuman ResourcesHuman ResourseHuman SourceThe Human ResourceMaurice SteenbergenLarenzo NashZenon ZevenbergenGuido PernetJohan van BeekKirk PatrickMarvin TholenJasper DrexhageRobert MahuSander ScheurwaterLD (23) + +4107GouryellaDutch trance project, originally by [a=Ferry Corsten] and [a=Tijs Verwest] a.k.a [a=DJ Tiësto]. After the release of the third Gouryella single "Tenshi", Tiësto left the project.Correcthttp://en.wikipedia.org/wiki/GouryellaGoureyellaGoureyllaGouryelaGouyrellaGuerellaFerry CorstenTijs Verwest + +4205Giorgio MoroderGiovanni Giorgio MoroderItalian musician, composer, arranger, producer, performer and DJ born on April 26, 1940 in Ortisei, Bolzano, Italy, and currently living in Los Angeles (USA). +Winner of 3 Academy Awards, 3 Grammy Awards & 3 Golden Globes, he is considered one of the most innovative and influential musicians in electronic and disco music. +He founded the [l=Oasis] label and [l265005]. +In the 1970s he invented the [i]Munich Sound[/i] (often confused with [i]Italo-Disco[/i] which will arrive later) and created the first iconic releases with [a=Donna Summer] and [a=Roberta Kelly]. +Today, he is back to DJing for passion. He was called Hansjörg by his mother.Needs Votehttps://www.giorgiomoroder.com/https://giorgiomoroder-raneyshockne.bandcamp.com/http://www.discog.info/moroder.htmlhttps://www.facebook.com/GiorgioMoroderOfficialhttps://www.imdb.com/name/nm0002380/https://www.instagram.com/giorgiomoroder/https://soundcloud.com/giorgiomoroderhttps://soundcloud.com/giorgiomoroderoldieshttps://soundcloud.com/hansj-rg-1https://x.com/giorgiomoroderhttps://en.wikipedia.org/wiki/Giorgio_Moroderhttps://www.youtube.com/@giorgiomoroder3538B. MoroderC. MoroderD. MoroderDJ Giorgio MoroderDž. MoroderisDžordžoF. MoroderG MoroderG, MoroderG-. MoroderG. G. MorodorG. GoroderG. MaroderG. ModoberG. MododerG. MonoderG. Moode R.G. MorederG. MoroderG. MoroderrG. MorodorG. MorolerG. MororderG. moroderG. モロダーG.A. MoroderG.M.G.MoroderG.Moroder-ChaseG: MoroderGeorg MoroderGeorgeGeorge MoroderGeorgeo MoroderGeorges MoroderGeorgie MoroderGeorgioGeorgio MonoderGeorgio MoroderGeorgio MorodorGiogio MoroderGiorgi MoroderGiorgioGiorgio And FriendsGiorgio G MoroderGiorgio G. MoroderGiorgio M.Giorgio MaroderGiorgio MordoerGiorgio MorodaGiorgio MorodorGiorgio MorodrGiorgio MorogderGiorgio MorrodorGiorgio MorroneGiorgio-MoroderGiorgo MoroderGiorio MoroderGirogioGirogio MoroderGlorgio MoroderGmGoirgio MoroderGorge MoroderGorgio MoroderGriogio MoroderJ. MoroderL. MoroderM. GiorgioM.GiorgioMaroderMaroder, GiorgioMaster GioMoraderMorderMoreoderMorodaMorodeMoroderMoroder / ChaseMoroder GMoroder G.Moroder GiorgioMoroder R.Moroder, G.Moroder, GiorgioMoroder, Giorgio (DE 1)MorodesMorodorMororderMorrisMorroderNoroderR. MoroderStop InternationalThe InvasionTododerДж. МородерДжорджио МородерДжорджио МородэрДжорджоДжорджо МородэрМародиМородерジョルジォ・モロダージョルジオ・モロダージョルジオ・モローデル喬吉歐摩洛德喬吉歐莫洛德Einzelgänger (2)Stammer The HammerMusicland SetJohnny SchillingThe Beepers (2)Hans ThieselMunich MachineGiorgio Moroder ProjectGiorgio Moroder & Pete BellotteChildren Of The MissionStop Studio GroupSpinach (3)Common Cause (3)Inter-MissionThe Banana CrewRock RomanceGiorgio And The MorodiansThe Great UnknownsGeorge E Il Suo ComplessoOrchestra MoroderOrchester Mr. Moroder And The Giovanni Singers + +4223Ferry CorstenFerry CorstenDutch DJ, producer and label owner. Born: 4 December 1973, Rotterdam, The Netherlands. Older brother of [a=Robbert Corsten].Needs Votehttp://www.ferrycorsten.comhttps://en.wikipedia.org/wiki/Ferry_Corstenhttp://www.facebook.com/FerryCorstenhttp://www.mixcloud.com/FerryCorstenhttp://www.songkick.com/artists/305645-ferry-corstenhttp://soundcloud.com/ferry-corsten http://twitter.com/FerryCorstenhttp://vk.com/ferrycorstenhttp://www.youtube.com/ferrycorstenhttp://web.archive.org/web/20070118232850/http://www.flashoverrecordings.com:80/artists_ferrycorsten.htmlhttp://web.archive.org/web/20090416033055/http://www.flashoverrecordings.com:80/FO_ArtistInfo.php?ArtistID=1CorstenCorsten FerryCorsten, FerryCostenDJ Ferry CorstenDJ Frry RstenF CorstenF-CorstenF. CorstenF. CorsteneF. CorsterF. CosterF.C.F.CorstenFerryFerry "Moonman" CorstenFerry 'System F' CorstenFerry CarstenFerry CorsetnFerry CorsonFerry CorsteinFerry CorstenFerry CorstensFerry CortsenFerry CortstenFerry CostenFerry CoulstonFerry KorstenFerry KosterFery CorstenTerry Corstenフェリー・コーステン費利高士頓MoonmanAlbionFree InsidePulp VictimDigital ControlExiterFunk EinsatzEon (2)A Jolly Good FellowFerrZenithalSidewinder (2)DotNL4x4Kinky ToysDance TherapySystem FParty CruiserRaya ShakuBypass (4)Skywalker (4)The NutterFirmly UndagroundCyber FDelaquenteLunalifeFarinhaPulse (28)DJ Sno-WhiteFesten (2)East Vs. WestGouryellaVeracochaStarpartyVimanaSoundcheckPenetratorMind To MindAlter Native2HDRoefSpirit Of AdventureBlade RacerDiscodroidsFernickSons Of AliensSelected WorxProject AuroraRiptideScumElektrikaNixielandBoogie BoxEnergiyaDouble Dutch (4)CadaG-FreakFB (3)A.N.Y.Block (4)Embrace (6)New World PunxLoCo (52)S.O.A. (5)Tellurians (2) + +4443Public Domain[b]WARNING: Please do not use this artist to credit the publishing information "Public Domain" or any of its variations. This information must go to the notes. +Do not confuse this artist with the Dutch Hardcore act [a=Public Domain (2)].[/b] + + +From Ayr, Scotland, UK. "Operation Blade" entered the UK national charts at Number Five and sold upwards of 250,000 copies with Platinum for sales in Australia. + +Public Domain changed their line up in 2002 when Mallorca Lee and David Forbes continued with their solo projects. +Public Domain originally were James Allan, Mark Sherry and Alistair MacIsaac, that penned the hit "Operation Blade". After signing the track to Slinky it was decided they needed a frontman - enter Mallorca Lee with David Forbes; and both Mallorca and David contributed to the album "Hardhop Superstars". +After touring the album worldwide in 2001/2003, Mallorca and David continued with their solo projects, and in 2004 Alistair MacIsaac also left the band to concentrate on other projects. Enter Neil Skinner (MC Cyclone), a lifelong friend of all the guys and well-known for his skills with Dyewitness. + +In 2009 Mark Sherry moved on to concentrate on his Solo projects. + + +The present lineup consists of James Allan and Neil Skinner. + + +Correcthttp://www.facebook.com/pages/Public-Domain-Soundsystem-Official/256889764332912P. D.P. D.-N/MP.D.PDPOPublic Domain Sound SystemPublic Domain SoundsystemPublik Domainp. d.SAS (8)David ForbesMallorca LeeMark SherryJames AllanNeil SkinnerAlistair MacIsaac + +4629SignumDutch trance project founded in 1997 by Ron Hagen and Pascal Minnaard. The name was inspired by the Opel/Vauxhall car model of the same name. + +In 2007 Pascal Minnaard left the project, which has since been continued as solo project by Ron Hagen.Needs Votehttps://www.facebook.com/SignumFanPagehttps://soundcloud.com/signumofficialhttps://myspace.com/signumdjshttps://web.archive.org/web/20221209091644/http://www.signum-music.com/SigmaSignalSignum Signal席格諾雙人組Pascal MinnaardRonald Hagen + +4924DiabloNeeds Vote"Diablo"DJ Diablo + +5375Jens LissatJens LissatNeeds Votehttps://www.facebook.com/JensLissatOfficial/https://de.wikipedia.org/wiki/Jens_Lissathttps://soundcloud.com/lissathttps://instagram/jenslissatofficialhttps://www.youtube.com/channel/UCIZLIc_IrtFB8H3e2q7NTMAD J Jens 'Jeli' LissatD.J. Jens (JELI) LissatDJ Jens 'Jeli' LissatGens LissatJ LissatJ. LiffatJ. LissartJ. LissatJ. LisssatJ.L.J.LissatJ.M. JayJLJL ProjectJean LissatJean Lissat ProjectJeliJeli "Jay"Jens LissartJens Lissat ProjectJens Lisset ProjectJens LizardJons LissatJune LessatLJLLLissatLissat, J.Lissat, JensLissathLisstLissütSat 1La DelphineJerlPhenomaniaInteractiveE-TraxU-PeopleJLRZThe Beat PirateNo RespectTwin EQPrayersThe CommandoQuartermainKomturLove Club (2)Lissat & BrainOff-ShoreTainted TwoB. SadnessBrettSigmund Und Seine FreundeCenterraveMotorclanRazzamatazzSilver SurferTriple J (2)Citronic BaseHoly HouseJoey SylveraThe Real Rave-O-LutionBig TrinityPCP Project (2)Maxim (4)Da BlastPainted HeartCulminateLissat & VoltaxxPiamicaPierce & JerlSharpheadzWhizzkidsDie AsketenFL (2)Deepdisco + +5522Chris CChris CrooksUK hard house / trance producer, remixer & DJ. He's been the force behind many labels such as [l=Mind Over Matter], [l=Mohawk Records], [l=Nile Records], [l=Aztec], [l=Pirate Wax Records] & [l=Apache Records].Needs VoteC CrooksC. CrooksC. RooksChris C.Chris CrooksChris-CChristopher CrooksSebanelliA10Chris Crooks (5)GaneshBeatniqzTastyChris C & Dynamic InterventionChris C & M-ZoneTripswitch (2) + +5531Tony De VitAnthony de VitBorn 12/9/57: Died 2/7/1998 - DJ from Kidderminster, UK active from the 1970s until the 1990s. Owned [l=Jump Wax Records]. +Needs Votehttps://www.facebook.com/profile.php?id=61556763883944http://www.tonydevit.co.ukhttp://en.wikipedia.org/wiki/Tony_De_VitDe VitT. De VitT.D.V.T.De VitTDVTDV (Tony De Vit)Td'VTdVTon DevittToni De VitTony D VitTony De Vit MixTony De VitoTony De VittTony De-VitTony DeVitTony DevitTony Di VitTony DiVitTony The VitTony de VitTony-De-VitTony-de-VitTony De Vit & Simon ParkesVersion Two + +5538IncisionsWillem Jelle FaberCorrectInciciousIncisionIncision'sInsicionsWishboneMac ZimmsThe Groove CollectorTalespinGossipFlaxFellow ManDa MindcrusherYukan ProjectUltra SpinJelle FaberJens HollandWillem FaberTrickster (3)Q-Tip (2)ScandallNeon (17)Bellrock + +5539Jon The DentistJohn David VaughanUK hard house/trance producer. + +Jon The Dentist has released tunes on such labels as Tidy Trax, Sony, EMI Positiva, Nukleuz, ID&T, and his own labels Phoenix Uprising, Platinum and Boscaland. +Needs Votehttp://www.myspace.com/jonthedentisthttps://www.facebook.com/jonthedentistofficial2016https://jonthedentist.bandcamp.com/DentistJTDJohn The DentistJon "The Dentist"Jon The DentistsJonThe DentistJtDThe DentistMadelyNovocaine 2001OD1DJ FreshtraxNet AddictJohan SvensonNigmaJon NovacaneBillabongThe Dentist From BoscalandKyotoUnderground Cyber MovementHelix 360Jon NovacaineGreen CardRetro-gramsSilo (2)Novacane (2)John Vaughan (2)Kinetic (12)The Disciples Of HardcoreJon E BoyThe Omen (8)Jon VoornJohnny BoscalandIn Space We DanceCation + +5683Carlos GarnettCarlos Alfredo Garnett Watts Panamanian American jazz tenor saxophonist, flutist, composer, arranger and singer. Born on December 1, 1938 in Red Tank, Panama Canal Zone. Died on March 3, 2023. + +While in Panama, he was very influenced by Panamanian latin music and jazz scene as well as his West Indian heritage and calypso music. He was then heavily influenced by [a=James Moody], [a=Paul Desmond], [a=Zoot Sims] among other saxophonists. + +Garnett moved to New York from Panama in 1962, where he played at jam sessions with upcoming icons such as [a=Rashied Ali] and [a=Roland Alexander] as well as in jazz organ trios and rock groups. He would go on to play and record with [a=Freddie Hubbard] (1968-1969), [a=Art Blakey & The Jazz Messengers] (1969-1970), [a=Andrew Hill] (1969-1970), [a=Charles Mingus] (1970), [a=Miles Davis] (1972), [a=Pharaoh Sanders] (1972) and others. From 1970 he led a number of large ensembles combining jazz with samba, Afro-Cuban, calypso and rock. His group The Universal Black Force was a pioneering presence in the Afrocentric and Afrofuturist movements of the early 1970s. + +In the mid 1970s Garnett released 5 albums on Muse, starting with possibly his best known album Black Love (featuring Mother Of The Future and Banks Of The Nile), which opened the path for musicians like [a=Dee Dee Bridgewater]. He also collaborated on several of [a=Norman Connors] albums of the 1970's providing arranging and some of his compositions. Other collaborations include: [a=Milt Ward], [a=James Mtume], [a=Robin Kenyatta] and [a=Charles Earland]. In the 1980s he only did a few scarce recordings, but in the 1990s he returned with new music for his albums Resurgence, Fuego En Mi Alma, Under Nubian Skies and Moon Shadow on Highnote among other recordings. + +His autobiography Mango Tree Musician (written with [a=Jaime J. Ortiz]) was published by McFarland Press Publishing in 2024-09 (ISBN 9781476690247). + +Needs Votehttps://en.wikipedia.org/wiki/Carlos_Garnetthttps://www.imdb.com/name/nm7078939/https://jazztimes.com/archives/carlos-garnett/https://journal.equinoxpub.com/JAZZ/article/view/33127https://soulbrother.com/feature/carlos-garnett-rest-in-peace/https://worldofjazz.org/carlos-garnett/C. GarnettC.GarnettCarlos Alfredo GarnettCarlos GarnetCarlos GarnetteCharles GarnettCharles GarnetteGarnetGarnettJoe Garnetカルロス·ガーネットArt Blakey & The Jazz MessengersMtume Umoja EnsembleMiles Davis NonetWoody Shaw Quintet + +5762Judge JulesJulius O'RiordanBorn on 26th October 1965. + +Julius studied at the London School of Economics (LSE) from 1986 - 1988 and earned a 2:1 degree in law. During his first year he was involved in the student union and started organising parties where he DJ'd and due to the nature of his studies he earned the moniker "Judge Jules". + +He started his career putting on warehouse parties in the late 80s before becoming resident DJ for MFI. Has also hosted shows on Kiss FM and Radio 1. He was also the head of A&R for [l=Manifesto]. + +His uncle is celebrity chef and restauranteur, Rick Stein.Correcthttp://www.judgejules.nethttp://www.judgejulesarchive.co.ukhttp://www.facebook.com/judgejuleshttp://soundcloud.com/judge-jules-1http://www.twitter.com/realjudgejuleshttp://www.youtube.com/user/djjudgejules'Judge' JulesHi Gate (Judge Jules)J JulesJ. JulesJ.J.J.JulesJJJudgeJudge JklesJules判官主兒Julius O'RiordanMegadrone + +5775Mauro PicottoMauro Picotto[b]Mauro Picotto[/b] (born December 25, 1966) is an Italian electronic music producer and DJ, grown up in the music industry inside the company [l=Media Records] and [l=Media Studio] since the early 90's. He became well known as a solo artist since the late 90's with songs like "Lizard", "Komodo (Save a Soul)", "Pulsar" or "Iguana". +Since early 00's, he left Media Studio and he managed his own recording studios. +He has collaborated with other electronica/trance musicians such as [a6197] and [a455482]. He now promotes his own club night, Meganite (named after an early 21st-century track of his), which has run for consecutive years annually since 2005 at Privilege Ibiza. He now produces under his own record label, [l50793].Needs Votehttp://www.mauro-picotto.com/https://en.wikipedia.org/wiki/Mauro_Picottohttps://www.facebook.com/mauropicottodjhttps://twitter.com/MauroPicottoDJhttps://www.instagram.com/mauropicottodj/https://soundcloud.com/mauro_picottoM PiccottoM PicottiM PicottoM picottoM, PicottoM. PicottoM. "R.A.F." PicottoM. "RAF" PicottoM. Pic8M. PicattoM. PiccottoM. PicoltaM. PicootM. PicotoM. PicottaM. PicottiM. PicottoM. PilottoM. R.A.F. PicottoM.P.M.PicottaM.PicottoM/ PicottoMPMario PicottoMaura PicottoMauri PicottoMaurio PicottoMauroMauro PicattoMauro PiccotoMauro PiccottoMauro PicotoMauro PicottiMauroPicottoMoro PicottoP.PicottoPicotaniPicottoPicotto MauroPicotto, M.Picotto, MauroPucottoR.Ferriμπ馬洛皮卡多R.A.F. By PicottoMegamind (2)MP8M-Peak-8D.J. Pic 8The Lizard ManMegamindCRWSharada House GangPlus StaplesR.A.F.With It GuysMig 29Club HouseMegavoicesVenerdiFits Of GloomBrahamaEs VedraP.W.M.LavaNo N@meS.S.R.T.S.O.B.PA.PE.RI.NO.Mauro Picotto & Riccardo FerriMediatorMig 27PPK (2)DJ Creator (2)2 SpacesWWWDash 8Coconut GrooveRossoWagamamaTom Cat (2)Lesson Number 1AxcelVenice (2)Shibuya (2)Colours (10)Mario Più & Mauro PicottoFun Brothers (2)Daylight (2)'995 Dance AuthoritySDS 19.92Abduction (2)Pivot (3)R.U.O.K.Random (18) + +5840Warren ClarkeEnglish house/dance DJ - producerNeeds VoteClarkeW. ClarkeW.ClarkeWarren ClarckeWarren ClarkAmi-OBig BirdRhythmatixWinston MorganSouth Central (2)Lab RatsKnuckleheadzWeird ScienceThe Experiment (2)Sonic Soul (8) + +5951Serge GainsbourgLucien GinsburgPoet, singer-songwriter, painter, actor and director, born April 2, 1928 in Paris, died March 2, 1991, ibid., son of Jewish Russian parents. He had well known children: a daughter, [url=http://www.discogs.com/artist/Charlotte+Gainsbourg]Charlotte[/url], with [a=Jane Birkin]; and a son, [url=http://www.discogs.com/artist/Lulu+Gainsbourg]Lucien Gainsbourg[/url] (aka Lulu), with his last partner, [a=Bambou]. Two other children are non-mediatics: Natacha (born 8 August 1964) and Paul (born 13 April 1968) with Françoise Antoinette Pancrazzi. + +He wanted to be a painter but earned his living as a piano player in bars. He was tapped to join the cast of the musical 'Milord L'Arsouille', where he reluctantly assumed a singing role; self-conscious about his rather homely appearance, Gainsbourg initially wanted only to carve out a niche as a composer and producer, never as a performer. + +His early influence was [a=Boris Vian]. Gainsbourg wanted to free himself from what he considered old-fashioned 'chanson' and explore other musical grounds, influenced especially by British and American pop. He also wrote soundtracks for more than 40 movies and directed himself in four movies: 'Je t'aime... moi non plus' (10 years censored*), 'Equateur', 'Charlotte For Ever' and 'Stan The Flasher'. + +* [r=541072] (1969) the song, featured simulated sounds of female orgasm. Originally recorded with [a=Brigitte Bardot], it was instead released with a future girlfriend [a=Jane Birkin] as Brigitte Bardot backed out. The song was censored in many countries and in France even the toned-down version was suppressed. The Vatican made a public statement citing the song as offensive. Its notoriety led to it reaching no. 1 in the UK chart. + +A frequent interpreter of his songs was British torch singer [a=Petula Clark], whose success in France was propelled by her recordings of his tunes but the first English-language version of a Gainsbourg song was [a=Dionne Warwick]'s 1965 version of 'Mamadou'. + +Concept album [r=408587] produced and arranged by [a=Jean-Claude Vannier] was somewhat based on Nabokov's novel Lolita. It has proven influential with artists such as [a=Air], [a=David Holmes] who covered a track and [a=Beck]. + +in 1978 with [a=Robbie Shakespeare], [a=Sly Dunbar] and [a=Rita Marley] he made a Reggae version of the French national anthem "La Marseillaise". His version earned him death threats from right wing veterans of the Algerian War of Independence (OAS). Gainsbourg was able to reply to his critics that his version was in fact closer to the original as the manuscript clearly shows the words "Aux armes et cætera..." for the chorus.Needs Votehttps://www.gainsbourg.net/https://www.facebook.com/sgainsbourghttps://www.imdb.com/name/nm0006092/https://twitter.com/gainsbourgoffhttps://en.wikipedia.org/wiki/Serge_Gainsbourghttps://fr.wikipedia.org/wiki/Serge_Gainsbourghttps://fr.wikipedia.org/wiki/Reprises_des_chansons_de_Serge_Gainsbourghttps://www.allmusic.com/artist/serge-gainsbourg-mn0000174822De GainsbourgFainsbourgG. GainsbourgG. GaisbourgGainbourgGainsbarreGainsbergGainsbooghGainsborgGainsboroughGainsbougGainsboughGainsbourgGainsbourg SGainsbourg S.Gainsbourg SergeGainsbourg, SergeGainsbourg...GainsbourgeGainsbourghGainsbourg…GainsburgGalesbourgGoinsboroughJ. GainsborgJane BirkinLulu GainsbourgMonsieur GainsbourgMr. GainsbourgS GainsbourgS GainsbourghS, GainsbourgS. GaeinsbourghS. GaidsbourgS. GaimsbourgS. GainbourgS. GainbourghS. GainbsourgS. GainsbergS. GainsborgS. GainsborougS. GainsboroughS. GainsboughS. GainsbourS. GainsbourgS. GainsbourghS. GainsbuorgS. GainsburgS. GamsbbourgS. GrainsbourgS. GrinsbourgS. Serge GainsbourgS.. GainsbourgS.GainbourghS.GainsbergS.GainsboroughS.GainsbourgS; GainsbourgSerg GainsbourgSergaSergeSerge GainbourgSerge Gains BourgSerge GainsbergSerge GainsborougSerge GainsboroughSerge GainsbourghSerge GainsbourrgSerge GainsburgSerge GainzbourgSerge GaisbourgSerge GanisbourgSerge GinzburgSerge GofnsbourgSerge-GainsbourgSserge GainsbourgГейнсбургС. ГейнсбургС. ГинзбурСерж Гинсбурמ. גיינסבורגס. גיינסבורגסקג׳ גינסבוורגסרג' גינזבורגסרג' גינסבורגסרז' גינזבורגガインスブールゲーンスブールセルジュ・ゲインズブールセルジュ・ゲンズブールセルジュ・ゲーンスブールセルジュ・ゲーンズブールLucien Ginsburg + +5969Captain TinribJon BellUK HardHouse, NRG and Hard Trance producer - founder of the famed [l=Tinrib Recordings] label since 1995. +Currently on a break in New Zealand and continued on with Tinrib Digital.Correcthttps://www.facebook.com/captaintinribPsy SkipperThe CaptainThe TinribizerTin RibTinribD.R. BaseEl CapitanoJon BellFishcake + +5987K90From Cambridge, UK. + +K90 began as [a83276] and [a83277], who were work colleagues, making music together in 1991/92. They made a track and didn't know what to call it, so Chris typed in 2 random letters, and two random numbers "K A 9 0". The track wasn't released, but they liked the name and kept it as their stage name. A few months later, they had their first EP signed to then London hardcore label [l628] and when they went to sign the contracts, the label boss said "I think you should drop the A [from your name]" so they did, and from then on were known as K90. Chris later left the group and K90 became a solo project of Mark Doggett.Correcthttp://www.k90.co.ukhttps://www.facebook.com/K90musicK 90K-90K.90K90 ProjectN90Mark DoggettChris Hancock + +6070Jon DoeJohn PittsUK Hard Dance DJ, producer, remixer & audio mastering engineer. + +Jon Doe of mid 90's hardcore later made hard dance records from 1998. +Formed semi fictional rave group CLSM in 2002 which campaigned successfully for Radio1 to play Hard dance and hardcore music, choosing Kutski for the Dj to carry out that role. + +CLSM tracklisted Ministry of sound Hardcore classics, selling over 150 000 copies gaining gold status. +Work with Gavin Foord includes CLSM, Maximus Baxter and FooR. + +FooR mixed Pure garage which reached number 9 in the uk compilation charts. +The track 'Fresh' by FooR is the current Coors light advert 'Fresh Climb' campaign. + +Jon Doe and Gavin Foord currently produce records for Tyrone.Needs Votehttp://web.archive.org/web/20110208025210/http://jon-doe.com/http://jonclsmdoe.bandcamp.comhttp://jondoeclsm.blogspot.comhttp://www.facebook.com/jondoeclsmhttp://www.facebook.com/jonclsmdoehttp://www.facebook.com/jondoeclsmmasteringhttp://www.instagram.com/jondoeclsmhttp://www.mixcloud.com/jondoeclsmhttp://myspace.com/jondoeukhttp://soundcloud.com/jondoeclsmhttp://twitter.com/jondoeclsmhttp://www.youtube.com/jondoeclsm(jd)BDJ Jon DoeDon JoeJ. DoeJ.DJ.D.Joe DoeJohn DoeJonJon 'D' DoeUK's Jon DoePeacemakerBeat FactoryCLSMFlava 'N' DivineD.H.S.S.D-Frag (2)DJ BookingsWarp 3Chavbots From Outta SpaceJD303Jon PittsD (6)Colin MeonDJ NedNew Ground (2)Dave Thomas (25)NosurnameLymington Rot ClubJon Dbois + +6123Scott BrownScott Alexander BrownBorn: 28 December, 1972 in Glasgow, Scotland, UK. + +Dance music producer and founder of the [l=Evolution Records] stable. Considered to be one of the most important figures in the Scottish music scene. His unique Bouncy Techno sound helped start many other artists on the world scene. As well as producing various material from Gabber to Trance, Scott has also hit the charts with his band Q-Tex and had numerous other recordings released all over the world. +Needs Votehttp://www.evolutionrecords.nethttp://www.myspace.com/dj_scottbrownhttps://twitter.com/djscottbrownA.BrownBrownBrown, ScottC. BrownD.J. Scott BrownDJ Scott BrownJ. BrownS BrownS. BrownS.A. BrownS.BrownSBSJ BrownScoott BrownScot BrownScottScott 'The Highest Jump' BrownScott BScott B.Scott PaulSoctt BrownSscott BrownSteve BrownAnnihilatorThe ScotchmanNew Style AnarchistsGenasideMr. BrownLord Of HardcoreHardware (3)SP 12Firestarter (2)Orbit (2)Plus SystemGenetikMook (2)Dream CollectiveHardcore AuthorityPunisher (2)Trance FictionDJ EquazionFuturetribeX-Tech (2)Q-TexKinetic PleasureHyperactMarc Smith vs. Scott BrownBass ReactionBass XMassiveAnalogueSub SourceEquazionDe-viation CrewInterstate (3)Queens Boro Crew + +6197DJ TiëstoTijs Michiel VerwestDJ Tiësto (born 17 January, 1969, Breda, North Brabant, Netherlands), also known as Tiësto, is a Dutch electronic dance music producer and DJ. In 1997, he founded the Trance label [l=Black Hole Recordings] with [a=Arny Bink]. In 1998, Tijs met producer [a=Dennis Waakop Reijers] and this led to a long and successful collaboration. Dennis did most of the productions of the tracks between 1998 till 2006, Tiesto was not able to produce the tracks by himslef. 95% was produced by Dennis Waakop. Tiësto's fame rose in the 2000's as his music was exposed to mainstream audiences. He was named "the Greatest DJ of All Time" by [l=Mixmag] magazine in a poll voted by the fans, also considered as "God of Trance" by several fanzines. In 2001, Tijs founded another label called [l=Magik Muzik]. In 2004 became the first DJ to play onstage at the Olympics in Athens - the recording of the event has been released as [m=39593]. +After the [m=188571] album in 2009, he decided to move towards more popular fields of Dance-pop, Big Room and Electro House. After selling his part of Black Hole Recordings, he founded his new label [l=Musical Freedom (2)] (known as [l=Musical Freedom Records] nowdays). +In 2025, he announced his comeback to trance with his track [r=35725651].Needs Votehttp://www.tiesto.com/http://www.facebook.com/tiestohttp://twitter.com/tiestohttp://soundcloud.com/tiestohttp://www.youtube.com/officialtiestohttp://www.songkick.com/artists/152971-tiestohttps://en.wikipedia.org/wiki/Ti%C3%ABstoD. J. TiestoD.J TiestoD.J. TiestoD.J. TiëstoD.J.TiestoDJ TestoDJ TiestaDJ TiestoDJ TinstoDJ TiêstoDJ TïestoDJ. TiestoDJ. TiëstoDJ.TiestoDj TiesDj TiestoDj TiëstoTeistoTiestoTiestöTiéstoTiêstoTiëstTiëstoTiësto "Alone In The Dark"Tiësto,TiĎstoTiлstoTiёstoTïestoTïëstoティエスト提雅斯多RozeStray DogWild BunchDrumfireTom AceLoop ControlDa JokerDJ MephistoDJ LimitedPassenger (2)Handover CircuitTijs VerwestSteve Forte RioRoberto ScilattiJavier RodriguezTST (6)VER:WEST + +6199CRWItalian project.CorrectC R WC.R.WC.R.W.CWRχρωMauro PicottoRiccardo FerriAndrea RemondiniMassimo Chiticonti + +6216EquinoxJason BurgessEquinox is a UK Hard Dance / NRG producer & responsible for anthems such as "The Tradesman", "Immure", "Puma", "Electric Revolution" & "No More". He has also released on notable labels such as [l=Ministry of Sound], [l=Kaktai Records], [l=Nukleuz], [l=Tidy Trax], [l=Blanco Y Negro (2)], [l=Recharge] & [l=Tripoli Trax] as well as his own label [l=Tranzmit Recordings UK] and it's sublabels, [l=Tonka Trax] & [l=Waxworxx Recordings].Needs Votehttp://www.myspace.com/tranzmitukhttp://www.myspace.com/tonkatraxhttp://www.myspace.com/syntheticKesslerExpander (2)Jason BurgessAltered State (4) + +7027VangelisΕυάγγελος Οδυσσέας Παπαθανασίου = Evángelos Odysséas Papathanassíou[b] NOTE: If credited as [a=Evangelos Papathanassiou] or any other name with Papathanassiou, please use that entry![/b] +Greek composer and arranger of electronic, progressive, ambient, and classical orchestral music. He is also a painter. +Born: 29 March 1943 in Agria near Volos, Greece +Died: 17 May 2022 in Paris, France (aged 79) from SARScov2. + +[a7027] started writing music when he was 4 and performed his first live concert at age 6. +Vangelis started painting aged 7. His first exhibition, of 70 paintings, was held in 2003 at Almudin in Valencia, Spain. It then toured South America until the end of 2004 +He started his music career as a member of [a1027104]. In the sixties, he was a founding member of [a=Aphrodite's Child] along with [a=Demis Roussos] and [a=Lucas Sideras]. He also enjoyed succes as part of [a95452] early in the eighties. A talented composer, producer and musician, Vangelis is famous for composing soundtracks to films such as 'Blade Runner', 'Chariots Of Fire' and '1492: Conquest of Paradise'. Vangelis has made over 60 albums, many of them collaborations.Needs Votehttps://www.facebook.com/VangelisOfficialhttps://www.elsew.com/https://bladerunner.fandom.com/wiki/Vangelishttps://groups.io/g/Vangelishttps://www.imdb.com/name/nm0006331/https://www.last.fm/music/Vangelishttps://www.nemostudios.co.uk/https://www.progarchives.com/artist.asp?id=1608https://www.universalmusic.fr/artistes/20000028905http://www.vangeliscollector.com/https://www.vangelismovements.com/https://el.wikipedia.org/wiki/%CE%92%CE%B1%CE%B3%CE%B3%CE%AD%CE%BB%CE%B7%CF%82_%CE%A0%CE%B1%CF%80%CE%B1%CE%B8%CE%B1%CE%BD%CE%B1%CF%83%CE%AF%CE%BF%CF%85https://en.wikipedia.org/wiki/Vangelishttps://www.youtube.com/channel/UCNms80n59AltHVQuPgGrKkghttps://www.youtube.com/channel/UCWWBOAJrQd7UqNundwjGb-whttps://www.allmusic.com/artist/vangelis-mn0000840000"The Vangelis"E. P. VangelisE. VangelisE.P. VangelisJ. VangelisJon VangelisP. VangelisVan GelisVan GellisVangeliVangelis O.Vangelis PVangelis P.Vangelis PapathanassiouVangelis PapathanassíouVangelisZVangellisVangellsVangelysVanghelisVangilisVnagelisde VangelisВангелисוונגליסונגליסونجلیزونجلیسヴァンゲリス凡基利斯范吉利斯范吉里斯반젤리스Odyssey (17)Mama 'ORichard BroadbakerA. LoaferAlpha Beta (4)Evangelos Papathanassiou + +7153Willie HutchWilliam McKinley HutchisonAmerican vocalist, guitarist and songwriter. Born December 6, 1944, in Los Angeles, died September 19, 2005, in Dallas. Best remembered for “The Mack” soundtrack, he also worked with many Motown artists, including The Jackson 5 for whom he co-wrote the hit “I’ll Be There”.Needs Votehttps://en.wikipedia.org/wiki/Willie_Hutchhttps://soulstrutter.blogspot.com/2021/12/willie-hutch-profile-of-part-1-singles.htmlhttps://www.imdb.com/name/nm0404188/https://www.allmusic.com/artist/willie-hutch-mn0000580485https://www.last.fm/music/Willie+Hutch/https://www.whosampled.com/Willie-Hutch/HatchHutchHutch, WillieHutchisonR. HutchSutchW HutchW. HatchW. HuchW. HulchW. HutchW. HutchisonW. Willie HutchW.HutchW: HutchWille HuchWillie ButchWillie HurtchWillie HutchisonWilly HutchJimmy ConwellRichard TempleWillie HutchinsonCharles Hutchinson (4)Beecat + +7527The Sharp BoysUK house producer duo. + +[b](Please note that often, Sharp will be credited as a remix name, but upon further inspection, The Sharp Boys will actually be credited. Please take the time to decipher this information when entering their credits into the database.)[/b] +Needs Votehttp://www.sharprecordings.co.ukhttp://www.myspace.com/thesharpboyshttp://www.sharpboys.co.ukhttps://www.facebook.com/thesharpboys/"The Sharp Boys"SHARPSharpSharp BoySharp BoysSharp Boys,Sharp BoyzSharp BrosSharp ToolsSharp Tools Vol. 1Sharp Tools Volume 3SharpboysSharpe BoysSharpmixThe Sharp BoyzThe Sharp BrothersThe Sharpboys“The Sharp Boys"DigistarArcade (3)Sharp ToolsGeorge Mitchell (6)Steven Doherty (2) + +7600E-TraxNeeds VoteE TraxE Trax Volume 1E-Trax Volumen 1E-TraxxE. TraxEtraxxPhenomaniaU-PeopleJLRZNo RespectTwin EQThe CommandoQuartermainTainted TwoBrettCenterraveThe Real Rave-O-LutionPCP Project (2)Maxim (4)Jens LissatRamon Zenker + +8118JensGerman Techno/Trance duo.Needs VoteDJ JensJenJen'sJens GlompJens'Jens MahlstedtGerret Frerichs + +8284Sarah VaughanSarah Lois VaughanAmerican jazz singer, born 27 March 1924 in Newark, New Jersey, USA, died 3 April 1990 in Hidden Hills, California, USA. + +Having won a talent contest in 1942 at Harlem's Apollo Theater with her rendition of "Body And Soul", she was member of [a=Earl Hines And His Orchestra] between 1942 and 1944, and from 1944 to 45 of [a=Billy Eckstine And His Orchestra]. From 1946 to 1957 she was accompanied on the piano by [a=Jimmy Jones (3)], [a=Ronnell Bright] and [a=Kirk Stuart]. She worked with [a=John Kirby] and became a solo artist. +She was married three times: to [a=George Treadwell] (1946–1958), to [a=Clyde B. Atkins] (1958–1961), and to [a=Waymon Reed] (1978–1981).Needs Votehttps://www.biography.com/musician/sarah-vaughanhttps://www.britannica.com/biography/Sarah-Vaughanhttps://sarahvaughan.bandcamp.com/https://www.imdb.com/name/nm0891098/https://en.wikipedia.org/wiki/Sarah_Vaughanhttps://www.allmusic.com/artist/sarah-vaughan-mn0000204901Miss Sarah Lois VaughanS. VaughanS.VaughanSalah VaughnSara VaughanSara VaughnSarahSarah Vaughan & FriendsSarah Vaughan m.v.Sarah Vaughan'sSarah Vaughan, Voc.Sarah VaughnSarah VauhanSarra VaughnVaughanVaughnСара ВоанСара Вонサラ・ヴォーンBilly Eckstine And His OrchestraEarl Hines And His OrchestraDizzy Gillespie And His All Star QuintetSarah Vaughan And Her TrioTony Scott And His Down Beat Club SeptetSarah Vaughan And The All Star BandSarah Vaughan And Her OctetDizzy Gillespie All StarsSarah Vaughan And Her OrchestraThe Big Three (6) + +8337Rachel AuburnRachel Auburn (born 1957) is a British fashion designer and hard house and trance disc jockey and music producer. She has performed her music extensively internationally, and was both the first female DJ to play in China and the first to showcase 1980s London clubland fashion in New York and Tokyo. Auburn has held DJ residencies at club events including Tidy Trax, Taboo, and Trade, and has achieved UK chart success under her own name and the Tidy Girls and Candy Girls aliases.Needs Votehttps://en.wikipedia.org/wiki/Rachel_AuburnAuburnDJ Rachel AuburnR AuburnR. AuburnR.AuburnR.l AuburnRachael AuburnRachal AuburnTrick No TricksRachel Rush (2)Candy GirlsBreatherLove & SexTrigger & AuburnTEC (3)Tidy GirlsBionic (30) + +8339Lisa Pin-UpLisa ChilcottBritish hard house DJ and producer.Correcthttp://lisapinup.com/Lisa Pin - UpLisa Pin UpLisa Pinup2 FierceLisa ChilcottLP Project + +8346CortinaUK hardhouse act best known for their reworking of 'Music Is Moving' by [a=Fargetta].CorrectCortina MK 2Cortina MK2Cortina Mk 2Cortina Mk IICortina Mk2Madam FrictionBen KeenRichard Bottom + +8349BKBenjamin Daniel KeenUK hard dance producer & DJ. + +BK launched [l=Riot! Recordings] with [a=Ed Real] shortly after their departure from [l=Nukleuz]. +He has now started SLAM! +Needs Votehttps://www.facebook.com/djbk.official.pagehttps://soundcloud.com/bksoundhttps://myspace.com/bknethttps://twitter.com/bkdjhttps://www.instagram.com/benkeenbk/http://web.archive.org/web/20181208160126/http://www.bkworld.net/B.KB.K.BkThe BKKY Jelly BabiesPowderProject 101SpeakerfreaksTwinkBen KeenBlack Russian (3)Brian Kantorek + +8352TraumaPaul KingNeeds VoteF1Paul KingFormat OneThe Project (2)Control Freakz + +8358Steve HillStephen Benedict HillHard Dance DJ & producer originally from New Zealand and now living in Sydney, Australia. +Founder of [l=The Masif Organisation] , [l=Masif] Recordings, [l=S-Trax Recordings], [l=VW Recordings]. +Formerly managed UK labels, [l=Y2K] and [l=Tripoli Trax] for [l=Pure Groove].Needs Votehttp://www.djstevehill.com/https://www.facebook.com/djstevehillfanpagehttps://soundcloud.com/djstevehillhttps://myspace.com/djstevehillhttps://twitter.com/djstevehillhttps://www.youtube.com/user/djstevehillhttp://djstevehill.tumblr.com/HillS. HillS.HillDigitaleNeon LightsNylonKumaraPhlash!Mr. BishiVolts WagenNu-RenegadesNHL ProjectZanderMasif DJ'sHardcore MasifSteve Hill vs TechnikalHard Dance AllianceSteve Hill vs. D10Steve Hill vs NervousHillfire + +8718Madeline BellMadeline Bell BrodusAmerican vocalist. +Born 23rd July 1942, Newark, New Jersey, U.S.A. Needs Votehttps://web.archive.org/web/20200304111835/http://www.madelinebell.com/https://en.wikipedia.org/wiki/Madeline_Bellhttps://www.imdb.com/name/nm0971375/BeilBellM BellM. BellM.B.Madaline BellMadalyn BellMadalyne BellMadelaineMadelaine BellMadeleen BellMadeleineMadeleine BellMadelene BellMadelin BellMadelineMadeline Bell And FriendsMadelline BellMadiline BellMadlaine BellMadlene BellMadlin BellМадлен БеллMadeleine PouletMadeline BroadusSpaceBlue MinkBirds Of ParisNew London ChoraleThe Midnite LadiesOrchester James LastThe Bradford SingersThe Power & The GloryFreedom Road CastMadeline Bell And Friends + +9177Jens MahlstedtJens MahlstedtDJ since 1987, working in the german clubs Tunnel (Hamburg), T-Dance (Bremen) and XS (Frankfurt).Correcthttp://www.jensmahlstedt.comhttp://www.myspace.com/jensmahlstedtD.J. Jens MahlstedtDJ Jens MahlstedtDJ Jens MalstedtJ MahlstedtJ. MahlstedtJ. MahstedtJ.MahlstedtJensJens MahistedJens MahistedtJens MahlstestJens MahstedtMahlstedtUnicumJens2 Bald MenBlockbusterJR Squad + +9181Malcolm DuffyMalcolm DuffyNeeds VoteD.J. Malcolm DuffyDJ Malcolm DuffyDJ Malcom DuffyDuffyM. DuffyM.DuffyMalcolmMalcom DuffyDJ MalcolmDiss-CussCocktail TwinsInstranormalTribal Truble + +9183The Red Hand GangPaul JanesCorrectR.H.G.RHGRed Hand GangRed Hang GangMajesticGround ZeroPaul JanesHouserockersEldon TyrellUntidy DJ'sLexaUK Gold (2) + +9746Donny HathawayDonny Edward HathawayDonny Hathaway was an American R&B and Soul singer, keyboardist, composer, arranger, and producer. + +Born: 1 October 1945 in Chicago, Illinois, USA. +Died: 13 January 1979 in New York City, New York, USA (aged 33). + +Rolling stone magazine describes him as a legend of soul music. + +Among his most popular songs are "A Song for You", "The Ghetto", "Someday We'll All Be Free", "For All We Know" and Some duets with soul singer [a=Roberta Flack] "Where Is the Love", "The Closer I Get to You" and "Back Together Again". + +It is worth mentioning that another great success is the Christmas Song "This Christmas" Being successfully covered by other singers of various genres.Needs Votehttp://donnyhathaway.blogspot.com/p/discography.htmlhttp://www.allmusic.com/artist/donny-hathaway-mn0000182360http://www.whosampled.com/Donny-Hathawayhttp://en.wikipedia.org/wiki/Donny_HathawayD E HathawayD HathawayD. HathawayD. HaithawayD. HathawayD. HathwayD. HattawayD.HathawayD.R.Danny HathawayDon HathawayDonn E. HathawayDonnieDonnie HahawayDonnie HathawayDonnyDonny E HathawayDonny E. HathawayDonny Edward HathawayDonny HattawayHanny DottawayHathawayHathaway DHathaway DonnyHathaway, DonnyHattawayダニー・ハサウェイDonny PittsWoody Herman And His OrchestraThe Mayfield SingersThe Salty PeppersWoody Herman And The Thundering Herd + +10096Frank WessFrank Wellington WessAmerican jazz saxophonist, flutist, arranger and composer +Born 4th January 1922 Kansas City, Missouri, USA, died 30th October 2013 Manhattan, New York + +Member of Billy Eckstine's orchestra from 1946 to 1947, Eddie Haywood's orchestra in 1947 and Lucky Millinder's orchestra in 1948. Worked with [a=Bullmoose Jackson] from 1948 to 1949, Count Basie from 1953 to 1964, where he formed a famous pairing, billed as "The Two Franks", with fellow saxophonist [a=Frank Foster] and Clark Terry's Big Band from 1967 to 1970. Has also done a lot of session work, Broadway shows, jingles and played in the bands for TV shows Saturday Night Live and The David Frost Show (1969-72). Made a National Endowment for the Arts jazz master in 2007.Needs Votehttp://frankwess.org/https://en.wikipedia.org/wiki/Frank_Wesshttps://www.imdb.com/name/nm0921785/http://hpnewyork.com/music/musicians/FrankWess/Frank.htmlhttps://www.arts.gov/honors/jazz/frank-wesshttps://attictoys.com/frank-wess/https://www.allmusic.com/album/the-flute-mastery-of-frank-wess-mw0002605717https://adp.library.ucsb.edu/names/210889F. WeissF. WessF.WessFrank M. WessFrank NessFrank W. WessFrank WeissFrank Wellington WessFrank WesFrank WestFrank WissHank WeissWessФрэнк Уэссフランクウェスフランク・ウェスQuincy Jones And His OrchestraCount Basie OrchestraThe Jazz Composer's OrchestraCount Basie And The Kansas City SevenBilly Eckstine And His OrchestraThe Carnegie Hall Jazz BandLucky Millinder And His OrchestraTony Scott And His OrchestraOliver Nelson And His OrchestraHoward McGhee SextetEddie Heywood And His OrchestraThe Ernie Wilkins OrchestraJoe Newman SextetNew York Jazz QuartetThe Prestige All StarsJoe Newman & His BandOsie Johnson QuintetThe Frank Wess QuartetBennie Green And His OrchestraJoe Newman And The Count's MenThe Frank Wess OrchestraThe Philip Morris SuperbandThe Frank Wess - Harry Edison OrchestraThe Joe Newman SeptetPer Husby OrchestraToshiko Akiyoshi Jazz OrchestraThe Quincy Jones Big BandClark Terry Big BandThe Count's MenLeonard Feather's East Coast StarsThe John Lewis GroupThe Urbie Green OctetThe Frank Wess QuintetThe Leiber-Stoller Big BandJoe Newman QuintetDizzy Gillespie All-Star Big BandThe Frank Wess SextetBuddy Rich All StarsThad Jones QuintetThad Jones SextetBuddy Rich EnsembleThe Benny Carter All-Star Sax EnsembleThe Frank Wess SeptetThe Golden Horns (2)Buck Clayton And His Swing BandFlutologyPaul Meyers QuartetSwing SummitDameroniaFour FlutesThe Butch Miles OctetFrank Wess NonetThe Dizzy Gillespie™ Alumni All-Star Big Band + +10183Olli AhvenlahtiOlli AhvenlahtiBorn in Helsinki, 6 August 1949, Olli Ahvenlahti, a pianist, composer, and conductor, has been one of leading Finnish Jazz artists since the 70s. He has recorded with several artists and groups, like UMO Jazz Orchestra. In the 1990s, he conducted the orchestra for all Finnish Eurovision Song Contest entries.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1998/05/olli-ahvenlahti.htmlhttp://twitter.com/OlliAhvenlahtihttp://en.wikipedia.org/wiki/Olli_Ahvenlahtihttp://www.imdb.com/name/nm0014406/AhvenlahtiO. AhvenlahtiO.AhvenlahtiOlli AhvenlahttiOlli AnvenlahtiOllie AhvenlahtiKeijo KäpyläPuppe (2)Eero Koivistoinen Music SocietyUmo Jazz OrchestraFinnish Big Band JazzUnisonoThe Group (2)Eero Koivistoinen QuartetPentti Lasasen Studio-orkesteriOlli Ahvenlahti EnsembleDopplerin IlmiöOlli Ahvenlahden OrkesteriTaivaantemppeliJukka Hauru & SuperkingsMike Koskinen OrchestraOlli Ahvenlahti & Eero Ojanen DuoPentti Lahti BandMircea Stan QuintetOlli Ahvenlahti New Quartet + +10374Tim HagansTim HagansAmerican jazz trumpeter +Born 19 August 1954 in Dayton, Ohio +Played with: Stan Kenton, Woody Herman, Dexter Gordon, Kenny Drew, Horace Parlan, Thad Jones, and othersNeeds Votehttps://www.timhagans.com/HagansT HagansT. HagansThimothy Lewis HagansTimTim HaganTim HagannTim HagensTimothy Lewis Hagansティム・ヘイゲンスMamba (2)The George Gruntz Concert Jazz BandJoe Lovano NonetStan Kenton And His OrchestraCrème FraîcheJoe Lovano EnsembleThe Blue Note All-StarsBob Mintzer Big BandRon McClure SextetNew York City HornsGrismore/Scea GroupNorrbotten Big BandHal Galper QuintetMaria Schneider OrchestraThe Blue Wisp Big BandLiberation Music OrchestraJoe Lovano Wind EnsembleWhite OrangeErnie Wilkins Almost Big BandRon McClure QuartetGordon Brisker QuintetAnimation (9)FullkornBjarne Rostvold QuintetJohn Fedchock New York Big BandOrange Then BlueThad Jones EclipseThe Cutting Edge (2)Ted Nash Big BandLutz Häfner QuintettThe Bob Belden EnsembleSteve Slagle QuartetGrachan Moncur III OctetBert Seager Jazz QuintetJon Gordon SextetMark Masters EnsembleSeamus Blake QuintetAndy LaVerne QuintetWoodstore QuintetJon Gordon QuintetCharles Pillow Large EnsembleRich Shemaria Jazz OrchestraGregor Hübner QuintetSeamus Blake SextetTim Hagans Quintet + +10589CandidoCándido Camero GuerraCuban-born percussionist (mainly conga and bongo) who backed many Afro-Cuban and straight-ahead jazz acts starting in the 1950s. Born April 22, 1921 in Regla (Havana), Cuba. Died November, 7, 2020 in New York, USA. He started his career as a percussionist for various groups in Havana, performing at the nightclubs and radio stations. He moved to New York in 1946 and started recording with [a=Machito] and [a=Dizzy Gillespie]. During 1953-1954 he was in the [a=Billy Taylor] quartet and in 1954 he performed and recorded with [a=Stan Kenton]. He also enjoyed some hits during the disco era, most notably with his cover of [a=Babatunde Olatunji]'s classic "Jingo", which he recorded for [l=Salsoul Records]. +Needs Votehttps://es.wikipedia.org/wiki/C%C3%A1ndido_Camerohttps://en.wikipedia.org/wiki/Candido_Camerohttps://www.imdb.com/name/nm2397959/https://www.wbgo.org/post/remembering-candido-camero-percussionist-and-afro-cuban-pioneer-who-has-died-99#stream/0https://adp.library.ucsb.edu/names/201443"Candido" CameroC. CameroC. CandidoCameroCandico CameroCandidCandid CameroCandida CameroCandidi CameroCandido CamaroCandido CameraCandido CameroCandido CameronCandido CarmeroCandio Carmero OrchestraCanditoCandito CameroCandodo CameroCondidoCándidoCándido CameroКандидо КамероキャンディドキャンディードLuis SchiebelerCount Basie OrchestraThe Art Blakey Percussion EnsembleDizzy Gillespie And His OrchestraWoody Herman And His OrchestraBuddy Rich And His OrchestraWoody Herman And His WoodchoppersCharlie Parker With StringsSonny Rollins TrioThe Conga KingsBennie Green And His OrchestraThe Jay And Kai QuintetWoody Herman And His Third HerdThe J.J. Johnson And Kai Winding Trombone OctetBennie Green SextetDinah Washington & The All-Stars + +10755TravelLaurent Vincent GutbierCorrectBig FatLorren G.Spirit G.Global OneReactor BassLaurent Gutbier + +10866NylonUK trance project.Needs VoteKumaraPhlash!Steve HillMick Shiner + +11001N-TranceBritish dance music act from Oldham. +Founding members were [a=Dale Longworth] and [a=Kevin O'Toole]. Notable contributors included vocalist [a=Kelly Llorenna] and rapper [a=Ricardo Lyte] aka [a=Ricardo Da Force]. +Mainly known for [m=88199], as well as cover versions of disco songs.Needs Votehttps://www.n-trance.co.ukhttps://en.wikipedia.org/wiki/N-Trancehttps://twitter.com/ntrancehttps://www.facebook.com/ntrancehttps://www.instagram.com/ntranceofficial/https://www.youtube.com/@ntranceofficialhttps://soundcloud.com/ntrance-1In-TranceN - TranceN -TranceN TranceN"-tranceN' TranceN'TranceN'tranceN-TraceN-Trance FeatN-TränceN. TranceN.TranceNT RanceNtranceN¨TranceN´TranceN⊝TranceN世紀TranceKleptomaniaViveen WrayKevin O'TooleDale Longworth + +11009MondoDaniel BewickNot to be confused with [b][a687050][/b] aka [a482000]. For House / Electro / Tech House releases/remixes around years [b]2004 to 2012[/b], [b][a687050][/b] should most likely be used.Needs Votehttp://www.danbewick.com/site/#MooreDan BewickBellagioCartesianD.B. Project + +11146Steve ThomasUK Hard House Producer & DJ. + +Born in Bridgend, Wales. + +Was resident DJ for Labrynth & Trade and worked in the Pure Groove record shop. He was also the A&R man for [l=Tripoli Trax].Needs VoteS. ThomasS.ThomasThe ExpertsFreke SistersFruitloopN.O.K.The Captain & Steve Thomas + +11148YakoozaTrance / hard trance project from Germany, started in 1998. +Used to be a collaboration between Michael Staab and Uwe Wagenknecht. Recent releases are by Uwe Wagenknecht alone.Correcthttps://www.facebook.com/djwagyakoozaYakozzaYukoozuUwe WagenknechtMichael Staab (2) + +11333OD404Owen Swinerd & Dom Sweeten[[b]O[/b] = Oz/Owen][[b]D[/b] = Dom][[b]404[/b] = In reference to the missing Roland synthesizer] + +OD404 is the Brighton-based UK hard house/hard trance & NRG producing duo consisting of [a=Superfast Oz] & [a=Dom Sweeten]. They have been instrumental in the early days of UK hard house/nu NRG and have since domineered the scene with some of the biggest tracks and remixes in the history of hard dance. Classic productions on every label that matters in the scene have catapulted them to legend status where they are continually astounding their fans. + +When they are not producing together, solo, with other budding producers on various projects, running [l=Kaktai Records] or doing the odd exclusive OD404 Live PA, Oz keeps himself extremely busy on the top DJ lineups all over the globe,whilst Dom... Well, no one really knows where he is kept under lock and chain. Studio 404, perhaps?Needs Votehttp://www.404studio.comO.D. 404O.D.404O.D.404.OD 404o.d.404Satellite KidzHyperloopDom SweetenOwen Swinerd + +11433VinylgrooverScott Lee AttrillOnce a major UK based happy hardcore producer. Has diversified into hard house, hard trance and techno in recent years. He was born in February, 1976. + +Vinylgroover's career started due to his parents friendship with the owners of Sterns in Worthing. At the age of 14 he was there for an under-18s event called "Chance to Dance". He was talking to Carl Cox & Mensa when they were informed that Grooverider was going to arrive late for his set. Mensa asked Carl Cox to cover but he asked him to give Vinylgroover a go instead. +He then started hanging around the Fusion record shop in Portsmouth, where he was eventually given a job, and at 16 years old he became the shop manager. Working in the record shop gave him access to Fusion's studios, where his initial forays into production were engineered by [a=Jim Sullivan]. He also wrote for Wax magazine reviewing the latest hardcore releases. He was also the resident DJ for Fusion and Double Dipped. + +He left the hardcore scene behind in 1999 to concentrate on hard house. This caused some anger with the hardcore rave community as he was seen as someone who left the scene for more money in the hard house scene. Also it was felt that his productions leading up to his departure were not of his usually high standard. + +Producing UK Hardcore again as of 2021. Needs VoteD.J. VinylgrooverD.J. Vinyll GrooverDJ Vinyl GrooverDJ VinylgrooverDJ Vynal GrooverV.GVGVinyl GrooverVinyl GrooverVinyl-GrooverVinylgrooveVynal GrooverNorth WestAGBHigher Level (3)Mr. X (5)Mr. MonkeyUrban NoizeThe Hot StepperDigitek (3)Apple MacSky RiseScott AttrillHardcore MastersAaREKElectronik OrchestraThe Traveller (6)DJ Is DeadS.A.Y ProjectPhat Kat (7)Undercover Project (2) + +11438ChociMark MackenzieNeeds Votehttp://www.facebook.com/choci.mckenziehttp://soundcloud.com/dj-choci-rocChief ChociChoc IChocciChoci & The Star Spangled BannerChoci + The Star Spangled BannerChoci Roc DJChoci The MaestroChoolD.J. ChociDJ ChociDJ. ChociThat Man ChociSilvervoxMark One (2)Mark Mackenzie + +11574Madam ZuJulia WintersUK hard dance DJ & producer. +Owner and A&R of [l=Nile Records] since 2001, after [a=Chris C] retired from the label after the 5th release. +Contact: madamzu@madamzu.com + +From her website in 2006: +"A pioneer and innovator of the scene, Madam Zu has enjoyed tremendous success and an enviable reputation worldwide. She has a distinctive style and sought after sound, and has the god given talent of turning a dancefloor, into a sweaty, euphoric, mass!! Madam Zu began her DJing career in the early 1990’s at the famous “Sterns Night Club” in Worthing, UK. She also began promoting parties herself in Cornwall, UK. During 1997 Madam Zu (supported by the NSPCC) - was a youth facilitator for rave/dance and took part in giving youngsters an insight into the skills of DJ/mixing... 1998 saw her successfully complete the final exams of a 2 year media and sound engineering course – she also produced her first record release “Medussa” on MOM Recordings – this track had airplay on various radio stations including Kiss FM London, UK. In 1999 Madam Zu wrote for various underground music magazines such as “Eternity” and “Implant”. The end of 1999 saw her and Jon Doe's production of “999 Matrix/The Red Pill” on Mohawk Recordings 9 – being officially chosen as the hard house “Single of the Month” in “WAX Magazine” January 2000 issue. It was also voted within the top three best tunes of the year in the Energy UK's readers' poll 2000."Needs Votehttps://web.archive.org/web/20220816043457/http://madamzu.com/http://myspace.com/madamzuhttp://www.psylicious.com/acts/madam-zuhttp://www.hardnrg.com/mixes/madamzu.phpMadame ZuJulia Winters + +11604George S. ClintonGeorge Stanley Clinton, Jr.American score composer, songwriter, arranger and former session musician. Born 17 June 1947 in Chattanooga, Tennessee, U.S.A. +He earned degrees in music and drama at Middle Tennessee State University. He later became a staff writer for Warner Brothers Music, with songs recorded by such artists as Michael Jackson, Joe Cocker and Three Dog Night. +[b]Not to be confused with funk vocalist, producer, songwriter and bandleader [a=George Clinton].[/b]Needs Votehttps://en.wikipedia.org/wiki/George_S._Clintonhttps://www.imdb.com/name/nm0003392/ClintonG. ClintonG. Stanley ClintonGeorgeGeorge ClintonGeorge Clinton, Jr.Volunteers (2)Timber (6) + +11680KumaraKumara was a name used by UK hard house producers Mick Shiner and Steve Hill under the pseudonyms M. Neeskens and S v. d. Jong.Needs VoteKumuraNylonPhlash!Steve HillMick Shiner + +11681Phlash!UK hard-house act.Needs VotePhlashPhlushNylonKumaraSteve HillMick Shiner + +11696Samuel BarberSamuel Osborne Barber IIAmerican composer of orchestral, opera, choral, and piano music. +Born March 9, 1910, West Chester, Pennsylvania, USA. +Died January 23, 1981, age of 70, New York City, New York, USA.Needs Votehttps://www.samuelbarber.fr/https://en.wikipedia.org/wiki/Samuel_Barberhttps://fr.wikipedia.org/wiki/Samuel_Barberhttps://www.bach-cantatas.com/Lib/Barber-Samuel.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103035/Barber_SamuelB. SamuelBaberBarbarBarberBarber SamuelBarber, SamuelBarbersBarrerS BarberS. BarberS. BarberisS.BarberSamual BarberSamuel BrothersSamuel Osborne BarberБарберС. БарберС.БарберСамуел БарберСэмюэл Барберサミュエル・バーバーバーバーパーパー塞缪尔·巴伯巴伯 + +11712Untidy DubsPaul JanesPaul Janes has now been joined by Sam TownendNeeds VoteUnitidy DubsUnity DubUntidyUntidy DubUntidy Dub Vol. 4Untidy Dub's Volume OneUntidy Dub's Volume ThreeUntidy Dub's VolumeTwoUntidy Dubs PresentsUntidy Dubs Vol 1Untidy Dubs Vol 6Untidy Dubs Vol. 1Untidy Dubs Vol. 3Untidy Dubs Vol. 4Untidy Dubs Vol.1Untidy Dubs Vol.3Untidy Dubs Volume 3Untidy Dubs Volume 6Untidy Dubs Volume OneUntidy Dubs pres. ColoursUntidy Dubs pres. Colours EP 3Untidy Dubs vol. 6Untidy PresentsPaul JanesSam Townend + +11749KnuckleheadzJonathan LangfordWarren Clarke and Jon Langford met while they were both DJ's at the South Coast town of Bournemouth, UK in 1995. Their first two releases on the [l=Tripoli Trax] print, '[r=80938]' & '[r=38962]', had great success, firmly planting the Knuckleheadz on the Hard House map and it set the stage for a host of releases & remix projects on various established labels to follow over the years. + +Jon currently runs Knuckleheadz as a solo project. +CorrectKHZKinuckleheadsKnuckheadzKnuckleadzKnuckleheadsThe KnucklecheadzThe KnuckleheadsThe KnuckleheadzK-SeriesFuture ConceptWarren ClarkeJon Langford + +11803Club CaviarDutch DJ- & producers-duo. + +Label-managers of [l=Blue Records]. +Needs Votehttp://www.caviarproductions.comCaviarClub CavarClub Caviar DJ TeamClub Caviar ProductionClub CavierLiquid DJ TeamMass MediumDJ AlphaH.I.P.Zip Zap (4)CryzpBart ArensTom van der Geer + +11804DJ IsaacRoel SchutrupsHardcore and hardstyle DJ and producer from the Netherlands.Needs Votehttps://djisaac.com/https://www.instagram.com/djisaacofficial/https://www.facebook.com/djisaachttps://twitter.com/djisaachttp://soundcloud.com/djisaachttps://www.youtube.com/djisaacD.J. IsaacD.J.IsaacDJ IsaaacDJ IsaakDJ IssacIsaacIssacFerociousRoel SchutrupsDeja-Vu + +11806QuakeCorrecthttp://web.archive.org/web/20021130040915/http://www.akaquake.pwp.blueyonder.co.uk/NativeRT ProjectBump 'n' GrindRob TisseraIan Bland + +11835Doug LaurentAndreas HofmannNeeds Votehttp://www.douglaurent.comhttp://www.myspace.com/douglaurent7D. LaurentD.LaurentDJ DougDJ Doug LaurentDLDougDoug LarentDoug LaurantDoug LaurenLaurenceLaurentLaurent, DougM. Doug LaurentSierraV.A. Doug Laurent In The MixFuture ShockRainmakerMindbombKool CutOverdub (3)Xenon (9)Pseudo D.Los GomezRenegade Master (2)Andreas Hofmann (2) + +12070Billy Daniel Bunter & Jon DoeDaniel Light & Jon PittsCorrectBilly "Daniel" Bunter & Jon DoeBilly 'Daniel Bunter' & Jon DoeBilly 'Daniel' Bunter & Jon DoeBilly (Daniel) Bunter & John DoeBilly (Daniel) Bunter & Jon DoeBilly Bunter & John DoeBilly Bunter & Jon DoeBilly Daniel Bunter & John DoeBilly Daniel Bunter And Jon DoeBunter & Jon DoeJon Doe & Billy "Daniel" BunterJon Doe And Billy 'Daniel' BunterRave DustThe Chunk BrothersUK HardcoreCLSM & Billy "Daniel" BunterJon PittsDaniel Light + +12200Berto PisanoUmberto PisanoItalian composer, conductor, arranger and bassist (October 13, 1928 - January 29, 2002). Born in Cagliari as the younger brother of [a=Franco Pisano], he began his career as a jazz musician playing the bass, first in Quintetto Aster and later in [a=Orchestra Gli Asternovas]. Songwriter for [a=Edda Dell'Orso] and [a=Mina (3)], he has composed (or direct) the music for more than 50 scores for film and television. He often signed with the pseudonym [a=Burt Rexon].Needs Votehttps://dougpayne.com/bpl.htmhttps://en.wikipedia.org/wiki/Berto_PisanoB. PesoneB. PisanoBertoBerto "Mr. Metronomus" PisanoBruno PisanoE. PisanoF. PisanoJ. PisanoJunior PisanoM.o PisanoM.° B. PisanoP. PisanoPisanoPisonaベルト・ピサーノBurt RexonBerto Pisano E La Sua OrchestraArmando Trovaioli E La Sua OrchestraPiero Umiliani E Il Suo ComplessoOrchestra Gli AsternovasSestetto ItalianoPiero Umiliani QuartetTrio Piero PiccioniPiero Umiliani E Il Suo SestettoPiero Umiliani & His OctetOttetto Gil Cuppini + +12237FlutlichtSwiss Trance duo consisting of [a=Daniel Heinzer] ([a=DJ Natron]) & [a=Marco Guardia] ([a=Reverb]). + +Mainly known for the singles Icarus & The Fall, as well as the remix of Marc Dawn - Expander. + +Guardia stopped making music in 2004, and there has been no further Flutlicht production since then.Needs Votehttps://www.facebook.com/flutlichtmusichttps://soundcloud.com/flutlichtmusic"Flutlicht"DJ FlutlichtFluctlichFlutchlichtFlutilctFlutlightFlutnichtMarco GuardiaDaniel Heinzer + +12251David ForbesDavid Brown ForbesTrance, Tech-Trance & Techno DJ & producer from Scotland, UK. +Founded his own digital label [l=Aria Digital] in February 2010. +Contact: david@david-forbes.com +Needs Votehttp://www.david-forbes.com/https://www.facebook.com/djdavidforbeshttps://soundcloud.com/djdavidforbeshttps://www.mixcloud.com/davidforbes/https://myspace.com/davidforbescomhttps://twitter.com/djdavidforbeshttps://www.instagram.com/djdavidforbes/D. ForbesDauie ForbesDave ForbesDavid "The Wiz" ForbesDavid Brown ForbesDavie ForbesForbesForbes, D.Forbes, DavidPropulsionOptimusTecraHal StuckerMcKayDavie ForbesDJ K.2Void (14)Sebrof DivadDBFSebrofArkadiPublic DomainActive ForceScannersKarashC90TDM ProjectLost In Translation (2)David Forbes & Mallorca LeeForbes Lee FoyPseudonym (6)Thick As Thieves (8) + +12261S.H.O.K.K.S.H.O.K.K. (Marco Guardia & Claudio Pettannice) discovered their passion for electronic music during their school days. They worked together for 5 years. As their taste of music begun to change, in 2003 they decided to split and go their own ways. + +After nearly 4 years and many many emails and messages from the hardtrance community S.H.O.K.K. returned to the scene in 2008 with Nicolas Perrottey replacing Marco Guardia.Correcthttps://shokkmusic.com/https://soundcloud.com/shokkofficialhttps://soundcloud.com/s-h-o-k-khttps://www.instagram.com/shokkmusic/https://www.facebook.com/shokk.official/https://twitter.com/shokkmusic/http://web.archive.org/web/20060701000000*/http://www.shokk.info/http://web.archive.org/web/20040212113926/http://www.shokk.info/DJ S.H.O.K.K.S H O K KS.H.O.C.K.KS.H.O.K.KSHOCKSHOKKShokkMarco GuardiaNicolas PerrotteyClaudio Pettannice + +12281David BlumbergAmerican Music Arranger, Producer & Artist Promoter +Born December 29, 1942 in Blythe, California, died April 17, 2010.Needs Votehttp://www.asmac.org/david-blumberg/http://www.donaldclarkemusicbox.com/encyclopedia/detail.php?s=3955BlumbergD BlumbergD. BlumbergDave BllumbergDave BloombergDave BlumberDave BlumbergDave BlumborgDave BlumburgDavey BlumbergDavid BloombergDavid BoumbergJ. Blumberg + +12628John ScofieldJohn Leavitt ScofieldGrammy Award winning American jazz guitarist and composer, born December 26th, 1951 in Dayton, Ohio. He recorded and played with [a=Gerry Mulligan] and [a=Chet Baker], was a member of [a=The Billy Cobham / George Duke Band] for two years, recorded with [a=Charles Mingus] and joined the [a=Gary Burton Quartet], before touring and recording with [a=Miles Davis]. + +Married to [a=Susan Scofield] since 1978 with whom they became parents of [a=Jean Scofield] and Evan Scofield (1987-2013).Needs Votehttps://www.johnscofield.com/https://myspace.com/officialjohnscofieldhttps://www.facebook.com/johnscofieldguitaristhttps://www.instagram.com/oldmansco/?hl=enhttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/john-scofieldhttps://en.wikipedia.org/wiki/John_Scofieldhttps://musicianbio.org/john-scofield/https://www.musicianguide.com/biographies/1608000820/John-Scofield.htmlhttps://www.famousbirthdays.com/people/john-scofield.htmlhttps://www.astro.com/astro-databank/Scofield,_Johnhttps://college.berklee.edu/people/john-scofieldhttps://www.jazzguitarlessons.net/blog/john-scofieldhttps://www.bluenote.com/artist/john-scofield/https://www.ibanez.com/eu/artists/detail/186.htmlhttps://www.grammy.com/grammys/artists/john-scofield/13908https://www.imdb.com/name/nm0778604/https://www.progarchives.com/artist.asp?id=6062https://www.allmusic.com/artist/john-scofield-mn0000677991J. ScofieldJ. ScotfieldJ.ScofieldJohnJohn L. ScofieldJohn S.John SchofieldJohn ScotfieldScofieldジョン スコフィールドジョン・スコフィールド존 스코필드Ensemble ModernThe John Scofield BandThe George Gruntz Concert Jazz BandScolohofoTommy Smith SextetRhythmstickJohn Scofield QuartetThe Billy Cobham / George Duke BandNiels-Henning Ørsted Pedersen QuartetTerumasa Hino QuintetMedeski Scofield Martin & WoodGary Burton QuartetJohn Scofield TrioThe Mike Gibbs OrchestraThe David Liebman QuintetMarc Johnson's Bass DesiresFranco Ambrosetti QuintetPhil Lesh And FriendsGary Burton & FriendsMiles Davis SeptetThe Mike Gibbs BandThe Paul Bley GroupMiles Davis GroupTrio BeyondRon McClure QuintetScofield / Swallow DuoHudson (10)The Hard Regulators + +12747Ground ZeroPaul JanesCorrectMajesticThe Red Hand GangPaul JanesHouserockersEldon TyrellUntidy DJ'sLexaUK Gold (2) + +12750Steve MorleyMustafa AliciTrance DJ & producer born in Rotterdam, The Netherlands and based in London, UK. +Launched record labels [l=Essential Recordings (3)] (2003) and [l=Reincarnations Recordings] (2014) alongside partner [a=Jessica B (2)] / [a=Jessica Brownjohn], with whom he formed duos [a=Cathar] (now a solo act of her) and [a=System E].Correcthttp://twitter.com/SteveMorleyDJhttp://myspace.com/djstevemorleyhttp://soundcloud.com/steve-morley-officialMorleySteveSteve MoreleyStarchildAliciProfilerDave HolmesThe Cyber PrinceDJ LunaticTime TravellerClubbers DelightA.M.A.Virtual StructuresNROProject ADr. MFiredancerCoeMustafa AliciNemesis (8)CyberoticRe' ActiveClub Zone (2)Midas (7)Cruz Control (2)DJ A (2)Dynamic Base (2)Physical Motion (2)Soundscape (9)Dreamscape (16)Cosmic WarriorNEM3SI$DJ Cream (6) + +12764Brain BashersUK-based hard house producers that ran their own label, Shock Records.Needs Votehttp://www.shockrecords.co.uk/B/BashersBrainbasherBrainbasher'sBrainbashersBryan BashersThe Brain BashersThe BrainbashersDigital MastersTekno KingsSpeedoShockwave (2)Neo & BarbwireGraham EdenRachael Shock + +12803George DukeGeorge M. DukeAmerican R&B, soul, jazz and disco producer, keyboards player and composer +Born on 12.01.1946 in San Rafael, CA, U.S.A, died on 5th of August, 2013 +Cousin of [a=Dianne Reeves]. +He has a long, extensive solo discography as well as collaborations with [a=Jean-Luc Ponty], [a=Frank Zappa], [a=Stanley Clarke], [a=Billy Cobham], [a=Cannonball Adderley], [a=Deniece Williams], [a=Jeffrey Osborne], [a=George Clinton], [a=Anita Baker], [a=Regina Belle], [a=Rachelle Ferrell], [a=Marilyn Scott] etc.Needs Votehttps://www.georgeduke.com/https://www.facebook.com/GeorgeDukeMusichttps://en.wikipedia.org/wiki/George_Dukehttps://www.imdb.com/name/nm0241183/https://www.thehistorymakers.org/biography/george-duke-41D. DukeDeorge GukeDoerge GukeDukeG DukeG. D.G. DukeG. DukesG. DukezG.D.G.DukeGeorg DukeGeorgeGeorge "Jorge" DukeGeorge Duke EnterprisesGeorge M. DukeGeorgesGeorges DukeДж. Дюкジョージ・デュークDawilli GongaRichie "Fatman" R.The Cannonball Adderley QuintetThe MothersGerald Wilson OrchestraNat Adderley SextetGeorge Duke TrioThe Billy Cobham / George Duke Band101 NorthCBS Jazz All-StarsThe George Duke QuartetDexter Gordon QuartetThe George Duke BandStanley Clarke/George Duke + +13665Ramon ZenkerRamon ZenkerTechno-artist (playing ambient, acid, break beat, trance etc.), remixer and producer, born 11 November 1968 in Willich, Germany and now living in Meerbusch, Germany. +He worked with Mike Oldfield, Paul van Dyk, The Shamen, Scooter, Mylene Farmer, Jam & Spoon, Depeche Mode, Yello, New Order and other stars. +Ramon started playing keyboards at the age of 12. Although he also started playing bass-guitar synthesizers soon became his main interest. After countless projects and live-performances he had his first chart-hit with Honesty 69 - French Kiss in 1989. Many hits and projects followed such as Perplexer, Interactive, Celvine Rotane, Bellini, Paffendorf and other. +In 1996 Zenker together with Andreas Schneider and Olaf Dieckman co-wrote and co-produced Thomas Anders' solo project Phantomas. + +Co-owner of [l=Upright Songs GmbH].Needs Votehttps://www.facebook.com/ramonzenkeroffical/https://en.wikipedia.org/wiki/Ramon_ZenkerR RenkerR ZenkerR. ZenekerR. ZenkerR. ZernkerR. zenkerR.ZankerR.ZenkerRZRamiRamonRamon / ZenkerRamon ZankerRamon ZenrerRamon ZinkerRamon/ZenkerRamón ZenkerRoman ZenkerRzZ. RamonZanker, RamonZengerZenkerZenker, Ramonラモン・ツェンカーPeter ParkerLa VoixEmilio VerdezSnappy (2)Free Soda Inc.Monsoon (6)HardfloorResistance DPhenomaniaInteractiveE-TraxLauer & ParkerPaffendorfOozePerplexerF-ActionBrersoulDa Damn Phreak Noize PhunkU-PeopleBelliniCasper KlyneLa RoccaJLRZNo RespectTwin EQThe CommandoQuartermainTom TomMega 'Lo ManiaMr. MateyCR2FragmaTainted TwoTechno TrashSynergistBrettBase UniqueParadyze ClubLow BudgetPacha RebelsFirst PatrolN-CoreSmaxRigtigSoonCenterraveFriends Of NostradamusRazzamatazzOverflow (2)The ObjectLuxoriaFact Of SpiritBellini BrothersCaballeroTool BoxRip & RobGentle ChildThe Real Rave-O-LutionNeurogliderSupercharger (2)PCP Project (2)Q-RamMaxim (4)Zen-KeiAd HocA2Z (3)Voodoo Nation (2)Stereo RockersSTFU (2)H.I.M. (2)Purple CodeGaspar Inc.BB Inc.WhizzkidsStereo RockerDance Aid (Rave The World)Hans K.CharamelFriends Of Mr. Cairo + +13690PulsedriverSlobodan Petrovic Jr.DJ and producer. Born in Schleswig-Holstein, Germany of Bosnia-Herzegovinan descent. +Owner of [l5550] and [l537263]. +Correcthttp://www.pulsedriver.dehttp://www.facebook.com/pulsedriverofficialhttps://www.discogs.com/user/PULSEDRIVERhttps://www.instagram.com/pulsedriver/DJ PulsdriverDJ PulsedriverPilserdriverPluse DriverPullePulsdriverPulsdriver IIIPulsdriver IVPulsdriver VPulse DriverPulse Driver IVPulse Driver VPulse DrivesPulsedrivePulsedriver 1Pulsedriver 2Pulsedriver 3Pulsedriver 4Pulsedriver 5Pulsedriver 6Pulsedriver And FriendsPulsedriver IIPulsedriver IIIPulsedriver IVPulsedriver VPulsedriver VIPulsedriver ZPulsedriversTubePinballDJ TibbyAqualoopDon EstebanBeatmachineThe Trancecore ProjectRiphouseLagosT-BoneDiabolitoMonolith (2)Limelight (3)Slobodan Petrovic Jr.Jack AttackTrans BalearMalibu DriveKilla SquadSkagen Inc.Sal De Sol + +13796YodaGerman project.Needs VoteYoda IncYoda Inc.Kai FranzFlorian PreisMichael Gerlach + +13801YekuanaCorrectJekuanaNorthfaceGarry WhiteLee Harris (3)Karl Maddison + +13803Bush BabiesNeeds VoteBushbabiesNik CRod DevonshirePaul Jewell + +13961StingGordon Matthew Thomas SumnerBritish musician, singer, songwriter, composer, bassist, actor, author and activist, Sting was born in Wallsend, Tyne and Wear, North East England, 2 October 1951, before moving to London in 1977 to form [a7987] with [a=Stewart Copeland] and [a=Andy Summers]. The band released five studio albums, earned six Grammy Awards and two Brits, and was inducted into The Rock and Roll Hall of Fame in 2003. +One of the early bands Sumner played with was [a=The Phoenix Jazzmen]. He once performed wearing a black and yellow jersey with hooped stripes that bandleader [a=Gordon Solomon] had noted made him look like a bumblebee; thus Sumner became "Sting". He uses Sting almost exclusively, except on official documents. In a press conference, he once jokingly stated that even his children call him Sting. +In 1988, he established [l52368]. +As one of the world’s most distinctive solo artists, Sting has received an additional 11 Grammy Awards, two Brits, a Golden Globe, an Emmy, four Oscar nominations (most recently for “The Empty Chair” from JIM: The James Foley Story), a TONY nomination, Billboard Magazine’s Century Award, and MusiCares 2004 Person of the Year. In 2002, he received the Ivor Novello Award for Lifetime Achievement from the British Academy of Songwriters, Composers and Authors and was also inducted into the Songwriters Hall of Fame. In 2003, Sting received a CBE from Elizabeth II at Buckingham Palace for services to music. In December 2014 he received the Kennedy Center Honors, and most recently was given The American Music Award of Merit. Throughout his enduring career, he has sold close to 100 million albums from his combined work with The Police and as a solo artist. +Sting’s support for human rights organizations such as the Rainforest Fund, Amnesty International and Live Aid mirrors his art in its universal outreach. Along with wife [a=Trudie Styler], Sting founded the Rainforest Fund in 1989 to protect both the world’s rainforests and the indigenous people living there. Together they have held 17 benefit concerts to raise funds and awareness for our planet’s endangered resources. +Received the Polar Music Prize 2017. +In 2019, Sting was honoured at the BMI Pop Awards for his enduring hit single “Every Breath You Take,” which has become the most performed song, with 15 million radio plays, from BMI’s catalog of over 14 million musical works. +In May 2023, he was made an Ivor Novello Fellow. +Sting married actress [a=Frances Tomelty] from Northern Ireland, on 1 May 1976. Before they divorced in 1984, they had two children: Joseph ("[a880220]") (born 23 November 1976) and Fuchsia Katherine ("[a=Kate Sumner]", born 17 April 1982). In 1982, after the birth of his second child, he separated from Tomelty and began living with actress and film producer [a=Trudie Styler]. The couple married at Camden Register Office on 20 August 1992. Sting and Styler have four children: Brigitte Michael [a=Michael Sumner] ("Mickey", born 19 January 1984), [a=Jake Sumner] (24 May 1985), Eliot Pauline [a=Eliot Sumner] (nicknamed "Coco", 30 July 1990), and Giacomo Luke (17 December 1995). + +Previously worked as a labourer, tax officer, bus conductor & a teacher.Correcthttps://www.sting.comhttps://www.facebook.com/stinghttps://www.instagram.com/theofficialstinghttps://soundcloud.com/stinghttps://tiktok.com/@official_stinghttps://www.youtube.com/user/StingVEVOhttps://en.wikipedia.org/wiki/Sting_(musician)https://www.allmusic.com/artist/the-police-mn0000413524"Sting"Gordon "Sting" SummerGordon Matthew (Sting) SumnerSiting (Dub 94)Sting (GB)Sting (Police)Sting (The Police)Sting [Gordon Sumner]Sting!Sting/VirginStingsStiugSumnerThe StingСтингסטינגスティング史汀斯汀스팅Gordon Sumner + +14007Norman BassNorman KniepNeeds Votehttps://de.wikipedia.org/wiki/Norman_BassDJ Norman BassN. BassNormann BassNorman Kniep + +14033David HausdorfDavid HausdorfBorn in 1978 in East-Berlin, David Hausdorf trained as a classical musician from the age of 5 years old, eventually leading him to playing in the Munich Philharmonic Orchestra. During the mid 90’s he discovered his passion for Detroit techno and dub techno.Needs Votehttp://www.soundcloud.com/davidhausdorfhttps://www.facebook.com/David-Hausdorf-Page-254390684639900https://www.youtube.com/@funkyberlin303funkyberlin303Münchner PhilharmonikerRundfunk-Sinfonieorchester BerlinLandesjugendsinfonieorchester Brandenburg + +14630D & ADaniel EllensonCorrecthttp://www.danniel.seD + AD And AD&AD+ASpacecornDaniel Ellenson + +15223Andy FarleyAndrew John FarleyHard house DJ/producer from Birmingham, UK. +Runs his own imprint, [l3841250].Needs Votehttps://www.facebook.com/djandyfarleyhttps://soundcloud.com/andyfarleyhttps://myspace.com/andyfarleydjhttps://twitter.com/djandyfarleyA FarleyA. FarleyA.FarleyFarleyHard Beat Presents Andy FarleyDoafF/A/Q + +15346Vinylgroover & The Red HedScott Attrill & Jim SullivanNeeds VoteV.G + The RedheadVG & RHVG & The Red HedVG&RHVinyl Groover & Red HedVinyl Groover & The Red HeadVinyl Groover & The Red HedVinyl Groover And The Red HeadVinyl Groover And The Red HedVinylGroover And The Red HedVinylGroover& The Red HeadVinylgroover & Red HeadVinylgroover & Red HedVinylgroover & RedHedVinylgroover & RedheadVinylgroover & RedhedVinylgroover & The Red HeadVinylgroover & The Red HenVinylgroover & The RedheadVinylgroover & The RedhedVinylgroover & The-Red-HedVinylgroover & TheRedHedVinylgroover + Red HedVinylgroover + RedheadVinylgroover And Red HeadVinylgroover And RedheadVinylgroover And The Red HeadVinylgroover And The Red HedVinylgroover and RedhedVinylgroover and The Red HedVinylgroover and The RedheadVinylgroover • The Red HedVinylgroover, The Red HedVinylgroover/The RedheadVGT3rd SourceVinylgroover & TrixxySelectBam Bam & PebblesSound AssassinsVG 2000Hyperdrive (2)KontaktElevate (2)Promised Land (2)Street TalkStargate (5)Lost Boys (3)Techno PhobicSJ ProjectLoop (9)Era (6)ScintillatorBlack & White (19)BPM (14)Jim SullivanScott Attrill + +15348Champion BurnsCorrectChampion Burns'Champions BurnsMajestic 12M.A.Q.Masters At QuirkTopaz (2)Robert BurnsNigel Champion + +15363Rim ShotCorrectRimshotAmadeus MozartRhapsody (2)The Tidyman + +15364Angel DeluxeCorrectAngel DeluxMarine BoyAtomixUrban Nature (2)Simon Power + +15365Benedict BrothersNeeds VoteBenedict BrosBenedict Bros.The Benedeict BrothersThe Benedict BrosThe Benedict BrothersThe Bennidict BrothersGuy GarrettThe Colonel (27) + +15366AllnightersGerman Hard House/Hard Trance project.CorrectAll NightersAllnighterAllnighter'sThe AllnightersAndreas SchneiderMike van der Viven + +15443Dick HymanRichard Roven HymanAmerican keyboard player and composer, born March 8, 1927 in New York City, New York. +Hyman studied at Columbia University and played with musicians like Teddy Wilson, Red Norvo, and Benny Goodman. He recorded under different pseudonyms and in 1955 recorded a cover of "[i][url=http://www.discogs.com/master/473251]Moritat[/url][/i]" on harpsichord with his trio which sold over a million copies. During late 1960s he investigated the earliest periods of jazz and ragtime and researched and recorded the music of some of the first early jazz figures. Hyman experimented with various keyboard instruments, including Baldwin and Lowrey organs. In the late 1960's he recorded a series of avantgarde albums using a minimoog synthesizer. He recorded some of the most appreciated albums from the space age pop. Hyman has also worked for TV, scoring film soundtracks for Woody Allen, and as a jazz pianist and organist.Needs Votehttp://www.dickhyman.com/https://en.wikipedia.org/wiki/Dick_Hymanhttps://www.imdb.com/name/nm0405163/https://adp.library.ucsb.edu/names/204787D. HymanD.HymanDickDick HaimanDick HeymanDick Hyman And HarpsichordDick Hyman At The Lowery OrganDick Hyman Y Su Sintetizador ElectronicoDick HymenDyck HymannFabulous Dick HymanHaymanHumanHymanHyman Richard R.R HymanR. HymanRichard HymanRichard R. HymanThe Renowned RiccardoАнсамбль Дика ХайманаJ. GainesThe Organ MastersGodfrey MalcolmRichard WayneDavid HarknessRichard LowmanRod GregoryStanley SokolNero Young (2)Slugger RyanStomp KelleyCharleston (4)Serge SputnickJack Schwartz (4)Enoch Light And The Light BrigadeMitchell Ayres And His OrchestraRay Ellis And His OrchestraDick Hyman And His OrchestraDick Hyman and The GroupTerry Snyder And The All StarsThe Jerry Ross SymposiumChildren Of All AgesDick Hyman And The BandKalua Beach BoysThe Sons Of ParadiseThe Dick Hyman TrioBobby Dukoff And His OrchestraRicky Ticky BrassClark Terry QuartetDoc Severinsen And His OrchestraKnuckles O'TooleStudio "B" SevenDick Hyman And His QuintetDick Hyman GroupThe Mundell Lowe QuartetLeonard Feather's East Coast StarsThe Dick Hyman EnsembleRoy "King David" Eldridge & His Little JazzJo Basile, Accordion And OrchestraThe Jazz Piano QuartetDick Hyman And His Electric EclecticsWayne And GeraldiSummit ReunionHyman-Braff-DuoZoot Sims & His Five BrothersUnobstructed UniverseAl Caiola And The Nile River BoysNBC Rhythm SectionAl Klink QuintetThe Dick Hyman DuoPee Wee Erwin's Dixieland EightStanley Sokol and the PolkateersMartin Munchhausen and The Polka BaronsLeonard Feather Dick Hyman OrchestraThe Bob Wilber Big BandThe Phil Bodner SextetDick Hyman And His Orchestra And ChorusDick Hyman And StringsDick Hyman ChorusDick Hyman and the New Disciples of RhythmPee Wee Erwin's JazzbandGood Time Charlie (5)Dick Hyman Swing All-StarsEddie Safranski TrioRichard Wayne And The BearcatsDick Hyman And His Frank Teschemacher Celebration BandDick Hyman - Kenny Davern And Their Comined Bands + +15502Georges ArvanitasGeorges ArvanitasFrench jazz pianist & organist, born June 13, 1931 in Marseille, France, died September 25, 2005 + +Pianist Georges Arvanitas knew how to blend all styles of piano jazz thanks to his contact with several American jazzmen passing through France (Mezz Mezzrow, Bill Coleman, Don Byas, Buck Clayton, James Moody…) Having become a pillar of the French jazz scene after the war, he performed in mythical Parisian clubs such as Tabou, Club Saint-Germain and the Blue Note before starting to release records under his own name. Throughout his career he would play with an impressive number of renowned jazzmen, while at the same time being heavily involved in variety as a studio musician. He notably played the organ on Gainsbourg’s famous "Je T'Aime, Moi Non Plus". Michel Legrand who loved his game would also call upon him for several original soundtracks. +. +Needs VoteArvanitasG. ArvanitasG. SanitarvaGeoges ArvanitasGeorge ArvanitasGeorge ArvanitoGeorges ArvantitasJimmy MoroneyBen Webster QuartetGeorges Arvanitas TrioHenri Crolla Sa Guitare Et Son EnsembleGeorges Arvanitas QuintetJean-Michel Defaye Et Son OrchestreJean Claudric Et Son OrchestreClaude Cagnasso Big BandMichel Attenoux Et Son OrchestreThe Georges Arvanitas Jazz QuartetThe Sonny Criss QuintetParis Jazz TrioSonny Criss QuartetArvanitas Et Son EnsemblePepper Adams QuartetGroupe Uni SonParis All Stars (2)Arsène Hic Et Son Orchestre D'Empoisonneurs DiplômésClaude Guilhot QuartetFive "Cats" Plus OneAlix Combelle Et Sa FormationPatrick Saussois QuartetGeorges Arvanitas Et Son QuintetteSextette Raymond Beau + +15506Daniel JaninDaniel Jean Gustave JeanninFrench vibraphonist, composer, arranger, and conductor, born in Paris (1931), died in Cap Ferret (2010). Was the conductor of the Olympia theatre orchestra in Paris for three years. As an arranger, he wrote scores for the Kurt Edelhagen Orchestra. Regularly performed as a conductor in French television shows. In 1975, he started a collaboration with Swiss circus KNIE as an arranger. Conducted Switzerland's Eurovision Song Contest entry 'Vivre' by Carole Vinci in 1978. Father of [a840124].Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1978/04/daniel-janin.htmlhttp://jcpierric.blogspot.com/2010/04/daniel-janin-best-of-1.htmlhttps://films.discogs.com/credit/468500-daniel-janinD JaninD. JaninD. JeanninD.JaninDaniel JeanninJaninEddy DriverJohn FirstJohn KayleGrand Orchestre De L'OlympiaDaniel Janin Et Son OrchestreThe Big Band SoundDaniel Janin Big BandDaniel Jeannin Et Son Quartett + +15510FergieRobert FergusonRobert Ferguson (born 16 November 1979), known professionally as Fergie, is a Northern Irish DJ and electronic music artist from Larne. He has been an internationally touring DJ and a music producer for over 20 years. He presented a radio show on BBC Radio 1 for over four years while recording 13 Essential Mixes for the station.He was featured in the DJ Mag Top 100 DJs poll seven consecutive years and currently holds the record for the highest new entry since the poll began, achieved when he was voted 8th in 2000. He also runs [l=Excentric Muzik].Needs Votehttps://fergiedj.comhttps://www.facebook.com/FergieDJhttps://www.instagram.com/fergiedjhttps://soundcloud.com/fergie_djhttps://twitter.com/fergiedjhttps://www.youtube.com/Fergiedjtvhttps://en.wikipedia.org/wiki/Fergie_(DJ)DJ FergieFergie DJRobert Ferguson (2) + +15512KarimKarim LamouriA legendary UK Hard House / NRG Producer & DJ notorious for pushing the harder end of the spectrum. + +He runs the [l=Do Not Bend Recordings], [l=Tuff Trax] & [l=Unfknblvbl] labels. +Correcthttp://www.dj-karim.comhttp://www.myspace.com/karimdnbDJ KarimDJ Karim LondonKevin MoorThe FrogRocco SiffrediKarim LamouriDJ Mister K + +15900Ennio MorriconeEnnio MorriconeEnnio Morricone (Italian pronunciation: [ˈɛnnjo morriˈkoːne]) was an Italian composer. He was born on 10 November 1928 in Rome, Italy and died on 6 July 2020 in Rome, Italy. + +A favourite pupil of [a776673], he also deputized secretly for his trumpeter father in a light music orchestra. He thus developed two distinct sides to his musical personality: one of these led him to embrace serialism and the experimental work of the improvisation group [a146775]; the other gained him a leading role, principally as an arranger, in all types of mass-media popular music, including songs for radio, radio and television plays, and the first successful television variety shows. + +After many minor cinematic collaborations, Morricone achieved wider recognition with [a=Sergio Leone]'s series of four Westerns. There followed important collaborations with directors such as [a1549141], [a467451], [a3153386], [a4424119], [a4424126], Roland Joffé and [a4424108]. Despite inevitable self-repetitions over a total of more than 400 film scores, his work provides many examples of a highly original fusion of classical and popular idioms. + +Morricone's non-film works form a large and increasingly widely performed part of his output. Many of them use his technique of ‘micro-cells’, a pseudo-serial approach often incorporating modal and tonal allusions, which, with its extreme reduction of compositional materials, has much in common with his film-music techniques. + +Among honours, he won the Academy Award in 2016 for his score to [a=Quentin Tarantino]'s The Hateful Eight and has received five Academy Award nominations between 1979 and 2001, a Grammy and a Leone d'oro, and was awarded the Laurea ad Honorem by the University of Cagliari. Between 1991 and 1996 he taught film music at the Accademia Musicale Chigiana, Siena.Needs Votehttps://it.wikipedia.org/wiki/Ennio_Morriconehttps://www.fondazionemorricone.it/https://www.facebook.com/maestroenniomorricone/https://www.instagram.com/maestro_ennio_morricone/https://myspace.com/enniomorriconehttps://myspace.com/morriconemoodhttps://www.youtube.com/channel/UCpUP3fnfUA2FLtlQ2iBwR8ghttps://x.com/MEnnioMorriconehttps://en.wikipedia.org/wiki/Ennio_Morriconehttps://chimai.miraheze.org/wiki/Main_Pagehttps://www.famouscomposers.net/ennio-morriconehttps://www.imdb.com/name/nm0001553/https://www.last.fm/it/music/Ennio+Morriconehttps://enniomorriconemusic.bandcamp.comhttps://www.allmusic.com/artist/ennio-morricone-mn0000798662A. MorriconeB. MorriconneDer ProfiE MorriconeE. MarriconeE. MarrikoneE. MoricconeE. MoriconeE. MorreconiE. MorricconeE. MorricioneE. MorriconeE. MorriconneE. MorricooneE. MorriloneE. MorrizoneE. モリコーネE.MorriconeE.モリコーネE: MorriconeEmiro MorriconeEmmio MorriconeEmorriconeEnio MoriconeEnio MorriconeEnio MorriconneEnnico MorriconeEnnioEnnio - MorriconeEnnio MariconEnnio MariconeEnnio MerriconeEnnio MoricconeEnnio MoriconeEnnio MoriconneEnnio MorreconeEnnio Morricone 93Ennio MorriconiEnnio MorryconeEnno MorriconeEnrico MorriconeEnrio MorricaneErnie MorriconeI. MorriconeM. Ennio MorriconeM.o Ennio MorriconeMarriconeMauriceMoori ConnMoriconeMoriconiMorreconeMorricanMorriceneMorriconeMorricone 93Morricone EnnioMorricone, E.Morricone, EnnioMorricone,EMorriconiMorrisonMorrocanN. MorriconeN.MorriconeW. MorriconeΈνιο ΜορικόνεЕнио МориконеЭ. МарриконеЭ. МорриконеЭнио МорриконеЭннио Морриконеאניו מוריקונהانیو موریکونهエンニオ・モリコーゲエンニオ・モリコーネエンニオ・モリコーネ楽団エンニオ・モリコーネピラントラ・モリコネモリコーネ顏尼歐・莫利克奈顏尼歐・莫利柯奈顏尼歐・莫瑞克顏尼歐莫利克奈엔니오 모리꼬네엔니오 모리코네Leo NicholsDansavioGruppo di Improvvisazione Nuova ConsonanzaThe Ennio Morricone OrchestraEnnio Morricone E Il Suo Complesso + +15914Gerret FrerichsGerret FrerichsNeeds Votehttp://www.myspace.com/humatehttps://gerretfrerichs.com/DJ GerretDJ Gerret FrerichsFredrichsFreichsFreirichsFrerichsFrericksG FrerichsG. FreirichsG. FrerichsG. FreriensG.FrerichsGFGerrelGerretGerret FreichsGerret FrerichGerret FriedrichGerret FriedrichsGerret PrerichsGerrett FrerichsGerrit FrerichGerrit FrerichsHumateJensGoldfingerGee ShockBlockbusterDisco FishHouse Of PrinceMonsoon (5) + +16061DerbGerman Hard-Trance duo, comprised by producers [a=Kan Cold] ([a=Hennes & Cold]) and [a=Boris Hafner] ([a=Global Cee]).Needs Votehttps://soundcloud.com/derb-officialhttps://www.facebook.com/derbofficial/https://de.wikipedia.org/wiki/DerbD*e*r*bDERBCyrus ColeGlobal ControlIllegal DistrictHuman SyncInterstate (5)Cosmic StripJosé Antonio VasquezCKP (2)Bad Treatment2 Nadie'sBredDestructive ManiaKai WinterBoris Hafner + +16127CerroneMarc CerroneFrench disco-electro songwriter, producer, label manager, arranger and drummer. +Born May 24, 1952 in Vitry-sur-Seine, Paris, France. +Father of [a=Greg Cerrone], brother of [a767569]. +At age 18 he became musical director of the "Club Mediterranée" vacation clubs / holiday resorts. +In 1972, he formed and led [a89337], with several hits and a very lucrative contract with the French label [l=Barclay]. +Cerrone went solo in 1976. The same year, he also created the [l8929] group that he still manages. +Since then, he has released over 25 solo albums, including soundtracks. +With [a=Giorgio Moroder], [a41085] and [a76398], Cerrone is amongst the most pivotal figures of the Euro disco sound.Needs Votehttp://www.cerrone.nethttp://www.because.tv/en/artists/cerronehttp://cerroneofficial.bandcamp.comhttp://www.dailymotion.com/cerroneofficialhttp://www.facebook.com/cerronemarchttp://www.instagram.com/cerroneofficialhttp://www.myspace.com/cerronemusichttp://en.wikipedia.org/wiki/Cerronehttp://www.youtube.com/cerroneofficialCarroneCeroneCeronneCerronCerrone '09Cerrone 3Cerrone IVCerrone ProductionsCérroneGerroneJ.M. CerroneM. CerroneM.CerroneЧерронеセローンC. OrchestraMarc CerroneC. JeremyThe Birds Of MalligatorMark Ronnce + +16293EvolverTrance project from UKNeeds VoteEnvolverEvolerLee Harris (3)Karl MaddisonLorraine Carrol + +16318Y.O.M.C.Martin RothGerman DJ and producer.Correcthttp://www.myspace.com/martinrothMartin "Y.O.M.C."Y O M CY. O. M. C.Y.O.C.M.Y.O.M.CYOMCYomcJulian d'orMartin RothKick & PushParis Nova + +16329DJ Scot ProjectFrank ZenkerDreadlocked Scot Project is a successful German DJ/producer on the harder edge of the trance genre with a plethora of remixes and hit productions under his name. + +His first single [r=509080] was released on [l40192] in 1994, before moving to [l2018] the same year until 2005 with his album [m=25130]. +Co-founded the [l10850] label in 2002.Needs Votehttp://www.scotproject.nethttp://www.youtube.com/scotprojectvhttp://www.facebook.com/pages/scot-project/25884482800https://en.wikipedia.org/wiki/Scot_Projecthttp://www.twitter.com/scotprojectD.J. ScotD.J. Scot ProjectD.J. Scott ProjectDJ S. P.DJ Score MovementDJ ScotDJ Scot P.DJ Scot ProDJ Scot Proj.DJ Scot ProjektDJ ScottDJ Scott MixDJ Scott Prj.DJ Scott ProjectDJ Scott ProjektDJ Scoty ProjectDJ. Scott ProjectDj Scott ProjectDj Scott ProjektDj's Scot ProjectScotScot PojectScot ProjectScot ProjectsScot projectScott ProjectThe Scot ProjectVA - DJ Scot ProjectscotprojectAromeDe ZenkFrank ZenkerLostsidonHypnosisKerosinMike FeserL'espaceTocsDread SelectorSupermusique!Scotech + +16375David WhitakerDavid Sinclair WhitakerEnglish composer, songwriter, arranger, and conductor (born 6 January 1931 in Kingston upon Thames - died 11 January 2012). + +Not to be confused with video game composer [a=David Whittaker] (born 1957). +Needs VoteD WhitakerD. S. WhitakerD. Sinclair WhitakerD. Sinclair WhittakerD. WhitakerD. WhittakerD. WitakerD.S. WhitakerD.Sinclair WhitakerD.WhitakerDave Sinclair WhittakerDave WhittakerDavid 'Sinclair' WhitakerDavid Sainclair WhitakerDavid Saint Clair WithakerDavid Sinclair WhitakerDavid Sinclair WhittakerDavid Sinclair WitakerDavid Whitaker Et Son OrchestreDavid WhittakerDavid WitakerDavid WithakerWhitakerWhittakerThe David Whitaker Orchestra + +16614Alan ThompsonAlan ThompsonHard House producer from Sydney, New South Wales, AustraliaNeeds Votehttps://myspace.com/djalanthompsonhttp://web.archive.org/web/20080513140138/http://www.djalanthompson.com/A ThompsonA. ThompsonThompsonAlter Ego (2)FruitloopBedlamProject 'A' + +17209Nils RuzickaNils RuzickaGerman Hard Trance producer who worked with [a=Scooter], [a=Dune (3)], [a=2 Unlimited], [a=Charly Lownoise & Mental Theo], [a=Rollergirl], [a=Lightforce] to mention a few. He was also the producer of the legendary projects [a=Mega 'Lo Mania], [a=Plug 'N' Play], [a=Revil O] amongst others. + +Contact: nils [at] devilfishmedia [dot] comCorrecthttps://web.archive.org/web/20211026202337/http://www.nilsruzicka.com/https://www.facebook.com/people/Nils-Ruzicka/100067214193269/https://www.linkedin.com/in/nils-ruzicka-45063415/?originalSubdomain=dehttps://soundcloud.com/joepanichttps://www.youtube.com/user/joepanicM. RuzickaMilsN RuzickaN. RuczickaN. RuszickaN. RuzeckaN. RuzickN. RuzickaN. RuzickeN.RuzickaNilsNils RozickaNils RuczickaNils RudzickaNils RuzichaNils RuzickerNils RuzikaNils RuzinckaNils RuziokaP. RuzickaRuzickaRuzicka, N.ScoopexPrefectoAnatol FranceJoe PanicStar TrackO.C. ProjectNu LoveCytaxRavelabWormsPlug 'N' PlayClinique TeamSecret BaseUnique (2)SanityMega 'Lo ManiaVeonaSo Phat!Re-CorderHam & Eggs (2) + +17254DJ WagUwe WagenknechtDJ and producer from Germany. He started DJ career in 1989 in a club called Lopos Werkstatt in Darmstadt.Correcthttps://www.facebook.com/djwagyakoozahttps://www.facebook.com/DjWag1http://www.myspace.com/djwaghttps://twitter.com/Dj_WagD.J. WagDJ WasTJW.A.G.WAGWagUwe WagenknechtDj Packard + +17260DJ JurgenJurgen RijkersDutch DJ & Producer. Jurgen Rijkers (DJ Jurgen) was born in Delft on February 13th 1967. +He started hid DJ career in 1978 as a radio-DJ with Radio “Stad den Haag”. In 1985 he moved to “Radio Veronica” one of Holland’s largest national radio stations of that time. +Besides radio he started doing road shows with them as well. +In 1995 he started producing and released his first record in 1996 at the “Colors” Dutch label.Needs Votehttp://www.djjurgen.comD. J. JurgenD.J. JurgenDJ JurdenDJ JurganDJ JürgenDJ. JurgenJurgenJurgen Rijkers + +17402RimshotGregor HeuzeCorrectRim ShotGregor Heuze + +17428The ProphetDov J. ElkabasDov J. Elkabas aka The Prophet is a Dutch (of Jewish origin) DJ and producer from Amsterdam who started producing music around 1991. He is one of the first Dutch Hardcore Techno DJs and producers. + +In his period he worked together with DJ [a=Buzz Fuzz], [a=DJ Dano] & [a=DJ Gizmo] as the group [a=The Dreamteam] ([l=ID&T]) who had their own record label [l=Dreamteam Productions]. + +Towards the end of the '90s he stopped dj’ing Hardcore to become one of the pioneers of Hardstyle. + +After 10 years of Hardcore Techno, he started creating and producing Hardstyle and started his own record label [l=Scantraxx]. + +DJ The Prophet ended his career in style in front of 65.000 Hardstyle minded people at the biggest Hardstyle event from [l=Q-Dance] named [l=Defqon.1] 2023.Needs Votehttp://www.djtheprophet.comhttps://www.youtube.com/channel/UCU7akfJdYTlQJW8HxhH9QNghttp://www.twitter.com/djtheprophethttp://www.facebook.com/djtheprophethttps://www.instagram.com/djtheprophet/http://en.wikipedia.org/wiki/The_Prophet_%28musician%29https://www.discogs.com/de/user/djtheprophetD.J. The ProphetDJ ProphetDJ The ProphetProfitProphetProppyThe Pro PhetThe PropherPineapple JackCookiemunstaThe MasochistController 1Shimatsu MiruDaytonaThe Washington AffairCommotionThe RoseOral ManiacDoobeyCollage (2)AvantguardeHoodoo ManDopemanThe Better WorldThe Happy HippySilent JesusCarlos MasserattiStardancerThe Prophet's ProjectDJ DovDov ElkabasGeorge Washington (3)RokkwildThe Stalker (2)Dirt Delux + +17546Quincy JonesQuincy Delight Jones, Jr.American record producer, conductor, arranger, film score composer, television producer, and trumpeter. + +Born 14 March 1933 in Chicago, Illinois, USA, died 3 November 2024 in Los Angeles, California, USA. +See also [l=Quincy Jones Productions], [l=Quincy Jones Productions, Inc.], [l=Quincy Jones Music Publishing] + +First known recordings are as a trumpeter and arranger on two MGM [a=Lionel Hampton] 78s from May 1951. + +One of the most respected and prolific music producers of his time, Jones is known for both his own releases, along with the many he has produced across genres (jazz/soul/funk/pop/and more) for some of the biggest and most varied range of recording artists, including [a=Michael Jackson], [a=Dinah Washington], [a=Roland Kirk], [a=Sarah Vaughan], [a=Rufus & Chaka Khan], [a=George Benson], the [a=Brothers Johnson] and [a=Donna Summer]. + +He is probably best known for producing the [a=Michael Jackson] album "[m=435524]" (1979), widely regarded as a classic, along with the later huge selling follow-ups "[m=8883]" (1982) and "[m=8517]" (1987). + +Founded [l=Vibe (6)] magazine in 1993. + +Father of actresses [a=Rashida Jones] and [a=Kidada Jones] (with actress [a=Peggy Lipton]), film and music producer [a=Quincy Jones III] and dancer and model [a=Martina Jones] (with photo model [a=Ulla Jones]).Needs Votehttps://www.quincyjones.com/https://8tracks.com/quincyjoneshttps://www.facebook.com/QuincyJoneshttps://www.historylink.org/File/10354https://www.imdb.com/name/nm0005065/https://myspace.com/quincyjoneshttps://www.onamrecords.com/artists/quincy-joneshttps://x.com/QuincyDJoneshttps://www.whosampled.com/Quincy-Jones/https://en.wikipedia.org/wiki/Quincy_Joneshttps://www.youtube.com/channel/UCaBIjouEo87YhSGmPjuXDoAhttps://www.youtube.com/@QuincyJonesProductionshttps://www.allmusic.com/artist/quincy-jones-mn0000378624"Q"C. JonesD.Q. JonesG. JonesJ. JonesJohnesJohnsJonesJones Jr.Jones, Jr.Jones, QJones, Quincy Delight, Jr.Kuinsi ConsMr. JonesO. JonesQQ D JonesQ JonesQ, JonesQ.Q. JOnesQ. JonesQ. Jones JrQ. Jones Jr.Q.D.JonesQ.J.Q.JonesQ.Jones Jr.Q; JonesQJQu. JonesQuency JonesQuincey JonesQuinci JonesQuincyQuincy "QD3" JonesQuincy - JonesQuincy D JonesQuincy D. JonesQuincy D. Jones, IIIQuincy D. Jones, Jr.Quincy Delight JonesQuincy Delight Jones, Jr.Quincy JoesQuincy JonesQuincy Jones & FriendQuincy Jones & FriendsQuincy Jones Delight IIIQuincy Jones IIIQuincy Jones Jr.Quincy Jones, Jr.Quiney JonesQuinzy JonesQuncy JonesQunicy JonesК. ДжонсКв. ДжонсКвинси ДжонсКуинси Джонсキング・ジョーンズクインシー・ジョーンズ퀸시 존스Freddie K.Quincy Jones And His OrchestraDizzy Gillespie And His OrchestraLionel Hampton And His OrchestraQuincy Jones' All Star Big BandAll Star ChoirThe Art Farmer SeptetThe Jones BoysThe Quincy Jones - Sammy Nestico OrchestraClifford Brown Big BandQuincy Jones And His Swedish-American All StarsQuincy Jones And His Swedish BandArtists For HaitiThe Quincy Jones Big BandQuincy Jones & BandQuincy Jones And West Coast All-StarsQuincy Jones And Friends + +17589Curtis MayfieldCurtis Lee MayfieldAmerican singer, guitarist, songwriter and producer, born June 3, 1942 in Chicago, Illinois - died December 26, 1999 in Roswell, Georgia aged 57. Co-founder of R&B vocal group [a=The Impressions] in the late 1950s. In the mid-1960s, he founded and owned the soul labels [l=Mayfield Records] & [l=Windy C]. He left The Impressions in 1970 to embark on a solo career and co-founded the record label [l=Curtom], alongside [a=Eddie Thomas]. +Father of [a=Kirk Mayfield].Needs Votehttps://www.curtismayfield.com/https://en.wikipedia.org/wiki/Curtis_Mayfieldhttps://www.imdb.com/name/nm0562631/https://www.whosampled.com/Curtis-Mayfield/https://www.songhall.org/profile/Curtis_Mayfieldhttps://www.rockhall.com/inductees/curtis-mayfieldhttps://www.allmusic.com/artist/curtis-mayfield-mn0000144458https://www.instagram.com/curtislmayfield/C MayfieldC. CurtisC. L. MayfieldC. May FieldC. MayfiedC. MayfieldC. MayfielfC.L. MayfieldC.MayfieldC.mayfieldCMCurti MayfieldCurties MayfieldCurtisCurtis - MayfieldCurtis / MayfieldCurtis L MayfieldCurtis L Mayfield LLCCurtis L. MayfieldCurtis Lee MayfieldCurtis MaifieldCurtis MayfeildCurtis MoyfieldCurtis MyfieldCurtis-MayfieldCurtis/MayfieldCurtiss MayfieldD. MayfieldG. MayfieldHayfieldJ. Curtis MayfieldKurtis MayfieldM. CurtisMaifieldMaufieldMay FieldMayfieldMayfield - CurtisMayfield CurtisMayfield Curtis LMayfield, CMayfield, CurtisMayfield, Curtis L.Mayfield-CurtisMayfiledMayfleidMaygieldMemfieldP. Mayfieldカーティスメイフィールドカーティス・メイフィールドThe ImpressionsDavis & Mayfield + +17630Smokin' Bert CooperCorrectSmokin Bert CooperSmokin' Burt CooperSmoking Bert CooperSmoking Burt CooperD. CowlingAlec Milliner + +18360Paul GlazbyPaul GlazbyBritish DJ Paul Glazby began his career on the underground Hard House circuit in Sheffield in 1998. In a few short years he has established himself as a world class DJ, headlining regularly at major clubs in the UK as well as numerous international gigs across the globe. Paul started producing in 2000 and by October of that year he launched [l=Vicious Circle Recordings] with the help of Less Harris. The label has since become an iconic leader of Hard House & NRG. + +Paul has won numerous industry awards in recent years including 'Best Single', 'Best Remixer' & 'Best Album' as well as feauturing regularly on DJ Magazine's Top 100 DJ's. His ability to turn out consistently high quality tracks & DJ sets have made him one of the most in-demand Hard House & NRG producers, remixers & DJ's on the circuit. +Needs Votehttp://www.myspace.com/paulglazbyhttps://ra.co/dj/paulglazbyGlazbyP. GlasbyP. GlazbyP.GlazbyPaul GladzbyKeiser Sosetenpm + +18400Maurice SteenbergenMaurice SteenbergenOldschool pioneer Maurice Steenbergen (Rotterdam - The Netherlands, April 26, 1973) a.k.a. Rotterdam Termination Source (RTS) has gained fame in the 90's, even before the term "Hardcore" saw the light of day. His work is featured on 170 different CDs, LPs and cassettes, and he even has two entries in the Guiness Book of Hit Records. He is best known for his 1992 European hitsingle 'Poing', which is amongst the best selling house classics of all time. +Maurice also produced tracks as and with Armageddon, Sperminator, Wicked on Wax, Evil Maniax and made several remixes for artists like Ruffneck, Human Resource, Lenny Dee and Paul Elstak. Back in those days he played at numerous big parties, like Nightmare In Rotterdam, Parkzicht and Megarave and had international bookings in countries like England, Italy, Spain, Scotland, Switzerland, Germany and a legendary liveset at the infamous Limelight Club in the USA. After the rebirth of Hardcore, Maurice toured with Human Resource (known for their dance classic "Dominator") through Europe and America.Needs Votehttp://web.archive.org/web/20170915222402/http://www.mauricesteenbergen.com/https://www.facebook.com/mauricesteenbergenDJ Maurice SteenbergenM SteenbergenM. SteenbergenM. Steenbergen (Poing)M. StenbergenM. steenbergenM.SteenbergenM.V. SteenbergenMaurice S.SteenbergenStenbergenArmageddonMichael WhitelineDJ MauriceWicked On WaxThe ParadeSoldaat MauriceSpunk (7)Human ResourceRotterdam Termination SourceEvil ManiaxM.R.G.Vinyl KillersThe Unstopable ForceAnalog OrgasmVernietiger X & Grootmeester FlitsBald ManiaxSteenbergen Rotterdam Project + +18435Lisa LashesLisa Dawn Rose-WyattBritish trance/hard-house DJ and music producer. + +Born: 23 April 1971 in Holbrooks, Coventry, England, UK. + +Based in Leicester, UK. She founded her own digital labels [l=Lashed Music] and [l=Lashed Digital]. +Needs Votehttp://www.djlisalashes.comhttps://www.facebook.com/djlisalasheshttp://www.mixcloud.com/djlisalasheshttp://soundcloud.com/djlisalasheshttp://twitter.com/djlisalasheshttp://en.wikipedia.org/wiki/Lisa_Lasheshttp://www.youtube.com/officiallisalasheshttp://www.flowd.com/lisalashesL. LashesLashesLisa Lashes XtremeLisa LeshesLisa Rose WyattTidy Girls + +18500NishKen-Ichiro NishiNeeds Votehttp://www.nish.jp/https://www.facebook.com/Ken-Plus-Ichiro-223521307715357/http://www.myspace.com/nish303http://soundcloud.com/hardergroundKen-Ichiro NishiBangin' NoizeeeKen-Ichiro NishiElektlFUNKAROiDKen Plus IchiroN15HDJ RaveriderN!SHDJ NIDA + +18811Jack CostanzoJames CostanzoAmerican percussionist and bandleader. +Born 24 September 1919 in Chicago, Illinois Died August 19, 2018 in California USA. Nicknamed “Mr. Bongo” for his role in making the instrument popular, almost starting a “bongo craze” as latin rhythms influenced jazz and pop following World War II. Originally a dancer, Costanzo visited Cuba several times to learn conga playing, before reportedly being the first bongo player to join a jazz band. He played with [a=Stan Kenton] (1947–1948), [a=Nat King Cole] (1949–1953], [a=Billy May And His Orchestra], [a=Peggy Lee], [a=Perez Prado], [a=Charlie Barnet], [a=Ray Anthony], [a=Xavier Cugat], [a=Frank Sinatra] and others. In the 1950s Costanzo formed his own “Exotica” style band. In the early 1960s he was a member of the studio musicians group [a=The Surfmen]. He has continued to play for more than half a century, retiring in 1998 but making a comeback in 2001. + +Note: Manuel Santo is a pseudonym for Jack Costanzo that appears originally on (French) [l60669] releases but also on successors [l10584], [l90329], and sometimes on other reissues. See for instance [url=https://www.discogs.com/Tito-Rivera-3-Jack-Costanzo-Mister-Cha-Cha-Cha-Hifi/release/6115195]here[/url], [url=https://www.discogs.com/Jack-Costanzo-And-His-Orchestra-Tito-Rivera-And-His-Cuban-Orchestra-Viva-El-Cha-Cha-Cha/master/983542]there[/url], [url=https://www.discogs.com/Jack-Costanzo-Tito-Rivera-Cha-Cha-Cha-Mambo-Bol%C3%A9ro-Rumba/release/1857503]there.[/url] Manuel Santo was also used as a pseudonym for [a8339841] on those releases. +Please add correct credit Jack Costanzo (or Tito Rivera) in this case, according to [g1.7.2]. Alias is not appropriate, pseudonym was not Costanzo (or Rivera) choice.Needs Votehttp://www.spaceagepop.com/costanzo.htmhttp://en.wikipedia.org/wiki/Jack_Costanzohttp://www.allmusic.com/artist/jack-costanzo-mn0000123904/biographyhttps://adp.library.ucsb.edu/names/309954CostanzoJ. CastonzaJ. CostanzoJack "Mr Bongo" CostanzaJack 'Mr. Bongo' CostanzoJack ConstanzaJack ConstanzoJack ContanzoJack CostansoJack CostanzaJack Costanzo, Mr. BongoJack CostazoJack CoztanzoManuel SantoManuel Santo Y Su OrquestaMr Bongo Jack CostanzoMr. Bongo Jack CostanzoKaskaraJack Costanzo And His OrchestraStan Kenton And His OrchestraBilly May And His OrchestraPete Rugolo OrchestraJack Costanzo & His Afro Cuban BandThe SurfmenHoward Rumsey's Lighthouse All-StarsL'Ensemble Instrumental Des IlesBumps Blackwell OrchestraJack Costanzo (Mr. Bongo) And His Latin Combustion Band + +18956Stevie WonderStevland Hardaway Morris (born Stevland Hardaway Judkins)American multi-instrumentalist, composer, singer, humanitarian and social activist, born May 13, 1950, Saginaw, Michigan, USA. He has been blind since shortly after birth. +Inducted into Songwriters Hall of Fame 1983. +Inducted into Rock And Roll Hall of Fame in 1989 (Performer). +Brother of [a=Calvin Hardaway].Needs Votehttps://www.steviewonder.net/https://www.facebook.com/StevieWonderhttps://www.youtube.com/user/StevieWonderVEVOhttps://www.steviewonder-unofficial.com/https://en.wikipedia.org/wiki/Stevie_Wonderhttps://www.britannica.com/biography/Stevie-Wonderhttps://www.imdb.com/name/nm0005567/https://www.whosampled.com/Stevie-Wonder/https://www.allmusic.com/artist/stevie-wonder-mn0000622805 Wonder"Little Stevie Wonder""Little" Stevie Wonder. WonderD. WonderE. WonderEivets RednowIncredible Stevie WonderJunior Stevie WonderLitte Stevie WonderLittle Steive WonderLittle StevieLittle Stevie WonderS WonderS, WonderS. WonderS. MorrisS. T. WonderS. VonderS. VonderisS. WanderS. WaterS. WonderS. Wonder.S. WondersS. WonerS. WoolderS. ワンダーS.J. WonderS.WonderSTWSWSstevie WonderSt. MorrisSt. WonderSteevie WonderSteveSteve . WonderSteve WoderSteve WonderStevei WonderSteveie WonderSteven WonderStevieStevie !Stevie VonderStevie WStevie WanderStevie WinderStevie Winder-WonderStevie WondaStevie Wonder & His BandStevie Wonder And His BandStevie WonterStevie • WonderStevie!Stewe WonderStewie WonderStive WonderStivie WonderStévie WonderThe Incredible Stevie WonderW. WonderWanderWander S.WondeWonderWonder ManWonder S.Wonder StevieWonder StivieWonder WhatWonder, Steviest. WonderΣτίβι ΓουόντερС. ВандерС. УандерС. УондерСтив УандерСтиви УандерСтиви УондерСтиви Уондърס. וונדרס.וונדרסטיבי וונדרスティービー・ワンダースティーヴィー・ワンダーステイーヒー・ワソターステイービー・ワンダステイービー・ワンダー史帝夫·汪德)史提夫汪達與史提夫汪達Scorbu ProductionsStevland MorrisStevie JudkinsEl Toro NegroFriend (8)Amunda (3)Three Beautiful Brothers + +18978Barry WhiteBarrence Eugene CarterAmerican musician, composer, and producer born on September 12, 1944, in Galveston, Texas, died on July 4, 2003, in Los Angeles, California. He began his career as a pianist and played on Jesse Belvin's R&B hit "Goodnight My Love". At the age of 11, White made several recordings under his own name as "Barry Lee" and as a member of The Upfronts, The Atlantics, and The Majestics. + +Although White had some success as a solo artist, he found greater success as a background figure and manager of other artists, including Felice Taylor and Viola Wills. In 1969, he founded Love Unlimited, a female vocal trio consisting of Diane Taylor, Glodean James (his future wife), and her sister Linda. He also founded the Love Unlimited Orchestra, a 40-piece ensemble to accompany himself and the vocal trio, providing music direction, composition, and arrangement. + +At the beginning of the new millennium, White's health began to deteriorate, and he died on July 4, 2003, in Los Angeles, California, at the age of 58 from kidney failure. Needs Votehttps://en.wikipedia.org/wiki/Barry_Whitehttps://www.allmusic.com/artist/barry-white-mn0000149044"The Master" Barry WhiteB WhiteB. E. WhiteB. WhiteB. WhitteB. ホワイトB.WhiteBarryBarry Eugene WhiteBarry Eugene White, Jr.Barry White & FriendsBerry - WhiteBerry WhiteC. WhiteD. WhiteE. B. WhiteMr. WhiteP. WhiteR. WhiteThe Late Great Barry WhiteW. BarryWhileWhiteWhite/WhiteБарри Уайтバリー・ホワイト貝瑞懷特Lee BarryThe White LegendGene WestGene Carter (2)The Maestro (5)Love Unlimited OrchestraThe Atlantics (2)The Barry White SingersBarry White And His OrchestraThe Majestics (25) + +19331AromeFrank ZenkerCorrectArromeDJ Scot ProjectDe ZenkFrank ZenkerLostsidonHypnosisKerosinMike FeserL'espaceTocsDread SelectorSupermusique!Scotech + +19367Lab 4UK Hard Dance act. Adam and Les formed Lab 4 in 1994 and soon secured début gigs at fetish night Torture Garden and then Club UK in Wandsworth, London. In the late 90's regular PA's at trance club nights such as Escape From Samsara in Brixton, London, brought them greater recognition. Into the 21st century they grew to become the biggest live "Hard Dance" act in the UK with regular gigs overseas and subsequently gained a large and loyal following from fans across the globe. + +In September 2006 the duo announced that it was "time to call it a day with Lab 4" and arranged a series of farewell gigs up to and including New Year's Eve 2006-07.Correcthttp://www.lab4.comhttps://soundcloud.com/lab4officialhttps://www.facebook.com/Lab4Officialhttp://www.myspace.com/lab4musichttps://lab4uk.bandcamp.com/https://en.wikipedia.org/wiki/Lab_4A+D+A+M Lab4LAB-4LAB4Lab-4Lab4lab4ラブ-4The Mind Of GodCreedHyperwaveDrumAura ZBerettaLuna ChiqueJohn & JamesDirty SohoAdam NewmanLes Elston + +19441DJ SpokeCedric RochatDJ Spoke started his career in 1992, during the explosion of electronic musics, in organizing his own crazy after-hours parties in the woods above Lausanne. In 1993, the magazine Party News rewarded DJ Spoke as"best new Swiss DJ of the year" He appeared regularly in the different major clubs of trance music like : Mad, Nachtwerk, Gate One, Oxa, Sphinx… ). He also take part to the most important gatherings like Goliath, Cubik, Energy, Motion, Evolution, Unity, Atlantis, lake Parade, Mainstation …). This contributed to his success and fame. + +Leader dj of the swiss scene, dj Spoke (resident dj from the famous Mad Club in Lausanne) is not only a dj mixing in the clubs but he is also a producer. His track appears on famous labels like "Suck me Plasma" and he has produced tracks in collaboration with artists like Pascal F.E.O.S. or Rozzo. In 1997 he started to work with a radio station "Radio Framboise" for the broadcast "Culture Dance". This broadcast appears live in the main trendy clubs from Switzerland. + +Dj Spoke put together his own recording studio and, in 1998, created his own label "Progressive State". Another dj, Vespa 63 join him on this label. This label is distributed worldwide through "Music Mail" in Germany and is actually the best swiss label around the world. In the same time dj Spoke started an International dj career. He also start to produce and remix tracks for other labels such as Rising High, Sonar, Trance Communication … + +In January 2001 dj Spoke released is famous track "You're ready 4 me" this track appears in most of the main dj's charts and became a must have. The reaction on the dance floor is absolutely incredible. All dj Spoke productions appears regularly on the world major trance compilations like: "Gatecrasher, Tunnel Trance Force, Extreme Euphoria, Teknics, ministry of Sound…" and commercial releases are done in Belgium, USA, Japan, Spain, England, Australia, Netherlands... +Needs Votehttp://www.djspoke.chSpokeSolar CorpCedric Rochat + +19442Beam vs. CyrusCyrus Sadeghi-Wafa and Michael UrgaczNeeds Votehttp://www.cyrustrax.infohttps://www.facebook.com/djcyrusofficialhttps://soundcloud.com/cyrustraxBeamBeam & CyrusBeam VS CyrusBeam VsBeam Vs CyrusBeam vs CyrusBeam vs. CyrasBeam vs. CyrosBeam. vs. CyrusBeams vs. CyrusDocking StationMichael UrgaczCyrus Sadeghi-Wafa + +19516Curve PusherDave OwensNote: please do not use this artist when 'Curve Pusher' is found in the runout area of a record. For that case, please credit the company [l=Curve Pusher] with Lacquer Cut At.Needs VoteDave OwensbasewareD.F.O.GenkeiTdogPlas VegasOMFG (4)Charlie WaxDiscostep SonicsRumrunnersAutomaton (8) + +19599Ray BarrettoRaymundo Barretto PagánAmerican conga player, drummer, percussionist, bandleader, composer and producer. Father of [a761762] +Member of [a19594]'s orchestra from 1957 to 1960, he formed his own orchestra in 1961. Highly demanded session musician for labels like Prestige, Blue Note, Riverside and Columbia and member of [a15794]. +Inducted into the International Latin Music Hall of Fame in 1999. + +Born 29 April 1929 in New York City, New York +Died 17 February 2006 in Hackensack, New Jersey. + +Correcthttps://web.archive.org/web/20220625022554/http://www.musicofpuertorico.com/index.php/artists/ray_barretto/https://en.wikipedia.org/wiki/Ray_Barrettohttps://raybarretto.bandcamp.com/https://adp.library.ucsb.edu/names/303230BarettoBarretoBarrettaBarrettoR BarrettoR. BarettoR. BarretoR. BarrettoR.BarrettoRBRayRay BarettaRay BarettoRay BarretoRay BarrettaRay BarrittaRay BerettaRay BerrettoRay BerrutoRay barretoRaymond BarettoRaymond BarretoRaymond BarrettoRey BarrettoRoy Barreroレイ・バレットCleopas "Mopedido" MorrisFania All StarsThe Blackout AllstarsQuincy Jones And His OrchestraArtists United Against ApartheidWoody Herman And His OrchestraThe Ray Bryant ComboTito Puente And His OrchestraOliver Nelson And His OrchestraRay Barretto GroupThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsCannonball Adderley And His OrchestraLou Donaldson QuintetRay Barretto Y Su Charanga ModernaRay Barretto Y Su OrquestraArt Farmer And His OrchestraWoody Herman And The Thundering HerdThe Al Grey - Billy Mitchell SextetWild Bill Moore QuintetRay Barretto Charanga BandRay Barretto & New World SpiritVarious Artists For Children's PromiseRay Barretto Sextet + +19608The HoodlumsAlias for the collaboration of US producers Darren R.and George Centeno (also known as the House O' Holics). Under this alias they produce clubby and progressive house tracks.Needs VoteHoodlumsTwo Phunk D-LuxThe Ghetto PimpsHouse O' HolicsThe Hardkorr TerroristsThe MercenariesGeorge CentenoDarren Ramirez + +20104Paul ChambersPaul ChambersFor the American jazz bassist please use [a259778]! + +Versatile UK pop/dance producer, remixer and engineer. + +In a career spanning over a decade, Paul has worked with countless people in a wide range of genres; from hard house classics like Bulletproof's "Mistakes" and the funkier sounds of Disposable Disco Dubs, to remixes for Kylie Minogue, Annie Lennox, David Gray, etc., to TV, film & commercial scores. +Needs Votehttp://www.myspace.com/paulchambers3http://www.myspace.com/scottjames50http://www.myspace.com/mansfieldhttp://www.paul-chambers.netChambersP. ChambersP.ChambersPaulPaul 'Bulletproof' ChambersFlash HarryDancefloor GloryDutch CourageBulletproof (2)Sabotage TraxArchie (2)Dusty BlingDisposable Disco DubsVicky PollardFlashheadzFlashnikal + +20164DBSK[b]DBSK[/b] = [b]D[/b]aniel [b]B[/b]unter & [b]S[/b]teve [b]K[/b]night.Needs VoteD.B.S.KD.B.S.K.DB8KThe DBSKSteve KnightDaniel Light + +20165Ian MIan MulfordHard House / NRG Producer & DJ from Leicester, England, United Kingdom.Needs Votehttps://web.archive.org/web/20071015041334/http://www.ianm.co.uk/http://www.myspace.com/ianmdjDJ Lan MIan M.Ian ManLan M + +20170The Groove CollectorWillem Jelle FaberCorrectGroove CollectorGroove CollectorsThe Grove CollectorWishboneMac ZimmsIncisionsTalespinGossipFlaxFellow ManDa MindcrusherYukan ProjectUltra SpinJelle FaberJens HollandWillem FaberTrickster (3)Q-Tip (2)ScandallNeon (17)Bellrock + +20172JFKJason KinchHard dance DJ & producer from UK. + +Hometown: Loughborough, Leicestershire +He has been voted in the top 100 DJs five times. + +[b]For the American president, please use [a441676][/b]Needs Votehttp://www.djjfk.co.uk/http://www.facebook.com/pages/DJ-JFK/257653629344J.F.K.JKFJason Kinch + +20176Organ DonorsUK electronic dance music project from Bournemouth, UK. They owned the Atmospheric Records shop in Bournemouth in the mid 90s. +Styles: Hard Dance | Hardstyle | Hard Trance | Electro HouseNeeds Votehttp://www.facebook.com/OrganDonors http://www.organdonors.djOrgan DonarsOrgan Donors, TheThe Organ DonorsThe NumbskullsDJ DestinyNew WaveThe Asylum SeekersRave 2 The GraveDirk Diggler (2)Chest RockwellMatt HarrisScott Harris + +20179Mr. BishiCorrect'Mr. Bishi'BishiMistabishiMister BishiMr BishiMr.BishiNeon LightsVolts WagenSteve HillJon Langford + +20293Majestic 12CorrectMJ 12MJ12Champion BurnsM.A.Q.Masters At QuirkTopaz (2)Robert BurnsNigel Champion + +20445Plug 'N' PlayCorrectPlig'n'playPlugPlug & PlayPlug ' N ' PlayPlug 'N PlayPlug 'N'PlayPlug 'n PlayPlug 'n' PlayPlug And PlayPlug N PlayPlug N' PlayPlug N'PlayPlug `n´ PlayPlug&PlayPlug' N' PlayPlug'N PlayPlug'N'PlayPlug'n PlayPlug'n' PlayPlug'n'PlayPlug'n'playPlug-N-PlayPlug´N`PlayRavelabSecret BaseUnique (2)Nils RuzickaOliver Bensmann + +20485N.R.G.Neil Gavin RumneyUK Breakbeat Hardcore artist.Correcthttp://www.myspace.com/oldschoolnrgEnergyN-R-GN. R. G.N.R.GNRGNrgN·R·G2 SmoothLiquid CrystalNeil RumneySummer JunkiesDJ FlavoursDisco HybridsOverdubzD.B.X.Trotters Independent TradersThe Hard PlayersWork!Soul TechRuntime86deep + +20691Philip GlassAmerican composer and musician. +Born January 31, 1937 in Baltimore, Maryland, USA. +He was married to [a=JoAnne Akalaitis] from 1965 to 1980. He studied music with [a531461], [a=Vincent Persichetti], [a=Darius Milhaud] and [a=Nadia Boulanger]. In 1966 he worked with [a=Ravi Shankar], which changed his perspective on composition. In the fall of 1968, he founded the Philip Glass Ensemble to perform his music and in 1971 he started Chatham Square Production to release his music. +Publisher: [l266896].Needs Votehttps://en.wikipedia.org/wiki/Philip_Glasshttps://www.philipglass.com/https://www.arts.gov/honors/opera/philip-glasshttps://web.archive.org/web/20031003054205/https://www.sonyclassical.com/artists/glass/https://www.sonyclassical.com/artists/artist-details/philip-glasshttps://www.imdb.com/name/nm0001275/https://www.x.com/philipglasshttps://www.facebook.com/philipglassmusichttps://www.allmusic.com/artist/philip-glass-mn0000849672GlassGlass, P.Glass, PhillipP. GlassP.GlassPGPh. GlassPhil GlassPhilips GlassPhillip Glassフィリップ・グラス菲利普葛拉斯菲利浦葛拉斯The Philip Glass EnsembleMabou Mines + +20840DJ The CrowDirk NothroffGerman hard trance DJ and producer.Needs Votehttp://www.djthecrow.de/CrowCrow, TheD.J. The CrowDJ CrowDJ The C.DJ The CroxDJ. The CrowThe CrowDirk NothroffKenneth Daryl Lewis + +20907GuyverGuy MearnsElectronic dance music producer from Beverley, England +Styles: Trance | Hard Trance | Hard House | House +Drum & Bass | Glitch Hop | Needs Votehttp://soundcloud.com/mearnsmusichttp://twitter.com/guymearnshttp://www.youtube.com/mearnsmusichttps://www.facebook.com/guymearnstanjiiThe GuyverKronosThe Riot BrothersMizukiGuy MearnsMonz (2)UmaroAudio TTAntonio Menez3NDGAM3Forever LucidGr33ndogThink Drift + +20922Da Techno BohemianStudio project of Koen Groeneveld, Addy van der Zwan. Former member Jan Voermans left the project in 2005.Needs VoteDTBDa TechnoDa Techno BogemianDa Techno BohemiansTechno Bohemian'sTechno BohemiansKlubbheadsItty Bitty Boozy WoozyGreenfieldDJ DiscoFrantic ExplosionHardlinersDa Klubb Kings2 HiKA-22The Sound Of NowDrunkenmunkyMellow TracksKoen Groeneveld & Addy van der ZwanK&ACut The CakePeter NorthleadBlue (6)Freak BitchInfectious!Snow Inc.Delano & CrockettHi_TackTek TeamLCD-JThe Caramel ClubUntouchable 3Club Scene InvestigatorsDutch MaffiaSleezy GThe Rotterdam GangThe Sync Inc.Speakerz!ChainsideLos Pampas Featuring The DixiebandAddy van der ZwanKoen GroeneveldJan Voermans + +20956Donald ByrdDonaldson Toussaint L'Ouverture Byrd IIAmerican jazz trumpeter, composer, bandleader and educator +Born December 9, 1932 in Detroit, Michigan, USA +Died February 4, 2013 in Dover, Delaware, USA (aged 80) + +Byrd attended Cass Tech, where he studied classical music and was mentored by the band director [a3320616], a disciplinarian. He played trumpet in military bands during a stint in the Air Force from 1951–1953, before graduating from [l2282533] in 1954 with a music degree. Like other young Detroit jazz musicians, he also studied with bebop pianist [a277632]. + +Byrd's warmly burnished sound, fluent technique and aggressive-yet-graceful swing was rooted in the style of [a259082], but his gangly, rhythmically loose phrasing was a unique calling card right from the start. As Byrd matured in the late 1950s and early 1960s, he tempered his hummingbird flourishes with a cooler sensibility and phrasing. + +Byrd recorded prolifically in the 1950s mainly as a sideman, but also as leader, appearing on scores of recordings on the [l33726], [l19591], [l34094] and [l281] labels. He led a quintet with his old friend from Detroit, baritone saxophonist [a261400], from 1958–1961. Byrd also gave [a3865] his first major exposure by hiring him in 1961. + +As a composer, Byrd was proficient in church-inspired shouts, funky and sophisticated blues forms and structurally interesting originals. He had a wider field of vision than many of his peers, exemplified by his 1963 LP, “A New Perspective” (Blue Note), which married his small group with a gospel choir. + +Byrd never stopped gaining qualifications. He earned a master's degree in music education from the [l484524] in the late 1950s, studied composition with the classical pedagogue [a1788372] in Paris, France in the early 1960s, earned a law degree from [l867114] in 1976 and a doctorate from Columbia Teachers College in New York in the early 1980s. Beginning in the 1960s, Byrd taught at many universities, including [l430727], Howard and [l3538249]. + +By the early 1970s, Byrd had begun to explore a danceable fusion of jazz, R&B and soul. In 1973, he teamed with current and former students at Howard, where he was chairman of the black music department, to make the best-selling LP “Black Byrd”. Produced by brothers [a1506426], the record and its sequels made Byrd a crossover star.Needs Votehttp://en.wikipedia.org/wiki/Donald_Byrdhttps://soulstrutter.blogspot.com/2022/12/donald-byrd-profile.htmlhttp://www.whosampled.com/Donald-Byrdhttp://www.myspace.com/donaldbyrdjazzfunkhttps://www.allmusic.com/artist/donald-byrd-mn0000149946https://www.jazzmusicarchives.com/artist/donald-byrd/?ac=donald%20byrdB. ByrdBirdByrdD ByrdD. ByrdD.ByrdD.T. ByrdDon ByrdDonal ByrdDonald BirdDonaldson Toussaint L'Ouverture "Donald" Byrd IIDr. Donald ByrdMr. D ByrdSahib Byrdドナルド・バードArt Blakey & The Jazz MessengersDonald Byrd & 125th Street, N.Y.C.The Horace Silver QuintetLionel Hampton And His OrchestraThe Bob Prince TentetteJim Timmens And His Jazz All-StarsThe Red Garland QuintetDonald Byrd QuintetArt Blakey's Big BandPaul Chambers SextetThe Hank Mobley QuintetManny Albam And His Jazz GreatsMundell Lowe And His All StarsHank Mobley SextetPepper Adams QuintetJohnny Griffin SextetThe Thelonious Monk OrchestraThe Prestige All StarsGeorge Wallington QuintetJackie McLean QuintetPaul Chambers QuintetKenny Drew QuartetKenny Drew QuintetLou Donaldson QuintetThe Gigi Gryce - Donald Byrd Jazz LaboratoryJackie McLean SextetPhil Woods SeptetThe Duke Pearson QuintetDonald Byrd SextetPepper Adams Donald Byrd QuintetElmo Hope SextetOscar Pettiford & His All StarsNDR-Jazz-Workshop-BandSam Rivers SextetGigi Gryce And The Jazz Lab QuintetDonald Byrd QuartetBunky Green SextetKenny Clarke SeptetDonald Byrd SevenEric Dolphy SeptetPepper Adams - Donald Byrd Sextet + +20958IngoThomas IngamellsUK Hard Dance Producer, Remixer, Engineer & DJ.Needs Votehttp://www.facebook.com/pages/Ingo-AKA-Ingo-Staar/264604506887472Ingo StaarIngo StarIngo StarrR-Ingo The TsarStarStar!Tom IngoIngo StarNeutron TomThe Phat ControllerGuy OctaneTom's ProjectAvis Van RentalGravity TrappDigital CowboyZeuszThomas IngamellsTom StaarAngo TamarinBismark (2) + +20959AluminaHamilton DeanNeeds VoteDJ HamSlush & PuppieDJ Brian (2)Eclipse (9)John BarnardHamilton DeanRoland (7)Hamilton (17) + +21059Anne SavageAnne Savage is a UK hard-dance DJ & Producer. She took up her first DJ'ing residency as a teenager under the name DJ Fresh, honing her hard-house styles and then rose to a meteoric DJ status, rocking out in clubs and releasing music/mixes worldwide. Has been resident DJ for Speed Queen, Sundissential & Rise. + +Used to be a dancer on the chat show 'Hotel Babylon'.Correcthttp://www.djannesavage.com http://www.facebook.com/pages/Anne-Savage/22372760313 http://www.myspace.com/annesavagedotnet http://www.annesavagebebo.com http://www.dontstayin.com/groups/parties/anne-savage/ http://www.annesavageyoutube.com http://twitter.com/AnneSavage http://www.djannesavagemix.comA. SavageA.SavageAnn SavageSavageDumb BlondeDestiny AngelNorthern ScumTidy Girls + +21060Scooper & SticksNeeds VoteScooper & Sticks EPScooper And SticksTidy Boys2InATentThe HandbaggersBlue Orange2 In A TankThe NRG TwinsThe Bucking BroncosAndy PicklesAmadeus Mozart + +21468E-WokNeeds VoteE WokE-WorkEwokNightvision (2)J & R ProjectNitrate (2)Dub DeliriousWheels Off SteeleUltra FreakDark Room (2)BasspussiesBrainpiercingJohn van DongenRon van den Beuken + +21469TransistersCorrectThe GuvnorsKillerwattYer ManGood LivinBrazenFonzerelliAaron McClellandKings Of HouseEffin & BlindinTouch & Go (2)Gorgeous George (3)StartraxxFrame Of Mind (6) + +21470Dean FacerNeeds Votehttp://www.deanfacer.com/http://www.myspace.com/deanfacerhttp://www.soundcloud.com/deanfacerhttp://www.twitter.com/deanfacerD.Facer + +21472Flash HarryPaul ChambersNeeds VotePaul ChambersDancefloor GloryDutch CourageBulletproof (2)Archie (2)Dusty Bling + +21473StarfireEmanuel Rehwald & René SüßCorrectGhettoblastaEmanuel RehwaldRené Süss + +21480Satellite KidzDom Sweeten & Owen SwinerdCorrecthttp://www.404studio.comSatelite KidzSatellite KidsOD404HyperloopDom SweetenOwen Swinerd + +21625DropzoneNeeds VoteCyberdriveBrisk & HamNorthern LightsStimulant DJsEurotrashHamilton DeanPaul Nineham + +21652Question MarkElectronic duo producer from Barcelona (Spain)Needs VoteSolar SystemClub Corporation2 Without MoneyJordi RoblesDavid Gimenez + +21945Frank EllrichFrank EllrichGerman DJ and producer based in Frankfurt am Main. He is one of the founders of [l=Power Power].Needs Votehttp://www.facebook.com/frank.ellrichEllrichEllrich, FrankF. EllerichF. EllrichF.EllrichFranck EllrichFrank E.Frank EllerichFrank Ellrich Pres.Frank EllrischFrank ElrichKrank EllrichX-FrameElectric (2)Funktion ForceMike Fraser (2)NaicheF. El RicoFrellRadius CClinixBlackstarDouble ForceCyberstormDark NoizeRiddler & HeadcrusherPlasmaticsSubnerveDJ MarceloWabunG-StringFriendshipNovusA*S*Y*S3 MenTMCHeadcrusherFuture TribesAsanoxThe LuvFrank E. FordRaxx (2)D-Tune (5)Jack BambooSol NoirKairo KingdomPatrick Plaice & Frank EllrichTricom (2)CutanAutomator (5)EliogMagic DJ (2) + +22853Lamont DozierLamont Herbert DozierLamont Dozier (June 16, 1941 – August 8, 2022) was an American singer, songwriter, and record producer, from Detroit, Michigan. +Part of the acclaimed 1960-'70s US songwriting/production team of [a=Holland-Dozier-Holland]. Father of [a=Beau Dozier]. + +NOTE: When appearing together with [a=Brian Holland] please use [a=Holland & Dozier]; these are usually production credits. When appearing together as part of the Holland-Dozier-Holland trio please use [a=Holland-Dozier-Holland]; these are usually songwriting credits. (In both cases remember to use an ANV (Artist Name Variation), depending on how they are actually listed on the release itself).Needs Votehttps://en.wikipedia.org/wiki/Lamont_Dozierhttps://www.imdb.com/name/nm0236541/https://myspace.com/theofficiallamontdozierhttps://www.whosampled.com/Lamont-Dozier/https://twitter.com/lamontdozierhttp://web.archive.org/web/20180205063918/http://www.lamontdozier.com/A. DozierD. LamontDoizerDovierDozierDozier & Lamont HerbertDozier LamontDozier Lamont HerbertDozier, LamontDozier, Lamont HerbertDozietE. DozierH. DozierH. Dozier, LamontH. Dozier/LamontHerbertHerbert Dozier LamontHerbert Lamont DozierJ. DozierJ.DozierL DozierL. DozierL. DocierL. DosierL. DozieRL. DozierL. H. DozierL. HelbertL.D.L.DozierL.H. DozierL.H.DoziersLa Mont DozierLa. DozierLaMont DozierLamonLamond DozierLamontLamont - DozierLamont /DozierLamont DazlerLamont Dozier, Jr.Lamont Herbert DozierLamont, DozierLamont-DozierLamont/DozierLamonte DozierLamot DozierLamout DozierLemont DozierLomont DozierT. Dozierラモント・ドジャーLamont AnthonyHolland & DozierZingaraHolland-Dozier-HollandThe Romeos (5) + +22946Steve ReichStephen Michael ReichAmerican composer, born October 3, 1936, in New York City. He studied composition privately with Hall Overton, then moved on to Juilliard School in New-York to study with William Bergsma and Vincent Persichetti (1958 to 1961). Subsequently he attended Mills College in Oakland where he was taught by Luciano Berio and Darius Milhaud (1961-63) and earned a master's degree in composition. + +Early on, he was influenced by fellow minimalist Terry Riley's loosely-structured aleatoric works which combines simple musical patterns, offset in time, to create a slowly-shifting, cohesive whole. Reich adopted this approach to compose his first major work written in 1965: "It's Gonna Rain...". He moved on from the "phase shifting" technique he had pioneered to more elaborate pieces. He investigated other musical processes such as augmentation (the temporal lengthening of phrases and melodic fragments). + +Reich's mother is the Broadway singer and lyricist [a=June Carroll].Needs Votehttps://www.stevereich.com/https://www.facebook.com/SteveReichMusichttps://x.com/SteveReichhttps://myspace.com/stevereichmusichttps://www.boosey.com/composer/steve+reichhttps://www.nonesuch.com/artists/steve-reichhttps://www.npr.org/artists/15005371/steve-reich?t=1589545760644https://en.wikipedia.org/wiki/Steve_Reichhttps://www.imdb.com/name/nm0716962/https://www.whosampled.com/Steve-Reich/https://www.allmusic.com/artist/steve-reich-mn0000037658ReichReich RemixedReich, SteveS ReichS. ReichS.ReichСтив РайхСтив Рајхスティーヴ・ライヒSteve Reich And Musicians + +23165Lalo SchifrinBoris Claudio SchifrinArgentinian film and TV score composer, arranger, conductor and pianist. +Born June 21, 1932 in Buenos Aires, Argentina. +Died June 26, 2025 in Los Angeles, USA. +Classically trained as a musician, he was the son of the concertmaster of the Buenos Aires Philharmonic ([a5022188]), his first piano teacher was Enrique Barenboim (the father of [a424576]) and studied at the Paris Conservatory under [a32180]. Schifrin met [a64694] in 1956, moved to the United States in 1958, and was a member of Gillespie's quintet (1960-62) writing the extended works "Gillespiana" and "The New Continent" for Gillespie. He gained his highest recognition as a composer of music for the screen, including the theme for "Mission: Impossible" (TV series 1966-73, and the later films from 1996), as well the motion pictures "Cool Hand Luke" (1967), "Bullitt" (1968) and "Dirty Harry" (1971). During the course of his career, Schifrin received six Oscar nominations, four Grammys (with twenty-one nominations), and one Cable ACE Award. He has a star on the Hollywood Walk of Fame and was awarded an honorary Oscar in November 2018 in recognition of his work. Autobiography: "Mission Impossible: My Life in Music” (2008). Died from pneumonia. + +See also the label [l=Aleph Records] and [a=Donna Schifrin].Needs Votehttps://schifrin.com/https://soundcloud.com/laloschifrinhttps://variety.com/2025/music/news/lalo-schifrin-dead-mission-impossible-film-composer-1236442000/https://www.theguardian.com/music/2025/jun/27/lalo-schifrin-dies-aged-93-composer-dead-mission-impossible-themehttps://www.washingtonpost.com/obituaries/2025/06/26/lalo-schifrin-composer-mission-impossible-dies/https://www.latimes.com/entertainment-arts/movies/story/2025-06-26/lalo-schifrin-dead-composer-mission-impossiblehttps://www.imdb.com/name/nm0006277/https://en.wikipedia.org/wiki/Lalo_Schifrinhttps://dougpayne.com/schifrin.htmB. SchifrinBoris 'Lalo' SchifrinBoris C.SchifrinBoris Cladio SchrifrinBoris Claudio (Lalo) SchifrinBoris SchifinBoris SchifrinI. SchfrinIschifrinKaki SchifrinL SchifrinL ShifrinL. ChifrinL. SchafrinL. SchfrinL. SchiffrinL. SchifirinL. SchifrinL. SchifringL. SchifriniL. SchifrioL. SchihrinL. SchilfrinL. ShiffrinL. ShifrinL.SchiffrenL.SchifrinLala SchifrinLallo SchiffrinLallo SchifrinLaloLalo Boris SchifrinLalo ChiffrinLalo ChifrinLalo GriffinLalo N ShifrinLalo SchafrinLalo SchibrinLalo SchiffrenLalo SchiffrimLalo SchiffrinLalo SchifinLalo Schifrin y Su Piano TropicalLalo SchifriniLalo SchriffinLalo SchrifinLalo SchrifrinLalo ShiffranLalo ShiffrinLalo ShifnnLalo ShifrinLalow SchifrinLaro SchifrinLula SelfieldSchefrinSchiffinSchiffrinSchifrinSchifrin LaloSchifrin, LaloSchisrinSchriffinSchriffrinSchrifinShiffrinShifrimShifrinShrifrinl. SchifrinЛало Шифринラロシフリンラロ・シフリンDizzy Gillespie And His OrchestraDizzy Gillespie Big BandDizzy Gillespie QuintetLalo Schifrin & OrchestraHermanosEddie Warner et sa musique tropicaleLalo Schifrin SextetAstor Piazzolla, Su Bandoneon y Sus CuerdasColeman Hawkins & Friends + +23584Andy SpenceLondon-based music producer who has, over the past ten years, produced several albums and songs as part of, or in conjunction with, [a8676], [a3929], [a1076] and [a259482]. He has remixed songs for [a54650], [a26647], [a93383] and [a4820]'s [a3212]. His music has been used in the films, Swordfish, The Fast and the Furious, Sex and the City and Queer As Folk. He has worked on a couple of short films and done some TV work but Dreaming Lhasa is his first feature film as composer.Needs Votehttps://www.facebook.com/andyjspenceA SpenceA. SpenceA.SpenceAndyAndy Spence (NYPC)SpenceAndy FreaknikFreakniksOrganic AudioReoffendersNew Young Pony ClubThe Florida KeysFumi (30) + +23755Miles DavisMiles Dewey Davis IIITrumpeter, bandleader, and composer +Born May 26, 1926 in Alton, Illinois, USA, died September 28, 1991 in Santa Monica, California, USA (aged 65) + +One of the most important figures in jazz history, Davis adopted multiple musical directions in a five-decade career that kept him at the forefront of many major stylistic developments in jazz. His album "[m=5460]" (1959) is the highest selling jazz album ever with over five million copies sold. + +Miles settled in New York City to study at Juilliard School. He made his professional debut as a member of [a272028] from 1944 to 1948. In 1948, Davis began to found his own ensembles. At that time, he met [a255137], who contributed to [a497768]'s scores and arrangements. The dozen sides they recorded in 1949-50 were eventually assembled as the LP "[m=62308]" (1957), with Davis and Evans working together again from 1957 on further projects. + +Miles Davis was prominent in the creation of the 'Hard Bop' style in the mid-1950s (his first regular quintet featured [a97545]), and the "time, no changes" approach in his second quintet a decade later. In the late 1960s, he introduced electronic instruments and rock and funk rhythms in his music. Around 1975, he went on a hiatus over health and personal problems, re-emerging in 1980. + +He married dancer/actress [a7671712] on December 12, 1959; the couple divorced in 1968. He then married singer [a1076460] in September 1968; they divorced in 1970. He then married actress [a6279083] on November 26, 1981; they divorced in 1989. Father of [a680784] and [a1493787]. Uncle of [a279708] (Jr). + +Inducted into Rock And Roll Hall of Fame in 2006 (Performer). + +Winner of eight Grammy Awards: +- Best Jazz Composition Of More Than Five Minutes Duration for Sketches Of Spain on [m=48172] +- Best Jazz Performance - Large Group Or Soloist With Large Group for [m=8260] +- Best Jazz Instrumental Performance, Soloist for [m=65130] +- Best Jazz Instrumental Performance, Soloist for [m=63355] +- Best Jazz Instrumental Performance, Big Band for [m=62288] +- Best Jazz Instrumental Performance, Soloist (On A Jazz Recording) for [m=62288] +- Best R&B Instrumental Performance for [m=62359] +- Best Large Jazz Ensemble Performance for [m=188032]Needs Votehttps://www.milesdavis.com/https://myspace.com/milesdavishttps://www.facebook.com/MilesDavishttps://x.com/milesdavishttps://www.youtube.com/user/MilesDavisVEVOhttps://soundcloud.com/milesdavisofficialhttps://www.setlist.fm/setlists/miles-davis-3d6b58b.htmlhttps://genius.com/artists/Miles-davishttps://miles-beyond.com/https://www.themusicofmiles.com/https://www.kind-of-blue.de/https://www.plosin.com/milesahead/https://www.thelastmiles.com/https://en.wikipedia.org/wiki/Miles_Davishttps://www.jazzdisco.org/miles-davis/https://www.whosampled.com/Miles-Davis/https://musicianbio.org/miles-davis/https://www.biography.com/musician/miles-davishttps://www.musicianguide.com/biographies/1608001102/Miles-Davis.htmlhttps://www.famousbirthdays.com/people/miles-davis.htmlhttps://www.notablebiographies.com/Co-Da/Davis-Miles.htmlhttps://www.geni.com/people/Miles-Davis/6000000042514521966https://whatgear.com/artist/miles-davishttps://www.grammy.com/grammys/artists/miles-davis/11305https://www.imdb.com/name/nm0002537/https://www.allmusic.com/artist/miles-davis-mn0000423829https://www.progarchives.com/artist.asp?id=3906https://www.jazzmusicarchives.com/artist/miles-davis/?ac=miles%20davisD. MilesDavidDavid MilesDaviesDavisDavis & MilesM DavisM. DacisM. DavidM. DavieM. DaviesM. DavisM.D.M.DavidM.DavisMile DavisMilesMiles AheadMiles D.Miles D. DavisMiles DavesMiles DaviesMiles Davis BandMiles Dewey Davis IIIMiles Dewey Davis, IIIMiles DorisMiles SavisMilesdavisMilles DavisМ. ДевисМ. ДэвисМ. ДэйвисМайлз ДейвисМайлз ДэвисМайлз ДэйвисМайлс ДейвисМайлс Дэвисמיילס דייויסマイルス・ディビス マイルス・デイビスマイルス・デイヴィスマイルス・デビスマイルス・デヴィスマイルズ・デイビス邁爾士戴維斯Cleo HenryW. ProcessGil Evans And His OrchestraArtists United Against ApartheidThe Miles Davis SextetThe Miles Davis QuintetMiles Davis All StarsThe Charlie Parker SeptetThe Charlie Parker All-StarsThe Charlie Parker SextetThe Charlie Parker QuintetThe Cannonball Adderley QuintetMiles Davis And His OrchestraMetronome All StarsColeman Hawkins All Star BandCharlie Parker's Re-BoppersBilly Eckstine And His OrchestraCharlie Parker And His OrchestraTadd Dameron And His OrchestraBenny Carter And His OrchestraLee Konitz SextetGeorge Treadwell And His All StarsThe Miles Davis NonetSonny Rollins QuartetThe Miles Davis QuartetMiles Davis And His BandMiles Davis-Tadd Dameron QuintetColeman Hawkins All StarsMiles Davis + 19Miles Davis & His Tuba BandMiles Davis SeptetMiles Davis GroupMiles Davis OctetThe Miles Davis EnsembleBirdland All-StarsMiles Davis And His Cool Wailers + +23825Annie LennoxAnn Griselda LennoxScottish singer, songwriter, political activist and philanthropist, born December 25, 1954 in Aberdeen, Aberdeenshire, Scotland, UK. +After achieving moderate success in the late 1970s as part of the new wave band [a=The Tourists], she and band mate [a=David A. Stewart] went on to achieve major international success in the 1980s as [a=Eurythmics]. She embarked on a solo career in 1992. +In 2011, Lennox was appointed an Officer of the Order of the British Empire. At the 2015 Ivor Novello Awards, Lennox was made a fellow of the British Academy of Songwriters, Composers and Authors, the first female to receive the honour. +In 2020 Annie Lennox and Dave Stewart were inducted into the Songwriters Hall of Fame and in November 2022 the two (as Eurythmics) were enshrined into the Rock and Roll Hall of Fame.Needs Votehttps://www.annielennox.com/https://www.facebook.com/annielennox/https://www.instagram.com/officialannielennox/https://www.youtube.com/@annielennoxhttps://www.imdb.com/name/nm0005142/https://en.wikipedia.org/wiki/Annie_LennoxA LennoxA. LennoxA. LenoxA.LennoxAnn LennoxAnn LenoxAnn lennoxAnneAnni LenoxAnnieAnnie LenoxAnnie PennoxAnnie StewartAnnie. LennoxDraculaLennoxLennox An.Lennox AnnLennox, AnnieLenoxА. Ленноксアニー・レノックスアン・レノックス安妮 · 列侬安妮·萊娜克斯安妮蓝妮克丝安妮藍妮克絲애니 레녹스EurythmicsThe TouristsRedbrassThe Catch (2)Various Artists For Children's Promise"46664 The Event" Cast1000 UK Artists + +24084Jez & CharlieJez and Charlie is a dynamic duo of UK Hard Dance DJ's & Producers. They began their DJ careers in Leeds where their foundations were put in place at the infamous Sundissential after-parties. Their style of music is Funky Techno through to Hard, driving Trance/House. By using new technology available to DJ’s, the boys have really been pushing their sound forward with looping, distorting and scratching their way through their sets with seemless mixing. This has resulted in a lively interactive style, gaining respect from top names in the Hard Dance industery and clubbers alike. + +Their wide spectrum of musical tastes is reflected in their production and as a result they have enjoyed successful releases on [l=Tidy Trax], [l=Vicious Circle Recordings], [l=Vacuum Recordings], [l=Sundissential] & [l=Bulletproof Records Limited]. +CorrectJez And CharlieJez N CharlieCharlie LyonsJez Winters + +24085Defective AudioDom SweetenDom is undoubtedly one of the most popular & respected producers in the Hard House /NRG arena. Over the years, he has been involved with a great number of classic tracks & remixes produced under various pseudonyms, most notably his [a=Defective Audio] alias & the longstanding partnership with [a=Superfast Oz] as [a=OD404]. + +Dom and Oz met whilst DJ'ing at gigs in Brighton during the mid 90's. They had similar tastes and both were interested in dabbling with music production, so they acquired some studio equipment and started crafting their art. Very few labels were initially interested and the duo later launched [l=Kaktai Records] in '97 as a platform for their music. + +Dom developed a preference for the studio and has since featured original productions & remixes in a variety of styles on every prominent label within the scene. Apart from his partnership in Kaktai Records, Dom also runs the Hard House / NRG label, [l=Spinball Records] & [l=Battle Jaxx] which was an outlet for his Funky Hard House. + +Since mid 2004, Dom has managed to escape [i]Studio 404[/i] long enough for a few very select DJ appearances as well as [i]OD404 Live[/i] shows with Oz. +Needs Votehttp://www.404studio.comhttps://www.facebook.com/defectiveaudio/Defctive AudioBase GraffitiD.S.P. (2)Tomcat (2)Dom SweetenEl DurangozFreeflow 45Dominguez FunkJaffa RamakinDektronik DomThe Spider Trax Files404Studio + +25284Patti AustinPatricia AustinAmerican Pop, R&B and Jazz singer and background vocalist born August 10, 1950 in New York. +Her father, Gordon, was a big band trombonist. +Debuted at Harlem's Apollo Theater at age four. Signed to a record contract with RCA at age five. +By the late 1960's was a prolific session and commercial jingle singer. +In the 1988 movie Tucker. Charted 20 R&B hits from 1969-91. + +Patti is the god-daughter to [a=Quincy Jones].Needs Votehttps://www.pattiaustin.com/https://myspace.com/pattiaustinmusichttps://en.wikipedia.org/wiki/Patti_AustinAustinP AustinP. AustinP.AustinPat AustinPati AustinPatricia AustinPatt AustinPattaPattiPatti AustenPatty AustinПати Остинパティ・オースティンパティー・オースティン佩蒂奧斯汀Andraé Crouch & All-Star ChoirArtists For Haiti + +25316F1Paul KingCorrectTraumaPaul KingFormat OneThe Project (2)Control FreakzF-One + +25320Pete WardmanUK Hard House DJ & Producer. He also owned the Unit 2 record shop in London. Had his own show on Kiss FM and was one of the resident DJs at Trade.Needs VoteP. WardmanPlastic GangstersRampant WeedWardman & Fisher + +25830Pants & CorsetPants & Corset consist of UK Hard House producers, [url=http://www.discogs.com/artist/Chris+B+(4)]Chris Brown[/url] & [a=Paul King]. The Pants & Corset project has seen them release several white label reworks of classic Hard Dance tracks as well as a host of remixes for various reputable labels.CorrectPants & CorsetsPants 'N' CorsetPants 'n' CorsetPants + CorsetPants And CorsetPants And CorsettePants En CorsetPaul KingChris B (4) + +25831Tidy BoysUK Hard House DJ/producers based in Northampton, UK. Founded the [l=Tidy Trax] brand in 1995 and later [l=Ideal (8)] in 2013.Needs Votehttps://soundcloud.com/tidy-boyshttps://www.facebook.com/TheTidyBoyshttps://twitter.com/AmadeusMozarthttp://www.youtube.com/user/TIDYBOYSTVThe Tidy BoysTidy Boys, TheTidy BoyzScooper & Sticks2InATentThe HandbaggersBlue Orange2 In A TankThe NRG TwinsThe Bucking BroncosAndy PicklesAmadeus Mozart + +25832Paul JanesPaul Andrew JanesPaul Janes is a legendary UK Hard House Producer, Remixer & Engineer. He has had a heavy hand in the makings of today's Hard Dance scene. He has recorded under many pseudonyms for labels including [l=Positiva], [l=Data Records], [l=Tidy Trax], [l=Untidy Trax], [l=Nukleuz], [l=Vicious Circle Recordings], [l=Tripoli Trax], [l=Elasticman Records], [l=Nebula], [l=Bulletproof Records], [l=Recharge], [l=Frantic] and [l=Overdose Records] to name a few. + +2005 saw the launch of his own imprint [l=Hardasfunk! Recordings] and 2006 sees a partnership with DJ [a=Ilogik] to form [l=Elasticman Platinum]. +Needs Votehttps://www.facebook.com/Pauls-Hard-House-50165437052https://soundcloud.com/hardhousehttps://hardhouse.bandcamp.com/https://pauljanes.bandcamp.com/JamesJanesP JanesP. JamesP. JanesP.JanesPaulPaul JamesPaul JonesRed Hand GangMajesticThe Red Hand GangGround ZeroHouserockersEldon TyrellUntidy DJ'sLexaUK Gold (2)HyperlogicLost WitnessUntidy DubsDisposable Disco DubsLunn & JanesTerrance & PhillipThe Lost BoyThe Eden ProjectS.P.P.J.A.P.A. + +26657Base GraffitiDom SweetenDom is undoubtedly one of the most popular & respected producers in the Hard House /NRG arena. Over the years, he has been involved with a great number of classic tracks & remixes produced under various pseudonyms, most notably his [a=Defective Audio] alias & the longstanding partnership with [a=Superfast Oz] as [a=OD404]. + +Dom and Oz met whilst DJ'ing at gigs in Brighton during the mid 90's. They had similar tastes and both were interested in dabbling with music production, so they acquired some studio equipment and started crafting their art. Very few labels were initially interested and the duo later launched [l=Kaktai Records] in '97 as a platform for their music. + +Dom developed a preference for the studio and has since featured original productions & remixes in a variety of styles on every prominent label within the scene. Apart from his partnership in Kaktai Records, Dom also runs the Hard House / NRG label, [l=Spinball Records] & [l=Battle Jaxx] which was an outlet for his Funky Hard House. + +Since mid 2004, Dom has managed to escape [i]Studio 404[/i] long enough for a few very select DJ appearances as well as [i]OD404 Live[/i] shows with Oz. +Needs Votehttp://www.404studio.comBase GraffittiBase GrafittiDefective AudioD.S.P. (2)Tomcat (2)Dom SweetenEl DurangozFreeflow 45Dominguez FunkJaffa RamakinDektronik DomThe Spider Trax Files404Studio + +26955John CageJohn Milton Cage, Jr.John Cage (born September 5, 1912, Los Angeles, California, USA - died August 12, 1992, New York City, New York, USA) was an American composer, music theorist, writer, philosopher, and artist. He is best known and lauded as a pioneer of post-war avant-garde composition. + +He left Pomona College early to travel in Europe (1930-31), then studied with [a174100] in New York (1933-4) and [a465983] in Los Angeles (1934): his first published compositions, in a rigorous atonal system of his own, date from this period. In 1937 he moved to Seattle to work as a dance accompanist, and there in 1938 he founded a percussion orchestra; his music now concerned with filling units of time with ostinatos (First Construction in Metal, 1939). He also began to use electronic devices (variable-speed turntables in Imaginary Landscape n.1, 1939) and invented the 'prepared piano', which involves placing a variety of objects between the strings of a grand piano in order to create an effective percussion orchestra under the control of two hands. + +He moved to San Francisco in 1939, to Chicago in 1941 and back to New York in 1942, all the time writing music for dance companies (notably for [a560259] with whom he formed a lifelong relationship), nearly always for prepared piano or percussion ensemble. There were also major concert works for the new instrument: A Book of Music (1944) and Three Dances (1945) for two prepared pianos, and the Sonatas and Interludes (1948) for one. During this period Cage became interested in Eastern philosophies, especially in Zen. + +Working to remove creative choice from composition, he used coin tosses to determine events (Music of Changes for piano, 1951), wrote for 12 radios (Imaginary Landscape n.4, also 1951) and introduced other indeterminate techniques. His 4'33" (1952) has no composed sound -- only that of the environment in which it is performed; the Concert for Piano and Orchestra (1958) is an encyclopedia of indeterminate notations. Yet other works show his growing interest in the theatre of musical performance (Water Music, 1952, for pianist with a variety of non-standard equipment) and in electronics (Imaginary Landscape n.5 for randomly mixed recordings, 1952; Cartridge Music for small sounds amplified in live performance, 1960), culminating in various large-scale events staged as jamborees of haphazardness (HPSCHD for harpsichords, tapes etc, 1969). The later output is various, including indeterminate works, others fully notated within a very limited range of material, and pieces for natural resources (plants, shells). + +Cage appeared widely in Europe and the USA as a lecturer and performer, having an enormous influence on younger musicians and artists. + +He was married to [a927521] from 1935 until their divorce in 1945.Needs Votehttps://johncage.org/https://www.facebook.com/pg/johncagetrust/https://x.com/johncagetrusthttps://instagram.com/johncagetrusthttps://en.wikipedia.org/wiki/John_Cagehttps://www.imdb.com/name/nm0128509/https://www.sterneck.net/john-cage/https://www.rockzirkus.de/blog/2020/10/john-cage-organ%c2%b2-aslsp-klingende-orte-1/https://www.music-info-net.com/pro/klang-orte/2478423_klingende-orte-john-cage-organ2-aslsp-halberstadt-deCageJ. CageJ.CageJCJohn John CageJohnny CageДжон Кейджジョン・ケージ + +27518Elvis PresleyElvis Aaron PresleyAmerican singer, born 8 January 1935 in East Tupelo, Mississippi, USA, died 16 August 1977 in Memphis, Tennessee, USA (aged 42). + +He is one of the most celebrated and influential musicians of the 20th century. Commercially successful in many genres, including rock 'n' roll, pop, country and gospel, he is one of the best-selling music artists in the history of recorded music. He won three Grammys, also receiving the Grammy Lifetime Achievement Award at age 36, and has been inducted into a.o. Rock and Roll Hall of Fame, Country Music Hall of Fame, Rockabilly Hall of Fame and Gospel Hall of Fame. +He is often referred to as "The King of Rock and Roll", or simply, "The King". +His parents were [a3169010] and [a3169011] +Father of [a=Lisa Marie Presley], daughter from his marriage to [a3835325] (1967 to 1973). Distant cousin of [a2343059] (their grandmothers were sisters).Correcthttps://www.britannica.com/biography/Elvis-Presleyhttps://www.elvis-collectors.com/https://www.elvisoncd.com/https://www.elvisrecords.com/https://www.elvisthemusic.com/https://www.elvisukvinyl.co.uk/https://www.imdb.com/name/nm0000062/https://www.keithflynn.com/https://en.wikipedia.org/wiki/Elvis_Presleyhttps://musicbrainz.org/artist/01809552-4f87-45b0-afff-2c6f0730a3behttps://www.allmusic.com/artist/elvis-presley-mn0000180228"Elvis Presley"'King' ElvisAaron P.Aaron PresleyAl PriceleyBresleyE PresleyE. PreslayE. PresleyE. PreslyE. PresslyE. プレスリーE.A. PresleyE.PresleyEAPELVISEPresleyElElv. PresleyElv1sElvisElvis "The King" PresleyElvis A. PresleyElvis Aaron PresleyElvis Aron PresleyElvis BresleyElvis P.Elvis PleslyElvis Pr sleyElvis PreslElvis PreslayElvis Presley '56Elvis Presley E La Sua ChitarraElvis PreslyElvis PresreyElvis PressleyElvis PriesleyElvis!ElvisomElwis PresleyEvis PresleyGe. PresleyL. PresleyPerlyPesleyPrelseyPreselyPresleyPresley E.Presley ElvisPresley, EPresley, E.Presley, ElvisPreslyPressleyPressley, Elvis A.PrestleyStars On CDViva ElvisЕлвис ПреслиЕлвис ПрислиЕлвіс ПресліКороль ЭлвисЭ. ПреслиЭлвисЭлвис ПреслиЭлвіс Прэсьліאלביסאלביס פרסליפרסליエルビスプレスリーエルビス・プレスリーエルヴィス・ブレスリーエルヴィス・プレスリーエルヴィス・プレスリー = Elvis Presleyエルヴィス・プレスリー・プレスリールヴィ ス・プレスリー唄)エルヴィス・プレスリー普雷斯利猫王艾爾維斯 · 普來斯利艾爾維斯• 普來斯利貓王貓王艾維斯엘비스엘비스 프레슬리/エルヴィメ・プレスリThe King (13)Tigerman (2)Lucky Jackson (2)Lonnie BealeThe Guv'nerThe Hillbilly CatVince Everett (5)The Million Dollar QuartetThe Blue Moon Boys (2)Elvis And Band + +27519The Philadelphia Orchestra[b]For chorus credit use [a2370446].[/b] + +American symphony orchestra based at the [l=Kimmel Center] for the Performing Arts in Philadelphia, Pennsylvania. It is one of the "Big Five" US orchestras. + +The orchestra was founded in 1900 by [a=Fritz Scheel], who also acted as its first conductor. In 1907, Karl Pohlig became music director and served until the orchestra cancelled his contract. + +[a=Leopold Stokowski] became music director in 1912 and brought the orchestra to national prominence. Under his guidance, the orchestra gained a reputation for virtuosity, and developed what is known as the "Philadelphia Sound". In 1917 Stokowski lead the Orchestra in its first sound recording for the [l=Victor Talking Machine Co.] Philadelphia became the first orchestra to make an electrical recording in April 1925, with [a456926]' Danse Macabre. Later, in 1926, [l=Victor] began recording the Orchestra at [url=https://www.discogs.com/label/447400-Academy-Of-Music-Philadelphia]The Academy of Music[/url] (the home of the Philadelphia Orchestra until 2001). Stokowski led the ensemble in experimental long-playing, high-fidelity, and even stereophonic sessions in the early 1930s for [l=RCA Victor] and [l=Bell Laboratories] ([l=Bell Labs, Murray Hill, NJ]). Stowowski and the orchestra recorded the soundtrack for [url=https://www.discogs.com/Leopold-Stokowski-With-The-Philadelphia-Orchestra-Walt-Disneys-Fantasia/master/114303]Walt Disney's Fantasia[/url] in multi-track stereophonic sound in 1939-40. Stokowski left the orchestra in 1941, and did not return as a guest conductor for nearly 20 years. + + In 1936 [a=Eugene Ormandy] was appointed co-conductor with Stokowski and was given the title of music director two years later in 1938. He remained as music director until 1980, after which he became Conductor Laureate. Ormandy conducted many of the orchestra's best-known recordings, remaining with [l=RCA Victor] through 1942. Following a settlement of a recording ban imposed by the American Federation of Musicians, the Orchestra joined [l=Columbia] Records ([l=Columbia Masterworks]) in 1944. The orchestra returned to RCA Victor in 1968 and made its first digital recording, Bartók's Concerto for Orchestra, for RCA in 1979. The Orchestra has also recorded for [l=EMI] and [l=Teldec]. Ormandy took the orchestra on its historic 1973 tour of the People's Republic of China, where it was the first Western orchestra to visit that country in many decades. + +Upon the retirement of Eugene Ormandy, [a=Riccardo Muti] became the fifth music director of The Philadelphia Orchestra from 1980 through 1992. Muti's recordings with the orchestra included the symphonies of Beethoven, Brahms, and Scriabin, for the [l=EMI] and [l=Philips] labels. + +[a=Wolfgang Sawallisch] succeeded Riccardo Muti as the sixth music director from 1993 to 2003, and he was named Conductor Laureate, and held the title until his death in 2013. Sawallisch made a number of recordings with the orchestra for [l=EMI], however, the orchestra lost its recording contract with EMI during this time, which led to a musicians' strike in 1996. + +In January 2001, [a=Christoph Eschenbach] was announced as the Orchestra’s seventh music director; his tenure began with the 2003–2004 season. In December 2001, The Philadelphia Orchestra performed inaugural concerts in its new home at the [l=Kimmel Center]. In May 2005, the Orchestra announced a three-year recording partnership with the Finnish label [l=Ondine], the Orchestra's first recording contract in 10 years. In October 2006, Eschenbach and the orchestra announced the conclusion of his tenure as music director in 2008, and [a=Charles Dutoit] began a four-year tenure as chief conductor of The Philadelphia Orchestra. In June 2010, [a=Yannick Nézet-Séguin] was appointed Music Director Designate, and in 2012, he was appointed music director, succeeding Dutoit, who subsequently was named conductor laureate of the orchestra.Needs Votehttps://en.wikipedia.org/wiki/Philadelphia_Orchestrahttps://www.philorch.org/https://philadelphiaencyclopedia.org/archive/philadelphia-orchestra-2/https://www.naxos.com/Bio/OrchestraEnsemble/Philadelphia_Orchestra/34815https://www.bach-cantatas.com/Bio/Philadelphia-Orchestra.htmhttps://www.youtube.com/channel/UCFDAPHp97JRPFNT-CnTwKcghttps://www.x.com/philorchhttps://www.facebook.com/PhilOrchhttps://www.instagram.com/philorchhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102904/Philadelphia_OrchestraComponenti L'orchestra Di FiladelfiaDas Philadelphia OrchesterDas Philadelphia-OrchesterDas Philadelphia-OrchestraFiladefský OrchestrFiladelfijski OrkestarFiladelfijski Simfonijski OrkestarFiladelfskáFiladelfský OrchestrGabriel FauréGrande Orchestra SinfonicaHet Philadelphia OrchestraHet Philadelphia OrkestJoaquin RodrigoL' Orchestra Di FiladelfiaL'Orch. Sinfonica Di FiladelfiaL'Orchestra Di FiladelfiaL'Orchestre Symphonique De PhiladelphieL'Orchestre Symphonique De PhiladelphieL'orchestre De PhiladelphieLa Orq. Sinfonica De FiladelfiaLa Orquesta De FiladelfiaLa Orquesta De FladelfiaLa Orquesta Sinfonica De FiladelfiaLa Orquesta Sinfónica de FiladelfiaLa Orquesta de FiladelfiaLa Orquesta de PhiladelphiaLa Orquestra de PhiladelphiaMaurice RavelMember Of Philadelphia OrchestraMembers OF The Philadelphia OrchestraMembers Of Philadelphia OrchestraMembers Of Philadelphia Philharmonic OrchestraMembers Of The Philadelphia OrchestraMembres De L'Orchestre De PhiladelphieMembres de L'Orchestre de PhiladelphieMembres de l'Orchestre de PhiladelphieMembri Della Orchestra Di FiladelfiaMembros Da Orquestra De FiladelfiaMembros Da Orquestra De FiladélfiaMietglieder Des Philadelphia OrchestersMitglieder Des Philadelphia-OrchestersNew York PhilharmonicOrch. Symphonique De PhiladelphieOrchestra DI FiladerfiaOrchestra De PhiladelphieOrchestra Di FiladelfiaOrchestra Di PhiladelphiaOrchestra FilarmonicaOrchestra Of PhiladelphiaOrchestra PhiladelphiaOrchestra Sinfonica DI FiladelfiaOrchestra Sinfonica Di FiladelfiaOrchestra Sinfonica di FiladelfiaOrchestra Sinfónica Di FiladelfiaOrchestra de PhiladelphieOrchestra di FiladelfiaOrchestre De PhaladelphieOrchestre De PhiladelphiOrchestre De PhiladelphiaOrchestre De PhiladelphieOrchestre De Philadelphie / Philadelphie OrchesterOrchestre De PhiladelpieOrchestre Philharmonique De PhiladelphieOrchestre Philharmonique de PhiladelphieOrchestre Symphonique De PhiladelphieOrchestre Symphonique de PhiladelphieOrchestre de PhiadelphieOrchestre de PhiladelphieOrchestre de PhilapdelphieOrmandy Philadelphia OrchestraOrq Sinfonica De FiladelfiaOrq. FiladelfiaOrq. de FiladelfiaOrquesta Da FiladefiaOrquesta De FiladefiaOrquesta De FiladelfiaOrquesta De FliadelfiaOrquesta De PhiladelphiaOrquesta FiladelfiaOrquesta Sinfonica De FiladelfiaOrquesta Sinfonica FiladelfiaOrquesta Sinfonica de FiladelfiaOrquesta Sinfónica De FiladelfiaOrquesta Sinfónica de FiladelfiaOrquesta de FiladelfiaOrquestra De FiladelfiaOrquestra De FiladélfiaOrquestra De PhiladelphiaOrquestra Sinfônica De FiladélfiaOrquestra de FiladélfiaPhOPhil. Orch.Phila. Or.Phila. Orch.Philad. Orch.PhiladelphiaPhiladelphia OrchesterPhiladelphia Academy of Music OrchestraPhiladelphia OPhiladelphia Orc.Philadelphia OrchPhiladelphia Orch.Philadelphia Orch. "Pops"Philadelphia OrchesterPhiladelphia OrchestraPhiladelphia Orchestra "Pops"Philadelphia Orchestra 'Pops'Philadelphia Orchestra PopsPhiladelphia OrchestrraPhiladelphia OrkesternPhiladelphia Sinfonie OrchesterPhiladelphia Sinfonie-OrchesterPhiladelphia Sym. Orch.Philadelphia Symfonie OrkestPhiladelphia Symphonie OrchesterPhiladelphia Symphonie-OrchesterPhiladelphia SymphonyPhiladelphia Symphony Orch.Philadelphia Symphony OrchestraPhiladelphia-OrchesterPhiladelphia-OrchestraPhiladelphia-OrkesteretPhiladelphia-Sinfonie-OrchesterPhiladelphia-Symphonie-OrchesterPhiladelphia-orkesteretPhiladephia OrchestraPhiladephia Symphony OrchestraPhilidelphia OrchestraPhilladelphia OrchesterStrings Of The Philadelphia OrchesteraStrings Of The Philadelphia OrchestraSymphonisches Orchester PhiladelphiaT.S.T. PhiladelphiaThe Fabulous PhiladelphiansThe Phila. Orch.The Philadelphia Or.The Philadelphia Orch.The Philadelphia Orchestra "Pops"The Philadelphia Orchestra And ChorusThe Philadelphia Orchestra OrchestraThe Philadelphia Orchestra PopsThe Philadelphia Symphony OrchestraThe Philadephia Symphony OrchestraThe Philadepphia OrchestraThe Philadèlphia OrchestraThe Philharmonic OrchestraThe Romantic Philadelphia StringsThe Strings Of The Philadelphia OrchestraThe Symphony Orchestra Of PhiladelphiaČlenové Filadelfské FilharmonieОркестрОркестр Под Управлением Ю. ОрмандиОркестр ФиладельфииСимфонический филадельфийский оркестрФиладельфийский ОркестрФиладельфийский Оркестр Ю. ОрмандиФиладельфийский Симфонический ОркестрФиладельфийский орк. п.у. СтоковскогоФиладельфийский оркестрФиладельфийский оркестр*Филадельфиский ОркестрФиладельфиский оркестрЮ. Ормандиתזמורת פילדלפיהフィラデルフィア管弦楽団フィラデル・フィア管弦楽団費城交響樂團費城管弦樂團Warwick Symphony OrchestraThe Robin Hood Dell Orchestra Of PhiladelphiaClaridge Symphony OrchestraJan SavittPaul GershmanMax PollikoffHarry ZaratzianMarcella DeCrayTibor ZeligSamuel MayesJoseph De PasqualeWilliam SchoenRenard EdwardsVirginia HalfmannPaul ShureVictor BayEmmet SargeantJudy GeistBob de PasqualeLeopold StokowskiClement BaroneJuliette KangNoah GellerJoseph SilversteinJames ChambersGilbert JohnsonChristoph EschenbachBernard GarfieldCarlton CooleyAnthony GigliottiJohn De LancieMurray PanitzMason Jones (2)Lucien CaillietRosario BourdonFrank KaderabekWinifred MayesBarbara HaffnerChristopher RexMelvyn BroilesCharles JaffeJeffrey KhanerJeffery KirschenFrank Miller (3)Carrie DennisEfe BaltacigilMax GobermanYuan TungNorman CarolJacob KrachmalnickRobert BloomElsa HilgerDenise TryonJohn MinskerAnshel BrusilowVictor GottliebHolly BlakeJonathan BlumenfeldJoseph AlessiLorne MunroeLouis RosenblattJohn SimonelliCharles VernonAnthony ZungoloEdmund SchuëckerArnold GrossiLuis BiavaLouis LanzaArthur BervHarry GlantzDeborah ReederWilliam McGlaughlinJeffrey CurnowNancy BeanSheppard LehnhoffWayne RapierAlexander HilsbergHoward Wall (2)William KincaidAnthony OrlandoFrancis J. LapitinoYoko TakebeHai-Ye NiCharles RexJean RogisterRoger Scott (2)Frank Sinatra (2)Neil CourtneyMarcel TabuteauGordon PulisHenry Charles SmithM. Dee StewartAbe TorchinskySeymour RosenfeldMarilyn CostelloCharles Griffin (2)Hans KindlerGerald CarlyssGlenn DodsonTyrone BreuningerMeng WangPaul Arnold (9)Michael LudwigClarence KarellaMark GigliottiBenar HeifetzMischa MischakoffEdna PhillipsDavid WetherillBlair BollingerRoger Blackburn (2)Daniel Williams (3)Eric Carlson (2)Richard RantiSol SchoenbachDaniel SaidenbergMichel GusikoffMichelle DjokicMichel PenhaJoseph PepperDavid Madison (2)Loren N. LindWilliam TorelloDavid GruppRichard HarlowNolan E. MillerAdam Unsworth (2)Paul OlefskyMax AronoffHugo KreislerSamuel KraussLing TungSidney CurtissArthur Bennett LipkinLeon FrengutWilliam StokkingErez OferKendall BettsJeffrey LangHoward RattayJames PelleriteOscar ZimmermanFrederick VogelgesangChe-Hung ChenDerek BarnesWilliam GrunerDavid BilgerDonald MontanaroMarcel FaragoJohn WitzmannFred SchraderDonald E. McComasStevens HewittCharles M. MorrisWilliam De PasqualeGeorge GosleePatrick Williams (7)Albert TiptonDaniel BonadeRicardo Morales (2)Milton PrinzHerbert BaumelNitzan HarozWalter OesterreicherSaul CastonGardell SimonsLouis GesenswayJohn KrellMichael StairsBert PhillipsDavyd BoothHerman WeinbergAlfred LennartzMargarita Csonka MontanaroJulius Schulman (2)Richard WoodhamsSamuel CaviezelRachel KuAnna Marie Ahn PetersenCarol JantschElina KalendarevaAlex VeltmanDaniel HanDaniel MatsukawaStephen WyrczynskiHirono OkaJerome WiglerKimberly Fisher (2)Matthew Vaughn (4)John Hood (4)Robert W. EarleyZachary de PueYumi KendallKathryn Picht ReadShelley ShowersJonathan BeilerDmitri LevinHerbert LightBurchard TangElizabeth HainenChoong-Jin ChangBooker RoweKiyoko TakeutiHenry G. ScottDuane RosengardOhad Bar-DavidChristopher DevineyRichard Amoroso (2)Angela Zator NelsonAlbert FilosaHarold Robinson (6)Don S. LiuzziPaul Roby (2)Michael ShahanAngela Anderson (2)Jennifer HaasBoris BalterEmilio GravagnoDavid Kim (7)Herold KleinBarbara GovatosDavid NicastroJennifer MontoneYumi Ninomiya ScottRaoul QuerzeDavid Cramer (2)Paul R. DemersLisa-Beth LambertMiyo CurnowRobert KesselmanRobert CafaroGloria De PasqualeYayoi NumazawaKazuo TokitoPhilip KatesStephane DalschaertJohn KoenMark PeskanovDavid Fay (2)Boris KoutzenKirsten Johnson (2)Sol RudenAnton TorelloSamuel RoensCynthia Koledo DeAlmeidaChristopher Dwyer (2)Ary van LeeuwenThaddeus RichIrvin RosenEliot HeatonP. BianculliPhilippe TondreWilliam Polk (2)Mei-Ching HuangPriscilla Lee (2)Marc RovettiDara MoralesWilla FinckJason DepueBibi BlackJoseph ConyersChristian Gray (2)Anthony PriskErica PeelMuChen HsiehJack Grimm (3)Elizabeth Starr MasoudniaAlfred Doucet + +28005KronosGuy MearnsElectronic dance music producer from Leeds, England +Styles: Trance | Hard Trance | Hard HouseCorrecthttps://www.facebook.com/kronoslikesithardhttp://soundcloud.com/mearnsmusichttp://twitter.com/guymearnshttp://www.youtube.com/mearnsmusichttps://www.facebook.com/guymearnstanjiiGuyverThe Riot BrothersMizukiGuy MearnsMonz (2)UmaroAudio TTAntonio Menez3NDGAM3Forever LucidGr33ndogThink DriftIsi ToledoDavid CorkidiJorge FresquetAndrés Mora + +28091The GeneratorRobert Jan SmitCorrectGeneratorGenerator DJRobert SmitSmiterKcrushed OneLove DoctorCaveman (2)WireheadBlue MastUnawatunaHisenia + +28275George CentenoGeorge CentenoNeeds Votehttp://myspace.com/georgecentenoG. CentenoGeorge Centeno'sThe KlubstalkerThe Sex FiendPsycho (4)The HoodlumsTwo Phunk D-LuxThe Ghetto PimpsHouse O' HolicsMetal ZoneThe Mercenaries + +28497Tamra KeenanTamra Keenan Irish singer/songwriter. Needs Votehttp://tamra.bizhttps://en.wikipedia.org/wiki/Tamra_Keenanhttp://www.myspace.com/tamrakeenanhttps://www.facebook.com/tamrakeenan/T. KeenanTamraBeber & Tamra + +29105Tom WilsonThomas Gormley WilsonBorn: 9th October 1951, Scotland, UK. +Died: 25th March 2004, Edinburgh, Scotland, UK. + +Scottish DJ/Producer/Radio presenter. + +His legendary multi-award winning dance music show - Steppin' Out - started in 1985 and ran for 14 years on Forth FM radio. Due to the success of his show and the Scottish dance music boom, Tom Wilson's Bonus Beats programme aired on Forth FM during the mid 1990's. + +Away from the radio, Tom would be soon in demand as a club DJ too, appearing across the country. He also became a highly respected music producer, including the classic Techno Cat track that gave him a Top 40 UK hit and charted in several European countries. Tom also compiled several compilation releases of his own, namely the Bouncin' Back and Bouncin' Beats series. After a brief spell working at several other Scottish radio stations, including Beat 106 and Real Radio, Tom rejoined Radio Forth in 2003 as head of music for both Forth One and Forth 2 and hosted two weekly shows. + +Tom Wilson died on Thursday 25th March 2004 from a heart attack after a short illness. He will best be remembered for his long time contribution to the Scottish dance music scene + +He was managed by [a=Ian Robertson] who was also the producer on his Steppin' Out record show. + +[a=Craig Wilson (2)] is his son.Needs Votehttp://www.tomdj.co.ukhttp://www.facebook.com/DJTomWilsonhttps://en.wikipedia.org/wiki/Tom_Wilson_(DJ)DJ Tom WilsonDJ WilsonRobertsonT. G. WilsonT. WilsonT.G. WilsonT.WilsonTechno CatThe Tom Wilson ProjecThe Tom Wilson ProjectTon WilsonWilsonWilson, T.Wilson, Tomトム・ウィルソンTechnocatDyme BrothersLiberation (3)Dyme Project + +29376Ann SaundersonAnn Karen Joy SaundersonBorn Ann Nanton, sister of [A=Judy Nanton], married to [a=Kevin Saunderson], mother of [a=Damarii Saunderson] and [a=Dantiez Saunderson]. Born Birmingham, England 1967.Correcthttps://www.facebook.com/profile.php?id=100063593588267http://www.instagram.com/innercitygalhttp://www.instagram.com/thesaundersonfamilyhttp://www.myspace.com/annsaundersonhttp://twitter.com/annsaundersonhttp://en.wikipedia.org/wiki/Ann_SaundersonA SaundersonA SuandersonA. SandersonA. SaundersonA.SaundersonAnnAnn SaudersonAnne SaudersonAnne SaundersonSaundersonSurrealAnn Karen JoyAnn NantonInner CityThe Reese ProjectKaosUnreleased Project (2) + +29602RoccoSven GruhnwaldGerman [b]Hard Trance / Eurodance / "Hands-Up"[/b] artist, DJ and producer. + +For (French) Deep House artist, please consider: [a122932] (with possible ANV) +Needs Votehttp://www.sven-r-g.dehttp://www.dj-rocco.dehttps://www.facebook.com/sven.gruhnwaldhttps://de.wikipedia.org/wiki/Rocco_(Produzent)RocoSveN-R-GSven GruhnwaldMartial HardPussyjuiceAirwalk3r + +29609HouserockersPaul JanesCorrectHouse RockersMajesticThe Red Hand GangGround ZeroPaul JanesEldon TyrellUntidy DJ'sLexaUK Gold (2) + +29956Richard "Groove" HolmesRichard Arnold Jacksonb. May 2, 1931 - Camden, New Jersey +d. June 29, 1991 - St. Louis, Missouri + +American jazz organist. + +Influenced by sax players, like a lot of organ players. He teamed up with Jimmy McGriff for some organ battles on the Groove Merchant label, and recorded for Muse from 1977 to 1989 with, among others, Houston Person and Melvin Sparks. He also recorded some "straight" jazz sessions with Ben Webster, Gene Ammons and Houston Person. +Needs Votehttps://en.wikipedia.org/wiki/Richard_Holmes_(organist)http://theatreorgans.com/grounds/groove/holmes.htmlhttp://www.jazzlists.com/SJ_Richard_Groove_Holmes.htmhttp://www.concordmusicgroup.com/artists/richard-groove-holmes/"Groove" Holmes'Groove' HolmesG. HolmesGroove HolmesGroove HolemsGroove HolmesGrooveHomesHolmesR. G. HolmesR. HolmesR.G. HolmesRichardRichard 'Groove' HolmesRichard Groove HolmesRichard Grooves HolmesRichard Holmes“Groove” HolmesGerald Wilson OrchestraThe Gerald Wilson Big Band + +29958Lou DonaldsonLou A. DonaldsonAmerican jazz saxophonist, composer, band leader and singer +Born: 1st November 1926 Badin, North Carolina, USA +Died: 9th November 2024 Daytona Beach, Florida, USA +Correcthttp://en.wikipedia.org/wiki/Lou_Donaldsonhttps://www.imdb.com/name/nm4262293/https://repertoire.bmi.com/Search/Catalog?num=C4OAjiWq%252byxDaJWRwR2D1Q%253d%253d&cae=7afrOstvajp9LM%252bBVEd7VA%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22donaldson%20lou%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dhttps://repertoire.bmi.com/Search/Catalog?num=csjwE7ICUyeIfFu0m82wMw%253d%253d&cae=YO0HedHMatLb45JzS23DVw%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22donaldson%20lou%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dDonaldonDonaldsonDonalsonL DonaldsonL, DonaldsonL. DonaldsonL.D.L.DonaldsonLDSweet Louルー・ドナルドソンMr. Alligator BoogalooLou Donaldson - Clifford Brown QuintetArt Blakey QuintetMilt Jackson QuintetLou Donaldson QuartetLou Donaldson QuintetHorace Silver QuartetLou Donaldson OrchestraLou Donaldson SextetMilton Jackson And His New GroupJimmy Smith - Lou Donaldson Quartet + +29964Ike QuebecIke Abrams QuebecAmerican jazz tenor saxophonist and producer. Cousin of jazz saxophonist [a264621]. +Born August 17, 1918, Newark, New Jersey. +Died January 16, 1963, New York City, New York (lung cancer).Needs Votehttps://en.wikipedia.org/wiki/Ike_Quebechttps://adp.library.ucsb.edu/names/338686Abrams "Ike" QuebecI QuebecI. QuebecIke QuebeckQuebecQuebécCab Calloway And His OrchestraRoy Eldridge And His OrchestraJonah Jones And His CatsThe Ike Quebec Swing SevenThe Ike Quebec QuintetIke Quebec SwingtetJonah Jones And His OrchestraIke Quebec And His All Stars + +29966Gene HarrisEugene HaireAmerican jazz pianist and keyboard player +born 1 September 1933 in Benton Harbor, Michigan, USA +died 16 January 2000 in Boise, Idaho, USA. + +Father of [a58266]. +Correcthttps://web.archive.org/web/20150511153156/http://www.geneharris.org/https://web.archive.org/web/20150906021722/http://www.jazz.com/encyclopedia/harris-gene-haire-eugenehttps://en.wikipedia.org/wiki/Gene_HarrisC. HarrisE. HaireEddie HarrisEugene HaireG. HaireG. HarrisGene G. HarrisGene HaireGene HarrrisHaireHarrisunknownДж. Харрисジーン・ハリスRay Brown TrioThe Three SoundsThe Gene Harris QuartetThe Gene Harris All Star Big BandThe Gene Harris Trio Plus OneThe Philip Morris SuperbandThe Gene Harris/Scott Hamilton QuintetRay Brown's All StarsThe Gene Harris TrioConcord Jazz All StarsNat Adderley Quartet + +29968Bobby HutchersonRobert HutchersonAmerican jazz vibraphone and marimba player. +Born January 27, 1941, Los Angeles, California, USA +Died August 15, 2016, Montara, California, USA +Nephew of Jazz trumpeter [a2913150].Needs Votehttp://www.myspace.com/bobbyhutchersonhttps://en.wikipedia.org/wiki/Bobby_Hutchersonhttp://www.nytimes.com/2016/08/17/arts/music/bobby-hutcherson-dies-jazz.htmlhttps://www.jazzdisco.org/bobby-hutcherson/catalog/album-index/https://www.bluenote.com/artist/bobby-hutcherson/B. HutchersonB.HutchersonBobbyHutchersonR. HutchersonRobert HutchersonRobert J. HutchersonБ. Хатчерсонボビー・ハッチャソンGerald Wilson OrchestraThe AquariansHarold Land QuintetThe Charles Tolliver QuintetCBS Jazz All-StarsThe New John Handy QuintetTimeless All StarsThe Grachan Moncur QuartetSFJazz CollectiveJoe Henderson QuartetHutcherson-Land QuintetThe New Jazz QuartetThe Grassella Oliphant QuartetThe Super FourBobby Hutcherson QuartetHerbie Hancock Bobby Hutcherson Quartet + +29969Blue MitchellRichard Allen MitchellAmerican jazz trumpet player, composer, band leader +Born March 13, 1930 in Miami, Florida, died May 21, 1979 in Los Angeles, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Blue_Mitchellhttp://bluemitchell.jazzgiants.net/biography/A. MitchellB. MitchellB.MitchellBlueBlue MitchelBlue Mitchell With Strings And BrassBlue MittchellBule MitchellMitchellR. MitchellRichard "Blue" MitchelRichard "Blue" MitchellRichard 'Blue" MitchellRichard 'Blue' MitchellRichard A. MitchellRichard Allen "Blue" MitchellRichard Blue MitchellRichard MitchellRichard “Blue” Mitchellブルー・ミッチェルThe Cannonball Adderley QuintetThe Horace Silver QuintetTadd Dameron And His OrchestraThe NPG OrchestraThe Red Garland QuintetSupersaxEarl Bostic And His OrchestraThe Blue Mitchell QuintetThe Louie Bellson QuintetJimmy McGriff Organ And Blues BandCharlie Rouse QuintetLouie Bellson Big BandRed Prysock And His OrchestraLou Donaldson QuintetThe Night Blooming JazzmenElmo Hope SextetThe Harold Land / Blue Mitchell QuintetBlue Mitchell SextetBlue Mitchell QuartetThe Riverside Jazz StarsThe Blue Mitchell OrchestraSam Jones & Co.The Junior Cook QuintetBill Berry And The LA BandTina Brooks QuintetThe Mitchells (3) + +29970Gerald WilsonGerald Stanley WilsonAmerican trumpet player, arranger, composer & bandleader. +Born September 4, 1918 in Shelby, Mississippi, USA. +Died September 8, 2014 in Los Angeles, California USA. +Father of jazz guitarist [a=Anthony Wilson].Needs Votehttps://en.wikipedia.org/wiki/Gerald_Wilsonhttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/gerald-wilsonhttps://adp.library.ucsb.edu/names/211148G. WilsonG.WilsonGee WilsonGerald 'Chic' WilsonGerald S. WilsonGerald Stanley WilsonGerlad WilsonGerrald WilsonGérald WilsonWilsonWlisonCount Basie OrchestraJimmie Lunceford And His OrchestraGerald Wilson OrchestraBenny Carter And His OrchestraLes Hite And His OrchestraJohnny Otis And His OrchestraIke Carpenter And His OrchestraHoward McGhee And His OrchestraThe Lunceford QuartetLeroy Vinnegar SextetAl Casey And His SextetBuddy Collette QuintetThe Curtis Counce GroupTeddy Edwards SextetHarold Land All-StarsThe Gerald Wilson Big BandGerald Wilson Orchestra of The 80'sTeddy Edwards SeptetNeal Hefti And His Jazz Pops OrchestraBuddy Collette Septet + +29972Jack WilsonJack WilsonAmerican jazz pianist and arranger. +Played with: Roland Kirk, Dinah Washington, Esther Phillips, Richard Davis, Quincy Jones, Sammy Davis Jr., Julie London, Nancy Wilson, Sarah Vaughan and many others. +Born: August 03, 1936 in Chicago, Illinois. +Died: October 05, 2007 in Northport, New York. +Needs VoteJ. WilsonJack Wilson jr.Jack Wilson, Jr.Jack WisonJackie WilsonWilsonジャック・ウィルソンThe Salsoul OrchestraGerald Wilson OrchestraThe Jack Wilson QuartetThe Gerald Wilson Big BandThe Richard Evans TrioThe Clark Terry FiveLes DeMerle SextetJack Wilson Trio + +29973Horace SilverHorace Ward Martin Tavares SilverAmerican jazz pianist, composer and bandleader +Born September 2, 1928, in Norwalk, Connecticut, USA, died June 18, 2014 (age 85), in New Rochelle, New York, USA + +Pioneer of the hard bop style of jazz in the 1950s. Received big break backing [a30486] in 1950 during a club date in Hartford, Connecticut. Soon relocated to New York, and made recording debut for [l281] in 1952. In 1953, with [a=Art Blakey] established a cooperative small group under their joint leadership. Under exclusive contract with Blue Note from the late 1950s until the late 1970s, though some live dates on other labels eventually surfaced, he founded his own label, [l=Silveto Records], in 1980. Recorded for [l1866] and [l26557] in the 1990s, suffered health problems though the decade, made final studio recording for [l5041] in 1998, briefly returning to performing in 2004. Diagnosed with Alzheimer's disease in 2007. Son of [a=John Tavares Silver] (Silva), of Portuguese descent, born in the Cape Verde Islands, and Gertrude Silver, of New Canaan, Connecticut.Needs Votehttps://web.archive.org/web/20230307160756/http://horacesilver.com/home.phphttps://en.wikipedia.org/wiki/Horace_Silverhttps://www.bluenote.com/artist/horace-silver/https://www.britannica.com/biography/Horace-Silverhttps://www.scaruffi.com/jazz/silver.htmlhttps://www.imdb.com/name/nm0798701/https://www.jazzdisco.org/horace-silver/discography/https://content.ucpress.edu/chapters/10278.ch01.pdfhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/343818/Silver_HoraceH SilverH. SilverH. SilversH.SilverHoraceHorace - SilverHorace SilberHorace Silver (Silva)Horace Silver, b Horace Ward Martin Tavares SilvaHorace Ward Martin Tavares Silva Aka "Horace Silver"Horace Ward Martin Tavares Silva aka "Horace Silver"Horace Ward Martin Tavares SilverHoracy SilverHorance SilverHorece SilverMartin Tavares SilverR. SilverSilerSilverSilver HoraceSilversSiverГ. СильверС. ХоресХ. СилверХ. СильверХ.СильверХорас СилверХорас СилвърХорес Силверホレス・シルバーホレス・シルヴァーホーレス・シルヴァーThe Miles Davis SextetArt Blakey & The Jazz MessengersThe Miles Davis QuintetMiles Davis All StarsThe Horace Silver QuintetKenny Dorham OctetQuincy Jones' All Star Big BandColeman Hawkins QuintetStan Getz QuartetStan Getz QuintetLester Young And His BandArt Blakey QuintetThe Modern Jazz GiantsThe Horace Silver TrioPaul Chambers SextetArt Blakey QuartetThe Milt Jackson QuartetThe Miles Davis QuartetThe Hank Mobley QuintetThe J.J. Johnson QuintetThe Art Farmer SeptetMilt Jackson SextetNat Adderley QuintetHank Mobley SextetLou Donaldson QuartetThe Horace Silver SextetArt Farmer QuintetJohnny Richards And His OrchestraLou Donaldson QuintetHorace Silver QuartetHank Mobley QuartetHank Mobley And His All StarsClark Terry SeptetKenny Clarke SeptetTerry Gibbs And His Orchestra (2)Art Farmer Gigi Gryce QuintetKenny Dorham NonetLester Young All-Stars Quintet + +29974Stanley TurrentineStanley William TurrentineAmerican jazz/soul-jazz saxophonist +Born 5 April 1934 in Pittsburgh, Pennsylvania, USA, died 11 September 2000 in New York City, New York, USA (aged 66) +Married to jazz organist [a=Shirley Scott] for about a decade (divorced 1971)Needs Votehttps://en.wikipedia.org/wiki/Stanley_Turrentinehttps://rateyourmusic.com/artist/stanley-turrentinehttps://www.imdb.com/name/nm1743782/https://www.allmusic.com/artist/stanley-turrentine-mn0000012644https://www.jazzmusicarchives.com/artist/stanley-turrentine/?ac=stanleyC. TurrentineS TurrentineS. TurntineS. TurrentineS. TurretineS.TurrentineSt. TurrentineStan TurrentineStanley TStanley TuirentineStanley TurentineStanley Turrentine / スタンレー・タレンタインStanly TurrentineTurrentineスタンレー・タレンタインStan TurnerThe Horace Silver QuintetCTI All-StarsThe Gene Harris Trio Plus OneMax Roach QuintetMax Roach Plus FourMax Roach SextetHorace Parlan QuintetStanley Turrentine QuartetTurrentine Brothers + +29976Lee MorganEdward Lee MorganLee Morgan (born July 10, 1938, Philadelphia, Pennsylvania, USA - died February 19, 1972, New York City, New York, USA) was an American jazz trumpeter, mainly associated with hard bop. He is known for his work with [a64694], [a97545], and [a262128], as well as his 1963 album "The Sidewinder". He was fatally shot in 1972.Needs Votehttps://en.wikipedia.org/wiki/Lee_Morganhttps://rateyourmusic.com/artist/lee-morganhttps://www.imdb.com/name/nm1504323/https://www.jazzdisco.org/lee-morgan/catalog/Edward Lee MorganL MorganL. E. MorganL. MorganL.MorganLee MorgenLes MorganMorganЛи Морганリー・モーガンArt Blakey & The Jazz MessengersDizzy Gillespie Big BandThe John Coltrane SextetThe Lee Morgan SextetThe Hank Mobley QuintetHank Mobley SextetLee Morgan QuintetThe Curtis Fuller SextetThe Quincy Jones Big BandBenny Golson And The PhiladelphiansThe Young Lions (7)Lee Morgan - Clifford Jordan QuintetCharlie Persip's Jazz StatesmenTina Brooks QuintetArt Farmer TentetErnie Henry OctetWayne Shorter QuintetJohnny Griffin Septet + +29977Art BlakeyArthur Blakey (Abdullah Ibn Buhaina)American jazz drummer, composer and leader +Born October 11, 1919 in Pittsburgh, Pennsylvania, USA, died October 16, 1990 in New York City, New York, USA + +He was best known as leader of [url=http://www.discogs.com/artist/262128-Art-Blakey-The-Jazz-Messengers]The Jazz Messengers[/url]. +Blakey was the foster son in a Seventh Day Adventist Family, learning the piano as he learned the Bible, mastering both at an early age. In the early 1930's, while gigging at the Democratic Club in Pittsburgh, his piano career came to an abrupt end when he was ordered onto the drums to make way for pianist [a262816]. This incident was apparently at the gunpoint of the nightclub's owner, as Blakey often recalled. This had the side effect of Blakey coming under the tutelage of drummer and bandleader [a294491], serving as Webb's valet. Returning to Pittsburgh in 1937, he formed his own band, backing pianist [a59405]. In 1939, he joined and toured with [a307323] for 3 years, followed by a year gigging at Boston's Tic Toc club. Then, working for [a311744], he played with the performed with [a75617], [a64694] and [a8284]. When Eckstine disbanded his group in 1947, Blakey organized the Seventeen Messengers, a rehearsal band, and recorded with an octet called the Jazz Messengers, the first of his many groups bearing this name. In 1948, he visited Africa where he learned polyrhythmic drumming and was introduced to Islam, taking the name Abdullah Ibn Buhaina. +The early 1950's, saw him performing and broadcasting with such musicians as [a23755], [a259082], and [a29973]. Blakey and Silver connected and formed the [url=http://www.discogs.com/artist/262128-Art-Blakey-The-Jazz-Messengers]Jazz Messengers[/url]. This band soon evolved into [a262128], in which Blakey was the sole leader with varying personnel, remaining his principal group until his death. From 1947 to 1972, he recorded intermittently with [a145256]. +Blakey was a major figure in modern jazz and a significant stylist on drums, as well as a discoverer of musicians for over more than three decades. +Uncle of [a29068] aka [a11].Needs Votehttp://artblakey.com/https://artblakey.bandcamp.com/https://en.wikipedia.org/wiki/Art_Blakeyhttps://www.drummerworld.com/drummers/Art_Blakey.htmlhttps://www.britannica.com/biography/Art-Blakeyhttps://www.arts.gov/honors/jazz/art-blakeyhttps://www.scaruffi.com/jazz/blakey.htmlhttps://www.imdb.com/name/nm0086845/https://www.jazzdisco.org/art-blakey/https://www.bluenote.com/artist/art-blakey/https://adp.library.ucsb.edu/names/304620A. BlakeyA.BlakeyABArt BlackeyArt BlakeArt BlakelyArt Blakey 2Art Blakey A/K/A Abdullah Ibn BuchainaArt Blakey A/K/A Abdullah Ibn BuhainaArt Blakey And His RhythmArt BlankeyArt BrakeyArt. BlakeyBlacksBlakeyThe Jazz MessengersА. БлейкиАрт БлэйкиАрт Блэкиアート・ブレイキーアート・ブレーキ―Abdullah BuhainaGil Evans And His OrchestraThe Art Blakey Percussion EnsembleThe Miles Davis SextetArt Blakey & The Jazz MessengersThelonious Monk SeptetThe Cannonball Adderley QuintetArt Blakey & The Afro-Drum EnsembleFats Navarro QuintetThe Thelonious Monk QuintetKenny Dorham OctetBilly Eckstine And His OrchestraQuincy Jones' All Star Big BandSonny Stitt QuartetDizzy Gillespie SextetIllinois Jacquet And His OrchestraColeman Hawkins QuintetPaul Bley TrioDexter Gordon QuintetThelonious Monk SextetSonny Stitt BandZoot Sims QuartetClifford Brown SextetThelonious Monk TrioArt Blakey QuintetArt Blakey's Big BandSonny Rollins QuartetThe Horace Silver TrioArt Blakey QuartetThe Miles Davis QuartetThe Hank Mobley QuintetThe Kenny Drew TrioMiles Davis And His BandEast Coast All-StarsSonny Rollins QuintetJames Moody And His ModernistsWalter Gil Fuller And His OrchestraLee Morgan QuintetBuddy DeFranco QuartetLou Donaldson QuintetThe Gigi Gryce QuartetRandy Weston TrioThe Quincy Jones Big BandElmo Hope QuintetJulius Watkins SextetThe Giants Of Jazz (2)Hank Mobley QuartetBennie Green SeptetWoody Shaw QuintetLou Donaldson SextetFats Navarro And His BandHank Mobley And His All StarsBenny Golson QuintetMilton Jackson And His New GroupClark Terry And His OrchestraGil Fuller OrchestraKenny Burrell SeptetBuddy DeFranco And His TrioTina Brooks QuintetArt Blakey's BandMiles Davis And His Cool WailersJohnny Griffin SeptetKenny Dorham NonetFats Navarro Quartet + +29979Wayne ShorterWayne ShorterAmerican jazz saxophonist and composer +Born: 25th August 1933 Newark, New Jersey, USA +Died: 2nd March 2023 Los Angeles, California, USA +Member of three seminal jazz groups of the 20th century: the Jazz Messengers led by [a=Art Blakey], [a=The Miles Davis Quintet] & [a=Weather Report]. He was a long-standing collaborator with [a=Joni Mitchell] and won 11 Grammy awards as well a lifetime achievement Grammy. +Brother of trumpeter [a=Alan Shorter]Needs Votehttps://www.facebook.com/wayneshortermusic/https://wayneshorter.bandcamp.com/https://www.progarchives.com/artist.asp?id=4713https://www.allaboutjazz.com/musicians/wayne-shorterhttps://en.wikipedia.org/wiki/Wayne_Shorterhttps://downbeat.com/news/detail/in-memoriam-wayne-shorter-1933-2023https://www.weatherreportdiscography.org/wayne-shorter-1933-2023/https://www.imdb.com/name/nm0795147/https://www.britannica.com/biography/Wayne-Shorterhttps://www.youtube.com/channel/UC3X4afoYfFCLWw1LTfeLCqAhttps://www.bluenote.com/artist/wayne-shorter/https://www.jazzdisco.org/wayne-shorter/https://www.allmusic.com/artist/wayne-shorter-mn0000250435ShorterW ShorterW, ShorterW. ShorterW. ShorterW.S.W.ShorterWane ShorterWayne ShorteWhayne ShorterWhyne ShortershorterwsУ. ШортерУэйн Шортерウェイン・ショーターWeather ReportGil Evans And His OrchestraBahia BlackArt Blakey & The Jazz MessengersThe Miles Davis QuintetThe V.S.O.P. QuintetWayne Shorter QuartetWayne Shorter BandThe Manhattan ProjectThe Young Lions (7)Buster Williams QuartetWayne Shorter QuintetHerbie Hancock's Super QuartetHerbie Hancock Special Quartet + +29992Bud PowellEarl Rudolph PowellAmerican jazz bop composer and pianist +Born 27 September 1924 in Harlem, New York City, New York, USA, died 31 July 1966 (of pneumonia) in New York City, New York, USA (aged 41) + +Brother of [a=Richie Powell].Needs Votehttp://www.budpowell.com/http://budpowell.jazzgiants.net/https://en.wikipedia.org/wiki/Bud_Powellhttps://www.bluenote.com/artist/bud-powell/https://www.britannica.com/biography/Bud-Powellhttps://www.scaruffi.com/jazz/powell.htmlhttps://budpowell.bandcamp.com/https://www.allmusic.com/artist/bud-powell-mn0000640675"Bud" PowellB PowellB. PowellB.E. PowellB.P.B.PowellB.パウェルB/ PowellBad PowellBill SmithBub PowellBudBud PosellBud PowelBudd PowellD. PowellE. "Bud" PowellE. 'Bud' PowellE. Bud PowellE. PowellE.R. "Bud" PowellEarl "Bud" PowellEarl 'Bud' PowellEarl B. PowellEarl Bud PowellEarl Bud' PowellEarl PowelEarl PowellEarl PowollEarl Rudolph "Bud" PowellEarl Rudolph PowellEarl Rudolph “ Bud ” PowellEdward PowellFullerP. PowellPowelPowellPowell Earl BudPpwellThe Amazing Bud PowellБ. ПауэлБад ПауэллПауэллアメイジング・バド・パウエルバド・パウエルThe Charlie Parker All-StarsThe Quintet Of The YearThe Bud Powell TrioDizzy Gillespie QuintetDon Byas QuartetSonny Stitt QuartetCootie Williams And His OrchestraDexter Gordon QuintetBud Powell's ModernistsSonny Stitt-Bud Powell QuartetThe QuintetThe J.J. Johnson QuintetIdrees Sulieman QuartetDon Byas QuintetJ.J. Johnson's BoppersCharles Mingus SextetFrank Socolow's Duke QuintetBe Bop BoysSonny Stitt All StarsKenny Clarke And His 52nd Street BoysBud Powell QuintetCootie Williams SextetBud Powell QuartetGil Fuller's ModernistsFats Navarro Quartet + +30184Kenny BurrellKenneth Earl BurrellAmerican jazz guitarist, born July 31, 1931 in Detroit, Michigan, USA.Needs Votehttps://www.facebook.com/Kenny-Burrell-109029095795560/https://myspace.com/kennyburrellofficialhttps://en.wikipedia.org/wiki/Kenny_Burrellhttps://adp.library.ucsb.edu/names/306302https://www.bluenote.com/artist/kenny-burrell/https://www.allmusic.com/artist/kenny-burrell-mn0000068780BurellBurrelBurrellK BurrellK. BurellK. BurrelK. BurrellK.BurrellKanny BurrellKemmy BurrellKen BurrellKeneth BurrellKenneth BurellKenneth BurrellKenneth Earl "Kenny" BurrellKenneth Earl BurrellKenneth Earl Kenny BurrellKenny BarrellKenny BurellKenny BurrelKenny Burrel!Kenny Burrell And Some Very Special FriendsKenny Burrell DicterowKenny Burrell!Kenny BurrelleKeny Burrellケニー・バレルBuzzy BavarianK.B. GroovingtonQuincy Jones And His OrchestraGil Evans And His OrchestraThe Red Garland TrioBillie Holiday And Her OrchestraLionel Hampton And His OrchestraDizzy Gillespie SextetJimmy Smith TrioJim Timmens And His Jazz All-StarsIllinois Jacquet And His OrchestraTony Scott And His OrchestraOliver Nelson And His OrchestraJay McShann And His OrchestraThe Phoenix AuthorityPaul Chambers SextetThe Ernie Wilkins OrchestraThe Kenny Burrell TrioThe Billy Mitchell QuintetThe Buck Clayton SeptetTerry Gibbs QuartetThe Prestige All StarsJim Tyler OrchestraThe Newport All StarsThe Philip Morris SuperbandPaul Chambers QuartetKenny Burrell And The Jazz Guitar BandTony Scott QuintetThe Quincy Jones Big BandThe Kenny Burrell QuartetJimmy Heath QuintetAaron Bell And His OrchestraKenny Burrell All-StarsAndy Gibson And His OrchestraThe Secret 7The Kenny Burrell QuintetThe Detroit JazzmenThe Kenny Burrell OctetKenny Burrell OrchestraThe Herbie Mann SextetJerome Richardson SextetKenny Burrell SeptetProject G-7Roberto Miranda EnsembleBu Bu Turner GroupJohnny Letman QuintetHubert Laws Septet + +30486Stan GetzStanley GayetzskyAmerican jazz saxophonist +Born February 2, 1927, Philadelphia, Pennsylvania, USA +Died June 6, 1991, Malibu, California, USA. + +Winner of 5 Grammy Awards: +- Best Jazz Performance - Soloist Or Small Group (Instrumental) for Desafinado from [m=85178] +- Best Instrumental Jazz Performance - Small Group Or Soloist With Small Group for [m=85178] +- Album Of The Year for [m=85178] +- Record Of The Year for [m=269997] +- Best Jazz Instrumental Solo for I Remember You from [m=832306]Needs Votehttps://www.stangetz.net/https://stan-getz.bandcamp.com/https://stangetz.bandcamp.com/https://en.wikipedia.org/wiki/Stan_Getzhttps://www.britannica.com/biography/Stan-Getzhttps://www.jazzdisco.org/stan-getz/https://www.bibliotecadeltempo.com/ora/storia-stan-getz/https://adp.library.ucsb.edu/index.php/mastertalent/detail/203669/Getz_Stanhttps://www.allmusic.com/artist/stan-getz-mn0000742899C. ГетцEtan GetzFetzGetsGetzS. GecS. GetzS.GetzSam GetzSt. GetzStanStan GetsStan Getz And StringsStanley "Stan" GetzStanley GetzSton GecС. ГетцС.ГетцСт. ГетцСтан ГетцСтен Гетцスタン・ゲッツスタン・ゲッツ楽団史坦蓋茲Dju Berry"Sven Coolson"The New Stan Getz QuartetThe Modern Jazz SocietyWoody Herman And His OrchestraMetronome All StarsStan Kenton And His OrchestraStan Getz & European FriendsWoody Herman & The New Thundering HerdStan Getz QuartetBenny Goodman And His OrchestraStan Getz QuintetChet Baker - Stan Getz QuartetDizzy Gillespie - Stan Getz SextetWoody Herman & The Young Thundering HerdKai's Krazy CatsStan Getz Tenor Sax StarsThe Buddy Bregman OrchestraJohnny Smith QuintetCBS Jazz All-StarsWoody Herman And The Swingin' HerdThe Modern Jazz EnsembleThe Woody Herman Big BandRandy Brooks and his orchestraStan Getz And His Swedish JazzmenThe Stan Getz SextetThe Stan Getz - Charlie Byrd QuintetStan Getz OrchestraJimmy Raney QuintetKai Winding's New Jazz GroupAl Donahue And His OrchestraThe Paris All-StarsStan Getz & FriendsJazz Gala Big Band OrchestraThe Gillespie-Getz-Stitt SeptetTenor Conclave (2)Stan Getz + Bob Brookmeyer SextetWoody Herman & The Second HerdCal Tjader - Stan Getz SextetStan Getz SeptetStan Getz And StringsJazz Giants 1958Stan Getz Big Band + +30552Ray CharlesRay Charles RobinsonAmerican singer, songwriter, musician, and composer, born September 23, 1930, Albany, Georgia, USA – died June 10, 2004, Beverly Hills, California, USA. +He was inducted into Rock And Roll Hall of Fame in 1986 (Performer). +[b]For the leader of the Ray Charles Singers, see [a=Ray Charles (2)].[/b] +[b]For the co-writer of the songs "Frenesi" and "South", see [a4184422][/b] +In 1962, he founded [l=Tangerine Records]. After Charles left [l=ABC Records] in 1973, he closed Tangerine and started [l=Crossover Records (3)]. The Tangerine catalog is owned by [l=Ray Charles Enterprises, Inc.] + +Needs Votehttps://raycharles.com/https://theraycharlesfoundation.org/https://en.wikipedia.org/wiki/Ray_Charleshttps://www.britannica.com/biography/Ray-Charleshttps://www.imdb.com/name/nm0153124/https://www.historylink.org/File/5707https://raycharlesvideomuseum.nl/https://www.allmusic.com/artist/ray-charles-mn0000046861A. CharlesChadlesCharlesCharles RCharles RayCharles Ray RobinsonCharles, R.Charles, RayCharles,RCharles/.CharlessCharlosLay CharlesM. CharlesMr CharlesMr. CharlesR ChR CharlesR, CharlesR. CHarlesR. CharlesR. CharlsR.CharlesRayRay 'The Genious' CharlesRay Charles And The RaelettesRay Charles LiveRay Charles RobinsonRay CharletRay CharllesRay CharlrsRay CharlsRay SingsRay!Rey CharlesThe Piano Of Ray CharlesW CharlesW. CharlesР. ЧарльзРей ЧарлзРей ЧарльзРэй ЧарлзРэй ЧарльзЧарльзריי צ'ארלסレイ・チャールスレイ・チャールズレイ・・チャールズ雷查尔斯Ray Charles RobinsonMartin BanksJames Polk + +30721Herbie MannHerbert Jay SolomonAmerican jazz flutist, tenor saxophonist, clarinetist & bass clarinetist. He branched out to latin jazz, reggae and disco, to name some of the styles he explored. Mann also established [l=Embryo Records] (1969-1977) and [l=Kokopelli Records] (mid. '90s). + +Born April 16, 1930 in Brooklyn, New York, died July 01, 2003 in Pecos, New Mexico + +First began playing professionally at the age of fifteen. After serving in the U.S. Army overseas in the early 50`s, Mann recorded for Bethlehem Records and was among the group of reed players to first utilize the flute as a main voice in jazz. During this time he still played multiple instruments in the bop/cool jazz idioms but explored what became known as world music early on. He eventually became the first American jazz artist to record in the Bossa Nova style during the early 1960`s, abandoning other reed instruments to focus on flutes. + +During the late 1960`s, when Miles Davis was fusing rock with jazz, he began fusing Southern rock and soul with jazz which led to the hit album Memphis Underground. + +Herbie began getting involved with the newly emerging disco scene when he covered LTG Exchange's "Waterbed". It's a very funky instrumental with a great bassline. From this album he also covered "Hijack" by Barrabas. This became popular in the early disco scene in the UK and was one of the very first 12" promos ever pressed in Europe. + +Another disco recording was his cover of Celi Bee's "Superman" theme which peaked at #26 on the US Billboard charts. For this album Herbie worked with New York disco producer Patrick Adams and together they wrote the jazz-funk classic "Etagui". + +Father of jazz drummer & arranger [a2046927].Needs Votehttp://www.vervemusicgroup.com/herbiemannhttp://www.jimnewsom.com/HerbieMann.htmlhttps://en.m.wikipedia.org/wiki/Herbie_Mannhttp://www.whosampled.com/Herbie-Mann/https://adp.library.ucsb.edu/names/206212https://www.allmusic.com/artist/herbie-mann-mn0000678408E. MannH. MannH.MannHerb MannHerbert Jay MannHerbert MannHerbieHerbie ManHerbie Mann & Carnival BandHerbie Mann & His GroupHerbie Mann & The Family Of MannHerbie Mann And His Afro-Cuban BandHerbie Mann's MusicHerby MannMannThe Herbie Mann All Starsハービー・マン허비 만Herbert SolomonMarty Paich OrchestraHerbie Mann QuartetHerbie Mann's CaliforniansThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsThe Family Of MannThe Quincy Jones Big BandThe Herbie Mann SextetHerbie Mann QuintetHerbie Mann And His OrchestraThe Herbie Mann-Sam Most QuintetHerbie Mann And The Carnival BandFour Flutes + +31566BeatniqzNeeds VoteBeatniQZBeatnigzBeatniozBeatniqsThe BeatnigzThe BeatniqzChris CJon Pitts + +31573The GuvnorsAaron McClellandNeeds VoteThe Guv'norsTransistersKillerwattYer ManGood LivinBrazenFonzerelliAaron McClellandKings Of HouseEffin & BlindinTouch & Go (2)Gorgeous George (3)StartraxxFrame Of Mind (6) + +31575SpacecornDaniel EllensonNeeds Votehttps://soundcloud.com/spacecornSapcebornSpace BornSpacebornSpacekornD & ADaniel Ellenson + +31615Ella FitzgeraldElla Jane FitzgeraldBorn: 25 April 1917 in Newport News, Virginia, USA. +Died: 15 June 1996 in Beverly Hills, California, USA (aged 79). + +Dubbed 'The First Lady Of Song', Ella Fitzgerald was the most popular female jazz singer in the US for more than half a century. In her lifetime, she sold over 40 million albums and won 13 Grammy Awards: +- Best Jazz Performance, Individual for [m=514542] +- Best Vocal Performance, Female for [m=452934] +- Best Jazz Performance - Soloist for [m=243842] +- Best Vocal Performance, Female for But Not For Me from [m=303629] +- Best Vocal Performance Album, Female for [m=123332] +- Best Vocal Performance Single Record Or Track, Female for Mack The Knife from [m=123332] +- Best Solo Vocal Performance, Female for [m=260698] +- Best Jazz Vocal Performance for [m=243845] +- Best Jazz Vocal Performance for [m=260701] +- Best Jazz Vocal Performance, Female for [m=96849] +- Best Jazz Vocal Performance, Female for [m=519172] +- Best Jazz Vocal Performance, Female for [m=511661] +- Best Jazz Vocal Performance, Female for [m=734749] + +Mother of jazz pianist/singer [a=Ray Brown Jr.], ex-wife of jazz double-bassist [a=Ray Brown].Needs Votehttps://www.ellafitzgerald.com/https://www.instagram.com/firstladyofsong/https://www.youtube.com/ellafitzgeraldhttps://www.facebook.com/EllaFitzgeraldhttps://x.com/EllaFitzgeraldhttps://www.allmusic.com/artist/ella-fitzgerald-mn0000184502https://en.wikipedia.org/wiki/Ella_Fitzgerald*FitzgeraldE FitzgeraldE. FitzgeraldE.FitzgeraldEllaElla "For Dancers"Ella "Satchmo" FitzgeraldElla FElla FitgeraldElla FitsgeraldElla FitzeraldElla Fitzgerald & Her FellasElla Fitzgerald All StarsElla Fitzgerald And Her FellasElla Fitzgerald Con Accomp. OrchestraElla Fitzgerald QuintetElla FitzgeraldováElla FitzgeralsElla FizgeraldElla FiztgeraldElla Jane FitzgeraldElllaElly FitzgeraldFerdinand J. "Jelly Roll" MortonFitzgeraldFitzgerald-E.FitzjeraldFritzgeraldLaQueen E. FitzgeraldMiss Ella FitzgeraldOnly EllaWith TheЕла ФицджералдЕла ФицџералдЕлла ФитцжерьльдЭ. ФитцджеральдЭ. ФицджеральдЭ.ФицджеральдЭллa ФитцджepaльдЭлла ФитцджеральдЭлла ФитцжеральдЭлла ФицджералдЭлла ФицджеральдЭлла Фицжеральдエラエラ・フィッツジェラルドTeddy Wilson And His OrchestraChick Webb And His OrchestraElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraElla Fitzgerald & Her ShepherdsElla Fitzgerald And Her Quartet + +31617Chet BakerChesney Henry Baker, Jr.American jazz trumpeter, singer, composer, and artist. +Born: 23 December 1929 in Yale, Oklahoma, USA. +Died: 13 May 1988 in Amsterdam, The Netherlands (aged 58). +Baker began his career in the early 1950s and played together with [a75617] and [a37733]. Unfortunately, his drug addiction hampered his career, including arrests for narcotics. From 1957 on, he had several comebacks with such musicians as [a298943], [a252017], and Gerry Mulligan with whom he had already recorded. In spite of having his teeth knocked out, Baker recovered and continued to record frequently, especially in live settings, for many different labels, including small groups and fronting large ensembles. From the 1980s until he died, he did a lot of his recordings in Europe.Needs Votehttps://www.chetbaker.net/https://chetbaker.bandcamp.com/https://chetbaker1.bandcamp.com/https://en.wikipedia.org/wiki/Chet_Bakerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/302591/Baker_Chethttps://www.britannica.com/biography/Chet-Bakerhttps://www.jazzdisco.org/chet-baker/https://www.imdb.com/name/nm0048329/https://www.allmusic.com/artist/chet-baker-mn0000094210https://nationaljazzarchive.org.uk/explore/interviews/1635317-chet-baker?q=chet%20bakerhttps://www.jazzmusicarchives.com/artist/chet-baker/?ac=chet%20bakerBakerBakertC. BakerC.B.C.BakerCh. BakerChat BakerChesney "Chet" BakerChetChet Baker & GuestsChet Baker = Чет БейкерChet Baker And BandChet Baker Ecc.Chet Baker SingsChet Baker Sings And PlaysChic BackerЧет Бейкерチェット・ベイカー查特貝克Chet Baker QuartetThe Chet Baker QuintetGerry Mulligan QuartetGerry Mulligan TentetteShorty Rogers And His GiantsChet Baker EnsembleChet Baker - Stan Getz QuartetChet Baker SextetChet Baker & CrewChet Baker TrioArchie Shepp - Chet Baker QuintetChet Baker & StringsChet Baker OrchestraChet Baker GroupJack Sheldon And His Exciting All-Star Big-BandThe Chet Baker-Art Pepper SextetChet Baker OctetChet Baker SeptetChet Baker / René Thomas QuintetChet Baker Big BandChet Baker - Hank Jones Quartet + +31827GrinderNeeds VotePrime MoverViolatorzDave ParkinsonAron Paramor + +32180Olivier MessiaenOlivier Eugène Prosper Charles MessiaenBorn: December 10, 1908 (Avignon, France). +Died: April 27, 1992. + +Olivier Messiaen was a French composer, organist, and ornithologist, one of the major composers of the 20th century. + +He studied at the Paris Conservatoire (1919-1930) taught by [a833986], [a1598554] and [a962968] among others. He was eventually appointed as a professor at the Paris Conservatoire (1941-1978) while also serving as organist at [l336997]. It is apparent from his first published work of the eight Preludes for piano (1929), that he was using his own modal system, with its strong flavouring of tritones, diminished 7ths and augmented triads. During the 1930's he added a taste for rhythmic irregularity and for the rapid changing of intense colours, in both orchestral and organ works. Most of his compositions were explicitly religious and divided between characteristic styles of extremely slow meditation, bounding dance and the objective unfolding of arithmetical systems. They include the orchestral L'ascension (1933), the organ cycles La nativité du Seigneur (1935) and Les corps glorieux (1939), the song cycles Poèmes pour Mi (1936) and Chants de terre et de ciel (1938), and the culminating work of this period, the Quatuor pour la fin du temps for clarinet, violin, cello and piano (1941). During the war he found himself surrounded by an eager group of students, including [a=Pierre Boulez] and [a=Yvonne Loriod], who eventually became his second wife. For her pianistic brilliance he conceived the Visions de l'amen (1943, with a second piano part for himself) and the Vingt regards sur l'enfant Jésus (1944), followed by an exuberant triptych on the theme of erotic love: the song cycle Harawi (1945), the Turangalîla, symphonie with solo piano and ondes martenot (1948) and the Cinq rechants for small chorus (1949). Meanwhile the serial adventures of Boulez and others were also making a mark, and Messiaen produced his most abstract, atonal and irregular music in the Quatre études de rythme for piano (1949) and the Livre d'orgue (1951). His next works were based largely on his own adaptations of birdsongs: they include Réveil des oiseaux for piano and orchestra (1953), Oiseaux exotiques for piano, wind and percussion (1956), the immense Catalogue d'oiseaux for solo piano (1958) and the orchestral Chronochromie (1960). In these, and in his Japanese postcards Sept haïkaï for piano and small orchestra (1962), he continued to follow his junior contemporaries, but then returned to religious subjects in works that bring together all aspects of his music. These include another small-scale piano concerto, Couleurs de la cité céleste (1963), and the monumental Et exspecto resurrectionem mortuorum for wind and percussion (1964). Thereafter he devoted himself to a sequence of works on the largest scale: the choral-orchestral La Transfiguration (1969), the organ volumes Méditations sur le mystère de la Sainte Trinité (1969), the 12-movement piano concerto Des canyons aux étoiles (1974) and the opera Saint François d'Assise (1983).Correcthttps://www.oliviermessiaen.org/https://en.wikipedia.org/wiki/Olivier_Messiaenhttps://www.britannica.com/biography/Olivier-MessiaenMessaienMessiaenMessianMessiænMesslaenO MessiaenO. MesianasO. MessiaenO. MessianO. MessieanO.MesianasO.MessiaenOliven MessiaenOliver MessiaenOliver MessiaënOlivier Eugene Prospe MessiaenOlivier Eugène Prosper Charles MessiaenOlivier MaessienOlivier MessianOlivier MessiænOlivije MesjanOlvier MessiaenМессианО. МессианО.МессианОливер МессианОливье МессианОлів'є Мессіанオリヴィエ・メシアンオリヴィエ・メシアンメシアン + +32190Karlheinz StockhausenKarlheinz StockhausenBorn: August 22, 1928 (Mödrath, Kerpen, Germany) +Died: December 05, 2007 (Kürten, Germany) + +Karlheinz Stockhausen was a German composer, acknowledged by critics as one of the most important but also controversial composers of the 20th and early 21st centuries. He is most known for his groundbreaking work in electronic music, aleatory (controlled chance) in serial composition, and musical spatialization. + +He studied with Swiss composer Frank Martin at the Cologne Musikhochschule (1947-51), but the decisive stimulus came from his encounter with Olivier Messiaen's Mode de valeurs at Darmstadt in 1951. There he saw the possibilities of long-range serial process which he pursued in Kreuzspiel (1951) and KontraPunkte (1952), both for piano-based ensemble. The latter piece was written during a period of study with Messiaen in Paris, and while there Stockhausen made his first foray into electronic music. On returning to Cologne he continued this activity, notably in Gesang der Jünglinge (1956) for vocal and synthesized sounds on tape. At the same time, he pursued the ramifications of serial instrumental music. In 1958 he made his first visit to the USA, and around this time his music became more relaxed, both in its density of events and in its notational exactitude. This was partly a result of [A=John Cage]'s influence, and partly it came from the experience of electronic music, which suggested a different way of hearing. + +His influence extended over a whole generation of European composers, including such contemporaries as Boulez and Berio. +Father of [A=Suja Stockhausen-Lefranc], Christel, [A=Markus Stockhausen], [A=Majella Stockhausen], Julika and [A=Simon Stockhausen].Needs Votehttps://www.karlheinzstockhausen.org/https://www.stockhausencds.com/https://stockhausenspace.blogspot.com/https://en.wikipedia.org/wiki/Karlheinz_Stockhausenhttps://www.imdb.com/name/nm0830838/https://www.treccani.it/enciclopedia/karlheinz-stockhausen/https://www.britannica.com/biography/Karlheinz-StockhausenK. StockhausenK.-H. StockhausenKarl Heinz StockhausenKarl-Heinz StockhausenKarlHeinz StockhausenKarlheinzKh. StockhausenStock HavsenStockhausenКарлхајнц Штокхаузен + +32216Steve EdwardsStephen Neil EdwardsNeeds Votehttp://www.myspace.com/steveneiledwardshttps://www.facebook.com/UKSteveEdwards/EdwardsEdwards, SteveJosephS EdwardsS. AdwardsS. EdwardsS. N. EdwardsS.EdwardsS.N. EdwardsSt. EdwardsSt.EdwardsStephan Neil EdwardsStephen EdwardsStephen Neil EdwardsSteve EwardsSteve Neil EdwardsSteven EdwardsSteven Neil EdwardsStevie Edwardsスティーヴ・エドワーズFlatback 4Supernature (2)Lords Of Flatbush + +32426Stimulant DJsPaul Nineham and Hamilton Dean produce Hard House as Stimulants DJs but are better known to some as Happy Hardcore duo Brisk and Ham.Needs Votehttp://web.archive.org/web/20070208210749/http://www.stimulantrecords.co.uk/http://web.archive.org/web/20120209185529/http://www.stimulantrecords.co.uk/StimulantStimulant DJ'sStimulant Dj'sThe Stimulant DJsCyberdriveBrisk & HamNorthern LightsDropzoneEurotrashHamilton DeanPaul Nineham + +32482Matti OilingKaj-Matti OilingBorn on November 20th, 1942 in Helsinki, Finland. Legendary Finnish drummer who released a few recordings under his own name during the 70's. Later he became a prominent drum-teacher with occasional sideman appearings on records. + +Died on November 5th, 2009 in Fuengirola, Spain while touring with his band. +Needs VoteM. OilingM.OilingMasa OilingMatti "Keisari" OilingOiling BoilingJussi & The BoysJormasPentti Lasasen Studio-orkesteriMatti Oiling Happy Jazz BandUHO-trioGoodmansSeppo Rannikko Big BandOiling Boiling Rhythm'n Blues BandBackholm-Sarpila QuartetJohanna Almark With FriendsRempsetti + +32499Harvey FuquaAfrican-American soul singer, songwriter, record producer, and record label executive. +Born July 27, 1929, Louisville, Kentucky. Died from a heart attack in a hospital in Detroit on July 6, 2010. +Founded [a=The Moonglows] in the 1950s. Joined [l=Anna Records] and married [a=Gwen Gordy]. The label was later sold to his brother-in-law [a=Berry Gordy] and Fuqua became a longtime [l=Motown] songwriter and executive. Also established the [l=Harvey (2)] and [l=Tri-Phi] Records labels. +Had a special role in [a=Marvin Gaye]'s career as band mates in The Moonglows, as the man that introduced Gaye to Gordy and as the producer of Gaye's 1982 comeback album "[m=66820]", released shorty before Gaye was shot to death. +He is the nephew of [a=charlie fuqua] and the uncle of [a4831952].Needs Votehttps://en.wikipedia.org/wiki/Harvey_Fuquahttps://www.imdb.com/name/nm0298810/Charvey FuguaF. FuquaFaquaFiaueFiquaFoquaFugaFugraFuguaFugualFugueFukuaFunquaFuquaFuqua HarveyFuqua IIIFuquabFuqualFuqueH .FuquaH FuquaH, FuquaH. &H. FagueH. FaquaH. FazuaH. FiquaH. FruquaH. FuguaH. FuqaH. FuquaH. FuqueH. FuquiH. FusquaH. GuquaH. SuguaH. SuquaH.FuguaH.FuquaH.S. FuquaHarbey FuquaHarveyHarvey / FuquaHarvey FaquaHarvey FugaHarvey FuguaHarvey TuquaHarvey, FuquaHarvey-FuquaHarvey/FuquaHarvy FuquaHaveyHenry FuquaSuknaSuquaHarry Pratt (2)The MoonglowsFuqua & BristolFuqua III ProductionsThe EcuadorsEtta & HarveyHarvey & AnnBetty And Dupree + +32511Dee ErvinDiFosco Thomas Ervin Jr.American singer, songwriter and producer. Usually known professionally as Big Dee Irwin. +Born: Aug 7, 1932 in New York, NY, USA. Died: Aug 27, 1995 in Las Vegas, Nevada, USA. +Father of [a392495].Needs Votehttps://en.wikipedia.org/wiki/Big_Dee_Irwinhttps://www.findagrave.com/memorial/137986335/difosco-thomas-ervinBig Dee ErvinD ErvinD. ErviaD. ErvinD. Ervin Jnr.D. Ervin Jr.D. Ervin, Jr.D. ErvingD. ErwinD. Erwin Jr.D. IrvinD. IrvingD. IrwinDee ErvineDee ErwinDee IrvinDee IrwinDiFoscoErvinErvineErvisErwinG. IrvinIrvinT. ErvinV. ErvinBig Dee IrwinJason Grant (9)Di Fosco T. Ervin Jr.Wally Roker & Associates + +32904Paul NewmanPaul John NewmanReal name of UK DJ Tall Paul, for profile see his Tall Paul alias. Co-promoted the Gallery night at Turnmills with [a=Darren Stokes].Needs Votehttp://www.djtallpaul.com/"Tall" Paul Newman'Tall' Paul NewmanNewmanP NewmanP. NewmanP.J. NewmanP.NewmanPaul John NewmanPaul Newman AdamzPaul NumanTall Paul NewmanEscrimaTall PaulCamisraSunglasses RonDecktitionThe Grifters (2)PartizanGoodfellosFaze IITall Tin BoxP + CTobacco BoysRamjack (2)Stokes & LongM-XRathbone Place + +32919John WhitemannHard dance producer who ran the [l=Hotwax Traxx] label. +Needs VoteJ WhitemanJ.W.J.WhitemannJohn WhitemanJon WhitemannWhitemanWhitemannWaxman'cini + +32920Ollie JayeOliver JearyOllie Jaye has been around for what seems like an eternity. Music has always been a major factor in his life and developed an interest in the early electronic sounds from such luminaries as Vince Clarke, Chris Lowe, The Human League & Kraftwerk. + +Fast forward and Ollie’s presence and skills have earned him a top spot in the Club culture. Along with a 10 year residence at the world famous Hippo Club in Cardiff, he’s opened up for “The Prodigy” on the Cardiff legs of their tour, played back to back for 2 hours with Sister Bliss, from Faithless fame. He’s also warmed up for just about every “name” DJ on the planet, including – Sasha, Judge Jules, David Morales, Jeremy Healy, Carl Cox and just about everyone else you can think of. And then, of course… + +In 1996 Ollie gave his first tune “Eden” to Jon The Dentist who signed it up on the spot to his label “Bosca Beats“. It achieved buzz and hype chart status and sold well, so Ollie and Jon teamed up and released further tracks, each outselling the last. Then they created the now seminal “Imagination” which was immediately snapped up by Tidy Trax and it became one of their biggest selling records, shifting over 18,000 units upon release. Ollie and Jon finished off a full length album, “Genetically Engineered“. + +Currently, Ollie still accepts the occasional gig, but is focusing on the newest hit, Global State Transmission on Radio Cardiff, which airs every Saturday night and is available for download on his Global State Transmission Podcast as well as via iTunes! It’s quickly becoming a world hit attracting guests such as Paul van Dyk, Lisa Lashes, Mark Knight, Judge Jules, Anne Savage, Jelo & Calvertron. + +Ollie has now set up a new record label - Global State Recordings which is going from strength to strength and boasts an impressive roster of both established and upcoming talent. +Needs Votehttp://olliejaye.orghttp://olliejaye.comOllieOllie JayOllie JearyOliver JearyJon The Dentist & Ollie JayeTekkerzLunatic Response UnitGlobal State Allstars + +32921Dave HolmesMustafa Alici[b]For the manager, please use [a=Dave Holmes (7)]. +For the New Zealand/UK engineer ([l272351]), please us [a=David Holmes (2)]. +For another UK engineer, active from 1977-1992, please use [a=David Holmes (3)]. +For the USA engineer, please use [a=David Holmes (7)].[/b]Needs VoteDaveDavid HolmesStarchildSteve MorleyAliciProfilerThe Cyber PrinceDJ LunaticTime TravellerClubbers DelightA.M.A.Virtual StructuresNROProject ADr. MFiredancerCoeMustafa AliciNemesis (8)CyberoticRe' ActiveClub Zone (2)Midas (7)Cruz Control (2)DJ A (2)Dynamic Base (2)Physical Motion (2)Soundscape (9)Dreamscape (16)Cosmic WarriorNEM3SI$DJ Cream (6) + +33338DJ ShreddaThomas BacherCorrectDJ ShredderShreddaClaudio MacalvoThomas Bacher + +33585Willie BoboWilliam CorreaAmerican latin-jazz percussionist who played professionally from the early 1950s until his untimely death in 1983. Bobo is best remembered as one of the key players who fused influences from jazz, latin, soul, & rock in the late 1960s and 1970s, helping shape the evolving boogaloo style. +Father of [a=Eric Bobo]. +Born William Correa, 28 February 1934, New York City, New York. +Died 15 September 1983, Los Angeles, California.Needs Votehttp://www.spaceagepop.com/bobo.htmhttp://en.wikipedia.org/wiki/Willie_BoboBoboBobo And BandW. BoboW. Bobo "W. Correa"W.BoboWilli BoboWilliam CorreaWilliam Correa aka "Willie Bobo"WillieWillie "Bobo" CorreaWillie "Bobo" GuerraWillie Bo BoWillie BobWillie Bobo CorreaWillyWilly "Bobo" CorreaWilly BoboWilliam CorreaWillie Bobo & The Bo GentsTito Rodriguez & His OrchestraThe Killer Joe OrchestraLeonard Feather All StarsThe Mongo Santamaria OrchestraWillie Bobo & His OrchestraCBS Jazz All-StarsCal Tjader SextetMongo Santamaria Y Sus Ritmos Afro-CubanosThe Chico Hamilton SextetRené Bloch And His Big Latin Band + +33587Dinah WashingtonRuth Lee JonesAmerican blues, R&B and jazz singer, born 29 August 1924 in Tuscaloosa, Alabama, USA and died 14 December 1963 from a lethal dose of secobarbital and amobarbital in Detroit, Michigan, USA. +She was married at least seven times, including to [a=Eddie Chamblee] from 1957 to 1959. +Inducted into Rock And Roll Hall of Fame in 1993 (Early Influence) and Blues Hall of Fame in 2003.Needs Votehttps://myspace.com/queendinahhttps://en.wikipedia.org/wiki/Dinah_Washingtonhttps://www.independent.co.uk/arts-entertainment/rock-a-shame-about-the-girl-when-she-died-in-1963-dinah-washington-was-the-selfappointed-queen-of-the-blues-anthony-denselow-thinks-her-time-has-come-again-1538424.htmlhttps://www.britannica.com/biography/Dinah-Washingtonhttps://www.imdb.com/name/nm0913423/https://www.rockhall.com/inductees/dinah-washingtonhttps://www.encyclopedia.com/women/encyclopedias-almanacs-transcripts-and-maps/washington-dinah-1924-1963https://www.allmusic.com/artist/dinah-washington-mn0000260038https://adp.library.ucsb.edu/names/350111D. VašingtonD. WashingtonDiana WashingtonDianah WashingtonDina WashingtonDinahFriendThe QueenWashingtonДайна Вашингтонダイナ • ワシントンダイナ・ワシントンThe QueenWoody Herman And His OrchestraDinah Washington And Her OrchestraClifford Brown All StarsWoody Herman And His Third HerdThe Sallie Martin SingersDinah Washington And Her TrioDinah Washington & The All-Stars + +33589Billie HolidayEleanora McKay née Eleonora FaganAmerican jazz singer and songwriter, born April 7, 1915, Philadelphia, Pennsylvania, USA, died July 17, 1959, New York City, New York, USA. + +Daughter of jazz guitarist [a307209]. Godmother of [a=Mala Waldron] and [a41398]. + +She made her debut circa 1930 singing in various nightclubs in Harlem. In early 1933, the producer [a252830] heard her sing and was impressed by her talent. In 1935 he signed her to [l14624] Records. She made her first recordings with [a254768]. Also in 1935 she made her first appearance in a movie, with more roles in the 1940's. From 1939 she started recording songs with notable jazz artists of that time. In the 1950's, her voice was deteriorating as a result of unhappy relationships, heroin use and excessive drinking. In May 1959 she collapsed and was taken to the Metropolitan Hospital in New York City for treatment of liver and heart disease. She was arrested for heroin possession while she lay dying. + +She was inducted into the Blues Hall of Fame in 1991 and the Rock And Roll Hall of Fame in 2000 (Early Influence).Needs Votehttps://billieholiday.com/https://www.ladyday.net/https://en.wikipedia.org/wiki/Billie_Holidayhttps://www.britannica.com/biography/Billie-Holidayhttps://reset.me/story/how-billie-holiday-was-hunted-down-in-the-early-days-of-the-war-on-drugs/https://www.imdb.com/name/nm0390507/https://www.biography.com/musician/billie-holidayhttps://www.treccani.it/enciclopedia/billie-holiday/https://www.jazzdisco.org/billie-holiday/discography/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102008/Holiday_Billiehttps://billieholiday.be/https://www.allmusic.com/artist/billie-holiday-mn0000079016B HolidayB. HolidayB. HollidayB. HolydayB.HolidayB.HollidayBHBil HolidayBilie HolidayBiliy HolidayBille HolidayBilli HolidayBillieBillie HolidaBillie Holiday "Lady Day"Billie Holiday (Lady Day)Billie Holiday, Lady Day SingsBillie HolladayBillie HollidayBillie HollidyBillie HollydayBillie HolydayBillis HolidayBilly HolidayBilly HollidayBilly McFridayBillye HolidayG. HolidayHoildayHolidayHoliday BHollidayHolydayJ. HolidayJames HolidayLady DayLady Day HolidayБ. ХолидэйБилли Холидейビリー・ホリデイ比莉哈樂黛빌리 흘리데이Eleanora FaganLady Day (2)Eleanora McKay + +33759HazizaAnnelie JonssonHard House, Hip Hop & Trance DJ & producer from Skärholmen, near Stockholm, Sweden. +Annelie met [a=Glenn C.] in 1992 and together they started a nightclub called Paradise. In 1994 they launched [l=Fluid Records], a label to promote Swedish Techno, Trance and Drum & Bass artists. In 1997 she starts publishing company [l=Perfect Beat Music] and label [l=Reclaim de Underground]. In 2000, with Glenn C she starts a new Hard House/Hard Trance label, [l=Hypocrite Records]. +Contact: annelijonsson1@yahoo.co.uk +Born: January 19, 1968Needs Votehttp://www.facebook.com/annelijonsson68http://myspace.com/annelijonssonhttp://web.archive.org/web/20120617231131/http://www.myspace.com/annelijonssonhttp://www.house-mixes.com/profile/haziza/Annelie JonssonA J Hardcore Style + +33991Matt KootchiNeeds VoteKootchiMatt KoocheyMatt KoochiMatt KootchieAbsolutely + +34189Dancefloor GloryPaul ChambersNeeds VoteDance Floor GloryGloryPaul ChambersFlash HarryDutch CourageBulletproof (2)Archie (2)Dusty Bling + +34252Ian LevineIan Geoffrey LevineBritish DJ, producer & songwriter. Born on 1953-06-22 in Blackpool, Lancashire. Started collecting soul at an early age and started DJing at Blackpool Mecca, a key club in the development of northern soul where he became resident. Levine was primarily responsible – along with [a970641] - for guiding the scene away from its oldies-only policy and towards modern soul and disco. Later, as resident at Heaven and producer of hits for Miquel Brown, Divine and many others, he went on to forge the sound known as hi-NRG. He also produced Take That.Needs Votehttps://www.facebook.com/IanGeoffreyLevinehttps://www.imdb.com/name/nm0505817/https://www.mixcloud.com/ianlevine35/https://myspace.com/ian_levinehttps://www.youtube.com/@IanLevinehttps://en.wikipedia.org/wiki/Ian_LevineAn Ian Levine MixI LevineI. LevanI. LevinI. LevineI. LevinelI. LevingI.G. LevineI.LevineIan Geoffery LevineIan Geoffrey LevineIan LeveneIanlevimeIvan LevineJ. LevineJan LevineL. LevineLan LevinLenineLevineCarlos DeLandraEvil AnnieMiss Piggy (2)Greg Cook (5)Geoffrey CooklinIan Levine and Fiachra TrenchDavid Henry (17)The Lost Dymensions + +34671Phil ReynoldsPhilip ReynoldsHard dance DJ/producer based in London, UK. +Manager of [l101217] Recordings.Needs Votehttps://www.facebook.com/Phil-Reynolds-DJProducer-80521265808https://myspace.com/djphilreynoldshttp://web.archive.org/web/20050205002907/http://www.philreynolds.net:80/http://web.archive.org/web/20110109103955/http://philreynolds.net/http://web.archive.org/web/20121226094641/http://impactrecordings.com:80/artists/artists_phil.php/P ReynoldsP. ReynoldsP.ReynoldsP.ReyonldsPhilip ReynoldsPhilrynoldsReynoldsNick Sentience & Phil ReynoldsSteve Blake & Phil ReynoldsDouble Drop + +34674Steve BlakeStephen BlakeNeeds VoteBlakeS. BlakeS.BlakeSub KutzSteve Blake & Phil Reynolds + +35301Paul McCartneyJames Paul McCartneySir James Paul McCartney CH MBE (born 18 June 1942 in Liverpool, England) is a British singer, composer/songwriter, and multi-instrumentalist most famous for being a member of [a=The Beatles]. He is also a published poet, painter, philanthropist, animal rights activist, and multi-media executive/producer. Sir Paul McCartney has been recognised by every music and entertainment association, including Guinness Book, as the most successful and popular composer/songwriter/entertainer in the history of popular music. +After the Beatles disbanded, he debuted as a solo artist with the 1970 album "[m=39887]" and formed the band [a=Wings (2)] with his first wife, Linda, and [a=Denny Laine]. He resumed his solo career after Wings broke up in April 1981. +McCartney received appointment as Member of the Order of the British Empire in 1965 and, in 1997, McCartney was knighted for services to music. +He was inducted into the Rock and Roll Hall of Fame in 1988 as a member of the Beatles and again as a solo artist in 1999. On 9 February 2012, he was honoured with the 2.460th star on the Hollywood Walk of Fame. +Widower of [a=Linda McCartney]. Stepfather of [a=Heather McCartney] ([a=Linda Eastman]'s daughter from her first marriage whom he later adopted) and biological father to [a=Mary McCartney], [a=Stella McCartney], [a=James McCartney]. In July 2002, he married [a=Heather Mills] with whom they had a daughter in 2003, Beatrice Milly. They separated in April 2006. On 9 October 2011, he married Nancy Shevell. Son of [a=James McCartney (2)] and brother of [a=Michael McCartney].Needs Votehttps://www.paulmccartney.com/https://mccartney.com/https://www2.bfi.org.uk/films-tv-people/4ce2ba184b8e2https://www.biography.com/musicians/paul-mccartneyhttps://www.britannica.com/biography/Paul-McCartneyhttps://www.facebook.com/PaulMcCartneyhttps://www.feenotes.com/database/artists/mccartney-sir-paul-18th-june-1942-present/https://www.imdb.com/name/nm0005200/https://www.instagram.com/paulmccartney/https://www.musicianguide.com/biographies/1608002893/Paul-McCartney.htmlhttps://myspace.com/paulmccartneyhttps://soundcloud.com/paulmccartneyhttps://x.com/PaulMcCartneyhttps://whatgear.com/pro/paul-mccartneyhttps://en.wikipedia.org/wiki/Paul_McCartneyhttps://www.youtube.com/user/PAULMCCARTNEYhttps://www.youtube.com/user/PaulMcCartneyVEVOhttps://www.beatlesbible.com/people/paul-mccartney/https://macca-central.com/https://maccaboard.paulmccartney.com/http://maccaclub.com/http://www.maccafan.net/http://mcbeatle.de/macca/index.shtmlhttps://www.maccazine.com/https://paulmccartneyafterthebeatles.com/https://paulmccartneyfanclub.wordpress.com/https://www.the-paulmccartney-project.com/https://walkoffame.com/paul-mccartney/https://www.allmusic.com/artist/paul-mccartney-mn0000029884&CartneyJames Paul McCartneyJohn LennonLennon/McCartneyM. CartneyM. McCartneyMaCartneyMacMac CartneyMacCarteneyMacCartneyMaccaMc CarthneyMc CartneyMc. CartneyMc.CartneyMcArtneyMcCarneyMcCarnteyMcCarrneyMcCartingMcCartmeyMcCartneyMcCartney P.McCartney PaulMcCartnezMcartneyMccartneyMe CartneyMr. Paul McCartneyPP McCartneyP. M. C. CartneyP. MC CartneyP. MCartneyP. MaCartneyP. Mac CartneyP. MacCartneyP. Mc CarteneyP. Mc CartneyP. Mc. CartneyP. McCP. McCARTNEYP. McCarthyP. McCartneyP. McCartney-McCartneyP. McCartney/P. McCartneyP. McCartyP. McCatrneyP. McartneyP. MccartneyP. マッカートニーP.L.Mc CartneyP.M.P.M. CartneyP.Mc CartneyP.Mc. CartneyP.Mc.CartneyP.McCartneyP.MccartneyP.マッカートニーPMPau Mc CartneyPaulPaul CartneyPaul J. McCartneyPaul James McCartneyPaul James MccartneyPaul MPaul M. CartneyPaul MCCarirmyPaul MaCartneyPaul MacPaul Mac CartneyPaul MacCartneyPaul MacartneyPaul Mc C.Paul Mc CarneyPaul Mc CarteneyPaul Mc CartheyPaul Mc CarthyPaul Mc CartneyPaul Mc. CartneyPaul Mc.CartneyPaul McCarlneyPaul McCarneyPaul McCarthyPaul McCartney '76Paul McCartney's AllstarsPaul McCartney's Liverpool Sound CollagePaul McCartney, Linda McCartneyPaul McCatrneyPaul McCaurtyPaul McMartneyPaul McartneyPaul MccartineyPaul MccartneryPaul MoCaptneyPaul Mᶜ CartneyPaul-McCartneyPaul.PmcPoul McCartneyP・マッカートニーR. McCartneySir Paul Mc CartneySir Paul McCartneyWingsmc cartneyМакКартниМоп МаккартнviП. Мак KартниП. Мак КартнейП. МаккартниПолПол МакКартниПол МаккартниПоль Маккартниמק קרתניפול מקרטניפול מקרתניポール・マッカートニィポール・マッカートニー保羅·麥卡特尼保羅麥卡尼保羅麥肯尼폴 매카트니Apollo C. VermouthBernard WebbSuperweedPercy ThrillingtonClint HarriganA. Smith (8)Paul RamonSome DudePete Mitchell (9)Friend (15)The BeatlesThe FiremanWings (2)The Smokin' Mojo FiltersBand Aid 20The QuarrymenThe Beat Brothers (2)The Crowd (2)Ferry AidTwin Freaks (3)Lennon-McCartneyPaul & Linda McCartneyPaul McCartney And String QuartetRockestraJohnny And The MoondogsThe Country HamsThe Justice CollectivePaul McCartney & FriendsR.A.D.D. (Recording Artists Against Drunk Driving)George's BandPaul Weller & Friends + +35368Untidy DJ'sPaul JanesCorrectColours EP 1The Colours EPThe Untidy DJ'sThe Untidy DJsUn-Tidy DJsUntidyUntidy DJ.'.sUntidy DJsMajesticThe Red Hand GangGround ZeroPaul JanesHouserockersEldon TyrellLexaUK Gold (2) + +36046Louise Clare MarshallLouise Clare MarshallBritish singer.Needs Votehttps://louiseclaremarshall.org.uk/Clare MarshallL.C. MarshallLoise Clare MarshallLouise Claire MarshallLouise ClareLouise Clare MarshalLouise MarshalLouise MarshallJools Holland And His Rhythm & Blues OrchestraMetro VoicesLondon VoicesThe Tribe Of Good + +36377James LawsonJames LawsonUK hard dance producer, remixer, engineer & DJ. +one half of the LIVE Hard Dance act [a=The Edison Factor] & +co-owner of the [l=Edison Factor.net Records] imprint +Needs Votehttps://www.facebook.com/djjameslawsonhttps://soundcloud.com/djjameslawsonhttps://myspace.com/djjameslawsonhttps://twitter.com/DJJamesLawsonhttp://web.archive.org/web/20071102215931/http://www.jameslawson.net:80/http://web.archive.org/web/20121213095331/http://impactrecordings.com:80/artists/artists_james.phpJ LawsonJ. LawsonJ.LawsonLawsonThe Edison FactorNHL ProjectDouble DropStraight Outta Cl'ahm + +36378Ben KayeBen KearsleyUK Hard Dance DJ & Producer. +[B]For the Québec (Canada) songwriter, producer and manager see [a=Ben Kaye (2)].[/B]CorrectB. KayeBen KBenKayeKayeOddbodPac_ManBen KearsleyAkcess (2) + +36865Louis PrimaLouis Leo PrimaAmerican singer, songwriter, bandleader, and trumpeter (December 7, 1910, New Orleans, LA - . August 24, 1978, New Orleans, LA). +Married to [a70283] (1953-1961) and [a2877703] (1963). +Father of [a7341878] and [a7291188]. +He was the voice of King Louie in Disney's [i]The Jungle Book[/i]. + +While rooted in New Orleans jazz, swing music, and jump blues, Prima touched on various genres throughout his career: he formed a seven-piece New Orleans–style jazz band in the late 1920s, fronted a swing combo in the 1930s and a big band group in the 1940s, helped to popularize jump blues in the late 1940s and early to mid 1950s, and performed frequently as a Vegas lounge act beginning in the 1950s. From the 1940s through the 1960s, his music further encompassed early R&B and rock 'n' roll, boogie-woogie, and Italian folk music, such as the tarantella. Prima made prominent use of Italian music and language in his songs, blending elements of his Italian and Sicilian identity with jazz and swing music. At a time when ethnic musicians were discouraged from openly expressing their ethnicity, Prima's embrace of his Sicilian ethnicity opened the doors for Italian-American and ethnic American musicians to display their roots. + +After finishing high school in New Orleans, Prima had a few unsuccessful gigs, including when he joined the [a=Ellis Stratakos]' Orchestra in 1929. From 1931 to 1932, Prima occupied his time by performing in the Avalon Club owned by his brother [a=Leon Prima]. His first break was when Lou Forbes hired him for daily afternoon and early evening shows at The Saenger. In September 1934, Prima began recording for the [l=Brunswick] label with [a=Louis Prima & His New Orleans Gang]; these recordings were a combination of Dixieland and swing. In March 1936, Prima wrote and recorded "Sing Sing Sing" ([url=https://www.discogs.com/release/10034667]Brunswick 7628[/url]), which subsequently became a hit for [a=Benny Goodman]. In 1936, Prima moved to California to expand his music. During this time there was a movement for big bands and orchestras, but Prima kept performing and recording with a smaller band. In 1938-39, Prima formed [a=Louis Prima & His Band] and recorded for [l=Decca]. (This group had the same basic small band lineup as the New Orleans gang.) + +In late 1939, Prima broke up the New Orleans Gang and finally formed his own big band, [a=Louis Prima And His Gleeby Rhythm Orchestra]. This group only recorded 8 sides in 1940. The instrumentation featured 2 trumpets, trombone, 2 alto saxes, tenor sax, piano, guitar, bass, and drums. "Gleeby Rhythm" refers to the signature, upbeat shuffle beat, which fueled hits like "Gleeby Rhythm Is Born" and "Dance with a Dolly" (1940). This group showcased his energetic New Orleans jazz and swing style with vocalists like [a=Lily Ann Carol] and [a=Jack Powers], a Boston discovery of Prima’s, joining in July 1940 and remaining until fall 1941 when he fell victim to the draft. These 1940 recordings capture the fun, signature sound before his even bigger fame with [a=Keely Smith]. Prima finally created [a=Louis Prima And His Orchestra] in 1941. The big band made recordings for [l=The Hit Record] and [l=Majestic] labels from 1944-47. By the mid-1940s, Prima was experiencing great success. People were purchasing tickets early in the morning for shows later on that evening. Despite the anti-Italian sentiment during the war, Prima continued to record Italian songs, the most famous being "Angelina", named after his mother. Others included "Please No Squeeza Da Banana", "Baciagaloop (Makes Love on the Stoop)", and "Felicia No Capicia". By the end of the war years, the popularity of big band music was diminishing, and by 1947 Prima was playing more jazzy versions of his music. The band began recording under a new contract with [l=RCA Victor] in 1947 until 1949. It was during this time that Prima met [a=Keely Smith]; Prima met her in August 1948 when was looking for a new female vocalist to replace [a=Lily Ann Carol]. Smith was soon traveling with his band. Following this, Prima made several recordings with the band in 1950 for [l=Mercury]. + +In 1950, Prima formed his own label, [l=Robin Hood (3)], to to release his own material. His hit [url=https://www.discogs.com/master/839378]"Oh Babe!"[/url] on [l=Robin Hood (3)] rekindled interest in him from major labels, and he signed with [l=Columbia] Records in the Fall of 1951. Placed under the auspices of [a=Mitch Miller], the head of artists and repertoire (A&R) at Columbia, Prima's loose style clashed with Miller's production-conscious manner. The resulting recordings were Prima's combination of Italian shuffle, R&B, and comic novelties, and Miller's staid arrangements. A few of the tracks featured [a=Keely Smith] on vocals. Prima married Smith in 1953. Prima left Columbia in 1953 over a dispute regarding who would record [url=https://www.discogs.com/master/1481850]"Come On-a My House"[/url], and returned to recording for his own Robin Hood Records until Capitol revived his recording popularity. In 1954, Prima was offered a stay at The Sahara in Las Vegas to open his new act with Keely Smith. He enlisted New Orleans saxophonist [a=Sam Butera] and his backing musicians, [url=https://www.discogs.com/artist/628949]The Witnesses[/url]. The act was a hit, and ultimately led Prima to sign with [l=Capitol Records] in 1955. The act performed regularly in Las Vegas for the rest of the decade. He released his first album with Capitol Records, [i]The Wildest![/i], in September 1956. In 1957, [a=Louis Prima & Keely Smith], as a couple, released [i]The Call of the Wildest[/i]. The duo also redid "That Old Black Magic", which was a Top 40 hit for two months and earned the duo a Grammy. + +In 1959, Prima signed with [l=Dot Records] ([l=Coronet Records] & [l=Spin-O-Rama]) and produced eight albums, under his name and as "[a=Louis Prima & Keely Smith]." The couple was constantly performing and it affected their marriage. The constant performances and Prima's infidelities ultimately became too much for Smith. That noted, Smith also had an affair with [a=Frank Sinatra], prior to her divorce from Prima in 1961. After finishing up their contract at the Desert Inn, she filed for divorce. In 1962, Prima tried to form his own recording company called [l=Prima Magnagroove] Records. He filled Smith's spot with [a=Gia Maione], a 21 year old waitress. In 1967, Prima landed a role in Walt Disney's animated feature The Jungle Book, as the orangutan King Louie. He performed the hit song "I Wan'na Be like You" on the soundtrack. + +Prima was married five times and had six children. Prima was married to Louise Polizzi from 1929 to 1936; Alma Ross from 1936 to 1945; Tracelene Barrett from 1945 to 1952; Keely Smith from 1953 to 1961; and Gia Maione in 1963. All but his marriage to Maione ended in divorce. Among his children are musical performers Lena Prima and Louis Prima Jr., both born to Maione. In 1973, Prima suffered a heart attack. Two years later, following headaches and episodes of memory loss, he sought medical attention, and was diagnosed with a brain stem tumor. Following surgery, he suffered a cerebral hemorrhage and went into a coma. He never recovered and he died in 1978, having been moved back to New Orleans. He was buried in Metairie Cemetery in a gray marble crypt topped by a figure of Gabriel, the trumpeter-angel, sculpted by Russian-born sculptor Alexei Kazantsev. At a time when ethnic musicians were discouraged from openly stressing their ethnicity, Prima's conspicuous embrace of his Sicilian ethnicity opened the doors for other Italian-American and ethnic American musicians to display their ethnic roots.Needs Votehttps://www.louisprima.com/https://www.nola.com/entertainment_life/music/article_8c39ca8f-c822-5802-94d1-49e53131fbb5.htmlhttps://en.wikipedia.org/wiki/Louis_Primahttps://www.vocalgroupharmony.com/6ROWNEW/Angelina.htmhttps://www.vocalgroupharmony.com/6ROWNEW/Angelina.htmhttps://adp.library.ucsb.edu/names/108876El PrimaL PrimaL. PrimaL.PrimaLoius PrimaLouie PrimaLouif PrimaLouis Prima & His BandLouis Prima (King Louie)Louis Prima And ChorusLouis Prima As 'King Louie'Louis Prima and ChorusLouis Prima, Trumpet With Accomp.Louis PrimeLouis PrimoLouis/PrimaLouise PrimaLous PrimaLowis PrimaLui PrimaLuis PrimaP. LouisPrimaPrima And BoysPrima, LouisPrimiaPrimmPrimoPrimsЛ. Примаルイ・プリマKing Louie The MostLouis Prima And His OrchestraLouis Prima & Keely SmithLouis Prima & His New Orleans GangLouis Prima & His BandLouis Prima And His Whipper-Doodles"The Jungle Book" Original CastLouis Prima And His Gleeby Rhythm Orchestra + +36979Jack RobinsonPhilo Jack RobinsonDisco songwriter + +Teamed with [a=James Bolden] he wrote some classic hits of the disco era for [a=Tina Charles], [a=Gloria Gaynor] etc. +CorrectJ RobinsonJ, RobinsonJ. BoldenJ. RobertsonJ. RobinsoJ. RobinsonJ. RobinsonsJ. RobonsonJ. RubinsonJ.RobinsonJack Philo RobinsonJack-RobinsonJackie RobinsonJacques RobinsonP. RobinsonPhilo Jack RobinsonPhilo RobinsonRobinsonRobisonT. RobinsonFrantique + +37429Lee HaslamLee HaslamTrance DJ & producer from Doncaster, UK. +Former Tidy Trax label manager, left to set up his own digital Record label [l=Digital Remedy]. +Needs Votehttp://www.leehaslam.comhttp://www.myspace.com/leehaslamhttp://www.facebook.com/DJLeeHaslamhttp://twitter.com/RealLeeHaslamhttp://www.youtube.com/RealLeeHaslamhttps://www.instagram.com/haslam.leeDigital RemedyHaslamL. HaslamLeeLee HasiamLee HaslemPoisonproTomorrow PeopleEuphony (2)Euphonic Sessions + +37729B.B. KingRiley B. KingAmerican blues singer, guitarist, and songwriter born September 16, 1925 near Itta Bena, Mississippi and died May 14, 2015, Las Vegas, Nevada. B.B. is an abbreviation for 'Blues Boy'. + +King is one of the most influential blues musicians of all time, earning the nickname "The King of the Blues." He is considered one of the "Three Kings of the Blues Guitar" (along with [a=Albert King] and [a=Freddie King], none of whom are related). Since he started recording in the 1940s, he released over fifty albums. He previously worked as a tractor driver. + +In his youth, he played on street corners for dimes, and would sometimes play in as many as four towns a night. In 1947, he hitchhiked to Memphis, TN, to pursue his music career. In Memphis, B.B. stayed with his cousin [a=Bukka White], one of the most celebrated blues performers of his time, who B.B. credits as one of his earliest mentors and teachers. King's first big break came in 1948 when he performed on [a=Sonny Boy Williamson]’s radio program on KWEM out of West Memphis. This radio performance led to steady engagements at the Sixteenth Avenue Grill in West Memphis and later to a ten-minute spot on the Memphis radio station WDIA. King's radio spot become so popular, it was expanded and became the “Sepia Swing Club.” As King worked at WDIA as a singer and disc jockey, he was given the catchy radio nickname "Beale Street Blues Boy", later shortened to "Blues Boy", and finally to "B.B." + +In the late 1940s and early 1950s, King was a part of the blues scene on Beale Street. "Beale Street was where it all started for me", King said. He performed with [a=Bobby Bland], [a=Johnny Ace], and [a=Earl Forest] in a group known as [a=The Beale Streeters]. In 1949, King made his recording debut on [l=Bullet (2)] ([l=Bullet Recording & Transcription Co.]) by issuing the single [url=https://www.discogs.com/release/7031392-BB-King-Miss-Martha-King-When-Your-Baby-Packs-Up-And-Goes]"Miss Martha King"[/url], which did not chart well. Later that year, he began a recording contract with Los Angeles-based [l=RPM Records (5)]. Many of King's early recordings were produced by [a=Sam Phillips (2)] (who later founded [l=Sun Record Company]). King's recording contract was followed by tours across the US, with performances in big city theatres as well as gigs in small clubs and juke joints in the southern United States. During one show in Twist, Arkansas, a fight broke out between two men and caused a fire. King evacuated with the rest of the crowd, but realizing he left his acoustic guitar inside, rushed back inside the burning building to retrieve it. He later discovered the two men were fighting over a woman named Lucille. Ever since, each one of B.B.’s trademark Gibson guitars has been called Lucille, as a reminder not to fight over women or run into any more burning buildings. + +In 1952, B.B. had a number one hit with “Three O’Clock Blues,” and began touring nationally soon after. 1956 became a record-breaking year, with 342 concerts booked and three recording sessions. That same year he founded his own record label, [l=Blues Boys Kingdom], with headquarters at Beale Street in Memphis. In 1962, King signed to [l=ABC-Paramount] Records, which was later absorbed into [l=MCA Records]. In November 1964, King recorded the [m=107099] album, considered to be one of his finest recordings. In 1968, B.B. played at the [l=Newport Folk Festival] and at [a=Bill Graham (2)]’s [l=Fillmore West] on bills with the hottest contemporary rock artists of the day who idolized B.B. and helped to introduce him to a young white audience. In 1969, B.B. was chosen by [a=The Rolling Stones] as the opening act for their American tour. He won a 1970 Grammy Award for his version of the song "The Thrill Is Gone", which was a hit on both the Pop and R&B charts. It also gained the number 183 spot in Rolling Stone magazine's 500 Greatest Songs of All Time. From the 1980s until his death in 2015, he maintained a highly visible and active career, appearing on numerous television shows and performing as much as 300 nights a year. + +B.B. was inducted into the Blues Foundation Hall of Fame in 1984 and into the Rock And Roll Hall of Fame in 1987 (Performer).Needs Votehttps://www.bbking.com/https://www.facebook.com/bbkinghttps://www.youtube.com/channel/UCRBh8rjd8umQiMMNB9_5D_whttps://en.wikipedia.org/wiki/B.B._Kinghttps://www.britannica.com/biography/B-B-Kinghttps://www.imdb.com/name/nm0454475/https://www.allmusic.com/artist/bb-king-mn0000059156B B KingB. B. "Blues Boy" KingB. B. 'Blues Boy' KingB. B. KingB. E. KingB. KingB. King Riley (B.B. King)B. Riley KingB.BB.B KingB.B.B.B. "Blues Boy" KingB.B. (Blues Boy) KingB.B. King & The King's MenB.B. King And His BandB.B. ‘Blues Boy' KingB.B. キングB.B.KingB.B.キングB.E. KingB: B: KingBB KingBB. KingBb KingBi Bi KingB•B•KingB・B・キングC. KingF. KingKIngKingKing - RileyKing RileyKing Riley BKing, B.B.King, Riley BKing-KingKinsP. KingPiley KingR KingR. B. KingR. KingR.B. KingR.KingReily B. KingRieley B. KingRileyRiley "B. B." KingRiley "BB" KingRiley 'B.B.' KingRiley (B.B.) KingRiley B KingRiley B, KingRiley B.Riley B. "B. B." KingRiley B. B. KingRiley B. KIngRiley B. KingRiley B.B. KingRiley B.KingRiley Jr KingRiley KingRioley KingRolley B. KingThe King比比金B.B.キングThe Louisiana Gator BoysB.B. King OrchestraGary Burton & FriendsB.B. King & EnsembleVarious Artists For Children's PromisePinetop Perkins And Friends + +37731Chick CoreaArmando Anthony CoreaChick Corea was an American jazz composer, arranger, keyboardist, percussionist, bandleader and recording artist of southern Italian descent, born June 12, 1941 in Chelsea, Boston, Massachusetts. This very prolific musician played anything from bebop, post bop, free jazz, Latin jazz and crossover to [a95546] and [a304968], as well as solo piano improvisations, including being one of those defining Jazz Rock and Fusion in the 1970s, both solo and in [a41893] and [a342265]. He acquired his nickname from an aunt who liked to address him as “Cheeky”. + +In his youth, he marched as a lead soprano bugle soloist in a drum and bugle corps: [a9280684] of Chelsea, Massachusetts. Influenced by bebop, he started his professional career in the early 60s, and recorded his first album in 1966 (not released until 1968). After very well received trio Post Bop album [m115075] with drummer [a255556] and bass player [a128396], he began recording a series of groundbreaking studio and live albums with [a23755] 1968-70, before making 3 albums with Free Jazz and Fusion quartet Circle, as well as 2 solo piano improvisation albums in 1971-72. In 1971 he released the first Return to Forever album, and the band went from making Latin American acoustic and electronc music to a more Jazz Rock oriented approach during the decade. At the same time, Corea continued to explore Latin American and classical music, fusion and jazz, using mainly piano, electric piano and Minimoog. For the rest of his life, he kept on touring, recording and collaborating with numerous musicians, and was awarded 25 Emmys. + +Chick Corea died from cancer on February 9, 2021 in Tampa, Florida. He was married to vocalist [a253240].Needs Votehttps://chickcorea.com/https://www.facebook.com/chickcorea/https://x.com/ChickCoreahttps://www.youtube.com/chickcoreahttps://en.wikipedia.org/wiki/Chick_Coreahttps://www.bluenote.com/artist/chick-corea/https://www.ecmrecords.com/artists/1435045717/chick-coreahttps://www.imdb.com/name/nm0179706/https://soundcloud.com/chickcoreahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/309754/Corea_Chickhttps://www.progarchives.com/artist.asp?id=4169https://www.allmusic.com/artist/chick-corea-mn0000110541A. CoreaArmando "Chick" CoreaArmando (Chick) CoreaArmando <<Chick>> CoreaArmando Anthony "Chick" CoreaArmando Anthony CoreaArmando Chick CoreaArmando CoreaC CoreaC, CoreaC. CoreaC. CoresC. CorreaC.CoreaCh. CoreaCh. KoreaChic CoreaChickChick Corea And FriendsChick Corea, Solo PianoChick CorreaChick CoréaChick KoreaChickcoreaChik CoreaCo. CoreaCoreaCorea ChickCorreaShick CoreaČik KoriaČiks KoreaКориаЧ. КориаЧ. КорияЧик КореаЧик Кориаチック・コリアチック・コレアReturn To ForeverChick Corea & FriendsCircle (5)Stan Getz QuartetThe Blue Mitchell QuintetRolf Kühn JazzgroupChick Corea Akoustic BandThe Chick Corea Elektric BandChick Corea Elektric Band IIChick Corea QuartetThe Chick Corea New TrioJoe Farrell QuartetMongo Santamaria And His Afro-Latin GroupGary Burton / Chick CoreaThe John Dentz Reunion BandChick Corea TrioBooker Ervin QuartetThe Chick Corea + Steve Gadd BandHåkon Mjåset Johansen QuartetThe Spanish Heart BandRemembering Bud Powell BandThree Quartets BandChick Corea TrilogyNow He Sings, Now He Sobs TrioChick Corea BandHubert Laws SeptetHubert Laws TrioHubert Laws Quartet + +37732Joe WilliamsJoseph GoreedBorn: December 12, 1918 in Cordele, Georgia, USA - Died: March 29, 1999 in Las Vegas, Nevada, USA +Joe Williams was a well-known jazz vocalist, a baritone singing a mixture of blues, ballads, popular songs, and jazz standards. Williams worked with Coleman Hawkins and Lionel Hampton before joining Count Basie's band in 1954. After leaving the Basie band in 1961, Williams led small ensembles singing popular songs, ballads, and blues. He was a frequent performer on television, both as a singer and as an actor. His album "Nothin' but the Blues" won a Grammy Award in 1984. + +Do NOT confuse with blues songwriter/performer [a=Big Joe Williams] ("Baby Please Don't Go") or [a=Jody Williams] ("Billy's Blues").Needs Votehttp://en.wikipedia.org/wiki/Joe_Williams_%28jazz_singer%29http://www.facebook.com/pages/Joe-Williams/106079109424181http://www.allmusic.com/artist/joe-williams-mn0000213590http://www.biography.com/people/joe-williams-9532453http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=371095&subid=0https://adp.library.ucsb.edu/names/104184Big Joe WilliamsJ. G. WilliamsJ. WilliamsJ.G. WilliamsJ.G.WilliamsJWJoeJoe 'Every Day' WilliamsJoe (Everyday) WilliamsJoe WilliamJoe Williams With OrchestraJoe WllliamsJoseph Corred WilliamsJoseph Goreed WilliamsJoseph Jerome WilliamsJumpin' Joe WilliamsLambert, Hendricks & RossRoss & WilliamsWayWilliamsДж. УильямсДжо ВилльямсДжо УилямзCount Basie OrchestraAndy Kirk And His OrchestraJoe Williams & FriendsJoe Williams and his OrchestraThe Big Three (6) + +37733Gerry MulliganGerald Joseph MulliganAmerican jazz saxophonist & composer, born 6 April 1927 in Queens, New York, USA, died 20 January 1996 in Darien, Connecticut, USA.Needs Votehttps://www.gerrymulligan.com/https://en.wikipedia.org/wiki/Gerry_Mulliganhttps://www.britannica.com/biography/Gerry-Mulliganhttps://www.imdb.com/name/nm0612302/https://adp.library.ucsb.edu/index.php/mastertalent/detail/332937/Mulligan_Gerryhttps://www.allmusic.com/artist/gerry-mulligan-mn0000542549G MulliganG, MulliganG. MuliganG. MulligamG. MulliganG. MulligannG.MulliganGarry MulliganGary MulliganGerald Joseph "Gerry" MulliganGerald Joseph MulliganGerald MulliganGerry HulliganGerry MuliganGerry Mulligan & CompanyGerry Mulligan & FriendGerry Mulligan = Джерри МаллигенGuerry MulliganJ MulliganJ. MulliganJ.M.Jerry MulliganMulinganMulliganMullighanmulliganДж. МаллигенДжерри МаллигенМълигамジェリー・マリガンThe Dave Brubeck QuartetMiles Davis And His OrchestraWoody Herman And His OrchestraElliot Lawrence And His OrchestraStan Getz QuartetChubby Jackson And His All Stars BandGerry Mulligan QuartetGerry Mulligan TentetteShorty Rogers And His GiantsAndré Previn And His OrchestraThe Miles Davis NonetThe New Gerry Mulligan QuartetBrew Moore SextetGerry Mulligan's Jam SessionThe Kai Winding SextetManny Albam And His Jazz GreatsBrew Moore SeptetGerry Mulligan & The Concert Jazz BandGerry Mulligan And His SextetGerry Mulligan QuintetGerry Mulligan's New SextetArt Farmer QuartetAlvino Rey And His OrchestraWoody Herman And The Swingin' HerdMiles Davis & His Tuba BandChubby Jackson's OrchestraGerry Mulligan - Paul Desmond QuartetGerry Mulligan And The Sax SectionGerry Mulligan And His OrchestraMal Waldron's All StarsGerry Mulligan SeptetGerry Mulligan OctetGerry Mulligan All StarsGerry Mulligan GroupAndré Previn EnsembleGerry Mulligan And The Jazz ComboJohn Graas QuartetGerry Mulligan New StarsGerry Mulligan Art Farmer QuartetBrew Moore All StarsMulligan ManiaMichel Legrand & Co.George Wallington SeptetThe Sound Of Jazz All-StarsJazz Giants 1958The Dave Brubeck Trio Featuring Gerry Mulligan + +37735Lee RitenourLee Mack RitenourAmerican guitarist and composer (* 11 January 1952 in Los Angeles, California). + +With over 30 charting "contemporary jazz" hits since 1976, Ritenour has been busy, contributing to over 3000 sessions of jazz, rock and Brazilian music. At the age of 16, while providing guitar at his first session with [a=The Mamas & The Papas], he was nicknamed "Captain Fingers" due to his dexterity. + +Father of [a2995755].Needs Votehttps://leeritenour.com/https://myspace.com/leeritenourhttps://en.wikipedia.org/wiki/Lee_Ritenourhttps://www.allmusic.com/artist/lee-ritenour-mn0000228444L RitenourL. RitenourL.RitenourLeeLee "Quack" RitenourLee (Freddie Green) RitenourLee R.Lee RetenoirLee RetenourLee RienauerLee RitenauerLee RitenaurLee RitenhourLee RitennourLee RitenoirLee RitenouerLee Ritenour'sLee Ritenour's 6 String TheoryLee RitenurLee RitneourLee RitnourLee RittenauerLee RittenaurLee RittenourRitenouerRitenourRitonouerThe Lee Ritenour BandЛ. РитенурЛи Ритенурリーリトナーリー・リトナーLove Unlimited OrchestraVictor Feldman's Generation BandFourplay (3)Henry Mancini And His OrchestraThe NY-LA Dream BandLalo Schifrin & OrchestraFriendship (3)Session IIGRP All-Star Big BandBrass FeverSugar Loaf ExpressThe Gentle ThoughtsL.A. WorkshopLee Ritenour & Friends + +37737Dave BrubeckDavid Warren BrubeckAmerican jazz pianist and composer. Born 6 December 1920 in Concord, California, USA, died 5 December 2012 in Norwalk, Connecticut, USA. +Younger brother of composer [a488682]. +Husband of [a1006047]. +Father of [a265658], [a416302], [a265660], and [a1981452].Needs Votehttps://www.davebrubeck.com/https://www.facebook.com/DaveBrubeckMusic/https://concord.com/artist/Dave-Brubeck/https://www.legacyrecordings.com/artists/dave-brubeck/https://en.wikipedia.org/wiki/Dave_Brubeckhttps://www.imdb.com/name/nm0115399/https://www.whosampled.com/Dave-Brubeck/https://adp.library.ucsb.edu/index.php/mastertalent/detail/201213/Brubeck_Davehttps://www.allmusic.com/artist/dave-brubeck-mn0000958533BrewbackBrn BeckBrubeckBrubecklBrubekBruberkBrubexkD BrubeckD BrubeckD-BrubeckD. BrubeckD.B.D.BrubeckD: BrubeckDaveDave BlubeckDave Brubeck Son Piano Et Ses RythmesDave BrubekDave BurbeckDavid BrubeckDavid W. BrubeckPrubeckБрубекД. БрубекДэйв Брубекדייב ברובקデイブ・ブルーベックデイヴ・ブルーベック戴夫布魯貝克The Dave Brubeck QuartetThe Dave Brubeck TrioDave Brubeck With StringsThe Dave Brubeck DuoDave Brubeck QuintetThe Dave Brubeck OctetThe New Brubeck QuartetDave Brubeck GroupThe Dave Brubeck BandFriends of Yo Yo MaThe Dave Brubeck Trio Featuring Gerry Mulligan + +38194Luis GascaLouis Angel GascaAmerican jazz trumpeter and flugelhorn player, born March 3, 1940 in Houston, Texas.Needs Votehttp://luis-gasca.blogspot.de/https://web.archive.org/web/20110209172848/www.jazzreview.com/articledetails.cfm?ID=957GascaL. A. GascaL. GascaL.G.Louie GascaLouis GascaLouis GascoLuis Angel GascaWoody Herman And His OrchestraMalo (2)Kozmic Blues BandWoody Herman And The Thundering Herd + +38201Louis ArmstrongLouis Daniel ArmstrongAmerican jazz trumpeter, cornetist, singer and bandleader, nicknamed "Satchmo" or "Pops". Along with [a=Fletcher Henderson] he was the instigator of the second wave of jazz, Swing. +Inducted into the Rock And Roll Hall Of Fame in 1990 (Early Influence). +[b]For his writing credits, do not use those of his wife [a=Lil Hardin-Armstrong] ("Struttin' With Some Barbecue", "Bad Boy", "Just For A Thrill", "Perdido Street Blues", "The King Of The Zulu's" among others)[/b] +Born 4 August 1901 in New Orleans, Louisiana, USA (often also noted as 4 July 1900, based on erroneous information from Armstrong himself). +Died 6 July 1971 in New York City, New York, USA. + +Winner of 1 Grammy Award: +- Best Vocal Performance, Male for [m=232350]Needs Votehttps://www.louisarmstronghouse.org/https://michaelminn.net/discographies/armstrong/https://en.wikipedia.org/wiki/Louis_Armstronghttps://www.imdb.com/name/nm0001918/https://www.britannica.com/biography/Louis-Armstronghttps://www.facebook.com/louisarmstrong/https://www.udiscovermusic.com/artist/louis-armstrong/https://npg.si.edu/exh/armstrong/https://www.treccani.it/enciclopedia/louis-daniel-armstrong_%28Enciclopedia-dei-ragazzi%29/https://adp.library.ucsb.edu/index.php/mastertalent/detail/101863/Armstrong_Louishttps://www.allmusic.com/artist/louis-armstrong-mn0000234518ArmstongArmstronArmstrongArmstrong L.Armstrong LouisArmstrong, L.Armstrong, LouisArmströngDaniel Loui "Satchmo" ArmstrongDaniel Louis "Satchmo" ArmstrongEllingtonL ArmstrongL, ArmstrongL. AmsstrongL. AmstrongL. ArmstronL. ArmstrongL. ArmstrongasL.A.L.ArmstrongLALoius ArmstrongLouieLouie ArmstrongLouisLouis "Satchmo" ArmstrongLouis 'Country & Western' ArmstrongLouis (Satchmo) ArmstrongLouis AgainLouis AmstrongLouis ArmonstrongLouis ArmstongLouis Armstrong "Satchmo"Louis Armstrong & Brass BandLouis Armstrong & His All Stars & Big BandLouis Armstrong '87 (Released in 1968)Louis Armstrong And OthersLouis Armstrong And The All StarsLouis Armstrong And The All-StarsLouis Armstrong Et Son OrchestreLouis Armstrong SatchmoLouis Armstrong With ChorusLouis Armstrong With Instrumental AccompanimentLouis Armstrong With OrchestraLouis Armstrong Y Sus SolistasLouis Armstrong a.o.Louis ArmstrongsLouis Satchmo ArmstrongLouise ArmstrongLouys ArmstrongLucky ArmstrongLuis ArmstragLuis ArmstrongMr ArmstrongMr. ArmstrongOnly LouisRouis ArmstrongSatchmoЛ. АрмстронгЛ.АрмстронгЛуи АрмстронгЛуис АрмстронгЛуј Армстронгアームストロングルイ・アームストロンクルイ・アームストロングルイ・アームストロング&ヒズフレンズ路易斯阿姆斯壯Satchmo (2)Louis Armstrong & His Hot FiveLouis Armstrong And His Sebastian New Cotton OrchestraKing Oliver's Creole Jazz BandEsquire All StarsThe Red Onion Jazz BabiesLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraLouis Armstrong And His All-StarsClarence Williams' Blue FiveKing Oliver's Jazz BandLouis Armstrong And His Dixieland SevenLouis Armstrong And His Savoy Ballroom FiveLil's Hot ShotsCarroll Dickerson's SavoyagersJohnny Dodds' Black Bottom StompersLouis Armstrong Orchestra & ChorusPerry Bradford Jazz PhoolsLouis Armstrong And His Hot FourJimmy Bertrand's Washboard WizardsLouis Armstrong And His Hot SixJohnny Dodds' Hot SixLouis Armstrong And His BandLouis Armstrong And His StompersLouis Armstrong And His FriendsTrixie Smith And Her Down Home SyncopatorsCarroll Dickerson And His OrchestraLouis Armstrong Newport International Jazz BandLouis Armstrong And His Concert GroupLouis Armstrong And His Sensational Big BandMetropolitan Opera House Jam SessionLouis Armstrong's Jazz Foundation SixThe Giants Of Jazz (3)Fats Waller's Jam SchoolEsquire All-American Jazz BandLouis Armstrong And The V-Disc All-StarsLouis Armstrong And His Hot Harlem Band + +38207Maynard FergusonWalter Maynard FergusonCanadian jazz trumpeter, and bandleader. + +Born: 4 May 1928 in Verdun, Montreal, Canada. +Died: 23 August 2006 in Ventura, California, USA (aged 78). + +Awarded the Order of Canada in 2005.Needs Votehttps://maynardferguson.com/https://www.allmusic.com/artist/maynard-ferguson-mn0000397042https://en.wikipedia.org/wiki/Maynard_Ferguson"Tiger" BrownFergusonM. F HornM. FergusonM.FergusonMaynardMaynard FerguesonMaynard Ferguson [as Tiger Brown]Maynard Ferguson's AllstarsMaynard FergussonMaynard FerusonMaynard FurgesonThe New Sounds Of Maynard FergusonW. M. FergusonW.M. FergusonW.Maynard FergusonМ. ФергюсонМ. ФергюссонМ.ФергюсонМейнрд ФергюсенФергюсонメイナード・ファーガスンメイナード・ファーガソン"Tiger" BrownFoxy CorbyMatt Parker (4)Anthony ZeccoStan Kenton And His OrchestraMaynard Ferguson With Concert Big BandRussell Garcia And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraPerez Prado And His OrchestraThe Maynard Ferguson Big BandClifford Brown All StarsHoward Rumsey's Lighthouse All-StarsMaynard Ferguson SextetGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraBob Keene OrchestraCBS Jazz All-StarsMaynard Ferguson & His OrchestraJohnny Richards And His OrchestraLeith Stevens' All StarsHot Rod Rumble OrchestraBud Shank And Three TrombonesMaynard Ferguson GroupMaynard Ferguson OctetBen Webster SextetMaynard Ferguson QuartetSal Salvador And His OrchestraPete Rugolo And His All StarsMaynard Ferguson And His Big Bop Nouveau BandBirdland Dream BandMilt Bernhart Brass EnsembleFour Trombone BandThe Maynard Ferguson Band + +38222Scott MacScott McShaneFirst spinning at the Wag club back in 1992 it was not long before he was offered a residence at the Limelight club in London. From then on Scott became a regular on the London club scene playing at parties such as Naked Lunch, Art, Fubar and the Gass club. + +Producing his first track "S.D.J" along with a young Jon Nelson and a bloke called [a=Pete Lazonby], the bug had well and truly been caught. Needs Votehttps://www.facebook.com/people/Scott-Mcshane/100086112678898https://soundcloud.com/scott-mcshane-966987844MacS MacS. MacS.MacSDJScot MacScottScott Mac.Scott MaxHutchDJ CamsGravity ZoneAztec (2)Scott McShane (2) + +38223Dutch CouragePaul ChambersNeeds VotePaul ChambersFlash HarryDancefloor GloryBulletproof (2)Archie (2)Dusty Bling + +3822412 Inch ThumpersAlan Prosser12 Inch Thumpers, the iconic UK hard house project and record label founded by DJ and producer Alan Prosser, has been a dominant force in dance music for more than two decades. Alan's breakout anthem “Don’t Cross The Line” became one of the most instantly recognisable tracks ever featuring on major compilations such as Ministry of Sound’s Hard House Euphoria. Alongside it, UK chart singles including “This Is The One,” “Thumper,” “Your Lips,” and “Pump It Up” helped define the sound of a generation, while club‑driven favourites like “50,000 Watts of Power,” “The Tumbler,” “Play The Game,” and “Back Once Again” cemented his reputation for producing pure, adrenaline‑charged anthems. + +Alan’s journey began at just 14 years old releasing music on legendary labels such as Ministry of Sound and Fantazia under aliases including Chiller Productions, Sophie’s Boys, and Housa Musika. In the late ’90s he launched the 12 Inch Thumpers record label, pioneering the bouncy, high‑impact sound that became a cornerstone of the early 2000s hard dance movement. Across nearly 80 releases, Alan sold hundreds of thousands of records worldwide, scored five UK Top 40 hits, and achieved a UK Dance Chart Number 1, all while continuing to innovate through multiple aliases and evolving production styles. + +As 12 Inch Thumpers, Alan has toured the globe with relentless energy, performing in Ibiza, China, Japan, South Africa, Australia, New Zealand, Canada, the USA, Brazil, Argentina, Singapore, Thailand, and every corner of Europe. His explosive sets have ignited major festivals, clubs, and international hard dance arenas, headlining with some of the world’s biggest DJs and solidifying his status as a true global ambassador of the genre. + +Now, in 2026, 12 Inch Thumpers enters a powerful new chapter. A world tour and exclusive new material mark the beginning of a fresh era — one that fuses his unmistakable hard house energy that made the name legendary with cutting‑edge modern production. The legacy continues, louder, sharper, and more electrifying than ever. + +This is the one — 12 Inch Thumpers, a.k.a Alan ProsserNeeds Vote12" Thumpers12' Thumpers12Inch ThumpersThumpersAlan ProsserAlan Prosser (2)Adrian Wragg + +38225Mobi DPhil WaleUK Hard House DJ & producer.Needs VoteMobi-DMoby-DM.D. (2)Phil WalePositive State (2) + +38228Jon BishopJon BishopHard Dance DJ / producer based in San Diego, CANeeds Votehttps://www.facebook.com/Jon-Bishop-108785795840947https://myspace.com/djjonbishophttps://web.archive.org/web/20080720014521/http://www.djjonbishop.com/BishopBliss (17)System Shock (3) + +38229IlogikBahram NikfarIlogik is an ex Hardcore turned Hard Dance Producer / DJ and the first artist in Hard Dance to incorporate mixing visuals live and in sync with his DJ set. He also runs the highly respected [l=Elasticman Records] imprint. He is very well known for his technical abilities on the decks and is at the forefront of this.Needs Votewww.elasticman.comhttps://www.facebook.com/DJILOGIK/E-LogicIllogikE-LogicI G ProjectBahram Nifkar + +38231PsycloneMark SissensCorrectMark Sissens + +38232The DoktorDavid EdgeCorrectDJ FadeTechnationDave NationDa EdgeProject X (3)Starchaser (2)Carnage (3)Pulsar (4)David Edge + +38309Baby Doc & S-JCorrectBaby Doc & Miss S-JBaby Doc & SJBaby Doc Feat S-JBaby Doc Feat. S-JBaby Doc, SJBaby Joc & SJBabydoc & SJS-J & Baby DocSJ & Baby DocSJ And Baby DocThe Hellfire ClubQuentin FranglenSara Jimenez-Heaney + +38588Abel RamosJosé Abel Ramos JiménezSpanish house/techno/trance/hard trance DJ and record producer from Madrid. He started to DJ in 1990, while in 2001 he started to DJ outside Spain and until now he has performed in The Netherlands, UK, Sweden, Italy, Germany, Switzerland, France, Peru, Morocco, Australia and Indonesia. The highlight came when he was chosen as the national DJ for Sensation in Madrid 2008. +Abel was voted the best national DJ award on two occasions by Deejay Magazine in Spain. + +Apart from being a DJ, Abel Ramos has produced for a number of international labels and hosts a weekly radio program called Concept Music on LocaFM in Spain.Needs Votehttp://www.facebook.com/abelramos.eshttp://www.instagram.com/djabelramoshttp://myspace.com/abelramoshttp://soundcloud.com/abelramoshttp://www.threads.net/@djabelramoshttp://twitter.com/djabelramoshttp://www.youtube.com/@AbelRamosofficialA. RamosA.RamosAbelAbel D.J.Abel DJAbel RamozAbl RamosDJ AbelDJ Abel RamosDj AbelJose Abel Ramos JimenezJosé Abel RamosRamosSarsAttica (3)The New Iberican League + +38910Prime MoverNeeds VoteGrinderViolatorzDave ParkinsonAron Paramor + +38943Lock 'N LoadFrank van Rooijen & Niels PijpersDutch house duo, mostly well-known for their club track 'Blow Ya Mind'. Lock 'n Load consists of Frank van Rooijen and Niels Pijpers.Needs VoteLock "N" LoadLock & LoadLock 'N LordLock 'N' LoadLock 'N'LoadLock 'n LordLock 'n' LoadLock And LoadLock En LoadLock N LoadLock N' LoadLock `n` LoadLock `n´ LoadLock n LoadLock n' LoadLock ´n´LoadLock"N"LoadLock' N LoadLock' N' LoadLock'N LoadLock'N'LoadLock'N'NloadLock'n LoadLock'n'LoadLock-N-LoadLockn' LoadLock´N´RoadPeter GRooijen and N. PijpersMisdemeanourDC ChantGray-ScaleMass AppealFrank Van RooijenNiels Pijpers + +39115Marcella WoodsMarcella WoodsVocalist best known for working with trance producers such as Matt Darey. Sister of [a=Michael Woods].Needs Votehttps://marcellawoods.comhttps://www.facebook.com/MarcellaWoodsMusichttp://www.myspace.com/marcellawoodsmusic1M. WoodsMarcela WoodsMarcellaMarcella A WoodsMarchella WoodsMarcia WoodsMichelle WoodsSeany B.WoodsLittle Ms. MarcieM3Out Of Office + +39204Yoji BiomehanikaYoji MabuchiJapanese hardtrance & hardstyle DJ and producer.Needs Votehttps://twitter.com/yojidotdjhttp://www.facebook.com/yojiofficialhttp://www.yoji.djhttp://ameblo.jp/yoji-hellhouse/BiomehanikaDj YojiJoji BiomehanikaJoyi BiomechanicaY. BiomehanikaY. BiometahanikaY.BiomehanikaYOJIYogi BiomehanikaYohi BiomehanikaYojiYoji "The Maestro" BiomehanikaYoji BiohemanikaYoji BiomecanicaYoji BiomechanikaYoji BiomehanicaYoji BиomexahиkaYoji ВиомеханикаYoji ビオメハニカYojiBiomehanikaYoji•BиomexahиkaYojl Blomehanikaヨージ・ビオメハニカOzaka OzMutant DJBionicoK.G.P.YoranDr. FrequencyNet Shop BoysBruno SanmetalicaThe Arcade NationSick 36Play Boyz + +39260The Invisible Man (3)Jerry DickensCorrectInvisible ManRed JerryRJ ProjectRed SunJerry DickensThe Quiet ManJag Limbo + +39336Chris C & Dynamic InterventionNeeds Major ChangesChris C & D.I.PChris C & D.I.P.Chris C & DIPChris C + Dynamic InterventionChris C VS. DipChris C v. Dynamic InterventionChris C vs DipChris C vs. Dynamic InterventionChris CMik Cree + +39507RaniRani KamalesvaranAustralian singer, born 17 September 1971 in Sydney; daughter of Australian-based singer, [a327744].Needs VoteRanniRani Kamal + +39574Michael NymanMichael Laurence NymanMichael Nyman (born 23rd March, 1944 in Stratford, London) is an English composer, pianist, conductor, author, musicologist, photographer and film maker. He composes minimalist music and is known for his film scores, especially for the films of [a1593309] and [a702612], and he has also written chamber music for different ensembles (often performed by [a595202]) and numerous operas.Needs Votehttps://www.michaelnyman.com/https://www.facebook.com/MichaelNymanMusic/https://www.youtube.com/channel/UCCAuVN4JcLYNaG7b-XEPaYwhttps://myspace.com/michaelnymanmusichttps://www.famouscomposers.net/michael-nymanhttps://en.wikipedia.org/wiki/Michael_Nymanhttps://www.imdb.com/name/nm0006219/M. NymanM.NymanMichael NymannMichel NymanMichelleNymanThe Michael Nyman OrchestraМайкл Найманマイケルマイケル・ナイマン麥可尼曼마이클 니먼The Scratch OrchestraThe Campiello BandThe Michael Nyman BandThe Michael Nyman Orchestra + +39575James HornerJames Roy Horner* 14. August 1953 in Los Angeles, California; † 22. June 2015 in Los Padres National Forest, California + +American film music composer, conductor and orchestrator,.born August 14, 1953 in Los Angeles, California, USA, died in a plane crash June 22, 2015 in the Los Padres National Forest, California, USA. In 1997, he won two Academy Awards for his score and song compositions for the film "Titanic". + +Horner started playing piano at the age of 5. He studied at the Royal College Of Music in London, under [a=György Ligeti]. He received his bachelor's degree in music from the University of Southern California, and eventually earned a master's and started working on his doctorate, studying with [a=Paul Chihara], among others. After several scoring assignments with the American Film Institute in the 1970's, he finished his teaching of music theory at UCLA and turned to film scoring. + +He made his breakthrough in 1982, when he scored "Star Trek II: The Wrath of Khan". In total, he has scored over 100 films, but he has also done some music for short films, three orchestral pieces and music for television, including the current theme music for the CBS Evening News (beginning September 5, 2006). + +Horner's most known scores include: "Aliens", "Willow", "An American Tail: Fievel Goes West", "Legends of the Fall", "Braveheart", "Apollo 13", "Titanic", "A Beautiful Mind" and "The Mask of Zorro", among others. He has worked often with director [a=Ron Howard], a collaboration that started with the 1985 film "Cocoon". Correcthttp://jameshorner-filmmusic.com/https://www.facebook.com/jameshornerfilmmusic/https://en.wikipedia.org/wiki/James_Hornerhttps://www.imdb.com/name/nm0000035/https://www.famouscomposers.net/james-hornerhttps://www.last.fm/fr/music/James+HornerHomerHorenerHornerHorner JamesHorner, J.Horner, JamesJ HornerJ. HernerJ. HomerJ. HonnerJ. HorneJ. HornerJ. WarnerJ.HomerJ.HornerJames HomerJames HonerJames HormerJames HorneJames Roy HornerJane HornerJanet HornerL. HornerOrchestra Conducted By James HornerДжеймс ХорнерХорнерジェイムズ・ホーナー詹姆斯·霍納詹姆斯・霍納詹姆斯霍納 + +39692Dave ParkinsonDavid Nathan ParkinsonBritish producer and engineer of dance, house, trance and rock music. Signed to [l=Toolroom Publishing]. + +Parkinson has worked as a producer/engineer for artists such as [a=Paul Oakenfold], [a=Dale Anderson], [a=John Askew], [a=Simon Patterson], [a=Jordan Suckley], [a=Greg Downey],[a=Matt Davey], [a=Sophie Sugar], [a=Simon Bostock], [a=Ad Brown], [a=Anil Chawla], [a=Tim Davison], [a=Mark Eteson], [a=Matt Everson], [a=Kos (2)], [a=Kate Lawler], [a=Mark Leanings], [a=Ben Nicky],[a=Jon Rundell], [a=Paul Thomas (2)], [a=Gareth Wyn], [a=Behrouz], [a=Chris Barratt], [a=Sam Ball] + +Parkinson has been the in-house engineer for [l=Duty Free Recordings], and has produced [a=Fergie], [a=Lottie], [a=Gavyn Mytchel] and [a=Tall Paul]. + +In 2004 he joined alternative rock band [a=Happy Mondays] as the keyboard player, writing and producing their 2007 album "Uncle Dysfunktional". As a producer he has been working with indie rock band [a=Babyshambles], most recently on "The Blinding E.P." (2006)Needs Votehttp://web.archive.org/web/20140530001805/http://www.toolroompublishing.com/artists/dave-parkinson-1D ParkinsonD. ParkingsonD. ParkinsonD. ParlinsonD.ParkinsonDPDaveDavid Nathan ParkinsonDavid ParkinsonParkinsonWargrooverRevolution 9FalconiGroovy BastardsTQ OneGrinderPrime MoverInner-VationRevolution 9Tobacco BoysHouse ProudZoomroomViolatorzMen In Black (3)Loop LaticeStory Of Oz + +39874The Ambrosian SingersLondon based choral group, founded in 1951 by conductor [a441528] and musicologist [a1548002]. From 1961 to 1966, during McCarthy's tenure as choral director of [a262940], when directed by McCarthy, the Ambrosian Singers were called the London Symphony Orchestra Chorus. [b]Not to be confused with [a839085][/b].Needs Votehttps://en.wikipedia.org/wiki/Ambrosian_Singershttps://www.bach-cantatas.com/Bio/Ambrosian-Singers.htmAbrosian ÉnekegyüttesAmbrosia ChoirAmbrosia KorosuAmbrosian ChoirAmbrosian ChorAmbrosian ChorusAmbrosian Ladies ChorusAmbrosian Men's ChoirAmbrosian Men's Choir Of London, EnglandAmbrosian Opera ChorusAmbrosian SIngersAmbrosian SingerAmbrosian SingersAmbrosian Singers (Women's Voices)Ambrosian Singers And PlayersAmbrosian Singers ChoirAmbrosian Singers ChorusAmbrosian Singers Of LondonAmbrosian Singers*Ambrosian ÉnekegyüttesAmbrosian-SingersAmbrosians SingersAmbrossian SingersAmbrozijanski ZborAmbrozijski ZborAz Ambrosian ÉnekegyüttesChoirChorusCôro AmbrosianoDe Ambrosian SingersEl Ambrosian SingersGirl's ChorusGirls' ChorusLadies Of The Ambrosian ChorusLondon Ambrosian ChorusLondon Ambrosian SingersLos Ambrosian SingersLos Cantorers AmbrosianosLos Cantores AmbrosianosMembers Of The Ambrosian SingersMembers of the Ambrosian SingersMembres Des Ambrosian SingersMembres des Ambrosian SingersMen's ChorusMitglieder der Ambrosian SingersThe Ambrosia ChoirThe Ambrosia SingersThe Ambrosian ChoirThe Ambrosian ChorusThe Ambrosian ConsortThe Ambrosian Opera ChorusThe Ambrosian Singers & PlayersThe Ambrosian Singers And PlayersThe Ambrosian Singers And SoloistsThe Ambrosian Singers ChoirThe Ambrosian Singers Of LondonThe Ambrosian Singers With Organ And ChimesThe Ambrosian Singers, String Ensemble And Brass EnsembleThe Ambrosius Singers Of LondonThe Ladies Of The Ambrosian ChorusThe London Ambrosian SingersThe London Ambrosian Singers And ConsortWomen's Voices Of The Ambrosian SingersXор «Амброзиан»Певческая Капелла Святого АмвросияХор "Амброзиан"Хор «Амброзиан»アンブロシアン合唱団アンブロジアン・シンガーズアンブロジアン合唱団The Ambrosian Opera ChorusGerard O'BeirneMaryetta MidgleyVernon MidgleyGareth RobertsJohn McCarthyLynda RichardsonPeter BamberLindsay BensonPeta BartlettLeslie FysonMichael PearnDavid BeavanJohn NobleSusan BullockLawrence WallingtonShirley MintyEmma AmosAlison MacgregorRosemary AshePatricia ClarkJoyce JarvisElizabeth HarrisonMichael George (3)Bruce OgstonDenis StevensPatricia ClarkeAntony RansomeAngela JenkinsDenise ShaneNigel WaughGlenys GrovesMichael GoldthorpeHelen AttfieldAnn ButlerJulie KennardLindsay JohnGerald PlaceDebra SkeenPatrik HalsteadValerie McFarlanPhilip DoughanRichard Day-LewisMarian DaviesDavid Stephenson (3)Ian HumphrisDoreen Murray (2)Oliver BroomeAnna Gordon (5)The Strictly Unreasonable Zang Tuum Tumb Big Beat Colossus + +39987Marcel WoodsMarcel ScheffersDutch DJ and producer.Correcthttp://www.marcelwoods.comhttp://www.facebook.com/marcelwoodshttp://www.twitter.com/marcelwoodshttp://www.youtube.com/djmarcelwoodsDJ MarcelDJ Marcel WoodsM. WoodsMarcelWoodsMarcellaWoodsMr. RowanMarcel ScheffersWoody Woodspecker + +40042Barabas & OD1CorrectBarabas & 001Barabas & OD 1Barabas & OdiBarabas + OD1Barabas And OD1Barabas God OneBarabas v. OD1Barbaras & ODiBarrabas & Do IOD1 v. BarabasBleep & BoosterShane MorrisJohn Vaughan (2) + +40235Hubert LawsHubert LawsFlutist, born : 10th November 1939, Houston, Texas, U.S.A. +Elder brother of saxophonist [a=Ronnie Laws], vocalists [a=Eloise Laws], [a=Debra Laws] and singer/songwriter [a734239]. +Needs Votehttp://www.hubertlaws.comhttp://en.wikipedia.org/wiki/Hubert_Lawshttp://www.whosampled.com/Hubert-Laws/http://www.allmusic.com/artist/hubert-laws-mn0000234374https://adp.library.ucsb.edu/names/205699B6H. LawsHerbert LawsHubart LawsHubertHubert LawaHubert Laws Jr.Hubert Laws, JrHubert Laws, Jr.Hubert LoursHubert LowsHurbert LawsLawsХуберт ЛоусХьюберт Лозヒューバート・ロウスヒューバート・ロウズヒューバート・ローズSkyAsh 7Gil Evans And His OrchestraThe CrusadersCount Basie OrchestraThe Phoenix AuthorityLalo Schifrin & OrchestraThe Ernie Wilkins OrchestraCTI All-StarsCBS Jazz All-StarsThe Bob Magnusson QuintetSuperfriends (2)Hubert Laws GroupHubert Laws SeptetHubert Laws TrioHubert Laws Quartet + +40287Jack HendersonAmerican jazz saxophonist.Needs VoteJ. HendersonCharlie Barnet And His OrchestraLarry Clinton And His OrchestraBenny Goodman And His Orchestra + +40892Uwe WagenknechtUwe WagenknechtNeeds Votehttp://www.djwag.dehttp://www.myspace.com/djwagDJ Uwe WagenknechtDJ WagEwe WagenknechtU. WagenknechtU.WagenknechtUwe WagenknachtUwe WalgenknechtWagenknechtWagenknecht, UweDJ WagDj PackardPro-ActiveDark A.T.8YakoozaDisc-O-ThekMikadoPro-TechBasic Inc.Mind XNightclubFreebassUBMAlternative EnergySound Of OverdoseCosmik VisionSynergy At WorkKnorzSyntexSpacelab (2)Cycle On FiveY (3)Velvet LippsFragile 2001Le Voyage (2)Maga & Star + +41070SuccargoCorrectSurrcargoDJ Jeffrey & De-LeitR. LeiteritzJ. Fokkens + +41107Michael MasserMichael William MasserAmerican producer, songwriter and musician, born on March 24, 1941 in Chicago, Illinois. +Died on July 9, 2015, at the age of 74 in Rancho Mirage, California.Needs Votehttps://en.wikipedia.org/wiki/Michael_Masserhttps://www.imdb.com/name/nm0557247/E. MasserH. MasserM .MasserM MasserM, MasserM. HansserM. HasserM. M<asserM. MaserM. MasselM. MasserM. MasseryM. MassserM. MasterM. MesserM. MessnerM. NassarM. NasserM. W. MasserM.. MasserM.MasserM.MassorMIchael H. MasserMaserMasseMasserMasser M.Masser MichaelMasser, MMasser, M.Masser, MichaelMassirMasslaMasslerMasswrMesserMichaei MasserMichael BasserMichael H. MasserMichael HasserMichael M-MasserMichael M. MasserMichael MaserMichael MassarMichael MasseMichael MassenMichael MassnerMichael MesserMichael William MasserMike MasserMusserM・マッキーN. MasserNassarNasserМ. МассерМ. Мессер + +41320AlphazoneGerman hard trance duo ([a=Alexander Zwarg] & [a=Arne Reichelt]), formed in 1995.Needs Votehttps://en.wikipedia.org/wiki/AlphazoneAlpha ZoneD-MentionSaturatorPump MachineNebulus (2)NightflightOverload (10)Bias Bros.BasswizzardsCrusaderArne ReicheltAlexander Zwarg + +41401Carmell JonesWilliam Carmell JonesAmerican jazz trumpet player, born July 19, 1936 in Kansas City, Missouri and died November 7, 1996 in Kansas City, Missouri. +Needs Votehttps://web.archive.org/web/20121227145223/http://mitglied.multimania.de/condouant/inhalt/carm/carmell.html http://en.wikipedia.org/wiki/Carmell_JonesC. JonesCarmel JonesCarmell W. JonesJonesKansas LawrenceNathan Davis QuintetMombasaThe Horace Silver QuintetGerald Wilson OrchestraSFB Big BandThe Red Mitchell - Harold Land QuintetJimmy Woods SextetThe Gerald Wilson Big BandOliver Nelson And The "Berlin Dreamband"Steve Miller K.C. Big BandCarmell Jones Quartet + +41595Jon The Dentist & Ollie JayeCorrectJon & OllieJon & OlliesJon The Dentist & Oli JJon The Dentist & Ollie JJon The Dentist & Ollie JayJon The Dentist / Ollie JayeJon The Dentist And Ollie JayeJon The Dentist V Ollie JayeJon The Dentist Vs Ollie JayJon The Dentist Vs Ollie JayeJon The Dentist Vs. Ollie JayJon The Dentist v. Ollie JayeJon The Dentist vs Ollie JayeJon The Dentist vs. Ollie JayeJon The Dentist, Ollie JayeJtD & Ollie JayeOllie J vs. Jon The DentistOllie Jay & Jon The DentistOllie Jaye & Jon The DentistOllie V Jon The DentistOllie Vs Jon The DentistOllie Vs. Jon The DentistOllie v. Jon The DentistOllie vs. Jon The DentistOllie JayeJohn Vaughan (2)Oliver Jeary + +41715Aloys KontarskyGerman pianist and professor at the Hochschule für Musik in Cologne. +Born 14 May 1931 in Iserlohn, Germany. +Died 22 August 2017. +He was married to [a=Gisela Saur-Kontarsky]. Since the 1950s, together with his brother [a=Alfons Kontarsky], he had been an early participant and later a teacher at the 'Internationalen Ferienkurse für Neue Musik in Darmstadt'. They both have premiered and recorded contemporary and avantgarde music such as the works of [a=Karlheinz Stockhausen]. His youngest brother is [a=Bernhard Kontarsky].Needs Votehttps://de.wikipedia.org/wiki/Aloys_KontarskyAlois KontarskyAlois KontaskyKontarskyAlfons & Aloys Kontarsky + +42306Jas Van HoutenJasper van OosterhoutDutch producer from Zoetermeer. His entirely own style varied from funky to progessive/trance. He started to buy some studio-gear round 1995 with some friends (Joff Roach, Tim J). A few years later he decided to sign a contract with BPM-Dance. +His co-operations with DJ Melvin and DJ the Freak also were successful. Big ones like "Din Dah" -which was made in cooperation with The Freak- had reached UK's most important dance chart of Judge Jules and was re-released on Nebula Records. In 2000 he decided to leave BPM-dance, signed a contract with Tripoli Trax (Pure Groove) and did various releases and remixes under the name "Netherman". In 2002 came back to BPM-dance and released the track "Heavens Gate" certainly he left BPM-dance again. +Correcthttps://soundcloud.com/jasvanhoutenhttps://www.facebook.com/jas.van.houten/J. v. d. HoutenJ. van HoutenJan van HoutenJas Van OutenJas v. HoutenNether ManJ. van OosterhoutJas Woods + +42458Mick ShinerMichael J. ShinerSetup [l280323] (publishing company) with [a60243] in 1998.Needs Votehttps://www.restlessmindsmusic.com/M. ShinerMickShinerNylonKumaraPhlash!N-R-G JamsManfishDa JunkiesNu-RenegadesUndergraduatesJamaica Mean TimeJunk (43) + +42776Tomorrow PeopleElectronic duo from UK.Needs VoteThe Tomorrow PeopleLee HaslamPaul Maddox + +43567Shane MorrisCorrectMorrisS, MorrisS. MorrisBarabasBarabas & OD1Bleep & Booster + +43570CommitteeCorrectComitteeCommiteCommiteeCommitteCommtieThe CommitteThe CommitteeNatureDimas & MartinezThe King Of HouseBosstunePrimevalT.U.S.O.M.VibemanZentralThe First LevelGlobal BasslineBCAGlobal MissionPuerta Del SolControl (5)Magic MelodyTrance LineCabasa (2)DJ C.C.Revolution (7)Intelect BassD.L.A.Ritz (7)Phantom (50)J.J. De La FuenteDimas Carbajo + +43786Richard WilliamsRichard Gene WilliamsAmerican jazz trumpet player +Born May 4, 1931 in Galveston, Texas, died November 4, 1985 in Jamaica, Queens, New York +Performed with [a167055], [a258088], [a200815], [a10095], [a12633], [a29958], [a272016], [a145257], and [a271154] among others.Needs Votehttps://en.wikipedia.org/wiki/Richard_Williams_(musician)Dick WilliamsR. WilliamsRichard G. WilliamsRichard Gene WilliamsRichard W. GillisRichard William GillisRichards WilliamsRichie WilliamsRitchie WilliamsRolf EricsonWilliamsРичард Уильямсリチャード・ウィリアムスリチャード・ウィリアムズDuke Ellington And His OrchestraEarl Hines And His OrchestraCharles Mingus And His Jazz GroupOliver Nelson And His OrchestraCharles Mingus Jazz WorkshopJohn Handy QuintetSlide Hampton OctetThe Ernie Wilkins OrchestraCharles Mingus SextetMingus DynastyThe Oliver Nelson SextetGeorge Russell OrchestraBooker Ervin QuintetHilton Ruiz QuintetDuke Jordan QuintetVera Auer QuintetGigi Gryce QuintetSam Jones 12 Piece BandThad Jones & Mel LewisGigi Gryce SextetBross Townsend Quintet + +44128Hal SingerHarold Joseph Singer.American jazz and R&B saxophonist and bandleader. +Born : October 08, 1919 in Tulsa, Oklahoma; died August 18, 2020 in Chatou, Yvelines, France. + +"Hal" worked with : Ernie Fields, Jay McShann, Oran "Hot Lips" Page, with his own small group, "The Orioles", Charles Brown, Roy Eldridge, Coleman Hawkins and others.Needs Votehttps://en.wikipedia.org/wiki/Hal_Singerhttps://adp.library.ucsb.edu/names/343966Fedores-SingerH. SingerH.SingerHal "Cornbread" SingerHal 'Cornbread' SingerHal 'Oklahoma' SingerHall SingerHarold "Hal" SingerHarold Joseph SingerHarold SingerSingerRoy Eldridge And His OrchestraHal Singer And His OrchestraHal Singer SextetBlues & Boogie ExplosionHal Singer QuartetHal Singer BandPhilly Joe Jones OctetThe Hal Singer Jazz QuartetHal Singer QuintetHal Singer & His All StarsHall, Stewart, Bruce, Antolini And Friends + +44131Willis JacksonWillis JacksonWillis Jackson (born April 25, 1932, Miami, Florida, USA - died October 25, 1987, New York City, New York, USA) was an American jazz and rhythm and blues tenor saxophonist. He played with [a258696], the singer [a136013] (to whom he was married) and others. His nickname was "Gator" or "Gator Tail". + + +Needs Votehttps://en.wikipedia.org/wiki/Willis_Jackson_(saxophonist)https://books.discogs.com/credit/545538-willis-jacksonhttps://www.allmusic.com/artist/willis-gator-jackson-mn0000588132/biography"Gator Tail" JacksonJacksonW JacksonW. JacksonWillie "Gator Tail" JacksonWillie JacksonWillisWillis "Gaitortail" JacksonWillis "Gator Tail" JacksonWillis "Gator Tail" Jackson And His OrchestraWillis "Gator Tale" JacksonWillis "Gator" JacksonWillis "Gatortail" JacksonWillis 'Gator Tail' JacksonWillis 'Gator Tails' JacksonWillis 'Gator' JacksonWillis Gator JacksonWills JacksonHarlem Underground BandCootie Williams And His OrchestraWillis Jackson And BandWillis Jackson QuintetWillie "Gator Tail" Jackson & The Four GatorsWillis Jackson & His OrchestraWillis Jackson Quartet + +44453D-BopNeeds VoteB-BopD BopD BopsD'BopD-BoysDBopDbopDaxKobayashi MaruAndy AllderDave Cross + +45102Grady TateGrady Bernard TateAmerican jazz drummer and singer, born 14 January 1932 in Durham, North Carolina, USA, died 8 October 2017 in New York City, New York, USANeeds Votehttps://web.archive.org/web/20080625061511/http://www.coas.howard.edu/music/Tate.htmlhttps://en.wikipedia.org/wiki/Grady_Tatehttps://www.drummerworld.com/drummers/Grady_Tate.htmlhttps://adp.library.ucsb.edu/names/346315G. TateGrade TateGradey TateGradie TateGradley TateGradyTateГрейди Тейтグラディ・テイトグラデイ・テイトQuincy Jones And His OrchestraBilly Taylor TrioThe Wes Montgomery QuartetStan Getz QuartetIllinois Jacquet And His All StarsZoot Sims QuartetOliver Nelson And His OrchestraThe Phoenix AuthorityThe Russian Jazz QuartetThe Ernie Wilkins OrchestraHank Jones TrioNew York Jazz QuartetJimmy Jones TrioPer Husby OrchestraThe Bob Thiele CollectiveGary McFarland & Co.Ray Brown's All StarsCaiola ComboPeter Herbolzheimer All Star Big BandRomantic Jazz TrioNew York New York (2)The Benny Carter GroupThe Django Reinhardt FestivalMichel Legrand & Co.The Fisher Fidelity Standard Jazz BandHubert Laws SeptetHubert Laws Quartet + +45107Gene AmmonsEugene Stanley AmmonsAmerican jazz tenor saxophonist. Also known as [a4640839]. +Born April 14, 1925, Chicago, Illinois, USA. +Died August 6, 1974, Chicago, Illinois, USA. +Son of pianist [a=Albert Ammons]. +Needs Votehttp://en.wikipedia.org/wiki/Gene_Ammonshttps://adp.library.ucsb.edu/names/301337https://hardbop.tripod.com/ammons.htmlhttps://www.jazzdisco.org/gene-ammons/AmmonsAmonsAnnonsCarpenter-LubinskyEugene AmmonsF. FosterG AmmonsG. AmmonG. AmmonsG.AmmonsGene "Jug" AmmonsGene 'Jug' AmmonsGene Ammons & GroupGene Ammons And The BlazersGene Ammons GroupGene AmonsGenne AmmonsJ. AmondsJug (8)Woody Herman And His OrchestraBilly Eckstine And His OrchestraSonny Stitt BandLeo Parker's All StarsGene Ammons And His OrchestraGene Ammons QuintetGene Ammons QuartetGene Ammons SextetGene Ammons' All StarsGene Ammons And His BandWoody Herman & The Second HerdGene Ammons - Sonny Stitt QuintetGene Ammons - Sonny Stitt SeptetJimmy Dale Band + +45593Ali WilsonAlistair James WilsonTech Trance producer from Sidcup, England, UK +Owner of [l47060]Correcthttp://www.aliwilson.co.uk/https://www.facebook.com/aliwilsonofficialhttps://soundcloud.com/aliwilsonhttps://myspace.com/djaliwilsonhttps://twitter.com/DjAliWilsonhttps://www.youtube.com/user/aliwilson2khttps://www.instagram.com/djaliwilson/https://www.madeartists.co.uk/ali-wilson-bioA WilsonA. WilsonA.WilsonWilsonElectrilogyDigital KillasOff Key (2) + +45687Charlotte CaffeyCharlotte Irene CaffeyUS American lead guitarist and keyboardist for [a=Go-Go's] born October 21, 1953, in Santa Monica, California. + +She is married to [a=Jeff McDonald], mother of [a=Astrid McDonald]. +Needs Votehttp://en.wikipedia.org/wiki/Charlotte_CaffeyC CaffeyC. CafeyC. CaffeyC. ChaffeyC. GaffeyC.CaffeyCafeyCaffeCaffeyCaffreyCaffyCh. CaffeyCharlotteCharlotte (The Go'Go's)Charlotte CaffreyCharlotte CaffyCharlotte CasseyCharlotte ChaffeyCoffeyyeffaCGo-Go'sThe GracesEyes + +45768Don SebeskyDon SebeskyAmerican trombonist, composer, conductor, arranger & author. +Born December 10, 1937, Perth Amboy, New Jersey, USA. +Died April 29, 2023, Maplewood, New Jersey, USA. +Father of [a883278] and [a3134482]. +Wirter of "The Contemporary Arranger" book.Needs Votehttp://en.wikipedia.org/wiki/Don_Sebeskyhttps://www.imdb.com/name/nm0781043/http://www.whosampled.com/Don-Sebesky/https://adp.library.ucsb.edu/names/342928D SebeskyD. LebeskyD. SabeskyD. SebaskyD. SebeskiD. SebeskyD.J. SebeskyD.S.D.SebeskyDS. SebeskyDan SebeskyDon DebeskyDon J. SebeskyDon SebaskyDon SebeskeyDon SebestyDon SebiskyDonald J. SebeskyDonald John "Don" SebeskyDonald John SeberkyDonald John SebeskyDonald SebeskySebeskySebesky DonДон Себескиドン・セベスキーStan Kenton And His OrchestraDon Sebesky's OrchestraMaynard Ferguson & His OrchestraThe Contemporary Arranger's WorkshopBill Russo And His OrchestraChet Baker Group + +45876Eden AhbezGeorge Alexander AberleEden Ahbez (born April 15, 1908 – died March 4, 1995) was an American songwriter and recording artist of the 1940s-1960s, whose lifestyle in California was influential on the hippie movement. He was known to friends simply as ahbe. +Ahbez composed the song "Nature Boy," which became a #1 hit for eight weeks in 1948 for Nat "King" Cole and has since become a pop and jazz standard. +Needs Votehttps://edenahbez.com/https://ebalunga.bandcamp.com/https://en.wikipedia.org/wiki/Eden_ahbezhttps://bcxists.wordpress.com/https://adp.library.ucsb.edu/index.php/mastertalent/detail/111374/ahbez_edenA. AbezA. AhbezAbbaAbbezAben AhbezAbezAbhezAden AbezAden AhbetAden AhbezAhbaAhbexAhbezAhbez EdenAlbezAmhezAnbezAshbettDeden AhbezE AhbezE. AbbaE. AbbazE. AbberE. AbezE. AbhezE. AhbesE. AhbetzE. AhbezE. AmbezE. ahbezE.AShbezE.AbhezE.AhbezEban AhbezEben AhbezEben AlbezEben ArbezEdan AhbezEden (Nature Boy) AhbezEden - AhbezEden AbbaEden AbbazEden AbbezEden AbbèsEden AbezEden AbhezEden AhbergEden AhbetzEden Ahbez "Nature Boy"Eden Ahbez “Nature Boy”Eden AlbyEden ArbezEden AshbezEden AybezEden EhbezEden HabezEden-AhbezEden-HabezEden/AhbezEdenahbezEmil AhbezEpen AhbecF. AhbezHabezI. AbezIben AhbezIden AbezIden AhbezS. Obhezahbeze. ahbaze. ahbezeden ahbezáhbezАбезАгезЭ. АбецEden AbbaAhbe CasabeNature Boy (19) + +46163Paulinho Da CostaPaulo Roberto da CostaPaulinho Da Costa, born May 31, 1948 in Rio de Janeiro, Brazil, is a percussionist and started his career playing in various Brazilian ensembles and samba groups. Arriving in the USA in 1973, Paulinho played in Sergio Mendes' band for four years before becoming one of the most in-demand percussionists of LA's recording studios in the 1980's. He has recorded with [a=Quincy Jones], [a=Michael Jackson] (on the multi-platinum trilogy of "Thriller," "Bad" and "Off The Wall"), the multi-platinum and biggest selling soundtrack of all time [m23443], [a=Toto], [a=Madonna], [a=Ella Fitzgerald], [a=Sarah Vaughan], [a=Diana Krall], [a=Claus Ogerman] and countless others. Paulinho Da Costa has also sporadically released solo albums for [l=Pablo Records] and [l=A&M Records].Needs Votehttps://www.paulinho.com/https://en.wikipedia.org/wiki/Paulinho_da_Costahttps://pt.wikipedia.org/wiki/Paulinho_da_Costahttps://musicbrainz.org/artist/fb224c08-ae22-4062-8891-e58ca2d59c9fhttps://www.allmusic.com/artist/mn0000037167https://catalogue.bnf.fr/ark:/12148/cb13934514shttps://d-nb.info/gnd/134351371https://genius.com/artists/Paulinho-da-costahttps://www.imdb.com/name/nm0196070/https://jaxsta.com/profile/5531cd77-6eb6-4877-8413-0a14227318dehttps://id.loc.gov/authorities/names/n91126964https://www.muziekweb.nl/Link/M00000015776/POPULAR/https://www.last.fm/music/Paulinho+da+Costahttps://soundcloud.com/paulinho-da-costa-officialhttps://rateyourmusic.com/artist/paulinho_da_costahttps://secondhandsongs.com/artist/29192https://www.themoviedb.org/person/1953699https://viaf.org/viaf/85529011/https://www.whosampled.com/Paulinho-Da-Costa/https://www.wikidata.org/wiki/Q960660https://www.worldcat.org/identities/lccn-n91126964/https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000122591882&TERMS_OF_USE_AGREED=Y&terms_of_use_agree=send&COOKIE=U50,KENDUSER,I28,B0028++++++,SY,NISNI,D1.2,E1a10f4df-98,A,H1,,3-28,,30-41,,43-59,,65-70,,74-75,R89.174.215.162,FYAgord Paulino da CostaClaude Da CostaDa CostaDan Paulinho Da CostaP. Da CostaP. DaCostaPaola CostaPaola De CostaPaolinho DaCostaPaolino Da CostaPaoliño Da CostaPaolo Da CostaPauchino Da CostaPauhlino Da CostaPauinho DacostaPaul Inho Da CostaPaulhina Da CostaPaulhinho Da CostaPaulhinho da CostaPaulhino Da CostaPaulhino DaCostaPaulhino DacostaPaulhino da CostaPaulihno Da CostaPauliho DaCostaPaulina Da CostaPaulina DeCostaPaulineo Da CostaPaulingo Da CostaPaulinha Da CostaPaulinhio De CostaPaulinhoPaulinho CostaPaulinho D'a CostaPaulinho Da'CostaPaulinho DaCostaPaulinho DaCostavPaulinho DacostaPaulinho Da’ CostaPaulinho De CostaPaulinho DeCoastaPaulinho DeCostaPaulinho DecostaPaulinho Dá CostaPaulinho da CostaPaulinho daCostaPaulinho de CostaPaulinho deCostaPaulinho, Da CostaPaulinhodacostaPaulinoPaulino Da CostaPaulino DaCostaPaulino De CostaPaulino DeCostaPaulino Dela CostaPaulino da CostaPaulino daCostaPaulionho DaCostaPauliñho Da CostaPauliño Da CostaPaulnho Da CostaPaulnho DaCostaPauloPaulo Da CostaPaulo DaCostaPaulo De CostaPaulo da CostaPaulo da Costa Jr.Poulinho DacostaPualinho DaCostaPuilino De Costada Costaポウリーニョ・ダ・コスタポリーノBaby'OFuse OneSérgio Mendes & Brasil '77Samba 4The Bridge (22)The Dizzy Gillespie 6Patrick Williams & His Band + +46481John LennonJohn Winston Ono LennonSongwriter, rock singer and guitar player, best known for his work with [a=The Beatles] during the 1960s and 1970s. Inducted into Songwriters Hall of Fame in 1987. Inducted into Rock And Roll Hall Of Fame in 1994 (Performer). + +Born: 9 October 1940 in Liverpool, Lancashire, UK. +Died: 8 December 1980 in NYC, NY, USA. + +John Winston Ono Lennon (MBE, gave it back) was an English singer, songwriter, and peace activist, who gained worldwide fame as the founder, co-lead vocalist, and rhythm guitarist of the Beatles. His songwriting partnership with [a=Paul McCartney] remains the most successful in musical history. In 1969, he started the [a=Plastic Ono Band] with his second wife, [a=Yoko Ono] (parents of [a=Sean Lennon]). After the Beatles disbanded in 1970, Lennon continued as a solo artist and as Ono's collaborator. + +Born in Liverpool, Lennon became involved in the skiffle craze as a teenager. In 1956, he formed his first band, [a=The Quarrymen], which evolved into the Beatles in 1960. He was initially the group's de facto leader, a role gradually ceded to McCartney. Lennon was characterized for the rebellious nature and acerbic wit in his music, writing, drawings, on film and in interviews. In 1957 Lennon meets his first wife Cynthia Lennon at the Liverpool College of Art and then married her on the 23rd of August, 1962. On the 8th of April, 1963, Cynthia gave birth to Lennon's first son, [a=Julian Lennon]. In the mid-1960s, he had two books published: In His Own Write and A Spaniard in the Works, both collections of nonsensical writings and line drawings. Starting with 1967s [r=476958], his songs were adopted as anthems by the anti-war movement and the larger counterculture. + +From 1968 to 1972, Lennon produced more than a dozen records with Ono, including a trilogy of avant-garde albums, his first solo LP [m=72864], and the international top 10 singles "[r=1222236]", "[r=390001]", "[r=5324554]" and "[r=628431]". Controversial through his political and peace activism, after moving to New York City in 1971, his criticism of the Vietnam War resulted in a three-year attempt by the Nixon administration to deport him. In 1975, Lennon disengaged from the music business to raise his infant son Sean, and in 1980, returned with the Ono collaboration [m=73013]. He was shot and killed in the archway of his Manhattan apartment building, three weeks after the album's release. Lennon's ashes were scattered in New York's Central Park. A memorial was erected at the site of his ashes being scattered, named after a Beatles' song written by Lennon, "[r=7278398]."Needs Votehttps://www.johnlennon.com/https://www.facebook.com/johnlennon/https://en.wikipedia.org/wiki/John_Lennonhttps://www.songhall.org/profile/John_Lennonhttps://www.allmusic.com/artist/john-lennon-mn0000232564DadJJ LennonJ. L.J. LennnonJ. LennobJ. LennonJ. LenonJ. LenonsJ. O. LennonJ. Ono LennonJ. レノンJ.L.J.LennonJ.LenonnJ.W. LennonJ.レノンJLJhon LennonJhon Ono LennonJoel NohnnJoel NojnnJohmJohnJohn LJohn LemmonJohn LennanJohn Lennon WinstonJohn Lennon-Paul McCartneyJohn Lennon.John LenonJohn Ono LennonJohn W LennonJohn W. LennonJohn Winston LennonJohn Winston LenonJohnewnonJonh LennonJulio Juanito LenonoJ・レノンLemmonLennonLennon John WinstonLenonLenonnLenonoLumanWar Is OverlennonmeΤζον ΛεννονД. ЛеннонД.ЛеннонДж. ЛененДж. ЛеннонДж. ЛенонДж. ЛенънДжонДжон ЛеннонЛеннонЛенонЛенънג'ון לנוןجون لينونジョン•レノンジョンレノンジョン・レノン列农約翰·列農約翰藍儂존·레넌Dr. Winston O'BoogieDwarf McDougalKaptain KundaliniRev. Fred GhurkinDr. Dream (2)Rev. Thumbs GhurkinMel TormentDr. Winston O'GhurkinDr. Winston O'ReggaeJoel NohnnJohn O'CeanDad (3)Hon. John St. John JohnsonDr. WinstonDr. Winston And Booker Table And The Maitre d'sBooker Table And The Maitre D'sMusketeer Gripweed & The Third TroopJohnny Silver (2)The BeatlesThe Plastic Ono BandThe QuarrymenThe Beat Brothers (2)John Lennon & Yoko OnoThe Dirty MacLennon-McCartneyJohnny And The MoondogsThe 44th Street FairiesThe J & P DuoJL & Friends + +47101LustyMike LustyHard House DJ & producer from Kettering, UK.Needs Votehttps://myspace.com/djlustyDJ LustyMike LustyMC Lust + +47582Riccardo FerriRiccardo FerriItalian producerNeeds Votehttp://www.riccardoferri.net/http://www.myspace.com/riccardoferrihttp://www.facebook.com/riccardoferripageA. FerriF. FerryFerriFerri, R.Ferri, RiccardoM.PicottoP. FerriR FerriR FerryR, FerriR. FeriR. FerriR. FerrieR. FerroR. FerryR.FerriR.FerrisR.FerryR_FerriRicardo FerriRoberto Ferrir,FerriRicky EffeMegamindCRWVenerdiEs VedraTrasponderLavaMauro Picotto & Riccardo FerriWagamamaHarmonic InterfaceFuture TeamShining TranceFun Brothers (2)DevilmanNew Vision (3)Space Runners (2)On-Off GroupKoka Group2 ErreRandom (18) + +47658Graciela PerezGraciela PérezVocalist who worked with Anacaona from 1934 to 1944, before she migrated to New York City to joins her brother's legendary big band Machito And His Afro - Cubans.Needs VoteGraciela PérezGracielaMachito And His OrchestraMachito & His Afro-CubansAnacaonaSepteto Anacaona + +47785Bulletproof (2)Paul ChambersAlias of UK pop / dance producer, remixer, keyboard player Paul Chambers. Shot to fame with the Jack Nicholson sampling club hit Mistakes.Correcthttp://www.myspace.com/paulchambers3Bullet ProofPaul ChambersFlash HarryDancefloor GloryDutch CourageArchie (2)Dusty Bling + +48090Thomas NewmanThomas Montgomery NewmanAmerican film music composer. Born October 20, 1955 in Los Angeles, California into a musical family already established as a film-scoring dynasty in Hollywood. Known for composing music to "American Beauty", "Road To Perdition", "The Shawshank Redemption". Brother of [a421866] and [a420891].Needs Votehttps://en.wikipedia.org/wiki/Thomas_Newmanhttps://web.archive.org/web/20031002192049/https://www.sonyclassical.com/artists/newman_thomas/https://www.sonyclassical.com/artists/artist-details/thomas-newmanhttps://www.gsamusic.com/clients/thomas-newman/https://www.imdb.com/name/nm0002353/https://www.soundcloud.com/thomas-newman-officialC. NewmanNewmanT NewmanT. NewmanT. NewmannT.NewmanTh. NewmanThomasThomas Montgomery NewmanThomas NTom NewmanTomasTommy Newmanトーマス・ニューマン湯瑪斯紐曼The Innocents (4)Tokyo 77 + +48375DJ ZanyRaoul van GrinsvenHardstyle DJ and producer from the Netherlands.Correcthttp://www.djzany.nlhttps://www.facebook.com/ZanyDJ/https://www.youtube.com/user/djzanynlhttps://twitter.com/DJZanyhttps://www.instagram.com/DJZany/https://soundcloud.com/DJZanyDJZanyPartyZanyWww.djzany.nlZaniZanywww.djzany.nlCopycatPale-XDJ Alpha-betRaoul LucianoThe GrandChicano (2)Orin-coRaineRaoul van Grinsven + +48526DJ Vortex & Arpa's DreamItalian duo based in Rome.CorrectD.J. Vortex & Arpa's DreamD.J. Vortex / Arpa's DreamD.J. Vortex And Arpa's DreamDJ VortexDJ Vortex & Apras TeamDJ Vortex & Arpa DreamDJ Vortex & Arpa'sDJ Vortex & Arpa's DramDJ Vortex & Arpas DreamDJ Vortex And Arpa's DreamDJ Vortex And Arpa's DreamDJ Vortex And Arpas DreamDJ Vortex Vs Arpas DreamDJ Vortex vs. ArpaDj Vortex And Arpa's DreamVortex & ArpaVortex & Arpas TraumVortex - ArpaVortex DJ & Arpa's DreamVortex Vs. ArpaVortex vs. Arpa2 ExplorersThe QuakersMarco Paolo PierucciGiuseppe De Iesu + +48825Jerry Van RooyenGerard Gijsbertus Jacobus van RooijenJerry Van Rooyen was born as Gerard van Rooijen on 31 December 1928 in The Hague (The Netherlands). He took his first music lessons at the age of eight and soon after he joined a brass band on trumpet. Later he studied music at the Dutch conservatory in The Hague and graduated as a music teacher. + +His professional career started in 1944, as first trumpeter in a Dutch revue show. From 1955 on he worked for the famous Dutch radio orchestra The Ramblers as first trumpeter and arranger, but he also kept jamming with his own jazz combo in nightclubs. Later on Van Rooyen moved to Paris, where he conducted and arranged for Fontana Records, working with [a=Michel Legrand], [a=Claude Bolling] and [a=Gilbert Bécaud]. + +In 1965 he met film producer Pier A. Caminneci in Berlin, for whom he did at least seven film scores. These were probably some of the weirdest, most off-beat film scores of their time but gave Jerry Van Rooyen a good opportunity to explore new musical territories. He wrote the score for the 1972 Olympic Games in Munich and furthermore worked with [a=Quincy Jones], [a=Benny Bailey], [a=Stan Getz], the [url=https://www.discogs.com/artist/780919]WDR Bigband[/url] and the [url=https://www.discogs.com/artist/303897]Metropole Orkest[/url]. + +Jerry van Rooyen is a brother of [a=Ack van Rooyen]. + +Jerry Van Rooyen passed away 14 September 2009, at age 80 in a retirement home in Goor (Netherlands).Needs Votehttps://en.wikipedia.org/wiki/Jerry_van_Rooyenhttps://www.imdb.com/name/nm0740556/G. Van RooyenGerard Van RooyenGerard van RooijenGerry Van RooyenGerry van RooyenGery van RooyenJ. V. RooyenJ. Van RooyenJ. v. RooyenJ. van RooijenJ. van RooyenJ. van RoöyenJ.v. RooyenJerryJerry V. RooyenJerry Van RooijenJerry Van RoöyenJerry van RooijenJerry van RooyenJerry van RoyenRooyenV. Rooyenv. Rooyenvan RooyenThe RamblersWDR Big Band KölnFestival Big BandThe Galactic Light OrchestraJerry van Rooyen Et Son OrchestreThe Wessel Ilcken ComboWessel Ilcken All StarsKölnMusik Big BandThe Red And Brown BrothersThe Jerry Van Rooyen Jazz OrchestraTime Travellers (5)EBU/UER Big Band + +49155Paul MaddoxPaul Mark MaddoxUK Hard Dance Producer Remixer, DJ and In House Engineer for [l=Tidy Trax].Needs Votehttps://soundcloud.com/paulmaddoxhttps://myspace.com/paulmaddoxdjMaddoxMaddox PaulMaddox, PaulP MaddoxP. MaddoxP.MaddoxPMPaul 'Mad Dog' MaddoxPaul Mark MaddoxPaul ÅeMad DogÅf MaddoxSaul SomersO.G.R.AbandonStreet ForceAzure (5)Olive GroovesComedy DickWall HaddocksTomorrow PeopleBarely LegalRundell & MaddoxRumble & MaddoxSpektreM.G.M. (2)Maddox & TownendTrance-Pennine ExpressTurbo Dubz + +49598Larenzo NashLarenzo A. NashRapper / MC; born in Chicago (US); ex-Basketball-player. +Also known as Larenzo "Dominator" Nash after his success providing the lyrics for [m71903] (1991). Appeared mainly with oldskool-icons [a=80 Aum] on their own [l=80 Aum Records].Needs VoteI. NashL NashL. NashL.NashLarenzoLarenzo "DOMINATOR" NashLarenzo "Dominator" NashLarenzo A NashLarenzo A. NashLorenzo "DOMINATOR" NashLorenzo "Dominator" NashLorenzo NashNaishNashNash, L.Nash, LarenzoHuman Resource80 Aum + +49605The Manhattan TransferAmerican vocal music group founded in 1969, performing a cappella, vocalese, swing, standards, Brazilian jazz, rhythm and blues, and pop music. + +There have been two manifestations of the group, with Tim Hauser being the only person to be part of both. The group’s name comes from John Dos Passos’ 1925 novel Manhattan Transfer and refers to their New York origins. + +Members: +Tim Hauser (1969-2014) +Gene Pistilli (1969-72) +Marty Nelson (1969-72) +Pat Rosalia (1969-72) +Erin Dickens (1969-72) +Alan Paul (1972-present) +Janis Siegel (1972-present) +Laurel Massé (1972-79) +Cheryl Bentyne (1979-present) +Trist Curless (2015-present)Needs Votehttps://manhattantransfer.net/https://themanhattantransfer.bandcamp.com/https://en.wikipedia.org/wiki/The_Manhattan_Transferhttps://www.imdb.com/name/nm1573436/EverybodyM. TransferMan. Tran.Manhattan TransferManhattan Transfer 1979Manhattan TrasferManhattan TyransferManhattan transferManhatten TransferTMTThe Manhatan TransferThe Manhattan T.The Manhattan Transfer = マンハッタン・トランスファーThe Manhattan TransfertМанхатън ТрансфърМанхеттен Трансферザ・マンハッタン・トランスファーマンハッタン・トランスファーGino & Vocal GroupTim HauserLaurel MasséErin DickinsMarty NelsonCheryl BentyneAlan PaulMargaret DornJanis SiegelEugene PistilliPat RosaliaTrist Ethan Curless + +49624Jeff BeckGeoffrey Arnold BeckBritish guitarist. +Born: June 24, 1944, in Wallington, Surrey, United Kingdom. +Died: January 10, 2023 from bacterial meningitis in a hospital near his home in Wadhurst, East Sussex, UK. + +Inducted into the Rock And Roll Hall of Fame as a member of The Yardbirds in 1992 and in 2009 as a solo artist.Needs Votehttps://www.jeffbeck.com/https://www.facebook.com/jeffbeck/https://x.com/jeffbeckmusichttps://www.instagram.com/jeffbeckofficial/https://www.youtube.com/user/officialjeffbeck/https://www.last.fm/music/Jeff+Beckhttps://en.wikipedia.org/wiki/Jeff_Beckhttps://www.imdb.com/name/nm0065169/https://www.allmusic.com/artist/jeff-beck-mn0000240865https://www.progarchives.com/artist.asp?id=2938BeckBeck JeffBeeckBookFell BeckG. BeckGeoff BeckGeoffrey BeckHot RodJ BeckJ. BeckJ.B.J.BeckJ.Beck,Jeef BeckJeffJeff " Steel " BeckJeff "Steel" BeckJeff BackJeff Beck)Jefferey Rod a.k.a. Jeff BeckLeff BeckR. Beckجف بکジェフ•ベックジェフ・ベック傑夫貝克제프 벡제프벡J. ToadA. JeffreyA. N. Other (2)Malcolm McLaren And The Bootzilla OrchestraThe HoneydrippersThe YardbirdsJeff Beck GroupBeck, Bogert & AppiceThe Secret PoliceThe Immediate All-StarsBig Town PlayboysJeffery RodLord Sutch And Heavy FriendsThe NightshiftThe TridentsUPP-The Jeff Beck BandHoly Smoke (6)Mark Knopfler's Guitar Heroes + +50266Kai WinterKai WinterGerman electro/trance/hard-trance/progressive sound DJ-producer, since 1992.Needs Votehttps://web.archive.org/web/20040604021025/http://www.kancold.de/https://www.facebook.com/kai.winter.56K. WinterK. winterK.WinterKai "Kan Cold" WinterKai (Kan Cold) WinterKay WinterWinterWinter, KaiKan ColdRave Master RobbeDerbCyrus ColeGlobal ControlHennes & ColdIllegal DistrictHuman SyncInterstate (5)Cosmic StripJosé Antonio VasquezCKP (2)Bad Treatment2 Nadie'sBredFirehead (2)Destructive Mania + +50267Boris HafnerBoris HafnerGerman trance/hard-trance DJ-producerNeeds VoteB. HafnerB.HafnerBons HafnerHafnerHafner, BorisGlobal CeeRamon PyxDJ TimeHypnosis (3)WipesElias EngelmannBoka TrendDerbCyrus ColeGlobal ControlAge 2PhasendreherIllegal DistrictWizard Of TranceHuman SyncKr@utsPolice LineInterstate (5)Cosmic StripJosé Antonio VasquezCKP (2)Bad Treatment2 Nadie'sDancehouseBredDestructive Mania + +51567ShowtekShowtek is a Dutch electronic dance music duo consisting of two brothers, Sjoerd Janssen (born April 6, 1984) and Wouter Janssen (born August 30, 1982).Needs Votehttp://www.showtek.nlhttps://www.facebook.com/showtekhttp://www.myspace.com/showtekmusichttp://equipboard.com/showtekhttps://instagram.com/showtekhttps://twitter.com/showtekhttps://soundcloud.com/showtekhttps://youtube.com/showtekhttps://en.wikipedia.org/wiki/Showtek& Justin Prime Feat. Matthew KomaShowtecShowtechShowteckUnibassW&SHeadlinerDutch Masters (2)Lowriders (2)Mr PutaSHOWTEKNOWouter JanssenSjoerd Janssen + +51722Jimmy HarrisJimmy T. HarrisJazz composer and trumpeter.Needs VoteHarrisJ. HarrisJames HarrisJames Richard HarrisJimmie HarrisErskine Hawkins And His Orchestra + +51855Roland KovacDr. Roland KovačAustrian jazz musician (piano, reeds), composer and arranger, born November 7, 1927 in Vienna, Austria and died February 20, 2013 in Samedan, Switzerland.Needs Votehttp://de.wikipedia.org/wiki/Roland_Kovachttps://adp.library.ucsb.edu/names/325789Dr. R. KovacDr. Roland KovacKovacR. KovacR. KovaćRoland HovacRoland KovaćRoland KovaĉRoland KovačRoly Kovac And His FingersBob ElgerPietro LeguaniLuis MeguelRoland Kovac Rhythm & String SetRoland Kovac TrioOrchester Roland KovacFatty George Und Seine BandLee Konitz QuintetDie Wiener SängerknabenBob Elger BandRoland Kovac New SetHans Koller New Jazz StarsBob Elger And His OrchestraStudio Orchestra Roland KovacPietro Leguani And His OrchestraAttila Zoller GroupRoland Kovac And StringsLee Konitz SeptetRoland Kovac Symphony OrchestraPanorama Sound Orchestra Roland Kovac + +52021Phil NewellPhilip R. NewellEngineer and producer.CorrectPhil NewallPhil R. NewellPhilip NewellPhilip R. NewellPhill NewellPhillip R. Newell + +52022Alan PerkinsEngineer.Needs VoteAlanAlan 'Bimbo' PerkinsAlan PAlan P.Allan PerkinsPerkin Alanbeck + +52220Jóhann JóhannssonJóhann Gunnar JóhannssonIcelandic composer and songwriter, producer and co-founder of [l=Kitchen Motors]. +Born 19 September 1969 in Reykjavík, Iceland. +Died 9 February 2018 In Berlin, Germany. + +Worked with [a=Marc Almond], [a=Barry Adamson] and [a=Pan Sonic], [a=Hafler Trio], [a=Magga Stína] and many others. He was well known for his music and soundtracks for the theatre, documentaries and feature films.Needs Votehttp://www.johannjohannsson.comhttps://www.facebook.com/JohannJohannssonMusichttps://johannjohannsson.bandcamp.comhttps://www.youtube.com/user/johannjohannsshttps://www.instagram.com/johann_johannsshttps://twitter.com/johannjohannsshttps://en.wikipedia.org/wiki/J%C3%B3hann_J%C3%B3hannssonJohan JohannsonJohan JohansonJohan JohanssonJohann G JohannsonJohann G JohannssonJohann JohannsonJohann JohannssonJohann JohanssonJohannsonJohannssonJohanssonJòhann JòhannssonJóhannJóhann G JóhannssonJóhann G. JóhannssonJóhann JóhannsonJóhannssonDipLhooqHamApparat Organ QuartetDaisy Hill Puppy FarmEvil MadnessHljóðmúrinnEktaStaff Of NTOVThe Dirac Quartet + +52312Michel ColombierMichel ColombierFrench composer for film music, born 23 May 1939 in Lyon, France and died 14 November 2004 in Los Angeles, California, USA. Generally regarded as one of the most innovative record arrangers of the 1960s in France for the likes of Charles Aznavour and Jeanne Moreau. Later, he was signed by Herb Alpert’s A&M Records and started a new career in Los Angeles, CA. Worked with Barbra Streisand, Neil Diamond, The Beach Boys, and others. Moreover, he wrote over one-hundred film scores and twenty ballets.Needs Votehttp://www.michelcolombier.comhttps://all-conductors-of-eurovision.blogspot.com/1971/09/michel-colombier.htmlhttps://en.wikipedia.org/wiki/Michel_Colombierhttps://www.imdb.com/name/nm0006014/ColombiaColombieColombierColombièColumbierJ. P. ColombierM. ColomberM. ColombieM. ColombierM. Colombier -M. Colombier*M. ColombiereM. ColumbierM. colombierM.ColombierMIchael ColombierMicel ColomienMichael ColombierMichael ColumbierMichel ColombikrMichel ColomienMichel ColumbiaMichel ColumbierMichel Jean Pierre ColombierMichele ColombierMichem ColombierМишель Коломбьеמישל קולומביהמישל קולומבייהMichael Dove (2)Michel Colombier Et Son OrchestreLes Yper-SoundBig Jullien And His All StarBenny Bennet Et Son Orchestre De Musique Latine-Americaine + +52753Digital KidPaul BeesleyVersatile Producer, Engineer & DJ covering anything from Funky to Hard Techno, Hard House & NRG, Paul is also the force behind [l=Beat Teknique] & a partner in [l=Infekted] Recordings with [url=http://www.discogs.com/artist/Danny+B+(2)]Danny B[/url].Correcthttp://www.digital-kid.co.ukDigitalkidDigtal KidPaul Beesley + +52833Frank SinatraFrancis Albert SinatraUS singer and actor +Born December 12, 1915 in Hoboken, New Jersey, USA. +Died May 14, 1998 in Los Angeles, California, USA. + +Nicknamed "The Voice," "Ol' Blue Eyes," "The Chairman Of The Board," and "Frankie Boy," the Italian-American began his musical career in the swing era with [a313097] and [a229639], Sinatra became a solo artist with great success after signing with [l1866] in March 1943; he stayed with Columbia until the label dropped him in June 1952. Sinatra signed a seven-year recording contract with [l654] on March 13, 1953, and released several critically lauded albums while with Capitol. Sinatra left Capitol to found his own record label in 1960, [l157], toured internationally, and fraternized with the Rat Pack and President [a441676] in the early 1960s. + +Sinatra had three children, [a135246] (singer, artist), [a462600] (musician), and [a2191694] (TV producer), all with his first wife, Nancy Barbato (married 1939 to 1951). He was married three more times, to actresses [a1481869] (1951 to 1957) and [a280961] (1966 to 1968), and finally to model/showgirl Barbara Marx (from 1976), to whom he was still married at his death.Needs Votehttps://www.sinatra.com/https://www.facebook.com/sinatrahttps://x.com/FrankSinatrahttps://www.youtube.com/user/FrankSinatrahttps://sinatrafamily.com/https://www.britannica.com/biography/Frank-Sinatrahttps://www.ibdb.com/broadway-cast-staff/frank-sinatra-79640https://www.imdb.com/name/nm0000069/https://sinatra.fandom.com/wiki/Frank_Sinatra_Wikihttps://en.wikipedia.org/wiki/Frank_Sinatrahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101977/Sinatra_Frankhttps://www.allmusic.com/artist/frank-sinatra-mn0000792507D.R. Frank SinatraF SinatraF. SinatraF.S.F.SinatraF.シナトラFSFracnk SinatraFrancis A. SinatraFrancis Albert SinatraFrancis SinatraFranck SinatraFrankFrank SInatra (for JFK)Frank SanatraFrank Sinatra & FriendsFrank Sinatra And FriendsFrank Sinatra Sr.Frank Sinatra, VocalFrank Sinatra, Vocal With OrchestraFrank SwatraFrankieFrankie BoyMr. SinatraPop FrankSinatraSinatra FrankSinatroThe Great Frank SinatraФ. СинатраФранк СинатраФренк СинатраФренк СінатраФрэнк Синатраフランク・シナトラ法蘭克辛納屈法蘭克辛那屈후랑크 시나트라A Very Close RelativeHarry James And His OrchestraMetronome All StarsSinatra & CompanyThe Rat PackFrank Sinatra And FriendsFrank Sinatra And BandMetronome All-Star BandFrank Sinatra And SextetThe Sinatra FamilyNancy Sinatra & FriendsFrank Sinatra And His OrchestraFrank Sinatra With Chorus + +53331Tony CookAmerican musician and producer, former drummer for James Brown. + +For UK engineer/producer working in Icelandic records please consider: [a266379].Needs Votehttp://tonycookmusic.comCookT. CookT. CookeT.CookTony CookeTony Cook & The Party PeopleThe Jungle BandThe G.A.'sTony Cook & The Trunk-O-Funk + +53801Keith ForseyBritish drummer, producer and songwriter born January 4, 1948 in London, England. He is brother of [a626064]. +He started in the London music scene in the 1960's, where he played for the Psychedelia band [a339425]. He moved to Germany in 1970 and joined [a41201]'s [a804721]. He was also drummer for [a192177] and in 1971, after the split of Motherhood, he joined the short-lived successor band [a1060983]. He also was part of the supergroups [a56047] and [a728947]. Niagara was the band, by which he came in contact with [a86472], for which he became drummer in his band [a921853], where he played until 1976. +In 1977, he started his second life as producer and session musician. As session musician, he played for [a=Harold Faltermeyer] and [a=Giorgio Moroder] among others. +His first hit as producer was [a103159]'s "[url=https://www.discogs.com/master/123641-Icehouse-Hey-Little-Girl]Hey Little Girl[/url]". Best known songwriting credit was "[url=https://www.discogs.com/master/58693-Simple-Minds-Dont-You-Forget-About-Me]Don't You (Forget About Me)[/url]", becoming a mega-hit for [a=Simple Minds], originally intended for [a=Billy Idol]. Forsey has been Billy Idol's longtime producer. He won an Academy Award in 1984 for co-writing "[url=https://www.discogs.com/master/48230-Irene-Cara-Helen-St-John-Flashdance-What-A-Feeling]Flashdance...What a Feelin'[/url]''. He also co-wrote "[url=https://www.discogs.com/master/85309-Donna-Summer-Hot-Stuff]Hot Stuff[/url]" with [a36628] and [a41085] for [a=Donna Summer].Needs Votehttps://www.keithforsey.com/https://www.facebook.com/keith.forseyhttps://en.wikipedia.org/wiki/Keith_Forseyhttps://www.imdb.com/name/nm0286850/B. ForseyF. ForeyF. ForseyF. KeithFalseyFarseyFerseyFolssyForceyForfeyForsayForseForseyForsey KeithForsey, KeithForsyFoseyK FK ForseyK, ForseyK. FarseyK. FoeseyK. FordayK. ForeseyK. ForesyK. ForneyK. ForsayK. ForsenK. ForsevK. ForseyK. ForsleyK. ForsyK. FoseyK. FouseyK. HorseyK. KorseyK. forseyK.ForseyKeithKeith "Foot" ForseyKeith "don't panic" ForseyKeith FarseyKeith ForceyKeith ForeseyKeith ForsayKeith HorseyKeithForseyKieth ForseyM. ForseyM.ForseySimple MindsSorseyキース・フォーセイMunich MachineGazNiagaraTraxAmon Düül IIThe SpectrumRoland Kovac New Set18 Karat GoldMotherhoodUdo Lindenberg Und Das PanikorchesterHallelujah (3)Ralph Marco BandSugar BusThe Methods (2)Me And You (2)Ralf Nowy GroupThe Heat (23)Harold's BandThe Rhythm Machine (4) + +552884 MotionNeil SteedmanHard Trance/Hard House DJ from the United States.Needs Vote4-Motion4MotionFormotionMind 4 MotionNeil Steedman + +55398Volts WagenCorrectVoltsWagenVoltswagenNeon LightsMr. BishiSteve HillJon Langford + +55683Luciano PavarottiLuciano PavarottiEquipped with a ringing voice in the high notes and rich in the middle, with clear phrasing and a clear timbre, he is counted among the greatest tenors of all time, as well as among the greatest exponents of opera music. With Carlo Bergonzi, Enrico Caruso, Franco Corelli, Mario Del Monaco, Giuseppe Di Stefano, Beniamino Gigli and Tito Schipa, he remains one of the world-renowned Italian tenors. + +With Pavarotti & Friends and his numerous collaborations (among which it is worth mentioning in particular the creation of the Three Tenors group with his Spanish colleagues Plácido Domingo and José Carreras), he consolidated a popularity that gave him fame even outside of the musical field. With over 100 million copies sold worldwide, he is estimated to be, also in terms of sales, among the very first singers of every musical genre, as well as among the most successful Italian singers at an international level. + +Born: 12 October 1935, Modena, Italy +Died: 6 September 2007 (aged 71), Modena, Italy +Occupation: Opera singer (tenor) +Years active: 1955–2006Needs Votehttps://www.pavarottiofficial.com/https://it.wikipedia.org/wiki/Luciano_Pavarottihttps://en.wikipedia.org/wiki/Pavarottihttps://de.wikipedia.org/wiki/Luciano_Pavarottihttps://www.britannica.com/biography/Luciano-Pavarottihttps://www.imdb.com/name/nm0667556/(L.P.)/ ルチアーノ・パヴァロッティL. PavarottiL.P.L.PavarottiLciano PavarottiLucano PavarottiLuchiano PavarottiLucianno PavarottiLucianoLuciano P.Luciano Pavarotti ( Alfredo )Luciano Pavarotti ( Chénier )Luciano Pavarotti ( Edgardo )Luciano Pavarotti ( Enzo )Luciano Pavarotti ( Otello )Luciano Pavarotti ( Pinkerton )Luciano Pavarotti ( Rodolfo )Luciano PavarottíLuciano PavorottiLuciano!Mr PavarottiMr. PavarottiMr. Pavarotti.Orchestra & Chorus Of The Metropolitan OperaPavaroottiPavarotiPavarottPavarottiPavorottiPayarottiTenor: Luciano PavarottiΛουτσιάνο ΠαβαρότιЛ. ПавароттиЛ.ПавароттиЛучано ПавароттиЛућано ПаваротиЛючано ПавароттиЛючина Павароттиパヴァロッティルチアーノ・パヴァロッティ帕瓦洛蒂파바로티The Three TenorsPavarotti & FriendsPavarotti & Choir + +55738Ramsey LewisRamsey Emmanuel Lewis Jr.American jazz pianist and keyboardist, born May 27, 1935 in Chicago, Illinois, USA, died September 12, 2022 in Chicago, Illinois, USA. Needs Votehttp://www.ramseylewis.com/http://en.wikipedia.org/wiki/Ramsey_Lewishttps://www.imdb.com/name/nm0507640/http://www.facebook.com/RamseyLewisJazzhttp://twitter.com/RamseyLewishttp://www.youtube.com/user/TheRamseyLewishttp://www.dailymotion.com/RamseyLewishttp://www.whosampled.com/Ramsey-Lewis/DavisLewisR. LewisR.E. Lewis Jr.R.E. Lewis, Jr.R.LewisRamesy LewisRamsel LewisRamseyRamsey - LewisRamsey / LewisRamsey E. Lewis, Jr.Ramsey Lewis Jr.Ramsey Lewis, Jr.Remsey LewisRemsy LewisР. Луисラムゼイ・ルイスUrban KnightsThe Ramsey Lewis TrioMax Roach QuintetRamsey Lewis QuintetRamsey Lewis QuartetRamsey Lewis And His Electric Band + +55745Freddie HubbardFrederick Dewayne HubbardAmerican jazz trumpeter and bandleader +Born April 7, 1938 in Indianapolis, Indiana, USA. died December 29, 2008 in Los Angeles, California, USA (aged 70) +He was known primarily for playing in the bebop, hard bop and post bop styles from the early 1960, though he also worked in jazz fusion in the 1970s.Needs Votehttps://freddiehubbardmusic.com/https://en.wikipedia.org/wiki/Freddie_Hubbardhttps://www.imdb.com/name/nm0399174/https://myspace.com/hubtonezhttps://www.jazzdisco.org/freddie-hubbard/catalog/https://www.allmusic.com/artist/freddie-hubbard-mn0000798326Brother HubbardF HubbardF. HubbardF.HubbardFr. HubbardFrank HubbardFred H.Fred HubbardFreddi HubbardFreddie H.Freddie HubardFreddie HubbartFreddie HubberdFreddie HubertFreddiie HubbardFreddy HubbardFrederick D. HubbardFrederick Dewayne "Freddie" HubbardFrederick HubbardFrederick HubcapFrederick HubcapsFredie HubbardFreedie HubbardHubbardHubbard, FreddyHubbartHubcapHupcapФредди Хаббартフレディ・ハバードHubcap (4)Frederick HubcapsQuincy Jones And His OrchestraArt Blakey & The Jazz MessengersThe Ornette Coleman Double QuartetThe J.J. Johnson SextetFreddie Hubbard And His OrchestraSlide Hampton OctetThe V.S.O.P. QuintetCTI All-StarsEric Dolphy QuintetMax Roach QuintetThe JazztetWalter Benton QuintetThe Oliver Nelson SextetFreddie Hubbard QuintetBill Evans QuintetThe Quincy Jones Big BandThe Great QuartetJohn Coltrane OrchestraCharlie Persip's Jazz StatesmenOliver Nelson SeptetTina Brooks QuintetFreddie Hubbard SextetFreddie Hubbard OctetMcCoy Tyner / Freddie Hubbard Quartet + +56057Percy FaithCanadian-born American bandleader, orchestrator, composer and conductor, born 7 April 1908 in Toronto, Canada, died 9 February 1976 in Encino, California +Needs Votehttps://www.percyfaith.info/https://www.percyfaith.info/Percy-Faith-pages/https://en.wikipedia.org/wiki/Percy_Faithhttps://www.thecanadianencyclopedia.ca/en/article/percy-faithhttps://www.imdb.com/name/nm0265703/FaitFaithFaith PercyFrithP FaithP. FaitasP. FaitfP. FaithP.FaithP.FeitsPearcy FaithPerecy FaithPerry FaithSaithパーシー・フェイスPeter Mars (2)Percy Faith & His OrchestraThe Percy Faith StringsPercy Faith And His Orchestra And Chorus + +56862Andreas SchneiderAndreas Georg SchneiderGerman House and Trance producer. Founder (together with [a=Uwe Papenroth]) of [l=Dos Or Die Recordings]. + +Director of [l301459] from 1995 to 1999. + +Born: 25 February 1965Needs VoteA. G. SchneiderA. SchneiderA.G SchneiderA.G. SchneiderA.G. SshneiderA.G.SchneiderA.SchneiderAG SchneiderAnders CheiderAndreas G. / SchneiderAndreas G. SchneiderAndreas ScheiderAndreas ScheneiderAndreas SchneidrG. SchneiderG.SchneiderGeraldo SchneiderR. SchneiderSchneiderSchneider, AndreasKevin C. CoxJoonaDr. Geraldo ColucciInteractiveAllnightersPerplexerHouse Of UsherC-StarKey ClubDJ MimmoAlecFriends Of NostradamusInferno DJsP.A.L.M.Rip & RobVertigo (20) + +57000Mary GriffinMary GriffinSinger songwriter. + +Touring with [a3474] and [a29262] with his P-Funk band.Needs Votehttps://www.marygriffin.com/index.htmlMahogany (8)3rd Degree (6) + +57103Elton JohnElton Hercules John né Reginald Kenneth DwightNote: Please use the entry [a825268] when just the two of them are credited together. + +English singer-songwriter, composer and pianist, born March 25, 1947, Pinner, Middlesex. +Elton John has been one of the dominant forces in rock and popular music, especially during the 1970s. He has sold over 200 million records, making him one of the most successful artists of all time. He has more than 50 Top 40 hits including seven consecutive No. 1 U.S. albums, 59 Top 40 singles, 16 Top 10, four No. 2 hits, and nine No. 1 hits. He has won five Grammy awards and two Academy Awards. His success has had a profound impact on popular music and has contributed to the continued popularity of the piano in rock and roll. + +Inducted into Songwriters Hall of Fame in 1992 and Rock And Roll Hall of Fame in 1994 (as performer).Needs Votehttps://www.eltonjohn.com/https://eltonjohncovers.bandcamp.com/https://www.britannica.com/biography/Elton-Johnhttps://www.facebook.com/EltonJohnhttps://x.com/eltonofficialhttps://www.instagram.com/eltonjohn/https://www.imdb.com/name/nm0005056/https://myspace.com/eltonjohnhttps://eltonjohn.tumblr.com/https://en.wikipedia.org/wiki/Elton_Johnhttps://www.youtube.com/eltonjohnhttps://www.allmusic.com/artist/elton-john-mn0000796734A. OrsonAlton JohnAlton-JohnE JohnE. DžonE. JOhnE. JayE. JhonE. JihnE. JohnE. John/E.J.E.JohnEJEiton JohnElgon JohnElon JohnElthon JohnEltonElton J.Elton JamesElton JhonElton JohinElton John (As Reg Dwight)Elton JohnsElton JonElton JonesElton-JohnEltonas DžonasF. JohnJohnJohn EltonJohn, E.JohnsSir Elton JohnTlton JohnΈλτον ΤζωνЕлтън ДжонЭ. ДжонЭлтон Джонאלטון ג'והןאלטון ג'וןאלטון ג׳וןエルトン・ジョン埃爾頓·約翰约翰艾尔顿·约翰艾爾頓‧強艾爾頓強艾而頓 約翰엘튼 · 존엘튼 존Lord Choc IceAnn OrsonPrince RhinoNancy TreadlightReg DwightDinah CardTripeRockaday JohnnieThe Captain (14)Various Artists (6)Simon Dupree And The Big SoundThe Top Of The PoppersDionne & FriendsAlan Caddy Orchestra & SingersElton John BandElton John & Bernie TaupinSol En SiAnn Orson & Carte BlancheBluesologyEric Clapton & His All Star BandBread And Beer BandArgosyElton John & Clive Franks + +57620Buddy RichBernard RichBuddy Rich (born September 30, 1917, Brooklyn, New York, USA - died April 2, 1987, Los Angeles, California, USA) was an American jazz drummer and band leader. He died of heart failure following surgery for a malignant brain tumor.Needs Votehttps://en.wikipedia.org/wiki/Buddy_Richhttps://www.drummerworld.com/drummers/Buddy_Rich.htmlhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/55637881938a69e064d604d6bd709f2165e20/biographyhttps://downbeat.com/news/detail/the-drums-chose-buddy-richhttps://www.drummermauri.it/443218985https://www.imdb.com/name/nm0723608/https://www.britannica.com/biography/Buddy-Richhttps://adp.library.ucsb.edu/names/103419"Buddy" RichB,RichB. RichB.RichBRBernard "Buddy" RichBernard 'Buddy' RichBuddyBuddy Rich (BR)RichRuddy RichБ. РичБадди Ричバディリッチバディ・リッチBernard TrappsBuddy PoorColeman Hawkins QuartetCount Basie OrchestraTommy Dorsey And His OrchestraHarry James And His OrchestraThe Charlie Parker QuartetThe Charlie Parker QuintetBunny Berigan & His OrchestraWoody Herman And His OrchestraMetronome All StarsThe Bud Powell TrioBuddy Rich And His OrchestraBuddy Rich Big BandArtie Shaw And His OrchestraCharlie Parker And His OrchestraClaude Thornhill And His OrchestraTeddy Wilson TrioThe Oscar Peterson QuartetTommy Dorsey And His SentimentalistsBenny Goodman And His OrchestraLester Young QuartetLionel Hampton And His QuartetLionel Hampton QuintetCount Basie SextetWoody Herman & The HerdCharlie Parker With StringsBarry Ulanov And His All Star Metronome JazzmenBuddy Rich & His BuddiesCount Basie OctetWoody Herman And The Las Vegas HerdJoe Marsala And His ChicagoansThe Lionel Hampton - Art Tatum - Buddy Rich TrioLester Young And His OrchestraBuddy Rich QuartetWoody Herman And His Third HerdLester Young-Buddy Rich TrioThe Buddy Rich QuintetBuddy Rich BandLionel Hampton & His Big BandBuddy Rich And His SextetThe Flip Phillips QuintetCount Basie QuintetNew York StarsFlip Phillips And His OrchestraThe Flip Phillips-Buddy Rich TrioFlip Phillips QuartetLionel Hampton And His GiantsBuddy Rich And The Big Band MachineMetronome All-Star BandBuddy Rich All StarsBuddy Rich SeptetBunny Berigan And His MenThe Buddy Rich TrioJATP All StarsBuddy Rich EnsembleTommy Turk And His OrchestraBilly Kyle's Big EightKenny Kersey TrioAdrian Rollini QuintetThe Killer ForceThe Killer Force BandBuddy Rich NonetCharlie Ventura's Big FourHarry Edison / Buddy Rich QuintetCount Basie And His NonetBuddy Rich And His Swinging New Big BandArt Tatum Sextet + +57626Bob DoroughRobert L. DoroughAmerican bebop and cool jazz pianist, composer and vocalese singer, born December 12, 1923 in Cherry Hill, Arkansas. Died on April 23, 2018 in Mount Bethel, Pennsylvania. +He worked with Miles Davis and Allen Ginsberg, among others. He has released vocal jazz albums periodically over the last 50 years, but he is perhaps best known as a voice and primary composer of many of the songs used in Schoolhouse Rock!, a series of educational animated shorts appearing on Saturday morning television in the 1970s and 1980s on ABC affiliates in the United States. +His songs were covered by [a=Diana Krall], [a=Jorge Pescara], [a=Blossom Dearie], [a=Sergio Mendes] and many more. + +His daughter is the classical flute player [a6337113]. +Needs Votehttps://en.wikipedia.org/wiki/Bob_DoroughB DoroughB. BoroughB. DeroughB. DoroghB. DoroughB. DoroughtB. DorouthB. DorroughB. DorudghB.DoroughBob BoroughBob DonoughBob DorouggBob Dorough, Ltd.Bob DoroughtBob DorroughBob DouroughBob DuroughBob DurroughBobby DoroughBod DoroughBoroughBorroughD. DoroughDocoughDoroughDorough Robert L.Dorough Robert LrodDorouhDorroughDouroughDuroughDurroughPoroughR. BoroughR. DoroughRobert DoroughRobert L DoroughRobert L. DoroughRobert Lord DoroughRobert Lrod DoroughThe BoroughVocal byБоб ДороуSam Most QuartetChildren Of All AgesThe 44th Street Portable Flower FactoryBob Dorough & FriendsBob Dorough QuintetBuddy Banks Et Son QuartetThe Manhattan Recorder ConsortThe Recorder Consort of the Musician's WorkshopThe Medieval Jazz QuartetBob Dorough TrioJim Mitchell QuintetHal Stein-Warren Fitzgerald QuintetTrio Buddy BanksIridium Quartet + +58335Gerhard StempnikGerhard Stempnik (22 February 1924 - 11 November 1999) was a German oboist and English-horn player. +A member of the [a260744] from 1946 to 1991.Needs VoteG. StempnikGerhard StemnikBerliner PhilharmonikerKammerorchester Berlin + +58337Brett DeanAustralian composer, violist and conductor, born October 23, 1961 in Brisbane.Needs Votehttp://intermusica.co.uk/artist/Brett-DeanBret DeanDeanFrame Cut FrameBerliner PhilharmonikerScharoun Ensemble BerlinSpectrum Concerts Berlin + +58359Burt BacharachBurt Freeman BacharachAward-winning American pianist and composer born May 12, 1928, in Kansas City, Missouri and died February 8, 2023, in Los Angeles. Best known for composing and often performing his many pop hits from 1962-70, mainly with lyrics written by [a=Hal David]. He also worked briefly with Hal's brother [a=Mack David] and his ex-wife [a=Carole Bayer Sager]. He was married to actress [a=Paula Stewart] (1953-1958), actress [a=Angie Dickinson] (1965-1980), songwriter [a169899] (1982-1991), and finally to Jane Hansen (since 1993). +Inducted into Songwriters Hall Of Fame in 1971. +[b]The songs Bacharach and Hal David wrote and produced together should be listed on the [a=Bacharach And David] page[/b].Needs Votehttp://www.burtbacharachofficial.com/homehttp://www.bacharachonline.comhttp://repertoire.bmi.com/Search/Search?SearchForm.View_Count=100&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=burt+bacharach&SearchForm.Search_Type=allhttp://www.onamrecords.com/artists/burt-bacharachhttp://www.facebook.com/Burt-Bacharach-Legend-583913155035715/http://www.imdb.com/name/nm0000820http://www.instagram.com/burtbacharachhttp://www.instagram.com/burtbacharacharchivehttp://soundcloud.com/burt-bacharachhttp://twitter.com/burtbacharachhttp://twitter.com/bacharachburthttp://en.wikipedia.org/wiki/Burt_Bacharachhttp://withkoji.com/@burtbacharachhttp://www.youtube.com/channel/UC9ytb5oEKF9dpFtB6CiDOFwhttps://adp.library.ucsb.edu/names/302472B .BacharachB BacharachB BacherachB, BacharachB. BacarachB. BaccarachB. BaccharachB. BacharaB. BacharacB. BacharachB. BacharackB. BacharahB. BacharatB. BacharathB. BacharchB. BacharrachB. BacherachB. BachrachB. BachurachB. BackarachB. BakarakB. BaxharachB. BocharechB. BucharachB. BucherachB. F. BacharachB. F. BacnaraB. GacharachB. L. BachrachB. R. BacharachB. バカラックB.-F. BacharachB.BacharachB.BachrachB.F. BacharachB.F.BacharachBBBacarachBacarraBaccarachBaccarahBaccharachBachachachBacharacBacharacaBacharachBacharach B.Bacharach BurtBacharach Burt FBacharach BurtfBacharach D.Bacharach,Bacharach, B.Bacharach, BurtBacharach- HilliardBacharach-HilliardBacharachaBacharackBacharahBacharakBacharan, Burt F.BachararchBacharchBacharrachBacharrahBacherachBachrachBachrackBackarackBackrachBackrackBacmarachBakaraksBalrachBarcharachBart BacharachBascharachBecharachBert BacharachBert BacharakBert BakarakBert-BacharachBucharachBurp BacharachBurtBurt - BacharachBurt - F. BacharachBurt B.Burt BacarachBurt BaccharachBurt BacharacBurt Bacharach BurtBurt BacharachiBurt BacharadBurt BacharahBurt BacharakBurt BacharatBurt BacharchBurt BacherachBurt BachrachBurt BucharachBurt F BacarachBurt F BacharachBurt F. BacharachBurt F. BacharchBurt Freeman BacharachBurt S. BacharachBurt S. DacharachBurt T. BacharachBurt-BacharachBurth BacharachBurtt BacharachD. BacharachF. BacharachH. BacharachKurt BacharachMr. BacharachR Burt BacharachR. BacherachSir Burt BacharachБ. БакаракБ. БакараксБ. БакарахБ. БаккаракБ. БаккарахБ. БахарахБ. БахрахБ. Ф. БакаракБакараБакаракБахарахЛ. БахарахЛ. Бэхарахバカラックバート・バカラックバート・バカラック指揮のオーケストラバート・バハラッハ伯特巴克瑞克大師伯特Bacharach And DavidBurt And The BackbeatsBurt Bacharach & His OrchestraThe Burt Bacharach Singers + +58397Addy van der ZwanAdriaan van der ZwanFamous Dutch (Hard)House-DJ & Producer. Got known in the early 90's as a remixer for the "Turn Up The Bass"-compilations by [l=Arcade], together with his buddy [a=Koen Groeneveld]. They released many records under various names, but most famous are "The Ultimate Seduction" and their releases as Klubbheads. +Needs Votehttps://instagram.com/addyvanderzwanAA Van Der ZwanA v/d ZwanA van der ZwanA. V. D. ZwanA. V.D. ZwanA. V/D ZianA. V/D ZwanA. V/D/ ZwanA. VD ZwanA. Van Der ZwanA. Van Der ZwenA. Van der ZwanA. Vander / ZwanA. Vd ZwanA. Vd. ZwanA. v. d. ZwandA. v.d. ZwanA. v/d ZwanA. van de ZwanA. van der ZwanA. van der ZwenA. vd ZwanA.V.D. ZwanA.Van DerA.Van Der ZwanA.v dr ZwanA.v.d. ZwanA.van der ZwanAddyAddy V-D ZwanAddy V/D ZwanAddy VanAddy Van De ZwanAddy Van der ZwanAddy v/d ZwanAddy van de ZwanAddy van der ZwarnAdriaan Add Van Den ZwanAdriaan Addy Van Der ZwanAdriaan Addy Zwan Ven DerAdriaan Addy van der ZwanAdriaan Van Der ZwanAdriaan van der ZwanAdrian Addy van der ZwanAdrian van der ZwanAndy V. d. ZwanAndy Van der ZwanAndy van der ZwanNice Guy AddyV. D. ZwanV. Der ZwanV.D. ZvanV.D. ZwanV.D.ZwamV.D.ZwanVa Der ZwanVan De ZwanVan Der AwanVan Der ZovanVan Der ZvanVan Der ZwaanVan Der ZwanVan Der ZwangVan Der ZwonVan der ZwanVanDerZwanVander ZwanVn Der ZwanVon der Zwanv.d. Zwanv.d.Zwanvan Der Zwanvan de Zwanvan der Zwavan der Zwanvander Zwanvd ZwanIttyBittyShimrotMike DelanoA. Brown (4)WizzkeyNoloiseAZ (8)KlubbheadsItty Bitty Boozy WoozyThe Ultimate SeductionCode BlueJ.A.K.DigidanceGreenfieldMaximumDJ DiscoRollercoasterTrancemissionRave NationDa Techno BohemianFrantic ExplosionLa CasaHardlinersShelleyChiara3 Dubbs In A SleeveDa Klubb KingsSeven-TeesB.I.G.The DJThe Tone SelectorUnited Deejays For Central AmericaCab'n'Crew2 HiSlammerCooperKA-22The Sound Of NowDrunkenmunkyLorindoMellow TracksJoy (4)Al CappucinoChaka Boom BangMr. KinkyCapo CopaReservoir JocksMF-tracksKoen Groeneveld & Addy van der ZwanK&AQueerCut The CakeTwo TopBad Boy NotoriousRoberto TechnalliBeat CultureRe-CurrentMillennium BugD-NaturalCatalanaFreak BitchThe Dental RaversClubsquadInfectious!Van ZantenSnow Inc.It TunesDigital TwinsDelano & CrockettHi_TackTek TeamLCD-JKlubbdriverCenturion (2)Kick 'N RushThe Caramel ClubUntouchable 3Club Scene InvestigatorsDutch MaffiaSleezy GItty Bitty, Boozy Woozy & GreatskiThe Rotterdam GangThe Sync Inc.Speakerz!Dolce Vita (6)CaptchaChainsideDutch BasterdsLos Pampas Featuring The Dixieband71 Digits + +58549Paul KingHard House DJ, producer & remixer from Bournemouth, UK.Needs Votehttp://www.paul-king.co.uk/http://www.facebook.com/PaulF1Kinghttp://www.instagram.com/paulf1king/http://twitter.com/Paulf1kinghttp://soundcloud.com/paul-f1-kingP KingP. KingP.KingPKPaul 'F1' KingTraumaF1Format OneThe Project (2)Control FreakzKing CoolTony GordonBilly Cole (3)Bob MelodyWayne Van DrossRandolph (3)Pants & CorsetNik Denton vs Paul KingDJ Gonzalo vs. F1Terrance & Phillip + +58645Tecmania RebelPatrick van der HartCorrectTech Mania RebelTechmania RebelThe Tecmania RebelThe NightraverDJ PatrickDJ TecmaniaPatrick van der HartThe President (2) + +59246Muddy WatersMcKinley MorganfieldAmerican blues guitarist, singer and composer. +Born 4 April 1913, Rolling Fork, Mississippi, USA. +Died 30 April 1983, Westmont, Illinois, USA. + +Father of [a4092559], [a1965346], and [a10232473] (died December 10, 2020, aged 56). + +Considered by many to be a founder of the modern Chicago Blues style. A powerful inspiration in the emergence of the electric blues-oriented groups in the UK during the '60s. He became the most prominent interpreter of the electric blues. + +On Morganfield's marriage license and Musician's Union card, he indicates the year of his birth as 1913. His place of birth was, in fact, in Issaquena County near Rolling Fork, Mississippi. However, his gravestone remains dated as 1915. + +Morganfield was inducted into the 'Rock And Roll Hall of Fame' in 1987 (Performer).Needs Votehttps://en.wikipedia.org/wiki/Muddy_Watershttps://www.britannica.com/biography/Muddy-Watershttps://www.facebook.com/muddywatersofficial/https://www.imdb.com/name/nm0914149/https://www.wirz.de/music/waters.htmhttps://www.allmusic.com/artist/muddy-waters-mn0000608701'Brother' Muddy WatersM. WaterM. WatersM.WatersM.WattersMWMandy WatersMorganfieldMuddyMuddy "Mississippi" WatersMuddy Morganfield WatersMuddy WMuddy WaltersMuddy WaterMuddy Waters & His GuitarMuddy Waters And His GuitarMuddy Waters and his GuitarMuddy Waters with Rhythm Acc.Muddy WattersWaterWatersМадди УотерсDirty RiversMcKinley MorganfieldBrother (5)Main StreamClear CreekJames "Sweet Lucy" Carter + +59251Hampton HawesHampton Barnett Hawes Jr.American jazz pianist +Born November 13, 1928 in Los Angeles, CA, USA, died May 22, 1977 in Los Angeles, CA, USANeeds Votehttps://en.wikipedia.org/wiki/Hampton_Haweshttps://hamptonhawes.bandcamp.com/H. HallesH. HawesH.HawesHamilton HawesHamp HawesHamp HawsHamton HawesHawesHowesハンプトン・ホースハンプトン・ホーズHenry McDodeWardell Gray QuintetGerry Mulligan QuartetArt Pepper QuartetShorty Rogers And His GiantsHoward Rumsey's Lighthouse All-StarsPreston Love And His OrchestraThe Sonny Criss OrchestraHampton Hawes TrioThe Charlie Mingus TrioHampton Hawes QuartetThe Bopland BoysNathan Davis QuartetWardell Gray SextetTeddy Edwards SextetBud Shank And Bill Perkins QuintetThe Hampton Hawes All-StarsTeddy Edwards SeptetWardell Gray L.A. StarsThe Contemporary Leaders + +59283Horst JankowskiGerman jazz pianist, composer, arranger, and band leader, born in Berlin (30 January 1936), died in Radolfzell (29 June 1998). Composer of 'A Walk in the Black Forest'. He led the [a328245] from 1975 to 1994 and founded [a906320]. In 1968, he composed, arranged, and conducted West Germany's Eurovision Song Contest entry, 'Ein Hoch der Liebe', performed by [a=Wencke Myhre].Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/09/horst-jankowski.htmlhttp://en.wikipedia.org/wiki/Horst_Jankowskihttps://www.imdb.com/name/nm0417772/G.JankowskiH JankowskiH. JakonskiH. JankowkiH. JankowskiH. JankowskyH. JanowskiH. jankowskiH.JankowskiHorstHorst JankowskyHorst Jankwoski (Piano)Horst JanowskiIankowskiJankowskiJankowskyJanovskiJanowskiMann-JanowskiN. JankowskiThe Piano of Horst JankowskiZanhowskiХ. ЯнковскийЯ. ЯнковскийЯнковскийHorst Jankowski SextettThe Horst Jankowski OrchestraErwin Lehn Und Sein Südfunk TanzorchesterHorst Jankowski QuartettHorst Jankowski And His Studio OrchestraThe Main Street Piano BandChor Und Orchester Horst JankowskiHorst Jankowski TrioJoki Freund QuintettHorst Jankowski-ChorHorst Jankowski - Rolf Kühn QuintettDie Deutschen All StarsErwin-Lehn-Combo + +59287Barney WilenBernard Jean WilenJazz tenor saxophonist, born March 4, 1937 in Nice, France, died May 25, 1996 in Paris, France of a heart attack. +Born of an American father and a French mother, the young Barney began to perform in clubs encouraged by writer Blaise Cendrars, a friend of his mother. +His career intensified in 1957: [a=Miles Davis], in Paris to create the music for Louis Malle's first feature movie, Ascenseur pour l'echafaud, recruited Wilen as well as pianist René Urtreger, bassist Pierre Michelot and drummer Kenny Clarke. With eyes on the screen they improvised and recorded the soundtrack in one night. +Two years later he recorded with [a=Thelonious Monk], then was chosen by [a=Art Blakey] to interpret the music of Les liaisons dangereuses, a 1960 film, directed by Roger Vadim. The same year he also appeared in the TV show Jazz Memories, in the episode "Live Club Saint Germain." He also played at the Newport Jazz Festival with pianist Toshiko Akiyoshi, bassist Tommy Bryant and drummer Roy Haynes. +In the 1960s Wilen became interested in rock and made a record dedicated to Timothy Leary in 1968. In 1969 he went to Africa with Caroline de Bendern, musicians and a film crew, resulting in the record, Moshi (1972), with a synthesis of jazz and African music. A period of silence followed until the 1980s-1990s, when he composed music for several French films. Wilen also worked with punk rockers, before returning to jazz in the 1990s.Needs Votehttps://www.instagram.com/barney.wilen/https://web.archive.org/web/20210218045026/http://www.loustal.nl/barneywilen.htmhttps://www.selmer.fr/en/blogs/artistes/barney-wilenhttps://fr.wikipedia.org/wiki/Barney_Wilenhttps://www.youtube.com/watch?v=DNwEP2SJRZ8B. WilenB. WilonB.WilenBarney WilensBarney WillenBarney WllenBarny WilenMoshiWilenWilen BarneyБ. Уиленバルネ・ウィランバルネ・ウイレンArt Blakey & The Jazz MessengersThe Miles Davis QuintetBarney Wilen QuintetThe Jazz HornsGil Cuppini QuintetBerry Window And The MovementsJardin ExotiqueBarney Wilen QuartetRoy Haynes SextetBarney Wilen And His Amazing Free Rock BandJay Cameron's International Sax-BandBarney Wilen TrioEje Thelin QuartetBarney Wilen & Mal Waldron Quartet + +59288Jiggs WhighamOliver Haydn Whigham IIIU.S.-American trombonist, band leader and educator, born August 20, 1943, Cleveland, Ohio. Was a featured soloist and first trombonist with the Glenn Miller Orchestra and later, with Stan Kenton. +Needs Votehttp://www.jiggswhigham.com/'Jiggs' WighamChiggs WhighamGiggs WhighamHaydn WhighamJ. WhighamJ. WighamJiggs WighamJiggs/WhighamJiiggs WhighamJuggs WhighamProf. Jiggs WhighamProf.Jiggs WhighamWhighamДжигс УигэмPeter Herbolzheimer Rhythm Combination & BrassGil Evans And His OrchestraRed Point OrchestraBerry Lipman & His OrchestraRIAS Big BandThe George Gruntz Concert Jazz BandGlobe Unity OrchestraKurt Edelhagen Big BandFestival Big BandThe Galactic Light OrchestraThe Peter Herbolzheimer OrchestraThe Band (7)Sincerely P.T.Berlin Big BandTrombone SummitPeter Herbolzheimer All Star Big BandKlaus Weiss Big BandJazz Gala Big Band OrchestraPaul Kuhn And The BestBoy Edgar Big BandJiggs Whigham TrioKarl Drewo QuintetPeter Trunk SextetTime Travellers (5)Charly Antolini's International JazzpowerEugen Cicero & His FriendsThe Jiggs Whigham International TrioCopenhagen Trio + +59402Nelson RiddleNelson Smock Riddle Jr.American arranger, composer, bandleader and orchestrator. In early years, also as trombonist. + +Born June 1, 1921 in Oradell, New Jersey, USA. +Died October 6, 1985 in Los Angeles, California, USA.Needs Votehttps://www.nelsonriddlemusic.com/https://en.wikipedia.org/wiki/Nelson_Riddlehttps://www.imdb.com/name/nm0725765/https://adp.library.ucsb.edu/index.php/mastertalent/detail/340121/Riddle_Nelsonhttps://musicbrainz.org/artist/4308fdc4-7f8a-42f0-aaea-a8b397da5e3chttps://isni.org/isni/0000000110216188https://www.allmusic.com/artist/mn0000322027https://catalogue.bnf.fr/ark:/12148/cb138990031https://viaf.org/viaf/14959424/https://d-nb.info/gnd/123578140https://genius.com/artists/Nelson-riddlehttps://id.loc.gov/authorities/names/n82009699https://rateyourmusic.com/artist/nelson_riddlehttps://secondhandsongs.com/artist/34440https://snaccooperative.org/ark:/99166/w64v78d1https://www.themoviedb.org/person/4360https://www.whosampled.com/Nelson-Riddle/https://www.wikidata.org/wiki/Q961851https://www.worldcat.org/identities/lccn-n82009699EiddleHelson RidleN. RiddleN.RiddleNRNelsonNelson - RiddleNelson RiddeNelson Riddle Jr.Nelson Riddle Jr. (NR)Nelson Riddle's OrchestraNelson Riddle, Jr.RiddleThe Music Of Nelson Riddleネルソン・リドルJoe Seymour (2)Tommy Dorsey And His OrchestraNelson Riddle And His OrchestraCharlie Spivak And His OrchestraNelson Riddle Chorus + +59405Mary Lou WilliamsMary Elfreda WinnAmerican jazz pianist, composer and arranger +Born May 8,1910, Atlanta, Georgia, USA +Died May 28, 1981, Durham, North Carolina, USA +Performed with many jazz artists including [a270023]. Staff arranger with [a145257] in the mid-1940s. Known for her approach to the bop style, friend of [a145256] and [a296956].Needs Votehttp://newarkwww.rutgers.edu/ijs/mlw/intro1.htmlhttps://en.wikipedia.org/wiki/Mary_Lou_Williamshttps://www.britannica.com/biography/Mary-Lou-Williamshttps://www.npr.org/2019/09/10/749743012/how-mary-lou-williams-shaped-the-sound-of-the-big-band-erahttps://music.si.edu/story/mary-lou-williams-jazz-soulhttps://www.marylouwilliams.foundation/(Mary Lou Williams)L. WilliamsLou WilliamsM L WilliamsM. L. WilliamsM. Lou WilliamsM. WilliamsM.-L. WilliamsM.L. WilliamsM.L.WilliamsM.WilliamsMLWMarilou WilliamsMarilou Williams And His RhythmMarry Lou WilliamsMary L. WilliamsMary Leo BurleyMary Leo Burley (Mary Lou Williams)Mary LouMary Lou BurleighMary Lou Williams And Her BoyfriendsMary Lou Williams And Her FriendsMary Lou Williams And Her Modern MusicMary WiliamsMary WilliamsMary-Lou WilliamsMlmWilliamWilliamsメアリー・ルー・ウィリアムスMary Lou BurleyAndy Kirk And His Clouds Of JoyMary Lou Williams TrioMildred Bailey And Her Oxford GreysMary Lou Williams QuartetMary Lou Williams And GroupMary Lou Williams Girl StarsMary Lou Williams And Her OrchestraMary Lou Williams And Her Kansas City SevenJohn Williams' Memphis StompersSix Men And A GirlJeanette's Synco JazzersJohn Williams' Synco JazzersMary Lou Williams' Chosen FiveMary Lou Williams QuintetMary Lou Williams And Her RhythmMary Lou Williams And Her SixMary Lou Williams And Her Cafe Society Orch.Mary Lou Williams With Her Jazz Big Band And Symphonic Orchestra + +59407George ShearingSir George Shearing OBEAnglo-American blind jazz pianist and composer. +Born: Aug. 13th, 1919 in Battersea, London, UK - died: Feb. 14th, 2011 in NYC, NY. +He moved to the US in 1947, and was amongst the first post-war British jazz musicians to make a solid career there. He was appointed OBE in 2007, and then knighted in 2007, both by Queen Elizabeth II. +He became known for a piano technique known as "The Shearing Sound", a type of double melody block chord, with an additional fifth part that doubles the melody an octave lower. With the piano playing these five voices, Shearing would double the top voice with the vibraphone and the bottom voice with the guitar to create his signature sound. +One of his most notable composition: '[i]Lullaby Of Birdland[/i]'. +Needs Votehttp://en.wikipedia.org/wiki/George_Shearinghttps://www.imdb.com/name/nm0790471/?ref_=nv_sr_srsg_0https://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=SHEARING+GEORGE&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allD.ShearingDavid ShearingDžordž ŠiringForster - ShearnsG ShearingG. ShearingG. ShearingG. SheeringG. ShiringG. ShringG.ShearingGeo. ShearingGeorg ShearingGeorge Albert ShearingGeorge ChearingGeorge ScheringGeorge Shearing - The Jazz PianoGeorge SheringGeorges ShaeringGeorges ShearingJorge ShearingS. GeorgeSchearingShearShearinShearingShearing / LevySheariveShearlingShearmSherinSheringSherringThe George Shearing ShowД. ШирингДж. ШерингДж. ШирингДжордж Ширингジョージ・シアリングMetronome All StarsThe George Shearing QuintetStephane Grappelli And His QuartetErwin Lehn Und Sein Südfunk TanzorchesterGeorge Shearing TrioGeorge Shearing QuartetFrank Weir And His Astor Club SevenGeorge Shearing Quintet + AmigosCabaret De WatergeusHarry Hayes And His BandGeorge Shearing's SextetGeorge Shearing Y Su Orquesta De Cuerdas + +59655Stanley MyersAn English film composer (born October 6, 1930 in Birmingham, England; died November 9, 1993 in England). Married to [a958220],Needs Votehttps://en.wikipedia.org/wiki/Stanley_Myershttps://www.imdb.com/name/nm0004368/https://www.allmusic.com/artist/stanley-myers-mn0000752154https://rateyourmusic.com/artist/stanley_myersA. MeyersA. MyersF. MyersJohn MyersMayersMeyersMeyers / StanleyMr. Stanley MyersMyersMyers - StanleyMyers StanleyMyers, StanleyMyers/StanleyS MyersS. MayersS. MeyersS. MyersS. MyresS.MyersSt. MyersStanlet MeyersStanleyStanley MayerStanley MayersStanley MeyersStanley-MyersStanley/MyersStanly MyersСтив Майерスタンリー・マイヤーズマイヤースStanley Myers And His Orchestra + +59659Gil Evans And His OrchestraCorrecthttp://gilevans.free.fr/Ensemble SoloGil Evan's OrchestraGil Evans & His Orch.Gil Evans & His OrchestraGil Evans & OrchestraGil Evans 21 Piece OrchestraGil Evans And 21 Pieces OrchestraGil Evans And His 21 Piece OrchestraGil Evans And His 21-Piece OrchestraGil Evans And His 21-piece OrchestraGil Evans And His OrchGil Evans And His Orch.Gil Evans And OrchestraGil Evans And The Gil Evans OrchestraGil Evans E Sua OrquestraGil Evans Et Son OrchestreGil Evans Orch.Gil Evans OrchestraGil Evans Orchestra, TheGil Evans With OrchestraGil Evans Y Sus 21 MusicosGil Evans' Orch.Gil Evans' OrchestraGil Evans's OrchestraGil Evans- And His OrchestraGil Evans-OrchestraGil-Evans-OrchesterGill Evans And His OrchestraL'Orchestre de Gil EvansOrchester Gil EvansOrchestraOrchestra Under Direction Of Gil EvansOrchestra Under The Direction Of Gil EvansOrquestra Sob Direção De Gil EvansThe G. Evans Orch.The Gil Evans OrchestraThe Gil Evans Orchestra Gil EvansОркестр Г. ЭвансаОркестр П/У Г. ЭвансаОркестр П/У Г.ЭвансаОркестр п/у Г. Эвансаギル・エバンス・オーケストラギル・エヴァンス・オーケストラMiles DavisArt BlakeyWayne ShorterKenny BurrellHubert LawsJiggs WhighamCannonball AdderleyVernon ReidJerome RichardsonBuster WilliamsAlphonse MouzonRon CarterSteve LacyChris HunterHarry LookofskyBob CranshawElvin JonesRyo KawasakiKeg JohnsonGeorge LewisJon FaddisDoc SeverinsenArthur BlythePete LevinArt FarmerDavid SanbornMino CineluDave BargeronLew SoloffClark TerryRoland KirkAlex FosterJoe GallivanJohn SurmanKenwood DennardTommy PotterJimmy CobbJimmy ClevelandJimmy KnepperOmar HakimPhil WoodsJoe MorelloJohnny ColesTony StuddGarnett BrownRomeo PenqueGary PeacockGil EvansHiram BullockGeorge MargeOscar PettifordSteve GrossmanMarilyn MazurCurtis Fuller"Philly" Joe JonesMilt HintonJohn AbercrombieLee KonitzPaul Chambers (3)Joe DaleyDanny BankPhil BodnerBarry GalbraithUrbie GreenOsie JohnsonJanet PutnamArt TaylorAnthony WilliamsRichard Davis (2)Art DavisBob BrookmeyerHank JonesBob StewartWarren SmithWillie RuffGunther SchullerDavid HorowitzDarryl JonesBernie GlowErnie RoyalJohn BarberJoseph BennettLouis R. MucciJohn CarisiTony MirandaBill BarberThad JonesHannibal Marvin PetersonRay BeckensteinJoe BeckJulius WatkinsDavid TaylorSnooky YoungJoe WilderJose MangualHarold FeldmanAl BlockJack KnitzerEarl ChapinFrank RehakJohn BarrowsEddie CaineBobby RosengardenDanny GottliebTom MaloneHoward Johnson (3)John StubblefieldCharlie PersipRay AlongePaul MetzkeDon PateVictor LewisHarvey PhillipsJim BuffingtonRod LevittDick LiebTerumasa HinoGary SmulyanAllen SmithJohn Clark (2)Gil GoldsteinRay CrawfordTaft JordanEmmett BerryRichard HixsonDelmar BrownSue EvansVan ManakasPhil SunkelBob TricaricoBudd JohnsonDenis CharlesAlex SipiaginHiroshi FukumuraMark EganPaul ShafferDanny StilesMichael Moore (2)Rob CrowderGerry NiewoodGeorge AdamsBruce DitmasHerb BushlerChuck WayneMatthew GarrisonEarl McIntyreSid CooperMike RichmondUrszula DudziakRobert NorthernGerald SanfinoJanice Robinson (2)Noel McGhieGene QuillMike LawrenceEddie CostaBilly HarperDavid MannGene BiancoTrevor KoehlerPaul IngrahamBirch JohnsonDonald MacDonaldRobert SwisshelmKeith LovingShunzo OhnoJohn LaportaMichał UrbaniakJeff AndrewsMasayuki TakayanagiBill Evans (3)Biréli LagrèneJay McAllisterBill EltonJoseph SingerGabby AbularachThomas MitchellAdelhard RoidingerEmily MitchellCharles BlenzigClyde ReasingerJohn GlaselMiles EvansAndy FitzgeraldKohsuke MineAnita EvansYoshio SuzukiLuico HopperElden BaileyYoshiyuki NakamuraHiroshi MunekiyoAlden BantaDick Carter (2)Peter Gordon (8) + +59792Bob DylanRobert Dylan né Robert Allen ZimmermanBorn: May 24, 1941, Duluth, Minnesota, USA; singer, songwriter, "song and dance man". +Inducted into Songwriters Hall of Fame in 1982 and the Rock And Roll Hall of Fame in 1988 (Performer). Winner of the 2016 Nobel Prize in literature. +His first marriage was to [url=https://www.discogs.com/artist/2277063-Sarah-Dylan]Sara Dylan[/url] (November 1965 - divorced June 1977), together they have five children, including [a=Jesse Dylan] and [a=Jakob Dylan]. His second marriage was to [a=Carolyn Dennis] (4 June 1986 - divorced 7 August 1990).Needs Votehttps://www.bobdylan.com/https://www.facebook.com/bobdylan/https://mnmusichalloffame.org/bob-dylan/https://x.com/bobdylanhttps://myspace.com/bobdylan/https://www.thebobdylanfanclub.com/https://en.wikipedia.org/wiki/Bob_Dylanhttps://www.wikitree.com/wiki/Zimmerman-1735https://www.youtube.com/channel/UCBqkojCXby4zGkWX86FEY7Qhttps://www.10538overture.dk/Related%20bands/Bob%20Dylan/Fronts/bob_dylan_history.htmlhttps://searchingforagem.com/https://bobserve.comhttps://www.allmusic.com/artist/bob-dylan-mn0000066915"Mister" Bob DylanB DylanB, DylanB. DaylanB. DilanB. DylanB. DylandB. DylenB. DyllanB. DylonB.D.B.DilanB.DylanB.ディランBDBobBob "Folking" DylanBob "Zim" DylanBob DaylanBob DilanBob DillanBob DillonBob DlyanBob DumbassBob DylalBob DylamBob Dylan with the PlugzBob DylandBob DyllonBob DylonBob RylandBob. DylanBobbyBobby DBobby D.Bobby DylanBobby DylandBobdylanBoby DylanBon DylanD y l a nD. DylanDilanDillionDillonDy lanDyanDylabDylanDylan BDylan BobDylan RobertDylan, BobDylan,BDylandDylenDylnDylonE. DylanLuckyR DylanR. DillonR. DylanR.DylanRobert (Bob) DylanRobert DylanS. DylanThe MaestroБ. ДиланБ. ДиландБоб ДиланБоб ДилънДулонב. דילןבוב דילןדילןボブディランボブ・ディランボブ・ディランボプ・ディランボプ=ディラン巴布·狄倫巴布狄倫밥 딜런Jack Frost (2)Lucky WilburyRobert ZimmermanBoo WilburyBlind Boy GruntTedham PorterhouseBob LandyRobert Milkwood ThomasCarter (21)Artists United Against ApartheidUSA For AfricaTraveling WilburysBob Dylan & His BandBob Dylan & FriendsRobert Zimmer And GroupBob Dylan And The Never Ending Tour BandThe Gentleman's Club of SpaldingThe Basement Singers + +60252Nu-RenegadesNeeds VoteNu RenegadesSteve HillMick ShinerIan BlandMartin Neary + +60453Wilton FelderWilton Lewis FelderJazz saxophonist - bassist - songwriter - producer. +Born: August 31, 1940, Houston, Texas, USA. +Died: September 27, 2015, Houston, Texas, USA. + +One of the most acclaimed jazz & soul musicians of the 1970s-1980s. He is best known as a founding member of The Jazz Crusaders, founded in the late 1950s while still in high school in Houston, and later shortened to [a=The Crusaders]. Felder was extremely busy as a west coast studio musician, playing saxophone and electric bass, on various soul, R&B, and rock albums with artists such as [a=Marvin Gaye], [a=John Cale], [a=Bobby Womack], [a=Randy Newman], [a=Jackson 5] & [a=Joni Mitchell]. He also had a modest solo output. Felder played a King Super 20 tenor sax with a metal 105/0 Berg Larsen mouthpiece. He also used Yamaha saxes. He played a Fender Precision bass, and also played Aria bass guitars.Needs Votehttps://en.wikipedia.org/wiki/Wilton_Felderhttps://www.imdb.com/name/nm0270968/Bro Wilton FelderFelderMr. Wilton FelderRhythm SectionVilton FelderW FelderW. FelderW.FelderWalton FelderWelton FelderWelton Felder*Wilson FelderWilton FedlerWilton FeldarWilton Felder Sr.Wilton FeltonWilton FenderWilton FolderWilton L. FelderWilton Lewis FelderWiton Felderウィルトン・フェルダーThe CrusadersGerald Wilson OrchestraWayne Henderson & Next CrusadeRob Mullins Band + +60454"Stix" HooperNesbert Hooper Jr.American jazz and soul drummer, born August 15, 1938 in Houston, Texas.Needs Votehttp://www.stixhooper.com/http://en.wikipedia.org/wiki/Stix_Hooper"Sticks" Hooper"Stix Hooper"Stix Hooper"'Stix' HooperCooperH. HooperHooperHooper Jr.Mr. HooperN. "Stix" HooperNerbert 'Stix' HooperNesbert "STIX" HooperNesbert "Sticks" HooperNesbert "Stix" HooperNesbert "Stix" Hooper, Jr.Nesbert ''Stix'' HooperNesbert 'Stix' HooperNesbert Stix HooperNesbert-Stix-HooperNorbert "Stix" HooperNorbert 'Stix' HooperNorbert “Stix" HooperS HooperS. HooperSticks HooperStixStix CooperStix FooperStix HooperStix Hooper Jr.Stix HoperStix Hopper«Stix» Hooperスティックス・フーパーNesbert HooperThe CrusadersNite HawksLeonard Feather All StarsLalo Schifrin & OrchestraJoe Sample TrioLes Mccann Trio + +60929Andy AllderAndy AllderSong writer and producer based in London, England, UKNeeds VoteA AllderA. AllderA.AllderAlderAllderAndyAndy AdlerAndy AlderAndy AldersAndy AlldlyMr Andy AllderMr Large It Andy AllderMr. A. AlderMr. A. AllderBoomjamDon GrantMatrix (8)Duplex (6)PanikKombinattTickle (2)D-BopDaxSigma 2Deeper Cut4 - To The FloorElectroglideTickle TimeGripKobayashi MaruDirty DiscoNoyz 'R' UsEuropic + +61070Lindsay EdwardsLindsay Martin EdwardsNeeds Votehttp://www.twitter.com/doctordindsayE L MartinE. L. MartinE.L.MartinEdwardsL EdwardsL. EdwardsL. EdwardsL.EdwardsLindsey EdwardsLinsay EdwardsLyndsay EdwardsLynsay EdwardsTin Tin OutInnersphereThe Disco EvangelistsBaby BlueIf?The Well Charged Latinos + +61543Koen GroeneveldKoen GroeneveldKoen Groeneveld (Dutch pronunciation : /kun ˈɣrunəˌvɛlt/) is an electronic record producer and DJ from Rotterdam, South Holland. Active in a wide range of genres. +He is founder and owner of [l112980]. +Produced - mostly together with long term friend and musical partner [a=Addy van der Zwan] - over 30 international crossover hits between 1992 and present. +Most famous projects: [a=Klubbheads], [a=DJ BoozyWoozy], [a=Hi_Tack], [a=Koen Groeneveld], [a=DJ Disco], [a=Drunkenmunky], [a=Itty Bitty Boozy Woozy], [a=The Ultimate Seduction] +Producer of hits like ao [a=DJ Jean] "The Launch", [a=DJ Jean] "Love Come Home", [a=DJ Paul Elstak] "Luv U More", [a=DJ Paul Elstak] "Rainbow In The Sky", +[a=DJ Paul Elstak] "The Promised Land" and many more. +Career starter: +Between 1988 and 1990 Koen and Addy did mixes and remixes for Dutch national radio in shows like "[a=Ferry Maat] Soul Show" and "TROS Dance Trax", hosted by Dutch TV celebrity Martijn Krabbe. +The duo mixed between 1990 and 1995 around 100 compilation CD's, like the "House Party" and "Turn Up The Bass" series for Dutch record label Arcade.Needs Votehttps://www.koengroeneveld.comhttps://www.facebook.com/koengroeneveldofficialhttps://soundcloud.com/koengroeneveldhttps://www.mixcloud.com/koengroeneveld/https://www.instagram.com/djkoengroeneveldhttps://myspace.com/koengroeneveldhttps://twitter.com/koengroeneveldhttps://www.youtube.com/@koengroeneveldDJ KoenDJ Koen GroeneveldGoeneveldGroenenveldGroenevaldGroenevelGroeneveldGroeneveld, KoenGroenevoldGroenveldGroenvoldGroenwaldGroeveneldGroeveveldGroneveldKK GroeneveldK. GorneveldK. GroeneveldK. GroenewaldK. GroeneweldK. GroenfeldK. GroenveldK.GroeneveldK.GroenfeldKoenKoen GreoneveldKoen GroenewaldKoen GroenveldKoen GroenveveldKroenveldDJ BoozyWoozySumicJohnny CrockettK. Taylor (3)MC BellyMr. Blue (5)Neo-KKG (16)KlubbheadsItty Bitty Boozy WoozyThe Ultimate SeductionCode BlueJ.A.K.DigidanceGreenfieldMaximumDJ DiscoRollercoasterEuromastersTrancemissionRave NationBrothers In LawDa Techno BohemianFrantic ExplosionLa CasaHardlinersToo Fast For MellowShelleyChiara3 Dubbs In A SleeveDa Klubb KingsSeven-TeesB.I.G.The DJThe Tone SelectorUnited Deejays For Central AmericaCab'n'Crew2 HiSlammerCooperKA-22The Sound Of NowDrunkenmunkyLorindoMellow TracksJoy (4)Al CappucinoChaka Boom BangMr. KinkyCapo CopaReservoir JocksMF-tracksKoen Groeneveld & Addy van der ZwanK&AQueerCut The CakeTwo TopBad Boy NotoriousRoberto TechnalliRe-CurrentMillennium BugD-NaturalCatalanaFreak BitchThe Dental RaversClubsquadInfectious!Van ZantenSnow Inc.It TunesDigital TwinsDelano & CrockettHi_TackTek TeamLCD-JKlubbdriverCenturion (2)Kick 'N RushThe Caramel ClubUntouchable 3Club Scene InvestigatorsDutch MaffiaSleezy GItty Bitty, Boozy Woozy & GreatskiThe Rotterdam GangThe Sync Inc.Speakerz!Dolce Vita (6)CaptchaChainsideDutch BasterdsLos Pampas Featuring The Dixieband + +61585Cannonball AdderleyJulian Edwin AdderleyJulian "Cannonball" Adderley was an American jazz saxophonist, composer, bandleader, producer. Brother of jazz cornet/trumpet player [a=Nat Adderley], uncle of jazz keyboardist [a=Nat Adderley Jr.] +Born: 15 September 1928 in Tampa, Florida, USA. +Died: 8 August 1975 in Gary, Indiana, USA (aged 46). +Adderley was known for his rambunctious attitude to life, yet as a musician he was prolific, featuring on hundreds of releases during his lifetime. He worked both in many jazz groups, and recorded his own works under many groupings. Needs Votehttps://cannonball-adderley.com/https://cannonballadderley.bandcamp.com/https://en.wikipedia.org/wiki/Cannonball_Adderleyhttps://www.britannica.com/biography/Cannonball-Adderleyhttps://www.jazzdisco.org/cannonball-adderley/https://www.allmusic.com/artist/cannonball-adderley-mn0000548338"Cannonball" Adderley"Cannonball" Adderly'Cannonball' Adderley'Julian Cannonball' AdderleyAdderelyAdderleyAdderlyAderlyC. AdderleyC. AdderlyC.AdderleyCannon BallCannon Ball AdderleyCannon Ball-AdderleyCannonaball AdderleyCannonbal - AdderlyCannonbal AdderleyCannonbal AdderlyCannonballCannonball / AdderleyCannonball Adderley "Soul Zodiac"Cannonball AdderlyCannonball AderleyCannonball Julian AdderleyCanonball AdderleyCanonball AdderlyG. AdderleyJ AdderleyJ. "Cannonball" AdderleyJ. AdderleyJ. AdderlyJ. C. AdderleyJ. Cannon AdderleyJ.& N.AdderleyJ.AdderleyJ.C. AdderleyJohn "Cannonball" AdderleyJules AdderlyJulianJulian "Cannon Ball" AdderleyJulian "Cannonball" AdderleyJulian "Cannonball" AdderlyJulian "Cannonball' AdderleyJulian "Connonball" AdderlayJulian "cannonball" AdderleyJulian 'Cannonball' AdderleyJulian 'Cannonball' AdderlyJulian (Cannonball) AdderleyJulian - Cannonball - AdderleyJulian AdderlayJulian AdderleyJulian AdderlyJulian C. AdderleyJulian Cannon Ball AdderleyJulian Cannonball AdderleyJulian Cannonball AdderlyJulian E. AdderleyJulian E. AdderlyJulian Edwin "Cannonball" AdderleyJulian «Cannonball» AdderleyJulian »Cannonball« AdderleyJulian ‘Cannonball’ AdderleyJulian “Cannonball” AdderleyJulian ‹‹Cannonball›› AdderleyJulien "Cannonball" AdderleyJulien AdderleyJulius "Cannonball" AdderleyJulián AdderleyJullian AdderleyД. ЭддерлиД. ЭдерлиДж. "Кеннонболл" ЭдерлиДж. К. АдърлиК. ЭддерлиКенонбал ЕдерлиКэннонболл ЭддерлиЭддерлиキャノンボール・アダレイJud BrotherlyBuckshot La Funke"Big Man"Ronnie PetersGlen PrescottGil Evans And His OrchestraThe Miles Davis SextetCannonball Adderley SextetThe Cannonball Adderley QuintetNat Adderley SextetRay Brown All-Star Big BandNat Adderley QuintetCannonball Adderley And His OrchestraCannonball Adderley QuartetKenny Dorham SeptetNat Adderley And The Big Sax SectionThe Adderley BrothersSam Jones Plus 10Spider Johnson And His Popeye BandCannonball Adderley And His SoultetWes Montgomery All-StarsKenny Clarke SeptetCannonball Adderley All StarsJunat ProductionsStan Getz SeptetThe Cannonball Adderley Quintet & Orchestra + +61587Howard RobertsHoward Mancel RobertsUS West Coast jazz guitarist, educator, session musician and producer. Father of [a4083137] and [a1791815], he was married to [a=Jill Roberts]. +Born October 2, 1929 in Phoenix, AZ, USA, died June 28, 1992 in Seattle, WA, USA + +Do NOT confuse with [l=Columbia] producer, vocal arranger and chorus master [a=Howard A. Roberts] (often associated with [a273817]). +Needs Votehttps://www.utstat.utoronto.ca/mikevans/hroberts/sounds/discography.htmlhttps://en.wikipedia.org/wiki/Howard_Robertshttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=290417&subid=0http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=189767&subid=1https://adp.library.ucsb.edu/names/340433Don RobertsH. RobertH. RobertsHoward M. RobertsHoward Mancel RobertsHoward RobertRobertsХ. Робертсハワード・ロバーツJohn Doe (39)Gib FenderLes Brown And His Band Of RenownRussell Garcia And His OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraLalo Schifrin & OrchestraMr. Gasser & The WeirdosThe Chico Hamilton TrioBuddy De Franco SextetThe 50 Guitars Of Tommy GarrettLaurindo Almeida & The Bossa Nova AllstarsThe Howard Roberts QuartetDennis Farnon And His OrchestraBuddy Collette QuintetThe Pete Jolly SextetWardell Gray SextetThe John Graas NonetThe Guitars, Inc.Buddy DeFranco And His OrchestraBobby Troup QuintetHerbie Harper SextetJerry Fuller SextetPete Rugolo And His All StarsGuitars Unlimited (3)The Bob Cooper SextetBob Enevoldsen QuintetBobby Troup And His OrchestraJohn Graas SeptetThe Brothers Candoli: SextetJohn Towner QuartetBob Troup TrioRay Rasch And The Pipers 10 + +61939SebanelliChris CrooksA Chris C pseudonym based on the name of his two dogs, Seb & Ellie.CorrectBebanelliBen SebanelliSabanelliChris CA10Chris C (5)Chris Crooks (5) + +62463Mat Silver vs. Tony BurtGerman & New Zealand dance music production team, comprising of Matthias Scheffler and Tony Burt. They became known for their productions between 2000-2004. +The two met whilst DJ’ing at Electrowerkz, London in April 2000. At that time Matthias was active as producer and Tony was running his own label full time as well as a specialist online music store. + +Their music defined a new style of trance with harder sounds and more complex percussion arrangements with synth lines. CorrectMat Silver & Tony BurtMat Silver And Tony BurtMat Silver Vs Tony BurtMat Silver vs Toni BurtMat Silver vs Tony BurtMatt Silver & Toni BurtMatt Silver & Tony BurtMatt Silver Vs Tony BurtMatt Silver vs. Tony BurtSilver & BurtTony BurtTony Burt & Mat SilverTony BurtMatthias Scheffler + +62464Revolution 9CorrectR9Revolution9Dave ParkinsonWargrooverFalconiGroovy BastardsDave ParkinsonAron Paramor + +62818Simon ParkesSimon John ParkesSimon Parkes is a Writer, Producer & Remixer. He is most known as the Co-Writer for all tracks by the legendary [a=Tony de Vit], excluding 'The Dawn'. + +Simon's studio is now based in Mid-Wales, Powys, UK and trading under 'Frozen UK'. +Needs Votehttp://www.frozenuk.comhttp://www.facebook.com/simon.j.parkeshttps://twitter.com/SimonFZNparkesParkesS ParksS. ParkesS. ParksSimon J. ParkesSimon ParksTony De Vit & Simon ParkesVersion Two + +62859Ian BlandIan BlandMusic producer. Born in Preston, Lancashire, UK.Needs Votehttps://www.blandystudio.com/https://twitter.com/blandystudiohttps://www.mixcloud.com/ibland1/BlandBlandyI BlandI. BlandI. BlankI.BlandIanIan BlendIan BlondL. BlandMix Master DoodySpace AngelHollywood HillsRuse (2)Blandy (2)NativeQuakeDancing DivazFrench Connection (6)Beat RenegadesDejureDream FrequencyDiva RhythmsNu-RenegadesNorthstarzProject EdenNeon 8RT ProjectLifestylerzPiano PiratesNorthern HeightzRed (12)Bump 'n' GrindSample HeadsArena (23)No AgendaMaison All Stars + +62916Andrea RemondiniAndrea RemondiniItalian musician, DJ and producer.Needs Votehttp://www.andrearemondini.comA RemondiniA. RamondiniA. RemodiniA. RemonA. RemondiA. RemondindiA. RemondiniA. RemondinoA. RemoniniA.. RemondiniA.RamondiniA.RemondiniAndrea RemodiniAndrewM. RemondiniRemondi, A.RemondiniRemondini A.Remondini, A.Remondini, AndreaN-DrewCRWSharada House GangMig 29MegavoicesVenerdiEs VedraNo N@meDJ Creator (2)2 SpacesWWWGalaexiaLesson Number 14-FacesVenice (2)Pivot (3) + +63084Vernon ReidVernon Alphonsus Reid (born 22 August 1958 London, England) is an American guitarist, songwriter, composer, and bandleader.Needs Votehttp://www.myspace.com/vernonreid https://en.wikipedia.org/wiki/Vernon_Reid?ReidReldV ReidV. ReidV.R.V.ReidVernonVernon A. ReidVernon ReedGil Evans And His OrchestraLiving ColourYohimbe BrothersRonald Shannon Jackson And The Decoding SocietyThe Memphis Blood Jugband SingersFree Form Funky FrēqsJack Bruce And The Cuicoland ExpressSpectrum RoadOK SavantZig Zag Power Trio + +63207Carlotta ChadwickNeeds VoteC. ChadwickChadwick + +63211Samuel E ReeveCorrectS. E. ReeveSam E ReeveSam ReeveSamuel E. ReeveScootSamuel E Reeve & Jon RundellScrap (4) + +63220Sol RayHard Dance Producer/DJ, music editor of Upfront MagazineNeeds VoteDJ Sol RayS. RayS.RaySolraySoul RaySol Ray & Dynamic InterventionSol Ray & The SaintProject Ozma + +63230Nick RaffertyNicholas RaffertyHard dance producer & DJ from Lichfield, UK. + +May obsolete (from the archived website): +Email: info@nickrafferty.com +P.O. Box 2696 +Lichfield, WS14 9FT +United KingdomNeeds Votehttp://web.archive.org/web/20040106052130/http://www.nickrafferty.com/index2.htmlhttp://web.archive.org/web/20051019045519/http://www.nickrafferty.com/http://web.archive.org/web/20080116103932/http://www.nickrafferty.com/http://web.archive.org/web/20090603102125/http://www.nickrafferty.com/https://myspace.com/djnickraffertyhttps://www.facebook.com/nick.rafferty.98N RaffertyN. RaffertyRaffertyNick Rafferty & The CoalitionNR² + +63234Charlotte BirchCharlotte BirchHard dance DJ & producer from Birmingham, UK and based in Sydney, Australia. +Charlotte Birch started DJing in 1996 after giving up a 10 year career in lingerie modelling. +Within months she became resident for Moneypenny’s and Decadence, playing funky house and club classics. +In 1999 she radically changed her music style to hard dance and became resident at [l=Sundissential]. +In 2004 she launched her own label [l=Drop Zone Recordings] as a platform to showcase her own productions.Needs Votehttp://www.facebook.com/pages/DJ-Charlotte-Birch/63429147432http://myspace.com/djcharlottebirchhttp://soundcloud.com/charlotte-birchhttp://www.harderfaster.net/?sid=01df0514a57a36099aa5e266ff441cb2&section=features&action=showfeature&featureid=11000C Birch + +63235Dirk Diggler (2)Cor SangersNeeds VoteEquatorDJ WarlockAircheckAquamarineBCMCor SangersJim LazloSkywalker (3)Caesar (2)Mallorca DJ'sTrance PirateNaginataGreen FlowChest RockwellLuigi SabantiniKen MartonOrgan Donors + +63302The Edison FactorCorrectEdison FactorThe EdisonJames LawsonMatt Williams + +63316Scott Edwards (2)Scott G. EdwardsBassist.Correcthttps://web.archive.org/web/20210418151447/http://scottedwardsmusic.com/index.htmEdwardsScot EdwardsScott EdwardScott G. EdwardsScott Gordon EdwardsScott HowardScotti EdwardsScottieScottie EdwardsScotty EdwardsRhythm HeritageBrass Fever + +63636DJ Zagros & Pacific[b]DO NOT USE.[/b] + +These are two brothers: DJ Zagros and DJ Pacific, who also produce tracks under their own name. Separate them as individual artists.Needs VoteD.J.Zagros & PacificDJ's Zagros & PacificZagros & PacificArash AryanAli Aryan + +63638Nik Denton vs Paul KingNik Denton & Paul KingCorrectDenton & KingNick Denton & Paul KingNik Denton & Paul KingNik Denton vs. Paul KingPaul King & Nik DentonPaul King And Nik DentonOverload (2)Paul KingNik Denton + +63639Overload (2)Nik Denton & Paul KingUK Hard House Production duo.CorrectNik Denton vs Paul King + +63643The GrandRaoul van GrinsvenCorrecthttp://www.djzany.nl/Le GrandCopycatPale-XDJ ZanyDJ Alpha-betRaoul LucianoChicano (2)Orin-coRaineRaoul van Grinsven + +63650The OriginatorCorrectOriginatorOctagonMagic From AboveMarco V & BenjaminOut Of GraceGuerillaLocusMo'HawkSouth WestThe Fusion8th WonderCrowd PleaserProFoolsArti$tryDiminishStacey ChandlerJefferseiffMC BassPeace & Jammin'QuoteVK-38Viscious CurvesNightstalkers (2)The BeatshopSlider (2)Unknown DeejayDisco MacabreTales From The ClubAerosoulStars On 99AragonHumpty And DumptyCypher (6)Charades (2)MV&BExperience (15)Benjamin KuytenMarco Verkuylen + +63651Hi-JackersCorrectHijackersThe Hijackers + +63658Paul KershawPaul KershawProducer, DJ and radio presenter from the UK.Needs Votehttp://web.archive.org/web/20030211212442/http://www.paulkershaw.subterrania.co.uk:80/http://web.archive.org/web/20070222204723/http://www.paulkershaw.co.uk/http://web.archive.org/web/20111114014623/http://www.paulkershaw.co.uk/https://myspace.com/paulkershawHershawKershawP KershawP. KershawP. kershawP.KershawPaul KershavAtlantisFractikaWaveburnerSpamsterPiquet (3) + +63669Cunaro & DeanCorrectCunary & DeanCurnaro & DeanLee DeanJose Cunaro + +63680LexaPaul JanesNeeds VoteMajesticThe Red Hand GangGround ZeroPaul JanesHouserockersEldon TyrellUntidy DJ'sUK Gold (2) + +63938The FreakFreek FonteinThe Freak ([a=Freek Fontein]) was born in 1965 in Amersfoort, Holland. His affection for playing music to an audience started in 1980 with a dance-program on a local radio ([L=Radio Stad Den Haag]), with this not being enough, after 2 years of DJ-ing, he got his first serious club gig in a club in Noordwijk (NL). + +After a few months he went to IBIZA and MALLORCA were he played in several clubs for 3 months during the summer of 1988, on his arrival he started playing as a resident DJ in a club in The Hague were he played for 9 years. It was here that the idea of making their own records was born and in 1991 he started his own record company called “BPM DANCE” with labels as “Jinx Records” and “2-Play Records”. +In 1996 he produced several big club tracks on his own label “2-Play” including the massive club anthem by Perfect Phase “Horny Horns” and Those 2 “Get Wicked”. +His most successful project, “Horny Horns” was in various singles charts all over the world including the UK where it reached the National Single Top 20.It was also chosen to be the best club track of 1999 in Holland. Freaks releases in the UK on JINX UK named ‘Addictive’ and “The Melody, The Sound” on Tidy-Two were released in the UK beginning of 2003 and reached the UK Dance Charts. His new single called ' The Bells" will be released in the UK after summer this year. Also The Freak compiled and mixed his first double album in the UK called "Resonate 2" and this opened more doors for him worldwide. + +Since Freak started DJ-ing 20 years ago, he has graced crowds with his unique blend of uplifting trance to Ibiza, Mallorca, Spain, Ireland, UK, Norway, Canada, South Africa, Switzerland, Germany and is resident DJ in the famous club XL (Xtralarge) in Amsterdam, the Bitte-ein-Beat parties all over Europe. The Freak is also frequently playing at the well known club "Lexion" in the Netherlands. +Needs VoteD.J. The FreakDJ FreakDJ The FreaDJ The FreakDJ the FreakDj The FreakFreakSeraqueOrganic SubstanceExo (2)Freek Fontein + +64206Heaven's CryEdwin van de Witte, Ron van den Beuken, Jos Klaster, Richard DurandHeaven's Cry music composed and produced by Jos Klaster, Richard Durand. +DJ duo from The Netherlands (Edwin van de Witte, Ron van den Beuken) +Needs Votehttp://www.heavenscryofficial.comhttps://www.facebook.com/heavenscryofficialhttps://www.instagram.com/heavenscryofficialhttps://soundcloud.com/heavenscryofficialhttps://www.youtube.com/channel/UCg3ICDoBNeqxFgKe65dqufwHCHaven's CryHeavens CryLexion pr. Heaven's CryRon van den BeukenL.T.R. van SchooneveldJos KlasterEdwin van de WitteLuc D'Aoust + +64277BreatherRachel Auburn & Terry ReaderCorrectRachel AuburnTerry Reader + +64312Jim SullivanJames Robert Leonard SullivanBritish record producer +[b]Do not confuse with American singer songwriter [a908492] and +for the guitar player and arranger, use [a281958][/b]Needs Votehttps://twitter.com/thewideboysjimhttps://uk.linkedin.com/in/jim-sullivan-93a21b51J O;SullivanJ SullivanJ. O'SullivanJ. SulivanJ. SullivanJ.SullivanJames SulivanJames SullivanJim "Happy Human" SullivanJim "The Happy Human" SullivanJim 'Happy Human' SullivanJim 'The Happy Human' SullivanJim (The Happy Human) SullivanJim O'SullivanJim SulivanJim-SullivanJimmy SullivanSullivanTrixxyHappy HumanSaucy TunesThe Red HedShortfuse (2)Rouge (8)Sebastian PerezWyda ProductionsSmokin' Jack HillCajunHappy HumansThe WideboysVinylgroover & The Red HedThe CollectiveMedieval HooligansBodie & DoyleBrisk & TrixxyVGTRapidoDigital ManoeuvresVinylgroover & TrixxySelectBam Bam & PebblesSound AssassinsHard EvidenceEchoplex (2)VG 2000Hyperdrive (2)KontaktElevate (2)Baggins & FodBeats 'R' UsPromised Land (2)ScintilatorSaturnaliaStargate (5)Skylab NineTechno PhobicSJ ProjectAtari EraLoop (9)Era (6)ScintillatorGarage JamsThe Bomb Squad (6)Project BasslineGlowstixHooligan BreaksQuest (27)Sub JamsStadium (3)Whey BaqSG-1DaahypeUntil Dawn (2)Burnt (9)Lamentis + +64569DJ MeisterCorrect + +64652Harvey MasonHarvey William Mason Sr.Harvey Mason (born February 22, 1947, Atlantic City, New Jersey, USA) is an American soul, jazz and disco drummer, songwriter and producer. Father of musician and producer [a=Harvey Mason Jr.] +Correcthttps://www.harveymason.nethttps://en.wikipedia.org/wiki/Harvey_Masonhttps://www.drummerworld.com/drummers/Harvey_Mason.htmlB. MasonDr. Harvey MasonH. MansonH. MasonH. Mason Jr.H.MasonHarry MasonHarveyHarvey MaisonHarvey MansonHarvey Mason Jr.Harvey Mason Snr.Harvey Mason Sr.Harvey Mason, Jr.Harvey Mason, Sr.Harvey W MasonHarvey W William MasonHarvey W William Mason JrHarvey W. MasonHarvey W. William MasonHarvey W. William Mason Jr.Harvey William MasonHarvey William Mason, Jr.Harvy MasonHavey MasonHervey MasonHervey Mason Jr.K. MasonM. MasonMasonMason Jr.ハービー・メイソンハーヴィー・メイシンハーヴィー・メイソンハーヴェイ・メイソンThe HeadhuntersFourplay (3)Henry Mancini And His OrchestraGeorge Shearing TrioOrquestra WasSugar Loaf ExpressThe Gentle ThoughtsThe Writers (2)The Herbie Hancock GroupPhil Upchurch TrioL.A. Jazz QuintetBrasscadaLlew Matthews TrioThe Jazz Central Station All StarsMason's + +64694Dizzy GillespieJohn Birks GillespieAmerican jazz trumpet player, bandleader, singer, and composer. +Born October 21, 1917, Cheraw, South Carolina, USA +Died January 6, 1993, Englewood, New Jersey, USA +Together with [a75617] he was the predominant figure in the development of bebop (bop), the earliest form of modern jazz. He taught and influenced many other musicians, including trumpeters [a23755], [a309986], [a259082], [a277489], [a29976], [a156019] and [a92051]. +He was also one of the founders of Afro-Cuban (or Latin) jazz, adding [a314413]'s conga to his orchestra in 1947, and utilizing complex poly-rhythms early on. +Career Highlights: +Awarded New Star Award from Esquire Magazine (1944) +Performs at first integrated concert in public school, Cheraw, SC (1959) +First jazz musician appointed by US department of State to undertake cultural mission (1972) +Awarded Handel Medallion from the City of New York (1972) +Received Paul Robeson Award from Rutgers University Institute of Jazz Studies (1972) +Performs at White House for President Carter and the Shah of Iran (1977) +Performs "Salt Peanuts" with President Carter at White House Jazz Concert (1978) +Inducted into Big Band and Jazz Hall of Fame (1982) +Received Lifetime Achievement Award from the National Association of Recording Arts and Sciences (1989) +Received National Medal of Arts from President Bush (1989) +Received Duke Ellington Award from the society og Composers, Authors, and Publishers (1989) +Awarded Grammy Lifetime Achievement Award (1989) +Received Kennedy Center Honors Award (1990) +Received fourteen honorary degrees, including Ph.D. Rutgers University (1972), Ph.D. Chicago Conservatory of Music (1978) +Awarded a Star on the Hollywood Walk of Fame for recording Needs Votehttps://dizzygillespie.org/https://en.wikipedia.org/wiki/Dizzy_Gillespiehttps://www.jazzdisco.org/dizzy-gillespie/https://www.britannica.com/biography/Dizzy-Gillespiehttps://www.arts.gov/honors/jazz/john-birks-dizzy-gillespiehttps://www.bluenote.com/artist/dizzy-gillespie/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102015/Gillespie_Dizzy"Dizzy" Gillespie'Dizzy' GillespieC. GillespieD GillespieD, GillespieD. GilespieD. GillelspieD. GillepieD. GillepsieD. GillespiD. GillespieD. GillespierD. GillispieD. GyllespieD. ガレスビーD.G.D.GillespieD/ GillespieDissy GillespieDizDizy GillespieDizzDizzi GillespieDizzieDizzie GillespieDizzyDizzy GilespieDizzy Gille SpieDizzy GillepieDizzy GillepsieDizzy Gillespie (= John Birk)Dizzy Gillespie (= John Birks)Dizzy Gillespie (Combos)Dizzy Gillespie And His Latin RhythmDizzy Gillespie JamDizzy Gillespie m.v.Dizzy Gillespie,Dizzy Gillespie, John BirksDizzy GillesspieDizzy-GillespieE. GillespipeG. GillespieGILLESPIEGiellespieGilespieGilleespieGillepsieGillespiGillespieGillespie D.Gillespie, D.Gillespie, DizzyGillespierGillispeGillispieGillspieJ GillespieJ. "D." GillespieJ. "Dizzy" GillespieJ. 'Dizzy' GillespieJ. (Dizzy) GillespieJ. B, GillespieJ. B. "Dizzy" GillespieJ. B. GillespieJ. B. “Dizzy” GillespieJ. D. GillespieJ. Dizzy GillespieJ. GellespieJ. GilespieJ. GillespieJ."Dizzy" GillespieJ.B. "Dizzy" GillespieJ.B. GillespieJ.D. GillespieJ.GillespieJB GillespieJohn "Dizzie" GillespieJohn "Dizzy GillespieJohn "Dizzy" GillepsieJohn "Dizzy" GillespieJohn "Dizzy"GillespieJohn "Dizzy' GillespieJohn ''Dizzy'' GillespieJohn 'Dizzy' GillespieJohn B. "Dizzy" GillespieJohn B. 'Dizzy' GillespieJohn B. GillespieJohn BirksJohn Birks "DIZZY" GillespieJohn Birks "Dizzie" GillespieJohn Birks "Dizzy" DillespieJohn Birks "Dizzy" GillespieJohn Birks "Dizzy" GillspieJohn Birks ''Dizzy'' GillespieJohn Birks 'Dizzy' GillespieJohn Birks (Dizzy) GillespieJohn Birks - Dizzy GillespieJohn Birks Dizzy GillespieJohn Birks GillespieJohn Birks «Dizzy» GillespieJohn Birks-Dizzy GillespieJohn Buirks (Dizzy) GillespieJohn Burks GillespieJohn D. GillespieJohn Dizzy GillespieJohn GillespieJohn « Dizzy » GillespieL. GillespieГиллеспиД. ГиллеспиДиззи ГилеспиДиззи ГиллеспиДизи ГилеспиДизи Гиллеспиדיזי גילספיディジー・ガレスピーデイジー・ガレスピー電氣低音王B. BopsteinJohn BirksGabriel (42)Hen Gates (3)John Kildare"Izzy" GoldbergCab Calloway And His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraThe Quintet Of The YearMetronome All StarsSlim Gaillard And His OrchestraCharlie Parker's Re-BoppersLionel Hampton And His OrchestraBilly Eckstine And His OrchestraRhythmstickDizzy Gillespie SeptetDizzy Gillespie Big BandDizzy Gillespie QuintetCharlie Parker And His OrchestraBoyd Raeburn And His OrchestraLucky Millinder And His OrchestraDizzy Gillespie SextetClyde Hart All StarsRed Norvo And His Selected SextetColeman Hawkins And His OrchestraLes Hite And His OrchestraDizzy Gillespie And His All Star QuintetDizzy Gillespie JazzmenDizzy Gillespie - Stan Getz SextetDeLuxe All Star BandThe Monterey Jazz Festival OrchestraCab Calloway And His Cotton Club OrchestraThe QuintetPete Brown And His BandThe Dizzy Gillespie Reunion Big BandThe Dizzy Gillespie Big 7Tony Scott And His Down Beat Club SeptetDizzy Gillespie's Big 4The Trumpet KingsRed Norvo All-StarsThe Modern Jazz SextetDizzy Gillespie QuartetDizzy Gillespie's Rebop SixThe Dizzy Gillespie OctetThe Quincy Jones Big BandThe Giants Of Jazz (2)The Three AngelsWilbert Baranco And His Rhythm BombardiersTempo Jazz MenThe Paris All-StarsDizzy Gillespie All StarsDizzy Gillespie And His Operatic StringsJohnny Griffin QuintetDizzy Gillespie's Cool Jazz StarsBarry Ulanov's All Star Modern Jazz MusiciansSarah Vaughan And Her OrchestraTrummy Young All StarsDizzy Gillespie Tempo JazzmenThe Gillespie-Getz-Stitt SeptetThe Dizzy Gillespie 6Oscar Pettiford And His 18 All StarsDizzy Gillespie & FriendsSlim Gaillard And His All StarsDizzy Gillespie Jazz EnsembleStan Getz SeptetDizzy Gillespie/Oscar Pettiford QuintetDizzy Gillespie - Sonny Stitt QuintetDizzy Gillespie-Charlie Parker Jazzmen + +64798Jeff TyzikJeffrey J. TyzikTrumpet player and conductor. + +Jeff Tkazyik changed is name to Jeff Tyzik in 1979. + +Born in Hyde Park, New York, Jeff Tyzik first fell in love with music at the age of eight when he saw a drum and bugle corps march by in a local parade. "For my ninth birthday, I said, 'I want a bugle!'" recalled Tyzik. But when he opened the case, he was crushed. "It wasn't a bugle. It was a cornet!" + +He quickly forgot his initial disappointment, however, and began studying cornet with a teacher who had performed in the Goldman Memorial Band in the 20's. He immediately excelled. "I was always extremely serious about music, even at a young age. I was frustrated with the other kids when they didn't take it as seriously as I did." recalled Tyzik, adding, "I've always given all of my energy to anything I'm passionate about." + +Tyzik's teachers and friends began pushing him to audition for the Eastman School of Music. Tyzik recalls, "Eastman was a pivotal place in my development because I was exposed to legends there, like Ray Wright. When I was a kid, once in a while my mom would take me to Radio City Music Hall where Ray was the conductor of the Radio City Music Hall Orchestra. I met Ray years later when he was a professor of jazz studies at the Eastman School and I was a student. He became a mentor to me. He knew volumes about music and the music business. He treated all of his students as professionals. What I do today, I directly link to my studies with him." + +At Eastman, Tyzik also met Chuck Mangione, the great band leader. Since Mangione was tough on him in college, Tyzik was happily surprised when Mangione offered him a job. Over the six years following, he worked under Mangione, soaking in every part of the music business. + +"During my first performance at the Hollywood Bowl with Chuck, we were recording a live album. I was both performing on stage and co-producing the recording," Tyzik laughs. "Five minutes before the concert started, the power went out in the Hollywood Bowl and everything went dark. Live performance is always interesting!" + +Performing in the 70's with Mangione's jazz orchestra for crowds ten and twenty thousand strong showed Tyzik that the possibilities for the orchestra beyond classical music were unlimited. "People came to see Chuck, but they also came for the music. So even though I was classically-trained, I went in a more jazz, pop, and rock direction for nearly twenty years, always trying to synthesize those musical elements for symphony orchestra." + +Tyzik encountered the next great opportunity of his career when he met pops legend Doc Severinsen, then leader of the Tonight Show band. Tyzik and virtuoso trumpet player Allen Vizzutti collaborated on a trumpet concerto specifically for Doc to record. "Allen was on a world tour with Chick Corea and couldn't make the premiere of our piece, so I went to the first rehearsal alone," Tyzik recalls. "I was nervous (to say the least!) and was hiding in the back of the auditorium. Doc called me up to the stage and had me sit right next to him while they rehearsed the piece for the first time. Doc loved the concerto. That night, he and I spent hours talking about all of these things we'd like to do someday—and everything we talked about that night, we ended up doing." Some of the projects Tyzik has worked on with Doc include contributing arrangements for many of Doc's symphony programs, and most notably, producing the GRAMMY Award-winning album, The Tonight Show Band with Doc Severinsen, Vol. 1, recorded in 1986. + +"Doc has been an inspiration to me. His energy and determination to continue to be a musician of excellence is awesome," said Tyzik, "My relationship with him is well beyond professional and deeper than I can explain." +Needs Votehttp://www.jefftyzik.comJ. TuzikJ. TyzikJeff TysikJeff TyzicJeffrey TyzikTYZIKTyzikTyzik (Tie-Zik)Jeff TkazyikRochester Philharmonic Orchestra + +65744Donald HarrisonDonald Harrison, Jr.American jazz saxophonist, born June 23, 1960 in New Orleans, Louisiana, USA.. He is nicknamed "The King of Nouveau Swing".Needs Votehttps://donaldharrison.com/https://myspace.com/donaldharrisonhttps://en.wikipedia.org/wiki/Donald_HarrisonBig Chief Donald Harrison JrD. HarrisonD.HarrisonDavid Harrison, Jr.Donald "Duck" HarrisonDonald Harrison Electric BandDonald Harrison JnrDonald Harrison JrDonald Harrison Jr.Donald Harrison, Jr.Donald Harrison, Sr.HarrisonHarrissonドナルド・ハリソンThe HeadhuntersArt Blakey & The Jazz MessengersThe Don Pullen QuintetThe CookersThe Donald Harrison BandDonald Harrison QuintetThe Errol Parker TentetHarrison/BlanchardEddie Allen QuintetMessage (9)The Brian Lynch/Eddie Palmieri ProjectThe New Orleans Legacy EnsembleJoanne Brackeen QuartetRob Bargad SextetThe Candid Jazz MastersMickey Tucker SextetBenny Green SextetDonald Harrison Quartet + +65746Kenny BarronKenneth BarronU.S. American jazz pianist, born 9 June 1943 in Philadelphia, Pennsylvania, USA. He is the younger brother of [a=Bill Barron] and appeared on hundreds of recordings as leader and sideman. He is considered one of the most influential mainstream jazz pianists since the bebop era. +Needs Votehttps://kennybarron.com/https://www.facebook.com/kennybarronmusichttps://www.instagram.com/kennybarron/https://x.com/kennybarron88https://en.wikipedia.org/wiki/Kenny_BarronBaronBarronK BarronK. BaronK. BarronK.BarronKen BarronKenneth BaronKenneth BarronKenneth BarrronKenny BaronKenny BarrowKenny BrownKenny DarronК. БарронКенни Барронケニー・バロンBugianaDizzy Gillespie QuintetThe Lee Konitz QuartetStan Getz QuartetTed Curson & CompanyThe Classical Jazz QuartetThe Al Gafa QuintetoJoe Henderson SextetKenny Barron TrioContinuum (5)Doug Sertl's Uptown ExpressBuster Williams TrioSphere (16)Ron Carter TrioRay Alexander SextetThe Bill Barron QuartetEddie Harris QuartetThe Bob Thiele CollectiveTom Harrell QuintetPerry Robinson 4The Jimmy Owens - Kenny Barron QuintetRon Carter QuartetLouis Hayes QuintetBuck Hill QuartetThe Joshua Breakstone QuartetBill Mobley SextetThe New York Saxophone MadnessChet Baker GroupKenny Barron QuintetTom Williams QuintetKenny Barron QuartetEddie Allen QuintetGreg Abate QuintetRalph Lalama QuartetEddie Henderson QuintetGreg Marvin QuintetJohn Swana SextetGerry Gibbs Thrasher Dream TrioSuper Trio (2)Harry Allen QuartetEric Alexander SextetThe Jet All Star QuartetYusef Lateef QuartetThe Art Of ThreeLouis Hayes SextetSwing SummitJon Nagourney QuartetBarry Harris Kenny Barron QuartetThe Kenny Barron EnsembleThe Super Premium BandThe Mark Kirk Jazz QuartetThe Quartet LegendKenny Barron-John Hicks QuartetRay Drummond Quintet + +65754Ricky FordRichard Allen FordAmerican tenor saxophonist, born 4 March 1954 in Boston, Massachusetts, USA +Ford started to play drums, then changed to tenor saxophone at the age of 15, inspired by Rahsaan Roland Kirk. Ran Blake heard him playing in a Boston Club and persuaded him to study music at the New England Conservatory. (Blake later invited him to play on several albums). In 1974 Ford joined the Duke Ellington Orchestra under the leadership of Mercer Ellington and in 1976 he replaced George Adams in the Charles Mingus group. In the late 1970s and early 1980s he played with Dannie Richmond, Mingus Dynasty, George Russell, Beaver Harris, Lionel Hampton and Abdullah Ibrahim's Ekaya group. However, following the release of his debut album in 1977 he has worked increasingly as a leader, often recording with Jimmy Cobb and ex-Ellington colleague James Spaulding. His latest releases also feature one of his New England Conservatory teachers, Jaki Byard. Ricky is from 2000 Professor at the Bilgi University in Istanbul.Needs Votehttp://ricky.ford.free.fr/FordR. FordRichard FordRichy FordThe Charles Mingus QuintetLionel Hampton And His OrchestraSteve Lacy OctetMingus DynastyMal Waldron QuintetEkayaAmina Claudine Myers SextetMcCoy Tyner Big BandDannie Richmond QuintetThe 360 Degree Music ExperienceRan Blake QuartetThe Last Mingus BandRichard Davis QuartetThe Jack Walrath GroupSwingTime (2)Ricky Ford QuartetThe Candid Jazz MastersRicky Ford QuintetRicky Ford SextetRichard Davis And Friends + +65755Larry GalesLawrence Bernard GalesAmerican jazz bassist and cellist (born March 25, 1936 in New York City, New York - died September 12, 1995 in Sylmar, California) +Needs VoteGalesL. GalesLarry GailesLarry GaleLary GalesLawrence Galesラリー・ゲイルズJunior Mance TrioThe Thelonious Monk QuartetThe Thelonious Monk QuintetThe Thelonious Monk OrchestraThe Eddie Davis-Johnny Griffin QuintetThelonious Monk NonetBennie Green QuintetThe Starlings (5)Milcho Leviev TrioThe Twilighters (14)The Candid Jazz Masters + +65792Francis GrierFrancis John Roy GrierEnglish composer, pianist and organist, born in 1955.Needs Votehttp://en.wikipedia.org/wiki/Francis_GrierF. GrierFrances GrierThe Academy Of St. Martin-in-the-FieldsThe English Concert + +65795John TavenerSir John Kenneth TavenerInfluential British classical composer of the late 20th century, known for his extensive output of religion-themed works. He was knighted in 2000 for services to music. + +Born 28th January 1944 Wembley Park, London, England - died 12th November 2013 Child Okeford, Dorset, England. + +Not to be confused with the 16th century [a=John Taverner].Needs Votehttps://web.archive.org/web/20240721195735/http://johntavener.com/https://en.wikipedia.org/wiki/John_Tavenerhttps://www.imdb.com/name/nm1343635/http://www.classical.net/music/comp.lst/acc/tavener.phpJ TavenerJ TavernerJ. K. TavenerJ. TavenerJ. TavernerJ.T.J.TavenerJoŸ TavenerSir John TavenerT. TavenerTavemerTavenerTavener J.Tavener, Sir JohnTavernerサー・ジョン・タヴナータヴナー + +65796Henry PurcellEnglish composer of the Baroque period. +Born: c. 1659-09-10 (Westminster, London, UK). +Died: 1695-11-21 (Marsham Street, London, UK).Needs Votehttp://www.henrypurcell.org.uk/https://en.wikipedia.org/wiki/Henry_Purcellhttps://www.imdb.com/name/nm0700722/https://www.britannica.com/biography/Henry-Purcellhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102498/Purcell_HenryDurcellG. PerselisG. PurcellH PurcellH. PerselH. PerselasH. PerselisH. PerselsH. PurcelH. PurcellH. Purcell, "Yorkshire Feast Song"H. Purcell, Orpheus Britannicus B IIH.PerselisH.PurcellHenri PurcellHenrijs PērselsHenry PurceioHenry PurcelHenry Purcell (1659-1695)Henry PursellMr Henry PurcellMr. H. PurcellMr. Henry PurcellPURCELLPourcellPrucellPurcelPurcellPurcell H.Purcell)Purcell, H.Purcell, HenryPursellT. Purcellattrib. PurcellГ. ПерселГ. ПерселлГ. ПерселльГ. ПерсельГ. ПёрселлГ.ПерселГ.ПерселлГенри ПерселлГенри ПёрселлГенрі ПерселПерселлПёрселлХенри Перслパーセルヘンリー・パーセル + +65807Ensemble ModernEnsemble for contemporary music founded in 1980 and situated in Frankfurt am Main (Germany) since 1985. It's founding members were originally students of the German Youth Philharmonic Orchestra who wanted to create an ensemble with a grass-roots organization devoted to promoting and accurately performing New Music. + +The EM is famous for its special working and organizational form which is unlike any other in the world. All the members are responsible for jointly selecting and dealing with artistic directors, projects, guest musicians, co-productions, and financial matters. Each associate incorporates his/her own personal experience and preferences into the planning, the result of which is a unique and distinctive program, ranging from music theater, dance and video projects to chamber music, ensemble and orchestral concerts.Needs Votehttps://www.ensemble-modern.com/Ensemble Modern FrankfurtEnsemble Modern, FrankfurtEnsemble ModerneMitglieder Des Ensemble ModernThe Ensemble ModernWith Musicians Of Ensemble ModernАнсамбл ModernJohn ScofieldPeter ErskineMartin OwenGeoffry WhartonSascha ArmbrusterCharlotte GeselbrachtWolfgang StryiSusan KnightRoland DiryThomas FichterDietmar WiesnerUwe DierksenRainer RömerRumi Ogawa-HelferichFranck OlluHermann KretzschmarMichael KasperHilary SturtNoriko ShimadaJohannes RupePascal PonsMats BergströmPeter RundelHåkon ThelinMichael SvobodaAndrew DigbyGregory JohnsCorin LongWerner DickelEva BöckerSwantje TessmannSif TuliniusRumi OgawaDaniel RaabeGerdur GunnarsdóttirEva GruesserAdele BitterJozsef HarsBoris MüllerThomas HoferBuggy BrauneStephan MeierErnst KovacicKarin SchmeerHubert MachnikJohn Corbett (2)Wim VosEllen Ruth RoseUeli WigetCatherine MillikenWilliam FormanMathias TackeKarl VentulettEtienne GodeyPeter SchlierMiriam GöttingIrmela BoßlerJozsef JuhaszValentin GarvieCarl RosmanDavid HallerMechthild SommerPauline SachseFriederike LatzkoSherif ElrazzazMichael SiegSava StoianovBruno SuysJonas BylundJagdish MistrySimon BreyerMechiel van den BrinkIb HausmannEllen WegnerThomas BenderMichael Gross (7)Norbert OmmerWolfgang BenderRainer Müller-van RecumMichael StirlingUlrike StortzTom DunnFreya Ritts-KirbyManon MorrisJürgen RuckChristopher BrandtDetlef TewesVeit ScholzDane RobertsLorelei DowlingElsbeth MoserFriedemann DähnAndreas BöttgerDaryl Smith (5)Paul De ClerckStefan GeigerClaudia SackSabine PfeifferMartin DehningAnnette StoodtFriederike KochJoseph SandersHenri FoehrElizabeth RandellLila BrownStefan RappKlemens KerkhoffChristian HommelJaan BossierMichael TiepoldAlbrecht HolderWolfgang BergUlrike KaufmannUdo GrimmMichael BüttlerChristiane AlbertAaron BairdJohannes SchwarzAlexander Von PuttkamerMatthew McDonaldIsabel AdamJochen ScheererMatthias StichSabine AhrendtChristian FauschHans-Joachim TinnefeldBarbara KehrigKerstin HüllemannNina Janßen-DeinzerSaar BergerUwe SchrodiMegumi KasakawaGerda Wind-SperlichKerstin HuellemanReinhold ErnstPaul Cannon (2)Maiko MatsuokaGiorgos PanagiotidisDejan PrešičekYumi Olsson KimachiEva DebonneFilip Eraković + +66418FlinchWill Flinch HumesUK Hard House producerNeeds VoteWill Flinch Humes + +66733LangeStuart James LangelaanTrance DJ from Shrewsbury, United Kingdom.Correcthttp://www.lange-music.comhttp://lange.bandcamp.comhttp://www.facebook.com/langefanhttp://instagram.com/djlangehttp://soundcloud.com/langehttp://twitter.com/djlangehttp://www.youtube.com/user/langetvLange Pr. FirewalLargeFirewallSLLNGX-odusVercettiOffbeatStuart Langelaan + +66882Stu AllanStu AllanBorn 6th February 1962 & Died 22nd September 2022 (aged 60). + +DJ & producer originally from Anglesey who moved to Manchester in 1982. Having been inspired by Soul, Jazz Funk & early Electro / Hip Hop music, he attended club nights by local DJ Greg Wilson at Legend in Manchester. This further fueled his interest of buying imports from Spin Inn records while honing his DJ mixing skills on the mobile circuit part time as he worked odd jobs. Following an interview by Piccadilly Radio 261 presenter Tim Grundy he found work making mixes for other Piccadilly Radio djs between 1984 & 1986. + +This eventually led to him presenting a radio show called 'Souled Out' covering for Lee Browne for six weeks who got some work compering a Motown tour. The first record Stu Allan played was [m5279] but this drew the attention of the station managers who criticised the type of black music he was playing, however it proved popular as the ratings increased. So in July 1986 he became a permanent fixture presenting 'Souled Out'. + +He presented two radio shows, one on a late Saturday / early Sunday morning (1am till 6am) co-hosting with Chris Buckley called the 'All Night Beat', & another by himself playing more specialist music late on a Sunday night into Monday morning (11pm till 2am) carrying on 'Souled Out', which was split into three hourly segments playing upfront new releases from Soul, Hip Hop & House music, & included a run down of the latest top ten chart for each hour sponsored by Spin Inn Records in Manchester compiled by Kenny Grogan. + +He often featured an end of year best of mix that he edited together himself, aswell as broadcasting the winning mixes from the DMC championships & exclusive mixes from local guests such as the pause tape mixes of Paul Mulhearn & Mr Spin, mixes from Chad Jackson, Owen D, Johnny J, Dolby D, DBM & others. This became a popular show, especially the Hip Hop segment that he called 'Bus' Diss' when he moved to an earlier slot on the 13th September, 1987 on Sunday evenings (Bus' Diss at 7pm, Souled Out at 8pm, House hour at 9pm). + +The success he had playing black music on the radio also carried through into the late 1980s underground Manchester club scene, with his residency at Legends in Sale (Manchester), as a guest dj at The Gallery (Manchester), Segers in Leigh, one off 'Bus' Diss' events at the International 1 & as supporting dj to Hip Hop acts at The Hacienda. + +Following a rebrand & shift in frequency, Piccadilly Radio became Piccadilly Key 103. 'Souled Out' & 'Bus Dis' came to an end & by 1992 Stu Allan started to focus more on the emerging rave scene & producing music. He had a new show on Sunday evenings called Move '92, '93, '94, etc, to cater to this new audience playing a mix of House, Hardcore & Happy Hardcore, aswell as another more mainstream dance show on Saturday evenings presenting the 'Bacardi Beat Dance Chart". + +During the 1990s he became more popular further afield on the Hardcore scene djing mainly around the north & midlands, playing at Angels in Burnley, Liberty's in Sale (Manchester), The Eclipse in Coventry, Quest in Wolverhampton, Pandemonium in Birmingham, Shelley's Laserdrome in Stoke-On-Trent, Dizstruxshon in Howden, the Doncaster Warehouse, Uprising in Retford, Rejuvenation in Leeds, Fantazia in Blackpool & securing a residency at Bowlers at Trafford Park (Manchester), while also playing in Ibiza at Club Kinetic. + +Between 1999 to 2000, Kiss 100 approached him to mix & produce the now legendary 'Kiss Mix' (Mon to Sat evenings) which became the most listened to shows at that time in London for 14 to 24-year-olds. + +In 2005, he had a show named 'Hardcore Nation' on Pure Dance. As of September 2012, Stu Allan started to broadcast on Unity Radio 92.8FM in Manchester. + +He founded OSN Radio in late 2015, and hosted a weekly show Old Skool Nation every Friday night from 8pm till 10pm (UK time), which was followed by the Old Skool Nation After Party from 10pm till around midnight. The shows was usually broadcast live until October 2021. + +A more in depth interview with Stu Allan by Greg Wilson focusing on his earlier 1980s period can be found here https://electrofunkroots.co.uk/interviews/stu_allan.html + +Also for a more detailed feature on his popular Hip Hop show 'Bus Diss' see +https://groovement.co.uk/2021/07/stu-allan-souled-out-bus-diss-radio-show-by-mr-spin/Needs Votehttps://stuallan.co.ukhttps://twitter.com/stu_allanhttps://www.facebook.com/stuallan.djhttp://www.myspace.com/djstuallanhttps://en.wikipedia.org/wiki/Stu_Allanhttps://www.imdb.com/name/nm10835767/A AllanA. AllanAllanDJ Stu AllanDJ Stu AllenS AllanS AllenS. AllanS. AllenS.AllaS.AllanS.AllenStuStu AllenStu-AllanStuart AllanStu~AllenVisaAnti VisaCatch (2)150 VoltsClock + +67035Johnny HarrisJohn Stanley Livingstone HarrisBritish composer, arranger, producer, and musical director, born in Edinburgh (9 November 1932), died in Palm Springs Ca. (20 March 2020). Hired by Tony Hatch in 1965 as his conductor and co-arranger at Pye Records, worked extensively with Petula Clark, Tom Jones, Engelbert Humperdinck, Shirley Bassey and Lulu (conducting her winning Eurovision entry in 1969) in the UK before he was head-hunted by Paul Anka in the US to lead his orchestra (1972). He left Anka in 1977 and worked with Lynda Carter from 1978 until his death He also wrote many scores for advertising, the TV and film industry, and conducted for the Palm Springs Follies until they closed. + +[b]PLEASE BE CAREFUL WHEN ASSIGNING CREDITS TO THIS ARTIST![/b] +Other artists with the same name exist (list not complete): +For the neo soul artist, please see [a=Johnny Harris (2)]. +For the jazz saxophonist, please see [a=Johnny Harris (4)]. +For the bass guitarist, please see [a=Johnny Harris (5)], [a=John Harris (2)] or [a=John Harris (25)]. +For the American rockabilly singer born in 1932, please see [a=Johnny Ray Harris].Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/10/johnny-harris.htmlhttp://en.wikipedia.org/wiki/Johnny_Harris_%28musician%29https://www.imdb.com/name/nm0364889/http://musicalnames.com/http://web.archive.org/web/20080926164907/http://hometown.aol.co.uk/boogiejuice69/johnnyhome.htmHarisHarrisJ HarrisJ, HarrisJ. HarrisJ.HarrisJohn HarrisJohnnie HarrisJohnny HarisJohnny HarrJohny HarrisLivingstone Harris John StanleyR. HarrisTop SixJimmy Nicol & The ShubdubsJohnny Harris OrchestraThe BloomfieldsHeads Hands & Feet + +67218Paul OakenfoldPaul Mark OakenfoldPaul Oakenfold (Born 30th August, 1963 in London, England) is a British DJ, record producer and remixer. He has provided over 100 remixes for over 100 artists including U2, Moby, Madonna, Britney Spears, Massive Attack, The Cure, New Order, The Rolling Stones, The Stone Roses, Michael Jackson and Elvis Presley. + +Paul Oakenfold was voted the Number 1 DJ in the World twice in 1998 and 1999 by DJ Magazine.Needs Votehttps://www.pauloakenfold.comhttps://pauloakenfold.bandcamp.comhttps://www.facebook.com/Oakenfoldhttps://www.instagram.com/pauloakenfoldhttps://soundcloud.com/pauloakenfoldhttps://twitter.com/PaulOakenfoldhttps://en.wikipedia.org/wiki/Paul_Oakenfoldhttps://www.youtube.com/@pauloakenfoldhttps://tiktok.com/@paul.oakenfoldFoldOakenfoldOakenfold, PaulOakerfoldOakeyOakieOckenfoldP OakenfoldP. OakenfoldP. OakenfolrdP. P. OakenfoldP.OakenfoldPOPaulPaul M.Paul Mark OakenfoldPaul OakenfeldPaul OakenfieldPaul OakenfordPaul OckenfoldPaul OkenfoldPaul OskenfoldPauline StrokenfieldPauline Strokenfoldオークンフォールド保羅歐肯弗德George BestBrock LandarsPaul Oakenfold & Steve OsborneVirusPerfectoElectraThe SpeechGraceBunkerPerfecto AllstarzWild ColourRiseElement FourMovement 98Planet PerfectoB-Real (3)DJ's United (3)Four Lions (2)"46664 The Event" Cast + +68152Rupert ColeTrinidadian jazz clarinetist and saxophonist (alto and baritone), born August 8, 1909 in Trinidad, British West Indies. +Educated in Barbados, moved to New York in 1924, recorded with [a=Bill Brown & His Brownies] 1929, played with [a=Horace Henderson], [a=Don Redman] 1931-1938, and [a=Louis Armstrong] 1938-1944. He worked with [a=Lucky Millinder] in the 1950s. +Father of [a=Ronnie Cole]. + +Died: Unknown. +Needs Votehttps://www.allmusic.com/artist/rupert-cole-mn0001497586https://adp.library.ucsb.edu/index.php/mastertalent/detail/201976/Cole_Ruperthttps://de.wikipedia.org/wiki/Rupert_ColeR. ColeRupert CokRupert ColemanRuppert ColeLouis Armstrong And His OrchestraCootie Williams And His OrchestraDon Redman And His OrchestraTeddy Stewart OrchestraSam Manning And His Orchestra + +68325Piet BervoetsPieter W. BervoetsDutch trance producer.Needs Votehttps://x.com/PietBervoetshttps://www.facebook.com/piet.bervoets/https://rank1fanblog.blogspot.com/https://symsonic1.blogspot.com/https://symsonic2.blogspot.com/B.W. BervoetsBervoetsBervoets, Pieter W PietGervoetsP BervoetsP W BervoetsP. BervoetsP. W. BervoetsP.BervoetsP.W BervoetsP.W.P.W. BerroetsP.W. BervetsP.W. BervoertsP.W. BervoestP.W. BervoetsP.W. BervoltsP.W.BervoetsP: BervoetsPW BervoetsPeter W BervoetsPiet BerevoetsPieter BervoetsPieter W Piet BervoetsPieter W. BervoetsPw BervoetsT.W. BervoetsVerboetsVerbotesW. BervoetsDJ Jean-PierrePWBRestyleBarefootModern MoveVibration OneThe ImproverSector FearTeam DeepRank 1Control FreaksJonahR.O.O.S.PenetratorCarlosA.I.D.A.TazkaTritoneMind To MindSystem EightSPXSouthsquarePM ProjectPedro & BennoTwo DisciplesChiqeauRiptideMain MenMalin (2)GualagaraNixielandAladjaSensation (2)Simplistic MindThe Progressive HumansKinky PlantsPrecious PeopleDyewitnessC.P. OneIllustrator (2) + +68613One Eyed JackA.MillinerCorrect1Eyed JackOneEyedJackMagic AlecMcBain & MendozaFallout BoyFBPFlying ScotsmanChester DrawersHinksAlec MillinerResonance (18)The MAGIC MAN + +68702Niki MakNicola McCollumSinger from London, United Kingdom.Needs Votehttps://soundcloud.com/niki-mak-1N. MakNicki MakNicky MacNike MakNiki MacNikki MacNikki MackNikki MakNicola McCollumAnnikka + +68870Fonce MizellAlphonso MizellDied 11th of July 2011.Needs Votehttps://www.bluenote.com/artist/the-mizell-brothers/A MizelA. J. FozellA. MizelA. MizellA. MizelleA. MizzelA. MlzellA.J. MizellA.J.MizellA.MizelA.MizellAlfonso MizellAlfonzo MizellAlonzo MizellAlphnso MizellAlphonco MizellAlphons MizellAlphonse J. MizzellAlphonse MizellAlphonsi MizellAlphonsi MizzellAlphonsoAlphonso "Fonce" MizellAlphonso J. MizellAlphonso James MizellAlphonso MizelAlphonso MizellAlphonzo J. MizellAlphonzo J. MizzellAlphonzo MizelAlphonzo MizellAphonso MizellAphonzo MizellF. MinzellF. MizellFence MizellFonce MizzellFonze MizellJ. MizellJ.M.AlphonsoJames Mizell AlphonsoMizelMizellMizell Alphonso JThe Corporation (2)Larry Mizell & Fonce MizellThe Mizells + +68994Klubbed UpCorrect + +68995Sub JunkiesCorrect + +69422Luca Antolini DJLuca AntoliniItalian DJ & producer from Bologna. +Luca Antolini started DJ-ing in 1984 with a residency at Living (Italy) and started producing in 1994. + +Luca Antolini worked as part of the production team for [l=Arsenic Sound] along with [a=Technoboy] and others. +Needs Votehttp://www.lucaantolini.comhttps://www.facebook.com/LucaAntoliniMusic/https://soundcloud.com/lucaantolinihttps://myspace.com/lucaantolinihttps://twitter.com/lucaantolinihttps://www.youtube.com/user/UNITEDSTYLESMUSIChttps://www.instagram.com/lucaantolinidj/AntoliniAntolini DJAntolini LucaDJ Luca AntoliniDJ Luca Antolini DJDJ Luka AntoliniL .AntoliniL AntoliniL. AntolinL. AntoliniL. AntolinoL.A. DJL.AntoliniLuca AntoineLuca AntoliniLuca AntolinoLuca AntolliniLuca AntolniLuca Antonia DJLuca AntonilliLuca Antonlini DJLucaAntoliniDyor2 LifesLunatic (54)Vector TwoCitizenPacific LinkDroidHunterThe HoseSpiritual ProjectThe KGB'sAtlantic WaveThe RaidersNitro (2)GiadaNitro-GeneticTraumTimescapeKloneBuilderValez & Luca AntoliniFunky Dream MenHardstyle GuruThe NavigatorDark OscillatorsKamasutra (3)ControllerBombayL. A. ExperienceBlack & White (8)Manny AnimatorHeavyhandsLe SphinxJuppystyleExtrema (2)Antolini & MontorsiQ-Zar (2)Re MarkTrekker (2)Folual + +69653Steve Blake & Phil ReynoldsNeeds Major ChangesP. Reynolds & S. BlakePhil & StePhil Reynolds & Steve BlakePhil Reynolds And Steve BlakePhil Rynolds & Steve BlakeS Blake & P ReynoldsS. Blake & P. ReynoldsS. Blake + P. ReynoldsS.Blake & P.ReynoldsSteve Blake & Phil ReynoldSteve Blake & Phil RynoldsSteve Blake + Phil ReynoldsSteve Blake And Phil ReynoldsSteve Blake and Phil ReynoldsSteve Blake+Phil ReynoldsSteve Blake, Phil ReynoldsPhil ReynoldsSteve Blake + +69873Benny AnderssonGöran Bror Benny Andersson[b]If you are making an addition where he is credited together with Björn Ulvaeus please credit as [a=Björn Ulvaeus & Benny Andersson] (unless they are credited together with someone else, in which case separate credits should be used)[/b]. + +Swedish musician (mainly keyboardist), born on December 16, 1946 in Stockholm, Sweden. + +He is one of the two main songwriters and producers in [a=ABBA]. +He and [a=Björn Ulvaeus] were house producers for [l=Polar] (1971-1974). Co-founder of [l=Union Songs AB]. From April 1975, shareholder of [l=Polar Music AB] (initially 25% and subsequently 12,5%). By the end of 1984 he sold his shares in the record company. +Engaged to Christina Grönvall. In 1963, they had a son, [a=Peter Grönvall], and in 1965, a daughter, Heléne. They split in 1966. Engaged to [A=Anni-Frid Lyngstad] for about nine years and they married on 6 October 1978, but separated on 26 November 1980 and divorced in 1981. Married Swedish TV presenter [a=Mona Nörklit] in 1981 and had a son, [a=Ludvig Andersson] (born January 1982), who has since followed in his father's footsteps in forming his own band. +See also his studios [l287408] and [l304436].Needs Votehttps://www.icethesite.com/https://www.facebook.com/BennyAnderssonpage/https://www.youtube.com/channel/UCUtKjx2DTh1tI7nSufFjFNghttps://www.facebook.com/groups/363500283730823https://abbasite.com/people/11413-2/http://www.abbaomnibus.net/facts/benny.htmhttps://en.wikipedia.org/wiki/Benny_Anderssonhttps://sv.wikipedia.org/wiki/Benny_Anderssonhttps://saknadensrum.blogspot.com/p/bennys-gallery.htmlhttps://web.archive.org/web/20090207121434/http://dummipedia.org/Chronology:Benny_Anderssonhttps://www.feenotes.com/database/composers/benny-bror-goran-andersson-18th-december-1946-present/https://musicianbio.org/benny-andersson/https://www.famousbirthdays.com/people/benny-andersson.htmlhttps://www.geni.com/people/Benny-Andersson/6000000014686370393https://www.astro.com/astro-databank/Andersson,_BennyA AnderssonA. AndersonA. AnderssonA.C. AndersonAlderssonAndersonAnderson, BennyAnderssonAndersson B.Andersson BennyAndersson Benny Goran BrorAndersson, BennyAndersson, Benny Goeran BrorAnderssønAndessonAndressonB AndersonB AnderssonB. AendersonB. AndersenB. AndersonB. AndersonasB. AndersosnB. AnderssenB. AnderssoB. AnderssonB. AndressonB. G. B. AnderssonB.AndersonB.AnderssonB.G.B. AnderssonBeni AndersonBenn AnderssonBennyBenny AndersonBenny AnderssenBenny AnderssoBenny AndessonBenny AndressonBenny Goran AndersonBenny Goran AnderssonBenny Goran Bror AnderssonBenny Göran AnderssonBenny Göran Bror AnderssonBenny S. AndersonBenny Sigvard AnderssonBny AnderssonBror Andersson Benny Goran KD. AndersonG. AndersonGoranGoran-AnderssonGoran-B. AnderssonM. AnderssonPenny AndersonS. AnderssonАндерссонБ. АндерсонБ. АндерссонБ. АндерсънБ. АндэрссонБенни АндерсенБенни АндерсонMr. Key BoardABBABjörn & Benny, Agnetha & Anni-FridBjörn Ulvaeus & Benny AnderssonThe Hep StarsBenny Anderssons Orkester + +70526Chico HamiltonForeststorn HamiltonAmerican jazz drummer, brother of [a=Bernie Hamilton], father of [a=Forest Hamilton] and [a=Denise Hamilton (2)], born 20 September 1921 in Los Angeles, California, USA, died 25 November 2013 in New York City, USA. + +For the reggae trumpeter, please use [a=Junior "Chico" Chin].Needs Votehttp://www.chicohamiltondrums.com/http://www.myspace.com/chicohamiltonhttp://www.joyousshout.com/chico.htmlhttp://articles.latimes.com/2013/nov/26/local/la-me-chico-hamilton-20131127https://en.wikipedia.org/wiki/Chico_Hamilton"Chico" HamiltonC. HamiltonC.HamiltonChicoChico HamilttonChikoChoco HamilteonD. HamiltonF. HamiltonForest "Chico" HamiltonForest 'Story' HamiltonForest (Chico) HamiltonForest HamiltonForestorm 'Chico' HamiltonForeststorn Chico HamiltonForrest "Chico" HamiltonForrest "Chico" Hamilton*Forrest ''Chico'' HamiltonForrest 'Chico' HamiltonForrest HamiltonHamiltonJesse "Chico" HamiltonJesse HamiltonЧико Хэмилтонチコ・ハミルトンForest ThornThe Chico Hamilton QuintetGerry Mulligan QuartetGerry Mulligan TentetteLester Young And His BandThe Chico Hamilton TrioThe Gerald Wiggins TrioRussell Jacquet And His All StarsThe Chico Hamilton QuartetBill Perkins QuintetRed Norvo SextetRed Norvo QuintetThe Buddy Collette - Chico Hamilton SextetThe Chico Hamilton SextetThe Chico Hamilton OctetJerry Wiggins TrioThe Buddy Collette Big BandFour Trombone BandChico Hamilton And EuphoriaThe West Coast All Star Octet + +70590Michel PolnareffMichel Polnareff (born 3 July 1944, Nérac, Lot-et-Garonne, France) is a French singer-songwriter, who was popular in France from the mid-1960s until the early 1990s with his penultimate original album, [m=413849]. After a 28-year hiatus from solo studio records, Polnareff released an album of new material in 2018. He is still critically acclaimed and occasionally tours in France. +Son of [url=http://www.discogs.com/artist/L%C3%A9o+Poll]Léo Poll[/url]. + +Publishers associed : [l317050], [l573747], [l3717237]. + +Needs Votehttp://www.polnaweb.comhttp://www.facebook.com/michelpolnareffhttp://twitter.com/michelpolnareffhttps://en.wikipedia.org/wiki/Michel_Polnareffhttp://www.youtube.com/user/PolnareffOfficielhttp://perso.orange.fr/michel-polnareffA. PolnarefG. PolnareffM PolnareffM. PalnareffM. PoinareffM. PolnarefM. PolnareffM. PolwareffM. ポルナレフM.PolnareffMichael PolnareffMichel PolnarefMichel Polnareff(?)Michel PolnaressMichel PolnarttMichelle PolnarefMischell PolnareffM·PolnareffP. PolnareffPilnareffPoinareffPolnarefPolnareffPolnaressPolnarettPolonareffPonnareffА. ПолнарефМ. ПолнареМ. ПолнарефМ. ПолнареффМ. ПольнареффМ.ПолнареффМишель Полнареליאו פולנריףמ. פולנרףמישל פולנרףミシェル・ポルナレフミッシェル・ボルナレフミッシェル・ポルナレフRabelaisMax Flash + +70829The Beach BoysAmerican rock band formed in Hawthorne, California, in 1961. The group's original lineup consisted of brothers Brian, Dennis, and Carl Wilson, their cousin Mike Love and their friend Al Jardine. +Their vocal harmonies, early surf songs, and innovative recordings remain a massive influence on popular music today.Needs Votehttps://www.thebeachboys.com/https://www.udiscovermusic.com/artist/the-beach-boys/https://www.facebook.com/thebeachboyshttps://myspace.com/thebeachboyshttps://twitter.com/TheBeachBoyshttps://en.wikipedia.org/wiki/The_Beach_Boyshttps://www.youtube.com/user/TheBeachBoysVEVOhttps://www.instagram.com/thebeachboys/https://www.allmusic.com/artist/the-beach-boys-mn0000041874B.BoysBeach BoyBeach Boy'sBeach BoysBeachBoysBeachboysBeaeh BoysCarl B. WilsonGroupLes Beach BoysLos Beach BoysThe B-BoysThe BeachThe Beach Beach BoysThe Beach Boys 50The Beach BoyzThe BeachboysThe Beack BoysThe Beath BoysThe Beth BoysThe GroupThe Surfin' BoysБич Бойзザ・ビーチ・ボーイズビーチ・ボーイズピーチ・ボーイズ비치 보이즈Kenny & The CadetsCarl And The PassionsThe California LegendsThe Hawthorne Hot ShotsBruce JohnstonBrian WilsonRicky FataarCarl WilsonBlondie ChaplinAlan JardineMike LoveDennis Wilson (2)David Marks + +71037Bed & BondagePatrick PrinsNeeds VoteBad & BandageBad 'N BondageBad N BondageBed And BondageArtemesiaIndicaSubliminal CutsSandmanPatrick PrinsThe Peppermint LoungeCastle TrancelottMovin' MelodiesEating HabitsThe Human NatureOcean MotionAlliumChicks With TricksThe EthicsThe Urban Sound Of AmsterdamDavid JeffersonPetri DineroJoker's Up + +71255P + CPaul Newman and Craig YefetCorrectP & CP And CP&CPaul Newman and Craig Daniel YefetPaul NewmanCraig DanielCraig Yefet + +72308David A. StewartDavid Allan StewartEnglish musician, songwriter and record producer, born 9 September 1952 in Sunderland, England,UK. +He was married to [a=Siobhan Fahey] from 1987 to 1996 (divorced), father of [a=Django Stewart] and [a=Sam Stewart]. Since 2001 he is married to [a=Anoushka Fisz], their daughter is [a=Kaya Stewart]. +David A. Stewart calls himself David A. Stewart so that he does NOT get confused with [a=Dave Stewart]. Ran [l=Anxious Records].Needs Votehttps://davestewartent.com/https://www.facebook.com/davestewart/https://twitter.com/davestewarthttps://www.instagram.com/davestewarteurythmics/https://www.youtube.com/channel/UCgvGy9TAq7huFkIWgVxf1WQhttps://en.wikipedia.org/wiki/Dave_Stewart_(musician_and_producer)https://www.imdb.com/name/nm0347465/https://musicianbio.org/dave-stewart/A. StewartAllan DavidAllan Stewart DavidAllen David StewartAllen StewartAvid A. StewartCandy DulferD A StewartD StewartD. A. SrewartD. A. StewardD. A. StewartD. StewardD. StewartD. StuartD.A. StewardD.A. StewartD.A.StewartD.StewardD.StewartDare StewartDavDaveDave D. StewartDave StewartDave "Fingers" StewartDave "Wawa" StewartDave A. StewartDave A.StewartDave LennoxDave StenartDave StevartDave StewardDave StewartDave StrewartDave StuartDave. StewartDavidDavid StewartDavid A StewartDavid A. StewardDavid A.StewartDavid Alan StewartDavid Allan StewarDavid Allan StewardDavid Allan StewartDavid Allan StuartDavid Allen StewartDavid StewardDavid StewartDavis Allen StewartDeve StewartP.A. StewardSteartStewarStewardStewartStewart D.Stewart D.A.Stewart DavidStewart David AllanStewart, D.Stewart, DaveStewertStuartStwartД. СтюартДейф Стюартדייב סטיוארטJean GuiotRaymond DoomEurythmicsDave Stewart And The Spiritual CowboysThe TouristsThe Brothers Of DoomPeace ChoirPlatinum WeirdVegas (8)LongdancerSuperHeavyThe Catch (2)Da Universal PlayazStewart & HarrisonDave Stewart & His Rock Fabulous Orchestra"46664 The Event" CastStewart Lindsey + +72440Gene PageEugene Edgar Page Jr.American pianist, arranger, composer, conductor and record producer. (September 13, 1939 Los Angeles, CA – August 24, 1998, Westwood, Los Angeles ) +Gene Page's appealing orchestrations were a hallmark of million-selling hits by Barry White, And various Motown acts, Johnny Mathis & Deniece Williams, Whitney Houston, Peaches & Herb, Kenny Rogers, the Righteous Brothers, Aretha Franklin, Elton John, the Whispers, Gladys Knight, and a slew of others. Page arranged the bulk of Mathis' LPs of the '70s and '80s, with "Feelings" being among the best. Page also scored TV shows and movies. His early successes included 'You've Lost That Lovin' Feelin' for The Righteous Brothers and 'The In Crowd' for Doble Gray, alongside hits for The Drifters, The Mama's & The Papa's, Barbra Streisand and Solomon Burke's 'Got to Get You off My Mind,' number one R & B for three weeks in early 1965. + +Gene has also arranged strings on a number of hits and classic recordings for artists including, Diana Ross ('Touch Me In The Morning'), Diana Ross / Lionel Richie ('Endless Love'), Aretha Franklin ('It Only Happens When I Look At You'), Johnnie Taylor ('What About My Love' and 'Just Ain't Good Enough'), Johnny Mathis, The Four Tops, The Jones Girls, Deniece Williams ('I Found Love'), Jackson Sisters ('I Believe in Miracles'), Nancy Wilson, Natalie Cole, Eloise Laws ('Baby You Lied'), Dionne Warwick, The Gap Band, Carrie Lucas, Carl Anderson, Gerald Alston ('Take Me Where You Want To'), Kiki Dee, Randy Edelman, Lamont Dozier, Anita Baker ('The Songstress'), The Mac Band, Shalamar ('High On Life' and 'Take That To The Bank'), The Whispers, Peabo Bryson & Roberta Flack ('Tonight I Celebrate My Love'), Whitney Houston ('You're Still My Man') and Elton John ('Philadelphia Freedom'). + +Gene Page was the brother of musician, songwriter, and producer [a=Billy Page].Needs Votehttp://en.wikipedia.org/wiki/Gene_Pagehttps://daily.redbullmusicacademy.com/2014/06/gene-page-featureEugene PageEugene Page JrG PageG. PageG. PeneG.PageGane PageGene "The Master" PageGene FageGene Page Jr.Gene Page, Jr.Gene PaigeGenne PageJean PageMaestro Gene PagePagePaigeジーン・ペイジLove Unlimited OrchestraThe Gene Page Orchestra + +72480Jerome RichardsonJerome RichardsonAmerican jazz multi-reed player, primarily saxophonist (alto, tenor, baritone, soprano) and flutist. + +Born November, 15th 1920 in Sealey, Texas, died June 23, 2000 in Englewood, New Jersey. + +Among the earliest jazz artists of the modern post-war era to record with the flute as a main instrument. A master of a variety of saxophones, flutes, clarinets and other woodwinds, Richardson performed as a sideman on hundreds of recordings not limited to jazz but stage, screen, TV and across various musical genres.Needs Votehttps://en.wikipedia.org/wiki/Jerome_Richardsonhttps://www.bluenote.com/artist/jerome-richardson/https://www.allmusic.com/artist/jerome-richardson-mn0000273205https://www.imdb.com/name/nm0724612/https://adp.library.ucsb.edu/names/208507https://www.theguardian.com/news/2000/jul/11/guardianobituaries1"Jennifer" Jerome RichardsonGerome RichardsonJ RichardsonJ. RichardsonJames RichardsonJeromeJerome C. RichardsonJerome RichardJerome RichardsJerome RichardsomJerome RicharsonJerry DodgionJerôme RichardsonJohnson Jerome RichardsonJérôme RichardsonRichardsonДжером Ричардсонジェローム・リチャードソンQuincy Jones And His OrchestraGil Evans And His OrchestraLionel Hampton And His OrchestraTadd Dameron And His OrchestraHenry Mancini And His OrchestraThe World Jazz All Star BandCal Tjader QuintetCharles Mingus And His Jazz GroupOliver Nelson And His OrchestraLalo Schifrin & OrchestraThe Gene Page OrchestraRay Brown All-Star Big BandThe Creed Taylor OrchestraMilt Jackson OrchestraManny Albam And His Jazz GreatsNat Adderley QuintetThe Gary McFarland OrchestraThe Prestige All StarsJim Tyler OrchestraThe Alan Lorber OrchestraCannonball Adderley And His OrchestraJerome Richardson QuartetJimmy Cleveland And His All StarsEddie Lockjaw Davis QuartetPer Husby OrchestraThe Sextet Of Orchestra U.S.A.The Quincy Jones Big BandOscar Pettiford OrchestraOscar Pettiford & His All StarsGene Ammons' All StarsGerald Wilson Orchestra of The 80'sThe Prestige Blues-SwingersThe Kenny Burrell OctetThe Blue Mitchell OrchestraThe Ernie Wilkins GroupJerome Richardson SextetAll Star Big BandLarry Vuckovich SextetThad Jones & Mel LewisThe MICHAEL COLDIN SEPTETThe Clifford Jordan Big BandCharlie Shavers OctetKenny Clarke SeptetCannonball Adderley All StarsEarl "Fatha" Hines And His New SoundsThe Hines VarietiesFour FlutesOscar Pettiford Big Band + +72579Michael UrgaczMichael UrgaczTrance & Hands Up producer from Cologne, North Rhine-Westphalia, Germany. Died on 19 July 2022 of cancer. + +In 1997 he founded the Dance department at [l917]. +In 2000 he founded the label [l13880], named after his artist name [a24490].Needs Votehttps://www.facebook.com/Michael.Urgacz.aka.BEAMM. UrgaczM. UrgaszM.UrgaczMichaeal UrgaezMichael UrgaezMichael UrgazMicheal UrgaczUrgaczBeamBeam & YanouBeam vs. CyrusJPO & BeamDocking StationHappy DJ'sAmok !Jungle KidsDancefloor SyndromaBased On Experience64 BitSonar SystemsMove 2 Groove (2)Deep Sea 9Hydra (7)AngylaTransatlantic Powersurge + +72792Light BoyCorrectLightboyRobert BurnsNigel Champion + +73609Vinyl MafiaDarren FlindersArtist from Rotherham UK, Signum - coming on strong remix was done by Darren Flinders and Johnny Dangerous.Correct + +73826Cyrus Sadeghi-WafaCyrus Sadeghi-WafaCyrus Sadeghi-Wafa was born in Teheran on 05.05.1975. In 1980 his German mother and Persian father moved to Germany due to the tense political situation. Producer and DJ since 1994.Needs Votehttp://www.cyrustrax.infohttps://www.facebook.com/djcyrusofficialhttps://www.youtube.com/cyrustraxhttps://www.mixcloud.com/dj_cyrus/https://soundcloud.com/cyrustraxC. Sadeghi - WafaC. Sadeghi-WafaC.S. WafaC.SadeghiC.Sadeghi-WafaCyrus Sadeghi - WafaCyrus Sadeghi WafaCyrus Sadeghi-WasaCyrus Sadeghl-WafaCyrus Sadegi WafaCyrus SadhegiCyrus Sadhegi - WafaSadeghi-WafaKryptonCyrus (2)DJ CyBeam vs. CyrusTrancesistorCyrus & The JokerBasic AvalonHighlandersC'N'JDocking StationAcidphaseHappy DJ'sSkylab (2)M.Y.C.EnsistimaTime TraxxBackdraft (6)Pattern ModeLes Amis + +74105Mike ChapmanMichael Donald ChapmanBorn: 13 April 1947, Nambour, Queensland, Australia. +Record producer, songwriter and musician (singer/keyboardist). Co-founder (with business partner [a=Nicky Chinn]) of production company [l277811] & publishing house [l300715]. + +Relocated to the UK in June 1967. From the 1970s and 1980s, famous for his work together with [a=Nicky Chinn] for such acts like [url=http://www.discogs.com/artist/Arrows+(2)]Arrows[/url], [a=CCS], [a=Mud], [url=http://www.discogs.com/artist/New+World+(3)]New World[/url], [a=Smokie], [a=Suzi Quatro], and [a=The Sweet]. +Currently working with Lisa Watchorn and Abisha. + +He received a Medal of the Order of Australia (OAM) in 2014.Needs Votehttps://twitter.com/mikechapman1000https://www.instagram.com/mikechapmanproducerhttps://www.blueraincoatmusic.com/songs/mike-chapmanhttps://en.wikipedia.org/wiki/Mike_Chapmanhttps://musicianbio.org/mike-chapmanhttps://www.famousbirthdays.com/people/mike-chapman.htmlCh. ChapmanChampanChapmanChapman M.Chapman MikeChapman, MichaelChapman, MikeChapmannCommander ChapmanFlash ChapmanM ChapmanM. ChapinM. ChapmanM. ChapmannM. D. ChapmanM.ChapmanM.D. ChapmanMark ChapmanMichael ChapmanMichael ChapmannMichael Donald ChapmanMicheal ChapmanMike "Startripper" ChapmanMike Chapman/Michael ChapmanMike ChapmannMike ChapmenN. ChapmanThe CommanderМ. ЧапмънМ. ЧепменЧ. ЧaпмaнЧапменЧепменЧэпмънマイク・チャップマンChinn And ChapmanThe Jah TrioTangerine Peel + +74212Buster WilliamsCharles Anthony Williams, Jr.Jazz bass player, born 17th April 1942, Camden, New Jersey, USANeeds Votehttp://www.busterwilliams.com/https://busterwilliams.bandcamp.com/https://en.wikipedia.org/wiki/Buster_Williams"Buster" WilliamsB. WilliamsBusterBuster Williams (Mchezaji)Buster Williams MchezajiBuster Williams-MchezajiButch WilliamsC, B. WilliamsC. A. Williams, JrC. A. Williams, Jr.C. B. WilliamsC. WilliamsC.B. WilliamsCharles "Buster" WilliamsCharles 'Buster' WilliamsCharles Anthony Jr. "Buster" WilliamsCharles Buster WilliamsCharles WilliamsCharles Williams Jr.Charles Williams, Jr.Charles WilsonCharlie WilliamsMchezaji (Buster Williams)Mchezaji / Buster WilliamsMchezaji Buster WilliamsWilliamsバスター・ウィリアムスMchezajiGil Evans And His OrchestraThe CrusadersArchie Shepp QuartetMary Lou Williams TrioBuster Williams QuintetHarold Land QuintetShirley Horn TrioMtume Umoja EnsembleKen McIntyre QuartetSteve Kuhn TrioKenny Barron TrioThe JazztetRené McLean SextetRoots (8)Timeless All StarsJohn McNeil QuintetThe James WIlliams TrioLee Konitz NonetBuster Williams TrioSphere (16)Cedar Walton TrioHerbie Hancock TrioJimmy Rowles TrioRalph Moore QuartetHilton Ruiz TrioThe 360 Degree Music ExperienceHilton Ruiz QuintetRon Carter QuartetCyrus Chestnut TrioMichel Sardaby TrioHerbie Hancock QuartetBuck Hill QuartetBuster Williams QuartetFrank Morgan QuintetAlbert Dailey TrioLarry Coryell QuartetThe Benny Green TrioDenny Zeitlin TrioLarry Willis TrioJohn Richmond QuartetThe Herbie Hancock SextetTed Brown QuintetRenee Rosnes TrioHeads Of State (3)Gene Ammons - Sonny Stitt QuintetKind Of Blue ProjectThe Buster Williams Something More SeptetBison Trio + +75389Alessandro MoreschiOne of the most famous castrati singers of the late 19th century, and the only castrato of the classic bel canto tradition to make sound recordings.Needs Votehttp://en.wikipedia.org/wiki/Alessandro_Moreschihttps://adp.library.ucsb.edu/names/105134A. MoreschiAlessandro Moreschi With Piano And Violin AccompanimentAlexandro MoreschiMoreschiProf. Alessandro MoreschiProf. Moreschi + +75559Dark By DesignGareth WestHard trance producer/DJ residing in Manchester, UK. +Born: June 19, 1981Correcthttp://www.darkbydesign.co.uk/https://myspace.com/darkbydesignrecordingshttps://www.facebook.com/darkbydesignofficialhttps://soundcloud.com/darkbydesign-officialhttps://twitter.com/darkbydesign666https://www.pinterest.com/curiousartists/dark-by-design/http://www.bandsintown.com/DarkByDesignDBDDarkByDesignDarkbyDesignDbDKain MarcoGareth WestRawRInglorious Basterds + +75617Charlie ParkerCharles Parker Jr.American alto saxophonist, composer and bebop pioneer (b. August 29, 1920, Kansas City - d. March 12, 1955, New York City, aged 34). Widely considered to be one of the most influential of jazz saxophonists, jazz musicians, and indeed musicians in general. Also known as 'Bird' (a shortening of 'Yardbird', Parker acquired the nickname early in his career with many contradictory stories regarding the name's origin). Parker was an extremely fast virtuoso and introduced revolutionary harmonic ideas into jazz, including rapid passing chords, new variants of altered chords, and chord substitutions. + +Parker died on March 12, 1955 in the age of only 34 in the suite of his friend and patron Baroness Pannonica de Koenigswarter at the Stanhope Hotel in New York City. The official causes of death were lobar pneumonia and a bleeding ulcer, but Parker also had an advanced case of cirrhosis and had suffered a heart attack. The coroner who performed his autopsy mistakenly estimated Parker's 34-year-old body to be between 50 and 60 years of age. + +Common-law husband of [a=Chan Parker].Needs Votehttps://charlieparkermusic.com/https://www.facebook.com/charlieparkermusichttps://twitter.com/CharlieParkerKChttps://www.instagram.com/charliebirdparkerofficial/https://en.wikipedia.org/wiki/Charlie_Parkerhttps://www.britannica.com/biography/Charlie-Parkerhttps://www.whosampled.com/Charlie-Parker/https://www.jazzdisco.org/charlie-parker/discography/https://www.biography.com/musician/charlie-parkerhttps://www.allmusic.com/artist/charlie-parker-mn0000211758https://adp.library.ucsb.edu/names/336464"Bird" Charlie Parker"Charlie Chan"BirdC ParkerC. BirdC. P.C. ParckerC. ParkerC. Parker Jr.C. Parker, JrC. Parker, Jr.C. Parker`C. arkerC.P.C.ParkerCh. ParkerCh.ParkerChales Christopher ParkerChalie ParkerChan ParkerCharles "Bird" ParkerCharles "Charlie" ParkerCharles "Charlie" Parker, Jr.Charles Bird ParkerCharles C. ParkerCharles C. Parker, JrCharles C. Parker, Jr.Charles Christopher ParkerCharles Christopher Parker JrCharles Christopher Parker Jr.Charles Christopher Parker, Jr.Charles ParkerCharles Parker Jr.Charles Parker, JrCharles Parker, Jr.Charles “Charlie” Parker, Jr.Charley ParkerCharlieCharlie "Bird" ParkerCharlie "Chan" ParkerCharlie "The Bird" ParkerCharlie "Yardbird" ParkerCharlie 'Bird' ParkerCharlie 'Yardbird' ParkerCharlie ("Bird") ParkerCharlie Bird ParkerCharlie Chan (Charlie Parker)Charlie Christopher ParkerCharlie Park, Jr.Charlie ParkeCharlie Parker "The Bird"Charlie Parker & BandCharlie Parker & FriendsCharlie Parker And FriendsCharlie Parker JrCharlie Parker Jr.Charlie Parker Plays South Of The BorderCharlie Parker The Fabulous BirdCharlie Parker,Charlie Parker, Jr.Charlie The Bird ParkerCharlie Yardbird ParkerCharlie „The Bird“ ParkerCharlier Parker Jr.Charls ParkerCharlyCharly 'Chan' ParkerCharly ParkerChas C. Parker, Jr.Chas ParkerChas. Chrisopher ParkerChas. Christopher ParkerChas. ParkerChas. Parker, Jr.D. ParkerG. ParkerK. ParkerKparkerP.D.ParkerParker CharlesParker CharlieParker Jnr.Parker JrPork PiePorkerPrkerT. ParkerThe BirdČarli ParkerПаркерЧ. ПаркерЧарли ПаркерЧарли Паркърチャーリー・パーカーチヤーリ・バーカーCharlie Chan (5)Bird (28)Miles Davis All StarsThe Charlie Parker SeptetThe Charlie Parker QuartetThe Charlie Parker All-StarsThe Charlie Parker SextetThe Charlie Parker QuintetCharlie Parker's JazzersWoody Herman And His OrchestraThe Quintet Of The YearMetronome All StarsSlim Gaillard And His OrchestraCharlie Parker's Re-BoppersDizzy Gillespie QuintetCharlie Parker And His OrchestraDizzy Gillespie SextetClyde Hart All StarsRed Norvo And His Selected SextetSir Charles And His All StarsDizzy Gillespie And His All Star QuintetDizzy Gillespie JazzmenCharlie Parker Big BandRed Norvo And His OrchestraJay McShann And His OrchestraTiny Grimes QuintetHoward McGhee And His OrchestraHoward McGhee QuintetThe QuintetCharlie Parker With StringsBarry Ulanov And His All Star Metronome JazzmenCharlie Parker's New StarsRed Norvo All-StarsDizzy Gillespie's Rebop SixWoody Herman And His Third HerdCootie Williams SextetDizzy Gillespie-Charlie Parker QuintetCharlie Parker-Howard McGhee QuintetDizzy Gillespie All StarsCharlie Parker With Unknown Afro-Cuban BandBarry Ulanov's All Star Modern Jazz MusiciansTrummy Young All StarsCharlie Parker And His Swedish All StarsSlim Gaillard And His All StarsDizzy Gillespie-Charlie Parker Jazzmen + +76009Barry LengBarry Norman LengProducer and songwriterNeeds VoteB LengB. LangB. LengB.LengBarryBarry LBarry LangBarry Norman LengBerry LengL. BarryLengLengoliRageCreationE'voke + +76028Luciano BerioBorn October 24, 1925 in [url=https://en.wikipedia.org/wiki/Oneglia]Oneglia[/url], died May 27, 2003 in Rome. Italian composer, pioneering in the fields of serial, experimental and electronic composition. + +Berio studied with his father and grandfather, both organists and composers, and with Giorgio Federico Ghedini at the Milan Conservatory in the late 1940s. In 1950 he married the American singer [a=Cathy Berberian] with whom he had a daughter [a=Cristina Berio], and the next year at Tanglewood he met [a=Luigi Dallapiccola], who influenced his move towards and beyond 12-note serialism in such works as his Joyce cycle Chamber Music for voice and trio (1953). Further stimulus came from his meetings with [a=Bruno Maderna], [a=Henri Pousseur] and [a=Karlheinz Stockhausen] in Basle in 1954, and he became a central member of the Darmstadt circle. + +Berio directed an electronic music studio at the Milan station of Italian radio (1955-61), at the same time producing Sequenza I for flute (1958, the first of a cycle of solo explorations of performing gestures), Circles (1960, a loop of Cummings settings for voice, harp and percussion) and Epifanie (1961, an aleatory set of orchestral and vocal movements designed to show different kinds of vocal behaviour). These established his area of interest: with the means and archetypes of musical communication. + +For most of the next decade he was in the USA, teaching and composing, his main works of this period including the Dante-esque Laborintus II for voices and orchestra (1965), the Sinfonia for similar resources (1969, with a central movement whirling quotations round Mahler and Beckett) and Opera (1970), a study of the decline of the genre and of Western bourgeois civilization. Two more operas, La vera storia (1982) and Un re in ascolto (1984), came out of his collaboration with Calvino. Other works include Coro (1976), a panoply of poster statements and refracted folksongs for chorus and orchestra, and numerous orchestral and chamber pieces.Needs Votehttps://www.lucianoberio.org/https://it.wikipedia.org/wiki/Luciano_Beriohttps://en.wikipedia.org/wiki/Luciano_Beriohttps://www.britannica.com/biography/Luciano-Beriohttps://www.theguardian.com/music/tomserviceblog/2012/dec/10/contemporary-music-guide-luciano-beriohttps://www.treccani.it/enciclopedia/luciano-berio_(Dizionario-Biografico)/BerioComposerL. BerioL. BerioL. BerrioLuciano BérioM° BerioБериоЛ. БериоЛучиано Берио + +76040Miriam MakebaMiriam Zenzi MakebaGrammy Award-winning South African singer, also known as "Mama Afrika", born March 4th, 1932, in Johannesburg and died November 10th, 2008, in Castel Volturno, Italy. She sang with [a1855666] and [a1573191], before landing a role in the musical King Kong in 1959. She left for London where she met [a=Harry Belafonte], who invited her to America. Makeba is widely regarded as the first lady of South Africa traditional music. At one time married to [a=Hugh Masekela], she became an international superstar in the USA and the UK, before being able to return to South Africa once the political situation had improved.Needs Votehttp://www.miriammakeba.co.za/https://miriammakeba.bandcamp.comhttps://www.youtube.com/@Miriam_Makebahttps://en.wikipedia.org/wiki/Miriam_Makeba(Miriam Makeba)Jerry RagavayM. KabeM. MabekaM. MakebaM. MakebeM. MakeebaM. MakeraM. MakébaM.M.M.MakabeM.MakebaMakebaMakeba MiriamMakeba, MiriamMakebeMakibaMakébaMariam MakebaMariam MekbaMarianm MakebaMiriamMiriam 'Mazi' MakebaMiriam MakebeMiriam MakeebaMiriam MalebaMiriam MekebaMirian MakebaMirriam MakebaMyriam MakeaMyriam MakebaMyriam MakébaS. MakebaSeka SilviaZ. MakebaZenzile Miriam MakebaМ. МакебаМариам МакебаМириам Макебаمريم ماكيباミリアム・マケバMama AfrikaThe manhattan brothersThe Skylarks (3)Miriam Makeba Et Son Quintette Guinéen + +76089Mort GarsonMorton Sanford GarsonCanadian composer, bandleader and songwriter (born: July 20, 1924 in Saint John, New Brunswick, Canada, died: January 4, 2008 in San Francisco, California, USA). + +Mort Garson was a classically trained musician and electronic researcher. He started his career in the 1960s and was among the first to experiment with the big Moog synthesiser. He was mainly known for his original sci-fi space age soundscapes. In 1967, he recorded his first album [m=173421] which features sonic analog based compositions. Released in 1969, [m=230243] contains supernatural electronic moods, pulsating hypnotic effects and moving synthesised textures. Mort Garson's musical universe is close to [a44314] and [a12593]'s kitsch moog pop soundscapes but within more mystical-cerebral-adventurous proportions. Released in 1971, [m=158899] is without any doubts his most progressive album: lysergic electronic modulations meet dark epic timbres. He sits among the most notorious Canadian space electronic artists, along with [a1224465] and [a651701]. + +Collaborated with [a365227]Needs Votehttp://people.smu.edu/jamilazz/garson/main.htmlhttp://www.progarchives.com/artist.asp?id=4798http://en.wikipedia.org/wiki/Mort_Garsonhttp://mortgarson.bandcamp.comhttps://adp.library.ucsb.edu/names/317152https://mort-garson.com/CarsonGarsenGarsonGarson MortGarstonGartsonGarzonGassonGordonGorsonH. GarsonM GarsonM. GarsonM. CarsonM. GarsonM. GarstonM. GarsónM.GarsonMortMort / CarsonMort CarsonMort GarrisonMort GarsenMort Garson And His OrchestraMort GersonMort, CarsonMort. GarsonMort/CarsonMortgarsonMorton GarsonMorty GarsonMr. Mort GarsonN. GarsonThe Love Strings Of Mort GarsonThe Wozard Of IzLucifer (2)Z (5)Ataraxia (2)Captain D.J.The Lords Of PercussionD.J. CraverThe D-Bee'sMort Garson & His OrchestraDusk 'Til Dawn OrchestraThe Blobs (2) + +77991Glenn MillerAlton Glenn MillerAmerican swing trombonist, arranger, composer, and bandleader. Born 1 March 1904 in Clarinda, Iowa. Started orchestra in 1938. Best-selling recording artist from 1939 to 1943, leading best known and beloved swing band. Worked as sideman early in career. Wrote and/or arranged popular swing songs. Disbanded orchestra in 1942 to leave for Army. Too old to be drafted, created a band. Transferred to Army Air Force and raised morale for hundreds of thousands of troops before disappearing on christmas 1944 on a flight from England to France. Internationally mourned as a war hero. Last seen on December 15, 1944. + +[b]Note: for the Swiss mastering engineer, please use [a=Glenn Miller (3)][/b]Needs Votehttps://www.glennmiller.com/https://www.facebook.com/GlennMiller/https://en.wikipedia.org/wiki/Glenn_Millerhttps://www.imdb.com/name/nm0001895/https://www.britannica.com/biography/Glenn-Millerhttps://www.biography.com/musician/glenn-millerhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/139460cb0fd39f49afc3e8c929059f2ece9ac/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102013/Miller_Glennhttps://www.allmusic.com/artist/glenn-miller-mn0000661172Alton Glenn MillerC. MillerCapt Glenn MillerCapt. Glenn MillerCaptain Glenn MillerCpt. MillerDigital Glenn MillerF MillerF. MillerG MillerG. MilerG. MillerG. MüllerG.M.G.MillerG.MilorGl. MillerGleen MillerGlen MillerGlennGlenn Miller BandGlenn Miller ReunionGlenn Miller SoundGlenn Miller StoryGlenn W. MillerJ, MillerJerry MillerK. MillerMIllerMaj Glenn MillerMaj. MillerMajor Glenn MillerMajor Glenn Miller'sMajor MillerMillerMiller GlennMiller Glenn WilliamMiller, GlennMitlerP. MillerParish G. MillerThe Glenn Miller StoryThe Music Of Glenn MillerThe Sound Of Glenn MillerThe Sounds Of Glenn MillerГ. МиллерГ.МиллерГлен МилерГленн МиллерК/ф "Серенада лунного света"МиллерОркестр Гленна Миллераグレン・ミラーFrankie Trumbauer And His OrchestraGlenn Miller And His OrchestraRay Noble And His OrchestraThe Mound City Blue BlowersGlenn Miller And The Army Air Force BandThe Dorsey Brothers OrchestraThe Charleston ChasersBen's Bad BoysThe Dorsey BrothersThe Dorsey Brothers And Their New DynamiksBen Pollack And His CaliforniansGlenn Miller's Uptown Hall GangCapt Glenn Miller And The Army Air Forces Training Command OrchestraThe American Band Of The AEFThe Glenn Miller Service OrchestraEarl Baker And His Friends + +78406Freak MachineFred Henderson[b]Dutch DJ &amp; producer[/b]. Fred Henderson produced his first records for Basic Beat recordings in 1993. In 1996 he started his own label "Roxy's" together with the recordshop where he worked at the time (Hotsound). In 1997 he started his own label-line. He produces under the names like: The Clubjock (Blue Records), Mologa (Global Cuts), F.D. Henderson / Funkaholic / The Freak Machine (Untidy), Fred H. (Essential Dance).Correcthttp://www.henderson-music.tk/AssymMologaThe ClubjockFred HendersonClusia FortalRollerformHigh QSweet NeckLe StrangeThe TrancejockNext Chapter (2) + +78689The ClubjockFred Henderson[b]Dutch DJ & Producer[/b]. Fred Henderson produced his first records for Basic Beat recordings in 1993. In 1996 he started his own label "Roxy's" together with the recordshop where he worked at the time (Hotsound). In 1997 he started his own label-line. He produces under the names like: The Clubjock (Blue Records), Mologa (Global Cuts), F.D. Henderson / Funkaholic / The Freak Machine (Untidy), Fred H. (Essential Dance).Needs Votehttp://www.clubjock.nlClub JockClubjockAssymMologaFreak MachineFred HendersonClusia FortalRollerformHigh QSweet NeckLe StrangeThe TrancejockNext Chapter (2) + +78900Madam FrictionCorrectDJ Madam FrictionFrictionMadam FMadame FrictionJan Harvey (4)CortinaSister SuckFriction Burns + +78954Bam Bam & PebblesNeeds VoteBB & PBB And PBB and PBB&PBambam & PebblesVinylgroover & The Red HedVGT3rd SourceVinylgroover & TrixxySelectSound AssassinsVG 2000Hyperdrive (2)KontaktElevate (2)Promised Land (2)Street TalkStargate (5)Lost Boys (3)Techno PhobicSJ ProjectLoop (9)Era (6)ScintillatorBlack & White (19)BPM (14)Jim SullivanScott Attrill + +79091Barry ManilowBarry Alan PincusAmerican songwriter, singer and producer born to Edna Manilow and Harold Pincus on June 17, 1943 in Brooklyn, New York, USA. He is married to [a=Garry C. Kief].Needs Votehttps://barrymanilow.com/https://www.facebook.com/barrymanilowhttps://www.instagram.com/barrymanilowofficialhttps://twitter.com/barrymanilowhttps://www.youtube.com/c/BarryManilowhttps://www.barrymanilow.nl/https://myspace.com/barrymanilowhttps://en.wikipedia.org/wiki/Barry_Manilowhttps://www.imdb.com/name/nm0005180/B ManilowB, ManilowB. BarryB. Mani LowB. ManillowB. ManiloB. ManilonB. ManilovB. ManilowB. ManiloyB. manilowB. マニロウB.M.B.ManilowB.マニロウBarryBarry ManallowBarry ManilloBarry ManillowBarry ManiloBarry ManiloawBarry ManilouD. ManilowMainlowManilewManillowManiloManilouManilowManilow BarryManilow, B.TonyБ. МаниловБ. МанилоуБэрри Мэнилоуバリー・マニロウ巴瑞曼尼洛Featherbed + +79422O.G.R.Paul MaddoxCorrectOGRPaul MaddoxAbandonStreet ForceAzure (5)Olive GroovesComedy DickWall Haddocks + +79662Dave WrightDavid James WrightNeeds VoteD WrightD. WrightD.WrightDavid WrightWrightNick Rowland & Dave WrightPBS (Phatt Bloke & Slim)Nick Rafferty & The CoalitionThe Coalition (2)Global State Allstars + +79742Peggy LeeNorma Deloris EgstromAmerican jazz and popular music singer, songwriter, composer and actress. +Born May 26, 1920 in Jamestown, North Dakota, USA. +Died January 21, 2002 in Bel Air, California, USA. +She was married four times, including to songwriter/bandleader [a299939] (1943 -1951) (divorced). + +She won an Academy Award nomination for her role as the hard-drinking singer in the jazz saga, [i]Pete Kelly's Blues[/i] (1955) and composed songs for the 1955 Walt Disney animated classic [i]Lady and the Tramp[/i] (1955). Musically, she is probably best known for the song "Fever", which charted in the U.S. (#8) and the U.K. (#5) in 1958 and is considered a classic. She had songs that ranked higher but this has become synomous with her as a singer. Her top charting song was "Mañana (Is Soon Enough for Me)", which came in 1948, the song hitting #1. "Golden Earrings" hit #2 in 1948, as did "Riders in the Sky (A Cowboy Legend)" hit #2 in 1959. Overall as a solo artist she charted forty-five times between 1945 and 1992. She also charted with duets with Mel Torme and with Bing Crosby and three times while singing with Gordon Jenkins and His Orchestra in 1952. +As a songwriter, she charted twelve times, with the aforementioned " Mañana (Is Soon Enough for Me)" #1 song penned by her and her husband at that time, Dave Barbour. They wrote an additional seven charted songs together.Needs Votehttp://www.peggylee.com/http://www.peggyleediscography.com/index.phphttp://en.wikipedia.org/wiki/Peggy_Leehttps://www.imdb.com/name/nm0498007/?ref_=nv_sr_srsg_3https://www.britannica.com/biography/Peggy-Leehttps://www.allmusic.com/artist/peggy-lee-mn0000256349/discographyhttps://www.ascapfoundation.org/ascapfoundation/programs/awards/peggy-leehttps://adp.library.ucsb.edu/names/326903G. BarbourLeeLee PeggyMiss Peggy LeeP LeeP. LeeP. L.P. L. BarbourP. LeeP. Lee BarbourP. Lee-BarbourP.L.P.LeePeggi LeePeggyPeggy Lee BarbourPegui LiPoggy LeeReeП. ЛиПегги Лиペギー·リーペギー・リーSusan MeltonBenny Goodman SextetBenny Goodman And His OrchestraDave Barbour OrchestraPaul Weston And His OrchestraPeggy Lee OrchestraThe Capitol JazzmenTen Cats And A Mouse + +79751David FosterDavid Walter FosterCanadian producer, arranger and composer. Also worked extensively as a pianist/keyboard player, born 1 November 1949 in Victoria, British Columbia, Canada. + +He enrolled as a student at the University of Washington at the age of 13. + +Inducted into Songwriters Hall of Fame in 2010 and recipient of a long list of other awards.Needs Votehttps://davidfoster.com/https://www.facebook.com/davidfostermusic/https://myspace.com/davidfosterhttps://en.wikipedia.org/wiki/David_Fosterhttps://www.imdb.com/name/nm0287757/https://www.thecanadianencyclopedia.ca/en/article/david-foster-emcA. FosterD ForsterD FosterD, FosterD. ForestD. ForsterD. FosterD. Foster*D. FoterD. FusterD. W. FosterD.FosterD.W. FosterDFDaryl FosterDaveDave FosterDavidDavid F FosterDavid ForsterDavid Foster (and Others)David Foster For Chartmaker, Inc.David Foster OrchestraDavid Foster for Chartmaker Inc.David FostersDavid FostyerDavid JosterDavid W FosterDavid W. FosterDavid Walter FosterDavis FosterForsterFosteFosterFoster DavidFoster, D.FoxFoxterД. ФостерДейвид Фостерデヴィッド・フォスター大卫·福斯特大衛佛斯特大衛福斯特데이비드 포스터데이빗 포스터Northern Lights (6)Pegasus (4)Skylark (3)AttitudesAirplay (4)The Hawks (2) + +80613George RussellGeorge Allan RussellBorn: 23rd June 1923 Cincinnati, Ohio, USA. +Died: 27th July 2009 Boston, Massachusetts, USA. +American composer, jazz musician (primarily on the piano but also mastered the drums), bandleader and music theorist. +For the jazz guitarist, please use [a=George Russell (3)].Needs Votehttp://www.georgerussell.com/https://en.wikipedia.org/wiki/George_Russell_(composer)https://adp.library.ucsb.edu/names/208922B. RaselasG RussellG. RusselG. RussellG.RussellGeo. RussellGeorge Allan RussellGeorge H. RussellGeorge RusselGeorges RussellRussRusselRussellRussell, G.Б. РаселлГ. РасселДжордж РасселGeorge Russell's New York BandThe George Russell SextetThe Living Time OrchestraGeorge Russell & His SmalltetGeorge Russell SeptetGeorge Russell Orchestra + +80636Jason NawtyDJ and producer from UK.Needs Votehttps://soundcloud.com/jasonnawtyhttps://www.facebook.com/jasonnawty/https://www.instagram.com/dj_jason_nawty/Jason 'Nawty' BaileyPositive State (2) + +80847Bobby TroupRobert William Troup, Jr.American actor, jazz pianist, singer and songwriter. +Born October 18, 1918 in Harrisburg, Pennsylvania, USA. +Died February 7, 1999 in Los Angeles, California, USA. +Married to 2nd wife, singer [a36863] (1959-1999, his death). +Best known for writing the popular standard "(Get Your Kicks On) Route 66", & for role as Dr. Joe Early in the 1970's US TV series [i]Emergency![/i] +Troup charted as a songwriter in the U.S. eleven times and four in the U.K. between 1941-2007. He hit #1 with "Daddy" by Swing and Sway with Sammy Kaye in 1941. In 1946, he hit #11 (#3 R&B) with "(Get Your Kicks On) Route 66" by The King Cole Trio. His next top song was "Clumsy" by Fergie from The Dutchess in 2007--the song hit #5 overall, #89 R&B and #62 in the U.K. Covers of "Route 66" charted four additonal times and covers of "Daddy" two additional times.Needs Votehttp://en.wikipedia.org/wiki/Bobby_Trouphttps://m.imdb.com/name/nm0873757/https://adp.library.ucsb.edu/names/104977"Bobbie"A. TroupB ToupeB TroupB TroupeB-TroupB. TarpB. TroopB. TropuB. TroubB. TroupB. TroupeB. TrouphB. TroutB.TroopB.TroupBob ToopBob TroupBob TroupeBob TroutBob-TroupBob. TroupBobbie TroupBobbyBobby TroapBobby TroonBobby TroopBobby TrooupBobby TrouBobby Troup (Uncredited)Bobby TroupeBobby TroutBobby TrupBobbytroupBooby TroupC.B. TroupD. TroupeG. TroupMorrisR TroupR. TroupR. W. TroupR. W. Troup JnrR. W. TroutR.W TroupR.W. TroupR.W. Troup Jr.R.W. TroutR.W.Troup JrR.W.Troup Jr.Robert TroupRobert Troup, JrRobert Troup, Jr.Robert TroupeRobert TroutRobert W Troup JrRobert W. TroupRobert W. Troup, Jr.Robert William TroupRobert William Troup JnrRobert William Troup Jnr.Robert William Troup JrRobert William Troup Jr.Robert William Troup jr.Robert William Troupe Jr.T. RoupT. TroupTourpTrompTroopTropeTrouTroubTroupTroup Jr.Troup MorrisTroup Robert WTroup, B.Troup, BobbyTroup-MorrisTroupeTrouppeTroupsTroutTruupБ. Траупボビィ・トゥループBobby Troup And His Stars Of JazzBobby Troup QuintetBobby Troup And His OrchestraBobby Troup and TrioBob Troup TrioBobby Troup Sextet + +80950Jon BellJon BellJon Bell, UK hard house, NRG & hard trance producer and founder of the famed and now defunct [l=Tinrib Recordings] label.Needs VoteJ. BellJ.BellCaptain TinribD.R. BaseEl CapitanoFishcakeD.R. Base vs. KarimFierce BaseN.O.K.Omega 3The Captain & Steve ThomasThe Captain & Karim + +81404René AmelineFrench sound engineer founder and designer of [l266056] in 1973 after he left [l267871]. +He started as an assistant engineer in [l275766] in the 60's. +In the 70s, he also founded [l86763] with [a=Sybil Demarsan]. +René Ameline passed away in April 13th, 2014.Needs VoteAmelineKing René AmelineKing René AmélineMister Big RenéR. AmelineR. AmélineR. HamelineR.AmelineRene AmelineRené AmélineRené HamelinRené HamelineRonnie AmlinRéné Ameline + +81522Havana ConnectionNOTE: Remixes by Havana Connection are usually titled "Havana Connection Remix," "Havana Connection Dub Mix," etc. but sometimes appear with "Havana's" instead of "Havana" in the mix name - i.e. "Havana's Connection Club Mix." Both formats for remix titles are correct and were mixed by Havana Connection.CorrectClubwatchersMo'StyleRoyal Flush (2)The Groovaholic'sOro VerdeCavanaughRhythm Inc. (2)Eric SempelsJorgen Veltrop + +81523Strings Of JoyCorrect + +81857Frank RicottiBritish jazz vibraphonist and percussionist, born 13 January 1949 in London, England +Studied at the [l=Trinity College Of Music], London (1967-1970), recorded jazz with [a=Neil Ardley], [a=Mike Gibbs (4)], [a=Stan Tracey] and other. Later concentrated on studio work, working with [a=Pet Shop Boys], [a=Rick Wakeman], [a=Gerry Rafferty], [a=Chris Spedding], [a=Leo Sayer] etc., and composing music for TV. +He is known to play congas, bongos, vibraphone, tambourine, shaker, tubular bells, marimba, glockenspiel, xylophone, snare drum, triangle, timpani, timbales, tabla, sleigh bells, drums, gong and assorted other percussion, including ethnic and Latin.Needs Votehttps://en.wikipedia.org/wiki/Frank_Ricottihttps://www.oxfordreference.com/view/10.1093/oi/authority.20110803100420631https://musicianbio.org/frank-ricotti/https://www.nyjo.org.uk/members/alumni/perc-vibes/frank-ricotti/https://www.imdb.com/name/nm0725666/F RicottiF. RicottiFranc RicottiFranck RacottieFranck RicottiFrankFrank RacottiFrank RiccatiFrank RiccotiFrank RiccottiFrank RicoppiFrank RicotaFrank RicotiFrank RicottaFrank RicottimFrank RicottoFrank RigottiFranki RicottiRicotteRicottiSignor Franco RiccottiФрэнк РикоттиBullet (7)The New Jazz OrchestraThe Rhythm Section (4)The Strictly Unreasonable Zang Tuum Tumb Big Beat ColossusThe Armada OrchestraRoyal Philharmonic OrchestraPazHarry Beckett's S & R Powerhouse SectionsThe Taliesin OrchestraNational Youth Jazz OrchestraThe Frank Ricotti All StarsRobert Farnon And His OrchestraThe Mike Gibbs BandJon Petersen & SkylinerThe Brian Dee QuintetAspects Of ParagonneThe Stan Sulzmann Big BandFrank Ricotti QuartetThe Bryan Ferry OrchestraThe Gordon Beck QuintetGyroscope (3)Gordon Beck SeptetThe Tony Hymas–Daryl Runswick Big BandThe Pale Blue OrchestraChris Laurence QuartetThe Rhythm Kings (28)Neil Ardley Group + +82545Fred HendersonFrederikus A.J. Henderson[b]Dutch DJ & producer[/b]. Fred Henderson produced his first records for Basic Beat recordings in 1993. In 1996 he started his own label "Roxy's" together with the recordshop where he worked at the time (Hotsound). In 1997 he started his own label-line. He produces under the names like: The Clubjock (Blue Records), Mologa (Global Cuts), F.D. Henderson / Funkaholic / The Freak Machine (Untidy), Fred H. (Essential Dance).Needs Votehttp://www.djhenderson.nl/DJ FredDJ Fred HDJ Fred H.F. A. J, HendersonF. A. J. HendersonF. HendersonF. R. J. HendersonF.A.J. HendersonF.D. HendersonF.HendersonF.a.j. HendersonFD HendersonFred HHendersonAssymMologaFreak MachineThe ClubjockClusia FortalRollerformHigh QSweet NeckLe StrangeThe TrancejockNext Chapter (2)NosferatuDJ Peter G. & The ClubjockKlubbmastersEclipse (2)Urban ClockersOkazeonGroove StructureCyberianThe Dangerous GuysDeejay SystemKlubbgeneratorD.DactMackelson ProjectA&FJetSet (3)Toy MunosD-Sire (5)The ClubmastersF & F On The Move + +82902VoiHolger GrauelVoi is the old pseudonym of Grey, part of Grey & FrostCorrectHolger GrauelGrey (12) + +83276Mark DoggettMark DoggettNeeds Votehttp://markdoggett.com/https://soundcloud.com/markdoggettcomposerhttps://www.youtube.com/markdoggettcomposerDoggettM DoggetM DoggettM. DoggetM. DoggettMark DogettMark DoggetMarc MichaelsSparky DogDraytonK90 + +83277Chris HancockNeeds VoteC HancockC. HancockK90 + +83943Greg GisbertAmerican jazz trumpeter and flugelhornist, born 2 February 1966 in Mobile, Alabama, USA.Needs VoteGisbertGr. GisbertGregg GisbertGregory GisbertGregory L. GisbertWoody Herman And His OrchestraThe Woody Herman Big BandNew York City HornsRoy Hargrove Big BandMaria Schneider OrchestraGil Evans ProjectThe New Xavier Cugat OrchestraDizzy Gillespie All-Star Big BandThe Lew Anderson Big BandJohn Fedchock New York Big BandAlex Heitlinger SextetTed Nash Big BandJimmy Heath Big BandThe Phil Wilson's Rainbow BandTony Kadleck Big BandConvergence (6)Stephen Guerra Big BandGreg Gisbert QuintetMax Von Mosch OrchestraLoren Schoenberg And His Jazz OrchestraJim McNeely TentetBill Mobley Jazz OrchestraJoe Chambers Moving Pictures OrchestraBen Markley Big BandGreg Gisbert SextetSouth Florida Jazz OrchestraMickey Tucker SextetGary Smulyan And BrassRon Carter's Great Big BandAlex Heitlinger Jazz OrchestraThe Dizzy Gillespie™ Alumni All-Star Big Band + +84213Robin EubanksAmerican jazz trombonist, born 25 October 1955 in Philadelphia, USA, brother of [a323262] & [a=Kevin Eubanks]. +Publishing company: [l625063]Needs Votehttp://www.robineubanks.com/https://en.wikipedia.org/wiki/Robin_Eubankshttps://www.imdb.com/name/nm0262284/E. EubanksR. EubanksRobbin EubanksRobert EubanksRobin EubankrRobyn EubanksArt Blakey & The Jazz MessengersDave Holland QuintetDave Holland Big BandGerry Hemingway QuartetThe Herb Robertson Brass EnsembleRonald Shannon Jackson And The Decoding SocietyBobby Previte's Weather Clear, Track FastBobby Previte's Empty SuitsSam Rivers' Rivbea All-star OrchestraDave Holland SextetMingus Big BandMichael Brecker QuindectetMcCoy Tyner Big BandSFJazz CollectiveThe Elvin Jones Jazz MachineLiberation Music OrchestraThe Philip Morris SuperbandThe Errol Parker TentetBill Hardman SextetSuperblue (2)Message (9)Dave Holland OctetThe New York Comes To Groningen EnsembleRobin Eubanks SextetDon Grolnick GroupThe Notorious EnsembleRobin Eubanks Mass Line Big BandDuane Eubanks QuintetFrançois Lindemann OctetDuane Eubanks Quintet/SextetFreddie Hubbard OctetThe Williamsburgh All StarsYoichi Kobayashi & J,MessengersCritical Mass Quintet + +84236Michel LegrandMichel-Jean LegrandFrench composer, arranger, conductor, and jazz pianist. +Born 24 February 1932 in Paris - died 26 January 2019 in Neuilly-sur-Seine. +He was a prolific film and television scores composer and wrote many memorable songs. His scores for the films of [a733843], Les Parapluies de Cherbourg (The Umbrellas of Cherbourg - 1964) and Les Demoiselles de Rochefort (The Young Girls of Rochefort - 1967) earned him Academy Award nominations and he won his first of three Oscars for the song "The Windmills of Your Mind" from The Thomas Crown Affair (1968). +He was the son of [a456388], brother of [a311164] and uncle of [a592309].Needs Votehttps://www.facebook.com/MichelLegrandComposer/https://web.archive.org/web/20220105061930/http://michellegrandofficial.com/https://en.wikipedia.org/wiki/Michel_Legrandhttps://www.britannica.com/biography/Michel-Legrandhttps://www.imdb.com/name/nm0006166/https://adp.library.ucsb.edu/index.php/mastertalent/detail/205750/Legrand_Michelhttps://www.allmusic.com/artist/michel-legrand-mn0000401066GrandJ. LegrandJ.M. LegrandJean Michel LegrandJean-Michel LegrandKegrandLa GrandLagrandeLe CranaLe GrandLe GrandeLeGrandLeGrand M.LeGrandeLeGrangLegandLegarandLegranLegran'LegrandLegrand M.Legrand Michel JeanLegrand, MichelLegrand-MLegrandeLegraneLegraudLegrendLegrānsLesrandM .LegrandM Le GrandM LegrandM, LegrandM. LegrandM. J. LegrandM. La GrandeM. LagrandM. Le GrandM. LeGrandM. LeGrandeM. LedgrandM. LefrandM. LegranM. LegranbM. LegrandM. Legrand-M.M. LegrandeM. LegrantM. LegrnadM. LegrānsM. LegvoardM. LekranasM. LégrandM. ルグランM.J. LegrandM.J.LegrandM.Le GrandM.Le GtandM.LeGrandM.LegrandM.LegrānsM: LeGrandMgrandMi. LegrandMichael Jean LegrandMichael Le GrandMichael LeGrandMichael LeGrandeMichael LegramMichael LegrandMichal LegrandMicheal LegrandMichelMichel J. LegrandMichel Jean LeGrandMichel Jean LegrandMichel LaGrandeMichel Le GrandMichel Le GrandeMichel LeGrandMichel LeGrandeMichel LegrainMichel LegramMichel LegranMichel Legrand & His OrchestraMichel Legrand Et Ses PianosMichel LegrandeMichel LégrandMichel le GrandMichel-LegrandMichelLegrandMichele LeGrandMichele LeGrandeMichele LegrandMichele LegrandeMichell Le GrandMichell LegrandMichelle LegrandMighel LegrandMiguel Jean LegrandMiguel LegrandMilegrandMitchel LegrandMišel LegranMé LegrandN. LegrandR. Legrandm. Legrandm. legrandЛегранМ. ЛегранМ. ЛьогранМ. ЛьограндМ.ЛегранМ.ЛьогранМишел ЛегранМишель Легранミシェル・ルグランミシェル・ルグラン* Michel Legrandミッシェル・ルグランGrille-ChemandMig BikeMichel Legrand Et Son OrchestreMichel Legrand Et Son EnsembleMichel Legrand Et Ses RythmesThe Michel Legrand StringsLes Grosses TêtesMichel Legrand Et Sa Grande FormationMichel Legrand Big BandMichel LeGrand TrioMichel Legrand QuintetMichel Legrand Et Son TrioMichel Legrand & Co.Orchestre Symphonique Direction Michel LegrandMichel Legrand Sextet + +84239Georges Garvarentz Ժորժ Տիրան Կառվարենց - Diran Georges GarvarentzArmenian-French composer and arranger. +Best know for his works with [a339220], +whose sister [a2529521] he married in 1965. + +Born: April 1, 1932 in Athens, Greece +Died: March 9, 1993 in Paris, France +Needs Votehttps://en.wikipedia.org/wiki/Georges_Garvarentzhttp://www.imdb.com/name/nm0006095/?ref_=fn_al_nm_1A. GarvarentzBoorges GavarentzC. GarvarentzCarvarentzD. GarvarentzD. GavarantzDiran Georges GarvarentzG ArvarentzG GaravarenizG GarvarentzG,GarvarentzG. CarvarentzG. GararentzG. GaravantesG. GaravarentzG. GaravarenzG. GaraventzG. Garaventz DiranG. GargarentzG. GarnarendzG. GarovarentzG. GaruarentzG. GarvantzG. GarvarentG. GarvarentaG. GarvarentezG. GarvarentsG. GarvarentzG. GarvarenzG. GarvaretzG. GarvarintzG. GarvarontzG. GarvarrentzG. GarvartentzG. GarvavenezG. GarvaventzG. GarverentzG. GavarentzG. GovarentzG.GarvarenizG.GarvarentzG: GarvarentzGaraventzGarbarentzGarrarentzGarrazentzGarvaentzGarvarantzGarvarenGarvarenpzGarvarensGarvarentGarvarentsGarvarentzGarvarentz G.Garvarentz GeorgesGarvarenzGarverntzGarwarentzGavarensGavarentzGavareuzGavaruezGeorge GarvarezGeorge GarvarentzGeorge GarvarenzGeorge GarvwetzGeorge GervarentzGeorges GalvarentzGeorges GarvarantzGeorges GarvarentGeorges GarvarentaGeorges GarvarenzGeorges GarvaréntzGeorges GarvrentzGeorges GavarentzGeorges GravarenzGervarentzHarvarentzJ. Garvarentzg. garvarentzГ. ГарваренцГарваренсГарваренцЖ. ГарваренсЖ. ГарваренцЖ.ГарваренцЖорж Гарваренцジョルジュ・ガルバランスジョルジュ・ガルバランツDiran WemLou Bennett Et Son QuintetteGeorges Garvarentz And Orchestra + +84622Andy PicklesAndrew J. PicklesUK Hard House DJ & producer. [l=Music Factory] founder. Setup the [url=http://www.discogs.com/label/27122-Tidy]Tidy[/url] label with [url=http://www.discogs.com/artist/140814-Amadeus-Mozart]Amadeus Mozart[/url] and also features alongside Amadeus as the DJ duo the [url=http://www.discogs.com/artist/25831-Tidy-Boys]Tidy Boys[/url].Needs VoteA PicklesA. J. PicklesA. PickiesA. PicklesA.J PicklesA.J. PicklesA.J.PicklesA.PicklesAndrew J. PicklesAndrew PicklesAndyAny PicklesJ. PicklesPicklesPure Energy (2)Speed FreakHyperlogicScooper & SticksTidy BoysThe MixmastersJive Bunny And The Mastermixers2InATentThe HandbaggersThe MastermixersThe NRG TwinsA.P.A.The Bucking Broncos + +84800Craig DanielCraig DanielUsed to work in the Trax record shop in London.Needs Votehttp://uk.myspace.com/djcraigdanielC. DanielCraig "Trax" DanielsCraig "trax" Daniel YefetCraig 'Trax' DanielsCraig Daniel Michael YefetCraig Daniel YefetCraig DanielsCraig YefetDanielDaniel-YefetMichael YefetCraig YefetPartizanP + CDaniel & Jonesey + +84839Andrew Lloyd WebberBritish composer and impresario of musical theatre and TV personality, born 22 March 1948 in London, England, UK. Son of [a2773261], brother of [a580166], and father of [a5100487]. Married to [a59756] from 1984 until their divorce in 1990. + +Formally he is known as "Sir Andrew Lloyd Webber, Baron Lloyd-Webber Of Sydmonton", after being knighted by The Queen in 1992 and being made a life peer in 1997, sitting as a Conservative member of the House Of Lords.Needs Votehttps://www.andrewlloydwebber.com/https://www.facebook.com/AndrewLloydWebber/https://twitter.com/officialalwhttps://www.youtube.com/andrewlloydwebbermusicals/https://www.instagram.com/andrewlloydwebber/https://en.wikipedia.org/wiki/Andrew_Lloyd_Webberhttps://www.britannica.com/biography/Andrew-Lloyd-Webber-Baron-Lloyd-Webber-of-Sydmontonhttps://www.imdb.com/name/nm0515908/https://www.allmusic.com/artist/andrew-lloyd-webber-mn0000003595A L WebberA LloydA Lloyd - WebberA Lloyd WebberA Lloyd WeberA Lloyd-WebberA. I. WebberA. I. WeberA. L WebberA. L WeberA. L. WebberA. L. WeberA. L. WedderA. L.WebberA. LL. WebberA. LL. WeberA. Lhoyd WebberA. Lioyd WebberA. Ll. WebberA. Ll. WebbertA. Llloyd WebberA. LlodyA. LloydA. Lloyd - WebberA. Lloyd / WebberA. Lloyd WeA. Lloyd WebbeA. Lloyd WebberA. Lloyd Webber, AA. Lloyd Webber, A.A. Lloyd Webber-T. RiceA. Lloyd WeberA. Lloyd YebberA. Lloyd, WebberA. Lloyd-WebberA. Lloyd-WeberA. Lloyd.WebberA. Lloyd/WebberA. LloydWebberA. Lloyd–WebberA. Loyd WebberA. Loyd WeberA. Loyd-WibberA. WebberA. WeberA. WebertA. lloyd WebberA.L WebberA.L. WebberA.L. WeberA.L. ウェバーA.L.VēberisA.L.WebberA.L.WeberA.Ll. WebberA.Llloyd-WebberA.Lloyd WebberA.Lloyd-WebberA.WebberAl WebberAl WeberAl. WebberAlloyd WebberAnderw Lloyd WebberAndrew L WebberAndrew L. WebberAndrew L. WeberAndrew LeutwebberAndrew Lioyd WebberAndrew Llod WeberAndrew Lloid WebberAndrew LloydAndrew Lloyd EbberAndrew Lloyd Webber'sAndrew Lloyd Webber, T.S. ElliotAndrew Lloyd WeberAndrew Lloyd, WebberAndrew Lloyd-WebberAndrew Lloyd-WeberAndrew Lloyde WebertAndrew Lloydt WeberAndrew Lloyd–WebberAndrew Loyd VeberAndrew Loyd WebberAndrew Loyd WeberAndrew WebberAndrew WeberAndrew, Lloyd, WeberAndrew-Lloyd WebberAndrew/Lloyd WebbAndrews Lloyd WebberAndy Lloyd WebberAnrew Lloyd WebberA・L・ウェッバーComposerE. L. WebberE. L. WeberEnrju WebberF. L. WebberF. WeberJ. WebberL. L. WebberL. Loyd - WebberL. VebberL. WebberL. WeberL.WebberLLoyd WebberLl. WebberLloydLloyd & WeberLloyd - WebberLloyd -WebberLloyd / WebberLloyd O. WeberLloyd WebberLloyd Webber A.Lloyd Webber AndrewLloyd WeberLloyd Weber AndrewLloyd webberLloyd, WebberLloyd-Andrews-WeberLloyd-WebberLloyd-Webber AndrewLloyd-Webber, AndrewLloyd-WeberLloyd-WedderLloyd/WebberLloydWebberLloys WebberLlyod WebberLlyod Webber, AndrewLord Andrew Lloyd WebberLoyd WebberLoyd Webber AndrewSir Andrew Lloyd WebberSir Andrew Lloyd-WebberWebbWebberWebber Andrew LloydWebber Andrew LlydWebber, Andrew LloydWeberWebetWedbberЕ.Л. ВеберЛ. ВебберЛ. УэбберЛлойд УэбберЭ. Л. ВебберЭ. Л. УэбберЭ.Ллойд УэбберЭндрю Ллойд ВебберЭндрю Ллойд Уэбберアンドリュー・ロイド・ウェバーアンドリュー・ロイド=ウェバーアンドリュー・ロイド=ウェバー / Andrew Lloyd Webberロイド・ウェッバーロイド・ウェバー安德魯‧洛伊‧韋伯维柏앤드류 로이드 웨버의Doctor SpinAndrew Lloyd Webber And Tim Rice + +85473Tomcat (2)Dom SweetenDom is undoubtedly one of the most popular & respected producers in the Hard House /NRG arena. Over the years, he has been involved with a great number of classic tracks & remixes produced under various pseudonyms, most notably his [a=Defective Audio] alias & the longstanding partnership with [a=Superfast Oz] as [a=OD404]. + +Dom and Oz met whilst DJ'ing at gigs in Brighton during the mid 90's. They had similar tastes and both were interested in dabbling with music production, so they acquired some studio equipment and started crafting their art. Very few labels were initially interested and the duo later launched [l=Kaktai Records] in '97 as a platform for their music. + +Dom developed a preference for the studio and has since featured original productions & remixes in a variety of styles on every prominent label within the scene. Apart from his partnership in Kaktai Records, Dom also runs the Hard House / NRG label, [l=Spinball Records] & [l=Battle Jaxx] which was an outlet for his Funky Hard House. + +Since mid 2004, Dom has managed to escape [i]Studio 404[/i] long enough for a few very select DJ appearances as well as [i]OD404 Live[/i] shows with Oz. +Needs Votehttp://www.404studio.comTom CatDefective AudioBase GraffitiD.S.P. (2)Dom SweetenEl DurangozFreeflow 45Dominguez FunkJaffa RamakinDektronik DomThe Spider Trax Files404Studio + +85474Barely LegalNeeds VoteBarelylegalPaul MaddoxGuy Mearns + +85524Sean TyasSean Edwin TyasAmerican Trance DJ & producer based in Teufen, Switzerland. +Launched his own digital label [l=Tytanium Recordings] in 2011.Needs Votehttp://www.seantyasmusic.com/https://myspace.com/seantyashttps://www.facebook.com/seantyasmusichttps://twitter.com/seantyashttps://soundcloud.com/seantyashttp://equipboard.com/pros/sean-tyashttps://www.youtube.com/user/seantyasmusicS. TyasSean Edwin TyasSean YyasSeanTyasTyasTyas, SeanSymmetry (2)LogisticEdwin YorkSyat NaesEddie Williams (6)Naes (2)NeodyneAbSTrakt (19)64 BitSonar SystemsAngylaTronic (3)TT (3)Transatlantic Powersurge + +85730Chris KimseyChristopher Kenneth KimseyEnglish sound engineer and producer best known for his work with The Rolling Stones. Born in Battersea, London, on 3 December 1951. Started his career at [l264021]. Married to [a=Kristi Kimsey].Needs Votehttps://chriskimsey.com/https://www.linkedin.com/in/chris-kimsey-8a75724/https://www.imdb.com/name/nm1947148/https://en.wikipedia.org/wiki/Chris_Kimseyhttps://www.recordproduction.com/interviews/chris-kimseyC. KimseyC. KinseyC.KimseyCh. KimseyChrisChris "Wonderknob" KimseyChris "Wonderknob" KinseyChris KemseyChris KenneyChris Kimsey Productions Ltd.Chris KimsleyChris KinseyChris KinsleyChris RimseyChristiopher "Robbin" KimseyChristopher "Robbin" KimseyChristopher "Robin" KimseyChristopher 'Robbin' KimseyChristopher 'Robin' KimseyKimseyKris KimseyКрис КимзиMr CrimsonJ.M.C. Singers + +86094Smokey RobinsonWilliam Robinson, Jr.[b]For releases by Smokey Robinson And The Miracles or variants of that please enter under [a=The Miracles] with the appropriate artist name variation there.[/b] + +American R&B / pop singer, songwriter, record producer, and former record executive, born February 19, 1940 in Detroit. He was a founding member of [a=The Miracles] (later varied for commercial reasons as [i]Smokey Robinson & The Miracles[/i]), leaving for a solo career in 1972. Inducted into Rock And Roll Hall of Fame in 1987 (Performer). Inducted into Songwriters Hall of Fame 1990. + + +Correcthttps://smokeyrobinson.com/https://www.facebook.com/thesmokeyrobinsonhttps://myspace.com/smokeyrobinsonhttps://en.wikipedia.org/wiki/Smokey_Robinsonhttps://www.imdb.com/name/nm0005373/https://www.whosampled.com/Smokey-Robinson/https://www.songhall.org/profile/Smokey_Robinson"Smokai""Smokey""Smokey" Robinson'Smokey''Smokey' RobinsonB. RobinsonBill "Smokey" RobinsonBill "Smokie" RobinsonBill 'Smokey' RobinsonBill (Smokey) RobinsonBill RobinsonBill Smokey RobinsonBilly RobinsonD. RobinsonD.RobinsonFriendJ. RobinsonJrJr William RobinsonL.W. RobinsonM. RobinsonMorrisonN. RobinsonP. RobinsonR. RobinsonR. WilliamR. William Jr.R.RobinsonRay RobinsonRobbinsonRobertsonRobinRobinosnRobinsRobinsonRobinson (Jun.)Robinson JrRobinson Jr.Robinson WRobinson, Jr.S-RobinsonS. B. RobinsonS. RichardsonS. RobinsonS. W. RobinsonS.RobinsonSmo Key RobinsonSmokeSmokeySmokey "William" RobinsonSmokey Robinson Jr.Smokey W. RobinsonSmokie RobinsonSmoky RobinsonTobinsonW ."Smokey" RobinsonW .RobinsonW .S. RobinsonW RobinsonW, RobinsonW- RobinsonW. RobinsonW. "S." RobinsonW. "Smokey Robinson"W. "Smokey" RobinsonW. "Smokey" Robinson, Jr.W. 'Smokey' RobinsonW. (Smokey) RobinsonW. >>Smokey<< Robinson Jr.W. H. RobinsonW. M. RobinsonW. RobertsonW. RobindonW. RobinsinW. RobinsonW. Robinson (Smokey)W. Robinson JnrW. Robinson JrW. Robinson Jr.W. Robinson jr.W. Robinson, JrW. Robinson, Jr.W. Robinson,Jr.W. Robinson.W. Robinson/Jr.W. S. RobinsonW. Smokey RobinsonW. Smokey – RobinsonW. Smokie RobinsonW. Smoky RobinsonW. «Smokey» RobinsonW."Smokey RobinsonW."Smokey"RobinsonW.'Smokey' RobinsonW.. RobinsonW.M RobinsonW.M. RobinsonW.RobbinsonW.RobinsinW.RobinsonW.Robinson JrW.S. RobinsonW.S.RobinsonW.Smokey RobinsonW.«Smokey» RobinsonWM RobinsonWM. RobinsonWiiliam "Smokey" RobinsonWiiliam RobinsonWiliam "Smokey" RobinsonWiliam RobinsonWiliam RobisonWill RobinsonWillaim "Smokey" RobinsonWillaim RobinsonWillam "Smokey" RobinsonWillam RobinsonWillam „Smokey“ RobinsonWilliam "Mickey" RobinsonWilliam "Smokey " RobinsonWilliam "Smokey " Robinson, Jr.William "Smokey RobinsonWilliam "Smokey" RobinnsonWilliam "Smokey" RobinsonWilliam "Smokey" Robinson Jr.William "Smokey" Robinson, JrWilliam "Smokey" Robinson, Jr.William "Smokey" Robinson.William "Smokey" Robinson/Marvin TarplinWilliam "Smokey" RobinssonWilliam "Smokey"RobinsonWilliam "smokey" RobinsonWilliam ' Smokey ' RobinsonWilliam ''Smokey'' RobinsonWilliam 'Smokey" RobinsonWilliam 'Smokey' RobinsonWilliam 'Smokey' Robinson JrWilliam 'Smokey' Robinson Jr.William 'Smokey' Robinson,William (Jun) RobinsonWilliam (Smokey) RobinsonWilliam - RobinsonWilliam Jon RobinsonWilliam Jr RobinsonWilliam Junior (Smokey) RobinsonWilliam RobensonWilliam RobertsonWilliam RobinsonWilliam Robinson (Jun)William Robinson - (Smokey)William Robinson JR.William Robinson JnrWilliam Robinson JrWilliam Robinson Jr.William Robinson JuniorWilliam Robinson, JrWilliam Robinson, Jr.William Robinson, UrWilliam Robinson-(Smokey)William Smokey RobinsonWilliam Smokey Robinson JrWilliam Smokey Robinson Jr.William « Smokey » RobinsonWilliam «Smokey» RobinsonWilliam «Smokey» Robinson, Jr.William »Smokey« RobinsonWilliam “Smokey” RobinsonWilliam “Smokey” Robinson, Jr.William „Smokey” RobinsonWilliam(Smokey)RobinsonWilliams "Smokey" RobinsonWilliams 'Smokey' RobinsonWilliams RobinsonWilliams “Smokey” Robinson, Jr.Williamson RobinsonWillian "Smokey" Robinson Jr.Willima RobinsonWillliam "Smokey" RobinsonWm "Smokey" RobinsonWm RobinsonWm Robinson Jr.Wm Smokey Robinson Jr.Wm. "Smokey" RobinsonWm. "Smokey" Robinson, Jr.Wm. "Smokie" RobinsonWm. -Smokey- RobinsonWm. RobinsonWm. Robinson Jr.Wm. Robinson, JrWm. Robinson, Jr.Wm. Smokey RobinsonWm.RobinsonWn. Robinsonスモーキー・ロビンソンThe MiraclesUSA For AfricaRon & Bill + +86339Esther PhillipsEsther Mae JonesEsther Phillips was an American soul and rhythm & blues singer (December 23, 1935, Galveston, Texas - August 7, 1984 in Carson, California). + +She was an influence on many other artists including [a38863]. She was already a mature singer at age fourteen, and won the amateur talent contest in 1949 at the Barrelhouse Club owned by [a=Johnny Otis]. Otis was so impressed he billed her as 'Little Esther' and added her to his traveling revue, the California Rhythm and Blues Caravan. Her first hit record was "Double Crossing Blues" (#1 R+B), recorded in 1950 for [l=Savoy Records]. Her duet with [a=Mel Walker] on "Mistrusting Blues", also went to number one that year, as did "Cupid Boogie". Other Little Esther records that made it onto the U.S. Billboard R&B chart in 1950 include "Misery" (#9), "Deceivin'" (#4), "Wedding Boogie" (#6), and "Faraway Blues" (#6). Few artists, R&B or otherwise, have ever enjoyed such success in their debut year. Phillips left Otis and the Savoy label at the end of 1950 and signed with [url=http://www.discogs.com/label/Federal+Records+%282%29]Federal Records[/url]. Although she recorded more than thirty sides for Federal, only one, "Ring-a-Ding-Doo", charted; making it to #8 in 1952. Not working with Otis was part of her problem; the other part was her drug usage. By the middle of the decade Phillips was chronically addicted to drugs. + +Phillips ultimately got well enough to launch a comeback in 1962. Now billed as Esther Phillips instead of Little Esther, she recorded a country tune, "Release Me," with producer [a=Bob Gans]. This went to number 1 on R&B and number 8 on the pop listings. After several other minor R&B hits on [url=http://www.discogs.com/label/Lenox+Records]Lenox[/url], she was signed by [l=Atlantic] Records. Her cover of [a=The Beatles] song "And I Love Him" nearly made the R&B Top Ten in 1965 and The Beatles flew her to the UK for her first overseas performances. During the 1970's she made a temporary move into disco material and scored an international hit with "What A Difference A Day Made", an updating of the 1930's jazz standard. + +Phillips died at UCLA Medical Center in Carson, California in 1984, at the age of 48 from liver and kidney failure.Needs Votehttp://en.wikipedia.org/wiki/Little_Esther_Phillipshttps://soulstrutter.blogspot.com/2021/12/esther-phillips-profile.htmlhttps://www.ctproduced.com/remembering-esther-phillips/https://adp.library.ucsb.edu/names/337554"Little Ester""Little Esther" Philips"Little Esther" Phillips"Little Esther'' Phillips"Little" Ester Phillips"Little" Esther"Little" Esther Phillips"Little" Esther Phillps'Little Esther' Phillips'Little' Esther Phillips(Little) Esther PhillipsE. PhillipsEster PhilipsEster PhillipsEstherEsther (Little Esther) PhillipsEsther PhilEsther PhilipsEsther PhillipEsther Phillips "Little Esther"Esther Phillips (Little Esther)Esther PhillpsIs There PhillipsIs There Phillips?L. Esther PhillipsLittle Esther PhillipsLittle EsterLittle Ester PhillipsLittle EstherLittle Esther (Phillips)Little Esther PhilipsLittle Esther PhillipsPhillips“Little” Esther Phillipsエスター・フィリップスThe Johnny Otis ShowLittle Esther And Her OrchestraCTI All-StarsLittle Esther & The Blue NotesJohnny Otis Congregation + +87519Stanley ClarkeStanley Marvin ClarkeSoul / jazz / funk bassist, guitarist, songwriter and producer +Born on 30.06.1951, in Philadelphia, Pennsylvania, U.S.A.Needs Votehttps://stanleyclarke.com/https://en.wikipedia.org/wiki/Stanley_Clarkehttps://myspace.com/stanleyclarke11https://www.arts.gov/honors/jazz/stanley-clarkehttps://www.allmusic.com/artist/stanley-clarke-mn0000745316ClarkeCtanley SlarkeCтенли КларкS ClarkeS. ClarkeS.ClarkeSta ClarkeStanStan ClarkeStandley ClarkeStanleyStanley ClarkStanley Clarke & FriendsStanly ClarkeСтенли КларкСтэнли Кларкスタン・クラーク스탠리 클락Return To ForeverThe Stanley Clarke BandFuse OneArt Blakey & The Jazz MessengersStanley Cowell TrioStan Getz QuartetAnimal LogicS. M. V.The New BarbariansGeorge Russell OrchestraVertuThe Stanley Clarke TrioThe Manhattan ProjectBobby Lyle TrioStanley Clarke & FriendsStanley Clarke/George DukeHerbie Hancock's Super QuartetHerbie Hancock Special Quartet + +88083EuphoriahCorrectEuphoria + +88401Laurent KonradLaurent ArriauFrench DJ and house music producer from Soorts-Hossegor. +Produced German fictitious character [a=Helmut Fritz]. +Needs Votehttp://www.laurentkonrad.com/http://www.myspace.com/laurentkonradKonradKonrad LaurentL. KonradL.KonradLKLaurenLauren KonradLaurentLaurent ConradLaurent KLaurent K.Twin PackWatermätLaurent Arriau + +88802M.A.Q.CorrectM.A.QMAQChampion BurnsMajestic 12Masters At QuirkTopaz (2)Robert BurnsNigel Champion + +89628Irene CaraIrene Cara EscaleraOscar, Golden Globe and two-time Grammy winning American singer, songwriter, actress and producer, born in New York City, NY March 18, 1959, died Nov 25, 2022 in Largo, Florida. Born and raised in the South Bronx of Puerto-Rican and Cuban-American ancestry, she began singing and dancing on local Spanish TV at age 7. Cara was a trained singer, actor and dancer who made many stage and television appearances as a child, including on PBS and on Johnny Carson's The Tonight Show. She is best known for two movie themes she wrote and performed, "[m=112667]" and the Academy Award-winning "[m=48230]". + +Needs Votehttps://en.wikipedia.org/wiki/Irene_Carahttps://www.imdb.com/name/nm0001011/https://www.ibdb.com/broadway-cast-staff/irene-cara-83392http://www.iobdb.com/CreditableEntity/21067CaraCara IreneCara, IreneCarene IreneDJ CaraE. CaraI CaraI. CaraI. KaraI.CaraIren CaraIrena CaraIreneIrene CarasIrene CarraIrene EscaleraIrène CaraJ. CaraL. CaraИрен Караアイリーン・キャラ艾琳・卡拉艾琳卡拉The Electric Company (2)HermanosThe Me Nobody Knows Original CastHot Caramel + +89693Sahib ShihabEdmund GregoryAmerican jazz saxophonist (mainly baritone, but also alto and soprano) and flutist. + +Born June 23, 1925 in Savannah, Georgia +Died October 24, 1989 in Nashville, Tennessee + +Originally self-taught on the alto sax. Later studied at the Boston Conservatory. Changed his name on conversion to Islam in 1947. In the US, Shihab performed with musicians including Fletcher Henderson, Thelonious Monk, Art Blakey and Dizzy Gillespie (it was Gillespie who asked him to take up baritone sax), before joining the Quincy Jones Big Band. With Jones, Shihab traveled to Europe, where he remained until 1986. +Sahib Shihab recorded several albums as leader during this period. His two albums for the German label Vogue (Seeds and Companionship) are regarded especially highly amongst fans of stylish modern jazz. Many of his releases have never been reissued. Shihab was a long-time member of the Clarke-Boland Big Band, with whom he recorded between 1963 and 1972.Needs Votehttps://en.wikipedia.org/wiki/Sahib_Shihabhttps://www.imdb.com/name/nm1015617/https://adp.library.ucsb.edu/names/343519https://sahibshihab.bandcamp.com/Edmond Gregory "Sahib Shihab"Edmond Gregory [Sahib Shihab]Edmund Gregory "Sahib Shihab"S. ShahibS. ShihabS. Shihab SextetSahab ShihabSahibSahib ShahabSahib ShahibSahib ShehabSahib ShibaSahib ShibabSahib Shihab SextetSahib ShihiabSahib SihabShAhIB-ShAhABShahibShahib JihalShahib ShibabShahib ShihabShihabSihab ShihabSihab Sihabサヒブ・シハブEdmund GregoryQuincy Jones And His OrchestraClarke-Boland Big BandThe George Gruntz Concert Jazz BandThe Thelonious Monk QuintetDizzy Gillespie Big BandFrancy Boland And OrchestraTadd Dameron And His OrchestraTony Scott And His OrchestraThe Sahib Shihab QuintetArt Blakey's Big BandThe Blue Sounds Inc.The Kenny Clarke - Francy Boland SextetThe Dizzy Gillespie Reunion Big BandWalter Gil Fuller And His OrchestraThe Prestige All StarsThe Band (7)Art Farmer QuintetThe Mal Waldron SextetErnie Wilkins Almost Big BandThe Quincy Jones Big BandOscar Pettiford OrchestraNDR-Jazz-Workshop-BandTadd Dameron's Big TenGeorge Gruntz Jazz GroupThad Jones EclipseMilton Jackson And His New GroupGil Fuller OrchestraVan Prince And OrchestraArt Blakey's BandJon Hendricks - Johnny Griffin GroupSpecs Powell & Co.Sahib Shihab QuartetSahib Shihab Sextet + +89988Zenon ZevenbergenZenon ZevenbergenRap vocalist since 1986! +Born and raised in Rotterdam Zeno has been around the world dropping rhymes and rocking crowds. +One of the pioneer mc's who crossed over from hiphop into dance music while still maintaining that hiphop vibe. +Needs VoteZ ZevenbergenZ. ZevenbergenZ.ZevenbergenZenoZenonZevenbergenZénonZénon ZevenbergenMixelplixZeno (24)Human ResourceT99CyclopedeSource CodeDoctor DoomThe Jokers (2)Da' ChoiceVernietiger X & Grootmeester Flits + +90106Jan VoermansJan VoermansDutch DJ and producer, best known as Greatski (ex. Klubbheads) + +Klubbheads are a group of dance music DJs and producers from the Netherlands. They have had more than 35 monikers by which they went from, including Drunkenmunky, Da Klubb Kings and many more. DJ Boozy Woozy and Itty Bitty first teamed up on the series of commercial mixes Turn Up The Bass. They started making music in the early 90's before they met Jan Voermans (Greatski) in 1995. +The three producers created a sublabel of Mid-Town Records called Blue Records to release their Klubbheads releases. They had their first mainstream chart hit with ‘Klubbhopping’ which got to number 10 in the UK Singles chart in May 1996. It was followed up by two entries in the UK Top 40 with the 1997 record ‘Discohopping’ and the 1998 track ‘Kickin’ Hard’. In 1999 they produced ‘The Launch’ by DJ Jean, which reached number 2 in the UK, number 1 in Holland and still is a global dance anthem. They've also produced the Paul Elstak 90's hits, like Rainbow In The Sky and Promised Land a.o. and made plenty remixes for many artists, like 2 Unlimited, Scooter, Vengaboys. +In 2006 Greatski left Klubbheads and is now operating solo. +Needs VoteG VoermansG. VoermansGreet VoermansJ VoermansJ, VoermansJ. VoermannsJ. VoermansJ. WoermansJ.VoermansJ.WoermansJanJan Greet VoermansJan VoormansVaermansVloermansVoermanVoermannsVoermansVoermarsGreatskiFnuckeyMalaniMr. White (6)KlubbheadsThe Ultimate SeductionCode BlueJ.A.K.DigidanceGreenfieldMaximumDJ DiscoRollercoasterDa Techno BohemianLa CasaShelleyTrashcanChiaraRio & Le Jean3 Dubbs In A SleeveDa Klubb KingsSeven-TeesB.I.G.The DJThe Tone SelectorUnited Deejays For Central AmericaCab'n'CrewSlammerCooperDrunkenmunkyLorindoJoy (4)Al CappucinoChaka Boom BangMr. KinkyCapo CopaReservoir JocksMF-tracksQueerBad Boy NotoriousRoberto TechnalliBeat CultureRe-CurrentLasermanMillennium BugThe TrollDeep Beat ClubbingD-NaturalCatalanaFreak BitchThe Dental RaversClubsquadVan ZantenSnow Inc.Public FlavorIt TunesDigital TwinsCenturion (2)Kick 'N RushItty Bitty, Boozy Woozy & GreatskiDolce Vita (6)The Good Guys (3)De Hit DJ's + +90119John van DongenJohnny van DongenDutch trance producer.Needs Votehttp://www.myspace.com/484159135Dj JohnJ. DongenJ. V. DongenJ. Van DongenJ. v DongenJ. v. DongenJ. v/d DongenJ. van DongenJ.V. DongenJ.v. DongenJ.van DongenJVDJohn Van DongenJohn van de DongenJon van Dongenvan DongenKhemistryActive XMarco BotelliCalverasAce HighMr. MusicAtomic BoosterEstateExceed (2)Mr Blue (3)Nightvision (2)E-Wok8-HandsJ & R ProjectSunflowerzSlam DunkRecollectRobins & TaylorJoh & JohNitrate (2)J. Key ProjectDub DeliriousClub Patrol8 Hands On The TableAndromeda (13)Resonate (3)Mr. Black & BlueWheels Off SteeleUltra FreakDark Room (2)BasspussiesBrainpiercing + +90120Ron van den BeukenRonald A. G. H. van den BeukenDutch Trance and Tech-Trance producer & DJ, born April 10th of 1970 in Horst, The Netherlands. +Works with artists such as [a=A. L. Veldman], [a=M.A.S. de Vries] and [a=John van Dongen]. +Founded the label [l=RR Records] in 2003 (re-launched in 2009 as [l=RR Recordings]). +Worked at Frog Music Productions.Needs Votehttp://web.archive.org/web/20040310233234/http://www.ronvandenbeuken.com/http://web.archive.org/web/20080409223821/http://www.ronvandenbeuken.com/http://web.archive.org/web/20120505044844/http://www.ronvandenbeuken.com/http://web.archive.org/web/20130424224852/http://www.vdbeukenmusic.com:80/https://myspace.com/ronvdbeukenhttps://www.facebook.com/RON-VAN-DEN-BEUKEN-23829051850/https://www.facebook.com/ron.vandenbeuken.1https://twitter.com/ronvandenbeukenhttps://www.instagram.com/dj_ronvandenbeukenhttp://web.archive.org/web/20131127004852/http://ronvandenbeuken.hyves.nl/http://web.archive.org/web/20131015032329/http://frogmusicproductions.com/frog.htmlDJ Ron van den BeukenR van den BeukenR vd BeukenR. BeukenR. V. Den BeukenR. V.D. BeukenR. V/D BeukenR. VD BeukenR. VD. BeukenR. Van De BeukenR. Van Den BeukenR. Vd BeukenR. Vd. BeukenR. v.d. BeukenR. v/d BeukenR. van BeukenR. van Den BeukenR. van de BeukenR. van den BeukenR. van der BeukenR. van ven BeukenR. van-den BeukenR. vd BerkenR. vd BeukenR. vd. BeukenR.BeukenR.D. BeukenR.V.D. BeukenR.Van Den BeukenR.v.d. BeukenR.v.d.B.R.van de BeukenR.van den BeukenR.vd BeukenRob V/D BeukenRon VD BeukenRon VanRon Van BeukenRon Van Den BeukenRon Van Den BukenRon Van Der BeukenRon Van den BeukenRon VandenbeukenRon Vd BeukenRon v d BeukenRon v.d. BeukenRon v/d BeukenRon v/d/ BeukenRon van BeukenRon van de BeukenRon van den BeutenRon vd BeukenRonald van den BeukenRvdBRvdbV.D.BeukenV/D Beukenv Beukenvan Beukenvan den BeukenFloydShaneThe MysteryDeleriousUnicornZithClokxR.V.D.B.Cartouche (3)Nightvision (2)E-Wok8-HandsHeaven's CryElayaJ & R ProjectStimulatorCASTiaraKyoto (2)Nitrate (2)OrealJ. Key ProjectDub DeliriousCalienda8 Hands On The TableKing AmirInaraDevoisGIADMr. Black & BlueWheels Off SteeleUltra FreakDark Room (2)BasspussiesBrainpiercing + +90492Steve ThorntonPercussionist born and raised in Brooklyn, New York.Needs Votehttps://www.thelastmiles.com/profiles_steve-thornton/http://www.congahead.com/legacy/Musicians/Meet_Musicians/Thornton/Thornton.htmlhttps://bma.com.my/teacher-steve-thornton/https://drummerszone.com/artists/profile/3983/steve-thornton#biographyhttps://www.facebook.com/stevedrumhouseHasan ThorntonHassanHassan Steve ThorntonHassan ThorntonHassan Thornton (Steve)S. Hassan ThorntonS. ThorntonSteveSteve 'Hassan' ThorntonSteve Hassan ThorntonSteve T.Steve ThortonSteve ThrontonSteve TorntonSteven ThorntonSteven ThortenThorntonСтив ТорнтонMcCoy Tyner Big BandMiles Davis SeptetMiles Davis OctetEarthbound (10) + +90517StimulatorStimulator is a Dutch trance project created by Edwin van de Witte. Initially the project was co-produced by Paul van Schooten until 2005, when Ronald Vink took over. In 2015 the project was revived by Witte and Ron van den BeukenNeeds Votehttps://facebook.com/djstimulatorhttps://soundcloud.com/djstimulatorhttps://twitter.com/djstimulatorhttp://www.beatport.com/artist/stimulator/11523http://www.djstimulator.comThe StimulatorRon van den BeukenEdwin van de WitteRonald VinkPaul van Schooten + +90539Jane BirkinJane Mallory BirkinBritish actress and singer based in France since the late '60s. +Born: 14th December 1946 London, England. +Died: 16th July 2023 Paris, France. +She was a bit of a It-girl during the swinging sixties, appearing in two of the defining movies of the era: Richard Lester's "The Knack ... and how to get it" and Antonioni's "Blow Up". She then married movie scores composer [a=John Barry] and had a daughter, photographer [a2271131]. +After splitting from [a=John Barry] she relocated to France where she met [a=Serge Gainsbourg] who was himself recovering from his own split from [a=Brigitte Bardot]. One of the most legendary and sexually charged artistic collaborations of the late 20th Century followed, with Jane playing the Beauty to Serge's Beast on records, most infamously "Je T'Aime ... Moi Non-Plus" originally written for and performed by Bardot but banned by Bardot herself, in movies and in French newspapers and TV shows. They had a daughter, actress and singer [a=Charlotte Gainsbourg]. +After separating from Serge at the tail end of the seventies she lived with movie director Jacques Doillon with whom she had another daughter, model and actress [a=Lou Doillon]. Her estranged mentor kept on offering her songs to record all through the eighties until his death in 1991. When Serge passed-away, Jane concentrated on her acting career, branching out in theatre and even directing a couple of movies. +She came back to singing in the late nineties, first through various re-interpretations of Serge's back catalogue and then, in spite of her many declarations she couldn't even imagine singing someone else's words, with an album of collaborations with artists as diverse as [a=Bryan Ferry], [a=Caetano Veloso], [a=Feist], [a=Brian Molko], [a=Manu Chao] or [a=Mickey 3D] on 2004 "Rendez-Vous", followed by further collaborations with [a=Gonzales], [a=Johnny Marr], [a=Rufus Wainwright], [a245226], [a=Beth Gibbons] and [a=Kate Bush] on 2006 "Fictions". +Daughter of [a4186910] and sister of [a2349556]. Aunt of [a2982298]. +Appointed OBE (Order of the British Empire) in 2002.Needs Votehttps://web.archive.org/web/20190209030104/http://www.janebirkin.net/http://janebirkin.fr/https://en.wikipedia.org/wiki/Jane_Birkinhttps://www.imdb.com/name/nm0000945/BirkinBirkin J.J BirkinJ. BirkinJ. BirkkinJ.BirkinJaneJane B.Jane BirkenJane BirkingJane BirknJane.Jean BirkinLane BirkinДжейн Биркинג׳יין בירקיןジェーン・バーキン珍寳金Noël EnsembleLes EnfoirésEnsemble (4)SampanLes Grosses TêtesCollectif Paris-Africa Pour L'Unicef + +90595Clarence McDonaldJazz / soul / funk / disco / R'n'B pianist and producer (February 24, 1945 – July 21, 2021). +Along with his partner for over 40 years, the late [a=Fritz Baskett], they have written many songs for [a=Deniece Williams], [a=The Emotions] etc. +He has played with (and for) an incredible number of musicians: [a=Aretha Franklin], [a=Gloria Gaynor], [a=Ray Charles], [a=Buddy Miles], [a=Lionel Richie], [a=James Taylor], [a=Maurice White] to name a few.Needs Votehttps://web.archive.org/web/20050207062635/http://clarencemcdonald.net/welcome.htmlhttps://web.archive.org/web/20130624005755/http://www.clarencemcdonald.com/homehttps://en.wikipedia.org/wiki/Clarence_McDonaldC. K. McDonaldC. MacDonaldC. MacdonaldC. Mc DonaldC. McDonalC. McDonaldC. McDonaldsC.K. McDonaldC.McDonaldCalrence Mc DonaldClarance McDonaldClarence C. McDonaldClarence K. McDonaldClarence Kermit McDonaldClarence Kevin McDonaldClarence MacDonaldClarence Mc DonaldClarence McDanaldClarence McDonald for CMC Staff, Inc.Dr. Clarence Mc DonaldDr. Clarence McDonaldDr.Clarence McDonaldMacDonaldMcDonaldMcDonald Clarence Kermitクラレンス・マクドナルドPaul Humphrey & His Cool Aid ChemistsErnie Watts Quartet + +92051Chuck MangioneCharles Frank MangioneAmerican flugelhorn and trumpet player and composer. + +Born: 29 November 1940 in Rochester, New York, USA. +Died: 22 July 2025 in Rochester, New York, USA. + +Inducted into the Rochester Music Hall of Fame in 2012. + +Brother of pianist [a=Gap Mangione].Needs Votehttps://chuckmangione.com/https://www.onamrecords.com/artists/chuck-mangionehttps://en.wikipedia.org/wiki/Chuck_Mangionehttps://www.whosampled.com/Chuck-Mangione/https://www.imdb.com/name/nm0542246/"Go-Man-Gione"C MangioneC. MangioneC. MangioniC.M.Ch. MangioneCharles F. MangioneCharles MangioneChuckChuck MagoneChuck MangionelChuck MangioniChuck MangionieChuck MangionneChuck-MangioneMangioneMangione, ChuckShuck MangioneМањонеチャック・マンジョーネArt Blakey & The Jazz MessengersChuck Mangione QuartetThe Mangione Brothers SextetThe National GalleryChuck Mangione QuintetThe Boys From Rochester + +92220Alphonse MouzonAlphonzo MouzonAlphonse Mouzon (born November 21, 1948, Charleston, South Carolina, USA – died December 25, 2016) was an American jazz-fusion drummer and percussionist, a founding member of [a10082], and the CEO of [l=Tenacious Records]. He was also a composer, arranger, and producer, as well as an actor.Needs Votehttp://www.tenaciousrecords.com/https://en.wikipedia.org/wiki/Alphonse_Mouzonhttps://myspace.com/alphonsemouzonhttps://twitter.com/alphonsemouzonhttps://www.drummerworld.com/drummers/Alphonse_Mouzon.htmlA MouzonA. MouszonA. MouzonA.MousonA.MouzonAl MouzonAlfonse MousonAlfonse MouzonAlfonso MouzonAlphonae MouzonAlphonseAlphonse MouzouAlphonse MuozanAlphonse/MouzonAlphonso MouzonAlphonz MuzonAlphonze MouzonAlphonze MouzonyAlphonzo MouzonE. MouzonMouzonWeather ReportFania All StarsGil Evans And His OrchestraMouzon's Electric BandPassport (2)Poussez!TrilogueThe Eleventh HousePiano ConclaveAlphonse Mouzon BandFinal Notice (5)Alphonse Mouzon Quintet + +92243Pierre BoulezPierre Louis Joseph BoulezFrench composer, conductor, writer and organizer of institutions. +Born March 26, 1925 in Montbrison, France +Died January 5, 2016 in Baden-Baden, Germany (aged 90) + +He studied with Messiaen at the Paris Conservatoire (1942-1945) and privately with Andrée Vaurabourg and René Leibowitz, inheriting Messiaen's concern with rhythm, non-developing forms and extra-European music along with the Schönberg tradition of Leibowitz. The clash of the two influences lies behind such intense, disruptive works as his first two piano sonatas (1946, 1948) and Livre pour quatuor for string quartet (1949). The violence of his early music also suited that of René Char's poetry in the cantatas Le visage nuptial (1946) and Le soleil des eaux (1948), though through this highly charged style he was working towards an objective serial control of rhythm, loudness and tone colour that was achieved in the Structures for two pianos (1952). At this time he came to know Stockhausen, with whom he became a leader of the European avantgarde, teaching at Darmstadt (1955-67) and elsewhere, and creating one of the key postwar works in his Le marteau sans maître (1954). Once more to poems by Char, the work is for contralto with alto flute, viola, guitar and percussion: a typical ensemble of middle-range instruments with an emphasis on struck and plucked sounds. The filtering of Boulez's earlier manner through his 'tonal serialism' produces a work of feverish speed, unrest and elegance. + +In the mid-1950s Boulez extended his activities to conducting. By the mid-1960s he was appearing widely as a conductor, becoming chief conductor of the BBC Symphony Orchestra (1971-1974) and the New York Philharmonic Orchestra (1971-1978). Meanwhile his creative output declined. Under the influence of Mallarmé he had embarked on three big aleatory works after Le marteau, but of these the Third Piano Sonata (1957) remains a fragment and Pli selon pli for soprano and orchestra (1962) has been repeatedly revised; only a second book of Structures for two pianos (1961) has been definitively finished. Other works, notably Eclat/Multiples for tuned percussion ensemble and orchestra, also remain in progress, as if the openendedness of Boulez's proliferating musical world had committed him to incompleteness. Only the severe memorial Rituel for orchestra (1975) has escaped that fate. + +Since the mid-1970s Boulez has concentrated on his work as director of the Institut de Recherche et Coordination Acoustique/Musique, a computer studio in Paris where his main work has been "Répons" for orchestra and digital equipment.Needs Votehttps://en.wikipedia.org/wiki/Pierre_Boulezhttps://www.britannica.com/biography/Pierre-Boulezhttps://www.famouscomposers.net/pierre-boulezhttps://web.archive.org/web/20030803202120/https://www.sonyclassical.com/artists/boulez/https://www.sonyclassical.com/artists/artist-details/pierre-boulezhttps://www.naxos.com/Bio/Person/Pierre_Boulez/27094https://www.bach-cantatas.com/Bio/Boulez-Pierre.htmhttps://www.treccani.it/enciclopedia/pierre-boulez/https://www.imdb.com/name/nm0099518/BoulezP. BoulezБулезП. БулезПьер БулезПьерр БулезПјер Булезピエール・ブレーズピエール・ブーレーズブレーズEnsemble Intercontemporain + +92431Kai FranzKai FranzGerman Electronic musician, producer & DJ, born 17 January 1972 in Hannover, Germany. Worldwide renowned for his Trance & Acid music project, [a=Kai Tracid].Needs Votehttps://www.facebook.com/kaitracid.official/https://www.instagram.com/kai_tracidK. FranzKenji OguraKai TracidK (2)The AttractorFormic AcidArrowMac AcidTyrone T.B.Computer ControlledAcut GeniusKai MacDonaldAeon FXTek (2)W.O.W.Mac MusicChristian PhoenixTBA (5)ArrakisAngel Of DeathYodaPhase 2 FaceDer VerfallProto-TypeUnited Deejays For Central AmericaTarget24 HoursWizards Of SonicFarragoA*S*Y*SCryptonite X3D Dream MachineF*L*U*X + +92433Guido PernetGuido R. PernetNeeds VoteDernetG PernetG, PernetG.G. PemetG. PerentG. Pern17etG. PernetG. PernetlG. PernettG.PernatG.PernelG.PernetG.uido PernetGido R PernetGuidoPernetPernet, G.Pernet, GuidoPernet. G.Hyperion (7)NRG (2)Alex GumblerHuman ResourceOld School TerroristsPsycho KineticAltar Of SacrificeCyclopedeSource CodeClinoTerragonSimon CInsaneChaos Inc.B.S.E.NetworkAttractive FusionRevoxCardassia9-To-5The Oldschool NationFloor DivisionsDual MountDoctor DoomTribal ForceX-FilesClub RoyaleDymar & MaddoxThe MultidubbersHardcoretrancerDubSquadRegeSanctuaryBe-As-MeE.E.G.Last ResortThe Jokers (2)Sunny-Side-UpTrance FestivalFuture Shock (2)The Choir Boys (2)Boom DeviceSmoking PornstarsCold Turkey (2)Mac ProjectThe FirstMagic TricksNiso OmegaAmtraxxThe GraffCryogenicSydexDa' ChoiceSunset BoulevardBom SquadTelltale SignsAndroid (7)COM IIVincent Vega (5)Avalanche (15)Glowing Sounds Of DarknessSirius (32) + +92913Eddy LouissAlain Edouard LouiseFrench singer, organist, band leader and pianist, born 2 May 1941 in Paris, France, died 30 June 2015, France +Son of [a1308539] and father of [a4169155]Needs Votehttps://en.wikipedia.org/wiki/Eddy_Louisshttps://www.imdb.com/name/nm0521975/E. LouissE. LouissE.LouissEd. LouissEdd LouEddie LouisEddie LouiseEddie LouissEddie LouïssEddy LewisEddy LouisEddy LouiseEdy LouisElie DdouissLouissЭ. ЛуисЭдди ЛюисStan Getz QuartetLubat, Louiss, Engel GroupSol En SiBig Jullien And His All StarDaniel Humair SoultetBernard Lubat And His Mad DucksLes Double SixEuropean Jazz All StarsTrio HLPEddy Louiss TrioEddy Louiss Trio & Fanfare + +93460RT ProjectNeeds VoteRT ProjectsNativeQuakeBump 'n' GrindRob TisseraIan Bland + +93945LiberaThe singers of the boys choir Libera, who are aged seven to sixteen, attend different local schools in South London, they do not think of themselves as choirboys, but rather as an alternative kind of boy band.Needs Votehttps://libera.org.uk/https://www.facebook.com/OfficialLibera/https://twitter.com/officialliberahttps://www.youtube.com/user/OfficialLiberahttps://www.instagram.com/officiallibera/https://myspace.com/liberaofficialLibera Boys ChoirLinera Boys Choirリベラ天使之翼合唱团天使之翼合唱團리베라리베라 소년 합창단The St. Philip's Boys ChoirAngel Voices ChoirRobert PrizemanSam CoatesThomas CullyAlex BaronSteven GeraghtyLiam O'KaneEoghan McCarthyTadhg FitzgeraldThomas Cole (2)Adam Harris (11)Benedict BywaterDaniel White (13)Luke Collins (7)Frederick InglesLuke Batteson DalpiazNathan Slater (2)Morgan WiltshireMitchel GuyJoseph Hill (8)Classical Relief For Haiti + +94557John Lee HookerJohn Lee HookerAmerican blues singer-songwriter and guitarist. +Born: August 22, 1912 in Tutwiler, Tallahatchie County, Mississippi, USA. +Died: June 21, 2001 in Los Altos, California, USA. + +Some of his best known songs include "Boogie Chillen'" (1948), "Crawling King Snake" (1949), "Dimples" (1956), "Boom Boom" (1962), and "One Bourbon, One Scotch, One Beer" (1966). Several of his later albums, including The Healer (1989), Mr. Lucky (1991), Chill Out (1995), and Don't Look Back (1997), were album chart successes in the U.S. and UK. +Inducted into Rock And Roll Hall of Fame in 1991 (Performer). +Father of [a=John Lee Hooker, Jr.] (b. 1952 in Detroit, Michigan). Cousin of [a=Earl Hooker].Needs Votehttps://johnleehooker.comhttps://johnleehooker.bandcamp.com/https://en.wikipedia.org/wiki/John_Lee_Hookerhttps://www.imdb.com/name/nm0393630/https://www.johnleehooker.infohttps://www.facebook.com/JohnLeeHookerofficialhttps://www.youtube.com/johnleehookerofficialhttps://www.angelfire.com/mn/coasters/johnnielee.htmlhttps://www.johnleehooker.se/index.phphttps://www.allmusic.com/artist/john-lee-hooker-mn0000815039Chicago Blues BandHockerHoockerHooderHookenHookerHooker John LeeHooker, John LeeJ HookerJ L HookerJ Lee HookerJ- L. HookerJ. "Lee" HookerJ. 'Lee' HookerJ. C. HookerJ. HookerJ. L HookaJ. L HookerJ. L. HockerJ. L. HookerJ. L. HoookerJ. L.HookerJ. Lee HockerJ. Lee HookerJ.HookerJ.L HookerJ.L. HookerJ.L. HooperJ.L. Lee HookerJ.L.HookerJ.Lee HookerJL HookerJL. HookerJLHJhon Lee HookerJohn HookerJohn L. HookerJohn LeeJohn Lee BookerJohn Lee Booker (aka John Lee Hooker)John Lee Booker And His GuitarJohn Lee HockerJohn Lee HoockerJohn Lee Hooker & GuestsJohn Lee Hooker & His GuitarJohn Lee Hooker (Johnny Williams)John Lee Hooker And His GuitarJohn Lee Hooker and His GuitarJohn Lee Jr. HookerJohn Lee KookerJohnn Lee HockerJohnny Lee HookerL. HookerLee HookerSir John Lee HookerДжон Ли ХукерTexas SlimJohnny Williams (16)Boogie JohnJohnny Lee (19)The Boogie Man (6)Delta JohnBirmingham SamJohn Lee CookerJohn Lee Hooker & FriendsJohn Lee Hooker And His BandSantana With Friends + +94844Steve MorseSteven J. MorseSteven J. "Steve" Morse (born July 28, 1954) is an American guitarist, best known as the founder of the Dixie Dregs, and the guitar player in Deep Purple since 1994 until his departure from the band in July 2022. +Morse's career has encompassed rock, country, funk, jazz, classical, and fusion of these musical genres. In addition to a thriving solo career, he enjoyed a brief stint with Kansas in the mid 80s.Needs Votehttps://stevemorse.com/https://www.facebook.com/stevemorseguitar/https://www.famouscomposers.net/steve-morsehttps://en.wikipedia.org/wiki/Steve_Morsehttps://www.progarchives.com/artist.asp?id=383https://www.allmusic.com/artist/steve-morse-mn0000044134#discographyMorseS. MordeS. MorseS.MorseSteveSteven J. MorseSteven Morseスティーヴ・モーススティーヴ・モーズMo St. SevereDeep PurpleKansas (2)Dixie DregsSteve Morse BandLiving LoudFlying ColorsThe Prog World OrchestraThe Fusion SyndicateG3 (6)Dick PimpleSteve Morse TrioBiff Baby's All Stars + +94855Tara ReynoldsUK Hard Dance DJ & Producer. +Originally from Kyabram in Victoria, arrived in London in 1995 to become an international hard dance dj. +Needs VoteT. ReynoldsT.Reynolds + +95088Ron CarterRonald Levin CarterAmerican bassist, cellist, and composer born May 4, 1937 in Ferndale, Michigan, USA +One of the most recorded bassists in history, he was elected to the DownBeat Jazz Hall of Fame in 2012.Correcthttps://roncarter.net/https://myspace.com/roncarterhttps://en.wikipedia.org/wiki/Ron_Carterhttps://adp.library.ucsb.edu/names/307458CarterR CarterR, CarterR. CarterR.C.R.CarterRoland M. CarterRonRon "She's Gone" CarterRon CRon C.Ron Carter Foursight QuartetRonald CarterRonald Carter, Sr.Ronald L. Carterr. CarterРон Картерロン・カーターGil Evans And His OrchestraGary Bartz NTU TroopArtists United Against ApartheidJunior Mance TrioThe Miles Davis QuintetThe Jazz Composer's OrchestraChet Baker QuartetThe Gildo Mahones QuartetTadd Dameron And His OrchestraJim Hall / Ron Carter DuoThe Charles Lloyd QuartetStan Getz QuartetBarry Harris TrioThe Bobby Timmons TrioThe Ernie Wilkins OrchestraRoland Hanna TrioMilt Jackson OrchestraMilt Jackson SextetThe V.S.O.P. QuintetNew York Jazz QuartetCTI All-StarsThe Classical Jazz QuartetThe New York Bass Violin ChoirGeri Allen TrioToshiko Akiyoshi QuintetJoe Henderson SextetThe Great Jazz TrioSteve Kuhn TrioDon Friedman TrioMcCoy Tyner QuartetContinuum (5)The Jazz Interactions OrchestraGeorge Russell OrchestraThe American Jazz OrchestraBill Evans QuintetThe Johnny Griffin QuartetRon Carter SextetRon Carter TrioWynton Kelly TrioHarold Mabern TrioThe Mal Waldron SextetHerbie Hancock TrioThe Charles Bell Contemporary Jazz QuartetJoe Henderson QuartetThe Ron Carter NonetCharles Tolliver And His All StarsThe Great QuartetRon Carter QuartetThad Jones / Pepper Adams QuintetThe Master TrioFrank Morgan QuartetThe Riverside Jazz StarsMichal Urbaniak QuartetChet Baker GroupSam Jones & Co.Charlie Persip's Jazz StatesmenThe Gotham Jazz OrchestraRon Carter / Cedar Walton DuoTed Rosenthal TrioFriedrich Gulda Und Sein Eurojazz-OrchesterThe Riverside Reunion BandThe Rocky Boyd QuintetBill Easley SextetSweet Basil TrioGerry Gibbs Thrasher Dream TrioJon Mayer TrioThree's Company (2)Benny Golson QuartetThe Art Of ThreeEric Reed TrioTrio SupremeThe James Williams All-StarsGonzalo Rubalcaba TrioMichel Legrand & Co.Charles Thomas All Star TrioThe Super Premium BandMonk's TrioThe Quartet LegendJim Hall QuintetRon Carter's Great Big BandHubert Laws SeptetHubert Laws Quartet + +95204Dave CrossDave CrossNeeds VoteD.CrossDavid CrossD-BopDaxKobayashi Maru + +95459Svend AsmussenSvend Harald Christian Asmussen(born February 28, 1916, Copenhagen, Denmark - died February 7, 2017, Dronningmølle, Denmark). + +Danish jazz violinist whose career spanned 8 decades before retiring in 2010. Father of guitarist [a753836]. + +Asmussen made his professional debut in 1933 and his first recording as a leader in 1935. From 1937, he became a full-time musician. From the early 1940s he was also active as an actor in films and on stage, mainly in comedies. In 1945, he formed a sextet and toured Europe as a jazz artist, while continuing to make music for films, radio and TV - and from the 1950s toured and recorded with [a890916]. When American jazz artists moved to Copenhagen he formed groups with [a254400] and [a251779].Needs Votehttps://en.wikipedia.org/wiki/Svend_AsmussenAsmussenAsmussen SvendS AsmussenS. AsmussenS.AsmussenSV. AsmussenSv. AsmussenSv.AsmussenSven AsmussenSven AssmussenSvendSvend "Violin" AsmussenSvend "Violine" AsmussenSvend AsmundsenSvend Asmussen Og Hans OrkesterSvend Asmussen U. S. Beschwingten ZaubergeigenDavid Grisman QuintetThe Swe-DanesSvend Asmussen / Ed Thigpen QuartetSvend Asmussen And His Swinging StringsSvend Asmussen And His Unmelancholy DanesSvend Asmussen SextetSvend Asmussens OrkesterSvend Asmussen And His Orchestra And ChorusSvend Asmussens KvartetSvend Asmussens Skandia TrioSvend Asmussen QuartetKai Ewans Og Hans OrkesterSvend Asmussens KvintetSvend Asmussen Og Hans "Arena" KvintetSvend Asmussen & The Rock-o-linsSvend Asmussens DrömkvintettSvend Asmussen & The Twist-o-linsSvend Asmussen Cuban BandSvend Asmussens Cuban BandArthur Young And His Danish FriendsSvend Asmussen Og Hans Swing-QuintetAsmussen TrioenSønstevolds Swing Four + +95536Jules MassenetJules Émile Frédéric MassenetProlific French composer, born 12 May 1842 in Montaud (near Saint-Étienne), France and died 13 August 1912 in Paris, France. +He studied composition with [a833579] and [a555462] and won a Grand Prix de Rome in 1863. Massenet concentrated his career on writing operas expressing mainly tender feelings and staging historical heroes and (especially) heroines. He wrote 27 operas including Le Roi de Lahore (1877), Manon (1884), Le Cid (1885), Werther (1892) and Thaïs (1894). In 1878 he was appointed professor of composition at the Paris conservatory; among his pupils are the composers [a961400], [a1071292], [a663502], [a1546882], [a1915780], [a948986], [a3462373], [a1945407], [a1915782], [a838226] and [a1269383]. +Needs Votehttps://www.klassika.info/Komponisten/Massenet/index.htmlhttps://en.wikipedia.org/wiki/Jules_Massenethttps://www.britannica.com/biography/Jules-Massenethttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103068/Massenet_JulesG. MassenetG. МаssenetGilles MassenetGiulio MassenetI. MassenetJ MassenetJ. MassenetJ. E. F. MassenetJ. E. MassenetJ. MassanetJ. MassenerJ. MassenetJ. MassenetoJ. MassentJ. MassnetJ. É. MassenetJ.E.F. MassenetJ.MassenetJ.マスネJules E. F. MassenetJules E.F. MassenetJules Emile Frederic MassenetJules Emile Frédéric MassenetJules MasenetJules MasinetJules MassanetJules MasseneJules MassnetJules Émile Frédéric MassenetJules-E-F. MassenetJules-MassenetJuliusz MassenetMASSENETMAssenetMasneMassanetMasseenetMassenentMassenetMassenet J.Massenet JulesMassenet,Massenet, JulesMassenet-ArnoldMasseneteMassenettMassennetteMassentMasseretMassnetMessenetŽ. MasneŽil MasneŽils MasnēΜασενέЖ. МааснеЖ. МаснеЖ. МассенеЖ. МассенэЖ. МасснеЖ. МасснэЖ.МасснеЖ.МасснэЖил МаснеЖул МаснеЖюль МасснеЖюль МессенеМасенэМаснеМаснэМассенеМассенетМассенэМасснеМасснэז'ול מאסנהジュール・エミル・フレデリック・マス衤ージュール・マスネジュール・マスネマスネマスネー馬斯奈 + +95537Johann Sebastian BachJohann Sebastian BachJohann Sebastian Bach was born on March 21, 1685 in Eisenach, Thuringia, Germany. A prolific German composer and organist, his sacred and secular works for choir, orchestra and solo instruments drew together the strands of the baroque genre and brought it to its ultimate maturity. Although he introduced no new forms, he enriched the prevailing German style with a robust contrapuntal technique, a control of harmonic and motivic organisation from the smallest to the largest scales, and the adaptation of rhythms and textures from abroad, particularly Italy and France. Many people consider him to be the greatest Baroque composer, and one of the greatest composers of all time. From 1723 until his death he was Thomascantor at Leipzig. + +In a scholarly context, the appearance of [u]“BWV” on phonographic works[/u]—regardless of audio formats—signals far more than a simple catalog reference. It functions as a formal academic designation that situates Johann Sebastian Bach’s music firmly within the framework of modern musicology. Established in the mid-20th century through the [u]Bach-Werke-Verzeichnis[/u], BWV numbers provide a standardized system that allows scholars, performers, and listeners to identify, compare, and study Bach’s compositions with precision and consistency. + +Revered for their intellectual depth, technical command and artistic beauty, J.S. Bach's works include the Brandenburg concertos, the keyboard suites and partitas, the Mass in B Minor, the St. Matthew Passion, The Musical Offering, The Art of Fugue and a large number of cantatas, of which about 220 survive. He died on July 28, 1750. + +Some of his sons also became composers - [a=Carl Philipp Emanuel Bach], [a=Johann Christian Bach], [a=Wilhelm Friedemann Bach] and [a=Johann Christoph Friedrich Bach].Needs Votehttps://www.bach.de/https://en.wikipedia.org/wiki/Johann_Sebastian_Bachhttps://www.britannica.com/biography/Johann-Sebastian-Bachhttps://www.klassika.info/Komponisten/Bach/index.htmlhttps://www.biography.com/musician/johann-sebastian-bachhttps://adp.library.ucsb.edu/names/102304https://www.youtube.com/watch?v=4SLXsCF0UyI(J. S. Bach(Johann Sebastian) Bach.S.バッハA. M. BachBACHBacg'BachBach (J.S.)Bach / BusoniBach Cello Suite In G MajorBach J SBach J. - S.Bach J. S.Bach J.-S.Bach J.S.Bach Jean-SébastienBach Joh. Seb.Bach Johann SebastianBach ViolinkonzertBach [?]Bach, J SBach, J. S.Bach, J.SBach, J.S.Bach, JSBach, Johann SebastianBach-Bach. Johann SebastianBach/Bach:Bach?BachasBachlBackBahBahsBashCapsD.P. BachDaquinDietrich BuxtehudeE.BachG. S. BachG. Seb. BachG.-S. BachG.S. BachGiov. Seb. BachGiovanni Sebastiano BachHelmut WalchI. S. BachI. S. BachasI.BachI.M. BachI.S. BachI.S. BashI.S.BachIohann Sebastian BachJ S. BachJ . S . BachJ .S .BachJ / S / BachJ S BachJ S BachJ S Bach - GounodJ S Bach:J S. BachJ S:BachJ-S BachJ-S-BachJ-S. BachJ. & S. BachJ. - S. BachJ. -S. BachJ. B BachJ. B. BachJ. BachJ. BahsJ. S BachJ. S . BachJ. S .BachJ. S BachJ. S, BachJ. S.J. S. BachJ. S. BACHJ. S. BabcJ. S. BachJ. S. Bach (?)J. S. Bach ?J. S. Bach?J. S. BachasJ. S. BachsJ. S. BackJ. S. BahJ. S. BahsJ. S. BaschJ. S. BashJ. S. bachJ. S. バッハJ. S.BachJ. S: BachJ. Seb. BachJ. Sebastian BachJ. Sebastien BachJ. Sebastián BachJ.- S. BachJ.-.S BachJ.-S. BachJ.-S. bachJ.-S.BachJ.-Sebastian BachJ.A. BachJ.B. BachJ.BachJ.C. BachJ.D. BachJ.H. BachJ.S BachJ.S" BachJ.S, BachJ.S,BachJ.S.J.S. BachJ.S. BACHJ.S. BachJ.S. Bach - GounodJ.S. Bach,J.S. BachiJ.S. BackJ.S. BahJ.S. BahsJ.S. BashJ.S. bachJ.S. バッハJ.S.B.J.S.BACHJ.S.BachJ.S.Bach*J.S.Bach,J.S.Bach.J.S.BachasJ.S.BahsJ.S.バッハJ.S.巴赫J.S: BachJ.SbachJ.Seb. BachJ.Sebastian BachJ.s BachJ.s. BachJ.s.BachJ/S/BachJSJS BachJS BachlJS. BachJSBJSBachJan S. BachJan Sebastian BachJan-Sébastien BachJean Sebastian BachJean Sebastien BachJean Sebstien BachJean Sébastian BachJean Sébastien BachJean- Sébastien BachJean-SEbastien BachJean-Sebastian BachJean-Sebastien BachJean-Sebastién BachJean-Sèbastien BachJean-Sébastian BachJean-SébastienJean-Sébastien BachJean-Sébastien BachJean-Sébastien Bach :Jean-Sébastien Bach BachJean-Sébastien BarchJean-Sébastien bachJean-Sébastin BachJean-Sébastion BachJean-Sébastíen BachJean-sebastien bachJean.Sebastien BachJean.Sébastien BachJean:Sebast:Bach:Joahnn Sebastian BachJoan Sebastià BachJoao Sebastiao BachJochann Sebastian BachJoh Seb. BachJoh. S. BachJoh. Seb . BachJoh. Seb BachJoh. Seb. BachJoh. Seb.BachJoh. Sebas, BachJoh. Sebas. BachJoh. Sebast. BachJoh. Sebastian BachJoh. Sebastion. BachJoh. Sebatian BachJoh.Seb. BachJoh.Seb. Bach.Joh.Seb.BachJoh.Sebastian BachJoh: Seb: BachJoh: Sebas: BachJoh: Sebas: Bach.Joh: Sebast: BachJoh: Sebast: Bach:Joh:Seb:BachJoh:Sebast: BachJoh:Sebast:BachJoh:Sebast:Bach.Johan S. BachJohan Sebastiaan BachJohan Sebastian BachJohan Sebastijan BahJohan-Sebastian BachJohanSebastian BachJohann BachJohann Electronics BachJohann S BachJohann S. BachJohann Seb. BachJohann Sebastain BachJohann Sebastiaan BachJohann SebastianJohann Sebastian B.Johann Sebastian Bach /Johann Sebastian Bach?Johann Sebastian BachsJohann Sebastien BachJohann Sebastion BachJohann Sebastián BachJohann Sébastian BachJohann Sébastien BachJohann-Sebastian BachJohann-Sebastien BachJohann-Sébastian BachJohann-Sébastien BachJohanna Sebastian BachJohanne Sebastian BachJohannes S. BachJohannes Sebastian BachJohannes Sébastien BachJohans Sebastiāns BahsJohhan Sebastian BachJohn Sebastian BachJohnny B.Juan S. BachJuan Sebastian BachJuan Sebastián BachJuan-Sebastian BachJ·S BachJ·S·BachJ•S•BachJ・S・バッハM. BachS. BachSeb. BachSebastian BachSebastián BachTostiTraditionalV. BachbachiBachj. S. BachΓ. Σ. ΜπαχΓιόχαν Σεμπάστιαν ΜπαχІ. С. БахІ.С. БахЈ. С. БахЈ.С. БахЈохан Себастијан БахБахБах И. С.Бах И.С.Бах Иоганн СебастьянБахаИ С. БахИ. -С. БахИ. C. БaxИ. C. БахИ. X. БахИ. БахИ. С БахИ. С. БАХИ. С. БахИ. С. Бах (1685-1750)И. С. Бах / Bach J. S.И. С. Бах = J. S. BachИ. С. бахИ. С.БахИ. Х. БахИ.-С. БахИ.C. БахИ.C.БахaИ.БахИ.С. БахИ.С.БахИога́нн Себастья́н БахИоган Себастьян БахИоганн БахИоганн Себастиан БахИоганн Себастьян БахИоганн Себастьян бахИоганн Севастьян БахИоганн-Себастьян БахЙ. С. БахЙ.-С. БахЙ.С. БахЙ.С.БахЙоган Себастьян БахЙоганн Себастьян БахЙохан Себастиан Бахבאךי. ס. באךי.ס. באךי.ס.באךיוהאן סבסטיאן באךיוהן סבאסטיאן באךיוהן סבסטיאן באךセバスチャン・バッハバッハパッハヨハン・セバスティアン・バッハヨハン・セバスティャン・バッハヨハン・ゼバスティアン・バッハヨハン・セバスティアン・バッハ巴哈巴赫约翰·塞巴斯蒂安·巴赫바흐 + +95539Erik SatieAlfred Éric Leslie SatieFrench composer and pianist, born May 17, 1866 in Honfleur, France, died July 1, 1925 in Arcueil, France. + +A colourful figure in the early 20th century Parisian avant-garde, he referred to himself as a "phonometrograph" or "phonometrician" (meaning "someone who measures (and writes down) sounds"), preferring this designation to that of "musician," after having been called "a clumsy but subtle technician" in a book on contemporary French composers published in 1911. +Later, from the 1940s on, predominantly [a=John Cage] presented Satie's work as that of an inventor of a new and modern musical expression, and so he was slowly rediscovered and became a precursor to artistic movements such as minimalism, repetitive music, ambient (called "Furniture Music" by Satie) and the Theatre of the Absurd. +In addition to his body of music, Satie also left a remarkable set of often humorous and witty writings.Needs Votehttps://www.erik-satie.com/https://www.facebook.com/eriksatiesite/https://en.wikipedia.org/wiki/Erik_Satiehttps://www.imdb.com/name/nm0006273/https://www.britannica.com/biography/Erik-Satiehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102611/Satie_ErikAlfred Erik Leslie SatieAlfred Leslie Erik SatieE SatieE. SartiE. SatiE. SatieE.SatieEric SatiEric SatieErick SatieErik Alfred Leslie SatieErik Alfredi Le SatieErik Alfredi Leslie SatieErik SaitieSatiSatieSatie ErikSatie, ErikSatéÉric SatieÉrik SatieЕрик СатиСатиЭ. СатиЭрик Сатиエリックサティエリック・サティサティサティー埃里克·萨蒂 + +95540Jacques OffenbachJacob OffenbachGerman-born French composer and cellist of the Romantic era and one of the originators of the operetta form, born 1819-06-20 in Cologne, Germany, died 1889-10-05 in Paris, France. +Of German-Jewish ancestry, he was one of the most influential composers of popular music in Europe in the 19th century, and many of his works remain in the repertory. + +Offenbach's numerous operettas, such as «Orphée aux enfers» (Orpheus in the Underworld) and «La belle Hélène», were extremely popular in both France and the English-speaking world during the 1850s and 1860s. +They combined political and cultural satire with witty grand opera parodies. His popularity in France went down during the 1870s after the Second Empire, and he fled France, but during the last years of his life, his popularity rebounded, and several of his operettas are still performed. +While his name remains associated most closely with the French operetta and the Second Empire, it is Offenbach's one fully operatic masterpiece, «Les contes d'Hoffmann» (The Tales of Hoffmann), composed at the end of his career, that has become the most familiar of Offenbach's works in major opera houses. +Offenbach was music director of the [a=Comédie-Française] for 7 years.Needs Votehttps://web.archive.org/web/20231207234944/http://www.offenbachsociety.org.uk/http://www.offenbach-edition.de/https://en.wikipedia.org/wiki/Jacques_Offenbachhttps://www.imdb.com/name/nm0006220/https://www.britannica.com/biography/Jacques-Offenbachhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102760/Offenbach_JacquesD'apres OffenbachH. OffenbachHofenbachHoffenbachI. OffenbachJ OffenbachJ. OffenbachJ. OffenbachJ. オッフェンバックJ.OffenbachJ.S. OffenbachJ.オッフェンバックJac. OffenbachJacob OffenbachJacq. OffenbachJacqu OffenbachJacque OffenbachJacques A.I. OffenbachJacques Auguste Igna OffenbachJacques Auguste OffenbachJacques L. OffenbachJacques Offenbach (1819-1880)Jacques S. OffenbachJacquos OffenbachJakub OffenbachJaques OffenbachJaques OffenbackJean Jacques OffenbachJules OffenbachM. J. OffenbachM.J. OffenbachOfeenbachOfenbachOfenbahOffembacchOffembachOffen BachOffenbachOffenbach J.Offenbach JacquesOffenbach'sOffenbach, JacquesOffenbach-RosenthalOffenbackOffenbergOffencachOfferbachOffnbachOphenbachPffembacjoffenbachŽ. OfenbachasŽ. OfenbahŽ. OfenbahsŽ.OfenbahsΖακ ΌφενμπαχЖ. ОффенбахЖак ОфенбахЖак ОффенбахОфенбахОффенбахШ. Оффенбахオッへンバッハオッフェンバックオッフェンバッハジャック・オッフェンバックジャック・オフェンバック = Jacques Offenbach奥芬巴赫Jacob (42) + +95541Tomaso AlbinoniTomaso Giovanni AlbinoniVenetian Baroque composer (born June 8, 1671, Venice, Republic of Venice - died January 17, 1751, Venice, Republic of Venice).Needs Votehttps://en.wikipedia.org/wiki/Tomaso_Albinonihttps://www.britannica.com/biography/Tomaso-Giovanni-Albinonihttps://www.bach-cantatas.com/Lib/Albinoni-Tomaso.htmA. AlbinoniALBINONIAl BeinooniAlbignoniAlbignoni TommasoAlbinioniAlbinonAlbinon'AlbinoneAlbinoniAlbinoni (Giazotto)Albinoni T.Albinoni TomasoAlbinoni TommasoAlbinoni, T.Albinoni, TomasoAlbinoni, Tomaso GiovanniAlbinoni, TommasoAlbinoni-GiazottoAlbinonin mukaanAlbioniAlbloniD. T. AlbinoniF. AlbinoniFormerly Attributed To: Tomaso AlbinoniGiovanni Tomaso AlbinoniSignor Tomaso AlbinoniT AlbinoniT G AlbinoniT. AlbinoniT. AlbignoniT. AlbingioniT. AlbinioT. AlbinoniT. AlbinonisT. AlbioniT. G. AlbinoniT. アルビノーニT.AlbinoniT.G. AlbinoniTammaso AlbinoniTelemannTh. AlbinoniThomas AlbinoniThomasio AlbinoniThomaso AlbinoniThomasso AlbinoniTomasi AlbioniTomaso AlbioniTomaso AlvinoniTomaso Giovanni AlbinoniTomaso Giovanni AlbioniTomasso AlbinoniTomazo AlbinoniTommaco AlbinoniTommasa AlbinoniTommaso AlbinoniTommaso AlbinoniTommaso AlbioniTommasso AlbinoniАльбинониАльбиониАльбіоніТ. АlbinoniТ. АлбинониТ. АльбинониТ. АльбиониТ. АльбіноніТ. Дж. АльбинониТ.АльбіоніТомазо АльбинониТомазо АльбиониТомазо Альбіноніאלבונוניאלבינוניאלביניוניالبينونىアルビノーニトマゾ・アルビノーニ + +95542Edvard GriegEdvard Hagerup GriegNorwegian composer and pianist, born in Bergen, 15 June 1843, died 4 September 1907, also in Bergen. By borrowing rhythmic and melodic elements from Norwegian folk music, he created nationally romantic and patriotic music. Most famous are perhaps his compositions for the play "Peer Gynt" (written by Henrik Ibsen), which features pieces such as "Morning Mood" and "In The Hall of The Mountain King". Edvard Grieg is considered to be the greatest Norwegian composer of all time.Needs Votehttps://en.wikipedia.org/wiki/Edvard_Grieghttp://www.mnc.net/norway/EHG.htmhttps://www.famouscomposers.net/edvard-grieghttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102344/Grieg_EdvardA. GrigE GriegE, GriegE. GreigE. GriegE. GrigE. GrigasE. GroegE. GrygasE. GrīgsE. H. GriegE. H. GriegE. griegE. グリーグE.GriegE.H. GriegE.H.GriegE.グリーグEd. GriegEddy GriegEdouard GriegEduard GriegEduardo GriegEdv GriegEdv. GriegEdv. GrundtvigEdvard (Hagerup) GriegEdvard G. GriegEdvard GreigEdvard GrigEdvard H GriegEdvard H. GriegEdvard Haagerup GriegEdvard Hagerup GriegEdvard Hargerup GriegEdvard Hegerup GriegEdvard Hgerup GriegEdvard-Hagerup GriegEdvards GrīgsEdw. GriegEdward GreigEdward GriegEdward GriekEdward Hagerup GriegEdward KriegEdwart GriegEvard GriegEvard Hegerup GriegE・H・グリーグF. GriegGRIEGGreiegGreigGrieffGriegGrieg (Edvard Hagerup)Grieg E.Grieg E. H.Grieg E.H.Grieg EdvardGrieg Edvard HagerupGrieg, E.Grieg, EdvardGrieg, Edvard HagerupGrieg-PeerGriesGrietGrigGrigeGriégM. GrieggriegΓκριγκГригГриг Э.Григ ЭдвардГригаГрігЕ. GriegЕ. ГрiгЕ. ГригЕ. ГрігЕд. ГригЕдвард ГригЕдвард ГрігЕдуард ГригЗ.ГригаЭ. ГригЭ. Григ.Э.ГригЭдвард Григエドゥヴァルト・グリーグエドヴァルド・ グリーグエドヴァルド・グリーググリークグリーグ葛利格葛立格Bergen Filharmoniske Orkester + +95543Alexander BorodinАлександр Порфирьевич Бородин (Alexander Porfiryevich Borodin)Russian chemist and romantic composer, born St Petersburg, October 31, 1833, died February 17, 1887. Probably his best-known work is the opera "Prince Igor" which was unfinished at the time of his death; his other great legacy is the founding of the St Petersburg School Of Medicine For Women.Needs Votehttps://en.wikipedia.org/wiki/Alexander_Borodinhttps://www.britannica.com/biography/Aleksandr-Borodinhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102921/Borodin_Aleksandr_PorfirevichA, BorodinasA. BordinA. BorinA. BorodinA. BorodinasA. BorodineA. BorodinsA. BorodínA. BorogyinA. P. BorodinA. P. Borodin(e)A. БородинA. БородинаA.BorodinA.BorodineA.P. BorodinA.P.BorodinAl. BorodinAlejandro BorodinAleksandar BorodinAleksandar Porfirjević BorodinAleksander BorodinAleksander BorodineAleksandr BorodinAleksandr P. BorodinAleksandr Porfirevich BorodinAleksandr Porfirievic BorodinAleksandr Porfirievitch BorodineAleksandr Porfiryevich BorodinAleksandras BorodinasAleksandre BorodinAleksandre Porfirevich BorodinAlekszandr Porfirjevics BorogyinAlex. P. BorodinAlexandar BorodinAlexander Borodin / Александр БородинAlexander BorodineAlexander BorondinAlexander P, BorodinAlexander P. BorodinAlexander P. BorodinAlexander P.BorodinAlexander Porfir'Yevich BorodinAlexander Porfir'evich BorodinAlexander Porfir'yevich BorodinAlexander Porfir'yevitch BorodinAlexander Porfir-yevich BorodinAlexander Porfirevich BorodinAlexander Porfiriévitch BorodinAlexander Porfiriévitch BorodineAlexander Porfirjevich BorodinAlexander Porfirjevič BorodinAlexander Porfirjewitsch BorodinAlexander Porfiryevich BorodinAlexander Porfir´Yevich BorodinAlexander Porfyrjevič BorodinAlexander Porphyrevich BorodinAlexander Porphyrievich BorodinAlexander Profir'evich BorodinAlexander Profirjewitsch BorodinAlexandr BorodinAlexandr Porfirievic BorodinAlexandr Porfirjevic BorodinAlexandr Porfirjevitsj BorodinAlexandr Porfirjevič BorodinAlexandr Porfiryevich BorodinAlexandre BorodinAlexandre BorodineAlexandre BoródineAlexandre P. BorodineAlexandre Porphyrievitch BorodineAndre BorodinAreksandr. BorodinB. BorodinBaradineBaredineBordinBorodiaBorodinBorodin A.Borodin Aleksandre PorfirevichBorodin AlexanderBorodin Alexander P.Borodin, A.Borodin, AleksandrBorodin, AlexsandrBorodineBorodine A.BorodingBorodiniBorodinoBorodoniBorodyinBorodínBorogyinBoródineIgor BorodinP. A. BorodinP. BorodinА. БородинА. БородинаА. БородинъА. П. БородинА. бородинА.BorodinА.БородинА.П. БородинАл. БородинАлександр БородинАлександр П. БородинАлександр Порфирьевич БородинАлександър БородинБородинБородин А. П.БородинаБородинъБородінИ. БородинО. Бородінアレクサンドル・ボロディンアレクサンドル・ポルフィリエヴィチ・ボロディンボディンボロディン + +95544Ludwig van BeethovenLudwig van BeethovenGerman composer and pianist, born in 1770 (baptized 17 December 1770) in Bonn, Electorate of Cologne and died 26 March 1827 in Vienna, Austrian Empire. +A crucial figure in the transition between the Classical and Romantic eras in classical music. Beethoven led Viennese Classicism to its highest development and paved the way for Romantic music. + +Beethoven was the eldest son of a singer in the Kapelle of the Archbishop-Elector of Cologne and grandson of the Archbishop's Kapellmeister. He moved in 1792 to Vienna, where he had some lessons from Haydn and others, quickly establishing himself as a remarkable keyboard-player and original composer. By 1815 increasing deafness made public performance impossible and accentuated existing eccentricities of character, patiently tolerated by a series of rich patrons and his royal pupil the Archduke Rudolph. + +Beethoven did much to enlarge the possibilities of music and widen the horizons of later generations of composers. To his contemporaries he was sometimes a controversial figure, making heavy demands on listeners both by the length and by the complexity of his writing, as he explored new fields of music.Needs Votehttps://www.beethoven.de/https://lvbeethoven.com/https://en.wikipedia.org/wiki/Ludwig_van_Beethovenhttps://www.klassika.info/Komponisten/Beethoven/https://www.britannica.com/biography/Ludwig-van-Beethovenhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102527/Beethoven_Ludwig_vanhttps://www.allmusic.com/artist/ludwig-van-beethoven-mn0000536126BEETHOVENBeeshovenBeeth.BeethofenBeethovanBeethovaniaBeethoveBeethoveenBeethovenBeethoven - БетховенBeethoven L.Beethoven L. VanBeethoven L. v.Beethoven L. vanBeethoven L.V.Beethoven LudwigBeethoven Ludwig VanBeethoven Ludwig vanBeethoven Van L.Beethoven Van LudwigBeethoven'sBeethoven, L. vanBeethoven, L.V.Beethoven, Ludvig VanBeethoven, Ludwig VanBeethoven, Ludwig vanBeethoven, Ludwig vonBeethoven, van LudvigBeethoven,L.V.BeethovianaBeethowenBeetovenBethofenBethovenBethovenaBethovenasBetovenDebussyI.Ivan BIvan B.L BeethovenL V BeethovenL Van BeethovenL v BeethovenL v. BeethovenL van BeethovenL von BeethovenL-V-BeethovenL. BeethovenL. BethovenL. BethovenasL. BetovenL. BēthovensL. V . BeethovenL. V BeethovenL. V. BEETHOVENL. V. BeethovenL. V. BethovenL. V. BetovenL. V. ベートーヴェンL. V.BeethovenL. Van B.L. Van BeethovenL. Van BethovenL. Van BethovenasL. Van BetovenL. Van BēthovensL. Von BeethovenL. W. BeethovenL. W. BethowenL. v BeethovenL. v. BeethiovenL. v. BeethovenL. v. BetovenL. v. BetthovenL. v.. BeethovenL. v.BeethovenL. van B.L. van BeethovenL. van BethovenL. van BethovenasL. van BethovensL. van BetovenL. van BēthovensL. van. BeethovenL. von BeethovenL.-V. BeethovenL.BeethovenL.V BeethovenL.V. BeethovenL.V. BetovenL.V.BeethovenL.V.BethoveenL.V.BetovenL.V.BēthovensL.V.ベートーベンL.Van BeethovenL.Von BeethovenL.W. BeethovenL.W. van BeethovenL.g van BeethovenL.v BeethovenL.v. BeethovenL.v.BeethovenL.v.ベートーヴェンL.van BeethovenL.w. BeethovenLV BeethovenLouis van BeethovenLudovico Von BeethovenLudqig Van BeethovenLudvig V. BeethovenLudvig Van BeethovenLudvig Van BetovenLudvig Von BeethovenLudvig van BeethovenLudvig van BetovenLudvig von BeethovenLudvigs van BēthovensLudw. V. BeethovenLudw. Van BeethovenLudw. van BeethovenLudwick van BeethovenLudwigLudwig BeethovenLudwig V. BeethovenLudwig VanLudwig Van B.Ludwig Van BeethofenLudwig Van BeethoveenLudwig Van BeethovenLudwig Von BeethovenLudwig v. BeethovenLudwig van BeethofenLudwig van BeethovenLudwig van Beethoven (1770 - 1827)Ludwig von BeethovenLudwig von DouchebagLudwig-Van BeethovenLudwik van BeethovenLudwin van BeethovenLudwing van BeethovenLuis Van BeethovenLv BeethovenLv. BeethovenLvBV. BeethovenV. Beethoven, L.V.BeethovenVan BeethovenVan Beethoven LudwigVan Beethoven, LudwigW.A. Beethovenbeethovenv. Beethovenv.Beethovenvan Beethovenvan Beethoven, L.van Beethoven, LudwigΜπετόβενБетховенБетховен Людвиг ВанВ. БетховенЛ. БетговенЛ. БетовенЛ. БетховенЛ. Бетховен,Л. В. БетховенЛ. Ван БетховенЛ. в. БетховенЛ. ван БетховенЛ.БетовенЛ.БетховенЛ.В. БетовенЛ.В. БетховенЛ.В.БетховенЛудвиг Ван БетовенЛудвиг ван БетовенЛудвиг ван БетховенЛюдвиг БетховенЛюдвиг В. БетховенЛюдвиг Ван БетовенЛюдвиг Ван БетховенЛюдвиг в. БетховенЛюдвиг ван БетховенЛюдвіг ван БетховенЛюдиг ван Бетховенבטהובןל. ו. בטהובןל. ואן בטהובןبتهوفنبتهوونبيتهوفنبيتهوڤنلودويگ وان بتهوونلودویگ وان بتهوونベートヴェンベートーウェンベートーベンベートーヴェベートーヴェンベートーヴェン = Beethovenルートヴィッヒ・ヴァン・ベートーヴェンルートヴィヒ·ヴァン·ベートーヴェン = Ludwig van Beethovenルートヴィヒ・ヴァン・ベートーベンルートヴィヒ・ヴァン・ベートーヴェンルートヴィヒ・ヴァン・ベートーヴェン = Ludwig van Beethovenルートヴィヒ・ヴァン・ベートーヴェンルードヴィヒ・ヴァン・ベートーヴェンヴェートーヴェン貝多芬贝多芬루드비히 반 베토벤베토벤 + +95546Wolfgang Amadeus MozartJohannes Chrysostomus Wolfgangus Theophilus MozartProlific and highly influential composer of classical music, born on January 27, 1756 in Salzburg, died December 5, 1791 in Vienna. +Son of [a=Leopold Mozart]. His enormous output of more than six hundred compositions includes works that are widely acknowledged as pinnacles of symphonic, chamber, piano, operatic, and choral music. Mozart is among the most enduringly popular of European composers, and many of his works are part of the standard concert repertoire. + +Married to [a=Constanze Mozart]. +He has two children who are musicans too. The first child Karl Thomas Mozart and his last son before his death [a=Franz Xaver Wolfgang Mozart].Needs Votehttps://en.wikipedia.org/wiki/Wolfgang_Amadeus_Mozarthttps://mozarteum.at/https://www.facebook.com/StiftungMozarteum/https://www.instagram.com/stiftungmozarteum/https://www.youtube.com/user/StiftungMozarteumhttps://wolfgang-amadeus-mozart.bandcamp.com/https://twitter.com/MozartAmadeus_https://soundcloud.com/mozarthttps://www.youtube.com/c/WolfgangAmadeusMozart-YouTubeChannelhttps://www.famouscomposers.net/wolfgang-amadeus-mozarthttps://www.britannica.com/biography/Wolfgang-Amadeus-Mozarthttps://www.treccani.it/enciclopedia/wolfgang-amadeus-mozart/https://www.operadis-opera-discography.org.uk/CLORMOZA.HTMhttps://www.imdb.com/name/nm0003665/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102711/Mozart_Wolfgang_Amadeus? MozartA. MozartA.モーツァルトAmadeusAmadeus MozartB.А. МоцартF.A.MozartH.A. MozartM. A. MozartMOZARTMahlerMazartMocartMocartasMocartsMosartMouartMouzartMozarMozardMozarrtMozartMozart - Wolfgang AmadeusMozart 13Mozart AriasMozart NovaMozart W. A.Mozart W.A.Mozart WolfgangMozart Wolfgang A.Mozart Wolfgang AmadeusMozart Wolgang AmadeusMozart,Mozart, W.Mozart, W. A.Mozart, W.A.Mozart, Wolfgang A.Mozart, Wolfgang AmadeMozart, Wolfgang AmadeusMozart:V. A MozartV. A. MocartV. A. MocartasV. A. MocartsV. A. MozartV. MocartasV. MocartsV. MozartV.A. MocartV.A. MocartasV.A. MozartV.A.MocartasV.A.MozartVolfango Amadeo MozartVolfgang A. MocartVolfgang Amadeus MocartVolfgang Amadeus MozartVolfgangs Amadejs MocartsW - A. MozartW A MozartW Amadeus MozartW MozartW · A · MozartW • A • MozartW,A,MozartW-A MozartW-A-MozartW-A. MozartW-A.MozartW. A. MozartW. -A MozartW. -A. MozartW. A . MozartW. A .MozartW. A MozartW. A, MozartW. A. MozartW. A. MocartW. A. MozartW. A. MozartiW. A. MozzartW. A. МоzartW. Amade MozartW. Amadeus MozartW. AmozartW. E. MozartW. MocartasW. MozartW. MozartasW. a. MozartW. МozartW. МоzartW.- A. MozartW.-A. MozartW.A MozartW.A. MozartW.A. MotzartW.A. MozartW.A. MozartaW.A. モーツァルトW.A.MOZARTW.A.MozartW.A.MozzartW.A.モーツァルトW.Amadeus MozartW.F. MozartW.MozartW.a. MozartW/A/MozartW:A: MozartWA MozartWA. MozartWAMWAモーツァルトWeikko Antero MozartWoalfgang Amadeus MozartWolfWolf MozartWolf. Amad. MozartWolfang A. MozartWolfang Amadeus MozartWolfango Amedeo MozartWolfg. Amad. MozartWolfg. Amade MozartWolfg. Amadeus MozartWolfgangWolfgang - Amadeus MozartWolfgang A MozartWolfgang A. MozartWolfgang A.MozartWolfgang Am. MozartWolfgang Amadaeus MozartWolfgang Amade MozartWolfgang Amade' MozartWolfgang Amadeo MozartWolfgang AmadeusWolfgang Amadeus Mozart (fils)Wolfgang Amadeus MozeartWolfgang Amadeus, MozartWolfgang Amadeusz MozartWolfgang Amadè MozartWolfgang Amadé MozartWolfgang Amandé MozartWolfgang Amedeus MozartWolfgang Amédée MozartWolfgang Cornhouus MozartWolfgang MozartWolfgang-Amadeo MozartWolfgang-Amadeus MozartWolfgang-Amédée MozartWolfgango Amedeo MozartWolgang Amadeus MozartWolsgang Amadeus MozartW·A·MozartW•A•MozartW⋅A⋅Mozartde MozartmozartΒόλφγκανγκ Αμαντέους ΜότσαρτΜότσαρτА. МоцартВ- А. МоцартВ. A. МоцартВ. А. МОЦАРТВ. А. МоцартВ. МоцартВ. Моцарт = W. MozartВ. МоцартаВ.-А. МоцартВ.A.МоцартаВ.А. МоцартВ.А.Мо́цартaВ.А.МоцартВ.МоцартВ.МоцартаВльфганг Амадей МоцартВолфганг Амадеус МоцартВольфанг Амадей МоцартВольфганг Амадей МоцартВольфганг Амадеус МоцартВольфганг МоцартМоцартМоцарт Вольфганг Амадейוולפגאנג אמדאוס מוצארטמוצארטמוצרטموزارموزارتウォルフガング・アマデウス・モーツァルトモーツァルトモーツアルトヴォルグガング・アマデウス・モーツァルトヴォルフガング·アマデウス·モーツァルト = Wolfgang Amadeus Mozartヴォルフガング•アマデウス•モーツァルトヴォルフガング・アマデウス・モーツァルトヴォルフガング・アマデウス・モーツァルト莫扎特莫札特모짜르트모차르트 + +95564Dave WellsDavid Howard WellsJazz trombonist, trumpeter and bass trumpeter, active from the 1950s - 1980s. +Needs VoteDave WellDavid H. WellsDavid Howard WellsDavid WellsWellsWells, DaveHarry James And His OrchestraBaja Marimba BandWoody Herman And His OrchestraThe Don Ellis OrchestraBilly May And His OrchestraMarty Paich OrchestraRussell Garcia And His OrchestraHenry Mancini And His OrchestraPat Longo And His Super Big BandThe Page 7Woody Herman And The Fourth HerdDon Ellis OctetMed Flory OrchestraBuddy Collette Octet + +96123Claude DebussyAchille-Claude DebussyBorn: August 22, 1862 (Saint-Germain-en-Laye, France). +Died: March 25, 1918 (Paris, France). + +Claude Debussy was a French composer. He is sometimes seen as the first Impressionist composer, although he vigorously rejected the term. He was among the most influential composers of the late 19th and early 20th centuries. +Debussy's music frees itself of the academicism of the late nineteenth century (in particular that of the Austro / German School) to offer new perspectives and dimensions to twentieth century music. +Through the use of pentatonic scales, of the whole tone scale, he returns to the ambiguity of modal systems and accomplishes a revolution of traditional harmony, different from the Wagnerian revolution. +Debussy's music frees itself from the tyranny of the bar, which with its periodic accents forces the rhythm to a pre-ordered repetitions; as a consequence of these metric-harmonic innovations the classical forms are abandoned.Needs Votehttps://en.wikipedia.org/wiki/Claude_Debussyhttps://www.jochenscheytt.de/debussy.htmlhttps://www.famouscomposers.net/claude-debussyhttps://www.britannica.com/biography/Claude-Debussyhttps://www.treccani.it/enciclopedia/claude-achille-debussy/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102597/Debussy_Claude(Achille-)Claude DebussyA. C. DebussyA. DebussyAchille-Claude DebussyC DebusseyC DebussyC. A DebussyC. A. DebussyC. A. DebussyC. De BussyC. DeBussyC. DebussiC. DebussyC. DebusyC. DébussyC. ドビュッシーC.A. DebussyC.A.DebussyC.DebussyC.ドビュッシーCh. DebussyCl. DebussyClaude A. DebussyClaude Achille DebussyClaude De BussyClaude DeBussyClaude DebusseyClaude DebussiClaude DebusyClaude DébussyClaude-Achille DebussyClaudeDebussyClaudio DebussyClaue DebussyDEBUSSYDe BussyDe bussyDeBusseyDeBussyDebbusyDebisiDebousyDebuseyDebusseyDebussyDebussy C.Debussy C.A.Debussy ClaudeDebussy,Debussy, Achille ClaudeDebussy, C.Debussy, ClaudeDebussy-ArnoldDubussyDébussyK. DebisiK. DebisīK. DebiusiK. DebussyKlaudiusz DebussyKlod DebisiMonsieur CrocheMonsieur Croche (Claude Debussy)Orchestre de la Suisse RomandeP.D.[Achille-] Claude DebussyΝτεμπισίДебюссиК. ДебюсиК. ДебюссиК.ДеБюссиК.ДебюссиКлод ДебисиКлод ДебюсиКлод ДебюссиКлод Дебюссіدوبوسيクロード ドビュッシークロード・ドビュッシークロード・ドビュッシードビッシードビュッシードヴュッシー德布西杜步西 + +96442Benny GreenBenny GreenBorn April 4 1963, NYC, New York and raised in Berkeley, CA. +Jazz keyboardist, saxophonist, composer and engineer. + +[b]NOTE![/b] Not to be confused with British liner notes author & saxophonist [a=Benny Green (2)] or US trombonist [a=Bennie Green]. +Needs Votehttp://www.bennygreenmusic.com/https://bennygreen.bandcamp.com/B. GreenBennie GreenBennyGreenベニー・グリーンベニー・グリーン・トリオArt Blakey & The Jazz MessengersRay Brown TrioBobby Watson & HorizonMingus DynastyThe Lew Tabackin QuartetDon Braden QuintetBenny Green QuintetJohn Swana QuintetDon Braden SextetThe Benny Green TrioThe Jazz Futures EnsembleJim Snidero QuintetJim Snidero QuartetJay Leonhart TrioTrio SupremeKBS TrioMonky Kobayashi & N.Y. Be BopJack Walrath & The Masters Of SuspenseBenny Green SextetKind Of Blue Project + +96443Javon JacksonJavon Anthony JacksonJazz saxophonist, born June 16, 1965, Carthage, Missouri, USANeeds Votehttp://www.javonjackson.com/https://javonjacksonjazz.bandcamp.com/https://en.wikipedia.org/wiki/Javon_JacksonJ. JacksonJacksonJavonJovan Jacksonジャボン・ジャクソンジャヴォン・ジャクソンThe Harper BrothersArt Blakey & The Jazz MessengersThe Blue Note All-StarsRoberta Piket QuintetLiberation Music OrchestraLouis Hayes QuintetBenny Green QuintetTom Williams QuintetBrian Lynch QuintetJazz In The New HarmonicJavon Jackson BandThree's Company (2)Javon Jackson QuartetLouis Hayes SextetJames Williams & ICUThe Cedar Walton SextetFreddie Hubbard OctetMickey Tucker SextetBenny Green Sextet + +97033Nick Rowland & Dave WrightNeeds VoteDave Wright & Nick RowlandN. Rowland & D. WrightN.Rowland & D.WrightNick Rowland & Strange DaveRoland & WrightRowland & WrightPBS (Phatt Bloke & Slim)The Coalition (2)Dave WrightNick Rowland + +97532Steve LacySteven Norman LackritzAmerican jazz soprano saxophonist and composer +Born July 23, 1934, New York City, New York, USA, died June 4, 2004, Boston, Massachusetts, USA + +He is considered to be one of the most important soprano saxophonists of all time. He was married to cellist/vocalist [a=Irene Aebi].Needs Votehttps://en.wikipedia.org/wiki/Steve_Lacy_(saxophonist)https://steve-lacy.bandcamp.com/https://stevelacyesp.bandcamp.com/LacyMessr. LacyS. LacyS. LasyS.L.S.LacySLSteve Laceyスティーヴ・レイシーSteve Sax (3)Gil Evans And His OrchestraGlobe Unity OrchestraThe Jazz Composer's OrchestraSteve Lacy 6Company (2)Laboratorio Della QuerciaSteve Lacy QuintetThe Cecil Taylor QuartetSteve Lacy & CieSteve Lacy TrioThe Steve Lacy QuartetSteve Lacy Double SextetSteve Lacy SevenThe Steve Lacy SextetSteve Lacy FourSteve Lacy OctetSteve Lacy + 6Steve Lacy ThreeSteve Lacy NineSteve Lacy FiveMal Waldron QuintetICP OrchestraMal Waldron QuartetSteve Lacy GangSteve Lacy / Mal WaldronSteve Lacy TwoJoe Puma SextetSteve Lacy-Roswell Rudd QuartetGiorgio Gaslini EnsembleAntonyms 1Didier Levallet OctetThe Joe Puma QuintetCecil Taylor All StarsFranz Koglmann - Steve Lacy QuintetSteve Lacy+16Gaslini Ensemble Internazionale + +97545John ColtraneJohn William ColtraneAmerican saxophonist and jazz composer. +Born September 23, 1926 in Hamlet, North Carolina, USA. +Died July 17, 1967 in Huntington, Long Island, New York, USA (aged 40) from liver cancer. +Coltrane's early recordings caught a musician in the confines of bebop and hardbop, but his enduring legacy primarily rests on the modal jazz pioneered by his classic quartet (1961-65) and by free jazz explorations late in his career. Extensively recorded as a leader (mainly for [l26557]), he appeared as a sideman on many albums, performing with other major figures in jazz such as [a23755] and [a145256]. As his life progressed, his music and outlook became increasingly spiritual. Posthumously, he was proclaimed as a saint in 1969 by the African Orthodox Saint John Coltrane Church in San Francisco. + +Coltrane's second wife was pianist [a42058]; their son [a316502] (born 1965) is also a saxophonist. Coltrane received a posthumous "Special Citation" from the Pulitzer Prize Board in 2007 for his 'masterful improvisation, supreme musicianship and iconic centrality to the history of jazz'.Needs Votehttps://www.johncoltrane.com/https://en.wikipedia.org/wiki/John_Coltranehttps://www.nytimes.com/2021/12/03/t-magazine/john-coltrane-church.htmlhttps://www.imdb.com/name/nm0173328/https://www.britannica.com/biography/John-Coltranehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/309224/Coltrane_Johnhttps://www.jazzdisco.org/john-coltrane/https://www.allmusic.com/artist/john-coltrane-mn0000175553https://www.jazzmusicarchives.com/artist/john-coltrane/?ac=john%20coltranColtaneColtraneColtransCotraneJ C.oltraneJ ColtraneJ. ColetraneJ. ColtoraneJ. ColtpaneJ. ColtraineJ. ColtraneJ.CJ.ColtraneJ.W. ColtraneJ/CJohnJohn ColetrainJohn ColetraneJohn ColtaineJohn ColtrainJohn ColtraineJohn Coltrane & FriendsJohn Coltrane And FriendsJohn ColtransJohn CotraneJohn W. ColtraneJohn William ColtraneJohnny ColtraneKen ColtraneДж. КолтрейнДжон КолтрейнКолтрейнジョン・コルトレーンThe John Coltrane QuartetThe Miles Davis SextetThe Thelonious Monk QuartetThe Miles Davis QuintetThelonious Monk SeptetDizzy Gillespie And His OrchestraDizzy Gillespie SextetThe Red Garland QuintetThelonious Monk TrioEarl Bostic And His OrchestraArt Blakey's Big BandPaul Chambers SextetThe John Coltrane SextetJohnny Hodges And His OrchestraEast Coast All-StarsEric Dolphy QuintetJohn Coltrane QuintetThe Prestige All StarsJohn Coltrane TrioCecil Taylor QuintetGeorge Russell OrchestraThe Ray Draper QuintetThe Mal Waldron SextetElmo Hope SextetOscar Pettiford & His All StarsGene Ammons' All StarsWilbur Harden-Tommy Flanagan QuintetWilbur Harden SextetJohn Coltrane OrchestraTenor ConclaveTadd Dameron QuartetPaul Quinichette-John Coltrane Quintet + +97882Charlie GreenAmerican jazz and blues trombonist, born 1893 in Omaha, Nebraska, died November 27, 1935 in New York City, New York. Green played with Red Perkins (1920-1923), [a=Tom Whaley (3)] (1923-1924), [a=Fletcher Henderson] (1924-1926 & 1928-1929), [a=June Clark] (1926), [a=Bessie Smith], [a=Benny Carter] (1929-1931 & 1933), [a=Chick Webb] (1930-1931 & 1932-1934), [a=Don Redman] (1932), [a=Elmer Snowden] (1931), [a=Louis Metcalf] & [a=Kaiser Marshall] (1935), among others. + +For the author of "Variety Stomp", see [a=Abel Green]Needs Votehttp://www.vjm.biz/185-green-web.pdfhttps://en.wikipedia.org/wiki/Charlie_Green_(musician)https://www.allmusic.com/artist/charlie-green-mn0000208432/biographyhttps://adp.library.ucsb.edu/names/106759Big Charlie GreenC. GreenCh. GreenCharles GreenCharley GreenCharlie "Big" GreenGreenWilliams W. ChristianWilliams W. ChristianLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Dixie StompersThe Louisiana StompersPerry Bradford Jazz PhoolsHenderson's Hot SixBessie Smith And Her Blue BoysIda Cox And Her Five Blue SpellsTrixie Smith And Her Down Home SyncopatorsClara Smith And Her Jazz BandKansas City Five (2)Henderson's Roseland Orchestra + +98380Les DeMerleLester William DeMerleAmerican jazz drummer and singer, born 4 November 1946 in Brooklyn, New York, USA.Needs Votehttp://www.lesdemerlemusic.comDemerleL. DeMerleLes D. MerleLes De MerleLes DemerleHarry James And His OrchestraHarry James And His Big BandThe Les DeMerle TransfusionLes DeMerle SextetLes De Merle And His BandThe Dynamic Les DeMerle BandLes DeMerle Sound 67 + +98383Billy BrooksJulius E. BrooksAmerican jazz trumpeter and composer. +Born : August 16, 1926 in Mobile, Alabama. +Died : December 24, 2002 in Amsterdam, The Netherlands. + +Billy played (among others) with Lionel Hampton's Orchestra.Needs VoteBilly BroksJulius E. "Billy" BrooksJulius BrooksLionel Hampton And His OrchestraLionel Hampton And His All-Star Alumni Big BandParis Reunion BandLionel Hampton & His Big BandThe Hollywood SaxonsKoor Zonder NaamFestivalbandThe Mallory-Hall BandBilly Brooks And The Rainbow Peace OrchestraBilly Brooks And His Sounds + +98397Eamonn FevahEamonn KilgariffElectronic dance music producer from Wellington, New Zealand. +Owner of [l=Fevah Records], A&R and Marketing director at [l=Southern Cross Music] +Styles: Trance | Progressive | Techno | House | Hard Dance + +eamonn@southerncrossmusic.co.nzNeeds Votehttp://soundcloud.com/eamonn-fevahhttps://twitter.com/eamonnfevahhttps://www.facebook.com/FevahNZEamonn KilgariffNative OnzSugapunk + +98436DJ ChooseLasse Steen HesselDanish DJ and producer who started his music career with releasing hardcore and acid, but nowadays is known from his techtrance productions. +He was also the first Danish act on the Q-Dance events (In Qontrol 2006). +Owner of [l=Chew The Club]. +Needs Votehttp://www.myspace.com/djchooseChooseDark SessionsFurther Individual ControlRules Of AngerSenicalSkullblowerFields Of DefacementPopey You KnowRankDark UnitzP. ServerRage Against The CuisineLaunchNaughty ObserversTeam Ruff TymezLasse SteenFast IdentitiesEarl Of ReformationThe GoatblowerTease (2)PowersweepScificonChop Shop (5)Evil By Nature + +98582The Johnny Otis ShowCorrectEl Show de Johnny OtisEnsembleJohn OtisJohn Otis ShowJohnny OtisJohnny Otis & Co.Johnny Otis And His OrchestraJohnny Otis ShowJohnny Otis Show, Live!Johnny Ottis ShowThe Johnny Otis Orch.The Johnny Otis Show Live!The Johnny Otis Show, Live!The Jonny Otis ShowThe New Johnny Otis ShowThe Original Johnny Otis ShowEsther PhillipsJohnny OtisDon "Sugarcane" HarrisDelmar "Mighty Mouth" EvansLawrence DickensJon Otis (2) + +98585Ray BryantRaphael Homer BryantAmerican jazz pianist and composer. His brothers were the bassist [a430827] and [a7245211], a drummer and singer. His nephews are [a312668] and [a84213]. Born on December 24, 1931 in Philadelphia, Pennsylvania (USA). Died on June 2, 2011 in New York City, New York (USA). + +Bryant's career covered a wide range of genres from bop to blues, boogie woogie, gospel and R&B. It began in the late 1940's while playing with [a330703]. In 1951 he became house pianist at the Blue Note in Philadelphia, backing visiting musicians such as [a75617], [a23755], [a258433] and [a64694], remaining until 1953. He began to record as leader for [l1005] in 1955 (later for parent label [l1866] in 1960 when signed by [a252830]), [l19591] and [l101478]. In 1958 or 1959, he settled in New York. With [a299682] he also entered the R&B genre, backing [a38863] on her debut for Columbia and releasing the Bryant co-written R&B hit The Madison Time, later used in the Hairspray movies. + +As a composer he is also known for writing the jazz standard Cubano Chant. In the 1960s, Bryant released several albums of soul-jazz on the [l36003] label. But his solo piano albums are among his best, containing interpretations of blues, gospel and standards, like 1956's Alone With The Blues and 1972's Alone At Montreux.Needs Votehttps://en.wikipedia.org/wiki/Ray_Bryanthttps://adp.library.ucsb.edu/names/306011https://www.imdb.com/name/nm1240988/https://www.jazzdisco.org/ray-bryant/discography/https://jazztimes.com/archives/ray-bryant-through-the-years/B. BryantBryantBryant RayGeorge BryantR BryantR. BayantR. BriantR. BryantR. ByrantR.BryantRaphael "Ray" BryantRaphael Homer BryantRay BriantRay BryanRay Bryant Jazz GroupRay Bryant QuartetRay Byrantレイ・ブライアント"Homer Fields"Honeyboy HomerThe Art Blakey Percussion EnsembleThe Ray Bryant ComboLionel Hampton And His All-Star Alumni Big BandRay Bryant TrioSonny Rollins QuartetMax Roach Plus FourThe Dizzy Gillespie OctetThe Charlie Shavers QuartetMuse AllstarsBenny Carter 4The Jo Jones TrioAaron Bell And His OrchestraBenny Golson And The PhiladelphiansThe Prestige Blues-SwingersThe Benny Carter GroupBenny Golson QuintetHerb Ellis And The All-StarsThe Ray Bryant QuintetJo Jones All Stars + +98815Bobby VBob VervoortDutch hardstyle DJ and producer. + +Do not confuse with RnB singer [a326453] (aka Bobby V) + +. +Correcthttp://www.bobby-v.nlBobbyBobby V.DJ Bobby V.B. Vervoort + +100317Edda dell'OrsoEdda SabatiniEdda Sabatini (born February 16, 1935 in Genova, Italia), known as Edda Dell'Orso, is an Italian singer best known for her collaboration with composer [a=Ennio Morricone], for whom she provided wordless vocals to a large number of his film scores. +Married to conductor and composer [a=Giacomo Dell'Orso].Needs Votehttps://myspace.com/eddadell39orsohttps://www.facebook.com/Edda-DellOrso-51155856532/https://it.wikipedia.org/wiki/Edda_Dell'Orsohttps://www.imdb.com/name/nm1397767/https://www.youtube.com/channel/UC-e-ORyNWUYcaTgVnNgAB1A/Dell'OrsoE. Dell'OrsoE.Dell'OrsoEddaEdda Del' OrsoEdda Dell 'OrsoEdda Dell' OrsoEdda Dell'OrsoEdda DellOrsoEdda DellorsoEdda Dell´OrsoEdda Dell’OrsoI Cantori Moderni di AlessandroniBianca NeveEdda's Classical Machine + +100584Sylvia RobinsonSylvia Robinson (née Vanterpool)American singer, songwriter and producer. Born as Sylvia Vanterpool on 29 may 1935 in New York (USA). Died on 29 September 2011 in New Jersey (USA). Mother of [a=Joey Robinson, Jr.], [a=Leland Robinson] and [a=Rhondo Robinson]. + +As a 14-year-old student at Washington Irving high school, her vocal talent led to her first recordings, singing blues with a band led by the trumpeter [a270237]. Between 1956 and 1962, she worked as a duo with her former guitar teacher, the virtuoso instrumentalist [a415476]. In 1962 Baker moved to Paris, bringing their partnership to an end. + +Sylvia married the musician [a2852940] in 1964. She immersed herself in the music business and ran a club in the Bronx before the couple moved to Englewood, New Jersey. There, they opened [l484812], an eight-track recording studio which, like Motown and Stax, had its own house band of backing musicians. + +The Robinsons formed the [l286675] in 1968, and Sylvia became one of the few female record producers at the time. By the late 1970s, All Platinum was in financial difficulties, caused in part by the Robinsons' purchase in 1975 for close to $1m of the rights to the Chess Records catalogue, which included recordings by Chuck Berry and Muddy Waters. They intended to record new material under the Chess banner, but found they could not afford to. + +In 1979 the company was thrown a lifeline. Sylvia was alerted by her teenage son Joey to the new sounds developing in the Bronx. The resulting track, Rapper's Delight, was soon selling 50,000 copies a day. It became a top 40 hit in the US and reached No 3 in the UK. The single launched the Robinsons' [l=Sugar Hill Records] label and Sylvia became a leading figure in the rapid proliferation of hip-hop music worldwide. + +Needs Votehttps://en.wikipedia.org/wiki/Sylvia_Robinsonhttps://www.electricsoulshow.com/news/sylvia-robinson-dies-at-75-2011-the-mother-of-hiphop-musichttps://www.theguardian.com/music/2011/sep/30/sylvia-robinsonhttps://www.whosampled.com/Sylvia-Robinson/"Sylvia"Fylvia RobinsonJ. RobinsonRobbinsonRobertsonRobinsoRobinsonRobinson SylviaRobinson/SylviaRopinsS RobinsonS-RobinsonS. RobinsS. RobinsonS.RobinsonSilviaSilvia RobinsonSivia RobinsonSmithSylviaSylvia B. RobinsonSylvia IncSylvia RobbinsSylvia RobbinsonSylvia RobertsonSylvia RobinsSylvia Robinson (Sylvia Inc)Sylvia Robinson (Sylvia Inc.)Sylvian Robinson실비아Sylvia RobbinsLittle SylviaSylvia VanderbiltSylvia VanderpoolLittle AprilSylvia IncMickey & SylviaBobby & Sylvia + +100591Edwin StarrCharles Edwin HatcherAmerican soul vocalist. +Born 21 January 1942 in Nashville, Tennessee, USA, died 2 April 2003 in Bramcote, Nottinghamshire, England. +Best remembered for the 1970 interpretation of the Vietnam War protest song “War”. +Brother of [a=Angelo Starr].Needs Votehttp://www.edwinstarr.info/https://web.archive.org/web/20240209105120/http://www.edwinstarr.info/https://en.wikipedia.org/wiki/Edwin_StarrE StarE StarrE. StarE. StarrE. StarrrE.StarrEdmin StarrEdvin StarrEdwinEdwin SfarrEdwin StarEdwing StarrEdwinn StarrErwin StarrF. StarrStarStarrStarrrThe Starr Teamエドウィン・スターエドウイン・スタースターエディーCharles Hatcher + +100702Bruce JohnstonBenjamin BaldwinVocalist, keyboardist, guitarist, bassist, drummer, composer and producer from Beverly Hills (CA, USA), born the 27th of June 1942 in Chicago (IL, USA). +His first band was Sleepwalkers together with [a=Kim Fowley] and [a=Sandy Nelson]. He got fame in the West Coast area of the USA and did several studio appearences. He drummed in [a=Ritchie Valens]' live band. Then he formed the band [a=The Surf Stompers]. Late 1964 he joined The Beach Boys and had great success with the band. In 1972 he left the band and recorded a solo album. In 1979 he returned to The Beach Boys and produced, toured and collaborated with the band ever since. +Needs Votehttps://en.wikipedia.org/wiki/Bruce_JohnstonA. JohnstonB JohnstonB, JohnsonB. JohnstonB. JohnsonB. JohnstonB. JohnstoneB.J.B.JohnsonB.JohnstonBeach Boy Bruce JohnstonBrB.ce JohnsonBruceBruce (Surf's Up) JohnstonBruce Arthur JohnstonBruce JohnsonBruce JohnstoneJohnsonJohnstonJohnstoneジョンストンブルース・ジョンストンThe Beach BoysThe Rip ChordsThe Gamblers (2)The Surf StompersCalifornia (3)Bruce & TerryThe Kustom KingsThe Hot DoggersThe VettesThe Renegades (11)Bruce And JerryThe Sidewalk SurfersBob Sled & The ToboggansCalifornia MusicThe Rogues (17)The Catalinas (5)The Bruce Johnston Surfing BandBruce Johnston Combo + +100940UK Gold (2)Paul JanesUK Gold is an alias used by Paul Janes for his funked up Hard House productions. + +[b]NOTE:[/b] Not to be confused with [b][a=UK Gold][/b] aka [b]Chris Macormack[/b]. +CorrectU.K. GoldMajesticThe Red Hand GangGround ZeroPaul JanesHouserockersEldon TyrellUntidy DJ'sLexa + +101822Norman WhitfieldNorman Jesse WhitfieldAmerican songwriter and producer (born May 12, 1940, in Harlem, New York - died September 16, 2008, in Los Angeles) best known for his work with [a=Berry Gordy]'s [l=Motown] label during the 1960s. He is credited as being one of the creators of the "Motown Sound," and instrumental in the development of psychedelic soul. + +In 1973, Whitfield left Motown and created [l=Whitfield Records], garnering chart success with [a=Rose Royce], who started out in [a=Edwin Starr]'s backing group. He won a Grammy Award in 1976 for his work on the "Car Wash" film soundtrack. He retired from music in the late 1980s. + +His final months were spent at Los Angeles' Cedars-Sinai Medical Center, undergoing treatment for diabetes and other ailments. +Needs Votehttps://en.wikipedia.org/wiki/Norman_Whitfieldhttps://www.songhall.org/profile/Norman_Whitfieldhttps://www.allmusic.com/artist/norman-whitfield-mn0000957729/biographyA. WhitfieldH. WhitfieldJ. WhitfieldJesse Norman WhitfieldJesse WhitfieldM. WhitefieldM. WhitfieldM. WitfieldN WhitfieldN, WhitfieldN. J. WhitfieldN. WHitfieldN. WhifieldN. WhitefieldN. WhitfeldN. WhitfieldN. WhitfildN. WhitfiledN. WhitgieldN. WhitieldN. WhitifeldN. WhitifieldN. WhitsieldN. WhittfieldN. WhtifieldN. WihitfieldN. WinfieldN. WitfieldN. WithfieldN.J. WhitfieldN.WhitfieldN.WhitfiieldNomman WhitfieldNorm WhitfieldNorm WhittfieldNorm. WhitfieldNorma WhitmanNorman "Slam" WhitfieldNorman "Slamjam" WhitfieldNorman "The Slam" WhitfieldNorman 'Slam' WhitfieldNorman 'Slam' Whitfield Jr.Norman J WhitefieldNorman J WhitfieldNorman J. WhitfieldNorman J.WhitfieldNorman Jesse WhitefieldNorman Jesse WhitfieldNorman Jessie WhitfieldNorman WhifieldNorman WhitefieldNorman Whitefield Jr.Norman WhitfeldNorman Whitfield for MayNorman Whitfield, Jr.Norman WitfieldNorman WithfieldNorman-Jesse-WhitfieldNorman/WhitfieldR.WhitfieldW. NormanW. WhitfieldWhifieldWhitefeldWhitefieldWhiteheadWhitfeldWhitfieldWhitfield (Norman)Whitfield MWhitfield, NormanWhitfield, Norman JesseWhitfield/NormanWhitfordWhithfieldWhitieldWhitsieldWickfieldWihitfieldWitfieldWithefieldWithfieldwhitfieldН. УитфилдWhitfield-Strong + +101853Lee PaschLee PaschHard House/Hard Trance DJ & producer from Leicester, UK. +Needs VoteTurbulance System + +101918Eskimo (3)Jon FordPsychedelic trance project, son of psy-trance veteran [a=John Ford].Correcthttps://www.facebook.com/eskimodancehttp://www.myspace.com/eskimodancehttps://soundcloud.com/eskimo-officialJunia EskimoJunya EskimoJunyaJon FordJoyryde (3) + +102078AlibeeCihan GuengoerCorrectAlibiWeicheiDa ClubbmasterCihan GüngörKing Of BongoBootmasters + +102506Carl OrffCarl OrffCarl Orff (July 10, 1895 – March 29, 1982) was a 20th-century German composer, most famous for Carmina Burana (1935/6). He was also successful and influential in the field of music education. Orff is best known for Carmina Burana (1935/6), a "scenic cantata". It is the first part of a trilogy that also includes Catulli Carmina and Trionfo di Afrodite. Carmina Burana reflected his interest in medieval German poetry. The trilogy as a whole is called Trionfi, or "Triumphs". The composer described it as the celebration of the triumph of the human spirit through sexual and holistic balance. The work was based on thirteenth-century poetry found in a manuscript dubbed the Codex latinus monacensis found in the Benedictine monastery of Benediktbeuern in 1803 and written by the Goliards; this collection is also known as Carmina Burana. While "modern" in some of his compositional techniques, Orff was able to capture the spirit of the medieval period in this trilogy, with infectious rhythms and simple harmonies. The medieval poems, written in Latin and an early form of German, are often racy, but without descending into smut. "Fortuna Imperatrix Mundi", commonly known as "O Fortuna", from Carmina Burana, is often used to denote primal forces. Orff was reluctant to term any of his works simply operas in the traditional sense. For example, he referred to his works Der Mond (The Moon, 1939) and Die Kluge (The Wise Woman, 1943) as Märchenopern ("fairytale operas"). Both compositions feature the same "timeless" sound, called timeless because they do not employ any of the musical techniques of the period in which they were composed, with the intent that they be difficult to define as belonging to a particular era. Their melodies, rhythms, and accompanying text form a unique union of words and music. About his Antigonae (1949), Orff said specifically that it was not an opera but rather a Vertonung, a "musical setting", of the ancient tragedy. + +In pedagogical circles he is probably best remembered for his Schulwerk ("School Work"). Originally a set of pieces composed and published for the Güntherschule (which had students ranging from 12 to 22), this title was also used for his books based on radio broadcasts in Bavaria in 1949. These pieces are collectively called Musik für Kinder (Music for Children), and also use the term Schulwerk, and were written in collaboration with his former pupil, composer and educator Gunild Keetman, who actually wrote most of the settings and arrangements in the "Musik für Kinder" ("Music for Children") volumes. Orff's ideas were developed, together with Gunild Keetman, into a very innovative approach to music education for children, known as the "Orff Schulwerk". The music is elemental and combines movement, singing, playing, and improvisation.Needs Votehttps://www.orff.de/https://www.ozm.bayern.de/http://www.osdiscography.com/https://en.wikipedia.org/wiki/Carl_Orffhttps://www.imdb.com/name/nm0649758/https://www.youtube.com/channel/UCNCtMCcQjniBlRp69ZAOC8Q/videosC OrffC, OrffC. OrfC. OrffC. OrrfC. オルフC.OrffCarl OffCarl OrfCarloffCarol OrffK. OrfK. OrffKarl OrfKarl OrffORFFOrfOrffOrff, CarlК. ОрфКарл ОрфКарл ОрффОрфОрф Карлオルフカール オルフ + +102507WaltWouter JanssenCorrectDJ WaltWalt JenssenAlex FakeyWouter JanssenSecond Wave (2)Bubi (6) + +102951Superfast OzOwen SwinerdSuperfast Oz is a mammoth figure within the Hard House / NRG scene. He co-owns one the most influential & popular record labels known to the scene, [l=Kaktai Records] and he's one half of the extremely popular & highly acclaimed production duo, [a=OD404] with [a=Dom Sweeten] (aka [a=Defective Audio]). + +As a teen, Oz dabbled with drums, rhythm and bass guitars in Rock/Thrash bands before discovering a deeper interest in electronic dance music. He started DJ'ing in the early 90's and met future production & label partner, Dom Sweeten, whilst playing gigs in Brighton in the mid 90's. + +They had similar tastes and both were interested in dabbling with music production, so they acquired some studio equipment and started crafting their art. Very few labels were initially interested and the duo later launched [l=Kaktai Records] in '97 as a platform for their music. + +Oz co-owned & ran the [b]BangingTunes.com[/b] record store & [l=Banging Tunes] label with [a=DJ Kristian] until 2004. He parted with BT in order to concentrate on his initial focus, DJ'ing & production. More solo work, further collaborations and an [i]OD404 Live[/i] show have been products of the move. + +With residencies stretching from London to Cape Town, San Francisco to Tokyo, having numerous classic releases & some of the biggest remixes on almost every label that matters, Oz is rightly one of the most in demand & respected Hard House artists across the globe. +Needs VoteOzSuper Fast OzSuperfunk OzOwen Swinerd + +103107DJ Ricky TRiccardo TesiniItalian DJ and producer.CorrectD.J. Ricky TD.J. Ricky T.DJ Ricky T.DJ. Ricky T.Rcky TRicky "T"Ricky TRicky T.R.K.T.Riccardo TesiniAntex + +103441Yves DesscaYves Lavot-Dessca de BrancourtFrench lyricist, producer, arranger, photographer and director for commercials, born in 1949 in Lugrin, Haute-Savoie, France. +Founder of the label [l=Dessca Records] and other companies: [l=Dessca Productions], [l=Dessca Entertainment] and [l1411939] (publisher).Needs Votehttp://fr.wikipedia.org/wiki/Yves_DesscaDasscaDescaDeslaDessaDesscaDessca Y.Dessca YvesDessca, YvesDessca/YvesDesscalDosscaG. DescaI. DebcaI. DescaI. DescalI. DeskaI. DesscaIves DescaIves DesscaJ. DescaJ. DesscaM. DesscaPescaResscaT. DesscaU. DesscaV. DesscaY DesscaY. DeccaY. DercaY. DesacaY. DescaY. DescasY. DesccaY. DessaY. DesscaY. DesscalY. DresscaY. WesscaY. desscaY.D.P.R.Y.DescaY.DesscaYes DesscaYues DesscaYv. DesscaYve DesscaYves / DesscaYves DescaYves DescatYves DesccaYves DessacYves, DesscaYves/DescaYves/DesscaДескаPierre BrancourtYves-Jacques LavotGuy Marfontaine + +103451Michael JayMichael Jay MargulesLA based songwriter-producer from Chicago, Illinois, with over 50 million records sold worldwide. +Best known for Collaborating with [a=Martika], [a=Brenda K. Starr], [a=Evelyn King].Needs Votehttps://www.michaeljaysongs.com/https://www.imdb.com/name/nm1162557/https://twitter.com/michaeljaysongshttps://www.facebook.com/michaeljay.songwriter/https://www.rocketsongs.com/TrackOwner/0285870b-e868-4658-81e9-c6beda2271d0https://en.wikipedia.org/wiki/Michael_Jay_%28producer%29JayM JayM. J. MargulesM. JayM. JoyM. ayM.JayMargulesMichael J.Michael Jay MargulesMichael MargulesMickael JayMjay + +104130Andrea MontorsiAndrea MontorsiItalian hardtrance/hardstyle producer.Needs Votehttp://web.archive.org/web/20100301155855/http://www.myspace.com:80/andreamontorsiofficialA. MontorsiA.MontorsiAndrea MontorosiAndreas MonitorsiMontorsiJam (2)A.M. TruckAnimal ProjectThe Gladiators (2)Andrea MNTDJ AmonHardfaze (2)Ado & MontorsiSOB CreatorsThe NavigatorYerba MateBlack & White (8)Manny AnimatorHeavyhandsLe SphinxAntolini & MontorsiNocera & Montorsi + +104175Matt WilliamsMatthew WilliamsHard Trance DJ and producer from the UKNeeds VoteM WilliamsM. WilliamsMatthew WilliamsWilliamsThe Edison FactorStraight Outta Cl'ahmNeotechnic + +104447AbandonPaul MaddoxHard house producer.CorrectPaul MaddoxO.G.R.Street ForceAzure (5)Olive GroovesComedy DickWall HaddocksJohan Döden Dahlroth + +104673Joe PassJoseph Anthony Jacobi PassalaquaAmerican jazz guitarist of Sicilian descent. +Born January 13, 1929 in New Brunswick, New Jersey, died May 23, 1994 in Los Angeles, California + +Although active as a player from the age of 14, it wasn't until the 1960s – following a long battle with, and eventual rehabilitation from drug addiction – that he began to establish himself as one of the very great jazz guitarists. A brilliant improviser, his early small group recordings featured fluent, bop-influenced, single note lines, coupled with a sophisticated harmonic sense and tremendous rhythmic drive and invention. In the 1970s he recorded the first of several solo performances in which he adopted a fingerstyle approach to playing rather than using a plectrum. As well as leading his own groups, he recorded with many of the great names of jazz, including Count Basie, Benny Carter, Zoot Sims, Milt Jackson, Duke Ellington and, notably, four classic albums with Ella Fitzgerald. The Ibanez company produced a 'Joe Pass' edition in their archtop jazz guitar range, and some years later, the Epiphone company manufactured a 'Joe Pass' version of their 'Emperor' jazz guitar.Needs Votehttps://en.wikipedia.org/wiki/Joe_Passhttps://joepass.bandcamp.com/http://www.asahi-net.or.jp/~UX5T-OOIS/https://www.imdb.com/name/nm1601223/https://www.allmusic.com/artist/joe-pass-mn0000209773J. PassJ.PassJoe FassJoe-PassPassД. Пассジョー・バスジョー・パスJoe PassalaquaThe CrusadersCount Basie OrchestraThe Oscar Peterson TrioBenny Goodman SextetThe Joe Pass TrioGerald Wilson OrchestraThe Oscar Peterson QuartetThe AquariansDuke Ellington QuartetThe Adam Ross ReedsThe Art Van Damme QuintetDizzy Gillespie's Big 4Quadrant (6)Clark Terry SextetThe Oscar Peterson Big 6Count Basie 6The Bud Shank QuintetBob Jung And His OrchestraJoe Pass QuartetThe Clark Terry FiveThe Oscar Peterson Big 4Chevapchichi TrioJoe Pass/Tommy Gumina Trio + +104676Johnny OtisΙωάννης Αλέξανδρος Βελιώτης (Ioannis Alexandros Veliotis)American bandleader, musician, talent scout, author & label owner. +Born December 28, 1921 Vallejo, California, USA. +Died January 17, 2012 Alta Dena, California, USA. +Father of guitarist [a5493] & drummer [a469449] ([a4176589]). + +Otis founded the [url=http://www.discogs.com/label/Ultra+Records+(5)]Ultra Records[/url] label in 1956 along with [a=Frank Gallo], [a=Eddie Mesner] and [a=Leo Mesner]. When they discovered another label by that name already existed they changed the name of the label to [l=Dig Records]. In 1960 Otis founded the [l=Eldo records] label. +Otis was involved in virtually every aspect of the music business. He helped to shape the R&B genre starting in the late 1940s and stayed involved in it for over 30 years. He had his own music variety show from 1954-5, [i]The Johnny Otis Show[/i]. +He played many instruments, going with ease on stage from the piano to the vibraphone to the drums to the guitar and more. +He was inducted into Rock And Roll Hall of Fame in 1994 (Non-Performer). Needs Votehttps://web.archive.org/web/20230324030049/http://www.johnnyotisworld.com/https://en.wikipedia.org/wiki/Johnny_Otishttp://bluesworld.com/Otis/Johnny_Otis.htmlhttp://bluesworld.com/Otis/Johnny_Otis_Pt_IIhttps://www.imdb.com/name/nm0652906/-J. Otis-. OtisEldoGribbleI. OtisJ OtisJ. GribbleJ. OrisJ. OtisJ. OttisJ. VeliotisJ.OtisJ; OtisJames OtisJhonny OtisJohn OtisJohnnie OtisJohnnyJohnny &Johnny OrtisJohnny Otis ShowJohnny OttisJohny OtisOtisOtis JohnnyOtis, JohnnyOttisP. OtisR. WallaceR.W. OtisRobinsT. OtisVeliotisДжонни ОтисThe Hawk (3)The Johnny Otis ShowJohnny Moore's Three BlazersJohnny Otis And His OrchestraIllinois Jacquet And His All StarsLester Young And His BandJohnny Otis QuintetSnatch And The PoontangsJohnny Otis BandJohnny Otis' All StarsJohnny Otis CongregationJohnny Otis & FriendsJohnny's ComboJohnny Otis Rhythm And Blues Revue + +105162John WeatherleyCorrectJ. WheatherleyJohn WeathereleyWeatherleyHampshire & Weatherley + +105296Clive LathamCorrectC. LathamCLive 'Professor' LathamCliveClue LathanLatham99th Floor Elevators + +105805Bill JohnsonWilliam JohnsonUS jazz trombonist, vocalist who played with [a=Count Basie] from the late 1920s to early 1940s. Later on he played with several [l=Motown] artists (1963-1967). + +[b]Do not confuse with:[/b] +- the US pop singer, actor [a=Bill Johnson (18)] +- the Dallas, Texas based trombonist, [a=Bill Johnson (16)] +- jazz bassist, and banjoist [a=Bill Johnson (4)] +- jazz guitarist, banjoist, and vocalist [a=Will Johnson (2)] +- visuals, art director [a1866893] +- the US alto sax player [a=William Johnson], co-composer of "Tuxedo Junction", often credited as Bill Johnson +- the US pedal steel guitarist, songwriter ("A Wound Time Can't Erase") [a=Bill D. Johnson]Needs VoteJohnsonW. JohnsonWilliam JohnsonThe Funk BrothersCount Basie Orchestra + +106184John KongosJohn Theodore KongosSongwriter, musician and engineer, born 1945, Johannesburg, South Africa. +Best known for his hits "He's Gonna Step On You Again" and "Tokoloshe Man", John Kongos has sold over 25 million copies as a songwriter and/or artist since the 1970's, with various Number One and Top Ten hits in England, France, Germany, Australia, South Africa and other countries. He wrote numerous Jingles, TV and Film Themes (including The Greek Tycoon, Cat's Eyes, Fraggle Rock (Traveling Matt), London Program, Sunday Sunday, etc.). +He also ran his home-studios [l=John Kongos Studio] and [l=Tapestry Studios] in London from1971 to 1988 before relocating to Phoenix, Arizona, where he started [l=Tokoloshe Records] with his four sons.Needs Votehttp://www.johnkongos.com/https://en.wikipedia.org/wiki/John_KongosCongosH. CongosH. KongosJ. CongosJ. KongasJ. KongesJ. KongosJ. T. KongasJ. T. KongosJ. kongosJ.K. BongosJ.KongosJoh KongosJohnJohn CongosJohn Joseph KongosJohn KongasJohn Kongos LondresJohn T. KongasJohn T. KongosJohn Theodore KongosJohnnyJohnny KongosKomgosKongasKongosTheodore KongosДж. КонгосКонгосIMPIScruggThe Floribunda RoseJohnny And The G-Men + +106474Paul SimonPaul Frederic SimonAmerican singer-songwriter born October 13, 1941, Newark, New Jersey, USA, who rose to fame as one part of [a232157]. After splitting up with [a=Art Garfunkel], he went on to have a successful solo career. Inducted into Rock And Roll Hall of Fame in 2001 (Performer). His first marriage was to [a=Peggy Harper] with whom he had a son [a906246]. He was then briefly married to [a637386] from 1983 until their divorce in 1984. His third wife is folk singer [a408641].Needs Votehttps://www.paulsimon.com/https://paulsimon.komi.io/https://www.facebook.com/paulsimonhttps://www.imdb.com/name/nm0800328/https://www.instagram.com/paulsimonofficial/https://en.wikipedia.org/wiki/Paul_Simonhttps://www.youtube.com/@officialpaulsimonhttps://www.allmusic.com/artist/paul-simon-mn0000031685/サイモンCollinsLou SimonP .SimonP SimonP. SimonP. SImonP. SaimonP. SiimonP. SimmonP. SimonP. Simon.P. SimoneP. SimónP. SomonP. SymonP. サイモンP..SimonP.S.P.SimmonP.SimonP.l SimonParel SimonPaulPaul "Rhymin" SimonPaul - SimonPaul Frederic SimonPaul SimmonPaul SimondPaul SimonsPaul SimónPaul · SimonPol SajmonPoul SimonR. SimonSImonSaimonsSimmonsSimonSimon GarfunkelSimon PSimon PaulSimon, PaulSimon/SimonSimonsSimónT. SimonП. СаймонПол СаймонПоль СимонСаймонСаймон И Гарфункельפול סיימוןサイモンポール•サイモンポール・サイモン西蒙폴 사이몬Jerry LandisTrue TaylorPaul Kane (3)USA For AfricaTom & JerrySimon & GarfunkelTico And The TriumphsThe Cosines + +106584Burt CollinsBurton I. CollinsAmerican trumpet/flugelhorn player. + +Born: March 27, 1931 in New York City , New York. +Died: February 24, 2007 in New York City, New York. +Needs VoteBert CollinsBurr CollinsBurt CollinBurt Collins & FriendsBurt Collins + FriendsBut CollinsCollinsHarlem River DriveWoody Herman And His OrchestraElliot Lawrence And His OrchestraLalo Schifrin & OrchestraThe Jerry Ross SymposiumDave Matthews' Big BandHal Serra QuartetCollins-Shepley GalaxyJohnny Richards And His OrchestraThe Jazz Interactions OrchestraDavid Matthews OrchestraLee Konitz NonetWoody Herman BandBill Russo And His OrchestraWoody Herman And The Fourth HerdDuke Pearson's Big BandSal Salvador And His OrchestraThe Blue Mitchell OrchestraWoody Herman And The Swingin' Herd (2)Michel Legrand & Co. + +106819Kernzy & KlemenzaPatrick Kearns & Gavin KerrUK Hard Dance Producers & DJ duo running the [l=Submatic] imprint.Needs Votehttp://www.kernzyandklemenza.comKernzy And KlemenzaK&K (5)Gavin Kerr (2)Patrick Kearns + +106823SharkboyGreg FergusonCorrectShark BoyGreg Ferguson + +107709Sa.Vee.OhMassimiliano SaviettoItalian DJ and producer.Correcthttp://www.myspace.com/saveeohitalySa Vee OhSa. Vee.OhSa.Vee.Oh.Sa:Ve:OhMax SaviettoHard BoostokTrance-TownMST (2) + +107783Teddy RandazzoAlessandro Carmelo RandazzoAmerican songwriter, singer, arranger and producer with Italian origins. +Born May 13, 1935 in Brooklyn, New York. Died November 21, 2003 in Orlando, Florida, USA. +Married to lyricist [a=Victoria Pike] (divorced 1977); their daughter is [a=Elisa Randazzo]. +Best known for composing 1960s hit songs such as [i]Goin' Out Of My Head[/i], [i]It's Gonna Take A Miracle[/i] and [i]Hurt So Bad[/i]. + +In the early years of rock and roll, Randazzo played with a group called [a=The Three Chuckles] and appeared on The [a=Ed Sullivan] Show numerous times. Their first hit Runaround, was a top 20 hit. He co-starred in rock revues staged by the legendary disc jockey [a=Alan Freed], appearing with such artists as [a=Chuck Berry] and [a=LaVern Baker]. Randazzo also had some starring roles and often performed in such rock films as [i]Hey, Let's Twist[/i], [i]The Girl Can't Help It[/i], [i]Rock, Rock, Rock[/i] and [i]Mr. Rock And Roll[/i] in the late 1950s and early 1960s. With his composing partner, [a=Bobby Weinstein] he wrote a string of major hits for other artists. The two were inducted into the Songwriters' Hall Of Fame in 2007, fifty years after first composing together. +Between 1959-1996, Randazzo had 56 songs hit the charts in the U.S. and 5 in the U.K. Tops among these were [i]Goin' Out of My Head / Can't Take My Eyes Off You[/i] by The Lettermen (#7 overall, #2 adult contemporary, 1967, US) (co-Bobby Weinstein, Bob Gaudio & Bob Crewe), [i]Pretty Blue Eyes[/i] by Craig Douglas (#4 UK, 1960) (co-written by Weinstein) and [i]Yesterday Has Gone[/i] by Cupid's Inspiration (#4 UK, 1968) (co-written by Victoria Pike).Needs Votehttps://www.allmusic.com/artist/teddy-randazzo-mn0000017136http://www.soulwalking.co.uk/Teddy%20Randazzo.htmlhttps://spectropop.com/remembers/TRobit.htmhttps://en.wikipedia.org/wiki/Teddy_Randazzohttps://fromthevaults-boppinbob.blogspot.com/2019/05/teddy-randazzo-born-13-may-1935.htmlAndazzoBandazzoG. RandazzoG. RandēzoKandazzoPandazzoR. RandazzoR. TeddyRadanzooRandRandazoRandazzaRandazzeRandazzleRandazzoRandazzo TeddyRandazzotRandozzoRedanzoRendazzaRendazzoT RandazzoT. RandT. RandazoT. RandazzT. RandazzeT. RandazzoT. Randazzo/T. RendazzoT. RondazzoT.RandazzoTandazzoTed RandazzoTeddy PandazzoTeddy RandazziTeddy Randazzo ProductionsTeddy Randazzo TwistsTeddy RandozzoTeddy RendazzoTerry RandazzoTony RandozzaTrandazzoГ. РандезоТ. РандазоТ. Рандезоט. רונדזוランダッゾThe Three ChucklesTeddy Randazzo And His OrchestraJoyce (35) + +107784Frankie ValliFrancesco Stephen CastelluccioBorn May 3, 1934 in Newark, New Jersey, best known as lead singer of The Four Seasons, one of the biggest music acts of the 1960s, which continued from then to the 1970s disco scene to the present day. +When Frankie Valli is listed as Frankie Valli & The Four Seasons or variations of that, please enter as an ANV of [a=The Four Seasons]. +Needs Votehttp://www.frankievallifourseasons.com/http://www.seasonally.co.uk/http://en.wikipedia.org/wiki/Frankie_Vallihttps://www.facebook.com/FrankieValliFourSeasonshttps://www.allmusic.com/artist/frankie-valli-mn0000794449https://adp.library.ucsb.edu/names/348560https://www.allmusic.com/artist/frankie-valli-the-four-seasons-mn0000170518F. ValliFrank ValliFranki ValliFrankieFrankie ValiFrankie ValleFrankie ValleyFrankie VallieFrankie VallyFrankie WalliThe "Sound Of Frankie Valli"The "Sound" Of Frankie ValliValliValli, FrankieФранки Валиフランキー・ヴァリフランキー・ヴァリーFrankie TylerFrancesco Castelluccio + +107890Craig YefetNeeds VoteCraig Daniel YefetCraig DanielP + C + +108091Chris HunterChristopher Lionel Robert HunterEnglish jazz alto saxophonist and flautist, born February 21, 1957 in London, England. +First played with [a=Mike Westbrook] (1978-1979) and then became a studio musician. He's most known for his work with [a=Gil Evans] in 1983, which led to him to moving to New York. He also played with the [a=Michel Camilo] sextet, Mike Gibbs, [a=Marianne Faithfull], [a=Bob James] and [a=Joe Jackson], to name a few. +Chris Hunter has also released records under his own name. +Needs Votehttp://www.huntercsax.com/C, HunterC. HunterC.HunterChris HunderHunterКрис ХантерGil Evans And His OrchestraThe George Gruntz Concert Jazz BandMike Westbrook OrchestraThe Warriors (9)The Mike Gibbs OrchestraMike Westbrook Brass BandThe Monday Night OrchestraManhattan Jazz QuintetDavid Matthews OrchestraManhattan Jazz OrchestraMichel Camilo Big BandThe Romeyn Adams Nesbitt QuintetDavid Matthews & The Super Latin Jazz OrchestraLee McClure Ensemble + +108439Richard StraussRichard Georg StraussGerman composer, born June 11, 1864, in Munich, died September 8, 1949, in Garmisch-Partenkirchen. He is best known for his composition 'Also sprach Zarathustra', 'An Alpine Symphony' and the operas 'Salome' and 'Elektra'. +His father was the musician [a=Franz Strauss].Needs Votehttps://www.richardstrauss.at/https://www.famouscomposers.net/richard-strausshttps://en.wikipedia.org/wiki/Richard_Strausshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102331/Strauss_RichardDr. Rich. StraußDr. Richard StraussDr. Richard StraußGeneralmusikdirektor Dr. Rich. StraußGeneralmusikdirektor Dr. Richard StraußGyorgy LigetiMendelssohnPiotr Illych TchaikovskyR StraussR. EstraussR. StrausR. StraussR. StraußR. StrussR. TraussR. ŠtraussR. シュトラウスR.StraussR.シュトラウスRic. StraussRicardo StraussRiccardo StraussRich. StraussRich. StraußRichard G. StraussRichard Georg StraussRichard StrausRichard StraußRihards ŠtraussRyszard StraussR・シュトラウスStrausStraussStrauss (Richard)Strauss R.Strauss RichardStrauss, R.Strauss, RichardStraußStrauß, R.StrauẞW. StraussР. ШтраусРихард ШтраусРихард ШтрауссРихард ЩраусРичард ШтраусШтраусШтраус Рихардリヒャルト・シュトラウスリヒャルト・シュトラウス = Richard Strauss李察・史特勞斯 + +108565Hector BerliozLouis-Hector BerliozFrench romantic composer. + +Born: 11 December 1803 in La Côte-St-André, Isère, France. +Died: 8 March 1869 in Paris, France (aged 65).Needs Votehttp://www.hberlioz.com/https://en.wikipedia.org/wiki/Hector_Berliozhttps://www.britannica.com/biography/Hector-Berliozhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102481/Berlioz_HectorBeerliozBeliozBerlinozBerliozBerlioz H.Berlioz HectorBerlioz, HectorBerlioz-RedonBerloizBevlozG. BerliosG. BerliozH BerliozH, BerliozH. BerciozH. BerliozH. BerliozasH.BerliozHector Berlioz, after VirgilHektor BerliozHéctor BerliozJ. BerliozLouis Hector BerliozLouis-Hector BerliozM. BerliozP. BerliozΜπερλιόζБерлиозГ. БерлиозГ. Берлиоз,Гектор Берлиозエクトル・ベルリオーズベルリオーズ柏辽兹 + +108566Antonio VivaldiAntonio Lucio VivaldiItalian Baroque music composer, virtuoso violinist, teacher and cleric. + +Born March 4, 1678, Sestiere di San Marco, Repùblica Vèneta, Italy. Died July 28, 1741, Kärntnertor, Vienna, Austria. + +He is recognized as one of the greatest Baroque music composers, and his influence during his lifetime was widespread across Europe. He is known mainly for composing many instrumental concertos, for the violin and a variety of other instruments, as well as sacred choral works and more than forty operas. His best-known work is a series of violin concertos known as "The Four Seasons". + +Vivaldi's career as a violinist and composer was almost inevitable. His father was Giovanni Battista Vivaldi, a founder of the Sovvegno dei musicisti di Santa Cecilia, an early musician's collective, who's President was the Baroque operatic composer and tutor [a=Giovanni Legrenzi]. As a youth, touring and performing around Venice in accompaniment on the violin with his father, he is likely to have been influenced by Legrenzi who had become maestro di cappella at St. Mark's Basilica in 1681. + +A redhead like his father, Vivaldi took up the course of attaining a priesthood in 1693 and became ordained in 1703, referred to by those around him as "Il Prete Rosso" because of his red hair. By late 1703 he was unable to maintain his practice in the priesthood due to ill health and sought employment as a tutor of music, retaining his reverential title. + +By 1704 he worked as maestro of violin in Venice at the orphanage of the Devout Hospital of Mercy, an institution known as Conservatorio dell'Ospedale della Pietà, providing shelter to orphaned and abandoned children. Here the boys were taught a trade, whilst the girls were given a musical education. The talented were selected for the conservatory's orchestra & choir, which gained high regard both in Venice and abroad. Vivaldi used this period to write the majority of his concertos, cantatas and arias. + +The institute provided an ideal environment for Vivaldi to explore the avenues of the ritornello form. The first of his works were published in 1705, a second Opus in 1709. His third Opus was published in Amsterdam in 1711 and gained him enthusiastic attention throughout Europe – followed by a fourth Opus in 1714. He became Musical Director of the Pietà's institute in 1716 and was contracted to provide two concerti a month for the orchestra. Papers from the Pietà's history show that Vivaldi produced 140 concerti between 1723 and 1733. + +In 1714 Vivaldi took on the role of impresario of the theater Sant'Angelo in Venice, presenting "Orlando finto pazzo", "Nerone fatto Cesare" and, despite earlier censorship, "Arsilda Regina di Ponto" in which the female lead (Arsilda) falls in love with another woman (Lisea), who is disguised as a man. Vivaldi's operatic style caused both outrage and acclaim. For three years he produced operatic work for the governor of Mantua, Prince Philip of Hesse-Darmstadt. He then moved to Milan and then Rome in 1722, performing for Pope Benedict XIII. It is in this period that he consolidated what was to become one of his most popular works "The Four Seasons", eventually published within a collection of twelve compositions "Il Cimento dell'armonia e dell'inventione" in 1725. + +Vivaldi had moved in high circles at this point, writing a wedding cantata for Louis XV and "La Cetra", a dedication to Viennese Emperor Charles VI who knighted the composer and invited him to Vienna. By 1730 Vivaldi's style and popularity had waned and he sold up much of the rights to his work and relocated to Vienna, accompanied by his father. He took residence in a four-story house known as "Satlerisch Haus" (saddle-maker's house) ran by Maria Agathe Wahler, the widow of the saddlemaker. The property was situated above the Kärntnertor, one of eight fortification gates surrounding Vienna, close to the Kärntnertortheater where Vivaldi began to stage operas such as "Farnace" in 1737. + +It is likely that he was to take up a position in the court of Charles VI but when the emperor suddenly died in 1740 – reputedly of mushroom poisoning, Vivaldi was left stranded without royal support or full remuneration. His health quickly declined and his asthmatic history took its toll some nine months later. He died of 'internal infection' at his home in Vienna. He was given a simple burial in the cemetery of Spitaller Gottesacker following a funeral at St. Stephen's Cathedral.Needs Votehttps://en.wikipedia.org/wiki/Antonio_Vivaldihttps://www.britannica.com/biography/Antonio-Vivaldihttps://www.baroquemusic.org/biovivaldi.htmlhttps://www.musiqueorguequebec.ca/catal/vivaldi/viva.htmlhttps://www.naxos.com/Bio/Person/Antonio_Vivaldi/22387https://www.bach-cantatas.com/Lib/Vivaldi.htmhttps://www.imdb.com/name/nm0006334/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102302/Vivaldi_AntonioA VivaldiA. BивaльдиA. VivaldiA. VivaldisA. VivaldyA. VivardiA. vivaldiA. ВивальдиA. ヴィヴァルディA.L.ヴィバルディA.VivaldiA.ヴィヴァルディA; VivaldiAntinio VivaldiAnton VivaldiAntoni VivaldiAntonioAntonio (Lucio) VivaldiAntonio L. VivaldiAntonio Licio VivaldiAntonio Lucio VivaldiAntonio Vivaldi (?)Antonio Vivaldi?António VivaldiD. Antonio VivaldiDon Antonio VivaldiVIVALDIVIvaldiVavaldiViva VivaldiVivaldVivaldiVivaldi A.Vivaldi AntonioVivaldi Antonio LucioVivaldi Ed Altri Autori VenetiVivaldi, A.Vivaldi, AntonioVivaldisVivaldyVivladiΑντόνιο ΒιβάλντιΒιβάλντιА. VivaldiА. ВивалдиА. ВивалыдиА. ВивальдиА. Вивальди = A. VivaldiА. ВівальдіА.ВивальдиА.ВівальдіАнтонио ВивалдиАнтонио ВивальдиАнтонио Вивальди (1678-1741)Антоніо ВівальдіВивалдиВивальдиВивальди А.Вивальди Антониоویوالدیアントニオ・ヴィヴァルディビバルディヴィバルディヴィヴァルティヴィヴァルディ비발디 + +108568Joseph HaydnFranz Joseph HaydnAustrian composer of the Classical period, born 1732-03-31 or 1732-04-01 in Rohrau, died 1809-09-05 in Vienna, Austria. +He brings the "sonata form" to a very high degree of improvement. +His symphonies and his string quartets (forms of which he is considered "the father") have become highly inspirational style models. +Haydn made a fundamental contribution to the development of chamber music; thanks to the numerous quartets, trios for piano, for strings and also with the unusual trios for baryton, viola and cello.Needs Votehttps://en.wikipedia.org/wiki/Joseph_Haydnhttps://www.klassika.info/Komponisten/Haydn/index.htmlhttps://www.famouscomposers.net/joseph-haydnhttps://www.britannica.com/biography/Joseph-Haydnhttps://www.imdb.com/name/nm0370817/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102479/Haydn_Joseph(Franz) Joseph HaydnE. HaydnF J HaydnF Joseph HaydnF. G. HaydnF. HaydnF. J HaydnF. J. HaidnsF. J. HaydinF. J. HaydnF. Joseph HaydnF.-J HaydnF.-J. HaydnF.J.F.J. HaydnF.J. HaidnsF.J. HajdnF.J. HaydnF.J.HaydnFJ HaydnFranc Jozef HajdnFrancis J. HaydnFrancis Joseph HaydnFrancisco Jose HaydnFrancisco José HaydnFrankFrans Joseph HaydnFranz HaydnFranz J. HaydnFranz J.HaydnFranz Jos. HaydnFranz Josef HaydnFranz Josef HaydnFranz Joseh HaydnFranz Josep HaydnFranz Joseph HaydenFranz Joseph HaydnFranz Jospeh HaydnFranz-Josef HaydnFranz-Joseph HaydnFranz-Jozef HaydnFrançois Joseph HaydnFrançois-Joseph HaydnGeorg F. HaydnH. HaydnHAYDNHadynHaidnasHajdnHaydHaydenHaydnHaydn (Joseph)Haydn F.JHaydn F.J.Haydn Franz JosephHaydn J.Haydn JosephHaydn,Haydn, (Franz) JosephHaydn, F.J.Haydn, Franz JosephHaydn, Franz JospehHaydn, JosephHaydn, JozefHaydn, [Franz] JosephHaydn:HayndHeydenHidnHydanHydenHydnHáydnI. HaydnIosef HaydnJ HaydnJ, HaydnJ,.aydnJ.J. F. HaydnJ. HadynJ. HaidnasJ. HaidnsJ. HajdnJ. HaydenJ. HaydnJ. HaydnasJ. HayonJ. M. HaydnJ. MayonJ.HaidnasJ.HaydenJ.HaydnJohann Michael HaydnJos. HaydnJosef HaydnJoseh HaydnJosehph HaydnJosep HaydnJosephJoseph Franz HaydnJoseph HaydenJoseph HaydinJoseph Haydn (1732 - 1809)Joseph Haydn BarytonJoseph Joseph HaydnJozef HajdnJozefs HaidnsJózef HaydnL. J. HaydnL. MozartM. HaydnTaube[Franz] Joseph Haydnj. HaydnΧάιντνЈозеф ХајднГайднГайднаДжозеф ГайднИ. ГАЙДНИ. ГайднИ.ГайднИозеф ГайднИозеф ХайднИос. ГайднИосиф ГайднЙ. ГайднЙозеф ГайднЙозеф ХайднФ.Й. ГайднФ.Й.ГайднФранц Йозеф Гайднהיידןיוסף היידןハイドルハイドンヨーゼフ•ハイドンヨーゼフ・ハイドンヨーゼフ・ハイドン海登海頓海顿 + +110567Saint (3)Mark SmithMark Smith - a.k.a. "Saint" - also appears on some releases as "Mark 'Hitman' Smith."CorrectSaintsMark "Hitman" SmithFlirtNRG FazeKars ThimmChappzMagic HandsCocomoDJ Stonker + +110987Paul JabaraPaul Frederick JabaraAmerican actor, singer and songwriter, born 31 January 1948 in Brooklyn, New York, USA and died 29 September 1992 in Los Angeles, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Paul_Jabarahttps://www.facebook.com/groups/pauljabara/https://www.imdb.com/name/nm0412955/David Wesley HaywoodJ. JabaraJabarJabaraJabara, P.Jabari, PaulJabarraJavaraJobara, P.P JabaraP. F. JabaraP. JabaraP. JabarraP. JobaraP.F.JabaraP.JabaraP.JabarraP.JabraPaul F. JabaraPaul Frederick JabaraPaul JabarraPaul JarabaPaula Jabarraポール・ジャバラ"Hair" Original Broadway Cast"Hair" Original Off-Broadway Cast + +111582Dougal & GammerNeeds VoteDJ Dougal & DJ GamerDJ Dougal, DJ GamerDNGDougal & GamerDougal & GammaDougal + GammerDougal , GammerDougal And GammerDougal B2B GammerDougal+ GammerDougal+GammerDougal, GamerDougal, GammerDougal/GammerGammer & DougalDarkside (7)Cobalt & HefferThe Saints (6)November (4)RobbingClub Generation (2)Paul ClarkeMatt Lee + +111645DJ WeaverRobert FrancisHardcore DJ & producer from Sydney, Australia. +Contact: weaver@djweaver.com.auNeeds Votehttp://www.djweaver.com.au/http://www.facebook.com/djweaverhttp://myspace.com/djweaverhttp://soundcloud.com/djweaverhttp://open.spotify.com/artist/5VjIurP1GxiyS5A0yRHiyWhttp://www.twitch.tv/djweaverofficialhttp://www.youtube.com/djweaverhttps://www.instagram.com/djweaverofficial?igsh=MTB2cDhkaWloc3pzYQ==WEAVERWeaverRobert FrancisDanceforzeHardforzeBass CrusadersBobby Neon (2) + +111761Guy GarrettGuy GarrettNeeds VoteG GarrettG. GarrettG.GarrettGarrettGrandmaster Double GeeGuy GarretThe Gee GeesBenedict BrothersThe Colonel (27)Two Little BoysLeft LocatorEldridge Gravy & The Court Supreme + +112558Bruce RobertsBruce A. RobertsLos Angeles-based singer / songwriter, manager, and all-around connector.Correcthttp://brucerobertszone.tripod.com/http://en.wikipedia.org/wiki/Bruce_Roberts_%28singer%29B RobertsB. A. RobertsB. RoberisB. RoberrtsB. RobertB. RobertsB. RogertsB.RobertsBruceBruce RoberBruce RobertBruce RobertoBrute RobertsRoberts布魯斯羅勃茲 + +112613Jon LangfordJonathan Llewelyn LangfordJon Langford has been involved in the hard house/hard dance scene since 1996 when he and [a=Warren Clarke] first formed the [a=Knuckleheadz]. He continues to be a large influence on the scene with his [l=The K Series] releases, as well as co-founder of artists [a=Flashheadz], [a=Neon Lights], [a=Mr. Bishi], [a=Volts Wagen] and [a=Masif DJ's]. +Worked in the Solid State record shop in Bournemouth.Needs VoteJ. LangfordJ.LangfordJohn LangfordJonJon "K-Series" LangfordJon 'K-Series' LangfordJon K-Series' LangfordLangfordK-SeriesFuture ConceptNeon LightsKnuckleheadzMr. BishiVolts WagenMasif DJ'sVicky PollardFlashheadzHardcore Masif + +112780ViolatorzNeeds VoteThe ViolatorsThe ViolatorzViolatorsGrinderPrime MoverDave ParkinsonAron Paramor + +112806Oren WatersOren Wayne Waters Jr.American vocalist, member of the family group [a265119]. Sibling of [a441646], [a441634] and [a222752]. + +Born: March 26, 1949 in Los Angeles, California.Needs Votehttps://www.facebook.com/oren.waters.9https://www.imdb.com/name/nm0914153/https://myspace.com/orenwatershttps://en.wikipedia.org/wiki/Oren_WatersO. WaltersO. WatersOran WatersOrenOren WaltersOren WaterOrene WatersOrinOrin WatersOrrin WatersOwenOwen WatersWatersThe WatersHollywood Film ChoraleThe Fire ChoirThe Mighty High Choir + +113146Sam PunkSamuel SkrbinsekGerman Harddance/Hardstyle/Techno artist. He was born in 1972 in Slovenia. +Owner of the hardstyle label [l=Steel Records]. +Correcthttp://www.sampunk.comDJ Sam PunkPunkS. PunkSamSam PunksSam PunxSKR 309DJ WildcutBreak BrothersEspumaDNS (4)Sam-PlingTransfuseHardnationPhuture PunkzAntriebE-StaticE-AtomTim MasonMarco Lorenz (2)Agent 909DiscojunkiesSamuel SkrbinsekBottle BoyWheels Of SteelFreakfaceS.T.P.Gladiators (4)DJ HereticMatty PhactSam Junk + +113330David LoweDavid LoweBritish Music Composer mainly working on Television and Radio projects. He has contributed to a number of British programmes and also created themes for international television customers. +Born 11 April 1959.Needs Votehttps://en.wikipedia.org/wiki/David_Lowe_(television_and_radio_composer)https://www.imdb.com/name/nm1467530/http://www.screenedmusic.co.uk/profile.aspx?UserListID=728https://myspace.com/davidlowesmusichttps://davidlowemusic.comhttps://twitter.com/i/user/1111586940086833152https://www.facebook.com/profile.php?id=100057946575361https://www.youtube.com/channel/UC-f2ddQutQsomMCNroAlxlghttps://vimeo.com/davidlowemusicD. LoweD.LoweDavid Hodson LoweDavid Lowe (The Pie)LoweDreamcatcher (2)Touch And GoEuropean Voices + +113663Colin BarrattDespite his young age, Barrett's skills behind the controls are so well crafted that he is a very popular choice on the engineering front for various prominent artists within Hard Dance. His own productions are a mix of Hard Dance & Techno fused flavours which provides a refreshing diversity of sounds to the scene. + +Colin runs [l=Gravity Trapp Recordings] as a joint project with [a=Ingo]. +Needs Votehttps://open.spotify.com/album/0wZWlCb30PmZLWtUEL8ZiHhttps://www.shazam.com/amp/track/477953469/expect-the-unexpectedhttps://www.beatport.com/artist/colin-barratt/7834/releaseshttps://www.beatport.com/artist/colin-barratt/7834BarrattC BarretC BarrettC. BarrattC. BarrettC.BarrattColin BColin BarratColin BarrettCollin BarretCollin Barret (Hauswerk)Collin Barret (Hauswerks)Colin BTweekDuke HazardCatch 22 (6)Rock Steady (2)HauswerksGravity Trapp + +113916Lisa AbbottLisa Marie AbbottLisa has worked extensively as a session singer with the Stock and Aitken production house, with various other producers in pop music and television and has appeared on hundreds of albums via singing, narration and composition for educational and children’s releases and broadcasts. She has a vocal range of E2 to E5. +Needs Votehttps://www.facebook.com/Lisa-Abbott-149281083808/A. AbbottAbbotAbbottL. AbbotL. AbbottL.AbbottLisaLisa ALisa AbbotThe Lisa Abbott SingersDali (17)CeylonThe Three Amigos (3) + +113945AMSAllen SmithUK Hard Trance & Hardcore Producer. +Part of the [l=Nu Energy] Collective. +Correcthttp://www.amsproductions.co.ukhttp://www.myspace.com/allenamsA.M.SA.M.S.DJ A.M.SDJ AMSDJ ResistAllen Smith (2)Anti Shock + +114050Chuck GentryCharles T. GentryAmerican jazz saxophonist (baritone), clarinetist, bassoon and reeds player. + +Born : December 14, 1911 in Belgrade, Nebraska. +Died : January 01, 1988 in California. +[b]For the soul funk guitarist please use [a=Chuck Gentry (2)][/b] +Needs Votehttps://www.allmusic.com/artist/chuck-gentry-mn0000778671/biographyhttps://adp.library.ucsb.edu/names/203649"Chuck" GentryC. GentryCharles "Chuck" GentryCharles 'Chuck' GentryCharles GentryCharles T. "Chuck" GentryCharles T. 'Chuck' GentryCharles T. GentryCharlie GentryChas. T. GentryChurck GentryGentrySgt. Chuck Gentrypfc. Chuck GentryHarry James And His OrchestraWoody Herman And His OrchestraBilly May And His OrchestraArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraRussell Garcia And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraGlenn Miller And The Army Air Force BandGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraBob Keene OrchestraGlen Gray & The Casa Loma OrchestraJerry Gray And His OrchestraWoody Herman And The Las Vegas HerdDennis Farnon And His OrchestraThe Los Angeles Neophonic OrchestraShorty Rogers Big BandWoody Herman And His Third HerdJohnny Mandel OrchestraBobby Troup And His Stars Of JazzPete Rugolo And His All StarsThe Army Air Force BandBuddy Collette Octet + +114457Alex KiddAlex LaddinUK electronic dance music DJ / producer from Manchester. +A&R at [l=GGR (Goodgreef Recordings)] and owner of imprint [l=Kiddfectious] + +Not to be confused with French artist [a=Alexkid].Needs Votehttp://www.djalexkidd.com/https://www.facebook.com/djalexkiddmusichttps://soundcloud.com/djalexkiddhttps://www.mixcloud.com/DJAlexKidd1/https://myspace.com/djalexkidddotcomhttps://twitter.com/djalexkiddhttps://www.youtube.com/user/djalexkiddhttps://www.instagram.com/djalexkidd/A. KiddAlex KidDJ Alex KiddKidd, A.AK47 (22) + +114560Pascal MinnaardPascal MinnaardDutch DJ & Producer, born January 26, 1976.Needs VoteMinnaardMinnaard, PascalP MinnaardP. MinaardP. MinnaardP. MinnardP.MinnaardPascal MPascal MinnarrdD-FactorSignumRon Hagen & Pascal M.Acetate (3)Free Fall (6) + +115089PBS (Phatt Bloke & Slim)Needs VoteP.B.S.PBSPhatt Bloke & SlimNick Rowland & Dave WrightThe Coalition (2)Dave WrightNick Rowland + +115461Dmitri ShostakovichДмитрий Дмитриевич Шостакович Born: September 12 [25] 1906 (Saint Petersburg, Russian Empire). +Died: August 09, 1975 (Moscow, USSR). + +Dmitri Dmitriyevich Shostakovich +Russian / Soviet composer, pianist, musical and public figure, teacher, professor. Father of the conductor and pianist [a842135]. +People's Artist of USSR (1954). Hero of Socialist Labor (1966). Lenin Prize (1958), five Stalin Prizes (1941, 1942, 1946, 1950, 1952), the USSR State Prize (1968) and the Glinka State Prize of the RSFSR (1974). +Dmitry Shostakovich became a world-famous composer at the age of 20, when his First Symphony was performed in concert halls of the USSR, Europe and the United States. 10 years later, his operas and ballets were performed in the world's leading theaters. 15 symphonies of Shostakovich were called by contemporaries "the Great epoch of Russian and world music". +His vast production includes, in addition to symphonic and choral music, 15 string quartets and various chamber, ballet and film music. +Shostakovich was in fact one of the most prolific authors of film music in Soviet Russia.Correcthttps://chostakovitch.org/https://www.siue.edu/~aho/musov/dmitri.htmlhttps://en.wikipedia.org/wiki/Dmitri_Shostakovichhttps://www.imdb.com/name/nm0006291/https://www.famouscomposers.net/dmitri-shostakovichhttps://www.britannica.com/biography/Dmitri-Shostakovichhttps://www.bach-cantatas.com/Lib/Shostakovich-Dmitri.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102618/Shostakovich_Dmitrii_DmitrievichA. ChostakovitzChostakovicChostakovichChostakovitchChostakovitch DChostakovitch D.D ShostakovichD SjostakovitjD-ŠostakovičD. ShostakovichD. ChostakovichD. ChostakovitchD. ChostakovitschD. ChostakovitzD. D. SostakovicD. D. ŠostakovičD. S. ShostakovichD. SchostakovichD. SchostakovitchD. SchostakovitschD. SchostakowischD. SchostakowitchD. SchostakowitschD. ScostakovichD. ShostahovichD. ShostakovichD. ShostakovitchD. ShostakowitchD. ShostakowitschD. ShostkovichD. SjostakovichD. SjostakovitjD. SjostakovitsjD. SjostakowitsjD. SostacoviciD. SostakovicD. SosztakovicsD. SzostakowiczD. ŠostakovićD. ŠostakovičD. ŠostakovičiusD. ŠostakovičsD.ChostakovichD.ChostakovitchD.D. ShostakovichD.D. ŠostakovičD.ShostakovichD.Shostakovich = Д.ШостаковичDSCHDim. SchostakowitschDimitr ShostakovichDimitri ChostakovichDimitri ChostakovitchDimitri Dimitriyevich ShostakovichDimitri SchistakowitschDimitri SchostakovichDimitri SchostakovitchDimitri SchostakovitschDimitri SchostakowichDimitri SchostakowitchDimitri SchostakowitschDimitri SchostakwitschDimitri SciostakovicDimitri ShostakovichDimitri ShostakovitchDimitri ShostakowitchDimitri ShostakowitschDimitri SjostakovitsDimitri SjostakovitsjDimitri SjostakowitsjDimitri SostakovicDimitri SosztakovicsDimitrij SchostakovitjDimitrij SchostakowitschDimitrij ShostakovichDimitrij SjostakovitjDimitrij SjostakovitsjDimitrij SosztakovicsDimitrij ŠostakovičDimitry SchostakovichDimitry ShostakovichDimitry SjostakovitsjDimtri SchostakovitchDimtri ShostakovicDimítri ShostakovichDmitir ShostakovichDmitr SzostakowiczDmitri ChostakovichDmitri ChostakovitchDmitri D. ShostakovichDmitri D. ShostakovitchDmitri Dmitjewitsch SchostakowitschDmitri Dmitrievich ShostakovichDmitri Dmitrievitch ChostakovitchDmitri Dmitrijevitsj SjostakovitsjDmitri Dmitrijewitsch SchostakowitschDmitri Dmitrijewitsch ShostakowitschDmitri Dmitriyevich ShostakovichDmitri Dmitriévitch ChostakovitchDmitri SchostakovichDmitri SchostakovitschDmitri SchostakowichDmitri SchostakowischDmitri SchostakowitchDmitri SchostakowitschDmitri SchostakowtischDmitri SchostakwitschDmitri SciostakovicDmitri ShorstakovichDmitri ShostakovicDmitri ShostakovicsDmitri ShostakovitchDmitri ShostakowitschDmitri ShostakowitshDmitri SjostakovitcjDmitri SjostakovitjDmitri SjostakovitsDmitri SjostakovitsjDmitri SjostakowitsjDmitri SostacoviciDmitri SostakovicDmitri SostakovičDmitri SostakowitzDmitri ŠostakovitšDmitri ŠostakovičDmitri ȘostacoviciDmitri ȘostakoviciDmitri.SostakoviciDmitrii ShostakovichDmitrij D. ŠostakovičDmitrij Dmitrievich ShostakovichDmitrij Dmitrijevič ŠostakovićDmitrij Dmitrijevič ŠostakovičDmitrij SchostakowitschDmitrij SchotakowitschDmitrij SciostakovicDmitrij ShostakovichDmitrij ShostakovitchDmitrij SjostakovichDmitrij SjostakovitjDmitrij SjostakovitsjDmitrij SostakovicDmitrij SosztakovicsDmitrij SzostakowiczDmitrij ŠostakovicDmitrij ŠostakovićDmitrij ŠostakovičDmitrijs ŠostakovičsDmitrijs ŠostokovičsDmitrijus ŠostakovičiusDmitriy ShostakovichDmitry ChostakovitchDmitry Dmitriyevich ShostakovichDmitry Dmitriyewich ShostakovichDmitry SchostakovichDmitry SchostakowitschDmitry ShostakovichDmitry SostakovičDmittrij D. ShostakovichDomitry ShostakowitchDymitr SzostakowiczMr. ShostakovichS. ChostakovitchSchostakovichSchostakovitchSchostakovitjSchostakovitj, DimitrijSchostakovitschSchostakowitchSchostakowitschSchostakowitsch DimitriSchostakowitsch, D.SchostakowtischSchostawokitschSciostakovicShastakovichShoctakovichShoshtakovichShostakovicShostakovichShostakovich, D.Shostakovich, D.D.ShostakovishShostakovitchShostakovitchcShostakovitshShostakovitsjShostakovitxShostakowitchShostakowitschShostakóvichShostokovitchShstakovichSjostakovichSjostakovitisjSjostakovitjSjostakovitschSjostakovitsjSjostakovitzSjostakowitsjSostakovicSostakovitsSosztakovicsSzostakowiczŠostakovičŠostakovič, D.Д. Д. ШостаковичД. ШОСТАКОВИЧД. ШостаковичД. ШостаковичаД. ШостаковчиД.Д. ШостаковичД.ШостаковичДм. ШостаковичДмитри ШостаковичДмитрий ШостаковичДмитрий Дмитриевич ШостаковичДмитрий ШостаковичДмитриј ШостаковичДо ШостаковичШостаковичШостакович Д. Д.Шостаковичаדמיטרי שוסטקוביץ'‏ショスタコーヴィチショスタコーヴィッチドミトリ・ショスタコーヴィチドミトリー・ショスタコーヴィチドミトリ・ショスタコーヴィチドミトリ・ショスタコーヴィッチドミートリー・ショスタコーヴィチ쇼스타코비치 + +115463Johann PachelbelJohann PachelbelGerman Baroque composer, organist and teacher, who brought the south German organ tradition to its peak (born August 1653, died March 6, 1706, both in Nürnberg (Nuremburg). + +He composed a large body of sacred and secular music, and his contributions to the development of the chorale prelude and fugue have earned him a place among the most important composers of the middle Baroque era. + +Pachelbel's music enjoyed enormous popularity during his lifetime; he had many pupils and his music became a model for the composers of south and central Germany. Today, Pachelbel is best known for the Canon in D, the only canon he wrote - although a true canon at the unison in three parts, it is often regarded more as a passacaglia, and it is in this mode that it has been arranged and transcribed for many different media. In addition to the canon, his most well-known works include the Chaconne in F minor, the Toccata in E minor for organ, and the Hexachordum Apollinis, a set of keyboard variations. + +Pachelbel's music was influenced by southern German composers, such as Johann Jakob Froberger and Johann Kaspar Kerll, Italians such as Girolamo Frescobaldi and Alessandro Poglietti, French composers, and the composers of the Nuremberg tradition. He preferred a lucid, uncomplicated contrapuntal style that emphasized melodic and harmonic clarity. His music is less virtuosic and less adventurous harmonically than that of Dieterich Buxtehude, although, like Buxtehude, Pachelbel experimented with different ensembles and instrumental combinations in his chamber music and, most importantly, his vocal music, much of which features exceptionally rich instrumentation. Pachelbel explored many variation forms and associated techniques, which manifest themselves in various diverse pieces, from sacred concertos to harpsichord suites.Needs Votehttp://en.wikipedia.org/wiki/Johann_Pachelbelhttp://www.hoasm.org/VIB/Pachelbel.htmlCannon De PachelbelCannon de PachebelG. PachelbelI. PachelbelJ PachelbelJ. PachelbelJ. PACHELBELJ. PachebelJ. PacheibelJ. PachelbeiJ. PachelbelJ. PahelbelsJ. PaschelbelJ. パッヘルベルJ.PachelbelJan PachelbelJoh. PachelbelJohan PachelbelJohann "D Major" PachelbelJohann PachabellJohann PachaelbelJohann PachebelJohann PachelbeJohann PachelbellJohann S. PachelbelJohannes PachebelJohannes PachelbelJohn PachelbelMr. PachelbelP. PachelbelPacabelPachabelPachabellPachalbelPachebelPachel BelPachelbalPachelbelPachelbel !Pachelbel J.Pachelbel JohannPachelbel, J.Pachelbel, JohannPachelbellPacholbelPalchelbelPashebellPatchelbelW. H. PachelbelЈохан ПахелбелИ. ПахельбельИоганн ПахельбельИоханн ПахельбельПахельбельПачебелЯ. Пахбельパッフェルベルパッヘルベルヨハン・パッヘルベル帕赫貝爾 + +115466Nikolai Rimsky-KorsakovНиколай Андреевич Римский-КорсаковNikolai Andreyevich Rimsky-Korsakov. +Russian composer, teacher, conductor, public figure and music critic from the Romantic era; member of the "Могучая кучка" / "The Five". +Born: March 18 (6 O.S.), 1844, Tikhvin, Saint Petersburg Governorate, Russian Empire. +Died: June 21 (8 O.S.), 1908 Lubensk, Saint Petersburg Governorate (now Pskov Oblast), Russian Empire.Needs Votehttps://en.wikipedia.org/wiki/Nikolai_Rimsky-Korsakovhttps://www.britannica.com/biography/Nikolay-Rimsky-Korsakovhttps://www.imdb.com/name/nm0006253/http://www.russisches-musikarchiv.de/werkverzeichnisse/rimsky-korsakow-werkverzeichnis.htmhttps://adp.library.ucsb.edu/names/102531,コルサコフA. N. Rimsky KorsakovA. Ny. Rimskij-KorszakovA. Rimsky-KorsakA.N. Rimsky-KorssakofAndréjewitsch Rimskij-KorsakowH. Rimsky KorsakovH. Римский-КорсаковKarsakoffKorsakawKorsakofKorsakoffKorsakovKorsakowKorssakoffKorssakowKraskovskyM. Rimski -KorsakowM. Rimski-KorsakovM. Rimski-KorsakowM. Rimskij-Korsakow)M. Rimsky-KorsakoffM. Rymski-KorsakowM.Rimski-KorsakowMikolai Rimsky-KorsakovMikołaj Rimski-KoraskowMikołaj Rimski-KorsakowMikołaj Rimski-KorsalowMikołaj Rimskij KorsakowN A Rimsky-KorsakovN Rimskij-KorsakovN Rimsky KorsakovN Rimsky-KorsakoffN Rimsky-KorsakovN. Rimsky-KorsakovN. A. Rimskeho-KorsakovN. A. Rimski-KorsakovN. A. Rimski-KorssakowN. A. Rimskij- KorsakovN. A. Rimskij-KorsakovN. A. Rimskij-KorssakowN. A. Rimsky-KorsakovN. A. Rimsky-KorssakoffN. A. Rimsky-KorssakowN. A. Rimszkij-KorszakovN. R KorsakoffN. R. KorsakovN. R. KorsakowN. R.-KorsakowN. Rimksi-KorsakovN. Rimksy-KorsakovN. Rimsk-KorsakovN. Rimskey-KorsakovN. Rimski - KorsakovN. Rimski - KorzakovN. Rimski KorsakoffN. Rimski KorsakovN. Rimski KorsakowN. Rimski-KorsakoffN. Rimski-KorsakovN. Rimski-KorsakowN. Rimski-KorssakoffN. Rimskiej-KorsakofN. Rimskij KorsakovN. Rimskij-KorsakovN. Rimskij-KorsakowN. Rimskij-KorssakovN. Rimskij-KorssakowN. Rimskij-KosakoffN. Rimskis KorsakovasN. Rimskis-KorsakovasN. Rimskis-KorsakovsN. Rimskiy-KorsakovN. Rimski–KorsakovN. Rimsky - KorsakoffN. Rimsky - KorsakovN. Rimsky KorsakoffN. Rimsky KorsakovN. Rimsky KorsalovN. Rimsky KorssakoffN. Rimsky KorssakowN. Rimsky, KorsakovN. Rimsky-KorsakofN. Rimsky-KorsakoffN. Rimsky-KorsakovN. Rimsky-Korsakov / Н. Римский-КорсаковN. Rimsky-Korsakov'sN. Rimsky-KorsakowN. Rimsky-KorssakoffN. Rimsky-KorssakovN. Rimsky-KorssakowN. Rimsky-KosakoffN.A Rimsky-KorsakovN.A. Rimski-KorsakovN.A. Rimskij KorsakovN.A. Rimskij-KorsakovN.A. Rimsky KorsakovN.A. Rimsky-KarsakovN.A. Rimsky-KorsakovN.A. Rimsky-KorsakowN.A. Rimsky-KorssakowN.A.Rimsky-KorsakovN.A.Rimsky–KorsakovN.A.リムスキー=コルサコフN.R. KorsakovN.R. KorsakowN.R. Rimsky-KorsakovN.Rimski-KorsakoffN.Rimski-KorsakovN.Rimsky KorsakoffN.Rimsky-KorsakovN.Rimsky-KosakoffN. Rimsky-KorsakovN:A: Rimsky-KorsakovNicholas A. Rimsky-KorsakovNicholas Rimski-KorsakovNicholas Rimsky-KorsakoffNicholas Rimsky-KorsakovNicholas Rimsky-KorsakowNickolai Rimsky-KorsakovNickolay Andreyevich Rimsky-KorsakovNicola Rimsky KorsakovNicolai A. Rimski-KorsakowNicolai A. Rimsky-KorsakovNicolai Andrej Rimsky-KorsakovNicolai Rimky KorsakovNicolai Rimski KorsakovNicolai Rimski-KorsakoffNicolai Rimski-KorsakovNicolai Rimski-KorsakowNicolai Rimski-KorssakoffNicolai Rimski-KorssakowNicolai Rimskij-KorsakoffNicolai Rimskij-KorsakovNicolai Rimskij-KorsakowNicolai Rimskij-KorssakowNicolai RimskyNicolai Rimsky KorsakovNicolai Rimsky KorssakoffNicolai Rimsky-KorsakofNicolai Rimsky-KorsakoffNicolai Rimsky-KorsakovNicolai Rimsky-KorsakowNicolai Rimsky-KorsokofNicolai Rimsky-KorssakofNicolai Rimsky-KorssakoffNicolai Rimsky-KorssakovNicolai Rimsky-KorssakowNicolai-Rimsky-KorsakovNicolaj A. Rimskij-KorsakovNicolaj Rimski-KorsakovNicolaj Rimski-KosakovNicolaj Rimskij KorsakowNicolaj Rimskij-KorsakovNicolaj Rimskij-KorsakowNicolaj Rimsky-KorsakovNicolaj Rimsky-KorssakoffNicolas A. Rimsky-KorsakovNicolas Andr Rimsky KovsakovicNicolas Rimski-KorsakoffNicolas Rimski-KorsakovNicolas Rimsky KorsakovNicolas Rimsky-KorsakoffNicolas Rimsky-KorsakovNicolas Rimsky-KorsarkovNicolay Andrejevich Rimsky-KorsakovNicolay Rimsky KorsakovNicolay Rimsky-KorsakovNicolay Rimsky-Korssakoff:Nicolaï A. Rimsky-KorsakovNicolaï Andreievitch - Rimsky-KorsakovNicolaï Rimski-KorsakovNicolaï Rimsky KorsakovNicolaï Rimsky-KorsakoNicolaï Rimsky-KorsakoffNicolaï Rimsky-KorsakovNicolei Rimsky-KorssakofNicolás Rimsky KorsakovNikolai AndreievichRimski-KorsakovNikolai A. Rimski-KorsakovNikolai A. Rimski-KorsakowNikolai A. Rimsky KorsakoffNikolai A. Rimsky-KorsakoffNikolai A. Rimsky-KorsakovNikolai Andreevich Rimsky-KorsakovNikolai Andreievich Rimsky-KorsakovNikolai Andreievitch Rimsky-KorsakovNikolai Andrejewitsch Rimski-KorsakowNikolai Andrejewitsch Rimskij-KorsakovNikolai Andreyevich Rimski-KorsakovNikolai Andreyevich Rimsky-KorsakovNikolai Andreyevich Rimsky-korsakovNikolai Andreyevitch Rimsky-KorsakovNikolai Andréiévitch Rimski-KorsakovNikolai Rimski KorsakovNikolai Rimski- KorsakowNikolai Rimski-KorsakofNikolai Rimski-KorsakoffNikolai Rimski-KorsakovNikolai Rimski-KorsakowNikolai Rimski-KorssakoffNikolai Rimski-KorssakovNikolai Rimski-KorssakowNikolai Rimskij-KorsakoffNikolai Rimskij-KorsakovNikolai Rimskij-KorsakowNikolai Rimskij-KorssakoffNikolai Rimskj KorsakovNikolai Rimsky - KorssakowNikolai Rimsky KorsakoffNikolai Rimsky KorsakovNikolai Rimsky KorssakoffNikolai Rimsky KorssakovNikolai Rimsky' KorssakoffNikolai Rimsky-KorsakofNikolai Rimsky-KorsakoffNikolai Rimsky-Korsakov = Николай Римский-КорсаковNikolai Rimsky-KorsakowNikolai Rimsky-KorssakofNikolai Rimsky-KorssakoffNikolai Rimsky-Korssakoff*Nikolai Rimsky-KorssakovNikolai Rimsky-KorssakowNikolai Rimsky-KórsakoffNikolai Rimsly-KorssakoffNikolai rimski-KorsakowNikolaij A. Rimskij-KorssakowNikolaij Rimskij-KorsakovNikolaij Rimsky-KorsakoffNikolaj A. Rimskij-KorsakovNikolaj A. Rimsky - KorsakovNikolaj A. Rimsky - KorsakowNikolaj A. Rimsky – KorsakowNikolaj A. Rimsky-KorsakovNikolaj A. Rimsky-KorsakowNikolaj A. Rimsky-KorssakoffNikolaj Andrejević Rimski-KorsakovNikolaj Andrejevič Rimskij - KorsakovNikolaj Andrejevič Rimskij-KorsakovNikolaj Andrejewitsch Rimskij - KorsakowNikolaj Andrejewitsch Rimskij-KorsakovNikolaj Andrejewitsch Rimskij-KorsakowNikolaj Andrejewitsch Rimsky-KorsakoffNikolaj Rimkij – KorsakovNikolaj Rimski - KorsakovNikolaj Rimski - KorssakowNikolaj Rimski KorsakovNikolaj Rimski-KorsakovNikolaj Rimski-KorsakowNikolaj Rimskij - KorsakowNikolaj Rimskij KorsakovNikolaj Rimskij-KorsakovNikolaj Rimskij-KorsakowNikolaj Rimsky-KorsakoffNikolaj Rimsky-KorsakovNikolaj Rimsky-KorsakowNikolaj Rimsky-KorssakoffNikolajs Rimskis–KorsakovsNikolas Rimski-KorsakovNikolas Rimski-KorssakowNikolas Rimsky-KorsakoffNikolas Rimsky-KorsakovNikolau Rimsky-KorsakoffNikolaus Rimskij-KorssakowNikolaus Rimsky-KorssakowNikolay A. Rimsky-KorsakovNikolay Andreevich Rimsky-KorsakovNikolay Andreyevich Rimsky - KorsakovNikolay Andreyevich Rimsky- KorsakovNikolay Andreyevich Rimsky-KorsakovNikolay Andreyevich Rimsky-Korsakov –Nikolay Andreyevich Rimsky-LorsakovNikolay Rimski-KorsakovNikolay Rimskij-KorsakovNikolay Rimsky KorsakoffNikolay Rimsky-KorsakoffNikolay Rimsky-KorsakovNikolaÏ Andréiévitch Rimsky-KorsakovNikolaï A. Rimsky-KorsakovNikolaï Andreyevitch Rimsky-KorsakovNikolaï Rimski KorsakovNikolaï Rimski-KorsakovNikolaï Rimski-KorsakowNikolaï Rimsky KorsakovNikolaï Rimsky-KorsakoffNikolaï Rimsky-KorsakovNikolaï Rimsky-KorssakoffNikolia Rimsky-KorsakovNikołaj Rimski-KorsakowNy. A. Rimszkíj-KorszakovNyikolaj Andrejevics Rimszkij-KorszakovNïcolai Rimski-KorsakovPimsky-KorsakovR KorsakoffR KorsakovR-KorsakovR. KorsakofR. KorsakoffR. KorsakovR. KorsakovichR. KorsakowR. KorsokovR. KorssakoffR. KorssakowR. RimskyR.-KorsakovR.KorsakovR.コルサコフR=コルサコフRiimsky-KorsakoffRimksy-KorsakovRimscki KorsakovRimscky KorsakovRimsey-KorsakoffRimsey-KorsakovRimsk-KorsakovRimskey KorsakovRimski - KorsakoffRimski - KorsakovRimski KorsakoffRimski KorsakovRimski KorsakowRimski KorzakovRimski-KorsakofRimski-KorsakoffRimski-KorsakovRimski-KorsakowRimski-Korsakow, N.Rimski-KorssakoffRimski-KorssakovRimski-KorssakowRimski-korsakovRimski/KorsakowRimskii-KorsakovRimskiij - KorsakowRimskij / KorsakovRimskij KorsakovRimskij-Kors.Rimskij-KorsakovRimskij-Korsakov, NikolaiRimskij-KorsakowRimskij-KorssakowRimskij/KorsakovRimskis-KorsakovasRimskiy KorsakovRimskiy-KorsakovRimskky-KorsakovRimskyRimsky & KorsakowRimsky - KorsakaffRimsky - KorsakkowRimsky - KorsakoffRimsky - KorsakovRimsky - KorsakowRimsky - KorssakoffRimsky - KorssakovRimsky - KorssakowRimsky / KorsakoffRimsky / KorsakovRimsky KarsakoffRimsky KorsakofRimsky KorsakoffRimsky Korsakoff Nikolai AndrejRimsky KorsakovRimsky KorsakowRimsky KorsokovRimsky KorssakoffRimsky KorzakovRimsky KórsakovRimsky LorsakoffRimsky, KorsakoffRimsky, KorsakovRimsky- Korsakow, NikolaiRimsky--KorsakovRimsky-DorsadoffRimsky-KarsakoffRimsky-KarsokowRimsky-KorasakovRimsky-KoraskoffRimsky-KormakovRimsky-KorsaKowRimsky-KorsakaffRimsky-KorsakavRimsky-KorsakhovRimsky-KorsakoRimsky-KorsakofRimsky-KorsakoffRimsky-KorsakooRimsky-KorsakovRimsky-Korsakov -Rimsky-Korsakov N.Rimsky-Korsakov, N.Rimsky-Korsakov, NicolayRimsky-Korsakov, NikolaiRimsky-Korsakov, Nikolai A.Rimsky-Korsakov, Nikolai AndreyevichRimsky-KorsakovoffRimsky-KorsakowRimsky-KorshakowRimsky-KorskakovRimsky-KorskoffRimsky-KorskovRimsky-KorsokovRimsky-KorsokowRimsky-KorssakoffRimsky-KorssakovRimsky-KorssakowRimsky-KorssaskoffRimsky-KorsukowRimsky-KorzakowRimsky-KosakoffRimsky-KosakovRimsky-KórsakoffRimsky-KórsakovRimsky-korsakoffRimsky-korsakovRimsky/ KorsakovRimsky/KorsakoffRimsky/KorsakovRimsky/KorssakoffRimsky~KorsakovRimsky·KorsakoffRimsky•KorsakovRimsly-KorsakovRimsski-KorssakoffRimssky-KorsakoffRimssky-KorssakoffRimsy - KorsakovRimsy KorsakovRimsy-KorsakovRimszkij KorszakovRimszkij-KorszakovRinsky-KorsakoffRinsky-KorsakovRismsky-KorssakoffRmiszkij-KorszakovRymsky-KorsakovTimsky-KorsakoffW. Rimsky-Korsakov[Rimsky-Korsakoff]Ν.Α. Ρίμσκι - ΚόρσακοφΡίμσκι-ΚορσάκοφА. Римский - КорсакА. Римский-КорсаковА. Римскйи-КорсаковИ.Римский-КорсаковМ. Де ФальиМ. Римский-КорсаковМ. Римський-КорсаковН. А. Римски-КорсаковН. А. Римский- КорсаковН. А. Римский-КорсаковН. Р.-КорсаковН. Римкий-КорсаковН. Римск.-КорсаковН. Римск.-КорсаковъН. Римскiй-КорсаковъН. Римскаго-КорсаковаН. Римски-КорсаковН. Римский - КорсаковН. Римский КорсаковН. Римский- КорсаковН. Римский-КоркаковН. Римский-КорсаковН. Римский-КорсковН. Римского-КорсаковН. Римского-КорсаковаН. Риский-КорсаковН. Румский-КорсаковН.А. Римский-КорсаковН.А. Римский-КорсаковаН.А.Римский-КорсаковН.Римскаго-КорсаковаН.Римский - КорсаковН.Римский КорсаковН.Римский-КорсаковН.Римского-КорсаковаНиколай Андреевич Римский-КорсаковНиколай Римский-КорсаковНиколај Римски КорсаковП. Римский-КорсаковР-КорсаковР. КорсаковР.-КорсаковРим. КорсаковРимск КорсакРимск.-Корсак.Римскiй-КорсаковъРимскаго-КорсаковаРимскай-КорсаковРимскай-КорсаковъРимски-КорсаковРимский - Корсаков НиколайРимский КорсаковРимский-КорсаковРимский-Корсаков Н.Римский-Корсаков Николай АндреевичРимский-Корсаковъניקולאי רימסקי-קורסקוברימסקי-קורסקובニコライ · リムスキー=コルサコフ = Nikolai Rimsky-Korsakovニコライ・リムスキー・コルサコフニコライ・リムスキー=コルサコフニコライ・リムスキー=コルサコフニコライ・リムスキー=コルサコフリムスキー=コルサコフリムスキー・コルサコフリムスキー=コルサコフ林姆斯基-高沙可夫雷姆斯基克沙可夫Rimsky-Korsakov + +115467Toru Takemitsu武満 徹 (たけみつ とおる Takemitsu Tōru)Composer, born October 8, 1930, died February 20, 1996, both in Tokyo.Needs Votehttps://en.wikipedia.org/wiki/Toru_Takemitsuhttps://www.britannica.com/biography/Takemitsu-Toruhttps://www.imdb.com/name/nm0006316/https://www.naxos.com/person/Toru_Takemitsu/23861.htmhttps://brahms.ircam.fr/fr/toru-takemitsuT. TakemitsuT.TakemitsuTakemitsuTakemitsu ToruTakemitsu, TōruTakmitsuTohru TakemitsuTore TakemitsuTôru TakemitsuTõru TakemitsuTöru TakemitsuTōru TakemitsuTōru Tekemitsu武満 徹武満 徹武満徹 + +115469Igor StravinskyИгорь Фёдорович СтравинскийBorn: 1882-06-17 (Oranienbaum, Saint Petersburg Governorate, Russian Empire) At present Lomonosov, Russian Federation. +Died: 1971-04-06 (New York City, New York, United States). + +Russian composer, pianist and conductor. +Main figure of musical modernism, one of the greatest representatives of world musical culture of the 20th century. +The composer's creative itinerary was extremely dynamic. +Stravinsky's musical language tends to overcome the barrier of historical periods and uses historical and personal models +(such as Russian folklore, Western cultured tradition, dodecaphony, polyrhythms and asymmetrical rhythms) +freely adapting them to his personal creative needs. +In stravinsky's works the rhythmic dimension is extremely dynamic and varied and becomes a structural element of the composition, as is the interval elaboration. +The composer uses melodic cells that are reassembled and broken down with great variety and freedom, the overlapping and reiteration of rhythmic-interval cells creates episodes of rhythmic-metric asymmetry and polyrhythm. +Other elements that we find in his compositions are: the structuring in discordant sections, the use of the octotonic scale and the modal scales. +He has written music for a variety of different instrumental and vocal combinations, ranging from works for huge orchestras to works for small ensembles or solo instruments +Starting from the 1950s he wanted to leave a precise sound testimony of his creative intentions, through the recording of his works directed by himself +A citizen of France (1934) and the USA (1945).Needs Votehttps://fondation-igor-stravinsky.org/https://en.wikipedia.org/wiki/Igor_Stravinskyhttps://www.famouscomposers.net/igor-stravinskyhttps://www.britannica.com/biography/Igor-Stravinskyhttps://www.biography.com/musician/igor-fyodorovich-stravinskyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100018/Stravinsky_Igorhttps://www.allmusic.com/artist/igor-stravinsky-mn0000364751Aram KhatchaturianI StravinskyI, StřáwinskyI-StravinskijI. F. StravinskyI. S.I. StravinskiI. StravinskijI. StravinskisI. StravinskyI. StrawinskiI. StrawinskyI. StrawińskiI. SztravinszkijI. ストラヴィンスキーI.S.I.StravinskijI.StravinskiyI.StravinskyI.StrawinskyIgor F. StrawinskyIgor Fedorovich StravinskyIgor Fedorovitch StravinskyIgor Feodorovich StravinskyIgor Feodorowitsch StrawinskyIgor Fiodorovitch StravinskyIgor Fjodorovič StravinskiIgor Fjodorowitsch StrawinskiIgor Fyodorovich StravinskyIgor Fyorovich StravinskyIgor StawinskyIgor StravinkijIgor StravinsijIgor StravinskIIgor StravinskiIgor StravinskijIgor StravinskyjIgor StrawinksyIgor StrawinskiIgor StrawinskijIgor StrawinskyIgor StrawińskiIgor SztravinszkijIgor' F. StravinskijM. Igor StrawinskiM. Igor StrawinskyProfessor Igor StrawinskyStavinskyStravinksyStravinskiStravinskijStravinskij, IgorStravinskyStravinsky = СтравинскийStravinsky, IgorStravisnkyStrawinskiStrawinskijStrawinskyStrawinsky IgorStrawinsky, IgorStrawińskiSztravinszkijThe ComposerÍgor StravinskiÍgor StravinskyΣτραβίνσκυИ. СтравинскиИ. СтравинскийИ. Ф. СтравинскийИ.СтравинскийИ.Ф. СтравинскийИг. СтравинскийИгор СтравинскиИгорь СтравинскийИгорь Фёдорович СтравинскийСтравинскийイゴール・ストラヴィンスキーイーゴリ・ストラヴィンスキーイーゴル・ストラヴィンスキーイーゴル・ストラヴィンスキーストラビンスキーストラヴィンスキー史特拉汶斯基史達拉汶斯基 + +115677Marty WildeReginald Leonard SmithMarty Wilde (born 15 April 1939, Blackheath, South London, England) is an English singer, songwriter and producer. During the late 1950's and early 1960's he had a string of top 10 hits in the UK, including 'Donna', 'A Teenager in Love', 'Sea of Love' and 'Rubber Ball'. Later on, as a songwriter and record producer, he was behind a string of 1980's hits for his daughter [a71081]. He is also the father of [a239365] and [a71315], and grandfather of [a2395386] and [a5462336]. Married to singer [a=Joyce Wilde] (1959-).Needs Votehttps://martywilde.com/https://en.wikipedia.org/wiki/Marty_Wildehttps://www.45cat.com/45_search.php?sq=marty+Wildehttps://www.facebook.com/MartyWildeFanpagehttps://twitter.com/MARTYWILDE4https://www.imdb.com/name/nm0928482/A. WildeM WildeM arty WildeM. WIldeM. WiIldeM. WildM. WildeM. WildenM. WlldeM. WyldeM.WildeMWildeMarti WildeMartyMarty WhiteMarty Wilde And EmsembleMarty Wilde And His GroupS. WildeWideWildWildaWildeWilde, MartyWyldeReginald SmithFrere ManstonShannon (10)Zappo (2)Reginald LeonardMarty Wilde And His WildcatsThe Wilde Three + +116337Delegate (2)Producer from Auckland, NZ. Early releases primarily Hardstyle and German Hard Trance, later Tech Trance. Needs VoteDelegatesDamnation (2)Rob Andrews (3)Dee SubPillseekers + +117375Willem FaberWillem Jelle FaberNeeds Votehttp://www.maczimms.com/FaberW FaberW J FaberW. FaberW. J. FaberW.FaberW.J. FaberW.J.FaberWillem "Mac Zimms" FaberWillem J. FaberWilliam FaberWishboneMac ZimmsIncisionsThe Groove CollectorTalespinGossipFlaxFellow ManDa MindcrusherYukan ProjectUltra SpinJelle FaberJens HollandTrickster (3)Q-Tip (2)ScandallNeon (17)BellrockScarfacePerfect PhaseThose 2Mac & MacIzomatrickAlliance (3)The Freak & Mac ZimmsFree Fall (6)Free Spirit (24) + +117689Claude GaudetteCanadian session musician, songwriter, composer, producer, arranger and programmer, born October 15, 1959 in Montréal, Quebec, died January 1997. He played keyboards, piano, synthesizer, drums, percussion and other instruments. Moved to Los Angeles in 1983, where he worked with [a=Air Supply], [a=Dan Hill], [a=Neil Diamond], [a=Céline Dion], [a=Barry Manilow], [a=Little River Band], [a=Christopher Cross], [a=Natalie Cole], [a=Peter Cetera], [a=Whitesnake], [a=Kylie Minogue], [a=Smokey Robinson], [a=Elaine Paige] and many other artists.Needs Votehttps://www.facebook.com/ClaudeGaudetteTributePage/https://www.genealogy.com/forum/surnames/topics/gaudet/331/https://www.imdb.com/name/nm0309942/C. GaudetteClaude GadetteClaude GaudetClaude GoddetteClaude GodetteClaude GuadetteGaudettePaul Gaudette + +117761Rod ArgentRodney Terence ArgentEnglish keyboard player Rod Argent is a musician, singer, songwriter, composer, and record producer, born June 14, 1945, in St. Albans, Hertfordshire, England. The keyboardist formed [a=The Zombies] in 1961 with vocalist [a=Colin Blunstone] (born June 24, 1945), guitarist [a=Paul Atkinson] (1946-2004), drummer/percussionist [a=Hugh Grundy] (b. March 6, 1945) and Rod Argent's older cousin, bass player [a=Jim Rodford] (1941-2018, bassist in [a=The Kinks] 1978-97), and had their first hit with [i]She's Not There[/i] in 1964 (from 1976 a small hit and popular song on [a=Santana]'s shows. In 1968, they released their classic, misspelt [i]Odessey and Oracle[/i], but the band broke up just before Xmas in 1967. In 1968, Rod Argent, Jim Rodford, singer [a=Russ Ballard] and drummer [a=Bob Henrit] started playing and recording new songs, forming the new band [a=Argent], a progressive rock band which had great success until 1976, mainly in the US where they had moved already in the 60s. + +Rod Argent and Colin Blunstone didn't play together again until after 43 years, when they reunited for two shows in 2000. In 2004, The Zombies was officially reunited, and they started touring Europe and the US again, except for a break during Covid-19. However, on July 11, 2024, it was announced by their management that Rod Argent - who celebrated his 79th birthday at home in St. Albans only four weeks earlier (and his and his wife Cathy's 52nd wedding anniversary) - had suffered a stroke, and according to a press release, he won't tour again. + + + +Needs Votehttps://www.rodargent.com/https://en.wikipedia.org/wiki/Rod_Argent. ArgentA. ArgentAgentArgentArgrentOrgentR ArgentR, ArgentR. ArgentR. アージェントR.ArgentR.T. ArgentRodRod ArgenRod Argent's KeyboardsRod LargentRodney 'Rod' ArgentRodney ArgentRodney Terence ArgentRoger ArgentRon ArgenRon ArgentTom Argentロッド・アージェントRodriguez ArgentinaArgentThe ZombiesShadowshowWild Connections + +118454Mike van der VivenMike van der VivenGerman DJ and producer.Needs Votehttp://www.myspace.com/mvdv909MDVDMVDVMike v.d. VivenCelvin RotaneScape GoatMike EggertThee Phonk vs. C-RocketX-MikeM.B. AntNuh-PopMo-TuneAllnightersSebbo & Mike v.d. VivenSequel XSteel Alley ProductionsCR2Oil Of OhlenOm (2)CquadratM & M (13) + +118939Mallorca LeeMallorca LeeFrom busting rhymes with rap legends Chuck D & Professor Griff (Public Enemy) during the London riots to supporting Tiesto in Scotland, closing his sold-out - Kaleidoscope Tour, The self-confessed "Tekno Junkie" openly sites Hip-Hop & Acid House as his Rock & Roll! This multi-talented madman has sold over 5 MILLION records worldwide, released over 10 artist albums and countless singles that have blazed an unmitigated trail thru acid house, rave, trance, hip-hop and the harder side of dance for over two decades. He has played in New York, London, Tokyo, Ibiza, Russia, New Zealand, Budapest, and Germany just after the fall of the Iron curtain and toured Australia an astonishing 20 times, making him one of if not Scotland's most enduring and groundbreaking DJ / Producer's. He ran the label [l=Debunk] with [a=David Forbes] in the early 00's. + +Mallorca Lee has been touring the globe for over 25 years and still maintains a unique Punk rock approach to both DJ'ing & music production that defies genre by blowing up the boundaries and pick locking the pigeon holes of modern day dance music! His hi-octane DJ sets consciously ignore musical divides, charging into the future while embracing the past, fearlessly mixing up his Classic production sets at the massive  Back To The Future, Fantazia and his own 1994 events, with his latest productions in upfront sets at the mighty Coloursfest, Judgment Fridays Ibiza, Planet Love, Homelands, Creamfields, Gatecrasher even Chill-out sets at the legendary Cafe Mambo, Ibiza and smashing the main stage at the infamous Reading & Leeds Festivals where NME magazine proclaimed him "more rock and roll than Oasis! ". Could he even be "The voice of our RAVE generation? " + +Mallorca Lee sadly passed away on 4th February 2024 from cancer.Needs Votehttps://mallorcalee.co.uk/https://www.facebook.com/DJMallorcaLeehttp://www.youtube.com/user/mallorcaleehttp://mlxl.podbean.com/https://soundcloud.com/mallorca-leehttps://www.facebook.com/groups/MLXLgroup/?fref=tsLeeM LeeM. LeeM.LeeMC Mallorca LeeMalMallorcaMarllorca LeeG-GORed MonkeyDon't DeletePublic DomainUltra-SonicScannersExperimental FluxtuationBass BabyBrooklyn BoyLord MichaelKarashC90TDM ProjectLost In Translation (2)David Forbes & Mallorca LeeForbes Lee Foy + +119084Mauricio KagelMauricio KagelMauricio Kagel (born December 24th, 1931, in Buenos Aires/Argentina - died September 18th, 2008, in Cologne/Germany) was a very distinctive composer of contemporary music. + +From the very beginning his name has been associated above all with music theatre, the genre in which he has perhaps exerted the greatest impact. +Besides his radical innovations in this area, however, he has also developed a highly personal aesthetic in his absolute music. +Kagel's creative output is remarkable: it encompasses not only stage, orchestral and chamber music in an extremely wide range of instrumental settings, but also film scores, radio plays and essays. +Throughout its broad spectrum, his music reveals a breach with any and all forms of academicism as well as close ties to tradition, especially to the German tradition. +Imagination, originality and humour are the hallmarks of this multimedia artist.Needs Votehttp://www.mauricio-kagel.com/https://en.wikipedia.org/wiki/Mauricio_KagelKagelM. K.M. KagelMaurice KagelMaurizio Kagel + +119795Viveen WrayViveen WrayLondon based singer-songwriter who was lead vocalist on many [a11001] tracks and the lyricist and vocalist for [a110918]. Currently writes, produces and records music from her own studio in Wembley, London, UK. Viveen's new EP "Four To The Floor" was released in September 2024 and the single "Should've Been You" was debuted on Radio 2 in the UK - DJ Spoony's show.Needs Votehttps://www.viveen.infohttps://www.facebook.com/ViveenOfficial/ https://www.youtube.com/@ViveenOfficial https://viveen.bandcamp.com/ V. WrayViveenViveen RayWrayN-TranceDriza + +120167Peter ShelleyPeter Alexander SouthworthBritish pop singer - songwriter - producer - recording supervisor and co-founder of [l=Magnet (2)]. +Not to be confused with [a=Pete Shelley]. +Worked in the music business since 1965, working as everything from a talent scout to a recording artist. He founded [l=Magnet (2)] in 1973 with Michael Levy but left the label two years later in 1975. In 1980 Shelley moved to Canada where he worked as an independent songwriter. His son, [a=John Southworth] is a singer-songwriter. +(28 February 1943 – 23 March 2023)Needs Votehttps://en.wikipedia.org/wiki/Peter_Shelleyhttps://www.imdb.com/name/nm2992280/P ShelleyP ShellyP. ShelleyP. ShellyP.ShelleyP.ShellyPete ShelleyPeter ShellyShelleyShellyLife (13)Homar JacksonPeter Southworth (2) + +120312Paul HornPaul HornPaul Horn (born March 17, 1930, New York City, New York, USA - died June 29, 2014, Vancouver, British Columbia, Canada) was a Grammy Award winning American jazz flutist, alto saxophonist, clarinetist and composer. + +Classically trained and educated, Horn was an active member in the 1950`s west coast jazz scene, recording with Chico Hamilton, Shorty Rogers and Buddy Collette among others. In the late 1950`s and early 1960`s with his own group, he took up a more modal approach to playing, influenced by Miles Davis. In addition to a large discography of jazz recordings, Horn is considered one of the pioneers of new age music, in which the flute became his main instrument. + +His 1968 album of solo flute and vocals (Inside, also known as Inside The Taj Mahal) has sold over three quarters of a million copies and launched a series of Inside records recorded in natural and sacred sites with unique acoustic properties. Both Inside and Inside II were top 10 albums on the Billboard jazz chart. Horn won two Grammy Awards for his 1965 album Jazz Suite On The Mass Texts. Other Grammy nominated albums include Cycle (1965), Traveler (1987), and Inside Monument Valley (1999). In 1990 he published his autobiography Inside Paul Horn (The Spiritual Odyssey Of A Universal Traveler), co-authored by [a315650]. He is the father of [a=Robin Horn].Needs Votehttps://www.imdb.com/name/nm0394900/https://soundcloud.com/paul-horn-officialhttps://en.wikipedia.org/wiki/Paul_Horn_(musician)https://adp.library.ucsb.edu/names/204675https://www.allaboutjazz.com/news/paul-horn-1930-2014/https://archive.org/details/insidepaulhornsp00hornHornP HornP. HornP. J. HornP.H.P.HornPaul HorneП. ХорнПол ХорнThe Chico Hamilton QuintetHenry Mancini And His OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraThe Fred Katz GroupThe SurfmenL'Ensemble Instrumental Des IlesCal Tjader SextetLes Cinq ModernesBuddy Collette And His Swinging ShepherdsThe Paul Horn QuintetBobby Troup And His Stars Of JazzThe Paul Horn FourBarney Kessel And His MenThe Phil Moody QuintetPaul Horn QuartetPaul Horn & The Concert Ensemble + +120620James MoodyAmerican jazz saxophonist, flutist and vocalist who had a long musical relationship with Dizzy Gillespie. Best known for the hit Moody's Mood For Love. + +Born 26th March 1925 in Savannah, Georgia, USA, died 9th December 2010 in San Diego, California, USANeeds Votehttps://jamesmoody.com/https://en.wikipedia.org/wiki/James_Moody_(saxophonist)https://myspace.com/jamesmoody1https://www.radioswissjazz.ch/en/music-database/musician/9502dd35497f83faa4fb32760716d6d3eae9/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/376908/Moody_JamesJ MoodyJ, MoodyJ. MoodyJ.MoodyJames Moody -49Jimmy GloomyL. MoodyMoodyДжеймс Мудиジェームス・ムーディJimmy GloomyDizzy Gillespie And His OrchestraDizzy Gillespie Big BandDizzy Gillespie QuintetJames Moody QuintetHoward McGhee SextetMilt Jackson OrchestraThe Dizzy Gillespie Reunion Big BandMiles Davis-Tadd Dameron QuintetNew York Jazz SextetJames Moody And His ModernistsMax Roach QuintetJames Moody SextetThe United Nation OrchestraJames Moody QuartetThe Kenny Dorham QuintetJames Moody And His BandJames Moody And His OrchestraThe Philip Morris SuperbandThe Quincy Jones Big BandArne Domnérus Favourite GroupRay Brown's All StarsJames Moody's BoptetJames Moody & His Swedish CrownsJames Moody & His Cool CatsDizzy Gillespie All-Star Big BandAll Star Big BandErnie Royal And His All StarsErnie Royal & His PrincesJames Moody - Don Byas QuartetJames Moody With StringsThe James Moody And Hank Jones QuartetJack Dieval And His QuartetThe Dizzy Gillespie™ Alumni All-Star Big Band + +120623Toots ThielemansJean-Baptiste Frédéric Isidor, Baron ThielemansInfluential Belgian harmonica player, whistler and guitarist (29 April 1922, Brussels - 22 August 2016, Braine-l'Alleud). Considered the pre-eminent jazz harmonica player, he performed and recorded with some of the greats like [a=Oscar Peterson], [a=Ella Fitzgerald], [a=Sarah Vaughan], [a=Bill Evans], [a=Fred Hersch], [a=Dizzy Gillespie], [a=Pat Metheny] and [a=Jaco Pastorius]. He was also an in demand session player in pop music, appearing on records by the likes of [a=Paul Simon] and [a=Billy Joel]. + +Thielemans began playing the accordion at an early age and taught himself how to play the guitar after being introduced to the music of [a=Django Rheinhardt]. After visiting the US in 1948, he was invited to accompany [a=Benny Goodman] on his European tour. In 1952 he emigrated to US and became a citizen in 1957. During this period he was mainly active as a member of the [a=George Shearing Quintet]. In 1955 he recorded his first album as a leader on the [a=Columbia] label. After the Quintet was disbanded, Thielemans returned to Europe, performing widely in Sweden and Germany. In 1969 he recorded an album with Brazilian singer [a=Elis Regina], the start of a fascination with bossa nova that would eventually result in collaborations with the likes of [a=Astrud Gilberto], [a=Chico Buarque] and [a=Oscar Castro-Neves]. After suffering a stroke in 1981 he had more difficulty playing the guitar and started concentrating even more on the harmonica. + +His most famous composition is [i]Bluesette[/i], which has become a standard. With a larger audience he is perhaps best-known for performing the [i]Sesame Street[/i] theme. He also appeared on numerous soundtracks, most notably [i]The Pawnbroker[/i] (1964), [i]Midnight Cowboy[/i] (1969), [i]The Getaway[/i] (1972), [i]Turks Fruit[/i] (1973) and [i]Jean de Florette[/i] (1986). Many of those were scored by his long-term collaborator [a=Quincy Jones]. + +On 12 March 2014 Toots Thielemans announced his retirement. He would only appear one more time in concert at [l=Jazz Middelheim] that same year, the festival with which he was closely associated for decades. Among the honors he received were the title of baron in the Belgian nobility (2001) and that of Jazz Master by the [a=National Endowment for the Arts] (2009).Needs Votehttps://www.facebook.com/Toots.Thielemans/https://en.wikipedia.org/wiki/Toots_Thielemanshttps://myspace.com/jeantootsthielemanshttps://www.imdb.com/name/nm0857957https://houbi.com/belpop/groups/toots.htmhttps://wallonica.org/blog/2019/08/27/thielemans-jean-baptiste-dit-toots-1922-2016/https://www.jazzinbelgium.com/person/toots.thielemanshttps://www.allmusic.com/artist/toots-thielemans-mn0000159791"Toot's" Thielemans"Toots""Toots" Thielemanns"Toots" Thielemans"Toots" Thielmans"Toots' Thielemans Ensemble'Toots' ThielemansBaron "Toots" ThielemansFieldmanG. ThielemansJ ThielemansJ. "Toots" TheilemansJ. "Toots" ThielemansJ. "Toots" TielemansJ. B. ThielemansJ. T. ThielemannsJ. T. ThielemansJ. ThielamansJ. ThielemanJ. ThielemansJ. ThielmansJ.ThielemansJan ThielemansJean "Toot's" ThielemansJean "Toots" ThielemanJean "Toots" ThielemannsJean "Toots" ThielemansJean "Toots" ThielmansJean "Toots" ThilemansJean "Toots" TielemansJean ''Toots'' ThielemansJean ''Toots'' ThielmansJean 'Toot's' ThielemansJean 'Toots" ThielemansJean 'Toots' ThielemansJean 'Toots' Thielemans - Harmonica With OrchestraJean 'Toots' ThielmanJean (Toots) ThielemansJean B. "Toots" ThielemansJean Baptiste "Toots" ThielemansJean Baptiste ThielemansJean HielemanJean ThielemansJean ThielmanJean ThielmansJean TielemansJean Toots ThielemannsJean Toots ThielemansJean Toots ThielmansJean « Toots » ThielemansJean «Toots» ThielemansJean »Toots« ThielemansJean “Toots" ThielemansJean „Toots” ThielemansJean-Baptiste "Toots" ThielemansJean-Baptiste ThielemansJean-Toots ThielemannsJon "Toots" TilmansJon Toots TilmansMister Jean "Toots" ThielemansMr Toots ThielemansMr. Toots ThielemansS. StielmansT ThielemansT. ThielemanT. ThielemansT. ThielmansT. TielemansT.ThielemansTh. ThielemansThe Amazing Jean "Toots" ThielemansThe Amazing Jean 'Toots' ThielemansTheilmanTheilmansThelemansThielemanThielemansThielemans - TootsThielemenasThielmanThielmansThilemansTielemansTildemans TutsTillemansToets ThielemansToot's ThielemansToot's Toots ThielemamnsTootsToots "Baron" ThielemansToots "The Legendary" ThielemansToots & ThielemansToots (Toots) ThielemansToots TeielemansToots TheilemansToots TheilmanToots TheilmansToots TheilmensToots ThelemansToots ThialmansToots ThieleToots ThielemanToots Thieleman'sToots ThielemannsToots Thielemans & His Orch.Toots Thielemans European QuartetToots ThielemonsToots ThielmanToots ThielmannsToots ThielmansToots ThielsmanToots ThilemannsToots ThilemansToots TielemansToots TihelemansToots-ThielemansTootstillimansТ. ТельмансТ. Тильманトゥーツ・シルマンストゥーツ・シールマンストゥーツ・シールマンス (Toots Thielemans)トゥーツ・シールマンス他Quincy Jones And His OrchestraThe George Shearing QuintetHenry Mancini And His OrchestraJaco Pastorius Big BandArtiesten Voor LevenslijnThe Oscar Peterson Big 6Toots Thielemans QuartetToots Thielemans And His OrchestraToots Thielemans DuoThe Bob ShotsGary McFarland & Co.The Secret 7Toots Thielemans And His American BandJazz Workshop, Ruhr Festival 1962Toots Thielemans TrioJaco Pastorius BandToots Thielemans & Son EnsembleToots Thielemans European Quartet + +121112The Four Seasons1960's American vocal pop group from New Jersey. +Inducted into Rock And Roll Hall of Fame in 1990 (Performer). +Still actively performing. Needs Votehttps://www.imdb.com/name/nm1797921/http://en.wikipedia.org/wiki/The_Four_Seasons_(group)https://thatfourseasonssound.typepad.com/https://www.allmusic.com/artist/frankie-valli-the-four-seasons-mn0000170518https://www.allmusic.com/artist/the-four-seasons-mn0000764185(Frankie Valli & The Four Seasons)4 - Season4 Season4 Seasons4 SeasowsFour SeasonFour SeasonsFour Seasons (Frankie Valli)Four Seasons Featuring Frankie ValliFour Seasons GroupFour Seasons QuartettFranki Valli & The Four SeasonsFranki Valli 4 SeasonsFrankie Valley & The Four SeasonsFrankie Valley & the Four SeasonsFrankie ValliFrankie Valli & The 4 SeasonsFrankie Valli & The 4th SeasonFrankie Valli & The Four SeasonFrankie Valli & The Four SeasonsFrankie Valli 4 SeasonsFrankie Valli And The 4 SeasonsFrankie Valli And The Four SeasonFrankie Valli And The Four SeasonsFrankie Valli With The Four SeasonsFrankie Valli Y The Four SeasonsFrankie Valli and the Four SeasonsFrankie Vallie & T. Four SeasonsFrankie Vallie & The 4 SeasonsFrankie Vallie & The Four SeasonsLas 4 EstacionesLas Cuatro EstacionesLes 4 EstacionesLos 4 RebeldesT. Four SeasonsThe 4 SeasonThe 4 SeasonsThe 4 Seasons Featuring The "Sound" Of Frankie ValliThe 4 SesaonsThe 4-seasonsThe Four SeasonThe Four Season'sThe Four Seasons Featuring Frankie ValliThe Four Seasons Frankie Valli &The Frankie Valli & Four SeasonsThe Seasonsthe Four Seasonsフォー・シーズンズThe Wonder Who?The KokomosBilly Dixon & The TopicsCharlie CalelloBob GaudioJerry CorbettaBob GrimmTim Stone (2)Larry LingleLee ShapiroNick MassiAl RuzickaTommy DeVitoGerry PolciDon CicconeJohn PaivaDemetri CallasJoseph LabracioFrancesco CastelluccioJohn Stefan (3)Gary Volpe + +121471Harry DiamondHarry DiamondMusic producerNeeds Votehttps://twitter.com/harrydiamondjnrhttps://www.instagram.com/harrydiamondmusic/DiamondH DiamondH. DiamondH.DiamondHarry DaimondHarry Diamond JrDistressed FrequenciesCajunCa-LoGroove CycloneEchoplex (2)Little DiamondThe Lost BrothersSunset StrippersSlip FrictionMy Digital EnemyCult 45Vada (6)Droid Army + +121767Steve PeachSteven Murray PeachElectronic dance music producer based in Sydney, Australia. +Founder of his own label Stereo Missile Recordings after his eponymous project [a=Stereo Missile]. +Has been also CEO of the PPCA (Phonographic Performance Co. of Australia) which licenses sound recordings on behalf of labels and artists.Needs VotePeachPeachyS PeachS. PeachS. PeachyS.PeachStephen PeachSteven PeachPeachy ProjectStereo MissileBliss Inc.ZanderCyprianThe Bluey Music Team + +122384Jackie McLeanJohn Lenwood McLeanAmerican jazz alto saxophonist +Born May 17, 1931 in New York City, New York, USA +Died March 31, 2006 in Hartford, Connecticut, USA (aged 74) +Father John McLean (died 1939) was a guitarist with [a332337]. Initially a bop orientated musician in the 1950s, Jackie McLean developed a freer approach in the 1960s influenced by [a224506]. With [a746340], he appeared in the Jack Gelber play "The Connection" at the Living Theatre, an off-Broadway venue, and in the 1961 film version directed by Shirley Clarke. After his Blue Note contract was terminated, McLean spent much of the 1970s and 1980s as a music educator, before reviving his performing career in the 1990s. +Needs Votehttps://www.theguardian.com/news/2006/apr/03/guardianobituaries.artsobituaries2https://www.nytimes.com/2006/04/03/arts/music/jackie-mclean-jazz-saxophonist-and-mentor-dies-at-74.htmlhttps://www.allaboutjazz.com/musicians/jackie-mclean/https://jazztimes.com/features/columns/jackie-mclean-1931-2006/https://www.newyorker.com/culture/goings-on/the-connection-on-stage-screen-and-diskhttps://www.jazzwise.com/news/article/farewell-to-jackie-mcleanhttps://www.bluenote.com/artist/jackie-mclean/http://en.wikipedia.org/wiki/Jackie_McLeanJ MacleanJ McLeanJ. MacLeanJ. Mc LeanJ. McCleanJ. McLeanJ. McleanJ.McLeanJack McLeanJackie MacleanJackie Mc LeanJackie McCleanJackie McLeaJacky McLeanMacLeanMacleanMc LeanMcCleanMcLeanMcleanP.Mc LeenR. McLeanジャッキー・マクリーンジャッキー・マックリーンFerris BenderThe Miles Davis SextetArt Blakey & The Jazz MessengersCharles Mingus Jazz WorkshopFreddie Redd QuartetMiles Davis And His BandGeorge Wallington QuintetThe Kenny Dorham QuintetJackie McLean QuintetJackie McLean & The Cosmic BrotherhoodJackie McLean SextetJackie McLean QuartetThe Mal Waldron SextetJackie McLean SeptetFreddie Redd QuintetJackie McLean & The MacBandTina Brooks QuintetMiles Davis And His Cool WailersArt Farmer / Jackie McLean QuintetSonny Clark Quintet + +122763Ray MantillaRaymond MantillaAmerican latin jazz drummer and percussionist. +Born June 22, 1934, Bronx, New York City. Died March 21, 2020 in New York City.Needs Votehttp://www.mantillamusic.com/https://en.wikipedia.org/wiki/Ray_Mantillahttps://www.allmusic.com/artist/ray-mantilla-mn0000407857MantillaR. MantillaRaymond MantillaRaymond MantilloThe Players AssociationArt Blakey & The Jazz MessengersM'Boom Re:percussion EnsembleLa Playa SextetThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsMingus Big BandMuhal Richard Abrams OctetErnie Krivda & FriendsRay Mantilla Space StationThe Pentagon (3)The Jazz Tribe (2)Ray Mantilla The European Space StationThe New Space Station + +123159Neil SedakaNeil Sedaka[b]For combined credits Sedaka / Cody please use [a=Phil Cody-Neil Sedaka][/b]. +American singer, pianist, composer and producer. Born, March 13, 1939, Brooklyn, New York, USA. +Neil Sedaka, in a recent 2010 interview, stated that it was the arrival of the British Invasion, most notably [a=The Beatles] who halted his singing career, in the early 60's. +Collaborating with songwriting partners, [a=Howard Greenfield] and [a=Phil Cody], he penned numerous hits written for [a=Connie Francis], [a=Carpenters], [a=Captain And Tennille] among others. He credits [a=Elton John] for reviving his singing career in the mid-70's. John signed him to his new [l12125] label in the United States and sang on "Bad Blood". That first LP couldn't have had a more appropriate title, simply "Sedaka's Back". +Married to [a=Leba Sedaka] since 11 September 1962 with whom they have a daughter, [a=Dara Sedaka] and a son, Marc. First cousin of [a260407].Needs Votehttp://neilsedaka.com/https://www.facebook.com/neilsedakamusic/https://twitter.com/neilsedakahttps://www.instagram.com/neilsedakamusic/https://www.youtube.com/user/NeilSedakaMusichttps://soundcloud.com/neil-sedakahttps://open.spotify.com/artist/5N6GwJzOcOY5kv8p0NjhYLhttps://music.apple.com/us/artist/neil-sedaka/181715https://web.archive.org/web/20090622170753/http://www.neilsedakaforfans.com/http://www.sedaka.be/intro.htmhttps://members.afm.org/im/neil-sedakahttp://en.wikipedia.org/wiki/Neil_Sedakahttps://www.feenotes.com/database/artists/sedaka-neil-13-march-1939-present/https://musicianbio.org/neil-sedaka/https://www.musicianguide.com/biographies/1608001146/Neil-Sedaka.htmlhttps://www.famousbirthdays.com/people/neil-sedaka.htmlhttps://www.geni.com/people/Neil-Sedaka/6000000000936872723https://www.astro.com/astro-databank/Sedaka,_Neilhttps://www.imdb.com/name/nm0781226/?ref_=fn_al_nm_1https://adp.library.ucsb.edu/names/209240F. SedakaN SedakaN, SedakaN. C. DarkerN. LedahaN. N. SedakaN. SadacaN. SadakaN. SedaKaN. SedacaN. SedackaN. SedakaN. SedekaN. SédakaN. セダカN.SedakaN.SédakaN.セダカNail SedakaNeal SedakaNeilNeil - SedakaNeil S.Neil SadakaNeil SedacaNeil Sedaka (With Friend)Neil SedakeNeil SedarkaNeil SedaxkaNeil SeltakáNeil SodakaNeil ZedakaNeil-SedakaNeill SedakaNell SedakaNelsedakaNiel SedakaNielsNiels SedakaNill SedakaSadakaSedackaSedajaSedakaSedaka NeilSedaka, NeilSedekaSekakaSekedaSetakaSmithАмениН. СедакаНийл СедакаНил СедакаР. СедакаСедакаנ. סדקהニール・セダカThe TokensPhil Cody-Neil SedakaGreenfield & Sedaka + +123414Jonah JonesRobert Elliott JonesAmerican jazz trumpet player, born 31 December 1909 in Louisville, Kentucky, USA, died 29 April 2000 in New York City, USA. + +Needs Votehttps://en.wikipedia.org/wiki/Jonah_Joneshttps://www.allmusic.com/artist/jonah-jones-mn0000261332https://adp.library.ucsb.edu/names/104916"Jonah" JonesJ JonesJ. JonesJohan JonesJonah Jones ShowJonesRobert Elliott JonesThe Jonah Jones QuartetCab Calloway And His OrchestraThe Jonah Jones QuartetCozy Cole All StarsBillie Holiday And Her OrchestraSidney Bechet And His Blue Note Jazz MenLionel Hampton And His OrchestraStuff Smith And His Onyx Club BoysTeddy Wilson And His OrchestraBenny Carter And His OrchestraJonah Jones And His CatsSam Price And His Kaycee StompersStuff Smith & His OrchestraIke Quebec SwingtetJonah Jones All-StarsMilt Hinton & His OrchestraGeorge Williams And His OrchestraLil Armstrong And Her DixielandersJonah Jones BandJonah Jones And His OrchestraThe Jonah Jones SextetJonah Jones And His Latin RhythmDick Porter And His OrchestraJonah Jones QuintetThe Keynoters (5) + +123766Tim HardinJames Timothy HardinAmerican folk musician, songwriter and composer, born 23 December 1941 in Eugene, Oregon, USA, died 29 December 1980 in Los Angeles, California, USA. +He wrote the Top 40 hit "If I Were a Carpenter", covered by, among others, Bobby Darin, Joan Baez, Johnny Cash, The Four Tops, and Robert Plant; his song "Reason to Believe" has been covered by many artists, including Rod Stewart (who had a chart hit with the song).Correcthttp://www.songsinger.info/thhttp://launch.groups.yahoo.com/group/timhardinhttp://en.wikipedia.org/wiki/Tim_HardinHarderHardinHardin TimHardingJ. HardinJ. T. HardinJ.T. HardinJ.T.HardinJames HardinJames T. HardinJames Timothy HardinT HardinT HardingT. HardenT. HardimT. HardinT. HardingT. HardonT.H.T.HardinT.J. HardinThe AuthorTim HandynTim HardenTim HardimTim HardingTim HardonTimothy HardinTimothy James HardinTin HardinTom Hardinטים הארדיןטים הרדיןThe Author (7) + +124568DJ ActivatorManuele TessarolloItalian hardstyle producer. +Needs Votehttp://djactivator.com/https://facebook.com/activatordjhttps://youtube.com/ActivatorTubehttps://soundcloud.com/djactivatorAcivatorActiActivatorOverdriveRadical CoreManuel EsT-78KnockoutDJ Stefano BonatoDJ MantesSpy-KoreOutlaw (5)Lo-Fi (3)J-Maican RaversDJ ActProzactManuel TessarolloActiDJ Ki?FeitaSubkillaT78Frank Snack + +125461Street ForceCorrectStreetforcePaul MaddoxO.G.R.AbandonAzure (5)Olive GroovesComedy DickWall Haddocks + +127383Art StewartArthur StewartAmerican producer, sound engineer, and composer worked for [l1723] since 1968Needs Votehttps://en.wikipedia.org/wiki/Art_Stewart_(producer)https://www.youtube.com/watch?v=1FUUDjMykOgA StewartA. StewartArmin StewartArt "Run That Back" StewartArt SewartArthur StewartEboni Band + +127646Nik DentonNik is a House / Hard House producer, remixer, DJ and the driving force behind the formidable [b]Toolbox Music[/b] group, which includes a Toolbox Distribution division, the [l=Toolbox Recordings], [l=Toolbox House], [l=Hammerheads] & [l=Footloose Records] labels. From the UKNeeds Votehttps://www.facebook.com/toolboxdjnikdentonDentonN DentonN. DentonN.DentonNick DentonNik DenonPulse FictionNSDGlam LoversPippa Cha ChaNik Denton vs Paul KingThe Morning BoysPip & Pen + +128044Woody (4)Lee WoodNeeds VoteSW1 + +128046Woody (5)UK Hardcore (Breakbeat) artist.Needs VoteP. Woodburn + +128396Miroslav VitousMiroslav VitoušCzech jazz bassist, composer, band leader, educator. +Born December 6, 1947 in Prague. Brother of [a=Alan Vitouš], son of [a=Josef Vitouš]. U.S. resident 1966–1988. Cofounder of [a=Weather Report] in 1970.Needs Votehttps://en.wikipedia.org/wiki/Miroslav_Vitou%C5%A1https://www.facebook.com/miroslavvitousartist/https://www.allmusic.com/artist/miroslav-vitous-mn0000499683/biographyhttps://myspace.com/miroslavvitousM VitousM. VitousM. VitoušM. VituosM.VitousMiroslavMiroslav VitiousMiroslav VitiozMiroslav VitoušMiroslav VituosVitousWeather ReportStan Getz QuartetJunior TrioMiroslav Vitous GroupThe Group (13)Quatre (3)The Bostonian FriendsRoy Ayers QuartetRenolds Jazz OrchestraNow He Sings, Now He Sobs Trio + +128576Josh WhiteJoshua Daniel White, Sr.Born February 11, 1914 in Greenville, South Carolina, died September 5, 1969 in Manhasset, N.Y. +American singer, guitarist, songwriter, actor, and civil rights activist. +Some of his recordings in the mid-1930s were released as by [a=Pinewood Tom]. + +He was one of the most popular and influential folksingers in America in the mid-20th century. His most famous song, “One Meat Ball,” is about a poor man who has little money to buy dinner and who gets little sympathy from the waiter serving him. +The folk music genre has often had a strong social and political foundation, and White’s career is a clear example of that; he sang for President Franklin Roosevelt at the White House in the 1940s, he suffered from the effects of McCarthyism in the 1950s, and he was a featured performer at the 1963 March on Washington. +Father of [a=Josh White, Jr.] and [a=Beverly White].Needs Votehttp://en.wikipedia.org/wiki/Josh_Whitehttps://adp.library.ucsb.edu/names/210959https://www.findagrave.com/memorial/6201716/joshua-daniel-whiteJ. WhiteJoshJosh White (Pinewood Tom)Josh White (The Singing Christian)Josh White And His GuitarJosh White Sr.Josh White, Sr.Joshua WhiteJoshua White & His GuitarJoshua White (The Singing Christian)Joshua White As Pinewood TomWhiteThe Singing ChristianPinewood TomPaul La FranceTippy BartonCarver BoysJosh White & His CaroliniansThe Union BoysJosh White TrioPinewood Tom And His Blues HoundsThe Carson BoysThe Josh White Orchestra + +129038Rundell & MaddoxNeeds VoteJon Rundell & Paul MaddoxRumble & MaddoxPaul MaddoxJon Rundell + +129089Sara MartinVaudeville blues singer, born 18 June 1884 in Louisville, Kentucky, died of a stroke in the same city, 24 May 1955. She recorded extensively for [l=OKeh] 1922-1927, with a handful sessions for [l=QRS Records] in 1928.Needs Votehttps://en.wikipedia.org/wiki/Sara_Martin#:~:text=Sara%20Martin%20(June%2018%2C%201884,Margaret%20Johnson%20and%20Sally%20Roberts.https://www.allaboutbluesmusic.com/sara-martin/https://www.kfw.org/feminist-blog/spotlight-sara-martin-blues-pioneer/https://www.encyclopedia.com/education/news-wires-white-papers-and-books/martin-sara-1884-1955https://aaregistry.org/story/sara-martin-blues-singer-born/https://louisvilleinsight.com/archived-news/legendary-louisville-blues-singer-sara-martin-finally-grave-marker/https://www.allmusic.com/artist/sara-martin-mn0000298166/biographyhttps://adp.library.ucsb.edu/names/109156MartinS. MartinSarah MartinСара МартинSally Roberts + +129347Ramon MorrisJazz/funk saxophonist.Needs Votehttps://jazzburgher.ning.com/group/obituaries/forum/topics/in-memory-of-the-late-ramon-morris-who-passed-away-this-yearR. MorrisRammon MorrisRay MorosRay MorrisRaymond MorrisArt Blakey & The Jazz MessengersRashied Ali Quintet + +129365Bill DoggettWilliam Ballard DoggettAmerican jazz and R&B pianist, organist, and composer. +b. 16th February 1916, Philadelphia, USA +d. 13th November 1996Needs Votehttps://www.billdoggettcentennial.com/https://billdoggettproductions.com/bill-doggett-organist-pianist.htmlhttps://en.wikipedia.org/wiki/Bill_Doggetthttps://adp.library.ucsb.edu/names/106060"Big Dog"B. DogettB. DoggettB. DoggitB.DoggettB.DoggitBig DogBill "Honky Tonk" DoggettBill "Mr. Honky Tonk" DoggettBill BoggettBill DodgettBill DogettBill DoggattBill DoggeilBill DoggertBill DoggetBill Doggett Son Orgue Et Ses RythmesBill Doggett, His Organ and ComboBill DoggetteBill DorgetBill DuggettBilly DoggettDogettDoggattDoggeDoggerDoggetDoggettDoggett, W.DoggittGoggettJoggettW. DoggetW. DoggettW.DoggettWild Bill DoggettWilliam "Bill" DoggettWilliam Ballard "Bill" DoggettWilliam Doggettビル・ドゲットビール・ドゲットLouis Jordan And His Tympany FiveBill Doggett ComboLucky Millinder And His OrchestraIllinois Jacquet And His OrchestraIllinois Jacquet SextetIllinois Jacquet And His All StarsLouis Jordan And His OrchestraBill Doggett's OctetJimmy Mundy OrchestraBill Doggett And His OrchestraBill Doggett TrioBill Doggett QuintetKarl George Octet + +129371Mickey MurrayR&B singer / songwriter, from Augusta, Georgia. Brother of [a618309]Needs Votehttps://repertoire.bmi.com/Search/Catalog?num=m01hX8Ohes7dT5Ti%252facPfw%253d%253d&cae=0ZXQ9xuqsvnGvHi5CqzgEw%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Mickey%20Murray%22%2C%22Sub_Search_Text%22%3A%22%22%2C%22Main_Search%22%3A%22Catalog%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A20%2C%22Page_Number%22%3A1%2C%22Part_Type%22%3A%22WriterList%22%2C%22Part_Id%22%3A%22m01hX8Ohes7dT5Ti%252facPfw%253d%253d%22%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3A%22Writer%2FComposer%22%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=kJU0oBsMXpxafbSwXsKwYQ%253d%253dM. MurrayMick MurrayMicky MurrayMurrayThe Mighty Mickey MurrayWillie MurrayThe Jungle BandThe G.A.'s + +129731Jimmy ScottJames Victor ScottAmerican jazz vocalist (born July 17, 1925, Cleveland, Ohio, USA - died June 12, 2014, Las Vegas, Nevada, USA) also known as "Little" Jimmy Scott. +He became famous for his unusually high contralto voice, which was due to Kallmann's syndrome, a very rare genetic condition. The condition stunted his growth at four feet eleven inches until, at the age of 37, he grew another eight inches to the height of five feet seven inches. The condition prevented him from reaching puberty, leaving him with a high, undeveloped voice. + +The singer's big break came in 1949, when [a136133] hired him on the recommendation of [a322323] and billed him as "Little Jimmy Scott" and had a hit with "Everybody's Somebody's Fool". This song and three others recorded with the Hampton orchestra, along with early 1950's solo sides for the [l39155] and [l14624] labels, were reissued in 1999 on the [l1071] CD "Everybody's Somebody's Fool". Also released that year was the three-CD "The Savoy Years and More" containing his 1952 recordings for [l35931] Records and his 1955-75 output for [l33726].Needs Votehttps://web.archive.org/web/2014/http://www.jimmyscottofficialwebsite.org/homepage.htmhttps://en.wikipedia.org/wiki/Jimmy_Scott'Little' Jimmy ScottJ. ScottJames V. ScottJim ScottJimmie ScottLittle Jimmy ScottScottThe Legendary Little Jimmy Scottジミー・スコットLionel Hampton And His Orchestra + +129797Deeprose & ThompsonAdam Deeprose & Matthew ThompsonCorrecthttp://www.deeproseandthompson.co.ukDeeprose And Thompson + +129798Jon RundellJon RundellHouse/Techno/Electro DJ & producer from London, UK. +Ran [l=Intec Records] (until 2006), now [l=Intec Digital] (since 2010) on behalf of Carl Cox. +Needs Votehttp://www.jonrundell.comhttp://www.facebook.com/jonrundelldjhttp://www.instagram.com/jon_rundellhttp://www.myspace.com/jonrundellhttp://www.songkick.com/artists/897036-jon-rundellhttp://soundcloud.com/jon-rundellhttp://twitter.com/Jon_RundellJohn RundellRundellSamuel E Reeve & Jon RundellRundell & MaddoxRumble & Maddox + +129805Wes MontgomeryJohn Leslie MontgomeryAmerican jazz guitarist +Born 6 March 1923 in Indianapolis, Indiana, USA, died 15 June 1968 (sudden heart attack) in Indianapolis, Indiana, USA (aged 45). + +Wes is known for the use of his thumb rather than a plectrum; his trademark use of octaves in both melody and improvisation; his highly original melodic and rhythmic imagination. + +Brother of the pianist and vibraphonist [a=Buddy Montgomery] (1930–2009), and of the bassist [a=Monk Montgomery] (1921–1982). Uncle of [a=Arthur Miles] (1949-2024).Needs Votehttp://www.wesmontgomery.com/https://wesmontgomery.bandcamp.com/https://en.wikipedia.org/wiki/Wes_Montgomeryhttps://www.imdb.com/name/nm0599948/https://myspace.com/wesmontgomeryfanshttps://adp.library.ucsb.edu/names/105082https://www.allmusic.com/artist/wes-montgomery-mn0000248392J. L. (Wes) MontgomeryJ. L. MontgomeryJ. MontgomeryJ.L. MontgomeryJohn 'Wes' MontgomeryJohn L 'Wes' MontgomeryJohn L (Wes) MontgomeryJohn L MontgomeryJohn L. (Wes) MontgomeryJohn L. (Wes) MontgomeryJohn L. MontgomeryJohn L. Wes MontgomeryJohn Leslie " Wes" MontgomeryJohn Leslie "Wes Montgomery"John Leslie "Wes" MontgomeryJohn Leslie MontgomeryJohn Leslie «Wes» MontgomeryJohn Leslie «wes» MontgomeryJohn Leslie “Wes” MontgomeryJohn MontgomeryL. MontgomeryLeslie "Wes" MontgomeryMontgomeryW. MontgomeryW.MontgomeryWesWes MantogomeryWes Montgome:yWes MontogmeryWess MontgomeryWest MontgomeryWest Montgomery & Orch.West Montgomery And OrchestraВ. МонтгомериУ. МонтгомериУес МонтгомериУэс Монтгомериウェス・モンゴメリーJohn Leslie (8)The Wes Montgomery QuartetLionel Hampton And His OrchestraThe Montgomery BrothersThe Wes Montgomery TrioThe MastersoundsWes Montgomery-Harold Land QuartetWes Montgomery-Harold Land QuintetWes Montgomery GroupThe Montgomery-Johnson QuintetWes Montgomery All-StarsGene Morris And His Hamptones + +130243Alessandro AlessandroniAlessandro AlessandroniAlessandro Alessandroni (born March 18, 1925, Rome, Italy - died March 26, 2017, Rome, Italy) was an Italian composer, arranger, vocalist, whistler, conductor and multi-instrumentalist (guitar, sitar, keyboards, mandolin, mandocello, accordion, banjo, flute, harmonica, jew's harp, recorder, melodica and ocarina). He was the founder of the vocal ensemble [a322565]. Husband of [a2545313]. Previously married to [a361423] until her death in 1984, with whom he had two children: [a454181] and [a4240279].Needs Votehttp://www.alessandroni.com/https://www.facebook.com/alessandroalessandroniofficial/https://en.wikipedia.org/wiki/Alessandro_Alessandronihttps://it.wikipedia.org/wiki/Alessandro_Alessandronihttps://www.imdb.com/name/nm0018145/A. AlessandroniA. Aless.A. AlessandroA. AlessandroniA. AllesandroniA. AllessandroniA.AlessandroniAlesandro AlessandroniAlessandoniAlessandro AlessandriniAlessandro Alessandroni E Il Suo ComplessoAlessandro AllessandroniAlessandroniAlessandroni E La Sua Chitarra A 12 CordeAlexandro AlesandroniAlexandro AlessandroniAllessandroniM. AlessandroniMaestro Alessandro AlessandroniOrch. A. AlessandroniS. AlessandroniSandroSandro AlessandroniBraenMeriggiRon Alexander (4)I Cantori Moderni di AlessandroniAlessandro Alessandroni E Il Suo ComplessoAlessandro Alessandroni And His OrchestraQuartetto Due + DueQuartetto CaravelsThe Braen's MachineLuis Enriquez And His Electronic MenOrchestra E Coro Di Alessandro AlessandroniWestern Group (2) + +130593Dusko GoykovichDuško Gojković - Душко ГојковићSerbian jazz musician, trumpeter, and flugelhorn player, born October 14, 1931 in Jajce, Yugoslavia (now Bosnia-Herzegovina) - died April 5, 2023 in Munich, Germany.Needs Votehttp://www.duskogojkovic.com/https://duskogoykovich.bandcamp.com/http://cosmicsounds-london.com/DUSKO/goykovic.htmlhttp://en.wikipedia.org/wiki/Dusko_Goykovichhttps://www.imdb.com/name/nm2402027/https://www.imdb.com/name/nm10653425/D. GojkovicD. GojkovićD. GojkovičD. GojovicD. GoykovichD. GoykovitchDusan GojkovicDusan GojkvicDusan GoykovicDusan GoykovichDusan GoykovitchDusco GaykovichDusco GojkovicDusco GoykovicDusco GoykovichDusko GoikovichDusko GojkovicDusko GojkovichDusko GojkovićDusko GojkowicDusko GoykevichDusko GoykovicDusko Goykovich (Geb. 1931)Dusko Goykovich With StringsDusko GregovitchDusko GuyvohicDusko GöijkovicDuskop GojkovicDušan GojkovićDuška GojkovićaDuško GojkovicDuško GojkovićDuško GojkovičGojkovicGojkovic D.GojkovićGoykocichGoykovicGoykovichGoykovich, DuskoGusko GoykovichДушко Гојковићダスコ・ゴイコビッチPeter Herbolzheimer Rhythm Combination & BrassClarke-Boland Big BandThe George Gruntz Concert Jazz BandWoody Herman And His OrchestraFrancy Boland And OrchestraFrankfurt All-StarsThe NDR Big BandNicolas Simion GroupGil Cuppini QuintetWoody Herman And The Swingin' HerdCertain Lions & TigersThe Paul Nero SoundsThe Band (7)Jazz In The ClassroomKenny Clarke - Francy Boland OctetMunich Big BandBob Elger And His OrchestraDusko Goykovich ComboPer Husby OrchestraDRS Big BandGil Cuppini Big BandBerlin Big BandAlbert Mangelsdorff JazztetThe International Youth BandThe European All StarsLouis Armstrong Newport International Jazz BandThe Cees Slinger OctetDusko Gojkovic QuintettIngfried Hoffmann Big BandYU All Stars 1977Dusko Goykovich OctetThe Bridge (20)Yugoslav Export Jazz StarsDusko Goykovich And His MusicPaul Kuhn And The BestPop-Orchester Dusko GoykovichOscar Pettiford & FriendsThe Duško Gojković SextetStraight Six (2)Dusko Goykovich Big BandJon Hendricks - Johnny Griffin GroupSummit Big BandDusko Goykovich-Joe Haider QuintettTorino Jazz OrchestraDusko Goykovich QuartetBebop CityTrumpets & Rhythm Unit + +130735Nick RowlandNicholas RowlandHard dance DJ, producer & remixer from Cardiff, UK.Needs Votehttps://myspace.com/nrowlandhttp://web.archive.org/web/20050405223934/http://www.nrmusic.net/http://web.archive.org/web/20080224061742/http://www.nrmusic.net/http://web.archive.org/web/20090708080732/http://www.nrmusic.net/http://web.archive.org/web/20111011193545/http://www.nrmusic.net/https://www.facebook.com/nickrowlandmusicN RowlandN. RowlandN.RowlandNik RowlandRowlandSeenOneResearch & DevelopmentNick Rowland & Dave WrightPBS (Phatt Bloke & Slim)Nick Rafferty & The CoalitionThe Coalition (2)NR²ExposeGlobal State Allstars + +130985Tony De LeonTony De LeonHard house DJ & producer from Dudley. Had weekly shows on pirates Groove FM (Dudley), Real FM (Birmingham) & a monthly show on Dimension FM (Dudley).Needs Votehttps://m.soundcloud.com/tony-de-leonAJD + +131309Dudley SimpsonDudley George SimpsonDudley Simpson (born 4 October 1922 – died 4 November 2017) was an Australian composer and conductor. He was the Principal Conductor of the [a855061] for three years, although he is best known for his work as a composer on British television, especially his long association with the BBC science-fiction series [a171721], for which he composed incidental music during the 1960s and 1970s.Needs Votehttps://en.wikipedia.org/wiki/Dudley_Simpsonhttps://www.imdb.com/name/nm0800981/D. SimpsonSimpsonDudley Simpson OrchestraElectrophon (2)Orchestra Of The Royal Opera House, Covent Garden + +131320Gary WrightGary Malcolm WrightAmerican born singer/songwriter & keyboard player and founding member of UK sixties rockers [a=Spooky Tooth]. +Born on April 26, 1943 in Cresskill, New Jersey, USA. +Died on September 4, 2023 in Palos Verdes Estates, California, USA. +Brother of [a=Beverly Wright (3)] and [a=Lorna Wright] +[b]Not to be confused with New York City based producer / mixer [a=Gary Wright (3)] (Gary Thomas Wright).[/b] +A former child actor, he performed on Broadway in the hit musical "Fanny" before studying medicine and then psychology in New York City and Berlin. In 1959, he made his first commercial recording, with [a=Billy Markle], credited to [a=Gary And Billy]. After meeting [a=Chris Blackwell] (of [l=Island Records]) in Europe in 1967, het moved to London, where he formed Spooky Tooth. He also served as the band's principal songwriter on their recordings. His solo album "[m=292997]" in 1971 coincided with the formation of his short-lived band [a=Wonderwheel (2)]. Wright made classic solo albums in the Seventies and became an in demand session musician with artists like [a=George Harrison], [a=Joe Cocker], [a=Elton John], [a=Steve Winwood] as well as [a=Busta Rhymes], [a=Salt 'N' Pepa], [a=Eminem] and [a=Joan Osborne]. He worked with [l407395] and [a17207] as a producer after the break up of Spooky Tooth. He turned to film soundtrack work in the early 1980s. He produced his own and his son's albums. +He was married to [a=Tina Wright]. Brother of [a=Lorna Wright], father of [a5006964]. He was the piano player on [m330416].Needs Votehttps://www.facebook.com/OfficialGaryWrighthttps://x.com/garyxwrighthttps://www.youtube.com/user/GaryWrightOfficialhttps://soundcloud.com/garywrightofficialhttps://en.wikipedia.org/wiki/Gary_Wrighthttps://www.hemifran.com/artist/Gary%20Wright/https://www.allmusic.com/artist/gary-wright-mn0000191006Cary - WrightCary/WrightG WrightG. M. WrightG. WrightG. WriteG.WrightGarry WrightGaryGary / WrightGary Malcolm WrightGary Malcom WrightGary RightGary WriteM. WrightWrightWriteГари Райтゲイリー・ライトDigital AirSpooky ToothWonderwheel (2)The BuggsRingo Starr And His All-Starr BandThe Coachmen VGary And Billy + +131441Richard GottehrerRichard David GottehrerAmerican producer, songwriter and label executive. +Born: June 12, 1940 in The Bronx, New York, USA. + +He began his career in [l=Brill Building]. +After his early 60's No.1's with [a=The Angels (3)]'s "My Boyfriend's Back", [a=McCoys]' "Hang On Sloopy" and [a=The Strangeloves]' "I Want Candy", he co-founded [l=Sire] with [a=Seymour Stein] in 1966. He has produced through the years [a=Blondie], [a=Go-Go's], [a=Richard Hell] etc. +In 1997, he co-founded [l=The Orchard], a digital music distribution company, with [a=Scott Cohen]. +His companies are [l=Instant Records Production], [l=Instant Records, Inc.] and the label [l=Instant Records (11)]. In 2010 he relaunched [l=Blue Horizon] (as [l=Blue Horizon (3)] with new logo).Needs Votehttps://www.facebook.com/profile.php?id=100005005031681https://twitter.com/rgottehrerhttps://www.instagram.com/richardgottehrer/?hl=enhttp://en.wikipedia.org/wiki/Richard_Gottehrerhttps://www.crunchbase.com/person/richard-gottehrer#section-overviewhttps://www.bloomberg.com/research/stocks/private/person.asp?personId=2989519&privcapId=2989549https://musicianbio.org/richard-gottehrer/B. GottehrerCotthrerFotteherGattehrerGoggehrerGolteherGoltehrerGolttehrerGortehrerGotethrerGothehrerGotheverGottGottchrerGottehGottehderGotteherGotteheverGottehreGottehrerGottehrer Richard DGottehrer, R.GottehresGottehreyGottenheverGottenhrenGottenhrerGottenrekGottenrerGottererGotterherGotterhrerGotthererGotthrerGotttehrerGuttehrerR GottehrerR. GottehrerR. D. GottehrerR. GoettehrerR. GotteherR. GottehererR. GottehrarR. GottehrerR. GottenhrerR. GotterherR. GotthererR. GttehrerR.GottehrerR.GotthererRichard D. GottehrerRichard GoettehrerRichard GotteherRichard GottehererRichard GottenherRichard GottenheverRichard GottenhrerRichard GotteraRichard GottererRichard GotterhrerRichard GottgarioRichard GotthererRichardGottehrerRichie GottehrerRichie GotthererRitchie GothrerRitchie GottehrerР. ГотърърThe StrangelovesFGG ProductionsThe Beach-NutsTroy & The T-BirdsFeldman, Goldstein, GottehrerThe Wildcats (9)Ten Broken Hearts + +131666Azure (5)Paul MaddoxCorrectPaul MaddoxO.G.R.AbandonStreet ForceOlive GroovesComedy DickWall Haddocks + +131879Maxi Anderson[b]American soul singer - songwriter - session artist - arranger - contractor[/b] + +She lives and works in Los Angeles, California. +Contractor of Maxical Music. +Needs Votehttps://www.linkedin.com/in/maxi-anderson-11a17617https://www.allmusic.com/artist/maxi-anderson-mn0000395489AndersonM. AndersonMax AndersonMaxiMaxi AndersenMaxie AndersonMaxim AndersonMaxin AndersonMaxine "Maxi" AndersonMaxine Andersonマキシン・アンダーソンThe Andraé Crouch ChoirThe Andraé Crouch SingersThe Chocolate Jam Co.Our Lady Of Perpetual Tears Choir + +133972Carl NicholsonCarl Ryan NicholsonHard House / Hard Trance DJ / producer from Reading, Berkshire, England, UK. +Founder of digital labels [l=Presence Recordings] and [l=CN Recordings]. +Starting 2013, he moved towards Trance / Tech Trance under the alias [a=Nicholson (2)]. +Contact: nicholson@nicholsonworld.net / djcarlnicholson@hotmail.comNeeds Votehttp://www.nicholsonworld.net/http://www.facebook.com/NicholsonHardTrancehttp://twitter.com/carlnicholsonhttp://myspace.com/carlnicholsonhttp://soundcloud.com/nicholsonofficialhttp://open.spotify.com/artist/4zXPxI7vXHH4b5UaxW72a6C. NicholsonC.NicholsonCarl Ryan NicholsonNicholsonNicholson (2)Devil's Advocate + +134065Marianne PousseurBelgian soprano vocalist. Born 1961. +Daughter of [a1715187] and [a104514].Needs Votehttp://www.khroma.eu/pousseur.htmPousseurCollegium VocaleLa Grande Formation + +134284KontaktScott Attrill & Jim SullivanCorrectKontactVinylgroover & The Red HedVGT3rd SourceVinylgroover & TrixxySelectBam Bam & PebblesSound AssassinsVG 2000Hyperdrive (2)Elevate (2)Promised Land (2)Street TalkStargate (5)Lost Boys (3)Techno PhobicSJ ProjectLoop (9)Era (6)ScintillatorBlack & White (19)BPM (14)Jim SullivanScott Attrill + +134700Tony HatchAnthony Peter HatchTony Hatch (born 30 June 1939, Pinner, Middlesex, England) is a British composer, songwriter, pianist, producer and arranger. He was married to [a=Jackie Trent] from 1966 until their divorce in 2002, with whom he wrote many songs. They also started the music publishing company [l91884]. Inducted into the Songwriters Hall of Fame in 2013Needs Votehttps://tonyhatch.co.uk/https://www.spectropop.com/TonyHatch/https://en.wikipedia.org/wiki/Tony_Hatchhttps://www.imdb.com/name/nm0368754/A. HatchA. P HatchA. P. HatchA.P. HatchAnthonyAnthony HatchAnthony Peter HatchAntony HatchD. HatchGatchH. TonyHarshHatchHatch Anthony PeterHatch TonyHatehHatschHutchI. HatchJony HatchM. AnthonyMark AnthonyMark Anthony/Kieth HatchMatchPaul HatchPeter HatchR. ClarkT HatchT, HatchT. HatchT. Ha tchT. HatchT. HatchsT. HtachT.H.T.HatchTetschToni HalchToni HatchToni Hatch Y Su OrquestaTonny HatchTony HotchTony MatchTony NatchTonyHatchhatchТ. ХачFred NightingaleMark Anthony (7)Antonio Pedro HatchTony Hatch OrchestraThe Tony Hatch SoundTony Hatch & The Satin BrassJackie Trent & Tony HatchThe ThemeweaversThe Tony Hatch SingersThe Tony Hatch Singers And SwingersChor Und Orchester Tony HatchThe Tony Hatch Group + +134727Cortez & YorkJason Cormack & Phil YorkScottish Hard Dance DJ & Production duo. Phil runs the [l=Hard Timez] collective of labels and [l=Nuklearpuppy Records] with Jason.CorrectJason Cortez & Phil YorkJason Cortez and Phil YorkJason Cortez, Phil YorkPhil Cortez & YorkYork & CortezPhil YorkJason Cortez + +135238Tony Jones (2)American funk/soul/disco producer, composer, guitarist and bass player, from Philadelphia, MA. +Born ? - died January 2022. +Father of [a=La' Trese]. +[b]For the [l=Motown] coordinator and executive-producer please use [a=Tony Jones (15)][/b]. +He was formerly the musical director for the R&B legendary vocal group "[a=Sister Sledge]" and then was a major musical contributor of the "Sound of Philadelphia", as a staff songwriter, arranger and musician on numerous hit records. He worked with such artists as Nina Simone, Grover Washington, Jr., Norman Connors, Jean Carne, Michael Henderson, Angela Bofield, Eartha Kitt, Ester Phillips, Sister Sledge, Sonny Stitt, Eddie Cleanhead Vinson, Taj Mahal, Buddy Guy, Larry Coryell, Big Mama Thornton, Ali Woodson, The Temptations, Tom Brown, Ronnie Laws, Edward Hawkins Tri-State Mass Choir, Pharaoh Sanders, Pacquito D'Rivera, Billy Paul, Edwin Star, Freda Payne, Martha Reeves, and many more.Needs Votehttps://web.archive.org/web/20210725021430/https://www.tonytntjones.com/aboutA. JonesJonesT. JonesTony "TNT" JonesTony JamesTony JhonsTony T N T JonesTony “TNT” JonesOsiris (2)The Jungle BandThe Cosmic Lounge OrchestraThe G.A.'s + +135244Gladys KnightGladys Maria KnightAmerican female soul singer most famous for fronting [a30135]. Born 28th May 1944, Atlanta, Georgia, U.S.A. Sister of [a=Bubba Knight] and [a6749143] and cousin of [a=Edward Patten] and [a=William Guest].Needs Votehttps://gladysknight.com/https://www.imdb.com/name/nm0460912/https://www.instagram.com/msgladysknighthttps://twitter.com/MsGladysKnighthttps://en.wikipedia.org/wiki/Gladys_Knighthttps://adp.library.ucsb.edu/names/325550C. KnightClady's KnightG. KnightG. NightG.KnightGladis KnightGlady KnightGlady's KnightGladysGladys DnightGladys Knight & The PipsGladys Maria KnightGladys Marie KnightGladys NightGradys KnightKnightГледис НайтGladys Knight And The PipsThe PipsDionne & FriendsArtists For Haiti + +135396Ron LawrenceAmerican viola player + +Please check your submissions. +There are at least two different Ron Lawrence here. +Submitting to the bass player use [a=Ron Lawrence (2)] +Needs VoteRon LawwrenceRonald LawrenceThe Soldier String QuartetOrchestra Of St. Luke'sSirius String QuartetIntercity String QuartetQuartette IndigoC.T. String QuartetDominic Duval's String QuartetTed Nash Double QuartetCuartetango String QuartetDave Eggar QuartetThe Fred Hersch EnsembleThe Akua Dixon String Quintet + +135849Harry LookofskyAmerican jazz and pop violinist, bandleader and producer +Born October 1, 1913 in Paducah, Kentucky, died June 8, 1998 in York, Pennsylvania + +Father of keyboardist-songwriter [a=Michael Lookofsky] (alias [a=Michael Brown (10)]). +Lookofsky co-produced the pop hit, "Walk Away Renée", by The Left Banke, which was co-written by his son. The song hit #5 in the U.S. in 1966 and was the band's biggest hit. +Lookofsky played for five years with the St. Louis Symphony then came to New York to join the NBC Symphony when it was formed in 1938 for Arturo Toscanini, staying a dozen years. In 1950, he joined ABC in New York, including a stint as concert master for Paul Whiteman. +Lookofsky became the first to figure out how to successfully play be-bop on the violin (as well as on the rarely heard tenor violin). +Lookofsky's violin was made by Joseph Guarnerius del Gesu in 1726, which costs him upwards of $30,000.Needs Votehttps://en.wikipedia.org/wiki/Harry_Lookofskyhttps://www.allmusic.com/artist/harry-lookofsky-mn0000847739/biographyhttps://www.jonroseweb.com/c_articles_stringsville.phphttps://www.allaboutjazz.com/musicians/harry-lookofskyH. LookofskyHarold LookofskyHarry L.Harry LokofskyHarry LoofoskyHarry LookfoskyHarry LookofskeyHarry LookofskiHarry LookoofskyHarry LookotskyHarry LookouskyHarry LookovskyHarry LoukofskyHarryy LookofskyHary LookofskyHary LookofslyHary LookovslyLookofskyГарри ЛукофскиHash BrownGil Evans And His OrchestraNBC Symphony OrchestraHash Brown & His OrchestraAl Cohn And His OrchestraHash Brown And His Ignunt StringsHarry Lookofsky StringsHarry Lookofsky SeptetHarry Lookofsky Quintet + +135870Bob CranshawMelbourne Robert CranshawBob Cranshaw (born December 3, 1932, Evanston, Illinois, USA - died November 2, 2016, Manhattan, New York, USA) was an American jazz bassist.Needs Votehttps://en.wikipedia.org/wiki/Bob_Cranshawhttps://www.bluenote.com/artist/bob-cranshaw/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13628a6ffbcef473c877881bb5c3bcc23920e/biographyhttps://www.allmusic.com/artist/bob-cranshaw-mn0000065862/biographyhttps://www.imdb.com/name/nm1045096/"Bob" CranshawB. CranshawBob Cf CranshawBob CrankshawBob CranshowBob CrashawBob CrenshawBobby CranshawCranshawM. CranshawMel CranshawMelbourne CranshawБоб Креншоボブ・クランショウGil Evans And His OrchestraJunior Mance TrioSlide Hampton OrchestraThe Horace Silver QuintetMJT+3Paul Bley TrioBarry Harris TrioOliver Nelson And His OrchestraShirley Scott TrioMilt Jackson And His Gold Medal WinnersMilt Jackson QuintetJohnny Lytle QuintetThe Duke Pearson NonetPepper Adams OctetMax Roach QuintetThe Horace Silver SextetSonny Rollins TrioLee Morgan QuintetCy Touff QuintetSonny Criss QuartetCollins-Shepley GalaxyBilly Taylor QuartetThe Duke Pearson QuintetJimmy Jones TrioDuke Pearson's Big BandHoward Johnson & GravityMassimo Faraò TrioThe Quincy Jones Big BandThe Barry Harris SextetClark Terry / Bob Brookmeyer QuintetThe Young Lions (7)The Charlie Rouse QuartetZoot Sims / Jimmy Rowles QuartetThe Riverside Reunion BandJoe Williams & FriendsLarry Willis TrioSal Nistico QuintetSonny Rollins / Don Cherry QuartetJim Mitchell SextetLouis Smith QuartetJim Mitchell QuintetSonny Rollins And FriendsThe Fisher Fidelity Standard Jazz Band + +135871Billy HigginsAmerican jazz drummer; born October 11, 1936 in Los Angeles, CA, USA, died May 03, 2001 in Inglewood, CA, USA + +For the American singer and songwriter (1888-1937), see [a=Billy Higgins (2)]. +Needs Votehttps://en.wikipedia.org/wiki/Billy_Higginshttps://www.britannica.com/biography/Billy-Higginshttps://www.moderndrummer.com/2011/11/billy-higgins/https://www.drummerworld.com/drummers/Billy_Higgins.htmlhttps://adp.library.ucsb.edu/names/321262(Abdullah) Billy HigginsB. HigginsBill HigginsBilly HiggensBilly HigginBilly HiggingBilly WigginsBily HigginsHigginsビリー・ヒギンスビリー・ヒギンズピリー・ヒギンズThe John Coltrane QuartetThe Thelonious Monk QuartetThe Joe Castro QuartetThe Ornette Coleman QuartetThe Ornette Coleman Double QuartetClifford Jordan QuartetDavid Murray Big BandGary Bartz QuintetThe Descendants Of Mike And PhoebeJunko Onishi TrioPaul Bley QuintetGeorge Cables TrioThe Charles Tolliver QuintetSteve Grossman QuartetThe Brass CompanyTsuyoshi Yamamoto TrioArt Farmer QuartetTeddy Edwards QuartetCal Tjader SextetTete Montoliu TrioAl Haig TrioThe Cedar Walton / Hank Mobley QuintetJackie McLean QuintetOrnette Coleman QuintetTimeless All StarsDexter Gordon QuartetArt Farmer QuintetJoshua Redman QuartetJoe Bonner TrioMal Waldron QuartetThe James WIlliams TrioThe Paul Horn QuintetCedar Walton QuartetEugen Cicero TrioJackie McLean QuartetCedar Walton TrioLew Tabackin TrioCedar Walton QuintetRed Mitchell QuartetHilton Ruiz TrioThe Barry Harris SextetRandy Weston's African RhythmsHarry Verbeke / Rob Agerbeek QuartetFrank Morgan QuintetClifford Jordan And The Magic TriangleEastern RebellionSlide Hampton QuintetTed Rosenthal TrioThe Pentagon (3)Billy Higgins QuintetRichie Cole QuintetCecil Taylor All StarsToshiko Akiyoshi QuartetSonny Rollins / Don Cherry QuartetGeorge Coleman QuartetLouis Stewart QuartetBill Easley SextetSweet Basil TrioJon Mayer TrioRay Brown And His West Coast All-Star GiantsCal Tjader - Stan Getz SextetBertha Hope TrioThe Harold Land QuartetRoberto Miranda EnsembleThe James Williams All-StarsVIP TrioThe Cedar Walton SextetPete Deluke QuartetCharles Thomas All Star TrioThe Billy Higgins QuartetDick Spencer QuintetThe Curtis Peagler 4Art Farmer / Jackie McLean QuintetCharlie Haden Quartet + +135872Hank MobleyHenry MobleyAmerican jazz tenor saxophonist, composer and leader +Born July 7, 1930 in Eastman, Georgia, died May 30, 1986 in Philadelphia, Pennsylvania +Performed with [a64694], [a229498], [a29977], [a29973], [a29976], [a254176], [a254945], [a12633], [a55745], [a252308], [a257028], and [a257251], among others. He recorded more than two dozen albums as a leader from 1955 to 1972. +Needs Votehttps://en.wikipedia.org/wiki/Hank_Mobleyhttps://www.jazzdisco.org/hank-mobley/discography/https://www.allmusic.com/artist/hank-mobley-mn0000951384https://www.allaboutjazz.com/musicians/hank-mobley/https://www.everythingjazz.com/story/hank-mobley-tenor-middleweight-champion/https://www.selmer.fr/en/blogs/artistes/hank-mobley?srsltid=AfmBOoq0dbXt6e5tihdpxZ9fD8uvwt1JCcQMJ22_U0zq5_sUgLVgovYWEarl MobleyH. MobleyH.MobleyHMobleyHank MobbleyHenry "Hank" MobleyMobleyХ. Моблиハンク・モブリーハンク・モブレイハンク・モブレーThe Miles Davis SextetArt Blakey & The Jazz MessengersThe Miles Davis QuintetDizzy Gillespie And His OrchestraThe Horace Silver QuintetKenny Dorham OctetThe Hank Mobley QuintetThe J.J. Johnson QuintetHank Mobley SextetMax Roach QuintetThe Prestige All StarsThe Cedar Walton / Hank Mobley QuintetMax Roach QuartetThe Curtis Fuller SextetKenny Drew QuintetJackie McLean SextetMax Roach SeptetElmo Hope SextetJulius Watkins SextetHank Mobley QuartetHank Mobley And His All StarsTenor ConclaveThe Wynton Kelly QuartetHank Mobley - Johnny Griffin QuintetJohnny Griffin SeptetKenny Dorham NonetSonny Clark Sextet + +135873Cedar WaltonCedar Anthony Walton, Jr.American jazz pianist, born 17 January 1934 in Dallas, Texas, USA, died 19 August 2013 in Brooklyn, New York, USANeeds Votehttps://en.wikipedia.org/wiki/Cedar_WaltonC WaltonC. A. WaltonC. WaltonC. Walton Jr.C. Walton, Jr.C.A. WaltonC.WC.WaltonCedar A. Walton, Jr.Cedar Anthony Jr. WaltonCedar Walton Jr.Cedar Walton, Jr.Cedar WattonCedar, WaltonCedar/WaltonCeder WaltonCedur WaltonColeman WaltonSedar WaltonWaltonWalton C.シダー・ウォルトンArt Blakey & The Jazz MessengersRay Brown TrioThe J.J. Johnson SextetClifford Jordan QuartetMilt Jackson And His Gold Medal WinnersSteve Grossman QuartetArt Farmer QuartetCBS Jazz All-StarsThe Kenny Dorham QuintetThe JazztetThe Cedar Walton / Hank Mobley QuintetTimeless All StarsArt Farmer QuintetCedar Walton QuartetCedar Walton TrioKenny Dorham SeptetGordon Brisker QuintetCedar Walton QuintetDave Young TrioFrank Morgan QuintetRed Holloway & CompanyClifford Jordan And The Magic TriangleEastern RebellionSlide Hampton QuintetRon Carter / Cedar Walton DuoThe Pentagon (3)Billy Higgins QuintetJon Nagourney QuintetSweet Basil TrioJoe Farnsworth SextetRay Brown And His West Coast All-Star GiantsMilt Jackson Ray Brown QuartetVIP TrioThe Cedar Walton SextetJon Nagourney QuartetDick Spencer QuintetArt Farmer / Jackie McLean QuintetCurtis Fuller QuartetBison Trio + +135874Reggie WorkmanReginald WorkmanAmerican jazz bassist, born June 26, 1937 in Philadelphia, PA, USA. Father of [a=Nioka Workman], and brother-in-law of [a=Arthur Harper].Needs Votehttp://en.wikipedia.org/wiki/Reggie_Workmanhttps://reggieworkmanleo.bandcamp.com/Mr. R. WorkmanMr. Reginald WorkmanR. WorkmanRWReggieReggie WarkmanReggie WokrmanRegie WorkmanReginald D. WorkmanReginald WorkmanReginald WorkmannRessie WorkmanWorkmanレジー-ワークマンレジーワークマンレジー・ワークマンMusic IncThe John Coltrane QuartetArt Blakey & The Jazz MessengersThe Jazz Composer's OrchestraThe Reggie Workman EnsembleTrio 3Terumasa Hino QuintetEric Dolphy QuintetRoscoe Mitchell QuartetOliver Lake QuartetMarilyn Crispell TrioAndrew Cyrille QuintetJohn Coltrane QuintetEric Dolphy QuartetKen McIntyre QuartetMal Waldron QuintetMax Roach QuartetKaren Borca QuartetMal Waldron QuartetBlack Swan QuartetThe Archie Shepp-Bill Dixon QuartetMiya Masaoka TrioReggie Workman FirstTrio TransitionThe Super Jazz TrioGigi Gryce QuintetLee Morgan - Clifford Jordan QuintetTakehiro Honda TrioMickey Tucker TrioReggie Workman TrioBrew (8)Karen Borca Quintet + +135885Elvin JonesElvin Ray JonesAmerican jazz drummer +Born September 9, 1927 in Pontiac, Michigan, USA, died May 18, 2004 in Englewood, New Jersey, USA + +Called by "Life" magazine "the world's greatest rhythmic drummer", two brothers were also jazz musicians: [a265629], a jazz pianist, and [a271154], a trumpet and flugelhorn player. Jones entered the Detroit jazz scene in the late 1940s after touring as a stagehand with the Army Special Services show Operation Happiness. After a brief gig at the Detroit club Grand River Street, he worked at another club, supporting visiting players such as [a75617], [a23755] and [a272019]. Jones, with his rhythmic, innovative style, became one of jazz's highest profile drummers as a member of [a97545]'s Quartet.Needs Votehttps://www.elvinjones.com/https://en.wikipedia.org/wiki/Elvin_Joneshttps://www.drummerworld.com/drummers/Elvin_Jones.htmlAlvin JonesE. JonesElfin JonesElvinElvin JohnElvin Jones SextetElvin R. JonesElvin Ray JonesElvins JonesElvis JonesElvon JonesJonesJones, Elvin RayR.E. Jonesエルビン・ジョーンズエルビン・ヅョーンズエルヴィン・ジョーンズGil Evans And His OrchestraThe George Gruntz Concert Jazz BandThe John Coltrane QuartetThe Miles Davis QuintetMcCoy Tyner TrioTommy Flanagan TrioElvin Jones QuartetBarry Harris TrioBobby Jaspar QuartetThe J.J. Johnson QuintetThe Earl Hines TrioThe Roland Kirk QuartetEric Dolphy QuintetThe New Elvin Jones TrioPepper Adams QuintetJohn Coltrane QuintetThe Prestige All StarsThe Great Jazz TrioSonny Rollins TrioJohn Coltrane TrioThe Jones BoysPaul Chambers QuintetThe Curtis Fuller SextetBobby Jaspar QuintetThe Elvin Jones Jazz MachineThe Pepper-Knepper QuintetThe Mal Waldron SextetJaki Byard TrioJimmy Woods SextetElvin Jones/Jimmy Garrison SextetJoe Henderson QuartetThe Great QuartetThe Harry "Sweets" Edison QuintetThad Jones And His EnsembleJohn Coltrane OrchestraHerb Geller & His All StarsThe Lee Konitz TrioThe Secret 7The Jones Brothers (4)Elvin Jones McCoy Tyner QuintetFrank Foster And The Loud MinorityElvin Jones QuintetThad Jones SextetArt Farmer TentetJavon Jackson QuartetYusef Lateef QuartetThe James Williams Magical TrioSteve Griggs QuintetSonny Redd QuintetMal Waldron Septet + +135899Harold JonesHarold Jones (born February 27, 1940, Richmond, Indiana, USA) is an American jazz drummer and percussionist. He has played with many artists, including [a1014312], [a145262], [a31615], [a97917], [a34183], [a170754], [a44133], and [a277632]. Brother of organist [url=https://www.discogs.com/artist/2310212-Melvin-Deacon-Jones]Melvyn "Deacon" Jones[/url]. + +Needs Votehttps://web.archive.org/web/20121118181207/http://haroldjonesdrums.com/biography.htmlhttps://en.wikipedia.org/wiki/Harold_Jones_(drummer)https://adp.library.ucsb.edu/names/205109Harold J. JonesJonesMbutuХ. ДжонсCount Basie OrchestraThe Gene Harris QuartetThe Paul Winter SextetThe Philip Morris SuperbandThe Gene Harris/Scott Hamilton QuintetThe Tom Talbert Jazz OrchestraAndy Simpkins QuintetBirch Creek Academy BandThe Walter Norris TrioTrio (46)Mel Martin/Benny Carter QuintetTony Bennett Quartet + +135930Sonny StittEdward Hammond Boatner Jr.American jazz musician, alto, tenor and occasional baritone saxophonist. Son of [a905489]. + +Born: February 2, 1924, Boston, Massachusetts, U.S.A. +Died: July 22, 1982, Washington, D.C., U.S.A. + +Stitt played in [a=Tiny Bradshaw]'s band and first recorded in the 40's for [a=Billy Eckstine]`s big band and [a=Dizzy Gillespie]`s big band during the bebop era. + +Established on the American jazz scene in the 50's and 60`s, he was a prolific recording artist. From 1950 until his death, he made at least one recording almost each year.Needs Votehttp://www.sonnystitt.com/https://en.wikipedia.org/wiki/Sonny_Stitthttps://adp.library.ucsb.edu/names/345463A.StittE. StittEd StittEd. StittEdw. StittEdward "Sonny" StittEdward 'Sonny' StittEdward Sonny StittEdward StittS StittS. StitS. StittS. SttitS.StittSonni StittSonnySonny SittSonny Stitt + 4Sonny Stitt And His Tenor SaxSonny Stitt And Their RhythmSonny Stitt)Sonny,Sony StittStittStitt!StittsС. СтитСони Ститソニー・スティットLord Nelson (6)Dizzy Gillespie And His OrchestraBilly Eckstine And His OrchestraDizzy Gillespie Big BandQuincy Jones' All Star Big BandSonny Stitt QuartetDizzy Gillespie SextetSonny Stitt BandSonny Stitt-Bud Powell QuartetArt Blakey QuartetSonny Stitt OctetJ.J. Johnson's BoppersBe Bop BoysSonny Stitt All StarsSonny Stitt And His OrchestraThe Modern Jazz SextetSonny Stitt & The GiantsKenny Clarke And His 52nd Street BoysNewport Parker Tribute All StarsGene Ammons SextetThe Giants Of Jazz (2)Sonny Stitt & His West Coast FriendsBud Powell QuartetSonny Stitt QuintetThe Gillespie-Getz-Stitt SeptetLord Nelson And His BoppersGene Ammons And His BandJ.J. Johnson All StarsGil Fuller's ModernistsGene Ammons - Sonny Stitt QuintetDizzy Gillespie - Sonny Stitt QuintetGene Ammons - Sonny Stitt SeptetJimmy Dale Band + +135931Michael LongoJazz pianist, composer, arranger, conductor, big-band leader, and author from Cincinnati, Ohio. Born March 19, 1939. Died March 21, 2020.Needs VoteLogoLongoM. LongoMike LongMike LongeMike LongoLee Konitz Big BandDizzy Gillespie QuintetThe Dizzy Gillespie Reunion Big BandThe Mike Longo TrioFabian Zone TrioJazzberry PatchThe New York State Of The Art Jazz EnsembleJohn Richmond Quartet + +135946Johnny CashJohn R. CashJohnny Cash was an American singer-songwriter, actor, musician and author, born February 26, 1932 in Kingsland, Arkansas, USA as J.R. Cash; he died September 12, 2003 in Baptist Hospital, Nashville, Tennessee, USA. Cash was a hugely influential country singer. His all-black stage wardrobe earned him the nickname "The Man in Black". + +He was married to country singer [a=June Carter]. [a=Tommy Cash] is his younger brother. [a=Joanne Cash] is his younger sister. [a=Roy Cash Sr.] is his older brother. [a=Roy Cash Jr.] is his nephew. Singer-songwriter [a=Rosanne Cash] is his daughter, from his first marriage with Vivian Liberto. Stepfather of singer-songwriter [a=Carlene Carter] (daughter of [a=June Carter] and her first husband [a=Carl Smith (3)]). + +Johnny Cash was inducted into the Nashville Songwriters Hall of Fame in 1977, the Country Music Hall of Fame in 1980, the Rock And Roll Hall of Fame in 1992 (performer), and the Gospel Music Hall of Fame in 2010.Needs Votehttps://www.johnnycash.com/https://www.johnnycashradio.com/https://soundcloud.com/johnnycashhttps://myspace.com/johnnycashhttps://en.wikipedia.org/wiki/Johnny_Cashhttps://www.imdb.com/name/nm0143599/https://www.youtube.com/channel/UCLwdOhL6TKbmjRtZ8wIr-Bghttps://www.instagram.com/johnnycash/?hl=enhttps://www.facebook.com/johnnycash/https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x?si=jLMTbbydQ8eWiQR8Yepa3Q&nd=1https://www.allmusic.com/artist/johnny-cash-mn0000816890Big John CashC. CashCarterCashCash J.Cash John RCash Johnny RCash, JohnnyCash, Johnny RJ CashJ R CashJ, CashJ. CashJ. C.J. C. CashJ. CachJ. CahsJ. CarterJ. CaschJ. CashJ. Cash R. Cash Jr.J. ChashJ. J. CashJ. R.J. R. CashJ. R. C.J. R. CashJ.-R. CashJ.C.J.C. CashJ.CashJ.R CashJ.R. CashJ.R.C.J.R.CashJR CashJanny CashJhonny CashJimmy CashJohn R. CashJohn C. CashJohn CashJohn D. (Deadeye) CashJohn E. CashJohn R CashJohn R, CashJohn R. CashJohn R. cashJohn R., CashJohn R.CashJohn Ray CashJohnn R. CashJohnnie CashJohnnyJohnny Cash And June CarterJohnny Cash With June CarterJohnny CrashJohnny MoneyJohnny R CashJohnny R. CashJohny CashJonnny CashJonny CashJonny cashJr CashMr. Johnny CashRuby CashДж. КэшЭрик Стивенсג'. קשジョニー・キャッシュJohnny Cash And The Tennessee ThreeThe HighwaymenJohnny Cash & The Tennessee TwoThe Million Dollar QuartetThe Johnny Cash FamilyClass Of '55 + +136123Sam MostSamuel MostAmerican jazz flutist, clarinetist, and tenor saxophonist. + +Born December 16, 1930 in Atlantic City, New Jersey, USA. +Died June 13, 2013 in Los Angeles, California, USA. + +Among the first of modern jazz flute players of the post-war 1950`s to record with the flute. Was noted for his bebop vocalizing on the instrument which many consider him an innovator of. Younger brother of [a=Abe Most].Needs Votehttp://en.wikipedia.org/wiki/Sam_MostMostS. MostLalo Schifrin & OrchestraThe Ernie Wilkins OrchestraSam Most QuartetBuddy Rich & His BuddiesSam Most SextetFrank Strazzeri QuartetBuddy Rich And His SextetChubby Jackson's Big BandPeter Appleyard OrchestraThe Teddy Charles GroupThe Herbie Mann-Sam Most QuintetGreat Jazz QuartetPaul Quinichette All-StarsThe Angelo Di Pippo QuartetDavid Eastlee Sextet + +136133Lionel HamptonLionel Leo HamptonAmerican jazz vibraphonist, pianist, drummer, percussionist and bandleader. +Born: 20 April 1908 in Louisville, Kentucky, USA. +Died: 31 August 2002 in New York City, USA.Needs Votehttps://www.ijc.uidaho.edu/hampton_collection/https://en.wikipedia.org/wiki/Lionel_Hamptonhttps://www.imdb.com/name/nm0359019/https://www.britannica.com/biography/Lionel-Hamptonhttps://www.kennedy-center.org/artists/h/ha-hn/lionel-hampton/https://www.arts.gov/honors/jazz/lionel-hamptonhttps://encyclopediaofalabama.org/article/lionel-hampton/https://biography.yourdictionary.com/lionel-hamptonhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103421/Hampton_LionelHampHamptonHampton LionelHampton, L.HamptonrHamtonHemptonL HamptonL. HamptomL. HamptonL.H.L.HamptonLeonel HamptonLion HamptonLional HamptonLionelLionel Hampton BandLionel HamptoneLionel HaptonLionel HomptonLionel KamptonLionell HamptonhamptonЛ. ХемптенЛ. Хэмптонליאוניל המפטוןライオネル・ハンプトンLy. N. EllThe "Champ"The Benny Goodman QuartetLouis Armstrong And His Sebastian New Cotton OrchestraEsquire All StarsBenny Goodman SextetBenny Goodman TrioThe Benny Goodman QuintetLouis Armstrong And His OrchestraLionel Hampton And His OrchestraHamptonesPaul Howard's Quality SerenadersTeddy Wilson And His OrchestraEddie Condon And His OrchestraEddie Condon And His BandLes Hite And His OrchestraBenny Goodman And His OrchestraLionel Hampton And His SeptetLionel Hampton And His QuartetLionel Hampton And His All-Star Alumni Big BandLionel Hampton QuintetThe PolynesiansLionel Hampton And His SextetLionel Hampton GroupLionel Hampton All StarsLionel Hampton And His RhythmLionel Hampton And His Jazz Inner CircleThe Lionel Hampton - Art Tatum - Buddy Rich TrioLionel Hampton And His Paris All StarsLionel Hampton & His Big BandLionel Hampton And His Rocke-FellersLionel Hampton & His Giants Of JazzLionel Hampton And His New York OctetLionel Hampton & FriendsLionel Hampton TrioLionel Hampton And His GiantsLionel Hampton And His OctetLionel Hampton And His Jazz GroupLionel Hampton E I Suoi SolistiLionel Hampton And His French New SoundThe Giants Of Jazz (3)Leon Elkin's OrchestraLionel Hampton's Just Jazz All StarsArt Tatum Sextet + +136140Ryo Kawasaki川崎 燎Ryo Kawasaki was a Japanese jazz fusion guitarist and composer. Born 25 February 1947 in Kōenji, Tokyo, Japan, died 13 April 2020 in Tallinn, Estonia. Helped to develop the guitar synthesizer.Needs Votehttps://ja.wikipedia.org/wiki/川崎燎https://en.wikipedia.org/wiki/Ryo_KawasakiKawasakiKawasaki RyoR. KawasakiRio KawasakiRyoRyo KawashiRyō Kawasaki川崎 燎川崎燎Gil Evans And His OrchestraRyo Kawasaki & SatellitesTarika BlueRyo Kawasaki GroupBond Street (2)Takeshi Inomata & Sound LimitedThe Rock InvadersToivo Unt / Ryo Kawasaki 4tetRyo Kawasaki TrioThe Golden DragonKoichi Oki TrioRyo Kawasaki QuartetArt Of TrioRyo Kawasaki Organ Trio + +136998Glen VelezAmerican percussionist, vocalist, composer and teacher, born 1949, specializing in frame drums from around the world. He has created his own musical style inspired by both Western percussion and frame drum performance styles from around the world. His concerts include an array of instruments such as the Egyptian riq (a small, intricately inlaid tambourine), the Irish bodhran (a large single-headed drum), and the North African tar (an instrument of desert nomads).Needs Votehttp://www.glenvelez.comhttps://en.wikipedia.org/wiki/Glen_VelezG. VelezG.V.Gleen VelezGlenGlen VélezGlenn VelezGren VelezVelezГиен ВелезГлен ВелезSteve Reich And MusiciansHorizontal Vertical BandThe Winter ConsortMegadrumsPaul Winter & The Earth BandTrio GloboMúsica EsporádicaMokaveAlhambra (11)Masters Of Frame DrumsWind Band (3) + +137418Billy JoelWilliam Martin Joseph JoelAmerican singer/songwriter and pianist. Born May 9, 1949, in the Bronx, New York, and shortly thereafter moved to the Levittown section of Hicksville, Long Island, New York, where he started playing piano at age 4. +In 1964, inspired by the Beatles, he formed his first band "The Echoes," which became "The Lost Souls" in 1965 and then "The Emerald Lords" in 1966. +In 1967, he joined [a=The Hassles] and recorded two albums, which were not successful. +Billy Joel and [a=Jon Small], the drummer of The Hassles, then formed the psychedelic duo [a=Attila (5)] and released one album without success. In 1971, Billy Joel started his solo career with the album "Cold Spring Harbour" and finally achieved fame in 1973 with his song "Piano Man." + +Inducted into Songwriters Hall of Fame in 1992. +Inducted into Rock And Roll Hall of Fame in 1999 (Performer)Needs Votehttps://www.billyjoel.com/https://www.facebook.com/billyjoelhttps://www.instagram.com/billyjoel/https://x.com/billyjoelhttps://en.wikipedia.org/wiki/Billy_Joelhttps://www.allmusic.com/artist/billy-joel-mn0000085915B JoelB. JoeB. JoelB. Joel.B. Joel®B. JoëlB. ジョエルB.JoelB.JoëlBill JoelBillie JoelBillyBilly JoeBilly Joel MusicBilly JoëlJ.BillyJoelJoel B.Joel BillyJoel, BillyV. JoelW. JoelW. M. JoelW.JoelW.M.J.William "Billy" M. JoelWilliam JoelWilliam Joseph Martin JoelWilliam M. JoelWilliam Martin JoelБ. ДжоелБ. ДжоэлБ. ЖоэльБилли Джоэлビリージョエルビリー・ジョエル比利喬빌리·조엘빌리조엘USA For AfricaThe HasslesThe Lost Souls (2)Attila (5) + +138392DJ ZagrosArash AryanDutch house/trance producerCorrectDJ ZargosDJ ZargrosDJ's ZagrosDJ. ZagrosZagrosArash Aryan + +138927Andy HillAndrew Gerrard HillAndy Hill (born 1957 in Bracknell, England) is an English songwriter and producer. He is most famous for his work with [a=Bucks Fizz]. He has also occasionally played guitar and provided backing vocals on his own productions. + +He has worked for a great variety of artists, including [a=Céline Dion], [a=Cliff Richard], [a=Ronan Keating], [a=Diana Ross], [a=Cher] and [a=Il Divo], among others. + +He has written songs with [a=Peter Cetera], [a=Peter Sinfield] and [a=Gary Barlow]. +Correcthttp://andyhill.webs.com/index.htmA HillA, HillA. G. HillA. HillA. HillsA.HillAndrew Gerard HillAndrew Gerrard HillAndrew HillHillHill, AndyΆντι ΧιλParis (23)Gem (31) + +139019Sarah LeonardSarah Jane LeonardSarah Leonard (April 10, 1953 in Winchester, England - 2024) was an English soprano with a particular interest in contemporary music. +She has performed works by Giacomo Manzoni, Luigi Nono, Luciano Berio, Elliot Carter, Pascal Dusapin, Helmut Lachenmann among others. She has worked with many leading conductors including Pierre Boulez, Michael Tilson Thomas and Peter Eötvös.Needs Votehttps://sarahleonard.me/https://en.wikipedia.org/wiki/Sarah_Leonard_%28singer%29Sarah LeonhardThe Hilliard EnsembleThe Michael Nyman BandBBC SingersThe Monteverdi ChoirThe Schütz Choir Of London + +139508Jimmy WisnerJames Joseph WisnerAmerican pianist, arranger, songwriter, and producer. Born December 8, 1931 in Philadelphia; died March 13, 2018. +Father of [a317552].Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Wisner"The Wiz""The Wiz" Jimmy WisnerB. WisnerJ WisnerJ. 'Wiz' WisnerJ. WeisnerJ. WiserJ. WisnerJ. WisnesJ. WysnerJ.WisnerJack WisnerJames J. WisnerJames WisnerJim "Wiz" WisnerJim WisnerJimmie WisnerJimmy "The Whiz" WisnerJimmy "The Wiz" WisnerJimmy "Wis" WisnerJimmy "Wiz" WisnerJimmy "Wiz" WissnerJimmy "Wiz" WiznerJimmy "Wiz" WsinerJimmy "Wiz: WisnerJimmy "wiz" WiznerJimmy ''Wiz'' WissnerJimmy 'The Wiz' WiznerJimmy 'Wis' WisnerJimmy 'Wiz' WisnerJimmy 'Wiz' WiznerJimmy (The Whiz) WisnerJimmy (The Wiz) WisnerJimmy (Wiz) WisnerJimmy (Wiz) WiznerJimmy EisnerJimmy WhisznerJimmy WhiznerJimmy WinnerJimmy WisherJimmy Wiz WisnerJimmy WiznerJimmy »Wiz« WisnerJimmy “Wis” WisnerJimmy “Wiz” WisnerJimy WisnerJoe WisemanS.J. WisnerSir James WisnerThe WizWIsnerWiesnerWilsnerWiserWisherWisnerWisner (J)WisnesWissnerWiznerKokomo (2)Jimmy Davis (6)Ninapinta And His Bongos And CongasMr. Jim And The Rhythm MachineCharlie Ventura And His OrchestraJimmy Wisner TrioThe Jimmy Wisner SoundJimmy Wisner OrchestraJimmy Wisner Orchestra And ChorusJimmy Wisner Quartet + +139904Alexandra MendesPortuguese violin and viola player.Needs VoteGulbenkian OrchestraQuarteto de Lisboa + +139984Eddie CochranEdward Raymond CochranAmerican guitarist and singer, songwriter of the rock'n'roll era. +Born 3 October 1938 in Albert Lea, Minnesota, USA, died 17 April 1960 in Chippenham, Wiltshire, UK. +Influential on later artists such as The Beatles, The Rolling Stones, The Who and many others. Inducted into Rock And Roll Hall of Fame in 1987 (Performer). +Cochran's parents moved from Oklahoma City to Albert Lea, Minnesota, where he was born. The family moved back to Oklahoma briefly, before finally settling in Bell Gardens, LA, California. Cochran became musician as a teenager, with a circle of friends that included Connie "Guybo" Smith whose nickname would later become one of his song titles. He teamed up with [a=Hank Cochran] (unrelated), playing dance halls, fairs and schools. They later called themselves [a=The Cochran Brothers], touring the south-western states and appearing on the California Hayride show. They recorded two hillbilly records with Ekko Records in 1955 and did a promotional tour, meeting [a=Elvis Presley] on the Dallas Big D Jamboree show. The duo auditioned for Sun Records in Memphis but split up shortly after making "Fool's Paradise", their third recording on Ekko and a song that shows a strong Presley influence, assisted by the co-writing of [a=Jerry Capehart]. +In 1956 Cochran teamed up with Capehart and was signed to [l=Liberty] in 1957, although he still appeared on the labels of friends Capehart and Sylvester Cross, spending time in LA's Gold Star studio producing, writing and recording backing vocals on labels such as [l=Crest], [l=Zephyr], Crash, [l=Vik], along with [l=Silver Records (9)], on which he recorded "Guybo", also known as "Drum City". He also appeared in two films. +Following up on his increasing American success, Cochran toured the UK in 1960, joining up with [a=Gene Vincent] and [a=Ronnie Hawkins] to appear on popular TV and radio shows and the concert hall circuit. His girlfriend, songwriter Sharon [a=Shari Sheeley], later joined them. The tour was a resounding success. +On Sunday, April 17, 1960 — the day following the tour — Cochran, Vincent and Sheeley were on their way to the airport to return to the United States in the back seat of a car, also occupied by deputy tour manager Patrick Tompkins in the front seat, and driven by hired taxi-driver George Martin. The vehicle left the road and hit a lamppost. Sheeley suffered a broken pelvis but managed to fully recover. Vincent suffered broken ribs and collarbone and sustained injuries to an already weak leg that left him with a limp for the rest of his life. Cochran died in hospital that day from severe head injuries, aged 21. Eerily, Cochran had just released a single, co-written with brother [a=Bob Cochran], entitled "Three Steps to Heaven." It reached No. 1 in the charts, helping rock'n'roll come of age in the UK.Needs Votehttps://www.simona.com/eddie/eddie.htmlhttps://www.britannica.com/biography/Eddie-Cochranhttps://mnmusichalloffame.org/eddie-cochran/https://en.wikipedia.org/wiki/Eddie_Cochranhttps://www.imdb.com/name/nm0168161/http://www.eddie-cochran.info/the_crash.htmhttps://www.ulikisker.de/eddie%20cochran%202.htmlChochranCichranCoachranCocharnCochcanCochraCochramCochranCochran EddieCochran, ECochran, E.CochraneCochranneCochrauCochrenCochronCochroneCockrainCockranCogranCohranConchranD. Raymond EdwardDochranE CochranE CochraneE.E. ChochranE. ChochranE. ChocranE. CochranE. CochraneE. CockranE. CohranE. CoohranE.CochranE.CochraneE.R. CochranEd CochranEddi CochranEddieEddie CEddie C.Eddie CapehartEddie ChochranEddie CochramEddie CochraneEddie CockranEddie CohranEddie GochranEddie R CochranEddy CEddy CochranEdied CochranEdward CochranEdward R CochranEdward R CochranEdward Raymond CochranS. CochranW. CochranЕди КокранЭдди КокранЭдди Кохранエディ·コクランエディ・コクランThe Cochran BrothersThe Four DotsThe Eddie Cochran Combo + +140590Keg JohnsonFrederic Homer JohnsonAmerican jazz trombonist +Born November 19, 1908 in Dallas, Texas. +Died November 8, 1967 in Chicago, Illinois. +Older brother of saxophonist [a317503]. +He was active in the thirties and forties, mostly known for his work with [a38201], [a307323] and [a253474]. Father of soul - funk producer [a1126941]. Needs Votehttps://www.europeana.eu/portal/pt/explore/people/15886-keg-johnson.htmlhttps://en.wikipedia.org/wiki/Keg_Johnsonhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/40749783033838873e71a93b4b92d6b64dab5/biographyhttps://www.tshaonline.org/handbook/entries/johnson-frederic-h-keghttps://adp.library.ucsb.edu/names/114703"Keg" JohnsonFredereic "Keg" JohnsonFrederic "Keg" JohnsonFrederic Keg JohnsonFrederic “Keg” JohnsonFrederick "Keg" JohnsonFreferic Keg JohnsonJohnsonK. JohnsonKen JohnsonGil Evans And His OrchestraClarke-Boland Big BandCab Calloway And His OrchestraLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Budd Johnson QuintetHenry "Red" Allen And His OrchestraThe Ike Quebec Swing SevenChu Berry And His OrchestraChu Berry And His Stompy Stevedores + +140631Robert BurnsRobert BurnsBritish DJ, electronic artist and producer. + +[b]Do not confuse with Techno/House/Trance/Electro producer [a=Robert Burns (2)] from the Netherlands.[/b] +Needs VoteBob BurnsBob Burns JNRBob Burns JnrBob Burns Jnr.Bob Burns Jr.BurnsR BurnsR. BernssR. BurnsR.BurnsRob BurnsChampion BurnsMajestic 12Razor BabesSister SuckLight BoyFriction BurnsM.A.Q.CadenzaTripticTopaz (2) + +140632Nigel ChampionNigel ChampionTrance/Drum n Bass DJ and producer from the United Kingdom. +Nowadays also offering service as mastering engineer.Needs Votehttps://www.nigelchampion.com/https://www.facebook.com/nigel.champion.7ChampionChampion, N.N ChampionN. ChampionN.ChampionTalisman (5)Talisman & HudsonTalismantraN-JoiChampion BurnsMajestic 12H.H.C.Light BoyM.A.Q.Masters At QuirkTopaz (2)The C.S.M.F. Crew + +140814Amadeus MozartAmadeus Celery MozartUK Hard House DJ & producer from Northampton, who gave birth to the Tidy brand in 1995. +Mostly known as part of the DJ duo, the Tidy Boys. + +For the classical composer, use [a=Wolfgang Amadeus Mozart] with the proper ANV. +For the Italian House producer, use [a=Moz-Art] with the proper ANV.Needs Votehttp://about.me/amadeusmozarthttp://www.facebook.com/amozarthttp://twitter.com/AmadeusMozarthttp://instagram.com/appleamohttp://www.linkedin.com/pub/amadeus-mozart/13/351/481A MozartA. C. MozartA. MozartA.MozartAmadeus C MozartAmadus MozartAmoMozartRim ShotRhapsody (2)The TidymanHyperlogicTwo Little BoysScooper & SticksTidy Boys2InATentLeft LocatorThe Handbaggers2 In A TankThe NRG TwinsA.P.A.The Bucking Broncos + +141047Paul GurvitzPaul Anthony GurvitzEnglish musician, writer and record producer. Plays bass guitar. Brother of [a=Adrian Gurvitz].Needs Votehttps://www.paulgurvitz.com/A. GurvitzGurvitzP GurvitzP. GuruitzP. GurvitP. GurvitzP.CurvitzP.GurvitzPaulPaul Curtis (6)Paul Gee (2)Baker Gurvitz ArmyThe GunRupert's PeopleThree Man ArmyThe Knack (6)The Graeme Edge BandThe Londoners (2)Parrish & Gurvitz + +141104FJ ProjectLuca CominatoItalian hardstyle DJ and producer, born in 1980. + +Started using Technics Turntable at 9 years old and when he was 16 he started to learn about the world of sampling. +After 4 years in cooperation with [a=Maxjay] he decided to create the Suntracker Techno Studio and they started producing together. + +Needs Votehttp://www.fjproject.comhttp://www.myspace.com/djfjprojectDJ FJ ProjectFFJFJ Project ItalyDJ Tom-809kataklismaLuca CominatoThe Projector + +141326George LewisGeorge Emanuel LewisAmerican avant-garde jazz trombonist, composer and author, born July 14, 1952 in Chicago, IL. + +[b] Please make sure you have the correct George Lewis:[/b] +- Jazz clarinetist & bandleader: [a=George Lewis (2)] +- Member of Die Krupps & Skrew: [a=George Lewis (3)] +Needs Votehttps://en.wikipedia.org/wiki/George_Lewis_(trombonist)https://music.columbia.edu/bios/george-e-lewishttps://www.scaruffi.com/jazz/lewis.htmlhttps://georgelewis-intakt.bandcamp.com/G. LewisG.LewisGLGeorgeGeorge E. LewisGeorge GuesnonGeorges LewisLewisProfessor George E. LewisMaterialGil Evans And His OrchestraMusica Elettronica VivaGlobe Unity OrchestraCompany (2)The Carla Bley BandSteve Lacy QuintetDavid Murray OctetLeo Smith Creative OrchestraRoscoe Mitchell QuartetRoscoe Mitchell Creative OrchestraSteve Lacy SevenSteve Lacy NineRoscoe Mitchell And The Note FactoryMaarten Altena OctetICP OrchestraFred Anderson QuintetMasaoka OrchestraJohn Lindberg Trio (2)The New York Composers OrchestraAnthony Braxton/George Lewis DuoJames Newton EnsembleThe AACM Great Black Music EnsembleElectroAcoustic SeptetDuck & Cover (3)Spirit Complex + +142053Chip TaylorJames Wesley VoightAmerican singer/songwriter, born 21 March 1940 in Yonkers, NY. Brother of actor [a5128470] and uncle of [a4777936].Needs Votehttps://en.wikipedia.org/wiki/Chip_Taylorhttps://www.facebook.com/Chip-Taylor-40438231724/https://www.trainwreckrecords.com/https://www.imdb.com/name/nm0852118/"Thumbs" TaylorC TaylorC. TalyorC. TavlorC. TaylorC. TayorC. TylorC.TaylorCh. TaylorChipChip TalyorChip TaylarChip TylerChip y TaylorChip, TaylorChip/TaylorChips/TaylorClip TaylorHelen TaylorJ. TaylorJames Westley (Chip Taylor)Rudy TaylorShip TaylorTajlorTaylerTaylnTaylorTaylor CTaylor ChipTaylor, ChipWes VoightGigi Parker & The LoneliesJust Us (7)The Town ThreeThe Town And Country Brothers + +142502Bacharach And DavidAmerican pop songwriting and production team made up of [a58359] and [a173078]. + +Publishers associated with the artist are: +[l=JAC Music Co., Inc.] - [l=Jac Music Ltd.] +[l=Blue Seas Music, Inc.] - [l=Blue Seas Music Ltd.]Needs Votehttps://books.google.pl/books?id=xwoEAAAAMBAJ&lpg=PA1&dq=Bacharach+And+David+billboard&pg=PA1&redir_esc=y#v=onepage&q=Bacharach%20And%20David%20billboard/Hal David/Burt BacharachA David - B. BacharachA. BacharachA. Bacharah/H. DavidA. Bacharah/Hal DavidA. David - B. BacharachA. David, B. BacharachA. David, D. BacharachA. David-B. BacharachB . Bacharach - H. DavidB .Bacharach/H. DavidB Bacharach & H DavidB Bacharach - H DavidB Bacharach / H DavidB Bacharach And H DavidB Bacharach, H DavidB Bacharach, H DavisB Bacharach/H DavidB, Bacharach- H. DavidB, Bacharach/H. DavidB. And H. DavidB. B. H. D.B. Bacarach , H. DavidB. Bacarach / H. DavidB. Bacarach-H. DavidB. Bacarach/H. DavidB. BachArach - H. DavidB. Bacharac, H. DavidB. BacharachB. Bacharach & H, DavidB. Bacharach & H. DavidB. Bacharach & H. DavisB. Bacharach & H.DavidB. Bacharach & Hal DavidB. Bacharach , H. DavidB. Bacharach - D. DavidB. Bacharach - D. HalB. Bacharach - DavidB. Bacharach - H . DavidB. Bacharach - H DavidB. Bacharach - H. DavidB. Bacharach - H. DavisB. Bacharach - H. P. DavidB. Bacharach - H.DavidB. Bacharach - Hal DavidB. Bacharach - M. DavidB. Bacharach -H. DavidB. Bacharach . H. DavidB. Bacharach / A. DavidB. Bacharach / D. HalB. Bacharach / D. HallB. Bacharach / DavidB. Bacharach / F. DavidB. Bacharach / H. DadidB. Bacharach / H. DavidB. Bacharach / H. David / B.F. BacharachB. Bacharach / H.DavidB. Bacharach / H.P. DavidB. Bacharach / Hal DavidB. Bacharach / M. DavidB. Bacharach /H. DavidB. Bacharach : H. DavidB. Bacharach And H. DavidB. Bacharach And H. DavisB. Bacharach H. DavidB. Bacharach H.DavidB. Bacharach Y H. DavidB. Bacharach · H. DavidB. Bacharach, D. HalB. Bacharach, DavidB. Bacharach, H DavidB. Bacharach, H, DavidB. Bacharach, H. DavidB. Bacharach, H. David.B. Bacharach, H. DavisB. Bacharach, H.DavidB. Bacharach, Hal DavidB. Bacharach, M. DavidB. Bacharach- H. DavidB. Bacharach-D. HalB. Bacharach-DavidB. Bacharach-H DavidB. Bacharach-H. DavidB. Bacharach-H. DavisB. Bacharach-H.DavidB. Bacharach-Hal DavidB. Bacharach. H. DavidB. Bacharach/ H DavidB. Bacharach/ H. DavidB. Bacharach/ H.DavidB. Bacharach/D. HallB. Bacharach/DavidB. Bacharach/G. DavidB. Bacharach/H DavidB. Bacharach/H. DavidB. Bacharach/H. David.B. Bacharach/H. F. DavidB. Bacharach/H.DavidB. Bacharach/Hal DavidB. Bacharach/Hall DavidB. Bacharach/M. DavidB. Bacharach/N. DavidB. Bacharach; H. DavidB. Bacharach·H. DavidB. Bacharach–H. DavidB. Bacharach—H. DavidB. Bacharack / D. HallB. Bacharack / H. DavidB. Bacharack, H. DavidB. Bacharah - H. DavidB. Bacharah / H. DavidB. Bacharah, H. DavidB. Bacharat - H. DavidB. Bacharch - H. DavidB. Bacharch / H. DavidB. Bacharch, H. DavidB. Bacharch-H. DavidB. Bacherach-H. DavidB. Bacherach/H. DavidB. Bachrach - H. DavidB. Bachrach-H. DavidB. Bachrach/ H. DavidB. Bachrach/H. DavidB. Backarach - H. DavidB. Backarach / Hal DavidB. Barcharach, H. DavidB. Bucharach & H. DavidB. F. Bacharach - H. DavidB. F. Bacharach / H. DavidB. F. Bacharach / H.DavidB. F. Bacharach-H. DavidB. F. Bacharach/H. DavidB., H. DavidB.-F- Bacharach/H. DavidB.-F. Bacharach - H. DavidB.Bacharach & H.DavidB.Bacharach - H. DavidB.Bacharach - H.DavidB.Bacharach / H.DavidB.Bacharach And H.DavidB.Bacharach Y H. DavidB.Bacharach, D.HallB.Bacharach, H. DavidB.Bacharach, H.DavidB.Bacharach,H.DavidB.Bacharach-H- DavidB.Bacharach-H.DavidB.Bacharach.H.DavidB.Bacharach/ H. DavidB.Bacharach/ H.DavidB.Bacharach/H. DavidB.Bacharach/H.DavidB.Bacharach/H.davidB.Bacharack, H.DavidB.Bacharah/H.DavidB.Bacherach, H.DavidB.Bacherach-H. DavidB.F. Bacharach / H.DavidB.F. Bacharach, H. DavidB.F. Bacharach-H. DavidB.F. Bacharach/H. DavidB.F. Bacharath, H. DavidB.F.Bacharach / H.DavidB.S. Bacharach - H. DavidBabarach-DavidBacarachBacarach, DavidBacarach, vBacarach/DavidBaccarach & DavidBaccarach - DavidBaccarach/DavidBaccharach-DavidBachach, DavidBachara - DavidBachara, DavidBacharac-DavidBacharac/DavidBacharachBacharach / DavidBacharach & DavidBacharach & H. DavidBacharach & Hal DavidBacharach + DavidBacharach , DavidBacharach - DavidBacharach - DavisBacharach - H. DavidBacharach - H.DavidBacharach - Hal - DavidBacharach - Hal DavidBacharach -DavidBacharach / DavidBacharach / DavisBacharach / H. DavidBacharach / H.DavidBacharach / HalBacharach / Hal DavidBacharach / davidBacharach /DavidBacharach : DavidBacharach ; DavidBacharach And Hal DavidBacharach B/David HBacharach Burt / David HalBacharach Burt F, David HalBacharach DaviBacharach DavidBacharach E DavidBacharach Pirt David HalBacharach Y DavidBacharach y DavidBacharach – DavidBacharach — DavidBacharach, B./David H.Bacharach, BurtBacharach, Burt - David, HalBacharach, DavidBacharach, DaviedBacharach, DavisBacharach, H. DavidBacharach, Hal DavidBacharach,DavidBacharach- DavidBacharach-DavidBacharach-DavisBacharach-H. DavidBacharach-H.DavidBacharach-HalBacharach-Hal DavidBacharach-Hal-DavidBacharach.DavidBacharach/ DavidBacharach/ H. DavidBacharach/DavidBacharach/DavisBacharach/H. DavidBacharach/HalBacharach/Hal DavidBacharach: DavidBacharach; DavidBacharach;DavidBacharacha - DavidBacharach‒DavidBacharach–DavidBacharach—DavidBacharack-DavidBacharack/DavidBacharack/DavisBacharae/DavidBacharah & DavidBacharah - DavidBacharah / DavidBacharah, DavidBacharah-DavidBacharah/DavidBachararch-DavidBacharat / DavidBacharat, DavidBacharat-DavidBacharath & DavidBacharch & DavidBacharch / DavidBacharch, DavidBacharch-DavidBacharch/DavidBacharoch / DavidBacharrach-DavidBacharrah - DavidBachavach/DavidBachcrach, DavidBacherach & DavidBacherach - DavidBacherach DavidBacherach-DavidBacherach/DavidBachrach / DavidBachrach-DavidBachrach/DavidBackarach, DavidBackarach/DavidBackerach/DavidBagava/H. DavidBararach / DavidBarharach/DavidBascharach - DavidBasharaih / DavidBert Bacharach & Hal DavidBert Bacharach - Hal DavidBert Bacharach And Hal DavidBert Bacharach H. DavidBert Bacharach, Hal DavidBert Bacharach-Hal DavidBert Bachrach-Hal DavidBert F. Bacharach - Hal DavidBert F. Bacharach, Hal DavidBirt Bacharach-H. DavidBlackarach / DavidBocharoch - DavidBruce Bacharach/Hal DavidBucharach / HalBucharach/DavidBuert Bacharach, Hal DavidBurn Bacharach - Hal DavidBurt Bacarach, Hal DavidBurt Bacharac / Hall DavidBurt Bacharac, Hal DavidBurt BacharachBurt Bacharach & Al DavidBurt Bacharach & Hal DavidBurt Bacharach & Hal DavisBurt Bacharach & Hall DavidBurt Bacharach & Hoel DavidBurt Bacharach & Mack DavidBurt Bacharach + Hal DavidBurt Bacharach - David BacharachBurt Bacharach - David HalBurt Bacharach - H. DavidBurt Bacharach - Hal DavidBurt Bacharach - Hal DavidsBurt Bacharach - Hal DavisBurt Bacharach - Hall DavidBurt Bacharach -Hal DavidBurt Bacharach / David HalBurt Bacharach / H. DavidBurt Bacharach / Had DavidBurt Bacharach / Hal DavidBurt Bacharach / Hal DavisBurt Bacharach / Hall DavidBurt Bacharach And David HallBurt Bacharach And H. DavidBurt Bacharach And Hal DavbidBurt Bacharach And Hal DavidBurt Bacharach And Hall DavidBurt Bacharach Hal DavidBurt Bacharach Y Hal DavidBurt Bacharach y Hal DavidBurt Bacharach – Hal DavidBurt Bacharach • Hal DavidBurt Bacharach& Hal DavidBurt Bacharach, Harold DavidBurt Bacharach, DavidBurt Bacharach, David HalBurt Bacharach, David HallBurt Bacharach, H. DavidBurt Bacharach, Hal DAvidBurt Bacharach, Hal DavidBurt Bacharach, Hal DavisBurt Bacharach, Hall DavidBurt Bacharach, L. DavidBurt Bacharach, Mack DavidBurt Bacharach- Hal DavidBurt Bacharach-H. DavidBurt Bacharach-H.DavidBurt Bacharach-Hal DavidBurt Bacharach-Hal DavisBurt Bacharach/ Hal DavidBurt Bacharach/ Hal David/ Burt Bacharach/ Hal DavidBurt Bacharach/ HalDavidBurt Bacharach/Al DavidBurt Bacharach/David HalBurt Bacharach/Hal DavidBurt Bacharach/Hal DavisBurt Bacharach/Hal davidBurt Bacharach/Hall DavidBurt Bacharach/hal DavidBurt Bacharach; Had DavidBurt Bacharach; Hal DavidBurt Bacharach–David HalBurt Bacharach–Hal DavidBurt Bacharah & Hal DavidBurt Bachcarach/Hal DavidBurt Bacherach / Hal DavidBurt Bacherach-Hal DavidBurt Bacherach/Hal DavidBurt Bachrach & Hal DavidBurt Bachrach / Hal DavidBurt Bachrach and Hal DavidBurt Bachrach, Hal DavidBurt Bachrack, Hal DavidBurt Bachurach / Hal DavidBurt Backarach/Hal DavidBurt F Bacharach & Hal DavidBurt F Bacharach / David HalBurt F Bacharach / Hal DavidBurt F Bacharach And Hal DavidBurt F Bacharach, Hal DavidBurt F. Bacharach & David HalBurt F. Bacharach & Hal DavidBurt F. Bacharach , Hal DavidBurt F. Bacharach - Hal DavidBurt F. Bacharach - Hal DavisBurt F. Bacharach / David HalBurt F. Bacharach / Hal DavidBurt F. Bacharach, David HalBurt F. Bacharach, H DavidBurt F. Bacharach, H. DavidBurt F. Bacharach, Hal DavidBurt F. Bacharach, Hal DavisBurt F. Bacharach-Hal DavidBurt F. Bacharach-Hal DavisBurt F. Bacharach/Hal DavidBurt F. Bacharach–Hal DavidBurt F. Bacharrach-Hal DavidBurt F. Bachàrach - Hal DavidBurt L. Bachrach / Hal DavidBurth Bacharach & Hal DavidBurth Bacharach And Hal DavidBurth Bacharach, Hal DavidBurth Bacharach/Hal DavidBury Bacharach-Hal DavidBury Bacharach/Hal DavidC. Bacharach/H. DavidD. BacharachD. Bacharach - H. DavidD. Bacharach-H. DavidD. Bacharach/H. DavidD.BacharachDacharach-DavidDaid - B. BacharachDavidDavid & BacharachDavid - B, BacharachDavid - B. BacharachDavid - B.BacharachDavid - BacharacDavid - BacharachDavid - BacharadeDavid - Bert - BacharachDavid - Burt BacharachDavid - DacharachDavid -BacharachDavid / B.BacharachDavid / BaccarachDavid / BaccharachDavid / BacharachDavid / Bert / BacharachDavid And BacharachDavid And BocharachDavid BacarachDavid BaccaraDavid BacharachDavid Bacharach / David HallDavid Bacharach and Hal DavidDavid BascharachDavid Burt BacharachDavid Et BacharachDavid Hal - Burt BacharachDavid Hal / Burt BacharachDavid Hal / Burt F. BacharachDavid Hall - Burt BacharachDavid Hall, Burt BacharachDavid Han-BacharachDavid Hon - BarachacjDavid MarcharachDavid Y BacharachDavid et BacharachDavid y BacharachDavid – BacharachDavid, BacharachDavid, BarharachDavid- BacharachDavid-B.BacharachDavid-BacharachDavid-BacharackDavid-BacharahDavid-BacharatDavid-BacherachDavid-BachrachDavid-BahcarachDavid-Bert BacharachDavid-Bert-BacharachDavid-BucharachDavid/ BacharachDavid/B. BacharachDavid/BacarachDavid/BacharachDavid/BacharahDavid:BacharachDavid; BacharachDavid–BacharachDavid—BacharachDavid―BacharachDavis, BacharachDavis/BacharachF.B.Bacharach / H.DavidH David - B. BacharachH David, B BacharachH David-B BacharachH David/B BacharachH, David - BacharachH. Bacharach - H. DavidH. Bacharach, H. DavidH. Bavid/B. BacharachH. DavidH. David & B. BacharachH. David & B. BacharackH. David , B. BacharachH. David - B BacharachH. David - B. BacharachH. David - B. BacharahH. David - B. BachrachH. David - B. BurcharachH. David - B. F. BacharachH. David - B.F. BacharachH. David - BacharachH. David - Bu. BacharachH. David - Burt BacharachH. David - D. BacharachH. David - F. BacharachH. David - S. Burt - BacharachH. David -- B. BacharachH. David -B BacharachH. David -B. BacharachH. David / B. BacharachH. David / B. BachrachH. David / B. F. BacharachH. David / BacharachH. David And B. BacharachH. David And B. BachrachH. David And Burt BacharachH. David B. BacharachH. David Et B. BacharachH. David Et BacharachH. David Y B. BacharachH. David Y B.F. BacharachH. David e B. BacharachH. David et B. BacharachH. David et BacharachH. David y B. BacharachH. David | B. BacharachH. David — B. BacharachH. David, B, BacharachH. David, B. BacharacH. David, B. BacharachH. David, B. BacharahH. David, B. BacherachH. David, B. BachrachH. David, B. F BacharachH. David, B. F. BacharachH. David, B.F. BacharachH. David, Burt BacharachH. David- B. BacharachH. David-B BacharachH. David-B- BacharachH. David-B. BacarachH. David-B. BacharachH. David-B. BachrachH. David-B. BackarachH. David-B. BaharachH. David-B. F. BacharachH. David-B.BacharachH. David-B.F. BacharachH. David-BacharachH. David-Burt F. BacharachH. David-S. Burt-BacharachH. David/ B. BacharachH. David/ B/ BacharachH. David/ Burt BacharachH. David/B BacharachH. David/B. BaccharachH. David/B. BacharacH. David/B. BacharachH. David/B. BacharahH. David/B. BacharchH. David/B. BacherachH. David/B.BacharachH. David/B.F. BacharachH. David/BacharachH. David/Burt BacharachH. David/D. BacharachH. David; B. BacharachH. Davis & B. BacharachH. Davis - B. BacharachH. Davis / B. BacharachH. Davis, B. BacharachH. Davis-B. BacharachH. Davis; B. BacharachH., David/B. BacharachH.DavidH.David & B.BacharachH.David - B.BacharachH.David / B.BacharachH.David B. BacharachH.David, B BacharachH.David, B. BacharachH.David, B.BacharachH.David,B.BacharachH.David- B.BacharachH.David-B. BacharachH.David-B.BacharachH.David-B.F.BacharachH.David-BacharachH.David/ B.BacharachH.David/B. BacharachH.David/B.BacharachH.L. David - B. BacharachHad David / Burt BacharachHal Bacharach, Burt DavidHal DavidHal David & Bert BacharachHal David & Burt BacharachHal David - B. BacharachHal David - B. F. BacharachHal David - BacharachHal David - Bert BacharachHal David - Burt BacharachHal David - Burt F BacharachHal David - Burt F. BacharachHal David - Burt S. BacharachHal David -- Burt BacharachHal David / B. BacharachHal David / B. F. BacharachHal David / BacharachHal David / Burt BacharachHal David / Burt F. BacharachHal David And Burt BacharachHal David And Burt BakerakHal David And Burt F BacharachHal David Burt BacharachHal David Burts BacharathHal David Und Burt BacharachHal David y Burt BacharachHal David –Burt F. BacharachHal David, Burt BacarachHal David, Burt BacharachHal David- Burt BacharachHal David-B. BacharachHal David-BacharachHal David-Bert BacharachHal David-Bur BacharachHal David-Burt BacharachHal David-Burt BacherachHal David-Burt BachrachHal David-Burt BaharahHal David-Burt F. BacharachHal David-Burt S. BacharachHal David-David BucharachHal David/ Burt BacharachHal David/ Burt F. BacharachHal David/B. BacharachHal David/Bert BacharachHal David/Burt BacarachHal David/Burt BacharachHal David/Burt BarcharachHal David/Burt F BacharachHal David/Burt F. BacharachHal David–Burt BacharachHal Davis - Burt BacharachHal Davis And Burt BacharachHal Davis, Burt BacharachHal Davis-Burt BacharachHal-David-Burt-BacharachHalDavid-Burt BacharachHald David / Burt BacharachHald David-Burt BacharachHall David & Burt BacharachHall David - Burt BacharachHall David-B. BacharachHall David-Burt BacharachHall, BacharachJac M David, BacharachKurt Bacharach, Hal DavidM. David - B. F. BacharachM. David - B. F. BachrachM. David - B.F. BacharachM. David et B.F. BacharachM. David-B. BacharachM. David-B.F. BacharachN. David & B. BacharachN. David - B. BacharachN. David-B. BacharachP. Bacharach/H. DavidR. David - B. BacharachБ. БакарахБ. Бакарах - Х. ДевидБ.Ф. Бакарак / Х. ДэвидБакара-ДейвидБакарах и ДэвидБарт Бакара - Хэл Дэвидבכרך - דיווידד. בכרךהאל דוד / ברט בכרךディビット〜バッカラッチハル・デイヴィッドとバート・バカラックBurt BacharachHal David + +142834Bob CreweRobert Stanley Crewe, Jr.Born November 12, 1931 in Newark, New Jersey. Died September 11, 2014 in Scarborough, Maine. + +American singer, songwriter, music producer, and label owner. Best known for co-writing a number of Top 10 singles for [a107784] and [a121112], with [a=Bob Gaudio] (see [a=Bob Crewe & Bob Gaudio]). Founded the labels [l=Dynovox], [l55247], [l74253], and [l125337] under the banner of [l789811]. Brother of [a5837475].Needs Votehttps://web.archive.org/web/20230113112829/https://bobcrewe.com/https://en.wikipedia.org/wiki/Bob_Crewehttps://www.imdb.com/name/nm0187685/https://books.google.com/books?id=LigEAAAAMBAJ&pg=PA3&dq=crewe+records+billboard&hl=en&sa=X&ved=0ahUKEwim_erI38XTAhVFhlQKHW3CAZQQ6AEIIzAA#v=onepage&q=crewe%20records%20billboard&f=falsehttps://books.google.com/books?id=OSAEAAAAMBAJ&lpg=PA10&dq=crewe%20records%20billboard&pg=PA10#v=onepage&q=crewe%20records%20billboard&f=falsehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&keyid=75438&subid=1&page=1&fromrow=1&torow=25https://adp.library.ucsb.edu/index.php/mastertalent/detail/310165/Crewe_Bob-CreweA. CreweB CreweB, CreweB-CreweB. CeweB. CremeB. CreveB. CrewB. CrewdB. CreweB. CrewelB. GreveB. GreweB.CrewB.CreweB.V. CreweBob CreeveBob CremeBob CrewBob GremeBob GroweBob S. CreweBob ScreneBoby CreweBod CreweC. CreweCreeweCreneCreseCreveCrewCreweCrewe B.Crewe BobCrewe, B.Crewe, BobCrewewCrewoCrewsCroweD. CrewesGrewGreweKremeKreweN. CreweO. CreweOreweP. CroweR CreweR. CreveR. CreweR. J. CreweR.J. CreweRobert CrewRobert CreweRobert S. CreweS. CreweThe Fifth Season--Bob CreweБ. КруКруКрюクリューボブ・クルーManSoundThe Bob Crewe GenerationEleventh HourBob Crewe & Bob GaudioThe Jam Band (2)Slay & Crewe + +142835Kenny NolanSoul - disco - pop singer - songwriter - producer.Born September 30, 1949 +Los Angeles, California, U.S +[a=Bob Crewe] helped him in the early stages of his career. +He became house producer for [a=Wes Farrell]'s [l=Chelsea Records]. +Produced hits for [a=Jim Gilstrap] ("Swing Your Daddy"), [a=Dee Clark] ("Ride A Wild Horse") and [a=Linda Carr] ("High Wire"). +Co-penned [a=LaBelle]'s "Lady Marmalade," and [a=Frankie Valli]'s "My Eyes Adored You." +He released four solo albums between 1977 - 1982.Needs Votehttp://www.songwriteruniverse.com/nolan.htmhttps://en.wikipedia.org/wiki/Kenny_NolanB NolanB. NolanBolanHelfmanHelfman KennethK NolanK. HelemanK. HolanK. MolanK. NlanK. NolaK. NolanK. NolandK. NolenK. NollanK.N. HelfmanK.NolanKen NolanKenet NolanKenneth NolanKenneth NolandKenny Nolan HelfmanKenny NolandKenny NowlanKeny NolánKerry NolanKnolinMolanNolanNolan K.Nolan KennyNolan, KennyNoleanNotanНоланНолэнThe Sex-O-LettesEleventh Hour + +144310John AdamsJohn Coolidge AdamsJohn Adams (b. 1947) is an American minimalist composer and conductor from East Concord, NH, director of [a=The San Francisco Conservatory New Music Ensemble], and a father of [a=Samuel Adams]. Some of his best-known works include [i]Short Ride In A Fast Machine[/i] (1986), [i]Harmonielehre[/i] (1985), minimalistic [i]Shaker Loops[/i] (1978) in four movements for strings, and Pulitzer-winning choral piece [i]On The Transmigration Of Souls[/i] (2002), dedicated to the victims of 9-11 attacks. John also wrote several operas, such as [i]Nixon in China[/i] (1987) and [i]Doctor Atomic[/i] (2005). Adams teaches composition at the [l=San Francisco Conservatory of Music]. Adams moved to San Francisco in 1971Correcthttps://www.earbox.comhttps://en.wikipedia.org/wiki/John_Adams_%28composer%29AdamsJ AdamsJ. AdamsJohn C. AdamsДжон Адамсジョン・アダムズ + +144440FunkaholicCorrect + +145072Roy OrbisonRoy Kelton OrbisonUS singer-songwriter, born April 23, 1936, Vernon, Texas, USA; died December 7, 1988 outside Nashville, Tennessee, USA. One of the few American artists to score significant British success during the "beat boom" of 1963-5, he made a comeback with the Traveling Wilburys shortly before his death at the age of 52. + +Inducted into Rock And Roll Hall of Fame in 1987 (Performer). +Inducted into Songwriters Hall of Fame in 1989. + +children: [a853546], [a1017760], [a2209378] +grandchildren: [a7215773], [a6121101], [a7215772]Needs Votehttps://royorbison.com/https://en.wikipedia.org/wiki/Roy_Orbisonhttps://www.songhall.org/profile/Roy_Orbisonhttp://www.10538overture.dk/Related%20bands/Roy%20Orbison/Fronts/roy_orbison_history.htmlhttps://kimsloans.wordpress.com/tag/roy-orbison-with-wink-westerners/https://www.7inchrecords.com/Discography/RoyOrbison/royorbison2.asp?Page=1&groep=https://adp.library.ucsb.edu/names/334771https://www.wikitree.com/wiki/Orbison-8https://open.spotify.com/artist/0JDkhL4rjiPNEp92jAgJnShttps://www.allmusic.com/artist/roy-orbison-mn0000852007Boy OrbisonGene ThomasObisonOrbinsonOrbinson RoyOrbisionOrbisonOrbison RoyOrbison Roy KeltonOrbison, ROrbison, R.Orbison, RoyOrbissonOribisonOribsonR OrbinssonR OrbisonR, OrbisonR. OrbinsonR. OrbiosnR. OrbisionR. OrbisonR. OrbissonR. OrbsonR. OrgisonR. OribsonR. RobinsonR.OrbinsonR.OrbisonRay ArbisounRay OrbisonRed OrbisonRex OrbitRob OrbisonRobinsonRoyRoy "Big O" OrbisonRoy K OrbisonRoy K. OrbisonRoy Kelton OrbisonRoy OrbinonRoy OrbinsonRoy OrbisionRoy OrbissonRoy OrbsonRoy RobsonRoy. OrbisonT. OrbisonYou OrbisonΡόυ ΌρμπισονР. ОрбисонРой ОрбисонРой Орбисънオービソンロイ・オービソンLefty WilburyThe Big 'O'Traveling WilburysThe Teen KingsRoy Orbison And FriendsClass Of '55The Wink Westerners + +145255John PattonAmerican jazz organist and pianist, also known as 'Big' John Patton, born July 12, 1935 in Kansas City, Missouri, died March 19, 2002 in Montclair, New Jersey. +Patton started his career as pianist with the [a=Lloyd Price] touring band from 1954 to 1959, before moving to New York. Once there, he began to make the transition from piano to organ and recorded with [a=Lou Donaldson] for [l=Blue Note] from 1962 to 1964. +In the mid 1980's, Patton was rediscovered by a younger generation, particularly [a=John Zorn], who began using his sound on recordings, and Patton continued to release new recordings into the 1990's, including two on the Japanese label [l=DIW Records]. +Needs Votehttps://en.wikipedia.org/wiki/John_Patton_(musician)https://www.jazzdisco.org/big-john-patton/discography/"Big" John Patton'Big' John PattonB.J. PattonBig John PattonJ. PattonJ.PattonJohn Patton (Big)Johnny PattonP. PattonPatonPattonPatton JohnPatton, Big JohnJohn Patton QuintetJohn Patton Quartet + +145256Thelonious MonkThelonious Sphere MonkAmerican jazz pianist and composer. + +Born: 10 October 1917 in Rocky Mount, North Carolina, USA. +Died: 17 February 1982 in Weehawken, New Jersey, USA (aged 64). + +A performer with an idiosyncratic improvisational style who made numerous contributions to the standard jazz repertoire and is the most recorded composer in the genre after [a145257]. He is often regarded as one of the founders of bebop. Monk's compositions and improvisations are full of dissonant harmonies and angular melodic twists. His unorthodox approach to the piano combines a highly percussive attack with abrupt, use of silence and dramatic pauses. He was also known for a distinct fashion sense in his suits, hats and trademark sunglasses. Monk was an unconventional stage presence, known for getting up from his piano to dance (sometimes in a counter-clockwise motion which drew comparisons to ring-shout and Muslim Sufi whirling) while his band members were playing. Recorded as leader for [l281] (1947-52), [l19591] (1952-54), [l34094] (1955-61), [l1866] (1962-68) and [l139936] (1971). Monk is one of only five jazz musicians to date to be featured on the cover of Time magazine, which puts him in a select company with [a=Louis Armstrong], [a=Dave Brubeck], Ellington, and [a=Wynton Marsalis]. + +Father of [a=Thelonious Monk Jr.] and Barbara Monk (who was known as [a953795]).Needs Votehttp://www.monkzone.com/https://www.theloniousmonkmusic.com/https://theloniousmonk.bandcamp.com/https://www.facebook.com/theloniousmonk/https://www.imdb.com/name/nm0598243/https://www.instagram.com/theloniousmonk/https://soundcloud.com/thelonious-monk-officialhttps://x.com/tsmonkofficialhttps://www.last.fm/music/Thelonious+Monkhttps://vimeo.com/theloniousmonkhttps://en.wikipedia.org/wiki/Thelonious_Monkhttps://www.youtube.com/@officialtheloniousmonkhttps://www.youtube.com/user/TheloniousMonkVEVO/https://www.britannica.com/biography/Thelonious-Monkhttps://www.bluenote.com/artist/thelonious-monk/https://www.jazzdisco.org/thelonious-monk/.http://www.monkbook.com/https://www.allmusic.com/artist/thelonious-monk-mn0000490416G. MonkMannMinkMonKMonkMonklN. MonkNonkR.MonkS. T. MonkT MonkT S MonkT, MonkT- MonkT. MonkT. MarkT. MokT. MonkT. Monk / Th. MonkT. MonkasT. MonksT. NonkT. S. MonkT.MONKT.MonkT.S. MonkT.S.MonkTMTelonious MonkTelonus MonkTh. MonkTh.MonkThel. MonkThelemonius MonkTheleonious MonkThelomious MonkTheloneous MonkThelonias MonkTheloniious MonkThelonilus MonkTheloniousThelonious MonThelonious Monk SoloThelonious S MonkThelonious S. MonkThelonious Sphere MonkThelonious Sphere MonkThelonious.monkThelonius MonkThelonius S MonkThelonius Sphere MonkTheloniusMonkTheolonious MonkTheolonious S MonkTheolonius MonkTheronious MonkThélonious MonkThéo MonkThéolonius MonkmonkТ. МонкТелониоус МонкТелониус МонкТелонијус Монкセロニアス・モンクセロニウス・モンクThe Thelonious Monk QuartetThelonious Monk SeptetThe Thelonious Monk QuintetDizzy Gillespie Big BandCharlie Parker And His OrchestraThelonious Monk SextetThelonious Monk TrioThe Modern Jazz GiantsSonny Rollins QuartetThe Thelonious Monk OrchestraClark Terry QuartetThe Thelonious Monk OctetThe Gigi Gryce QuartetThe Giants Of Jazz (2)Thelonious Monk NonetMilton Jackson And His New GroupThelonious Monk Big BandThelonious Monk GroupJam Session (At Minton's - May 8, 1947) + +145257Duke EllingtonEdward Kennedy EllingtonAmerican jazz pianist, composer and leader of his eponymous orchestra +Born April 29, 1899, Washington, D.C. +Died May 24, 1974 in New York City, N.Y. +Known for his residency at the [l=Cotton Club] (1927-1931) and for composing over a thousand pieces (often in collaboration), many of them now standards. [a258464] shared composing duties (1939-1967). +Father of [a323069], who took over the leadership of the orchestra after Duke died remaining until his own death in 1996. Grandfather of [a5641533].Needs Votehttps://dukeellington.com/https://en.wikipedia.org/wiki/Duke_Ellingtonhttps://www.britannica.com/biography/Duke-Ellingtonhttps://www.imdb.com/name/nm0254153/https://www.ellingtonia.com/https://ellingtonweb.ca/https://www.ascap.com/repertory#ace/writer/9211814/ELLINGTON%20EDWARD%20KENNEDYhttps://www.jazzdisco.org/the-ellingtonians/discography/https://www.songhall.org/profile/Duke_Ellingtonhttps://www.sonuma.be/archive/rencontre-avec-duke-ellingtonhttps://www.allmusic.com/artist/duke-ellington-mn0000120323"Duke" Ellington"The Duke" Edward Ellington"The Duke" Edward Kennedy Ellington'Duke' EllingtonDD EllingtonD, EllingtonD. EllingtonD. E.D. ElingtonD. ElingtonasD. EllinftonD. EllinghtonD. EllingtoD. EllingtomD. EllingtonD. Ellington-E. KennedyD. EllintonD. ElllingtonD. EllngtonD. WellingtonD. llingtonD.E.D.EilingtonD.ElingtonD.EllingtonDEDK EllingtonDiukas ElingtonasDjuk ElingtonDuce EllingtonDuck EllingtonDukeDuke AllingtonDuke ArlingtonDuke ElingtonDuke ElinktonDuke Elling TonDuke Ellington & His Great VocalistDuke Ellington & His OrchestraDuke Ellington And Small BandDuke Ellington OrchestraDuke EllingtorDuke EmingtonDuke KennedyDukeellingtonE "Duke" EllingtonE EllingtonE K EllingtonE. « Duke » EllingtonE. D. EllingtonE. Duke EllingtonE. E. EllingtonE. EllingtonE. Ellington, KennedyE. K. EllingtonE. KennedyE. Kennedy "Duke" EllingtonE.EllingtonE.K. "Duke" EllingtonE.K. EllingtonE.K.EllingtonE.Kennedy/EllingtonEd Kennedy EllingtonEdgar Kennedy EllingtonEdvard K. EllingtonEdward "Duke" EllingtonEdward "Duke" KennedyEdward 'Duke' EllingtonEdward (Duke) EllingtonEdward DukeEdward Duke EllingtonEdward EllingtonEdward Ellington KennedyEdward K. "Duke" EllingtonEdward K. EllingtonEdward K."Duke" EllingtonEdward KennedyEdward Kennedy "Duke EllingtonEdward Kennedy "Duke" EllingtonEdward Kennedy "Duke' EllingtonEdward Kennedy 'Duke' EllingtonEdward Kennedy ('Duke') EllingtonEdward Kennedy (Duke) EllingtonEdward Kennedy Duke EllingtonEdward Kennedy EllingotnEdward Kennedy EllingtonEdward Kennedy ElllingtonEdward Kennedy ‘Duke’ EllingtonEdward Kennedy “Duke” EllingtonEdward Kennedy “Duke” Ellington,Edward Kennedy “ Duke ” EllingtonEdward « Duke » EllingtonEdward „Duke“ EllingtonEdwars EllingtonEglintonElingtonElligntonElligtonElligton Edward KennedyEllin gtonEllingtoEllingtonEllington '66Ellington D.Ellington DukeEllington E. KennedyEllington Edward KennedyEllington Etc.Ellington, D.Ellington, DukeEllington, Edward Kennedy "Duke"Ellington, KennedyEllington-KennedyEllington/DukeEllington/Edward/KennedyEllington/KennedyEllintonElllingtonF.K. EllingtonHellingtonJ. EllingtonJamesK. E. EllingtonK.E. EllingtonKennedyKennedy Ellington EdwardM. EllingtonMr. EllingtonRobbinsSir Duke EllingtonSnyderThe DukeThe Duke Ellington OrchestraWilliam Kennedy "Duke" EllingtonWillingtond. EllingtonД. ЭленгтонД. ЭлингтонД. ЭллигтонД. ЭллингтонД. Эллингтон = D. EllingtonД.ЕллінгтонД.ЭллингтонДюк ЕлингтънДюк ЕлингтьнДюк ЭлингтонДюк ЭллингтомДюк ЭллингтонДюк ЭллингттонДјук ЕлингтонЭллингтонדיוק אלינגטוןエリントンデューク・エリントンデューク・エリントン艾靈頓公爵The Master (15)Martin BanksDuke Ellington And His OrchestraMetronome All StarsCootie Williams & His Rug CuttersThe Whoopee MakersDuke Ellington And His Cotton Club OrchestraDuke Ellington And His Kentucky Club OrchestraThe WashingtoniansBarney Bigard And His OrchestraRex Stewart And His OrchestraThe Harlem FootwarmersThe Jungle Band (2)Duke Ellington QuartetThe Chicago FootwarmersThe Georgia SyncopatorsJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersJoe Turner And His Memphis MenSonny Greer And His Memphis MenDuke Ellington And His Jazz GroupDuke Ellington's Hot FiveDuke Ellington's SpacemenThe Duke Ellington TrioDuke Ellington And His Big BandThe Oscar Pettiford QuartetDuke Ellington SextetDuke Ellington OctetIvie Anderson And Her Boys From DixieThe Six Jolly JestersDuke Ellington And The Whoopie MakersDuke Ellington Alumni All StarsDuke Ellington & FriendsDuke Ellington All Star Road BandThe Duke Ellington Small BandsHarlem Hot ChocolatesEsquire All American Award WinnersThe Ellington TwinsDuke Ellington And His Award WinnersThe Memphis Hot ShotsTen Black BerriesBarney Bigard And His JazzopatersThe Harlem Music MastersDuke Ellington's Philadelphia MelodiansFrank Brown And His TootersDuke Ellington And The Coronets + +145262Count BasieWilliam James BasieCount Basie (born Aug. 21, 1904, Red Bank, NJ, USA - died Apr. 26, 1984, Hollywood, FL, USA) was an American jazz pianist, organist, bandleader, and composer. + + +[b]Note:[/b] +For "Count Basie And His Orchestra" and "Count Basie Orchestra", please use [a=Count Basie Orchestra] + +Needs Votehttps://www.countbasie.net/https://web.archive.org/web/20160217122304/http://countbasie.com/https://www.facebook.com/countbasiejazz/https://en.wikipedia.org/wiki/Count_Basie"Count" BasieAtomic BasieBadieBaiseBaseiBasiBasicBasieBasie C.Basie, C.Basie, CountBasilBasioBill "Count" BasieBill BasieBill «Count» BasieBosieC BasieC. B.C. BaiseC. BasieC. DasieC. W. BasieC.B.C.BasieC.W. BasieCaunt BasieCoun BasieCount "William" BasieCount "Wm" BasieCount BaisieCount Basie & InvitésCount Basie & VoicesCount Basie JamCount Basie and His OrchestraCount Basie...Count Basie/Basie WilliamCount BassieCount W. BasieCount William BasieCount Williams BasieCoutie BasieCunt BasieD.R. BasieDasieThe Basie TrioThe CountW. BasieW. C. BasieW. Count BasieW.BasieW.C. BasieWiliam 'Count' BasieWiliam Count BasieWilliam "Count" BasieWilliam "Count" BasieWilliam 'Count Basie'William 'Count' BasieWilliam (Count) BasieWilliam BasieWilliam C. BasieWilliam C.BasieWilliam Count BasieWilliam J. BasieWilliam „Count“ BasieWilliams "Count" BasieWm. Count BasiebasieБ. КаунтК. БейзиК. БейсиКант БейзиКаунт БейсиКаунт Бэйсиカウント・ベイシーPrince Charming (6)Martin BanksCount Basie OrchestraCount Basie ComboMetronome All StarsBenny Goodman SextetCount Basie And The Kansas City SevenBennie Moten's Kansas City OrchestraCount Basie BandCount Basie, His Instrumentalists And RhythmIllinois Jacquet And His OrchestraBenny Goodman And His OrchestraJones-Smith IncorporatedBenny Goodman SeptetPaul Quinichette QuintetThe Kansas City SevenCount Basie Big BandLester Young QuintetThe Count Basie TrioCount Basie SextetCount Basie Five StarsBasie's Bad BoysCount Basie OctetCount Basie's All StarsKansas City 3Count Basie Small BandWalter Page's Blue DevilsCount Basie Blue FiveCount Basie QuintetNew York StarsThe Count Basie QuartetMetronome All-Star BandCount Basie And His All-American Rhythm SectionCount Basie And His Kansas City FiveThe Great Count Basie Band 1945Count Basie And His NonetPaul Quinichette SeptetJam Session All-StarsBenny Goodman Jam SessionThe Big Three (6) + +145263Dexter GordonDexter Keith GordonBorn: February 27, 1923 // Los Angeles, California, United States +Died: April 26, 1990 // Philadelphia, Pennsylvania, United States +Tenor saxophonist during the bebop era. Gordon was inspired by [a=Lester Young], as well as [a=Herschel Evans] and [a=Illinois Jacquet], tenor players of the 1930s and 1940s. +Needs Votehttp://www.dextergordon.com/https://en.wikipedia.org/wiki/Dexter_Gordonwww.jazzarcheology.com/artists/sedition_tenorsax_1940_1944.pdfhttps://www.britannica.com/biography/Dexter-Gordonhttp://www.bluenote.com/artists/dexter-gordonhttps://www.allmusic.com/artist/dexter-gordon-mn0000208404/discographyhttps://adp.library.ucsb.edu/names/318410D GordonD, GordonD. GordonD.GordonDexterDexter GordanDextor GordonGordonMartin BanksThe George Gruntz Concert Jazz BandLouis Armstrong And His OrchestraLionel Hampton And His OrchestraBilly Eckstine And His OrchestraTadd Dameron And His OrchestraDizzy Gillespie SextetDexter Gordon And His BoysDexter Gordon QuintetSir Charles And His All StarsDexter Gordon's All StarsLeo Parker's All StarsThe Dexter Gordon & Slide Hampton SextetCBS Jazz All-StarsThe Band (7)Dexter Gordon QuartetDexter Gordon & OrchestraRed Norvo SeptetStan Levey SextetDexter Gordon TrioDexter Gordon - Benny Bailey QuintetRed Norvo's NineRussell Jacquet And His Yellow JacketsDexter Gordon-Albert Mangelsdorff QuintetBenny Bailey-Dexter Gordon All StarsWillie Smith Sextet + +145264Sonny RollinsWalter Theodore RollinsSonny Rollins (born September 7, 1930, New York City, New York, USA) is an American jazz tenor saxophonist, widely recognized as one of the most important and influential jazz musicians. He has worked with greats such as [a23755], [a261196], [a251778], [a29992], and [a145256]. He was a recipient of the prestigious Polar Music Prize in May, 2007. In March 2011 he received the National Medal Of Arts from President [a1252891]. + +Winner of 2 Grammy Awards: +- Best Jazz Instrumental Album, Individual or Group for [m=918972] +- Best Jazz Instrumental Solo for Why Was I Born? on [m=772440]Needs Votehttps://sonnyrollins.com/https://www.facebook.com/officialsonnyrollinshttps://x.com/sonnyrollins/https://en.wikipedia.org/wiki/Sonny_Rollinshttps://www.allmusic.com/artist/sonny-rollins-mn0000039656"Sonny" RollinsC. RollinsRollinRollingsRollinsRollins SonnyRoninsRowlandsS RollinsS.S. RobbinsS. RollingsS. RollinsS. ロリンズS.R.S.RollinsSonnySonny CollinsSonny R ollinsSonny RolandsSonny RolinsSonny RollingSonny RollingsSonny Rollins (Walter Theodore Rollins)Sonny Rollins And OthersSony RollinsSunny RollinsT.W. RollinsTheodore "Sonny" RollinsTheodore Walter "Sonny" RollinsTheodore Walther "Sonny" RollinsWalter "Sonny" RollinsWalter RollinsС. РоллинсСонни РоллинзСонни Роллинсソニー・ロリンズThe Miles Davis SextetThe Thelonious Monk QuartetThe Miles Davis QuintetMiles Davis All StarsThe Thelonious Monk QuintetSonny Rollins Plus FourThe J.J. Johnson SextetBud Powell's ModernistsThe Modern Jazz GiantsSonny Rollins QuartetThe J.J. Johnson QuintetJ.J. Johnson's BoppersMiles Davis And His BandSonny Rollins & Co.Sonny Rollins QuintetMax Roach QuintetSonny Rollins TrioBabs Gonzales And His OrchestraArt Farmer QuintetClifford Brown and Max RoachSonny Rollins And The Big BrassThe Riverside Jazz StarsSonny Rollins / Don Cherry QuartetMiles Davis And His Cool WailersThelonious Monk GroupSonny Rollins And FriendsSonny Rollins And The Contemporary LeadersSonny Rollins Special QuartetClifford Brown Max Roach Quintet + +145273Keith JarrettKeith Daniel JarrettAmerican jazz pianist and composer, born 8 May 1945 in Allentown, Pennsylvania, USA. Jarrett played the piano from the age of three and also performed classical music. In 2018, he suffered two strokes and was left partially paralyzed. +He has own music publishing house - [l281563]. +He is the older brother of pianist and composer [a340423] and of singer-songwriter [a1409905].Needs Votehttps://www.keithjarrett.org/https://www.facebook.com/KeithJarrettOrghttps://myspace.com/keithjarrettmusichttps://en.wikipedia.org/wiki/Keith_Jarretthttps://www.nytimes.com/2020/10/21/arts/music/keith-jarrett-piano.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/323220/Jarrett_Keithhttps://www.allmusic.com/artist/keith-jarrett-mn0000066570https://www.allaboutjazz.com/musicians/keith-jarrett/JarettJarrattJarrettJarrett KeithK JarrettK. D. JarrettK. J.K. JarretK. JarrettK.D. JarrettK.J.K.JarretK.JarrettKJKeith Daniel JarrettKeith JarrattKeith JarretKeith JarretteKieth JarrettM. GarrettM. JarretM. JarrettК. ДжарреттК. ДжэреттКит Джарреттキース・ジャレットArt Blakey & The Jazz MessengersKeith Jarrett TrioThe Charles Lloyd QuartetThe College All-StarsBelongingKeith Jarrett QuartetKeith Jarrett European Quartet + +145288Nat King ColeNathaniel Adams ColesAmerican singer, jazz pianist, and actor. +Born: March 17, 1919 in Montgomery, Alabama, U.S.A. +Died: February 15, 1965 in Santa Monica, California, U.S.A. +Husband of [a883367]. +Father of [a12686], [a883046], and [a7603787]. +Brother of [a875292], [a=Ike Cole], and [a=Freddy Cole]. +Uncle of [a402249]. +He came to attention as a leading jazz pianist in the late 1930s. His trio of piano, guitar, & bass was emulated by many. In 1943, with his composition "Straighten Up and Fly Right", he had his first vocal hit. With his soft, baritone voice, Cole became an icon recording much mainstream, pop orientated material. Cole was one of the first African Americans to host a television variety show, with "The Nat King Cole Show" premiering on November 5, 1956, on NBC. + His numerous awards include the Grammy Lifetime Achievement Award in 1990, and being inducted into the Down Beat Jazz Hall of Fame in 1997 and into the Rock And Roll Hall of Fame in 2000 as a major influence on early rock & roll.Needs Votehttps://www.natkingcole.com/http://natkingcole.50webs.com/https://spriee.com/people/nat-king-cole/https://en.wikipedia.org/wiki/Nat_King_Colehttps://www.britannica.com/biography/Nat-King-Colehttps://www.imdb.com/name/nm0170713/https://adp.library.ucsb.edu/index.php/mastertalent/detail/104560/Cole_Nat_Kinghttps://www.allmusic.com/artist/nat-king-cole-mn0000317093"King Cole""King" Cole"Nat King" Cole"Nat" King Cole'King' ColeA. ColeAye Guy Alias Nat King ColeChloeCleColeCole, Nat KingColesK. ColeKingKing ColeKoleN .K. ColeN King ColeN. "King" ColeN. ''King'' ColeN. ColeN. K. ColeN. King ColeN.ColeN.K. ColeN.K.ColeN.King ColeNK ColeNastNast King ColeNatNat ColeNat "KIng" ColeNat "King" ColeNat "King" Cole,Nat "King” ColeNat "King„ ColeNat "Ring" ColesNat ''King" ColeNat ''King'' ColeNat 'King" ColeNat 'King' ColeNat 'King'ColeNat (King) ColeNat ,,King,, ColeNat ColeNat Cole-KingNat CollNat K. ColeNat KingNat King Cole & OrchestraNat King Cole With OrchestraNat King-ColeNat KingColeNat Kong ColeNat «King» ColeNat »King« ColeNat ‘King’ ColeNat ’King’ ColeNat “King” ColeNat ”King” ColeNat „King Cole”Nat „King“ ColeNat „King” ColeNat ›King‹ ColeNat" King" ColeNat'King'ColeNat-King ColeNat. ColeNatalie Cole & Nat King ColeNate ColeNathaniel ColeNatking ColeThe "King"The Young Nat King ColeНат "Кинг" КолНат «Кинг» КолНат Кинг КолНат Кинг КоулНэт Кинг Коул„Nat" King Coleナットキングコールナット・キング・コール納京高낫킹콜Eddie LagunaAye Guy"Shorty" NadineThe "King"Lord Calvert (2)Sam SchmaltzNature Boy (14)The International JazzmenMetronome All StarsThe Nat King Cole TrioLester Young TrioThe Just Jazz All StarsEddie Cole's Solid SwingersLester Young-Buddy Rich TrioMetronome All-Star BandKing Cole QuartetThe Keynoters (3) + +146655Nick Rafferty & The CoalitionCorrectNick Rafferty & CoalitionNick Rafferty And The CoalitionNick RaffertyDave WrightNick Rowland + +148227André PoppAndré Charles Jean PoppFrench composer, songwriter, arranger and conductor (19-02-1924, Fontenay-le-Comte, Vendée, France - 10-05-2014, Puteaux, France). Since the 1950s, he played his own works with his orchestra, accompanied French singers, composed scores for movies and TV programs. He's also famous for his series "Les aventures de Piccolo Saxo" which explains instruments and classical music to the children. +Needs Votehttp://www.andrepopp.com/https://all-conductors-of-eurovision.blogspot.com/1975/03/andre-popp.htmlA PoppA. BoppA. C. J. PoppA. C. PoppA. CanforaA. PoffA. PoopA. PopA. PoppA. PoppeA. PottA. ToppA.C. PoppA.PoppAdre PoppAndr PoppAndre Charles Jean PoppAndre Charles John PoppAndre PopAndre PoppAndre ToppAndre' PappAndre' PoppAndre-Charles-Jean PoppAndrea PoppAndrè Charles Jean PoppAndrè PopAndrè PoppAndréAndré Ch. J. PoppAndré Charles Jean PoppAndré PopAndré PopeAndré Popp Et Sa Musique "Sidérante"André Popp Et Sa Musique MagiqueAndré PoppeAndré RoppAndré popC. CanforaCharles Jean PoppD. PoppE. PoppJ. AndreL. PoppPoffPoopPopPoppPopp A. CourPopp Andre Charles JeanPopp AndréPopp, AndrePopp, Andre Charles JeanPottT. PopaА. ПонтА. ПопА. ПоппА. ПоппаАндре ПопАндре ПоппИ. ПоппИ. ПоппаПоппТ. Попаアンドレ・ポップポップChico Jurema NetoAndré Popp Et Son OrchestreAndré Popp Et Son EnsembleFredo Minablo Et Sa Pizza MusicaleElsa Popping + +148475Tony Scott (2)Anthony Joseph SciaccaTony Scott (born June 17, 1921, Morristown, New Jersey, USA - died March 28, 2007, Rome, Italy) was an American jazz clarinetist, band leader, song-writer, arranger, and producer. + +He performed with [a=Billie Holiday], [a=Sarah Vaughan] and [a=Harry Belafonte] among others. His first wife was [a=Fran Scott] (c.1950-1960). He emigrated to Italy in the early 1970s. He also made an approach to Asian cultures and meditation music, apparent e.g. from his 1964 album [m=138130], considered by some the first “New Age Music” manifesto. +Needs Votehttps://web.archive.org/web/20110208204944/http://www.tonyscott.it/https://en.wikipedia.org/wiki/Tony_Scott_(musician)https://tonyscottsungheroes.bandcamp.com/https://adp.library.ucsb.edu/names/342866ScottT. ScottT.S.Toni ScottTony Scott (USA)Tony Scott And His BuddiesW. ScottТ. Скоттトニイ・スコットトニー・スコットAnthony SciaccaBillie Holiday And Her OrchestraBen Webster And His OrchestraGeorge Treadwell And His All StarsTony Scott And His OrchestraThe Tony Scott QuartetTony Scott And His Down Beat Club SeptetBuster Harding's OrchestraMundell Lowe And His All StarsTony Scott All-StarsTony Scott SeptetThe Modern Jazz EnsembleLarry Sonn OrchestraTony Scott And His Orchestra And ChorusGeorgie Auld's All-StarsSteve Allen And His All-StarsTony Scott QuintetTony Scott TentetMel Powell & His All-StarsTony Scott - Franco D'Andrea QuartetEarl Bostic And His SeptetEarl Bostic's Gotham SextetTony Scott And His African Penny Whistle SerenadersBill De Arango Sextet + +149051Milt BucknerMilton Brent BucknerAmerican jazz pianist, organist and composer, born July 10, 1915 in St. Louis, Missouri, died July 27, 1977 in Chicago, Illinois. +Brother of saxophonist [a=Teddy Buckner (2)]. +Needs Votehttp://en.wikipedia.org/wiki/Milt_Bucknerhttp://www.jazzdocumentation.ch/buckner/discography/buckner.htmlhttps://www.allmusic.com/artist/milt-buckner-mn0000489843/biographyBucKner.Buck BocknerBucknerBugnerM. BucknerMIlton BucknerMiltMilt Buckner & CoMilton BrucknerMilton BucknerMilton Buknerミルト・バックナーLionel Hampton And His OrchestraLionel Hampton And His SeptetLionel Hampton And His QuartetLionel Hampton And His All-Star Alumni Big BandThe Milt Buckner TrioLionel Hampton And His SextetLionel Hampton & His Giants Of JazzBeale St. BoysThe Uptown Swing All StarsHerbie Fields SwingstersHamp-Tone All StarsMilt Buckner And His OrchestraGladys Hampton All StarsMilt Buckner & His AlumniMilt Buckner And His MusicMilt Buckner QuartetLionel Hampton's Just Jazz All Stars + +149254Milt JacksonMilton JacksonAmerican jazz vibraphonist, pianist, composer and bandleader +Born January 1, 1923, Detroit, Michigan, USA, died October 9, 1999, New York City, New York, USA + +Member of [a254990]. He performed with artists such as [a64694], [a75617], [a145256], [a272026], [a239399], and [a97545], among others as well as in his own bands. Brother of [a743244]. +Needs Votehttps://en.wikipedia.org/wiki/Milt_Jacksonhttps://www.britannica.com/biography/Milt-Jacksonhttps://www.bluenote.com/artist/milt-jackson/"Bags"(Milt JacksonBagsJacksonJackson / MiltJackson/MiltM. JacksonM.JacksonMiltMilt "Bags"JacksonMilt "Bags" JacksonMilt "Bags"JacksonMilt ("Bags") JacksonMilt JackssonMilton "Bags" JacksonMilton "Milt" JacksonMilton JacksonMilton “Milt” JacksonМ. ДжексонМилт Джексонミルト・ジャクソンBrother Soul (3)The Modern Jazz QuartetThe Thelonious Monk QuartetDizzy Gillespie And His OrchestraWoody Herman And His OrchestraThe Thelonious Monk QuintetDizzy Gillespie SeptetDizzy Gillespie Big BandBenny Golson SextetDizzy Gillespie SextetColeman Hawkins And His OrchestraDizzy Gillespie JazzmenHoward McGhee SextetThe Modern Jazz GiantsThe Milt Jackson QuartetMilt Jackson And His Gold Medal WinnersMilt Jackson OrchestraMilt Jackson QuintetMilt Jackson SextetMilt Jackson & StringsWoody Herman And His WoodchoppersThe Dizzy Gillespie Big 7Lucky Thompson's All StarsMilt Jackson And Big BrassCTI All-StarsWalter Gil Fuller And His OrchestraMcGhee-Navarro BoptetQuadrant (6)Clark Terry SextetKenny Clarke And His CliqueThe Oscar Peterson Big 6Henri Renaud BandDizzy Gillespie's Rebop SixThe BirdlandersWoody Herman And His Third HerdThe Quincy Jones Big BandMilt Jackson Et Son Orchestre À CordesRay Brown's All StarsThe Three AngelsTempo Jazz MenThe Paris All-StarsHank Mobley And His All StarsMilton Jackson And His New GroupGil Fuller OrchestraMilt Jackson SeptetWoody Herman & The Second HerdBirdland All-StarsMilt Jackson Ray Brown QuartetDizzy Gillespie-Charlie Parker Jazzmen + +149255Frank StrazzeriFrank John StrazzeriAmerican jazz pianist, composer and band leader +Born : 24 April 1930 in Rochester, New York, USA, died 9 May 2014 in Rochester, New York, USA +Needs Votehttp://en.wikipedia.org/wiki/Frank_StrazzeriF. StrazzeriFrank StrazzariFrank StrazzieriFrank StrazzoriStrazzeriArt Pepper QuartetArt Pepper QuintetCurtis Amy SextetTerry Gibbs QuintetDon Rader QuintetLouie Bellson Big BandThe Red Mitchell - Harold Land QuintetOliver Nelson's Big BandFrank Strazzeri QuartetLennie Niehaus QuintetDon Menza & His '80s Big BandThe Bill Perkins QuartetThe Herb Ellis QuintetBob Summers QuintetFrank Strazzeri SextetThe Don Menza SextetThe Woody James SeptetThe Conte Candoli - Med Flory QuintetJohn Tirabasso QuartetFrank Strazzeri TrioThe Bill Perkins Big BandBill Perkins - James Clay QuintetWoodwinds WestHank De Mano QuartetLook For Your OwnPete Deluke QuartetMark Halbheer's LA EditionThe Bill Perkins - Steve Huffstetter QuintetDavid Eastlee SextetJack Martin Octette + +149840Yvonne KennyAustralian operatic soprano, born 25 November 1950 in Sydney, Australia.Needs Votehttp://www.yvonnekenny.com/KennyY. KennyYvonne Kenny AMYvonne Kenny a.o.Winton Kenny + +150019Benjamin Herman (2)American percussionist.Needs VoteBen HermanBenjamin S. Herman Jr.American Composers OrchestraThe American Symphony OrchestraOrpheus Chamber OrchestraEos OrchestraWestchester PhilharmonicThe American Brass Quintet Brass Band + +150114Ed RealEd JenkinsUK hard house DJ and producer. +Co-owner of the digital download platform trackitdown.net +Correcthttp://www.riotinlondon.com/RealEd Jenkins + +150182Jean-Claude VannierJean-Claude Michel VannierFrench musician, composer and arranger, born 1943 in Bécon les Bruyères, France.Needs Votehttp://www.jeanclaudevannier.frhttps://all-conductors-of-eurovision.blogspot.com/1973/04/jean-claude-vannier.htmlhttps://en.wikipedia.org/wiki/Jean-Claude_Vannierhttps://fr.wikipedia.org/wiki/Jean-Claude_VannierC. VannierC.VannierClaude VannierJ C. VannierJ-C VannierJ-C. BannierJ-C. VannierJ. - C. VannierJ. -C. VannierJ. -Cl VannierJ. C VannierJ. C. VanierJ. C. VannierJ. C.VannierJ. Cl. VannierJ. Claude VannierJ. VannierJ.-C. VannieJ.-C. VannierJ.-C.VannierJ.-Cl VannierJ.-Cl. VannierJ.C VannierJ.C. VanierJ.C. VannierJ.C. VanniereJ.C.VannierJ.Cl. VannierJ.Claude VannierJC VannierJC. VannierJC.VannierJean - Claude VannierJean Claude Michel VannierJean Claude VannierJean, Claude VannierJean-Cl. VannierJean-Claud VannierJean-Claude Michel VannierJean-Claude VanierVannierVannier JCJean-Claude Vannier & Son OrchestreJean-Claude Vannier Et Son Ensemble + +150409Alphonso JohnsonAlphonso Antonio JohnsonAmerican bassist, Chapman Stick player, composer. +Born : February 02, 1951 in Philadelphia, Pennsylvania. + +Started touring at the age of seventeen. Appointed to a teaching position at The University of Southern California as an adjunct associate professor in 2004.Needs Votehttp://www.embamba.com/http://en.wikipedia.org/wiki/Alphonso_Johnsonhttp://www.whosampled.com/Alphonso-Johnson/http://www.allmusic.com/artist/alphonso-johnson-mn0000130862/biographyhttps://web.archive.org/web/20210210204505/http://embamba.com/https://www.facebook.com/AlphonsoJohnson.OfficialPageA. JohnsonA. JohansonA. JohnsonA.JohnsonAl "Embamba" JohnsonAl JohnsonAlfonso JohnsonAlphonosAlphonse JohnsonAlphonsoAlphonso "Slim" JohnsonAlphonso 'Slim' JohnsonAlphonso JohnssonAlphonson JohnsonJohnsonEmbambaWeather ReportSantanaCatalyst (4)Woody Herman And His OrchestraThe Billy Cobham / George Duke BandBobby And The MidnitesThe MeetingAbraxas PoolJazz Is DeadWoody Herman And The Thundering HerdGregg Rolie BandBob Conti QuartetSonny Rollins Special Quartet + +150699Randy KatanaRandall E. JoubertDJ and producer born in St. Maarten (Netherlands Antilles) on the 14th of March 1965, lived in the Netherlands, Curaçao and Aruba before going to College in US. On holidays to Aruba (home at that time) he was dj-ing in the biggest clubs on the island, being 17 years of age. +In 1988 he started producer career. Founder of [l=BPM Dance].Needs Votehttps://soundcloud.com/randy-katana-officialhttps://www.facebook.com/RKRandyKatanahttps://twitter.com/Randy_Katanahttps://en.wikipedia.org/wiki/Randy_Katanahttps://myspace.com/randykatanahttp://web.archive.org/web/20031218073355/http://www.randykatana.com/http://web.archive.org/web/20160109160400/http://www.randykatana.com/http://web.archive.org/web/20180323220249/https://virtualdancemusic.com/randykatana/R. KatanaR.K.Randy KantanaDJ RandyKatanaPhantomNoskiRandy JoubertM. A. D. MADAlter Codec + +151379Tommy FaragherThomas Edward Faragher[b]Producer - singer - songwriter - keyboardist[/b] + +Hails from Redlands, California +Brother of [a=Danny Faragher], [a=Jimmy Faragher], [a=Davey Faragher] +Needs VoteFaragherFarargherMadflyT E FaragherT. FaragharT. FaragherT. FarragherT.FaragherThomas E FaragherThomas FaragherTom E. FaragherTom FaragherTom FarragerTom FarragherTommy 'Madfly' FaragherTommy FaragharTommy FarargherTommy Farragherトミー・ファラガーFaragher Bros + +151384Albhy GalutenAlan Bruce GalutenAlbhy Galuten (b.December 27, 1947, Hartsdale, New York, USA) is an American record producer, composer, musician, arranger, conductor, technology executive and futurist. He is is noted for having created the first commercial drum loop (on the Bee Gees' track "Stayin' Alive") and the enhanced CD.Needs Votehttps://en.wikipedia.org/wiki/Albhy_GalutenA. GalutenA. GaluthenA.GalutenAbby GalutenAl. GalutenAlbby GalvtenAlbeeAlbhey GalutenAlbhyAlbhy GaluteenAlbhy GalutinAlbhy GalvtenAlbhy GaultedAlbhy. GalutenAlbhy/GalutenAlby GalutenAlbyh GalutenAlhby GalutenAllby GalutenAndy GalutenBarry GibbGaluten + +151396Karl RichardsonEngineer and producer who has worked at [l=Criteria Recording Studios], Miami, Florida, United States +Since 1967, while still at junior college, he worked as maintainer and mastering engineer there. He watched all the big stars recording sessions and eventually became involved himself as a recording engineer in the early '70s. He soon earned producer credits, too. +In the late '80s he changed to become a 'Broadway sound designer' for some time. +Now he belongs to the staff of the [l=Audio Vision Studios].Needs Votehttp://www.audiovisionstudios.com/karl.htmhttp://www.mixonline.com/news/profiles/karl-richardson/375197Carl RichardsonK. RichardsonK.RichardsonKRKarlKarl 'Thingy' + +151481Barry GibbBarry Alan Crompton GibbSir Barry Gibb, CBE (born September 1, 1946, Douglas, Isle of Man) is a British guitarist, vocalist and songwriter for the [a=Bee Gees]. He was knighted in the 2018 New Year Honours, for services to music. +Son of [l=Hugh & Barbara Gibb]. Brother of [a=Lesley Gibb], [a=Robin Gibb], [a=Maurice Gibb] and [a=Andy Gibb]. Father of [a=Stephen Gibb], [a=Ashley Gibb], [a=Travis Gibb], Michael Gibb and Alexandra Gibb.Needs Votehttps://www.barrygibb.com/https://www.facebook.com/BarryGibbOfficial/https://twitter.com/gibbbarryhttps://www.instagram.com/officialbarrygibb/https://www.instagram.com/_barry_gibb_forever/https://beegees.fandom.com/wiki/Barry_Gibbhttps://en.wikipedia.org/wiki/Barry_Gibbhttps://www.imdb.com/name/nm0002956/https://musicianbio.org/barry-gibb/https://www.biography.com/musician/barry-gibbhttps://www.famousbirthdays.com/people/barry-gibb.htmlhttps://www.geni.com/people/Sir-Barry-Gibb/6000000014566563640https://www.astro.com/astro-databank/Gibb,_Barryhttps://www.allmusic.com/artist/barry-gibb-mn000065911810A. GibasAlan Barry GibbBB .GibbB A GibbB GibbB GibbsB,. GibbB.B. &B. & R. GibbB. +B. A. GibbB. Alan GibbB. GIbbB. GeibbB. GibbB. Gibb - A. GibbB. GibbovéB. GibbsB. GibbuseB. GilbB. R. & GibbB. R. & M. GibbB. R. GibbB. RibbB., M. GibbB., R. GibbB.A. GibbB.GibbB.GibbsB.R. GibbBGibbBR. GibbBarryBarry &Barry - GibbBarry A GibbBarry AlanBarry Alan Crompton GibbBarry Alan GibbBarry Allan GibbBarry Allen GibbBarry GBarry G.Barry GibBarry Gibb AlanBarry GibbsBarry GiibbBarry GipBarry,Barry-Barry-GibbBary GibbPPBerryBerry GibbC.B. GibbE. GibbsG,GibbGib BarryGibbGibb BGibb BarryGibb Barry AlanGibb, B.Gibb-GibbGibbsGivvM.GibbR. & B. GibbR. GibbW. M. GibbБ. ГибБ. ГиббДжиббבארי גיבバリー・ギブ巴瑞吉伯Bee GeesRobin Gibb, Barry Gibb & Maurice GibbThe BunburysOne World ProjectBarry & Maurice GibbThe Bee Gees Band + +151486Adrian BakerAdrian Keith BakerNeeds Votehttps://web.archive.org/web/20130113124459/http://adrianbakerproductions.com:80/http://www.adrianbakerproductions.com/https://en.wikipedia.org/wiki/Adrian_BakerA. BakerA.BakerAdrain BakerAdriam BakerAdrian "sherry" BakerAdrian Baker MusicAdrian Baker of The Beach Boys BandAdrian Keith BakerAdrien BakerAdrián BakerBakerアドリアン・ベイカーRudy (36)Gidea ParkPapa Doo Run RunM Squad (2)Celebration (7)Buster (5)The Boston BoppersThe Tonics (3)Pebbles (7)Mayfair (11)Baker Street (4) + +151641Traditional[b]Traditional[/b] is not a real composer; it is a credit given for any piece of music where the songwriter is not known and the music has been handed down - usually by rote (word of mouth / copying the music by ear). It is a common credit in music such as blues, folk, jazz, world, classic and rock (to a lesser extent). + +[b]Please read the entire profile before deciding whether a credit to [i]Traditional[/i] is appropriate.[/b] + +Use the Traditional credit only for composition type credits. ([g2.3.1.]) +For 'Folk', 'Folklore', or variations/translations, please use [b][a=Folk][/b] and an ANV. +Common abbreviations for this credit are 'Trad' and 'Trad.' or any language variation thereof. + +NOTE: If the writer credit is NOT a variation or translation of 'Traditional', such as DP (Domaine Publique/Public Domain). please check for an existing artist name, before using Traditional with the appropriate ANV. +Other existing placeholder names used for composing credits are for instance [a=Folk], [a=Anonymous], [a=Unknown Artist]. +Also note [a=No Artist] for use as a main artist placeholder. + +For releases using 'PUBLIC DOMAIN' and variations, please put the information in the notes and/or baoi section. +Needs Vote"Da Klokken Klang""Deilig Er Den Himmel Blå""Eg Gjette Tulla""Forest Green", Trad."Herman Er En Lystig Fyr""Hopp, Hopp, Hopp""Schemellisches" Gesangbuch"Tabarra" Trad Manding"Zu Mandua in Banden" Andreas-Hofer-Lied"Zu Mantua In Banden"###'The Lúradán's Jig', Traditional(...)(1814) Trad.(PD)(Spiritual)(Trad)(Trad, Bosnian)(Trad.)(canto regional)(trad.)(молдавская нар. песня)***+++.تراث س/ Trad.1 Corinthiërs 13 1-3,12-131 Kor 15, Upp 41 Petr 1, Ps 84, Jes 351, 3 to 161, 3 to 7, 910th Century12th Century Carol12th Century French12th Century Melody13. Jhdt.13th Century Spain13th Century Traditional14. Jahrhundert14. Jh.14. Századi Latin-Német Ének14th Cent. Polish14th Century14th Century German14th-Century German Carol From Piæ Cantiones14th-cent. German14th? c. German melody15. Jahrhundert15. Jh.15de Eeuwse Melodie15th Cent. English15th Century German Folk Carol15th Century Legend15th Century Traditional Carol15th c. English15th-Century English, Traditional15th-century French15th. C. German melody16, Jahrhundert16. Gs. Hernhūtiešu Dz.16. Jahrh.16. Jahrhundert16. Jahrhundert / Geistlich Erfurt 15721688/Geistlich16c. French Tune16th C. Spanish Madrigal16th Cent French16th Century16th Century Carol16th Century English16th Century English Melody16th Century French16th Century French Dance16th Century Romantic Dance16th Century Traditional; Trad.16th Century Welsh Air16th c. French melody16th c. Spanish16th c. Swedish melody16th century Swedish melody16th-Century French Carol16th. C. German melody17th Century Folk Carol17ème Anglais18-de eeuw18th Century18th Century French Folk Carol18th Century Latin Hymn18th Century Melody18th-Century Traditinal Irish Christmas Text19. Jahrhundert1948-49. Évi Katonadalok19th Cent. English19th Century Latin Hymn19th Century Plainsong19th Century Ukranian19th Century Ukranian Carol1ος Χανιώτικος συρτός, παραδοσιακό2. Hälfte Des 17. Jahrhunderts2.º Ref. Angolano2nd Canticle Of Evensong2ος Λουσακιανός συρτός, παραδοσιακό30ndate aastate lööklaul4. Mosebok 6:24-2643. Salme5ème Figure - Trad.67-stimmiges Jodlerlied9th Century Latin Hymn9th Century Traditional SardanaA 17th Century Jewish SongA Chester ManuscriptA Combination Of Various Traditional VersionsA Song From Khorasan ProvinceA Song Of The ChartistsA Traditional From UgandaA Traditional Melody From DonegalA Traditional Waltz From FinnskogenA. D.A. D. JugendbewegungA. GermanA. St.-DenisAbcházska Ľudová PieseňAbesti TradizionalaAboriginal TraditionalAborigines TraditionalAborígenes AustralianosAbruzzeseAcadieAdana TürküsüAdaptationAdaptação Hinos do Santo-Daime e Folias De ReisAdapted From A Native SongAdestes FidelesAdvent AntiphonAdvent Hymn - Originating 6th Century]Adventna Iz TirolskeAerpievaajese/Trad.Aerpievuelie Jih Aerpievaajese/Trad.Aerpievuelie/Trad.Afghanistan TraditionalAfr. TradAfr. Trad.Afr. TraditionalAfr. VolksliedAfricanAfrican Amercan SpiritualAfrican American SpiritualAfrican Folk SongAfrican Griot SongAfrican SpiritualAfrican Trad.African Trad. SongAfrican TraditionalAfrican Traditional MelodyAfrican Traditional PoetryAfrican TuneAfrican Zulu Folk SongAfrican traditionalAfrican-American FolkAfrican-American GospelAfrican-American SpiritualAfrican-American TraditionalAfrican-American Work SongAfrická LidováAfrický TradicionálAfrikan. TraditionalAfrikanische Folklore (Tansania)Afrikanisches AbendgebetAfrikanisches LiedAfrikanisches ScherzliedAfrikanisches VolksliedAfrikansk BønnAfrička NarodnaAfriškaAfriška Ljudska / African TraditionalAfro Brazilian ChantAfro NationalAfro-BrasileiroAfrocuban - Trad.After D.T.S. BjerregaardAfter Petter L. RypdalAfter Trad. ScottishAgnus Dei Braunschweig 1528Air AncienAir De Danse PopulaireAir Du FolkloreAir IrlandaisAir Pop. RusseAir Popolaire De TimimounAir PopulaireAir Populaire AllemandAir Populaire HongroisAir Populaire KabyleAir Populaire PolonaisAir Populaire RusseAir Populaire TziganeAir Retrouvé Par La SoyotteAir TraditionalAir TraditionnelAir Traditionnel BasqueAir Traditionnel SuisseAir Traditionnel ÉcossaisAir traditionnelAire TípicoAires Folklóricos IntibucanosAirs PopulairesAirs Populaires TziganesAirs TraditionnelsAl-AnsarAlan Lomax Field RecordingAlan PriceAlaw GymreigAlbania (Lake Prespa Region, traditional)Albanian Folk SongAlbanian Trad.Albanian TraditionalAlbanian Traditional From MacedoniaAlbanian Traditional SongAlbanskAlbansk UngdomssångAlbanska NarodnaAleppo, Syria TraditionAlexandrinoAlexandrino AntigoAlgerian National PatrimonyAlgonquian IndianAlku-KanteletarAlkuperäinen MustalaissävelAll Rights ReservedAll TraditionalsAll-irsk TradisjonellAllemande Efter Johan Herman Schein (1586-1630)Almlied Aus TirolAlpenländische VolksweisenAlpenländisches AdventliedAlpenländisches Trad.Alpenländisches VolkslieAlpenländisches VolksliedAlpine TradAlsatianAlsungas - Lielvārdes Tautas DziesmaAltAlt Norwegisch, 9. Jhdt.Alt. Stud. MelodieAltay Comic SongAltbairische VolksweiseAltburgenländischer MarschAltböhmischAltböhmische WeiseAltböhmisches WeihnachtsliedAltböhmisches Weihnachtslied Aus Dem Jahre 1870AltdeutschAltdeutscher LiebesreimAltdeutsches LiebesliedAlte Kiewer MelodieAlte MelodieAlte Melodie Aus KiewAlte Melodien Gälischen, Keltischen Und Bretonischen UrsprungsAlte Schottische BalladeAlte Schottische WeiseAlte VolkstanzAlte VolksweiseAlte WeiseAlte Zigeuner-RomanzeAltenglischAltenglisches VolksliedAlter BrauchAlter Harzer BergmannspruchAlter Kärntner WildgesangAlter NaturjodelAlter Schweizer SterndrehermarschAlter Singener Fasnets-SpruchAlter SpruchAlter Sterndrehermarsch Aus Der SchweizAlter Thüringischer FesttanzAlter VolkstanzAlter thüringischer FesttanzAltes BergmannsliedAltes Böhmisches VolksliedAltes Böhmisches WeihnachtsliedAltes Dt. Lied Aus Dem BauernkriegAltes Englisches LiedAltes Finnisches VolksliedAltes GebetAltes Geistl. LiedAltes Geistliches LiedAltes HarfenistenliedAltes Hebräisches KlagegebetAltes Kampflied der deutschen ArbeiterjugendAltes KindergebetAltes KirchenliedAltes KärntnerliedAltes MatrosenliedAltes Neapolitanisches LiedAltes Russ. SoldatenliedAltes Russisches Volkslied Zur WeihnachtszeitAltes SchifferliedAltes Schneeberger BergmannsliedAltes SeemannsliedAltes SoldatenliedAltes StudentenliedAltes TestamentAltes VolksliedAltes WallfahrerliedAltes Walonisches VolksliedAltes WeihnachtsliedAltes Weihnachtslied um 1600Altes Zigeuner-LagerliedAltes Zigeuner-ScherzliedAltes französisches WeihnachtsliedAltes italienisches RevolutionsliedAltes russische Volkslied zur WeihnachtszeitAltes russisches Volkslied zur WeihnachtszeitAltfranzösischer ReigentanzAltfrentsch-Sammlung GontenAltiplano BolivianoAltiplano De ChileAltirische VolksweiseAltkölnisch, Um 1800Altniederländisches VolksliedAltrheinische WeiseAltruss. VolksliedAltrussische VolksweiseAltschottische BalladeAltsp.Alžírská lidováAm. MelodiAm. Trad.Am. TraditionalAm. Volksw.Amazon Indian Song, Trad.Ambrosian ChantAmbrosian Chant (6th Century)Ameerika laulAmeerika rahvalaulAmeerika rahvaviis „Yankee Doodle”Ameerika trad.Amer.Amer. Folk SongAmer. Lid.Amer. Trad.Amer. VolksweiseAmer. lid.Americ. Trad.AmericanAmerican / FinnishAmerican Christmas CarolAmerican FolkAmerican Folk CarolAmerican Folk SongAmerican Folk Song / TradAmerican Folk/WelshAmerican HymnAmerican Indian Christmas CarolAmerican Irish Hymn / Irish Folk MelodyAmerican LullabyAmerican MelodyAmerican NativeAmerican Sea ChantyAmerican Shaker SongAmerican Singing GameAmerican SongAmerican SpirituaAmerican SpiritualAmerican Trad.American Trad. SongAmerican Trad. TuneAmerican TraditionalAmerican Traditional SongAmerican TradiționalAmericanTraditional Folk SongAmerická Lid.Americká LidováAmerická Lidová PíseňAmerická ĽudováAmerik. Trad.Amerik. TraditionalAmerik. VolksliedAmerik. VolksweiseAmerikaans VolksliedAmerikaiAmerikai AltatódalAmerikai NépdalAmerikanische VolksweiseAmerikanischen Volksw.Amerikanischer SpiritualAmerikanischer Western-SongAmerikanisches NegervolksliedAmerikanisches Tramper LiedAmerikanisches VolksliedAmerikanskAmerikansk BørnesangAmerikansk FolkemelodiAmerikansk FolkmelodiAmerikansk FolksongAmerikansk MelodiAmerikansk Trad.Amerikansk TraditionalAmerikansk TraditionelAmerikanskt UsprungAmerikiečių TradicinėAmerikk. Kansanl.AmerikkalainenAmerikkalainen Kansansäv.Amerikkalainen KansansävelAmerikkalainen Trad.Amerikāņu DziesmaAmerikāņu SpirituālsAmerikāņu t.dz.Američka TradicijskaAmeriškaAmeriška Trad.Ameriška TradicionalnaAmeriška tradicionalnaAmerískt ÞjóðlAmerískt ÞjóðlagAmerískt þjóðl.Amr. Trad.AmramAmsterdam TraditionAn English Christmas Carol (Author Unknown)An Estonian SongAn Old RomanceAn Old WaltsAn. BohémienAnatolian TraditionalAncestors YoikAncienAncienne Ballade IrlandaiseAnciens Et ModernesAncientAncient Celtic TextAncient ChantAncient ChineseAncient Chinese PoemAncient EgyptianAncient English CarolAncient Greek MusicAncient Hawaiian ChantAncient Hebrew MelodyAncient Indian MelodyAncient IrishAncient Irish HymnAncient Irish Hymn MelodyAncient Irish LyricAncient Irish TextAncient MelodyAncient MusicAncient Romanian IncantationAncient Scottish AirAncient Tartar Melody From CrimeaAncient TraditionalAncient TuneAndalusian TraditionalAndrew LangAngels We Have Heard on HighAngl. Lid.Angl. ĽudováAngleška BožičnaAngleška LjudskaAngleški NapevAnglican ChantAnglická Lid.Anglická LidováAnglický TradicionálAnglosaská KoledaAnglų ValsasAngolAngol Karácsonyi DalAngol Karácsonyi ÉnekAngol NépdalAngol NépköltésAngolastaAngoûmoisAngļu Dz.Angļu T. Dz.Angļu Tautas MelodijaAnloAnn. - Trad.Ann. Trad.AnomimoAnonAnon USA 1883Anon.Anon. FolksongAnon. Trad.Anon. XVIII Sec.Anon., Traditional CarolAnon/CollectedAnonimAnonim.Anonima EspañolaAnonimoAnonimo CubanoAnonimo Da FirenzeAnonimo Da PistoiaAnonimo Del 700Anonimo Del Sec XIVAnonimo Del XVII Sec.Anonimo Del XVIII SecoloAnonimo Franc. Del XVII Sec.Anonimo Franc. Del XVIII Sec.Anonimo Franc. XV Sec.Anonimo Franc. XVII Sec.Anonimo Napoletano 700Anonimo del XVI Sec.Anonimous XVIII Century ComposerAnonimous artistsAnonimowego Kompozytora ŚredniowiecznegoAnonymAnonym A ĽudováAnonymeAnonyme 17eAnonyme 17émeAnonyme Anglais, 16ᵉ SiècleAnonyme ArménienAnonyme BulgareAnonyme Gregorianische VertonungAnonyme Traditionnel D'ArménieAnonyme XVIeAnonyme XVIe SiècleAnonyme XVIe Siècle (Catalogne)Anonymer FranziskanermönchAnonymousAnonymous (Traditional)Anonymous EnglishAnonymous English Folk-SongAnonymous German HymnAnonymous LatinAnonymous Traditional Music, ArgentinaAnonymusAnonymus (450 - 650)Anonymus (englisch)Anonymus/GregorianischAnoymousAntica Canzone Creola Della LouisianaAntica Lauda NataliziaAntica Lauda Tradiz.Antica Melodia Pop.Antica Melodia Popolare Ashkenazia OrientaleAntica PastoraleAntico Canto Di NataleAntico Canto Natalizio MarchigianoAntienne MarialeAnónimoAnónimo - Popular MejicanoAnónimo De Las AntillasAnónimo EspañolAnónimo Siglo XVIIIAnónimo venezolanoAnónimo-PopularAnônimoAp3, 14-20Apache IndiansAppalachianAppalachian CarolAppalachian Carol /BalladAppalachian Folk CarolAppalachian Folk HymnAppalachian Folk SongAppalachian InstrumentalAppalachian Trad.Appalachian TraditionalAraabia Viis / Arab TuneArab TraditionalArab. Trad.ArabesqueArabian MelodyArabicArabic FolkArabic FolkloreArabic LullabyArabic Trad. Mohammed Abdel-WahabArabic TraditionArabic TraditionalArabic Traditional SongArabik AdaptasyonArabik GelenekselArabische FolkloreArabo-Andalou, XIIIèmeArap TradicionalArapskaArapska IzvornaArbeiter-Trad.ArbeiterkampfliedArbeiterliedArchaicAreitoArgentinaArgentina (traditional)Argentinian CarolArgentinienArgentinsk Folkem.Argentinsk FolkesangArgentinska LjudskaArgentinská LidováArgentinská PíseňArgentinská lidováAriasArmandinhoArmen. Trad.Armenia, Trad.ArmenianArmenian FolkArmenian Folk MelodyArmenian Folk SongArmenian Folk SongsArmenian Medieval HymnArmenian Sacred - TraditionalArmenian Trad.Armenian TraditionArmenian TraditionalArmenian Traditional ChantArmenian Traditional Collected By KomitasArmenian TraditionalsArmenicArmenien, trad.Armenisch Trad.ArménienArménská LidováArr. BMBArrangement Of A Folk Ballade From PernajaArrangement Of Russian Folk SongArtvin Halk TürküsüAs If I'd Know ThatAs Sung By The McPeake FamilyAserbaidshanisches VolksliedAshkenazic TraditionalAssumed TraditionalAssyrialainen Vanha SävelmäAssyrian Couple DanceAssyrian Line DanceAsturian TradAufgezeichnet Von Louis PinckAus "Dem Knaben Wunderhorn"Aus "Des Knaben Wunderhorn"Aus "Des Knaben Wunderhorn" II, 1808Aus "Deutsche Volkslieder" 1807Aus "Frankfurter Liederbüchlein" 1582Aus "Jubelgesänge"Aus "Lieder für Jung und Alt" 1818Aus AargauAus Altern LiederbuchAus AmerikaAus BeneckensteinAus BerlinAus BreslauAus BöhmenAus ChinaAus Croatia / JiddischAus Dem BöhmischenAus Dem Eichsfeld (Vor 1850)Aus Dem ErzgebirgeAus Dem Geistlichen PsälterleinAus Dem Hoch- Und DeutschmeistermarschAus Dem HunsrückAus Dem Jahre 1760Aus Dem Kanton BernAus Dem KosovoAus Dem OdenwaldAus Dem Werk Historische Antiquitäten Von RittgräffAus Dem WesterwaldAus Den BefreiungskriegenAus Den Niederlanden (1712)Aus Der BatsckkaAus Der DDRAus Der OstschweizAus Der Schweiz (Kantone Bern Und Wallis)Aus Der SteiermarkAus Des Knaben WunderhornAus Einem Alten Schlesischen KrippenspielAus FinnlandAus FlandernAus FrankreichAus Fremden Landen Komm Ich HerAus HollandAus IrlandAus ItalienAus JugoslawienAus MecklenburgAus NiederösterreichAus NordböhmenAus NorddeutschlandAus PolenAus PortugalAus Portugal, 1815Aus RußlandAus SalzburgAus Salzburg, 1819Aus Schlesien, 1842Aus SchwabenAus SlowenienAus SorgeAus Sterzing, SüdtirolAus Südafrika Mündl. ÜberliefertAus TaizéAus ThüringenAus USAAus VorarlbergAus WestfalenAus WürzburgAus Zakopane, PolenAus dem 16. JahrhundertAus dem Aschendorfer MoorAus dem Glatzer SchneegebirgeAus dem Lochamer LiederbuchAus dem Niederländischen (15. Jahrhundert)Aus dem WesterwaldAus den Märzkämpfen der mitteldeutschen Aufstände, 1921Aus der Singebewegung der FDJAus Österreich (Tirol), Auch In Böhmen VerbreitetAus: Des Knaben WunderhornAustralian TraditionalAustralsk Trad-LåtAustralsk TradisjonellAustralská Lid.Australská LidováAustriaAustrianAustrian CarolAustrian Folk SongAustrian FolksongAustrian Trad.Austrian TraditionalAustrijska TradicijskaAuthentic Folk SongAuthor UnclearAuthor UnknownAuthor unknownAutor nieznanyAutores Varios - D.R.AutricheAuvergneAv. SalernoAvarų Liaudies DainaAylesbury Hymn TuneAz Ezeregy Éjszaka MeséiAzerbaijanAzerbaijan SongAzerbaijan Traditional MusicAzerbeidjanischAzeri MelodyAzeri SongAzeri TraditionalAрмянская Нар. ПесняB. ImsteinB. MillerB. UpanishadB.M.I.B1, B3B3Bagpipes TraditionalBah. Trad.Bahamian SpiritualBahamian Trad.Bahá'í WritingsBaile PopularBaile TradicionalBailecitoBailecito BolivianoBailecito bolivianoBaka PygmiesBalada Anglesa S. XVIIIBalada Tradicional AnglesaBalada Zo Stredného SlovenskaBaladă PopularăBaladă popularăBali Traditional MusiciansBalinese TraditionalBalkan Halk EzgisiBalkan Trad.Balkan TraditionalBalkan Traditional MusicBalkáni Cigány NépdalBalkánských Kočovných RomůBallada StarofrancuskaBallardBallata, Italië 14e EeuwBaltkrievu. t. dz.Bam Bam TradicionalBamberg, 1670Bamberger GesangbuchBamberger GesangsbuchBamberger Gesangsbuch 1670Banater ArbeiterliedBandas de Congo do Espírito SantoBarcarola napolitanaBarde Ashot (Armenian Tradition)Barde Sayat Nova (Arménien)Barzah BreizBarzaz BreizBarzaz BreizhBarzhaz BreizBarzhaz BreizhBas BerryBas-QuercyBasado De Un Huayno De La Prov. Victor FajardoBased On A Traditional Bulgarian SongBased On A Traditional SongBased On A Traditional Song As Performed By Elen Nymoen, MålselvBased On A Traditional Song As Performed By Eli Kvåle, ByglandBased On A Traditional Song As Performed By Lars Vang, VingelenBased On A Traditional Song As Performed By Olga Granberg, HernesBased On A Traditional Song As Performed By Petronille Hulbekdal, TolgaBased On A Traditional ThemeBased On A Transylvanian Traditional MelodyBased On Psalm 108Based On Psalm 95Based On The Traditional "Scarborough Fair"Baskilainen JoululauluBaskisches VolksliedBasqe Trad.Basque CarolBasque NoelBasque NoëlBasque Trad.Basque TraditionalBasse-AuvergneBassedanseBauernmusiBauerpreisliedBavarian Folk SongBavariešu T. Dz.Bavarske NapitniceBayerische VolksweiseBayern (12. Jahrhundert)Baškirská Ľud. PieseňBearb. Knud BentzenBeauceBeira Baixa - MalpicaBeira Baixa(Malpica)Belgian WaltzBelgisches VolksliedBelokranjska LjudskaBelokranjska Ljudska PesemBendito De Origem MedievalBenedictionBengali Bhajan (Devotional Chant)Bengali TraditionalBerceuse Anonyme De La Région Du CaribeBergisches VolksliedBergmannsliedBergmannslied, um 1700Bergsteiger-Lied Aus SüdtirolBerliner GassenhauerBerliner KindertanzBerliner MoritatBerliner VolksliedBernese Folk SongBerryBertsolarienaBesançon CarolBessarabisches MotivBetsimisarakaBetuneBetune, France, XVIIc.Beväringsvisa Från TvedöraBeás Cigány DalBhajanBibelBibleBible - New TestamentBible SelectionsBible-FolkBiblicalBielorussisches VolksliedBig BenBirmingham Freedom SongBlack Freedom SongBlack SpiritualBlato (O. Korčula)Blessing Of The Paschal Candle From The Easter VigilBluesBlues TradicionalBoheems KerstliedBohemianBohemian CarolBohemian Marching SongBohemian Trad.Bohemian TraditionalBohio Trad.Bohmisches KrippenliedBoikivschina, Ukrainian Trad.Bojová PíseňBoka KotorskaBolBol Na BračuBolero Vell de MallorcaBolg. Trad.Bolgarskii RospevBoliviaBolivia, Trad.Bolivian FolkBolivian TraditionalBoliviansk FamiliedansBoliviansk Folklore D.R.BoliyanBolívijská lidováBomba (Ecuador)Book Of PsalmsBook Of Psalms: Psalm 119:1Book of David Psalm 23Book of EcclesiastesBook of JeremiahBorbena NarodnaBos. Trad.BosanskaBosanska NarodnaBosanska Narodna PjesmaBosnian Folk SongBosnian Trad.Bosnian TraditionalBosnian Traditional MusicBotswanastaBougainville Trad.Božićna PjesmaBožična Iz Zah. IndijeBožična LjudskaBrani TradizionaliBrano UnghereseBransonBrasilia - TraditionalBrasilialainen KansansävelBrasilianische VolksweiseBrasilianisches VolksliedBrasiliansk Trad.Brazilian Folk SongBrazilian Folk TuneBrazilian Oral TraditionBrazilian Standard (Composer Unknown)Brazilian TraditionalBrazilská LidováBrazilská ModlitebníBremen 1680Bresilian TraditionalBreslauBresseBretonBreton 19th Century Trad.Breton HistoryBreton NépdalBreton Set Of Three Plinn Ton DoubleBreton Trad.Breton Trad. (Barzaz Breiz)Breton Trad. (Bro Gwened)Breton Trad. (Bro Naoned)Breton Trad. (Gavotte De L'Aven)Breton Trad. (Gavotte Montagne Ton Simpl)Breton Trad. (Gavotte Pourlet)Breton Trad. (Hanter-Dro)Breton Trad. (Jimnaska)Breton Trad. (Laridé)Breton Trad. (Montagne Ton Doubl)Breton Trad. (Rond De Loudeac)Breton Trad. (Ront Pagan)Breton Trad. (Vro Vigouden)Breton Trad. Bro GwenedBreton Trad. Dans Fisel Kernew-UhelBreton TraditionalBretonesch WeisBretonský TradicionálBrezilya Halk ŞarkısıBrit. Trad.Brit., Trad., XVIc.British FolksongBritish TraditionalBritish Traditional/ManxBritish, 17th C.Broadside BalladBrotBrésilBrésilian TraditionalBuddhist ProverbBuddhist TraditionalBuddhistic PrayerBudei-lokk, Dialektversjon Fra GudbrandsdalenBugarian Folk Song 'Kalimankou Denkou'Bugarska NarodnaBugarsko NarodnoBukarian Folk TuneBulgaarske FolksmotivenBulgareBulgariaBulgarialainenBulgarialainen SävelmäBulgarianBulgarian FolkBulgarian Folk DanceBulgarian Folk MusicBulgarian Folk SongBulgarian Folk-songBulgarian MarchBulgarian Trad.Bulgarian TraditionalBulgarian Traditional SongBulgarisch Trad.Bulgarische FokloreBulgarische FolkloreBulgarischer Orthodoxer GesangBulgarischer VolkstanzBulgarisches VolksliedBulgarisches ZigeunerliedBulgars FolkBulgarskij RospewBulharská LidováBulharská PíseňBulharská Svatobná Ľudová PieseňBulharská Ľudová PieseňBunting CollectionBurundi RahvalaulBuzzardsByelorussian Folk SongByelorussian Folk Song In ByelorussianBygger På "Sorglåten" Fra SverigeBygger På Brurmarsj Fra EngerdalBygger På Halling Fra ElverumBygger På Polsdans Fra Ålen, "Kokk-Sofie" Fra RørosBygger På Vals Etter Ole Langli, Nord TrøndelagByzantineByzantine ChantByzantine HymnByzantine Melkite TraditionBáthori DanceBånsull Fra KvæfjordBæn. Sálm. 63:3,2BéarnBékés Megyei NépdalBöhm. KrippenliedBöhmen 1605Böhmen Und MünchenBöhmen/ZwiefacherBöhmische VolksweiseBöhmisches KrippenliedBöhmisches VolksliedBöhmisches WeihnachtsliedBöhmisk JulesangBöhmisk Mel.Böhmisk Melodi 1549BørnerimBørnesangBørsteviseBārtas T.dz.Běloruská Lid.C. Ayllu JucumaniC. PopularC. RancheraC.14th AnonC.C.C14th ItalyC15 TradC16th SpainCahuilla Traditional SongCaixeiras do Divino do Maranhão [Oral Tradition]CajunCajun TraditionalCajun song from LouisianaCalabriaCalypsoCalypso-melodiCamp SongCampaniaCanadaCanadianCanadian FolkCanadian SongCanadian TraditionalCanadian Traditional CarolCanadian Traditional Tune 'Four Strong Winds'Canc. CuyanoCancion Arabe TradicionalCancion MontañesaCancion PopularCancion Popular CatalanaCancion Popular SegovianaCancioneiro AlgarvioCancioneiro PopularCancioneiro de GarrettCancionero PopularCanciones Del MondoCanciones Populares EspañolasCanciones Tradicionales De La Navidad NegraCanciones Traditionales SefaradíesCanciòn SefardiCanciónCanción Colombiana, Siglo XVIIICanción Folklórica Y DanzaCanción FrancesaCanción GalesaCanción Hebrea TradicionalCanción Infantil Trad.Canción Infantil Trad. SantanderinasCanción Italiana TradicionalCanción LagarteranaCanción Mexicana PopularCanción NapolitanaCanción PopularCanción Popular AlcoyanaCanción Popular AndaluzaCanción Popular AragonesaCanción Popular CatalanaCanción Popular De TunaCanción Popular GallegaCanción Popular Navideña De FranciaCanción Popular Navideña De InglaterraCanción Popular Navideña De NorteaméricaCanción Popular Navideña De UkraniaCanción Popular SegovianaCanción Popular TradicionalCanción Popular de SalamancaCanción Populat VascaCanción TradicionalCanción Tradicional AfrocubanaCanción Tradicional De TunaCanción UcranianaCanción popularCandian TraditionalCandombe BolivianoCanonCanon Populaire EspagnolCanon Popular AnglèsCanonicalCant Espiritual NegreCant PopularCantar PopularCanti Della MontagnaCanti PopolariCanti TipiciCantico Della TerraCantiga IorubáCantiga Popular AngolanaCantiga YorubáCantiga de Santa MariaCantigas De Ratoeira Do Litoral Sul De Santa CatarinaCantigas De Santa Maria (13. Jhd) & LLibre Vermell de Montserrat (Spanien 14. Jhd.)Cantigas de Amigo Nr 6 (Galicien 13. Jhd)Cantigas de Santa MariaCantigas de Santa Maria Nr. 1Cantigas de St. Maria, 13. JhCantique CorseCantique Des CantiquesCantique Espagnole, XIIIèmeCantique TraditionnelCanto AbruzzeseCanto Afro-popular Para IemanjáCanto Degli AlpiniCanto Dei Monti TrentiniCanto Della Guerra Civile SpagnolaCanto Della Val D'AostaCanto Di Afragola, Sec. XVICanto Di Somma VesuvianaCanto EmilianoCanto Folkloristico NapoletanoCanto FriulanoCanto Fúnebre De Origem PopularCanto GregorianoCanto Gregoriano LatinoCanto Infantil TradicionalCanto LazialeCanto LombardoCanto PastoraleCanto PiemonteseCanto Pop.Canto PoplareCanto PopolareCanto Popolare AbruzzeseCanto Popolare Agordino Dell'800Canto Popolare AmericanoCanto Popolare BrasilianoCanto Popolare CatalanoCanto Popolare Della Val Lagarina, TrentinoCanto Popolare Delle Alpi MarittimeCanto Popolare Di N. N.Canto Popolare GiulianoCanto Popolare GrecoCanto Popolare InternazionaleCanto Popolare ItalianoCanto Popolare LombardoCanto Popolare MessicanoCanto Popolare NatalizioCanto Popolare Pianura LombardaCanto Popolare PiemonteseCanto Popolare RomagnoloCanto Popolare RomanoCanto Popolare SavoiardoCanto Popolare SicilianoCanto Popolare TrentinoCanto Popolare ValdostanoCanto Popolare VenetoCanto Popolare ZoldanoCanto Popular HebreoCanto Popular SicilianoCanto Poular LlaneroCanto Sacro PopolareCanto Trad. AlpinoCanto TradicionalCanto Tradicional ReligiosoCanto TraditionalCanto Tradiz. AlpiniCanto TradizionaleCanto Tradizionale Del NepalCanto Tradizionale Della TanzaniaCanto Tradizionale FranceseCanto Tradizionale GiapponeseCanto Tradizionale GitanoCanto TrentinoCanto popolareCanto popolare calabreseCanto popolare di NapoliCantos Da Encantaria E Do Povo PataxóCantos Tradizionals de a Bal de TenaCantus CatholiciCantus DiversCanz. Pop.Canz. Popol.Canzone AlpinaCanzone Colombiana, Sec. XVIICanzone NapoletanaCanzone Pop. Franc. Del XIV Sec.Canzone Popol.Canzone PopolareCanzone Popolare AbruzzeseCanzone Popolare Ottocentesca della MalavitaCanzone Popolare PolaccaCanzone Popolare RussaCanzone Popolare TibetanaCanzone TradizionaleCanzone popolare italianaCanzone popolare napolitanaCanzone popolare ticineseCanzone popolare trentinaCanzonetta ToscanaCanzoni PopolareCanzoni PopolariCanzun Pop.Canzun PopularaCanzung PopularaCanço Popular MallorquinaCanço SefarditaCançon PopularaCançons TradicionalsCanção Africana De Domínio PúblicoCanção FolclóricaCanção ItalianaCanção Natalina De MarinheirosCanção PatuleiaCanção PopularCanção TicunaCanção Tradicional HebraicaCançó Del CampCançó Popular CatalanaCape Breton Island FiddlingCape Verdean Folk SongCapstan ShantyCapstan SongCaraïbesCaribbean FolkCarmina BuranaCarnatic TraditionalCarnaval PopularCarnaval Tradicional Del Centro-Sur De AyacuchoCarolCarol MedleyCarol från WalesCarolan TraditionalCarpathian ChantCarpatho ChantCarpatho-Russian ChantCarribean TraditionalCastellana Segle XVICastellana?Catalaans KerstliedCatalanCatalan Folk CarolsCatalan Folk StyleCatalan FolksongCatalan Oral TraditionCatalan SongCatalan Trad.Catalan TraditionalCatalan trad.CatalonianCatalonian CarolCatalonian MelodyCatalonian SongCatalonian TraditionalCataluña, Siglo XIIICataláCaucasian Trad.Cavalo MarinhoCelebre MelodiaCelebre Pastorale NataliziaCelticCeltic PrayerCeltic Trad.Celtic TraditionalCeremonial ChantsCerkvena LjudskaCerkvena ljudskaCezayir Halk EzgisiCh. Folkl.Ch. Tr.Chabad TraditionalChacareraChansonChanson Bachique Du 17eChanson BretonneChanson CanadienneChanson CollectiveChanson De QuêteChanson De Troubadour, XIIIe SiècleChanson Des IlesChanson Du Pays De VaudChanson Du XVIe SiècleChanson EcossaiseChanson FlokloriqueChanson FolkloriqueChanson Folklorique AncienneChanson FrançaiseChanson HébraïqueChanson MaoriChanson MexicaineChanson NègreChanson Popul. Du BerryChanson Popul. FribourgeoiseChanson PopulaireChanson Populaire DalmateChanson Populaire Du 18e SChanson Populaire MalgacheChanson Populaire RusseChanson Populaire SlaveChanson Trad.Chanson Trad. GéorgienneChanson Trad. MacédonienneChanson Trad. RoumaineChanson Trad. RusseChanson Traditionelle D'Amérique Du SudChanson Traditionelle Du QuébecChanson Traditionelle IrlandaiseChanson Traditionelle JuiveChanson Traditionelle RusseChanson Traditionelle ÉcossaiseChanson TraditionnelleChanson Traditionnelle BretonneChanson Traditionnelle EcossaiseChanson TsiganeChanson Tsigane RusseChanson TurqueChanson Tzigane RusseChanson folklorique traditionelle ChinoiseChanson pop. savoysienneChanson populaireChanson traditionnelle françaiseChanson traditionnelle suédoiseChanson À Boire Du PoitouChansonnier Du Duc De Calabre, XVIe SiècleChansonnier Du Montcassin, XVe SiècleChansons TraditionnellesChantChant ArménianChant CréoleChant D'espoir AymaraChant De GuerreChant De La Guerre Civile EspagnoleChant De NoëlChant De Noël OrthodoxeChant De Noël Traditionnel De La PologneChant De TraditionChant Des Peuples KhorChant EcossaisChant FolkloriqueChant GrégorienChant HaitienChant PopulaireChant Populaire Du Pays De VannesChant Populaire EcossaisChant Populaire EspagnolChant Populaire MontoisChant Populaire OccitanChant Populaire RusseChant Populaire TurcChant Populaire WallonChant Populaire d'AnatolieChant Religieux TamoulChant Révolutionnaire MexicainChant Révolutionnaire Polonais)Chant Révolutionnaire RusseChant Traditionel CongolaisChant Traditionel LibanaisChant Traditionel TurcChant TraditionellChant TraditionnelChant Traditionnel ArménienChant Traditionnel Des PouillesChant Traditionnel Du PiémontChant Traditionnel GuineenChant Traditionnel IrlandaisChant Traditionnel JaponaisChant Traditionnel MalienChant Traditionnel NapolitainChant Traditionnel RusseChant Traditionnel SacréChant Traditionnel SicilienChant Traditionnel TanzanienChant Traditionnel TziganeChant Traditionnel YorubaChant Traditionnel, QuebecoisChant YéméniteChant traditionnelChants KabylesChants TraditionnelsChants Traditionnels De Grêce Et D'Asie MineureChants Traditionnels De L'ancienne RussieChantyChanz. Pop. Rum.Chanzun PopularaChappellChartreuse De Scala Dei, XIIe SiècleChassidicChassidic MelodyChassidic SongChassidic TraditionalChassidic TuneCherokee FolkloreChil. Trad.Child 243, Trad.Child 250, Trad.Child No. 170ChildersChildhood ChantsChildren's SongChildren's SongsChilean Children's SongChilean FolkloreChilena Popular SalteñaChilenische FolkloreChilenisches VolksliedChilská LidováChina SongChinese Art SongChinese Classical Folk SongChinese Folk SongChinese FolkloreChinese Trad.Chinese TraditionalChinese TuneChitara Octochorda - Zagreb 1701 G.)Chodish Folk SongsChodskáChodská LidováChodská Lidová / Chod Folk SongChodská UkolébavkaChoralChoral anglais traditionnelChoral vor 1647ChoraleChristianChristian Gonzales (2)Christian HymnChristmas Spir.Christmas TraditionalChurch Hymn/TraditionalChurch SongCiganska Ljubavna PjesmaCiganska NarodnaCiganska Narodna PjesmaCiganska RomansaCiganski Narodni PlesCigány BölcsődalCigány DalCigány DalokCigány NépdalCigány NépmeseCigánydalokCiko (Native American / Papago)Cikánska LidováCikánská LidováCikánská RomanceCikánské Lidové PísněCirkevná PieseňCith. OctochordaCithara OctochordaCithara Octochorda 1701Civil War SongClass.Classical Gagaku SongClassical Instrumental PieceClassical TuneClassiciClassique RusseCodex FaenzaCodex FranusCodex LascivusCodex Montecassino 871N 14cCodex ZuolaCodoladaColecţia BuradaColind Din BihorColind FrancezColind PopularColind Popular PolonezColind Tradițional UcrainianColind tradiționalColinde PopulareColinde populareColl.CollectedCollectionCollege AirCollár Folk DalCologne, 1623Colombian Folk SongColombian-VenezuelanTraditionalCommon AuthorshipCommon DomainComplainte De ParisComposer UnknownComptineComptine Traditionnelle XVIII SiècleComptine traditionelle popularisée par W. A. MozartComptine traditionnelle américaineComptine traditionnelle anglaiseComptine traditionnelle françaiseComté De NiceCongo - Folclore CapixabaCongo do Espírito Santo / Barra do JucuCongolese SongCongolese Trad.ConnellyConsolaziunConte Judéo-marocainConte Popular De L'AfricaConte ValaisanContemporary Folk SongContemporary Praise ChorusContemporary Ugandan ChorusContinental AirCop Con.Copla TarijenaCoplas PopularesCoplas Tradicionales de BrasilCopy Right ControlCopyrightCopyright ControlCopyright ControlledCorale Del Sec. XVIICorauleCornishCornish Trad.Cornish TraditionalCornish Traditional CarolCorrCorrida TradicionalCorridoCorseCorsicaCorsican TraditionalCortinaCossack SongCossack Trad.CossacksongCosta RicanCosta Rican Folk SongCountryCountry Dance From TelemarkCountry SongCourt Dance By An Unknown Italian Author, 14th CenturyCowboy BalladCreated Freely On Einar Galaaen's "Memories Of Gudbrandsdalen", Pols Dance And Roundel "Vigstamoin" From SkjåkCreație FolcloricăCredits Add SaveCrença PopularCreole Beguine De MartiniqueCreole Play SongCrestomazeia XCretan MatinadaCretan TraditionalCrn. Duh.Crnagorai AltatódalCrnačka DuhovnaCrnogorskaCrnogorska narodnaCrnogorske Narodne PjesmeCroatia, YugoslaviaCroatianCroftsCrusader's HymnCrusaders' HymnCseh Karácsonyi DalCseh NépzeneCsángó NépmeseCub TradCubaCuba TraditionalCuban Singing GameCuban TraditionalCuban folkCubanischer RevolutionsmarschCubansk Trad.CuecaCueca BolivianaCueca Sc. XIX, FolkloreCueca TradicionalCumbia ColombianaCumbia TraditionalCygańska Melodia LudowaCypriot Traditional Instrumental PieceCypriot Traditional MelodyCypriot Traditional SongCyprus, Trad.Czech CarolCzech Folk SongCzech Trad.Czech TraditionalCzech Traditional CarolCzech melodyCzech. FolkCzechoslovakianCzechoslovakian MelodyCzeckoslovakiaCzekiskCzeska Mel. LudowaCànon Tradicional HolandèsCân WerinCânone AntigoCântec PopularCântec Popular IzraelianCântec Popular MacedonCântec Tradițional AmericanCântec Tradițional Din America LatinăCântec Tradițional GrecescCântec Tradițional IrlandezCântec Tradițional RomânescCântec Tradițional de CrăciunCântec americanCântec de munteCântec italianCântec popular germanCântec religios de Crăciun - TradiționalCântec tradițional englezCântico ReligiosoCântico Tradicional IorubáCânticos Da Tradição Indígena KayapoCîntec PopularCîntec Popular AmericanCîntec Popular ArgentinianCîntec Popular CubanCîntec Popular EvreiscCîntec Popular GermanCîntec Popular JaponezCîntec Popular MaghiarCîntec Popular MexicanCîntec Popular NapolitanCîntec Popular OltenescCîntec Popular OstășescCîntec Popular PolonezCîntec Popular SovieticCîntec Popular SpaniolCîntec Revoluționar ItalianCîntec popularCîntec popular MexicanCîntec popular americanCîntec popular cubanCîntec popular din ParaguayCîntec popular din secolul XVIICîntec popular germanCîntec popular spaniolCîntece populareCöln/Catholic MariasongD PD R AD R D AD'Après FolkloreD'Après Traditionnel YougoslaveD'Après Un Air TraditionnelD'Après Un Thème TraditionnelD'après Un Vieil Air TziganeD-D-AD. A. D.D. A. R.D. D.D. D. Autor.D. En D.D. P.D. P. (2)D. PúblicoD. R.D. R. (Tradicional Norteño)D. R. (Tradicional)D. R. De A.D. R. Del AutorD. R. FolkloreD. R. Folklore From ArgentinaD. R. HeitmenD. R. TradicionalD. R. Vals From ArgentinaD. R. de A.D. R..D. a D.D. en D.D.A.DD.A.D.D.A.D.A.D.A.R.D.D.D.PD.P.D.P. (Domaine Public)D.P. (Dominio Pubblico)D.RD.R de A.D.R.D.R. Tonada BolivianaD.R. de A.D.R. de D.G.D.A.D.R. en D.G.D.A.D.R.AD.R.A.D/RD:R:DARDPDRDR.DRADa Un Canto EmilianoDa. FolkemelodiDala-Floda Trad.DalakoralDalimažská LidováDalmacijaDalmatia, Croatia (traditional)Dalmatian Folk SongDalmatian FolksongDalmatian YusgoslavianDalmatinian FolksongDalmatinisches VolksliedDalmatinskaDalmatinska Nar. PjesmaDalmatinska NarodnaDalmatinska PjesmaDance From East AnatoliaDance From NigeriaDance From ZimbabweDanemarkDanish / US / English Trad.Danish CarolDanish Couple DanceDanish Folk SongDanish Folk TuneDanish FolkmelodyDanish Folksong, From SlagelseegnenDanish Folksong, MariageregnenDanish Medieval BalladDanish Trad.Danish TraditionalDanish Traditional Tune After Jes Dueholm JessenDansa Popular De VilanovaDanse ArménienneDanse LimousineDanse PopulaireDanse Populaire AméricaineDanse RouseDanse TraditionnelleDanses TraditionnellesDanskDansk BørnesangDansk Folkemel,Dansk FolkemelodiDansk FolkeviseDansk Folkmel.Dansk FolkvisaDansk MelodiDansk SalmeDansk SanglegDansk SkillingsviseDansk Tekst Fra 1740Dansk ToneDansk Trad.Dansk gårdsangDanza FolklóricaDanza Lírica RusaDanza PopularDanza Trad. Di OlteniaDanza TradicionalDanzas Tradicionales Del CuzcoDatina PopularaDauphinéDavidDavid 1000 v. Chr.DavisDe Canciones Infantiles TradicionalesDe La Guardia ViejaDe La Tradición MatanceraDe la tradiciónDe la tradición musical sur de ItaliaDebatableDecimas Populares VenezolanasDel Cantar PopularDel Folcklore De BoliviaDel Folcklore de MéxicoDel Folcklore de VenezuelaDel FolclorDel FolcloreDel Folklor BolivianoDel FolkloreDel Folklore AndinoDel Folklore AymaraDel Folklore BolivianoDel Folklore ChilenoDel Folklore De MéxicoDel Folklore De VenezuelaDel Folklore DominicanoDel Folklore EcuatorianoDel Folklore HaitianoDel Folklore MexicanoDel Folklore NacionalDel Folklore OrientalDel Folklore PeruanoDel Folklore VenezolanoDella Rivoluzione MessicanaDemotiqueDen Store Hamborger Trad. After Niels de Fries. Femtur From Vendsyssel From The A.P. Berggren Collection.DenmarkDep. FokloreDep. Foklore BolivianoDep. Folk. Bol.Dep. Folk. BoliviaDep. Folk. BolivianoDep. Folk. EcuadorDep. Folk. PerúDepartamento Del Folklor BolivianoDept. Folklore BolivianoDepto de Folk. Bol.Depto. De Folklore BolivianoDepto. Del FolklorDepto. Del FolkloreDepto. Folk.Depto. Folk. Bol.Depto. Folk. BoliviaDepto. Folk.Bol.Depto. de Foklore Bol.Depto. de Foklore BolivianoDepto. de Folk. Bol.Depto. de FolkloreDepto. de Folklore BolivianoDerechos En DepositoDerechos ReservadosDes Knaben WunderhornDet Var Skik Og Brug Ved Private Fester, At "Klevepigerne" (køkkenpigerne), Efter At Opvasken Var Overstået, Blev Kaldt Ind Til Det øvrige Selskab, Mens Musikken Spillede "Klevepigens Hopsa".Det. Nem. Ľud. PieseňDetské PiesneDetvianska PieseňDetvianská Ľudová PieseňDeuteronomy 6:4 -5Deutschand TraditionalDeutsche Volkslieder Nr.11Deutsche Volkslieder Nr.8Deutsche VolksweiseDeutsche Volksweise 1840Deutscher SchlagerwettbewerbDeutsches ArbeiterliedDeutsches Arbeiterlied nach dem Volkslied "Ich ziehe meine Straße"Deutsches ScherzliedDeutsches TraditionalDeutsches VolksliedDeutsches Volkslied, 18. JahrhundertDeutschlandDečiji TradicionalDgF 60Dhad SarangiDiablada TraditionalDie BibelDin Folclorul CopiilorDipleDiscanto XII SecoloDita PopularDiversosDixDixielandDn3, 57-90Dnešné Ohlasy Na Tradičné Obradné Fašiangové Obchôdzky Zo SkalitéhoDo Fado PrimaveraDois TonsDolnorýnská lidováDolnorýnský Lidový TextDom. Púb.DomainDomaine PopulaireDomaine PublicDomaine PubliqueDomaine publicDomaine publiqueDomeniu PublicDominia PúblicoDominioDominio PopularDominio PubblicoDominio PublicoDominio PúbicoDominio PúblicoDomìnio PùblicoDomínio PopularDomínio Popular AndinoDomínio PublicoDomínio PúblicoDomínio Público AdaptadoDonnchadh Ó'HlarlaitheDonnellyDorianDouble Jig. Traditional IrishDpDpto. Del Folklore BolivianoDpto. FolkDpto. Folk.Dpto. Folk. Bol.Dpto. FolkloreDpto. de FolkDr.DraddodiadolDt. TraditionalDt. VolksliedDtsch. VolksliedDu PatrimoineDu Patrimoine Chanté Durant La RévolutionDubrovnikDudácka PolkaDuits KerstliedDuits VolksliedDuitse Hernhutterse melodieDuitse MelodieDuruma TraditionalDutchDutch - TradDutch CarolDutch Children's SongDutch Folk MelodyDutch FolksongDutch Trad.Dutch TraditionalDutch TraditonalDutch carol, 15th cent.Dve Arménske Ľud. PiesneDve Goralské Ľudové Piesne Z PodhaliaDve Lotyšské Ľud. PiesneDve Lotyšské Ľudové PiesneDve Tanečné Ľudové PiesneDzūkų DainaDán NépdalDân Ca Bắc BộDân Ca Khu 5Dân Ca Nghệ TĩnhDäitsch VolleksweisDänemarkDélfrancia NépdalDép FolkDívčí Písně Z RejdovéDüz HoronE PerpunuarE-P KansansävelmäE.H. Freiberg, historischEarly 18th Century Gypsy MusicEarly AmericanEarly American Folk HimEarly American Folk HymnEarly American HymnEarly American MelodyEarly American Melody Of Unknown SourceEarly EnglishEarly MedievalEast-Slovakian CsardasEaster AntiphonEbreju TautasdziesmaEcclesiastes 3Ecclesiastes 3:1-18Ecclesiastes 4Ecclesiasticus 41Eco Della ValleEcole De Ripoll, XIIe SiècleEcuadorEcuador TraditionalEcuador, Trad.Ecuador, Tradicional, San JuanitoEcuadorian FolkloreEcuadorian San JuanitoEcuatorian TraditionalEd. H. SearsEddaEesti K.TraditsionaalEesti PärimusEesti RahvaluuleEesti RahvaviisEesti pärimusEesti rahvalaulEesti rahvaviisEesti rahvaviis Kolga-JaanistEesti rahvaviis Suur-PakriltEesti rl.Eesti trad.Eestiläinen KansansävelEew Trad.Efe (Zeibek) OathEfez. 4:4-8Eft. Archie ThomasEft. Artur Jeppesen, Virgin IsEft. Jamesy, St. CroixEft. Joe Parris, St. CroixEfter Chr. Olsen, EskebjergEfter Ernst JacobsenEfter Fr. Iversen, TrædballehusEfter Jens Chr. Ettrup, ThyEfter Kaj EngholmEfter Knud LaursenEfter Kræn Skytte, HimmerlandEfter Lars LilholtEfter Magnus SjøgrenEfter Otto Trads Og Brdr. BastEfter Salmebog 1569 Af Hans Thomesen (1532-73Efter Sven NyhusEfter Svensk BørneviseEgyiptomi AltatódalEgyptEgypt (traditional)Egypt TraditionalEgyptian FolkloreEgyptian Trad.Egyptian Traditional Work SongEgyption Trad.Ein Orientalisches MärchenEin Wiener TeamEinsiedeln 12. JahrhundertEl Salvadoran TraditionalElizabethan Ballad (prior to 1580)Elsässer VolksliedEm Gammal SkillingvisaEnEng. Trad.Eng.trad.Engelse Trad.Engelse VolksmelodieënEngelse melodieEngelskEngelsk BørnesangEngelsk FolkemelodiEngelsk FolkmelodiEngelsk Hymne 16 Årh.Engelsk Julsång (1500-talet)Engelsk JulvisaEngelsk Me.Engelsk MelodiEngelsk folkemelodiEngelsk folketoneEngelsk folkvisaEngelsk, 1300-talletEngl. JoululauluEngl. ScherzliedEngl. TRad.Engl. Trad.Engl. TraditionalEngl. VolksliedEngl. VolksweiseEngl. Waltz.Engl. WalzerliedEngl. u. amerikan. ArbeiterkampfliedEngl. „Ding-dong merrily on high“Engl./Ransk. JoululauluEngl.kans.säv.Engl.trad.EnglandEngland - TraditionalEngland Um 1300England/SeemannsliedEnglantiEnglantilainenEnglantilainen JoululauluEnglantilainen Kans. Säv.Englantilainen Säv.Englantilainen SävelmäEngleska TradicijskaEnglisch Trad.Englisch, 10. Jhdt.Englische VolksweiseEnglische VorlkserzählungEnglische WeiseEnglisches VolksliedEnglisches WeihnachtsliedEnglishEnglish 16th Cent.English AirEnglish And Welsh CarolsEnglish Anon.English CarolEnglish Christmas SongEnglish Dancing MasterEnglish Folk CarolEnglish Folk LyricsEnglish Folk MelodyEnglish Folk SongEnglish Folk TuneEnglish FolkloreEnglish FolksongEnglish Folksong/TradEnglish GleeEnglish MelodyEnglish RoundEnglish SongEnglish Song GameEnglish TradEnglish Trad.English Trad. CarolEnglish Trad. TuneEnglish TraditionEnglish TraditionalEnglish Traditional CarolEnglish Traditional MelodyEnglish Traditional SongEnglish Traditional TextEnglish Traditional TuneEnglish and Scottish Trad.English tradEnglish trad.English traditionalEnglish traditional carolEnglish traditional tuneEnglish, 15th CenturyEnglish, Irish, Scottish Trad.English/IrishEnsiedelenEnskt ÞjóðlagEntregada Por La Sra. Lala AndradeEntregada Por La Sra. Lala Andrade A ChamalEphesians 3:14-19Episcopal HymnErdélyi BujdosóénekErdélyi NépdalErev Shel ShoshanimErlent ÞjóðlagErri-AbestiErzgebirgische VolksweiseErzgebirgischer HirtentanzErzgebirgisches BergliedErzgebirgisches VolksliedErzurum YöresiEsmirnaEsp. KehtolauluEspanjaEspanjal. Trad.Español, Siglo XVIIEspiritual NegreEstanpitta, Italië 14e EeuwEste's PsalterEste's Psalter 1592Esther 8Estilo Popular AndaluzEstoniaEstonian Folk Hymn From Nissi ParishEstonian Folk Hymn From Noarootsi ParishEstonian Folk Hymn From Pühalepa ParishEstonian Folk Hymn From Reigi ParishEstonian Folk Hymn From Risti ParishEstonian Folk SongEstonian Folk Song From Siberian Prison CampsEstonian Folk Song, RidalaEstonian Folk TuneEstonian Runic Song From Kanepi ParishEstonian TradEstonian TraditionalEstonian Traditional TuneEstonian, Russian, Latvian, Moldavian, Chuvash, Georgian, Azerbaijani And Kazakh Traditional SongsEstonian-Swedish Traditional SongsEstų L. D.Et FolkesagnEt.-amerik. säv.Et.pohj.kans.lauluEtelä-AfrikastaEtelä-AfrikkaEtelä-Afrikkal. Kansansäv.Eteläamerikkalainen SävelEteläpohj. KansanlauluEteläpohjalainen KansanlauluEteläpohjalainen LauluEteläpohjalaisia KansanlaulujaEtelö-AfrikastaEtiopiaEtter En Gregoriansk ToneEuropean Folk SongEuropean Trad.European TraditionalEwangelicka PieśńExcerpts From American Patriotic And Popular SongsExtremaduran Folk CarolsF. MarocanF. MenorF. Menor - PopularF. TradF.FarianF.Y.R. Of Macedonia (Skopje region, traditional)FadoFado "Bacalhau"Fado AlbertoFado AlcântaraFado AleksandrinoFado AlexandrinoFado Alexandrino Antigo (tradicional)Fado Alexandrino Antigo [tradicional]Fado AmoraFado BagdadFado BailadoFado BeloFado BlancFado CarricheFado CorridoFado Corrido (Popular)Fado Corrido/PopularFado CufFado Das HorasFado DespedidaFado Dois TonsFado Dos 3 BairrosFado Dos SonhosFado EsmeraldinhaFado FrankelinFado FranklimFado FranklinFado FranquelimFado FreiraFado GeorginaFado GeorginoFado GinguinhasFado IsabelFado José NegroFado LaranjeiraFado LatinoFado LopesFado MachadoFado MargaridasFado Maria Rita (tradicional)Fado Maria Rita [tradicional]Fado MarialvaFado Meia NoiteFado Meia-NoiteFado MenorFado Menor Do PortoFado Menor do Porto em Versículo (tradicional)Fado Menor do Porto em Versículo [tradicional]Fado Menor-PopularFado MourariaFado Mouraria (Popular)Fado Mouraria (Trad.)Fado MouraríaFado PatuscoFado PerseguiçãoFado PierrotFado PinoiaFado PintadinhoFado PortoFado PrimaveraFado PuxavanteFado QuinquinhasFado RigorosoFado RositaFado Santa LuziaFado SeixalFado TradicionalFado Tradicional (Menor do Porto)Fado Tradicional (Zé Negro)Fado TriplicadoFado TulipaFado VarelaFado VianinhaFado VictoriaFado VictóriaFado VitóriaFado Zé NegroFado da FozFado das Horas (pop)Fado das Horas (tradicional)Fado das Horas [tradicional]Fado de Dois TonsFairy TaleFamiljetradition Gnm Kent Hallman, NorgeFandango Popular MenorquíFanti Folk SongFantômes Du PasséFaroe Islandic Trad /Faroe Islandic Trad.Faroese Trad.Faroese TraditionalFiesta FlamencoFifteenth-Century EnglishFiinish folk stories, poems and songsFijian SongFilipino FolkloreFilippinsk FolkmelodiFinlandFinland Trad.FinnFinnische FolkloreFinnische VolksmelodieFinnische VolksweiseFinnisches VolksliedFinnishFinnish Folk MelodyFinnish Folk PoemFinnish Folk SongFinnish Folk TuneFinnish FolkmelodyFinnish FolksongFinnish Kalevala Trad.Finnish MelodyFinnish National AirFinnish Trad.Finnish Trad. / Irish Trad.Finnish TraditionalFinnish Traditional Folk SongFinnish folksongFinnish trad.Finnish/Swedish Trad. Arr.FinnlandFinnland - trad.FinskFinsk FolkemelodiFinsk Folklig VisaFinsk FolkvisaFinsk ForsamlingstoneFinská LidováFlamencoFlamenco TraditionalFlamenco TraditionnelFlamengos - Fail, AçoresFlamländsk FolkvisaFlamländsk VreeswijkFlamskFlohwalzerFlokloreFlowearthian TraditionFlämisches WeihnachtsliedFoclorFoklorFoklore BolivianoFol. Amaz.FolKFolc. Ang.Folc. Beira-BaixaFolc. BravaFolc. LitorâneoFolck da R. P. A.FolclorFolclor AutenticFolclor BihoreanFolclor GrecFolclor GrecescFolclor InternaționalFolclor MediteraneanFolclor MexicanFolclor Muzical RomânescFolclor PeruFolclor RomanescFolclor RusescFolclor SarbescFolclor SepticFolclor SârbFolclor TraditionalFolclor TradiționalFolclor arăbescFolclor maramureseanFolclor prelucrat de Zinaida BolboceanuFolcloreFolclore AlemãoFolclore AmazonicoFolclore AmericanoFolclore AngolanoFolclore AçorianoFolclore BaianoFolclore Baiano-GaúchoFolclore BolivianoFolclore CapixabaFolclore CatarinenseFolclore EspanholFolclore GoianoFolclore GuaraniFolclore HinduFolclore IndianoFolclore MartinicaFolclore MexicoFolclore MichoacanFolclore MineiroFolclore NicaragüenseFolclore NordestinoFolclore ParaenseFolclore ParanaenseFolclore PeruanoFolclore PopularFolclore PortuguêsFolclore Recolhido das Banda de Congo da Barra do JucuFolclore RussoFolclore VenezuelaFolclore do E. SantoFolclore do RibatejoFolclorico IndianoFolclorul CopiilorFolclorul GrecFolclorul PopularFolclorul StudentescFolclorul grecFolclóreFolclóricaFolclóricoFolcolore do Vale do JequitinhonhaFolkFolk Acadie QuébecFolk ArtFolk BluesFolk DalokFolk DanceFolk Dance From BulgariaFolk Dance From KozaniFolk Dance From MacedoniaFolk Dance From ThraceFolk IngleseFolk InstrumentalFolk ItalianoFolk LegendFolk LoreFolk LyricsFolk MelodyFolk Melody From IndiaFolk MoldovaFolk MusicFolk Music And LyricsFolk NationalFolk NormandieFolk PoetryFolk PoitouFolk SongFolk Song From BácskaFolk Song From DodecaneseFolk Song From El SalvadorFolk Song From Kuusalu, Harju CountyFolk Song From MagyarszovátFolk Song From The British IslesFolk Song Of HaitiFolk Song, Lower RhineFolk SongsFolk Songs Of SerbsFolk Songs from Southern England collected by the Composer & Cecil SharpFolk SwahiliFolk TextFolk Tone From OppdalFolk Tone From SunnfjordFolk TraditionalFolk TuneFolk UnknownFolk WordsFolk da R.P.A.Folk song from JõhviFolk tune from Räpina and PõlvaFolk-SongFolk-songFolk.Folk. AcadienFolk. ArgentineFolk. ChuquisaqueñoFolk. MexicainFolk. PérouFolk. SénégalaisFolk. TahitienFolk. TarijeñoFolk. VénézuélaFolkemel.Folkemel./UkendtFolkemelodiFolkemelodi - TraditionelFolkemelodi fra GotlandFolkemelodi, MønFolkemundeFolkesangFolketoneFolketone Fra BiriFolketone Fra Elsfjord I NordlandFolketone Fra KarelenFolketone Fra KvæfjordFolketone Fra Louisiana Etter Babe StovallFolketone Fra MosjøenFolketone Fra NordlandFolketone Fra NordmøreFolketone Fra RomedalFolketone Fra RomsdalFolketone Fra SelbuFolketone Fra SunnmøreFolketone Fra SørstateneFolketone Fra TelemarkFolketone Frå SetesdalFolketone Frå TelemarkFolketone I Tradisjon Fra ValleFolketone frå TrysilFolketoner Fra Romedal, Lofoten, Mo I Rana Og ØrstaFolketoner Fra Ryfylket Og OpplandFolkeviseFolkevise Fra Hallingdal, NorgeFolkevise Fra KalundborgegnenFolkevise Fra NordlandFolkevise Fra Nordland, NorgeFolkevise Fra RogalandFolkevise I TradFolkl.Folkl. MartinicaFolkl. RusseFolklig Koral Från GammalsvenskbyFolklig Koral Från MoraFolklig Koral Från SkåneFolklig Koralmelodi Från SkåneFolklig VisaFolklloreFolkloeFolklorFolklor Del Pinar Del RioFolklor RegionalFolklor TraditionalFolkloreFolklore (Bolivia)Folklore (México)Folklore - MaliFolklore - NigerFolklore - Romance AllemandeFolklore AcadienFolklore AfricainFolklore AfrocubanoFolklore AfrovenezolanoFolklore AlgérienFolklore AlsacienFolklore AmericanoFolklore AméricainFolklore AnglaisFolklore AngolanoFolklore AntillaisFolklore ArgentinFolklore ArgentinoFolklore Aus Dem AndenhochlandFolklore AutrichienFolklore Aymara, TarapacáFolklore BantanduFolklore BarloventeñoFolklore BetsimisarakaFolklore BiguineFolklore BoliviaFolklore BolivianoFolklore BolivienFolklore BourguignonFolklore BretonFolklore CanadienFolklore Celtique TraditionnelFolklore ChiliFolklore ChilienFolklore ChinaFolklore CilenoFolklore ColombianoFolklore Complainte IndienneFolklore D'Acadie-CanadaFolklore D'Ile De FranceFolklore DalmatienFolklore De BresseFolklore De ColombiaFolklore De L'ArgentineFolklore De ParaguayFolklore De Saint-PierreFolklore De San-MargaritaFolklore De VenezuelaFolklore Del PacificoFolklore Del Pinar Del RioFolklore DominicanoFolklore Du BerryFolklore Du CanadaFolklore EcossaisFolklore EcuatorianoFolklore EgyptienFolklore EspagnolFolklore FlamencoFolklore FrançaisFolklore GitanFolklore GrecFolklore GriegoFolklore GuyanaisFolklore GuyannaisFolklore HaitianoFolklore HaitienFolklore HebreoFolklore HollandaisFolklore HongraisFolklore HongroisFolklore InternationalFolklore IrlandaisFolklore IsraélienFolklore IsraëlienFolklore Italiano, Canzone Dei PartigianiFolklore ItalienFolklore IvoirienFolklore MagyarFolklore MarocainFolklore MexicainFolklore MontoisFolklore Nacional De BoliviaFolklore NavideñoFolklore NivernaisFolklore NormandFolklore Of SurinameFolklore OrientalFolklore PanameñoFolklore ParaguayenFolklore PascuenseFolklore PeruanoFolklore PeruvienFolklore PerúFolklore PoitevinFolklore PopulaireFolklore PopularFolklore ProvençalFolklore PuertorriqueñoFolklore PéruvienFolklore QuébécoisFolklore RomainFolklore RoumainFolklore RumanoFolklore RusoFolklore RusseFolklore Russe*Folklore San AndrésFolklore SénégalaisFolklore TahitienFolklore TanzanieFolklore TchécoslovaqueFolklore TobaFolklore TogolaisFolklore Trad.Folklore TraditionalFolklore TraditionnelFolklore TunisienFolklore TziganeFolklore VenezolanoFolklore VenezuelaFolklore VénézuélienFolklore YougoslaveFolklore de Danza ParinacochasFolklore du SénégalFolklore tzigane RusseFolklore-TänzeFolkloreiFolkloresFolklores VenezuelaFolkloriqueFolklórFolklóricaFolkmelFolkmel.FolkmelodiFolkmelodi Från SkåneFolkmelodi från VärmlandFolkmusik Från SkåneFolkoreFolkore GrecFolkore IrlandaisFolkore MexicainFolkore RusseFolksongFolksong From SiciliaFolksong ThraceFolksong aus KolumbienFolksong aus SchottlandFolksongsFolkswizeFolktext from RapanuiFolktuneFolkv.FolkvisaFolkvisa Från 1700-TaletFolkvisa Från DalarnaFolkvisa Från GotlandFolkvisa Från MexikoFolkvisa från GotlandFolliot Sandford PierpointFolloreForbitterFork Dance From ThraceFounded Upon An Ancient Sicilian MelodyFoundling Hospital CollectionFourteenth-Century CarolFourteenth-Century German CarolFourth-Century PlainsongFra 1200-tallet/Erfurt 1524Fra Afrikansk BönbokFra BibelenFra En Gammel Spillemandsbog V/ Knud BentzenFra EngelskFra FrankrikeFra Mange KilderFra MiddelalderenFra Sør-AfrikaFra ZulukirkenFragm. Psalmu 23/22Fragmentos De Canciones Tradicionales Del Atlántico ColombianoFranc. Lid.Franc. LidováFranc. NarodnaFranc. ĽudováFranceFranche-ContéFranciaFrancia GyermekdalFrancia Karácsonyi DalFrancia Karácsonyi ÉnekFrancoska BožičnaFrancouzsko-kanadská píseňFrancouzskáFrancouzská Lid.Francouzská Lid. PohádkaFrancouzská LidováFrancouzská Revoluční PíseňFrancouzská lidováFrancuskaFrancuska NarodnaFrancuska TradicijskaFrank FarianFranklin quadrasFrankreichFrankreich 15. Jhd.Frankreich Um 1000Frankreich, 18. JahrhundertFrans KerstliedFrans trad.Franse MelodieFranse Trad.Fransk Dansemelodi Fra 1500-TalletFransk FolkemelodiFransk Folketone Fra AuvergneFransk FolkvisaFransk Fransiskansk ProsesjonssangFransk JulesangFransk JulsångFransk MelodiFransk Trad.Fransk VismelodiFransk folkvisaFransk julsångFransk trad.Fransk,1330-1430Franz, Trinklied Um 1530Franz. VolksliedFranz. VolksweiseFranz. WeihnachtsliedFranzösiche VolksweiseFranzösisch-Kanadisches LiedFranzösische VolksweiseFranzösisches KinderliedFranzösisches VolksliedFrederic AustinFrei nach dem Volkslied "Die Hammerschmiedgselln"Freie Volksw.Freiheitslied Aus SomaliFreiheitslied aus den Niederlanden, 17. JahrhundertFrenchFrench - EnglishFrench - English TraditionalFrench 16th Cent.French Canadian FolksongFrench Canadian TradFrench CarolFrench Carol MelodyFrench Christmas CarolFrench Christmas SongFrench Folk MelodyFrench Folk SongFrench FolkloreFrench MelodyFrench Popular SingingFrench Procession From XII CenturyFrench SongFrench TradFrench Trad'lFrench Trad.French Trad. / French/Canadian Trad.French Trad. CarolFrench TraditionalFrench Traditional CarolFrench Traditional Carol?French Traditional MelodyFrench TuneFrench trad.French traditionalFrench, 17th C.French, 17th CenturyFrench, Trad.FriFrit VærkFritt Efter Luk. 2:15Fritt Efter Luk. 2:16FriuliFriulian TraditionalFrom A German Folk-songFrom An Old SongbookFrom Aural TraditionFrom Brother Bast's Notebook, Copenhagen 1790From East Judish FokloreFrom IranFrom John 13, 14From John 14 And 15From John 15From Khorasan ProvinceFrom Matthew 11From Psalm 101 (102)From Psalm 118From Psalm 27From Psalm 46 and Isaiah 30From Psalm 50 (51)From Psalm 51From Santo DomingoFrom The Ancient IrmolohionFrom The Book Of CerneFrom The CreedFrom The EddaFrom The Ethiopian LiturgyFrom The Eucharist And The Prayer Of St FrancisFrom The Gaelic Carmina Gadelica 111From The Gregorian LiturgyFrom The K'dusha Of The Sabbath Morning ServiceFrom The MassFrom The Meditation Closing the AmidahFrom The Monastery Of MontserratFrom The Pageant Of The Shearman And TailorsFrom The Sequence For The Mass Of PentecostFrom Writings Of St TeresaFrom a French popular song of XV cent.From ÖsterbottenFrom ‘New Broadman Press Hymnal’Frz. TraditionalFrz. VolksweiseFränkische VolksweiseFränkische Volksweise vor 1855Fränkisches LiedFrå GudbrandsdalenFrå SetesdalFrån NorskanFrühe Russische WeiseFrüher Bulgarischer GesangFrüher Russischer GesangFærøsk Børnesang Trad.Færøsk FolkemelodiFærøsk Kvad. Trad.Færøysk Trad.Fínská Lidová PíseňFørreformatorisk JuleviseG. TraditionalGMR / Matt. 6: 9-13GTrad.Ga (West African) TraditionalGabon PygmyGaelicGaelic Folk SongGaelic HymnGaelic MelodyGaelic TraditionalGaelilainen Säv. Tir Nan OgGaelisk FolkmelodiGagakuGalician CarolGalician Trad.Galician Traditional (Spain)Galopp/SchwäbischGamalt Trad.OrdtakGamalt danskvæðiGambian Trad.Gammal GångspelstrallGammal JulhymnGammal MelodiGammal SjömansvisaGammal TimsångGammal TraditionellGammal folkvisaGammal svensk barnramsaGammal sångartravestiGammalt SkillingtryckGammalt rimGammelGammel Amerikansk MelodiGammel Bryllupssang. Trad. Arr.Gammel Dansk SanglegGammel Engelsk Christmas CarolGammel Engelsk MelodiGammel Engelsk SjømannsviseGammel Fransk MelodiGammel Irsk MelodiGammel Keltisk Hymne Fra Det 12. Årh.Gammel MelodiGammel Melodi (Old Melody)Gammel Melodi Fra DalarnaGammel Norsk FolkepoesiGammel RemseGammel Rheinlænder MelodiGammel Russisk MarsjGammel ToneGammel TyrolermelodiGammel ViseGammel Ærøsk FolkedanskGangaGangar fra SetesdalGarīga Skotu Dz.GassenhauerGassisk SangGaziantep TürküsüGebet Aus Dem TehelimGebetbuchGed. Trad.Gedicht uit BayernGeistliche Kirchengesang 1623Geistliche KirchengesangeGeistliche KirchensesangGeistliche Volksw.Geistliche VolksweiseGeistliche Volksweise, 1736Geistliches VolksliedGelenekselGeleneksel (Amasya)Geleneksel (Arapça)Geleneksel (Azeri)Geleneksel (Bolu)Geleneksel / TraditionalGeleneksel TürküGeorg. VolksweiseGeorgian FolkGeorgian Folk SongGeorgian FolksongGeorgian MelodyGeorgian TraditionalGeorgian TraditionalsGeorgian/Armenian TraditionalGeorgienGeorgien, trad.Georgische HymneGeorgische VolksweiseGeorgischer ChoralGeorgisches VolksliedGeorgisk Trad.GermanGerman 14th CentGerman 16th CentGerman CarolGerman Children's SongGerman Folk CarolsGerman Folk SongGerman Folk SongsGerman Folk TuneGerman Folk-poetryGerman FolksongGerman MedievalGerman MelodyGerman Melody, 1360German SongGerman Struggle SongGerman TradGerman Trad.German TraditionalGerman Traditional CarolGerman Traditional Carol CarolGerman Traditional Carol?German Traditional MelodyGerman medievalGerman trad.German, 14th CenturyGerman, 15th CenturyGermanyGhana Folk SongGhanaian TraditionalGhanalainen RukousGhanese TraditionalGhanian TraditionalGharnatiGiga TradizionaleGipsy SongGipsy Trad.Gl. Am. FolkemelodiGl. Da.Gl. Dansk FolkemelodiGl. Dansk FolkeviseGl. Dansk MelodiGl. FolkemelodiGl. FolkeviseGl. FólkalagGl. GårdsangerviseGl. Irsk FolkemelodiGl. KorsfarersangGl. MelodiGl. Norsk BørnerimGl. RimGl. Skotsk FolkemelodiGl. Skotsk FolkesangGl. Spansk FolkesangGl. Svensk Folkemel.Gl. Svensk FolkeviseGl. SømandviseGl. ViseGl. mel.Gl. melodiGl. tysk mel.Gl.SømandsviserGnaoua TraditionalsGnawa TraditionGolpe TuyucanoGorenjskaGorenjska LjudskaGospelGospel According To LucasGospel HymnGospel Jazz Spirituals Hymns AfricanamericanGospel Of Matthew 17: 1-8Gospel Song TraditionalGospel SpiritualGospel TraditionGospel TraditionalGospel TraditionnelGospel-sangGostilniško ljudskaGotländsk FolkvisaGr. Trad.GradskaGradska Pesma Iz SremaGradska Pesma Iz VranjaGradska Pesma Iz ŠumadijeGradska PjesmaGragorian ChantGraysonGreec SongGreece, Trad.GreekGreek AirGreek CarolGreek FolkGreek Folk SongGreek Folk-songGreek FolkloreGreek MusicGreek Popular SongsGreek Revolutionary TraditionalGreek SefardicGreek TradGreek Trad.Greek Trad. (Zonaradikos)Greek TraditionalGreek Traditional Collected By Giorgos MelikisGreek Traditional DanceGreek Traditional LullabyGreek Traditional SongGreek Traditional Wedding SongGreenland TraditionalGreensleevesGreensleeves MelodyGregor. ChoralGregoriaaninen KirkkolauluGregoriaansGregorianGregorian ChantGregorian ChantsGregorian MelodyGregorianischGregorianisch (Um 900)Gregorianisch – Organum-SatzGregorianischer ChoralGregorianisches MagnificatGregorianoGregoriansk HymnGregoriàGregoriánGregorián DallamGreorianischGresk, LatinskGriech. WolksweiseGriechenland-EpirusGriechenland/PeleponnesGriechischGriechisch Trad.Griechische VolksweiseGriechisches VolksliedGrieks VolksliedjeGrieķu T. Dz.GrimnismálGrk. Trad.Groves Of BlarneyGroves of Blarney - Moore's Irish MelodiesGruzinų DainaGruzinų L. D.Gruzínska Balada Zo 17. StoročiaGruzínska Pracovná PieseňGruzínska Ľudová PieseňGræsk FolkemelodiGrèceGrégorienGrégorien TraditionelGrønlandskGrønlandsk Trad.GrčkaGrčka NarodnaGrčka Narodna IgraGrčka Narodna PesmaGrčka Narodna PjesmaGrčka Trad.Grčka/TradicionalGuadalajara, Jalisco, El Charro MexicanoGuaraniGuardia ViejaGuatamalan [sic] Folk SongGuineai NépmeseGujarati Folk SongGuralský TanecGurbaniGusleGwerz TraditionnelleGyimesGypsyGypsy Folk Music From Early XVIII CenturyGypsy FolkloreGypsy FolktalesGypsy SongGypsy TaleGypsy Trad.Gypsy Trad. From RomaniaGypsy TraditionalGånglåt Från RomehedGörög NépdalGürcü Halk EzgisiGürcü Halk ŞarkısıH. HalvorsonH.E.M.HLV 324HaalliedHabakkuk 2:20Habanera popularHagyomány SzerintHailuotolainen KansansävelmäHaitan TraditionalHaitian FolktaleHaitian TraditionalHalk MahnısıHalk TürküsüHalle 1704Halle, 1885Hamburger VolksweiseHanded DownHandwerksgesellenliedHans MyhreHanukkah SongHarm. Liet. L. D.Harzer FolkloreHarzer VolkstanzHasidicHasidic TraditionalHassidisäv.Hasszid DallamHavaijská LidováHavajská Lid.Havajská LidováHavajská PíseňHavdalah Motzei ShabbosHawaiiHawaiian MelodyHawaiian TraditionalHawaiiansk folkmelodiHaya-StammesmelodieHayno BolivianoHebr. LiedHebrealainen KansansävelmäHebrejska NarodnaHebrejskáHebrejská LidováHebrew LullabyHebrew MelodyHebrew Trad.Hebrew TraditionalHebridean Folk SongHebridean TraditionalHebrides And Isle Of Man Folk TunesHebrides Trad.Hebräisches HirtenliedHebräisches VolksliedHedade ArtHeinz V. AltenHeit.TrinkliedHelgakviða Hundingsbana I, 1-4Hemshin Folk SongHemşin Halk ŞarkısıHen AlawHen Alaw GymreigHen BennillHengellinen KansansävelmäHengellinen LaulukirjaHengellinen NeekerilauluHengounelHenohische AnrufungenHerdman's MelodyHeritageHernhutt. Mel. 18e EeuwHernhutterse MelodieHernhūtiešu Dz.Hernhūtiešu DziesmaHernhūtiešu T.DzHerra Trad.Herra Trad..Herri KantaHerri OlerkiaHerri-KantaHerricoaHerriko IaHerrikoaHerrikoi MarokoaraHerrikoiaHerrikoia - PopularHerrikoiakHerrikuaHerz SutraHessische VolksliederHessisches VolksliedHigh Holiday PrayersHimno De Los Guerrilleros SoviéticosHindoostan AirHint GelenekselHira BetsimisakaraHira BetsimisarakaHirtenliedHirtenlied Aus BöhmenHirtenlied aus TirolHirtenlied aus dem SalzkammergutHist.Historic German Students' SongHistorischHistorisch 1837HistorischeHistorischer MarschHistorischer TeilHitorischHolandská LidováHoll. Volksw.Holl. VolksweiseHolland NépköltésHollands GangspilliedjeHollandsk Børne-sanglegHollandsk BørnesangHolländsk MelodiHolländsk folkmelodiHolländsk melodi / Traditionell från ÖstergötlandHoly Bible (Mandarin)Homeric Hymn, 500 BCEHopi Traditional SongHora Aus IsraelHora Uit IsraelHrafnagaldr ÓðinsHrv. NarodnaHrvatska BožićnaHrvatska Kolenda Iz 1583 G.Hrvatska TradicijskaHrvatska Tradicijska, DalmacijaHrvatska Tradicijska, IstraHrvatska Tradicijska, MeđimurjeHrvatska Tradicijska, PokupljeHrvatska Tradicijska, SlavonijaHrvatska Tradicijska, StarogrojčiceHrvatska Tradicijska, Čilipi-DubrovnikHrvaška NarodnaHs. Des 14. Jahrh. Aus Polling/Obb.Hu Wen Ru, Chinese Ming DynastyHuaiño (Bolivia)Huaiño (Perú)Huapango MexicanoHuastec TraditionalHuaynoHuayno ArgentinoHuayno BolivianoHuayno TradicionalHuelgas MSS, 13th CenturyHullah's Song Book - EnglishHullah's Song Book - ScottishHumorous Song Of Czech GipsiesHungarianHungarian Czardas On Rumanian ThemesHungarian Czardas On Russian ThemesHungarian Folk MelodyHungarian Folk MusicHungarian Folk Music - TransdanubiaHungarian Folk PoemHungarian Folk SongHungarian Folk-balladHungarian FolksongsHungarian Gipsy SongHungarian GypsyHungarian Gypsy MusicHungarian SongHungarian Trad.Hungarian TraditionalHungarian Traditional From MoldaviaHungarian folk-songHungarian folksongHungaryHungary (traditional)Hupplek Från FlodaHymnHymn BookHymn TuneHymn från 1400-taletHymn Św. Tomasza Z Akwinu, XIII W. Mel. GregoriańskaHymn, TraditionalHymnalHymneHymne - TraditionnelHymne 9th CenturyHymne De L'avent D'origine FranciscaineHymne National ChinoisHymnusHávamálHávamál, 89-91Hämäläinen KansanlauluHар. мугамHароднaHародніI ChingI Corinthians 13I. VanceII Samuel 18Icelandic Folk SongIcelandic TraditionalIcelandic folk songIclandic Folk SongIers VolksliedIerse MelodieIgauņu Tautas Dz. VārdiIgauņu Tautas DziesmaIghnotoIgnotiIgnotoIgnoto (1200)Ignoto (1700)Ignoto (Primo Ottocento)Ignoto 1500Ignoto 1700Ignoto 1800Ignoto XIX SecoloIgnoto XVI SecoloIgnoto XVII SecoloIgnoto XVIII SecoloIgnoto del '500Ignoto del 700Ignoto del primo '800Igor YusovIgra OrjentaleIiri Trad.Ikaalislainen KansansävelmäIle De FranceIle-De-FranceIlm. 21: 1–6IlomantsiImn ReligiosImprovisationImprovisation On An Old Bowed Lyre ThemeImprovisation On An Old Fiddle ThemeIn Fjellhammer TraditionIn tradition of Lars Orre, West Dalecarlia SwedenIn tradition of the Forsströmsson sisters, SwedenIncaInchcolm Antiphoner, c. 1340, ScotlandIndiaIndia-TraditionalIndian ChantIndian MantraIndian Trad.Indian TraditionalIndianerweiseIndianiIndianischer RitualgesangIndianisches FeuerritualIndianisches LiedIndianisches TraditionalIndienIndigenousIndijska NarodnaIndijska Narodna PesmaIndijska Narodna PjesmaIndijska Trad.Indijski NarodniIndiogedichtIndisch, Aus dem 6. JahrhundertIndische ImprovisationIndisk Trad.Indián AltatódalIndián NépköltésIndiánska ĽudováIndon. Volksw.Indon. VolksweiseIndonesian Folk SongIndonesian TraditionalIndonesische VolksweiseIndoneská PíseňIndoneská Rybářská PíseňIndonežanska NarodnaIndonéská PíseňIndonéská Rybářská PíseňIndonéský PantumIndonézská LidováIngelske WizeInglise Trad.Inglise naljalaulInglise trad.Inglise viisIngrian-Finnish Folk SongInkade Rahval.Inno Dei Guerriglieri SovieticiInspiração FolclóricaInspiração TimbiraInspirație FolcloricăInstr. TraditionalInstrumentalInternacionalInternacional.InternacionalnaInternationalIntrodução Cantiga IorubáIran folk songIranian ThemeIranisches TraditionalIraqi Children's SongIraqi FolkIraqi Trad.Iraqi TraditionalIrelandIreland TraditionalIrischIrisch Trad.Irisch. Trad.Irische FolkloreIrische MelodieIrische VolksmelodieIrische VolksweiseIrische VolksweisenIrische VolkweiseIrischer SegensspruchIrisches VolksliedIrisches MotivIrisches VolksliedIrishIrish - TraditionalIrish AirIrish BalladIrish Dance/Trad.Irish FolkIrish Folk MelodyIrish Folk SongIrish Folk TuneIrish FolksongIrish GaelicIrish JigIrish MelodyIrish ReelIrish Slow ReelIrish SongIrish TRad.Irish TradIrish Trad.Irish Trad. / Greenlandic Trad.Irish Trad. ConnemaraIrish Trad. ReelIrish Trad. SongIrish TraditionIrish TraditionalIrish Traditional MelodyIrish Traditional Religious SongsIrish Traditional SongIrish TuneIrish traditionalIrish. Trad.IrlandIrlandar TradizionalaIrlandzka muz. ludowaIrlantil. Kans.säv.]Irlantilainen Kans. Säv.Irlantilainen Trad.Irlantilaisen Kansansäv.Irländsk FolkmelodiIrländsk Folkvisa = Irish FolksongIrländsk melodiIrsk FolkemelodiIrsk FolketoneIrsk Folketone Fra 1600 TalletIrsk Tekst Frå 700-tIrsk Tekst Frå 700-talletIrsk TradIrsk Trad.Irsk Trad. Frå 1100-taletIrsk TradisjonellIrsk folketoneIrskaIrska LjudskaIrska Trad.Irske FolketonerIrská LidováIrská Lidová BaladaIrská lidováIrský TradicionálIruñako Gaiteroen XortaIrácká lidováIsaiah 41:10, 43:1Isaiah 53:3Isaiah 55:12Isaiah 56:7Isaiah II vv. 10-20Isaiah, Ch. 2Isas PopularesIslamic HeritageIslandskIslandsk FolkemelodiIslandsk FolketoneIsländische VolksweiseIsländisches VolksliedIsländsk FolkvisaIsm.Ism. Sz.Ism. XVIII. Sz.-i KöltőIsmeretlenIsmeretlen Sz.Ismeretlen SzerzőIsmeretlen Szerző VerseIsmeretlen SzerzőkIsmeretlen ZeneszerzőIsmeretlen Zeneszerző És SzövegíróIsraelIsrael TraditionalIsraeliIsraeli PastoraleIsraeli Trad.Israeli TraditionalIsraeli roundIsraelil. Kansansäv.Israelil. kansansävelIsraelilainen KansansävelmäIsraelisch LiedIsraelische VolksweiseIsraelischer SonnentanzIsraelisches VolksliedIstenes ÉnekekItaalia Rhvl.Itaalia Rhvv.Itaalia laulItaiensk FolkvisaItal. ArbeiterliedItal. Folkemel.Ital. FolkvisaItal. Kampflied 1920Ital. Kansanl.Ital. KansanlauluItal. KansansävelmäItal. Polka Trad.Ital. Trad.Ital. VolksliedItal. VolksweiseItalalienische WeihnachtsliedItalial. Säv.Italialainen JoululauluItalialainen KansansävelmäItalianItalian (14th Century)Italian 1689Italian CanzonettaItalian Christmas SongItalian DanceItalian FolkItalian Folk MusicItalian Folk PoemItalian FolkloreItalian FolksongItalian MusicItalian SongItalian Trad.Italian TraditionalItalian Traditional CarolItalian Traditional Folk SongItalieItalien, 14 Jh.Italienische Weise Aus NeapelItalienisches ArbeiterliedItalienisches KampfliedItalienisches Kampflied 1920Italienisches Sozialistisches KampfliedItalienisches VolksliedItaliensk FolkmelodiItaliensk MadrigalItaliensk TradItaliensk Trad.Italiensk barnvisaItalijanska NarodnaItalijanska. 15. Stol.Italinisch VolleksweisItalská Lid.Italská LidováItalská PíseňItalská Renesanční PoezieItalské Lidové PísněItalyan Halk TürküsüItalų DainaItä-KarjalaItävalta, 1600-L. = Österrike, 1600-t.Itāļu T. Dz.IwwerliwertIwwerliwwert: EnglandIz45, 8Izaj. 61;1-2Izhorian Folk SongIzsūtīto Latv. DziesmaIzvornaIzvorna - ObradaIzvorna / DalmacijaIzvorna NarodnaIzvorna Narodna PesmaIzvorna Obrada - Duško RadulovićIzvorna PučkaIzvorna SandžačkaIzvorna Vlaška Pesma Iz Okoline KučevaIzvorna Vlaška Pesma Iz S. DoljašniceIzvorna Vlaška Pesma Iz S. KodbiljeIzvorna Vlaška Pesma Iz S. ManastiriceIzvorna Vlaška Pesma Iz S. NeresniceIzvorna Vlaška Pesma Iz S. TopolovnikaIzvorna Vlaška Pesma Iz S. Češ. BareIzvorna/ Hrv. Prim.IzvorneIzvorniIzvorni R'n'RJ. O'DiamondJ. TaylorJ. VianinhaJ. VītolsJ. WebbJ.K.J.P. SansJAV Lietuvių MelodijaJagdsignalJahrgang 49, Berlin DDRJalisco Jalisco, GuadalajaraJamaica FolkJamaican Folk SongJamaika FolkJamajský TradicionálJanpanese Folk SongJapan 13e EeuwJapaneseJapanese + Aïnu Traditional Folk-SongJapanese FolkJapanese Folk MusicJapanese Folk SongJapanese Folk TuneJapanese FolkloreJapanese FolktaleJapanese National AnthemJapanese Popular SongJapanese Song Of The Edo EraJapanese Trad.Japanese Trad. Folk SongJapanese Trad. LullabyJapanese TraditionalJapanese Traditional Dance-songJapanese Traditional FolkJapanese Traditional Folk-SongJapanese Traditional MusicJapanese Traditional SongJapanese TraditionalsJapanese TraditionelJapanese folk songJapanese traditionalJapanischJapanisches KinderliedJapanisches VolksliedJapansk FolkesangJapansk Trad.Japonská ĽudováJapánJapán NépdalJarana TradicionalJarné Ukrajinské ChorovodyJavanese Traditional SongJazz Trad.Jea BandJean BernardJean-Marie PrimaJemenitisches SabbatliedJemenitisches VolksliedJens Christian Svabo (1745-1824)JerusalemJerusalénJes 66, Joh 16Jes. 25:9Jes. 55:6Jesaja 53: 5Jesaja 60: 1-2Jesenná Pieseň Z DzukieJesus (Matt 28:18-20)Jesus, Meine ZuversichtJevrejskaJevrejska NarodnaJevrejski TradicionalJew FolkJew Folk SongJewesh TraditionalJewishJewish ChassidicJewish Folk SongJewish TradJewish TraditionalJewish-Spanish Folklore Of The Sixteenth CenturyJewish/Spanish Trad.Jezus Sirach 41 : 1-2Jiddis NépdalJiddischJiddische VolksweiseJiddisches VolksliedJidiš Lid.Jig Trad. Irl.JigsJihočeskáJihočeská LidováJihočeská Ze ŠumavyJihočeská lidováJodelarie A. D. Bayer. WaldJodler Aus Dem Schneeberg-Rax-GebietJodler Aus Der SteiermarkJodler Aus NiederösterreichJoghovrtayinJoh. 5:25, 29Joh. 6:35-36Joh. 8: 12, 12: 36Johannes 14: 27Johannes 6: 26,27,35John 14:27John F. WadeJohn Playford/TraditionalJohs. SlåstuenJojkJordaanliedjeJoropo ApureñoJoropo InstrumentalJoropo Tradicional VenezolanoJota Trad. SegovianaJotas PopularesJoululau 1700-luvultaJoululaulu 1700-luvultaJuanito De SaJudeo-Espanol, BalcanesJudišJugendliedJugosl. Trad.Juhoamerická LidováJuifJulesang Fra ThüringenJulsång Från WalesJulvisa Från ÄlvdalenJunačka Narodna PesmaJunačke PjesmeJuudi Laul / Jewish SongJuudi rahvalaulJuutalainen rukousJõulukoraal Yorkshiere'stJüdische AnekdoteJüdisches VolksliedJüdisches WiegenliedK'antu (Altiplano)Kabir (Traditional)Kabyle PatrimonyKaiserwerth 1842Kakelinna TradKalevalaKalevala I : 111–242Kalevala XL: 1–16Kalevala XXXV: 271–86KalevalaisetKalmyk Tradition MusicKampfliedKampflied "Hold the Fort" der englischen und amerikanischen ArbeiterKampflied "Hold the fort" der englischen und amerikanischen ArbeiterKampflied D. Engl.-Amerik. ArbeiterKampflied Der Englisch-Amerikanische ArbeiterKampflied Der Englisch-Amerikanischen ArbeiterKampflied der engl.-amerik. ArbeiterKampflied der englischen und amerikanischen ArbeiterKampflied der italienischen ArbeiterKampflied des jüdischen ProletariatsKampflied nordamerikanischer NegerKampucheanisches VolksliedKanad. Volkslied]Kanadische FolkloreKanadisches KinderliedKanadisk FolketoneKanadska PesemKanadská Lid.Kanadská LidováKanmpflie (Hold the fort) der englischen und amerikanischen ArbeiterKanon; Trad.Kans. Säv.Kans. SävelKans. säv.Kans.SävKans.Säv.Kans.kor.Kans.sävKans.säv.Kans.säv. BromarvistaKans.sävelKansanballadiKansanl.KansanlauluKansanlaulujaKansanperinneKansanrunoKansans.Kansansäv.KansansävelKansansävelmäKansansävelmä = Finnish Folk Song = Finnisches VolksliedKansansävelmä KuortaneeltaKansansävelmä SavostaKanta TradizionalaKanta Zahar Irlandar Batean OinarriturikKantadaKanteletarKanteletar I: 173, I: 174 & I: 122Kanteletar I: 186Kanteletar I: 219Kanteletar I: 57Kanteletar I:104Kanteletar I:193Kanteletar II 323,326Kanteletar II: 238Kanteletar II:178KantelettarestaKaradeniz TürküsüKarelia, Russia (traditional)Karelian Trad.Karelian Wedding SongKarelian weeping songKarička Z Východ. SlovenskaKarička Z Východného SlovenskaKarjalaKarnevalováKarpatische TraditionalKatalánKatalán Karácsonyi ÉnekKate Tyrrel - Moore's Irish MelodiesKatholoches Gesangbuch, WurzburgKatolsk Medeltida HymnKatonadalKatutubong AwitKatutubong SayawKaubojų DainaKauhava & AlavusKaukasisches LiedKaustislainen KansansävelmäKaz. Sal. 3,1-8Kazachská Z Prov. Sín-tiangKazachtanská Znárodnená PieseňKazakh/Chinese TraditionalKazakhistanian TraditionalKazakhsKendt Tilbage Fra Før 1900. Teksten Kan Forekomme I Andre Versioner.Kengë Popullorë ShqipëKenial. Trad.Kenya TraditionalKenyanKerkük BayatlarındanKerkük TürküsüKerstlied Uit De MiddeleeuwenKerstlied Uit SudetengauKerstlied Uit WestfalenKerstlied uit BoliviaKerstlied uit CataloniëKerstlied uit ChiliKerstlied uit Noord-AmerikaKerstlied uit PolenKerstlied uit SiciliëKerstlied uit VenezuelaKeskiaikainen JoululauluKeskiaikainen Liturginen SävelmäKeskiaikainen Säv.KeskiajaltaKharja / arab-andalusische Nuba (11.Jh.)Khmer TraditionalKhuyết DanhKibena-StammesmelodieKiev MelodyKiev Monastery ChantKievenKievo-Petschersky-KlosterKiewer WeiseKiewo/PetscherseKiganda-StammesmelodieKiinaKiinal.kansansäv.Kiinalainen VirsikirjaKiinalainen VirsisävelmäKikuyu TraditionalKikuyu Traditional SongKindergarten-VolksweiseKinderliedKinderlied Aus Dem Bergischen LandKinderlied Aus Dem NassauischenKinderlied Aus Einem KindergartenKinderlied Aus PommernKinderlied Aus SchlesienKinderlied Aus Schwaben, Vor 1808Kinderlied a.d. RheinlandKinderlied aus JugoslawienKinderlied aus ThüringenKinderlied aus einem KindergartenKinderreimKinderreim aus Rust (Ortenaukreis)KinderspruchKineskaKingKing DavidKing David Of JerusalemKing-James-BibleKing-James-Bible, ThoraKinyairamba-StammesmelodieKinyaturu-StammesmelodieKippur PrayerKirchengesang Auf QuechuaKirchengutKirchenliedKirchenlied 1599Kirchenlied IIKirchlichKirkko SävelmäKishwahiliKiteeKlasikų MintysKlezmerKlezmer TradKlezmer TraditionalKobiana JazzKoledaKolga-Jaani ParishKolkloriqueKolumb. Trad.Kolumbialainen KansansävelmäKolumbianische FolkloreKolumbianisches Lied Aus Dem 17. Jh.Kolumbianisches VolksliedKolumbijská LidováKolędyKomp. NieznanyKomp. UnbekanntKomponist Unbekannt (Volkstanz "Der Windmüller"?)Kompozycja TradycyjnaKontakion of the DeadKopenhagener Hackbrett-TabulaturKoraalitoisinto Etelä-PohjanmaaltaKoraalitoisinto Etelä-SavostaKoraalitoisinto EurajoeltaKoraalitoisinto LaukaastaKoraalitoisinto PohjanmaaltaKoraalitoisinto Pohjois-SavostaKoraalitoisinto SavostaKoraalitoisinto SortavalastaKoral Frå AntwerpenKoral Från MalungKoral Från OrsaKoralmotett Över Folkl Koral, Uppteckn I HöörKoralvariant från DalarnaKoralvariant från MoraKoranKoran, ThoraKoreaKoreanKorean Children's SongKorean Folk SongKorean Folk TraditionKorean Trad.Korean TraditionalKorean Traditional Folk-SongKorean Traditional MusicKorean Traditional TuneKoreanische FolkloreKoreanische VolksweiseKoreansk FolkmelodiKoroška LjudskaKoroška NarodnaKoroška PonarodelaKosakenliedKosovoKosovo Serbian TraditionalKovbojská LidováKranjKreikkalainen SävelmäKrievu Tautas DziesmaKrippenlied aus OberösterreichKroat. VolksliedKroatisches VolksliedKrétaKsięga wyjścia 3,14KubaKubai NépdalKubanische FolkloreKubanska LjudskaKubańska Melodia LudowaKubiečių LiaudiesKubánská LidováKubánská Milostná PíseňKubánská PíseňKunstliedKurdish DanceKurdish Song From North Of KhorasanKurdish Trad.Kurdish TraditionalKursk Wedding SongKurzemes-čiganu dziesmasKven/Finnish TraditionalKwakiutl Indian PoemKwangtung MusicKymrish TraditionalKyperská Lidová PíseňKärleksvisa Trad. Romani VisaKärntner LiedKärntner PassionsliedKärntnerliedKärtner Fassung der auf ein altes französisches Jagdlied (1568) zurückgehende Weise, um 1900, von Karl Liebleitner aufgezeichnetKókay IstKöln 1599Köln 1608Köln 1623Köln 1683Kölner Gesangbuch 1599Kölner Gesangbuch 1623Kölner Gesangsbuch 1599Kölner Psalteriolum 1942KözismertKözépkori Francia Adventi ÉnekKözépkori TöbbszólamúságKüsselKıbrıs Halk TürküsüL. LazloL. LiaudiesL. PopularLULa CarmagnoleLa FoliaLa Metradansa (Ball Popular De Calaf)La Vieja GuardiaLadinoLadino Folk SongLadino TraditionalLahan AmamyLangelandsk FolkemelodiLangelandsk MelodiLapin JoikuLapualtaLapuan TaisteluvirsiLars Ankerstjerne ChristensenLateinamerikan. VolksweiseLatg. t. dz.Latgale folk songsLatgalian Folk SongsLatgallian FolksongLatgaļu t.dz.LatinLatin CarolLatin HymnLatin Hymn AD 1500Latin OriginLatin Trad.Latin Traditional CarolLatin Traditional HymnLatin trad.Latinsk HymneLatinska HimnaLatinský TextLatv. Sadzīves DziesmaLatv. T. Dz.Latv. Tautas DziesmasLatv. t. dz.Latv. tautas dejaLatv. tautas deja ar koklu orkestriLatvian FolkLatvian Folk DanceLatvian Folk SongLatvian Folk SongsLatvian FolksongLatvian TraditionalLatvian Traditional RoundelaysLatvian Traditional SongLatvian and Latgalian folk songLatvian folk melodiesLatvian folk songLatvian folk songsLatvian folkloreLatviešu Joku DziesmaLatviešu Leģionāru DziesmaLatviešu TautaLatviešu Tautas Dz.Latviešu Tautas Dz. VārdiLatviešu Tautas DziesmaLatviešu Tautas DziesmasLatviešu Tautas MelodijasLatviešu Tradicionālā MūzikaLatviešu tautasdziesmaLatviešu tautasdziesmasLatvių Liaudies DainaLašská LidováLebanese TraditionalLegendeLegende Von H.J. Von WessenbergLegendă BiblicăLeikkilauluLeipziger Kirchenmusik 1731Lelerkastenmelodie Um 1880LeliokalaniLengyel KatonadalLengyel NépdalLenje TraditionalLetra PopularLetra Popular GalegaLettisches VolksliedLevytuotlajat OyLezione VIII. Job 19LiaudiesLiaudies DainaLibanesisches VolksliedLibanon, trad.Liberian FolkLibre Vermell de MontserratLid.Lid. BaladaLid. ItalskýLid. Melodie Z KokavyLid. NeapolskáLid. PoezieLid. TichomořskáLid. VrtěnáLid. Z Karibských OstrovůLid. Z TěšínskaLidováLidová AmerickáLidová ChorvatskáLidová FrancouzskáLidová IndickáLidová KoledaLidová LotyšskáLidová NeapolskáLidová PoesieLidová PoezieLidová Poezie = Folk PoetryLidová PíseňLidová Píseň Z BatavieLidová Píseň Z PodlužíLidová Píseň Ze StrážniceLidová RuskáLidová RčeníLidová S PosázavíLidová SlezskáLidová SlováckáLidová VietnamskáLidová Z BrněnskaLidová Z ChodskaLidová Z Moravsko-Slovenského PomezíLidová Z PodlužíLidová Z PošumavíLidová Z Prov. Chej-pejLidová Z Prov. Jü-nanLidová Z Prov. Tiang-suLidová Z Prov. Šan-TungLidová Z TešínskaLidová Z TřeboňskaLidová Ze Střed. ČechLidová koledaLidová poezieLidová píseňLidová ČínskáLidovéLidové Dívčí DvojhlasyLidové PísněLidové Písně A TanceLidové Písně Ze SlováckaLidové písněLidové písně kavkazských národůLidovýLidový NápěvLidový PopěvekLidový TextLidový textLiebeslied aus NorddeutschlandLiebeslied von den Hebriden (Schottland)Lied Auf Einen Alten TextLied Aus Dem Spanischen BürgerkriegLied Der Österreichischen ArbeiterLied aus Dalarna, 17. Jh.Lied aus dem BürgerkriegLied aus dem Spanischen BürgerkriegLied aus dem jüd. Ghetto von Wilna (Litauen)Lied aus der Zeit der bad. RevolutionLied aus der Zeit der badischen RevolutionLied der englisch-amerikanischen ArbeiterLied der polnischen Befreiungsarmee, 1943Lied der roten HundertschaftenLied der österreichischen ArbeiterLied des Roten Frontkämpferbundes, 1925Lieder Aus Afrika Und AlabamaLiederbuch Simböck/HuberLiesertal TotenliedLiet. Karių DainaLiet. L. D.Liet. Liaud. DainaLietuviešu. t. dz.Lietuvių Liaud. DainaLietuvių LiaudiesLietuvių RomansasLietuvių TradicinėLietuvių liaudiesLimanska TradicionalnaLincolnshire FolksongLincolnshire March Past ThemeLiptovská Ľud.Liptovská ĽudováLirska Pesma Iz MačveLitauisches WeihnachtsliedLitevská Lid. PoezieLithuanian (Žemaičių) FolkLithuanian FolkLithuanian Folk SongLithuanian Folk VerseLithuanian TraditionalLithunian Folk SongLithurgische DichtungLitovská Ľudovská PieseňLituanian Trad.LiturgiaLiturgia JudaicaLiturgicalLiturgical PatrimonyLiturgical TextLiturgical TraditionalLiturgický TextLiturgieLiturgie OrthodoxeLiturgijskiLiturgikusLiturginis TekstasLiturgischLiturgy Of St. Basil The GreatLiturgy of St. JamesLivonian People SongLivre Vermeil De MonserratLivre Vermeil De Monserrat, XVe SiècleLizarrako MurgaLizarrako MusikagileakLjubavna Pjesma Iz SkadraLjudskaLjudska - PartizanskaLjudskeLjudskiLjudskoLjudsko besediloLlibre VermellLlibre Vermell de MontserratLoa Pastoril Do Século XVIII / Origem PortuguesaLochamer Liederbuch 1460Lochheimer LiederbuchLoesser, FrankLok BoliyanLok GeetLokahendingin í Þorlákstiðum (frá 13. öld)LombardiaLondonLondon CarolLondonderry AirLorraineLouisiana CreoleLove Song From The HebridesLower Renish TraditionalLubavitch MelodyLuc. 2, 29-32, Lobgesang Des SimeonLud.Lud. Hiszp. = Folk SpanishLud. Szwed. = Folk SwedishLudowaLudowa Ballada FrancuskaLudowa Ballada Francuska z XVII w.Ludowa Piesn RosyjskaLudoweLudus DanielisLuganda ChorusesLuk. 1.28 Og Luk. 1.42Luk. 18:31-33Luk. 1:26-27Luk. 2:8Luk. 4:19Lukas 11: 28Lukas 19: 42-44Lukas 1: 28,42Luke 1:28 and 42Luke 1:46Luke 1:46-47, 49LullabyLullaby From LebanonLuuk. 1:46-55Luuk. 24: 29Luxembourg Folk SongLuxemburgilainen Trad.LuzaidekoaLuční Písně Z Púchovskej DolinyLyon 1547Lyrická Pieseň Z AzerbajdžanuLyrik aus VietnamLäsarsång Från VärmlandLån Fra FolketradisjonenLégende BretonneLībiešu t.dz.M. Culter (Trad.)M. HendersonM. SaraviaMAtt 5, Ps 26MacedoniaMacedonia, Trad.MacedonianMacedonian Folk DanceMacedonian Folk SongMacedonian FolksongMacedonian Line DanceMacedonian SongMacedonian TaditionalMacedonian Trad.Macedonian TraditionalMacedonian Traditional SongMacédonienMadjarska NarodnaMadrigal S. XVMadrigal Um 1600Magyar Karácsonyi ÉnekMagyar NépdalMagyar NépköltésMagyar NépmeseMagyar trad.Magyarországi Folklór AnyagMaked. Trad.Makedonien, trad.MakedonijaMakedonska Izvorna PesmaMakedonska LjudskaMakedonska NarodnaMakedonska Narodna (Macedonian Folk Song)Makedonska Narodna IgraMakedonska Narodna PesmaMakedonska Narodna PjesmaMakedonska Narodna Pjesma I PlesoviMakedonska PesmaMakedonska TradicionalnaMakedonska, Kosovska ObradaMakedonsko NarodnoMakedonská LidováMakedonská lidováMakedonské Lidové PísněMalagasy Children SongMalagueñas PopularesMaleisch VolksliedMalembe ChantMalpica - Beira-Baixa - PopularMalpica - Popular Beira BaixaMandinka Trad.Mantra Tradicional IndianoManuscrit De Bruxelles, XVe SiècleManx TradManx Trad.Manx TraditionalManx trad.Maoori PärimusviisMaori Farewell SongMaori MelodyMaori SongsMaori TraditionalMarcha TradicionalMarche De Tradition De Saint-CyrMarche PopulaireMarche Trad. IrlandaiseMariMariapoliMarienliedMarienlied 16. JahrhundertMarinea Populaire Du CuzcoMark 12:29 -30Markus 16: 6-7Markus 1:3-8Marokko-ko Herri KantaMarokkolainen Kansansäv.Maronitska HimnaMarruecosMarsch Der Finnländischen Reiterei Im 30jährigen KriegeMarsch der Finnländischen Reiterei im Dreißigjährigen KriegeMarschliedMarschlied / VolksweiseMartialMartiniqueMarujadaMassMass TextMatins Responsory For Christmas DayMatt. 21:5Matt. 25:13Matteus 6:6-13Matth. 6,9-13Matthew 5: 3-10Matthew 7:7Matthew 9:6- 13Mayan Musicians In The Festival ProcessionMazedonienMazedonien/Österreich-SalzkammergutMazedonischMazedonisch Trad.Maďarská Lid. PíseňMaďarská Lid. Žertovná PíseňMaďarská LidováMaďarská Lidová PíseňMaďarská Ľudová PieseňMaďarské Lidové PísněMaďarské Lidové TanceMađarskaMađarska NarodnaMađarska RomansaMecklenburgisches LiebesliedMed. Lud.Medeltida FredsbönMedeltida MariahymnMediaeval GermanMediaeval HymnMediaeval LatinMedievalMedieval / Trad.Medieval AnonymousMedieval CarolMedieval ChantMedieval Christmas SuiteMedieval English Folk-songMedieval English Round C. 1280Medieval English Round, c.1280Medieval English TextMedieval IrishMedieval Ital.Medieval LamentMedieval PortugueseMedingen um 1460, Wittenberg 1524MediterraneanMedley Of Two Traditional Romanian TunesMedley: Virren Sävelmä Sri LankastaMedley: Virren Sävelmä Trad.Medžimurska LjudskaMegrelian Folk SongMehhiko laulMehiška narodnaMeks. Trad.Meksikanska NarodnaMeksička NarodnaMel TradMel. Fra 18. ÅrhundredeMel. Från 1500-taletMel. Från 1700-taletMel. Från MedeltidenMel. GenèveMel. GregoriańskaMel. Gregoriańska, Wg Antyfonarza Monastycznego, 1934Mel. LudMel. Lud.Mel. Lud. ???Mel. Lud. Opr.Mel. LudowaMel. LudoweMel. Popul.Mel. Trad.Mel. Trad. PortuguesaMel. TradycyjnaMel. TradycyjneMel. amerykańskaMel. lud.Mel. pop. poschiavinaMel. ÜberliefertMelodi Enligt Boda-traditionenMelodi Enligt Gammal Tradition I BodaMelodi Fra EinsiedelnMelodi Fra HorindalMelodi Fra SkåneMelodi Från 1400-taletMelodi Från 1558Melodi Från BodaMelodi Från Leksand/Tune From Leksand, DalacarliaMelodi Från NederländernaMelodi Från SkattungbynMelodi från BodaMelodi från HawaiiMelodi från SkattungbynMelodia AlemãMelodia Ambrosiana Século XVIIIMelodia AmericanaMelodia CongolesaMelodia Da Angola AfricanaMelodia EspanholaMelodia Francesa 1950Melodia GaelicaMelodia LudowaMelodia MedioevaleMelodia NiemieckaMelodia PodlaskaMelodia Pop. AbruzzeseMelodia PopolareMelodia Popolare VenetaMelodia PopularMelodia Popular AlemanaMelodia Popular Tradicional AlemanaMelodia PopulareMelodia PopularnaMelodia PortuguesaMelodia Reg. A ScheidMelodia RusaMelodia SuecaMelodia TradicionalMelodia Tradicional Irlandesa. Versió LliureMelodia Tradizionale AfricanaMelodia TradycyjnaMelodia popolareMelodia popular sicilianaMelodia ŁowickaMelodias TradicionalesMelodie 1540Melodie 16. Jhd.Melodie Aus CubaMelodie Aus SchwedenMelodie FrancezăMelodie Genève 1551Melodie Germană (German Song)Melodie LudoweMelodie PopolareMelodie PopularăMelodie Populară AustriacăMelodie Populară BrazilianăMelodie Populară CehăMelodie Populară EnglezăMelodie Populară FrancezăMelodie Populară MexicanaMelodie Populară MexicanăMelodie Populară PolonezăMelodie Populară RuseascăMelodie Populară RusăMelodie Populară SpaniolăMelodie TradiționalăMelodie Uit TsjechoslowakijeMelodie War Bereits Vor 1826 BekanntMelodie bisericeascăMelodie uit WalesMelodie/Halle - 1704Melody 13th CenturyMelody From 17th centuryMelody From HarboøreMelody From Himmels-Lust, 1679Melody From The Pays De RetzMelody From The Scottish PsalterMelody Of A MonasteryMelody Of The AndesMelody Of ÄppelboMelody Of ÅhlMelody Trad.Melody TraditionalMelodía Judéo EspañolaMelodía Pop.Melodía Popular SicilianaMenuettMergel Halk ŞarkısıMerskawyMessale Dell'Assemblea CristianaMesse De BarceloneMesse De NoëlMesse VIIIMesse de PâquesMetis Trad.Metrical PsalmMeu Lirio Roxo Traditional PortugueseMex. Folkemel.Mex. LiedMex. Trad.Mex. VolksliedMexicaans VerjaardagsliedjeMexicanMexican FolkMexican Folk Dance From YucatanMexican Folk SongMexican Folk-danceMexican FolkloreMexican FolkltuneMexican Trad.Mexican TraditionalMexican WaltzMexická LidováMexická Pastevecká PíseňMexická lidováMexické Lidové PísněMexicoMexico TraditionalMexik. VolksweiseMexikan. VolksliedMexikanische FolkloreMexikanische VolksweiseMexikanische WeiseMexikanischer MamboMexikanisches TanzliedMexikanisches VolksliedMexikanisches WiegenliedMexikansk FolkemelodiMexikansk FolkmelodiMezőségMi'kmawMichaelMichael Vehes Gesangsbuch 1537Middle EastMiddle Eastern DanceMiddle Eastern TraditionalMiguel Marti i PolMikołaj ZieleńskiMillerMinnegedicht / Tanzstück im WechseltaktMinneliedMinnelied/NordseemarschMinstrel TraditionalMisirlou Trad.Missa De AngelisMissa Pro DefunctisMissale RomanumMittelalt. TänzeMittelalter MarienweiseMittelalterliche MarienweiseMittelalterlicher ChorusMixes De Rio De PachiñíMládenecká Pieseň Zo Starej PazovyModified from traditional Moroccan piyutModinha ImperialModinha Popular BrasileiraMolavi FarsMolavi KurdMold. Trad. DanceMoldaviaMoldavianMoldavian Csango Folk-songMoldavian Csángó DanceMoldavian FolkMoldavian Humorous Gipsy SongMoldavian Trad. DanceMoldova Trad.Moldvai Csángó NépénekMoldvai NépdalMoluccan TradionalMolucká TanečníMongoli TraditionalMongolian Folk SongMongolian TraditionalMongolian Traditional MusicMonika JacobsMontenegrin Trad.Montenegrin TraditionalMontenegro TraditionalMoore's Irish MelodiesMor. Lid.Mor. LidováMora Trad.Moravian Folk SongMoravian Trad.Moravská KoledaMoravská Lid.Moravská Lid. PoezieMoravská LidováMoravská Lidová = Moravian Folk SongMoravská lidováMoravské LidovéMoravské Lidové PísněMoravské Národní PísněMorivo PopolareMorocan FolkMoroccan Jewish TraditionalMoroccan TraditionalMorocco FolkloreMoscow ChantMot. Pop.Mot. Pop. ParaguayoMotif AncienMotiv Národní PísněMotiv. Pop.Motiv. PopulairMotivi PopolariMotivo AndinoMotivo FolclóricoMotivo PopolareMotivo Popolare AnonimoMotivo Popolare FriulanoMotivo PopularMotivo Popular CentroamericanoMotivo Popular MexicanoMotivo Popular PeruanoMotivo PopulareMotivo TradicionalMotivo TradizionaleMotivo popularMotivo popular quechuaMotivos PopolaresMotivos PopularesMotyw Tradycyjnej Melodii UkraińskiejMountain SongMountain Trad.MourariaMouraríaMozarabic Chant (6-7th Century)Mr. Trad.Muiñeira PopularMuntlig TraditionMurchy Efter Rasmus StormMus. Trad. de AngolaMusic Founded On An Old Cornish AirMusic From Lorestan ProvinceMusic From Volyn'Music Trad.Musica Etnica BolivianaMusica Polular Do NordesteMusica PopolareMusica Popular VenezolanaMusica TradizionaleMusik Nach Einem Alten VolksliedMusique AncienneMusique Du FolkloreMusique PopulaireMusique Populaire HongroiseMusique Sue De Tout Le MondeMusique Trad. MexicaineMusique TradionnelleMusique TraditionelleMusique Traditionelle RusseMusique TraditionnelleMusique Traditionnelle BosniaqueMusique Traditionnelle BourbonnaiseMusique Traditionnelle BulgareMusique Traditionnelle CeltiqueMusique Traditionnelle KlezmerMusique Traditionnelle RoumaineMusique Traditionnelle SerbeMusique Vénézuélienne Du XIXème SiècleMusique populaireMusique traditionnelleMusiques Traditionnelles De GuinéeMusiques Traditionnelles RéunionnaisesMustlaslaulMustlasromanssMuunnelmaMuz. I Sł. TradycyjneMuz. KlasycznaMuz. Lud.Muz. LudowaMuz. TradMuz. Trad.Muz. TradycyjnaMuz. ZapożyczonaMuz.: Wg Antyfonarza Monastycznego, Tyniec 1988Muzică tradițională turceascăMuzyka LudowaMuzyka TradycyjnaMycket Populär Kinesisk Sång, Sjungen Till Partiets Och Ordförande Maos ÄraMáttuid LuohtiMänrishes VolksliedMél. ClassiqueMél. PopulaireMélodie AfricaineMélodie AlsacienneMélodie ClassiqueMélodie MoldaveMélodie OrthodoxeMélodie PolupaireMélodie PopulaireMélodie Populaire GrecqueMélodie RhénaneMélodie TraditionnelleMélodie ancienneMélodie du XVIe siècle (Bresse)Mélodie populaireMélodie populaire canadienneMélodie populaire françaiseMélodie populaire russeMélodie slaveMélodie traditionnelle celtiqueMélodies TraditionellesMúsica Del FolkloreMúsica PopularMúsica Popular CubanaMúsica TradicionalMúsica Tradicional Da MadeiraMúsica Tradicional Dos Índios SuruíMúsica do Fado MenorMúsica popular venezolanaMünchenMündl. ÜberlieferungMündlich Aus SachsenMündlich ÜberleifertMündlich ÜberliefertMündlich überliefertMāori SongMűdalN NN'AdurraN. Einem Russ. OriginalN. Einer Türk. Volksw.N. EspiritualN. N.N. Spanischen MotivenN. SpiritualN. e. VW.N.NN.N,N.N.N.e. SpiritualNNNN.Na Narodnu TemuNa Polską I Białoruską NutęNa Svidenje Še KdajNa Tatarską NutęNaar Psalm 23Nach Alten QuellenNach Arabischen VolksweisenNach Bekannten MelodienNach Dem Amerik. VolksliedNach Dem Französischen Lied "Ah, Vous Dirai-je, Maman !"Nach Dem Soldatenlied "Von All Unseren Kameraden"Nach Dem Um 1830 Aus Alteren Liedfragmenten Entstandenen Volkslied „Drei Lilien“Nach Der Gleichnamigen VolksweiseNach Einem Alten AnsingeliedNach Einem Alten SoldatenliedNach Einem Alten Tiroler VolksliedNach Einem Deutschen VolksliedNach Einem Französischem VolksliedNach Einem Französischen VolksliedNach Einem KinderliedNach Einem Russ. VolksliedNach Einem Schweizer SternendrehermarschNach Einem Sizilianischen Latainischen Marienlied (O Sanctissima)Nach Einem Spanischen VolksliedNach Einem SpiritualNach Einem Toscanischen Volkslied, Mit Einem Einschub Eines Piemontesischen RefrainsNach Einem Vietnamesichen Bambustanz]Nach Einem Volkstanz Aus ThüringenNach Einer Alten Irischen VolksweiseNach Einer Alten MelodieNach Einer Alten WeiseNach Einer Amerikanischen VolksweiseNach Einer Engl. VolksweiseNach Einer Italienischen VolksweiseNach Einer Nordischen Sage Von KopischNach Einer Russischen VolksweiseNach Einer RussischenVolksweiseNach Einer Schottischen Melodie Aus Dem 18. JahrhundertNach Einer Volksw.Nach Einer VolksweiseNach Melodien von Kleine Sünderlein, Wein Vom Rhein, Es Ist Nicht Leicht, Kleine Kneipe, Dann Gehen Die Lichter AusNach Span. MotivenNach Weihnachtlichen VolksweisenNach dem Lied "Von allen Kameraden"Nach dem Lied "Zu Mantua in Banden"Nach dem Volkstanz "Ennstaler Polka"Nach dem polnischen Freiheitslied "Marsch der Zuaven"Nach dem polnischen Revolutionslied "Das Volk zog zum Kampf"Nach dem sowjetischen Lied "Wir Roten Soldaten"Nach der italienischen Wise "O Sanctissima", vor 1789Nach einem Kinderlied aus FrankreichNach einem Russischen VolksliedNach einem SoldatenliedNach einem VolksliedNach einem alten VolksliedNach einem alten VolkstanzNach einem badischen TanzliedNach einem sowjet. KomsomolzenliedNach einer Amerikanischen VolksweiseNach einer Tiroler VolksweiseNach einer Volksw.Nach einer englischen Melodie aus dem 17. JahrhundertNacionalNadir MoysheNameless XVIII Century ComposerNamibiaNamibialainen LauluNana Turca TradicionalNapolil. KansanlauluNapolil. Kansansäv.Napolilainen KansansävelmäNapolitaans VolksliedNapuljska TradicijskaNar.Nar. Pjesma Iz SrbijeNar. Pjesma:NardoniNarodNarod.NarodnaNarodna (Obrada)Narodna - ObradaNarodna BeneškaNarodna CiganskaNarodna Iz BitoleNarodna Iz BosneNarodna Iz DalmacijeNarodna Iz GružeNarodna Iz HercegovineNarodna Iz IzraelaNarodna Iz Kruševačke ŽupeNarodna Iz MeđimurjaNarodna Iz Okoline Smederevske PalankeNarodna Iz PodravineNarodna Iz SamoboraNarodna Iz SlavonijeNarodna Iz SrbijeNarodna Iz TemnićaNarodna Iz ValpovaNarodna Iz Zlatiborskog KrajaNarodna Junačka PesmaNarodna MeksikanskaNarodna ObradaNarodna PesmaNarodna Pesma - KosovoNarodna Pesma Iz Crne GoreNarodna Pesma Iz MakedonijeNarodna Pesma Iz SrbijeNarodna PjesmaNarodna Pjesma Iz BosneNarodna Pjesma Iz VranjaNarodna S KipraNarodna XXXNarodna ZapisNarodna [Indiska Narodna]Narodna-ObradaNarodneNarodniNarodni Iz Predstave "Karolina Riječka"Narodni MelosNarodni MotiviNarodnoNarodno KoloNaroidnaNaronaNarrative BalladNativeNative AmericanNative American ChantNative American PoemNative American Songs-TraditionalNative TradicionalNativityNaturjutzNavaho Indian PoemNavajo ChantNavajo SongNavajo Trad.Navajo, Trad.NazionaleNcaNdonga/NamibiaNeap. VolksliedNeapolietiška DainaNeapolit. VolksliedNeapolitan Folk SongNeapolitan Folk TuneNeapolitan SongNeapolitan Traditional PolyphonyNeapolitanische VolksweiseNeapolská Lid.Neapolská LidováNederlands VolksliedjeNederlends KerstliedNego SpiritualNegr. Spir.Negro EspiritualNegro LullabyNegro ShoutNegro SiritualNegro SongNegro Sp.Negro Spir.Negro SpiritualNegro Spiritual Trad.Negro Spiritual TraditionnelNegro SpiritualsNegro Spiritual—Trad.Negro SpritualNegro spiritualNegro-SpiritualNegrospirituaaliNegrospiritualNeheimer RundgesangNem. Taneč. Ľud. Pieseň Zo 16. Stor.Nem. Trad.Nem. Uspávanka Z 19. Stor.Nem. Ľud. PieseňNem. Ľud. Pieseň O JariNem. Ľud. Pieseň Z 18. Stor.Nem. Ľud. Pieseň Z VogtlanduNem. Ľud. Pieseň Zo 16. Stor.Nem. Ľúbostná Ľud. Pieseň Zo 16. Stor.Nem. Žartov. Pieseň Zo 16. Stor.Nemecká ĽudováNemškaNemška BožičnaNemška Božična Po Lat. Himni: O SanctissimaNeo FolkloreNeopolitan Folk AirNeopolitan Folk SongNeopolitan Folk Song (Trad.)Neopolitanisches VolksliedNepalese Trad.Nepalese TraditionalNepoznati AutorNepoznati autorNetherlands Folk HymnNeues Sowjetisches BergarbeiterliedNeujahrsliedNew Lutheran LiturgyNew OrleansNew Orleans Trad.New Orleans TraditionalNew Zealand Maori for "The Battle"Newer Chaaba TraditionNewfoundland Folk SongNibelungeliedNic JonesNicaraguanNicht Ausreichend Überliefert/ De Brevitate VitaeNiederdeutsch/Trad.Niederdeutsches VolksliedNiederheinisches VolksliedNiederländisch, 17. Jahrh.Niederreihnisches VolksliedNiederrhein, VolksliedNiederrheinisches VolksliedNigerian TraditionalNihonkyokuNikolauslied, Vor 1870Nikolauslied, vor 1870Nineteenth Century Ukranian CarolNinna Nanna PolaccaNittedalNivernaisNjemačka BožićnaNo Fado CorridoNo Fado EspanholNo Fado MarceneiroNo Fado MenorNo Fado SeixalNoel BrasilNoel CanadienNogueira-ManuskriptNon-copyrightNonCopNoord-Amerikaans Indiaans KerstliedNor.trad.Nordamerikanisches VolksliedNorddeutsche VolksweiseNordfriesische VolksweiseNordic Trad. From DalslandNordic Trad. From SmaalandNordisk FolkemelodiNormandieNormandy TraditionalNorrland TraditionalNorsk FoletoneNorsk FolkemelodiNorsk FolketoneNorsk Folketone (Fra Hallingdal)Norsk Folketone (Hallingdal)Norsk Folketone Fra HallingdalNorsk FolkeviseNorsk Folkmel.Norsk FolkmelodiNorsk FolkvisaNorsk MiddelalderballadeNorsk SkillingsviseNorsk SlåtteviseNorsk TradNorsk Trad.Norsk Tradisjonell SangNorsk folkemelodiNorsk stevNorsk, trad.Norte PotosíNorth African DanceNorth Indian Traditional Folk SongNorth-American Traditional SongNorthern EpirusNorthern FolksongNorthern HungaryNorvegian TraditionalNorvegų LiaudiesNorw. Trad.NorwegenNorwegian ChoralNorwegian Folk SongNorwegian Folk TuneNorwegian Medieval "Stew". TelemarkNorwegian Medieval Lullabies, GudbrandsdalenNorwegian Medieval MelodyNorwegian MelodyNorwegian Nursery RhymeNorwegian TradNorwegian Trad.Norwegian TraditionalNorwegian Traditional "Jesus, Gjør Meg Stille"Norwegian Traditional FolkloreNorwegian Traditional StaveNorwegian Wedding MarchNorwegian traditionalNorwegian/Swedish Trad.Norwegisches VolksliedNotre Dame Repertory, 13th CenturyNoëlNoël Anonyme CatalanNoël BourguignonNoël DanoisNoël De NormandieNoël Du XVe SiècleNoël PolonaisNoël PopulaireNoël ProvençalNoël TraditionnelNoël ancienNoël bourguignon du XVIIIe siècleNoël béarnaisNoël de LullyNoël traditionnel du 18ème siècleNoël vannetaisNumber 24Numbers 6:24- 26NurseryNursery RhymeNursery Rhyme From Halliste ParishNursery Rhyme From SuffolkNy Trad.Nyanja TraditionalNyere Svensk SanglegNárodná PieseňNárodníNárodní Píseň Z BarmyNárodní Píseň Z IndonézieNéger SpirituáléNégro SpiritualNémet NépdalNépballadaNépd.NépdalNépdal (Traditional)Népdal - NarodnaNépdal - StandardNépdal SzövegNépdalcsokorNépdalfeldogozásNépdalfeldolgozásNépdalokNéphagyományNépiNépi DallamNépi GyűjtésNépi MondókaNépi SzövegNépköltésNépmeseNépzeneNépénekNöel tradicionalNěmecká LidováNěmecká Lidová PíseňO'Caroline, Scoll. XVIIc.O'ConnorOMJDObadiah ha Ger (12th Century)Oberes MurtalOberländer VolksliedObermetzenseifener LiederbuchOberösterreich, 18. Jahrh.ObradaObrada Izvorne PesmeObradná Ľud. PieseňObras TradicionalesOccitanOccitan Trad.Oh TannenbaumOjaláOkinawan TraditionalOkinawan Traditional Folk-SongOkändOkänd Komp.Okänd Komp:Okänd Sångfört.Okänd Textför.Okänd UpphovsmanOkänt UrsprungOlasz NépdalOlasz-zsidó DallamOldOld Arabic PoetryOld BasqueOld Basque CarolOld Bohemian Christmas SongOld Bohemian MelodyOld British TradOld CarolOld Chant, Kievo-Pecherska LavraOld Christmas Song From CzechOld Christmas Songs From CzechOld Church Gallery BookOld Cornish CarolOld Danish MelodyOld Danish Religious SongOld Danish TextOld EnglishOld English AirOld English CarolOld English Folk BalladOld English Folk SongsOld English Folk-TaleOld English MelodyOld English SongOld English Trad.Old English TraditionalOld English TuneOld Finnish Christmas TableauOld Folk Dance Of Russian GipsiesOld Folk SongOld FolksongOld FrenchOld French CarolOld French Evening PrayerOld French SongOld French Trad.Old French TraditionalOld French TuneOld Gaelic MelodyOld GermanOld German HymnOld German MelodyOld German RoundOld German Soldier's SongOld German TuneOld Greek TraditionOld Greek TuneOld Gregorian ChantOld Hawaiian MelodyOld HundredthOld Hunting SongOld IrishOld Irish AirOld Irish FolksongOld Irish MelodyOld Irish PoemOld Irish SongOld Irish TuneOld Japanese WritingsOld JingleOld Kievan ChantOld Ladino SongOld MelodyOld Negro SongOld Negro SpiritualOld Nordic Ring-GameOld Norwegian Nursery RhymeOld PoemOld PoitryOld Popular SongOld ProverbOld PsalmOld ReelOld RomanceOld Romanian RomanceOld Runo SongsOld Russian MelodyOld Russian RomanceOld Russian SongOld ScotchOld Scotch AirOld Scotch BalladOld Scotch MelodyOld Scottish AirOld Scottish BalladOld Scottish CarolOld Scottish TuneOld SongOld Spanish Folk SongOld SpiritualOld StandardOld Student SongOld SwedenOld Swedish CarolOld Swedish Traditional Folk songOld Tatar Folk MelodyOld TestamentOld Traditional Folk SongOld Traditional MelodyOld Traditional SongOld WaltzOld Welch AirOld WelshOld Welsh AirOld Welsh Folk SongOld Wesh AirOld Yeshiva MelodyOld romanceOld, Attributed To The Sufi TraditionOld-Time / IrishOldtimer's LaendlerOlmützOls Traditional Faroese HymnOmarbeidet Trad SpiritualOmbekendOnbekendOpr. UkendtOral Literature Of North KhorasanOral TraditionOral traditionOravská Ľúbostná PieseňOração da Ave MariaOrchestre LocalOrdem Graça MisericordiaOre Trad.Oriental MelodyOriental TraditionalOrientalisches MärchenOrig.OriginalOriginal Bulgarian folk songOriginal Industrial BalladOriginal Irish MelodyOriginal Mündl. ÜberliefertOriginal Russian Folklore Of The 12th - 19th CenturiesOriginal-IndianermusikOriginal: TraditionalOriginated from Romanian Ortodox ServiceOrigineelOrikiOrkestOro Prov. Trad.Orosz CigánydalOrosz NépdalOrosz És Ukrán Népmesék, DallamokOrthodoxe ÜberlieferungOstiak Trad.OststeiermarkOsztrákOsztrák Karácsonyi ÉnekOttoman ClassicalOud Engelse MelodieOud Frans KerstliedOud HollandsOud Kerkelijke MelodieOud Ned. KerstliedOud Nederlands KerstliedOud Nederlands LiedOud Nederlands PaasliedOud Russisch VolksliedOud VolksliedOud ZeemansliedOud-Duitse MelodieOud-Kerkelijke MelodieOud-Nederlands KerstliedOud-Nederlands liedOude Duitse MelodieOudrussisch KerkgezangOudrussisch VolksliedOululainen KansansävelmäOur AncestorsOur ForefathersOvčiarska Ľudová Pieseň Z VažcaOvčiarske Piesne Zo ŠarišaP DP. D.P. D./Trad.P. De ParisP. DomainP. SimmondsP..P.DP.D.P.D. 14th Century German MelodyP.D. From The Oxford Book Of CarolsP.D. Trad. English CarolP.D. Trad. French CarolP.D. Trad. Old English CarolP.D. Trad. Welsh CarolP.D. Traditional Ukrainian CarolP.D., Traditional English CarolP.D., Traditional French CarolP.D., Traditional Ukrainian CarolP.D., Traditional Welsh CarolP.D.Trad.P.O.P/DPDPD.PD. N/MPacific Time Theme MusicPalestinian Trad.Palestinian Traditional Wedding SongPalestinsk Trad. FolkesangPalkistansk Trad.PalæstinaPamir Tradition MusicPapago (Native American) Religious SongPapago IndianParadosiakoParadosiakouParadossiakoParaguayská LidováParis 1530Paroles PopulairesPart of the Roman Catholic Requiem MassPartisan songPartisanen-AbschiedPartizanskaPartizanų DainaPartly Trad. BulgariaPartly Trad. ManipurPaschal TroparionPashto TraditionalPassamaquoddy IndianPassionsliedPastevecká Píseň Z ChilePastierska Pieseň Zo Severného BulharskaPastierske UjúkačkyPastorale NataliziaPatrimoinePatrimoine QuébécoisPatrimonio Musical de CubaPaunnee TraditionalPavana AnónimaPays BasquePazinPenarodelaPend.PendientePendingPeople Of UkrainePerinnePerinnesävelmäPerinteinen Ruotsalainen KansanlauluPerrevals Trad. From Kresten Nielsen's Music Book. The Reel After Peter Gorm SørensenPerryPersian TradPersian TraditionalPeruPeru, Trad.PeruiPeruiansk Trad.Peruvian Trad.Peruvian TraditionalPeruánská Lid.Pesma Iz BelgijePesma Iz VojvodinePessach HaggadaPesti FolklórPeter Asher-Gordon WallerPeter MaternaPetrosaniPetäjävesi Trad.Pfälzisches BauernliedPhilippians 2: 8-9Piae CantionesPiae Cantiones 1582PicardiePicardy - French Trad.PiemontePieseň Goralského ĽuduPieseň Koscov Zo Západného BulharskaPieseň Z DagestanskaPieseň Z LieskuPieseň Z Liptovských SliačovPieseň Z LokcePieseň Z OravyPieseň Zo ZubercaPieseň Zo ZáriečiaPiesne Pastierok Kráv Z OravyPiesne Z OravyPieza FolclóricaPieśń LudowaPieśń RusińskaPieśń TradycyjnaPieśń Tradycyjna, Wg Cantionale Ecclesiasticum, 1933Pieśń Tradycyjna, XVI W.Pieśń Tradycyjna, XVII W., Oprac.: D. Kusz OPPieśń Tradycyjna, XVIII W.Pieśń tradycyjnaPieśń z Centralnej UkrainyPieśń z GalicjiPieśń z ZakarpaciaPiiblitekstPiirileikkilaulu KarjalastaPios. Kaszubska XVII W.Pios. Kaszubska XVII w.Piosenka Neapolit.Piosenka NeapolitańskaPiosenka Oparta Jest Na Utworze TradycyjnymPiosenka PodwórkowaPiosenka PopularnaPiosenka TradycyjnaPiosenka ludowaPjesma Iz SrbijePjesma Iz VojvodinePjesma Iz VranjaPlain ChantPlain-ChantPlainchantPlainsongPlainsong Sequence, Mode IPlantation MelodyPo Lurškem NapevuPo Makedonskem NapevuPo NarodniPo alpskem napevuPo narodnih motivihPodle Starých PramenůPoema ChinoPoema JudíoPoema PopularPoema Sânscrito TradicionalPoema XinèsPoesia Da Tradição Oral D MadeiraPoesia Da Tradição Oral Da MadeiraPoesie PopulairePohjoisamerikkalainen Trad.Pohjoismainen Toisinto Saksalaisesta KansansävelmästäPol. Lid.PolandPolenPolishPolish / JewishPolish CarolPolish Christmas CarolPolish Couple DancePolish Folk SongPolish Lid.Polish MelodyPolish Trad.Polish TraditionalPoljska PartizanskaPoljska TradicijskaPoljski LjudskiPolka Trad.Polnische VolksweisePolnischer Tanz (Volksweise)Polnisches FreiheitsliedPolnisches KinderliedPolnisches VolksliedPolognePolskPolsk FolkmelodiPolsk FolkvisaPolsk folkemel.Polska Melodia TradycyjnaPolska Pieśń LudowaPolská Lid.Polská LidováPolská Lidová PiseňPolská Lidová PíseňPoluparPommersches VolksliedPompliedjePonarodelaPonikve (Pelješac)Ponto De BoiadeiroPoolse VolksmelodiePopPop.Pop. AfricanaPop. AmericanaPop. AsturianoPop. AsturiasPop. CanariasPop. CatalanaPop. CataluñaPop. EspañolaPop. FrancesaPop. Picaresca Esp.Pop. SalteñaPop. SalteñoPop. VascaPop. de AlbacetePop. de AvilaPop. de Bernardos-SegoviaPop. de EncinasolaPop. de SalamancaPop. de SegoviaPop. francesaPopolarePopolare CilenaPopolare MilanesePopolare TurcoPopolariPopoulairePopulaarne LaulPopulairePopulaire AlsacienPopulaire ArménienPopulaire AsturiesPopulaire USAPopularPopular (Beira-Baixa)Popular (Fado Menor)Popular (Muiñeira Da Ponte De San Paio)Popular (Recolhida em Riachos)Popular - AlentejoPopular - AçoresPopular - Beira AltaPopular - Beira BaixaPopular - CaducaPopular - Dança Do Folclore de CatetePopular - Fado Meia NoitePopular A La Bretanya I La VandéePopular ActualPopular African SongPopular AfricanaPopular AlemanaPopular AlemaniaPopular AlemanyaPopular AlemánPopular AlentejanoPopular AlentejoPopular Algueresa (Sardenya)Popular AlicantinaPopular AmericanaPopular AmericanoPopular AndalucíaPopular AnglesaPopular AnónimoPopular ArgentinaPopular ArgentinianPopular AsturianaPopular AsturianoPopular AçoreanaPopular AçoreanoPopular BalearPopular Basada En Melodia Tradicional NorteamericanaPopular Basada En Melodias Tradicionales NorteamericanasPopular Basada En Una Canción Tradicional BritánicaPopular BascaPopular Beira BaixaPopular BoliviaPopular BolivianaPopular BrasileiraPopular BrasileiroPopular BrasileraPopular BretonaPopular BúlgaraPopular CamprodonPopular CantabraPopular CastellanaPopular CatalanPopular Catalan TunePopular CatalanaPopular Catalana (Version Ibicenca)Popular CataláPopular CatalánPopular ChilenaPopular ColombianaPopular CoreanaPopular CorsaPopular CubanaPopular CubanoPopular De BoliviaPopular De BurgosPopular De Cabo VerdePopular De GrixoaPopular De ItaliePopular De LeonPopular De Les Terres De L'EbrePopular De OzaPopular De ParaguayPopular De PerúPopular De SalamancaPopular De San RománPopular De TamaulipasPopular De Tierra De PinaresPopular De Transmissió OralPopular De ValladolidPopular De ZamoraPopular Del Altiplano AndinoPopular Del CentroPopular Del País ValenciàPopular Do MinhoPopular EcuadorPopular EivissaPopular EivissencaPopular EscocesaPopular EspañolPopular EspañolaPopular ExtremeñaPopular EïvissaPopular FinandesaPopular FinlandesaPopular FlamencaPopular FragmentPopular FrancesPopular FrancesaPopular FrancésPopular GalegaPopular GalegoPopular GalesPopular GaliciaPopular GallegaPopular GermanPopular GranadinaPopular GregaPopular GriegaPopular Habanera Catalana, Arraigada A Menorca Aproximadamente Desde 1890Popular HebreaPopular HiddishPopular HollandPopular HongaresaPopular IberoamericanoPopular IbizencaPopular Illes HawaiPopular IndiaPopular InfantilPopular InternationalaPopular IrlandesaPopular IrlandésPopular IsraelianaPopular ItaliaPopular ItalianaPopular JaponesaPopular LleidatanaPopular LyricsPopular MadrileñoPopular MallorcaPopular MallorcanPopular MallorquinPopular MallorquinaPopular MenorcaPopular MenorquinaPopular Mexican CorridoPopular MexicanaPopular MexicanoPopular MusicPopular Nor-americanaPopular Nor-americana*Popular Nord AmericanaPopular Nord-AmericanaPopular Nord-americanaPopular NordamericanaPopular NorteamericanaPopular OccitanaPopular PanamáPopular PeruanaPopular PerúPopular Poem from LithuaniaPopular PortuguesaPopular RCVPopular RPAPopular RomânescPopular RusaPopular RussPopular Russian SongPopular SantanderPopular SantanderinaPopular SarbescPopular SardaPopular SegovianaPopular SicilianaPopular Siglo XVIPopular SongPopular Sud-AfricanoPopular Sud-AmericanaPopular Sudanese SongPopular SuecaPopular SuecoPopular SuissaPopular SuïssaPopular TradicionalPopular Tradicional De BoliviaPopular TraditionalPopular TunePopular TurcaPopular U.S.A.Popular ValencianPopular ValencianaPopular VascaPopular VenezolanaPopular VenezolanoPopular YiddishPopular andaluzaPopular catalanaPopular chilenaPopular de AlosnoPopular de AngolaPopular de ArochePopular de Bernardos (Segovia)Popular de BohèmiaPopular de BurgosPopular de Cumbres de San BartoloméPopular de EncinasolaPopular de Gran CanariaPopular de GranadaPopular de La ChampagnePopular de La GomeraPopular de LanzarotePopular de S. ToméPopular de SegoviaPopular de SevillaPopular de TenerifePopular de ToledoPopular de Tomiño-PontevedraPopular de VilanovaPopular de la RiojaPopular do MinhoPopular españolPopular españolaPopular mallorquinaPopular portuguesaPopular santanderinaPopular suizaPopular, Adapt. VitorinoPopular, Beira BaixaPopular, GalicePopular, LeonPopular, Pays BasquePopular-ItalianaPopular-MacyPopular-TradicionalPopular. Segle XVIIIPopulara CanadianaPopularePopulare MacedoromânePopularesPopulariePopularsPopulars MallorquinesPopulars ValencianesPopularăPopulatPopullorePopullorë GrekëPopulärPopulär Kubansk MelodiPopuularPopylarPopěvekPorro popular colombianoPortug. VolksliedPortugalPortugese Folk SongPortugiesische FolklorePortugiesische VolskweisePortugiesischen VolksweisePortugiesisches VolksliedPortugisisk folkemel.PortuguesePortuguese FolksongPoème Du Peuple Chinois "Emperor Of Jade"Poľská Ľudová KoledaPoľská Ľudová PieseňPoľský Mužský Ľudový TanecPracovní PíseňPrancūzų DainaPrancūzų DainelėPrantsuse Trad. (1684)Prantsuse rahvalaulPrayer BookPrayer Book (Z'mirot)Prayer Of St PatrickPrece TibetanaPredikaren 3:1-8Prediker 3 : 19-22Prediker 4 : 1-3PregariaPrekmurska LjudskaPrelucrare Din FolclorPrelucrare FolcloricaPrelucrare FolcloricăPrelucrare folcloricăPrelucrări FolcloricePrimitive Oboe and Drum SoloPrière Juive Du Yom KippourProstonárodnáProtestantischer Choral aus dem 16. JahrhundertProtestlied der Afro-AmerikanerProtestlied der amerikanischen NegerProvencalsk TextProvencelainen SävelmäProvencial French CarolProvençe TraditionalPrzebój holenderskiPrzypowieść LudowaPrzyśpiewka ludowaPrætorius-XVIe SPs 115Ps 39Ps 63(62)Ps 84Ps. 117Ps. 118.Ps. 121Ps. 126Ps. 137Ps. 147.Ps. 148 A. S.Ps. 199Ps. 51:3Ps. 8Ps. 92PsalmPsalm 102Psalm 102 From Book Of Common PrayerPsalm 103Psalm 112Psalm 114Psalm 116, 7-11Psalm 116: 1-4, 7-9Psalm 117Psalm 117:1-2Psalm 117:1–2Psalm 118Psalm 119 17-40Psalm 121Psalm 126Psalm 13Psalm 130Psalm 130 (131)Psalm 137Psalm 137: 7-10Psalm 138Psalm 145, 18 Und 21Psalm 149:1-3, Psalm 150:2, 6Psalm 149:1–3; Psalm 150:2,6Psalm 18Psalm 19Psalm 19:6Psalm 22Psalm 23Psalm 23 As set In The Scottish PsalterPsalm 31Psalm 33Psalm 34, 13-15Psalm 34:8Psalm 37Psalm 46:10Psalm 47Psalm 48, 8-9Psalm 50 {51}Psalm 51Psalm 62Psalm 63Psalm 67, 1-7Psalm 8Psalm 84Psalm 86:11-13Psalm 88Psalm 91Psalm 92Psalm 96:1-4Psalmi 130Psalmi 231, 1114, 42 2-3Psalmi 51Psalmista 91PsalmsPsalms 118 5,6Psalms 121Psalms 23Psalms 23 King DavidPsalms 42, 118Psalms 51Psalms 96, 98Psalms, Lamentations, Song Of Songs (The Bible)Psalmy DawidowePsalt. 120Psalt. 23:1-4Psaltaren 15: 1-2Psalteriolum HarmonicumPsaume De Carême Sur Un Ton AntiquePseudo TradPslams 118Pub. DomainPubblico DominioPublic DomainPublic Domain (Argentine Folk Melody)Public DomainePublic domainPuertoriquenaPugliaPuha PusztaPuhja ParishPunoPuolalainen Kansansäv.Puolalainen KansansävelPuolalainen KansansävelmäPuolalainen MarssilauluPuolalainen TradPuplic DomainPupularPučkaPälkjärviPärimuslaulPärimusviisPärnuPíseň Peruánských IndiánůPíseň Z PošumavíPíseň z irské revoluce 1916Píseň z války Severu proti JihuPópularQuadra PopularQuadras PopularesQuadras SoltasQuaker HymnQuebecQuebec Trad.Quebecian TraditionalR.D.A.RaamattuRaamatun Sanoihin (Kor.13:4-8)Raamatusta 1 Kor. 13:1,4,7,8Raamatusta Matt. 23.37,39Raga From The Middle EastRahvalaulRahvalaul UrvastestRahvalauludRahvalikRahvalik LaulRahvalik Laul / Популярная ПесняRahvalik laulRahvalik viisRahvalik viis, sõnadRahvalikudRahvaluuleRahvaviisRahvv.Rajashtani Folk SongRajasthani traditsionaalRakouská Lid.Rakouská LidováRansk. JoululauluRanska = FrankrikeRanskal. - Trad.Ranskal. JoululauluRanskal. Kans.säv.Ranskal. Kansansäv.Ranskal. LastenlauluRanskal. Säv.Ranskal. SävelRanskalainen Hoululaulu 1600-luvultaRanskalainen JoululauluRanskalainen Joululaulu / French Christmas CarolRanskalainen SävelmäRanskalainen joululauluRapsódia De Fados (D.R.)Rapsódia De Fados AntigosRautajärviRautjärviRačišćeRead.Recent Trad. Song From BrittanyRecolh.Recolhido Do FolcloreRecop. De Versos AnónimosRecopilación CarreñoRecopilada Recientemente En ChileReel Trad. IrlandaisRefrão Do Folclore AlagoanoRegilaulRegionalRegional Do Douro LitoralRekilauluReligiousReligious ChantsReligious Song From The Orthodox Arabs' ChurchReligiøs FolketoneRenascença InglesaRenesanční NápěvRené Ježek KřížRep. TradiționalRep. popularRepertoriu InternaționalRepita AngolanoRequiem Æternam Dona Eis, Domine, Avslutande bönReraRetro MelodijosRevelation 5Revelation 5:5. 12Revolucionarna Partizanska PesmaRevolución MexicanaRevolučná Pieseň Z Latinskej AmerikyRevolučné Robotnícke PiesneRheinfelsisches GesangsbuchRheinische VolksweiseRheinisches VolksliedRhodesRhvv.RichardRiddervise Fra 1500-talletRillumareiRispetto D'Emigrazione ToscanaRito AmbrosianoRitournelle d'Île de FranceRobot. Ľud.Rocalès Sur Thêmes PopulairesRod ArgentRoedelius trad.Role / NameRom. 13:12RomaRoma NépdalRoma Trad.Romance EspañolRomance Ibérico Do Século XVIRomance Nordestino, Provavelmente Do Século XIXRomance Popular De LisboaRomance SefardíRomance Séfarade IstanbulRomance TradicionalRomance Tradicional. Siglos XVI Y XVIIRomance TsiganeRomance ibérico do século XVIRomance nordestino, provavelmente do século XIXRomanceiro AlgarvioRomanceroRomaniaRomanialainen Trad.RomanianRomanian Folk SongRomanian Folk TuneRomanian FolkloreRomanian FolksongRomanian Folksong In ViharsarokRomanian Folksong from BanatRomanian Folksong from MaramureșRomanian Folksong from MoldaviaRomanian Folksong from OlteniaRomanian Trad.Romanian TraditionalRomanian songRomanian traditionalRomans 14:17Romans 8:1, 2, 9-11Romans 8:1,2,9–11Romans 8:26-27Romans RosyjskiRomansaRomansa-narodnaRomanță popularăRomeRomskaRomska PesmaRomska Trad.Romska TradicionalRomska TradicionalnaRomská Lidová PoezieRomán AltatódalRomán KolindaRondalla MallorquinaRootsi Trad.Rootsi trad.Roro D'HaitiRos. Mel. Lud.Ros. Mel. LudowaRosh Hashana PrayersRotgardistenmarsch 1917RouergateRoumanian Folk SongRoumanian GypsyRum. FolkloreRumanianRumanian DanceRumanian Jewish TraditionalRumanian Trad.Rumanian TraditionalRumanian drunking songRumanische VolksweiseRumeli TûrkûsüRumeli TürküleriRumeli TürküsüRumensk Trad.Rumun. NarodnaRumunska NarodnaRumunska Narodna IgraRumunska TradicionalRumunska TradicionalnaRumunska TraditionalRumunska narodna pesmaRumunski TradicionalRumunskoRumunsko NarodnoRumunsko koloRumunská LidováRumunská Lidová PíseňRumunská lidováRumän. VWRumän. VolksweiseRumänienRumänische FolkloreRumänische VolksweiseRumänische VolksweisenRumänisches ErnteliedRumänisches VolksliedRumænsk FolkemelodiRuots. Koraalisäv.Ruots. SävelmäRuots. Trad.Ruotsal. K.s.Ruotsal. Kansansäv.Ruotsal. KansansävelmäRuotsal. SävelmäRuotsal.Kans.säv.Ruotsalainen Kans.sävRuotsalainen KansansävelRuotsalainen SävelmäRuotsalainen Trad.Ruotsalainen melodiaRus AnonimRus. LidRuskaRuska CiganskaRuska Ciganska PjesmaRuska Delavska PesemRuska LiturgijaRuska NarodnaRuska Narodna (Russian Folk Song)Ruska Narodna IgraRuska Narodna PesmaRuska RomansaRuska TradicinalRuska narodna (Russian folk song)Ruske RomanseRuská Lid.Ruská Lid. PohádkaRuská Lid. PíseňRuská LidováRuská Lidová PíseňRuská Národní PíseňRuská Revolučná Ľudová PieseňRuská Revoluční PíseňRuská Znárodnělá PíseňRuská lidováRuská národní píseňRuská Ľdová RozprávkaRuská Ľud. PieseňRuská Ľud. RozprávkaRuská ĽudováRuská Ľudová PieseňRuská Ľudová RozprávkaRuská-CikánskáRuss. ChansonRuss. FolkemelodiRuss. FolkloreRuss. LiedRuss. Lied von 1812Russ. MotivRuss. TradRuss. TraditionalRuss. VolksliedRuss. Volkslied (Str.: 1)Russ. VolksliederRuss. Volksmel.Russ. VolkstextRuss. Volksw.Russ. VolksweiseRuss. ZigeunerliedRuss./VolksweiseRusseRussesch VolleksweisRussiaRussianRussian AirRussian Folk SongRussian Folk SongsRussian Folk TraditionRussian Folk TuneRussian Folk TunesRussian Folk-SongRussian FolkloreRussian FolkmelodyRussian FolksongRussian FolktuneRussian Gipsy SongRussian Gypsie / Trad.Russian GypsyRussian Gypsy SongRussian Gypsy Trad.Russian MelodyRussian North TraditionalRussian OriginalRussian Orthodox LiturgyRussian Revolutionary SongRussian RomanceRussian Round DanceRussian SongRussian Spiritual VerseRussian Spiritual Verse Of The XV CenturyRussian Trad.Russian Trad. SongRussian TraditionalRussian Traditional AirRussian Traditional SongRussian Traditional Song From Belgorod RegionRussian Traditional Song From Polesye RegionRussian Traditional Song From Smolensk RegionRussian Traditional Song From Tver RegionRussian Traditional Wedding SongRussian TuneRussian Vesper SongRussian folk songsRussian traditionalRussian, Polish and Hungarian folksongsRussian/Gypsy BalladRussiansRussiche VolksweiseRussisch Kerkelijk LiedRussisch Orth.Russisch VolksliedRussisch-polnisches RevolutionsliedRussische FolkloreRussische HymneRussische Trad.Russische VolksweiseRussische VolksweisenRussische Zigeuner-RomanzeRussische ZigeunerromanzeRussische ZigeunerweiseRussischer Trauermarsch 1905Russischer VolkstextRussisches ArbeiterkampfliedRussisches VolksliedRussisches WiegenliedRussisches ZigeunerliedRussisk Folkemel.Russisk FolkemelodiRussisk StudentersangRussisk Trad.Russisk VespermelodiRussisk folkemelodiRusssiches OriginalRusyn TraditionalRusínska Ľudová PieseňRusų Revoliucinė DainaRusų Romansas (O(riginaRuthenian SongRußlandRysk FolkmelodiRysk FolkvisaRysk MelodiRysk Trad.RääkkyläRégi Francia BordalRépertoire Arabe TunisienRépertoire TraditionnelRépertoire TraditionnelleRómska ĽudováS. ConleeS. HenselSKS/ Suomen Kansan Vanhat RunotSaamel. JoikuSaami rahvalaulSaami rahvaviisSaami rahvl.Sacred Harp HymnSacri TradizionaliSadzīvesSaemien Aerpivaajese Jïh Vuelie/Trad. SamiSagnSahrawi TraditionalSailor's SongSaks. Säv.Saks. SävelmäSaks. kansansävelmäSaks.Kans.Säv.Saks.Trad.Saksa Trad. (1799)Saksa jõululaulSaksal. JoululauluSaksal. K.l.Saksal. Kansansäv.Saksal. KansansävelSaksal.säv.Saksal.säv. 1300-luvultaSaksal.sävel v.1539SaksalainenSaksalainen JoululauluSaksalainen KansansävelmäSaksalainen SävellysSaksalainen SävelmäSaksalainen Sävelmä (1100-luvulta)Saksalainen Sävelmä 1100-luvultaSaksalainen Sävelmä 1300-l.Saksalainen Sävelmä V, 1525Saksalainen Trad.Saksalainen kans.säv.SaksastaSakslalain. Trad.Sallenda AmbrosianaSalme 103Salme 116: 7,5,8,3,4Salme 23Salme 4Salme 47Salme 72,17Salme 77: 1,9Salme 8Salme 85, 1-5Salme 86: 12,17Salme Fra New OrleansSalt-Trader's SongSalvadorilaisesta KansanmessustaSalzburger Notenblätter/trad.Salzburger VolksweiseSalzburger WeiseSalzburgs VolksliedSalzkammergutSalónicaSamba De Roda TradicionalSamiSami Trad. JoikSamoan ChantSan Juanito (Ecuador)San Juanito Tradicional (Ecuador)Sanojen Alkuperä TuntematonSanskrit MantrasSanskrit PrayerSanteria Traditional SongSantiago Tradicional De HuancavelicaSarajevoSardinian Oral TraditionSarum Plainsong, Mode VIIISaudi ArabiaSavolaisia KansanlaulujaScandinavian FolkScandinavian Folk SongScandinavian Folk Song, After The Group HuldrelokkScandinavian Trad.Scandinavian TraditionalScherz-Vierzeiler Auf Eine VolksweiseScherzliedScherzlied Der Mädchen Aus Der Gegend Von PlockScherzlied aus Lauscha/ThüringenScherzlied aus ÖsterreichSchifferliedSchleesial.säv.Schleisisch Volkslieder, 1842SchlesiaSchlesien 18. Årh.Schlesien 18. århSchlesische Lieder 1842Schlesische VolksliederSchlesische VolksweiseSchlesisches VolksliedSchlesisk FolkemelodiSchlesisk FolketoneSchlesisk FolkvisaSchlesisk Mel.Schlesisk MelodiSchlesisk folkemel.Schlesisk folkvisaSchotse Trad.Schott. Trad.Schottisch Trad.Schottische VolksweiseSchottisches LiedSchottisches Traditional ·Schottisches VolksliedSchottlandSchottland, trad.Schumanns Gesangbuch, 1539Schw. VolksweiseSchwabenSchwed. VolksliedSchwed. VolksweiseSchwed. „Den Signade Dag“ um 1450Schwed. „Vi Ska Ställa Te“SchwedenSchwedischSchwedisches StudentenliedSchwedisches Tanz- Und VolksliedSchwedisches VolksliedSchweizSchweiz - trad.Schweizer SterndreherliedSchweizer VolksweiseSchwäbischSchwäbische VolksweiseSchwäbisches VolksliedSchwäbisches Volkslied (ca. 1870)Schwäbisches Volkslied (vor 1832)Schwäbisches Volkslied 1824Schwäbisches Volkslied Nach Friedrich SilcherSchwäbisches Volkslied vor 1840SchäfersliedScot. / Irish Trad.Scotch AirScotch FolksongScotch TraditionScotch TraditionalScots TraditionalScots, TraditionalScott. Trad.Scottisch Trad.Scottische VolkweiseScottishScottish / Irish TradScottish AirScottish DerivativeScottish FolkScottish Folk SongScottish Folk TuneScottish FolkloreScottish FolksongScottish GaelicScottish JigScottish Melody From The 1640sScottish Oral Tradition And Irish Oral TraditionScottish PolkaScottish PsalmScottish Psalter 1615Scottish Psalter 1650Scottish ReelScottish TradScottish Trad.Scottish Trad. Waulking Song HébridesScottish TraditionScottish TraditionalScottish Traditional Folk SongScottish TuneScottish traditionalScottish/ScottishScouteliddSea ChanteySec. IVSec. VIISec. XISecond Book Of SamuelSedlácké Z HorňáckaSeemannsweiseSeemannsweise Trad.SeemansweiseSefarade, XIIIèmeSefardiSehr Alte MelodieSelecciones Para NinosSen. Amerikiečių DainaSena Karavīru ZiņģeSena Zviedru Garīgā DziesmaSenegalese Trad.Senegambia Traditional SongSenegelese Folk SongSenovinis Rusų RomansasSenovinė Čigonų DainaSepharade (Turquie)Sephardic (Jerusalem)Sephardic (Morocco)Sephardic Jewish From Spain (12th Century)Sephardic MelodySephardic SongSephardic Trad.Sephardic TraditionalSephardic Traditional MusicSephardische Melodie 13. JahrhundertSerbiaSerbian FolkSerbian TraditionalSerbian Traditional MusicSerbian Traditional SongSerbischSerbisch-orthodoxer WeihnachtsgesangSerenade aus den PhillipinenSerenade der schwedischen StudentenSergio Fernández (12)SerranaSerras Nr. 9 Efter Rasmus StormSesotho SpiritualSesotho TraditionalSeto Folk SongSetu rahvaluuleSeveročeské LidovéShabadShabad from "Guru Granth Sahib"Shaker HymnShaker MelodyShaker SongShaker TraditionalShaker TuneShaker spiritualShantyShanty aus EnglandSheridanShetland TradShetland Trad.Shetland TraditionalShetland traditionalShetlandi rahvalik viisShetlandic Trad. / Shetlandic Trad. / Shetlandic Ian BurnsSheva BrochosShope TradShope TradeShulchan AruchSichuan TraditionalSicileSiciliaans VissersliedSiciliaanse VolksmelodieSicilian AirSicilian MarinersSicilian Mariners HymnSicilian Mariners' HymnSicilian Trad.Sicilian TraditionalSiciliansk HymnSiciliansk Melodi 1700Siciliansk Trad.Sicilská LidováSicisilian Trad.Sicuri HuaynoSicuriada TradicionalSicīliešu Dz.Siebenbürgisch-sächsisches VolksliedSiegeslied Der ANC-Freiheitskämpfer In SüdafrikaSiionin Laulu 150Sikuri (Altiplano)Sikuri (Perú)Sileesia RahvaviisSilesian Folk MelodySilesian Folk SongSilesian Folk ToneSilesian MelodySilesian Trad.Silesian TraditionalSilezische MelodieSili Halk TürküsüSimbabwische VolksweiseSimbabwischer GospelSimoneSionstoner 239Sioux Death Song TradSioux IndiansSirijska NarodnaSirijskla NarodnaSirtakiSisiliainen SävelmäSisilial. Säv.Sisilialai. Trad.Sisilialainen Kansansävelmä 1700-l.Sisilialainen SävelmäSixto AyvarSiz. Volksw.Siz. VolksweiseSizil VolksweiseSizil. Volksw.Sizil. VolksweiseSizilanische VolksweiseSizilianische Volksw.Sizilianische VolksweiseSizilianische Volksweise 1788Sizilianische Weise vor 1789Sizill. VolksweiseSjællandsk MelodiSjællandsk bondeviseSjömansvisa, Traditional Shanty, SwedenSkandinaavinen Trad.Skandinavische MelodieSkillingtryckSkillingtrycksvisa Från DalarnaSkoti RahvaviisSkotlantilainen KansansävelSkotlantilainen SävelmäSkotlantilainen Trad.SkotskSkotsk FolkemelodiSkotsk FolketoneSkotsk FolkmelodiSkotsk FolkvisaSkotsk SangSkotsk Trad.Skotsk Trad. HymneSkotsk Visa; Trad.Skotská LidováSkotský TradicionálSkotu tautas dz.SkåneSkót NépdalSlav-Macedonian TraditionalSlavkaSlavoniaSlavonian Folk SongSlavonic Folk SongSlavonijaSleesial. Kans. SävelSleesialainenSleesialainen KansansävelmäSleesialainen SävelmäSlez. Lid.Slezská Lid.Slezská LidováSlezská Lidová = Silesian Folk SongSlezská Lidová PíseňSlezské Lid.Slip Jig: Traditional IrishSlip-jig Trad. IrlandaisSlov. Lid.Slov. LidováSlov. Ljudski NapevSlov. Nar.Slov. NarodnaSlov. TraditionalSlov. Ľud.Slov. Ľud. RozprávkaSlov. ĽudováSlov. ĽudovéSlovak Folk SongSlovak Trad.Slovak TraditionalSlovakian Folk SongSlovakisk Trad.Slovačka NarodnaSlovačka Narodna RomskaSlovaškaSlovaška Nar.Slovenački TradicionalSlovene Trad.Slovene TraditionalSlovenian Folk SongSlovenian FolksongSlovenian Partisan SongSlovenian TraditionalSlovenian Traditional SongSlovenian TraditionalsSlovenska Ljudska / Slovenian TraditionalSlovenska NarodnaSlovenska PravljicaSlovenska ljudskaSlovenska narodnaSlovenská Lid.Slovenská Lid. PoezieSlovenská LidováSlovenská Národná HymnaSlovenská Národná PieseňSlovenská Revolučná Pieseň Z R. 1848Slovenská Ľud.Slovenská ĽudováSlovenská Ľudová KoledaSlovenská Ľudová PieseňSlovenská Ľudová PovesťSlovenská Ľudová PíeseňSlovenská Ľudová RozprávkaSlovenské ĽudovéSlovenské Ľudové PiesneSlovenský Lidový TanecSlovenský Ľudový Tanec-KaričkaSlovácka LidováSlovácká Lid.Slovácká LidováSlovácká Lidová PíseňSlovácká lidováSlowak. VolksliedSlowakisches VolksliedSlowenisches VolksliedSlängpolska After Byss-KalleSlåttestevSměs Židovských PísníSob Motivo OrientalSobre Recopilación Hecha En CalamaSofíaSoikkolaSoldatenliedSoldier's SongSolesmes Version, Mode IISomalisches FreiheitsliedSomerset Folk SongSomerset FolksongSomerset TuneSomogyi Folk SongSon Huasteco TradicionalSon JarochoSon Jarocho TradicionalSon MichoacanoSon MontunoSoner GercekerSong Dynasty Classical PoemSong From East AnatoliaSong Of Hungarian GipsiesSong Of Solomon 8:6Song Of SongsSong Of Spanish GypsiesSong Of The Hungarian GypsiesSong der InuitSong of SongsSong of songsSoome valssSorbisches VolksgutSorbisches VolksliedSortavalaSotho LullabyeSotho Trad.Sotho Wedding SongSource UnknownSouterliedekensSouth AfricanSouth African Freedom SongSouth African Gospel SongSouth African TradSouth African Trad.South African TraditionalSouth American Folk TuneSouth Italian TraditionalSouth-AfricaSouth-HungarySouthamerican TraditionalSouthern SongSouthern SpiritualSouthern TransdanubiaSoutjärviSowjetische WeiseSpa TradSpaans KerstliedSpaans TraditioneelSpaans Volkslied Uit GaliciëSpain TraditionalSpain, Trad.Spain. Trad.Span. BauernhymneSpan. VolksweiseSpanienSpanische BauernhymneSpanische FolkloreSpanische FolksweiseSpanische SerenadeSpanischer KinderreimSpanisches FreiheitsliedSpanisches LiedSpanisches VolksliedSpanisches Volkslied "De las cuatro muleros"Spanisches Volkslied (Coplas)Spanisches Volkslied (Weihnachtslied)Spanisches WeihnachtsliedSpanisches WiderstandsliedSpanishSpanish - Melody FeliciaSpanish AirSpanish BalladSpanish CarolSpanish FolkSpanish Folk MelodySpanish Folk SongSpanish Trad.Spanish TraditionalSpanish Traditional CarolSpansk FolketoneSpansk JulmelodiSpansk Trad.Spansk ValsSpanyol Karácsonyi DalSpanyol Karácsonyi ÉnekSpanyol NépdalSpanyol NépmeseSpeierer Gesangbuch, Köln 1599Speierisches Gesangbuch 1599Speiersches Gesangbuch 1599Speiersches Gesangbuch, Köln 1599Speiersches GesangsbuchSpeiersches Gesangsbuch, 1599Speiersches Gesangsbuch, Köln 1599Spevy Žien Na PriadkachSpeyerisches GesangbuchSphardie-OrientalSpinnstubenlied Aus BenneckensteinSpirirualSpiritialSpirituaalSpiritualSpiritual * TradSpiritual / TraditionalSpiritual Folk ChantSpiritual Folk Hymn From Kihnu IslandSpiritual Folk Hymn From NoarootsiSpiritual Folk Hymn From Reigi Village, Hiiumaa IslandSpiritual Folk Hymn From Suur-Pakri IslandSpiritual Folk Hymn From Vormsi IslandSpiritual NegreSpiritual TraditionalSpiritual Von Den BahamasSpiritual-MotivSpiritual/TraditionalSpiritualeSpiritualsSpiritulualSpirituálSpottliedSpring Ritual SongsSpringar fra NumedalSpringar fra ValdresSpritualSrbijaSrbska LjudskaSrbskáSrbská Lid.Srbská Lid. PoezieSrbská Staromestská PieseňSrbskéSrijemska NarodnaSrijemske Narodne PjesmeSrpska NarodnaSrpska Narodna Pesma Sa KosovaSt-GnagnaSt. PaulStaines MorrisStamm Der Crow IndianerStamm Der Qjibwa IndianerStandardStandard JazzowyStara Dubrovačka ContradanzaStara GradskaStara Gradska PesmaStara Gradska PjesmaStara RuskaStara Ruska Gradska PesmaStara Ruska RomansaStara SlovenskaStara Srpska PesmaStara Škotska ArijaStare TemeStari Dalmatinski PlesStarofrancouzská lidováStarogradskaStarokorejská LyrikaStaropražskáStaropražská Lidová PíseňStaroruskyStaročeská LidováStará Dělnická PíseňStará Dělnícka PíseňStará Koleda (Lat.)Stará Latínská KoledaStará Německá Revoluční PíseňStará Revolučná PieseňStará RomanceStará Sibirská LidováSteiermarkSteir. VolksliedSteir. Volkslied Mit TrompetensoloSteirischSteirischer JodlerSterndreherlied Aus Der SchweizSterndreherweise Aus Der SchweizSternendreherweise Aus Dem Kanton LuzernSternträgerweise aus der Schweiz (um 1710)StevtoneStm. Kosken PäiväkirjaStor-Olapolsen Etter Ola Åsgjelten, TolgaStornelli Popolari ToscaniStraatliedStralsund 1665Stralsund/HalleStredoslov. ĽudováStredoslovenská Ľud. PieseňStreletcky SongStrileċkaStrofa Popolare Della 1.a Guerra MondialeStrofette Popolari di IgnotoStudentenliedStudentenlied Aus Der Badischen PfalzStudentenlied InternationalStudentenlied aus der badischen PfalzStudentiška DainaStudentu Dz.Středoslov. LidováStředoslovenská Lid.Středoslovenský TanecSudaneseSufi By El BiatiSufi GesangSufi HeritageSufi TradSufi TraditionalSuisseSuistamoSuită De Melodii AmericaneSumerianSundanese Trad.Suom. Hengellinen KangansävelmäSuom. JoululauluSuom. K.l.Suom. Kans. LauluSuom. KansanlauluSuom. KansansatuSuom. Kansansäv.Suom. KansansävelSuom. KansansävelmäSuom. PiirilauluSuom. Trad.Suom. UnkaristaSuomal. KansansatuSuomal. Kansansäv.Suomal. KansansävelSuomal. KansansävelmäSuomal. KoraalitoisintoSuomal. PiirilauluSuomal. ToisintoSuomal.Kans.lauluSuomalainen Kansan SatuSuomalainen KansanlauluSuomalainen KansanrunoSuomalainen KansansävelmäSuomalainen KoraalitoisintoSuomalainen PiirilauluSuomalainen ToisintoSuomalainen Trad.Suomalainen kans.sävSuomalainen kans.säv.Sur Un Air De FolkloreSur Une Musique Du FolkloreSur Une Vieille Chanson FrancaiseSur. Trad.Surinam TraditionalSurinamese TraditionalSuriye Halk ŞarkısıSussex Mummers' CarolSutartinėSv Ps 132Sv Ps 317Sv Ps 451, Sionstoner 1889Sv Ps 476Sv Ps 93Sv. FolkemelodiSv. FolkvisaSv. Ps. 168Sv. Ps. 175 V. 1Sv. Ps. 324, Folkl. Mel. Fr. DalarnaSv. TradSv. Trad.Svad. Pieseň Z Juž. EstónskaSvadbena Ciganska Pjesma Iz PrištineSvadbena PjesmaSvadobná Pieseň Z Dediny Järva-JasniSvadobné Piesne Zo Severného PoľskaSvatováclavský ChorálSveitsil. Kans.säv.Sveitsiläinen MarssilauluSvenskSvensk - Norsk FolkmelodiSvensk 1693Svensk 1890Svensk DanselekSvensk FolkemedodiSvensk Folkemel.Svensk FolkemelodiSvensk FolketoneSvensk FolkeviseSvensk FolkmelodiSvensk FolksångSvensk FolkvisaSvensk Mel.Svensk MelodiSvensk Psalm 51Svensk Psalm-Trad.Svensk SanglegSvensk TradSvensk Trad.Svensk folkvisaSvensk/Norsk FolketoneSvenska folkvisorSváb NépdalSváb NépzeneSvéd Karácsonyi DalSvéd Karácsonyi ÉnekSvéd Trad.Swabian Folk SongSwabian FolksongSwahiliSwahili/Luganda ChorusSwedishSwedish Choralbook (1697)Swedish Dance CarolSwedish Dance-playSwedish Folk MelodySwedish Folk MusicSwedish Folk SingSwedish Folk SongSwedish Folk TuneSwedish FolksongSwedish Hymn No. 365, Trad.Swedish Medieval BalladSwedish MelodySwedish Sailor SongSwedish TradSwedish Trad HymnSwedish Trad.Swedish Trad. / Norwegian Trad.Swedish Trad. HymnSwedish Trad. SongSwedish TraditionalSwedish Traditional By Hjort AndersSwedish Traditional HymnSwedish Traditional SongSwedish TraitionalSwedish Variation Of German Folk Song)Swedish Walking SongSweedish TraditionalSweei SacramentSwing trad.Swiss AirSwiss Folk SongSwiss FolksongSwiss MelodySwiss PolkaSwiss Trad.Swiss TraditionalSyrian Chant (4th Century)Syrian FolkSyrian HeritageSyrian HeritiageSzatmarSzatmár CountySzerzője IsmeretlenSziléziai NépdalSzlovák NépdalSzékSzékely NépballadaSzöveírója IsmeretlenSámi JoikSámi traditionalSárospataki DiákdalSämtl. Trad.Säv. Alkuaan Unkaril.Säv. NamibiastaSävel 1300-luvultaSävelen Ja Sanojen Alkuperä TuntematonSävelmä 1400-luvultaSävelmä 1800-luvultaSépharade (Esmirna)Séquence De La PentecôteSüdafrikanisches PartisanenliedSüdamerikan. VolksliedSüdamerikanische VolksweiseSüdamerikanisches VolksliedSüddeutsches Volkslied (vor 1848)Sł, Trad.Sł. I Muz. TradSł. Lud.Sł. LudoweSł. Pieśni Ludowej Z Włoszczowskiego = Song From WłoszczowaSł. Zapożycz.Słowiański Mit O Stworzeniu ŚwiataT.T. D.T. PeruvianT. RadT. SheridanT.D.T.R. AditionalT.RadT.T. HallT.adT.dzT.dz.T.radTRADTRAD.TRDLTRadTRad.TWTaalainmaaltaTad.TaditionalTaglied Aus Dem 16. JahrhundertTahiti-trad.Tahitian Trad'lTahitian TraditionalTahitská LidováTaiwanil. VuoristolaissävelmäTajik Folk MusicTajik Folk TextTakirariTal. Ľud.Talijanska BožićnaTalmudTanec Z HorňáckaTaneč. Nem. Ľud. PieseňTanečná Nem. Ľud. PieseňTaneční Píseň Z KralovickaTango Trad.Taniec ŚląskiTansaniaTansanial. Kansanl.Tansanial. KansanlauluTansanial. Kansansäv.TanzTanz Aus HessenTanzanian Trad.Tanziled Aus SchwedenTanzlied 1540Tanzlied Aus Dem ElsaßTanzlied aus SüddeutschlandTardTard.Tashlich ServiceTatar Folk SongTausendundeiner NachtTautaTautas DziesmaTautas Mūzika Un VārdiTautas VārdiTautas dejaTautas dziesmaTautas meldijaTautas vārdiTautasdziesmaTefillas ShabbosTefillas ShachrisTefillas Yom TovTehilimTehilim 130Tehillim 122Tekst Fra Salme 23Tekst TradycyjnyTekstovi Nepoznatih AutoraTema FolclóricoTema IncaicoTema Nordestino De Canto FúnebreTema PopularTema Popular BolivianoTema Popular VenezolanoTema Populare Sud-AfricanoTema TradicionalTema Tradicional InfantilTema Tradicional TurcoTema tradicionalTemas PopularesTemas TradicionalesTemat TradycyjnyTemás Populares AsturianosTerchovská ĽudováTerd.Terra BeataTerra Beata, Trad. English MelodyTessiner SoldatenliedTessiner Trad.Tessiner VolksliedTesti Trad.TestimonyTesto SacroTesto Trad.Testo TradizionaleText & Musik OkändText AnonimText Aus Dem 30jährigen KriegText LidovýText LiturgiskText PopularText ReligiosText aus dem 30jährigen KriegeText aus dem LettischenText nach einem schottischen VolksliedTexte Aus Dem Alten Und Neuen TestamentTextes TraditionnelsTextos Clásicos EspañolesThadThe AnsarThe BibleThe Bible: "Song Of Songs"The Bible: "Songs Of Songs"The Book Of EcclesiastesThe Book Of ExodusThe English Dancing MasterThe Faroese Kingo HymnThe Holy BibleThe Holy Bible (King James Version)The Holy Bible – Old TestamentThe KalevalaThe Moreen; Moore's Irish MelodiesThe Old HundredthThe People Of UzbekistanThe Polish TraditionalThe Sufi Music Of The "Merghani Sect"The Sufi Music Of The "Shazelia Sect"The Traditional Irish Air "The Coolin"The Traditional Navajo Indian CeremonyThe Traditional RhymeThe Wren - Moore's Irish MelodiesThe great spirit gave this song to an Anishnabe woman who was imprisoned. It is sung for all women to encourage them to keep their hearts and spirits strong.ThommesenThoraThora And King-James-BibleThora, King-James-BibleThora, Pessach Haggada, King-James-BibleThree North-Chilean Aboriginal MelodiesThème AméricainThème FolkloriqueThème Folklorique TziganeThème Inca - BolivieThème TraditionnelThèmes TraditionelsThür. VolksliedThüringer VolksweiseThüringer WeiseThüringi rahvalaulThüringiches VolksliedThüringischThüringisches VolksliedTibetan Nomad MusicTibetan Peace PoemTibetan TraditionalTichomořská LidováTichomořská PíseňTin TraditionTinku (Bolivia)Tire du Folklore EspagnolTirolean Folk MusicTiroler KrippenliedTiroler Trad.Tiroler VolksliedTiroler VolksliederTiroler VolksweiseTirooli rahvaviisTiré Du FolkloreTisgane RusseTjeckisk FolkmelodiTjeckisk FolkvisaTobago Singing GameTobas (Bolivia)Toc de Matinada de ValsToisinto KalannistaTomTonada BolivianaTonada ChilenaTonada FrancesaTonada PopularTonada Popular ChilenaTonada Popular MallorcaTonada PotosinaTonada Pupular CuyanaTone Fra MellomalderenTone Fra MiddelalderenTone Fra NordmøreToner Frå Middelald.Toque Catedralicio/PopularToraditionalTorathTorkjell A. AustadTorres Strait TraditionalTotenwacheliedToumbai (Traditional)TouraineToyos (Perú)Tr.Tr. From Russian VersesTraTra.Tra.dTraad.Trab.TracTrac.TracitionalTradTrad (Trad)Trad (U.S.A.)Trad (Wexford Carol)Trad (etter Folque)Trad (fin)Trad (sung in Russian)Trad - P. DTrad - P.D.Trad .ArrTrad / TraditionalTrad / UnknownTrad ?Trad Afro-AmericanTrad AlgérienTrad AllemandTrad AmericanTrad Angl.Trad AppalachianTrad Arara ChantTrad ArgentinienTrad ArrTrad Arr HemkörtTrad Arr.Trad ArrangementTrad AsturianTrad BalladeTrad BaluchiTrad BornholmTrad BosniaqueTrad BreslovTrad Bret.Trad BretonTrad BulgareTrad BurgundyTrad BurmTrad C/CTrad CanadianTrad Carol Från WalesTrad ChineseTrad Chinese MelodyTrad CreeTrad CzechTrad DalmateTrad DanmarkTrad Del Depto. de OruroTrad Ecoss.Trad EcossaisTrad Efter Aasti Nisi Från Telemark, NorgeTrad Efter SörlinTrad EnglishTrad English BalladTrad FantiniTrad FarjeonTrad FinlandaisTrad Finsk RomanisångTrad FolksTrad Fra BreslauTrad Fra HornindalTrad Fra KvikneTrad Fra Olavsmusikken 1100-tallet]Trad French CanadianTrad From Kalevala & CareliaTrad From NepalTrad From NorwayTrad From ZambiaTrad Frå Øystre Og Vestre SlidreTrad Från BulgarienTrad Från TurkietTrad GalloisTrad GermanTrad GotlandTrad GrecTrad HaitiTrad HallandTrad Hungarian Gypsy MusicTrad HymnTrad Hymn From DalecarliaTrad Hymn From Dalecarlia SwedenTrad IrakTrad Iranian Avaz And South Indian Folk MelodyTrad IrelandTrad IrishTrad Irish JigTrad Irish reelTrad Irish.Trad Irl.Trad IrländskTrad IsländskTrad IsraeliTrad JUTrad JewishTrad Jig From ScotlandTrad JuifTrad JulmelodiTrad KeresTrad KosovarTrad KurdTrad KurdishTrad Libanesisk FolkemelodiTrad ManxTrad MelTrad MexicanTrad MoroccanTrad MoroccoTrad NorwayTrad NorwegianTrad Of Greek (Har'Livadi')Trad Origin UnknownTrad PAITrad PDTrad PersianTrad Persian SongTrad PeterburgTrad Pols/PolskaTrad PärnumaaTrad RajasthanTrad Regle Fra KvinnheradTrad RomanisångTrad RunöTrad Russian Folk SongTrad S AfricanTrad SanabriaTrad ScotlandTrad ScottishTrad SerbeTrad Serbe/BulgareTrad ShetlandTrad ShoshoneTrad SkyllingtryckTrad SlovakTrad SoomeTrad SpanishTrad Sverige & BornholmTrad SwedenTrad SwedishTrad São ToméTrad Sør AfrikanskTrad TsiganeTrad TurkishTrad Tysk MelodiTrad VDTrad VSTrad WelshTrad West AfricanTrad West IndiesTrad [Adieu, Sweet Lovely Nancy]Trad [USA]Trad arrTrad arr Lucas, Rafferty, Didcock, Lauren SimpsonTrad arr.Trad efter Björn StäbiTrad schwedischTrad'Trad'i.Trad'lTrad'l AirTrad'l Highland AirTrad'l Irish AirTrad'l Welsh SongTrad'l*Trad'l.Trad,Trad, Beira Baixa, PortugalTrad, Bret. From GuingampTrad, Bulg,Trad, CatalanTrad, EnglishTrad, From GransheradTrad, GotlandTrad, GriechischTrad, Norsk RomanisångTrad, OrsaTrad, SkyllingtryckTrad, SouthafricaTrad, SverigeTrad, Sverige & NorgeTrad, SwedishTrad, WelshTrad, tysk soldatvisaTrad-Trad-ArrTrad-CanadaTrad-EnglandTrad-IrelandTrad-P.D.Trad-arrTrad-onTrad.Trad. AsturianaTrad. CatalanaTrad. English trans Thomas McDonaghTrad. Finland-SenegalTrad. From Mads Nielsen, Tyvkjær MarkTrad. "Bulbes"Trad. "Gnaua"Trad. (13th Century)Trad. (18th-century Scottish Tune)Trad. (Ahvenanmaalainen Kansansävel)Trad. (Alkuosa Napolilainen Kansanlaulu, Loppuosa Ruotsalainen Pelimannivalssi)Trad. (Alkuosa Ruotsalainen Häävalssi)Trad. (Alkuosa Skottilainen Kansansävel)Trad. (Amerikkalainen Kansanlaulu)Trad. (Amerikkalainen Kansansävel)Trad. (Argentinien)Trad. (Ballard. 1703)Trad. (Ballard. 1704)Trad. (Bells Of Rhymney)Trad. (Bessarabia)Trad. (Cantigas De St. Maria Nr. 77)Trad. (Catalan Folk Song)Trad. (Child 12; Roud 10)Trad. (Child 12; Roud 200)Trad. (Child 26; Roud 5)Trad. (Children's Song)Trad. (Engerdal)Trad. (English Folk Ballad)Trad. (English)Trad. (Finland)Trad. (Finnish Folk Melody)Trad. (Folldal)Trad. (Frit Værk)Trad. (Gaelic)Trad. (Galician / Portuguese)Trad. (Gammel Melodi Fra Dalarna)Trad. (Ireland)Trad. (Irish Folk Melody)Trad. (Irish Tune)Trad. (Irish)Trad. (Italien, 14. Jh)Trad. (Kansanruno)Trad. (Kansansävel)Trad. (Kaustislainen Hääsävel)Trad. (Kisuaheli)Trad. (Kväsarvalsen)Trad. (Latvian)Trad. (Laws P30; Roud 218)Trad. (Macedonian)Trad. (Malung)Trad. (Marti)Trad. (Negro-Spiritual)Trad. (P.D.)Trad. (Perustuu Italialaissmelodiaan Vieni Sul Mar)Trad. (Pohjalainen Kansansävel)Trad. (Pohjalainen kansanlaulu)Trad. (Roma)Trad. (Ruotsalainen Kansanlaulu)Trad. (Ruotsalainen Kansansävel)Trad. (Røros)Trad. (Saksalainen Kansanlaulu)Trad. (Satakuntalainen Kansanlaulu)Trad. (Savolainen Kansansävel)Trad. (Scottish)Trad. (Skara)Trad. (South African)Trad. (Spiritual)Trad. (Suomalainen Kansanlaulu)Trad. (Suomalainen Kansansävel)Trad. (Uusmaalainen Kansansävel)Trad. (Venäläinen Kansanlaulu)Trad. (Vingåker)Trad. (afroamerikkalainen spirituaali)Trad. (amerikkalainen kansanlaulu)Trad. (kansansävel)Trad. (suom. kansanlaulu)Trad. (verschiedene)Trad. (Österreich)Trad. - ArrTrad. - Contea De NissaTrad. - Estacada De BreyTrad. - FanikTrad. - FriulTrad. - HimmerlandTrad. - Indian Folk MusicTrad. - Itä-SuomiTrad. - KarjalaTrad. - Keski-SuomiTrad. - Länsi-SuomiTrad. - P DTrad. - P.D.Trad. - PohjanmaaTrad. - RussianTrad. - Sizilianische VolksweiseTrad. - SønderhoningTrad. - Trad. - Edvard BrinkTrad. - TrentinoTrad. - Turkish Folk MusicTrad. - UkendtTrad. - Val GranoTrad. - Val VermenagnaTrad. / Annastuuna KorkeemäeltäTrad. / Etelä-AfrikkaTrad. / KanteletarTrad. / Makedonska TradicionalnaTrad. / SenegalTrad. / Trad.Trad. / Trad. SenegalTrad. / Неизв.Trad. 10th CenturyTrad. 12. Stol.Trad. 13. Jh.Trad. 13. Stol.Trad. 1300-l.Trad. 13th CenturyTrad. 1400-luvultaTrad. 1500-luvultaTrad. 1566 R.Trad. 15e SiècleTrad. 15th CenturyTrad. 15th Century FranceTrad. 1670-taletTrad. 16th CenturyTrad. 1700-luvultaTrad. 17th CenturyTrad. 1800-luvultaTrad. 1850Trad. 19. JahrhundertTrad. 19. Jahrhundert Volkslied aus Osterreich/SchlesienTrad. 1900 (Hans Oswald)Trad. AB A/STrad. Aboriginal AustralianTrad. AcadianTrad. AdaptedTrad. AfghanistanTrad. Afr. Am. SpiritualTrad. AfricaTrad. Africa (Buntu)Trad. AfricainTrad. Africain (Congo)Trad. AfricanTrad. African American Children's SongTrad. African American SpiritualTrad. African ChantTrad. African-American SpiritualTrad. AfrikaTrad. AfrikkalainenTrad. Afro-Brasil (Southbrasil)Trad. Afro-CubanTrad. Afryk. - Zulu SongTrad. After Aksel Andersen And Ove AndersenTrad. After Anders OlsenTrad. After Hans Jørgen ChristensenTrad. After Ingeborg MunckTrad. After L. Rimmens Music CollectionTrad. After Pekkos PärTrad. Afyon ErmidağTrad. AlbaTrad. AlbaniaTrad. AlbanianTrad. AlemanyaTrad. AlgérienTrad. Allgäu und Mecklenburg-VorpommernTrad. AlphornduoTrad. AlsacianaTrad. Amer.Trad. AmericaTrad. AmericanTrad. American BalladTrad. American Folk SongTrad. American IndianTrad. American SongTrad. AmericanaTrad. Amerik. KansansävelmäTrad. AmerikanischTrad. AmerikanskTrad. Amerikansk Folk/GospelTrad. Amr.Trad. AméricainTrad. AmérindienTrad. AnatoliaTrad. AndalucianTrad. AndaluzaTrad. AndinoTrad. Angl.Trad. AnglaterraTrad. AnglesaTrad. Anglo - NormanTrad. AngolaTrad. Anon.Trad. AntillaisTrad. AppalachianTrad. Ar.Trad. ArabTrad. Arab.Trad. ArabeTrad. ArabicTrad. Arabo AndalouTrad. Arberesh CalabreseTrad. ArgentinaTrad. Argentinine Folk SongTrad. Armen.Trad. ArmeniaTrad. ArmenianTrad. ArmenischTrad. ArménianTrad. ArménienTrad. ArrTrad. Arr.Trad. Arr. BattTrad. Arr. Mike OldfieldTrad. Arr. TrostanTrad. Arr.]Trad. ArrangedTrad. ArrangementTrad. Arrgts.Trad. Art.Trad. AshkenaziTrad. AsturianaTrad. AsturienTrad. AsturiesTrad. Aus KamerunTrad. Aus NeuseelandTrad. Aus TrinidadTrad. Aus UgandaTrad. Aus ZaireTrad. AustraliaTrad. AustrianTrad. AuthorTrad. AuvergnatTrad. Avila Y SalmamancTrad. AymaraTrad. AzerbaidzanTrad. AzeriTrad. AzerjiTrad. B. RaffaelTrad. BGTrad. BahamasTrad. BahamasaaretTrad. BaliTrad. BalkanTrad. Ballad From LorestanTrad. BaluchiTrad. Barzaz BreizhTrad. Bas Du FleuveTrad. BaskischTrad. BasqueTrad. Bearb - Trad. KisuaheliTrad. Beceite-Mas de las Matas (Teruel)Trad. Beio R. TomTrad. BelgianTrad. BelgijaTrad. BelgiëTrad. Belo R. TomTrad. BenedictiTrad. Berbegal (Huesca)Trad. Berner VolksliedTrad. BerryTrad. BesançonTrad. BessarabischTrad. Bew.Trad. BierzoTrad. BingsjöTrad. BjerkreimTrad. Black SpiritualTrad. BluesTrad. BoekarestTrad. BoliviaTrad. BolivianoTrad. BolivienTrad. BosnienTrad. BotswanaTrad. BourbonnaisTrad. BrazilianTrad. BreizhTrad. Bret.Trad. Bret. - An DroTrad. BretagneTrad. Bretagne/BrittanyTrad. BretaniaTrad. BretonTrad. Breton VannetaisTrad. BretoneTrad. BretonischTrad. Bretonsk/Trad. IrskTrad. BritishTrad. Britisk FolketoneTrad. BrittanyTrad. BritánicaTrad. BrésilienTrad. Bréton IrlandaisTrad. Bulg.Trad. BulgareTrad. BulgariaTrad. BulgarianTrad. Bulgarian & Northern France (Late 13th Century)Trad. Bulgarian Dance-song, Shopes RegionTrad. Bulgarian FolkTrad. Bulgarian TuneTrad. Bulgarian, DobrudzhaTrad. Bulgarian, Pirin MountainsTrad. Bulgarian, ShopesTrad. Bulgarian, Shopes RegionTrad. Bulgarian, Thrakia/Sredna GoraTrad. BulgarienTrad. BulgarijeTrad. BulgarischTrad. Bulgarisch/Sharena GaidaTrad. BulgarjenTrad. BurundiTrad. Bådnlåt Fra ValdresTrad. BèlgicaTrad. BéarnTrad. Bön Från Nordamerikas IndianerTrad. Ca. 1600Trad. Ca. 1760Trad. CajunTrad. Cajun TuneTrad. CajunviseTrad. CalabreseTrad. CamilacaTrad. CanadaTrad. CanadianTrad. CanadienseTrad. CanariasTrad. Cancioneiro Casto SampedroTrad. Cantiga InfantilTrad. Capstan-ShantyTrad. Carmina BuranaTrad. CarolTrad. Castilla Y LeónTrad. Castilla Y León, SpainTrad. Castilla Y LéonTrad. CatalanTrad. Catalan FolksongTrad. CatalanaTrad. CatalonianTrad. CatalunyaTrad. Cauri - Val GranoTrad. CelticTrad. Central European TuneTrad. Champsaur - Htes AlpesTrad. ChantTrad. ChassidicTrad. Child 84Trad. Child N. 170Trad. Child SongTrad. Child n. 170Trad. Child n. 78Trad. Children SongTrad. Children's SongTrad. ChileTrad. ChinaTrad. ChineseTrad. Chinese Folk SongTrad. ChinoisTrad. ChlezmerTrad. Christian SvaboTrad. ChuquisaqueñaTrad. Coll.Trad. ColombiaTrad. ColumbiaTrad. CornishTrad. Cornish/BretonTrad. CornuallesTrad. Coro San MarcoTrad. CorseTrad. CoréenTrad. CreoleTrad. CroatianTrad. CubaTrad. CubainTrad. CubanTrad. CubanoTrad. CymruTrad. CzechTrad. Czech.Trad. D.PTrad. D.P.Trad. D.p.Trad. DKTrad. DanceTrad. DanishTrad. Danish after Fin Alfred LarsenTrad. Danish efter Hans Jørgen ChristensenTrad. DanmarkTrad. DanskTrad. Dansk BarneviseTrad. De AvilaTrad. De SoriaTrad. Del Depto. de OruroTrad. Del Depto. de PotosíTrad. DelsboTrad. DenmarkTrad. Denmark / NorwayTrad. DerbyshireTrad. Des Iles HébridesTrad. DeutschTrad. DeutschlandTrad. DevonTrad. Dpto. Folk. Bol.Trad. Drinking SongTrad. Dutch CarolTrad. DänemarkTrad. E. Magnhild AlmhjellTrad. Eastern ArmenianTrad. EbraicoTrad. Ecoss.Trad. EcossaisTrad. EcosseTrad. EcuadorTrad. Ecuador/MilchburgTrad. EcuadorianTrad. EcuardoTrad. EcuatorianaTrad. EcuatorianoTrad. Eft. Anders LindblomTrad. Eft. Barbara OlssonTrad. Eft. Blinkey & The Roadmasters, St. CroixTrad. Eft. Byss-KalleTrad. Eft. Janne SvenskTrad. Eft. Joe Parris & The Hot Shots, St. CroixTrad. Eft. John Bannis, Dominica / St. CroixTrad. Eft. Lasse I TallbackenTrad. Eft. MålarinTrad. Efter Alan KlitgaardTrad. Efter Ceylon WallinTrad. Efter Henry WallinTrad. Efter J. Murdoch HendersonTrad. Efter Marie MideTrad. Efter Rasmus StormTrad. Efter ReventlowTrad. Efter SvaboTrad. Efter William MarshallTrad. EgyptTrad. EgyptiTrad. EgyptienTrad. EireTrad. El SalvadorTrad. Ely UseTrad. EmmentalTrad. EmslandTrad. En FinnoisTrad. Eng.Trad. Engelsk VisaTrad. Engl. JoululauluTrad. EnglandTrad. England 17. Jh.)Trad. England, AustraliaTrad. EnglannistaTrad. EnglantiTrad. Englantil.Trad. EnglishTrad. English / Trad. IrishTrad. English 15 CTrad. English AirTrad. English CarolTrad. English Carol (Greensleeves)Trad. English Carol (Tempus Adest Floridum)Trad. English FolksongTrad. English, Scottish And IrishTrad. EpirusTrad. EscocesaTrad. EscociaTrad. Escocia-AstTrad. EscòciaTrad. EspTrad. Esp.Trad. EspagneTrad. EspagnolTrad. EspanjaTrad. EspanjalainenTrad. EspañolaTrad. EspooTrad. Estados UnidosTrad. EstoniaTrad. EstonianTrad. Estonian-SiberianTrad. Etelä-AfrikkaTrad. Etelä-PohjanmaaTrad. Etelä-SavostaTrad. Eteläamer.Trad. EthiopianTrad. Etter 1600-tallskilder Og Folkelig Overlevering / Trad. After 17th Century Sources And Folk TraditionTrad. Etter Birgit Lund, ValleTrad. Etter G. SlølienTrad. Etter Hanna Moren, TynsetTrad. Etter Hans Gampedalen, HeddalTrad. Etter Nils Solheim, SønderledTrad. Etter Zakarias DøsenTrad. Exeter BookTrad. Exeter-BookTrad. ExtremaduraTrad. ExtremeñaTrad. EíreTrad. FaeroeseTrad. FantiTrad. FanøTrad. Faroe IslandsTrad. FinlandTrad. FinnicTrad. FinnishTrad. Finnish Folk SongTrad. Finnish FolkloreTrad. Finnish National Epic (Kalevala)Trad. FinnlandTrad. FinskTrad. Finsk FolkvisaTrad. FlamencoTrad. FlandersTrad. FlandriaTrad. FlemishTrad. FolcloreTrad. FolkTrad. Folk HymnTrad. Folk SongTrad. Folk. FinnlandTrad. Folk. KolumbienTrad. Folk. SchwedenTrad. Folk. TürkeiTrad. Folk. ÄthiopienTrad. Folkemel.Trad. FolkemelodiTrad. Folkemelodi, HimmerlandTrad. FolketoneTrad. FolkeviseTrad. FolkhymnTrad. Folklig TextTrad. FolksTrad. FolksongTrad. FormTrad. Fornoles y Valderrobles (Teruel)Trad. Fr Gotland/SörmlandTrad. Fra AgderTrad. Fra Banat, RomaniaTrad. Fra BhutanTrad. Fra Etnedal/TelemarkTrad. Fra GransheradTrad. Fra GrungedalTrad. Fra GudbrandsdalenTrad. Fra HallingdalTrad. Fra HornindalTrad. Fra KongenTrad. Fra LollandTrad. Fra LouisianaTrad. Fra LusterTrad. Fra Nes På RomerikeTrad. Fra NittedalTrad. Fra NordlandTrad. Fra Oltenia, RomaniaTrad. Fra RyfylkeTrad. Fra SeljordTrad. Fra SmålandTrad. Fra TransylvaniaTrad. Fra TrøndelagTrad. Fra VinjeTrad. Fra ÅserdalTrad. FranceTrad. FrancesaTrad. Franco-CanadienseTrad. FrankreichTrad. FrankrigTrad. FrankrijkTrad. FrankrikeTrad. Franz.Trad. Franz. WeihnachtsliedTrad. FrançaTrad. FrenchTrad. French & English CarolTrad. French & English Carol (Ding Dong Merrily On High)Trad. French CanadianTrad. French CarolTrad. French Carol MelodyTrad. French FolksongTrad. French MelodyTrad. FribourgeoisTrad. From 1500-centuryTrad. From AfricaTrad. From AmericaTrad. From AustraliaTrad. From BingsjöTrad. From Borge I LofotenTrad. From Burgenland/AustriaTrad. From CataloniaTrad. From ChinaTrad. From EnglandTrad. From EstoniaTrad. From EthiopiaTrad. From FinlandTrad. From Fyn After B. KnudsenTrad. From Fyn, B. KnudsenTrad. From GailtalTrad. From GeorgiaTrad. From Hans JohansenTrad. From Haute BretagneTrad. From HimmerlandTrad. From HiroshimaTrad. From HungaryTrad. From IcelandTrad. From IndiaTrad. From IrelandTrad. From J. MortensenTrad. From JapanTrad. From Jens FrederiksenTrad. From JostedalenTrad. From Karjala/KareliaTrad. From KosovoTrad. From Kresten Nielsen's Music BookTrad. From KurdistanTrad. From MiyagiTrad. From MoldaviaTrad. From MønTrad. From NordlandTrad. From NordmøreTrad. From NorwayTrad. From OreTrad. From Peloponnesos, GreeceTrad. From Piae CantionesTrad. From Piemonte/ItalyTrad. From Puglia/ItalyTrad. From Reventlows Music BookTrad. From SenegalTrad. From SetesdalTrad. From SmålandTrad. From SwabiaTrad. From SwedenTrad. From ThailandTrad. From The 16th CenturyTrad. From The A.P. Berggren CollectionTrad. From The AndesTrad. From The BalkansTrad. From Thy After Karl Skaarup And Viggo Gade, Among OthersTrad. From Thy After Viggo PostTrad. From TibetTrad. From TransylvaniaTrad. From Transylvania [Széki Népdal]Trad. From TrøndelagTrad. From VestfoldTrad. From WalesTrad. From West BengalTrad. From ÅrdalTrad. From Årdal, SognTrad. From ÖisuTrad. From Östergötland]Trad. Frå HordalandTrad. Frå IrlandTrad. Frå KölnTrad. Frå LomTrad. Frå RogalandTrad. Frå TelemarkTrad. Frå ThüringenTrad. Frå VossTrad. Frå ØygardenTrad. Frå Øygarden Og SuldalTrad. FråTelemarkTrad. Från BulgarienTrad. Från GotlandTrad. Från Höga Visan, BibelnTrad. Från LappfjärdTrad. Från Litauen Och LettlandTrad. Från SydafrikaTrad. Från Södra JämtlandTrad. Från Torna HäradTrad. Från TurkietTrad. Från UpplandTrad. Från ÄlvdalenTrad. Fuente Rubielos (Teruel)Trad. FøroyarTrad. G. WilhelmTrad. Ga GhanaTrad. GaelicTrad. Gal.Trad. GalegaTrad. GalicianTrad. GalicienTrad. GallegaTrad. GalloTrad. GalloisTrad. GaloisTrad. GambianTrad. Gangar SetesdalTrad. GaulishTrad. GeorgiaTrad. GeorgianTrad. GermanTrad. German CarolTrad. German SongTrad. German WordsTrad. GersTrad. GhanaTrad. GhanaianTrad. Gipsy SongTrad. GlarusTrad. GoaTrad. GospelTrad. GotlandTrad. Gr.Trad. GranvinTrad. GraubündenTrad. Graus (Huesca)Trad. GrecTrad. GrecanicoTrad. GrecoTrad. GreeceTrad. GreekTrad. Gregorian ChantTrad. Grekisk MelodiTrad. GreklandTrad. GrenlandTrad. GriechischTrad. Grimnismáli Vs 40Trad. GrønlandskTrad. Grønlandsk Mel.Trad. Grønlandsk PolkaTrad. GuadeloupeTrad. GuaraniaTrad. Guerra Civil EspañolaTrad. GuineanTrad. Guinée ForestièreTrad. Guinée-MaliTrad. GypsyTrad. GårdsangerviseTrad. GéorgienTrad. H. SandersTrad. H.P. AdrianTrad. HaitiTrad. HalikkoTrad. Halling TelemarkTrad. Halling-JoronTrad. HallingdalTrad. HalsaTrad. Halyard-ShantyTrad. Hamdouchi (Sufi)Trad. HankasalmiTrad. HassidicTrad. HausjärviTrad. Haut AgenaisTrad. Haut BerryTrad. HaveröTrad. HawaiiTrad. HawaiianTrad. HebreuTrad. HebrewTrad. Hebrew MelodyTrad. HebrideneTrad. HebridesTrad. HechoTrad. HeidalTrad. HellelandTrad. Helsingländ, SwedenTrad. HimmerlandTrad. Himmerland / Rebild SpillemandslaugTrad. Hindu ChantTrad. HollandeTrad. HollandskTrad. HongroisTrad. HornindalTrad. Hung.Trad. HungarianTrad. Hungarian FolksongTrad. Hungarian-RomaniTrad. HungaryTrad. HymnTrad. Hymn From Dalecarlia, SwedenTrad. Hymn.Trad. Hávamál Vs 142, 144Trad. HärjedalenTrad. HärmäTrad. HúngaroTrad. IcelandTrad. IcelandicTrad. Icelandic RímTrad. IerlandTrad. IersTrad. IlomantsiTrad. IndiaTrad. India & AfghanistanTrad. India & TurkeyTrad. IndianTrad. Indian MelodyTrad. Indian TuneTrad. Indiens PimaTrad. IndijskaTrad. InghilterraTrad. InglesaTrad. InstrumentalTrad. Iran, PersischTrad. IrelandTrad. IrischTrad. IrishTrad. Irish "Foggy Dew"Trad. Irish And Irish-AmericanTrad. Irish JigTrad. Irish LullabyeTrad. Irish MelodyTrad. Irish Melody, Arr. RobbinsTrad. Irish ReelTrad. Irish SongTrad. Irish TuneTrad. Irish Tune "Paddy Ryan's DreamTrad. Irish Tune "The Bunch Of Keys"Trad. Irish reelTrad. Irish-AmericanTrad. IriskTrad. Irl.Trad. IrlandTrad. IrlandaTrad. Irlanda/ScoziaTrad. IrlandaisTrad. IrlandeTrad. IrlandesaTrad. IrlandeseTrad. IrlandiaTrad. IrlandzkaTrad. IrlannistaTrad. IrlantiTrad. IrlantilainenTrad. Irlantilainen KansansävelmäTrad. Irländsk FolksongTrad. IrskTrad. Irsk MelodiTrad. Irsk RilTrad. Isl.Trad. IslandTrad. Isle Of ManTrad. IsraelTrad. IsraelitaTrad. It.Trad. Ital.Trad. ItaliaTrad. ItaliainenTrad. Italial.Trad. ItalialainenTrad. ItalianTrad. Italian Folk SongTrad. Italian/SwedishTrad. ItalianaTrad. ItalieTrad. ItalienTrad. Italien, NeapellTrad. ItalienskTrad. ItävaltalainenTrad. IvorianoTrad. JalasjärviTrad. JamaikaTrad. Jap.Trad. JapanTrad. JapaneseTrad. Japanese Folk SongTrad. JapanilainenTrad. JazzTrad. JewishTrad. Jewish FolksTrad. Jewish FolksongTrad. JiddischTrad. Jiddisches LiedTrad. JiddishTrad. JimnaskaTrad. JoikTrad. JokilaaksostaTrad. JolaTrad. Judéo-EspagnolTrad. Jug./Rum.Trad. Juutal.Trad. JørpelandTrad. JüdischTrad. KabukiTrad. KabyleTrad. Kalev.Trad. KannonkoskeltaTrad. KansanlauluTrad. KanteletarTrad. Kanton ZürichTrad. KarelischTrad. Karjal.Trad. KarmøyTrad. KataloniastaTrad. KauhavaTrad. KaustiseltaTrad. Kbh. Ca. 1700Trad. KeniaTrad. KentuckyTrad. KenyaTrad. Keski-RanskaTrad. KeskiaikainenTrad. Keskiaikainen RanskalainenTrad. KetchuaTrad. KhmerTrad. KiinaTrad. Kinderlied Aus JapanTrad. KlezmerTrad. Klezmer (20. Jh.)Trad. Klezmer MacédoineTrad. Klezmer TuneTrad. KoparvikTrad. Koralmelodi Från OrsaTrad. KoreaTrad. KoreanTrad. KorpiselkäTrad. Kortesjärvi Ja EvijärviTrad. KosovoTrad. KurdishTrad. KurdistanTrad. Kuubal.Trad. KuusaluTrad. KvamTrad. LPTrad. La Fresneda (Teruel)Trad. LadinoTrad. LamentoTrad. Lang Menuet From Lolland-Falster No. 171 In DFS 358 / Vald After Ole KjærTrad. LanguedocTrad. LapplandTrad. LapualtaTrad. Late 13th CenturyTrad. Latinalainen AmeikkaTrad. LatvianTrad. Le AbbruzzeseTrad. LeonTrad. LeonesaTrad. LincolnshireTrad. Litauische VoksweiseTrad. LituanoTrad. Londonderry AirTrad. LoppiTrad. Los Monegros (Huesca)Trad. LouisianaTrad. LouisianeTrad. Love SongTrad. Lower-Rhenish FolksongTrad. Lähi-itäTrad. Länsi-Göötanmaa, RuotsiTrad. LærdalTrad. M. Paul GuignerTrad. MacedoneTrad. MacedoniaTrad. MacedonianTrad. MacedonieTrad. MacedonischTrad. MacedoniëTrad. MacédonieTrad. MadagascarTrad. MadeiraTrad. MadrileñaTrad. MagyarischTrad. MakedonienTrad. MalianTrad. MalienTrad. MallorqueTrad. MallorquinaTrad. MandingoTrad. ManninTrad. ManninaghTrad. Manouche From HollandTrad. ManxTrad. MarraquechTrad. MazedonienTrad. MazedonischTrad. Medelpad, Jämtland, Värmland, GästriklandTrad. Medeltida Ballad, DalarnaTrad. Medeltids VisaTrad. Mel.Trad. MelodiTrad. MelodyTrad. MenorquinaTrad. MessicoTrad. MexicainTrad. MexicanTrad. Mexican (Son Jarocho)Trad. Mexican FolksongTrad. MexicanaTrad. MexicanoTrad. MexikanischTrad. MexiqueTrad. MiddelalderTrad. Mme Alida DelhommeTrad. Mme MaumontTrad. MoldaveTrad. MoldaviaTrad. MoldavianTrad. MoldawienTrad. MongoliaTrad. MontañesaTrad. MontserratTrad. MoravianTrad. MordvaTrad. MoroccanTrad. MoroccoTrad. MorvanTrad. MouhijärveltäTrad. MusicTrad. Music: Guinea - AfricaTrad. MustjalaTrad. MuwashshahTrad. MyanmarTrad. N. AmerTrad. N. AmericanTrad. N. ItalyTrad. NamibiaTrad. NaplesTrad. NapoletanoTrad. NarodnaTrad. Native AmericanTrad. Native American MusicTrad. NeapolitanTrad. NederlandTrad. NegroTrad. Negro SpiritualTrad. Negro Spiritual (19. Jh.)Trad. NeuseelandTrad. New Eng.Trad. NicaraguayenTrad. NigeriaTrad. Nigeria, CubaTrad. Nigerian Igbo SongTrad. NivernaisTrad. No "På Jorden Fred Og Glæde"Trad. Non-CopyrightTrad. NoormarkkuTrad. NordiskTrad. NorditalienTrad. NordmøreTrad. NordsjællandTrad. NorgeTrad. Norjalais-ruotsalainenTrad. NorjastaTrad. NormandyTrad. NorskTrad. Norsk FolketoneTrad. Norsk MelodiTrad. Norsk MiddelalderviseTrad. Norsk StevTrad. Norsk StevtoneTrad. Norske StevTrad. Norte PotosiTrad. Norte PotosíTrad. NorteamericanaTrad. North American IndianTrad. North HebridianTrad. NorthumberlandTrad. NorthumbrianTrad. Noruega / Trd. GaliciaTrad. Norw. MelodieTrad. NorwayTrad. NorwegenTrad. NorwegianTrad. Norwegian Folk SongTrad. Norwegian HymnTrad. Noteoppskrift Frå SørlandetTrad. Nouvelle-AngleterreTrad. NubianTrad. NärkeTrad. NépdalfeldolgozásTrad. OaxaquenaTrad. OberwallisTrad. OccitanaTrad. Och Ur Piae CantionesTrad. Of The American IndiansTrad. Ojibaway LullabyTrad. Old EnglishTrad. Old English CarolTrad. Old German TuneTrad. Old Irish AirTrad. Old WelshTrad. Orkney IslandsTrad. Oromogna SongTrad. P. DTrad. P. D.Trad. P.D.Trad. PNGTrad. PakistanTrad. PakistaniTrad. PalentinaTrad. PalestinaTrad. PalestinskTrad. Pantun From MalaysiaTrad. Papua-Uusi-GuineaTrad. Pays BasqueTrad. PerouTrad. PersianTrad. Persion Folk SongTrad. PersischTrad. PeruTrad. PeruvianTrad. Peruvian Mountain Climbing SongTrad. PielisjärveltäTrad. PielisjärviTrad. PiemonteTrad. PiobaireachdTrad. Pios. PrzedmiejskaTrad. PlattdeutschTrad. PoemTrad. Poem By Indian TribeTrad. Poem From KongoTrad. Poems From Indian TribesTrad. PohjanmaaTrad. Pohjois-SavoTrad. Pohjois-SavostaTrad. PolandTrad. PolenTrad. PolishTrad. PolkaTrad. Pols RørosTrad. Polsk From BillingeTrad. Polska SwedenTrad. Pop. PortuguesaTrad. PorruaTrad. Portg.Trad. Portug.Trad. PortugalTrad. Portugalil.Trad. PotosiTrad. ProvenceTrad. ProvençalTrad. PræstøTrad. Psalm 126Trad. Puerto RicoTrad. Pump-ShantyTrad. PunjabiTrad. Puolal.Trad. Puolal. MarssiTrad. Puolal.-venäl.Trad. PérouTrad. Pérou, Région De PunoTrad. Quaker HymnTrad. QuebecoisTrad. QueenslandTrad. Quilombo Do Mato Do TiçãoTrad. QuébecTrad. QuébécoisTrad. RanskaTrad. Ranskal.Trad. RanskalainenTrad. RaumaTrad. ReelTrad. RoemeensTrad. RomTrad. Rom BulgariaTrad. Rom SintiTrad. RomaTrad. Roma RussiaTrad. RomaniaTrad. RomanianTrad. Romany AdaptationTrad. RomsdalTrad. Ront PaganTrad. RouergueTrad. RoumainTrad. RoumainsTrad. RoumanianTrad. Roumanian GypsyTrad. RoumanieTrad. RudlTrad. RumaniaTrad. RumanianTrad. RumenoTrad. RumenskTrad. RumänienTrad. RumänischTrad. Ruotsal.Trad. RuotsiTrad. RuotsistaTrad. RusoTrad. Russ.Trad. RusseTrad. RussiaTrad. RussianTrad. Russian FolksongTrad. RussischTrad. RussiskTrad. Russisk FolkemelodiTrad. RusslandTrad. RussoTrad. RyfylkeTrad. SaharianaTrad. Saint-AlbanTrad. SaksaTrad. SaksastaTrad. SallingTrad. SalmeTrad. SalzburgTrad. Sami YoikTrad. SamoaTrad. Samuel Rinta-Nikkolan NuottikirjastaTrad. SanabriaTrad. SangiovanneseTrad. SanskritTrad. SantanderinaTrad. SarajewoTrad. SardenyaTrad. SaudaTrad. ScandinaviaTrad. ScandinavianTrad. Schlesic MelodyTrad. Schott. VolksweiseTrad. SchottischTrad. SchwabenTrad. SchwedenTrad. Schweden / FinnlandTrad. SchwedischTrad. SchweizTrad. Schweiz und FrankreichTrad. Scotl.Trad. ScotlandTrad. Scott.Trad. ScottichTrad. ScottishTrad. Scottish CarolTrad. Scottish Song Fom The HebridesTrad. Scottish TuneTrad. Scottish/EnglishTrad. Scottish/IrishTrad. Scottish]Trad. ScoziaTrad. Sdr. JyllandTrad. SefardischTrad. SefarditaTrad. SefardíTrad. SegoviaTrad. SegovianaTrad. SenegalTrad. Senegal / Africa SoliTrad. Senegal, The Gambia, GuineaTrad. SephardicTrad. Sephardic (Rhodes)Trad. Sephardic (Turkey)Trad. SephardischTrad. SerbTrad. SerbianTrad. SerbienTrad. SerboTrad. SetesdalTrad. ShabaziTrad. ShakerTrad. Shaker HymnTrad. ShantyTrad. Shephadi (Andalucia)Trad. Shephardi (Balkans)Trad. Shephardi (Bulgaria)Trad. Shephardi (Middle East)Trad. Shephardi (Turkey)Trad. ShetlandTrad. Shyerwandi (Balochi Classical Music)Trad. SiciliaTrad. Sierra LeoneTrad. Sierra Leone SongTrad. SilesianTrad. SirianoTrad. SjællandTrad. SkiffleTrad. SkjoldTrad. SkotlantiTrad. Skotsk FolkemelodiTrad. SkyllingatryckTrad. Skåne, RuotsiTrad. SlavoTrad. SlawonienTrad. SlovakiaTrad. SloveniaTrad. SlovenianTrad. SlowakeiTrad. SmålandTrad. SognTrad. SoldatviseTrad. SomersetTrad. SongTrad. Song From Haute CornouailleTrad. Song In SlovenianTrad. South AfricaTrad. South AfricanTrad. South IndianTrad. Southern Gospel HymnTrad. Southern IndiaTrad. Spain/FinlandTrad. SpanienTrad. SpanischTrad. SpanishTrad. SpiritualTrad. SpiritualsTrad. SpritualTrad. SquareTrad. St DominiqueTrad. St. CroixTrad. StangvikTrad. SteiermarkTrad. StevTrad. Sth AfricanTrad. StmkTrad. Streetsinger HymnTrad. Student SongTrad. StudentenliedTrad. SuaheliTrad. Sud AfricaTrad. SudanTrad. SuecaTrad. SuldalTrad. SunndalenTrad. Suom. SanTrad. Suomal.Trad. SuomalainenTrad. SuomiTrad. Suomi, ÖsterbottenTrad. Surfin'Trad. SussexTrad. SuèdeTrad. SvenskTrad. Svensk Bön För BarnTrad. Svensk MelodiTrad. Svenska JulsångerTrad. SverigeTrad. SwaziTrad. SwedenTrad. Sweden And NorwayTrad. SwedishTrad. Swedish 'Wärmeland Du Sköna'Trad. Swedish Folk SongTrad. Swedish/NorwegianTrad. SwissTrad. SzkocjaTrad. São Miguel Island, Açores, PortugalTrad. SånglekTrad. SætesdalTrad. SénégalaisTrad. Sønderhoning After Peter UhrbrandTrad. Sør-AfrikaTrad. Sør-AmerikaTrad. SüdamerikaTrad. Taalainmaa, RuotsiTrad. Tailka Melody From KenyaTrad. TaiwanTrad. TaiwaneseTrad. TansaniaTrad. Tansania (Gogo)Trad. Tansania (Haya)Trad. Tansania (Iringa)Trad. Tansania (Kidugala)Trad. Tansania (Moshi)Trad. Tansania (Mwika)Trad. Tansania (Nyakyusa)Trad. TanskaTrad. TelemarkTrad. TessinTrad. TextTrad. ThaimaaTrad. ThraceTrad. ThyTrad. TibetTrad. TimeTrad. TirolTrad. TodalenTrad. Toggenburger VoklsweiseTrad. TogolaisTrad. Togolian SongTrad. Tone Fra Vest-AgderTrad. TornionlaaksostaTrad. Torres Strait IslandsTrad. ToscanaTrad. TouaregTrad. Trad.Trad. Transtrand, West Dalecarlia SwedenTrad. Transylvania , RomaniaTrad. Transylvania, RomaniaTrad. TransylvanianTrad. Transylvanian]Trad. TrinidadTrad. Trois-RivièresTrad. Trás-os-Montes PortugalTrad. TuneTrad. Tune From BrittanyTrad. TunisiaTrad. TurcTrad. TurcoTrad. TurkeyTrad. TurkietTrad. TurkishTrad. Turkish TuneTrad. TurqueTrad. Turø Efter AP Bergren, 1869Trad. TuvanTrad. TyrkiskTrad. Tyrkisk KærlighedssangTrad. TyskTrad. Tysk SalmeTrad. Tänze aus St. Gallen und AppenzellTrad. TürkeiTrad. TürkischTrad. U.S. SpiritualTrad. UKTrad. USATrad. UkTrad. UkrainaTrad. UkraineTrad. UkranianTrad. UkranienTrad. UlsterTrad. Um 1820Trad. UngarischTrad. UngarnTrad. UnghereseTrad. UnkarilainenTrad. UnkaristaTrad. UnterengadinTrad. UpplandTrad. Upplanti, RuotsiTrad. Uppt. K P LefflerTrad. UruguayTrad. UsaTrad. VaggvisaTrad. ValencianaTrad. Vallachia , RomaniaTrad. Vallachia, RomaniaTrad. VallisoletanaTrad. Vals Fra SjåkTrad. Vals Frän Norge Efter Hans BrimiTrad. Vandra / MustjalaTrad. VascaTrad. VejleTrad. VenezianischTrad. VenezolanaTrad. VenezolanoTrad. VenezuelaTrad. VenezuelanTrad. VenezuellianTrad. VenäjäTrad. VenäläinenTrad. Vest-RomaniaTrad. VestindienTrad. VimpeliTrad. VindafjordTrad. VisaTrad. Visa Från UpplandTrad. ViseTrad. VlaamsTrad. VlasiTrad. VolksweiseTrad. Väike-PakriTrad. Värmlanti, RuotsiTrad. VästmanlandTrad. Västmanland & DalarnaTrad. WalesTrad. Walisisk Christmas CarolTrad. Wallon.Trad. WaltzTrad. Wedding DanceTrad. WeiseTrad. WelshTrad. Welsh CarolTrad. Welsh FolkTrad. West AfricaTrad. West AfricanTrad. West CountryTrad. Western Country CarolTrad. Whosa/ Etelä-AfrikkaTrad. WolofTrad. WordsTrad. YaraviTrad. YemeniteTrad. YhdysvallatTrad. Yhdysvallat, AppalakitTrad. YiddishTrad. YorubaTrad. Yoruba, NigeriaTrad. YorubanTrad. YougoslaveTrad. YugoslaveTrad. YugoslaviaTrad. YugoslavianTrad. ZaireTrad. ZaïreTrad. ZimbabweTrad. ZuluTrad. Zulu-LiederTrad. Zulu/Etelä-AfrikkaTrad. [Fra Andøya/Rana]Trad. [Fra Andøya]Trad. [Fra Finmark]Trad. [Fra Helgøy]Trad. [Fra Korgen]Trad. [Fra Lofoten]Trad. [Fra Narvik]Trad. [Fra Norland]Trad. [Fra Rana]Trad. [Fra Saltdal]Trad. [Fra Salten]Trad. [Fra Vefsen]Trad. [Fra Vefsn]Trad. [Fra Vesterålen]Trad. [Fryderyk Chopin?]Trad. [Oppnotert Fra Korgen]Trad. [Oppnotert fra Balsfjord]Trad. [Oppnotert fra Dunderlandsdalen]Trad. [Oppnotert fra Ersfjordbotn, Kvaløya]Trad. [Oppnotert fra Ersfjordbotn]Trad. [Oppnotert fra Kattfjord, Kvaløya]Trad. [Oppnotert fra Korgen]Trad. [Oppnotert fra Leknes]Trad. [Oppnotert fra Rana]Trad. [Oppnotert fra Saltdal]Trad. [Oppnotert fra Salten]Trad. [Oppnotert fra Troms]Trad. [Oppnotert fra Ullsfjord]Trad. [Oppnotert fra Velfjord]Trad. [Phillipines]Trad. [Rwanda]Trad. [Scotland]Trad. adaptedTrad. arrTrad. arr.Trad. arr. CasalsTrad. arr. HelloweenTrad. aus ArgentinienTrad. aus BrasilienTrad. aus EnglandTrad. aus England/FrankreichTrad. aus FinnlandTrad. aus FrankreichTrad. aus GhanaTrad. aus HollandTrad. aus IrlandTrad. aus JamaicaTrad. aus JapanTrad. aus NeuseelandTrad. aus RusslandTrad. aus SchwedenTrad. aus SizilienTrad. aus SlowenienTrad. aus SüdafrikaTrad. aus TansaniaTrad. aus den USATrad. aus den USA/EnglandTrad. aus der SchweizTrad. barnesangTrad. bretonTrad. españolaTrad. etter D. InstanesTrad. fra SetesdalTrad. from Des Knaben WunderhornTrad. frå LevangerTrad. frå NordmøreTrad. frå VinjeTrad. gårdsangerviseTrad. lndonesianTrad. musicTrad. noruegaTrad. vom NiederrheinTrad. y Pop. de CastillaTrad. Árabo-AndalusíTrad. ŻydowskaTrad.("Brynhildur Táttur" 14th Century)Trad.,Trad., 18th Century EnglishTrad., AmericanTrad., Andes FolksongTrad., Anon.Trad., Arr.Trad., Aus Sammlung Hanny ChristenTrad., Codes BuranusTrad., Collected DoneganTrad., D.P.Trad., DalarnaTrad., HälsninglandTrad., IrishTrad., MalungTrad., North CarolinaTrad., P.D.Trad., Possibly 16th Century EnglishTrad., Scot.Trad., SicilianTrad., SkaftöTrad., Södra SerbienTrad., SüdchileTrad., arr.Trad., based on a song by O'CarolanTrad.,Arr.Trad.-BibeltextTrad.-D.P.Trad.-RumaniaTrad.-anoniemTrad.-n.n.Trad..Trad...Trad..Arr.Trad./Trad./ Etelä-AfrikkaTrad./(Kisuaheli)Trad./Adapt.Trad./AnonimTrad./ArrTrad./Arr.Trad./BayernTrad./Bearb.Trad./CashTrad./ColombiaTrad./Dansk FolkemelodiTrad./Exceter-BookTrad./Instr.Trad./Ital. VolksweiseTrad./Ital. Volksweise "La Lega"Trad./Jojio/SuckmanTrad./KalevalaTrad./KannmacherTrad./Kannmacher–SchöntgesTrad./LazaridesTrad./NachdichtungTrad./P.D.Trad./Public domainTrad./RusslandTrad./SchiermonnikoogTrad./Spanien/RusslandTrad./Spir.Trad./SpiritualTrad./SuaheliTrad./SwazimaaTrad./UkendtTrad./UnknownTrad./[Kisuaheli]Trad.:Trad.: "Melchiors Rejlænder" & "Rejlænder" From Madvig VilsenTrad.: "No. 6 Waltz" & "No. 5 Waltze" From Anders Christensen, AgerkrogTrad.: "Nr. 1244, Fynsk Polka" From Jens Peter Dam & "Fynbo" From Jens Carl FørbyTrad.: "Nr. 33 Hamborger" From Svenske NilsTrad.: "Nr. 51 Otte Mands Reel, Roskilde" From 358Trad.: "Nr. 93 Seras" & "Nr. 37 Uden Titel" From The Bast BrothersTrad.: "Sekstur På Langs" From Karl Skaarup & "120. Waltz" From Anders Christensen, AgerkrogTrad.: "Tyrolerhopsa I A" From Frederik IversenTrad.: MexikoTrad.Algarve, PortugalTrad.Arapiles, Salamanca, SpainTrad.ArrTrad.Arr.Trad.Arr.HorslipsTrad.Arr.R.Sarc/QuimusTrad.BearbTrad.BrasileTrad.BrétonTrad.BulgarienTrad.EnglishTrad.FrenchTrad.From BaluchistanTrad.GermanTrad.IersTrad.JapaneseTrad.JoikTrad.ManxTrad.MelodiTrad.NorTrad.NorwegianTrad.NÖTrad.Shona/ ZimbabweTrad.SpiritualTrad.Trad.Trad.TurkishTrad.USTrad.UkrainianTrad.VPSTrad.VariantTrad.VolksliedTrad.WelshTrad.aTrad.arrTrad.arr,Trad.arr.Trad.arr.:Trad.etter D. InstanesTrad.song From IndiaTrad.valsTrad.wTrad/ArrTrad/Arr:Trad/DPTrad/DanseviseTrad/Emmaste/EETrad/IrishTrad/Karksi/EETrad/La Patum De BergaTrad/Mustjala/EETrad/NOTrad/USATrad:Trad: (Melodi Fra Ørsta)Trad: BalkansTrad: KlezmerTrad: Nya ZeelandTrad: RebroffTrad: SvenskTrad: arrTrad;Trad; 1600-TaletTrad; EmigrantvisaTrad`TradaTradarr.Tradcional EcuatorianoTraddTradd.Tradd. IddewigTradd. LlydawegTradd. MexicoTradd. NegroaiddTradd.arrTradditionalTraddodiadolTradeTradfitionnelTradiTradi.Tradic.Tradic. MexicanaTradic. SvahiliTradiccionalTradicijskaTradicijska Iz BelgijeTradicijska Iz GradišćaTradicijska MeđimurskaTradicijska Polka, AustrijaTradicinalTradicinisTradicinis Spiričiuelis / Traditional Spiritual (Music)TradicinālaTradicinėTradicinė GiesmėTradicinė Kalėdų Giesmė / Traditional Christmas AnthemTradicinė Lenkų MelodijaTradicinė MelodijaTradicinė Žydų MelodijaTradicioanlTradicionTradicionalTradicional EcuadorTradicional (Alentejo)Tradicional (Beira Baixa)Tradicional (Canción Mapuche)Tradicional (Xota de Mórdomo)Tradicional - Alemania Siglo XVIIITradicional - Dominio PúblicoTradicional / PopularTradicional AfricanoTradicional AfroperuanaTradicional AlemanaTradicional AlemaniaTradicional AlemanyaTradicional AmericanaTradicional AmericanoTradicional Americano (D.P.)Tradicional AndalusíTradicional AndaluzaTradicional AndinoTradicional AnglesaTradicional AngolanaTradicional AnónimoTradicional Anónimo SXVIITradicional ArgentinaTradicional ArgentinoTradicional AsturianaTradicional AsturiesTradicional AustriaTradicional AustriacaTradicional AçorianoTradicional BarrocoTradicional BascaTradicional BereberTradicional BoliviaTradicional BolivianaTradicional BolivianoTradicional BrasileiroTradicional BretanyaTradicional Cambindas Brilhantes De LucenaTradicional Cambindas Brilhares De LucenaTradicional Cambindas De LucenaTradicional CandombléTradicional CapinoteñoTradicional Casares d´ArbasTradicional CatalanaTradicional CatalunyaTradicional Catalunya (Principat)Tradicional CatimbóTradicional CentroamericanaTradicional ChecoslovacaTradicional ChileTradicional ChinêsTradicional Ciranda Em LucenaTradicional Coco De Roda Em LucenaTradicional Cocos De PombalTradicional ColombiaTradicional ColombianoTradicional ColonenseTradicional ComancheTradicional CorsaTradicional CosteñoTradicional CubanaTradicional CántabraTradicional Da Beira BaixaTradicional Da Beira-BaixaTradicional Danza Del CongoTradicional De ArmeniaTradicional De AyacuchoTradicional De CubaTradicional De HuancavelicaTradicional De La PugliaTradicional De La Quebrada De HumahuacaTradicional De OruroTradicional De Salvador De BahiaTradicional De San Pedro De Pirijano (Bolívia)Tradicional De Trás-Os-MontesTradicional De ÁfricaTradicional Del Depto. de La PazTradicional Del Depto. de La Paz*Tradicional Del Depto. de OruroTradicional Del Pacifico ColombianoTradicional Del TirolTradicional Do AlgarveTradicional DominicanoTradicional EcuadorTradicional EcuatorianoTradicional English MelodyTradicional EscocesaTradicional EspanholTradicional EspañolTradicional EspañolaTradicional FinlandesaTradicional FlamencoTradicional Folk SwahiliTradicional Folklore InglesTradicional FrancesTradicional FrancesaTradicional FranciaTradicional FrancésTradicional FrancêsTradicional FrançaTradicional FrnacésTradicional GalegaTradicional GallegaTradicional GaúchoTradicional GnauaTradicional GregorianoTradicional GrčkaTradicional GuaraniTradicional GuayaquileñoTradicional Hawara (Agadir)Tradicional HebraicaTradicional HebreaTradicional IndianaTradicional InfantilTradicional InglaterraTradicional InglaterráTradicional InglesaTradicional InglésTradicional InglêsTradicional InstrumentalTradicional IrlandesaTradicional ItaliaTradicional ItalianaTradicional ItalianoTradicional JaponésTradicional JuremaTradicional KlezmerTradicional KosovoTradicional LagarteraTradicional LapinhaTradicional MallorcaTradicional MallorquinaTradicional MaočaTradicional Mazurca De MonteiroTradicional MejicanaTradicional MejicanoTradicional MexicanaTradicional MexicoTradicional MéxicoTradicional Nord-AmericanaTradicional Norte PotosíTradicional NorteamericanaTradicional OccitaniaTradicional P. D.Tradicional ParadelaTradicional ParaguayTradicional PeruanaTradicional Peruano / BolivianoTradicional PerúTradicional PopularTradicional PortuguesaTradicional ProvençalTradicional RiojanoTradicional RumunijaTradicional RusoTradicional SaharianaTradicional SefardiTradicional SefardíTradicional SicíliaTradicional SrbijaTradicional TarijaTradicional TimorenseTradicional TirolTradicional TupiceñoTradicional TurcaTradicional U.S.A.Tradicional UmbandaTradicional VascaTradicional VenezolanoTradicional VenezuelaTradicional XhosaTradicional YugoslavoTradicional ZuluTradicional [Folk. Aymara - Prov. Tarapacá]Tradicional [Folklore Aymara, Tarapacá]Tradicional da Beira BaixaTradicional de AlosnoTradicional de AsturiasTradicional de BengalaTradicional de CáceresTradicional de IndiaTradicional de MurciaTradicional de Robledo de CorpesTradicional de SanabriaTradicional de SigüenzaTradicional de Trás-Os-MontesTradicional de ValenciaTradicional de dominio públicoTradicional do AlgarveTradicional ÂustriaTradicional ŠpanijaTradicional-Recopilación RoblesTradicional-Recopilado por "Los Soñadores de Sarawaska-Carlos Mejía GodoyTradicional-Recreación: Erwin KrugerTradicional-ŠpanijaTradicional.Tradicional. Basado en la Danza Prima de AsturiasTradicional. Basado en la leyenda de la Serrana de la Vera de Garganta `la OllaTradicional. Basado en Él PINO de AlosnoTradicionalesTradicionales AsturianosTradicionales CántabrosTradicionales PanameñoTradicionales de AragónTradicionales de AsturiasTradicionalisTradicionalnaTradicionalna IndijskaTradicionalna Iz Južne AfriceTradicionalna Iz MeksikaTradicionalna Iz PeruaTradicionalna PesmaTradicionalna Pesma Mađarskih RomaTradicionalna PjesmaTradicionalna Spanish Folk CorridoTradicionalneTradicionalne Narodne Pesme Ruskih RomaTradicionalne Pesme Ruskih RomaTradicionalni Motiv - InstrumentalTradicionalnoTradicionalno Glagoljaško Pjevanje, ŽminjTradicionalsTradicionals CatalanesTradicionauTradicionálTradicionálisTradicionális KatonadalTradicionālaTradicionāla Amerikāņu Ziemassvētku DziesmaTradicionālais TekstsTradicionāliTradicionālsTradiciounauTradiciónTradición de Al-AndalusTradiconálTradictionalTradictionálisTradidicionaTradidional EnglishTradidional Folk SongTradidional P. D.Tradidional SephardicTradidtional SerbianTradiertTradiicionalTradiitionnelTradintionalTradionalTradional Hausa SongTradional Norwegian SongsTradional Old Time Country RagTradional Tibetan PrayersTradional Tune From SetesdalTradionellTradionell Kubansk SångTradionelleTradionnelTradiotional, arr. MoloneyTradiotionnelTradishonalTradisionalTradisional MakyongTradisioneelTradisjonelTradisjonellTradisjonell Eng. FolketoneTradisjonell Skogfinsk RunetekstTradisjonell SlåttTradisjonell Svensk FolketoneTradisjonell Vise Fra TelemarkTradisjonell Visetekst Fra TelemarkTradisjonelleTradisjonelt BarnerimTradisjonsmelodiTraditTradit.Tradit. ItalienTradit. SongTradit. UkrainienTraditcionalTraditioTraditioanlTraditionTradition ArménienneTradition Chantée Suisse AllemandeTradition ChineTradition FolkloriqueTradition HébraïqueTradition LocaleTradition MiliaireTradition OccitaneTradition Of The Saint Ipati MonasteryTradition Or Public DomainTradition Populaire Recueillie Par X.TomasiTradition QuechuaTradition UkraineTradition.Traditional AfricanTraditional Afro-Cuban songTraditional American Indian PoemTraditional "Tarana" SingingTraditional "Tarana" Singing*Traditional ("Mortal Lullabies" From Different Regions Of Russia With Belarusian Ritual Song)Traditional ("Mortal Lullabies" From Different Regions Of Russia With Bulgarian Lyric Song)Traditional ("Mortal Lullabies" From Different Regions Of Russia With Free Retelling Of A Russian Fairy Tale)Traditional ("Mortal Lullabies" From Different Regions Of Russia With Mexican Mushroom Songs)Traditional (18th Century)Traditional (After Nina Simone)Traditional (Amami Folk Song)Traditional (American)Traditional (Amir Kusro)Traditional (Anonymous)Traditional (Armenian)Traditional (Arranged by: Lennon, McCartney, Harrison, Starkey)Traditional (Aus England)Traditional (Austrian Tirol)Traditional (Beginning Of 18th Century)Traditional (Bemba)Traditional (Berlin Trad.)Traditional (Big Rock Candy Mountain)Traditional (Bolivian)Traditional (Bulgarian)Traditional (Catalonia)Traditional (Celtic)Traditional (Child n.170)Traditional (Coventry Carol)Traditional (Czech)Traditional (D.P.)Traditional (Dersim & Erzincan)Traditional (Dersim)Traditional (England)Traditional (Eritrean Liberation Song)Traditional (France)Traditional (From Finland)Traditional (Goral)Traditional (Gregoriano)Traditional (Guinea)Traditional (Haiti)Traditional (House Carpenter)Traditional (India)Traditional (India, Sri Lanka)Traditional (India; Sri Lanka)Traditional (Indonesia)Traditional (Italy)Traditional (Knipper)Traditional (Macedonia)Traditional (Maldives)Traditional (Mexican)Traditional (Moldovan Folklore)Traditional (Moravian)Traditional (Myanmar)Traditional (Narodna)Traditional (Norwegian)Traditional (Nyanja)Traditional (O Bella Ciao)Traditional (O. Wilder)Traditional (Old Russian)Traditional (Platerspil)Traditional (Portugal)Traditional (Primavera)Traditional (Public Domain)Traditional (Roud 3193)Traditional (Russian Traditional Songs Of The Pskov Region Of Russia From The Repertoire Of Olga Sergeeva)Traditional (Russian)Traditional (Scotish)Traditional (Scotland)Traditional (Scottish)Traditional (Slovenian)Traditional (South Africa)Traditional (Spanish Liberation Song)Traditional (Suaheli)Traditional (Swedish Kulning)Traditional (Swedish Song)Traditional (Swedish)Traditional (Tajikistan)Traditional (Thailand)Traditional (Tongan, Kogi, Minandkabou & Latvian)Traditional (USA)Traditional (Ukrainian)Traditional (Unknown Author)Traditional (West country) carolTraditional (Western Province)Traditional (Yiddish)Traditional (from Northumberland)Traditional (from Portugal)Traditional (from Virginia)Traditional - ArabicTraditional - CongoTraditional - FinlandTraditional - FolkTraditional - Folk LoreTraditional - Folk-LoreTraditional - French, 18th CenturyTraditional - GospelTraditional - Latvian FolkTraditional - ManTraditional - Mele Ma'iTraditional - New TestamentTraditional - NorwayTraditional - Old English MelodyTraditional - PortugalTraditional - Scottish PsalterTraditional - South AfricaTraditional - SwedenTraditional - TuvaTraditional - revisedTraditional / Beskid CieszyńskiTraditional / Beskid ŻywieckiTraditional / Civil RightsTraditional / Italian PartisanTraditional / Public DomainTraditional / SuwalskieTraditional 13 CenturyTraditional 14th CenturyTraditional 15th CenturyTraditional 15th Century CarolTraditional 16th Cent FrenchTraditional 16th CenturyTraditional 16th Century English CarolTraditional 16th Century Welsh CarolTraditional 17th Century FrenchTraditional 18th CenturyTraditional 18th Century French SongTraditional 19th Century American MelodyTraditional 19th Century French SongTraditional AboriginalTraditional Aboriginal MusicTraditional AcadienTraditional AdaptationTraditional AfghanTraditional Afghan FolksongTraditional AfghaniTraditional AfricanTraditional African (Malawi)Traditional African (Zimbabwe)Traditional African AmericanTraditional African American Children's SongTraditional African American SongTraditional African American SpiritualTraditional African Folk SongTraditional African MelodyTraditional African SongTraditional African-AmericanTraditional African-American SongTraditional African-American SpiritualTraditional AfrikaTraditional Afro-CubanTraditional Afro-Venezuelan MusicTraditional Afro/CubanTraditional Afrocuban ChantTraditional After Marie MideTraditional AirTraditional Air From County DerryTraditional AireTraditional AlbanianTraditional Albanian Tune From KosovoTraditional AlgerianTraditional AlgonquinTraditional Alpine MelodyTraditional Alsatian RoundTraditional AmericanTraditional American (Shaker Hymn)Traditional American BalladTraditional American Camp Meeting SongTraditional American Cowboy SongTraditional American Folk SongTraditional American Folk TuneTraditional American FolksongTraditional American Game SongTraditional American Indian SongTraditional American LullabyTraditional American MelodyTraditional American Melody / Irish Folk MelodyTraditional American MusicTraditional American SongTraditional American SpiritualTraditional American Street SongTraditional American TuneTraditional American balladTraditional AndalucianTraditional AndalusianTraditional Andalusian Easter a capella chantTraditional Andalusian-TunisianTraditional Anglo-American BalladTraditional AnonymousTraditional Anti-enclosure Nursery RhymeTraditional AppalachianTraditional Appalachian CarolTraditional Appalachian Folk SongTraditional Appalachin CarolTraditional ArabTraditional Arab Andalusian MusicTraditional ArabicTraditional Arabic CarolTraditional Arabic SongTraditional Arabic/MelayuTraditional Arabo-AndalusianTraditional ArmenianTraditional Armenian Folk SongTraditional Armenian LullabyTraditional Armenian Sacred HymnTraditional Armenian SongTraditional Arr.Traditional ArrangedTraditional ArrangementTraditional ArrangementsTraditional ArrangmentTraditional Asian MinorTraditional AssameseTraditional Aus Dem 16. JahrhundertTraditional Aus DüsafrikaTraditional Aus EnglandTraditional Aus LateinamerikaTraditional Aus SalzburgTraditional Aus SüdafrikaTraditional AustraliaTraditional AustralianTraditional AustriacoTraditional AustrianTraditional AvergneseTraditional AymaraTraditional Azerbadjani Folk SongTraditional AzerbaijaniTraditional AzeriTraditional AztecTraditional Back Home In DerryTraditional Bahamian Gospel SongTraditional Bahraini Sea ChantyTraditional BakhtiariTraditional Balkan TuneTraditional BalkanischTraditional BalladTraditional BalladsTraditional Balli Family SongTraditional Bambara Song From Mail, West AfricaTraditional Barbershop TuneTraditional Barzaz BreizTraditional BaskirianTraditional BasqueTraditional Basque CarolTraditional Basque MelodyTraditional Bavarian LullabyTraditional BelarussianTraditional BelgianTraditional Belizean MusicTraditional Belorussian Spiritual VerseTraditional Berber Music (Chaabi) From Atlas AreaTraditional BerberineTraditional Birthing ChantTraditional Black Mass TextsTraditional Black Sea Region SongTraditional Black SpiritualTraditional BluegrassTraditional BluesTraditional Blues SongTraditional Bohemian CarolTraditional BoliviaTraditional BolivianTraditional Bolivian - IndianTraditional BolivienTraditional Bolvian FolkTraditional BoogieTraditional BosnianTraditional BotswanaTraditional BrasilienTraditional BrazilianTraditional Brazilian SongTraditional BressanTraditional BretonTraditional Breton And GalicianTraditional Breton DanceTraditional Breton FolksongTraditional Bri-BriTraditional BritainTraditional BritishTraditional British BalladTraditional Brittany and IrelandTraditional Bukharian SongTraditional BulgariaTraditional BulgarianTraditional Bulgarian - PirinTraditional Bulgarian - RhodopeTraditional Bulgarian - StrandjaTraditional Bulgarian Folk MelodyTraditional Bulgarian Folk TuneTraditional Bulgarian GypsyTraditional Bulgarian MelodyTraditional Bulgarian Mountain SongTraditional Bullfighter's SongTraditional Burgundian CarolTraditional BurmeseTraditional By Henry VIIITraditional By Unknown Finnish SoldierTraditional Byzantine HymnsTraditional C. 1600Traditional CajunTraditional Call-and-Response SongTraditional CalypsoTraditional CambodianTraditional Cameroon SongTraditional Camp SongTraditional CanadianTraditional Canoe Song Of The Conga Tribe From The Belgian CongoTraditional CantalouTraditional CantoneseTraditional Cape BretonTraditional Caribbean SongTraditional Carnatic MelodyTraditional CarolTraditional Carol From FranceTraditional Carol From GermanyTraditional Carol From IrelandTraditional Carol From WalesTraditional Carol In Zulu From South AfricaTraditional CarolsTraditional CarribeanTraditional Castillian And GalicianTraditional CatalanTraditional Catalan CarolTraditional Catalan Folk SongTraditional Catalan FolksongsTraditional Catalan MelodyTraditional Catalan SongTraditional CatalunyaTraditional CaucasianTraditional CelticTraditional Celtic FolkloreTraditional Celtic OriginsTraditional Celtic SongsTraditional CeremonyTraditional Chanson De Croisade Dated 1189Traditional ChantTraditional Chanukah MelodyTraditional Chidren's SongTraditional Chidrens' RhymeTraditional Children's PieceTraditional Children's SongTraditional Childrens SongTraditional ChileanTraditional Chilean Children's Jump-Roping SongTraditional Chilean Folk SongTraditional ChiliTraditional ChineseTraditional Chinese Folk SongTraditional Chinese LullabyTraditional Chinese SongTraditional ChoroTraditional ChristianTraditional ChristmasTraditional Christmas CarolTraditional Christmas Dance From Catalonia, SpainTraditional Christmas MusicTraditional Christmas SongTraditional Church MelodyTraditional Circa 16th Century ScottishTraditional Circa 1900Traditional Circle GameTraditional ColombianTraditional Colombian Folk SongTraditional ColumbiaTraditional CompositionTraditional Composition By ArbëreshTraditional Composition By ArgentinaTraditional Composition By CatalanoTraditional Composition By MessicoTraditional Composition By Romani (Russia)Traditional Composition By SefarditaTraditional CornishTraditional CorrézienTraditional CowboyTraditional Cowboy MelodyTraditional Cowboy SongTraditional CreoleTraditional Creole FolksongTraditional CretanTraditional CroatiaTraditional CroatianTraditional Croatian MelodyTraditional CubanTraditional Cuban MusicTraditional Cuban TumbaoTraditional Cumulative SongTraditional CypriotTraditional Cyprus SongTraditional CzechTraditional Czech MelodyTraditional Daghati SongsTraditional DalarnaTraditional DalmatianTraditional DanceTraditional Dance MelodyTraditional Dance Tune From Sweden, DalarnaTraditional Dance Tune From Voss, NorwayTraditional DanishTraditional Danish MenuetTraditional Danish Three-Part RoundTraditional Dedication PrayerTraditional Del Dept.Traditional Delta BluesTraditional DixielandTraditional DongTraditional DutchTraditional East European Jewish MusicTraditional EasternTraditional EcuadorTraditional EnglandTraditional EnglishTraditional English (18th Cent)Traditional English (18th Century)Traditional English (19th Century)Traditional English (Eighteenth Century)Traditional English (Nineteenth Century)Traditional English 16th CenturyTraditional English 16th Century MelodyTraditional English And Irish CarolTraditional English BalladTraditional English Ballad CarolTraditional English CarolTraditional English Christmas CarolTraditional English Christmas Carol, Author UnknownTraditional English Christmas songTraditional English Folk SongTraditional English FolksongTraditional English LamentTraditional English Late 15th Cen.Traditional English MelodyTraditional English Melody, 16th CenturyTraditional English Riddle SongTraditional English SongTraditional English Song (Medieval Period)Traditional English TuneTraditional English WaitsTraditional English Waits CarolTraditional English West CountryTraditional English carolTraditional English, 15th C.Traditional English, 18th Cent.Traditional English, 18th CenturyTraditional English, Traditional GalicianTraditional English-IrishTraditional English. Irish, Welsh, ScottishTraditional Estonian PoetryTraditional Estonian Runic SongTraditional Estonian TuneTraditional EuropeanTraditional European CarolsTraditional Evening PrayerTraditional Ewe SongTraditional ExemptTraditional Fado SongTraditional FaroeseTraditional Faroese Kingo HymnTraditional Faroese PsalmTraditional Fauré PavanneTraditional Fiddle TuneTraditional Filipino Love SongTraditional FinnishTraditional Finnish Children's SongTraditional Finnish MusicTraditional FlamencoTraditional Flamenco]Traditional FlemishTraditional Flemish & FrenchTraditional FnrechTraditional FolkTraditional Folk AmericanTraditional Folk BalladTraditional Folk GameTraditional Folk HymnTraditional Folk MelodyTraditional Folk MusicTraditional Folk SongTraditional Folk Song Of Chania, CreteTraditional Folk Song Of Unknown OriginTraditional Folk Song of Chania, CreteTraditional Folk SongsTraditional Folk TuneTraditional Folk Tune From F.Y.R MacedoniaTraditional FolksongTraditional FrankreichTraditional FrenchTraditional French BalladTraditional French BalladTraditional French CanadianTraditional French CarolTraditional French ChantTraditional French Folk CarolTraditional French Folk SongTraditional French MelodyTraditional French Minstrel SongTraditional French ProvencialTraditional French ProvincialTraditional French Renaissance BalladTraditional French TuneTraditional French-CanadianTraditional French-Canadian Folk SongTraditional French-Swiss CarolsTraditional From AlbaniaTraditional From ArbëreshTraditional From ArgentinaTraditional From ArmeniaTraditional From ArvanitasTraditional From Asia MinorTraditional From AvaldsnesTraditional From AzerbaijanTraditional From BrittanyTraditional From BukovinaTraditional From BulgariaTraditional From Bulgaria (Eastern Romylia)Traditional From Burkina FasoTraditional From Cabo VerdeTraditional From CatalunyaTraditional From Dodecanese IslandsTraditional From EpirusTraditional From Epirus RegionTraditional From Epirus, SmyrnaTraditional From Far EastTraditional From FranceTraditional From GalizaTraditional From GotlandTraditional From Graduale Aboense, Around XIV-XV Century]Traditional From Greece (Calymnos)Traditional From IndiaTraditional From IsraelTraditional From ItalyTraditional From Kainuu AreaTraditional From Kalotaszeg, TransylvaniaTraditional From KosovoTraditional From LebanonTraditional From LouisianaTraditional From LusterTraditional From MacedoniaTraditional From North Greece, In Slavic IdiomTraditional From NorwayTraditional From Pirin Macedonia, BulgariaTraditional From ReventlowTraditional From RhodesTraditional From RomaniaTraditional From S. Starostin CollectionTraditional From SardiniaTraditional From SealandTraditional From SetesdalTraditional From SmyrnaTraditional From South Italy, In Greek IdionTraditional From SpainTraditional From Spain (Asturia)Traditional From SvaboTraditional From SwitzerlandTraditional From ThailandTraditional From The 1840's FamineTraditional From The Black SeaTraditional From The British IslesTraditional From The CaribbeanTraditional From The HebridesTraditional From The ProvenceTraditional From The Shetland IslandsTraditional From The Šariš RegionTraditional From TurkeyTraditional From USATraditional From Various SourcesTraditional Funeral Song From Senegal, Gambia, GuineaTraditional GaelicTraditional Gaelic AirTraditional Gaelic BlessingTraditional Gaelic CarolTraditional Gaelic MelodyTraditional Gaelic RhymeTraditional Gaelic SongTraditional Gaelic TuneTraditional Gaelic/Irish BlessingTraditional GalicianTraditional GalopaTraditional GambianTraditional Game SongTraditional GaulishTraditional Gaziantep SongTraditional GeorgianTraditional Georgian (kartl-k'akhetian style)Traditional Georgian ChantTraditional Georgian Chant (C. 1250)Traditional Georgian SongTraditional GermanTraditional German / AmericanTraditional German CarolTraditional German ChoraleTraditional German Folk SongTraditional German HymnTraditional German LullabyTraditional German MelodiesTraditional German MelodyTraditional German TuneTraditional GhanaTraditional GhanaianTraditional GnawaTraditional GospelTraditional Gospel BluesTraditional GreeceTraditional GreekTraditional Greek CarolTraditional Greek DanceTraditional Greek Folk SongTraditional Greek Folk songTraditional Greek From Asia MinorTraditional Greek SongTraditional GregorianTraditional GrčkaTraditional Guarani IndianTraditional Guaraní IndianTraditional Guedra ChantTraditional Guinean (African)Traditional Gur'yanTraditional GwabaTraditional GypsyTraditional Haida TribeTraditional HaitiTraditional Halling From SognTraditional HassidicTraditional Hassidic NigunTraditional Haute BretagneTraditional HawaiianTraditional Hawaiian SongTraditional Hebraic Folk TuneTraditional HebrewTraditional Hebrew Folk Song for HanukaTraditional Hebrew MelodyTraditional Hebrew PrayerTraditional HebrideanTraditional HidatsaTraditional HindiTraditional Hindi ChantTraditional HindustaniTraditional Historic Song Of PondosTraditional HongaresaTraditional HonkyokuTraditional HuicholTraditional HungarianTraditional Hungarian BalladTraditional Hungarian Folk MelodyTraditional Hungarian Folk SongsTraditional Hungarian Gypsy MelodiesTraditional Hungarian Gypsy MusicTraditional Hungarian RomTraditional Hungarian TunesTraditional Hungarian balladTraditional HungaryTraditional Huron, QuebecTraditional Huron-CanadianTraditional Huánuco PerúTraditional HymnTraditional Hymn From Dalecarlia SwedenTraditional Hymn From RennebuTraditional Hymn From Vestfold, NorwayTraditional Hymn MelodyTraditional Hymn Melody From Boda, Dalarna, SwedenTraditional IcelandicTraditional IndiaTraditional India HymnTraditional IndianTraditional Indian ChantTraditional Indian Folk SongTraditional Indian HymnTraditional Indian RagaTraditional Inner Mongolian Folk SongTraditional InstrumentalTraditional InuitTraditional IorubaTraditional IranianTraditional IraqiTraditional Iraqi KurdishTraditional Iraqi MelodyTraditional Ireland 19th CenturyTraditional Ireland GaelicTraditional Ireland, NewfoundlandTraditional IrishTraditional Irish AirTraditional Irish Air "The Coolin", TheTraditional Irish AireTraditional Irish And AmericanTraditional Irish And HungarianTraditional Irish BalladTraditional Irish CarolTraditional Irish Dance MusicTraditional Irish DancesTraditional Irish Hymn TuneTraditional Irish JigsTraditional Irish LullabyTraditional Irish LullabyeTraditional Irish MelodyTraditional Irish Melody, St. ColumbiaTraditional Irish PrayerTraditional Irish ReelTraditional Irish SongTraditional Irish SongsTraditional Irish TuneTraditional Irish Tune "The Dingle Regatta"Traditional Irish TunesTraditional Irish*Traditional Irish, 14th C.Traditional Irish, Scottish Or EnglishTraditional Irish/RomanianTraditional Irish/ScottishTraditional IroshTraditional IsawaTraditional IsiZulu/Traditional IsiXhosaTraditional IsraeliTraditional Israeli Folk MelodiesTraditional ItalianTraditional Italian Partisan SongTraditional Italian TuneTraditional ItalianPartisansTraditional ItalienTraditional Jamaica FolkTraditional Jamaican Folk SongTraditional JapanTraditional JapaneseTraditional Japanese Folk SongTraditional Japanese FolksongTraditional Japanese LullabyTraditional Japanese MelodyTraditional Japanese SongTraditional JewishTraditional Jewish And Arabic MusicTraditional Jewish LiturgyTraditional Jewish MelodyTraditional Jewish MusicTraditional Jewish SongTraditional Jiangsu Folk SongTraditional JigTraditional Judeo-SpanishTraditional Judeo-YemeniteTraditional Jug BandTraditional KanonTraditional Khakassian TakhpakhTraditional Khorassan IranTraditional KhorassanianTraditional KievTraditional Kincha Of UmpilaTraditional Kincha Of UutaalnganuTraditional Kincha Of WuthathiTraditional Kincha Of Yuuku Ya'uTraditional KlezmerTraditional Klezmer Jewish SongTraditional Klezmer SongTraditional Klezmer TuneTraditional Kobzar Song (XVII c.)Traditional KongoTraditional KoreanTraditional Korean Folk SongTraditional Korean SongTraditional KotuTraditional KurdishTraditional LadinoTraditional Ladino Folk SongTraditional Ladino PoemTraditional Ladino Song from TurkeyTraditional Ladino romanzaTraditional Lakota ChantTraditional Lakota SongTraditional LandinoTraditional LatinTraditional Latin AmericaTraditional Latin AmericanTraditional Latin HymnTraditional Latin OrdinaryTraditional LatvianTraditional Latvian SongTraditional LebaneseTraditional LemkoTraditional LiberianTraditional LithuanianTraditional Lithuanian/LatvianTraditional Lituanian SongTraditional Lovari MelodyTraditional Lubavitch Chabad NigunTraditional LullabyTraditional LyricsTraditional Lyrics And MusicTraditional Lyrics From The Collection Of A. MaioranoTraditional Lyrics From UrvasteTraditional Lyrics in CornishTraditional MacedonianTraditional Macedonian Folk SongTraditional Macedonian Folk SongsTraditional Macedonian MusicTraditional Macedonian SongTraditional Macedonian Tune ("Berovka")Traditional Macedonian/SerbianTraditional MalianTraditional ManxTraditional Manx AirTraditional Manx Air [Moghrey Laa Boaldyn]Traditional Manx And TranssylvanianTraditional Manx CarolTraditional Manx GaelicTraditional Manx TuneTraditional MaoriTraditional Mapuche PrayerTraditional MaterialTraditional MauritianTraditional MedleyTraditional MelodyTraditional Melody From AfricaTraditional Melody From Hordaland, NorwayTraditional Melody From LevangerTraditional Melody From Valdres, NorwayTraditional Melody Of Ionian IslandsTraditional MexicanTraditional Mexican Folk SongTraditional MiaoTraditional MirandêsTraditional Mogolian SongTraditional MoldavianTraditional Moldavian And IrishTraditional Mongolian SongTraditional Montenegrin ChantTraditional MoorishTraditional MoravianTraditional MoroccanTraditional Morocco-AndalusianTraditional MotifTraditional MuashahTraditional MusicTraditional Music (Tahiti)Traditional Music (Zimbabwe)Traditional Music Of BurundiTraditional Music Of Shona, Zimbabwe, TheTraditional Music of BurundiTraditional Musicians, BaliTraditional MéxicoTraditional NTraditional NZ FolkTraditional Native AmericanTraditional Native American MedicineTraditional Native Of AmericaTraditional NavajoTraditional NeapolitanTraditional NegroTraditional Negro Christmas SpiritualTraditional Negro MelodyTraditional Negro SpiritualTraditional NetherlandsTraditional New Zealand Moari LullabyTraditional NewfoundlandTraditional Newfoundland Folk SongTraditional Ngoni SongTraditional NignTraditional NordicTraditional NormandyTraditional NorseTraditional North Louisiana String BandTraditional Northeaster Thai MelodyTraditional NorthumbrianTraditional NorwegianTraditional Norwegian Folk SongTraditional Norwegian Folk Song From Sunnmøre]Traditional Norwegian FolksongTraditional Norwegian Folksong From TelemarkTraditional Norwegian Hardanger Fiddle TunesTraditional Norwegian Hardangerfiddle-TunesTraditional Norwegian HymnTraditional Nova ScotiaTraditional Nursery RhymeTraditional Nursery SongTraditional OccitanTraditional Occitan (Hymn Of The Cathars)Traditional Odessa SongTraditional OkinawaTraditional Old English CarolTraditional Old English Folk SongTraditional Old Scotch SongTraditional Old WelshTraditional Old Welsh CarolTraditional Or Public DomainTraditional Oriental Jewish HymnTraditional OriginTraditional Orisha SongTraditional Orkney, ScotlandTraditional Orthodox Liturgy-Republic Of GeorgiaTraditional P. D.Traditional P.D.Traditional PDTraditional Pakistani KyrieTraditional PalestinianTraditional Palestinian SongTraditional Paragayan GalopaTraditional ParaguayanTraditional PersianTraditional PeruTraditional PeruvianTraditional Peruvian CarolTraditional Peruvian FolksongTraditional Phrases From KoheletTraditional PieceTraditional Pilgrim Song, c.900Traditional PiobaireachdTraditional PlainsongTraditional Play SongTraditional Pokut SongTraditional PolishTraditional Polish CarolTraditional Polish Christmas CarolTraditional Polish DanceTraditional Polonaise After The Repertoire Of Johannes Bryngelson, Sexdrega, VästergötlandTraditional PolsdanceTraditional Polska From The Repertoire Of Olof Andersson, Eda, VärmlandTraditional Polynesian (Tahiti)Traditional Polynesian (Tonga)Traditional Popular Lyrics From SalentoTraditional Popular Russian SongTraditional Popular SongTraditional PortugalTraditional PortugueseTraditional Portuguese (B. Alta)Traditional PrayerTraditional Pre Columbian FanfareTraditional Protest SongTraditional ProvencalTraditional ProvenceTraditional ProvençalTraditional ProvençeTraditional Public DomainTraditional Puerto RicanTraditional PugliaTraditional QuakerTraditional Quan HoTraditional QuébecTraditional RagaTraditional Rajasthani & AssameseTraditional Reel And SlideTraditional ReinlenderTraditional Religious TuneTraditional RepertoireTraditional Repertoire Of BrittanyTraditional Revolutionary SongTraditional RhymeTraditional Rhythms Of AndaluciaTraditional Rio SambaTraditional RomTraditional Romanceiro, PortugalTraditional RomaniTraditional Romani (Gypsy)Traditional RomanianTraditional Romanian FolkTraditional Romanian SongTraditional Romanian Tune From Oltenia RegionTraditional Romanian Tune From Transylvanian RegionTraditional Romanian Tune In Style Of "Doina"Traditional RoumanianTraditional Roumanian Folk PoemTraditional RoundTraditional Round From EnglandTraditional Round From GermanyTraditional Round from FranceTraditional RumanianTraditional Rumanian CintecTraditional RuskaTraditional Russia SongTraditional RussianTraditional Russian Folk MelodiesTraditional Russian Folk SongTraditional Russian Folk TuneTraditional Russian FolksongTraditional Russian GipsyTraditional Russian GypsyTraditional Russian MelodyTraditional Russian SongTraditional Russian Spiritual VerseTraditional Russian VerseTraditional Russian folk songTraditional S. AfricaTraditional Sami YoikTraditional SamoanTraditional Samoan SongTraditional Sana'ani MelodyTraditional SanabriaTraditional SanskritTraditional SanteriaTraditional SardegnaTraditional SardinianTraditional Sardinian Chant For TenorsTraditional School PoetryTraditional SchwedischTraditional Scicilian MelodyTraditional Scotch MelodyTraditional ScotlandTraditional Scots LullabyTraditional Scots RhymeTraditional Scots SongTraditional Scots TuneTraditional ScottishTraditional Scottish / BorderTraditional Scottish / Irish SongTraditional Scottish AirTraditional Scottish And FrenchTraditional Scottish BalladTraditional Scottish Folk SongTraditional Scottish GaelicTraditional Scottish JigTraditional Scottish MelodyTraditional Scottish Or Irish Song (Depending On Whom You Ask)Traditional Scottish PoemTraditional Scottish ReelTraditional Scottish SongTraditional Scottish Song - XVIIth CenturyTraditional Scottish TuneTraditional Scottish Walking SongTraditional Scottish, Also Sung In IrelandTraditional Sea ChanteyTraditional Sea ShantyTraditional Sefardi From XVI CenturyTraditional SephardicTraditional Sephardic / LadinoTraditional Sephardic Folk SongTraditional Sephardic SongTraditional SephardischTraditional SerbianTraditional Serbian From KosovoTraditional Serbian Tune From VranjeTraditional Serbian/RomanianTraditional Sevdah Tune From Bosnia & HerzegovinaTraditional Shaker HymnTraditional ShetlandTraditional Shetland IslandsTraditional SicilianTraditional Sierra Leone SongTraditional Singing GameTraditional Singing Game From IrelandTraditional Singing RhymeTraditional SlavonicTraditional SlovakTraditional SlovenianTraditional Slovenian-Bela Krajina (Kolednica)Traditional Slow AirTraditional Social SongTraditional Sofi SongTraditional SomersetTraditional SongTraditional Song From BeninTraditional Song From BrazilTraditional Song From EnglandTraditional Song From EthiopiaTraditional Song From FranceTraditional Song From FunenTraditional Song From Guinea, West AfricaTraditional Song From GujaratTraditional Song From KareliaTraditional Song From South VietnamTraditional Song From Southeastern SerbiaTraditional Song From Southern RussiaTraditional Song From The North Of ItalyTraditional Song From The United StatesTraditional Song From ZealandTraditional Song Of IndiaTraditional Song Of SkyrosTraditional Song Of The AuvergneTraditional Song from AfricaTraditional Song from RussiaTraditional SongsTraditional Songs Form The Vlach Villages Of Central PindosTraditional Songs From RajasthanTraditional SourcesTraditional South AfricaTraditional South AfricanTraditional South African Bantu SongTraditional South African Folk SongTraditional South African SongTraditional South IndianTraditional South Indian CompositionTraditional South ItalyTraditional Southern ItalyTraditional Southern LullabyTraditional Southern Thai MelodyTraditional SpanishTraditional Spanish AirTraditional Spanish CarolTraditional Spanish Dance CarolTraditional Spanish Folk MelodyTraditional Spanish MelodyTraditional Spanish SongTraditional Spanish Song Of The Sephardic JewsTraditional Spanish VillancicoTraditional SpiritualTraditional Spiritual SongsTraditional SpiritualsTraditional SpritualTraditional Street RhymeTraditional Student SongTraditional Sufi Song From SindhTraditional SufimusicTraditional Suifmusic, Traditional Jewish MusicTraditional SwedishTraditional Swedish Folk MelodyTraditional Swedish Folk SongTraditional Swedish Folk TuneTraditional Swedish FolksongTraditional Swedish HymnTraditional Swedish MelodyTraditional Swedish SongTraditional Swedish TuneTraditional SwissTraditional Swiss Folk SongTraditional SyrianTraditional Syrian SongTraditional Tanzanian ChantTraditional TartarstanTraditional TebeTraditional TetuaneanTraditional TextTraditional TextsTraditional ThaiTraditional ThaylandTraditional The Fields Of AthenryTraditional ThemeTraditional Thessaloniki SongTraditional Throat SongTraditional ThuringiaTraditional TibetanTraditional Tibetan PrayersTraditional TraditionalTraditional TrollishTraditional TsimshianTraditional TuneTraditional Tune (Skillingsvise) From NorwayTraditional Tune From Aurskog, Akershus, NorwayTraditional Tune From DrevjaTraditional Tune From Hordaland, NorwayTraditional Tune From NorwayTraditional Tune From RomaniaTraditional Tune From ScotlandTraditional Tune From SerbiaTraditional Tune From Sogn, NorwayTraditional Tune From The NetherlandsTraditional Tune from ScotlandTraditional TunesTraditional Tunesian SongTraditional Tunisian Folk SongTraditional Turki MelodyTraditional TurkishTraditional Turkish DanceTraditional Turkish FolkTraditional Turkish Folk SongTraditional Turkish MusicTraditional Turkish Smirne SongTraditional Turkish SongTraditional Turkish SongsTraditional TurkmenistaniTraditional TuvanTraditional U.S.A.Traditional USATraditional Ugandan Amadinda SongTraditional UkraineTraditional UkrainianTraditional Ukrainian CarolTraditional Ukrainian FolkloreTraditional Ukrainian LullabyTraditional Ukrainian SongTraditional Ukrainian SongsTraditional Ukrainian/CanadianTraditional Ukranian CarolTraditional UmbriaTraditional UzbekTraditional VaiTraditional Val ResiaTraditional ValaisanTraditional ValencianTraditional Valli Del NatisoneTraditional VenetianTraditional VenezeulanTraditional VenezuelanTraditional Venezuelan Folk SongTraditional Venezuelan PieceTraditional Venezuelan VillancicoTraditional VersionTraditional Version - Catalan - 16th CenturyTraditional Version Catalan, 16th CenturyTraditional Version Catalan. 16th CenturyTraditional Version · Catalan · 16th CenturyTraditional Version • Catalan • 16th CenturyTraditional Version. Catalan 16th CenturyTraditional Viennese 17th CenturyTraditional VietnameseTraditional VillancicoTraditional VoroneiTraditional WabanakiTraditional WaltzTraditional Waltz From LæsøTraditional Wedding Tune From Vik, Sogn, NorwayTraditional Welch HymnTraditional WelshTraditional Welsh AirTraditional Welsh CarolTraditional Welsh Folk SongTraditional Welsh Gift Giving SongTraditional Welsh HymnTraditional Welsh Hymn MelodyTraditional Welsh LullabyTraditional Welsh MelodyTraditional Welsh SongTraditional Welsh TuneTraditional Welsh [Carol]Traditional West African Folk Tune From The Malinke RepertoarTraditional West African MaliTraditional West IndianTraditional West Indian MelodyTraditional West Indian Sea ShantyTraditional West Indies CarolTraditional Witchcraft FormulaTraditional Words From The Fishing Songs From PalestineTraditional WorkTraditional XVI CenturyTraditional XhosaTraditional Xhosa SongTraditional XẩmTraditional YemeniteTraditional Yemenite JewishTraditional Yemenite SongTraditional YemneniteTraditional YiddishTraditional YorkshireTraditional Yoruba ChantTraditional Yoruba, NigeriaTraditional YugoslavianTraditional Yugoslavian Beer Drinking SongTraditional Zen MeditationTraditional ZimbabweanTraditional ZuluTraditional ["Balada Lui Lancu Jianu" Romanian Traditional Song 19th c.]Traditional [19th Century Ukrainian Carol]Traditional [African]Traditional [Algeria]Traditional [American Anthem]Traditional [American Folk Hymn]Traditional [American Folk Melody]Traditional [Ancient Melody]Traditional [Angol Népdal]Traditional [Arabo-Andalou]Traditional [Armenian]Traditional [Av Harahamim]Traditional [Axi]Traditional [Balinese]Traditional [Bolivian]Traditional [Brasil]Traditional [Breton]Traditional [Brittany]Traditional [Byzantine Chant]Traditional [Catalan Traditional]Traditional [Catalan]Traditional [Catalonia]Traditional [Chassidic Melody]Traditional [China]Traditional [Chippewa-Cree]Traditional [Corse]Traditional [Crete]Traditional [Croatian Traditional Song]Traditional [Cumbia]Traditional [Divinum Mysterium]Traditional [Dél-amerikai Népdal]Traditional [Eire]Traditional [English Melody]Traditional [Finnish]Traditional [Folk Allemand]Traditional [Folk Français]Traditional [Folk Suisse]Traditional [Folk]Traditional [French Carol]Traditional [From The Lipovan Old Believers Tradition]Traditional [Galicia]Traditional [Greek]Traditional [Haitian]Traditional [Hapa Haole]Traditional [Hasid Melodies]Traditional [Icelandic Folksong]Traditional [Imbabura - Ecuador]Traditional [Iraq]Traditional [Ireland]Traditional [Irish]Traditional [Klezmer]Traditional [Korean]Traditional [Macedonian]Traditional [Medieval Midras Literature]Traditional [Mexican Folk]Traditional [Moldavian]Traditional [Mongolian]Traditional [Morocco]Traditional [Myanmar]Traditional [Numbers 6:24-26]Traditional [Palestine]Traditional [Prayer from the 7–11th CenturiesTraditional [Presumed Traditional]Traditional [Region Of Chermignon]Traditional [Romanian Traditional Song 19th c.]Traditional [Russian Traditional Themes]Traditional [Scotland]Traditional [Scottish & Irish]Traditional [Sengalese]Traditional [Slovačka Narodna]Traditional [Solomon Islands]Traditional [Source Unknown]Traditional [Spiritual]Traditional [Swedish Folk Song]Traditional [Tradicionalne Narodne Pesme Ruskih Roma]Traditional [Traditional Hebrew Melody]Traditional [Traditional Irish Melody]Traditional [Tunisia]Traditional [Turkish]Traditional [Ueda School]Traditional [Ukrainian]Traditional [Unetanne Tokef]Traditional [Unter Verw. E. Russ. Volksweise]Traditional [Uygur Folk Music]Traditional [reworked]Traditional de TiranaTraditional de VenezuelaTraditional do Sul de AngolaTraditional female songs, from the Ngazidja heritageTraditional from AndaluzTraditional from Basque-CountryTraditional from BrasilTraditional from BrittanyTraditional from ChileTraditional melodyTraditional music of KazakhstanTraditional poemTraditional songs from ProvenceTraditional İstanbul SongTraditional(népdal)Traditional, 16-17. JahrhundertTraditional, AnariasTraditional, AndalusiaTraditional, Asia Minor GreekTraditional, AsturiasTraditional, Aswan-EgyptTraditional, Basque Country / EuskadiTraditional, BrazilTraditional, BretagneTraditional, CastileTraditional, CataloniaTraditional, CyprusTraditional, EnglishTraditional, ExtremaduraTraditional, FranceTraditional, From SetesdalTraditional, GaeliqueTraditional, GaliciaTraditional, ItalyTraditional, Kimolos GreeceTraditional, KoreaTraditional, LebanonTraditional, MacedoniaTraditional, MallorcaTraditional, Melodie PopulaireTraditional, Mexico, Around 1920.Traditional, NativeTraditional, North MacedoniaTraditional, Okinawa, JapanTraditional, Originally From FranceTraditional, ParaguayTraditional, Public DomainTraditional, RussianTraditional, SalamancaTraditional, SantanderTraditional, ScottishTraditional, SpainTraditional, SwedenTraditional, Thrace GreeceTraditional, Tsugaru, JapanTraditional, TunsiaTraditional, U.K.Traditional, USATraditional, UkraineTraditional, Unknown SoldierTraditional, VenezuelaTraditional, VietnamTraditional-Brittany, WalesTraditional-EnglandTraditional-IrelandTraditional-Kentucky Miners SongTraditional-SwissTraditional-ThailandTraditional-USATraditional-UnknownTraditional-VenezuelaTraditional. AnonTraditional. Polska From Seglora, VästergötlandTraditional/ Public DomainTraditional/AmericanTraditional/AustriaTraditional/CollectedTraditional/EnglandTraditional/French HymnTraditional/GermanyTraditional/JewishTraditional/Public DomainTraditional/SpiritualTraditional/UnknownTraditional/VietnameseTraditional: Al-AndalusTraditional: EstoniaTraditional: Italy, 14th Cent.Traditional: Moravian folk songTraditional: PolishTraditional: SpiritualTraditional: West AfricaTraditional: YiddishTraditional:RussianTraditional?TraditionalBosnianTraditionaleTraditionale KinderliederTraditionalinenTraditionallTraditionallyTraditionalnaTraditionalneTraditionalsTraditioneelTraditioneel EngelsTraditioneel FrankrijkTraditioneel HongaarsTraditioneel IndonesischTraditioneel ItaliaansTraditioneel RoemeensTraditioneel RussischTraditioneel VlaamsTraditionelTraditionel (Amanda Fra Haugesund)Traditionel Amerikansk FolkesangTraditionel AntillaisTraditionel CatholiqueTraditionel Dansk Musik Før 1760 Efter Rasmus Storm Og Brødrene BastTraditionel De La MontagneTraditionel Svensk FolkeviseTraditionel Tzigane RusseTraditioneleTraditionele Muziek Uit VlaanderenTraditionellTraditionell (2. Jhdt.)Traditionell Afrikansk VaggvisaTraditionell Aus Dem EnnstalTraditionell Aus Der SchweizTraditionell Aus England Und WalesTraditionell Aus GeorgienTraditionell Aus IrlandTraditionell Aus MexikoTraditionell Aus TschechienTraditionell EnglischTraditionell Från BohuslänTraditionell IslandTraditionell ItalienTraditionell LekvisaTraditionell MelodiTraditionell Negro SpiritualTraditionell NiederlandeTraditionell NorwegenTraditionell RusslandTraditionell SchwedenTraditionell SephardischTraditionell StubbTraditionell UkraineTraditionell UngarischTraditionell VisaTraditionell ZuluTraditionell aus der BretagneTraditionell, MazedonienTraditionell/VolksweisenTraditionell: SizilienTraditionell?Traditionella Låtar Från SverigeTraditionelleTraditionelle CatalaneTraditionelle De La GruyèreTraditionelle GrecqueTraditionelle Jüdische GrußformelTraditionelle SongsTraditionelle VénézuélienneTraditioneller TanzTraditionellesTraditionelles LiedTraditionelles Tanzstück, MakedonienTraditionelles VolksliedTraditionelles französisches TanzstückTraditionellt LekrimTraditionelsTraditioneltTraditionnalTraditionnelTraditionnel Berry - Traditionnel MorvanTraditionnel De TanzanieTraditionnel (Grégorien)Traditionnel (Irlande)Traditionnel (Japon)Traditionnel (Lira Sacra)Traditionnel (Millien)Traditionnel (P.A.I.)Traditionnel (Pays Basque)Traditionnel (Russie)Traditionnel - AlbanieTraditionnel - MartiniqueTraditionnel - RussieTraditionnel - SardaigneTraditionnel - TunisieTraditionnel AfricainTraditionnel AllemandTraditionnel AlsacienTraditionnel AméricainTraditionnel AnatoliTraditionnel Anatolie: ElazığTraditionnel AnglaisTraditionnel AnonymeTraditionnel AntillaisTraditionnel ArabeTraditionnel ArdècheTraditionnel ArménienTraditionnel AutrichienTraditionnel AuvergneTraditionnel AymaraTraditionnel BasqueTraditionnel BerryTraditionnel BourguignonlTraditionnel BretonTraditionnel BrésilienTraditionnel BulgareTraditionnel BulgarieTraditionnel C14Traditionnel CajunTraditionnel CamerounaisTraditionnel CanadienTraditionnel CorseTraditionnel CréoleTraditionnel CubaTraditionnel CubainTraditionnel D'EcosseTraditionnel De Guinée MaritimeTraditionnel Du Sud De La SyrieTraditionnel EgyptienTraditionnel EquateurTraditionnel EspagnolTraditionnel Europe CentraleTraditionnel Franc-ComtoisTraditionnel FrançaisTraditionnel Gavotte De FouesnantTraditionnel GrecTraditionnel GrèceTraditionnel HassidiqueTraditionnel HebraïqueTraditionnel IrlandaisTraditionnel IsraelienTraditionnel JuifTraditionnel KabyleTraditionnel KlezmerTraditionnel LadinoTraditionnel LatinTraditionnel LibanaisTraditionnel Littéraire D.P.Traditionnel LiturgieTraditionnel Lux.Traditionnel MacédoineTraditionnel MalienTraditionnel MaoriTraditionnel MartiniquaisTraditionnel MexicainTraditionnel Mexico '40Traditionnel MorvanTraditionnel Negro SpiritualTraditionnel NiçoisTraditionnel NoumacheTraditionnel OccitanTraditionnel Orthodoxe RusseTraditionnel Pach-piTraditionnel Pavé de CarnacTraditionnel PeruTraditionnel Poésie Nabatéenne Du Djebel DruzeTraditionnel ProvençalTraditionnel PuglieseTraditionnel PérouTraditionnel PéruvienTraditionnel QuébecTraditionnel QuébécoisTraditionnel RarotongaTraditionnel RidéeTraditionnel RomanèsTraditionnel RoumainTraditionnel RoumaineTraditionnel RoumanieTraditionnel RusseTraditionnel Rébetico grec.Traditionnel RéunionnaisTraditionnel Révolutionnaire KabyleTraditionnel SavoieTraditionnel SongTraditionnel Sur La Lettre Du GabierTraditionnel SuédoisTraditionnel SyrienTraditionnel TogolaiseTraditionnel TouaregTraditionnel TraditioneelTraditionnel TrégorroisTraditionnel TurcTraditionnel TurquieTraditionnel TziganeTraditionnel Tzigane GrecTraditionnel VanetaisTraditionnel VannetaisTraditionnel Via Crucis (Lira Sacra) NebbiuTraditionnel YiddishTraditionnel [Hengounel A Vro Gembre]Traditionnel [Hengounel]Traditionnel albanaisTraditionnel anonymeTraditionnel créole haitienTraditionnel d'AlagoesTraditionnel de BaliTraditionnel de Bergsjö / HälsinglandTraditionnel de Haute-SavoieTraditionnel de L'Ile de ManTraditionnel de SkåneTraditionnel de ThailandeTraditionnel italienTraditionnel mexicainTraditionnel portugaisTraditionnel russeTraditionnel tziganeTraditionnel vénézuélienTraditionnel ÉcossaisTraditionnel ÉcosseTraditionnel ÉpireTraditionnel écossaisTraditionnel, BanatTraditionnel, CalabreTraditionnel, Chant D'Amour Traditionnel Du Pays BasqueTraditionnel, FiuggiTraditionnel, LombardieTraditionnel, MoldavieTraditionnel, MunténieTraditionnel, OlténieTraditionnel, PouillesTraditionnel, RoumanieTraditionnel, SicileTraditionnel, TransylvanieTraditionnel, VénétieTraditionnel-folkloreTraditionnel/TraditionalTraditionnelTraditionnelTraditionneleTraditionnellTraditionnelleTraditionnelle EcosseTraditionnelle Franc-ComtoisTraditionnelle RusseTraditionnelle Tsigane RusseTraditionnelle YiddishTraditionnellesTraditionnelsTraditionnels de SavoieTraditionnels de Savoie et QuébecTraditionnnelTraditionsmarsch Der Ehem. 8. JägerTraditionálTraditonal MelodyTraditonal SyrianTraditonal Waltz From FinnskogenTraditonal [Korean]TraditonnelTraditsionaalTraditsionaal AudrustTradittionelTradizTradiz.Tradiz. - Elab.Tradiz. JugoslavoTradiz. MacedoneTradiz. SefarditaTradiz. Serbo E YiddishTradiz. YiddishTradizionalTradizionalaTradizionaleTradizionale EbraicoTradizionale - Folk SwahiliTradizionale AfricanoTradizionale AnonimoTradizionale AnticoTradizionale ArmeniaTradizionale BrasilianoTradizionale BretoneTradizionale CalabreseTradizionale CalabroTradizionale CineseTradizionale Coro A.N.A.Tradizionale CorsoTradizionale Del MediterraneoTradizionale Dell' Appennino BologneseTradizionale Di SenegheTradizionale EbraicoTradizionale EmilianaTradizionale EtiopeTradizionale Fine '800Tradizionale FinlandeseTradizionale FranceseTradizionale FriulanoTradizionale GalleseTradizionale GallureseTradizionale GiapponeseTradizionale IngleseTradizionale IrlandeseTradizionale IrlaneseTradizionale IsraelianoTradizionale ItalianoTradizionale KlezmerTradizionale KurdistangTradizionale LogudoreseTradizionale MacedoneTradizionale NapoletanoTradizionale NorvegeseTradizionale P. D.Tradizionale P.D.Tradizionale PiemonteseTradizionale Popolare Di Motte MontecorvinoTradizionale Popolare Di Pietra MontecorvinoTradizionale PortogheseTradizionale PuglieseTradizionale SacroTradizionale SerboTradizionale SicillianoTradizionale SveziaTradizionale TedescaTradizionale TedescoTradizionale ToscanoTradizionale UmbroTradizionale UnghereseTradizionale giapponeseTradizionaliTradizionali SacriTradizionalie Bulgaro RelaboratoTradizione PopolareTradizione PuglieseTradizione del Trallallero GenoveseTradiziunalTradiziunaleTradiçãoTradičná Anglická KoledaTradičníTradiční Anglická BaladaTradiční Moravská Lidová PíseňTradiţionalTradiţional CatalanTradiţional EnglezTradiţional NapolitanTradiționalTradițional AmericanTradițional CatalanTradițional EnglezTradițional NapolitanTradițional RomânescTradițional SicilianTradiționalaTradiționaleTradiționalăTradițională SârbeascăTradițonaTradițonalTradl.TradoddiadolTrads.Tradt.TradtionalTradtional BasqueTradtional Cajun SongTradtionnelTraducionalTradycTradyc.TradycjaTradycja (Świecka)TradycjonałTradycyjnaTradycyjna AmerykańskaTradycyjna Ballada OkupacyjnaTradycyjna Melodia NorweskaTradycyjna Melodia TatarskaTradycyjna Melodia Z PodhalaTradycyjna Muzyka LudowaTradycyjna Pieśń Biesiadna, Autor NieznanyTradycyjna Pieśń BrytyjskaTradycyjna Pieśń IrlandzkaTradycyjna Pieśń RosyjskaTradycyjna Pieśń UkraińskaTradycyjna Pieśń Z BiałorusiTradycyjna Pieśń Z PodlasiaTradycyjna Pieśń Z UkrainyTradycyjna Polska Pieśń KawaleryjskaTradycyjna irlandzka kolęda "Christmas in the old man's hat"TradycyjneTradycyjne (XVI-XIX w.)Tradycyjne Z Elementami WspółczesnymiTradycyjnieTradycyjnyTradycyjny/TraditionalTradycyjnychTradycykny Utwór RosyjskiTrad´.Tradícional PanameñaTradícionálisTradítíonalTradționalTrad‘lTraf.Trafn.Trag.TraitionalTrandTranditional Irish HymnTransilvaniasta 1744Transylvania, Romania (traditional)Transylvania, Romania TraditionalTransylvanian Trad.Trao.Trar.Trard.Tras.Trat.Tratitional French Children's SongTravenTrdTrd.Trda.Tred.Trefn.Trekant Efter Brdr. BastTrentinoTrinkliedTrrTrr.Trrad.Trás-os-Montes - PopularTrávnice Z Liptovských SliačovTschech. VolksliedTschecheiTschechische WeisenTschechischer ChoralTschechisches VolksliedTschechoslowakische FolkloreTseremissil. KansanrunoTtad.Ttrad.Tumbuka TraditionalTune: St ThomasTunisian TraditionalTuntematonTuntematon LiperistäTunturilappalaisetTurathTurkeyTurkishTurkish & Arabic TraditionalTurkish FolkTurkish Folk DanceTurkish Folk MelodyTurkish Folk SongTurkish SongTurkish TradTurkish Trad.Turkish TraditionTurkish TraditionalTurkish Traditional Chant (Turkey)Turkmen Folk MelodiesTurkmenisches VolksliedTurkmenistan Folk MelodyTurkyTurmmusikTurquíaTurska NarodnaTurska Narodna PjesmaTuscan Folk SongTuscan Folk-songTužbalica Iz SkadraTužbalica Iz ĐakoviceTveitlienTvísöngurTw. LudowaTwee LiedekensTwo Double Jugs, Traditional IrishTwo Traditional Norwegian SongsTwo Traditional PolkasTwo Traditional Pols TunesTwórcy Lud.Twórcy LudowiTwórcy NieznaniTwórcy TradycjonalniTyrkisk Trad.Tyrolean CarolTyrolean Christmas CarolTyrolská Lid.TyskTysk - TraditionelTysk FolkemelodiTysk FolketoneTysk FolkeviseTysk Folkevise Melodi ca. 1640Tysk FolkmelodiTysk Folkmelodi 1819Tysk FolksmelodiTysk FolkvisaTysk JulesangTysk Julevise Fra Middelald.Tysk MelodiTysk Melodi/German TuneTysk Trad.Tysk Visa Från MedeltidenTysk adventssångTysk folkemelodiTysk folkmelodiTysk mel.Tysk, Før 1600Tysk-latinsk blandsångTysk/Svensk FolketoneTyvan Traditional SongTziganeTípicaTôn NegroaiddTöölaul GruusiastTürk. FolkloreTürkei, trad.TürküTрадиционалTрадиционалнаU-TradU. Verw. V. Trad.U.S.A. Trad.U.S.S.R.U.kendtUKUS Trad.US-Army SongUSAUhrmacher- und BöttchertanzUkendtUkendt ForfatterUkendt Forfatter - Italiensk PartisansangUkendt KomponistUkendt OprindelseUkendt TomponistUkjent Forf.Ukjent forfatterUkr. Folk SongUkrain. KosakenliedUkrain. Säv.Ukrainalainen Joululaulu, Trad.Ukrainalainen KansanlauluUkrainalainen KansansävelmäUkraineUkraine - TraditionalUkraine, U.S.S.R.Ukraine-HutzulUkraine/Slowenien/Österrich-InnviertelUkrainian CarolUkrainian Folk SongUkrainian Folk TuneUkrainian Trad.Ukrainian TraditionalUkrainian Traditional CarolUkrainian Traditional ShchedrivkaUkrainian Traditional SongUkrainian trad. songUkrainienUkrainienneUkrainischUkrainisches LiedUkrainisches VolksliedUkrains VolksliedUkrainskaUkrainska NarodnaUkraiņu. t. dz.Ukrajinska NarodnaUkrajinskáUkrajinská Lid.Ukrajinská LidováUkrajinská ĽudováUkrajinská Ľudová PieseňUkranian Folk SongUkranian Folk TuneUkranian Traditional SongUkrán Karácsonyi ÉnekUktainian TraditionalUm 1550Um 1600Um 1720Um 1800Umgesungene Fassung des alten Geusenliedes "Wilhelm von Nassauen" (17. Jahrh.)UnbekanntUnbekannt, 14. Jh.Unbekannter Spanier (16. Jh.)Ung LangUng. SoldatenliedUng. VolksweiseUngar. VolksliedUngari RahvalaulUngari RhvlUngarische FolkloreUngarische VolksmärchenUngarische VolksweisenUngarisches LiedUngarisches VolksliedUngarisches Volkslied Aus MoldavienUngarnUngarsk MelodiUngersk BarnvisaUnidentifiedUnkaril.Unkaril. Trad.Unkarilainen KansanlauluUnkarilainen Kansansäv.Unkarilainen Trad.UnknownUnknown ComposerUnknown SoldierUnknown author (v.1220)Unreel based on trad. Irish reelUnter Teilweiser Verwendung Einer VolksweiseUnter Verw. Einer VolksweiseUnter Verwendung Einer Irischen VolksweiseUnter Verwendung Einer VolksweiseUnter Verwendung Von VolksweisenUnter Werw, Einer YolksweiseUpptecknad MelodiUr Den Romerska BegravningsmässanUr Den Romerska MässanUr Den Romerska TidegärdenUr Höga Visan, From The Song Of SongsUr Romerska MässanUrspr. Trad.Usbekisches HochzeitsliedUsbekisches VolksliedUsmeno PrenošenjeUspávanka Z KysúcUspávanka Z Troch SliačovUspávanky Z HorehroniaUt. TradycyjnyUtsiiliap AqaataaUtwory TradycyjneUtwór Trad.Utwór TradycyjnyUusimaaUusiseelantilainen MaorilauluUzbecká Ľud. PieseňUzbekistanV. S. J.V.S.J.VDVLVMVMA Bezirk OberbayernVWVW [Volksweise]VW.Valamolainen SävelmäValašská LidováValašská Z KudlovaValašské LidovéValašské PísněValencian Oral TraditionValle Di MuggioValle PopulloreVallée D'Aspe Du Béarn Et Des PyrénnnéesVals de la Guardia ViejaValzer NapoletanoValzer TradizionaleVana KantrilaulVana Meremeeste LaulVana meremeeste laulVancouver Punk Trad.Vancouver Punk TraditionalVancouver Punk TraditionalsVanha Englantil.jouluhymniVanha Englantilainen JouluhymniVanha JouluhymniVanha KansanmarssiVanha KirkkotekstiVanha TestamenttiVanha joulyhymniVanhan Suomalaisen Hautauslaulun Viime SäkeistöVanhasta Suomalaisesta JoulukuvaelmastaVannetais Trad.Varakristlik HümnVaraldskogtradVariation Sur Un Air PopulaireVariationen über Ein Altes FuhrmannsliedVariations On A Traditional Indian SongVariations On A Traditional Tibetan ChantVarious TraditionalVariété Populaire ArménienneVarmelandVaroškaVaroška NarodnaVaroška PesmaVaršavska Tabulatura (17.St)Vaudeville Du 17eVechi cântec românescVedic MantraVelška TradicijskaVen. Kans.Säv.Ven. KansansävelVen. Trad.Vendean TraditionalVendéeVenetski NapisVenezuelaVenezuela D.R.Venezuelai NépdalVenezuelan CarolVenezuelan Children SongVenezuelan Trad.Venezuelan TraditionalVenezuelan Traditional SongVenäl KansanlauluVenäl. Kans.SävVenäl. KansanlauluVenäl. Kansansäv.Venäl. Kansansävel.Venäl. KansansävelmäVenäl. Säv.Venäl. SävelmäVenäl. Trad.Venäl. kansansäv.Venäl.kans.säv.Venäl.kansanlauluVenäläinen KansanlauluVenäläinen KansansävelVenäläinen KansansävelmäVenäläinen MarssiVenäläinen RomanssiVenäläinen SotilaslauluVenäläinen SävelVenäläinen YlioppilaslauluVenäläisestä Laulukokoelmasta KinvaaliVenček Koroških Ljudskih PesmiVenček LjudskihVenček Ljudskih PesmiVepsian CoupletsVerset BlbliqueVersion Traditionelle, XIVe SiècleVersión Libre ChamalVersuri PopulareVersuri bisericeștiVersão PopularVestindisk FolkemelodiVestindisk JulemelodiVestindisk MelodiViaja Canción IrlandesaVictor JaraVida Popular SantiagueñaVidala Tradicional De Comparsa, SaltaVidala Tradicional SantiagueñaVieille Chanson BretonneVieille Chanson De SoldatsVieille Danse AnglaiseVielle Chanson FrançaiseVienankarjalainen HäälauluViet. Trad.Vietnamesischer BambustanzVietnamesisches KinderliedVieux Noël FrançaisViisi Laulua Raamatun SanoihinVikbolandet Trad.VillancicoVillancico MexicanoVillancico PopularVillancico Popular AlemánVillancico Popular CantabroVillancico Popular CubanoVillancico Trad. AndaluzVillancico Trad. AndaluzVillancico de GalesVillancicosVira de CoimbraVirginia River ShantyVirol.Trad.Virolainen KansanlauluVirolainen Kansansäv.Virolaï de MontserratVirsi 462Virsi 584Virsitoisinto KiikoisistaVirágénekVisa Från 1500-talet, Trad.Visa Från Uppland; Trad.VisemelodiVissersongVit ScotlandVlVlaams VolksliedjeVlaškaVlaški TradicionalVodun Invocation - HaitiVojvodinaVojvođanskaVokksweiseVokstümlicher KanonVoksweiseVolga DittiesVolk SongVolkliedVolksballadeVolksdichtungVolksg.Volksgesang Süd-KroatienVolksgutVolksgut/VolksweisenVolksl.Volksl. A. Hessen (1870)VolkslegendeVolksliedVolkslied (16.Jhd)Volkslied (1610)Volkslied (17. Jahrh.)Volkslied (18.Jhd)Volkslied (Schweinauer Tanz, 1859)Volkslied (Traditional)Volkslied (um 1600)Volkslied - Trad.Volkslied 1610Volkslied = TraditionalVolkslied Aus BadenVolkslied Aus Böhmen (um 1870)Volkslied Aus DavosVolkslied Aus Dem HunsrückVolkslied Aus Dem RheinlandVolkslied Aus Den USAVolkslied Aus Der MongoleiVolkslied Aus DeutschlandVolkslied Aus FrankenVolkslied Aus GumpoldskirchenVolkslied Aus HessenVolkslied Aus ItalienVolkslied Aus JingsuVolkslied Aus KäntenVolkslied Aus KärntenVolkslied Aus Mitteldeutschland, 19. Jh.Volkslied Aus MährenVolkslied Aus NiederösterreichVolkslied Aus NorddeutschlandVolkslied Aus NordmährenVolkslied Aus OstpreußenVolkslied Aus PolenVolkslied Aus QinghaiVolkslied Aus RußlandVolkslied Aus SchlesienVolkslied Aus SchwabenVolkslied Aus SichuanVolkslied Aus ThüringenVolkslied Aus TirolVolkslied Aus VorarlbergVolkslied Aus WestfalenVolkslied Aus YunnanVolkslied Aus ÖsterreichVolkslied B. RaffaelVolkslied BadenVolkslied In Dixieland-InterpretationVolkslied Kanton BernVolkslied KroatienVolkslied Um 1530Volkslied Vom NiederrheinVolkslied [1610]Volkslied aus "Deutsche Volkslieder"Volkslied aus BöhmenVolkslied aus FrankreichVolkslied aus GriechenlandVolkslied aus HessenVolkslied aus Hessen (seit Anfang 19. Jahrh.)Volkslied aus KärntenVolkslied aus LitauenVolkslied aus Mitteldeutschland, 19. Jh.Volkslied aus MährenVolkslied aus NorddeutschlandVolkslied aus Norddeutschland (19. Jahrhundert)Volkslied aus Oberschlesien (1833)Volkslied aus PommernVolkslied aus SalzburgVolkslied aus Schwaben (19. Jahrh.)Volkslied aus Schwaben vor 1827Volkslied aus SchwedenVolkslied aus Thüringen (16. Jahrhundert)Volkslied aus WestfalenVolkslied aus ZypernVolkslied aus dem 15. JahrhundertVolkslied aus dem 16. JahrhundertVolkslied aus dem 16. Jhd.Volkslied aus dem 18. JahrhundertVolkslied aus dem EichsfeldVolkslied aus dem ElsaßVolkslied aus dem HarzVolkslied aus dem Niederdeutschen vor 1807Volkslied aus dem RheinlandVolkslied aus dem Siebengebirge, 1860Volkslied aus der Gegend von Rothenburg und WimpfenVolkslied sud der Gegend von Rothenburg und WimpfenVolkslied uit WalesVolkslied vor 1550Volkslied vor 1820Volkslied vor 1840Volkslied, 16. JahrhundertVolkslied, 19. Jh.Volkslied, Bad HarzburgVolkslied, Früheste Version Handschr. Heinrich Bothe (1771-1855)Volkslied, Siebenbürgen (Rumänien)Volkslied, Vor 1623, In Schemellis Gesangbuch, 1736Volkslied, schweizer Liederbuch "Der Rösligarde"Volkslied-MelodieVolkslied/HohenzollernVolkslied/NiederrheinVolkslied/SchwäbischVolkslieddichtungVolksliederVolkslieder = TraditionalVolkslieder Potp.Volkslieder aus der SowjetunionVolksliedgutVolksliedje Uit KarinthiëVolksliendVolksmelodieVolksmelodie Aus OstpreußenVolksmotivVolksmundVolksmusikVolkspoesieVolkssatz Aus RußlandVolkstanzVolkstanz Aus AnnabergVolkstanz Aus NorddeutschlandVolkstanz Aus Ost-MecklenburgVolkstanz aus AnnabergVolkstanz aus MecklenburgVolkstanz aus NorddeutschlandVolkstanz aus Ost-MecklenburgVolkstanz aus SavoyenVolkstanz aus ThüringenVolkstanz aus dem ErzgebirgeVolkstanz/Bayer. WaldVolkstanz/BayerischVolkstanz/BöhmischVolkstanz/EgerlandVolkstanz/HessischVolkstanz/SchlesischVolkstanz/SchwarzwaldVolkstanz/SchwäbischVolkstanz/WestphalenVolkstextVolkstüml.VolkstümlichVolkstümlich nach DemonstrantenVolkstümliche MotiveVolksw.Volksw. A. TirolVolksw. Aus FrankreichVolksw. a. SüdböhmenVolksw. a. d. HunsrückVolksw. aus dem HunsrückVolksw./VolksgutVolksw/Bearb.VolksweiseVolksweise (1826)Volksweise (um 1826)Volksweise - Bearb RoccoVolksweise / VolksgutVolksweise 1826Volksweise A. D. HunsrückVolksweise A.D. 14. JahrhundertVolksweise Aus BayernVolksweise Aus Bayern Und TirolVolksweise Aus Dem Alten BerlinVolksweise Aus Dem Berner OberlandVolksweise Aus Dem BurgenlandVolksweise Aus Dem Glatzer SchneegebirgeVolksweise Aus Dem HunsrückVolksweise Aus Dem Jugendheimer LiederbuchVolksweise Aus Dem MemellandVolksweise Aus Dem RheinlandVolksweise Aus Dem SiebengebirgeVolksweise Aus Dem ZillertalVolksweise Aus Der Bad. PfalzVolksweise Aus EnglandVolksweise Aus FrankenVolksweise Aus JugoslawienVolksweise Aus KumamotoVolksweise Aus KärntenVolksweise Aus MährenVolksweise Aus NiederschlesienVolksweise Aus NorddeutschlandVolksweise Aus Portugal Um 1815Volksweise Aus RußlandVolksweise Aus SchlesienVolksweise Aus SchwabenVolksweise Aus SpanienVolksweise Aus SüddeutschlandVolksweise Aus ThüringenVolksweise Aus VietnamVolksweise Aus ÖsterreichVolksweise HongkongVolksweise JapanVolksweise Köln 1638Volksweise LibanonVolksweise MalaisiaVolksweise Um 1600Volksweise Um 1850Volksweise Vor 1777Volksweise [Sizilien]Volksweise [Thüringen]Volksweise a. d. HunsrückVolksweise aus BöhmenVolksweise aus Des Knaben WunderhornVolksweise aus KärntenVolksweise aus NiedersachsenVolksweise aus NordböhmenVolksweise aus NorddeutschlandVolksweise aus SalzburgVolksweise aus SchottlandVolksweise aus SchwabenVolksweise aus SüddeutschlandVolksweise aus ThüringenVolksweise aus TrinidadVolksweise aus d. badischen PfalzVolksweise aus dem 14. JahrhundertVolksweise aus dem 16. JahrhundertVolksweise aus dem RheinlandVolksweise des 18. JahrhundertsVolksweise um 1800Volksweise von 1813, Krähwinkler LandwehrVolksweise vor 1840Volksweise vor 1850 vom EichsfeldVolksweise, 1676Volksweise, 1826Volksweise, Leipzig 1849Volksweise, SalzburgVolksweise, VolksmundVolksweise, Vor 1850Volksweise-HistorischVolksweise/BreisgauVolksweise/ElsaßVolksweise/MitteldeutschlandVolksweise/SchwäbischVolksweise/VolksgutVolksweise/VolksliedVolksweisenVolkswijsVolkswijsjeVolkweiseVollekslidd: DäitschlandVolskweiseVoronezh LamentsVoyageurs CajinsVranjanska NarodnaVranjeVtraditionalVwVw - BearbeitetVw - bearb.Vw.Vw. aus dem 19. Jahrh.Vw. bearb.Vw/VolksgutVánoční Koleda Z Konce 19. StoletíVöluspáVöluspá, 31-35Völuspá, 40-41Völuspá, 42-44Völuspá, 46-48Völuspá, 52,57Völuspá, 64-66Völuspá, 7-10Východosl. Ľud.Východoslov. UkrajinskáVýchodoslovenskáVýchodoslovenská LidováVýchodoslovenská Ľud.Východoslovenská ĽudováVýchodoslovenská Ľudová PieseňVýchodoslovenské ĽudovéVýchodočeská LidováVācu Bērnu DziesmaVācu T. Dz.Vācu T. DziesmaW. African TraditionalW. Indian SpiritualWG Mszału RzymskiegoWachauer Schifferlied Aus MelkWalesWalesisk JulvisaWalliser VolksweiseWalzer (Volksweise)WanderliedWarrenWayno Populaire Des Provinces Hautes Du CuzcoWayno Populaire Du CuzcoWayno Tradicional De AyacuchoWayno Tradicional De La Prov. De Victor Fajardo AyacuchoWeihnachts-MotetteWeihnachtsliedWeihnachtslied Aus BohemenWeihnachtslied Aus BöhmenWeihnachtslied Aus DeutschlandWeihnachtslied Aus EnglandWeihnachtslied Aus FrankreichWeihnachtslied Aus ItalienWeihnachtslied Aus OsterreichWeihnachtslied Aus SchwedenWeihnachtslied Von Den BahamasWeihnachtslied aus dem AargauWeihnachtslied, 17. JahrhundertWeiseWeise "Zu Mantua In Banden"Weise 14. JahrhundertWeise 15. JahrhundertWeise 17. JahrhundertWeise Aus Dem 14. JahrhundertWeise Aus Dem 17. JahrhundertWeise Aus SüdafrikaWeise Der BrüdergemeindeWeise Nach Dem Lied Der Pariser KommuneWeise Und Text Aus Dem 16. JahrhundertWeise Vom Eichsfeld Vor 1850Weise aus dem 14. JahrhundertWeise aus dem 17. JahrhundertWeise vor 1639Weise vor 1714Weise vorreformatorischWeise: 14. JahrhundertWeise: 14. Jahrhundert, Im Gesangbuch Von Joseph KlugWeise: Halle 1704Weise: Köln 1599Weise: Seit 1823WelshWelsh AirWelsh AncientsWelsh AyreWelsh CarolWelsh Folk SongsWelsh Hymn MelodyWelsh Hymn TuneWelsh LullabyWelsh MelodyWelsh TradWelsh Trad.Welsh TradiionalWelsh TraditionalWelsh Traditional CarolWelsh Traditional TuneWelsh TuneWelsh trad.Wendisches VolksliedWest African Funeral Song In Celebration Of The DeadWest African Malinke RhythmsWest Country CarolWest Country Folk SongWest Country Trad.West Indian Folk SongWest Indian Folk TuneWest Indian SongWest Indian SpiritualWest IndiesWest Indies CarolWest Indies TuneWest Ukrainian Trad.Western African TraditionalWestern Isles Trad.Westfälischer NeujahrsrufWeststeiermarkWeststeirischWg "The Greenland Whale Fishery"Wg Mszału RzymskiegoWhat Child Is This? Traditional [English Melody]WiegenliedWiegenlied, Salzburg 1819Wiener GassenhauerWiener LiedWilfrid MoreauWittenberg 1524Wolambo / African FolkWolksweiseWolof Traditional SongWords By [Poesia Da Tradição Oral Da MadeiraWorksongWorte aus dem LettischenWszystkie Utwory TradycyjneWu-Ti Dei LiangWybór CytatówXX X XX-X-XX.X.X.XII w.XIII SiecleXIIth Century MelodyXIV. Sz.-i Latin-Német ÉnekXIV. Századi Angol Karácsonyi ÉnekXIVe siècleXIX Traditionnel CanadienXVI W.XVI saj. SaksamaaXVI w.XVII W.XVII c. Kozak MelodyXVII w.XVIII saj. Itaalia viisXVIIIe s.XVIIe siècleXVIIèmeXVIeXVIème SiecleXVe SiecleXVe SiècleXXXXXXhosa TraditionalXxxXxxxYaeyama TraditionalYaravi PérouYaravi-huayňoYaraví Populaire Du CuzcoYaraví TradicionalYemeniteYemenite Folk Song - Trad.Yemenite MelodyYemenite SongYemenite TraditionalYemenite traditionalYemenite, Ashkenazi And Ladino Traditional Jewish SongsYi TraditionalYiddish Trad.Yiddish TraditionalYngre EddaYorkshire CarolYorkshire TraditionalYorubaYoruba Popular De América CentralYoruba TraditionalYozgat TürküsüYrad.Ytad.Yugoslav Folk SongYugoslav TraditionalYugoslaviaYugoslavian FolksongYugoslavian TraditionalZ BerounskaZ BlatZ HoráckaZ Katolíckeho KancionáluZ KralovickaZ Liptovských SliačůZ PlzeňskaZ PošumavíZ Velké KubryZakarpatská ĽudováZampogne CalabresiZanzibar TraditionalZapateo TabasqueñoZapoż.ZapożyczonaZapożyczoneZasłyszaneZaton (Kod Dubrovnika)Zbojnícka PieseňZechariah: 14Zemiros ShabbosZemplinská Ľud.Zemplinská ĽudováZen TraditionalZephaniah 3:16-17Zig. Trad.Zigeuner-JazzZigeuner-VolksliedZigeuner-VolksweiseZigeunervolksweise Vom BalkanZigeunerweiseZimbabweZimbabwean TraditionalZiņģeZlidověláZlidovělá PíseňZlidovělýZlidovělý TextZnamenin SävelmäZona Bagni (Scafati)Zona Cangiani (Boscoreale)Zona GiuglianoZona MaioriZona PaganiZona PomiglianoZona SommaZona TerzignoZoques De San Miguel ChimalapaZortzicoZpěvník Z Kolína Nad RýnemZulu Children's Game SongZulu MelodyZulu SongZulu TraditionalZulu-Song Aus SüdafrikaZulu-TraditionZulu-melodiZulu/South African SongZviedru Tautas Dz.ZvornaZwabische Trad.Zwiefacher Trad. VolksweiseZwiefacher/HessenZwiefacher/SchwäbischZwitsers KerstliedZwitsers VolksliedZwitsers VolksliedjeZápadoslov. MilostnáZápadoslovenskáZápadoslovenská MilostnáZápadoslovenská Ľud.Západoslovenská ĽudováZápadoslovensý VerbunkZľudovelá[Plainsong][Popular brasileira][Popular italiana][Popular][Traditional From Nordmøre][Uncredited] Traditional[Česká Lidová[Česká Lidová Koleda]a.r.r.adaptare muzică tradițională turceascăadapted from the trad. Icelandic Vökuróafrikanisches Wiegenliedafter 'Book Of The Dead' (Hymn To Ra When He Rises)after Per Gustaf Florellair de cour du XVIe sièclealtböhm. Volksweisealte Volksmelodiealte englische Hymnealtes Volksliedaltes russisches Soldatenliedaltsp.amerik. Volksweiseamerikanische Volksweiseanonymanonym.anonymousaus "Des Knaben Wunderhorn"aus Botswanaaus Frankenaus Frankreichaus Neuseelandaus Polynesienaus dem Siebengebirgeauthor unknownautor nieznanyautorzy nieznanibaladă popularăbased on Salonika cantorial stylebased on a sephardic jewish liturgical hymnbayr. Volksliedbułgarska pieśń ludowac.c.canción popular mexicanacanto tradizionale catalanocover/melodie traditională mexicanăcygańska piosenka ludowacztery piosenki ludowecântec din Oașcântec pop. americancântec popularcântec popular francezcântec popular macedon.cântec popular spaniolcântec tradițional americancântec tradițional de Crăciuncântec tradițional din America Latinăcântec tradițional grecesccântec tradițional irlandezcântec tradițional românesccîntec americancîntec elvețiancîntec englezcîntec francezcîntec germancîntec italiancîntec negrucîntec norvegiancîntec popularcîntec popular argentiniancîntec popular cubanezcîntec popular germancîntec popular ostășesccîntec popular polonezcîntece populared.c. dca.d.p.d.r de a.d.r. de a.del folcloredel folklore tradicional inglésdeutsches Volkslieddin folclorul copiilordin literatura veche chinezădin literatura veche egipteanădin slujbădin vechea poezie a triburilor primitivedin vechea poezie greacăenskt lagergebirgische Volksweiseerzgeb. Volksweisefolclorfolclore da: beira baixa (Portugal)folklorefranz. Volksweisefrei nach der Melodie "Unten auf der grünen Au"frei nach einem Kinderreimfrei nach einem Trad. aus Bolivienfólkalagg.k.gipsy tradgregorián dallamhistorischer Marschhöfundur ókunnurignotoinstrumentalnyirisch trad.irische Folkloreirlandzkaitalienische Folkloreitalská lidováiwwerliwwert: Brasilieniwwerliwwert: Däitschlandiwwerliwwert: Marokkoiwwerliwwert: Thürigenizvornajapanese trad. lullabykansanlaulukansansävelkansansävelmäkirgisisches Volksliedkolęda tradycyjnakompozytor nieznanyl. d.legendele Pieilor Roșiilettisch. Volksliedlidová (Lašsko)lidová (Morava)lidová (Prajzsko)lidová (Valašsko)lidová (opavské Slezsko)lud.ludowaludowa z Odessyludoweludowylăutărească vechemarș tradiționalmeksykańska mel. lud.meksykańska mel. ludowamel. fatimskamel. hiszpańskamel. lud.mel. ludowamel. opolskamel. popul.mel. tradmel. trad.mel. trad. XVI w.mel. trad. XVII w.mel. z Fatimymel.lud.melodia ludowamelodia popularnamelodia tradycyjnamelodie francezamelodie germanamelodie ludowemelodie populară româneascămelodie tradițională grecească din Smirna, Asia Micămuz. tradycyjnamuzică religioasămuzică tradițională ruseascămuzică tradițională țigăneascămuzyka tradycyjnamündlich überliefertn. e. Volksw.n. e. Volksweisen. e. krölischen Volksweisen.e.irisch. Volskw.nach "Es liegt ein Schloß in Österreich"nach "Zu Mantua in Banden"nach Negro Spiritualsnach alten Volksweisennach dem Spiritual "Oh, when the Saints"nach dem Volkstanz "Bauernmadl"nach dem polnischen Revolutionslied "Das Volk zog zum Kampf"nach einem Ruf der Aborigines / Australiennach einem Ruf der Navahonach einem Schwedischen Volksliednach einem Volksliednach einem Wiegenlied aus Russlandnach einem Xhosa-Traditionalnach einem Zulu-Ruf (Takte 1-2), Südafrikanach einem alten Spiritualnach einem kroatischen Kinderreimnach einem sowjetischen Komsomolzenliednach einer Volksw.nach einer Volksweisenach einer alten Seemannsweisenach einer amerik. Volksw.nach einer amerik. Volksweisenach einer engl. Volksweisenach einer französischen Volksweisenach volkstümlichen Motivennapisana w 1566 r.narodnaold traditional Romanian songspieśń irlandzkapieśń ludowa z pogranicza Bośni i Serbiipios. podwórzowapiosenka ludowapiosenka ludowa z Odessypiosenki z różnych śpiewnikówpoezie popularăpoln. Folklorepoln. Freiheitsliedpop.popolare; Žejanepopulairepopularpopular Catalanapopular românescpopularapopularepopularărad.rahvaluuleromance populaire roumaineromance roumaineromansrosyjska piosenka ludowaruss. Volksliedruss. Volksw.russ. Volksweiserussian-hungarian folk melodyrussische Folklorerussisches Volksliedrysk tradschott. Folkloreschwed. Studentenliedschwedischsefardisch / Kharja (11.Jh.)sizil. Volksweisesizilian. Volksweiseskjaldurskotsk lagslowenisches Volksliedsorb. Volksliedsorbische Volksweisesorbisches Volksliedsowjetisches Volksliedsuită de jocuri tradiționale din Clejaniszwedzkatt.dz.tRad.tTrad.tekst archaicznytext popularthüringische Volksweisetradtrad Australientrad Austriantrad Dalarnatrad Danishtrad Germantrad Hallandtrad Italientrad Jewishtrad Jewish - solo songtrad Jewish-Romaniantrad Macedoniantrad Sanabriatrad Setesdaltrad Swedishtrad Upplandtrad Valdaltrad Yiddish children's songtrad [Sally Grey]trad arrtrad irischtrad'l.trad,trad.trad. (Blues Standard)trad. (Schneeflöckchen weiß Röckchen)trad. (The Streets of Forbes)trad. (amerikkalainen kansanlaulu)trad. (eteläpohjalainen kansanlaulu)trad. (irlantilainen kansansävelmä)trad. (kaustislainen hääsävel)trad. (pohjalainen kansanlaulu)trad. (ranskalainen kansansävel)trad. (ruotsalainen kansanlaulu)trad. (ruotsalainen kansansävel)trad. (ruotslaianen kansanlaulu)trad. (satakuntalainen kansanlaulu)trad. (suomalainen kansanlaulu)trad. (suomalainen kansansävel)trad. (venäläinen kansanlaulu)trad. (venäläinen kansansävel)trad. 16ᵉtrad. 17ᵉtrad. 18ᵉ, 1712trad. 1914-18trad. 1920trad. Americantrad. Amerikanisch, nach "Drill, ye tarriers drill"trad. Appenzelltrad. Armeniatrad. Aus Slowenientrad. Balkanstrad. Basquetrad. Bulgariatrad. Bulgariantrad. Bulgarietrad. Bulgarientrad. Bulgarien / Rumänientrad. Catalaanstrad. Cataloniatrad. Corktrad. DKtrad. Dalarnatrad. Danmarktrad. Devontrad. Devon (Baring-Gould collection)trad. Ecuadortrad. Englishtrad. English - Playfordtrad. Exmoor caroltrad. Finlandtrad. Finnishtrad. Finnlandtrad. Frankreichtrad. Frenchtrad. Gaelictrad. Galicientrad. Galizientrad. Germantrad. Gospeltrad. Greecetrad. Griechenlandtrad. Hongrietrad. Hungariantrad. Hungarytrad. Icelandtrad. Ireland/Hungarytrad. Irishtrad. Irlandtrad. Islandtrad. Isle Of Mantrad. Israeltrad. Jewish-Romaniantrad. Klezmertrad. Kolumbientrad. Macédoinetrad. Manxtrad. Martiniquetrad. Mazedonientrad. Morvantrad. Neopolitan Songtrad. Newfoundlandtrad. Niederlandetrad. Nordictrad. Norgetrad. Norwaytrad. Norwegiantrad. Polish - Klezmertrad. Romatrad. Romaniatrad. Roumanietrad. Rumänientrad. Schottlandtrad. Schwedentrad. Scottishtrad. Spaintrad. Spanientrad. Spanishtrad. Spiritualtrad. Swedentrad. Swedishtrad. Swisstrad. Texastrad. Texttrad. Thracetrad. Tschechientrad. Ukrainetrad. Ukrainian / Jewishtrad. Ungarntrad. Volksliedtrad. Volkstanz "Sternpolka"trad. Yougoslawientrad. Yugoslavietrad. arr.trad. arr. Ollie Kingtrad. arr. Ollie King, Tom Kitchingtrad. aus Dalmatientrad. aus Finnlandtrad. aus Niederösterreichtrad. aus Salzburgtrad. baskischtrad. bulgarischtrad. deutschtrad. deutsch, nach "Auf, auf zum fröhlichen Jagen"trad. deutsch, nach "Es liegt ein Schloß in Österreich"trad. deutsch, nach "Gute Nacht, gute Nacht, schöne Anna Dorothee"trad. deutsch, nach "Prinz Eugen der edle Ritter"trad. deutsch, nach "Schlaf, Kindlein, schlaf"trad. deutsch, nach "Was kommt dort von der Höh"trad. englischtrad. französischtrad. georgischtrad. griech.trad. irischtrad. jiddischtrad. katalanischtrad. lettischtrad. mel.trad. nach J. Bernsteintrad. norwegischtrad. piosenka lwowskatrad. rumän.trad. russischtrad. rätoromanischtrad. schottisch, nach "Lady Mackintosh's Reel"trad. schwedischtrad. sefardischtrad. sv folkvisatrad. ungarischtrad. westgrich.trad. zamoranatrad. Ägyptentrad. Österr. & Serbientrad., arr. Garretttrad./Ital. Volksweisetrad./ital. Volksweise "La Lega"trad.arr.trad.meltrad/Jewishtrad/Norwegiantradd.tradicionaltradicional Galegotradicionalnatradicionalrecordtradicionalstradición oraltradittradit.traditionaltraditional (Eritrean liberation song)traditional (Spanish liberation song)traditional African music (Ghana)traditional Bretontraditional Casamancetraditional Guinéetraditional Indonesian music (Bali)traditional Malitraditional Odessatraditional Polynesian music (Tahiti)traditional Romanian themetraditional Russiantraditional Sephardictraditional Swiss alphorn melodytraditional Zen Buddhist piecetraditional Zulutraditional chant from the Pygmies of Central Africatraditional from Rodopatraditional from Tuvatraditional repertoiretraditional songtraditional songstraditional, 13th centurytraditional/Gypsytraditional/Public Domaintraditionaletraditioneeltraditionelltraditionell - Bulgarischtraditionell Al-Andalustraditionell Bulgarientraditionell Japantraditionell Quebeck, Kanadatraditionell Romatraditionell Russlandtraditionell deutschtraditionell hebräischtraditionnaltraditionneltraditionnel africaintraditionnel crétoistraditionnel du Soudantraditionnel grectraditionnel égyptientraditionnelltraditionnellestraditionnelstraditonal Gaelic songtradiz.tradizionaletradizionale provenzaletradizionale tunisino - tradizionale romagnolotradizione calabresetradizione pugliesetradizione umbratradiționaltradițional americantradițional italiantradiționalătradycja żydowskatradycyjnatradycyjnetradycyjne ukraińskietrdiționaltschech. Volksliedturku t.dz.twórczość ludowaum 1850un basm rusungar. Volksw.unidentifiedunter Verw. einer Volksw.ur Afrikansk bönbokur Psaltaren 139utwór tradycyjnyvechi cântec românescvenäl. sävelmäversuri din lirica norvegianăversuri populareversuri populare romaneștiversuri populare româneștiwłoskax x xxxxxxx/arrxxxxtrad.zaszłyszane od kapeli podwórkowej "Czy się wali, czy się pali" z PrzemyślaÁdventi Gregorián DallamÄgyptenÅländsk FolkvisaÆldre EddaÍr NépdalÍslenskt þjóðlagÖster. VolksweiseÖstereichisches VolksliedÖsterr. VolksweiseÖsterreichische VolksweiseÖsterreichisches WeihnachtsliedÖstliche ÜberlieferungÖzbek Halk ŞarkısıØstrigsk MelodiÚprava Lidové PísněÚr DansleikÚr íslenskum þjóðvísumÚr þjóðsöguÜberl.Überl. 16. Jh.ÜberliefertÜberliefert USAÜberlieferter Deutscher VolkstanzÜberliefertes SeemannsliedÜberliefertes VolksliedÜberlieferungÜberlieferung MusikÜberlifertÞjóðlagÞjóðvisaÞjóðvísaÞjóðvísuröstereichische Volksweiseüberl.überliefertüberliefert (aus den USA)überlieferte WeiseČernošská pracovní píseňČernošská píseň z války Severu proti JihuČernošský spirituálČes. Lid.Česká KoledaČeská Lid.Česká Lid. PíseňČeská LidováČeská Lidová PoezieČeská Lidová PíseňČeská Vánoční Lídová KoledaČeská lidováČeská ĽudováČeská Ľudová PieseňČeské A Moravské LidovéČeské Lid.České LidovéČeškaČeška trad.Čigonų RomansasČrnska DuhovnaČrnska Duhovna (Negro Spiritual)Čuvašská Ľud. PieseňČínskaČínská Lidováčeská lidováĒdoles - Nīcas Tautas DziesmaĪru t. dz.İspanyol Halk Marşıİspanyol Halk Şarkısıİstanbul TürküsüĽud.Ľud. PieseňĽud. Pieseň Z Belgorodskej Obl.Ľud. Pieseň Z Kurskej OblastiĽud. Pieseň Zo ZáhoriaĽudo SlovenskýĽudovka Z KútovĽudováĽudová HraĽudová HudbaĽudová KoledaĽudová MelódiaĽudová PieseňĽudová Pieseň Z MärjamaaĽudová Pieseň Z Okolia WarunyĽudová Pieseň Z PoníkĽudová Pieseň Zo StrandžeĽudová Pieseň Zo Strednej UkrajinyĽudová Pieseň Zo ZemplínaĽudová Pieseň Zo ZáhoriaĽudová Pieseň Zo Západného BulharskaĽudová Pieseň Zo ŠarišaĽudová PoéziaĽudová RiekankaĽudová RomskáĽudová RozprávkaĽudová Tanečná HraĽudová Z ChrudimskaĽudová Z ČičmanĽudovéĽudové PiesneĽudové Piesne Z LiptovaĽudové Piesne Zo StrondžeĽudové RozprávkyĽudovýĽudový NápevĽudový TextĽudový, Liptovské SliačeĽúbost. Nem. Ľud. Pieseň Zo 16. Stor.Ľúbostná Ľudová Pieseň Z RodopyŘecká LidováŚląska Pieśń LudowaŚwiątecznaŠaljiva NarodnaŠaljiva Pesma Iz MačveŠariš TraditionalŠarišsko - Mločia ĽudováŠarišská Ľud.Šarišská ĽudováŠiptarska NarodnaŠiptarska Narodna Pjesma Iz KičevaŠkótska Ľudová BaladaŠkótska Ľudová PieseňŠlāgersŠoti Trad.Španielská Ľud.Španjolska BožićnaŠpanska NarodnaŠpanska narodnaŠpanělskáŠpanělská LidováŠpanělská PíseňŠtajerski MotivŠtudentská ĽudováŠtyri Maďarské Ľudové PiesneŠtyri Ľudové Piesne Z Južného MaďarskaŠvajcarska Narodna IgraŠvajcarska Narodna PesmaŠvicarska NarodnaŠvédská LidováŽalm 113Žalm 130 1 / Psalm 130 1Žart. Nem. Det. Ľud. PieseňŽart. Nem. Ľud. PieseňŽart. Pieseň Z 19. Stor.Žart. Pieseň Z Pohoria PirinŽartovná Pieseň Z BieloruskaŽartovná Svadobná Pieseň Z AukšajtiiŽartovná Ľud. Pieseň Zo Západnej UkrajinyŽartovná ĽudováŽatevná Pieseň Z Trákie Z Cyklu „Piesne Žencov"Žatevná Ľud. Pieseň Z Juhozápadného BulharskaŽemaičių DainosŽertovná Lid. PíseňŽidovska TradicijskaŽidovská LidováŽidovská PíseňŽminjŽrnovoŽumberačkažidovská lidováΆγγλικό Χριστ.Αιγυπτιακό ΠαραδοσιακόΑλτσάτ'κου, Παραδοσιακό Αγιάσου ΜυτιλήνηςΑμερικάνικο Λαικό ΤραγούδιΑμερικάνικο ΠαραδοσιακόΑραβοανδαλουσιανό ΠαραδοσιακόΑρβανίτικοΑρμένικο ΠαραδοσιακόΑρμένικο ΦολκλόρΑσίκικοΑστικό ΚωνσταντινούποληςΑστικό ΣμύρνηςΑστυπάλαια, Παραδοσιακό - Greece, Asypalaia Island, TraditionalΒαΐτικα ΚάλανταΒαλκανικόΓαλλική Παραδοσιακή ΜελωδίαΓαλλικό ΠαραδοσιακόΓερµανικό Χριστ.Γερμανικά ΚάλανταΓερμανικός Χριστ. ΎμνοςΓιουγκοσλάβικοΔίσημος ΘράκηςΔίσημος Κων/ποληςΔημ.Δημ. ΚυπριακόΔημ. ΚυπριακόνΔημοτ.Δημοτικά ΔίστιχαΔημοτική ΠοίησηΔημοτικοίΔημοτικόΔημοτικό ΗπείρουΔημοτικό ΚρήτηςΔημοτικό ΜακεδονίαςΔημοτικό ΤραγούδιΔημώδεςΔημώδες ΡωσίαςΔημώδες ΤσιφτετέλιΔιασκευή ΠαραδοσιακούΕθνικό Μανιάτικο ΤραγούδιΕλλάδα, Παραδοσιακό - Greece, TraditionalΕλληνικοί ΠαραδοσιακοίΕλληνικό ΠαραδοσιακόΕλληνόφωνες κοινότητες της σημερινής ΤραπεζούνταςΕννιάσημος ΘράκηςΕννιάσημος Κων/ποληςΕννιάσημος Μ. ΑσίαςΕξάσημος Δυτικής ΜακεδονίαςΕξάσημος Στερεάς ΕλλάδαςΕπτάσημος ΜακεδονίαςΕπτάσημος ΧαλκιδικήςΖακυνθινή Μουσική ΠαράδοσηΖωναράδικος Χορός Της ΘράκηςΘάσος, Παραδοσιακό -Greece, Thassos Island, TraditionalΙνδιάνικο ΠοίημαΙσραήλ - Israel, Natan Alterman, C. 1951Κάρπαθος, Ελλάδα, Παραδοσιακό - Greece, Karpathos Island, TraditionalΚαθιστό ΚρητικόΚαλαματιανό ΘεσσαλίαςΚαλαματιανόςΚαλλανιώτικος, Παραδοσιακό Καρύστου ΕυβοίαςΚερκυραϊκόΚεφαλλονίτικη ΑριέτταΚεφαλονίτικη ΑριέτταΚουρδικός ΧορόςΚούβα - Cuba, Bola DeneveΚρήτη, Παραδοσιακό - Greece, Crete Island, TraditionalΚρητικόΚρητικό ΠαραδοσιακόΚυπριακόΚώστας ΠαπαγερίδηςΛίβανος, Παραδοσιακό - Lebanon, TraditionalΛαϊκής ΠροελεύσεωςΛαϊκό ΑγνώστουΛαϊκό Γερμανικό ΤραγούδιΛαϊκό Παραδοσιακό ΤραγούδιΛαϊκό Ρώσικο ΤραγούδιΛαϊκό ΣμύρνηςΜ. ΑσίαςΜέλος ΠαραδοσιακόΜακεδονίτικοΜαντολινάταΜικράς ΑσίαςΜικρασιάτικοΜικρασιάτικο ΛαϊκόΜικρασιάτικο ΠαραδοσιακόΜικρασιατικο ΛαϊκόΜπάλλοςΜυτιλήνη, Παραδοσιακό - Greece, Mytilene, TraditionalΜωραΐτικοΝέγρικοΝέγρικο SpiritualΝέγρικο Θρησκ.Ναξιώτικος Σκοπός Με Καταγωγή Και Αναφορά Στην ΑμοργόΝησιώτικο ΞενιτιάςΠαλατινή ΑνθολογίαΠαληό ΛαϊκόΠαληό λαἲκόΠαλιά ΚαντάδαΠαλιά Τσιγγάνικη ΜελωδίαΠαλιό ΛαϊκόΠαλιό Λαϊκό ΚρήτηςΠαλιό λαϊκόΠαραδ.Παραδ. ΑνατολήςΠαραδ. Μ. ΑσίαςΠαραδ. ΣμύρνηςΠαραδοσιάκοΠαραδοσιακάΠαραδοσιακά Αρμένικα ΤραγούδιαΠαραδοσιακά ΗπείρουΠαραδοσιακά ΤραγούδιαΠαραδοσιακήΠαραδοσιακή Αλβανική ΜελωδίαΠαραδοσιακή Επτανησιακή ΚαντάδαΠαραδοσιακή Ζακυνθινή Νυχτωδία-ΣερενάταΠαραδοσιακή Κεφαλονίτικη ΚαντάδαΠαραδοσιακή ΜαντινάδαΠαραδοσιακή Μουσική ΑλεξάνδρειαςΠαραδοσιακοίΠαραδοσιακοί ΚύπρουΠαραδοσιακοί ΝάξουΠαραδοσιακοί ΣτίχοιΠαραδοσιακοί Στίχοι ΞάνθηςΠαραδοσιακοί Της ΚύπρουΠαραδοσιακόΠαραδοσιακό (Αρμενία)Παραδοσιακό (Κοντυλιά Του Σαλή)Παραδοσιακό 19ου ΑιώναΠαραδοσιακό ΊμβρουΠαραδοσιακό ΑγγλικόΠαραδοσιακό ΑιγαίουΠαραδοσιακό ΑιγύπτουΠαραδοσιακό ΑμερικήςΠαραδοσιακό ΑνατολήςΠαραδοσιακό Ανατολικής ΡωμυλίαςΠαραδοσιακό Απειράνθου ΝάξουΠαραδοσιακό Απεράθου (Νάξος)Παραδοσιακό ΑποκριάτικοΠαραδοσιακό Από Την ΤούβαΠαραδοσιακό ΑραβίαςΠαραδοσιακό ΑραβοανδαλουσιάνικοΠαραδοσιακό ΑρκαδίαςΠαραδοσιακό Αρμένικα ΤραγούδιαΠαραδοσιακό ΑρμένικοΠαραδοσιακό ΑρμενίαςΠαραδοσιακό ΑρμενικόΠαραδοσιακό ΑστυπάλαιαςΠαραδοσιακό ΑφρικήςΠαραδοσιακό ΒαλκανίωνΠαραδοσιακό Βορ. ΑιγαίουΠαραδοσιακό Βορ. ΘράκηςΠαραδοσιακό Βορείου ΗπείρουΠαραδοσιακό Βραζιλιάνικο ΤραγούδιΠαραδοσιακό ΓάμουΠαραδοσιακό ΓιουγκοσλάβικοΠαραδοσιακό ΓιουγκοσλαβίαςΠαραδοσιακό ΔημοτικόΠαραδοσιακό Δυτικής ΜακεδονίαςΠαραδοσιακό ΔωδεκανήσουΠαραδοσιακό ΔωδεκανήσωνΠαραδοσιακό ΕλληνικόΠαραδοσιακό Επιτραπέζιο ΤραγούδιΠαραδοσιακό ΕπτανήσουΠαραδοσιακό ΕυβοίαςΠαραδοσιακό ΖακύνθουΠαραδοσιακό ΗπείρουΠαραδοσιακό Ηρακλείου ΚρήτηςΠαραδοσιακό ΘάσουΠαραδοσιακό ΘεσσαλονίκηςΠαραδοσιακό ΘράκηςΠαραδοσιακό Θρακιώτικο ΜοτίβοΠαραδοσιακό ΙκαρίαςΠαραδοσιακό ΙορδανίαςΠαραδοσιακό ΙρλανδέζικοΠαραδοσιακό ΙρλανδικόΠαραδοσιακό ΙσπανίαςΠαραδοσιακό Ισπανικό ΜαδριγέλιΠαραδοσιακό Ισπανικό ΤραγούδιΠαραδοσιακό ΙταλίαςΠαραδοσιακό Ιταλίας - Italy, TraditionalΠαραδοσιακό ΚάσουΠαραδοσιακό Κάτω ΙταλίαςΠαραδοσιακό ΚαλύμνουΠαραδοσιακό ΚαππαδοκίαςΠαραδοσιακό ΚαραϊβικήςΠαραδοσιακό ΚαρπάθουΠαραδοσιακό Καρύστου ΕυβοίαςΠαραδοσιακό ΚαστελόριζουΠαραδοσιακό Καυκάσου, Μυτηλήνης & Δυτικής ΕλλάδαςΠαραδοσιακό Κεντρικής ΜακεδονίαςΠαραδοσιακό ΚεφαλληνίαςΠαραδοσιακό ΚούρδικοΠαραδοσιακό ΚρήτηςΠαραδοσιακό ΚωνσταντινούποληςΠαραδοσιακό ΚύθνουΠαραδοσιακό ΚύπρουΠαραδοσιακό ΛέρουΠαραδοσιακό ΛέσβουΠαραδοσιακό Μ. ΑσίαςΠαραδοσιακό ΜακεδονίαςΠαραδοσιακό ΜαρόκουΠαραδοσιακό Μεγάρων ΑττικήςΠαραδοσιακό ΜεσαιωνικόΠαραδοσιακό Μικράς ΑσίαςΠαραδοσιακό ΜικρασιάτικοΠαραδοσιακό Μουσικό ΘέμαΠαραδοσιακό ΜυκόνουΠαραδοσιακό ΜυτιλήνηςΠαραδοσιακό Ν. ΙταλίαςΠαραδοσιακό ΝάξουΠαραδοσιακό ΝάουσαςΠαραδοσιακό Νησιών ΑιγαίουΠαραδοσιακό ΝικήσιανηςΠαραδοσιακό ΞεμάτιασμαΠαραδοσιακό ΠάτμουΠαραδοσιακό ΠαγγαίουΠαραδοσιακό Πασχαλινό ΚαρδίτσαςΠαραδοσιακό Περιοχής Βογατσικού ΚαστοριάςΠαραδοσιακό Περιοχής ΚαστοριάςΠαραδοσιακό Περιοχής ΞάνθηςΠαραδοσιακό ΠιερίωνΠαραδοσιακό ΠολίτικοΠαραδοσιακό Πολίτικο - Traditional Of ConstantinopleΠαραδοσιακό ΠροβηγκίαςΠαραδοσιακό ΠροποντίδοςΠαραδοσιακό ΠόντουΠαραδοσιακό ΡιζίτικοΠαραδοσιακό Ρουμάνικο ΤραγούδιΠαραδοσιακό ΡούμεληςΠαραδοσιακό ΡόδουΠαραδοσιακό Σίλλης ΙκονίουΠαραδοσιακό ΣαμοθράκηςΠαραδοσιακό ΣερρώνΠαραδοσιακό ΣεφαραδίτικοΠαραδοσιακό Σεφαραδίτικο Του 15ου Αι.Ρόδος - Sephardic Traditional From Rhodes, 15 Cent.Παραδοσιακό Σηλύβριας Ανατολικής ΘράκηςΠαραδοσιακό ΣικελίαςΠαραδοσιακό ΣμυρνέικοΠαραδοσιακό ΣμυρναίικοΠαραδοσιακό ΣμύρνηςΠαραδοσιακό ΣουηδίαςΠαραδοσιακό Στεριανό ΤραγούδιΠαραδοσιακό Συρτοτσιφτετέλι ΜυτιλήνηςΠαραδοσιακό Συρτό ΘεσσαλίαςΠαραδοσιακό Συρτό Θράκης Και ΜακεδονίαςΠαραδοσιακό ΤήλουΠαραδοσιακό ΤαμπαχανιώτικοΠαραδοσιακό Της ΑλβανίαςΠαραδοσιακό Της ΑνατολήςΠαραδοσιακό Της ΓέργερηςΠαραδοσιακό Της ΙνδίαςΠαραδοσιακό Της ΚολομβίαςΠαραδοσιακό Της ΚούβαςΠαραδοσιακό Του ΠερούΠαραδοσιακό Του Πουέρτο ΡίκοΠαραδοσιακό Του ΣουδάνΠαραδοσιακό ΤουρκίαςΠαραδοσιακό ΤούρκικοΠαραδοσιακό ΤραγούδιΠαραδοσιακό Τραγούδι ΜακεδονίαςΠαραδοσιακό ΤραπεζούνταςΠαραδοσιακό Τροπαίων ΑρκαδίαςΠαραδοσιακό Τσάμικο ΗπείρουΠαραδοσιακό Τσάμικο ΘεσσαλίαςΠαραδοσιακό ΤσιγγάνικοΠαραδοσιακό Τσιγγάνικο ΓιουγκοσλαβίαςΠαραδοσιακό Τσιγγάνικο ΙσπανίαςΠαραδοσιακό Τσιγγάνικο Της ΟυγγαρίαςΠαραδοσιακό Τσιγγάνικο ΤραγούδιΠαραδοσιακό ΧίουΠαραδοσιακό ΧαλκιδικήςΠαραδοσιακό, Κάτω Ιταλίας - South Italy, TraditionalΠαραδοσιακό, Παραλλαγή ΔωδεκανήσωνΠαραδοσιακόνΠαραδοσιακόςΠαραδοσιακός ΑπτάλικοςΠαραδοσιακός Αρμένικος ΧορόςΠαραδοσιακός ΚαλαματιανόςΠαραδοσιακός Καρσιλαμάς Ανατολικής ΘράκηςΠαραδοσιακός Καρσιλαμάς Μικράς ΑσίαςΠαραδοσιακός Κυκλικός Χορός ΚαστελόριζουΠαραδοσιακός ΜπάλοςΠαραδοσιακός Σμυρναίικος ΚαρσιλαμάςΠαραδοσιακός Στεριανός ΤσάμικοςΠαραδοσικόΠαραδοσικό ΠερούΠαραοδοσιακό Κεντρικής ΜακεδονίαςΠαραοδσιακόΠεριοχής ΞάνθηςΠεριοχής ΣάμουΠοντιακόΠραδοσιακόΠροποντίδαςΡιζίτικοΡιζίτικο ΚρήτηςΡιζίτικο Παραδοσιακό Ν. ΧανίωνΡωσικό ΤραγούδιΡώσικο ΠαραδοσιακόΣκυριανόΣκωπτικόν ΠελοποννήσουΣμυρναίικοΣμύρνη, Παραδοσιακό - Minor Asia, Smyrna, TraditionalΣμύρνηςΣυρτόςΣυρτός ΝησιώτικοςΣυρτός Παραδ/κόςΤαχτάρισμα - ΠαραδοσιακόΤετράσημος ΜακεδονίαςΤετράσημος Νησιών ΑιγαίουΤετράσημος ΠροποντίδαςΤο Δημοτικό Μας ΤραγούδιΤούρκικοΤούρκικο ΛαϊκόΤούρκικο Λαϊκό ΤραγούδιΤσιγγάνικο Της ΙσπανίαςΧίος, Παραδοσιακό - Greece, Chios Island, TraditionalΧιώτικοΧοροδίαΧορωδίαΧριστιανικός Ύμνος Λιβάνουβυζαντινά ΚάλανταІрландська Та Шотландська НароднаІталійська Народна ПісняЈапанска Традиционална ПесмаЎзбек Классик КуйиЎзбек Халқ КуйиАбхазская народная песняАвстрийская СказкаАвтентичен Румънски ФолклорАвтор Не ИзвестенАвтор НеизвестенАвтор неизвестенАвтор слов неизвестенАвторскоеАвторство не установленоАвторство неизвестноАвторы неизвестныАзербайджанская Нар. ПесняАзербайджанская Народная ПесняАзербайджанская ПесняАзербайджанская нар. песняАзербайджански фолклорАзербайджанские Нар. ПесниАлбански фолклорАлжирский ФольклорАлтайские НаигрышиАмерик. ПесняАмериканска Традиционална ПеснаАмериканская Народная ПесняАмериканская ПесняАмериканская Сельская МузыкаАмериканская песняАнглийская Нар. СказкаАнглийская Народная Музыка XVI В.Английская Народная ПесняАнглийская Народная СказкаАнглийская ПесняАнглийская ШуточнаяАнглийская народная песняАнглийская песняАнонимус Из XVI ВекаАрабская МелодияАрабская Шуточная ПесняАрабски ФолклорАрабски фолклорАргентинская ПесняАрм. Нар. ПесняАрмянская Нар. ПесняАрмянская Народная ПесняАрмянский Народный ТанецАссирийские Народные СказкиАутор НепознатАфганский ФольклорАфрикано-бразильская МелодияАфриканская СказкаАфриканская нарАфриканские Народные СказкиБiлектiң ӘнiБазар ЖырауБашкирские НаигрышиБашкирские нар. песниБеларуская НароднаяБелорусская Нар. ПесняБелорусская Народная ПесняБелорусская нар. песняБелорусский ТанецБелоруссская Нар. ПесняБирманская Нар. СказкаБогослужебный ЗборникБогослужебный Зборник, Грузинский НапевБогослужебный Зборник, Обиходный Напев, 6 ГласБолгарская ПесняБразилска ПесенБразильская Нар. ПесняБразильская ПесняБретаньБретонская НароднаяБугарска Популарна ШансонаБуковинська нар. пісняБълг. Нар. ПриказкаБългарска Народна МузикаВагантыВенгерская Нар. ПеснаяВенгерская Нар. ПесняВенгерская Народная ПесняВенгерский Нар. ТанецВенгерский народный танецВеночек Украинских Нар. ПесенВеснянкаВесь НародВесільна нар. мелодіяВлашка НароднаВолинська нар. пісняВосточная МелодияВьетнамская СказкаГалисияГилякская Народная ПесняГлас 4 Синодального РаспеваГор. ФольклорГородской РомансГородской ФольклорГрадски ФолклорГрадски фолклорГрађанскаГрађанска ПесмаГреко-Латино-Славянские (Богослужебный Зборник)Греческая нар. ПесняГреческая песняГреческий РаспевГрузинcкая Hаpодная ЛесняГрузинская Нар. ПесняГрузинская Народная ПесняГрузинская ПесняГрузинская народная песняГрузинские Шуточн. ЧастушкиГрузинский РаспевГрузинська ПісняГръцки ФолклорГръцки фолклорГуральська Народна ПісняГурийская ВрачевальнаяГурийская КолыбельнаяГурийская ЛирическаяГурийская ТрудоваяГурийская ШуточнаяДагестанские СказкиДве Песни Американских КреоловДвороваяДворовая СюитаДетская ПесенкаДетскиеДревнеЕврейская ПесняДревнегреческий Напев (Монастырский Напев)Древняя Китайская МелодияЕврейская Нар. ПесняЕврейская НароднаяЕврейская Народная ПесняЕврейская ПесняЕврейская нар. песняЕстон. нар. пісняЕстонська Нар. ПісняЖниварськаЗаживна КолядкаЗакарпатська народна пісняЗнаменное МногоголосиеЗнаменный РаспевИз Летописи XI ВекаИз песен каторжанИзворнаИзворна ПјесмаИзраелска НароднаИкутская народная песняИмеретинская ТрудоваяИнгерманландская НароднаяИндийская МантраИндийская СказкаИндонезийская Нар. ПесняИндонезийская Народная ПесняИндонезийская ПесняИнородныйИракская ПесняИранская Нар. ПесняИранская Народная ПесняИрландияИспанска НароднаИспанская Нар. ПесняИспанская НароднаяИспанская Народная ПесняИспанская ПесняИспанская СказкаИспанская нар. песняИспанская народная песняИспаская песняИтал. Нар. ПесняИтал. нар. песняИтал.народн.Италианска НароднаИтальянская МелодияИтальянская Нар. ПесняИтальянская Народная ПесняИтальянская Народная песняИтальянская ПесенкаИтальянская ПесняИтальянская СказкаИтальянская народная песняИтальянская народная сказкаИтальянская песняИтельменская народная песняЙорданськаКазахск. Нар. МелодияКазахская Народная ПесняКазахская ПесняКазацкая Народная ПесняКалмыцкая Народная ПесняКаноническиеКаноническийКарталино-кахетинская ХороводнаяКастильская ПесняКаталонский ТанецКахетинская КолыбельнаяКахетинская ПоходнаяКахетинская ТрудоваяКахетинская Шуточно-плясоваяКахетинские ЧастушкиКитайская револ. песняКијевскоКлассикКлассическая МелодияКлассическая мелодияКлуб Шанувальників Микулинецького ПиваКолядкаКорейская Нар. ПесняКреольская нар. песняКуб.. песенКубанесКубинск. ПесняКубинска ПесенКубинска Хумористична ПесенКубинская Нар. ПесняКубинская Народная МелодияКубинская Народная ПесняКубинская ПесняКубинская народная песняКупальськаКурдская ПесняКыргыз Эл ОбонуКюрдски ФолклорЛатинские (Древне-Христианский Гимн)Латиська Нар. ПісняЛемківська Нар. ПісняЛемківська Народна ПісняЛесня HаpоднаяЛирическая свадебнаяЛитовская Народная ПесняЛитовська нар. пісняЛитургическийМакедонска Изворна ПеснаМакедонска НароднаМакедонска Народна ПеснаМакедонска Традиционална ПеснаМакедонски НародниМакедонски ТрадиционалниМакедонски Традиционални Љубовни ПесниМакедонски фолклорМакедонська НароднаМалороссійская пѣсняМантрыМађарскаМегрельская ШуточнаяМексикан. нар. песняМексиканск.Мексиканска Народна ПесенМексиканска ПесенМексиканска ТрадиционалнаМексиканска Традиционална ПеснаМексиканская песняМексиканская Нар. ПесняМексиканская НароднаяМексиканская Народная ПесняМексиканская ПесняМексиканская нар. песняМексиканская народная песняМескик. Нар. ПесняМескиканская Нар. ПесняМескиканская Народная ПесняМолд. Нар. ПісняМолд. нар. пісняМолдавск. Колхозн. ПесняМолдавск. МелодияМолдавск. Нар.Молдавск. Нар. ПесняМолдавская МелодияМолдавская Нар. ПесняМолдавская НароднаяМолдавская Народная МузыкаМолдавская Народная ПесняМолдавская народная песняМолдавскаяНародная ПесняМолдавский ТанецМолитваМонастырский НапевМонгольская Народная ПесняМонгольская СказкаМордовская нар. песняМосковски Традиционални НапевМосковский НапевМуз. И Сл. НародныеМуз. И Слова НародныеМуз. Нар.Муз. НароднаяМуз. ТрадиционнаяМуз. и сл. НародныеМуз. и сл. нар.Муз. и сл. народныеМуз. и слова неизв. авторовМуз. нар.Муз. народнаяМуз. неизв. автораМузика З ВолиніМузика НароднаМузика Народів ПоділляМузика Та Слова НародніМузыка Гимна Американских Джазовых МузыкантовМузыка И Слова НародныеМузыка НароднаяМузыка ТрадиционнаяМузыка и слова народныеМузю нар.Нaр. Мелодия Лaтинcкoй AмeрикиНaроднаНанайская Народная ПесняНанайская народная песняНапев Воскресенского МонастыряНапев Киево-Печерской ЛаврыНапев Ново-Афонского МонастыряНар.Нар. Афган.Нар. ИрландскаяНар. Колыбельная ПесняНар. МелодияНар. ПакистанНар. ПенияНар. ПесенНар. Песен От Турското РобствоНар. Песн КомиНар. ПесняНар. ПриказкаНар. ПісняНар. ПѣсенъНар. ПѣсняНар. РазбрајалицаНар. ТанецНар. Танец С ЗонтикамиНар. песняНардонаНардона / ОбработкаНародНарод БеларусНарод. Мел.Народ. песняНароденНародн.Народн. Малорос. пѣсняНароднаНародна - ОбрадаНародна = NarodnaНародна БаладаНародна Епска ПјесмаНародна ОбрадаНародна Партизанска ПјесмаНародна ПесенНародна ПесмаНародна Песма = Narodna PesmaНародна ПеснаНародна Песня Из Белгородской ОбласиНародна Песня Южной РоссииНародна ПісняНародна Пісня 18 ст.Народна Пісня Другої Світової ВійниНародна СловеначкаНародна мелодияНародна/ОбработкаНароднаяНародная ИтальянскаяНародная Кельтская МелодияНародная Китайская XI-VI Век До Н.Э.Народная МудростьНародная Музыка XVI В.Народная Музыка Внутренней МонголииНародная ПесняНародная Песня ГаныНародная ПѣсняНародная Чешская ПесняНародная английская песняНародная песняНародная песня Воронежской губернииНародная песня Ростовской губерниНародная пѣсняНародная русская песняНародниНародноНародно - АрмейскиеНародно ОроНародно-АрмейскиеНародныeНародныеНародные (Монастырский Напев)Народные (Пасхальный Кант)Народные ПесниНародные музыкальные темы и мотивыНародный Распев Северо-западный РегионНародніНародні КолядкиНародні наспіви БессарабіїНароды МираНеаполитанская ПесняНеаполитанская народная песняНеаполитанская песняНегритянская МелодияНегритянская Нар. ПесняНегритянская Народная ПесняНегритянская ПесняНегритянская СказкаНегритянская песняНегритянский CпіричуелНеизв.Неизв. АвторНеизвестенНеизвестноНеизвестныйНеизвестный АвторНемецкая Народная ПесняНемецкая Народная СказкаНемецкая ПесняНемецкая Революционная ПесняНепознати ГусларНивхская Народная ПесняНије НаведеноНорвежская ПесняНороднаяНородныеОбиходОбоны ӨлдикиОбраб. франц. песниОбработкаОбработка Русской Народной ПесниОбрадаОрыстың Халық ӘніОҳанги ХалқПарагвайская нар. песняПеруанская Народная ПесняПеруанская ПесняПеруанская народная песняПесма Из Аустралије - Трад.Песни Венгерских ЦыганПесня Американских РабочихПесня Болгарских ЦыганПесня Венгерских ЦыганПесня Гражданской ВойныПесня Испанских ЦыганПесня Молдавских ЦыганПесня ПартизанПесня Русских ЦыганПесня Рыбаков Острова ХоккайдоПесня плачПесня словацких цыганПесня-ПляскаПесня-пляскаПесня-пляска с хоромПесня-размышлениеПляска С ХоромПлясовая песня Воронежской обл.По Мотивам НародныхПовстанська ПісняПольская Нар. ПесняПольская Народная ПесняПольская ПесняПольська Народна ПісняПопулярен НапевПопурри На Темы Русских Народных ПесенПопурри из русских народных песенПопурри из русских песенПопурри из уличных песенПорто-Риканская ПесняПорто-риканская ПесняПортугальская Народная ПесняПочти ДвороваяПреработкаПривітальнаПрилепска Традиционална ПеснаПутеводный РаспевРНПРаспев Киево-Печерской ЛаврыРаспев Ново-Афонского МонастыряРеволюционнаяРеволюционная ПесняРеволюційна пісняРомансыРомскаРомски ФолклорРомски фолклорРомська Народна ПісняРос. Нар. ПісняРосійська Народна ПісняРумунска ИграРумънски ФолклорРумънски фолклорРумынск. ПесняРумынская МелодияРумынская Нар. МелодияРумынская Нар. ПесняРумынская Народная ПесняРумынская ПесняРус. НароднаяРус. нар.Рус.Нар.ПесняРускаРуска / Russian TuneРуска НароднаРуска Народна ПесенРуска ТрадиционалнаРуска народнаРуска народна песенРуски фолклорРусск. Нар.Русск. Нар. ПесниРусск. Нар. ПесняРусск. ПесняРусск. нар. песняРусск. народ. песняРусск.Нар.ПесняРусская Нар. ПесняРусская Нар. СказкаРусская Народна ПесняРусская НароднаяРусская Народная ПесняРусская Народная МелодияРусская Народная ПесняРусская Народная ПѣсняРусская Народная СказкаРусская Народная песняРусская Народная, Всемирный ШлягерРусская ПесньРусская ПесняРусская СказкаРусская нар. песняРусская народнаяРусская народная песняРусская песняРусская плясоваяРусские Нар. ПесниРусские Нар. ПрипевкиРусские Народные НаигрышиРусские Народные ПесниРусские Народные СказкиРусские СказкиРусские нар. песниРусские народные песниРусские народные песни в обр. Б. КироваРусский медленный танецРусский романсСаамская Народная ПесняСамоподобен Оптиной ПустыниСванская ЛирическаяСевдалинкаСеверная Нар. СказкаСеверная Народная ПесняСеверный Духовный НапевСеверный Духовный СтихСелска ИдилияСербская Народная ПесняСербська Народна ПісняСеренадаСибирская ПлясоваяСказки Народов Тайги И ТундрыСл. Нар.Сл. НародныеСл. нар.Сл. народ.Сл. народныеСлова НародныСлова НародныеСлова НародныуСлова НародніСлова РадянськіСлова Участников ХораСлова народныеСлова неизв. автораСловацкая Народная ПесняСловацкая ПлясоваяСовременная Укр. Нар. ПесняСпиричуэлСплет Ирских ПесамаСпірічуелсСредневековое Армянское ПеснопениеСрпска Комитска ПесмаСрпска Народна ПесмаСрпска Народна Ратна ПесмаСрпски традиционалСрпско, Руско, БугарскоСръбски ФолклорСръбски фолклорСтар. РомансСтара Градска ПесенСтара РомансаСтарин Цыганск ПесняСтарин. романсСтаринен романсСтаринная Волжская ПесняСтаринная Восточная МелодияСтаринная Народная ПесняСтаринная Негритянская ПесняСтаринная Революционная ПесняСтаринная Русская ПесняСтаринная Солдатская ПесняСтаринная Студенческая ПесняСтаринная Таборная ПесняСтаринная Цыганская ПесняСтаринная Шахтерская ПесняСтаринная Школьная ПесняСтаринная песняСтаринная русская песняСтаринная татарская народная песняСтаринная цыганская песняСтариннная цыганская песняСтаринные РомансыСтаринные русские романсыСтаринный ВальсСтаринный Городской ФольклорСтаринный КантСтаринный МаршСтаринный НапевСтаринный РаспевСтаринный РомансСтаринный Романс]Старинный РомансиСтаринный Русский РомансСтаринный Французский ТанецСтаринный вальсСтаринный романсСтаринный русский романсСтаро Српско КолоСтаро Хавайска Народна ПесенСтаровинна ДумаСтаровинний КантСтихи НародныеСтроевая кубанская песняСтуденческая песняСыпыра ЖырауТаборная ПесняТаджикская Классическая МелодияТаджикская Сказка-ЛегендаТатарская Нар. ПесняТатарская Народная ПесняТатарские нар. песниТатарские народные песниТекст НароденТожик Халқ КуйиТрад.Трад. Версия Студ. Фольклора Ленинградского Политехнического ИнститутаТрад. ТемаТрад., Ближний ВостокТрад..Традиц. МексиканскаТрадиционТрадиционалТрадиционала Неиндетификувана ПеснаТрадиционален МотивТрадиционалнаТрадиционална ЕгејскаТрадиционална МексикансаТрадиционална Песма Из ЈапанаТрадиционалниТрадиционални МотивТрадиционалноТрадиционен фолклорТрадиционна циганска песенТрадиционнаяТрадиционная Бразильская СамбаТрадиционная ТемаТрадиційнаТри Негритянские „Спиричуэлс“Тувинская НароднаяТурецк. Нар.Турецкая МелодияТурецкая Нар. ПесняТурецкая ПесняТуркменская Народная ПесняТурска НароднаТурски ФолклорТурски фолклорУзб. нар. мелодияУзбек Халк (Узбекская народная)Узбекская Классическая МелодияУзбекская НароднаяУзбекская ПесняУзбекская народнаяУкр. Історична ПісняУкр. Нар.Укр. Нар. ПесниУкр. Нар. ПесняУкр. Нар. Песня (Закарпатская)Укр. Нар. Песня (Полесская)Укр. Нар. Повстанська ПісняУкр. Нар. ПісняУкр. Нар. ПісніУкр. Нар. Стрілецька ПісняУкр. НародУкр. Народна ПісняУкр. нар.Укр. нар. пicняУкр. нар. песняУкр. нар. пісняУкр.нар.Украинксая НароднаяУкраинская КолядкаУкраинская Нар. ПесняУкраинская НароднаяУкраинская Народная ПесняУкраинская ПесняУкраинская нар. песняУкраинская народная песняУкраинские Народные ПесниУкраиньска народна пiсняУкраиньска пiсняУкраїнська Нар. ПісняУкраїнська НароднаУкраїнська Народна МелодiяУкраїнська Народна ПісняУкраїнська колядаУкраїнська нар. мелодіяУкраїнська нар. пісняУкраїнська народнаУкраїнська народна пісняУкраїнська щедрівкаУкраїнської Діаспори В КанадіУкраїнські Нар. ПісніУкраїнські НародніУкраїнські Народні КазкиУкраїнські Народні ПісніУличная песняУльчская Народная ПесняУральский Духовный СтихФантазия На Тему Старинного РомансаФинская Нар. ПесняФинская Народная ПесняФолк.ФольклорФранц. ПесняФранцияФранцузская Нар. ПесняФранцузская НароднаяФранцузская Народная СказкаФранцузская ПесенкаФранцузская СказкаФранцузская песняФронтовая ПесенкаХалық ӘніХиландарски МонахХоразм Классик КуйиХорватская ПесняХрен Его ЗнаетЦиганскаЦигански ФолклорЦигански фолклорЦиганські Народні ПісніЦрквенаЦърковна НароднаЦыг. ПесниЦыганск. Нар. ПесняЦыганскiй романсьЦыганскаяЦыганская Нар. ПесняЦыганская Народная ПесняЦыганская ПесняЦыганская ТаборнаяЦыганская Таборная ПесняЦыганская нар. песняЦыганская песняЦыганские Нар. ПесниЦыганские ПесниЦыганский ВальсЦыганский РомансЦыганский романсЧастушкиЧешская Народная СказкаЧешская ПесняЧил. Нар. ПесенЧилийская Народная ПесняЧилийская народнаяЧукотская Народная ПесняШаманская Песня АлгышейШведская ПесняШвейцарская Нар. ПесняШотл. наШотл. нар.Шотладская Народная ПесняШотладская ПоэзияШотландская МелодияШотландская Нар. ПесняШотландская Народная ПесняШотландский ЭпосШпанска РомансаШуба-Дуба - Бабушка ЛамбадыШуточная Песня Молдавских ЦыганШуточная Русская Нар. ПесняШуточная Украинская Нар. ПесняШуточная Цыганская Народная ПесняШуточная песняЩедрівкаЭлдикиЭст. Нар. ПесняЭстонская Народная ПесняЭстонская ПесняЭстонская народная песняЭфиопская Нар. ПесняЮгославская Народная ПесняЯворівська Народна ПісняЯкутские НаигрышиЯмайская Нар. ПесняЯпонска Hар. ПесенЯпонская Народная ПесняЯпонская Народная СказкаЯпонская СказкаЯпонская нар. песняЯпонская народная песняЯпонская песняавтор неизв.азербайджанская нар. песнябелорусская нар. песнягрузинская песняиспанская нар. песнякраїнська Народна Піснякубинская нар. песнялемківська народналемківська народна піснямолдавская народнаямолдавский народный танецмуз. нар.муз. народнаямузыка народнаянар.нар. песнянар. пѣснянароднароденнароднанароднаянародная песнянародная песня-танецнародная пѣснянародная, обр. И.Снеговнародная, обр. С.Горбачевнароднинародныенародный женский танецнародный наигрышнародный танецнароднінеизвестный авторполесская нар. песняпопурри болгарских народных песенпоэзия Вагантовромски фолклоррусская нар. песнярусская народная песнярусская народная полькарусская народная пѣснярусская пѣснярусская пѣсня (со свистомъ)сельский наигрышсл. нар.сл. народныесл.нар.сл.народніслова из старинных духовных песнопенийслова народныеслова народніспиричуэлстарин. маршстарин. русск. песнятаджикская нар. мелодиятанкова пiснятрадиционна ортодоксална литургияукр. нар. пiсняукр. нар. песняукр. нар. пісняукр. нар. пісня, слова народніукр. народна пісняукр. песняукр. шуточная песняукраинская нар. песняукраинская шуточная песняукраинские нар. колядкиукраїнська народнаукраїнська народна пісняфинская народнаяфолклорнациганські народніцыганск. нар. песняєврейські народніԱզգայինאוסף הנביאיםאוסף מליקוטי תפילותאלוהיםאנתולוגיה לחזנות ספרדית מאת יצחק לויבמדבר כד‫'במדבר, כ"ח, פסוק ט'‏במה מדליקין, פרק ב' במשנת מסכת שבתבקשותבראשית מ"הברכת המזוןברכת השחרדברי הימים ב' פרק כ"ודברי הימים ב' פרק כ"ו פס' ט'–י'‏דברי הימים ב'‏דברים ד‫'דברים ו', פסוק ד'‏דברים ט"זדברים ט״ודוד המלךדוד המלך (תהילים)דוד המלך, תהלים נ"אדוד המלך, תהלים קי"טדוד המלך-תהילים ה‫'דוד המלך-תהילים לו‫'דוד המלך-תהילים קי"דה' יתברךהגדההודיהמסע לפלולים והאגם בפושקרהמקורותהנוסח המסורתיהתנ"ךזהר מתוך תיקון ליל שבועותזהר פ' תרומהזכריה ג, זזמירות מהתפילהזמירות שבתח"ב מתפילה ז‫'חדש מתימןחסידיחסידי עממיחסידיםחסידיתטוניסאייווניירמיהוירמיהו כ"ג, כ"דישעיהוישעיהו ב, ג‫'ישעיהו ח' 10ישעיהו ם, א'-ב‫'ישעיהו נב, ז'-ח‫'ישעיהו נב‫'לאדינולחן עםליקוט מליקוטי התפילותליקוטי מוהר"ן ג‫'ליקוטי מוהר"ן כ"בליקוטי מוהר"ן תורה קנ"וליקוטי תפילותליקוטי-מוהר"ןלקוח מקבלת שבתמגילה ו, במגילת איכהמגילת אסתרמגילת אסתר פרק ח' פס' ט"ו–ט"זמהמקורותמהמקורות-חסידי/עממימהמקורות-עממימהתפילותמליקוטי עצותמלכים ב, ג, טומן ההגדהמן המקורותמן המקורות (משלי)מן הסידורמן התנ"ךמן התפילהמנגינה עממיתמנגינה רוסיתמנחה של שבתמסורתמסורתימסורתי חסידימסורתי מהתנ"ךמסורתי מן התפילהמסורתי עממימסורתי עתיקמסורתיותמסורתיות. תרגום מערביתמקורותמקורות ישראלמקורימקורי עממימקוריתמקןרותמרוקאימרוקאי כפרימרוקאי עתיקמרוקנימשלימשלי ג' 28משלי ל"אמתוך "שיר השירים"‏מתוך "תהילים"‏מתוך איגרת פולוסמתוך ברכת ההפטרה בתפילת שבת בבוקרמתוך ברכת המזוןמתוך האגדהמתוך האנתולוגיה לחזנות ספרדית מאת יצחק לוימתוך ההגדה של פסחמתוך המדרשמתוך המקורותמתוך הסידורמתוך הסידור ליום הכיפוריםמתוך הפיוט "ויהי בחצי הלילה" מתוך ההגדה של פסחמתוך הקדמה לתהיליםמתוך התפילהמתוך מדרש תימני עתיקמתוך מחזור התפילה של חג הסוכותמתוך מסכת ברכותמתוך סידור התפילהמתוך ספר הרומנסות מאת יצחק לוימתוך פיוטי ההקפות בשמחת תורהמתוך קדישמתוך קהלתמתוך שיר השיריםמתוך תהיליםמתוך תפילות יום כיפורמתוך תפילת "שמע"‏מתוך תפילת השבתמתוך תפילת קידוש לבנהמתוך תפילת ראש השנהמתוך תפילת ראש השנה ויום הכיפוריםמתוך תפילת שחריתמתוך תפילת שמונה-עשרהמתפילת הנעילה ליום הכיפוריםמתפילת קבלת השבתנחלת הכללנעימה מזרחיתנעימה עממיתסדר הסליחותספר במדבר פרק י' פסוק לח'‏ספר דבריםספר הבקשותספר הזוהרספר הזוהר פרשת "ויחי"‏ספר הרומנסות מאת יצחק לויספר ויקראספר יחזקאל פרק ל"וספר ירמיהוספר ירמיהו (פרק לא', פסוקים יד'-טז')ספר ירמיהו (פרק לא, פסוקים יד–טז)ספר ישעיהוספר משליספר תהיליםעודד ונחמיה (שיר השירים)עודד ונחמיה (תהילים)עמוס הנביא, ח', י"אעממיעממי אמריקאיעממי אפריקאיעממי יוגוסלביעממי יווניעממי כרם התימניםעממי לאדינועממי לבנוניעממי מסורתיעממי פרסיעממי צועניעממי צרפתיעממי רוסיעממי תוניסאיעממי תימניעממי-איריעממי-אמריקאיעממי-אנגליעממי-חסידיעממי-יהודיעממי/מסורתיעממיתעפ"י נעימה ספרדיתערביפולקלורפיוט ליום הכיפוריםפיוט לשבת, בזמירון 'עונג שבת' עמ' 84‫...פיוט מסורתיפיוט סליחותפיוט סליחות מתוך סידור רב סעדיה גאוןפיוט שבת שירהפסוקים מישעיהו ל"ה וירמיהו ל"אפסוקים מישעיהו נ"בפסוקים משיר השירים ד'פרק ע"ג בתהיליםפרק קי"ח בתהיליםפרשת "האזינו" - ספר דבריםצרפתי עממיקהלתקהלת, פרק ג'‏קטע מהמקורותראש השנה יא, ארבי אמנון איש מגנצארות, פרק א', ט"ז - י"זריקוד עממירשב"ישבע ברכותשבע הברכותשיר הודי מסורתישיר השיריםשיר השירים - פרק ב' פסוק י"דשיר השירים ב' ח'‏שיר השירים ב', י"דשיר השירים ד' פסוק ח'‏שיר השירים ה, ב‫'‫שיר השירים פרק ו'‏שירי דודיםשמואל א" פרק י"זשמואל ב', פרק י"א, פסוקים ז'–ט"ושמות נ' ח'‏תהיליםתהילים כ"גתהילים ל"דתהילים מ"גתהילים ס"ג, פסוקים ב-גתהילים ע"א פסוקים ח'-ט'‏תהילים פרק אתהילים פרק סזתהילים פרק קח"כ, פסוקים ה' ו'‏תהילים פרק קכ"ב פסוקים ב' ג' ז' ח'‏תהילים פרק קכאתהילים צ"ותהילים צב‫'תהילים ק"ב, פסוקים א'–ה'‏תהילים ק"גתהילים ק"ז, פסוק א'‏תהילים ק', ב‫'תהילים קד‫'תהילים קי"חתהילים קי"ח, כ"חתהילים קי"ט פסוק צ"בתהילים קכ"ב, ו' - ח'‏תהילים קכ"ותהילים קכ"חתהילים קל"גתהילים קל"ז ה'-ו'‏תהילים קמ"זתהילים קמ"ז יב'-יג‫'תהילים קמ"ז, פסוקים יב', יג'‏תהילים קמהתהליםתהלים כו, חתהלים כ״חתהלים ק"נתהלים, כ"גתהלים, כ"ד, פסוק ז'‏תהלים, ס"ג, פסוקים ב'-ג'‏תהלים, ע"א פסוקים ח'-ט'‏תהלים, קט"ו, פסוק ט'‏תהלים, קי"חתהלים, קכ"ח, פסוק ה'‏תהלים, קמ"ז, פסוקים י"ב-י"גתורה ד‫'תורכיתימניתימני מקוריתימני עממיתנ"ךתנ״ךתפילהתפילה לראש השנהתפילות ליום הכיפוריםתפילות לראש השנהתפילת הדרךתפילת הדרך מתוך סידור רב סעדיה גאוןתפילת חנוך הצדיקתפילת מוסף לשבתתפילת שחריתתפילת שחרית ומוסף לשבתתפילת שמונה עשרתפילת שמונה עשרהתפילת שמונה-עשרהתפילת שמונה-עשרה וקדישתקוני זוהר נו‫:آهنگ خارجیآهنگ عربیآهنگ قديمىآهنگ قدیمیآهنگهای یونانیأثيوبياأفريقيألحان قديمةادبىاز قدیماعداد : نهاد طربيةافغانيافغانیالتراثالمألوف الليبىالمانیالموروث العربيايرانىبازسازىبازسازى آهنگ قديمىبازسازى شدهبازسازیبازسازی شدهبازساى آهنگ قديمىبازى آهنگ قديمىبدخشانیتراثتراث أردنيتراث إماراتيتراث إنشادي إسلاميتراث تونسيتراث تونسي قديمتراث جزائريتراث شعبيتراث صنعائيتراث عراقيتراث غربيتراث قديمتراث قديم مطورتراث قوميتراث مصريتراث نوبيتراث يمنيتراث يمني قديمترانه بيرجندىترانه هراتىترانه گيلكىتركيترلثترکیتواث قوميخارجیخسروانیزجل لبنانيسعوديشعبيشعبي قديمشعبي ليبيشعر القارةشعر عربي قدمشعر قديمشعر ليبى قديمشعرهاى قديمىشیرازیصوت عربي موروثعتيقعرب موسيقى سىغربيفلكلورفلكلور آردنيفلكلور أفريقيفلكلور بدوىفلكلور تركيفلكلور تونسيفلكلور جزائريفلكلور خليجيفلكلور شعبىفلكلور شعبيفلكلور شعبي سوريفلكلور عراقيفلكلور كرديفلكلور لبنانيفلكلور ليبىفلكلور مصري قديمفلكلور مطورفلكلور من الجزيرة العربيةفلكلور نوبيفورکلورفوكلورفولكلورفولكلور أرمنيفولكلور اردنيفولكلور ارمنيفولكلور تونسيفولكلور سوريفولكلور شعبيفولكلور عراقيفولكلورشعبيقديمقديمةقديمىقديمى بازسازىقدیمیقدیمی یونانیكتاب الفن و السامركلمات قديمةكلمات وألحان قديمةلحن بريميلحن شعبيلحن شعبي قديملحن فديملحن قديملحن مغربيلحن يونانيمئل قدیمیمتل قديمىمحلىمحلى بندرىمحليمحلیمحلی ارمنیمحلی از تاشقرغانمحلی افغانیمحلی بختیاریمحلی شیرازیمحلی فریابمحلی قوچانیمحلی هزارگیمحلی کابلیمحلی کردیمطورملحمة جلجامشمن ألحان المألوفمن الألحان الشعبيةمن التراثمن التراث الاردنيمن التراث البدويمن التراث الجزائريمن التراث السودانيمن التراث الشعبيمن التراث الصنعانيمن التراث القديممن التراث الكويتيمن التراث الموسيقى العربيمن الترلث اليمنيمن الشعر الصنعانيمن الشعر القديممن الفلكلور الشعبيمن الفولكلور الشعبيمن المغرب العربيمن تراثمن فولكلور المنصورةمن فولكلور المنوفيةموالموروثموروث - حايلنظم قديمهندىيمني قديميونانىيونانيپشتو سندرییونانیपरम्परिकपारंपरिकपारंपारिकपारम्परिकपौराणिकপরম্পরাগতপুরাতনীপ্রচলিতপ্রাচীন কবিਲੋਕ ਗੀਤપરંપરાગતપારંપારિકપ્રચલીતપ્રાચીનભૂલો ભલેલોકગીતശ്ളോകംขับเขียงขวาง ประยุกต์พื้นบ้านพื้นบ้านล้านนาพื้นเมืองพื้นเมืองลาวลาวล่องน่านเพลงพื้นบ้านลานนาเพลงพื้นบ้านล้านนาไทยเดิมไทยเดิมแปลงხალხ.ხალხურიὈρχήστρα„Maria Durch Ein Dornwald Ging“, Adernacher Gesangbuch„Nach Einer Alten Melodie“✭✭✭✽ ✽ ✽お囃子わらべうたわらべ唄アイルランド民謡アメリカの曲アメリカ民謡アメリカ,イギリス童謡アンデス民謡イギリスの曲イギリス民謡イングランド民謡ウクライナ民謡カタルーニャ民謡カタロニア民謡カリブ海民謡ガーナギリシャ古曲グルジア民謡シベリア民話スイス民謡スウェーデン民謡スコットランド民謠スコットランド民謡スペイン民謡トラディショナルドイツのあそびうたドイツの曲ドイツ民謡ハワイ民謡フィンランド民謡フランスの曲フランス古歌フランス曲フランス民謡ペルー民謡ボヘミア民謡ポーランド民謡メキシコメキシコの曲ロシアの曲ロシア民謡不詳不詳 Irish Traditional与那国民謡东北皮影調中国古曲中国地方民語中国地方民謡中国民謡京劇曲牌京都・竹田部落の守子唄より京都市伏見民謡京都民謡仏様伝承伝承歌伝承詩传统乐曲俗曲俚謠傳統樂曲八重山民謡八重山民謡~奄美民謡北方佛教音樂北海道民謡古典本曲古曲古歌古詞古謠古謡台東調台湾民謡台灣流行曲吉原囃子哈萨克族民歌四川清音地方民謡外国曲奄美大島シマ唄奄美大島民謡奄美民謡子守唄宮古島民謡宮古民謡富山県民謡山東古曲山西民间乐曲岩手民謡島根民謡廣東客家傳統祝文廣東潮州音樂恆春調愛媛県民謡新潟県民謡日本 古謡日本わらべうた日本わらべ歌日本古曲日本古童語日本古語日本古諦日本古謡日本曲日本民語日本民謡朝鮮民謡本島わらべうた東京のわらべうた民謡民間樂曲江南絲竹江蘇民歌江西贛南山歌沖永良部民謡沖縄俗謡沖縄俗謡歌沖縄本島わらべうた沖縄本島民謡沖縄民詞沖縄民謡河北梆子曲牌河南板頭曲泰國曲浙江舟山鑼鼓湘南地方伝承歌瀛洲古调烏克蘭傳統歌曲烏克蘭聖誕歌曲熊本地方子守歌熊本民謡熊本県民謡琉球民謡琴古流本曲甘肃民歌福島県民謡秋田伝承唄秋田県民謡秩父民謡童謡端唄竹富島民謡笛套古乐筑波伝承箏曲粤乐古谱粵曲維吾尓族乐曲維吾爾族民間樂曲维吾尔族民歌群馬民謡群馬県民謡聖誕歌曲能楽古典蒙古族民歌蘇南吹打樂賛美歌賛美歌75番那覇わらべうた鐘磬古樂陕北民歌雅楽雅楽古典青森県民謡韓国伝承曲(原題:Binari)高知民謡黒人霊歌경상도민요민요외국 민요외국곡Folk + +151793LoxJohn LoxleyUK electronic dance music DJ / producer, originally from Manchester, England +Style: Hard HouseCorrectDJ LoxJohn LoxleyJohn Loxley + +151851Wid & BenAndrew Widdop & Ben ThomasCorrecthttp://www.myspace.com/widandbenBen & WidThe Wid & Ben ExperienceWid And BenWid&BenAndrew WiddopBen Thomas (3) + +151938Georg KajanusGeorg Johan Tjegodiev Sakonski KajanusNorwegian composer, musician and producer, best known as the lead singer and songwriter of the successful British pop group [a=Sailor] in the 1970's, after which he explored electronic music with his own projects such as [a=Data (2)] and [a=And The Mamluks], as well as production work for artists such as [a=Peter Godwin] and [a=Nathalie]. + +Trilingual (Norwegian, French, English), Kajanus was born 9 February 1946 in Norway, where he spent the first thirteen years of his life in Trondheim and other locations around the country. Then moved to France, where he lived for about two years before his family uprooted again and moved to Montreal, Canada. At twenty years of age, left Canada, returning to Europe and settling in London, his home to this day. He is the partner of [a=Barbie Wilde].Needs Votehttps://www.facebook.com/GeorgKajanus/https://www.youtube.com/c/kajanusmusic/https://en.wikipedia.org/wiki/Georg_Kajanushttps://www.imdb.com/name/nm0435281/Bousbir BabaG. KajamusG. KajanosG. KajanusG. Kajanus, G. KajanusG. KajunusG. KatanosG. KayanusG.KajanusGKGeorgGeorg KajanuGeorge KajanusGeorges KajanusJ. KajanusKajanosKajanusKajanus GeorgKajanus, GeorgKajunasKanjanusKayanusKayopS.KajanusГ. КаянусGeorg HultgreenData (2)SailorAnd The MamluksNoir (5)EclectionKajanus Pickett + +152346JP & JukesyUK Hard House / NRG producers / DJs and partners in [l=Deprivation Recordings] and its sublabels.Correcthttp://www.jpandjukesy.co.ukJP & JukseyJP And JukesyJP JukesyAdam JukesJon-Paul Montgomery + +152402Louis Clark(27 February 1947 in Kempston, UK – 13 February 2021 in Ohio, US) was an English music arranger, keyboard player and conductor. (aged 73) + +Louis Clark worked as an arranger for many rock and pop artists: Roy Orbison. Ozzy Osbourne. Roy Wood. Kelly Groucutt. America. Kiki Dee. Carl Wayne. Juan Martin. Asia. Mike Berry. Renaissance. City Boy.Needs Votehttps://en.wikipedia.org/wiki/Louis_Clarkhttps://www.imdb.com/name/nm1198065/http://www.10538overture.dk/Members%20of%20ELO%20and%20Relatives/Louis%20Clark%20(ELO)/Fronts/louis_clark_history.htmlClarkClark LouisClarkeL ClarkL. ClarkL. ClarkeL.ClarkLewis ClarkLois ClarkLou ClarkLou ClarkeLouis "Becky" ClarkLouis C CarkLouis Clark Electric Light OrchestraLouis Clark RPOLouis ClarkeLuis ClarkЛ. КларкЛуис Кларкルイス・クラークElectric Light Orchestra Part IIRoyal Philharmonic OrchestraThe Orchestra (3) + +152564TechnikalAlfie Geno Raymond BamfordHard Trance / Hard Dance DJ & producer hailing from Basingstoke, England, UK. +Founded record labels [l=Kompression Digital] (2004) / [l=Kompression Records] (2005) as well as [l=Technikal Recordings] (2007-2014). +In 2015 he relocated to Sydney, Australia. +Contact: info@technikal.co.ukNeeds Votehttp://web.archive.org/web/20170427182819/http://www.technikal.co.uk/http://www.facebook.com/technikalmusichttp://myspace.com/technikalmusichttp://www.mixcloud.com/technikalmusic/http://soundcloud.com/technikoredjhttp://soundcloud.com/technikoredj/sets/technikal-musichttp://open.spotify.com/artist/4pHs90ktjf7gtmd2dvx4lfhttp://www.youtube.com/technikalfTechnicalTechnkalTeknikalAlf BamfordSolar ScapeElemental (3)Alfy XTechnikoreCritikal (2)Covered UpImmerzeOutsider (14)Ikorus + +152684Stanley CowellStanley Allen CowellAmerican jazz pianist +Born May 5, 1941 in Toledo, Ohio, USA, died December 17, 2020 in Dover, Delaware, USA + +He founded the record label [l=Strata-East] along with [a215033]. +Cousin of [a145850], the American hip-hop DJ, producer, MC and mixing engineer and member of rap group [a14759].Needs Votehttps://stanleycowell.bandcamp.com/https://www.nytimes.com/2020/12/20/arts/music/stanley-cowell-dead.htmlhttps://www.theguardian.com/music/2021/jan/05/stanley-cowell-obituaryhttps://www.washingtonpost.com/entertainment/music/stanley-cowell-jazz-appreciation/2020/12/18/36fbb688-4138-11eb-8bc0-ae155bee4aff_story.htmlhttps://www.washingtonpost.com/goingoutguide/music/stanley-cowells-jazz-odyssey-is-still-underway/2018/11/28/2593176e-ed1c-11e8-8679-934a2b33be52_story.htmlhttps://www.allmusic.com/artist/stanley-cowell-mn0000011303#biographyhttps://jazztimes.com/features/tributes-and-obituaries/stanley-cowell-1941-2020/https://jazztimes.com/features/profiles/stanley-cowell-never-too-late/https://www.npr.org/2015/04/24/401945018/stanley-cowell-on-piano-jazzhttp://en.wikipedia.org/wiki/Stanley_CowellCowellS. CowellS.CowellStan CowellStanley A. CowellStanley CavellStannley Cowellスタンリー-カウエルceMusic IncClifford Jordan QuartetMarion Brown QuartetStanley Cowell TrioStan Getz QuartetThe Heath BrothersMtume Umoja EnsembleThe Piano ChoirRashied Ali QuintetHutcherson-Land QuintetLarry Coryell QuartetStanley Cowell SextetJack DeJohnette QuartetStanley Cowell QuartetStanley Cowell QuintetDetroit Contemporary 4 + +152707Mel TorméMelvin Howard TormaAmerican jazz singer, composer, arranger, pianist, drummer, actor and author. +Born: 13 September 1925 in Chicago, IL - died: 5 June 1999 in Beverly Hills, Los Angeles, CA. +He worked with [a313097], [a357512] and with his own group [a349797]. He is perhaps best known for co-writing "The Christmas Song" (also known as "Chestnuts Roasting On An Open Fire") with [a=Robert Wells (2)]. +He was married to [a=Janette Scott] from 1966 to 1977 (divorced), both parents of [a=James Torme]. Needs Votehttps://en.wikipedia.org/wiki/Mel_Torm%C3%A9https://www.imdb.com/name/nm0868123https://www.britannica.com/biography/Mel-Tormehttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13019acce8251cfd0245bcb0f31e0f3aa71d0/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100014/Torme_MelFrances FayeH. M. TormeM TormeM, TorméM. H. TormeM. ThormeM. ThormèM. TomréM. ToméM. TormeM. TormèM. TorméM. TorneM. TornerM.H. TormeM.T.M.ThormeM.ToméM.TormeM.TorméMeMe TormeMel TormeMel "Mr Cool" TorméMel 'Mr Cool' TormeMel H. TormeMel O. FoggMel ThormeMel ThorméMel ThormêMel ThorneMel ToméMel TormEMel TormeMel Torme (1925-1999)Mel Torme'Mel TormèMel Tormé, b. Melvin Howard TormeMel TorméeMel TorneMel TornmeMel TornéMel TourmeMell TormeMell TorméMeltormeMelvin H TormeMelvin H TorméMelvin H. Mel TormeMelvin H. TormeMelvin H. TorméMelvin Howard "Mel" TormeMelvin Howard "Mel" TorméMelvin Howard Mel TorméMelvin Howard TormeMelvin Howard TorméMelvin TormeMelvin TorméT. TormeThe Intimate Mel TorméThe Mel Tormé (Piano) TrioThormeThorméThorneToméTorineTormeTorme'Torme, MTorme, MelTorme, Melville HTorme, Melvin HTormerTormèTorméTormé, MelTorneTurméМ. Тормеメル・トーメThe Mel-TonesMel Torme TrioMel Tormé And The RomanticsChico Marx And His OrchestraMel Torme And His All-Star QuintetMel Tormé And His Orchestra + +152999The Riot BrothersConsisting of members Guy Mearns and Gavin Mearns. +Legacy website (obsolete): www.stationmp3.com/riotbrothers Needs VoteRiot BrosRiot Bros.Riot BrothersRiotBrothersGuyverKronosMizukiMonz (2)UmaroAudio TTAntonio Menez3NDGAM3Forever LucidGr33ndogThink DriftGuy Mearns + +153472Sonny BurkeJoseph Francis BurkeJoseph "Sonny" Burke, American musical arranger, composer, Big Band leader and producer. +Born: March 22, 1914 in Scranton, Pennsylvania, +Died: May 31, 1980 in Santa Monica, California +[b]Note: For funk - soul - jazz keyboardist, use [a=Sonny Burke (2)]. +Do not confuse with songwriter [a=Johnny Burke] or [a=Joe Burke (3)].[/b] + +In 1937, he graduated from Duke University. During the 30s and 40s he was a big band leader in New York (including [a=Sam Donahue]'s band) and during the 40s and 50s he worked as a band arranger for the [a=Charlie Spivak] and [a=Jimmy Dorsey] bands, among others. He was also bandleader for recordings of leading singers such as [a=Ella Fitzgerald] and [a=Mel Tormé]. + +He is credited as co-composer of "Midnight Sun", the [a=Lionel Hampton] tune with lyrics by [a=Johnny Mercer]. He was an active arranger and bandleader in major recording studios, including Decca Records. Burke was musical director of [l157] and was responsible for many of [a=Frank Sinatra]'s albums. + +His song titles are listed at both BMI (with 61 titles) and ASCAP (with 210 titles).Correcthttp://en.wikipedia.org/wiki/Sonny_Burkehttp://www.imdb.com/name/nm0121870/http://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&keyid=46423&keyname=BURKE+JOSEPH&CAE=4608121&Affiliation=ASCAPhttps://adp.library.ucsb.edu/names/201296BrukeBurkBurkeBurke - BurkeBurke J FrancisBurkeiBurkerBurreEd PennerF. BurkF. BurkeF. BurksF. J BurkeF. J. BurkeF. J. BurkeF.BurkeF.J. BurkeF.J.BurkeFrancis BurkeFrancis J. BurkeFrancois J. BurkeJ. BurkeJ. F. BurkeJ. Francis BurkeJ.BurkeJ.F. BurkeJ.F. Sonny BurkeJay Francis BurkeJohnny BurkeJoseph BurkeJoseph F. "Sonnny" BurkeJoseph F. "Sonny" BurkeJoseph F. 'Sonny' BurkeJoseph F. BurkeJoseph Francis BurkeS BurkeS. BorkeS. BuriceS. BurkeS. BurkerS. DurkeS.BurkeSonnny BurkeSonnySonny BurqueSonny, BurkeSony BurkeSunny BurkeSônny BurkeTony Sonny Burkes burkeソニー・バークBill Fadden (2)Sonny Burke And His Orchestra + +153544Sandy LinzerSanford Linzer American songwriter, lyricist, and record producer. +Best known for his songwriting collaborations with [a142834], [a277171] and production company [a3760717] in the 1960s and 1970s. He co-wrote hits including "A Lover's Concerto", "Let's Hang On!", "Working My Way Back to You", "Breakin' Down The Walls Of Heartache", "Native New Yorker", and "Use It Up and Wear It Out". He was nominated with Randell for induction into the Songwriters Hall of Fame (SHOF) in 2012. + +Born: December 8, 1941 in Livingston, New Jersey + +Needs VoteF. LinzerJ. H. LinzerLinserLintzerLinzbrLinzerLinzer S.Linzer SandyLinzersLinznerLizerLuizerS LinzerS, LinzerS, LinznerS. LInzerS. LinS. LindzerS. LinserS. LinzeS. LinzenS. LinzerS. LinzerrS. UnzerS.LinserS.LinzeS.LinzerSLinzerSaady LingerSandy LincerSandy LindzerSandy LingerSandy LinverSandy LinzarSandy LinzenSandy LinzertSandy LinzërSandy LizerSandy LozerSandy LynzerSandy LyzerSanford LinzerTinzer + +153599Ken GoldChristian GoldBritish pop - soul musician - singer - songwriter + +One of the most prolific men of the British music industry, especially in the '70s and '80s. +He collaborated closely with [a=Michael Denne]. +He has masterminded hits for [a=The Real Thing], [a=Billy Ocean], [a=Delegation], [a=Liquid Gold], [a=The Nolans], [a=Ritz] etc.Needs Votehttp://www.alwynwturner.com/glitter/gold.htmlC. GoldGoldGold KentGold T.Gold, KenGoldeK GoldK. GoldK. GouldK.GoldKen GodKen GolfKen GouldKenn GoldKenneth GoldKennethe GoldKenny GoldChristian GoldThe Playground (2) + +154174Claudio MonteverdiClaudio Giovanni Antonio MonteverdiItalian composer (mainly of madrigals and operas), gambist, and singer and Roman Catholic priest. Born in Cremona, 15 May 1567 (baptized); died in Venice, 29 November 1643. + +Monteverdi's work is often regarded as revolutionary and marked the transition from the Renaissance style to that of the Baroque period. He developed two individual styles of composition: the new basso continuo technique of the Baroque and the heritage of Renaissance polyphony. Enjoying fame in his lifetime, he wrote L'Orféo, first performed in 1600 and often regarded as the first opera. L'Orfeo, is still regularly performed.Needs Votehttps://en.wikipedia.org/wiki/Claudio_Monteverdihttps://www.britannica.com/biography/Claudio-Monteverdihttps://www.treccani.it/enciclopedia/claudio-monteverdi/https://adp.library.ucsb.edu/names/102420C MonteverdiC. MonteverdiC.MonteverdiC.モンテヴェルデCL. MonteverdiCl. MonteverdiCl. MonteverdiClaudioClaudio MonteverdeClaudio MontverdiClaudion MontiverdiK. MontewerdiK. MontverdiMONTEVERDIMontenerdiMontererdMonterverdiMonteverdiMonteverdi C.Monteverdi, C.ΜοντεβέρντιА. МонтевердиК. МонтевердиКл. МонтевердиКлаудио МонтевердиМонтевердиクラウディオ・モンテヴェルディモンテヴェルディ + +154207Les PaulLester William PolsfussBorn 9 June 1915 in Waukesha, Wisconsin, USA +Died 13 August 2009 in White Plains, New York, USA + +Jazz, blues and country guitarist, songwriter, luthier, recording engineer and inventor. He designed one of the first solid body guitars, which made the sound of rock and roll possible. In the 1940s he made early experiments with overdubbing, delay effects such as tape delay, phasing effects and multitrack recording. +He recorded in the 1950s with his wife [a=Mary Ford] on vocals. +Inducted into Rock And Roll Hall of Fame in 1988 (Early Influence). +Needs Votehttp://www.lespaulonline.com/http://en.wikipedia.org/wiki/Les_Paulhttp://lespaulexperience.org/http://countrydiscography.blogspot.com/2010/09/les-paul.htmlhttps://adp.library.ucsb.edu/names/207737Jim Les PaulL. PallL. PauL. PaulL.PaulLee PaulLesLes Paul & FriendsLes Paul Plays Many Many GuitarsLes Paul Plays Many, Many GuitarsLess PaulLesterLés PaulP. LesPaulPaul Lesl.PaulЛ. ПолЛес ПолLester PolsfussRhubarb RedStuyvesant SkonchJay McShann And His OrchestraLes Paul & Mary FordLes Paul And His TrioLes Paul And His OrchestraRed Callender SextetThe Sunset All StarsStuyvesant Skonch & His OrchestraLes Paul & FriendsWillie Smith And His OrchestraWillie Smith And His Friends + +154285Sofia GubaidulinaRussian: София Асгатовна Губaйдулина, Tatar: София Әсгать кызы Гобәйдуллина, Eng: Sofia Asgatovna GubaidulinaSoviet / Russian composer +Born: 24 October 1931 Chistopol, Tatar Republic, Soviet Union +Died: 13 March 2025 Appen, Schleswig-Holstein, Germany +Composer of more than a hundred symphonic works, works for soloists, choirs, orchestras and instrumental ensembles, music for theatre, cinema and cartoons. +After instruction in piano and composition at the Kazan Conservatory, she studied composition with [a1389697] at the [l=Moscow Conservatory], pursuing graduate studies there under [a1437100]. She lived in Moscow until 1992, then made her primary residence Appen, a village outside Hamburg, Germany after the collapse of the Soviet Union. Her compositional interests were stimulated by the tactile exploration and improvisation with rare Russian, Caucasian, and Asian folk and ritual instruments collected by the "Astreia" ensemble, of which she was a co-founder, by the rapid absorption and personalization of contemporary Western musical techniques (a characteristic, too, of other Soviet composers of the post-Stalin generation including [a154286] and [a154287]), and by a deep-rooted belief in the mystical properties of music. Her uncompromising dedication to a singular vision did not endear her to the Soviet musical establishment, but her music was championed in Russia by a number of devoted performers including [a550913], [a550912], [a550910], and [a2203265]. The determined advocacy of [a359068], a dedicatee of Gubaidulina's masterly violin concerto, Offertorium, helped bring the composer to international attention in the early 1980s. Gubaidulina is the author of symphonic and choral works, two cello concerti, a viola concerto, four string quartets, a string trio, works for percussion ensemble, and many works for nonstandard instruments and distinctive combinations of instruments. Her scores frequently explore unconventional techniques of sound production. +In 2011, with the personal patronage and participation of Sofia Gubaidulina in Kazan, the annual festival of contemporary music named after her "Concordia" was founded by the State Symphony Orchestra of the Republic of Tatarstan / [a2985281], in which famous Russian and foreign composers and performers perform. The artistic director of the festival is Honoured Artist of Russia Alexander Sladkovsky / [a4249693]. +Married [a154285], who was her third husband.Needs Votehttps://en.wikipedia.org/wiki/Sofia_Gubaidulinahttps://ru.wikipedia.org/wiki/%D0%93%D1%83%D0%B1%D0%B0%D0%B9%D0%B4%D1%83%D0%BB%D0%B8%D0%BD%D0%B0,_%D0%A1%D0%BE%D1%84%D0%B8%D1%8F_%D0%90%D1%81%D0%B3%D0%B0%D1%82%D0%BE%D0%B2%D0%BD%D0%B0https://www.bach-cantatas.com/Lib/Gubaidulina-Sofia.htmhttps://www.imdb.com/name/nm0047035/GoebaidulinaGoubaidoulinaGoubaïdoulinaGubaidulinaGubaidullinaGubaydulinaR. GoubaïdoulineS. GoubaidoulinaS. GoubaidulinaS. GubaidulinaS. GubaydulinaSofia Asgatovna GubaidulinaSofia Asgatowna GubaidulinaSofia GoebaidoelinaSofia GoebaidulinaSofia GoubaidoulinaSofia GoubaïdoulinaSofia GubaidúlinaSofia GubajdulinaSofia GubaydulinaSofia GubaïdulinaSofija GubajdulinaSofiya GubaidulinaSofiya GubaydulinaSofja GubaidulinaГубайдулинаС. ГубайдулинаС.ГубайдуллинаСофия Асгатовна ГубайдулинаСофия ГубайдулинаСофья Губайдулинаソフィア・グバイドゥーリナAstreja + +154287Alfred SchnittkeAlfred Garyevich Schnittke (Russian: Альфред Гарриевич Шнитке)Alfred Schnittke (1934-1998) was born on 24 November 1934 in Engels, on the Volga River, in the Soviet Union. His father was born in Frankfurt to a Jewish family of Russian origin who had moved to the USSR in 1926, and his mother was a Volga-German born in Russia. Schnittke began his musical education in 1946 in Vienna where his father, a journalist and translator, had been posted. In 1948 the family moved to Moscow, where Schnittke studied piano and received a diploma in choral conducting. From 1953 to 1958 he studied counterpoint and composition with Yevgeny Golubev and instrumentation with Nikolai Rakov at the Moscow Conservatory. Schnittke completed the postgraduate course in composition there in 1961 and joined the Union of Composers the same year. He was particularly encouraged by Phillip Herschkowitz, a Webern disciple, who resided in the Soviet capital. In 1962, Schnittke was appointed instructor in instrumentation at the Moscow Conservatory, a post which he held until 1972. Thereafter he supported himself chiefly as a composer of film scores; by 1984 he had scored more than 60 films. Noted, above all, for his hallmark "polystylistic" idiom, Schnittke has written in a wide range of genres and styles. His “Concerto Grosso No. 1” (1977) was one of the first works to bring his name to prominence. It was popularized by Gidon Kremer, a tireless proponent of his music. Many of Schnittke's works have been inspired by Kremer and other prominent performers, including Yury Bashmet, Natalia Gutman, Gennady Rozhdestvensky and Mstislav Rostropovich. Schnittke first came to America in 1988 for the "Making Music Together" Festival in Boston and the American premiere of “Symphony No. 1” by the Boston Symphony Orchestra. He came again in 1991 when Carnegie Hall commissioned “Concerto Grosso No. 5” for the Cleveland Orchestra as part of its Centennial Festival, and again in 1994 for the world premiere of his “Symphony No. 7” by the New York Philharmonic and the American premiere of his “Symphony No. 6” by the National Symphony. Schnittke composed 9 symphonies, 6 concerti grossi, 4 violin concertos, 2 cello concertos, concertos for piano and a triple concerto for violin, viola and cello, as well as 4 string quartets and much other chamber music, ballet scores, choral and vocal works. His first opera, “Life with an Idiot”, was premiered in Amsterdam (April 1992). His two new operas, “Gesualdo” and “Historia von D. Johann Fausten” were unveiled in Vienna (May 1995) and Hamburg (June 1995) respectively. From the 1980s, Schnittke's music gained increasing exposure and international acclaim. Schnittke has been the recipient of numerous awards and honors, including Austrian State Prize in 1991, Japan's Imperial Prize in 1992, and, most recently the Slava-Gloria-Prize in Moscow in June 1998; his music has been celebrated with retrospectives and major festivals worldwide. More than 50 compact discs devoted exclusively to his music have been released in the last ten years. In 1985, Schnittke suffered the first of a series of serious strokes. Despite his physical frailty, however, Schnittke suffered no loss of creative imagination, individuality or productivity. Beginning in 1990, Schnittke resided in Hamburg, maintaining dual German-Russian citizenship. He died, after suffering another stroke, on 3 August 1998 in Hamburg. He was married to pianist [a1965440]. Father of [a906370].Needs Votehttps://www.schnittke.org/https://en.wikipedia.org/wiki/Alfred_Schnittkehttps://www.britannica.com/biography/Alfred-Schnittkehttps://www.imdb.com/name/nm0006289/A. SchnittkeA. ShnitkeA. ŠnitkeA.SchnittkeA.ShnitkeA.ШниткеAlfred Garijevic SchnittkeAlfred Garrievitch SchnittkeAlfred SchnitkeAlfred ŠnitkeSchnitkeSchnittkeShnitkeŠnitkeА. ШниткеА.ШниткеАльфред Гарриевич ШниткеАльфред ШниткеАльфред ШніткеШнитке + +154315Neal HeftiNeal Paul HeftiAmerican jazz trumpeter. +Born October 29, 1922, Hastings, Nebraska. +Died October 11, 2008, Los Angeles, California. +He married Woody Herman's vocalist [a=Frances Wayne] in 1945. + +Most famous for his work as composer and arranger especially for Woody Herman and Count Basie. +He began arranging professionally in his teens for Nat Towles. Played trumpet in the early '40s with [a=Bob Astor], [a=Les Lieber], [a=Charlie Barnet], [a=Bobby Byrne], [a=Charlie Spivak], and [a=Horace Heidt]. He joined up with [a=Woody Herman] in 1944 and gained a strong reputation for composing (e.g. "The Good Earth" and "Wild Root") and arranging (e.g. "Woodchopper's Ball" and "Blowin' Up a Storm") while still playing trumpet. +From 1950 he wrote dozens of songs for [a=Count Basie] including "Li'l Darlin'", "Cute", "Whirly Bird", "Little Pony" and "Kid from Red Bank". He also led his own band intermittently for a few years in the '50s but from the '60s concentrated on writing TV and film scores, e.g. themes from Batman, Barefoot in the Park, and The Odd Couple. +He charted eight times in the U.S. and two times in the U.K. between 1965-1995 as a songwriter, and two of those as the artist. His top charted song came in 1966, "Batman Theme" by The Marketts, which hit #17. The song also charted that same year by Hefti himself at #35 overall and #12 adult contemporary. In 1973 he had a crossover hit with "I Knew Jesus (Before He Was a Star)" by Glen Campbell (co-written by Stanley Styne). The song was #45 overall as well as #26 adult contemporary, and #48 country.Needs Votehttps://en.wikipedia.org/wiki/Neal_Heftihttps://www.imdb.com/name/nm0006126/https://www.britannica.com/biography/Neal-Paul-Heftihttps://www.jazzwax.com/2008/10/15/https://adp.library.ucsb.edu/names/103459DelanyH. HeftiHaftiHeal HeftiHefitHeftHeftiHefti, NealHefticHeftieHefttiHeftyHeftéHestiM. HeftiMeal HeastiMeal HeftiMeal HeftyN HeaftiN HeftiN. CheftiN. HeaftiN. HeffN. HeftN. HeftiN. HeftieN. HeftniN. HeftyN. HefzeN. HestiN. Van HeftiN.HeftiNHNail HeftiNeal HeaftiNeal HeasfNeal HefdeNeal HefriNeal HeftNeal Hefti And His OrchestraNeal Hefti ArrangementsNeal HeftieNeal HeftyNeal HestiNeal HoftiNeal-HeftiNear HeftiNeftiNeil HefdeNeil HeftiNeil HeftieNeil HeftyNel HeftiNiel HeftNiel HeftiPaul NielsonН. ХефтиН. ХэфтиНил ХэфтиХэфтиニール・ヘフティCount Basie OrchestraHarry James And His OrchestraWoody Herman And His OrchestraMetronome All StarsNeal Hefti's OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersGeorgie Auld And His OrchestraHarry James & His Music MakersNeal Hefti QuintetFlip Phillips FliptetWoody Herman And His Third HerdMel Powell And His OrchestraThe Neal Hefti SingersNeal Hefti And His Jazz Pops OrchestraThe Band That Plays The BluesNeal Hefti And The Band With The Sweet BeatNeal Hefti His Orchestra & ChorusNeal Hefti Sextet + +154498Charlie CalelloCharles James CalelloAmerican arranger, producer, conductor, composer, born in Newark, New Jersey on August 24, 1938. + +Started his career in the 50's along with [a=Frankie Valli] in [a1647445], first replacing [a708557] on bass from 1965 to 1966, and then becoming the arranger for [a121112] later on. +After his stint in the [a=The Four Seasons] he became staff arranger/producer at [l=Columbia Records]. +Has worked with top artists and super stars like [a=Frank Sinatra], [a=Neil Diamond], [a=Al Kooper], [a=Bruce Springsteen], [a=Laura Nyro], [a=Barbra Streisand], [a=Engelbert Humperdinck], [a=Ray Charles], [a=Juice Newton], [a=Janis Ian], [a=Barry Manilow], etc. +He charted three times as a singer (as Charlie Calello Singers) and six times as a songwriter--all between 1963 and 1979. His top singing song was "When I Tell You That I Love You", which made it to #32 on the U.S. adult contemporary chart. His top songwriter song was "New Mexican Rose" by The Four Seasons in 1963 which reached #36 in the U.S.Needs Votehttp://www.charlescalello.com/https://en.wikipedia.org/wiki/Charles_Calellohttps://www.imdb.com/name/nm0129843/https://adp.library.ucsb.edu/names/306632"Calello"BC CalelloC. CalelloC. CallelloC. CalleloC. CallettoC. ColelloC. CállelloC. GalelloC.CallelloCalelloCallelloCalleloCalleoCh. CalelloChares CalelloCharles CaeleloCharles CaielloCharles CalalleCharles CalelloCharles CallelloCharles CalleloCharles ColelloCharles ConradCharley CalelloCharlie CaleloCharlie CallelloCharlie CalleloCharlie CalleoCharlie CatelloCharlie ColelloCharlis CalelloCharls CalelloChas. CalelloColelloInstrumentalThe Four SeasonsThe Charlie Calello OrchestraThe Charlie Calello SingersThe Four Lovers + +155038Marvin HamlischMarvin Frederick HamlischAmerican composer, songwriter, conductor, singer and pianist. +Born June 2, 1944 in New York City, New York, USA and died August 6, 2012 in Los Angeles, California, USA. + +He is one of only two people to have been awarded Emmys, Grammys, Oscars, a Tony and a Pulitzer Prize. Hamlisch has also won two Golden Globes.Needs Votehttps://marvinhamlisch.com/https://www.facebook.com/marvin.hamlisch/https://www.youtube.com/user/hamlischmhttps://x.com/marvinhamlischhttps://www.instagram.com/marvinhamlisch/https://en.wikipedia.org/wiki/Marvin_Hamlischhttps://www.britannica.com/biography/Marvin-Hamlischhttps://www.imdb.com/name/nm0006121/E. HamlishE. KlebanH. HamlischH. HamlishH. MarvinHalischHalmichHamalishHamilschHamischHamishHamlichHamlischHamlisch MarvinHamlisch-M.HamlischdiHamlischedHamlishHamlish MarvinHamslischHanlischHeimlischM HamlichM HamlischM, HamlischM. HamalishM. HamelischM. HamilischM. HamilschM. HamiltonM. HamischM. HamishM. HamlischM. HamlisehM. HamlishM. HamrischM. HamslichM. HarmlischM. HawrischM.HamlischM.HamlishM.HomlischMamlishMarcin HamilschMarivin HamlischMartin HamlischMarvinMarvin / HamlischMarvin HamilischMarvin HamischMarvin HamlichMarvin HamlishMarvin HamllischMarvin HanlischMarvin HarmlischMarvyn HamlischMusic From The Sting Featuring Marvin Hamlisch On PianoS. HamlischW. HamlischМ. ХамлишМ. ХэмлишМарвин ХамлишХамлишמרווין המלישマービン・ハムリッシュ + +155967Frank Van RooijenFrank van RooijenDutch DJ and producerNeeds VoteF .V. RooijenF .v. RooijenF Van RooijenF. RooijenF. RooyenF. V. RooijenF. V. RooyenF. Van RodijenF. Van RooijenF. Van RooijnF. Van RooyenF. VanrooijenF. v RooijenF. v. RooijenF. van RooijenF. van RooyenF.V. RooijenF.V.RooijenF.Van RooijenF.v RooijenF.v. RooijenF.v.RooijenF.van RooijenF.van RooyFrank v. RooijenR. Van RooijenR. van RooijenRooijenVan Rooijenvan RooijenTrack EffectTresspassWim CockDJ FrancisStylizztixMVZZIKNightstalkersSound EnhancersMisdemeanourRadical 2 ReactDC ChantLock 'N LoadThe New GovernmentFlipped FantasiaGray-ScaleDevious MindsRollersquadMass AppealThe VigilanteIll BehaviourUnited DJ's Of UtrechtAttic & StylzzDastecDirty Herz + +156019Jon FaddisJonathan FaddisAmerican jazz trumpeter, conductor, and composer born on July 24, 1953, in Oakland, California, USA. He is the uncle of [a346740] (aka [a16508]).Needs Votehttps://web.archive.org/web/20230128203225/http://jonfaddis.com/https://web.archive.org/web/20080316081831/http://www.jonfaddis.com/https://en.wikipedia.org/wiki/Jon_FaddisFaddisFaddis JonJ. FaddisJan FadbisJoe FaddisJohn FaddisJohn McFadisJohn PaddisJohn SaddisJohn SadrisJohnf FaddisJon TaddisДж. Фэдисジョン・ファディスThe Players AssociationGil Evans And His OrchestraWhite ElephantLove Childs Afro Cuban Blues BandThe George Gruntz Concert Jazz BandThe Carnegie Hall Jazz BandThe Louisiana Gator BoysJaco Pastorius Big BandLalo Schifrin & OrchestraCharles Mingus SextetThe Gene Harris All Star Big BandThad Jones / Mel Lewis OrchestraThe Mysterious Flying OrchestraMingus Big BandJon Faddis QuintetMike Mainieri & FriendsFrank Foster And The Loud MinorityDick Voigt's Big Apple Jazz BandThe Tom 'Bones' Malone Jazz SeptetThe Pleasant Hill High School Concert Jazz BandBig Band De LausanneMichel Camilo Big BandBrad Leali Jazz OrchestraSwing SummitThe Eddie Barefield SextetMichel Legrand & Co.Mike LeDonne's Big BandThe Dizzy Gillespie™ Alumni All-Star Big Band + +156406Edith PiafÉdith Giovanna GassionFrench singer and cultural icon born December 19, 1915, in Paris, and died October 11, 1963, in Plascassier. + +Best known for singing songs "[r=867885]", composed by [a=Louiguy], with lyrics by Piaf, and English lyrics adapted by [a=Mack David]; and "[url=http://www.discogs.com/Edith-Piaf-Non-Je-Ne-Regrette-Rien/master/266272]Non, Je Ne Regrette Rien[/url]" written by [a=Michel Vaucaire], which rather fittingly she sung just two years before the end of her eventful life. + +In 1935 Piaf was discovered in the Pigalle area of Paris by nightclub owner Louis Leplée, whose club Le Gerny off the Champs-Élysées was frequented by the upper and lower classes alike. He persuaded her to sing despite her extreme nervousness, which, combined with her height of only 142 centimetres (4 ft 8 in), inspired him to give her the nickname that would stay with her for the rest of her life and serve as her stage name, La Môme Piaf (Parigot translatable as "The Waif Sparrow", "The Little Sparrow", or "Kid Sparrow"). Leplée taught her the basics of stage presence and told her to wear a black dress, later to become her trademark apparel. Leplée ran an intense publicity campaign leading up to her opening night, attracting the presence of many celebrities, including actor Maurice Chevalier. Her nightclub gigs led to her first two records produced that same year, with one of them penned by Marguerite Monnot, a collaborator throughout Piaf's life. + +On 6 April 1936, Leplée was murdered, and Piaf was questioned and accused as an accessory but was acquitted. Leplée had been killed by mobsters with previous ties to Piaf. A barrage of negative media attention now threatened her career. To rehabilitate her image, she recruited Raymond Asso, with whom she would become romantically involved. He changed her stage name to "Édith Piaf", barred undesirable acquaintances from seeing her, and commissioned Monnot to write songs that reflected or alluded to Piaf's previous life on the streets. + +In 1940, Édith co-starred in Jean Cocteau's successful one-act play "Le Bel Indifférent". She began forming friendships with prominent people, including Chevalier and poet Jacques Borgeat. She wrote the lyrics of many of her songs and collaborated with composers on the tunes. In 1944, she discovered Yves Montand in Paris, made him part of her act, and became his mentor and lover. Within a year, he became one of the most famous singers in France, and she broke off their relationship when he had become almost as popular as she was. + +During this time, she was in great demand and very successful in Paris as France's most popular entertainer. After the war, she became known internationally, touring Europe, the United States, and South America. In Paris, she gave Atahualpa Yupanqui (Héctor Roberto Chavero)—the most important Argentine musician of folklore—the opportunity to share the scene, making his debut in July 1950. She helped launch the career of Charles Aznavour in the early 1950s, taking him on tour with her in France and the United States and recording some of his songs. At first, she met with little success with U.S. audiences, who regarded her as downcast. After a glowing review by a prominent New York critic, however, her popularity grew, to the point where she eventually appeared on The Ed Sullivan Show eight times and at Carnegie Hall twice (1956 and 1957). + +Édith Piaf's signature song "La Vie En Rose" was written in 1945 and was voted a Grammy Hall of Fame Award in 1998. + +Bruno Coquatrix's famous Paris Olympia music hall is where Piaf achieved lasting fame, giving several series of concerts at the hall, the most famous venue in Paris, between January 1955 and October 1962. Excerpts from five of these concerts (1955, 1956, 1958, 1961, 1962) were issued on record and CD and have never been out of print. The 1961 concerts were promised by Piaf in an effort to save the venue from bankruptcy and where she debuted her song "Non, je ne regrette rien". In April 1963, Piaf recorded her last song, "L'Homme De Berlin". + +She was married to [a=Jacques Pills] between 1952 and 1956, and to [a=Théo Sarapo] from 1962 until her death in 1963.Needs Votehttps://web.archive.org/web/20220603112531/https://www.edithpiaf.com/https://en.wikipedia.org/wiki/%C3%89dith_Piafhttps://www.britannica.com/biography/Edith-Piafhttps://www.imdb.com/name/nm0681191/http://www.little-sparrow.co.uk/https://adp.library.ucsb.edu/names/337595E PiafE. PiabE. PiafE. PiaffE. PicafE. PiorE. PîafE.PiafEdit PiafEdit PiaffEdith GassionEdith Giovanna GassionEdith Piaf With ChorusEdith PiaffEdith PiafováEdyth PiafLa Mome PiafLa Môme PiafLa Môme Piaf Et Ses AccordéonistesPIAFPaifPiafPiaf EdithPiaf MonmotPiaf, E.Piaf-VargasPiaf. EPiaffPiafováPiasPlaffÈdith PiafÉ. PiafÉdithÉdith PiafΕντίθ ΠιαφЕдит ПиафЕдит ПјафЕдіт ПіафПиафЭ. ПиафЭдит Пиафאדית פיאףエディット・ピアフ에디트 삐아프Edith GassionLa Môme Piaf + +156712Miss Behavin'Niki PottertonNeeds Votehttp://web.archive.org/web/20081203193917/http://www.djmissbehavin.com/biography.aspMiss BehavinMs. BehavinKid Funk + +157090AirspaceIan BettsCorrectAirscapeIan Betts + +157416Eric SempelsEric Bruno Johan SempelsNeeds VoteE. SempelsE.SempelsE.SemplesEricClubwatchersMo'StyleRoyal Flush (2)The Groovaholic'sHavana ConnectionOro VerdeCavanaughRhythm Inc. (2) + +157707Wilhelm KempffWilhelm Walter Friedrich KempffGerman pianist and composer, born 25 November 1895 in Jüterbog, Germany, and died 23 May 1991 in Positano, Italy.Needs Votehttp://en.wikipedia.org/wiki/Wilhelm_Kempffhttps://adp.library.ucsb.edu/names/103266KempKempfKempffProf. Wilh. KempffProf. Wilhelm KempffProfessor Wilhelm KempffW. KampffW. KempffWalter KempffWilhelm KeampffWilhelm KempfWilhelm KepffWilhelms KempffWilhem KempffВ. КемпфВильгельм КемпфВильгельм Кемпф = Wilhelm KempffКемпфウィルヘルム・ケンプウイルヘルム・ケンプヴィルヘルム•ケンプヴィルヘルム・ケンプヴィルヘルム・ケンプ빌헬름 켐프 + +157873Michael LloydMichael Jeffrey LloydAmerican record producer, arranger, mixing engineer, editor, singer / songwriter, composer and multi-instrumentalist, born November 3, 1948 in New York. Co-owned [l2787638]. + +Other known studios: [l=Michael Lloyd Studio]Needs Votehttps://en.wikipedia.org/wiki/Michael_Lloyd_(music_producer)http://www.imdb.com/name/nm0516083/biohttps://twitter.com/michaellloydsrhttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=18294187&affiliation=ASCAP&keyid=204789&keyname=LLOYD+MICHAELJohn D'AndreaLloydLloyd-Michael'sLoydM . LloydM LloydM. LloydM. Lloyd/Michael'sM. LoydM.LioydM.LloydM.Lloyd - MichaelMicahel LloydMichaeel LoydMichael L. LloydMichael LloynMichael LlyodMichael LoydMicheal LloydMike LloydRudolphlloydThe West Coast Pop Art Experimental BandThe New DimensionsCotton, Lloyd & ChristianThe Smoke (3)The Rogues (5)The Laughing WindBoystownMarkleyThe Cattanooga CatsRockit (2)Friends (35)Raw Edge (2)Starship (7)The Arrogants (5)Scorpio Rises + +159831Carl Smith (2)Carl William SmithUS songwriter and producer active in Chicago, IL. Among his best known compositions are "(Your Love Keeps Lifting Me) Higher And Higher" and "Rescue Me".Needs Votehttps://repertoire.bmi.com/Catalog.aspx?detail=writerid&keyid=974495&subid=0&page=1&fromrow=1&torow=25C SmithC W SmithC. SmithC. W. SmithC.SmithC.W. SmihC.W. SmithC.W.SmithCarl W SmithCarl W. SmithCarl William SmithCarl William SnithCarl Williams SmithCarls SmithCh. SmithCharles SmithP. SmithPaul SmithSmithSmith G.Smith, CarlW C SmithW. C. SmithW.C. SmithW.C.SmithWilliam Carl SmithQuestarr + +159967Dom SweetenDom SweetenDom is undoubtedly one of the most popular & respected producers in the hard house/NRG arena. Over the years, he has been involved with a great number of classic tracks & remixes produced under various pseudonyms, most notably his [a=Defective Audio] alias & the longstanding partnership with [a=Superfast Oz] as [a=OD404]. + +Dom and Oz met whilst DJ'ing at gigs in Brighton during the mid 90's. They had similar tastes and both were interested in dabbling with music production, so they acquired some studio equipment and started crafting their art. Very few labels were initially interested and the duo later launched [l=Kaktai Records] in '97 as a platform for their music. + +Dom developed a preference for the studio and has since featured original productions & remixes in a variety of styles on every prominent label within the scene. Apart from his partnership in Kaktai Records, Dom also runs the hard house/NRG label, [l=Spinball Records] & [l=Battle Jaxx] which was an outlet for his funky hard house. + +Since mid 2004, Dom has managed to escape [i]Studio 404[/i] long enough for a few very select DJ appearances as well as [i]OD404 Live[/i] shows with Oz.Needs Votehttp://www.404studio.com/D SweetenD. SweetenD. SweetonD.SweetenDam SweetenDomDom SweetonDominicDominic SweetenSweetenSweetonDefective AudioBase GraffitiD.S.P. (2)Tomcat (2)El DurangozFreeflow 45Dominguez FunkJaffa RamakinDektronik DomThe Spider Trax Files404StudioOD404Satellite KidzFunky MonkeezMIDI-M.A.HyperloopChin Chiller + +160523Hal DavisHarold Edward DavisUS producer & songwriter, best known for his work for Motown Records and his work with the Jackson 5. +Born February 8,1933 in Cincinnati - died November 18, 1998 in Los Angeles + +Needs Votehttp://en.wikipedia.org/wiki/Hal_Davishttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=82560&subid=1DavidDaviesDavisDavis HalH DavidH DavisH, DavisH. DavidH. DaviesH. DavisH. E. DavisH.DavisHai DavisHalHal "Sonny" DavisHal DavidHal DaviesHal Davis And The CorporationHal.DavisHale DavisHarold DavisDanny DayDavis & GordonThe Hal Davis SingersThe Jaam Bros.The Victorials + +160600Jerry GoldsteinGerald GoldsteinUS American producer, singer/songwriter and musician (also appears as [b]Joe Goldstein[/b]). +Founder and president of [l=L.A. International Records], [l=LAX Records], [l=Far Out], [l=Far Out Music, Inc.], [l=Far Out Productions, Inc.]. [l=The Last Experience, Inc.] + +Associated acts: [a=The Strangeloves], [a=The Angels], [a=Blood, Sweat & Tears], [a=War], [a=Sly Stone], [a=Circle Jerks], [a=Jimi Hendrix], [a=The Jimi Hendrix Experience], [a=Eric Burdon]. + +[a=War] remains a trademark owned by Goldstein and [l=Far Out Productions] which forces the original members now to play as the "Original Lowriders" and due to legal restrictions they are not even allowed to advertise themselves as former members of the band. + +[b]Born:[/b] February 17, 1940 in Brooklyn, New York, USA.Needs Votehttps://www.AllMusic.com/artist/jerry-goldstein-mn0000328485https://www.CorporationWiki.com/California/Pacific-Palisades/jerry-goldstein/39809261.aspxhttps://www.CorporationWiki.com/California/Los-Angeles/gerald-goldstein/39758118.aspxhttps://www.CorporationWiki.com/California/Los-Angeles/the-last-experience-inc/40025875.aspxhttps://en.Wikipedia.org/wiki/Jerry_Goldstein_(producer)B. GoldsteinC. GoldsteinColdsteinG GoldsteinG. GoldsteinG. GoldstienG.GoldsteinGerald GodlsteinGerald GoldsteinGerold GoldsteinGerold GolsteinGerry GoldsteinGlodsteinGoldbeinGoldmanGoldseinGoldstainGoldstayGoldsteinGoldstein GeraldGoldstein, GGoldstenGoldstienGolsteinHarry GoldsteinJ GoldsteinJ. GodsteinJ. GoldJ. GoldsteinJ. GoldsteynJ. GolskeynJ. GolsteinJ.GoldsteinJerryJerry GoldsmithJerry GoldstienJerry GolskeynJerry GolsteinJo GoldsteinJoe GoldsteinS. GoldsteinSteinGiles StrangeThe StrangelovesThe Beach-NutsFeldman, Goldstein, GottehrerTen Broken HeartsThe Kittens (10)Bob & Jerry (2) + +160829Nat AdderleyNathaniel Carlyle AdderleyAmerican jazz cornet and trumpet player (born 25 November 1931 in Tampa, Florida, USA, died 2 January 2000 in Lakeland, Florida, USA (aged 68) + +Father of jazz keyboardist [a=Nat Adderley Jr.], brother of jazz saxophonist [a=Cannonball Adderley].Needs Votehttps://en.wikipedia.org/wiki/Nat_Adderleyhttps://www.britannica.com/biography/Nat-AdderleyA. AdderleyAdderleyAdderley NathanieAdderliAdderlyAderleyAderlyC. AdderleyC. AdderlyC. AdederleyCannonbal AdderlyCannonball AdderlyJ. AdderleyJ. AdderlyN AdderleyN AdderlyN.N. AddeleyN. AddereleyN. AdderleyN. Adderley JrN. Adderley SrN. Adderley Sr.N. Adderley, Jr.N. Adderley, Sr.N. AdderlyN. ÁdderleyN.AdderleyN.AdderteyN.AnderleyN.アダレーNad AdderlyNatNat "Cannonball" AdderlyNat Adderely Sr.Nat AdderlayNat AdderleNat Adderley Sr.Nat Adderley, Jr.Nat Adderley, Sr.Nat AdderlyNat Adderly, Jr.Nat AderleyNat AderlyNate AdderlyNathan AdderleyNathanial "Nat" AdderleyNathaniel AddderleyNathaniel AdderleyNathaniel AdderlyNathaniel Carlyle "Nat" AdderleyNathaniel [Nat] AdderleyR. AdderleyН. ЭддерлиНат Эддерлиナット アダレイナット・アダレイLittle Brother (2)Pat BrotherlyCannonball Adderley SextetThe Cannonball Adderley QuintetWoody Herman And His OrchestraThe J.J. Johnson SextetBenny Golson Funky QuintetNat Adderley SextetNat Adderley SeptetWoody Herman SextetRay Brown All-Star Big BandThe J.J. Johnson QuintetMilt Jackson OrchestraNat Adderley QuintetParis Reunion BandWoody Herman And The Fourth HerdPhilly Joe Jones SextetToshiko And Her International Jazz SextetThe Quincy Jones Big BandWynton Kelly SextetNat Adderley And The Big Sax SectionThe Adderley BrothersNat Adderley QuartetJimmy Heath SextetKing Curtis QuintetAll Star Big BandWoody Herman's Anglo-American HerdThe Riverside Reunion BandLionel Hampton And His French New SoundWes Montgomery All-StarsKenny Clarke SeptetCannonball Adderley All StarsJunat ProductionsWoody Herman Octet + +160872Steve KnightSteve KnightPlease note this is the Acid / Trance / House producer and not the former member of Mountain. +[b]For the Reggae singer please use [a=Steve Knight (8)][/b]Needs VoteDJ Stevie KS KnightS. KnightS.K.Sleeve KnightSteve KStevie KDBSKDigital PressureRSKNaxos ProjectThe White House Project4Matt9 + +161234Doc SeverinsenCarl Hilding SeverinsenCarl Hilding "Doc" Severinsen (born July 7, 1927 in Arlington, Oregon, USA) is an American pop and jazz trumpeter. + +In 1949, Severinsen landed a job as a studio musician for NBC, where he accompanied Steve Allen, Eddie Fisher, Dinah Shore, and Kate Smith. The leader of The Tonight Show Band, Skitch Henderson, asked him to be first-chair trumpeter in 1962, and five years later Severinsen was leading the band. Under Severinsen's direction, The Tonight Show Band became a well-known big band in America. Severinsen became one of the most popular bandleaders, appearing almost every night on television. He led the band during commercials and while guests were introduced. + +During the early 1960s, Severinsen began recording big band albums, then moved toward instrumental pop music by the end of the decade. In the 1970s he recorded jazz funk, then disco, finding hits with "Night Journey" and "I Wanna Be With You". He released an album with the jazz fusion group Xebron in 1985. During the next year, he recorded The Tonight Show Band with Doc Severinsen which won the Grammy Award for Best Large Jazz Ensemble Performance. After Carson retired in 1992, he toured with some of the band's members, including Conte Candoli, Snooky Young, Bill Perkins, Ernie Watts, Ross Tompkins, and Ed Shaughnessy.Needs Votehttp://en.wikipedia.org/wiki/Doc_Severinsenhttps://adp.library.ucsb.edu/names/343217"Doc" Severinsen"Doc" Seversen'Doc' SeverinsenC. SeverinsenC. SeverinsonCarl "Doc" SeverinsenCarl "Doc" Severinsen ConcertCarl "Doc" SeverinsonCarl (Doc) SeverinsenCarl H. (Doc) SeverinsenCarl H. SeverinsenCarl H. SeverinsonCarl SereinsenCarl SeverinsenCarl SeverinsonD. SeverinsenDocDoc S.Doc SerinsenDoc SeverensenDoc SeverensonDoc Severinsen & The Sound Of The '70'sDoc Severinsen & The Sound of the 70'sDoc Severinsen And "Friends"Doc Severinsen And FriendsDoc Severinsen, TrumpetDoc SeverinsonDoc SeverisonDoc SevernsonDoc SeversenDoc SverensonDoc. SeverinsenDon SeverDov SeverisenSeverensonSeverinsenSeverinson“Doc” SeverinsenGil Evans And His OrchestraCharlie Barnet And His OrchestraBilly Butterfield And His OrchestraBenny Goodman And His OrchestraOliver Nelson And His OrchestraSauter-Finegan OrchestraHenri René And His OrchestraEnoch Light And His OrchestraMilt Jackson OrchestraGerry Mulligan & The Concert Jazz BandJoe Reisman And His OrchestraThe Gary McFarland OrchestraRichard Maltby And His OrchestraUrbie Green And His OrchestraAll Star Alumni OrchestraThe Grand Award All StarsDoc Severinsen And His OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraThe Tonight Show BandMike Bryan And His SextetToshiko And Her International Jazz SextetBob Brookmeyer And His OrchestraOrizaba And His OrchestraThe Doc Severinsen SextetUrbie Green and His 6-TetSal Salvador And His OrchestraPeter Appleyard OrchestraThe BrassmatesDoc Severinsen And His Big BandJim Timmens And His Swinging BrassBen Homer & His Orchestra + +161696Nanette WorkmanNanette Joan WorkmanAmerican singer-songwriter, actress and author, born November 20, 1945, in Brooklyn, New York, USA, who has been based in Quebec, Canada during much of her career. She was raised by musician parents in Jackson, Mississippi where she began her first performances. She mainly performs in French although raised as a native English speaker. During her career she has recorded together with numerous well-known musicians in the US, Canada, England, and France. + +Many of her early recordings were released under the mononym Nanette. In 1969 she moved to England, where she worked under the alias Nanette Workman for a brief spell. +Correcthttps://web.archive.org/web/20201026223419/http://nanetteworkman.com/https://en.wikipedia.org/wiki/Nanette_WorkmanN. WorkmanNanetteNannetteNannette WorkmanWorkmanNanette NewmanFondation Québec-Afrique + +162564Astor PiazzollaÁstor Pantaleón PiazzóllaArgentine bandoneon player, orchestra director, and tango composer (Born: 11th March 1921, Mar del Plata, Argentina. Died: 4th July 1992, Buenos Aires, Argentina.) +He arranged, directed and sometimes recorded the scores of over a hundred films and theatre shows. +Father of [a7286080], and grandfather of [a892573].Needs Votehttps://astorpiazzolla.it/https://es.wikipedia.org/wiki/Astor_Piazzollahttps://en.wikipedia.org/wiki/Astor_Piazzollahttps://www.britannica.com/biography/Astor-Piazzollahttps://www.naxos.com/person/Astor_Piazzolla/21177.htmhttps://www.imdb.com/name/nm0006226/https://adp.library.ucsb.edu/index.php/mastertalent/detail/104870/Piazzolla_Astor(Astor Piazzolla Remixed)A PiazzollaA. P. PiazzollaA. PIazzollaA. PaizzollaA. PazzollaA. PiacolaA. PiazolaA. PiazollaA. PiazsolaA. PiazzolaA. PiazzollaA. PjatsollaA. PlazollaA.P. PiazzolaA.PiazollaA.PiazzolaA.PiazzollaA.ピアソラAsor PiazzollaAstoe PiazzolaAstorAstor Pantaleon PiazzollaAstor Pantaleón PiazzollaAstor Pantheon PiazzollaAstor PazzolloAstor Pentaleon PiazzollaAstor PiazolaAstor PiazollaAstor PiazzolaAstor Piazzolla Con OrchestraAstor Piazzolla Y Su “Nuevo Octeto”Astor Piazzolla, Ork.Astor PjacolaAstor RiazzollaAstors PjacollaDavid MacNeilHoracio FerrerMargreet MarkerinkMario TrejoPiazellaPiazollaPiazolloPiazzillaPiazzolaPiazzollaPiazzolla Astor P.Piazzolla, A.Piazzolla, AstorPiazzolloPiazzóllaÀstor PiazollaÁ. PiazzollaÁstor PiazzollaА. П'яццолаА. П'яццоллаА. ПиаццоллаА. ПьяцоллаА. ПьяццоллаА. ПіаццоллаА.ПьяцциоллаАстор Пьяццоллаאסטור פיאצולהアストル・ピアソラピアソラ皮亞佐拉Astor Piazzolla Y Su Conjunto 9Sexteto Los MendocinosAstor Piazzolla Y Su OrquestaAstor Piazzolla Y Su Nuevo OctetoAstor Piazzolla Y Su QuintetoAstor Piazzolla Y Su Quinteto Tango NuevoAstor Piazola & His QuintetOcteto Buenos AiresAstor Piazzolla Y Su Orquesta TípicaAstor Piazzolla Y Su Gran OrquestaFrancisco Fiorentino Y Su Orquesta TípicaAstor Piazzolla, Su Bandoneon y Sus CuerdasAstor Piazzolla Y Su Sexteto Tango Nuevo + +163004DJ Nervous (2)Simon CoffeyTrance DJ & producer from Sydney, Australia. +He had weekly dance music show on MTV for over 12 months. +Co-founder of creating one of Sydney's formerly most popular Friday nights called Plastic. + +He has appeared as a personality on many large advertising campaigns for Sony, MTV, Levi's and Killer Loop Eyewear. Nervous also created music and appeared as a model at the Mercedes' Australian Fashion week, 1997/98. + +He has toured nationally with the Big Day Out and played at the Big Day Out 2000 along side the Chemical Brothers and Basement Jaxx. He has played along side Sasha, John Digweed, Roger Sanchez, Armand van Helden, Stacey Pullen, Eric Morrillo, Judge Jules, Pete Tong, Jeremy Healey, Scott Bond, Matt Hardwick, Tom Wainwright, Timo Maas, DJ Tiësto, Paul van Dyk, Paul Oakenfold, John Digweed, Deep Dish and Chicane. + +He is the founder of the dance parties called Transmission. The Transmission parties first began back in 1996 at the legendary (but now closed) Sublime night club. Transmission is synonymous with technology and cyberspace and as Australian history shows: +- the Transmission events were the first dance events to be simulcast live across Sydney on radio (2SER) +- Transmission was the first dance event to be broadcasted live on the Internet (Village.com) +- Transmission was the first dance event to be filmed on pay TV (MTV on Optus) +- Transmission was the first dance party to introduce the 4x4 Dueling Configuration which enabled two DJ's to play four tracks at once through the sound system. +Transmission's 3rd birthday in 1999 was broadcast across the nation on Triple J and hosted by DJ Nervous. Once again, Australian history took place at Transmission's 4th Birthday in October 2000 when Melbourne, Brisbane and Perth will link up LIVE and direct to Transmission Headquarters where 2000 people were listening to the sounds from other clubs Australia wide.Needs Votehttp://web.archive.org/web/20040127115439/http://www.trancetribe.com:80/other_pages/show_profile.php?id=13http://web.archive.org/web/20030210162132/http://www.transmission.net.au/http://web.archive.org/web/20070209155546/http://www.transmission.net.au/NervousSteve Hill vs Nervous + +163085Frank IfieldFrancis Edward IfieldEnglish/Australian singer +Born: 30th November 1937 Coundon, Coventry, England +Died: 18th May 2024 Sydney, New South Wales, Australia +English-born Australian easy listening and country music singer known for his yodeling vocal style. His family emigrated to Australia in 1946. He returned to the UK in 1959 and in 1962 he had a major success with the song [m=144827]. Throughout the 1960s he had a succession of hits which were mainly revivals of American country songs. Inducted into the Australasian Country Music Roll of Renown in 2003.Needs Votehttps://www.frankifield.com/https://en.wikipedia.org/wiki/Frank_Ifieldhttps://www.hillbilly-music.com/artists/story/index.php?id=16263https://www.imdb.com/name/nm0406978/?ref_=nv_sr_srsg_0_tt_1_nm_5_q_frank%2520ifielhttps://historyofaussiemusic.blogspot.com/search/label/Frank%20IfieldF. IfieldFarnk IfieldFieldFr. IfieldFrank FieldFrank IlfieldFrank IndfieldFrank InfieldIfieldIfield, Fフランク・アイフィールドFrank Infeld + +164008Phil CoulterPhilip Michael Coulter[b]When credited together with Bill Martin, use the entry [a=Bill Martin & Phil Coulter][/b]. Irish songwriter, pianist, music producer, arranger and director (born 1942, Derry). His success has spanned four decades. Was awarded the prestigious Gold Badge from the British Academy of Songwriters, Composers and Authors (BASCA) in October 2009. Coulter has won 23 Platinum Discs, 39 Gold Discs, 52 Silver Discs, two Grand Prix Eurovision awards (first in 1967 with Sandie Shaw, second in 1970 as the arranger/producer of Dana); five Ivor Novello Awards, which includes Songwriter of the Year; three American Society of Composers, Authors and Publishers awards; a Grammy Nomination; a Meteor Award, a National Entertainment Award and a Rose d’or d’Antibes. Co-composed 'Congratulations' for Cliff Richard and conducted the Eurovision Song Contest orchestra on behalf of Luxembourg in 1975.Needs Votehttp://www.philcoulter.com/https://all-conductors-of-eurovision.blogspot.com/1975/03/phil-coulter.htmlhttp://www.allmusic.com/artist/phil-coulter-p23857http://en.wikipedia.org/wiki/Phil_Coulterhttps://books.discogs.com/credit/620456-phil-coulterCooulterCouliersCoulteCoultenCoulterCoulter PhilCoulter Philip MichaelCoulter, P.CoulteryCoultierCoultonCoutterD. CoulterF. CoulterM. CoulterMike CoulterP CoulterP. ColterP. CoulterP. M. CoulterP.CoulterP.M. CoulterP.M.CoulterP; CoulterPh. CoulterPhil CoolterPhil CouterPhilip CoulterPhilip Michael CoulterPhillip Michael CoulterКультем菲爾庫特Bill Martin & Phil CoulterPhil Coulter And His OrchestraPhil Coulter And The Gleemen + +164251Buddy BakerNorman Dale BakerAmerican composer and arranger. Born January 4, 1918 in Springfield, Missouri. Died July 26, 2002 in Sherman Oaks, California. +Best known for his long career with Walt Disney scoring films, cartoons and featurettes, including [i]The Apple Dumpling Gang[/i], [i]The Apple Dumpling Gang Rides Again[/i], [i]The Shaggy D.A.[/i], and [i]The Million Dollar Duck[/i]. +He worked with many big bands in the 1930s and 1940s, including those of [url=http://www.discogs.com/artist/Harry+James+(2)]Harry James[/url], [a=Charlie Barnet], Kay Kyser, [a=Jack Teagarden], [a=Bob Crosby] and [a=Glen Gray]. +One of his first hits as an arranger was on "And Her Tears Flowed Like Wine" for [a=Stan Kenton And His Orchestra]. +He was nominated for an Academy Award for his score of [i]Napoleon and Samantha[/i]. +"Sign Song" from [m=387951] has been sampled by [a16832], [a137878], [a216270], [a79578], [a8841121] and [a3659416].Needs Votehttps://en.wikipedia.org/wiki/Buddy_Baker_(composer)https://www.imdb.com/name/nm0048301/https://www.whosampled.com/Buddy-Baker/Sign-Song/sampled/B. BakerB. BakkerBakerD. BakerN. BakerNorman "Buddy" BakerNorman BakerNorman Buddy BakerBuddy Baker And His OrchestraLouis Bellson's Just Jazz All Stars + +164253Ahmad JamalFrederick Russell JonesAmerican jazz pianist, composer, bandleader, and educator, born, July 2, 1930 in Pittsburgh, Pennsylvania - died April 16, 2023 in Ashley Falls, Massachusetts. He changed his name to Ahmad Jamal in the early 1950s. + +Needs Votehttps://ahmadjamal.com/https://www.facebook.com/AhmadJamalMusic/http://en.wikipedia.org/wiki/Ahmad_Jamalhttps://www.imdb.com/name/nm1054403/http://www.whosampled.com/Ahmad-Jamal/https://www.allmusic.com/artist/ahmad-jamal-mn0000127369https://jazztimes.com/features/profiles/ahmad-jamal-walking-history/https://www.arts.gov/honors/jazz/ahmad-jamalhttps://www.steinway.com/artists/ahmad-jamalA. JamalA.JamalAhamd JamalAhmad JahmalAhmad Jamal's AlhambraAhmas JamalAhmed JamalAmahad JamalAmhad JamalH.JamalJahmad AmalJamalJamelА. ДжамалAhmad Jamal TrioThe Ahmad Jamal Quintet + +164262Thom BellThomas Randolph BellComposer, arranger, conductor, producer, multi-instrumentalist and singer. + (January 26, 1943 – December 22, 2022) Born in Kingston, Jamaica, raised in Philadelphia, Pennsylvania. Uncle of [a=Leroy Burgess] and [a=Leroy M. Bell]. He was inducted in the Songwriters Hall of Fame in 2006. Bell, along with Kenny Gamble and Leon Huff, were the architects of Philly Soul. During the 70s and 80s, Bell worked with such artists as the Delfonics, the Stylistics, the Spinners, Elton John, the O’Jays, Deniece Williams, Jerry “Iceman” Butler, Dusty Springfield, and James Ingram. +Thom Bell beginning in the late 60's through the 1970s and beyond. With "Mighty Three" partners Kenny Gamble and Leon Huff, Bell created the Sound of Philadelphia, the most important and dominant sound of the early and mid-70s, and the heir to the Motown sound of the 60s. And as a songwriter, musician, producer, and arranger, Bell established himself as one of the most important R&B/Soul music figures of all time. + +Do NOT confuse with his brother [a=Tony Bell] (sometimes credited as "A. Bell"). +IPI: 00002569405 + + +Needs Votehttp://www.myspace.com/thombell http://en.wikipedia.org/wiki/Thom_Bellhttps://www.songhall.org/profile/Thom_Bellhttps://www.imdb.com/name/nm0068543/BellBell BoysBell ThomasBell Thomas RandolphBellaPhom BellR. BellR.T. BellRandolph Thomas BellT .BellT BellT. BelT. BellT. R. BellT. Randolph BellT. ベルT.BellT.R. BellTBTh. BellTham BellTheresa BellThomThom BelThom. BellThomasThomas BellThomas BessThomas R. BellThomas R.BellThomas Randolf BellThomas RandolphThomas Randolph BellThomas Rudolph BellThombellThorn BellTom BellTom BellTom VellTom bellTomas Randolph BellTommie BellTommy Bellトム・ベルMFSBThe Thom Bell OrchestraMartin And Bell ProductionsStan & BellThe Producers (8)The Romeos (4)Kenny & Tommy + +164263Jacques BrelJacques Romain Georges BrelBelgian singer, songwriter, actor and film director born April 8,1929 in Schaarbeek, Brussels, Belgium and died October 9, 1978 in Bobigny, France. +Sang predominantly in French but also had quite a few versions of his songs in Dutch. In his song "Marieke" he combined Dutch and French in the lyrics. +His most famous songs include "Ne Me Quitte Pas" ("Laat Me Niet Alleen"), "Le Plat Pays ("Mijn Vlakke Land") and "Marieke". +In 1964 American artist [a=Rod McKuen] started to translate Brel's songs into English. Brel’s penultimate album of unreleased songs, “J’Arrive” (or “I Arrive”), was released in 1968. +His final album “Les Marquises" sold over one million copies and hit number one in the French album charts.Correcthttps://fondationbrel.be/http://discobrel.free.frhttps://www.brelitude.net/https://en.wikipedia.org/wiki/Jacques_Brelhttps://fr.wikipedia.org/wiki/Jacques_Brelhttps://www.imdb.com/name/nm0107035/https://www.allmusic.com/artist/jacques-brel-mn0000121590,J. BrelBre LBrelBrel J.Brel JacquesBrel Jacques RomainBrel Jacques Romain GBrel Jacques Romain G.Brel Jaques RomainBrel.BrellG. BrelJ BrelJ, BrelJ. BrelJ. BielJ. BorelJ. BreelJ. BreiJ. BrelJ. BrellJ. BrielJ. BruelJ. BrèlJ. BrélJ. R. BrelJ. R. G. BrelJ. brelJ. ブレルJ.BrelJ.R.G. BrelJac. BrelJack BrelJack BrelleJacqes BrelJacque BrelJacque BrielJacques BrehJacques BrellJacques RelJacques Romain BrelJacques Romain G BrelJacques Romain G. BrelJacques Romain Georges BrelJacques Roman BrelJacques, BrelJacques-Romaing BrelJacquess BrelJacqus BrelJacues BrelJaqcues BrelJaque BrelJaques BrelJascques BrelbrelΖακ ΜπρελБрельЖ. БрельЖак БрелЖак БрельЖак Брэльברלג'אק ברלג'ק ברלז'אק ברלז'ק ברלז׳אק ברלジャック・ブレル + +164277Don RandiDonald SchwartzAmerican composer, arranger, music director, bandleader and keyboard musician. +He play piano, keyboards, organ and harpsichord. +He began his career as a pianist and keyboard player in 1956, gradually establishing a reputation as a leading session musician. In the early 1960s, he was musician and arranger for [a190767]. +He performed on many successful songs (He claims to have played on over three hundred hit records), including [r604649] and [r404491]. Founder and owner of the Jazz Club [l494714] since 1970. + +Born: February 25, 1937 in New York City, New YorkCorrecthttps://web.archive.org/web/20100716105314/http://www.donrandi.com/home3_v4.htmlhttps://en.wikipedia.org/wiki/Don_RandiD. RandiDon RandyRandiRandyドン・ランディDon Schwartz (3)Gerald Wilson OrchestraDon Randi TrioDon Randi And QuestJerry Cole And His SpacemenFresh Air (10)Don Randi & The Baked Potato BandThe Wrecking Crew (6) + +164571Bing CrosbyHarry Lillis CrosbyUS singer and actor, born 3 May 1903 in Tacoma, Washington, USA. His career lasted from 1926 until his death on 14 October 1977 in Madrid, Spain. + +He is known for Christmas music, most notably the songs "White Christmas" and "Silent Night", the first and third greatest selling singles of all time. He is the most successful charting music artist in history, with more number-one hits, top tens and chart entries than any other artist. He acted in over 70 films, earning an Academy Award and 3 nominations. He also sang 4 Academy Award winning songs. He has sold close to one billion records, tapes, compact discs and digital downloads around the world. Married to [a3191648] from 1930 until her death in 1952. Married to [a2242414] from 1957 until his death in 1977. Father of [a1349319], [a1756274], [a1756273], [a1277127], [a2242416], [a5015075] and [a2242415]. Brother of [a527956].Needs Votehttps://bingcrosby.com/https://www.facebook.com/Bing-Crosby-44544738326https://en.wikipedia.org/wiki/Bing_Crosbyhttps://www.imdb.com/name/nm0001078/https://adp.library.ucsb.edu/names/101942https://www.allmusic.com/artist/bing-crosby-mn0000094252B. CrosbyB. CrowbyB.C.B.CrosbyBCBig CrosbyBin CrosbyBingBing CorsbyBing CosbyBing CrosbieBing Crosby & GuestsBing Crosby And ChorusBing Crosby With ChorusBing Crosby With Chorus & OrchestraBing Crosby With Chorus And OrchestraBing Crosby/ChorusBing Go SbyBing GrosbyBring CrosbyByng CrosbyCrosbyCrosby BingCrosyFriendH. L. CrosbyHarry "Bing" CrosbyHarry L. CrosbyHarry Lillis "Bing" CrosbyHarry Lillis CrosbyM. Bing CrosbyMr. CrosbyN. CrosbyThe Andrews SistersThe Bing Crosby Showwith music box accompanimentБ. КросбиБинг Кросбиビング・クロスビーピング・クロスビー빙크로스비Friend Of Gary Crosby (2)Arthur BeaumontThe Rhythm BoysFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraPaul Whiteman's Rhythm BoysBing Crosby & His Friends + +164574Johnny MercerJohn Herndon MercerAmerican lyricist, composer, singer and record label executive who co-founded Capitol Records. +Born 18 November 1909 in Savannah, GA and died 25 June 1976 in Los Angeles, CA. +He co-wrote many songs with [a=Henry Mancini]. +[b]When credited with [a=Harold Arlen], please use the joint credit: [a=Harold Arlen & Johnny Mercer].[/b] +He won four Academy Awards for Best Original Song. He was a co-founder of [l=Capitol Records].Needs Votehttps://www.johnnymercerfoundation.org/https://www.facebook.com/JohnnyMercerJMF/https://x.com/JohnnyMercerJMFhttps://web.archive.org/web/20000520032247/https://johnnymercer.com/https://web.archive.org/web/20051229124148/https://johnnymercer.com/https://en.wikipedia.org/wiki/Johnny_Mercerhttps://www.imdb.com/name/nm0006197/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103688/Mercer_Johnnyhttps://www.allmusic.com/artist/johnny-mercer-mn0000244406C. J. MercerD. MerserG. MercerH. J. MercerH. MercerI. MercerJ MercerJ MercerJ MercierJ, MercerJ-MercerJ. MercerJ. H MercerJ. H. MercerJ. ItercerJ. Johnny MercerJ. M.J. MarcoseJ. MarcusJ. MerceJ. MerceerJ. MercefJ. MercenJ. MercepJ. MercerJ. MerceryJ. MercierJ. MerierJ. MerrcerJ. MerserJ. MerverJ. PrveertJ.H MercerJ.H. MercerJ.H.MercerJ.MercerJ.MercrerJH MercerJames Oscar "Johnny" MercerJean MercerJoe MercerJognny MercerJohn "Johnny" MercerJohn Edge MercerJohn H MercerJohn H. "Johny" MercerJohn H. MercerJohn Hemdon "Johnny" MercerJohn Herdon "Johnny" MercerJohn HerndonJohn Herndon "Johnny" MercerJohn Herndon MercerJohn M. MercerJohn MecerJohn MercerJohn MergerJohn W. MercerJohnnie MercerJohnny H MercerJohnny H. HercerJohnny H. MercerJohnny Herndon "Johnny" MercerJohnny MarcerJohnny MerceJohnny Mercer And His Music ShopJohnny Mercer and His OrchestraJohnny Mercer/ChorusJohnny MercierJohnny MercrJohnny MercyJohnny MerecerJohnny MerserJohnny WercerJohnny-MercerJohny MercerJon MercerJonnhy MercerJonny MercerK. JohnL. MercerLen MercerMM. JohnnyM. MercerMaercerMarcerMarcoseMerceMercelMercerMercer JMercer J. Mercer JohnMercer John HMercer, John H.Mercer-MercerMercereMercersMercertMercesMerceyMercherMerciaMercierMercuerMercurMercuryMerecrMereerMererMergerMerierMerlerMerrenMerserMerverMescerMesterMetterMeuerMeurcerMeyerMorcerMr. MercerN. MercerNercerP. MercerR. H. MercerS. MercerT. MercerV MercerWernerY MercerY. Mercerj. MercerД. МерсерДж. МерсерМерсерМерцерWingy Manone & His OrchestraPaul Whiteman And His OrchestraHarold Arlen & Johnny MercerJohnny Mercer And His Orchestra + +164578Velma MiddletonBorn: September 01, 1917, Holdenville, Oklahoma, USA +Died: February 10, 1961, Freetown, Sierra Leone + +American jazz vocalist, best known for her work with [a38201], she died in Freetown, Sierra Leone, during a tour with him. + +She was originally a dancer and, although overweight, she often did splits on stage, even during her Armstrong years. Middleton had an average but pleasing and good-humored voice. After freelancing, including a visit to South America in 1938 with Connie McLean's Orchestra and performing as a solo act, she joined Louis Armstrong's big band in 1942, appearing on some Soundies with Satchmo. + +After Armstrong broke up the orchestra in 1947, Middleton joined his All-Stars. She was often used for comic relief, such as for duets with Satchmo on "That's My Desire" and "Baby, It's Cold Outside", and she did occasional features. Few jazz critics thought highly of her singing, but Armstrong considered her part of his family, and she was a constant part of his show. + +She recorded eight selections as a leader for the Dootone label, in 1948 and 1951.Needs Votehttp://en.wikipedia.org/wiki/Velma_Middletonhttps://adp.library.ucsb.edu/names/331530MiddletonThelma MiddletonV. MiddletonVMVelma MeddletonVelma MiddeltonVelma MiddldetonVelma Middleton & His All StarsVelma MidletonVerna MiddletonWelma MiddletonВ. МиделтонВ. МидлтонLouis Armstrong And His All-Stars + +164587Eddie JeffersonEdgar JeffersonEddie Jefferson (born 3 August 1918 in Pittsburgh, died 9 May 1979 in Detroit) was a celebrated jazz vocalist and lyricist. He is credited with having invented 'vocalese', a musical style in which lyrics are set to an instrumental composition or solo.Needs Votehttps://books.discogs.com/credit/738481-eddie-jeffersonhttps://en.wikipedia.org/wiki/Eddie_JeffersonE JeffersonE. JeffersonE.JeffersonEddi JeffersonEddie JeffesonJeffJeffersonEddie Jefferson And His QuintetJames Moody And His Orchestra + +165653Ben KeenBenjamin Daniel KeenUK hard dance producer & DJ. + +Best known as BK. + +BK launched [l=Riot! Recordings] with [a=Ed Real] shortly after their departure from [l=Nukleuz]. +Needs Votehttps://www.facebook.com/djbk.official.pagehttps://soundcloud.com/bksoundhttps://myspace.com/bknethttps://twitter.com/bkdjhttps://www.instagram.com/benkeenbk/http://web.archive.org/web/20181208160126/http://www.bkworld.net/B KeenB. KeenB. KeeneB.KeenBKBeen KeenBen KingBkKeenBKKY Jelly BabiesPowderProject 101SpeakerfreaksTwinkBlack Russian (3)Brian KantorekCortinaDiamond GeezersAstraRazor BabesSister SuckPPK (2)Large Tunes Inc.Beatbusters (3)Hot CityThe Committee (9)Tuff London + +165824Arthur BlytheArthur Murray BlytheAmerican jazz saxophonist (alto, soprano), born 5 July 1940, Los Angeles, California, USA; died 27 March 2017.Needs Votehttps://en.wikipedia.org/wiki/Arthur_Blythehttps://www.radioswissclassic.ch/it/banca-dati-musicale/musicista/445183ba03f1eae0547fa3e9a629edf416ddd/biography?app=true"Black" Arthur Blyte"Black" Arthur Blythe(Black) Arthur BlytheA. BlytheA.M. BlytheA; BlytheArthur BlitheArthur BlythArthur Murray BlytheBlack ArthurBlack Arthur BlytheBlyBlytheアーサー・ブライスGil Evans And His OrchestraCharles Tyler EnsembleWorld Saxophone QuartetHorace Tapscott QuintetCBS Jazz All-StarsThe Leaders (3)Roots (8)The Pan-Afrikan Peoples ArkestraSynthesis (12)The Arthur Blythe QuartetArthur Blythe TrioChico Freeman QuintetCharles Tyler Quintet + +166629Hal MooneyHarold MooneyAmerican pianist, composer, arranger and record executive. +House arranger, A&R and recording director at [l25241] (1956-1969). +Musical director of the [l271378] (1970-1977). + +Born: February 4, 1911 in Brooklyn, New York. +Died: March 23, 1995 in Los Angeles, California. +Best known for his extensive arrangement work with Mercury Records artists like Sarah Vaughan, Dinah Washington and Billy May, from the mid-1950s to the late 1960s. He never charted as a songwriter but did as an arranger with songs such as "I Put a Spell on You" by Nina Simone and as conductor of the orchestras on charted songs such as Kay Starr's "Good And Lonesome". There weren't just a few of these but many. He was especailly fond of lush string arangements for artists such as Sarah Vaughn.Needs Votehttps://en.wikipedia.org/wiki/Hal_Mooneyhttps://www.vintagemusic.fm/artist/hal-mooney/https://www.spaceagepop.com/mooney.htmhttps://adp.library.ucsb.edu/names/106379H. MooneyHal MeoneyHal MoneyHal MoonyHal MorneyHarald MooneyHarold MooneyHarold "Hal" MooneyHarold MoneyHarold MooneyHarold mooneyMeeneyMooneyハル・ムーニーHal Mooney And His OrchestraHarold Mooney's MusicHal Mooney's Orchestra And Chorus + +166630Luchi DeJesus Louis A. DeJesusAmerican composer and producer. +A&R executive at [l39357]. + +Born 19 August 1923 in New York City, USA, +Died 19 August 1984 in Canoga Park, California, USA.Needs VoteDe JesusDeJesusDeJezusDeJususDejesusI. De JesusJesusKuching De JesusL DeJesusL. A. DeJesusL. De JesusL. De-JesusL. DeJesusL. DejesusL. de JesusL.A. DeJesusL.De JesusL.De-JesusL.DeJesusLuchiLuchi De JesusLuchi De JesúsLuchi De JésusLuchi DelesusLuchi de JesusLuci De Jesusde JesusDevore (2) + +166685Jerome KernJerome David KernU.S. composer for stage and movies, known as the father of the modern musical theater, according to a joint resolution passed by Congress (born Jan. 27, 1885, New York, N.Y., U.S. — died Nov. 11, 1945, New York City). +Kern studied music in his native New York City and in Heidelberg, Germany, and he later gained theatrical experience in London. Returning to New York, he worked as a pianist and salesman for music publishers and wrote new numbers for European operettas. In 1912 he composed The Red Petticoat, the first musical to contain only his own music; its success was surpassed by Very Good Eddie (1915). Subsequent musicals include Oh, Boy! (1917) and Sally (1920). In 1927 his Show Boat, based on Edna Ferber's novel and with lyrics by Oscar Hammerstein, became the first American musical with a serious plot drawn from a literary source; it represents a landmark in the history of musical theatre. It was followed by The Cat and the Fiddle (1931), Music in the Air (1932), and Roberta (1933). After 1933 he composed for Hollywood. Kern's classic songs include “The Song Is You,” “All the Things You Are,” “Smoke Gets in Your Eyes,” and “Ol' Man River.” He was inducted into the Songwriters Hall of Fame in 1970.Needs Votehttps://en.wikipedia.org/wiki/Jerome_Kernhttps://www.songhall.org/profile/Jerome_Kernhttps://www.imdb.com/name/nm0006153/https://www.britannica.com/biography/Jerome-David-Kernhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102963/Kern_JeromeD. KernDavid Jerome KernDernDž. KernasDž.KernasDž.KernoFernG. KernG.KernGerome KernHernHerome KernI. KernJ KernJ. CernJ. DernJ. HernJ. J. KernJ. JernJ. K. KernJ. KahnJ. KarnJ. KearnJ. KeinJ. KemJ. KenJ. Ker,J. KermJ. KernJ. KernsJ. KeromeJ. KerpnJ. KerrJ. KornJ.D. KernJ.KernJarome KernJean KernJer. KernJeremy CarnJermone KernJernJerom KernJeromeJerome - KernJerome D KernJerome D. KernJerome David KernJerome K.Jerome KearnJerome KearneJerome KerJerome KerbJerome KermanJerome KermenJerome KerneJerome KernsJerome KerrJeromy KernJerone KernJerromi KernJerry KernJerôme KernJokernJrome KernJérome KernJérôme KernJ・カーンK.KernKERNKahnKarnKearnKeinKemKenKerKernKern &Kern JeromeKern, JeromeKern,JKern/FieldsKerneKernsKerrKkernKornL. KernP.J. KernS. HernU.KernY. Kern©ernĐ. KernД. КернД.КернДж. КернДж.КернДжером КернЖером КернКернHammerstein-Kern + +167055Yusef LateefYusef Abdul Lateef (née William Emanuel Huddleston)American jazz musician, artist, composer, and producer +Born 9 October 1920 in Chattanooga, Tennessee, USA, died 23 December 2013 in Amherst, Massachusetts, USA (aged 93) + +Lateef was a jazz multi-instrumentalist, composer and prominent figure among the Ahmadiyya Muslim Community in America, following his conversion to Islam in 1950. Although Lateef's main instruments were the tenor saxophone and flute, he also played oboe and bassoon, both rare in jazz, and featured many non-western instruments such as the bamboo flute, shanai, shofar, xun, arghul and koto in his performances. + +Lateef had an inquisitive spirit and was never only a bop or hard bop soloist. He disliked the term "jazz", consistently creating music that stretched (and even broken through) boundaries. A superior tenor saxophonist with a soulful sound and impressive technique, Lateef was one of the top flutists around. He also developed into a talented jazz soloist on the oboe, was an occasional bassoonist, and introduced such instruments as the arghul (a double clarinet that resembles a bassoon), shanai (a type of oboe), and different types of flutes. + +Lateef played "world music" long before the term was coined. Needs Votehttps://www.yuseflateef.comhttps://yuseflateef.bandcamp.com/https://yuseflateef1.bandcamp.com/https://www.myspace.com/yuseflateef https://www.facebook.com/yuseflateef.musichttps://en.wikipedia.org/wiki/Yusef_Lateefhttps://www.whosampled.com/Yusef-LateefDr Yusef LateefDr. Yusef A. LateefDr. Yusef LateefJusef LateefLateefLatoefWoodleyY LateefY. LateefY.LateefYuesf LateefYusef A. LateefYusef Abdul LateefYusef LateeYusef LateffYuseff LateefYusuf LateefЮсиф Латифユーゼフ・ラティーフJoe GentleWilliam Evans (6)Cannonball Adderley SextetSlide Hampton OrchestraDizzy Gillespie And His OrchestraArt Blakey & The Afro-Drum EnsembleCharles Mingus Jazz WorkshopDoug Watkins QuintetThe Ernie Wilkins OrchestraRay Brown All-Star Big BandThe Yusef Lateef QuintetThe Universal QuartetDonald Byrd SextetYusef Lateef QuartetYusef Lateef Sextet + +167516Pete LevinNew York keyboardist and writer who is best known for his work with [a255137]. Pete Levin is [a256225]'s brother. In the 1970s, Tony and Pete collaborated with [a258118] in the comedy band [a=The Clams (2)]. + +In a diverse music career spanning several decades, keyboardist/arranger Pete Levin has performed and recorded with hundreds of Jazz and Pop artists - including [a=Paul Simon], [a=Annie Lennox], [a=Miles Davis], [a=David Sanborn], [a=Lenny White], [a=Wayne Shorter], [a=Jaco Pastorius], [a=Robbie Robertson] and [a=John Scofield] - receiving critical accolades for his work during a 15 year association with the legendary [a=Gil Evans], and his 8 year stint with jazz icon [a=Jimmy Giuffre]. +Needs Votehttp://www.petelevin.comhttps://petelevin-moonjune.bandcamp.com/http://www.myspace.com/petelevinmusicLevinP. LevinPetePeter LevinGil Evans And His OrchestraThe Monday Night OrchestraThe Jimmy Giuffre 4The Manhattan ProjectThe Clams (2)Levin Brothers + +168453Pete JollyPeter A. Ceragioli, Jr.American jazz pianist and accordion player. In 1940, aged 8, he appeared on the radio show [i]Hobby Lobby[/i] "The Boy Wonder Accordionist". +Born June 5, 1932 in New Haven, Connecticut, USA, died November 6, 2004 in Pasadena, California, USANeeds Votehttps://en.wikipedia.org/wiki/Pete_Jollyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/323945/Jolly_Petehttps://www.imdb.com/name/nm0427215/JollyP. JollyPete CeraPete JoelyPete JolleyPete JolliePete JolyPeter Jollyピート・ジョリーPete CeraWoody Herman And His OrchestraArt Pepper QuartetShorty Rogers And His GiantsArt Pepper QuintetThe Abnuceals Emuukha Electric OrchestraChet Baker SextetTerry Gibbs QuartetGerry Mulligan QuintetTerry Gibbs And His OrchestraLes Cinq ModernesThe Pete Jolly TrioCy Touff QuintetRed Norvo SextetShelly Manne TrioShelly Manne & His Hollywood All StarsDick Grove Big BandShorty Rogers QuintetShorty Rogers Big BandWoody Herman And The Fourth HerdThe Lennie Niehaus OctetThe Pete Jolly SextetThe Buddy DeFranco SeptettePete Jolly & His West Coast FriendsThe Five (5)Milt Bernhart And His OrchestraShorty Rogers And His Augmented "Giants"The Jack Montrose QuintetMarty Paich And His Jazz Piano QuartetRed Norvo SeptetJack Sheldon And His Exciting All-Star Big-BandBuddy Charles Concert Jazz OrchestraGerry Mulligan And The Jazz ComboThe Jack Montrose & Pete Jolly QuartetThe Frank Rosolino SextetThe Chet Baker-Art Pepper SextetPete Jolly - Jan Lundgren QuartetPete Jolly DuoPillars Of West Coast Jazz + +168594Big Tool 4 UOwen Swinerd, Sergei Forster & Keiron McTernanA collaboration between [a=Superfast Oz] & [a=Project Mayhem].CorrectD&GSergei Forster-HallKeiron McTernanOwen Swinerd + +169016Yoshi (3)Joshua MorganPopular Sydney DJ specialising in hard house and hard trance.Correcthttp://www.myspace.com/eyedealrecordsDJ YoshiYoshi (Joshua Morgan)YoshimotoJoshua MorganMojo (16) + +169199Adam M (2)Adam MartinUK Hard House & Hard NRG producer & DJ based in Leeds, UK.Needs Votehttps://www.facebook.com/djadammmusichttps://soundcloud.com/djadammhttps://www.mixcloud.com/djadamm/https://twitter.com/DjAdamMhttps://www.instagram.com/djadamm/Adam M.Adam MartinThe Beast (16) + +169336Don MenzaDonald Joseph MenzaAmerican saxophonist, arranger, composer, session musician and jazz educator noted for his many contributions to American jazz and big band music. He was born 22 April 1936 in Buffalo, New York, USA. Father of [a=Nick Menza].Needs Votehttp://www.donmenza.com/http://www.jazzprofessional.com/interviews/don_menza.htmhttps://en.wikipedia.org/wiki/Don_MenzaD. MenzaDonald J. MenzaDonald MenzaManzaMenzaДжо Мензаドン・メンザStan Kenton And His OrchestraHenry Mancini And His OrchestraMax Greger Und Sein OrchesterSupersaxKlaus Weiss OrchestraLouie Bellson Big BandEugen Cicero QuintettDon Menza & His '80s Big BandPeter Herbolzheimer All Star Big BandThe Max Greger Big BandFrank Strazzeri SextetStan Kenton's Melophoneum BandThe Don Menza SextetThe Louie Bellson QuartetUniversity Of Nevada, Las Vegas Jazz EnsembleHans Koller SeptettLes DeMerle SextetBill Berry And The LA BandThe Don Menza Big BandThe Ray Reed Hollywood Bebop QuintetThe Don Menza SeptetDon Menza QuartetDon Menza QuintetLouie Bellson's Big Band Explosion!Don Menza Organ Trio + +169899Carole Bayer Sager[b]For writing credits with her maiden name, please use [a=Carole Bayer]. Use [a=Carole Bayer Bacharach] when shown as such.[/b] + +American lyricist, songwriter, singer, painter and author, born [a=Carole Bayer] on March 8, 1947 in Manhattan, New York City, New York, USA. +Married to Andrew L. Sager in 1970, divorced in 1978. Married to [a=Burt Bacharach] on April 3, 1982, divorced in 1991. +Many of Sager's early songs were co-written with her second husband, composer [a=Burt Bacharach]. She has also collaborated with [a=Michael Jackson], [a=Neil Diamond], [a=Marvin Hamlisch], [a=Michael Masser], [a=Peter Allen], [a=Sheena Easton], [a=Bruce Roberts], [a=Neil Sedaka], [a=David Foster], [a=Albert Hammond], [a=Quincy Jones], [a=Michael McDonald], [a=James Ingram], [a=Donald Fagen], [a=Babyface] and [a=Clint Eastwood (2)] (for the film [i]True Crime[/i]). + +Sager won the Academy Award for Best Song in 1981 for "Arthur's Theme (Best That You Can Do)", the theme song from the film [i]Arthur[/i]. She shared the award with co-writers [a=Peter Allen], [a=Burt Bacharach], and [a=Christopher Cross]. She received the Grammy Award for Song of the Year in 1987 for "That's What Friends Are For", which she co-wrote with Bacharach. She was inducted into the Songwriters Hall of Fame in 1987. +Needs Votehttp://www.carolebayersager.com/http://www.myspace.com/carolebayersagerhttps://www.facebook.com/CaroleBayerSager/https://twitter.com/CaroleBSagerhttps://www.instagram.com/carolebayersager/https://www.umusicpub.com/us/Artists/C/Carole-Bayer-Sager.aspxhttp://en.wikipedia.org/wiki/Carole_Bayer_Sagerhttps://musicianbio.org/carole-bayer-sager/https://www.musicianguide.com/biographies/1608000274/Carole-Bayer-Sager.htmlhttps://www.famousbirthdays.com/people/carole-sager.htmlhttps://www.geni.com/people/Carole-Sager/6000000002388910079http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=300325&subid=3B. SagerB.B. SagerB.SagerBayerBayer - SagaBayer - SagerBayer / SagerBayer / SayerBayer SagarBayer SagerBayer Sager, CaroleBayer, Carole SagerBayer, SagerBayer-SagerBayer-Sager CaroleBayer/SagerBayer;SagerBayerSagerBayor SagarBayor/SagarC B SagerC Bayer SagerC Bayer-SagerC SagerC. B. SagarC. B. SagerC. B. SayerC. B. SogerC. Bauer SagerC. BayerC. Bayer - SagerC. Bayer -SagarC. Bayer FagerC. Bayer LagerC. Bayer SagarC. Bayer SageC. Bayer SagerC. Bayer SayerC. Bayer-SagarC. Bayer-SagerC. Bayer-SaygerC. Bayer/ SagerC. Bayer/SagerC. BayerSagerC. BayersagerC. SagarC. SagerC.B SagerC.B. SagarC.B. SagerC.B. SayerC.B. SgerC.B.SagerC.BayerC.Bayer SagerC.Bayer-SagerC.Beyer/SagerC.D.SagerC.J. BayerC.N. SagerC.S. SagerC.SagarC.SagerCB SagerCV. Bayer-SagerCa. Bayer SagerCarale Bayer SagerCarl Bayer SagerCarol B SagerCarol B. SagerCarol B.SagerCarol BayerCarol Bayer SagarCarol Bayer SagerCarol Bayer, SagerCarol Bayer-SagerCarol Beyer SeyerCarol Beyer-SagerCarol SagerCarolBayer SagerCarole B SagerCarole B. SagerCarole B.SagerCarole Baker SagerCarole BayerCarole Bayer SagerováCarole Bayer SangerCarole Bayer SayerCarole Bayer SeigerCarole Bayer SogerCarole Bayer-SagerCarole Beyar SagerCarole SagerCarole SayerCarole e Bayer SagerCarole-Bayer SagerCaroll-Bayer-SayerCarols, BayerCaroly Bayer SagerCarolyn Bayer SagerD. SagerG. B. SagerG. Bayer - SagerJagerL. SayerS. Carole BayerSagarSagerSager CaroleSager Carole BayerSager, C. B.SagesSayerSegerК. Байер ЗагерCarole BayerCarole Bayer Bacharach + +170370Monk MontgomeryWilliam Howard MontgomeryAmerican jazz bassist +Born October 10, 1921 in Indianapolis, IN, USA, died May 20, 1982 in Las Vegas, NV, United States +Brother of [a=Buddy Montgomery] and [a=Wes Montgomery] + +Needs Vote"Monk" MontgomeryM. MontgomeryMonte MontgomeryMontgomeryland featuring Wes Montgomery Volume OneWilliam "Monk" MontgomeryWilliam Monk MontgomeryWilliam MontgomeryWillilam "Monk" MontgomeryThe CrusadersThe Wes Montgomery QuartetLionel Hampton And His OrchestraThe Montgomery BrothersThe Art Farmer SeptetHampton Hawes TrioThe MastersoundsThe Jack Wilson QuartetLionel Hampton And His Paris All StarsWes Montgomery-Harold Land QuartetLionel Hampton TrioWes Montgomery-Harold Land QuintetThe Montgomery-Johnson QuintetWes Montgomery All-Stars + +170444Dave ClarkDavid ClarkBritish musician, songwriter and producer, born 15 December 1939 in London, England. +He is best known as leader and drummer of 1960s beat group [a329252]. +Needs Votehttp://en.wikipedia.org/wiki/Dave_Clark_(musician)C. ClarkClarckClarkClarkeD. ClarckD. ClarkD. ClarkeD.C.D.ClarkDCDC-5DaveDave ClarckDavid ClarkDavid ClarkeDavis ClarkД. КларкThe Dave Clark FiveAdrian ClarkDave Clark & Friends + +170598Jerry KnightJerry Ernest KnightSinger, musician (bass, rhythm guitar, synths and keyboards) and founding member of [a=Raydio] +b. April 17, 1952 in Los Angeles +d. December 29, 1996 + +In 1977, along with Ray Parker Jr., he was a founding member of the group Raydio, singing vocals on their early hit, "Jack and Jill". He then left to pursue a solo career, releasing three solo albums and achieving moderate success with minor hits such as "Overnight Sensation", "Perfect Fit" and "Turn It Out". + +In 1983 Knight teamed with Ollie Brown to form Ollie & Jerry. Together, they provided the title track to the soundtrack to the movie Breakin', which reached #9 on the Billboard Hot 100 chart. They also recorded the title track for "Breakin' 2: Electric Boogaloo," which got up to #45 on the R&B charts. + +Although his solo career faded, Knight continued to write and produce for acts such as the The Whispers, Patrice Rushen, DeBarge, Howard Hewett and legendary UK singer Elkie Brooks. +Needs Votehttp://en.wikipedia.org/wiki/Jerry_Knighthttps://www.ascap.com/repertory#ace/writer/85462458/KNIGHT%20JERRYhttps://www.onamrecords.com/artists/jerry-knightGerry KnightJ KnightJ. KnightJ.KnightJerryJerry E. KnightKnightOllie And JerryRaydio + +170609Charles DavisAmerican jazz trumpet player + +[b]Not to be confused with hard bop saxophonist, [a=Charles Davis (2)][/b] +Needs VoteChaly DavisCharles DavidCharles L. DavisCharley DaviesCharley DavisCharlie DaviesCharlie DavisCharly DavisJ. DavisWoody Herman And His OrchestraThe Clayton-Hamilton Jazz OrchestraThe Bob Florence Limited EditionWoody Herman And The Thundering HerdAlf Clausen Jazz OrchestraThe George Stone Big Band + +170755Johnny MathisJohn Royce MathisAmerican singer, born September 30, 1935 in Gilmer, Texas, USA. + +Not to be confused with [a=Country Johnny Mathis].Needs Votehttps://johnnymathis.com/https://en.wikipedia.org/wiki/Johnny_Mathishttps://www.imdb.com/name/nm0558922/https://adp.library.ucsb.edu/names/330245J Johnny MathisJ. MathisJ.MathisJohhny MathisJohn MathisJohnnie MathisJohnny "Triple-Octave" MathisJohnny MahtisJohnny MathersJohnny MathiasJohnny Mathis Med OrkesterJohnny Mathis With Orchestral AccompanimentJohnny Mathis, With Orchestral AccompanimentJohnny MatisJohnny MattisJohnny's MathisJohny MathisMathisジョニー・マチスジョニー・マティス強尼馬賽斯 + +170760Anna MoffoThe dark and smoldering American soprano Anna Moffo was born in Wayne Pennsylvania, on June 27, 1932, and, following graduation at Radnor High School, studied at Philadelphia's Curtis Institute of Music and in Rome, Italy on a Fulbright scholarship at the Conservatorio di Santa Cecilia. +At one time she was actually considering joining a nunnery but her love for music won out. Her successful combination of glamorous beauty and exciting singing style made her one of opera's most popular draws in the late 1950s and 1960s. +Moffo took her first professional bow in 1955 as Norine in Donizetti's "Don Pasquale" in Spoleto, and later that year scored highly as Cio-Cio-San in Puccini's "Madama Butterfly" in an Italian TV production directed by [a=Mario Lanfranchi], whom she married in 1957. +Strenthening her reputation in Salzburg and Vienna, Moffo made her U.S. debut at the Lyric Opera of Chicago in 1957 as Mimi in Puccini's "La Boheme." Her first time on the Metropolitan stage came with the role of Violetta in Verdi's "La Traviata." +Over the years her bel canto repertoire would include Micaela in "Carmen," Gilda in "Rigoletto" and Liu in "Turandot." Arguably, the zenith of her Met career coincided with her appearance in the title role of Donizetti's "Lucia di Lammermoor" opposite [a=Carlo Bergonzi]'s Edgardo in January of 1965. In the 1960s, Moffo also began appearing occasionally in Italian films, including feisty roles in the Napoleonic war epic Austerlitz (1960) with[a=Rossano Brazzi]; the comedy La serva padrona (1962), directed by husband Lanfranchi; Menage all'italiana (1965) [Menage, Italian Style] co-starring [a=Ugo Tognazzi]; and the comedy Il divorzio (1970) [The Divorce]. She also filmed her Violette in La traviata (1967) and Lucia di Lammermoor (1971), both directed by Lanfranchi. + +The multiple Grammy-nominated Moffo's singing career was finished when just in her 40s. Taking on too much too soon (she in one year took on 12 new roles), her voice burnt out quickly. Her last regular performance at the Met was received poorly as Violetta in 1976, her voice having fallen into a serious state of disrepair. She did return briefly for a one-time duet with baritone [a=Robert Merrill] in the company's centennial gala. +Her marriage to Lanfranchi ended in divorce in 1972, but her second marriage to NBC broadcast executive/RCA chairman [a=Robert Sarnoff] in 1974 proved more durable and lasted until his death in 1997. +Her later years were dogged by illness. Battling breast cancer for almost a decade, Moffo died of a stroke at age 73 on March 10, 2006, in New York City. She had no children of her own but was survived by three stepchildren. +Needs Votehttps://en.wikipedia.org/wiki/Anna_MoffoA. MoffoA.MoffoAnno MoffoLa MoffoMoffoАнна Моффоアンナ・モッフォ + +170933Robert MattRobert MattGerman pianist, keyboardist, songwriter and producer.Needs Votehttp://www.robertmatt.de/MattR. M.R. MattRobertRobert "Bob" MattYularaRegensburger Domspatzen + +171523Tony FaulknerBritish recording engineer. +Worked as sound engineer at [l969829]. Now an Independent recording engineer for [l964927].CorrectT. FaulknerTonstudio Tony FaulknerTony FauknerTony Faulkener + +171698Max RichterGerman-born British composer, born 22 March 1966 in Hameln, Germany. He co-founded the contemporary classical ensemble [a=Piano Circus], with which he stayed for ten years, he has worked with, among many others, Roni Size and Future Sound of London. +Owner of [l1407559].Needs Votehttps://maxrichtermusic.comhttps://www.maxrichter-fourseasons.com/https://www.facebook.com/MaxRichterMusichttps://x.com/maxrichtermusichttps://en.wikipedia.org/wiki/Max_Richterhttps://soundcloud.com/max-richterhttps://studiorichtermahr.comM. RichterM.RichterRichterPiano Circus + +172007Rex The DogJake WilliamsProducer from UK.Needs Votehttp://www.rexthedog.nethttp://rexthedog.bandcamp.comhttp://www.facebook.com/RexTheDoghttp://www.instagram.com/rexthedog1980http://www.myspace.com/rexthedog1980http://soundcloud.com/rexthedog1980http://twitter.com/rexthedog1980http://www.youtube.com/c/rexthedog1980RexJXMekkaOblikJake Williams2 Brothers (2) + +173078Hal DavidHarold Lane DavidAward-winning American lyricist and songwriter born May 25, 1921 in New York City, New York and died September 1, 2012 in Los Angeles, California. +Much of his work has been in collaboration with [a=Burt Bacharach]. [b]Their songbook and production credits should be listed on artist page [a=Bacharach And David][/b]. +His elder brother, [a=Mack David], was also a lyricist and songwriter. Father of [a=Craig David (2)]. +Please note that the song "Baby It's You" was composed by Burt Bacharach with Mack David.Needs Votehttps://www.haldavid.com/https://www.facebook.com/profile.php?id=100069366229370https://twitter.com/haldavidmoviehttps://www.songhall.org/profile/Hal_Davidhttps://www.imdb.com/name/nm0202910/https://en.wikipedia.org/wiki/Hal_Davidhttps://www.loc.gov/item/n80050146/hal-david/https://www.findagrave.com/memorial/96357457/hal-davidhttps://musicianbio.org/hal-david/https://www.famousbirthdays.com/people/hal-david.htmlhttps://www.geni.com/people/Hal-David/6000000017637925306https://adp.library.ucsb.edu/index.php/mastertalent/detail/311027/David_HalA. DavidAl DavidAl DavisD. DavidD. HalD. HallD.HallDavidDavid DalDavid H.David HalDavid HallDavid PaulDavid, HDavid.DavisH DavidH. DavidH. DavidsH. DavisH.B. DavidH.DanisH.DavidH.DavisHa) DavidHalHal DaviaHal DaviesHal DavisHall DavidHall/DavidHarold DavidHarold Lane DavidHel DavidJ. DavidJac M. DavidL. DavidLarry DavidM. DavidNal Davidh. DavidДавидХ. Дэвидデビッドハル・デイヴィッドBacharach And David + +173403Sapphire & SteelCorrectSaphireSapphire And Steel + +173710Garry ShermanAmerican musician, arranger, composer and orchestrator. +Born December 28, 1933 in Brooklyn, New York, USA. +He often collaborated with [a276618]. Sherman played keyboards and arranged Van Morrison's 1967 solo hit "Brown Eyed Girl", produced by Berns. In total, Sherman is credited with work on over thirty hit records. +Sherman left his musical career in the 1980s and became a full-time podiatrist. He came out of musical retirement as music supervisor/arranger for "Piece of My Heart: The Bert Berns Story", in 2014.Needs Votehttps://en.wikipedia.org/wiki/Garry_Shermanhttps://www.playbill.com/person/garry-sherman-vault-0000001195https://www.imdb.com/name/nm0792445/G. ShermanGarri ShermanGary ShermanGary ShermannGerry ShermanJerry ShermanM. ShermanM. ShumanShermanShumanGarry Sherman & His Orchestra + +174248Jaroslav KrčekCzech conductor, composer, ensemble leader, multi-instrumentalist, brother of [a1550673] + +Born 22 April 1939, Čtyři Dvory near České Budějovice (former Czechoslovakia). +Husband of [a=Gabriela Krčková]. Studied at the teacher training department of the B. Jeremiáš School of Music in České Budějovice and the State Conservatoire in Prague. He was a composition pupil of [a=Miloslav Kabeláč] and studied conducting with [a=Bohumír Liška]. Krček began his professional career as music editor for the Czechoslovak Radio Studio in Pilsen, later working in the Supraphon publishing house. Since 1973 he has devoted himself exclusively to composing and performing. He is a co-founder of the innovative Chorea bohemica ensemble (1967) and an artistic director of the FOK Musica bohemica chamber ensemble (1975).Needs Votehttp://www.musicabohemica.eu/enhttp://www.musica.cz/krcekhttp://www.musica.cz/comp/krcek.htmhttp://en.wikipedia.org/wiki/Jaroslav_KrčekJ. Kr(e)cekJ. KrcekJ. KrechekJ. KrčekJKJar. KrčekJaraslav Kr(e)chekJaroslar KrcekJaroslav Kr(e)cekJaroslav Kr(e)chekJaroslav KrcekJaroslav KrchekJaroslav KrecekJaroslav KrechekJaroslav KrečekJaroslave Kr(e)chekJarsoslav Kr(e)cekKr(e)chekKrcekKrechekKretchekKrčekPrague Madrigal SingersCapella IstropolitanaMusica BohemicaChorea BohemicaGentlemen Singers + +175006Gianna NanniniGianna NanniniItalian Pop musician, singer and songwriter, born 14 June 1954 in Siena. +Sister of formula one driver Alessandro Nannini.Needs Votehttp://www.giannanannini.comhttp://www.giannissima.it/http://www.facebook.com/giannananninihttp://www.twitter.com/officialnanninihttp://www.myspace.com/giannananniniofficialhttps://www.instagram.com/officialnannini/https://en.wikipedia.org/wiki/Gianna_NanniniDžani ManiniG, NanniniG. ManniniG. NanniniG.N.G.NanniniGiana NaniniGiana NanniniGiani NanniniGiannaGianna NaninniGianna NanninniGianna・NanniniGianni NanniniGiannia NanniniManniniNaniniNaninniNanniniNininig. nanninig.n.Flora Fauna & CementoArtisti Uniti Per L'Abruzzo + +175020Jimmy Jones (2)Jazz double bass player.Needs VoteJimmie JonesNoble Sissle SwingstersEarl Bostic And His Orchestra + +176035JtsJames T. StanhopeAt the tender age of sixteen, JTS (James T Stanhope) discovered his love for Hardcore. This progressed into the purchasing of his first set of turntables. Learning to spin vinyl, mixing some great mixes just wasn't enough for this young Aussie (hailing from Ryde, Sydney), so his next investment only a year later was a Laptop and Fruity Loops. James started playing around with noises and effects and turned some of these ideas into some palatable music. +This became the next obsession so much so that it developed into a massive passion which put him on a plane and jetted him off to the UK when he was twenty. His sights were locked firmly on fulfilling his dream of being a top UK hardcore player. As he finds his feet with the scene, his knowledge and skill for production also grows. +You only have to listen to JTS' music to know that he will have you all stomping on the dance floor! +Correcthttp://www.myspace.com/jamesstanhopemusichttp://soundcloud.com/jtstanhopeJ.T.S.JTSJames T. Stanhope + +176185Umberto TozziItalian pop singer, born on March 4, 1952 in Turin. +Along with [url=https://www.discogs.com/artist/246232-Raf-5]Raf[/url], he reached the third place in the Eurovision Song Contest of 1987 with the song 'Gente Di Mare'.Needs Votehttps://www.umbertotozzi.com/https://www.facebook.com/umbertotozziofficialhttps://www.last.fm/music/Umberto+Tozzihttps://it.wikipedia.org/wiki/Umberto_Tozzihttps://en.wikipedia.org/wiki/Umberto_Tozzihttps://www.imdb.com/name/nm0870372/A. TozziF. TozziHumberto TozziO. TozziTOZZITosiTottiToziTozziTozzi, UmbertoTozzyU Tozy-GU TozziU. TossiU. TozziU.TozziUmbertoUmberto BossiUmberto Tozzi SugarUmerto TozziUnberto TozziV TozziV. TozziУ. ТоцциУмберто ТоцциトッツィLa Strana SocietàPatrick Samson SetData (23)Off Sound + +178788Wade MarcusJazz, soul, funk arranger - producer - band leader. +Born in Cleveland U.S.A. He got his first break at [l=Motown] and arranged numerous records for the Detroit label. In his earlier years played trombone in Lionel Hampton's orchestra.Needs Votehttp://en.wikipedia.org/wiki/Wade_Marcushttp://www.whosampled.com/Wade-Marcus/MarcusMarcus WadeW MarcusW. MarcusW. Marcus BeyWadeWade "Sacred Pen" MarcusWade Marcus BeyWade MarkusWade T. MarcusWade WarcusWade-MarcusWake MarcusLionel Hampton And His OrchestraThe Whizz KidsBrass FeverGene Ammons - Sonny Stitt Septet + +179055Art FarmerArthur Stewart FarmerAmerican jazz trumpeter and flugelhorn player +Born August 21, 1928, Council Bluffs, Iowa, USA +Died October 4, 1999, New York City, New York, USA +Formed association with saxophonist/composer [a258088] in the mid-1950s, later co-founded [a1432600] with [a185752] after brief period with [a29973]. Farmer performed in the [a=ORF Big Band] from 1971 until 1977. Late in his career, he switched to the custom designed flumpet exclusively, which was built for him to draw qualities of both trumpet and flugelhorn. Twin brother of bassist [a255979] (died 1963).Needs Votehttps://artfarmer.org/https://en.wikipedia.org/wiki/Art_Farmerhttps://adp.library.ucsb.edu/names/314819A FarmerA. FarmerA. FramerArtArt Farmer (as "Peter Urban")Art Farmer And His BandArt Farmer Brass GroupArthur FarmerArthur Stewart "Art" FarmerFarmerА. ФармерАрт ФармерАрт Фармрアート・ファーマーPeter Urban (4)Peter Herbolzheimer Rhythm Combination & BrassGil Evans And His OrchestraClarke-Boland Big BandThe George Gruntz Concert Jazz BandThe Horace Silver QuintetLionel Hampton And His OrchestraRhythmstickBenny Golson SextetOrchester Johannes FehringWardell Gray QuintetGerry Mulligan QuartetThe New Gerry Mulligan QuartetThe Hank Mobley QuintetThe Art Farmer SeptetManny Albam And His Jazz GreatsHal McKusick QuintetGeorge Russell & His SmalltetNew York Jazz SextetGerry Mulligan And His SextetArt Farmer QuartetThe Teddy Charles TentetCertain Lions & TigersThe Galactic Light OrchestraThe Prestige All StarsThe JazztetClifford Brown Big BandArt Farmer QuintetDuke Jordan QuartetORF Big BandGeorge Russell OrchestraJimmy Giuffre & His Music MenGene Ammons SextetGeorge Williams And His OrchestraThe Mal Waldron SextetWardell Gray SextetArt Farmer And His OrchestraErich Kleinschuster SextettThe Quincy Jones Big BandOscar Pettiford OrchestraZagreb Jazz-QuintetPeter Herbolzheimer All Star Big BandEddie Costa QuintetThe Prestige Blues-SwingersPete Johnson's OrchestraTeddy Charles And His SextetB. P. Convention Big BandArt Farmer SextetBenny Golson QuintetGerry Mulligan GroupAndré Previn EnsembleGerry Mulligan And The Jazz ComboThe New JazztetThe Bill Potts Big BandThe Ray Bryant QuintetArt Farmer/Lee Konitz QuintetGerry Mulligan Art Farmer QuartetArt Farmer TentetWardell Gray L.A. StarsJoe Carter QuartetArt Farmer Gigi Gryce QuintetTime Travellers (5)Art Farmer / Jackie McLean QuintetHal McKusick SextetJim Hall QuintetSonny Clark SextetMal Waldron Septet + +179056Galt MacDermotArthur Terence Galt MacDermotCanadian composer and pianist. +Born December 18, 1928, in Montréal, Québec, Canada. +Died December 17, 2018, in Staten Island, New York, USA. +Best remembered for his score of the musical “Hair.”Needs Votehttps://galtmacdermot.com/https://en.wikipedia.org/wiki/Galt_MacDermothttps://www.youtube.com/@MacDermotMusicLLCA MacDermotA. MacDermotA. MacdermotA. McDermotA. McDermottA.MacDermotA.T.G.MacDermotArthur MacDermotArthur McDermotArthur T. Galt. MacDermottArthur Terence / Galt MacDermotArthur Terence GaltArthur Terence Galt MacDermotArthur Terence Galt MacDermot,Arthur Terence Galt MacdermotArthur Terence Mac DermotArthur Terrance Galt MacDermotArthur Terrence Galt MacDermontArthur Terrence McDermottB. Mac DermotB. MacDermotC. Mac DermotC. McDermottD MacD. MacD.MacDermontDermotG MacDermotG McDermotG. DermotG. M. DermotG. M. DermottG. Mac DermontG. Mac DermotG. Mac DermottG. MacD.G. MacDarmotG. MacDermoG. MacDermontG. MacDermotG. MacDermottG. MacdermontG. MacdermotG. MacdermottG. Mao DermotG. Mc DermotG. Mc-DermontG. Mc-DermotG. Mc. DermoG. Mc. DermotG. Mc.DermotG. McCdermotG. McDermontG. McDermotG. McDermottG. McDernotG. McDormotG. McdemotG. マクダモットG. マクダーモットG./McDermottG.M. DermotG.M. DermottG.M.DermotG.Mac DermotG.MacDermotG.Mc DermotG.Mc. DermotG.McDermotGail MacDermotGal MacDermontGal McDermotGald MacDermotGaltGalt - MacDermottGalt - MacdermotGalt Luc DermotGalt Mac DermentGalt Mac DermontGalt Mac DermotGalt Mac DermottGalt Mac. DermotGalt MacDemotGalt MacDermontGalt MacDermot And His MusicGalt MacDermot's First Natural Hair BandGalt MacDermot's Jazz TrioGalt MacDermottGalt MacdermotGalt Macdermot's First Natural Hair BandGalt MacdermotsGalt Mc DermontGalt Mc DermotGalt McDemottGalt McDermontGalt McDermotGalt McDermottGalt McdermotGalt, MacDermotGalt-MacDermotGalt. MacdermotGault MacDermotGault McDermonttGault McDermotGault McDermottGolt MacDermotGolt MacDermottJ. MaCdermotJ. MacDermontJ. McDermotKalt MacDermotM. DermontM. DermotM. Dermot GaltM. DermottM. G. Mc DermotMacMac DermontMac DermotMac Dermot GaltMac DermottMac-DermontMac-DermotMacDemotMacDermoMacDermontMacDermotMacDermottMacdermitMacdermontMacdermotMacdermottMadDermotMakdermontsMc DermetMc DermontMc DermotMc DermottMc. DeermotMc. DermotMc. DermottMcDermontMcDermotMcDermottMcDermòtMcDernotMcdermotMec DermotMedermotT. MacDermotWalt Mac DermotdermontА. МакдермонтГ. Мак ДермотМакдермонтМекдермотג. מק-דרמונטג. מק־דרמונטגאלט מק דרמונטגאלט מק-דרמונטגאלט מקדרמונטמק - דרמוטמק-דרמונטFergus MacRoyArthur MacDermotNew Pulse Jazz BandGalt MacDermot And His OrchestraGalt MacDermot And His TrioGalt MacDermot Sextet + +179389Cab Calloway And His OrchestraNeeds VoteAl Dollar and His Ten CentsAll Dollar and His Ten CentsBob Galloway & His OrchestraCab CallowayCab Calloway & His BandCab Calloway & His OrchCab Calloway & His Orch.Cab Calloway & His OrchestraCab Calloway & Hs OrchestraCab Calloway & OrchCab Calloway & Orch.Cab Calloway And His Orch.Cab Calloway And OrchestraCab Calloway E La Sua Orch.Cab Calloway E La Sua OrchestraCab Calloway Et Son Orch.Cab Calloway Et Son OrchestreCab Calloway OrchCab Calloway Orch.Cab Calloway OrchestraCab Calloway Und Sein OrchesterCab Calloway With His OrchestraCab Calloway and His OrchestraCab Calloway's OrchestraCab Colloway & His OrchestraChorusEnsembleFenton's RainbowsHis OrchestraOrchestra Cab CallowayThe Cab Calloway OrchestraThe CarolinersThe ClevelandersThe Jungle BandThe Whoopee MakersCab Calloway And His Cotton Club OrchestraBob Galloway And His OrchestraIke QuebecDizzy GillespieJonah JonesKeg JohnsonQuentin JacksonCab CallowayCozy ColeMilt HintonIrving RandolphEddie BarefieldDanny BarkerRussell SmithLeon "Chu" BerryLeroy MaxeyWalter ThomasLammar WrightMorris WhiteClaude JonesEdwin SwayzeeAl MorganHilton JeffersonHarry WhiteDoc CheathamArville HarrisBennie PayneGreely WaltonDePriest WheelerEverett BarksdaleAl GibsonShad CollinsJerry BlakeJ.C. HeardPaul WebsterChauncey HaughtonTyree GlennMario BauzáDave RiveraJimmy Smith (5)Charlie StampsEarres PrinceWilliam BlueReuben ReevesAndrew Brown (5)R.Q. DickersonIrving Brown (2)The Caballiers + +180025Gabrieli ConsortBritish ensemble, founded in 1982 by [a180026]. +Gabrieli Consort is the choral group of Gabrieli Consort & Players as mostly referenced together.Needs Votehttps://www.gabrieli.com/Gabrieli Consort & Gabrieli PlayersGabrieli Consort & PlayersGabrieli Consort And PlayersGabrieli Consort and PlayersGabrieli Consort, Choir & PlayersPaul McCreeshRosalind WatersMichael McCarthyGerard O'BeirnePhilip EastopRoger HarrisonTessa BonnerSimon Davies (3)Matthew VineMark Bennett (2)David CleggCarys LaneConstanze BackesAlexandra GibsonNatasha KraemerBen RayfieldSimon Grant (4)Charles GibbsAngus SmithChris BaronKirsty HopkinsBenedict HoffnungPeter HarveyNancy ArgentaDonald GreigCharles Daniels (2)Robert Harre-JonesRobert MacdonaldGill RossJulian ClarksonCarol Hall (2)Stephen Charlesworth (2)Richard SavageWilliam HuntWilliam MissinAnthony RobsonAndrew TusaCatherine LathamJonathan Peter KennyPeter NardoneSusan Hemington JonesCharles PottHelen OrslerRoy MowattLeon King (2)Sally DunkleyRobert HornChristopher PurvesChristopher HoganHenry WickhamCatherine KingLibby CrabtreeJed WentzAdrian PeacockJames O'Donnell (2)Philip DaggettDuncan MacKenzieRuth DeanPaul Agnew (2)Andrew CarwoodRebecca OutramRobert Evans (2)Jonathan Best (2)Simon RickardHelen GrovesRichard BryanRoger BrennerPeter GoodwinFrancis SteeleJames GilchristRobin BlazeJonathan ArnoldTimothy Wilson (2)Julie CooperTom Phillips (6)Paul BeerVictoria GunnSimon Wall (2)Andrew RuppWilliam TowersMichael Harrison (4)Warren Trevelyan-JonesJonathan BoseJane ComptonRodrigo Del PozoCharles HumphriesJanet CoxwellMark Le BrocqJulian PodgerSteven HarroldPeter Harvey (2)Malcolm Smith (5)Rachel BevanKatherine McGillivrayAlastair HamiltonPatrick JackmanDavid Martin (22)Robin TysonArno PaduchAlexandra BellamyPatrick Craig (3)Adrian HuttonLaurence WhiteheadKatharina SpreckelsenElin Manahan ThomasGeorge LawnAlicia CarrollJames Huw-JeffriesRoy RashbrookJeremy Taylor (6)Robert HowarthPeter ThorleySarah PendleburyAlastair SinclairRebecca ProsserPenny PayKate Hamilton (2)Juliet SchiemannRosemary TusaJonathan Morgan (3)Bernard Robertson (2)Robert Wilson (11)Lucy BallardKate CookMorag BoyleCaroline Radcliffe (2)Steven Carter (4)Martin OxenhamJenny Cassidy (2)Kathryn Cooke + +180026Paul McCreeshBritish conductor, born 24 May 1960. Founder of the [a180025] and Players in 1982, and its artistic director.Needs Votehttps://en.wikipedia.org/wiki/Paul_McCreeshMcCreeshP. McCreeshPaul Mc CreeshGabrieli Consort + +180027Nicholas ParkerClassical violinist. Works now as a recording producer.Needs VoteN. ParkerNick ParkerThe English Baroque SoloistsThe English Concert + +180119Chuck BerryCharles Edward Anderson BerryAmerican guitarist, singer and songwriter and one of the pioneers of rock and roll music, born October 18, 1926, St. Louis, Missouri, died March 18, 2017, St. Charles County, Missouri Inducted into both the Songwriters Hall of Fame and the Rock and Roll Hall of Fame in 1986. + +Beware: The songwriter of "Louie, Louie" is [a=Richard Berry].Needs Votehttps://www.chuckberry.com/https://www.facebook.com/ChuckBerry/https://twitter.com/ChuckBerryhttps://www.instagram.com/_chuckberry/https://www.youtube.com/channel/UCUfKmP9mv1yUkxlE5DDX5Zghttps://en.wikipedia.org/wiki/Chuck_Berryhttps://www.last.fm/music/Chuck+Berryhttps://www.imdb.com/name/nm0001946/https://myspace.com/chuckberryspacehttps://myspace.com/officialchuckberryfanclubhttp://www.crlf.de/ChuckBerry/index.htmlhttps://www.allmusic.com/artist/chuck-berry-mn0000120521=BerryB. AndersonBarryBarry ChuckBearyBengBeorryBerriBerryBerry C.Berry Charles EdwardBerry ChuckBerry chuckBerry, CBerry, ChuckBeryBettyByhuckberryC BerryC, BerryC.C. B.C. BarryC. BeeryC. BernyC. BerriC. BerryC. Berry MusicC. BerrylC. BeryyC.BerryC.E. BerryCH. BerryCh BerryCh. BerryCh.BerryChack BerryCharlesCharles "Chuck" Edward BerryCharles BerryCharles E. BerryCharles Edward Anderson BerryCharles Edward BerryChick BerryChock BerryChu BerryChuch BerryChuckChuck "Duck Walk" BerryChuck B.Chuck BarryChuck BerriChuck Berry MusicChuck Berry Music Inc.Chuck Berry Music, Inc.Chuck Berry!Chuck BorryChuck E. BerryChuck-BerryChuck/BerryChucky BerryChuk BarryChuk BerryChyck BerryCkuck BerryCuck BerryE. AndersonE. BerryG. BerryI. BerryJ. BerryJack BerryMoore BerryPerryR. BerryS. BerryS. C. BerryS.BerryShuck BerryThe Estimable Chuck Berryc. BerryČ. BeriЧ. БерриЧ. БэрриЧак БерриЧък Бериチャック・ベリーベリーE. AndersonChuck Berry & His ComboThe Ecuadors + +180497The Coalition (2)Nick Rowland & Dave WrightCorrectCoalitionNick Rowland & Dave WrightPBS (Phatt Bloke & Slim)Dave WrightNick Rowland + +180619Leigh GreenLeigh GreenRecord producer, engineer, composer and DJ based in Leeds, UK. + +Notable works include [r13415300], [r8945144], [r20133766], [r473617]Needs VoteGreenYummy TunesSlam Dunk PhunketeersBungle (6)Ivor SemiDilemma (29)Les Verde OrchestraL-E-V8 & Leigh GreenLox & Leigh Green + +180660Natasha WrightClassical viola player and viola/violin/piano tutor. +She attended the [l459222] and [l305416]. Former member of the [a=London Symphony Orchestra] (2004-2012). Teacher at the [l290263] from September 2009.Needs Votehttps://www.feenotes.com/database/artists/wright-natasha/https://schoolofeverything.com/teacher/natashawrighthttps://vgmdb.net/artist/22957London Symphony OrchestraBBC Symphony OrchestraPhilharmonia Orchestra + +180712Richie WiseGuitarist, singer and producer, engineerNeeds Votehttp://www.allmusic.com/artist/richie-wise-mn0000852871R. WiseR. WissRich WiseRichie WiseeRichie WissRitchie WiseWiesenWiseWise Richie[Fire Engine Driven By]Richard WiseDust (12) + +180713Tony PapaEngineer + +Has worked at [l=Santa Monica Sound Recorders] +Needs VoteAnthony PapaPapaTony PapasTony PappaTony PapamichaelAnthony PapaMichael + +180926Eric CarmenEric Howard CarmenEric Carmen (born August 11, 1949, Cleveland, Ohio, USA, died in the weekend of 9-10 March 2024 aged 74) was an American singer, songwriter, guitarist and keyboardist. He scored numerous hit songs in the 1970s and 1980s, first as a member of the [a520737] and later as a solo artist.Needs Votehttps://www.ericcarmen.com/https://www.imdb.com/name/nm0138381/https://en.wikipedia.org/wiki/Eric_Carmenhttps://forward.com/culture/595603/eric-carmen-jewish-history-raspberries-kaminkowitz-springsteen-dirty-dancing/#:~:text=Carmen's%20paternal%20great%2Dgrandfather%20immigrated,The%20name%20stuck.CarmanCarmenCarmen Eric HowardCarmen-LowdenCauvrenE CarmenE. CamenE. CarmanE. CarmeE. CarmenE. H. CarmenE.CarmenEricEric CamenEric CarmanEric CarmonEric Howard CarmenEriccar MenErick Carmenエリック・カルメン艾瑞克卡門에릭 카멘RaspberriesCyrus ErieThe Quick (4) + +180955Johnny WilliamsJohn Williams, Jr.American double bass player. +Born: March 13, 1908 in Memphis, Tennessee +Died: October 23, 1998 in New York City, New York + +[b]For the arranger, conductor and composer consider [a=John Williams (4)][/b] also credited as Johnny Williams. + +Williams first learned violin, but disliked the instrument and instead took up tuba while in high school. During the early 1930s he played tuba, then double bass, in Southern territory bands. In 1936 he moved to New York, where he took part in several recording sessions with Henry "Red" Allen (1936-1937), played with the Mills Blue Rhythm Band (1937-1938), recorded with Buster Bailey (December 1938), and worked briefly with Benny Carter. In 1939 he made the first of several recordings with Billie Holiday (to 1942, under the leadership of Holiday or Teddy Wilson), played with Frankie Newton at the downtown location of Café Society, recorded with Harry James, James P. Johnson, J. C. Higginbotham, the Port of Harlem Jazzmen, the Port of Harlem Seven, Newton, and Sidney Bechet, and joined Coleman Hawkin’s band. After leaving Hawkins the following year Williams played with Louis Armstrong until 1941. In summer 1941 he joined Wilson’s sextet (for illustration see Wilson, Teddy), with which he appeared in the film short "Boogie Woogie Dream" (1941). He recorded with his fellow sideman Edmond Hall in January 1944 and remained at Café Society under Hall’s leadership when Wilson disbanded in May 1944. During these years he was occasionally reunited with Armstrong, most notably at a concert involving Hall’s band at Carnegie Hall in February 1947. When Hall disbanded in mid-June 1947, Williams joined Tab Smith at the Savoy Ballroom (to 1952) and Johnny Hodges (c1952-1955). He then ceased working as a full-time musician, but in 1968 he traveled to France with Buddy Tate, and in the 1970s he worked frequently with Red Richards. He also toured with Bob Greene’s concert troupe, the World of Jelly Roll Morton, from 1978 to 1982, and with the Harlem Blues and Jazz Band from 1978 until June 1998, when a stroke ended his career.Needs Votehttps://en.wikipedia.org/wiki/Johnny_Williams_(bassist)J. WilliamsJohn WIlliamsJohn WilliamJohn WilliamsJohnny WilliamJohnny Williams Jr.Billie Holiday And Her OrchestraLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraTeddy Wilson TrioColeman Hawkins And His OrchestraSidney Bechet QuintetEdmond Hall Swing SextetThe Boogie Woogie TrioTab Smith OrchestraFrank Newton And His OrchestraMildred Bailey And Her Oxford GreysThe Buddy Tate Celebrity Club OrchestraJohnny Hodges And His OrchestraColeman Hawkins' All Star OctetThe Harlem Blues & Jazz BandBilly Kyle And His Swing Club BandBuster Bailey's Rhythm BustersPort Of Harlem JazzmenEdmond Hall's All Star QuintetEdmond Hall And His OrchestraJ.C. Higginbotham QuintetFrankie Newton & His Cafe Society OrchestraFrank Newton QuintetPort Of Harlem Seven + +181108Bob BergBob BergAmerican tenor saxophonist, born 7 April 1951 in Brooklyn, New York, USA and died 5 December 2002 in Amaganset, Long Island, New York, USA (killed in a road traffic accident).Needs Votehttps://en.wikipedia.org/wiki/Bob_Berghttps://www.allmusic.com/artist/bob-berg-mn0000759694B. BergBergBergoBob BRobert Bergボブ・バーグThe Players AssociationSteps AheadRhythmstickChroma (2)Chick Corea QuartetRandy Brecker QuintetThe Paul Carr QuartetJohn McNeil QuintetKenny Drew QuintetGary Burton & FriendsMarc Copland QuintetMiles Davis SeptetCedar Walton QuartetJukkis Uotila BandCedar Walton QuintetBob Berg QuartetAcoustic QuartetSam Jones QuintetEastern RebellionMiles Davis OctetInit (6)Mike Stern & Bob Berg BandThe Klaus Suonsaari QuintetRandy Brecker BandThe Jazz Times Superband + +182127Helen WardHelen WardAmerican singer of swing and jazz music. +Born September 19, 1913 in New York, USA. +Died April 21, 1998 (aged 84) in Arlington, Virginia, USA. +Best remembered for her work with Benny Goodman’s orchestra during the mid-1930s.Needs Votehttps://en.wikipedia.org/wiki/Helen_Ward_(singer)http://www.jazzhouse.org/gone/lastpost2.php3?edit=920547543https://www.imdb.com/name/nm0972640/https://www.allaboutjazz.com/musicians/helen-ward/https://syncopatedtimes.com/benny-goodmans-vocalists-from-helen-ward-to-martha-tilton/https://jazzlives.wordpress.com/tag/helen-ward/https://adp.library.ucsb.edu/names/106807E. WardH. WardHWHelen Ward OrchestraЭлен Уордヘレン・ウォードHarry James And His OrchestraTeddy Wilson And His OrchestraBenny Goodman And His Orchestra + +182929Gene KellyEugene Curran KellyAmerican dancer, actor, singer, choreographer, director and producer. +Born: August 23, 1912 / Pittsburgh, Pennsylvania, USA. +Died: February 02, 1996 / Beverly Hills, California, USA. + +Eugene Curran “Gene” Kelly was known for his energetic and athletic dancing style. Probably best known for his performance in '[url=https://www.discogs.com/master/355388]Singin' In The Rain[/url]', he was a dominant force in Hollywood musical films from the mid 1940s until their demise in the late 1950s. + +Gene Kelly received numerous awards including an Academy Honorary Award in 1952 for his career achievements, lifetime achievement awards in the Kennedy Center Honors and from the Screen Actors Guild and the American Film Institute. + +In 1999, the American Film Institute named him among the Greatest Male Stars of All Time.Needs Votehttps://en.wikipedia.org/wiki/Gene_Kellyhttps://www.biography.com/performer/gene-kellyhttps://www.imdb.com/name/nm0000037/https://adp.library.ucsb.edu/names/324982G. KellyGeneKelly GeneM. Gene KellyДжин Келли + +183212Ramon RickerAmerican classical and jazz woodwinds player (flute, clarinet, saxophone), professor, author and composer (b. September 16, 1943). Ricker was professor of saxophone, director of the Institute for Music Leadership and senior associate dean for professional studies at the Eastman School of Music of the University of Rochester until his retirement in 2013.Needs Votehttp://www.rayricker.com/https://en.wikipedia.org/wiki/Ray_RickerRay RickerRickerRochester Philharmonic Orchestra + +183569Rodrigo ReichelGerman violinist.Needs Votehttps://de.wikipedia.org/wiki/Rodrigo_ReichelR. ReichelReichelRodrigoRodrigo RechelRodrigo ReicheltG-StringsSymphonie-Orchester Des Bayerischen RundfunksHamburger StudiostringsNDR SinfonieorchesterNDR Elbphilharmonie OrchesterFabergé-Quintett + +183908Tom Walsh[b]For the Canadian trombonist, please see [a=Tom Walsh (2)][/b]. +[b]For the UK trumpeter, please see [a=Tom Walsh (12)][/b]. + +American drummer/percussionist, native of Buffalo, New York, USA. Founding member of [a=Spyro Gyra] (playing on their first record), before joining the pop/soft rock group [a=America (2)]. Since he left America, he has become a session musician in Los Angeles, California, USA. + +Tom Walsh – Percussion & Drums in Supertramp (1996–1997) (Album. Supertramp - Some Things Never Change (percussion (all tracks); drums on "And The Light") 1997. +Needs Votehttp://www.tomwalshmusic.com/https://www.facebook.com/tom.walsh.3762T. WalshTommy WalshWalshSpyro GyraAmerica (2)SupertrampBob Conti QuartetArgyle Street BandDennis Quaid & The Sharks + +184451Serious MindsMarco Paolo Pierucci, Marco Chiodi CorridiNeeds VoteMarco Paolo PierucciMarco Paolo PierucciMarco Chiodi Corridi + +185751David SanbornDavid William SanbornUS alto saxophonist; born 30 July 1945 in Tampa, Florida, USA; died 12 May 2024 in Tarrytown, New York, USA +Needs Votehttps://www.davidsanborn.com/https://www.facebook.com/davidsanbornofficialhttps://www.instagram.com/davidsanbornofficial/https://en.wikipedia.org/wiki/David_Sanbornhttps://myspace.com/davidsanbornbandhttps://twitter.com/DavidSanbornhttps://www.imdb.com/name/nm0760824/https://www.allmusic.com/artist/david-sanborn-mn0000188432D. SambornD. SanbordD. SanbornD.SanbornDaveDave 'Pacino' SanbornDave SanbonDave SanbornDave SanborneDave SandornDavidDavid "King Sax" SanbornDavid SamboneDavid Sanborn GroupDavid SanborneDavid SandbornDavid SandornDavid SanfordDavid SunbornDavid W. SanbornDavid William SanbornDavis SanbornO. SanbornO.SanbornSanbornSanbournSandbornデイヴィッド・サンボーンデヴィッド・サンボーン데비드 산본The Players AssociationGil Evans And His OrchestraThe Paul Butterfield Blues BandThe Saturday Night Live BandThe World's Most Dangerous BandThe New York All StarsDavid Sanborn BandBob Mintzer Big BandThe Chaos Choir + +185752Benny GolsonBennie GolsonAmerican bebop/hard bop jazz tenor saxophonist, composer, and arranger, born in Philadelphia, PA on January 25, 1929. Died September 21, 2024 in Manhattan, New York. +While in high school in Philadelphia, Golson played with contemporaries including [a97545], [a253641], [a264872], [a253445], [a257251], and [a312519]. After graduating from Howard University, Golson joined [a533188]'s rhythm and blues band; [a251783], whom Golson came to consider the most important influence on his writing, was Jackson's pianist at the time. +From 1953, Golson performed with the bands of [a136133], [a258460], [a256012], [a64694], and [a262128], briefly serving as the Messenger's music director. +In 1956, after trumpeter [a259082] died in a car accident, Golson composed "I Remember Clifford" as a tribute. Golson composed other jazz standards around this time, such as "Stablemates", "Killer Joe", "Whisper Not", "Along Came Betty", and "Are You Real?" +From 1959 to 1962, Golson co-led the Jazztet with [a179055] which featured [a10620] before he joined Coltrane's quartet. Golson then left jazz to concentrate on studio and orchestral work for 12 years. During this period, he composed music for such television shows as "Ironside", "Room 222", "M*A*S*H", and "Mission: Impossible". In the mid-1970s, Golson returned to performing and recording jazz. In 1983, he revived the Jazztet. +In 1995, Golson received the NEA Jazz Masters Award of the National Endowment for the Arts. In October 2007, he received the Mellon Living Legend Legacy Award as well as the University of Pittsburgh International Academy of Jazz Outstanding Lifetime Achievement Award. In November 2009, Benny was inducted into the International Academy of Jazz Hall of Fame.Needs Votehttps://www.nytimes.com/2024/09/23/arts/music/benny-golson-dead.htmlhttp://www.bennygolson.com/https://www.allmusic.com/artist/benny-golson-mn0000135391https://en.wikipedia.org/wiki/Benny_Golsonhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/318144/Golson_Bennyhttps://www.imdb.com/name/nm0326680/B GolsonB. ColsonB. GilsonB. GoisonB. GoldsonB. GolonB. GolsenB. GolsonB. GolsonnB. GolsowB.G.B.GolsonBeni GolsonBenni GolsonBennie GolsonBenny BolsonBenny ColsonBenny GoisonBenny GoldsonBenny GoldstenBenny GolsenBenny GolstonBenny-GolsonBobby GoldsonBobby GolsonColsonGalsonGoisonGoldsenGoldsonGolsenGolsonP. GolsonБ. ГолсонБенни ГолсонБэнни ГолсонГолсонベニー・ガルスンベニー・ゴルソンQuincy Jones And His OrchestraThe Jazz MessengersArt Blakey & The Jazz MessengersDizzy Gillespie And His OrchestraBuddy Rich And His OrchestraDizzy Gillespie Big BandBenny Golson SextetBenny Golson Funky QuintetCharles Mingus And His Jazz GroupBenny Golson GroupThe Big Band Of Benny GolsonThe JazztetJon Hendricks And The All-StarsRoots (8)The Curtis Fuller SextetThe Dizzy Gillespie OctetGeorge Russell OrchestraCurtis Fuller's QuintetThe Quincy Jones Big BandThe Benny Golson OrchestraOscar Pettiford OrchestraWynton Kelly SextetBenny Golson And The PhiladelphiansCharlie Persip's Jazz StatesmenBenny Golson QuintetThe New JazztetBenny Golson QuartetErnie Henry OctetThe Quartet LegendLe Quintette Du FilmSahib Shihab Sextet + +186252Dave BurnsDavid Phillip BurnsAmerican jazz trumpeter. + +Born: March 05, 1924 in Perth Amboy, New Jersey. +Died: April 05, 2009 in Freeport, New York.Needs Votehttps://en.wikipedia.org/wiki/Dave_Burns_(musician)https://adp.library.ucsb.edu/names/358879BurnesBurnsD. BurnsD.BurnsDave BrownDave BurnesDavid BurnsDuke BurnsJames BurnsDizzy Gillespie And His OrchestraDizzy Gillespie Big BandMilt Jackson OrchestraMilt Jackson And Big BrassJames Moody And His ModernistsWalter Gil Fuller And His OrchestraJames Moody And His BandGeorge Wallington And His BandRay Brown's All StarsGil Fuller OrchestraThe Arvell Shaw Quintet + +186453DyewitnessCornelis Mischa van der HeidenEx-Member: Pieter W. BervoetsNeeds Votehttp://www.djmisjah.comhttp://www.myspace.com/djmisjahDey WitnessDeywhitnessDeywitnessDie WitnessDye WitnessDye WittnessDye witnessDyewithnessDyewitnesDyewittnessDyewtnessDywitnessDJ MisjahAMbassadorMischa van der HeidenMYLE (2)Piet Bervoets + +186530Alf BamfordAlfred Geno Raymond BamfordUK Hard Dance / producer, remixer, engineer and DJ +Owner and A&R of Kompression Records. He also produces in-house for [l=Heat Vinyl] & is part of the [i]Masif DJ's[/i] collective.Needs VoteA BamfordA. BamfordA. BramfordA.BamfordAlf "Technikal" BamfordAlf 'Technikal' BamfordAlf BmafordAlfie BamfordBamfordTechnikalSolar ScapeElemental (3)Alfy XTechnikoreCritikal (2)Covered UpImmerzeOutsider (14)IkorusKofie AnonCloud Nine (2)Masif DJ'sHardcore MasifSteve Hill vs TechnikalFlashnikalAstrobassThe Lamin8ers + +186773KutskiJohn WalkerEnglish DJ/producer from Chester (UK), currently based in Warsaw (Poland). With his infamous technical ability, incorporating DMC-style scratching and mixing into every perfectly constructed set, it's not difficult to see why Kutski has earned the tag ‘the people’s favourite’, voted the UK’s No.1 hard dance DJ in the DJ Mag Top 100 DJs poll and scooping up awards for ‘Best UK Hard DJ’ and ‘Outstanding Achievement’ in the Hard Dance Awards 2010 as well as best hard dance DJ in the Hardcore Heaven Awards! + +His weekly BBC Radio One show has grown from strength to strength reaching new heights being the very first time hard dance & hardcore has had a weekly format to reach out to new audiences, an honour but also a well deserved plaudit for a true hard working professional. + +This unique diversity and musical knowledge convinced DJ Magazine to approach Kutski to become their newest hard dance and hardcore column writer. Kutski also generously shares his technical and musical knowledge with the dance music community online via his Youtube channel. + +Demonstrating all the latest DJ equipment hardware, software, tricks of the trade and production techniques. His tutorials and other videos are clocking up tens of thousands of hits, often getting hitting the top 10 most viewed musicians on Youtube and he has recently been announced as the 97th most watched UK musician on youtube!. His channel currently has over 2,000 subscribers, which is no mean feat!Needs Votehttps://m.twitch.tv/kutski/profilehttps://www.instagram.com/kutski/http://soundcloud.com/kutskiDJ KutskiKutsiSlutskiJohn Walker (11) + +186883DJ FaustoFausto TaloneTrance / Hard Trance DJ & producer from Amsterdam, the Netherlands. +Born on November 15, 1970 from an Italian father and a Dutch music teacher. +Co-founded the label [l=XSIF Records] (later renamed to [l=Excessive Records]) in 2005 alongside [a=Junior Rodgers]. +Spins a wide range of style including: Classics, House, Trance, Techno, Hard Trance, Harddance & HardstyleNeeds Votehttp://www.djfausto.nl/http://www.djfausto.com/http://www.facebook.com/DJFaustoAmsterdamhttp://twitter.com/FaustoTalonehttp://soundcloud.com/tall-faustohttp://www.crossover-management.nl/v2/dropdown/8FaustoFausto Talone + +187048Knut SönstevoldSwedish classical bassoonist and composer of Norwegian birth, born December 20, 1945 in Oslo. + +He studied bassoon for Professor Karl Öhlberger at the Hochschule für Musik und darstellende Kunst in Vienna during the years 1960–68. Knut Sönstevold was elected to the Royal Academy of Music in 1992 and is the only bassoonist there. As of the autumn of 1997, he is an adjunct professor at the Royal Academy of Music in Stockholm. + +Sönstevold has previously been a solo bassoonist in the Radio Symphony Orchestra in Copenhagen and in the Swedish Radio Symphony Orchestra and teaches at the Royal Academy of Music in Stockholm. He is also active as a baroque bassoonist.Needs Votehttp://sv.wikipedia.org/wiki/Knut_S%C3%B6nstevoldK. SonstevoldKnut SonstevoldKnut SönstervoldKnut SønstevoldSönstevoldSveriges Radios SymfoniorkesterNeues Bachisches Collegium Musicum LeipzigNationalmusei KammarorkesterMusica Nova (4)Stockholms BlåsarkvintettDanmarks Radios SymfoniorkesterEnsemble La Monica + +187444Simon MayHe won a choral scholarship for Cambridge University, where he acquired a degree in modern languages. While teaching languages at Kingston Grammar School, he co-wrote a musical named Smike with a colleague (Roger Holman). Following the publicity Smike attracted, May was contacted by the BBC, who televised the play in 1973. The show has subsequently been staged many times by youth drama groups. +While working at ATV, he was asked to compose some music for Crossroads. [a=Stephanie De-Sykes] got to number 2 in the UK Singles Chart in 1974 with the subsequent "Born with a Smile on my Face", which was used within a storyline on the show. Almost a year later, her second single, "We'll Find Our Day" (from Smike) got to #17. +Kate Robbins performed another of May's songs for Crossroads: "More than in Love," which was co-written by [a=Barry Leng] and got to number 2 in 1981. May himself performed "Summer of my Life", charting at #7 in October 1976, though his follow-up, "We'll Gather Lilacs", flopped. +He co-produced [a=Amii Stewart]'s "[r=255132]", which reached number one in the USA. +Needs VoteMayMay SimonRosie MayS MayS. MayS.MayThe Simon May OrchestraThe Simon May OrchestraRain (17)Squeek (3)Simon, Plug & Grimes + +188768Benjamin KuytenBenjamin KuytenNeeds Votehttp://www.benjaminbates.nl/B KuytenB, KuijtenB. KruytenB. KuijtenB. KuitenB. KuitjenB. KujitenB. KuytenB.JuytenB.KuijtenB.KuyenB.KuytenBenjaminBenjamin 'Bates' KuijtenBenjamin K.Benjamin KuijtenBenjamin KuitjenBenjamin KuytBenjamin KuytoKuijtenKuijten, BenjaminKuijterKuytenVenjamin KuytoBenjamin BatesBas BejaKnuftiBates45Southside SpinnersOctagonMagic From AboveCollusionMarco V & BenjaminOut Of GraceSolicitousGuerillaA Special PersonLocusEve@Mo'HawkSouth WestThe Fusion8th WonderCrowd PleaserProFoolsArti$tryThe OriginatorDiminishStacey ChandlerJefferseiffMC BassPeace & Jammin'QuoteVK-38Viscious CurvesNightstalkers (2)The BeatshopIntoxicaSlider (2)Unknown DeejayDisco MacabreTales From The ClubImage (3)AerosoulStars On 99AragonDa Rubba CruHumpty And DumptyCypher (6)Charades (2)MV&B + +188984A*S*Y*S[b]A*S*Y*S[/b] aka [a=Frank Ellrich]. + +[a=Kai Tracid] left the project on 01.01.07Needs Votehttps://www.facebook.com/asysofficialhttps://soundcloud.com/asyshttps://www.instagram.com/asysofficial/https://twitter.com/ASYSOFFICIALhttps://www.youtube.com/asysofficialhttps://myspace.com/asyshttps://asys.bandcamp.com/A * S * Y * SA S Y SA*S*Y*S*A.S.Y.SA.S.Y.S.ASYSAsysAysFrank EllrichKai Franz + +189718Brian WilsonBrian Douglas WilsonAmerican songwriter, producer, arranger and musician, co-founder and leader of [a=The Beach Boys]. Born 20 June 1942 in Inglewood, California, USA, died 11 June 2025 in Beverly Hills, California, U.S. From late 1964 to 1979 he was married to [url=https://www.discogs.com/artist/1009337-Marilyn-Rovell-Wilson]Marilyn Rovell[/url] (divorced) with whom he had daughters [url=https://www.discogs.com/artist/434651-Carnie-Wilson]Carnie[/url] and [url=https://www.discogs.com/artist/413862-Wendy-Wilson]Wendy[/url] who became members of both [a=The Wilsons] and [a=Wilson Phillips]. He later was married to [a=Melinda Wilson] until her death in 2024. Son of [a363017] and [a3239364]. Brother of [a391245] and [a260571] and cousin of [a372789].Needs Votehttps://www.brianwilson.com/https://en.wikipedia.org/wiki/Brian_Wilsonhttps://soundcloud.com/brianwilsonmusichttps://www.youtube.com/user/brianwilsonlivehttps://x.com/BrianWilsonLivehttps://www.facebook.com/officialbrianwilsonhttps://www.instagram.com/brianwilsonlive/https://www.imdb.com/name/nm0933092/https://www.allmusic.com/artist/brian-wilson-mn0000625736.WilsonA. Brian WilsonB WilsonB, WilsonB.B. WilsonB. WIlsonB. WildonB. WillsonB. WilsenB. WilsomB. WilsonB. Wilson-M. LoveB., WilsonB.D.B.D. WilsonB.D.WilsonB.Douglas WilsonB.WilsonBWBarry WilsonBiran WilsonBr. WilsonBrain WilsonBriah WilsonBriam WilsonBrianBrian - WilsonBrian - WolsonBrian Carl WilsonBrian D. WilsonBrian D.WilsonBrian Douglas WilsonBrian WillsonBrian-WilsonBryan WilsonCarlD. WilsonDouglas Brian WilsonElisonFred WilsonL. B. WilsonL. WilsonPhil SloanRiabSmiley WilsonT. WilsonW. WilsonWIlsonWillsonWilosn -WilsoWilsomWilsonWilson -Wilson B.Wilson BrianWilson Brian DouglasWilson, B.Wilson, B.D.Wilson, BrianWilson,BWilson-WilzonWisonb.D. WilsonwilsonВильсонウィルソンブライアン・ウィルスンブライアン・ウィルソンThe Beach BoysKenny & The CadetsSpirit Of The ForestCalifornia (3)Artists For HaitiThe Survivors (6)One World ProjectCarl And The PassionsThe Brian Wilson Band + +190370György LigetiGyörgy Sándor LigetiHungarian-Austrian composer, born 28th May 1923 in Tîrnăveni, Romania, died 12th June 2006 in Vienna, Austria. +Studied composition in Cluj, Romania and in Budapest, Hungary. From 1957 to 1959 he worked in Cologne at the Studio for Electronic Music of the WDR (West German Radio). He settled in Vienna in 1959 and became an Austrian citizen in 1967. +His style is characterized by a very dense polyphony (micropolyphony) and static forms (as in Lux aeterna, for choir, 1968, or in Requiem, 1963-65), and by a complex polyrhythmic technique (Etudes for piano, 1985).Needs Votehttp://www.gyoergy-ligeti.de/https://en.wikipedia.org/wiki/Gy%C3%B6rgy_Ligetihttps://www.imdb.com/name/nm0509893/G. LigetiGeorgy LigetiGiorgio LigetiGyorgi LigetiGyorgy LigetiGyörgi LigetiGyörgy Sándor LigetiLIgetiLigetiLigeti GyuriLigeti GyörgyLigetyProf. György LigetiД. ЛигетиДьердь ЛигетиЛигетиリゲティ + +190767Phil SpectorHarvey Phillip Spector né Harvey Philip SpectorBorn 26 December 1939 in the Bronx, New York City, NY, USA. +Died January 16, 2021 in French Camp, CA. + +Influential producer, whose "Wall Of Sound" technique is widely-regarded as a step change in rock and pop production's ambition by intensive use of overdubbing. + +Inducted into Rock And Roll Hall of Fame in 1989 (Non-Performer). +Inducted into The Songwriters Hall of Fame 1997. + +In 2009, Spector was convicted of the 2003 murder of Lana Clarkson. He trapped Lana in his foyer and shot her through her throat via the mouth, killing her instantly. He died in custody in 2021. Spector was known to be explosive at times. He especially liked waving guns around for intimidation during recording sessions. He reportedly shot a revolver in the air next to [a=John Lennon]’s ears during a 1973 recording session, later chasing Lennon through the halls at gunpoint another time. Later, held a revolver to [a=Leonard Cohen]’s throat in 1978 after a recording session for the album “Death of A Ladies’ Man” because Cohen wanted to go home instead of record more vocals. + +Formerly married to [a1331570] and [a293153].Needs Votehttps://www.philspector.com/https://en.wikipedia.org/wiki/Phil_Spectorhttps://www.history-of-rock.com/spector.htmhttps://www.songhall.org/profile/Phil_Spectorhttps://www.imdb.com/name/nm0817489/- SpectorApectorB. SpectorD. SpectorE. P. SpectorE. SpectorF. SpektorsH. P. SpectorH. SpectorH.-P. SpectorH.P. SpectorH.P.SpectorHarvey P. SpectorHarvey - SpectorHarvey P. SpectorHarvey Phillip SpectorHarvey SpectorHarvey SpektorHarvey, P. SpectorHarvey-SpertorM. SpectorO. SpectorPP SpectorP, SpectorP- SpectorP. SpectorP. SpecterP. SpectorP. Spector / HarveyP. Spector,P. Spector/HarveyP. SpencerP.SpectoP.SpectorPaul SpectorPh, SpectorPh. SpectorPh. SpencerPhilPhil SceptorPhil SpecterPhil Spector & ArtistsPhil Spector, ProducerPhil SpectorsPhil SpektorPhil SpencerPhilip - SpectorPhilip SpectorPhill SpectorPhillip SpecterPhillip SpectorPhilp SpectorR. SpectorS. PhilipS. SpectorSceptorSpecSpecterSpectooSpectorSpector Harvey PhillipSpector PhilSpector PhilipSpector, PhilSpector, PhilippSpector, PhillipSpector,PSpectreSpectroSpektorSpeltorSpeterSpeztorStollerT. SpectorП. СпекторСпекторФ. СпекторФил СпекторスペクターPhil Harvey (2)The Plastic Ono BandThe Teddy BearsPhil Spector And ArtistsSpector, Greenwich & BarrySpectors ThreeHarvey & Doc With The DwellersThe J & P Duo + +191327Sylvia MoySylvia Rose MoySylvia Moy (born September 15, 1938, Detroit, Michigan, USA – died April 15, 2017, Dearborn, Michigan, USA) was an American songwriter and record producer, formerly associated with [l1723]. She was the first woman at the Detroit-based music label to write and produce for Motown acts and is perhaps best known for her songs written with and for [a18956]. +She also created [l381912] and [l3414619] in the early 1970s in Detroit, MI. and owned [l723046] +Family link : [a=Hazel Moy], [a=Lazoe Moy], [a=Melvin Moy]Needs Votehttps://en.wikipedia.org/wiki/Sylvia_Moyhttps://reference.jrank.org/biography/Moy_Sylvia.htmlhttps://www.masterpiecesoundstudios.com/about-us/sylvia-moy/A. MoyC. MoyHayHoyM. S. RoseMayMoeMoiMoyMoy SylviaMoy Sylvia RoseMoysNoyRose MoyRose S. MoyS MayS MoyS R MoyS Rose MoyS, MoyS. MoyS. MaryS. MayS. MaysS. MoiS. MoyS. Moy WonderS. R. MoyS. Rose MoyS. RoyS. SmoyS.MayS.MoyS.MoyeS.R. MoyS.R.MoySilverSilvia MoySlyvia MoySyliva MoySylva MoySylvia MaySylvia MaysSylvia MoiSylvia MossSylvia Moy RoseSylvia Rode MoySylvia RoseSylvia Rose MoySyvlia MoyAmunda (4) + +191902Cally & JuiceGary Waters & Ian HollymanBack to back hard dance DJ duo. Also known as producers (Ourstyle Recordings) and promoters (Bionic, Breathe, Nightbreed). They’re well known for their unique fusion of hardstyle and hard trance, combining elements from many other styles such as rock music, drum & bass, old skool etc, and were also previously known on the hardcore scene for their ‘Powertrance’ sound they played during the mid ‘90’s.Needs Votehttp://www.dontstayin.com/parties/cally-and-juicehttp://www.myspace.com/callyandjuicehttp://www.facebook.com/pages/Cally-Juice/6596739651http://www.bebo.com/callyandjuicehttp://www.youtube.com/callyandjuiceCally + JuiceJuiceJuice & CallyJac (2)Gary WatersIan Hollyman + +192322Isaac AlbénizIsaac Manuel Francisco Albéniz i PascualSpanish pianist and composer. +Born: May 29, 1860, Camprodon, Catalonia, Spain. +Died: May 18, 1909, Cambo-les-Bains, France. +Albéniz is considered the initiator of modern Spanish music. +He was among the very first to consciously turn to popular heritage, to listen to its rhythms and inflections and to introduce them into his production. +Trained in the Madrid Conservatory, he began his career as a concert piano player at a very young age which led him to various European and American countries. In 1874 he resumed his studies of composition, in 1878 he became a student of [a=Ferenc Liszt]. + In 1893 he settled in Paris coming into contact with the local musical environment, here he wrote his best works. + +Please do not confuse with [a=Mateo Albéniz].Needs Votehttps://www.escuelasuperiordemusicareinasofia.es/fundacion-albenizhttps://www.famouscomposers.net/isaac-albenizhttps://en.wikipedia.org/wiki/Isaac_Alb%C3%A9nizhttps://www.britannica.com/biography/Isaac-Albenizhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102728/Albniz_Isaachttps://www.encyclopedia.com/history/encyclopedias-almanacs-transcripts-and-maps/issac-albenizA. AlbenizAlbenizAlbeniz IsaacAlbeniz PascualAlbeniz, IsaacAlbeniz.AlbinezAlbinizAlbiniz, Isaac ManuelAlbrenzAlbènizAlbénizAlbéniz:D'AlebnizE. AlbenizGranadosI AlbenizI AlbénizI. AlbenizI. AibenizI. AlbenisI. AlbenissI. AlbenizI. AlbinizI. AlbénizI. M. F. AlbenízI.AlbanizI.AlbenisI.AlbenitzI.AlbenizI.AlbénizIs. AlbenizIsaacIsaac Albéniz Y PascualIsaac AlbenitzIsaac AlbenizIsaac Albeniz Y PascualIsaac AlbinezIsaac AlbènizIsaac Albéniz (1860–1909)Isaac Albéniz Y PascualIsaac Manuel AlbénizIsaac Manuel Francisco AlbénizIsaac Y Pascual AlbenizIsaak AlbenizIsaak AlbénizIsac AlbenizIsac AlbénizIssac AlbenizIssac AlbénizIzaac AlbénizIzaak AlbenizJ. AlbenisJ. AlbenizJ. AlbénizL. AlbenizLeo BrouwerM. AlbénizM. J. IsaacMateo AlbenizY. AlbenizalbenizІ. АльбенісАльбенисАльбеницИ. АлбеницИ. АльбенизИ. АльбенисИ. АльбеницИ. АльенисИсаак АльбенисИсак АлбенизИсак АлбеницИсак Альбенизאיזאק אלבניזアルベニスアルベニッス + +192325Frédéric ChopinFryderyk Franciszek ChopinBorn: 1810-03-01 (Duchy of Warsaw) at present Żelazowa Wola, Poland. +Died: 1849-10-17 (Paris, France). + +Polish composer and virtuoso pianist of the Romantic era who wrote primarily for solo piano. He has maintained worldwide renown as a leading musician of his era, one whose "poetic genius was based on a professional technique that was without equal in his generation." + +Chopin was born in the Duchy of Warsaw in a small town called Żelazowa Wola (eng. Steel Will), within months of his birth the Chopin family moved to Warsaw the capital of the Duchy, where Fryderyk grew up and learned to play; in 1815 the Duchy became the Kingdom of Poland. A child prodigy, he completed his musical education and composed his earlier works in Warsaw before leaving Poland at the age of 20, less than a month before the outbreak of the November 1830 Uprising. At the age of 21, he settled in Paris. Thereafter—in the last 18 years of his life—he gave only 30 public performances, preferring the more intimate atmosphere of the salon. He supported himself by selling his compositions and by giving piano lessons, for which he was in high demand. Chopin formed a friendship with Franz Liszt and was admired by many of his other musical contemporaries (including Robert Schumann). In 1835, when Chopin obtained French citizenship he became . After a failed engagement to Maria Wodzińska from 1836 to 1837, he maintained an often troubled relationship with the French writer Amantine Dupin (known by her pen name, George Sand). A brief and unhappy visit to Majorca with Sand in 1838–39 would prove one of his most productive periods of composition. In his final years, he was supported financially by his admirer Jane Stirling, who also arranged for him to visit Scotland in 1848. For most of his life, Chopin was in poor health. He died in Paris in 1849 at the age of 39, probably of pericarditis aggravated by tuberculosis. +All of Chopin's compositions include the piano. Most are for solo piano, though he also wrote two piano concertos, a few chamber pieces, and some 19 songs set to Polish lyrics. His piano writing was technically demanding and expanded the limits of the instrument: his own performances were noted for their nuance and sensitivity. Chopin invented the concept of the instrumental ballade. His major piano works also include mazurkas, waltzes, nocturnes, polonaises, études, impromptus, scherzos, preludes and sonatas, some published only posthumously. Among the influences on his style of composition were Polish folk music, the classical tradition of J.S. Bach, Mozart, and Schubert, and the atmosphere of the Paris salons of which he was a frequent guest. His innovations in style, harmony, and musical form, and his association of music with nationalism, were influential throughout and after the late Romantic period. + +Chopin's music, his status as one of music's earliest superstars, his (indirect) association with political insurrection, his high-profile love-life, and his early death have made him a leading symbol of the Romantic era. His works remain popular, and he has been the subject of numerous films and biographies of varying historical fidelity. Needs Votehttps://www.chopin.pl/https://nifc.pl/https://www.facebook.com/Narodowy-Instytut-Fryderyka-Chopina-1570915943228919/https://x.com/chopininstitutehttps://www.youtube.com/channel/UCSTXol20Q01Uj-U5Yp3IqFghttps://www.instagram.com/chopininstitute/https://en.wikipedia.org/wiki/Fr%C3%A9d%C3%A9ric_Chopinhttps://www.britannica.com/biography/Frederic-Chopinhttps://www.imdb.com/name/nm0006004/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102587/Chopin_Frdrichttps://www.allmusic.com/artist/frédéric-chopin-mn00000668241 to 8ChapinChopenChopinChopin (Fryderyk Franciszek)Chopin = ショパンChopin F.Chopin FredericChopin Frederic F.Chopin Fredric FrancoisChopin FrédéricChopin'sChopin, F.Chopin, FryderykChopin, FrédéricChopinaChopjnChopìnChopínChpoinE. ŠopenasF ChopinF F ChopinF, ChopinF. ChopinF. ChopinF. Chopin,F. ChoppinF. ChopínF. F. ChopinF. SchopinF. ShopenF. ShopinF. SopenF. ŠopenF. ŠopenasF. ショパンF.ChopanF.ChopinF.F. ChopinF.F.ChopinF.ショパンFChopinFR. ChopinFederic ChopinFederico ChopinFr. ChopinFr. CopinFr. chopinFr. ŠopenasFr.ChopinFrancois Frederic ChopinFranz ChopinFrançois Frédéric ChopinFrançois-Frédéric ChopinFreddy ChopinFrederic ChopinFrederic Chopin Frederic F. ChopinFrederic Francois ChopinFrederic François ChopinFrederich ChopinFrederick ChopinFrederick ChópinFrederico ChopinFrederik ChopinFrederik ŠopenFrederique ChopinFrederyk ChopinFrederyk Franciszek ChopinFredetic ChopinFredic ChopinFredric ChopinFredryk ChopinFredédéric ChopinFredéric ChopinFreyderyk ChopinFrideryk ChopinFriederic ChopinFriederyk ChopinFriedric ChopinFriedrich ChopinFryDeryk ChopinFryderic ChopinFryderick ChopinFryderick CopinFryderik ChopinFryderika ChopinaFryderk ChopinFryderyc ChopinFryderych ChopinFryderyck ChopinFryderyk ChopinFryderyk CHopinFryderyk ChopinFryderyk F. ChopinFryderyk F.ChopinFryderyk Franciszek ChopinFryderyk chopinFryderyka ChopinaFrydryk ChopinFrydéric ChopinFrydérik ChopinFrydéryc ChopinFrydéryk ChopinFryederyk ChopinFrèderic ChopinFrèdèric ChopinFréd. ChopinFréderic ChopinFrédèric ChopinFrédéeric ChopinFrédéric Chopin (1810-1849)Frédéric F. ChopinFrédéric Francais ChopinFrédéric Franciszek ChopinFrédéric Francois ChopinFrédéric François ChopinFrédéric Frànçois ChopinFrédéric-François ChopinFrédérich ChopinFrédérick ChopinFrédérik ChopinFrédéryk ChopinFyderyk ChopinNipohcShopin_Fryderyk ChopinchopinvŠopenŠopenasΣοπένФ. ШопенФ. Шопен ChopinФ.ШопенФредерик ШопенФредерих ШопенФредерік ШопенФридерик ШопенШопенШопен Ф.Шопен ФредерикШопенaШопенаШопенъפרדריק שופןשופןشوپنショパンフレデリック・ショパンフレデリック・フランソワ・ショパンフレデリック・ショパン弗雷德里克·肖邦肖邦萧邦蕭邦쇼팽 + +192327Giuseppe VerdiGiuseppe Fortunino Francesco VerdiItalian opera composer in the 19th-century. +Born on 9 or 10 October 1813, in Le Roncole, a village near Busseto, Italy. +Died on 27 January 1901 in Milan, Italy. +Verdi's operas are among the most sung on stages around the world.Needs Votehttps://web.archive.org/web/20200503064821/http://www.giuseppeverdi.it/https://en.wikipedia.org/wiki/Giuseppe_Verdihttps://www.treccani.it/enciclopedia/giuseppe-verdi/https://www.britannica.com/biography/Giuseppe-Verdihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102328/Verdi_Giuseppehttps://www.allmusic.com/artist/giuseppe-verdi-mn0000252723C. VerdiD. VerdiDž. VerdiDž. VerdisDž.VerdiDžuzepe VerdiG VerdiG, VerdiG,. VerdiG. VerdiG. F. F. VerdiG. VerdiG. VerdieG. VerdisG. verdiG. ベルディG. ヴェルディG.VerdiGius. VerdiGiusepe VerdiGiuseppe Fortunino Francesco VerdiGiuseppe Fortunio Francesco VerdiGiuseppe VerdeGiuseppe Verdi'sGiuseppei VerdiGiuseppi VerdiGiuseppie VerdiGiussepe VerdiGiusseppe VerdiGuiseppe VerdeGuiseppe VerdiGuiseppi VerdiJ. VerdiJiuseppe VerdiJoseph Gregory VerdiJoseph VerdiL. VerdiVERDIVErdiVeldeVerdVerdiVerdi (Giuseppe Fortunio Francesco)Verdi G.Verdi GiuseppeVerdi GrandeVerdi'sVerdi, GiuseppeVerdieVerdiegoVerditVerdyVerfiVersiĐ. VerdiĐuzepe VerdiΒέρντιΤζιουζέπε ΒέρντιΤζιουζέππε ΒέρντιΤζουζέπε ΒέρντιЂузепе ВердиЃ. ВердиЏ. ВердиЏузепе ВердиВердиВердіД .ВердиД. ВердiД. ВердиД.ВердиДж ВердиДж. ВЕРДИДж. ВердиДж. ВердіДж.ВердиДжузепе ВердиДжузеппе ВердиЖ. Вердиורדיვერდიジュゼッペ・ヴェルディベルディヴェルディ威尔第威爾第朱塞佩·威尔第베르디 + +192437Dan WalshDaniel WalshUS singer - songwriter. Has written plenty of songs as a duo with [a=Michael Price]. +Do NOT confuse with his brother [a=Johnny Walsh] who wrote "Little Girl Lost-And-Found". +Also [a=Marty Walsh]'s brother.Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=360562&subid=0D WalshD. WalahD. WalshD. WashD.WalshDan WashDan WelshDan WolshDaniel WalshDonDon WalshP. WalshT. WalshW. WalshWalchWalkerWallsalWalshWlashダン・ウォルシュダン・ウオルシュThe MotleysPrice & Walsh + +193583Marty PaichMartin Louis PaichAmerican jazz pianist, composer, arranger and bandleader +Born 23 January 1925, Oakland, CA, USA, died: 12 August 1995, Santa Ynez, CA, USA (cause: cancer)Needs Votehttps://web.archive.org/web/20221127181856/http://www.martypaich.com/https://en.wikipedia.org/wiki/Marty_Paichhttps://www.bluenote.com/artist/marty-paich/https://rateyourmusic.com/artist/marty_paichhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/336093/Paich_MartyD. PaichL. PaichM PaichM. PaichM. PaitchM.PaichMartin Louis PaichMartin PaichMartin PaitchMartv PaichMartyMarty PaicheMarty PaigeMarty PaitchMarty PalchMarty-PaichMary PaichPaichPaich MartyPaighマーティ・ペイチShelly Manne & His MenMarty Paich OrchestraArt Pepper QuartetShorty Rogers And His OrchestraThe Marty Paich Dek-TetteDave Pell OctetJohnny Richards And His OrchestraMarty Paich Big BandThe Marty Paich QuartetThe John Graas NonetMarty Paich And His Jazz Piano QuartetDon Fagerquist OctetHerbie Harper SextetMarty Paich TrioBob Hardaway's GroupThe Marty Paich OctetMel Lewis SextetBob Enevoldsen QuintetThe Jazz City WorkshopMarty Paich QuintetThe Marty Paich SeptetFour Trombone BandThe West Coast All Star Octet + +195397Steve DorffStephen Hartley DorffAmerican songwriter, composer, producer and musician, father of actor and musician [a=Stephen Dorff] and singer [a=Andrew Dorff], born April 21, 1949 in New York. Steve Dorff has written over 1000 songs, so for [a=Melissa Manchester], [a=Dusty Springfield], [a=Kenny Rogers], [a=Whitney Houston], [a=Jermaine Jackson], [a=Céline Dion], [a=Barbra Streisand], [a=Mel Tillis], [a=Kenny Loggins] and many more. He also has worked as producer, arranger and performer for similar artists. +He charted 41 times between 1974 and 2016, including seven #1's. "I Just Fall in Love Again" by Anne Murray hit #1 in 1979 (co-written by Stephen Dorff, Harry Lloyd, and Gloria Sklerov). He also hit #1 on the adult contemporary charts with "Through the Years" by Kenny Rogers in 1981 (co-written by Marty Panzer). He had a #1 country hit with "Every Which Way but Loose" by Eddie Rabbitt, which was the theme song from Clint Eastwood's "Every Which Way But Loose" (co-written by Milton Brown & Snuff Garrett). Other country #1's included "Coca Cola Cowboy" by Mel Tillis in 1979 (co-written by Sandy Pinkard, Sam Atchley & Bud Dain); "Don't Underestimate My Love for You" by Lee Greenwood (1985) (co-written by Dave Loggins & Steve Diamond); "I Cross My Heart" by George Strait in 1992 (co-written by Eric Kaz); and "Heartland" by George Strait in 1992 (co-written by John Bettis).Needs Votehttp://www.stevedorff.com/http://www.durango-songwriters-expo.com/hit-songwriter-bios-steve-dorff.htmlhttps://www.facebook.com/Steve-Dorff-50717092411/http://www.myspace.com/stevedorffmusichttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=93610&subid=0http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=609137&subid=0http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=1085540&subid=0https://www.imdb.com/name/nm0006045/?ref_=ttfc_fc_cr7DorfDorffDoriffDorrfDorssH. DorffH.S. DorffS DorffS, DorffS. DarffS. DonffS. DorfS. DorffS. DorftS. DroffS. H. DorfS. H. DorffS. J. DorffS.DorffS.H. DorfS.H. DorffStephan Artley DorffStephan DorffStephen DorfStephen DorffStephen H. DorfStephen H. DorffStephen H. DorssStephen Harley DorffStephen Hartley DorffSteve DorfSteve Dorff & FriendsSteve DorftSteve DorssSteve H. DorffSteven DorffSteven Hartley DorffStephen Hartley (2)Steve Dorff & Friends + +195791Brian HollandBrian HollandMusic producer and songwriter born 15 February 1941 in Detroit, Michigan, USA. + +Brian Holland emerged from a production background in the Motown scene, joining his elder brother [a=Edward Holland, Jr.] who had a singing partnership with [a=Lamont Dozier]. As a writing/production team the trio of [a=Holland-Dozier-Holland] became the lyrical force behind the Motown sound. When Motown chief [a=Berry Gordy] hitched the trio up with the struggling Supremes in 1963 the rest became history, with over a dozen US Top Ten hit singles. Brian Holland's production skills, Eddie's lyrics and Lamont's melodies helped carve careers for Martha Reeves & The Vandellas, [url=http://www.discogs.com/artist/Miracles,+The]The Miracles[/url], [a=Marvin Gaye], and notably the [a=Four Tops]. + +Brian Holland left Motown in 1968 with his two partners after a royalties dispute. They formed their own company [l=Invictus] / [url=http://www.discogs.com/label/Hot+Wax+(4)]Hot Wax[/url]. +Needs Votehttp://www.songwritershalloffame.org/exhibits/bio/C291http://en.wikipedia.org/wiki/Brian_Hollandhttps://www.imdb.com/name/nm0390622/http://www.whosampled.com/Brian-Holland/B HollandB&B HollandB, HollandB. HollandB. HolandB. HollanB. HollandB. HollardB.. HollandB.HollandBVHBrain HollandBrianBrian HollanBrian Van HollandBryan HollandD. HollandE. & B. HollandH. BrianHolandHollanHollandHolland BrianHolland, BI.B. HollandKollandMollandOllandБ. ХоландБ. ХолландBrianbertHolland & DozierHolland-Dozier-HollandFidelitones + +195969Gary BaroneTrumpet player, born December 12, 1941 in Detroit, Michigan, USA - died December 24, 2019 in Freiburg, Germany. +Brother of [a=Mike Barone].Needs VoteG. BaroneGary Baronneゲリー・バローンGerald Wilson OrchestraFunzoneThe Barone BrothersTeddy Saunders SextetMike Wofford SeptetThe Mike Barone Big BandGary Barone Quartet + +196875Mitchel FormanAmerican jazz and fusion keyboard player, born January 24, 1956 in Brooklyn, NY, USA.Needs Votehttps://www.mitchelforman.com/https://www.allmusic.com/artist/mitchel-forman-mn0000921695https://myspace.com/mitchelformanFormanM. FormanMichael FormanMitch ForemanMitch FormanMitche FormanMitchel ForemanMitchell ForemanMitchell FormanMitchell Formannミッチ・フォアマンMahavishnuMetro (12)Richard S. & The Vibe TribeWayne Shorter QuartetPetite BlondeGerry Mulligan And His OrchestraMitchel Forman TrioMitchel Forman QuintetChatterbox (13)Greg Fishman QuintetThe Crane & Fabian Project + +196880Mino CineluDominique Pierre Georges Henri CinéluFrench percussionist, drummer, programmer, singer, songwriter, and producer, born 10 March 1957 in Saint-Cloud, France +Most often associated primarily for his work as a jazz percussionist.Needs Votehttps://minocinelumusic.com/https://www.facebook.com/mino.cinelulofficielhttps://www.facebook.com/Mino-Cinelu-133050296730247/https://www.facebook.com/Mino-Cinelu-Fan-Page-232041133546064/https://twitter.com/MinoCineluhttps://www.instagram.com/mcinelu/https://www.linkedin.com/in/mino-cinelu-a14b7a14b/https://www.youtube.com/channel/UCjoGSgbnv7ZZMVaE5AxMfHAhttps://en.wikipedia.org/wiki/Mino_Cin%C3%A9luhttps://musicianbio.org/mino-cinelu/https://www.astro.com/astro-databank/Cinelu,_Minohttps://www.imdb.com/name/nm0162519/CineluM. CineluM.CineluM.CinéluMinoMino CenuluMino CilenoMino CineliuMino CinelloMino CinelluMino CineloMino CinelouMino CineluoMino CinelùMino CinèluMino CinéluMinu CineluMinó Ciné-LuNino Cineluミノ・シネルWeather ReportGongGil Evans And His OrchestraBuckshot LeFonqueChroma (2)Rob Reddy's Gift HorseESP (13)Chute LibreAl Di Meola ProjectThe Monday Night OrchestraMiles Davis SeptetMoravagine (3)Miles Davis GroupOm (21)Loose Shoes (2) + +196909J.J. De La FuenteJesús Javier Fuente FernándezSpanish producer from Madrid. AKA Martinez. Now in other business.Needs VoteDe La FuenteF.F. De La FuenpaJ J De La FuenteJ. De La FuenteJ. FuenteJ. J. De FuenteJ. J. De La FuenteJ. J. de La FuenteJ. MartinezJ.J De La FuenteJ.J De La Fuente FernandezJ.J. De La Fuente FernandezJ.J. De La Fuente FernándezJ.J. de la FuenteJ.J.De La FuenteJJ De La FuenteJJ De La Fuente MartinezJJ De Le FuenteJJ de la FuenteJJ. De La FuenteJesús De La FuenteJ. MartinezDJ Dela (2)NatureDimas & MartinezCommitteeThe King Of HouseBosstunePrimevalT.U.S.O.M.VibemanZentralThe First LevelGlobal BasslineComisionBCACentral RockControl (5)IndependenceMagic MelodyHeadroom (4)Trance LineDJ C.C.Intelect Bass + +196910Dimas CarbajoDimas Carbajo BlancoSpanish DJ and producer from Madrid since late 80s. +Artist name is Dimas or DJ Dimas.Needs VoteD CarbajoD. CarbajoD. J. Dimas CarbajoD.CarbajoD.J DimasD.J. DimasD.J. Dimas (D. Carbajo Blanco)D.J. DímasD.J.DimasDJ DimasDimasDimas - CarbajoDimas A.K.A. D-FormationDimas C. BlancoDimas Carbajo "Dimix"Dimas Carbajo BlancoDimas Carbajo «Dimix»Dimas DJDimas DjDimaz CarpagoDinar CarbajoDismas CarbajoDj DimasD-FormationNatureDimas & MartinezCommitteeThe King Of HouseBosstunePrimevalT.U.S.O.M.VibemanZentralThe First LevelGlobal BasslineBCACentral RockThe BeatfreakersControl (5)IndependenceTrance LineDJ C.C.Zona 3Intelect BassClub De Soul + +197076RiggsySteve RickettsUK Hard Dance Producer & DJ. Steve runs [url=http://www.discogs.com/label/Tension+Records+(UK)]Tension[/url] as well as [l=XTension Records].Needs VoteBrother RiggsyS. RiggsBass DominatorsAudio ChavsRepeat OffendersR.G.ZI.C.One ProjectSteve RickettsGreer & ShulginDynamix (13) + +198502Geoffrey DownesClassical double bassist. + +[b]For the rock/pop keyboardist, songwriter and producer, member of bands [a257619], [a41326] and [a50263], please use [a275311] with the appropriate ANV[/b]. +Needs VoteGeoffrey DownsLondon Symphony OrchestraLondon Philharmonic Orchestra + +200218Bliss Inc.Australian Hard House project from late 1990's.Needs VoteBliss IncSteve Peach + +200545Tom-EThomas RodriguesAustralian based DJ/Producer.Needs Votehttp://www.myspace.com/tomedjDJ Tom-ETom ETom E.Thomas RodriguesThomas Knight + +200764Dave BargeronDavid Wayne BargeronAmerican jazz-rock trombonist, and tuba player. Born September 6, 1942, Athol, Massachusetts - Died January 18, 2025, Wappingers Falls, New York, USA.Needs Votehttp://www.davebargeron.com/https://www.facebook.com/DaveBargeronMusic/https://www.facebook.com/david.bargeron.7http://www.jorgenand.se/bst/bst_stor.html#bargeronhttps://en.wikipedia.org/wiki/Dave_Bargeronhttps://musicianbio.org/dave-bargeron/https://straubcatalanohalvey.com/tribute/details/2142/David-Bargeron/obituary.htmlhttps://redeniusfuneralhomes.com/obituary/dave-bargeron/https://www.ibdb.com/broadway-cast-staff/dave-bargeron-391273https://www.imdb.com/name/nm8009522/BargeronD. BargeronD.BargeronDave BageronDave BargeroDave BargeroneDave BargerowDave BergeronDavid BargeroDavid BargeronDavid BarjeronDavid BergeronDavid BourgeronDavid W. BageronDavid W. BargeronDavid W. BergeronGary BargeronД. БаргеронGil Evans And His OrchestraBlood, Sweat And TearsThe George Gruntz Concert Jazz BandJaco Pastorius Big BandThe Ernie Wilkins OrchestraThe Living Time OrchestraWord Of Mouth Big BandThe Mike Gibbs OrchestraPond Life (2)Bob Mintzer Big BandThe Pond Life OrchestraGeorge Russell OrchestraHoward Johnson & GravityClark Terry Big BandThe LucifersThe "New Lucifers"The Carla Bley Big BandSuper TromboneMichel Camilo Big BandDave Bargeron QuartetThe Super SeptetRich Shemaria Jazz Orchestra + +200766Lew SoloffLewis Michael Soloff (Лев Соловейчик)Lew Soloff (born February 20, 1944, Brooklyn, New York, USA – died March 8, 2015, New York City, New York, USA) was an American jazz trumpeter, flugelhorn player, composer, educator, and actor. He worked with many artists including [a168907] from 1968 until 1973.Needs Votehttp://www.lewsoloff.com/https://www.facebook.com/profile.php?id=100063832865081https://www.facebook.com/lew.soloffhttps://www.linkedin.com/in/lew-soloff-b71ab65/https://www.youtube.com/user/LewSoloffTrumpethttps://en.wikipedia.org/wiki/Lew_Soloffhttps://www.imdb.com/name/nm0813246/http://www.jorgenand.se/bst/bst_stor.html#soloffhttps://www.trumpetguild.com/content/itg-news/645-in-memoriam-lew-soloffhttps://jazztimes.com/features/tributes-and-obituaries/trumpeter-lew-soloff-dies-at-71/https://www.artsjournal.com/rifftides/2015/03/lew-soloff-1944-2015.htmlhttps://www.nytimes.com/2015/03/10/arts/music/lew-soloff-trumpeter-for-blood-sweat-and-tears-dies-at-71.htmlhttps://www.telegraph.co.uk/culture/music/worldfolkandjazz/11460680/Lew-Soloff-jazz-trumpeter-dies-aged-71.htmlhttps://www.findagrave.com/memorial/143528064/lew-soloffhttps://musicianbio.org/lew-soloff/https://www.famousbirthdays.com/people/lew-soloff.htmlL. SoloffLOU SoloffLeu SoloffLewLew "off the tip" SoloffLew SolofLewis M. SoloffLewis Michael SoloffLewis Michale SoloffLewis SoloffLou SollofLou SolofLou SoloffLouis M. SoloffLouis SoloffLow SoloffLu SoloffMichale SoloffSoloffSoloff Lewis M.ルー・ソロフGil Evans And His OrchestraWhite ElephantMembers Only (2)Blood, Sweat And TearsThe Philip Glass EnsembleThe George Gruntz Concert Jazz BandThe Carnegie Hall Jazz BandThe George Russell SextetThe Duke Ellington OrchestraFlying Monkey OrchestraThe Mike Gibbs OrchestraPond Life (2)Mingus Big BandBob Mintzer Big BandThe Monday Night OrchestraThe Pond Life OrchestraFrench Toast (3)Manhattan Jazz QuintetDavid Matthews OrchestraJazz At Lincoln CenterMike Mainieri & FriendsRay Anderson Pocket Brass BandBill Warfield Big BandRay Anderson Alligatory BandLew Soloff & CompanyDMP Big BandManhattan Jazz OrchestraThe Carla Bley Big BandThad Jones & Mel LewisRobin Eubanks Mass Line Big BandReiner Witzel GroupLos Tres (4)David Matthews & The Super Latin Jazz OrchestraManhattan BrassThe Voodoo HornsTom Pierson OrchestraJVL Big Band + +200767David NadienAmerican violinist, born 12 March 1926 in New York, USA and died 28 May 2014 in New York, USA.Needs Votehttps://en.wikipedia.org/wiki/David_Nadienhttps://www.imdb.com/name/nm0618899/https://www.facebook.com/people/David-Nadien/100063884973545/D. NadienDave NadienDavid N.David NadenDavid NadianDavid Nadien And His ViolinDavid NaidenDavid W. NadienDavid William NadienDavid William NadieuEl Grupo De Cuerda De David NadienNadienNadien And His ViolinNadien David WilliamNew York PhilharmonicThe Hampton String QuartetThe Baroque Chamber Orchestra + +200772Marvin StammAmerican jazz trumpet/flugelhorn player, born 23 May 1939 in Memphis, Tennessee, USANeeds Votehttps://web.archive.org/web/20210724144847/https://marvinstamm.com/https://marvinstamm.bandcamp.com/M. StammManny StammMarivin StammMarv SrammMarv StammMarvin StamMarvin StammeMarvin SthamMarvin StrammStammEnoch Light And The Light BrigadeThe Charlie Calello OrchestraThe George Gruntz Concert Jazz BandWoody Herman And His OrchestraStan Kenton And His OrchestraOliver Nelson And His OrchestraThe Inventions TrioWoody Herman And The Swingin' HerdWalter Wanderley SetBob Mintzer Big BandLouie Bellson Big BandThe Woody Herman Big BandThe Jazz Interactions OrchestraThe American Jazz OrchestraDuke Pearson's Big BandThe Hotel OrchestraStan Kenton's Melophoneum BandThe Jerry Ascione Big BandThe Marvin Stamm QuartetThe Stamm / Soph ProjectThe Gotham Jazz OrchestraThe Marvin Stamm / Ed Soph QuartetWestchester Jazz OrchestraUniversity Of North Texas All-Star Alumni BandThe Marvin Stamm / Bob Stroup QuintetThad Jones & Mel LewisTony Kadleck Big BandRich Shemaria Jazz OrchestraMarvin Stamm/Mike Holober Quartet1:00 O'Clock Lab BandTerry Vosbein Nonet + +200778Jerry DodgionAmerican jazz alto and soprano saxophonist and flutist, born August 29, 1932 in Richmond, California, died February 17, 2023 +Married to [a=Dottie Dodgion] in 1952; they parted in the mid-1970s. + + +Needs Votehttps://en.wikipedia.org/wiki/Jerry_Dodgionhttps://www.imdb.com/name/nm0230235/DodgionGerry DodgianGerry DodgionGerry PodgionJ. DodgionJerry D. DodgionJerry DedgionJerry DodgenJerry DodgeonJerry DodgianJerry DodgienJerry DodginJerry DodglonJerry DodgronJerry DodgsonJerry DodigonJerry DodionJerry DogionJerry DopdgionJery DodgionJoe DodgionCount Basie OrchestraThe George Gruntz Concert Jazz BandThe Oscar Peterson TrioThe Carnegie Hall Jazz BandTadd Dameron And His OrchestraBenny Goodman And His OrchestraOliver Nelson And His OrchestraLalo Schifrin & OrchestraThad Jones / Mel Lewis OrchestraPond Life (2)The Pond Life OrchestraFrench Toast (3)Collins-Shepley GalaxyThe Jazz Interactions OrchestraJimmy Smith And The Big BandRed Norvo QuintetCommunication (4)The Philip Morris SuperbandDuke Pearson's Big BandThe Quincy Jones Big BandThe Mariano-Dodgion SextetVince Guaraldi QuartetJerry Dodgion QuartetMichel Legrand Big BandJack Cortner Big BandBenny Goodman And His Jazz GroupThad Jones & Mel LewisThe Northwest Prevailing WindsBuck Clayton And His Swing BandFrank Perowsky Jazz OrchestraKlaus Weiss SextettRenee Rosnes SextetBenny Goodman TentetRon Carter's Great Big Band + +200781John FroskTrumpet player.Needs Votehttps://www.feenotes.com/database/artists/frosk-john-23rd-august-1931-present/https://www.ibdb.com/broadway-cast-staff/john-frosk-113022Jack FroskJohn FraskJohn FroakJohnnie FroskJohnny FroskDizzy Gillespie And His OrchestraBenny Goodman And His OrchestraOliver Nelson And His OrchestraLalo Schifrin & OrchestraRichard Maltby And His OrchestraRicky Ticky BrassNew Pulse Jazz BandJimmy Dorsey, His Orchestra & ChorusPeanuts Hucko And His OrchestraSal Salvador And His OrchestraThe Three Deuces Musicians + +200784Wayne AndreBorn: November 17, 1931 in Manchester, Connecticut, USA. +Died: August 26, 2003 in New York, New York, USA. + +American trombonist. Began studying trombone at the age of 15. Had his first gig playing with [a=Charlie Spivak]'s band in his early twenties. Played with various bands and orchestras in the 50's after serving a stint in the military. + +After 1958, did mostly freelance work, backing such acts as [a=Art Farmer], [a=Toots Thielemans], [a=Gerry Mulligan], [a=Benny Goodman], [a=Astrud Gilberto], [a=Wes Montgomery], [a=Manny Albam], [a=Kenny Burrell], [a=Patti Austin], [a=The Manhattan Transfer], [a=Steely Dan], [a=Alice Cooper], and dozens more. + +He remained active until shortly before his death from cancer at the age of 71. +Needs Votehttps://en.wikipedia.org/wiki/Wayne_Andrehttp://www.trombone-usa.com/andre_wayne.htmhttps://musicianbio.org/wayne-andre/http://www.jazzhouse.org/gone/lastpost2.php3?edit=1066410597AndreAndre WayneAndre Wayne J.W. AndreWayne A.Wayne AndreaWayne AndreeWayne AndréWayne J. Andreウエイン・アンドレWoody Herman And His OrchestraKai Winding And His SeptetJaco Pastorius Big BandLalo Schifrin & OrchestraWoody Herman SextetGerry Mulligan & The Concert Jazz BandDoc Severinsen And His OrchestraThe Jazz Interactions OrchestraWoody Herman BandWoody Herman And The Fourth HerdGeorge Williams And His OrchestraThe Quincy Jones Big BandBob Brookmeyer And His OrchestraUrbie Green And Twenty Of The "World's Greatest"Art Farmer TentetWoody Herman And The Swingin' Herd (2) + +200815Charles MingusCharles Mingus Jr.American jazz double bass player and pianist, composer, bandleader, and civil rights activist. +Born April 22, 1922 in Nogales, Arizona, USA. +Died January 5, 1979 in Cuernavaca, Mexico (aged 56). +Mingus was a pioneer in double bass technique, he also pioneered in overdubbing and cutting-up/reassembling tapes of different takes in the studio to achieve the best version to put on record. He also authored an autobiographical novel called "Beneath The Underdog". He died from Amyotrophic lateral sclerosis (ALS or Lou Gehrig's disease). +Needs Votehttps://www.charlesmingus.com/https://www.allmusic.com/artist/charles-mingus-mn0000009680https://www.facebook.com/charlesmingushttps://www.imdb.com/name/nm0591323/https://www.jazzdisco.org/charles-mingus/https://www.latimes.com/archives/la-xpm-1993-08-08-ca-21794-story.htmlhttps://www.npr.org/artists/15373151/charles-mingushttpd://twitter.com/Mingushttps://www.whosampled.com/Charles-Mingus/https://en.wikipedia.org/wiki/Charles_Mingushttps://adp.library.ucsb.edu/index.php/mastertalent/detail/331840/Mingus_CharlesA. MingusA. SipiaginBaron MingusC .MingusC MingusC. MIngusC. MingusC. Mingus & His RhythmC.M.C.MIngusC.MingusCahrles MingusCh. MingusChales MingusChar. MingusCharlesCharles "Barron" MingusCharles 'Baron' MingusCharles Mingus Jr.Charles Mingus, Jr.Charlie MingueCharlie MingusCharly MingusChas. MingusChaz. MingusChazz MingusMangesMingusMingus/CharlesMinugsМингусЧ. МингусЧарлз МингусЧарли МингусЧарльз Мингусチャーリー・ミンガスチャールス・ミンガスチャールス・ミングスチャールズ・ミンガスBaron FingusBilly Taylor TrioThe Miles Davis QuintetThe Quintet Of The YearThe Charles Mingus QuintetLionel Hampton And His OrchestraThe Bud Powell TrioDizzy Gillespie QuintetCharlie Parker And His OrchestraIllinois Jacquet And His OrchestraPaul Bley TrioBob Mosely & All StarsIllinois Jacquet And His All StarsStan Getz QuintetThe Charles Mingus QuartetCharles Mingus And His Jazz GroupHoward McGhee And His OrchestraCharles Mingus Jazz WorkshopThe QuintetLucky Thompson's All StarsCharles Mingus SextetThe Red Norvo TrioThe Charlie Mingus TrioJohnny Richards And His OrchestraTeddy Charles New Directions QuartetThe Jay And Kai QuintetWilbert Baranco OrchestraGeorge Wallington TrioCharles Mingus OctetThe Charles Mingus DuoThe Oscar Pettiford QuartetJimmy Knepper QuintetThe Quincy Jones Big BandOscar Pettiford And His Jazz GroupsThe Charlie Mingus ModernistsWilbert Baranco And His Rhythm BombardiersStrings And KeysThe New Oscar Pettiford SextetTeo Macero And His OrchestraLady Will Carr And Her TrioJazz Artists GuildThe Charles Mingus GroupCharles Mingus And His OrchestraWilbert Baranco And His TrioBaron Mingus And His RhythmCharles Mingus – Max Roach DuoBarron Mingus And His RhythmCharles "Barron" Mingus Presents His Symphonic AirsCharlie Mingus And His 22 Piece Bebop Band (Stan Kenton's Side Men)Ralph Sharon's All-Star Sextet + +201307Solar ScapeAlfie Geno Raymond BamfordAlf Bamford's trance / European trance project.CorrectTechnikalAlf BamfordElemental (3)Alfy XTechnikoreCritikal (2)Covered UpImmerzeOutsider (14)Ikorus + +201472Lani GrovesLenora Luana RiverollVocalist. Best known for her background vocal work with [a=Stevie Wonder] during the 1970s. Stepdaughter of [a=Ervin Groves]. +Lani (sometimes billed as Lennie or Lenni Groves) was among the artists signed to GME. Father and daughter recorded together for the A-side of the 1962 GME single "Teenage Party" b/w "Bucket O' Blood," the latter track one of Groves' partly spoken-word songs that some feel constitute early rap efforts. +Lani also recorded under her own name, singing her dad's music and/or backed by the Ervin Groves Trio, including "I Feel Pretty" b/w "You're Nobody 'Til Somebody Loves You" (on her dad's GME label). Her single "Sweet Sixteen" b/w "Fool For a Day" (as Lenni Groves) features both songs written by her dad. Groves' wife Lei and another daughter, Kim, sometimes sang on recordings as well.Needs Votehttps://www.imdb.com/name/nm0344078/GrovesL. GrovesL.GrovesLani GroovesLani GroveLanni GrovesLany GrovesLeni GrovesLoni GrovesLonie GrovesLonnie GrovesLuberda GrovesLuberda GrvesLenni Groves + +201571Steve WinwoodStephen Lawrence WinwoodSteve Winwood (born 12 May 1948, Great Barr, West Midlands, England, UK) is an English songwriter and multi-instrumentalist. Winwood was a member of [a86618], [a64748], [a269050] and [a298082] before embarking on a successful solo career in the late 1970's. Younger brother of [a260197].Needs Votehttps://www.stevewinwood.com/https://myspace.com/stevewinwoodhttps://en.wikipedia.org/wiki/Steve_Winwoodhttps://www.allmusic.com/artist/steve-winwood-mn0000045313https://www.instagram.com/stevewinwood/L. S. WinwoodLaurence Stephen WinwoodLawrence WinwoodM&S WinwoodS .WinwoodS WinwoodS, WinwoodS. WinwoodS. W.S. WInwoodS. WindwardS. WindwoodS. WinwodS. WinwoddS. WinwoodS.L. WinwoodS.W.S.WinewoodS.WinwoodS6)8) Wi19 22(St. WinwoodStephen L WinwoodStephen L. WinwoodStephen Lawrence WinwoodStephen WinwoodSteveSteve (Winwood)Steve L. WinwoodSteve WindwardSteve WindwoodSteve WinewoodSteve WinnwoodSteve WinoodSteve WinwardSteve WynwoodSteven L. WinwoodSteven Lawrence WinwoodStevie (Winwood)Stevie WindwoodStevie WinwoodStevie-WinwoodStewie WinwoodStivie WinwoodWW. WinwoodWindwoodWinnwodWinnwoodWinwoodWinwood, SteveWinwooodWinwwodwinwoodС. Винвудスティーブ・ウィンウッドスティーブ・ウインウッドスティーヴ・ウィンウッド스티브 윈우드Steve AngloThe Mystery ShadowS-----S — — — — —Mystery Man (12)TrafficThe Spencer Davis GroupBlind Faith (2)Stomu Yamashta's GoEric Clapton And The PowerhouseHope CollectiveThe Louisiana Gator BoysGinger Baker's Air ForceOne World ProjectThird World (2)Spencer Davis R & B Quartet + +201757Don ElliotRalf Richardson da SilvaDon Elliot is one of the pseudonyms used by country singer Ralf of the Brazilian country duo Chrystian and Ralf in the 70's. + +For the American [B]jazz trumpeter, vibraphonist, vocalist and mellophone player[/B] please use [B][a473375][/B] with appropriate ANV.Needs Votehttps://pt.wikipedia.org/wiki/Chrystian_%26_Ralfhttp://www.chrystianeralf.com.br/ElliotChrystian & Ralf + +202092Charles IvesCharles Edward IvesBorn: October 20, 1874 (Danbury, Connecticut, United States) +Died: May 19, 1954 (New York, New York, United States) + +Charles Edward Ives was an American modernist composer. +He is widely regarded as one of the first American composers of international significance. Ives combined the American popular and church-music traditions of his youth with European art music and was among the first composers to engage in a systematic program of experimental music. +With musical techniques including polytonality, polyrhythm, tone clusters, aleatoric elements, and quarter tones he was foreshadowing virtually every major musical innovation of the 20th century. Ives's music was largely ignored during his lifetime as an active composer, but since then his reputation has greatly increased.Correcthttps://charlesives.org/https://en.wikipedia.org/wiki/Charles_Iveshttps://www.britannica.com/biography/Charles-Edward-Iveshttps://loc.gov/item/ihas.200035714C, IvesC. E. IvesC. IvesC.E. IvesCh. E. IvesCh. IvesCh.IvesCharle E. IvesCharles E. IvesCharles Edward IvesChas. E. IvesIvesIves U.A.Ives,Ives-Ives/SchumanYvesivesČ. AivzsЧ. АйвзЧ.Айвз + +202093Dawn UpshawDawn UpshawAmerican soprano born on July 17, 1960 in Nashville, Tennessee, USA.Needs Votehttps://en.wikipedia.org/wiki/Dawn_Upshawhttps://www.britannica.com/biography/Dawn-Upshawhttps://www.bach-cantatas.com/Bio/Upshaw-Dawn.htmhttps://colbertartists.com/artists/dawn-upshaw/https://web.archive.org/web/20020804104814/https://www.princeton.edu/~alanho/Dawn/D. UpshawUpshawChorus Of St Martin In The FieldsThe Metropolitan Opera + +202114Phil YorkPhilip Andrew YorkScottish Hard Dance Producer & DJ & runs the [l=Hard Timez] label. +He runs the management firm York Artists.Needs Votehttps://www.facebook.com/phil.york.71https://myspace.com/djphilyorkP YorkP. YorkP.YorkPhill YorkYorkSection 8 (3)Organised Chaos (2)BootekBootek DJ'sCortez & YorkExpose + +202611Dave HeathDavid C. HeathBritish composer and flautist (born Manchester, 31 October 1956). He began writing music in 1975, his work crosses barriers between classical, jazz, rock and other genres.Needs Votehttp://www.daveheath.co.ukhttps://www.youtube.com/@davidcheathhttps://quartzmusic.com/artist/david-heath/D C HeathD. C. HeathD.C. HeathDC HeathDave C. HeathDavid HeathDavid LionsgateHeathД. ХитТ. ХитEnglish Chamber OrchestraThe BT Scottish EnsembleThe Kennedy Experience + +203065Vincent DavidClassical saxophone player, born 1974 in Paris.Needs Votehttps://vincentdavid-sax.fr/en/V. DavidEnsemble IntercontemporainEnsemble Court-Circuit + +204651Gérard BuquetGérard BuquetFrench classical tuba player, composer, producer and conductor. Born 1954.Needs Votehttp://www.gerardbuquet.de/Gérard BucquetEnsemble IntercontemporainKlangforum WienDidier Levallet OctetQuintette De Cuivres Jean-Baptiste Arban + +205062The Freak & Mac ZimmsNeeds VoteDJ The Freak & Mac ZimmsDJ The Freak / Mac ZimmsDJ The Freak/Mac ZimmsDj The Freak - Mac ZimmsFreak & Mac ZimmsFreak & Matt ZimmsFreak + Mac ZimmsFreek & Mac ZimmsM.Zimms/DJ The FreakMac ZimmsMac Zimms & DJ The FreakMac Zimms & The FreakMac Zimms / DJ The FreakMac Zimms and DJ The FreakMac Zimms, The FreakMac Zimms/DJ The FreakThe DJ Freak & Mac ZimmsThe Freak & Mac SimsThe Freak & MacZimmsThe Freak & ZimmsThe Freak + Mac ZimmsThe Freak And Mac ZimmsThe Mac Zimms FreakPerfect PhaseThose 2Free Spirit (24)Willem FaberFreek Fontein + +205079Paul ClarkePaul ClarkeUK Happy Hardcore and Hard House producerNeeds VoteClarkClarkeP ClarkP ClarkeP. ClarkeP.ClarkP.ClarkePaul ClarkDr. WhoDougalØutcryDougal & Mickey SkeedaleInnovateDougal & DNAPaul Clarke & M. RamoneSyacodaDougal & TKMDougal & GammerDarkside (7)United In DanceSynergy (10)Beyond TherapyCobalt & HefferSDGThe Saints (6)November (4)RobbingThe Entity (8)Club Generation (2)Minus The CrownEchoes (18) + +206008Christine LagnielClassical pianist.CorrectOrchestre National De L'Opéra De Paris + +206018ZanderNeeds VoteZandérSteve HillSteve PeachGrant Kearney + +206065Nolan SmithNolan Andrew Smith, Jr.American trumpeter, engineer and producer born July 18, 1949 in Pasadena, California. Longtime Los Angeles session musician who started his career in 1974. Musical Director for Marvin Gaye (1974-76), Lead Trumpet with Count Basie Orchestra (1976-79), Natalie Cole (1979-81), Stevie Wonder (1981-83), Diana Ross (1983-85), Phil Collins (1985) and Anita Baker (1986). Now known as Nolan Shaheed.Needs Votehttp://www.universityparkfamily.com/profiles/blogs/nolan-shaheed-winter-jazz-concert-series-dwightrible-presents-thehttps://themusicsyndicate.com/2018/01/nolan-shaheed/N. SmithNohlan SmithNolan "Cat Daddy" SmithNolan ("Cat Daddy") SmithNolan (Cat Daddy) SmithNolan A. SmithNolan A. Smith JrNolan A. Smith Jr.Nolan A. Smith, Jr,Nolan A. Smith, Jr.Nolan A.Smith, Jr.Nolan Andrew SmithNolan Andrew Smith Jr.Nolan Andrew Smith, Jr.Nolan Smith (What A Corker)Nolan Smith Jr.Nolan Smith, Jr.Nolan SmittNoland SmithNoland Smith Jr.Nolon SmithNolan ShaheedCount Basie OrchestraThe Sweet Baby Blues BandBaya (4)The Buddy Collette Big BandDale Fielder Tribute Quintet + +206280Sergei RachmaninoffSergei Vasilyevich Rachmaninoff (Russian: Сергей Васильевич Рахманинов)Russian composer, pianist, and conductor of the Late Romantic period born April 1 [O.S. March 20], 1873, in Semyonovo, Novgorod Governorate, Russia and died March 28, 1943, in Beverly Hills, California, USA.Needs Votehttps://www.rachmaninoff.org/https://en.wikipedia.org/wiki/Sergei_Rachmaninoffhttps://musicbrainz.org/artist/44b16e44-da77-4580-b851-0d765904573e?all=1https://adp.library.ucsb.edu/index.php/mastertalent/detail/102117/Rachmaninoff_Sergeihttps://id.loc.gov/authorities/names/n50054908.htmlA. RachmaninoffC. B. РахманиновC. РахманиновC.B. РахманиновC.В. РахманиновKrachmaninovR. ManinovRachman NoffRachmananinovRachmanineffRachmaniniovRachmaninivRachmaninofRachmaninoffRachmaninoff, SergeiRachmaninoff, Sergej WassiliejewitschRachmaninoff, Sergej WassiljewitschRachmaninovRachmaninov (Sergei Vasilyevich)Rachmaninov S.Rachmaninov, S.Rachmaninov, SergeiRachmaninov, SergejRachmaninowRachmanioffRachmanmdnoffRachmanninoffRachmoivanoffRachmoninoffRachmáninovRacmaninovRacnmaninovRahmaninofRahmaninovRahmanjinovRahmanyinovRajmaninofRakhmaninovRakmaninovS RachmaninoffS RachmaninovS. RachmaninoffS. RachmainovS. RachmaninofS. RachmaninoffS. RachmaninovS. RachmaninovasS. RachmaninovsS. RachmaninowS. RachmanioffS. RachmanninoffS. RackhmaninovS. RahmaninovS. RahmanjinovS. RahmaņinovsS. RajmaninovS. RakhmaninovS. V. RachmaninoffS. V. RachmaninovS. W. RachmaninoffS.RachmaninoffS.RachmaninovS.V. RachmaninoffS.V. RachmaninovS.V.RachmaninovS.W. RachmaninowS.ラフマニノフSerg. RachmaninowSerge RachmaninofSerge RachmaninoffSerge RachmaninossSerge RachmaninovSerge RachmaninowSerge RakhmaninovSerge Vassilievich RachmaninovSerge W. RachmaninowSergei RachmaninovSergei RachmaninofSergei RachmaninovSergei RachmaninowSergei RachmanioffSergei RachmanninovSergei RachmoninovSergei RahmaninovSergei RakhmaninovSergei RakhmàninovSergei V. RachmaninoffSergei V. RachmaninovSergei Vasil'yevich RachmaninovSergei Vasilievich RachmaninoffSergei Vasilievich RachmaninovSergei Vasilievitch RachmaninovSergei Vasilyevich RachmaninocSergei Vasilyevich RachmaninoffSergei Vasilyevich RachmaninovSergei Vassilievich RachmaninovSergei Vassillevitch RachmaninovSergei W. RachmaninovSergei W. RachmaninowSergei Wassiljewitsch RachmaninoffSergei rachmaninovSergeii RachmaninoffSergeij RachmaninowSergej RachamaninovSergej RachmaninofSergej RachmaninoffSergej RachmaninovSergej RachmaninowSergej RachmanioffSergej RachmoninoffSergej RahmaninovSergej RahmanjinovSergej RakhmaninovSergej V. RachmaninovSergej V. RahmanjinovSergej Vasil'evič RachmaninovSergej Vassileviĉ RachmaninovSergej W. RachmaninoffSergej W. RachmaninowSergej Wassiljewitsch RachmaninowSergeji RachmaninovSergel RachmaninovSergey RachmaninoffSergey RachmaninoffSergey RachmaninovSergey RahmaninoffSergey RahmaninovSergey RakhmaninovSergey RakmaninovSergey Sergeyevich RachmaninovSergey Vasil'yevich RachmaninoffSergey Vasil'yevich RachmaninovSergey Vasilyevich RachmaninovSergey Vasilyevich RakhmaninovSergey Vassilievich RachmaninovSergey Vassilyevich RachmaninovSergeï RachmaninovSerghei RachmaninofSerghei RachmaninoffSerghei RachmaninovSerghei RahmaninovSerghei RakhmaninovSerghei V. RahmaninovSerghei Vassilevic RachmaninovSerghej RachmaninoffSerghej RachmaninovSergheï RachmaninovSergi RachmaninoffSergi RachmaninovSergie RachmaninoffSergie RachmaninovSergio RachmaninoffSergio RachmaninovSergiusz RachmaninowSergiusz RahmaninowSerguei - Vassilievitch RachmaninoffSerguei RachmaninoffSerguei RachmaninovSerguey RachmaninovSergueÏ RachmaninovSergueï RachmaninoffSergueï RachmaninovSergueï RachmnaninovSergueï Vassiliévitch RachmaninovSerguie RachmaninovSerguéi RachmáninovSerguéi RajmáninovSergéj RachmaninowSergěj RachmaninovSerhej RacjmaninovSiergiej RachmaninowSrege RachmaninovSz. RahmaninovSz. RahmanyinovSz. V. RahmanyinovSzergej RachmaninovSzergej RahmanyinovV. RachmaninovW. RachmaninoffРахманиновРахманинов С. В.С. В. РахманиновС. В. РахманиноваС. Р. РахманиновС. РахманиновС. РахманниновС. РахманіновС. РахмањиновС.В. РахманиновС.В.РахманиновС.РахманиновСергей Васильевич РахманиновСергей РахманиновСергей Рахманинов = Sergei RachmaninovСергеј РахманиновСергеј РахмањиновСергій Рахманіновסרגיי רחמנינובセルゲイ・ラフマニノフセルゲイ・ラフマニノフラフマニノフラフマニノフ編拉赫曼尼諾夫 + +206281Niccolò PaganiniNiccolò PaganiniItalian violist, violinist, guitarist and composer of the Romantic period, * 27 October 1782 in Genoa, Republic of Genoa, today Italy, † 27 May 1840 in Nice, Kingdom of Sardinia, today France.Needs Votehttps://en.wikipedia.org/wiki/Niccol%C3%B2_Paganinihttps://www.britannica.com/biography/Niccolo-Paganinihttps://www.musiklexikon.ac.at/ml/musik_P/Paganini_Niccolo.xmlhttps://adp.library.ucsb.edu/names/102523M. PaganiniN PaganiniN PaganniniN. PaganiniN. PaganinisN. PaganinyN.PaganiniN.パガニーニNiccol PaganiniNiccollo PaganiniNiccolo PagaganiniNiccolo PaganiniNiccolo' PaganiniNiccoló PaganiniNiclo' PaganiniNicolas PaganiniNicollo PaganiniNicolo PaganiniNicolo' PaganiniNicolo’ PaganiniNicolás PaganiniNicolò PaganiniNicoló PaganiniNicolô PaganiniNikolo PaganiniPaganiniPaganini (Nicolo)Paganini N.Paganini NiccoloPaganini'sPaganini, NiccolòPaganioniPaganniPaganniniPaginiiPaginininach N. PaganiniΠαγκανίνιН. ПаганиниН. ПаганініН.ПаганиниН.ПаганініНикколо ПаганиниНикколо ПоганиниНиколо ПаганиниНіколо ПаганініПаганиниПаганини НикколоПаганини Николоニコロ・パガニーニバガニーニパガニーニ帕格尼尼 + +20730099th Floor ElevatorsAdrian FusiarskiIn 1994, the 99th Floor Elevators released 'Hooked', initially as a white label with vocals from house diva Anne Marie Smith. Heavily influenced by Giorgio Moroder, disco and labels like Hooj Choons, Tidy Trax, early Tripoli Trax and Tony De Vits setlist it quickly gained support from influential DJs like Pete Wardman at Sherbert, Tony De Vit at Trade, and Graham Gold at Kiss FM in London. + +The turning point arrived when a remix by Tony De Vit of 'Hooked' hit clubland. The track quickly gained a cult following sending club-goers into a frenzy and was soon snapped up by Warner Bros offshoot PWL. Their efforts did not go in vain; the track astoundingly gatecrashed the national top 30 pop charts in the UK and climbed to number two in the national dance charts. + +The follow-up, ‘I’ll Be There’, again with vocals from Anne Marie Smith and mixes from Tony De Vit and Pete Wardman entered the national UK charts and found its way onto the daytime playlist at BBC Radio One. + +Hooked recently celebrated its 25th anniversary with a limited 12-inch vinyl release on Tidy Trax with new remixes from the Tidy Boys and Nicholson. +Needs Votehttps://www.99thfloorelevators.co.ukhttp://facebook.com/99thfloorelevatorshttp://twitter.com/buzzsonichttps://mp3.99thFloorElevators.co.uk99th Floor ElevatorClive LathamAdrian Fusiarski + +207355Shaun MShaun MartinsDJ/Producer originating from Cape Town, South Africa now working at Tidy HQ.CorrectShaun Martins + +207945Heinz HolligerHeinz Robert HolligerSwiss composer, oboist and conductor, born May 21, 1939, in Langenthal. He was married to [a=Ursula Holliger].Needs Votehttps://en.wikipedia.org/wiki/Heinz_Holligerhttps://en.schott-music.com/shop/autoren/heinz-holliger/André RaoultH. H.H. HolligerHeinzHeinz HollingerHolligerГолігерХайнц ХоллигерХанс ХоллигерХейнц Холлигерハインツ・ホリガーEnglish Chamber OrchestraI MusiciCamerata Academica SalzburgCamerata BernSwiss Chamber Soloists + +208237Gene ReddGene Clarence Redd[b]Do NOT confuse with his son [a=Gene Redd Jr.] often credited as "Gene Redd" only and mostly active in the New York soul scene of the 60s.[/b] +Gene Redd, Sr. was a bandleader, songwriter and A&R man at [l=King Records (3)] / [l=Federal (5)] active in Ohio. In 1950, he joined Earl Bostic and his Orchestra playing the vibraphone and trumpet. Father of [a=Sharon Redd], [a=Gene Redd Jr.] and [a=Penny Ford] (her mother is [a=Carol Ford]). Owner of [l=Redbug Records] (Ohio) and often associated with the publisher [l=Redbug] / [l=Redbug Publ.] / [l=Redbug Pub. Co.]. Mostly known for co-writing "Please Come Home For Christmas". +NOTE: credited as "Gene Redd, Jr." on one Vogue release.Needs Votehttps://de.wikipedia.org/wiki/Gene_Reddhttps://www.allmusic.com/artist/mn0000803646https://musicbrainz.org/artist/a5c29f1f-ae1c-4dab-9632-f742da3c9c53/relationshipsC. ReddC.G. ReddClarence "Gene" ReddClarence E. ReddClarence ReddEugene ReddG ReddG. C. ReddG. RedG. ReddG. Redd Snr.G. Redd Sr.G. Redd, Sr.G. ReedG. Reed, Sr.G.C. ReddG.E. ReddG.ReddG.Redd SnrGC ReedGean ReddGene C ReddGene C. ReddGene C. Redd, Sr.Gene C.ReddGene G.Gene RedGene Redd Jr.Gene Redd Sr.Gene Redd, Jr.Gene Redd, Sr.Gene ReedGene Reed Sr.H. ReddJ. ReddRedReddRedd Sr.Redd, GeneReedClarence ReddCootie Williams And His OrchestraEarl Bostic And His OrchestraGene Redd And The Globe TrottersEarl "Fatha" Hines And His New SoundsThe Hines VarietiesGene Redd And His Orchestra + +208245Jason CortezJason CormackScottish Hard Dance Producer, DJ, Remixer & head honcho at [l=Nuklearpuppy Records].Needs Votehttp://www.jasoncortez.comhttps://soundcloud.com/jasoncortezdjhttps://www.facebook.com/jasoncortezfanpageJason CormackCortechCortez & York + +208458Torquato TassoTorquato TassoBorn on March 11, 1544 in Sorrento. An Italian poet of the late Renaissance, best known for his poem [i]La Gerusalemme liberata[/i] (Jerusalem Delivered, 1575). + +Died on April 25, 1595 in the convent of Sant'Onofrio. +Needs Votehttps://www.imdb.com/name/nm0851008/?ref_=nv_sr_srsg_3https://it.wikipedia.org/wiki/Torquato_Tassohttps://en.wikipedia.org/wiki/Torquato_TassoAfter TassoB. TassoSignor Torquato TassoT. TassoTassoTorquato Tassi + +208684P.H.A.T.T.Pierre PienaarTrance & EDM DJ & producer hailing from Windhoek, Namibia.Needs Votehttp://www.pierre-pienaar.com/http://www.facebook.com/pierrepienaarofficialhttp://twitter.com/PierrePienaarhttp://soundcloud.com/pierrepienaarhttp://www.youtube.com/ReBirthProductionsP. H. A. T. T.P.H.A.T.TPHATTPhattReBirth (2)Pierre PienaarMelodia + +208695Lenny HambroLeonard William HambroAmerican jazz musician, alto saxophonist and woodwind player, later also producer, booking agent and entertainment coordinator, born October 16, 1923 in Bronx, New York; died September 26, 1995 in Somers Point, New Jersey.Needs Votehttp://en.wikipedia.org/wiki/Lenny_HambroHambroHombroL HambroL. HambreL. HambroL. ハムブロL. ハンブロL.HambroL.LambroLennie HambroLeonard HambroMambo HambroNastGene Krupa And His OrchestraBilly Butterfield And His OrchestraMachito & His Afro-CubansThe New Glenn Miller OrchestraChico O'Farrill And His OrchestraGeorge Williams And His OrchestraThe Lenny Hambro QuintetThe Fisher Fidelity Standard Rock BandThe Fisher Fidelity Standard Jazz BandVardi & Hambro Productions, Inc. + +209250Christoph FrankeProducer, recording supervisor and engineer for experimental and classical music, born in 1965. He is Creative Producer for the [a=Berliner Philharmoniker].Needs Votehttps://www.linkedin.com/in/christoph-franke-57500bb/Christoph FrankenChristophe FrankeChristopher Franke + +209430Fanny ThomasCorrect + +209614Greg BrookmanGreg BrookmanHard dance producer based in London, UK.Needs VoteG. BrookmanCracked LogicTantrum (2)GJB3Brookman & Coe + +210917CyprianGrant KearneyNeeds VoteSteve PeachGrant Kearney + +211634Jerry PetersJerry Eugene PetersSongwriter, multi-instrumentalist, producer, conductor, and arranger.Needs Votehttps://en.wikipedia.org/wiki/Jerry_Petershttps://www.imdb.com/name/nm0676501/Gerry PetersJ. PerryJ. PetersJ. PettersJ.PeterJ.PetersJerryJerry PeterP. PetersPeterPetersS. PetersTerry PetersBlack Magic!The Writers (2)Jerry Peters & Orchestra + +211860Denny DianteDennis J. TorchiaUS producer, songwriter, performer +Correcthttps://www.dennydiante.com/https://www.linkedin.com/in/denny-diante-40912713/https://en.wikipedia.org/wiki/Denny_DianteD. DianieD. DianteDanny DianteDennis DianteDennys DianteDianteDenny Torchia + +211957The American BoychoirPrinceton, New Jersey, USA - Established in 1937 closed in 2017. + +Boys in fourth through eighth grades come from across the United States and around the world to pursue a rigorous musical and academic curriculum at The American Boychoir School. +The programs offered by The American Boychoir School are made possible in part through a grant by the New Jersey State Council on the Arts / Department of State, a partner agency of the National Endowment for the Arts. Additional funding has been provided by the New Jersey Cultural Trust. +Its legacy is preserved through an extensive recording catalog, which boasts over 45 commercial recordings and the launch of its own label, Albemarle Records. Needs Votehttp://www.americanboychoir.org/about/choir-bio.phpAmerican Boy ChoirAmerican BoychoirAmerican Boys ChoirThe American Boy ChoirThe American Boychoir Concert Choirアメリカ少年合唱団The Columbus BoychoirCharles Wesley Evans + +212299Ensemble IntercontemporainThe Ensemble Intercontemporain (EIC) is based in Paris, France. It was founded in 1976 by [a92243] and Jean Maheu with the support of Michel Guy (who was Minister of Culture at the time), and the collaboration of [a1172205] with the project to promote and disseminate contemporary music. This project is carried out in conjunction with a programme of public information and the training of young instrumentalists. Since its inception, the EIC has given the premières of more than 200 contemporary works. + +8 February 2022, it was announced that they were awarded the Swedish Polar Music Prize, a prize that Pierre Boulez had received in 1996.Needs Votehttps://www.ensembleintercontemporain.comhttps://www.facebook.com/Ensemble.interhttps://x.com/Ensemble_interhttps://www.instagram.com/ensemble.intercontemporain/https://www.youtube.com/user/ensembleinterhttps://soundcloud.com/ensembleintercontemporainhttps://www.polarmusicprize.org/laureates/ensemble-intercontemporainBoulez EnsembleEnsemble Inter ContemporainEnsemble InterContemporainEnsemble IntercontemporainIntercontemporain QuartetL'Ensemble IntercontemporaineMembers Of The Ensemble InterContemporainMembers Of The Ensemble IntercontemporainMembres De L'Ensemble InterContemporainParis InterContemporain EnsembleQuatuor InterContemporainSolistes De L'Ensemble IntercontemporainSolistes de l'Ensemble intercontemporainSoloists Of The Ensemble IntercontemporainTrio Ensemble IntercontemporainКамерный Оркестр Ensemble IntercontemporainPierre BoulezVincent DavidGérard BuquetPierre-Laurent AimardHervé TrovelVincent BauerPierre StrauchJean SulemHae Sun KangPhilippe MullerGarth KnoxMichel ArrignonAlain DamiensJean-Guihen QueyrasJérôme NaulaisJean-Jacques GaudonPaul MinckGuy ArnaudBenny SluchinMichel CeruttiMaryvonne Le DizesJean-Marie LamotheDaniel CiampoliniAlain NeveuxJens McManamaJacques DeleplancqueDidier PateauFrédéric StochlSophie CherrierAntoine CureJacques GhestemLawrence BeauregardCharles André LinaleLaszlo HadadyMarie-Claire JametGérard CausséJohn WetherhillMarc MarderSylvie GazeauPierre-Henri XuerebDidier MeuClément SaunierAxel BouchauxEmmanuelle OphèleAndré TrouttetFlorent BoffardJeanne Marie ConquerMarianne Le MentecAlexis DescharmesFrédérique CambrelingDimitri VassilakisHideki NaganoJean-Philippe CochenetGhislaine PetitBenoît MarinAlain BillardJérôme RouillardSarah LouvionVladimir DuboisStéphane MarcelMarie-Violaine CadoretSerge ReynierChristophe DesjardinsPascal GalloisThomas DuranClaude LefebvreEric ChalanStephan WernerPierre FeylerAndreï KarassenkoTitus OppmannErwan FagantChristian Schneider (5)Jean-Pierre MoutotDavid DewasteBéatrice GendekYaël SenamaudErwan RichardMagali MosnierJean-Christophe VervoitteRaphaël ChrétienMarie-Thérèse GhirardiOdile AuboinAndré Saint-ClivierCristian PetrescuPaul RiveauxSylvain BlasselChrichan LarsonDiego TosiGéraldine DutroncyMarine PerezAshot SarkissjanSamuel FavreArnaud BoukhitineEric-Maria CouturierSébastien VichardRoland ArnassalonCatherine JacquetJérôme ComteClaire MicheletNicolas MaireEmmanuel WitzthumXavier Julien-La FerrièrePhilippe GrauvogelMartin AdámekEvan Hughes (5)John StulzVictor Hanna (2)Benoît MaurinMembres De L'Ensemble InterContemporainAntoine Curé + +212300Barry GuyBarry John GuyBritish composer and double bass player, born in London, April 22, 1947. He is founder and artistic director of the London Jazz Composers Orchestra. Together with his wife [a843408] he runs the label [l107723].Needs Votehttps://mayarecordings.com/barry_guyhttps://barryguy.bandcamp.com/https://en.wikipedia.org/wiki/Barry_GuyB. GuyBGBarrie GuyGuySpontaneous Music EnsembleBob Downes Open MusicIskra 1912Howard Riley TrioIskra 1903The English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersBarry Guy New OrchestraCecil Taylor Workshop EnsembleTransatlantic Art EnsembleLondon Jazz Composers OrchestraNu-EnsemblenEvan Parker / Barry Guy / Paul LyttonLucas Niggli Big ZoomThe Dowland ProjectThe Purcell BandThe Academy Of Ancient Music Chamber EnsembleGuy-Gustafsson-Strid TrioThe Joel Futterman - Kidd Jordan QuintetThe Richard Hickox OrchestraFernandez / Guy / LópezRamón López Freedom Now SextetElsie JoTarfala TrioCamerata KilkennyEvan Parker / Barry GuyTony Oxley's Celebration OrchestraBrigantin2 X 3 = 5Aurora TrioLouis Moholo/Evan Parker/Pule Pheto/Gibo Pheto/Barry Guy QuintetBlue Shroud BandDeep Memory TrioAgustí Fernández Ensemble + +212335Matt SmallwoodMatt SmallwoodTech Trance producer from Wallington, England, UK +Label Manager and Head of A&R of [l=Toolroom Records] from Okt. 2014–Jan. 2025.Needs Votehttps://soundcloud.com/matt_smallwoodhttps://myspace.com/djmattsmallwoodhttps://twitter.com/djmattsmallwoodM SmallwoodM. SmallwoodM.SmallwoodSmallwoodElectrilogy + +212337Tidy GirlsEnglish Hard House/Nu NRG (female) act.Needs VoteThe Tidy GirlsRachel AuburnLisa LashesAnne SavageLisa Chilcott + +212726London Symphony OrchestraLondon Symphony Orchestra[b]Not to be confused with [a=The Symphony Orchestra] or [a=The London Synphonic Orchestra][/b]. +[b]When used fictitiously (by [a=Alfred Scholz] or one of his pseudonyms), please use [a=London Symphony Orchestra (2)][/b]. + +The London Symphony Orchestra (LSO), founded in 1904, is the oldest symphony orchestra based in London, England, UK. +The LSO was set up by a group of players who left [url=https://www.discogs.com/artist/8226403-Queens-Hall-Orchestra]Henry Wood's Queen's Hall Orchestra[/url] because of a new rule requiring players to give the orchestra their exclusive services. +The LSO claims to be the world's most recorded orchestra; it has made gramophone recordings since 1912 and has played on more than 200 soundtrack recordings for the cinema, of which the best known include the 'Star Wars' series. The LSO is consistently ranked as one of the world's leading orchestras. +Since 1982, the LSO has been based in the [l=Barbican Centre] in the City of London. +Frequently mentioned together with [a839085]. + +Principal conductors (1950 to present) +1950–54: [a832942] +1961–64: [a406278] +1965–68: [a838929] +1968–79: [a224329] +1979–88: [a368137] +1988–95: [a253245] +1995–2006: [a835518] +2006–15: [a711106] +2017–present: [a490290] (Music Director) + +Please consider also the following orchestra's sub-groups: +- [a=London Symphony Orchestra Chamber Group] +- [a=Members Of The London Symphony Orchestra] +- [a=London Symphony Orchestra Strings] +- [a=London Symphony Orchestra Brass] +- [a=London Symphony Orchestra Chamber Ensemble] +- [a=LSO String Ensemble] +- [a=LSO Percussion Ensemble] +- [a=LSO Wind Ensemble] +- [a=Winds Of The London Symphony Orchestra]Needs Votehttps://en.wikipedia.org/wiki/London_Symphony_Orchestrahttps://www.lso.co.uk/https://www.musicianbio.org/london-symphony-orchestra/https://web.archive.org/web/20031006113748/https://www.sonyclassical.com/artists/london_symphony/https://www.naxos.com/Bio/OrchestraEnsemble/London_Symphony_Orchestra/35655https://www.bach-cantatas.com/Bio/LSO.htmhttps://www.feenotes.com/database/groups/london-symphony-orchestra/https://www.imdb.com/name/nm1499772/https://www.soundcloud.com/london-symphony-orchestrahttps://www.youtube.com/londonsymphonyorchestrahttps://www.x.com/londonsymphonyhttps://www.facebook.com/londonsymphonyorchestra/https://www.instagram.com/londonsymphonyorchestra/https://www.linkedin.com/company/london-symphony-orchestra/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103031/London_Symphony_Orchestra"London Symphony Orchestra"& OrchestraAmbrosian SingersBerlin PhilharmonicChoeurs Et Orchestre Symphonique De LondreCoro Y Orquesta Sinfonia De LondresDas London Symphony OrchesterDas London Symphony OrchestraDas Londoner Sinfonie-OrchesterDas Londoner SinfonieorchesterDas Londoner Symphonie OrchesterDas Londoner Symphonie-OrchesterDas Londoner Symphony OrchesterDas Sinfonie Orchester LondonDas Sinfonie-Orchester LondonDas Symphonie-Orchester LondonDie Londoner SymphonikerGrande Orchestra SinfonicaGrande Orchestra Sinfonica di LondraHet London Symphony OrchestraHet Londons Symphonie OrkestL'Orchestre Symphonique De LondresL'orchestre Symphonique De LondresL.S.A.L.S.OL.S.O.LSOLSO (London Symphony Orchestra)LSO.La London Symphony OrchestraLa Orq. Sinfónica de LondresLa Orquesta Sinfonica De LondresLa Orquesta Sinfonica de LondresLa Orquesta Sinfónica De LondresLa Orquesta Sinfónica de LondresLa Orquestra Sinfonica De LondraLe London Symphony OrchestraLon. Symph.Londens Symfonie OrkestLondonLondon S.O.London Simphonic OrchestraLondon Simphony OrchestraLondon SinfoniaLondon Sinfonietta Philh. OrchLondon Sym OrchLondon Sym. Orch.London SymfoniorkesterLondon Symp Orch.London Symp. Orch.London Symph.London Symph. Orch.London Symph. OrchesterLondon Symph. OrchestraLondon Symph.-Orch.London Symphonic OrchestraLondon Symphonic Orchestra And SingersLondon Symphonic OrkestLondon SymphonicsLondon Symphonie OrchesterLondon Symphonie OrchestraLondon Symphonie-OrchesterLondon SymphonieorchesterLondon SymphonyLondon Symphony Orch.London Symphony OrchesterLondon Symphony Orchestra (LSO)London Symphony Orchestra And ChorusLondon Symphony Orchestra EnsembleLondon Symphony Orchestra and ChorusLondon Symphony OrchestrasLondon Symphony-OrchesterLondon Symphony-OrchestraLondon Synphonic OrchestraLondon-Symphonie-OrchesterLondoner Philharmonisches Symphonie OrchesterLondoner Sinfonie OrchesterLondoner Sinfonie-OrchesterLondoner Sinfonie-OrchestraLondoner SinfonieorchesterLondoner Symphonie OrchesterLondoner Symphonie-OrchesterLondoner SymphonieorchesterLondoner Symphonie⸗OrchesterLondoner SymphonikerLondoner Symphony OrchestraLondoner Symphony-OrchesterLondoner SymphonyorchestraLondoner-Symphonie-OrchesterLondoni SzimfonikusLondoni Szimfonikus ZenekarLondono Simfoninis OrkestrasLondons Symfoni OrkesterLondons SymfoniorkesterLondons Symphonie OrkestLondons Symphonie-OrkestLondonski Simfonijski OrkestarLondonski Simfonični OrkesterLondonskim Simfonijskim OrkestromLondonskom SimfonijomLondra SenfoniLondra Senfoni OrkestrasıLondynsky Sinfonyky OrchestrLondýnsky Symfonický OrchesterLondýnský Symfonický OrchestrLontoon SinfoniaorkesteriMembers Of The London Symphony OrchestraOrch.Orch. Sinf. Di LondraOrch. Sinf. LondraOrch. Sinfonia Di LondraOrch. Sinfonica Di LondraOrch. Sinfonica di LondraOrchestraOrchestra Della London SymphonyOrchestra London SymphonyOrchestra Philharmonia Di LondraOrchestra SInfonica Di LondraOrchestra Sinf. Di LondraOrchestra Sinfonica DI LondraOrchestra Sinfonica Di LondraOrchestra Sinfonica LondonOrchestra Sinfonica di LondraOrchestra Sinfónica De LondresOrchestra Symphonique de LondresOrchestra Symphony LondonOrchestre De LondresOrchestre Sinfonia De LondresOrchestre Symph. de LondresOrchestre Symphonie De LondresOrchestre SymphoniqueOrchestre Symphonique De LondresOrchestre Symphonique de LondresOrcquesta Sinfonica de LondresOrq. London SymphonyOrq. Sinf. De LondresOrq. Sinfonica De LondresOrq. Sinfonica de LondresOrq. Sinfónica De LondresOrq. Sinfónica de LondresOrq. Sinfônica De LondresOrq. Sinfônica de LondresOrquestaOrquesta Filarmonica De LondresOrquesta Sinfonia De LondresOrquesta Sinfonica De LondresOrquesta Sinfonica De LindresOrquesta Sinfonica De LondresOrquesta Sinfonica de LondresOrquesta Sinfonicqa De LondresOrquesta SinfónicaOrquesta Sinfónica De LeondresOrquesta Sinfónica De LondresOrquesta Sinfónica De Londres (London Symphony Orchestra)Orquesta Sinfónica de LondresOrquesta Sinfônica De LondresOrquesta sinfónica De LondresOrquestra Sinfonica De LondresOrquestra Sinfonica de LondresOrquestra Sinfónia De LondresOrquestra Sinfónica De LondresOrquestra Sinfónica de LondresOrquestra Sinfônica De LondresOrquestra Sinfônica de LondresOrquestre Symphonique De LondresOrquésta Sinfónica De LondresOrquésta Sinfónica de LondresOruesta Sinfónica de LondresPhilharmonic Symphony Orchestra of LondonPrincipals Of The London Symphony OrchestraSections Of The London Symphony OrchestraSimfonijski Orkestar Iz LondonaSinfonica De LondresSinfonica Di LondraSinfonica de LondresSinfonie Orchester LondonSinfonie-Orchester LondonSinfonie-Orchester-LondonSinfonía De LondresSinfonía Of LondonSinfónica De LondresSinfónica de LondresSinfônica De LondresSoloistsSoloists Of The London Symphony OrchestraStreicher Des London Symphony OrchestraStrings of the London Symphony OrchestraSymphonic Orchestra Of LondonSymphonie-OrchesterSymphonique De LondresSymphonique de LondresSymphony OrchestraSymphony Orchestra LondonSymphony Orchestra Of LondonSymphony-OrchesterTh London Symphony OrchestraTheThe "L.S.O."The L.S.O.The LSOThe London Philharmonic OrchestraThe London S.O.The London Simphony OrchestraThe London Symph. Orch.The London Symph. OrchestraThe London Symphonic OrchestraThe London SymphonyThe London Symphony OrchThe London Symphony Orch.The London Symphony OrchestraThe London Symphony Orchestra And ChorusThe London Symphony Orchst.The London Symphony-OrchestraThe Strings Of The London Symphony OrchestraThe Symphonic OrchestraThe Symphony OrchestraThe Symphony Orchestra Of LondonTheLondon Symphony OrchestraVtHE London Symphony OrchestraΣυμφωνική Ορχήστρα ΛονδίνουΣυμφωνική Ορχήστρα Του ΛονδίνουЛондонски Симф. Орк.Лондонски Симфоничен ОркестърЛондонски Симфонијски ОркестарЛондонский Симф. Орк.Лондонский Симф. ОркестрЛондонский Симфонический ОркестрЛондонский Симфонический Оркестр Её ВеличестваЛондонский симфонический оркестрОркестр П/у Л. РоналдаОркестр п/у Л. РоналдаОркестръ Въ ЛондонѣСимфонич. Орк. Въ ЛондонѣСимфонич. Оркестръ Въ ЛондонѣСимфоническiй Оркестръ Въ ЛондонѣСимфонический Оркестр Г. ЛондонаСимфонический Оркестр Лондонаהתזמורת הסימפונית של לונדוןנגני ה .‫L.S.O מלונדוןالكستر سمفونيك لندنジョン・ウィリアムズロンドンシンフォニーオーケストラロンドン・シンフォニー・オーケストラロンドン交響楽団Natasha WrightGeoffrey DownesBernard PartridgeJack BrymerRebecca HirschNick CooperTristan FryJohn Brown (2)Martin OwenTom EdwardsHugh SeenanPaul KeggStephen SaundersKira DohertyRichard BissillGlyn MatthewsFred AlexanderHugh BeanMaurice MurphyJames GalwayHarold ParfittAlan DalzielNeil WatsonSimon HaramSimon StandageMike De SaullesBarry WildeBen CruftBill BenhamDavid TheodoreMalcolm SmithJudith FleetRoy GillardMichael McMenemyMike FryeDaniel NewellAlison BalsomNick BarrHeather WallingtonTim GoodJohn RookeJohn KitchenEdward VandersparGillian ThodayHoward McGillJuliet SnellRebecca GilliverJohn Davies (4)Jeff WakefieldDavid NolanRobin FirmanPeter WillisonJames Watson (2)Patrick HallingDavid AlbermanMartin RobinsonJosephine KnightJohn Ryan (3)Jennifer Brown (3)John MeekPhilip HallRichard StudtAlan Downey (2)Steve HendersonRalph IzenJohn FrancaRoger LinleyChris Green (4)Roy JowittRoy Carter (2)Richard ClewsMoray WelshMichael JeansCecil JamesEdward WalkerSidney FellJohn BurdenIan MackinnonAndrew MarrinerBrendan O'Brien (2)Ursula GoughMaxine MooreJanice GrahamIrvine ArdittiMarcia DicksteinStephen WickMarcia CrayfordErnest GreavesMaurice LobanJeff BryantKim MackrellBasil SmartAndrew McGeeDavid MeashamOwen SladeNigel Thomas (2)Andrew McGavinMalcolm JohnstonIan RowbothamBeverley JonesJames HollandRobert NobleThelma OwenForbes HendersonLiz ParkerGillian FindlayWilliam ArmonAnthony CamdenJeremy Williams (2)David Cohen (2)Takane FunatsuEnno SenftSam WaltonGlynne AdamsRobert RetallickAnthony ChidellWilliam SumptonRay Adams (2)Jack LongPatrick Hooley (2)Norman ArchibaldSamuel ArtisRoger LordDonald StewartArthur GriffithsEric CuthbertsonDavid CrippsRobin BrightmanRobert BourtonPashanko DimitroffDenis WickDavid HumeWilliam LangKurt-Hans GoedickeGerald NewsonFrancis NolanRichard Taylor (2)John MarsonBrian Clarke (3)Francis SaundersDennis GainesMichael Mitchell (3)Warwick HillJack SteadmanRay NorthcottDavid Williams (8)Thomas StorerPeter Francis (2)Sydney ColterDavid LlewellynBrian GaultonJames QuaifeRenata Scheffel-SteinEric CreesMaurice MeulienClive GillinsonJohn Cooper (4)John Fletcher (2)Neville TaweelRobert ClarkRonald MooreGeoffrey CreeseLowry SandersJohn Butterworth (2)Thomas SwiftThomas CookDouglas CummingsKeith GlossopPatrick VermontGraham WarrenFrank MathisonWilliam KrasnikMin YangValery GergievJames ThatcherMichael Davis (5)Charles FordEli HudsonEdwin HinchcliffeGilbert BartonJesse StampHelena Wood (2)David PyattMax SpiersNick WortersJohn ConstableLeslie PearsonPeter Lloyd (2)Clare HoffmanMichelle BruilRuth RogersChris Richards (3)Gina ZagniLouise ShackeltonStephen RowlinsonRichard BlaydenSylvain VasseurJonathan WelchNorman ClarkeEvgeny GrachNicholas WrightRobert Turner (2)Nicholas GethinDuff BurnsMatthew GardnerNoel BradshawIan RhodesDavid BallesterosIan McDonoughHarriet RayfieldColin RenwickNicole Wilson (2)Michael HumphreyDavid Jackson (5)Carmine LauriHilary JonesJorg HammannElisabeth VarlowBelinda McFarlaneGinette DecuyperMaxine KwokClaire ParfittSarah QuinnGillianne HaddowNigel BroadbentPaul SilverthorneKaren VaughanRegina BeukesJames BladesSimon Wills (2)Arthur GleghornBenedict HoffnungSir Neville MarrinerWilliam Bennett (3)Michael WinfieldTim HughJohn GeorgiadisAnthony Howard (2)Roger BirnstinglBarry TuckwellJohn Gray (7)David Gray (6)Hugh MaguireDenis VigayRaymond CohenJacques Mercier (3)Byron FulcherPeter ManningOsian EllisGranville JonesDaniel JemisonRodney FriendAnthony HalsteadAdolf LotterErich GruenbergGervase de PeyerJohn Wallace (4)Hans GeigerEric BowieJohn RonayneDavid ChappelAlexander BarantschikRobin McGeeDominic MorganMax GilbertSidney EllisonDennis CliftCecil AronowitzJames ChristieNorman Jones (2)Herbert DownesAnthony Collins (2)Sidonie GoossensHoward SnellHarold LesterChristopher WellingtonNeil PercySharon Williams (2)Robert Haydon ClarkNicholas HunkaClaire SmithBryn LewisJohn LawleyJonathan VaughanJames MaynardRobert Hughes (3)Christine PendrillTom NorrisPatrick HarrildElizabeth PigramChristopher Thomas (2)Nigel GommGareth Davies (5)Axel BouchauxTom Goodman (2)Matthew Gibson (2)Amélie TheurillatJohn StenhouseCatherine EdwardsAlastair BlaydenLennox MackenzieJonathan LiptonMary BerginDavid GoodallGordon HuntPeter NorrissRebecca KozamJoyce NixonLaurent QuenelleGerald RuddockRachel GoughDudley BrightSimon Carrington (2)David ArcherJohn AlleyRinat IbragimovChi-Yu MoRhys WatkinsKathryn SaundersMarie GoossensBernard Walton (2)Ashley ArbuckleBernard ReillieHarry BlechNelson CookeSarah BrookeLindsay ShillingAlain PetitclercJohn Hill (8)Julian CummingsGeoffrey Palmer (2)Raymond OvensRussell GilbertAlan HammondMartin ChiversStephen TrierMax SalpeterMartin GattLeo BirnbaumGwyn EdwardsPeter BensonBrian Smith (12)Brian Thomas (4)Paul Edmund DaviesJames Ellis (3)Kate Wilson (2)Penny DriverEve-Marie CaravassilisWilliam WaterhouseJohn BimsonJonathan DurrantNora CismondiRoger BrennerAdrian AdlamBenjamin RoskamsAlexander Murray (2)Denis BlythKenneth HeathTimothy Jones (3)Paul Robson (2)Kenneth SkeapingHale HambletonKevin NuttyFrank RycroftTimothy LinesMartin FieldKenneth King (2)Stephanie GonleyJoel QuarringtonClarence AtkinsonSue KinnersleySimon HetheringtonBarry DavisDouglas PowrieBruce MollisonMartin Jackson (2)Richard HolttumStanley CastlePaul MarrionWilliam Brown (9)Rod McGrathAlexander TaylorRoger WelchAlan Smyth (2)Matthew BarleyTerry JohnsJez WilesLeslie HatfieldKieron MoorePaul Milner (3)Gordan NikolitchDavid Johnson (15)Kenneth LawRussell JordanDenzil FloydArthur Wilson (3)Nicholas Maxted-JonesDavid Ellis (2)Malcolm HallRoger GrovesJohn Ford (5)Jack LeesDennis NesbittStephen ShinglesFrancisco GabarroGordon MacKayElizabeth RandellMichael Cox (3)Jocelyn LightfootEmanuel AbbühlMalcolm StewartRosie JenkinsHugh SparrowLawrence LeonardLionel BentleyColin HortonDominic WeirMichael HirstRay ParmigianiMichael AngressTerence MortonPaul Laurence (3)James Potter (2)John Forrester (2)Christopher Nicholls (2)Cyril Reuben (2)Jim Douglas (2)David Miles (4)Brian Evans (6)Ray Brown (8)Nick RodwellHazel MulliganEugene CruftEvelyn RothwellG. WarehamJohn AnsellSteve MairMiwa RossoRod FranksAndriy ViytovychMaya IwabuchiAlexei SarkissovAlan StringerMartin Parry (2)Gerald JarvisJames MerrettPeter Harvey (2)Alistair ScahillKevin RundellBen GriffithsSaskia OttoWilliam Henry ReedBrendan ThomasEmma PritchardWalter LearWillem de MontJeremy CornesLaurence RogersRonald WallerDavid Martin (23)Patrick Milne (2)Dunja BontekPeter MallinsonPeter GreenhamPaul MayesHelena SmartJames Gregory (2)Robert McIntoshStephen WardleHeather BirksAndrew PollockKaren BradleyMichael Spencer (4)Pierre BensaidRebecca Scott (2)Caroline O'NeillPatrick LaurenceWilliam HaskinsColin ParisRuth RossPeter MuscantGordon NealMax Weber (2)William Martin (2)Stuart KnussenFrederick DysonJohn Duffy (4)Max BurwoodHarold LythellPeter GaneRoy Robertson (3)Håkan EhrénStephen WatersWilliam Reid (5)Gerald EmmsPaul Sherman (2)Samuel Lewis (2)Joy HallGeorge TurnlundGabrielle PainterJohn Cave (3)Thomas Martin (5)London Symphony Orchestra Chamber GroupMike Kidd (3)Paul Richards (7)John Gould (5)Leonard DommettGerald GregoryThomas MatthewsPeter Gibbs (2)Rachel GledhillJohn Chambers (4)Remo LauricellaMillicent SilverLondon Symphony Orchestra StringsRobert TrumanSusan SutherleyMatthew ComanMaurice WesterbyTriona MilneWatson ForbesIan BousfieldHilary Jane ParkerErzsébet RáczHilary RobinsonLucia LinMichael MeeksJennifer McLarenPaul Katz (3)Michael Francis (3)Joost BosdijkMiya IchinoseAngela BarnesDavid EltonSimon StreatfeildNancy Johnson (3)Leslie MalowanyKaren HuttMichael RoundGeorge TudoracheAubrey BrainWilliam MelvinHenry Greenwood (3)Keith CummingsPaul Draper (3)Julia O'RiordanRoman SimovicFrederick RiddleDonald BridgerGermán ClavijoAlfred BrainAnna-Liisa BezrodnyTom Berry (5)Robert HollidayDaniel Gardner (3)John Harper (5)Alex LindsayEllie FaggDavid VainsotAlfred DukesPaul KimberMartin Knowles (2)Norman Nelson (3)Ian Hampton (2)Cedric SharpeClaude HobdayEileen GraingerRoy PattenCharles DonaldsonNeill SandersGeorge EskdaleWynn ReevesSimon Cox (3)Iwona MuszynskaHolly RandallWilliam OvertonAnneke HodnettHarry CurbyFrancis BradleyValentina BernardoneDavid WorswickNatalie James (2)Jessie Anne RichardsonBram WigginsPeteris SokolovskisBernard ShoreIlona BondarHarold Jackson (5)Victoria SimonsenRachel IngletonAlan Cave (3)Julian SperryPatricia MoynihanCharles WoodhousePhilip B. CatelinetMarie MacleodLaura DixonDavid WhistonMinat LyonsNele DelafonteynePhilip NolteJani PensolaElisabeth TriggAmanda TrueloveNiall KeatleyTim Ball (2)Alexandra Mackenzie (2)Katherine Baker (3)Jason KoczurMark Templeton (2)Eric Pritchard (2)Phil Cobb (2)Celeste RushWalter MonySiobhan GrealyMichael StreckerLSO String EnsembleJohn Ashby (4)Members Of The London Symphony OrchestraSimon Johnson (10)Keith McNicollDelphine BironMaxwell WardMartin ShillitoAlbert SettyAdam Wright (9)Fraser GordonKaty AylingBilly Bell (8)Victoria IrishLulu FullerJan RegulskiFiona DalglieshJohn Bradbury (4)Anna BerylChristian BarracloughShlomy DobrinskyAlan Jenkins (6)Christian Jones (8)John Pennington (4)Alex WideEdgar Williams (3)Harry Taylor (7)john cockerillCsilla PogànySérgio Pires (2)Robert Fleming (5)Dominic TylerAntoine BedewiNaoko KeatleyLander EchevarriaPeter Moore (16)Alexander EdmundsonClare DuckworthMiya VaisanenAlfred HobdayBenjamin PicardLSO Percussion EnsembleClarence O'NeilAdam WynterDavid McQueenTomo KellerStephanie EdmundsonLois AuJulia RumleyAdam Walker (6)Simon Oliver (3)Robin TotterdellPeter Smith (40)Joe MelvinTom LesselsJulian Gil RodriguezJohn AlexandraPeter SulskiPhilip White (8)Anna GreeneEdward Chapman (3)Raja HalderOlivier StankiewiczFrank Howard (7)Βασίλης Παπαβασιλείου (3)James PillaiBen Thomson (4)Siwan RhysAnne McAnensGordon Walker (3)David MundenJames Whitehead (4)Robert MurchieSteven ReadingPhilip Lewis (5)Duncan GouldJoao SearaOriana KrisztenFraser MacAulayJames Burke (9)Andrew Harper (4)Christopher Hart (2)Ben HulmeJames Fountain (3)Greta MutluEugene FeildErnest BentonRobert BurtenshawJonathan MaloneyMichael Fuller (5)Tom Watson (19)Geremia IezziDiana MathewsWilliam HulsonAubrey ThongerJanse van RensburgCharles Gregory (7)Rodney Stewart (2)Vincent BurrowsAnna BastowJenny LewisohnHaydn BeckGeorge Stratton (2)David Kendall (7)J. McDonaghE. F. JamesMartin RonchettiMark O'Leary (5)Peter Smith (57)James W. Brown (2)Simo VäisänenKaty Jones (2)Michael Bowie (3)Gershom ParkingtonJames WilcockeMarie Wilson (8)John Moore (55)Ken IchinoseJuliana KochMayra SalinasIfan WilliamsThomas PeatfieldFinlay BainKenneth Moore (6)Laure Le DantecJosé Moreira (4)Carol EllaFrancois ThiraultDaniel Finney (3)Siret LustAlec HarmonLuca CasciatoSofia Silva SousaAlexandra LomeikoAlix LagasseJulian AzkoulSalvador BolónKenneth Essex (2)Victoria HarrildJoanna TwaddleErnest Hall (3)Gerald BrinnenBertrand Chatenet (2)Mitzi GardnerRodrigo Moro MartínLorenzo Antonio IoscoAnthony Judd (2)Norman Freeman (3)George Yates (3)George Reynolds (6)Jacob Brown (5)Heike JanickeJim Buck SrAnnie-May PageZoë TweedStefano MengoliImogen RoyceDaniel CurzonHenrietta CookeMay DolanSteve Doman (2)Shelly OrganThomas WightmanKaitlin WildLSO Wind EnsembleCynthia BlanchonCaroline FrenkelJosé Nuno MatiasWaynne KwonSimon Thompson (6)Roger CuttsKristina YumerskaOlivia GandeeJosie Ellis (2)Kai KimSilvestrs KalniņšArvid Larsson (2)Alexander BoukikovAmadea Dazeley-GaistGemma RileyJonathan HollickGustav MelanderAlexander McFarlaneMizohu UeyamaThomas Beer (2)Angela WeeNaori TakahashiPatrycja Mynarska + +212786Stan KentonStanley Newcombe Kenton.American jazz bandleader and pianist. +Born December 15, 1911 in Wichita, Kansas, USA. +Died August 25, 1979 in Los Angeles, California, USA. +Married to singer [a461862] 1955-1961. + +He played in the dance bands of [a258692] and [a675269]. His first orchestra "Artistry in Rhythm" was formed in 1941. Many jazz stars played in his orchestras such as: [a251873], [a30486], [a624848], [a356448], [a753394], [a281337], [a18811], [a312417], [a255945], [a265354], [a263796], [a300031], [a281340] and more.Needs Votehttps://en.wikipedia.org/wiki/Stan_Kentonhttp://www.stankenton.org/https://www.britannica.com/biography/Stan-Kentonhttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/stan-kentonhttps://www.imdb.com/name/nm0448928/https://adp.library.ucsb.edu/names/205348KenstonKentonS. KentonS. S. KentonS.KentonS.S. KentonStanStan Newcomb KentonStankentonStanleyStanley KentonStanley N. KentonStanley Stan KentonС. КаневскийWoody Herman And His OrchestraStan Kenton And His OrchestraThe Los Angeles Neophonic OrchestraStan Kenton's Melophoneum BandStan Kenton And The Innovations OrchestraWoody Herman & The Second Herd + +212813KamuiGerman Techno/Hard Trance project.Needs Votehttp://www.kamui-music.comhttp://www.facebook.com/kamuimusichttp://www.soundcloud.com/kamuiofficialhttp://www.youtube.com/kamuimusichttp://www.myspace.com/kamuimusicVirus Inc. (2)MonsunBlack PhazeSynthflutKa (4)Dominik FelsmannPatrick Scheidt + +214233Freddie PerrenFrederick James PerrenAmerican record producer, songwriter, arranger, and orchestra conductor. +Born 15 May 1943, Englewood, NJ - died 16 December 2004, Chatsworth, Los Angeles, CA. +He owned the recording studio [l=Mom & Pop's Company Store]. +Perren was a member of the [l=Motown] Records production group [a290531], which wrote and produced [a=The Jackson 5]'s first hits. The Corporation (including Motown founder [a=Berry Gordy], [a285482] and [a=Fonce Mizell]) produced the group's "I Want You Back", "ABC" and "The Love You Save". Perren also produced [a80124]' hits "Love Machine" and "Do It Baby" while at Motown. His post-Motown records include [a=Peaches & Herb]'s "Reunited" and "Shake Your Groove Thing"; [a80125]' "Boogie Fever" and "Hot Line"; and [a=Tavares]' "Heaven Must Be Missing an Angel". Perren shared an Album of the Year Grammy in 1978 for producing two songs on the [r=127165] album. With [a=Dino Fekaris], Perren produced [r=103569], sung by [a14683], which won the Grammy for best disco recording in 1979.Needs Votehttps://freddieperren.com/https://en.wikipedia.org/wiki/Freddie_Perrenhttps://www.imdb.com/name/nm0674579/https://www.findagrave.com/memorial/10554364/freddie-perrenA. PerrenBerren F.C. FerrenC. PerrenF J PerrenF PerrenF. FerrenF. J. PerrenF. J. PerrenF. J.PerrenF. ParrenF. PerenF. PerranF. PerrasF. PerrehF. PerrenF. PerrerF. PerrinF. PerronF. PorrenF. TerremF.J. PerrenF.J. PerronF.J.PerrenF.PerrenF.PerrinFerrenFerry PerrenFr. PerrenFred PerrenFred PerrinFred PerronFred.PerrenFreddi PerrenFreddieFreddie FerrenFreddie J. PerrenFreddie ParrenFreddie PerenFreddie PerranFreddie PerreFreddie PerrinFreddie PerronFreddie PerrénFreddie TerrelFreddy PerrenFreddy PerreuFreddy PerrinFreddy PerronFreddy PerrénFreddy PorenFreddy TerrelFreddy TerrinFrederic J. PerrenFrederic PerrenFrederick FerrenFrederick J PerrenFrederick J. PerrenFrederick J.PerrenFrederick James PerrenFrederick PerrenFrederick PerrerFrederick PerrinFrederick. J. PerrenFrederick.J PerrenFrederik J. PerrenFrederik James PerrenFrederik PerrenFrediie PerrenFredrick J. PerrenFredrick PerrenFredye PerrelFrédérick PerrenGreddit PerrenJ. PerrenJ.P.FrederichP. PerrenP.F. JamesParrenPenrenPereenPerenPergenPerrenPerren FPerren F.Perren FreddiePerren FrederickPerren Frederick JPerren, Frederick JPerrgnPerrinPerriusPerronPerryR. PerrenTerrenФ. ПерренФ. ПерринФредди ПеренФредди ПерренThe Corporation (2)The Chancellors (5) + +214409Rohan de SaramRohan de SaramEnglish cellist, born 9 March 1939 in Sheffield to Sri Lankan parents. He joined the Arditti String Quartet in 1979 and has worked closely with several contemporary composers including [a=Iannis Xenakis], [a=György Ligeti], [a=Henri Pousseur], and [a=Luciano Berio]. Brother of [a4626881]. Died 29 September 2024. +Rohan de Saram is one of the world’s most distinguished cellists, master of classical and modern music. He has performed concertos with the major orchestras of Europe, USA, Canada, Australia and the former Soviet Union. De Saram worked directly with Kodaly, Shostakovich, Poulenc, Walton, and more recently, with most of the world’s leading contemporary composers, including Pousseur, Xenakis, and Berio who have, amongst others, written works for him. A child prodigy, he studied with Gaspar Cassadó in Italy, Pablo Casals in Puerto Rico, and Sir John Barbirolli in London. His numerous recordings include a large body of work with the Arditti Quartet and solo repertoire from Vivaldi, through the masterworks of the ohan de Saram is one of the world’s most distinguished cellists, master of classical and modern music. He later twentieth century, to recital concerts and recent works.Needs Votehttp://www.rohandesaram.co.uk/https://en.wikipedia.org/wiki/Rohan_de_Saramhttps://www.imdb.com/name/nm3183798/De SaramRohan De SarahRohan DeSaramAMMArditti QuartetCummings String TrioXenakis EnsembleEnsemble Dreamtiger + +214478James Anthony CarmichaelJames Anthony CarmichaelAmerican Grammy-winning musician, arranger, and record producer. +Born September 14, 1941 in Gadsden, Alabama, USA. +[b]For [a=Instant Funk] vocalist, use [a=James Carmichael (2)].[/b] + +A trained pianist, Carmichael worked in Los Angeles as an arranger for The Olympics, Bill Cosby and others in the 1960s, before finding greater success at Motown as arranger and producer with the Commodores and Lionel Richie from the early 1970s to the late 1990s.Needs Votehttps://wbssmedia.com/artists/detail/4039https://en.wikipedia.org/wiki/James_Anthony_Carmichaelhttps://news.google.com/newspapers?nid=1891&dat=19840120&id=bxMpAAAAIBAJ&sjid=ItYEAAAAIBAJ&pg=1555,3396288&hl=enAnthony CarmichaelCarmichaelJ. A. CarmichaelJ. Anthony CarmichaelJ. CarmichaelJ. CarmichaëlJ. ChermichaelJ.A. CarmichaelJ.C. CarmichaëlJames CarmichaelJames "Chessboard" CarmichaelJames "King Of The Chest" Oops We Mean "Chessboard" CarmichaelJames "King Of The Chest" oops we mean "Chessboard" CarmichaelJames A. CarmichaelJames AnthonyJames Anthony CarmichealJames Antony CarmichaelJames CarmiachaelJames CarmichaelJames CarmichealJames CarmichielJames CharmichaelNelsonT. Carmichael + +214644Morgan (10)Paul MorganPaul runs [l=Toasted Recordings], a UK Hard Dance / Techno label.Correcthttp://www.toastedrecordings.co.ukPaul Morgan (3) + +214973Tony BurtAnthony BurtNew Zealand trance producerNeeds Votehttp://www.myspace.com/tonyburthttps://soundcloud.com/tonyburtA BurtA. BurtA.BurtToni BurtMat Silver vs. Tony Burt + +215033Charles TolliverCharles TolliverAmerican jazz trumpet player. born 6 March 1942 in Jacksonville, Florida, USA. +Co-creator of [l38965] along with [a152684]. + + +Needs Votehttp://www.charlestolliver.comhttps://en.wikipedia.org/wiki/Charles_Tolliverhttps://charlestolliver.bandcamp.com/album/charles-tolliver-all-stars-right-now-and-thenC. TolliverCTCh. TolliverTolliverチャールズ・トリューチャールズ・トリヴァーMusic IncThe Horace Silver QuintetGerald Wilson OrchestraThe Charles Tolliver QuintetCharles Tolliver Big BandCharles Tolliver And His All StarsLouis Hayes SextetThe Reunion Legacy Band + +215254Euphony (2)Needs VoteEuphonic SessionsLee HaslamGuy Mearns + +216138Henryk GóreckiHenryk Mikołaj GóreckiBorn December 6, 1933 in [url=https://pl.wikipedia.org/wiki/Czernica_(województwo_śląskie)]Czernica[/url], died November 12, 2010 in Katowice. Polish composer and pedagogue. +Knight of the [url=https://pl.wikipedia.org/wiki/Order_Orła_Białego]Order Orła Białego[/url]. +Father of the classical pianist [a=Anna Górecka (2)] and composer [a=Mikołaj Górecki].Needs Votehttps://en.wikipedia.org/wiki/Henryk_G%C3%B3reckihttps://ninateka.pl/kolekcje/en/three-composers/goreckiGoreckiGoréckiGòreckiGóreckiGórecki Henryk MikołajH.H. GoreckiH. GóreckiH. M. GoreckiH. M. GóreckiH.M. GoreckiH.M. GóreckiHendryk GóreckiHenrik-Mikolaj GoreckiHenrik-Mikolaj GóreckiHenry GoreckiHenry GóreckiHenryk GoreckiHenryk GöreckiHenryk M. GoreckiHenryk M. GóreckiHenryk Mikolaj GoreckiHenryk Mikolaj GóreckiHenryk Mikołaj GoreckiHenryk Mikołaj GóreckiMikołaj Henryk GóreckiГурецкіへンリク・ミコワイ・グレツキグレツキ + +216140Maurice RavelJoseph-Maurice RavelFrench composer, pianist and conductor, born March 7, 1875 in Ciboure, France, died: December 28, 1937 in Paris, France. + +He is often associated with impressionism along with his elder contemporary Claude Debussy, although both composers rejected the term. +In his piano compositions you can find harpsichord style ideas, references to the Baroque, impressionist procedures and reminiscences of romantic pianism. +His music is characterized by a refined timbre and harmonic research; even if its layered and dissonant harmonic structures still remain in the tonal sphere, the traditional harmonic relationships are brought to an extreme tension (particularly in the last works). +His orchestral compositions are detached from the Germanic symphonic tradition, in these works the rhythmic and timbral elements are highlighted as well as themes inspired by Spanish folklore can be found. +Ravel's entire production, from the youthful and brilliant "Quartet for strings" (1902-1903) to the "Piano Concerto for the left hand" of 1931, is a succession of precious works that are to be considered among the masterpieces of the music of twentieth century + +In the 1920s and 1930s Ravel was internationally regarded as France's greatest living composer.Needs Votehttps://en.wikipedia.org/wiki/Maurice_Ravelhttps://www.britannica.com/biography/Maurice-Ravelhttps://www.biography.com/musician/maurice-ravelhttps://dezede.org/individus/id/437https://www.treccani.it/enciclopedia/maurice-ravelhttps://www.allmusic.com/artist/maurice-ravel-mn0000932757Joseph Maurice RavelJoseph-Maurice RavelM RavelM'aurice RavelM. RavelM. J. RavelM. RavalM. RavelM. RavelisM. RavēlssM. RevelM.J. RavelM.RavelM.ラヴェルMaurice J. RavelMaurice Joseph RavelMaurice RavelaMaurice RavélMauricel RavelMauricio RavelMaurizio RavelMoris RavelMoriss RavelsMoriss RavēlsMôrisse RavelleRauelRavekRavelRavel M.Ravel MauriceRavel Maurice JosephRavel,Ravel, M.Ravel, MauriceRavelagRavelisRavellRavélRevelWeinbergerravelΡαβέλЖозеф-Морис РавелМ. РавелМ. РавельМ.РавелЬМ.РавельМори́с Раве́льМорис РавелМорис РавельМориц РавельРавельРавель Морисמוריס ראוולモーリス・ラヴェルモーリス・ラヴェルモールス・ラヴェルラベルラヴェル拉威爾라벨Orchestre Maurice Ravel + +216141Arvo PärtArvo PärtBorn 11 September 1935 in Paide (Estonia). +Married to [a2988506]. + +Arvo Pärt might be considered as the main composer of contemporary sacred music. He is strongly influenced by the minimalist movement & Gregorian chant. +In 1958, he entered at the Tallinn Conservatoire & he became famous through USSR with his composition 'Our Garden'. At the beginning of the seventies, he began to use serialism in his works but he stopped. An interest for Gregorian chant & medieval music then brought a new dimension to his music. Mystic, restful & emotional might be some adjectives to describe his compositions. He is one of the most important composers of 'mystical minimalist movement' with [a=John Tavener] & [a216138].Needs Votehttps://www.arvopart.ee/https://www.famouscomposers.net/arvo-parthttps://en.wikipedia.org/wiki/Arvo_P%C3%A4rt,A. PaertA. PartA. PärtA.PartArvoArvo PartArwo PjartAvo PaertAvo PartAvo PärtPartPärtPärt,Pärt, A.Pärt:А. ПяртАрво Пяртアルヴォ•ペルトアルヴォ・ペルトアルヴォ・ペルトペルト + +216294Doris DayDoris Mary Ann KappelhoffAmerican singer, actress and dancer, born April 3, 1922 in Cincinnati, Ohio, USA; died May 13, 2019 in Carmel Valley, California aged 97. + +She had hits with [a=Les Brown] in the 1940's as a vocalist, started acting in 1948, after which she balanced her movie career with her singing quite evenly, until the 1960's. She mostly recorded for the Columbia label. Always an animal lover, after retiring from show business she dedicated her life to them, founding the Doris Day Animal Foundation. + +Mother of [a274192].Needs Votehttps://www.dorisday.net/https://en.wikipedia.org/wiki/Doris_DayD. DayD.DayDo Ris Day'sDoris-DayDorris DayMiss Doris DayД. ДейДорис ДейДорис дейドリス・デイAnnie Oakley (3)Bob Crosby And His OrchestraDoris Day And Her Country Cousins + +216498Charlie RouseCharles RouseAmerican jazz tenor saxophonist and flutist +Born April 6, 1924 in Washington, D.C., died November 30, 1988 in Seattle, WashingtonNeeds Votehttp://en.wikipedia.org/wiki/Charlie_Rousehttp://www.bluenote.com/artist/charlie-rouse/https://charlierouse.bandcamp.com/https://jazzprofiles.blogspot.com/2017/04/charlie-rouse-creative-force-on-tenor.htmlhttps://www.allmusic.com/artist/charlie-rouse-mn0000176387C. RouseCha-Rou Inc.Charles RauseCharles RouseCharley RouseRouseЧарли Роусチャーリー・ラウズCount Basie OrchestraThe Thelonious Monk QuartetFats Navarro QuintetThe Thelonious Monk QuintetThe Tadd Dameron SextetThe Gildo Mahones QuartetBenny Carter And His OrchestraLeo Parker's All StarsClifford Brown SextetHoward McGhee SextetThe Art Farmer SeptetThe Charlie Rouse BandThe Thelonious Monk OrchestraThe Jazz ModesThe Dave Bailey SextetMal Waldron QuintetCount Basie OctetCharlie Rouse QuintetSphere (16)Duke Jordan QuintetThelonious Monk NonetOscar Pettiford's QuintetBennie Green SextetThe Herbie Mann SextetThe Charlie Rouse QuartetFats Navarro And His BandThe Rouse-Watkins Combo + +217232Bernie TaupinBernard John TaupinEnglish lyricist, born 22 May 1950 in Ruskington, East Kesteven Rural District, UK, well known for his songwriting with [a=Elton John]. +Please use the entry [a825268] when they're credited together. However, for songwriting credits with other co-writers they should be split. +Needs Votehttps://www.instagram.com/bernietaupinofficialhttps://en.wikipedia.org/wiki/Bernie_TaupinB TaupinB, TaupinB. KeupinB. TanpinB. TapinB. TaubinB. TaupinB. TaupinsB. TraupinB. TsupinB. taupinB.TaupinBermic TaupinBernard J.P. TaupinBernard JP TaupinBernard TaupinBernd TaupinBernhard J. P. TaupinBernieBernie TaupunBerny TaupinBornie TaupinC. BlancheD. TaupinJ. TaupinR. TaupinSkeeter KiseT. TaupinTampinTauphinTaupinTaupin, B.Taupin, Bernard JPTaupin, BernieToots TaupinTraupinБ. Топинברני טופיןברני טרפיןטרפיןCarte BlancheOnions (2)The Man (13)The Kid (39)Elton John & Bernie TaupinAnn Orson & Carte BlancheFarm Dogs + +217242Clark TerryClark Virgil Terry Jr.American jazz trumpeter, flugelhornist, vocalist, composer and bandleader; born December 14, 1920, St. Louis, Missouri, USA, died February 21, 2015, Pine Bluff, Arkansas, USA + +He worked with both [a145262] and [a145257]. He was a major influence on [a=Miles Davis] and worked with luminaries such as [a=Billie Holiday] and [a=Ella Fitzgerald], among many others. He was also an innovator, with the ability to use circular breathing for extended solos and alternating between both horns, with one in each hand, playing ambidextrously. Awarded a lifetime achievement Grammy in 2010.Needs Votehttp://www.clarkterry.com/http://en.wikipedia.org/wiki/Clark_Terryhttps://www.arts.gov/honors/jazz/clark-terryhttps://adp.library.ucsb.edu/names/346614C. TerryC.TerryCl. TerryClarck TerryClark Terry And His FriendsClark Terry The Legendary TrumpeterClarke TerryFerryMister Clark TerryMr. Clark TerryTerryTerry ClarkTerry ClarkeК. ТерриК. ТэрриКларк Терриクラーク・テリーQuincy Jones And His OrchestraGil Evans And His OrchestraCount Basie OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraDuke Ellington And His OrchestraThe Thelonious Monk QuintetTony Scott And His OrchestraThe Duke Ellington OrchestraOliver Nelson And His OrchestraClifford Brown All StarsCount Basie SextetRay Brown All-Star Big BandMilt Jackson OrchestraMundell Lowe And His All StarsThe Trumpet KingsJohnny Hodges And His OrchestraGerry Mulligan & The Concert Jazz BandMilt Jackson And Big BrassJames Williams SextetThe Thelonious Monk OrchestraWoody Herman And The Swingin' HerdNinapinta And His Bongos And CongasClark Terry SextetClark Terry All Stars BandThe Dave Bailey SextetThe JazztetCount Basie OctetClark Terry QuartetCannonball Adderley And His OrchestraClark Terry QuintetClark Terry And His Jolly GiantsDuke Ellington's SpacemenArt Farmer And His OrchestraThe Quincy Jones Big BandBob Brookmeyer And His OrchestraClark Terry Big BandClark Terry / Bob Brookmeyer QuintetColeman Hawkins / Clark Terry QuintetThe New York Jazz QuintetThelonious Monk NonetThe Clark Terry FiveThe Tubby Hayes SextetClark Terry's Big Bad BandThe Riverside Jazz StarsDuke Ellington All Star Road BandThe Kenny Burrell OctetThe Blue Mitchell OrchestraSam Jones & Co.Frank Mantooth Jazz OrchestraB. P. Convention Big BandAll Star Big BandAl Caiola And The Nile River BoysClark Terry And His OrchestraThe Clark Terry SpacemenThe Ellington All-Stars Without DukeCecil Taylor All StarsClark Terry SeptetClark Terry - Ernie Wilkins QuintetJoe Williams & FriendsPaul Gonsalves - Clark Terry QuintetJohnny Hodges & His Big BandThe Golden Horns (2)Louis Bellson's Just Jazz All StarsJesper Thilo/Clark Terry QuintetThe Basie AlumniThe Dave Glasser Clark Terry Barry Harris ProjectDinah Washington & The All-StarsThe Red Holloway/Clark Terry Sextet + +218045Roland KirkRonald Theodore KirkAmerican jazz multi-instrumentalist, composer, arranger and bandleader +Later know as Rahsaan Roland Kirk + +Born on August 7, 1935 in Columbus, Ohio, USA, died on December 5, 1977 in Bloomington, Indiana, USA (of a stroke) + +He was best known for being a blind jazz saxophonist who could play more than one wind instrument at once. Kirk played a number of musical instruments, mainly various saxophones, clarinets and flutes. His main instruments were tenor saxophone and two obscure saxophones: the stritch and the manzello. Kirk modified these instruments himself to accommodate his simultaneous playing technique. The idea of playing more than one saxophone at the same time occurred to him in a dream and he set out to make it a reality. Around 1970 he added "Rahsaan" to his name after hearing it in a dream. He is also noted for his circular breathing technique and was reportedly able to sustain a note for over an hour.Needs Votehttps://en.wikipedia.org/wiki/Rahsaan_Roland_Kirk"Rahsaan" Roland Kirk"Rashaan" Roland Kirk'Rahsaan' Roland Kirk(Rahsaan) Roland KirkKIrkKirkR KirkR. KirkR. R. KirkR. Roland KirkR.KirkR.R. KirkR.R.KirkRaahsan Roland KirkRaashan Roland KirkRahaan Roland KirkRahassan Roland KirkRahsaan R. KirkRahsaan Rolad KirkRahsaan RolandRahsaan Roland KirkRahsaan Roland T. KirkRahsaan Ronald KirkRahsan Roland KirkRahsann Roland KirkRahssan Roland KirkRasaan Roland KirkRashaan Roland KirkRashan Roland KirkRashsaan Roland KirkRhaasan Roland KirkRhasaan Roland KirkRolandRoland R. KirkRoland Rashid KirkRoland Rshid KirkRoland Vertigo KirkRonald Theodore "Roland" KirkRonald Theodore KirkTheoshis TannisMartin BanksGil Evans And His OrchestraTubby Hayes And The All StarsCharles Mingus Jazz WorkshopRahsaan Roland Kirk & The Vibration SocietyRoy Haynes QuartetThe Roland Kirk QuartetThe Quincy Jones Big BandRoland Kirk SextetThe Roland Kirk Quintet + +218046Junior ManceJulian Clifford Mance, Jr.American jazz pianist and composer. Born October 10, 1928 - Evanston, Illinois, USA. Died January 16, 2021 in New York, New York, USA. + +Needs Votehttps://www.imdb.com/name/nm1631237/https://en.wikipedia.org/wiki/Junior_ManceJ. ManceJ.ManceJr. ManceJulian "Junior" ManceJulian C. Mance JrJulian C. Mance, Jr.Julian Clifford "Jumior" Mance, Jr.Julian Clifford "Junior" Mance, Jr.Julian ManceJulian Mance Jr.Junio ManceJunior Mance And His Swinging PianoJuniur ManceManceMance Jr.Дж. Мэнсジュニア・マンスJunior Mance TrioCannonball Adderley SextetThe Cannonball Adderley QuintetDizzy Gillespie QuintetSonny Stitt QuartetSonny Stitt BandLeo Parker's All StarsThe Lester Young SextetGene Ammons And His OrchestraLester Young And His BandClifford Brown All StarsThe Johnny Griffin QuartetWilbur Ware QuintetGene Ammons SextetThe Ken Peplowski QuintetThe Eddie Davis-Johnny Griffin QuintetBennie Green QuintetJoe Williams & FriendsPaul Gonsalves - Clark Terry QuintetGene Ammons And His BandVirgil Gonsalves Big BandJunior Mance QuintetThe Floating Jazz Festival TrioRed Holloway QuintetDinah Washington & The All-StarsGene Ammons - Sonny Stitt SeptetJimmy Dale Band + +218417Andy WhitbyAndy WhitbyHard Dance Music DJ, producer & promoter, from Peterborough, UK. +Ran [l=AWSum] + sublabels from 2007 to 2013, and then label/brand [l=HARD (2)] alongside his wife [a=Cally Gage] ever since. +Also runs [l=Bounce Heaven Digital].Needs Votehttp://andywhitby.com/https://www.facebook.com/djandywhitbyhttps://soundcloud.com/djandywhitbyhttps://myspace.com/djandywhitbyhttps://twitter.com/DJANDYWHITBYhttps://www.youtube.com/DJAndyWhitbyhttps://www.instagram.com/djandywhitby/https://djandywhitby.tumblr.com/A WhitbyA. WhitbyA.WhitbyAndrew WhitbyAndy Whitby Smash UpAndyWhitbySmash UpWhitbyWhitby Smash UpMonday Never Comes + +218733Grant KearneyA&R Manager at Universal Music, New Zealand who was headed up the dance music division. Also a DJ known as Grant 'Sample G' KearneyNeeds Votehttp://www.myspace.com/samplegeehttps://www.facebook.com/samplegeeG. KearneySample GeeSample Gee ProjectZanderCyprianChain Gang (14) + +218974Jimmy Johnson (2)James Leroy Johnson, Jr.American drummer and percussionist, born on January 20, 1930 in Philadelphia, Pennsylvania. +Best known for his work with Duke Ellington And His Orchestra (1959-1963), then became a studio musician in New York where he has performed with The Sun Ra Arkestra, Percy Faith, George Benson, Ben E. King, Jimmy Castor, Mongo Santamaria, Yusef Lateef, Carly Simon and many others. +Needs Votehttps://en.everybodywiki.com/James_Johnson_Jr._(jazz_drummer)James JohnsonJames Johnson. Jr.James O. JohnsonJim JohnsonJimhimi JohnsonJimhmi JohnsonJimmhi JohnsonJimmi JohnsonJimmi JohnsunJimmie JohnsonJimmy Johnson JrJimmy Johnson Jr.Jimmy Johnson jr.Jimmy Johnson, JrJimmy Johnson, Jr.JohnsonД. ДжонсонДжимми ДжонсонPapa FunkDuke Ellington And His OrchestraQuincy Jones' All Star Big BandThe Johnny Griffin OrchestraThe Nite RidersWalt Dickerson TrioThe Sun Ra ArkestraWalt Dickerson QuartetThe Quincy Jones Big BandThe Grant Geissman Quintet + +219565Luigi NonoBorn: January 29, 1924 (Venice, Italy) +Died: May 08, 1990 (Venice, Italy) + +Luigi Nono was an Italian avant-garde composer of classical music and remains one of the most prominent composers of the 20th century. +He studied with [a1415464] at the Venice Conservatory (1941-5) and with [a119083] and [a706861], both of whom orientated him towards 12-note serialism (he married [a465983]'s daughter Nuria in 1955). His avant-garde partisanship was inseparable from a commitment to socialism, twin aspects of a revolt against bourgeois culture: hence his avoidance of normal concert genres in favour of opera and electronic music, his frequent recourse to political texts and his work in bringing music to factories. His works include the operas Intolleranza 1960 (1961) and Al gran sole carico d'amore (1975), the cantata Il canto sospeso (1956), orchestral works and tape pieces. Much of his music of the 1950's and 1960's has a fervent lyricism; later works tended to be more pessimistic (Ein Gespenst geht um in der Welt, 1971).Needs Votehttps://www.luiginono.it/https://en.wikipedia.org/wiki/Luigi_Nonohttps://www.treccani.it/enciclopedia/luigi-nono_%28Dizionario-Biografico%29/https://www.theguardian.com/music/tomserviceblog/2012/nov/26/luigi-nono-contemporary-music-guideL. NonoNonoЛуиджи Ноно + +219999Ricky FataarRikki FataarSouth African multi-instrumentalist of Malay descent, who has performed as both a drummer, and a guitarist. He was born September 5, 1952, Durban, South Africa. +He was a member of [a=The Rutles] as [a=Stig O'Hara].Needs Votehttps://en.wikipedia.org/wiki/Ricky_Fataarhttps://www.imdb.com/name/nm0268813/FataarFataerFatearR FataarR. FataarR. FattaarR.FataarRe'chard FataarRichard FataarRicki FataaRicki FataarRickie FataarRickyRicky "Flaco" FataarRicky "Stig" FataarRicky FatarRicky FatarrRicky FattarRicky FelaarRieleyRikki FataarStig O'HaraThe Beach BoysThe RutlesThe Monitors (2)The Bump BandThe Flames (6)The Hard Regulators + +220594Jean-Luc PontyJean-Luc PontyFrench jazz & rock musician (violin and keyboards) and composer. +Born 29 September 1942 in Avranches, France. Father of [a=Clara Ponty].Needs Votehttps://www.ponty.com/https://www.facebook.com/jeanlucponty33https://www.progarchives.com/artist.asp?id=2094https://en.wikipedia.org/wiki/Jean-Luc_Pontyhttps://www.youtube.com/channel/UCosHpDl_JsJRhzIhv79ItZghttps://www.allmusic.com/artist/jean-luc-ponty-mn0000228299J-L PontyJ. L. PontyJ. Luc PontyJ. Luc. PontyJ.-L. PontyJ.-Luc PontyJ.. L. PontyJ.L. PontyJ.L.PontyJL PontyJL. PontyJean Luc P.Jean Luc PontiJean Luc PontyJean Luc-PontyJean-Luc PintyJean-Luc Ponty With OrchestraJon-Luc PontyLuc PontyPontyЖ.-Л. ПонтиЖак ПонтиЖан-Люк Понтиז'אן לוק פונטיז'אן לוק-פונטיジャン・リュック・ポンティジャン=リュック・ポンティReturn To ForeverMahavishnu OrchestraThe MothersGerald Wilson OrchestraJean-Luc Ponty QuartetJef Gilson Big BandWolfgang Dauner-SeptettGiorgio Gaslini EnsembleEuropean Jazz All StarsJean-Luc Ponty "Experience"Trio HLPGeorge Gruntz SextettAndersonPonty BandJean-Luc Ponty & His Band + +220728Marc-Olivier DupinFrench composer.Needs VoteDupinM.O. DupinMarc Olivier DupinMarc-Oliver DupinOlivier Dupin + +220884Dave OwensDave Owens' DJ career took off by the turn of the millennium and over the last few years he has graced the decks at clubbing institutions such as Insomniacz, Housework, Insekt, Byte, Ultim-8, Incisions, Hard Up North, Out of Order, Toast, Housewives Choice, Forbidden and he also held a residency at PureFilth in Manchester. + +Dave's productions are very much at the hard end of the dance spectrum with releases on some of the scene's toughest Hard House & NRG labels. He works closely with [a=Nik Denton], keeping [b]Toolbox Music[/b] in top shape, as well as manage the [l=Toolbox Recordings] sub-label, [l=Hammerheads] and [l=Turtle Dog Digital]. +CorrectD. OwensD.OwensDaveDave "Fierce" OwensCurve PusherbasewareD.F.O.GenkeiTdogPlas VegasOMFG (4)Charlie WaxDiscostep SonicsRumrunnersAutomaton (8)MunkjackImaginary ForcesKumiteDoafEvad KnarfSecond Dimension (3)Pierce & FierceA.D.O.M.Kick Ass Phun Kidz + +220886Ben StevensBenjamin StevensHard House DJ & producer from Manchester, UK. +Founded his own label [l=Fireball Recordings] in 2007 and runs the Vicious Circle Recordings label. + +In 2012 he took over running the digital download store Toolbox Digital.Needs Votehttps://www.facebook.com/BenStevensDJhttps://soundcloud.com/benstevenshttps://myspace.com/benstevensdjB StevensB. StevensB.StevensStevensHotwire (3)Generate (4)A vs BTrance-Pennine ExpressThird Degree GurnsThe Freak Brothers (3)3 Shits On A Sofa + +221282EnermaticCorrectEnegmaticBeyond UnrealEdwin van de WitteRonald Vink + +221852Frank ThomasFranc CombèsFrench lyricist and producer (born in 1936, Montpellier, France and died on January 20, 2017 in Paris). Long time collaborator of [a=Jean-Michel Rivat]. + +For the Walt Disney animator and dixieland musician, see [a=Frank Thomas (2)]. +Needs Votehttp://fr.wikipedia.org/wiki/Frank_Thomas_%28parolier%29B. CombesE. ThomasF .ThomasF ThomasF. R. ThomasF. ThomasF. ThomlasF. TomasF.T. ThomasF.ThomasFabien Henri ThomasFanck ThomasFr. ThomasFranc CombesFranck ThomasFrankFrank. ThomasP. ThomasR. ThomasS. ThomasT.T. ThomasThimasThomasThomas FranckThonas + +222145Kim BullardKim BullardKim Bullard, born in Atlanta, Georgia, is an keyboardist, synthesizer player, singer, producer, arranger and programmer.Needs Votehttps://en.wikipedia.org/wiki/Kim_BullardB. Jeffrey KimBullardJeffrey BullardJeffrey Kim BullardK. BullardK.B.K.BullardKimKim BallardKim BollardStefan GalfasPoco (3)Chopper (15) + +222583Lyle MaysLyle David MaysLyle Mays (November 27, 1953 - February 10, 2020) was an American jazz pianist from Wausaukee, Wisconsin. He is best known for his work with guitarist Pat Metheny as a member of the [a=Pat Metheny Group], in which he collaborated with Metheny in composition and provided arrangements, orchestration and - most remarkably - the complex harmonic and metric backbone of the group's musical signature.Needs Votehttp://en.wikipedia.org/wiki/Lyle_Mayshttps://www.facebook.com/LyleMays/L. MaysL.D. MaysL.MaysLyleLyle D. MaysLyle David MaysLyle MayesLyle O MaysLylo MaysMaysMump O Maysライル・メイズPat Metheny GroupWoody Herman And His OrchestraThe Woody Herman Big BandThe University Of Wisconsin Eau Claire Jazz Ensemble ILyle Mays Quartet1:00 O'Clock Lab BandLyle Mays TrioLyle Mays QuintetLyle Mays Sextet + +223026Dorthe DreierDanish violist and vocalist, born 1966 in Sønderborg, Denmark.Needs VoteDorte DreierDorthe DreirDorthe DrejerDorthe DreyerOslo Filharmoniske Orkester + +223029Vegard JohnsenNorwegian violinist, born 1966 in Hamar, Norway.Needs VoteVegar JohnsenVegard LarsenOslo Filharmoniske OrkesterOslo Session String Quartet + +223030Jan Olav MartinsenJan-Olav MartinsenNorwegian hornist, born 1964 in Fredrikstad, Norway.Needs VoteJan Olav MarthinsenJan-Olav MartinsenOslo Filharmoniske OrkesterOslo Wind EnsembleBorealis (3) + +223957Gil AskeyGilbert Alexander AskeyAmerican jazz trumpeter, composer, producer, arranger and musical director born March 9, 1925 in Austin, Texas and died April 9, 2014 in Melbourne, Australia.Needs Votehttps://adp.library.ucsb.edu/names/111571https://repertoire.bmi.com/Search/Search?Main_Search_Text=Gil%20Askey&Main_Search=Writer%2FComposer&Search_Type=all&View_Count=0&Page_Number=0AskeyG. AskeyG.AskeyGil AskewGil AskleyGilbert Alexander AskeyGilbert AskeyGilbet A AskeyBuddy Johnson And His OrchestraLucky Thompson And His Lucky SevenThe Gil Askey Orchestra + +224329André PrevinAndré George Previn (né Andreas Ludwig Priwin)American pianist, conductor, and composer in multiple genres born April 6, 1929 in Berlin, Germany and died February 28, 2019 in Manhattan, New York City, NY, USA (aged 89). + +Taught classical piano repertoire by his father who was a music teacher, he became a pupil at Berlin's Hochschule für Musik (Conservatory) from the age of six but, because of his Russian-Jewish background, he was forced out. Via Paris, his family settled in the USA in 1939 (naturalized 1943). Became involved in the film industry at MGM from 1946 while still a high school student. He became interested in performing jazz after hearing pianist [a265634] at [l1508207] and recorded for various labels starting in 1946 and with [l33660] during the 1950s. He was tutored around 1952 by conductor [a406278] after being drafted into the military. Upon his discharge he returned to MGM and eventually received four Oscars (nominated for three alone in 1961), ultimately functioning as composer/arranger/conductor. Continuing to work intermittently in films and on new musicals, he began In the next decade to concentrate on a classical music career. Appointed as principal conductor of the [a=London Symphony Orchestra] (LSO, 1968 to 1979), he appeared in 1971 on the BBC's "[a506142] Christmas Show" (a well-known comic encounter in the UK), hosted "André Previn’s Music Night" (1971-72) and was principal conductor and chief conductor of the [a341104] (1985-92). From 1976 to 1984, he was music director of the [a1043284], leading to programs on PBS such as "Previn and the Pittsburgh" (1977-80), and music director of [a835190] (1985-89). Previn did receive some critical hostility in his career for his mix of the popular and the serious, but "Guardian" critic [a1686770] praised him for his espousal of the work of English composers such as [a662168] (recording a complete cycle of his symphonies) and [a835730] and his playing of the piano works of [a95546] was well received. Late in his career, he composed two operas, "A Streetcar Named Desire" (1998) and "Brief Encounter" (2009). Won ten competitive Grammys (1958 to 2004) equally split between classical and other categories, and a lifetime achievement Grammy in 2010. Honorary UK knighthood (KBE) awarded in 1996. Great uncle (or possibly father's cousin) was [a1897190]. + +Married to: [a1629054] (1952-1957), [a708472] ([a502572], 1959-1969), [a280961] (1970-1979), Heather Hales Sneddon (1982-1999), [a834611] (2002-2006) +Father of [a4928288] (aka [a786196]) from his marriage to Bennett and (adopted) [a1797181] from his marriage to SneddonNeeds Votehttps://www.nytimes.com/2019/02/28/obituaries/andre-previn-dead.htmlhttps://www.theguardian.com/music/2019/feb/28/andre-previn-obituaryhttps://www.latimes.com/entertainment/arts/la-et-cm-andre-previn-los-angeles-20190228-story.htmlhttps://www.telegraph.co.uk/obituaries/2019/02/28/andre-previn-prodigiously-talented-conductor-pianist-composer/https://www.thetimes.com/uk/article/andre-previn-obituary-mb67cglf2https://www.pittsburghsymphony.org/pso_home/web/andre-previn-memorieshttps://web.archive.org/web/20030803204035/https://www.sonyclassical.com/artists/previn/https://www.sonyclassical.com/artists/artist-details/andre-previnhttps://www.imdb.com/name/nm0006238/https://adp.library.ucsb.edu/index.php/mastertalent/detail/338383/Previn_Andrehttps://www.britannica.com/biography/Andre-Previnhttps://www.famouscomposers.net/andre-previnhttps://jazztimes.com/features/tributes-and-obituaries/john-koenig-remembers-andre-previn/https://jazztimes.com/features/tributes-and-obituaries/remembering-andre-previn-1929-2019/https://en.wikipedia.org/wiki/Andr%C3%A9_PrevinA PrevinA.A. G. PrevinA. PervinA. PrevainA. Previn A. PrévinA.PrevinAnde-PrevienAnder PrevinAndrO PrevinAndreAndre G. PrevinAndre PrevinAndre PrévinAndre' PrevinAndrè PrevinAndré G. PrevinAndré Previn With VoicesAndré PrévinAndré Prévin, DirectionH. PravinP. PrevinPervinPrevinPrevin, APrevin, Andre G.PrévinSir Andre PrevinА. ПревинА. ПревэнАндре ПревинАндрэ ПреванАндрэ Превинアンドレ・プレヴィンArt FlickreiterThe Benny Goodman QuintetThe Swinging Bon VivantsPete Rugolo OrchestraAndré Previn And His OrchestraThe André Previn TrioOslo Filharmoniske OrkesterDave Pell OctetAndré Previn & His PalsShelly Manne & His FriendsAndré Previn QuartetLeonard Feather's West Coast StarsThe Sunset All StarsAndré Previn Ensemble + +224600Sam TownendSamuel TownendHouse, Hard house, techno producer & DJ. +Label manager @ [l4793]Needs Votehttps://soundcloud.com/djsamtownendhttps://twitter.com/djsamtownendhttps://www.facebook.com/djsamtownendhttps://www.instagram.com/djsamtownend/S. TownendS.TownendTownendUntidy DubsTidy DJsSam & DeanoAstrobassMaddox & TownendSwackTuff LondonTurbo Dubz + +225092Henry CosbyHenry R. CosbySongwriter, arranger and producer working mainly for [l=Motown], born May 5, 1928 in Detroit, Michigan - died January 22, 2002 in Detroit, Michigan. +Although he worked with many of the label's artists, from [a=The Supremes] to [a=The Temptations], he is best known for helming many of [a=Stevie Wonder]'s early hits, including "My Cherie Amour", "I Was Made to Love Her", and "Uptight (Everything's Alright)". He also co-wrote "Tears of a Clown", a #1 hit for [a=The Miracles]. Cosby was also a prominent member of [l=Motown]'s [a=The Funk Brothers] studio band, playing many of the familiar saxophone hooks on the label's hits. In 2006, Cosby was inducted into the Songwriters Hall of Fame. He was married to [a2355743]Needs Votehttp://www.songwritershalloffame.org/exhibits/C2337http://en.wikipedia.org/wiki/Henry_CosbyA. CrosbyB. CosbyC. FoskyCarlos CosbyCasbyCosbieCosbyCosby HenlyCosby HenryCoskeyCoskyCospyCostyCrosbyE. CosbyGosbyGrosbyH CoobyH CosbyH, CosbyH. CesbyH. CobsyH. CorbyH. CosbyH. CoskeyH. CospyH. CrosbyH.CosbyH.CrosbyHank CosbeyHank CosbyHank CrosbyHanry CosbyHenery CosbyHenery GordyHenri CosbyHenry "Hank" CosbyHenry 'Hank' CosbyHenry CobyHenry CospyHenry CrosbyHenry" Hank" CosbyHenty CosbyHunk CosbyP. CosbyAmunda (2)The Funk BrothersThe Clan + +225437Randall MillerJazz trombonist.CorrectArtie Shaw And His Orchestra + +225484Michael SuttonAmerican violinist, born in Minneapolis, Minnesota + +[b]NOTE: For the soul funk songwriter - producer of [l=Motown] and [a=Mike & Brenda Sutton] fame, please use [a=Michael B. Sutton][/b] +CorrectMichael SattonNew World Symphony OrchestraMinnesota OrchestraThe Manhattan Chamber Orchestra + +225500Simon LimbrickPercussionist. + +Simon Limbrick's involvement in music embraces performance, composing and education. + +He was a member of the cult systems orchestra The Lost Jockey and Man Jumping, recording for EG Editions and creating scores for leading dance companies, Second Stride, London Contemporary Dance, Rosemary Lee and Sue MacLennan. He has been in demand as a percussionist performing all over the world with the Nash Ensemble, Birmingham Contemporary Music Group, Endymion Ensemble, Composers' Ensemble and Fibonacci Sequence as well as recording with artists such as Alabama3, Gavin Bryars Pete Lockett and for Blue Note Records. He has been guest principal with the LSO and worked under conductors, Leonard Bernstein, Oliver Knussen, Simon Rattle and Tom Ades. He has featured on film and television including documentaries about Steve Reich and Kenneth MacMillan's award winning Judas Tree.Compositions created for him include works by Javier Alvarez, Brian Elias (Kenneth MacMillan's last ballet The Judas Tree), Vic Hoyland and Andrew Poppy. He has performed the world-premieres of solo pieces by James Dillon, Frederic Rzewski , Claude Vivier, Philip Cashian, Thea Musgrave, Harry de Wit, Howard Skempton, Michael Wolters and Ed Kelly. His solo performances have been broadcast by the BBC, RAI, Radio France, Dutch TV and radio.Needs Votehttps://marimbo.com/LimbrickS LimbrickMan JumpingThe Lost JockeyThe Nash EnsembleBirmingham Contemporary Music GroupApartment HouseNetwork Of Sparks + +225777Owen GrayBorn July 5, 1939 in Jamaica. He passed away July 20, 2025Needs Votehttps://en.wikipedia.org/wiki/Owen_Grayhttps://garagehangover.com/owen-gray-soul-years/G.OwenGrayGreyGrey OwenO GrayO GreyO, GrayO. GrayO. GreyO.GrayOmenOwenOwen GaeyOwen GrayxOwen GreyGeorge Anthony (3)George & TonyThe ExoticsDuke Reid GroupElki & OwenOwen & MillieThe Clan (5)The Krew (2)Owen Gray And His Big BrotherOwen Gray With The Jets + +225965Bob GaudioRobert John Francis GaudioAmerican doo-wop singer, songwriter and record producer. +Born : November 17, 1942 in The Bronx, New York. + +Bob was a member (as tenor vocal and keyboards) of the doo-wop group of "The Four Seasons".Needs Votehttp://en.wikipedia.org/wiki/Bob_GaudioB GaudioB. ClaudioB. GandioB. GaudiaB. GaudieB. GaudinoB. GaudioB. GaupioB. GoudioB. GuadioB. GudioB. GuedioB.G.B.GaudioB.GuedioBobBob CaudieBob ClaudioBob GandiaBob GandioBob GaudiaBob Gaudio For Mike Curb ProductionsBob GaudoBob GeudioBob GoudoBob GuadioBob GuedioBobert GaudioCaudioConteD. GaudioG. GaudioGadioGandecGandioGardioGaudiGaudi B.GaudieGaudinGaudioGaudio B.Gaudio BobGaudio, B.GaudisGauidoGlaudioGordioGoudieGoudioGraudoGuadioGuedioGuidioR, GaudioR. GaudiaR. GaudioR. GavdisR.GaudioRob GaudioRobert GandioRobert GaudinoRobert GaudioRobert GordioRobob Gaudioゴーディオボブ・ガーディオボブ・ゴーディオRobert John FrancisThe Four SeasonsManSoundThe Royal TeensThe Wonder Who?Bob Crewe & Bob GaudioThe Four Lovers + +226015Merit OstermannGerman mezzo sopranoNeeds VoteMerid OstermannMerit OstermanChor Des Bayerischen RundfunksMunich Jazz OrchestraNada (61) + +226192Hans van HemertHans Christiaan Willem van HemertSinger, producer and songwriter, born 7 April 1945 in Voorburg, Netherlands. Died 7 October, 2024 in Blaricum, Netherlands. +Active since the mid-1960s, he occasionally recorded as a solo artist but mostly worked as a producer with artists such as [a=Q65], [a=Mouth & MacNeal], [a=American Gypsy], [a=Luv'] and many others. His biggest success as a songwriter is probably [a=Kamahl]'s [i]Elephant Song[/i] (1975). +Son of [a=Willy van Hemert], brother of [a=Ruud van Hemert] and [a6489302]. +See also label: [l=Hans van Hemert Productions BV].Needs Votehttps://en.wikipedia.org/wiki/Hans_van_Hemerthttps://www.imdb.com/name/nm0375981/A. van HermetE. v. HemertE. van HemertH van HemertH. C. W. van HemertH. Chr. W. van HemertH. HemertH. M. van HemertH. V HemertH. V. HemertH. Van HedmertH. Van HeevertH. Van HemertH. Van HermertH. Van HermetH. VanHemertH. Ve HemertH. Von HemertH. W. van HemertH. v HemertH. v. HemertH. v. HaemertH. v. HemerH. v. HemertH. v. MemertH. van HeemertH. van HemerH. van HemertH. van HemmertH. van HermeertH. van HermertH. van HermetH. vanHemertH. vanHermertH. vanHermetH. von HemertH.-Chr.-W van HemertH.V. HemertH.V.HemertH.Van HemertH.v. HemertH.v.HemertH.van HemertH.van HermertHane Van HemerHane van HemerHans Chr. van HemertHans HemertHans V. HemertHans V. HermertHans Van HeemertHans Van HemertHans v. HemertHans v. HemmertHans van HelmertHans van HemertHans van HemmertHans van HempertHans van HennertHans von HemertHans von HemmertHeemertHemartHemertJanschenJansenM. H. van HemertR. Van HemertV HemertV. HemertV. HermertV.HemertVan HammertVan HeemertVan HelmertVan HemartVan HemertVan HemetVan HemmertVan HermertVan Hermert,Van HermetVan NemertVon HemertW. H. van HemertW. van HemertW.H. van Hemertv. Hemertv. Hermertvan Hemertvan Hemert, Hansvan HemmertВан ХемърдХ. Ван ХемертХ. Ван ХимертХ. Вен ХимертХемпертхемпертPapazarroDavid Alexander (12)You And Me (2)A.N.Y.Janschen En JanschensThe Caps (5)De Melodia'sTrio ElastiekThe Phonogram Money Spenders + +226335Lionel BartLionel BegleiterBritish writer and composer of pop music and musicals. +Best known for creating the book, music and lyrics for the musical [i]Oliver![/i] (1960), he played an instrumental role in the 1960s birth of the British musical theatre scene after an era when American musicals had dominated the West End. He won Broadway's 1963 Tony Award as Best Composer and Lyricist for "Oliver!," a show for which he also received two other Tony nominations: as Best Author (Musical) and as author of book, music and lyrics as part of a Best Musical nomination. + +Born: August 1, 1930 in Stepney, London, England. +Died: April 3, 1999 in Acton, London, England.Needs Votehttps://en.wikipedia.org/wiki/Lionel_Barthttps://www.imdb.com/name/nm0058369/B. LionelBartBart L.Bart LionelBart.BratIonel BartL BartL. BartL. BertL. バートL.BartLeonel BartLional BartLionel B. BartLionel BertLionel HartLionel PartLionel “Black” BartLionel/BartLionell - BartLoinel BartR. BartRonald BartБартЛайонел БартバートJohn MaitlandOcher NebbishPhil C. FlingleTommy Steele And The Steelmen + +226389LobotomyzDavid CeratiCorrectL0b0t0myzLobotomizLobotomy IncBraindustHardstaticSpace RunnerTerbiumBazzdustT-BazzPsychic DisorderDavid CeratiDeep 6temAzazel (8)H.S.C.Gargamel (15)DJ Monark (2)Cod-XAgressivGeschäftsführer + +226431Robert ChetcutiRobert Bruce ChetcutiNeeds VoteBruce ChetcutiChecutiChetcutiChetcuttChetuciR ChetcutiR. Bruce / ChetcutiR. Bruce ChetcutiR. ChetcutiR.B. ChetcutiR.B.ChetcutiR.Bruce ChetcutiR.ChetcutiRobRob ChetcutiRobert "Tuesdays Child" ChetcutiRobert BruceRobert Bruce ChetcutiRobert Bruce ChetucciRobert ChetcuttiRobert ChetuctiManteseTuesdays ChildRhythm MastersUp & DownThe Dub MastersRhythmatic JunkiesBlue LagoonDisco DubbersR.M. ProjectBig Room GirlMaltese MassiveNew Age FunkstasThe SquadiesMasters Of Rhythm3rd DimensionGo > ZoR & SSouth Central (3)Rhythm RobbersCage Against The MachineWh0The Mutator + +226461Franz LisztFerenc LisztBorn: October 22, 1811, Doborján, Austria-Hungary (present-day Raiding, Austria). +Died: July 31, 1886, Bayreuth, Germany. + +Franz Liszt was a Hungarian composer, virtuoso pianist, conductor, music teacher, arranger, organist, philanthropist, author, nationalist and a Franciscan tertiary. He was a renowned performer throughout Europe, noted especially for his showmanship and great skill with the piano. To this day, he is considered by some to have been the greatest pianist in history. Liszt's musical invention went into territories which were then almost unexplored, in particular as regards harmonic research, as emerges from the late piano works, which led him to anticipate fragments of harmonies from the early twentieth century. His preference for program music is testified by the numerous symphonic poems he composed. Father-in-law to [a=Richard Wagner]. Needs Votehttps://en.wikipedia.org/wiki/Franz_Liszthttps://www.klassika.info/Komponisten/Liszt/index.htmlhttps://www.britannica.com/biography/Franz-Liszthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102432/Liszt_Franzhttps://musicbrainz.org/artist/2cd475bb-1abd-40c4-9904-6d4b691c752chttps://www.allmusic.com/artist/franz-liszt-mn0000742285(Liszt)D. P. LisztF ListF LisztF. LIsztF. LisatF. ListF. ListasF. ListsF. ListzF. LiszF. LisztF. LitsztF. LizstF. LiztF.ListF.LisztF.リストFerenc (Franz) LisztFerenc LisztFerenc LizstFerenc-LisztFerence LisztFerencs ListsFerencz (Franz) LisztFerencz LisztFerensas ListasFerenz LisztFr. ListasFr. LisztFr.LisztFranc ListFrancis ListsFranciszek ListFranciszek LisztFranckFrank LisztFrankz LisztFrans LisztFrant. LisztFrantz LisztFranx LisztFranz (Ferenc) LisztFranz LieztFranz ListFranz ListzFranz Liszt (1811-1886)Franz LitzFranz LizstFranz LiztFranz Von LisztFranz von LisztFriedrich LisztFérenc LisztL'Abbé LisztLISZT FerencLIsztLiaztListListasListzListz F.LisziLisztLiszt (Franz)Liszt F.Liszt FerencLiszt FerenczLiszt FerenzLiszt FranzLiszt P.d.Liszt, F.Liszt, FranzLiszt, after SchubertLiszt-SchubertLiszt-WagnerLitzLizstLizst FranzLiztLıstOrch. Liszttranscription by LisztΛιστЛистЛист Ф.Лист ФеренцФ. ЛистФ. ЛистФ. ЛистаФ.ЛистФ.ЛистаФеренц (Франц) ЛистФеренц ЛистФеренц ЛістФранц Листفرانز ليستفرانس لیستフランツ・リストフランツ・リストリスト李斯特 + +226585Mark SherryMark SherryTech-Trance veteran DJ, producer & remixer from Prestwick, Scotland, UK. +Played an important role in the rise of Dutch Tech Trance label [l=Detox Records] as in-house DJ, producer and A&R. +Launched his own digital label [l=Outburst Records (4)] and sister label [l=Techburst Records] in 2014. +Born: March 20, 1975Needs Votehttp://web.archive.org/web/20190718122232/http://www.marksherry.net/http://web.archive.org/web/20090322163732/http://www.marksherry.co.uk/http://linktr.ee/marksherryhttp://www.facebook.com/marksherrydjhttp://www.instagram.com/marksherry/http://twitter.com/marksherryhttp://myspace.com/marksherryoutbursthttp://web.archive.org/web/20111217120942/http://www.myspace.com/marksherryoutbursthttp://en.wikipedia.org/wiki/Mark_Sherryhttp://soundcloud.com/marksherryhttp://www.twitch.tv/marksherrydjhttp://www.youtube.com/marksherrydjM SherryM. SherrySherryOutburst (3)Dark SherryPublic DomainLovelifeCasio BrothersAsylum (12)SAS (8)Digital DropoutsPseudonym (6)Gentech (4)Thick As Thieves (8) + +227276Eseni DJStuart EadesNeeds VoteStuart Eades + +227875Krzysztof PendereckiKrzysztof Eugeniusz Penderecki Born November 23, 1933 in [url=https://pl.m.wikipedia.org/wiki/D%C4%99bica]Dębica[/url], Poland, died March 29, 2020 in Kraków. Polish composer and conductor. +He studied composition privately with [b]Franciszek Skołyszewski[/b] and then (1954–58) with [a1487539] and [a939496] at the [url=https://pl.m.wikipedia.org/wiki/Akademia_Muzyczna_im._Krzysztofa_Pendereckiego_w_Krakowie]Państwowa Wyższa Szkoła Muzyczna[/url] in Kraków. Later, he joined the staff of the school as a teacher of composition. His first major success came in 1959 when [url=https://www.youtube.com/watch?v=1tDcTCrB-Hs&list=RD1tDcTCrB-Hs&start_radio=1]"Strofy"[/url], [url=https://www.youtube.com/watch?v=XwHgSBJc3gU&list=RDXwHgSBJc3gU&start_radio=1]"Emanacje"[/url] and [url=https://www.youtube.com/watch?v=xqHSl8He28A&list=RDxqHSl8He28A&start_radio=1]"Psalmy Dawida"[/url] were awarded the top three prizes at a competition organized by the [url=https://pl.wikipedia.org/wiki/Związek_Kompozytorów_Polskich]Związek Kompozytorów Polskich[/url]. + +Soon afterwards he came to the attention of publisher [url=https://en.wikipedia.org/wiki/Hermann_Alexander_Moeck]Hermann Moeck[/url] and [a2447070], director of the music division at [url=https://www.discogs.com/artist/2649938-Südwestfunk-Baden-Baden]SWF[/url]. As the director of the [url=https://en.wikipedia.org/wiki/Donaueschingen_Festival]Donaueschingen Music Days[/url], Strobel commissioned several of Penderecki's works and Penderecki earned subsequently a reputation as one of the most innovative composers of his generation, especially for his experiments in notation, the perception of time, and extended instrumental techniques.Needs Votehttps://penderecki-center.pl/https://en.schott-music.com/shop/autoren/krzysztof-pendereckihttps://en.wikipedia.org/wiki/Krzysztof_Pendereckihttps://www.imdb.com/name/nm0671678/https://www.famouscomposers.net/krzysztof-pendereckihttps://ninateka.pl/kolekcje/en/three-composers/pendereckiC. PendereckiCrzisztof PendereckiK. PendereckiK. PendereckisK. PenderezkiK.PendereckiKristof PendereckiKrystof PendereckiKrysztof PendereckiKryzystok PendereckiKrzycztof PendereckiKrzystof PendereckiKrzysztov PendereckiPendereckiК. ПендерецкийКшиштоф Пендерецкийクシシュトフ・ペンデレツキペンデレツキ + +228061Neil AppealNeil J. WalkerCorrectJ. WalkerNeil Walker + +228852MC WhizzkidGordon MayRave MC, DJ, poducer & educator. + +Used to present on Dudley pirate Dimension FM.Needs Votewww.wzkd.co.ukMC Whizz KidMC WhizzkiddMC WizkiddMC WizzkidWZKDWhiz KidWhizkidWhizkiddWhizz KidWhizz-KidWhizzkidWizzkid + +228917Kenny ClarkeKenneth Clarke SpearmanAmerican jazz drummer +Born January 9, 1914 in Pittsburgh, Pennsylvania, USA, died January 26, 1985 in Paris, France (aged 71) +He was an early innovator of the bebop style of drumming and a founder member of the jazz group, [a254990]. A regular sideman for [l33726] in the mid-1950s, he lived and worked in Paris from 1956. + +Clarke converted to Islam in the late 1940s and used the name Liaquat Ali Salaam on [m1067334] and possibly other sessions at the time. However, from the 1950s onward, he returned to being billed as "Kenny Clarke" professionally, including on his 1950s Savoy Records albums, in the [a62066] during the 1960s, and up through his final albums in the 1980s, such as [r3102164].Needs Votehttps://en.wikipedia.org/wiki/Kenny_Clarkehttps://www.drummerworld.com/drummers/Kenny_Clarke.htmlhttps://www.britannica.com/biography/Kenny-Clarkehttps://www.imdb.com/name/nm0164858/https://musicians.allaboutjazz.com/kennyclarkehttps://www.bluenote.com/artist/kenny-clarke/https://rateyourmusic.com/artist/kenny_clarkehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103158/Clarke_Kennyhttps://www.digamericana.com/kenny-clarkeClarkClarkeJ. ClarkJ. ClarkeK ClarkeK. ClarkK. ClarkeK. S. ClarkeK. SpearmanK.C.K.ClarkeK.S. ClarkeKen ClarkKenneth ClarkKenneth ClarkeKenneth S. ClarkeKenneth Spearman ClarkeKennyKenny "Klook" ClarkeKenny (Klook) ClarkeKenny ClareKenny ClarkKenny DennisKenny Klook ClarkeKlook ClarkeM. ClarkeКенни Кларкケニー・クラークLiaquat Ali SalaamNathan Davis QuintetQuincy Jones And His OrchestraClarke-Boland Big BandThe Modern Jazz QuartetThe Miles Davis SextetThe Miles Davis QuintetMiles Davis All StarsThe Charlie Parker All-StarsThe Charlie Parker QuintetThe Cannonball Adderley QuintetMiles Davis And His OrchestraDizzy Gillespie And His OrchestraBillie Holiday And Her OrchestraThe Horace Silver QuintetThe Tadd Dameron SextetThe Bud Powell TrioDizzy Gillespie Big BandThe J.J. Johnson SextetCharlie Parker And His OrchestraTadd Dameron And His OrchestraDizzy Gillespie SextetStan Getz QuartetColeman Hawkins And His OrchestraSidney Bechet And His New Orleans FeetwarmersZoot Sims QuartetKenny Clarke's SextetLester Young QuintetCharles Mingus Jazz WorkshopThe Sahib Shihab QuintetThe Modern Jazz GiantsRay Bryant TrioThe Nathan Davis SextetThe Milt Jackson QuartetThe Kenny Clarke - Francy Boland SextetThe Miles Davis QuartetHank Jones TrioThe J.J. Johnson QuintetMilt Jackson QuintetTadd Dameron QuintetKenny Clarke TrioThe Milt Buckner TrioMiles Davis-Tadd Dameron QuintetSam Price TrioNat Adderley QuintetSidney Bechet & His All Star BandBe Bop BoysSonny Stitt All StarsKenny Clarke QuintetMcGhee-Navarro BoptetKenny Clarke And His CliqueKenny Clarke And His OrchestraSonny Rollins TrioThe Kenny Dorham QuintetSonny Stitt & The GiantsAl Haig TrioJacques Hélian Et Son OrchestreHenri Renaud Et Son OrchestreDexter Gordon QuartetArt Farmer QuintetKenny Clarke And His 52nd Street BoysKenny Clarke - Francy Boland OctetGeorge Wallington And His BandThe Johnny Griffin QuartetQuatuor Avec OrgueThe Jay And Kai QuintetGene Ammons SextetMartial Solal TrioEdgar Hayes And His OrchestraCharles Mingus OctetJohn Lewis And His OrchestraThe Oscar Pettiford QuartetThe Eddie Davis-Johnny Griffin QuintetThe Frank Foster QuintetJulius Watkins SextetTadd Dameron's Big TenThe Birdland StarsDusko Gojkovic QuintettThe Lou Bennett QuartetThe Trio (9)Kenny Clarke All StarsMichel De Villers Et Son QuintetteHubert Fol & His Be-Bop MinstrelsErnie Royal And His All StarsMilton Jackson And His New GroupHal Mitchell FourThe Lou Bennett & Kenny Clark Jazz ComboIdrees Sulieman QuintetThad Jones QuintetClark Terry SeptetEddie Bert QuartetKenny Clarke SeptetPierre Spiers Et Ses SolistesBuddy Johnson & His BandSidney Bechet SextetGil Fuller's ModernistsJazz Studio OneMr. Fats Sadi, His Vibes & His FriendsHank Mobley - Johnny Griffin QuintetJon Hendricks - Johnny Griffin GroupSacha Distel Et Son Ensemble"King David" And His Little Jazz FourArt Farmer Gigi Gryce QuintetStéphane Grappelly Et Son QuartetteJam Session (At Minton's - May 8, 1947)Jam Session (12)Ralph Sharon's All-Star SextetKenny Clarke-Martial Solal Sextet + +229174Bill JustisWilliam Everett Justis, Jr.American performer, composer, conductor and arranger. +Born October 14, 1927, Birmingham, Alabama. Died July 15, 1982, Nashville, Tennessee. +Needs Votehttps://repertoire.bmi.com/Search/Catalog?num=S3xPzfjm1V63ASMZml%252bOrA%253d%253d&cae=5UGHNlKG2SSd1c7c4WGfhQ%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Raunchy%22%2C%22Sub_Search_Text%22%3A%22Justis%22%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3A%22Writer%2FComposer%22%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dhttps://en.wikipedia.org/wiki/Bill_Justishttps://adp.library.ucsb.edu/names/324422.Justis, Jr.B. CurtisB. JusticeB. JustisB. Justis Jr.B.JustisBill JusstisBill JusticBill JusticeBill JustiesBill Justis Jr.Bill Justis, Jr.Bill JustusBilly JustisE JusticeE. Justice Jnr.E. Justis Jr.J. WilliamsJastisJusticJustic, Jr.JusticeJustice Jr.JustinJustisJustis Jnr.Justis JrJustis Jr.Justis, Jr.Justis, jr.JustiseJustissJustusK. JustisW. E. JusticeW. E. JustisW. E. Justis Jr.W. Justic, Jr.W. JustinW. JustisW. Justis, Jr.W.E. JusticeW.E. JustisW.E. Justis Jr.W.JustisWillam E Justis Jr.Willam JustisWilliam E. Justice Jnr.William E. JustisWilliam E. Justis JR.William E. Justis Jr.William E. Justis, Jr.William JusticeWilliam Justice, Jr.William JustisWilliam Justis Jr.William Justis, Jr.William JustissWilliam K. JustisWilliams E. Justis Jr.Willie E. JustisWm. E. Justis, Jr.ビル・ジャスティスBill EveretteThe Bill Justis OrchestraNashvilleCornbread And JerryThe Bill Justis ChorusThe Bill Justis ComboBill Justis BandBill Justis Dixieland Band & Chorus + +229195Del ShannonCharles Weedon WestoverRock & Roll musician, singer and songwriter, born on December 30, 1934 in Grand Rapids, Michigan, died on February 8, 1990 in his home in Santa Clarita, California. +His biggest Hit in 1961 "Runaway" was co-written by keyboard player Max Crook. The track is considered to be a legend using Shannon's voice that was paired with one of Crook's inventions the "Musitron" (a heavily modified Clavioline) which was an electric keyboard that pre-dated the Moog synthesizer by about three years. Similar to the sound of a Italian Farfisa keyboard sound, the "Musitron" created one of rock's most memorable instrumental breaks. He became is known as a world-wide singer, guitarist and songwriter during the 1960's. During the 1980's he turned to Country & Western and also worked with [a=Tom Petty] and [a=Jeff Lynne]. +Inducted into Rock And Roll Hall of Fame in 1999. + +Needs Votehttps://www.delshannon.com/https://myspace.com/delshannon/https://rockhall.com/inductees/del-shannon/https://www.imdb.com/name/nm0788272/https://en.wikipedia.org/wiki/Del_Shannonhttp://countrydiscoghraphy2.blogspot.com/2015/08/del-shannon.htmlBrother Del ShannonC. WestoverChannonChanonCrook ShanonD ShannonD ShannondD'el ShannonD. ChannonD. ShannenD. ShannonD. Shannon/CookeD. ShanonD. SixmnonD.ShannonDale ShannonDe ShannonDel ShannanDel ShanonDel ShennonDel ShànnonDell ShamnonDell ShannonDelshannonSchannonShannonShannon CroockShannon DelShannon, DShannon, D.ShanonShnanonWestoverД. ШаннонД. ШанонШанонШэннонデルシャノンデル・シャノンCharles Westover + +229467Berry GordyBerry Gordy III[b]Berry Gordy Jr.[/b] is born 28 November 1929 in Detroit, Michigan, USA. +Founder of [l=Motown]. + +His publishing company [l268020] was named after his three eldest children: Joy, Berry and Terry. +Inducted into Rock And Roll Hall of Fame in 1988 (Non-Performer). + +- Brother of [a1001680], [a688394], [a623953], [a687465], [a360508], [a749192] and [a391743] +- Ex-husband of [a633421] (1953-1959) +Sons: [a586248], [a690352] and [a690346] +- Ex-husband of [a634114] (1960-1964) +Son: [a157863] +- With [a897657] had Sherry Gordy +- With Margaret Norton had [a1876082] +- With [a47742] had [url=https://www.discogs.com/artist/10334347-Rhonda-Ross-3]Rhonda Suzanne[/url] +- With [a2742226] had [a1651090] +- Grandfather of [a1651089] + +Note: Berry Gordy was born Berry Gordy III, but is known professionally as Berry Gordy, Jr.Needs Votehttp://www.history-of-rock.com/motown_records.htmhttp://en.wikipedia.org/wiki/Berry_Gordyhttps://books.discogs.com/credit/245096-berry-gordyB .GordyB G.B GordyB Gordy JnrB Gordy Jnr.B Gordy JrB Gordy Jr.B Gordy, Jr.B, Gordy, Jr.B. BerryB. CorbyB. CordyB. Cordy, Jr.B. G.B. GardyB. Gerdy Jr.B. GoordyB. Gordi Jr.B. GordonB. Gordon JnrB. Gordon Jnr.B. Gordon JrB. Gordon Jr.B. Gordon, Jnr.B. Gordon, Jr.B. Gordon, jr.B. GordonjrB. GordyB. Gordy Jr.B. Gordy Hr.B. Gordy JRB. Gordy JnrB. Gordy Jnr.B. Gordy JrB. Gordy Jr.B. Gordy Jr.*B. Gordy Jr.,B. Gordy Jr..B. Gordy JuniorB. Gordy Jy.B. Gordy jrB. Gordy jr.B. Gordy – Jr.B. Gordy, Jnr.B. Gordy, JrB. Gordy, Jr.B. Gordy,JrB. Gordy. JrB. GrodyB. Jnr. GordyB. JordyB. Jordy Jr.B.G,B.G.B.G.E. ProductionB.Gordi Jr.B.Gordon Jnr.B.GordyB.Gordy Jnr.B.Gordy JrB.Gordy Jr.B.Gordy, Jr.B.Gordy,Jr.BGBGordy Jr.BarryBarry GordyBarry Gordy Jnr.Barry Gordy JrBarry Gordy Jr.Barry Gordy jr.Barry Gordy, Jnr.Barry Gordy, Jr.Barry Gourdy Jr.Barry-GordyBenny Gordan Jnr.Benny Gordon Jnr.Benny Gordon, Jnr.Berrie Gordy Jr.BerryBerry - GordyBerry - Gordy - B.Berry / Gordy Jun.Berry CordyBerry Et Gordy JuniorBerry Girdy Jr.Berry Gody Jr.Berry GopdyBerry GorBerry GordBerry Gordan Jnr.Berry Gordi Jr.Berry Gordie Jr.Berry GordonBerry Gordon JrBerry Gordon Jr.Berry Gordon JrnBerry Gordon, JrBerry Gordon, Jr.Berry Gordy J:rBerry Gordy JRBerry Gordy JnrBerry Gordy Jnr.Berry Gordy JrBerry Gordy Jr.Berry Gordy JuniorBerry Gordy Junr.Berry Gordy jr.Berry Gordy, IIIBerry Gordy, JR.Berry Gordy, JnrBerry Gordy, Jnr.Berry Gordy, JrBerry Gordy, Jr,Berry Gordy, Jr.Berry Gordy, Jr.,Berry Gordy, Jr..Berry Gordy, jr.Berry Gordy. Jnr.Berry Gordy. Jr.Berry Gordy.JrBerry Gordy/Jr.Berry GordyJnrBerry Gory, Jr.Berry J. GordyBerry Jnr GordyBerry Jordy Jr.Berry Jr GordyBerry Jr. RordyBerry-GordyBerry.Gordy JrBerry/GordyBerryGordyBerryGordy, Jr.Bery Gordy Jr.Bobby Gordy JnrChuck CreathCordyCordy Jr.G. BerryG. Berry Jr.G. GordyG. Gordy JuniorG. Gordy, Jr.G.JuniorGardyGardìGerdy Jr.Goody JRGorbyGord Jr.Gorder JnrGordeyGordey Jnr.GordiGordi Jr.GordieGordiyGordonGordon JNRGordon JnrGordtGorduyGordyGordy (Jnr)Gordy (Junior)Gordy - BarryGordy - BerryGordy B.Gordy Berry JrGordy GordyGordy J.Gordy J:rGordy JR.Gordy JnrGordy Jnr.Gordy JrGordy Jr BerryGordy Jr.Gordy Jr./BerryGordy JunGordy JuniorGordy jnr.Gordy jr,Gordy jr.Gordy, BerryGordy, JnrGordy, Jnr.Gordy, JrGordy, Jr.Gordy, jr.Gordy,Jr.Gordy-BerryGordy. Jr.Gordy/BerryGordyuGoroy JnrGozdyGqrdy Jr.GrodyGrody JnrGrody Jr.Grody Jur.GurdyH. GordyHammerJ. Gordy, Jr.Jr GordyJuniorPerry Gordy Jr.Perry-Gordy, Jr.Side A: B.C. Side B: B.G.T.C.B. Gordongordy Jnr.The ClanThe Corporation (2)Berry Gordy Orchestra + +229498Max RoachMaxwell Lemuel RoachAmerican jazz drummer and bandleader +Born: 10 January 1924 in Newland, Pasquotank County, North Carolina, USA +Died: 16 August 2007 in Manhattan, New York City, New York, USA (aged 83) +Married to singer [a271898]. +Father of [a=Raoul Roach] and viola player [a311415]. + +Roach was one of the most accomplished jazz drummers and percussionists of his time. He worked with many of the greatest jazz musicians, including [a=Miles Davis], [a=Dizzy Gillespie], [a=Charlie Parker], [a=Duke Ellington], [a=Charles Mingus] and [a=Sonny Rollins].Needs Votehttps://en.wikipedia.org/wiki/Max_Roachhttps://www.drummerworld.com/drummers/Max_Roach.htmlhttps://www.britannica.com/biography/Max-Roachhttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/max-roachhttps://www.pas.org/about/hall-of-fame/max-roachhttps://adp.library.ucsb.edu/names/340358M RoachM. RoachM.RoachMaw RoachMaxMax Roach And All StarsMax Roach Drum ImprovisationMax Roach's Freedom Now SuiteMax RoacheMax RoakMaximilianMaxwell Lemuel "Max" RoachMaxwell RoachMay RoachRoachRochМ. РоучМакс РоучРоучマックス・ローチThe Miles Davis QuintetMiles Davis All StarsThe Charlie Parker QuartetThe Charlie Parker All-StarsThe Charlie Parker SextetThe Charlie Parker QuintetSlide Hampton OrchestraThe International JazzmenMiles Davis And His OrchestraThe Quintet Of The YearSonny Clark TrioMetronome All StarsFats Navarro QuintetColeman Hawkins All Star BandCharlie Parker's Re-BoppersThe Thelonious Monk QuintetThe Charles Mingus QuintetSonny Rollins Plus FourThe Bud Powell TrioThe J.J. Johnson SextetBenny Golson SextetM'Boom Re:percussion EnsembleCharlie Parker And His OrchestraDon Byas QuartetSonny Stitt QuartetColeman Hawkins QuintetStan Getz QuartetColeman Hawkins And His OrchestraDexter Gordon QuintetLee Konitz SextetDizzy Gillespie - Stan Getz SextetThelonious Monk TrioThe Capitol International JazzmenColeman Hawkins Swing FourThe Miles Davis NonetClifford Brown All StarsSonny Rollins QuartetHoward Rumsey's Lighthouse All-StarsThe QuintetThe Miles Davis QuartetThe J.J. Johnson QuintetThe Kai Winding SextetJ.J. Johnson's BoppersBuddy De Franco SextetMax Roach His Chorus And OrchestraSonny Rollins QuintetMax Roach QuintetMax Roach Double QuartetThe Charlie Mingus TrioMax Roach Plus FourSonny Rollins TrioThe Kenny Dorham QuintetColeman Hawkins All StarsMax Roach QuartetMiles Davis & His Tuba BandThe BirdlandersNewport Parker Tribute All StarsGeorge Russell OrchestraMax Roach SextetJimmy Cleveland And His All StarsGeorge Wallington TrioThe Max Roach TrioMax Roach SeptetJ.J. Johnson QuartetHerbie Nichols TrioClifford Brown and Max RoachDon Lanphere QuintetGil Mellé SextetThe Paris All-StarsThe Riverside Jazz StarsDizzy Gillespie's Cool Jazz StarsBarry Ulanov's All Star Modern Jazz MusiciansBud Powell QuartetHoward McGhee All StarsAllen Eager QuartetJ.J. Johnson All StarsEarl Coleman And His All StarsHoward McGhee SeptetCannonball Adderley All StarsRoach-Braxton DuoThelonious Monk GroupCharles Mingus – Max Roach DuoDizzy Gillespie/Oscar Pettiford QuintetMax Roach/Dollar Brand DuetClifford Brown Max Roach Quintet + +229547Manuel De FallaManuel María de los Dolores Falla y MatheuSpanish composer, born: 1876-11-23 in Cádiz, Spain – died: November 14, 1946 in Alta Gracia, Argentina. +Needs Votehttps://www.manueldefalla.com/https://en.wikipedia.org/wiki/Manuel_de_Fallahttps://es.wikipedia.org/wiki/Manuel_de_Fallahttps://www.britannica.com/biography/Manuel-de-Fallahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102436/Falla_Manuel_deDa FallaDe FaliaDe FallaDe Falla, ManuelDe FellaDeFallaDefallaEmanuel De FallaFallFallaFalla M. deFalla y Matheu, Manuel deFalla, De ManuelFalla’sFalllaFallsFattaM De FallaM de FallaM. D. FallaM. Da FallaM. De FaliaM. De FallaM. DeFallaM. Di FallaM. FallaM. Manuel de FallaM. da FallaM. de FallaM. de fallaM. deFallaM.D FallaM.De FallaM.FallaM.de FallaM.deFallaM.ファリャManual De FallaManual FallaManual deFallaManuel Da FallaManuel De FalaManuel De FallaManuel De Falla MattheuManuel De FalliaManuel DeFallaManuel FallaManuel María de los Dolores Falla y MatheuManuel de FallaManuel de Falla MatheuManuell De FallaManule De FallaMatheuMatheu Manuel De FallaMauel De FallaMануэль де Фальяde FalladeFalladeFellaДе ФальяДе-ФальяМ. Де ФайяМ. Де ФальиМ. Де ФальяМ. Де ФаљаМ. Де-ФальяМ. ФальяМ. де ФальяМ. де-ФальяМануел Де ФаљаМануель де ФальяМануэл де ФайаМануэль Да ФальяМануэль Де ФальяМануэль де Фальяמנואל דה פליהファリャマヌエル・デ・ファリアマヌエル・デ・ファリャ马努埃尔·德·法利亚Manuel De Falla Orchestra + +229566Orlando GibbonsEnglish composer and keyboard player, born at Oxford (1583-1625), he is recognized as one of the most important English composers of the early 17th century. +His father, William Gibbons, was also a musician appointed in Cambridge, while his elder brother, [a3571423], was also a composer. +In 1605 Orlando Gibbons was appointed to the prestigious position of organist of the Chapel Royal; in 1619 he succeeded Walter Earle as "one of his Majesty's musician"; in 1623 he became organist of Westminster Abbey. +He composed secular and sacred vocal music, as well as instrumental music for solo keyboard or consort.Needs Votehttps://www.orlandogibbons.com/https://en.wikipedia.org/wiki/Orlando_Gibbonshttps://www.britannica.com/biography/Orlando-Gibbonshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103905/Gibbons_OrlandoDr. Orlando GibbonsGibbonsGibbons O.Mr. GibbonsO. GibbinsO. Gibbon [Sic]O. GibbonsO.GibbonsOrlando GibbonnsOrlando-GibbonsО. ГиббонсО. Гиббсон + +229639Tommy DorseyThomas Francis Dorsey, Jr.Tommy Dorsey (born November 19, 1905, Mahanoy Plane, Pennsylvania, USA - died November 26, 1956, Greenwich, Connecticut, USA) was an American trombonist, trumpeter, composer, conductor and bandleader of the Big Band era. He often worked with his brother [a299282] in New York and helped the Swing Era grow in the US, he was an important bandleader during that time. + +For the gospel/blues songwriter, see [a=Thomas A. Dorsey].Needs Votehttps://en.wikipedia.org/wiki/Tommy_Dorseyhttps://www.britannica.com/biography/Tommy-Dorseyhttps://adp.library.ucsb.edu/names/103345A Orquestra De Tommy DorseyDorsayDorseyDorsey T.T. DorseyT.D.T.DoorseyT.DorseyTDThomas A. DorseyThomas DorseyThommy DorseyTom DorseyTom Dorsey Trumpet SpecialityTommyTommy &Tommy & Jimmy DorseyTommy Dorsey & His OrchestraTommy Dorsey (TD)Tommy Dorsey And His OrchestraTommy Dorsey And His TromboneTommy Dorsey Y Su OrquestaTommy DorsyTomy Dorseyトミー・ドーシーTommy Dorsey And His OrchestraMetronome All StarsTommy Dorsey And His Clambake SevenR.C.A. Victor All-StarsBix And His Rhythm JugglersHoagy Carmichael And His OrchestraJean Goldkette And His OrchestraBoyd Senter & His SenterpedesPaul Whiteman And His OrchestraThe Original Memphis FiveTommy Dorsey And His SentimentalistsEddie Lang's OrchestraCalifornia RamblersThe Dorsey Brothers OrchestraThe Big AcesIrving Mills And His Hotsy Totsy GangThe Charleston ChasersHoagy Carmichael And His PalsJoe Venuti And His New YorkersChick Bullock & His Levee LoungersThe Dorsey BrothersThe Dorsey Brothers And Their New DynamiksJam Session At VictorThe Vagabonds (6)All Star Band (4)University SixThe Fabulous DorseysMetronome All-Star BandAlabama Red PeppersKolster Dance OrchestraThe Giants Of Jazz (3)Tom Dorsey And His Novelty OrchestraT. Dorsey Family (Mountain Branch)Jam Session All-StarsTommy Dorsey And Band + +229663DJ GRHUK hard dance DJ, producer, promoter & marketing consultant within the dance scene.Needs VoteDJGRHGRH + +229994Sally HerbertSara Dorothy Maria HerbertBritish violinist, orchestral arranger, composer and producer.Needs Votehttps://twitter.com/salstringshttps://www.imdb.com/name/nm1287463/https://www.solarmanagement.co.uk/producer-mixers#/sally-herbert-producer/https://www.brilliantstrings.co.uk/html/sally.htmlHerbertS HerbertS. HerbertS. HervertS.HerbertSal HerbertSally HerberSally HerbetSara Dorothy HerbertBanderasThe Jocelyn Pook EnsembleMillennia StringsElectra StringsBrilliant StringsThe False Harmonics String EnsembleQuartet ZuString Ensemble "Fatmah"The Last Dance Orchestra + +230140Pietro MascagniPietro Antonio Stefano MascagniItalian composer, born December 07, 1863 in Livorno, died August 02, 1945 in Rome. +Famous mostly for his opera "Cavalleria Rusticana" in 1890 and enjoyed immense success during his lifetime. +Mascagni wrote a total of fifteen operas, plus an operetta, several orchestral and vocal works, as well as songs and piano music.Needs Votehttps://www.pietromascagni.com/https://www.britannica.com/biography/Pietro-Mascagnihttps://www.treccani.it/enciclopedia/pietro-mascagni/https://en.wikipedia.org/wiki/Pietro_Mascagnihttps://www.imdb.com/name/nm0556099/https://adp.library.ucsb.edu/names/102383F. MascagniG. MascagniMacagniMasagniMasargniMascaganiMascaginiMascagnaniMascagniMascagni - SalessMascagni P.Mascagni, PietroMascagni:MasganiMaskanjiMescagniP MascagniP- MascagniP. MascaginiP. MascagniP. MascaniP. MaskanjiP. MaskanjisP. MaskaņjiP. マスカーニP.MascagniP.MaskaņjiP.マスカーニPiero MascagniPierre MascagniPietro Antonio MascagniPietro Antonio Stefano MascagniPietro MasagniPietro MascogniPietro MasgagniPietro MaskagniR. MascagniRuggiero MascagniБ. МасканьиМасканиМасканьиМаскањиП. МасканиП. МасканьиП. МаскањиПiэтро МасканьиПиетро МасканиПьетро Масканьиピエトロ・マスカーニマスカーニ馬士康尼馬斯卡尼 + +230469Masif DJ'sCollective of UK Hard trance producers, mostly doing cover versions of well-known trance tracks.Needs Votehttp://www.masif.org/djshttps://www.facebook.com/masifdjs/Masif DJsMasif NRG DJ'sThe Masif DJ'sThe Masif DJsHardcore MasifSteve HillJon LangfordAlf BamfordGuy MearnsGareth WestDarren Jones + +231641Mel PowellMelvin EpsteinAmerican jazz pianist, composer and arranger of classical music. +Born February 12, 1923 in New York City, New York, USA. +Died April 24, 1998 (age of 75) in Sherman Oaks, California, USA. +Married to actress [a=Martha Scott] (1946-1998, his death). +He won the 1990 Pulitzer Prize in music for his composition, "Duplicates: A Concerto for Two Pianos and Orchestra". +Powell began as a teenager at Nick's in New York before joining the band of Mugsy Spanier. With Benny Goodman from 1941, for who he wrote several seminal tracks, including "The Earl", "Clarinet a la King" and "Mission to Moscow". He was a member of Glenn Miller's Army Band during World War II. He turned to classical music in the 1980's. +Credited also for writing liner notes. Needs Votehttp://en.wikipedia.org/wiki/Mel_Powellhttps://www.imdb.com/name/nm0694232/https://adp.library.ucsb.edu/names/355924Cpl. Mel PowellM PowellM. PowellM.PowellMelMel PowelMell PowellMelvyn PowellMr. PowellPowelPowellPowerPvt. Mel PowellS/Sgt. Mel PowellSgt. Mel PowellМ. ПовеллПовельShoeless Joe JacksonW. (13)Benny Goodman SextetBenny Goodman And His OrchestraThe Mel Powell SeptetJazz Club Mystery Hot BandMel Powell TrioMel Powell And His OrchestraMel Powell & His All-StarsMel Powell QuintetMel Powell SextetThe Army Air Force BandThe Giants Of Jazz (3)The Mel Powell Bandstand + +231695Garry WhiteGarry WhiteDJ from England who was an ex resident DJ at slinky known for compiling most of the slinky albums with Tim LyallNeeds Votehttps://www.youtube.com/channel/UC9Qf4Xr5wMFufq3p84iPouwhttps://soundcloud.com/gaz_whiteG. WhiteG.WhiteGaz WhiteWhiteFat HarryYekuanaNorthfaceLowfieldsStrongline + +232793Nik CNick CrittendenNeeds VoteBik CCrittendenN. CrittendenNic CNic C.Nick CNick CrittendenNickCrittendenNikNik 'C'Nik C.Nik CrittendenNik. C.Bush BabiesBubblebassPanikbrothersGroovesistersBarbican Boyz + +232913GuffyLee McGuffieCorrecthttp://www.guffy.co.uk/Lee McGuffiePseudonysm + +233533Amber DAmber May DowlerHard Dance & Trance DJ & producer from Doncaster, UK. +Manager of digital labels [l=D-Day Recordings], [l=D'Licious Recordings] and [l=Transportal Digital].Needs Votehttp://www.amberd.co.uk/http://www.facebook.com/AmberMayDhttp://www.instagram.com/djamberd/http://twitter.com/DJAmberDhttp://myspace.com/djamberdmusichttp://soundcloud.com/dj-amber-dhttp://www.twitch.tv/djamber_dhttp://www.youtube.com/amberdworldAmber DowlerAmber D'AmourAmber Haslam + +233897Arthur RimbaudJean Nicolas Arthur Rimbaud(October 20, 1854 Charleville, France – November 10, 1891 Marseille, France) +Arthur Rimbaud was a precocious boy-poet of French symbolism, wrote some of the most remarkable poetry and prose of the 19th century. +His highly suggestive, subtle work drew on subconscious sources, and its form was correspondingly supple and novel. Rimbaud has been identified as one of the creators of free verse because of the rhythmic experiments in his prose poems [i]Illuminations[/i] (1886). His [i]Sonnet of the Vowels[/i] (1871), in which each vowel is assigned a color, helped popularize synesthesia (the description of one sense experience in terms of another), a device widely exploited by the symbolists. The hallucinatory images in [i]The Drunken Boat[/i] (1871) and Rimbaud's urging, in [i]Letter from the Seer[/i] (1871), that poets become seers by undergoing a complete derangement of the senses also reveal Rimbaud as a precursor of surrealism. Following his own dictum, Rimbaud lived an inordinately intense, tortured existence that he described in [i]A Season in Hell[/i] (1873). +Needs Votehttps://en.wikipedia.org/wiki/Arthur_RimbaudA. RemboA. RimbaudA.RimbaudArthor RimbaudArthurArthur RimbandArtur RemboArtur RimbaudJ. A. RimbaudJ.A. RimbaudJean Arthur RimbaudJean-Arthur RimbaudRaimbaudRambaudRim RimbaudRimbaudRimbaultRimbeaudΑρθούρος ΡεμπώΡεμπώА. РембоАртюр РембоЖан Николь Артюр Рембоアルチュール・ランボー + +233933Steve Van ZandtSteven Van ZandtBorn November 22, 1950, in Boston, Massachusetts as Steven Lento. +Best known as the guitarist for Bruce Springsteen's [a=The E-Street Band], produced first three albums of Southside Johnny and the Asbury Jukes 1976-78, then two albums for Gary U.S. Bonds, until releasing his own album as "Little Steven". He later acted, most notably in the role of Silvio on the TV show "The Sopranos". In 2002 he started the syndicated radio show Little Steven's Underground Garage. In 2005, he started the garage rock label [l375410].Needs Votehttps://www.littlesteven.com/https://www.undergroundgarage.com/https://www.facebook.com/LittleStevenVanZandt/https://twitter.com/StevieVanZandthttps://en.wikipedia.org/wiki/Steven_Van_Zandthttps://www.imdb.com/name/nm0005523/"Little Steven" Van Zandt"Miami" Steve Van Zandt"Miami" Steve Van Zant'Little' Steven Van ZandtLittle StevenLittle Steven Van ZandtLittle Stevie Van ZandtMiami Steve Van ZandtS. Van ZandtS. Van. ZantS. VanZandtS. van ZandtS.V.ZandtS.Van ZandtS.VanZandtS.van ZandtSt. Van ZandtStephen Van ZandtStevIe Van ZandtSteveSteve V. ZandtSteve Van Zan ZandtSteve VanZandtSteve VanzandtSteve van ZandtStevenSteven Van SantSteven Van ZadtSteven Van ZandtSteven Van ZantSteven VanzandtSteven van ZandtStevie Van ZandtStevie Van ZandtStevie van ZandtSugar Miami SteveVan - ZandtVan ZandtVan ZendtVan-ZandtZandtスティーブ・ヴァン・ザントLittle StevenMiami SteveArtists United Against ApartheidWe Are Family CollectivePeace ChoirSpirit Of The ForestThe E-Street BandSouthside Johnny & The Asbury JukesThe Amnesty AllstarsBruce Springsteen & The E-Street BandLittle Steven And The Disciples Of SoulDr. Zoom & The Sonic BoomThe Lost Boys (9)Steel Mill (2)The Conspirators (2)The Bruce Springsteen BandLittle Steven And The Interstellar Jazz RenegadesSouthside Johnny & The Kid + +233984Alex FosterAlex P FosterAmerican jazz saxophonist. + +Needs Votehttps://en.wikipedia.org/wiki/Alex_Foster_(musician)https://www.berkshiresacademyams.org/alex-fosterA. FosterA.FosterAl FosterAlex ForsterAlexander FosterFosterGil Evans And His OrchestraThe George Gruntz Concert Jazz BandStuff (2)The Carnegie Hall Jazz BandJack DeJohnette's DirectionsJaco Pastorius Big BandMingus DynastyMingus Big BandMingus OrchestraThe Contemporary Arranger's WorkshopSuperfriends (2)The Tom 'Bones' Malone Jazz SeptetEarthbound (10)Michel Camilo Big Band + +234399Haze (4)Ben HayesAustralian based Hardcore/Freeform Producer and DJ. + +Owner of Executive Records & Recycled Records. +Needs Votehttp://www.executive-records.comhttps://www.facebook.com/hazeexecutiverecordshttps://haze11.bandcamp.com/Ben HazeHazyBen HayesD-Vide + +234407Nathan ColeAmerican violinist and teacher. Concertmaster of the [a=Boston Symphony Orchestra] since 2024.Needs Votehttps://www.bso.org/profiles/nathan-colehttp://www.natesviolin.com/Boston Symphony OrchestraLos Angeles Philharmonic OrchestraChicago Symphony OrchestraThe Saint Paul Chamber Orchestra + +235034Joe GallivanJoe GallivanUS drummer and keyboardist is born 08.09.1937 in Rochester, New York/USANeeds Votehttp://joegallivan.com/https://joegallivan.com/blog/"Young" Joe GallivanGallivanJ.G.Joe GalovanGil Evans And His OrchestraPowerfieldLove Cry WantIntercontinental ExpressAilana + +235322Bob BeldenJames Robert BeldenBob Belden (born October 31, 1956, Evanston, Illinois, USA - died May 20, 2015, Manhattan, New York, USA) was an American saxophonist, arranger, composer, bandleader, producer and historian. He was raised in Goose Creek, South Carolina and died after suffering a massive heart attack.Needs Votehttp://en.wikipedia.org/wiki/Bob_Beldenhttp://www.bluenote.com/artists/bob-beldenhttps://www.allmusic.com/artist/bob-belden-mn0000057737https://bobbelden.bandcamp.com/B. BeldonBeldenBob Belden ProjectBob Beldonボブ・ベルデンBob Belden ProjectWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdNew York City StringsNew York City HornsAnimation (9)Bob Belden's Manhattan Rhythm ClubThe Bob Belden EnsemblePowerhouse (26) + +235382Nino RotaGiovanni Rota RinaldiItalian composer. +Born: 3 December 1911 in Milan, Italy. Died: 10 April 1979 in Rome, Italy. + +Born into a musical family in Milan, Rota studied at the conservatory there under Ildebrando Pizzetti. His first oratorio, L'infanzia di San Giovanni Battista, was performed in Milan and Paris as early as 1923 and his lyrical comedy, "Il Principe Porcaro", was composed in 1926. + +Encouraged by Arturo Toscanini, Rota moved to the United States where he lived from 1930 to 1932. He won a scholarship to the Curtis Institute of Philadelphia, where he took classes in orchestra with Fritz Reiner and had Rosario Scalero as an instructor in composition. Returning to Milan, he wrote a thesis on the renaissance composer Gioseffo Zarlino. + +Rota earned a degree in literature from the University of Milan. In 1937, he began a teaching career that led to the directorship of the Bari Conservatory, a title he held from 1950 until his death in 1979. During the 1940s, Rota composed scores for more than 32 films, including Renato Castellani's Zazà (1944). His association with Fellini began with "Lo sceicco bianco" (1952), followed by "I vitelloni" (1953) and "La strada" (1954). + +They continued to work together for decades, and Fellini recalled: 'The most precious collaborator I have ever had, I say it straightaway and don't even have to hesitate, was Nino Rota — between us, immediately, a complete, total, harmony... He had a geometric imagination, a musical approach worthy of celestial spheres. He thus had no need to see images from my movies. When I asked him about the melodies he had in mind to comment one sequence or another, I clearly realized he was not concerned with images at all. His world was inner, inside himself, and reality had no way to enter it.' + +Rota's score for Fellini's "8½" (1963) is often cited as one of the factors which makes the film cohesive. His score for Fellini's "Juliet Of The Spirits" (1965) included a collaboration with Eugene Walter on the song, "Go Milk The Moon" (cut from the final version of the film), and they teamed again for the song "What Is A Youth?", part of Rota's score for Franco Zeffirelli's "Romeo And Juliet". + +In all, Rota wrote scores to more than 150 films. Rota wrote several concerti and other orchestral works as well as piano, chamber and choral music. + +After his death Rota's music was the subject of the 1981 tribute album "Amarcord Nino Rota". Gus Van Sant used some of Rota's music in his 2007 film "Paranoid Park". His 1977 opera "The Italian Straw Hat", an adaptation of the play by Eugène Labiche was presented by the Santa Fe Opera. + +In 2005 his opera "Aladino e la lampada magica" ("Aladdin And The Magical Lamp"), with Cosmin Ifrim in the title role, was performed in German translation at the Vienna State Opera and released on DVD. +Written for a radio production by RAI in 1950, his short opera, "I due timidi" ("The Two Timid Ones"), will be presented by the Santa Fe Opera as part of their pre-season "One-Hour Opera" program in May-June 2008.Needs Votehttps://www.ninorota.com/https://www.facebook.com/ninorotapage/https://x.com/ninorotahttps://en.wikipedia.org/wiki/Nino_Rotahttps://www.imdb.com/name/nm0000065/https://adp.library.ucsb.edu/index.php/mastertalent/detail/333986/Rota_NinoD. RotaE. RotaG. Nino RotaG. RotaG.N. RotaGeovanni RotaGiovanni RotaJino RotaM. RotaMino RotaN RotaN,RotaN. NotaN. RatoN. RitoN. RoatN. RolaN. RosaN. RotN. RotaN. Rota / G. RinaldiN. RotoN. RottaN. RoyaN. rotaN. ロータN.RotaN.Rota / G.RotaN.RottaNina RotaNina RottaNini RossoNini RotaNino LotaNino RatoNino RotoNino RottaNino TotaNino-RotaNito RotaNono RotaNotaR. GiovaR. GiovanniR. RotaRetaRinaldi Nino RotaRinaldi RotaRitaRitoRoatRolaRotaRota GiovanniRota NinoRota, NinoRoteRotoRottaSound TrackTirannioTotatradicionálН. РотаН. РотоНина РотаНино РотаНіно Ротаニノ ロータニノ・ロータニーノ・ロータNino Rota And His Orchestra + +235794K-SeriesJonathan LangfordUnder this guise Jon Langford released a series of bootleg hard trance remixes, called [l=The K Series].CorrectK SeriesK2K6K8KnuckleheadzJon LangfordFuture Concept + +235995Vito (2)Artist/Designer for [a=Gribbitt!]Needs VoteGribbitt! + +236705Franck LangolffHenri-Alain LangolffMoroccan songwriter and producer (1948 in Fez - 8 September 2006 in Rouen).Correcthttp://fr.wikipedia.org/wiki/Franck_LangolffA. LangolffF LangolffF. La GolffF. LangF. LangloffF. LangoeffF. LangoffF. LangolfF. LangolffF.LangolffFr. LangolffFranck & LongFranck LangoffFranck LangolefFranck LangolfFranck LargolfFrank LangoffFrank LangolfFrank LangolffFrank ZangolfH. LangloffH. LangolffHenri LangloffLangolfLangolffP. LangolffPunch (12)Mardi Sous La PluieLes Vikings (3) + +236968Stephen StillsStephen Arthur StillsAmerican guitarist and songwriter, born January 3, 1945 in Dallas, Texas. Member of Buffalo Springfield and Crosby, Stills & Nash.Needs Votehttps://stephenstills.com/https://www.myspace.com/stephenstillshttps://en.wikipedia.org/wiki/Stephen_Stillshttps://www.allmusic.com/artist/stephen-stills-mn0000021744DixonG. StillsMillsS StillsS, StillsS. SilsS. StillsS. StiusS.SteelS.StillsSillsSlillsSt, StillsSt. StillsSteeven SteeleStepen StilsStephan StillsStephenStephen - StillsStephen A StillsStephen A. StillsStephen SillsStephen StillStephen StillisStephen Stills (Goldhill Music, Inc.)Stephen, StillsStephen-StillsStephens StillsSteveSteve MillsSteve StillSteve StillsSteve StilsSteven A. StillsSteven StillSteven StillsStevon SillsStillStillsStills Stephen AStills, A StephenStills, StephenStills, Stephen A.StilsStphen StillsСтивън СтилсСтивэн СтильсСтилсスティーブン・スティルスBuffalo SpringfieldCrosby, Stills & NashCrosby, Stills, Nash & YoungManassasThe Stills-Young BandAll-Star GroupThe Red HotsThe Au Go-Go SingersThe Rides + +237823Rosalind WatersBritish soprano vocalistNeeds Votehttp://rosalindwaters.com/Rossalind WatersGabrieli ConsortMetro VoicesThe Choir Of The King's ConsortLondon Voices + +237977Teo MaceroAttilio Joseph MaceroAmerican record producer, jazz saxophonist and composer +Born October 30, 1925 in Glens Falls, NY, USA, died February 19, 2008 in Riverhead, Long Island, NY, USA +A staff producer for [l1866] Records from 1959 (he was first hired as a music editor in 1957), Macero produced a series of albums by [a23755] (beginning with [m5460]) until the early 1980s, including editing that almost amounted to creating compositions after the recordings. He also supervised sessions led by [a37737] (including [m34081]) and signed [a200815]. He left Columbia in 1975 to found Teo Productions. +Needs Votehttps://www.nytimes.com/2008/02/22/arts/music/22macero.htmlhttps://www.theguardian.com/music/2008/feb/28/jazz.urbanmusichttps://www.telegraph.co.uk/news/obituaries/1579846/Teo-Macero.htmlhttps://www.imdb.com/name/nm0532163/http://en.wikipedia.org/wiki/Teo_MaceroAttilio J. MaceroMaceroT MaceroT. MaceroTed MaceroTed UaceroTeoTeo MarceroTheo MaceroTéo Maceroテオ・マセロFrank GlennCharles Mingus Jazz WorkshopThe Manhattan Jazz All StarsCharles Mingus OctetThe Charlie Mingus ModernistsTeo Macero And His Orchestra + +237979Robert Irving IIIRobert Lee Irving Jr.American pianist, composer, arranger, music educator, and painter, born October 27, 1953 in Chicago, Illinois. A.k.a. [b]Baabe[/b]. +He worked for [l129352] between 1987-1989 as artist/producer. Founder and President of [l=Vitasia Music] Publishing Co. since January 1983. Founder member of "[b]The Robert Irving III Quintet[/b]".Needs Votehttps://robertirvingiii.com/https://www.facebook.com/robert.irving3https://twitter.com/robertirvingiii?lang=enhttps://www.linkedin.com/in/robertirvingiii/https://open.spotify.com/artist/2T4KoRLkUTPQym8DEFBmZJhttps://en.wikipedia.org/wiki/Robert_Irving_IIIhttps://www.chicagojazz.com/robert-irving-iii-interviewhttp://secretjazz.com/baabe.htmhttp://www.muzines.co.uk/articles/latest-in-the-line/250https://musicianbio.org/robert-irving-iii/https://www.thelastmiles.com/profiles_robert_irving/https://www.yamaha.com/artists/robertirvingiii.htmlhttps://www.imdb.com/name/nm0410229/Bob Irving IIIBobby IrvingBobby Irving IIIIrvingIrving IIIR, Irving IIIR. IrvingR. Irving IIIR. Irving, IIIR. L. IrvingR.Irving IIIRobert "Baabe" Irving IIIRobert Baabe Irving IIIRobert Erwin IIIRobert I. IIIRobert I.IIIRobert IrvingRobert Irving, IIIRobert Lee Irving IIIDavid Murray OctetJuba CollectiveESP (13)Miles Davis SeptetMiles Davis OctetLive From Chicago + +238213Ike TurnerIzear Luster Turner Jr. or Ike Wister TurnerIke Turner (born November 5, 1931, Clarksdale, Mississippi, USA - died December 12, 2007, San Marcos, California, USA) was an American musician, bandleader, songwriter, arranger, talent scout, and record producer. In the 1950's, he formed his first group as a teenager in high school, called [a=Ike Turner's Kings Of Rhythm]. In 1956, he hired two sisters named Anna Mae Bullock and [a=Aillene Bullock]. He renamed Anna Mae Bullock as [a=Tina Turner], married her and they had their first hit in 1960 with "A Fool In Love". Ike has frequently been referred to as a "great innovator" of rock and roll and has left a lasting mark in music history. +Needs Votehttp://en.wikipedia.org/wiki/Ike_Turnerhttp://home.earthlink.net/~v1tiger/iket.htmlhttp://koti.mbnet.fi/wdd/iketurner.htmhttp://www.imdb.com/name/nm0877593/https://www.allmusic.com/artist/ike-turner-mn0000080970I TurnerI. TornerI. TurnerI.C. TurnerI.TurnerIkeIke Turner, Sr.Ike TurnerpJ. TurnerM. TurnerMaestro Ike TurnerTurnerTurner, Ikeアイク・ターナーIcky RenrutLover Boy (2)Leah GrahamIren RickeyIke Turner's Kings Of RhythmIke & Tina TurnerJackie Brenston & His Delta CatsIke Turner BandOtis Rush & His BandIke Turner & His OrchestraIke & Tina Turner Revue + +238626Jack DeJohnetteBorn August 9, 1942 in Chicago, [b]IL[/b], died October 26, 2025 in [url=https://en.wikipedia.org/wiki/Woodstock,_New_York]Woodstock[/url], [b]NY[/b]. American jazz drummer and pianist +Music publisher: [l405524]. +Needs Votehttps://www.jackdejohnette.comhttps://myspace.com/jackdejohnettehttps://www.drummerworld.com/drummers/Jack_DeJohnette.htmlhttps://riad.pk.edu.pl/~pmj/dejohnettehttps://en.wikipedia.org/wiki/Jack_DeJohnettehttps://www.imdb.com/name/nm0208974/https://www.bluenote.com/artist/jack-dejohnettehttps://www.ecmrecords.com/artists/1435045747/jack-dejohnettehttps://www.facebook.com/jackdejohnettehttps://www.allmusic.com/artist/jack-dejohnette-mn0000104388De JohnetteDeJohnetteDejohnetteJ. D.J. D. JohnetteJ. De JohnetteJ. DeJohnetteJ. DejohnetteJack D. JohnetteJack De JohnettJack De JohnetteJack De-JohnetteJack DeJohetteJack DeJohnetteJack DeJohnnetteJack DeJonetteJack DeJonnetteJack DechnetteJack DejohnetteJack Dejohnette'sJack de JohnetteJack deJohnetteJohn DeJohnetteジャック・ディジョネットThe Miles Davis QuintetKeith Jarrett TrioJack DeJohnette's DirectionsDave Holland TrioThe Charles Lloyd QuartetStan Getz QuartetLee Konitz QuintetThe Louisiana Gator BoysJack Dejohnette's Special EditionCTI All-StarsCompost (2)Wadada Leo Smith's Golden QuartetThe Great Jazz TrioJoe Farrell QuartetFranco Ambrosetti QuintetAdam Makowicz TrioThe Jerry Hahn QuintetThe Richard Davis TrioGary Burton & FriendsHarold Mabern TrioThe Ripple EffectJoe Henderson QuartetRichie Beirach TrioKenny Werner TrioGateway (9)Trio BeyondAntonio Farao American QuartetKálmán Oláh TrioJack DeJohnette New DirectionsThe Jack Wilkins QuartetJack DeJohnette QuartetHudson (10)Per Goldschmidt QuartetThe Super Premium BandJack DeJohnette TrioThe Boyé Multi-National Crusade For HarmonyWadada Leo Smith's Great Lakes QuartetSonny Rollins Special Quartet + +238675Jordi RoblesJordi Robles GarridoSpanish producer/Dj from Barcelona. Aka Tim Wokan / Taito Tikaro +Studio: [l=K-Psula Studio]Needs Votehttps://www.facebook.com/jordi.roblesgarridoJ,RoblesJ. RoblesJ.RoblesJordiJordi Robles Aka Taito KitaroJordi Robles GarridoJordo RoblesJordy RoblesRoblesElasticaThe RebelPro-jectCreatures In The NightDual BassTechni-KLK-PsulaTim WokanMetro BassD-Project (3)Disco 2Scott Box3 WaysWok (3)DistorsionPulse (13)Tom D. LuxTaito TikaroDensity (3)KoykanDemons (2)Short Circuit (4)Liquid (30)Question MarkSolar SystemPandemonium (2)Club CorporationDigital-Dee2 Without MoneyLegendaryDisco 1Murphy & BronsonDashaBase ManiaBionnicGeorge & Michael (2)Blue FireDesign (4)2 Minds (4)Tikaro, J. Louis & Ferran + +238690Pat BooneCharles Eugene BooneBorn June 01, 1934 in Jacksonville, FL, United States, he was the second most popular singer of the late 50's (behind Elvis Presley) and sold over 45 million records. +His trademark was his white bucks, an unusual style of shoes that became fashionable for a time in the 50's. +In the summer of 1957, his first major hit, "Love Letters In The Sand" stayed at the #1 spot on the Billboard Charts for five straight weeks. + +Needs Votehttp://www.patboone.com/https://en.wikipedia.org/wiki/Pat_Boonehttps://www.imdb.com/name/nm0004769/?ref_=nv_sr_srsg_0Bab BoonBoneBonneBoomBoonBooneBoone CharlesBoonéC. BooneCh. BooneCharles BooneCharles E Pat BooneCharls BooneD. BooneP BooneP. BoneP. BoonP. BooneP.BoonePatPat BonePat BonnePat BoomPat BoonPat Boone Mit ChorPat Boone With OrchestraPat Boone With Orchestral AccompanimentPat BooniePat BowePat BroonePato BoonePatt BoonT. BooneП. БунПат БунПат БуунПэт Бунパット・ブーンCharles E. BooneThe Pat Boone FamilyVoices For The UnbornPat Boone & Friends + +239071Era (2)Kaarlo Erkki AinamoBorn on January 9th, 1908 in Helsinki, Finland and died on September 16th, 1974. A Finnish lyricist who wrote lyrics for about 100 songs mostly in the 1950s.CorrectErkki EräErkki Ainamo + +239236Gustav MahlerGustav MahlerAustrian composer and conductor of Late Romantic period. +Born 7 July 1860 in Kalischt, Bohemia (today Kaliště, Czech Republic) and died 18 May 1911 in Vienna, Austria-Hungary. + +Late-Romantic Austrian-Bohemian composer and one of the leading conductors of his generation. As a composer, he acted as a bridge between the 19th century Austro-German tradition and the modernism of the early 20th century. While in his lifetime his status as a conductor was established beyond question, his own music gained wide popularity only after periods of relative neglect which included a ban on its performance in much of Europe during the Nazi era. After 1945 the music was discovered and championed by a new generation of listeners; Mahler then became one of the most frequently performed and recorded of all composers, a position he has sustained into the 21st century. + +Born in humble circumstances, Mahler showed his musical gifts at an early age. After graduating from the Vienna Conservatory in 1878, he held a succession of conducting posts of rising importance in the opera houses of Europe, culminating in his appointment in 1897 as director of the Vienna Court Opera (Hofoper). During his ten years in Vienna, Mahler—who had converted to Catholicism from Judaism to secure the post—experienced regular opposition and hostility from the anti-Semitic press. Nevertheless, his innovative productions and insistence on the highest performance standards ensured his reputation as one of the greatest of opera conductors, particularly as an interpreter of the stage works of [a=Richard Wagner] and [a=Wolfgang Amadeus Mozart]. Late in his life he was briefly director of New York's [a=The Metropolitan Opera] and [a=The New York Philharmonic Orchestra]. +He wed fellow composer and musician [a=Alma Mahler-Werfel] on 9 March 1902. They had two daughters, Maria Anna Mahler (03.11.1902-05.07.1907) & [a=Anna Mahler]. + +Mahler's œuvre is relatively small—for much of his life composing was a part-time activity, secondary to conducting—and is confined to the genres of symphony and song, except for one piano quartet. Most of his ten symphonies are very large-scale works, several of which employ soloists and choirs in addition to augmented orchestral forces. These works were often controversial when first performed, and were slow to receive critical and popular approval; an exception was the triumphant premiere of his Eighth Symphony in 1910. Mahler's immediate musical successors were the composers of the Second Viennese School, notably [a=Arnold Schoenberg], [a=Alban Berg] and [a=Anton Webern]. [a=Dmitri Shostakovich] and [a=Benjamin Britten] are among later 20th-century composers who admired and were influenced by Mahler. The International Gustav Mahler Institute was established in 1955, to honour the composer's life and work.Needs Votehttps://gustav-mahler.org/https://music.youtube.com/channel/UC4JndR9Jg60dqinZE45umxwhttps://en.wikipedia.org/wiki/Gustav_Mahlerhttps://www.britannica.com/biography/Gustav-Mahlerhttps://www.theguardian.com/music/2020/jul/29/mahler-where-to-start-with-his-musichttps://www.biography.com/musician/gustav-mahlerhttps://musicianbio.org/gustav-mahler/https://www.famousbirthdays.com/people/gustav-mahler.htmlhttps://www.geni.com/people/Gustav-Mahler/6000000007265312908https://www.classicfm.com/composers/mahler/pictures/mahlers-150th-birthday/5/https://www.imdb.com/name/nm0006178/https://mahlerfoundation.org/https://www.facebook.com/mahlerfoundationhttps://www.instagram.com/mahlerfoundation/https://www.youtube.com/channel/UCCsBTKAleW1FTi7GBpuqJnQhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102815/Mahler_GustavG. MahlerG. MelerG. MelerisG.MahlerGustavGustave MahlerGustave MalherGustaw MahlerMAHLERMahlerMahler G.Mahler GustavMahler, GustavMahler²MalerisMalherMarhlerΜάλερГ. МалерГ.МалерГустав МалерМалерグスタフ・マーラーマーラー + +239399Woody HermanWoodrow Charles Thomas HermanAmerican jazz clarinetist, alto and soprano saxophonist, singer, and big band leader. +Born 16 May 1913 in Milwaukee, Wisconsin, USA. +Died 29 October 1987 in Los Angeles, California, USA. +Starting in high school, he was playing saxophone and clarinet in the Myron Stewart Band in Milwaukee. He switched to the band of violinist Joey Lichter, where he was vocalist ans soloist. His first jazz encounter as active musician was joining [a4860573], where he played for four years. Later, he played for [a280928] and [a675269], before he finally reached the orchestra of [a614341]. When the latter decided to retire in 1936, Herman was the core of the 'hot' fraction of the disbanded orchestra. Together with 8 other musicians of this band, he founded his own orchestra [a284746], which became legendary as a source of jazz talents over decades. He stayed faithful to his orchestra until the end of his life.Needs Votehttps://web.archive.org/web/20210218054903/https://www.woodyherman.com/https://en.wikipedia.org/wiki/Woody_Hermanhttps://www.britannica.com/biography/Woody-Hermanhttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/woody-hermanhttps://www.imdb.com/name/nm0379234/https://www.naxos.com/person/Woody_Herman_4178/4178.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/204456/Herman_Woodyhttps://www.allmusic.com/artist/woody-herman-mn0000958076HermanHerman WoodyHerman, W.HermandHermannHermansHermenHerrmanHerrmannStereophonic Sound Of "Woody Herman"V.W. HermanW. HarmanW. HermanW. HermannW. HrmanW.HermanWHWhoody HermanWilliam HermanWoddy HermanWood HermanWoodrow Charles "Woody" HermanWoodrow Charles Thomas HermanWoodyWoody Charles HermanWoody Herman's SaxesWoody HermannWoody HerrmanWoody WermanВ. ГерманВуди Германウッディ・ハーマンChuck Thomas (4)Woody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdWoody Herman SextetWoody Herman & The HerdGus Arnheim And His OrchestraWoody Herman And His WoodchoppersIsham Jones OrchestraThe V-Disc All StarsWoody Herman's Big New HerdWoody Herman And The Swingin' HerdWoody Herman QuartetThe Woody Herman Big BandWoody Herman And The Las Vegas HerdWoody Herman BandHarry Sosnik And His OrchestraWoody Herman And His Third HerdWoody Herman And The Fourth HerdWoody Herman And The Thundering HerdThe Mystery Band (3)Woody Herman's Four ChipsIsham Jones' JuniorsChuck Thomas And His Dixieland BandWoody Herman's Anglo-American HerdVanderbilt StarsWoody Herman And His OctetWoody Herman & The Second HerdVanderbilt All StarsWoody Herman And His SingersThe Band That Plays The BluesWoody Herman And The Swingin' Herd (2)Woody Herman OctetTom Gerun And His Orchestra + +239499Sal SalvadorSilvio Smiraglia.American jazz guitarist +Born: 21st November 1925 Monson, Massachusetts, USA +Died: 22nd September 1999 Stamford, Connecticut, USA +Worked with [a=Terry Gibbs], [a=Mundell Lowe], [a=Stan Kenton] and [a=Allen Hanlon] amongst others and in his own groups recorded as led. +Needs Votehttps://en.wikipedia.org/wiki/Sal_Salvadorhttps://fromthevaults-boppinbob.blogspot.com/2023/11/sal-salvador-born-21-november.htmlhttps://adp.library.ucsb.edu/names/341953S. SalvadorSal SalvadoreSalvadorSan SalvadorStan Kenton And His OrchestraSal Salvador QuintetSal Salvador QuartetSal Salvador SextetSal Salvador And His OrchestraThe Lenny Hambro QuintetSal Salvador Big BandEddie Bert QuintetFrank Socolow's Sextet + +239643Bobby SimsJazz musician and father of "[a789]" Burns. +For the garage rock guitarist from the 60s, see [a=Bobby Sims (3)]. +Needs VoteBob SimsBoby SimsIke Carpenter And His Orchestra + +239937Pete SeegerPeter SeegerAmerican folk singer and songwriter, born May 3rd, 1919 in Manhattan, New York, USA. He passed away at the age of 94 due to natural causes on January 27th, 2014, Manhattan, New York, USA. Son of [a=Charles Seeger], Jr. and stepson of [a1504444]. + +Inducted into Songwriters Hall of Fame in 1972. +Inducted into Rock And Roll Hall of Fame in 1996 (Early Influence).Needs Votehttps://www.peteseegermusic.com/https://adp.library.ucsb.edu/index.php/mastertalent/detail/209241/Seeger_Petehttps://peteseeger.bandcamp.com/https://peteseegerstormking.bandcamp.com/https://peteseeger.org/https://www.imdb.com/name/nm0781517/https://www.songhall.org/profiles/pete-seegerhttps://en.wikipedia.org/wiki/Pete_Seegerhttps://www.allmusic.com/artist/pete-seeger-mn0000266160A. SeegerB. SeegarB. SeegerEcclesiastes-SeegerEte SeegerFeegerGrandpa PeteP SeagerP SeegerP. SeagerP. SeegarP. SeegerP. SeegersP. SegerP. SegersP. SœgerP.SeegerP.SiegerP; SeegerPSPeet SeegerPeete SegerPetePete And Five StringsPete SeegarPete Seeger & FriendsPete SeegersPete SegarPete SegerPete SegersPete SergerPete SiegerPete SiggerPete-SeegePeter SeegarPeter SeegerPeter SegerPeter seegerPetter SeegerPit SeegerSeagerSeecerSeegarSeegaySeegerSeeger PeteSeeger PeterSeeger Peter "Pete"Seeger [To Trad Fold Spiritual]SeegergSeegersSeeguerSeekerSeergerSegerSegersSeggerSiegerSpeegerStegerSugerSwegerП. СигерП.СигерПит СигерПит СигерСугэрפ. סיגרפיט סיגרビート・シーガーピート・シガーピート・シーガー彼特·西格The WeaversPaul Campbell (2)The Almanac SingersPete Seeger & ChorusThe Union BoysWashboard BandPete Seeger And GroupThe Hooteneers + +240349Kenny AaronsonKenneth AaronsonUS rock bassist. Born in Brooklyn, New York in 1952 and began playing bass at age 14. Needs Votehttps://kennyaaronson.com/homehttps://en.wikipedia.org/wiki/Kenny_AaronsonAaronsonDenny AaronsonK. AaronsonKennyKenny AbronsonKenny AronsonKenny Arronsonkenny AbronsonJoan Jett & The BlackheartsThe YardbirdsStoriesDust (12)HSASSilver CondorDerringer (2)Radio ExileThe SatisfactorsGraham Parker + The Episodes + +240917Ian BettsIan John BettsNeeds Votehttp://www.facebook.com/pages/Ian-Betts/26309891176https://twitter.com/sixthirtyianhttp://soundcloud.com/ianbettsBettsIan Bett'sAirspaceAyanaNeotechnic + +240948Lee WallsLee WallsHard Dance DJ/Producer based in Brighton, UK.Correcthttp://www.facebook.com/pages/Lee-Walls-Music/188901757811170http://www.soundcloud.com/leewallsmusicL. WallsWallsWallsieFlee (2)Glyde (2)IdentikalLD ConceptMetta & Glyde + +240986Morty CraftMorton Irving CraftAmerican label owner, arranger, producer, and songwriter (Born August 19, 1920 in Brockton, Massachusetts. Died January 27, 2022 at the age of 101). He moved to Florida at the age of 92. +Morty Craft was a New York City-based founder of many labels ([l=Most Records (6)], [l=Selma Records], [l=Tel Records]...). In 1957, he started [l=Lance Records (5)], whose biggest success was the doo-wop hit “Alone (Why Must I Be)” by the Shepherd Sisters, which he co-wrote and produced. The song was later covered by Petula Clark. The same year, Craft moved to MGM Records as recording chief and director of single record sales. +His second label was [l=Melba Records], which he founded with Ray Maxwell, the founder of Moonglow (2). In 1959, Craft launched the short-lived [l=Warwick] Records. +Morty worked with a young Paul Simon and Art Garfunkel, as well as Herbie Hancock, Bob Crewe, Connie Francis, Conway Twitty, and dozens of other artists. +Husband of [a=Selma Craft] with whom the [a=Morton & Selma Craft] credit should be used for songwriting collaborations. +Managed various labels and companies: [l1109465], [l703062], [l410698], [l907324], ...Needs Votehttp://www.rockabilly.nl/references/messages/morty_craft.htmhttps://www.noise11.com/news/music-industry-legend-morty-craft-dies-at-age-101-20220203https://www.levitt-weinstein.com/obituaries/Morty-Craft/#!/Obituaryhttps://www.abkco.com/news-feed/celebration-of-the-life-of-morty-craft/CrafCraftCratCrattCroftGraftKraftM CraftM. CraftM. CroftM. GraftM. KraftM.CraftM.GraftMarty CraftMonty CraftMorloMortonMorton - CraftMorton CraftMorton GraftMorty GraftNorton CrastE. JackobeckMorty Craft OrchestraMorton & Selma Craft + +241365Peter La BontéPeter La BontéGerman pop singer, born 5 June 1951 in Munich. +In 1963 he became a member of the young boys choir ensemble [a=Regensburger Domspatzen]. +He studied advertising art and since 1974 he played drums and sang in various Munich rock groups such as M.P.A., Sonnenschiff, [a=Number 9 (2)]. + +1978 first big success as singer and leader of the reggae/new wave formation [a=The Nighthawks (2)], who were instrumental in the breakthrough of the reggae/ska wave in Germany. In 1981 he separated from the group and founded the project [a=Za Za] in 1982.Needs VoteLa BonteLa BontéP. La BonteP. La BontéP. la BontéPeter BontePeter Bonte (La)Peter La BontePeter LaBontéPeter Labontéla BontéZa ZaRegensburger DomspatzenThe Nighthawks (2)Number 9 (2) + +241547Gerry GoffinGerald GoffinAmerican lyricist and songwriter. +b. 11 February 1939, Brooklyn, NY, USA +d. 19 June 2014, Los Angeles, CA, USA +Needs Votehttps://en.wikipedia.org/wiki/Gerry_Goffinhttps://www.imdb.com/name/nm1132342/C. GoffinCarole King-Gerry GoffinCoffinCoffin GeraldD. GoffinDuffinE. GoffinG GoffinG, GoffinG. CoffenG. CoffinG. FoffinG. GaffinG. GoffenG. GofffiniG. GoffinG. Goffin'G. Goffin-C. KingG. Goffin/C. KingG. GofinG. GolfinG. GooffinG. GossinG. GottinG. GriffinG. GuffinG.. GoffinG.GoffinG.T. GoffinGarry GoffinGary GofGary GoffinGeffenGeffinGeoffinGerald CoffinGerald GoffenGerald GoffinGerald Goffin/Carole KingGerarld GoffinGerry CoffinGerry GofinGerry GossinGerry, GGoffenGoffiGoffinGoffin G.Goffin GeraldGoffin JerryGoffin, GGoffin, G.Goffin/KingGoffingGofinGolfinGoofinGossnGottinGroffinGérald GoffinH. GoffinJ GoffinJ. GoffinJ.GoffinJerry GoffinJerry GolfinJerry GossinKoffmanP. GoffinR. GoffinSboffinT. GoffinTerry Goffinゲーリー・ゴーフィンGoffin And King + +242317Richard Evans (2)Richard Lee Cowan EvansU.S. bassist, composer, arranger and producer. Born on December 30, 1932 in Birmingham, Alabama. Died on October 5, 2014 in Natick, Massachusetts. +Evans is best known as producer and arranger for [l=Cadet Records] during the 1960s and early 1970s, working with artists like [a=Ramsey Lewis], [a=Marlena Shaw], and [a=Dorothy Ashby]. In the same period, he also formed [a154794] with whom he recorded several albums. +In the 1970s and 1980s, he worked as a bassist and arranger with artists such as [a=Natalie Cole], [a=Peabo Bryson], and [a=Ahmad Jamal]. Served as a music professor at the Berklee College of Music in Boston for more than two decades. Richard Evans for a brief period in the late 50s was a member of [a=Sun Ra]'s Arkestra, playing on the early Ra album [m84360].Needs Votehttps://funky16corners.com/?s=richard+evans&x=0&y=0EvansEvans, Richard LeeR EvansR. (Scooter) EvansR. EvansR. EvensR. L. EvansR. Lee EvansR.EvansRichardRichard DavisRichard EvansRichard Evans (Greatest)Richard EvensRichard L. EvansRichard Lee EvansRick EvansThe Soulful StringsRichard Evans OrchestraBuddy Rich & His BuddiesThe Paul Winter SextetDodo Marmarosa TrioThe Sun Ra ArkestraThe Richard Evans TrioThe Eddie Higgins Trio + +243192Gene PerlaAmerican jazz bassist. +Born: March 1, 1940 in Woodcliff Lake, New Jersey. + +Gene performed & recorded with Willie Bobo, Woody Herman, Nina Simone, Sarah Vaughan, Elvin Jones, Sonny Rollins. +Needs Votehttp://www.perla.org/G. PerlaGeneGene A. PerlaPerlaStone AllianceWoody Herman And His OrchestraElvin Jones QuartetJazz In The ClassroomThe Elvin Jones Jazz MachineWoody Herman And The Thundering HerdBill Warfield Big BandNew Light (5)Horizons QuartetParker TrioFine Wine Trio + +243708Alison JiearAlison Jiear (born 6 May 1965) is a popular cabaret artist and musical theatre performer on the London cabaret circuit. Jiear was trained at the Queensland Conservatorium of Music, Australia. + +Jiear was one of The Fabulous Singlettes, an Australian girl trio specialising in Motown girl group covers. They appeared at London's Piccadilly Theatre in 1988. + +Her West End musical theatre credits include Shoes at the Sadler's Wells Theatre, On the Town at the English National Opera & Theater Du Chatelet, Paris, Hot Mikado, Jerry Springer: The Opera at the Royal National Theatre and Sydney Opera House and Grease. She was also featured in the motion picture Being Julia.[1] + +Jiear was nominated for the 2004 Laurence Olivier Award for Best Actress in a Musical for her role in Jerry Springer: The Opera, in which she played the character of Shawntel, a woman who dreams of becoming a pole dancer.[2] Though never paid for the project, a remixed version of her rendition of "I Just Wanna Dance" from the musical became a popular dance track in nightclubs in the U.S., Europe and Australia. + +In 2005, she also starred in a humorous Burger King commercial in the UK that pastiched Meat Loaf's music videos. In March 2009, Jiear duetted with Tina Arena at the Sydney Gay & Lesbian Mardi Gras party in the 3am show singing "No More Tears (Enough Is Enough)". She opened the party with her dance club hit "I Just Wanna Dance". + +Her solo Albums include "Forgiveness' Embrace" and "Simply Alison Jiear", both available on iTunes or through her website. Her live CD "Live at Pizza on the Park" is due for release. She also appeared in the Les Misérables film (2012), based on the musical of the same name. + +In May 2015 Jiear appeared on Britain's Got Talent singing You'll Never Walk Alone. She received a yes from all 4 judges, and was picked as one of 45 acts to advance to the semi-finals. She performed in the second semi-final on 26 May, but came 8th in the public vote, therefore not advancing to the final. + +Following her appearance on Britain's Got Talent she was cast in George Stiles & Anthony Drewe's family musical The 3 Little Pigs. Opening at the Palace Theatre, London in Summer 2015.Needs Votehttp://www.alisonjiear.com/Alison JiaerAllison JiearDame Alison JiearJSTOMetro VoicesLondon Voices + +243896Charlie ChaplinSir Charles Spencer Chaplin, Jr.Born April 16th, 1889, in London, England – died December 25th, 1977, in Vevey, Vaud, Switzerland. + +Chaplin was a British comedy actor, and one of the most important personalities in the silent film genre. One of his most famous movies is "The Great Dictator", a satiric movie about Hitler and the Nazi regime. Chaplin wrote, directed, produced, edited, starred in, and composed the music for most of his films. + +Chaplin developed a passion for music as a child, and taught himself to play the piano, violin, and cello. From "A Woman of Paris" (1923) onwards he took an increasing interest in the musical accompaniment to his films. With the advent of sound technology, Chaplin began using a synchronised orchestral soundtrack – composed by himself – for "City Lights" (1931). He thereafter composed the scores for all of his films, and from the late 1950's to his death, he scored all of his silent features and some of his short films. Though Chaplin was not a trained musician & he could not read sheet music, and he needed the help of professional composers such as David Raksin, Raymond Rasch & Eric James when creating his scores, his participation & creative genius in the process could not be denied. + +Chaplin's composition "Smile", composed originally for "Modern Times" (1936) and later set to lyrics by John Turner and Geoffrey Parsons, was a hit for Nat King Cole in 1954. For "Limelight", Chaplin composed "Terry's Theme", which was popularized by Jimmy Young as "Eternally" (1952). Finally, "This Is My Song", performed by Petula Clark for "A Countess from Hong Kong" (1967), reached number one on the UK and other European charts. Chaplin also received his only competitive Oscar for his composition work, as the Limelight theme won an Academy Award for Best Original Score in 1973 following the film's re-release. + +As a filmmaker, Chaplin is considered a pioneer and one of the most influential figures of the early twentieth century. + +In 1975 he was knighted as a Knight Commander of the British Empire by Queen Elizabeth II. + +Father of [a3263771] and [a2017115].Needs Votehttps://www.charliechaplin.com/https://en.wikipedia.org/wiki/Charlie_Chaplinhttps://www.imdb.com/name/nm0000122/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102583/Chaplin_Charliehttps://www.youtube.com/@TheChaplinFilmsC ChaplinC ChaplinC. ChaplanC. ChaplinC. S. ChaplinC.ChaplinCChaplinCh. ChaplinCh. ShaplinCh.ChaplinChapliChaplinChaplin Ch.Chaplin CharlesChaplin, C.Chaplin, CharlesChapmanChar les ChaplinCharle ChaplinCharles ChapinCharles ChaplinCharles ChaplingCharles ChapliniCharles ChaplínCharles ChapmanCharles S.ChaplinCharles Spencer ChaplinCharley ChaplinCharlie ChaplainCharlie Chaplin & His OrchestraCharlie Chaplin (Sir Charles Spencer)Charlie Chaplin Jr.Charlie Chaplin's ThemeCharlis ChaplinCharloe ChaplinCharly ChapliCharly ChaplinChas. ChaplinFeatG. ChaplinL. ChaplinSir C. ChaplinSir Charles ChaplinSir. C. ChaplinVariation of Ch. ChaplinČ. ČaplinasΣαρλόЧ. ЧаплинЧаплинЧарли Чаплинچارلی چاپلینチャーリー・チャップリンチャールズ・チャップリン + +244043Terry ShandTerence Alister ShandAmerican pianist, drummer, vocalist and songwriter. +Born: Uvalde, Texas (USA) October 1, 1904 +Died: Houston, Texas (USA) November 11, 1977 + +He began playing piano in silent movies during the 1920's. He recorded for the Decca and Vocalion labels. He wrote numerous songs with [a=Jimmy Eaton]. + +1921-1922 he played drums and toured with Peck Kelley. +1933 he sang and played piano with [a=Freddy Martin And His Orchestra]. +1938 he formed his own band playing hotels. + +He charted 23 times between 1932 and 1977 in the U.S. (and once in the U.K.). He had a #1 hit with "Cry, Baby, Cry" by Larry Clinton and His Orchestra in 1938 (co-written by [a826048]). He also had two #2 songs that same year in "I Double Dare You" by Russ Morgan and "I'm Gonna Lock My Heart" by Billie Holiday (both also co-written by Eaton). In all, fourteen of his songs made it to the top 10. Fourteen of his charted songs he collaborated with Eaton on and six times with [a570721]. BMI lists 7 of his song titles, the majority of his titles are listed at ASCAP. + +• For the Electronic House/Dub vocalist, please use [b][a=Terry Shand (2)][/b]. +• For the Executive Producer at [l=Eagle Rock Entertainment]/[l=Eagle Vision], please use [b][a=Terry Shand (3)][/b]. +Needs Votehttps://en.wikipedia.org/wiki/Terry_Shand_(musician)http://repertoire.bmi.com/writer.asp?page=1&blnWriter=True&blnPublisher=True&blnArtist=True&fromrow=1&torow=25&affiliation=ASCAP&cae=28480578&keyID=311024&keyname=SHAND%20TERRY&querytype=WriterIDhttps://adp.library.ucsb.edu/names/110844J. ShandSandSchandShadShandShaudShoundShrandStrandT ShandT. ShandT. ShandeT. StrandT.ShandTerry SandTerry ShaneTerryShandFreddy Martin And His OrchestraWingy Manone & His OrchestraJack Teagarden And His OrchestraTerry Shand And His Orchestra + +244728Paul HumphreyPaul Nelson HumphreyAmerican jazz and funk / R&B drummer, born 12 October 1935 in Detroit, Michigan, USA and died on 31 January 2014. +For ASCAP publishing credits please consider [l=Paul Nelson Humphrey Music]. + +Needs Votehttps://en.wikipedia.org/wiki/Paul_HumphreyHumphreyP HumphreyP. HumphreyPaul HumpheryPaul HumphiesPaul HumphreysPaul HumphriesPaul HumphryPaul N. HumphreyPaul Nelson HumphreyAfriqueFreedom SoundsGerald Wilson OrchestraLeonard Feather All StarsLalo Schifrin & OrchestraPaul Humphrey & His Cool Aid ChemistsThe Gerald Wiggins TrioRed Holloway QuartetLes McCann Ltd.The Gene Harris QuartetThe Ernie Watts EncounterHubert Laws GroupThe Night Blooming JazzmenRon Escheté TrioPaul Humphrey SextetGerald Wilson Orchestra of The 80'sSouth Central Avenue Municipal Blues BandSpike Robinson / "Sweets" Edison QuintetRed Holloway QuintetThe Red Holloway/Clark Terry SextetThe Henry Johnson QuartetThe David Silverman Quartet + +244729Roy PorterAmerican jazz drummer +Born July 30, 1923, Walsenburg, Colorado +Died January 25, 1998, Los Angeles, USA. +Moved to Los Angeles in 1944. Performed with [a75617] in 1946 when he was based on the West Coast. Led a group consisting of 17 beboppers in the period 1948-50 featuring [a179055] and [a145272], which recorded for [l33726]. Intermittently musically active in the following years, though in the 1970s, led the [a47382].Needs Votehttps://web.archive.org/web/20010524140306/http://www.jazzhouse.org/gone/lastpost2.php3?edit=920543830https://en.wikipedia.org/wiki/Roy_Porter_(drummer)Daryl R. PorterHarold WestPorterR. PorterR.PorterRay PorterRay PotterRoyRoy Porter SoundsRoy PotterJay T. (3)Roy Porter Sound MachineThe Charlie Parker SeptetThe Charlie Parker QuintetDexter Gordon's All StarsHoward McGhee And His OrchestraHoward McGhee QuintetHoward McGhee QuartetDexter Gordon QuartetThe Bopland BoysRoy Porter Big BandHoward McGhee Jam BandRoy Porter QuintetRoy Porter And 17 Piece Bop Band + +245285Jörg EversGerman musician, composer and producer, born 21.06.1950 in Bayreuth. He has worked in various musical genres, and since 2009 he was chairman of the supervisory board of the German rights society GEMA. Evers died February 12th, 2023. +He studied music in Munich in the late 1960's and started as guitar player in Krautrock bands of the Munich scene in the early 1970's. In 1971, he joined [a201948], he switched to [a601424] in 1972 and was co-founder of supergroup [a728947] in 1973. The band became accompanying band of [a312337] the same year. In the mid 1970's, he started activities as songwrite and arranger and in the late 1970's, he was co-founder of Munich's first Punk band [a580779], which was a reincarnation of Krautrock band Sameti. One of his last steps as active musician was the guitar part for the late [a192177] in 1981. At the same time, he already started as producer, one of his first produced bands was the German New Wave band [a215516] from Munich. In the 1980's, he successfully worked as producer for many bands and artists, as well as producer of TV and film scores (e.g. the score for Germany's TV show "Herzblatt", the score of "[url=https://www.discogs.com/master/118348-Various-Werner-Beinhart]Werner - Beinhart[/url]" amongst others). His way from underground to mainstream music evolved in the 1980's and 1990's as an award-winning producer for mainstream acts. +In the late 1990's, he became executive for music rights societies, first in Bavaria from 1997. In 2002, he became member of the supervisory board of German rights society GEMA, he was their chairman from 2009 to 2012.Needs Votehttp://de.wikipedia.org/wiki/J%C3%B6rg_EversEversEvers, JörgJ EversJ. EvansJ. EversJ.EversJoerg EversJorg EversJorge EversJorz EversJörgJörg-EversManni IckxLou BrushAmon Düül IIEmbryo (3)PACKSameti18 Karat GoldBundesverwaltungsorchesterShah (7) + +245741John SurmanJohn Douglas SurmanEnglish jazz baritone and soprano saxophone, alto, contra-bass, bass clarinet, recorders, piano and synthesizer player and composer, born 30th August 1944, Tavistock, Devon. Won Spellemannprisen (Norwegian Grammy) for best jazz album of 2013 with "Songs About This And That".Needs Votehttps://johnsurman.com/https://johnsurmanbensurman.bandcamp.com/https://en.wikipedia.org/wiki/John_Surmanhttps://www.allmusic.com/artist/john-surman-mn0000189180https://www.ecmrecords.com/artists/1435045844/john-surmanDjån SørmenJ. SurmanJ.D.SurmanJ.SJ.SurmanJSJohnJohn D.SurmanJohn Douglas SurmanSurmanДж. СёрмэнДжон СермэнGil Evans And His OrchestraClarke-Boland Big BandChris McGregor's Brotherhood Of BreathThe TrioThe Mike Westbrook Concert BandS. O. S.Ronnie Scott And The BandJohn Surman QuartetBlues IncorporatedRolf Kühn JazzgroupMumps (2)The Baden-Baden Free Jazz OrchestraThe Willem Breuker - John Surman DuoVáclav Zahradník Big BandMorning Glory (2)Peter Lemer QuintetThe Chris McGregor SeptetMiroslav Vitous GroupThe Barry Altschul QuartetThe Dowland ProjectPaul Bley QuartetPer Husby OrchestraThe Rainbow Band (2)The Ripple EffectEuropean Jazz All StarsJohn Surman TrioMike Westbrook SextetMike Osborne - John Surman QuartetThe Alan Cohen Big BandHumphrey Lyttelton Big BandGuests Of Weather ReportJohn Surman Sextet + +245767NR²Nick Rafferty & Nick RowlandCorrectNR2Nick RaffertyNick Rowland + +247066CaddyshackMatt Morris & Thomas IngamellsCorrectCaddy ShakeThomas IngamellsMatt Morris (5) + +247567Manfred EicherGerman producer and contrabassist, born 9 July 1943 in Lindau. +Studied music at the Academy of Music in Berlin. Co-founded, with Karl Egger and [a1264053], the German label [b]E[/b]dition of [b]C[/b]ontemporary [b]M[/b]usic ([l=ECM Records]) in 1970 for which he is recording producer, publisher and editor. Received the honorary "German Record Critics Award" for his achievements in 1986. Other awards for outstanding productions include the "Grand Prix du Disque" (France), the "Edison Award" (Holland), "Grammy Award" (USA) and DownBeat Producer of the Year ten times. Since 2018, he is an Honorary Fellow of the London [l527847]. +Needs Votehttps://en.wikipedia.org/wiki/Manfred_Eicherhttps://de.wikipedia.org/wiki/Manfred_EicherEicherM. E.M. EicherM.E.ManfredManfred EichlerBerliner PhilharmonikerBob Degen Trio + +248847Jerry WexlerGerald WexlerAmerican journalist, producer and songwriter. +Father of [a377947] and [a903458]. +After being Billboard editor in the postwar years, he joined [l681] in 1953. +With [a253417] and [a251691], he helped the label +to become one of the major players in the music industry. +Inducted into the Rock & Roll Hall of Fame in 1987. +Retired from the music business in the late 90s. + +Born: January 10, 1917 in New York City, New York. +Died: August 15, 2008 in Sarasota, Florida. + +Correcthttps://rockhall.com/inductees/jerry-wexler/https://en.wikipedia.org/wiki/Jerry_WexlerG. WexlerG. WezlerG.WeslerG.WexlerGeraldGerald WexlerGerald WexterGerald WrexlerGerry VexlerGerry WechslerGerry WefflerGerry WexlerJ WexlerJ. GeraldJ. WaxlerJ. WekslerJ. WellerJ. WexerJ. WexierJ. WexlerJ. WexterJ. WezlerJ.WexlerJarry WexlerJeny WexlerJerald WexlerJerrel WexlerJerry "J. Gerald" WexlerJerry 'J. Gerald' WexlerJerry WaxlerJerry WexierJerry WexleJerry WixlerJesmetWaxelWaxlerWaxterWellerWerkslerWeslerWexierWexlerWexleyWexterWezlerWrexlerTex WexJ. Sorel (2)Gerald McPhatterJesmet + +249065Adam NewmanAdam James NewmanBrother of [a=Annabelle Newman].Needs Votehttp://www.myspace.com/adamlab4http://www.adamlab4.comA J NewmanA NewmanA+D+A+M Lab 4A+D+A+M Lab4A. J. NewmanA. NewmanA.D.A.M. Lab4A.J. NewmanA.NewmanAJNewmanAdamAdam Lab 4NewmanNewman, A.The Judas CovenA+D+A+MLab 4The Mind Of GodCreedHyperwaveDrumAura ZBerettaLuna Chique + +249946Kenwood DennardUS drummer and percussionist (born 1 March 1956).Needs Votehttps://kenwooddennard.com/DennardK. DennardKennwood DenanrdKennwood DennardKenwood "Woody" DennardKenwood DenarKenwood DenardKenwood DenmarkKenwood Dennard A.O.Gil Evans And His OrchestraBrand X (3)J-Funk ExpressHoward Johnson & GravityRich Lamanna And The Last Word + +251216Stealth (3)Correct + +251333Johnny GriffinJohn Arnold Griffin IIIAmerican jazz saxophonist +Born 24 April 1928 in Chicago, Illinois, USA, died 25 July 2008 in Mauprévoir, FranceNeeds Votehttps://en.wikipedia.org/wiki/Johnny_Griffinhttps://johnnygriffinmusic.bandcamp.com/https://johnnygriffineddielockjawdavis.bandcamp.com/https://johnnygriffingriffnbags.bandcamp.com/https://www.britannica.com/biography/Johnny-Griffinhttps://www.jazzdisco.org/johnny-griffin/GrffinGriffinGriffin IIIJ. GriffinJ.GriffinJimmy GriffinJohn Arnold Griffin IIJohn Arnold Griffin IIIJohn GriffinJohn Griffin IIIJohnnie GriffinJohnny GreffinJohnny Griffin IIIJohny GriffinLittle Johnny Griffinジョニー・グリフィンClarke-Boland Big BandThe Thelonious Monk QuartetArt Blakey & The Jazz MessengersLionel Hampton And His OrchestraTadd Dameron And His OrchestraThe Chet Baker QuintetThe Johnny Griffin OrchestraThe Dizzy Gillespie Big 7Joe Morris OrchestraVáclav Zahradník Big BandJohnny Griffin SextetThe Thelonious Monk OrchestraJohnny Griffin's Big Soul-BandThe Johnny Griffin QuartetParis Reunion BandClark Terry QuintetLittle Johnny Griffin & His OrchestraRandy Weston SextetPhilly Joe Jones SextetThe Eddie Davis-Johnny Griffin QuintetRaymond Fol Big BandNDR-Jazz-Workshop-BandThelonious Monk NonetBennie Green QuintetJohnny Griffin QuintetJohnny Griffin & Steve Grossman QuintetWes Montgomery All-StarsBoy Edgar Big BandHank Mobley - Johnny Griffin QuintetJon Hendricks - Johnny Griffin GroupDameroniaJohnny Griffin/Art Taylor QuartetJohnny Griffin Septet + +251334Arthur HarperAmerican jazz bassist, worked with: Jimmy Heath, Wes Montgomery, J.J. Johnson, Betty Carter, Ray Bryant and others. +Born: 1939 in Asheville, North Carolina. Died: July 05, 2004 (for other sources: June 28) in Germantown, Pennsylvania. +Uncle of [a=Nioka Workman], and brother-in-law of [a=Reggie Workman].Needs VoteArthur Harper Jr.Arthur Harper, Jr.Woody Herman And His OrchestraThe Wes Montgomery QuartetThe J.J. Johnson SextetWoody Herman & The Young Thundering HerdRay Bryant TrioShirley Scott TrioThe Paul Winter SextetNewport Parker Tribute All StarsWoody Herman And The Thundering HerdOdean Pope & Khan Jamal Quartet + +251511Chest RockwellCor SangersNeeds VoteEquatorDJ WarlockAircheckAquamarineDirk Diggler (2)BCMCor SangersJim LazloSkywalker (3)Caesar (2)Mallorca DJ'sTrance PirateNaginataGreen FlowLuigi SabantiniKen MartonOrgan Donors + +251578Doris TroyDoris Elaine HigginsenAmerican R&B singer and songwriter, aka Mama Soul. +Born on January 6, 1937, in Harlem, New York, USA. +Died on February 16, 2004, in Las Vegas, Nevada, USA. +Lived in London, England, between 1969 and 1974 and did a lot of session work for British bands then. She also released a solo album on Apple whilst living in the UK. + +Sister of [a=Vy Higginsen]Needs Votehttps://en.wikipedia.org/wiki/Doris_TroyD. TroyD.TroyDennis TroyDorisDoris PayneToryTrayTreyTroyTroy, DorisDoris PayneDoris La BelleSoul Sisters (3)Jay And DeeDoris Troy And The Gospel Truth + +251579Liza StrikeLeslie Pauline StrikeUK session singer.Needs Votehttps://www.imdb.com/name/nm0834499/https://www.feenotes.com/database/artists/strike-liza/Alexander StrikeL StrikeL. StrikeL.P. StrikeL.StrikeLesley Pauline Alexander StrikeLesley Pauline StrikeLeslie Pauline StrikeLisa StrikeLisa StrikerLisa StrikesLizaLiza StreicLiza StreikLiza Strick & Co.StrikeLisa StruceThe TransylvaniansFocus ThreeRoger Glover and GuestsThe Soulmates (2)Derek Lawrence StatementThe Jet Set (4) + +251605Esa PethmanEsa PethmanFinnish jazz musician (saxophone, flute), born on May 17th, 1938 in Kuusankoski, Finland. +Died 18.3.2025 Hämeenlinna , Finland.Needs VoteE. PethmanPethmanHeikki Sarmanto Big BandHeikki Sarmanto SextetPertti Metsärinteen YhtyeThe Spike Dope FiveEsa Pethmanin OrkesteriEsa Pethman QuartetEsa Pethmanin YhtyeJazz Society Big BandRadion TanssiorkesteriEsa Pethman QuintetEsa Pethmanin SekstettiOld House Sextet + +251606Reino LaineReino LaineFinnish composer and drummer who has played mostly jazz, born July 11th, 1946 in Helsinki, Finland.Needs Votehttps://fi.wikipedia.org/wiki/Reino_LaineKansanedustaja Reiska LaineLaineLaineen ReiskaRaino LaineRaiskaReino "Reiska" LaineReino Kalevi LaineReino «Reiska» LaineReino ”Reiska” LaineReiskaReiska LaineReiska Reino LaineReiska, Reino LaineEero Koivistoinen Music SocietyHeikki Sarmanto TrioThe Otto Donner TreatmentTed Curson & CompanyUnisonoEero Koivistoinen Kvintetti & SekstettiEero Koivistoinen & Co.Eero Koivistoinen QuartetOlli Ahvenlahti EnsembleJuhani Aaltonen QuartetPekka Pöyry QuartetGoodmansSarmanto-Koivistoinen GroupTeemu Salminen QuartetTeuvo Siikasaari KvintettiJukka Tolonen Ramblin' Jazz BandJukka Hauru & SuperkingsPentti Hietanen Sextet + +251622René UrtregerFrench jazz pianist (born July 6, 1934 in Paris, France).Needs Votehttps://en.wikipedia.org/wiki/Ren%C3%A9_UrtregerR. UrtregerRene AutregerRene UrtegerRene UrtregerRene UtregerRené UrtegenRené UrtegerRené UrtreggerRené UrtrégerRené UtregerRéné UtregerUrtregerThe Miles Davis QuintetThe Chet Baker QuintetThe Nathan Davis SextetHubert Fol QuartetRené Thomas QuintetTrio HumDaniel Humair SoultetRené Urtreger TrioPierre Michelot And His OrchestraBobby Jaspar All StarsMichel Hausser OctetRené Thomas And His OrchestraLionel Hampton And His French New SoundMichel Hausser QuartetMaurice Meunier QuartetBirdland All-StarsMaurice Meunier And His OrchestraRené Urtreger QuintetHubert Fol / Sacha Distel QuintetteQuintet René UrtregerHubert Fol SextetBobby Jaspar & Sacha Distel Quintette + +251623Pierre MichelotPierre MichelotFrench jazz double bassist (born March 3, 1928 in Saint-Denis, Île-de-France (Paris), France, died July 3, 2005 in Île-de-France (Paris), France) +Michelot performed with [a307296], [a251769], [a267089], [a255563], [a258433], [a30486], and [a263796], among others. + +Other groups he performed with include HUM with [a322918] and [a251622], the trio "The Three Bosses" composed of [a29992], supported by [a228917], or in accompaniment of [a282388] with [a280724]. To these formations we can add a great number of jazz musicians like [a253481], [a258422], [a31617], [a23755] (with whom he creates the soundtrack of the [a1054892] film "Ascenseur pour l'échafaud") or [a64694] and [a145256]. In 1959, under the leadership of [a289960], he joined the Trio Play Bach with [a438304]Needs Votehttps://www.youtube.com/watch?v=RYY2Aq4eq5whttps://en.wikipedia.org/wiki/Pierre_Michelothttps://adp.library.ucsb.edu/index.php/mastertalent/detail/331505/Michelot_Pierrehttps://www.bluenote.com/artist/pierre-michelot/L. MichelotL.MichelotMichelotP. MichelotPierr MichelotR. MichelotП. МишелоThe Miles Davis QuintetThe Bud Powell TrioColeman Hawkins And His OrchestraMezz Mezzrow And His OrchestraZoot Sims QuartetClifford Brown SextetBobby Jaspar QuartetJacques Loussier TrioThe Bernard Peiffer TrioChristian Chevallier Et Son OrchestreAlain Goraguer Et Son OrchestreDjango Reinhardt Et Son QuintetteSidney Bechet & His All Star BandL'OrchestreDjango Reinhardt Et Ses RythmesTrio HumBuck Clayton QuintetClyde Borly Et Ses PercussionsGérard Pochonet And His OrchestraThe Sonny Criss QuintetL'Orchestre D'Hubert FolClifford Brown Big BandClifford Brown QuartetMaurice Meunier QuintetArmand Migiani All StarsClaude Bolling Jazz All StarsDexter Gordon QuartetTrabunchePierre Michelot And His OrchestraMartial Solal TrioRichard Galliano QuartetBenny Golson And The PhiladelphiansRoy "King David" Eldridge & His Little JazzParis All Stars (2)Gigi Gryce Clifford Brown SextetGérard Pochonet & His QuartetDjango Reinhardt QuartetThe Benny Carter QuartetBenny Golson QuintetErnie Royal And His All StarsJohnny Griffin & Steve Grossman QuintetChristian Chevallier Jazz QuartetSandy Mosse QuartetMaurice Meunier QuartetBirdland All-StarsPierre Spiers SextetteJames Moody With StringsSidney Bechet SextetMac-Kac Et Son Rock And RollWilliam Boucaya And His "New-Sound" QuartetMaurice Meunier And His OrchestraMarcel Bianchi Et Les Cinq BoogiesNelson Williams' All StarsSacha Distel Et Son EnsembleRoger Guérin Quartet"King David" And His Little Jazz FourHubert Fol / Sacha Distel QuintetteChristian Chevallier TentetStéphane Grappelly Et Son QuartetteChristian Chevallier QuartetSammy Price QuartetSammy Price - Maxim Saury QuintetMezz Mezzrow-Buck Clayton Orchestra + +251688Alan DawsonGeorge Alan DawsonAmerican jazz drummer, vibraphonist and jazz educator (* July 14, 1929 in Marietta, Pennsylvania, USA; † February 23, 1996 in Boston, Massachusetts, USA). +Played with Lionel Hampton, Sabby Lewis, Jaki Byard, Booker Ervin, Dave Brubeck, Lee Konitz, Tal Farlow, Al Cohn, Ruby Braff, Sonny Criss and others. +Needs Votehttps://www.drummerworld.com/drummers/Alan_Dawson.htmlA. DawsonAlAlanAllan DawsonDawsonThe Dave Brubeck QuartetLionel Hampton And His OrchestraBarry Harris TrioLionel Hampton And His All-Star Alumni Big BandSonny Rollins TrioAdam Makowicz TrioLars Gullin QuintetMuse AllstarsThe Ken Peplowski QuintetBill Evans-Lee Konitz QuartetThe Booker Ervin SextetThe Jaki Byard QuartetThe Howard Alden TrioBill Mobley SextetGigi Gryce OctetRolf Blomquist And His BandNew England SonghoundsChuck Florence QuartetGreat Jazz QuartetThe Pro Bow TrioThe Dave Brubeck Trio Featuring Gerry MulliganHarvie S Trio + +251690Jack SixJazz double-bassist and composer, born July 26, 1930 in Danville, Illinois, USA; died March 14, 2015. +Initially learned trumpet as a teenager before switching to bass. He studied at Juilliard in 1955–1956, then played in several big bands, including the Tommy Dorsey band and the bands of Claude Thornhill and Woody Herman. In the first half of the 1960s he played with Don Elliott, Jimmy Raney, Kenny Davern, The Dukes of Dixieland, and Herbie Mann. He became a member of Dave Brubeck's ensemble in 1968, remaining with Brubeck until 1974, and also played with Tal Farlow during this time. In the 1970s he worked with Illinois Jacquet and Jay McShann, among others.Needs Votehttps://adp.library.ucsb.edu/names/344053https://en.wikipedia.org/wiki/Jack_SixJack Eugene SixThe Dave Brubeck QuartetWoody Herman And His OrchestraMarco Di Marco QuartetWoody Herman And The Fourth HerdJohnny Rae's Afro-Jazz SeptetMarty Grosz And His Blue AngelsJack Reilly TrioThe Dave Brubeck Trio Featuring Gerry Mulligan + +251750Tony ColtonAnthony George ChalkSinger/songwriter/producer in England before he moved to Nashville in 1985. +Born on born February 11, 1942 in Tunbridge Wells, Kent, England - died on August 24, 2020 in Nashville, TN. +He has written for and collaborated with artists like Ray Charles, the Allman Brothers, Celine Dion, Willie Nelson, Rod Stewart, Johnny Cash and Tom Waits, among others. +Father of [a1917310] and [a=luke chalk].Needs Votehttps://www.ascap.com/repertory#ace/writer/5810223/Chalk%20Anthony%20GeorgeA. ColtonCaltonColtonCottonCoultonR. ColtonT ColtonT. CaltonT. ColtanT. ColtonT. CottonT. CoultonT.C.T.ColtonTonyTony C.Tony Chalk ColtonTony ColtanTony ColtenTony CorltonTony CottonTony CoultonAnthony ChalkHeads Hands & FeetPoet And The One Man BandTony Colton And The Big Boss Band + +251769Coleman HawkinsColeman Randolph HawkinsAmerican jazz tenor saxophonist. +Born November 21, 1904, St. Joseph, Missouri, USA. Died May 19, 1969, New York, NY, USA. +Also known as Bean or Hawk, Coleman Hawkins started piano lessons when he was five. He switched to the cello at the age of seven and two years later Coleman began to work on the tenor saxophone, turning professional by the age of 12. In August 1923, he began to record with [a307323], whose orchestra also featured [a38201] at this time. Following a period working in Europe (1934-39), shortly after his return to New York, he performed his classic version of "Body and Soul" almost by chance at the end of a session for RCA Victor. For the rest of his career, he mainly led his own groups, playing with [a145256], [a64694], [a23755] and [a229498], among others.Needs Votehttps://en.wikipedia.org/wiki/Coleman_Hawkinshttps://www.britannica.com/biography/Coleman-Hawkinshttps://newyorkjazzworkshop.com/coleman-hawkins/https://www.scaruffi.com/jazz/hawkins.htmlhttps://historicmissourians.shsmo.org/coleman-hawkinshttps://www.imdb.com/name/nm0370098/https://www.treccani.it/enciclopedia/coleman-randolph-hawkins/https://worldcat.org/identities/lccn-n81150284/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103427/Hawkins_Colemanhttps://www.allmusic.com/artist/coleman-hawkins-mn0000776363C. HawkinsC.H.C.HawkinsColaman Hawkins And His ConfreresColemanColeman "Bean" HawkinsColeman - HawkinsColeman - HawksColeman Hall KinsColeman Hawkins And His ConfreresColeman Hawkins And His Tenor SaxColeman Randolph HawkinsColeman, HawkinsColeman-HawksColemann HawkinsColemen HawkinsColemn HawkinsColman HawkinsD. HawkinsH. ClemanHarwkinsHawkHawkinsHawkins ColemanR.C. HawkinsThe Astounding Coleman HawkinsК. ХоукинсКоулмен Хокинсコールマン・ホーキンスコールマン・ホーキンズColeman Hawkins QuartetThelonious Monk SeptetThe Charlie Parker QuintetThe International JazzmenMcKinney's Cotton PickersMetronome All StarsColeman Hawkins All Star BandEsquire All StarsCozy Cole All StarsFletcher Henderson And His OrchestraThe Chocolate DandiesLionel Hampton And His OrchestraClarence Williams' Blue FiveThe Dixie StompersThe Louisiana StompersFletcher Henderson And His Connie's Inn OrchestraThe Mound City Blue BlowersBenny Carter And His OrchestraColeman Hawkins QuintetCharlie Shavers' All American FiveColeman Hawkins And His OrchestraThe Little Chocolate DandiesSpike Hughes And His Negro OrchestraConnie's Inn OrchestraGeorge Wettling's New YorkersBenny Goodman And His OrchestraHorace Henderson And His OrchestraThe Capitol International JazzmenColeman Hawkins Swing FourLeonard Feather All StarsMamie Smith And Her Jazz HoundsColeman Hawkins And His All Star Jam BandColeman Hawkins' All American FourMichel Warlop Et Son OrchestreEast Coast All-StarsColeman Hawkins' All Star OctetThe Prestige All StarsColeman Hawkins SextetColeman Hawkins' 52nd Street All StarsJack Purvis And His OrchestraColeman Hawkins And His Sax EnsembleHenderson's Hot SixBessie Smith And Her BandRed McKenzie And The Celestial BeingsThe Coleman Hawkins TrioColeman Hawkins All StarsClarence Williams' Jazz KingsVarsity SevenColeman Hawkins And His RhythmColeman Hawkins SeptetJubilee All StarsHenry "Red" Allen's All StarsManny Albam And His OrchestraJimmy Rushing And His OrchestraEarl Randolph's OrchestraEarl Hines And His All-StarsColeman Hawkins / Clark Terry QuintetFletcher Henderson's CollegiansColeman Hawkins Big BandAuld-Hawkins-Webster SaxtetClarence Williams StompersRuby Braff's All-StarsMal Waldron's All StarsFletcher Henderson And His Club Alabam OrchestraAllstars (11)Ruby Braff & His AllstarsThe Fletcher Henderson All StarsMetropolitan Opera House Jam SessionDon Redman All StarsEsquire All American Award WinnersMetronome All-Star BandClaude Hopkins All StarsJATP All StarsJoe Williams & FriendsCozy Cole's Big SevenTenor Conclave (2)Henderson's Hot FourJam Session All-StarsColeman Hawkins And His Hot SevenJam Session At The RiversideHenderson's Roseland OrchestraHawkins OrchestraColeman Hawkins & FriendsThe Sound Of Jazz All-StarsEsquire All-American Jazz BandJam Session (10)Coleman Hawkins And His Orchestra (2) + +251771Esko RosnellFinnish jazz drummer. Born 1943, dead 2009Needs VoteE. RosnellE.RosnellEskoEsko "Rusina" RosnellEsko RosnelEsko RossnellEsko Rusina RosnellRosnellRusinaRusina RosnellDay Is OverEero Koivistoinen Music SocietyUmo Jazz OrchestraHeikki Sarmanto Big BandThe Otto Donner TreatmentJukka Tolonen BandDDT JazzbandEsko Linnavalli SextetEsko Linnavallin OrkesteriEsko Rosnell QuartetIlkka Karumo–Seppo Terämaa QuintetTed Curson–Nick Brignola QuintetDopplerin IlmiöNalle Puh Big Band + +251776Gene RameyEugene Glasco RameyGene Ramey (born April 4, 1913, Austin, Texas, USA - died December 8, 1984, Austin, Texas, USA) was an American jazz bassist. He worked with many notable jazz artists including [a258433], [a145262], [a251769], [a257115], [a75617], [a270237], [a23755] and others.Needs Votehttps://en.wikipedia.org/wiki/Gene_Rameyhttps://www.bluenote.com/artist/gene-ramey/https://www.allmusic.com/artist/gene-ramey-mn0000804391/biographyhttps://www.tshaonline.org/handbook/entries/ramey-genehttps://adp.library.ucsb.edu/names/339074Eugene RaimeyEugene RaineyEugene RameyEugène RameyG. RameyGene RaimeyGene RaineyGene RamayGene RamsayGene RamseyGene RaneyRameauRameyДж. РэймиДжин Рэймиジーン・ラメーCount Basie OrchestraThe Thelonious Monk QuintetTeddy Wilson TrioIllinois Jacquet And His OrchestraStan Getz QuartetTeddy Wilson QuartetLester Young QuartetDexter Gordon's All StarsThelonious Monk SextetEddie Davis And His BeboppersLennie Tristano QuartetStan Getz QuintetThelonious Monk TrioJay McShann And His OrchestraLester Young And His BandFats Navarro And His Thin MenLester Young QuintetBuck Clayton With His All-StarsThe Horace Silver TrioCount Basie SextetThe J.J. Johnson QuintetThe Johnny Griffin OrchestraJ.J. Johnson's BoppersTony Scott And His Down Beat Club SeptetStan Getz Tenor Sax StarsLou Donaldson QuartetDuke Jordan TrioThe Birdlanders"Stick" McGhee & His BuddiesThe Jazz Giants '56Lester Young And His OrchestraThe Lester Young-Teddy Wilson QuartetEddie Lockjaw Davis QuartetJohn Hardee SextetBuddy Tate QuartetCount Basie QuintetSnub Mosley QuartetPete Brown SextetteJohnny Letman QuartetVic Dickenson QuartetThe Jimmy Rushing All StarsAl Haig QuintetCount Basie And His NonetBuddy Tate SextetThe Jay McShann All StarsTerry Gibbs Octet + +251777Billy TaylorWilliam Edward Taylor, Jr.American bop/hard bop pianist, educator, composer and band leader. Born: July 24, 1921 in Greenville, North Carolina - Died: December 28, 2010 in New York City, New York. He started his career in 1944. + +[b]Do NOT confuse with the swing bassist/composer [a=Billy Taylor Sr.] ("Finesse") ; both played with [a=Don Byas], [a=Cozy Cole] etc. The two are not related.[/b]Needs Votehttps://web.archive.org/web/20160417040128/http://www.billytaylorjazz.com/https://en.wikipedia.org/wiki/Billy_Taylorhttps://www.arts.gov/honors/jazz/billy-taylorhttps://www.ascap.com/repertory#/ace/writer/30306733/TAYLOR%20WILLIAM%20EB TaylorB. TaylorBi. TaylorBill TaylorBillie TaylorBilly TailorBilly Taylor And His RhythmBilly Taylor With Four FlutesDr Billy TaylorDr. Billy TaylorDr. William TaylorJ.R. TaylorTaylorW. E. TaylorW. TaylorW.E. TaylorW.TaylorWilliam "Billy" TaylorWilliam 'Billy' TaylorWilliam B. TaylorWilliam E. TaylorWilliam Edward "Billy" Taylor, Jr.William Eugene TaylorWilliam TaylorWilliams E TaylorWm. Taylorビリー・テイラーColeman Hawkins QuartetBilly Taylor TrioDuke Ellington And His OrchestraCozy Cole All StarsStuff Smith TrioArtie Shaw And His OrchestraDon Byas QuartetDizzy Gillespie SextetColeman Hawkins QuintetSy Oliver And His OrchestraStan Getz QuartetDon Redman And His OrchestraDon Byas And His OrchestraThe Kai Winding QuintetMundell Lowe QuintetTyree Glenn & His OrchestraBuck Clayton's Big EightJohnny Richards And His OrchestraBilly Taylor QuartetThe Billy Taylor OrchestraThe Billy Taylor ChoraleThe Oscar Pettiford QuartetThe Quincy Jones Big BandThe Kenny Burrell QuartetThe Bill Coleman QuartetEddie South TrioThe Billy Taylor SeptetBilly Taylor's Big FourBilly Taylor QuintetBrick Fleagle's RhythmakersThe Ray Rivera Septet + +251778J.J. JohnsonJames Louis JohnsonAmerican jazz trombonist, composer and arranger +Born January 22, 1924, Indianapolis, Indiana, USA, died February 4, 2001, Indianapolis, Indiana, USA +1941-1942: he toured with the territory bands of Clarence Love and [a1705697]. +1942-1945: With [a258701]'s big band. Made his recording debut (soloed on "Love for Sale" in October 1943) and played at the first Jazz at the Philharmonic (JATP) concert (July 1944). +1945-1946: [a253011]. +1946-1960: Performed with [a257114] (1947-49) and worked with all of the top bop musicians, including [a75617] (with whom he recorded in 1947), the [a64694] big band, and the [a23755] 'Birth of the Cool' Nonet. His own recordings from the era included work with [a251769] (in a group which included [a309986]), [a29992] and [a145264]. He also recorded with the [a311056]. +1951-1952: played with [a255767] and Miles Davis. +1954-1956: formed a two-trombone quintet with [a267186] that became known as [a1696791], reunions would follow. +1956-1960: led a quintet that often included [a298943]; began to focus more on his own compositions, starting with 1956's "Poem for Brass" (issued on Columbia CL 941) and including "El Camino Real" and a feature for [a64694], the album "Perceptions" (Verve V6-8411); his "Lament" became a standard. +1961-1962: worked again with Miles Davis, and led some small groups of his own. +1960's: greater part of time spent writing television and film scores. +By the 1970's, Johnson was sufficiently well-known to continue winning "DownBeat" polls despite his effective absence from the jazz scene. However, starting with a Japanese tour in 1977, Johnson gradually returned to a busy performance schedule; during the 1980's he would go on to lead a quintet that often featured [a552908].Needs Votehttps://en.wikipedia.org/wiki/J._J._Johnsonhttps://jjjohnson.jazzgiants.net/biography/https://www.allmusic.com/artist/jj-johnson-mn0000119111/biographyhttps://www.arts.gov/honors/jazz/jj-johnsonhttps://www.britannica.com/biography/J-J-Johnsonhttps://www.bluenote.com/artist/j-j-johnson/https://www.imdb.com/name/nm0425266/https://www.scaruffi.com/jazz/jj.htmlhttp://www.trombone-usa.com/johnson.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/323857/Johnson_J._JC. C. SiegelJJ J JohnsonJ. J.J. J. JohnsonJ. J. ジョンソンJ. JohnsonJ. S. JohnsonJ.-J. JohnsonJ.J JohnsonJ.J.J.J. Johnson JazzJ.J. Johnson QuartetJ.J. JohnssonJ.J. JohnstonJ.J. JonesJ.J. ジョンソンJ.J.J.J.J.JhonsonJ.J.JohnsonJ.J.ジョンソンJ.L. JohnsonJ.S. JohnsonJJ JohnsonJJ. JohnsonJJ.JohnsonJames "Jay Jay" JohnsonJames JohnsonJames L. JohnsonJames Louis JohnsonJayJay J. JohnsonJay J.JohnsonJay JayJay Jay JohnsonJay JohnsonJj JohnsonJohnsonJonsonMr. Jay Jay JohnsonMr. JohnsonДж. Дж. ДжонсонC.C. SiegelHunt PetersCount Basie OrchestraThe Miles Davis SextetArt Blakey & The Jazz MessengersMiles Davis All StarsThe Modern Jazz SocietyThe Charlie Parker SextetThe Charlie Parker QuintetMiles Davis And His OrchestraDizzy Gillespie And His OrchestraMetronome All StarsColeman Hawkins All Star BandGene Krupa And His OrchestraKenny Dorham OctetQuincy Jones' All Star Big BandThe J.J. Johnson SextetBenny Golson SextetTadd Dameron And His OrchestraRay Ellis And His OrchestraDizzy Gillespie SextetIllinois Jacquet And His OrchestraBenny Carter And His OrchestraColeman Hawkins And His OrchestraLeo Parker's All StarsPete Rugolo OrchestraJ.J. Johnson & His OrchestraCharles Mingus Jazz WorkshopThe Miles Davis NonetThe J.J. Johnson QuintetJ.J. Johnson's BoppersThe Four TrombonesThe Jazz All-StarsColeman Hawkins All StarsBabs Gonzales And His OrchestraThe Modern Jazz EnsembleColeman Hawkins SeptetThe BirdlandersChubby Jackson's OrchestraNewport Parker Tribute All StarsJ.J. Johnson's Bop QuintetteThe Jay And Kai QuintetThe J.J. Johnson And Kai Winding Trombone OctetJ.J. Johnson QuartetThe Quincy Jones Big BandJ.J. Johnson And His Big BandEsquire All American Award WinnersKarl George OctetHoward McGhee All StarsJ.J. Johnson All StarsUrbie Green And Twenty Of The "World's Greatest"Howard McGhee SeptetCannonball Adderley All StarsStan Getz SeptetKenny Dorham NonetJay And Kai Trombone Octet + +251779Kenny DrewKenneth Sidney DrewAmerican jazz pianist, born in New York, August 28, 1928; died August 4, 1993 in Copenhagen, Denmark. Father of jazz pianist [a1010989].Needs Votehttp://en.wikipedia.org/wiki/Kenny_DrewDrewK. DrewKenny Drew And His Progressive PianoКенни Дрюケニー・ドリューSonny Stitt QuartetBen Webster QuartetDexter Gordon QuintetLester Young QuintetClifford Brown All StarsSonny Rollins QuartetAlex Riel TrioThe John Coltrane SextetThe Dexter Gordon & Slide Hampton SextetThe Kenny Drew TrioJohnny Griffin SextetTeddy Edwards QuartetKen McIntyre QuartetThe Kenny Dorham QuintetStuff Smith QuartetClark Terry QuartetJack Sheldon QuintetDexter Gordon QuartetArt Farmer QuintetSonny Criss QuartetKenny Drew QuartetKenny Drew QuintetBuddy DeFranco QuartetThe Johnny Griffin QuartetParis Reunion BandOscar Pettiford SextetBoško Petrović QuartetEddie Lockjaw Davis QuartetThe Buddy Rich QuintetErnie Wilkins Almost Big BandJohn Darvilles QuartetJohnny Coles QuartetThe Ben Webster QuintetJesper Thilo QuartetThe Benny Carter QuartetLeonard Feather's West Coast JazzmenClark Terry - Ernie Wilkins QuintetHoward McGhee All StarsBuddy DeFranco And His TrioBooker Ervin QuartetTina Brooks QuintetHoward McGhee SeptetJesper Thilo/Clark Terry QuintetKenny Drew & Hank Jones Great Jazz TrioErnie Henry QuintetZoot Sims-Kenny Drew QuartetKarin Krog QuintetKarin Krog QuartetDexter Gordon-Albert Mangelsdorff QuintetBenny Bailey-Dexter Gordon All Stars + +251780Tommy PotterCharles Thomas PotterAmerican jazz bassist, born Sep 21, 1918 in Philadelphia, USA, died March 3, 1988 in Philadelphia, USA +Needs Votehttps://en.wikipedia.org/wiki/Tommy_Potterhttps://www.allmusic.com/artist/tommy-potter-mn0000521303/biographyhttps://www.radioswissclassic.ch/it/banca-dati-musicale/musicista/427510c539b05f12e1a5f4db77b31c4843f04/biography?app=truehttps://www.wrti.org/post/bob-perkins-tells-tommy-potter-storyhttps://wbssmedia.com/artists/detail/2297https://adp.library.ucsb.edu/names/338247Charles PotterCharlie PotterT. PotterT: PotterTom PotterTomay PotterTommp PotterTommy PlotterTommy PorterTommy PoterTony PotterТомми Поттерトミー・ポッターGil Evans And His OrchestraThe Miles Davis SextetThe Charlie Parker All-StarsThe Charlie Parker SextetThe Charlie Parker QuintetTommy Flanagan TrioFats Navarro QuintetBilly Eckstine And His OrchestraCharlie Parker And His OrchestraSonny Stitt QuartetStan Getz QuartetWardell Gray QuartetSonny Stitt BandLee Konitz SextetStan Getz QuintetBud Powell's ModernistsSonny Rollins QuartetAl Cohn QuartetCharlie Parker With StringsBarry Ulanov And His All Star Metronome JazzmenAl Haig SextetMiles Davis And His BandMax Roach QuintetThe Red Norvo TrioWillis Jackson QuintetSonny Rollins TrioThe Kenny Dorham QuintetSonny Stitt & The GiantsAl Haig TrioAl Haig QuartetFreddie Redd TrioBennie Green And His OrchestraOscar Pettiford SextetThe Cecil Payne QuartetThe Harry "Sweets" Edison QuintetDon Lanphere QuintetBennie Green SeptetJo Jones And His OrchestraAl Cohn-Richie Kamuca SextetAl Haig QuintetMiles Davis And His Cool WailersJo Jones Sextet + +251781Connie HenryCorrectConrad Henry + +251782Connie KayConrad Henry KirnonAmerican jazz drummer +Born April 27, 1927 in Tuckahoe, New York; died November 30, 1994 +Needs Votehttps://adp.library.ucsb.edu/names/324826C. KayC. KayeConnie KayeConnie RayConny KayConrad "Connie Kay" KirnonConrad KirnonKayК. КейКонни КейКонни Кэйコニー・ケイThe Modern Jazz QuartetThe Modern Jazz SocietyStan Getz QuintetLester Young And His BandChet Baker SextetSonny Rollins QuartetThe Bobby Timmons TrioThe Milt Jackson QuartetMilt Jackson OrchestraMilt Jackson SextetJoe Newman SextetMilt Jackson And Big BrassGrant Green TrioThe Scott Hamilton QuartetSonny Rollins TrioThe Modern Jazz EnsembleLester Young And His OrchestraThe Lucky Thompson QuartetThe Sextet Of Orchestra U.S.A.Orchestra U.S.A.The Kenny Burrell QuartetPaul Desmond And His FriendsThe New Jazz QuartetMichel Sardaby TrioThe John Bunch QuintetThe John Bunch QuartetBirdland All-StarsThe Cal Collins QuintetLester Young All-Stars QuintetPaul Desmond Jim Hall Quartet + +251783Tadd DameronTadley Ewing Peake DameronAmerican jazz pianist, arranger and composer, born February 21, 1917 in Cleveland, Ohio, USA, died March 8, 1965 in New York. + + +Needs Votehttps://en.wikipedia.org/wiki/Tadd_Dameronhttp://www.bluenote.com/artists/tadd-dameronhttps://www.allmusic.com/artist/tadd-dameron-mn0000016759https://www.britannica.com/biography/Tadd-Dameronhttps://adp.library.ucsb.edu/names/310789CameronDamDameraonDameroDameronDamersonEllinI. DameronPameronT DameronT, DameronT. DameronT. DameronT. DimmeronT.DameronTadTad DameronTaddTadd DameonTadd DamersonTadd E DameronTadd E. P. DameronTadd TameronTadd-DameronTadley Ewing Peake "Tadd" DameronTadley Ewing Peake “Tadd” DameronTed DameronTedd DameronThadd DameronTodd DameronTodd DomeronТ. ДемеронТэдд ДэймронFats Navarro QuintetThe Tadd Dameron SextetTadd Dameron And His OrchestraDexter Gordon And His BoysDexter Gordon QuintetFats Navarro And His Thin MenTadd Dameron QuintetMiles Davis-Tadd Dameron QuintetTadd Dameron SeptetTadd Dameron And His BandFats Navarro And His BandTadd Dameron Quartet + +251786Coleman Hawkins QuartetCorrectColeman Hawkins & His QuartetColeman Hawkins And His QuartetColeman Hawkins En Zijn KwartetHawkins QuartetThe Coleman Hawkins QuartetThe QuartetColeman Hawkins' All American FourBuddy RichColeman HawkinsBilly TaylorRay BrownTommy FlanaganTeddy WilsonOscar PettifordCozy ColeMilt HintonJo JonesDenzil BestShelly ManneHank JonesEddie LockeMajor HolleyKenny KerseyBilly HadnottShadow WilsonIsrael CrosbyEddie Robinson (4) + +251873Art PepperArthur Edward Pepper, Jr.American jazz saxophonist +Born September 1, 1925 in Gardena, California, died June 15, 1982 in Los Angeles, California + +Starting on clarinet & switching to alto-sax at 13, Pepper was playing professionally with [a=Benny Carter] by the age of 17. +After being drafted for service in 1943, Pepper was a leading alto-saxophonist in the 1950's, most often associated with the West Coast Jazz scene. +A 1982 Down Beat Jazz Hall of Fame inductee.Needs Votehttps://en.wikipedia.org/wiki/Art_Pepperhttps://artpepper.bandcamp.com/https://jazzwestcoastresearch.blogspot.com/2016/04/art-pepper-discovery-sessions-james-a.htmlhttps://www.britannica.com/biography/Art-Pepperhttps://www.scaruffi.com/jazz/pepper.htmlhttps://www.allmusic.com/artist/art-pepper-mn0000505047https://www.imdb.com/name/nm0672570/https://www.jazzdisco.org/art-pepper/https://adp.library.ucsb.edu/index.php/mastertalent/detail/207788/Pepper_ArtA PepperA. PepperA.PepperArtArt PeeperArt SaltArthur PepperB2Pepperアート・ペッパーArt SaltStan Kenton And His OrchestraShelly Manne & His MenQuincy Jones' All Star Big BandRussell Garcia And His OrchestraArt Pepper QuartetShorty Rogers And His GiantsArt Pepper QuintetShorty Rogers And His OrchestraAndré Previn And His OrchestraChet Baker SextetArt Pepper NineArt Pepper SextetThe Milcho Leviev QuartetShelly Manne & His Hollywood All StarsMarty Paich Big BandThe Marty Paich QuartetShorty Rogers Big BandJimmy Giuffre's OrchestraThe John Graas NonetThe Ted Brown SextetPete Jolly & His West Coast FriendsJack Sheldon & His West Coast FriendsWarne Marsh QuintetShelly Manne SeptetJack Sheldon And His Exciting All-Star Big-BandAndré Previn EnsembleSonny Stitt & His West Coast FriendsRichie Cole QuintetLee Konitz & His West Coast FriendsBill Watrous QuintetThe Chet Baker-Art Pepper SextetThe Tom Talbert Jazz OrchestraBarney Kessel SeptetThe Poll CatsChet Baker Big BandArt Pepper + ElevenJohn Graas Quintet + +251875Leroy VinnegarLeroy VinnegarAmerican jazz bassist, born July 13, 1928 in Indianapolis, Indiana, died August 3, 1999 in Portland, Oregon + + +Needs Votehttps://it.wikipedia.org/wiki/Leroy_Vinnegarhttps://adp.library.ucsb.edu/names/349372L. VenigarL. VinnegarL. WinnegarL.WinegarLeRoy VinnegarLeroyLeroy VinegarLeroy VinneganLeroy VinnegardLeroy WinegarVinnegarЛерой Виннегарリロイ・ヴィネガーThe CrusadersThe Red Garland TrioThe Joe Castro QuartetChet Baker QuartetThe Benny Goodman QuintetGerald Wilson OrchestraSonny Stitt QuartetStan Getz QuartetHerbie Mann QuartetArt Pepper QuartetArt Pepper QuintetChet Baker SextetHarold Land QuintetTerry Gibbs QuartetLes McCann Ltd.Pepper Adams QuintetGerry Mulligan QuintetHampton Hawes TrioTeddy Edwards QuartetThe Kenny Dorham QuintetLeroy Vinnegar SextetShelly Manne & His FriendsJack Sheldon QuintetCy Touff QuintetDexter Gordon QuartetSonny Criss QuartetKenny Drew QuartetConte Candoli All StarsKenny Drew QuintetCedar Walton QuartetPhineas Newborn TrioThe Victor Feldman QuartetCedar Walton TrioThe Joe Castro TrioLeroy Vinnegar QuintetThe Gerald Wilson Big BandThe Richie Kamuca QuartetCedar Walton QuintetLou Levy QuartetThe Bill Perkins QuartetHerb Geller SextetteCy Touff OctetBuddy DeFranco And His OrchestraThe Hampton Hawes All-StarsThe Herman Foster TrioGary Lefebvre QuartetLeroy Vinnegar QuartetStan Levey SextetThe Benny Carter QuartetShelly Manne QuintetLeonard Feather's West Coast JazzmenThe Georgie Auld QuintetBill Berry And The LA BandThe Chet Baker-Art Pepper SextetBuddy DeFranco And The All-StarsConte Candoli QuintetJoe Albany TrioHerb Geller QuintetJoan Steele TrioThe Carl Perkins TrioThe Leroy Vinnegar OrchestraDylan Cramer QuartetLeroy Vinnegar TrioThe Contemporary LeadersSerge Chaloff QuartetJessica Williams & Leroy Vinnegar Trio + +251878Chuck ThompsonCharles Edmund ThompsonAmerican jazz drummer, born June 4, 1926 in New York; died March 7, 1982 in Los Angeles. +Thompson has recorded with [a=Charlie Parker] (1946), [a=Howard McGhee] and [a=Benny Carter] (1947), [a=Dexter Gordon] (1947, 1952, 1955), [a=Stan Kenton] (1949), [a=Wardell Gray] (1950), [a=Hampton Hawes] (1955-1956), and [a=Sonny Criss] (1956-57).Needs VoteC. ThompsonCharles "Chuck" ThompsonCharles ThompsonChuch ThompsonChuck ThomsonThompsonDexter Gordon's All StarsWardell Gray QuartetThe Sonny Criss OrchestraHampton Hawes TrioDexter Gordon QuartetDexter Gordon & Orchestra + +252016Bernard LubatFrench (library) music composer, singer, pianist, vibraphonist, accordionist, drummer, band leader +Born on May 12, 1945 in Uzeste in the Southwest of France +Needs Votehttps://en.wikipedia.org/wiki/Bernard_LubatB LubatB. LubatB. LubatB. LubertB.LubatBernard LubaD. LubatLubatOrch. B. LubaPiano Lubat SoloStan Getz QuartetEnsemble Musique VivanteThe Jef Gilson NonetLubat, Louiss, Engel GroupIvan Jullien Big BandBernard Lubat And His Mad DucksLes Double SixBernard Lubat QuartetSwing Strings SystemCompagnie Lubat Dé GasconhaLa Compagnie Bernard LubatPercussion Experience + +252017René ThomasRené ThomasBelgian jazz guitarist +Born February 25, 1927 in Liège, Belgium, died January 03, 1975 in Santander, Spain + +Started his career just after World War 2 and settled in Paris in the 1950's. Around 1956 he moved to Canada and played in the U.S.A. Moved back to Europe in 1962 and died in Spain in 1975. René Thomas can be heard as a sideman on records by Sonny Rollins, Stan Getz, Chet Baker, Kenny Clarke, Eddy Louiss, Toshiko Akiyosho, Bobby Jaspar, Ingfried Hoffman, Lucky Thompson... +He recorded 4 albums under his own name, one co-leading with Bobby Jaspar and one with Jacques Pelzer.Needs Votehttp://thomasia.free.fr/https://www.jazzinbelgium.com/person/rene.thomasR. ThomasRene ThomasRene' ThomasThomasStan Getz QuartetBobby Jaspar QuartetChet Baker SextetRené Thomas QuintetThe Sonny Criss QuintetThomas - Jaspar QuintetToshiko And Her International Jazz SextetJacques Pelzer Modern Jazz SextetIngfried Hoffmann & His QuartetThomas Pelzer LimitedRené Thomas And His OrchestraThe René Thomas Modern GroupChet Baker / René Thomas QuintetThe René Thomas TrioBobby Jaspar-René Thomas QuartetRené Thomas QuartetRené Thomas-Jimmy Smith Trio + +252029Lex HumphriesLex P. Humphries, IIIAmerican jazz drummer and percussionist, born August 22, 1936 in New York City, New York, died July 11, 1994 in the same city. +Played with Chet Baker (1956), Lester Young (1956), Dizzy Gillespie (1958), Art Farmer (1959-1960), John Coltrane (1959), Donald Byrd (1959-1960), Duke Pearson(1959-1960), Wes Montgomery (1961), McCoy Tyner (1963), Yusef Lateef (1960-1963) and others. Joined Sun Ra in 1965, left in 1981 to work freelance in Philadelphia.Needs Votehttps://en.wikipedia.org/wiki/Lex_Humphrieshttp://www.bluenote.com/artists/lex-humphriesLes HumphriesLex HumpfriesLex HumphreysLex HumpriesJunior Mance TrioLester Young QuartetDoug Watkins QuintetThe JazztetJohn Handy QuartetThe Sun Ra ArkestraDuke Pearson Trio + +252034John GilmoreAmerican Jazz tenor saxophonist. +Born September 28, 1931 in Summit, Mississippi. +Died August 20, 1995 in Philadelphia, Pennsylvania. +Best known for having been one of the pillars of [a2219395] for four decades (from the 1950's to 1990's), devoting himself to the band's experimental music, with only a few exceptions, and restricting his career elsewhere. He also occasionally played bass clarinet and percussion. [a97545] was so impressed by his sound that he took informal lessons from Gilmore in the late 50s, although Gilmore was 5 years younger than himself.Needs Votehttp://www.jazzhouse.org/gone/lastpost2.php3?edit=920671464https://www.bluenote.com/artist/john-gilmore/https://en.wikipedia.org/wiki/John_Gilmore_(musician)https://www.nytimes.com/1995/08/22/obituaries/john-gilmore-63-saxophonist-in-the-avant-garde-of-jazz.htmlGilmoreJ. GilmoreJGJohn E. GilmoreJohn GilmourArt Blakey & The Jazz MessengersThe Sensational Guitars Of Dan & DaleSun Ra QuartetThe Sun Ra All StarsSun Ra SextetElmo Hope EnsembleThe Sun Ra Arkestra + +252127Edmundo RosEdmundo William RosTrinidadian-Venezuelan orchestra conductor, born December 7, 1910 in Port of Spain, Trinidad, died October 21, 2011 in Alicante, Spain + +The family moved to Caracas, Venezuela. His musical career started in the army, then he became the tympanist in the Symphony Orchestra of Venezuela. He moved to London in 1937 to continue classical studies, but popular music was to become his career. He played drums in the [a=Fats Waller] recordings, played percussion and sang in Don Marino Barreto's Cuban band and formed his five-piece Rumba Band in 1940, and the rest is history. + +Edmundo's Rumba Band with strange rhythms was a smash hit in London, although the Nazi bomb almost hit the club. His first recording for Parlophone was Record of the Month in June 1941 (Harlequin HQ CD 15). The contract with the famed Bagatelle Restaurant opened the doors for Ros to high society. All the leaders of Allied Countries and the Royal Family came there to dine and listen to his Rumba Band. In 1951 he bought the famous Coconut Grove and named it "Edmundo Ros Dinner and Supper Club". Only those mentioned in "Who's Who" were allowed in the club. The Club was world famous and the BBC had regular raio broadcasts there. In the late 1950's Ros got a smart idea of recording Broadway musical melodies arranged to different Latin rhythms: the mambo, cha cha cha, rumba, samba, baion, bolero, valse creole, meringe, guaracha, and the conga. He also made a series of TV shows for the US and European markets. The 1960's was the the peak of his popularity and commercial success. + +He retired in 1975 and has lived with his wife Susan in Alicante, Spain since then. In 1994 Edmundo conducted and sang with the BBC Big Band with Strings at The Queen Elizabeth Hall in London. The other conductor was [a=Stanley Black]. The concert was broadcast over BBC Radio 2 and it was such a success that a Japanese recording company invited them into a recording studio in London to make yet another CD. +Needs Votehttp://www.edmundoros.com/http://de.wikipedia.org/wiki/Edmundo_RosBE RosE. RosEdm. RossEdmond RosEdmondo RosEdmoundo RosEdmund RosEdmundoEdmundo RiosEdmundo Ros And ChorusEdmundo RossJ. RiosJ. RosR. RiosRiosRosRossRíosEdmund DouglasEdmundo Ros & His OrchestraFats Waller & His RhythmEdmundo Ros And His Rumba BandEdmundo Ros & His Ros ChildsJose MicheloEdmundo Ros & Ensemble + +252308Wynton KellyWynton Charles KellyBorn December 2, 1931 - Brooklyn, New York, USA, died April 12, 1971 - Toronto, Ontario, Canada +Wynton Kelly was an American jazz pianist. Kelly worked with [a=Miles Davis] from 1959 to 1961. Recorded as a leader for [l281], [l34094], [l34488], and [l5041].Needs Votehttp://en.wikipedia.org/wiki/Wynton_Kellyhttp://www.bluenote.com/artists/wynton-kellyhttps://www.jazzdisco.org/wynton-kelly/discography/https://www.allmusic.com/artist/wynton-kelly-mn0000684253https://audiscography.web.fc2.com/wk.htmKellyPWynton KellyW. KelleyW. KellyW.KellyWington KellyWinton KellyWyn KellyWyntonWynton C. KellyWynton KelleyWynton Kelly & FriendsWyntonton KellyУ. КеллиУинтон Келлиウィントン・ケリーウイントン・ケリーThe Miles Davis SextetThe Miles Davis QuintetThe Cannonball Adderley QuintetBillie Holiday And Her OrchestraDizzy Gillespie Big BandBenny Golson SextetArt Pepper QuartetTony Scott And His OrchestraLester Young QuintetThe Roland Kirk QuartetArt Farmer QuartetChuck Mangione QuintetWalter Benton QuintetLee Morgan QuintetBabs Gonzales And His OrchestraSonny Criss QuartetClark Terry QuintetCannonball Adderley QuartetThe Pepper-Knepper QuintetWynton Kelly TrioJimmy Heath QuintetWynton Kelly SextetErnie Henry QuartetJimmy Cobb's OrchestraBlue Mitchell SextetThe Riverside Jazz StarsThe Blue Mitchell OrchestraSam Jones & Co.Charlie Persip's Jazz StatesmenBenny Golson QuintetJimmy Heath SextetKing Curtis QuintetThe Wynton Kelly QuartetThe Charles Mingus GroupBunky Green SextetBenny Golson QuartetErnie Henry OctetJimmy Cobb QuintetJohnny Griffin SeptetSonny Redd Quintet + +252310Bill EvansWilliam John EvansAmerican jazz pianist and composer. Younger brother of [a3399152] Father of [a6646360]. + +Born 16 August 1929 in Plainfield, New Jersey, USA, died 15 September 1980 in NYC, New York, USA (aged 51) + +William John Evans (better known as Bill Evans) was one of the most famous and influential American jazz pianists of the 20th century. His use of impressionist harmony, inventive interpretation of traditional jazz repertoire, and trademark rhythmically independent, "singing" melodic lines influenced a generation of pianists. + +Winner of 7 Grammy Awards: +- Best Instrumental Jazz Performance - Soloist Or Small Group for [m=280623] +- Best Instrumental Jazz Performance - Small Group Or Soloist With Small Group for [m=68359] +- Best Jazz Performance - Small Group Or Soloist With Small Group for [m=243667] +- Best Jazz Performance By A Group for [m=333441] +- Best Jazz Performance By A Soloist for [m=333441] +- Best Jazz Instrumental Performance, Group for [m=371751] +- Best Jazz Instrumental Performance, Soloist for [m=225555] + +Database shared names: +Contemporary keyboardist: [a453601]. +Jazz saxophonist: [a503619]. +Studio technician: [a573939].Needs Votehttps://billevansofficial.com/https://billevans.bandcamp.com/https://x.com/EvansJazzPianohttps://www.facebook.com/BillEvansOfficialhttps://www.youtube.com/c/BillEvansOfficialhttps://www.instagram.com/billevansestate/https://open.spotify.com/intl-fr/artist/4jXfFzeP66Zy67HM2mvIIF?si=B6zbYnwQSCWX-ej1I_1MNQ&referral=labelaffiliate&utm_source=1100lzFCQpG8&utm_medium=Indie_CDBaby&utm_campaign=labelaffiliate&nd=1&dlsi=f403a8bcdd3341d6https://music.apple.com/us/artist/bill-evans/117975https://www.allmusic.com/artist/bill-evans-mn0000764702https://www.britannica.com/biography/Bill-Evanshttps://www.allaboutjazz.com/musicians/bill-evans/https://www.maramarietta.com/the-arts/music/jazz/bill-evans/https://www.steinway.com/news/features/bill-evanshttps://www.jerryjazzmusician.com/the-compositional-genius-of-bill-evans-a-brief-overview-playlist-by-bob-hecht/https://en.wikipedia.org/wiki/Bill_EvansB EvansB, EvansB. EVansB. EavansB. EvanceB. EvansB.EvansBil EvansBillBillEvansBilly EvansEvansEvensIgor BrilJ.W. EvansW. EvansWilliam Bill EvansWilliam EvansWilliam John "Bill" EvansWilliam John EvansWilly "Fingers" EvansБ. ЭвансБил ЕвансБил ЭвансБилл Эвансビル・エヴァンスビル・エヴァンスThe Miles Davis SextetThe Miles Davis QuintetThe Cannonball Adderley QuintetThe Bill Evans TrioTadd Dameron And His OrchestraTony Scott And His OrchestraDave Pike QuartetChet Baker SextetThe Tony Scott QuartetCharles Mingus SextetGeorge Russell & His SmalltetThe Prestige All StarsThe Oliver Nelson SextetGeorge Russell OrchestraBill Evans QuintetBill Evans & OrchestraDon Elliott QuartetThe Eddie Costa QuartetBill Evans-Lee Konitz QuartetTony Scott TentetOliver Nelson SeptetThe Bill Potts Big BandThe Joe Puma QuartetBill Evans DuoHal McKusick Sextet + +252311Jimmy CobbWilbur James CobbAmerican jazz drummer +Born January 20, 1929 in Washington, D.C., died May 24, 2020 in Manhattan, New York +For the jazz trumpet/cornet player, please use [a934084].Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Cobbhttps://www.drummerworld.com/drummers/Jimmy_Cobb.htmlhttps://jimmycobb.bandcamp.com/https://jimmycobbsmoke.bandcamp.com/https://www.pas.org/about/hall-of-fame/jimmy-cobbhttps://www.arts.gov/honors/jazz/jimmy-cobbhttps://www.allmusic.com/artist/jimmy-cobb-mn0000350892https://adp.library.ucsb.edu/names/1054631 to 4, 7 to 9CobbJ. CobbJames CobbJim CobbJimmie CobbJimmy CobJimy Cobb[Uncredited]Дж. Коббジミー・コブGil Evans And His OrchestraThe Red Garland TrioThe Miles Davis SextetThe Miles Davis QuintetThe Cannonball Adderley QuintetNat Adderley SextetArt Pepper QuartetEarl Bostic And His OrchestraThe Bobby Timmons TrioShirley Scott TrioNat Adderley QuintetBill Hardman QuintetThe Wes Montgomery TrioThe Great Jazz TrioWalter Benton QuintetKenny Drew QuartetKenny Drew QuintetBuddy DeFranco QuintetCannonball Adderley QuartetPeter Bernstein QuartetWynton Kelly TrioCedar Walton TrioKenny Dorham SeptetPepper Adams Donald Byrd QuintetRoman Schwaller JazzquartetNorris Turney QuartetWynton Kelly SextetSteve Grossman QuintetThe Walter Bishop, Jr. TrioJimmy Cobb's MobJimmy Cobb's OrchestraThe Kenny Burrell QuintetThe New York Saxophone MadnessRoyce Campbell TrioA NYC TributeDan Nimmer TrioJimmy Cobb QuartetArnett Cobb And His MobbEddie Gomez QuartetThe Warren Vaché QuintetThe Wynton Kelly QuartetDado Moroni TrioHamiet Bluiett SextetBunky Green SextetRahn Burton TrioBertha Hope TrioBenny Golson QuartetAvi Lebo Double Trombone QuintetJimmy Cobb TrioMassimo Faraò Double Piano QuartetJimmy Cobb QuintetJimmy Cobb Italian TrioBrian Lynch / Tomonao Hara QuintetGenerations (7)Kind Of Blue ProjectCurtis Fuller QuartetKenny Barron-John Hicks QuartetJohn Hicks / Elise Wood QuintetJohn Hicks / Elise Wood Quartet + +252391John DenverHenry John Deutschendorf Jr.American guitarist, singer, composer, actor, humanitarian, and environmentalist born December 31, 1943 in Roswell, New Mexico and died October 12, 1997 at Pacific Grove, California when the single-engine airplane he was piloting crashed into the sea. He was 53 years old. +He is known for popularizing acoustic folk music in the 1970s as part of the ongoing singer-songwriter movement of the mid-to-late 20th century. Denver is widely recognized as a cultural icon of the American West. He began his career as a folk singer in [a1665426] and [a3911887] in the 1960s, before beginning his successful solo country and pop career of the 1970s and 80s. He was one of the top five best-selling artists of all time with 14 gold and eight platinum albums in the United States. +Inducted into the Songwriters Hall of Fame in 1996.Needs Votehttps://johndenver.com/https://www.facebook.com/JohnDenver/https://www.classicbands.com/denver.htmlhttps://en.wikipedia.org/wiki/John_Denverhttps://www.imdb.com/name/nm0000135/https://www.songhall.org/profile/John_Denverhttps://mnmusichalloffame.org/john-denver/https://www.allmusic.com/artist/john-denver-mn0000811622Bob DenverDenverDenver JDenver JohnDeutschendorfDënverH J. DenverI. DenverJ DenverJ. DenverJ.DenverJ/ DenverJhon DenverJohnJohn "Rocky Mtn. High" DenverJohn Den VerJohn Denver (Deutschendorf)John DenvevJohn John DenverДенверДж. ДенверДжон ДенверДжон Денвърג'ון דנברジョン・デンバー丹弗約翰丹佛존 덴버존덴버Henry John Deutschendorf Jr. + +252539Andrew Loog OldhamAndrew Loog OldhamEnglish producer and former manager of [a=The Rolling Stones], born 29 January 1944 in London. Founder of [l=Immediate]. After working for Carnaby Street mod designer John Stephen and later as an assistant to then-emerging fashion designer Mary Quant, Oldham became a publicist for British and American musicians and for producer [a=Joe Meek], and had publicity roles for [a=Bob Dylan] (on his first UK visit) and [a=The Beatles] (working for [a=Brian Epstein] in early 1963. He and [a=Eric Easton] founded [l=Impact Sound], and co-managed the Stones until Eason's ousting in 1965. Oldham continued as manager and producer until 1967, when he resigned after Jagger and Richards' drug bust - they found him unsupportive in their time of need. + +He went on to he sign/produce acts for Immediate. Artists he worked with included [a=P.P. Arnold], [a=Chris Farlowe], [a=The Small Faces], [a=John Mayall & the Bluesbreakers], [a=Rod Stewart], [a=The Nice], [a=Jimmy Page], [a=Nico], [a=Jeff Beck], [a=Eric Clapton], [a=Amen Corner], [a=The McCoys], [a=The Strangeloves], [a=Duncan Browne], [a=Humble Pie], [a=Donovan], and [a=Gene Pitney].Needs Votehttps://andrewloogoldham.net/https://www.facebook.com/andrewloogoldham/https://twitter.com/loogoldhamhttps://www.rockhall.com/inductees/andrew-loog-oldhamhttps://en.wikipedia.org/wiki/Andrew_Loog_Oldhamhttps://www.imdb.com/name/nm0646141/A Loog OldhamA OldhamA. L. OldhamA. L. OldmanA. LoogA. Loog OldhamA. Loog OldhanA. Loog OldmanA. Loog-OldhamA. OldhamA.L. OldhamA.L.OldhamA.Loog OldhamA.Loog, OldhamA.Loog-OldhamA.OldhamAdrew Loog OldhamAldhamAndesoundAndrewAndrew ''Loog'' OldhamAndrew 'Loog' OldhamAndrew L. OldhamAndrew Lobg OldhamAndrew Logg OldhamAndrew Long OldhamAndrew Loog Oldham, ProducerAndrew Loog OldmanAndrew LoogOldhamAndrew LoogoldhamAndrew Loon OldhamAndrew OldhamAndrew OldhenAndrew OldmanAnfrew OldhamDlohamL. OldhamLoogLoog At The House Of ImmediateLoog OldhamLoog OldhaveLou GoldhamO.Andrew LoogOldhamOldham Andrew LoogOldhanOldharnOldhaveOldmanThe Incredible Andrew Loog OldhamאולדהאםSandy Beach (3)Andrew Loog Oldham OrchestraAndrew Oldham Group + +252605Rolf EricsonRolf Nils Börje EricsonSwedish jazz trumpet player, born August 29, 1922 in Stockholm, died June 16, 1997. +Ericson worked as a musician in the United States 1947-1950, playing with, a.o., [a=Charlie Barnet], [a=Charlie Parker], and [a=Woody Herman]. He was back in Sweden 1950-1952, before returning to United States again, playing with a.o. [a=Harry James] and [a=Duke Ellington]. He spent large parts of the 1960s in Germany as a member of various radio orchestras.Needs Votehttps://sv.wikipedia.org/wiki/Rolf_Ericsonhttps://en.wikipedia.org/wiki/Rolf_EricsonEricsonNils EricsonR. EricsonR. EricssonR.EricsonR.EricssonRob EricsonRoffe EricsonRoffe EricssonRoffe ErikssonRolf EricksonRolf EricssonRolf EriksonRolf ErikssonRolph EricsonRolt EricsonРольф Эриксонロルフ・エリクソンOrchester Erwin LehnWoody Herman And His OrchestraDuke Ellington And His OrchestraJack Costanzo And His OrchestraStan Kenton And His OrchestraCharlie Barnet And His OrchestraDexter Gordon QuintetHoward Rumsey's Lighthouse All-StarsHarold Land QuintetErwin Lehn Big BandWoody Herman And The Swingin' HerdFestival Big BandRolf Ericson And His American StarsThe Kenny Dorham QuintetRadiojazzgruppenMaynard Ferguson & His OrchestraGugge Hedrenius Big Blues BandLars Gullin QuintetDuke Ellington And His Jazz GroupMunich Big BandWoody Herman And His Third HerdLars Gullin OctetGunnar Svenssons SeptettArt Farmer And His OrchestraThe Quincy Jones Big BandBuddy Rich And His SextetThe Curtis Counce QuintetThe Rod Levitt OrchestraFriedrich Gulda Und Sein Eurojazz-OrchesterLeonard Feather's Swinging SwedesJazz Workshop, Ruhr Festival 1962Charlie Parker And His Swedish All StarsRolf Ericson And His Swingin' SwedesEmanons StorbandRolf Ericson-Bosse Wärmell KvintettBengt Hallbergs SextettThe Favourite Soloists 1951Rolf Ericson SextetRolf Ericson QuartetRolf Blomquist QuintetRolf Ericson QuintetSture Nordin SextetRolf Ericsons OrkesterBörje Fredriksson Quintet + +252606Don ButterfieldDon ButterfieldAmerican jazz & classical tuba player, born January 4, 1923 in Centralia, Washington, died November 27, 2006 in Clifton, New Jersey, USA + +Needs Votehttps://en.wikipedia.org/wiki/Don_Butterfieldhttps://adp.library.ucsb.edu/names/306405D. ButterfieldDan ButterfieldDon Butterfield TubaDon K. ButterfieldDonald ButterfieldDonald K. Butterfieldドン・バターフィールドHugo Montenegro And His OrchestraDizzy Gillespie And His OrchestraThe Bob Prince TentetteOliver Nelson And His OrchestraCharles Mingus Jazz WorkshopRichard Maltby And His OrchestraThe Teddy Charles TentetThe Jazz Interactions OrchestraClark Terry QuintetGil Mellé QuintetMichel Legrand Big BandAll Star Big BandThe BrassmatesThe Three Deuces MusiciansArt Farmer Tentet + +252608Quentin JacksonQuentin Leonard "Butter“ JacksonAmerican jazz trombonist. + +Born 13 January 1909 in Springfield/Ohio. +Died 2 October 1976 in New York City, USA.. + +A fixture with Duke Ellington's Orchestra in the 1950's, Quentin was Duke's best wah-wah trombonist (an expert with the plunger mute). +Needs Votehttps://en.wikipedia.org/wiki/Quentin_Jacksonhttps://www.allmusic.com/artist/quentin-jackson-mn0000375426/biographyhttps://www.radioswissjazz.ch/en/music-database/musician/235911f62e3cc9f85755ce9b9d226988601ae/biographyhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/jackson-quentin-leonard-aka-butterhttps://adp.library.ucsb.edu/names/109233"Butter" JacksonButter JacksonJacksonQ. JacksonQuent JacksonQuentin "Butler" JacksonQuentin "Butter" JacksonQuentin L. JacksonQuentini JacksonQuenton JacksonQuinten "Butter" JacksonQuintin JacksonБаттер ДжексонК. ДжексонКвентин Джексонクェンティン・ジャクソンQuincy Jones And His OrchestraCab Calloway And His OrchestraCount Basie OrchestraDuke Ellington And His OrchestraTony Scott And His OrchestraOliver Nelson And His OrchestraDon Redman And His OrchestraRay Charles And His OrchestraJohnny Hodges And His OrchestraMilt Jackson And Big BrassThad Jones / Mel Lewis OrchestraDuke Ellington's SpacemenThe Quincy Jones Big BandBilly Strayhorn's SeptetDuke Ellington All Star Road BandThe Ellington All-Stars Without DukeJohnny Hodges & His Big BandJohnny Hodges Septet + +252609Dick HaferJohn Richard Hafer(pronounced HAY-fer) - American jazz tenor saxophonist, born May 29, 1927 in Wyomissing, Pennsylvania. Died December 15, 2012 in La Costa, California + +Needs Votehttps://adp.library.ucsb.edu/names/204169D. HaferDick HafferHaferДик Хаферディック・ヘイファーWoody Herman And His OrchestraCharlie Barnet And His OrchestraClaude Thornhill And His OrchestraWoody Herman And The Swingin' HerdThe Woody Herman Big BandThe Nat Pierce OrchestraLarry Sonn OrchestraWoody Herman BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdThe Mystery Band (3)The Nat Pierce-Dick Collins NonetThe HerdmenDick Collins And The Runaway HerdThe Dick Hafer Quartet + +252611Charlie MarianoCarmine Ugo MarianoAmerican jazz saxophonist and nagasvaram (a South Indian double reed wind instrument) player. +Born November 12, 1923 in Boston, Massachusetts, USA +Died June 16, 2009 in Cologne (Köln), Germany). +He played with several big bands in the USA and Asia during the 1950s and 1960s, and co-led a quartet with his then-wife [a=Toshiko Akiyoshi] (their daughter is [a=Monday Michiru]) before moving to Europe. He added the Malaysian nadaswaram and Indian instruments to his repertoire. He changed his name to Charles Hugo Mariano.Needs Votehttps://web.archive.org/web/20220121194550/http://www.charliemarianotribute.de/bio.htmlhttps://en.wikipedia.org/wiki/Charlie_Marianohttps://de.wikipedia.org/wiki/Charlie_Marianohttps://books.google.de/books?id=KEHGs88c-aAC&pg=PT910&lpg=PT910&dq=nagasuram&source=bl&ots=7UK3LKmYDZ&sig=ACfU3U1_JptbGO0vSomjNKXjESr1uj_M1g&hl=de&sa=X&ved=2ahUKEwjlyYXr1qbmAhUHJFAKHXHKB0IQ6AEwE3oECAkQAQ#v=onepage&q=nagasuram&f=falsehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/206257/Mariano_Charliehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/329586/Mariano._Charliehttps://charliemariano.bandcamp.com/A.C. MarianoC. MarianoC.MarianoCh. MarianoCharles MarianoCharley MarianoCharlieCharlie "Sir Charles" MarianoCharly MarianoChas. MarianoChuck MarianoMarianoMariano & Friendsチャーリー・マリアーノEmbryo (3)The George Gruntz Concert Jazz BandSupersister (2)Stan Kenton And His OrchestraShelly Manne & His MenQuincy Jones' All Star Big BandEberhard Weber ColoursShorty Rogers And His GiantsManny Albam And His Jazz GreatsSerge Chaloff-Ralph Burns SeptetThe United Jazz+Rock EnsemblePork PieThe Mysterious Flying OrchestraThe Mike Gibbs OrchestraCharlie Mariano's BangaloreJazz In The ClassroomThe International Commission For The Prevention Of Musical Border ControlKCP 5The Nat Pierce OrchestraJohnny Richards And His OrchestraAlex Riel QuartetToshiko Mariano QuartetAndré J. Spang GroupEuropean Jazz EnsembleCharlie Mariano GroupFrank Rosolino QuintetPortofranco Multicolor OrchestraMariano / Huebner² / BeirachThe Mariano-Dodgion SextetWolfgang Dauner / Charlie Mariano / Dino SaluzziThorsten Klentze QuartetOsmosis (8)Charlie Mariano QuartetCharlie Mariano SextetSal Salvador And His OrchestraShelly Manne QuintetMel Lewis SextetThe Jackson-Harris HerdThe Frank Rosolino SextetCharlie Mariano QuintetCarlo Mombelli's AbstractionsJohannes Faber's ConsortiumThe Ray Borden BandNat Pierce ComboMariano-Pierce ComboCharlie Mariano OctetRuno Ericksson's OmnibusStu Williamson QuintetThe Only Chrome Waterfall OrchestraCharlie Mariano • Gregor Josephs QuartetThe Serge Chaloff OrchestraBhavani (2)Charlie Mariano & Nat Pierce Sextet + +252612Sietse-Jan WeijenbergClassical cellist, born: 1983Needs Votehttp://sietsejanweijenberg.nlJan WeijenbergSietse Jan WeijenbergNetherlands Chamber Orchestra + +252672Charles FoxCharles Ira FoxAmerican musician, producer, songwriter, & composer. +Born October 30, 1940 in New York City, New York, USA. +He worked frequently together with songwriter [a=Norman Gimbel]. +Fox composed over 100 movie scores (including Barbarella and 9-5) and TV themes (Happy Days & Love Boat), Fox wrote the music for many popular songs including "Killing Me Softly With His Song" (Grammy/Roberta Flack-Fugees), "I Got A Name" (Jim Croce), Richard's Window (Olivia Newton John/Oscar Nomination) & "Ready To Take A Chance Again" (Oscar Nomination/Barry Manilow).Needs Votehttp://www.charlesfoxmusic.com/https://en.wikipedia.org/wiki/Charles_Fox_(composer)https://www.imdb.com/name/nm0288913/B6C FoxC,. FioxC. FoxC. foxC. フォックスC.FoxCarlie FoxCh FoxCh. FoxCh. VoxCh.FoxChales FoxCharlesCharles Ira FoxCharlie FoxCharlie FoxxCharls FoxCharly FoxCherles FoxCoxFax CharlesFoxFox C.Fox CharlesFox, CharlesG. FoxGimbel-FoxL. FoxN. FoxO. FoxS. FoxVoxch.FoxШарл Фокс福克斯Joe Quijano & His Conjunto CachanaThe Cesta All StarsCharles Fox OrchestraCharles Foxx And His OrchestraCharles Fox And His Charanga + +252742Billy HartWilliam HartAmerican jazz drummer, born 29 November 1940 in Washington D.C., USANeeds Votehttps://www.billyhartmusic.com/https://haysstreethart.bandcamp.com/https://en.wikipedia.org/wiki/Billy_Harthttps://www.drummerworld.com/drummers/Billy_Hart.html'Jabali' Billy HartB. HartBill HartBill HarteBillie HartBillyBilly Hart (Jabali)Billy Hart JabaliBilly Hart ‘Jabali’Billy Jabali HartHartJabali (Billy Hart)Jabali / Billy HartJabali BIlly HartJabali Billy HartJabali-Billy HartJabili Billy HartJaboli Billy HartWilliam HartWilliam HurtWilliam W. HartWilliam Walter Hartビリーハートビリー・ハートJabaliVladimir Shafranov TrioDavid Liebman EnsembleMads Vinding TrioJimmy Smith TrioPaul Bley TrioStan Getz QuartetQuest (13)Johnny Dyani QuartetNiels-Henning Ørsted Pedersen QuartetShirley Horn TrioEthan Iverson TrioMarc Copland TrioMtume Umoja EnsembleContact (13)George Cables TrioArt Farmer QuartetNiels-Henning Ørsted Pedersen TrioMingus DynastyThe Great Jazz TrioTeddy Edwards QuartetGary Bartz QuartetThe Joanne Brackeen TrioMingus Big BandDon Friedman TrioThe Leaders (3)Jimmy Knepper SextetJon Jang SextetRon McClure SextetTom Varner QuartetDuke Jordan TrioLouis Smith QuintetJohn McNeil QuintetPierre Dørge QuartetThe CookersDoug Raney QuartetLee Konitz NonetHal Galper QuintetMarian McPartland TrioLars Møller QuartetMarc Levin EnsembleDoug Raney QuintetPaul Jeffrey QuintetEddie Harris QuartetThe Wilbur Little QuartetJimmy Rowles TrioRon McClure QuartetGordon Brisker QuintetRalph Moore QuartetBrian Landrus QuartetJohnny Coles QuartetJesper Thilo QuartetMassimo Faraò TrioRichie Beirach TrioRon McClure TrioGust William Tsilis QuartetThe Frank Foster QuintetArnett Cobb QuartetHal Galper TrioBuck Hill QuartetDoug Raney TrioJane Bunnett QuintetAlbert Dailey TrioAndy Laverne TrioLarry Coryell QuartetNew York BandThe James Williams QuartetKlaus Ignatzek TrioEddie Henderson ProjectThe New JazztetBilly Hart QuartetBilly Hart TrioRoberta Piket TrioFull Circle RainbowGeorge Colligan TrioEddie Henderson QuintetRon McClure QuintetDerek Smith QuartetEd Schuller GroupThe Stryker / Slagle BandJoe Beck TrioDave Stryker QuartetJohannes Enders QuartetStanley Cowell SextetThe Herbie Hancock SextetWestern Jazz QuartetHorace Tapscott TrioBilly Childs TrioJeff Gardner TrioAri Ambrose TrioAngelica Sanchez TrioBrian Landrus TrioKenny Drew & Hank Jones Great Jazz TrioFabio Morgera QuintetBrian Landrus OrchestraMarc Copland QuartetKarlheinz Miklin QuartetNew York City SoundscapeThe Reunion Legacy BandRich Perry TrioYelena Eckemoff QuintetMack Goldsbury And The New York ConnectionChristophe Schweizer Normal GardenGregor Huebner New York NRG QuartetJorge Rossy Vibes QuintetAaron Parks TrioRandall Conners QuartetMike Richmond Quintet + +252748Butch WarrenEdward Rudolph Warren Jr.Born: August 9, 1939 in Georgetown, Washington, DC +Died: October 5, 2013 in Silver Spring, Maryland + +American jazz bassist. He practically retired from the scene in 1963, after a few years of his career, for personal problems, mainly due to his mental illness and drug addiction. In the following decades, he was occasionally involved in local music projects in the Washington, DC area.Needs Votehttp://www.allaboutjazz.com/php/article.php?id=22403https://en.wikipedia.org/wiki/Butch_Warren"Butch" WarrenB. WarrenEarl "Butch" WarrenEdward "Butch" WarrenEdward WarrenWarrenThe Thelonious Monk QuartetThe Thelonious Monk QuintetSlide Hampton OctetThe Hank Mobley QuintetThe Kenny Dorham QuintetElmo Hope TrioThe Walter Bishop, Jr. Trio + +252786Albert HammondAlbert Louis HammondBritish singer / composer born on May 18, 1944 in London, UK, grew up in the British Mediterranean territory of Gibraltar. At the age of 18, Hammond moved back to England. In the beginning of the 70s, Hammond moved to Los Angeles in the United States, where he continued his professional career as a musician. He's the father of [a=Albert Hammond Jr.] from [a=The Strokes]. On 19 June 2008, Hammond was inducted to the Songwriters Hall of Fame. + +Please use [a=Hammond-Hazlewood] when listed with [a=Michael Hazlewood].Correcthttp://www.alberthammond.net/http://rateyourmusic.com/artist/albert_hammondhttps://www.facebook.com/AlbertHammondOfficial/https://myspace.com/albertlhammond/https://twitter.com/alberthammond?lang=dehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=144376&subid=0https://www.ascap.com/repertory#ace/writer/13310743/Hammond%20Albert%20Louishttps://en.wikipedia.org/wiki/Albert_HammondA HammomdA HammondA L.HammondA. HammondA. HammodA. HammondA. Hammond AnahiA. HammondsA. HamondA. L. HammondA.HammondA.HamondA.L. HammondA.ハモンドAl HammondAl. HammondAl. HamondAlbertAlbert - HammondAlbert HammonAlbert Hammond And FriendsAlbert Hammond Jr.Albert HamondAlbert L. HammondAlbert Lewis HammondAlbert Louis HammondAlbert Luis HammondA・ハモンドD. HamondG. LyleH. AlbertH. HammondH.Albert BayerHaammondHammoHammodHammondHammond A.Hammond AlbertHammond, A.Hammond, AlbertHammond, Albert LouisHamondHannardJ. HammondL. A. HamondLewis HammondLouis Albert HammondM. HammondMike HammondR. HammondА. ХаммондА. ХэммондАл ХаммондАльберт ХэммендД. ХэммондД.ХэммондОРКЕСТРアルバート・ハモンドアルバード・ハッモンドアルバ-ト・ハモンド앨버트 하몬드Family DoggHammond-HazlewoodThe Diamond BoysAlbert And RichardHammond, West & Friends + +252820Charlie ByrdCharles Lee ByrdAmerican jazz guitarist best known for his take on Brazilian music, especially the Bossa Nova genre. +Born: September 16, 1925 in Suffolk, Virginia. +Died: December 02, 1999 in Annapolis, Maryland. +Byrd played a classical guitar with nylon strings using "fingerstyle". +Needs Votehttp://en.wikipedia.org/wiki/Charlie_Byrdhttps://www.allmusic.com/artist/charlie-byrd-mn0000204968B. ByrdByrdC. ByrdC.ByrdCh. ByrdCh.BirdChalie ByrdCharles ByrdCharles L. "Charlie" ByrdCharlieCharlie BirdCharlie Byrd & His OrchestraCharlie Byrd And His Bossa Nova MusicCharlie Byrd With OrchestraCharlie Byrd With Strings, Bass & WoodwindsCharlie Byrd With Strings, Brass & WoodwindsCharlie Byrd With VoicesCharlie ByrdsCharly BirdCharly ByrdRobert C. ByrdЧ. БёрдЧарли Бёрдチャーリー・バードCharlie Byrd QuintetWoody Herman And His OrchestraWoody Herman SextetThe Charlie Byrd QuartetWoody Herman's Big New HerdCharlie Byrd TrioWoody Herman And The Swingin' HerdWoody Herman And The Fourth HerdThe Stan Getz - Charlie Byrd QuintetCharlie Byrd SeptetThe Great GuitarsWoody Herman's Anglo-American HerdThe Washington Guitar Quintet + +252821Keter BettsWilliam Thomas BettsKeter Betts was an American jazz double bassist, he was nicknamed "Keter", a short form of the word mosquito. + +Born : July 22, 1928 in Port Chester, New York State. +Died : August 06, 2005 in Silver Spring, Maryland. +Needs Votehttp://en.wikipedia.org/wiki/Keter_Bettshttps://www.kennedy-center.org/artists/b/ba-bn/william-betts/http://www.visionaryproject.org/bettswilliam/http://www.worldcat.org/identities/lccn-n91075020/https://www.allmusic.com/artist/keter-betts-mn0000766767BattsBettsBetts, K.Bill "Ketter" BettsBill BettsK, BettsK. BettsKeater BettsKeeter BestKeeter BettsKeteer BettsKeterKeter BetteKeter BettesKeter BettisKetter BettesKetter BettsKiter BettsWilliam "Keeter" BettsWilliam Betts[Uncredited]К. БеттсWoody Herman And His OrchestraTommy Flanagan TrioEarl Bostic And His OrchestraClifford Brown All StarsWoody Herman SextetCharlie Byrd TrioThe Louie Bellson QuintetBuddy DeFranco QuintetWynton Kelly TrioWoody Herman And The Fourth HerdThe Stan Getz - Charlie Byrd QuintetJimmy Cobb's OrchestraDick Morgan TrioArnett Cobb And His MobbWoody Herman's Anglo-American HerdJay McShann's TrioHamiet Bluiett SextetJoão Gilberto TrioThe Soft Winds (2)King/Bluiett TrioPete Minger QuartetThe Floating Jazz Festival TrioJimmy Cobb QuintetRed Holloway QuintetHarry Edison SixDinah Washington & The All-Stars + +252838Curtis AmyCurtis Edward AmyAmerican clarinetist, flutist, & saxophonist. +Born October 11, 1929 in Houston, Texas, USA. +Died June 5, 2002 in (aged 72) in Los Angeles, California, USA. +Amy learned to play clarinet at a young age and picked up the tenor sax during his Army time. In the mid 1950s he moved to Los Angeles (CA, USA) and signed with [l=Pacific Jazz Records].Needs Votehttps://en.wikipedia.org/wiki/Curtis_Amyhttps://www.freshsoundrecords.com/11089-curtis-amy-albumsAmyAmy CurtisCurtis AmeyCurtis Amy And His ComboGerald Wilson OrchestraCurtis Amy SextetPerri Lee TrioCurtis Amy SeptetCurtis Amy-Frank Butler Sextet + +252872Simon PrestonEnglish organist, harpsichordist, conductor, and composer (born 4 August 1938 in Bournemouth, England; died 13 May 2022).Needs Votehttps://en.wikipedia.org/wiki/Simon_Prestonhttps://www.imdb.com/name/nm0696492/https://www.bach-cantatas.com/Bio/Preston-Simon.htmhttps://www.deutschlandfunk.de/organist-und-dirigent-simon-preston-universalist-britischer.1991.de.html?dram:article_id=418638Merchant Taylor's Hall, LondonMerchant Taylors' HallPrestonQueen Elizabeth HallS. PrestonSimon Preston (ms)Westminster AbbeyСаймон Престонサイモン・プレストンEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe Jaye ConsortThe Wilbye Consort + +252967Gene TaylorCalvin Eugene TaylorAmerican jazz bassist, born 19 March 1929 in Toledo, Ohio, died 22 December 2001 in Sarasota, FloridaNeeds VoteCalvin TaylorEugene TaylorEugène TaylorG. TaylorGeneJim TaylorMark TaylorTaylorThe Horace Silver QuintetGeorges Arvanitas TrioHoward McGhee And His OrchestraThe Horace Silver TrioThe Blue Mitchell QuintetGrant Green TrioThe Carols (2)The Kenny Burrell QuartetThe Junior Cook QuintetCasey Jones Combo + +252985Joe Romano (2)Joseph S. RomanoAmerican saxophone and flute player +Born on April 17, 1932 in Rochester, New York, died on November 26, 2008 in Rochester + +[b]For the trumpet - flugelhorn player please see [a=Joe Romano (4)][/b]Needs Votehttps://en.m.wikipedia.org/wiki/Joe_RomanoJ. RomanoJoseph RomanoRomanoWoody Herman And His OrchestraBuddy Rich Big BandArt Pepper QuintetWoody Herman And The Swingin' HerdSi Zentner And His OrchestraChuck Mangione QuintetLouie Bellson Big BandNational Jazz EnsembleFrank Strazzeri QuartetWoody Herman And The Fourth HerdDon Menza & His '80s Big BandWoody Herman And The Thundering HerdThe Boys From RochesterLouie Bellson's Big Band Explosion! + +252989Jack ArnoldAmerican percussionist (born: July 5, 1929 in Cambridge, Ohio; died: November 5, 2013 in Los Angeles, California). +Worked with various jazz big bands in the late 1950s and 1960s, before moving to Los Angeles to become a studio percussionist in 1967.Needs VoteArnoldBrother JohnJ. ArnoldJack ArnnoldJohn "Jack" ArnoldJohn ArnoldJohn E. Arnoldjohn "Jack" ArnoldPercy Faith & His OrchestraWoody Herman And His OrchestraLouie Bellson Big BandWoody Herman BandWoody Herman And The Thundering HerdLouie Bellson's Big Band Explosion! + +252990Buddy ColletteWilliam Marcel ColletteAmerican jazz saxophonist, clarinetist and flutist, born 6 August 1921 in Los Angeles, California, USA, died 19 September 2010 in Los Angeles, California, USA + + +Needs Votehttps://en.wikipedia.org/wiki/Buddy_Collettehttps://fromthevaults-boppinbob.blogspot.com/2021/08/buddy-collette-born-6-august-1921.htmlhttps://adp.library.ucsb.edu/names/107096B. ColletteB.ColletteBill ColletteBobby ColletteBuddyBuddy ColetteBuddy ColletBuddy ColleteBuddy Collette And His MenColetteColette WilliamColletteM. ColletteW. ColletteWilliam "Buddy" ColetteWilliam "Buddy" ColletteWilliam 'Buddy' ColletteWilliam ColetteWilliam ColleteWilliam ColletteWilliam M. 'Buddy' CollettWilliam M. ColetteWilliam M. ColletteWilliams Colletteバディ・コレットBuddy Rich And His OrchestraThe Chico Hamilton QuintetRussell Garcia And His OrchestraPete Rugolo OrchestraJames Bond & His SextetThe Monterey Jazz Festival OrchestraHoward Rumsey's Lighthouse All-StarsLouie Bellson OrchestraThe Thelonious Monk OrchestraThe Jerry Fielding OrchestraBrass FeverRed Norvo SextetConte Candoli All StarsBuddy Collette And His Swinging ShepherdsRed Norvo QuintetThe Los Angeles Neophonic OrchestraThe Victor Feldman QuartetWilbert Baranco OrchestraBuddy Collette QuintetThe Buddy Collette - Chico Hamilton SextetThe John Graas NonetBuddy Collette SextetThe Gerald Wilson Big BandThe Jack Millman SextetBobby Troup QuintetLeonard Feather's West Coast StarsGerald Wilson Orchestra of The 80'sHarry Babasin And The Jazz PickersBuddy Collette And The Poll WinnersBobby Troup And His OrchestraThe Chico Hamilton SextetRed Callender And His Modern OctetNeal Hefti And His Jazz Pops OrchestraThe Buddy Collette Big BandBuddy Collette SeptetBuddy Collette QuartetThe Louis Bellson OctetHerschel Burke Gilbert OrchestraBuddy Collette And The EnsembleThe Greig McRitchie BandFestival Workshop EnsembleBuddy Collette OctetRed Callender's QuartetBuddy Collette And His TrioJohn Williams And Co.The West Coast All Star Octet + +252992Al AaronsAlbert AaronsAmerican jazz trumpeter, who also played the horn, flugelhorn. + +b. March 23, 1932 (Pittsburgh, PA, USA) +d. 17 November 2015, (Laguna Woods, California, USA)Needs Votehttps://adp.library.ucsb.edu/names/109240A. AaronsAaronsAbert AaronsAl AaronAl ArpnsAlbert AaronsAlbert AaronAlbert AaronsAlbert ArronsAlbert N. AaronsAlbert N. Aaron’sAlbert aaronsAll AaronsAronsCount Basie OrchestraHenry Mancini And His OrchestraThe Frank Wess - Harry Edison OrchestraThe Buddy Collette Big BandFrank Foster Sextet + +252993Ernie WattsErnest James WattsAmerican saxophonist and composer, born 23 October 1945 in Norfolk, Virginia, USACorrecthttps://www.erniewatts.com/https://en.wikipedia.org/wiki/Ernie_WattsE. WattsEarnie WattsEarny WattsErnest J. WattsErnest J. Watts Jr.Ernest J. Watts, Jr.Ernest WattsErnieErnie J. WattsErnie J. Watts. Jr.Ernie WattErnie Watts Jr.Ernie Watts, Jr.Ernnie WattsWattsアーニー・ワッツLove Unlimited OrchestraKarma (9)The MothersBuddy Rich Big BandErnie Watts QuintetCharlie Haden Quartet WestGerald Wilson OrchestraNat Adderley SextetLeonard Feather All StarsFriendship (3)Session IIGRP All-Star Big BandThe Thelonious Monk OrchestraThe MeetingThe Ernie Watts EncounterLiberation Music OrchestraThe Gentle ThoughtsThe Night Blooming JazzmenErnie Watts QuartetGerald Wilson Orchestra of The 80'sThe John Dentz Reunion BandLou Rovner Small Big BandThe Bruce Eskovitz Jazz OrchestraJasper Van't Hof's Face To FaceDoc Severinsen And His Big BandAndreas Pettersson QuintetJasper Van't Hof QuartetBrad Goode QuintetBettina Corradini / Jazzen Group + +252996Jimmy ClevelandJames Milton ClevelandAmerican jazz trombonist +Born May 3, 1926 in Wartrace, Tennessee, USA +Died August 23, 2008 in Lynwood, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Jimmy_Clevelandhttp://www.bluenote.com/artist/jimmy-cleveland/https://www.imdb.com/name/nm0166485/https://adp.library.ucsb.edu/index.php/mastertalent/detail/308865/Cleveland_Jimmyhttps://adp.library.ucsb.edu/names/308865ClevelandJ. ClevelandJames "Jimmy" ClevelandJames ClevelandJames «Jimmy» ClevelandJames «jimmy» ClevelandJim CleavelandJim ClevelandJimmie ClevelandJimmy Cleavelandジミー・クリーブランドJimmy O'HeighoJames Van DykeJim WhatsmynameQuincy Jones And His OrchestraGil Evans And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraLionel Hampton And His OrchestraBuddy Rich And His OrchestraQuincy Jones' All Star Big BandAndy Kirk And His Clouds Of JoyEarl Hines And His OrchestraTadd Dameron And His OrchestraRay Ellis And His OrchestraJim Timmens And His Jazz All-StarsTony Scott And His OrchestraOliver Nelson And His OrchestraArt Blakey's Big BandThe Ernie Wilkins OrchestraRay Brown All-Star Big BandThe Art Farmer SeptetMilt Jackson OrchestraManny Albam And His Jazz GreatsMundell Lowe And His All StarsMilt Jackson And Big BrassSonny Rollins QuintetThe Thelonious Monk OrchestraLionel Hampton GroupThe Prestige All StarsLionel Hampton All StarsJimmy Cleveland SextetClifford Brown Big BandMiles Davis + 19Seldon Powell SextetCannonball Adderley And His OrchestraJohnny Richards And His OrchestraThe Jazz Interactions OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraGeorge Wallington And His BandLionel Hampton And His Paris All StarsJimmy Cleveland And His All StarsWoody Herman And The Fourth HerdGeorge Williams And His OrchestraThe J.J. Johnson And Kai Winding Trombone OctetArt Farmer And His OrchestraThe Quincy Jones Big BandTony Scott TentetOscar Pettiford OrchestraGerald Wilson Orchestra of The 80'sThelonious Monk NonetJoe Newman And His OrchestraThe Blue Mitchell OrchestraSam Jones & Co.Don Redman All StarsThe Zoot Sims Al Cohn SeptetGigi Gryce OctetJerome Richardson SextetAll Star Big BandThe Bill Potts Big BandBill Berry And The LA BandThad Jones & Mel LewisJimmy Cleveland OctetJimmy Cleveland SeptetJim Timmens And His Swinging BrassUrbie Green And Twenty Of The "World's Greatest"Art Farmer TentetFriedrich Gulda And His SextetOscar Pettiford Big BandSpecs Powell & Co. + +252998Ray BrownRaymond Matthews BrownAmerican jazz double bassist +Born 13 October 1926 in Pittsburgh, Pennsylvania, USA, died 2 July 2002 in Indianapolis, Indiana, USA (aged 75) + +He was [a=Oscar Peterson]'s former bassist (from 1951). + +Ex-husband of jazz singer [a=Ella Fitzgerald], father of jazz pianist/singer [a=Ray Brown Jr.] + +For the French songwriter, see [a=Ray Brown (25)]. +For the US session trumpet player, please use [a=Ray Brown (2)]. +For the classical trombonist, please use [a=Ray Brown (8)]. +For the other trumpet player, please use [a=Ray Brown (12)].Needs Votehttps://en.wikipedia.org/wiki/Ray_Brown_(musician)https://www.imdb.com/name/nm0114477/https://www.allmusic.com/artist/ray-brown-mn0000343940https://rateyourmusic.com/artist/ray_brownhttps://www.imdb.com/name/nm0114477/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103164/Brown_Rayhttps://adp.library.ucsb.edu/names/103164A. BrownB. BrownBrownCh. BrownR BrownR. BrownR. K. BrownR. M. BrownR.BrownRau BrownRayRay BrowRay Brown JamRay M. BrownRaymond BrownRaymond Charles BrownRaymond M. "Ray" BrownRaymond M. BrownRaymond Matthews "Ray" BrownRaymond brownRej BraunRoy BrownRoy GreenБ. БраунР. БраунРей БраунРэй Браунレイブラウンレイ・ブラウンTeddy Edwards (6)Coleman Hawkins QuartetThe Modern Jazz QuartetThe Oscar Peterson TrioJunior Mance TrioThe Charlie Parker QuartetThe Charlie Parker QuintetDizzy Gillespie And His OrchestraRay Brown TrioBillie Holiday And Her OrchestraThe Bud Powell TrioThe Monty Alexander TrioDizzy Gillespie SeptetDizzy Gillespie Big BandThe Jimmy Giuffre TrioLA4The Oscar Peterson QuartetSonny Stitt QuartetRoy Eldridge And His OrchestraDizzy Gillespie SextetHenry Mancini And His OrchestraIllinois Jacquet And His OrchestraSy Oliver And His OrchestraStan Getz QuartetBen Webster And His OrchestraLester Young QuartetDizzy Gillespie JazzmenGeorge Shearing TrioCharlie Parker Big BandDizzy Gillespie - Stan Getz SextetLionel Hampton And His QuartetRay Brown's OrchestraLester Young QuintetThe Count Basie TrioDuke Ellington QuartetLalo Schifrin & OrchestraLionel Hampton QuintetThe Milt Jackson QuartetRay Brown All-Star Big BandMilt Jackson QuintetCharlie Parker With StringsDizzy Gillespie's Big 4Johnny Hodges And His OrchestraThe Gene Harris QuartetThe Gene Harris All Star Big BandThe Gene Harris Trio Plus OneTeddy Stewart OrchestraJames Moody SextetQuadrant (6)Sonny Rollins TrioMaynard Ferguson & His OrchestraKansas City 3The Ray Brown Big BandThe Ellington All StarsDizzy Gillespie's Rebop SixFlip Phillips SextetThe Roy Eldridge QuintetThe Johnny Griffin QuartetPhineas Newborn TrioThe Philip Morris SuperbandBenny Carter QuintetThe Stan Getz SextetThe Gene Krupa SextetThe J.J. Johnson And Kai Winding Trombone OctetDodo Marmarosa TrioCharles Owens New York Art EnsembleBillie Holiday And Her BandBillie Holiday And Her Lads Of JoyThe Ben Webster QuintetThe Gene Harris/Scott Hamilton QuintetThe Quincy Jones Big BandJoyce Collins TrioThe Three (2)Ray Brown's All StarsThe Flip Phillips QuintetFlip Phillips And His OrchestraTempo Jazz MenThe Claude Williamson TrioThe Clark Terry FiveEddie "Lockjaw" Davis 4The Oscar Peterson Big 4The Jack Sheldon QuartetConcord Jazz All StarsHarry Edison SextetFlip Phillips QuartetThe Flip Phillips-Howard McGhee BoptetBarry Ulanov's All Star Modern Jazz MusiciansOscar Peterson & FriendsMilcho Leviev TrioHerb Ellis-Ray Brown SextetBuddy Rich All StarsThe Buddy Rich TrioJATP All StarsBuddy Rich EnsembleBen Webster SeptetTommy Turk And His OrchestraRay Brown QuintetThe Poll WinnersThe Doug MacDonald QuartetMilt Jackson Ray Brown QuartetThe James Williams Magical TrioGreat Jazz QuartetLarry Fuller TrioThe Nick Esposito SextetThe Holly Hofmann QuartetJazz Giants 1958The Jazz Trio (3)Dizzy Gillespie-Charlie Parker JazzmenBobby Enriquez TrioJason Bodlovich Quintet + +252999Kenny ShroyerKenneth ShroyerTrombonist who worked with Bill Perkins, Larry Bunker, Mel Lewis, Jack Nimitz, Al Porcino, Stan Kenton Frank Rosolino, Joe Mondragon, Bud Shank, Bill Holman, Ray Triscari, Conte Candoli, Alvin Stoller, Buddy Childers, Lew McCreary, Gene Cipriano, Israel Baker, Andy Martin, Frank Zappa, Lennie Niehaus and Lee Katzman. among others.Needs VoteKen ShroyerKeneth ShroyerKeneth ShruyerKenneth ShroyerKenneth ShruyerKennett ShroyerShroyerThe MothersDizzy Gillespie Big BandGerald Wilson OrchestraRussell Garcia And His OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraBill Holman And His OrchestraBill Holman's Great Big BandThe Tommy Vig OrchestraThe Bill Holman BandShorty Rogers Big BandStan Kenton Alumni BandThe Gerald Wilson Big BandBobby Troup And His Stars Of JazzThe Bob Bain Brass EnsembleTutti's TrombonesRoy Wiegand Jazz OrchestraBuddy Childers Big BandThe Mike Vax Big BandNeal Hefti And His Jazz Pops Orchestra + +253001John AudinoTrumpet player.Needs Votehttp://www.vervemusicgroup.com/johnaudino/bio/AudinoJohn AndinoJohnny AudinoHarry James And His OrchestraLes Brown And His Band Of RenownGerald Wilson OrchestraThe Monterey Jazz Festival OrchestraLalo Schifrin & OrchestraLouie Bellson OrchestraThe Frankie Capp Percussion GroupThe Howard Roberts QuartetJerry Gray And His OrchestraKen Hanna And His OrchestraThe Tonight Show BandClare Fischer Big BandShorty Rogers Big BandThe Gerald Wilson Big BandThe Bob Bain Brass EnsembleCorcovado TrumpetsThe Wrecking Crew (6) + +253003Nick DiMaioAmerican trombonistNeeds VoteDiMaioMick DiMaioN. Di MaioN. DiMaioNick D. MaioNick De MaioNick Di MaioNick Di MayoNick DiMaoNick DimarioNick John DiMaioTommy Dorsey And His OrchestraHarry James And His OrchestraJimmy Dorsey And His OrchestraLouie Bellson OrchestraLouie Bellson Big Band + +253011Count Basie OrchestraAmerican jazz big band formed in 1935 by [a=Count Basie]. Despite Basie's death in 1984, the band survived and continued without him.Needs Votehttps://www.thecountbasieorchestra.com/https://en.wikipedia.org/wiki/Count_Basie_Orchestrahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103508/Count_Basie_OrchestraBandBand MembersBasieBasie And His OrchestraBasie BandBasie SwingsC. Basie And His Orch.COunt Basie And His OrchestraCound Basie & His OrchestraCound Basie And His OrchestraCount And His OrchestraCount Baise And His OrchestraCount BasieCount Basie Y Su OrquestaCount Basie & GuestsCount Basie & HIs OrchestraCount Basie & His Atomic BandCount Basie & His Count Basie OrchestraCount Basie & His Orc.Count Basie & His OrchCount Basie & His Orch.Count Basie & His OrchestraCount Basie & His OrchetraCount Basie & OrchestraCount Basie & Son OrchestreCount Basie & The OrchestraCount Basie &His Orch.Count Basie + The Big BandCount Basie A. H. OrchestraCount Basie A.O.Count Basie And His OrchestraCount Basie And His CrewCount Basie And His Internationally Famous OrchestraCount Basie And His OrchCount Basie And His Orch.Count Basie And His OrchertraCount Basie And His OrchestraCount Basie And His Orchestra*Count Basie And His Truncated OrchestraCount Basie And His orchestraCount Basie And HisOrchestraCount Basie And OrchestraCount Basie And The OrchestraCount Basie And Their OrchestrasCount Basie BandCount Basie BigbandCount Basie Con La Sua OrchestraCount Basie E La Sua OrchestraCount Basie E Sua OrquestraCount Basie E la Sua OrchestraCount Basie Et His OrchestraCount Basie Et Son OrchestreCount Basie OrchCount Basie Orch.Count Basie Orchestra (Truncated)Count Basie Orchestra And His OrchestraCount Basie Orchestra, TheCount Basie OrkesterCount Basie OrkestereineenCount Basie OrquestaCount Basie Sa OrkestromCount Basie Se Svým OrchestremCount Basie U. S. OrchesterCount Basie Und Sein OrchesterCount Basie Und Seinem OrchesterCount Basie With OrchestraCount Basie Y Su Gran OrquestaCount Basie Y Su OrquestaCount Basie Y Sy Gran OrquestaCount Basie and His OrchestraCount Basie and his OrchestraCount Basie and his orchestraCount Basie and the OrchestraCount Basie y Su Gran OrquestaCount Basie y Su OrquestaCount Basie& His OrchestraCount Basie's Orch.Count Basie's OrchestraCount Basie's OrkesterCount Basie, His Intrumentalists And RhythmCount Basie, His Orchestra & FriendsCount Basien OrkesteriCount Basies OrchestraCount Basies OrkesterCount Basis And His OrchestraE=MC² = Count Basie OrchestraEl Gran Count Basie Y Su OrquestaFriendsGrand Orchestre De Count BasieHis OrchestraL'Orchestra Di Count BasieL'Orchestre Count BasieL'Orchestre De Count BasieL'orchestra Di Count BasieLe Grand Orchestre BasieMembers Of Basie BandMembers Of The Count Basie BandMembers Of The Count Basie OrchestraOrch. Count BasieOrchester Count BasieOrchestr Counta BasiehoOrchestraOrchestra Count BasieOrchestre Count BasieOrquesta De Count BasieStan Getz With Count Basie And His OrchestraSu OrquestaSuper Count Basie And His OrchestraThe Basie BandThe C.Basie Orch.The Count Basie BandThe Count Basie OrchestraThe Great Count Basie & His OrchestraThe Great Count Basie OrchestraThe OrchestraWith Count Basie And His Orchestra*Джаз-Оркестр К. БейсиДжаз-Оркестр Каунта БейсиКаунт Бейси И Его ОркестрОркестрОркестр К. Бейсиカウント・ベイシー・オーケストラカウント・ベイシー楽団Frank WessCandidoGerald WilsonJoe WilliamsHubert LawsBuddy RichJoe PassBill JohnsonHarold JonesCount BasieNeal HeftiJerry DodgionNolan SmithCharlie RouseClark TerryGene RameyJ.J. JohnsonQuentin JacksonAl AaronsDave StahlEddie DurhamBill GrahamDon ByasIllinois JacquetCurtis FullerLester YoungVic DickensonHarry EdisonJo JonesFrank FosterUrbie GreenLucky ThompsonJohnny MandelGeorge DorseyBuck ClaytonBuddy TateCharlie ShaversButch MilesHot Lips PageThad JonesWardell GrayWalter PageJohn DukeBobby PlaterDanny TurnerAl GreyJimmy ForrestMel WanzoDennis WilsonSonny CohnBobby MitchellWaymon ReedCharlie FowlkesLyn BivianoEric DixonFreddie GreenEddie "Lockjaw" DavisOscar BrashearSnooky YoungJoe WilderBill Hughes (2)Gus JohnsonJimmy RushingAl PorcinoErnie WilkinsMatthew GeeByron StriplingLeon "Chu" BerryDon RedmanLammar WrightHelen HumesEd CuffeeBilly MitchellEddie JonesJoe NewmanSerge ChaloffPaul GonsalvesHerschel EvansMelba ListonPaul QuinichetteJohn KelsonJimmy PowellJoe KeyesTed DonnellyBenny MortonTab SmithShad CollinsCaughey RobertsCarl SmithJerry BlakeEmmett BerryJack WashingtonEd LewisDan MinorClaude WilliamsEarle WarrenPaul WebsterBenny PowellAl HibblerHenry CokerDon RaderGrover MitchellSonny PayneBuddy CatlettMarshall RoyalBill Miller (2)Ann MooreThelma CarpenterChris WoodsAl KillianDickie WellsRodney RichardsonBobby TuckerJimmy Lewis (2)Andy GibsonPreston LoveGene SimonRudy RutherfordEli RobinsonAl StearnsGeorge HuntWendell CulleyDoug MillerGeorge Matthews (2)Gregg FieldJohn Thomas (3)Jimmy NottinghamReunald JonesLouis BellsonPhillip GuilbeauRay Brown (2)Duffy JacksonBooty WoodShadow WilsonCharles PriceButch BallardSingleton PalmerGene GoeJimmy WilkinsBuddy DeFrancoRalph SharonNorman KeenanJohn Watson (2)Bob Mitchell (2)Wallace DavenportHenderson ChambersSam NotoFrank SzaboRichard BooneKenny HingBob OjedaDennis MackrelClarence BanksCarl Carter (3)Mike Williams (6)Carmen BradfordEmanuel BoydJack FeiermanBuster SmithLeon ComegysRufus WagnerKarl GeorgeVernon AlleyLynne ShermanPaul BascombLennie JohnsonBob Summers (3)J.C. WilliamsPaul Campbell (5)Bobby Moore (3)Dennis RowlandRobert TrowersRubin PhillipsRobert Scott (4)Dale CarleyPete MingerBob HicksGerry EastmanDavid Glasser (2)Frank HooksIke Isaacs (2)Bob TrowersLouis Taylor (3)Bixie CrawfordFortunatus "Fip" RicardFloyd Johnson (3)Earl Wilson (3)William H. BaileyJimmy Taylor (18)Percival PayneJohnny Williams (39) + +253033Michel GraillierFrench jazz pianist (born October 18, 1946 in Lens — died February 18, 2003 in Paris) + +His career began with violinist Jean Luc Ponty in 1968. He was a member of various groups in France and worked regularly with [a=Chet Baker] until 1988. In the 1990s he worked in various ensembles with drummer [a=Simon Goubert].Needs Votehttp://graillier.free.fr/https://en.wikipedia.org/wiki/Michel_Graillierhttps://books.discogs.com/credit/756414-michel-graillierM. GraillierM. GralierM. GrallierM. e M. GraillerMichael GraillerMichael GraillierMichel "Mickey" GraillierMichel ''Mickey'' GraillierMichel 'Mickey' GraillerMichel GraillerMichel GrailletMichel GrallierMickey GraillierTsoï MenakaahOpen Sky UnitMagma (6)Chet Baker QuartetClaude Cagnasso Big BandJacques & Micheline Pelzer QuartetChet Baker TrioIvan Jullien Big BandTartempionVandertopAlien (34) + +253047Andrew SimpkinsAndrew SimpkinsAmerican jazz bassist +Born April 29, 1932 in Richmond, Indiana, died June 2, 1999 in Los Angeles, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Andy_SimpkinsAndrew SimkinsAndrew SimpkensAndrew SimpkinAndy SimkinsAndy SimpkinsSimpkinsЭндрю СимпкинсThe Monty Alexander TrioThe Three SoundsFreddie Hubbard And His OrchestraGeorge Shearing TrioLeonard Feather All StarsThe Gerald Wiggins TrioToshiko Akiyoshi TrioQuartescenceCedar Walton TrioGeorge Shearing Quintet + AmigosMike Wofford TrioCharlie Shoemake SextetDave Mackay TrioBill Mays QuintetThe Claude Williamson TrioBob Summers QuintetThe Monty Alexander 7The John Dentz Reunion BandMike Wofford QuartetNat Adderley QuartetThe Charles McPherson SextetTerry Gibbs & His West Coast FriendsClare Fischer & His Latin Jazz SextetTeddy Edwards Brasstring EnsembleAndy Simpkins QuintetJon Nagourney QuintetJon Nagourney QuartetGeorge Shearing's SextetClare Fischer & the Yamaha QuartetTrio (46) + +253051Tim HauserTimothy DuPron HauserAmerican vocalist and producer. Founder of the vocal quartet [a=The Manhattan Transfer]. + +Born: 12 December 1941 in Troy, New York, USA. +Died: 16 October 2014 in Sayre, Pennsylvania, USA (aged 72). Needs Votehttp://en.wikipedia.org/wiki/Tim_HauserHauserT. HauserTimティム・ハウザーThe Manhattan TransferThe CriterionsKentsThe Spires (4)Coventry Lads + +253061Louis ToescaFrench trumpet player. +Louis Toesca trompettiste Français de Jazz et de Variété reconnu (scène et studio) né à Nice, fit une grande carrière nationale et internationale, parmi les artistes qu'il a accompagné, nous citons entre autres : Claude François, Eddy Mitchell, Marlène Dietrich, Stevie Wonder, Sylvie Vartan, Orchestre de Michel Legrand, Gilbert Bécaud, le groupe Magma, Michèle Torr, le groupe Les Soul Brass, Big Band Dany Doriz, l'Orchestre du Moulin Rouge, l'Orchestre de l'Olympia, l'Orchestre Daniel Janin, C Jérôme, Annie Cordy, Marcel Amont, Ringo, Dalida, Thierry Le Luron, Guy Mardel, Carlos, Michel Fugain, Orchestre Aimé Barelli, Sacha Distel, Orchestre National de Jazz (sept 1987), Francis Lalanne, Vivian Reed, Mireille Matthieu, Rika Zaraï, Enrico Macias, Michel Delpech (studio) et participe à des musiques de film tel que "l'Aventure c'est l'aventure" musiques de Francis Lai. Louis Toesca est marié à la chanteuse Mary-Christine (Tchad), il est aussi le père d'Alex Toesca du groupe "Sally Bat Des Ailes" ainsi que le cousin de l'animateur Marc Toesca. Louis Toesca est décédé en Août 2023, sa mémoire a été honorée lors de l'hommage aux artistes disparus aux Victoires de la Musique sur France2 le vendredi 9 février 2024 avec ses amis Pierre Dutour et Slim Pezin...Needs VoteL. ToescaLouis ToscaLuis ToescaLuiz ToescaMagma (6) + +253064Willie DennisWilliam DeBerardinisJazz trombonist, born January 10, 1926, Philadelphia, Pennsylvania, died July 8, 1965, New York, New York. +Played in big bands with leaders such as [a=Elliot Lawrence] 1946, [a=Claude Thornhill] and [a=Sam Donahue]. Recorded with [a=Charles Mingus] in 1953 and 1959, and toured with him 1956-1957. Played with [a=Benny Goodman] and [a=Woody Herman] in 1958, joined [a=Buddy Rich]'s quintet in 1959. He played with [a=Gerry Mulligan & The Concert Jazz Band] in the early 1960s. +Married to [a=Morgana King].Needs Votehttps://adp.library.ucsb.edu/names/311889DennisW. DennisWilliam DennisWillieWillie DenniesWillis Dennisウィリー・デニスWoody Herman And His OrchestraBuddy Rich And His OrchestraBenny Goodman And His OrchestraCharles Mingus Jazz WorkshopThe Ernie Wilkins OrchestraThe Gary McFarland SextetMundell Lowe And His All StarsGerry Mulligan & The Concert Jazz BandThe Gary McFarland OrchestraWoody Herman And The Swingin' HerdThe Four TrombonesWoody Herman And The Fourth HerdCharles Mingus OctetThe Buddy Rich QuintetSal Salvador And His OrchestraBuddy Rich Septet + +253065Horace ParlanHorace Louis ParlanHorace Parlan (born January 19, 1931, Pittsburgh, Pennsylvania, USA - died February 24, 2017, Korsør, Denmark) was an American-born Danish modern jazz pianist, with a strong left hand. +Parlan was discovered by [a200815], and played and recorded with him from 1957 to 1959. After that he played with [a145263], [a253063], [a218045] and many others. He moved to Copenhagen in 1972 and became a Danish citizen in 1995.Needs Votehttps://en.wikipedia.org/wiki/Horace_ParlanH ParlanH. ParlanH. Parlan Jr.H. ParlenH.ParlanHorace L. Parlan, JrHorace L. Parlan, Jr.Horace Parlan QuartetHorace ParlandHorace PartanHorace PylandParlanParlenFelix KrullArchie Shepp QuartetSlide Hampton OrchestraCharles Mingus Jazz WorkshopCharles Mingus SextetRed Holloway QuartetThe Dave Bailey SextetArchie Shepp - Chet Baker QuintetBernt Rosengren QuartetDexter Gordon QuartetPierre Dørge & New Jungle OrchestraHorace Parlan TrioThe Johnny Griffin QuartetHorace Parlan / Jan Kaspersen DuoDoug Raney QuintetEddie Lockjaw Davis QuartetJohnny Coles QuartetBooker Ervin QuintetThe Eddie Davis-Johnny Griffin QuintetHorace Parlan QuintetArchie Shepp - Horace Parlan DuoRed Mitchell QuintetThe Tubby Hayes SextetHorace Parlan QuartetThad Jones EclipseDoug Raney SextetFrank Foster QuartetIdrees Sulieman QuintetJesper Thilo - Finn Otto Hansen SextetBernt Rosengren QuintetHugo Heredia QuintetClaude Williams Quintet + +253066Jimmy KnepperJames M. KnepperAmerican jazz trombonist. +Born November 22, 1927 in Los Angeles, California, USA. +Died June 14, 2003 in Triadelphia, West Virginia, USA. +Knepper was a featured soloist in many bands, big and small, starting when he was a teenager. Later, he played with several well-known big bands, including those of Charlie Barnet, Woody Herman, Claude Thornhill and the Thad Jones-Mel Lewis Jazz Orchestra. Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Knepperhttp://www.bluenote.com/artists/jimmy-knepperhttps://adp.library.ucsb.edu/names/325533J. KnepperJames KnepperJames M, KnepperJames M. KnepperJim KnepperJimmie KnepperJimmy KneeperKnedderKnepperNepperジミー・ネッパーGil Evans And His OrchestraThe George Gruntz Concert Jazz BandToshiko Akiyoshi-Lew Tabackin Big BandThe Jazz Composer's OrchestraThe Charles Mingus QuintetShorty Rogers And His OrchestraCharles Mingus And His Jazz GroupCharles Mingus Jazz WorkshopCharles Mingus SextetThad Jones / Mel Lewis OrchestraMingus DynastyMingus Big BandJimmy Knepper SextetGeorge Russell OrchestraThe American Jazz OrchestraLee Konitz NonetNational Jazz EnsembleThe Pepper-Knepper QuintetTony Scott QuintetJimmy Knepper QuintetGary Smulyan QuintetThad Jones & Mel LewisMark Masters' Jazz Orchestra + +253112Bo EklundSwedish classical contrabass/double bass player in the Gothenburg Symphony Orchestra.Needs Votehttp://www.gso.se/Göteborgs Symfoniker + +253113Bertil LindhSwedish classical violinistNeeds VoteGöteborgs Symfoniker + +253115Johan SternCarl Johan SternSwedish classical cellist, born February 17, 1964.Needs Votehttp://www.gso.se/https://www.gu.se/en/about/find-staff/johansternGöteborgs SymfonikerGageego! + +253116Annika HjelmSwedish classical violin player in the Gothenburg Symphony Orchestra.Needs Votehttp://www.gso.se/Göteborgs Symfoniker + +253117Nils EdinSwedish classical viola player in the Gothenburg Symphony Orchestra.Needs Votehttp://www.gso.se/Göteborgs Symfoniker + +253118Catherine ClaessonCatherine Jane Claesson (née Warburton)Swedish classical violinist of English descent based in Gothenburg, born on June 9, 1967 in England, United Kingdom. + +Catherine Claesson has studied at the conservatoire and drama school [l305416] in London, England. + +Since September 23, 2000, Catherine Claesson is married to the Swedish classical clarinetist [a1538879]. Both of them have been employed by [l1456146] and they have thus been two of the presently 109 full-time musicians in the symphony orchestra [a1015406]. In 2024, [a1538879] is still a member of the symphony orchestra and Catherine Claesson was an active member of [a1015406] between 1991 and February 2024. + +In the early 2000, Catherine Claesson was also a member of the [a4432251], together with [a253120], [a1344232] and [a1055828].Needs Votehttps://www.facebook.com/profile.php?id=100006937214736https://www.imdb.com/name/nm5666472/CatherineGöteborgs SymfonikerHvila Quartet + +253120Nicola BoruvkaNicola Anna Veronica BoruvkaSwedish classical violinist, born on January 20, 1967 in Göteborgs Masthugg, Göteborg, Västergötland. + +Nicola Boruvka began her violin studies for [a4291064] at [l683074]. She continued at [url=https://www.kmh.se/in-english/about-kmh/campus/edsberg-manor.html]Edsberg Manor[/url] for Professor [a1551361]. Since 1958, the university courses in classical music on piano, violin, viola and cello, with emphasis on chamber music, at [b]Edsberg Manor[/b] have been run by [l29162], and later by the Edsberg Music Institute Foundation. Since 1999 they have been a part of [l419723]. + +Nicola Boruvka is married to the Norwegian-born musician [a2366278].Needs Votehttps://www.facebook.com/nicola.boruvkahttps://www.imdb.com/name/nm0097612/https://www.gso.se/goteborgs-symfoniker/orkestern/musiker/Nicola BorukaNicola BorurkaGöteborgs SymfonikerHvila Quartet + +253122Per HögbergSwedish classical viola player Needs VotePer BögbergSnykoGöteborgs Symfoniker + +253123Grzegorz WybraniecCello player in the Gothenburg Symphony Orchestra.Needs Votehttp://www.gso.se/Gregorz WybraniccGöteborgs SymfonikerWybraniec Trio + +253125Henrik EdströmSwedish classical viola player in the Gothenburg Symphony Orchestra.Needs Votehttp://www.gso.se/Henrik Edström WirdefeldtGöteborgs Symfoniker + +253126Annica KroonSwedish classical violin player in the Gothenburg Symphony Orchestra.Needs Votehttp://www.gso.se/Annika KroonGöteborgs Symfoniker + +253133Montserrat CaballéMaria de Montserrat Viviana Concepción Caballé i FolcSpanish operatic soprano vocalist, born April 12, 1933 in Barcelona, Spain, died October 6, 2018 in Barcelona, Spain. +Married to [a=Bernabé Martí]. Mother of [a=Montserrat Marti].Needs Votehttps://es.wikipedia.org/wiki/Montserrat_Caball%C3%A9https://en.wikipedia.org/wiki/Montserrat_Caball%C3%A9https://myspace.com/montserratcaballehttps://www.imdb.com/name/nm0127481/https://www.caballe.deCaballeCaballe'CaballèCaballéM. CaballeM. CaballéM.CaballeMoniserrat CaballeMonserat CabalieMonserat CaballeMonserrat CaballeMonserrat CaballéMonsterrat CaballeMontsarrat CaballeMontsarrat CaballéMontserat CaballeMontserratMontserrat CaballeMontserrat Caballe'Montserrat CaballeéMontserrat Caballé ( Maddalena )Montserrat CaballéováMontserrat CabaléMontserrat GaballeМонсерат КабаллеМонсерра КабаллеМонсеррат КабальеМонтсеррат Кабальеモンセラ・カバリエモンセラート・カバリエ + +253144Peter SinfieldPeter John SinfieldEnglish poet, lyricist, singer, guitarist, keyboardist and producer. Born on 27 December 1943 in Fulham, London. Died on 14 November 2024. Sinfield was best known as a lyricist for early incarnations of [a=King Crimson] and later, [a=Emerson, Lake & Palmer], [a=Premiata Forneria Marconi] (PFM), [a199024] and [a172408]. He also produced a number of albums for King Crimson and others, e.g. [a=Roxy Music]'s self-titled debut.Needs Votehttps://www.imdb.com/name/nm3518390/https://en.wikipedia.org/wiki/Peter_Sinfieldhttps://web.archive.org/web/20250125152217/http://songsouponsea.com/EmersonJ. SinfeldJ. SinfieldP SinfieldP, SinfieldP. BouwnesP. J. SinfieldP. SinefieldP. SinfeldP. SinfieldP. SinfiieldP. SingfieldP.SinfieldP; SinfieldPete SinfieldPete SingfieldPete SingieldPeterPeter J. SinfieldPeter John SinfieldPeter SinfeldPète SinfieldSInfieldSeinfieldSindfieldSinfeildSinfeldSinfieldSinfield PeterSinfield Peter JohnSinfiledSingfieldStinfieldKing Crimson + +253204Max BennettMax BennettAmerican jazz bassist and session musician. + +Born : May 24, 1928 in Des Moines, Iowa. +Died: September 14, 2018 (aged 90) San Clemente, California, U.S. +Needs Votehttp://www.maxbennett.com/https://en.wikipedia.org/wiki/Max_Bennett_(musician)https://adp.library.ucsb.edu/index.php/mastertalent/detail/200706/Bennett_Maxhttps://adp.library.ucsb.edu/names/200706BennetBennettM. BennettM.BennettMark BennettMaxMax BenettMax BennetMax Bennett And FriendsMax Bennett's MusicMax K. BennettMax O'BennettMax R. BennettMay BennettMaz Bennettマックス・ベネットVictor Feldman's Generation BandRussell Garcia And His OrchestraMichael Nesmith & The First National BandThe L.A. ExpressSauter-Finegan OrchestraLeonard Feather All StarsLalo Schifrin & OrchestraThe Adam Ross ReedsTerry Gibbs QuartetTerry Gibbs And His OrchestraLou Levy TrioThe Night Blooming JazzmenFrank Rosolino QuintetThe Jack Montrose QuintetBob Cooper NonetCharlie Mariano QuartetThe Claude Williamson TrioBob Hardaway's GroupStan Levey SextetThe Conte Candoli QuartetMax Bennett & FreewayMarty Paich QuintetThe Brothers Candoli: SextetThe Frank Rosolino SextetMax Bennett And The Maxx BandColeman Hawkins & FriendsStu Williamson Quintet + +253205Don "Sugarcane" HarrisDon Francis Bowman HarrisAmerican singer, violinist and guitarist, born 18 June 1938, Pasadena, California, USA, died 30 November 1999, Los Angeles, California, USA (pulmonary disease). With [a=Dewey Terry] recorded rhythm & blues as [a=Don & Dewey] for Specialty 1956-1959, but is most noted for his later jazz blues-fusion violin playing with Johnny Otis, Frank Zappa and John Mayall (U.S.A. Union). +Harris died after a lengthy battle with pulmonary disease. +Needs Votehttp://www.sugarcane-harris.com/ (defunkt)https://en.wikipedia.org/wiki/Don_%22Sugarcane%22_Harris"Sugarcane" And His ViolinBomanharrisBowmanBowman HarrisBowman, HarrisCane HarrisD F Bowman HarrisD HarrisD. B. HarrisD. Bowman HarrisD. F. Bowman HarrisD. F. HarrisD. HarrisD. HarrrisD. Yunior HarrisD.B. HarrisD.F. HarrisD.F.HarrisD.HarrisDaif HarrisDon "Sugar Cane" HarrisDon "SugarCane" HarrisDon "Sugarcaine" HarrisDon 'Sugar Cane' HarrisDon 'Sugarcane' HarrisDon BowmanDon Bowman HarrisDon F HarrisDon F. Bowman HarrisDon F. HarrisDon HarrisDon Harris 'Sugar Cane'Don Sugar Cane HarrisDon Sugarcane HarrisDonald HarrisG. HarrisHarisHarriHarrisHarris, Don FHarrisonSugar Caine HarrisSugar Cane HarrisSugarcaneSugarcane & His ViolinSugarcane And His ViolinSugarcane HarrisSugarcane HarrisonT. HarrisThe Johnny Otis ShowThe MothersDon & DeweyThe Don "Sugarcane" Harris GroupTupelo Chain SexPure Food And Drug ActThe Squires (15) + +253206Alan BroadbentAlan BroadbentAlan Broadbent, MNZM [Member - New Zealand Order of Merit] was born on April 23, 1947 in Auckland, New Zealand. He is a jazz pianist, arranger and composer best known for his work with artists such as Woody Herman, Diane Schuur, Chet Baker, Irene Kral, Sheila Jordan, Charlie Haden, Warne Marsh, Bud Shank, and many others. He studied piano and music theory in his own country, but in the 1960s came to the US to study at the Berklee College of Music. In the 1970s he did both classical and jazz work, but from the eighties onwards he accompanied singers on piano. Later he gained note as an arranger of music and won two Grammies for arrangements he did with Natalie Cole and Shirley Horn.Needs Votehttps://www.alanbroadbent.comhttp://www.audioculture.co.nz/people/alan-broadbenthttp://en.wikipedia.org/wiki/Alan_BroadbentA. BroadbentA.BroadbentAlain BroadbentAlan BrodabentAlan C. BroadbentAlan L. BroadbentAllan BroadbentBroadbentА. БродбентWoody Herman And His OrchestraCharlie Haden Quartet WestThe Bob Brookmeyer QuartetAlan Broadbent TrioThe Bob Florence Limited EditionWoody Herman And The Thundering HerdThe Pete Christlieb QuartetVic Lewis West Coast All-StarsThe John "Terry" Tirabasso OrchestraJack Sheldon's Late Show All-StarsThe Doug Webb Quartet + +253245Michael Tilson ThomasAmerican conductor, and pianist. Music director of the [a=San Francisco Symphony] Orchestra from 1995 to 2020. He was born on December 21, 1944 in Los Angeles, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Michael_Tilson_Thomashttps://www.michaeltilsonthomas.com/https://www.bso.org/profiles/michael-tilson-thomashttps://www.bpo.org/archives/michael-tilson-thomas/https://www.nws.edu/about/michael-tilson-thomas/https://web.archive.org/web/20030803200333/https://www.sonyclassical.com/artists/tilson_thomas/https://www.bach-cantatas.com/Bio/Thomas-Michael-Tilson.htmhttps://www.x.com/mtilsonthomashttps://www.facebook.com/MichaelTilsonThomas/M. ThomasM. Tilson ThomasM. Tilson-ThomasM.T.トーマスMIchael Tilson-ThomasMichael ThomasMichael Tillson ThomasMichael TilsonMichael Tilson Thomas, DirectorMichael Tilson-ThomasMichael Tison ThomasMichel Tilson ThomasThomasTilson Thomas + +253347David FinckAmerican jazz bassist, born August 26, 1958. He plays both bass guitar and double bass.Needs Votehttp://www.davidfinck.net/D. FinckD.E. FinckDave FinckDavid FinickDavid FinkFinckFinkWoody Herman And His OrchestraPhilippe Saisse Acoustique TrioOrquesta NovaThe John Basile QuartetPhilippe Saisse TrioThe Great Jazz TrioSteve Kuhn TrioSteve Kuhn With StringsWoody Herman And The Thundering HerdJohn Fedchock NY SextetColors Of JazzSymphonica BandTony Kadleck Big BandMarian Petrescu QuartetThe David Finck QuartetSteve Harrow QuintetThe Paulo Moura & Cliff Korman EnsembleJohn Basile Trio + +253353Bob ThieleRobert Thiele Sr.Born: July 27, 1922 in Brooklyn, New York +Died: January 30, 1996 in Manhattan, New York. +American record producer and record label founder. + +Married to [a1333782] (1945-1947), [a1580307] and [a=Teresa Brewer]. +Father of [a=Bob Thiele Jr.], who is also a record producer. + +Thiele began his career with a jazz radio show at age 14. In 1939, aged 17, he created the [l=Signature (4)] label, which lasted until the late 1940s in its first incarnation (it would be revived several times), recording Coleman Hawkins, Earl Hines, Erroll Garner, and Lester Young amongst others. When that wound down he was headhunted by US [l=Decca] as A&R chief of [l39155] Records in the 1950s (it was Thiele who signed [a=Buddy Holly]); in 1961, he joined ABC-Paramount Records to run the [l=Impulse!] label after its creator [a=Creed Taylor] was hired away by MGM to run Verve Records; he was A&R chief and head producer for the label from 1962 until 1968, and formed his own record label [l=Flying Dutchman] soon after. Later he established [l223901], his final label was [l=Red Baron], which folded not long after his death. + +Thiele also was also a songwriter, bandleader, arranger and photographer. He is credited with co-writing "What A Wonderful World." Thiele wrote a memoir about his life in music, What A Wonderful World: A Lifetime Of Recordings, published by Oxford University Press on May 4, 1995. Also credited as photographer (Impulse Records). + +[b]Please Note:[/b] Productions released after 1996 (unless they are reissues of either full albums or individual songs) are most likely to be those of his son, as he's occasionally credited without the [i][b]Jr.[/b][/i] suffix.Needs Votehttps://en.wikipedia.org/wiki/Bob_Thielehttps://tims.blackcat.nl/messages/bob_thiele.htmhttps://coppice-gate.com/jazz/316/bob-thiele-record-producer-extraordinaireB TheilB ThieleB. TheileB. ThieleB. ThieleldB.ThieleBob Jr. ThieleBob TheileBob ThelleBob ThielBob Thiele Jr.Bob ThielweBob ThileBob ThièleChielaDouglasG. ThieleGeorge DouglasR. ThellR. ThielR. ThieleR.ThieleRob ThieleRobert "Bob" ThieleRobert TheileRobert ThieldRobert ThieleRobert Thiele Jr.Robert ThielleTheileThielThielaThieleThiele B.ThielleThielsThileTielleTiellerР. Тиелבוב ת'ילבובי ת'ילボブ・シールGeorge DouglasStanley ClaytonThe Mysterious Flying OrchestraBob Thiele & His OrchestraBob Thiele And His New Happy Times OrchestraBob Thiele EmergencyChicago Rhythm Kings (3) + +253358Steve LittleDrummerNeeds VoteS. LittleSteven LittleСтив ЛиттлDuke Ellington And His OrchestraLionel Hampton And His All-Star Alumni Big BandTerry Gibbs QuartetSal Salvador Big BandDick Voigt's Big Apple Jazz BandJon De Lucia OctetThe Keith Ingham Quartet + +253367George ColemanGeorge Edward ColemanAmerican jazz saxophonist, born 8 March 1935 in Memphis, Tennessee, USANeeds Votehttp://www.georgecoleman.com/https://georgecoleman.bandcamp.com/https://en.wikipedia.org/wiki/George_ColemanColemanFrank WessG, ColemanG. ColemanGeorge Coleman Sr.George E. Colemanジョージ・コールマンジージ・コールマンThe Miles Davis QuintetSlide Hampton OrchestraThe Horace Silver QuintetThe Chet Baker QuintetSlide Hampton OctetMax Roach QuintetJazz ContemporariesLouis Smith QuintetCedar Walton QuartetFrank Strozier SextetThe George Coleman OctetEastern RebellionBooker Little 4George Coleman - Tete Montoliu DuoGeorge Coleman QuartetYoung Men From MemphisBill Easley SextetGeorge Coleman QuintetGeorge Coleman Septet + +253375Oscar Hammerstein IIOscar Greeley Clendenning HammersteinProlific US-American songwriter who teamed up with different composers from 1923 to 1943; from 1943 until his death in 1960 he formed a duo with [a=Richard Rodgers]. Hammerstein was inducted into the Songwriters Hall of Fame in 1970. + +Born July 12, 1895 in New York, NY; died August 23, 1960 in Doylestown, PA. + +Grandson of [a=Oscar Hammerstein] and nephew of [a=Arthur Hammerstein].Needs Votehttps://en.wikipedia.org/wiki/Oscar_Hammerstein_IIhttps://www.songhall.org/profile/Oscar_Hammersteinhttps://www.imdb.com/name/nm0358564/https://www.ibdb.com/broadway-cast-staff/oscar-hammerstein-ii-7965https://www.britannica.com/biography/Oscar-Hammerstein-IIhttps://www.biography.com/musician/oscar-hammerstein-iihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101947/Hammerstein_Oscar_II0. HammersteinBernsteinC Oscar Hammerstein IIC. Hammerstein IID. HammersteinEdgar GuestianH. Hammerstein IIH.HammersteinHamemrstein IIHamersteinHamerstein IIHamerstenHammensteinHammerrstein IIHammersHammersmithHammerstain IIHammersteim IIHammersteinHammerstein 11Hammerstein 2Hammerstein 2ndHammerstein 2nd.Hammerstein IHammerstein I IHammerstein IIHammerstein II, O.Hammerstein II.Hammerstein IIIHammerstein IIndHammerstein IiHammerstein IlHammerstein Jr.Hammerstein OscarHammerstein Oscar IIHammerstein iiHammerstein lIHammerstein ⅠⅠHammerstein ⅡHammerstein, 2ndHammerstein, IIHammerstein, Jnr.Hammerstein, Oscar IIHammerstein, RombergHammerstein,2ndHammerstein,OHammerstein; Jr.HammersteinIIHammersteinn IIHammerstenHammerstienHammerstineHammersyeinHammerteinHammesteinHammmerstienHammrsteinHamnersteinHamnmersteinHarmersteinHarmmensteinHarmsHemmersteinHemmestein II.HommerteinO HammersteinO Hammerstein IIO II HammersteinO, HammersteinO. HallersteinO. Hamemrstein IIO. HamersteinO. Hammarstein IIO. Hammersein IIO. HammersmithO. Hammersmith IIO. HammersteenO. HammersteinO. Hammerstein 11O. Hammerstein 2O. Hammerstein 2ndO. Hammerstein 2nd.O. Hammerstein BandO. Hammerstein IIO. Hammerstein II.O. Hammerstein IIIO. Hammerstein Jr.O. Hammerstein The 2ndO. Hammerstein iiO. Hammerstein llO. Hammerstein, 2ndO. Hammerstein, 2nd.O. Hammerstein, IIO. Hammerstein, Jr.O. Hammerstein.11O. HammersteingO. Hammerstin IIO. Hammerstin, Jr.O. HammerstineO. HammesteinO. HammmersteinO. Hammstein IIO. HanmersteinO. Hemmerstein IIO. HommersteinO. II HammersteinO.HammersteinO.Hammerstein IIO.Hammerstein IIIO.Hammerstein Jr.O.Hammerstein, 2ndO.HammersteinIIOriginal Cast Album from the Music Theater Of Lincoln CenterOsc. Hammerstein IIOscar & HammersteinOscar 2nd HammersteinOscar Clendenning Hammerstein IIOscar Greeley Clendenning Hammerstein IIOscar Hamerstein IIOscar HammerOscar Hammer-Stein 2ndOscar HammersteinOscar Hammerstein 11Oscar Hammerstein 2Oscar Hammerstein 2ndOscar Hammerstein 2nd.Oscar Hammerstein IIIOscar Hammerstein IIndOscar Hammerstein IiOscar Hammerstein, 2.0Oscar Hammerstein, 2ndOscar Hammerstein, IIOscar Hammerstein-llOscar HammersteinIIOscar HammesteinOscar Hemmerstein IIIOscar II HammersteinOscar II. HammersteinOskar HammersteinOskar HammesteinOtto HammersteinRomberg-HammersteinRomberg-Hammerstein IISigmund RombergО. ХамерстайнОскар Хаммерштайн IIאוסקר האמרשטייןהמרשטייןオスカー・ハマーシュテイン二世オスカー・ハマースタインオスカー・ハマースティン2世オスカー・ハマーステイン2世オスカー・ハマーステイン二世オスカー・ハンマースタイン奧斯卡·罕默斯坦Rodgers & HammersteinHammerstein-Kern + +253385Wes FarrellWesley Donald FarrellAmerican musician, songwriter and record producer, most active in the 1960s and 1970s. +Married to [a1737191] (1965-1972) and [a2191694] (1974-1976). + +Born: December 21, 1939 in New York City, New York. +Died: February 29, 1996 in Fisher Island, Florida. +Needs Votehttp://en.wikipedia.org/wiki/Wes_Farrellhttps://www.imdb.com/name/nm0268363/D. FarrellF. FarrelFarellFarewellsFarkelFarrelFarrellFarrell WesFarrell WestFavellFerrelFerrellFerrulFor Coral Rock Productions, Inc.ForellM .FarrellM. FarrelSarrellW FarrellW, FarrellW. DarrelW. FanellW. FarellW. FarreW. FarrelW. FarrellW. FarrelllW. FarrillW. FerrellW. FogelW. RarrellW. SarrellW. TarrellW.FarellW.FarrellWesWes FarellWes FarreWes FarrelWes FarrollWes FerrelWes FerrellWes ForrellWes-FarellWesley FarrellWess FarrelWess FarrellY. Farrellw. FarrellФерълWes Farrell OrchestraTen Broken HeartsThe Mustangs (21) + +253419Clyde OtisClyde Lovern OtisSongwriter and producer, born 11 September 1924 in Prentiss, Mississippi, died 8 January 2008 in Englewood, New Jersey. + +A songwriter since the 1950s, his songs have been recorded by artists such as [a=Nat King Cole], [a=Aretha Franklin], [a=Elvis Presley] and [a=Johnny Mathis]. In 1958 he joined [l=Mercury] Records as an A&R manager, producing recordings for artists like [a=Brook Benton] and [a=Dinah Washington]. Otis later worked as an independent producer. + +Co-wrote a song entitled "Ain't That Lovin' Baby" released in 1957: [m764003] and later covered by [a=Elvis Presley] NOT to be confused with [a=Jimmy Reed]'s song of the same name (1956) which was covered by many blues & rock artists.Needs Votehttp://www.tcomg.com/http://en.wikipedia.org/wiki/Clyde_Otishttps://repertoire.bmi.com/Search/Catalog?num=mcD422ZXw4cQJN7KmYwshw%253d%253d&cae=n2tyX7%252b%252b5U1Nvyf0ukxy3g%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Sneaky%20Alligator%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A20%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dB. OtisC OtisC. L. OtisC. OrisC. OrtisC. OtisC. OtisetC.L. OtisC.OpisC.OtisCl. OtisClide OtisClive OtisCly DeOtisClydeClyde L. OtisClyde Laver OtisClyde Lovern OtisClyde OttisClyed OtisClyte OtisCryde OtisCyde OttsJ. OtisJ.OtisK. OtisL. C. OtisL.C. OtisL.OtisLovern Clyde OtisLovern Otis ClLoverneO.O. LovernO. OrtisO. OtisOthisOtieOtisOtis ClydeOtisetisОтизCliff OwensArgon ProductionsClyde Otis And His OrchestraClyde Otis And His Smoothies + +253443Tommy FlanaganThomas Lee FlanaganAmerican jazz pianist (born March 16, 1930, Detroit, Michigan, USA, died November 16, 2001, New York City, New York, USA) + +Particularly remembered as an accompanist of Ella Fitzgerald and player on [i] Giant Steps [/i] by John Coltrane. He played on a number of critically acclaimed recordings, such as Sonny Rollins' [i] Saxophone Colossus, The Incredible Jazz Guitar of Wes Montgomery [/i], and Art Pepper's [i] Straight Life [/i]. + +Flanagan's style was both modest and exceptionally musical. He embodied many of the most important qualities associated with jazz: swing, harmonic sophistication, melodic invention, bluesy feel and humour. Interestingly, he appeared on a number of highly innovative albums. (His awkward solo, recorded on the extremely fast and harmonically complex title-track of Giant Steps, is an infamously rare instance of the usually unflappable pianist being caught off-guard.) + +During his career, Flanagan was nominated for four Grammy Awards — two for Best Jazz Performance (Group) and two for Best Jazz Performance (Soloist).Needs Votehttps://en.wikipedia.org/wiki/Tommy_Flanagan_(musician)https://rateyourmusic.com/artist/tommy-flanaganhttps://www.allmusic.com/artist/tommy-flanagan-mn0000519715http://hardbop.tripod.com/tommyf.htmlhttps://www.jazzdisco.org/tommy-flanagan/https://adp.library.ucsb.edu/names/315530https://tommyflanagan.bandcamp.com/FlanaganT FlanaganT. FlanaganT.FlanaganThomas Lee FlanaganThommy FlanaganTomiy FlanaganTommy FlanagenTommy FlannaganTommy FlanniganTommy Lee FlanaganТ. ФленегенТомми ФленеганТомми Флэнетанトミーフラナガントミー・フラナガンColeman Hawkins QuartetThe John Coltrane QuartetMiles Davis All StarsTommy Flanagan TrioThe Wes Montgomery QuartetBenny Golson SextetGerald Wilson OrchestraBobby Jaspar QuartetSonny Rollins QuartetRoy Haynes QuartetRay Brown All-Star Big BandThe J.J. Johnson QuintetMilt Jackson SextetThe Budd Johnson QuintetThe Dizzy Gillespie Big 7The Sonny Criss OrchestraNew York Jazz SextetGerry Mulligan QuintetArt Farmer QuartetThe Prestige All StarsThe Dave Bailey SextetThe Scott Hamilton QuartetJImmy Raney TrioPaul Chambers QuintetThe Curtis Fuller SextetBobby Jaspar QuintetThe Frank Wess QuartetThe Charlie Shavers QuartetCommunication (4)Phil Woods SeptetJ.J. Johnson QuartetArt Farmer And His OrchestraCurtis Fuller's QuintetPhilly Joe Jones SextetOscar Pettiford OrchestraTommy Flanagan QuartetCharlie Shoemake SextetThe Harry "Sweets" Edison QuintetWilbur Harden-Tommy Flanagan QuintetWilbur Harden SextetThe Super Jazz TrioThe Master TrioThe Kenny Burrell QuintetThe Detroit JazzmenJoe Newman QuintetThe Blue Mitchell OrchestraMichel Legrand Big BandGary Smulyan QuartetBenny Golson QuintetThe Wilbur Harden QuartetBooker Little 4Thad Jones SextetJazz Artists GuildThe Riverside Reunion BandJo Jones And His OrchestraEddie Locke SextetBenny Golson QuartetJo Jones SextetJoe Newman - Frank Foster QuintetRodney Jones/Tommy Flanagan QuartetOscar Pettiford Big BandJim Hall QuintetPepper Adams - Donald Byrd SextetTommy Flanagan / Hank Jones Duo + +253444Arthur TaylorEarly jazz banjo and guitar player + +For the American jazz drummer and band leader, please use [a261196] plus ANV!Needs VoteA. TaylorArthur WalkerKing Oliver & His OrchestraDave Nelson And The King's Men + +253445Percy HeathPercy HeathAmerican jazz bassist +Born April 30, 1923 in Wilmington, North Carolina, died April 28, 2005 in Southampton, New York +Known to served as the cornerstone of the Modern Jazz Quartet for over four decades. +Brother of [a=Jimmy Heath] and [a=Albert Heath]. Needs Votehttps://en.wikipedia.org/wiki/Percy_Heathhttp://www.bluenote.com/artist/percy-heath/https://www.radioswissjazz.ch/en/music-database/musician/174747c114feed0081584dc713f2df5219b56/biographyhttps://wbssmedia.com/artists/detail/795https://adp.library.ucsb.edu/names/320596HartHeathP. HeathPearcy HeathPercey HeathPerch HeathPercyPercy HeatPercy HeatyП. ХитПерси Хитパーシイ・ヒースパーシー・ヒースThe Modern Jazz QuartetThe Miles Davis SextetThe Thelonious Monk QuartetThe Miles Davis QuintetMiles Davis All StarsThe Modern Jazz SocietyThe Charlie Parker QuartetThe Thelonious Monk QuintetThe Wes Montgomery QuartetThe J.J. Johnson SextetDizzy Gillespie SextetStan Getz QuartetClifford Brown SextetLou Donaldson - Clifford Brown QuintetThelonious Monk TrioHoward McGhee SextetThe Modern Jazz GiantsSonny Rollins QuartetThe Horace Silver TrioThe Milt Jackson QuartetThe Miles Davis QuartetThe Tony Scott QuartetThe J.J. Johnson QuintetThe Art Farmer SeptetMilt Jackson QuintetThe Heath BrothersJoe Morris OrchestraMiles Davis And His BandSam Most QuartetSonny Rollins QuintetWalter Gil Fuller And His OrchestraCBS Jazz All-StarsThe Modern Jazz SextetSonny Rollins TrioThe Kenny Dorham QuintetThe Modern Jazz EnsembleBill Perkins QuintetArt Farmer QuintetThe BirdlandersLou Donaldson QuintetBill Evans QuintetCannonball Adderley QuartetThe Gigi Gryce QuartetElmo Hope SextetElmo Hope TrioElmo Hope QuintetThe Frank Foster QuintetMichel Sardaby TrioBenny Golson And The PhiladelphiansThe Paris All-StarsLou Donaldson SextetMilton Jackson And His New GroupGil Fuller OrchestraClark Terry SeptetArt Farmer TentetBirdland All-StarsArt Farmer Gigi Gryce Quintet + +253462Han BenninkHendrikus Johannes BenninkDutch jazz drummer and multi-instrumentalist, born April 17, 1942 in Zaandam, Amsterdam, The NetherlandsNeeds Votehttps://www.hanbennink.com/https://en.wikipedia.org/wiki/Han_Benninkhttps://www.imdb.com/name/nm0072175/BBenninkBennink H.J.H BH. BenninkH.BenninkH.J. BenninkHanHan BeHan BennickHan BenninckHans BennickHans Benninkハン・ベニンクハン・ベンニンクICPPeter Brötzmann OctetGlobe Unity OrchestraCompany (2)Cecil Taylor European OrchestraThe New Eternal Rhythm OrchestraPeter Brötzmann QuartetPeter Brötzmann SextetClusone 3Haazz & CompanyTobias Delius QuartetEric Dolphy QuartetEric Boeren 4TETMisha Mengelberg QuartetDerek Bailey / Han BenninkBrötzmann / Van Hove / BenninkICP OrchestraDexter Gordon QuartetICP TentetMisha Mengelberg/ Piet Noordijk-KwartetHan Bennink TrioMisha Mengelberg / Han BenninkBrötzmann / BenninkThe Theo Loevendie ConsortConference CallUgly Beauty (2)Leo Cuypers TrioSean Bergin's Song MobSean Bergin and M.O.B.Michael Moore QuartetMichiel Scheen QuartetDaniele D'Agaro Adriatics OrchestraDuo Janssen / BenninkRoyal Improvisers OrchestraHeavy Soul Inc.Ammü QuartettPeter Brötzmann NonetThe Mancini ProjectDick van der Capellen TrioSteve Beresford His Piano & OrchestraHarry Miller QuintetAlexander Von Schlippenbach-SeptettThe Joe Van Enkhuizen TrioThe WhammiesThomas Pelzer LimitedNew KlookabilitiesDavid Haney QuartetHans Kosterman QuartetJoe Van Enkhuizen QuartetSonos 'E Memoria And FriendsTrio Tony VosHan Bennink KwartetClusone QuartetQuartet-NLMisha Mengelberg TentetOmri Ziegele Tomorrow TrioICP SeptetDaniele D'Agaro Benny Bailey QuintetBBGtrioHan Bennink + Terrie ExIrène Schweizer Quartet + +253474Cab CallowayCabell Calloway IIIAmerican band-leader of the 1930s-1940s, jazz musician, singer, song-writer & multi-talented EmCee renowned for his 'scat singing' style. +Born December 25,1907, Rochester, New York, USA. +Died November 18, 1994, Cokebury Village, Hockessin, Delaware, USA. +Calloway's orchestra rotated as a 'house band' with that of [a145257] at the famous Cotton Club in Harlem through the Prohibition era. His snappy 'zoot-suit' dress sense and skillful vaudeville song-and-dance routines made him a popular entertainer. His 'moonwalking' predating that of Michael Jackson by about a half-century. +In later years, he continued performing and featured in films, such as "The Cincinnati Kid" (1965) with Steve McQueen and Edward G. Robinson. The "Cab Calloway School of the Arts", in Wilmington, Delaware, was dedicated in his name in 1994. Calloway died shortly after a stroke and his ashes are interred at Ferncliffe Cemetery in Hartsdale, New York. +Brother of [a888440].Needs Votehttps://en.wikipedia.org/wiki/Cab_Callowayhttps://www.imdb.com/name/nm0130572/https://www.britannica.com/biography/Cab-Callowayhttps://adp.library.ucsb.edu/names/103488Bob CallowayC. CallowayC. KallawayC.CC.C.C.CallowayCCCabCab CallawayCab Calloway and the menCab CallwayCab CollowayCab GallowayCabell "Cab" CallowayCabell 'Cab' CallowayCabell - CallowayCaliowayCallawayCallowayCalloway, CabCalowayCollowayD. BrooksGalowayGap CallowayKalinwayКэб Кэллоуэйキャブ・キャロウェイC. Calloway BrooksCab Calloway And His OrchestraCab Calloway And His Cotton Club OrchestraCab Calloway And His Cab JiversCab Calloway And The CabbaliersThe Cab Calloway ShowCab Calloway And His Band + +253475Louis JordanLouis Thomas JordanAmerican musician, bandleader, and songwriter, often referred to as the "King of the Jukebox". He gained fame in the 1930s and 1940s as the leader of [a=Louis Jordan and His Tympany Five]. +Born: July 8, 1908 in Brinkley, Arkansas, USA +Died: February 4, 1975 in Los Angeles, California, USA + +Louis played a crucial role in the development of rhythm and blues and is considered one of the forerunners of rock and roll. Jordan and his band were known for their upbeat, humorous songs and engaging stage presence. Jordan's music mixed swing, blues, and boogie-woogie into something frequently called jump blues. His music often included witty lyrics and a strong emphasis on rhythm, laying the groundwork for rock and roll. He popularized the use of smaller ensembles during the big band era, showcasing a sound that was accessible, danceable, and adaptable for jukeboxes. Jordan played all forms of saxophone, the clarinet and piano. His specialty was the alto sax. + +He recorded numerous hits, including "Caldonia," "Choo Choo Ch'Boogie," "Let the Good Times Roll," and "Ain't Nobody Here But Us Chickens." Many of these songs became crossover successes on both the R&B and pop charts. + +Louis Jordan significantly influenced a wide range of musicians and genres. His lively performance style, humorous storytelling, and innovative approach to blending genres inspired artists like [a=Chuck Berry], [a=Little Richard], [a=Bill Haley], [a=Ray Charles], [a=James Brown], [a=Dizzy Gillespie], [a=B.B. King], [a=Van Morrison] and many more. + +Inducted into Rock And Roll Hall of Fame in 1987 (Early Influence).Needs Votehttps://en.wikipedia.org/wiki/Louis_Jordanhttps://www.britannica.com/biography/Louis-Jordanhttps://www.allmusic.com/artist/louis-jordan-mn0000287604/biographyhttps://adp.library.ucsb.edu/names/109210GordonJ. JordanJ.JordanJanis JordanJordanJordan, LouisJordonJourdanL JordanL. JordanL. JordonL. JourdanL.JordanLewis JordanLois JordanLou JordanLouie JordanLouisLouis And The BoysLouis JordinLouis JordonLouis JourdanLouis Thomas JordanLuis L. JordanLuis Lewis JordanLouis Armstrong And His OrchestraLouis Jordan And His Tympany FiveChick Webb And His OrchestraElla Fitzgerald And Her Savoy EightLouis Jordan And His OrchestraClarence Williams And His OrchestraLouis Jordan And TrioThe Jungle Band (3)Louie Jordon's Elks Rendevouz Band + +253476Barney KesselAmerican jazz guitarist +Born on 17 October 1923 in Muskogee, Oklahoma, USA, died on 6 May 2004, University Heights, San Diego, USA +Father of [a=Dan Kessel] and [a=David Kessel]. Married to [a490513] from 1961 until their divorce in 1980. +Generally considered to be one of the greatest jazz guitarists of the 20th century, he was a member of many prominent jazz groups as well as a “first call” guitarist for studio, film, and television recording sessions. Kessel was a member of the group of session musicians known as The Wrecking Crew.Needs Votehttps://en.wikipedia.org/wiki/Barney_Kesselhttps://barneykessel.bandcamp.com/https://adp.library.ucsb.edu/names/325149https://www.imdb.com/name/nm0450255/B. KesselB. KessellB.KesselBarnel KesselBarnes KesselBarneyBarney / KessellBarney KasselBarney KassellBarney KesseBarney KessellBarney KesslBarney-KesselBarni KeselBarny KesselBarry KessellBernard "Barney" KesselBernard 'Barney' KesselBerney KesselKessKesselKessellRock MurphyThe Oscar Peterson TrioPaul Smith QuartetThe Charlie Parker QuartetThe Charlie Parker All-StarsBillie Holiday And Her OrchestraThe Benny Goodman QuintetGene Norman's "Just Jazz"The Swinging Bon VivantsArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraCharlie Barnet And His OrchestraKid Ory And His Creole Jazz BandThe Oscar Peterson QuartetRussell Garcia And His OrchestraRoy Eldridge And His OrchestraBenny Goodman And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraBarney Kessel's All StarsGeorgie Auld And His OrchestraCharlie Parker's New StarsThe 50 Guitars Of Tommy GarrettThe Buddy Bregman OrchestraLionel Hampton All StarsThe Newport All StarsRed Norvo SextetHampton Hawes QuartetFlip Phillips SextetThe Roy Eldridge QuintetThe Bopland BoysBenny Carter QuintetHot Rod Rumble OrchestraDodo Marmarosa TrioBarney Kessel QuintetThe Buddy Rich QuintetThe Buddy DeFranco SeptetteThe All Stars (7)Shorty Rogers And His Augmented "Giants"Bobby Troup And His Stars Of JazzThe Paul Desmond QuintetRed Norvo SeptetStan Hasselgard And His All Star SixBuddy DeFranco And His OrchestraThe Barney Kessel QuartetFlip Phillips And His OrchestraBarney Kessel And His MenThe Barney Kessel TrioHarry Edison SextetPete Rugolo And His All StarsBarney Kessel Plus Big BandThe Great GuitarsOscar Peterson & FriendsLionel Hampton And His GiantsJackie Mills QuintetMilton Rogers And His OrchestraBen Webster SeptetBuddy DeFranco And The All-StarsRed Norvo's NineGene Krupa ComboChico Marx And His OrchestraThe New Hot Club QuintetBarney Kessel And His OrchestraThe Poll WinnersBarney Kessel SeptetBarney Kessel SextetLionel Hampton's Just Jazz All StarsThe Contemporary LeadersArt Tatum SextetBarney Kessel & His Woodwind OrchestraBarney Kessel & Company + +253477Mose AllisonMose John Allison, Jr.American jazz & blues pianist and singer. +Born November 11, 1927, Tippo, Mississippi, USA, died November 15, 2016, Hilton Head, South Carolina, USA + +He was born outside Tippo, Mississippi on his grandfather's farm, which was known as The Island "because Tippo Bayou encircles it." He took piano lessons from age five, picked cotton, played piano in grammar school and trumpet in high school, and wrote his first song at age thirteen. He attended the University of Mississippi for a while, then enlisted in the U.S. Army for two years. Shortly after mustering out, he enrolled at Louisiana State University, from which he was graduated in 1952 with a BA in English with a minor in Philosophy. +In 1956, he moved to New York City and launched his jazz career performing with artists such as [a30486], [a37733], [a261286], [a263796], and [a253777]. His debut album, "Back Country Suite", was issued on the [l19591] label in 1957. He formed his own trio in 1958. +A compilation album entirely of vocals from previously released Prestige LPs, "Mose Allison Sings" (Prestige PR 7279), was released in 1963. It is a collection of songs that paid tribute to artists of the Mojo Triangle: [a287849] ("Eyesight to the Blind"), [a386791] ("That's All Right") and [a166684] ("The Seventh Son"). However, it was an original composition on the anthology that brought him the most attention – "Parchman Farm" (originally released on "Local Color", Prestige PR 7121, and recorded in 1957). For more than two decades, "Parchman Farm" was his most requested song. He dropped it from his playlist in the 1980's because some critics felt it was politically incorrect. Allison explained to [i]Nine-O-One Network Magazine[/i]: "I don't do the cotton sack songs much anymore. You go to the Mississippi Delta and there are no cotton sacks. It's all machines and chemicals." His 1987 recorded album "Ever Since The World Ended" (Blue Note 48015) received the highest rating (5 starts) in the February 1988 issue of "DownBeat". +[l1866] and later [l681] tried to market him as a blues artist. Because he sang blues, [i]Jet[/i] magazine thought that he was black and wanted to interview him. +Allison was inducted into the Long Island Music Hall of Fame in 2006. +Allison's March 2010 album, "The Way of the World", "marked his return to the recording studio after a 12-year absence." +In 2012, Allison was honored with a blues marker on the Mississippi Blues Trail in his hometown of Tippo. On January 14, 2013, Allison was honored as a Jazz Master by the National Endowment for the Arts at a ceremony at Lincoln Center in New York. The NEA Jazz Masters Fellowship is the nation's highest honor in jazz. +Allison wrote some 150 songs. His own performances have been described as "delivered in a casual conversational way with a melodic southern accented tone that has a pitch and range ideally suited to his idiosyncratic phrasing, laconic approach and ironic sense of humor."Needs Votehttps://www.moseallison.com/https://en.wikipedia.org/wiki/Mose_Allisonhttps://adp.library.ucsb.edu/names/301030AlisonAllisonAllison, MoseAllsionEllisonG AllisonM AllisonM J AllisonM. AlisonM. AllisonM. J. AllisonM. T. AllisonM.AlisonM.AllisonM.J. AllisonM.J. AllsionMole AllisonMoose AllisonMoose AllysonMoseMose AlisonMose AlliysonMose J. AlisonMose J. AllisonMose. AllisonTownshend"Old Grand Happy"The Mose Allison TrioStan Getz QuartetAl Cohn - Zoot Sims QuintetAl Cohn QuintetThe Manhattan Jazz All Stars + +253478Jon HendricksJohn Carl HendricksJon Hendricks (born September 16, 1921, Newark, Ohio, USA – died November 22, 2017, Manhattan, New York, USA) was an American jazz lyricist and singer.Needs Votehttps://en.wikipedia.org/wiki/Jon_Hendrickshttps://www.imdb.com/name/nm0376735/https://adp.library.ucsb.edu/names/204422& Carl HendricksCarl John HendricksDendricksE. HendricksHendericksHendersonHendicksHendrickHendrickcsHendricksHendricks (English)HendrickxHendricsHendrics JonHendriksHendrixHenricksJ HendricksJ. C. HendricksJ. HeindricksJ. HendericksJ. HendicksJ. HendrcksJ. HendricksJ. HendriksJ. HendrixJ. HenricksJ.C. HendricksJ.HendricksJ.HendrickxJames HendricksJoe HendricksJoh HendricksJohn Carl "Jon" HendricksJohn Carl HendricksJohn HendricksJohn HendricsJon BendricksJon Carl HendricksJon HendrickJon HendrickiJon HendrickxJon HendricsJon HendriksJon HendrixJone HendricksL. HendricksRendrickhendrickДж. Хендриксジョン・ヘンドリックスLambert, Hendricks & RossLambert, Hendricks & BavanJon Hendricks And The All-StarsJon Hendricks & FriendsJon Hendricks & CompanyWes Montgomery All-StarsJon Hendricks - Johnny Griffin Group + +253481Django ReinhardtJean ReinhardtRomani-French jazz guitarist and composer. He was also a painter, fly fisher and billiard player. Brother of [a=Joseph Reinhardt]. Father of [a=Henri "Lousson" Baumgartner-Reinhardt], [a=Babik Reinhardt], grandfather of [a=David Reinhardt]. He died of cerebral haemorrhage. +Born: 23 January 1910, Liberchies, Belgium. +Died: 16 May 1953, Fontainebleau, Seine-et-Marne, France + +Needs Votehttps://en.wikipedia.org/wiki/Django_Reinhardthttps://www.imdb.com/name/nm0718099/https://adp.library.ucsb.edu/names/103518Crazy RhythmD ReinhardtD, ReinhardtD. ReinhardD. ReinhardtD. ReinhartD. RheinhardtD. RheinhartD. RhienhardtD.R.D.ReinhardD.ReinhardtD.ReinhartDJ ReinhardtDJ. ReinhardtDRDj Ango ReinhardDj. RajnhardtDj. ReinhardtDjangDjangoDjango RehinardtDjango RehinartDjango ReinhaertsDjango ReinhardDjango ReinhartDjango RenhartDjango RheinardtDjango RheinhardtDjungo ReinhardtJ. ReinhardtJ. ReinhartJangoJean "Django" ReinhardtJean ReinhardtJean-Baptiste "Django" ReinhardtJean-Jacques ReinhardtJeangotJiango ReinhardtJiango RenardJungo ReinhardtM. Jungo ReinhardtReindhardtReinhardReinhardtReinhardt JeanReinhardt, D.ReinhartReinhrdtRheinhardRheinhardtRhienhardtД. РейнхардтД. РейнхартДж. РейнхардтДж. РейнхартДжанго РейнхардДжанго Рейнхардтジャンゴ・ラインハルトX. (2)Jean GotQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreSouth-Grappelli-Reinhardt ComboGrappelli-Reinhardt ComboBenny Carter And His OrchestraDjango Et CompagnieOrchester Stan BrendersDjango's MusicFestival SwingRex Stewart And His FeetwarmersColeman Hawkins And His All Star Jam BandPhilippe Brun "Jam Band"Philippe Brun And His Swing BandNoel Chiboust Et Son OrchestreBill Coleman & His OrchestraStéphane Grappelli And His Hot FourHubert Rostaing Et Son OrchestrePierre Allier Et Son OrchestreDjango Reinhardt Et Son QuintetteMichel Warlop Et Son OrchestreNitta Rette Et Son Trio HotGus Viseur Et Ses PotesArthur Briggs And His OrchestraFranco American QuartetFranco American QuintetDjango Reinhardt & His American Swing BandDjango Reinhardt Et Son OrchestreThe Air Transport Command BandDickie Wells And His OrchestraRex Stewart QuintetGuérino Et Son Orchestre Musette De La Boite À MatelotsDjango Reinhardt TrioDjango Reinhardt Et Ses RythmesPatrick & Son Orchestre De DanseAndré Ekyan Et Son Orchestre JazzL'Orchestre Du Theatre DaunouLouis Vola Et Son Orchestre Du Lido De ToulonTrio De Saxophones Alix CombelleEddie South QuartetL'Orchestre AlexanderJazz Club Mystery Hot BandDjango Reinhardt QuartetGarnet Clark And His Hot Club's FourDjango Reinhardt Sextet + +253482Fats WallerThomas Wright WallerAmerican jazz pianist, organist, composer and comedic entertainer (born 21 May 1904 in Harlem, New York, USA - died 15 December 1943 in a Santa-Fé-Express near Kansas City, Missouri, USA (bronchial pneumonia). + +One of the most popular jazz performers of his era. + +Thomas Wright Waller was the youngest of four children born to Adaline Locket Waller and the Reverend Edward Martin Waller. He started playing the piano when he was six and graduated to the organ of his father's church four years later. At the age of fourteen he was playing the organ at Harlem's Lincoln Theater and within twelve months he had composed his first rag. Waller's first piano solos ("Muscle Shoals Blues" and "Birmingham Blues") were recorded on October 1922 in Race Records when he was 18 years old. + +He was the prize pupil, and later friend and colleague, of stride pianist James P. Johnson. Fats Waller was the son of a preacher and learned to play the organ in church with his mother. Overcoming opposition from his clergyman father, Waller became a professional pianist at 15, working in cabarets and theaters. In 1918 he won a talent contest playing Johnson's "Carolina Shout", a song he learned from watching a player piano play it. + +Waller contracted pneumonia and died on a cross country train trip near Kansas City, Missouri on December 15, 1943, after making a final recording session with an interracial group in Detroit that included white trumpeter Don Hirleman. He was on his way back to Hollywood for more film work, after the smash success of "Stormy Weather". Coincidentally, as the train with the body of Waller stopped in Kansas City, so stopped a train with his dear friend Louis Armstrong on board. + +Thomas "Fats" Waller was inducted into the Songwriters Hall of Fame in 1970.Needs Votehttp://www.fatswaller.org/https://www.songhall.org/profile/Thomas_Wallerhttps://en.wikipedia.org/wiki/Fats_Wallerhttps://adp.library.ucsb.edu/names/101963" Fats " Waller"Fats Waller""Fats""Fats" Valler"Fats" Waller"Fats" Waller & His Rhythm"Fats" Waller And His Piano"Fats" Waller And His Rhythm"Fats" Waller At His Piano"Fats" Waller, Piano And Vocal"Fats' Waller'Fats' Waller'Fats' Waller Piano SoloF WallerF. WallerF. T. WallerF. WalerF. WalkerF. WallerF. WallersF. WalterF.-W. AllerF.W.F.WallerFWFallerFast WallerFat's WallerFatsFats WalerFats WalkerFats WalleFats Waller (At The Organ)Fats Waller And His Rhythm PianoFats Waller At His PianoFats Waller At The OrganFats Waller.Fats WalterFats WellerFatz WallerJ. WallerMillerMr. WallerT Fats WallerT WallerT"Fats"WallerT. "Fat"s WallerT. "Fats" WalkerT. "Fats" WallerT. 'Fats' WallerT. (Fats) WallerT. F. WallerT. Fats WallerT. Fatts WallerT. W. WallerT. WalkerT. WallerT. WalterT. « Fats » WallerT.F. WallerT.Fatts WallerT.W. WallerT.W.WallerT.WalkerT.WallerTF. WallerTH. WallerTh. "Fats" WallerTh. Fats WallerTh. WallerThomas "Fats" WallerThomas "Fast" WallerThomas "Fate" WallerThomas "Fats WallerThomas "Fats Waller"Thomas "Fats" WallThomas "Fats" WallerThomas "Fats" Waller & His Hot PianoThomas "Fats" Waller And His Hot PianoThomas "Fats" Waller*Thomas "Fats" WallterThomas "Fats" WollerThomas "Fatz" WallerThomas ''Fats'' WallerThomas 'Fats WallerThomas 'Fats' WallerThomas 'Fats' Waller Pipe Organ SoloThomas 'Fats' Waller Singing To His Hot PianoThomas ("Fats") WallerThomas (Fats) WallerThomas (Fats) WallterThomas ,Fats' WallerThomas Fato WallerThomas Fats WallerThomas Fats WellerThomas W. "Fats" WallerThomas W. (Fats) WallerThomas W. Fats WallerThomas WallerThomas Waller Piano SoloThomas WallersThomas WalterThomas WellerThomas Wright "Fats" WallerThomas Wright 'Fats' WallerThomas Wright WallerThomas « Fats » WallerThomas «Fast» WallerThomas «Fats» WallerThomas »Fats« WallerThomas ‘Fats’ WallerThomas “Fats” WallerThomas „Fats" WallerThomas „Fats“ WallerThomas „Fats” WallerThomas"Fats"WallerThomas-WallerThomas/WallerThomas»Fats«WollerThos. "Fats" WallerThos. WallerTom WallerTomas Fats WallerVallerWW.WailerWalerWalkerWallaceWallarWallenWallerWaller BrooksWaller T. FarsWaller Th.Waller ThomasWaller Thomas FatsWaller, Thomas FatsWaller/ThomasWalleyWallnerWallorWalterWarnerWarrenWaterWellerWhelerWilerWright-Waller« Fats » Waller«Fats» Waller»Fats« Waller»Fats» WallerТ. ВэллерТ. УоллерУоллерФ. УальерФ. УоллерФ. УоллэрФэтс Уоллер“Fats” Wallerファッツ・ウォーラーThomas WileyMaurice (63)McKinney's Cotton PickersFats Waller & His RhythmFletcher Henderson And His OrchestraThe Chocolate DandiesR.C.A. Victor All-StarsJack Teagarden And His OrchestraFats Waller And His BuddiesThe Little Chocolate DandiesEddie Condon And His BandFats Waller And His OrchestraTed Lewis And His BandJohnny Dunn's Original Jazz HoundsCloverdale Country Club OrchestraJimmy Johnson And His OrchestraFats Waller And His Big BandLouisiana Sugar BabesFats Waller & His Continental RhythmFats Waller And FriendsFats Waller's Jam School + +253632Karl JenkinsKarl William Pamp JenkinsWelsh multi-instrumentalist and contemporary composer (born 17 February 1944, Penclawdd [Swansea], Wales). Sir Karl Jenkins is Commander of the Most Excellent Order of the British Empire (CBE), Knight Bachelor, Fellow of the [l=Royal Academy of Music] (FRAM), and Honorary Fellow of the Learned Society of Wales (HonFSLW). He performs on baritone & soprano saxophones, oboe, and keyboards. Jenkins grew up in Penclawdd village in Gower (now part of Swansea), born to a Swedish mother and Welsh father, a chapel organist and choirmaster, who gave Karl his first music lessons. In high school, 12-year-old Jenkins began playing oboe in the [a=National Youth Orchestra Of Wales]. He got formally educated at [l=Cardiff University], followed by postgraduate studies at the [l=Royal Academy of Music] in London. + +Early in his career, Karl Jenkins was primarily known as a jazz and fusion / jazz-rock saxophonist, oboist, and keyboard player. He participated in several of [a=Graham Collier]'s ensembles and was active in the early free jazz / improv UK scene. In 1969, Jenkins co-founded the [b][url=https://discogs.com/artist/184256]Nucleus[/url][/b] band, which won the [l=Montreux Jazz Festival]'s first prize and headlined the [l=Newport Jazz Festival] the following year. As a session player and band member, Karl Jenkins appeared on such notable albums as [a=Elton John]'s [i][m=84216][/i] (1970) or [i][m=197775][/i] (1972) by [a=Barry Guy] with [a=London Jazz Composers Orchestra]. (Jenkins played alongside [a=Mark Charig] on a bugle and [a=Alan Wakeman] on tenor & soprano saxophones, cousin of [a=Rick Wakeman] of [a=Yes] fame). + +In 1972, Karl Jenkins joined [b][a=Soft Machine][/b], a prog / jazz-rock / fusion band from Canterbury formed by [a=Mike Ratledge]. He remained with the group until 1978 (and joined for brief reunions in 1980–81 and '84), active as a lead composer on many Soft Machine LPs. Jenkins toured extensively with the band, performing at [l=Carnegie Hall], the [l=Royal Albert Hall]'s "Proms" and [l=The Reading Festival]. In November 1973, Jenkins and Ratledge participated in a live-in-the-studio performance of [a=Mike Oldfield]'s [i][m=15016][/i] for the [l=BBC] (available on [i][m=315636][/i] VHS/DVD compilation). Jenkins also recorded library music with Ratledge, sometimes using the Rubba moniker. + +In the late 1980s and early 1990s, Karl Jenkins mainly focused on commercial music. Collaborating with [url=https://discogs.com/label/1372991]Bartle Bogle Hegarty[/url] agency, Jenkins created soundtracks for [l=Levi's], [l=Renault], and De Beers, among other prominent clients. (Karl subsequently developed De Beers' theme into a full-length orchestral work, [i][m=585426][/i]). In 1994, Jenkins started [b][a=Adiemus][/b] - a series of orchestral new-age albums with vocals. (The opening song on the debut album, [i][m=10543][/i], released in 1995 on CD/Cassette by [l=Virgin], was based on Karl's TV commercial tune for [l=Delta Air Lines].) Notably, all singing was in a fictional lyrical language, vaguely reminiscent of Latin, and constructed by Jenkins purely phonetically. (Similar to the [i]Kobaïan[/i] language invented by French drummer and musician [a=Christian Vander] for [url=https://discogs.com/artist/179749]Magma[/url] band). + +In 1999, Jenkins wrote [i][m=620433][/i], a neo-classical Mass for orchestra and mixed choir, commissioned by the Royal Armouries and debuted at [l=Royal Albert Hall]. Since then, it become one of Karl's best-known works, with over 400 performances and several critically-acclaimed recordings. In May 2023, Jenkins commissioned [i]Tros Y Garreg[/i] (Crossing The Stone in English), one of 12 new works for the coronation of [url=https://discogs.com/artist/2253564]Charles III[/url], attending its debut performance at [l=Westminster Abbey]'s ceremony. His photos from the event briefly circulated in the media, starting with memes joking that Karl was, instead, Meghan Markle ([a=HRH Prince Harry]'s wife and estranged Duchess of Sussex) in buffoonish disguise, and subsequently numerous debunkings in high-profile press.Needs Votehttp://www.karljenkins.com/https://web.archive.org/web/20240108180835/https://www.karljenkins.com/https://www.facebook.com/KarlJenkinsMusichttps://www.instagram.com/karljenkinsofficial/https://en.wikipedia.org/wiki/Karl_Jenkinshttps://www.youtube.com/@karljenkinsofficialhttps://www.calyx-canterbury.fr/mus/jenkins_karl.htmlAdiemus (Karl Jenkins)Adiemus - Karl JenkinsAdiemus/JenkinsCarl JenkinsDr Karl Jenkins OBEDr. Karl Jenkins OBEJenkinsJenkins After BeethovenJenkins After ChopinJenkins After SchubertJenkins K.K JenkinsK. JenkinsK. Jenkins/ W. Pamp.K.JenkinsKarl JenkingsKarl JenkisKarl William JenkinsKarl William Pamp JenkinsM. JenkinsSir Karl JenkinsКарл ДженкинсКарл Дженкінсカール・ジェンキンスカール・ジェンキンズジェンキンス卡尔·詹金斯卡爾詹肯斯칼 젠킨스J.D. MumblesAdiemusRollercoaster (2)Soft MachineNucleus (3)Spontaneous Music EnsembleGraham Collier SextetCentipede (3)Plaza (4)London Jazz Composers OrchestraThe Graham Collier SeptetRubbaNational Youth Orchestra Of WalesJAR (9)Camille (45)Karl Jenkins OrchestraIan Carr Double Quintet + +253633John MarshallJohn Stanley MarshallBritish jazz drummer, +born 28th August 1941, Isleworth, Middlesex, UK. +died 16th September, 2023 +For the American drummer who has worked with The Paul Winter Consort and The Adagio Ensemble please use [a=John Marshall (10)].Needs Votehttps://en.wikipedia.org/wiki/John_Marshall_(drummer)https://www.drummerworld.com/drummers/John_Marshall.htmlhttps://www.imdb.com/name/nm7612094/Ejohn MarshallJ MarshallJ. MarshallJMJohnMarhsallMarshallДжон МаршаллThe Expanding FlanThe Evaporating FlanSoft MachineNucleus (3)Spontaneous Music EnsembleGraham Collier SextetThe Mike Westbrook Concert BandMike Westbrook OrchestraThe Chitinous EnsembleEberhard Weber ColoursZoot Sims QuartetJohn Surman QuartetCentipede (3)The NDR Big BandSoft Machine LegacyMorning Glory (2)Pork PieThe Mike Gibbs OrchestraThe Graham Collier SeptetMike Garrick Jazz OrchestraThe Mike Gibbs BandFormerly Fat HarrySoft WorksJoe Sachse ProjektLinks (5)Tsabropoulos / Andersen / Marshall TrioMarshall Travis WoodNeighbours CercleChristoph Oeding TrioZbigniew Seifert SextetIan Carr Double QuintetCoe, Wheeler & CoIan Carr QuintetPat Smythe Quartet + +253641Red GarlandWilliam McKinley Garland, Jr.American jazz pianist. + +Born: 13 May 1923 in Dallas, Texas, USA. +Died: 23 April 1984 in Dallas, Texas, USA (aged 60). +Needs Votehttp://en.wikipedia.org/wiki/Red_Garlandhttp://www.allaboutjazz.com/bios/rxgbio.htmhttp://www.jazzdisco.org/garland/dis/cGarlandJ GarlandR. GarlandRed CarlandWilliam "Red" GarlandWilliam 'Red' Garlandレッド・ガーランドThe John Coltrane QuartetThe Red Garland TrioThe Miles Davis QuintetThe Charlie Parker All-StarsThe Red Garland QuintetSonny Rollins QuartetThe Miles Davis QuartetRed Garland Quartet + +253649Omar HakimOmar HakimBorn February 12,1959 New York City. +American jazz, jazz fusion and pop music drummer, producer, arranger and composer. He has performed for some of the most high-profile music artists in the world, including [a=David Bowie], [a=Sting], [a=Madonna], [a=Dire Straits], [a=Journey], [a=Kate Bush], [a=George Benson], [a=Miles Davis], [a=Mariah Carey], [a=Celine Dion], [a=Weather Report], [a=Marcus Miller] and many others.Needs Votehttp://www.omarhakim.com/https://en.wikipedia.org/wiki/Omar_HakimHakimO. HakimO.H.OmarOmar AkimOmar HakeemOmar HakiemOmar HakiimOmar HakinOmar HaklimOmar Ibn HakimOmar MakimOmar-Bin-HakimOmar-Ibn-Hakimオマー・ハキムChicWeather ReportSassGil Evans And His OrchestraSpecial EFXThe Great Jazz TrioAl Di Meola ProjectDon Friedman TrioMike Mainieri QuintetKnut Værnes GroupThe Omar Hakim ExperienceThe Trio Of OzUrbaniak-Coryell BandHerbie Hancock's Super QuartetOzmosys (2)Herbie Hancock Special Quartet + +253774Randy BreckerRandal Edward BreckerGrammy Award winning American jazz trumpet and flugelhorn player, composer and producer, based in New York City, USA + +Born 27 November 1945 in Cheltenham, Pennsylvania, USA + +Previously married to jazz/classical pianist [a=Eliane Elias] in the 1980s, with whom they have a daughter [a=Amanda Elias Brecker] (a jazz vocalist herself); they divorced in 1990. In 2010 he married saxophonist [a=Ada Rovatti]/[a=Ada Brecker]. He collaborated musically with both of his wives. His brother, the late [a=Michael Brecker], was also a jazz saxophonist. + +Co-founder (with his brother Michael) of the jazz club [l=Seventh Avenue South, New York City], and the production company [l=Brecker Productions].Needs Votehttps://randybrecker.comhttps://myspace.com/randybreckerhttps://soundcloud.com/randy-brecker-officialhttps://www.youtube.com/user/RandyBreckerhttps://www.facebook.com/RandyBreckerhttps://x.com/randybreckerhttps://www.jorgenand.se/bst/bst_stor.html#breckerhttps://en.wikipedia.org/wiki/Randy_Breckerhttps://inter-jazz.com/web/artists/randy-breckerhttps://musicianbio.org/randy-breckerhttps://www.famousbirthdays.com/people/randy-brecker.htmlhttps://www.grammy.com/grammys/artists/randy-brecker/707https://www.instagram.com/randybreckerB. BreckerBrandy BreckerBreckerMr. Randy BreckerR. BreckerR.BreckerRandal BreckerRandal E. BreckerRandall BreckerRandel BreckerRandyRandy BeckerRandy BecketRandy BleckerRandy BrackerRandy BreackerRandy BreckersRandy BreckertRandy BreckezRandy E. BreckerRonald E. BreckerS. BreckerР. БрекерР. Брекер = R. Brakerランディ・ブレッカーRonald BreckerRandroid (2)The Brecker BrothersBlack Light OrchestraHarlem River DriveWhite ElephantBlood, Sweat And TearsThe George Gruntz Concert Jazz BandThe Plastic Ono BandArt Blakey & The Jazz MessengersThe Jazz Composer's OrchestraThe Horace Silver QuintetChroma (2)Dalia Faitelson's Global SoundThe Carnegie Hall Jazz BandMan Doki SoulmatesDreams (4)Jaco Pastorius Big BandThe Brecker BoysDas PferdThe Eleventh HouseGRP All-Star Big BandCTI All-StarsMingus DynastyThe New York All StarsPond Life (2)Randy Brecker QuintetMingus Big BandBob Mintzer Big BandThe Pond Life OrchestraThe David Liebman QuintetChild Is Father To The ManMarc Copland QuintetHal Galper QuintetThe Richard Sussman QuintetRon McClure QuartetDuke Pearson's Big BandMike Mainieri & FriendsThe Jamie Baum GroupMilky Way (3)Bill Warfield Big BandRandy Brecker SessionA NYC TributeWoody Witt QuintetDizzy Gillespie All-Star Big BandThe Fusion SyndicateRenolds Jazz OrchestraSoulbopbandColors Of JazzAndy LaVerne QuartetConrad Herwig QuintetKerry Strayer SeptetThe Jack Wilkins QuartetDon Grolnick GroupN.Y. All StarsLoren Schoenberg And His Jazz OrchestraFarberiusThe Brecker Brothers Band ReunionThe Fisher Fidelity Standard Rock BandPat LaBarbera QuintetWord Of Mouth SextetRandy Brecker BandAkio Sasajima Randy Brecker QuintetGary Husband's Force MajeureThe Jazz Times Superband + +253777Phil WoodsPhilip Wells WoodsAmerican jazz alto saxophonist, clarinetist, composer & bandleader, born 2 November 1931 in Springfield, Massachusetts, USA, died 29 September 2015 in Stroudsburg, Pennsylvania, USA at the age of 83.Needs Votehttp://www.philwoods.com/https://www.facebook.com/profile.php?id=100063597427250https://en.wikipedia.org/wiki/Phil_Woodshttps://www.imdb.com/name/nm0940746/P. WoodsP. WouldsP.WoodsPh WoodsPh. WoodsPhilPhil WoodPhil Woods & Co.Philip Wells WoodsPhilip WoodsPhill WoodsWoodWoodsWouldsФ. ВудсФил Вудсフィル・ウッズPhil Funk (3)Quincy Jones And His OrchestraGil Evans And His OrchestraClarke-Boland Big BandThe George Gruntz Concert Jazz BandDizzy Gillespie And His OrchestraRhythmstickDizzy Gillespie Big BandCharlie Barnet And His OrchestraThe Bob Prince TentetteBenny Carter And His OrchestraOliver Nelson And His OrchestraThe Ernie Wilkins OrchestraPhil Woods And His European Rhythm MachineThe Gary McFarland OrchestraThe Thelonious Monk OrchestraGeorge Wallington QuintetThe Band (7)The Phil Woods QuartetThe Phil Woods QuintetThe Jazz Interactions OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraLarry Sonn OrchestraJoe Morello SextetThe Manhattan Jazz All StarsPhil Woods SeptetThe Buddy Rich QuintetArt Farmer And His OrchestraOrchestra U.S.A.The Quincy Jones Big BandBob Brookmeyer And His OrchestraPhil Woods/Gene Quill QuintetEddie Costa QuintetThe Birdland StarsThe Phil Woods SixThelonious Monk NonetPhil Woods New Jazz QuintetThe Woody James SeptetPhil Woods' Little Big BandPhil Woods-Gene Quill SextetGreg Abate QuintetThe Bill Potts Big BandThe Clark Terry SpacemenClark Terry SeptetThe Brian Lynch/Eddie Palmieri ProjectThe Jim Chapin SextetBrian Lynch Afro Cuban Jazz OrchestraPhil Woods Lee Konitz Enrico Rava 6etPhil Woods With StringsPhil Woods Lee Konitz 5etMichel Legrand & Co.PHIL WOODS TRIOFriedrich Gulda And His SextetJim Chapin OctetPhil Woods-Lee Konitz QuintetThe Bob Lark • Phil Woods QuintetSahib Shihab Sextet + +253780Marvin "Smitty" SmithMarvin Otis Smith IIAmerican jazz drummer and composer (born June 24, 1961 in Waukegan, Illinois). Nicknamed "Smitty". +Played with : George Shearing, Hamiet Bluiett, Branford Marsalis, Donald Byrd, Monty Alexander, David Murray, Kevin Eubanks, Grover Washington Jr., Bobby Watson and many others. +[b]Note:[/b] Not to be confused with [a2033113], another jazz drummer. +Needs Votehttp://www.drummerworld.com/drummers/Marvin_Smith.htmlhttp://en.wikipedia.org/wiki/Marvin_Smith"Smitty" SmithM. (Smitty) SmithMarvin "Bugalu" SmithMarvin 'Smitty' SmithMarvin SmithMarvin Smitty SmithMarvin [Smitty] SmithMarvin »Smitty« SmithMarvon "Smitty" SmithSmithSmittySmitty SmithSteve Coleman And Five ElementsDavid Holland QuartetDave Holland QuintetRhythmstickBenny Golson Funky QuintetGeorge Shearing TrioSteve Coleman GroupStrata InstituteM-Base CollectiveThe Kenny Drew Jr. TrioDon Byron QuintetMingus DynastyMingus Big BandThe JazztetMonty Alexander's Ivory & SteelGunter Hampel New York OrchestraBilly Childs EnsembleThe Lonnie Smith = John Abercrombie TrioBobby Watson QuartetRobert Watson QuartetThe Horizon QuintetSuperblue (2)Ralph Moore QuintetBruce Forman TrioThe Robert Watson SextetJim Snidero QuintetPeter Leitch QuintetPeter Leitch SextetMakoto Kuriya X-Bar TrioThe Peter Leitch QuartetJoanne Brackeen QuartetMickey Tucker SextetThe Andy Jaffe SextetHugh Lawson TrioRay Drummond Quintet + +253853King Oliver & His Dixie SyncopatorsCorrectJoe 'King' OliverKing Oliver & His Dixie SyncopatersKing Oliver And His Dixie SyncopatorsKing Oliver Et Dixie SyncopatorsKing Oliver and His Dixie SyncopatorsKing Oliver's Dixie SyncopatersKing Oliver's Dixie SyncopatorsKing Oliver's Savannah SyncopatorsKing Olivers Dixie SyncopatorsJimmie Noone's Apex Club OrchestraLuis Russell And His OrchestraConnie's Inn OrchestraThe Savannah SyncopatorsKid OryAlbert NicholasRichard M. JonesEd AndersonEd CuffeeJ.C. HigginbothamCyrus St. ClairLuis RussellPaul BarbarinArville HarrisClarence WilliamsBarney BigardJohnny DoddsKing OliverOmer SimeonBud ScottJimmy ArcheyWill Johnson (2)Lawson BufordDarnell HowardBass MooreStump EvansPaul Barnes (2)Leroy TibbsBob ShoffnerBert CobbBilly PaigeThomas Gray (4)Ernest ElliottLeroy Harris (2) + +253855Tommy Dorsey And His OrchestraOrchestra under the leading of Tommy Dorsey, formed in 1935 and disbanded a first time in 1946. By late 1946, the band business was indeed having problems. In December 1946, some members of the band (including Tommy Dorsey) were calling it quits. However, less than two years later, he formed an orchestra with exactly the same name (Tommy Dorsey and his orchestra), but with different members. + +Dorsey's orchestra was known primarily for its renderings of ballads at dance tempos, frequently with singers such as Jack Leonard and Frank Sinatra. + +Needs Votehttps://adp.library.ucsb.edu/names/103770And OrchestraBandBand ChorusDas Tommy Dorsey-OrchesterDie Original Tommy Dorsey Big BandDorseysHis OrchestraMembers Of The Tommy Dorsey OrchestraOrch. Tommy DorseyOrchester Tommy DorseyOrchestraOrchestra Di Tommy DorseyOrchestra Tommy DorseyOrq. Tommy DorseyOrquesta De Tommy DorseyOrquesta Tommy DorseyOrquesta de Tommy DorseySentimental DorseyT. Dorsey & His OrchestraT. Dorsey And His OrchestraT. Dorsey E La Sua OrchestraT. Dorsey Orch.T. Dorsey Y Su OrquestraThe BandThe OrchestraThe Original Tommy Dorsey OrchestraThe T. Dorsey OrchestraThe Tommmy Dorsey OrchestraThe Tommy Dorsey OrchestraThe Tommy Dorsey OrchThe Tommy Dorsey Orch.The Tommy Dorsey OrchestraTom Dorsey & His Novelty OrchestraTom Dorsey & His OrchestraTom Dorsey And His Novelty OrchestraTommyTommy DorseyTommy Dorsey & His Clambake FiveTommy Dorsey & His O.Tommy Dorsey & His Orch.Tommy Dorsey & His OrchestraTommy Dorsey & Orch.Tommy Dorsey & OrchestraTommy Dorsey & Son OrchestreTommy Dorsey & his OrchTommy Dorsey (And His Orchestra)Tommy Dorsey And His Clambake SevenTommy Dorsey And His Greatest BandTommy Dorsey And His Novelty OrchestraTommy Dorsey And His OrchTommy Dorsey And His Orch.Tommy Dorsey And His Orchestra And The Pied PipersTommy Dorsey And His Orchestra And The Pled PipersTommy Dorsey And His Original OrchestraTommy Dorsey And His Original-OrchestraTommy Dorsey And OrchestraTommy Dorsey And The BandTommy Dorsey Big BandTommy Dorsey E La Sua OrchestraTommy Dorsey E Sua OrquestraTommy Dorsey Et His OrchestraTommy Dorsey Et Son OrchestreTommy Dorsey Mit Seinem OrchesterTommy Dorsey O.Tommy Dorsey Og Hans OrkesterTommy Dorsey OrchTommy Dorsey Orch'Tommy Dorsey Orch.Tommy Dorsey OrchestraTommy Dorsey OrkestereineenTommy Dorsey Und Sein Großes OrchesterTommy Dorsey Und Sein OrchesterTommy Dorsey Und Sein OrchestraTommy Dorsey Und Seinem OrchesterTommy Dorsey With Band ChorusTommy Dorsey Y Su Orq.Tommy Dorsey Y Su OrquestaTommy Dorsey Y Su Orquesta De ConciertoTommy Dorsey's OrchestraTommy Dorsey, Su Orquesta y CorosTommy Dorseys OrkesterTommy Dorsey’s Orch.Tommy-Dorsey-OrchesterТомми Дорси И Его Оркестрトミー・ドージー楽団トミー・ドーシー楽団Buddy RichNelson RiddleTommy DorseyNick DiMaioAl KlinkMaurice PurtillClyde HurleySy OliverAlvin StollerBabe RussinVido MussoZiggy ElmanHymie SchertzerDanny BankCharlie ShaversBunny BeriganBud FreemanAl ViolaDave Harris (2)Gene CiprianoAxel StordahlPete CandoliRay LinnRay LeatherwoodLowell MartinBob BainManny KleinSterling BoseRaoul PoliakinAllan ReussGus BivonaTommy PedersonHeinie BeauSkeets HerfurtGeorge SeabergCarmen MastrenGeorge ArusDon LodiceTony ZimmersSid WeissLes RobinsonPaul MasonDave ToughJoe BushkinFred StulceBob KitsisChuck PetersonGene TraxlerJohnny MincePee Wee ErwinLes JenkinsMax KaminskyClaude BowenPaul Smith (5)Jackie MillsMilt RaskinShorty SherockCorky CorcoranPaul CohenDave JacobsBabe FreskClyde RoundsNoni BernardiPhil StephensWalt LevinskyFrank D'AnnolfoMannie GershmanLee CastaldoClark YocumSam DonahueAl StearnsBen HellerGeorge BoehmJimmy SkilesSteve LipkinsJimmy BlakeBruce SnyderCharlie SpivakJames ZitoSid CooperWarren CovingtonSam HermanKarl De KarskeBuzzy BraunerZeke ZarchyMert OliverSy MiroffConnie HainesDeane KincaideMickey BloomAndy FerrettiMike DotyElmer SmithersWard SillowayYank LawsonRed Bone (2)Buddy DeFrancoJoe KochVito ManganoLarry Hall (2)Bob PriceJack LeonardArtie ShapiroJimmy HendersonAbraham 'Boomie' RichmanHarold BemkoTex SatterwhiteDave UchitelHoward Smith (4)Bill SchallenDick Jones (3)Lou PrisbyEarle HagenBill CronkDick Noel (2)Eddie GradyJohnny Van EpsWalter MercurioSam RossBill ShineBernard TinterowJack KelleherHarry SchuchmanBob AlexyDanny VannelliWalter BensonMickey ManganoLeonard PosnerLeonard AtkinsSid StoneburnTeddy Lee (2)Tony RizziJohnny PotokerDenny DennisRoger EllickSam SkolnickGale CurtisBen PickeringJoseph ParkPaul Mitchell (5)William SchafferJohn Dillard (2)Bruce Golden (2)Bob BunchCliff WestonMac CheikesLeon DubrowBill Graham (4)Joe DixonJimmy Welch (2)Sam Rosen (2)Colin SatterwhiteBruce BransonMort HillmanPaul McCoy (2)Marty BermanAngie CalleaOwen B. MasingillJerry WinnerArt DepewSandy BlockJohnny AmorosoSkippy GalluccioArt TancrediRobert CusumanoWilliam HallarHarry SteinfeldGerald GoffTak TakvorianRuth Hill (2)Tony AntonelliAnita BoyerRocky ColuccioJoe Bauer (2)Bill EhrenkranzCharles GendusoAl LorraineSam HysterBob DawesGreg PhillipsSam CheifetzWalt BensonDaryl "Flea" CampbellEddie ScalziHugo LowensternMichael SabolJoe PameliaKenny DeLangeJohn Youngman (2)Dale PearceLeonard KayeCharles La RueNorman SeeligHarold AbleserMarvin KoralDave PitmanGene KutchGeorge CherubJohn McCormick (9)Bob Baldwin (3)Sid Harris (3)Doc RandoBob Carter (15)Harry FinkelmanBruce Benson (5)Wilf Wylie + +253858Louis Armstrong & His Hot FiveArmstrong's first studio band (1925-1927) + +Louis Armstrong (vocals, trumpet, cornet) +Kid Ory (trombone) +Johnny Dodds (clarinet) +Lil Hardin-Armstrong (piano) +Johnny St. Cyr (banjo) + +The name was also used for a series of recording sessions in late June/early July 1928 with a wholly different band, later renamed [a338994] and [a317860], consisting of +[a38201] (Vocals, Trumpet) +[a307436] (Trombone) +[a307251] (Clarinet, Tenor Saxophone) +[a257353] (Piano) +[a307461] (Banjo) +[a307168] (Drums)Needs Votehttp://en.wikipedia.org/wiki/Louis_Armstrong_and_His_Hot_Fivehttps://adp.library.ucsb.edu/names/105972And His Hot FiveArmstrong Hot FiveArmstrong's Hot FiveHis Hot FiveHot 5Hot FiveHot FivesKing Louis Armstrong And His Hot 5L. Armstrong And His Hot FiveLouis And The Hot FiveLouis Armstron And His Hot FiveLouis ArmstrongLouis Armstrong & His Hot 5Louis Armstrong & His Orch.Louis Armstrong & His OrchestraLouis Armstrong & The Hot FiveLouis Armstrong - The Hot FiveLouis Armstrong And HIs Hot FiveLouis Armstrong And His "Hot Five"Louis Armstrong And His (2.) Hot FiveLouis Armstrong And His Hot FiveLouis Armstrong And His Hot 5Louis Armstrong And His Hot FiveLouis Armstrong And His OrchestraLouis Armstrong Con " The Hot Five"Louis Armstrong E I Suoi Hot FiveLouis Armstrong E Seus Hot FiveLouis Armstrong Et Son Hot FiveLouis Armstrong Et Son OrchestreLouis Armstrong Hot FiveLouis Armstrong U. S. Hot FiveLouis Armstrong Und Seine Hot FiveLouis Armstrong With His Hot FiveLouis Armstrong With The Hot FiveLouis Armstrong Y Su Quinteto De HotLouis Armstrong Y Sus Hot FiveLouis Armstrong's His Hot FiveLouis Armstrong's Hot 5Louis Armstrong's Hot FiveLouis Armstrong's HotfifeLouis Armstrong's HotfiveLouis Armstrongi Hot FiveLouis Armstrongs Hot FiveThe Hot FiveThe Hot FivesThe Louis Armstrong Hot FiveАнсамбль "Горячая Пятерка" Л. Армстронгаルイ・アームストロング・ホット・ファイブLil's Hot ShotsLouis ArmstrongEarl HinesZutty SingletonKid OryLonnie Johnson (2)Jimmy StrongJohnny St. CyrJohnny DoddsFred RobinsonMancy CarrLil Hardin-ArmstrongClarence BabcockMay Alix + +253861New Orleans Rhythm KingsThe New Orleans Rhythm Kings (NORK) were one of the most influential jazz bands of the early to mid-1920s. The band included New Orleans and Chicago musicians who helped shape Chicago jazz and influenced many younger jazz musicians.Needs Votehttps://en.wikipedia.org/wiki/New_Orleans_Rhythm_Kingshttp://www.redhotjazz.com/nork.htmlhttps://adp.library.ucsb.edu/names/105054Friars Society OrchestraHusk O'Hare's New Orleans Rhythm KingsKingN-O-R-KN. O. R. K.N. O. Rhythm KingsN.O. Rhythm KingsN.O.R.K.NORKNew Orleans Rhythm BoysNew Orleans Rhythm ClubNew Orleans Rhythm KingNew Orleans Rythm KingsNew Orléans Rhythm KingsNew-Orleans Rythm KingsNew-Orléans Rhythm KingsNorkOriginal New Orleans Rhythm KingsThe New Orleans Rhythm KingsOriginal New Orleans Rhythm KingsFriar's Society OrchestraDon Murray (2)Muggsy SpanierPaul MaresChink MartinBen PollackGeorge BruniesMel StitzelElmer SchoebelJack PettisLeon RoppoloGlen ScovilleGlynn Lea LongLou BlackFrank Snyder + +253934Gabriel YaredGabriel YaredFrench-Lebanese composer, born 7 October 1949 in Beirut, Lebanon.Needs Votehttps://en.wikipedia.org/wiki/Gabriel_Yaredhttps://www.imdb.com/name/nm0001189/https://www.last.fm/music/Gabriel+Yaredhttps://myspace.com/gabrielyared1https://www.gabrielyared.comhttps://twitter.com/i/user/499715287https://www.facebook.com/100050611413834https://www.instagram.com/gabriel.yared/https://www.youtube.com/channel/UCmA3U8XnJVzZ72lo4sJufuAhttps://vimeo.com/user169311459https://www.britannica.com/biography/Gabriel-YaredC. YaredG. YaredG.YaredGabriel A. YaredGabriel Andre YaredGabriel YarebGrabriel YaredStéphane MouchaYaredYavebYavedГабриэль ЯредLe Grand Orchestre De Gabriel YaredSoul Vibrations (3)Gabriel Yared SingersCosta Yared Costa + +253939Slim PezinAndré Charles PezinAndré Pezin, known as Slim Pezin, (Born: 25 October 1945 – Died: 18 January 2024) was an French guitarist, arranger, producer and conductor having worked with big names in French song, from [a=Claude François] whose orchestra he directed, to [a=Michel Sardou], [a=Sylvie Vartan], [a=Johnny Hallyday], [a=Charles Aznavour] and [a=Mylène Farmer].Needs Votehttps://fr.wikipedia.org/wiki/Slim_Pezinhttps://www.imdb.com/name/nm0679077/http://www.facebook.com/slim.pezinhttps://www.mylene.net/mylene/slim-pezin.phphttps://www.innamoramento.net/mylene-farmer/annuaire/slim-pezin"Slim" PezinAndre PezinAndré "Slim" PezinBezinJ.SlimPezinPezin SlimPézinS PezinS. PesinS. PezimS. PezinS. PezzinS. TezinS.PesinSlimSlim "Vintage" PezinSlim BezinSlim LezinSlim PerinSlim PesinSlim Pezin (dit "Le Viking")Slim PezzinSlim PozinSlim PrezinSlim PézinSlim «Slimou» PezinSlimouSlin PezinZlimSlizinppA. PezSlim SimonGuitar Slim And The Devil MachineSlimpezinVoyageChantereau, Dahan & PezinCrystal GrassJean-Claude Petit Et Son OrchestreArpadysCCPPNew Dimension (3)Disco & CoThe RoadmastersThe Guerrillas + +253949The HandbaggersNeeds VoteHand BaggersHandBaggersHandbaggerHandbagger'sHandbaggersHandbeggersHangbaggersScooper & SticksTidy Boys2InATentBlue Orange2 In A TankThe NRG TwinsThe Bucking BroncosAndy PicklesAmadeus Mozart + +254065Jimmy GarrisonJames Emory GarrisonJazz bassist, born 3 March 1933 in Miami, Florida, USA; died 7 April 1976 in New York City, New York, USA (aged 43). + +Floridian born, yet growing up in Philadelphia. Garrison is one of the key musicians of his generation, playing with the [url=http://www.discogs.com/artist/John+Coltrane+Quartet,+The]John Coltrane Quartet[/url], along with [a=McCoy Tyner] and others. + +After Coltrane died in 1967, he played with [a=Alice Coltrane], [a=Archie Shepp], [a=Elvin Jones], and [a=Hampton Hawes]. He also taught at Bennington and Wesleyan colleges. +Needs Votehttp://www.garrisonjazz.com/Jimmy%20Garrison.htmlhttp://en.wikipedia.org/wiki/Jimmy_Garrisonhttp://www.allmusic.com/cg/amg.dll?p=amg&sql=11:gzfixqt5lddeArvin GarrisonGarrisonJ. GarrisonJamesJames GarrisonJim GarrisonJimm GarrisonJimmy GarisonJonesジミー・ギャリソンThe John Coltrane QuartetRolf & Joachim Kühn QuartetBenny Carter And His OrchestraStan Getz QuartetThe Archie Shepp GroupThe New Elvin Jones TrioThe Bill Dixon OrchestraArchie Shepp QuintetJohn Coltrane TrioThe Kenny Dorham QuintetThe Curtis Fuller SextetNathan Davis QuartetThe Robert F. Pozar EnsembleElvin Jones/Jimmy Garrison SextetCurtis Fuller's QuintetPhilly Joe Jones SextetThe Walter Bishop, Jr. TrioJohn Coltrane Orchestra + +254073Ben RileyBenjamin Alexander Riley, Jr.American jazz drummer +Born July 17, 1933, Savannah, Georgia, USA, died November 18, 2017, West Islip, New York, USANeeds Votehttp://en.wikipedia.org/wiki/Ben_Rileyhttp://www.drummerworld.com/drummers/Ben_Riley.htmlhttps://www.wbgo.org/music/2017-11-18/ben-riley-a-jazz-drummer-who-made-accompaniment-his-art-has-died-at-84Ben LieryBen RidleyBenjamin RileyBenny RileyRileyベン・ライリーJunior Mance TrioThe Thelonious Monk QuartetChet Baker QuartetThe Thelonious Monk QuintetRoland Hanna TrioAndrew Hill Trio And QuartetNew York Jazz QuartetThe Thelonious Monk OrchestraLarry Willis SextetKenny Barron TrioEkayaThe Paul Winter SextetThe Johnny Griffin QuartetBuster Williams TrioSphere (16)The Bill Barron QuartetEddie Harris QuartetGene Rodgers TrioThe Eddie Davis-Johnny Griffin QuintetRon Carter QuartetMichel Sardaby TrioWild Bill Moore QuintetThelonious Monk NonetDick Morgan TrioBennie Green QuintetSam Jones & Co.The Charlie Rouse QuartetEddie Higgins QuintetHarold Ashby QuartetThe Eddie Higgins TrioGreg Abate QuintetThe Jeremy Steig QuartetMike Melillo TrioDon Sickler QuintetBob Kindred QuartetBen Riley's Monk Legacy SeptetFlutologyTed Brown QuintetThe Jet All Star QuartetPete Minger QuartetCharles Thomas TrioSwing SummitThe Ben Riley QuartetBarry Harris Kenny Barron QuartetAlice Coltrane SextetRed Mitchell And Friends + +254108Donald GarrettDonald Rafael GarrettAmerican jazz saxophonist and clarinetist. Occasionally also playing bass. + +Born : February 28, 1932 in Eldorado, Arkansas. +Died : August 14, 1989 in Chicago, Illinois. +Needs Votehttp://www.bardoworks.it/rafael.htmlDon GarettDon GarrettDon RafaelDonald GarretDonald Rafael GarrettDonald Raphael GarrettGarrettR. GarrettRacquel GarrettRafaelRafael GarrettRalph GarnettRalph GarrettRaphael Don GarrettRaphael GarettRaphael Garrettdonald Raphael Garrettドナルド・ギャレットThe Sea EnsembleKahil El'Zabar's Ritual TrioDewey Redman QuartetArchie Shepp QuintetDexter Gordon QuartetPaul Serrano QuintetIra Sullivan And The Chicago Jazz QuintetThe Roland Kirk Quintet + +254110Frank ButlerFrank ButlerAmerican jazz drummer, born February 18, 1928 - Kansas City, Missouri, died July 24, 1984 in Ventura, California, USA. + + +Needs Votehttps://adp.library.ucsb.edu/names/306389ButlerF. PopeThe Miles Davis QuintetGerald Wilson OrchestraArt Pepper QuintetHarold Land QuintetPhineas Newborn TrioThe Curtis Counce GroupElmo Hope TrioJoyce Collins TrioGary Lefebvre QuartetThe Curtis Counce QuintetThe Paul Moer TrioCurtis Amy-Frank Butler Sextet + +254115Erkki HyvönenFinnish sound engineer.Needs VoteE. HyvönenEkiEki HyvönenErkki HyvonenHeikki HyvönenHyvönenHyvösen EkiThe Great Eki Hyvönen + +254128Johnny NashJohn Lester Nash, Jr.American soul and reggae singer and songwriter, born on August 19, 1940 in Houston, Texas, USA; died October 6, 2020 at his home in Houston, Texas, USA. +Co-owned [l=JAD] Records with producer [a=Arthur Jenkins], and businessman [a=Danny Sims]. +Married to [a686015].Needs Votehttps://johnnynash.com/https://www.classicbands.com/nash.htmlhttps://en.wikipedia.org/wiki/Johnny_Nashhttps://www.imdb.com/name/nm0621750/BushG. NashJ NashJ. NashJ.NashJanny CashJhonny NashJo NashJohn NashJohnnie NashJohnny MashJohny NashJonny NashM. NashNashNash, J.T. NashДжонни Нэш + +254176Doug WatkinsDouglas WatkinsAmerican jazz bassist +Born March 2, 1934 in Detroit, Michigan, died February 5, 1962 in Holbrook, Arizona (automobile accident) +Needs Votehttps://en.wikipedia.org/wiki/Doug_Watkinshttps://adp.library.ucsb.edu/names/350140D. WatkinsDoug WilliamsDough WatkinsDouglas WatkinsDug WatkinsG. WatkinsWatkinsダグ・ワトキンスBilly Taylor TrioThe Red Garland TrioArt Blakey & The Jazz MessengersThe Horace Silver QuintetGeorges Arvanitas TrioCharles Mingus Jazz WorkshopDonald Byrd QuintetDoug Watkins QuintetSonny Rollins QuartetThe Hank Mobley QuintetBill Hardman QuintetPepper Adams QuintetThe Prestige All StarsJackie McLean QuintetThe Don Elliott QuintetThe Pepper-Knepper QuintetJackie McLean SextetJackie McLean QuartetPhil Woods SeptetPepper Adams QuartetThad Jones And His EnsembleLes MexirockersWilbur Harden-Tommy Flanagan QuintetHank Mobley QuartetThe Kenny Burrell QuintetHank Mobley And His All StarsBenny Golson QuintetThad Jones QuintetDonald Byrd QuartetTina Brooks QuintetSonny Redd Quintet + +254394Oscar PetersonOscar Emmanuel PetersonCanadian jazz pianist, composer, and band leader +Born 15 August 1925 in Montreal, Quebec, Canada, died 23 December 2007 in Mississauga, Ontario, Canada + +He went through a classical piano education before turning to jazz, playing mostly in Canadian night clubs in Toronto and Montreal. + +Only after repeated urgings by American colleagues he was persuaded to give a JATP performance at New York's Carnegie Hall in 1949. It was a smashing success. He then worked together with [a=Ray Brown], at first as a duo, before founding in 1952 his first trio which included in succession, the guitarists [a=Irving Ashby], [a=Barney Kessel] and [a=Herb Ellis]. At the end of the 1950s the guitar was replaced by drums. + +Peterson went on many European tours. He has made recordings with just about everybody who's anybody in jazz. + +His keys touch corresponds to almost explosive ornamentation in phrasing. Despite all the dynamics, a boundless desire for improvisation, a sublime artistic technique, however, the structure of his play (i.e. the over-all conception of harmonic means, phrasing, rhythms, etc.) remains translucent and tight.Needs Votehttp://www.oscarpeterson.comhttp://en.wikipedia.org/wiki/Oscar_Petersonhttps://canadianmusichalloffame.ca/inductee/oscar-peterson/https://www.britannica.com/biography/Oscar-Petersonhttps://www.scaruffi.com/jazz/peterson.htmlhttps://www.imdb.com/name/nm0677328/https://www.thecanadianencyclopedia.ca/en/article/oscar-petersonhttps://www.allmusic.com/artist/oscar-peterson-mn0000489316/discographyhttps://www.treccani.it/enciclopedia/oscar-petersonhttps://adp.library.ucsb.edu/names/372367https://oscarpeterson.bandcamp.com/Dr. Oscar E. Peterson, C.C.Dr. Oscar PetersonJohnny MeyerO PetersonO. E. PetersonO. PetersenO. PetersonO.E. PetersonO.PetersonOscarOscar E. PetersonOscar Emanuel PetersonOscar Emmanuel PetersonOscar PeterOscar PetersenOscar Peterson And The BassistsOscar Peterson JamOscar Peterson Piano Solo With Bass And DrumOscar Peterson With StringsOscar PeterssonOscar PettersonOsear PetersonPattersonPetersenPetersobPetersonО. ПитерсонОскар ПитерсонОскар Питерсънオスカーオスカーピーターソンオスカー・ピーターソンTank ButterballJohn Fitzgerald (16)The Oscar Peterson TrioBillie Holiday And Her OrchestraOscar Peterson - Stéphane Grappelli QuartetThe Oscar Peterson QuartetRoy Eldridge And His OrchestraBen Webster And His OrchestraCharlie Parker Big BandDizzy Gillespie - Stan Getz SextetLionel Hampton And His QuartetNorthern Lights (6)Lester Young QuintetLionel Hampton QuintetCharlie Parker With StringsClark Terry SextetThe Oscar Peterson Big 6Flip Phillips SextetThe Roy Eldridge QuintetThe Oscar Peterson FourBenny Carter QuintetThe Stan Getz SextetBillie Holiday And Her BandBillie Holiday And Her Lads Of JoyThe Ben Webster QuintetThe Flip Phillips QuintetFlip Phillips And His OrchestraRoy Eldridge 4Eddie "Lockjaw" Davis 4The Oscar Peterson Big 4Harry Edison SextetOscar Peterson DuoOscar Peterson & FriendsBuddy Rich All StarsBuddy Rich EnsembleBen Webster SeptetOscar Peterson GroupThe Tank Butterball TrioThe Nick Esposito SextetJazz Giants 1958 + +254400Ed ThigpenEdmund Leonard ThigpenAmerican jazz drummer and son of [a=Ben Thigpen] (* 28 December 1930 in Chicago, Illinois, USA; † 13 January 2010 in Copenhagen, Denmark). +Worked with [a=Ella Fitzgerald], [a=Oscar Peterson], [a=Cootie Williams], [a=Bud Powell], [a=Lennie Tristano], [a=Dinah Washington], and [a=Johnny Hodges], among others.Needs Votehttp://www.edthigpen.comhttp://www.myspace.com/edthigpenhttp://en.wikipedia.org/wiki/Ed_Thigpenhttps://www.drummerworld.com/drummers/Ed_Thigpen.htmlE ThigpenE. ThigpenE. TrippedE.RhigpenEd ShigpenEd ThighpenEd ThipgenEd ThippenEd TighpenEddie ThigpenEdmund ThigpenThigpenЭ. ТигпенЭ. ТипгенЭд Тигпенエド・シグペンJohn BolgerPop WorkshopBilly Taylor TrioThe Oscar Peterson TrioTommy Flanagan TrioThe Monty Alexander TrioEd Thigpen ScantetThe Gil Melle QuartetTeddy Wilson TrioThe Chet Baker QuintetThe Guido Manusardi TrioStan Getz QuartetBerlin Contemporary Jazz OrchestraThe Kenny Drew TrioMundell Lowe QuintetEd Thigpen's Action-Re-ActionSvend Asmussen / Ed Thigpen QuartetThe Prestige All StarsEric Watson TrioRune Öfwerman TrioHal Serra QuartetClark Terry QuartetEd Thigpen Rhythm FeaturesDuke Jordan TrioRoots (8)Art Farmer QuintetHorace Parlan TrioDuke Jordan QuartetThe Johnny Griffin QuartetOliver Nelson's Big BandDexter Gordon & OrchestraThe Mal Waldron SextetEddie Lockjaw Davis QuartetErnie Wilkins Almost Big BandBoulou Ferré QuartetCy Coleman Jazz TrioJohn Lindberg EnsembleOscar Pettiford & His All StarsIndianerneTrombone SummitThe International Jazz GroupLex Jasper TrioTeddy Charles And His SextetThe Toshiko TrioThad Jones QuartetThe Benny Carter QuartetThad Jones EclipseDorothy Donegan TrioClark Terry - Ernie Wilkins QuintetThe Ed Thigpen TrioEd Thigpen EnsembleTrio SupremeLennart Flindt TrioVincent Nilsson QuartetGustav Csik TrioRicky Ford QuartetPaul Quinichette-John Coltrane QuintetDinah Washington & The All-StarsJordan/Jædig QuartetSwingstyrke 7 + +254644Jeff BrillingerAmerican jazz drummerNeeds VoteJeff BrilingerWoody Herman And His OrchestraChet Baker QuartetDon Friedman TrioRon McClure QuartetWoody Herman And The Thundering HerdKen Peplowski QuartetStan Getz + Bob Brookmeyer SextetThe Hod O'Brien Jazz QuintetJed Levy QuartetCecilia Coleman Big BandTom Dempsey / Tim Ferguson Quartet + +254645Buddy PowersHorn player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +254647Chip JacksonCharles Melvin JacksonAmerican jazz double bass player (born 15 May 1950 in Rockville Center, New York, USA)Needs Votehttps://de.wikipedia.org/wiki/Chip_Jacksonhttp://en.wikipedia.org/wiki/Chip_JacksonCharles "Chip" Jacksonチップ・ジャクソンBilly Taylor TrioWoody Herman And His OrchestraThe Horace Silver QuintetChuck Mangione QuartetRed Rodney QuintetAl Di Meola ProjectDavid Matthews OrchestraWoody Herman And The Thundering HerdDavid Matthews TrioManhattan Jazz OrchestraRonnie Cuber QuartetThe Tom Talbert Jazz OrchestraPratt Brothers Big BandContempo TrioThe Danny Gottlieb TrioThe Super SeptetThe Nairobi Trio (5) + +254648Dale KirklandAmerican jazz trombonist, born and raised in Rochester, New York, USANeeds Votehttp://www.jorgenand.se/bst/bst_memb.htmlD. KirklandBlood, Sweat And TearsWoody Herman And His OrchestraBuddy Rich And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdWestchester Symphony OrchestraThe Ed Palermo Big BandThe Woody Herman Big BandDave Stahl BandWoody Herman And The Thundering HerdBig Swing Jazz BandThe Killer Force Band + +254649Nelson HattAmerican trumpet player, died 8 December 1995Needs VoteN. HattNelson E. HattNelson MattWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdLouie Bellson Big BandBob Florence Big BandThe Woody Herman Big BandWoody Herman BandThe Bob Florence Limited EditionWoody Herman And The Thundering HerdThe Los Angeles City College Jazz Band + +254650Andy LaverneAndy LaVerneAmerican jazz pianist, composer & arranger (* 12 April 1947 in New York City, New York, USA). + + +Needs Votehttp://www.andylaverne.com/A. LaVerneA. LaverneA. LeverneAndrew LaverneAndy La VerneAndy LaVerneAndy LaverneAndy LeverneLaVerneLaverneLeverneアンディ・ラヴァーンWoody Herman And His OrchestraStan Getz QuintetTed Curson & CompanyLee Konitz NonetJohn Abercrombie - Andy LaVerne QuartetWoody Herman And The Thundering HerdAndy Laverne TrioBrubeck LaVerne TrioThe Steve Davis ProjectJerry Bergonzi QuartetThe Cutting Edge (2)Andy LaVerne QuartetLarry Schneider QuartetStan Getz + Bob Brookmeyer SextetAndy LaVerne QuintetBob Rockwell TrioAndy LaVerne's One Of A KindMike Richmond QuintetThe Nairobi Trio (5) + +254651Jim PughJames Edward PughJim Pugh, born on November 12, 1950 in Butler, PA, is a distinguished trombonist, composer, and educator. His trombone can be heard in collaboration with leading classical and popular artists and orchestras such as Yo-Yo Ma, Steely Dan, Eos, Concordia, St. Luke's Orchestra, André Previn, Paul Simon, Barbra Streisand, Tony Bennett, Michael Jackson, Madonna, Pink Floyd, and Frank Sinatra.Needs Votehttp://www.jimpugh.net/J. PughJames E. PughJames Edward PughJames PughJames PugliJams PughJim E. PughJimmy PughPughPugh James EdwardThe George Gruntz Concert Jazz BandWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdThe Joe Roccisano OrchestraCincinnati Pops OrchestraThe Woody Herman Big BandThe Contemporary Arranger's WorkshopDavid Matthews OrchestraEos OrchestraMusic AmiciPer Husby OrchestraWoody Herman And The Thundering HerdJack Cortner Big BandDMP Big BandThe Carla Bley Big BandSuper TromboneWally Dunbar Jazz ElevenBig Swing Jazz BandPeter Hand Big BandTromBariRich Shemaria Jazz OrchestraThe New York Trombone Quartet + +254652Gary PackTrumpet playerNeeds VoteGary ParkPackWoody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman And The Thundering Herd + +254654Bill ByrneJazz trumpeterNeeds VoteBill BryneBilly ByrneByrneW. ByrneWilliam BurneWilliam ByrneWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdWoody Herman And The Swingin' HerdThe Woody Herman Big BandWoody Herman BandRoy Wiegand Big BandWoody Herman And The Thundering Herd + +254655Gary AndersonGary Michael Anderson American saxophonist and flute player, born 31 October 1947 in Compton, California, USA.Needs Vote(?) AndersonAndersonG. AndersonWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdThe Woody Herman Big BandWoody Herman BandWoody Herman And The Thundering HerdJim Widner Big Band + +254656Art LinsnerArthur LinsnerAmerican trombonistNeeds VoteArt Linsner IIIArthur F. LinsnerArthur LinsnerWoody Herman And His OrchestraJazz Members Big BandWoody Herman And The Thundering Herd + +254657Dave StahlDavid StahlAmerican jazz trumpeter, band leader, and band manager, born January 23, 1949 in Reading, Pennsylviana, residing in Pennsylvania. +Stahl has played lead trumpet for [a=Woody Herman] (1973-1975), [a=Count Basie] (1975, 1980), [a=Buddy Rich], [a=Larry Elgart] and [a=Toshiko Akiyoshi], among others. In April 1977 he formed his own band, the [a=Dave Stahl Band]. +Founder and owner of [l=Abee Cake Records] since 1987.Needs Votehttp://www.davestahl.com/https://myspace.com/davestahlhttps://www.trumpetrange.com/player/dave-stahl/https://www.youtube.com/playlist?list=PLyqh63-cz_ReobfKunPgv2ktJUEKQmKjrhttps://de.wikipedia.org/wiki/Dave_Stahlhttps://musicianbio.org/dave-stahl/https://www.ibdb.com/broadway-cast-staff/dave-stahl-419376David BoyleDavid E. StahlDavid StahlBlood, Sweat And TearsCount Basie OrchestraWoody Herman And His OrchestraBuddy Rich Big BandCount Basie Big BandThe United States Army BandDave Stahl BandWoody Herman And The Thundering HerdThe Killer ForceDave Stahl Big BandDave Stahl And His Sacred Orchestra + +254658Frank TiberiAmerican jazz alto and tenor saxophonist, clarinetist, flutist, bassoon and bandleader, born December 4, 1928 in Camden, New Jersey. +Played with [a=Bob Chester] 1948-1949, [a=Benny Goodman]'s quintet 1954-1955, [a=Urbie Green], and [a=Dizzy Gillespie]. During 1960s freelance on the East Coast, and in film and television studios. In 1969 joined [a=Woody Herman] and lead tenor saxophonist, also playing bassoon and flute. One of Herman's longest-serving sidemen, Tiberi led the band during Herman's absences (1977, 1986, 1987) and after his death.Needs VoteF. TiberiTiberiWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdThe Woody Herman Big BandWoody Herman BandWoody Herman And The Thundering HerdThe Woody Herman Orchestra + +254768Benny GoodmanBenjamin David GoodmanBorn May 30, 1909 in Chicago, IL, died of a cardiac arrest June 13, 1986 in New York City, NY. +American jazz clarinetist, known as "The King Of Swing". +He learned to play clarinet at age of 10 and played in Jazz bands at a young age. +He formed a band in 1934 and toured the world. Benny Goodman contributed to the development of the "Swing" style of Jazz. +Only very rarely was he recorded playing the alto sax. +Brother of [a=Harry Goodman], [a312544], and [a=Freddy Goodman].Needs Votehttps://www.bennygoodman.com/https://en.wikipedia.org/wiki/Benny_Goodmanhttps://www.britannica.com/biography/Benny-Goodmanhttps://www.stilemillelire.com/chi-era-benny-goodman-storia-biografia/https://www.sapere.it/sapere/strumenti/studiafacile/musica/Il-Jazz/Swing-craze--swing-band/Benny-Goodman.htmlhttps://www.battleofthebigbands.com/benny-goodmanhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103384/Goodman_Bennyhttps://www.allmusic.com/artist/benny-goodman-mn0000163133B GoodmanB, GoodmanB. G.B. GoodmanB. GoodmannB. GoodmenB.GB.G.B.GoodmanB.グッドマンBGBenjamin "Benny" GoodmanBenjamin David "Benny" GoodmanBenjamin David "Benny" GoodwinBenjamin David GoodmanBenjamin David “Benny” GoodmanBenney GoodmanBennie GoodmanBennyBenny GodmanBenny GoodmannCoodmanG. GoodmanGoddmanGodmanGoodGoodmanGoodman BennyGoodman, B.GoodmannGoodnamGoodwinH. GoodmanL.GoodmanMr Benny GoodmanMr. Benny GoodmanN. GoodmanP. GoodmanStereophonic Sound Of "Benny Goodman"WoodmanБ. ГудманБ. ГудменБ. ГудмэнБенни ГудменГудманベニー・グッドマン"Shoeless" John JacksonThe Benny Goodman QuartetMetronome All StarsBenny Goodman SextetBenny Goodman TrioThe Benny Goodman QuintetHoagy Carmichael And His OrchestraBix Beiderbecke And His OrchestraJack Teagarden And His OrchestraTeddy Wilson And His OrchestraThe New Music Of Reginald ForesytheBen Pollack And His Park Central OrchestraBuck And His BandBenny Goodman And His OrchestraBenny Goodman SeptetBenny Goodman & FriendsBenny Goodman OctetJack Pettis And His OrchestraTed Lewis And His BandGene Krupa And His ChicagoansIrving Mills And His Hotsy Totsy GangBenny Goodman And His V-DISC All-StarsThe Charleston ChasersBenny Goodman Big BandJoe Venuti And His Blue SixAdrian Rollini And His OrchestraBenny Goodman DuoEddie Lang-Joe Venuti And Their All Star OrchestraWhoopee MakersBen's Bad BoysThe Goodman TrioMel Powell And His OrchestraGene Krupa's Swing BandBenny Goodman CombosAll Star Band (4)Mills Musical ClownsThe New Benny Goodman SextetThe Benny Goodman BandBenny Goodman's BoysPaul Mills And His Merry MakersMetronome All-Star BandBenny Goodman BandBenny Goodman And HIS All StarsBenny Goodman And His Music Hall OrchestraBessie Smith-OrchestraThe Giants Of Jazz (3)Benny Goodman And His ModernistsThe Jam DandiesBenny Goodman Jam SessionEarl Baker And His FriendsBenny Goodman Tentet + +254769Teddy WilsonTheodore Shaw WilsonAmerican jazz pianist. +Born November 24, 1912, Austin, Texas, USA. +Died July 31, 1986, New Britain, Connecticut, USA. + +Described by jazz critic [a=Scott Yanow] as "the definitive swing pianist." +Wilson's sophisticated and elegant style was featured on the records of many of the biggest names in jazz including [a38201], [a300050], [a254768], [a33589], and [a31615]. With Goodman, he was perhaps the first well-known black musician to play publicly in a racially integrated group. In addition to his extensive work as a sideman, Wilson also led his own groups and recording sessions from the late 1920s until the 1980s. +Brother of [a=Augustus Wilson]. Briefly married to songwriter [a=Irene Wilson] in the 1930s.Needs Votehttp://en.wikipedia.org/wiki/Teddy_Wilsonhttp://www.jazzdisco.org/teddy-wilson/catalog/https://www.britannica.com/biography/Teddy-Wilsonhttps://www.allmusic.com/artist/teddy-wilson-mn0000017990https://adp.library.ucsb.edu/index.php/mastertalent/detail/103420/Wilson_Teddyhttps://www.arts.gov/honors/jazz/teddy-wilsonhttps://www.imdb.com/name/nm0934210/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/142136bc5f00f0864d1006eb9c79f28e684a0/titolihttps://rateyourmusic.com/artist/teddy-wilson"Teddy" WilsonAl SmithF. WilsonMister WilsonMr. WilsonT. W.T. WildonT. WilsonT.WilsonTeady WilsonTed WilsonTeddyTeddy WildonTeddy WillsonTeddy WilsenTeddy Wilson And His PianoTeddy Wilson And RhythmTeddy WislsonTheodore "Teddy" WilsonTheodore "Teddy" WislonTheodore 'Teddy' WilsonTheodore WilsonWilliam «Teddy» WilsonWilsonWisonТ. УиллсонТ. УилсонТедди Уилсонテディー・ウィルソンColeman Hawkins QuartetThe Benny Goodman QuartetMetronome All StarsBenny Goodman SextetBenny Goodman TrioBillie Holiday And Her OrchestraThe Benny Goodman QuintetLouis Armstrong And His OrchestraThe Chocolate DandiesTeddy Wilson And His OrchestraTeddy Wilson TrioRed Norvo And His Selected SextetColeman Hawkins QuintetCharlie Shavers' All American FiveMezz Mezzrow And His OrchestraBenny Goodman And His OrchestraTeddy Wilson QuartetBenny Goodman SeptetRed Norvo And His OrchestraTeddy Wilson QuintetColeman Hawkins' All American FourTeddy Wilson OctetMildred Bailey And Her OrchestraPaul Baron's SextetBuck Clayton QuintetRed Norvo All-StarsBenny Goodman OctetTeddy Wilson & His All Star Jazz SextetteTeddy Wilson And His All StarsTeddy Wilson SextetThe Jazz Giants '56Putney Dandridge And His Swing BandThe Lester Young-Teddy Wilson QuartetWillie Bryant And His OrchestraThe Gene Krupa SextetEdmond Hall's All Star QuintetThe Edmond Hall QuartetRed Norvo & His Swing OctetMildred Bailey And Her Alley CatsThe New Benny Goodman SextetPutney Dandridge And His OrchestraEsquire All American Award WinnersBenny Goodman BandBen Homer & His OrchestraTaft Jordan And The MobTeddy Wilson And His Swing BandJam Session (10)Teddy Wilson And His Rhythm + +254885Chummy McGregorJohn Chalmers MacGregorAmerican jazz pianist and composer. + +Born: March 28, 1903 in Saginaw, Michigan. +Died: March 09, 1973 in Los Angeles, California. + +"Chummy" played with (among others), Irving Aaronson and Glenn Miller. +He wrote the songs : "It Must Be Jelly ('Cause Jam Don't Shake Like That)" / "Slumber Song" / "Doin' the Jive" / "Moon Dreams" / ""Sold American" / "Sometime" / "Solid As a Stonewall Jackson" / "Mister-Lucky-Me" / "Simply Grand" / "If Not For You" / "The Technical Training Command"/ "I Sustain the Wings" / "The Cage" / "Berceuse" / "Evidence" / "Disclosure" / "Down East" / "Allegro" / "The Camp Meeting" / "The Circus Band".Needs Votehttps://en.wikipedia.org/wiki/Chummy_MacGregorhttps://www.imdb.com/name/nm0532310/https://adp.library.ucsb.edu/names/114258C. MacGregorC. MacgregorC. Mc GregorC. McGregorC.MacGregorC.P. MacGregorCh MacGregorChalmas-GregorCharles 'Chummy' MacGregorChummyChummy Mac GregorChummy MacGregorChummy MacgregorG. McGregorJ. "Chummy" Chalmers MacGregorJ. C McGregorJ. C. "Chummy" MacGregorJ. C. MacGregorJ. C. McGregorJ. Chalmers McGregorJ. MacGregorJ. MacgregorJ. McGregorJ.C. "Chummy" MacGregorJ.C. MacGregoJ.C. MacGregorJ.C. McGregorJohn Chalmers "Chummy" McGregorJohn Chalmers (Chummy) MacGregorJohn Chalmers Mac GregorJohn Chalmers MacGregorJohn Chalmers “Chummy” MacGregorMac GregorMacGreggorMacGregorMacgregorMc GregorMcGregorRazafДж. МакгрегорGlenn Miller And His OrchestraIrving Aaronson And His Commanders + +254886Billy MayEdward William May, Jr.American trumpet player and Big Band arranger. Later in his career he also composed for film and television. + +Born November 10, 1916, Pittsburgh, Pennsylvania, USA +Died January 22, 2004, San Juan Capistrano, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Billy_Mayhttps://adp.library.ucsb.edu/names/104862https://www.imdb.com/name/nm0561877/Arrangements By Billy MayB MayB. ManB. MayB. MaysB.MayBill MayBillie MayBilly MaeBilly MaysBllly MayEdward W. MayMayMay BillyOrchester Unter Der Leitung Von Billy MayR. MayW. MayWarrenWilliam Edward "Billy" MayWilliam Edward "Billy" May, Jr.William MayWillian MayБилли МейБилли МеяNariz GrandeArletta MayWoody Herman And His OrchestraThe Out-IslandersBilly May's Rico Mambo OrchestraJack Teagarden's ChicagoansBilly May And His OrchestraGlenn Miller And His OrchestraCharlie Barnet And His OrchestraAlvino Rey And His OrchestraBilly May's MusicBilly May And His Zarape Ballroom OrchestraBilly May & His Big BandBilly May's Chamber GroupThe Capitol JazzmenCharlie Lavere's Chicago LoopersTen Cats And A MouseBilly May And His Afro-CubansThe Billy May BandWillie Smith And His OrchestraThe Band That Plays The BluesBilly May's Big Fat BrassWillie Smith And His FriendsBilly May's Dixieland BandBilly May And His ChorusBilly May & His Brass Choir + +254887Al KlinkAl KlinkAmerican swing jazz tenor saxophonist and flutist, + +Born 28 December 1915 in Danbury, Connecticut, USA +Died 7 March 1991 in Bradenton, Florida, USA.Needs Votehttp://en.wikipedia.org/wiki/Al_Klinkhttps://adp.library.ucsb.edu/names/104557A. KlinkAKAl KinkAl KlingAlbent KlinkAlbert (Al, Mose) A. KlinkAlbert KlinkAlbert Klink (AK)KlinkMose LigatureTommy Dorsey And His OrchestraGlenn Miller And His OrchestraArtie Shaw And His OrchestraBob Haggart And His OrchestraJim Timmens And His Jazz All-StarsCootie Williams And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraJoe Reisman And His OrchestraThe CommandersThe World's Greatest JazzbandChuck Sagle And His OrchestraJerry Gray And His OrchestraAll Star Alumni OrchestraHenry Jerome And His OrchestraBobby Byrne And His OrchestraThe George Masso SextetThe Mousey Alexander SextetThe George Masso QuintetThe Butch Miles SextetAl Klink QuintetStewart - Williams & Co.Ben Homer & His OrchestraSnapper Lloyd And His Orchestra + +254891Ray McKinleyRaymond McKinleyAmerican jazz drummer, singer and big band leader, born June 18, 1910 in Fort Worth, Texas, died May 7, 1995 in Largo, Florida. + The drumming of Ray McKinley was a driving force that contributed greatly to the success of Jimmy Dorsey before WW II and the Glenn Miller American Band Of The Allied Expeditionary Forces during the war. As part of the Will Bradley aggregation, which he co-led between his stints with Dorsey and Miller, his personable and humorous vocals were an added attraction. +McKinley's first sides were recorded with Red Nichols for Brunswick in 1931. In 1932 McKinley again worked with Glenn Miller in the Smith Ballew band as well as in the Dorsey Brothers Orchestra in 1934-1935. In May of 1934 he recorded four sides with a Benny Goodman small group. +When the feuding Dorsey Brothers broke up in 1935, McKinley joined Jimmy Dorsey's new orchestra, where he remained until 1939. +In 1939 Ray McKinley became a partner of trombonist Will Bradley, co-leading a band that recorded under Bradley's name. This band cut dozens of boogie woogie laden sides for Columbia between September of 1939 and January of 1942. Unfortunately there was friction between the two stars, and the two had a less than amicable split in 1942 as reported by Down Beat magazine. +In 1942 McKinley formed his own short-lived band recording briefly for Capitol and then joined the Army. While in the service he joined Glenn Miller’s AEF band and while in Europe formed his own “Swing Shift” group, culled from the heart of Miller’s band. After Miller’s disappearance McKinley co-led Glenn Miller's American Band Of The Allied Expeditionary Forces briefly with Jerry Gray. +Back in the U.S. Ray formed his own civilian band, recording for Majestic in 1946 and Victor 1947-1950. +From 1950-1955 McKinley free-lanced, occasionally leading his own bands, and working as a TV singer in NYC. In 1956 he was commissioned by the widow of Glenn Miller to organize a new band under Miller’s name, using the original library and style. This band made a successful tour of Iron Curtain countries in 1957 and continued to tour the U.S. until 1966. McKinley then free-lanced again, leading an orchestra under his own name and recording for Dot in 1966. His last recording session was cut with just himself on drums and pianist Lou Stein, who recorded five sides together for the Chiaroscuro label in 1977.Needs Votehttp://en.wikipedia.org/wiki/Ray_McKinleyhttp://www.swingmusic.net/McKinley_Ray.htmlhttps://adp.library.ucsb.edu/names/206600Capt. Ray McKinleyCpl. Ray McKinleyCpt. Ray McKinleyKinleyMackinleyMc KinlayMc KinleyMcKineeyMcKinleyMcKinnlyMckinleyMetinlyR. McKinleyR.McKinleyRayRay MaKinleyRay Mac KinleyRay Mc KinleyRay Mc. KinleyRay McKinlayRay McKinlyRay MckinleyRaymond Francis "Ray" McKinleyS/Sgt. Ray McKinleySargeant Ray McKinleySergeant Ray McKinleySergent Ray Mac KinleySgt Ray McKinleySgt. R. McKinleySgt. Ray McKinleySgt. Ray MckinleyT-Sgt. Ray McKinleyT/Sgt Ray McKinleyT/Sgt. McKinleyT/Sgt. Ray McKinleyTechnical Sgt Ray McKinleyTechnical Sgt. Ray McKinleyレイマッキンレーレイ・マッキンレーZ. (12)Jimmy Dorsey And His OrchestraWill Bradley And His OrchestraThe New Glenn Miller OrchestraGlenn Miller And The Army Air Force BandThe Dorsey Brothers OrchestraRay McKinley And His Famous OrchestraWill Bradley TrioJazz Club Mystery Hot BandRay McKinley And His OrchestraRay McKinley QuartetThe Ray McKinley TrioThe Army Air Force BandRay McKinley And His SextetRay McKinley And Some Of The BoysRay McKinley And His Soda Fountain Seven + +254892John BestJohn McClanian Best Jr.American jazz trumpeter, born 20 October 1913 in Shelby, North Carolina, USA and died 20 September 2003 at La Jolla, San Diego, California, USA.Correcthttps://web.archive.org/web/20190410115536/http://www.johnnybest.org/https://adp.library.ucsb.edu/names/112462BestJ. BestJohn M. BestJohn McClanianJohn McClanian BestJohnny BestThe BestThe Glenn Miller OrchestraWoody Herman And His OrchestraBilly May And His OrchestraGlenn Miller And His OrchestraArtie Shaw And His OrchestraBenny Goodman And His OrchestraShorty Rogers And His GiantsBob Keene OrchestraWoody Herman And The Swingin' HerdJerry Gray And His OrchestraMorty Corb And His Dixie All-StarsSam Donahue Navy BandJohnny Best And His All StarsNappy Lamare's Louisiana Levee LoungersArt Shaw And His New Music + +254893Bobby HackettRobert Leo HackettAmerican jazz trumpeter and cornet player. He also played guitar, banjo and clarinet. + +Born: 31 January 1915 in Providence, Rhode Island, USA. +Died: 7 June 1976 in Chatham, Massachusetts, USA.Needs Votehttps://en.wikipedia.org/wiki/Bobby_Hacketthttps://adp.library.ucsb.edu/names/104371B. HacketB. HackettBob HackettBobbie HackettBobbyBobby HacketBobby Hacket Dixieland BandBobby Hacket's Jam SessionBobby Hackett With StringsBobby Hackett's Jam SessionBobley HackettBuddy HackettHackettR. HackettRobert Hackettボビー・ハケットPete PesciOriginal Dixieland Jazz BandBenny Goodman SextetThe Benny Goodman QuintetLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsGlenn Miller And His OrchestraBobby Hackett QuintetClaude Thornhill And His OrchestraTeddy Wilson And His OrchestraEddie Condon And His OrchestraEddie Condon And His BandEddie Condon And His Windy City SevenMiff Mole And His Nicksieland BandBobby Hackett And His OrchestraGordon Jenkins And His OrchestraLeonard Feather All StarsEddie Condon And His All-StarsJoe Marsala And His Delta SixThe Bobby Hackett QuartetAll Star Alumni OrchestraBud Freeman And His GangBobby Byrne And His OrchestraJackie Gleason And His OrchestraBobby Hackett And His Swinging StringsBobby Hackett With StringsThe Rhythm CatsVic Lewis And His American JazzmenBobby Hackett And His Jazz BandThe Bobby Hackett SextetHank D'Amico SextetEddie Condon And His Dixieland BandBobby Hackett's Trumpet And Rhythm GroupJoe Marsala's All TimersHank D'Amico OrchestraAdrian Rollini QuintetEddie Condon's N.B.C. Television OrchestraJam Session At CommodoreJack Teagarden & His TromboneLouis Armstrong And The V-Disc All-Stars + +254894Wilbur SchwartzAmerican jazz clarinetist, saxophonist (alto) and reeds player. +Born: March 17, 1918 in Newark, New Jersey. +Died: August 03, 1990 in Los Angeles, California. + +Wilbur was a member of Glenn Miller's Orchestra, played also with Dean Martin, Frank Sinatra, Ella Fitzgerald and others. +Brother of [a=Jack Schwartz]; husband of [a=Peggy Clark] and father of [a=Doug Schwartz] & [a=Nan Schwartz]; brother-in-law of [a=Ann Clark], [a=Mary Clark (3)], [a=Jean Clark] and [a=Bob Bain] (Judi Clark's husband).Needs Votehttps://en.wikipedia.org/wiki/Wilbur_SchwartzBarton SwartzBurton SwartzDr. Wilbur SchwartzSchwartzW. SchwartzWilber SchwartzWilbur "Willy" SchwartzWilbur (Willy, Wee Willy) SchwartzWilbur SchwartWilbur “Willie” SchwartzWilburn ScwharzWill SchwartzWilli SchwartzWilliam SchwartzWillie SchwartzWillie SchwarzWilly SchwartzWily SchwartzThe Glenn Miller OrchestraWoody Herman And His OrchestraBilly May And His OrchestraGlenn Miller And His OrchestraBoyd Raeburn And His OrchestraHenry Mancini And His OrchestraBob Crosby And His OrchestraGordon Jenkins And His OrchestraGeorgie Auld And His OrchestraThe Universal-International OrchestraJerry Gray And His OrchestraWoody Herman And His Third HerdThe Buddy DeFranco Big BandNeal Hefti And His Jazz Pops OrchestraRay Rasch And The Pipers 10 + +254895Bernie PrivinBernard PrivinAmerican jazz trumpeter, born February 12, 1919 in New York City, died October 08, 1999 in White Plains, New York State. +Needs Votehttps://en.wikipedia.org/wiki/Bernie_Privinhttps://adp.library.ucsb.edu/names/107154B. PrivinBernard PrivinBernie DrivinBernie PrevinBernie PrionBernie PrivenPvt. Bernie PrivinPvt.. Bernie PrivinSgt. Bernie PrivinБерни ПривинV. (11)Woody Herman And His OrchestraArtie Shaw And His OrchestraCharlie Barnet And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraCharlie Parker Big BandCharlie Parker With StringsAll Star Alumni OrchestraHenry Jerome And His OrchestraJazz Club Mystery Hot BandBobby Byrne And His OrchestraWoody Herman And The Fourth HerdMel Powell And His OrchestraBernie Privin And His OrchestraVic Schoen And His All Star BandThe Army Air Force Band + +254896Paula KellyAmerican big band singer. +Born April 6, 1919 in Pennsylvania. +Died April 2, 1992 in Costa Mesa, California. + +In her early career she worked in the Kelly Sisters trio and in Hal Thomas' orchestra. She sang with orchestras led by [a=Dick Stabile], [a=Artie Shaw], and [a=Al Donahue] before she joined [a=Glenn Miller And His Orchestra] in 1941. + +Kelly originally performed solo, but soon became the female lead of [a=The Modernaires], resulting in the group becoming a quintet of four male singers and herself. She married (Hal) [a1002614], one of the original members of the Modernaires, shortly after joining the group. The group continued with Kelly as lead singer until 1978, when she retired in favor of her daughter, who performed as [a4094740]. Her other daugthers also sang: Martha Kelly Dickinson (Martz), and Julie Kelly Dickinson.Needs Votehttp://en.wikipedia.org/wiki/Paula_Kelly_%28singer%29https://bandchirps.com/artist/paula-kellyhttps://fromthevaults-boppinbob.blogspot.com/2014/04/paula-kelly-born-6-march-1919.htmlhttps://adp.library.ucsb.edu/names/100858KellyP. KelleyP. KellyP.KellyPaul KellyPauly KellyThe ModernairesGlenn Miller And His OrchestraKelly SistersAl Donahue And His OrchestraThe Three Kittens + +254897Joe GarlandJoseph Copeland GarlandAmerican jazz saxophonist, composer, and arranger, best known for writing "[b]In The Mood[/b]" (Aug. 15, 1903, Norfolk, Virginia - April 21, 1977, Teaneck, New Jersey). + +Garland studied music at Shaw University and the Aeolian Conservatory. He started by playing classical music but joined a jazz band, Graham Jackson's Seminole Syncopators, in 1924, where he first recorded. He had a long run of associations as a sideman on saxophone and clarinet, with [a669268] (1925), [a2043307], Henri Saparo, Leon Abbey (including a tour of South America), Charlie Skeete and [a309976] in the 1920s. The 1930s saw him playing with Bobby Neal (1931) and the [a307167]; he was both a performer and an arranger for the Blue Rhythm Band from 1932 to 1936, when [a311059] replaced him. Following this he played with [a307187] (1937), [a307171] (1938), and [a38201] (1939-42). In the 1940s he played with [a648212] and others, and then returned to Armstrong's band from 1945-47. Following this he played with [a1838242], Hopkins again, and [a257353] (1948). In the 1950s, he went into semi-retirement.Needs Votehttps://en.wikipedia.org/wiki/Joe_Garlandhttps://www.imdb.com/name/nm0307533/https://www.radioswissjazz.ch/en/music-database/musician/17773c579aab87ffbcec5da5d5765821b94fb/biographyhttps://adp.library.ucsb.edu/names/110565CanlandCarlandG. GarlandGalandGarladGarlanGarlanaGarlandGarland J.Garland J. C.Garland JosephGarland, JoeGarlanoGarlaudGarlnagGerlandGurlandI. GarlandJ GarlandJ. C. GarlandJ. CarlandJ. GarlanJ. GarlandJ. GarlangJ. GralandJ.C. GarlandJ.GarlandJack GarlandJo GarlandJoe CarlandJoe GaelandJoe GarnandJoe GerlandJoel GarlandJos. GarlandJosephJoseph "Joe" GarlandJoseph C GarlandJoseph C. GarlandJoseph C.GarlandJoseph CarlandJoseph GarlandJoë GarlandJuddy GarlandL.GarlandR. GarlandS. GarlandГарландГарлендД. ГарландДж. ГарландДжо ГарландИ. ГарландР. ГарландDuke Ellington And His OrchestraLouis Armstrong And His OrchestraGlenn Miller And His OrchestraBaron Lee And The Blue Rhythm BandHenry "Red" Allen And His OrchestraJelly Roll Morton And His OrchestraThe Mills Blue Rhythm BandEdgar Hayes And His Orchestra + +254899Maurice PurtillMaurice PurtillAmerican jazz drummer, born May 4, 1916 in Huntington, New York State, died March 9, 1994 in Ridgewood, New Jersey. +Purtill worked with lesser-known orchestras in New York in the mid-1930s, then with Red Norvo, Glenn Miller (1937, 1939-1942) and Tommy Dorsey (1938-1939). After World War II mostly as a session musician in New York. +Needs VoteM. PurtillMPMaruice PurtillMaurice "Mo" PurtillMaurice "Moe" PurtillMaurice 'Mo' PurtillMaurice PurtellMaurice Purtill (MP)Maurice “Moe” PurtillMo PurtillMoe PurtillPurtillTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenGlenn Miller And His OrchestraBobby Hackett And His OrchestraAll Star Alumni OrchestraBobby Byrne And His Orchestra + +254903Clyde HurleyClyde Lanham Hurley Jr.American jazz trumpeter. + +Born: September 03, 1916 in Fort Worth, Texas. +Died: August 14, 1963 in Fort Worth, Texas. +Needs Votehttps://en.wikipedia.org/wiki/Clyde_Hurleyhttps://www.allmusic.com/artist/clyde-hurley-mn0000731223https://adp.library.ucsb.edu/names/106748C. BurleyCHClyde Hurley (CH)Clyde Hurley Jr.Clyde L. Hurley, JrClyde L. Hurley, Jr.HurleyTommy Dorsey And His OrchestraThe Glenn Miller OrchestraGlenn Miller And His OrchestraArtie Shaw And His OrchestraThe Mel Powell SeptetJimmy Mundy OrchestraThe Rampart Street ParadersClyde Hurley & His Orchestra + +254904Hank FreemanHenry Freeman.American jazz saxophonist. + +Born : ? +Died : January 08, 2000 in Boca Raton, Florida. + +Henry worked with , among others, Glenn Miller, Artie Shaw, Benny Goodman, Harry James, Bunny Berigan, Dinah Washington, Billie Holiday and Sarah Vaughan.Needs VoteH. FreemanHank Henry FreemanHarry (Hank) FreemanHarry FreemanHenry "Hank" FreemanHenry (Hank) FreemanHenry FreemanS/Sgt. Hank FreemanSgt. Hank FreemanBunny Berigan & His OrchestraArtie Shaw And His OrchestraGlenn Miller And The Army Air Force BandGeorgie Auld And His OrchestraAll Star Alumni OrchestraHenry Jerome And His OrchestraBobby Byrne And His OrchestraThe Army Air Force BandArt Shaw And His New MusicSnapper Lloyd And His Orchestra + +254906Jerry GrayGeneroso Graziano.American swing violinist, arranger, bandleader and composer (July 3, 1915, Boston, Massachusetts - August 10, 1976, age of 61, Dallas, Texas). +Married to actress/singer [a4321785] from 1957 until his death in 1976. +Brother of accordionist/singer [a4968455]. + +After Gray turned 18, he officially performed with his own bands in Boston-Clubs. In 1936 He Joined Artie Shaw's "New Music Orchestra" as a violinist, but also studied arranging with Shaw. He did so well that he wrote most of the groups arrangements one year later. In November 1939 he joined Glenn Miller as his staff arranger. +He charted four times as a songwriter and more as an arranger. His top songwriting credit was for the #1 song "A String of Pearls" by The Glenn Miller Orchestra, which came in 1942. He also had two other top ten singles with "Pennsylvania 6-5000" #5 in 1940 (co-written by Carl Sigman) and "I Dreamt I Dwelt in Harlem" #3 in 1941 (co-written by Ben Smith, Leonard Ware & Buddy Feyne), both by The Glenn Miller Orchestra. +By the 1960's he settled in Dallas, where he lead the Fairmont Hotel band into the 1970s.Needs Votehttp://en.wikipedia.org/wiki/Jerry_Gray_%28arranger%29http://www.bigbandlibrary.com/jerrygray.htmlhttps://adp.library.ucsb.edu/names/105234C. GrayC. GreyDe LangDž. GrėjusFrayGaryGerry GrayGlen GrayGrayGray De LangeGreyJ GrayJ. GaryJ. GrayJ. GreyJ. WrayJ.GaryJ.GrayJarry GrayJeroy GrayJerry GaryJerry GreyJerry RayKerry GrayPvt. Jerry GraySgt. Jerry GrayT/Sgt. Jerry GrayTrevor VincentД. ГрейДж. ГрейДж. ГрэйGlenn Miller And His OrchestraArtie Shaw And His OrchestraJerry Gray And His OrchestraArtie Shaw And His Strings + +254907Tex BenekeGordon BenekeAmerican saxophonist, vocalist, and bandleader. +Born February 12, 1914, Fort Worth, Texas, USA. +Died May 30, 2000, Santa Ana, California, USA. + +Beneke sang on the recording of many of the Glenn Miller Orchestra most popular songs including "In The Mood" and "Chattanooga Choo Choo". +Tex Beneke and his Orchestra became one of the most successful of the postwar big bands as singers and ballads became more popular.Needs Votehttp://en.wikipedia.org/wiki/Tex_Benekehttps://www.colorado.edu/amrc/glenn-miller-archive/gma-catalogs/tex-benekehttps://adp.library.ucsb.edu/names/105307"Tex" BenekeBenekeG. BenekeGorden (Tex) Lee BenekeGordon "Tex" BenekeGordon BenekeGordon «Tex» BenekeGordon “Tex” BenekeT. BenekeTexTex BeneckeTex Beneke And "His Music In The Miller Mood"Tex Beneke And His "Music In The Miller Mood"Tex Beneke And OthersTex Beneke With The Miller OrchestraTex Beneke/In The Glenn Miller StyleTex BennekeТекст БенекеТэкс БенекеMetronome All StarsGlenn Miller And His OrchestraTex Beneke And His OrchestraAll Star Alumni OrchestraBobby Byrne And His OrchestraMetronome All-Star Band + +254908Ray EberleRaymond Eberle US vocalist was born January 19, 1919 in Hoosick Falls, New York. He died on August 25, 1979 in Douglasville, Georgia. +Brother of [a=Bob Eberly]. For the member of the Casa Loma Orchestra, please use [a=ray eberle (2)].Needs Votehttp://en.wikipedia.org/wiki/Ray_Eberlehttps://www.jazzstandards.com/biographies/biography_148.htmhttp://www.bigbandbuddies.co.uk/rayeberle.htmhttps://adp.library.ucsb.edu/names/106442E. EberleEberleJER. EberleR.EberleRay Eberle And ChorusRay Eberle In The "Glenn Miller" StyleRay EberleyRay EberlyРей ЭберлиGlenn Miller And His OrchestraRay Eberle Orchestra + +254909Eddie DurhamEduard DurhamEddie Durham (born August 19, 1906, San Marcos, Texas, USA - died March 6, 1987, New York City, New York, USA) was an American guitarist, trombonist, composer and arranger. + +He played with [a2392043] and the orchestras of [a311057], [a311058] and [a145262]. He was one of the first musicians to adopt the electric guitar (just invented in 1931) after using instruments with a resonator. + +He experimented with proto-amplifiers as early as 1929, for example in the solo of [i]Band Box Shuffle[/i] (with [a317903], in October 1929), and recorded one of the first amplified guitar tracks in 1935 (on Jimmie Lunceford's cover of [i]Hittin' The Bottle[/i]). + +From 1936 to 1938, Durham arranged and composed many pieces for Count Basie's groups and orchestras: [i]John's Idea[/i] (July 1937), [i]Time Out[/i] (August 1937), [i]Topsy[/i] (August 1937), [i]Out The Window[/i] (October 1937), [i]Sent For You Yesterday[/i] (February 1938), [i]Swinging The Blues[/i] (february 1938), [i]Every Tub[/i] (February 1938). + +In the 1940's, Durham became musical director of the [a=International Sweethearts Of Rhythm], an all-female jazz band. At the same time, he was leading his own combo, which included some Kansas City swing veterans such as [a=Buster Smith] and [a=Hot Lips Page]. + +Durham maintained his activity as arranger through the 1960's, and was playing guitar and touring until the 1980's. He appears playing a trombone solo in the documentary film [i]The last of the Blue Devils[/i], directed by [a747455] in 1980. +Needs Votehttp://astore.amazon.com/eddidurhswinm-20http://www.txstate.edu/ctmh/tmho/classroom/eddie-durham.htmlhttp://www.youtube.com/topsydurham#g/phttp://en.wikipedia.org/wiki/Eddie_Durhamhttps://www.allmusic.com/artist/eddie-durham-mn0000142845/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13709350ba2b9fd07e291fe3ba2f4d2fb5fc7/titolihttps://adp.library.ucsb.edu/names/109223DunhamDurahmDurhamDurham, E.DurhanE DurhamE, DurhamE. BurhamE. DurhamE. DurhamlE. DurhanE. DurhumE. FurhamE.DurhamE.W. BattleEDEd DorhamEd DurhamEd. DurhamEddie DarhamEddie Durham QuartetEddie Durham SeptetEddy DurhamEddy DurhanEduard DurhamEdward DurhamEdward DurhanEdward DurnhamFreddie GreenFurhamJimmy YoungWilliam DurhamЭ. ДаремЭ. ДерхэмCount Basie OrchestraHarry James And His OrchestraKansas City SixBennie Moten's Kansas City OrchestraJimmie Lunceford And His OrchestraGlenn Miller And His OrchestraEddie Durham & His BandThe Harlem Blues & Jazz BandKansas City FiveWalter Page's Blue Devils + +254945Kenny DorhamMcKinley Howard DorhamAmerican trumpet player +Born August 30, 1924 in Fairfield, Texas, USA, died December 5, 1972 in New York, New York, USA + +He played in the big bands of [a136133], [a311744], [a64694], [a323069] and the quintet of [a=Charlie Parker]. He was a charter member of the original cooperative [url=http://www.discogs.com/artist/262128-Art-Blakey-The-Jazz-Messengers]Jazz Messengers[/url]. He also recorded as a sideman with [a145256] and [a145264] and replaced [a259082] in groups led by [a229498]. +As leader, he recorded in 1956 as [a1412542]. In 1963, Dorham's group included [a10079]; the two men collaborated for several years. +Aged 48, Dorham died from kidney disease.Needs Votehttps://www.bluenote.com/artist/kenny-dorham/https://www.britannica.com/biography/Kenny-Dorhamhttps://www.allmusic.com/artist/kenny-dorham-mn0000768027https://www.jazzdisco.org/kenny-dorham/discography/https://adp.library.ucsb.edu/names/312661https://en.wikipedia.org/wiki/Kenny_DorhamDorhamDorhanDurhamH. DorhamK DorhamK. DorfmanK. DorhamK. Dorham McKinleyK. DormanK. DornhamK. DurhamK.DorhamKenney DorhamKennyKenny DhoramKenny DorhanmKenny DormanKenny DorthamKenny DuramKenny DurhamKinney DorhamKinny DorhamKinny DurhamM. DorhamMc Kinlay DorhamMc Kinley DorhamMcKinlay DorhamMcKinlay DurhamMcKinley "Kenny" DorhamMcKinley "Kinney" DurhamMcKinley DorhamMcKinley DurhamMcKinley Howard "Kenny" DorhamMcKinley-DorhanMckinley Kinney DorhamК. ДорэмК. Дорэм = K. Doramケニー・ドーハムArt Blakey & The Jazz MessengersDizzy Gillespie And His OrchestraThe Horace Silver QuintetKenny Dorham OctetDizzy Gillespie Big BandThe J.J. Johnson SextetBenny Golson SextetCharlie Parker And His OrchestraThe Hank Mobley QuintetMilt Jackson SextetJ.J. Johnson's BoppersSonny Rollins QuintetBe Bop BoysSonny Stitt All StarsMax Roach QuintetToshiko Akiyoshi QuintetThe Dave Bailey SextetKenny Clarke And His CliqueThe Kenny Dorham QuintetKenny Dorham And The Jazz ProphetsMax Roach QuartetCecil Taylor QuintetKenny Clarke And His 52nd Street BoysKenny Dorham QuartetPhil Woods SeptetKenny Dorham SeptetCedar Walton QuintetOscar Pettiford OrchestraThe Barry Harris SextetThe Birdland StarsThe Riverside Jazz StarsLou Donaldson SextetJohn Mehegan QuartetThe Rocky Boyd QuintetKenny Dorham-Barry Harris QuartetGil Fuller's ModernistsErnie Henry QuintetThelonious Monk GroupKenny Dorham Nonet + +254958Liberty DeVittoDrummer, best known as Billy Joel's primary drummer for 30 years (1976-2006). Has also worked as a session musician for artists such as Rick Wakeman and Meat Loaf. Born Brooklyn, New York 1950.Needs Votehttps://web.archive.org/web/20040608112318/http://www.libertydevitto.com/https://www.facebook.com/Liberty-DeVitto-131325647012359/https://en.wikipedia.org/wiki/Liberty_DeVittoDe VittoDevittoLiberty De VitoLiberty De VittoLiberty DeVitoLiberty DeVittoLiberty DevitoLiberty DevittoFun(k)ClubJamboree (8) + +254959Ronnie CuberRonald Edward CuberAmerican baritone saxophonist, born December 25, 1941 in New York City, New York - died October 7, 2022 in Upper West Side, New York City + +Primarily known as a traditional jazz musician, he also performs in Latin sessions and has appeared on numerous pop, rock and rhythm & blues recordings, as an in-demand sideman. His first notable work was with [a=Marshall Brown]'s [i]Newport Youth Band[/i] at the 1959 [l=Newport Jazz Festival]. During the 1960's, he was featured with the groups of [a=Slide Hampton], [a=Maynard Ferguson], [a=George Benson], [a=Lionel Hampton], [a=Woody Herman] and [a=Lonnie Smith]. During the 1970's, Cuber performed with [a=Eddie Palmieri] playing both the flute and baritone saxophone. He recorded his own [i]Cuber Libre[/i] in 1976, worked with [a=Lee Konitz] from 1977 to 1979 playing the clarinet and soprano saxophone alongside the baritone and in 1979 released [r=710828]. He was a member of the Saturday Night Live Band for 5 years during the 1980's. Since the 1980's, he has released a succession of traditional jazz recordings such as [i]Live At The Blue Note[/i], [i]Passion Fruit[/i], [i]Airplay[/i], [i]Love For Sale[/i], [i]The Scene Is Clean[/i], [i]Cubism[/i] and [i]Pinpoint[/i]. Other musicians who have recruited Cuber for sessions include [a=Chaka Khan], [a=Paul Simon], [a=Eric Clapton], [a=Yoko Ono], and [a=David Byrne].Needs Votehttps://en.wikipedia.org/wiki/Ronnie_Cuberhttps://www.imdb.com/name/nm0974375/https://adp.library.ucsb.edu/names/202245Bonnie CuberCuberR. CuberRon CuberRon KuberRonald CuberRonald E CuberRonald E. CuberRonnieRonnie ClubberRonnie CubenRonnie CuberraRonnie CubertRonnie CyberRonnie KuberRonny CuberRony CuberRony Kuber– Ronald E. CuberLibreWhite ElephantThe George Benson QuartetWoody Herman And His OrchestraThe Blues Brothers BandLalo Schifrin & OrchestraThe Rongetz FoundationPond Life (2)The Gadd GangMingus Big BandThe Pond Life OrchestraDavid Matthews OrchestraLee Konitz NonetRein De Graaff QuintetMike Mainieri & FriendsNewport Youth BandWoody Herman And The Thundering HerdJack Cortner Big BandJoe Quijano Y Su OrquestaSam Jones 12 Piece BandRonnie Cuber QuartetKazimierz Jonkisz EnergyRonnie Cuber / Enrico Pieranunzi QuartetSteve Gadd And FriendsThree Baritone Saxophone BandThe Antone's Horns + +254975Joe BenjaminJoseph Rupert BenjaminAmerican jazz bassist, born 4 November 1919 in Atlantic City, New Jersey, USA and died 26 January 1974 in Livingston, New Jersey, USA. +Needs Votehttp://en.wikipedia.org/wiki/Joe_Benjaminhttps://adp.library.ucsb.edu/names/303857BenjaminJ. BenjaminJBjmJo BenjaminJoe BenhaminJoe BenjamenJoe Benjamin or Joe ScottJoe BenjamineJoe BenjamínJoseph BenjaminJoseph Rupert "Joe" BenjaminДж. БенджеминThe Dave Brubeck QuartetDuke Ellington And His OrchestraBill Doggett ComboRay Ellis And His OrchestraSy Oliver And His OrchestraGerry Mulligan QuartetSarah Vaughan And Her TrioBarry Harris TrioBob Brookmeyer QuintetManny Albam And His Jazz GreatsThe Roland Kirk QuartetNo Strings SextetGeorge Russell OrchestraGerry Mulligan - Paul Desmond QuartetThe Mal Waldron SextetMartial Solal TrioJimmy Jones TrioRoy Haynes SextetWild Bill Moore QuintetDick Morgan TrioDuke Ellington All Star Road BandDizzy Gillespie And His Operatic StringsJerome Richardson SextetRolf Kühn QuartettTommy Wolf QuartetThe Jack McDuff TrioDon Byas Et Ses Rythmes + +254976Joe MorelloJoseph A. MorelloUS jazz drummer (* June 17, 1928 in Springfield, Massachusetts, USA; † March 12, 2011 in Irvington, New Jersey, USA)Needs Votehttps://en.wikipedia.org/wiki/Joe_Morellohttps://www.drummerworld.com/drummers/Joe_Morello.htmlJ. MorelloJoe MerelloJoe MorellaJoe MorrelloJoseph A. MorelloMorelloДж. Мореллоג'ו מורלוジョー・モレロGil Evans And His OrchestraThe Dave Brubeck QuartetSam Most QuartetJimmy McPartland And His OrchestraDave Brubeck QuintetJoe Morello SextetJoe Morello And His OrchestraMarian McPartland TrioGil Mellé QuintetThe Tal Farlow QuartetMarian McPartland's Hickory House TrioThe Vinnie Burke All-StarsThe Bob Alexander Quintet + +254990The Modern Jazz QuartetJazz group, established in 1952, which performed several jazz styles, including bebop, cool jazz and third stream.Needs Votehttps://en.wikipedia.org/wiki/Modern_Jazz_QuartetLe Modern Jazz QuartetM J QM.J.QM.J.Q.MJQMJQ & FriendsMilt Jackson Modern Jazz QuartetMilt Jackson's Modern Jazz QuartetModern Jazz QuartetModern Jazz QuartettModern Jazz-QuartettM·J·QO Modern Jazz QuartetThe M.J.Q.The MJQThe Milt Jackson Modern Jazz QuartetThe Modern Jazz Cuartet And GuestsThe Modern Jazz Quartet & GuestsThe Modern Jazz Quartet FontessaThe Modern Jazz Quartet PlusThe QuartetМодерн Джаз Квартет п/у Дж. ЛьюисаМодерн Джаз-КвартетСовременный Джазовый Квартетザ・モダン・ジャズ・カルテットモダン・ジャズ・カルテットモダン・ジャズ四重奏団Milt JacksonKenny ClarkeConnie KayRay BrownPercy HeathJohn Lewis (2)Mickey Roker + +255076Vernell FournierVernel Anthony FournierAmerican jazz drummer, born 30 July 1928 in New Orleans, Louisiana, died 7 November 2000 in Jackson, Mississippi. + +Member of the [b]Ahmad Jamal Trio[/b] from the mid-1950s to the mid-1960s. +Needs Votehttp://en.wikipedia.org/wiki/Vernel_FournierAmir RushdanFournierV. FournierVernal FournierVernel FournierVernellVernell FornierVernell FourierAhmad Jamal TrioThe George Shearing QuintetClifford Jordan QuartetGeorge Shearing TrioJohnny Pate QuintetThe Ahmad Jamal QuintetSam Jones & Co.The Clifford Jordan Big BandVernel Fournier TrioThe Keith Ingham-Bob Reitmeier QuartetWardell Gray and his Quintette + +255109Johnny ColesJohn ColesAmerican jazz trumpet player, born 3 July 1926 in Trenton, New Jersey, died 21 December 1996 in Philadelphia, Pennsylvania, USA + + +Needs VoteC. ColesColesJ. ColesJohn ColeJohn ColesJohnnie ColesJohnny ColeJone ColesGregory HerbertGil Evans And His OrchestraDuke Ellington And His OrchestraCharles Mingus Jazz WorkshopCharles Mingus SextetThe Duke Pearson NonetJames Moody And His OrchestraThe Philip Morris SuperbandThe Duke Pearson QuintetJohnny Coles QuartetFrank Morgan QuintetTina Brooks QuintetMark Masters' Jazz OrchestraDameronia + +255111Tony StuddAnthony StrupcewskiTrombonist. Member of the Gil Evans Orchestra in the early 1960's. +Tony graduated from Mansfield University in 1959, and received his MM from Manhattan School of Music. He has studied piano, conducting, and composition with Nadia Boulanger in France. Tony has been trombonist for Broadway Shows including Fiddler on the Roof, Man of LaMancha, and Annie. He performed with the American Symphony Orchestra in Carnegie Hall. Tony has been trombonist, pianist, and conductor of many TV and Radio commercials. He has been heard on recordings of Frank Sinatra, Tony Bennett, Lena Horne, Mel Torme, Paul McCartney, and Chuck Mangione.Needs VoteTonny StuddTony (?)Tony StudTony StuttTony StrupcewskiGil Evans And His OrchestraOliver Nelson And His OrchestraGerry Mulligan & The Concert Jazz BandThe Kai Winding TrombonesArt Farmer And His OrchestraJack Cortner Big BandAl Caiola And The Nile River BoysUrbie Green And Twenty Of The "World's Greatest" + +255112Garnett BrownAmerican jazz trombonist +Born 31 January 1936 in Memphis, Tennessee, USA, died 9 October, 2021 in Los Angeles, CA, USA + +Garnett has worked with [a=The Crusaders], [a=Herbie Hancock], [a=Lionel Hampton], [a=Billy Cobham], [a=Dizzy Gillespie] and others. In later years he worked as composer for movies and television stations; 1989 led the orchestra for the movie "Harlem Nights". +Correcthttp://www.trombone-usa.com/brown_garnet_bio.htmhttp://en.wikipedia.org/wiki/Garnett_Brown"Red" Garnett BrownBrownBrown GarnettG. BrownGarnet BrownGarnett B.Garnett Brown Jr.Garnett Brown, Jr.Garnett GrownGarrett Brownガーネット・ブラウンGil Evans And His OrchestraThe Chico Hamilton QuintetThe World Jazz All Star BandThe Duke Pearson NonetThe Gene Harris All Star Big BandBrass FeverCollins-Shepley GalaxyGeorge Russell OrchestraCharles Mingus OctetDuke Pearson's Big BandThe Booker Ervin SextetGerald Wilson Orchestra of The 80'sThad Jones & Mel LewisThe Buddy Collette Big BandThomas Tedesco Ensemble + +255113Romeo PenqueJazz saxophonist, flutist, clarinetist, oboist +Born 17 October 1916, died June 1985Needs Votehttps://www.allmusic.com/artist/romeo-penque-mn0000807455Penque RomeoR. PenqueRené PenqueRomee PenqueRomeo M. PenqueRomeo PanqueRomeo PengueRomeo PenguetRomeo PeniqueRomeo PenquaRomeo Penque And His OrchestraRomeo PenquetRomeo PenquéRomeo PinquayRomeo PinqueRomeo RenqueRomero PenqueGil Evans And His OrchestraHugo Montenegro And His OrchestraSoul FlutesShep Fields And His New MusicRay Ellis And His OrchestraCootie Williams And His OrchestraSauter-Finegan OrchestraJoe Reisman And His OrchestraThe Jerry Ross SymposiumGeorge Paxton & His OrchestraAl Caiola And His OrchestraJimmy McPartland And His OrchestraMiles Davis + 19Henry Jerome And His OrchestraArt Farmer And His OrchestraManny Albam And His OrchestraOrizaba And His OrchestraPeanuts Hucko And His OrchestraPeter Appleyard Orchestra + +255116George CablesGeorge Andrew CablesAmerican jazz pianist, born November 14, 1944 - New York City, USA.Needs Votehttp://www.georgecables.com/https://en.wikipedia.org/wiki/George_CablesCablesG. CablesG. GablesG.CablesGablesGeorg CablesGeorge CableGeorge GablesJoe Henderson QuintetArt Blakey & The Jazz MessengersFreddie Hubbard And His OrchestraArt Pepper QuartetCarl Burnett QuintetGeorge Cables TrioChico Freeman QuartetWinard Harper SextetJoe Farrell QuartetDexter Gordon QuartetThe CookersDoug Raney QuartetFreddie Hubbard QuintetPaul Jeffrey QuintetBobby Shew QuintetCharles Owens New York Art EnsembleJoe Locke QuintetThe Bruce Forman QuartetFrank Morgan QuartetWoody Shaw QuintetEric Alexander QuartetBaya (4)Chico Freeman QuintetThe Deardorf/Peterson GroupRalph Lalama QuartetThe Super FourGeorge Cables QuartetGarrison Fewell QuartetGarrison Fewell QuintetSwingTime (2)Massimo Faraò Double Piano QuartetRicky Ford QuartetQuiet Fire (3)Chuck Metcalf QuintetKaren Francis Sextet + +255117Woody ShawWoody Shaw, Jr.American jazz trumpet player, born in Laurinburg, N.C. on December 24th, 1944, died of kidney failure in New York City, N.Y. on May 10th, 1989Needs Votehttps://woodyshaw.com/https://woodyshaw.bandcamp.com/https://www.facebook.com/woodyshawlegacyhttps://en.wikipedia.org/wiki/Woody_ShawHerman II "Woody" ShawShawW. ShawW. Shaw, Jr.W.ShawWood ShawWoodie ShawWoodyWoody Herman Shaw Jr.Woody Shaw Jnr.Woody Shaw JrWoody Shaw Jr.Woody Shaw, JrWoody Shaw, Jr.Woody ShowВуди ШоуGary Bartz NTU TroopJoe Henderson QuintetThe George Gruntz Concert Jazz BandArt Blakey & The Jazz MessengersThe Horace Silver QuintetThe Phoenix AuthorityThe Nathan Davis SextetThe Horace Silver SextetCBS Jazz All-StarsThe Band (7)Mal Waldron QuintetLouis Hayes - Woody Shaw QuintetParis Reunion BandKenny Garrett QuintetNeil Swainson QuintetThe Woody Shaw Concert EnsembleWoody Shaw QuintetCarlos Ward QuartetThe New Woody Shaw QuintetWoody Shaw QuartetLouis Hayes / Junior Cook QuintetWoody Shaw & Joe Farrell Quintet + +255129Gary PeacockGary George PeacockAmerican jazz double bassist. Born on May 12, 1935, in Burley, Idaho, USA; died Friday, September 4, 2020 in Olivebridge, New York.Needs Votehttp://www.myspace.com/peacockgaryhttps://en.wikipedia.org/wiki/Gary_Peacockhttps://www.allmusic.com/artist/gary-peacock-mn0000153503G PeacockG. PeacockGaryGary George PeacockGary PeacoakGary PeascockGeorge PeacockPeacockゲイリー・ピーコックGil Evans And His OrchestraAlbert Ayler TrioKeith Jarrett TrioAlbert Ayler QuintetPaul Bley TrioTethered MoonAlbert Ayler QuartetMarc Copland TrioLowell Davidson TrioThe Michel Petrucciani TrioMisha Mengelberg QuartetSteve Kuhn TrioGreat 3Prince Lasha QuintetBud Shank QuartetGary Peacock TrioQuartettMax Brüel TrioHans Koller SeptettThe Bob Belden EnsembleCarmell Jones QuartetGary Peacock QuartetFrançois Carrier Ensemble + +255137Gil EvansIan Ernest Gilmore Evans (born Green)Born May 13, 1912, Toronto, Canada, died March 20, 1988, Cuernavaca, Mexico + +Grammy Award winning Canadian jazz pianist, arranger, composer and bandleader. He is widely recognized as one of the greatest orchestrators in jazz, playing an important role in the development of cool jazz, modal jazz, free jazz, and jazz fusion. He is best known for his acclaimed collaborations with [a=Miles Davis]. + +With his second wife [a=Anita Evans] became parents of [a=Noah Evans] and [a=Miles Evans].Needs Votehttps://www.gilevans.com/https://www.facebook.com/GilEvansOfficial/https://www.facebook.com/gilevansmusic/https://x.com/gilevans100https://soundcloud.com/gil-evans-officialhttp://gilevans.free.fr/https://en.wikipedia.org/wiki/Gil_Evanshttps://www.musicianguide.com/biographies/1608000592/Gil-Evans.htmlhttps://www.famousbirthdays.com/people/gil-evans.htmlhttps://www.grammy.com/grammys/artists/gil-evans/11465https://www.imdb.com/name/nm0262789/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103501/Evans_GilEvansEvansoidEwansG EvansG. EvansG. EvanssG.EvansGil EavnsGil Evans 21 Piece OrchestraGill EvansJill EvansГ. ЭвансГ.ЭвансГил Эвансギル・エヴァンスGil Evans And His OrchestraSkinnay Ennis And His OrchestraThe Monday Night OrchestraMiles Davis + 19Gil Evans & TenGil Evans Big Band + +255151Lou HackneyAmerican jazz bassistNeeds VoteL. HackneyLewis HackneyLouis HackneyDizzy Gillespie And His OrchestraWade Legge TrioDizzy Gillespie And His Operatic Strings + +255152Bill GrahamWilliam Henry GrahamAmerican jazz saxophonist (alto and baritone), born September 8, 1918, Kansas City, Missouri, and died December 29, 1975. +He worked with, among others, Count Basie, Lucky Millinder, Herbie Fields, Erskine Hawkins and Dizzy Gillespie as a baritone saxophonist. He also had his own band and played on numerous R&B recordings, including those of Wynonie Harris, Joe Williams, and Little Willie John. In the 1960s he quit active touring and became a teacher in the New York City Public Schools system. +Needs Votehttp://en.wikipedia.org/wiki/Bill_Graham_%28musician%29http://www.allmusic.com/artist/bill-graham-mn0001882444http://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=12486995&affiliation=BMI&keyid=135467&keyname=GRAHAM+BILLB. GrahamB.GrahamBIlly GrahamBili GrahamBill GrahmanBilly GrahamBily GrahamG. GrahamGrahamW. GrahamWilliam GrahamWilliam H. GrahamCount Basie OrchestraDuke Ellington And His OrchestraDizzy Gillespie SextetArt Blakey's Big BandBilly Graham & His Orchestra + +255156Wade LeggeWade LeggeAmerican jazz pianist and bassist +Born February 4, 1934 - Huntington, West Virginia, died August 15, 1963 - Buffalo, New YorkNeeds VoteA1 B1 B2LeggeW-LeggeW. LeggeWade - LeggeWade LeggerWade LeggyWaje LeggeThe Charles Mingus QuintetLionel Hampton And His OrchestraSonny Rollins QuartetMilt Jackson QuintetSonny Rollins QuintetJimmy Cleveland And His All StarsWade Legge TrioDizzy Gillespie And His Operatic StringsPete Brown SextetteThe Lenny Hambro QuintetGigi Gryce And The Jazz Lab QuintetThe Charles Mingus GroupJoe Roland Quartet + +255160Joe CarrollJoseph Paul Carroll.American jazz singer. +Nickname : "Bebop". + + +Born : November 25, 1919 in Philadelphia, Pennsylvania. +Died : February 01, 1981 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Joe_Carroll_(singer)CarolCarollCarrolCarrollJ. CarrollJ.CarrollJo CarrollJoe Bebop CarrollJoe CarolJoe CaroleJoe CarollJoe CarrolJoe Carroll & His QuartetJoseph CarrollJoseph Paul CarrollДжо КэрроллDizzy Gillespie And His OrchestraWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJoe Carroll Showcase + +255161Al JonesAlbert Francis JonesAmerican jazz drummer, born December 18, 1930 in Philadelphia, PA, died c. 1976. +Jones played with [a=Dizzy Gillespie] (1951-1953), [a=Milt Jackson], [a=Miles Davis], [a=Arnett Cobb] (1956), [a=Billie Holiday] and others. Settled in Belgium in 1962.Needs Votehttps://en.wikipedia.org/wiki/Al_Jones_(drummer)#:~:text=Albert%20Francis%20Jones%20(December%2018,Milt%20Jackson%2C%20and%20Wade%20Legge.https://adp.library.ucsb.edu/names/323960A. JonesAl (Junior) JonesAlbert JonesDizzy Gillespie SextetWade Legge TrioDizzy Gillespie And His Operatic StringsFreddy Sunder Quintet + +255164Giancarlo Bigazzi[b]Don't confuse with [a=Arlo Bigazzi][/b]. + +Italian composer, songwriter and producer, born 5 September 1940 in Florence, Italy and died 19 January 2012 in Viareggio, Italy. He was married to [a=Gianna Albini]. + +Leader of the band [a=Squallor]. +Correcthttp://it.wikipedia.org/wiki/Giancarlo_BigazziB. GiancarioB. GiancarloBagazziBgazziBiagazziBiazziBigalliBigarriBigassiBigattiBigatziBigaziBigazzaBigazziBigazzi GBigazzi G.Bigazzi GiancarloBigazzi*Bigazzi, G.Bigazzi, G.C.Bigazzi, GiancarloBigazzi,GBigazzoBigazzyBiggaziBiggazziBigliazziBigozziBiguazetBigzaaiBiigazziBogezziBrigazziBugazziC. BigazziC. G. BigazziC.BigazziC.G. BiszariCripezziD. BigazziD. C. BigazziFishmanG .BigazziG BigazziG. BagazziG. BegazziG. BgazziG. Big AzziG. BigassiG. BigaziG. BigazzG. BigazziG. BigazzyG. BiggazziG. BigozziG. BogazziG. BonifaziG. C, BigazziG. C. BigazziG. C0 BigazziG. Carlo BigazziG. Carlo-BigazziG. RigazziG.B. BigazziG.BigazziG.C BigazziG.C. BIgazziG.C. BigazziG.C.BigazziG; BigazziGaetano BigazziGc BigazziGian BigazziGian Carlo BigazziGian-Carlo BigazziGianCarlo BigazziGiancario BigazziGiancario/BigazziGiancarloGiancarlo - BigazziGiancarlo / BigazziGiancarlo BrigazziGiancarlo PigazziGiancarlo/BigazziGiancarlos BigazziGianfranco BigazziGianni BigazziJ. BigazziK. +T. G. BigazziKatamarRigazziSigarriSigazziVigazzig. bigazziБагацциБигазеБигациБигацциДж. БигацциДжанкарло БигацциKatamarSquallor + +255183Leon RussellClaude Russell BridgesAmerican musician and songwriter, who recorded as a session musician, sideman, and maintained a solo career in music. Also released 2 albums with his then-wife as [a631643]. +He was born on April 2nd 1942, Lawton, Oklahoma, USA, died on November 13th 2016, Nashville, Tennessee, USA. +Inducted into Songwriters Hall of Fame in 2011. +Inducted into Rock & Roll Hall of Fame in 2011.Needs Votehttps://www.leonrussell.com/https://adp.library.ucsb.edu/names/341566https://leonrussell.bandcamp.com/https://www.facebook.com/LeonRussellMusichttps://www.rockhall.com/inductees/leon-russellhttps://www.songhall.org/profile/leon_russellhttps://en.wikipedia.org/wiki/Leon_RussellC. RusselClaptonDadL RussellL.L. ReussellL. RusselL. RussellL.RusselL.RussellL: RussellLeonLeon R. RussellLeon RoussellLeon Russe RussellLeon RusselLeon Russell & FriendsLeoniLeslieLeslie RussellLeón RusselLeón RussellLon RusselLon RussellLoon RussellLéon RusselLéon RussellR.RusselRusellRusselRussellRussell Lליאון ראסלリオン・ラッセルレオン・ラッセルRussell BridgesHank WilsonPhil 'Harmonious' PlonkThe Master Of Space And TimeClaude BridgesLew Russell (2)The Mad Dogs (7) + +255263Glen WilsonAmerican harpsichordist, pianist and conductor, born March 29, 1952 in Greenville, Illinois, USA. Glen Wilson studied at the Juilliard School in New York, and later was awarded the Soloist's Diploma from the Amsterdam Conservatory where he studied with Gustav Leonhardt. Since winning in three categories of the Bruges International Harpsichord Competition, Mr. Wilson has established his reputation as a harpsichordist and forte pianist in solo recitals in many countries throughout the world.Needs Votehttp://www.bach-cantatas.com/Bio/Wilson-Glen.htmQuadro HotteterreRoyal Concertgebouw Orchestra Brass Ensemble + +255280Hiram BullockHiram Law BullockAmerican jazz-funk/fusion guitarist and bandleader +Born 11 September 1955 in Osaka, Japan, died 25 July 2008 in Manhattan, New York, USA + +Returned to Baltimore, Maryland with his family at the age of two. He studied at the University of Miami music college, meeting guitarist [a=Pat Metheny], and bass players [a=Jaco Pastorius] and [a=Will Lee]. His work can be heard on [a=Steely Dan]’s “Gaucho” (1980), [a=Paul Simon]’s “One Trick Pony” (1980), [a=Sting]’s “…Nothing Like the Sun” (1987, soloist on the cover version of Jimi Hendrix’s “Little Wing”) and [a=Billy Joel]’s “The Stranger” (1977). He also worked for [a=Harry Belafonte], [a=Marcus Miller], [a=Carla Bley], [a=Miles Davis], [a=Ruben Rada] (on the album “Montevideo”) and [a=Gil Evans]. He recorded three albums with [a=The 24th. Street Band] between 1979–1981. He also recorded with [a=Michael Shrieve] and [a=Klaus Schulze]. In 2007 he was diagnosed with throat cancer.Needs Votehttps://web.archive.org/web/20230416235620/http://www.hirambullock.com/https://en.wikipedia.org/wiki/Hiram_BullockBullockH. BullockH.BullockHaram BullockHarem BullockHira BullockHiramHiram BidlockHiram BullickHiram BullochHiram L. BullockHiram Law BullockHiriam BullockHirman BullockHirum BullockHyram Bullockהיירם בולוקハイラム・ブロックGil Evans And His OrchestraThe World's Most Dangerous BandDavid Sanborn BandThe Monday Night OrchestraThe 24th. Street BandHiram Bullock BandSoulbopbandHiram Bullock Trio + +255312Sammy CahnSamuel CohenAmerican songwriter (born 18 June 1913 in New York City, New York, USA - died 15 January 1993 in Los Angeles, California, USA). +Inducted into Songwriters Hall of Fame in 1972. + +[b] • When credited with [a=Jule Styne], please use the joint credit: [a=Jule Styne And Sammy Cahn] +• When credited with [a=Jimmy Van Heusen], please use the joint credit: [a=Sammy Cahn & Jimmy Van Heusen] [/b]Needs Votehttps://en.wikipedia.org/wiki/Sammy_Cahnhttps://www.imdb.com/name/nm0005991/https://www.songhall.org/profile/Sammy_Cahnhttps://www.britannica.com/biography/Sammy-Cahnhttps://adp.library.ucsb.edu/names/103731B. CahnC. CohnC. SammyCaboCahCahanCahmCahnCahn SCahn SammyCahn, SammyCahn,SCahnyCalinCalmCamCammCannCarfurtCarlinCarnCarrChanChan ChaplinChan SammyCoahnCohanCohenCohnConnDammy CahnF. S. CahnG. CahnG. KahnHarry CahnJ. CahnJonny CahnKahnKhanP. CahnR. CahnS CahnS ChanS, CahnS.S. CahaS. CahanS. CahmS. CahnS. Cahn - J. StyneS. CainS. CalinS. CaneS. ChanS. CohnS. ColinS. CuhnS. GahnS. JahnS. KahnS. KhanS. cahnS.CahnSam CahnSam ConnSam KahnSami KhanSammySammy CaanSammy CahanSammy CahmSammy CahnsSammy CainSammy CanSammy CannSammy CashSammy ChanSammy CohenSammy CohnSammy ColinSammy KahnSammy KhanSammy OahnSamuel CahnSamuel Cohen CahnSamy CahmSamy CahnSandy CahnSmmy CahnSummy CahnSweeneyT. CahnVan HeusenaAhnС. КанС.КанЭ. Канס. קאהןSammy Cahn & Jimmy Van HeusenJule Styne And Sammy CahnCahn-Chaplin Orchestra + +255313Jimmy Van HeusenEdward Chester BabcockAmerican songwriter + +[b] >> Use [a1077671] When Listed With [a301993] << [/b] +[b] >> Use [a932826] When Listed With [a255312] << [/b] + +Born January 26,1913 in Syracuse, New York, USA. +Died February 7, 1990 in Rancho Mirage, California, USA. +Married to singer [a3217277] (1969-1990) (his death). +He is best known for his work with [a=Frank Sinatra] who recorded 84 of his songs, and also [a=Bing Crosby] for whom he wrote the music for 6 of the 7 Crosby / Hope "Road to" films + +Mainly worked with the lyricists [a=Sammy Cahn] and [a=Johnny Burke] and was elected to the Songwriters Hall of Fame in 1971Needs Votehttps://www.jimmyvanheusen.com/https://www.songhall.org/profile/Jimmy_Van_Heusenhttps://en.wikipedia.org/wiki/Jimmy_Van_Heusenhttps://www.imdb.com/name/nm0006329/https://adp.library.ucsb.edu/names/105592B. DavieB. Van HeusenCan HeusenD. HeusenH. Van HeusenHan HeusenHensenHeusenHeusen,JHeussenHudsonHuesanI. Van HeusenI. v. HeussenJ Van HeusenJ Von HeusenJ van HeusenJ. Van HeusenJ. v. HeusenJ. HeusenJ. V. HensenJ. V. HeusenJ. V. HeussenJ. Vam HeusenJ. VanJ. Van HansenJ. Van HauseJ. Van HausenJ. Van HensenJ. Van HesuenJ. Van HeusenJ. Van HeusonJ. Van HeussenJ. Van HeuzenJ. Van HousenJ. Van HuesenJ. Van HusenJ. Van-HeusenJ. Van. HausenJ. VanHeusenJ. VanheusenJ. Von HeusenJ. v. HensenJ. v. HeusdenJ. v. HeusenJ. v. HeussenJ. van HauseJ. van HensenJ. van HeusenJ. van HeuvenJ.HeusenJ.V. HansenJ.V. HeusenJ.V. HousonJ.V. HuesenJ.V.HensenJ.V.HeusenJ.Van HeusenJ.Van HeussenJ.VanHeusenJ.v. HeusenJ.v.HeusenJames V. HeusenJames Van HausenJames Van HesusenJames Van HeusenJames Van HeysonJames Van HousenJames Van HuesenJames Van heusenJames Van-HeusenJames VanheusenJames Von HeusenJames van HensenJames van HeusenJan HeusenJay Van HeusenJerome Van HeusenJim Van HeusenJim Van HuesenJim VanHeusenJim van HeusenJimmey Van HuesenJimmie Van HeusenJimmie van HeusenJimmiy Van HeusenJimmy HeusenJimmy V. HeusenJimmy V. HewsenJimmy Vah HeusenJimmy VamHeusinJimmy Van HausenJimmy Van HeausenJimmy Van HensenJimmy Van HeusanJimmy Van HeusdenJimmy Van Heusen, B. Edward Chester BabcockJimmy Van HeussenJimmy Van HewsenJimmy Van HousenJimmy Van HueseJimmy Van HuesenJimmy Van HusenJimmy Van-HeusenJimmy VanHeusenJimmy VanHeusinJimmy VanHusenJimmy VanheusenJimmy Von HeusenJimmy v. HeusenJimmy van HeusdenJimmy van HeusenJimmy van HuesenJimmy van HusenJimmyVanHeusenK. AdamsKurt AdamsL. Van HeusenLimmy Van HeusenS.V. HeusenSammy Cahn-James Van HeusenTony van HeusenV. HensenV. HeureuV. HeusenV. HeussenV. HuesanV. HusenV. HäussenVab HeusenVanVan HusenVan - HeusenVan EusenVan EusnVan HausenVan HauserVan HausonVan HeausenVan HendenVan HensenVan HesuenVan HesusenVan HeuseVan HeusenVan Heusen JVan Heusen, JimmyVan Heusen-DelanoeVan Heusen-OsserVan HeuserVan HeusinVan HeusonVan HeussenVan HoisenVan HousenVan HuesenVan HusenVan HäusenVan-HeusenVan-HeusonVanHeusenVanHuesenVanheusenVanhusenVary HeusenVon HeusenVonHeusenY. Van Hensenj. Van Heusenn Heusenv. Heusenvan Heusenvan HuisenvanHeusenВ. ХеусенДж. Ван ХойзенДж. Ван ХьюзенДж. ван ХеусенДжеймс Вэнхьюзенジミー・ヴァン・ヒューゼンArthur WilliamsKurt AdamsAda KurtzEdward Chester BabcockSammy Cahn & Jimmy Van HeusenJimmy Van Heusen And Johnny Burke + +255468George MargeGeorge MargeWoodwind player +Born June 19th, 1933 in Albany NY, died August 22nd, 1985 in River Bend, NJ + +George was recognized by the New York chapter of the National Academy of Recording Arts and Sciences as an MVP as follows: +1982, Flute and Oboe, 1981 Oboe; 1980 Flute and Oboe.Needs VoteG. MargeGeorgo MargeMargeMarge GeorgeGil Evans And His OrchestraSoul FlutesLalo Schifrin & OrchestraThe Rod Levitt Orchestra + +255471Milt GraysonMilton GraysonAmerican jazz vocalist (baritone) and actor. Born in Brooklyn (NYC) in 1931; died on 3 September 2005.Needs VoteMilt GreysonMilton GraysonDuke Ellington And His OrchestraBilly Ward And His Dominoes + +255556Roy HaynesRoy Owen HaynesAmerican jazz drummer and leader +Born March 13, 1925, in Roxbury, MA +Died November 12, 2024, Long Island, NY +Haynes began his full time professional career in 1945. From 1947 to 1949, he worked with saxophonist [a258433], and from 1949 to 1952 was a member of saxophonist [a75617]'s quintet. He also recorded at the time with pianist [a29992]and saxophonists [a272019], and [a30486]. From 1953 to 1958, he toured with vocalist [a8284]. Haynes went on to work with more experimental musicians, such as saxophonists [a97545] (deputizing for [a135885]), [a145272], and [a122384], as well as pianists [a61584] and [a37731]. + +Haynes recorded or performed with [a145256], [a23755], [a37733], [a64694], [a256558], [a20185], [a251873], [a253485], and [a44565], among many others. He also led his own groups from the mid-1950s, later ensembles performing under the name Hip Ensemble. Later recordings as a leader include "Fountain of Youth" (2004) and "Whereas" (2007), both of which were nominated for a Grammy Award. Well into late 2008, Haynes was still continuing to perform internationally and on December 22, 2010, he was named a recipient of a Grammy Lifetime Achievement Award by the National Academy of Recording Arts and Sciences. Haynes received the award at the Special Merit Awards Ceremony & Nominees Reception of the 53rd Annual Grammy Awards on February 12, 2011. + +His son [a726645] is a drummer with [a2219395], another son [a70870] is a cornetist, and his grandson [a445470] and nephew Christopher Haynes are both drummers.Needs Votehttps://www.theguardian.com/music/2024/nov/13/roy-haynes-jazz-drummer-dies-agedhttps://www.nytimes.com/2024/11/12/arts/music/roy-haynes-dead.htmlhttp://www.myspace.com/royhayneshttps://musicbrainz.org/artist/2c090b57-5e9d-49c5-9b71-6f0a331cc1cahttps://www.drummerworld.com/drummers/Roy_Haynes.htmlhttps://www.smithsonianmag.com/arts-culture/jazzed-about-roy-haynes-95383611/https://www.bluenote.com/artist/roy-haynes/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/134583ccb5bbc084fbf7bf59fcff73dbc8487/biographyhttps://www.jazzdisco.org/roy-haynes/https://adp.library.ucsb.edu/names/320530https://www.imdb.com/name/nm0371542/https://en.wikipedia.org/wiki/Roy_HaynesHaynesJoe HanesR. HaynesR.HaynesRay HaynesRey HaynesRon HaymesRon HaynesRoy H.aynesRoy HainesRoy HanesRoy HaytnersRoy HynesРой Хейнсロイ・ヘインズJoe HanesThe John Coltrane QuartetThe Red Garland TrioThe Miles Davis SextetThe Thelonious Monk QuartetThe Charlie Parker All-StarsThe Charlie Parker QuintetCharlie Parker's JazzersMcCoy Tyner TrioTommy Flanagan TrioRay Brown TrioThe Horace Silver QuintetDizzy Gillespie QuintetCharlie Parker And His OrchestraStan Getz QuartetStan Getz QuintetSarah Vaughan And Her TrioThelonious Monk TrioThe Lester Young SextetLester Young And His BandBud Powell's ModernistsJohn Handy QuintetSonny Rollins QuartetBrew Moore SextetRoy Haynes QuartetThe Kenny Burrell TrioHerbie Steward QuintetThe Kai Winding SextetBrew Moore SeptetCharlie Parker With StringsMiles Davis And His BandGary Burton QuartetNat Adderley QuintetThe Roland Kirk QuartetDavid Murray QuartetEric Dolphy QuintetThe Gary McFarland OrchestraThe Michel Petrucciani TrioRoy Haynes Hip EnsembleThe Roy Haynes TrioSonny Rollins TrioJohn Coltrane TrioRed Rodney QuintetThe Newport All StarsAl Haig TrioThe Nick Brignola SextetBabs Gonzales And His OrchestraDuke Jordan TrioAl Haig QuartetThe Oliver Nelson SextetDuke Jordan QuartetDizzy Reece SextetMartial Solal TrioJimmy Jones TrioRoy Haynes QuintetRoy Haynes SextetThe Claude Williamson TrioBuddy Banks Et Son QuartetMilt Jackson SeptetRoy Haynes GroupDizzy Reece QuintetRay Brown QuintetBrew Moore All StarsRemembering Bud Powell BandNow He Sings, Now He Sobs TrioRoy Haynes And The Fountain Of Youth Band + +255559Arnold RossArnold Rosenberg.American jazz pianist, organist and arranger; born January 29, 1921 in Boston, Massachusetts, died June 05, 2000 in Culver City, California + +A professional musician by the age of 16, Arnold worked with Frank Dailey (1938-'39), Jack Jenney (1939), Vaughan Monroe (1940-1942), with Glenn Miller ("Miller's Army Air Force Band"), Harry James, Charlie Parker, Lena Horne, Frank Sinatra, Bob Crosby, Spike Jones, Howard McGhee, Dizzy Gillespie, Harry "Sweets" Edison, Joe Pass, Barney Kessel, Ella Fitzgerald, Benny Carter and many others. +Needs Votehttps://en.wikipedia.org/wiki/Arnold_Ross_(musician)https://adp.library.ucsb.edu/names/105061A. RossArnold LossArnold Ross QuartetRossHarry James And His OrchestraGene Norman's "Just Jazz"Helen Humes And Her All-StarsRed Norvo And His OrchestraGeorgie Auld And His OrchestraHarry James & His Music MakersBob Keene OrchestraDave Pell OctetLou Bring And His OrchestraDave Cavanaugh's MusicThe Harry Edison QuartetJuan Tizol & His OrchestraBarney Kessel QuintetStan Hasselgard And His All Star SixHeinie Beau And His Hollywood Jazz QuartetRed Callender SextetCharles Ventura QuartetDizzy Gillespie And His Operatic StringsThe Sunset All StarsArnold Ross QuartetCallender-Ross DuetArnold Ross QuintetArnold Ross TrioBuddy Childers QuartetRed Norvo's NineArnold Ross SextetWillie Smith And His OrchestraBabe Russin QuartetWillie Smith And His FriendsThe Angels Of JumpWillie Smith Sextet + +255560Nat PeckNathan PeckAmerican jazz trombonist. Played with Glenn Miller, Don Redman, Coleman Hawkins, James Moody, Roy Eldridge, Don Byas, Kenny Clarke, Dizzy Gillespie, Michel Legrand, André Hodeir, Duke Ellington, Benny Goodman and others. Later in his career he became a musician contractor for the London Studio Orchestra + +Born January 13, 1925 in New York City, New York, died October 24, 2015 in London, EnglandNeeds Votehttps://en.wikipedia.org/wiki/Nat_PeckA1 B1 B2N. PackN. PeckNat PackNat PechNat Peck Trombone Et Ses Too TooNat Peck u. s. "Too-Too"Net PeckPat PeckPeckPfc Nat PeckClarke-Boland Big BandThe Jack Nathan OrchestraFrancy Boland And OrchestraJames Moody QuintetKenny Clarke's SextetLes Reed And His OrchestraLe Jazz Groupe De ParisAimé Barelli Et Son OrchestreThe Kingsway Symphony OrchestraThe Judd Proctor SextetDaniele Patucchi OrchestraHenri Renaud Et Son OrchestreHelmut Brandt OrchestraThe London Jazz OrchestraMike Batt Orchestra"Fats" Sadi's ComboNDR-Jazz-Workshop-BandRaymond Fol Et Son OrchestrePeter Herbolzheimer All Star Big BandJames Moody's BoptetHubert Fol & His Be-Bop MinstrelsJazz Workshop, Ruhr Festival 1962Jack Dieval And His QuartetNat Peck Et Son Orchestre + +255562Bill ClarkWilliam E. ClarkJazz drummer William E. "Bill" Clark worked consistently between the 1940's and 1960's. He was a regular part of Mary Lou Williams' trio and worked with bandleaders such as Eddie Harris and Les McCann in the '60s and '70s. +Father of [a=Robin Clark (2)]. + +Born : July 31, 1925 in Jonesboro, Arkansas. +Died : July 30, 1986 in Atlanta, Georgia. +Needs Votehttps://en.wikipedia.org/wiki/Bill_Clark_(musician)#:~:text=William%20E.%20%22Bill%22%20Clark,Mundell%20Lowe%2C%20and%20George%20Duvivier.https://adp.library.ucsb.edu/names/372272B. ClarkBill ClarkeBilly ClarkBuddy ClarkeClarkW. ClarkWilliam ClarkWilliam Earl ClarkThe George Shearing QuintetDizzy Gillespie And His Operatic StringsRolf Kühn QuartettDon Byas Et Ses Rythmes + +255563Don ByasCarlos Wesley ByasAmerican jazz tenor saxophonist +Born October 21, 1912, Muskogee, Oklahoma, USA, died August. 24, 1972, Amsterdam, Netherlands + +From a musical family, he succeeded [a258433] in the orchestra of [a145262] in 1941 and played with bop musicians in small groups, although he considered himself a swing musician. For the last quarter century of his life, Byas was based in Europe initially settling in Paris before moving to the Netherlands. He died from lung cancer.Needs Votehttps://en.wikipedia.org/wiki/Don_Byashttp://www.jazzarcheology.com/artists/sedition_tenorsax_1940_1944.pdf, p.8https://www.britannica.com/biography/Don-Byashttps://www.allmusic.com/artist/don-byas-mn0000172350https://www.mosaicrecords.com/product/classic-don-byas-sessions/https://bretprimack.substack.com/p/don-byas-forgotten-legendhttps://www.jazzmusicarchives.com/artist/don-byas/?ac=don%20byas"The Don"ByasCarlos "Don" ByasCarlos Wesley 'Don' ByasD. ByasD.ByesDon "Carlos" ByasDon BaisDon BaysDon By AsDon Byas "The Big Sound"Don Byas And His Tenor SaxDon Byas Et Leur OrchestreDon Byas Et Son Saxo TenorDon Byas Et Son Saxo TénorDon CarlosTobiasWesley Carlos "Don" ByasCount Basie OrchestraThe George Gruntz Concert Jazz BandDizzy Gillespie And His OrchestraDuke Ellington And His OrchestraCozy Cole All StarsBillie Holiday And Her OrchestraDizzy Gillespie SeptetDizzy Gillespie QuintetAndy Kirk And His Clouds Of JoyCount Basie, His Instrumentalists And RhythmDon Byas QuartetClyde Hart All StarsPete Johnson's All-StarsSlam Stewart QuartetEddie Heywood And His OrchestraDon Redman And His OrchestraHot Lips Page And His OrchestraDon Byas And His OrchestraCozy Cole OrchestraDon Byas QuintetThe Don Byas SevenTeddy Wilson OctetThe V-Disc All StarsJohnny Hodges And His OrchestraPete Johnson's BandAlbert Ammons And His Rhythm KingsMary Lou Williams QuartetColeman Hawkins And His Sax EnsembleTyree Glenn & His OrchestraDon Byas All StarsDon Byas QuintetteDon Byas Ree-BoppersHot Lips Page & His Hot SevenSaratoga Jazz HoundsDon Byas' All Star QuintetDon Byas Big FourThe Don Byas - Slam Stewart DuoDizzy Gillespie All StarsEsquire All American Award WinnersTrummy Young All StarsTimme Rosenkrantz And His Barrelhouse BaronsCount Basie And His All-American Rhythm SectionTenor Conclave (2)Little Sam & OrchestraCyril Haynes SextetHot Lips Page And His BandOscar Pettiford And His 18 All StarsThe V-Disc JumpersJames Moody - Don Byas QuartetVanderbilt All StarsMary Lou Williams And Her SixDon Byas's Swing ShiftersBuck Clayton SextetNelson Williams' All StarsDon Byas Et Ses RythmesBill Coleman/Don Byas QuintetColeman Hawkins & FriendsJam Session (At Minton's - May 8, 1947)Jam Session (12)All Star Rhythm SectionDon Byas All Star Quartet + +255564Raymond FolFrench pianist, arranger, conductor, born 9 April 1928 in Paris; died 1 May 1979 in Paris, France. +Brother of [a=Hubert Fol].Needs Votehttps://adp.library.ucsb.edu/names/315715FolR. FolRaimond FolRay FolRaymond FolpChet Baker QuartetRoy Eldridge And His OrchestraThe Chet Baker QuintetClaude Luter Et Son OrchestreDjango Reinhardt Et Son QuintetteJohnny Hodges And His OrchestraL'Orchestre Du TabouL'Orchestre D'Hubert FolMaurice Meunier QuintetGuy Lafitte Et Son OrchestreRaymond Fol Big BandMoustache Jazz SevenRaymond Fol Et Son OrchestreJames Moody's BoptetHubert Rostaing Et Sa Formation JazzRené Franc Et Les BootleggersHubert Fol & His Be-Bop MinstrelsErnie Royal And His All StarsErnie Royal & His PrincesPaul Gonsalves - Clark Terry QuintetGuy Lafitte Et Son QuartetteGuy Lafitte Jazz ComboJames Moody With StringsMaurice Meunier And His OrchestraStéphane Grappelly Et Son Quartette + +255646The Oscar Peterson TrioNeeds VoteDas Oscar Peterson TrioDas Oscar-Peterson-TrioEl Trío De Oscar Peterson TrioLe Trio Oscar PetersonOscar PetersonOscar Peterson - The TrioOscar Peterson And His TrioOscar Peterson Et Son TrioOscar Peterson Plays Pretty (Trio)Oscar Peterson TrioOscar Peterson Trio (With Ray Brown And Ed Thigpen)Oscar Peterson Trio And FriendsOscar Peterson Trio And OrchestraOscar Peterson Trio Plus OneOscar Peterson Trio With Ray Brown & Ed ThigpenOscar Peterson's TrioOscar Peterson's Trio PlusOscar Peterson, PianoOscar Peterson-TrioOskar Peterson TrioThe Fabulous Oscar Peterson TrioThe Legendary Oscar Peterson TrioThe Oscar Peterson Trio & OrchestraThe TrioТрио О. ПитерсонаТрио Оскара ПетерсонаТрио Оскара Питерсонаオスカーピーターソントリオオスカー・ピーターソン・トリオオスカー・ピーターソン三重奏団The John Bolger TrioJoe PassJerry DodgionRay BrownBarney KesselOscar PetersonEd ThigpenHerb EllisSam JonesLouis HayesGeorge MrazBobby DurhamNiels-Henning Ørsted PedersenTerry ClarkeRoland VerdonFranck GariepyRuss DufortHerbert BrownAustin Roberts (2)Gene GammageRay Price (3)Albert King (2)Mark "Wilkie" WilkinsonBen Johnson (15) + +255649Glen GrayGlen Gray KnoblaughAmerican jazz saxophonist and leader of the [a311060]. +Born June 7, 1900, Roanoke, Illinois, USA. +Died August 23, 1963 in Plymouth, Massachusetts, USA. +Gray was nicknamed "Spike". Gray attended the American Conservatory of Music in 1921 but left during his first year to go to Peoria, Illinois, to play with George Haschert's orchestra.Needs Votehttps://en.wikipedia.org/wiki/Glen_Grayhttps://www.imdb.com/name/nm0336663/https://web.archive.org/web/20210812015134/https://www.swingmusic.net/Gray_Glen.htmlhttps://adp.library.ucsb.edu/names/104161C. GreyG.G.Glei GrayGlen Gray, Adaptations by Billy MayGlen GreyGlenn GrayGrayGreyCasa Loma OrchestraGlen Gray And His OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +255650Kenny SargentLaurel Kenneth SargentPopular American jazz saxophonist (alto, tenor and baritone), clarinetist, reedist and singer (born 1905 - died December 20, 1969). +Kenny played with Glen Gray, Mildred Bailey, Hoagy Carmichael, Pee Wee Hunt, Louis Armstrong, Frankie Carle and others. + + +Needs VoteK. SargentKen SargentKenneth SargentKenny SargeantKenny Sargent and EnsembleCasa Loma OrchestraGlen Gray & The Casa Loma Orchestra + +255675Alexis HartAlexis Hill née Alexis Aura HartAustralian vocalist married to DJ/producer Steve Hill, responsible for labels such as Masif, VWR and S-Trax.Needs Votehttp://web.archive.org/web/20080509123057/http://www.amandaeaston.com/Poptarts/tour.htmhttps://www.facebook.com/alexis.hill.395891A. HartAlexis HeartHart + +255678D10Darren Jones + +Darren Jones , Better known as D10 has been active as a Producer and a DJ for since 2003. Darren also goes under the aliases Deton-8, D&G, Mercurial Virus, DJ and Rendor Sejon. + +D10 shot to fame with his remix on S-Trax (Masif Organisation) of Neon Lights - Not Over Yet that was played at Dance Valley, Godskitchen, Gatecrasher and every other major event across the world. The track was played out by DJ Scot Project, DJ Wag, DERB, Yoji Biomehanika, Dave Joy, RAM, Kamui, Dave Pearce, Tommy Pulse, Alphazone, Steve Hill and many more. +Not Over Yet found its way onto many compilation albums.The follow up single Binary Harder did really well too, That was also a big hit and was played everywhere by the big names as mentioned above and found its way on to a few compilation albums including a Goodgreef compilation.Binary Harder also found its way into the radio 1 dance charts at number 44 ahead of Shapeshifters and Scissor Sisters. + +As time went on many releases came out including the Remixes and covers of Children, Silence, Join Me, Tricky Tricky, Ready Or Not and the biggest achievement was been asked to remix on Traffic Tunes and the monster track DJ Wag - Life On Mars.D10 toured Australia in 2005 and 2006 and played many gigs out there in Sydney, Perth, Melbourne, Geelong, Adelaide which has made him a hit out in AustraIia,D10 Has had good successes as a producer releasing on Masif, Traffic Tunes, Dutch Master Works, Kattiva, Joyride Music and more. + +His label Viper Traxx has come up with successful D10 Tracks and remixes.Bionic was reviewed on Harder Faster and in magazines such as IDJ and DJ.Evil, Unleashed was played on Radio 1. + +D10 has found a new lease of life in hard trance again and has been making waves in the scene again with a big remix of Hennes & Cold – First Step and a collaboration with Pete Delete on Nocturnal Knights. +Needs Votehttps://soundcloud.com/viper-traxxhttps://soundcloud.com/d10-free-musichttps://myspace.com/darrenjonesd10https://www.facebook.com/D10Officialhttps://www.youtube.com/user/djd102006https://twitter.com/DJ_D10http://web.archive.org/web/20050326212232/http://www.fevah.us:80/mercurialvirus.htmhttps://www.discogs.com/user/djd10https://www.instagram.com/djd10official/http://www.soundclick.com/bands/default.cfm?bandID=37525https://www.twitch.tv/mercurialvirusD 1 0D 10D-10Mercurial VirusDarren JonesDeton-8D&G (6)Fusion ReaktorRendar Sejon + +255709Christopher Warren-GreenBritish violinist and conductor. Born 30 July 1955, Gloucestershire, UK. +Concertmaster of the [a=Philharmonia Orchestra]. Music Director & Principal Conductor of [a462220] since 1988. Chief Conductor of [a2220135] (1998-2001) and [a6264061] (2001-2005). He was appointed Prinicipal Conductor of the [a=Camerata Orchestra] of the [l411929] in October 2004. 11th Music Director of [a=The Charlotte Symphony Orchestra] since 2009. +Married to [a=Rosemary Furniss]. Brother of [a=Nigel Warren-Green].Needs Votehttps://www.linkedin.com/in/christopher-warren-green-fram-59ba26102/https://en.wikipedia.org/wiki/Christopher_Warren-Greenhttps://web.archive.org/web/20100528163815/http://www.lco.co.uk/RVEb6cb19409b30457c91701ea14c2bac98,,.aspxhttps://www.charlottesymphony.org/about/conductors/https://www.hkphil.org/artist/christopher-warren-greenhttps://www.harrisonparrott.com/artists/christopher-warren-greenhttps://www.imdb.com/name/nm0913075/C. W. GreenC. Warren-GreenC.W. GreenCharles Warren GreenChris Warren GreenChris Warren-GreenChristoffer Warren-GreenChristopher Warren - GreenChristopher Warren GreenChristopher Warren-GreeneWarren-Greenクリストファー・ウォーレン=グリーンThe Martyn Ford OrchestraPhilharmonia OrchestraThe London Chamber OrchestraThe Peace Together Chamber OrchestraCamerata OrchestraJönköpings SinfoniettaJohn Dankworth Paul Hart OctetThe Charlotte Symphony OrchestraNordiska Kammarorkestern + +255752Victor FeldmanVictor Stanley FeldmanEnglish jazz musician who played vibraphone, keyboards, drums, piano and other assorted percussion instruments.He was also a songwriter, composer and arranger of popular music. +Born April 7, 1934 in Edgware, Middlesex (now Greater London), England, UK +Died May 12, 1987, Los Angeles, California, USA. +Father of jazz drummer [a854801] and jazz bassist [a3586888] and producer/manager [a854802]. +He was considered a musical prodigy, beginning to perform professionally at the age of seven on drums, adding piano at nine and vibes at fourteen. Feldman immigrated to the United States in the mid-1950's, where he continued working in jazz and also as a session musician with pop and rock performers. +He charted with his Victor Feldman Quartet in 1962 with "A Taste of Honey", it rose to #88 on the U.S. charts. He left the jazz field for a more financially sound career in the recording studios and the world of popular music, including writing for Joni Mitchell and Steely Dan, primarily between the years 1965-85.Needs Votehttp://www.victorfeldman.com/VF_biography.htmlhttps://en.wikipedia.org/wiki/Victor_Feldmanhttps://jazzprofiles.blogspot.com/2017/07/victor-feldman-career-overview.htmlhttps://www.imdb.com/name/nm0991674/FeldmanFeldmannStanleyThe GangV FeldmanV. FeldmanV.FeldmanV.S. FeldmanVic FeldmanVic FelmanVictorVictor FeldmannVictor FelomanVictor FeltmanVictor S. FeldmanVictor SeldmanVictor Stanley Feldmanヴィクター・フェルドマンRhythm HeritageVictor Feldman's Generation BandThe Miles Davis QuintetLes Brown And His Band Of RenownThe Cannonball Adderley QuintetWoody Herman And His OrchestraShelly Manne & His MenGerald Wilson OrchestraHenry Mancini And His OrchestraThe L.A. ExpressThe Abnuceals Emuukha Electric OrchestraRonnie Scott's QuintetHoward Rumsey's Lighthouse All-StarsWoody Herman's Big New HerdLaurindo Almeida & The Bossa Nova AllstarsPepper Adams QuintetWoody Herman And The Swingin' HerdThe Tommy Vig OrchestraLeroy Vinnegar SextetBill Perkins QuintetThe Victor Feldman All-StarsMarty Paich Big BandWoody Herman BandThe Victor Feldman QuartetWoody Herman And The Fourth HerdLeroy Vinnegar QuintetJ.J. Johnson QuartetThe Buddy DeFranco SeptetteMarty Paich And His Jazz Piano QuartetThe Mariano-Dodgion SextetThe Victor Feldman TrioRonnie Ball QuartetBarney Kessel And His MenBen Tucker And His QuintetThe Ronnie Scott BoptetVictor Feldman SeptetVictor Feldman Modern Jazz QuartetBuddy DeFranco And The All-StarsJimmy Deuchar EnsembleJohnny Dankworth's Cool BritonsRalph Sharon SextetHerb Geller QuintetVictor Feldman Nine-TetStan Getz SeptetWoody Herman And The Swingin' Herd (2)Victor Feldman Quintet + +255767Oscar PettifordAmerican jazz bassist +Born September 30th, 1922, Okmulgee, Oklahoma, USA, died September 8th, 1960, Copenhagen, Denmark +Needs Votehttps://en.wikipedia.org/wiki/Oscar_Pettifordhttps://www.allmusic.com/artist/oscar-pettiford-mn0000896298/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/12506f6ada7dd96062b9075f8a500503159bf/biographyhttps://aaregistry.org/story/oscar-pettiford-jazz-bassist-born/https://www.treccani.it/enciclopedia/oscar-pettiford/https://www.okhistory.org/publications/enc/entry.php?entry=PE024https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/pettiford-oscarhttps://www.imdb.com/name/nm0678652/https://adp.library.ucsb.edu/names/104881A4, B1, B5D. PettifordO. PettifordO.PettifordOscar PetifordOscar PetitfordOscar PettiforOscar ThetfordPetifordPettifordPettiforfo. Pettifordオスカー・ペティフォードQuincy Jones And His OrchestraGil Evans And His OrchestraColeman Hawkins QuartetThe Art Blakey Percussion EnsembleThe Miles Davis SextetDizzy Gillespie And His OrchestraWoody Herman And His OrchestraDuke Ellington And His OrchestraColeman Hawkins All Star BandEsquire All StarsThe Thelonious Monk QuintetKenny Dorham OctetBilly Eckstine And His OrchestraDizzy Gillespie QuintetQuincy Jones' All Star Big BandBoyd Raeburn And His OrchestraEarl Hines SextetColeman Hawkins QuintetStan Getz QuartetColeman Hawkins And His OrchestraThe Duke's MenDeLuxe All Star BandThelonious Monk TrioThe Manhattan Jazz SeptetteColeman Hawkins Swing FourLeonard Feather All StarsThe Miles Davis QuartetMilt Jackson SextetStar EyesChiles & PettifordThe Earl Hines TrioLionel Hampton GroupLionel Hampton All StarsSonny Rollins TrioSam Most SextetColeman Hawkins All StarsSonny Greer And His RextetColeman Hawkins SeptetThe BirdlandersThe Nat Pierce OrchestraGeorge Wallington And His BandThe Earl Hines SeptetIke Quebec SwingtetTeddy Charles TrioOscar Pettiford SextetJimmy Cleveland And His All StarsMartial Solal TrioGeorge Wallington TrioPaul Quinichette SextetThe Oscar Pettiford QuartetOscar Pettiford And His Birdland BandOscar Pettiford OrchestraOscar Pettiford & His All StarsOscar Pettiford And His Jazz GroupsThe Eddie Bert SextetJulius Watkins SextetLeonard Feather's East Coast StarsThe New York Jazz QuintetDuke Ellington Alumni All StarsThe Frank Wess QuintetThe New Oscar Pettiford SextetDizzy Gillespie All StarsOscar Pettiford's QuintetMetropolitan Opera House Jam SessionNat Pierce QuintetOscar Pettiford And His ScandinaviansThe Frank Wess SextetMat Mathews QuintetLeo Parker QuartetEddie Bert QuintetThe Joe Puma TrioThe Joe Puma QuartetOscar Pettiford TrioThe Jerry Jerome QuintetteOscar Pettiford And His 18 All StarsRalph Sharon SextetWoody Herman & The Second HerdOscar Pettiford & FriendsThelonious Monk GroupOscar Pettiford Big BandDizzy Gillespie/Oscar Pettiford QuintetJoe Roland QuartetKenny Dorham NonetEsquire All-American Jazz BandBeryl Booker Trio (2) + +255800Lorenz HartLorenz Milton HartSongwriter, born 2 May 1895 in New York, New York, died 22 November 1943 in New York, New York. From 1919 up to his death he worked with [a=Richard Rodgers] on an incredible amount of musical comedies for movie and theatre, where Hart usually wrote the lyrics and Rodgers the music. Among their best known songs are [i]Blue Moon[/i], [i]My Funny Valentine[/i] and [i]The Lady Is A Tramp[/i]. Lorenz Hart was inducted in the Songwriters Hall of Fame in 1970.Needs Votehttps://rodgersandhammerstein.com/songwriter/lorenz-hart/https://www.songhall.org/profile/Lorenz_Harthttps://en.wikipedia.org/wiki/Lorenz_Harthttps://www.britannica.com/biography/Lorenz-Harthttps://www.imdb.com/name/nm0366414/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103285/Hart_LorenzAl HartArt LawrenceH. LorenzH. RorenzHant LorenzHarHartHart LorenzHart, L.HeartHortL .HartL HartL. HalrtL. HanL. HartL. HeartL.HartLarry HartLawrence HartLorens HardLorens HartLorens-HartLorents HartLorentz HartLorenzLorenz & HartLorenz - HartLorenz HardLorenz HartzLorenz HeartLorenz Milton HartLorenzo HartM. HartMr. HartPaul HartRodgers-HartЛ. ХартХартローレンツォ・ハードローレンツ・ハートRodgers & Hart + +255801Richard RodgersRichard Charles RodgersAmerican composer, also known as Dick Rodgers (28 June 1902 in New York, New York, USA - 30 December 1979 in New York, New York, USA) +Father of [a1366436], grandfather of [a1716999]. + +Considered one of America's most influential composers, as he wrote the music to many successful musical plays for screen and theatre, from 1919 to 1943 in collaboration with [a=Lorenz Hart] and from 1943 to 1960 in collaboration with [a=Oscar Hammerstein II]. Inducted into the Songwriters Hall of Fame in 1970. +** do not confuse with [a793495] **Needs Votehttps://en.wikipedia.org/wiki/Richard_Rodgershttps://www.imdb.com/name/nm0006256/https://www.ibdb.com/broadway-cast-staff/richard-rodgers-8323https://www.songhall.org/profile/Richard_Rodgershttps://www.britannica.com/biography/Richard-Rodgershttps://www.biography.com/musician/richard-rodgershttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102086/Rodgers_RichardB. RodgersB. RogersCharles RodgersDick RodgersDick RogersH. RodgersHartJimmie RogersL. RodgersMr. RodgersMr. RogersP. RodgersR RodgersR RogersR, RodgersR. RodgersR. RODGERSR. RgodgersR. RichardR. RobertsR. Rod gersR. RodaersR. RodgerR. RodgersR. RodgresR. RodžersR. RodžersasR. RogerR. RogersR. RoogersR. RoyerR. ◆RogersR. ロジャースR., RodgersR.RodgersR.RogersRT. RogersRachard RodgersRachard RogersRay RogerRi. RodgersRich RodgersRich. RodgersRichard Charles RodgersRichard HodgersRichard RodgerRichard Rodgers-Lorenz HartRichard RodgesRichard RodhersRichard RogerRichard RogersRichard/RodgersRichardRodgersRichared RodgersRidchard RodgersRičards RodžerssRodersRodgerRodgeroRodgersRodgers RichardRodgers, Hammerstein IIRodgers, RRodgers, R.Rodgers, RichardRodgers-HartRodgers/RichardRodgessRogerRogersRogers RichardRojersRojers, R.RosgersRotgersR・ロジャースR・ロジャーズS. RodgersT. RodgersT. RogersР. РоджерсРичард РоджерсРоджерсФ. Роджерсריצ'ארד רוג'רסリチャードロジャースリチャード・ロジャースロジャースロジャーズ理查德·罗杰斯R・ロジャースRodgers & HammersteinRodgers & Hart + +255804Sir Edward ElgarSir Edward William Elgar, 1st Baronet, OM, GCVOEnglish Romantic composer, born June 2, 1857 in Broadheath, England, UK and died February 23, 1934 in Worcester, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Edward_Elgarhttps://elgarsociety.org/https://www.elgarfoundation.org/ https://www.elgar.org/E ElgarE, ElgarE. ElgarE. ElgarasE. ElgerE. W. ElgarE. エルガーE.ElgarE.ElgerE.W. ElgarEdawrd ElgarEdeward ElgarEdgar ElgarEdgar William ElgarEdvard ElgarEdvardas ElgarasEdw. ElgarEdwar ElgarEdward ElgaEdward ElgarEdward Elgar (1857-1934)Edward Elgar*Edward Elgar, Bart., O.M., K.C.V.O.Edward ElgardEdward ElgerEdward W. ElgarEdward William ElgarEdward-William ElgarEdwatd ElgarElgarElgar E.Elgar EdwardElgar,Elgar, EdwardElgar, Sir EdwardElgerS.E.ElgarSir E. ElgarSir Ed. ElgarSir Edward Elgar O. M.Sir Edward Elgar O.M.Sir Edward Elgar O.M., K.C.V.O.Sir Edward Elgar, Bart., O.M., K.C.V.O.Sir Edward Elgar, Bart., O.M., K.C.VO.Sir Edward Elgar, O.M.Sir Edward Elgar, O.M., K.C.V.O.Sir Edward Elgar. O.M.Sir Edward William ElgarSr E. ElgarЕ. ЕлгарЕ.ЕлгарЭ. ЭлгарЭ. ЭльгарЭд. ЭлгарЭдвард ЭлгарЭдвард ЭльгарЭдуард ЭлгарЭдуард ЭльгарЭлгарエドワード・エルガーエドワード・エルガーエルガー艾爾加 + +255838Kay RogersEdward Abraham SnyderAmerican composer and songwriter, born February 22, 1919 in New York City, New York, USA, died March 10, 2011 in Lakeland, Florida, USA.Correcthttp://www.musicvf.com/songs.php?page=artist&artist=Kay+Rogers&tab=songaswriterchartstabD. RodgersD. RogersDrodgersJ. RogersK RogersK. RogersK. RodgersK. RogersK.RogersKayKay RodgersKay RogerKenny RogersKey RogerKey RogersR. KeysRodgersRogerRogersRoyersX. RogersEddie Snyder + +255882Paul MotianStephen Paul MotianAmerican jazz drummer and percussionist. Born March 25, 1931 in Philadelphia, Pennsylvania, died in Manhattan, NY, USA on November 22, 2011. "Motian played an important role in freeing jazz drummers from strict time-keeping duties. He first came to prominence in the late 1950s in the piano trio of [a252310], and later was a regular in pianist [a145273]'s band for about a decade (c. 1967–1976). Motian began his career as a bandleader in the early 1970s. Perhaps his two most notable groups were (1) the [a337590], a longstanding trio of guitarist [a144927] and saxophonist [a295060], and (2) [a1071063] where he worked mostly with younger musicians on interpretations of bebop standards" (Wikipedia).Needs Votehttps://en.wikipedia.org/wiki/Paul_Motianhttps://myspace.com/paulmotianhttps://www.jazzdisco.org/paul-motian/https://www.drummerworld.com/drummers/Paul_Motian.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/332778/Motian_PaulMotianP MotianP. MotianP. MotianP. MotionP.MotianPaul MortianPaul MotionPaul MotlanПол Мотянポール・モチアンKeith Jarrett TrioThe Bill Evans TrioThe Jazz Composer's OrchestraPaul Motian TrioPaul Motian BandPaul Bley TrioStan Getz QuartetTethered MoonThe Tony Scott QuartetPierre Favre EnsembleGeorge Russell & His SmalltetTim Berne SextetThe Electric Bebop BandMarilyn Crispell TrioEnrico Pieranunzi TrioOld And New DreamsSaheb Sarbib QuartetPaul Motian QuintetMichael Adkins QuartetJoe Lovano QuintetPaul Bley QuartetLiberation Music OrchestraJoe Lovano Wind EnsembleMartial Solal TrioThe Eddie Costa QuartetTony Scott QuintetPerry Robinson 4Charlie Shoemake SextetSalvatore Bonafede TrioMasabumi Kikuchi TrioEddie Costa QuintetPaul Motian Trio 2000 + TwoPaul Motian Trio 2000 + OneEnrico Rava TrioHino=Kikuchi QuintetEddie Costa TrioConsort In MotionThe Bob Belden EnsembleThe Joe Puma QuartetAnders Christensen TrioBill McHenry QuartetJakob Dinesen QuartetGonzalo Rubalcaba TrioHal Stein-Warren Fitzgerald QuintetPaul Motian QuartetKeith Jarrett Quartet + +255945Bud ShankClifford Everett Shank, Jr.American Jazz musician (alto, baritone saxophone, flute, arrangements). +Born May 27, 1926, in Dayton, Ohio +Died April 2, 2009, in Tucson, Arizona. +Attended the University of North Carolina between 1944-1946 then moved to California where he studied with trumpeter/composer [a312417] and played in the big bands of [a269594] (1947-8) and [a212786] (1950-51). Though not often noted, Shank was among the first of modern jazz artists during the early 50`s to record using the flute. + +He spent most of the '60s recording in L.A. studios before forming the L.A. Four in the '70s. Practiced jazz flute at times during this period, but reverted full-time to the alto saxophone, his main instrument for most of his career, in the mid-'80s.Needs Votehttps://en.wikipedia.org/wiki/Bud_Shankhttps://rateyourmusic.com/artist/bud-shankhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/209322/Shank_Bud"Bud" ShankB. ShankB.ShankBudBud "Barefoot and Slippery" ShankBud E. ShankBud LeggeBud Shank With StringsBud ShanksBud ShenkC. E. "Bud" ShankC. E. ShankC. E. “Bud” ShankC.D. ShankC.E. "Bud" ShankClifford "Bud" ShankClifford (Bud) ShankClifford E. "Bud" ShankClifford E. "Buddy" ShankClifford E. 'Bud' ShankClifford E. (Bud) ShankClifford E. ShankClifford ShankClifford Shank, Jr.Clifford(Bud) ShankShankБ. Шанкバッド・シャンクバド・シャンクBud LeggeStan Kenton And His OrchestraShelly Manne & His MenGerald Wilson OrchestraLA4Russell Garcia And His OrchestraHenry Mancini And His OrchestraIke Carpenter And His OrchestraGerry Mulligan TentetteBud Shank - Shorty Rogers QuintetShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraThe Marty Paich Dek-TetteChet Baker SextetHoward Rumsey's Lighthouse All-StarsLalo Schifrin & OrchestraThe Bud Shank / Bob Cooper QuintetArt Pepper NineThe Buddy Bregman OrchestraElmer Bernstein & OrchestraThe Mystic Moods OrchestraThe Frankie Capp Percussion GroupMaynard Ferguson & His OrchestraBud Shank QuartetRuss Freeman QuartetBill Perkins OctetBuddy Collette And His Swinging ShepherdsThe Bud Shank QuintetLeith Stevens' All StarsBud Shank OrchestraThe Los Angeles Neophonic OrchestraShorty Rogers Big BandJimmy Giuffre's OrchestraHot Rod Rumble OrchestraBarney Kessel QuintetThe Bud Shank-Bob Cooper OrchestraBud Shank And Bill Perkins QuintetMilt Bernhart And His OrchestraShorty Rogers And His Augmented "Giants"Bobby Troup And His Stars Of JazzLaurindo Almeida QuartetBud Shank With StringsBarney Kessel And His MenPete Rugolo And His All StarsThe Bob Cooper SextetGerry Mulligan And The Jazz ComboBobby Shew & His West Coast FriendsRuss Freeman-Bill Perkins QuintetVic Lewis West Coast All-StarsThe Bud Shank Big BandThe Bud Shank SextetChet Baker Big BandArt Pepper + ElevenJake Fryer/Bud Shank Quintet + +255947Laurindo AlmeidaLaurindo José de Araujo Almeida Nobrega NetoAcoustic guitarist from Brazil (born 2 September 1917 in Prainha (now Miracatu), São Paulo, Brazil, died 26 July 1995 in Van Nuys, California, USA). Married to singer [a=Deltra Eamon]. +A master of the instrument, Almeida commanded many styles, including those of his native Brazil. Winner of five Grammy awards, he was the first to win in both jazz and classical categories. +In Los Angeles, he was a soloist with [a=Stan Kenton] 1947-1949; after settling in California he worked for 25 years in films and TV, while still remaining active in jazz. Featured in a 1964 episode of British BBC TV program "Jazz 625" with [a=Modern Jazz Quartet], which led to a joint album titled "Collaboration". +Almeida was also the subject of the documentary "Muito prazer, Laurindo Almeida" ("The Guitar from Maracatu"), directed by Leonardo Dourado in 1990, later expanded to a TV series broadcasted on Brazilian GNT network in 2004. It featured [a=Turibio Santos], [a=Arnaldo DeSouteiro] and actor [a=Francisco Milani].Needs Votehttps://en.wikipedia.org/wiki/Laurindo_Almeidahttps://www.imdb.com/name/nm0021843/https://www.bach-cantatas.com/Bio/Almeida-Laurindo.htmhttps://alchetron.com/Laurindo-Almeidahttps://adp.library.ucsb.edu/names/103163AlmediaAlmeiciaAlmeidaAmeidaDe AlmeidaDe AlmeldaL. AlmeidaL. AlmeidoL. De AlmeidaL.AlmeidaLarinda - AlmeidaLaurendo AlmeidaLaurendo AlmiedaLaurin AlmeidaLaurindoLaurindo AlmedaLaurindo AlmediaLaurindo Almeida TrioLaurindo Almeida Und Sein OrchesterLaurindo Almeida Y Su Guitarra Sin LimitesLaurindo Almeida, Chitarra Con OrchestraLaurindo AlmeidoLaurindo De AlmeidaLaurindo de AlmeidaLorindo AlmeidaLuarindo AlmeidaЛ. АлмейдаЛ. АльмейдоЛ.-А. Альмейдаローリンド・アルメイダAl PortchHarry James And His OrchestraStan Kenton And His OrchestraGerald Wilson OrchestraLA4Henry Mancini And His OrchestraThe 50 Guitars Of Tommy GarrettLaurindo Almeida & The Bossa Nova AllstarsBud Shank QuartetThe Los Angeles Neophonic OrchestraThe Laurindo Almeida TrioLaurindo Almeida QuartetLaurindo Almeida And His OrchestraThe Laurindo Almeida ShowQuintetto AlmeidaBrazilian SerenadersBob Romeo SextetLaurindo E Seu Conjunto + +255948Chuck FloresCharles Walter FloresAmerican jazz drummer, born 5 January 1935 in Orange, California, USA, died 24 November 2016 at age 81.Needs Votehttp://en.wikipedia.org/wiki/Chuck_Floreshttps://www.allmusic.com/artist/chuck-flores-mn0000778670/biographyC. FloresPhiladelphia Joe JonesWoody Herman And His OrchestraArt Pepper QuartetThe Bud Shank / Bob Cooper QuintetWoody Herman And The Swingin' HerdThe Woody Herman Big BandWoody Herman And The Las Vegas HerdBud Shank QuartetCy Touff QuintetWoody Herman BandWoody Herman And His Third HerdDick Collins And His OrchestraThe Claude Williamson TrioRoy Wiegand Jazz OrchestraThe Howlett Smith QuartetThe HerdmenDick Collins And The Runaway HerdWoody Herman And His Octet + +255979Addison FarmerAddison Gerald FarmerAmerican jazz double bassist +Born August 21, 1928 in Council Bluffs, Iowa, died February 20, 1963 in New York City, New York + +Twin brother of [a179055]. +Addison performed with (among others) the [a2360281], [a266425], Art Farmer, [a274433], [a45107], [a75617], [a319761], [a260727], [a257250] and [a23755].Needs Votehttps://en.wikipedia.org/wiki/Addison_Farmerhttps://data.desmoinesregister.com/famous-iowans/art-farmerhttps://www.allmusic.com/artist/addison-farmer-mn0000599032https://adp.library.ucsb.edu/names/314818A. FarmerEdison Farmerアディソン・ファーマーThe Mose Allison TrioStan Getz QuartetArt Farmer QuartetMal Waldron TrioThe JazztetThe Prestige Jazz QuartetArt Farmer QuintetThe Manhattan Jazz All StarsTeddy Charles New Directions QuartetGene Ammons SextetArt Farmer And His OrchestraPete Johnson's Orchestra + +256012Earl BosticBorn April 25, 1913 in Tulsa, Oklahoma, USA. +Died Oct. 28, 1965 in Rochester, New York, USA. +Jazz/rhythm and blues alto saxophonist who was a recording artist, bandleader, and arranger. +IMPORTANT NOTE about Bostic LPs on King: +A lot of Earl Bostic LPs in the King 5xx LP series (between numbers 500 and 600) exist in basically two totally different versions: +a) the mono issue +b) the stereo issue +They differ in musical content in as much as the tunes are the same, but the personnel and sometimes even the instrumentation are very much different on the mono and stereo versions. Although both mono and stereo versions have the same cover (apart from the "stereo designation", the music on the stereo LPs was recorded much later, sometimes years later, than the music on the mono LPs. +Needs Votehttp://en.wikipedia.org/wiki/Earl_Bostichttp://earlbostic.com/http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=35623&subid=0https://adp.library.ucsb.edu/names/105539BosticBostic EarlE. BosticE. BostickE.B.E.BosticEarl BostiEarl Bostic & His Alto SaxEarl Bostic And His Alto SaxEarl Bostic And His AltosaxEarl Bostic And The EnsembleEarl Bostic His Alto SaxEarl Bostickアール・ボスティックLionel Hampton And His OrchestraEarl Bostic And His OrchestraHot Lips Page And His OrchestraEarl Bostic QuartetEarl Bostic And His SeptetEarl Bostic's Gotham Sextet + +256016Rene HallRené Joseph Hallborn September 26, 1912 in Morgan City, Louisiana +died February 11, 1988 in Los Angeles, California + +American guitarist, banjo player, and arranger. +Was married to [a=Sugar Hall] + +He startet as a banjo player in [a=Joseph Robichaux And His New Orleans Rhythm Boys] (August 1933), than he switched to guitar and trombone and played in the [a=Ernie Fields Orchestra]. After that he joined [a=Earl Hines And His Orchestra] (1935-1942). Around 1949 he formed his own bands.Needs Votehttp://en.wikipedia.org/wiki/Ren%C3%A9_Hallhttp://thehoundblog.blogspot.fr/2009/06/rene-hall.htmlhttp://www.rockabilly.nl/references/messages/rene_hall.htmhttps://adp.library.ucsb.edu/names/204205Ben E. HallHaleHallPalmerR. HallR.HallRen HallRene J. HallRene Joseph HallRene' HallRenee HallRene´ HallRenè HallRené HallRené Hall And His GuitarsRené J. HallRené Joseph HallRone HallRéne HallQuincy Jones And His OrchestraB. Bumble & The StingersJones & Collins Astoria Hot EightEarl Hines And His OrchestraEarl Bostic And His OrchestraErnie Fields OrchestraRene Hall BandRené Hall's OrchestraRene Hall TrioBumps Blackwell OrchestraThe Pets (9)Rene Hall SextetteJoseph Robichaux And His New Orleans Rhythm BoysCarol Kaye And The Hitmen + +256053Pete TownshendPeter Dennis Blandford TownshendBritish guitarist, composer, singer, multi-instrumentalist, producer and author, born 19 May 1945 in Chiswick, West London, England, UK. He is best known for his more-than 50-year association with the rock band [a=The Who], as co-founder and leader, principal songwriter, guitarist, and vocalist. + +Established and owned [l=Pete Townshend's Home Studio] (a series of six home studios). In the early 1970s, he unveiled a number of companies under the umbrella of [url=/label/269086]Eel Pie[/url], which incorporated the studios [l=Goring Studios], [l=Boathouse Studios]/[l=Oceanic Studios, Twickenham]/[l=Eel Pie Studios] (in Twickenham, London), [l=Eel Pie Studio, Soho, London] and [l=Grand Cru Studios]. He sold the studios in 2008. + +In 1983, Townshend received the Brit Award for Lifetime Achievement. In 1990, he was inducted into the Rock and Roll Hall of Fame as a member of The Who. Grammy Award winner in 1994 (Best Musical Show Album, for [m=572286]) and again in 2001 (Lifetime Achievement Award). In 2001, he received the Ivor Novello Award for Lifetime Achievement. + +Son of [a=Cliff Townshend] and oldest brother of [a=Paul Townshend] and [a=Simon Townshend]. Owner of [a=Towser]. On 20th May 1968, he married Karen Astley, thus becoming son-in-law of [a=Edwin Astley] and brother-in-law of [a=Jon Astley], [a=Virginia Astley] and [a=Alison Astley]. He and Karen's children are [a=Emma Townshend] (born 28.3.1969), [a=Aminta Townshend] (born 24.4.1971) and Joseph Townshend (born 1989). He and Karen separated in September 1994 and finally divorced in 2009. He then secretly married [a=Rachel Fuller] in Twickenham, London, in December 2016 (more than two decades after their romance began).Needs Votehttps://www.thewho.com/pete-townshend/https://web.archive.org/web/20070214113458/http://www.petetownshend.com/https://web.archive.org/web/20030420184406/http://www.petetownshend.co.uk/https://web.archive.org/web/20030419224715/http://www.eelpie.com/https://petetownshend.net/https://myspace.com/pete_townshendhttps://soundcloud.com/pete-townshend-officialhttps://www.facebook.com/OfficialPeteTownshend/https://www.instagram.com/yaggerdang/https://en.wikipedia.org/wiki/Pete_Townshendhttps://musicianbio.org/pete-townshend/https://www.musicianguide.com/biographies/1608004122/Pete-Townshend.htmlhttps://www.famousbirthdays.com/people/pete-townshend.htmlhttps://musicbrainz.org/artist/fb147b8f-0144-4418-acaa-90b2d9779840https://www.imdb.com/name/nm0870175/https://www.geni.com/people/Pete-Townshend/6000000040346272468https://www.astro.com/astro-databank/Townshend,_Petehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/347452/Townshend_Peterhttps://www.allmusic.com/artist/pete-townshend-mn0000842351P TownsendP TownshendP. TownsendP. D. TowshendP. TaušendP. ThownsendP. TownhendP. TownsendP. TownshandP. TownsheardP. TownshedP. TownsheidP. TownshendP. TowsendP. TowshendP.D. TowshendP.TownsendP.TownshendPTPerer TownshendPetePete TownhsendPete TownsedPete TownsendPete Townsend / The WhoPete TownshedPete TownshendPete TowsedPete TowsendPete TowshendPeter D. B. TownshendPeter Dennis Blandford TownsendPeter Dennis Blandford TownshendPeter Dennis Blanford TownshendPeter Dennis TownshendPeter TonwshendPeter TownsedPeter TownsendPeter TownshendPeter Townshend)Peter TowshendPit TownshendPreter TownshendR. TownsendThownshendTownhsendTownsedTownsendTownshandTownsheldTownshenTownshendTownshend P.Townshend Peter DennTownshend Peter Dennis BlandfordTownshend, PeterTownzmanTowshendП. Таунсхедピートタウンゼントピート・タウンゼンドBijou DrainsArtists United Against ApartheidThe WhoThe High NumbersRockestraTommy And The BijouxDeep End (5)Artists For GrenfellMick Fleetwood & FriendsMark Knopfler's Guitar Heroes + +256065Herb EllisMitchell Herbert EllisAmerican jazz guitarist. +Born: August 4, 1921 in Farmersville, Texas. +Died: March 28, 2010 in Los Angeles, California.Correcthttps://en.wikipedia.org/wiki/Herb_Ellishttps://www.britannica.com/biography/Herb-Ellishttps://www.allmusic.com/artist/herb-ellis-mn0000674310https://www.facebook.com/herbellismusic/https://www.imdb.com/name/nm0254870/https://adp.library.ucsb.edu/index.php/mastertalent/detail/313943/Ellis_HerbEllisElllisH. ElisH. EllisH.EllisHarb EllisHerb ElisHerb. EllisHerbert EllisHerbert Mitchell "Herb" EllisHerbie EllisL. EllisWillisХ. ЭллисХерб ЭллисХэрб Эллисハーブ・エリスThe Oscar Peterson TrioLes Brown And His Band Of RenownJimmy Dorsey And His OrchestraThe Oscar Peterson QuartetRoy Eldridge And His OrchestraBen Webster And His OrchestraDizzy Gillespie - Stan Getz SextetLester Young QuintetThe V-Disc All StarsTerry Gibbs QuintetThe Herb Ellis TrioThe Philip Morris SuperbandThe Stan Getz SextetBillie Holiday And Her BandThe Ben Webster QuintetThe Gene Harris/Scott Hamilton QuintetThe Hanna-Fontana BandThe Herb Ellis QuintetThe Flip Phillips QuintetHerb Ellis QuartetThe Great GuitarsHerb Ellis-Ray Brown SextetHerb Ellis And The All-StarsBill Berry And The LA BandBen Webster SeptetThe Claude Williamson QuartetProject G-5The Soft Winds (2)Ross Thompkins QuartetThe Ross Tompkins QuartetColeman Hawkins & FriendsJazz Giants 1958Louis Armstrong And The V-Disc All-StarsTerry Gibbs / Buddy DeFranco / Herb Ellis Sextet + +256091Sam JonesSamuel JonesAmerican jazz bassist & composer, born 12 November 1924, in Jacksonville, Florida, USA, died 15 December 1981 in New York City. Active since the mid-1950s, he joined [a=Oscar Peterson] in 1966 and also worked with [a=Kenny Dorham], [a=Cannonball Adderley], [a=Dizzy Gillespie], [a=Thelonious Monk] and many others.Needs Votehttps://en.wikipedia.org/wiki/Sam_Jones_(musician)http://www.bluenote.com/artist/sam-jones/C. JonesJ. JonesJoneJonesS. JonesS.JonesSam BrownSam JonedsSamuel "Sam" JonesSamuel JonesСэм Джонсサム・ジョーンズThe Oscar Peterson TrioThe Red Garland TrioThe Thelonious Monk QuartetCannonball Adderley SextetThe Cannonball Adderley QuintetThe Bill Evans TrioThe Thelonious Monk QuintetThe Bud Powell TrioClifford Jordan QuartetTubby Hayes And The All StarsNat Adderley SextetThe Red Garland QuintetBarry Harris TrioThe Bobby Timmons TrioRay Brown All-Star Big BandTerry Gibbs QuartetThe Wes Montgomery TrioArt Farmer QuartetThe New York Bass Violin ChoirThe Thelonious Monk OrchestraTete Montoliu TrioChuck Mangione QuintetThe Cedar Walton / Hank Mobley QuintetJulian Priester SextetClark Terry QuartetDuke Jordan TrioLouis Smith QuintetDexter Gordon QuartetArt Farmer QuintetKenny Drew QuartetDuke Jordan QuartetCedar Walton QuartetClark Terry QuintetWynton Kelly TrioCedar Walton TrioDodo Marmarosa TrioTony Scott QuintetJ.J. Johnson QuartetThe Johnny Hodges QuintetRed Garland QuartetRein De Graaff QuintetDuke Jordan QuintetThe Claude Williamson TrioSam Jones QuintetSal Salvador SextetBlue Mitchell SextetThe Blue Mitchell OrchestraRoosevelt Wardell TrioSam Jones & Co.Clifford Jordan And The Magic TriangleEastern RebellionKing Curtis QuintetSam Jones Plus 10The Pentagon (3)Sam Jones OrchestraSam Jones 12 Piece BandDizzy Reece QuintetLouis Stewart QuartetTina Brooks QuintetStan Getz SeptetArt Farmer / Jackie McLean Quintet + +256167Steve GrossmanSteven GrossmanSteve Grossman (born January 18, 1951 in Brooklyn, New York City; died in Glen Cove, N.Y., August 13, 2020) was a jazz saxophonist who started in jazz fusion, but is most known for hard bop. +He performed & recorded with Miles Davis and Elvin Jones. +His first record "Some Shapes To Come" was released in 1974. +Needs VoteGrossmanS. GrossmanS.GrossmanSteveSteven GrossmanStone AllianceGil Evans And His OrchestraElvin Jones QuartetSteve Grossman QuartetThe Elvin Jones Jazz MachineSteve Grossman QuintetAntonio Ciacca QuintetJohnny Griffin & Steve Grossman QuintetElvin Jones QuintetKochi (4)Steve Grossman TrioLuciano Fabris SextetGiampaolo Ascolese Trio + +256168Red MitchellKeith Moore MitchellAmerican jazz double bassist, composer, lyricist, and poet +Born September 20, 1927, New York City, New York, USA, died November 8, 1992, Salem, Oregon, USA + +Mitchell lived and worked in Sweden from 1968 to 1992. He won a Swedish Grammy Awards twice, first in 1986 and then in 1991. Elder brother of bassist [a=Whitey Mitchell].Needs Votehttp://web.archive.org/web/20141106064505/http://www.redmitchell.com/redm/biographyhttps://en.wikipedia.org/wiki/Red_Mitchellhttps://redmitchell.bandcamp.com/https://adp.library.ucsb.edu/names/331988"Red" MitchellH. MitchellK. MitchellKeith "Red" MitchellKeith 'Red' MitchellKeith (Red) MitchellKeith MitchellKeith Red MitchellMitchellR MitchellR. MitchellR.MitchellRedRed MitchelР. Митчеллレッド・ミッチェルWoody Herman And His OrchestraBillie Holiday And Her OrchestraThe Swinging Bon VivantsDizzy Gillespie QuintetQuincy Jones' All Star Big BandThe Jimmy Giuffre TrioRussell Garcia And His OrchestraHenry Mancini And His OrchestraGerry Mulligan QuartetPete Rugolo OrchestraBob Brookmeyer QuintetManny Albam And His Jazz GreatsTony Crombie And His RocketsThe André Previn TrioWoody Herman And His WoodchoppersStanley Wilson And His OrchestraJim Hall TrioGuido Manusardi QuartetGerry Mulligan And His SextetGerry Mulligan QuintetThe Red Norvo TrioHampton Hawes TrioWarne Marsh QuartetJoe Sample TrioAllen's All StarsRadiojazzgruppenJimmy Raney QuartetThe Tommy Vig OrchestraClark Terry QuartetAndré Previn & His PalsBill Perkins OctetBill Perkins QuintetRed Norvo SextetHampton Hawes QuartetBuddy Collette And His Swinging ShepherdsThe Red Mitchell - Harold Land QuintetThe Jimmy Giuffre 4Benny Bailey QuintetCommunication (4)Woody Herman And His Third HerdThe Lennie Niehaus OctetThe John Graas NonetJimmy Raney QuintetJimmy Rowles TrioJason's FleeceHerb Geller QuartetRed Mitchell QuartetBud Shank And Bill Perkins QuintetThe Paul Bley GroupHerb Geller SextetteHerbie Harper SextetRed Mitchell TrioRed Mitchell QuintetThe GellersMarty Paich TrioThe Claude Williamson TrioAbeléen-Färnlöfs KvintettGil Mellé SextetBob Keene SeptetThe Jimmy Rowles SextetHerbie Harper QuintetBob Enevoldsen QuintetGerry Mulligan And The Jazz ComboLeonard Feather's West Coast JazzmenJohn Graas QuartetSoundstage All-StarsPete Candoli SeptetThe Jack Marshall SextetteJimmy Raney All StarsMilt Bernhart Brass EnsembleFive BrothersThe Mitchells (3)The Ex-HermanitesThe Louis Bellson OctetThe Marty Paich SeptetFour Trombone BandCarl Drinkard TrioThe Modest Jazz TrioBengt Hallberg/Red Mitchell DuoJim Hall And His Modest Jazz TrioJazz Club USANils Lindberg QuintetNils Lindberg SextetRed Mitchell And Friends + +256274Ivry Gitlisעברי גיטליס (Hebrew)Israeli classical violinist, born August 25, 1922 in Haïfa, died December 24, 2020 in Paris, France. +He has been living in Paris, France since the end of the sixties. +Needs Votehttps://fr.wikipedia.org/wiki/Ivry_Gitlishttps://en.wikipedia.org/wiki/Ivry_Gitlishttps://web.archive.org/web/20091228092051/http://www.actualite-de-stars.com/biographie/ivry-gitlis.htmlhttps://www.imdb.com/name/nm0321184/GitlisI. GitlisIrving GitlisIsaac GitelisM. GitelisYvry Gitlisイヴリー・ギトリスOrchestre De Chambre De ToulouseLes Elèves de Marcel Chailley + +256554Joe HuntAmerican jazz drummer, educator, author, and historian.Needs Votehttps://adp.library.ucsb.edu/names/322213Joseph Gayle HuntДж. ХантДжо ХантThe New Stan Getz QuartetThe George Russell SextetStan Getz QuartetArs Nova (3)George Russell SeptetDon Friedman TrioSteve Rudolph TrioBert Seager Jazz QuintetRich Greenblatt QuintetThomas Walbum TrioThe Alex Elin QuartetSuzanne Davis Quartet + +256556Chuck IsraelsCharles H. IsraelsAmerican jazz bassist, composer and arranger, born August 10, 1936 in New York +Israels is best known for his work with [a301147] (1961-1966). He has also worked with [a33589], [a254768], [a251769], [a30486], [a3865], [a251778], [a97545] and many others. He served as Director of the National Jazz Ensemble from 1973 to 1981. He is now the Director of Jazz Studies at Western Washington University in Bellingham. +Needs Votehttp://www.chuckisraels.com/http://en.wikipedia.org/wiki/Chuck_Israelshttps://adp.library.ucsb.edu/names/322662C. IsraelsCharles "Chuck" IsraelsCharles H. IsraelsCharles IsraelsChuck IsraelChuck IsrealsIsraelsチャック・イスラエルThe New Stan Getz QuartetThe Bill Evans TrioStan Getz QuartetThe John Coltrane SextetHampton Hawes TrioColeman Hawkins SextetEric Dolphy QuartetDon Friedman TrioThe Paul Winter SextetCecil Taylor QuintetNational Jazz EnsembleJon Mayer TrioThe Chuck Israels QuartetChuck Israels International TrioThe Chuck Israels Jazz OrchestraChuck Israels Trio + +256557Gene ChericoEugene Valentino ChericoAmerican jazz bassist, born April 15, 1935 in Buffalo, New York, died August 12, 1994 in Santa Monica, California of non-Hodgkin's lymphoma +Needs Votehttps://en.wikipedia.org/wiki/Gene_Cherico3, 8Eugene ChericoEugene ChiricoEugene V. ChericoGene ChericcoGene CherricoGene ChiricoGene V. ChericoДж. ЖерикоThe New Stan Getz QuartetStan Getz QuartetToshiko Akiyoshi TrioJazz In The ClassroomLouie Bellson Big BandDick Grove Big BandJoe Morello SextetToshiko Mariano QuartetCharlie Mariano QuartetFrank Strazzeri SextetToshiko Akiyoshi QuartetRed Norvo Combo + +256558Gary BurtonGary Burton (born on January 23, 1943, Anderson, Indiana, USA) is an American jazz vibraphonist and composer. + +Having been self-taught on the vibraphone, Burton developed a style of four-mallet chording as an alternative to the usual two-mallets. This approach caused Burton to be heralded as an innovator and his sound and technique were widely imitated. + +Burton is notable as one of very few openly gay musicians in jazz history, and has stated that his coming out in his 40s had no adverse consequences for his career as he had feared. + +Retired from performing at the age of 74 in 2017 after health issues caused him to lose his perfect pitch and ability to play at the virtuoso level that he demanded of himself.Needs Votehttps://web.archive.org/web/20200929142615/http://www.garyburton.com/https://www.npr.org/2017/06/09/532050377/gary-burton-retiring-the-malletshttps://ecmrecords.com/artists/gary-burton/https://garyburton.bandcamp.com/https://en.wikipedia.org/wiki/Gary_Burtonhttps://www.facebook.com/OfficialGaryBurton/https://www.allmusic.com/artist/gary-burton-mn0000738182B.BurtonBurtonG. BurtonG.BurtonGarry BurtonGary BurtnГ. БертонГ. БёртонГэри Бертонゲイリー・バートンゲイリ一・バ一トンQuincy Jones And His OrchestraThe New Stan Getz QuartetThe George Shearing QuintetStan Getz QuartetGary Burton QuintetGary Burton QuartetGRP All-Star Big BandJazz In The ClassroomGary Burton & FriendsJoe Morello SextetRichard Galliano QuartetThe New Gary Burton QuartetLarry Bunker QuartetteGary Burton / Chick CoreaGary Burton TrioMack Avenue SuperBandThe Hank Garland QuintetStéphane Grappelli Tribute Trio + +256580Reggie JohnsonReginald Volney JohnsonJazz bassist, born 13 December 1940 in Owensboro, Kentucky, USA; died September 11, 2020 in Bern, Switzerland + +Older brother of [a=Chuck Johnson (14)]Needs VoteReggi JohnsonReginald "Trees" JohnsonReginald JohnsonReginald Volney JohnsonJoe Haider TrioArt Blakey & The Jazz MessengersThe Jazz Composer's OrchestraMarion Brown QuartetMarion Brown SeptetThe Kenny Burrell TrioThe Archie Shepp SeptetRashied Ali QuintetMingus DynastyTete Montoliu TrioAl Haig TrioMingus Big BandHorace Parlan TrioThe Johnny Griffin QuartetBenny Bailey QuintetEddie Lockjaw Davis QuartetJohnny Coles QuartetBob Wilber And The Bechet LegacyHutcherson-Land QuintetThe Harold Land / Blue Mitchell QuintetSteve Grossman QuintetMichel Sardaby TrioBobby Shew - George Robert QuintetGeorge Robert-Tom Harrell QuintetBooker Ervin QuartetGeorge Robert QuartetMoncef Genoud TrioVince Benedetti TrioGeorge Robert QuintetDick Spencer QuintetThe Bob Lalemant TrioAnnetta Zehnder And Her TrioBebop City + +256581Joe ChambersJoseph Arthur ChambersAmerican jazz drummer, vibraphonist, pianist and composer. +Born 25 June 1942 in Chester, Pennsylvania.Needs Votehttps://en.wikipedia.org/wiki/Joe_Chambershttps://drummerworld.com/drummers/Joe_Chambers.htmlhttps://www.bluenote.com/artist/joe-chambers/https://www.udiscovermusic.com/stories/joe-chambers-blue-note-years-interview/ChambersJ ChambersJ. ChambersJ.ChambersJoe ChamberJoseph A ChambersJoseph Arthur ChambersJoseph ChambersJoseph L. ChambersMr. Joe Chambersジョー・チェンバースM'Boom Re:percussion EnsembleLee Konitz QuintetDavid Murray TrioManhattan BlazeThe Jimmy Giuffre 4Ray Mantilla Space StationCharles Tolliver And His All StarsHutcherson-Land QuintetThe Super Jazz TrioJoe Chambers And FriendsThe Bob Belden EnsembleThe Jazz Tribe (2)Kevin Hays QuintetJoe Chambers & Trio DejaizJoe Chambers Moving Pictures OrchestraThe Candid Jazz MastersAlliance (59)The Matthias Gmelin Quartet + +256727Marilyn MazurMarilyn Marie Douglas MazurUS born percussionist, drummer, composer, vocalist, pianist, dancer and bandleader, born January 8, 1955 in NY City, USA, died December 12, 2025, Copenhagen, Denmark. + +Mazur was living in Denmark since the age of six. + +Spouse of Danish musician [a=Klavs Hovman] and mother of DJ & producer [a=Fabian Mazur].Needs Votehttp://www.marilynmazur.com/http://www.facebook.com/TheOfficialMarilynMazurPagehttps://da.wikipedia.org/wiki/Marilyn_Mazurhttps://en.wikipedia.org/wiki/Marilyn_Mazurhttp://www.umapro.com/artists/https://www.imdb.com/name/nm1330887/M MazurM. MazurMarilynMarilyn Bint Pearl MazurMarylin MazurMazurマリリン・マズールGil Evans And His OrchestraLLL-MentalJan Garbarek GroupMarilyn Mazur's Future SongMagnetic North OrchestraPierre Dørge & New Jungle OrchestraKarsten Houmark GroupSix WindsMarilyn Mazur GroupMarilyn Mazur & Pulse UnitPrimi BandMazur Markussen KvartetOcean FablesMirakel BandArbeitsgruppe CANAILLEMakiko Hirabayashi TrioNikolaj Hess TrioMarilyn Mazur's ShamaniaJakob Buchanan KvartetFlower Machine (2)European Voices (2) + +257008Joe FarrellJoseph Carl FirrantelloUS jazz saxophonist & flute player; became well known as a member of [a37731]'s group [a41893] in the early 1970s. + +Born on 16.12.1937 in Chicago Heights, Illinois. +Died on 06.01.1986 in Los Angeles, California.Needs Votehttps://en.wikipedia.org/wiki/Joe_FarrellFarrellJ. FarrellJo FarrellJoe FarellJoe FarrelJoseph FarrellДжо ФаррелJoseph FirrantelloThe Players AssociationReturn To ForeverFuse OneWoody Herman And His OrchestraLee Konitz Big BandLalo Schifrin & OrchestraCTI All-StarsThe New Elvin Jones TrioWoody Herman And The Swingin' HerdMingus DynastyThe Bob Magnusson QuintetHarris Simon GroupJoe Farrell QuartetThe Jaki Byard QuartetSal Salvador And His OrchestraThad Jones & Mel LewisJoe Farrell-Louis Hayes QuartetRaoul Romero And His Jazz Stars OrchestraEddy Johnson And His OrchestraWoody Shaw & Joe Farrell Quintet + +257025Jim HallJames Stanley HallAmerican jazz guitarist, born 4 December 1930 in Buffalo, New York, USA, died 10 December 2013 in New York City, New York, USA. Married to [a=Jane Hall (3)]. + +For the Nashville, TN, country arranger, see [a=Jim Hall (9)].Needs Votehttp://www.jimhalljazz.com/https://www.jimhallmusic.com/https://jimhallguitar.bandcamp.com/https://en.wikipedia.org/wiki/Jim_Hall_(musician)https://www.imdb.com/name/nm0355726/https://www.allmusic.com/artist/jim-hall-mn0000286483https://rateyourmusic.com/artist/jim-hallHallHillJ. HallJ.HallJames HallJames S. HallJimmy HallJon HallДж. ХоллДжим Холлジム・ホールPaul Smith QuartetThe Dukes Of DixielandWoody Herman And His OrchestraThe Jimmy Giuffre TrioThe Chico Hamilton QuintetJim Hall / Ron Carter DuoBob Brookmeyer QuintetThe Chico Hamilton TrioGerry Mulligan & The Concert Jazz BandJim Hall TrioThe Gary McFarland OrchestraGerry Mulligan And His SextetArt Farmer QuartetWoody Herman And The Swingin' HerdBill Perkins QuintetHampton Hawes QuartetGary Burton & FriendsThe Jimmy Giuffre 4Bill Evans QuintetBilly Taylor QuartetZoot Sims And His OrchestraRolf Kühn QuintettJimmy Giuffre's OrchestraThe Buddy Collette - Chico Hamilton SextetHarold Land All-StarsArt Farmer And His OrchestraOrchestra U.S.A.The Jack Montrose QuintetPaul Desmond And His FriendsThe Buddy Bregman BandThe Jim Hall QuartetBill Smith QuartetThe Chico Hamilton SextetJim Hall & FriendsThe Modest Jazz TrioJim Hall And His Modest Jazz TrioPaul Desmond Jim Hall QuartetJim Hall QuintetThe Sax Maniacs (3) + +257028Sonny ClarkConrad Yeatis ClarkAmerican jazz pianist and composer +Born July 21, 1931, Herminie, Pennsylvania, USA +Died January 13, 1963 in New York City, New York, USA +First emerged as a member of a group led by [a430829] in California, but mainly worked in the hard bop idiom based in New York City. Recorded multiple sessions as a leader for the [l281] label, effectively serving as the label's house pianist, also a composer. + +Needs Votehttps://en.wikipedia.org/wiki/Sonny_Clarkhttps://audiscography.web.fc2.com/scl.htmhttps://www.allmusic.com/artist/sonny-clark-mn0000036934C. ClarkClarkClarkeConrad "Sonny" ClarkConrad Yeatis "Sonny" ClarkConrad Yeatis "Sunny" ClarkS. ClarkS. ClarkeS.ClarkSonny ClarkeSony ClarkYeatis Clarkソニー・クラークSonny Clark TrioArt Pepper QuartetCal Tjader QuintetSonny Rollins QuartetHoward Rumsey's Lighthouse All-StarsThe Hank Mobley QuintetJimmy Raney QuartetBuddy DeFranco QuartetBuddy DeFranco QuintetJerry Dodgion QuartetFrank Rosolino And His QuartetStan Levey SextetThe Buddy DeFranco Big BandLeonard Feather's West Coast JazzmenJimmy Raney All StarsThe Lawrence Marable QuartetTina Brooks QuintetJazz Club USASonny Clark SextetSonny Clark QuintetSerge Chaloff Quartet + +257114Illinois JacquetJean-Baptiste Illinois JacquetIllinois Jacquet (born October 31, 1922, Broussard, Louisiana, USA - died July 22, 2004, Queens, New York City, New York, USA) was an American jazz tenor saxophonist, composer and bandleader. He also doubled on bassoon, being one of the few jazz players to master that instrument. At 15, Jacquet began playing with [a=Milt Larkin]s' Orchestra, & in 1939 Jacquet moved to L.A., California, where he met [a=Nat King Cole] and would sometimes sit in with his trio. He played with the big bands of [a136133] (1942), [a253474] (1943-1944) and [a145262] (1945-1946). After playing the first "Jazz at the Philharmonic" concert, Jacquet formed his own band (which also included his older brother [a805059], a trumpet player) recording excellent albums for various labels.Needs Votehttp://en.wikipedia.org/wiki/Illinois_Jacquethttp://www.swingmusic.net/Illinois_Jacquet_Big_Band_And_Jazz_Legend_Biography.htmlhttps://illinoisjacquetfoundation.org/https://www.imdb.com/name/nm0415203/https://adp.library.ucsb.edu/names/323040"Illinois" JacquetB "Illinois" JacquetI JacquetI. B. JacquetI. JacquelI. JacquetI. JaquetI.JacquetIlinois JacquetIllinois Jacquet & His Tenor SaxophoneIllinois Jacquet And His Tenor SaxophoneIllinois JacquetteIllinois JaquetIllionis JacquetJ. IllinoisJ. JacquetJ.B.I.JacquetJacquetJaquetJean Baptiste Illinois JacquetJean-Baptiste "Illinois" JacquetJean-Battiste Illinois JacquetJllinois JacquetR. JaquetT. JacquetCount Basie OrchestraLionel Hampton And His OrchestraIllinois Jacquet And His OrchestraIllinois Jacquet SextetIllinois Jacquet And His All StarsIllinois Jacquet & His Big BandAl Casey And His SextetNew York StarsBig Sid Catlett's BandThe Uptown Swing All StarsJATP All StarsIllinois Jacquet QuintetIllinois Jacquet TrioThe Illinois Jacquet Quartet + +257115Ben WebsterBenjamin Francis WebsterBorn: March 27, 1909 in Kansas City, Missouri, USA. +Died: September 20, 1973 in Amsterdam, Netherlands. + +Also known as "The Brute" or "Frog". He was an influential American jazz tenor saxophonist. +Please note: The song "I Got It Bad (And That Ain't Good)" is a song co-written by [a=Paul Francis Webster]. + +Had a part as himself in the movie Stille dage i Clichy / Quiet days on Clichy (1970), directed by Jens Jørgen ThorsenNeeds Votehttps://benwebsterfoundation.com/https://www.facebook.com/benwebsterfoundation/https://en.wikipedia.org/wiki/Ben_Websterhttps://www.britannica.com/biography/Ben-Websterhttps://adp.library.ucsb.edu/names/103716Ad LibB WebsterB. WebsterB.WebsterBWBen Francis WebsterBen Webster and AssociatesBen WebstersBenjamin Francis "Ben" WebsterBenjamin Francis WebsterBig Ben WebsterFrancis Benjamin WebsterWebsterБ. ВебстерБ. УэбстерБен УэбстерУэбстерベン・ウェブスターFrancis LoveWoody Herman And His OrchestraDuke Ellington And His OrchestraBillie Holiday And Her OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesBennie Moten's Kansas City OrchestraLionel Hampton And His OrchestraStuff Smith And His Onyx Club BoysTeddy Wilson And His OrchestraJack Teagarden And His Big EightBenny Carter And His OrchestraJames P. Johnson's Blue Note JazzmenRex Stewart And His OrchestraBen Webster And His OrchestraBen Webster QuartetJay McShann And His OrchestraBlanche Calloway And Her Joy BoysTony Scott And His Down Beat Club SeptetThe V-Disc All StarsJohnny Hodges And His OrchestraGerry Mulligan QuintetClark Terry SextetBus Moten & His MenPete Johnson And His BandTeddy Wilson And His All StarsTeddy Wilson SextetBig Sid Catlett QuartetBenny Morton's All StarsThe Gene Krupa SextetThe Art Tatum - Ben Webster QuartetThe Ben Webster QuintetDuke Ellington Alumni All StarsBen Webster With StringsBen Webster SextetJimmy Cobb's OrchestraMarshall Royal QuintetAuld-Hawkins-Webster SaxtetMal Waldron's All StarsHarry Edison SextetThe Fletcher Henderson All StarsPutney Dandridge And His OrchestraBenny Carter & His Chocolate DandiesBuddy Rich All StarsBuddy Rich EnsembleBen Webster SeptetWoody Herman StarsAl Hall QuintetThe Band That Plays The BluesDenzil Best's Wax QuintetThe Sound Of Jazz All-StarsJam Session (11)Ben And The BoysBill De Arango SextetRoy Eldridge-Ben Webster QuintetAl Hibbler And His Orchestra + +257250Curtis FullerCurtis DuBois FullerAmerican jazz trombonist +Born December 15, 1932 in Detroit, Michigan, USA, died May 8, 2021 in Detroit, Michigan, USA + +In a Jesuit orphanage from the age of 9 for several years after the death of both parents. Discouraged from playing the violin, he became intrigued by his instrument after seeing [a251778] perform with [a257114]; he was taught by [a300031]. Left Detroit, and settled in New York City in April 1957 (then a member of [a167055]'s group) and led or co-led eight albums by the end of the year for [l19591], [l281] and [l33726]. After working with [a1432600], he joined [a262128] from 1961 to 1964 when the group functioned as a sextet. Until after he had died, Fuller was thought to have been born in 1934.Needs Votehttps://www.nytimes.com/2021/05/14/arts/music/curtis-fuller-dead.htmlhttps://jazztimes.com/features/tributes-and-obituaries/curtis-fuller-1932-2021/https://www.bluenote.com/artist/curtis-fuller/https://en.wikipedia.org/wiki/Curtis_Fullerhttps://www.imdb.com/name/nm2384841/C. FullerC.D.FullerC.FullerCraig FullerCurtis Dubois FullerCurtiss FullerFullerMr. Fullerカーティス・フラーQuincy Jones And His OrchestraGil Evans And His OrchestraThe Jazz MessengersCount Basie OrchestraArt Blakey & The Jazz MessengersArt Blakey & The Afro-Drum EnsembleDizzy Gillespie Big BandThe John Coltrane SextetThe Yusef Lateef QuintetThe Dizzy Gillespie Reunion Big BandThe Dave Bailey SextetLarry Willis SextetThe JazztetTimeless All StarsThe Curtis Fuller SextetCurtis Fuller And The Jazz ClanCedar Walton QuintetCurtis Fuller's QuintetLionel Hampton & His Giants Of JazzThe Quincy Jones Big BandWilbur Harden SextetBlue Mitchell SextetBenny Golson QuintetEastern RebellionJimmy Heath SextetThe New JazztetArt Farmer TentetCurtis Fuller QuartetSonny Clark Sextet + +257251"Philly" Joe JonesJoseph Rudolph JonesAmerican jazz drummer, born 15 July 1923 in Philadelphia, Pennsylvania, USA and died 30 August 1985 in Philadelphia, Pennsylvania, USA. Best known for his work as a member of the Miles Davis bands of 1955-1958, Jones also did a significant amount of session work in the late 1950s and early 1960s for Riverside Records and Blue Note. On Riverside, he recorded with Benny Golson, Chet Baker, Bill Evans, Kenny Drew, Johnny Griffin, and others. For Blue Note, he appeared on John Coltrane's "Blue Train", Sonny Clark's "Cool Struttin'", and several albums each by Hank Mobley and Freddie Hubbard. He struggled with opiate addiction for much of his career, and recorded only sporadically after 1963. Jones lived in Europe from 1968 to 1972, primarily in London and Paris. + +Jones had strong musical partnerships and friendships with Tadd Dameron, with whom he once shared an apartment in New York (one of Jones' last major projects was the "Dameronia" big band, which he co-founded and helped lead from 1981 until his death in 1985), Bill Evans, who hired Jones to play in his working trio on two different occasions (in 1967 and 1978), and hired him for studio recording sessions on several occasions between 1958 and 1977, and pianist Elmo Hope, who hired Jones for many of his recording sessions, including Hope's final session in 1966, a time when Jones was doing very little recording. Jones' career picked up again in the late seventies, and he worked regularly until his death of a heart attack in 1985, when he was 62. + +Not to be confused with [a=Jo Jones].Needs Votehttps://en.wikipedia.org/wiki/Philly_Joe_Joneshttp://www.drummerworld.com/drummers/Philly_Joe_Jones.htmlhttps://www.britannica.com/biography/Philly-Joe-Joneshttps://www.jazzdisco.org/philly-joe-jones/discography/https://www.allmusic.com/artist/philly-joe-jones-mn0000845443https://www.imdb.com/name/nm2056643/https://adp.library.ucsb.edu/names/324030"Phillie" Jo Jones"Philly Joe" Jones"Philly" Jo Jones"Филли" Джо Джонс'Philly' Joe JonesJ. JonesJ.R. JonesJoe JonesJonesJoseph Rudolph JonesP. J JonesP. J. JonesP.J. JonesPh.J.JonesPhil Joe JonesPhiladelphia Joe JonesPhillie Joe JonesPhilly "Joe" JonesPhilly Jo JonesPhilly Joe JonesPhilly Joé JonesPilly Joe Jones„Philly" Joe Jonesフィリー・ジョー・ジョーンズGil Evans And His OrchestraThe Red Garland TrioThe Miles Davis SextetThe Miles Davis QuintetMiles Davis All StarsThe Cannonball Adderley QuintetThe Bill Evans TrioSonny Clark TrioChet Baker QuartetThe Bud Powell TrioTadd Dameron And His OrchestraThe Chet Baker QuintetLou Donaldson - Clifford Brown QuintetThe Red Garland QuintetThe Chris Anderson TrioSonny Rollins QuartetPaul Chambers SextetThe John Coltrane SextetThe Miles Davis QuartetThe Hank Mobley QuintetMilt Jackson OrchestraThe Kenny Drew TrioJoe Morris OrchestraHank Mobley SextetJohnny Griffin SextetMal Waldron TrioThe Sun Ra All StarsSonny Rollins TrioJackie McLean QuintetClark Terry QuartetDuke Jordan TrioElmo Hope EnsembleArt Farmer QuintetDuke Jordan QuartetBill Evans QuintetThe Johnny Griffin QuartetClark Terry QuintetWynton Kelly TrioPhil Woods SeptetElmo Hope SextetPhilly Joe Jones SextetElmo Hope TrioEvans Bradshaw TrioBenny Golson And The PhiladelphiansErnie Henry QuartetJohnny Rae's Afro-Jazz SeptetPhilly Joe Jones Big Band SoundsBlue Mitchell SextetThe Blue Mitchell OrchestraDoc Bagby's OrchestraThe Super FourPhilly Joe Jones OctetTina Brooks QuintetArt Farmer TentetTadd Dameron QuartetPhineas Newborn QuartetErnie Henry OctetDameroniaPhilly Joe Jones QuartetPhilly Joe Jones QuintetYoshiaki Miyanoue QuartetSonny Clark QuintetSerge Chaloff Quartet + +257307Bobo StensonBo Gustav StensonSwedish jazz pianist, born August 04, 1944 in Västerås, Sweden + +His brother, who played drums, made him interested in jazz music in his early teens. Bobo Stenson started playing the piano at the age of seven. He received classical piano lessons. + +In his hometown of Västerås, he played early in various groups with Lars Färnlöf, Sven Åke Johansson and Staffan Abeleen. Börje Fredriksson included him in his quartet which also included Palle Danielsson and Fredrik Norén. After graduating from high school, Stenson worked for a short time in Paris. However, he preferred to play at the Blue-Note club in Paris with, among others, Manfred Schoof and Gunter Hampel. + +He began studies in musicology, which he interrupted to start his professional music career. He toured with Palle Danielsson and Rune Carlsson in Germany and played with guest soloists such as Benny Bailey and Dexter Gordon. During the 1970s, Stenson played in trio with Arild Andersen and Jon Christensen. Later, this formation was expanded with Jan Garbarek. In 1970, together with Bengt Berger and Palle Danielsson, he founded the group Rena Rama, which played music inspired by Africa, India and the Balkans. Lennart Åberg was also part of the group. This group existed for twenty years. Since 1988, Stenson has performed in Charles Lloyd's "European Quartet" and has also played with Stan Getz. He has also participated in Tomasz Stańko's groups and in Lars Danielsson's quartet. Bobo Stenson Trio has now been around for almost 40 years and in 2013 also includes Anders Jormin (bass) and Jon Fält (drums). + +Stenson was elected a member of the Royal Academy of Music in 2005 and was awarded the Litteris et Artibus medal in 2006.Needs Votehttp://www.bobostenson.com/http://www.myspace.com/bobostensonhttps://www.ecmrecords.com/artists/1435045740/bobo-stensonhttps://en.wikipedia.org/wiki/Bobo_Stensonhttps://sv.wikipedia.org/wiki/Bobo_StensonB StensonB. StansonB. StensonB. StenssonBo Gustav "Bobo" StensonBobo StenssonStensonStenssonJan Garbarek - Bobo Stenson QuartetThe Charles Lloyd QuartetStan Getz QuintetBobo Stenson TrioFläsket BrinnerOriental WindTomasz Stańko QuartetOpposite CornerRadiojazzgruppenPiano ConclaveBernt Rosengren Big BandRena RamaSister Maj's BlouseLars Danielsson QuartetParish (6)The Village Band (3)Red Mitchell TrioJan Allan QuintetClaudio Fasoli_Rita Marcotulli_Bobo Stenson TrioTommy Koverhults KvintettPalle Danielsson - 6 -Gunnar Fors' QuintetScandinavia New Jazz GroupGunnar Lindgren In The Opposite CornerTomasz Stanko SeptetBörje Fredriksson Quintet + +257353Earl HinesEarl Kenneth HinesAmerican jazz pianist, bandleader and composer +Born December 28, 1903, Duquesne, Pennsylvania, USA +Died April 22, 1983, Oakland, California, USA. +Performed with [a38201] in the late 1920s developing his so called "trumpet style" (right-hand octaves accompanied by chords with his left). Still based in Chicago during the 1930s and 1940s, his big band introduced the singers [a311744] and [a8284] and featured trumpeter [a64694] and the saxophonist [a75617]. In Armstrong's All Stars from 1948 to 1951, although a period followed in relative obscurity with the pianist leading West Coast Dixieland groups during the 1950s, but Hines' career revived with a 1964 booking at Manhattan's Little Theatre and the renewed interest led to many new recordings. +Commonly known as Earl "Fatha" Hines. Needs Votehttps://www.nytimes.com/1983/04/24/obituaries/earl-hines-77-father-of-modern-jazz-piano-dies.htmlhttps://musicbrainz.org/artist/5d7df598-bb80-4d73-a6f8-9ed1a4374052https://www.britannica.com/biography/Earl-Hineshttp://www.bluenote.com/artist/earl-hines/https://adp.library.ucsb.edu/index.php/mastertalent/detail/313395/Earl_Hines_Orchestrahttp://en.wikipedia.org/wiki/Earl_Hineshttps://www.imdb.com/name/nm0385662/https://www.allmusic.com/artist/earl-hines-mn0000455522/discographyhttps://www.treccani.it/enciclopedia/earl-kenneth-hines/https://adp.library.ucsb.edu/names/103056"Young" Earl HinesC. HinesDean HinesE HinesE. Fatha HinesE. HInesE. HindsE. HinesE.. HinesE.H.E.HinesEarl Fatha HinesEarl "Farta" HinesEarl "Fartha" HinesEarl "Fatha" HinesEarl "Fatha' HinesEarl "Father" HinesEarl 'Fatha' HinesEarl 'Fatha'HinesEarl (Fatha') HinesEarl (Fatha) HinesEarl Fata HinesEarl Fatha HinesEarl Hines And His BoysEarl Hines Piano SoloEarl Hines With Rhythm AccompanimentEarl Kenneth "Fatha" HinesEarl Kenneth HinesEarl `Fatha` HinesEarl «Fatha» HinesEarl ‘Fatha’ HinesEarl “Fatha” HinesEarl „Fatha” HinesEarl ‟Fatha„ HinesEarl"Fatha"HinesEarlhinesHInesHeinzHinersHinesKeneth "Earl" HinesMinesR. HineRinesЭ. Хайнсアール・ハインズLouis Armstrong & His Hot FiveWoody Herman And His OrchestraCozy Cole All StarsLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraJimmie Noone's Apex Club OrchestraLouis Armstrong And His All-StarsLouis Armstrong And His Savoy Ballroom FiveEarl Hines And His OrchestraEarl Hines SextetSy Oliver And His OrchestraSidney Bechet And His New Orleans FeetwarmersSidney Bechet And His TrioCarroll Dickerson's SavoyagersEarl Hines And His BoysThe Earl Hines TrioLouis Armstrong And His Hot FourEarl Hines' Dixieland BandThe Earl Hines SeptetClifford Hayes' Louisville StompersLouis Armstrong And His StompersEarl Hines And His QuartetThe Charlie Shavers QuintetEarl Hines And His All-StarsWoody Herman And The Thundering HerdCarroll Dickerson And His OrchestraEarl Hines And His BandThe Benny Carter QuartetDeppe's SerenadersEarl Hines SwingtetteEarl "Fatha" Hines And His New SoundsEarl "Fatha" Hines All Stars QuintetEarl Hines / Muggsy Spanier All StarsCarroll Dickerson's StompersEarl "Fatha" Hines All Stars QuartetEarl "Fatha" Hines Trio + +257394Louis HayesLouis Hayes (born May 31, 1937, Detroit, Michigan, USA) is an American jazz drummer. He has played with [a=Yusef Lateef], [a=Horace Silver], [a=Cannonball Adderley], [a=Sonny Clark], [a=Oscar Peterson] and many others. Brother of [a=Gerald Hayes].Needs Votehttp://louishayes.net/https://louishayes.bandcamp.com/https://louishayessmoke.bandcamp.com/https://en.wikipedia.org/wiki/Louis_Hayes"Hey" LewisHayesL. HayesLou HayesLou HaynesLouis Hayes & CompanyLouis HaynesLouis HaysM.L. HayesЛуис Хэйесヘイズルイ・ヘイズThe Oscar Peterson TrioCannonball Adderley SextetThe Cannonball Adderley QuintetMcCoy Tyner TrioThe Horace Silver QuintetTubby Hayes And The All StarsGeorges Arvanitas TrioThe Horace Silver TrioThe Yusef Lateef QuintetThe Louis Hayes GroupTerry Gibbs QuartetThe Wes Montgomery TrioJoe Henderson SextetThe Prestige All StarsFrank Strozier QuintetChuck Mangione QuintetLouis Hayes - Woody Shaw QuintetLee Morgan QuintetCecil Taylor QuintetDexter Gordon QuartetMcCoy Tyner Big BandCedar Walton TrioFreddie Redd QuintetJ.J. Johnson QuartetThe Johnny Hodges QuintetRein De Graaff QuintetMassimo Faraò TrioLouis Hayes QuintetWilbur Harden-Tommy Flanagan QuintetThe Young Lions (7)The Woody Shaw Concert EnsembleStafford James EnsembleDavid Hazeltine TrioRoosevelt Wardell TrioCannonball Legacy BandJoe Farrell-Louis Hayes QuartetGeneral Music ProjectLouis Hayes SextetThe John L. Nelson ProjectStan Getz SeptetLouis Hayes OrchestraThe Frank Hewitt TrioRicky Ford QuintetRick Germanson TrioLouis Hayes Jazz CommunicatorsJacob Artved QuartetGil Coggins TrioLouis Hayes / Junior Cook QuintetJazz Incorporated (2)McCoy Tyner / Freddie Hubbard QuartetPepper Adams - Donald Byrd SextetSonny Clark Sextet + +257414Albert LeeAlbert William LeeEnglish guitarist, keyboardist and singer, born 21st December 1943, Lingen, Herefordshire, UK. + +His father was a pianist and taught Albert from the age of seven and by the time he had mastered the piano, rock 'n' roll had arrived. He then went on to learn the guitar from the records of all the American stars including Buddy Holly, Gene Vincent, Rick Nelson and later James Burton and Chet Atkins. + +Albert was a session man and top sideman, playing with Jimmy Page before his Led Zeppelin days. His first number one came as part of Chris Farlowe's Thunderbirds. He then discovered Country music and backed all the American touring stars, including George Hamilton IV and Skeeter Davis. He was also the main guitarist in Jon Derek's Country Fever. In the 1970s he was a major part of Head Hands & Feet with the elite of London musicians, including Dave Peacock of Chas & Dave. When in the UK, Albert Lee has toured with Hogan's Heroes, and also plays in Bill Wyman's Rhythm Kings.Needs Votehttps://www.albertleeofficial.com/https://www.facebook.com/AlbertLeeOfficial/http://homepage.eircom.net/~albertlee/https://en.wikipedia.org/wiki/Albert_Leehttps://www.allmusic.com/artist/albert-lee-mn0000516194A. LeeA.LeeALAlAlbertAlbert LeetAlbert W LeeLeeアルバート・リーPintaThe Hot BandThe Crickets (2)Bill Wyman's Rhythm KingsGreen BullfrogHouse BandCountry Fever (2)Chris Farlowe & The ThunderbirdsHeads Hands & FeetThe Chris Farlowe BandDerek Lawrence StatementPoet And The One Man BandBlack ClawAlbert Lee & Hogan's HeroesCountry Fever (6)George's BandBootleg KingsMark Knopfler's Guitar HeroesBiff Baby's All Stars + +257421Peter ErskinePeter Clark ErskineAmerican jazz drummer & composer +Born June 5, 1954 in Somers Point, New Jersey + +Works as an adjunct professor at University Of Southern California. +Needs Votehttps://web.archive.org/web/20220307131635/http://www.petererskine.com/https://www.drummerworld.com/drummers/Peter_Erskine.htmlhttps://www.facebook.com/PeterErskineDrummer/https://myspace.com/petererskinehttps://en.wikipedia.org/wiki/Peter_Erskinehttps://www.youtube.com/channel/UCDgHjwAKCE6o8HF6-T07WZAhttps://www.youtube.com/channel/UCA3EQPUDMen8_SUwnyMCt9AEErskineP. ErskineP.ErskineP.r ErskinePete ErskinePeterPeter Clarck ErskinePeter Clark ErskinePeter ErksinePeter ErskinPeter Erskyneピーター・アースキンWeather ReportSteps AheadEnsemble ModernThe George Gruntz Concert Jazz BandStan Kenton And His OrchestraLarry Goldings TrioKenny Wheeler QuintetJaco Pastorius Big BandChris Walden Big BandGeorge Cables TrioAurora (18)Warren Bernhardt TrioJohn Abercrombie TrioBob Mintzer Big BandJoe Farrell QuartetManhattan Jazz QuintetMarc Johnson's Bass DesiresMaurizio Giammarco QuartetGary Burton & FriendsThe Bob Florence Limited EditionPino Daniele ProjectToon Roos GroupThe Peter Erskine TrioThe Mendoza/Mardin ProjectPeter Erskine New TrioDave Slonaker Big BandDavid Benoit TrioMilcho Leviev TrioYelena Eckemoff TrioBob Mintzer QuartetWeather UpdateThe Lounge Art EnsembleBill Reichenbach QuartetDon Grolnick GroupThe Justin Morell QuartetMark Masters EnsemblePeter Erskine European TrioLos Angeles Jazz EnsembleThe Roger Kellaway TrioPatrick Williams & His BandRich Willey's Boptism Big BandThe Midnight Jazz BandWord Of Mouth SextetThe Peter Erskine QuartetJam Music Lab All-Stars + +257423George MrazJiří MrázCzech-American jazz bass player, composer, also occasional saxophonist. He was a U.S. resident since the late 1960s, and became an American citizen in 1973 + +Born September 9, 1944 in Písek (former Czechoslovakia), died September 16, 2021 in Prague (Czech Republic) +Needs Votehttps://web.archive.org/web/20220129083155/https://georgemraz.com/https://en.wikipedia.org/wiki/George_Mrazhttps://www.imdb.com/name/nm2057233G. MrazG.MrazGeorg MrazGeorge (Jiri) MrazGeorge (Jiří) MrazGeorge J. MrazGeorge MartzGeorge MarzGeorge MratzGeorge MrázGeorge MuratzJ. MrázJir MrazJiri "George" MrazJiri 'George' MrazJiri MrazJiří MrázMrazジョージ・ムラーツBugianaSHQThe Oscar Peterson TrioArchie Shepp QuartetTommy Flanagan TrioVladimir Shafranov TrioStan Getz QuartetArt Pepper QuartetBarry Harris TrioQuest (13)Hank Jones TrioRoland Hanna TrioNew York Jazz QuartetGeorge Cables TrioToshiko Akiyoshi TrioThad Jones / Mel Lewis OrchestraMal Waldron TrioTete Montoliu TrioThe Scott Hamilton QuartetSteve Kuhn TrioJImmy Raney TrioKenny Barron TrioDon Friedman TrioHans Koller Big BandJohn Abercrombie TrioJimmy Knepper SextetJohn Abercrombie QuartetAdam Makowicz TrioFumio Karashima TrioCzechoslovak All Star BandPrague Jazz SoloistsKenny Drew QuintetDoug Sertl's Uptown ExpressThe Jan Hammer TrioHarold Mabern TrioEmil Viklický TrioEddie Harris QuartetMike Nock QuartetRichard Galliano QuartetJoe Lovano QuartetJimmy Knepper QuintetAhmad Mansour QuartetRichie Beirach TrioGeorge Mraz TrioThe Walter Norris DuoBeirach, Huebner, MrazArnett Cobb QuartetChano Dominguez TrioRomantic Jazz TrioThe Super Jazz TrioKazumi Watanabe QuartetDavid Hazeltine TrioAndy Laverne TrioThe Mousey Alexander SextetThad Jones QuartetKeystone TrioTed Rosenthal TrioElvin Jones QuintetAndy LaVerne QuartetDerek Smith QuartetGreg Marvin QuintetBob Kindred QuartetGeorge Mraz QuartetGeorge Mraz | David Hazeltine TrioJoe Beck TrioThe Walter Norris TrioTony Lakatos TrioHarry Allen QuartetThe Keystone QuartetBilly Childs TrioKlaus Weiss SextettArturo O'Farrill TrioBrian Dickinson TrioRich Perry TrioYelena Eckemoff QuintetPony Poindexter QuartetThe New Classic TrioThe Greg Marvin Quartet + +257745Slim GaillardBulee GaillardAmerican jazz singer, songwriter, pianist, and guitarist. He was well known for his vocalese singing and word play, even inventing his own language called Vout. His daughter, [b]Janis Hunter[/b], is the ex-wife of [a=Marvin Gaye] and the mother of actress and singer [a=Nona Gaye]. + +Born January 9, 1911 in Detroit, Michigan, USA. +Died February 26, 1991 in London, England. +Married [a=Nettie Gaillard] (divorced]. +Needs Votehttps://en.wikipedia.org/wiki/Slim_Gaillardhttps://adp.library.ucsb.edu/names/106973"Slim" Gaillard"Slim" GallardB GaillardB. "Slim" GaillardB. GaillardB.GaillardBulee "Slim" GaillardBulee 'Slim' GaillardBulee (Slim) GaillardBulee GaillardBulee GalliardBulee Slim GaillardChef Slim GaillardF. GaillardGailardGaillardGaillard SlimGailliardGailllardGallardGalliardGillardS. GaillardS.GaillardSlimSlim "Jazz Legend" GaillardSlim "Jazz Legend" GalliardSlim 'Jazz Legend' GaillardSlim (Bulee)Slim GailairdSlim GailardSlim GailbardSlim Gaillard And His HelpersSlim Gaillard With Instrumental AccompanimentSlim GailliardС. ГейллардSlim & SlamSlim Gaillard And His OrchestraFrankie Newton And His Uptown SerenadersThe Slim Gaillard TrioSlim Gaillard And His Southern Fried OrchestraSlim Gaillard And His Middle EuropeansSlim Gaillard And His PeruviansSlim Gaillard And His ShintoistsSlim Gaillard And His Bakers DozenSlim Gaillard QuartetteSlim & BamSlim Gaillard & His Flat Foot Floogie BoysSlim Gaillard & FriendsSlim Gaillard And His BoogiereenersSlim Gaillard SextetSlim Gaillard And His Atomic EngineersSlim Gaillard And His Musical Aggregations, Wherever He May BeSlim Gaillard And His All StarsSlim Gaillard And His Olympic TrackmenBulee Gaillard And His Southern Fried Orchestra + +257871Dave BaileySamuel David BaileyUS jazz drummer, born February 22, 1926 in Portsmouth, VA; died December 30, 2023 +Studied drumming in New York upon completing his military service as a pilot in World War II. A solid swing and bop player, he's not commonly credited for his role in helping popularize the bossa nova in the '60s, but Bailey learned the rhythm while touring South America in 1959 and helped many American drummers master the sound. Needs VoteD. BaileyDave "Specs" BaileyDave BailyDave BajleyDave BaleyDavid BaileyS. David BaileySpecs Baileyディヴ・ベイリーデーヴ・ベイリーThe Lee Konitz QuartetGerry Mulligan QuartetThe New Gerry Mulligan QuartetBob Brookmeyer QuintetThe Dave Bailey QuintetGerry Mulligan And His SextetGerry Mulligan QuintetArt Farmer QuartetClark Terry SextetThe Dave Bailey SextetThe Curtis Fuller SextetLou Donaldson QuintetGerry Mulligan - Paul Desmond QuartetCurtis Fuller's QuintetClark Terry / Bob Brookmeyer QuintetGerry Mulligan And The Sax SectionArt Simmons QuartetThe Tubby Hayes SextetMickey 'Guitar' Baker & His House RockersGerry Mulligan OctetGerry Mulligan GroupAndré Previn EnsembleGerry Mulligan Art Farmer QuartetMulligan ManiaThe Roger Kellaway Trio + +257938Deadmau5Joel Thomas ZimmermanCanadian progressive house/minimal trance and techno producer, and DJ, born on January 5, 1981 as [a=Joel Zimmerman] and raised in Niagara Falls, Ontario. He first released music in 2000 as [a=Karma K] under various forums and adopted the famous alias Deadmau5 in 2005. (he also went by Pivoteffekt and fuckmylife) + +He established the successful label [l=Mau5trap Recordings] in 2007. +As of 2025, "Create Music Group" has since acquired the label for 55 million. + +The name Deadmau5 (pronounced "dead mouse") comes from an incident where a pet mouse crawled into Zimmerman's computer and died. "Dead Mouse" was too long for a website login name, so he abbreviated it to "deadmau5".Needs Votehttps://deadmau5.comhttps://deadmau5.bandcamp.comhttps://equipboard.com/deadmau5https://www.facebook.com/deadmau5https://www.instagram.com/deadmau5https://www.threads.net/@deadmau5https://myspace.com/deadmau5https://www.reddit.com/r/deadmau5https://twitch.tv/deadmau5https://twitter.com/deadmau5https://whatgear.com/pro/deadmau5https://en.wikipedia.org/wiki/Deadmau5https://www.youtube.com/deadmau5https://tiktok.com/@deadmau5Dead Mau5Deadmau 5DeadmausDeamau5Joel ZimmermanMau5deadmau5电子鼠Joel ZimmermanHalcyon441testpilotKarma K + +258007Sy OliverMelvin James OliverAmerican jazz arranger, trumpeter, composer, singer and bandleader. Born 17 December 1910 in Battle Creek, Michigan, USA and died 28 May 1988 in New York City, New York, USA.Needs Votehttp://en.wikipedia.org/wiki/Sy_Oliverhttps://www.allmusic.com/artist/eddie-tompkins-mn0001209865https://www.britannica.com/biography/Sy-Oliverhttps://www.radioswissjazz.ch/en/music-database/musician/11978e2b2b8e61c5e90bc0095f8d8b9f09895/biographyhttp://archives.nypl.org/mus/20236https://rateyourmusic.com/artist/sy-oliverhttps://adp.library.ucsb.edu/names/106500"Sy" OliverA. OliverC. OliverCliverCy OliverEdgar William BattleJ. OliverM. "Sy" OliverM. OliverM. Sy OliverMelvin "Sy" OliverMelvin James "Sy" OliverMelvin James “Sy” OliverMelvin OliverMelvin Sy OliverMelvin « Sy » OliverOIiverOliverOliver SyOliver, Melvin James "Sy"Oliver-OliverOlivierOrchester Unter Der Leitung Von Sy OliverS OliverS, OliverS. OliverS.OliverSOSay OliverSi OliverSy Oliver And His OrchestraSy. OliverSyd OliverT. Sgt. Sy OliverT/Sgt. Sy OliverW.C. OliverСай Оливерサイ・オリバーTommy Dorsey And His OrchestraThe Sy Oliver ChoirMetronome All StarsJimmie Lunceford And His OrchestraSy Oliver And His OrchestraMezz Mezzrow And His OrchestraThe Lunceford QuartetLunceford TrioZack Whyte & His Chocolate Beau BrummelsThe Si Oliver Show + +258009Cozy ColeWilliam Randolph ColeAmerican jazz drummer and bandleader. +Born October 17, 1909, East Orange, New Jersey +Died January 31, 1981, Columbus, Ohio +Performed with [a1486687], [a888440], [a1202048], [a254769], [a339906], [a269601] and Louis Armstrong's All Stars.Needs Votehttps://www.nytimes.com/1981/01/31/obituaries/cozy-cole-71-dies-jazz-percussionist.htmlhttps://www.nytimes.com/1944/01/30/archives/beating-the-drums-for-carmen-jones-a-brief-introduction-to-cozy.htmlhttp://www.rockabilly.nl/references/messages/cozy_cole.htmhttp://www.drummerworld.com/drummers/Cozy_Cole.htmlhttps://www.britannica.com/biography/Cozy-Colehttp://mikedolbear.com/groovers-and-shakers/william-randolph-cozy-cole/https://www.allmusic.com/artist/cozy-cole-mn0000121483/biographyhttp://en.wikipedia.org/wiki/Cozy_Colehttps://www.imdb.com/name/nm0170510/https://adp.library.ucsb.edu/names/104569"Cozy" Cole'Cozy' ColeC ColeC. ColeCocy ColeColeCorry ColeCosy ColeCosycoleCozy Cole His Drums With OrchestraCozy Cole OrchestraCozy ColesCozy-ColeCozyColeCrazy ColeG. ColeW. ColeW. R. ColeWilliam "Cosy" ColeWilliam "Cozy" ColeWilliam 'Cozy' ColeWilliam (Cozy) ColeWilliam ColeWilliam ColesWilliam Randolph ColeWilliam Randolph Cole ("Cozy" Cole)William « Cosy » ColeWilliam « Coxy » Col2William « Coxy » ColeWilliam « Cozy » Col2William « Cozy » ColeWilliam «Cozy» ColeWilliams "Cozy" ColeSwing RooCab Calloway And His OrchestraColeman Hawkins QuartetCozy Cole All StarsJohn Kirby SextetBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersLionel Hampton And His OrchestraLouis Armstrong And His All-StarsStuff Smith And His Onyx Club BoysWingy Manone & His OrchestraTeddy Wilson And His OrchestraBunny Berigan And His BoysBob Haggart And His OrchestraDizzy Gillespie SextetColeman Hawkins QuintetSy Oliver And His OrchestraTony Scott And His OrchestraFrank Newton And His OrchestraLeonard Feather All StarsFrankie Newton And His Uptown SerenadersBlanche Calloway And Her Joy BoysDon Byas And His OrchestraCozy Cole OrchestraBuddy Tate's OrchestraClarence Williams' TrioHenry "Red" Allen And His OrchestraJoe Marsala And His Delta SixSam Price And His Kaycee StompersWalter Thomas' OrchestraDon Byas All StarsBud Freeman And His Windy City FiveWillie Bryant And His OrchestraJohnny Guarnieri TrioJohnny Guarnieri Swing MenHenry "Red" Allen's All StarsBarney Bigard QuintetEarl Hines And His All-StarsRex Stewart's Big EightThe Cozy Cole SeptetDon Byas' All Star QuintetBilly Taylor's Big EightChu Berry And His Stompy StevedoresDizzy Gillespie All StarsPutney Dandridge And His Orchestra"Little Jazz" And His Trumpet EnsembleJohnny Guarnieri's All Star OrchestraDick Porter And His OrchestraCozy Cole's Big SevenThe Erskine Butterfield TrioTrummy Young's Big SevenRex Stewart's Big FourCozy Cole And His Hit-ParadersJohn Hardee QuintetCozy Cole's QuartetteJune Cole's OrchestraLouis Armstrong And The V-Disc All-Stars + +258087Ray CopelandRay Copeland (born July 17, 1926, Norfolk, Virginia, USA - died May 18, 1984, Sunderland, Massachusetts, USA) was an American jazz trumpeter. Father of jazz drummer [a358472].Needs Votehttps://en.wikipedia.org/wiki/Ray_Copeland_(musician)https://adp.library.ucsb.edu/names/202106CopelandR. ColmanRay CoepandRay CoplandRoy ColemanRoy ColmanРэй КопландThelonious Monk SeptetThe Thelonious Monk QuintetAndy Kirk And His Clouds Of JoyJay McShann And His OrchestraThe Phoenix AuthorityArt Blakey's Big BandThe Ernie Wilkins OrchestraEast Coast All-StarsThe Thelonious Monk OrchestraLionel Hampton GroupLionel Hampton All StarsThe JazztetThe Jazz Interactions OrchestraRandy Weston SextetThe Zoot Sims QuintetArt Farmer And His OrchestraOscar Pettiford OrchestraThelonious Monk NonetRandy Weston QuintetSpecs Powell & Co. + +258088Gigi GryceGeorge General Grice, Jr.American jazz multi-instrumentalist (saxophone, clarinet, flute), arranger, composer, and bandleader. +Born November 28, 1925 - Pensacola, Florida. +Died March 14, 1983 - Pensacola, Florida. + +Needs Votehttps://en.wikipedia.org/wiki/Gigi_Grycehttp://www.attictoys.com/GigiGryce/G GryceG. G. GryceG. GriceG. GryceG.G. GryceG.G.GryceG.GriceG.GryceGeorge "Gigi" GryceGiGi GryceGiggi GryceGigi CryceGigi GriceGigi Gryce/Basheer QusanGigi GrycesGigy GriceGriceGryceGryce aka Basheer QusimGyceЖижи Грайсジジ・グライスBasheer QusimLee SearsThelonious Monk SeptetLionel Hampton And His OrchestraClifford Brown SextetTony Scott And His OrchestraEast Coast All-StarsThe Teddy Charles TentetMal Waldron QuintetClifford Brown Big BandHenri Renaud BandArt Farmer QuintetThe Dizzy Gillespie OctetThe Gigi Gryce - Donald Byrd Jazz LaboratoryThe Gigi Gryce QuartetMax Roach SeptetOscar Pettiford OrchestraOscar Pettiford & His All StarsThe Gigi Gryce OrchestraGigi Gryce Clifford Brown SextetGigi Gryce Little BandGigi Gryce QuintetGigi Gryce - Clifford Brown OctetGigi Gryce And The Jazz Lab QuintetGigi Gryce OctetGigi Gryce And His Big BandGigi Gryce Orch-tetteGigi Gryce SextetGigi Gryce - Clifford Brown OrchestraArt Farmer Gigi Gryce QuintetOscar Pettiford Big Band + +258089Wilbur WareWilbur Bernard WareAmerican jazz bassist, born September 8, 1923 in Chicago, Illinois, died September 9, 1979 in Philadelphia, Pennsylvania +Needs Votehttp://www.jazzdiscography.com/Artists/Ware/http://en.wikipedia.org/wiki/Wilbur_WareW. WareWareWilbar WareWilber WareWilbur WereВильбур ВэриУилбур Вэрウィルバー・ウェアThe Thelonious Monk QuartetThelonious Monk SeptetThelonious Monk TrioThe Kenny Drew TrioHank Mobley SextetEast Coast All-StarsJohnny Griffin SextetSonny Rollins TrioKenny Drew QuartetKenny Drew QuintetThe Johnny Griffin QuartetWilbur Ware QuintetThe Zoot Sims QuintetErnie Henry QuartetBig Bill And The Memphis FiveTina Brooks QuintetErnie Henry QuintetJim Chapin OctetSonny Clark Sextet + +258099Donald GillanClassical cello player. + +Donald Gillan joined the [a=Scottish Chamber Orchestra] in 2007. Before that he enjoyed a busy freelance career playing with chamber groups and orchestras including the Scottish, Paragon and Hebrides Ensembles, [a=Northern Sinfonia], [a=BBC Scottish Symphony Orchestra] and Scottish Opera. +CorrectDonald GillianDonny GillanScottish Chamber Orchestra + +258121Mike BloomfieldMichael Bernard BloomfieldBorn on July 28, 1943, in Chicago, Illinois, USA. +Died on February 15, 1981 in San Francisco, California, by drug overdose. +Already at a young age Bloomfield knew and played with many of Chicago's blues legends, even before he achieved his own fame, He was one of the primary influences on the mid-to-late 1960s revival of classic Chicago and other styles of blues music. + +In 2003 Bloomfield was ranked at number 22 on Rolling Stone's 100 Greatest Guitarists Of All Time. Unlike contemporaries such as Jimi Hendrix and Jeff Beck, Bloomfield rarely experimented with feedback and distortion, preferring a loud but clean, almost chiming sound with a healthy amount of reverb. Guiter builders Gibson have since released a Michael Bloomfield Les Paul (replicating his 1959 Standard) in recognition of his effect on the blues genre, on helping to influence the revived production of the guitar and on many other guitarists. +Needs Votehttps://www.michaelbloomfield.com/http://www.mikebloomfieldamericanmusic.com/https://en.wikipedia.org/wiki/Mike_Bloomfieldhttps://www.allmusic.com/artist/michael-bloomfield-mn0000892206https://www.bluespower.com/arbntoc.htmAl BloomfieldBloomfieldBloomfield, Michael B.BloomfieldsH. BloomfieldM BloomfieldM BloomfieldM, BloomfieldM. BloomM. BloomfieldM. BloomsfieldMakal BlumfeldMichaelMichael B. BloomfieldMichael BloomfieldMicheal BloomfieldMikeMike DoeMike Michael Bloomfield"Fastfingers" FinkelsteinGreat (3)Woody Herman And His OrchestraThe Electric FlagThe Paul Butterfield Blues BandKGB (7)The Zeet BandMill Valley BunchYank Rachell And His Tennessee Jug-BustersWoody Herman And The Thundering Herd + +258130Henry GrimesAmerican jazz bassist +Born November 3, 1935 in Philadelphia, Pennsylvania +Died April 15, 2020 in Harlem, NY. +After performing with many prominent musicians for a decade, Grimes disappeared from the music scene in the mid-1960's. He was often presumed dead, but was rediscovered in 2002 by Marshall Marrotte, a social worker and jazz fan, in a small apartment in Los Angeles, California. He had sold his bass long before. With the help of many musicians and a bass donated by [a=William Parker], Grimes resumed performing again, and in 2003 he returned to New York where he was active as a musician and educator. +Father [a=Leon James Grimes, Sr.] (trumpeter) +Mother Georgia Elzie Grimes (pianist) +Twin brother Leon Grimes (clarinetist and tenor saxophonist) Needs Votehttp://www.henrygrimes.com/https://henrygrimes.bandcamp.com/https://aaregistry.org/story/bassist-henry-grimes-born/https://en.wikipedia.org/wiki/Henry_Grimeshttps://www.imdb.com/name/nm0342205/GrimesH. GrimesHenry GrimsJerry GrimesCharles Tyler EnsembleHenry Grimes TrioBilly Taylor TrioAlbert Ayler QuintetMcCoy Tyner TrioThe Cecil Taylor UnitBurton Greene QuartetThe Lee Konitz QuartetGerry Mulligan QuartetThelonious Monk TrioCharles Mingus Jazz WorkshopAlbert Ayler QuartetRoy Haynes QuartetRob Brown's ResonanceSonny Rollins TrioFrank Wright TrioRolf Kühn SextetRolf Kühn QuintettProfound Sound TrioWalt Dickerson QuartetSteve Lacy-Roswell Rudd QuartetPerry Robinson 4Gerry Mulligan And The Sax SectionWilliam Parker Bass QuartetThe Cecil Taylor GroupThe Lee Konitz TrioGerry Mulligan OctetMarc Ribot TrioSonny Rollins / Don Cherry QuartetUs Free + +258298Vince GuaraldiVincent Anthony Guaraldi, born: Vincent Anthony DellaglioAmerican jazz pianist and composer. +Born 17 July 1928 in San Francisco, California, USA. +Died 6 February 1976 in Menlo Park, California, USA. +Best known for composing music for animated TV adaptations of the [i]Peanuts[/i] comic strip. His compositions for the series included the signature melody "Linus and Lucy" and the holiday standard "Christmas Time Is Here".Needs Votehttps://en.wikipedia.org/wiki/Vince_Guaraldihttps://www.facebook.com/VinceGuaraldiMusic/https://www.facebook.com/ACharlieBrownChristmasOfficial/http://www.concordmusicgroup.com/artists/vince-guaraldi/https://www.youtube.com/user/VinceGuaraldiVEVOhttps://www.youtube.com/playlist?list=PLgWmP-F0RTPOCoPWyt7JXAK0Fy6Dz0oOOhttp://www.imdb.com/name/nm0345279/http://fivecentsplease.org/dpb/vincecd.htmlhttps://web.archive.org/web/20171206025346/http://www.vinceguaraldi.com/biography.htmGaulraldiGauraldiGaurdaldiGiraudiGuaraldiGuaraldi, VinceGuardaldiGuarldiGuaroldiGuraldiJ. GuaraldiS. GuaraldiV GuaraldiV, GuaraldiV. GeraldiV. GuaraidiV. GuaraldiV. GuardaldiV. GueraldiV. GuraldiV.GuaraldiVinceVince GauraldiVince GerialdiVince GiraldiVince Guaraldi And OrchestraVince GuerraldiVince GuiraldiVince GuraldiVincent Guaraldiヴィンス・ガラルディVince Guaraldi TrioWoody Herman And His OrchestraCal Tjader QuintetCal Tjader QuartetCal Tjader SextetConte Candoli All StarsWoody Herman BandWoody Herman And The Fourth HerdFrank Rosolino QuintetRon Crotty TrioVince Guaraldi QuartetCal Tjader TrioThe Vince Guaraldi - Conte Candoli QuartetThe Conte Candoli QuartetWoody Herman's Anglo-American HerdVince Guaraldi And ChorusVince Guaraldi QuintetWoody Herman And His OctetCal Tjader - Stan Getz SextetVince Guaraldi And FriendsWoody Herman And The Swingin' Herd (2)Vince Guaraldi SextetRichie Kamuca Bill Holman OctetGuaraldi-Friendship Music Corp. + +258422Sidney BechetSidney Joseph BechetAmerican jazz saxophonist, clarinetist, and composer. +Born: May 14, 1897 in New Orleans, Louisiana. +Died: May 14, 1959 in Paris, France. + +He was one of the first important soloists in jazz, and was perhaps the first notable jazz saxophonist. +Forceful delivery, well-constructed improvisations, and a distinctive, wide vibrato characterized Bechet's playing. +Bechet's erratic temperament hampered his career, however, and not until the late 1940s did he earn wide acclaim. + +He began his career when he was not even 19, playing in the jazz bands of [a=Bunk Johnson] and then of [a=Clarence Williams]. +From the 1920s onwards, he played mainly abroad (London & Paris) and also in New York. +In 1932 he founded [a=The New Orleans Feetwarmers] with [a=Tommy Ladnier]. +After World War II, he mostly lived in Paris.Needs Votehttps://web.archive.org/web/20210218055721/http://www.sidneybechet.org/https://en.wikipedia.org/wiki/Sidney_Bechethttps://www.famouscomposers.net/sidney-bechethttps://www.britannica.com/biography/Sidney-Bechethttps://www.bluenote.com/artist/sidney-bechet/https://www.npr.org/artists/15394787/sidney-bechet?t=1630578518948https://www.bbc.co.uk/radio3/jazz/profiles/sidney_bechet.shtmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103288/Bechet_Sidneyhttps://adp.library.ucsb.edu/names/103288B chetB. SidneyBachetBechelBecherBechetBechet S.Bechet SidneyBechet SydneyBechet, SidneyBechet, SydneyBechtBecketBeonetBerchetBetchetBetherBéchetJ. BechetProf. Sidney BechetProfessor Sidney BechetS .BechetS BechetS. BachetS. BechertS. BechetS. BechettS. BecnetS. BeshetS. BeychetS. BešeS. BešėS. BichetS. BisheS. BochetS. BéchetS.B.S.BechetS.BishetS.BucheSB PlayerSid BechetSidnet BechetSidneySidney "Pops" BechetSidney BecetSidney BecheSidney BecherSidney Bechet And VocalistsSidney Bechet GroupsSidney Bechet One-man BandSidney Bechet's One-Man BandSidney BecketSidney BichetSidney BéchetSidney Joseph BechetSidney Pops BechetSidney-BechetSidny BechetSydnet BechetSydney BechetThe Sidney BechetС. БешеС. БишеСидней БегетСидней БешеСидней Бешетシドニー・ベシェシドニー・ベシエLouis Armstrong And His OrchestraSidney Bechet And His Blue Note Jazz MenClarence Williams' Blue FiveNoble Sissle And His OrchestraCount Basie, His Instrumentalists And RhythmSidney Bechet And His OrchestraThe New Orleans FeetwarmersTommy Ladnier And His OrchestraThe Mezzrow-Bechet SeptetThe Mezzrow-Bechet QuintetSidney Bechet QuintetJelly Roll Morton's New Orleans JazzmenNoble Sissle And His International OrchestraNoble Sissle SwingstersSidney Bechet And His New Orleans FeetwarmersSidney Bechet And His TrioHarlem TrioSidney Bechet's Jazz Ltd. OrchestraSidney Bechet & His All Star BandSidney Bechet QuartetBunk Johnson - Sidney Bechet And Their OrchestraSidney Bechet & His Circle SevenSidney Bechet's Blue Note QuartetSidney Bechet's One Man bandThe Bechet / Spanier Big FourClarence Williams' TrioLadnier-Mezzrow All-StarsJoe Sullivan Jazz QuartetBechet-Mezzrow FeetwarmersSidney Bechet And His All-StarsSidney Bechet's SevenJosh White TrioPort Of Harlem JazzmenThe King Bechet TrioHaitian OrchestraSidney Bechet & His Hot SixArt Hodes' Hot FiveSidney Bechet's Jazz BandSidney Bechet And His Vogue JazzmenThe "This Is Jazz" All-StarsBechet-Luter QuintetSidney Bechet SextetSidney Bechet And His RhythmSidney Bechet And His BandChristopher Columbus And His Swing CrewBechet-Nicholas Blue Five + +258423Buck WashingtonFord Lee Washington American vaudeville performer, pianist, and singer, born October 16, 1903 in Louisville, KY, died January 31, 1955 in New York City.Needs Votehttp://www.allmusic.com/artist/p136178https://en.wikipedia.org/wiki/Buck_Washingtonhttps://adp.library.ucsb.edu/names/106936"Buck" WashingtonB. WashingtonBuckBuck Of Buck And BubblesF. BuckF. L. BuckF. WashingtonFloyd "Buck" WashingtonFloyd “Buck” WashingtonFord Lee "Buck" WashingtonFord Lee WashingtonWashingtonLouis Armstrong And His OrchestraBuck And His BandBenny Goodman And His OrchestraBuck And BubblesBessie Smith-Orchestra + +258433Lester YoungLester Willis YoungAmerican jazz tenor saxophonist (born August 27, 1909, Woodville, Mississippi, USA - died March 15, 1959, New York City, New York, USA). He ranks together with [a251769] and [a257115] as one of the three "great tenors" of the swing era. Occasionally, he was known to also play the clarinet.Needs Votehttps://en.wikipedia.org/wiki/Lester_Younghttps://www.imdb.com/name/nm0949818/https://www.britannica.com/biography/Lester-Younghttps://web.archive.org/web/20210218055742/https://jdisc.columbia.edu/person/lester-younghttps://www.scaruffi.com/jazz/young.htmlhttps://prabook.com/web/lester.young/3733601https://www.jazzdisco.org/verve-records/discography-1951/https://lesteryoungesp.bandcamp.com/https://adp.library.ucsb.edu/index.php/mastertalent/detail/211293/Young_LesterAl YoungBuster YoungH. YoungI. YoungL YoungL. JangsL. Y.L. YoungL.YoungLesterLester "Prez" YoungLester 'Prez' YoungLester Willis YoungLester Young "Press"Lester Young & CompanyLester Young & FriendsLester Young And CompanyTHE MANV. YoungWillis Lester YoungYounYoungЛ. ЯнгЛестер Янгレスター・ヤングPres (2)Count Basie OrchestraCount Basie ComboMetronome All StarsKansas City SixBillie Holiday And Her OrchestraCount Basie And The Kansas City SevenFletcher Henderson And His OrchestraBennie Moten's Kansas City OrchestraCount Basie BandTeddy Wilson And His OrchestraHelen Humes And Her All-StarsBenny Goodman And His OrchestraLester Young QuartetJones-Smith IncorporatedGlenn Hardman And His Hammond FiveBenny Goodman SeptetThe Kansas City SevenThe Lester Young SextetLester Young TrioLester Young And His BandLester Young QuintetFrank Newton And His OrchestraCount Basie SextetBuster Harding's OrchestraDickie Wells And His OrchestraThe Newport All StarsBasie's Bad BoysThe Jazz Giants '56Lester Young And His OrchestraThe Lester Young-Teddy Wilson QuartetJubilee All StarsJohnny Guarnieri Swing MenLester Young-Buddy Rich TrioWalter Page's Blue DevilsLester & Lee Young's OrchestraCount Basie Blue FiveCount Basie QuintetMal Waldron's All StarsSam Price And His Texas BlusiciansOscar Peterson & FriendsJohnny Guarnieri's All Star OrchestraJATP All StarsLester Young And The Kansas City 6Lester Young And The Kansas City 5Birdland All-StarsCount Basie And His Kansas City FiveLester Young And CompanyLester Young's All Star OrchestraBenny Goodman Jam SessionColeman Hawkins & FriendsLester Young All-Stars QuintetThe Sound Of Jazz All-StarsJam Session (10) + +258458Jimmy WoodeJames Bryant WoodeAmerican jazz bassist +Born September 23, 1928 in Philadelphia; died April 22/23, 2005 in Lindenwold, New Jersey +He played trombone in the band led by his father Jimmy Woode Sr. (born 24 October 1912, died 28 March 2005), piano in churches and sang in vocal ensembles before 1945. He mainly played bass after World War II with – among others – [a=Louis Armstrong], [a=Charlie Parker], [a=Ella Fitzgerald], [a=Miles Davis], [a=Dizzy Gillespie] and [a=Sarah Vaughan]. He played with [a=Duke Ellington] from 1955 to 1959, who referred to him as a musician with team spirit. +Needs Votehttp://de.wikipedia.org/wiki/Jimmy_WoodeJ WoodeJ. B. WoodeJ. WoodeJ. Woode Jr.J. WoodsJ.WoodeJ.Woode jr.James B WoodeJames B. WoodeJames B. Woode IIJames Bryant WoodeJames WoodJames WoodeJimmie WoodeJimmyJimmy WoodJimmy Wood Jr.Jimmy Wood, Jr.Jimmy Woode J:rJimmy Woode Jnr.Jimmy Woode JrJimmy Woode Jr.Jimmy Woode JuniorJimmy Woode jrJimmy Woode jr.Jimmy Woode, Jr.Jimmy WoodsJimmy woodMr. Jimmy WoodeWoodWoodeWoode Jr.WoodieWoodsDickie ByrdSunbirdsPeter Herbolzheimer Rhythm Combination & BrassNathan Davis QuintetIra Kris GroupClarke-Boland Big BandFritz Pauer TrioThe Charlie Parker All-StarsDuke Ellington And His OrchestraThe Bud Powell TrioPaul Kuhn TrioDon Byas QuartetOrchester Johannes FehringThe Sahib Shihab QuintetThe Nathan Davis SextetThe Kenny Clarke - Francy Boland SextetIdrees Sulieman QuartetDon Byas QuintetThe Milt Buckner TrioJohnny Hodges And His OrchestraEric Dolphy QuintetMal Waldron TrioMal Waldron QuintetMythologieClark Terry QuartetArt Farmer QuintetToots Thielemans QuartetORF Big BandKenny Clarke - Francy Boland OctetThe Johnny Griffin QuartetTed Curson QuartetParis Reunion BandNathan Davis QuartetEddie Lockjaw Davis QuartetDuke Ellington's SpacemenThe Mark Murphy QuartetErich Kleinschuster SextettThe Eddie Davis-Johnny Griffin QuintetRaymond Fol Big BandTrombone SummitDusko Gojkovic QuintettArt Farmer SextetThe Uptown Swing All StarsThe Ellington All-Stars Without DukeClark Terry - Ernie Wilkins QuintetJohnny Hodges And His Small BandPaul Gonsalves - Clark Terry QuintetJohnny Hodges & His Big BandMr. Fats Sadi, His Vibes & His FriendsHank Mobley - Johnny Griffin QuintetJon Hendricks - Johnny Griffin GroupSuper-TrioGustav Csik TrioHi-Hat All-StarsFritz Pauer Quartet + +258459Roy EldridgeDavid Roy EldridgeRoy Eldridge (born January 30, 1911, Pittsburgh, Pennsylvania, USA - died February 26, 1989, Valley Stream, New York, USA) also known as "Little Jazz", was an American jazz trumpeter. He was a prominent soloist with the bands of [a=Fletcher Henderson], [a=Gene Krupa] and [a=Artie Shaw] as well as featured in [a166628]'s Jazz at the Philharmonic events and a leader in his own name. Eldridge was given the nickname "[a=Little Jazz]" by [a=Leon "Chu" Berry]. On Wikipedia and the liner notes of i.a. [r3150375] the nickname was given by the saxophone player Otto Hardwicke (Otto James "Toby" Hardwicke, 1904 – 1970) when they were together in The Elmer Snowden orchestra in the early Thirties.Needs Votehttp://en.wikipedia.org/wiki/Roy_Eldridgehttps://www.britannica.com/biography/Roy-Eldridgehttps://www.allmusic.com/album/little-jazz-cbs-mw0000201768https://indianapublicmedia.org/nightlights/portrait-jazz-roy-eldridge.phphttps://www.jazzdisco.org/roy-eldridge/discography/https://rateyourmusic.com/artist/roy-eldridgehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103162/Eldridge_Roy"Little Jazz""Roy" EldridgeD. R. EldridgeDavid "Roy" EldridgeDavid EldridgeDavid Roy EldridgeEldridgeEldridge, RoyEldrigeElridgeJoe EldridgeLittle JazzR, EldridgeR. EldridgeR. EldrigeR. ElridgeRay EldridgeRoyRoy "King David" EldridgeRoy "Little Jazz" EldridgeRoy EldndgeRoy Eldridge All-StarsRoy Eldridge a.o.Roy EldrigeRoy ElridgeThe Strolling Mr. EldridgeРой ЭлдриджLittle JazzKing David (19)Metronome All StarsColeman Hawkins All Star BandEsquire All StarsBillie Holiday And Her OrchestraGene Krupa And His OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraTeddy Wilson And His OrchestraRoy Eldridge And His OrchestraIllinois Jacquet And His OrchestraColeman Hawkins QuintetColeman Hawkins Swing FourThe Trumpet KingsJohnny Hodges And His OrchestraMildred Bailey And Her OrchestraTeddy Hill OrchestraChu Berry & His Little Jazz EnsembleTatum - Eldridge - Stoller - Simmons QuartetThe Roy Eldridge QuintetThe Jazz Giants '56Elmer Snowden SextetGene Krupa's Swing BandNew York StarsRoy "King David" Eldridge & His Little JazzRoy Eldridge & His Central Plaza DixielandersRoy Eldridge 4Mal Waldron's All StarsPutney Dandridge And His Orchestra"Little Jazz" And His Trumpet EnsembleMetropolitan Opera House Jam SessionRoy Eldridge SextetThe Roy "Little Jazz" Eldridge QuartetThe Uptown Swing All StarsAll Star Big BandDelta FourHerb Ellis And The All-StarsJazz Artists GuildRoy Eldridge And His BandRoy Eldridge - Richie Kamuca QuintetEddie Locke SextetRoy Eldridge And His Little Jazz FiveJam Session All-Stars"King David" And His Little Jazz FourRoy Eldridge-Chu Berry Jazz EnsembleColeman Hawkins & FriendsThe Sound Of Jazz All-StarsEsquire All-American Jazz BandJam Session (11) + +258460Johnny HodgesJohn Cornelius HodgesAmerican jazz saxophonist who played in [a=Duke Ellington And His Orchestra] for several decades and led his own groups between 1951 and 1955. Also performed intermittently in other ensembles. +Born 25 July 1907, Cambridge, Massachusetts, USA - Died 11 May 1970, New York City, New York, USA. +He was husband of [a2891120] with whom they had a son, [a2310162]. + +Do NOT confuse with [a=Jimmie Hodges] ("Someday (You'll Want Me To Want You)") + +Correcthttps://en.wikipedia.org/wiki/Johnny_Hodgeshttps://www.britannica.com/biography/Johnny-Hodgeshttps://www.npr.org/artists/15622025/johnny-hodgeshttps://www.facebook.com/johnnyhodgesmusic/https://www.allmusic.com/artist/johnny-hodges-mn0000526407https://www.mmone.org/johnny-hodges/https://www.imdb.com/name/nm0388178/https://www.bbc.co.uk/radio3/jazz/profiles/johnny_hodges.shtmlhttps://adp.library.ucsb.edu/names/103184"Rabbit" HodgesB1, B2C. HodgesCornelius Hodge aka "Johnny Hodges"Cornelius Hodges aka "Johnny Hodges"Cue HodgesDž. HodžesasHdgesHidgesHoagesHoddgesHodgeHodgesJ .HodgesJ HodgesJ, HodgesJ. HodgeJ. HodgersJ. HodgesJ. Hodges & FriendsJ.HodgesJBJHJames HodgesJohn HodgeJohn HodgesJohnnie HodgesJohnny "Rabbit" HodgesJohnny Hodges "The Rabbit"Johnny Hodges b. Cornelius HodgeJohnny Hodges «The Rabbit»Johnny Hodges' EllingtoniansJohnny Hodges, B. Cornelius HodgeJohnny Hodges, b. Cornelius HodgeJohnny HodhesJohnny HogdesJohny HodgesJonny HodgesRodgersRodgesД. ХоджесДж. ХоджесДжонни ХоджесCue Porter"The Rabbit""Harvey""Alto Jazz Great"Duke Ellington And His OrchestraMetronome All StarsCootie Williams & His Rug CuttersLionel Hampton And His OrchestraThe Whoopee MakersTeddy Wilson And His OrchestraDuke Ellington And His Cotton Club OrchestraEarl Hines SextetRex Stewart And His OrchestraThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersDuke Ellington And His Jazz GroupThe Earl Hines SeptetThe Johnny Hodges QuintetThe Gotham StompersBilly Strayhorn's SeptetDuke Ellington SextetDuke Ellington OctetIvie Anderson And Her Boys From DixieThe Gulf Coast SevenBooty Wood And His AllstarsMildred Bailey And Her Alley CatsBilly Taylor's Big EightDuke Ellington All Star Road BandJohnny Hodges TrioEsquire All American Award WinnersMetronome All-Star BandLawrence Brown's All-StarsDuke Ellington And His Award WinnersJohnny Hodges And His Small BandThe Memphis Hot ShotsSandy Williams Big EightJohnny Hodges & His Big BandThe Band That Plays The BluesThe Harlem Music MastersJohnny Hodges SeptetDuke Ellington's Philadelphia MelodiansBenny Goodman Jam SessionJohnny Hodges And His Strings + +258461Milt HintonMilton John HintonAmerican jazz double bassist and photographer +Born June 23, 1910 in Vicksburg, Mississippi, died December 19, 2000 in Queens, New York +He was nicknamed "The Judge".Needs Votehttps://en.wikipedia.org/wiki/Milt_Hintonhttps://www.britannica.com/biography/Milt-Hintonhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13728ee769dda2bdbc7f3ea5f886d83853af1/biographyhttps://www.allmusic.com/artist/milt-hinton-mn0000494537https://www.imdb.com/name/nm0386010/http://www.bluenote.com/artist/milt-hinton/https://adp.library.ucsb.edu/names/102205"Big Milt" HintonHIntonHintonM. HintonM.HintonMHMilt HantonMilt HiltonMilto HintonMilton HiltonMilton HintenMilton HintonMilton hintonMintonMinton HintonMitt HintonMlton Hintonミルトン・ヒントンミルト・ヒントンミント・ヒルトンJunior HifitzQuincy Jones And His OrchestraGil Evans And His OrchestraCab Calloway And His OrchestraThe Lou Stein TrioColeman Hawkins QuartetThe Benny Goodman QuartetWoody Herman And His OrchestraCozy Cole All StarsLionel Hampton And His OrchestraBuck Clayton And His OrchestraAndy Kirk And His Clouds Of JoyTeddy Wilson And His OrchestraPaul Barbarin And His OrchestraTeddy Wilson TrioRay Ellis And His OrchestraThe Bob Prince TentetteBenny Goodman SeptetZoot Sims QuartetTony Scott And His OrchestraHoward McGhee QuintetThe Cafe Society BandAl Cohn - Zoot Sims QuintetDon Elliott And His OrchestraThe Tony Scott QuartetManny Albam And His Jazz GreatsJoe Newman SextetHal McKusick QuintetJoe Reisman And His OrchestraAl Cohn QuintetTiny Parham And His MusiciansJonah Jones And His CatsBilly Byers And His OrchestraThe New York Bass Violin ChoirAl Cohn's Natural SevenHenry "Red" Allen And His OrchestraThe Ike Quebec Swing SevenThe Ike Quebec QuintetRuby Braff All-StarsRalph Burns And His OrchestraBenny Goodman OctetTony Scott SeptetSam Price And His Kaycee StompersMilt Hinton And FriendsJoe Bushkin QuartetAl Cohn And His OrchestraThe Jazz All-StarsUrbie Green And His OrchestraWalter Thomas' OrchestraBobby Jaspar QuintetThe Joe Wilder QuartetOsie Johnson And His OrchestraJohnny Richards And His OrchestraGeorge Russell OrchestraBuddy DeFranco QuartetLarry Sonn OrchestraRuby Braff And His Big City SixThe Jay And Kai QuintetMilt Hinton & His OrchestraZoot Sims And His OrchestraThe Ralph Sutton QuartetDerek Smith TrioWoody Herman And The Fourth HerdGeorge Williams And His OrchestraBill Watrous ComboAlex Kallao TrioHal McKusick QuartetThe Quincy Jones Big BandTony Scott TentetShorty Rogers And His Augmented "Giants"Al Cohn And His "Charlie's Tavern" EnsembleThe Hal McKusick OctetJimmy Rushing And His OrchestraMel Powell & His All-StarsJ.C. Heard QuintetBobby Hackett And His Jazz BandThe Billy Byers-Joe Newman SextetAndy Gibson And His OrchestraTony Parenti's All-StarsMel Davis SextetChu Berry And His OrchestraThe Danny Stiles FiveEmmett Berry SextetThe Secret 7Marshall Royal QuintetThe Rhythm Section (7)2nd George Barnes QuartetThe Benny Carter GroupThe New Charlie Ventura SextetChu Berry And His Stompy StevedoresMal Waldron's All StarsUrbie Green and His 6-TetJonah Jones BandJonah Jones And His OrchestraThe Trio (16)Summit ReunionAllstars (11)Soprano SummitThe Kenny Burrell OctetEddie South And His International OrchestraThe Phil Moore FourThe Ernie Wilkins GroupHank D'Amico QuartetAl Cohn-Zoot Sims SextetThe Zoot Sims Al Cohn SeptetSackville All StarsThe George Masso QuintetThe Bernie Leighton QuartetZoot Sims All-StarsThe Stan Free FiveThe Butch Miles SextetUrbie Green And His All-StarsSteve Allen QuartetSteve Allen TrioRuby Braff SextetMilt Hinton And Another Generation Of SwingArt Farmer/Lee Konitz QuintetCarmen Leggio QuartetThe Benny Carter All-Star Sax EnsembleRed Norvo ComboJim Timmens And His Swinging BrassStewart - Williams & Co.Pete Brown's All-Star QuintetDick Meldonian QuartetThe Basie AlumniThe Dave McKenna Swing SixThe Eddie Barefield SextetWoody Herman OctetThe Phil Bodner QuartetStan Rubin And His Tigertown OrchestraJam Session At The RiversideBilly Byers SextetThe Pia Beck QuartetThe Allan Vaché - Johnny Varro CombosThe Keynoters (5)The Butch Miles OctetMilt Hinton TrioThe Sound Of Jazz All-StarsBeulah Bryant's Thin MenHal McKusick SextetTerry Gibbs / Buddy DeFranco / Herb Ellis Sextet + +258462Mundell LoweJames Mundell LoweMundell Lowe (born April 21, 1922, Laurel, Mississippi, USA – died December 2, 2017) was an American jazz guitarist and composer. He spent many years working in radio, television, and film, and as a session musician. Married to singer [a1629054].Needs Votehttp://en.wikipedia.org/wiki/Mundell_Lowehttps://www.imdb.com/name/nm0523010/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1400970ddcbba65f17a99a0958be3606cd6d5/biographyhttps://www.allmusic.com/artist/mundell-lowe-mn0000745830https://adp.library.ucsb.edu/names/328309James "Mundell" LoweJames LoweLoweM LoweM. LoweM.l LoweMitchell LoweMundel LoweMundell Lowe All-StarsMundell Lowe And friendsMundyThe Will Bradley-Johnny Guarnieri BandBenny Goodman SextetCharlie Barnet And His OrchestraJim Timmens And His Jazz All-StarsCootie Williams And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetGeorge Treadwell And His All StarsTony Scott And His OrchestraThe World Jazz All Star BandSauter-Finegan OrchestraThe Tony Scott QuartetBuster Harding's OrchestraMundell Lowe And His All StarsMundell Lowe QuintetThe Red Norvo TrioThe Jazz All-StarsLouie Bellson Big BandGeorgie Auld's All-StarsMary Lou Williams And Her OrchestraSteve Allen And His All-StarsThe Mundell Lowe QuartetThe New Benny Goodman SextetBobby Scott QuartetMundell Lowe And His OrchestraNBC Rhythm SectionAl Klink QuintetUrbie Green And His All-StarsGene Bianco And His GroupJack Sheldon's Late Show All-StarsMundell Lowe And His FriendsThe Mundell Lowe EnsembleThe Stan Free Quartet + +258463Vic DickensonVictor DickensonJazz trombone player, born 6 August 1906 in Xenia, Ohio, USA, died 16 November 1984 in New York City, USA.Needs Votehttp://www.bluenote.com/artist/vic-dickenson/https://en.wikipedia.org/wiki/Vic_Dickensonhttps://www.allmusic.com/artist/vic-dickenson-mn0000170688/biographyhttps://www.encyclopedia.com/education/news-wires-white-papers-and-books/dickenson-vic-1906-1984https://rateyourmusic.com/artist/vic_dickensonhttps://adp.library.ucsb.edu/names/100030"Vic" DickensonAlbert Victor 'Vic' DickensonC. DickensonDickensenDickensonDickinsonV. DickensonV. DickersonVicVic DickensenVic Dickenson Show CaseVic DickersonVic DickinsonVick DickensonVick DikersonVictor "Vic" DickensonVictor DickensonVictor DickersonВик ДиккенсонCount Basie OrchestraLouis Armstrong & His Hot SevenSidney Bechet And His Blue Note Jazz MenEarl Hines And His OrchestraBenny Carter And His OrchestraEdmond Hall's Blue Note JazzmenEdmond Hall SextetJames P. Johnson's Blue Note JazzmenSidney Bechet And His New Orleans FeetwarmersIllinois Jacquet And His All StarsLester Young And His BandEddie Heywood And His OrchestraHoward McGhee And His OrchestraHot Lips Page And His OrchestraBuck Clayton With His All-StarsJulia Lee & Her Boy FriendsThe Buck Clayton SeptetJohnny Hodges And His OrchestraAlbert Ammons And His Rhythm KingsThe World's Greatest JazzbandRed Norvo All StarsSam Price And His Kaycee StompersEdmond Hall's All-StarsTeddy Wilson And His All StarsSidney DeParis' Blue Note JazzmenThe Jazz Giants '56Mary Lou Williams And Her OrchestraBenny Morton's Trombone ChoirThe Phil Wilson SextetThe Vic Dickenson QuintetVic Dickenson SeptetJimmy Rushing And His OrchestraPee Wee Russell RhythmakersEddie Heywood And His SextetThe Mainstream SextetAndy Gibson And His OrchestraErroll Garner All StarsThe International Jazz GroupArt Hodes And His Blue Note JazzmenWilbert Baranco And His Rhythm BombardiersMal Waldron's All StarsJonah Jones BandJimmy McPartland's Hot Jazz StarsThe Buddy Tate All StarsVic Dickenson QuartetMary Lou Williams' Chosen FivePee Wee Russell Jazz EnsembleSlim Gaillard And His BoogiereenersGeorge Wein's Storyville BandOscar Pettiford And His 18 All StarsEddie Locke SextetMary Lou Williams And Her SixLou Stein Jazz BandVic Dickenson All-StarsThe Peewee Russell SextetsJimmy McPartland And His SextetteThe Sound Of Jazz All-StarsJam Session (11) + +258464Billy StrayhornWilliam Thomas StrayhornBorn November 29, 1915 in Dayton, Ohio. +Died May 31, 1967 in New York City, NY. +American composer, pianist and arranger, best known for his successful collaboration with bandleader and composer [a145257] from 1939 to 1967. The compositions most closely associated with Strayhorn are "Take the 'A' Train", "Chelsea Bridge" and "Lush Life". Strayhorn was inducted into the Songwriters Hall of Fame in 1984.Needs Votehttp://billystrayhorn.com/https://www.facebook.com/pages/Billy%20Strayhorn/104251176277954/https://en.wikipedia.org/wiki/Billy_Strayhornhttps://www.allmusic.com/artist/billy-strayhorn-mn0000359199/https://www.songhall.org/profile/Billy_Strayhornhttps://adp.library.ucsb.edu/names/103202B StrayhornB, StrayhornB. StrayhornB. StaryhornB. StayhornB. StrahorB. StrahornB. StraithornB. StravhorneB. Stray HornB. StraygornB. StrayhonB. StrayhormB. StrayhornB. StrayhorneB. StraynhorneB. StraythornB. StraytonB. StreyhornB. StryhornB.StrayhornBi. StrayhornBill StrayhornBilli StrayhornBilly StayhornBilly Stayhorn and the Delta Rhythm BoysBilly StrahornBilly StraighornBilly Stray HornBilly Stray-HornBilly StrayhomBilly StrayhorneBilly StrdyhomBilly StreyhornBilly StryhornBilly StrythorneBillye StrayhornBllly StrayhomC. StrayhornEllingtonL.B. StrayhornR. StrangehornR. StrayhornS. StrayhornSrayhornStaryhornStayhornStoryhornStrahornStraihornStraithornStrathornStray HornStrayhdornStrayhernStrayhoenStrayhomStrayhorhStrayhormStrayhornStrayhorn B.Strayhorn BillyStrayhorn, B.Strayhorn, BillyStrayhorn; StrayhornStrayhorneStrayhornnStrayhronStraysStronghornW StrayhornW. StrayhornW. StrayhornW.T. StrayhornWilliam "Billy" StrayhornWilliam StrayhornWilliam Thomas "Billy" StrayhornWilliam Thomas 'Billy' StrayhornWilliam Thomas StrayhornWilliam Thomas “Billy” StrayhornWilliams Thomas "Billy" StrayhornWm. StrayhornstrayhornБ. СтрейхорнБили СтрейхорнБилли СтрайхорнБилли СтрейхорнБилли СтрэйхорнDuke Ellington And His OrchestraCootie Williams & His Rug CuttersBarney Bigard And His OrchestraJohnny Hodges And His OrchestraThe Oscar Pettiford QuartetBilly Strayhorn TrioBilly Strayhorn's SeptetBilly Strayhorn And The OrchestraDuke Ellington Alumni All StarsEsquire All American Award WinnersBilly Strayhorn's BandThe Ellington All-Stars Without DukeJohnny Hodges And His Small BandThe Coronets (3)Johnny Hodges & His Big BandLouis Bellson's Just Jazz All StarsJohnny Hodges SeptetAl Hibbler And His OrchestraBilly Strayhorn's Orchestra + +258465Sam WoodyardSamuel WoodyardAmerican jazz drummer (* January 07, 1925 in Elizabeth, New Jersey; † September 20, 1988 in Paris, France). + +Needs Votehttps://en.wikipedia.org/wiki/Sam_Woodyardhttps://www.drummerworld.com/drummers/Sam_Woodyard.htmlS, WoodyardS. WoodyardSamSam WoodwardSam WoodywardWoodyardС. ВудьярдСэм ВудъярдСэм ВудьярдDuke Ellington And His OrchestraJohnny Hodges And His OrchestraDuke Ellington And His Jazz GroupJimmy Jones TrioDuke Ellington's SpacemenThe Quincy Jones Big BandDuke Ellington All Star Road BandThe Ellington All-Stars Without DukeJohnny Hodges And His Small BandPaul Gonsalves - Clark Terry QuintetJohnny Hodges & His Big BandFestival All-StarsJoe Holiday Sextet + +258466Harold AshbyHarold Kenneth AshbyAmerican jazz tenor saxophonist and clarinetist. + +Born : March 27, 1925 in Kansas City, Missouri. +Died : June 13, 2003 in New York City. +Needs Votehttps://en.wikipedia.org/wiki/Harold_Ashbyhttps://www.allmusic.com/artist/harold-ashby-mn0000667414https://adp.library.ucsb.edu/names/302145AshbyH. AshbyHAshHal AshbyHarold AsbyHarold K. AshbyХ. ЭшбиDuke Ellington And His OrchestraWillie Mabon And His ComboOtis Rush & His BandHarold Ashby QuartetThe Butch Miles SextetLawrence Brown's All-Stars + +258467Alvin StollerAlvin Aaron StollerAmerican jazz swing-era drummer. Born October 07, 1925 in New York City, New York. Died October 19, 1992 in Los Angeles, California. +Married to actress [a=Mary Hatcher] (1946-??, annulled). + +In the 1940's and 50's, Stoller played with [a=Teddy Powell], [a=Benny Goodman], [a=Charlie Spivak], [a=Harry James (2)], [a=Claude Thornhill]. In 1945, he replaced [a=Buddy Rich] as drummer with [a=Tommy Dorsey And His Orchestra]. He also recorded with leading jazz musicians.Needs Votehttp://en.wikipedia.org/wiki/Alvin_Stollerhttps://www.imdb.com/name/nm0962414/biohttps://www.radioswissjazz.ch/en/music-database/musician/52988ed1eaba4a880608688c2eaad98c14b6b/biographyhttps://www.allmusic.com/artist/alvin-stoller-mn0000011651/creditshttps://adp.library.ucsb.edu/names/345500A. StollerAl StollerAllen StollerAlvie StollerAlvin A. StollerAlvin StoellerAlvin StohlerAlvin Stoller And EnsembleAlvin StrollerAlvon StollerAlvy StollerArvin StollerBob RosengardenStollerYankee Snare Drummer Alvin StollerЭлвин СтоллерTommy Dorsey And His OrchestraHarry James And His OrchestraPaul Smith QuartetBillie Holiday And Her OrchestraTommy Dorsey And His Clambake SevenRay Anthony & His OrchestraErroll Garner TrioThe Oscar Peterson QuartetRussell Garcia And His OrchestraRoy Eldridge And His OrchestraBen Webster And His OrchestraPete Rugolo OrchestraNeal Hefti's OrchestraGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraMaynard Ferguson & His OrchestraDennis Farnon And His OrchestraTatum - Eldridge - Stoller - Simmons QuartetFlip Phillips SextetThe Harry Edison QuartetThe Charlie Shavers QuintetHeinie Beau And His Hollywood Jazz QuartetHarry Edison SextetHal Schaefer TrioSoundstage All-StarsBen Webster SeptetConrad Gozzo And His OrchestraBuddy DeFranco And The All-StarsBob Romeo Sextet + +258469Harry EdisonHarry EdisonAmerican jazz trumpet player, sometimes credited as Harry 'Sweets' Edison +Born October 10, 1915 in Columbus, Ohio, died July 27, 1999Needs Votehttp://en.wikipedia.org/wiki/Harry_%22Sweets%22_Edisonhttps://riverwalkjazz.stanford.edu/?q=program/inventive-mr-edison-life-music-harry-sweets-edisonhttps://www.allmusic.com/artist/harry-sweets-edison-mn0000670641http://www.bluenote.com/artist/harry-sweets-edison/https://adp.library.ucsb.edu/names/103072"Sweets" Edison'Sweets' EdisonEdisonH EdiscH. "Sweet" EdisonH. "Sweets" EdisonH. (Sweets) EdisonH. E. EdisonH. EdisonH. SweetsH.E. EdisonH.EdisonH.S. EdisonHarold "Sweets" EdisonHarrie EdisonHarris EdisonHarryHarry " Sweets " EdisonHarry "Sweats" EdisonHarry "Sweet" EdisonHarry "Sweets EdisonHarry "Sweets Edison"Harry "Sweets" AndersonHarry "Sweets" EddisonHarry "Sweets" EdisionHarry "Sweets" EdisonHarry "Sweets"EdisonHarry "Sweets“ EdisonHarry "sweets" EdisonHarry ''Sweets'' EdisonHarry 'Sweets" EdisonHarry 'Sweets' EdisonHarry 'sweets' EdisonHarry (Sweets) EdisonHarry :Sweets" EdisonHarry E EdisonHarry E. "Sweets" EdisonHarry E. EdisonHarry EddisonHarry EdsonHarry Edward 'Sweets' EdisonHarry Edward EdisonHarry Sweet EdisonHarry Sweets EdisonHarry «Sweets» EdisonHarry “Sweets” EdisonHarry"Sweets" EdisonHendersonS. HendersonSweet EdisonSweets EdisonГ. ЭдисонХ. Эдисонハリーエジソンハリー・エディソンTrumpeter XSweets (15)Quincy Jones And His OrchestraCount Basie OrchestraMachito And His OrchestraWoody Herman And His OrchestraThe Ray Bryant ComboMetronome All StarsBillie Holiday And Her OrchestraBuddy Rich And His OrchestraCount Basie BandRay Ellis And His OrchestraIllinois Jacquet And His OrchestraBen Webster And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPaul Weston And His OrchestraFrank Newton And His OrchestraHarry Edison And His OrchestraThe Monterey Jazz Festival OrchestraThe Ernie Wilkins OrchestraManny Albam And His Jazz GreatsThe Trumpet KingsLouie Bellson OrchestraThe Buddy Bregman OrchestraLouie Bellson Big BandRed Norvo SextetTeddy Wilson And His All StarsThe Harry Edison QuartetThe Philip Morris SuperbandThe Frank Wess - Harry Edison OrchestraWoody Herman And His Third HerdThe Buddy Rich QuintetThe Quincy Jones Big BandCy Touff OctetZoot Sims - Bob Brookmeyer OctetThe Hampton Hawes All-StarsThe Harry "Sweets" Edison QuintetFlip Phillips And His OrchestraRed Callender SextetAlphonso Trent And His OrchestraThe Secret 7The Benny Carter GroupHarry Edison SextetThe Buddy DeFranco Big BandLionel Hampton And His GiantsHerb Ellis-Ray Brown SextetBuddy Rich All StarsPaul Quinichette And His SwingtetteThe Bill Potts Big BandJATP All StarsBen Webster SeptetSpike Robinson / "Sweets" Edison QuintetJo Jones And His OrchestraThe Louis Bellson OctetBuddy Rich NonetHarry Edison / Buddy Rich QuintetHarry Edison QuintetJo Jones SextetTorsten Zwingenberger & BandHarry Edison SixJazz Giants 1958Art Tatum SextetRed Mitchell And Friends + +258518The Mills BrothersAmerican vocal quartet, among the most unique and influential in the history of both jazz and mainstream popular music. +The four brothers were all born in Piqua, Ohio, United States - John Charles (born Oct. 19, 1910, died Jan. 24, 1936, Bellefontaine, Ohio), Herbert (born April 2, 1912, died April 12, 1989, Las Vegas, Nev.), Harry (born Aug. 19, 1913, died June 28, 1982, Los Angeles, Calif.), and Donald (born April 29, 1915, died Nov. 13, 1999, Los Angeles). +After moving to New York, the group became a sensation and hit it big during 1931 and early 1932 with their versions of "Tiger Rag" and "Dinah". +During the years 1933-1935, the Brothers starred with Crosby for Woodbury Soap in Bing Crosby Entertains, making 27 appearances in all on the CBS radio show. They also recorded their classics "Lazy Bones", "Sweet Sue", "Lulu's Back In Town", "Bye-Bye Blackbird", "Sleepy Head", and "Shoe Shine Boy". Their film appearances included Twenty Million Sweethearts (Warner Brothers, 1934) and Broadway Gondolier (Warner Brothers, 1935). +After John's death in 1936, their father, also called John (born Feb. 11, 1889, Bellefontaine,Ohio, died Dec. 8, 1967, Bellefontaine) joined the group. He retired in 1956 and the group became a trio. +Through 1939 the group enjoyed remarkable success in Europe. During the Second World War, there was also a brief time when the group performed with a non family singer. Gene Smith served as a stand-in for one year when the Army drafted Harry. Although Smith's solo singing did not particularly resemble the group's usual sound, he was able to harmonize well until the fourth brother's return. Smith is noticeable in a number of the Mills Brothers' film appearances. +The rise of rock and roll in the early fifties did little to decrease the Mills Brothers popularity. In 1957, John Sr., aged 68, stopped touring with the group. As a trio, the Mills Brothers were frequent guests on numerous television programs. The Mills Brothers' celebrated their fiftieth anniversary in show business in 1976.Needs Votehttps://www.themillsbrothers.com/https://en.wikipedia.org/wiki/The_Mills_Brothershttps://www.singers.com/group/Mills-Brothers/https://www.scaruffi.com/vol1/mills.htmlhttps://adp.library.ucsb.edu/names/103495Die Mills BrothersDie Mills-BrothersHarry, Donald, Herbert And John Sr.Herbert, Harry, Donald, John MillsJohn, Herbert, Harry And Donald MillsLos Mills BrothersMill BrothersMillls BrothersMills BrosMills Bros.Mills Bros. TheMills BrotherMills BrothersMills Brothers Four Boys And A GuitarMills Brothers Novelty QuartetMills Brothers QuartetMills Brothers, Four Boys And A GuitarMills Brothers, Four Boys and a GuitarMills Brothers, Novelty QuartetQuartetto Vocale Mills BrothersThe Curtis BrothersThe Four Mills BrothersThe Mill Bros.The Mills BrosThe Mills Bros.The Mills Bros..The Mills Brothers (Four Boys And A Guitar)The Mills Brothers (Four Brothers and a Guitar)The Mills Brothers And OrchestraThe Mills Brothers QuartetБратья Миллсミルス・ブラザースBernard AddisonHarry MillsJohn MillsHerbert MillsDonald MillsNorman Brown (3)John Mills Jr. + +258622Jess RodenJeremy Francis RodenJess Roden is an English Blue-Eyed Soul & Rock singer, a guitarist and songwriter, born 28 December 1947, Kidderminster, Worcestershire.Needs Votehttp://www.jessroden.com/http://en.wikipedia.org/wiki/Jess_Rodenhttp://www.rockzirkus.de/lexikon/bilder/r/roden/roden.htmJ. RhodenJ. RodenJ.RodenJeremeyJeremey RodenJeremy RodenJessJess RhodenJesse RodenRhodenRodenRubenThe Alan Bown SetThe Jess Roden BandButts BandBronco (4)Seven WindowsThe Rivits + +258645Heikki VirtanenHeikki Atte VirtanenFinnish jazz and rock bassist, born 4 September 1953 in Helsinki, Finland. As a studio musician, he is the most recorded bassist in Finnish music history, with over 5,000 recorded songs.Needs Vote"Häkä" VirtanenH. VirtanenH.VirtanenHeikki "Häkä VirtanenHeikki "Häkä" VirtanenHeikki "Häkä" Virtanen"Heikki 'Häkä' VirtanenHeikki «Häkä» VirtanenHeikki ”Häkä” VirtanenHäkäHäkä VirtanenVirtanenEero Koivistoinen Music SocietyTasavallan PresidenttiSoulsetJukka Tolonen BandPepe & ParadiseMosaic (8)Jani Uhleniuksen Uusrahvaanomainen OrkesteriThe Islanders (5)Olli Ahvenlahti EnsembleHelp (5)Bumtsibum-OrkesteriEdward Vesala Sound & FuryJarmo Savolainen NonetJarmo Savolainen QuartetBitter Sweet (3)Jarno Kukkonen BandJukka Tolonen Ramblin' Jazz BandJukka Hauru & SuperkingsMike Koskinen Orchestra + +258682Dave Matthews (2)David MatthewsAmerican jazz saxophonist (alto and tenor) and arranger. Born June 6, 1911 in Charing Falls, Ohio. Died 1997.Needs Votehttps://en.wikipedia.org/wiki/Dave_Matthews_(saxophonist)D. MathewsD. MatthewsDave MathewsDave MatthewsMathewsMatthewsHarry James And His OrchestraWoody Herman And His OrchestraJack Teagarden's ChicagoansCharlie Barnet And His OrchestraBenny Goodman And His OrchestraDave Matthews And His OrchestraBud Freeman And His GangThe Capitol Jazzmen"Hot Lips" Page SextetHot Lips Page And His Band + +258684Russell ProcopeRussell ProcopeJazz saxophonist & clarinet player. + +Born: August 11, 1908 in New York City, New York. +Died: January 21, 1981 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Russell_Procopehttps://www.allmusic.com/artist/russell-procope-mn0000180902/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/23646a86d0b46453d5fac178ab13eedab2956/biographyhttps://mosaicrecords.tumblr.com/post/190066450264/russell-procope-on-the-john-kirby-band-heres-ahttps://adp.library.ucsb.edu/names/107084ProcopeProscopeR. K. ProcopeR. ProcopeRPRusell ProcopeRuss ProcopeRussel ProcopeRussellRussell PrcopeRussell PrecopeРассел ПрокоупРасселл ПрокопJohn Kirby And His OrchestraDuke Ellington And His OrchestraJohn Kirby SextetFletcher Henderson And His OrchestraLionel Hampton And His OrchestraFletcher Henderson And His Connie's Inn OrchestraConnie's Inn OrchestraJohn Kirby And His Onyx Club BoysHorace Henderson And His OrchestraFrankie Newton And His Uptown SerenadersClarence Williams And His OrchestraMildred Bailey And Her OrchestraTeddy Hill OrchestraJelly Roll Morton And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraClarence Williams' Jazz KingsBuster Bailey's Rhythm BustersBilly Strayhorn's SeptetTeddy Hill And His NBC OrchestraDuke Ellington All Star Road BandErnie Royal And His All StarsBuster Bailey's SixTimme Rosenkrantz And His Barrelhouse BaronsLawrence Brown's All-StarsRussell Procope's Big SixJohnny Hodges & His Big BandHarry Carney's All StarsBuster Bailey SextetGinny Simms And Her OrchestraJohnny Hodges SeptetHawkins Orchestra + +258685Clyde HartClyde Hart.American jazz pianist and arranger. + +Born : February 24, 1910 in Baltimore, Maryland. +Died : March 19, 1945 in New York City. +Needs Votehttps://en.wikipedia.org/wiki/Clyde_Hart_(pianist)http://www.jazzarcheology.com/clyde-hart/https://www.jazzitaward.it/musica/clyde-hart-vita-musica/https://rateyourmusic.com/artist/clyde_hart/credits/https://adp.library.ucsb.edu/names/111113C. HartClide HartClyde HeartHartDizzy Gillespie And His OrchestraCozy Cole All StarsBillie Holiday And Her OrchestraLionel Hampton And His OrchestraBilly Eckstine And His OrchestraDizzy Gillespie QuintetStuff Smith And His Onyx Club BoysLucky Millinder And His OrchestraRoy Eldridge And His OrchestraDizzy Gillespie SextetClyde Hart All StarsColeman Hawkins And His OrchestraDeLuxe All Star BandTiny Grimes QuintetHot Lips Page And His OrchestraBlanche Calloway And Her Joy BoysColeman Hawkins All StarsWalter Thomas' OrchestraColeman Hawkins SeptetChu Berry & His Little Jazz EnsembleDe Paris Brothers OrchestraHot Lips Page & His Hot SevenDizzy Gillespie All StarsPutney Dandridge And His OrchestraTrummy Young All StarsDick Porter And His OrchestraOscar Pettiford And His 18 All StarsChu Berry And His Jazz EnsembleBen And The Boys + +258686Babe RussinIrving RussinJazz saxophonist +Born June 18, 1911, Pittsburgh, Pennsylvania, USA, died August 4, 1984, Los Angeles, California, USANeeds Votehttps://en.wikipedia.org/wiki/Babe_Russinhttps://sites.google.com/site/pittsburghmusichistory/pittsburgh-music-story/jazz/jazz---early-years/babe-russenhttps://dbpedia.org/page/Babe_Russinhttps://www.radioswissjazz.ch/en/music-database/musician/327140746fd9c3ed48f2408b4a695e81672bd3/biographyhttp://worldcat.org/identities/lccn-no95050341/https://www.imdb.com/name/nm0751546/https://adp.library.ucsb.edu/names/110107"Babe" RussinB. RusinB. RussinBaba RussinBabe RusinBabe Russin QuintetBaby RussinHammond "Babe" RussinI. RussinIRIrving "Babe" RussinIrving "Babe"RussinIrving 'Babe' RussinIrving RassinIrving Rassin (IR)RusinRussinRussin, BabeTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraBillie Holiday And Her OrchestraTommy Dorsey And His Clambake SevenLouis Armstrong And His All-StarsWingy Manone & His OrchestraGlenn Miller And His OrchestraArtie Shaw And His OrchestraClaude Thornhill And His OrchestraLarry Clinton And His OrchestraTeddy Wilson And His OrchestraRussell Garcia And His OrchestraBenny Goodman And His OrchestraPaul Weston And His OrchestraGeorgie Auld And His OrchestraMiff Mole's MolersJohn Scott Trotter And His OrchestraThe Universal-International OrchestraJimmy Mundy OrchestraWoody Herman And The Swingin' HerdGlen Gray & The Casa Loma OrchestraJerry Gray And His OrchestraThe Charleston ChasersMembers Of The Benny Goodman OrchestraJuan Tizol & His OrchestraWoody Herman And His Third HerdHot Rod Rumble OrchestraBabe Russin & His OrchestraManny Klein's All StarsClyde Hurley & His OrchestraThe InstrumentalistsThe Tom Talbert Jazz OrchestraFrank Farrell And His Greenwich Village Inn OrchestraBabe Russin QuartetBabe Russin Quintet + +258687Mezz MezzrowMilton MesirowAmerican jazz clarinetist and saxophonist (tenor) player. + +Born: October 09, 1899 in Chicago, Illinois. +Died: August 05, 1972 in Paris, France. +Needs Votehttps://en.wikipedia.org/wiki/Mezz_Mezzrowhttp://www.redhotjazz.com/mezz.htmlhttps://adp.library.ucsb.edu/names/105289"Mezz" MezzrowBennie MesirowM. M. MezzrowM. MezzroM. MezzrowM.M.M.M.MezzrowMIlton "Mezz" MezzrowMelton MezzrowMez MezzrouMezz MeezrowMezz MerrowMezz MezrowMezz MezzerowMezz MezzirowMezz MezzrovMezz Mezzrow SeptetMezz-MezzrowMezzirovMezzowMezzroMezzrowMilt MesirowMilt MezzrowMilto "Mezz" MezzrowMiltonMilton "Mezz" MezrowMilton "Mezz" MezzronMilton "Mezz" MezzrowMilton "Mezz" Mezzrow*Milton 'Mezz' MezzrowMilton MesirowMilton Mezz MesirowMilton Mezz MezzrowMilton Mezz Mezzrow.Milton Mezz MezzzowMilton Mezz-MezzrowMilton MezzroMilton MezzrowMilton « Mezz » MezzrowMilton «Mezz» MezzrowMolton MezzrowMosirow„Mezz“ MezzrowFats Waller & His RhythmLionel Hampton And His OrchestraTommy Ladnier And His OrchestraThe Mezzrow-Bechet SeptetThe Mezzrow-Bechet QuintetEddie Condon And His Hot ShotsEddie's Hot ShotsEddie Condon And His FootwarmersMezz Mezzrow And His OrchestraMezz Mezzrow And His Swing BandMezzrow-Ladnier QuintetFrank Newton And His OrchestraEddie Condon And His All-StarsLouisiana Rhythm KingsLadnier-Mezzrow All-StarsBechet-Mezzrow FeetwarmersLionel Hampton And His Paris All StarsChicago Rhythm KingsArt Hodes' Blue FiveJungle Kings (2)"Big Chief" Russell Moore And His OrchestraJimmy Johnson And His BandEmmett Berry And His OrchestraMezzrow-Ladnier QuartetGeorge Wettling Jazz TrioMezzrow-Saury QuintetRosetta Crawford And Her Hep CatsMezz Mezzrow SextetSedric-Clayton SextetMezz Mezzrow TrioMezz Mezzrow SeptetMezz Mezzrow-Buck Clayton Orchestra + +258688Irving RandolphIrving RandolphAmerican jazz trumpeter, born 22 January 1909 in St. Louis, Missouri, USA, died 12 December 1997. +Played with Walt Farrington 1923-1924, [a=Fate Marable] 1927, [a=Floyd Campbell (2)] 1927-1928, [a=Alphonso Trent] 1928, a.o. +After working with [a=Andy Kirk] 1931-1934 he played in big bands under [a=Luis Russell] 1934-1935, [a=Cab Calloway] 1935-1939, [a=Ella Fitzgerald] 1939-1942, and [a=Don Redman] 1943. From 1944 to 1947 member of [a=Edmond Hall]'s sextet. During 1950s toured with [a=Marcellino Guerra]'s Latin American orchestra, and from 1958 into the 1970s worked regularly with Chick Morrison in New York.Needs Votehttp://en.wikipedia.org/wiki/Mouse_Randolphhttps://www.allmusic.com/artist/irving-mouse-randolph-mn0001737258/biographyhttps://www.radioswissjazz.ch/en/music-database/musician/136018b143ba97c6b8f33c65945c7750f92515/discographyhttp://www.jazzarcheology.com/artists/irving_randolph.pdfhttps://adp.library.ucsb.edu/names/112500I. RandolphIrv RandolphIrving "Mouse" RandolphIrving "Mousie" RandolphIrving 'Mouse' RandolphIrving (Mouse) RandolphIrving Mouse RandolphJ. RandolphMouse RandolphMousie RandolphRandolphCab Calloway And His OrchestraFletcher Henderson And His OrchestraTeddy Wilson And His OrchestraEdmond Hall Swing SextetElla Fitzgerald And Her Famous OrchestraEdmond Hall And His OrchestraChu Berry And His OrchestraAlphonso Trent And His OrchestraChu Berry And His Stompy StevedoresThe Ellis Larkins Orchestra + +258689Gene KrupaEugene Bertram KrupaAmerican jazz drummer, composer and bandleader +Born 15 January 1909 in Chicago, Illinois, USA +Died 16 October 1973 in Yonkers, New York, USA + +He played with many artists including [a=Red Nichols], [a=Red McKenzie], [a=Eddie Condon], [a=Bix Beiderbecke], [a=Frank Teschemacher], [a=Benny Goodman], and in his own bands excellent players including [a258692], [a330694], [a693030], [a335577], [a330702], [a258459] and singers including [a258903] and [a381569].Needs Votehttp://www.gkrp.net/http://en.wikipedia.org/wiki/Gene_Krupahttps://www.hepjazz.com/hep_jazz_artist_biographies/gene_krupa.htmlhttps://www.drummerworld.com/drummers/Gene_Krupa.htmlhttps://www.britannica.com/biography/Gene-Krupahttp://www.drummerman.net/biography.htmlhttps://adp.library.ucsb.edu/names/103342G. KrupaG.KrupaGene CrupaGene GrupaGene KlupaGene Krupa BandGene KrupaerGene KruppaGrupaJean KruppaKrupaKrupoKruppaThe Rocking Mr. KrupaChicago FlashGene Krupa Jazz TrioThe Benny Goodman QuartetMetronome All StarsBenny Goodman SextetBenny Goodman TrioThe Benny Goodman QuintetGene Krupa And His OrchestraLionel Hampton And His OrchestraLouis Armstrong And His All-StarsMcKenzie & Condon's ChicagoansHoagy Carmichael And His OrchestraBix Beiderbecke And His OrchestraTeddy Wilson And His OrchestraThe New Music Of Reginald ForesytheThe Mound City Blue BlowersGene Krupa And His Swinging Big BandBenny Goodman And His OrchestraGene Krupa TrioGene Krupa And His ChicagoansIrving Mills And His Hotsy Totsy GangThe Charleston ChasersGene Krupa All-StarsChicago Rhythm KingsThe Gene Krupa QuartetThe Gene Krupa SextetThe Benson Orchestra Of ChicagoGene Krupa And The Band That Swings With StringsMel Powell & His All-StarsGene Krupa's Swing BandJungle Kings (2)Gene Krupa/Charlie Ventura TrioRed Norvo & His Swing OctetFrank Teschemacher's ChicagoansGene Krupa & His Chicago JazzOscar Peterson & FriendsGene Krupa ComboJam Session All-StarsThe Jam DandiesThe Gene Krupa Big Band + +258690Harry GoodmanAmerican jazz bassist, & sometimes tuba player. Brother of [a=Benny Goodman], [a312544], and [a=Freddy Goodman]. +Born: August 15, 1906 in Chicago, Illinois. +Died: October 22, 1997 in Gstaad, Switzerland. +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100167/Goodman_Harryhttps://www.allmusic.com/artist/harry-goodman-mn0000918302#creditshttps://web.archive.org/web/20231021175826/https://www.radioswissjazz.ch/en/music-database/musician/41537d37d61c7d2c948fddbe2467bd57f7b98/discographyB. GoodmanGoodmanH. GoodmanH.GoodmanBenny Goodman SextetLionel Hampton And His OrchestraWingy Manone & His OrchestraHoagy Carmichael And His OrchestraJack Teagarden And His OrchestraTeddy Wilson And His OrchestraBen Pollack And His Park Central OrchestraBenny Goodman And His OrchestraIrving Mills And His Hotsy Totsy GangThe Charleston ChasersEddie Lang-Joe Venuti And Their All Star OrchestraWhoopee MakersBen's Bad BoysBen Pollack And His CaliforniansPaul Mills And His Merry MakersGil Rodin And His OrchestraThe Jam Dandies + +258692Vido MussoVido William MussoVido Musso (born January 17, 1913, Carini, Sicily, Italy - died January 9, 1982 in Rancho Mirage, California, USA) was an Italian-born American jazz tenor saxophonist, clarinetist and bandleader. He worked with: [a254768], [a258689], [a229639], [a313097], [a212786], [a239399], [a30486] and many others. + + + +Needs Votehttps://en.wikipedia.org/wiki/Vido_Mussohttps://www.allmusic.com/artist/vido-musso-mn0000219646/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/4266922e42b3d279db472897aa1674d1d96d3/biographyhttps://www.imdb.com/name/nm0615902/https://adp.library.ucsb.edu/names/106420Fido MussoMussoV. MussoV. RussoVdo MussoVida MussoTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraMetronome All StarsGene Krupa And His OrchestraGene Norman's "Just Jazz"Lionel Hampton And His OrchestraStan Kenton And His OrchestraTeddy Wilson And His OrchestraBenny Goodman And His OrchestraPete Rugolo OrchestraVido Musso And His OrchestraVido Musso SextetMembers Of The Benny Goodman OrchestraVido Musso's All StarsThe Sunset All StarsEddie Safranski's All StarsThe Band That Plays The BluesVido Musso Big Seven + +258693Arthur RolliniArthur Francis RolliniAmerican jazz tenor saxophonist. +Born 13 February 1912 in New York City, New York. +Died 1 January 1995 in Florida. + +Arthur Rollini is best known for his work with [a=Benny Goodman And His Orchestra]. +He is the brother of famed bass saxophonist [a=Adrian Rollini]. + +Needs Votehttps://en.wikipedia.org/wiki/Arthur_Rollinihttps://www.allmusic.com/artist/arthur-rollini-mn0000910562/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13996672c0a622520702e5b5f9de27111ef05/discographyhttps://adp.library.ucsb.edu/names/105880A. RolliniArt RolliniRolliniHarry James And His OrchestraMetronome All StarsLouis Armstrong And His OrchestraLionel Hampton And His OrchestraZiggy Elman & His OrchestraRuss Morgan And His OrchestraBenny Goodman And His OrchestraAdrian Rollini And His OrchestraAll Star Band (4)Hank D'Amico SextetHank D'Amico OrchestraBrad Gowans And His New York Nine + +258694Bobby BennettJazz guitarist.Needs VoteB. BennettBobby BennetR. BennettRobert "Bobby" BennettRobert BennettRobert « Bobby » BennettLionel Hampton And His OrchestraStuff Smith And His Onyx Club BoysDick Porter And His Orchestra + +258696Cootie WilliamsCharles Melvin WilliamsAmerican jazz trumpet player; born July 10, 1911 in Mobile, Alabama, USA, died September 15, 1985 in New York City, New York, USA + +Williams began his career with the Young family band, which included [a=Lester Young], when he was aged 14. A member of the orchestra of [a=Duke Ellington] from 1929, he replaced [a=Bubber Miley] whose 'growl' technique he expanded. He was succeeded by [a=Ray Nance] in 1940 when Williams joined [a=Benny Goodman], remaining with Goodman for a year. During the 1940s, he led his own orchestra, with both [a=Thelonious Monk] and [a=Bud Powell] hired as the pianist during this period. Williams rejoined Ellington in 1962 remaining until 1974.Needs Votehttp://en.wikipedia.org/wiki/Cootie_Williamshttps://www.nytimes.com/1985/09/16/arts/cootie-williams-ellington-trumpeter-dead.htmlhttps://storyvillerecords.com/product-category/cootie-williams/?product_orderby=popularity&product_count=16https://repertoire.bmi.com/Search/Catalog?num=Qb%252f%252fR%252fYXSUjCRxp0mbpagg%253d%253d&cae=pdEV5Zq1EAc5ErMmrZh8vA%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22WILLIAMS%20CHARLES%20COOTIE%22%2C%22Sub_Search_Text%22%3A%22%22%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A20%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dhttps://www.britannica.com/biography/Cootie-Williamshttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/25317402710bda9efe4bd6acd69423a5fbb539/biographyhttps://www.allmusic.com/artist/cootie-williams-mn0000780401/biographyhttps://adp.library.ucsb.edu/names/103275"Cootie" WilliamsA. WilliamsC M WilliamsC WilliamsC, WilliamsC. C. WilliamsC. WIlliamsC. WiliamsC. WillamsC. WilliamsC. WilliansC. WillilamsC. WillimasC. WilsonC. WlliamsC.M WilliamsC.M. WilliamsC.WilliamsCWCh. WilliamsCharles "Cootie" WiliamsCharles "Cootie" WilliamsCharles 'Cootie' WilliamsCharles Cootie WilliamsCharles M. "Cootie" WilliamsCharles Melvin "Cootie" WilliamsCharles Melvin WilliamsCharles Melvin “Cootie” WilliamsCharles WilliamsCharlie WilliamsCody WilliamsCoity WilliamsCookie WilliamsCootieCootie M. WilliamsCootie WilliamCootie Williams (Haninghen)Cottie WilliamsD1Dave "Cootie" WilliamsFrancis "Cootie" WilliamsFrancis WilliamsG. WilliamsI. WilliamsN. WilliamsRev. Cootie WilliamsS. WilliamsVilliamsW. CoolieW. CootieWiliamsWillamsWilliamWilliam CootieWilliamsWilliams & Co.Williams C.Williams CookieК. ВильямсК. УильямсКути УильямсУильямсЧарлз «Кути» УильямсDuke Ellington And His OrchestraMetronome All StarsBenny Goodman SextetCootie Williams & His Rug CuttersLionel Hampton And His OrchestraThe Whoopee MakersTeddy Wilson And His OrchestraDuke Ellington And His Cotton Club OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetThe Harlem FootwarmersLeonard Feather All StarsThe Jungle Band (2)The Georgia SyncopatorsJohnny Hodges And His OrchestraJimmy Johnson And His OrchestraThe Gotham StompersIvie Anderson And Her Boys From DixieDuke Ellington Alumni All StarsCootie Williams SextetDuke Ellington All Star Road BandMetronome All-Star BandCharlie Christian JammersThe Memphis Hot ShotsStewart - Williams & Co.Barney Bigard And His JazzopatersThe Harlem Music MastersCootie Williams SeptetCootie Williams With His Rhythm SectionDuke Ellington's Philadelphia MelodiansCootie Williams Big Band + +258697Jerry JeromeAmerican jazz tenor and alto saxophonist, clarinetist, composer and arranger. In the 1930's and 1940's he played with [a412673], [a77991], [a269597], [a254768], and [a306398]. He also did A&R for Apollo Records and served as musical director for WPIX-TV. He later became a successful jingles producer. + +Born : June 19, 1912 in Brooklyn, New York City, New York, USA. +Died : November 17, 2001 in Sarasota, Florida, USA. +Needs Votehttps://en.wikipedia.org/wiki/Jerry_Jerome_(saxophonist)https://www.theguardian.com/news/2001/nov/30/guardianobituaries2https://adp.library.ucsb.edu/index.php/mastertalent/detail/323408/Jerry_Jerome_Orchestrahttps://artsandculture.google.com/entity/jerry-jerome/m03xmrs_?hl=enhttps://adp.library.ucsb.edu/names/109955J. JeromeJeromeJerry Jerome And His OrchestraLionel Hampton And His OrchestraZiggy Elman & His OrchestraArtie Shaw And His OrchestraTeddy Wilson TrioSy Oliver And His OrchestraBenny Goodman And His OrchestraRed Norvo And His OrchestraYank Lawson And His OrchestraJoe Thomas And His OrchestraYank Lawson's Jazz BandJerry Jerome & His Cats & JammersAllstars (11)Jerry Jerome And His OrchestraJerry Jerome's All StarsThe Jerry Jerome QuintetteThe Bob Wilber Big BandJam Session At The Riverside + +258698Buster BaileyWilliam C. BaileyAmerican jazz clarinetist and saxophone player from the swing-era.. +Born July 19, 1902 in Memphis, Tennessee, USA +Died April 12, 1967 in New York City, New York, USA. Needs Votehttps://en.wikipedia.org/wiki/Buster_Baileyhttps://www.imdb.com/name/nm0047171/bio?ref_=nm_ov_bio_smhttps://www.encyclopedia.com/education/news-wires-white-papers-and-books/bailey-buster-william-c-1902-1967https://www.allaboutjazz.com/tag-buster-baileyhttps://adp.library.ucsb.edu/names/104696B. BaileyBaileyBuster BaileryBuster BailexBuster Bailey, Sr.Buster BailyW. "Buster" BaileyWilliam "Buster" BaileyWilliam "Buster" BailyWilliam 'Buster' BaileyWilliam BaileyWilliam Buster BaileyWilliam «Buster» BaileyJohn Kirby And His OrchestraThe International JazzmenKing Oliver's Creole Jazz BandJohn Kirby SextetBillie Holiday And Her OrchestraThe Harlem HamfatsThe Red Onion Jazz BabiesFletcher Henderson And His OrchestraLionel Hampton And His OrchestraClarence Williams' Blue FiveKing Oliver's Jazz BandThe Dixie StompersStuff Smith And His Onyx Club BoysWingy Manone & His OrchestraThe Louisiana StompersTeddy Wilson And His OrchestraLucky Millinder And His OrchestraJohn Kirby And His Onyx Club BoysMamie Smith And Her Jazz HoundsThe Harlem Blues SerenadersMildred Bailey And Her OrchestraSidney Bechet & His Circle SevenErskine Tate's Vendome OrchestraPerry Bradford Jazz PhoolsHenry "Red" Allen And His OrchestraHenderson's Hot SixBessie Smith And Her BandBessie Smith And Her Blue BoysClarence Williams' Jazz KingsDanny Barker's Fly CatsThe Mills Blue Rhythm BandThe Saints & SinnersIda Cox And Her Five Blue SpellsBuster Bailey's Rhythm BustersSidney Bechet's SevenPutney Dandridge And His Swing BandBuster Bailey Swing GroupHenry "Red" Allen's All StarsEarl Randolph's OrchestraMamie Smith & Her Jazz BandTrixie Smith And Her Down Home SyncopatorsJerry Kruger & Her Knights Of RhythmBuster Bailey QuartetFletcher Henderson's CollegiansBuster Bailey & His OrchestraChu Berry And His Stompy StevedoresJonah Jones And His OrchestraThe Fletcher Henderson All StarsPutney Dandridge And His OrchestraBuster Bailey's Rhythm BandThe Spencer TrioBuster Bailey's SixClaude Hopkins All StarsClarence Williams' Washboard FiveBilly Kyle's Big EightBuster Bailey And His Seven Chocolate DandiesTrummy Young's Big SevenBuster Bailey SextetDave Nelson And The King's MenGinny Simms And Her OrchestraSam Price's Fly CatsDave's Harlem HighlightsHenderson's Roseland Orchestra + +258699George KoenigGeorge Francis KoenigAmerican jazz saxophonist, clarinetist and flutist, worked (among other) with Benny Goodman, Artie Shaw and Bob Crosby. +Born: December 02, 1911. +Died: August 20, 1999.Needs Votehttps://www.radioswissjazz.ch/en/music-database/musician/5410791f35a9bb7edeb7c54fa25e9a46b4a14/titleshttps://adp.library.ucsb.edu/names/205477G. KoenigGeorge KoenerGeorge KoeningGeorge KonigGeorge KönigGeroge KoenigKoenigLouis Armstrong And His OrchestraLionel Hampton And His OrchestraArtie Shaw And His OrchestraTeddy Powell And His OrchestraBob Haggart And His OrchestraBenny Goodman And His Orchestra + +258700John KirbyJohn KirkJazz bassist. +Born: December 31, 1908 in Winchester, VA, USA +Died: June 14, 1952 in Hollywood, USA + +Originally a trombone/tuba player, John Kirby switched with success to bass in 1930 in [a=Fletcher Henderson]'s orchestra. +He gained success in the end of the 1930s with his own sextet, previously named The Onyx Club Boys, with occasional vocals provided by his (at this time) wife [a=Maxine Sullivan]. +After World War II his career declined and he died before a planned comeback. +Needs Votehttp://en.wikipedia.org/wiki/John_Kirby_%28musician%29http://www.allmusic.com/artist/john-kirby-mn0000230656http://www.columbia.edu/~lnp3/mydocs/culture/kirby.htmhttps://www.ejazzlines.com/big-band-arrangements/by-performer/john-kirby-band-charts/https://www.scaruffi.com/jazz/kirby.htmlhttps://adp.library.ucsb.edu/names/105538J. KirbyJohn KerrJohn KirkbyKirbyДж. КёрбиKirby WrightJohn Kirby And His OrchestraThe International JazzmenMetronome All StarsJohn Kirby SextetBenny Goodman TrioBillie Holiday And Her OrchestraThe Benny Goodman QuintetFletcher Henderson And His OrchestraThe Chocolate DandiesLionel Hampton And His OrchestraWingy Manone & His OrchestraFletcher Henderson And His Connie's Inn OrchestraCharlie Barnet And His OrchestraClaude Thornhill And His OrchestraTeddy Wilson And His OrchestraChick Webb And His OrchestraThe New Music Of Reginald ForesytheColeman Hawkins And His OrchestraMezz Mezzrow And His OrchestraConnie's Inn OrchestraJohn Kirby And His Onyx Club BoysHorace Henderson And His OrchestraThe Capitol International JazzmenFrank Newton And His OrchestraColeman Hawkins' All American FourMildred Bailey And Her OrchestraFreddie Jenkins And His Harlem SevenHenry "Red" Allen And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraBuster Bailey's Rhythm BustersPutney Dandridge And His Swing BandJerry Kruger & Her Knights Of RhythmBen Webster SextetBuster Bailey & His OrchestraJohnny Dodds And His Chicago BoysPutney Dandridge And His OrchestraBuster Bailey's SixDick Porter And His OrchestraJohn Kirby And His QuintetBuster Bailey SextetThe Jungle Band (3)Jack Sneed And His SneezersJam Session All-StarsHawkins Orchestra + +258701Benny CarterBennett Lester CarterAmerican jazz saxophonist, trumpeter, clarinetist, vocalist, bandleader and composer +Born on August 8, 1907 in New York City, New York. USA, died on July 12, 2003 in Los Angeles, California, USANeeds Votehttp://www.bennycarter.com/https://bennycarter.bandcamp.com/https://en.wikipedia.org/wiki/Benny_Carterhttp://www.jazzarcheology.com/benny-carter-clarinet/https://www.britannica.com/biography/Benny-Carterhttps://www.scaruffi.com/jazz/carter.htmlhttps://www.imdb.com/name/nm0141481/https://adp.library.ucsb.edu/names/103374"King" Benny CarterB CarterB. C.B. CarterB. Carter (?)B. GarterB.CarterBen CarterBennett "Benny" CarterBennett Lester "Benny" CarterBennie CarterBenny BarterBenny Carte.Benny Carter QuintetBenny Carter's "Little Jazz Pills"Benny Carter's OrkesterBenny Carter?Benny-CarterC.CarrterCarterCarter KingCarter Vol.2.Carter.K. CarterKingKing Carter»King» Benny CarterБенни КартерКартърベニー・カーターL. LeeBilly CartonThe International JazzmenMcKinney's Cotton PickersMetronome All StarsBillie Holiday And Her OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesLionel Hampton And His OrchestraDizzy Gillespie Big BandTeddy Wilson And His OrchestraChick Webb And His OrchestraRussell Garcia And His OrchestraBenny Carter And His OrchestraMezz Mezzrow And His OrchestraThe Little Chocolate DandiesSpike Hughes And His Negro OrchestraBen Webster And His OrchestraBenny Carter And His Swinging QuintetThe Capitol International JazzmenLeonard Feather All StarsJulia Lee & Her Boy FriendsColeman Hawkins And His All Star Jam BandStanley Wilson And His OrchestraColeman Hawkins' All Star OctetCharlie Johnson & His OrchestraJoe Marsala And His Delta SixBenny Carter And His Swing QuartetDanny Barker's Fly CatsVarsity SevenCharlie Johnson & His Paradise BandBenny Carter 4Benny Carter QuintetBenny Carter ComboBen Webster SextetBuster Bailey & His OrchestraThe Benny Carter GroupThe Benny Carter QuartetBenny Carter & His Chocolate DandiesMetronome All-Star BandBuddy Rich All StarsArnold Ross QuintetBenny Carter & His Swing QuintetBen Webster SeptetTen Cats And A MouseRed Norvo's NineWillie Lewis & His EntertainersThe Benny Carter All-Star Sax EnsembleGene Krupa ComboBenny Carter And His Club Harlem OrchestraBuster Bailey And His Seven Chocolate DandiesThe Benny Carter SextetBenny Carter And His All StarsBenny Carter & His StringsColeman Hawkins And His Hot SevenColeman Hawkins & FriendsBenny Carter And The Jazz GiantsMel Martin/Benny Carter Quintet + +258702Jo JonesJonathan David Samuel JonesJo Jones (born October 7, 1911, Chicago, Illinois, USA - died September 3 1985, New York City, New York, USA) was an American jazz drummer. He was sometimes known as Papa Jo Jones to distinguish him from younger drummer [a257251]. + + +Needs Votehttps://en.wikipedia.org/wiki/Jo_Joneshttps://www.britannica.com/biography/Jo-Joneshttps://www.allmusic.com/artist/jo-jones-mn0000134722/biographyhttps://musicians.allaboutjazz.com/jojoneshttps://jazzprofiles.blogspot.com/2018/06/papa-jo-jones-1911-1985-man-who-played.htmlhttps://adp.library.ucsb.edu/names/324009"Papa" Jo JonesJ. JonesJ.JonesJo "The Tiger" JonesJo JoneJo Jones And FriendsJo Jones And His BandJoe JonesJonathan "Jo" JonesJonathan 'Jo' JonesJonathan JonesJonesJones, Jonathan (Jo)Papa Jo JonesPapa Joe JonesThe Joe Jones SpecialДжо Джонсジョージョーンズジョー・ジョーンズQuincy Jones And His OrchestraColeman Hawkins QuartetCount Basie OrchestraBilly Taylor TrioThe Art Blakey Percussion EnsembleHarry James And His OrchestraCount Basie ComboMarlowe Morris QuintetKansas City SixBenny Goodman SextetBillie Holiday And Her OrchestraCount Basie And The Kansas City SevenBuck Clayton And His OrchestraCount Basie BandCount Basie, His Instrumentalists And RhythmThe New Orleans FeetwarmersTeddy Wilson And His OrchestraTeddy Wilson TrioSonny Stitt QuartetIllinois Jacquet And His OrchestraBenny Carter And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraTeddy Wilson QuartetLester Young QuartetJones-Smith IncorporatedGlenn Hardman And His Hammond FiveBenny Goodman SeptetSonny Stitt BandThe Kansas City SevenLester Young QuintetFrank Newton And His OrchestraThe Count Basie TrioSonny Rollins QuartetThe Cafe Society BandCount Basie SextetThe Milt Buckner TrioThe Buck Clayton SeptetMildred Bailey And Her OrchestraDickie Wells And His OrchestraThe Prestige All StarsRuby Braff All-StarsSir Charles Thompson QuartetJoe Bushkin QuartetThe Newport All StarsThe Jones BoysBasie's Bad BoysColeman Hawkins SeptetKansas City FiveThe Nat Pierce OrchestraJohnny Richards And His OrchestraThe Jazz Giants '56Lester Young And His OrchestraRuby Braff And His Big City SixElmer Snowden SextetThe Lester Young-Teddy Wilson QuartetSims-Brookmeyer QuintetThe Oscar Pettiford QuartetThe Jo Jones TrioThe Charlie Shavers QuintetJimmy Rushing And His OrchestraMel Powell & His All-StarsBill Doggett TrioJack Teagarden BandCount Basie Blue FiveThad Jones And His EnsembleCount Basie QuintetMarshall Royal QuintetRoy Eldridge & His Central Plaza DixielandersJack Teagarden's Dixieland Band2nd George Barnes QuartetMal Waldron's All StarsPaul Quinichette QuartetThe Count Basie QuartetThe Uptown Swing All StarsPaul Quinichette And His SwingtetteTimme Rosenkrantz And His Barrelhouse BaronsThad Jones QuintetCount Basie And His All-American Rhythm SectionJazz Artists GuildRuby Braff SextetThe Jimmy Rushing All StarsGeorge Wein's Storyville BandRed Norvo ComboJo Jones And His OrchestraCount Basie And His Kansas City FiveCootie Williams SeptetThe Count Basie BunchColeman Hawkins & FriendsJo Jones All Stars + +258703Ziggy ElmanHarry FinkelmanBorn: May 26, 1911 (or) 1914 in Philadelphia, Pennsylvania. +Died: June 25 (or) 26, 1968 in Los Angeles, California. +Ziggy played the trumpet and was a successful band leader. He's also known for playing with the [a374400] in the 1930s and the [a253855] in the 1940s. +Needs Votehttps://en.wikipedia.org/wiki/Ziggy_Elmanhttps://www.imdb.com/name/nm0255382/https://www.musicabaltica.com/en/composers-and-authors/ziggy-elman/https://www.allmusic.com/artist/ziggy-elman-mn0000697766/biographyhttps://www.encyclopedia.com/religion/encyclopedias-almanacs-transcripts-and-maps/elman-ziggyhttps://adp.library.ucsb.edu/names/116528"Ziggy" ElmanAlmanElanElimanEllmanElmanElman ZiggyElmarH. ElmanH. FinkelmanHarry Aaron FinkelmanHarry FinkelmanZ. EllmanZ. ElmanZ. ElmarZEZibby ElmanZig ElmerZiggie ElmanZiggyZiggy ElfmanZiggy EllmanZiggy Elman (ZE)Ziggy ElmerЛ. ЭлманHarry FinkelmanTommy Dorsey And His OrchestraBenny Goodman And His Orchestra + +258705Lawrence BrownLawrence BrownAmerican jazz trombonist. + +[b]Do not confuse this Brown with songwriter [a=Lew Brown].[/b] +[b]For the pianist and arranger associated with Paul Robeson use [a=Lawrence Brown (4)].[/b] + +He played with Duke Ellington throughout most of his career as a balladeer, technical soloist, and section leader. + +Born August 3, 1907 in Kansas. +Died in Los Angeles, California on September 5, 1988.Correcthttps://en.wikipedia.org/wiki/Lawrence_Brown_(jazz_trombonist)https://www.allmusic.com/artist/lawrence-brown-mn0000784936https://www.imdb.com/name/nm1221953/https://music.allpurposeguru.com/2014/07/the-versatility-of-lawrence-brown-ellingtons-lead-trombonist/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1320070d6785ac64af60ec7b624cc3c971026/biographyhttps://adp.library.ucsb.edu/names/103191BrownJohn Redmond (2)L. BrownL.BrownLBLarry BrownLaurence BrownLawrance BrownLowrence BrownБраунЛ. БраунЛоренс БраунDuke Ellington And His OrchestraLouis Armstrong And His Sebastian New Cotton OrchestraMetronome All StarsLouis Armstrong And His OrchestraPaul Howard's Quality SerenadersCharlie Barnet And His OrchestraRex Stewart And His OrchestraJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersSonny Greer And His RextetDuke Ellington And His Jazz GroupLawrence Brown And His BandThe International Jazz GroupIvie Anderson And Her Boys From DixieRex Stewart's Big EightRex Stewart's Big SevenRuby Braff's All-StarsDuke Ellington All Star Road BandRuby Braff & His AllstarsHarry Carney's Big EightMetronome All-Star BandLawrence Brown's All-StarsJimmy Jones' Big EightStewart - Williams & Co.Johnny Hodges & His Big BandLeon Elkin's OrchestraMercer Ellington OctetThe Al Sears All Stars + +258706Jess StacyJesse Alexandria StacyAmerican jazz pianist and bandleader. +Born August 11, 1904 in Bird's Point, Missouri, USA. +Died January 1, 1995 in Los Angeles, California, USA. +Married to actress/singer [a307291] (1943-1948, divorce). +Stacy was mostly a self-taught stride pianist of the big band era who initially trained on drums. Stacy began his professional career in the early 1920's, playing on Mississippi and Missouri riverboats with local bands. +After 1963, Stacy gave up full-time music altogether, instead selling cosmetics and delivering mail for the Max Factor company. He was eventually tempted out of retirement for the 1974 Newport Jazz Festival, at which time he was 'rediscovered' by a new and appreciative audience.Needs Votehttps://en.wikipedia.org/wiki/Jess_Stacyhttps://www.radioswissjazz.ch/en/music-database/musician/4068486b3ac33fd2fbf2f30542c7d621324b5/biographyhttps://www.allmusic.com/album/ec-stacy-25-great-piano-performances-1935-1945-mw0000644808https://www.imdb.com/name/nm0821085/https://adp.library.ucsb.edu/names/345018Eddie CondonJ. StaceyJ. StacyJess StaceyJess TacyJesse StacyStaceyStacyHarry James And His OrchestraThe Benny Goodman QuartetMetronome All StarsBenny Goodman TrioThe Benny Goodman QuintetLionel Hampton And His OrchestraZiggy Elman & His OrchestraEddie Condon And His OrchestraEddie Condon And His BandGeorge Wettling's Chicago Rhythm KingsEddie Condon And His Windy City SevenBobby Hackett And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraJess Stacy OrchestraGene Krupa And His ChicagoansMuggsy Spanier And His All StarsBud Freeman And His GangBud Freeman TrioMembers Of The Benny Goodman OrchestraJess Stacy And All His StarsGene Krupa's Swing BandJess Stacy TrioPee Wee Russell's Hot FourJohnny Lucas And His BlueblowersGene Krupa ComboJess Stacy and His TrioJess Stacy And The Famous SidemenPaul Mares & His Friars Society OrchestraThe Jam DandiesJam Session At CommodoreJack Teagarden & His Trombone + +258707Hymie SchertzerJazz wind player. + +Born : April 02, 1909 in New York City, New York. +Died : March 22, 1977 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Hymie_Shertzerhttps://www.radioswissjazz.ch/en/music-database/musician/40706f13ec1bc994707072d50cce9ecef58ec/discographyhttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-2000407100https://www.allmusic.com/artist/hymie-schertzer-mn0000207978/creditshttps://adp.library.ucsb.edu/names/113734H. SchertzerH. SchetzerH. ShertzerHeSHerman "Hymie" SchertzerHerman SchertzerHerman Schertzer (HeS)Herman ShertzerHy SchertzerHyman SchertzerHyman ShertzerHymie ScherterHymie SchertzeHymie ScherzerHymie ShertzerHymie ShetzerHynie ScherzerHynie SchetzerMymie ShertzerSchertzerShertzerTommy Dorsey And His OrchestraThe Will Bradley-Johnny Guarnieri BandMetronome All StarsBillie Holiday And Her OrchestraLionel Hampton And His OrchestraZiggy Elman & His OrchestraArtie Shaw And His OrchestraTeddy Wilson And His OrchestraThe New Music Of Reginald ForesytheToots Camarata And His OrchestraSy Oliver And His OrchestraTommy Dorsey And His SentimentalistsBenny Goodman And His OrchestraGordon Jenkins And His OrchestraHenri René And His OrchestraThe CommandersJerry Gray And His OrchestraThe Dixieland All StarsAll Star Band (4)Edgar Sampson And His OrchestraBen Homer & His Orchestra + +258709Billy KyleWilliam Osborne KyleAmerican jazz pianist. +Born 14 July 1914 in Philadelphia, Pennsylvania. +Died 23 February 1966 in Youngstown, Ohio. + +At the age of eight he started to play with local bands. He worked with [a=Tiny Bradshaw], [a=John Kirby Sextet] (1938-42 and 1946), [a=Lucky Millinder], and others. After serving the army 1942 to 45, he played with [a=Sy Oliver] (accompanying [a=Louis Armstrong]) (1946 to 52). From 1953 he recorded with [a=Louis Armstrong And His All-Stars].Needs Votehttps://en.wikipedia.org/wiki/Billy_Kylehttps://www.imdb.com/name/nm0477365/https://adp.library.ucsb.edu/names/100069B. KyleB. KyteBikky KilleBill KyleBillie KyleKyleKyle BillyKyle E. BoyntonKyle, BillyW. KyleWilliam "Billy" KyleWilliam KyleWilliam Osborne "Billy" KyleWilliam Osborne “Billy” KyleБ. КайлБилли КайлWilliam KyleJohn Kirby And His OrchestraJohn Kirby SextetBillie Holiday And Her OrchestraLouis Armstrong And His All-StarsTeddy Buckner And His OrchestraWill Bradley And His OrchestraJack Teagarden And His Big EightSy Oliver And His OrchestraJohn Kirby And His Onyx Club BoysLeonard Feather All StarsMildred Bailey And Her OrchestraBilly Kyle And His TrioJoe Marsala And His Delta SixBilly Kyle And His Swing Club BandRex Stewart's Big SevenBuster Bailey & His OrchestraThe Spencer TrioBuster Bailey's SixTimme Rosenkrantz And His Barrelhouse BaronsJulian Dash And His OrchestraBilly Kyle's Big EightRussell Procope's Big SixBilly Kyle And His OrchestraBuster Bailey SextetJack Sneed And His SneezersRex Stewart's Big FourJohn Hardee QuintetJulian Dash Quintet + +258710Eddie BarefieldEdward Emmanuel Barefield.American jazz saxophonist, clarinetist and arranger + +Born : December 12, 1909 in Scandia, Iowa. +Died : January 04, 1991 in New York City. + +noteworthy for his work with Bennie Moten, Fletcher Henderson, Don Redman, Coleman Hawkins, Sammy Price, Bernie Young and Ben Webster. +Needs Votehttps://en.wikipedia.org/wiki/Eddie_Barefieldhttps://www.allmusic.com/artist/eddie-barefield-mn0000167055/biographyhttps://adp.library.ucsb.edu/names/108186BarefieldE. BarefieldEd BarefieldEddie Barefield QuartetEddie BarfieldEddie BearfieldEddy BarefieldEdward BarefieldCab Calloway And His OrchestraCozy Cole All StarsBillie Holiday And Her OrchestraFletcher Henderson And His OrchestraBennie Moten's Kansas City OrchestraBuck Clayton And His OrchestraSy Oliver And His OrchestraElla Fitzgerald And Her Famous OrchestraCab Calloway And His Cotton Club OrchestraPete Johnson's BandWalter Thomas' OrchestraThe International Jazz GroupRoy Eldridge & His Central Plaza DixielandersFletcher Henderson SextetThe Butch Miles SextetHot Lips Page And His BandEddie Barefield And His QuintetteThe Eddie Barefield SextetEddie Barefield SeptetEddie Barefield Quartet + +258748Nat BettisNathaniel BettisJazz percussionistNeeds VoteAnt BettisNat BattisNathaniel BettisナットベティスGary Bartz NTU TroopArt Blakey & The Jazz Messengers + +258800Alex PerdigonFrench trombonist. He's been playing with most of the French artists since the seventies.Needs VoteA PerdigonA. PerdignonA. PerdigonA.PerdigonAlain PerdigonAlexAlex P.Alex PerdiganAlex PerdignanAlex PerdignonAlex PerdigoAlex PerdigomAlex Perdigon Dit OdetteAlex PerdigondAlex PerdigorAlex PerdigosAlex PerdigotAlex PerdigouAlex PerdiguonAlex PerdrignonAlex PerrigordAlex PertigonAlex Pierre DigonAlexPeAlix PerdigonPardigonPerdiganPerdigonPerdigon AlexPerdigondGodchildClaude Cagnasso Big BandEnsemble L'ItinéraireBekummernisSwing FamilyDixi (2)Nice Jazz Orchestra + +258903Anita O'DayAnita Belle ColtonAmerican jazz singer, born on October 18, 1919, Kansas City, Missouri, USA – died November 23, 2006, Los Angeles, California, USA. +Needs Votehttps://anitaoday.info/http://en.wikipedia.org/wiki/Anita_O%27Dayhttps://www.imdb.com/name/nm0640595/https://www.arts.gov/honors/jazz/anita-odayhttps://www.treccani.it/enciclopedia/anita-o-day/https://www.allmusic.com/artist/anita-oday-mn0000479028/biographyhttps://www.britannica.com/biography/Anita-ODayhttps://adp.library.ucsb.edu/names/334349A O'DayA. O'DayAnitaAnita O' DayAnita O'Day And ChorusAnita O'RayO'Dayアニタ・オデイAnita Belle ColtonWoody Herman And His OrchestraGene Krupa And His OrchestraStan Kenton And His OrchestraThe Woody Herman Big BandAnita O'Day And Her OrchestraThe Band That Plays The BluesAnita O'Day QuartetAnita O'Day TrioAnita O'Day And Her Rhythm Section + +258942John AbercrombieJohn L. AbercrombieAmerican jazz guitarist and composer (born December 16, 1944 in Port Chester, NY - died August 22, 2017 in Cortland, NY).Needs Votehttps://en.wikipedia.org/wiki/John_Abercrombie_(guitarist)https://www.ecmrecords.com/artists/1435045813/john-abercrombieAbercombieAbercrombieJ AbercrombieJ. AbercombieJ. AbercrombieJ.AbercrombieJohn AbercrambieJohn Ambercumbieジョン・アバークロンビーLester LarueGil Evans And His OrchestraStark RealityJack DeJohnette's DirectionsKenny Wheeler QuintetFriends (4)Contact (13)Atmospheres (2)Three GuitarsLars Møller GroupJohn Abercrombie TrioJohn Abercrombie QuartetBaseline (2)Enrico Rava Jazzpar 2002 SextetLars Danielsson TrioRon McClure QuartetJohn Abercrombie - Andy LaVerne QuartetThe Paul Bley GroupThe Lonnie Smith = John Abercrombie TrioBob Mover TrioGateway (9)(Another) Nuttree QuartetThe Don Thompson QuartetBruce Gertz QuintetThe Nuttree QuartetJack DeJohnette New DirectionsOlivier Le Goas QuartetPaolo Di Sabatino QuartetMarc Copland QuartetJackalope (3)ContinuationThe Devin Garramone Band + +259074Jimmy GiuffreJames Peter GiuffreAmerican jazz clarinetist, saxophonist and composer +Born 26 April 1921 in Dallas, Texas, USA, died 24 April 2008 in Pittsfield, Massachusetts, USA (aged 86) + +He was married to singer/bassist [a2566599].Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Giuffrehttps://www.encyclopedia.com/education/news-wires-white-papers-and-books/giuffre-jimmyhttps://www.imdb.com/name/nm0321284/https://adp.library.ucsb.edu/index.php/mastertalent/detail/203731/Giuffre_JimmyGeuffreGiufferGiuffreGiuffre, J.GiuffrèGiuffréGiussreGuiffreJ GiuffreJ. GIuffreJ. GiuffreJ. GiuffrèJ. GiuffréJ. GiufreJ. GuiffreJ. JiuffreJ.. GiuffreJ.GiuffreJames GiuffreJames GuiffreJames P. GiuffreJames Peter "Jimmy" GiuffreJim GiuffreJim GuiffreJimmi GuiffreJimmie GiuffreJimmie GiuffréJimmy Giuffre (clarinet)Jimmy GiuffréJimmy GiufreJimmy GuiffreJimmy GuifreeДж. ДжуффриДжимми ДжуфреДжимми Джуффриジミー・ジュフリジミー・ジュフリーJames Rivers (2)Woody Herman And His OrchestraStan Kenton And His OrchestraShelly Manne & His MenThe Jimmy Giuffre TrioBoyd Raeburn And His OrchestraWoody Herman & The New Thundering HerdShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraBob Brookmeyer QuintetHoward Rumsey's Lighthouse All-StarsThe Buddy Bregman OrchestraLeith Stevens & His OrchestraWoody Herman And The Swingin' HerdJerry Gray And His OrchestraRed Norvo SextetShorty Rogers QuintetLeith Stevens' All StarsGeorge Russell OrchestraMarty Paich Big BandThe Jimmy Giuffre 4Jimmy Giuffre & His Music MenJimmy Giuffre's OrchestraWoody Herman And His Third HerdThe Pete Jolly SextetThe Jack Millman SextetMilt Bernhart And His OrchestraShorty Rogers And His Augmented "Giants"Red Norvo SeptetShelly Manne SeptetTeddy Charles QuintetJimmy Giuffre GroupStan Levey SextetPaul Bley / Steve Swallow / Jimmy GiuffreThe Marty Paich OctetThe Buddy DeFranco Big BandRed Norvo's NineJimmy Giuffre QuintetWoody Herman & The Second HerdHarry Babasin And His Orchestra + +259075Curly RussellDillon RussellDillon "Curley" Russell was an American jazz double-bassist, who played bass on many bebop recordings. +Born March 19, 1917 in Trinidad, died July 03, 1986 in New York City, New York + +A member of the Tadd Dameron Sextet, in his heyday he was in demand for his ability to play at the rapid tempos typical of bebop, and appears on several key recordings of the period. According to his New York Times obituary, "in the late 1950's, he started playing Catskills club dates, and in 1966 he turned primarily to nonmusical jobs." + +According to jazz historian Phil Schaap the classic bebop tune "Donna Lee", a contrafact on "Back Home Again In Indiana", was named after Curley's daughter.Needs Votehttps://en.wikipedia.org/wiki/Curley_Russellhttps://www.allmusic.com/artist/curly-russell-mn0000137301/biographyhttps://www.radioswissjazz.ch/en/music-database/musician/130504c9dab868b92766dfcaadd39873eac25/biographyhttps://www.bluenote.com/artist/curley-russell/https://rateyourmusic.com/artist/curley_russellhttps://adp.library.ucsb.edu/names/341553https://www.nytimes.com/1986/07/09/obituaries/dillon-curly-russell-a-be-bop-bass-player.html"Curly" RussellC RussellC. RussellCharlie RussellCurley RusselCurley RussellCurlie RussellCurly RusselDillon "Curley" RusselDillon "Curley" RussellDillon "Curly" RussellDillon 'Curley' RussellDillon 'Curly' RusselDillon Curley RussellDillon RusselDillon RussellRusselRussellКерли РасселлThe Miles Davis QuintetThe Charlie Parker All-StarsColeman Hawkins All Star BandCharlie Parker's Re-BoppersThe Thelonious Monk QuintetThe Tadd Dameron SextetThe Bud Powell TrioCharlie Parker And His OrchestraTadd Dameron And His OrchestraSonny Stitt QuartetDizzy Gillespie SextetBenny Carter And His OrchestraColeman Hawkins QuintetStan Getz QuartetColeman Hawkins And His OrchestraLester Young QuartetDexter Gordon QuintetDizzy Gillespie And His All Star QuintetLeo Parker's All StarsZoot Sims QuartetNeal Hefti's OrchestraArt Blakey QuintetBrew Moore SextetThe Horace Silver TrioArt Blakey QuartetHerbie Steward QuintetThe Kai Winding SextetTadd Dameron QuintetBrew Moore SeptetThe Kenny Drew TrioBe Bop BoysMcGhee-Navarro BoptetKenny Clarke And His CliqueColeman Hawkins All StarsHenri Renaud BandChubby Jackson's OrchestraGeorge Wallington TrioTadd Dameron's Big TenThe Serge Chaloff SextetRed Rodney's Be-BoppersCurley Russell's All StarsBud Powell QuartetHoward McGhee All StarsBuddy DeFranco And His TrioSerge And His Be Bop BuddiesHoward McGhee SeptetBrew Moore All StarsGeorge Wallington SeptetFats Navarro Quartet + +259076Frank FosterFrank Benjamin Foster, IIIAmerican tenor and soprano saxophonist, flautist, arranger, bandleader and composer, born 23 September 1928 in Cincinnati, Ohio, USA, died 26 July 2011 in Chesapeake, Virginia, USA. +He studied at Wilberforce University, where he was also the best soloist and principal arranger of the school orchestra. He made his debut in Detroit with Snooky Young, then played at the Bluebird Inn with Wardell Gray and Milton Jackson, with Kenny Burrell, Tommy Flanagan, Barry Harris, and others. During his military service, in which he was awarded a silver medal, he went AWOL to San Francisco to play with Dexter Gordon. After his discharge, he played with the big band led by Billy Eckstine, then in Detroit in Elvin Jones' band, and also with Thelonious Monk. In July 1953, he joined Count Basie, with whom he remained until 1964, contributing greatly to his success as a composer and arranger. He then joined Woody Herman, worked as a freelancer, and also devoted himself to teaching. He played with Lionel Hampton in 1967, founded a big band with Duke Pearson, then with Illinois Jacquet in 1968, with Ted Jones/Mel Lewis. He conducted several of his own groups, such as “The Loud Majority,” with whom he toured Europe and Japan. He played with Billy Meyers in 1980 and with John Siegel in 1982. Since 1983, he has led a quintet with Frank Wess, with Quincy Jones' orchestra in 1984, and in 1986 he replaced Thad Jones as conductor of the Basie student orchestra and leader of the Jarzmobile Orchestra. A saxophonist of the transition period, with a tight sound, he was closely linked to the boppers, particularly Sonny Stitt.Needs Votehttps://www.wikidata.org/wiki/Q489245http://www.bluenote.com/artist/frank-foster/https://www.allmusic.com/artist/frank-foster-mn0000161637https://adp.library.ucsb.edu/names/203339https://en.wikipedia.org/wiki/Frank_Foster_(jazz_musician)F. B. FosterF. D. FosterF. ForsterF. FosterF.B. FosterF.B.FosterF.FosterFFFosterFranck B. ForterFranck FosterFrank B. FosterFrank Benjamin Foster IIIFrank D. FosterFrank ForsterFrank Foster IIIFrank foster IIIfosterФ. ФостерФренк ФостерФрэнк Фостерフランク・フォスターQuincy Jones And His OrchestraCount Basie OrchestraCount Basie ComboWoody Herman And His OrchestraCount Basie And The Kansas City SevenThe Thelonious Monk QuintetWoody Herman And The Swingin' HerdThe Prestige All StarsJoe Newman & His BandGeorge Wallington And His BandThe Elvin Jones Jazz MachineThe Wilbur Little QuartetDuke Pearson's Big BandElmo Hope SextetThe Count's MenHorace Parlan QuintetHilton Ruiz QuintetElmo Hope QuintetThe Frank Foster QuintetJulius Watkins SextetElmo Hope QuartetThe Woody Shaw Concert EnsembleThe Leiber-Stoller Big BandFrank Foster And The Loud MinorityFrank Foster QuartetElvin Jones QuintetThad Jones QuintetThad Jones & Mel LewisFrank Foster's OrchestraJazz Studio OneJoe Newman - Frank Foster QuintetFrank Foster SextetFrank Foster's Big BandFrank Foster's Living Color – Twelve Shades Of Black + +259078Al HaigAllan Warren HaigAmerican jazz pianist and one of the pioneers of bebop +Born July 19, 1922 in Newark, New Jersey, died November 16, 1982 in New York City, New York (heart attack) + +Haig began to perform with [a64694] and [a75617] in 1945 [2], and recorded under Gillespie from 1945 to 1946, as a member of [a375012] in 1946 (also featuring [a309986]), and [a3811509] in 1947, under Parker from 1948 to 1950, and under [a30486] from 1949 to 1951. The Gillespie quintet, which included Haig, recorded four 78 r.p.m. sides for [l93403] in May 1945 which are regarded as the first recordings to demonstrate all elements of the mature bebop style. He was part of the nonet on the first session of [a23755]' "Birth of the Cool". Although Haig became known for his bebop style, he in fact spent much of his career playing in non-jazz contexts. + +In 1969, Haig was acquitted of a murder charge. He had been accused of strangling his third wife, Bonnie, at their home in Clifton, New Jersey on October 9, 1968. He had said in evidence that his wife had been drunk, and had died in a fall down a flight of stairs. Grange Rutan, Haig's second wife, challenged Haig's account in her 2007 book, "Death of a Bebop Wife". Rutan's book is partly autobiographical, partly based on interviews with friends and family members. She outlines Bonnie's story describing a side to Haig that included a history of serial domestic abuse. Rutan writes that several family members sounded alarm bells regarding Haig's violent personality that went unheeded. She quotes bassist [a308540], who was conversing with Haig before a performance at the Edison Hotel lounge in the early seventies, when Haig admitted to him he had caused Bonnie's death. + +In 1974, Haig was invited to tour Europe by [a1410568], owner of [l124617] in the UK. At the end of a successful tour he recorded the 'Invitation' album for Spotlite, with [a443032] on bass and [a228917] on drums. This helped his re-emergence and over the next eight years he built a following in Europe and toured several times, recording in the UK and France, and appearing elsewhere. He recorded for several Japanese labels.Needs Votehttp://en.wikipedia.org/wiki/Al_Haighttps://www.radioswissjazz.ch/en/music-database/musician/13048bc057f614da49d7edfc253879d21b96e/biographyhttps://www.allmusic.com/artist/al-haig-mn0000604469https://adp.library.ucsb.edu/names/319570A. HaigA.HaigAl HagueAl HaigeAl HaighAl HeigAl. HaigAll HaigHaigЭл ХэйгThe Charlie Parker QuartetMiles Davis And His OrchestraDizzy Gillespie And His OrchestraChet Baker QuartetFats Navarro QuintetDizzy Gillespie SeptetCharlie Parker And His OrchestraJ.C. Heard And His OrchestraDizzy Gillespie SextetThe Chet Baker QuintetColeman Hawkins QuintetStan Getz QuartetWardell Gray QuartetDizzy Gillespie And His All Star QuintetDizzy Gillespie JazzmenEddie Davis And His BeboppersStan Getz QuintetThe Miles Davis NonetHerbie Steward QuintetCharlie Parker With StringsAl Haig SextetMax Roach QuintetThe Kenny Dorham QuintetAl Haig TrioColeman Hawkins All StarsAl Haig QuartetDexter Gordon QuartetDizzy Gillespie's Rebop SixThe Ben Webster QuintetTempo Jazz MenDon Lanphere QuintetRed Rodney's Be-BoppersLeo Parker QuartetAllen Eager QuartetJohn Hardee QuartetAl Haig-Jimmy Raney QuartetAl Haig QuintetUniversity College School All StarsHarry Babasin QuartetAl Haig/Jamil Nasser ComboDizzy Gillespie-Charlie Parker Jazzmen + +259079Harold LandHarold de Vance LandAmerican hard bop and post-bop jazz tenor saxophonist and composer. +(Do NOT confuse with songwriter [a=Harry Land] aka [a=Bernie Lowe]/Bernard Lowenthal.) + +Born: 18 December 1928 in Houston, Texas, USA. +Died: 27 July 2001 in Los Angeles, California, USA (aged 72). + +Needs Votehttps://en.wikipedia.org/wiki/Harold_Landhttps://haroldland.jazzgiants.net/biographyhttps://haroldlandband.bandcamp.com/https://www.allmusic.com/artist/harold-land-mn0000665944H. De Vance LandH. LandH. Land Sr.H. Land, SrH. Land, Sr.H.LandHarold D. LandHarold HandHarold LanHarold LandsHarold LangHarold LundHorald LandLandハロルド・ランドGerald Wilson OrchestraJames Bond & His SextetClifford Brown All StarsHarold Land QuintetTimeless All StarsThe Red Mitchell - Harold Land QuintetThe Curtis Counce GroupJimmy Woods SextetHarold Land All-StarsThe Gerald Wilson Big BandMike Wofford SeptetHutcherson-Land QuintetClifford Brown and Max RoachThe Harold Land / Blue Mitchell QuintetSteve Grossman QuintetThe Curtis Counce QuintetGerald Wilson Orchestra of The 80'sWes Montgomery-Harold Land QuartetThe Jimmy Rowles SextetJack Sheldon And His Exciting All-Star Big-BandWes Montgomery-Harold Land QuintetBilly Higgins QuintetThe Chico Hamilton OctetThe Harold Land Quartet + +259080George MorrowAmerican jazz bassist, born August 15, 1925 in Pasadena, CA, died May 26, 1992 in Orlando, FL +For the sound restoration specialist see [a=George Morrow (2)].Needs VoteG. MorrowGeorge MarrowGeorge Washington MorrowMorrowДж. Морроуジョージ・モロウSonny Rollins Plus FourBilly May And His OrchestraSonny Stitt QuartetClifford Brown All StarsSonny Rollins QuartetSonny Rollins QuintetMax Roach QuintetMax Roach QuartetJimmy Giuffre's OrchestraClifford Brown and Max RoachClifford Brown Max Roach Quintet + +259081Herb GellerHerbert Arnold GellerAmerican jazz saxophonist and flutist +Born November 2, 1928 in Los Angeles, California +Died December 19, 2013 in Hamburg, Germany +Performed with Joe Venuti, Claude Thornhill, Billy May, Maynard Ferguson, Shorty Rogers, Bill Hollman, Chet Baker, Clifford Brown - Max Roach, and Benny Goodman. Moved to Berlin, Germany in 1962, settling in Hamburg two years later where he became a member of the Norddeutscher Rundfunk orchestra, a position he retained until his retirement in 1994. +His first wife, [a1190881] (née Walsh, 1928-1958), was a bop pianist. + +Needs Votehttps://en.wikipedia.org/wiki/Herb_Gellerhttps://www.theguardian.com/music/2013/dec/29/herb-gellerhttps://jazztimes.com/blog/alto-saxophonist-herb-geller-is-dead-at-85/https://attictoys.com/herb-geller/https://www.allmusic.com/artist/herb-geller-mn0000677067https://adp.library.ucsb.edu/names/104117Bert HerbertGellerH. GellerH.GellerHarb GellerHerbHerb Geller [as Bert Herbert]Herb GellierHerb KellerHerb WalshHerbert GellerHerbie GellerHerby GellerBert HerbertPeter Herbolzheimer Rhythm Combination & BrassClarke-Boland Big BandThe George Gruntz Concert Jazz BandShelly Manne & His MenQuincy Jones' All Star Big BandMarty Paich OrchestraClaude Thornhill And His OrchestraBenny Goodman And His OrchestraShorty Rogers And His GiantsChet Baker EnsembleShorty Rogers And His OrchestraBrave New World (4)The NDR Big BandClifford Brown All StarsHoward Rumsey's Lighthouse All-StarsOrchester James LastKlaus Weiss OrchestraManny Albam And His Jazz GreatsBill Smith QuintetThe Buddy Bregman OrchestraFestival Big BandCertain Lions & TigersThe Galactic Light OrchestraLonzo & FriendsThe Band (7)Louie Bellson Big BandHelmut Brandt OrchestraMarty Paich Big BandKänguruShorty Rogers Big BandHot Rod Rumble OrchestraThilo Von Westernhagen & BandThe John Graas NonetJimmy Rowles SeptetFrank Roberts And His OrchestraHerb Geller QuartetHerb Geller SextetteDon Fagerquist OctetDas Grosse Promenaden-Orchester Alfred HauseMaynard Ferguson OctetPeter Herbolzheimer All Star Big BandHerb Geller & His All StarsHerb Geller And His Latin FlutesThe GellersKlaus Weiss Big BandBill Holman OctetJack Sheldon And His Exciting All-Star Big-BandFriedrich Gulda Und Sein Eurojazz-OrchesterJazz Workshop, Ruhr Festival 1962John Graas SeptetThe Benny Carter All-Star Sax EnsembleHerb Geller QuintetThe Marty Paich SeptetTime Travellers (5)Art Pepper + ElevenThe Silver Sax RevivalJohn Williams And Co.The West Coast All Star Octet + +259082Clifford BrownClifford BrownAmerican jazz trumpet player +Born October 30, 1930, Wilmington, Delaware, USA, died June 26, 1956, Bedford, Pennsylvania, USA + +Nicknamed 'Brownie', he was encouraged by both [a64694] and [a309986], the latter was Brown's main influence. He performed with R&B bandleader [a1133913], [a251783], [a136133], and [a29977] before forming his own quintet (co-led with [a229498]). In June 1956, Brown and pianist [a259083] were being driven from Philadelphia to Chicago by Powell's wife Nancy for the band's next appearance. While driving on a rainy night on the Pennsylvania Turnpike, west of Bedford, she lost control of the car and it left the road. All three were killed in the resulting crash. Brown is buried in Mt. Zion Cemetery, in Wilmington, Delaware. He won the "Down Beat" critics' poll for the ‘New Star of the Year’ in 1954; he was inducted into the "Down Beat" 'Jazz Hall of Fame’ in 1972 in the critics' poll.Needs Votehttp://cliffordbrown.nethttp://en.wikipedia.org/wiki/Clifford_Brownhttp://www.allmusic.com/artist/clifford-brown-p6185https://www.jazzdisco.org/clifford-brown/http://www.pbs.org/jazz/biography/artist_id_brown_clifford.htmBrownBrown-CliffordBrownieC BrownC. BrownC.BrownCl. BrownCliff BrownClifford "Brownie" BrownClifford Benjamin BrownClifford Eugene BrownCliford BrowCliford BrownJam Session MercurySweet CliffordК. БраунКлифорд Браунクリフォード・ブラウンSonny Rollins Plus FourLionel Hampton And His OrchestraThe J.J. Johnson SextetTadd Dameron And His OrchestraClifford Brown SextetLou Donaldson - Clifford Brown QuintetArt Blakey QuintetClifford Brown All StarsArt Blakey QuartetSonny Rollins QuintetClifford Brown Big BandClifford Brown QuartetClifford Brown and Max RoachClifford Brown EnsembleGigi Gryce Clifford Brown SextetGigi Gryce Little BandGigi Gryce - Clifford Brown OctetGigi Gryce OctetClifford Brown OctetGigi Gryce - Clifford Brown OrchestraClifford Brown And His OrchestraClifford Brown Max Roach Quintet + +259083Richie PowellRichard PowellAmerican bop and hard bop jazz pianist +Born 5 September 1931, New York City, died June 26, 1956, Pennsylvania Turnpike near Bedford, PA + +Younger brother of [a=Bud Powell]. Tragically died in a car accident, together with [a=Clifford Brown] and Powell’s wife Nancy.Needs Votehttps://en.wikipedia.org/wiki/Richie_Powell&PowellR. PowellRichard PowellRitchie PowellР. Пауэллリッチ―・パウエルSonny Rollins Plus FourClifford Brown All StarsJohnny Hodges And His OrchestraSonny Rollins QuintetClifford Brown and Max RoachClifford Brown Max Roach Quintet + +259086Lennie TristanoLeonard Joseph TristanoAmerican jazz pianist, composer, and teacher of jazz improvisation. + +Born: 19 March 1919 in Chicago, Illinois, USA. +Died: 18 November 1978 in New York City, New York, USA (aged 59). +Needs Votehttp://www.lennietristano.comhttps://en.wikipedia.org/wiki/Lennie_Tristanohttp://www.jazznellastoria.it/tristano.htmlhttps://www.britannica.com/biography/Lennie-Tristanohttps://www.scaruffi.com/jazz/tristano.htmlhttps://www.jazzdisco.org/lennie-tristano/discography/https://adp.library.ucsb.edu/names/103506L. TristanoL.TristanoLemie TristanoLenni TristanoLenny TristanoLeonard Joseph TristanoTristanoTristano, L.レニー・トリスターノMetronome All StarsLennie Tristano TrioLennie Tristano SextetLennie Tristano QuintetLennie Tristano QuartetBarry Ulanov And His All Star Metronome JazzmenBarry Ulanov's All Star Modern Jazz MusiciansLennie Tristano All Stars + +259087Arnold FishkinArnold Aaron FishkindArnold Fishkind, more often credited as Arnold Fishkin (born July 20, 1919, Bayonne, New Jersey - d. September 6, 1999, Palm Desert, California) was an American jazz bassist who appeared on over 100 albums recorded between the '30s and the '80s. During his career Fishkind performed swing and bebop jazz, television, jingles, and even western themed music. Although there is no mention in the record from whom he learned bass, he gave as his primary influence [a=Jimmy Blanton].Needs Votehttp://en.wikipedia.org/wiki/Arnold_Fishkindhttps://www.allmusic.com/artist/arnold-fishkind-mn0001615305/biographyhttp://worldcat.org/identities/lccn-n95048099/https://adp.library.ucsb.edu/index.php/mastertalent/detail/107124/Fishkind_ArnoldA. FischkenA. FishindA. FishkinA. FishkindA. FiskindArnie FishkinArnold FischkenArnold FishkenArnold FishkindArnold FiskindFishkinEnoch Light And The Light BrigadeLes Brown And His Band Of RenownThe Charlie Parker QuintetBunny Berigan & His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraJack Teagarden And His OrchestraThe Lee Konitz QuartetBenny Goodman SeptetLennie Tristano SextetLennie Tristano QuintetLennie Tristano QuartetLee Konitz SextetLee Konitz QuintetBenny Goodman & FriendsJohnny Smith QuintetRichard Maltby And His OrchestraManny Albam And His OrchestraSherry Magee And His DixielandersPeanuts Hucko And His OrchestraVic Schoen And His All Star BandChubby Jackson's RhythmBuddy Weed SeptetDon Elliott Septet + +259088Billy BauerWilliam Henry Bauer.American jazz guitarist and founder of the [l531884] publishing company. + +Born : November 14, 1915 in Bronx, New York City. +Died : June 17, 2005 in Melville, New York State. +Needs Votehttp://www.billybauersmusic.com/index.htmhttps://en.wikipedia.org/wiki/Billy_Bauerhttp://www.amazon.com/Billy-Bauer/e/B001LHR1KI/ref=dp_byline_cont_music_1https://adp.library.ucsb.edu/names/107045B. BauerB.BauerBauerBaverBill BauerBillie BauerBilly BaurBilly BaverJos. BauerW. BauerW.H. BauerWilliam BauerWilliam H. BauerWilliam Henry Bauer.Wm. H. BauerБ. БауерБ. БауэрThe Charlie Parker QuintetWoody Herman And His OrchestraMetronome All StarsTommy Dorsey And His Clambake SevenThe Lee Konitz QuartetWoody Herman & The New Thundering HerdBenny Goodman And His OrchestraBenny Goodman SeptetLennie Tristano TrioLennie Tristano SextetLennie Tristano QuintetLennie Tristano QuartetLee Konitz SextetTony Scott And His OrchestraNeal Hefti's OrchestraFlip Phillips And His HiptetWoody Herman & The HerdBenny Goodman & FriendsWoody Herman And His WoodchoppersThe V-Disc All StarsChubby Jackson's OrchestraFlip Phillips FliptetFlip Phillips BoptetThe Jay And Kai QuintetWoody Herman And The Fourth HerdAl Cohn And His "Charlie's Tavern" EnsembleFlip Phillips And His OrchestraJazz Renaissance QuintetBill Harris SeptetBarry Ulanov's All Star Modern Jazz MusiciansChubby Jackson's RhythmThe Carl Kress SextetCozy Cole's Big SevenWoody Herman StarsVanderbilt StarsVanderbilt All StarsThe Band That Plays The BluesBilly Bauer QuartetWoody Herman And The Swingin' Herd (2)Lee Konitz DuoChubby Jackson Septet + +259089Warne MarshWarne Marion MarshAmerican tenor saxophonist and jazz musician noted for his devotion to purely lyrical improvisation. +Born in Los Angeles, California 26 October 1927 Died in Los Angeles, California 18 December 1987 (60 years old). +Marsh played in Hoagy Carmichael’s TV show as part of the Teenagers (1945) before serving in the U.S. Army. In 1948 he became a student of [a259086], who was the principal influence upon his art. He played with Tristano from 1949 to 1952 and in rare reunions thereafter.Needs Votehttp://en.wikipedia.org/wiki/Warne_Marshhttps://www.britannica.com/biography/Warne-Marshhttps://www.allaboutjazz.com/musicians/warne-marshhttp://www.warnemarsh.info/MarshMarsh, W.Rawen ShramW. MarshW.MarshWaene MarshWarneWarne Marne MarshWarne Marsh GroupsMetronome All StarsThe Chet Baker QuintetLennie Tristano SextetLennie Tristano QuintetLee Konitz QuintetSupersaxThe Kai Winding QuintetWarne Marsh QuartetBuddy Rich BandThe Ted Brown SextetWarne Marsh QuintetWarne Marsh GroupRick Jones QuartetThe Pete Christlieb QuartetWarne Marsh TrioSal Mosca-Warne Marsh QuartetTommy Talbert And His OrchestraWarne Marsh Lee Konitz QuintetPete Christlieb / Warne Marsh Quintet + +259090Harold GranowskyAmerican Jazz drummerNeeds VoteH. GranowskyHarold GranovskyHarold GranowskiLennie Tristano SextetLennie Tristano QuartetHerbie Mann QuartetThe Lenny Hambro QuintetJoe Roland, His Vibes & His Boppin' Strings + +259091Denzil BestDenzil DeCosta BestDenzil Best was an American jazz percussionist and composer born in New York City. He was a prominent bebop drummer in the 1940's, '50s and early '60s. +Born April 27, 1917 in New York City, New York, died May 24, 1965 in New York City, New York +Needs Votehttp://en.wikipedia.org/wiki/Denzil_Besthttps://www.allmusic.com/artist/denzil-best-mn0000257524B. BestBestD BestD. Benzil-BestD. BestD. D. BestD. De Costa BestD. DeCosta BestD. Decosta BestD.BestD6Danzil BeztDeCosta BestDencil BestDendil BestDengil BestDensil - Dacosta - BestDensil BestDensil DeCoata BestDensil DeCosta BestDensil Decosta BestDenvil BestDenzel BestDenzel De CostaDenzil - BestDenzil / BestDenzil D. BestDenzil DaCosta BestDenzil Dacosta BestDenzil De CostaDenzil De Costa BestDenzil De Costa Best.Denzil DeCosta BestDenzil DeCosta PestDenzil Decosta BestDenzil HestDenzil LevyDenzil de CostaDenzil deCostaDenzil deCosta BestDenzil, DeCosta, BestDenzil-BeztDescota, Denzil & BestDnezil BestMoveWestД. БестДензил БестColeman Hawkins QuartetThe George Shearing QuintetErroll Garner TrioTeddy Wilson TrioColeman Hawkins QuintetCharlie Shavers' All American FiveColeman Hawkins And His OrchestraBen Webster And His OrchestraTeddy Wilson QuartetIllinois Jacquet And His All StarsLennie Tristano SextetEddie Davis And His BeboppersLee Konitz QuintetFats Navarro And His Thin MenColeman Hawkins All StarsColeman Hawkins SeptetThe BirdlandersBilly Taylor QuartetMary Lou Williams And Her OrchestraPhineas Newborn TrioChubby Jackson And His Fifth Dimensional Jazz GroupDon Byas' All Star QuintetEddie Safranski's All StarsAl Hall QuartetJoe Thomas' Big SixSandy Williams Big EightRussell Procope's Big SixJimmy Jones' Big FourAl Hall QuintetBilly Taylor's Big FourJimmy Jones QuintetEddie Shu QuintetOtto Hardwick's Wax QuintetDenzil Best's Wax QuintetBen And The Boys + +259092Lee KonitzLeon KonitzAmerican jazz saxophonist and composer (born October 13, 1927, Chicago, Illinois, USA; died April 15, 2020, Lenox Hill Hospital, Greenwich Village, New York City). +Inspired by [a254768], Konitz began playing the clarinet aged 11 and studied with a member of the [a837562], switching to the tenor saxophone in 1942, then finally the alto. Began performing professionally with [a2095441] in 1945, with [a313126] from 1947, but his most significant association was with pianist [a259086], whom he first met and worked with in 1946. He recorded with a nonet in 1949-50 (later collected as the [a23755] "Birth of the Cool" album). Formed an association with another Tristano acolyte, [a259089], during the 1950s. +Received Denmark's Jazzpar prize in 1992. Died from the the effects of the coronavirus and pneumonia.Correcthttps://leekonitz.bandcamp.com/https://leekonitzonsunnyside.bandcamp.com/https://leekonitzchrischeekstephanefuricleibovici.bandcamp.com/https://leekonitzdantepfermichaeljanisch-whirlwind.bandcamp.com/https://www.nytimes.com/2020/04/16/arts/music/lee-konitz-dead-coronavirus.htmlhttps://jazztimes.com/features/tributes-and-obituaries/lee-konitz-1927-2020/https://www.theguardian.com/music/2020/apr/16/lee-konitz-obituaryhttps://www.britannica.com/biography/Lee-Konitzhttps://www.allmusic.com/artist/lee-konitz-mn0000227776https://rateyourmusic.com/artist/lee-konitzhttps://en.wikipedia.org/wiki/Lee_Konitzhttps://www.imdb.com/name/nm0465170/"Zeke Tolin"EnsembleKoniitzKonitzKonitz, L.KoritzL. Knotz, L. OnitzL. KonitzL. KontizL.KonitzLeeLee ConitzLee KnotzLee Konitz & His BandLee Konitz (As "Zeke Tolin")Lee Konitz With StringsLee KontizLee OnitzLeo KonitzMr. Lee KonitzКонитцЛ. Конитцリー・コニッツリー・コーニッツZeke TolinGil Evans And His OrchestraThe George Gruntz Concert Jazz BandThe Miles Davis QuintetMiles Davis And His OrchestraMetronome All StarsThe Charles Mingus QuintetStan Kenton And His OrchestraLee Konitz Big BandClaude Thornhill And His OrchestraThe Lee Konitz QuartetLennie Tristano SextetLennie Tristano QuintetLennie Tristano QuartetLee Konitz SextetLee Konitz QuintetLee Konitz / Kenny Wheeler QuartetThe Miles Davis NonetNicolas Simion GroupTheatre Of Eternal MusicGuido Manusardi QuartetMiles Davis + 19Lee Konitz TerzetMiles Davis & His Tuba BandLee Konitz NonetKonitz / Rava QuartetLee Konitz-Ohad Talmor Big BandThe Great ReunionBill Evans-Lee Konitz QuartetGerry Mulligan And The Sax SectionWarne Marsh QuintetThe Lee Konitz TrioLee Konitz-Ohad Talmor String ProjectLars Sjösten OctetGerry Mulligan OctetLee Konitz & His West Coast FriendsKonitz - Wunsch - QuartetArt Farmer/Lee Konitz QuintetKonitz / Solal DuoLee Konitz & The Brazilian BandPhil Woods Lee Konitz Enrico Rava 6etLee Konitz SeptetZollsound 4Lee Konitz New QuartetShelly Manne QuartetAttila Zoller - Lee Konitz QuartetPhil Woods Lee Konitz 5etLee Konitz DuoPhil Woods-Lee Konitz QuintetJimmy Dale BandWarne Marsh Lee Konitz Quintet + +259312Chris HoffCorrecthttp://www.chrishoff.co.ukHoffSkin ThievesEnursha + +259321H.B. BarnumHidle Brown BarnumAmerican R&B performer, songwriter and producer. +Born: July 15, 1936, Houston, TX. +Older brother of backup vocalist [a253363]. +See related 'labels': +- [l=H.B. Barnum] +- [l=H.B. Barnum Studio] +- [l2246062] +He worked for [a145262], [a52833], [a89660], [a38863], [a17966] and [a61588], among many others. +Owner of labels [l70305], [l746640].Needs Votehttps://www.thehistorymakers.org/biography/h-b-barnum-41https://www.imdb.com/name/nm0056138/https://en.wikipedia.org/wiki/H._B._Barnumhttps://repertoire.bmi.com/Search/Search?Main_Search_Text=Hidle%20Brown%20Barnum&Main_Search=Writer%2FComposer&Search_Type=all&View_Count=0&Page_Number=0B. BarnhamB. BarnumBarnhamBarnumBarnum IIIBarnunBarumBrownH B BarnumH. B.H. B. BarnumH. B. Barnum Jr.H. B. BarnúmH. B. BarumH. BarnumH. P. BarnumH. V. BarnumH.B (Hidle Brown)H.B BarmanH.B.H.B. BamumH.B. BarnhamH.B. Barnum IIH.B. Barnum Jr.H.B.BarnumH.BarnumH.G. BarnumH.P. BarnumH.P.BarnumH.p. BarnumHB BarnumHidle "H B" BarnumHidle Brown "H. B." BarnumHidle Brown BarnumM.B. BarnumDudley (4)Big Daddy (35)The RobinsThe PenguinsDyna-SoresBee Zee BandThe DootonesH.B. Barnum's MusicH.B.Barnum & His OrchestraH.B. Barnum GroupJack B. Nimble And The Quicks + +259388Maxine WatersLorna Maxine Waters Willard née Waters American R&B / pop / rock singer and songwriter, born 14 July 1945 in Texas. Sibling of [a=Julia Tillman Waters], [a=Luther Waters] and [a=Oren Waters]; for a time married to songwriter [a=Jess F. Willard]. +[b]NOTE: This artist has several aliases. Please choose the one closest to the credit printed on your release.[/b]Correcthttps://www.facebook.com/people/Maxine-Waters-Willard/100000813951374https://en.wikipedia.org/wiki/Maxine_Waters_Willardhttps://www.feenotes.com/database/artists/waters-maxine-14th-july-1945-present/https://web.archive.org/web/20230607092221/http://thewatersjuliamaxinelutheroren.com/Lorna Maxine WaterLorna Maxine WatersM WatersM. WatersMarine WatersMaxcine WatersMaxie WatersMaxim WatersMaxime WatersMaxineMaxine "Waters"Maxine (Johnson) WatersMaxine Johnson WatersMaxine WaltersMaxine WaterMaxine Waters WaddellMaxine Waters WillardMaxine Willard WatersMxishen WatersWatersMaxine WillardMaxine Willard WatersLorna WillardMaxine Waters Waddell + +259472Eddie SauterEdward Ernest SauterAmerican trumpeter, band leader and arranger. +Born December 2, 1914 in Brooklyn, New York. +Died April 21, 1981 in West Nyack, New York. +Needs Votehttps://en.wikipedia.org/wiki/Eddie_Sauterhttps://adp.library.ucsb.edu/names/209117E SauterE. SauterEd SauterEd Sauter StringsEddie MeyersEddie SouterEduard SauterEdward "Eddie" SauterEdward E. 'Eddie' SauterEdward SauterOrchestraSauterSauuterЭ. СаутерЭ. СотерCharlie Barnet And His OrchestraOrchester Eddie SauterSauter-Finegan OrchestraThe Sauter-Finegan Doodletown Fifers + +259778Paul Chambers (3)Paul Laurence Dunbar Chambers, Jr.American jazz bassist +Born April 22, 1935, in Pittsburgh, Pennsylvania, died January 4, 1969, in New York City, New YorkNeeds Votehttp://hardbop.tripod.com/chambers.htmlhttps://www.bluenote.com/artist/paul-chambers/http://en.wikipedia.org/wiki/Paul_Chambershttps://adp.library.ucsb.edu/names/308013CambersChambersDave ChambersP. ChambersP.ChambersPaulPaul CHambersPaul CahmbersPaul ChambersPaul ChambertPaul ChembersPoul ChambersП. Чемберсポール・チェンバースポール・チェンバーズGil Evans And His OrchestraThe John Coltrane QuartetThe Red Garland TrioThe Miles Davis SextetThe Miles Davis QuintetMiles Davis All StarsThe Cannonball Adderley QuintetSonny Clark TrioChet Baker QuartetThe Thelonious Monk QuintetBenny Golson SextetThe Chet Baker QuintetArt Pepper QuartetThe Red Garland QuintetChet Baker SextetSonny Rollins QuartetPaul Chambers SextetThe Milt Jackson QuartetThe John Coltrane SextetThe Miles Davis QuartetPaul Chambers StarsHank Jones TrioThe J.J. Johnson QuintetThe Kenny Drew TrioNat Adderley QuintetHank Mobley SextetThe Prestige All StarsGeorge Wallington QuintetSonny Rollins TrioWalter Benton QuintetLee Morgan QuintetJackie McLean QuintetMiles Davis + 19Paul Chambers QuintetThe Curtis Fuller SextetThe Oliver Nelson SextetKenny Drew QuintetClark Terry QuintetCannonball Adderley QuartetThe Jay And Kai QuintetJimmy Cleveland And His All StarsWynton Kelly TrioPaul Chambers QuartetKenny Dorham SeptetFreddie Redd QuintetJ.J. Johnson QuartetElmo Hope SextetElmo Hope TrioThe Quincy Jones Big BandJimmy Heath QuintetThe Barry Harris SextetWynton Kelly SextetThe Kenny Burrell QuintetThe Toshiko TrioThe Riverside Jazz StarsBennie Green QuintetBennie Green SextetOliver Nelson SeptetBenny Golson QuintetJimmy Heath SextetKing Curtis QuintetTina Brooks QuintetKenny Clarke SeptetBenny Golson QuartetCannonball Adderley All StarsErnie Henry OctetWayne Shorter QuintetJohnny Griffin SeptetPepper Adams - Donald Byrd SextetSonny Clark QuintetSahib Shihab Sextet + +259802Nigel KennedyBritish violinist and violist +Born December 28, 1956 in Brighton, England, UKNeeds Votehttps://en.wikipedia.org/wiki/Nigel_Kennedyhttps://nigelkennedy.bandcamp.com/https://web.archive.org/web/*/https://www.sonyclassical.com/artists/kennedy/https://www.warnerclassics.com/artist/nigel-kennedyClassic KennedyDr Nigel KennedyDr. Nigel KennedyKennedyNigelNigel KenedyNigelKennedyНајџел Кенедиナイジェル・ケネディ甘乃迪English Chamber OrchestraThe Kennedy ExperienceThe Nigel Kennedy QuintetJarek Śmietana Quintet + +260458John FogertyJohn Cameron FogertyAmerican musician, songwriter, and guitarist (born May 28, 1945, Berkeley, California, USA), best known as member of [a=Creedence Clearwater Revival]. Husband of [a2263714], they married in Elkhart, Indiana, on April 20, 1991. Father of [a3316240], [a3316239] and [a1714429]. +In 1965 he formed The Golliwogs with his brother [a=Tom Fogerty], [a=Doug Clifford] and [a=Stu Cook]. +Needs Votehttp://www.JohnFogerty.comhttp://www.MySpace.com/johnfogertyhttps://en.wikipedia.org/wiki/John_Fogertyhttps://www.allmusic.com/artist/john-fogerty-mn0000224294C. FogertyC. FoggertyC.FogertyD. FogertyF. C. FogertyF. G. FogertyF.C. FogertyFogartyFogentyFogerrtyFogerryFogerthyFogertijsFogertyFogerty J.Fogerty JohnFogerty John CFogerty, J.C.Fogerty, JohnFogerty, John C.Fogerty, John CameronFogeryFogetterFogettyFoggartyFoggattyFoggertFoggertyFoghertyForgertyForgetyGreenI. FogertyJ C FogertyJ C. FogertyJ FogertyJ ForgertyJ-C.FogertyJ. C, FogertyJ. C. -FogertyJ. C. FogartyJ. C. FogentyJ. C. FogertJ. C. FogertyJ. C. FogertyyJ. C. FoggertyJ. C. FoghertyJ. C. ForgatyJ. C. ForgertyJ. C. ForgetyJ. C. ForghertyJ. C.FogertyJ. Cameron FogertyJ. D. FoggertyJ. F.J. FogartyJ. FogatreyJ. FogertyJ. FoggartyJ. FoggertyJ. ForgertyJ. ForgetJ. G. FogertyJ. G. ForgetyJ. L. FogertyJ. T. FoggertyJ. V. FogertyJ.-C. FogertyJ.C FogertyJ.C ForgertyJ.C, FogertyJ.C.J.C. &J.C. FogartyJ.C. FogatyJ.C. FogertyJ.C. FoggertyJ.C. ForgertyJ.C. SogertyJ.C.FogertyJ.C.FogestyJ.C.FogetyJ.C.ForgertyJ.F. CreedenceJ.F. FogertyJ.FogartyJ.FogertyJ.FoggertyJ.ForgertyJ.G. FogertyJ.V. FogertyJC FogertyJFogertyJc. FogertyJhon ForgetJim FogertyJohnJohn C FogertyJohn C, FogertyJohn C. FobertyJohn C. FogartyJohn C. FogerrtyJohn C. FogertyJohn C. FoggertyJohn C. FoghertyJohn C. ForgetyJohn C.FogertyJohn Cameron FogertyJohn Cameron FoghertyJohn D. FogertyJohn F. FogertyJohn FoertyJohn FogartyJohn FogeertyJohn FogerthyJohn Fogerty & FriendsJohn Fogerty And FriendsJohn FogeryJohn FoggertyJohn FoghertyJohn FogortyJohn ForgertyJohn G. FogertyJohn V. FogertyJohn. C. FogertyJohnny FogertyJon FogartyJon FogertySogertyTomY. C. FogertyД. ФоггартиДж. ФогертиДж. ФогетиДжон ФогертиДжон ФогъртиФогертиג'ון פוגרטיジョン・フォガティー존 훠거티Toby Green (3)T. Spicebush SwallowtailCreedence Clearwater RevivalThe GolliwogsBlue Ridge RangersTommy Fogerty & The Blue Velvets + +260571Carl WilsonCarl Dean WilsonCarl Wilson (born December 21, 1946, Hawthorne, California, USA – died February 6, 1998, Los Angeles, California, USA) was an American rock and roll singer and guitarist, best known as a founding member, lead guitarist and sometime lead vocalist of [a70829]. He was inducted into the Rock and Roll Hall of Fame in 1988. He was the youngest brother of fellow band members [url=https://www.discogs.com/artist/189718-Brian-Wilson]Brian[/url] and [url=https://www.discogs.com/artist/391245-Dennis-Wilson-2]Dennis[/url], and cousin of [a372789]. Son of [a363017] and [a3239364]. Uncle of [a434651] and [a413862]. + +Like most members of The Beach Boys, Carl was a multi-instrumentalist, playing lead, rhythm, bass, and acoustic guitars, keyboards, and occasionally drums onstage. + +After his elder brother Brian's retirement from the stage in 1965, Carl became the de facto leader of the band onstage, and shortly after became the band's in-studio leader, producing the bulk of the 1967-1973 albums "Smiley Smile, Friends", "20/20", "Wild Honey", "Surf's Up", [a2415580] - "So Tough", and "Holland". + +Carl's leadership role in the band diminished somewhat in the late 1970's, both due to Brian's brief re-emergence as the band's producer and Carl's own substance abuse problems. He nonetheless remained a prominent and recognizable voice in the band, taking lead vocals on many songs and serving as "mixdown producer" on the Brian-produced "Love You" album. By the time of recording of 1979's "L.A. (Light Album)", Carl again found himself filling the vocal and songwriting gap left by a retreating Brian Wilson. + +As a lead vocalist Carl was the last member of the group to be assigned lead vocals to sing. His first turn at the solo mic was on 1964's "Pom-Pom Playgirl", from "Shut Down Vol. 2". Over the years he has been considered one of the greatest singers in pop/rock, deftly handling ballads such as "God Only Knows", pop gems like "I Can Hear Music", and rock and rollers including "Darlin'" and "Keeping The Summer Alive". On tour, particularly in the late 1960's and 1970's, his extraordinary voice often replaced that of his brother Brian's on songs originally sung by the latter, including "Don't Worry Baby", "Surfer Girl", and "Let The Wind Blow". + +Carl was not the most controversial member of the band. To his credit, his quiet, private life endured only two ripples: first, in the late 1960's, he emerged victorious from a fight with the US government over his Conscientious Objector status regarding the Vietnam draft (he and the band agreed to play a number of free benefit concerts in lieu of Carl being drafted); second, in the late 1970's he appeared on a television simulcast concert in Australia with The Beach Boys while inebriated (he later explained it away as a reaction to flu medicine). + +By the early 1980's The Beach Boys were in disarray. Frustrated with the band's sluggishness to record new material and reluctance to rehearse for live shows, Carl Wilson took a leave of absence in 1981, rather than remain as part of what he saw increasingly becoming a nostalgia act. Thence, he released a 1981 solo album, "Carl Wilson", to little critical notice, with songs co-written with [a360015] - particularly the extraordinary "Heaven" and the radio hit "Hurry Love". He recorded a second solo album, 1983's "Youngblood", in a similar vein, but by the time it was released he had already rejoined The Beach Boys. Although "Youngblood" did not chart, a single, the [url=https://www.discogs.com/artist/987261-John-Joseph-Hall]John Hall[/url] and [a604946] penned "What You Do To Me," did, and it took on new meaning after the death of brother Dennis in December 1983. Youngblood also featured a cover of [a260458]'s "Rockin' All Over The World", which he performed on tour with The Beach Boys in the 1980's. + +During his brother Brian's mental health struggles and in-and-out participation in the band in the 1980's, particularly after the death of brother Dennis, Carl was closely involved in the legal and moral support of Brian, and was a key player in supporting Brian's second wife Melinda in the ousting of controversial psychologist [a1057138] from Brian's affairs. + +Carl was diagnosed with brain and lung cancer in early 1997. Despite his illness and chemotherapy treatments, he continued to perform after diagnosis. Carl played through The Beach Boys' entire summer tour ending in the fall of 1997. Carl Wilson lost his battle with cancer on February 6, 1998, just two months after the death of his mother, Audree. He was survived by his brother Brian, wife Gina (daughter of [a10533]) and two sons [url=https://www.discogs.com/artist/5454595-Justyn-Wilson]Justyn[/url] and [url=https://www.discogs.com/artist/6438151-Jonah-Wilson]Jonah[/url] from his first marriage to Annie Hinsche (sister of [a299166] member, [a311944], who was a mainstay of the Beach Boys' support band on tour). + +A handful of additional recordings of Wilson have been released as the album "Like a Brother", by "supergroup" [url=https://www.discogs.com/artist/274822-Gerry-Beckley]Beckley[/url]-[url=https://www.discogs.com/artist/529946-Robert-Lamm]Lamm[/url]-Wilson, comprising Carl Wilson, Gerry Beckley of [a249829] and Robert Lamm of [a114483]. + +[a=Carl Wilson (2)] Jazz organist +[a=Carl Wilson (3)] Technician from New Zealand +[a=Carl Wilson (4)] Carl "Flat Top" Wilson - Bassist from the shellac era. +[a=Carl Wilson (5)] Credited for liner notes +[a=Carl Wilson (7)] PhotographerNeeds Votehttps://en.wikipedia.org/wiki/Carl_Wilsonhttp://www.carlwilsonfoundation.orgBrian Carl WilsonC WilsonC, WilsonC.C. WilsonC. WilsonC.WilsonCarCarlCarl D. WilsonCarl Dean WilsonKarl WilsonWWilsonカール・ウィルスンカール・ウィルソンThe Beach BoysKenny & The Cadets + +260572Gary HerbigGary Lee HerbigWoodwind player (born in Missoula, Montana, USA).Correcthttps://www.garyherbig.com/G. HerbigGarey HerbigGarry HerbigGary HerbicGary HerbickGary HerbieGary HerbikGary HerbiyGary HergibGary HurbigGary L. HerbigGary'HerbigGery HerbigHerbigHerbig Gary L.The Gary Herbig Playersゲイリー・ハービッグToshiko Akiyoshi-Lew Tabackin Big BandHarry James And His OrchestraTower Of Power Horn SectionHarry James & His Music MakersDon Menza & His '80s Big BandThe Bob Belden EnsembleAfterglow (15)The Dennis Dreith Band + +260584Joe DaleyJoseph P. DaleyAmerican tubist, trombonist, Euphonium player, composer and educator +Born August 6, 1949 in Harlem, New York; died August 3, 2025 in Hackensack, New Jersey.Needs Votehttps://www.jodamusic.com/J. DaleyJoe DalyJoseph DaileyJoseph DaleyGil Evans And His OrchestraThe George Gruntz Concert Jazz BandThe Tuba TrioThe Celestrial Communication OrchestraThe Carla Bley BandBill Cole's Untempered EnsembleThe Muhal Richard Abrams OrchestraSam Rivers' Rivbea All-star OrchestraHazmat ModineJoe Fonda's Bottoms OutThe Far East Side BandLiberation Music OrchestraSam Rivers QuartetThe Sound Visions OrchestraEbony Brass QuintetHoward Johnson & GravityMarty Ehrlich Large EnsembleParadigm Shift (6)Sam Rivers QuintetJoel Harrison 19Reggie Nicholson Brass Concept + +260718Danny BankDaniel Bernard BankAmerican jazz baritone saxophonist, clarinetist, and flutist, born July 17, 1922 in Brooklyn, New York City, New York, died June 5, 2010 in Queens, New York City, New York. +Bank is one of the most recorded baritone saxophonists of all time, best known for his association with [a23755] in [a255137]' orchestra. Later in the 1960s he recorded with the big bands of [a200815], [a145264], and [a29974]. He is credited on some releases as Danny Banks.Needs Votehttp://en.wikipedia.org/wiki/Danny_Bankhttps://jazzbarisax.com/?s=danny+bankhttps://www.allmusic.com/artist/danny-bank-mn0000676224/biographyhttps://www.jazzwax.com/2008/12/interview-danny.htmlhttps://adp.library.ucsb.edu/names/302964BankD. BankD. BanksDan BankDaniel B. BankDaniel B. BanksDaniel BankDaniel BanksDanny BanksDany BankxDonny BanksД. Бэнкダニー・バンクダニー・バンクスQuincy Jones And His OrchestraGil Evans And His OrchestraTommy Dorsey And His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraArtie Shaw And His OrchestraCharlie Barnet And His OrchestraRay Ellis And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraCharlie Parker Big BandTony Scott And His OrchestraThe Duke Ellington OrchestraOliver Nelson And His OrchestraSauter-Finegan OrchestraThe Ernie Wilkins OrchestraThe Art Farmer SeptetTony Fruscella SeptetCharlie Parker With StringsRalph Burns And His OrchestraTony Scott SeptetMiles Davis + 19The Jazz Interactions OrchestraGeorge Wallington And His BandThe American Jazz OrchestraWoody Herman And The Fourth HerdMel Powell And His OrchestraCharles Mingus OctetArt Farmer And His OrchestraThe Quincy Jones Big BandTony Scott TentetOscar Pettiford OrchestraJimmy Rushing And His OrchestraChubby Jackson's Big BandThe Ernie Wilkins GroupDon Redman All StarsThe Tom Talbert Jazz OrchestraThe New York Saxophone QuartetLoren Schoenberg And His Jazz OrchestraDon Elliott Septet + +260720Phil BodnerPhilip BodnerJazz woodwind player (flute, clarinet, English horn, oboe, saxophone) and studio musician. Born June 13th, 1917, Waterbury, Connecticut, died February 24th, 2008, New York City, New York, USANeeds Votehttps://adp.library.ucsb.edu/names/304878https://en.wikipedia.org/wiki/Phil_BodnerBodnerP. BodnerP. BonderPhil BadnerPhil Barry And His GroupPhil BodnaPhil BodrenPhil BognerPhil BonderPhil BordnerPhil RodnerPhil RodneyPhil. BodnerPhilip BodnerPhilip L. BodnerPhilip bodnerPhill BodnerPhillip BodnerGil Evans And His OrchestraHugo Montenegro And His OrchestraRay Ellis And His OrchestraCootie Williams And His OrchestraSy Oliver And His OrchestraEnoch Light And His OrchestraThe Brass RingMundell Lowe And His All StarsBilly Byers And His OrchestraDavid Terry And His OrchestraRicky Ticky BrassHenry Jerome And His OrchestraThe Grand Award All StarsDoc Severinsen And His OrchestraZoot Sims And His OrchestraThe Phil Wilson SextetArt Farmer And His OrchestraBob Brookmeyer And His OrchestraOrizaba And His OrchestraJo Basile, Accordion And OrchestraNew York New York (2)Peter Appleyard OrchestraAl Caiola And The Nile River BoysThe Keith Ingham New York 9Phil Bodner & CompanyThe Phil Bodner SextetThe Three Deuces MusiciansPhil Bodner E La Sua OrchestraFour FlutesThe Phil Bodner QuartetThe Bucky Pizzarelli QuartetPhil Barry And His GroupThe Phil Bodner Tentet + +260721Barry GalbraithJoseph Barry GalbraithAmerican jazz guitarist +Born December 18, 1919 in- Pittsburgh, Pennsylvania, died January 13, 1983 in Bennington, Vermont +Correcthttps://en.wikipedia.org/wiki/Barry_Galbraithhttps://www.allmusic.com/artist/barry-galbraith-mn0000786162/creditshttps://adp.library.ucsb.edu/names/316831B. GalbraithBarry GailbraithBarry GailbrethBarry GailgraithBarry GalbrathBarry GalbreathBarry GallraithBarry GarbraithBarry GlabraithBenny GailbraithBenny GalbraithG. GalbraithGalbraithHarry GalbraithJ. B. GalbraithJoe GalbraithJoseph B. GalbraithJoseph Barry GalbraithJoseph GalbraithБ. Гэлбрейтバリー・ガルブレイスQuincy Jones And His OrchestraGil Evans And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraClaude Thornhill And His OrchestraRay Ellis And His OrchestraThe Bob Prince TentetteIllinois Jacquet And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraTito Puente And His OrchestraThe Manhattan Jazz SeptetteOliver Nelson And His OrchestraThe Ellis Larkins TrioGeorge Russell & His SmalltetThe Gary McFarland OrchestraBilly Byers And His OrchestraColeman Hawkins SextetThe Smith-Glamann QuintetteWillie Rodriguez Jazz QuartetSam Most SextetUrbie Green And His OrchestraColeman Hawkins SeptetBobby Jaspar QuintetOsie Johnson And His OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraLarry Sonn OrchestraZoot Sims And His OrchestraJimmy Cleveland And His All StarsWoody Herman And The Fourth HerdGeorge Williams And His OrchestraThe Baroque Jazz EnsembleSteve Allen And His All-StarsArt Farmer And His OrchestraHal McKusick QuartetTony Scott TentetJohn Benson Brooks EnsembleThe Hal McKusick OctetManny Albam And His OrchestraGary McFarland & Co.The Eddie Bert SextetThe New York Jazz QuintetThe Rhythm Section (7)Woody Herman's Four ChipsThe Kenny Burrell OctetJoe Newman And His OrchestraBarry Galbraith QuartetAl Caiola And The Nile River BoysBuddy Weed SeptetEddie Bert QuintetThad Jones & Mel LewisThe MICHAEL COLDIN SEPTETJim Timmens And His Swinging BrassStewart - Williams & Co.Danny Hurd OrchestraWoody Herman OctetThe Pia Beck QuartetPaul Quinichette All-StarsHal McKusick Sextet + +260723Urbie GreenUrban Clifford GreenAmerican jazz trombonist, brother of [a795804] +Born August 8, 1926 in Mobile, Alabama died December 31, 2018 at Saucon Valley Manor, Hellertown, PennsylvaniaNeeds Votehttp://www.urbiegreen.com/temp/index.htmhttps://en.wikipedia.org/wiki/Urbie_Greenhttps://www.imdb.com/name/nm0338387/https://www.bluenote.com/artist/urbie-green/https://www.facebook.com/groups/229383160845https://www.encyclopedia.com/education/news-wires-white-papers-and-books/green-urbiehttps://www.allmusic.com/artist/urbie-green-mn0000300013https://adp.library.ucsb.edu/names/204021Erbie GreenGreenGreenoHurbie GreenU. GreenUrban (Urbie) GreenUrban C. GreenUrban GreenUrban GreeneUrbieUrbie Green & 21 TrombonesUrbie Green And His Electric BoneUrbie GreeneUrbin GreenUrby GreenV. Greenアービー・グリーンManhattan RedHerbie VerdeQuincy Jones And His OrchestraGil Evans And His OrchestraEnoch Light And The Light BrigadeHugo Montenegro And His OrchestraCount Basie OrchestraCount Basie ComboDizzy Gillespie And His OrchestraWoody Herman And His OrchestraThe Ray Bryant ComboQuincy Jones' All Star Big BandClaude Thornhill And His OrchestraElliot Lawrence And His OrchestraRay Ellis And His OrchestraBilly Butterfield And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetTony Scott And His OrchestraThe Manhattan Jazz SeptetteOliver Nelson And His OrchestraHenri René And His OrchestraLalo Schifrin & OrchestraThe Command All-StarsWoody Herman And His WoodchoppersMundell Lowe And His All StarsJoe Reisman And His OrchestraWoody Herman's Big New HerdSam Most QuartetBilly Byers And His OrchestraRichard Maltby And His OrchestraTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdJoe Newman OctetBenny Goodman OctetJim Tyler OrchestraRicky Ticky BrassUrbie Green And His OrchestraThe Woody Herman Big BandJimmy Smith And The Big BandThe Elliot Lawrence BandThe Philip Morris SuperbandWoody Herman And His Third HerdGeorge Williams And His OrchestraThe J.J. Johnson And Kai Winding Trombone OctetSteve Allen And His All-StarsArt Farmer And His OrchestraThe Quincy Jones Big BandTony Scott TentetGil Mellé QuintetManny Albam And His OrchestraJimmy Rushing And His OrchestraMel Powell & His All-StarsThe Mystery Band (3)The Urbie Green OctetThe Bobby Hackett SextetUrbie Green and His 6-TetJonah Jones BandAllstars (11)Urbie Green And His Big BandJoe Newman And His OrchestraThe Blue Mitchell OrchestraThe Frank Wess SextetAllen Keller And TrombonesThe Vinnie Burke All-StarsThe Urbie Green SeptetUrbie Green And His All-StarsClark Terry SeptetThe MICHAEL COLDIN SEPTETThe BrassmatesJim Timmens And His Swinging BrassStewart - Williams & Co.Urbie Green And Twenty Of The "World's Greatest"The Urbie Green QuintetJam Session At The RiversideRusty Dedrick And The Ten Man BandJim Chapin Octet + +260724Osie JohnsonJames JohnsonJazz drummer, vocalist, and arranger; born January 11, 1923 in Washington, D.C., died February 10, 1966 in New York City + +Studied harmony at the same high school attended by [a10096]. He first worked with [a1154538] and then, after service in the United States Navy freelanced for a time in Chicago. From 1951 to 1953, he worked with [a257353]. Johnson recorded on albums led by [a309988], [a263796], and [a253477].Needs Votehttps://en.wikipedia.org/wiki/Osie_Johnsonhttps://www.imdb.com/name/nm2917845/https://www.allmusic.com/artist/osie-johnson-mn0000418302http://www.worldcat.org/identities/lccn-nr90028222/https://adp.library.ucsb.edu/names/323884James "Osie" JohnsonJames JohnsonJames Ocie JohnsonJames Osie JohnsonJohnJohnsonMr. Osie JohnsonO. JohnsonOcie JohnsonOsi JohnsonOsie HintonOsie JohnssonOssi JohnsonOssie JohnsonOzzie Johnsonオシー・ジョンスンオシー・ジョンソンオジー・ジョンソンQuincy Jones And His OrchestraGil Evans And His OrchestraThe Bud Powell TrioBuck Clayton And His OrchestraAndy Kirk And His Clouds Of JoyRay Ellis And His OrchestraCootie Williams And His OrchestraTony Scott And His OrchestraThe Manhattan Jazz SeptetteHoward McGhee QuintetAl Cohn - Zoot Sims QuintetThe Tony Scott QuartetRay Brown All-Star Big BandManny Albam And His Jazz GreatsJoe Newman SextetJohnny Hodges And His OrchestraAl Cohn QuintetBilly Byers And His OrchestraTerry Gibbs And His OrchestraAl Cohn's Natural SevenRalph Burns And His OrchestraJoe Newman & His BandTony Scott SeptetAl Cohn And His OrchestraClark Terry QuartetBobby Jaspar QuintetSeldon Powell SextetOsie Johnson And His OrchestraDoc Severinsen And His OrchestraLarry Sonn OrchestraOsie Johnson QuintetThe Gigi Gryce - Donald Byrd Jazz LaboratoryThe Jay And Kai QuintetJimmy Cleveland And His All StarsThe Zoot Sims QuintetThe Joe Newman SeptetSteve Allen And His All-StarsHal McKusick QuartetGene Quill And His QuintetThe Quincy Jones Big BandBob Brookmeyer And His OrchestraTony Scott TentetAl Cohn And His "Charlie's Tavern" EnsembleJohn Benson Brooks EnsembleOscar Pettiford OrchestraManny Albam And His OrchestraJimmy Rushing And His OrchestraOscar Pettiford & His All StarsThe Billy Byers-Joe Newman SextetThe Eddie Bert SextetLeonard Feather's East Coast StarsThe New York Jazz QuintetThe Prestige Blues-SwingersThe Frank Wess QuintetThe Rhythm Section (7)Mal Waldron's All StarsJonah Jones BandHal Schaefer And His OrchestraUrbie Green And His Big BandSal Salvador And His OrchestraThe Kenny Burrell OctetThe Ernie Wilkins GroupPaul Horn QuartetBennie Green SextetAl Cohn-Zoot Sims SextetThe Frank Wess SextetDon Redman All StarsThe Zoot Sims Al Cohn SeptetAl Caiola And The Nile River BoysOsie Johnson's All-StarsSteve Allen QuartetSteve Allen TrioEddie Bert QuintetRalph Burns And His EnsembleJam Session At The RiversideBilly Byers SextetThe Pia Beck QuartetOscar Pettiford Big BandOsie Johnson SextetThe Sound Of Jazz All-Stars + +260727Mal WaldronMalcolm Earl WaldronAmerican jazz pianist and composer +Born August 16, 1925 in New York City, NY, USA +Died December 2, 2002 in Brussels, Belgium +In the late 1950s, Waldron was the piano accompanist of [a33589] in the last two years of her life and was a mainstay of [l19591] being credited on about 40 of the label's albums, mostly as sideman with the sessions jointly led by [a145272] and [a271897] probably being the most prized. After migrating to Europe in the mid-1960s, originally settling in Munich (Brussels for the last decade of his life), he recorded sessions for the then new [l6785] and [l32614]. For many decades he regularly collaborated with [a97532]. Father of [a=Mala Waldron]. Ex-husband of [a=Elaine Waldron].Needs Votehttps://www.theguardian.com/news/2003/jan/28/guardianobituaries.artshttps://www.nytimes.com/2002/12/06/arts/mal-waldron-77-composer-of-the-jazz-ballad-soul-eyes.htmlhttp://www.jazzpages.com/MalWaldron/https://en.wikipedia.org/wiki/Mal_Waldronhttps://www.allmusic.com/artist/mal-waldron-mn0000665824https://www.scaruffi.com/jazz/waldron.htmlhttps://www.imdb.com/name/nm0907310/https://www.jazzdisco.org/mal-waldron/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/12510e2743267027c757c18bb07cd952729ee/biographyhttps://malcolmwaldron.bandcamp.com/https://malwaldron.bandcamp.com/https://snake-out.blogspot.com/AldronEarl Malcolm WaldronHal WaldronM. WaldonM. WaldrenM. WaldroM. WaldronM. WoldronM.E. WaldronM.WaldronMal WaldeonMal WaldrenMal WaldroMal WaldromMal WandronMal WldronMalcolm WaldronMall WaldronMel WaldronW AldronWadronWaldronマル・ウォルドロンThe Charles Mingus QuintetRay Ellis And His OrchestraCharles Mingus Jazz WorkshopThe Teddy Charles TentetMal Waldron TrioThe Prestige All StarsMal Waldron QuintetKlaus Weiss QuintetJackie McLean QuintetMax Roach QuartetThe Prestige Jazz QuartetMal Waldron QuartetTeddy Charles New Directions QuartetSteve Lacy / Mal WaldronThe Ray Draper QuintetNathan Davis QuartetJackie McLean SextetJackie McLean QuartetThe Mal Waldron SextetJoe Henderson QuartetGene Ammons' All StarsDusko Gojkovic QuintettMarty Cook GroupMal Waldron's All StarsThe Herbie Mann SextetRoy Burrowes SextetThierry Bruneau 4tetThe Duško Gojković SextetMal Waldron - Nicolas Simion DuoEric Dolphy / Booker Little QuintetPaul Quinichette-John Coltrane QuintetThe Sound Of Jazz All-StarsMal Waldron SeptetBarney Wilen & Mal Waldron Quartet + +260730Janet PutnamJanet PutnamAmerican harpist, born 20 May 1921, died 31 July 2011 +Was married to cellist [a=David Soyer]. +She was a member of the Metropolitan Opera Orchestra and a jazz harpist, and made recordings with Frank Sinatra, Billie Holiday, Sarah Vaughan, Miles Davis, and Artie Shaw. +Needs VoteBetty PutnamJ. PutmanJane PutnamJanel PutnamJanet PulmanJanet PutmanJanet SoyerGil Evans And His OrchestraThe Modern Jazz SocietyRay Ellis And His OrchestraThe Modern Jazz EnsembleOscar Pettiford OrchestraManny Albam And His OrchestraOscar Pettiford Big Band + +260744Berliner PhilharmonikerBerliner Philharmoniker (translated in English as Berlin Philharmonic Orchestra) - earlier known as Berliner Philharmonisches Orchester or Philharmonisches Orchester - is a German orchestra founded in 1882. + +[b]Principal Conductors[/b] +Ludwig Von Brenner (1882-1887) +[a=Hans Von Bülow] (1887–1892) +[a=Arthur Nikisch] (1895–1922) +[a=Wilhelm Furtwängler] (1922–1945) +[a=Leo Borchard] (May–August 1945) +[a=Sergiu Celibidache] (1945–1952) +[a=Wilhelm Furtwängler] (1952–1954) +[a=Herbert Von Karajan] (1954–1989) +[a=Claudio Abbado] (1989–2002) +[a=Sir Simon Rattle] (2002–2018) +[a=Kirill Petrenko] (2019-) + +There has officially been [i]one[/i] name change. It took place gradually over a 37 year period where the official two names (and ANVs thereof) were used in parallel. +First appearance of Berliner Philharmoniker was around 1929: [r24453419] +Last appearance of Berliner Philharmonisches Orchester was in 1966: [r9117993]Needs Votehttps://en.wikipedia.org/wiki/Berlin_Philharmonichttps://de.wikipedia.org/wiki/Berliner_Philharmonikerhttps://www.berliner-philharmoniker.de/en/https://web.archive.org/web/20030818014917/https://www.sonyclassical.com/artists/berlin/https://www.imdb.com/name/nm1617101/https://www.youtube.com/c/berlinerphilharmonikerhttps://www.x.com/BerlinPhilhttps://www.facebook.com/BerlinPhilhttps://www.instagram.com/berlinphil/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103048/Berliner_PhilharmonikerA Berlini Filharmonikusok ZenekaraArchiv Berliner PhilharmonikerB.P.O.BPBPOBach Philharmonic SocietyBelin Philharmonic OrchestraBerliinin FilharmonikotBerliinin FilharnonikotBerliinin SinfonikotBerlijns Philharmonisch OrkestBerlijnsch Philharmonisch OrkestBerlinBerlin Filarmani Ork.Berlin Filharmoniska OrkesterBerlin Filharmoniske OrkesterBerlin OrchestraBerlin POBerlin Phil.Berlin Phil. Orch.Berlin Phil. OrchestraBerlin PhilarmonicBerlin Philarmonic OrchestraBerlin PhilharmonIc OrchestraBerlin PhilharmonicBerlin Philharmonic (?)Berlin Philharmonic Orch.Berlin Philharmonic OrchestraBerlin Philharmonic Orchestra,Berlin Philharmonic Orchestra, Soloists And ChorusBerlin Philharmonic Orchestra·Berlin Philharmonic orchestraBerlin Philharmonica OrchestraBerlin Philharmonie OrchestraBerlin PhilharmonikerBerlin Philharmonuc OrchestraBerlin philharmonic OrchestraBerline Philharmonic OrchestraBerlinen Philharmonic OrchestraBerliner FilharmonikerneBerliner PhilarmonikerBerliner PhilharmBerliner Philharm. OrchesterBerliner Philharmon. OrchesterBerliner PhilharmonicBerliner Philharmonic OrchestraBerliner PhilharmonikaBerliner PhilharmonikarBerliner Philharmoniker OrchesterBerliner Philharmoniker OrchestraBerliner Philharmoniker Und SolistenBerliner Philharmoniker VirtuosenBerliner PhilharmonikernBerliner PhilharmonikerneBerliner Philharmonikes OrchesterBerliner PhilharmonilerBerliner Philharmonische OrchesterBerliner Philharmonische StreicherBerliner PhilharmonischerBerliner Philharmonisches OrchestaBerliner Philharmonisches OrchesterBerliner SinfonieorchesterBerlini Filharmonikus ZenekarBerlini FilharmonikusokBerlini FilharmónikusokBerlinin Filharmoninen OrkesteriBerlins Filharmoniska OrkesterBerlins Filharmoniske OrkesterBerlins Philharmoniske OrkesterBerlinska FilharmonieBerlinska FilharmonijaBerlinská FilharmonieBerlinský Filharmonický OrchestrBerlinský Filharmonícký OrchestrBerlinští FilharmonikovéBerlínska FilharmonieBerlínski FilharmoniciBerlínská FilharmonieBerlínské filharmonieBerlínský Filharmonický OrchestrBerlínští FilharmonikovéBerlínští filharmonikovéBläser der Berliner PhilharmonikerChoeurs De BerlinChoeurs Et Orchestre Philharmonique De BerlinD. Philharmonische Orchester, BerlinDas Berliner Philharmonische OrchesterDas Philharmonische Orchester BerlinDas Philharmonische Orchester, BerlinDem Berliner Philharmonischen OrchesterDem Philharmonischen Orchester BerlinDem Philharmonischen Orchester, BerlinDen Berliner PhilharmonikernDer Berliner PhilharmonikerDie Berliner PhilharmonikerDie berliner PhilharmonikerFilarmonica BerlinoFilarmonica De BerlinFilarmonica De BerlínFilarmonica Di BerlinoFilarmonica de BerlinFilarmonica di BerlinoFilarmónica De BerlimFilarmónica De BerlinFilarmónica De BerlínFilarmónica De Berlín - Solistas De RockFilarmónica de BerlimFilarmónica de BerlínFilarmônica De BerlimFilarmônica de BerlimFilarmônica de BerlinFilharmonica Di BerlinoFilharmonický OrchestrFilharmonisch Orkest Van BerlijnGerman PhilharmonicGroße Spezialbesetzung Mit Dem Berliner Philharmonischen OrchesterHorn Quartet Of The Berlin PhilharmonicIe Berliner PhilharmonikerInstrumentalsolisten Der Berliner PhilharmonikerKomorni Orkestar Berlinske FilharmonijeL'Orchestre Philharmonique De BerlinL'Orchestre Philharmonique de BerlinL'orchestra Filarmonica Di Berlino Con SolistiL'orchestre Philharmonique De BerlinLa Filarmonica Di BerlinoLa Orquesta Filarmȯnica De BerlinMitglieder Des Philharmonischen Orchesters BerlinMitglieder Des Philharmonischen-Orchesters, BerlinMitglieder des Berliner Philharmonischen OrchestersOrch. Filarm. Di BerlinoOrch. Filarmonica Di BerlinoOrch. Philh. De BerlinOrch. Philh. de BerlinOrch. Philharm. De BerlinOrch. Philharmonique De BerlinOrchesta Filarmonica De BerlinOrchesterOrchesterakademie Der Berliner PhilharmonikerOrchestr Berlinskí FilharmonieOrchestr Berlínské FilharmonieOrchestr Berlínských FilharmonikůOrchestr Philharmonique De BerlinOrchestra Berliner PhilharmonikerOrchestra Dei Berliner PhilharmonikerOrchestra Dei Berliner PhilharmonikerOrchestra Di BerlinoOrchestra FIlarmonica Di BerlinoOrchestra Filarmonica DI BerlinoOrchestra Filarmonica Di BerlinOrchestra Filarmonica Di BerlinoOrchestra Filarmonica Di BerlínoOrchestra Filarmonica di BerlinOrchestra Filarmonica di BerlinoOrchestra Filarmonicii din BerlinOrchestra Filarmonică BerlinOrchestra Filharmonica Di BerlinoOrchestra Filharmonica di BerlinoOrchestra Philharmonica Di BerlinoOrchestra Philharmonique De BerlinOrchestra Philharmonique de BerlinOrchestra Sinfonica di BerlinoOrchestra dei Berliner PhilharmonikerOrchestra „Berliner Philharmoniker“OrchestreOrchestre Phiharmonique de BerlinOrchestre Philarmonique De BerlinOrchestre Philarmonique de BerlinOrchestre Philarmonique de Berlin,Orchestre Philh. De BerlinOrchestre Philhamonique De BerlinOrchestre Philhamonique de BerlinOrchestre Philharmonique BerlinOrchestre Philharmonique De BerlinOrchestre Philharmonique De BerlinOrchestre Philharmonique De Berlin (Solistes)Orchestre Philharmonique De Radio BerlinOrchestre Philharmonique de BerlinOrchestre Philharmonique, BerlinOrchestre Symphonique De BerlinOrchestre philharmonique de BerlinOrq. Filarmonica De BerlinOrq. Filarmonica de BerlinOrq. Filarmónica R. BerlínOrq. Filarmônica De BerlimOrquesta De Los Filarmonicos De BerlinOrquesta FIlarmonica De BerlinOrquesta Filarmonia De BerlinOrquesta Filarmonica De BerlinOrquesta Filarmonica De BerlinoOrquesta Filarmonica De BerlínOrquesta Filarmonica de BerlinOrquesta Filarmoníca De BerlinOrquesta Filarmónia De BerlínOrquesta Filarmónica De BerlimOrquesta Filarmónica De BerlinOrquesta Filarmónica De BerlìnOrquesta Filarmónica De BerlínOrquesta Filarmónica de BerlinOrquesta Filarmónica de BerlínOrquesta Filarmônica De BerlinOrquesta Filharmonica De BerlinOrquesta Filharmónica De BerlínOrquesta Philharmonia de BerlínOrquesta Philharmónica De BerlinOrquesta Sinfonica de BerlinOrquestra Filarmonica De BerlimOrquestra Filarmónica De BerlimOrquestra Filarmónica De BerlinOrquestra Filarmónica de BerlimOrquestra Filarmônica De BerlimOrquestra Filarmônica de BerlimOrquestra Sinfónica De BerlimOrquestra Sinfônica Da Rádio De BerlimPhilh. BerlinPhilharm. Orch., BerlinPhilharm. Orchester BerlinPhilharm. Orchester, BerlinPhilharm. Orchestra, BerlinPhilharmon. OrchesterPhilharmonia OrchesterPhilharmonia Orchestra BerlinPhilharmonic Ensemble BerlinPhilharmonic OrchestraPhilharmonic Orchestra BerlinPhilharmonic Orchestra, BerlinPhilharmonic Studio Orchestra BerlinPhilharmonica Orchestra, BerlinPhilharmonie De BerlinPhilharmonie de BerlinPhilharmonikerPhilharmonique De BerlinPhilharmonique de BerlinPhilharmonische Orchester, BerlinPhilharmonische Streichersolisten.BerlinPhilharmonischem Orch.Philharmonischen Orchester BerlinPhilharmonischen Orchester, BerlinPhilharmonisches Orchester, BerlinPhilharmonisches Orch.Philharmonisches OrchesterPhilharmonisches Orchester BerlinPhilharmonisches Orchester Berlin*Philharmonisches Orchester, BeriinPhilharmonisches Orchester, BerlinPhilharmonisches Orchestre, BerlinPhilharmonisk Orkester, BerlinPhlharmonisches Orchester, BerlinSolistes de l'Orchestre Philharmonique de BerlinThe Berlin Philharmonic OrchestraThe Berlin PhilharmonicThe Berlin Philharmonic Orch.The Berlin Philharmonic OrchestraThe Berlin Philharmonic Orchestra & SoloistsThe Berlin Philharmonic Orchestra, Soloists And ChorusThe Berlin Philmarmonic OrchestraThe Berlin Symphony OrchestraThe Berliner PhilharmonikerThe German Philharmonic OrchestraThe Philarmonic Orchestra, BerlinThe Philhamonic Orchestra, BerlinThe Philharmonic Orchestra BerlinThe Philharmonic Orchestra, BerlinČlanovi Berlinske FilharmonijeΦιλαρμονική Ορχήστρα Του ΒερολίνουБерлинска ФилхармонијаБерлинская ФилармонияБерлинская филармонияБерлинский Симфонический ОркестрБерлинский Филармонический ОркБерлинский Филармонический Орк.Берлинский Филармонический ОркестрБерлинский Филармоничский ОркестрБерлинский филармонический оркестрБерлинский филармонический оркестр,Орк. Берлинской Филарм.Орк. Берлинской ФилармонииОрк. Под Упр. В. ФуртвенглераОркестр Берлинский ФилармонииОркестр Берлинской ФилармонииОркестр П/У В. ФуртвенглераОркестр П|У В. ФуртвенглераСимф. орк. Берлинской филармонииСимфонический Оркестрأوركسترا برلين الفيلهارمونيارکستر فیلارمونیک برلیناوركسترا برلين الفيلهارمونيアレクシス・ワイセンベルクギュンター・ヴァントフィルハーモニア管弦楽団ベルリン・ふぉるハーモニー管弦楽団ベルリン・ふぉるハーモニー管弦楽団 = Berliner Philharmonikerベルリン・ふぉるハーモニー管弦楽団 = Berliner Philharmonikerベルリン・フィルベルリン・フィルハーモニック・オーケストラベルリン・フィルハーモニーベルリン・フィルハーモニー管弦楽団ベルリン・フィルハーモニー管弦楽団 = Berliner Philharmonikerベルリン・フィル弦楽合奏団ベルリン交響楽団ベルリン・フィルハーモニー管弦楽団ベルリン・フィルハーモニー管弦楽団 / Berlin Philharmonic Orchestra伯林フィルハーモニック管弦楽団伯林フィルハーモニック管絃楽団伯林フィルハーモニー管絃樂團柏林愛樂柏林爱乐乐团管弦楽団 = Berliner Philharmoniker베를린 필하모닉 오케스트라Gerhard StempnikBrett DeanManfred EicherAurèle NicoletMartin OwenJonathan TunnellJames GalwayClaudio AbbadoDietmar SchwalkeEmmanuel PahudOlaf OttAlbrecht MayerMartin KretzerHermann BäumerBlasorchester der Berliner PhilharmonikerWolfgang Meyer (2)Michel SchwalbéSergiu CelibidacheAttila BaloghDaniel StabrawaSebastian KrunniesGerd SeifertKarlheinz ZöllerAndreas BlauWolfram ChristKarl LeisterThomas BrandisWilfried StrehleWolfgang BoettcherLothar KochPeter BremAndré CluytensHelmut HellerBryn LewisOttomar BorwitzkyNicanor ZabaletaGeorg HilserGiusto CapponeGünther PieskDavid GuerrierGeorg FaustLeon SpiererHanns-Joachim WestphalEmil MaasOlaf ManingerDavid Bell (5)Neithard ResaRainer ZepperitzMatthias RüttersHeinz Friedrich HartigHans Priem-BengrathGerhard TaschnerWilly WaltherEberhard FinkeBernhard HartogHermann MenninghausRainer MoogRainer KussmaulFrank MausWilliam Tim ReadHelmut NicolaiChristoph Von Der NahmerStefan DohrLinus WilhelmDietrich GerhardtFritz WesenigkFerdinand MezgerHansjörg SchellenbergerJanne SaksalaKarl-Heinz SteffensSiegfried BorriesOskar RothensteinerHans BastiaanHorst EichlerHans-Peter SchmitzSolène KermarrecWerner BerndsenKunio TsuchiyaPeter Steiner (3)Herbert StährEduard DrolcLeo BorchardHeinrich KärcherHenning TrogGünter PrillToru YasunagaFritz HelmisKolja BlacherHector McDonaldDie 12 Cellisten Der Berliner PhilharmonikerKarl SteinsShirley HopkinsWilhelm PoseggaGernot SchulzWolfgang DünschedeRainer MehneUlrich KnörzerKlaus WallendorfNorbert HauptmannJörg BaumannBurkhard RohdeGötz TeutschSiegbert UeberschaerErich RöhnWaldemar DölingOtto SteinkopfHeinz KirchnerDie Hornisten Der Berliner PhilharmonikerWalter SeyfarthAndreas WittmannStefan JezierskiMichael HaselFergus McWilliamManfred KlierMartin MenkingIrmgard PoppenLouis PersingerAmichai GroszSarah Willis (2)Hugo KolbergAlexander Von PuttkamerDavid RinikerBernd GellermannLudwig QuandtEsko LaineRadek BaborákWolfgang TalirzRomano TommasiniAlexander BaderGünter KöppPeter GeislerManfred BraunAlfred MalecekMitglieder der Berliner PhilharmonikerHeinrich MajowskiUlrich WolffMarie-Pierre LanglametFrank-Ulrich WurlitzerKarl-Heinz Duse-UteschKlaus StollRachel SchmidtAlessandro CapponeAleksandar IvićJulia GartemannKarl RuchtSiegfried SchäfrichMatthew McDonaldJoseph SchusterVolker WorlitzschMarlene ItoAndreas OttensamerRudolf WatzelGuy BraunsteinJesper Busk SørensenKonradin GrothPaul HümpelWieland WelzelWenzel FuchsDominik WollenweberStefan SchweigertDaishin KashimotoMáté SzücsBenjamin ForsterBettina SartoriusManfred PreisHelmut MebertHans GieselerPeter RiegelbauerHermann HirschfelderFritz DemmlerKnut WeberJan DiesselhorstGerhard WoschnyRudolf WeinsheimerKlaus HäusslerAlexander WedowChristoph KaplerReinhard WolfHolm BirkholzRaimar OrlovskyUlrich FritzeEdicson RuizHelmut SchlövogtHeinz BöttgerKurt WallnerArmin BrunnerVeronika PassinChristhard GösslingSiegfried CieslikWolfram ArndtThomas ClamorStephan KonczEdward ZienkowskiWalter Müller (5)Rainer SeegersArthur TroesterChristoph WynekenAndrej ŽustHenrik SchaeferMartin LöhrMartin Heinze (2)Heinz OrtlebJonathan Kelly (3)Naoko ShimizuRolf RankeHeinz-Dieter SchwarzAlvaro ParraBarbara KehrigErich Hartmann (2)Hermann BethmannAlfred BürknerDie Kammermusikvereinigung Der Berliner PhilharmonikerJan SchlichteRichard StegmannDaniel Bell (4)Eckart WiewinnerAndre SchochPaolo MendesJohann DomsHeinz Walter ThieleKotowa MachidaChristoph Hartmann (2)Martin Von Der NahmerKarl FreundHeinz-Henning PerschelRainer SonneHerbert RotzollAxel GerhardtWalter ScholefieldGustav ZimmermannWolfgang HerzfeldPeter DohmsNikolaus RömischChristoph IgelbrinkRichard DuvenFranz SchindlbeckGeorg SchreckenbergerZoltan AlmasiChristoph StreuliSebastian HeeschMarkus WeidmannManfred RotzollVineta SareikaUrsula SchochMatthew HunterAage WallinDaniele DamianoWolfram BrandlStanley DoddsChristian StadelmannMartin StegnerEva - Maria TomasiMaja AvramovicArmin SchubertWalter KüssnerBastian SchäferLaurentiu DincaZdzislaw PolonekFelicitas HofmeisterAmadeus HeutlingMadeleine CarruzzoAline ChampionAndreas Neufeld (2)Rüdiger LiebermannJelka WeberMarion ReinhardWolfgang KohlyThomas RugeMayumi TaniguchiNabil ShehataThomas TimmChristoph Kohler (2)Velenczei TamásMichael DauthFriedrich Witt (2)Johanna PichlmairMor BironAlain CivilLutz Steiner (2)Raphael HägerStefan Schulz (4)Marie-Christine ZupancícWerner ThärichenDanusha WaśkiewiczPhilipp BohnenChristophe HorákMicha AfkhamBruno DelepelaireMathieu Dufour (2)Gertrude RossbacherAlan NillesSimon RoturierPaul SchröerStephan Schulze (3)Martin FrutigerMartin ZillerOtto MachutMatthais RüttersAry van LeeuwenKilian HeroldSimone BernardiniMax ZimolongSébastian JacotUladzimir SinkevichNoah Bendix-BalgleyJoaquín Riquelme GarcíaAlfred IndigOswald VoglerAlfred StreiberBläser der Berliner PhilharmonikerGábor TarköviCornelia GartemannSebastian BreuningerAndreas BuschatzThomas LeyendeckerJanusz WidzykRachel Helleur-SimcockGuillaume JehlKrzysztof PolonekFora BaltacigilIgnacy MiecznikowskiDorian XhoxhiSimon RösslerHelena Madoka BergStanisław PajakLuis EsnaolaAnna MehlinMichael KargLuíz Fïlíp CoelhoVáclav VonášekGunars UpatnieksEgor EgorkinAngelo de LeoKyoungmin ParkSophie DervauxFlorian PichlerDavid Cooper (30)Hande KüdenChrista-Maria StangorraHeike JanickePaula ErnesaksAndraž GolobMatic KuderWilhelm SchimmelJohannes LamotkeStefán Ragnar HöskuldssonMinami YoshidaHarry Ward (4)César ThomsonDiyang MeiErich VenzkeRudolf UschmannBertold StecherHendrik de Vries (4)Paul SpörriJacques van Lier (3)Willi Rosenthal (2) + +260757The Miles Davis SextetNeeds VoteMilesMiles Davis All Star SextetMiles Davis All Stars SextetMiles Davis GroupMiles Davis SextetMiles Davis SextetoMiles Davis U. S. SextettMiles-Davis-ComboSextetThe Miles Davis GroupThe Miles Davis SextetteСекстет Майлса Дэвисаマイルス・デイビスマイルス・デイビス六重奏団マイルス・デイヴィス・オールスター・セクステットMiles Davis And His Cool WailersMiles DavisHorace SilverArt BlakeyCannonball AdderleyJohn ColtraneJackie McLeanHank MobleySonny RollinsKenny ClarkeJ.J. JohnsonTommy PotterWynton KellyBill EvansJimmy CobbPercy HeathRoy HaynesOscar Pettiford"Philly" Joe JonesPaul Chambers (3)Walter Bishop, Jr.Lucky ThompsonBennie GreenJimmy HeathJohn Lewis (2)Nelson BoydGil Coggins + +260888Gene OrloffEugene OrloffAmerican violinist, arranger and concertmaster. +Born: June 14, 1921. +Died: March 23, 2009. Needs Votehttps://en.wikipedia.org/wiki/Gene_OrloffE. OrloffEugene OrloffEugène OrloffG. OrloffGean OrloffGene O.Gene OrlofGene PrloffGeorge OrloffOrloffДжин ОрловNew York PhilharmonicNeal Hefti's OrchestraGene Orloff GroupThe Gene Orloff SectionGene Orloff EnsembleGene Orloff And His StringsBilly Byers And His OrchestraPond Life (2)Al Cohn And His OrchestraThe Pond Life OrchestraBen Webster With Strings + +260911Garvin BushellGarvin BushellAmerican woodwind multi-instrumentalist, born 25 September 1902 in Springfield, Ohio, died 31 October 1991 in Las Vegas, Nevada, USA. He played both jazz and classical music on clarinet, alto clarinet, oboe, English horn, flute, saxophone, bassoon, and contrabassoon. +Needs Votehttp://en.wikipedia.org/wiki/Garvin_Bushellhttps://www.allmusic.com/artist/garvin-bushell-mn0000151032/biographyhttps://adp.library.ucsb.edu/names/105663? Garvin BushellBushellG. BushellGalvin RussellGarvin Bushell And FriendsGarvin BushnellGarvin BusnellGavin BushellGravin BushellChick Webb And His OrchestraChick Webb And His Little ChicksElla Fitzgerald And Her Famous OrchestraMamie Smith And Her Jazz HoundsPerry Bradford Jazz PhoolsLouis Metcalf's All StarsLouisiana Sugar BabesJohnny Dunn And His Jazz BandThe Fletcher Henderson All StarsBunk Johnson & His BandEliza Christmas Lee And Her Jazz BandEthel Waters And The Jazz MastersJohnny Dunn And His BandThe Bill Davison SixFive Jazz Bell HopsDaisy Martin And Her Jazz Bell HopsLillyn Brown And Her Jazz-Bo Syncopators + +260912Ahmed Abdul-MalikAmerican jazz bassist and oud player, born as Jonathan Tim Jr. January 30, 1927, Brooklyn, New York, died October 2, 1993, Long Branch, New Jersey. +Needs VoteA. Abdul MalikA. MalikA.A. MalikAbdul A. MalikAbdul Ahmed MalikAbdul MalikAbdul-MalikAhmadAhmad Abdul-MalikAhmed Abdul - MalikAhmed Abdul MaliAhmed Abdul MalikAhmed Abdul-Malik's Middle-Eastern MusicAhmed-Abdul MalikAhmet Abdul-MalikMalikThe Thelonious Monk QuartetArt Blakey & The Afro-Drum EnsembleThe Earl Hines TrioWalt Dickerson QuartetRandy Weston TrioRandy Weston Quintet + +261137Elisabeth PerryViolinist.Needs Votehttp://www.lisperry.comElizabeth PerryLiz PerryRadio KamerorkestContinuum (4)Camilli QuartetRadio Filharmonisch OrkestRadio Kamer FilharmonieThe Trio Of London + +261196Art TaylorArthur S. Taylor, Jr.American jazz drummer and bandleader; born April 06, 1929 in New York City, New York, USA; died February 06, 1995, New York City, New York, USANeeds Votehttps://en.wikipedia.org/wiki/Art_Taylorhttps://www.drummerworld.com/drummers/Art_Taylor.htmlhttps://adp.library.ucsb.edu/names/210034A. TaylorArt Taylor, Sr.Arthur TaylorArthur TaylorArthur taylorArthurTaylorTaylorアーサー・テイラーアート・テイラーアート・テーラーGil Evans And His OrchestraThe John Coltrane QuartetThe Red Garland TrioThe Thelonious Monk QuartetMiles Davis All StarsThe Charlie Parker QuintetThe Thelonious Monk QuintetThe Horace Silver QuintetThe Bud Powell TrioLennie Tristano QuartetThe Red Garland QuintetGeorges Arvanitas TrioCharles Mingus Jazz WorkshopDonald Byrd QuintetSonny Rollins QuartetThe Miles Davis QuartetThe Hank Mobley QuintetThe Art Farmer SeptetThe Dexter Gordon & Slide Hampton SextetHank Mobley SextetThe Roland Kirk QuartetThe Frank Wright QuartetToshiko Akiyoshi TrioArt Taylor QuartetLou Donaldson QuartetThe Thelonious Monk OrchestraRolf Ericson And His American StarsThe Prestige All StarsLem Winchester SextetGeorge Wallington QuintetSonny Rollins TrioJohn Coltrane TrioThe Kenny Dorham QuintetJulian Priester SextetJackie McLean QuintetMiles Davis + 19Charlie Rouse QuintetContinuum (5)Buddy DeFranco QuartetLou Donaldson QuintetThe Johnny Griffin QuartetOscar Pettiford SextetNathan Davis QuartetJackie McLean SextetPaul Chambers QuartetJackie McLean QuartetThe Mal Waldron SextetGeorge Wallington TrioThe Cecil Payne QuartetRaymond Fol Big BandElmo Hope QuintetRandy Weston's African RhythmsGene Ammons' All StarsElmo Hope QuartetLes MexirockersWilbur Harden SextetHank Mobley QuartetJohnny Griffin QuintetThe Herbie Mann SextetBenny Golson QuintetGigi Gryce And The Jazz Lab QuintetArthur Taylor's WailersDonald Byrd QuartetBoy Edgar Big BandTina Brooks QuintetBenny Golson QuartetSteve Grossman TrioThe Jack McDuff TrioErnie Henry QuintetJohnny Griffin/Art Taylor QuartetSahib Shihab Sextet + +261286Al CohnAlvin J. CohnAmerican jazz saxophonist, born 24 November 1925, died 15 February 1988 in Stroudsburg, Pennsylvania, USA +In the 40s he played in "Woody Herman's Second Herd", where he was known as one of the "Four Brothers" together with Zoot Sims, Stan Getz and Serge Chaloff. +His first wife was jazz singer [a2412815], mother of his son [a1393975]. In the mid 1960s, he married 2nd wife [a1238758]. Grandfather of [a3996050].Needs Votehttps://en.wikipedia.org/wiki/Al_Cohnhttps://www.esu.edu/library/collections/alcohn/about.cfmhttps://adp.library.ucsb.edu/names/103183A CohnA KahnA. CohnA.CohnA.G. CohnA; CohnACAlAl CohenAl CohonAl ConeAlan F. CohnAll CohnAlvin CohnCahnChonCohenCohncohnАл. Конアル・コーンIke HorowitzQuincy Jones And His OrchestraWoody Herman And His OrchestraBuddy Rich And His OrchestraQuincy Jones' All Star Big BandAndy Kirk And His Clouds Of JoyBoyd Raeburn And His OrchestraElliot Lawrence And His OrchestraRay Ellis And His OrchestraThe Bob Prince TentetteWoody Herman & The New Thundering HerdArt Blakey's Big BandAl Cohn QuartetAl Cohn - Zoot Sims QuintetManny Albam And His Jazz GreatsGeorgie Auld And His OrchestraStan Getz Tenor Sax StarsAl Cohn QuintetBilly Byers And His OrchestraTerry Gibbs And His OrchestraAl Cohn's Natural SevenThe Prestige All StarsJoe Newman OctetThe Four Brothers (2)Al Cohn And His OrchestraHenri Renaud BandThe Woody Herman Big BandThe BirdlandersOsie Johnson And His OrchestraAl Porcino Big BandGeorge Russell OrchestraLarry Sonn OrchestraJimmy Giuffre & His Music MenNational Jazz EnsembleRichard Wess And His OrchestraThe Elliot Lawrence BandZoot Sims And His OrchestraWoody Herman And His Third HerdWoody Herman And The Fourth HerdGeorge Williams And His OrchestraThe Nick Travis QuintetSteve Allen And His All-StarsJimmy Knepper QuintetAl Cohn SextetDick Collins And His OrchestraBob Brookmeyer And His OrchestraAl Cohn And His "Charlie's Tavern" EnsembleJohn Benson Brooks EnsembleGerry Mulligan And The Sax SectionZoot Sims - Bob Brookmeyer OctetOscar Pettiford & His All StarsThe Birdland StarsPeanuts Hucko And His OrchestraChubby Jackson's Big BandUrbie Green And His Big BandConcord Jazz All StarsJoe Newman And His OrchestraAl Cohn - Bob Brookmeyer QuintetAl Cohn-Zoot Sims SextetDon Redman All StarsGerry Mulligan OctetThe Zoot Sims Al Cohn SeptetThe Bill Potts Big BandThe Butch Miles SextetThe Vinnie Burke All-StarsUrbie Green And His All-StarsTenor ConclaveDick Collins And The Runaway HerdAl Cohn-Richie Kamuca SextetWoody Herman & The Second HerdThe Dave McKenna Swing SixArt Mardigan SextetSpike Robinson • Al Cohn Quintet + +261287George WallingtonGiacinto Figlia.American jazz pianist and composer. + +Born : October 27, 1924 in Palermo, Sicily, Italy. +Died : February 15, 1993 in New York City, New York. + +Played with : Dizzy Gillespie, Joe Marsala, Charlie Parker, Serge Chaloff, Allan Eager, Kai Winding, Terry Gibbs, Brew Moore, Al Cohn, Gerry Mulligan, Zoot Sims, Red Rodney, Lionel Hampton among others. +Among the albums to his name to remember : "George Wallington trio" (1953), "The New York Scene" (1957), "The Prestidigitator" (1958). +Needs Votehttps://en.wikipedia.org/wiki/George_Wallingtonhttps://adp.library.ucsb.edu/names/349858G WallingtonG. WallingtonG. WellingtonG.WallingtonGeo. WallingtonGeorg WallingtonGeorge "Lemon Drop" WallingtonGeorge WashingtonGeorge WellingtonWallingtonWallintonBobby Jaspar QuartetBrew Moore SextetAl Cohn QuartetAllen Eager QuintetThe Kai Winding SextetBrew Moore SeptetGeorge Wallington QuintetGeorge Wallington And His BandGeorge Wallington TrioThe Serge Chaloff SextetGil Mellé SextetGeorge Wallington And His StringsGerry Mulligan New StarsSerge And His Be Bop BuddiesBrew Moore All StarsDizzy Gillespie/Oscar Pettiford Quintet + +261288Nick TravisNick Travis IIAmerican trumpet player +Born November 16, 1925, Philadelphia, Pennsylvania +Died October 7, 1964, New York City, New York + +Worked with : [a239399], [a254768], [a1807618], [a145256] and many others.Needs Votehttps://en.wikipedia.org/wiki/Nick_Travishttps://www.allaboutjazz.com/nick-travis-a-new-york-studio-jazzman-nick-travishttps://www.allmusic.com/artist/nick-travis-mn0000235079/biographyhttps://adp.library.ucsb.edu/names/347513N. TravisNicholas TravisNick O'TravisNick TrivisTravisQuincy Jones And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraElliot Lawrence And His OrchestraJim Timmens And His Jazz All-StarsBenny Goodman And His OrchestraTito Puente And His OrchestraSauter-Finegan OrchestraManny Albam And His Jazz GreatsGerry Mulligan & The Concert Jazz BandBilly Byers And His OrchestraTerry Gibbs And His OrchestraThe JazztetJerry Gray And His OrchestraUrbie Green And His OrchestraOsie Johnson And His OrchestraLarry Sonn OrchestraJimmy Giuffre & His Music MenThe Manhattan Jazz All StarsRichard Wess And His OrchestraThe Elliot Lawrence BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdGeorge Williams And His OrchestraRay McKinley And His OrchestraThe Nick Travis QuintetArt Farmer And His OrchestraThe Sextet Of Orchestra U.S.A.Orchestra U.S.A.The Quincy Jones Big BandCool GabrielsBob Brookmeyer And His OrchestraJohn Benson Brooks EnsembleManny Albam And His OrchestraThe Sons Of Sauter-FineganJoe Newman And His OrchestraAllen Keller And TrombonesThe Zoot Sims Al Cohn SeptetThe BrassmatesJim Timmens And His Swinging BrassGerry Mulligan New StarsThe Band That Plays The Blues + +261289Tiny KahnNorman Kahn.American jazz drummer, arranger and composer. +Played with : Boyd Raeburn (1948), Georgie Auld, Chubby Jackson, Charlie Barnet (1949), Elliot Lawrence (1952-'53), Lester Young, Al Cohn, Stan Getz and others. +He died of a heart attack at the age of 30. + +Born : May, 1923 in New York City, New York. +Died : August 19, 1953 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/324469"Tiny" KahnKahnKhanKiny KahnNorman KahnT KahnT. KahnT.KahnTiny CahnTiny KahanTony KahnWoody Herman And His OrchestraBoyd Raeburn And His OrchestraLester Young QuartetWardell Gray QuartetStan Getz QuintetAl Cohn QuartetChubby Jackson's OrchestraThe Serge Chaloff SextetWoody Herman's Four ChipsRed Rodney's Be-BoppersJohn Hardee QuartetSerge And His Be Bop BuddiesWoody Herman & The Second Herd + +261293George GershwinJacob Bruskin GershowitzAmerican composer, pianist and conductor, son of Jewish emigrants from Russia (born September 26, 1898, Brooklyn, New York, USA - died: July 11, 1937, Beverly Hills, California, USA). +Brother of [a=Ira Gershwin], [a736966] and [a4685049].Needs Votehttps://gershwin.com/https://en.wikipedia.org/wiki/George_Gershwinhttps://www.britannica.com/biography/George-Gershwinhttps://www.songhall.org/profile/George_Gershwinhttps://www.imdb.com/name/nm0006097/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102427/Gershwin_Georgehttps://musicbrainz.org/artist/65744963-191a-44ef-a3c7-b693a808a158https://www.allmusic.com/artist/george-gershwin-mn0000197918B. GershwinCershwinD. GershwinD. GeršvinsDž. GeršvinDž. GeršvinasDž. GeršvinsDžordž GeršvinDžordžs GeršvinsDžordžs GēršvinsG GershwinG-GershwinG. GerashwinG. GerchvinG. GerschwinG. GerschwingG. GershiwnG. GershvinG. GershwinG. Gershwin,G. Gershwin-I. GershwinG. GershwingG. GershwinnG. GersiwinG. GersshwinG. GerswhinG. GerswinG. GhershwinG. GreshwinG. GrshvinG. ガーシュィンG. ガーシュインG. ガーシュウィンG.GershvinG.GershwinG.GerswinGeo GershwinGeo. GershwinGeo.GershwinGeorg GershwinGeorgeGeorge CershwinGeorge GereshwinGeorge GerhswingGeorge GerhwinGeorge GerschwinGeorge GershinGeorge GershvinGeorge Gershwin (C.L.)George Gershwin'sGeorge Gershwin, B. Jacob GershvinGeorge Gershwin, Ira GershwinGeorge GerswhinGeorge GerswinGeorge GirshwinGeorge GorshirnGeorge GreshwinGeorge. GershwinGeorges GershwinGerchwinGerhwinGeroge GershwinGerolinGerorge GershwinGerschwinGershinGershiwnGershswinGershuinGershvinGershwinGershwin (G)Gershwin FantasyGershwin GGershwin G.Gershwin GeorgeGershwin'sGershwin, G.Gershwin, GeorgeGershwingGershwinnGerskwinGersuinGerswhinGerswhin, GeorgeGerswinGerswingGerwshwinGeršvinGreshwinG・ガーシュウィンHeyward-GershwinI. GershwinJ. GershwinJacob GershovitzJershwinWhittongershwinΓκέρσουινЏорџ ГершвинГ. ГершвинГëршуинГершвинГершвин Дж.ГершвинаГершуинД. ГершвинД. ГершвінД.ГершвинДж. ГершвинДж. ГершвінДж. ГершуинДж.ГершвинДжордж ГершвинДжордж ГершуинДжордж ГешвинДжорджа Гершвинаג. גרשוויןגרשוויןガーシュインガーシュウィンジョージ・カーシュウィンジョージ・ガーシュインジョージ・ガーシュウィン蓋希文George & Ira Gershwin + +261295Anthony WilliamsAnthony Tillmon WilliamsBorn December 12, 1945 in Chicago, Illinois, died February 23, 1997 in Daly City, California +Jazz/fusion drummer, better known as Tony Williams + +Williams received most recognition for his fusion project [a=The Tony Williams Lifetime] band with John McLaughlin. He also was part of [a262152] in the 60s and did extensive touring with [a=Herbie Hancock]'s V.S.O.P band as well. +He died of a heart attack after a gallbladder surgery in 1997, 51 years old.Needs Votehttps://en.wikipedia.org/wiki/Tony_Williams_%28drummer%29https://www.drummerworld.com/drummers/Tony_Williams.htmlA. WilliamsAnthony "Tony" WilliamsAnthony (Tony) WilliamsT WilliamsT. WilliamsT.W.T.WilliamsTONY WILLIAMSTillmon Anthony WilliamsToni WilliamsTonyTony WiliamsTony WilliamTony WilliamsTony WilliamsonWilliamsトニー・ウイリアムスPop WorkshopGil Evans And His OrchestraArcana (4)Fuse OneArtists United Against ApartheidThe Miles Davis QuintetThe New Tony Williams LifetimeTony Williams TrioThe Tony Williams LifetimeThe Charles Lloyd QuartetStan Getz QuartetThe V.S.O.P. QuintetGeri Allen TrioTrio Of DoomCBS Jazz All-StarsThe Great Jazz TrioGeorge Russell OrchestraHerbie Hancock TrioHerbie Hancock QuartetThe Master TrioChet Baker GroupThe Bob Belden EnsembleThe Michael Wolff TrioTony Williams GroupSantana With Friends + +261339The Thelonious Monk QuartetCorrectEl Cuarteto de Thelonius MonkMonk QuartetMonk-QuartetQuartetT. Monk QuartetThelonious Monk 4tetThelonious Monk And His QuartetThelonious Monk CuartetoThelonious Monk QuartetThelonious Monk Quartet + TwoThelonious Monk Quartet Plus TwoThelonius Monk Quartetセロニアス・モンクセロニアス・モンク・カルテットLarry GalesJohn ColtraneBilly HigginsThelonious MonkSonny RollinsMilt JacksonCharlie RouseJohnny GriffinButch WarrenPercy HeathBen RileyRoy HaynesSam JonesWilbur WareAhmed Abdul-MalikArt TaylorLarry RidleyJulius WatkinsSteve SwallowJohn OreWillie JonesLenny McBrowneShadow WilsonJohn SimmonsPaul JeffreyFrankie Dunlop + +261340Pee Wee RussellCharles Ellsworth RusselAmerican jazz clarinetist +Born March 27, 1906 in Maplewood, Missouri, USA +Died February 15, 1969 in Alexandria, Virginia, USANeeds Votehttp://en.wikipedia.org/wiki/Pee_Wee_Russellhttps://www.britannica.com/biography/Pee-Wee-Russellhttps://www.allmusic.com/artist/pee-wee-russell-mn0000303878https://www.encyclopedia.com/education/news-wires-white-papers-and-books/russell-pee-weehttp://www.worldcat.org/identities/lccn-n81-071132/https://adp.library.ucsb.edu/names/103181"Pee Wee" RussellC. RussellCharles "Pee Wee" RusselCharles "Pee Wee" RussellCharles 'Pee Wee' RussellCharles Ellsworth "Pee Wee" RussellCharles Ellsworth (Pee Wee) RussellCharles RussellP. RussellP. W. RussellP.W. RussellPee WeePee Wee RusselPee Wee Russell & FriendsPee Wee Russell (Jam Session At Commodore No. Two)Pee-WeePee-Wee RussellPeeWee RussellPeewee RussellRusselRussellRussell, Pee WeeThe Thelonious Monk QuintetFrankie Trumbauer And His OrchestraBix Beiderbecke And His OrchestraThe RhythmakersJack Teagarden And His OrchestraTeddy Wilson And His OrchestraEddie Condon And His OrchestraBud Freeman's Summa Cum Laude OrchestraPee Wee Russell QuartetThe Mound City Blue BlowersEddie Condon And His ChicagoansThe Three DeucesMuggsy Spanier And His RagtimersWild Bill Davison And His CommodoresEddie Condon And His BandEddie Condon And His Windy City SevenMiff Mole And His Nicksieland BandBobby Hackett And His OrchestraLouis Prima & His New Orleans GangEddie Condon And His All-StarsThe Newport All StarsIrving Mills And His Hotsy Totsy GangMuggsy Spanier And His All StarsPee Wee Russell's Three DeucesBud Freeman And His GangCloverdale Country Club OrchestraBud Freeman And His Famous ChicagoansMax Kaminsky And His Windy City SixRuby Braff OctetEddie Condon's Jazz BandThe Rhythm CatsBilly Banks And His OrchestraVic Lewis And His American JazzmenPee Wee Russell RhythmakersPee Wee Russell And His OrchestraGeorge Brunies And His Jazz BandGeorge Wein And The Storyville SextetGeorge Wettling's All StarsPee Wee Russell's Hot FourMax Kaminsky And His Dixieland BandPee Wee Russell QuintetVic Berton And His OrchestraPee Wee Russell Jazz EnsemblePee Wee Russell And His Dixie BandCliff Jackson's QuartetTrio Russell-Johnson-SingletonCliff Jackson's Black & White StompersJam Session At CommodoreJack Teagarden & His TromboneThe Peewee Russell Sextets + +261400Pepper AdamsPark Adams IIIAmerican jazz baritone saxophonist +Born October 8, 1930, Highland Park, Michigan, died September 10, 1986, Brooklyn, New York City, New York (lung cancer) +Worked with artists such as [a20956] (with whom he co-led a quintet, 1958-61), [a254768], [a200815], [a271154], and [a265390].Needs Votehttps://www.bluenote.com/artist/pepper-adams/https://en.wikipedia.org/wiki/Pepper_AdamsAdamsP. AdamsP.AdamsPark "Pepper" AdamsPark 'Pepper' AdamsPark AdamsPark Pepper AdamsParker AdamsWoody Herman And His OrchestraStan Kenton And His OrchestraShorty Rogers And His GiantsThe Red Garland QuintetLionel Hampton And His All-Star Alumni Big BandCharles Mingus Jazz WorkshopChet Baker SextetLalo Schifrin & OrchestraManny Albam And His Jazz GreatsThe Duke Pearson NonetThad Jones / Mel Lewis OrchestraPepper Adams OctetPepper Adams QuintetJohnny Griffin SextetThe Thelonious Monk OrchestraWoody Herman And The Swingin' HerdDave Pell OctetThe Prestige All StarsThe Nick Brignola SextetUrbie Green And His OrchestraThe Pepper-Knepper QuintetThe Lennie Niehaus OctetPepper Adams QuartetPepper Adams Donald Byrd QuintetDuke Pearson's Big BandThe Quincy Jones Big BandThe Barry Harris SextetThad Jones / Pepper Adams QuintetGene Ammons' All StarsThe Prestige Blues-SwingersRay Alexander QuintetThe Detroit JazzmenBob Keene SeptetThe Blue Mitchell OrchestraHod O'Brien QuintetThe Charles Mingus GroupThad Jones & Mel LewisThe Mel Lewis SeptetSonny Redd QuintetPepper Adams - Donald Byrd Sextet + +261451Münchner PhilharmonikerGerman symphonic orchestra from Munich. Founded in 1893 by Franz Kaim and known as the [b]Kaim Orchester[/b]. Anton Bruckner pupil Ferdinand Löwe established an enduring tradition of Bruckner performance which continues to this day. Around 1910 was known as the [b]Orchester des Münchner Konzertvereins[/b] and in 1928 acquired its current name. in 1979 Sergiu Celibidache took over raising the orchestra to the highest world-class standards. Following the wartime destruction of its old home, the so-called »Tonhalle« on the Türkenstrasse, the orchestras spent over forty years in [l274527], since 1985, the orchestra has been housed in the [l293735]. +For chamber orchestra use [a1297315]. +For choir/chorus use [a833666]. +[l1103302] own label. + +[b]Principal Conductors[/b] +Hans Winderstein (1893-1895) +Hermann Zumpe (1895-1897) +[a5520519] (1897-1898) +[a1162975](1898-1905) +[a4073678] (1905-1908) +[a5520519] (1908-1914) +Orchestra inactive from 1915 to 1918 due World War I. +[a839679] (1919-1920) +[a2908652] (1920-1938) +[a4583554] (1938-1944) +[a502826] (1945-1948) +[a835521] (1949-1966) +[a526592] (1967-1976) +[a840069] (1979-1996) +[a696260] (1999-2004) +[a839990] (2004-2011) +[a415720] (2012-2014) +[a711106] (September 2015-1 March 2022)Needs Votehttps://www.mphil.de/https://www.facebook.com/MunichPhilharmonic/https://www.youtube.com/user/mphilmusikhttps://twitter.com/munich_philhttps://www.instagram.com/munich_philharmonic/https://en.wikipedia.org/wiki/Munich_PhilharmonicDen Münchner PhilharmonikernDie Münchner PhilharmonikerFilarmonica Di MonacoFilarmónica de MunichLos Filarmónicos De MunichMiuncheno Filharmonijos OrkestrasMuenchener PhilharmonikerMunchener PhilarmonikerMunchener PhilharmonikerMunchner PhilarmonicMunchner PhilharmonikerMunich Philarmonic OrchestraMunich Philharm.Munich PhilharmonicMunich Philharmonic Orch.Munich Philharmonic OrchestraMunich Philharmonic Orchestra*Munich Philharmonic Orchestra, TheMunich Philharmonic OrchestrasMunich PhilharmonicsMunich Philharmonis, TheMunich Symphonic OrchestraMunich Symphony OrchestraMünchen Philarmonic OrchestraMünchen Philarmoniker OrchestraMünchen PhilharmonicMünchen Philharmonic OrchestraMünchener PhilarmonikaMünchener PhilharmonikerMüncheni Filharmónikusok TagjaiMünchenii FilharmonikusokMünchens Filharmoniska OrkesterMünchens Philharmoniske OrkesterMünchner Filharmoniska OrkesterMünchner Philarmonic OrchestraMünchner PhilarmonikerMünchner Philharmonic OrchestraMünchner PhilharmonieMünchner Philharmonike OrchesterMünchner Philharmoniker OrchesterMünich PhilharmonicMünich Philharmonic OrchestraOrchestraOrchestra Filarmonica Di MonacoOrchestre Philarmonique De MunichOrchestre Philarmonique de MunichOrchestre Philharmonique De MunichOrchestre Philharmonique De MünichOrchestre Philharmonique de MunichOrchestre Symphonique De MunichOrkestar Münchnenske FilharmonijeOrquesta Filarmonica De MunichOrquesta Filarmonica de MunichOrquesta Filarmónica De MunichOrquesta Filarmónica de MunichPhilharmonie De MunichPhilharmonikerPhilharmonisk Orkester, MünchenRoyal Munich Phil-Haronic OrchestraStuttgart Radio Symphony OrchestraSymphonique De MunichSymphony OrchestraThe Munich PhilarmonicThe Munich PhilharmonicThe Munich Philharmonic OrchestraThe Munich Phliharmonic OrchestraThe München Philharmonic OrchestraThen Munich Philharmonic Orcehestra·Orchestre Philharmonique De MunichМинхенска ФилхармонијаМюнхенский Филармонический Оркестрミュンヘン • フィルハーモニー管弦楽団ミュンヘン・フィルハーモニーミュンヘン・フィルハーモニー管弦楽団慕尼黑愛樂樂團David HausdorfKarl-Heinz HahnThiemo BeschKarel EberleDeinhart GoritzkiWolfgang StinglEmmanuel PahudRobert EliscuMathias LöhleinMichael HelmrathChristian GanschJörg WinklerJames Levine (2)Jefimija BrajovicHubert PistlValery GergievSergiu CelibidacheLisa OutredClaude RippasWilli SchmidArnold RiedhammerTimothy Jones (3)Werner GrobholzMichaela BuchholzHelmut NicolaiSimon FordhamKonrad HampeKarl KolbingerRolf QuinqueWolfgang BergGottfried LangensteinPaul FürstGernot SchmalfußJano LisboaKurt GuntnerMichael Stern (4)Marie-Luise ModersohnJörg BrücknerDany BonvinStreicher der Münchner PhilharmonikerPhilipp LangFloris MijndersIngolf TurbanBurkhard JäckleHelmar StiehlerRadek BaborákEdgar GuggeisFlorin PaulSatu VänskäDankwart SchmidtRichard PoppSreten KrstićWolfgang NestleUlrich BeckerBeate SpringorumKai RapschFritz DemmlerAna LebedinskiMichael Martin KoflerAlbert OsterhammerJulia Rebekka AdlerKathi ReichstallerWalter Stangl (2)Christa JardineWolfgang GaagGustav KolbeAndreas SchwinnQuirin WillertSamuel SeidenbergAlexandra GruberBarbara KehrigRichard StegmannJörg EggebrechtMitglieder der Münchner PhilharmonikerIlona CudekMartin ManzWolfram LohschützThomas RugeFranz UnterrainerLucja MadziarUlrich ZellerJosef NiederhammerYemi GonzalesSebastian FörschlBenedikt EnzlerElke FunkEdmund PuslStephan HaackMathias Amadeus FreundHerrmann DirrJulie HeßdorferChristian SteinkraußRaffaele GiannottiWalter Schwarz (4)Harald OrlovskyPatrizia DöringerBernhard MetzJürgen PoppRegina MatthesNils SchadVeit Wenk-WolffPhilip MiddlemanAndrey GodikWolfgang KlinserStefan GagelmannVladimir TolpygoRudolf MetzmacherGuido SegersGunter PretzelJoachim WohlgemuthTraudel ReichLászló KutiUlrich HaiderLorenz Nasturica-HerschcowiciPeter Becher (2)Alois SchlemerIason KeramidisManfred HeckingFora BaltacigilTeresa ZimmermannMarcello EnnaMatías PiñeiraMichael Hell (2)Martin-Albrecht RohdeEkkehard BeringerFlorian KlinglerTolga AkmanAlexander UszkuratAlexandre BatyBianca Maria FioritoHerman van KogelenbergBertrand Chatenet (2)Konstantin SellheimIvo GassOdette CouchMatthias AmbrosiusBurghard SiglJulio Lopez (7)Valentin EichlerSławomir GrendaNenad DaleoreMarkus Rainer (2)SooEun LeeBernhard BerwangerDiyang Mei + +261732Jürgen S. KorduletschJürgen S. KorduletschGerman dance producer and record label executive based in Teaneck, New Jersey, born 27 February 1949. +Former husband of [a=Claudja Barry]. +Co-owner and VP A&R at [l=Personal Records] from 1983 to 1987. +Founder and President at [l=Popular Records] from 1998 to 2002. +Owner and President of [l=Radikal Records] from 1989 and [l=OK! Good Records] from 2010.Needs Votehttps://twitter.com/jkorduletschhttps://www.linkedin.com/in/jurgen-korduletsch-2bbb255CorduledgeI. KorduletschJ KorduletschJ KurduletschJ S KorduletschJ. KorduletschJ. KorduletschJ. KordultetschJ. KurduletschJ. S. KorduletschJ.B. KorduletschJ.D. KorduletschJ.KorduletschJ.KordulteschJ.S. KorduletschJ.S.KorduletschJergen KorduletschJorgen KorduletschJorgen S. KorduletschJuergen KordeletschJuergen KorduletscgJuergen KorduletschJuergen S. KordluetschJuergen S. KorduetschJuergen S. KorduletschJurgen /S. KorduletschJurgen KoduletschJurgen KorduletschJurgen KörduletschJurgen S KorduletschJurgen S. KoduletschJurgen S. KordaletschJurgen S. KordelutschJurgen S. KorduletsJurgen S. KorduletschJurgens KorduletschJurgens S. KorduletschJurgens-S. KorduletschJurges KorduletschJürgenJürgen KorduletschJürgen Korduletsch,Jürgen S. KorduleschKordulatschKorduleschKorduletchKorduletschKorduletsch JuergensKoruletschS KorduletschThe Magnificent KordakDisco CircusLipstique (2)Wild WillyTimexKranzTekno TeknoGazSuzie And The CubansGaynor & HayesMascaraBubba & The Jack AttackCondoGangsters Of House (2)Inoa And Kordak + +261836Robert JohnRobert John Pedrick, Jr.[b]Soul singer[/b] And [b]Pop singer[/b] + +Robert John was an American singer-songwriter. +(January 3, 1946 – February 24, 2025) + +John – born Robert John Pedrick – had been recording since he was 12 years old, first charting in 1958 (as ‘Bobby Pedrick’), and then continuing to record through the 60s for a variety of labels. + +He recorded ‘Raindrops, Love and Sunshine’ in 1970, featuring his powerful (nearly ear-shattering) falsetto, and an arrangement that owes a huge debt to the previous year’s mega-hit ‘More Today Than Yesterday’ by the [a=Spiral Starecase]. + +John went on to have a number of hits in the 70s and 80s, including the aforementioned ‘Sad Eyes’ (#1 1979) and even and putting that falsetto to use again in 1983 with a remake of [a=the Newbeats] ‘Bread and Butter’ (#68 1983), which came out on Motown. + +For the visual artist, see [a=Robert John (4)].Needs Votehttps://en.wikipedia.org/wiki/Robert_Johnhttps://ultimateclassicrock.com/singer-robert-john-dead/Aobert JohnJohnR. JohnR.Johnロバート・ジョンBobby Pedrick + +261974Wendell MarshallWendell MarshallAmerican jazz bassist. First cousin of [a335660]. Bassist Wendell Marshall went to Sumner High School and took some time out to play with Lionel Hampton in 1942 before returning to Lincoln University. After World War II, Wendell played with Stuff Smith and had his own trio in St. Louis in 1947. He then joined Mercer Ellington's band and after four months, joined Duke Ellington in September of 1948. He left in 1955 and free lanced in New York and was probably the busiest bass player in New York from the middle to late 1950's to mid-1960's. +Born October 24, 1920 - St. Louis, Missouri. +Died February 6, 2002 - St. Louis, Missouri. + +Needs Votehttps://en.wikipedia.org/wiki/Wendell_Marshallhttps://jazztimes.com/archives/bassist-wendell-marshall-dies/#:~:text=While%20it%20was%20his%20cousin,6%20in%20St.https://www.bluenote.com/artist/wendell-marshall/https://www.allmusic.com/artist/wendell-marshall-mn0000244351/creditshttps://adp.library.ucsb.edu/names/329897MarshallW. MarshallWendal MarshallWendall MarshallWendall MarshellWendel MarshallWendell MarchallWendell MarschallWendell MarshalWndell MarshallУэнделл Маршаллウェンデル・マーシャルThe Red Garland TrioDuke Ellington And His OrchestraJim Timmens And His Jazz All-StarsWilbur De Paris And His New New Orleans JazzArt Blakey's Big BandShirley Scott TrioHank Jones TrioMilt Jackson QuintetManny Albam And His Jazz GreatsJohnny Hodges And His OrchestraJoe Reisman And His OrchestraNat Adderley QuintetSonny Rollins QuintetMal Waldron TrioLem Winchester SextetStuff Smith QuartetThe Newport All StarsGene Roland SextetJimmy Giuffre & His Music MenThe Gigi Gryce - Donald Byrd Jazz LaboratoryJerome Richardson QuartetThe Jay And Kai QuintetThe Gene Krupa QuartetThe Duke Ellington TrioThe Eddie Costa QuartetPaul Quinichette SextetThe New Yorkers (4)Billy Strayhorn TrioThe Prestige Blues-SwingersBill Jennings QuartetThe Trio (9)Eddie Costa TrioGigi Gryce And The Jazz Lab QuintetErnie Royal & His PrincesThe Coronets (3)Eddie Bert QuartetLouis Bellson's Just Jazz All StarsRoland Kirk Sextet + +261976Ubaldo NietoUbaldo NietoUbaldo "Uba" Nieto is an American / Puertorican "timbalero" (timbales percussionist). Born in Guayama, Puerto Rico, in 1920. As a musician he was active in New York City.Needs Votehttps://de.wikipedia.org/wiki/Ubaldo_Nietohttps://adp.library.ucsb.edu/index.php/mastertalent/detail/333930/Nieto_Ubaldohttps://johnnysantana.com/tributes/https://lldeloisaida.wordpress.com/ubaldo-nieto-2/Uba NietoUbal NietoUbalo NietoUbalto NietoUmbaldo NietoMachito And His OrchestraTito Rodriguez & His OrchestraJoe Roland Sextet + +262127Bobby TimmonsRobert Henry TimmonsAmerican jazz pianist & composer, born December 19, 1935 in Philadelphia, Pennyslvania, died March 1, 1974 in New York City, USANeeds Votehttps://en.wikipedia.org/wiki/Bobby_Timmonshttps://bobbytimmons.jazzgiants.net/biography/https://www.bluenote.com/artist/bobby-timmons/https://www.allmusic.com/artist/bobby-timmons-mn0000765435https://www.imdb.com/name/nm1100627/http://www.jazzlists.com/SJ_Bobby_Timmons.htmhttps://www.radioswissjazz.ch/en/music-database/musician/172041adfe632986506f66d293c6a078dcbe1/biographyhttps://www.jazzdisco.org/bobby-timmons/B TimmonsB. ThomasB. TimminsB. TimmonsB. TimonsB.TimmonsBob ThomasBob TimmonsBobbie TimmonsBobby TimmensBobby TimminsBobby TimmonBobby TimonsBobby TimonzBoby timmonsR TimmonsR. TimmonsRobert H. TimmonsRobert Henry "Bobby" TimmonsRobert Henry TimmonsTimminsTimmonTimmonsTymmonsБ. ТиммонсБ.ТиммонсБобби ТиммонзБобби ТиммонсТиммонсボビー・ティモンズArt Blakey & The Jazz MessengersThe Cannonball Adderley QuintetSonny Stitt QuartetThe Chet Baker QuintetThe Bobby Timmons TrioThe Johnny Griffin OrchestraChet Baker & CrewHank Mobley SextetPepper Adams QuintetThe Kenny Dorham QuintetBenny Golson And The PhiladelphiansThe Young Lions (7)The Riverside Jazz StarsBenny Golson QuintetPhil Urso-Bob Burgess QuintetBobby Timmons QuartetBobby Timmons QuintetChet Baker Big Band + +262128Art Blakey & The Jazz MessengersArchetypal hard-bop group of the late 1950s, most date their origin to 1954 or '55 when the first recordings credited to the band appeared. +Playing a driving, aggressive extension of bop with pronounced blues roots, the group continued until [url=http://www.discogs.com/artist/29977-Art-Blakey]Blakey[/url]'s death in 1990. +The name Jazz Messengers had been used by [a=Art Blakey] earlier, but when [a=Horace Silver] and [url=http://www.discogs.com/artist/29977-Art-Blakey]Blakey[/url] began working together in the early 1950's the name had been dormant several years. The Jazz Messengers formed as a collective, nominally led by Silver or Blakey. Blakey credited Silver with reviving the Messengers name for the group. The original lineup of Blakey, Silver, [a=Hank Mobley], & [a=Kenny Dorham], was relatively shortlived. By late 1956 [a=Art Blakey] was the remaining original member. +Over the years the Jazz Messengers served as a springboard for young jazz musicians, a proving ground for young jazz talent.Needs Votehttps://en.wikipedia.org/wiki/The_Jazz_Messengershttps://www.allmusic.com/artist/art-blakey-the-jazz-messengers-mn0000597266https://www.jazzmusicarchives.com/artist/art-blakeyArt Balkey & The Jazz MessengersArt Blakely With The Original Jazz MessengersArt Blakely's MessengersArt BlakeyArt Blakey !!!!! Jazz Messengers !!!!!Art Blakey & All Star Jazz MessengersArt Blakey & His Jazz MessengersArt Blakey & Jazz MessengersArt Blakey & Les Jazz MessengersArt Blakey & Les Jazz-MessengersArt Blakey & The All Star Jazz MessengersArt Blakey & The All Star JazzmessengersArt Blakey & The Jazz MessagersArt Blakey & The Jazz Messengers Big BandArt Blakey & The JazzmessengersArt Blakey & The Jazzmessengers Big BandArt Blakey & The MessengersArt Blakey & The New Jazz MessengersArt Blakey + The Jazz MessengersArt Blakey / Jazz MessengersArt Blakey And His Jazz MessengersArt Blakey And His Jazz-MessengersArt Blakey And His MessengersArt Blakey And His The Jazz MessengersArt Blakey And Jazz MessengersArt Blakey And The "Jazz Messengers"Art Blakey And The Jazz MessengersArt Blakey And The Jazz Messengers Big BandArt Blakey And The JazzmessengersArt Blakey And The Jazzmessengers Big BandArt Blakey And The Jazzmessengers IIIArt Blakey Et Les Jazz MessengersArt Blakey Et Les Jazz-MessengersArt Blakey Et The Jazz MessengersArt Blakey Jazz MessengersArt Blakey With The Jazz MessengersArt Blakey With The Original Jazz MessengersArt Blakey Y Los Jazz MessengersArt Blakey Y Los Jazz-MessengersArt Blakey Y Los Mensajeros Del JazzArt Blakey Y Los Nuevos Mensajeros Del JazzArt Blakey Y The Jazz MessengersArt Blakey and The Jazz MessengersArt Blakey and the Jazz MessengersArt Blakey y Los Jazz-MessengersArt Blakey • Bud Powell • Barney Wilen And The Jazz MessengersArt Blakey's Jazz MessengersArt Blakey's Jazz Messengers Plus FourArt Blakey's MessengersArt Blakey's The Jazz MessengersArt Blakeys Jazz MessengersArt Blakey’s Jazz MessengersJazz MessengersJazz Messengers & Art BlakeyJazzmessengersLes Jazz MessengersLes Jazz Messengers D'Art BlakeyLos Jazz MessengersOriginal Jazz MessengersThe Art Blakey Jazz MessengersThe Jazz MessengersThe Jazz Messengers Featuring Art BlakeyThe Jazz Messengers With Art BlakeyThe Reunion Jazz MessengersАнсамбль "Jazz Messengers" п/у А. БлейкиДжаз Месенджерсアート・ブレイキー&ザ・ジャズ・メッセンジャーズアート・ブレイキーとジャズ・メッセンジャーズアート・ブレイキー&ザ・ジャズ・メッセンジャーズザ・ジャズ・メッセンジャーズCarlos GarnettDonald ByrdHorace SilverLee MorganArt BlakeyWayne ShorterFreddie HubbardBarney WilenDonald HarrisonRobin EubanksStanley ClarkeChuck MangioneBenny GreenJavon JacksonJackie McLeanRay MantillaRamon MorrisHank MobleyCedar WaltonReggie WorkmanKeith JarrettBenny GolsonJohnny GriffinJ.J. JohnsonJohn GilmoreRandy BreckerDoug WatkinsKenny DorhamGeorge CablesWoody ShawReggie JohnsonCurtis FullerNat BettisBobby TimmonsJymie MerrittLucky ThompsonMickey TuckerRichard LandrumCharles FambroughMulgrew MillerTerence BlanchardLonnie PlaxicoJean ToussaintSonny MorganBrian LynchBilly PierceBobby Watson (2)John HicksJohnny O'NealFrank LacyDennis IrwinPeter WashingtonSam DockeryBill HardmanSpanky DeBrestCameron BrownDavid SchnitterWalter Davis Jr.James Williams (2)Donald BrownAlbert DaileyFrank MitchellPhilip HarperEssiet EssietMickey BassCarter JeffersonVictor SprolesTim Williams (4)Geoff KeezerEmanuel BoydSteve Davis (7)Ronnie MathewsEmmanuel Abdul-RahimLaverne BarkerBuddy TerryJan ArnetYoshio SuzukiLawrence EvansValery PonomarevLadjl CamaraDavid Schmitter + +262129Jymie MerrittJames Raleigh MerrittJymie Merritt +Born on May 03, 1926 in Philadelphia, Pennsylvania, died April 11, 2020 + +American jazz bassist, best known for his steadfast work in Art Blakey's Jazz Messengers, which he joined in 1958. Described by All About Jazz as the "quintessential hard bop bassist". +Father to [a1757164]Needs Votehttp://www.allaboutjazz.com/php/article.php?id=33330http://en.wikipedia.org/wiki/Jymie_Merritthttps://books.discogs.com/credit/578366-jymie-merritJ. MerrittJames MerrittJemie MerrittJimie MerrittJimmie MerritJimmie MerrittJimmy MarrittJimmy MerittJimmy MerritJimmy MerrittJimye MerrittJymie MerritJymmie MerrittJymmy MerrittMerrittジミー・メリットArt Blakey & The Jazz MessengersSonny Clark TrioMax Roach QuintetSonny Rollins TrioLee Morgan QuintetCurtis Fuller's QuintetBarney Wilen Trio + +262140Charlie VenturaCharles VenturoAmerican jazz tenor saxophonist and bandleader, born December 2, 1916 in Philadelphia, Pennsylvania, USA, died January 17, 1992 in Pleasantville, New Jersey, USA.Needs Votehttp://en.wikipedia.org/wiki/Charlie_Venturahttps://www.allmusic.com/artist/charlie-ventura-mn0000101628/biographyhttps://adp.library.ucsb.edu/names/210561Ben VenturaC. VenturaCh. VenturaCh. VenturoCharles VenturaCharles VenturoCharley VenturaCharlie VentuaCharlie Ventura And His BandCharlie VenturoChas. VenturaVenturaVenturoGene Krupa Jazz TrioMetronome All StarsGene Krupa And His OrchestraGene Krupa TrioNeal Hefti's OrchestraCharlie Ventura And His OrchestraThe Charlie Ventura SeptetThe Gene Krupa QuartetGene Krupa/Charlie Ventura TrioCharlie Ventura SextetCharlie Ventura QuintetThe New Charlie Ventura SextetCharles Ventura QuartetThe Sunset All StarsCharlie Ventura's BandCharlie Ventura's Jazz ComboCharlie Ventura and His All-StarsCharlie Ventura's Big FourCharlie Ventura/Bill Harris QuintetCharlie Ventura And His Great ComboCharlie Ventura And His Bop For The PeopleCharlie Venturo And The Lantern Five + +262141Teddy NapoleonSalvatore NapoliTeddy Napoleon (born January 23, 1914, New York City, New York, USA - died July 5, 1964, Elmhurst, New York, USA) was an American jazz pianist. He is the nephew of trumpeter and bandleader [a764792] and brother of pianist [a325861].Needs Votehttps://en.wikipedia.org/wiki/Teddy_Napoleonhttps://adp.library.ucsb.edu/names/333309NapoleaonNapoleonT. NapoleonTaylor NapoleonTed NapoleonGene Krupa Jazz TrioGene Krupa And His OrchestraGene Krupa TrioMel Powell & His All-StarsTeddy Napoleon Trio + +262152The Miles Davis QuintetThe Miles Davis Quintet did not exist continuously, but was formed several times with different basic line-ups. Mainly known are the two "Great Quintets". + +"First Miles Davis Quintet" or First Great Miles Davis Quintet" - 1955 to 1958 with the following main artists (changes in line-up not shown here): + [a23755] — Trumpet + [a97545] — Tenor Saxophone + [a253641] — Piano + [a259778] — Double Bass + [a257251] — Drums + increased to Sextet in 1958 with [a61585] — Alto Saxophone + +"Second Miles Davis Quintet" or "Second Great Miles Davis Quintet" - 1964 to 1969 with the following main artists (changes in line-up not shown here): + [a23755] — Trumpet + [a29979] — Tenor Saxophone + [a3865] — Piano + [a95088] — Double Bass + [a261295] — Drums + +Outside these timespans there were also several Quintets besides the so called "Great Quintets". Several albums performed by the described Quintets are not credited to the group PAN, but to [a23755], please submit an "Ensemble" credit in these cases! (E.g. [r2882493])Needs Votehttps://en.wikipedia.org/wiki/Miles_Davis_Quintethttps://www.imdb.com/name/nm2423437/Miles & Coltrane QuintetMiles And Coltrane QuintetMiles DavisMiles Davis & His OrchestraMiles Davis & John Coltrane QuintetMiles Davis And His QuintetMiles Davis EnsembleMiles Davis Et Son QuintetMiles Davis Et Son QuintetteMiles Davis New QuintetMiles Davis QuintetMiles Davis QuintetsMiles Davis QuintettMiles Davis et son QuintetteMiles and Coltrane QuintetMiles-Davis-QuintettThe Miles Davis All-Star QuintetThe New Miles Davis QuintetКвинтет Майлса Дэвисаマイルス・デイビス五重奏団マイルス・デイヴィス・クインテットマイルス・デヴィス・クインテットマイルス・デヴィス五重奏団Herbie HancockMiles DavisHorace SilverWayne ShorterBarney WilenRon CarterJohn ColtraneHank MobleyElvin JonesSonny RollinsCharles MingusKenny ClarkeMax RoachJack DeJohnetteRené UrtregerPierre MichelotWynton KellyBill EvansJimmy CobbGeorge ColemanPercy HeathRed GarlandFrank ButlerVictor Feldman"Philly" Joe JonesCurly RussellLee KonitzPaul Chambers (3)Anthony WilliamsDavey SchildkrautJohn Lewis (2)Britt WoodmanTeddy CharlesAlbert Stinson + +262160George DuvivierGeorge B. DuvivierAmerican jazz bassist born 17 August 1920 in New York City, New York, USA and died 11 July 1985 in Manhattan, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/George_Duvivierhttps://www.allmusic.com/artist/george-duvivier-mn0000642920/https://rateyourmusic.com/artist/george_duvivierhttps://adp.library.ucsb.edu/names/202815DoverDurivierDuvivierG. DuviverG. DuvivierGeo. DuvivierGeorge B. DuvivierGeorge DavivierGeorge DivivierGeorge DivivieuxGeorge DjvivierGeorge Du VivierGeorge DuVivierGeorge DuvidierGeorge DuvierGeorge DuviierGeorge DuviverGeorge DuviviaGeorge DuvivinGeorge DuvuvierGeorges DuvivierGoe. DuvivierThomas DuvivierДж. ДювивьеДжордж Дювивьеジョージ・デュヴィヴィエHugo Montenegro And His OrchestraThe Red Garland TrioThe George Benson QuartetSonny Clark TrioThe Bud Powell TrioThe Gil Melle QuartetCharlie Barnet And His OrchestraLucky Millinder And His OrchestraTadd Dameron And His OrchestraJim Timmens And His Jazz All-StarsIllinois Jacquet And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraBarry Harris TrioLionel Hampton And His All-Star Alumni Big BandOliver Nelson And His OrchestraShirley Scott TrioThe Chico Hamilton TrioHank Jones TrioThe Creed Taylor OrchestraThe Budd Johnson QuintetBuster Harding's OrchestraMundell Lowe And His All StarsThe Gary McFarland OrchestraGerry Mulligan And His SextetGerry Mulligan's New SextetMal Waldron TrioThe Prestige All StarsNinapinta And His Bongos And CongasThe Louie Bellson QuintetWillie Rodriguez Jazz QuartetLouie Bellson Big BandThe Oliver Nelson SextetThe Jazz Interactions OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraBuddy DeFranco QuintetBilly Taylor QuartetMary Lou Williams And Her OrchestraMuse AllstarsThe Harry Edison QuartetRolf Kühn QuintettDerek Smith TrioEddie "Lockjaw" Davis TrioEddie Lockjaw Davis QuartetArt Farmer And His OrchestraThe Vic Dickenson QuintetHerbie Nichols TrioBob Brookmeyer And His OrchestraThe Doc Severinsen SextetCaiola ComboHazel Scott TrioNew York New York (2)The Tubby Hayes SextetBobby Tucker TrioSoprano SummitOliver Nelson QuintetThe Buddy Tate All StarsThe Wilbur Harden QuartetAl Caiola And The Nile River BoysHal Mitchell FourClaude Hopkins All StarsThe Eddie "Lockjaw" Davis QuintetThe Bill Potts Big BandRolf Kühn QuartettClark Terry SeptetCarmen Leggio QuartetPhil Bodner & CompanyChuck Wayne QuintetThe Ram Ramirez TrioBill Coleman And His SevenTerry Gibbs And His Orchestra (2)Ray Turner QuartetRusty Dedrick And The Ten Man BandThe Stan Free Quartet + +262293Bill MartinWilliam Wylie MacphersonBill Martin, MBE (born November 9, 1938, Govan, Glasgow, Scotland – died March 26, 2020) was a Scottish songwriter, music publisher and impresario. He was presented with three Ivor Novello Awards, including one as Songwriter of the Year. +[b]When credited together with Phil Coulter, use the entry [a=Bill Martin & Phil Coulter][/b] + +For the American songwriter associated with Harry Nilsson and the Monkees, see [a=Bill Martin (4)].Needs Votehttp://www.billmartinsongwriter.com/https://en.wikipedia.org/wiki/Bill_Martin_(musician)https://books.discogs.com/credit/620455-bill-martinB MartinB. MartinB.MartinBil MartinMartinMartin BillMasonW. MartinWilliam MartinWilly MartinБ. МартинМартинBill Martin & Phil Coulter + +262294Robby RobinsonMax Warren RobinsonAmerican keyboardist, arranger, conductor, producer, and songwriter. Since 1978 Musical Director of [a=Frankie Valli] & [a=The Four Seasons], also doing TV jingles and movie scores. + +Brother of [a532763].Needs Votehttp://robbyrobinsonmusic.com/https://www.facebook.com/robbyrobinsonmusicRobbie Robinson + +262358Hans Werner HenzeHans Werner HenzeHans Werner Henze (1 July 1926 – 27 October 2012) was a German composer. His prolific oeuvre of works is extremely varied in style, having been influenced by serialism, atonality, Stravinsky, Italian music, Arabic music and jazz, as well as traditional schools of German composition.Needs Votehttps://www.hans-werner-henze-stiftung.de/https://en.wikipedia.org/wiki/Hans_Werner_Henzehttps://www.britannica.com/biography/Hans-Werner-Henzehttps://www.imdb.com/name/nm0378314/H. H. WernerH. W. H.H. W. HenzeH. WernerH.-W. HenzeH.H. WernerH.W. HenzeH.W.H.Hans-Werner HenzeHeinzeHenzeWernerハンス・ヴェルナー・ヘンツェヘンツェStaatskapelle Dresden + +262505James SpauldingJames Ralph Spaulding, Jr.American jazz alto saxophonist and flute player, born 30 July 1937 in Indianapolis, Indiana, USA + +Needs Votehttps://en.wikipedia.org/wiki/James_Spauldinghttp://www.bluenote.com/artist/james-spaulding/https://www.allmusic.com/artist/james-spaulding-mn0000174506http://www.jazzlists.com/SJ_James_Spaulding.htmJ. SpauldingJames "Jimmie" SpauldingJames R. SpauldingJames Spaulding QuintetJim SpauldingJimmy SpauldingSpauldingジェームス・スパルディングジェームス・スポールディングホームズ・スポルディングKamal & The BrothersDavid Murray Big BandDavid Murray OctetThe Duke Pearson NonetThe Charles Tolliver QuintetMax Roach QuintetThe Horace Silver SextetSam Rivers SextetWilliam Parker Septet + +262585Walter Bishop, Jr.Walter BishopAmerican jazz pianist and composer. +Born October 04, 1927 in New York City, NY, USA +Died January 24, 1998 in New York City, NY, USA +He was the son of composer [a=Walter Bishop, Sr.]. In high school his friends included Kenny Drew, Sonny Rollins, and Art Taylor. He began his musical career after World War II, and played and recorded with Art Blakey, Charlie Parker, Oscar Pettiford, Kai Winding, Miles Davis, Jackie McLean, Curtis Fuller, Terry Gibbs, Clark Terry, Blue Mitchell, and Supersax. In the early 1960s, he also led his own trio with Jimmy Garrison and G. T. Hogan. He continued performing into the 1990s. + +After studying at The Juilliard School with Hall Overton in the late 1960s, he taught music theory at colleges in Los Angeles in the 1970s. In 1983, he began teaching at The Hartt School of the University of Hartford. He also wrote "A Study in Fourths", a book about jazz improvisation based on cycles of fourths and fifths.Needs Votehttps://www.allmusic.com/artist/walter-bishop-jr-mn0000196427https://walterbishopjunior.bandcamp.com/https://en.wikipedia.org/wiki/Walter_Bishop_Jr.BishopBishop, JrBishop, Jr.W BishopW, BishopW. BishopW. Bishop Jr.W. Bishop, Jnr.W. Bishop, Jr.Wally Bishop, Jr.Walter BishopWalter Bishop JrWalter Bishop Jr,Walter Bishop Jr.Walter Bishop JuniorWalter Bishop, Jnr.У. Бишопウォルター・ビショップThe Miles Davis SextetMiles Davis All StarsThe Charlie Parker QuintetCharlie Parker's JazzersDizzy Gillespie QuintetCharlie Parker And His OrchestraTubby Hayes And The All StarsWalter Bishop, Jr.'s 4th CycleArt Blakey's Big BandSonny Rollins QuartetThe Hank Mobley QuintetCharlie Parker With StringsStan Getz Tenor Sax StarsMiles Davis And His BandThe Kenny Dorham QuintetSonny Stitt & The GiantsCharlie Rouse QuintetParis Reunion BandOscar Pettiford And His Jazz GroupsThe Walter Bishop, Jr. TrioThe New Oscar Pettiford SextetMilton Jackson And His New GroupMilt Jackson SeptetThe Rocky Boyd QuintetThe Charlie Parker Memorial BandArt Blakey's BandThe Jazz Tribe (2)Miles Davis And His Cool WailersThe Walter Bishop Jr. Group + +262586Miles Davis All StarsMiles Davis All Stars is not a band but a generic name used for releases by different Miles Davis combos including high profile sidemen. Like with Miles Davis's Quintets, Sextets, Nonets and other combos, the musicians playing under the name often varies.. Below is a list of examples of the use of the All Star band name. This list may not be complete All listings include Miles Davis (tp): + +1947: The Miles Davis' All Stars were credited in the Savoy sessionography for an August 14th session including Charlie Parker (ts), John Lewis (p), Nelson Boyd (b), and Max Roach (d). Tracks from the session was released under several name variations, including Miles Davis and Charlie Parker - but none as by The Miles Davis All Stars. + +1950: A session was held June 30th under the name Miles Davis' Birdland All Stars. Musicians included: Fats Navarro (tp), J.J. Johnson (tb), Brew Moore (ts), Tadd Dameron (p), Curly Russell (b), and Art Blakey (d). Tracks were released under the name Miles Davis All Stars And Gil Evans. + +1952: On May 2nd and May 3rd recordings were made at Birdland, NYC, with The Miles Davis Sextet. Musicians included: Jackie McLean (as), Don Elliott (vib, mel), Gil Coggins (p), Connie Henry (b), and Connie Kay (d). The recording has been released as by Miles Davis And His All Stars. + +1954: An April 3rd session by Miles Davis Quintet including Dave Schildkraut (as), Horace Silver (p), Percy Heath (b), and Kenny Clarke (d) plus an April 29th session by the Miles Davis Sextet including J.J. Johnson (tb), Lucky Thompson (ts) ,Horace Silver (p), Percy Heath (b), and Kenny Clarke (d) were released on the album "Walkin'" as by Miles Davis All Stars. + +1954: December 24th Miles Davis Quintet recording session including Milt Jackson (vib), Thelonious Monk (p), Percy Heath (b), and Kenny Clarke (d). Tracks released as by Miles Davis All Stars as well as by Miles Davis And The Modern Jazz Giants. + +1958: A May 17 Miles Davis Quintet broadcast including John Coltrane (ts), Bill Evans (p), Paul Chambers (b), and Philly Joe Jones (d) has been released as by Miles Davis All Stars Featuring John Coltrane And Bill Evans. +Needs Votehttp://www.jazzdisco.org/miles-davis/discography/Miles Davis All Star SextetMiles Davis All Stars SextetMiles Davis All-StarsMiles Davis And His All StarsMiles Davis And Modern Jazz All StarsMiles Davis And The Modern Jazz GiantsMiles Davis' All StarsThe Miles Davis All StarsThe Miles Davis All-StarsThe Miles Davis Quintetマイルス・デイヴィスMiles DavisHorace SilverCharlie ParkerSonny RollinsKenny ClarkeMax RoachJ.J. JohnsonTommy FlanaganPercy Heath"Philly" Joe JonesPaul Chambers (3)Art TaylorWalter Bishop, Jr.Lucky ThompsonJohn Lewis (2)Nelson Boyd + +262587Lucky ThompsonEli ThompsonAmerican jazz tenor and soprano saxophonist +Born June 16, 1924 in Columbia, South Carolina, USA, died July 30, 2005 in Seattle, Washington, USANeeds Votehttps://en.wikipedia.org/wiki/Lucky_Thompsonhttp://www.attictoys.com/LuckyThompson/index.phphttps://www.bluenote.com/artist/lucky-thompson/https://www.britannica.com/biography/Lucky-Thompsonhttps://www.allmusic.com/album/accent-on-tenor-mw0000476261/creditshttps://adp.library.ucsb.edu/names/346927"Lucky" Thompson'Lucky' ThompsonChes ThompsonE. ThompsonEli "Lucky" ThompsonEli 'Lucky' ThopmsonEli Lucky ThompsonEli RobinsonEli ThompsonEli Thompson, Jr.L. ThompsonL.ThompsonLuckyLucky ThompsenLucky ThomsonLucky ThomsponLuky ThompsonThompsonThomsonWithЛ. Томпсонラッキー・トムソンQuincy Jones And His OrchestraCount Basie OrchestraThe Miles Davis SextetArt Blakey & The Jazz MessengersMiles Davis All StarsThe Modern Jazz SocietyThe Charlie Parker SeptetSlim Gaillard And His OrchestraLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsBoyd Raeburn And His OrchestraBob Mosely & All StarsEddie Beal And His FourtettePhil Moore And His OrchestraIke Carpenter And His OrchestraDizzy Gillespie JazzmenHoward McGhee And His OrchestraHot Lips Page And His OrchestraLucky Thompson And His Lucky SevenMilt Jackson QuintetLucky Thompson's All StarsJimmy Mundy OrchestraLionel Hampton GroupLionel Hampton All StarsThe Modern Jazz EnsembleThe Mills Blue Rhythm BandWilbert Baranco OrchestraJimmy Cleveland And His All StarsLucky Thompson TrioThe Lucky Thompson QuartetThe Lucky Thompson SextetLucky Thompson & His OrchestraThe Quincy Jones Big BandOscar Pettiford OrchestraThe Three AngelsWilbert Baranco And His Rhythm BombardiersTempo Jazz MenThe Sunset All StarsThe Ernie Wilkins GroupFletcher Henderson SextetLucky Thompson Big BandSlim Gaillard And His BoogiereenersClark Terry SeptetThe Tom Talbert Jazz OrchestraBilly Kyle And His OrchestraRalph Sharon SextetHot Lips Johnson And His OrchestraFrank Devenport QuintetteBoyd Raeburn All-StarsThe Wilbert Baranco QuintetWillie Smith SextetDizzy Gillespie-Charlie Parker Jazzmen + +262588Davey SchildkrautAmerican jazz saxophonist (alto). +Played with : Louis Prima, Buddy Rich, Anita O'Day, Stan Kenton, Oscar Pettiford, Miles Davis, George Handy, Ralph Burns, Tito Puente, Johnny Richards, Eddie Bert and others. + +Born : January 07, 1925 in New York City, New York. +Died : January 01, 1998 in New York City, New York. +. +Needs VoteDaveDave SchikdkrautDave SchildkrantDave SchildkratDave SchildkrautDave ShildkratDavid SchildkrautDavid SchildrautSchildkrautデヴィー・シルトクラウトThe Miles Davis QuintetStan Kenton And His OrchestraQuincy Jones' All Star Big BandRalph Burns And His OrchestraDavey Schildkraut Quintet + +262711Andre HeuvelmanAndré HeuvelmanDutch trumpeter.Needs Votehttp://www.andreheuvelman.comAndre Heuvelman & the Live! OrchestraAndre HeuvelmansAndré HeuvelmanAndré HeuvelmannNederlands Blazers EnsembleNieuw Sinfonietta AmsterdamRotterdams Philharmonisch Orkest + +262712Bart SchneemannDutch classical oboist and recording supervisor, born 1954 in Melbourne.Needs Votehttp://nl.wikipedia.org/wiki/Bart_SchneemannBart SchneemanNederlands Blazers EnsembleMusica AmphionFodor KwintetTulipa Consort + +262714Wendy LeliveldHorn player, born 1971 in Nieuwveen, Netherlands.CorrectRotterdams Philharmonisch Orkest + +262815Eddie CalhounAmerican jazz double bassist +Born November 13, 1921 in Clarksdale, Mississippi, died January 27, 1994 in Paradise Lake, Mississippi +Needs VoteCalhounE. CalhounEddy CalhounEdward CalhounЭди КолхаунErroll Garner TrioDick Davis Sextette + +262816Erroll GarnerErroll Louis GarnerAmerican jazz pianist and composer +Born June 15, 1921 in Pittsburgh, PA, USA +Died January 2, 1977 in Los Angeles, CA, USANeeds Votehttps://digital.library.pitt.edu/islandora/object/pitt:US-PPiU-ais201509/viewerhttps://en.wikipedia.org/wiki/Erroll_Garnerhttps://www.imdb.com/name/nm0307702/https://adp.library.ucsb.edu/names/103205https://www.allmusic.com/artist/erroll-garner-mn0000206967https://www.errollgarner.comhttps://www.bechstein.com/en/the-world-of-bechstein/pianists/erroll-garner/https://www.steinway.com/artists/erroll-garnerhttps://www.allaboutjazz.com/musicians/erroll-garner/A. GarnerAl GarnerE GarnerE. GarnerE. GamerE. GardinerE. GardnerE. GarneerE. GarnerE. GernerE. ガーナーE.G.E.GarnerE.J. GarnerEarl GarnerErol GardnerErol GarnerEroll GarnerEroll GranerEroll-GarnerErrol CarnerErrol GagnerErrol GardnerErrol GarnerErrol Garner Et Leur OrchestreErrol GreenErrol RagerErrol' GarnerErrollErroll GardnerErroll Garner And His TrioErroll Garner With RhythmErroll Garner With Rhythm AccompanimentErroll Garner'sErroll Lewis GarnerErroll Louis GarnerErroll Luis GarnerFarnerGanerGardnerGarnarGarnerGarner, ErrollJ. GarnerJ. L. GarnerL. Erroll GarnerL.G. ガーナMr. GarnerNat PiercegarnerЕ. ГарнерЕрол ГарнърЭ. ГарнерЭ.ГарднерЭрл ГарднерЭрол ГарненрЭррол ГарнерЭрролл Гарнерエロル・ガーナーエロール・ガーナーThe Charlie Parker QuartetThe Charlie Parker All-StarsErroll Garner TrioDon Byas QuartetSlam Stewart QuartetSlam Stewart TrioThe Just Jazz All StarsThe Erroll Garner QuartetErroll Garner All StarsErroll Garner With Full OrchestraErroll Garner and his RhythmErroll Garner & Group + +263096Don LamondDonald Douglas Lamond Jr.American jazz drummer and bandleader. +Born August 18th 1920 in Oklahoma City, Oklahoma, USA. +Died December 23rd 2003 in Orlando, Florida, USA. +Married to singer [a=Terry Lamond] (1969-2003, his death).Needs Votehttps://www.drummerworld.com/drummers/Don_Lamond.htmlhttps://en.wikipedia.org/wiki/Don_Lamondhttps://www.moderndrummer.com/article/august-september-1979-reflections-don-lamond/https://www.allmusic.com/artist/don-lamond-mn0000188202/biographyhttps://rateyourmusic.com/artist/don_lamondhttps://www.imdb.com/name/nm9935143/https://adp.library.ucsb.edu/names/326347D. LamondD. LanondD. LomondD.J. Lamond, Jr.Dan LamondDon LammondDon Lamond, Jr.Don LemondDon RamondDonald LamondLamondД. ЛамондДон ЛамондZane GrudgeQuincy Jones And His OrchestraEnoch Light And The Light BrigadeHarry James And His OrchestraThe Will Bradley-Johnny Guarnieri BandThe Charlie Parker All-StarsWoody Herman And His OrchestraBenny Goodman SextetGene Norman's "Just Jazz"Charlie Barnet And His OrchestraClaude Thornhill And His OrchestraElliot Lawrence And His OrchestraRay Ellis And His OrchestraThe Bob Prince TentetteJim Timmens And His Jazz All-StarsBilly Butterfield And His OrchestraCootie Williams And His OrchestraWoody Herman & The New Thundering HerdStan Getz QuartetBenny Goodman And His OrchestraZoot Sims QuartetCharlie Parker Big BandRalph Burns QuintetEnoch Light And His OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersCharlie Parker With StringsCharlie Parker's New StarsJoe Reisman And His OrchestraLos AdmiradoresHarry James & His Music MakersJohnny Smith QuintetAlvino Rey And His OrchestraThe Dick Hyman TrioDon Lamond And His OrchestraThe Newport All StarsJerry Gray And His OrchestraUrbie Green And His OrchestraThe Grand Award All StarsChubby Jackson's OrchestraJohnny Richards And His OrchestraGeorge Russell OrchestraMary Lou Williams And Her OrchestraRolf Kühn QuintettWoody Herman And The Fourth HerdAlex Kallao TrioDick Hyman And His QuintetThe Quincy Jones Big BandHarry James & His SextetWoody Herman's Four ChipsUrbie Green and His 6-TetSonny Berman's Big EightChubby Jackson's Big BandUrbie Green And His All-StarsJim Timmens And His Swinging BrassStewart - Williams & Co.Woody Herman & The Second HerdBill Harris Big EightWoody Herman OctetRusty Dedrick And The Ten Man BandEddie Safranski Trio + +263097Stan LeveyStan LeveyAmerican jazz drummer, born 5 April 1926 in Philadelphia, Pennsylvania, USA and died 19 April 2005 in Van Nuys, California, USA. +Also credited as photographer for West Coast Jazz releases.Needs Votehttp://www.stanlevey.com/https://en.wikipedia.org/wiki/Stan_Leveyhttps://adp.library.ucsb.edu/names/327264LaceyLeveyS. LeveySan LeveyStan LaceyStan Le VeyStan LevelyStan LevyStanley A. LeveyStanley Leveyスタン・リーヴィPaul Smith QuartetStan Kenton And His OrchestraBilly May And His OrchestraThe Jimmy Giuffre TrioStan Getz QuartetDizzy Gillespie JazzmenLee Konitz QuintetArt Pepper QuartetShorty Rogers And His GiantsChet Baker SextetAllen Eager QuintetHoward Rumsey's Lighthouse All-StarsWarne Marsh QuartetLou Levy TrioConte Candoli All StarsDizzy Gillespie's Rebop SixJohnny Richards And His OrchestraBarney Bigard SextetThe Richie Kamuca QuartetFrank Rosolino QuintetThe Ben Webster QuintetLou Levy QuartetLeonard Feather's West Coast StarsTempo Jazz MenThe Claude Williamson TrioFrank Rosolino And His QuartetThe Stan Levey GroupRed Rodney's Be-BoppersStan Levey SextetBill Holman OctetLeonard Feather's West Coast JazzmenThe Vince Guaraldi - Conte Candoli QuartetThe Conte Candoli QuartetThe Frank Rosolino SextetThe Chet Baker-Art Pepper SextetBuddy DeFranco And The All-StarsStan Levey QuintetThe Ex-HermanitesFour Trombone BandBrew Moore And His PlayboysRosolino-Persson SextetStu Williamson QuintetRichie Kamuca Bill Holman OctetDizzy Gillespie-Charlie Parker Jazzmen + +263098Tony AlessAnthony AlessandriniAmerican jazz pianist +Born August 28, 1921 in Garfield, New Jersey, died September 23, 1985 in Flushing , New York +Needs Votehttps://en.wikipedia.org/wiki/Tony_Alesshttps://adp.library.ucsb.edu/names/355404A. AlessiAlessT. AlessTony AllessТони ЭйлессWoody Herman And His OrchestraCharlie Parker And His OrchestraTeddy Powell And His OrchestraJim Timmens And His Jazz All-StarsStan Getz QuartetNeal Hefti's OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersChubby Jackson's OrchestraFlip Phillips BoptetJack Sterling And His QuintetChubby Jackson's RhythmThe Tony Aless Quartet + +263305Frode C. CarlsenFrode Cato CarlsenNorwegian bassoonist and contrabassoonist, born 1961 in Ålesund, Norway.Needs VoteFrode CarlsenOslo SinfoniettaOslo Filharmoniske Orkester + +263306Tom Ottar AndreassenNorwegian flutist, born 1963 in Moelv, Norway.Needs VoteTom-Ottar AndreassenOslo SinfoniettaOslo Filharmoniske OrkesterKringkastingsorkestret + +263319Carl Anders SponbergNorwegian violinistNeeds VoteBergen Filharmoniske Orkester + +263375Richard WaltonBritish classical trumpeter and educator. Born 23 February 1913 in Manchester, England - Died 2 September 2002 in Alciston, East Sussex, England. +In 1932, aged only 19, he was appointed by [a=Sir Thomas Beecham] to the principal trumpet chair of the newly formed the [a=London Philharmonic Orchestra]. After the outbreak of Second World War, he and his brothers enlisted in [a=The Band Of The Irish Guards]. After the war, he became again LPO's principal trumpeter. He held this position until 1956, when he transferred to [a=Walter Legge]'s [a=Philharmonia Orchestra], from where, in 1963, he joined the [a=BBC Symphony Orchestra] as co-principal, staying until retirement in 1982. He was also professor of trumpet at the [l=Royal College of Music, London] from 1949 to 1982. +Brother of [a=John Walton (6)] and [a=Bernard Walton (2)].Correcthttps://www.theguardian.com/news/2002/oct/09/guardianobituaries.artsLondon Philharmonic OrchestraBBC Symphony OrchestraPhilharmonia OrchestraThe Band Of The Irish Guards + +263441Richard Davis (2)Richard DavisAmerican jazz bassist [double/string bass] and composer +Born on 15 April 1930 in Chicago, IL, USA. died on 6 September 2023 in Madison, WI, USA + +Richard Davis' journey with the bass began at the age of 15. His education in music took place at DuSable High School and VanderCook College of Music. A move to New York happened in 1954, leading to work with Sarah Vaughan from 1957 to 1962. Over 600 albums bear his name, including sessions with Eric Dolphy, Andrew Hill, Tony Williams and Booker Ervin. Collaborations extended to Van Morrison, Bruce Springsteen, Paul Simon and Bonnie Raitt. "Heavy Sounds", co-led by Elvin Jones, marked his debut as a leader in 1967. Membership in the Thad Jones-Mel Lewis Orchestra spanned from 1966 to 1972 and the New York Bass Violin Choir in the late 1960s and '70s. The late 1980s saw the founding of the trio New York Unit. Recognition for his work came in the form of a Jazz Master award from the National Endowment for the Arts in 2014. A new chapter began in 1977 when Richard left New York to teach music at the University of Wisconsin-Madison, a position held until retirement in 2016. The Richard Davis Foundation for Young Bassists was created in 1993 and the Madison chapter of the Center for the Healing of Racism in 2000. Needs Votehttp://www.richarddavis.org/https://en.wikipedia.org/wiki/Richard_Davis_(bassist)https://www.imdb.com/name/nm1384661/https://adp.library.ucsb.edu/names/202409DavisR. DavisR.DavisRich DavisRichard A. DavisRichard DavidRichard DaviesRichie DavisRick Davisリチャードデイビスリチャード・デイビスリチャード・デイヴィスGil Evans And His OrchestraThe Red Garland TrioCreative Construction CompanyThe Jazz Composer's OrchestraGary Bartz QuintetSarah Vaughan And Her TrioOliver Nelson And His OrchestraTed Curson & CompanyThe Kenny Burrell TrioHank Jones TrioMilt Jackson And Big BrassThe Earl Hines TrioThe Roland Kirk QuartetDavid Murray TrioEric Dolphy QuintetNew York Jazz SextetThe Gary McFarland OrchestraThe New York Bass Violin ChoirChildren Of All AgesMingus DynastyThe Sun Ra All StarsThe Great Jazz TrioEric Dolphy QuartetJoel Futterman QuartetThe Richard Davis TrioThe Elvin Jones Jazz MachineTatsuya Nakamura QuartetThe New Heritage Keyboard QuartetBobby Bradford-John Carter QuintetThe Lucky Thompson QuartetThe Sextet Of Orchestra U.S.A.The Booker Ervin SextetGary McFarland & Co.The Eddie Daniels QuartetThe Ronnell Bright TrioCharlie Ventura QuintetNew York UnitElvin Jones McCoy Tyner QuintetRichard Davis QuartetLawrence Brown's All-StarsThe Ray Bryant QuintetThad Jones & Mel LewisPaul Knopf TrioEric Dolphy / Booker Little QuintetThe Peter Lundberg TrioRichard Davis And FriendsLeo Maiberger Quartet + +263472Johnny MandelJohn Alfred MandelAmerican jazz and film music and popular music composer and arranger. +Born November 23, 1925, in New York City, NY, USA. +Died June 29, 2020, (age of 94) Ojai, CA, USA. +As a songwriter, he charted ten times between 1965-1992 in the U.S. and the U.K. His top charted song was "Theme from M*A*S*H (Suicide Is Painless)" for the 1970 movie. He composed the music. The song charted four times between 1970-1992, including hitting #1 in the U.K. in 1980. +He was Inducted into the ASCAP Jazz Wall of Fame in 2009 and the Songwriters Hall of Fame a year later.Needs Votehttps://en.wikipedia.org/wiki/Johnny_Mandelhttps://www.imdb.com/name/nm0006184/https://www.songhall.org/profile/johnny_mandelhttps://en.wikipedia.org/wiki/Suicide_Is_PainlessDž. MandelisE. MandelHandelI. MandelJ MandelJ,. MandelJ. MandelJ. MadelJ. MadellJ. ManchelJ. MandelJ. MandellJ. ManderJ. MandrellJ. MendelJ. MondelJ. mandelJ. マンデルJ.HendelJ.MandelJ.MandellJahnny MandelJay MandelJohn A MandelJohn Alfred "Johnny" MandelJohn Alfred 'Johnny' MandelJohn Alfred MandelJohn J. MandelJohn MandelJohn MandellJohn MendelJohnn MandelJohnnyJohnny MandeJohnny Mandel Y Su Gran Conjunto De JazzJohnny MandellJohnny MandrelJohnny MangelJohnny MantelJohnny MaugelJohnny MendelJohnny MendellJohny MandelJohny MendelJonnny MandelJonny MandelJos MandelMadelMandalMandallMandeMandelMandel JohnMandel, J.Mandel, JohnnyMandellMandesMandleManelMendelOrnandelP. MandelaS. MandelS.J. MandelW. MandelWandelД. МендельДж. МендельДж. МендлДж. МэнделДж. Мэндлジョニー・マンデルCount Basie OrchestraBuddy Rich And His OrchestraBoyd Raeburn And His OrchestraThe MashStan Getz QuartetJohnny Mandel OrchestraCy Touff OctetGerry Mulligan And The Jazz ComboJohnny Mandel And Top West Coast Jazz Musicians + +263473Trevor VeitchTrevor Stanley VeitchCanadian guitarist, songwriter and producer, born May 19, 1946 in Vancouver, British Columbia. Based in Los Angeles.Needs Votehttps://en.wikipedia.org/wiki/Trevor_Veitchhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=355341&subid=0Stanley Trevor VeitchT VeitchT. VeichT. VeitchT. VetchT. VitchT. WeitchT.VeitchTrevorTrevor Stanley VeitchTrevor VeatchTrevor VeichTrevor VeintehTrevor VetchTrevor VicheTrevor VietchTrevor VitchTrevor/VeitchVeitchVeitschVetchVettichZeitch3's A Crowd (2) + +263615Gregor KitzisViolinist from the USA.Needs Votehttps://www.gregorkitzis.com/Greg KitzisGregorGregor KitsizGregor KitzizKitzisRevue NoirOrchestra Of St. Luke'sThe Scorchio QuartetThe Hampshire String Quartet + +263731Laurence DreyfusMusicologist and player of the viola da gamba, born in 1952. +He founded the viol consort Phantasm in 1994.Needs Votehttp://en.wikipedia.org/wiki/Laurence_DreyfusPhantasm (3)Les Talens Lyriques + +263794Bennie GreenBernard GreenJazz trombonist and band leader +Born April 16, 1923 in Chicago, Illinois, USA, died March 23, 1977 in San Diego, California, USA +Known for his recordings in the 1950s and 1960s.Needs Votehttp://en.wikipedia.org/wiki/Bennie_GreenB. GreenB.GreenBennieBennie Green With StringsBennyBenny CreenBenny GreenBernie GreenGreenБенни ГринThe Miles Davis SextetDuke Ellington And His OrchestraEarl Hines And His OrchestraJ.C. Heard And His OrchestraColeman Hawkins QuintetSonny Stitt BandGeorge Treadwell And His All StarsCharles Mingus Jazz WorkshopMiles Davis And His BandSlim Gaillard And His Southern Fried OrchestraThe Four TrombonesColeman Hawkins All StarsBabs Gonzales And His OrchestraCharlie Ventura And His OrchestraThe Charlie Ventura SeptetBennie Green And His OrchestraBennie Green SeptetBennie Green QuintetBennie Green SextetJo Jones And His OrchestraJazz Studio OneJo Jones SextetBennie Green And His BandThe Nick Esposito Sextet + +263795Leonard GaskinAmerican jazz bassist +Born August 25, 1920 in New York City, New York, died January 24, 2009 in New York City (Queens), New York +Leonard worked with Eddie Condon, Dizzy Gillespie, Charlie Parker, Miles Davis, Jay Jay Johnson, Stan Getz, Coleman Hawkins and many others. +Needs Votehttps://en.wikipedia.org/wiki/Leonard_GaskinL. GaskinLee GaskinLen GaskinLeo GaskinLeonard GarkinLeonard GashinLeonard Gaskin OrchestraLeonard GaskinsLeonard O. GaskinLou GaskinLéonard GaskinThe J.J. Johnson SextetErroll Garner TrioDon Byas QuartetBud Freeman's Summa Cum Laude OrchestraEddie Condon And His ChicagoansStan Getz QuintetTony Scott And His OrchestraHot Lips Page And His OrchestraAllen Eager QuintetThe J.J. Johnson QuintetJ.J. Johnson's BoppersRex Stewart QuintetEddie Condon And His All-StarsFrank Socolow's Duke QuintetThe Bobby Donaldson GroupPete Brown's Brooklyn Blue BlowersSam Price And His Texas BlusiciansGeorge Wettling's All StarsOliver Jackson TrioDick Voigt's Big Apple Jazz BandLeonard Gaskin Dixielanders + +263796Zoot SimsJohn Haley SimsAmerican jazz tenor and soprano saxophonist + +Born 29 October 29 1925 in Inglewood, California, USA. +Died 23 March 1985 in New York City, New York, USA (age 59) + +"Zoot" Sims is one of the greatest high register saxophone players of his generation, especially on tenor, though he also adopted alto and much later soprano. Regularly recorded for [a=Norman Granz] labels, and is well known for his playing on the recordings of beatnik writer and painter [a=Jack Kerouac]. + +Father of Woody Sims.Needs Votehttps://en.wikipedia.org/wiki/Zoot_Simshttps://concord.com/artist/Zoot-Sims/https://www.facebook.com/Zoot-Sims-179172885595886/https://www.allmusic.com/artist/zoot-sims-mn0000228087https://www.britannica.com/biography/Zoot-Simshttps://www.npr.org/2008/03/19/88488393/zoot-sims-brother-of-swinghttps://www.bluenote.com/artist/zoot-sims/https://www.imdb.com/title/tt0202165/https://adp.library.ucsb.edu/names/102938"Zoot" SimsJ. SimsJack "Zoot" SimsJack 'Zoot' SimsJack SimsJack ZootJames SimsJohn "Zoot" SimsJohn 'Zoot' SimsJohn (Zoot) SimsJohn Haley "Zoot" SimsJohn Haley 'Zoot' SimsJohn Haley SimsJohn Haley Zoot SimsJohn SimsLeonard "Zoot" SimsLeonard SimsSimmsSimsZ. SimsZ.SimsZoos ZimsZootZoot SimmsZoot Sims (Solo)Zoot Sims DuoZoot Sims [soprano sax uncredited]Zoot SymsZoot ZimsZoots SimsZot Simsズート・シムズQuincy Jones And His OrchestraClarke-Boland Big BandWoody Herman And His OrchestraZoot Sims & FriendsElliot Lawrence And His OrchestraWoody Herman & The New Thundering HerdBenny Goodman And His OrchestraZoot Sims SextetZoot Sims QuartetShorty Rogers And His OrchestraTony Scott And His OrchestraBob Brookmeyer QuintetThe Ernie Wilkins OrchestraAl Cohn - Zoot Sims QuintetWoody Herman SextetManny Albam And His Jazz GreatsStan Getz Tenor Sax StarsWoody Herman's Big New HerdAl Cohn QuintetThe Gary McFarland OrchestraPepper Adams OctetGerry Mulligan And His SextetBilly Byers And His OrchestraGerry Mulligan QuintetWoody Herman And The Swingin' HerdThe Louie Bellson QuintetThe Four Brothers (2)Jack Sheldon QuintetChubby Jackson's OrchestraThe Jazz Interactions OrchestraBill Evans QuintetThe Manhattan Jazz All StarsThe Elliot Lawrence BandZoot Sims And His OrchestraWoody Herman And The Fourth HerdGeorge Williams And His OrchestraThe Zoot Sims QuintetSims-Brookmeyer QuintetArt Farmer And His OrchestraCurtis Fuller's QuintetThe Quincy Jones Big BandShorty Rogers And His Augmented "Giants"John Benson Brooks EnsembleGerry Mulligan And The Sax SectionDave McKenna QuartetZoot Sims - Bob Brookmeyer OctetRoy "King David" Eldridge & His Little JazzThe Zoot Sims-Russ Freeman QuintetTeddy Charles And His SextetStan Levey SextetZoot Sims & His Five BrothersZoot Sims & His Three BrothersAl Cohn-Zoot Sims SextetGerry Mulligan OctetThe Zoot Sims Al Cohn SeptetDon Fagerquist NonetteZoot Sims All-StarsThe Bill Potts Big BandThe Teddy Charles GroupZoot Sims / Jimmy Rowles QuartetTenor ConclaveJoe Bushkin SextetJoe Williams & FriendsAl Cohn-Richie Kamuca SextetWoody Herman & The Second HerdBuddy Rich NonetMulligan ManiaZoot Sims-Kenny Drew QuartetWoody Herman OctetZoot Sims/Dick Nash OctetHall Daniels' Octet + +263953Ray AnthonyRaymond AntoniniAmerican bandleader, trumpeter, songwriter and actor. +born 20 January 1922, Bentleyville, Pennsylvania, USA. +Married to sex symbol actress [a=Mamie Van Doren] (1955-1961, divorced). + +From 1940-1941 he played in [a=Glenn Miller and His Orchestra] and from 1953 to 1954 Anthony was the musical director on the television series [i]TV's Top Tunes[/i], and also appeared as himself in the 1955 film [i]Daddy Long Legs[/i]. Anthony was considered one of the most modern of the big band leaders and was a regular of the Las Vegas circuit. + +He continues to run his own label, [l=Aero Space Records], which reissues his recordings as well as those of [a=Glenn Miller] and [a=Billy May].Needs Votehttps://www.facebook.com/rayanthonybandhttps://en.wikipedia.org/wiki/Ray_Anthonyhttp://www.spaceagepop.com/anthony.htmhttps://www.imdb.com/name/nm0030989/https://web.archive.org/web/20210129124550/http://www.rayanthonyband.com/https://adp.library.ucsb.edu/names/104693A. RayAnthonyR AnthonyR, AnthonyR. AnthonayR. AnthonyR. AntonyR.AnthonyRay Anthony & His Big BandRay Anthony And His OrchestraRoy AnthonyР. ЭнтониР.ЭнтониРей Антониレイ・アンソニーRay Anthony & His BookendsGlenn Miller And His OrchestraRay Anthony & His OrchestraRay Anthony's Big Band DixielandAl Donahue And His OrchestraRay Anthony And His Bookend Revue + +264026Cole PorterCole Albert PorterAmerican composer and lyricist, born June 9, 1891 in Peru, Indiana; died October 15, 1964 in Santa Monica, California.Needs Votehttps://www.coleporter.org/https://en.wikipedia.org/wiki/Cole_Porterhttps://www.imdb.com/name/nm0006234/https://www.britannica.com/biography/Cole-Porterhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102688/Porter_ColeA. ColeC PorterC, PorterC. PorterC. A. PorterC. DulferC. POrterC. ParterC. PortaC. PorteC. PorterC. PorterrC. PortesC. PortnerC. PoterC. PotterC. de PorterC.PorterC.ポーターC: PorterCile PorterCo. PorterCoe PorterCol PorterColeCole - PorterCole Albert ParterCole Albert PorterCole Albert PoterCole Porter '13Cole PorterrCole PortetCole ProterCole-Albert-PorterCole-PorterCole. PorterCole/PorterColePorterColeporterColle PorterColporterCols PorterColt-PorterDon ColeFuscoG. PorterK. PorterK. PorterisK. PortersK. ПoртepK.C. PorterMr. PorterP. ColeParterPoeterPortePorterPorter '13Porter C.Porter ColePorter NotorionsPorter, CPorter, C.Porter, ColePorter/ColePortrerPoterPotterPrterporterК. ПортерК. ПортераК.ПортерКол ПортерКоль ПортерКоул ПортерКоул ПортьрПолоПортерПортърק. פורטרק.פורטרコール・ポーターCole Porter Orchestra + +264105Ira GershwinIsrael GershowitzAmerican lyricist (born December 6, 1896 in New York City, New York (USA), died August 17, 1983 in Beverly Hills, California (USA). + +Lyrics with Ira only +I Can't Get Started (composed by Vernon Duke) +My Ship (Kurt Weill) +The Man That Got Away (Harold Arlen) +Long Ago (And Far Away) (Jerome Kern) + +The older brother of [a261293], [a736966] and [a4685049]. A close friend of [a=E.Y. Harburg], the two worked together writing lyrics. Ira started his career in 1918 under the pen name of [a=Arthur Francis]. It was not until 1924 that Ira and George began a collaboration that would prove one of the most successful and prolific in history. + +Inducted into the Songwriters Hall of Fame in 1971.Needs Votehttps://gershwin.com/https://www.songhall.org/profile/Ira_Gershwinhttps://en.wikipedia.org/wiki/Ira_Gershwinhttps://www.imdb.com/name/nm0314857/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102148/Gershwin_Irahttps://www.allmusic.com/artist/ira-gershwin-mn0000200301A. GeršvinsA.FrancisG. CershwinG. GershwinGeorge Gershwin/Ira GershwinGerhswinGerschwinGershwinGershwin (I)Gershwin / GershwinGershwin IGershwin I.Gershwin IraGershwin,GerswhinGerswhin, IraGerswinGerwshwinGeschwinI GershwinI GerschwinI GershwinI gerschwinI. GerrshwinI. GerschwinI. GershinI. GershwinI. GerswhinI. GerswinI.GershwinI.GerswinIda GerswinIla GershwinIraIra GerhwinIra GerschwinIra Gershwin, b. Israel GershovitzIran GershwinIro GershwinIsrael GershovitzIva GershwinJ GershwinJ. GershwinL. Gershwini. Gershwinl. GershwinА. ГершвинА. ГершвінАира ГершвинАйра Гершвинアイラ・ガーシュインArthur FrancisGeorge & Ira Gershwin + +264106DuBose HeywardDuBose Edwin HeywardAmerican author, born August 31, 1885; died June 16, 1940. Husband of playwright [a=Dorothy Heyward]. + +Known for his novel "Porgy", which became later the basis of the opera and musical "Porgy and Bess" (play adaptation by [a=Dorothy Heyward], music by [a=George Gershwin], libretto by [a=DuBose Heyward], lyrics by [a=Ira Gershwin] and [a=DuBose Heyward]). +Needs Votehttp://en.wikipedia.org/wiki/DuBose_Heywardhttps://www.imdb.com/name/nm0371738/?ref_=nv_sr_srsg_0https://adp.library.ucsb.edu/names/102054B DuHeywardB. D. HeywardB. Du HeywardB. HaywardB. HeywardB. Heyward Du BoseB. du HeywardB.D. HeywardBode De HeywardBosc-heywardBose De HeywardBose Du HeywardBose HeywardBose, HeywardD HaywardD HeywardD HeywoodD. B. HaywoodD. B. HeywardD. Bose HeywardD. Bose, D. HeywardD. HaywardD. HaywoodD. HaywordD. HeywarD. HeywardD. HeywoodD. HowardD. R. HeywardD. В. HeywardD.B HeywardD.B. HeywardD.B. HeywoodD.B.HeywardD.HaywardD.HeywardD.HeywoodDB. HeywardDe BoseDe Bose HeywardDe Bose-HeywardDeBoseDeBose HeywardDeboseDebose HaywardDebose HeywardDebrow HaywoodDu 'Bose HeywardDu Bois HeywardDu Bosc HeywardDu BoseDu Bose & D. HeywardDu Bose & HeywoodDu Bose - HeywardDu Bose / HeywardDu Bose HaywardDu Bose HeeywardDu Bose HeiwardDu Bose HewardDu Bose HeywaldDu Bose HeywarDu Bose HeywardDu Bose HeywardtDu Bose HeywoodDu Bose HowardDu Bose ReywardDu Bose, HeywardDu Bose-HeyWardDu Bose-HeywardDu Bose/HeywardDu Bosse/HeywardDu Dose/ HeywardDu Dose/HeywardDu HeywardDu Hose HeywardDu RoseDu'Bose HaywardDu-Bose HeywardDuBare HeywardDuBase, D. HeywardDuBoisDuBois HeywardDuBoreDuBoscDuBoseDuBose & HeywardDuBose - HeywardDuBose B. HeywardDuBose Edwin HeywardDuBose HaywardDuBose HaywordDuBose HewoodDuBose HeywardDuBose HeywoodDuBose KeywardDuBose, HeywardDuBose-HeywardDuBose/HeywardDuRoseDuRose/ HeywardDuRose/HeywardDubase HeywardDubase, HeywardDubiose HeywardDuboisDubois HaywardDubois HeywardDubois-HeywardDubois/HeywardDuboise HaywardDubos HaywardDubos HeywardDubosc - HeywardDubosc IIcywardDuboseDubose - HeywardDubose . HeywardDubose B. HeywardDubose Edwin HeywardDubose HaywardDubose HeywardDubose Heyward-HeywardDubose HeywoodDubose HeywordDubose, HeywardDubose-HaywardDubose-HeywardDubose-HeywoodDuboshaywardDue Bose HeywardDuroseDurose/HeywardE. Du BoseE. DuBose HeywardE. HeywardE. Heyward DuboseEdvin DuBose HeywardEdwin Du Bose HeywardEdwin DuBose HeywardEdwin Dubose HeywardEdwin HeywardG. HeywardGershwinH. Da BosoH. De BoseH. DoseH. Du BoseH. DuBoseH. DuboseH. Dubose EdwinH. du BoseH.Du BoseHaylsardHaywardHayward DuBoseHayward due BoseHaywoodHaywordHejwardHewardHeyardHeymanHeynardHeywardHeyward DHeyward Do BoseHeyward Du BoseHeyward Du RoseHeyward DuBoseHeyward DuboseHeyward de BoseHeyward du BoseHeyward, (D.E.)Heyward, Du BoseHeyward-DuHeyward-GershwinHeyward/HeyHeyward/HeywardHeywardsHeywoodHeywordHeyword Du BoseHowardHoywardL. DuBoseL. du Bose - HeywardMaywoodMeynardS. Du BoseS. HeywardWashingtonYeywarddu Bose HeywardБ. ХейуордД. ХейвардД. ХейуордДюбоз ХейуордDubose & Dorothy Heyward + +264111Willard RobisonAmerican composer and pianist, born 18 September 1894 in Shelbina, Shelby County, Missouri; died 24 June 1968 in Peekskill, New York. + + + A gifted songwriter, Robison directed much of his early work in line with the tradition of Negro spirituals. In all, he was credited with well over 100 such compositions, including "Religion In Rhythm", "Truthful Parson Brown" and "The Devil Is Afraid Of Music", the latter song crossing the border into acceptance as a popular song that is still performed today. + +In 1917, he formed his own band, the Deep River Orchestra, with which he toured the southwest and Midwest. He never forgot his country home, something that was to be an ever-present ingredient for his songs. Even as he moved more towards contemporary popular music, he still retained the spiritual feeling, describing his compositions as "Deep River Music". One of his songs, "Peaceful Valley", was Paul Whiteman's first theme tune and it was with Whiteman's encouragement that Robison went to New York where for seven years he led the Deep River Orchestra on weekly radio shows. + +Apart from Whiteman, other admirers of Robison's work included singer Mildred Bailey and songwriter Johnny Mercer. Among singers other than Bailey who have recorded his songs, sometimes memorably so, are Dardanelle, Anita Ellis, Barbara Lea, Peggy Lee (notably recording "Don't Smoke In Bed"), Daryl Sherman and Lee Wiley. Another artist who found Robison's +down-home lyricism appealing was Jack Teagarden who recorded several of his songs on his 1962 set, Think Well Of Me. Robison's work, which first became widely popular in the 20s, retained favour with the public into the 40s and some songs became standards, among them "A Cottage For Sale" (composed in collaboration with Larry Conley), "Guess I'll Go Back Home Again (This Summer)" (with Ray Mayer), "Old Folks" (with Dedette Lee Hill) and "A Woman Alone With The Blues". + +These examples apart, eventually public interest in his charming and essentially down home lyrics faded as more urgent, less nostalgic themes took precedence. What many overlooked was that Robison's choice of simple, everyday themes for his lyrics was not indicative of simplistic writing. Indeed, much of his work was highly sophisticated. In Barbara Lea's liner notes to The Devil Is Afraid Of Music, her 1976 Audiophile Records selection of Robison's songs, she states of his music that in the "quintessential Robison writing . . . under a melody which is often sinuous and chromatic, the harmonies are conceived not vertically but horizontally. The effect is of a number of strands which flow along together, making a closely woven texture like the many currents of a river." +Needs Votehttps://en.wikipedia.org/wiki/Willard_Robisonhttps://adp.library.ucsb.edu/names/106316https://www.angelfire.com/music5/tony2003/html/robison.htmlC. RobisonM. Willard RobisonRobbinsRobbinsonRobertsonRobesonRobinsonRobinson WillardRobisonRobison WillardRobsonS. RobinsonW RobinsonW, RobinsonW. RobesonW. RobinsonW. RobisnonW. RobisonW. RoinsonW.RobinsonW.RobisonWilland RobinsonWillard / RobisonWillard / RobinsonWillard RobesonWillard RobinsonWillard Robison And His PianoWillard RobnisonWillard RobsonWillard, RobinsonWillard, RobisonWillard/RobesonWillard/RobinsonWillard/RobisonWillarde RobisonWillare RobinsonWillare RobisonWilliam RobinsonWilliam RobisonWilliard RobinsonWilliard Robisonw. RobisonРобисонWillard Robison & His OrchestraWillard Robison And His Levee LoungersDeep River Orchestra + +264203Bernie HanighenBernard David HanighenAmerican songwriter best known for writing the lyrics to the original composition by [a=Thelonious Monk], "'Round Midnight", and to "When a Woman Loves a Man". He also worked as producer. +He also worked with [a=Clarence Williams], [a=Billy Holiday] and [a=Johnny Mercer]. He was born April 27, 1908, Omaha, Nebraska, and died October 19, 1976, New York, USA.Needs Votehttp://en.wikipedia.org/wiki/Bernie_Hanighenhttps://adp.library.ucsb.edu/names/108341https://www.findagrave.com/memorial/227372711/bernard-david-hanighenB HanighanB HanighenB. D. HanighenB. D. HaningenB. HanghenB. HangihenB. HaniganB. HanigenB. HanighanB. HanighemB. HanighenB. HanigherB. HaningenB. HanniganB. HannighenB. HarighenB. ManighemB.D. HanighenB.HanighanB.HanighenB.HaninghenBanighenBenard HanighenBerhard HanighenBermie HanigherBernard D HanighenBernard D'HaneghenBernard D. HaneghenBernard D. HanighenBernard D. HanniganBernard D.HanighenBernard HaniganBernard HanighanBernard HanighenBernard HaninghenBernard HannighanBernhard HangihenBernhard HanighenBerni HanighenBernieBernie / HannighenBernie D. HanighenBernie HaniganBernie HanigenBernie HanighanBernie HanniganBernie HannighenBert HanighenBob HanighenD. B. HanighenD. HanighenD1EanighenHagenHaighenHamighenHaneghenHanghenHangihenHaniganHanigehnHanigenHanighamHanighanHanighemHanighenHanighen BernardHanighen, B.HanigherHanighinHanighonHaningenHaninghenHanniganHannighanHannighan WilliamsHannighenHanninghanHarighenHenighenHonighenP. HaniganP. HanighenP. HannighenБ. Хэниген + +264223Linda HirstClassical mezzo-soprano & soprano vocalistNeeds Votehttps://www.linkedin.com/in/linda-hirst-67091934/?originalSubdomain=ukhttps://www.trinitylaban.ac.uk/study/teaching-staff/linda-hirst/Linda M. HirstLynne HirstЛинда ХерстElectric PhoenixThe Michael Nyman BandRed ByrdSwingle II + +264406Steve ChambersKeyboardist.CorrectS. ChambersSteve A. ChambersСтив ЧемберсThe Philip Glass EnsembleSteve Reich And Musicians + +264428Bernhard LangMusician and composer. Member of the improvisation groups: Laleloo, VLO and Tricorder. +He was born on 24th of February 1957 in Linz, Austria and has been studying music the whole of his life, especially jazz music.Needs Votehttps://bernhardlang.at/B. LangLangLalelooStaatskapelle DresdenErich Zann Septett + +264494Kirk LightseyKirkland LightseyAmerican jazz pianist, born 15 February 1937 in Detroit, Michigan, USA + + +Needs Votehttps://www.allmusic.com/artist/kirk-lightsey-mn0000101038https://kirklightsey.bandcamp.com/https://kirklightseylive.bandcamp.com/https://en.wikipedia.org/wiki/Kirk_Lightsey(Thalmus)K. LightseyKirkKirk Lightsey (Thalmus)Kirkland LightseyLightseyThalmus Kirk LightseyThe Chet Baker QuintetRufus Reid TrioDavid Murray QuartetJimmy Raney QuartetThe Leaders (3)Roots (8)Dexter Gordon QuartetSaheb Sarbib QuintetThe Johnny Griffin QuartetKirk Lightsey QuartetNoga & QuartetKirk Lightsey TrioThe Harold Land / Blue Mitchell QuintetBrian Lynch SextetAgostino Di Giorgio TrioClifford Jordan QuintetThe Mallory-Hall BandBenny Golson QuartetThe Leaders TrioKirk Lightsey Quintet + +264553Marky MarkowitzIrwin MarkowitzAmerican trumpeter +Born 11 December 1923 in Washington died 11 November 1986 +Worked with [a335672], [a239399], [a258689], [a170329] and [a299282] among othersNeeds Votehttps://en.wikipedia.org/wiki/Marky_Markowitzhttps://www.allmusic.com/artist/irvin-marky-markowitz-mn0001744807https://adp.library.ucsb.edu/names/329764"Marky" MarkowitzErvin MarkowitzIrv MarkovitzIrv MarkowitzIrvin MarkovitzIrvin MarkowitzIrvin Marky MarkowitzIrving "Marky" MarkowitzIrving 'Marky' MarkowitzIrving MarkovitzIrving MarkowitsIrving MarkowitzIrwin "Marky" MarkowitzIrwin 'Marky' MarkowitzIrwin MarkowitzIrwing MarkowitzIvan MarkowitzIvring MarkovitzMark "Marky" MarkowitzMark MarkowitzMarkey MarkowitzMarkie MarkowitzMarky "Marky" MarkowitzMarky MarkowitsMarty Markowitzアービン・マルコヴィッツマーキー・マーコウィッツWoody Herman And His OrchestraJimmy Dorsey And His OrchestraWoody Herman & The HerdThe Jerry Ross SymposiumWoody Herman And The Swingin' HerdThe RagtimersColeman Hawkins SextetUrbie Green And His OrchestraThe Orchestra (4)George Russell OrchestraWoody Herman And The Fourth HerdArt Farmer And His OrchestraJoe Timer And His OrchestraNew York New York (2)Chubby Jackson's Big BandBuddy Rich SeptetThe Bill Potts Big BandThe Butch Miles SextetWoody Herman & The Second HerdThe Butch Miles Octet + +264563Laurel MasséFormer singer of [a49605]. Joined the quartet in 1972 and was forced to leave the group in 1978, after a near fatal accident. She was replaced by [a431745]. +In 1980 she was recovered enough to start a solo career.Needs Votehttp://laurelmasse.comhttps://en.wikipedia.org/wiki/Laurel_Mass%C3%A9L. MasseL. Masse-A. MasseL. MasséLaurel Anne MasseLaurel MasseLaurel MasseováMasseMasséThe Manhattan TransferJaLaLa + +264565Seldon PowellAmerican soul jazz, swing and R&B tenor saxophonist and flautist. + +Born 15.11.1928 in Lawrenceville, Virginia +Died 27.01.1997 in Hempstead, New York.Needs Votehttps://en.wikipedia.org/wiki/Seldon_Powellhttps://adp.library.ucsb.edu/names/208116C. PowellPowellS. PowellS.PowellSelden PowellSeldom PowellSeldonSeldon PowelSelven PowellSheldon PowelSheldon Powellセルダン・パウエルQuincy Jones And His OrchestraShirley & CompanyThe Soul FindersWoody Herman And His OrchestraLouis Armstrong And His All-StarsLucky Millinder And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraTony Scott And His OrchestraBrand New FunkOliver Nelson And His OrchestraJay McShann And His OrchestraThe Ernie Wilkins OrchestraRay Brown All-Star Big BandWillie Rodriguez Jazz QuartetThe Bobby Donaldson GroupSeldon Powell SextetNew Pulse Jazz BandWoody Herman And The Fourth HerdArt Farmer And His OrchestraAaron Bell And His OrchestraThe International Jazz GroupThe Leiber-Stoller Big BandSeldon Powell And His All StarsDon Redman All StarsAll Star Big BandBuddy Rich SeptetClark Terry SeptetThad Jones & Mel LewisThe Seldon Powell QuartetThe Basie AlumniFriedrich Gulda And His Sextet + +264568Frank VicariAmerican jazz saxophonist. + +Born: 11 April 1931. +Died: 20 October 2006 in New York, USA.Needs VoteFrank A. VicariVicariWhite ElephantWoody Herman And His OrchestraThe Little Big HornsWoody Herman & The Young Thundering HerdWoody Herman And The Swingin' HerdThe Leslie West BandDave Matthews' Big BandMike Mainieri & Friends + +264572George DorseyAmerican jazz saxophonist, born in Savannah, Georgia, USA. +Also credited for 'Weeds'Needs Votehttps://www.allmusic.com/artist/george-dorsey-mn0000557424/biographyG. DorseyCount Basie OrchestraDizzy Gillespie And His OrchestraLionel Hampton And His OrchestraLouis Armstrong And His All-StarsBenny Carter And His OrchestraSy Oliver And His OrchestraElla Fitzgerald And Her Famous OrchestraMilt Jackson OrchestraBuster Harding's OrchestraThe Jerry Fielding OrchestraAndy Gibson And His OrchestraThe Riverside Jazz StarsDon Redman All StarsAll Star Big BandJim Chapin OctetSpecs Powell & Co. + +264600Jeff BarryJoel AdelbergAmerican songwriter, singer, and record producer. +Born 3 April 1938 in Brooklyn, New York, USA. +Married to songwriter [a=Ellie Greenwich] (1962-65), whom he co-wrote many songs with. +He charted 163 times between 1960 and 2022, including nine #1 songs beginning with "Tell Laura I Love Her" in 1960. Other #1's included: "Chapel of Love", "Do Wah Diddy Diddy", "Leader of the Pack", "Hanky Panky", "Sugar, Sugar", "I Honestly Love You", "Da Doo Run Run", and "Take Me Home Tonight". Ninety-four of his 163 charted songs and six of his #1 songs were co-written by Ellie Greenwich. +IPI: 00002198220 + +Inducted into Songwriters Hall of Fame in 1991. +Inducted into the Rock & Roll Hall Of Fame in 2010 (songwriter). +Needs Votehttp://en.wikipedia.org/wiki/Jeff_Barryhttps://lpintop.tripod.com/jeffbarry/index.htmlhttp://whitedoowopcollector.blogspot.com/2008/10/redwoods.htmlhttp://www.imdb.com/name/nm0058033/bioA. BarryArryBB.B. JeffB.JeffBaleyBanyBarayBarnyBarrieBarryBarry J.Barry JeffBarry JettBarry, JBarry, J.Barry, JeffBaryBerryChuck-BarrfG. BarryGarryGeoff BarreyGeoff BarryJ BarrieJ BarryJ. BarryJ. BanyJ. BareyJ. BarryJ. Barry/E. Greenwich/P. SpectorJ. BaryJ. BarysJ. BawyJ. BernsJ. BerryJ.BarryJ.BerryJef BarryJeffJeff BarreyJeff BarrieJeff BaryJeff BerryJeff BurtonJeff, BarryJeff/BarryJeffe BarryJeffy BarryJerry BarryJerry BerryJess BarryJil BarryJoff BarryJohn BarryK. BarryL. BarryMannT. BarryY. Barryj. barryБериБэрриבהיバリーWanderoboJoel AdelbergThe RaindropsSpector, Greenwich & BarryThe Spartans (2)The Redwoods (3)The Flairs (4) + +264619Bob PaigeJazz bassist.Needs VoteRobert PageRobert PaigeThe Thelonious Monk Quintet + +264620Idrees SuliemanIdrees Sulieman (né Leonard Graham)Idrees Sulieman (born August 7, 1923, St. Petersburg, Florida, USA - died July 28, 2002, St. Petersburg, Florida, USA) was an American jazz trumpeter who played on [a145256]'s debut on [l281], along with [a264621], [a556973], [a251776] and [a29977]. Also played with such greats as [a145263] and [a23755]. He changed his name from [a793481] after his conversion to Islam. + +Photo: Mark Ladenson 1988 +Needs Votehttps://en.wikipedia.org/wiki/Idrees_Suliemanhttps://idreessuliemanquartetftoscardennard.bandcamp.com/https://adp.library.ucsb.edu/names/345802(Idress Sulieman)I. SuliemanI. SulimanIdreas SuliemanIdreas SulimanIdreesIdrees Suleman = Leonard GrahamIdrees Sulieman (Leonard Graham)Idrees Sulieman = Leonard GrahamIdrees SuliemannIdrees SulimanIdress SuleimanIdress SuliemanIdresse SulimanIdries SuliemanIdris SulimanIndrees SuliemanLeonard "Idris Sulieman" GrahamSuliemanSulimanSullimansLeonard GrahamClarke-Boland Big BandThe Thelonious Monk QuintetLouis Jordan And His Tympany FiveBenny Carter And His OrchestraStan Getz QuartetBen Webster And His OrchestraThelonious Monk SextetTony Scott And His OrchestraLester Young QuintetArt Blakey's Big BandThe Kenny Clarke - Francy Boland SextetIdrees Sulieman QuartetDon Byas QuintetEric Dolphy QuintetThe Prestige All StarsMal Waldron QuintetColeman Hawkins SeptetMary Lou Williams And Her OrchestraDexter Gordon & OrchestraThe Mal Waldron SextetMax Roach SeptetNDR-Jazz-Workshop-BandSlide Hampton - Joe Haider OrchestraRed Mitchell QuintetThe Prestige Blues-SwingersIdrees Sulieman QuintetFriedrich Gulda And His Sextet + +264621Danny Quebec WestAmerican jazz alto saxophonist, born around 1930. At the age of 17 he recorded with [a145256] on his first session for [l281], October 15, 1947. Cousin of saxophonist [a29964]. His output is confined to the four tracks from that session. Described as a "saxophone prodigy" his playing is much along the lines of [a=Charlie Parker].Needs VoteDanny QuebecQuebecThe Thelonious Monk QuintetThelonious Monk Sextet + +264622George TaittGeorge "Flip" Taitt, an American jazz trumpet player, born in Harlem, NYC in 1920. His recorded output is limited to four tracks Monk registered 21 November 1947 for [l=Blue Note] and a session with John Kirby on 3 September 1946 for [l=Crown Records (31)].Needs VoteGeorge TaitGeorge TaitteGeorges TaitThe Thelonious Monk Quintet + +264626Clifford JordanClifford Laconia JordanAmerican jazz saxophonist +Born September 2, 1931 in Chicago, Illinois, USA, died March 27, 1993 in Manhattan, New York, USANeeds Votehttp://en.wikipedia.org/wiki/Clifford_Jordanhttps://cliffordjordan.bandcamp.com/C JordanC. JordanC. Jordan Jr.C. JordasnC.JordanCl. JordanCliff JordanClifford Jordan & Co.Clifford Jordan Jr.Clifford Jordan, Jr.Clifford L. Jordan, Jr.JordanRed-JordanThe Horace Silver QuintetThe Charles Mingus QuintetThe J.J. Johnson SextetClifford Jordan QuartetHoward McGhee And His OrchestraCharles Mingus Jazz WorkshopAndrew Hill Trio And QuartetCharles Mingus SextetMax Roach QuintetJazz ContemporariesMingus Big BandKlaus Weiss QuintetLee Morgan QuintetMax Roach QuartetPaul Chambers QuintetArt Farmer QuintetMal Waldron QuartetDizzy Reece SextetCedar Walton TrioThe Clifford Jordan GroupLee Morgan - Clifford Jordan QuintetClifford Jordan And The Magic TriangleSlide Hampton QuintetThe Pentagon (3)Clifford Jordan QuintetThe Clifford Jordan Big BandSonny Clark QuintetJohn Hicks / Elise Wood QuintetClifford Jordan & Friends + +264755Alison GanglerClassical oboist.Needs VoteVOX (3)Concentus Musicus WienMusica Antiqua KölnConcerto KölnBoston Baroque + +264868Art DavisArthur D. DavisAmerican jazz musician, educator, teacher and psychologist, born 5 December 1934 in Harrisburg, Pennsylvania (USA), died 29 July 2007 in Long Beach, California (USA) + +Starting on bass in 1951, he played with [a=Max Roach] in 1958, then was extremely busy in the early '60s ([a=John Coltrane], [a=Thelonious Monk], [a=Eric Dolphy], [a=Booker Little]). He was also working in several television orchestras between 1962 and 1970. +He became more discreet in the 80s with a more expanding teaching career. + +Needs Votehttps://en.wikipedia.org/wiki/Art_DavisA. DavisArtArthur DavisArty DavisDavisDr Art DavisDr. Art Davisアート・デイヴィスGil Evans And His OrchestraDizzy Gillespie And His OrchestraMcCoy Tyner TrioDizzy Gillespie QuintetOliver Nelson And His OrchestraShirley Scott TrioArt Blakey QuartetThe Roland Kirk QuartetMax Roach QuintetArt Davis QuartetLee Morgan QuintetClark Terry QuartetDizzy Reece SextetThe Max Roach TrioThe Quincy Jones Big BandHilton Ruiz TrioJohn Coltrane OrchestraThe Al Grey - Billy Mitchell SextetJoe Newman QuintetBooker Little 4Roberto Magris TrioColeman Hawkins & Friends + +264870Larry RidleyLarry RidleyLarry Ridley is an African American jazz bassist and music educator, born September 3, 1937 in Indianapolis, Indiana, USA. +Brother of [a340878] +Needs Votehttp://www.larryridley.com/https://en.wikipedia.org/wiki/Larry_Ridleyhttps://fr.wikipedia.org/wiki/Larry_RidleyL RidleyL. RidleyLarry RedleyRidleyラリー・リドレーThe Red Garland TrioThe Thelonious Monk QuartetThe Horace Silver QuintetBarry Harris TrioJazz ContemporariesThe Horace Silver SextetThe Newport All StarsWynton Kelly TrioPaul Jeffrey QuintetMax Roach-John Lewis GroupBunky Green SextetGeorge Coleman QuintetDameroniaPhilly Joe Jones Quartet + +264871Julian PriesterJulian Anthony PriesterAmerican jazz trombonist +Born June 29, 1935, Chicago, Illinois +He has played with [a35328], [a229498], [a145257], [a97545] and [a3865] among others, but has spent most of his career touring and recording with other artists.Needs Votehttps://www.bluenote.com/artist/julian-priester/https://www.ecmrecords.com/artists/1435045796/julian-priesterhttps://en.wikipedia.org/wiki/Julian_Priester(Pepo) Julian PriesterJ. PriesterJ.A. PriesterJulain PriesterJulian (Pepo Mtoto) PriesterJulian A. PriesterJulian PiresterJulian PreisterJulian PresterJulian Priester & Pepo MtotoJulian Priester PepoJulian Priester Pepo MtotoJulian PriestlyPepo (Julian Priester)Pepo Julian PriesterPepo Mtoto / Julian PriesterPepo Mtoto Julian PriesterPreisterPriesterPristierジュリアン・プリ―スタージュリアン・プリースターPepo (2)The George Gruntz Concert Jazz BandWoody Herman And His OrchestraDuke Ellington And His OrchestraDave Holland QuintetThe Johnny Griffin OrchestraMarine IntrusionMax Roach QuintetWoody Herman And The Swingin' HerdMax Roach Plus FourJulian Priester SextetDavid Haney Trio4 + 1 EnsembleMax Roach SextetThe New York Composers OrchestraThe Sun Ra ArkestraDuke Pearson's Big BandPhilly Joe Jones SextetQuartettSam Rivers SextetThe Blue Mitchell OrchestraDavid Haney QuartetThe Composers And Improvisors OrchestraThe Herbie Hancock SextetHans Fahling Quintet + +264872Jimmy HeathJames Edward HeathAmerican jazz tenor and soprano saxophonist, flutist, arranger, composer and bandleader + +Born October 25, 1926 in Philadelphia, Pennsylvania; died January 19, 2020 in Loganville, Georgia + +Jimmy is the middle brother of the Heath Brothers ([a=Percy Heath]/bass and [a=Albert Heath]/drums). Father of [a38236]. +Needs Votehttps://www.jimmyheath.com/https://en.wikipedia.org/wiki/Jimmy_HeathHeathJ HeathJ. HealthJ. HeartJ. HeathJ.HeathJames HeathJimmie HeathJimmie Heath-TayariJimmyJimmy HealthJimmy Heath-TayariMr. HeathДж. Хитジミー・ヒースTayariThe Miles Davis SextetDizzy Gillespie And His OrchestraThe J.J. Johnson SextetDizzy Gillespie SextetHoward McGhee SextetMilt Jackson And His Gold Medal WinnersMilt Jackson OrchestraMilt Jackson SextetThe Heath BrothersWalter Gil Fuller And His OrchestraCBS Jazz All-StarsThe Kenny Dorham QuintetArt Farmer QuintetContinuum (5)Elmo Hope SextetJimmy Heath QuintetJimmy Heath And His OrchestraBlue Mitchell SextetThe Riverside Jazz StarsThe Blue Mitchell OrchestraDizzy Gillespie All-Star Big BandSam Jones & Co.Jimmy Heath SextetJimmy Heath Big BandGil Fuller OrchestraJimmy Heath And BrassThe Riverside Reunion BandThe Benny Carter All-Star Sax EnsembleBunky Green SextetJimmy Heath QuartetChico & Rita New York BandThe Dizzy Gillespie™ Alumni All-Star Big Band + +264990Art MunsonArthur Henry MunsonAmerican producer, musician and songwriterNeeds Votehttp://www.artmunson.com/A. MunsonArt MaunsonArt MunsenArthur MunsonArtie MunsonMunsonDick Dale & His Del-Tones6680 LexingtonBig Foot (8) + +264992Ron TuttRonald Ellis TuttAmerican drummer: Born: 12 March 1938, Dallas, Texas, United States, Died: 16 October 2021 +Ron Tutt was part of [a27518]'s "TCB" touring band (1969-1977) and 18 years as [a271516]'s drummer (1981-2018). He performed and/or recorded with [a175776], [a135946], [a223131], [a285133], [a173717], [a55029], [a259913], [a137418], [a13735] and [a38258], among many others. Tutt didn't actually begin playing his signature instrument until his final year of high school learning ukulele, guitar, violin and trumpet before the drum kit. Needs Votehttp://www.myspace.com/ronnietutthttp://users.skynet.be/fa950845/tcb_band/tutt.htmhttp://www.drummerworld.com/drummers/Ron_Tutt.htmlhttp://diamondville.com/NDRRT/Ron.htmlhttps://en.wikipedia.org/wiki/Ron_Tutthttps://www.imdb.com/name/nm0878313/RonRon TutRonald Ellis TuttRonald TutRonald TuttRonn TuttRonni TuttRonnie TutRonnie TuttRonny TuttHenry Mancini And His OrchestraMichael Nesmith & The First National BandLalo Schifrin & OrchestraThe TCB BandRoy Orbison And FriendsLegion Of MaryJim Lauderdale & The Dream Players + +265284Phil MedleyPhilip E. MedleySongwriter and strings and horns orchestra leader. Probably most famous for co-writing "Twist & Shout". Born 9th of April 1916, died 3rd of December 1997. Uncle of [a=Sharon Brown]. +[b]Do NOT confuse with [a=Bill Medley] ("Little Latin Lupi Lu", "My Babe"...)[/b]Needs Votehttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Philip+Medley+e&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allB. MedleyBill MedleyF. MedleyJedleyMM.M. MedleyMadleyMeadleyMeddleyMedleMedleyMedley FeelMedley P.Medley PhilMedley, PhilMedlyMellerMellinMendleyN. MedleyNedleyP MedleyP. L. MedleyP. MadleyP. MeddleyP. MedelyP. MedleyP. MidleyP.MedleyPh. MedleyPhil MadleyPhil MedlwyPhil ModleyPhilip MedleyR. MedleyRedleyThil MedleyМэдлейPhil Medleys Orchestra + +265354Shelly ManneSheldon ManneAmerican jazz drummer +Born June 11, 1920 in New York, New York, USA; died September 26, 1984 in Los Angeles, California, USA +He was also part-owner of [l405924], Hollywood, L.A., nightclub, where he also led the house band.Needs Votehttps://en.wikipedia.org/wiki/Shelly_Mannehttps://shellymanne.bandcamp.com/https://www.encyclopedia.com/religion/encyclopedias-almanacs-transcripts-and-maps/manne-shellyhttps://www.drummerworld.com/Videos/shellymannefangtang.htmlhttps://www.pas.org/about/hall-of-fame/shelly-mannehttps://downbeat.com/news/detail/shelly-manne-cultivated-a-unique-brand-from-behind-the-kithttps://www.imdb.com/name/nm0543072/https://adp.library.ucsb.edu/names/329323B. ManneMannManneManny ShellMany ShellS. ManneS.ManneSh. ManneSheldon "Shelly" ManneSheldon ManneShelley MannShelley ManneShellie MannShellyShelly MainShelly MannShelly MauneShelton "Shelly" ManneSherry MannSkelly HaneŠeli Menシェりー・マンシェリー・マンKeats EnnamColeman Hawkins QuartetJunior Mance TrioThe Charlie Parker QuartetDizzy Gillespie And His OrchestraWoody Herman And His OrchestraChet Baker QuartetMetronome All StarsStan Kenton And His OrchestraShelly Manne & His MenThe Swinging Bon VivantsDizzy Gillespie QuintetQuincy Jones' All Star Big BandBoyd Raeburn And His OrchestraLA4Dizzy Gillespie SextetHenry Mancini And His OrchestraStan Getz QuartetColeman Hawkins And His OrchestraWardell Gray QuintetShorty Rogers And His GiantsChet Baker EnsembleArt Pepper QuintetShorty Rogers And His OrchestraPete Rugolo OrchestraNeal Hefti's OrchestraEddie Heywood And His OrchestraEddie Heywood TrioColeman Hawkins Swing FourFlip Phillips And His HiptetThe Abnuceals Emuukha Electric OrchestraChet Baker SextetHoward Rumsey's Lighthouse All-StarsLalo Schifrin & OrchestraThe Russ Freeman TrioThe Stu Williamson QuartetHank Jones TrioManny Albam And His Jazz GreatsThe André Previn TrioWoody Herman And His WoodchoppersKai's Krazy CatsArt Pepper NineThe Buddy Bregman OrchestraElmer Bernstein & OrchestraLeith Stevens & His OrchestraLaurindo Almeida & The Bossa Nova AllstarsVido Musso And His OrchestraHampton Hawes TrioBrass FeverColeman Hawkins' 52nd Street All StarsSonny Rollins TrioThe Tommy Vig OrchestraThe Barney Bigard TrioHank Mancini And The Mouldy SevenAndré Previn & His PalsShelly Manne & His FriendsRuss Freeman QuartetShelly Manne TrioHampton Hawes QuartetShelly Manne & His Hollywood All StarsShorty Rogers QuintetLeith Stevens' All StarsFlip Phillips BoptetTeddy Charles QuartetThe Herb Ellis TrioThe Los Angeles Neophonic OrchestraHot Rod Rumble OrchestraThe Lennie Niehaus OctetThe Pete Jolly SextetWardell Gray SextetBarney Kessel QuintetThe John Graas NonetShelly Manne And His OrchestraJimmy Knepper QuintetPlas Johnson QuartetThe Three (2)Marty Paich And His Jazz Piano QuartetKai Winding's New Jazz GroupThe Mariano-Dodgion SextetShelly Manne SeptetThe Barney Kessel QuartetTeddy Charles QuintetMaynard Ferguson OctetThe Victor Feldman TrioDan Terry And His OrchestraJack Montrose SextetThe John Lewis GroupBill Mays QuintetThe Shelly Manne Quintet And Big BandClifford Brown EnsembleBill Smith QuartetBob Keene SeptetShelly Manne SextetPete Rugolo And His All StarsAndy Laverne TrioThe Bob Cooper SextetThe Woody James SeptetThe Benny Carter QuartetShelly Manne QuintetChubby Jackson's RhythmGerry Mulligan And The Jazz ComboShelly Manne All StarsRuss Freeman-Bill Perkins QuintetThe Lou Levy SextetNeal Hefti And His Jazz Pops OrchestraGeorge Roberts' SextetThe Jack Marshall SextetteArt Farmer/Lee Konitz QuintetJimmy Jones' Big EightSandy Williams Big EightOscar Pettiford And His 18 All StarsShelly Manne Jazz QuartetWoody Herman & The Second HerdThe Poll WinnersBarney Kessel SeptetShelly Manne QuartetTeddy Reig All-StarsThe Greig McRitchie BandThe Contemporary Leaders + +265380Stu WilliamsonStuart Lee WilliamsonAmerican jazz trumpeter, also credited on the valve trombone +Born May 14, 1933 in Brattleboro, Vermont, died October 01, 1991 in Studio City, California + +Played with Stan Kenton, Woody Herman, Billy May, Charlie Barnet, Shelly Manne and others. +Stu was the younger brother of jazz pianist, [a=Claude Williamson] (born 1926) +Needs Votehttps://en.wikipedia.org/wiki/Stu_WilliamsonC.W"illiansonS. WilliamsonS.WiiliamsonStuart WilliamsonWilliamsonWoody Herman And His OrchestraStan Kenton And His OrchestraShelly Manne & His MenDizzy Gillespie Big BandHoward Rumsey's Lighthouse All-StarsThe Stu Williamson QuartetManny Albam And His Jazz GreatsBill Holman And His OrchestraArt Pepper NinePepper Adams QuintetTerry Gibbs And His OrchestraThe Woody Herman Big BandBill Perkins OctetJohnny Richards And His OrchestraMarty Paich Big BandWoody Herman And His Third HerdThe Lennie Niehaus OctetJohnny Mandel OrchestraBud Shank And Three TrombonesBobby Troup And His Stars Of JazzMarty Paich And His Jazz Piano QuartetThe Buddy Bregman BandTerry Gibbs Dream BandThe Mystery Band (3)Clifford Brown EnsembleBill Holman OctetJack Sheldon And His Exciting All-Star Big-BandShelly Manne QuintetStu Williamson QuintetThe West Coast All Star Octet + +265381Bill HolmanWillis Leonard HolmanAmerican songwriter, arranger, conductor and tenor saxophonist, born May 21, 1927 in Olive, near Orange, California; died on May 6, 2024 in Hollywood, CA.Needs Votehttps://en.wikipedia.org/wiki/Bill_Holman_(musician)https://www.imdb.com/name/nm0391648/https://adp.library.ucsb.edu/index.php/mastertalent/detail/204635/Holman_BillB HolmanB. HollmanB. HolmanB.HolmanBil HolmanBill HalmanBill HollmanBill HolmannBill HolmesBill HomanBilly HolmanHofmanHolmanWild Bill HolmanWilliam HolmanWillis HolmanWillis Lee "Bill" HolmanWillis Leonard "Bill" HolmanБ. ХолманБилл ХолменJack Costanzo And His OrchestraStan Kenton And His OrchestraCharlie Barnet And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraThe Marty Paich Dek-TetteManny Albam And His Jazz GreatsBill Holman And His OrchestraThe Bill Holman Big BandArt Pepper NineBob Keene OrchestraTerry Gibbs And His OrchestraBill Holman's Great Big BandMaynard Ferguson & His OrchestraThe Bill Holman BandJohnny Richards And His OrchestraShorty Rogers Big BandThe Lennie Niehaus OctetJimmy Rowles SeptetBobby Troup And His Stars Of JazzThe Buddy Bregman BandBill Holman OctetMel Lewis SextetDon Fagerquist NonetteConte Candoli QuintetBill Holman / Mel Lewis QuintetThe Bill Holman BrassRichie Kamuca Bill Holman OctetThe Sax Maniacs (3) + +265382Curtis CounceCurtis Lee CounceAmerican jazz bassist, born 23 January 1926 in Kansas City, MO, died 31 July 1963 in Los Angeles, California, USA + + +Needs Votehttps://adp.library.ucsb.edu/names/310001https://curtiscounce.bandcamp.com/C. CounceCounceCurtice CounceCurtis Lee Counceカーティス・カウンスShelly Manne & His MenThe KentoniansIllinois Jacquet And His OrchestraJohnny Otis And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraLester Young And His BandClifford Brown All StarsShorty Rogers QuintetTeddy Charles QuartetMembers Of The Benny Goodman OrchestraThe Pete Jolly SextetThe Buddy Collette - Chico Hamilton SextetThe John Graas NonetThe Curtis Counce GroupHarold Land All-StarsMilt Bernhart And His OrchestraShorty Rogers And His Augmented "Giants"Teddy Charles QuintetLeonard Feather's West Coast StarsThe Curtis Counce QuintetThe Claude Williamson TrioThe Bob Cooper SextetBill Holman OctetThe Jazz City WorkshopJohn Graas SeptetThe Chico Hamilton SextetThe Frank Rosolino SextetThe Chet Baker-Art Pepper SextetJohn Towner QuartetBuddy Collette OctetJohn Williams And Co.The West Coast All Star Octet + +265383Phil UrsoPhilip UrsoAmerican jazz tenor saxophonist and composer, born 2 October 1925 in Jersey City, New Jersey, USA, died 7 April 2008 in Denver, Colorado, USA. + +Needs Votehttps://en.wikipedia.org/wiki/Phil_Ursohttps://adp.library.ucsb.edu/names/210394P. UrsoPhillip UrsoUrsoWoody Herman And His OrchestraElliot Lawrence And His OrchestraThe Chet Baker QuintetChet Baker & CrewThe Jerry Fielding OrchestraWoody Herman And His Third HerdOscar Pettiford And His Jazz GroupsThe New Oscar Pettiford SextetPhil Urso-Bob Burgess QuintetThe Chet Baker-Art Pepper SextetChet Baker Big BandTerry Gibbs OctetDon Elliott Septet + +265384Monty BudwigMonty Rex Budwig.American jazz double bassist +Born December 26, 1929 in Pender, Nebraska, USA, died March 09, 1992 in Los Angeles, California, USANeeds Votehttps://en.wikipedia.org/wiki/Monty_Budwighttps://adp.library.ucsb.edu/names/306098BudwigMonte BudwigMontyMonty BodwingMonty BudwiMonty BudwickMonty BugwigMonty LudwigMonty R. BudwigWithモンティ・バドウィグモンティ・バドウィッグPaul Smith QuartetVince Guaraldi TrioWoody Herman And His OrchestraBenny Goodman SextetShelly Manne & His MenStan Getz QuartetSupersaxHoward Rumsey's Lighthouse All-StarsThe Russ Freeman TrioThe Stu Williamson QuartetArt Pepper NineWoody Herman's Big New HerdWoody Herman And The Swingin' HerdWoody Herman And The Las Vegas HerdRed Norvo SextetShelly Manne TrioShelly Manne & His Hollywood All StarsThe Bud Shank QuintetRed Norvo QuintetThe Herb Ellis TrioWoody Herman BandOliver Nelson's Big BandWoody Herman And The Fourth HerdThe Lennie Niehaus OctetJimmy Rowles TrioJoe Pass QuartetBob Cooper QuartetJimmy Knepper QuintetJimmy Rowles SeptetFrank Rosolino QuintetBobby Troup And His Stars Of JazzThe Mariano-Dodgion SextetSnooky Young SextetDave McKenna QuartetMike Wofford TrioThe Buddy Bregman BandThe Victor Feldman TrioThe Zoot Sims-Russ Freeman QuintetBill Smith QuartetSoprano SummitThe Vince Guaraldi - Conte Candoli QuartetThe Conte Candoli QuartetDon Thompson & His West Coast FriendsBill Berry And The LA BandSpike Robinson / "Sweets" Edison QuintetStan Levey QuintetWoody Herman And His OctetBarney Kessel SeptetHank De Mano QuartetWoody Herman And The Swingin' Herd (2)Vince Guaraldi SextetRichie Kamuca Bill Holman Octet + +265385Jimmy RowlesJames George HunterAmerican jazz pianist +Born 19 August 1918, Spokane, Washington, USA, died 28 May 1996 (age of 77), Los Angeles, California, USA + +Father of jazz trumpet/fluegelhorn player/vocalist [a1243444] and rock guitarist [a399956]. +Best known as an accompanist. He also released a number of albums under his own name, and explored various idioms including swing and cool jazz. +Inducted into the Big Band and Jazz Hall of Fame in 2001.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Rowleshttps://www.imdb.com/name/nm0746786/https://adp.library.ucsb.edu/names/341255J RowlesJ. G. RowlesJ. RowlesJ.G. RowlesJ.RowlesJames G. 'Jimmy' RowlesJames G. RowlesJames O. RowlesJames RowelsJames RowlesJi. RowlesJim RowlesJim RowlsJimme RowlesJimmi RowlesJimmie RowelsJimmie RowlesJimmie Rowles (And Friends)Jimmie Rowles, b. James George HunderJimmie Rowles, b. James George HunterJimmyJimmy BowlesJimmy RowellsJimmy Rowles And His Upper ClassmenRowlesДжимми Роулсジミー・ロウルズWoody Herman And His OrchestraBenny Goodman SextetBillie Holiday And Her OrchestraBuddy Rich And His OrchestraMarty Paich OrchestraGerald Wilson OrchestraHenry Mancini And His OrchestraWoody Herman & The New Thundering HerdStan Getz QuartetBud Shank - Shorty Rogers QuintetShorty Rogers And His GiantsPete Rugolo OrchestraRed Norvo And His OrchestraThe SurfmenWoody Herman & The HerdWoody Herman And His WoodchoppersBuddy De Franco SextetGeorgie Auld And His OrchestraLouie Bellson OrchestraHerbie Mann's CaliforniansLaurindo Almeida & The Bossa Nova AllstarsGerry Mulligan QuintetL'Ensemble Instrumental Des IlesWoody Herman And The Swingin' HerdJimmy Rowles And His OrchestraBill Holman's Great Big BandJerry Gray And His OrchestraDennis Farnon And His OrchestraRed Norvo SextetDexter Gordon QuartetThe Bud Shank QuintetThe Jimmy Giuffre 4Members Of The Benny Goodman OrchestraBenny Goodman DuoThe Buddy Rich QuintetPepper Adams QuartetJimmy Rowles TrioJimmy Rowles SeptetLester & Lee Young's OrchestraBobby Troup And His Stars Of JazzMarty Paich And His Jazz Piano QuartetThe Bill Perkins QuartetThe Mariano-Dodgion SextetArne Domnérus KvintettThe Jimmy Rowles SextetThe Benny Carter QuartetHerbie Harper QuintetThe Jimmy Rowles QuintetJackie Mills QuintetBuddy Rich All StarsHarry Babasin QuintetSoundstage All-StarsZoot Sims / Jimmy Rowles QuartetThe Brothers Candoli: SextetPete Candoli SeptetBuddy DeFranco And The All-StarsBill Holman / Mel Lewis QuintetRed Norvo ComboBarney Kessel SeptetThe Louis Bellson OctetThe Band That Plays The Blues + +265386Lawrence MarableAmerican jazz drummer (born May 21, 1929 in Los Angeles, California - died July 04, 2012). +Lawrence (or Larance) Marable worked with : Dexter Gordon, Charlie Parker, Charlie Haden, Chet Baker, Zoot Sims, George Shearing, Kenny Drew, Milt Jackson and many others. +He made only one album to his name titled "Tenorman" (1956). +Needs VoteL. MarableLarance MarableLarence MarableLarry MarableLaurence MarableLawrence MarabelLarance MarableJack Costanzo And His OrchestraShorty Rogers And His GiantsSupersaxHampton Hawes TrioJack Sheldon QuintetHampton Hawes QuartetDexter Gordon QuartetSonny Criss QuartetKenny Drew QuartetKenny Drew QuintetThe Jimmy Giuffre 4Jerry Dodgion QuartetLeonard Feather's West Coast JazzmenFrank Strazzeri TrioThe Chet Baker-Art Pepper SextetConte Candoli QuintetThe Lawrence Marable QuartetThe Herbie Harper-Bill Perkins QuintetWardell Gray L.A. StarsTeddy Edwards OctetThe Carl Perkins TrioChet Baker Big BandPillars Of West Coast Jazz + +265387Bill PerkinsWilliam Reese PerkinsAmerican jazz tenor and baritone saxophonist, clarinetist and flutist, born 22 July 1924 in San Francisco, California, USA, died 9 August 2003 in Sherman Oaks, California, USA +Played with Jerry Wald 1950-1951, Woody Herman 1951-1953, Stan Kenton 1953-1954, again with Herman 1954; in the 1960s worked in studios (also as engineer), 1974-1977 in Toshiko Akiyoshi-Lew Tabackin Big BandNeeds Votehttps://en.wikipedia.org/wiki/Bill_Perkins_(saxophonist)https://adp.library.ucsb.edu/names/207836B. PerkinsBill ParkinsBilly PerkinsPerkinsW. PerkinsWilliam F. PerkinsWilliam H. PerkinsWilliam ParkinsWilliam PerkinsWilliam R. Perkinsビル・パーキンスToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraStan Kenton And His OrchestraDizzy Gillespie Big BandMarty Paich OrchestraGerald Wilson OrchestraShorty Rogers And His OrchestraHoward Rumsey's Lighthouse All-StarsThe Adam Ross ReedsBill Holman And His OrchestraWoody Herman And His WoodchoppersWoody Herman's Big New HerdWoody Herman And The Swingin' HerdBill Holman's Great Big BandThe Tommy Vig OrchestraThe Woody Herman Big BandBill Perkins OctetBill Perkins QuintetThe Bill Holman BandDick Grove Big BandMarty Paich Big BandWoody Herman BandOliver Nelson's Big BandThe Los Angeles Neophonic OrchestraShorty Rogers Big BandWoody Herman And His Third HerdThe Lennie Niehaus OctetLennie Niehaus QuintetThe Bob Florence Limited EditionBud Shank And Bill Perkins QuintetThe Five (5)Dick Collins And His OrchestraThe Bill Perkins QuartetThe Buddy Bregman BandTerry Gibbs Dream BandThe Mike Barone Big BandRoy Wiegand Jazz OrchestraJim Widner Big BandAndré Previn EnsembleRuss Freeman-Bill Perkins QuintetThe HerdmenVic Lewis West Coast All-StarsDick Collins And The Runaway HerdKim Richmond / Clay Jenkins EnsembleMed Flory OrchestraWes Montgomery All-StarsThe Bill Perkins Big BandDoc Severinsen And His Big BandBill Perkins Quintet + 1The Steve Huffsteter Big BandThe Herbie Harper-Bill Perkins QuintetBill Perkins - James Clay QuintetThe Bud Shank SextetWoodwinds WestMark Masters EnsembleThe Ron Roberts Concert EnsembleChet Baker Big BandThe Bill Perkins - Steve Huffstetter QuintetArt Pepper + ElevenDanny Pucillo QuartetThe Sax Maniacs (3) + +265388Don FagerquistDonald Alton FagerquistAmerican jazz trumpet player +Born 6 February 1927 in Worcester, Massachusetts, died 24 January 1974 in Los Angeles, CaliforniaCorrecthttps://en.wikipedia.org/wiki/Don_Fagerquisthttp://www.jazzhistorydatabase.com/content/musicians/fagerquist_don/bio.phphttps://www.jazzdisco.org/don-fagerquist/discography/https://rateyourmusic.com/artist/don-fagerquisthttps://www.allmusic.com/artist/don-fagerquist-mn0000149506http://worldcat.org/identities/lccn-n78012455/https://www.imdb.com/name/nm4766862/https://adp.library.ucsb.edu/names/314700/ Don Fagerquist GroupD. FargerquistD.A. FagerquistDan FagerquistDon FagerguistDonald A. FagerquistDonald FagerquistFagerquistLes Brown And His Band Of RenownWoody Herman And His OrchestraGene Krupa And His OrchestraMarty Paich OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraRussell Garcia And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraThe Marty Paich Dek-TetteStanley Wilson And His OrchestraArt Pepper NineLaurindo Almeida & The Bossa Nova AllstarsDave Pell OctetThe Woody Herman Big BandDennis Farnon And His OrchestraMembers Of The Benny Goodman OrchestraWoody Herman And His Third HerdThe John Graas NonetDon Fagerquist OctetThe Bob Bain Brass EnsembleBuddy DeFranco And His OrchestraBob Cooper NonetLeonard Feather's West Coast StarsPete Rugolo And His All StarsBill Holman OctetSi Zentner & His Dance BandDon Fagerquist NonetteDave Pell EnsembleMarty Paich QuintetNeal Hefti And His Jazz Pops OrchestraBuddy DeFranco And The All-Stars + +265389Ben TuckerBenjamin Mayer TuckerJazz bassist, born December 13, 1930, Tennessee, USA, died 4 June 2013 on Hutchinson Island, Georgia, USA, after being hit by a golf cart. + He began his career in Nashville, before settling in California, where he played with Art Pepper and Shorty Rogers, among others, and was an participant in the legendary “Jazz of Two Cities.” +By the early 1960's, he was regularly performing and recording with such greats as Herbie Mann, Billy Taylor, Dexter Gordon, Buddy Rich, Quincy Jones, Marian McPartland, and Mel Torme. +Composer of over 300 titles, many of his songs are jazz standards: “Comin' Home Baby” was a hit for Herbie Mann, “Devilette” and “The Message,” both recorded by Dexter Gordon and “ Right Here, Right Now” by Billy Taylor are just a few of his many title songs.Needs Votehttps://en.wikipedia.org/wiki/Ben_Tuckerhttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&keyid=349463&keyname=TUCKER+BENJAMIN+M&CAE=31152925&Affiliation=BMIB TuckerB, TuckerB. TucherB. TuckerB. TucknerB. TurkerisB. tuckerB.TucherB.TuckerBen TucherBenjaminBenjamin M TuckerBenjamin M. TuckerBenjamin Mayer "Ben" TuckerBenjamin TuckerBenjemin TuckerBennie TuckerBenny TuckerBeu TuckerBob TuckerRay TuckerT. TuckerT. TurnerTruckerTuckerTucker BenTucker Benjamin MTurnerQuincy Jones And His OrchestraBilly Taylor TrioJunior Mance TrioGerry Mulligan QuartetArt Pepper QuartetOliver Nelson And His OrchestraThe Chico Hamilton TrioThe Dave Bailey QuintetGerry Mulligan QuintetThe Dave Bailey SextetThe Ted Brown SextetPaul Togawa QuartetWarne Marsh QuintetRick Jones QuartetHarry Babasin And The Jazz PickersMarshall Royal QuintetBen Tucker And His QuintetThe Freddie Gambrell QuartetThe Jeremy Steig Quartet + +265390Mel LewisMelvin SokoloffAmerican jazz drummer and bandleader, born 10 May 1929 in Buffalo, New York, USA and died 2 February 1990 in New York, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Mel_Lewishttp://www.drummerworld.com/drummers/Mel_Lewis.htmlhttps://adp.library.ucsb.edu/names/327361Lew SoloffLewisM. LewisMalvin Lewis SokoloffMel "The Tailor" LewisMel (The Tailor) LewisMel LenisMell LewisThe TailorМ. ЛьюисМел Луисメル・ルイスWoody Herman And His OrchestraThe Mel Lewis OrchestraStan Kenton And His OrchestraBilly May And His OrchestraDizzy Gillespie Big BandDizzy Gillespie QuintetThe KentoniansMarty Paich OrchestraRay Anthony & His OrchestraGerald Wilson OrchestraSonny Stitt QuartetRussell Garcia And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraThe Marty Paich Dek-TetteBill Holman And His OrchestraThe Gary McFarland SextetGerry Mulligan & The Concert Jazz BandWoody Herman's Big New HerdHerbie Mann's CaliforniansThe Gary McFarland OrchestraThad Jones / Mel Lewis OrchestraPepper Adams QuintetGerry Mulligan QuintetTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdDave Pell OctetEric Dolphy QuartetBill Holman's Great Big BandThe Calvin Jackson QuartetJerry Gray And His OrchestraRuss Freeman QuartetBill Perkins OctetAl Porcino Big BandGugge Hedrenius Big Blues BandThe American Jazz OrchestraMarty Paich Big BandShorty Rogers Big BandTerry Gibbs Big BandJimmy Giuffre's OrchestraThe Lennie Niehaus OctetJoe Lovano QuartetPepper Adams QuartetThe Gerald Wilson Big BandMel Lewis QuintetJimmy Knepper QuintetJimmy Rowles SeptetJohnny Mandel OrchestraHerb Geller QuartetRoman Schwaller JazzquartetBud Shank And Bill Perkins QuintetThe Five (5)Bob Brookmeyer And His OrchestraBobby Troup And His Stars Of JazzThe Bill Perkins QuartetDon Fagerquist OctetThe Herman Foster TrioThe Thad Jones Mel Lewis QuartetThe Buddy Bregman BandBob Cooper NonetThad Jones / Pepper Adams QuintetTerry Gibbs Dream BandThe Zoot Sims-Russ Freeman QuintetThe GellersMarty Paich TrioCharlie Mariano QuartetThe Claude Williamson TrioSal Salvador SextetThe Howard Alden TrioThe Mel Lewis Jazz OrchestraThad Jones QuartetThe Jimmy Rowles SextetJack Sheldon And His Exciting All-Star Big-BandThe Benny Carter QuartetMel Lewis SextetThe Georgie Auld QuintetFriedrich Gulda Und Sein Eurojazz-OrchesterThe Bob Keene QuintetMarty Paich QuintetClark Terry SeptetThe Frank Rosolino SextetMed Flory OrchestraThad Jones & Mel LewisThe Mel Lewis SeptetJoanne Grauer TrioBill Holman / Mel Lewis QuintetPhil Bodner & CompanyAl Cohn-Richie Kamuca SextetBuck Clayton And His Swing BandThe Pete Malinverni TrioThe Marty Paich SeptetLoren Schoenberg And His Jazz OrchestraJohn Colianni TrioArt Pepper + ElevenThe Sax Maniacs (3) + +265391Russ FreemanRussell Donald FreemanBop / Cool jazz pianist (sometimes credited as producer for [l=World Pacific]) +Born 28 May 1926 in Chicago, Illinois +Died 27 June 2002 in Las Vegas, Nevada + +Russ Freeman worked with most if not all of the major West Coast jazz names, including [a=Dexter Gordon], [a=Wardell Gray], [a=Sonny Criss], [a=Chet Baker], [a=Shelly Manne], [a=Shorty Rogers] and [a=Art Pepper]. Also with [a=Serge Chaloff] (Boston, 1954), [a=Charlie Parker] (LA, 1947), and two years with [a=Benny Goodman] (1958-59). He is best known for his 1950s work with trumpeter [a=Chet Baker] and drummer [a=Shelly Manne]. + +His later career was focused mainly on session work for television and film soundtracks, and as a music director in nightclubs. He recorded again in a duet with Manne in 1982. He was the cousin of composer [a=Ray Gilbert] and the singer [a=Joanne Gilbert]. + +• For the contemporary jazz guitarist, usually associated to [a555275], please use [b][a808379][/b]. + +Needs Votehttp://www.peacockent.com/bio_russ.htmlhttps://en.wikipedia.org/wiki/Russ_Freeman_(pianist)https://www.imdb.com/name/nm0293581/https://adp.library.ucsb.edu/names/316423Don FriedmanFreemanR FreemanR. FreemanR. freemanR.FreemanRuss Freeman [as Don Friedman]Russ-FreemanRussFreemanRussel D. FreemanRussell Freemanラス・フリーマンWoody Herman And His OrchestraChet Baker QuartetShelly Manne & His MenArt Pepper QuartetChet Baker EnsembleArt Pepper QuintetPete Rugolo OrchestraChet Baker SextetHoward Rumsey's Lighthouse All-StarsThe Russ Freeman TrioThe Stu Williamson QuartetArt Pepper NineWoody Herman And The Swingin' HerdRuss Freeman QuartetBill Perkins OctetThe Bud Shank QuintetLeith Stevens' All StarsMarty Paich Big BandJohnny Mandel OrchestraCy Touff OctetThe Buddy Bregman BandThe Zoot Sims-Russ Freeman QuintetClifford Brown EnsemblePete Rugolo And His All StarsBenny Goodman And His Jazz GroupShelly Manne QuintetGerry Mulligan GroupAndré Previn EnsembleSonny Stitt & His West Coast FriendsRuss Freeman-Bill Perkins QuintetRuss Freeman-Chet Baker QuartetSoundstage All-StarsBill Watrous QuintetAl Killian And His OrchestraThe Greig McRitchie BandArt Pepper + ElevenBenny Goodman TentetThe Sax Maniacs (3) + +265421Joe MondragonAmerican jazz bassist +Born February 02, 1920 in Antonito, Colorado, USA, died July, 1987 in San Juan Pueblo, New Mexico, USA +Married to actress [a2596385] (divorced 1959)Needs Votehttp://en.wikipedia.org/wiki/Joe_Mondragonhttps://www.imdb.com/name/nm5917987/https://adp.library.ucsb.edu/names/332172J. MondragonJoe B. MondragonJoe MandragonJoe MondagonJoe MondrogorJon MondragonJos. MondragonJosef MondragonJoseph "Joe" MondragonJoseph E. 'Joe' MondrragonJoseph MondragonMondragonジョー・モンドラゴンHarry James And His OrchestraPaul Smith QuartetWoody Herman And His OrchestraChet Baker QuartetBillie Holiday And Her OrchestraBuddy Rich And His OrchestraShelly Manne & His MenBilly May And His OrchestraMarty Paich OrchestraWardell Gray QuintetGerry Mulligan QuartetGerry Mulligan TentetteArt Pepper QuartetShorty Rogers And His GiantsChet Baker EnsembleShorty Rogers And His OrchestraPete Rugolo OrchestraThe Marty Paich Dek-TetteThe Russ Freeman TrioWoody Herman & The HerdBill Holman And His OrchestraThe André Previn TrioWoody Herman And His WoodchoppersGeorgie Auld And His OrchestraStanley Wilson And His OrchestraHarry James & His Music MakersThe Buddy Bregman OrchestraLeith Stevens & His OrchestraAlvino Rey And His OrchestraTerry Gibbs And His OrchestraDave Pell OctetBill Holman's Great Big BandJerry Gray And His OrchestraMarty Paich Big BandShorty Rogers Big BandWoody Herman And His Third HerdWardell Gray SextetBobby Troup And His Stars Of JazzMarty Paich And His Jazz Piano QuartetShelly Manne SeptetBuddy DeFranco And His OrchestraClifford Brown EnsembleBob Hardaway's GroupPete Rugolo And His All StarsThe Bob Cooper SextetHal Schaefer TrioThe Marty Paich OctetDave Pell EnsembleThe Claude Williamson QuartetBuddy DeFranco And The All-StarsGeorge Roberts' SextetWoody Herman & The Second HerdArt Pepper + Eleven + +265422Larry BunkerLawrence Benjamin BunkerAmerican jazz drummer, percussionist & vibraphone player +Born November 4, 1928 in Long Beach, California, died March 8, 2005 in Los Angeles, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Larry_Bunkerhttps://www.imdb.com/name/nm0120488/https://www.bluenote.com/artist/larry-bunker/https://www.radioswissjazz.ch/en/music-database/musician/15263579d697b97ca01d91736cd4992fa8d23/biographyhttps://adp.library.ucsb.edu/names/201274BunkerBunker LarryBunker LawrenceL. BunkerLarry B. BunkerLarry BrinkerLarry BunkersLawrence B. 'Larry' BunkerLawrence B.'Öatty' BunkerLawrence Bunkerラリー・バンカーThe Bill Evans TrioChet Baker QuartetBillie Holiday And Her OrchestraThe Swinging Bon VivantsDizzy Gillespie Big BandThe NPG OrchestraHenry Mancini And His OrchestraStan Getz QuartetGerry Mulligan QuartetGerry Mulligan TentetteArt Pepper QuartetShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraHoward Rumsey's Lighthouse All-StarsLalo Schifrin & OrchestraThe André Previn TrioStanley Wilson And His OrchestraGerry Mulligan And His SextetGerry Mulligan QuintetThe Frankie Capp Percussion GroupLou Levy TrioThe Pete Jolly TrioBill Perkins QuintetRed Norvo SextetHampton Hawes QuartetShorty Rogers QuintetThe Bud Shank QuintetShorty Rogers Big BandThe John Graas NonetJohnny Mandel OrchestraEddie Cano And His SextetLou Levy QuartetRed Norvo SeptetBuddy DeFranco And His OrchestraLarry Bunker QuartetteThe Claude Williamson TrioCaesar Giovannini And His SextetteBob Hardaway's GroupPete Rugolo And His All StarsThe Jimmy Rowles SextetBob Enevoldsen QuintetJohn Graas QuartetThe Bob Keene QuintetHarry Babasin QuintetThe Jazz City WorkshopJohn Graas SeptetSoundstage All-StarsMarty Paich QuintetBilly Usselton SextetNeal Hefti And His Jazz Pops OrchestraClare Fischer & the Yamaha QuartetThe Greig McRitchie BandHarry Babasin QuartetJohn Graas Quintet + +265423Jack MontroseAmerican jazz tenor saxophonist and arranger +Born December 30, 1928 in Detroit, Michigan, died February 7, 2006 in Las Vegas, Nevada, USA +Not to be confused with [a300579].Needs Votehttps://en.wikipedia.org/wiki/Jack_Montrosehttps://www.allmusic.com/artist/jack-montrose-mn0000778697/biographyhttps://musicaficionado.blog/2018/03/28/jack-montrose-1953-1955/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1281252c5d132ec0db3cff7626d15527fe7165/biographyhttps://rateyourmusic.com/artist/jack_montrosehttps://adp.library.ucsb.edu/names/332317J MontroseJ. MontroseJ.MontroseJack MonteroseJack Montrose Orch.MontroseShorty Rogers And His GiantsChet Baker EnsembleThe Marty Paich Dek-TetteThe Lennie Niehaus OctetThe John Graas NonetThe Jack Montrose QuintetJack Montrose SextetWalt Boenig Big BandBuddy Charles Concert Jazz OrchestraThe Jack Montrose & Pete Jolly QuartetThe Russ Gary Big Band ExpressThe Tom Talbert Jazz OrchestraMark Masters EnsembleThe West Coast All Star Octet + +265424Bob NeelAmerican jazz drummer.Needs VoteBob NealRobert NealRobert NeelHarry James And His OrchestraLes Brown And His Band Of RenownChet Baker QuartetThe Pete Jolly TrioRuss Freeman-Chet Baker Quartet + +265425Bob BrookmeyerRobert BrookmeyerAmerican jazz valve trombonist, pianist, arranger and composer. +Born December 19, 1929 in Kansas City, Missouri, died December 15, 2011 in New London, New Hampshire.Needs Votehttps://www.bobbrookmeyer.com/https://bobbrookmeyer.bandcamp.com/https://myspace.com/bobbrookmeyerhttps://en.wikipedia.org/wiki/Bob_Brookmeyerhttps://www.allmusic.com/artist/bob-brookmeyer-mn0000051233/https://adp.library.ucsb.edu/index.php/mastertalent/detail/201117/Brookmeyer_BobB. BookmeyerB. BrookmeyerBob BrockmeyerBob BrookemeyerBob BrookmayerBob BrookmeijerBob Brookmeyer And FriendsBob Brookmeyer and FriendsBob Brookmeyer's KC SevenBob DroodmeyerBobbie BrookmeyerBobby BrookmeyerBod BrookmeyerBrookmeyerBrrokmeyerBud BrookmeyerJ.G.P. BrookmeyerR. BrookmeyerRobert BrookmeyerRobert Edward BrookmeyerБрокмейерボブ・ブルックマイヤーGil Evans And His OrchestraWoody Herman And His OrchestraThe Jimmy Giuffre TrioStan Getz QuintetGerry Mulligan QuartetDanish Radio Big BandChet Baker SextetBob Brookmeyer QuintetManny Albam And His Jazz GreatsGerry Mulligan & The Concert Jazz BandAl Cohn QuintetThe Gary McFarland OrchestraGerry Mulligan And His SextetGerry Mulligan QuintetTerry Gibbs And His OrchestraBob Brookmeyer New Art OrchestraCannonball Adderley And His OrchestraGeorge Russell OrchestraThe Manhattan Jazz All StarsThe Bob Brookmeyer QuartetWoody Herman And The Fourth HerdSteve Allen And His All-StarsSims-Brookmeyer QuintetBob Brookmeyer And His OrchestraClark Terry / Bob Brookmeyer QuintetGary McFarland & Co.Zoot Sims - Bob Brookmeyer OctetOscar Pettiford & His All StarsTeddy Charles And His SextetPeanuts Hucko And His OrchestraChubby Jackson's Big BandAl Cohn - Bob Brookmeyer QuintetZoot Sims All-StarsThe Bill Potts Big BandThad Jones & Mel LewisStan Getz + Bob Brookmeyer SextetBob Brookmeyer New QuartetMulligan Mania + +265426Carson SmithAmerican jazz bassist +Born January 09, 1931 in San Francisco, California, died November 02, 1997 in Las Vegas, Nevada + +Carson Smith worked with : Gerry Mulligan, Chet Baker, Russ Freeman, Chico Hamilton, Charlie Parker, Clifford Brown, Billie Holiday, Dick Twardzik, Stan Kenton, Charlie Teagarden, Buddy Rich, Georgie Auld and others.Needs Votehttps://adp.library.ucsb.edu/names/344237C. SmithC.SmithCarlson SmithCarsen SmithCarson-SmithSmithカーンン・スミスChet Baker QuartetThe Chico Hamilton QuintetGerry Mulligan QuartetChet Baker SextetThe Chico Hamilton TrioSi Zentner And His OrchestraDick Twardzik TrioThe Chico Hamilton QuartetRuss Freeman QuartetLeith Stevens' All StarsClifford Brown EnsembleRuss Freeman-Bill Perkins QuintetRuss Freeman-Chet Baker QuartetThe Las Vegas Jazz Orchestra + +265566LoukLoukas Pour-HashemiHard Trance / Techno DJ, producer & musical writer from England. +Founded his own Techno record label [l=Syntax Error Records] in 2020.Needs Votehttp://www.louk909.co.uk/http://www.facebook.com/louk909http://myspace.com/loukmusichttp://www.mixcloud.com/loukcompulzion/http://www.youtube.com/louk909Future Vision (2)False RealityCohesiveLoukas Pour-HashemiHidden Identity (2)BoglinLewis Gate + +265629Hank JonesHenry JonesAmerican jazz pianist, leader and composer; born July 31, 1918 in Vicksburg, Mississippi, USA, died May 16, 2010 in Manhattan, New York, USA + +He recorded over sixty albums under his own name, and countless others as a sideman. He was part of an in-demand rhythm section in New York City for many years which was hired for hundreds (if not thousands) of diverse gigs, which included bassist [a258461], guitarist [a260721] and [a260724]. +He received the NEA Jazz Masters Award and was also honored with the ASCAP Jazz Living Legend Award and the National Medal of Arts. +His brothers were trumpeter [a271154] and drummer [a135885].Needs Votehttps://en.wikipedia.org/wiki/Hank_Joneshttps://www.imdb.com/name/nm0428192/http://www.bluenote.com/artist/hank-jones/https://www.allmusic.com/artist/hank-jones-mn0000558339/discographyhttps://adp.library.ucsb.edu/names/323999"Hank" JonesGreat Hank JonesH. JonesH.JonesH: JonesHand JonesHand Jones WilliamsHankHank JamesHenry "Hank" JonesHenry JonesHenry William JonesHenry William Jones, Jr.Henry Williams JonesHenry Williams Jones Jr.JonesХэнк Джонсハンク・ジョーンズ力武誠Quincy Jones And His OrchestraGil Evans And His OrchestraColeman Hawkins QuartetThe Charlie Parker QuartetThe Charlie Parker QuintetThe Cannonball Adderley QuintetRay Brown TrioColeman Hawkins All Star BandArtie Shaw And His Gramercy FiveCharlie Barnet And His OrchestraRay Ellis And His OrchestraThe Bob Prince TentetteIllinois Jacquet And His OrchestraCootie Williams And His OrchestraSy Oliver And His OrchestraStan Getz QuartetColeman Hawkins And His OrchestraBenny Goodman And His OrchestraLester Young QuartetDexter Gordon QuintetLeo Parker's All StarsZoot Sims QuartetGene Krupa TrioOliver Nelson And His OrchestraHoward McGhee SextetHot Lips Page And His OrchestraThe Milt Jackson QuartetAl Cohn - Zoot Sims QuintetThe Hank Mobley QuintetHank Jones TrioRay Brown All-Star Big BandThe J.J. Johnson QuintetMilt Jackson OrchestraMilt Jackson QuintetManny Albam And His Jazz GreatsThe Buck Clayton SeptetMilt Jackson And Big BrassNat Adderley QuintetAl Cohn QuintetThe Gary McFarland OrchestraThe World's Greatest JazzbandPepper Adams OctetBilly Byers And His OrchestraJames Moody SextetThe Great Jazz TrioHank Jones QuartetAl Cohn And His OrchestraColeman Hawkins All StarsColeman Hawkins SeptetThe Joe Wilder QuartetOsie Johnson And His OrchestraJohnny Richards And His OrchestraJ.J. Johnson's Bop QuintetteThe Gigi Gryce - Donald Byrd Jazz LaboratoryJerome Richardson QuartetThe Harry Edison QuartetJimmy Cleveland And His All StarsPaul Chambers QuartetGeorge Williams And His OrchestraBill Watrous ComboThe J.J. Johnson And Kai Winding Trombone OctetJoe Lovano QuartetThe Joe Newman SeptetThe Lucky Thompson QuartetThe Ken Peplowski QuintetSims-Brookmeyer QuintetArt Farmer And His OrchestraThe New Yorkers (4)The Quincy Jones Big BandBob Brookmeyer And His OrchestraClark Terry / Bob Brookmeyer QuintetManny Albam And His OrchestraThe Kai Winding OrchestraZoot Sims - Bob Brookmeyer OctetThe Eddie Daniels QuartetThe Eddie Bert SextetRay Brown's All StarsThe Birdland StarsFlip Phillips And His OrchestraHerb Geller & His All StarsThe Hank Jones ComboThe Jazz Piano QuartetThe Rhythm Section (7)Teddy Charles And His SextetThe Jones Brothers (4)The Paris All-StarsThe Trio (9)The Leiber-Stoller Big BandJoe Newman And His OrchestraThe Flip Phillips-Buddy Rich TrioOliver Nelson QuintetThe Ernie Wilkins GroupFlip Phillips QuartetThe Flip Phillips-Howard McGhee BoptetDon Redman All StarsJerome Richardson Sextet"Hot Lips" Page SextetThe Buddy Rich TrioThad Jones QuintetJATP All StarsMeredith D'Ambrosio / Hank Jones DuoEddie Bert QuintetThad Jones & Mel LewisEddie Bert QuartetThe Frank Wess SeptetThe First Modern Piano QuartetRed Norvo ComboHot Lips Page And His BandRay Brown QuintetHank Jones QuintetFestival All-StarsSatoru Oda & Hank Jones Great Jazz QuintetKenny Drew & Hank Jones Great Jazz TrioJazz Studio OneGreat Jazz QuartetThe James Moody And Hank Jones QuartetJim Chapin OctetRoland Kirk SextetSpecs Powell & Co.Tommy Flanagan / Hank Jones DuoThe Daniel Vitale QuartetChet Baker - Hank Jones QuartetSatolu Oda & Hank Jones Great Jazz QuintetSahib Shihab Sextet + +265631Ivie AndersonIvy Marie AndersonIvie Anderson (July 10, 1904 in Gilroy, California, USA - December 28, 1949 in Los Angeles, California, USA) was an American singer. Sang with [a=Earl Hines and His Orchestra] in Chicago before [a=Duke Ellington] hired her in 1931. In 1942 she left Duke Ellington's orchestra to open her own restaurant in Los Angeles. She died in 1949 due to chronic asthma.Needs Votehttps://en.wikipedia.org/wiki/Ivie_Andersonhttps://adp.library.ucsb.edu/names/107104AndersonI. AndersonIAIvieIvie AnderssonIvy AndersonMiss Ivie AndersonDuke Ellington And His OrchestraEarl Hines And His OrchestraThe Gotham StompersIvie Anderson And Her Boys From DixieIvie Anderson And Her All Stars + +265633Marlowe MorrisAmerican jazz pianist, born 16 May 1915, New York City; died May 1978.Needs Votehttps://en.wikipedia.org/wiki/Marlowe_Morrishttps://www.allmusic.com/artist/marlowe-morris-mn0000284458/biographyhttps://www.imdb.com/name/nm0606776/https://adp.library.ucsb.edu/names/332655M. MarloweM. MorrisMarlewe MarrioMorrisMarlowe Morris QuintetBen Webster QuartetThe Tiny Grimes SwingtetSonny Greer And His RextetBig Sid Catlett QuartetPaul Quinichette QuartetMarlowe Morris TrioSid Catlett Trio + +265634Art TatumArthur Tatum Jr.American jazz pianist, widely acknowledged as one of the greatest of all time. +Born: October 13, 1909 in Toledo, Ohio +Died: November 5, 1956 in Los Angeles, California. +From infancy he suffered from cataracts which left him blind in one eye and with only very limited vision in the other. +A major influence on later generations of jazz pianists, he was hailed for the technical proficiency of his performances, which set a new standard for jazz piano virtuosity. Among the countless quotes of praise he received, jazz critic [a342667] described Tatum as "the greatest soloist in jazz history, regardless of instrument." +Tatum was inducted into the DownBeat Jazz Hall of Fame (1964) and received the Grammy Lifetime Achievement Award (1989). +Needs Votehttp://www.arttatum.info/biography/https://web.archive.org/web/20140331190132/http://www.arttatum.info/https://en.wikipedia.org/wiki/Art_Tatumhttps://www.britannica.com/biography/Art-Tatumhttps://www.kennedy-center.org/artists/t/ta-tn/art-tatum/https://jazztimes.com/features/columns/art-tatum-on-v-disc/https://adp.library.ucsb.edu/names/104444https://www.allmusic.com/artist/art-tatum-mn0000505770A. TatumArtArt TaatumArt Tatum PianoTatumTatum‘Арт ТейтемАрт Тейтъмアート・テイタムColeman Hawkins All Star BandEsquire All StarsArt Tatum And His BandArt Tatum And His SwingstersColeman Hawkins Swing FourLeonard Feather All StarsArt Tatum TrioArt Tatum's All StarsTatum - Eldridge - Stoller - Simmons QuartetBarney Bigard SextetThe Lionel Hampton - Art Tatum - Buddy Rich TrioThe Art Tatum - Ben Webster QuartetLionel Hampton And His GiantsThe Art Tatum Buddy Defranco QuartetEsquire All-American Jazz BandJam Session (11)Art Tatum Sextet + +265635Harry James And His OrchestraNeeds Votehttp://www.harryjamesband.com/BandEnsembleH. James & His OrchH. James & His Orch.H. James And His Orch.H. James And His OrchestraH. James OrchestraH. James' Orch.Harry James Orch.Harry JamesHarry James Et Son OrchestreHarry James & GroupHarry James & His OrchHarry James & His Orch.Harry James & His Orchest.Harry James & His OrchestraHarry James & His Orchestra.Harry James & Orch.Harry James & OrchesterHarry James & OrchestraHarry James & OrkesteriHarry James & Sein OrchesterHarry James & Son OrchestreHarry James & Sua OrquestraHarry James & his Orch.Harry James &His OrchestraHarry James (Solo) With Rhythm AccompanimentHarry James And HisHarry James And His Big BandHarry James And His Music MakersHarry James And His OrchHarry James And His Orch.Harry James And Orch.Harry James And OrchestraHarry James E La Sua Orch.Harry James E La Sua OrchestraHarry James E OrchestraHarry James E OrquestraHarry James E Sua OrquestraHarry James E Sua OrqustraHarry James E la Sua OrchestraHarry James En Zijn OrkestHarry James Et Son OrchestreHarry James His OrchestraHarry James His Trumpet & OrchestraHarry James His Trumpet And OrchestraHarry James Ir Jo OrkestrasHarry James Med OrkesterHarry James Og Hans OrkesterHarry James OrchHarry James Orch.Harry James OrchestraHarry James Ork.Harry James OrkestereineenHarry James OrquestaHarry James Sa Trompette Et Son OrchestreHarry James Se Svým OrchestremHarry James U. S. OrchesterHarry James Und Sein OrchesterHarry James Und Sein OrchestraHarry James Und Seinem OrchesterHarry James Y Orq.Harry James Y Su Gran OrquestaHarry James Y Su Nueva Orquesta De SwingHarry James Y Su Orq.Harry James Y Su OrquestaHarry James Y Su OrquestraHarry James and his orchestraHarry James und seinem OrchesterHarry James' Music MakersHarry James' Orch.Harry James' OrchestraHarry James's OrchestraHarry James, Dalton Rizzotto And BandHarry James, His Trumpet & OrchestraHarry James, His Trumpet And OrchestraHarry James, Sa Trompette Et Son OrchestreHarry James, Trompete & OrchesterHarry James, Trompete E OrquestraHarry James, Trompete Und Sein OrchesterHarry James, Trompete, Und Sein OrchesterHarry James, Trumpet And OrchestraHarry James, Trumpet, And His OrchestraHarry Jamesin OrkesteriHarry-James And His OrchestraHet Harry James OrkestHis Orch.His OrchestraHis Trumpet & His OrchestraJames Harry OrchestraM. O. Harry James OrchestraMembers Of The Harry James OrchestraMr. Trumpet And His OrchestraOrchester Harry JamesOrchestraOrchestra Dir. By Harry JamesOrchestra Of Harry JamesOrquesta De Harry JamesOrquesta Harry JamesOrquestra De Harry JamesS. James And His Orch.The 1941 Harry James BandThe EnsembleThe First Harry James Band Of 1939The Harry James BandThe Harry James OrchestraThe Harry James SeptetThe Members Of The Harry James OrchestraГарри Джеймс И Его ОркестрГарри Джеймс и его оркестр = Harry James And His OrchestraОркестр Под Управлением Гарри Джеймсаハリー・ジェイムス楽団Harry James & His Music MakersHarry James And His Big BandFrank SinatraBuddy RichDave WellsLes DeMerleChuck GentryNeal HeftiHelen WardJohn AudinoNick DiMaioEddie DurhamArnold RossLaurindo AlmeidaAlvin StollerDave Matthews (2)Babe RussinVido MussoArthur RolliniJo JonesJess StacyGary HerbigDon LamondJoe MondragonBob NeelBuck ClaytonWalter PageDennis BudimirLew McCrearyDick NashOllie MitchellRay ConniffHarry CarneyVincent DeRosaHelen ForrestGeorge RobertsConrad GozzoRay LinnBob BainFelix SlatkinJuan TizolKurt DieterleManny KleinHelen HumesCharlie TeagardenArtie BernsteinHerschel EvansTommy ToddHerbie HaymerAllan ReussSam MarowitzHerb HarperStan FishelsonHoyt BohannonGeorge SeabergJack GardnerHarry RodgersDrew PageBill LutherRussell BrownLes RobinsonJack WashingtonDave ToughJack PalmerClaude LakeyJack SchaefferHarry James (2)Thurman TeagueEarle WarrenDalton RizzottoRalph HawkinsClaude BowenTruett JonesWillie Smith (2)Sonny PayneBill Miller (2)Kitty KallenDick HaymesJack MarshallVernon BrownMurray McEachernJackie MillsNick FatoolDave ColemanCorky CorcoranGerald VinciMarshall SossonHerb StewardSam DonahueMurray WilliamsAl StearnsBen HellerHarry BluestoneRaphael KramerSam CaplanUan RaseyDan LubeLou RadermanAllan HarshmanJoe ComfortGene EstesRichard LeithLouis BellsonDavid FrisinaJake HannaSam HermanErnie TackLarry McGuireKen WatsonBill SchumannAlex BellerJimmy PriddyJohn CaveRalph CollierZeke ZarchyJohn De VoogdtAbraham HochsteinElias FriedeNick BuonoAl LernerClint DavisLeo ZornAlex CuozzoSam SachelleSindel KoppPhil Palmer (2)Mickey ScrimaJack GootkinAlex PevsnerFred WaldronJohnny McAfeeBill SpearsJay CorreTony Reyes (3)Dick SpencerConnie HainesPaul ShureJack O'KeefeTony DenicolaBob LawsonBruce SquiresPaul RobynErno NeufeldQuin DavisAbe LuboffRichard PerissiGareth NuttycombeAlexander NeimanJerome ReislerGail MartinMarshall CramDave Stone (2)John SantulisDave WheelerCarl SaundersBob RolfeArno MarshBilly ExinerGeorge KastGordon PolkDave MaddenTiny TimbrellModesto Briseno (2)Don BaldwinRene BlochPat LongoRay SimsRalph OsborneJoe RiggsSamuel CytronKing GuionRoy MainErnie SmallVince DiazPhil GilbertSonny BermanIra WestleyGraham EllisRobert PayneDave UchitelClyde ReasingerEd KusbyDon PaladinoMorton FriedmanMaurice PerlmutterDavid SterkinFred GoernerMischa RussellCy BernardStanley SpiegelmanOlcott VailSam FreedNicholas PisaniWalter EdelsteinHerschel Burke GilbertBill Hicks (2)Clay JenkinsBob PolandDick Noel (2)Sam FirmatureJack PercifulTerry RosenSam Conte (2)Joe CadenaRob TurkBruce MacDonaldMike ConnCharlie SmallLouis KievmanJohn MadridPaul GeilPinky SavittMickey ManganoNick BonneyLeonard AtkinsTom PadveenChuck AndersonRobert BerrensonHoughton PetersonDick ShanahanBob Stone (2)Lou FrommBuddy DiVitoJilla WebbBill King (5)Billy RootTony RizziThe SkylarksDon Smith (6)Vic HamannCharlie PrebbleRay Martinez (3)Tommy GonsoulinEd RosaAl RamseyJohnny MezeyIrwin BerkenGerson ObersteinGeorge KochRalph Lane (2)Bryan KentCarl ZeiglerGerald JoyceJesse HeathAlbert SaparoffGlenn HerzerJames TroutmanWilliam GranzosHayden CauseyEd MihelichRay TolandWillard CulleyStan StanchfieldCyril TowbinHarry JaworskiStewart BrunerSam RosenblumHarold SorinCarl MausJack Lee (3)George GrossmanErnest KarpatiMel KunkleNorman Smith (2)Bud BillingsPeggy KingBob EdmondsonJimmy SalkoChris GalumanCharlie QueenerTommy GuminaCarl ElmerPaul MorseyEverett McDonaldFrancis PolifroniArt DepewJack OrdeanArt LundFrank BodeMike ButeraLeo AcostaRuth PriceStan WrightsmanVern RoweRuss CantorGilda MaikenChick CarterNestor AmaralDon BoydCarl BergJacques GasselinMarion MorganVince BadaleJimmy SaundersRay MenhennickRed KellyBob HicksDon MohrWalter PfylPeter BellomoRoger DaleJoe DolnyLee O'ConnorJimmy CookBuddy HayesFloyd BlantonLarry KinnamonHerb LordenIrving RothJoe FerrallFred HallerBill MattisonThomas PorrelloBob AchillesHal SchaeferBob MarloDave Robbins (4)Gilda MaconBuddy MorenoKarl LeafLew EliasBen ZimberoffBob AcriMusky RuffoGinnie PowellJohn Smith (35)Sam MiddlemanEmil BrianoAl PellegriniJulius TannenbaumBill Byrne (3)Tony ScodwellBob Carter (4)Everett LevyLynne RichardsJimmy Campbell (6)Doug ParkerPat ChartrandRuss PhillipsTom SuthersBuddy CombineGeorge Davis (9)Fred KoyenDempsey WrightGary Tole (2)Dave KoonseRobert Robinson (4)Tom HoldenJosé Oliveira (3)Phil Cook (4)Dick McQuarryEd BergmanApril AmesCliff Jackson (3)Ted RosenHal Smith (4)Hugo LowensternJames Grimes (2)Tommy GrecoJack BergFred RadkeDave CooneJack AikenNorman SeeligVerne GuertinTino IsgrowGino BozzaccoJohn CochranNorman ParkerWilliam MassingillHarold MoeBill Palmer (3)Gene KomerJoe BarbaryLenny CorrisPaul LowenkronBob BeinBob Morgan (6)Mario SerritelloRod AdamJim HuntzingerStewart UndemFrank Lee (8)Johnny FrescoDick "Slyde" HydeMarvin ShoreBuddy PoorGene NortonAllan YeagerRichard Winter (3)Joe HambrickHoward Davis (8)Vinni De CampoDavid AmsterdamJack PosterJack Watson (6)Buzz King (2)Jan Stewart (3)Pat Flaherty (5)Chuck LawsonGuy ScaliseBill PaynterLarry StoffelPaula GilbertErnest TozierLouis PressmanAntonio AdameRichard EliotAnthony MarateaBob Manners (2)Lou HorvathCarol Lee (8)Fran HeinesHarold Lieberman (2)Bill Abel (4)Leonard CerrisSol GeskinLarry KurkdjieTom Scully (4)Tom Jones (28)George BujieJack BohannonBill CastellBernice ByresAl PataccaGary KrandDave Johnson (52)Clarence 'Skip' StineDave MaytenMack SterlingMario BabidilloHarry Finkelman + +265637Buck ClaytonWilbur Dorsey ClaytonAmerican jazz trumpeter +Born 12 November 1911 in Parsons, Kansas, USA,. +Died 8 December 1991 in New York City, New York, USA.Needs Votehttp://en.wikipedia.org/wiki/Buck_Claytonhttps://www.britannica.com/biography/Buck-Claytonhttps://www.allmusic.com/artist/buck-clayton-mn0000634674http://shanghaisojourns.net/shanghais-dancing-world/2018/9/16/the-story-of-buck-claytons-harlem-gentlemen-and-the-famous-fight-with-jack-riley-at-the-canidrome-ballroomhttps://www.allaboutjazz.com/tag-buck-claytonhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106762/Clayton_Buckhttps://www.imdb.com/name/nm0165672/A Buck Clayton Jam SessionB. ClaytonB.ClaytonBluck ClaytonBuch ClaytonBuch Y ClaytonBuch y ClaytonBuckBuck - ClaytonBuck ClaytoinBuck Clayton Jam SessionBuck Clayton Jam SessionsBuck Clayton's Band (Featuring Ruby Braff)CaytonClaytonSgt. Buck ClaytonW. ClaytonW.ClaytonWilbur "Buck" ClaytonWilbur 'Buck' ClaytonWilbur Buck ClaytonJohn DuranteCount Basie OrchestraHarry James And His OrchestraCount Basie ComboKansas City SixBillie Holiday And Her OrchestraCount Basie And The Kansas City SevenThe Chocolate DandiesBuck Clayton And His OrchestraCount Basie BandCount Basie, His Instrumentalists And RhythmTeddy Wilson And His OrchestraColeman Hawkins QuintetSy Oliver And His OrchestraMezz Mezzrow And His OrchestraEddie Condon Dixieland All-StarsBenny Goodman And His OrchestraTeddy Wilson QuartetSir Charles And His All StarsBenny Goodman SeptetThe Kansas City SevenLeonard Feather All StarsBuck Clayton With His All-StarsThe Cafe Society BandTeddy Wilson OctetBuster Harding's OrchestraBuck Clayton's BandThe Buck Clayton SeptetMildred Bailey And Her OrchestraBuck Clayton QuintetThe Prestige All StarsThe Ike Quebec Swing SevenJoe Bushkin QuartetThe Newport All StarsBasie's Bad BoysTeddy Wilson And His All StarsTeddy Wilson SextetKansas City FiveBuck Clayton's Big EightBuck Clayton's Big SevenBuck Clayton's Big FourBuck Clayton TrioBuck Clayton QuartetEarl Hines And His QuartetJubilee All StarsJimmy Rushing And His OrchestraMel Powell & His All-StarsJ.C. Heard QuintetCount Basie Quintet"Big Chief" Russell Moore And His OrchestraCharlie Ventura SextetDon Byas' All Star QuintetEsquire All American Award WinnersBenny Carter & His Chocolate DandiesBuck Clayton's BuckeroosCount Basie And His All-American Rhythm SectionJATP All StarsThe Jimmy Rushing All StarsBuck Clayton And His Swing BandTrummy Young's Big SevenWillie "The Lion" Smith QuartetFestival All-StarsBuck Clayton And His Swiss AllstarsEarl "Fatha" Hines All Stars QuintetBuck Clayton SextetBuck Clayton And His RhythmPaul Quinichette SeptetSedric-Clayton SextetBenny Goodman Jam SessionBuck Clayton And His French StarsWillie "The Lion" Smith's QuartetMezz Mezzrow-Buck Clayton Orchestra + +265639Buddy TateGeorge Holmes TateAmerican jazz tenor saxophonist and clarinetist. +Born February 22, 1913 in Sherman, Texas. +Died February 10, 2001 in Chandler, Arizona.Needs Votehttps://en.wikipedia.org/wiki/Buddy_Tatehttps://www.encyclopedia.com/education/news-wires-white-papers-and-books/tate-buddyhttps://www.allmusic.com/artist/buddy-tate-mn0000631071https://www.imdb.com/name/nm0851110/https://nmaahc.si.edu/object/nmaahc_2012.164.181https://rateyourmusic.com/artist/buddy-tatehttps://adp.library.ucsb.edu/names/346313"Buddy" TateB. TateBuddy Tate & FriendsBuddy Tate And His Tenor Sax And OrchestraBudy TateG. TateGeo. TateGeorge "Buddy" TateGeorge 'Buddy' TateGeorge Holmes "Buddy" TateGeorge TatePateTateTate, BuddyCount Basie OrchestraMarlowe Morris QuintetThe Ray Bryant ComboRoy Eldridge And His OrchestraBuck Clayton With His All-StarsThe Cafe Society BandThe Buddy Tate Celebrity Club OrchestraBuddy Tate's OrchestraSlim Gaillard And His Southern Fried OrchestraBuck Clayton QuintetThe Prestige All StarsThe Newport All StarsThe All Star Jazz AssassinsMuse AllstarsThe Vic Dickenson QuintetJimmy Rushing And His OrchestraMel Powell & His All-StarsBuddy Tate QuartetThe Buddy Tate All StarsSackville All StarsHerb Ellis And The All-StarsKarl George OctetBuddy Tate SextetBuddy Tate SeptetThe Jay McShann All StarsBuddy Tate And His Band + +265640John Kirby And His OrchestraCorrectJohn KirbyJohn Kirby & His Orch.John Kirby & His OrchestraJohn Kirby & OrchestraJohn Kirby And GroupJohn Kirby And His BandJohn Kirby And His OrchJohn Kirby And His Orch.John Kirby And OrchestraJohn Kirby BandJohn Kirby Dance BandJohn Kirby Og Hans OrkesterJohn Kirby Orch.John Kirby OrchestraJohn Kirby Y OrquestaJohn Kirby Y Su Orq.John Kirby Y Su OrquestaJohn Kirby's Orch.John Kirby's OrchestraJohnny Kirby And His OrchestraLa Orquesta John KirbyOrchestraOrchestra John KirbyOrchestra Under Direction Of, John KirbyOrchestra Under The Direction Of John KirbyThe John Kirby OrchestraThe Original John Kirby OrchestraJohn Kirby SextetJohn Kirby And His Onyx Club BoysRussell ProcopeBuster BaileyJohn KirbyBilly KyleCharlie ShaversRed NorvoSpecs PowellLeo WatsonO'Neil SpencerBill BeasonRoger Ramirez + +265641Flip PhillipsJoseph Edward FilipelliAmerican jazz tenor saxophone and clarinet player + +Born 26 February 1915 in Brooklyn, N.Y. +Died 17 August 2001 in Ft. Lauderdale, Florida. +Needs Votehttps://en.wikipedia.org/wiki/Flip_Phillipshttps://www.allmusic.com/artist/flip-phillips-mn0000800026https://adp.library.ucsb.edu/names/106029"Flip" Philips"Flip" PhillipsF. PhilipsF. PhillipsFlipFlip PhilippsFlip PhilipsFlip Phillips'Fred PhillipsJ. PhillipsJoe "Flip" PhillipsJoe 'Flip' PhillipsJoe (Flip) PhillipsJoe PhillipsJoseph "Flip" PhillipsJoseph Edward FilipelliPhilliipsPhillipsMachito And His OrchestraWoody Herman And His OrchestraMetronome All StarsBillie Holiday And Her OrchestraEarl Hines SextetRed Norvo And His Selected SextetWoody Herman & The New Thundering HerdCharlie Parker Big BandRed Norvo And His OrchestraNeal Hefti's OrchestraFlip Phillips And His HiptetWoody Herman & The HerdWoody Herman And His WoodchoppersCharlie Parker With StringsThe V-Disc All StarsJohnny Hodges And His OrchestraBuck Clayton QuintetRed Norvo All-StarsTeddy Wilson And His All StarsFlip Phillips SextetChubby Jackson's OrchestraFlip Phillips FliptetFlip Phillips BoptetThe Earl Hines SeptetBuddy Rich QuartetJ.C. Heard QuintetThe Flip Phillips QuintetFlip Phillips And His OrchestraSonny Berman's Big EightThe Flip Phillips-Buddy Rich TrioFlip Phillips QuartetThe Flip Phillips-Howard McGhee BoptetBill Harris SeptetBenny Goodman And His Jazz GroupOscar Peterson & FriendsJATP All StarsTommy Turk And His OrchestraVanderbilt StarsVanderbilt All StarsBill Harris Big EightThe Nick Esposito SextetBenny Goodman TentetChubby Jackson Septet + +265680Eddie HeywoodEdward Heywood Jr.Pianist, composer and bandleader, born 4 December 1915 in Atlanta, Georgia, died 3 January 1989 in Miami, Florida. Not to be confused with his father, [a=Eddie Heywood (2)]. +Was successively a member of the orchestras of Wayman Carver (1932), Clarence Love (1934-1937) and Benny Carter (1939-1940). Formed his own orchestra in 1940. +Needs Votehttp://en.wikipedia.org/wiki/Eddie_Heywoodhttps://www.allmusic.com/artist/eddie-heywood-mn0000794478/biographyhttps://www.imdb.com/name/nm0382397/https://adp.library.ucsb.edu/names/104929"Eddie Wood"CheywoodE. HaywoodE. HeywoodE. HeywwodE.HeywoodEddie EywoodEddie HaywardEddie HaywoodEddie Haywood, Jr.Eddie HeywardEddie Heywood And His OrchestraEddie Heywood And RhythmEddie Heywood Jr.Eddie Heywood PianoEddie Heywood, Jr.Eddie Heywood, jr.Eddy HaywoodEddy HewoodEddy HeywoodEdward HeywoodEdward Heywood, Jr.H. HeywoodHaymanHaywardHaywoodHeywardHeywoodHollwoodエディ・ヘイウッドEddie Wood (3)Billie Holiday And Her OrchestraBenny Carter And His OrchestraEdmond Hall SextetEddie Heywood And His OrchestraEddie Heywood TrioColeman Hawkins Swing FourThe Barney Bigard TrioThe Vic Dickenson QuintetEddie Heywood And His SextetRex Stewart's Big Eight + +265682Al CaseyAlbert Aloysius CaseyAmerican jazz guitarist, born: September 15, 1915, Louisville, Kentucky (There are doubts about his real birth date, Eric B. Borgman states he may have been born in 1917), died: September 11, 2005, New York City, New York + +Casey, growing up in New York City, joined [url=http://www.discogs.com/artist/253482-Fats-Waller]Thomas Fats Waller's[/url] band in the early 1930's, & worked with him until Waller's passing in 1943. +He also worked with the likes of [a=Teddy Wilson], [a=Billie Holiday], [a=Louis Armstrong], [a=Oscar Pettiford], [a=Earl Hines], & [a=King Curtis]. +Joining the [a=The Harlem Blues & Jazz Band] in 1981, Al Casey remained active into his late 80's. + **[b]!Not[/b] to be confused with [a1153585], session guitarist, rockabilly artist,& Duane Eddy collaborator. + + +Needs Votehttp://en.wikipedia.org/wiki/Al_Casey_(jazz_guitarist)https://www.allmusic.com/artist/al-casey-mn0000240632/biographyhttps:adp.library.ucsb.edunames106890A. CaseyAl KaseyAlbert "Aloysius" CaseyAlbert Aloysius 'Al' CaseyAlbert CaseyAlvin W. CaseyAs CaseyCaseyColeman Hawkins All Star BandEsquire All StarsBillie Holiday And Her OrchestraFats Waller & His RhythmLouis Armstrong And His OrchestraLionel Hampton And His OrchestraTeddy Wilson And His OrchestraEarl Hines SextetColeman Hawkins And His OrchestraMezz Mezzrow And His OrchestraMezz Mezzrow And His Swing BandEdmond Hall SextetThe Mike Post CoalitionEarl Bostic And His OrchestraColeman Hawkins Swing FourFrank Newton And His OrchestraLeonard Feather All StarsPete Brown QuintetThe Earl Hines TrioThe Harlem Blues & Jazz BandTeddy Wilson And His All StarsTeddy Wilson SextetThe Earl Hines SeptetAl Casey And His SextetEdmond Hall And His OrchestraGeorge Brunies And His Jazz BandGene Sedric & His OrchestraThe Fletcher Henderson All StarsMetropolitan Opera House Jam SessionBig Sid Catlett's BandAl Hall QuartetThe Al Casey QuartetCyril Haynes SextetOscar Pettiford And His 18 All StarsEarl Coleman And His All StarsFats Waller And FriendsThe Al Casey QuartetteOtto Hardwick QuartetChu Berry And His Jazz EnsembleFats Waller's Jam SchoolMichel Pastre SeptetOtto Hardwick's Wax QuintetThe Jazz Swing All StarsEsquire All-American Jazz BandJam Session (11) + +265683Charlie ShaversCharles James ShaversAmerican jazz trumpeter +Born August 3, 1917 in New York Cit, died July 8, 1971 in New York CityNeeds Votehttp://en.wikipedia.org/wiki/Charlie_Shavershttps://www.allmusic.com/artist/charlie-shavers-mn0000179732/biographyhttps://www.imdb.com/name/nm0789542/biohttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/24819aa9073b49ff873c54d54bcf3f52bf61c/biographyhttps://adp.library.ucsb.edu/names/109143C ShaversC. ShaverC. ShaversC.J. ShaversC.ShaversCSCh. ChaversCh. ShaversCh. ShawersCh.ShaversCharlesCharles ChaversCharles James "Charlie" ShaversCharles James ShaversCharles ShaverCharles ShaversCharley ShaversCharlie ChaversCharlie SchaversCharlie ShaveraCharlie Shavers [uncredited]Charlie Shavers'Charlie SloverCharly ShaversChas ShaversChas. ShaversChaversS. haversSahversSchaversShaverShaversShavers Charles Chas CharlieShavers, CharlesSieviersЧ. ШеверсЧ. ШейверсJoe SchmaltzQuincy Jones And His OrchestraCount Basie OrchestraTommy Dorsey And His OrchestraJohn Kirby And His OrchestraWoody Herman And His OrchestraMetronome All StarsCozy Cole All StarsJohn Kirby SextetBillie Holiday And Her OrchestraTommy Dorsey And His Clambake SevenBud Freeman's All Star OrchestraCharlie Barnet And His OrchestraJimmy McPartland And His DixielandersCharlie Shavers' All American FiveSy Oliver And His OrchestraSidney Bechet And His New Orleans FeetwarmersJohn Kirby And His Onyx Club BoysTony Scott And His OrchestraThe Harlem Blues SerenadersThe V-Disc All StarsMildred Bailey And Her OrchestraPaul Baron's SextetBilly Byers And His OrchestraLionel Hampton All StarsColeman Hawkins' 52nd Street All StarsThe Louie Bellson QuintetColeman Hawkins All StarsDanny Barker's Fly CatsAll Star Alumni OrchestraColeman Hawkins SeptetTeddy Wilson And His All StarsBilly Kyle And His Swing Club BandFlip Phillips SextetThe Charlie Shavers QuartetGeorgie Auld's All-StarsWoody Herman And The Fourth HerdGeorge Williams And His OrchestraThe Gene Krupa SextetBillie Holiday And Her BandThe All Stars (7)Jimmie Noone And His OrchestraThe Charlie Shavers QuintetErroll Garner All StarsFlip Phillips And His OrchestraBuster Bailey & His OrchestraAuld-Hawkins-Webster SaxtetJohnny Dodds And His Chicago BoysAllstars (11)Charlie Shavers And His OrchestraDon Redman All StarsEsquire All American Award WinnersOscar Peterson & FriendsCharlie Shavers' SextetMetronome All-Star BandThe Bill Potts Big BandEdgar Sampson And His OrchestraCharlie Shavers OctetThe V-Disc JumpersBuster Bailey SextetVanderbilt All StarsBen Homer & His OrchestraGinny Simms And Her OrchestraSam Price's Fly CatsLionel Hampton's Just Jazz All StarsJam Session At The RiversideThe Keynoters (5)Coleman Hawkins & FriendsJam Session (11) + +266352Carole KingCarol Joan KleinAmerican singer and songwriter, born February 9 1942, Brooklyn, New York City. + +Formed vocal group Co-Sines in 1957 whilst at High School and adopted the stage name Carole King. Dated [a=Neil Sedaka] at this time. Met [a=Gerry Goffin] at Queens College with whom she formed a songwriting partnership and married in 1960. Their first big hit was "Will You Love Me Tomorrow" by The Shirelles in 1961. Goffin and King split personally and professionally in 1968 (children: [a=Louise Goffin], Sherry Goffin Kondor), although they did work together later on. Carole King was inducted into the Songwriters Hall of Fame in 1987 and in 2002 became a recipient of the Songwriters Hall of Fame "Johnny Mercer Award". + +She formed [a401287] with [a252395] and [a318609]. She married Larkey in 1968, but The City was short-lived and disbanded after one album. In 1970 she toured with James Taylor and launched her solo career with "Writer" and then the classic "Tapestry". The hit albums continued and in 1976 she divorced from Charles Larkey (children: Molly & Levi). + +In 1977 she married songwriting partner Rick Evers. Evers died a year later from a heroin overdose. + +She is active in environmental issues and more recently campaigned on behalf of the US Democratic Party, whilst continuing to write songs and perform.Needs Votehttps://www.caroleking.com/https://www.songhall.org/profile/Carole_Kinghttps://www.songhall.org/awards/winner/Carole_Kinghttps://www.onamrecords.com/artists/carole-kinghttps://www.facebook.com/CaroleKing/https://x.com/Carole_Kinghttps://www.instagram.com/caroleking/https://pinterest.com/caroleking/https://thecaroleking.tumblr.com/https://soundcloud.com/carole-king-officialhttps://www.youtube.com/user/TheCaroleKinghttps://www.youtube.com/user/CaroleKingVEVOhttps://en.wikipedia.org/wiki/Carole_Kinghttps://www.imdb.com/name/nm0005580/https://www.ascap.com/repertory#/ace/search/writer/KING%20CAROLEhttps://www.allmusic.com/artist/carole-king-mn0000174557C KingC. KIngC. KineC. KingC.KingCKCareole KingCaroel KingCarolCarol KingCarol KingováCaroleCarole King LarkeyCarole KngCaroline KingCaroll KingCarolo KingCarolyn CanyonCox Carol KingD. KingE. KingK. KingK. KingaKIngKarol KingKarole KingKindKingKing C.King Caroleקרול קינגキャロル・キングキャロール・キング卡洛金The CityGoffin And KingKeestone Family SingersThe CosinesBroadway For Orlando + +266392Dave PellDavid Pell American jazz saxophonist, photographer and bandleader. +Born February 26, 1925, New York City, New York, USA. Died May 8, 2017. + +He was also active as a producer in the 1950's and 1960's at [l=Liberty], [l=UNI Records] & [l=Tops Records]. In 1961, Pell switched to alto sax and clarinet to work with [a=John Kirby]. He worked with [a120632] in the 1980's, heading Garrett's [l185791] label, which had some of the hotter country artists at the time. He joined up with another West Coast jazz vet, [a535524], and handled the soundtrack recordings for a number of [a550011] and [a802750] films, including "Sudden Impact" and "Sharkey's Machine". In the late '70s he formed the group "Prez Conference" + +Also credited often with photographer credits on jazz releases, with several used as album covers.Needs Votehttp://www.spaceagepop.com/pell.htmhttp://en.wikipedia.org/wiki/Dave_Pellhttps://www.imdb.com/name/nm0670907/https://www.freshsoundrecords.com/10551-dave-pell-albums/9-vinyl-recordshttps://adp.library.ucsb.edu/names/102184D. PellDavid FellDavid PellPellLes Brown And His Band Of RenownThe Dave Pell SingersLes Brown And His OrchestraGerald Wilson OrchestraBob Crosby And His OrchestraPete Rugolo OrchestraBoots Brown And His BlockbustersThe Frankie Capp Percussion GroupDave Pell OctetDave Pell & His OrchestraDave Pell's Prez ConferenceHot Rod Rumble OrchestraThe John Graas NonetDave Pell's Big BandDon Fagerquist NonetteRonny Lang SaxtetDave Pell EnsembleJohn Graas SeptetJimmy Giuffre Quintet + +266403Paul Jackson Jr.Paul Milton Jackson, Jr.Guitarist, but also bass, keyboards player and producer +[b]Warning[/b] Not to be confused with jazz bassist [a272081]. + +Born on 30.12.1959 in Los Angeles (USA) +One of the most wanted L.A.-based session guitarists during the '70s and '80s. +Has worked for [a=The Temptations], [a=Gerald Alston], [a=Bobby Womack], [a=Luther Vandross], [a=Patrice Rushen], [a169154], [a=Pointer Sisters] and many more ... +He has also released some solo records with [l=Atlantic] at the end of the '80s and other, more smooth jazz oriented, in the beginning of the new century on [l=Blue Note]. + -------------- +Guitarist Paul Jackson Jr. joined "The Tonight Show Band" in 2010 with Musical Director Rickey Minor. + +Jackson began his career in entertainment at 7 years old while acting on numerous television shows, commercials and films such as "Good Times" and "The Sting." At age 12, Jackson started playing the guitar. He joined the family band that included his siblings, his mother, and good friend Cornelius Mims. + +When he was 18, Jackson broke into the Los Angeles studio scene and has since contributed his talent to such artists as Whitney Houston, Michael Jackson, Barbra Streisand, Patti LaBelle, The Crusaders, Johnny Mathis, Gladys Knight, Ella Fitzgerald, Dave Koz, Aretha Franklin, Luther Vandross, Bobby Brown, Steely Dan, Chicago, The Temptations, Lionel Richie, Elton John, Kenny Rogers, Jewel, and Barry White. He remains one of, if not the most recorded guitarist in history. +Jackson's television credits include "American Idol," NBC's "America's Got Talent", "The Grammys", and "Celebrity Duets." He was the composer for the TV shows" "Martin" and "Townsend Television" and composed music for the movie "Undercover Brother." Paul was also the musical director for the NARIS Icon Awards. + +In addition, Jackson also boasts an impressive solo career that includes six CDs, the first of which received a Grammy Award nomination, and a #1 single at jazz radio. + +Jackson resides in Los Angeles.Needs Votehttps://www.pauljacksonjr.com/https://www.facebook.com/PaulJacksonJrFanPage/https://x.com/pauljacksonjrhttps://www.youtube.com/channel/UCXXvZHMbkRg2JHaMQw3QGRwhttps://myspace.com/pauljacksonjrspacehttps://en.wikipedia.org/wiki/Paul_Jackson_Jr.JacksonP JacksonP. JacksonP. Jackson Jr.P. Jackson, Jr.P. M Jackson, Jr.P. M. JacksonP. M. Jackson Jr.P. M. Jackson, Jr.P.J. JacksonP.JacksonP.M Jackson, Jr.P.M. JacksonP.M. Jackson Jr.P.M. Jackson, Jr.P.N. Jackson Jr.P.N. Jackson, Jr.PaulPaul Jackson Jnr.Paul "P.J." Jackson, JrPaul Jac kson Jr.Paul JacksonPaul Jackson JnrPaul Jackson Jnr.Paul Jackson JrPaul Jackson JuniorPaul Jackson, Jr.Paul Jackson, Jnr.Paul Jackson, JrPaul Jackson, Jr.Paul Jackson, Jr..Paul Jackson, jr.Paul Jackson,Jr.Paul JacsonPaul Jr JacksonPaul M Jackson JrPaul M Jackson Jr.Paul M. JacksonPaul M. Jackson JrPaul M. Jackson Jr.Paul M. Jackson*Paul M. Jackson, JrPaul M. Jackson, Jr.Paul M. Jackson. JrPaul M. Jackson: Jr.Paul Mil;ton Jackson Jr.Paul Milton JacksonPaul Milton Jackson Jr.Paul Milton Jackson, JrPaul Milton Jackson, Jr.Paul Milton Jackson, Jr.,Paul jackson, Jr.Poul Jackson JrPual M. Jackson, Jr.Tonight Show's Paul Jackson Jrpjjrポール・ジャクソンJr.The Clayton-Hamilton Jazz OrchestraAbe Laboriel & FriendsThe Tonight Show BandThe Bay Area Chapter Of The Music & Arts SeminarJazz Funk Soul + +266406Jimmy WebbJimmy Layne WebbAmerican popular music composer responsible for writing numerous popular and top 10 hits performed by various artists. + +Born on August 15, 1946 in Elk City, Oklahoma, U.S.A.Needs Votehttps://www.jimmywebb.com/https://twitter.com/realjimmywebbhttps://www.instagram.com/jimmywebbmusic/?hl=enhttps://www.youtube.com/channel/UCa81ziI2LqHiOKmREgkrQGghttps://en.wikipedia.org/wiki/Jimmy_Webbhttps://www.imdb.com/name/nm0916158/https://www.allmusic.com/artist/jimmy-webb-mn0000129761Dž. VebasForestI. WebbJ WebbJ, WebbJ. L. WebbJ. VebbJ. WebJ. WebbJ. Webb.J. WeebJ. ウェツブJ. ウェブJ.L. WebbJ.L.WebbJ.W.J.WebbJIm WebbJames WebbJim EebbJim L. WebbJim WebJim WebbJim WebbyJim webbJim. WebbJimm WebbJimmyJimmy C. WebbJimmy I. WebbJimmy L WebbJimmy L. WebJimmy L. WebbJimmy Lane WebbJimmy Layne WebbJimmy WebJimmy WeggJimmy l. WebbWebWebbWebb JimWebb, JimmyWebb, Jimmy L.WebberWeebj. WebbДж. ВеббДж. УэббGit-tarCanopy (9)Strawberry ChildrenRingo's Roadside Attraction + +266425Teddy EdwardsTheodore Marcus EdwardsJazz tenor saxophonist, born 26 April 1924 in Jackson, Mississippi, USA, died 20 April 2003 in Los Angeles, California, USA. + +Not to be confused with blues singer [a=Big Boy Teddy Edwards] or jazz drummer [a=Teddy Edwards (4)].Needs Votehttp://en.wikipedia.org/wiki/Teddy_Edwardshttps://teddyedwards.bandcamp.com/Ed TheodoreEd Theodore (Teddy Edwards)EdwardsT. EdwardsTed EdwardsTeddy Edwards And His Tenor SaxTheodore EdwardsTheodore M. EdwardsThe Joe Castro QuartetGerald Wilson OrchestraDexter Gordon's All StarsHoward McGhee And His OrchestraMilt Jackson QuintetThe Sonny Criss OrchestraTeddy Edwards QuartetLeroy Vinnegar SextetTeddy Edwards SextetLeroy Vinnegar QuintetThe Gerald Wilson Big BandThe Hampton Hawes All-StarsTeddy Edwards SeptetBill Berry And The LA BandSlim Gaillard And His BoogiereenersTeddy Edwards Brasstring EnsembleTeddy Edwards And His OrchestraTeddy Edwards OctetHoward McGhee - Teddy Edwards Quintet + +266488Giya Kancheliგია ყანჩელი (Giya Alexandrovich Kancheli)Georgian composer. Also composed over 40 film scores. +Born: 10th August 1935 Tbilisi, Transcaucasian SFSR, Soviet Union +Died: 2nd October 2019, Tbilisi, GeorgiaNeeds Votehttps://en.wikipedia.org/wiki/Giya_Kanchelihttps://www.naxos.com/person/Giya_Kancheli/27239.htmhttps://www.imdb.com/name/nm0437151/G. A. KanceliG. KancheliGia KancheliGia QancheliGija KancheliGija KantscheliGija KantseliGiya Alexandrovich KancheliGiya KanceliKancheliГ. КанчелиГ. КончелиГ.КанчелиГия КанчелиГія Канчеліგ. ყანჩელიგია ყანჩელიყანჩელიカンチェリギヤ・カンチェリ + +266712Michael McCarthyUK classical bass vocalist and chorus master.Needs Votehttps://www.bach-cantatas.com/Bio/McCarthy-Michael.htmMike McCarthyGabrieli ConsortOxford CamerataThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirThe Choir Of Christ Church Cathedral + +267030Marc BolanMark FeldMarc Bolan (born Mark Feld) was an English singer-songwriter, musician, guitarist, and poet. He was best known as the lead singer of the rock band [a255047]. He died at the age of 29 in a car accident a fortnight before his 30th birthday. + +Born: 30 September 1947 in Hackney, London, England, UK. +Died: 16 September 1977 in Barnes, London, England, UK (aged 29). + +Father of [a=Rolan Bolan]. Needs Votehttp://www.marcbolan.de/https://en.wikipedia.org/wiki/Marc_Bolanhttps://www.imdb.com/name/nm0092647/https://myspace.com/marcbolanhttps://www.facebook.com/marcbolanhttps://www.allmusic.com/artist/marc-bolan-mn0000673517BolanBolan MarcBolan, MarcBolan. M.BolinBölanM BolanM. BohanM. BolamM. BolanM. FeldM.BelanM.BolanMarcMarc / BolanMarc BalonMarc BalouMarc Bolan & String QuartetMarc Bolan Ze T.RexMarc BolandMarc BolenMarc BolinMarc BölanMarc FeldMarc-BolanMark BolanMark BolandMark BolinT. Rex's Marc BolanБоланМ. БоланМарк БолaнМарк Боланマーク•ボランマーク・ボランToby Tyler (2)Dib CochranMark FeldT. RexChoir (11) + +267088Francis DreyfusFrancis DreyfusFrench jazz, rock, and pop promoter, producer, and label owner. + +Born: 2 March 1940 in Le Raincy, Île-de-France, France. +Died: 24 June 2010 in Neuilly-sur-Seine, France (aged 70). + +In 1963 Dreyfus set up his first company, La Société Parisienne De Promotion Artistique ([l=S.P.P.A.]), generally known as [l=Editions Labrador], to promote acts such as [a=Johnny Hallyday], [a=Sylvie Vartan] and [a=Petula Clark]. Along with [a=Daniel Bevilacqua] he launched [l=Les Disques Motors] in 1971. In 1976, he released "Oxygène" by [a=Jean-Michel Jarre]. In 1978, he founded the [l=Disques Dreyfus] label. In 1991, he set up [l=Dreyfus Jazz] jointly with [a=Yves Chamberland], with an American label branch followed in 1993. + +He is the father of actress [a=Julie Dreyfus]. +Needs VoteDreyfusDreyfus FrancisF. D.F. DreyfusFrancis Dreyfus MusicFrancisc Dreyfus + +267089Stéphane GrappelliStéphane GrappelliThe French jazz violinist & pianist, born 26 January 1908 in Paris, France, died 1 December 1997 in Paris, France. He was born Stéfano Grappelli but had his first name gallicized to Stéphane. He was billed as Stéphane Grappelly at first, but the last name spelling on recordings changed to Grappelli in the 1960s, although he still signed his name as "Grappelly." +One of the greatest violin jazz prebop players (but also an occasional pianist), Stéphane Grappelli is known for his legendary collaboration with [a=Django Reinhardt] in the '30s and '40s in their Quintette Du Hot Club De France. +The group disbanded when the war broke (Grappelli went in London while Django stayed in France). +In England, he played with pianist [a=George Shearing]. +After the war, he appeared on hundreds of recordings including sessions with [a=Oscar Peterson], [a=Jean-Luc Ponty], [a=Gary Burton] and countless other great musicians (including few recordings with Django Reinhardt again). +He never stopped playing worldwide until his death at the age of 89.Needs Votehttps://en.wikipedia.org/wiki/St%C3%A9phane_Grappellihttps://www.imdb.com/name/nm0335799/https://adp.library.ucsb.edu/names/103073(Stéphane) GrappelliE. GrappelliGarpelliGrapelleyGrapelliGrapellyGrappeliGrappelliGrappelli StephaneGrappelli, S.GrappellyGrappelyS GrappellyS, GrappellyS. GrapelliS. GrapellyS. GrappeliS. GrappelliS. GrappelliyS. GrappellyS.G.S.GrappelliS.R.Sephane GrappellySt. GrappelliSt. GrappellySt.GrappelliStefane GrappelliStefane GrappellyStehane GrappelliStepahne GrappellyStephan GrapellyStephan GrappelliStephan GrappellyStephan GrappelyStephaneStephane GrapeliStephane GrapelliStephane GrapellyStephane GrappeliStephane GrappelliStephane GrappellyStephane GrasppelliStephanie GrappelliStephanie GrappellyStephen GrapelliStephen GrappellyStèphane GrapellyStéephane GrappellyStéph. GrappellyStéphan GrapellyStéphan GrappelliStéphan GrappellyStéphane GrapelliStéphane GrapellyStéphane GrappeliStéphane GrappellySéphane GrappelliС. ГрапеллиС. ГраппеллиСтефан Граппеллиグラッペリステファン・グラッペリステファン・グラッペリーLolo MartínezAndré Popp Et Son OrchestreOscar Peterson - Stéphane Grappelli QuartetStephane Grappelli And His QuartetQuintette Du Hot Club De FranceSouth-Grappelli-Reinhardt ComboGrappelli-Reinhardt ComboColeman Hawkins And His All Star Jam BandPhilippe Brun "Jam Band"Philippe Brun And His Swing BandBill Coleman & His OrchestraStéphane Grappelli And His Hot FourMichel Warlop Et Son OrchestreNitta Rette Et Son Trio HotMicheline Day Et Son Quatuor SwingPatrick & Son Orchestre De DanseAndré Ekyan Et Son Orchestre JazzTrio De ViolonsStephane Grappelly Et Son OrchestreEddie South QuartetStephane Grappelli QuartetLes Amis De DjangoStéphane Grappelli QuintetStéphane Grappelli TrioStéphane Grappelli EnsembleGrégor Et Ses GrégoriensStéphane Grappelly And His MusiciansStephane Grappelly QuintetStephane Grappelly SextetThe New Hot Club QuintetPierre Spiers SextetteStéphane Grappelli-Henri Crolla QuartetStéphane Grappelly Et Son QuartetteDuo De Violons + +267091Piero CassanoPiero CassanoItalian composer, arranger and musician, born 13 September 1948 in Genova.Correcthttp://it.wikipedia.org/wiki/Piero_Cassano"Peter" CassanoC. PassanoCassanoCassano P.Cassano PierangeloCassonoF. CassanoM. SantosP . CassanoP CassanoP KassanoP. CassanoP. CaasnoP. CarranoP. CasanoP. CasanovaP. CassamoP. CassanoP. CassanoiP. CassaonoP. CassonoP. CausanoP.CassanoPedro CasanoPeter CassanoPierangelo CassanoPierangelo SassanoPieroPiero CasanoPiero CasaroPiero CassaniPiero Cassano Para Euroteam S.a.s. (Milan)Pierro CassanoPierrot CassanoП. КасаноPierangelo CassanoMatia BazarJ.E.T. (2) + +267134Janet BakerJanet Abbott BakerEnglish mezzo-soprano / contralto / alto vocalist. She was born 21 August 1933 in Hatfield, South Yorkshire, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Janet_BakerBakerDame Jane BakerDame Janet BakerDame Janet MakerJ. BakerJanet BakkerДжанет БэкерДженет Бейкерジャネット・ベイカー + +267184Brew MooreMilton Aubrey "Brew" MooreJazz saxophonist. +Born March 26, 1924, in Indianola, Mississippi. +Died August 19, 1973, after falling down a flight of stairs in Copenhagen, Denmark.Needs Votehttps://en.wikipedia.org/wiki/Brew_MooreB. MooreB.MooreDrew MooreMilton 'Brew' MooreMilton MooreMooreClaude Thornhill And His OrchestraCal Tjader QuintetBrew Moore SextetThe Kai Winding SextetBrew Moore SeptetStan Getz Tenor Sax StarsHoward McGhee And His Afro-CuboppersThe Brew Moore QuartetThe Brew Moore QuintetHoward McGhee All StarsChuck Wayne QuintetHoward McGhee SeptetBrew Moore All StarsBrew Moore And His PlayboysThe Tony Fruscella & Brew Moore QuintetGeorge Wallington Septet + +267185Allen EagerAllen EagerAmerican tenor saxophonist, born 10 January 1927 in New York City, New York, USA and died on 13 April 2003 in Daytona Beach, Florida, USA.Needs Votehttps://en.wikipedia.org/wiki/Allen_Eagerhttp://www.bluenote.com/artists/allen-eagerhttps://www.jazzdisco.org/allen-eager/discography/https://www.allmusic.com/artist/allen-eager-mn0000005624https://adp.library.ucsb.edu/names/313377A. EagerA. N. OtherAllan EagarAllan EagerAllen EagarEagerWoody Herman And His OrchestraThe Tadd Dameron SextetTadd Dameron And His OrchestraAllen Eager QuintetTadd Dameron QuintetTony Fruscella SeptetAl Haig SextetStan Getz Tenor Sax StarsColeman Hawkins' 52nd Street All StarsHenri Renaud Et Son OrchestreGerry Mulligan And The Sax SectionRed Rodney's Be-BoppersTony Fruscella QuintetGerry Mulligan OctetAllen Eager QuartetGerry Mulligan New StarsRay Brown QuintetThe Band That Plays The BluesTeddy Reig All-StarsTerry Gibbs OctetKenny Clarke-Martial Solal Sextet + +267186Kai WindingKai Chresten WindingBorn May 18, 1922, Aarhus, Denmark, died May 6, 1983, New York City, New York, USA +Bebop trombonist who first became famous while playing with Stan Kenton's orchestra in 1946-1947. He also played with Miles Davis, Benny Goodman, and fellow trombone legend J.J. Johnson.Needs Votehttp://bjbear71.com/Winding/Kai.htmlhttps://en.wikipedia.org/wiki/Kai_Windinghttps://www.allmusic.com/artist/kai-winding-mn0000352164/discographyhttps://adp.library.ucsb.edu/names/351239https://www.dougpayne.com/kwhome.htmhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/24446ef6c6a6681312275bfb50972df43646c/titolihttp://www.trombone-usa.com/winding_kai.htmKK.K. WindingK.W.K.WindingKae WindingKaiKai Winding OrchestraKai Winding QuartetKai WirdingKal WindingKayKay WindigKay WindingKei WindingThe Great KaiWindingWiningケイ・ウィンディングLon GreachMiles Davis And His OrchestraWoody Herman And His OrchestraMetronome All StarsColeman Hawkins All Star BandGene Krupa And His OrchestraStan Kenton And His OrchestraQuincy Jones' All Star Big BandTadd Dameron And His OrchestraBenny Goodman And His OrchestraStan Getz QuintetPete Rugolo OrchestraKai Winding And His SeptetNeal Hefti's OrchestraCharles Mingus Jazz WorkshopThe Miles Davis NonetBrew Moore SextetThe Kai Winding QuintetThe Kai Winding SextetBrew Moore SeptetAl Haig SextetKai's Krazy CatsAlvino Rey And His OrchestraVido Musso And His OrchestraKai Winding QuartetThe Kai Winding TrombonesThe Four TrombonesTony Scott SeptetColeman Hawkins All StarsThe Woody Herman Big BandThe BirdlandersChubby Jackson's OrchestraJohnny Richards And His OrchestraGeorgie Auld's All-StarsThe Jay And Kai QuintetWoody Herman And His Third HerdGeorge Williams And His OrchestraThe J.J. Johnson And Kai Winding Trombone OctetMel Lewis QuintetThe Quincy Jones Big BandKai Winding's New Jazz GroupThe Kai Winding OrchestraTadd Dameron's Big TenThe Giants Of Jazz (2)The Mystery Band (3)Kai Winding All StarsAllen Keller And TrombonesKai Winding And His Birdland All-StarsRay Brown QuintetUrbie Green And Twenty Of The "World's Greatest"Brew Moore All StarsTeddy Reig All-StarsTerry Gibbs And His Orchestra (2)George Wallington SeptetJay And Kai Trombone OctetDon Elliott Septet + +267187Charlie PerryAmerican jazz drummer +Born 1924 in New York City, New York, died July 14, 1998 in Middle Island, New York + +Charlie worked, among others with : Jimmy Dorsey, Stan Kenton, Alvino Rey, Buddy Morrow, Benny Goodman, Skitch Henderson, John LaPorta, Oliver Nelson, Bud Powell.Needs VoteCharles PerryCharles perryChas PerryChas. PerryStan Getz QuartetStan Getz QuintetThe Kai Winding QuintetAl Haig SextetStan Getz Tenor Sax StarsMal Waldron TrioAl Haig QuartetThe John LaPorta QuartetAllen Eager QuartetAl Haig QuintetGeorge Wallington SeptetAl Williams Trio + +267225Holly KnightHolly ErlanderHolly Knight, born 26/May/1956, New York City, New York - UNITED STATES, is a Grammy Award-winning songwriter and musician, having written hits for artists such as [a=Tina Turner], [a=Pat Benatar], [a=Heart], [a=Cheap Trick] and many others. She was a member of the band [a=Device (2)] and currently she's working in Los Angeles as a music producer. +Inducted into the Songwriters Hall of Fame in 2013. +She's charted 40 times (including 16 top 10 songs) between 1980 and 2011 on the U.S. and/or U.K. charts as a songwriter and once as an artist. Her single which she also wrote "Heart Don't Fail Me Now" reached #59 in 1988. Some of her best-known written songs include: "Obsession" by Animotion (co-written by [a=Michael Des Barres]) hit #6 in the U.S. and #5 in the U.K. in 1985. "The Best" by Tina Turner (co-written by [a=Mike Chapman]) hit #15 in the U.S. and #5 in the U.K. in 1989 "Love Is a Battlefield" by Pat Benatar (also co-written by Mike Chapman) hit #5 (#1 rock) in the U.S. and #49 in the U.K. in 1983.Needs Votehttp://www.hollyknight.com/http://www.nettwerk.com/producer/holly-knighthttp://www.myspace.com/hollyknightsongshttps://en.wikipedia.org/wiki/Holly_KnightB. KnightC. KnightE. KnightH KnightH, KnightH. KnightH. KniightH. NightH.. KnightH.KnightHolly Knight HarrisHolly KnigthHolly NightHollynightK. HollyK. KnightKnightKnight H.Knight, HollyKnioghtN. KnightP. KnightDevice (2)Spider (12) + +267537Marco GuardiaMarco GuardiaAssociate director & mixing engineer @ [l=Brave Wave]. Currently also developing video games as Monomirror and Demimonde.Needs Votehttp://www.ivibes.nu/index.php?article=4000https://twitter.com/monomirrorhttps://twitter.com/DemimondeGamesGuardia, MarcoM GuardiaM. GuardiaM.GuardiaMarcel 'Reverb' GuardiaMarco " Reverb" GuardiaMarco "Reverb" GuardiaMarco 'Reverb' GuardiaMarco'Reverb' GuardiaMarco'Reverb'GuardiaServant Of LightReverbUnmarkMark GuardMarco BoltzmannMonomirrorFlutlichtS.H.O.K.K.Sound Of OverdoseAvatar (4) + +267556Jerry CorbettaGerald Anthony James CorbettaJerry Corbetta Born 1947 Denver, Colorado. Died September 16, 2016, Denver, Colorado, USA, aged 68) was an American singer and keyboardist. Originally a drummer he switched to keyboards and was a founding member of the band [a267553]. When Sugarloaf ended in 1978, he joined [a107784] & [a121112] in the early 1980's. He continued to work on the oldies circuit, particularly with [a4653051] and an occasional Sugarloaf reunion.Needs Votehttps://en.wikipedia.org/wiki/Jerry_CorbettaCorbettaCorbetteCorbittaCortettaGerald Anthony James CorbettaGerry CorbettaJ .CorbettaJ. CorbettaJ.CorbettaJerry A. CorbettaJerry CorbaJerry Corbetta Formerly Of SugarloafJerry Corbetta of SugarloafJerry Corbetta, Formerly Of SugarloafJerry CorbetteJerry CorettaJerry-CorbettaThe Four SeasonsSugarloafEleventh HourThe Classic Rock All Stars + +267651Uli FusseneggerUlrich FusseneggerUli Fussenegger (born 30 November 1965 in Feldkirch, Austria) is an Austrian double bassist, viol player, composer and teacher.Needs VoteFusseneggerUli FuseneggerUlli FusseneggerUlrich FusseneggerKlangforum WienCappella Musicale Di S. Petronio Di BolognaConcentus Musicus WienClemencic ConsortFreiburger BarockorchesterL.E.O. (3) + +267669Count Basie ComboCorrectMembers Of The Basie BandThe Count Basie ComboCount BasieLester YoungJo JonesFrank FosterUrbie GreenBuck ClaytonWalter PageFreddie GreenJoe NewmanSonny PayneBuddy Catlett + +267675John Lewis (2)John Aaron LewisAmerican jazz pianist and composer +Born May 3, 1920 - LaGrange, Illinois, died March 29, 2001 - New York CityNeeds Votehttps://en.wikipedia.org/wiki/John_Lewis_%28pianist%29https://www.imdb.com/name/nm0507368/https://www.britannica.com/biography/John-Lewis-American-musicianhttps://www.bluenote.com/artist/john-lewis/https://www.allmusic.com/artist/john-lewis-mn0000424292https://www.bach-cantatas.com/Bio/Lewis-John-MJQ.htmhttps://adp.library.ucsb.edu/names/359917D. Lewis Jr.J LewisJ, LewisJ. LevisJ. LewisJ.L.J.LewisJohn Aaron LewisJon LewisJonh LewisLewisV. LewisДж. ЛьюисДжон ЛьюисДжон ЛюисЛьюисジョン・ルイスJazz AbstractionThe Modern Jazz QuartetThe Miles Davis SextetThe Miles Davis QuintetMiles Davis All StarsThe Modern Jazz SocietyThe Charlie Parker All-StarsThe Charlie Parker QuintetMiles Davis And His OrchestraDizzy Gillespie And His OrchestraDizzy Gillespie Big BandThe J.J. Johnson SextetIllinois Jacquet And His OrchestraLester Young QuartetZoot Sims QuartetClifford Brown SextetLester Young QuintetCharles Mingus Jazz WorkshopThe Miles Davis NonetSonny Rollins QuartetThe Milt Jackson QuartetThe Miles Davis QuartetThe J.J. Johnson QuintetMilt Jackson QuintetJ.J. Johnson's BoppersMiles Davis And His BandThe Modern Jazz SextetThe Modern Jazz EnsembleBill Perkins QuintetMiles Davis & His Tuba BandLester Young And His OrchestraCharles Mingus OctetJohn Lewis And His OrchestraJohn Lewis QuartetThe Sextet Of Orchestra U.S.A.Orchestra U.S.A.The John Lewis GroupMilton Jackson And His New GroupThe John Lewis TrioJ.J. Johnson All StarsBirdland All-StarsJohn Lewis' MusicJohn Lewis QuintetThe John Lewis Sound (2) + +267708Bob StewartTuba player, born 3 February 1945 in Sioux Falls, SDNeeds Votehttps://en.wikipedia.org/wiki/Bob_Stewart_(musician)http://www.bobstewartuba.comhttps://bobstewart.bandcamp.com/https://bobstewarttuba.bandcamp.com/B. StewartBob StuartRobert StewartStewartGil Evans And His OrchestraGlobe Unity OrchestraThe Jazz Composer's OrchestraThe Carla Bley BandDavid Murray Big BandThe Herb Robertson Brass EnsembleJohn Carter QuintetLester Bowie's Brass FantasyThe Brass CompanyJosh Roseman UnitSam Rivers' Rivbea All-star OrchestraGunter Hampel New York OrchestraArthur Blythe TrioHoward Johnson & GravityBob Stewart - First Line BandThe Bob Belden EnsembleGary Smulyan And BrassRAI Big Band & SoloistsThe So What Brass Quintet + +267717Jeff HamiltonJeff HamiltonAmerican jazz drummer, born 4 August 1953 in Richmond, Indiana, USA + + +Needs Votehttp://www.hamiltonjazz.com/https://en.wikipedia.org/wiki/Jeff_Hamilton_(drummer)HamiltonJ. HamiltonJ.HamiltonJeff "Hammer" HamiltonJeffrey HamiltonWoody Herman And His OrchestraRay Brown TrioThe Monty Alexander TrioLA4Toshiko Akiyoshi TrioThe Gene Harris QuartetThe Gene Harris All Star Big BandThe Clayton-Hamilton Jazz OrchestraThe Woody Herman Big BandBud Shank QuartetThe Bill Holman BandJeff Hamilton TrioThe Philip Morris SuperbandPeter Beets TrioThe Jeff Hamilton QuintetSnooky Young SextetWoody Herman And The Thundering HerdBond (13)Bob Summers QuintetThe Yeti ChasersThe Anthony Wilson TrioThe Clayton BrothersMagnolia Jazz BandVic Lewis West Coast All-StarsTom Talbert SeptetOliver Pospiech's Small Big BandLarry Fuller TrioMike Jones TrioPete Deluke QuartetBrian Piper TrioAtsuko Hashimoto Organ TrioThe Nicola Sabato QuartetThe Bruce Hamada Trio + +267764Bernard PartridgeClassical violinist. +Former member of the [a=London Symphony Orchestra] (1969-1972). Leader of the [a=New Philharmonia Orchestra].Needs Votehttps://www.the-paulmccartney-project.com/artist/bernard-partridge/London Symphony OrchestraNew Philharmonia OrchestraThe Starcoast Orchestra + +267765Jack RothsteinJack Laroque RothsteinBorn December 15, 1925 in Warszawa, died November 16, 2001 in London. Polish-born violinist and conductor. He lived most of his life in England. +Needs Votehttps://en.wikipedia.org/wiki/Jack_Rothsteinhttps://web.archive.org/web/20230416232103/https://www.musiciansgallery.com/tribute/rothstein/jack.htmlhttps://web.archive.org/web/20201009002816/https://www2.bfi.org.uk/films-tv-people/4ce2ba824411aJ. RothsteinJack HolsteinJack RocksteinJack RosteinJohn RosteinJohn RothsteinRothstein J.Rothstein. JThe Chitinous EnsembleThe London Chamber OrchestraThe Lansdowne String QuartetMike Batt OrchestraBath Festival Orchestra + +267766Adrian BrettBritish flautist, born 1945 in Deal, Kent.Needs Votehttps://en.wikipedia.org/wiki/Adrian_Bretthttps://www.imdb.com/name/nm2271288/bio/?ref_=nm_ov_bio_smA. BrettEnglish Chamber Orchestra + +267767Keith HarveyKeith HarveyCellist from the UK, born April 13, 1938: died April 28, 2017.Needs Votehttp://www.cello.org/Newsletter/Articles/keithharvey/keithharvey.htmK. HarveyLondon Philharmonic OrchestraEnglish Chamber OrchestraDaniele Patucchi OrchestraThe Gabrieli String QuartetThe London Cello Sound + +267768Jack BrymerJohn Alexander BrymerBritish clarinettist, director, Professor of Clarinet, and author. Born 27 January 1915 in South Shields, County Durham, England, UK - Died 15 September 2003 in Redhill, Surrey, England, UK. The Times called him "the leading clarinettist of his generation, perhaps of the century". +Former Co-Principal Clarinet with the [a=Royal Philharmonic Orchestra] (1947-1963), the [a=BBC Symphony Orchestra] (1963-1971), and Principal Clarinet with the [a=London Symphony Orchestra] (1972-1988). At various times in his career, he was a founder member of chamber ensembles, such as [a=The Wigmore Ensemble], the [a=Prometheus Ensemble], and the [a=London Baroque Ensemble]. Former member of the [b]Tuckwell Wind Quartet[/b] and the [b]Robles Ensemble[/b]. He was Director of the [a=London Wind Soloists]. Professor of Clarinet at the [l527847] (1950-1958), the Royal Military School of Music at Kneller Hall (1969–73), and [l305416] (1981-1983). His last public concert was on 18 July 1997 at the [l=Wigmore Hall] in London. He published two volumes of memoirs and a book about the clarinet. +He was made an Officer (OBE) - Order of the British Empire. +Uncle of [a=Alan Hacker].Needs Votehttps://www.facebook.com/groups/188757141168376/https://www.youtube.com/channel/UC0VGMi6XWoimMDbOwUGs_DQhttps://soundcloud.com/jack-brymerhttps://en.wikipedia.org/wiki/Jack_Brymerhttps://musicianbio.org/jack-brymer/https://www.famousbirthdays.com/people/jack-brymer.htmlhttps://www.theguardian.com/news/2003/sep/18/guardianobituaries.artsobituariesBrymerJ. BrymerJack Brynerジャック・ブライマーLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsPrometheus EnsembleLondon Wind SoloistsRobert Farnon And His OrchestraLondon Baroque EnsembleLondon Brass SolistsThe Wigmore Ensemble + +267854Bob SegerRobert Clark SegerBob Seger (born May 6, 1945, Dearborn, Michigan, USA) is an American singer-songwriter, guitarist, pianist and producer. +Inducted into Rock And Roll Hall of Fame in 2004 (Performer). +Inducted into Songwriters Hall of Fame in 2012.Needs Votehttps://www.bobseger.com/https://www.facebook.com/bobsegerhttps://www.instagram.com/bobseger/https://twitter.com/bobsegerhttps://myspace.com/bobsegerhttps://en.wikipedia.org/wiki/Bob_Segerhttps://www.imdb.com/name/nm1169432/https://repertoire.bmi.com/Search/Search?SearchForm.View_Count=100&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Seger+Robert+Clark&SearchForm.Search_Type=allhttps://www.ascap.com/repertory#ace/writer/35177881/SEGER%20ROBERT%20CLARKhttps://www.allmusic.com/artist/bob-seger-mn0000072041B SegarB SegerB. SeegerB. SegarB. SegerB. SeigerB. SergerB. SgereB.SegerB.SergerBe SegerBobBob Muthafuckin SegerBob SecerBob SeegerBob SegarBob Seger And The Silver Bullet BandBob SergerBob SeverR. SeegerR. SegerRober Clark SegerRobert SegerSagerSeagerSeegerSegarSegerseegerБ. СигерСеггерBob Seger And The Silver Bullet BandBob Seger SystemThe Mushrooms (2)Bob Seger And The Last HeardDoug Brown And The OmensThe Beach Bums (3) + +267899Paul RiserPaul Leonidas RiserOne of the most famous and productive top arrangers in soul music, born August 15, 1936 in Detroit, Michigan. +Started as a session trombonist at [l1723].Correcthttp://en.wikipedia.org/wiki/Paul_RiserP RiserP. RiserP. RizerP., RiserP.RiserPail RiserPaul L. RiserPaul RiderPaul RisenPaul RizerPaul RyserPaul VisserPsul RiserRisenRiserRisner + +268095Chris LaurenceChristopher LaurenceBritish jazz double bass player who has maintained a dual career in both jazz and classical music. Born January 06, 1949 in London, England. +He studied at [l305416]. In the classical world he was Principal Double Bass with [a=The Academy Of St. Martin-in-the-Fields] orchestra until 1995. Chris worked (among others) with [a=John Surman], [a=Kenny Wheeler], [a=John Taylor (2)], [a=Frank Ricotti], [a=Alan Skidmore], [a110863], [a=Michael Nyman], [a=Peter Gabriel], [a=Gil Evans], [a=Elton John], [a=Joni Mitchell]. +He recently formed the "[b]Chris Laurence Quartet[/b]" and released his debut album "New View".Needs Votehttps://en.wikipedia.org/wiki/Chris_Laurencehttps://musicianbio.org/chris-laurence/https://boynemusicfestival.com/christopher-laurence-double-basshttps://chadlingtonfestival.org.uk/artists/chris-laurence/?doing_wp_cron=1619605379.6220209598541259765625https://www.talkbass.com/threads/chris-laurence.676081/https://web.archive.org/web/20161221023719/http://bashorecords.com/laurence.htmhttps://www.radioswissjazz.ch/en/music-database/musician/67186a979f2942f791812cff40b084c60034e/biographyhttps://www.the-paulmccartney-project.com/artist/chris-laurence/https://www.the-paulmccartney-project.com/artist/chris-lawrence/https://www.imdb.com/name/nm0491098/https://www2.bfi.org.uk/films-tv-people/4ce2bbe3aad81C. LaurenceChris LauwenceChris LawrenceChristopher LaurenceLaurenceLawrenceThe London Session OrchestraMichael Garrick TrioThe Alan Skidmore QuintetThe Mike Westbrook Concert BandMike Westbrook OrchestraThe Chitinous EnsembleJohn Surman QuartetHarry Beckett's S & R Powerhouse SectionsThe London Telefilmonic OrchestraLondon Metropolitan OrchestraThe Michael Nyman BandCoe, Oxley & Co.The Michael Nyman OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Festival OrchestraMorning Glory (2)The New SymphoniaThe Taliesin OrchestraLondon Jazz Composers OrchestraJack Sharpe Big BandThe London Scratch OrchestraJohn Taylor TrioThe Frank Ricotti All StarsGuy Barker QuintetElton Dean QuartetRobert Farnon And His OrchestraThe New Blood OrchestraAspects Of ParagonneTony Coe QuartetKenny Wheeler Big BandSonia Slany String And Wind EnsembleSteve Beresford His Piano & OrchestraFrank Ricotti QuartetThe Bryan Ferry OrchestraJoe Douglas TrioMarylebone CamerataJohn Taylor SextetBabelfish (4)Orchestre de GrandeurGeoff Eales TrioThe Jazz SevenDave Saul QuintetChris Laurence QuartetThe John Horler QuartetThe Tony Coe EnsembleNeil Ardley GroupTony Coe's Axel + +268137Barrett StrongBarrett StrongAmerican singer and songwriter. +Born February 5, 1941 in West Point, Mississippi, USA. +Died January 28, 2023 in San Diego, California, USA. +Strong was the first artist to record a hit record for Motown, though he is best known for his successful songwriting collaboration with [a=Norman Whitfield], which produced hits like "I Heard It Through the Grapevine", "Too Busy Thinking About My Baby", "Papa Was a Rolling Stone", "Ball of Confusion", and "War". Barrett Strong was inducted into the Songwriters Hall of Fame in 2004.Correcthttp://en.wikipedia.org/wiki/Barrett_Stronghttps://www.imdb.com/name/nm1053309/http://www.myspace.com/barrettstronghttp://www.whosampled.com/Barrett-Strong/http://marvellousmotown.com/motown-artists/barrett-stronghttps://www.songhall.org/profile/Barrett_StrongB StrongB, StrongB. Barrett StrongB. Barrett-StrongB. SongB. StrangB. StrangeB. StrongB. XStrongB.StrongBareett StrongBarett StrongBarrat StrongBarratt StrongBarretBarret StrongBarrettBarrett - StrongBarrett StrungBarrett-StrongBarrett/StrongBarrettStrongBarry StrongD. StrongR. StrongS. BarrettS. StrongS.BarrettStevensStoneStoongStromStronfStrongStrong / BarrettStrong, BarretStrong, BarrettStrougWhitfield-Strong + +268168Simon HaleSimon Benjamin HaleBritish composer, orchestrator, conductor, arranger, keyboardist and pianist born in 1964 in Birmingham, Great Britain and grew up there and South Manchester until moving to London.Needs Votehttps://web.archive.org/web/20120207022937/http://www.simonhale.co.uk/Welcome.htmlhttps://www.linkedin.com/in/simon-hale-73a09314/https://twitter.com/simonhaleukhttps://myspace.com/simonhalehttps://en.wikipedia.org/wiki/Simon_Halehttps://www.imdb.com/name/nm0355009/HaleS HaleS. HaleS. HoleS.HaleSimon B HaleSimon B. HaleSimon C. HaleSimon WalesSimone HaleWhat's WhatSax AppealHope Collective7th Heaven (6)System X (12) + +268217Phil UpchurchPhillip UpchurchAmerican soul / rhythm 'n' blues guitarist, born 19 July 1941 in Chicago, USA, died November 23, 2025, in Los Angeles, California. Husband of [a7830478]. + +A prominent member of the Chicago Music scene since the early 50s; a well respected teacher and instructor in addition to his performing reputation. His main body of work can be heard on projects by [a=George Benson], [url=http://www.discogs.com/artist/Bobby+Bland?anv=Bobby+Blue+Bland]Bobby Blue Bland[/url], [a=Natalie Cole], [a=Aretha Franklin], [a=Kenny G (2)], [a=Buddy Guy], [a=John Lee Hooker], [a=Howlin' Wolf], [a=Quincy Jones], [a=Chaka Khan], [a=Earl Klugh], [a=Curtis Mayfield], [a=Muddy Waters], and countless sound tracks and other projects.Needs Votehttps://sonyamaddox.com/philupchurch/https://www.facebook.com/profile.php?id=100064175826965&fref=tshttps://en.wikipedia.org/wiki/Phil_Upchurchhttps://www.philupchurch.com/P UpchurchP. UpchurchPaul UpchurchPhilPhil UpChurchPhil UpcharchPhil Upchurch Sr.Phil Upchurch, Sr.Philip R. UpchurchPhilip UpchurchPhilip Upchurch Sr.Philip Upchurch, Sr.Phillip UpchurchUpchurchRotary ConnectionThe Ramsey Lewis TrioThe Soulful StringsWoody Herman And His OrchestraJu-Par Universal OrchestraPhil Upchurch ComboElectronic Concept OrchestraThe Clinton AdministrationPhil Upchurch TrioL.A. Jazz QuintetThe Operation Breadbasket Orch. & ChoirWoody Herman And The Thundering HerdSpirit TravelerThe Bim Bam BoosPhil Upchurch & The Phil-harmonic OrchestraPhil Upchurch Et Son OrchestreKankawa B IIIRed Holloway QuintetThe Red Holloway/Clark Terry Sextet + +268271Mickey TuckerMichael B. TuckerAmerican jazz pianist, born April 28, 1941 - Durham, North Carolina, USANeeds VoteM. TuckerMichael TuckerMicky B. TuckerMicky TuckerTuckerArchie Shepp QuartetArt Blakey & The Jazz MessengersThe George Benson QuartetThe JazztetBilly Harper QuintetThe New Heritage Keyboard QuartetThe Frank Foster QuintetBill Hardman SextetJunior Cook QuartetFrank Foster And The Loud MinorityThe New JazztetTed Dunbar QuartetMickey Tucker QuartetTakashi Mizuhashi And His FriendsLouis Hayes SextetMickey Tucker TrioMickey Tucker SextetFrank Foster's Living Color – Twelve Shades Of Black + +268272Antonín DvořákAntonín Leopold DvořákCzech composer of romantic music (classicist-romantic synthesis). +Born September 8, 1841 in Nelahozeves, Austrian Empire, now Czech Republic, died May 1, 1904 in Prague, Austria-Hungary, now Czech Republic. +Father-in-law of [a=Josef Suk (2)]. +He employed the idioms of the folk music of Moravia and his native Bohemia. His works include symphonies, symphonic poems, concerti, choral works, operas and chamber music.Needs Votehttp://www.antonin-dvorak.cz/https://antonindvorak.cz/https://en.wikipedia.org/wiki/Anton%C3%ADn_Dvo%C5%99%C3%A1khttps://www.britannica.com/biography/Antonin-Dvorakhttps://www.famouscomposers.net/antonin-dvorakhttps://www.treccani.it/enciclopedia/antonin-dvorakhttps://adp.library.ucsb.edu/names/103102A DovrákA DvorakA DvorákA DvořákA. DovakA. DvofiákA. DvorakA. DvorjakA. DvorzakA. DvoràkA. DvorákA. DvoržakA. DvoržakasA. DvoržaksA. DvořakA. DvořácA. DvořákA. Dvořák "Litomyšl"A. DvoȓákA. DvórakA. DvórákA. DvôrákA. DworakA. DworzakA. DworzakaA.DvorakA.DvorjakA.DvořákA.DworzakA.ドヴォルザークA.ドヴォルジャークAnt. DvorakAnt. DvořákAnt. DvořákaAntnin DvorakAntoine DvorakAnton DvorakAnton DvoràkAnton DvorákAnton DvorâkAnton DvoržakAnton DvořakAnton DvořàkAnton DvořácAnton DvořákAnton DvòrakAnton DvôrakAnton DvôràkAnton DworakAntoni DvorakAntoni DworzakAntonin DovorakAntonin Dvo ákAntonin DvoarkAntonin DvorakAntonin DvorkAntonin DvorrákAntonin DvorzakAntonin DvorzákAntonin DvoràkAntonin Dvoràk "Largo"Antonin DvorákAntonin DvorâkAntonin DvoräkAntonin DvoržakAntonin DvoŕàkAntonin DvořakAntonin DvořákAntonin Dvořák:Antonin DvórakAntonin DvǒrákAntonin DworakAntonin DworzakAntonine DvorakAntonio DvorakAntonio DvorákAntonjin DvoržakAntonjín DvoržakAntonon DvorákAntonon DvořákAntonìn DvořákAntonín DouřákAntonín DvorakAntonín DvorjakAntonín DvoràkAntonín DvorákAntonín Dvořa kAntonín DvořakAntonín DvórakAntonín DvöřakAntonín DvǒrákAntonín Leopold DvořákAntonín Leopold DvořáкAntonío DvořakAntón DvorakAutonin DvorakDavorjockDevorakDovorakDovrakDovřákDr. A. DvořákDr. Ant. DvořákDr. Antonín DvořákDrovakDvolakDvoracDvorakDvorak A.Dvorak AntoninDvorak, A.Dvorak, AntonDvorak, AntoninDvorgacDvorgakDvorjakDvorkDvorzakDvoràkDvorákDvorák A.DvoržakDvoržakasDvor̂ákDvořakDvořàkDvořákDvořák AntonínDvořák'Dvořák, AntoninDvořák’sDvoȓákDvórakDvórákDvôrakDvôrákDvǒrákDvǒŕakDvȏrákDvοřákDworakDworzakEdith Peinemann, violinedvorakΑντονίν ΝτβόρζακΝτβόρζακА. DvorakА. DvořákА. ДворжакА.ДворжакАнтонин ДворжакАнтоњин ДворжакДворжакアントニン・ドヴォルザークアントニン・ドヴォルザーク = Antonín Dvořákアントニン・ドヴォルザークアントニーン・ドヴォルジャークドボルザークドヴォル ジャックドヴォルザークドヴォルジャックドヴォルジャーク安东宁·利奥波德·德沃夏克德伏乍克德伏扎克德弗乍克德沃夏克 + +268297Luis ConteLuis Christobal ConteAmerican percussionist, born 16 November 1954 in Santiago, CubaNeeds Votehttps://www.luisconte.com/https://en.wikipedia.org/wiki/Luis_Contehttps://myspace.com/luisconte"Jazzman" Luis Conte'Bombo Le Guero' Luis ConteConteConte, LuisJames BurneyL. ConteLCLius ConteLois ConteLouie ConteLouis C. ConteLouis ConteLouis ContiLouis ContéLouise ContiLuisLuis C. ConteLuis Conte'Luis ContiLuis ContéLuis LonteLuiz ConteLuís ConteTotoThe Phil Collins Big BandJazz On The Latin Side AllstarsLos Angeles Philharmonic OrchestraThe Clayton-Hamilton Jazz OrchestraCuba L.A.ToluThe Richard Smith UnitThe Bob Florence Limited EditionDemetri Pagalidis & His Big Band SilverwareThe H2 Big BandPangea (27)Barry Coates & The HatsThe Roots Band (2) + +268336Warren SmithWarren Ingle Smith, Jr.[b]For the American 50's/60's rockabilly/country guitarist/singer use [a682805].[/b] + +American drummer, percussionist and composer, born 14 May 1934 in Chicago, Illinois, USA + +Multi-talented jazz musician, based in NYC. Known for his work with many of the greats, including [a=Miles Davis] (as vibraphonist), [a=Gil Evans], [a=Max Roach], et al. +Also taught in the New York City public school system, and for a period ran a loft space for aspiring musicians and artists to use.Needs Votehttps://www.allmusic.com/artist/mn0001792309https://musicians.allaboutjazz.com/warrensmithhttps://en.wikipedia.org/wiki/Warren_Smith_(jazz_percussionist)https://musicbrainz.org/artist/534bbfeb-96b7-4e6b-ae0a-ca10cda688ceSmithW. SmithWallen SmithWarrenWarren I. SmithWarren Smith JnrWarren Smith Jr.Warren Smith jr.Warren Smith, Jr.Warren T. SmithWarren T. Smith, JrWarren T. Smith, Jr.Warren T.Smith Jnr.ウーレン-スミスGil Evans And His OrchestraThe Tuba TrioThe Celestrial Communication OrchestraM'Boom Re:percussion EnsembleSy Oliver And His OrchestraBill Cole's Untempered EnsembleRob Brown TrioThe Muhal Richard Abrams OrchestraMuhal Richard Abrams OctetJulius Hemphill QuartetKalaparush McIntyre QuartetSteve Swell - David Taylor QuartetJames Finn TrioGrover Mitchell And His OrchestraThe Giuseppi Logan QuintetMarty Ehrlich Large EnsembleAndrew Lamb TrioOld Dog (3)JC Hopkins Biggish BandBones & TonesDavid S. Ware New QuartetBlue Reality Quartet! + +268516Tom KeaneTom P. KeaneKeyboardist, arranger, producer, songwriter, longime Los Angeles session musician, born 13. March 1964. Brother of [a=John M. Keane], son of [a=Bob Keene] Japanese as トム・キーン +[b]Also please check [a=Tom Keene (2)], a keyboardist, guitarist, arranger, producer in Gospel/Religious music, also Los Angeles, CA-based [/b] + +Japanese Rendition: トム・P・キーンNeeds Votehttps://www.linkedin.com/in/tom-keane-5869241/http://www.bluedesert.dk/tomkeane.htmlhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=181251&subid=0https://www.imdb.com/name/nm1047980/bioKaneKeaneT KeaneT. KeanT. KeaneT.KeaneT.P. KeaneTom KeanTom KeanneTom KeansTom KeenTom KeeneTom KeneTom P. KeaneTommy Keaneトム・キーンTK (8)Keane BrothersKeane (2)D.A.M. (6) + +268548Butch MilesCharles J. Thornton, Jr.(Born: 4 July 1944 in Ironton, Ohio, USA – Died: 2 February 2023) was an American jazz drummer. He played with, among others, the Count Basie Orchestra, Dave Brubeck, Ella Fitzgerald, Sammy Davis Jr., Mel Tormé, Woody Herman, Benny Goodman, Rosemary Clooney, Frank Sinatra, Lena Horne, and Tony Bennett. + +Inducted, 2011, West Virginia Music Hall of Fame. +Needs Votehttp://www.butchmiles.com/https://en.wikipedia.org/wiki/Butch_Mileshttps://www.imdb.com/name/nm6403716/https://www.wvmusichalloffame.com/hof_mcclain.htmlB. MilesButchCharles "Butch" MilesCharles Butch MilesMilesブッチ・マイルスCount Basie OrchestraThe Iris Bell TrioThe Scott Hamilton QuintetThe Phil Wilson SextetSal Salvador QuintetBob Wilber And The Bechet LegacyThe George Masso SextetThe John Bunch TrioThe George Masso QuintetThe Butch Miles SextetDanny Moss QuartetCarmen Leggio QuartetPhil Bodner & CompanyButch Miles' Jazz ExpressThe Iris Bell AdventureThe Buck Clayton LegacyButch Miles And FriendsThe Dave McKenna Swing SixRonny Whyte TrioButch Miles SeptetWild Bill Davis Super TrioThe Butch Miles OctetTerry Gibbs / Buddy DeFranco / Herb Ellis Sextet + +268553Willie RuffWillie Henry Ruff JrAmerican horn player, bassist, and composer, born 1 September 1931 in Sheffield, Alabama, USA, died 24 December 2023Needs Votehttp://www.willieruff.com/index.htmlhttps://en.wikipedia.org/wiki/Willie_Ruffhttps://www.imdb.com/name/nm4107801/M. RuffRuffW. RuffW.RuffWilly RuffGil Evans And His OrchestraThe Mitchell-Ruff DuoThe Jazz Composer's OrchestraPisano & RuffOliver Nelson And His OrchestraMilt Jackson OrchestraMilt Jackson And Big BrassThe Mitchell-Ruff TrioMiles Davis + 19Lionel Hampton & His Big BandThe Blue Mitchell OrchestraAll Star Big Band + +268577Richard LandrumPercussionist, born July 18, 1939 in New York. Died April 29th, 2002Needs VotePablo LandrumPablo LandrumR. LandrumRichard "Pablo LandrumRichard "Pablo" LandrumRichard "Pabro" LandrumRichard 'Pablo' LandrumRichard (Pablo) LandrumRichard LandrunRichard LaundrumRichard Pablo LandrumRichie "Pablo" LandrumRichie 'Pablo' LandrumRichie LandrumRichie Pablo LandrumRichy LandrumPucho & His Latin Soul BrothersArt Blakey & The Jazz Messengers + +268583Boz ScaggsWilliam Royce ScaggsAmerican singer, songwriter and guitarist, born June 8, 1944 in Canton, Ohio, USA. +Playing guitar since the age of 12, & a friend of [a=Steve Miller]'s from early on, Scaggs was busy musically in America & abroad. +Traveling to Sweden in the mid-sixties, he had his first solo release [r=2428613]. +Enjoying his first serious fame with the [a=Steve Miller Band], he had his greatest commercial success in 1976 with the critically acclaimed album [m=108242]. Father of [a2937550].Needs Votehttps://www.bozscaggs.com/https://www.facebook.com/BozScaggsMusichttps://www.instagram.com/bozscaggsmusic/https://www.youtube.com/bozscaggsmusichttps://twitter.com/bozscaggsmusichttps://en.wikipedia.org/wiki/Boz_Scaggshttps://myspace.com/bozscaggshttps://www.allmusic.com/artist/boz-scaggs-mn0000096964B ScaggsB. S.B. SaggsB. ScaggB. ScaggsB. ScraggsB. ScuggsB. SeaggsB.ScaggsB.スキャッグスBob SaggsBob ScaggsBos ScaggsBox ScaggsBozBoz ScaggaBoz ScaggzBoz SgaggsBoz SkaggsBoz SoaggsBoz StaggsBozz ScaggsC. ScaggsDuane AllmanRoyceRoyce "Boz" ScaggsScaggsScaggs BozScaggs, BozScraggsSoaggsThe Horns & B. S.W ScaggsW. (Boz) SkaggsW. R. ScaggsW. R. ScoggsW. R. Skaggs.W. ScaggsW.R. ScaggsWR ScaggsWilliam "Boz" ScaggsWilliam R Royce ScaggsWilliam R ScaggsWilliam R. Royce ScaggsWilliam R. ScaggsWilliam Royce ScaggsWilliam Royce SkaggsWilliam Scaggsボズ・スキャッグス伯茲史蓋茲Steve Miller BandThe New York Rock And Soul RevueEarthmenBoz Scaggs & BandThe Merrymen (2)The Dukes Of September + +268733Björn UlvaeusBjörn Kristian Ulvaeus[b]If you are making an addition where he is credited together with Benny Andersson please credit as [a=Björn Ulvaeus & Benny Andersson] (unless they are credited together with someone else, in which case separate credits should be used)[/b]. + +Swedish musician (guitarist), one of the two main songwriters and producers in [a=ABBA], (credited as [b]Björn Ulvæus[/b]), born April 25, 1945, Gothenburg. + +He and [a=Benny Andersson] were house producers for [l=Polar] (1971-1974). Co-founder of [l=Union Songs AB]. From April 1975, shareholder of [l=Polar Music AB] (initially 25% and subsequently 12,5%). By the end of 1984 he sold his shares in the record company. +On 6 July 1971, Ulvaeus married [a=Agnetha Fältskog]; the marriage resulted in two children: [a=Linda Ulvaeus] (born 23 February 1973), and [url=https://www.discogs.com/artist/1176773-Christian-Ulvaeus]Peter Christian Ulvaeus[/url] (born 4 December 1977). The couple decided to separate in late 1978, and their divorce was finalized in July 1980.Needs Votehttps://www.icethesite.com/https://www.youtube.com/channel/UCww-GS0Kna8l00rCMcRffNghttps://soundcloud.com/bjorn-ulvaeus-officialhttps://abbasite.com/people/bjorn-ulvaeus/http://www.abbaomnibus.net/facts/bjorn.htmhttps://en.wikipedia.org/wiki/Bj%C3%B6rn_Ulvaeushttps://sv.wikipedia.org/wiki/Bj%C3%B6rn_Ulvaeushttps://www.feenotes.com/database/artists/ulvaeus-bjorn-cristian-25th-april-1945-present/https://musicianbio.org/bjorn-ulvaeus/https://www.famousbirthdays.com/people/bjorn-ulvaeus.htmlhttps://www.geni.com/people/Bj%C3%B6rn-Ulvaeus/6000000007353330285https://www.astro.com/astro-databank/Ulvaeus,_Bj%C3%B6rn_(Abba)AlvaensAlvaeusBB . UlvaeusB UlvaesB UlvaeusB UlveausB, UlvaeusB. AlvaeusB. AlveiusB. K. UlvaeusB. OlvaeusB. UIvaeusB. UlaveusB. UluvaeusB. UlvacusB. UlvaeB. UlvaeauB. UlvaensB. UlvaeosB. UlvaesB. UlvaeufB. UlvaeusB. UlvauesB. UlvausB. UlveausB. UlveusB. UlvoesB. UlvãeusB. UlvæusB. UlwaeusB. UsvaeusB. UvaeusB. VluaeusB. ウルバエウスB.J. UlvaeusB.K. UlvaeusB.UlvaeusB.UlveausB.UlveusB.UlvæusBenny UlvaeusBjoem K UlvaeusBjoern K UlvaeusBjoern K. UlvaeusBjoern Kristian UlvaeusBjoern UlvaeusBjornBjorn - UlvaeusBjorn K. UlvaeusBjorn UlavauesBjorn UlvaesBjorn UlvaeusBjorn UlvauesBjorn VivaeussBjorn/UlvaeusBjöern UlvaeusBjörnBjörn K UlvaeusBjörn UlraeusBjörn UluaeusBjörn UlvacusBjörn UlvaensBjörn UlvaneusBjörn UlveausBjörn UlveusBjörn UlvæusBjörn-UlvaeusBjørn UlvaeusBojern K. UlvaeusBulvaeusE. UlvaeusUlaveusUlbaeusUleaeusUlearusUlvacusUlvaensUlvaesUlvaes B.UlvaeunsUlvaeusUlvaeus B.Ulvaeus Bjoern KUlvaeus BjörnUlvaeus, Bjoer K.Ulvaeus, BjoernUlvaeus, BjornUlvaeuxUlvaevusUlvasusUlvauesUlveanusUlveasUlveausUlveusUlväusUlvæusVieueusWivauesÜlvæusБ. УлвеусБ. УльвеусБ. УльвиусБьорн УльвеусБьёрн УльвеусУльвеусABBAHootenanny SingersThe Three BoysBjörn & Benny, Agnetha & Anni-FridBjörn Ulvaeus & Benny AnderssonThe Northern Lights + +268983John EngelsDutch jazz drummer, born 13 May 1935 in Groningen, The NetherlandsNeeds Votehttps://nl.wikipedia.org/wiki/John_EngelsEngelsJ. EngelsJan EngelsJan Engels Jr.John Engels Jr.John Engels, Jr.Johnny EngelsJohnny Engels Jr.Johny EngelsArnold Klos TrioChet Baker QuartetBen Webster QuartetJack Van Poll Tree-OhLouis Van Dyke TrioHot Club 69The Amstel OctetThe Diamond FiveWoordenJimmy Knepper SextetTony Vos QuartetThe Theo Loevendie ConsortEugen Cicero TrioGijs Hendriks Construction CompanyPiet Noordijk QuartetEddy Engels QuintetFred Leeflang QuartetPere Soto & Bill Gerhardt QuartetThe Pia Beck TrioArnett Cobb QuartetThe Theo Loevendie ThreeThe Nelson Williams QuartetKlaus Ignatzek TrioSlide Hampton QuintetThe Rhythme All StarsBoy Edgar Big BandThe Jacques Schols QuartetJVD4Barnicle Bill TrioErik Doelman 7tetDe VARAJAZZ All StarsPiet Noordijk QuintetHans Dulfer Herbert Noord 4-tet + +268984Cees SlingerCornelis Ernst Slinger Cornelis Ernst (Cees) Slinger (Alkmaar, 19 May 1929 - The Hague, 29 September 2007) was a Dutch jazz pianist.Needs Votehttp://www.ceesslinger.nl/https://nl.wikipedia.org/wiki/Cees_SlingerSlingerBen Webster QuartetThe Diamond FiveDexter Gordon QuartetPiet Noordijk QuartetThe Cees Slinger OctetSlide Hampton QuintetJoe Van Enkhuizen QuartetMartien Beenen And The OrchestraFerdinand Povel QuintetThe Jacques Schols QuartetSoesja Citroen BandCees Slinger's Buddies In Soul + +268985Jacques ScholsDutch jazz bassist (born in Delft, June 21, 1935 - died in Epe, December 30, 2016 at the age of 81). Mostly hard bop. Famous for being part of [a=Eric Dolphy]'s Last Date record (1964). Since 1979 leader of dance orchestra The RamblersNeeds Votehttps://nl.wikipedia.org/wiki/Jacques_ScholsJac. ScholsJacq. ScholsJacques ScholzJaques ScholsJaques ScholzScholsジャック・ショルThe RamblersLouis Van Dyke TrioThe Diamond FiveEric Dolphy QuartetDexter Gordon QuartetThe Herman Schoonderwalt SeptetArnett Cobb QuartetThe Cees Slinger OctetTed Brown TrioSlide Hampton QuintetFerdinand Povel QuintetThe Jacques Schols QuartetFrank Giebels / Chiz Harris Trio + +268986Frans WieringaDutch jazz pianist from the Groningen area, The NetherlandsNeeds VoteF. WieringaWieringaFrans WiringerThe Frans Wieringa TrioThe Ben Webster QuintetThe Eminent Swing CombinationThe Dutch Jazz Trio + +268989Donald McKyreJazz drummerCorrectDonald Mc.KyreThe Ben Webster Quintet + +269081Geoff Love & His OrchestraCorrectGeoff LOve OrchGeoff LoveGeoff Love & His Concert OrchestraGeoff Love & His Orch.Geoff Love & Orch.Geoff Love & OrchestraGeoff Love & Son OrchestreGeoff Love And His Concert OrchestraGeoff Love And His MusicGeoff Love And His Orch.Geoff Love And His OrchestrGeoff Love And His OrchestraGeoff Love And His Orchestra In ConcertGeoff Love And His Orchestra With Childrens ChorusGeoff Love And OrchestraGeoff Love Con Su OrquestaGeoff Love E La Sua Concert OrchestraGeoff Love E La Sua OrchestraGeoff Love E Sua OrquestrGeoff Love E Sua OrquestraGeoff Love Et Son Grand OrchestreGeoff Love Et Son OrchestraGeoff Love Et Son OrchestreGeoff Love MusicGeoff Love Og Hans Ork.Geoff Love OrchGeoff Love OrchestraGeoff Love Und Sein Grosses Film-OrchesterGeoff Love Und Sein Grosses FilmorchesterGeoff Love Und Sein OrchesterGeoff Love Y OrquestaGeoff Love Y Su OrquestaGeoff Love a/h OrchestraGeoff Love and His OrchestraGeoff Love and his OrchestraGeoff Love y Su OrquestaGeoff Love y sus Rag PickersGeoff Love's MusicGeoff Love's Orch.Geoff Love's OrchestraGeoff Love's OrkesterGoeff Love & His Concert OrchestraGoeff Love And His OrchestraJeff Love & His OrchestraJeff Love And His OrchestraKoor En OrkestL'orchestre De Geoff LoveLa Orquesta De Geoff LoveLondon Geoff Love OrchestraManuel And His Music Of The MountainsOrchester Geoff LoveOrchestraOrchestra Conducted By Geoff LoveOrchestra Geoff LoveOrchestre Geoff LoveOrkestOrkest Geoff LoveOrquesta: GeoffloveThe Geoff Love Concert OrchestraThe Geoff Love OrchestraGeoff Love + +269357Buddy GrecoArmando GrecoBuddy Greco (born August 14, 1926, Philadelphia, Pennsylvania, USA - died January 10, 2017, Las Vegas, Nevada, USA) was an American singer and pianist. + +He began playing piano at the age of four and his first professional work was playing with [a254768]'s band. He performed in the jazz and pop genres. He recorded approximately 65 albums and 100 singles. He had a number of hits including "Oh Look A-There, Ain't She Pretty", "Around The World", as well as his most successful single "The Lady Is A Tramp". His most popular albums were "On Stage" and "Buddy's Back in Town", both recorded on Columbia. He also had an active concert career playing in symphony halls, theatres, nightclubs, and Las Vegas showrooms (in the 1960's he made appearances with [a898238]). On screen, he played the role of nightclub singer, "Lucky" in the 1969 film, [i]The Girl Who Knew Too Much[/i]. + +Buddy Greco married five times. His last wife was [a3791831] with whom he was married from 1995 until his death.Needs Votehttps://en.wikipedia.org/wiki/Buddy_Grecohttps://adp.library.ucsb.edu/names/203992B. GrecoB. GrécoB.GrecoBuddy - GrecoBuddy GreccoBuddy Greco & Friends...Buddy Greco & StringsBuddy Greco And StringsBuddy Greco With PianoBuddy GreeneBudy GrecoGrecoGreco Armand BuddyХ. ГрекоBenny Goodman SeptetThe ClarinadersBuddy Greco QuartetBuddy Greco and his Quintet + +269594Charlie BarnetCharles Daly BarnetAmerican jazz saxophonist, composer, and bandleader. +Born October 26, 1913 (New York, New York, United States) +Died September 04, 1991 (San Diego, California, United States) + +The height of Barnet's popularity came in 1940-1945, including charting fifteen songs on the U.S. charts, three of them top five songs: "Where Was I?" (1940, #1), "Pompton Turnpike" (#3, 1940), "I Hear a Rhapsody" (#2, 1941). +In 1947, Barnet started to switch from swing music to bebop. Barnet was one of the first bandleaders to integrate his band.Needs Votehttps://en.wikipedia.org/wiki/Charlie_Barnethttps://www.allmusic.com/artist/charlie-barnet-mn0000166767/biographyhttps://www.britannica.com/biography/Charlie-Barnethttps://www.imdb.com/name/nm0055825/bio/https://adp.library.ucsb.edu/names/103503BarnetBarnet C.Barnet, C.BarnettBennettC. BarhettC. BarnetC. BarnettC.BC.B.C.BarnetCarlos BarnetCh. BarnetCharles BarnetCharles BarnettCharley BarnetCharlie BarnatCharlie BarnerCharlie BarnesCharlie Barnet Plays Charlie BarnetCharlie BarnettCharlie BernetCharly BarnetCherlie BarnetDale BarnetDale BennettThe Charlie Barnet OrchestraБарнетDale BennettDuke Ellington And His OrchestraMetronome All StarsCharlie Barnet And His OrchestraCharlie Barnet And His Glen Island Casino OrchestraThe Charlie Barnet QuartetCharlie Barnet And His Rhythm MakersCharlie Barnet Glee ClubThe Charlie Barnet BandBarney Bigard And His JazzopatersThe Giants Of Jazz (3)Charlie Barnet SextetJam Session (10)Charlie Barnet And His Cherokees + +269597Artie ShawAvraham Ben-Yitzhak Arshawsky Artie Shaw (born May 23, 1910, New York City, New York, USA - died December 30, 2004, Thousand Oaks, California, USA) was an American clarinetist and bandleader. + +His first public appearance leading his own band was in his native New York City on the 24th of May, 1936 and he became one of the biggest names in jazz and popular music during the late 1930's and 1940's swing heyday. He last toured as a performing clarinetist with a big band in 1950, and made his last live / public performing appearances with a small group in 1954. Shaw made his last records of new material (on which he was merely conducting and not playing) in 1955. He spent much of the second half of his life devoted to writing and other pursuits, although he returned to the recording studios in 1968 to conduct an album of some of his biggest instrumental hits (from 1938-39) with a band that was filled by other notable veteran sidemen of the Swing Era, some of whom had worked for him three decades earlier and were at the time still working professional musicians in their prime. In 1983 he surprised the music world once again by assembling a 16-piece touring big band under the direction of clarinetist [a982466] and Shaw appeared with it through 1986-87, at which time he turned the band over to Johnson once and for all. The anti-nostalgic Shaw explicitly stated that he wanted this last band to focus on jazz and lesser known later works from 1944-45 and especially 1949, as well as new material written for the band, much of which was never recorded. He was married eight times including to [a2860190] (1940) and [a1481869] (1945-46).Needs Votehttps://en.wikipedia.org/wiki/Artie_Shawhttps://www.imdb.com/name/nm0789600/http://www.bigbandlibrary.com/bbn201708.pdfhttps://www.britannica.com/biography/Artie-Shawhttps://www.arts.gov/honors/jazz/artie-shawhttps://swingfever.it/artie-shaw/http://www.swingmusic.net/Shaw_Artie.htmlhttps://www.colorado.edu/amrc/glenn-miller-archives/gma-catalogs/artie-shawhttps://www.scaruffi.com/jazz/ashaw.htmlhttps://www.npr.org/2010/05/22/127036402/get-to-know-clarinetist-artie-shawhttps://adp.library.ucsb.edu/names/103638A ShawA. ShawA.S.A.ShowArt ShawArti ShawArtie ShowArtie SlowArtie-ShawArtis ŠouG. M. ShawShamShawShaw ArtieА. ШоуАрти ШоуBillie Holiday And Her OrchestraFrankie Trumbauer And His OrchestraWingy Manone & His OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraBunny Berigan And His BoysArtie Shaw And His New Music String QuartetBunny Berigan's Rhythm-MakersThe InstrumentalistsArtie Shaw And His Strings And WoodwindsArtie Shaw And His Rhythm MakersArt Shaw And His New MusicArtie Shaw And His Strings + +269598Red NicholsErnest Loring NicholsRed Nichols (born May 8, 1905, Ogden, Utah, USA – died June 28, 1965, Las Vegas, Nevada, USA) was an American jazz cornettist, composer, and jazz bandleader. + +Jazz legend Red Nichols was perhaps one of the most prolific recording artists in history. In the 1920s alone, the cornetist appeared on over 4,000 recordings, working with almost every important musician of his time. Though his style of playing was influenced by [a282067], Nichols was a better, more polished musician. His contribution to the early days of jazz cannot be overstated. Few artists can even come close to equaling his accomplishments. + +Nichols studied music under his father, a music professor at Weber College, and mastered a variety of instruments although he favored the cornet. As a teen he won a music scholarship to Culver Military Academy and played in its band before being expelled for smoking. Returning home to Utah, he worked in various pit orchestras, joining [a3609960] in 1922. Later that year he left Stillson for a Midwestern ensemble called the Syncopating Five, a seven-piece group that was later billed as the Royal Palms Orchestra, and toured across country with them. + +In 1923 Nichols settled in New York, where he met trombonist [a764782] who became a permanent fixture in Nichols' various groups. Nichols most famously recorded under the name [a317885], but the same group of musicians also recorded under many different pseudonyms, including the [a1348288], the Charleston Seven, the Arkansas Travelers, [a807449], [a=The Hottentots (3)], [a=The Tennessee Tooters], and [a=The Red Heads]. The list of top musicians who worked with Nichols is long. They include [a254768], [a299282], [a229639], [a77991], [a301372], [a261340], [a301357], [a269802], [a301370], and [a258689]. During the 1920's Nichols also led pit orchestras for two [a261293] Broadway shows, [i]Girl Crazy[/i] and [i]Strike Up the Band[/i], and played with a variety of other bandleaders, including [a299946], [a951061], Cass Hagan, [a1263865], [a4590747], [a925208], [a412673], and [a831739], as well as with the group the [a708256]. + +In the 1930's Nichols formed his own big band, which appeared on both [a575586]'s radio program and the Kellogg College Prom in addition to regular broadcasts from Cleveland's Golden Pheasant restaurant. Vocalists were Frances Stevens, [a1929471], and [a1929465]. Around 1940 Nichols took advantage of the swing craze and updated his sound, though he still featured a Dixieland base. The new band recorded for [l20955], with [a991517] and [a312971] providing vocals. The orchestra sounded promising when it debuted but soon floundered. By 1941 it featured an entirely new line-up, including a [a349517] sound-alike by the name of Penny Banks. After a few failed dates in Boston, Nichols gave up the band, selling it to [a1503689] in 1942. + +Nichols briefly found work as a member of the [a311060] before retiring to Hollywood, where he led several small groups throughout the rest of the 1940's and into the 1950's. The highly-fictional 1959 biographical film [i]The Five Pennies[/i], starring [a439536], brought renewed interest in his career and prompted Nichols to put together a new Five Pennies. +Needs Votehttp://www.parabrisas.com/d_nicholsr.phphttps://en.wikipedia.org/wiki/Red_Nicholshttps://www.imdb.com/name/nm0629702/biohttps://www.scaruffi.com/jazz/rnichols.htmlhttps://ia800704.us.archive.org/33/items/RecordResearch12/RR12.pdfhttps://adp.library.ucsb.edu/names/104163"Red Nichols""Red" Nicholds"Red" NicholsErnest Loring "Red" NicholsJ. P. "Red" Borland-Loring NicholsLoring "Red" NicholsLoring 'Red' NicholsLoring NicholsLoring Red NicholsLoring Red nicholsNicholaNichollsNicholsR. NicholsRed LoringRed NichlosRed NichollsRed Nichols And His New Orchestra With Vocal GroupRed Nichols And The Fabulous Selmer SoundLouis Armstrong And His OrchestraRed Nichols And His Five PenniesRed And His Big TenRed And Miff's StompersRed Nichols' StompersCalifornia RamblersMiff Mole's MolersJohn Scott Trotter And His OrchestraThe Charleston ChasersRed Nichols And His OrchestraRed Nichols' Louisiana Rhythm KingsThe Tennessee TootersThe HottentotsBailey's Lucky SevenRoss Gorman And His Earl Carroll OrchestraRed Nichols And His New OrchestraRed Nichols And The Dixie All StarsThe Arkansas TravellersThe Red HeadsFrank Farrell And His Greenwich Village Inn OrchestraGene Krupa ComboLoring “Red” Nichols And His OrchestraRed Nichols And His "Strike Up The Band" OrchestraThe Wabash Dance OrchestraRed Nichols And His BandRed Sanders & His Orch.Red Nichols And The Arkansas TravellersThe Wolverines (5) + +269601Bunny BeriganRoland Bernard BeriganAmerican jazz trumpeter, singer and bandleader from the swing era. + +Born 2 November 1908 in Hilbert, Wisconsin. +Died 2 June 1942 in New York City, New York. + +His 1937 recording "I Can't Get Started" was inducted into the Grammy Hall of Fame in 1975. + +Needs Votehttps://en.wikipedia.org/wiki/Bunny_Beriganhttps://www.allmusic.com/artist/bunny-berigan-mn0000639789/biographyhttps://wikimili.com/en/Bunny_Beriganhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/353004/Berigan_Bunnyhttps://adp.library.ucsb.edu/names/353004https://adp.library.ucsb.edu/names/103346B. BeriganB.B.BBBenny BeriganBeriganBernard "Bunny" BeriganBunny Berigan (BB)Bunny BeriganBeriganBunny BerigenBunny BerigmanBunny BerigunBunny BerriganLarry ClintonRowland 'Bunny' Beriganバニー・ベリガンTommy Dorsey And His OrchestraBunny Berigan & His OrchestraMetronome All StarsBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraR.C.A. Victor All-StarsGlenn Miller And His OrchestraHal Kemp And His OrchestraBunny Berigan And His BoysTommy Dorsey And His SentimentalistsBenny Goodman And His OrchestraThe Dorsey Brothers OrchestraBunny Berigan And His Blue BoysAdrian Rollini And His OrchestraBud Freeman And His Windy City FiveJam Session At VictorGene Gifford And His OrchestraAll Star Band (4)Red Norvo & His Swing OctetMildred Bailey And Her Alley CatsBunny Berigan's Rhythm-MakersBunny Berigan And His MenThe InstrumentalistsRed McKenzie And His Rhythm KingsBenny Goodman And HIS All StarsJam Session All-Stars + +269603Wingy ManoneJoseph Matthews MannoneAmerican jazz trumpeter, composer, singer, and bandleader. +Born 13 February 1900 in New Orleans, Louisiana, USA. +Died 9 July 1982 in Las Vegas, Nevada, USA (age of 82). +Manone lost his right arm in a streetcar accident when he was ten years old. He wore a prosthetic arm while on stage performing.Needs Votehttps://en.wikipedia.org/wiki/Wingy_Manonehttps://www.imdb.com/name/nm0543474/https://fromthevaults-boppinbob.blogspot.com/2018/02/wingy-manone-born-13-february-1900.htmlhttps://syncopatedtimes.com/joseph-wingy-manone-1900-1982/https://adp.library.ucsb.edu/names/104021"Wingy""Wingy" ManoneJ. MannoneJ. ManoneJ. Wingston ManoneJoe "Wingy" MannoneJoe "Wingy" ManoneJoe (Wingy) ManoneJoe MannoneJoe Mannone's Harmony Kingss OrchestraJoe ManoneJoe Wingy ManoneJoseph "Wingy" MannoneJoseph "Wingy" ManoneLee Joe MannoneMannonaMannoneManoneW. MannoneW. ManoneW.M.Wingie MannoneWingie ManoneWingyWingy MannoneWingy Manone & His OrchestraBarbecue Joe And His Hot DogsWingy Manone's Dixieland BandThe Cellar BoysEddie Miller's OctetGene Gifford And His OrchestraNappy Lamare's Louisiana Levee LoungersArcadian SerenadersWingy Manone And His Jam BandWingy Manone And His Harlem Hot ShotsWingy Manone And His New Orleans BuzzardsWingy Manone And His Jump JammersWingy Manone And His DetroiteersWingy Manone And His CatsWingy Manone And His Go-GroupEddie Miller's OrchestraJoe Manone's Harmony KingsWingy Manone's Harmony Kings + +269657Jerry FullerJerrell Lee FullerAmerican songwriter, singer and record producer, born November 19, 1938 in Ft. Worth, Texas, USA. Died July 18, 2024 in Sherman Oaks, Calif., USA from complications of lung cancer.Needs Votehttp://www.jerryfuller.com/https://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=121201&subid=1https://en.wikipedia.org/wiki/Jerry_Fullerhttps://www.imdb.com/name/nm1887866/B. FullerFullerFuller Jerrell LeeFuller Jr.Fuller, JFuller, J.J FullerJ. FullerJ. L. FullerJ. SullerJ.FullerJarry FullerJerrell FullerJerry E. FullerJerry FollerJerry FüllerJerry L. FullerJerry SullerJerry/FullerJullerTerry FullerПороL. SpringClarence ThudpuckerThe FleasThe Trophies (2)Scuba CrownsFinders Keepers (4)The Fuller Brothers (3) + +269663Dick GlasserRichard Eugene GlasserAmerican singer, songwriter and record producer, also known as [a1357343]. +Born December 8, 1933 in Canton, Ohio. +Died July 10, 2000 in Thousand Oaks, California. +Brother of [a343987], [a2452684], [a366287], and [a=Jerry Glasser]. + +General manager of [l35715] (1964), he worked as A&R producer for [l13531], [l1000] (60s), [l1866] and [l33261] (70s). +He charted twelve times as a songwriter in the U.S. and U.K. between 1955 and 1977. His top selling song was "I Will" by Ruby Winters, which hit #97 on the U.S. R&B chart and #4 in the U.K. in 1977. The song previously charted four times, with the highest in 1965 by Dean Martin at #10 in the U.S. and #3 adult contemporary.Needs Votehttp://en.wikipedia.org/wiki/Dick_GlasserArtistry In SoundB. GlasserBill GlaserD GlasserD. GlasserD. ClasserD. GlaserD. GlassD. GlasserD. GlassnerD. GlásserD.GlasserDick GlaserDick LasserDick-GlasserGlaserGlassaGlasserGlasser, DGlassnerGlosserR GlasserR. GlasserRichard E. GlasserRichard Eugene GlasserRichard GlasserDick LoryDick Glasser & Co.Dickie And The Gee's + +269793R. Dean TaylorRichard Dean TaylorCanadian Soul, Rock, and Pop singer, songwriter, composer and producer, born 11 May 1939 in Toronto, Ontario, Canada. Died 7 Jan 2022.Needs Votehttp://www.rdeantaylor.com/rdeantaylor/Home.htmlhttp://en.wikipedia.org/wiki/R._Dean_Taylorhttps://soulstrutter.blogspot.com/2022/01/r-dean-taylor-ri-p-11-may-1937-6-jan.htmlhttps://www.imdb.com/name/nm3868158https://repertoire.bmi.com/Search/Catalog?num=3jEVDtie3BZMPN52fxVZ4Q%253d%253d&cae=uwTSaVPRHzRBjjaPbj8PVg%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22gotta%20see%20jane%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A1%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3A%22TAYLOR%20R%20DEAN%22%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22Ip_Address%22%3Anull%2C%22Pwa_Indicator%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=oQ5QPfxeuXXa%252bYwl37rzbA%253d%253dB. TaylorD. R. TaylorD. TaylorD.TaylorDeanDean R. TaylorDean TaylorDean Taylor RDean-TaylorDean/TaylorPaylorR Dean TaylorR. D. RaylorR. D. TaylorR. D.TaylorR. DeanR. Dean - TaylorR. Dean -TaylorR. Dean / TaylorR. Dean-TaylorR. Dean/TaylorR. DeantaylorR. TaylorR.D. TaylorR.D.TaylorR.Dean TaylorR.Dean Taylor & The ShadowsRichard TaylorRichard Dean TaylorRichard TaylorRoger Dean TaylorTaylerTaylorTaylor.The Clan + +269802Joe VenutiGiuseppe VenutiAmerican jazz violinist, born 16 September 1903 in Philadelphia, Pennsylvania, USA, died 14 August 1978 in Seattle, Washington, USA. +Needs Votehttps://en.wikipedia.org/wiki/Joe_Venutihttps://www.imdb.com/name/nm0893468/https://adp.library.ucsb.edu/names/103186G. VenutiJ VenuttiJ. VenutiJoeJoe Venut'Joe Venuti & His Concert OrchestraJoe Venuti And His ViolonJoe Venuti, His Jazz Violin And ComboJoe VenuttiLangThe Fabulous Joe VenutiVenutiジョー・ベヌーティーFrankie Trumbauer And His OrchestraJoe Venuti's Blue FourJoe Venuti TrioHoagy Carmichael And His OrchestraJean Goldkette And His OrchestraRoger Wolfe Kahn And His OrchestraPaul Whiteman And His OrchestraRuss Morgan And His OrchestraJoe Venuti & Eddie LangJoe Venuti / Eddie Lang Blue FourJoe Venuti's Rhythm BoysJoe Venuti And His OrchestraThe Newport All StarsIrving Mills And His Hotsy Totsy GangJoe Venuti And His Blue SixEddie Lang-Joe Venuti And Their All Star OrchestraJoe Venuti And His New YorkersJoe Venuti QuartetBenny Meroff And His OrchestraJoe Venuti And His Big BandJoe Venuti & Eddie Lang's Blue FiveRussell Gray And His OrchestraCharlie Lavere's Chicago LoopersJoe Venuti And His Blue FiveIrwin Abrams And His Orchestra4 Giants Of SwingJoe Venuti And His Free GroupJoe Venuti QuintetThe Joe Venuti RhythmistsAll Star CaliforniansLarry Abbott And His Orchestra + +269804Dick McDonoughRichard Tobin McDonough.Dick McDonough (born 1904, New York City, New York, USA - died May 25, 1938, New York City, New York, USA) was an American jazz guitarist and banjo player. He played alongside [a=Benny Goodman] (1933) and [a=Fats Waller] ("Jam Session at Victor's", 1937). French guitarist [a=Jean "Matlo" Ferret] named him as his favourite American guitarist.Needs Votehttps://en.wikipedia.org/wiki/Dick_McDonoughhttps://www.allmusic.com/artist/dick-mcdonough-mn0000256511/biographyhttps://adp.library.ucsb.edu/names/103520D McDonoughD. McDonoughDMDick DonoughDick Mc DonoughDick McDonnoughDick McDonoghDick McDonough?Mc DonoughMcDonoughRichard McDonoughBillie Holiday And Her OrchestraR.C.A. Victor All-StarsBenny Goodman And His OrchestraMildred Bailey And Her Swing BandMiff Mole's MolersThe Dorsey Brothers OrchestraJack Pettis And His OrchestraCornell And His OrchestraIrving Mills And His Hotsy Totsy GangThe Charleston ChasersJam Session At VictorGene Gifford And His OrchestraDick McDonough And His Orchestra + +269831Harold DankoAmerican jazz pianist, born 13 June 1947 in Sharon, Pennsylvania, USA.Needs Votehttp://en.wikipedia.org/wiki/Harold_Dankohttps://harolddanko.bandcamp.com/DankoH. DankoHarnold DankoHarold Danko And The Geltman Bandハロルド・ダンコWoody Herman And His OrchestraChet Baker QuartetThe Lee Konitz QuartetThad Jones / Mel Lewis OrchestraEastman Faculty Jazz QuartetLee Konitz TerzetLee Konitz NonetTeddy Charles QuartetRob Bulkley QuintetThe Thad Jones Mel Lewis QuartetWoody Herman And The Thundering HerdSteve Houghton QuintetHarold Danko TrioDick Oatts QuintetKim Richmond / Clay Jenkins EnsembleButch Miles' Jazz ExpressRich Perry QuartetHarold Danko QuartetHarold Danko QuintetDon Aliquo / Clay Jenkins Quintet + +269868Gunther SchullerAmerican composer, arranger, conductor and French horn player, born to German parents on November 22, 1925 in New York City, New York and died on June 21, 2015 in Massachusetts. +Father of [a=Ed Schuller] and [a=George Schuller].Needs Votehttps://www.guntherschullersociety.org/https://en.wikipedia.org/wiki/Gunther_Schullerhttps://www.britannica.com/biography/Gunther-SchullerG. SchullerG. ShullerG.SchullerGuenther SchullerGunter SchullerGuntherGunther & SchullerGunther SchuflerGunther SchulerGunther ShullerGünther SchullerMr. Gunther SchullerMr. SchullerSchullerSchullertSchutterShulleSterrettZ. SchullerГ. ШуллерGil Evans And His OrchestraThe Modern Jazz SocietyDizzy Gillespie And His OrchestraThe New England Conservatory Ragtime EnsembleCincinnati Symphony OrchestraThe Modern Jazz Ensemble + +269869Aaron SachsAmerican tenor saxophonist and clarinetist. +Born 4 July 1923, New York City, USA. Died 5 June 2014, New York, USA. +Married to singer [a=Helen Merrill](1948–1956, divorce). Needs Votehttps://en.wikipedia.org/wiki/Aaron_Sachshttps://adp.library.ucsb.edu/names/341784A. SachsAaraon SachsAaron SacksSachsThe Modern Jazz SocietyCozy Cole All StarsGene Krupa And His OrchestraBenny Goodman And His OrchestraRed Norvo And His OrchestraEddie Heywood And His OrchestraCozy Cole OrchestraRed Norvo All-StarsRed Norvo All StarsNo Strings SextetAaron Sachs SextetThe Modern Jazz EnsembleRed Norvo SextetFlip Phillips FliptetSarah Vaughan And Her OrchestraThe Tom Talbert Jazz OrchestraAaron Sachs And The Manor Re BopsSpecs Powell & Co. + +269871Manuel ZeglerBassoon player. Died June 21, 2005. +Member of the New York Philharmonic Orchestra from 1945 to 1981.Needs VoteM. ZeglerManny ZeglerMany ZeglerThe Modern Jazz SocietyNew York PhilharmonicThe Modern Jazz EnsembleGeorge Russell Orchestra + +270023Andy KirkAndrew Dewey KirkAndy Kirk (born May 28, 1898, Newport, Kentucky, USA - died December 11, 1992, Harlem, New York City, New York, USA) was an American jazz saxophonist, flutist, tubist, bassist, and orchestra leader. + +He was with George Morrison's band from 1919 until 1925, then spent three years with Terence Holder's "Dark Clouds Of Joy" in Dallas, Texas. In 1929, he was elected leader after Holder departed. Renaming the band [url=https://www.discogs.com/artist/335595-Andy-Kirk-And-His-Clouds-Of-Joy]Clouds Of Joy[/url]. Kirk also relocated the band from Dallas to Kansas City, Kansas where he made his headquarters until 1936. + +In 1948, Kirk disbanded the Clouds Of Joy and continued to work as a musician, but eventually switched to hotel management and real estate. + + +Needs Votehttps://en.wikipedia.org/wiki/Andy_Kirk_(musician)https://www.arts.gov/honors/jazz/andy-kirkhttps://www.allmusic.com/artist/andy-kirk-mn0000754926/biographyhttps://www.radioswissjazz.ch/en/music-database/musician/40993950225d438a7a56b9fe28cf1b05935a0/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105570/Kirk_AndyA. KirkKirkAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraJohn Williams' Memphis Stompers + +270025The Benny Goodman QuartetCorrectB. Goodman QuartetB. Goodman QuartettB.G. QuartetBenny GoodmanBenny Goodman & His QuartetBenny Goodman & QuartetBenny Goodman And His QuartetBenny Goodman And His V-DISC QuartetteBenny Goodman E Il Suo QuartettoBenny Goodman E Seu QuartetoBenny Goodman QuartetBenny Goodman QuartettBenny Goodman QuartetteBenny Goodman Trio/QuartetBenny Goodman With The QuartetBenny Goodmans QuartetCuartetoCuarteto Benny GoodmanCuarteto De Benny GoodmanEl CuartetoGoodman QuartetOriginal Benny Goodman QuartettQuartetQuartettQuartetto Benny GoodmanQuartetto strumentale benny GoodmanQuatuor Benny GoodmanThe Goodman QuartetThe QuartetКвартетомベニー・グッドマン・カルテットベニー・グッドマン・カルテットLionel HamptonBenny GoodmanTeddy WilsonMilt HintonGene KrupaJess StacyDave ToughBobby Donaldson + +270026Bud FreemanLawrence E. FreemanUS jazz tenor saxophonist and clarinetist. +Born 13 April 1906 in Chicago, Illinois. +Died 15 March 1991 in the same city. + +Freeman started on C melody saxophone in 1923. In 1925 he switched to tenor saxophone. He was one of the most influential jazz tenorists of the swing era.Needs Votehttps://en.wikipedia.org/wiki/Bud_Freemanhttps://www.britannica.com/biography/Bud-Freemanhttps://www.imdb.com/name/nm0293318/https://www.radioswissjazz.ch/en/music-database/musician/11496445fceae047da75a8434e8bdea17c68ce/biographyhttps://jazzprofiles.blogspot.com/2020/06/bud-freeman-unheralded-and-too-often.htmlhttps://adp.library.ucsb.edu/names/101975B. FreedmanB. FreemanBFBJBen FremanBudBud Freeman (BF)Bud FreemannBudd FreemanBuddy FreemanFreemanLawrence "Bud" FreemanLawrence 'Bud' FreemanLawrence (Bud) FreemanLawrence «Bud» FreemanTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenJack Teagarden's ChicagoansLouis Armstrong And His All-StarsMcKenzie & Condon's ChicagoansWingy Manone & His OrchestraHoagy Carmichael And His OrchestraBix Beiderbecke And His OrchestraBud Freeman's All Star OrchestraJack Teagarden And His OrchestraEddie Condon And His OrchestraRay Noble And His OrchestraWill Bradley And His OrchestraBud Freeman's Summa Cum Laude OrchestraMezz Mezzrow And His OrchestraEddie Condon And His ChicagoansMezz Mezzrow And His Swing BandEddie Condon And His BandEddie Condon And His Windy City SevenBenny Goodman And His OrchestraThe World's Greatest JazzbandEddie Condon And His All-StarsThe Cellar BoysJimmy McPartland And His OrchestraBud Freeman And His GangBud Freeman TrioBud Freeman QuartetJoe Venuti And His Blue SixBud Freeman And His Windy City FiveElmer Snowden SextetBud Freeman And His Famous ChicagoansJohn Williams' Memphis StompersThe Dorsey Brothers And Their New DynamiksGene Gifford And His OrchestraBud Freeman Jazz BandThe Bud Freeman GroupBud Freeman And His OrchestraFrank Teschemacher's ChicagoansBud Freeman QuintetFats Waller And FriendsFreeman FoursomeStan Rubin And His Tigertown OrchestraFats Waller's Jam SchoolJam Session At CommodoreBud Freeman And His Summa Cum Laude TrioPaul Jordan QuartetFreeman FiveAdrian's RamblersJack Teagarden & His Trombone + +270028Jan SavittJacob SavetnickJan Savitt (born September 4, 1907, Shumsk, Russia Empire - died October 4, 1948, Sacramento, California, USA) was a Russian-born American bandleader, musical arranger and violinist. He trained as a classical violinist and joined [a27519] at the age of 19. He is perhaps best known as the bandleader of [a=Jan Savitt And His Top Hatters], which had several Big Band hits in the late 1930's.Needs Votehttps://en.wikipedia.org/wiki/Jan_Savitthttps://adp.library.ucsb.edu/names/103943J. SavillJ. SavittJon SavittSairtSavinSavittSavttSayittSvattThe Philadelphia OrchestraJan Savitt And His Top HattersJan Savitt And His Orchestra + +270029Muggsy Spanier's Ragtime BandCorrect"Mugsy" Spanier And His OrchestraMaggsy Spanier & His RagtimersMaggsy Spanier And His Ragtime BandMuggsy Spainer And His Ragtime BandMuggsy Spanier And His Ragtime BandMuggsy Spanier & His Ragtime BandMuggsy Spanier And His OrchestraMuggsy Spanier And His Ragtime BandMuggsy Spanier And His RagtimersMuggsy Spanier E La Sua Ragtime BandMuggsy Spanier's RagtimersMuggsy Spaniers Ragtime BandMuggy Spanier's Ragtime BandMuggy's Spanier's Ragtime BandMugsy Spanier And His Ragtime BandMugsy Spanier And His RagtimersMuggsy SpanierJoe BushkinBernie BillingsRod ClessAl SidellBob CaseyDon CarterGeorge BruniesPat PattisonNick CaiazzaGeorge ZackMarty GreenbergRay McKinstry + +270030Bob ZurkeBoguslaw Albert Zukowski.American jazz pianist, arranger,composer and bandleader. +Worked with : Marvin Ash (pianist), Bob Crosby, Joe Sullivan and as leader in own his bands. +Died of pneumonia. + +Born : December 17, 1912 in Detroit, Michigan. +Died : February 16, 1944 in Los Angeles, California. +Needs Votehttps://en.wikipedia.org/wiki/Bob_Zurkehttps://www.allmusic.com/artist/bob-zurke-mn0000765614https://adp.library.ucsb.edu/names/109745B, ZurkeB. ZurkeBob ZerkeBob Zurke & His BandBob Zurke & His OrchestraBob Zurke At The PianoBurkeRed ZurkeZurkeMetronome All StarsBob Zurke And His Delta Rhythm BandBob Crosby And His OrchestraOliver Naylor's OrchestraAll Star Band (4)Four Of The Bob Cats + +270054Donald BaileyDonald Orlando BaileyAmerican jazz drummer and harmonica player (* 26 March 1933 in Philadelphia, Pennsylvania, USA; † 15 October 2013 in Montclair, California, USA).Needs Votehttp://en.wikipedia.org/wiki/Donald_Bailey_%28musician%29https://www.drummerworld.com/drummers/Donald_Bailey.htmlhttp://www.bluenote.com/artists/donald-baileyD. BaileyDon BaileyDonald "Duck" BaileyDonald Bailey Sr.Donald Bailey, Sr.Donald BailyDonald Duck BaileyDonaldo Baileyドナルド・ベイリーJimmy Smith TrioGerry Mulligan QuartetHarold Land QuintetRoland Hanna TrioHampton Hawes TrioIsao Suzuki TrioJimmy Rowles TrioLarry Flahive TrioThe Pete Christlieb QuartetMark Lewis QuartetThe Charles McPherson SextetThe Thornel Schwartz QuartetWind-BreakersRed Norvo ComboThe Chuck Israels QuartetJunko Kimura TrioCalifornia ThreeMasao Nakajima QuartetRené Thomas-Jimmy Smith Trio + +270225Placido DomingoJosé Plácido Domingo EmbilBorn January 21, 1941 in Madrid, Spain + +Spanish opera singer, conductor, and arts administrator. He has recorded over a hundred complete operas and is well known for his versatility, regularly performing in Italian, French, German, Spanish, English and Russian, in the most prestigious opera houses in the world. + +Although primarily a lirico-spinto tenor for most of his career, especially popular for his Cavaradossi, Hoffmann, Don José and Canio, he quickly moved into more dramatic roles, becoming the most acclaimed Otello of his generation. In the early 2010s, he transitioned from the tenor repertory into exclusively baritone parts, most notably Simon Boccanegra. As of 2020, he has performed 151 different roles.Needs Votehttps://en.wikipedia.org/wiki/Pl%C3%A1cido_Domingohttps://www.britannica.com/biography/Placido-Domingohttps://www.placidodomingo.com/https://web.archive.org/web/20030724092958/https://www.sonyclassical.com/artists/domingo/https://www.imdb.com/name/nm0004881/https://www.twitter.com/placidodomingohttps://www.facebook.com/PlacidoDomingo/https://www.instagram.com/placido_domingo/(P.D).(P.D.)DomingoDominoP. DomingoP. Domingo Jr.P. Domingo, Jr.P.D.P.DomingoPDPlacidoPlacido Domingo ( Hoffmann )Placido Domingo EmbilPlacido Domingo Jr.Placido Domingo With EnsemblePlasido DomingoPlàcido DomingoPlácido DomPlácido DomingoPlácio DomingoΠλάθιντο ΝτομίγκοΠλάθιντο ΝτομίνγκοП. ДомингоПласидо ДомингоПласидо Доминогドミンゴプラシド・ドミンゴ多明哥多明戈普拉西多·多明戈플라시도 도밍고The Three TenorsHermanos + +270237Hot Lips PageOran Thaddeus PageHot Lips Page (born January 27, 1908, Dallas, Texas, USA, died November 5, 1954, New York City, New York, USA) was an American jazz trumpeter and bandleader from the swing-era. He started with the dance-band Eddie and Sugar Lou, based in Tyler, Texas in 1926, and then played with Pardee's Footwarmers, [a2392043], [a317903] and [a145262]'s Reno Club orchestra.Needs Votehttps://en.wikipedia.org/wiki/Hot_Lips_Page"Hot Lips Page""Hot Lips""Hot Lips" Page"Lips" Page'Hot Lips' Page'Lips' PageBag O'BonesH. L. PageHLPHot "Lips" PageHot 'Lips' PageHot LipsHot Lips Page Jam SessionHot Lips Page On TrumpetHot Lips Page On Trumpet And VocalHot Lips PagesHot-Lips PageLips Oran PageLips PageO. PageOran "Hot Lips" PageOran "Hot Lips" Page And His BandOran "Lips" PageOran 'Hot Lips' PageOran 'Lips' PageOran <Lips> PageOran Hot Lips PageOran PageOran Thaddeus PageOran « Hot Lips » PageOran «Hot Lips» PageOran »Lips« PageOran „Hot Lips“ PageOren "Hot Lips" PageOren "Lips" PagePage“Hot Lips“ Page"Pappa" Snow WhiteCount Basie OrchestraBillie Holiday And Her OrchestraBennie Moten's Kansas City OrchestraArtie Shaw And His OrchestraThe Mezzrow-Bechet SeptetPete Johnson's All-StarsBen Webster And His OrchestraHot Lips Page And His OrchestraBig Joe Turner And His Fly CatsHot Lips Page's Swing SevenPete Johnson's BandAlbert Ammons And His Rhythm KingsPete Johnson And His BandWalter Page's Blue DevilsPete Johnson & His Boogie Woogie BoysHot Lips Page & His Hot SevenChu Berry And His Stompy StevedoresHot Lips Page Trio"Hot Lips" Page SextetHot Lips Page And His BandOran Lips page And His All StarsChu Berry And His Jazz EnsembleJoe Bushkin Blue BoysJam Session (10)Jam Session (At Minton's - May 8, 1947)Ben And The Boys + +270238Erskine HawkinsErskine Ramsay HawkinsAmerican jazz trumpeter and orchestra leader, born 26 July 1914 in Birmingham, Alabama; died 11 November 1993 in Willingboro, New Jersey.Needs Votehttps://adp.library.ucsb.edu/names/103922DashE. HaekinsE. HawkinE. HawkinsE. HokinsasE.H.E.HawkinsEdward HawkinsEdward R. HawkinsErksine Hawkins (The 20th Century Gabriel)Erskin HawkinsErskin-HawkinsErskin/HawkesErskine Hawkins The Twentieth Century GabrielEskin HawkinsEskine HawkinsHawhinsHawinsHawkensHawkinHawkingHawkinsHawkins, C.Hawkins, ErskineWawkinsХокинсЭ. ХокинзЭ. ХоукинсErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State CollegiansErskine Hawkins All-Star OrchestraErskine Hawkins Quintet + +270603Arthur GreensladeArthur GreensladeBritish pianist, conductor and arranger for films, television, and performers. He was most active in the 1960s and 1970s, and has also conducted some Easy Listening classics. He was born 4 May 1923 in Northfleet, Kent, England, UK and died 27 November 2003 in Sydney, Australia.Needs Votehttp://en.wikipedia.org/wiki/Arthur_GreensladeA. GreensladeA.GreensladeA; GreensladeArt GreensladeArt GreesladeArt GrensladeArt. GreensladeArth. GreensladeArthur (Fingers) GreensladeArthur CreensladeArthur GreenArthur GreendaleArtur GreensladeGreensladeOrk. GreensladeLondon All StarArtie Scott OrchestraArthur Greenslade And His OrchestraArthur Greenslade's Big BandArthur Greenslade And The Gee-MenArthur Greenslade And His Mexican BrassArt Greenslade And His Broadcasting BandArthur Greenslade Chorus + +270608David HorowitzDavid Joel HorowitzJazz and session keyboardist, born July 29, 1942 in New York, New York, USA + +Not to be confused with the younger classical pianist, also based in New York.Needs Votehttp://www.dhma.net/D. HorowitzDave HorowitzDavid HarowitzHorowitzGil Evans And His Orchestra + +270650Teddy ReigTheodore Samuel ReigAmerican record producer. +Born November 23, 1918 in New York, NY +Died September 29, 1984 in Teaneck, NJ. +Involved in many important sessions of the 1940s,1950s and 1960s, Reig began to produce recording sessions in 1945 and was soon working regularly at [l33726] on most of their most significant dates (including the [a75617] sessions), helping turn Savoy into a major jazz and R&B record company. Reig founded the [l35931] label in 1950 and in the mid-1950s switched over to [l12201], where he extensively recorded the [a253011] and other jazz musicians and singers. +Needs Votehttp://www.allmusic.com/artist/teddy-reig-p117750https://en.wikipedia.org/wiki/Teddy_ReigReidReigReiglRiegT ReidT. ReidT. ReigT.ReidT.ReigTed ReigTeddie ReigTeddy ReighTeddy RiegTerry ReigTheodore Reig + +270858Paul GershmanAmerican violinist and session musician, born 14 September 1912 in Philadelphia, Pennsylvania and died in March 1986. He was the brother of [a368361].Needs VoteP. GershmanPaul G.Paul GershamPaul GershanПол ГершманThe Philadelphia OrchestraThe Cleveland OrchestraBilly Byers And His Orchestra + +270862Art BaronArt BaronArt Baron joined the Duke Ellington band in August 1973 at the age of 23, the last trombonist Ellington ever hired. Previously he had spent time on the road working with Buddy Rich, Stevie Wonder, and James Taylor.Needs VoteArthur BaronArtie BaronBaronThe George Gruntz Concert Jazz BandDuke Ellington And His OrchestraThe Jazz Composer's OrchestraBallin' The JackThe Sessions BandSam Rivers' Rivbea All-star OrchestraLabamba's Big BandMingus Big BandMario Pavone OctetThe Frank Wess OrchestraKamikaze Ground CrewThe Sound Visions OrchestraThe New York Composers OrchestraSteve Elson's Lips & Fingers EnsembleThe LucifersJerome Harris QuintetMichael Musillami OctetSaheb Sarbib And His Multinational Big Band + +271000Darryl JonesDarryl Nelson JonesAmerican upright and electric bassist, composer, educator, and purveyor, born December 11, 1961 in Chicago, IL. Jones became well known when he replaced [a=The Rolling Stones]' original member [a=Bill Wyman] in 1994. At the age of 21, he joined [a=Miles Davis] with whom he would play over the next five years. In 1985, he became a member of [a=Sting]'s first solo band. He toured and recorded with [a=The Headhunters], [a=Madonna], [a=Eric Clapton] and more. He has also formed the [b]Darryl Jones Project[/b].Needs Votehttps://darryljones.com/https://jonesmusicalinstruments.com/about-darryl-jones/https://www.facebook.com/darryljonesbassisthttps://twitter.com/djonesbassisthttps://www.instagram.com/darryljonesbassist/https://www.abasses.com/darryljones/https://www.abasses.com/darryljones/bassplayer.htmhttps://webcache.googleusercontent.com/search?q=cache:RKYhqLwLtBAJ:https://www.chicagotribune.com/entertainment/music/ct-ott-daryl-jones-0309-story.html+&cd=1&hl=en&ct=clnk&gl=ushttps://en.wikipedia.org/wiki/Darryl_Joneshttps://www.guitarworld.com/features/darryl-jones-the-rolling-stones-are-pretty-cool-about-letting-me-play-what-i-want-they-trust-that-ill-find-the-essence-of-the-songshttps://musicianbio.org/darryl-jones/https://www.famousbirthdays.com/people/darryl-jones.htmlhttps://www.imdb.com/name/nm0427850/D. JonesDarly JonesDarrell JonesDarry JonesDarryl "The Munch" JonesDarryl "The Mutch" JonesDarryl A/K/A/"The Munch"Darryl J.: A/K/A "The Munch"Darryl Jones A/K/A "The Munch"Darryl Jones a.k.a. "The Munch"Darryl Jones, A/K/A "The Munch"Darryll JonesDaryl JonesDaryll JonesJonesダリル・ジョーンズSteps AheadGil Evans And His OrchestraESP (13)Superfriends (2)Miles Davis SeptetBill Evans GroupStone RaidersThe Dead DaisiesThe Bob Belden Ensemble + +271001Al FosterAloysius Tyrone FosterAmerican jazz drummer, born January 18, 1943 in Richmond, Virginia, USA. Died May 28, 2025. +A member of [a=Miles Davis]’ band for 13 years (1972-1985), he was one of the few people to have contact with Davis during his retirement from 1975–1981. After Foster left Miles Davis in 1985, he worked independently, sometimes as leader, sometimes as sideman. + + +Needs Votehttps://aloysiusfoster.com/https://alfoster.bandcamp.com/https://www.facebook.com/AlFoster?ref=br_tfhttps://open.spotify.com/artist/4PqV4TEgVltnn4N47ODKV6https://en.wikipedia.org/wiki/Al_Fosterhttps://www.drummerworld.com/drummers/Al_Foster.htmlhttps://musicianbio.org/al-foster/https://www.famousbirthdays.com/people/al-foster.htmlhttps://www.bluenote.com/artist/al-foster/https://www.yamaha.com/artists/alfoster.htmlA. FosterAll FosterAloysius 'Al' FosterAloysius FosterFosterアル・フォスターScolohofoMcCoy Tyner TrioTommy Flanagan TrioVladimir Shafranov TrioArt Pepper QuartetGary Bartz QuintetQuest (13)Hank Jones TrioThe Blue Mitchell QuintetJens Winther QuintetGeorge Adams QuintetThe Al Gafa QuintetoMal Waldron TrioThe Great Jazz TrioTete Montoliu TrioSteve Kuhn TrioKenny Barron TrioThe Joanne Brackeen TrioDuke Jordan TrioThe David Liebman QuintetMcCoy Tyner QuartetDexter Gordon QuartetDuke Jordan QuartetMiles Davis SeptetThe Chris Potter QuartetDonald Byrd SextetMike Nock QuartetHerbie Hancock TrioDuke Jordan QuintetAl Foster Band (2)Cyrus Chestnut TrioHerbie Hancock QuartetSam Jones QuintetBuster Williams QuartetFrank Morgan QuartetAl Foster QuartetMiles Davis GroupAndy Laverne TrioAlbert Sanz TrioTed Rosenthal TrioJoanne Brackeen And Special FriendsDenny Zeitlin TrioJohn Nugent QuartetAndy LaVerne QuartetLarry Willis TrioKochi (4)Super Trio (2)The Phil Markowitz TrioHarry Allen QuartetEric Reed TrioHeads Of State (3)Peter Zak TrioSadik Hakim TrioMidnight DIggersJorge Rossy Vibes QuintetJoe Henderson TrioBobby Enriquez TrioTim Armacost Chordless Quintet + +271005Johnny PachecoJuan Azarías Pacheco KinipingLatin producer and musician (flute, saxophone and percussion) from the Dominican Republic. +Born March 25, 1935 Santiago de los Caballeros, Dominican Republic. +Died February 15, 2021 in Teaneck, NJ, USA. +Co-founder of [l36950]. +Father of [a=Elis Pacheco].Needs Votehttps://johnnypacheco.online/https://es.wikipedia.org/wiki/Johnny_Pachecohttp://en.wikipedia.org/wiki/Johnny_Pachecohttps://www.imdb.com/name/nm0655290/El CondeEl Gran PachecoJ. PachecoJ. PachécoJ.PachecoJhonny PachecoJhony PachecoJohhny PachecoJohn PachecoJohn PachekoJohnnyJohnny PachacoJohnny PachechoJohnny Pacheco, Su Flauta Y Su Latin JazzJohnny PacheoJohny PachecoJonny PachecoJonny PacheoJuan PachecoPachecoPacheco "The Artist"Pacheco CharangaPacheco El MaestroPacheco Y Su OrquestaCarlos De LeonFania All StarsWoody Herman And His OrchestraThe Alegre All StarsThe Jerry Ross SymposiumPacheco Y Su CharangaJohnny Pacheco Y Su Nuevo TumbaoWoody Herman And The Thundering HerdRogelio Y Su OrquestaPacheco y MelonJohnny Pacheco Et Son OrchestreCharlie Palmieri QuartetConjunto Ritmo Del YaqueLos Dinamicos (8)Johnny Pacheco Y Su Conjunto + +271017Jack NimitzJack Jerome NimitzAmerican jazz alto and baritone saxophonist and clarinet player +Born 11 January 1930 in Washington, D.C., USA, died 10 June 2009, Los Angeles, California, USA + +He played in a variety of genres including jazz and rock including the bands of [a=Bob Astor], [a=Johnny Bothwell], and [a=Daryl Harpa]. He appeared on many jazz albums as sideman and rock albums as session musician including [a=The Beach Boys] track "Sloop John B". +Also credited as photographer + +Needs Votehttps://en.wikipedia.org/wiki/Jack_Nimitzhttps://www.freshsoundrecords.com/11091-jack-nimitz-albumshttps://adp.library.ucsb.edu/names/333972https://musicbrainz.org/artist/0e86043e-70ab-41ef-8ac5-04652ad1103ehttp://www.isni.org/0000000117647933https://www.allmusic.com/artist/mn0000102624https://catalogue.bnf.fr/ark:/12148/cb138979798https://d-nb.info/gnd/1024911764https://genius.com/artists/Jack-nimitzhttps://id.loc.gov/authorities/names/n95046801https://rateyourmusic.com/artist/jack-nimitz/https://secondhandsongs.com/artist/82002https://viaf.org/viaf/56797211/https://www.wikidata.org/wiki/Q1677134https://www.worldcat.org/identities/lccn-n95046801J. NimitzJack J. NimitzJack MimitzJack MinitzJack NiemetzJack NimetzJack NimitezJack NimitsJack NimnitzNimitzWoody Herman And His OrchestraStan Kenton And His OrchestraQuincy Jones' All Star Big BandGerald Wilson OrchestraThe NPG OrchestraSupersaxThe Monterey Jazz Festival OrchestraThe Adam Ross ReedsBill Holman And His OrchestraThe Gene Harris All Star Big BandThe Clayton-Hamilton Jazz OrchestraBill Holman's Great Big BandThe Woody Herman Big BandBill Perkins OctetWoody Herman BandOliver Nelson's Big BandThe Los Angeles Neophonic OrchestraTerry Gibbs Big BandWoody Herman And His Third HerdThe Lennie Niehaus OctetDon Menza & His '80s Big BandThe Gerald Wilson Big BandThe Quincy Jones Big BandDick Collins And His OrchestraRoy Wiegand Big BandTerry Gibbs Dream BandGerald Wilson Orchestra of The 80'sJoe Timer And His OrchestraThe Mike Barone Big BandBuddy Charles Concert Jazz OrchestraThe Nat Pierce-Dick Collins NonetLou Rovner Small Big BandBill Berry And The LA BandThe Don Menza Big BandDick Collins And The Runaway HerdThe Bill Perkins Big BandThe Bud Shank Big BandThe Bud Shank SextetWoodwinds WestFestival Workshop EnsembleThe Jack Nimitz QuintetThe Jack Nimitz-Bill Berry QuintetLouie Bellson's Big Band Explosion! + +271022Bernie GlowTrumpeter, born 6 February 1926 in New York, died 8 May 1982 in Manhassat, New York + +During the 1940's he was successively a member of the orchestras of [a891166], [a83813], [a26383], [a269597], [a1903222] and [a239399]. Has done a lot of session work later in his career, and was a member of the NBC and CBS studio orchestras. +Needs Votehttps://en.wikipedia.org/wiki/Bernie_Glowhttp://www.jazzprofessional.com/profiles/Bernie%20Glow.htmhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/24491309ce1f9d574346288b2a9d69eff902b/biographyhttps://www.allmusic.com/artist/bernie-glow-mn0000759837https://www.jazzwax.com/2020/10/marvin-stamm-on-bernie-glow.htmlhttps://www.imdb.com/name/nm8268040/https://adp.library.ucsb.edu/names/317980B. GlowBemie GlowBernard GlowBernie GrowErnie GlowGlowバーニー・グロウQuincy Jones And His OrchestraGil Evans And His OrchestraHugo Montenegro And His OrchestraXavier Cugat And His OrchestraThe Will Bradley-Johnny Guarnieri BandWoody Herman And His OrchestraGene Krupa And His OrchestraQuincy Jones' All Star Big BandAndy Kirk And His Clouds Of JoyArtie Shaw And His OrchestraRaymond Scott And His OrchestraBoyd Raeburn And His OrchestraElliot Lawrence And His OrchestraBenny Goodman And His OrchestraTito Rodriguez & His OrchestraTito Puente And His OrchestraOliver Nelson And His OrchestraWoody Herman SextetMilt Jackson OrchestraManny Albam And His Jazz GreatsJoe Reisman And His OrchestraBilly Byers And His OrchestraTerry Gibbs And His OrchestraThe JazztetRicky Ticky BrassUrbie Green And His OrchestraMiles Davis + 19The Woody Herman Big BandHenry Jerome And His OrchestraThe Grand Award All StarsCollins-Shepley GalaxyLarry Sonn OrchestraJimmy Giuffre & His Music MenThe Elliot Lawrence BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdGeorge Williams And His OrchestraArt Farmer And His OrchestraThe Quincy Jones Big BandCool GabrielsBob Brookmeyer And His OrchestraJimmy Rushing And His OrchestraThe Mystery Band (3)Hal Schaefer And His OrchestraChubby Jackson's Big BandJoe Newman And His OrchestraThe Blue Mitchell OrchestraThe Bill Potts Big BandJim Timmens And His Swinging BrassStewart - Williams & Co.Woody Herman & The Second Herd + +271027Ernie RoyalErnest Andrew RoyalAmerican jazz trumpet player. Younger brother of [a=Marshall Royal]. +Born June 2, 1921 in Los Angeles, died March 16, 1983 in New York City + +Needs Votehttp://www.allmusic.com/artist/ernie-royal-mn0000805560https://en.wikipedia.org/wiki/Ernie_Royalhttps://www.radioswissjazz.ch/en/music-database/musician/891378b285a2a5c23c1afec327fe741d72e5/biographyhttps://nationaljazzarchive.org.uk/explore/interviews/1277364-ernie-royal?https://www.imdb.com/name/nm2396723/https://rateyourmusic.com/artist/ernie_royalhttps://adp.library.ucsb.edu/names/341333E. RoyalEarnie RoyalEric RoyalErnest RoyalErnie RoaylErnie RoyaleErnieroyalRoyalQuincy Jones And His OrchestraGil Evans And His OrchestraThe Soul FindersDizzy Gillespie And His OrchestraWoody Herman And His OrchestraDuke Ellington And His OrchestraGene Krupa And His OrchestraGene Norman's "Just Jazz"Lionel Hampton And His OrchestraStan Kenton And His OrchestraQuincy Jones' All Star Big BandElliot Lawrence And His OrchestraIllinois Jacquet And His OrchestraOliver Nelson And His OrchestraJulia Lee & Her Boy FriendsSlide Hampton OctetThe Ernie Wilkins OrchestraRay Brown All-Star Big BandMilt Jackson OrchestraManny Albam And His Jazz GreatsIvory Joe Hunter And His BandBilly Byers And His OrchestraTerry Gibbs And His OrchestraNinapinta And His Bongos And CongasThe JazztetThe Jazz All-StarsJacques Hélian Et Son OrchestreMiles Davis + 19The Woody Herman Big BandHenry Jerome And His OrchestraThe Jazz Interactions OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraThe Elliot Lawrence BandJimmy Cleveland And His All StarsWoody Herman And His Third HerdWoody Herman And The Fourth HerdGeorge Williams And His OrchestraCharles Mingus OctetArt Farmer And His OrchestraThe Quincy Jones Big BandOscar Pettiford OrchestraOscar Pettiford & His All StarsThe International Jazz GroupThe Mystery Band (3)The Leiber-Stoller Big BandChubby Jackson's Big BandSal Salvador And His OrchestraJoe Newman And His OrchestraMichel Legrand Big BandThe Ernie Wilkins GroupErnie Royal & His OrchestraAll Star Big BandFriedrich Gulda Und Sein Eurojazz-OrchesterErnie Royal And His All StarsErnie Royal & His PrincesJim Timmens And His Swinging BrassStewart - Williams & Co.The Duke's TrumpetsWoody Herman & The Second HerdArt Farmer TentetOscar Pettiford Big Band + +271029John BarberJohn William BarberJazz tuba player +Born May 21, 1920 in Hornell, New York, died June 18, 2007 in Bronxville, New York +Needs VoteBarberBill BarberBilly BarberJ. BarberJohn "Bill" BarberJohn ("Bill") BarberJohn (“Bill”) BarberJohn W. BarberBill BarberGil Evans And His OrchestraHugo Montenegro And His OrchestraMiles Davis And His OrchestraMiles Davis & His Tuba Band + +271031Joseph BennettJoseph V. Benante.American jazz trombonist; born 1926 in New Jersey, died January 08, 2012 in Park Ridge, New Jersey +He played with Les Brown, Vaughn Monroe, Jackie Gleason, Charlie Spivak, Gil Evans, Miles Davis , among others.Needs VoteJoe BennetJoe BennettJoseph BennetGil Evans And His OrchestraJoe Reisman And His OrchestraMiles Davis + 19 + +271033Louis R. MucciLouis Raphael MucciAmerican trumpet player, nicknamed Lou +Born December 13, 1909 in Syracuse, New York, died 2000 +He played with Claude Thornhill, Benny Goodman, Glenn Miller, Red Norvo, Miles Davis and John LaPorte. He was also featured in the Composers' Workshop Series.Needs Votehttps://en.wikipedia.org/wiki/Lou_Muccihttps://adp.library.ucsb.edu/names/332880Lou MucciLouis MucciLouis MuccviLuis MucciGil Evans And His OrchestraGlenn Miller And His OrchestraClaude Thornhill And His OrchestraHal McIntyre And His OrchestraBilly Butterfield And His OrchestraBenny Goodman And His OrchestraMiles Davis + 19George Russell OrchestraBill Russo And His OrchestraOrchestra U.S.A.Peanuts Hucko And His OrchestraDanny Hurd Orchestra + +271036John CarisiJohn E. CarisiAmerican trumpet player, born 23 February 1922 in Hasbrouck Heights/New Jersey; died 3 October 1992 in New York City, USA.Needs VoteCarisiCarissiJ. CarisJ. CarisiJ. CarisiiJ. CavvisiJ.CarisiJ.John CarisiJohn CarrisiJohn CerisiJohn GarisiJohnny Carisiジョニー・カリシGil Evans And His OrchestraClaude Thornhill And His OrchestraTony Scott And His OrchestraGene Roland OctetMiles Davis + 19John Carisi OrchestraMel Powell And His OrchestraTony Scott TentetThe John Carisi Group + +271037Tony MirandaAnthony Miranda.American jazz french horn player +Born 1919 in New York City, New York, USA, died November 11, 2000 in New York City, New York, USA + +Married to french horn player [a363967] until his death 2000. +He played with the New York City Opera, playing with the orchestra for 17 years and being the principal horn player for 12 years. +He recorded with a who’s-who of classical, jazz, and pop music. Some of the conductors he worked iwth include Toscanini, Morton Gould and Leonard Bernstein, and musicians such as Luciano Pavarotti, Frank Sinatra, Percy Faith, Perry Como, the Beatles and Miles Davis. +He was a 60-year member of Local 802 music union.Needs Votehttps://www.feenotes.com/database/artists/miranda-tony-1919-11th-november-2000/https://www.milesdavis.com/person/tony-miranda/https://www.imdb.com/name/nm0592220/https://adpprod1.library.ucsb.edu/index.php/mastertalent/detail/331879/Miranda_TonyAnthony MirandaT. MirandaTony MirendaGil Evans And His OrchestraLew Davies And His OrchestraMiles Davis + 19Orizaba And His OrchestraJim Timmens And His Swinging Brass + +271038Bill BarberJohn William BarberJazz tuba player +Born May 21, 1920 in Hornell, New York, died June 18, 2007 in Bronxville, New York + +Needs Votehttps://adp.library.ucsb.edu/names/303026B. BarberBarberBill BarnerJohn "Bill" BarberJohn ''Bill'' BarberJohn '('Bill')' BarberJohn 'Bill' BarberJohn ("Bill") BarberJohn BarberWilliam BarberJohn BarberGil Evans And His OrchestraMiles Davis And His OrchestraClaude Thornhill And His OrchestraThe Miles Davis NonetSlide Hampton OctetRalph Burns And His OrchestraMiles Davis + 19Miles Davis & His Tuba BandSal Salvador And His OrchestraRusty Dedrick And The Ten Man Band + +271053Neely PlumbBenjamin Neely Plumb.American producer, jazz saxophonist (alto and baritone) and clarinetist. +Born: November 17, 1912 in Augusta, Georgia. +Died: October 04, 2000 in Sherman Oaks, California. + +Neely worked with: [a269597], [a299953], [a281994], [a300045], [a300050] and others. +Father of [a796283] (aka Jan Brady) from TV's "The Brady Bunch".Needs Votehttps://www.allmusic.com/artist/neely-plumb-mn0000386951/biographyhttps://rateyourmusic.com/artist/neely_plumbhttps://musicianbio.org/neely-plumb/https://adp.library.ucsb.edu/index.php/mastertalent/detail/337937/Plumb_Neelyhttps://www.imdb.com/name/nm0687582/Meely PlumbN. P.N. PlumbNeeley PlumbNeely Plumb ProductionsNeely PlumpNelly - PlumbNelly PlumbPlumbArtie Shaw And His OrchestraFoy Willing & The Riders Of The Purple SageNeely Plumb's OrchestraNeely Plumb's Orchestra With ChorusNeely Plumb SextetteNeely Plumb's 50 Fiddles + +271126Doug BoyleBritish guitarist and composer, born 6 September 1962 in Buckhurst Hill, Essex, UK.Needs VoteBoyleBoylesDougDoug "Allergic" BoyleDougie BoyleDouglas BoyleCaravanEnglish Chamber OrchestraThe Kennedy ExperienceMechanical Man (3) + +271154Thad JonesThaddeus Joseph JonesAmerican trumpeter, cornetist, french horn player, composer, and arranger. +Born March 28, 1923, in Pontiac, Michigan, USA; died of cancer on August, 21, 1986, in Copenhagen, Denmark. +His elder brother was pianist [a265629], and his younger brother was drummer [a=Elvin Jones]. + +He performed in Arcadia Club Band at age sixteen; 1941 performed in Connie Connell's band; served in U.S. Army 1943-1946; worked with the band of Charles Young (circa 1946-1948); led his own quintet in Detroit; worked in the bands of [a683569] and Jimmy Taylor; performed at Blue Bird Inn, Detroit 1952-1954; joined Count Basie in 1954 and performed with [a453852]; left the Basie Orchestra and in 1963 worked briefly as a CBS staff arranger; co-led [a999862] (1965-1978); led the [a388737] and taught at the Royal Conservatory; 1980 taught Jazz Seminar in Barcelona, Spain; rejoined the (now posthumous 'ghost') Basie Orchestra in 1985.Needs Votehttps://en.wikipedia.org/wiki/Thad_Joneshttps://www.bluenote.com/artist/thad-jones/https://www.ejazzlines.com/big-band-arrangements/by-arranger/thad-jones-big-band-charts/https://www.scaruffi.com/jazz/tjones.htmlhttps://www.imdb.com/name/nm1238001/https://www.allmusic.com/artist/thad-jones-mn0000133119/https://adp.library.ucsb.edu/index.php/mastertalent/detail/324044/Jones_ThadJonesJones, Thaddeus Joseph, (Thad)Oliver KingT JonesT. DžonsT. JohnsT. JoneT. JonesT.JonesTad JonesTadd JonesTh JonesTh. JonesTh.J. JonesThad GoresThad JamesThad JonnesThad, JonesThadd JonesThaddeus "Thad" JonesThaddeus D. JonesThaddeus J. JonesThaddeus JonesThaddeus Joseph JonesThadeus J. JonesThadeus JonesThat JonesThe Fabulous Thad JonesThed JonesThod JonesТ. ДжонсТэд Джонсサドジョーンズザッド・ジョーンズOliver KingQuincy Jones And His OrchestraGil Evans And His OrchestraCount Basie OrchestraCount Basie And The Kansas City SevenThe Thelonious Monk QuintetTony Scott And His OrchestraDanish Radio Big BandOliver Nelson And His OrchestraCharles Mingus Jazz WorkshopThe Ernie Wilkins OrchestraMilt Jackson And Big BrassThad Jones / Mel Lewis OrchestraPepper Adams OctetThe Prestige All StarsThe Jones BoysThe Curtis Fuller SextetKenny Drew QuintetThe Sextet Of Orchestra U.S.A.The Quincy Jones Big BandHorace Parlan QuintetThe Thad Jones Mel Lewis QuartetThad Jones / Pepper Adams QuintetThe Charlie Mingus ModernistsThad Jones And His EnsembleLeonard Feather's East Coast StarsHerb Geller & His All StarsThe Jones Brothers (4)Thad Jones QuartetThad Jones EclipseBuddy Rich All StarsThad Jones QuintetThad Jones SextetBuddy Rich EnsembleThad Jones & Mel LewisThe Frank Wess Septet + +271155Mickey RokerGranville William RokerMickey Roker (born March 9, 1932, Miami, Florida, USA - died May 22, 2017, Philadelphia, Pennsylvania, USA) was an American jazz drummer. + +Needs Votehttps://en.wikipedia.org/wiki/Mickey_Rokerhttps://www.drummerworld.com/drummers/Mickey_Roker.htmlGrady RokerGranville "Mickey" RokerGranville ''Mickey'' RokerGranville RokerM. RokerMickey RoccaMickey RockerMickey RokaMicky RokerMicky RuckersMike RokerMikey RokerRockerRokerThe Modern Jazz QuartetJunior Mance TrioRay Brown TrioThe Ray Bryant ComboThe Horace Silver QuintetDizzy Gillespie QuintetMary Lou Williams TrioRay Bryant TrioShirley Scott TrioMilt Jackson And His Gold Medal WinnersThe Dizzy Gillespie Big 7Dizzy Gillespie's Big 4The Duke Pearson NonetThe Gene Harris Trio Plus OneThe Horace Silver SextetOdean Pope TrioToshiko Akiyoshi QuintetQuadrant (6)Dizzy Gillespie QuartetLee Morgan QuintetArt Farmer QuintetCollins-Shepley GalaxyDuke Pearson's Big BandThe N.Y. Hardbop QuintetBobby Scott QuartetGigi Gryce QuintetNorris Turney QuintetPeter Leitch TrioSam Jones 12 Piece BandThe Dizzy Gillespie 6Toshiko Akiyoshi QuartetJoe Williams & FriendsGigi Gryce SextetMilt Jackson Ray Brown Quartet + +271274Victor HugoVictor-Marie HugoVictor-Marie Hugo (February 26, 1802 in Besançon, France – May 22, 1885 in Paris, France) was a French poet, playwright, novelist, essayist, visual artist, statesman, human rights campaigner, and perhaps the most influential exponent of the Romantic movement in France.Needs Votehttp://en.wikipedia.org/wiki/Victor_Hugohttps://adp.library.ucsb.edu/names/102487HugoV HugoV. HugoV.HugoVi. HugoVictor Marie HugoViktor HügoViktoras HugoWiktor HugoΒίκτωρ ΟυγκώВ. ГюгоВиктор ГюгоГюго雨果 + +271355Alan OsmondAlan Ralph OsmondAmerican, singer, guitarist, pianist, songwriter, and producer, born: June 22, 1949, Ogden, Utah. +Needs Votehttps://en.wikipedia.org/wiki/Alan_Osmondhttps://www.imdb.com/name/nm0652104/A OsmondA.A. OsmondsA. OsmanA. OsmondA. Osmond,A. OsmondsA. R. OsmondA. ReiphA.OsmondA.R. OsmondA.W. OsmondAlanAlan Ralph OsmondAllan OsmondAllen OsmondOsmondOsmond A.The OsmondsAlan Osmond Productions + +271384Plas JohnsonPlas John Johnson Jr.Plas John Johnson is an American jazz tenor saxophonist, probably most widely known as the soloist on [a=Henry Mancini]'s "The Pink Panther Theme". +Born 21 July 1931 in Donaldsonville, Lousianna, USA + +Plas and brother [a=Ray Johnson] formed the [a3098597], that played in and around New Orleans before 1951. Johnson is the featured soloist of countless albums, including those of [a=Frank Sinatra], [a=Peggy Lee], [a=Nat King Cole], [a=Barbra Streisand], [a=Quincy Jones], [a=Ray Charles], [a=Ella Fitzgerald], [a=Linda Ronstadt], [a=Sarah Vaughan] and was a regular session sideman during [l=Capitol Records] golden years. Also brother of [a1202368].Needs Votehttps://en.wikipedia.org/wiki/Plas_Johnsonhttps://www.imdb.com/name/nm0426006/https://adp.library.ucsb.edu/names/323887"Plas" JohnsonBlas JohnsonGovenor Plas JohnsonJohn "Plas" Johnson, Jr.John 'Plas' Johnson,JrJohnsonP JohnsonP. JohnsonP.JohnsonPas JohnsonPlasPlas J. JohnsonPlas JacksonPlas Johnson Jr.Plas Johnson QuintetPlas Johnson, Jr.Plass JohnsonPlaz JohnsonPlus JohnsonJohnny BeecherGoogie Rene ComboVan Alexander And His OrchestraB. Bumble & The StingersNelson Riddle And His OrchestraRay Anthony & His OrchestraHenry Mancini And His OrchestraBenny Carter And His OrchestraPete Rugolo OrchestraThe StormsThe Gene Harris All Star Big BandJohnny Beecher And His Buckingham Road QuintetRay Johnson ComboThe Philip Morris SuperbandThe Strollers (6)Ernie Fields OrchestraPlas Johnson QuartetBobby Troup And His Stars Of JazzPlas Johnson And His OrchestraThe Hanna-Fontana BandRene Hall TrioThe Johnson Brothers' ComboHerb Ellis-Ray Brown SextetNeal Hefti And His Jazz Pops OrchestraThe Wrecking Crew (6)Herschel Burke Gilbert OrchestraWild Bill Davis Super Trio + +271409Gary GrantGary E. GrantTrumpet player, composer, producer. Born July 13, 1945. Died June 26, 2024 (aged 78). +He has been a sought after and featured soloist working out of Los Angeles since 1975 on jazz, pop and rock recordings as well as in blockbuster movie soundtracks, TV show scores and soundtracks and in commercials. + +Gary E. Grant was born and raised in a musical family, (Mary Kay, Eben, Ernie) of which he received his early training from his father, Harry Grant. He attended North Texas State University before a two year tour with the famed Woody Herman band in which he performed as lead trumpet and featured soloist. Gary spent 3 years in Hawaii collaborating with a phenomenal group of musicians performing with his own big band and 7 piece ensemble. + +In 1975, Gary moved to Los Angeles to become one of the most sought after musicians in the business. Almost 20 years later, he has accumulated an impressive list of recordings that include many top hits of the past three decades. Gary is also a part of the world famous "Jerry Hey" horn section. + +As a featured soloist, Gary's rich and clear sound can be heard all over the world in many famous movie soundtracks. One standout in this genre is the live orchestra recording of the main title in the motion picture, The Bodyguard. Other recent solos in motion pictures include: Tin Cup, First Wives Club, Eraser, Forest Gump, Grumpier Old Men II and Judge Dredd. Gary can also be heard on the recent movie soundtracks of Flubber, Godzilla, Mulon, Contact, Space Jam, Men In Black, The Preacher's Wife, The LushLife, The Mirror Has Two Faces, Cats Don't Dance, Volcano and Hercules. Currently, Gary is recording soundtracks to new releases: Lethal Weapon 4, Parent Trap and Horse Whisper. + +Gary Grant's recording credits extend far beyond the world of movies. He also has worked on numerous television shows and commercials such as: The Simpsons, Tales From the Crypt, ER, CBS and ABC Themes, HBO Boxing, Comic Relief IV,V, and VI, Academy Awards, Quincy Jones, AOL, Pepsi Cola, Intel Pentium, playing as Dizzy Gillespie, Award Winning National Car Rental and many more. + +Gary is also famous in the record industry, recording with many famous national and international artists from America, England, Mexico, Venezuela, Brazil, Japan and Germany. Some of the many artists Gary has recorded with include: Barbara Streisand, Michael Jackson, Whitney Houston, Celine Dion, Toni Braxton, Brian McKnight, Frank Sinatra, Natalie Cole, Earth Wind & Fire, Go West, Take Six, Elton John and Aerosmith. Gary has also recorded with one of the most respected producers of our time, Quincy Jones on albums, Back On The Block and Q's Juke Joint. Other producers Gary has worked with include: David Foster, Glenn Ballard, Dave Grusin, and Baby Face. Gary was also a guest artist with the "Chicago 17" horns.Needs Votehttps://en.wikipedia.org/wiki/Gary_Grant_%28musician%29https://www.imdb.com/name/nm0335403/1-10Cary GrantG. GrantGarry E. GrantGarry GrantGary E GrantGary E. GrantGary GrandGary S. GrantGerry GrantGrantPeter Herbolzheimer Rhythm Combination & BrassWoody Herman And His OrchestraThe Gene Page OrchestraThe Seawind HornsFirst Cosins Jazz EnsembleThe Jerry Hey Horn SectionWoody Herman And The Thundering HerdAlf Clausen Jazz OrchestraRoger Neumann's Rather Large BandUniversity Of North Texas All-Star Alumni BandAllen Carter Big BandPatrick Williams & His Band1:00 O'Clock Lab Band + +271483Hazy OsterwaldRolf Erich OsterwalderSwiss trumpet player and vibraphonist, singer and bandleader, born 18 February 1922 in Bern, Switzerland and died 26 February 2012 in Lucerne, Switzerland.Needs Votehttps://de.wikipedia.org/wiki/Hazy_Osterwaldhttps://en.wikipedia.org/wiki/Hazy_Osterwaldhttps://www.imdb.com/name/nm0652411/H. OsterwaldH. OsterwaldH. OsterwalderHasy OsterwalderHazy OrsterwaldHazy Osterwald (Osterwalder)Hazy OsterwalderIsterwald HazyOsterwaldOtserwaldHazy Osterwald JetsetHazy Osterwald And The EntertainersHazy Osterwald SextettErnst Höllerhagen QuintettHazy Osterwald QuintettHazy Osterwald And His OrchestraFred Böhler And His BandFred Böhler-Quintett + +271516Neil DiamondNeil Leslie DiamondAmerican singer-songwriter and occasional actor, born January 24, 1941 in Brooklyn, New York, USA. Father of [a=Jesse Diamond]. Inducted into the Songwriters Hall of Fame in 1984.Needs Votehttps://www.neildiamond.com/https://en.wikipedia.org/wiki/Neil_Diamondhttps://www.songhall.org/profile/Neil_Diamondhttps://www.imdb.com/name/nm0004871/https://www.allmusic.com/artist/neil-diamond-mn0000864209D. DiamondD. NailDIamondDiamondDiamond NDiamond NeillDiamond, NeilDiamondsMr. Neil DiamondN DiamondN,. DiamondN,DiamondN. ChristianN. D.N. DIamondN. DaimondN. DiamandN. DiamomdN. DiamonN. DiamondN. DiamondsN. DiamontN. DimondN. DirmondN. SiamondN. ダイアモンドN.D.N.DiamondN.L. DiamondNDND (aka 'The Basher')Neal DiamondNei DiamondNeilNeil DaimondNeil DiamondsNeil DoamondNeil L. DIamondNeil Leslie DiamondNeill DiamondNel DiamondNell DiamondNell, DiamondNiel DiamondNiels DiamondTom CatalanoДаймондДаймъндДимандН. ДаймондНейл ДаймондНийл Даймъндニール • ダイヤモンドニール・ダイアモンドニール・ダイヤモンド尼爾戴蒙닐다이아몬드Mark Lewis (45)Neil & JackTen Broken Hearts + +271566John H. WestEnglish classical sound engineer and producer, born in South Shields, died 11 January 2013 aged 62.Needs VoteJohn H WestJohn West + +271824Laura SamuelEnglish classical violinist, born 4 January 1976 in London; died 21 November 2024. +She studied with Itzhak Rashkovsky at the Royal College of Music in London. She co-founded the Belcea Quartet in 1994 and was a member of it for 16 years, before joining the Nash Ensemble and the London Bridge Ensemble in 2010. She was appointed leader of the BBC Scottish Symphony Orchestra for the 2012-2013 season. +She played the 1731 "Payne McThuen" Stradivarius, formerly used by [a883964].Needs VoteThe London Telefilmonic OrchestraBBC Scottish Symphony OrchestraThe Nash EnsembleBelcea QuartetThe Chamber Orchestra Of London + +271848Padraic SavagePadraic SavagePatrick Savage is an Australian-born film composer and violinist best known for his collaboration with Holeg Spies on the score for The Human Centipede. + +He was also formerly principal first violin with the Royal Philharmonic Orchestra in London, UK. A former student of the Victorian College of the Arts in Melbourne and the Royal College of Music in London, he now lives in London and collaborates regularly on scores with French composer Holeg Spies. + +He was also formerly leader of the Tippett Quartet in London. + +Filmography: + + + * Depravity + * Corps Diplomatique + * Infected + * Bionic Patrol + * Men Don't Lie + * Hard Shoulder + * Fetch + * The Human Centipede (First Sequence) + * Shadowland + * The Ugly File + * I Do + * Peekers + * Dead@17 + * 4 Conversations About Love +Needs Votehttp://cinetiks.com/http://en.wikipedia.org/wiki/Patrick_Savage_(composer/musician)Patrick SavageRoyal Philharmonic Orchestra + +271875London Philharmonic Orchestra[b]Not to be confused with [a454293].[/b] +[b]For recordings made & released by or licensed from [l=Westminster] in the late 1950s with (mostly) [a=Artur Rodzinski] conducting, please check [a=Philharmonic Symphony Of London][/b]. + +Excerpts from Wikipedia: +The London Philharmonic Orchestra (LPO) is one of five permanent symphony orchestras based in London. It was founded by the conductors Sir Thomas Beecham and Malcolm Sargent in 1932 as a rival to the existing London Symphony and BBC Symphony Orchestras. The founders' ambition was to build an orchestra the equal of any European or American rival. Between 1932 and the Second World War the LPO was widely judged to have succeeded in this regard. + +Unlike its London rivals the RPO and the Philharmonia, the post-war LPO was not exclusively associated with one company, and as well as Decca it recorded for Philips, CBS, RCA, Chandos and many other labels. The orchestra has been associated with the Royal Festival Hall since its opening in 1951, and has been its Resident Orchestra since 1992. In the 1960s and 1970s the orchestra was particularly associated with Lyrita, an independent company specialising in neglected British repertoire. In most LPO recordings for Lyrita the conductor was Boult; in the same period he also recorded extensively for EMI, with the LPO his preferred orchestra. For some years in the 1950s and 1960s the orchestra was contracted to two companies at once, and consequently appeared under the name "The Philharmonic Promenade Orchestra" in some of its recordings.Needs Votehttps://en.wikipedia.org/wiki/London_Philharmonic_Orchestrahttps://www.lpo.org.uk/https://www.southbankcentre.co.uk/whats-on/festivals-series/classical-season/london-philharmonic-orchestra?type=classical-musichttps://www.naxos.com/Bio/OrchestraEnsemble/London_Philharmonic_Orchestra/45636https://www.bach-cantatas.com/Bio/LPO.htmhttps://www.feenotes.com/database/groups/london-philharmonic-orchestra/https://www.imdb.com/name/nm3136453/https://www.imdb.com/search/title/?companies=co0104126https://www.soundcloud.com/londonphilharmonichttps://www.youtube.com/londonphilharmonicorchestrahttps://www.x.com/LPOrchestrahttps://www.facebook.com/londonphilharmonicorchestrahttps://www.instagram.com/londonphilharmonicorchestra/https://www.linkedin.com/company/london-philharmonic-orchestra/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103036/London_Philharmonic_Orchestra"London Philharmonic Orchestra"Componentes De La Filarmonica De LondresCимфонический Oркестр Лондонскoй ФилармонииCимфонический оркестр Лондонскoй ФилармонииDas London Philharmonic OrchestraDas Londoner Philharmonische OrchesterDas Philharmonia Orchester LondonDas Philharmonic Orchestra LondonDas Philharmonische OrchesterDas Philharmonische Orchester LondonDas Philharmonische Orchester, LondonDie Londoner PhilharmonikerEnsemble From LondonFilarmónica De LondresFilarmónica de LondresFilharmoninen OrkesteriGrosses Rundfunk-SymphonieorchesterGürzenich-Orchester KölnHet Londens Philharmonisch OrkestI Filarmonici Di LondraI Filarmonici di LondraL'Orchestra Filarmonica Di LondraL'Orchestre National Philharmonique De LondresL'Orchestre Philharmonique De LondresL'orchestre Philharmonique De LondresL.P.OL.P.O.LPOLa London Philharmonic OrchestraLa OrquestaLa Orquesta Filarmonica De LondresLa Orquesta Filarmónica De LondresLa Orquesta Filarmónica de LondresLa Orquesta Filármonica De LondresLe London Philharmonic OrchestraLe «London Philharmonic Orchestra»Lond. Philharmonisches OrchesterLondens Philharmonisch OrkestLondon Filharmonic OrchestraLondon Filharmoniske OrkesterLondon OrchestraLondon P.O.London POLondon Phil OrchLondon Phil Orch.London Phil. OrchestraLondon Philarmonic Orch.London Philh. Orch.London Philh. OrchestraLondon Philharmonia OrchestraLondon PhilharmonicLondon Philharmonic Orch.London Philharmonic OrchesterLondon Philharmonic Orchestra & SingersLondon Philharmonic OrchestrasLondon PhilharmonicaLondon PhilharmonicsLondon Philharmusica OrchestraLondon. FilharmonijaLondoner Philharm. OrchesterLondoner Philharmon. OrchesterLondoner PhilharmonikerLondoner Philharmonische OrchesterLondoner Philharmonischer OrchesterLondoner Philharmonisches OrchesterLondoni Filharmonikus ZenekarLondons Filharmoniska Ork.Londons Filharmoniska OrkesterLondonska FilharmonijaLondonski Filharmonijski OrkestarLondonski filharmonijski orkestarLondonskim Filhamonijskim OrkestromLondonskom FilharmonijomLondra Filarmoni OrkestrasıLondýnský Filharmonický OrchestrLontoon Filharmoninen OrkesteriLontoon Filharmooninen OrkesteriL´Orchestra Filarmonica Di LondraLånndånn FilharmonienMembers Of The London Philharmonic OrchestraMitglieder Der Londoner PhilharmonikerMusicians from London Philharmonic OrchestraOrch. Filarmonica Di LondraOrch. Phil. LondraOrchestaOrchesterOrchester Der Londoner PhilharmonikerOrchester des Opernhauses Covent GardenOrchestraOrchestra Filarm. Di LondraOrchestra Filarmonia Di LondraOrchestra FilarmonicaOrchestra Filarmonica DI LondraOrchestra Filarmonica Di LondraOrchestra Filarmonica di LondraOrchestra Filarmonică Din LondraOrchestra Filarmónica de LondresOrchestra Of The London PhilharmonicOrchestra Philharmonia Di LondraOrchestra Philharmonie Di LondraOrchestra Sinfonica Di LondraOrchestra della Philharmonic, LondraOrchestre De LondresOrchestre Filarmónica De LondresOrchestre Philar. De LondresOrchestre Philarmonique De LondresOrchestre Philarmonique de LondresOrchestre Philharmonic De LondreOrchestre PhilharmoniqueOrchestre Philharmonique De LOndresOrchestre Philharmonique De LondresOrchestre Philharmonique Du LondresOrchestre Philharmonique de LondresOrchestre Philharmoniques De LondresOrchestre Symphonique De LondresOrcjhestra Filarmonica Di LondraOrq. Filarmónica de LondresOrq. London PhilarmonicOrquest Filarmónica De LondresOrquesta Filarmonica DE LondresOrquesta Filarmonica De LondresOrquesta Filarmonica de LondresOrquesta Filarmonicos De LondresOrquesta Filarmónica De LondresOrquesta Filarmónica de LondresOrquesta Filharmonica De LondresOrquesta Filármonica De LondresOrquesta Philarmónica De LondresOrquesta Sinfonica De LondresOrquesta Sinfónica De LondresOrquestraOrquestra Filamônica De LondresOrquestra Filarmonica De LondresOrquestra Filarmónica De LondresOrquestra Filarmónica de LondresOrquestra Filarmônica De LondresOrquestra Filarmônica de LondresPhilarmonic Orchestra Of LondonPhilharmonia Orchester LondonPhilharmonia Orchestra LondonPhilharmonic Opera OrchestraPhilharmonic OrchestraPhilharmonic Orchestra LondonPhilharmonic Orchestra Of LondonPhilharmonic Orchestra of LondonPhilharmonic Orchestra, LondonPhilharmonic Promenade OrchestraPhilharmonic Promenade Orchestra Of LondonPhilharmonic Symphony Orchestra Of LondonPhilharmonica Orchestra LondonPhilharmonics Of LondonPhilharmonisches Orchester LondonPrincipals Of The London Philharmonic OrchestraRundfunk-SymphonieorchesterStrings Of The London Philharmonic OrchestraSymphony OrchestraTHe London Philharmonic OrchestraThe London OrchestraThe London PhilarmonicThe London Philarmonic Orch.The London Philarmonic OrchestraThe London Philh. Orch.The London Philharmonia OrchestraThe London PhilharmonicThe London Philharmonic OrchestraThe London Philharmonic Orch.The London Philharmonic OrchestraThe London Philharmonic Orchestra & SingersThe London Philharmonic OrchestrastraThe London Philharmonic StringsThe London PhilharmonicsThe London Royal PhilharmonicThe London Symphony OrchestraThe Philarmonic London OrchestraThe Philharmonia, LondresThe Philharmonic OrchestraThe Philharmonic Orchestra Of LondonThe Philharmonic Symphony Orchestra Of LondonThe Philharmonische OrchestertheΦιλαρμονική Ορχήστρα Του ΛονδίνουЛондонска ФилхармонијаЛондонский Королевский Филармонический ОркестрЛондонский Оркестр "Филармония"Лондонский Оркестр „Филармония“Лондонский Филарм. Орк-рЛондонский Филармонический ОркестрЛондонский симфонический оркестрЛондонский филармонический оркестрЛондонский филармонический оркестр. Дирижёр А. ШольцОркестр "Филармония"Симфонический Оркестр Лондонской ФилармонииФилармонический Оркестр Лондонаический Оркестрロンドン・フィルロンドン・フィルハーモニック管弦楽団ロンドン・フィルハーモニー・オーケストラロンドン・フィルハーモニー管弦楽団Stratford Symphony OrchestraThe Philharmonic Promenade OrchestraGeoffrey DownesRichard WaltonKeith HarveyNeil LevesleyRichard MorganTristan FryEmlyn SingletonDave Lee (3)Nigel BlackMichaela BettsPaul BenistonRichard BissillFiona HighamAlan CivilClive AnsteeAlan DalzielDavid TheodoreSimon EstellRoy GillardMichael McMenemyDaniel NewellMalcolm ArnoldJohn KitchenDave Stewart (2)John Davies (4)David NolanPatrick HallingHelen KammingaJohn Ryan (3)Robert St. John WrightRalph IzenJonathan SnowdenHoward BallVic SaywellDavid MunrowErnest GreavesJeff BryantOwen SladeSue BohlingDuncan RiddellPieter SchoemanNigel Thomas (2)Beverley JonesShelagh SutherlandJames HollandChris ParkesGareth HulseIan HardwickJörg WinklerRoger LordPhilip JonesBoris RicklemanDavid PyattMike HextRichard HosfordKate BirchallPhilip DawsonNancy ElanMichelle BruilSylvain VasseurJorg HammannRegina BeukesNeil Black (3)Manoug ParikianArthur GleghornRaymond LeppardRoger BirnstinglHugh MaguireNick BettsPeter ManningSir Thomas BeechamDaniel JemisonDouglas WhittakerRodney FriendSidney EllisonCecil AronowitzHarold LesterAlan J. PetersCatherine EdwardsGordon HuntSimon Carrington (2)David ArcherKathryn SaundersIshani BhoolaMarie GoossensBernard Walton (2)Lindsay ShillingRaymond OvensRussell GilbertStewart McIlwhamPeter VelStephen TrierAllan FryMartin GattLeo BirnbaumBrian Smith (12)Paul Edmund DaviesDerek James (2)John Turner (5)Benjamin RoskamsQuintin BallardieTimothy Jones (3)Richard McNicolFrank RycroftMichael DobsonSarah StreatfeildKenneth King (2)John Price (4)Robert Hill (6)David QuiggleRod McGrathNicholas BuschGeoffrey BrowneMichael Skinner (2)Philippe HonoréKeith MillarStanley WoodsRussell JordanColin ChambersJohn HoneymanVal KennedyJuliette BausorLionel BentleyGeoffrey GilbertColin HortonDominic WeirRichard CooksonKeith MarjoramLyndon MeredithHenry DatynerBrass Of The London Philharmonic OrchestraKristina BlaumaneMartin Parry (2)Gerald JarvisJames MerrettPeter Harvey (2)Peter NallKevin RundellValda AvelingMichael Turner (9)Alfredo CampoliRachel MastersVesselin GellevBrendan ThomasRebecca ShorrockHelen RowlandsGordon WebbReginald KellSantiago CarvalhoAnne McAneneyJeremy CornesCatherine CraigNicholas CarpenterHelena SmartJean PougnetCyrille MercierGareth NewmanCatherine WilmersStephen WatersCorinna DeschAngela Moore (2)Helena RathbonePaul Richards (7)Leonard DommettThomas MatthewsSimon Archer (2)Kenneth KnussenRachel GledhillRobert GrowcottWilliam WebsterGeoffrey PriceMaurice CheckerDavid James (22)Roger Winfield (2)John Chambers (4)Alexander CameronRemo LauricellaBryan Scott (2)Ronald CalderKenneth GoodeKeith WhitmoreIain KeddieGeorge PenistonDavid GreenleesKatherine LoynesAlison StrangeLee TsarmaklisBrian RabyBjorn Peterson (2)Rachel JacksonGareth MollisonNaomi HoltKatharine LeekFrancis BucknallJulian ShawGeoffrey LynnSusanne BeerImogen Taylor (2)Robert TrumanSioni WilliamsThomas EisnerSusan SutherleyRobert Pool (2)Matthew ComanMartin HobbsBen PollaniDaniel CornfordAshley StevensRobert Duncan (4)Simon Webb (2)Marie-Anne MairesseWilliam RoutledgeGill McIntoshCelia ChambersSusan Thomas (3)Tina GruenbergAndrew ThurgoodLaurence LovelleJoseph MaherAnthony ByrneAndrew BarclayPhilip TarltonMartin HohmannSusanna RiddellDean Williams (3)Michael KellettLaura DonoghueChris Yates (3)Oliver Yates (2)Reginald NewMichael MeeksSimon StreatfeildJohn G. PritchardElisabeth FletcherDerek HonnerFrederick RiddlePeter Mountain (2)Harry KerrRobert Cattermole (2)Alex LindsayHenry BaldwinDenis SimonsNorman Nelson (3)Charys GreenRoger LunnMatthias FeileJohn LowdellNeill SandersMiranda Davis (2)Anneke HodnettFrancis BradleyGreg WalmsleyJohn Francis (17)Bridget Evans (2)David WhistonThomas WatmoughIlyoung ChaeJeongmin KimJason KoczurTim GibbsIsabel Pereira (2)Eugene Lee (4)Dean WilliamsonDavid Lale (2)Susanne MartensCaroline SimonAdrian UrenGregory AronovichClare RobsonEmma HardingJohn Roberts (15)Mark Templeton (2)Katalin VarnagyDavid WhitehouseGalina TanneyLaura VallejoLaura Murphy (5)Alan CumberlandLouise HawkerRichard Temple SavageRichard Waters (5)Clare DuckworthJoyce FieldsendAdam WynterHenrik HochschildDavid Wise (7)Phil Taylor (19)John AlexandraJames Fountain (3)Eugene FeildCharles Gregory (7)Rodney Stewart (2)Haydn BeckJames W. Brown (2)Elisabeth WiklanderJanka RyfMarie Wilson (8)Michael Thornton (8)Helen StoreyAlix LagasseKenneth Essex (2)Nana RaitaluotoGeorge Alexander (18) + +271897Booker LittleBooker Little, Jr.American jazz trumpeter +Born April 2, 1938 in Memphis Tennessee, died October 5, 1961 in New York City, New York + +Recorded with [a=Max Roach], [a=Eric Dolphy], [a=Abbey Lincoln], [a=John Coltrane] and [a=Booker Ervin].Died of uremia at the age of 23. Younger brother of operatic contralto [a=Vera Little] and cousin of trumpeter [a743908]. +He grew up in a musically inclined family and naturally gravitated towards music. He started with the trombone, switched to clarinet at age twelve, and found his calling with the trumpet at the age of fourteen. He moved to Chicago, Illinois to continue his studies at the Chicago Conservatory in 1954, earning a degree in the trumpet while also studying composition, theory, orchestration, and a minor in piano. +While attending a recording session with [a=Sonny Rollins], Little met drummer Max Roach in 1955. He joined his band the Max Roach Four. Little found it tough balancing school and the band, and so his playing suffered and he was replaced. However, after graduating, he quickly joined the band again in 1958. That year, Little made his recording debut on "Max Roach + 4 on the Chicago Scene". He recorded his first LP as bandleader in October of 1958 "Booker Little 4 & Max Roach".Needs Votehttps://thebluemoment.com/2014/02/18/the-precious-legacy-of-booker-little/https://www.sfjazz.org/onthecorner/a-look-back-at-booker-littles-out-front/https://downbeat.com/news/detail/booker-little-cutting-at-the-edgeshttps://www.allaboutjazz.com/musicians/booker-little/https://jazzprofiles.blogspot.com/2013/09/booker-little-1938-1961.htmlhttp://en.wikipedia.org/wiki/Booker_Littlehttp://adale.org/Discographies/Booker.htmlB. LittleB.Little Jr.Booker Little And FriendsLittleMax Roach QuintetBooker Little SextetBooker Little 4Young Men From MemphisEric Dolphy / Booker Little Quintet + +271898Abbey LincolnAnna Marie WooldridgeAmerican jazz singer and civil rights activist +Born in Aug 6, 1930 in Chicago, IL and died in New York, Aug 14, 2010 +She was married to drummer [a229498] from 1962 to 1970. +In a career that spanned six decades, the Chicago-born singer recorded more than 20 albums, wrote her own songs, acted in several films and television shows and was a pioneering voice in the civil rights movement.Needs Votehttp://en.wikipedia.org/wiki/Abbey_Lincolnhttps://abbeylincoln.bandcamp.com/https://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Abbey+Lincoln&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allA LincolnA. LincolnAbby LincolnLincolnアビー・リンカーンAminata MosekaMax Roach Quintet + +271934Joe EllisTrumpet player.Needs VoteJoesph EllisJoseph EllisJoseph Ellis JrJoseph Ellis, Jr.Stan Kenton And His Orchestra + +271967Sonny BonoSalvatore Phillip BonoAmerican producer, arranger and songwriter. +Born: February 16, 1935, Detroit, Michigan, USA. +Died: January 5, 1998, Stateline, Nevada, USA. + +His most known musical works were with [a=Cher], to whom he was married for 11 years. The most notable songs he wrote where hits like "I Got You Babe" and "The Beat Goes On". +Bono left show-business for politics. He was a Republican elected in 1994 to the U.S. House of Representatives to represent California's 44th District. He held this position until his death. +In January 1998, he accidentally hit a tree during a skiing vacation in Heavenly Ski Resort in South Lake Tahoe. He died of the severe injuries. +Needs Votehttps://en.wikipedia.org/wiki/Sonny_Bonohttps://www.imdb.com/name/nm0095122/https://www.allmusic.com/artist/sonny-bono-mn0000036402B. SonoBanoBoboBonaBoncBondBoneBonnoBonoBono Salvatore PBono SonnyBono, SonnyBouoG. BonoJ. BonoJohnny BonoL. BonoRonny SommersS BondS BoneS BonoS, BonoS. BonS. BondS. BoneS. BonnoS. BonoS. BooS. BounoS. BunoS. BuonoS. ChristyS. SonoS.BoboS.BonnoS.BonoS.BuonoSalvatore BonoSenny BenoSoni BonoSonnySonny B.Sonny BondSonny BoneSonny BongSonny BoninSonny BonneSonny BonnoSonny BonoxSonny BuonoSonny-BonoSonny/BonoSonoSono BonoSony - BonoSony BoboSony BonoSunny BonoБоноС. БоноС. Бруноソニー・ボノDon ChristyScott Christy (2)Prince CarterSonny & CherCaesar & CleoLittle TootsieSonny And His Group + +272014Red CallenderGeorge Sylvester CallenderAmerican jazz bass and tuba player +Born March 06, 1918 in Haynesville, Virginia, died March 08, 1992 in Saugus, California +Needs Votehttps://en.wikipedia.org/wiki/Red_Callenderhttps://www.notreble.com/buzz/2017/07/21/bass-players-to-know-red-callender/https://www.jazzmusicarchives.com/artist/red-callenderhttps://www.imdb.com/name/nm0130457/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1361657f6dbadbbce12487d8b5513b3c47a25/biographyhttps://adp.library.ucsb.edu/names/105316"Red" Calendar"Red" Calender"Red" Callender'Red' CallenderCallanderCallendarCallenderCharles CallenderCharles R. CallenderG. "Red" CallenderG. 'Red' CallenderG. CalenderG. CallenderG. GallenderG.CallendarGeorge "Red" CalenderGeorge "Red" CallendarGeorge "Red" CallenderGeorge 'Red' CallenderGeorge (Red) CallenderGeorge CalanderGeorge CallendarGeorge CallenderGeorge Red CallenderGeorge S. CallenderGeorge Sylvester "Red" CallenderGeorge Sylvester 'Red' CallenderGeorge “Red” CallenderR. CallendarR. CallenderR.C.Red CalanderRed CalendarRed CalenderRed CallandarRed CallanderRed CallendarRed Callender and His BandRed Callender's ComboRed CollanderRed CollenderРед КаллендерThe Charlie Parker QuartetThe Charlie Parker All-StarsThe Spirits Of RhythmBillie Holiday And Her OrchestraLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraThe Nat King Cole TrioDizzy Gillespie Big BandThe John Carter OctetErroll Garner TrioHelen Humes And Her All-StarsIllinois Jacquet And His OrchestraDexter Gordon's All StarsWardell Gray QuartetShorty Rogers And His GiantsThe Duke's MenLester Young TrioLester Young And His BandThe Just Jazz All StarsJulia Lee & Her Boy FriendsThe André Previn TrioJoe Liggins & His HoneydrippersCharlie Parker's New StarsJohnny Hodges And His OrchestraArt Pepper NineLouie Bellson OrchestraThe Jerry Fielding OrchestraLouis Armstrong And His Hot SixRed Norvo SextetDexter Gordon QuartetSonny Greer And The Duke's MenThe Pan-Afrikan Peoples ArkestraRed Norvo QuintetThe Sweet Baby Blues BandDave Cavanaugh's MusicThe Los Angeles Neophonic OrchestraThe Bopland BoysDexter Gordon & OrchestraKings Of DixielandThe John Graas NonetCharles Owens New York Art EnsembleThe Art Tatum - Ben Webster QuartetLester & Lee Young's OrchestraRed Callender & His OrchestraRed Callender TrioRed Norvo SeptetMaynard Ferguson OctetNew York StarsRed Callender SextetCallender-Ross DuetJATP All StarsRed Callender And His Modern OctetRed Norvo's NineCrystalette All StarsIllinois Jacquet QuintetThe Buddy Collette Big BandHarry Carney's All StarsBuddy Collette SeptetThe Keynoters (3)Herschel Burke Gilbert Orchestra4-star-5Babe Russin QuartetRed Callender's QuintetThe Art Tatum Buddy Defranco QuartetRed Callender's QuartetArt Tatum SextetRed Callender Fourtet + +272015Vic McMillanAmerican jazz bassistNeeds Votehttps://www.allmusic.com/artist/vic-mcmillan-mn0001834386Mc MillanVIctor McMillianVic MacmillanVic Mc MilanVic Mc MillanVictor MacMillanVictor McMillanVictor McmillanThe Charlie Parker Septet + +272016Duke JordanIrving Sidney JordanUS jazz bop pianist +Born April 01, 1922 in New York City, New York, died August 08, 2006 in Valby, Denmark +First major appearence as sideman for [a=Coleman Hawkins] in 1941. One of the bop pioneers he was a member of [a=Charlie Parker]'s classic quintet incl. also [a=Miles Davis] on the famous Dial sessions in the late 40's. In the early 50's he accompanied a.o. [a=Sonny Stitt] and [a=Stan Getz]. In 1978 he migrated and settled in Copenhagen, Denmark, where he was signed to the [l=Steeplechase] label for many years. 1952 to 1962 married to jazz vocalist [a=Sheila Jordan]. As a composer most famous for writing the bop standard "Jordu". +Needs Votehttps://en.wikipedia.org/wiki/Duke_Jordanhttps://web.archive.org/web/20201026235336/https://www.britannica.com/biography/Duke-Jordanhttps://www.allmusic.com/artist/duke-jordan-mn0000147245https://adp.library.ucsb.edu/names/324079D JordanD. JordamD. JordanD. JordanNiemackD. JordonD.JordanDuck JordanDujke JordonDuke JordonI. JordanIrving "Duke" JordanIrving 'Duke' JordanIrving (Duke) JordanIrving Duke JordanIrving Sidney "Duke" JordanJordanJordonДюк Джорданデューク・ジョーダンJacques MarrayThe Charlie Parker All-StarsThe Charlie Parker SextetThe Charlie Parker QuintetChet Baker QuartetSonny Stitt QuartetRoy Eldridge And His OrchestraStan Getz QuartetSonny Stitt BandStan Getz QuintetDon Lanphere QuartetBe Bop BoysRolf Ericson And His American StarsClark Terry QuartetDuke Jordan TrioGene Ammons QuartetArt Farmer QuintetDuke Jordan QuartetThe BirdlandersDoug Raney QuartetThe Cecil Payne QuartetDuke Jordan QuintetJulius Watkins SextetOscar Pettiford's QuintetEddie Bert QuintetTina Brooks QuintetDuke Jordan OrchestraBarney Wilen TrioDuke Jordan Acoustic TrioJordan/Jædig Quartet + +272017Arvin GarrisonArvin Charles GarrisonAmerican jazz guitarist, born August 17, 1922 in Toledo, Ohio, dies July 30, 1960 in the same city. +Married to [a=Vivien Garry]. Arv taught himself to play ukulele at age nine, then switched to guitar and was accomplished enough to play dances and local events by age 12. In 1938, he was “discovered” by pianist, Bill Cummerow, and moved to Albany, New York.Needs Votehttps://en.wikipedia.org/wiki/Arv_Garrisonhttps://www.last.fm/music/Arvin+Garrison/+wikihttps://jazzresearch.com/arv-garrison/https://jazzresearch.com/vivien-garry-on-record/https://jazzjournal.co.uk/2021/10/15/arv-garrison-wizard-of-the-six-string-1/http://www.pennilesspress.co.uk/NRB/garrison.htmhttps://adp.library.ucsb.edu/names/317143A. GarrisonArv GarrisonArv GarrissomArvil GarrisonArvin GarrissonArving GarrisonGarrisonThe Charlie Parker SeptetDizzy Gillespie JazzmenThe Vic Dickenson QuintetTempo Jazz MenArv Garrison QuintetVivien Garry TrioArv Garrison Trio + +272018Dodo MarmarosaMichael MarmarosaAmerican jazz bebop pianist, composer and arranger +Born December 12, 1925 in Pittsburgh, Pennsylvania, USA +Died September 17, 2002 in Lincoln Lemington, Pennsylvania, USANeeds Votehttps://en.wikipedia.org/wiki/Dodo_Marmarosahttps://www.radioswissjazz.ch/en/music-database/musician/3117449767ddbbefd07e01713ec422ab27214b/biographyhttps://www.allmusic.com/artist/dodo-marmarosa-mn0000795599/discographyhttps://www.imdb.com/name/nm2733710/http://www.worldcat.org/identities/lccn-n93052197/https://adp.library.ucsb.edu/names/329797D. MarmarosD. MarmarosaD. MarmorosaDodo MamarosaDodo MarmorosaDodo MomorosaDudo MarmarosaJodo MarmarosaMarmarosaMichael "Dodo" MarmarosaMichael 'Dodo' MarmarosaДодо МармарозаGeorge StylesThe Charlie Parker SeptetThe Charlie Parker All-StarsSlim Gaillard And His OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraCharlie Barnet And His OrchestraBoyd Raeburn And His OrchestraWardell Gray QuartetLester Young And His BandBarney Kessel's All StarsCharlie Parker's New StarsThe International All-Stars (2)Slim Gaillard QuartetteDodo Marmarosa TrioThe Lucky Thompson QuartetRed Norvo SeptetCorky Corcoran & His OrchestraSlim Gaillard And His BoogiereenersThe Tom Talbert Jazz OrchestraRed Norvo's NineSlim Gaillard And His All StarsBoyd Raeburn All-Stars + +272019Wardell GrayWardell GrayAmerican bebop tenor saxophonist +Born February 13, 1921, Oklahoma City, Oklahoma +Died May 25, 1955, Las Vegas, Nevada + + +Needs Votehttps://en.wikipedia.org/wiki/Wardell_Grayhttps://www.allmusic.com/artist/wardell-gray-mn0000235881http://www.wardellgray.org/biography.htmlhttps://adp.library.ucsb.edu/names/318738GayGrayGreyJ. Wardell-GreyW. GrayW. GreyW.G.W.GrayWaddell GrayWardel GrayWardel GreyWardell GaryWardell GreyWardell/GrayWardwell GrayУордэл ГрэйCount Basie OrchestraThe Charlie Parker All-StarsBenny Goodman SextetThe Tadd Dameron SextetGene Norman's "Just Jazz"Billy Eckstine And His OrchestraEarl Hines And His OrchestraJ.C. Heard And His OrchestraBenny Goodman And His OrchestraDexter Gordon's All StarsBenny Goodman SeptetWardell Gray QuintetWardell Gray QuartetShorty Rogers And His GiantsDeLuxe All Star BandThe Just Jazz All StarsCount Basie SextetBenny Goodman & FriendsCharlie Parker's New StarsTadd Dameron SeptetCount Basie OctetAl Haig QuartetThe International All-Stars (2)Wardell Gray SextetWardell Gray All StarsJimmy Cobb's OrchestraAl Haig QuintetLouis Bellson's Just Jazz All StarsWardell Gray L.A. StarsAl Killian And His OrchestraAl Killian SextetSonny Criss SextetWardell Gray and his Quintette + +272020The Charlie Parker SeptetCorrectCharlie ParkerCharlie Parker & SeptetCharlie Parker SeptetMiles DavisCharlie ParkerRoy PorterLucky ThompsonVic McMillanArvin GarrisonDodo MarmarosaHoward McGhee + +272021Bob KestersonRobert Kesterson.American jazz bassist. +Born : 1917 -. +Died : April 1996 in Las Vegas, Nevada. + +Bob played with many jazz greats including Stan Kenton, Charlie Parker, Anita O'Day, Howard McGhee.His musical activities cover the years 1930s, 1940s and 1950s. +Nickname : "Dingbod". +Needs Votehttps://oxfordindex.oup.com/view/10.1093/gmo/9781561592630.article.J245800Bob 'Dingbod' KestersonBob (Ding Bat) KestersonBob KestertonBob KetersonDingbodDingbod KestersonR. KestersonRobert KestersonRobert KestertonThe Charlie Parker QuintetStan Kenton And His OrchestraHoward McGhee QuintetHoward McGhee QuartetJohnny Otis' All StarsHoward McGhee Jam Band + +272022The Charlie Parker QuartetCorrectC. Parker QuartetCharlie ParkerCharlie Parker Et Son QuartetteCharlie Parker QuartetCharlie Parker's QuartetQuartetThe Quartet Of Charlie ParkerКвартет Ч. ПаркераBuddy RichCharlie ParkerMax RoachRay BrownPercy HeathBarney KesselAl HaigErroll GarnerShelly ManneHank JonesRed CallenderHarold "Doc" WestTeddy KotickFranklin SkeeteJack Holliday + +272023Harold "Doc" WestHarold WestAmerican jazz drummer, born August 12, 1915, Wolford, North Dakota, died May 4, 1951, Cleveland, OhioNeeds Votehttps://en.wikipedia.org/wiki/Doc_Westhttps://www.allmusic.com/artist/harold-doc-west-mn0000950462/biographyhttps://adp.library.ucsb.edu/names/350506"Doc" WestDoc WestH. WestHal "Doc" WestHal WestHall "Doc" WestHarold 'Doc' WestHarold (Doc) WestHarold Doc WestHarold WestHarold WetsWestThe Charlie Parker QuartetBillie Holiday And Her OrchestraErroll Garner TrioDon Byas QuartetRoy Eldridge And His OrchestraPete Johnson's All-StarsWardell Gray QuartetSlam Stewart QuartetSlam Stewart TrioLester Young And His BandTiny Grimes QuintetSam Price TrioThe Vic Dickenson QuintetSam Price And His Texas BlusiciansCyril Haynes SextetThe V-Disc JumpersHarry Carney's All StarsVanderbilt All StarsJam Session (12) + +272024The Charlie Parker All-StarsCorrectCharlie ParkerCharlie Parker All StarsCharlie Parker & The All-StarsCharlie Parker All StarCharlie Parker All StarsCharlie Parker All-StarsCharlie Parker All-starsCharlie Parker AllstarsCharlie Parker And His All StarsCharlie Parker And His All-StarsCharlie Parker And His OrchestraCharlie Parker And The All StarsCharlie Parker And The All-StarsCharlie Parker And The Jazz All-StarsCharlie Parker And The Stars Of Modern JazzCharlie Parker's All StarsCharlie Parker's All StarsCharlie Parker's All-StarsCharlie Parkers All StarsThe Charlie Parker All StarsThe Charlie Parker And The All-StarsMiles DavisBud PowellCharlie ParkerKenny ClarkeMax RoachTommy PotterBarney KesselRed GarlandRoy HaynesJimmy WoodeCurly RussellErroll GarnerDon LamondJohn Lewis (2)Red CallenderDuke JordanDodo MarmarosaWardell GrayHoward McGheeSir Charles ThompsonHerb PomeroyBilly Griggs + +272025Jimmy BunnAmerican jazz pianist, born in 1926, died died on March 24, 1997 in Los Angeles, CA. +He was incarcerated in San Quentin from December, 1959 to March, 1963. Needs VoteJ. BunnJimmy BonnThe Charlie Parker QuintetGerald Wilson OrchestraHelen Humes And Her All-StarsDexter Gordon's All StarsHoward McGhee QuintetHoward McGhee QuartetDexter Gordon QuartetHoward McGhee Jam BandRussell Jacquet And His Yellow Jackets + +272026Howard McGheeAmerican jazz trumpeters +Born March 6, 1918, Tulsa, Oklahoma, USA +Died July 17, 1987, New York City, New York, USA +One of the earliest bebop jazz trumpeters, he was known for lightning-fast fingers and very high notes. What is generally not known is the influence (along with [a309986]) that he had on younger hard bop trumpeters. + +Howard McGhee was raised in Detroit. During his career, he played in bands led by [a136133], [[a270023] (both briefly and successively in 1941), [a145262] (also for a short period) and [a269594]. With [a251769] in California (1945) and stayed until 1947. Away from the scene for spells in the 1950s, re-emerged in the next decade.Needs Votehttps://en.wikipedia.org/wiki/Howard_McGheehttps://www.allmusic.com/artist/howard-mcghee-mn0000276917https://adp.library.ucsb.edu/names/206574H. Mc GheeH. McGeeH. McGheeHaward McGheeHooward McGeeHoward Mac GheeHoward Mc GeeHoward Mc GheeHoward Mc. GheeHoward McGeeHoward McGhee And The BlazersHoward McGheeeHoward, McGheeMaggsie EvounceMc GheeMcGheeハワード・マギーThe Charlie Parker SeptetThe Charlie Parker All-StarsThe Charlie Parker QuintetDuke Ellington And His OrchestraSlim Gaillard And His OrchestraGene Norman's "Just Jazz"Andy Kirk And His Clouds Of JoyColeman Hawkins QuintetColeman Hawkins And His OrchestraLeo Parker's All StarsAndy Kirk And His OrchestraHoward McGhee SextetLester Young And His BandHoward McGhee And His OrchestraHoward McGhee QuintetThe Howard McGhee-Fats Navarro SextetCharlie Parker's New StarsJames Moody SextetMcGhee-Navarro BoptetHoward McGhee QuartetSonny Stitt & The GiantsChubby Jackson's OrchestraNewport Parker Tribute All StarsThe Bopland BoysOscar Pettiford SextetWilbert Baranco OrchestraHoward McGhee And His Afro-CuboppersJohnny Otis' All StarsWilbert Baranco And His Rhythm BombardiersThe Sunset All StarsThe Ernie Wilkins GroupThe Flip Phillips-Howard McGhee BoptetHoward McGhee Jam BandSlim Gaillard And His BoogiereenersHoward McGhee All StarsJoe Williams & FriendsHoward McGhee SeptetMachito And His Afro-CuboppersTerry Gibbs And His Orchestra (2)Howard McGhee - Benny Bailey SextetHoward McGhee - Teddy Edwards QuintetChubby Jackson SeptetWillie Smith SextetHoward McGhee And The Blazers + +272027The Charlie Parker SextetUS jazz formation led by Charlie Parker, and started in the mid of 1940's.Needs VoteCharlie Parker & SextetCharlie Parker All Star SextetCharlie Parker Jam SessionCharlie Parker QuartetCharlie Parker SextetCharlie Parker Sextet And StringsOriginal Charlie Parker SextetThe Charlie Parker All Star Sextetチャーリー・パーカー六重奏団Miles DavisCharlie ParkerMax RoachJ.J. JohnsonTommy PotterDuke Jordan + +272028The Charlie Parker QuintetCorrectC. Parker QuintetC.Parker QuintetCharlie Parker & QuintetCharlie Parker Et Son QuintetteCharlie Parker QuintetCharlie Parker Quintet & SextetCharlie Parker Quintet (Septet & Sextet)Charlie Parker QuintetteCharlie Parker's QuintetCharlie Parker, With His Quintet & StringsCharlie-Parker-QuintetOriginal Charlie Parker QuintetQuincy Jones' All Star Big BandQuintetharlie Parker QuintetMiles DavisBuddy RichCharlie ParkerKenny ClarkeMax RoachRoy PorterColeman HawkinsJ.J. JohnsonTommy PotterRay BrownRoy HaynesArnold FishkinBilly BauerArt TaylorWalter Bishop, Jr.Hank JonesJohn Lewis (2)Duke JordanBob KestersonJimmy BunnHoward McGheeJose MangualRed RodneyLuis MirandaBenny HarrisTeddy KotickJimmy PrattJerome Darr + +272049Charles FambroughCharles FambroughJazz bassist & composer. +Born August 25, 1950 Philadelphia, PA +Died January 1, 2011 Philadelphia, PA +Needs Votehttp://www.myspace.com/charlesfambroughhttps://en.wikipedia.org/wiki/Charles_Fambroughhttps://www.inquirer.com/philly/obituaries/20110104_Charles_Fambrough__60__jazz_bassist_and_composer.htmlC. FambroughC.E. FambroughC.FambroughCharles FamboughCharles FarmbroughCharles FarnbroughCharles FeinbroughCharles FrambroughFambroughチャールス・ファンブローArt Blakey & The Jazz MessengersPharoah Sanders QuartetThe Jazz Tribe (2)Eric Mintel QuartetJazz From Keystone + +272142Robert JohnsonRobert Leroy JohnsonLegendary, influential delta blues guitarist, singer and songwriter. +Born: May 8, 1911, Hazlehurst, Mississippi +Died: August 16, 1938, Greenwood, Mississippi + +Passed away at 27, leaving a widespread impact on music. Some of his songs have been credited to [a=Woody Payne (2)], also known as [a=T Colley]. Inducted into Rock And Roll Hall of Fame in 1986 (Early Influence). + +Father of [a13326465]. + +[b]Note: For the [a=KC & The Sunshine Band] drummer, please use [a=Robert Johnson (3)]. +For the English composer from the Renaissance, please use [a=Robert Johnson (9)].[/b]Needs Votehttps://www.robertjohnsonbluesfoundation.org/https://en.wikipedia.org/wiki/Robert_Johnsonhttps://www.wirz.de/music/johnrfrm.htmhttps://equipboard.com/pros/robert-johnsonhttps://www.allmusic.com/artist/robert-johnson-mn0000832288B. JohnsonE. JohnsonFrom R Johnson OriginalJohnsonJohnson RobertJohnson, LeroyJohnson, R.Johnson, RobertJohnson/WilsonJohsonLeroy Robert JohnsonPayneR JohnsonR, JohnsonR. JhonsonR. JohnsonR. JonsonR. L. JohnsonR. MinionR.I. JohnsonR.JohnsonR.L. JohnsonRL JohnsonRobert 'P-Nut' JohnsonRobert / JohnsonRobert Johnson (D.P.)Robert JohnssonRobert JohsonRobert L JohnsonRobert L. JohnsonRobert Lee JohnsonRobert Leroy JohnsonRobert Leroy Johnson a.k.a. Silm HarpoRobert Leroy Jo·sonRobert/JohnsonRobral JolinsonRobt. JohnsonWoody Payne (2)T Colley + +272275Scott JoplinAmerican composer and pianist, born 24 November 1868 in Texarkana, Texas, USA and died 1 April 1917 in New York City, New York, USA. He was posthumously awarded a Pulitzer Prize in 1976.Needs Votehttps://www.scottjoplin.org/https://en.wikipedia.org/wiki/Scott_Joplinhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102042/Joplin_ScottA. JoplinF. JoplinJ. JoplinJ.JoplinJophinJopinJoplinJoplin ScottJoplin, ScottS JoplinS, JoplinS. JoblinS. JoplinS. Joplin-ScottS. JopplinS. ScottS.- JoplinS.JoplinSc. JoplinSc.JoplinSchott JoplinScot JoplinScot. JoplinScott - JoplinScott JoblinScott JopinScott JoplenScott Joplin MusicScott JoplingScott JopplinScott LoplinScott, JoplinScott-JoplinScott/JoplinSydney RussellToplinYoplinjoplin«Scott Joplin»С. ДжеплинС. ДжоплинСкотт Джоплинスコット・ジョップリンスコット・ジョプリン + +272340Nelson BoydNelson BoydAmerican jazz bassist, born February 6, 1928 in Camden, New Jersey, died October, 1985 in Camden, New Jersey +Played on numerous bop recordings in the late 1940s-early 1950s; after 1960 performed infrequently.Needs Votehttps://en.wikipedia.org/wiki/Nelson_Boydhttps://www.allmusic.com/artist/nelson-boyd-mn0000805222/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/11039701eb67f6849e98f155b8a09c65d70c9d6/biographyhttps://rateyourmusic.com/artist/nelson_boyd/credits/https://jdisc.columbia.edu/person/nelson-boydBoydJoe HanesN. BoydN.BoydNelson BoadNelson BoyNelson BoyleNelson, BoydThe Miles Davis SextetMiles Davis All StarsMiles Davis And His OrchestraDizzy Gillespie And His OrchestraFats Navarro QuintetThe Tadd Dameron SextetDizzy Gillespie Big BandColeman Hawkins QuintetDexter Gordon And His BoysStan Getz QuintetThelonious Monk TrioThe Miles Davis NonetJ.J. Johnson's BoppersJames Moody And His ModernistsFrank Rehak SextetColeman Hawkins All StarsJohn Lewis And His OrchestraFats Navarro And His BandMilton Jackson And His New GroupMilt Jackson SeptetJ.J. Johnson All Stars + +272354Charlie Parker's JazzersCorrectCharlie Parker And His JazzersCharlie Parker's Jazzers (Sextet)Charlie ParkerRoy HaynesWalter Bishop, Jr.Jose MangualLuis MirandaTeddy Kotick + +272355Machito And His OrchestraAfro Cuban jazz / salsa orchestra created in New York in the mid-1940s as [a392763], by [a1332854], [a408342] and [a538094]Needs Votehttps://en.wikipedia.org/wiki/Machito#cite_note-Yanow2000-7https://www.hostos.cuny.edu/culturearts/geninfo/PressReleasePhotos/Machito/Machito.shtmlhttp://www.machitoorchestranyc.com/La Orquesta De MachitoLa Orquesta de MachitoMachita And His OrchestraMachitoMachito & His Afro Cuban OrchestraMachito & His Afro-Cuban OrchestraMachito & His Famous OrchestraMachito & His Orch.Machito & His OrchestraMachito & OrchestraMachito & Son OrchestreMachito And His Afro-Cuban Jazz EnsembleMachito And His Afro-Cuban Orch.Machito And His Afro-Cuban OrchestraMachito And His Afro-Jazz EnsembleMachito And His Famous OrchestraMachito And His Orch.Machito And OrchestraMachito E Sua OrquestraMachito E La Sua OrchestraMachito E Sua OrquestraMachito Et Son OrchestreMachito Orch.Machito OrchestraMachito Orchestra With Lalo RodriguezMachito OrquestaMachito OrquestraMachito Y OrquestaMachito Y Su Famosa OrquestaMachito Y Su Orq.Machito Y Su OrquestaMachito Y Su OrquestraMachito Y Sus Afro CubansMachito's Jazz OrchestraMachito's OrchestraMachito's OrquestaMachito-Quintero OrchestrasOrq. De MachitoOrquesta MachitoThe Machito Latin Big BandThe Machito Orchestraマチート楽団Machito & His Afro-CubansMachito And His Salsa Big BandGraciela PerezHarry EdisonUbaldo NietoFlip PhillipsJose MangualMachitoChano PozoJoe LocoLuis MirandaRene HernandezBobby RodriguezMario BauzáJosé MaderaFred SkerrittGene JohnsonMario P. GrilloAl Stewart (3)GracielaBobby WoodlenPaquito DavillaLeslie JohnakinsJosé “Pin” MaderaFrank DavillaFrank "Machito" GrilloHector De LeonSammy Pagan + +272491Thomas MowreyProducer for recordings of classical music, including many for the [a395913] and [a392677] for [l7703] from 1970 to 1983.Needs Votehttps://www.linkedin.com/in/thomas-mowrey-5940705https://www.grammy.com/artists/tom-mowrey/13283Thomas MowrayThomas MowryThomas W. MowreyTom Mowrey + +272493Mulgrew MillerMulgrew MillerAmerican jazz pianist +Born August 13, 1955 in Greenwood, Mississippi, USA, died May 29, 2013 in Allentown, Pennsylvania, USA + + +Needs Votehttps://en.wikipedia.org/wiki/Mulgrew_Millerhttp://www.npr.org/event/music/166237914/mulgrew-miller-trio-on-jazzsethttps://www.youtube.com/channel/UCPmnpn70DnVnjBu5mlWLhCA/playlistshttps://books.discogs.com/credit/688713-mulgrew-millerM. MillerMillerMulgrewMullgrew MillerМалгроу Миллерマルグリュー・ミラーArt Blakey & The Jazz MessengersTony Williams TrioDave Liebman QuartetDave Holland SextetDavid Klein QuintetGary Burton & FriendsTomas Franck QuartetThe Brian Lynch QuartetKenny Garrett QuintetTrio TransitionMulgrew Miller TrioBuster Williams QuartetFrank Morgan QuartetThe Horizon QuintetWoody Shaw QuintetGary Smulyan QuintetDizzy Gillespie All-Star Big BandSuperblue (2)Harold Ashby QuartetRalph Moore QuintetSteve Wilson QuintetNeal Smith QuintetThe Robert Watson SextetCarl Allen & Manhattan ProjectsSteve Nelson QuartetThe Harold Land QuartetBenny Golson QuartetThe Contemporary Piano EnsembleThe New Woody Shaw QuintetSam Newsome QuintetWoody Shaw QuartetRon Carter's Great Big BandMulgrew Miller Quintet + +272499Terence BlanchardJazz trumpeter. Born on March 13, 1962, in New Orleans, LA; son of Joseph Oliver Blanchard +Education: Rutgers, classical music major, 1980-82.Needs Votehttp://www.terenceblanchard.com/https://www.facebook.com/TerenceBlanchardJazzhttps://twitter.com/T_Blanchardhttps://terenceblanchard.tumblr.com/https://soundcloud.com/terence-blanchardhttps://www.youtube.com/channel/UCjzZq96L7QcYh_FRRhe-toQhttps://pinterest.com/terencejazz/https://myspace.com/terenceblanchard/https://www.instagram.com/terence_blanchard/BlanchardT. BlancgardT. BlanchardT.BlanchardTerenceTerence Blanchard's BounceTerrance BlanchardTerrence BlanchardThe Jazz MessengersArt Blakey & The Jazz MessengersOrquestra WasRalph Peterson QuintetThe Terence Blanchard GroupHarrison/BlanchardBenny Green QuintetJoanne Brackeen And Special FriendsThe Terence Blanchard QuintetRemembering Bud Powell Band + +272500Lonnie PlaxicoAfrican American jazz bassist, born 4 September 1960 in Chicago.Needs Votehttp://www.myspace.com/lonnieplaxicogroupL. PlaxicoLenny PlaxicoPlaxicoArt Blakey & The Jazz MessengersJack Dejohnette's Special EditionSteve Coleman GroupNicolas Simion GroupThe Lonnie Plaxico GroupBrian Landrus QuartetCyrille Bugnon QuartetNicolas Simion QuartetRobin Eubanks SextetReiner Witzel GroupBrian Landrus TrioMike Clark GroupBrian Landrus OrchestraMichele Rosewoman And QuintessencePer Goldschmidt QuartetMonky Kobayashi & N.Y. Be BopKaren Francis Sextet + +272598Hannibal Marvin PetersonHannibal Lokumbe born Marvin PetersonAmerican jazz trumpeter, born 11 November 1948 in Smithville, Texas, USANeeds Votehttp://en.wikipedia.org/wiki/Marvin_Petersonhttps://books.discogs.com/credit/488973-hannibal-peterson"Hannibal" Marvin Peterson'Hannibal' Marvin PetersonHannibalHannibal (Marvin Peterson)Hannibal LokumbeHannibal M. PetersonHannibal Marvin PettersonHannibal PetersonMarvin "Hannibal" PetersenMarvin "Hannibal" PetersonMarvin 'Hannibal' PetersonMarvin C. PetersonMarvin Hannibal PetersonMarvin PetersonPetersonマーヴィン・パターソンHannibal LokumbeGil Evans And His OrchestraThe Jazz Composer's OrchestraAndrew Cyrille QuintetThe Monday Night OrchestraHannibal Marvin Peterson-Quartet + +272615Walter PageWalter Sylvester PageWalter Page (born February 9, 1900, Gallatin, Missouri, USA – died December 20, 1957, New York City, New York, USA) was an American jazz multi-instrumentalist and bandleader, best known for his groundbreaking work as a double bass player with [a2392043] and the [a253011].Needs Votehttps://en.wikipedia.org/wiki/Walter_Pagehttps://www.britannica.com/biography/Walter-Pagehttps://www.artofslapbass.com/walter-page/https://www.allmusic.com/artist/walter-page-mn0000192415/biographyhttps://www.wbgo.org/post/venture-beyond-walking-bass-line-all-american-walter-page-deep-dive#stream/0https://www.wbgo.org/music/2018-04-04/venture-beyond-a-walking-bass-line-with-the-all-american-walter-page-in-deep-divehttps://adp.library.ucsb.edu/names/106498Joe PagePageW, PageW. PageW. PaigeWalter PaigeWalther PageУолтер ПейджCount Basie OrchestraHarry James And His OrchestraCount Basie ComboKansas City SixBenny Goodman SextetBillie Holiday And Her OrchestraCount Basie And The Kansas City SevenSidney Bechet And His Blue Note Jazz MenBennie Moten's Kansas City OrchestraCount Basie BandCount Basie, His Instrumentalists And RhythmThe New Orleans FeetwarmersTeddy Wilson And His OrchestraBenny Goodman And His OrchestraJones-Smith IncorporatedBenny Goodman SeptetPaul Quinichette QuintetFrank Newton And His OrchestraBuck Clayton With His All-StarsThe Count Basie TrioJulia Lee & Her Boy FriendsCount Basie SextetHal Singer SextetThe Mel Powell SeptetMildred Bailey And Her OrchestraSidney Bechet & His Circle SevenEddie Condon And His All-StarsSir Charles Thompson QuartetJay McShann And His Kansas City StompersBasie's Bad BoysKansas City FiveSidney Bechet's SevenThe Ralph Sutton QuartetRuby Braff OctetWalter Page's Blue DevilsVic Dickenson SeptetCount Basie Blue FiveCount Basie QuintetRoy Eldridge & His Central Plaza DixielandersJack Teagarden's Dixieland BandThe Count Basie QuartetEddie Condon And His Dixieland BandTimme Rosenkrantz And His Barrelhouse BaronsCount Basie And His All-American Rhythm SectionWillie "The Lion" Smith QuartetPaul Quinichette SeptetBenny Goodman Jam SessionGatemouth Moore's All Star Band + +272652John DukeBassist.Needs VoteCount Basie OrchestraBobby Bryant SextetAl Grey Jazz All StarsThe Al Grey – Jimmy Forrest Quintet + +272653Bobby PlaterRobert PlaterAmerican jazz alto saxophonist and flutist, born 13 May 1914 in Newark, New Jersey, died 20 November 1982 in Lake Tahoe, Nevada. +Correcthttps://adp.library.ucsb.edu/names/100152B. PlaterB. PlatterB.PlaterB.PlatterBob PlaterBobby "Jersey Bounce" PlaterBobby PlatterD. PlaterD. PlatterPlaterPlatherPlatterR. PlaterRobert "Bobby" PlaterRobert PlaterRobert PlatterПлейтерCount Basie OrchestraLionel Hampton And His OrchestraCount Basie Big BandLionel Hampton & His Big BandBobby Plater's OrchestraSavoy Dictators + +272654Danny TurnerJames Daniel Turner.American jazz saxophonist and flutist. + +Born : March 08, 1920 in Farrell, Pennsylvania. +Died : April 14, 1995 in New York City, New York. +Needs VoteD. TurnerDan TurnerDangerous DanDaniel TurnerDanny (Mr. Alto) TurnerDanny Turner (Also Known As Dangerous Dan)J. Daniel TurnerJames TurnerTurnerダニー・ターナーCount Basie OrchestraThe Bobby Cook QuartetteJimmy McGriff Organ And Blues BandChris Powell And The Five Blue FlamesDoc Bagby's Orchestra + +272655Al GreyAlbert Thornton GreyAmerican jazz trombone player, born June 6, 1925 in Aldie, Virginia, USA - died March 24, 2000 in Phoenix, Arizona, USA. +Needs Votehttps://en.wikipedia.org/wiki/Al_Greyhttps://www.ijc.uidaho.edu/grey_al/bio.htmlhttps://www.allmusic.com/artist/al-grey-mn0000931891https://nmaahc.si.edu/object/nmaahc_2012.164.162https://www.imdb.com/name/nm3891104/https://adp.library.ucsb.edu/names/318919A. GreyA. T. GreyA.G.A.GreyAl GrayAlbert GrayAlbert GreyAlbert T. GreyGray, AlGreyЭл ГрейЭл ГрэйQuincy Jones And His OrchestraCount Basie OrchestraThe Ray Bryant ComboThe Chocolate DandiesLionel Hampton And His OrchestraDizzy Gillespie Big BandBenny Carter And His OrchestraSy Oliver And His OrchestraCount Basie Big BandAl Grey And His OrchestraJon Hendricks And The All-StarsJesper Thilo QuintetThe Frank Wess - Harry Edison OrchestraOscar Pettiford OrchestraRay Brown's All StarsTrombone SummitThe Al Grey - Billy Mitchell SextetThe Leiber-Stoller Big BandThe Al Raymond Big BandAl Grey All StarsBenny Carter & His Chocolate DandiesPaul Quinichette And His SwingtetteAl Grey Jazz All StarsThe Clark Terry SpacemenAl Grey And The Basie WingAl Grey / Jimmy ForrestThe Jazz Swing All StarsAl Grey & FriendsThe Al Grey – Jimmy Forrest Quintet + +272656Jimmy ForrestJames Robert ForrestAmerican jazz saxophonist (tenor) and composer. +Born : January 24, 1920 in St. Louis, Missouri. +Died : August 26, 1980 in Grand Rapids, Michigan + +Worked with : Eddie Johnson (pianist), Fate Marable, Don Albert, Jay McShann, Andy Kirk, Duke Ellington, Harry "Sweets" Edison, Count Basie, Al Grey and many others. His best known composition was 'Night Train', composed with [a=Lewis Simpkins] and [a=Oscar Washington]. + +At the time of his death, Forrest and Al Grey were the leaders of the [a2009728]. + +Needs Votehttps://adp.library.ucsb.edu/names/203331ForestForrestForrest, JimmyG. ForestGimmy ForrestJ ForrestJ, ForrestJ. ForestJ. ForrestJ.ForrestJames ForestJames ForrestJames Robert "Jimmy" Forrest Jr.James Robert „Jimmy“ Forrest, jr.Jim ForrestJimmie ForestJimmie ForrestJimmy "Night Train" ForrestJimmy "Nighttrain" ForrestJimmy (Night Train) ForrestJimmy ForestJimmy Forest And All Star ComboJimmy ForresJimmy Forrest And All Star ComboJimmy Forrest And His Allstar ComboJimmy Forrest and All-Star ComboJimmy ForresterJimmy ForrostJimy ForrestY. Forrestジミー・フォレストCount Basie OrchestraAndy Kirk And His OrchestraThe Jimmy Forrest QuintetThe Mainstream SextetThe Harry "Sweets" Edison QuintetThe Prestige Blues-SwingersAl Grey Jazz All StarsAl Grey / Jimmy ForrestJo Jones And His OrchestraJimmy Forrest And His All Star ComboJo Jones SextetJimmy Forrest OrchestraThe Al Grey – Jimmy Forrest Quintet + +272657Mel WanzoMelvin WanzoAmerican jazz trombonist; born November 22, 1930 in Cleveland, Ohio, died September 9, 2005 in Detroit, Michigan. +Mel spent over 40 years on the road playing and recording with many great jazz artists, including Duke Ellington, Ella Fitzgerald, Frank Sinatra and Sarah Vaughan. He is most widely known as the longtime lead trombonist for the Count Basie Orchestra (1969-1996). + + +Needs VoteM. F. WanzoM.F. WanzoMelvin F. "Mel" WanzoMelvin WanzoCount Basie OrchestraWoody Herman And His OrchestraCount Basie Big BandWoody Herman And The Swingin' HerdWoody Herman And The Thundering HerdThe Los Angeles City College Jazz Band + +272658Dennis WilsonDennis Edward WilsonTrombonist and arranger (born July 22, 1952 in Greensboro, North Carolina) who has received a Grammy Award nomination for arrangements created for Manhattan Transfer and performed on over six Grammy Winning Albums with the [a=Count Basie Orchestra]. His experience includes work with many jazz greats including [a=Sarah Vaughn], [a=Frank Sinatra], [a=Ella Fitzgerald], [a=Clark Terry], and [a=Joe Williams]. + +[b] >> For the drummer/singer of The Beach Boys, use [a=Dennis Wilson (2)] << [/b] +[b] >> For the session singer, use [a=Dennis Wilson (3)] << [/b]Needs Votehttp://www.denniswilson.org/https://musicians.allaboutjazz.com/denniswilsonhttp://www.music.umich.edu/faculty_staff/bio.php?u=dwjazzD. WilsonDennis Edward WilsonCount Basie OrchestraThe Carnegie Hall Jazz BandThe Frank Wess Orchestra + +272659Sonny CohnGeorge Thomas CohnAmerican jazz trumpeter, born March 14, 1925 in Chicago, Illinois, died November 7, 2006 in the same city. +Played 1945-1959 with [a=Red Saunders], joined [a=Count Basie] in 1960, soon becoming a mainstay of the band's trumpet section, staying until Basie's death in 1984. +Needs Votehttp://en.wikipedia.org/wiki/Sonny_Cohnhttps://adp.library.ucsb.edu/names/309051CohnG. CohnGeorge "Sonny" CohnGeorge 'Sonny' CohnGeorge (Sonny) CohnGeorge CohnS. CohnSammy CohnSonny (Sonny) CohnSonny Cohenソニー・コーンGeorge CottenCount Basie OrchestraTab Smith OrchestraCount Basie Big BandRed Saunders & His OrchestraThe Eric Dixon SextetGus Chappell And His Orchestra + +272660Bobby MitchellRobert E. Mitchell, Jr.Jazz trumpet player, born May 23, 1935, in Birmingham, Alabama. +Played with Earl Hines 1972-1974, then joining Count Basie. + +Not to be confused with trumpet player [a=Bob Mitchell (2)].Needs VoteB. MitchellMitchellRobert Mitchell JrCount Basie Orchestra + +272661Waymon ReedWaymon Reed (January 10, 1940, Fayetteville, North Carolina - November 25, 1983, Nashville, Tennessee) was an American jazz and R&B trumpet and flugelhorn player. +He was [a=Sarah Vaughan]'s third husband (1978-1981).Needs Votehttp://en.wikipedia.org/wiki/Waymon_ReedReedW. ReedWayman ReddWayman ReedWayman ReidWaymon ReidWaymond ReedWilliam ReedCount Basie OrchestraCount Basie Big BandNational Jazz EnsembleThe Butch Miles SextetThad Jones & Mel Lewis + +272662Charlie FowlkesCharles Baker FowlkesBaritone saxophone player, who played for more than 25 years with Count Basie.He was born Feb 16, 1916 in New York and died Feb 9, 1980 in Dallas, Texas, USA. + +Not to be confused with singer and bassist [a=Charles Baker Fowlkes]. + + +Needs Votehttp://jazzbarisax.com/baritone-saxophonists/pre-bop-style/charlie-fowlkes/https://en.wikipedia.org/wiki/Charles_Fowlkeshttps://www.allmusic.com/artist/charlie-fowlkes-mn0000171831/biographyhttps://adp.library.ucsb.edu/names/203364C FowlkesC. B. FowlkesC. FawlkesC. FowlkesCha lie FowlkesCharlei FowlkesCharles Baker FowlkesCharles FawkesCharles FolkesCharles FowkesCharles FowlkesCharles Fowlkes Jr.Charley FowlkesCharlie FawlkesCharlie FolkesCharlie FoulkesCharlie FowklesCharlie FowlksCharlies FowlkesChas B. FowlkesChas. B. FowlkesChas. Baker Fowlkesチャーリー・フォールクスCount Basie OrchestraLionel Hampton And His OrchestraPaul Quinichette And His OrchestraCount Basie Big BandBuck Clayton With His All-StarsThe Johnny Griffin OrchestraThe Leiber-Stoller Big BandThe Frank Wess SeptetCount Basie And His Nonet + +272663Lyn BivianoFranklin Biviano.American jazz trumpeter. +Born: September 23, 1946 in Clearfield, Pennsylvania. . + +Lyn worked with Lawrence Welk, Woody Herman, Buddy Rich, Maynard Ferguson, Harry James, Frank Sinatra and many others.Needs Votehttp://www.linbiviano.com/https://en.wikipedia.org/wiki/Lin_BivianoFranklin BivianoLin BivianoLinn BivianoLynn BivianoCount Basie OrchestraWoody Herman And His OrchestraBuddy Rich And His OrchestraWoody Herman And The Swingin' HerdThe Al Raymond Big Band + +272664Eric DixonAmerican jazz tenor saxophonist and flutist, born 28 March 1930, Staten Island, New York, died 19 October 1989 in New York City, USA. + +Needs Votehttps://adp.library.ucsb.edu/names/202649DixonE. DicksonE. DixonEric DaconЭрик ДиксонQuincy Jones And His OrchestraCount Basie OrchestraCount Basie And The Kansas City SevenCount Basie Big BandOliver Nelson And His OrchestraThe Mal Waldron SextetThe Quincy Jones Big BandThe Eric Dixon SextetFrank Foster SextetMal Waldron Septet + +272665Freddie GreenFrederick William GreenAmerican swing and bop jazz guitarist. +Born: March 31, 1911 in Charleston, South Carolina. +Died: March 01, 1987 in Las Vegas, Nevada. + +From 1937 until his death in 1987, aged seventy-five, Freddie Green occupied the rhythm guitar chair in various ensembles led by pianist [a145262], backing celebrated players such as saxophonist [a258433], clarinetist [a254768], and vocalist [a33589], to name a few. + +«When he played with Count Basie, everyone knew that Freddie Green was half the orchestra on his own, the man who helped the band breathe. He was the "working lung", and as an accompanist he played "four-to-the-bar" like nobody else. The secret of his swinging lightness lay in the fact that he didn't play all the strings, merely three or four of them.» [Philippe Baudoin] +Needs Votehttps://en.wikipedia.org/wiki/Freddie_Greenhttp://www.freddiegreen.org/https://www.radioswissjazz.ch/en/music-database/musician/141931534c8f50171049766d040ab265d3246/biographyhttps://adp.library.ucsb.edu/names/318803F. GreenF. GreeneF.GreenFGFr. GreenFrank GreenFred GreenFreddi GreenFreddie Green ComboFreddie GreeneFreddie GreenieFreddie GreenyFreddie GreneFreddy GreenFreddy GreeneFreddy W. GreenFrederick "Freddie" William GreenFrederick GreenFrederick William "Freddie" GreenFredie GreeneFredy GreenFreedie GreeneFreedy GreenGreenGreeneGreenyWilliam "Freddie" GreenФ. ГринФредди Гринフレディグリーンフレディ・グリーンQuincy Jones And His OrchestraCount Basie OrchestraCount Basie ComboWoody Herman And His OrchestraMetronome All StarsKansas City SixBillie Holiday And Her OrchestraCount Basie And The Kansas City SevenLionel Hampton And His OrchestraCount Basie BandAndy Kirk And His Clouds Of JoyCount Basie, His Instrumentalists And RhythmTeddy Wilson And His OrchestraIllinois Jacquet And His OrchestraGlenn Hardman And His Hammond FiveBenny Goodman SeptetIllinois Jacquet And His All StarsPaul Quinichette QuintetCharlie Parker Big BandGeorge Treadwell And His All StarsThe Kansas City SevenCount Basie Big BandLester Young And His BandLester Young QuintetFrank Newton And His OrchestraBuck Clayton With His All-StarsCount Basie SextetThe Ernie Wilkins OrchestraCharlie Parker With StringsMildred Bailey And Her OrchestraDickie Wells And His OrchestraAl Cohn's Natural SevenWoody Herman And The Swingin' HerdTeddy Stewart OrchestraThe Prestige All StarsJoe Newman OctetSir Charles Thompson QuartetAl Cohn And His OrchestraBasie's Bad BoysCount Basie OctetGene Roland SextetJoe Sullivan And His Café Society OrchestraSeldon Powell SextetKansas City FiveThe Nat Pierce OrchestraThe Jazz Giants '56Larry Sonn OrchestraFreddie Green And His OrchestraGeorge Williams And His OrchestraThe Joe Newman SeptetPaul Quinichette SextetBillie Holiday And Her Lads Of JoyGerry Mulligan And The Sax SectionZoot Sims - Bob Brookmeyer OctetPee Wee Russell RhythmakersCount Basie QuintetNew York StarsThe Urbie Green OctetRuby Braff's All-StarsThe Count Basie QuartetGerry Mulligan OctetBuddy Rich All StarsPaul Quinichette And His SwingtetteKarl George OctetCount Basie And His All-American Rhythm SectionBuddy Rich EnsembleCount Basie And His Kansas City FiveFreddie Green And The Kansas City SevenCount Basie And His NonetPaul Quinichette SeptetBenny Goodman Jam SessionThe Butch Miles Octet + +272667Bobby DurhamRobert Johnson DurhamBorn 3rd February 1937 Philadelphia, Ohio, USA, died 6th July 2008 Genoa, Italy +American jazz drummer later settling in Europe, basing himself between Genova and Basel. Bob Durham played with [a=Lionel Hampton], [a=Wild Bill Davison], [a=Slide Hampton] and accompagned [a=Duke Ellington] on a tour in 1967. Afterwards he joined [a=Oscar Peterson]: thus rounding out the new 'dream trio'. +Needs Votehttps://myspace.com/bobbydurhamhttps://en.wikipedia.org/wiki/Bobby_Durham_(jazz_musician)B. DurhamBob DurhamBobby DurhanDurhamRobert "Bobbie" DurhamRobert "Bobby" DurhamRobert Joseph DurhamThe Oscar Peterson TrioDuke Ellington And His OrchestraTommy Flanagan TrioThe Monty Alexander TrioClark Terry SextetMassimo Faraò TrioEnzo Randisi QuartettoRoy Eldridge 4The Oscar Peterson Big 4Charlie Earland TrioAl Grey Jazz All StarsJazz Lounge (2)Bobby Durham TrioPete Minger QuartetThe Trio (14)Just In Time QuartetThe Basie AlumniHarry Edison SixLee Brown QuartetThe Al Grey – Jimmy Forrest Quintet + +272685Eddie "Lockjaw" DavisEdward F. Davis, Jr.Self-taught American jazz and rhythm & blues tenor saxophonist, born March 2, 1922 in New York City, New York, died November 3, 1986 in Culver City, California. +Davis played with Cootie Williams (1942-1944), Lucky Millinder, Andy Kirk (1945-1946), Louis Armstrong, Count Basie (1952-1953, 1957 & 1964-1973), Shirley Scott (1955-1960), Johnny Griffin, Harry "Sweets" Edison and others, and in own groups. +Needs Votehttps://en.wikipedia.org/wiki/Eddie_%22Lockjaw%22_Davishttps://johnnygriffineddielockjawdavis.bandcamp.com/https://www.jazzarcheology.com/artists/sedition_tenorsax_1940_1944.pdfhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=82431&subid=0https://adp.library.ucsb.edu/names/103111"Lockjaw" Davis'Lockjaw' DavisDavisE. DavisE. Davis Jr.E. Davis, Jr.E.L. DavisEddi "Lockjaw" DavisEddie "Lock Jaw" DavisEddie "Lockjaw" Davis And His Tenor SaxEddie "Lockjaw) DavisEddie "Lockwood" DavisEddie "Lokjaw" DavisEddie 'Lockjaw' DavisEddie 'Lockjaw. DavisEddie (Lockjaw) DavisEddie - "Lockjaw" DavisEddie DaviesEddie DavisEddie Davis JrEddie Davis Orch.Eddie EavisEddie F. DavisEddie L. DavisEddie Lockjaw DavisEddie «Lockjaw» DavisEddie “Lockjaw” DavisEddie „Lockjaw“ DavisEddy "Lockjaw" DavisEddy 'Lockjaw' DavisEddy (Lockjaw) DavisEddy DavisEddy Lockjaw DavisEdward Davis JrEdward Davis Jr.JawsL. DavisLockjawLockjaw DavisЭ. Л. ДэвисЭдди "Локджо" Дэвисエディ・デイヴィスQuincy Jones And His OrchestraClarke-Boland Big BandCount Basie OrchestraGerald Wilson OrchestraLucky Millinder And His OrchestraEddie Davis And His BeboppersCount Basie Big BandEddie Lockjaw Davis OrchestraThe Dizzy Gillespie Big 7The Prestige All StarsEddie "Lockjaw" Davis TrioThe Gene Krupa SextetEddie "Lockjaw" Davis Big BandEddie Lockjaw Davis QuartetThe Eddie Davis-Johnny Griffin QuintetCootie Williams SextetThe Benny Carter GroupEddie "Lockjaw" Davis 4Bennie Green SeptetEddie Davis ComboThe Eddie "Lockjaw" Davis QuintetEddie "Lockjaw" Davis And Rhythm SectionEddie Davis And His BandDinah Washington & The All-Stars + +272743Robert AshtonJazz saxophonist, clarinetist and flautist.Needs VoteBob AshronBob AshtonRobert AshionRobert Hashtonボブ・アシュトンCootie Williams And His OrchestraOliver Nelson And His OrchestraJimmy McGriff Organ And Blues BandJimmy Smith And The Big Band + +272745Max PollikoffAmerican violinist and session musician, born in 1904 in New Jersey and died in 1984. +Needs VoteMax PolikoffMax PolitikoffMax PollicoffMax PollikofMax PollokoffMaz PollikoffPollikoff MaxThe Philadelphia OrchestraHugo Montenegro And His OrchestraLuv You Madly Orchestra + +272747Ray BeckensteinAmerican jazz saxophonist, flutist and multi-reed player +Played with Bobby Sherwood, Bob Chester, Benny Goodman, Orrin Tucker, George Paston, Artie Shaw, Shep Fields, Frank Sinatra and many others. + +Born August 14, 1923 in New York City, New York, died August 24, 2009 in New York City, New YorkNeeds Votehttps://www.allmusic.com/artist/raymond-beckenstein-mn0001186056/biographyBeckensteinRay BackensteinRay BecksteinRaymond Beckensteinレイ・ベッケンスタインGil Evans And His OrchestraThe Jerry Ross SymposiumArt Farmer And His OrchestraManny Albam And His OrchestraUrbie Green And His Big BandThe New York Saxophone QuartetThe Three Deuces Musicians + +272756Jimmy OwensJames Robert Owens juniorAmerican Jazz trumpeter, composer, arranger and educator. + +Born: December 9, 1943 in New York City, USA.Needs Votehttp://jimmyowensjazz.com/https://en.wikipedia.org/wiki/Jimmy_Owens_(musician)J. OwensJimmie OwensJimmy Owens & GroupJimmy Owens - The Quartet – PlusOwensジミー・オーウェンズDizzy Gillespie Big BandGerald Wilson OrchestraGary Bartz QuintetArs Nova (3)The Dizzy Gillespie Reunion Big BandThe Errol Parker ExperienceMingus DynastyPaul Jeffrey QuintetCharles Mingus OctetThe Jimmy Owens - Kenny Barron QuintetThe Booker Ervin SextetSwingTime (2)Hubert Laws Septet + +272758David SchwartzAmerican violist and music instructor, born 18 June 1916, died 5 June 2013.Needs Votehttps://www.facebook.com/David-Schwartz-Violist-200565969987339/https://en.wikipedia.org/wiki/David_Schwartz_%28violist%29https://www.legacy.com/obituaries/latimes/obituary.aspx?n=david-schwartz&pid=165361615https://adp.library.ucsb.edu/names/342767D. SchwartzD.SchwartzDave SchartzDave SchwartsDave SchwartzDave SxhwartzDavid SchartzDavid SwartzSchwartz DavidSgt. Dave SchwartzДэвид ШварцGlenn Miller And The Army Air Force BandThe Cleveland OrchestraMilt Jackson & StringsThe Walden String QuartetYale QuartetPaganini QuartetThe Army Air Force Band + +272913Jean ToussaintAmerican jazz tenor and soprano saxophonist. born 27 July 1960 in Saint Thomas, U.S. Virgin Islands.Needs Votehttp://www.myspace.com/jeantoussaintJ. ToussaintJ.T.Jean ToussainToussaintArt Blakey & The Jazz MessengersNazaireContinuum (10)Jean Toussaint TrioGildas Scouarnec QuintetJean Toussaint's NazaireKirk Lightsey QuintetJean Toussaint 4 + +272929Joe BeckJoseph A. BeckAmerican jazz guitarist, born July 29, 1945 in Philadelphia, Pennsylvania, died July 22, 2008 in Woodbury, Connecticut + +For Nashville based songwriter and producer, please use [a746812].Needs Votehttps://en.wikipedia.org/wiki/Joe_Beckhttps://www.allmusic.com/artist/joe-beck-mn0000140752/biographyhttps://musicians.allaboutjazz.com/joebeckhttp://www.thelastmiles.com/interviews-joe-beck.phphttps://www.telegraph.co.uk/news/obituaries/2471086/Joe-Beck.htmlhttps://www.ascap.com/repertory#ace/writer/2463232/BECK%20JOSEPH%20ABackBeckJ. BeckJoeJos A. BeckJoseph A. BeckGil Evans And His OrchestraWhite ElephantWoody Herman And His OrchestraBuddy Rich Big BandJohn Berberian And The Rock East EnsembleThe Mike Mainieri QuartetThe John Berberian EnsembleThe Richard Davis TrioMike Mainieri & FriendsWoody Herman And The Thundering HerdJoe Beck TrioJoe Beck Quartet + +272931Sonny MorganHoward MorganPercussionist, born July 17, 1936 in Philadelphia.Needs VoteSunny MorganArt Blakey & The Jazz Messengers + +272946George BarnesGeorge BarnesAmerican swing jazz guitarist, born July 17, 1921 - South Chicago Heights, Illinois, USA - died September 5, 1977 - Concord, California, USA. +He started his professional career at the age of 12, when he received his musicians' union card, and toured throughout the Midwest. By the time he was 14, he was accompanying blues vocalists such as Big Bill Broonzy and Blind John Davis. On March 1, 1938, he recorded "Sweetheart Land" and "It's a Lowdown Dirty Shame" with Broonzy, the first commercial recordings of an electric guitar. Later in 1938, he was hired as a staff musician for the NBC orchestra, and became a featured performer on the radio shows National Barn Dance and Plantation Party. + +In 1940, Barnes released his first recording under his own name on Okeh Records, "I'm Forever Blowing Bubbles" backed with "I Can't Believe That You're In Love With Me". +Barnes was drafted into the Army in 1942. Immediately after his discharge in 1946, Barnes formed The George Barnes Octet. +He and his wife, Evelyn Lorraine Triplett, married in Chicago on January 17, 1947. +In 1951, Barnes was signed to Decca Records by Milt Gabler and moved from Chicago to New York City. In 1953, he joined the orchestra for the television show, Your Hit Parade. The band was conducted by Raymond Scott and Barnes was a featured soloist. Barnes, Scott, and vocalist Dorothy Collins (Scott's wife) also recorded together. +In addition to being a well-known jazz musician, Barnes also made a living as a New York studio musician, and played on hundreds of albums and jingles from the early 1950s through the late 1960s. Barnes was primarily a swing jazz guitarist, but could play in any style, as evidenced by his work on The Jodimars [2] Barnes participated in hundreds of pop, rock and R&B recording sessions: he was a regular guitar player on most of The Coasters' hit records produced by Jerry Leiber and Mike Stoller, he provided the guitar solo for the Connie Francis hit "Lipstick on Your Collar (song)," and he can be heard on The Drifters' version of "This Magic Moment" and Jackie Wilson's "Lonely Teardrops". + +Barnes recorded three albums for Mercury Records. The latter two recordings contained Barnes' unique orchestrations with 10 guitars, also known as his "guitar choir," which utilized the guitars as a horn section. They were two in a series of Mercury albums that used an early 1960's state-of-the-art recording technique known as "Perfect Presence Sound." +His albums with his guitar duo partner Carl Kress received national acclaim in the early 1960s. +After the 1965 death of Kress, Barnes formed another guitar duo with Bucky Pizzarelli. Their partnership lasted from 1969-1972, and they recorded two albums. +In 1973, Barnes created a partnership with cornetist Ruby Braff. +From 1973 until 1977, Barnes recorded several well-received albums for Concord Jazz under his own name, as well as with the quartet he had formed with Braff. +Barnes and his wife, Evelyn, had left New York City after his last European tour in 1975 to live and work in the San Francisco Bay Area. Barnes died of a heart attack in Concord, California in 1977, at the age of 56. + +Barnes' style took shape before the development of bebop, and he remained a swing stylist throughout his career. His lines were usually short, very melodic, bluesy and "inside" (i.e. diatonic) as compared to the chromaticism and long lines of bop era guitarists. His improvisations often employed call and response phrases, and his tone was clearer, cleaner and brighter than many other jazz guitarists (such as Joe Pass or Jim Hall) and reflected his "happy" approach to music. +Not long before his death, he recorded three live albums -- two produced from a concert at San Francisco club Bimbo's 365, the other at The Willows Theatre in Concord, California. The albums are good examples of his swinging, happy and often mischievous style. The albums also include his banter with the audience, and his introductions of tunes and his band, giving the listener a glimpse into his sense of humor. +In 1942, Barnes wrote the first electric guitar method, The George Barnes Electric Guitar Method, published by Wm. J. Smith. In 1961, he wrote and recorded for Music Minus One, George Barnes' Living Guitar Method; The Easy Way to Learn All the Chords and Rhythms and Ten Duets for Two Guitars (recorded with his partner Carl Kress). In 1965, he wrote How to Arrange for Solo Guitar, published by Peermusic. He also produced the first guitar course offered on cassette tape, The Great George Barnes Guitar Course, published in 1970 by Prentice Hall. +Needs Votehttp://www.gould68.freeserve.co.uk/barnesgeo1.htmlhttp://www.georgebarneslegacy.comhttps://en.wikipedia.org/wiki/George_Barnes_(musician)https://adp.library.ucsb.edu/names/104930BarnesG. BarnesGeo. BarnesGeorge Barnes And His Multi-RhythmsGeorge Barnes Y Sus GuitarrasGeorge Warren BarnesGeorges BarnesDominic LuigiEnoch Light And The Light BrigadeLouis Armstrong And His All-StarsWingy Manone & His OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraRay Anthony & His OrchestraJimmy McPartland And His DixielandersCootie Williams And His OrchestraSy Oliver And His OrchestraGeorge Barnes And His OctetThe Charleston City All-StarsLawson-Haggart Jazz BandPee Wee Erwin And His Dixieland All-StarsGeorge Barnes QuartetThe George Barnes Guitar ChoirBill Harris & His New MusicGeorge Williams And His OrchestraJazz Gillum And His Jazz BoysRuby Braff / George Barnes QuartetLou McGarity QuintetBarnes-Lesberg Orchestra2nd George Barnes QuartetThe Blue FiveJazz Renaissance QuintetDon Redman All StarsGeorge Barnes QuintetGeorge Barnes SextetThe AmblersStan Rubin And His Tigertown OrchestraSnapper Lloyd And His OrchestraGeorge Barnes And His Chorus And OrchestraGeorge Barnes Y Su Gran Orquesta De PercusionGeorge Barnes Y Su OrquestaGeorge Barnes Group + +272947Jack LesbergAmerican jazz bassist. +Born: February 14, 1920 in Boston, Massachusetts. +Died: September 17, 2005 in Englewood, New Jersey.Needs Votehttps://en.wikipedia.org/wiki/Jack_Lesberghttps://www.richardvacca.com/jack-lesberg-the-compleat-bassist/http://archive.boston.com/news/globe/obituaries/articles/2005/10/08/jack_lesberg_85_boston_jazz_bassist_orchestra_member/https://www.theguardian.com/news/2005/oct/17/guardianobituaries.artsobituaries1https://adp.library.ucsb.edu/names/205783J. LesbergJ.LesbergJack LesburgJack LessbergLesbergOriginal Dixieland Jazz BandEddie Condon And His OrchestraJack Teagarden And His Big EightBilly Butterfield And His OrchestraColeman Hawkins And His OrchestraWild Bill Davison And His CommodoresSidney Bechet And His New Orleans FeetwarmersBenny Goodman And His OrchestraGordon Jenkins And His OrchestraThe Kai Winding QuintetTerry Snyder And The All StarsEddie Condon And His All-StarsBilly Byers And His OrchestraThe Charleston City All-StarsThe Newport All StarsColeman Hawkins All StarsThe Jack Lesberg SextetGeorge Barnes QuartetThe Dan Barrett OctetBobby Byrne And His OrchestraMax Kaminsky And His Windy City SixMax Kaminsky And His Jazz BandDick Hyman And His QuintetMike Bryan And His SextetThe Warren Vaché SextetteEarl Hines And His All-StarsLou McGarity QuintetThe Ruby Braff TrioGeorge Brunies And His Jazz BandMel Davis SextetArt Hodes' Hot SevenJazz Renaissance QuintetJimmy McPartland's Hot Jazz StarsMax Kaminsky And His Dixieland BandGeorge Hartman And His OrchestraSarah Vaughan And Her OrchestraPee Wee Erwin's Dixieland EightBrad Gowans And His New York NineMax Kaminsky And His Dixieland BashersThe Lou Stein SextetPee Wee Erwin's JazzbandRalph Sutton And His AllstarsEddie Condon's N.B.C. Television Orchestra + +272982Scott LaFaroRocco Scott LaFaroBorn: April 3, 1936 in Newark, New Jersey +Died: July 6, 1961 in Flint (U.S. 20, Canandaigua-Geneva), New York + +American jazz double bassist. Played with Buddy Morrow (1955-'56), Chet Baker (1956-'57), Ira Sullivan, Barney Kessel, Cal Tjader, Benny Goodman, Bill Evans (Trio), Ornette Coleman, Stan Getz. His career was cut short when he died in an automobile accident at the age of 25.Needs Votehttps://en.wikipedia.org/wiki/Scott_LaFaroLa FaroLaFaroLaFaro/JacksonS. La FaroS. LaFaroS. LafaroS. LoFaroScott La FaroScott LafaroScott LeFaroScott LefaroScott Lo FaroScotty LaFaroScotty LeFaroСкотт Ла ФароСкотт Ля ФароThe Bill Evans TrioThe Ornette Coleman QuartetThe Ornette Coleman Double QuartetStan Getz QuartetCal Tjader SextetMarty Paich Big BandThe Buddy DeFranco SeptettePat Moran TrioHerb Geller & His All StarsCal Tjader - Stan Getz SextetThe Harold Land Quartet + +273239Ronald WhiteRonald Anthony WhiteAmerican musician, R&B/Soul singer and songwriter born April 5, 1939 and died August 26, 1995 (Detroit, Michigan). Original member of [a80124]. +Often credited as Ronnie White.Needs Votehttp://en.wikipedia.org/wiki/Ronald_Whitehttps://it.findagrave.com/memorial/11318004/ronald-whiteAnthony Ronald WhiteD WhiteD. WhiteDonald WhiteP. WhiteR WhiteR. WellsR. WhiteR.A. WhiteR.WhiteRobert WhiteRobinsonRolandRoland WhiteRon WhiteRonald "Ronnie" WhiteRonald A Anthony WhiteRonald A WhiteRonald A. Anthony WhiteRonald A. WhiteRonald Anthony WhiteRonald K. WhiteRonnieRonnie WhiteRonnie whiteW. RonaldW. WhiteW.WhiteWhiteThe MiraclesRon & Bill + +273256Mik CreeMik CreeCorrectDJ MuzzM CreeM. CreeM.CreeMick CreeMike CreeDynamic InterventionModulusChris C & Dynamic InterventionSol Ray & Dynamic InterventionNarcomaniacsJustin Bourne & Dynamic Intervention + +273394John Williams (4)John Towner WilliamsAmerican film composer, conductor, and pianist. + +Born February 8, 1932 in Floral Park, Long Island, NY, USA + +In a career spanning six decades, he has composed some of the most recognizable film scores in the history of motion pictures. Williams (often credited as "Johnny Williams") also composed the theme music for various TV programs in the 1960s. Williams was known as "Little Johnny Love" Williams during the early 1960s, and he served as music arranger and bandleader for a series of popular music albums with the singer [a=Frankie Laine]. His most typical style may be considered Neo-romanticism, with a notorious use of leitmotifs and orchestral grandeur (most iconically in the [i]Star Wars[/i] saga), but he has made also incursions in Impressionist, Expressionist or Experimental music, and also in progressive Jazz (his father was a jazz drummer and he began his career as a jazz pianist, often working with [a10529]). + +Williams has won five Academy Awards, four Golden Globe Awards, seven BAFTA Awards, and 21 Grammy Awards. As of 2023, he has received 53 Academy Award nominations, an accomplishment surpassed only by [a=Walt Disney] (59). His longtime collaboration with producers [a=Steven Spielberg] and [a=George Lucas] has been very fruitful and contributed to the growing popularity of score music. John Williams was honored with the prestigious Richard Kirk award at the 1999 BMI Film and TV Awards. + +Williams was inducted into the Hollywood Bowl Hall of Fame in 2000, and was a recipient of the Kennedy Center Honors in 2004. + +Williams is also the father of [a=Joseph Williams] and [a=Mark T. Williams]Needs Votehttps://en.wikipedia.org/wiki/John_Williamshttps://web.archive.org/web/20031125060629/https://www.johnwilliamscomposer.com/https://www.johnwilliams.org/https://www.jwfan.com/https://www.famouscomposers.net/john-williamshttps://web.archive.org/web/20031208025137/https://www.sonyclassical.com/artists/williams_composer/https://www.sonyclassical.com/artists/artist-details/john-williams-2https://www.naxos.com/person/John_Williams_23994/23994.htmhttps://www.imdb.com/name/nm0002354/J WilliamsJ, WilliamsJ. A. WilliamsJ. T. WilliamsJ. WilliamJ. WilliamsJ. Williams Jr.J.A. WilliamsJ.A.WilliamsJ.T. WilliamsJ.WiiliamsJ.WilliamJ.WilliamsJ.Williams Jr.J.ウィリアムズJhon WilliamsJimmy WilliamsJohhny WilliamsJohn "Johnny" WilliamsJohn P. WilliamsJohn T WilliamsJohn T. WilliamsJohn T. Williams, Jr.John TownerJohn Towner WilliamsJohn WiliamsJohn WilliamJohn William JR.John WilliamsJohn Williams JnrJohn Williams JrJohn Williams Jr.John Williams jJrJohn Williams, Jr.John WilliamsonJohn WillianJohn WillimsJohn. T. WilliamsJohnni WilliamsJohnny T. WilliamsJohnny WIlliamsJohnny WillamsJohnny WilliamsWilliamWilliam John TWilliamsWilliams JohnWilliams John TWilliams JohnsWilliams' JohnWilliams, John T.Williansג'ון וויליאמסจอห์น วิลเลี่ยมジョニー・ウィリアムスジョン・ウィリアムスジョン・ウィリアムズジョン・ウイリアムスジョン・ウィリアムズ約翰·威廉士約翰威廉士約翰威廉斯約賴威廉士John Towner (2)Henry Mancini And His OrchestraStanley Wilson And His OrchestraJohn Towner And His OrchestraJohnny Williams And His OrchestraMarty Paich And His Jazz Piano QuartetJohn Towner QuartetJohnny Williams Orchestra And ChorusJohn Williams And Co. + +273411Warren ZevonWarren William ZevonAmerican rock singer-songwriter and musician, born 24 January 1947 in Chicago, Illinois, USA, and died 7 September 2003 in Los Angeles, California, USA. +Was married to [a=Crystal Zevon]. Father of [a=Jordan Zevon] and [a=Ariel Zevon].Needs Votehttp://www.warrenzevon.comhttp://en.wikipedia.org/wiki/Warren_Zevonhttps://www.imdb.com/name/nm0955255/https://repertoire.bmi.com/Search/Catalog?num=wS%252feg8DRDNiIKnn8BRqFQg%253d%253d&cae=UfguRFdR9DhoQ56N5mFo3A%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22zevon%20warren%22%2C%22Sub_Search_Text%22%3A%22%22%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dhttps://www.allmusic.com/artist/warren-zevon-mn0000816900Double You ZeeMr. Warren ZevonMr. ZevonR.W.ZevonVarren ZevonW ZevonW ZevonW. W. ZevonW. ZelonW. ZevonW.W. ZevonW.ZevonWarrenWarren >ZevonWarren M. ZevonWarren W. ZevonWarren William ZevonWilliam Warren ZevonZebonZelonZevonウォーレン・ジボンウォーレン・ジヴォンStephen LymeSandy ZevonLyme & CybelleHindu Love GodsThe Motorcycle Abilene + +273615Jean-Claude BrialyJean-Claude BrialyActor born March 30, 1933, Sour El Ghozlane, Algeria and died May 30, 2007, Paris, France.Needs VoteAnna KarinaBrialyJ. C. BrialyJ.C. BrialyJean Claude BrialyLes EnfoirésLes Grosses Têtes + +273695Paolo ContePaolo ConteItalian singer-songwriter, composer and multi-instrumentalist, born 6 January 1937 in Asti, Piemont. Formed as jazz pianist; in 1962 with the [a=Paolo Conte Quartet], where his brother [a=Giorgio Conte] plays the drums, makes the recording debut (with the [l=Rca Italiana]). A lawyer by profession, in 1974 leaves definitively the "Forum", devoting himself to the artistic career and becoming an influential italian singer-songwriters, often author of music for other artists (also collaborating with [a=Adriano Celentano] and [a=Roberto Benigni]). In 2007 receives the honorary degree in painting from the [i]Academy of Fine Arts[/i] of Catanzaro for [i]"Razmataz"[/i], a multimedia opera. +Needs Votehttp://www.paoloconte.it/https://en.wikipedia.org/wiki/Paolo_ConteA. ConteC. ConteC. CostoC. PaoloC.PaoloCentaConteConte PaoloContoContreCostoDontęF. ConteP. ConteP. ContiP.ContePado CantéPaolo/ContePaul ContePaulo ConteRaolo ConteΠ. ΚόντεКонтеП. Контеאיטלקית: פ. קונטהפ. קונטהSolingoPaul Conte Quartet + +273804Aldo CiccoliniAldo CiccoliniFrench pianist, born August 15, 1925 in Naples, Italy, died February 1, 2015 in Asnières-sur-Seine, France. + +Ciccolini was most appreciated for his interpretations of [a=Maurice Ravel], [a=Claude Debussy] and [a=Erik Satie]. But also for his performances from less-known composers such as [a=Déodat De Séverac], [a=Jules Massenet], [a=Charles-Valentin Alkan] and Alexis de Castillon. He's also well known for his [a=Franz Liszt] performances. + +Aldo Ciccolini made a lot of recordings for [l=Pathé Marconi EMI], including the complete piano works of [a=Wolfgang Amadeus Mozart], [a=Ludwig Van Beethoven] and [a=Erik Satie]. + +He was awarded the Diapason d'Or for his recording of [a=Leoš Janáček]'s complete piano work for Abeille Music and [a=Robert Schumann]'s piano work on [l=Cascavelle]. +Correcthttp://en.wikipedia.org/wiki/Aldo_CiccoliniA CiccoliniA. CiccoliniA. ČikoliniCiccoliniАльдо Чикколиниアルド・チッコリーニ + +273806Augustin DumayAugustin DumayFrench violinist and conductor, born 1949 in Paris, France.Needs Votehttps://www.augustin-dumay.com/A. DumayAugustin DunayDumayオーギュスタン・デュメイSinfonia Varsovia + +273817Harry BelafonteHarold George Belafonte Jr.American singer, songwriter, actor and social activist born March 1, 1927, in Harlem, New York and died April 25, 2023, in Manhattan, New York. Father of [a=Shari Belafonte] and [a398581].Needs Votehttps://en.wikipedia.org/wiki/Harry_Belafontehttps://www.britannica.com/biography/Harry-Belafontehttps://www.biography.com/musician/harry-belafontehttps://www.imdb.com/name/nm0000896/https://www.allmusic.com/artist/harry-belafonte-mn0000952794A. BelafonteBelafontBelafonteBelafonte H.BelefonteBellBellafonteH BelafonteH BellafonteH! BelafonteH. Belaf.H. BelafontaH. BelafonteH. BelefonteH. BellafonteH.BelafonteH.BellafonteHarry BelafontieHarry BelefonteHarry BelfonteHarry BellafonteHary BelafonteHenery BellafonteHenri BelafonteJ. BellafonteMC BelafonteShary BelafonteГ. БелафонтеГарри Белафонтеべラフォンテハリー・ベラフォンテベラフォンテRaymond BellStephen SomvelUSA For AfricaBelafonte And The Coconut GrooveHarry Thomas (4) + +273858Pedro EstevanPedro Estevan began to study percussion at Madrid's Conservatory of Music. He then studied contemporary percussion with [a=Sylvio Gualda], African percussion with the Senegalese teacher [a=Doudou N'Diaye Rose], and tambourine technique with [a=Glen Velez]. +He is a founding member of The Percussion Group of Madrid, and has worked with many formations such as the National Orchestra of Spain, Radio Television of Spain, Madrid Symphony Orchestra, Gulbenkian of Lisbon, Orchestra of the 18th Century (directed by [a=Frans Brüggen]), Koan, Sacqueboutiers de Toulouse, Paul Winter Consort, Camerata Iberia, Anleut Música, Ensemble La Romanesca, [a=Ensemble Accentus], Sinfonye, La Real Cámara and Ensemble Baroque de Limoges. +As a concert soloist he has performed with the Orquesta de Cámara Nacional de España and with the Orquesta Reina Sofía, performing programmes of contemporary music. +As a composer, he produced the scores of "Alesio" by I. Garcâa May and of "La Gran Sultana" by Cervantes, directed by Adolfo Marsillach. He has also worked as musical director for Lluis Pasqual's production of "El Caballero de Olmedo" by Lope de Vega, and he has recorded the music for the film "El milagro de P. Tinto". +Needs Vote& More FriendsEstevanP. EstevanPedroPedro EstebanLe Concert Des nationsHespèrion XXIEnsemble AccentusIl Giardino ArmonicoSinfonyeHespèrion XXOrquesta De Las NubesLes Sacqueboutiers De ToulouseEnsemble KapsbergerMúsica EsporádicaLa Real CámaraAccademia Del PiacereRolf Lislevand EnsembleSeminario de Estudios de Música Antigua + +273883David Williams (2)David Larry WilliamsJazz/soul bassist, born September 17, 1946 in Trinidad. Also known as David "Happy" Williams. + +Apart from his jazz credits he was elemental in [l=AVI Records] of [a=Rinder & Lewis] fame. + +[b]NOTE: For the soul - disco funk guitarist of [a=Chanson] and session musician, please use [a=David Williams (4)][/b] +Needs Votehttp://davidhappywilliams.com/home.htmlD. WilliamsDave WilliamsDave Williams Inner CircleDavid "Happy" WilliamsDavid "Happy" WilliamsDavid 'Happy' WilliamsDavid WilliamsWilliamsThe BlackbyrdsRinlew AllstarsArt Pepper QuartetGeorge Adams - Don Pullen QuartetGeorge Cables TrioSteve Grossman QuartetWarne Marsh QuartetLarry Willis SextetKenny Barron TrioEkayaDuke Jordan QuartetCedar Walton QuartetCedar Walton TrioCedar Walton QuintetWarne Marsh QuintetFrank Morgan QuartetDavid Hazeltine TrioEastern RebellionKenny Barron QuintetSlide Hampton QuintetKenny Barron QuartetBilly Higgins QuintetThe Clifford Jordan Big BandFrancesco Cafiso New York QuartetDavid Hazeltine QuartetDonald Byrd SevenCharles McPherson QuartetHeads Of State (3)Invaders Steel OrchestraThe Cedar Walton Sextet + +273916Oscar BrashearOscar Jesse BrashearAmerican jazz trumpeter, born on 18 August 1944 in Chicago.; died July 7, 2023.Needs Votehttps://en.wikipedia.org/wiki/Oscar_Brashearhttps://www.imdb.com/name/nm0105377/https://www.youtube.com/watch?v=b7Ugb7r_tWohttps://adp.library.ucsb.edu/names/305431"Chache" (Oscar Brashear)BrashearBrashear OscarCha Che Oscar BrashearChacheChache (Oscar Brashear)Chaché (Oscar Brashear)O. BrashearOScar BrasherOscarOscar B.Oscar BarasheerOscar BashearOscar BrasbcarOscar BrashardOscar Brashear (Cache)Oscar Brashear (Chache)Oscar BrashearsOscar BrasheerOscar Brasheer (Che-Chi)Oscar BrasheersOscar BrasherOscar BrashfordOscar BrashmearOscar BrasiereOscar BrauscherOscar J. BrashearKarma (9)Count Basie OrchestraHenry Mancini And His OrchestraThe Clayton-Hamilton Jazz OrchestraBrass FeverHubert Laws GroupGerald Wilson Orchestra of The 80'sSteve Spiegl Big BandBilly Higgins QuintetTeddy Edwards Brasstring EnsembleThe Bob Belden EnsembleGerald Wilson Orchestra of The 90's"The Bird" Memorial Quintet + +273923Bill HoodWilliam Harrison HoodAmerican jazz multi-instrumentalist (saxophone, flute, clarinet, etc), born December 13, 1924 in Portland, Oregon, died December 1, 1992. +Brother of [a=Ernie Hood].Needs Votehttps://musicbrainz.org/artist/942bf0c4-d26e-4b24-ba96-fd04efa2e5cf/relationships?direction=1&link_type_id=148&page=1https://music.metason.net/artistinfo?name=Bill%20HoodHoodW. HoodWilliam H. HoodWilliam HoodWoody Herman And His OrchestraDizzy Gillespie Big BandShorty Rogers And His GiantsPete Rugolo OrchestraThe World Jazz All Star BandWoody Herman And The Swingin' HerdDick Grove Big BandMarty Paich Big BandShorty Rogers Big BandThe Mike Barone Big BandNeal Hefti And His Jazz Pops OrchestraThe Sax Maniacs (3) + +273983Bernard EstardyBernard Edgar Joseph EstardyFrench musician, arranger and sound engineer (19 November 1939, Charenton-le-Pont - 16 September 2006, Paris). + +He has recorded under plenty of monikers, electronic, experimental, dance and disco music. Co-founder and chief engineer at [l315699]. + +Needs Votehttp://www.myspace.com/bernardestardyhttps://fr.wikipedia.org/wiki/Bernard_EstardyB EstardyB. EstarbyB. EstardyB. EsthardyB. EstradyB. EsyardyB.EstardyBarnard EstardyBernardBernard EstarbyBernard EstardBernard EstardiBernard Estardy "Subway"Bernard EsterdyBernard LebaronBernie EstardarE. EstardyEstardyEstardy Bernard EdgarLe "Baron" EstardySubwayLa Formule Du BaronSubway (13)Le Baron (2)The BaronetLord SubwayUniversal EnergyL.E.B. HarmonyBanzaiiSoul Vibrations (3)Les GottamouBernard Estardy Et Son Orchestre + +274253John FrigoJohn Virgil FrigoBorn: 27th December 1916 Chicago, Illinois. +Died: 3rd July 2007 Chicago, Illinois. +American jazz violinist and bassist. Wrote the jazz standard Detour Ahead as part of the Soft Winds Trio with [a=Herb Ellis] and [a=Lou Carter]. Performed as a country fiddler on the National Barn Dance radio show for 13 years. +Father of [a=Derek Frigo] and [a=Rick Frigo]. + +Frigo was married twice and had one son with each wife. He was survived by his second wife, the former Brittney Browne, and one son, jazz drummer Richard "Rick" Frigo, who was born to his first wife, Dorothy Hachmeister. His other son, Derek John Frigo, who was born to Browne, was the lead guitarist for the rock band Enuff Z'nuff. Derek Frigo died of a drug overdose on May 28, 2004.Needs Votehttps://en.wikipedia.org/wiki/Johnny_Frigohttps://adp.library.ucsb.edu/names/203436FergoFreigoFridgoFrigoFringeJ. FriegoJ. FrigoJ. FringoJ. FringolJ.FrigoJohn FreigoJohn V. FrigoJohnny Frigojohnny frigoCharlie Byrd QuintetJimmy Dorsey And His OrchestraThe Johnny Frigo SextetRichard Marx & His OrchestraDavid Carroll & His OrchestraCarl Stevens & His OrchestraMike Simpson And OrchestraBobby Christian And His OrchestraBob Davis QuartetJohn Frigo Orchestra And ChorusThe Johnny Frigo QuartetThe Neo-Passé Jazz BandJohnny Frigo GroupJohn Frigo And His QuintetChico Marx And His OrchestraRandy Sabien Jazz QuintetThe Sage RidersThe Soft Winds (2)Roy Kral & His QuintetJohnny Frigo Singers And OrchestraThe Roy Krall Quartet + +274325Erich Wolfgang KorngoldAustrian-American pianist, composer and conductor, born 29 May 1897 in Brünn, Moravia (today Brno, Czech Republic) and died 29 November 1957 in Los Angeles, California, USA. + +Father of [a850951], recording producer and music editor, and [a6807178].Needs Votehttps://www.korngold-society.org/https://en.wikipedia.org/wiki/Erich_Wolfgang_Korngoldhttps://www.imdb.com/name/nm0006157/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103375/Korngold_Erich_WolfgangCorngoldDer KomponistE. CeolsE. KorngoldE. W. KorngoldE.W. KorngoldErich KorngoldErich W KorngoldErich W. KorngoldErich Wolfg. KorngoldErich Wolfgang von KorngoldErich Wolfgang.KorngoldErich-Wolfgang KorngoldErik KorngoldKorngoldKorngold ErichKorngold)Korngold, Erich WolfgangWolfgang KorngoldPaul Schott + +274433Jay McShannJames Columbus McShannAmerican jazz pianist, singer, band leader and composer in Kansas City in the 1930s and '40s, best known as the band leader who helped launch the career of [a=Charlie Parker]. + +Born : January 12, 1916 in Muskogee, Oklahoma. +Died : December 07, 2006 in Kansas City, Missouri. +Needs Votehttp://www.jaymcshann.comhttp://en.wikipedia.org/wiki/Jay_McShannhttp://www.whosampled.com/Jay-McShann/https://www.allmusic.com/artist/jay-mcshann-mn0000225389/biographyhttps://www.arts.gov/honors/jazz/jay-mcshannhttps://www.imdb.com/name/nm0574546/https://adp.library.ucsb.edu/index.php/mastertalent/detail/206642/McShann_JayJ McShannJ. Mac ShannJ. Mc ShannJ. McShanJ. McShannJ. McShannohJay "Hootie" McShannJay 'Hootie' McShannJay Mac ShannJay MacShannJay Macc ShannJay Mc ShanJay Mc ShannJay Mc. ShannJay McShanJoy Mc ShannM. ShannM.C. ShannM.ShannMac ShannMacShannMacshannMc ShannMc. ShannMc.ShannMcSeumMcShanMcShaneMcShannMcSheumMcshaneMcshannParkerShannJay McShann And His OrchestraJay McShann QuartetJay McShann And The SextetJay McShann And His Kansas City StompersJay McShann OctetThe Jim Galloway QuartetSackville All StarsJay McShann & His BandJay McShann's TrioJay Mcshann And His Jazz-MenJay McShann, His Piano & OrchestraJim Galloway's Wee Big BandThe Jay McShann All Stars + +274478Mathis FischerViolinist and assistant concertmaster at [a833446].Correcthttp://www.staatsoper-berlin.de/de_DE/person/mathis-fischer.24457Staatskapelle Berlin + +274524Simon FischerBritish violinist.Needs Votehttps://www.simonfischeronline.com/https://en.wikipedia.org/wiki/Simon_Fischer_(musician)Simon FisherRoyal Philharmonic OrchestraLondon Festival Orchestra + +274525Leon BoschSouth African double bass player, born 7 July 1961 in Cape Town, South Africa, based in the UK.Needs Votehttp://www.leonbosch.co.uk/The London Session OrchestraThe Academy Of St. Martin-in-the-FieldsMichaelangelo Chamber OrchestraMarylebone CamerataThe Chamber Orchestra Of LondonEnsemble 360I Musicanti (3)The Music Group Of Manchester + +274530Lionel HandyBritish cellist.Needs Votehttp://www.ram.ac.uk/find-people?pid=569London SinfoniettaHanson String QuartetHartley Piano TrioMusicfest Trio + +274531Rebecca HirschBritish classical violinist. +She studied at the [l290263].Needs Votehttps://www.bach-cantatas.com/Bio/Hirsch-Rebecca.htmhttps://www.last.fm/music/Rebecca+Hirsch/+wikihttps://www.naxos.com/person/Rebecca_Hirsch/303.htmhttps://www.dacapo-records.dk/en/artists/rebecca-hirschhttps://www.theaudiodb.com/artist/149677Becca HirschHirschRebecca HirshRebecca HirxchRebecca IrschRepecca HirschRevecca HirschThe London Session OrchestraLondon Symphony OrchestraEnglish Chamber OrchestraLondon SinfoniettaThe Michael Nyman BandThe Taliesin OrchestraJoachim TrioCapricorn (14)Colin Towns Mask OrchestraThe John Wilson Orchestra + +274691Bob BeckerRobert BeckerNot to be confused with the Violist [a=Robert Becker] + +Born June 22, 1947 in Allentown, Pennsylvania. Generally considered to be one of the world's premier virtuoso performers on the xylophone and marimba. Becker has been a regular member of the ensemble Steve Reich and Musicians since 1973. + +As a founding member of the percussion ensemble NEXUS, he has been involved with the collection and construction of a unique multi-cultural body of instruments as well as the development of an extensive and eclectic repertoire of chamber and concerto works for percussion. Becker's performing experience spans nearly all of the musical disciplines where percussion is found. +Correcthttp://www.nexuspercussion.com/members/bob-becker/BeckerR. BeckerRobert BeckerБоб БеккерNexus (18)Steve Reich And Musicians + +274698Bruce Dukov[b]Bruce Dukov[/b] is an American classical violinist, the continuous [a=Hollywood Bowl Orchestra] concertmaster, and prolific studio session musician who has lived and worked in Los Angeles since 1985. Originally from New York, Dukov studied at the [l=Juilliard School] with [a9861736], earning his Bachelor's and Master's degrees. He spent about a decade in London before returning to the United States. Bruce Dukov recorded on over 1900 film and TV soundtracks and worked extensively as a studio soloist and string arranger, appearing on many popular recordings across genres, including [i][m=89639][/i] by [a=Sisqo], [a=Duran Duran]'s [i][m=87635][/i] album, and other songs by [a=Elvis Costello], [a=Natalie Cole], [a=Air Supply], [a=David Benoit], [a=Burt Bacharach], [a=Celine Dion], [a=B.B. King], [a=James Taylor (2)], and [a=Bette Midler]. He also occasionally appeared as a TV actor, playing [a=Pablo de Sarasate] in the 1984 [i]Sherlock Holmes[/i] series by [l=Granada Television].Needs Votehttps://www.brucedukov.comhttps://www.laphil.com/musicdb/artists/1571/bruce-dukovhttps://www.youtube.com/channel/UCne62GSWblFj94ZouOUeMgwhttps://www.imdb.com/name/nm0241261/B. DukovBruce D. DukovBruce DekovBruce DucovBruce DukoBruce DukoffBruce DukorBruce DukouBruce DukowBruce DukoyBurce DukovDuckov. BDukovDukov B.Dukov BruceDukov, BruceThe PCD OrchestraChris Walden Big BandLos Angeles Philharmonic OrchestraHollywood Bowl Orchestra + +274797Eugene WrightEugene Joseph Wright[b]For the gospel songwriter, see [a=Eugene Wright (2)][/b] +Jazz bassist, born on May 29, 1923 in Chicago, Illinois. Died December 30, 2020 in Los Angeles, California. +Wright led [a=Eugene Wright And His Dukes Of Swing] 1943-1946, and later worked with, among others, [a=Gene Ammons] 1946-1951, [a=Buddy DeFranco] 1953-1955 and [a=Red Norvo] 1955-1956. He is best known, however, as a member of [a=The Dave Brubeck Quartet], which he joined in 1958. Later Wright played in [a=The Monty Alexander Trio] (1971-1974).Needs Votehttps://en.wikipedia.org/wiki/Eugene_Wrighthttps://www.imdb.com/name/nm1308602/"Senator" Eugene Wright1-14, 17-20E. WrightE.WrightEugene "Gene" WrightEugene J. WrightEugene Joseph WrightEugene RightEugène WrightG. WrightGene WrightGene WrigtGene WrigthSam WrightSenator Eugene J. WrightSenator Eugene WrightWrightЮ. Райтיוג'ין רייטジーン・ライトThe Dave Brubeck QuartetThe Monty Alexander TrioSonny Stitt QuartetSonny Stitt BandLeo Parker's All StarsCal Tjader QuintetGene Ammons And His OrchestraGene Ammons QuintetThe Gerald Wiggins TrioCal Tjader QuartetGene Ammons QuartetBuddy DeFranco QuartetGene Ammons SextetBuddy Collette QuintetPaul Desmond And His FriendsVince Guaraldi QuartetJerry Dodgion QuartetThe Eugene Wright BandGene Ammons And His BandEugene Wright And His Dukes Of SwingGene Ammons - Sonny Stitt SeptetJimmy Dale Band + +274811Sandra ParkSandra ParkViolinist.Needs Votehttps://www.imdb.com/name/nm0661926/Sandra C. ParkSandra LarkSandra Park StringsSandra Park TremanteSandra ParksSandy ParkSandy ParksSandra Park TremanteNew York Philharmonic + +274813Sharon YamadaSharon YamadaAmerican classical violinist born in Los Angeles, California. She joined the New York Philharmonic in 1988.Needs Votehttps://twitter.com/sharonviolinyphttps://www.imdb.com/name/nm0945263/Sharon H. YamadaSharon YamataSharon YamedaSharon YimadaSharon YomadaNew York PhilharmonicNew York Chamber ConsortAvatar Strings + +274815Robert RinehartAmerican violist born in San Francisco, California. He joined the New York Philharmonic in 1992.Needs Votehttps://www.imdb.com/name/nm2763651/New York PhilharmonicNew York Chamber ConsortAvatar Strings + +274957Eddie GomezEdgar GómezJazz bassist. Born October 4, 1944 in Santurce, Puerto Rico.Needs Votehttps://myspace.com/eddiegomezbasshttps://en.wikipedia.org/wiki/Eddie_G%C3%B3mezhttps://adp.library.ucsb.edu/names/318173https://www.allmusic.com/artist/eddie-gomez-mn0000794244Andy GomezE. GomezE. GómezEddie GomesEddie Gomez Over The AcetonesEddie Gomez With FriendsEddie GómezEddie Gо́mezEddy GomezEddíe GómezEdgar GomezEdward GomezEiddie GomezGomezGómezЭдди ГомезSteps AheadThe Bill Evans TrioDavid Liebman TrioThe Jazz Composer's OrchestraBennie Wallace TrioThe Giuseppi Logan QuartetLee Konitz QuintetPaul Bley QuintetSteps (3)The Great Jazz TrioSteve Kuhn TrioThe Gadd GangWarren Bernhardt TrioManhattan Jazz QuintetGeorge Russell OrchestraJeremy & The SatyrsGordon Brisker QuintetNewport Youth BandMike Mainieri QuintetDavid Matthews TrioStefan Karlsson TrioEddie Gomez QuartetJack DeJohnette New DirectionsJoe Locke QuartetАндрей Кондаков ТриоThe Jack Wilkins QuartetMicheledonati JazztwelveThe Phil Markowitz TrioEddie Gomez TrioJack DeJohnette QuartetJeff Gardner TrioPhil Seamen TrioJoe Chambers & Trio DejaizCarli Muñoz, Eddie Gómez, Lenny White: The TrioBill Evans DuoThree Quartets BandTania Maria's Nouvelle VagueThe Girshevich Trio + +274971Julius WatkinsJulius B. WatkinsAmerican jazz French horn player and trumpeter, born 10 October 1921 in Detroit, Michigan, USA and died 4 April 1977 in Short Hills, New Jersey, USA +Played trumpet with [a=Ernie Fields (2)] 1943-1946 and [a=Milt Buckner] 1949-1950, thereafter exclusively French horn. +Needs Votehttp://en.wikipedia.org/wiki/Julius_Watkinshttps://adp.library.ucsb.edu/names/350145J. WatkinsJulian B WatkinsJulian WatkinsJulius "The Phantom" WatkinsJulius B. WatkinsJulius WalkerWatkinsジュリアス・ワトキンスQuincy Jones And His OrchestraGil Evans And His OrchestraThe Thelonious Monk QuartetDizzy Gillespie And His OrchestraThe Jazz Composer's OrchestraThe Thelonious Monk QuintetDizzy Gillespie Big BandTadd Dameron And His OrchestraOliver Nelson And His OrchestraMilt Jackson And Big BrassJazz ContemporariesThe Jazz ModesKenny Clarke And His CliqueBabs Gonzales And His OrchestraThe Manhattan Jazz All StarsCharles Mingus OctetThe Quincy Jones Big BandOscar Pettiford OrchestraOscar Pettiford And His Jazz GroupsJulius Watkins SextetThe Riverside Jazz StarsThe New Oscar Pettiford SextetOscar Pettiford's QuintetThe Blue Mitchell OrchestraAll Star Big BandThe Rouse-Watkins ComboMilton Jackson And His New GroupMilt Jackson SeptetThad Jones & Mel LewisArt Farmer TentetOscar Pettiford Big Band + +274975David TaylorAmerican trombonist +Born on June 6, 1944 in Brooklyn, New York, USANeeds Votehttps://www.davetaylor.net/https://myspace.com/davetaylortromboneD. TaylorDave TaylorDave Taylor`Dave TylorDaveTaylorDavid M. TaylorDavid PaylorTaylorTaylor David M.Tito Puente & His Concert OrchestraGil Evans And His OrchestraThe Charlie Calello OrchestraThe George Gruntz Concert Jazz BandLalo Schifrin & OrchestraLou Grassi's PoBandThe Mike Gibbs OrchestraPond Life (2)Mingus Big BandBob Mintzer Big BandThe Monday Night OrchestraThe Pond Life OrchestraSteve Swell - David Taylor QuartetDavid Taylor TrioDavid Taylor - Steve Swell QuintetSlide Hampton And The World Of TrombonesEos OrchestraJulius Hemphill Big BandThe LucifersJohn Fedchock New York Big BandRenolds Jazz OrchestraThe Tick HornsJohn La Barbera Big BandDMP Big BandArcana OrchestraKen Schaphorst Big BandManhattan Jazz OrchestraSteve Swell's Nation Of WeThe Carla Bley Big BandSuper TromboneThe Tom Talbert Jazz OrchestraThad Jones & Mel LewisManhattan New Music ProjectMichel Camilo Big BandRosi Hertlein's Improvising Chamber EnsembleManhattan BrassRich Shemaria Jazz OrchestraBig Colors Big BandThe New York Trombone QuartetThe Dave Taylor Octet + +274976Paul FauliseAmerican jazz trombone player, based in New Jersey, USANeeds Votehttp://www.trombone-usa.com/faulise_paul_bio.htmhttps://www.feenotes.com/database/artists/faulise-paul-1935-present/https://www.ibdb.com/broadway-cast-staff/paul-faulise-112682https://www.imdb.com/name/nm0269034/P. FaulisePaul F.Paul FalisePaul FaulicePaul FauliesPaul FaulisoPaul FaulissePaul FaulsiePaul FavliseQuincy Jones And His OrchestraDizzy Gillespie And His OrchestraOliver Nelson And His OrchestraRay Brown All-Star Big BandMilt Jackson OrchestraLew Davies And His OrchestraThe Kai Winding TrombonesUrbie Green And His OrchestraCollins-Shepley GalaxyDoc Severinsen And His OrchestraCannonball Adderley And His OrchestraThe Jazz Interactions OrchestraBill Russo And His OrchestraThe Philip Morris SuperbandArt Farmer And His OrchestraThe Quincy Jones Big BandJack Cortner Big BandAllen Keller And TrombonesAll Star Big BandThe BrassmatesUrbie Green And Twenty Of The "World's Greatest" + +274978Eddie BertEdward Joseph BertolatusAmerican jazz trombonist +Born: May 16, 1922 in Yonkers, New York +Died: September 27, 2012 in Danbury, Connecticut + +Eddie played with [a335577] (1940, first professional job), [a306398] (1941), [a212786], [a254768], [a200815], [a75617], [a145256], [a19594], [a145257], [a145262], [a257114], "[a999862]",[a239399], [a269594], among others.Needs Votehttp://www.eddiebertjazz.com/https://en.wikipedia.org/wiki/Eddie_Berthttps://www.allmusic.com/artist/eddie-bert-mn0000138481https://entities.oclc.org/worldcat/entity/E39PBJbM9FP3G49MGv4bDTWVYP.htmlhttps://rateyourmusic.com/artist/eddie_berthttps://www.imdb.com/name/nm8268404/https://adp.library.ucsb.edu/index.php/mastertalent/detail/304165/Bert_EddieBertE. BertEd BertEddieEddie BurtEddio BertEddy BertEdward BertX. KentoniteWoody Herman And His OrchestraThe Charles Mingus QuintetBuddy Rich And His OrchestraStan Kenton And His OrchestraBoyd Raeburn And His OrchestraElliot Lawrence And His OrchestraBenny Goodman And His OrchestraRed Norvo And His OrchestraLionel Hampton And His All-Star Alumni Big BandThe Thelonious Monk OrchestraUrbie Green And His OrchestraJohnny Richards And His OrchestraBill Russo And His OrchestraThe Elliot Lawrence BandThe Philip Morris SuperbandNew Pulse Jazz BandWoody Herman And His Third HerdThe J.J. Johnson And Kai Winding Trombone OctetAl Cohn And His "Charlie's Tavern" EnsembleGil Mellé QuintetThe Eddie Bert SextetSal Salvador SextetGil Mellé SextetSal Salvador And His OrchestraEddie Bert QuintetThe Tom Talbert Jazz OrchestraThad Jones & Mel LewisFrank Socolow's SextetEddie Bert QuartetStewart - Williams & Co.Eddie Bert DuoUrbie Green And Twenty Of The "World's Greatest"George Gee Big BandLoren Schoenberg And His Jazz OrchestraThe Band That Plays The BluesThe Eddie Bert - Gabe Baltazar QuintetThe Poll Cats + +274979Roland HannaRoland Pembroke HannaAmerican jazz pianist, composer, and educator. +Born February 10, 1932, Detroit, Michigan, USA +Died November 13, 2002, Hackensack, New Jersey, USA +Known for his virtuosic technique and lyrical improvisation, Hanna studied piano at Eastman School of Music and the Juilliard School. He first received attention in the 50s and 60s, performing with [a254768], [a200815], and [a8284]. A versatile musician, comfortable in solo, small group, and big band settings, Hanna’s style combined elements of classical music with jazz. In the 1970s, he co-founded the [a862747] and recorded extensively, both as a leader and a sideman. His compositions were often intricate and harmonically rich. Hanna was a dedicated educator, teaching at institutions such as the Aaron Copland School of Music at Queens College, (CUNY) in Flushing, NY where he was a professor of jazz studies. Known as Sir Roland Hanna from 1970 after receiving an honorary knighthood from the government of Liberia for the benefit concerts he performed in the country. Associated with publisher [l3051178].Needs Votehttps://www.rahannamusic.com/https://jazztimes.com/archives/roland-hanna-dies/https://en.wikipedia.org/wiki/Roland_Hannahttps://de.wikipedia.org/wiki/Roland_Hanna"Hac" HannaHac HannaHannaR. HannaR. HannahR.HannaRoland HannahRoland HannsRolland HannaRollin HannaRonna HannaSir Roand P. HannaSir Roland HannaSir Roland P. HannaThe Piano Of Roland HannaBenny Goodman And His OrchestraThe Duke Ellington OrchestraCharles Mingus And His Jazz GroupJohn Handy QuintetRoland Hanna TrioNew York Jazz QuartetMingus DynastyRoland Hanna QuartetJimmy Knepper SextetLouis Smith QuintetSeldon Powell SextetThe New Heritage Keyboard QuartetJimmy Knepper QuintetJesper Thilo QuartetThe Jazz Piano QuartetThad Jones & Mel LewisThe Basie AlumniSir Roland Hanna / Jesper Thilo - QuartetRichard Davis And Friends + +274980Maurice BrownCellist.Needs Votehttps://rateyourmusic.com/artist/maurice_brown_f1/credits/M. BrownMaurice BrowHugo Montenegro And His OrchestraColeman Hawkins And His OrchestraCharles Mingus And His Jazz GroupCharlie Parker With Strings + +274984Snooky YoungEugene Edward YoungAmerican jazz trumpet player (born February 3, 1919, Dayton, OH – died May 11, 2011, Newport Beach, California) + +brother of [a2782572] +Correcthttp://en.wikipedia.org/wiki/Snooky_Younghttps://www.allmusic.com/artist/jimmy-powell-mn0000087858/creditshttps://www.bluenote.com/artist/snooky-young/https://www.arts.gov/honors/jazz/eugene-edward-snooky-younghttps://www.imdb.com/name/nm0950070/biohttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/12097b2e87cdb546f9e18b9a2234facf15be1/biographyhttps://rateyourmusic.com/artist/snooky-younghttps://adp.library.ucsb.edu/names/351833"Snookie" Young"Snooky" Young'Snookie' YoungE. "Snooky" YoungE. YoungEugene "Snookie" YoungEugene "Snooky" YoungEugene 'Snookie' YoungEugene 'Snooky' YoungEugene (Snooky) YoungEugene E. "Snooky" YoungEugene E. YoungEugene Edward "Snookie" YoungEugene Edward YoungEugene Snooky YoungEugene T. YoungEugene YoungEugene «Snooky» YoungEugene «snooky» YoungEugène "Snooky" YoungGene "Snooky" YoungGene 'Snooky' YoungGene YoungS. YoungSmooky YoungSnookey YoungSnookie YoungSnookyW. YoungYoungJimmy Young (25)Quincy Jones And His OrchestraGil Evans And His OrchestraCount Basie OrchestraJimmie Lunceford And His OrchestraLionel Hampton And His OrchestraEarl Hines And His OrchestraHelen Humes And Her All-StarsThe World Jazz All Star BandOliver Nelson And His OrchestraRay Charles And His OrchestraLalo Schifrin & OrchestraThe Ernie Wilkins OrchestraMilt Jackson OrchestraMilt Jackson And Big BrassThe Gene Harris All Star Big BandThe Clayton-Hamilton Jazz OrchestraLouie Bellson Big BandGeorge Russell OrchestraThe Sweet Baby Blues BandThe Frank Wess OrchestraWilbert Baranco OrchestraThe Frank Wess - Harry Edison OrchestraArt Farmer And His OrchestraThe Quincy Jones Big BandSnooky Young SextetGerald Wilson Orchestra of The 80'sWilbert Baranco And His Rhythm BombardiersThe Concord All StarsSam Jones & Co.All Star Big BandPaul Quinichette And His SwingtetteSnooky Young SeptetThe Ray Bryant QuintetThe Bob Belden EnsembleThad Jones & Mel LewisGerald Wilson Orchestra of The 90'sDoc Severinsen And His Big BandHerbie Fields SwingstersHarry Edison Six + +274986Joe WilderAmerican jazz trumpet player and amateur photographer; born February 22, 1922 in Colwyn, Pennsylvania, died May 9, 2014 in Manhattan, New YorkNeeds Votehttps://en.wikipedia.org/wiki/Joe_Wilderhttps://www.theguardian.com/music/2014/may/18/joe-wilderhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/350880/Wilder_JoeJ. WilderJoeJoseph B. WilderJoseph WilderWilderジョ–・ワイルダーQuincy Jones And His OrchestraGil Evans And His OrchestraCount Basie OrchestraThe Will Bradley-Johnny Guarnieri BandDizzy Gillespie And His OrchestraLionel Hampton And His OrchestraRay Ellis And His OrchestraJim Timmens And His Jazz All-StarsLes Hite And His OrchestraOliver Nelson And His OrchestraThe Johnny Griffin OrchestraJoe Reisman And His OrchestraUrbie Green And His OrchestraThe Joe Wilder QuartetJimmy Smith And The Big BandGeorge Russell OrchestraJimmy Giuffre & His Music MenNational Jazz EnsembleSteve Allen And His All-StarsThe Quincy Jones Big BandTony Scott TentetBill Warfield Big BandPete Brown SextetteVic Schoen And His All Star BandThe Frank Wess SextetDon Redman All StarsDanny Mendelsohn OrchestraUrbie Green And His All-StarsThe Tom Talbert Jazz OrchestraLionel Hampton And His OctetJim Timmens And His Swinging BrassStewart - Williams & Co. + +274988Britt WoodmanBritt WoodmanBorn June 4, 1920, Los Angeles, California, died October 13, 2000, Hawthorne, California + +Trombonist who was a childhood friend of Charles Mingus. Played with Mingus as well as Miles Davis and Duke Ellington, among many others. +Brother of William [a1638931], Jr. & son of [a3026940]. +Needs Votehttps://en.wikipedia.org/wiki/Britt_Woodmanhttps://adp.library.ucsb.edu/names/351487B. WoodmanBill WoodmanBrit WhitmanBrit WoodmanBritt B. WoodmanBurt WoodmanWoodmanブリット・ウッドマンQuincy Jones And His OrchestraToshiko Akiyoshi-Lew Tabackin Big BandThe Miles Davis QuintetDizzy Gillespie And His OrchestraDuke Ellington And His OrchestraLionel Hampton And His OrchestraBoyd Raeburn And His OrchestraTadd Dameron And His OrchestraLes Hite And His OrchestraThe World Jazz All Star BandOliver Nelson And His OrchestraCharles Mingus Jazz WorkshopRay Brown All-Star Big BandJohn Fahey & His OrchestraJimmy Mundy OrchestraMingus Big BandThe Ellington All StarsJimmy Smith And The Big BandThe American Jazz OrchestraWilbert Baranco OrchestraDuke Ellington's SpacemenThe Quincy Jones Big BandDuke Ellington All Star Road BandThe Blue Mitchell OrchestraDMP Big BandAll Star Big BandThe Clark Terry SpacemenBill Berry And The LA BandThe Buddy Collette Big BandJohnny Hodges & His Big BandDameroniaBoyd Raeburn All-Stars + +274990Seymour BarabAmerican cellist (also pianist and organist) and composer. +Born: January 09, 1921 in Chicago, Illinois. +Died: June 28, 2014 in Manhattan, New York.Needs Votehttp://www.themusicofseymourbarab.com/BarabBarab SeymourS. BarabSaymour BarabSey Mour B.Seymore BabarbSeymore BarabSeymourSeymour Barab StringsSeymour BaratSeymour BaravSeymour BaribSeymour BárabSymour BarabCharles Mingus And His Jazz GroupThe Cleveland OrchestraIrving Spice's StringsNew York Pro MusicaThe Alan Lorber Orchestra + +275048Bill CrowWilliam Orval CrowAmerican jazz bassist, 27 December 1927 in Othello, Washington, USANeeds Votehttps://www.billcrowbass.com/https://en.wikipedia.org/wiki/Bill_Crowhttps://www.facebook.com/bill.crow2https://adp.library.ucsb.edu/names/310265B. CrowBill CroweBilly CrowCrowW. CrowWilliam Crowビル・クロウStan Getz QuartetStan Getz QuintetGerry Mulligan QuartetThe New Gerry Mulligan QuartetBob Brookmeyer QuintetGerry Mulligan & The Concert Jazz BandSam Most QuartetGerry Mulligan And His SextetArt Farmer QuartetClark Terry SextetBenny Goodman OctetAl Haig TrioThe Jay And Kai QuintetSims-Brookmeyer QuintetClark Terry / Bob Brookmeyer QuintetArt Simmons QuartetGeorge Wein And The Storyville SextetThe Claude Williamson TrioMarian McPartland's Hickory House TrioThe Teddy Charles GroupBill Crow QuartetGerry Mulligan Art Farmer QuartetMulligan Mania + +275172Erich WernerErich Werner-HeinkeGerman pianist, songwriter and band leader (* 18 January 1909 in Berlin, German Empire; † 13 November 1993).Needs Votehttps://www.rocknroll-schallplatten-forum.de/topic.php?t=9662B. WernerE. WernerE.WernerEric WernerErich Werner-HeinkeThomas WernerWernerWerner [Heinke]Pat SunRIAS TanzorchesterWerner Müller Und Sein OrchesterOrchester Erich Werner + +275265Jose MangualJosé Luis MangualPercussionist; born 18 March 1924 in Juana Diaz, Puerto Rico, died 4 September 1998. + +Father of percussionists [a=José Mangual Jr.] and [a=Luis Mangual]. +Influenced by Casino De La Playa, Septeto Puerto Rico and Issac Oviedo, Mangual mastered all the latín percussion instruments, bongos, congas and timbales, which lead to constant session work beginning in the late '40s, since his arrival in New York City. +Some of the albums Mangual has appeared on over the years include [a=Count Basie]'s 'April in Paris' (1955), [a=Miles Davis]' 'Sketches of Spain' (1959), [a=Dizzy Gillespie]'s 'Talkin' Verve' (1957), [a=Tito Puente]'s 'Babarabatiri' (1951), [a=Willie Bobo]'s 'Spanish Grease' (1965), [a=Gato Barbieri]'s 'Viva Emiliano Zapata' (1974), as well as numerous [a=Charlie Parker]'s compilations. +He has performed with [a=Miguelito Valdes], [a=Arsenio Rodriguez], Chano Pozo Percussion Quintet, [a=Stan Kenton], [a=Cal Tjader], [a=Eddie Palmieri], [a=Willie Bobo], [a=Count Basie Orchestra], [a=Dizzy Gillespie], [a=Herbie Mann], [a=Erroll Garner], [a=Sarah Vaughan], [a=Dexter Gordon], [a=Stan Getz], [a=Carmen McRae], [a=Jorge Dalto], [a=Ray Charles], [a=Louis Jordan], [a=Xavier Cugat], [a=Tito Rodriguez], & [a=Tito Puente], among others. +As a leader, Mangual first recorded the album 'Understanding Latin Rhythms, Vol. 1' (1974), which became one of the most popular learning tools for percussionists in over two decades and, in 1977, he released the LP 'Buyú', which clearly demonstrated his percussive strength and dedication to art.Needs VoteJ ManguelJ. MangualJoe Louis ManguelJoe MangualJose Louis MangualJose Luis MangualJose Luis ManqualJose Mangual Sr.Jose Mangual, Sr.Jose ManguelJose ManguhlJose MougalJose MougualJosé Luis MangualJosé MangualJosé ManguelJosé ManguhlJosė ManguhlJuse Luis MangualLouie MangualLuis Jose MangualLuis MangualMangualGil Evans And His OrchestraThe Charlie Parker QuintetCharlie Parker's JazzersMachito And His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraWoody Herman And His WoodchoppersWoody Herman And His Third HerdArt Farmer And His OrchestraMachito's Rhythm SectionLos MangualJoe Roland Sextet + +275268Harold FeldmanUS jazz woodwind playerNeeds VoteH. FeldmanHal FeldmanHarold FeldmannHarry FeldmanGil Evans And His OrchestraWoody Herman And His OrchestraVic Schoen And His OrchestraWoody Herman And His Third HerdWoody Herman And The Fourth HerdMichel Legrand Big Band + +275269Al BlockAlbert David BlockAmerican jazz saxophonist +Born 1925 or 1926, died 15 August 2015Needs Votehttps://de.wikipedia.org/wiki/Al_BlockAlbertAlbert BlockAlbert BockЭл БлокGil Evans And His OrchestraCharlie Parker And His OrchestraBenny Goodman And His OrchestraSauter-Finegan Orchestra + +275271Jack KnitzerWoodwind playerNeeds VoteGil Evans And His Orchestra + +275273Earl ChapinAmerican jazz French horn player +Born 1926, died January 21, 1997 in Greenfield, Massachusetts +Needs VoteEarl ChaplinEarl ChatinEarl ChopinEarl W. ChapinQuincy Jones And His OrchestraGil Evans And His OrchestraThe Quincy Jones Big BandThe Everest Woodwind Octet + +275274Frank RehakFrank J. RehakBebop trombonist who played with Miles, Coltrane, Gil Evans and many others, whose career was cut short due to heroin addiction. He cleaned up in 1969 at Synanon, and spent the rest of his life trying to help other addicts. + +Born July 07, 1926, New York City, died June 26, 1987, Badger, CaliforniaNeeds Votehttps://adp.library.ucsb.edu/names/339601Franck RehakFrank J. RehakFrank RebakFrank RehackFrank ReharkFrank RepackFrankie RehakRehakGil Evans And His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraDizzy Gillespie Big BandAndy Kirk And His Clouds Of JoyClaude Thornhill And His OrchestraSauter-Finegan OrchestraArt Blakey's Big BandManny Albam And His Jazz GreatsJoe Newman SextetMundell Lowe And His All StarsAl Cohn QuintetAl Cohn's Natural SevenThe Prestige All StarsFrank Rehak SextetUrbie Green And His OrchestraMiles Davis + 19The Woody Herman Big BandDoc Severinsen And His OrchestraThe Nat Pierce OrchestraJohnny Richards And His OrchestraGeorge Russell OrchestraRichard Wess And His OrchestraWoody Herman And His Third HerdWoody Herman And The Fourth HerdGeorge Williams And His OrchestraArt Farmer And His OrchestraThe Quincy Jones Big BandJimmy Rushing And His OrchestraThe Kai Winding OrchestraOscar Pettiford & His All StarsOrizaba And His OrchestraThe Mystery Band (3)Hal Schaefer And His OrchestraThe Leiber-Stoller Big BandChubby Jackson's Big BandSal Salvador And His OrchestraThe Ernie Wilkins GroupThe Bill Potts Big BandBay Bones Trombone Choir + +275276John BarrowsJohn R. BarrowsAmerican jazz (and classical) French hornist, composer and teacher +Born February 12, 1913 in Glendale, California, died January 11, 1974 in Madison, Wisconsin + +John played with : “Minneapolis Symphony” (1938), “New York City Opera” (1946-’49), “New York City Ballet” (1952-’55), “Casals Festival Orchestra” (1958-’61), and with such artists as Woody Herman, Miles +Davis and Billie Holiday. +Barrows taught at Yale (1957-’61), New York University (1958-’61), +and at the University of Wisconsin (at Madison) from 1961 to 1974.Needs Votehttps://adp.library.ucsb.edu/names/103530BarrowsJ. BarrowsJohn BarowsJohn BarrowJohn R. BarrowsJohnny BarrowsGil Evans And His OrchestraWoody Herman And His OrchestraWoody Herman & The HerdThe New York Horn Trio + +275277Eddie CaineEdwin CaineSaxophonist, flutist and woodwind playerNeeds VoteEd CaineEdwin CaineGil Evans And His OrchestraGerry Mulligan & The Concert Jazz BandMiles Davis + 19Randy Brooks and his orchestraCharles Mingus OctetBob Brookmeyer And His OrchestraMuggsy Spanier And His OrchestraThe New York Saxophone Quartet + +275584Virgil JonesAmerican trumpet player (born 26 August 1939 Indianapolis, Indiana, USA - died April 20, 2012 Indianapolis, Indiana, USA)Needs Votehttps://www.indianapolisjazzhalloffame.org/inductee/virgil-joneshttps://researchworks.oclc.org/archivegrid/collection/data/1130060270JonesV. JonesVergil Jonesジャージル・ジョーンズLatin Jazz QuintetThe George Gruntz Concert Jazz BandLionel Hampton And His OrchestraMilt Jackson SextetThe Archie Shepp SeptetThe Band (7)McCoy Tyner Big BandBilly Harper QuintetFrank Foster And The Loud MinorityThe Clark Terry SpacemenMichel Camilo Big BandDameroniaFrank Foster's Living Color – Twelve Shades Of Black + +276143Tan Dun谭盾Chinese contemporary classical composer, born 15 August 1957 in Si Mao, Hunan, China.Needs Votehttps://web.archive.org/web/20220101152126/http://tandun.com/https://www.facebook.com/TanDunOnlinehttps://www.britannica.com/biography/Tan-Dunhttps://www.naxos.com/person/Dun_Tan/20180.htmhttps://en.wikipedia.org/wiki/Tan_DunD. TanT. DunTan Dun 谭盾タン・ドゥン譚盾谭盾 + +276475Evie SandsSinger Evie Sands endured one of the more remarkable hard luck tales in pop music lore -- time after time, her records seemed poised for chart success, only to fall prey to industry deception. The Brooklyn-born Sands' husky, soulful voice first attracted the attention of Jerry Leiber and Mike Stoller's Blue Cat label in 1965, and upon signing with the company she entered the studio with the songwriting/production team of Chip Taylor and Al Gorgoni to record her debut single, "Take Me for a Little While." Prior to the record's release, a test pressing was smuggled to executives at Chess Records, where Chicago soul singer Jackie Ross immediately cut her own version of the song; just as Sands' rendition of "Take Me for a Little While" cracked the R&B charts, Chess' marketing muscle assured that Ross' cover began receiving the lion's share of radio airplay, leaving the original in the dust. (Ross, it should be noted, was initially unaware that the test pressing had been stolen and left Chess soon after.) The ensuing litigation severely hobbled Sands' fledgling career, and her follow-up, 1966's superb "I Can't Let Go," was lost in the mire; a year later, the song became a major international hit for the Hollies. Moving to the Cameo label, in 1967 Sands resurfaced with the Taylor-penned "Angel of the Morning"; despite heavy early airplay, within weeks of the single's release Cameo went bankrupt, allowing Merilee Rush's recording of the song to top the pop charts a few months later. In 1969 Sands finally notched a hit of her own with "Any Way That You Want Me," also issuing an LP of the same name. She spent the majority of the following decade focusing primarily on songwriting, however, and after completing the 1979 RCA album Suspended Animation retired from performing altogether. In 1996, Sands joined Taylor onstage during a gig in Los Angeles, the impromptu reunion proving so successful that they agreed to re-ignite their collaboration; the album Women in Prison, distinguished by a far more rootsy feel than her blue-eyed soul near-hits of the 1960s, followed in 1999. + +b: July 18, 1946 in Brooklyn, New York, U.S.A.Needs Votehttps://www.facebook.com/eviesandshttps://en.wikipedia.org/wiki/Evie_sandsE. SandsEvieEvie SandSandsAdam Marsland's Chaos Band + +276489Julian TearViolinistNeeds VoteThe Academy Of St. Martin-in-the-FieldsBritten SinfoniaMichaelangelo Chamber OrchestraMarylebone CamerataTear Quartet + +276498Nick CooperCellist. +Former member of the [a=London Symphony Orchestra] (1986-1993).Needs Votehttps://www.nickcoopermusic.com/https://www.imdb.com/name/nm0178279/https://vgmdb.net/artist/22729N.CooperNicholas CooperNicholas John Cooperニック・クーパーThe Balanescu QuartetLondon Symphony OrchestraGavin Bryars EnsembleLondon Metropolitan OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraAnn Morfee StringsCornucopia EnsembleThe Solid StringsSonia Slany String And Wind EnsembleTrans4mationMarylebone CamerataString Quartet (5)Bubbling Under + +276618Bert BernsBertrand Russell BernsBert Berns (born 8 November 1929, The Bronx, New York City, New York, USA - died 30 December 1967, New York City, New York, USA) was an American songwriter and record producer of the 1960s. In 1965, he formed [l21764] along with [a253417], [a251691] and [a248847]. After Bert died of heart failure, his wife [url=https://www.discogs.com/artist/1987075-Ilene-Berns]Ilene[/url] successfully managed Bang Records for the next 12 years, eventually selling the company to [l1866] in 1979. Father of [a3016147].Needs Votehttp://en.wikipedia.org/wiki/Bert_Bernshttps://www.bertberns.com/disc_6.htmlA Bert Berns ProductionB BernsB R BurnsB. BemsB. BernB. BerneB. BernsB. Berns / B. RussellB. BertsB. BurnsB. PernsB. R. BernsB. RussellB.BernsB.BurnsB: BernsBarnsBeinsBemsBer BernsBernBern BernsBerneBernesBernoBernsBerns B.Berns, B.BernsteinBernzBertBert 'Russell' BernsBert BernBert BerneBert BernesBert Berns (Russell)Bert Berns ProductionBert BersnsBert BurnsBert GernsBert R. BernsBert Russell BernsBert burnsBertrand BernsBertrand Russell BernsBertsBerusBerus B.Beth BernsBrensBurnBurnsBurt BernfBurt BernsBurt BurnsJ. BernsRussellS. BernsBert RussellRussell ByrdThe Kings Of TwistBert & Bill GiantThe Mustangs (21) + +276775Bill Hughes (2)William Henry HughesUS jazz trombonist and bandleader, born March 28, 1930 in Dallas, TX - died January 14, 2018. +He joined the [a253011] in Sept. of 1953 and stayed with it until Sept. 2010, except for a break 1957-1963 when he stopped performing. He led the orchestra from 2003 to Sept. 2010. + +[b]Do Not Confuse[/b] with American music contractor/copyist [a=bill hughes].Needs Votehttps://en.wikipedia.org/wiki/Bill_Hughes_(musician)https://adp.library.ucsb.edu/names/112653B. HughesBilly HughesH. HughesW. HughesWilliam H. "Bill" HughesWilliam H. HughesWilliam Henry HughesWilliam Hughesウィリアム・ヒューズCount Basie OrchestraCount Basie Big Band + +277171Denny RandellDenny Randell (born 1941) is an American songwriter and record producer, who is best known for his songwriting collaborations with Sandy Linzer and production company [a3760717] and Bob Crewe in the 1960s and 1970s. He co-wrote hits including "A Lover's Concerto", "Let's Hang On!", "Working My Way Back to You", and "Native New Yorker", and was nominated with Linzer for induction into the Songwriters Hall of Fame (SHOF) in 2012.Needs Votehttps://en.wikipedia.org/wiki/Denny_Randellhttp://www.dennyrandell.com/B. RandellBandellBennie RandellBrandellC. RandellD RandellD. DandellD. RandallD. RandelD. RandellD. RendellD. RondellD. randellD.RandallD.RandellDanny RandallDanny RandellDennie RandellDennis RandalDennis RandellDenny RandallDenny RandelDenny Randell And GroupDenny Randell Prod. Inc.Denny Randell's Pop RevolutionDenny RanellDenny RendellDonny RandellDonny RandleEdnny RandellF. RandallF.RandallLandellPenny RandellR. RandellRadellRambellRandallRandelRandellRandell DennyRendellRondellS. R. DennyVandellデニー・ランデルDenny RafkinRandell & SchippersThe Jam Band (2) + +277300John HarleJohn HarleJohn Harle (born 20 September 1956, Newcastle upon Tyne, England) is an English saxophonist (originally a clarinettist), composer, conductor, musical director and producer for artists as diverse as [a35301], [a55029], [a263532], [a324547] and [a289514]. + +He is an eclectic musician intermingling the genres of jazz, rock, classical music, electronics and opera. He has had over twenty five concerti written for him, by composers such as [a65795], [a39574], [a67657], [a746653], [a746654] and [a843041]. He also has written about 35 concert works and over 40 film and television scores. + +He is the father of musician [a3992242].Needs Votehttps://www.johnharle.com/https://twitter.com/JohnHarle8https://www.instagram.com/john_harle/https://www.youtube.com/user/johnharlehttps://en.wikipedia.org/wiki/John_Harlehttps://www.wisemusicclassical.com/composer/631/john-harle/HarleJohn Harlジョン・ハールJohn Harle & Opera HouseThe Michael Nyman BandThe Michael Nyman Orchestra + +277423Anton DermotaAustrian-Slovene tenor. He was born 04 June 1910 in Kropa, Austro-Hungary (today Slovenia) and died 22 June 1989 in Vienna (Wien), Austria.Needs Votehttps://en.wikipedia.org/wiki/Anton_DermotaA. DermotaAntonAnton DermontaAnton DermotoAntón DermotaDermotaА. ДермотаАнтон Дермотаアントン•デルモータアントン・デルモータ + +277530Stan FarberLoren Stanley FarberVocalist (tenor) and one of the founding members of the Doo-Wop group [a1527635]. Together with [a441635] he started recording with the [a889739], performing backup vocals on thousands of songs, TV and movie themes, and as lead (while remaining anonymous) singers on thousands of radio and television commercials.CorrectFarberLaren FaberLaren FarberLoren "Stan" FarberLoren FaberLoren FarberLoren S. FarberLoren Stanley FarberS. FarberStan FaberStan FarborStan LaurelThe California DreamersRon Hicklin SingersHollywood Film ChoraleThe EligiblesThe Zip-CodesThe Bob Alcivar SingersDisco J.J.S. + +277535Jim HaasJames Edwin HaasAmerican artist, worked mostly as session singer. He sang with [a=Jackson Browne], [a=Barry Manilow], [a=Paul Williams (2)], [a=Vince Gill], [a=Eric Carmen], [a=America (2)], [a=Laura Branigan], [a=Rick Springfield] and more artists.Needs VoteJ. HaasJames E. HaasJames HaasJim E. HaasJim HassJimmie HaasJimmy HaasJimmy HassS. HaasStan HaasEleventh HourRon Hicklin SingersThe Bleeding Heart BandThe Frantics (4)Disco J.J.S.The Sally Stevens Singers + +277537Georg RiedelGeorg Martin Ludvig RiedelSwedish double bass player, arranger and composer of German Bohemian descent. +Born: January 8, 1934, Karlsbad, Czechoslovakia (now Karlovy Vary, Czech Republic). +Died: February 25, 2024, Maria Magdalena, Stockholm, Uppland, Sweden. +Georg Riedel was a master of the double bass and a pivotal figure in the Swedish jazz and children's music scenes. Migrating to Sweden aged 4, Riedel's musical life began in Stockholm, where he initially training as a violinist, eventually leading to the double bass and jazz. + +Riedel's career was marked by his collaborations with [a277539]. The two men created "Jazz På Svenska" ("Jazz in Swedish"), the best-selling of all Swedish jazz records. This album blended traditional Swedish folk melodies with jazz rhythms and harmonies. + +However, it was his work with [a431295]'s film adaptations that brought Riedel's music into the lives of children and adults. His compositions for "Pippi Långstrump" (Pippi Longstocking), "Emil i Lönneberga" (Emil of Lonneberga), and "Karlsson på taket" (Karlsson on the Roof) are among his most beloved, embedding his melodies into the cultural fabric of Sweden. The song "Idas sommarvisa" (Ida's Summer Song) from the stories of Emil and Ida from Lönneberga, in particular, became a staple in Swedish kindergartens and schools. + +Riedel's passion for music extended beyond performance and composition. His dedication to jazz saw him contributing significantly to its growth in Scandinavia, mentoring young musicians and shaping the jazz scene with his innovative compositions and arrangements.Needs Votehttps://www.facebook.com/georg.riedel.9https://en.wikipedia.org/wiki/Georg_Riedel_(jazz_musician)https://sv.wikipedia.org/wiki/Georg_Riedelhttps://www.sverigesradio.se/artikel/composer-and-jazz-musician-georg-riedel-dies-aged-90https://www.imdb.com/name/nm0726098/C. RiedelC.RiedelG RiedelG, RiedelG. ReidelG. RiedelG.RiedelGeorgGeorg Riedel Och VännerGeorge RiedelReidelRidelRiedelRiredelStan Getz QuartetThe Swedish All StarsJan Johanssons TrioHarry Arnolds OrkesterRadiojazzgruppenArne Domnérus OrkesterArne Domnérus TrioArne Domnérus SextettLars Gullin SeptetLars Gullin QuartetGugge Hedrenius Big Blues BandLars Gullin QuintetLars Gullin SextetGeorg Riedels OrkesterTrio Con TrombaLars Gullin OctetGösta Theselius And All StarsNisse Engström TrioGeorg Riedel SeptetArne Domnérus KvartettArne Domnérus KvintettJazz Workshop, Ruhr Festival 1962Georg Riedel QuintetRolf Billberg QuintetDompans Lilla BataljonGeorge Riedel SextetRolf Billberg-Hacke Björksten Quintet + +277538Egil JohansenNorwegian-Swedish jazz drummer, educator, composer and arranger (in Norway known by the nickname Egil "Bop"), born January 11, 1934 in Oslo, Norway, died April 12, 1998 in Huddinge, Sweden. + +He played with Einar Stenberg, Egil Monn-Iversen, Arne Domnérus, Bengt Hallberg, Rune Gustafsson, Georg Riedel, Quincy Jones, Harry Arnold and others. + +Played the role of the Captain in the advent calendar TV series "Julefergå" which ran on Norwegian TV in 1995 (the other members of [a539317] played the other main characters of the series). + +He is the father of [a372862].Needs Votehttps://sv.wikipedia.org/wiki/Egil_JohansenBopE JohansenE. JohansenEgilEgil "Bop" JohansenEgil "Bop" JohanssonEgil "Norsken" JohansénEgil Bop JohansenEgil JohannesenEgil JohannsenEgil JohansonEgil JohanssenEgil JohanssonEgil «Bop» JohansenEigil JohannesenEigil JohansenJohansenStan Getz QuartetThe Swedish All StarsThe Brazz BrothersJan Johanssons TrioLars Samuelsons OrkesterHarry Arnolds OrkesterRadiojazzgruppenRune Öfwerman TrioArne Domnérus OrkesterArne Domnérus SextettClaes Rosendahls OrkesterSven-Eric Dahlbergs KvintettHarry Arnold & His Swedish Radio Studio OrchestraOve Linds KvintettPutte Wickmans KvartettGösta Theselius And All StarsPer Husby OrchestraOve Linds SextettNDR-Jazz-Workshop-BandAnders Widmark TrioOve Lind QuartetPassionate DemonsGeorg Riedel SeptetEgil Kapstad TrioArne Domnérus KvartettAtle Hammer SextetLars Sjösten OctetJazz IncorporatedAnthony Ortega QuartetVerden Rundt's All Star BandBjarne Nerem QuartetJazz Workshop, Ruhr Festival 1962Georg Riedel QuintetThorgeir Stubø QuintetBengt-Arne Wallin & His TentetMarkku Johansson & FriendsDompans Lilla BataljonCavalcade All StarsJazz At The CavalcadeSegeltorpspojkarnaEgil Monn Iversens Sekstett + +277539Jan JohanssonSwedish jazz pianist, arranger and composer, born 16 September 1931 in Onsäng, Söderala parish, Hälsingland, died in a car accident 9 November 1968 in Sollentuna, Stockholm County. + +His album "Jazz på svenska" is the best selling jazz album in Sweden having sold over a quarter of a million copies and has been streamed more than 10 million times on Spotify. + +[a=Anders Johansson] and [a=Jens Johansson], co-founders of [l70703] (which has reissued his albums on CD), are his sons.Needs Votehttp://www.janjohansson.org/https://janjohansson.bandcamp.com/https://www.youtube.com/channel/UCWCVjd17wMsCCAzdIfcjbrghttps://en.wikipedia.org/wiki/Jan_Johansson_(jazz_musician)https://sv.wikipedia.org/wiki/Jan_Johanssonhttps://www.allmusic.com/artist/jan-johansson-mn0000131923https://rateyourmusic.com/artist/jan-johanssonhttps://sok.riksarkivet.se/Sbl/Mobil/Artikel/12147Ian JohanssonJ JohanssonJ. JohansonJ. JohanssenJ. JohanssomJ. JohanssonJ.JohannsonJ.JohanssonJJJan JohannsonJan JohannssonJan JohansonJan Johansson HammondorgelJoansonJohannsenJohannsonJohansonJohanssonJohansson JanJohansson, JanW. JohannsonjohanssonStan Getz QuartetJan Johanssons TrioRadiojazzgruppenArne Domnérus OrkesterJan Johanssons OrkesterClaes Rosendahls OrkesterGunnar Johnsons KvintettJan Johanssons KvintettPutte Wickmans KvartettStan Getz And His Swedish JazzmenEddie Lockjaw Davis QuartetOscar Pettiford And His Jazz GroupsGeorg Riedel SeptetThe RunestonesOscar Pettiford And His ScandinaviansJan Johanssons Kvartett + +277632Barry Harris (2)Barry Doyle HarrisAmerican jazz pianist, composer, and educator +Born 15 December 1929 in Detroit, Michigan, USA, died 8 December 2021 in North Bergen, New Jersey, USA +Internationally renowned, he was an exponent of the bebop jazz style that was developed by [a=Charlie Parker], [a=Dizzy Gillespie], [a=Bud Powell], and [a=Thelonious Monk].Needs Votehttp://www.barryharris.com/index.htmhttps://en.wikipedia.org/wiki/Barry_Harrishttps://www.imdb.com/name/nm0364460/B. HarrisB.HarrisBarry E. HarrisHarrisバリー・ハリスThe Cannonball Adderley QuintetClifford Jordan QuartetIllinois Jacquet And His All StarsBarry Harris TrioThe Hank Mobley QuintetHank Mobley SextetWarne Marsh QuartetLee Morgan QuintetDexter Gordon QuartetThe Johnny Griffin QuartetDonald Byrd SextetThe Barry Harris SextetWarne Marsh QuintetHank Mobley QuartetThe Joshua Breakstone QuartetBarry Harris QuintetThe Riverside Reunion BandSal Nistico QuintetKenny Dorham-Barry Harris QuartetYusef Lateef QuartetRalph Lalama & His Manhattan All StarsBarry Harris Kenny Barron QuartetThe Dave Glasser Clark Terry Barry Harris Project + +277665Jerry SegalGerald SegalAmerican jazz drummer. Born 16 February 1931 in Philadelphia, USA, died August 1974.Needs Votehttps://en.wikipedia.org/wiki/Jerry_Segalhttps://adp.library.ucsb.edu/names/342963G. SegalGerry SegalStan Getz QuartetTerry Gibbs QuartetTerry Gibbs And His OrchestraThe Prestige Jazz QuartetJohnny Smith QuartetThe Australian Jazz QuintetTeddy Charles New Directions Quartet + +277666Gus JohnsonGus JohnsonAmerican jazz drummer. +Born 15 November 1913 in Tyler, Texas, USA. +Died 6 February 2000 in Denver, Colorado, USA. +Needs Votehttps://en.wikipedia.org/wiki/Gus_Johnson_(jazz_musician)https://www.drummerworld.com/drummers/Gus_Johnson.htmlhttps://www.namm.org/library/oral-history/gus-johnsonhttps://www.radioswissjazz.ch/en/music-database/musician/141378d73865dd523cefbd5b1b2f4fafc6eb6/biographyhttps://adp.library.ucsb.edu/names/323849G. JohnsonGus Johnson JrGus Johnson Jr.Gus Johnson, JrGus Johnson, Jr.Gus JohnstonJohnsonCount Basie OrchestraPaul Smith QuartetWoody Herman And His OrchestraTommy Flanagan TrioThe Ray Bryant ComboEarl Hines And His OrchestraCootie Williams And His OrchestraZoot Sims QuartetGerry Mulligan QuartetPaul Quinichette QuintetCount Basie Big BandJay McShann And His OrchestraRay Bryant TrioCount Basie SextetWoody Herman SextetHal McKusick QuintetGerry Mulligan & The Concert Jazz BandThe World's Greatest JazzbandWoody Herman And The Swingin' HerdLionel Hampton GroupLionel Hampton All StarsWoody Herman QuartetCount Basie OctetSeldon Powell SextetThe Nat Pierce OrchestraWoody Herman And The Fourth HerdThe J.J. Johnson And Kai Winding Trombone OctetOscar Pettiford OrchestraThe Claude Hopkins BandThe Kai Winding OrchestraThe International Jazz GroupJoe Newman And His OrchestraNat Pierce QuintetThe Lenny Hambro QuintetSackville All StarsZoot Sims All-StarsHerb Ellis And The All-StarsLawrence Brown's All-StarsThe Frank Wess SeptetPaul Quinichette SeptetThe Jay McShann All StarsColeman Hawkins & Friends + +277683Bob CooperRobert William CooperAmerican jazz saxophonist, oboist, arranger, composer and band leader +Born 6 December 1925 in Pittsburgh, USA, died 5 August 1993 in Hollywood, USA +He was one of the first to play jazz solos on oboe. Known for his work with [a212786], he performed as a sideman for many others. Married to singer [a299948] (1946 - June 21, 1990, her death).Needs Votehttps://en.wikipedia.org/wiki/Bob_Cooper_(musician)https://www.allmusic.com/artist/bob-cooper-mn0000761629/biographyhttps://www.imdb.com/name/nm0177892/https://adp.library.ucsb.edu/names/202081B. CooperBob Cooper & Rhythm SectionBob Cooper And His OrchestraBoob CooperCoopCooperMr. Bob CooperOrchestra Conducted By Bob CooperRobert CooperRobert W. Cooperボブ・クーパーWoody Herman And His OrchestraMetronome All StarsBuddy Rich And His OrchestraStan Kenton And His OrchestraShelly Manne & His MenShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraHoward Rumsey's Lighthouse All-StarsThe Bud Shank / Bob Cooper QuintetThe Buddy Bregman OrchestraElmer Bernstein & OrchestraLeith Stevens & His OrchestraLaurindo Almeida & The Bossa Nova AllstarsThe Gene Harris All Star Big BandWoody Herman And The Swingin' HerdThe Bill Holman BandShelly Manne & His Hollywood All StarsLeith Stevens' All StarsMarty Paich Big BandShorty Rogers Big BandHot Rod Rumble OrchestraThe Jeff Hamilton QuintetThe Bud Shank-Bob Cooper OrchestraThe John Graas NonetBob Cooper QuartetThe Bob Florence Limited EditionMilt Bernhart And His OrchestraBobby Troup And His Stars Of JazzShelly Manne SeptetThe Buddy Bregman BandBob Cooper NonetPete Rugolo And His All StarsThe Bob Cooper SextetThe Marty Paich OctetThe Lou Levy SextetThe Bob Cooper - Conte Candoli QuintetVic Lewis West Coast All-StarsDemetri Pagalidis & His Big Band SilverwareJon Nagourney QuintetThe Bill Perkins Big BandJimmy Giuffre QuintetBob Cooper QuintetThe Poll CatsBob Cooper Und Seine Rhythmiker + +277684Al ViolaAlfred F. Viola.American jazz guitar and mandolin player, among many other he worked with [a=Frank Sinatra] for 25 years. + +Born : June 16, 1919 in New York City (Brooklyn), New York. +Died : February 21, 2007 in Studio City, California.Needs Votehttp://www.alviola.com/http://en.wikipedia.org/wiki/Al_Violahttps://adp.library.ucsb.edu/names/359053A. ViolaAlfred ViolaAll ViolaTommy Dorsey And His OrchestraPete Rugolo OrchestraThe Page Cavanaugh TrioThe Abnuceals Emuukha Electric OrchestraThe 50 Guitars Of Tommy GarrettAllen's All StarsThe Calvin Jackson QuartetDick Grove Big BandThe Strollers (6)Johnny Mandel OrchestraThe Bill Miller SextetFrank Sinatra And SextetTerry Gibbs & His West Coast FriendsThe Buddy Collette Big Band + +277685Chico GuerreroAmerican jazz drummer and percussionist. +Played with : Stan Kenton, George Shearing, Herb Ellis, Billy Taylor, Glen Gray, Nat King Cole, Stan Getz and many others. +Needs Vote"Frank Chico" GuerreroChicoFrank "Chico" GuerreroFrank "Hico" GuerreroFrank 'Chico' GuerreroJoe Chico GuerreroJoe GuerreroShorty Rogers And His GiantsLaurindo Almeida & The Bossa Nova AllstarsMike Pacheco Sextet + +277687Justin GordonJustin S. Gordon.American jazz saxophonist and multi-wind instrumentalist. +Born: December 16, 1917 in Cleveland, Ohio. +Died: June 15, 1998 in San Diego, California. + +Justin worked with Billy Vaughn, Benny Carter, Laurindo Almeida, Frank Sinatra, Rosemary Clooney, Nat King Cole, Bing Crosby, Barney Kessel, Peggy Lee, Dean Martin, Louis Prima and many others.Needs Votehttps://www.imdb.com/name/nm1279513/Billy May And His OrchestraHenry Mancini And His OrchestraBenny Carter And His OrchestraLaurindo Almeida & The Bossa Nova AllstarsMilton Rogers And His OrchestraNeal Hefti And His Jazz Pops OrchestraRay Rasch And The Pipers 10 + +277778Ulrika JanssonMartha Ulrica Jansson EastopSwedish classical violinist, born March 2, 1958 and grew up in Västervik. + +She studied in Stockholm in Sweden and Freiburg in Germany. + +Ulrika lives in Stockholm where she co-leads the Swedish Radio Symphony Orchestra, a position she has held since 1994. + +During her varied career she has frequently appeared as a soloist and performed with many eminent chamber groups such as The Gaudier Ensemble and her own quartet, which for many years toured extensively throughout Sweden and Europe. + +She is married to [a2691607].Needs VoteUlrica JannsonUlrica JanssonUlrika EastopUlrika JonssonStockholm Session StringsSveriges Radios SymfoniorkesterThe Chamber Orchestra Of EuropeStockholm SinfoniettaThe Gaudier EnsembleThe Swedenborg String QuartetSophisticated Ladies (2)ArtemiskvartettenZ Quartet + +277950Stan WebbStanley Webb Jr..American jazz and pop saxophonist and flute player, born in 1936 in Newark, New Jersey, USA, died 20 September 1998 in Pembroke Pines, Florida, USA. +Son of [a=Stanley Webb]. +Most known as a member of the horn section for the [a=Bee Gees] in the 70's. After he was discharged from the Air Force in 1962, he flew to New York where he worked as an arranger and composer for the [a=Ed Sullivan], [a=Perry Como] and [a=Jimmy Dean] shows among others. Webb also performed with the likes of [a=Herbie Hancock], [a=George Benson] and [a=Frank Sinatra]. Webb moved to North Miami in 1970 so he could spend more time with his family. When the [a=Bee Gees] came to Miami in the 1970s to record the music for Saturday Night Fever, Mr. Webb became one of the [a=Boneroo Horns]. + +[b]For the UK blues/rock guitarist and member of [a=Chicken Shack] use [a=Stan Webb (2)].[/b] +Needs Votehttp://articles.sun-sentinel.com/1998-09-23/news/9809220310_1_bee-gees-webb-s-two-daughters-mr-webbS. WebbStanStan Webb, Jr.Stanley WebbWebbSoul FlutesCharlie Parker With StringsBoneroo HornsOrizaba And His Orchestra + +277951Hugo WinterhalterHugo Ferdinand WinterhalterAmerican composer and arranger. +Born August 15, 1909, Wilkes-Barre, Pennsylvania, USA. +Died September 17, 1973, Greenwich, Connecticut, USA. +Winterhalter earned eleven Gold Records, a Grammy and a Cash Box Award during his lengthy career, at least as many if not more than any other conductor-arranger in the music business.Needs Votehttps://en.wikipedia.org/wiki/Hugo_Winterhalterhttps://www.spaceagepop.com/winterha.htmhttps://www.imdb.com/name/nm0935874/https://www.allmusic.com/artist/hugo-winterhalter-mn0000315677#biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109602/Winterhalter_HugoH. WinterhallerH. WinterhalterHugo Winter HalterHugo WinterhalerHugo WinterhaltersHugo WinterhulterHugo WintherhalterHugoWinterhalterWinterWinterhalterユーゴー・ウィンターハルター楽団Larry Clinton And His OrchestraHugo Winterhalter OrchestraHugo Winterhalter's Orchestra And Chorus + +277952Chubby JacksonGreig Stewart JacksonAmerican jazz bassist and occassional singer. +Born October 25, 1918 in New York City, USA. +Died October 1, 2003 in Rancho Bernardo, California, USA. + +Chubby played clarinet and bass as a teen. He played clarinet in his High School (in Freeport, New York) in 1935. In 1934 he had begun to play bass and then started playing professionally in 1936. with Mike Riley. He went on to play with swing orchestras Raymond Scott, Jan Savitt, Charlie Barnett and Woody Herman. he is famous for his use of the 5 string bass with the top string tuned to the middle C.Needs Votehttps://en.wikipedia.org/wiki/Chubby_Jacksonhttps://www.allmusic.com/artist/chubby-jackson-mn0000098687/biographyhttps://adp.library.ucsb.edu/names/105062"Chubby" JacksonC. JacksonC.JacksonCh. JacksonChub. JacksonChubbyChubby Jackson's IndividualsCubby JacksonGreig "Chubby" JacksonGreig Stewart "Chubby" JacksonGreig Stewart JacksonJacksonS. JacksonWoody Herman And His OrchestraMetronome All StarsRaymond Scott And His OrchestraWoody Herman & The New Thundering HerdChubby Jackson And His All Stars BandLionel Hampton And His All-Star Alumni Big BandNeal Hefti's OrchestraFlip Phillips And His HiptetWoody Herman & The HerdWoody Herman And His WoodchoppersThe V-Disc All StarsThe Woody Herman Big BandChubby Jackson's OrchestraFlip Phillips FliptetFlip Phillips BoptetBill Harris & His New MusicWoody Herman And His Third HerdWoody Herman And The Fourth HerdHenry "Red" Allen's All StarsChubby Jackson And His Fifth Dimensional Jazz GroupChubby Jackson SextetRed Rodney's Be-BoppersChubby Jackson's Big BandBill Harris SeptetEsquire All American Award WinnersChubby Jackson's RhythmThe Jackson-Harris HerdThe Big Three (3)Chubby Jackson & Bill Harris All-StarsPaul Gonsalves - Clark Terry QuintetWoody Herman StarsVanderbilt StarsChubby Jackson And American All StarsWoody Herman & The Second HerdVanderbilt All StarsWill Bradley and HIs Jazz OctetCharlie Ventura's Big FourThe Band That Plays The BluesNudnicksSummer Festival All Star Jazz BandSnapper Lloyd And His OrchestraChubby Jackson Septet + +277954Art RyersonAmerican Jazz guitarist (acoustic & electric) and banjo player. +Born May 22, 1913 in Columbus, Ohio, USA. +Died October 27, 2004 in Brookfield, Connecticut, USA. + +He was 13 years when his parents bought banjo lessons for him from a door-to-door salesman. He moved quickly from banjo to the guitar, and was soon playing and teaching professionally in the Columbus, Ohio area. In the early 1930’s he joined The Rhythm Jesters at Radio Station WLW. In 1935, he organized a quartet in New York and began appearing in Manhattan jazz clubs. + +He played guitar in the live concert by [a341395] recorded at Carnegie Hall in New York on December 25, 1938. In 1939, he joined the Paul Whiteman Orchestra as the guitarist and wrote the arrangements for Whiteman’s Swinging Strings, Bouncing Brass, and Sax Soctette. Ryerson joined [a341397] in the early 1940s and began soloing on the electric guitar. + +He was the first electric guitarist to perform and tour with the Metropolitan Opera Orchestra under the direction of James Levine. In 1975, he toured the Soviet Union as part of a program organized by the U.S. State Department.Needs Votehttp://en.wikipedia.org/wiki/Art_Ryersonhttp://classicjazzguitar.com/artists/artists_page.jsp?artist=53https://www.allmusic.com/artist/art-ryerson-mn0001205009/creditshttps://adp.library.ucsb.edu/names/106392A. RyersonArt Ryerson, GuitarArthur ReyersonArthur RyersonArtie RyersonRyersonАрти РайерсонLes Brown And His Band Of RenownPaul Whiteman And His OrchestraRaymond Scott And His OrchestraCharlie Parker With StringsThe RagtimersUrbie Green And His OrchestraArt Ryerson's RhythmHenry Jerome And His OrchestraPaul Whiteman's Swing WingAllstars (11)Vic Schoen And His All Star BandJulian Dash And His OrchestraThe John Morris TrioJam Session At The RiversideJulian Dash Quintet + +277957Dave Harris (2)Dave Harris (1913-2002) was an American tenor saxophone player. + +Harris worked for CBS before been enrolled in the Raymond Scott Quintette from 1937 to 1939. In forty years as a session musician, he only released one LP as a bandleader, the 1961 tribute to [a=Raymond Scott]: "Dinner Music For A Pack Of Hungry Cannibals". +Needs VoteHarrisTommy Dorsey And His OrchestraRaymond Scott QuintetToots Camarata And His OrchestraDave Harris & The Powerhouse FiveJerry Gray And His OrchestraMembers Of The Benny Goodman OrchestraDave Harris Sextet + +277958Art DrelingerAbraham Arthur Drelinger.American jazz saxophonist and reeds player. + +Born : August 14, 1915 in Grafton, Massachusetts. +Died : August 15, 2001 in Delray Beach, Florida.Needs Votehttps://de.wikipedia.org/wiki/Art_Drelingerhttp://jazzriffing.blogspot.com/2013/03/the-worcester-reclamation-of-artie.htmlhttps://www.allmusic.com/artist/art-drelinger-mn0001662759/biographyhttps://adp.library.ucsb.edu/names/202740A. DrelingerArt DreilingerArt Drelinger 7Art DrellingerArtie DerlingerArtie DreilingerArtie DrelinderArtie DrelingerArtie DrellingerDrelingerАрти ДрелинджерLouis Armstrong And His OrchestraArtie Shaw And His OrchestraWill Bradley And His OrchestraBob Haggart And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraCharlie Parker With StringsRichard Maltby And His OrchestraHoward Biggs OrchestraPaul Whiteman's Swing WingBunny Berigan's Rhythm-Makers + +277964Bernie LeightonBernard LazaroffAmerican jazz pianist, born January 30, 1921 in West Haven, CT, died September 16, 1994 in Coconut Creek, Florida.Needs Votehttps://en.wikipedia.org/wiki/Bernie_Leightonhttps://adp.library.ucsb.edu/names/106216B. LeightonBennie LeightonBernard LeightonBerni LeightonBernie LaytonBernie Leighton And His OrchestraBernie Leighton's Swing FourBernie Leighton, Piano & OrchestraBernie Leighton, Piano y OrquestaLeightonБ. ЛейтонRaymond Scott And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraCharlie Parker With StringsThe CommandersOtto Cesana & His OrchestraJoe Thomas And His OrchestraBernie Leighton & Piano OrchestraThe Bernie Leighton QuintetThe Bernie Leighton QuartetThe Bob Alexander QuintetMichel Legrand & Co.Billy Taylor's Big Four (2) + +277965Willie KelleyTrumpet player active in the 1930's.Needs VoteKelleyW. KelleyW. KellyWilliam "Hickey" KelleyWilliam "Hicky" KelleyWilliam KelleyWillie KellyWillis KelleyWillis KellyArtie Shaw And His OrchestraLarry Clinton And His Orchestra + +277966Andy PicardAndy PiccianoAmerican drummer of the swing era.Needs VoteA. PicardAndy PicardiAndy PickardRaymond Scott And His OrchestraBobby Hackett And His OrchestraThe Rhythm Cats + +277967Russ CaseAmerican trumpet player, bandleader, conductor, songwriter, and arranger.Needs Votehttps://www.imdb.com/name/nm0143257/https://en.wikipedia.org/wiki/Russ_Casehttps://adp.library.ucsb.edunames107095CaseR. CaseRuss CassRussell CaseFrankie Trumbauer And His OrchestraRuss Morgan And His OrchestraToots Camarata And His OrchestraRuss Case And His OrchestraRuss Case And His Orchestra And ChorusJimmy Lytell And His All Star SevenRuss Case Concert OrchestraRuss Case ChorusSavannah Churchill And Her All Star SevenThe Russ Case Nonet + +277968Lawrence StearnsAmerican jazz trumpeter.Needs VoteL. StearnsRaymond Scott And His OrchestraBenny Goodman And His Orchestra + +277970Pete PumiglioPeter John PumiglioAmerican jazz saxophonist (alto) and clarinetist player. +Born : December 12, 1902 in Cristobal (Canal Zone). +Died : October 20, 1996 in New Port Richey, Florida. +Needs Votehttps://adp.library.ucsb.edu/names/115063Pete PimiglioPete PumiblioPeter PumiglioR. PumiglioJoe Venuti's Blue FourRaymond Scott QuintetCalifornia RamblersRichard Himber And His Ritz-Carlton Hotel OrchestraJoe Glover And His CollegiansUniversity Six + +277971Reggie MerrillClarinet and saxophone player from the swing era.Needs VoteR. MerrillReggy MerrillRaymond Scott And His OrchestraHal Kemp And His OrchestraBenny Goodman And His OrchestraIrving Aaronson And His CommandersThe Harwyn Quartet + +277972Benny LagasseJazz saxophonistCorrectB. LagasseBen LagasseJack Teagarden And His OrchestraRaymond Scott And His OrchestraTeddy Powell And His Orchestra + +277974Charles McCamishJazz trombonistNeeds VoteC. McCamishCl. McCamishGene Krupa And His OrchestraJack Teagarden And His OrchestraRaymond Scott And His Orchestra + +278736Jerry MarcellinoGerald A. Marcellino Sr.[b]Disco - soul songwriter - producer[/b]Needs Votehttp://www.myspace.com/jerrymarcellino"Jacko" MarcellinoG. MarcellinoG.A. MarcellinoGerald A MarcellinoGerald A. MarcellinoGerry MarcellinoJ. Jacky MarcellinoJ. Jocko MarcellinoJ. MarcelinoJ. MarcelkinoJ. MarcellinoJ. MerellinoJ.MarcellinoJ/MarcellinoJerry MarcelinoJerry MarellinoJerry MarsellinoJocko MarcellinoL. MarcellinoMarcellinoMerry MarcellinoThe Jaam Bros.Halloween (3)Lar MarThe 3 HoneydropsJerry And MelThe Naturals (24) + +278737Mel LarsonSongwriter - producer + +Often collaborated with [a=Jerry Marcellino], with whom they wrote many songs for early '70s [l=Motown] acts. +Needs VoteHal LarsonLarsenLarsonLevin LarsonM LarsonM. CarsonM. LamsonM. LarcenM. LarsoM. LarsonM.LarsonMel LardonMel LarsenMelvin E LarsonMelvin E. LarsonMelvin LarsonLar MarThe 3 HoneydropsJerry And MelThe Naturals (24) + +278781Pete JohnsonKermit Holden JohnsonAmerican boogie-woogie pianist, born 24/25 March 1904 in Kansas City, died 23 March 1967 in Buffalo, USA.Needs Votehttps://en.wikipedia.org/wiki/Pete_Johnson_(musician)http://www.bluenote.com/artist/pete-johnson/https://adp.library.ucsb.edu/names/100033Foster JohnsonJohnsonJohnsonsJohnstonJohsonL. JohnsonP JohnsonP. JohnsonP. JohnsonP.JohnsonP.K. JohnsonPetePete Johnson Barrelhouse BreakdownPete Johnson Boo WooPete JohnstonPeter JohnsonWileyjohnsonKermit HoldinPete Johnson's All-StarsThe Boogie Woogie TrioBig Joe Turner And His Fly CatsPete Johnson's BandPete Johnson And His BandThe Pete Johnson TrioAlbert, Meade, Pete And Their Three PianosPete Johnson & His Boogie Woogie BoysThe Capitol JazzmenPete Johnson's OrchestraPete Johnson SextetteHot Lips Page And His Band + +279253Joey RiotJoseph McHughHardcore DJ from the United Kingdom.Needs Votehttp://www.myspace.com/joeyriotlethalhttps://www.facebook.com/JoeyRiot2.0https://soundcloud.com/joeyriothttps://x.com/DJjoeyriotDJ Joey RiotJ. RiotJ.RiotJRJoeyRIOTRiotChemical ImbalanceKozzaJoseph McHughJo (9)Necrotic (2)Sleeper Cell (4) + +279273Bucky PizzarelliJohn Paul PizzarelliAmerican jazz guitarist and banjoist, born January 9, 1926 in Paterson, New Jersey, died April 1, 2020 in Saddle River, New Jersey +Father of [a=John Pizzarelli] and [a920623] +Needs Votehttps://en.wikipedia.org/wiki/Bucky_Pizzarellihttps://www.allmusic.com/artist/bucky-pizzarelli-mn0000533678"Buck" Pizzarelli"Bucky" Pizzarelli'Bucky' PizzarelliB. PizzarelliBuck PizzarelliBuckey PizzarelliBuckyBucky PezzarelliBucky PizarelliBucky PizzarellaBucky Pizzarelli And StringsBucky Pizzarelli Guitar QuintetBucky PizzerelaBucky PizzereliBucky PizzerellaJ. PizzarelliJohn "Bucky" PizzarelliJohn 'Bucky' PizzarelliJohn (Bucky) PizzarelliJohn PIzzarelliJohn PizzarelliJohnny BuckJon "Bucky" PizzarelliPaul PizzarelliPizzarelliБ. ПиццереллиБаки Пиццареллиバッキー・ピッツァレリHugo Montenegro And His OrchestraThe Glenn Miller OrchestraBenny Goodman SextetRex Stewart QuintetThe Clayton-Hamilton Jazz OrchestraDoc Severinsen And His OrchestraThe Ken Peplowski QuintetPer Husby OrchestraDick Hyman GroupThe Tony Corbiscello Big BandOrizaba And His OrchestraNew York New York (2)Summit ReunionThe Kenny Burrell OctetThe John Bunch TrioBucky & John PizzarelliThe Bucky Pizzarelli TrioNew York SwingKen Peplowski Gypsy Jazz BandYank Lawson And His Yankee ClippersThe Pizzarelli BoysRex Allen's Swing ExpressDan Barrett And His Extra-CelestialsThe Basie AlumniPizzarelli-Peplowski SextetBucky & The StringsThe Bucky Pizzarelli OrchestraHarry Allen All Star QuintetThe Eddie Barefield SextetBob Haggart's Swing ThreeThe Bucky Pizzarelli QuartetThe Arbors All StarsJersey Guitar Mafia + +279275Bobby RosengardenRobert Marshall RosengardenAmerican jazz drummer and percussionist, born April 23, 1924 in Elgin, Illinois, USA, died February 27, 2007 in Sarasota, USA +Father of [a=Neil Rosengarden] +Needs Votehttps://en.wikipedia.org/wiki/Bobby_Rosengardenhttps://adp.library.ucsb.edu/names/208814B. RosengardenBobBob RosengardenBob RosengargenBob RosengartenBobbie RosengardenBobbie RosengardnerBobby RosengartenR. RosengardenR. RosengartenRob't RosengardenRobert (Bob) RosengardenRobert M. RosengardenRobert M. RosengartenRobert RosengardenRobert RosengartenRosengardenGil Evans And His OrchestraHugo Montenegro And His OrchestraLes Brown And His Band Of RenownWalter Wanderley TrioOliver Nelson And His OrchestraEnoch Light And His OrchestraDick Hyman and The GroupThe World's Greatest JazzbandGerry Mulligan And His SextetGerry Mulligan's New SextetBob & Phil And The OrchestraHenry Jerome And His OrchestraDoc Severinsen And His OrchestraThe Jazz Interactions OrchestraDerek Smith TrioOrizaba And His OrchestraThe Danny Stiles FiveJo Basile, Accordion And OrchestraThe Trio (16)Summit ReunionSoprano SummitPeter Appleyard OrchestraVic Schoen And His All Star BandGene Bianco And His GroupThe Phil Bodner QuartetRay Turner QuartetThe Percussion SectionBobby Rosengarden Band + +279626Philippe MonetNeeds VoteMonayMonetP. MonayP. MonetP. MonnetP. MoretPh. MonayPh. MonetPh. MonnetPhilippe MonnetPhillipe MonetJean-Claude FeitussiPhilippe MonayPhil Group + +279708Vincent WilburnVincent Wilburn, Jr.American drummer and producer, nephew of [a=Miles Davis], born 1958 in Chicago, Illinois. +Vincent recorded and toured with the jazz trumpeter and also performed live with [a=Cameo] in the early '80s. Later he recorded and performed with [a=Randy Hall]'s backing band. He also runs the company Miles Davis Properties, LLC along with his two cousins [a1493787], the son of [a=Miles Davis] and [a680784], the daughter of [a=Miles Davis]. Needs Votehttps://www.facebook.com/profile.php?id=100001230099055https://twitter.com/nefofmiles?lang=enhttps://de.wikipedia.org/wiki/Vincent_Wilburnhttp://www.yamaha.com/artists/vincewilburn.htmlhttps://www.imdb.com/name/nm3188746/Teddy WilburnVince WilbournVince Wilbur JrVince WilburnVince Wilburn JrVince Wilburn Jr.Vince Wilburn, Jnr.Vince Wilburn, JrVince Wilburn, Jr.Vince WilburnJr.Vince Willburn, Jr.Vince William Jr.Vincent Wilburn JrVincent Wilburn Jr.Vincent Wilburn, JrVincent Wilburn, Jr.Vincent Wilburn. Jr.Miles Davis SeptetMiles Davis Octet + +279930Phil Moore IIIAmerica pianist. +Son of pianist [a=Phil Moore (2)].Needs VoteMooreP. MooreP. Moore IIIPhil MoorePhil Moore JnrPhil Moore JrPhil Moore Jr.Phil Moore, IIIPhil Moore, Jr.Philip Moore IIIPhillip Moore IIIGerald Wilson OrchestraThe Monterey Jazz Festival OrchestraThe Afro Latin Soultet + +279947Tonio RubioFrench bassistNeeds VoteA. RubioAntoine RubbioAntoine RubioAntonio RubioCutugno RubioRubioT RubioT. RubioT.RubioToni RubioTonio RunioTony RubioTonyo RubioAntoine RubioThe PeppersLes Golden StarsBalthazar (12)Les Golden StringsGiant (21) + +279974Jacques DenjeanFrench singer, pianist, composer, arranger and orchestra director, born in Igny (1929) and died in Paris (1995). Jazz pianist of some reputation and much sought-after as a record arranger in the 1960s. As a performer and arranger, he worked with the likes of Dionne Warwick, François Hardy, Johnny Hallyday, and many others. In 1964, he arranged and conducted Luxembourg's Eurovision entry 'Dès que le printemps revient', performed by Hugues Aufray. Brother of [a8647]. Founded [l355044] in 1971. Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/05/jacques-denjean.htmlhttp://www.guitaresetbatteries.com/jacques-denjean/DenjeanJ DenjeanJ. DanjeanJ. DenjeanJack DanjeanJack DenjeanJack LascarJacque DenjaenJacques DanJeanJacques DanjeanJacques DeanjeanJacques DenjanJacques DenjonJaques Den JeanJaques DenjeanДенжеанIakobos DentjosTorpedo JacksonTuxon WestJacques Denjean Et Son OrchestreLes BarclayGilles Thibaut Et Son OrchestreLes Double SixGeo Daly Et Son QuartetMaxim Saury And His New Orleans SoundAlix Combelle Et Sa FormationFormation Jacques DenjeanFormation Mickey Baker + +280029Jack SheldonAmerican jazz trumpeter, singer and actor +Born 30 November 1931 in Jacksonville, Florida, USA, died December 27, 2019Needs Votehttp://en.wikipedia.org/wiki/Jack_Sheldonhttps://books.discogs.com/credit/550164-jack-sheldonhttps://www.allmusic.com/artist/jack-sheldon-mn0000124767https://adp.library.ucsb.edu/names/343420J SheldonJ. SheldonSheldonWoody Herman And His OrchestraStan Kenton And His OrchestraHenry Mancini And His OrchestraArt Pepper QuintetAndré Previn And His OrchestraHerbie Mann's CaliforniansWoody Herman And The Swingin' HerdDave Pell OctetRolf Kühn SextetJack Sheldon QuintetMarty Paich Big BandThe Jimmy Giuffre 4The Tom Kubis Big BandJimmy Giuffre's OrchestraThe John Graas NonetThe Curtis Counce GroupJohnny Mandel OrchestraJack Sheldon & His West Coast FriendsPaul Togawa QuintetThe Curtis Counce QuintetJoyce Collins QuartetThe Jack Sheldon QuartetJack Sheldon And His Exciting All-Star Big-BandBenny Goodman And His Jazz GroupMel Lewis SextetThe California Cool QuartetBill Berry And The LA BandThe Lou Levy SextetVic Lewis West Coast All-StarsNeal Hefti And His Jazz Pops OrchestraJack Sheldon OrchestraJack Sheldon's Late Show All-StarsThe Marty Paich SeptetArt Pepper + ElevenBenny Goodman Tentet + +280031Gene CiprianoGene Fred CiprianoGene "Cip" Cipriano is an American woodwind and horn player born July 6, 1928 in New Haven, Connecticut, USA. Died 12 November 2022, in Studio City, Los Angeles.Needs Votehttps://makinglifeswing.com/2019/09/08/gene-cipriano-hired-gunn-looks-back-at-some-very-good-years/https://en.wikipedia.org/wiki/Gene_Ciprianohttps://de.wikipedia.org/wiki/Gene_Ciprianohttps://www.imdb.com/name/nm2940181/https://www.allmusic.com/artist/mn0000193121https://rateyourmusic.com/artist/gene-cipriano/CipCiprianoE. CipranoE. CiprianoEugene CiprianoG. CiprianoGene 'Cipriano "Cip"Gene CipnanoGene CiprianiGene Cipriano "Cip"Gene CirprianoGene CyprianoGene P. CiprianoGene SiprianoGenes CiprianoJean CiprianoJene CiprianoTommy Dorsey And His OrchestraBilly May And His OrchestraHenry Mancini And His OrchestraPete Rugolo OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraThe Gene Page OrchestraDennis Farnon And His OrchestraLadd McIntosh Big BandThe Bob Belden EnsembleTommy Tedesco QuintetBuddy Collette SeptetThe Pete Christlieb & Linda Small Eleven Piece BandMark Masters EnsembleGene Cipriano TrioBrent Fischer OrchestraPatrick Williams & His BandJohn Williams And Co. + +280032Dennis BudimirDennis Matthew BudimirAmerican jazz and session guitarist, contributing to hundreds of soundtracks and many jazz, pop & rock sessions. +Born on June 20, 1938 in Los Angeles, California, USA. +Died January 10, 2023 (aged 84).Needs Votehttps://www.facebook.com/people/Dennis-Budimir/100063473770278/https://www.imdb.com/name/nm0119006/https://en.wikipedia.org/wiki/Dennis_Budimirhttps://www.allmusic.com/artist/dennis-budimir-mn0000816851Budimir DennisDenis BudimerDenis BudimirDennie BudimirDennis BudamirDennis BuddimirDennis BudemirDennis BudimerDennis BudimereDennis BudimieDennis BudimierDennis BudimmerDennis BudinirDennis BudirmirDennis BudmirDennis ButimerDennis M. BudimirDennis Mathew BudimirDennis Matthew BudimirDennis N. BudimirDennis RudimerDennis RudimirDennis W. BudimirHarry James And His OrchestraThe Chico Hamilton QuintetGerald Wilson OrchestraThe NPG OrchestraHenry Mancini And His OrchestraPatrick Williams And His OrchestraThe Monterey Jazz Festival OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraEmil Richards & The Microtonal Blues BandBob Florence Big BandGuitars Unlimited (3)The Wrecking Crew (6)Julius Wechter Quintet + +280070Jackie KelsoJohn Joseph Kelson, Jr.American jazz saxophonist, flutist and clarinetist +Classmate of [a70526] + +Born February 27, 1922 in Los Angeles, California, died April 28, 2012 in Beverly Hills, CaliforniaNeeds Votehttp://www.rockabillyeurope.com/references/messages/jackie_kelso.htmhttps://en.wikipedia.org/wiki/Jackie_KelsoJ KelsoJ. KelsoJack KelsenJack KelsoJack Kelso(n)Jack KelsonJack Kelson, Jr.Jackie KelsonJackie Kelson, Jr.Jacky KelsoJacky KelsonJockie KelsoJoe KelsoJohn "Jackie" KelsoJohn J. "Jackie Kelso" KelsonJohn Joseph "Jackie Kelso" Kelson, Jr.John L. "Jackie Kelso" KelsonKelsoKelsonS. Kelsoג'קי קלסוJohn KelsonLionel Hampton And His OrchestraJon Nagourney Quintet + +280072Lew McCrearyLewis Melvin McCrearyAmerican jazz trombonist, worked, among others, with [a=Ray Anthony], [a=Glen Gray & The Casa Loma Orchestra], [a=Lawrence Welk] and [a=Henry Mancini]. + +Born: 9 July, 1927 in Northumberland, Pennsylvania. +Died: 19 January, 1999 in Tarzana, California.Needs Votehttps://www.imdb.com/name/nm1511930/L. MacCrearyL. McCrearyLOUMc CrearyLaw McCrearyLcw McCreardyLee McCreamyLen McCrearyLen McCreavyLeu McCrearyLew MacCrearyLew Mc CraryLew Mc CrearyLew McClearyLew McCraryLew McCreadyLew McCreareyLew McCrearynLew McCreavyLew McCreeryLew McGrearyLew McRaryLew McRearyLewis McCrearyLewis McGreeryLewis Melvin McCrearyLou Mc CrearyLou McClearyLou McCraryLou McCrearyLou McCreeryLou McGreeryLouis Mc CrearyLouis McCrearyM. CrearyMcCrearyMcCreary Lewis MelvinHarry James And His OrchestraRay Anthony & His OrchestraClaude Thornhill And His OrchestraGerald Wilson OrchestraHenry Mancini And His OrchestraLalo Schifrin & OrchestraThe Gene Page OrchestraBill Holman And His OrchestraGlen Gray & The Casa Loma OrchestraBill Holman's Great Big BandThe Page 7Bobby Knight's Great American Trombone CompanyJohnny Mandel OrchestraThe Bob Bain Brass EnsembleNeal Hefti And His Jazz Pops OrchestraThe Wrecking Crew (6)Herschel Burke Gilbert OrchestraCarol Kaye And The Hitmen + +280075Dick NashRichard Taylor NashAmerican jazz trombonist, born January 26, 1928 in Somerville, Massachusetts. +Played with [a=Sam Donahue], [a=Glen Gray], [a=Tex Beneke]. +Brother of [a=Ted Nash (2)], father of [a=Ted Nash].Needs Votehttps://en.wikipedia.org/wiki/Dick_Nashhttps://www.jazzmasters.nl/dicknash.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/116277/Nash_DickD. NashDickNashNash RichardRichard "Dick" NashRichard NashRichard T. "Dick" NashRichard T. NashHarry James And His OrchestraMarty Paich OrchestraRussell Garcia And His OrchestraHenry Mancini And His OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraThe World Jazz All Star BandLalo Schifrin & OrchestraThe Sonny Criss OrchestraStanley Wilson And His OrchestraSam Donahue And His OrchestraHank Mancini And The Mouldy SevenKen Hanna And His OrchestraThe Hollywood TrombonesJohnny Mandel OrchestraBobby Troup And His Stars Of JazzTutti's TrombonesSoundstage All-StarsBenny Goodman BandNeal Hefti And His Jazz Pops OrchestraHerschel Burke Gilbert OrchestraZoot Sims/Dick Nash OctetHall Daniels' OctetArt Pepper + Eleven + +280082Kathy WakefieldKathleen WakefieldSongwriter.Needs VoteC. WakefieldCassie WakefieldCathy WakefieldK .WakefieldK WakefieldK. Wake FieldK. WakefielK. WakefieldK. WalfieldK. WickfieldK.WakefieldKatheen WakefieldKathie WakefieldKathleen "Kathy" Wakefield/Kathleen WakefieldKathy MakefieldKathy WakefieldKathy WakefiledKaty WakefieldWakefieldKathleen TenenKathleen Wakefield TenenDotty & Kathy + +280167Norman NitzscheMastering engineer, mixing engineer and post producer at [l269429], Berlin, Germany. Mastering for CD, vinyl, surround, mix revision and post production. + +Also plays bass guitar in various bands.Correct/WNN. NitzscheNNNitzscheNormanNorman NietzscheNorman NitscheNorman NitschzeNorman NitszcheNorman NitzcheMinaNmfarnerCalyx Mastering + +280177Friedrich GuldaFriedrich GuldaAustrian pianist and composer, born 16 May 1930 in Vienna, Austria, died 27 January 2000 in Weißenbach am Attersee, Austria. Father of [a2284264] (born 25 October 1961) and [a2237277] (born 9 April 1968), the latter from his marriage to Yuko Wakiyama.Needs Votehttp://www.gulda.at/https://en.wikipedia.org/wiki/Friedrich_Guldahttps://de.wikipedia.org/wiki/Friedrich_Guldahttps://www.allmusic.com/artist/friedrich-gulda-mn0000207805/F. G.F. GuldaF.G.Fr. GuldaFriederick GuldaFriedreich GuldaGuldaguldaФридрих ГулдаФридрих Гульдаグルダフリードリヒ・グルダAlbert GolowinAnimaVienna Jazz WorkshopFriedrich Gulda's Reunion Big BandFriedrich Gulda Und Sein Eurojazz-OrchesterJazz Workshop, Ruhr Festival 1962Friedrich Gulda OrchestraFriedrich Gulda TrioFriedrich Gulda And His SextetFriedrich Gulda Octet + +280191Danny GottliebDaniel Richard GottliebAmerican jazz drummer, born 18 April 1953 in New York +Gottlieb has performed as part of the Pat Metheny Group and Mahavishnu Orchestra along with numerous other jazz ensembles. He has also worked with Sting, David Byrne, Herbie Hancock and Chick Corea to name a few and has appeared on over 300 CDs. He currently works as assistant professor of jazz studies at the University of North Florida for several weeks each year. +Sometimes credited as Dan Gottlieb or Daniel R Gottlieb. +Needs Votehttp://www.drummerworld.com/drummers/Danny_Gottlieb.htmlD, GottliebD. GottliebDan GotliebDan GottliebDaniel GotliebDaniel GottliebDaniel R GottliebDanny "G-Force" GottliebDanny GotliebDon GottliebGottliebPat Metheny GroupGil Evans And His OrchestraMahavishnu OrchestraThe George Gruntz Concert Jazz BandElements (6)The Blues Brothers Bandhr BigbandGary Burton QuartetAl Di Meola ProjectWarren Bernhardt TrioThe Nguyên Lê TrioKnut Værnes TrioDavid Matthews TrioAndy Laverne TrioManhattan Jazz OrchestraDaniel Küffer QuartetAndy LaVerne QuartetThe Tom 'Bones' Malone Jazz SeptetThe Jazz SurgeJoe Beck TrioChasper Wanner QuartetContempo TrioJazz SickLoren Schoenberg And His Jazz OrchestraThe Danny Gottlieb TrioThe Connection (6)The Super SeptetFarberiusThe Prodigal Sons (10)Christoffer Møller OrchestraLyle Mays TrioThe Nairobi Trio (5) + +280463Earl MayEarl Charles Barrington MayAmerican jazz bassist, born 17 September 1927 in New York City; died 4 January 2008 in South Orange, USANeeds Votehttps://en.wikipedia.org/wiki/Earl_Mayhttps://adp.library.ucsb.edu/names/330404EarlEarl C. B. Mayアール・メイBilly Taylor TrioBuddy Rich And His OrchestraDizzy Gillespie QuintetSonny Stitt QuartetShirley Scott TrioThe Tony Scott QuartetJohn Coltrane TrioHal Serra QuartetCharlie Rouse QuintetEarl May TrioThe Frank Foster QuintetThe Herman Foster TrioFrank Foster And The Loud MinorityBuddy Rich SeptetGrover Mitchell's New Blue DevilsJon Regen TrioThe Earl May QuartetFrank Foster's Living Color – Twelve Shades Of Black + +280662Bryan KearneyBryan Michael KearneyTrance DJ & producer from Dublin, Ireland. +Born: 1984 +Correcthttp://bryankearney.com/https://www.facebook.com/bryankearneyofficialhttps://soundcloud.com/BryanKearneyhttps://twitter.com/bryankearneyhttps://www.youtube.com/bryankearneyhttps://www.instagram.com/bryankearney/http://web.archive.org/web/20130224180315/http://www.myspace.com/bryankearneyB. KearneyBryan Michael KearneyKearneySpunuldrickKarneyThe RoecorderAh HereKey4050Tooth & Barn + +280676Michael CarvinMichael W. CarvinAmerican jazz drummer and percussionist, born 12 December 1944 in Houston, Texas. + + +Needs Votehttps://en.wikipedia.org/wiki/Michael_Carvinhttp://www.michaelcarvin.com/biography.htmlCarvinGarvinM. CarvinMichael Thabo CarvinMike CarvinMike Carvin (Tabo)Thabo Michael CarvinThabo VincarLonnie Liston Smith And The Cosmic EchoesGerry Mulligan QuartetAtmospheres (2)Frank Lowe QuartetJulius Hemphill QuartetJulius Hemphill TrioJackie McLean & The Cosmic BrotherhoodTerumasa Hino SextetFrank Strozier SextetReggie Workman FirstMichael Carvin QuintetMichael Carvin ExperienceTodd Cochran TC3 + +280703Tom MaloneThomas MaloneAmerican wind and brass instrument player, bandleader, producer, songwriter and arranger, born 16 June 1947 in Hattiesburg, Mississippi (according to Wikipedia he was born in Honolulu, Hawaii). + +From 1969 to 1972, Tom "Bones" Malone subsequently worked in the bands of [i][a=Woody Herman][/i], [i][a=Duke Pearson][/i], [i][a=Louie Bellson][/i] and [i][a=Doc Severinsen][/i]. He joined [i][a=Blood, Sweat And Tears][/i] for about a year in 1973. Also in 1973, he began to work with [a=Gil Evans], a collaboration that would last until Evans' death in 1988. + +Malone was a member of the orchestra for the tv-show [i]Saturday Night Live[/i] from 1975 to 1985, and joined [i][a=The CBS Orchestra][/i] (from [i]The [l=Late Show with David Letterman][/i]) in 1993. He is also one of the original members of [i][a=The Blues Brothers Band][/i] where he played the saxophone. + +Tom "Bones" Malone, who joined the CBS Orchestra on Nov. 1, 1993, plays trombone, trumpet, bass trombone, alto sax, tenor sax, baritone sax, flute, piccolo and alto flute and has contributed more than 400 arrangements to the LATE SHOW. His feature film credits include "The Blues Brothers," "The Last Waltz" and "Blues Brothers 2000". He played in the original Saturday Night Band on "Saturday Night Live" for 10 years and was its musical director from 1981 to 1985. He has also performed and recorded with [a=James Brown], [a=Frank Zappa], Blood, Sweat & Tears, [a=The Band], [a=Miles Davis] and [a=Steve Winwood]. As a studio musician, he has been heard on more than 1,000 records and in more than 3,000 radio and television commercials. Malone has also played themes for CBS THIS MORNING, "Murder, She Wrote" and the 1992 Olympic Winter Games, all on CBS. His solo album, "Soul Bones", features guest appearances by [a=Paul Shaffer] and [a=Blues Traveler]'s [a=John Popper]. + +Malone is originally from Sumrall, Mississippi, and lives in New York City. Owner of [l839570] since April 1979.Needs Votehttp://www.tombonesmalone.net/https://www.facebook.com/tom.b.malonehttps://www.instagram.com/tom_bones_malone/https://www.linkedin.com/in/tom-bones-malone-0192086/http://www.jorgenand.se/bst/bst_stor.html#malonehttps://en.wikipedia.org/wiki/Tom_Malone_(musician)https://www.imdb.com/name/nm0540519/https://www.trombone.net/tom-bones-malone/https://centerstage.conn-selmer.com/artists/tom-maloneBonesMaloneT. MaloneThomas MaloneTom "Bones" MalloneTom "Bones" MaloneTom "Bones" MeloneTom "Broken Bones" MaloneTom 'Bones' MaloneTom Bones MaloneTom MalloneTom MalomeTom MalonTom MeloneTome Bones MaloneGil Evans And His OrchestraBlack Light OrchestraBlood, Sweat And TearsWoody Herman And His OrchestraThe Blues Brothers BandTen Wheel DriveThe Saturday Night Live BandThe North Texas State University Lab BandThe World's Most Dangerous BandThe Monday Night OrchestraThe Ed Palermo Big BandChild Is Father To The ManThe RCO All-StarsHoward Johnson & GravityWoody Herman And The Thundering HerdOrquesta PalenqueSabor (4)The Ultimate OnionsDude Skile's "Hot Combination"University Of North Texas All-Star Alumni BandThe Tom 'Bones' Malone Jazz SeptetThe Brass Attack HornsThe CBS OrchestraThe Hall Of Fame Orchestra1:00 O'Clock Lab Band3:00 O'Clock Lab Band + +280705Milcho LevievМилчо ЛевиевMilcho Leviev (Bulgarian: Милчо Левиев) (Born: December 19, 1937, Plovdiv, Bulgaria - Died: October 12, 2019) was a Bulgarian composer, arranger, and jazz pianist. + + +Needs Votehttps://en.wikipedia.org/wiki/Milcho_Levievhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1048962dd28fa225f83a6dae47c65814525c88/biographyhttps://www.imdb.com/name/nm0505527/http://worldcat.org/identities/lccn-n82234926/https://www.allmusic.com/artist/milcho-leviev-mn0000897581Dr. Professor Milcho LevievLevievM. LevievM. ЛевиевMichel LevievMichio LevievMilchia LevievMilchio LevievMilcho LevierMilcho LevieuMilcho LeviewMilcio LevievMilco LevievMilčo LevievNievevМ. ЛевиевМ. ЛeвиевМ. ЛевиевМ.ЛевиевМилчоМилчо ЛевиевArco IrisArt Pepper QuartetFree FlightThe Milcho Leviev QuartetJack Sheldon & His West Coast FriendsGerald Wilson Orchestra of The 80'sMilcho Leviev TrioLeviev-Slon QuartetMark Masters EnsembleДжаз Фокус-65Milcho Leviev & FriendsEastern EyeLes Trois MichelLeviev-Slon & Co. + +280892Sammy LoweSamuel M. LoweAmerican trumpet player, arranger, producer, born May 14, 1918, Birmingham, Alabama, USA, died February 17, 1993, Birmingham, Alabama. +Sammy was one of the first 5 Alabama Jazz Hall of Fame inductees, founded in 1978Needs Votehttps://en.wikipedia.org/wiki/Sammy_Lowehttps://adp.library.ucsb.edu/names/206027LoveLoweMr. Sammy LoweS. LoveS. LoweS.LoweSam LoweSame LoveSame LoweSammie LoweSammy LoeweSammy LooseSammy LoveSammy Lowe And His OrchestraSamuel LoweErskine Hawkins And His OrchestraThe Sammy Lowe OrchestraErskine Hawkins And His 'Bama State CollegiansThe Sammy Lowe Trio + +280983Danny BarkerDaniel Moses BarkerAmerican jazz guitarist, banjoist and composer, born January 13, 1909 in New Orleans, Louisiana, died March 13, 1994 in the same city. Married to singer [a=Blue Lu Barker]. +After playing in several local groups, went to New York in 1930 to play in swing bands. First recordings with Dave Nelson's Harlem Hot Shots (New York, 1931). During the mid-1940s, much sought after rhythm man, mainly with [a307454] and [a326791]. Returned to New Orleans in 1965.Needs Votehttps://en.wikipedia.org/wiki/Danny_Barkerhttps://web.archive.org/web/20190911093201/http://www.redhotjazz.com:80/barker.htmlhttps://riverwalkjazz.stanford.edu/?q=program/bogalusa-strut-story-danny-barkerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105056/Barker_DannyBanny BarkerBarberBarkerBarterBaxterC.D. BarkerD. BackerD. BakerD. BarkerD. BeikersD.BarkerDBDan BarkerDaniel BarkerDaniel G. BaxterDanny BakerDanny Barker's SextetDanny Barker's SextetteLanny BarkerSanny BarkerД. БейкерCab Calloway And His OrchestraBillie Holiday And Her OrchestraLionel Hampton And His OrchestraWingy Manone & His OrchestraThe Mezzrow-Bechet SeptetTeddy Wilson And His OrchestraPaul Barbarin And His OrchestraPaul Barbarin And His Jazz BandSy Oliver And His OrchestraSir Charles And His All StarsSam Price TrioDan Burley And His Skiffle BoysHenry "Red" Allen And His OrchestraDanny Barker's Fly CatsBilly Kyle And His Swing Club BandChu Berry & His Little Jazz EnsembleJimmy Rushing And His OrchestraArt Ford's Jazz PartyThe Little RamblersChu Berry And His Stompy StevedoresMal Waldron's All StarsJonah Jones And His OrchestraBunk Johnson & His BandThe All Star StompersAlbert Nicholas And His Creole SerenadersDanny Barker & His Jazz HoundsThe Louis Nelson New Orleans All StarsBuster Bailey And His Seven Chocolate DandiesThe "This Is Jazz" All-StarsDanny Barker And His Creole CatsDave's Harlem HighlightsThe Sound Of Jazz All-Stars + +281037Nicholas BucknallClarinetist and basset horn player.Needs Votehttp://nbucknall.co.uk/Nicholas BucknellNicholasBucknallNick BicknullNick BucknallNick BucknellNicolas BucknallThe London Session OrchestraLondon Metropolitan OrchestraLondon Festival OrchestraLondon Classical PlayersLondon WindsThe Whispering Wind BandOrchestre de GrandeurThe Pale Blue Orchestra + +281038Neil LevesleyClassical bassoonist.Needs VoteLondon Philharmonic OrchestraThe Albion Ensemble + +281043Richard MorganOboe player.Needs VoteD. MorganDick MorganMorganR. MorganRichard MoranLondon Philharmonic OrchestraThe London Jazz OrchestraBath Festival OrchestraThe Wind Virtuosi Of EnglandLondon Bach Ensemble + +281311Joe MarshallJazz drummer.Needs VoteJ. MarshallJoe Marshall, JrJoe Marshall, Jr.Joseph MarshallДжо МаршаллJimmie Lunceford And His OrchestraEarl Bostic And His OrchestraJohnny Hodges And His OrchestraChris Barber's American Jazz BandThe Al Sears All Stars + +281312Bob BushnellBassist and bass guitarist. Needs Votehttps://adp.library.ucsb.edu/names/201334https://www.flickr.com/photos/vieilles_annonces/1195842491/in/photostream/lightbox/B. BushnellBob BushnessBob BushwellBob BusnellBobby BushnellBush BushnellBushnellJoe BushnellRobert "Bob" BushnellRobert BushnellRobert C. BushnellБоб Башнеллポブ・ブッシュネルLouis Jordan And His Tympany FiveBill Doggett ComboLouis Jordan And His Orchestra + +281313Shirley ScottShirley ScottAmerican jazz organist and pianist. +Born March 14, 1934 in Philadelphia, Pennsylvania, USA. +Died March 10, 2002 in Philadelphia, Pennsylvania, USA (aged 67). +Performed with [a272685] from about 1955. Married to jazz saxophonist [a29974] for around a decade from the early 1960s.Needs Votehttps://shirleyscott.bandcamp.com/https://en.wikipedia.org/wiki/Shirley_Scotthttps://adp.library.ucsb.edu/names/342864https://www.jazzdisco.org/shirley-scott/https://dougpayne.com/shirley.htmLittle Miss CottS. ScottScottShirly ScottShirley Scott & The Soul SaxesShirley Scott TrioThe Prestige All StarsEddie Lockjaw Davis QuartetThe Eddie "Lockjaw" Davis QuintetAl Grey Jazz All StarsShirley Scott QuartetThe Al Grey – Jimmy Forrest Quintet + +281314Jimmy RushingJames Andrew RushingAmerican blues and swing jazz singer + +Jimmy Rushing (born August 26, 1899, Oklahoma City, Oklahoma, USA - died June 8, 1972, New York City, New York, USA) , perhaps best known as the featured vocalist of the [a253011] from 1935 to 1948. +Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Rushinghttps://adp.library.ucsb.edu/names/103465A. J. RushingFisherI. RushingJ RushingJ. RushingJ.A. RushingJ.A. RuskingJRJames "Jimmy" RushingJames Andrew "Jimmy" RushingJames Andrew 'Jimmy' RushingJames Andrew RushingJames RushingJames rushingJim RushingJimmie RushingJimmy Andrew RushingJimmy RushinJimmy Rushing & FriendsJimmy Rushing & His BandRastigRushingCount Basie OrchestraBennie Moten's Kansas City OrchestraJones-Smith IncorporatedBasie's Bad BoysWalter Page's Blue DevilsJimmy Rushing And His OrchestraThe Jimmy Rushing All Stars + +281324Mike BaroneMichael BaroneJazz trombonist, composer, arranger and leader of [a3260508], born on December 27, 1936 in Detroit (US). +Brother of [a=Gary Barone].Needs Votehttp://mikebaronemusic.com/Biography.htmlBaroneM. BaroneMichael BaroneMichael BaroweMike BaronMike BarroneDizzy Gillespie Big BandGerald Wilson OrchestraSupersaxLouie Bellson OrchestraTrombones UnlimitedThe Barone BrothersMunich Big BandBarone - Burghardt OrchestraThe Mike Barone Big BandThe Bud Shank Big BandKen Rhodes Big Band + +281326Jimmy BondJames Edward Bond, Jr.American bassist and tuba player, born 27 January 1933 in Philadelphia, graduated in 1955 at the Juilliard School of Music in New York and died 26 April 2012.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Bond_(musician)https://www.imdb.com/name/nm13269352/BondJ. BondJames "Jimmy" BondJames "The Man" Bond, Jr.James BondJames Bond, Jr.James E Bond JrJames E. "Chops" BondJames E. (Chops) Bond, Jr.James E. BondJames E. Bond Jr.James E. Bond, JrJames E. Bond, Jr.James Jimmy BondJim BondJimmie BondThe CrusadersChet Baker QuartetGerald Wilson OrchestraHenry Mancini And His OrchestraThe Chet Baker QuintetArt Pepper QuintetJames Bond & His SextetThe Monterey Jazz Festival OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraTerry Gibbs QuartetChet Baker & CrewLouie Bellson OrchestraGerry Mulligan QuintetThe Paul Horn QuintetThe In GroupThe West Coast WorkshopThe Gerald Wilson Big BandElmo Hope TrioThe Paul Moer TrioPhil Urso-Bob Burgess QuintetThe Lawrence Marable QuartetChet Baker Big BandJimmy Woods Quintet + +281327Gabe BaltazarGabriel Ruiz Hiroshi Baltazar, Jr.Alto saxophonist, born November 1, 1929 in Hilo, Hawaii. Died June 12, 2022. +Played with [a=Stan Kenton] 1960-1965. Also worked with [a=Terry Gibbs] (1965), [a=Gil Fuller] (1965-1966) and [a=Oliver Nelson] (1966-1967). After returning to Hawaii he began leading the [a=The Royal Hawaiian Band] in 1969. +2007: Winner of a Nā Hōkū Hanohano Lifetime Achievement Award under the auspices of the Hawaiʻi Academy of Recording Arts. + +Needs Votehttps://en.wikipedia.org/wiki/Gabe_BaltazarBaltazarBaltazerG. BaltazarGabe BaltazrGabe BalthazarGabriel BaltazaGabriel BaltazarGabriel Baltazar Jr.Stan Kenton And His OrchestraThe Monterey Jazz Festival OrchestraMacky Feary BandOliver Nelson's Big BandPaul Togawa QuartetStan Kenton's Melophoneum BandThe Gabe Baltazar QuartetThe Eddie Bert - Gabe Baltazar QuintetGabe Baltazar And The All-Stars + +281329Anthony OrtegaAnthony Robert OrtegaAmerican jazz saxophonist (alto, tenor), clarinetist, and flutist, born June 7, 1928 in Los Angeles, USA; died October 30, 2022 in Encinitas, California.Needs Votehttps://en.wikipedia.org/wiki/Anthony_Ortega_(musician)https://musicbrainz.org/artist/93b7e7e3-132e-4b0a-8e3a-b355caaa3706https://rateyourmusic.com/artist/anthony_ortegahttps://allmusic.com/artist/anthony-ortega-mn0000583126/biographyhttps://imdb.com/name/nm7016650/https://adp.library.ucsb.edu/names/207508A. OrtegaAnthony Ortega...Anthony OrtegoOrtegaTony "Bat Man" OrtegaTony "Batman" OrtegaTony OrtegaTony “Bat Man” Ortegaアンソニー・オルテガQuincy Jones And His OrchestraThe MothersLionel Hampton And His OrchestraWingy Manone & His OrchestraGerald Wilson OrchestraClifford Brown Big BandAnthony Ortega TrioThe Nat Pierce OrchestraLarry Sonn OrchestraMike Wofford SeptetThe Ernie Wilkins GroupNat Pierce QuintetMike Wofford QuartetAnthony Ortega Quartet + +281330Freddie HillFrederick Roosevelt HillAmerican trumpet player. Born on April 18, 1932 in Jacksonville, FL. +Active in Los Angeles, CA, from the 60s to the early 70s, where he worked as an arranger.Needs Votehttps://jazzprofiles.blogspot.com/2012/10/lou-blackburn-and-freddie-hill-quintet.htmlhttps://wbssmedia.com/artists/detail/661F. R. HillFred HillFreddy HillFrederick HillFredrik HillGerald Wilson OrchestraThe Monterey Jazz Festival OrchestraThe Thelonious Monk OrchestraOliver Nelson's Big BandLeroy Vinnegar QuintetThe Gerald Wilson Big BandSouth Central Avenue Municipal Blues Band + +281331Lester RobertsonLester "Lately" Robertson (Born: around 1925 - Died: 1992) was an American jazz trombonist and arranger who was primarily active in the Los Angeles music scene. +Robertson played in music educator Alma Hightower's big band in the 1940s. In the following two decades he worked as a musician and arranger, among other things, in the big bands and ensembles of Clarence Daniels (Do the Deal), Maxwell Davis, Jimmy Giuffre, Teddy Edwards, Lionel Hampton, Gerald Wilson, Clark Terry and Gil Fuller. Together with Eric Dolphy, he led a big band interested in expanding bebop harmonies. He also played with Dolphy and Billy Higgins in the Oasis Club's house band. With the pianist Linda Hill and the bandleader Horace Tapscott, he founded the musicians' cooperative Underground Musicians Association (UGMA) in 1961, which was later renamed the Union of God's Musicians and Artists Ascension (UGMAA). In the 1970s and 1980s, Robertson was a member of Roy Porter's big band Sound Machine and with Horace Tapscott in the Pan Afrikan Peoples Arkestra, for which he also composed. In the field of jazz, he was involved in 43 recording sessions between 1950 and 1984, also in recordings by Johnny Hartman, Al Hibbler, Joe Pass, Nancy Wilson and the pop band The Monkees.Needs Votehttps://de.wikipedia.org/wiki/Lester_RobertsonL. RobertsonLes RobertsonLes RobinsonLester RobinsonGerald Wilson OrchestraThe Monterey Jazz Festival OrchestraThe Pan-Afrikan Peoples ArkestraJimmy Giuffre's OrchestraThe Gerald Wilson Big BandTeddy Edwards Octet + +281332Bud BrisboisAustin Dean BrisboisTrumpeter, born 11 April 1937 in Edina, Minnesota, died 05 June 1978 in Scottsdale, Arizona. + +Member of Stan Kenton's orchestra from September 1958 until the early 1960's. Did a lot of session work during the 1960-70's and often collaborated with [a=Henry Mancini]. Formed his own band [i]Butane[/i] in 1973, in which he was also active as a vocalist. +Needs Votehttp://www.seeleymusic.com/brisboishttp://en.wikipedia.org/wiki/Bud_BrisboisA. D. "Austin" BrisboisA. D. "Bud" BrisboisA. D. BrisboisA. P. BrisboisA.D. "Bud" BrisboisA.D. (Bud) BrisboisA.D. BrisboisA.P. BrisboisAllen BrisboisAustin "Bud" BrisboisAustin BrisboisAustin D. BrisboisB. BrisboisBrisboisBud BrisboidBud BrisboyBud BrishoisBurt BrisboisBut BrisboyWilbur "Bud" BrisboisStan Kenton And His OrchestraHenry Mancini And His OrchestraPete Rugolo OrchestraLalo Schifrin & OrchestraThe Tommy Vig OrchestraHerschel Burke Gilbert Orchestra + +281334Ollie MitchellOliver Edward MitchellAmerican jazz trumpeter and bandleader. + +Born : April 08, 1927 in Los Angeles, California. +Died : May 11, 2013 in Puako, Hawaii.Correcthttps://web.archive.org/web/20111114101132/http://www.olliem.com/MitchellOli MitchellOlie MitchellOliver A. MitchellOliver E. "Ollie" MitchellOliver E. MitchellOliver MItchellOliver MitchellOllie MitchelOllie Mitchell BrassOlliver MitchellHarry James And His OrchestraLes Brown And His Band Of RenownThe Glenn Miller OrchestraBuddy Rich Big BandGerald Wilson OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraLalo Schifrin & OrchestraThe Gene Page OrchestraThe Los Angeles Neophonic OrchestraShorty Rogers Big BandBobby Troup And His Stars Of JazzDan Terry And His OrchestraThe Wrecking Crew (6) + +281335Billy ByersWilliam Mitchell ByersBorn 1 May 1927 in Los Angeles, California (USA), died 1 May 1996 in Malibu, California (USA) + +American jazz trombonist and arranger who worked in the bands of Georgie Auld, Buddy Rich, Benny Goodman, Charlie Ventura and Teddy Powell, among others. He toured Europe and Japan alongside Frank Sinatra in 1974. Byers had extensive credits arranging and conducting for film, and won the Drama Desk Award for Outstanding Orchestrations for "City of Angels."Needs Votehttp://billybyers.com/Welcome.htmlhttps://allmusic.com/artist/Billy_Byers-mn0000086592https://musicbrainz.org/artist/f0e572e0-a692-4e0c-b267-cb23c14eb917https://wikidata.org/wiki/Q863043https://en.wikipedia.org/wiki/Billy_Byershttps://www.imdb.com/name/nm0125792/https://adp.library.ucsb.edu/names/201352A2B. ByerB. ByersB.ByersBeyersBill BeyersBill ByersBill ByresBill M. ByersBill byersBilli ByersBilly ByerByersW. ByersWilliam BeyersWilliam ByersWilliam M. Byers IIILex MondQuincy Jones And His OrchestraWoody Herman And His OrchestraThe MothersBuddy Rich And His OrchestraRay Ellis And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraOliver Nelson And His OrchestraKenny Clarke's SextetThe Ernie Wilkins OrchestraDon Elliott And His OrchestraJoe Newman SextetGeorgie Auld And His OrchestraThe Gary McFarland OrchestraBilly Byers And His OrchestraThe Thelonious Monk OrchestraRichard Maltby And His OrchestraRuby Braff All-StarsRalph Burns And His OrchestraTony Scott SeptetHenri Renaud Et Son OrchestreBilly Byers' Big BandRuby Braff And His Big City SixOliver Nelson's Big BandWoody Herman And The Fourth HerdThe Quincy Jones Big BandMartial Solal Big BandDick Collins And His OrchestraBob Brookmeyer And His OrchestraAl Cohn And His "Charlie's Tavern" EnsembleThe Billy Byers-Joe Newman SextetRuby Braff SextetThe Jim Chapin SextetCharlie Shavers OctetMac-Kac Et Son Rock And RollBilly Byers SextetKenny Clarke-Martial Solal Sextet + +281337Al PorcinoAmerican jazz trumpeter. He was born May 14, 1925 in New York City, New York and died 31 December 2013 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Al_Porcinohttp://www.alporcino.com/http://www.bluenote.com/artist/al-porcino/https://adp.library.ucsb.edu/names/338142A. PorcinoAl PacinoAl ParcinoAl PocineAl PocinoAl PorchinoAl PorcinaAl PorcineAl PoroinoAl PorsesenioAl ProcinoPorcinoЭл ПорсиноCount Basie OrchestraWoody Herman And His OrchestraMetronome All StarsGene Krupa And His OrchestraLouis Prima And His OrchestraStan Kenton And His OrchestraDizzy Gillespie Big BandQuincy Jones' All Star Big BandCharlie Barnet And His OrchestraGerald Wilson OrchestraStan Getz QuartetShorty Rogers And His GiantsCharlie Parker Big BandShorty Rogers And His OrchestraNeal Hefti's OrchestraThe Marty Paich Dek-TetteWoody Herman & The HerdBill Holman And His OrchestraWoody Herman's Big New HerdThad Jones / Mel Lewis OrchestraThe Frankie Capp Percussion GroupTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdOrchestra Chris ReynoldsBill Holman's Great Big BandThe Tommy Vig OrchestraJerry Gray And His OrchestraThe Woody Herman Big BandThe Orchestra (4)Al Porcino Big BandChubby Jackson's OrchestraMarty Paich Big BandWoody Herman BandThe Los Angeles Neophonic OrchestraShorty Rogers Big BandWoody Herman And His Third HerdThe Gerald Wilson Big BandBarone - Burghardt OrchestraDick Collins And His OrchestraBobby Troup And His Stars Of JazzThe Bob Bain Brass EnsembleWoody Herman And The Thundering HerdThe Buddy Bregman BandCal Tjader Modern Mambo OrchestraTerry Gibbs Dream BandHarald Rüschenbaum Jazz OrchestraNeal Hefti And His Jazz Pops OrchestraThad Jones & Mel LewisThe Workshop GangBig Band BurghausenCal Tjader NonetWoody Herman & The Second HerdKen Rhodes Big BandArt Pepper + Eleven + +281338Jules ChaikinAmerican trumpet player, conductor, musical contractor, and session player who was a stalwart of American popular music for over 50 years. + +He was born on 10th October 1934 in Brooklyn, New York. However, shortly afterwards he moved to the Boyle Heights area of Los Angeles where he grew-up. His musical education started at the age of 11 when he began to study at the L.A. Music and Art School in east Los Angeles. He would later go on to study at L.A. City College. During his career he worked with a huge range of artists, including: [a113673], [a58687], [a48512], [url=http://www.discogs.com/artist/114483-Chicago-2]Chicago[/url], [a275002], [a170755], and [a52833], to name merely a handful. + +Chaikin died of heart failure on 23rd November 2012 in Cabo San Lucas, Mexico, at the age of 78. Needs Votehttps://variety.com/2012/music/news/trumpeter-jules-chaikin-dies-at-78-1118063267/ChaikinJ. ChaikinJ. ChakinJules ChaffenJules ChaikenJules ChakinJules ChalkinStan Kenton And His OrchestraGerald Wilson OrchestraRussell Garcia And His OrchestraThe Gerald Wilson Big Band + +281340Conte CandoliSecondo CandoliAmeric bop and cool jazz trumpeter +Born July 12, 1927 in Miashawaka, Indiana, USA, died December 14, 2001 in Palm Desert, USA +Candoli played with [a=Woody Herman] 1943, 1945, 1950, [a=Chubby Jackson] 1947-1948, [a=Stan Kenton] intermittently 1948, 1950-1953, [a=Charlie Ventura] 1949, and [a=Charlie Barnet] 1951. Led own group in Chicago 1954, moving to California to play with [a=Howard Rumsey] until 1960. +Brother of trumpeter [a=Pete Candoli].Needs Votehttp://www.candoli.comhttps://www.allmusic.com/artist/conte-candoli-mn0000100990https://en.wikipedia.org/wiki/Conte_Candolihttps://www.imdb.com/name/nm0133777/https://adp.library.ucsb.edu/names/306873C. CandoliCadoliCandoliCanduliCondoliConteConte CandoriConte CondoliConti CandoliConti CondoliSecondo "Conte" CondoliWoody Herman And His OrchestraStan Kenton And His OrchestraShelly Manne & His MenDizzy Gillespie Big BandMarty Paich OrchestraAndy Kirk And His Clouds Of JoyBoyd Raeburn And His OrchestraWoody Herman & The New Thundering HerdShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraSupersaxHoward Rumsey's Lighthouse All-StarsWoody Herman & The HerdManny Albam And His Jazz GreatsWoody Herman And His WoodchoppersThe Sonny Criss OrchestraThe Buddy Bregman OrchestraWoody Herman's Big New HerdThe Gene Harris All Star Big BandThe Frankie Capp Percussion GroupThe Thelonious Monk OrchestraTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdBill Holman's Great Big BandLouie Bellson Big BandCharlie Ventura And His OrchestraConte Candoli All StarsOsie Johnson And His OrchestraThe Charlie Ventura SeptetBob Jung And His OrchestraOliver Nelson's Big BandThe Los Angeles Neophonic OrchestraShorty Rogers Big BandTerry Gibbs Big BandJimmy Giuffre's OrchestraWoody Herman And His Third HerdGeorge Williams And His OrchestraThe John Graas NonetThe Five (5)Cool GabrielsBobby Troup And His Stars Of JazzHerb Geller SextetteChubby Jackson And His Fifth Dimensional Jazz GroupShelly Manne SeptetThe Buddy Bregman BandBob Cooper NonetMaynard Ferguson OctetTerry Gibbs Dream BandThe Birdland StarsJack Montrose SextetPete & Conte CandoliFrank Strazzeri SextetJoe Newman And His OrchestraStan Levey SextetThe Conte Candoli - Med Flory QuintetJack Sheldon And His Exciting All-Star Big-BandThe Marty Paich OctetThe Brothers CandoliThe Vince Guaraldi - Conte Candoli QuartetThe Conte Candoli QuartetBill Berry And The LA BandThe Brothers Candoli: SextetThe Bob Cooper - Conte Candoli QuintetVic Lewis West Coast All-StarsNeal Hefti And His Jazz Pops OrchestraStan Levey QuintetLouie Bellson's Magic 7Conte Candoli QuintetDoc Severinsen And His Big BandRay Brown And His West Coast All-Star GiantsThe Bud Shank SextetThe Jim DeJulio QuintetNudnicksRichie Kamuca Bill Holman OctetPillars Of West Coast JazzLouie Bellson's Big Band Explosion! + +281455Franck PourcelFranck Marius Louis PourcelFrench composer, arranger, and conductor of popular and classical music born august 11, 1913 in Marseille and died on November 12, 2000 (Parkinson's disease) in Neuilly-sur-Seine. He immigrated to the U.S.A. in 1950. In 1959, his version of "Only You" sold over a million copies. He recorded until 1995.Needs Votehttp://franckpourcel.com/https://www.facebook.com/franckpourcelofficialhttps://all-conductors-of-eurovision.blogspot.com/1972/03/franck-pourcel.htmlhttps://www.youtube.com/channel/UCerSQv4S_mYz44dgawP_8owhttps://en.wikipedia.org/wiki/Franck_Pourcelhttps://www.imdb.com/name/nm0693824/https://adp.library.ucsb.edu/names/356766https://adp.library.ucsb.edu/names/356764F PourcelF. BurselF. PourcelF. Pourcel.F. PourcellF. PourselF. PourterF.M.I. PourcelF.M.L PourcelF.PourcelF.PourcellF.PourselF;PourcelFr. PourcelFranck Marius Louis PourcelFranck PourcellFranck PourcetFranck PourselFranck PurcelFrank PourcelFrank PoureelJ.-W. PourcelMarius PourcelPourcelPourcolPurcel Marius / FrankStoleПурсельФ. ПурсельФр. Пурчелフランク・プゥルセルフランク・プールセルJ.W. StoleRon TillaFrancisco CillioFranck Pourcel Et Son Grand OrchestreFranck Pourcel And His French StringsFranck Pourcel Et Son Sextette + +281667Leiber & StollerJerome "Jerry" Leiber (born April 25, 1933 - died August 22, 2011 from cardiopulmonary failure) and Mike Stoller (born March 13, 1933) are among the most influential songwriters and music producers in post-World War II popular music. + +They went on to write the successful and iconic hits "Hound Dog", "Love Me", "Loving You", "Don't", "Jailhouse Rock", and others for the "King", [a=Elvis Presley]. They were inducted into the Songwriters Hall of Fame in 1985 and Rock and Roll Hall of Fame in 1987. + +Starting with the [a=The Coasters] in 1957, they created a string of ground-breaking crossover hits that are some of the most entertaining in rock and roll by using the humorous vernacular of the white teenager sung by a black group in a style that was openly theatrical rather than personal. These are songs that include "Young Blood", "Searchin'" and "Yakety Yak". They were the first to surround black music with elaborate production values, enhancing its emotional power with [a=The Drifters] in "There Goes My Baby" and influencing [a=Phil Spector] who worked with them on recordings of [a=The Drifters] and [a=Ben E. King] and went on to form his own company and create his famous "Wall of Sound". Leiber and Stoller went into the record business and, focusing on the "girl group" sound, releasing some of the greatest classics of the Brill Building period. + + +Correcthttps://en.wikipedia.org/wiki/Jerry_Leiber_and_Mike_StollerA Leiber & Stoller ProductionA Leiber - Stoller ProductionA Leiber And Stoller ProductionA Leiber Stoller ProductionA Leiber-Stoller ProductionA Lieber-Stoller ProductionA. Leiber - StollerA. Leiber/StollerC. Leiber - StollerCleiber-StollerE. Lieiber / StollerF. Leiber - M. StollerF. Lieber/StollerF. Lieiber - StollerF. Lieiber / StollerF. Lieiber/StollerG Leiber/M. StolerG. Leiben - M. StollenG. Leiber - M. StollerG. Leiber / M. StolerG. Leiber, M. StollerG. Leiber-M. StollerG. Leiber/M. StollerG. Lieber, M. StrollerG. Lieber/M. StollerGerry Laiber/Mike StolierGerry Leiber - Mike StollerGerry Leiber-Mick StollerGerry Leiber-Mike StollerGerry Leiber/Mike StollerGerry Lieber & Mike StollerGerry Lieber - Mike StollerH. Leiber - M. StollerHeiber — StollerI. Leiber, M. StollerJ Leiber - M StollerJ Leiber / M StollerJ Leiber, M StollerJ Leiber, M. StollerJ Leiber, Mike StollerJ Leiber-M. StollerJ Leiber/M StollerJ Leiber/M.StollerJ Lieber & M StollerJ Lieber / M StollerJ Lieber / M. StollerJ Lieber(/M StollerJ Lieber/M StollerJ, Leiber, M. StollerJ. Leaver-M. StrollerJ. Leibe -M. StollerJ. Leiben - M. StollerJ. Leiben/M. StollerJ. LeiberJ. Leiber & M. StolerJ. Leiber & M. StollerJ. Leiber & M. StrotherJ. Leiber & M.StollerJ. Leiber + M. StollerJ. Leiber , M. StollerJ. Leiber - H. StollerJ. Leiber - K. StollerJ. Leiber - M StollerJ. Leiber - M. FtollerJ. Leiber - M. StellerJ. Leiber - M. StollerJ. Leiber - M. StrollerJ. Leiber - M. TollerJ. Leiber - M.StollerJ. Leiber - Mike StollenJ. Leiber - Mike StollerJ. Leiber - N. StollerJ. Leiber - StollerJ. Leiber - StrollerJ. Leiber / H. StollerJ. Leiber / M . StollerJ. Leiber / M StollerJ. Leiber / M. StollerJ. Leiber / M.StollerJ. Leiber / Mike StollerJ. Leiber / W. StollerJ. Leiber And M. StolerJ. Leiber And M. StollerJ. Leiber And Mike StollerJ. Leiber Et M. StollerJ. Leiber Et R. StollerJ. Leiber M. StollerJ. Leiber M.StollerJ. Leiber Y M. StollerJ. Leiber · M. StollerJ. Leiber și M. StollerJ. Leiber – M. StollerJ. Leiber, M StollerJ. Leiber, M- StollerJ. Leiber, M. StllerJ. Leiber, M. StollerJ. Leiber, M. StotterJ. Leiber, M. StrollerJ. Leiber, Mike StollerJ. Leiber, N. StollerJ. Leiber, StollerJ. Leiber,M. StollerJ. Leiber- M. StollerJ. Leiber-H. StollerJ. Leiber-M. SrollerJ. Leiber-M. StollerJ. Leiber-M. StotterJ. Leiber-M. StrollerJ. Leiber-M.StollerJ. Leiber-M.StrollerJ. Leiber-Mike StollerJ. Leiber-StollerJ. Leiber. M. StollerJ. Leiber. M. StrollerJ. Leiber/ M. StollerJ. Leiber/ M.StollerJ. Leiber/ Mike StollerJ. Leiber/M. StallerJ. Leiber/M. StollerJ. Leiber/M.StollerJ. Leiber/Mike StollerJ. Leiber/StollerJ. Leiber/W. StollerJ. Leiber: F. StollerJ. Leiber–M. StollerJ. Leiber~M. StollerJ. Leiher/M. StollerJ. Leike / M. StollerJ. Leike/M. StollerJ. Leike/M. StrollerJ. Leiober, M. StollerJ. Leiser M. StellerJ. Lexber; M. StollerJ. Lieber & M. StollerJ. Lieber & Mike StollerJ. Lieber - M. StollerJ. Lieber - M. StullerJ. Lieber - M.StollerJ. Lieber - StollerJ. Lieber / M. StollerJ. Lieber, M. StokkerJ. Lieber, M. StollerJ. Lieber, M. StrollerJ. Lieber-A. StollerJ. Lieber-J. StollerJ. Lieber-M. StollerJ. Lieber-M. StrollerJ. Lieber-M.StolerJ. Lieber-M.StollerJ. Lieber-Mike StollerJ. Lieber/M. StollerJ. Lieber/M.StollerJ. Lieber/StollerJ. LieberJ. Lieber, M. StollerJ. Lieberman/M. StollerJ. Lieber–M. StollerJ. Lobir - M. StollerJ. Luber - M. StollerJ. Luber / M. StollerJ. ライバー, M. ストラーJ.LeiberJ.Leiber & M. StollerJ.Leiber -J.Leiber - M. StollerJ.Leiber - M.StollerJ.Leiber / M. StollerJ.Leiber / M.StollerJ.Leiber / StollerJ.Leiber, M. StollerJ.Leiber, M.StollerJ.Leiber,M.StollerJ.Leiber-M. StollerJ.Leiber-M.StollerJ.Leiber/M. StollerJ.Leiber/M.StollerJ.Lieber-M.StollerJ.Lieber/M.StollerJarry Leiber - Mike StolerJarry Leiber - Mike StollerJarry Leiber / Mike StollerJarry Leiver-M. StollerJeffrey Leiber And Mike StollerJerome Leiber - Mike StollerJerome Leiber/Mike StollerJerrie Leiber/Mike StollerJerry Lieber - Mike StollerJerry "Jerry" Leiber / Mike StollerJerry Eliber, Mike StollerJerry Laiber / Mike StollerJerry Leibe/Mike SrollerJerry LeibeJ. Leiber/M. Stollerr & Mike StollerJerry Leibel, Mike StollerJerry Leiber & -Mike StollerJerry Leiber & Jerry LeiberJerry Leiber & Mike StollerJerry Leiber & Mike StrollerJerry Leiber , Mike StollerJerry Leiber - M. StollerJerry Leiber - Mike StellerJerry Leiber - Mike StollerJerry Leiber -Mike StollerJerry Leiber / Michael StrollerJerry Leiber / Mick StollerJerry Leiber / Mike StillerJerry Leiber / Mike StollerJerry Leiber / Mike StrollerJerry Leiber / Mike stollerJerry Leiber /Mike StollerJerry Leiber And Michael StollerJerry Leiber And Mike StolerJerry Leiber And Mike StollerJerry Leiber And Mike StrollerJerry Leiber And Miker StollerJerry Leiber Et Mike StollerJerry Leiber I Mike StollerJerry Leiber Mike StollerJerry Leiber Och Mike StollerJerry Leiber Und Mike StollerJerry Leiber Y Mike StollerJerry Leiber und Mike StollerJerry Leiber y M. StollerJerry Leiber y Mike StollerJerry Leiber – Mike StollerJerry Leiber — Mike StollerJerry Leiber& Mike StollerJerry Leiber, H. StellerJerry Leiber, Jerry LeiberJerry Leiber, Jerry StollerJerry Leiber, M. StollerJerry Leiber, Michael StollerJerry Leiber, Mike StolelrJerry Leiber, Mike StolerJerry Leiber, Mike StollerJerry Leiber, Mike StrollerJerry Leiber, Mile StollerJerry Leiber, StollerJerry Leiber,-Mike StollerJerry Leiber- Mike StollerJerry Leiber-M. StollerJerry Leiber-M.StollerJerry Leiber-M8ke StollerJerry Leiber-Micke StollerJerry Leiber-Mike StolerJerry Leiber-Mike StollenJerry Leiber-Mike StollerJerry Leiber-Mike StrollerJerry Leiber-Mike StroolerJerry Leiber. Mike StrollerJerry Leiber/ Mike StollerJerry Leiber/ MikeStollerJerry Leiber/M. StollerJerry Leiber/MIke StollerJerry Leiber/Michael StollerJerry Leiber/Mike StollerJerry Leiber/Mike StolllerJerry Leiber/Mike StrollerJerry Leiber/MikeStollerJerry Leiber; Mike StollerJerry Leiber–Mike StollerJerry Leibler-Mike StollerJerry Leibner & Mike StollerJerry Leibner / Mike StollerJerry Leibner/Mike StollerJerry Leibor-Mike StollerJerry Leiver - Mike StollerJerry Lerriber/ Mike StollerJerry Leyber - Mike StollerJerry Liber, Mike StollerJerry Lieber & Mike StollerJerry Lieber - Mike StollerJerry Lieber -Mike StollerJerry Lieber / Mike StollerJerry Lieber And Michael StollerJerry Lieber And Mike StollerJerry Lieber · Mike StollerJerry Lieber, Mark StollerJerry Lieber, Mike StollerJerry Lieber, MikeStollerJerry Lieber-Mike StollerJerry Lieber/ Mike StollerJerry Lieber/Michael StollerJerry Lieber/Mike StollerJerry Liebert and Mike StollerJerry Liver/Mike StollerJerry Reiber/Mike StollerJerry-Leiber-Mike-StollerJerry-Mike StollerJerryLeiber/Mike StollerJersey Leiber And Mike StollerJersey Leiber-Mike StollerJersey Leiber/Mike StollerJery Leiber-Mike StollerJery Lieber / Mike StolerJetty Leiber And Mike StollerJetty Leiber y Mike StollerJohnny Leiber-Mike StollerK. Leiber/StollerKeith Leiber And Jerry StollerKerry Leiber / Mike StollerKing Leiber / StollerKnightL. Leiber & M. StollerL. Leiber - M. StollerL. Leiber-M. StollerL. Lieber / M. StollerL. StollerLaber And StollenLaiber-StollerLarry Leiber, Mike StollerLeber & StollerLeber And StollerLeber y StollerLeber/SouthernLeber/StollerLeeber - StollerLeibar - StollerLeibar-EstollerLeibe-StollerLeibe/StollerLeiben/StollerLeiberLeiber & Stoller ProductionsLeiber & StrollerLeiber , StollerLeiber - L StollerLeiber - M. StollerLeiber - StallerLeiber - StellerLeiber - StolerLeiber - StolleLeiber - StollerLeiber - StollersLeiber - StrollerLeiber -- StollerLeiber -StollerLeiber . StollerLeiber / StallerLeiber / StillerLeiber / StollerLeiber / Stoller / PomusLeiber / Stoller MaikLeiber / StrollerLeiber /StollerLeiber And StollerLeiber Et StollerLeiber J. / Stoller M.Leiber J./Stoller M.Leiber Jerry - Stoller MikeLeiber Jerry / Stoller MikeLeiber Jerry, Stoller MikeLeiber Mike / Stoller M.Leiber StollerLeiber StrollerLeiber Und StollerLeiber Y StollerLeiber et StolerLeiber et StollerLeiber y StollerLeiber și StollerLeiber – StallerLeiber – StollerLeiber — StolerLeiber — StollerLeiber — StrollerLeiber • StollerLeiber&StollerLeiber, J/ Stoller, MLeiber, J/Stoller, MLeiber, Jerry - Stoller, MikeLeiber, Jerry / Stoller, MikeLeiber, M. StollerLeiber, StellerLeiber, StollerLeiber, Stoller,Leiber, StoollerLeiber, StrolerLeiber, StrollerLeiber,StollerLeiber- StollerLeiber-& StollerLeiber-M. StollerLeiber-Mike-StollerLeiber-SpollerLeiber-StallerLeiber-StellerLeiber-StolerLeiber-StollerLeiber-Stoller EnterpriseLeiber-Stoller ProductionLeiber-StollersLeiber-StolrerLeiber-StrollerLeiber-stollerLeiber. StollerLeiber.StollerLeiber/ & StollerLeiber/ StollerLeiber/ StollersLeiber//StollerLeiber/HollerLeiber/M. StollerLeiber/SipplerLeiber/SrtollerLeiber/StolerLeiber/StollLeiber/StollarLeiber/StollederLeiber/StollerLeiber/StouerLeiber/StrollerLeiber/SttollerLeiber; StollerLeiber;StollerLeibert-StollerLeibert-StrollerLeiber–StollerLeiber—StollerLeiber☐/StollerLeibler - StallerLeibler-StollerLeider - StellerLeider / StollerLeider, StollerLeider-StollerLeider/StollerLeier-StollerLeier/StollerLeiiber - StollerLeiter/ShollerLeiver-StollerLelber / StollerLever / StollerLeyber/StollerLeëber-StollerLiber - StollerLiber / StollerLiber-StollerLibra And StrollerLicler, StollerLieberLieber & StolerLieber & StollarLieber & StollerLieber & StrollerLieber - SlollerLieber - StoccerLieber - StollerLieber - StrollerLieber / StollerLieber / StrollerLieber And StollerLieber Et StollerLieber StollerLieber Y StollerLieber y StollerLieber – StollerLieber&StollerLieber, StollerLieber, StrollerLieber,StollerLieber--StollerLieber-StellerLieber-StolerLieber-StollerLieber-StozzerLieber-StrollerLieber-TollerLieber/ StollerLieber/StolleLieber/StollerLieber/StrollerLieber: StollerLieber; StollerLieberr /StrollerLiebiei - StollerLiebier/StollerLiebtr-StollerLiesre/St. OllerLoiber-StollerLuber - StollerLuber-StollerM Stoller & J LeiberM Stoller / J. LieberM. Leiber - J. StollerM. Leiber . J. StollerM. Leiber / J. StollerM. Leiber, J. StollerM. Leiber-J. StollerM. LevyM. Lieber-J. StollerM. Stolle-B. LeiberM. StollerM. Stoller & J. LeiberM. Stoller - J. LeiberM. Stoller - J. LieberM. Stoller / J. LeiberM. Stoller / J. LieberM. Stoller Et J. LeiberM. Stoller – J. LeiberM. Stoller, J. LeiberM. Stoller- J. LeiberM. Stoller-J. LeiberM. Stoller-Jerry LeiberM. Stoller/G. LoberM. Stoller/J. LeiberM. Stoller/J. LylbreM. Stroller, J. LieberM.Stoller / J.LeiberM.Stoller / L. LeiberM.Stoller-J.LeiberM.Stoller/J.LeiberMIke Stoller, Jerry LieberMax Stoller-Jerry LeibenMike Leiber & Jerry StollerMike Leiber - Mike StollerMike Leiber / Jerry StollerMike Leiber – Jerry StollerMike Leiber, Jerry StollerMike Leiber-Jerry StollerMike Leiber/Jerry StollerMike Lieber-Jerry StrollerMike Sleder & Jerry LeberMike Soller-Jerry LeiberMike Staller-Jerry LeiberMike Stoller & Harry LeiberMike Stoller & Jerry LeiberMike Stoller & Jerry LieberMike Stoller , Jerry LeiberMike Stoller - Jerry LeiberMike Stoller - Jerry LieberMike Stoller / Jerry LeiberMike Stoller / Jerry LieberMike Stoller /Jerry LeiberMike Stoller And Jerry LeiberMike Stoller Et Jerry LeiberMike Stoller Jerry LeiberMike Stoller Y Jerry LeiberMike Stoller, And Jerry LeiberMike Stoller, Jerry LeibeMike Stoller, Jerry LeiberMike Stoller, Jerry Leiber &Mike Stoller, Jerry Leiber,Mike Stoller, Jerry LieberMike Stoller, LieberMike Stoller,Jerry LeiberMike Stoller-J. LeiberMike Stoller-Jerry LeiberMike Stoller-Jerry LieberMike Stoller/Jerry LeiberMike Stollers And Jerry LieberMike Stroller-Jerry LeiberNike Stoller - Yerry LeiberS. Leiber, M. StollerScholarSeiber - StollerSieber - StollerSollerStaller-LeiberSteller-LeiberStoler - LeiberStoler And LeiberStolier/J. LeiberStollar/LeiberStolle, LieberStolled-LeiberStollerStoller & LeiberStoller - LeiberStoller - LieberStoller - LieverStoller / LeiberStoller Et LeiberStoller LeiberStoller LieberStoller LiebertStoller and LeiberStoller, J. LieberStoller, LeiberStoller, LieberStoller-LeiberStoller-LieberStoller/J. LeiberStoller/LeiberStoller/LieberStoller; LeiberStroller, LeiberStroller-LeiberTim Leiber / StollerU. Leiber M. StallerU. Leibner/M. StollerДж. Лейбер, Ф. СпекторДжерри Лейбер И Майк СтоллерЛaйбер – СтоллерЛейбер, СтоллерЛейбер/СтоллерЛиберМ. Штоллер, И. ЛейберСтоллер - ЛиберШотландская Народная Песняליבר - סטולרライバー・ストーラーElmo GlickJed PetersMike StollerJerry Leiber + +281927Bunny HullJeri K. HullSoul / disco vocalist. + +Has worked since late 70's to a plenty of artists' recordings like [a=Peabo Bryson], [a=D.C. LaRue] etc.Needs Votehttps://www.linkedin.com/in/bunny-hull-04375722/https://web.archive.org/web/20200314100113/http://brassheartmusic.com/https://www.grammy.com/artists/bunny-hull/11884https://en.wikipedia.org/wiki/Bunny_HullB. HillB. HullBenny HullBunnyBunny HallBunny HillHullJeri HullMullNullP.Y.T'sHell Fire Choir + +281994Ray ConniffJoseph Raymond ConniffBorn Joseph Raymond Conniff, 6 November 1916, Attleboro, Massachusetts. +Died 12 October 2002, Escondido, California. +Trombonist, arranger and band leader. Father of [a=Tamara Conniff] and husband of [a=Vera Conniff]. +Needs Votehttp://www.rayconniff.comhttps://www.rayconniff.info/http://www.spaceagepop.com/conniff.htmhttp://en.wikipedia.org/wiki/Ray_Conniffhttps://www.imdb.com/name/nm0175241/https://adp.library.ucsb.edu/names/106440Amri HummefConiffConnieConnifConniffConniff ?ConnissR. ConiffR. ConniffR. CorniffR.ConiffR.ConniffRayRay ConiffRay ConnifRay Conniff "El Magico"Ray Conniff & His Orchestra & ChorusRay Conniff And His OrchestraRay Conniff ChorusRay Conniff Orchestre Et ChoeursRay Conniff Son Orchestre Et Ses ChoeursRay Conniff'sRay Conniff, His Orch. & ChorusRay GonniffР. КонниффРей КониффРей КонниффРэй КоннифРэй Коннифф레이 커니프Jay RayeAnn Engborg ConniffJimmy Richards (4)Harry James And His OrchestraRay Conniff And The SingersBunny Berigan & His OrchestraArtie Shaw And His OrchestraRay Conniff And His Orchestra & ChorusBobby Hackett And His OrchestraYank Lawson's Jazz BandArt Hodes' ChicagoansRay Conniff, His Singers, His Orchestra And ChorusRay Conniff, His Singers, His Orchestra, His SoundAl Donahue And His OrchestraRay Conniff & His Orchestra & SingersRay Conniff & His OrchestraThe Ray Conniff QuintetRay Conniff And ChorusBunny Berigan's Rhythm-MakersBunny Berigan And His MenRay Conniff And The Rockin' Rhythm BoysRay Conniff Sextet + +282003Ernie WilkinsErnest Brooks Wilkins Jr.Ernest Wilkins (July 20, 1922 in St. Louis, Missouri – June 5, 1999 in Copenhagen) was a jazz arranger and writer who also played tenor saxophone.Needs Votehttp://en.wikipedia.org/wiki/Ernie_Wilkinshttp://www.allmusic.com/artist/ernie-wilkins-mn0000205130/biographyhttp://www.jazzhouse.org/gone/lastpost2.php3?edit=929006743https://www.ejazzlines.com/big-band-arrangements/by-arranger/ernie-wilkins-count-basie-charts/2https://www.imdb.com/name/nm0929255/B.E. WilkinsE WilkinsE. B. "Ernie" WilkinsE. WilkinsE. WiolkinsE.WilkinsEWErnest Brooks "Ernie" WilkinsErnest Brooks WilkinsErnest Brooks Wilkins, Jr.Ernest WilkensErnest WilkinsErni VilkinsErnieErnie WalkinsErnie WilkensErnie WilkingThe Late Ernie WilkinsThe Screaming MothersWilkensWilkinsErnest BrooksCount Basie OrchestraIllinois Jacquet And His OrchestraPaul Quinichette And His OrchestraThe Ernie Wilkins OrchestraThe Johnny Griffin OrchestraTeddy Stewart OrchestraClark Terry And His Jolly GiantsThe Joe Newman SeptetErnie Wilkins Almost Big BandThe Ernie Wilkins GroupSam Jones & Co.B. P. Convention Big BandManny Albam And Ernie Wilkins OrchestraAll Star Big BandClark Terry - Ernie Wilkins QuintetErnie Wilkins & The All Stars Band + +282067Bix BeiderbeckeLeon Bismark BeiderbeckeAmerican jazz cornetist, pianist and composer (born March 10, 1903, Davenport, Iowa, USA - died August 6, 1931, Queens, New York, USA), regarded as one of the most influential jazz soloists of the 1920's together with [a=Louis Armstrong].Needs Votehttps://bixsociety.org/https://bixbeiderbecke.com/https://en.wikipedia.org/wiki/Bix_Beiderbeckehttps://www.famouscomposers.net/bix-beiderbeckehttps://www.britannica.com/biography/Bix-Beiderbeckehttps://www.imdb.com/name/nm0067147/https://www.scaruffi.com/jazz/beiderbe.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101889/Beiderbecke_Bixhttps://www.allmusic.com/artist/bix-beiderbecke-mn0000104461"Bix""Bix" Beiderbecke(Piano Solo)B BeiderbeckeB. BeiderbackeB. BeiderbeckeB. BeiderceckeB.B.B.BeiderbeckeB.BreiderbeckeBeidebeckeBeiderbeckBeiderbeckeBiderbeckeBiederbeckeBismarck "Bix" BeiderbeckeBismarek Bix BeiderbeckeBixBix BeiderbakeBix BeiderbeckBix BeiderbecksBix BeiderbeikeBix BiderbeckeBix BiederbeckBix BiederbeckeBix Bismarck Leon BeiderbeckeBixt BeiderbeckeL. BeiderbeckeLeon "Bix" BeiderbeckeLeon 'Bix' BeiderbeckeLeon BeiderbeckeLeon Bismarck "Bix" BeiderbeckeLeon Bismark "Bix' BeiderbeckeLeon Bix BeiderbeckeLeon Bix BeiderberckeБ. БейдербекаБайдерсбекВ. БайдербеккеВ. ВайдербеккеFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangBix And His Rhythm JugglersHoagy Carmichael And His OrchestraBix Beiderbecke And His OrchestraJean Goldkette And His OrchestraThe Wolverine OrchestraPaul Whiteman And His OrchestraBix Beiderbecke & His New Orleans Lucky SevenIrving Mills And His Hotsy Totsy GangSioux City SixWillard Robison & His OrchestraThe Chicago LoopersBenny Meroff And His OrchestraBix Beiderbecke And The WolverinesNew Orleans Lucky Seven + +282285Bill Coleman (2)William Johnson ColemanAmerican swing jazz trumpeter. +Born August 4, 1904, Paris, Kentucky - died August 24, 1981, Toulouse, France. +He started his career in 1927 in New York City. During the 1930s he toured Europe for extended periods and in 1948 he moved permanently to France.Needs Votehttps://en.wikipedia.org/wiki/Bill_Colemanhttps://nkaa.uky.edu/nkaa/items/show/925https://www.allmusic.com/artist/bill-coleman-mn0000068537https://adp.library.ucsb.edu/index.php/mastertalent/detail/102905/Coleman_Billhttps://adp.library.ucsb.edu/names/102905B. ColemanB.ColemanBil ColemanBill Coleman (Trompette Solo)Bill ColmanColemanWilliam Johnson 'Bill' ColemanThe International JazzmenKansas City SixFats Waller & His RhythmTeddy Wilson And His OrchestraJack Dieval Et Son QuartettAlix Combelle Et Son OrchestreMary Lou Williams TrioBenny Carter And His OrchestraColeman Hawkins And His OrchestraLuis Russell And His OrchestraJef Gilson And His OrchestraThe Capitol International JazzmenDon Redman And His OrchestraBill Coleman & His OrchestraDickie Wells And His OrchestraSidney Bechet & His All Star BandWillie Lewis And His OrchestraJoe Marsala & His Delta FourBill Coleman And His Swing StarsThe Bill Coleman QuartetWillie Lewis & His EntertainersBill Coleman Bop GroupOscar Pettiford And His 18 All StarsBill Coleman And His SevenEddie Brunner Und Sein OrchesterSidney Bechet SextetBenny Carter And His All StarsJimmy Jones QuintetBuck Clayton SextetGarnet Clark And His Hot Club's FourDenzil Best's Wax QuintetBill Coleman/Don Byas QuintetBill Coleman And His TrioBill Coleman Et Son Ensemble + +282321Rumble & MaddoxNeeds VoteMaddox & RumbleMaddox And RumbleRundell & MaddoxPaul MaddoxJon Rundell + +282391Sylvie VartanSylvie Georges VartanFrench pop singer of Bulgarian and Armenian origin, born August 15, 1944, in Iskretz (Sofia Province) Bulgaria. [a1406731]'s sister. On April 12, 1965, she married French rockstar [a=Johnny Hallyday] in Loconville (divorced on November 4, 1980). Together they had a son [a=David Hallyday], who also became a singer. Johnny Hallyday and Sylvie Vartan were France's "Golden Couple" of their generation. In the 1960s, landing in Italy, she immediately won resounding success and was defined as the queen of [i]"yé-yé"[/i]. In 1984, she married the American actor and producer [a319808].Needs Votehttp://www.sylvie-vartan.com/https://en.wikipedia.org/wiki/Sylvie_Vartanhttps://www.facebook.com/SylvieVartanOfficiel/S VartanS. VartanSilvia VartanSilvieSilvie VartanSilvye VartanSyloie VartanSylvia VartanSylvieSylvie Vartan Mit ChorVartanシルビー・バルタンシルヴィ・バルタンシルヴィ・ヴァルタンシルヴィー・バルタン실비 바르쩐Noël EnsembleSylvie's BandLes Voix De L'enfant + +282467Charles GreenleeAmerican jazz trombonist. + +Born : May 24, 1927 in Detroit, Michigan. Died : January 23, 1993, Springfield, Massachusetts. + +Started out playing more traditional jazz (e.g. with the groups of [a=Benny Carter], [a=Lucky Millinder], and [a=Dizzy Gillespie]) before going on to focus on free jazz in the 1960s and '70s (e.g. with [a=Archie Shepp], [a=Roland Kirk], and [a=John Coltrane]). + +He became a Muslim in the '40s and changed his name to Harneefan Majeed, although he later abandoned both the name and religion. He is rarely credited by this name but it is often combined into his real name. + +BMI CAE/IPI #: 87648034Needs VoteC. GreenleeC. Majid GreenleeCharles "Chuck" GreenleaCharles "Majeed" GreenleeCharles "Majid" GreenleeCharles GreenleCharles GreenleaCharles GreenleyCharles LeaCharles Majeed GreenleaCharles Majeed GreenleeCharles Majid GreenleeCharlie GreenleaCharlie GreenleeChartles GreenleaChas. GreenleeChuck GreenleaEph GreenleaGreenleaGreenleeRichard GreensleeHernifan MajeedDizzy Gillespie And His OrchestraDizzy Gillespie Big BandRoy Eldridge And His OrchestraSlide Hampton OctetThe Archie Shepp Group + +282489Johnny HallydayJean-Philippe Léo SmetFrench singer, songwriter, performer and actor, born June 15, 1943 in Paris, died December 5, 2017 in Marnes-la-Coquette, Île-de-France. +He was married to the french singer [a282391] from April 12, 1965 until November 4, 1980. +Father of [a421717] + +As of November 2011, he had sold more than 100 million records, and earned 40 gold records, 22 platinum records, 3 diamond records and 8 Victoires de la Musique (the French equivalent of the Grammy). 28 million spectators have attended his concerts over more than 100 tours in France and Europe. However, like most French singers and musicians, his international career never really took off. Despite some tours abroad in the 1960s and 1970s, and a concert in Las Vegas in 1996, Hallyday is virtually unknown to the public outside the French speaking world. + +He recorded some 1000 songs, including a little more than a hundred self-penned titles and around 250 French adaptations of original songs in English. Especially in the beginning of his career, during the early 1960s, Hallyday built his career mostly on French adaptations of songs by his American idols. +Needs Votehttp://www.johnnyhallyday.comhttp://www.facebook.com/jhofficielhttp://www.facebook.com/On-a-tous-quelque-chose-de-Johnny-269553153536422http://www.instagram.com/jhallydayhttp://twitter.com/JohnnySjhhttp://twitter.com/QqChoseDeJohnnyhttp://en.wikipedia.org/wiki/Johnny_Hallydayhttp://www.youtube.com/channel/UCfIV8B6z_elX_1sneYfrekQHalidayHallidayHallidejHallydayHolidayHollydayJ. HallydayJ. HallidayJ. Hally DayJ. HallydayJ. HollidayJ. HollydayJ.H.J.HallydayJ.HalydayJHJohnnyJohnny ApolloJohnny HalidayJohnny HallidayJohnny HalydayJohnny HollidayJohnny HollydayJohnny JolidayJohny HalidayJohny HallydayJonny HallydayJonny HollydayMarriottMolly DayNnyha LlydayjohДж. ХолидейДжони ХоллидейДжонни Холлидейג׳וני הולידייジョニー・アリディジョニー・ハリディジョニー・ハリデイJean-Philippe Smet + +282490Eric ChardenJacques André Gilbert PuissantFrench singer, songwriter and composer, born 15 October 1942 in Haïphong, Vietnam and died 29 April 2012 in Paris, France.Needs Votehttp://en.wikipedia.org/wiki/%C3%89ric_Chardenhttp://fr.wikipedia.org/wiki/%C3%89ric_ChardenChardenCharden E.ChardinE. ChardanE. ChardenE. ChardinE. SchardenE.ChardenEric ChardinEric ChardonM. E C. ChardenM.E. ChardenT. ChardenÉ. ChardenÉric ChardenЭ. ЧарденGeorges Armstrong CusterBryan MuRichard Eden (2)Pounjah BourouStone Et Eric Charden + +282533Stafford JamesStafford Louis JamesAmerican jazz bassist, born April 24, 1946 - Evanston, Illinois, USA + + +Needs Votehttps://en.wikipedia.org/wiki/Stafford_Jameshttps://www.allmusic.com/artist/stafford-james-mn0000179018/biographyS. JamesS.JamesStafford JonesStafford L. JamesStafford L. James IIIGary Bartz NTU TroopRashied Ali QuartetJohn Scofield QuartetChelsea BeigeMal Waldron TrioFrank Strozier QuintetLouis Hayes - Woody Shaw QuintetDexter Gordon QuartetRoswell Rudd QuintetPharoah Sanders QuartetThe Woody Shaw Concert EnsembleStafford James EnsembleThe New York Saxophone MadnessWoody Shaw QuintetRonnie Mathews TrioMonty Waters' Hot HouseThe New Woody Shaw QuintetWoody Shaw QuartetLouis Hayes / Junior Cook QuintetBarney Wilen & Mal Waldron Quartet + +282551Harry CarneyHarry Howell CarneyAmerican jazz saxophonist and clarinet player, born April 1, 1910 in Boston, Massachusetts, died October 8, 1974 in New York City, USA. +Needs Votehttps://en.wikipedia.org/wiki/Harry_Carneyhttp://www.bluenote.com/artist/harry-carney/https://www.britannica.com/biography/Harry-Howell-Carneyhttps://www.allmusic.com/artist/harry-carney-mn0000948458http://www.pitt.edu/~atteberr/jazz/artists/ellington/people/carney.htmlhttps://www.imdb.com/name/nm1333409/biohttps://adp.library.ucsb.edu/names/103190CaneyCarneCarneyCarveyGarneyH. CaneyH. CarneyH. H. Carney Jr.H.CarneyHCHarrey CarneyHarry CarneHarry CarnetHarry Carney With StringsHarry CarveyHarry Cowell CarneyHarry GarneyHarry H. CarneyHarry H. KarneyHarry Howell CarneyHenry CarneyГ. КарниГарри КарниКарниХарри КарниХэрри КарниHarry James And His OrchestraDuke Ellington And His OrchestraMetronome All StarsCootie Williams & His Rug CuttersThe Whoopee MakersTeddy Wilson And His OrchestraDuke Ellington And His Cotton Club OrchestraThe WashingtoniansBarney Bigard And His OrchestraRex Stewart And His OrchestraThe Duke's MenThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersColeman Hawkins And His Sax EnsembleSonny Greer And His RextetDuke Ellington And His Jazz GroupThe Gotham StompersDuke Ellington SextetDuke Ellington OctetHarry Carney And His OrchestraIvie Anderson And Her Boys From DixieRex Stewart's Big EightBilly Taylor's Big EightDuke Ellington All Star Road BandHarry Carney And The Duke's MenHarry Carney's Big EightEsquire All American Award WinnersThe Ellington All-Stars Without DukeDuke Ellington And His Award WinnersJohnny Hodges And His Small BandThe Memphis Hot ShotsJimmy Jones' Big EightSandy Williams Big EightJohnny Hodges & His Big BandHarry Carney's All StarsLouis Bellson's Just Jazz All StarsEdmond Hall's SwingtetBarney Bigard And His JazzopatersThe Harlem Music MastersMercer Ellington OctetDuke Ellington's Philadelphia MelodiansBenny Goodman Jam Session + +282552Ray NanceRay Willis NanceAmerican jazz trumpet player, violinist and singer, born 10 December 1913 in Chicago, Illinois, USA, died 28 January 1976 in New York City, USA.Correcthttps://en.wikipedia.org/wiki/Ray_Nancehttps://www.naxos.com/person/Ray_Nance/7171.htmhttps://www.radioswissjazz.ch/en/music-database/musician/13199ae823712fd26b57a500f1920f1411b1c/biographyhttps://www.loc.gov/pictures/item/2017851458/https://www.cc-seas.columbia.edu/wkcr/story/ray-nances-violin-jazz-profiles-sunday-27-july-2pmhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/nance-ray-willishttps://www.imdb.com/name/nm1098968/https://adp.library.ucsb.edu/names/103189NanceR. N.R. NanceRNRay ManceRay NaceRaymond NanceRoy NanceWillis NanceWillis R. NanceР. НенсР. НэнсРей НэнсDuke Ellington And His OrchestraEarl Hines And His OrchestraEarl Hines SextetBarney Bigard And His OrchestraThe Duke's MenEddie Heywood And His OrchestraJohnny Hodges And His OrchestraThe Earl Hines SeptetDuke Ellington All Star Road BandThe Ellington All-Stars Without DukeLawrence Brown's All-StarsDuke Ellington And His Award WinnersJohnny Hodges And His Small BandThe Duke's TrumpetsJohnny Hodges & His Big BandThe Band That Plays The BluesSol Yaged And His QuartetAl Hibbler And His Orchestra + +282553Aaron BellSamuel Aaron BellAmerican jazz bassist, born April 24, 1922 in Muskogee, Oklahoma, died July 28, 2003 in New York City, USA. + +Needs Votehttps://adp.library.ucsb.edu/names/303696A. BellAaronAaron BelleAron BellArron BellBellА. БеллАарон БеллDuke Ellington And His OrchestraBillie Holiday And Her OrchestraBuck Clayton And His OrchestraTeddy Wilson TrioTony Scott And His OrchestraLester Young QuintetThe Buck Clayton SeptetEarl Hines And His BoysSam Most SextetSeldon Powell SextetThe ZeitgeistThe Manhattan Jazz All StarsDon Elliott QuartetCy Coleman Jazz TrioAaron Bell And His OrchestraThe Aaron Bell TrioThe Urbie Green OctetBooty Wood And His AllstarsLou Stein And His OctetHot Lips Johnson And His OrchestraFriedrich Gulda And His SextetGeorge Rhodes And His Orchestra + +282557Eddie LockeEdward LockeAmerican jazz drummer, born 8 February 1930 in Detroit; died 7 September 2009 in Ramsey, New Jersey, USA. + +Needs VoteEd LockeEddward LockeEdward LockeЭ. ЛоккColeman Hawkins QuartetLee Konitz Big BandRay Bryant TrioRoland Hanna TrioEddie Locke SextetHayes Kavanagh's New York City Jazz Band + +282558Willie RodriguezLatin jazz percussionist based in the US. +Birthdate: November 3, 1918 (Puerto Rico) Death: Died May 18, 1966 (Puerto Rico) +[b]For releases AFTER 1967, please, use [a313580][/b] +For the Cuban sonero singer, use [a3119892] (Willy) +For the Venezuelan salsa singer, use [a7128690]Needs VoteBill RodriguezBill RodriquezRodriguezRodríguezW. RodriguezWille RodriguezWilli RodriguezWilliam RodriguezWilliam RodriquezWilliam V. RodriguezWillie RodriguesWillie RodriquezWillie RodríguezWillie RoriguezWilly NochebuenaWilly RodriguezWm. RodriguezУ. РодригезEnoch Light And The Light BrigadeDizzy Gillespie And His OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraPaul Whiteman And His OrchestraThe Command All-StarsTerry Snyder And The All StarsJohnny Lytle QuintetLos AdmiradoresNinapinta And His Bongos And CongasWillie Rodriguez Jazz QuartetAfrocuban BoysThe Grand Award All StarsJohnny Richards And His OrchestraZoot Sims And His OrchestraWoody Herman And The Fourth HerdArt Farmer And His OrchestraWillie Rodriguez And The International StarsGary McFarland & Co.Astor Piazola & His QuintetThe Kenny Burrell OctetWillie Rodriguez And His Gang + +282559Howard CollinsHoward C. CollinsGuitarist and jazz educator who worked mainly in theaters and studio sessions +Born September 3, 1930 in Queens, NY, died July 10, 2015 in Bangor, PANeeds VoteCollinsHerb CollinsHoward C. CollinsHowie CollinsХ. КоллинсBenny Goodman And His OrchestraOliver Nelson And His OrchestraColeman Hawkins SextetGeorge Russell OrchestraThe American Jazz OrchestraThe John Lewis GroupThe Bernie Leighton QuartetThe Ruby Braff-Marshall Brown Sextet + +282605Alice DonaAlice DonadelFrench composer and singer born on February 17, 1946 in Maisons-Alfort, France.Needs Votehttps://fr.wikipedia.org/wiki/Alice_DonaA DonaA. DonaA. DonadelA. DonatA. DonerA. DonnaA. DonsA.DonaA.DonsAl. DonaAlice Christiane DonadelAlice Christiane RicciAlice DonadelAlice DonatAlice DonnaAline DonaD'Alice DonaDonaDona AliceDonnaDonoE. DonaАлис ДонаДонаאליס דונהכריסטיאן דונאדלAlice Christiane Ricci + +282608Gilbert BécaudFrançois Gilbert Léopold SillyFrench singer, composer and actor. He was born on 24 October 1927 in Toulon, France and died on 18 December 2001 in Paris, France. Father of [a1012352]. Known as Monsieur 100,000 Volts for his energetic performances. + +His best-known hit is probably Et Maintenant, a 1961 release that became an English language hit after being translated into What Now My Love. Many of his songs were huge worldwide hits e.g. Je T'appartiens (in English Let It Be Me), Le Jour Où La Pluie Viendra (in English The Day The Rains Came, in German Am Tag Als Der Regen Kam), Seul Sur Son Étoile (in English It Must Be Him), September Morn and Love On The Rocks (co-written with Neil Diamond) Bécaud first composed songs for Edith Piaf, Yves Montand, Jean Sablon, Dalida and Charles Aznavour. His work was sung by Elvis Presley, Frank Sinatra, Nina Simone, Marlene Dietrich, Shirley Bassey, Bob Dylan, Juliette Gréco, Willie Nelson, Patricia Kaas, etc.Needs Votehttps://www.imdb.com/name/nm0126713/https://en.wikipedia.org/wiki/Gilbert_B%C3%A9caudhttps://adp.library.ucsb.edu/names/362253https://cravatapois.wixsite.com/gilbert-becaudhttps://www.facebook.com/OfficielGilbertBecaud/https://www.instagram.com/gilbertbecaudfans/https://gilbert-becaud-fanpage.de/B. BecaudB.BecaudBacaudBe'caudBebaudBecandBecaudBecaud G.Becaud GilbertBecaud, Francois GilbertBecaudiBecauldBecauoBecautBeccaudBecoudBegaudBelaudBercaudBicandBicaudBècaudBé caudBécaudBécaud And CoBécaud G.BécotBércaudC. BecandC. BecanudC. BecaudC. BécaudC.BecaudCharles BecaudCilbert BecaudD. BecaudDecaudEcaudF. BecaudFrancois Gilbert BecaudFrançois BécaudG BecaudG BécaudG, BecaudG, BécaudG. BecaudG. BacaudG. BecandG. BecaudG. BecauldG. BecausG. BecautG. BecauyG. BechaudG. BeclaudG. BegaudG. BekoG. BicaudG. BoucaudG. BècaudG. BécaudG. BécoudG. F. BecaudG. FecaudG. PécaudG. bécaudG.BecaudG.BecáudG.BécaudG.E. BacaudG.F. BecaudGBécaudGerard BecaudGi. BécaudGibert BecaudGilber BecaudGilber BécaudGilbertGilbert - BécaudGilbert Be'caudGilbert BeacaudGilbert BeacudGilbert BecaioGilbert BecamdGilbert BecandGilbert BecaudGilbert Becaud Con OrquestaGilbert BecautGilbert BecoudGilbert BedaudGilbert BegaudGilbert BercaudGilbert BicaudGilbert BscaudGilbert BècaudGilbert Bécaud Con OrquestaGilbert Bécaud Mit OrchesterbegleitungGilbert BécoudGilbert F. BecaudGilbert F. BécaudGilbert Francois BacaudGilbert Francois BecaudGilbert Francois BécaudGilbert Francois LeopoldGilbert Francois Leopold BecaudGilbert Francois Leopold BécaudGilbert François Leopold BecaudGilbert-BécaudGilbèrt BécaudGillbert BecaudGolbert BecaudJ. BecaudJ. BécaudLeopold BecaudLeopold FrancoisLéopold FrançoisM. BecaudMecaudMonsieur Gilbert BecaudP. G. BecaudRenauldVeccaudVécaudbecaudБекоГ. БекоЖ. БеккоЖ. БекоЖилбер БекоЖильбер Бекоג'ילבר בקוז'ילבר באקוז'ילבר בקוジルベール ・ベコージルベール・ベコーベコーFrançois Gilbert SillyGilbert Bécaud Mit Orchesterbegleitung + +282636Judith ShermanJudith Dorothy ShermanAmerican sound engineer and record producer, based in New York. Born November 12, 1942, she has been nominated for 17 Grammy Awards and won 12, including 6 for "Producer Of The Year, Classical" (in 1993, 2007, 2011, 2014, 2015, 2022).Correcthttps://en.wikipedia.org/wiki/Judith_ShermanJudith L. ShermanJudith R. ShermanJudy ShermanSteve Reich And Musicians + +282641Theatre Of VoicesTheater Of Voices, founded by artistic director [a=Paul Hillier], focuses on three main areas of specialty: medieval and renaissance polyphony, Anglo American folk psalmody (including the Shape Note tradition), and contemporary composers of the "new tonality" school.Needs Votehttp://en.wikipedia.org/wiki/Theatre_of_Voiceshttp://www.singers.com/choral/theaterofvoices.htmlThe Theatre Of VoicesThe Theatre of VoicesToVPaul HillierChristopher Bowers-BroadbentPaul ElliottAllison ZellesAndrea FullingtonEllen HargisSteven RickardsElse Torp SchröderMichael George (3)Alan Bennett (3)Boyd JarrellTom HartAmelia TriestKari KaarnaElisabeth EnganMark DanielNeal RogersClaire KelmHugh Davies (3)Suzanne ElderRuth EscherDavid StattelmanJakob SkjoldborgChristopher WatsonWilliam PurefoyJakob Bloch JespersenRastko RoknićDaniel Carlsson (4)Monika FischalekRaymond MartinezMattias FrostensonSigne AsmussenKristin MuldersTom Hart (2)Linda LiebschutzDavid VarnumElisabeth EliassenEdward BettsAnnette Rossi PutnamGabriel BaniaHanna KappelinJohan LinderothKarolina RadziejAllan RasmussenMime Yamahiro BrinkmannLars BaunkildePaul Bentley-AngellFredrik FromJasenka Balić ŽunićKate Browton + +282643Paul HillierPaul Douglas HillierEnglish bass & baritone vocalist and conductor, born 9th February 1949 in Dorchester.Needs Votehttps://en.wikipedia.org/wiki/Paul_Hillierhttps://theatreofvoices.com/paul-hillier/HillierP. HillierP.H.Paul HillerPaul HilliarPaul HilliardPaul Hilliersポール・ヒリヤーTheatre Of VoicesThe Hilliard EnsembleEstonian Philharmonic Chamber ChoirSingcircleVoicestraThe Medieval Ensemble of LondonCamerata Of LondonEmpyrean Ensemble + +283005Thomas ChapinAlto saxophonist and flautist, born March 9th, 1957 in Manchester (USA) +died February 13, 1998 + +From 1981 to 1986 he toured with [a=Lionel Hampton] as lead saxophonist and musical director of the band. He also performed with [a=Chico Hamilton]'s band from 1988 to 1989. +In the 90's he formed his own groups, most notably a trio and worked with all the jazz "avantgarde" NYC scene musicians. +Over his career he recorded fifteen albums. +Needs Votehttp://www.thomaschapin.com/http://en.wikipedia.org/wiki/Thomas_ChapinChapinT. ChapinTCThomas CapinThomas Chapin (Rage)Thomas Chapin Trio & StringsThomas Chapin W/ BrassThomas Chapin W/ StringsTom ChapinLionel Hampton And His OrchestraThomas Chapin TrioMachine Gun (3)Misako Kano QuartetNed Rothenberg Double BandUnder Cover Collection BandThe Walter Thompson OrchestraDavid Lahm QuartetRutgers University Livingston College Jazz EnsembleAnthony Braxton / Mario Pavone QuintetAvantangoShekhina Big Band + +283069Tristan FryTristan Frederick Allan FryEnglish drummer, percussionist/timpanist, vibraphonist, trumpeter, backing vocalist, and conductor. Born 25 October 1946 (or 26 October 1941) in London, England, UK. +He studied at the [l527847]. He began his career in 1963 with the [a=London Philharmonic Orchestra] where he stayed for 5 years. He was a founder member of a number of ensembles, including [a=The Nash Ensemble], [a=Fires Of London] and the [a=London Sinfonietta]. During the 1960s, he also worked as a session musician with various pop artists such as [a=The Beatles], [a=Danny Kaye (2)], [a=Frank Sinatra], [a=John Martyn], [a=Olivia Newton-John], [a=Elton John] and [a=David Essex], among many others. He also played in many commercial recordings, TV shows and movie soundtracks. In 1979, he joined classical guitarist [a=John Williams (7)], keyboard player [a=Francis Monkman], guitarist [a=Kevin Peek], and bassist [a=Herbie Flowers] in the progressive rock group [a=Sky (4)] where he stayed until 1995. Longtime member and Principal Timpani with [a=The Academy of St. Martin-in-the-Fields] orchestra, he has performed on most of their recordings and in concert. He has also given many solo concerts of avant garde percussion repertoire. In 2011 he played timpani with [a=The London Chamber Orchestra] at the royal wedding of Prince William and Kate Middleton.Needs Votehttps://en.wikipedia.org/wiki/Tristan_Fryhttps://www.feenotes.com/database/artists/fry-tristan-26th-october-1941-present/https://www.the-paulmccartney-project.com/artist/tristan-fry/https://www.naxos.com/Bio/Person/Tristan_Fry/151811https://www.imdb.com/name/nm3041671/https://www2.bfi.org.uk/films-tv-people/4ce2ba71ca187FryT. FryT.F.Tristam FryTristanTristan FlyeTristan FryeTristen FryTristian De FryTristian FryTristram FryTristran FryTristran FryeTristrom FryeLondon Symphony OrchestraLondon Philharmonic OrchestraSky (4)The Armada OrchestraThe John Dankworth OrchestraLondon SinfoniettaFires Of LondonThe Academy Of St. Martin-in-the-FieldsThe English Baroque SoloistsThe Nash EnsembleMelos Ensemble Of LondonTristan Fry Percussion EnsembleOrquesta De CadaquésThe Wind Virtuosi Of EnglandKen Moule & His Radio OrchestraEnglish Bach Festival Percussion Ensemble + +283102Maurice ChevalierMaurice Auguste ChevalierFrench actor and singer, born September 12, 1888 in Paris, France, died January 1, 1972 in Paris, France at the age of 83. He was married to [a=Yvonne Vallée] from 1927 to 1932.Needs Votehttps://compmast.tripod.com/chevalie/chevalie.htmlhttps://en.wikipedia.org/wiki/Maurice_Chevalierhttps://www.imdb.com/name/nm0002001/https://www.britannica.com/biography/Maurice-Chevalierhttps://adp.library.ucsb.edu/names/103151ChavalierChevalierChevalier MauriceH. ChevalierHonoreHonoréM. ChevalierM. Chevalier Du Casino De ParisM. Maurice ChevalierM.ChevalierM.ChevallierMM. Maurice ChevalierMaorice ChevalierMaurice ChavalierMaurice ChevaliereMaurice ChevallierMaurizio ChevalierМорис ШевальеMaurice Chevalier And His Orchestra + +283110Ron GoodwinRonald Alfred GoodwinBritish composer and conductor (born February 17, 1925 - Plymouth, Devon, England; died January 8, 2003 - Newbury, Berkshire, England).Needs Votehttp://www.rongoodwin.co.uk/https://en.wikipedia.org/wiki/Ron_Goodwinhttps://www.imdb.com/name/nm0006109/https://adp.library.ucsb.edu/names/318374B. GoodwinGoddwinGoodwinGoodwin, RonaldR. GodvillR. GoodinR. GoodwinRon GodwinRon GoodwynRonnie GoodwinRon Goodwin And His OrchestraHal Galper Trio + +283122Herbert von KarajanHeribert Ritter von KarajanAustrian conductor. He was principal conductor of the [a260744] for 34 years. He is considered one of the most famous and greatest conductors of the 20th century. + +Born April 5, 1908 in Salzburg, Austria-Hungary (now Austria) +Died July 16, 1989 in Anif, Austria (aged 81) + +Herbert von Karajan was born in Salzburg, Austria-Hungary (now Austria), the second son of the surgeon and consultant Ernst von Karajan (1868-1951) and Marta (1881-1954). He was a child prodigy at the piano. From 1916 to 1926, he studied piano at the Mozarteum in Salzburg with Franz Ledwinka, harmony with Franz Sauer and composition with Bernhard Paumgartner. Karajan was encouraged to study conducting by Bernhard Paumgartner, who detected his exceptional promise in that regard. In 1926, Karajan graduated from the conservatory and continued his studies at the Vienna Academy, studying piano with Josef Hofmann (not be confused with the american pianist [a1901295]) and conducting with Alexander Wunderer and Franz Schalk. Karajan made his debut as a conductor in Salzburg on 22 January 1929. + +In 1933 and 1935 Herbert von Karajan joined to the Nazi Party. Karajan remained silent about his membership in the Nazi Party, leading to a number of conflicting theories about it. One version is that due to the changing political climate and the destabilization of his position, Karajan attempted to join the Nazi Party in Salzburg in April 1933, but his membership was later declared invalid because he somehow failed to follow up on the application, and that Karajan formally joined the Nazi Party in Aachen in 1935, implying that he was not eager to seek membership and that he joined the Nazi Party solely for career reasons. Other theories say that Karajan joined the Nazi Party for ideological reasons rather than for career reasons, even more than 10 years later in 1955 the music director of the [a27519], [a809856] refused to shake Karajan's hand because of his past in the Nazi Party. + +In 1946, Karajan gave his first postwar concert in Vienna with the [a754974], but was banned from further conducting by the Soviet occupation authorities because of his Nazi party membership. That summer he participated anonymously in the Salzburg Festival. On 28 October 1947, Karajan gave his first public concert following the lifting of the conducting ban. With the Vienna Philharmonic and the Gesellschaft der Musikfreunde, he performed [a304975] "A German Requiem" for a gramophone production in Vienna. In 1954, he succeeded [a=Wilhelm Furtwängler] in the direction of the [a=Berliner Philharmoniker]; orchestra that has reached supreme degrees of perfectionism thanks to his tenacity and to his well-known meticulousness combined with a perfect knowledge of the orchestra and the possibilities of the instrumentalists.Needs Votehttps://www.karajan.org/https://discoverkarajan.com/https://web.archive.org/web/*/https://www.karajan-institut.org/https://www.britannica.com/biography/Herbert-von-Karajanhttps://www.facebook.com/HerbertvonKarajanhttps://www.musiklexikon.ac.at/ml/musik_K/Karajan_Familie.xmlhttps://www.rateyourmusic.com/artist/herbert_von_karajanhttps://web.archive.org/web/20030628131419/https://www.sonyclassical.com/artists/karajan/https://en.wikipedia.org/wiki/Herbert_von_Karajanhttps://www.worldradiohistory.com/Archive-All-Music/RPM/60s/1968/RPM-1968-05-04.pdfDirigent Herbert von KarajanG. KarayanH. KarajanH. V. KarajanH. V. KarajanH. Von KarajanH. v. KarajanH. von KarajanH. vonKarajanHerb. von KarajanHerbert KarajanHerbert V. KarajanHerbert Von KarajanHerbert fon KarajanHerbert v. KarajanHerbert v.KarajanHerbert von KarajaHerbert von KarajanHerberth von KarajanHerbery Von KarajanHerebrt von KarajanHervert Von KarajanHervert von KarajanJ.S. BachKarajanOrquesta Filarmonica De VienaStaatskapellmeister H. v. KarajanStaatskapellmeister H. von KarajanStaatskapellmeister Herbert v. KarajanVon Karajanvon KarajanΧέρμπερτ Φον ΚάραγιανГ. КараянГ. Фон КараянГ. фон КараянГ.КараянГерберт КараяанГерберт КараянГерберт Фон КараянГерберт фон КараянКараянФон КараянХерберт Фон КараянХерберт фон Карајанهربرت فون كارابانهربرت فون کارایانカラヤンカラヤン指揮ヘルベルト・カラヤンヘルベルト・フォン・カラヤンヘルベルト・フォン・カラヤン = Herbert von Karajanヘルベルト・フォン・カラヤン指揮ヘルベルト・フォン・カラヤンヘルベルト・フォン・カラヤン = Herbert von Karajan卡拉扬卡拉揚赫伯特·冯·卡拉扬 + +283125Gennadi RozhdestvenskyГеннадий Николаевич Рождественский Gennady Nikolayevich Rozhdestvensky +Soviet and Russian conductor, teacher, pianist, composer and musical-public figure, teacher, professor at the Moscow Conservatory. +Born: May 4, 1931, Moscow, USSR; Passed Away: June 16, 2018, Moscow, Russia. +People's Artist of USSR (1976). Hero of Socialist Labor (1990). Lenin Prize (1970) and the State Prize of Russia (1995). Son of [a2722909] & [a1727852]. +Career: +1951—1961 Оркестр Большого театра ([a=Bolshoi Theatre Orchestra]) (main conductor assistant) +1961—1974 [a=Большой Симфонический Оркестр Всесоюзного Радио] и Центрального телевидения (Large Symphony orchestra of Soviet radio and Central TV) +1964—1970 Оркестр Большого театра ([a=Bolshoi Theatre Orchestra]) +1974—1985 Оркестр Камерного музыкального театра (Chamber Theatre Orchestra) +1974—1977 [a=Stockholms Filharmoniska Orkester] +1978—1981 [a=BBC Symphony Orchestra] +1980—1982 [a=Wiener Symphoniker] (Vienna Symphony) +1983—1991 [a1414732] (Symphony Orchestra of the USSR Ministry of Culture) +1992—1995 [a=Kungliga Filharmonikerna]Needs Votehttps://en.wikipedia.org/wiki/Gennady_Rozhdestvenskyhttps://ru.wikipedia.org/wiki/%D0%A0%D0%BE%D0%B6%D0%B4%D0%B5%D1%81%D1%82%D0%B2%D0%B5%D0%BD%D1%81%D0%BA%D0%B8%D0%B9,_%D0%93%D0%B5%D0%BD%D0%BD%D0%B0%D0%B4%D0%B8%D0%B9_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%D0%B8%D1%87https://www.bach-cantatas.com/Bio/Rozhdestvensky-Gennady.htmCennadi RozhdestvenskyDirigent RoshdestwenskyG. N. RozhdestvenskyG. RojdestvenskiG. RojdestvenskyG. RoshdesiwenskiG. RoshdestwenskiG. RoshdestwenskijG. RoszdestvenskyG. RozdestvenskyG. RozhdestevenskyG. RozhdestvenskiG. RozhdestvenskiyG. RozhdestvenskyG. RozhdestwenskyG. RozsgyesztvenszkijG. RoždestvenskisG. RožděstvenskijG.RozhdestvenskiG.RozhdestvenskyGen. RojdestvensyGenadij RožděstvenskijGenardy RozhdestvenskyGenhady RozhdestvenskyGennadi RashdestvenskyGennadi RezhdestvenskyGennadi RojdestvenskiGennadi RojdestvenskyGennadi RoschdestwenskiGennadi RoschdestwenskijGennadi RoschdestwenskyGennadi RosdestvenskyGennadi RoshdensvenskyGennadi RoshdestvenskiGennadi RoshdestvenskyGennadi RoshdestwendkyGennadi RoshdestwenskiGennadi RoshdestwenskijGennadi RoshdestwenskyGennadi RosjdestvenskijGennadi RozdestvenskiGennadi RozdestvenskyGennadi RozdhdestvenskyGennadi RozhdestvenskiGennadi RozhdestvenskijGennadi RozhdestwenskiGennadi RozhdestwenskyGennadi RozhdéstvenskyGennadi RoždestvenskiGennadi RoždestvenskijGennadii RozhdestvenskyGennadij RoschdestwenskijGennadij RoshdestvenskijGennadij RoshdestvenskyGennadij RoshdestwenskiGennadij RoshdestwenskijGennadij RoshdestweskijGennadij RozdestvenskijGennadij RozdestwenskijGennadij RozhdestvenskijGennadij RozhdestvenskyGennadij RozhdestwenskijGennadij RoždestvenskijGennadij RožděstvenskijGennadij RožděstvěnskijGennadij RožhděstvenskijGennadiy RozhdestvenskiyGennadiy RozhdestvenskyGennady RahzdestvenskyGennady RojdestvenskyGennady RoshdestvenskyGennady RoshdestwenskyGennady RozhdestvenskiGennady RozhdestvenskyGennady Rozhdestvensky, Gennadij RoshdestwenskijGennady RozjdestwenskiGennagyij RozsgyesztvenszkijGennandy RoidestwenskyGennasdij RoshdestwenskijGhenadi RojdestvenskiGhennadi RozhdestvenskiGhennadij RogdestvenskijGuennadi RodjdestvenskiGuennadi RodjestvenskGuennadi RojdestvenskiGuennadi RojdestvenskyGuennadi RojdesvenskiGuennadi RojdvestenskiGuennadi Rojdvestenski,Guennadi RojhdestvenskiGuennadi RoshdestvenskyGuennadi RozhdestvenskiGuennadi RozhdestvenskyGuennady RojdestvenskyGuennady RozhdestvenskyGuennedi RojdestvenskiRojdestvenskiRojdestvenskyRoschdestwenskijRoshdestvenskijRoshdestvenskyRoshdestwenskiRoshdestwenskijRoshdestwenskyRozhdestevenskyRozhdestvenskiRozhdestvenskyRozhdestvensky, GennadiRozhdestwenskyRozhoktvenskyRozsgyesztvenszkijRoždestvenskijГ. Н. РождественскийГ. РождественскийГ. Н. РождественскийГ. РождественскиГ. РождественскийГ. Рождественский = G. RozhdestvenskyГ.РожденственскийГ.РождественскийГенадий РождественскийГенна́дий РождественскийГеннадий РождественсГеннадий РождественскийРождественскийԳեննադի Ռոժդեստվենսկիגנאדי רושדסטוונסקיゲンナジー・ロジェストヴェンスキーBBC Symphony OrchestraRoyal Philharmonic OrchestraWiener SymphonikerБольшой Симфонический Оркестр Всесоюзного РадиоStockholms Filharmoniska OrkesterBolshoi Theatre OrchestraГосударственный Симфонический Оркестр Министерства Культуры СССРKungliga FilharmonikernaBolshoi TheatreСимфонический Оркестр Московской Консерватории + +283127Karl BöhmKarl August Leopold BöhmAustrian conductor, born 28 August 1894 in Graz, Austria and died 14 August 1981 in Salzburg, Austria. +In 1917, he became rehearsal assistant at the [l1414336] as rehearsal assistant making his debut as a conductor later that year. He became the assistant director of music in 1919, and the following year, the senior director. +Father of [a558106]. + +Not to be confused with the German composer [a=Carl Bohm].Needs Votehttps://en.wikipedia.org/wiki/Karl_B%C3%B6hmhttps://www.imdb.com/name/nm0127037/https://www.bach-cantatas.com/Bio/Bohm-Karl.htmBoehmBohmBöhmCarl BöhmComposed ByDr. Karl BöhmGeneralmusikdirektor Dr. Karl BöhmK. BoehmK. BohmK. BöhmK.BöhmKark BöhnKarl BemKarl BoehmKarl BohmKarl Bohm'aKarl BohnKarl BohnnKarl BoëhmKarl BöehmKarl Böhm, ConductorKarl BöhnKarl BœhmKurt BöhmMarl BoehmProf. Dr. K. BöhmProf. Dr. Karl BöhmΚαρλ ΜπαιμΚαρλ ΜπεμКарл БохмКарл Бёмカール・ベームベーム카를 뵘Karl List (2)Staatskapelle Dresden + +283469Franz SchubertFranz Peter SchubertAustrian composer of the late Classical and early Romantic eras, born 1797-01-31 in Himmelpfortgrund, today Vienna, Austria and died 1828-11-19 In Widen, today Vienna, Austria.. +Despite his short lifetime, Schubert left behind a vast oeuvre, including more than 600 secular vocal works (mainly lieder), seven complete symphonies, sacred music, operas, incidental music and a large body of piano and chamber music.Needs Votehttps://schubert-ausgabe.de/https://en.wikipedia.org/wiki/Franz_Schuberthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101852/Schubert_Franzhttps://www.musiklexikon.ac.at/ml/musik_S/Schubert_Brueder_Franz.xmlhttps://www.allmusic.com/artist/franz-schubert-mn0000691239F SchubertF. P. SchubertF. P. ShubertF. Peter SchubertF. SchaubertF. SchubertF. SchubertaF. SchuhertF. SchulcentF. ShubertF. ŠubertF. ŠubertasF. ŠubertsF. ŠūbertsF. シューベルトF.A. SchubertF.J. SchubertF.P. SchubertF.P.SchubertF.SchubertF.ShubertF.ŠūbertsF.シューベルトFR.SchubertFr SchubertFr. SbhubertFr. SchubertFr. SchubertasFr. ShubertFr. ŠubertasFr. ŠubertsFr.SchubertFran SchubertFranc SchubertFranc ŜubertFranc ŠubertFrance SchubertFrancesco SchubertFrancis ŠūbertsFranciszek SchubertFranciszek SzubertFrancois SchubertFrancz SchubertFrank SchubertFrank ShubertFrans SchubertFrans ShubertFrant. SchubertFrantz SchubertFranzFranz (Peter) SchubertFranz Anton SchubertFranz P. SchubertFranz Peter SchubertFranz Peter ShubertFranz SchubFranz SchuberFranz Schubert - P.D.Franz ScubertFranz ShubertFranz ŠubertFranzl SchubertFrançois SchubertFrz. SchubertHubertNach Franz SchubertR. SchubertR.SchubertSCHUBERTSchibertSchuberSchubertSchubert F.Schubert FranzSchubert'sSchubert, FSchubert, F.Schubert, FranzSchubert, Franz PeterSchubert-ArnoldSchubert:SchuberthSchubrtSchubértSchuibertSchumbertSchurbertScubertShubertTrad.schubertunter Verwendung eines Themas von Franz SchubertŠubertŠubertasŠubertsΣούμπερτΦραντς ΣούμπερτФ. ШубертФ. ЩубертФ.ШубертФр. ШубертФранц Петер ШубертФранц ШубертШаубертШубертШуберт = Fr. SchubertШуберт Ф.ШубертаШубертъפ. שוברטפרנץ שוברטשוברטシュベルトシューべルツシューベルトフランツ・ぺーター・シューベルトフランツ・シューベルトフランツ・ペーター・シューベルトフランツ・シューベルト修伯特弗朗茨·舒伯特舒伯特슈베르트프란츠 슈베르트 + +283844Rod McKuenRodney Marvin McKuenRod McKuen (born April 29, 1933, Oakland, California, USA - died January 29, 2015, Beverly Hills, California, USA) was an American singer / songwriter, composer, musician and poet (who also used the pseudonym Dor on three 1959 releases). Throughout his career, McKuen produced a wide range of recordings, which included popular music, spoken word poetry, film soundtracks and classical music. He earned two Academy Award nominations and one Pulitzer nomination for his music compositions. McKuen's translations and adaptations of the songs of Jacques Brel were instrumental in bringing the Belgian songwriter to prominence in the English-speaking world. McKuen's songs sold over 100 million recordings worldwide, and 60 million books of his poetry were sold as well. (He was one of the best-selling poets in the United States during the late 1960s.) His poetry deals with themes of love, the natural world and spirituality. +Needs Votehttp://www.rodmckuen.org/https://en.wikipedia.org/wiki/Rod_McKuenhttps://books.google.fr/books?id=OwkEAAAAMBAJ&pg=RA1-PA26&dq=discography+mckuen&hl=en&sa=X&ei=DEftVIWmONPioASSsIDQDA&redir_esc=y#v=onepage&q=discography%20mckuen&f=falsehttps://adp.library.ucsb.edu/names/330788https://www.allmusic.com/artist/rod-mckuen-mn0000243803B. McKuenJ.B.R. McKuenM. KuenM. McKuenMac KuenMacKuenMc KuenMc Kuen R.Mc Kuen RodMc QuenMc Rod KuenMc-KuenMcEwanMcHuenMcKeunMcKuehMcKuenMcKuen RodMcKuesMcKunMcKuneMcKunenMcKwenMcKyenMcQuenMcRuenMckewenMckuenMckuonMekeunMekuenMokuenP. McKuenR McKuenR MckuenR, McKuenR. M. KuenR. MC. QueenR. MackuenR. Mc KuenR. Mc KvenR. McKueR. McKuehnR. McKuenR. McKuerR. McQuenR. MckuenR.M. KuenR.McKluenR.McKuenR.McQuenRed McKuenRob MacKyenRob McKuenRob McKyenRod Mac KuenRod MacKuenRod Mc KuenRod Mc KuneRod Mc KvenRod Mc-KuenRod Mc. KuenRod Mc.KuenRod McCuenRod McCuhenRod McEuenRod McKeunRod McKuanRod McKueonRod McKuhenRod McKvenRod McQueenRod McQuenRod McQuennRod McQuienRod MckuenRod McqueenRod McrommanRod MokuenRod MyKuenRodrego MyKuenRon Mc KuenР. МаккюънРод МаккуенРод Маккьюенמק-קואן洛・麥昆Heins Hoffman-RichterDor (5)Bob McFadden & DorSlide (11)Rod McKuen OrchestraDor And The Confederates + +284099Rodgers & HammersteinThe most successful collaboration in Broadway history and among the primary contributors to the American repertoire, this duo formed when Rodgers' original songwriting partner [a=Lorenz Hart] died in 1943 and ended with Hammerstein's death in 1960.Needs Votehttps://rodgersandhammerstein.com/https://rnh.com/https://en.wikipedia.org/wiki/Rodgers_and_HammersteinA. Hammerstein - R. RodgersA. Rodgers-O. Hammerstein IIB. Rodgers-O. HammersteinC. Hammerstein II / R. RodgersD. Hammerstein - R. RodgersD. Hammerstein II-R. RodgersE. Rodgers - O. Hammerstein IIG. Hammerstein II, R. RodgersG. Hammerstein II-R. RodgersH. Rodgers, O. Hammerstein 2ndH. Rogers, O. Hammerstein 2ndHammersein II - RodgersHammersmith II - RodgersHammersteinHammerstein & RodegsHammerstein & RodgersHammerstein - R. RodgersHammerstein - RodgersHammerstein - RogersHammerstein -RodgersHammerstein / RodgersHammerstein / RogersHammerstein 11, RodgersHammerstein 2/RodgersHammerstein 2d - RodgersHammerstein 2nd & RodgersHammerstein 2nd & RogersHammerstein 2nd - R. RodgersHammerstein 2nd - RodgersHammerstein 2nd-RodgersHammerstein 2nd. & RodgersHammerstein 2nd—RodgersHammerstein And RodgersHammerstein IIHammerstein II & RodgersHammerstein II - R. RodgersHammerstein II - RodgersHammerstein II - RogersHammerstein II / R. RodgersHammerstein II / RodgersHammerstein II / RogersHammerstein II And Richard RodgersHammerstein II RodgersHammerstein II and Richard RodgersHammerstein II, O./Rodgers, R.Hammerstein II, RodgersHammerstein II--RodgersHammerstein II-R. RodgersHammerstein II-RodgersHammerstein II-RogersHammerstein II/RodgersHammerstein II/RogersHammerstein Ii-RodgersHammerstein RogersHammerstein and RodgersHammerstein, II - RodgersHammerstein, O.II, Rodgers, RHammerstein, RodgerHammerstein, RodgersHammerstein, RogersHammerstein, RombergHammerstein,RodgersHammerstein-H. RodgersHammerstein-RodgersHammerstein-RogersHammerstein/ RodgersHammerstein/R. RodgersHammerstein/RodgersHammerstein/RogersHammersteinII-RodgersHmmerstein II-RodgersJerome Kern-Oscar Hammerstein IIKern-Hammerstein IILorenz Hart - R. RodgersO, Hammerstein II, R. RodgersO. Hammersmith II-R. RodgersO. Hammerstein & R. RodgersO. Hammerstein & R. RogersO. Hammerstein - R. RodgersO. Hammerstein - R. RogersO. Hammerstein / R. RodgersO. Hammerstein / R. RogersO. Hammerstein 2 - R. RodgersO. Hammerstein 2nd, R. RodgersO. Hammerstein 2nd-R. RodgersO. Hammerstein 2nd-R.RodgersO. Hammerstein 2nd. - R. RodgersO. Hammerstein Et R. RodgersO. Hammerstein H-R RodgersO. Hammerstein I I - R. RodgersO. Hammerstein I R. RodgersO. Hammerstein IIO. Hammerstein II & R. RodgersO. Hammerstein II - R. RodgersO. Hammerstein II - R. RogersO. Hammerstein II - Richard RodgersO. Hammerstein II - RodgersO. Hammerstein II / R. RodgersO. Hammerstein II R. RodgersO. Hammerstein II – R. RodgersO. Hammerstein II, R. RodgersO. Hammerstein II-R. RodgersO. Hammerstein II-R. Rodgers &O. Hammerstein II-R. RogersO. Hammerstein II-R.RodgersO. Hammerstein II/ R. RodgersO. Hammerstein II/J. KernO. Hammerstein II/R. RodgersO. Hammerstein II/R. RogersO. Hammerstein II/R.RodgersO. Hammerstein II–R. RodgersO. Hammerstein II—R. RodgersO. Hammerstein Ii - R. RodgersO. Hammerstein Jr.~R. RodgersO. Hammerstein R. RodgersO. Hammerstein y R. RodgersO. Hammerstein, II - R. RodgersO. Hammerstein, II, R. RodgersO. Hammerstein, II-R. RodgersO. Hammerstein, II/R. RodgersO. Hammerstein, R. RodgersO. Hammerstein, R. RogersO. Hammerstein- R. RodgersO. Hammerstein-II - R. RodgersO. Hammerstein-R. RodgersO. Hammerstein-R. RogersO. Hammerstein-RodgersO. Hammerstein/R. RodgersO. Hammerstein/R. RogersO. Hammerstein/R.RodgersO. Hammerstein/RodgersO. Hammerstein\R. RodgersO. Hammerstien II, R. RodgersO.Hammerstein - R.RodgersO.Hammerstein II - R. RodgersO.Hammerstein II - R.RodgersO.Hammerstein II, R.RodgersO.Hammerstein II-R.RodgersO.Hammerstein II/R.RodgersO.Hammerstein Jr.-R. RodgersO.Hammerstein Jr.-R.RodgersO.Hammerstein-R.RodgersOsc. Hammerstein II/Rich. RodgersOscar Hammerstein & Richard RodgersOscar Hammerstein & Richard RogersOscar Hammerstein , II – Richard RodgersOscar Hammerstein - Richard RodgersOscar Hammerstein - Rickard RodgersOscar Hammerstein / Richard RodgersOscar Hammerstein / Richard RogersOscar Hammerstein 2nd & Richard RodgersOscar Hammerstein 2nd & Richard RogersOscar Hammerstein 2nd - Richard RodgersOscar Hammerstein 2nd, Richard RodgersOscar Hammerstein 2nd-Richard RodgersOscar Hammerstein And Richard RogersOscar Hammerstein IIOscar Hammerstein II & Richard RodgersOscar Hammerstein II & Richard RogersOscar Hammerstein II & RogersOscar Hammerstein II , Richard RodgersOscar Hammerstein II - Richard RodgersOscar Hammerstein II - Richard RogersOscar Hammerstein II / R. RodgersOscar Hammerstein II / Richard RodgersOscar Hammerstein II / Richard RogersOscar Hammerstein II And Richard RodgersOscar Hammerstein II Et Richard RodgersOscar Hammerstein II Richard RodgersOscar Hammerstein II and Richard RodgersOscar Hammerstein II | Richard RodgersOscar Hammerstein II, Richard D. RodgersOscar Hammerstein II, Richard RodgersOscar Hammerstein II, Richard RogersOscar Hammerstein II, Richards RogersOscar Hammerstein II,Richard RodgersOscar Hammerstein II-RIchard RodgersOscar Hammerstein II-Richard RodgersOscar Hammerstein II-Richard RogersOscar Hammerstein II/Richard RodgersOscar Hammerstein III, Richard RodgersOscar Hammerstein, 2nd-Richard RodgersOscar Hammerstein, II - Richard RodgersOscar Hammerstein, Richard RodgersOscar Hammerstein, Richard Rodgers IIOscar Hammerstein, Richard Rodgers, IIOscar Hammerstein, Richard RogersOscar Hammerstein, RodgersOscar Hammerstein-Richard RodgersOscar Hammerstein-Richard RogersOscar Hammerstein/ Richard RodgersOscar Hammerstein/Richard RodgersOscar Hammerstein/Richard RogersOscar Hammerstien II-Richard RodgersOscar Hammerstien-Richard RogersOscar II Hammerstein / Richard RodgersOscar II Hammerstein, Richard RodgersOscar hammerstein II - Richard RodgersP. Rodgers/O. Hammerstein IIR Rodgers - O HammersteinR Rodgers / O HammersteinR Rodgers / O. HammersteinR Rodgers, O HammersteinR Rodgers/O HammersteinR Rodgers/O Hammerstein IIR&HR&MR. HammersteinR. Ridgers / O. HammersteinR. Rodger & O. Hammerstein IIR. Rodger/ O. HammersteinR. RodgersR. Rodgers & Hammerstein IIR. Rodgers & O. HammersteinR. Rodgers & O. Hammerstein IIR. Rodgers & Oscar Hammerstein IIR. Rodgers , O. Hammerstein IIR. Rodgers - C. Hammernstein IIR. Rodgers - H. HammersteinR. Rodgers - HammersteinR. Rodgers - Hammerstein IIR. Rodgers - L. Hammerstein IIR. Rodgers - O- Hammerstein IIR. Rodgers - O. HammersteinR. Rodgers - O. Hammerstein 11R. Rodgers - O. Hammerstein IIR. Rodgers - O. Hammerstein, 2ndR. Rodgers - O. Hammerstein, IIR. Rodgers - O. HammerstineR. Rodgers - Oscar Hammerstein IIR. Rodgers / D. Hammerstein IIR. Rodgers / HammersteinR. Rodgers / O Hammerstein IIR. Rodgers / O. HammersteinR. Rodgers / O. Hammerstein IIR. Rodgers / Oscar Hammerstein IIR. Rodgers / Oscar II HammersteinR. Rodgers And O. HammersteinR. Rodgers And O. Hammerstein IIR. Rodgers And O. Hammerstein, IIR. Rodgers Et O' HammersteinR. Rodgers HammersteinR. Rodgers and O. Hammerstein IIR. Rodgers et O. Hammerstein 2ndR. Rodgers — O. Hammerstein IIR. Rodgers • O. Hammerstein IIR. Rodgers, O HammersteinR. Rodgers, O. HammersteinR. Rodgers, O. Hammerstein IIR. Rodgers, O. Hammerstein IIIR. Rodgers, O. Hammerstein, 2nd.R. Rodgers, O. Hammerstein, IIR. Rodgers- D.Hammerstein IIR. Rodgers- O. HammersteinR. Rodgers-HammersteinR. Rodgers-Hammerstein IIR. Rodgers-O HammersteinR. Rodgers-O. HammerstR. Rodgers-O. HammersteinR. Rodgers-O. Hammerstein 2ndR. Rodgers-O. Hammerstein IIR. Rodgers-O. Hammerstein IIIR. Rodgers-O. Hammerstein ⅡR. Rodgers-O. HammerteinR. Rodgers-O.HammersteinR. Rodgers-O.Hammerstein IIR. Rodgers-Oscar Hammerstein IIR. Rodgers. O. Hammerstein IIR. Rodgers/ O. HammersteinR. Rodgers/ O. Hammerstein IIR. Rodgers/D. HammersteinR. Rodgers/HammersteinR. Rodgers/Hammerstein IIR. Rodgers/O Hammerstein IIR. Rodgers/O. HammersteinR. Rodgers/O. Hammerstein 2ndR. Rodgers/O. Hammerstein IIR. Rodgers/O. Hammerstein IIIR. Rodgers/O.HammersteinR. Rodgers/O.Hammerstein IIR. Rodgers/Oscar Hammerstein IIR. Rodgers; O. Hammerstein IIR. Rodgers; O.Hammerstein IIR. Rodgers;O. HammersteinR. Rodgers–O. Hammerstein IIR. Rodgers∙O. Hammerstein IIR. Roger / HammersteinR. Rogers & O. HammersteinR. Rogers - O. HammersteinR. Rogers - O. Hammerstein IIR. Rogers / O. HammersteinR. Rogers / O. Hammerstein IIR. Rogers / O. Hammerstein IIIR. Rogers And O. HammersteinR. Rogers And O. Hammerstein IIR. Rogers, HammersteinR. Rogers, O. HammersteinR. Rogers, O. Hammerstein IIR. Rogers- O. Hammerstein IIR. Rogers-O. HammersteinR. Rogers-O. Hammerstein IIR. Rogers/C. Hammerstein IIR. Rogers/O. Hammerstein IIR. Rogers/O.HammersteinR. odgers, O. Hammerstein IIIR.Rodger O.Hammerstein IIR.Rodgerrs, O. Hammerstein IIR.Rodgers & O.HammersteinR.Rodgers / O.Hammerstein IIR.Rodgers 1 O.HammersteinR.Rodgers ; O.Hammerstein IIR.Rodgers Og O.HammersteinR.Rodgers, O.HammersteinR.Rodgers, O.Hammerstein IIR.Rodgers,O.HammersteinR.Rodgers-O. HammersteinR.Rodgers-O. Hammerstein IIIR.Rodgers-O.Hammerrstein IIR.Rodgers-O.HammersteinR.Rodgers-O.Hammerstein IIR.Rodgers/ O.HammersteinR.Rodgers/L.HammersteinR.Rodgers/O. HammersteinR.Rodgers/O.HammersteinR.Rodgers/O.Hammerstein IIR.Rodgers/O.Hammerstein IIIR.Rogers /O. Hammerstein IIR.Rogers/O.HammersteinRicahard Rodgers, Oscar Hammerstein IIRicard Rodgers - Oscar HammersteinRicard Rodgers, Oscar Hammerstein IIRicard Rodgers-Oscar Hammerstein IIRich. Rodgers - Oscar HammersteinRichad Rodgers • Oscar Hammerstein 2ndRichard ROdgers-Oscar HammersteinRichard Rodger and Oscar HammersteinRichard Rodger, Oscar HammersteinRichard Rodger/Oscar HammersteinRichard RodgersRichard Rodgers & E.Y. Hammerstein IIRichard Rodgers & Hammerstein IIRichard Rodgers & O. HammersteinRichard Rodgers & Oscar HammersteinRichard Rodgers & Oscar Hammerstein 2ndRichard Rodgers & Oscar Hammerstein IIRichard Rodgers & Oscar Hammerstein IIIRichard Rodgers & Oscar Hammerstein, IIRichard Rodgers & Oscar Hammerstien IIRichard Rodgers - HammersteRichard Rodgers - Hammerstein IIRichard Rodgers - O. Hammerstein IIRichard Rodgers - Osar Hammerstein IIRichard Rodgers - Oscaar Hammerstein IIRichard Rodgers - Oscar HammersteinRichard Rodgers - Oscar Hammerstein 2ndRichard Rodgers - Oscar Hammerstein IIRichard Rodgers - Oscar Hammerstein ⅡRichard Rodgers - Oscar Hammerstein, IIRichard Rodgers - Oscar Hammestein IIRichard Rodgers - Oskar Hammerstein II.Richard Rodgers -Oscar Hammerstein IIRichard Rodgers / HammersteinRichard Rodgers / Hammerstein IIRichard Rodgers / Oscar HammersteinRichard Rodgers / Oscar Hammerstein 2ndRichard Rodgers / Oscar Hammerstein IIRichard Rodgers / Oscar Hammerstein II.Richard Rodgers / Oscar Hammerstein IIIRichard Rodgers / Oskar HammersteinRichard Rodgers And Oscar HammersteinRichard Rodgers And Oscar Hammerstein 2ndRichard Rodgers And Oscar Hammerstein IIRichard Rodgers Och Oscar HammersteinRichard Rodgers Oscar HammersteinRichard Rodgers Oscar Hammerstein IIRichard Rodgers Und Oscar HammersteinRichard Rodgers and Oscar HammersteinRichard Rodgers and Oscar Hammerstein IIRichard Rodgers und O. HammersteinRichard Rodgers És Oscar HammersteinRichard Rodgers – Oscar HammersteinRichard Rodgers+Oscar HammersteinRichard Rodgers,Richard Rodgers, - Oscar HammersteinRichard Rodgers, Oscar HammersteinRichard Rodgers, Oscar Hammerstein 2ndRichard Rodgers, Oscar Hammerstein IRichard Rodgers, Oscar Hammerstein IIRichard Rodgers, Oscar Hammerstein IIIRichard Rodgers, Oscar Hammerstein iiRichard Rodgers, Oscar Hammerstein, IIRichard Rodgers, Oscar II HammersteinRichard Rodgers- Oscar HammersteinRichard Rodgers- Oscar Hammerstein 2ndRichard Rodgers- Oscar Hammerstein IIRichard Rodgers-Hammerstein IIRichard Rodgers-Oscar HammersteinRichard Rodgers-Oscar Hammerstein 2ndRichard Rodgers-Oscar Hammerstein IRichard Rodgers-Oscar Hammerstein IIRichard Rodgers-Oscar Hammerstein IIIRichard Rodgers-Oscar Hammerstein IItRichard Rodgers-Oscar Hammerstein Jr.Richard Rodgers-Oscar Hammerstein ⅡRichard Rodgers-Oscar Hammerstein, IIRichard Rodgers-Oscar Hammerstien IIRichard Rodgers-‐Oscar Hammerstein IIRichard Rodgers/ Oscar Hammerstein IIRichard Rodgers/Hammerstein IIRichard Rodgers/O. Hammerstein IIRichard Rodgers/Oscar HammersteinRichard Rodgers/Oscar Hammerstein 2ndRichard Rodgers/Oscar Hammerstein IIRichard Rodgers/Oscar Hammerstein IIIRichard Rodgers/Oscar II HammersteinRichard Rodgers/Oscat Hammerstein IIRichard Rodgers; Oscar Hammerstein IIRichard Rodgers‐Oscar Hammerstein IIRichard Rodges-Oscar Hammerstein IIRichard Rogers & Oscar HammersteinRichard Rogers & Oscar Hammerstein IIRichard Rogers & Oscar Hammerstein II.Richard Rogers - Oscar Hammerstein IIRichard Rogers / Oscar HammersteinRichard Rogers / Oscar Hammerstein IIRichard Rogers And Oscar Hammerstein IIRichard Rogers Oscar HammersteinRichard Rogers Oscar Hammerstein IIRichard Rogers Oscar Hammerstwin IIRichard Rogers and Oscar Hammerstein IIRichard Rogers, Oscar HammersteinRichard Rogers, Oscar Hammerstein 2ndRichard Rogers, Oscar Hammerstein IIRichard Rogers, Oscar Hammerstein II.Richard Rogers, Oscar Hammerstein, IIIRichard Rogers-Oscar Hammersmith IIRichard Rogers-Oscar HammersteinRichard Rogers-Oscar Hammerstein IIRichard Rogers-Oscar Hammerstein IIIRichard Rogers-Oscar HammersteineRichard Rogers. Oscar Hammerstein IIRichard Rogers/Hammerstein IIRichard Rogers/Oscar HammersteinRichard Rogers/Oscar Hammerstein IIRichard Rogers/Oscar Hammerstein Jr.Richard Rogers; Oscar HammersteinRichards Rodgers & Oscar Hammerstein IIRichards Rodgers Och Oscar HammersteinRichards Rogers/Oscar Hammerstein IIRichars Rodgers-Oscar HammersteinRidcard Rodgesr & Oscar Hammerstein IIRidgers - HammersteinRiichard Rodgers-Oscar Hammerstein IIRishard Rodgers - Oscar Hammerstein IIRoddgers, HammersteinRodegrs - Hammerstein IIRodger & Hammerstein IIRodger's And Hammerstein'sRodger-HammersteinRodger-Hammerstein IIRodger/HammersteinRodger/Hammerstein IIRodger; HammersteinRodgeres-Hammerstein IIRodgersRodgers And HampersteinRodgers & Hammerstein 2ndRodgers & Hammerstein IIRodgers & Hammerstein [Intro 'The Carousel Waltz']Rodgers & Hammerstein'sRodgers & HammerstienRodgers & HammesteinRodgers & Harmeistein IIRodgers - HamersteinRodgers - Hammerstain IIRodgers - HammersteinRodgers - Hammerstein 2Rodgers - Hammerstein 2ndRodgers - Hammerstein IIRodgers - Hammerstein IlRodgers - Hammerstein ⅡRodgers - Hammerstein, 2ndRodgers - Hammerstein, IIRodgers - HammersteinIIRodgers - Hammerstien IIRodgers - Hammerstin IIRodgers - HammerteinRodgers - Hammstein IIRodgers - Oscar HammersteinRodgers -- HammersteinRodgers -Hammerstein IIRodgers / HammersteinRodgers / Hammerstein (II)Rodgers / Hammerstein IIRodgers / Hammerstein IIIRodgers /HammersteinRodgers /Hammerstein IIRodgers ; HammersteinRodgers And HammersteinRodgers And Hammerstein IIRodgers And Hammerstein'sRodgers E HammersteinRodgers Et HammersteinRodgers Et Hart-HammersteinRodgers HammersteinRodgers Hammerstein IIRodgers Richard & Hammerstein Oscar IIRodgers Richard / Hammerstein OscarRodgers Richard / Hammerstein OskarRodgers Richard/Hammerstein OscarRodgers Und Hammerstein IIRodgers Y HammersteinRodgers Y Hammerstein IlRodgers and HammersteinRodgers and Hammerstein IIRodgers and Hammerstein'sRodgers and HemmersteinRodgers e HammersteinRodgers et HammersteinRodgers y HammersteinRodgers y Hammerstein IIRodgers · Hammerstein IIRodgers – Hammerstein 2ndRodgers&HammersteinRodgers, HammersteinRodgers, Hammerstein 11Rodgers, Hammerstein IIRodgers, Hammerstein IIIRodgers, Hammerstein IiRodgers, Hammerstein ⅡRodgers, Hammerstein, IIRodgers, O. Hammerstein IIRodgers- HammersteinRodgers- Hammerstein IIRodgers-HamersteinRodgers-Hamerstein IIRodgers-Hammeerstein IIRodgers-HammerstRodgers-HammersteinRodgers-Hammerstein 11Rodgers-Hammerstein 2Rodgers-Hammerstein 2ndRodgers-Hammerstein IIRodgers-Hammerstein IlRodgers-Hammerstein, 2ndRodgers-Hammerstein, IIRodgers-Hammerstein, IIIRodgers-Hammerstein,2ndRodgers-HammersteinsRodgers-HammerstineRodgers-Hammertein IIRodgers-Hammrrstein IIRodgers-HarrmersteinRodgers-HsammersteinRodgers-O. HammersteinRodgers-O. Hammerstein IIRodgers., HammersteinRodgers/ HammersteinRodgers/ Hammerstein IIRodgers/ HammersteinIIRodgers/Hammer SteinRodgers/HammersmithRodgers/HammersteinRodgers/Hammerstein IIRodgers/Hammerstein IlRodgers/Hammerstein, IIRodgers/HammrsteinRodgers/O. HammersteinRodgers/Oscar Hammerstein IIRodgers: HammersteinRodgers; HammersteinRodgers; Hammerstein 2ndRodgers; Hammerstein IIRodgersSingleRodgers–HammersteinRodgers—Hammerstein IIRodges / HammersteinRodges/ HammersteinRog. HammersteinRogders - HammersteinRoger & HammersteinRoger And HammersteinRoger S-HammersteinRoger, HammersteinRoger-Hammerstein IIRoger/HammersteinRogersRogers & HamersteinRogers & HammersteinRogers & Hammerstein IIRogers & Hammerstein iiRogers & HammerstienRogers - HammersteinRogers - Hammerstein IIRogers / HammersteinRogers / HammerstienRogers And HammersteinRogers And Hammerstein IIRogers And Hammerstein‘sRogers HammersteinRogers Og HammersteinRogers Y HammersteinRogers and HammersteinRogers og HammersteinRogers – HammersteinRogers, HammersteinRogers, Hammerstein IIRogers-HammersteinRogers-Hammerstein 2ndRogers-Hammerstein IIRogers-Hammerstein IIIRogers-Hammerstein Jr.Rogers-HarmonRogers/HammersteinRogers/Hammerstein IIRogers; HammersteinRomberg-HammersteinT. Rodgers / HammersteinР. ХаммерштайнХаммерстайн—Роджерсאוסקר האמרשטיין / ריצ'רד רוג'רסרוג'רס והמרשטייןโรเยอร์ แฮมเมอร์สไตน์Oscar Hammerstein IIRichard Rodgers + +284115Joel KayeReed Player, composer, band leader, conductor. +Born August 20, 1940 in Miami Beach, Florida, USA. +Died September 18, 2022 in Madison, Wisconsin, USA. +Unusually versatile musician (he divides his attention between 14 instruments) who played two years with [a212786] (1961‐63) and then became closely associated with [a=Johnny Richards], one of Kenton's principal arrangers, organized the [a1756633] and became its conductor. +Kaye began his professional Jazz career performing with the Billy May Band, the Ralph Marterie Orchestra, and the Woody Herman Orchestra, all before the age of twenty. +In 1973, He started the New York Neophonic Orchestra, playing concert halls around NYC and recording four albums over the next fifteen years. After relocating to Denver in 1988, he created the Neophonic Jazz Orchestra, performing at Vartan’s jazz club for seven years, and recording two CDs for the “Live at Vartan’s Jazz” series. During the Denver years, he began directing the music of Johnny Richards and Stan Kenton for the Los Angeles Jazz Institute symposiums, and also toured with the Kenton Alumni Band. +In 2014, he relocated full-time to Madison, WI where he directed his final incarnation of the Neophonic Jazz Orchestra, and continued to compose and arrange music.Needs Votehttps://www.facebook.com/groups/6709464670/posts/10159453510054671/J. KayeJoel KayJoel L. KayeKayeSoul FlutesStan Kenton And His OrchestraNew York Neophonic OrchestraStan Kenton Alumni BandStan Kenton's Melophoneum BandThe Mike Vax Big BandNeophonic Jazz Orchestra + +284204Steve SwallowAmerican jazz bass guitarist and composer, born October 4, 1940 in Fair Lawn, N.J. +Initially he played double bass (most notably in the trio with Jimmy Giuffre and Paul Bley, and with Art Farmer); in the seventies he switched to electric bass guitar exclusively. +In 1960 he left his composition studies at Yale, but began writing music professionally in Art Farmer's quartet (he joined it in 1964). +Among notable musical associations is his work with Gary Burton, Carla Bley (whose husband he is) and John Scofield. +His style involves intricate solos in the upper register of his instrument; he was one of the first to adopt the high C string on the bass guitar.Needs Votehttp://www.wattxtrawatt.com/stevecell.htmlhttps://en.wikipedia.org/wiki/Steve_Swallowhttps://www.ecmrecords.com/artists/1435045704/steve-swallowhttps://www.bluenote.com/artist/steve-swallow/AwallowS SwallowS. SwallowS.SwallowS.W. SwallowStave SwallowStephen SwallowSteveSteve "Dr. Zvalov" SwallowSteve W. SwallowSteveSwallowSteven SwallowSwalloSwallowС. СуэллоуСтив СволлоуСтив СуоллоуСтэфен Суллоуスティーヴ・スワロウThe Thelonious Monk QuartetBobby Previte & BumpThe Jazz Composer's OrchestraThe Carla Bley BandThe Jimmy Giuffre TrioThe George Russell SextetPaul Bley TrioStan Getz QuartetGary Burton QuintetThe Gary McFarland SextetGary Burton QuartetJohn Scofield TrioArt Farmer QuartetThe Electric Bebop BandThe Mike Gibbs OrchestraEnrico Pieranunzi TrioSteve Kuhn TrioGeorge Russell SeptetGary Burton & FriendsBob Moses QuintetLiberation Music OrchestraCourage (8)The Mike Gibbs BandGary Windo QuartetEttore Fioravanti QuartetHenri Texier Transatlantik QuartetThe Paul Bley GroupWe3Steve Swallow / Ohad Talmor SextetPaul Motian Trio 2000 + OneThe Impossible GentlemenChristian Muthspiel 4The Swallow QuintetPaul Bley / Steve Swallow / Jimmy GiuffreThe Johnny Knapp TrioThe Lost Chords (3)The Carla Bley Big BandThe Christian Jacob TrioScofield / Swallow DuoRiverside (12)Jørgen Emborg QuintetThe Hans Ulrik / Steve Swallow / Jonas Johansen TrioCarla Bley TrioJeff Lederer | SunwatcherThe Only Chrome Waterfall OrchestraChristophe Marguet Sextet (2) + +284217Jim PeterikJames Michael PeterikAmerican musician and songwriter, born on 11 November 1950 in Berwyn, Illinois, USA. + +@ [url=https://www.ascap.com/Home/ace-title-search/index.aspx]ASCAP[/url] he is denoted PETERIK JAMES M with current writers IPI # 581312173 with 721 titles.Needs Votehttps://jimpeterik.com/https://www.facebook.com/officialjimpeterik/https://myspace.com/jimpeterikhttps://en.wikipedia.org/wiki/Jim_Peterikhttps://www.imdb.com/name/nm1221512/I. PeterikJ PeterikJ. EterikJ. M. PeterikJ. PaterikJ. PetenkJ. PeterJ. PeterekJ. PeterickJ. PeterikJ. PeternikJ. PetriekJ. PetrikJ. eterikJ.M. PeterikJ.M.PeterikJ.PeterickJ.PeterikJM PeterikJames M PeterikJames M PeterlkJames M. PeterikJames Michael PeterikJames PaterikJames PatrickJames Peter PeterikJames PeteriJames PeterikJames PeterokJan PeterikJannes PeterikJim PaterikJim PeterekJim PetericJim PeterickJim PeternikJim PetrikJimboJimmie PeterikJimmy PeterikK. PeterikMichael JamesP. JimP. PeterikPaterikPeter IkPetericPeterickPeterikPeterik James M.Peterik, James MichaelPeterik, JimPeternikPetrickピートリックSurvivorPride Of LionsChase (5)The Ides Of MarchWorld StageJim Peterik's Lifeforce + +284218Frankie SullivanFrank Michael Sullivan IIIAmerican guitarist and songwriter, born on 1 February 1955 in Chicago, Illinois, USA.Needs Votehttp://www.frankiesullivan.com/https://www.facebook.com/FrankieSullivanOfficialPagehttps://en.wikipedia.org/wiki/Frankie_SullivanF SullivanF. SullivanF. Sullivan IIIF.SullivanF.Sullivan IIIFranck Sullivan IIIFrank III SullivanFrank M. Sullivan IIIFrank Michael III SullivanFrank Michael SullivanFrank Michael Sullivan IIIFrank SullivanFrank Sullivan IIIFrankie Sullivan IIIFrankie-SullivanFranlke SullivanHank Sullivan IIIPatrick SullivanS. FrankSullivanSullivan IIISullivan, Frank MichaelSullivan, Frank Michael IIISullivan, IIISullivnSurvivorMariah (5) + +284422Elek BacsikHungarian-born American jazz violinist and guitarist, born 22 May 1926 in Budapest, Hungary, died 14 February 1993 in Glen Ellyn, Illinois, USA.Needs Votehttps://en.wikipedia.org/wiki/Elek_BacsikAl Back [Elek Bacsik]Alexis (Elec) BacsikBacsikE. BacsikE.BacsikElec BacsikEleck BacsikElek BassikLexis BacsikTzigane Elak BacsikTzigane Elek BacsikMichel Legrand Et Son Orchestre + +284504Kenny HagoodKenneth HagoodAmerican jazz singer. +Born April 2, 1926 in Detroit, Michigan. +Died November 9, 1989 in Detroit, Michigan. + +Worked with Benny Carter, Dizzy Gillespie, Tadd Dameron, Thelonious Monk, Miles Davis and others. +Nickname : "Pancho". + + +Needs Votehttps://adp.library.ucsb.edu/names/359916K. HagoodKen HagoodKenneth "Pancho" HagoodKenneth HagoodKenneth “Pancho” HagoodKenny "Pancho" HagoodKenny ''Pancho'' HagoodKenny 'Pancho' HagoodKenny HaggodKenny Pancho HagoodPancho HagoodDizzy Gillespie And His OrchestraDizzy Gillespie Big BandKenneth Hagood & The EnsembleMiles Davis & His Tuba BandThe Pancho Hagood Quintet + +284700Leo WrightLeo Nash WrightJazz alto saxophonist, flutist and clarinetist, born in Wichita Falls, Texas, December, 12, 1933, died January 4, 1991 in Vienna, Austria. +In 1959 Wright became a member of [a=Dizzy Gillespie]'s quintet and big band. When Gillespie disbanded this quintet in 1962, during a European tour, Wright decided to stay in Europe. After that he played various jazz clubs, concerts and festivals in Stockholm, Paris, Rome and Prague. +Correcthttps://en.wikipedia.org/wiki/Leo_Wrighthttps://www.allmusic.com/artist/leo-wright-mn0000208857L. WrightLeoLeo N. WrightLeo WrigthLeon WrightLéo WrightWrightLion WrongKnut Kiesewetter TrainThe George Gruntz Concert Jazz BandLeo Wright ComboDizzy Gillespie And His OrchestraDizzy Gillespie Big BandDizzy Gillespie QuintetTadd Dameron And His OrchestraTed Heath And His MusicGloria Coleman QuartetOrchestra U.S.A.Oliver Nelson And The "Berlin Dreamband"The Leo Wright Group + +284743Miles Davis And His OrchestraCorrectMiles Davies Und Sein OrchesterMiles DavisMiles Davis & His OrchestraMiles Davis And His OrchesterMiles Davis E La Sua OrchestraMiles Davis E Sua OrquestraMiles Davis OrchestraMiles Davis Und Sein OrchesterMiles Davis With OrchestraОркестр п/у М. ДэвисаThe Miles Davis NonetMiles Davis & His Tuba BandMiles DavisGerry MulliganKenny ClarkeMax RoachJ.J. JohnsonAl HaigLee KonitzKai WindingJohn Lewis (2)John BarberBill BarberNelson BoydJunior CollinsJoe ShulmanSandy SiegelsteinAddison Collins + +284744Dizzy Gillespie And His OrchestraNeeds Vote http://arsc-audio.org/blog/2016/05/09/my-record-will-be-there-regis-manor-arco-in-a-spreadsheet-by-david-neal-lewis/ Dizzi Gillespie And His OrchestraDizzie Gillespie & His OrchestraDizzie Gillespie & OrchestraDizzie Gillespie And His OrchestraDizzie Gillespie And OrchestraDizzie Gillespie OrchestraDizzy Gillepie E Sua OrquestraDizzy Gillespie & His OrchestraDizzy Gillespie & Orch.Dizzy Gillespie & his OrchestraDizzy Gillespie And His Orch.Dizzy Gillespie And OrchestraDizzy Gillespie BandDizzy Gillespie Big BandDizzy Gillespie Con Orquesta Y ComboDizzy Gillespie E La Sua OrchestraDizzy Gillespie E Sua OrquestraDizzy Gillespie E la Sua Nuova OrchestraDizzy Gillespie Et Sa OrchestreDizzy Gillespie Et Son OrchestreDizzy Gillespie Og Hans Ork.Dizzy Gillespie Og Hans OrkesterDizzy Gillespie Orch.Dizzy Gillespie OrchestraDizzy Gillespie OrkesterDizzy Gillespie OrquestaDizzy Gillespie Und Sein OrchesterDizzy Gillespie With OrchestraDizzy Gillespie Y Su GrupoDizzy Gillespie Y Su OrquestaDizzy Gillespie Y Su OrquestraDizzy Gillespie's OrchestraDizzy Gillespie's OrkesterDizzy Orchestra And His OrchestraEnsembleMembers Of The Dizzy Gillespie OrchestraOrchestraOrkestar Dizzy GillespieThe Dizzy Gillespie OrchestraCandidoQuincy JonesLalo SchifrinDizzy GillespieJohn ColtraneJames MoodyHank MobleySonny StittMilt JacksonYusef LateefBenny GolsonDave BurnsJohn FroskClark TerryKenny ClarkeJ.J. JohnsonDon ButterfieldRay BrownPhil WoodsKenny DorhamLou HackneyJoe CarrollDon ByasOscar PettifordClyde HartAl HaigDanny BankUrbie GreenGeorge DorseyArt DavisJimmy HeathShelly ManneJohn Lewis (2)Gunther SchullerErnie RoyalNelson BoydJulius WatkinsPaul FauliseJoe WilderBritt WoodmanJose MangualFrank RehakCharles GreenleeWillie RodriguezKenny HagoodLeo WrightAl McKibbonJoe GordonCharlie PersipRay AlongeMatthew GeeJim BuffingtonRod LevittHilton JeffersonSpecs WrightBilly MitchellTrummy YoungFats NavarroPaul GonsalvesMelba ListonJack Del RioWillie CookJohn CookElmon WrightAdrian AceaAl GibsonJohn CochraneSam HurtCarlos DuchesneDon SlaughterHernifan MajeedFrancisco PozpJimmy PowellJ.C. HeardChano PozoTed KellyBill De ArangoJoe GaylesAndy DuryeaBudd JohnsonErnie HenryJohn Collins (2)Raymond OrrVincent GuerraJohn Brown (3)Matthew McKayTeddy StewartJesse "Rip" TarrantJames Forman Jr.Cecil PayneBenny BaileyTalib DaawudCarl WarwickPee Wee MooreJohn Smith (6)George Matthews (2)Walter Davis Jr.George DevensJohnny AceaMorris SeconLeo ParkerJesse Powell (2)Bobby RodriguezMarty FlaxBenny HarrisTaswell BairdJoe Harris (3)William ShepherdAl RichmondChuck LampkinRay AbramsLeon ComegysBill FrazierStanley WebbChino PozoGordon ThomasErmet PerryRichard Berg (3)John Lynch (4)Warren LuckeyHoward Johnson (6)Alton MooreGeorge Nicholas (3)V. D.V. Guerra + +284746Woody Herman And His OrchestraAmerican jazz orchestra and big band. From the 1940's, the expression 'The Herd' was used in variable context, which was always a synonym for Woody Herman's orchestra. + +[a239399] inherited the [a750213] in New York City in 1936. The history of the following band evolution can be structured in the following way: + +1936 - 1944: [a5757047] + +In 1944, the term 'The Herd' was first established. Woody Herman took this term for his purposes and started first to number the herds, later the herds got more special names. The following time table gives an overview over the living periods of the herds. The respective herd was always used as an ANV to the 'Woody Herman Orchestra' in the specified time range. All members of the herds were also member of the Woody Herman orchestra. + +1944 - 1946: [a661482] +1947 - Nov 1949: [a4869543] +Apr 1950 - June 1955: [a2122869] +Nov 1955 - Dec 1955: [a4848249]/[a1651400] +Dec 1955 - March 1959: [a2126187], until May 1956 aka [a6612768] +Dec 1958 - Feb 1959: [a620722] +April 1959: [a4106342] +Oct 1959: [a904275] +June 1959 - Aug 1967: [a1114062] + +Further bands were defined by recording: +1967 - 1981: [a2647320] (coexistence) +1973 - 1979: [a434575] (coexistence) +1977: [a372489] (coexistence) +1978: [a1999837] (coexistence) +1977 - 1987 [a1637135] (coexistence) + +Post mortem: +1987ff: [a4369404] + +Besides this rough timeline, there were several spin-offs and reincarnations of other bands and herds, which do make the timeline in fact more complicated. +For example: [a3751695] (primarily circa 1959) +Needs Votehttps://en.wikipedia.org/wiki/Woody_Hermanhttps://adp.library.ucsb.edu/names/351517BandEnsembleMembers Of The OrchestraMembers of the OrchestraOrchestra Woody HermanOrchestre Woody HermanOrquesta Woody HermanThe BandThe Herman BandThe Woody Herman And His OrchestraThe Woody Herman HerdThe Woody Herman OrchestraThe Woody Hermann OrchestraW. Herman And His Orch.Woodrow Charles "Woody" Herman & His OrchestraWoody Heman & His OrchestraWoody HermanWoody Herman & His HerdWoody Herman & His Orch.Woody Herman & His OrchestraWoody Herman & Orch.Woody Herman & OrchestraWoody Herman & Son OrchestreWoody Herman & The Band That Plays The BluesWoody Herman & The HerdWoody Herman &His OrchestraWoody Herman , His Orchestra And SingersWoody Herman .....And His OrchestraWoody Herman And BandWoody Herman And EnsembleWoody Herman And His Big BandWoody Herman And His First OrchestraWoody Herman And His HerdWoody Herman And His OrchWoody Herman And His Orch.Woody Herman And His Orchestra - Third HerdWoody Herman And His Orchestra 1937Woody Herman And His Orchestra 1949Woody Herman And His Orchestra And SingersWoody Herman And His OrchestreWoody Herman And Orch.Woody Herman And OrchestraWoody Herman BandWoody Herman Con Su OrquestaWoody Herman E La Sua OrchestraWoody Herman E Sua OrquestraWoody Herman Et Son OrchestreWoody Herman His OrchestraWoody Herman OrchWoody Herman Orch.Woody Herman OrchestraWoody Herman Orchestra/Studio OrchestraWoody Herman U. S. OrchesterWoody Herman Und Sein OrchesterWoody Herman With His OrchestraWoody Herman Y Su OrquestaWoody Herman y su Gran OrquestaWoody Herman's OrchestraВуди Герман И Его ОркестрDonny HathawayCandidoRay BarrettoStan GetzDinah WashingtonGerry MulliganLuis GascaGene AmmonsBuddy RichDizzy GillespieCharlie ParkerGreg GisbertDave WellsBurt CollinsChuck GentryDusko GoykovichMilt JacksonAlphonso JohnsonNeal HeftiNat AdderleyPete JollyCharles DavisMarvin StammWayne AndreStan KentonClark TerryLyle MaysBob BeldenWoody HermanGene PerlaArthur HarperJack SixRolf EricsonDick HaferCharlie ByrdKeter BettsJoe Romano (2)Jack ArnoldJimmy ClevelandWillie DennisAlan BroadbentDavid FinckJeff BrillingerBuddy PowersChip JacksonDale KirklandNelson HattAndy LaverneJim PughGary PackBill ByrneGary AndersonArt LinsnerDave StahlFrank TiberiBilly MayJohn BestWilbur SchwartzBernie PrivinRonnie CuberJoe CarrollVictor FeldmanOscar PettifordChuck FloresRed MitchellJoe FarrellJim HallBen WebsterEarl HinesMike BloomfieldVince GuaraldiMilt HintonHarry EdisonDave Matthews (2)Babe RussinVido MussoAnita O'DayJimmy GiuffreFrank FosterArnold FishkinBilly BauerDanny BankBarry GalbraithUrbie GreenAl CohnNick TravisTiny KahnPepper AdamsDon LamondTony AlessZoot SimsMarky MarkowitzSeldon PowellFrank VicariJulian PriesterShelly ManneStu WilliamsonPhil UrsoMonty BudwigJimmy RowlesBill PerkinsDon FagerquistMel LewisRuss FreemanJoe MondragonBob BrookmeyerFlip PhillipsCharlie ShaversAllen EagerKai WindingJeff HamiltonPhil UpchurchHarold DankoJohnny PachecoJack NimitzBernie GlowErnie RoyalGary GrantMel WanzoLyn BivianoFreddie GreenJoe BeckBill HoodEddie BertJose MangualHarold FeldmanFrank RehakJohn BarrowsGus JohnsonBob CooperChubby JacksonJack SheldonTom MaloneBilly ByersAl PorcinoConte CandoliWillie RodriguezJohnny RaeLou LevyPete EscovedoMajor HolleyRalph BurnsJohn HicksJoe LovanoDave McKennaTom HarrellMarc Johnson (2)Morris JenningsPete CandoliConrad GozzoRay LinnAl GibbonsBill WatrousCarl FontanaDick LiebLynn SeatonByron StriplingGary SmulyanRed NorvoDave CarpenterConnie BoswellBobby Jones (2)John BealBilly MitchellKenneth NashJoe NewmanSerge ChaloffPaul GonsalvesRichard PowellBilly EckstinePaul QuinichetteShorty RogersRed RodneyBob SwiftLou McGarityHerbie HaymerTerry GibbsGus BivonaSam MarowitzRed BallardTommy PedersonHerb HarperStan FishelsonHeinie BeauSkeets HerfurtBill HarrisHarry BabasinAl HendricksonEarl SwopeHoyt BohannonJoe TriscariGeorge SeabergRick KieferLes RobinsonJimmy MaxwellAl MastrenDave ToughDon WattChuck PetersonErnie CaceresDon EllisJohn BunchPaul SerranoBudd JohnsonLarry FarrellWillie Smith (2)Art MardiganDon RaderMary Ann McCallFrances WayneBobby LambSal MarquezSi ZentnerMurray McEachernMilt BernhartWayne DarlingCecil PayneCarl WarwickJackie MillsJay MiglioriMilt RaskinDanny StilesSam Taylor (2)Michael Moore (2)Joe HowardPaul CohenHerb StewardCharlie DiMaggioMickey FolusSam DonahueMurray WilliamsDick ClarkWill BradleyCliff LeemanJohn OwensFrank CarlsonDick CollinsCharlie WalpJohn HowellJimmy RaneyChuck WayneChris Griffin (3)Willie ThomasMick GoodrickAl De RisiDon SwitzerRoy CatonJohn Thomas (3)Joe TemperleyJoe LaBarberaReunald JonesLouis BellsonRussell GeorgeGene AllenSal NisticoJack GaleBill ChaseGerry LamyGordon BriskerChuck AndrusDave GalePaul FontainePhil WilsonJake HannaNat PierceEddie MorganZiggy HarrellRay TriscariHarry BettsJay AndersonBuddy ChildersAlbert DaileyJoe FerranteGerald SanfinoBuddy ClarkMaurice HarrisKarl De KarskeJohn CaveRichie KamucaJim ChapinZeke ZarchyFrank IppolitoJack FerrierRonnie PerryJimmy HorvathPete MondelloJimmy CampbellShadow WilsonEddie CostaBart VarsalonaMert OliverHarold GarrettSteve HoughtonBob DaughertyJay CameronRigby PowellBill BerryKen AscherJay SollenbergerRonnie ZitoBirch JohnsonWilliam SlapinDeane KincaideHarry HallBill StapletonTom AnastasBob BurgessRick SteptonSteve LedererBill PottsJames GannonMarty FlaxBobby ShewLloyd Trotman (2)Lou OrensteinBob LawsonGary KellerRon DavisBruce SquiresGlenn DrewesCy TouffFrank Gallagher (2)Dick KnissBob PriceCharles FrankhauserGregory HerbertJohn LaportaJeff Davis (3)Ian McDougallDick MitchellJoel WeiskopfRoger DeLilloBuddy SavittEd SophGeoff SharpHarry KleintankGil RathelLarry PyattSteve MarcusGerald ChamberlainRich CooperMed FloryAl Stewart (3)Alex RodriguezLes LovittDick RuedebuschJoe SoldoOliver JacksonNat PavoneMarvin HolladayGene RolandJohn CoppolaArno MarshSam StaffDick KenneyDoug MettomeDon LanphereTony KlatkaRichard DollarhideSteve KohlbacherDick MeldonianSam NotoBrian O'FlahertyRed SaundersForrest BuchtelVince PrudenteLloyd MichelsNeil Reid (2)Dave MaddenBruce JohnstoneBill PembertonRobert HardawayJames RuppJohn Stevens (3)Ira NepusRufus JonesJay DennisJohn BelloHenry SouthallTom BorasBilly RossSunny SkylarTed Nash (2)Ildefonso SanchezJohn HoffmanLarry FordAllen VizzuttiHal EspinosaWalt YoderRon MyersLou SingerClarence WillardGene SargentMarjorie HyamsSonny BermanOllie WilsonFred OtisTeddy SommerRay WetzelMary MartinNick BrignolaRemo BiondiDan ForneroHarold LewisMahlon ClarkArt KoenigJoe BishopGary Klein (2)Toby TylerJames DahlJack Green (4)Don FerraraRamon BandaAlan GauvinIrv CottlerPaul McGinleyNelson HindsJim DanielsPat CoilWarren BarkerPanama FrancisJohn GraasGene EnglundPaul MazzioDave RiekenbergDick ShermanJoe BaratiSam FirmatureJames "Jiggs" NobleMarty HarrisBill SmileyFrank HugginsJohn MadridElliot LawrenceRay HaganBill ShineMickey ManganoGus GustafsonVirgil GonsalvesJack DulongNick CaiazzaTony RizziHerb SargentAndrew McGheeJoe Rodriguez (3)Don MichaelsRon StoutJerry NearyJohn OddoJohn Von OhlenVic HamannJohn FedchockMike BrignolaVern FrileyJerry KailSkippy DesairIrv LewisRalph PfeffnerEd KieferJoe PuliceJan KonopásekLarry McKennaDave RatajczakRuben McFallBill CastagninoDud HarveyMike AltermanFrank TesinskyJohnny BothwellRay WinslowChet FerrettiRoy WiegandFrank HittnerRoger PembertonCarl PruittBilly UsseltonPete DalbisRichard Murphy (3)Sonny IgoeRoger NewmanBill TrujilloVaughn WiesterJimmy MosherJack SchwartzDave ShapiroJim PowellJimmy GuinnRoger IngramArch MartinHy WhiteBill HoranTommy LinehanBob Peck (2)Larry CovelliPaul GuerreroAllan Jones (5)Karl KiffeDennis DotsonJohn AltwergerMcHouston BakerTom NygaardSonny CostanzoRed KellyTerry SwopeJimmy CookJames BossertJohn Riley (2)John OslawskiNorman PockrandtPaul McKeeJerry PinterHal PoseyStanley ChaloupkaAl ForteAl BellettoGerry LaFurnSal SpicolaBill Bradley (3)Thomas PorrelloDonald DoaneDolly HoustonHal SchaeferJoe BurnettHorace DiazKermit SimmonsHerbie FieldsKent McGarityBob GrafKeith Moon (2)Carolyn GreyBob Jenkins (4)Walter J. BlantonDave Kennedy (3)Larry RockwellMark VinciCappy LewisArt PirieIsrael DornHerb RandelCharley HenryLarry ShunkGeorge RabbaiGene Smith (3)Randy RussellScott WagstaffRon PaleyMark LuskJim StutzTom DiCarloMalcolm CrainJames Carroll (4)Randall HawesAbe RosenPat AzzaraJohn Wasson (2)Lynne StevensJerry RosaFreddy LewisKenny PinsonJohn McCombEd PriceLee FortierJosé Rodríguez (3)Don Young (3)Everett LongstrethCarmen LeggioSam RubinowitchFred WoodsRed WoottenDave LaLamaTony LeonardiBud Smith (2)Saxie MansfieldKen WenzelAl PlankMark Lewis (18)Mike Hall (11)Noah BrandmarkEd BadgleyAndy PinoBuddy WisePhil Cook (4)Raoul RomeroBilly Hunt (2)Bob StroupDillageneBobby Clark (2)Dave Miller (20)George Baker (4)Danny NolanBob RudolphSteve HarrowJim FoyBob PiersonJohn CrewsBruce Fowler (3)Nick HupferChick ReevesBruce WilkinsJoe EstrenAndy PeeleBilly Robbins (2)Joseph KrechterMac McCorquodaleSteady NelsonHerb TompkinsEddie ScalziJerry CokerNeil FrielGustavo MaasBrad Williams (2)Pedro ChaoMarshall Thompson (2)Curt Berg (2)Jim Thomas (11)Evan DinerLotten TaylorJohn Adams (22)Muriel LaneRay HopfnerJoe WeidmanAlan Read (3)Gene SmooklerBillie Rogers (2)Joe MacDonald (2)Jack RanelliBob Newman (3)Jerry Collins (2)Jesse RalphHarold WegbreitJack ScardaBobby StylesRodney OgleDick MunsonPete JohnsMac MacQuordaleJoe DentonSammy ArmatoWalter NimmsTommy FarrTom AzzarelloJohn InglissSam ScavoneTony PhillatoniFreddy WoodJoe ClarvadoneLarry MosherBo BoydAl PuccinMario SerritelloJim Hewitt (3)Mike TinnesDick KaneBenny StablerBill Vitale (2)Ron Perry (3)Gary Potter (2)John MacombeGus MasJimmy Bennett (5)Jim BonebrakeThe HerdmenJohn WoehrmannDave LaroccaTim Burke (4)Kitt ReidBobby GuyerWilburn StewartGeorge Hanna (3)Leah MatthewsJack Stevens (4)Ivan Lopez (4)Tony PrenticeOliver MathewsonJoe QuartellJim BurtchEdmund CostanzaEd Bennett (5)Al Esposito (2)Alex Cirin, Jr.Charles Frank (3)Terry Ross (5)Stella Seidenberg + +284747Duke Ellington And His OrchestraAmerican jazz band led by [a145257] and active from the 1920's to the 1960's, often in New York City. +Also credited as "Duke Ellington And His Famous Orchestra".Needs Votehttps://en.wikipedia.org/wiki/Duke_Ellingtonhttps://www.frammentirivista.it/duke-ellington/https://www.glp.at/artist/duke-ellington-orchestrahttps://adp.library.ucsb.edu/names/104405And The BandD. Ellington And His OrchD. Ellington And His Orch.D. Ellington And His OrchestraD. Ellington Y Su OrquestraDas Duke Ellington OrchestraDuce Ellingtons OrchestraDuke And His MenDuke And OrchestraDuke Dllington And His Famous OrchestraDuke Elington & His Famous OrchestraDuke Elington And Hhis OrchestraDuke Elington And His OrchestraDuke Elligton And His Famous OrchestraDuke Elling70n And His OrchestraDuke Ellingo And His OrchestraDuke EllingtonDuke Ellington & His BandDuke Ellington & His Cotton Club OrchestraDuke Ellington & His Fabulous OrchestraDuke Ellington & His Famous Orch.Duke Ellington & His Famous OrchestraDuke Ellington & His Jungle BandDuke Ellington & His OrchDuke Ellington & His Orch.Duke Ellington & His OrchesraDuke Ellington & His OrchestraDuke Ellington & His Orchestra From Los AngelesDuke Ellington & His World Famous OrchestraDuke Ellington & Orch.Duke Ellington & OrchestraDuke Ellington & OrquestraDuke Ellington & Son Fameux OrchestreDuke Ellington & Son OrchestreDuke Ellington & The Jungle BandDuke Ellington And Famous His OrchestraDuke Ellington And His Big BandDuke Ellington And His Cotton Club OrchestraDuke Ellington And His Dance OrchestraDuke Ellington And His FamousDuke Ellington And His Famous Orch.Duke Ellington And His Famous OrchestraDuke Ellington And His FamousOrchestraDuke Ellington And His GroupDuke Ellington And His Jungle BandDuke Ellington And His Memphis MenDuke Ellington And His MenDuke Ellington And His Orch.Duke Ellington And His OrchesterDuke Ellington And His OrchestreDuke Ellington And His World Famous OrchestraDuke Ellington And His World-Famous OrchestraDuke Ellington And His «Famous Orchestra»Duke Ellington And Orch.Duke Ellington And The Jungle BandDuke Ellington BandDuke Ellington Bands CombinedDuke Ellington BigbandDuke Ellington E La Sua Famosa OrchestraDuke Ellington E La Sua Orch.Duke Ellington E La Sua OrchestraDuke Ellington E La sua OrchestraDuke Ellington E OrquestraDuke Ellington E Su OrquestraDuke Ellington E Sua Famosa OrquestraDuke Ellington E Sua OrquestraDuke Ellington E Sua OrqustraDuke Ellington E la Sua Famosa OrchestraDuke Ellington En Zijn OrkestDuke Ellington Et His OrchestraDuke Ellington Et Johnny Hodges Et Leur OrchestreDuke Ellington Et Son Grand OrchestreDuke Ellington Et Son OrchestraDuke Ellington Et Son OrchestreDuke Ellington His Piano And His OrchestraDuke Ellington I Jego OrkiestraDuke Ellington I Njegov OrkestarDuke Ellington Mit Seinem OrchesterDuke Ellington Mit Seinem Famous-OrchesterDuke Ellington Och Hans OrkesterDuke Ellington Og Hans Berømte OrkesterDuke Ellington Og Hans OrkesterDuke Ellington Or.Duke Ellington Orch.Duke Ellington OrchestraDuke Ellington Orchestra, TheDuke Ellington OrchestrasDuke Ellington Ork.Duke Ellington OrkestereineenDuke Ellington Sa OrkestromDuke Ellington U. S. OrchesterDuke Ellington Und Sein Famous OrchesterDuke Ellington Und Sein OrchesterDuke Ellington Und Seinem Famous OrchesterDuke Ellington With His Famous OrchestraDuke Ellington With His OrchestraDuke Ellington With His Orchestra And SpacemenDuke Ellington Y Su Famosa OrquestaDuke Ellington Y Su Famoso OrquestaDuke Ellington Y Su Gran OrquestaDuke Ellington Y Su Orq.Duke Ellington Y Su OrquestaDuke Ellington Y Su Orquesta Con 500 Musicos EuropeosDuke Ellington and His Famous OrchestraDuke Ellington y Su Gran OrquestaDuke Ellington's BandDuke Ellington's Famous OrchestraDuke Ellington's Orch.Duke Ellington's OrchestraDuke Ellington's Wonder OrchestraDuke Ellington, His Piano & His OrchestraDuke Ellington, His Piano & OrchestraDuke Ellington, His Piano And OrchestraDuke Ellingtoni OrkesterDuke Ellingtons OrkesterDuke Ellinton And His OrchestraDuke Elllington And His Famous OrchestraEdward Kennedy "Duke" Ellington & His OrchestraEllingtonEllington And His OrchestraEllington BandEllington Big BandEllington OrchestraFull Duke Ellington OrchestraHis OrchestraL'Orchestra Di Duke EllingtonL'Orchestre De Duke EllingtonL'Orchestre Entier De Duke EllingtonL'orchestra Di Duke EllingtonL‘Orchestra Di Duke EllingtonMembers Of The Duke Ellington OrchestraOrchester Duke EllingtonOrchestraOrchestra De Duke EllingtonOrchestra Di Duke EllingtonOrchestra Duke EllingtonOrkestar Dukea EllingtonaOrquesta Duke EllingtonThe Chicago FootwarmersThe Duke Edward Kennedy Ellington And His OrchestraThe Duke Ellington And His OrchestraThe Duke Ellington OrchestraThe Duke Ellington OrchestrasThe Famous Duke Ellington OrchestraTraymore OrchestraД. Эллингтон И Его ОркестрДжаз-Оркестр Дюка ЭллингтонаДюк Эллингтон И Его ОркестрОркестрОркестр Д. ЭллингтонаОркестр Дюка ЭллингтонаОркестр Под Упр. Д. Эллингтонаデューク・エリントンデューク・エリントン・オーケストラデューク・エリントン楽団デューク・エリントン&ヒズ・オーケストラデューク・エリントン楽団The Harlem FootwarmersThe Jungle Band (2)The Chicago FootwarmersJoe Turner And His Memphis MenSonny Greer And His Memphis MenThe Six Jolly JestersHarlem Hot ChocolatesTen Black BerriesFrank Brown And His TootersRichard WilliamsDuke EllingtonClark TerryJimmy Johnson (2)Billy TaylorRolf EricsonQuentin JacksonSteve LittleJoe GarlandJoe BenjaminJohnny ColesBill GrahamMilt GraysonDon ByasOscar PettifordBen WebsterJimmy WoodeJohnny HodgesBilly StrayhornSam WoodyardHarold AshbyRussell ProcopeCootie WilliamsLawrence BrownWendell MarshallBennie GreenJulian PriesterIvie AndersonCharlie BarnetArt BaronErnie RoyalHoward McGheeBobby DurhamBritt WoodmanHarry CarneyRay NanceAaron BellMajor HolleyMatthew GeeWellman BraudJuan TizolJoe NantonJabbo SmithLonnie Johnson (2)Sonny GreerClaude JonesLouis MetcalfRex StewartLouis BaconBubber MileyHenry EdwardsHilton JeffersonOtto HardwickHarry WhiteFreddy JenkinsFred GuyTeddy BunnBennie PayneAdelaide HallBarney BigardHayes AlvisShelton HemphillRudy JacksonIrving MillsSandy WilliamsTaft JordanFrancis WilliamsHarold BakerCat AndersonPaul GonsalvesAl SearsKay DavisJimmy HamiltonJohn SandersWillie CookJohn CookRed RodneyRick HendersonDave BlackBilly Taylor Sr.Dick VanceWilbur De ParisChauncey HaughtonWallace JonesTed KellyBaby CoxAl HibblerVictor GaskinLloyd OldhamHerb JeffriesMarshall RoyalJimmy GrissomJoya SherrillBuster CooperMercer EllingtonHerbie JonesJohn LambTyree GlennAl KillianChuck ConnorsAl LucasJunior RaglinJimmy BlantonWild Bill DavisRoy BurrowesPete Clark (2)Louis BellsonHaywood HenryWilson MyersEddie PrestonJune ClarkBooty WoodNorris TurneyHarmonica CharlieAndré PaquinetBill BerryButch BallardNelson WilliamsOzzie BaileyRocky WhiteVince PrudenteHarold MinerveLloyd MichelsArthur WhetselPeck MorrisonRufus JonesEd MullensPerry MarionAndres MeringuitoElmer WilliamsJeff CastlemanMoney JohnsonWilbur Bascomb Sr.Malcolm TaylorOett "Sax" MallardErnie ShepardHillard BrownAndrew Ford (3)Dud BascombAnita MooreBarrie Lee Hall, Jr.Nat WoodardPaul KondzielaCharlie Allen (3)Fred AvendorfAlvin RaglinJoe CornellHerb FlemingScat PowellFrankie MarvinTricky Sam NantonLyle CoxNat Jones (5)Ray Mitchell (7)William White (17)Nate Howard (4) + +284992Johnny RaeJohn Anthony PompeoAmerican jazz drummer & percussionist, born 11 August 1934 in Saugus, Massachusetts, USA. Died 4 September 1993. +[b]Not to be confused with the younger Scottish jazz drummer [a342013]![/b]Needs Votehttps://www.findagrave.com/memorial/281193066/john-anthony-pompeoJ. RaeJ. RayeJohn RaeJohnnie RaeR. FuentesRaeWoody Herman And His OrchestraCal Tjader QuartetThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsJohnny Smith QuartetThe Tom Bancroft OrchestraWoody Herman And The Thundering HerdJohnny Rae's Afro-Jazz SeptetPeter Appleyard OrchestraJohn Cordoni And His Big BandThe Johnny Rae Quintet + +285049Joe PizzuloJoe Pizzulo (born on June 15th, 1951) is best known as one of the lead singers for [a=Sérgio Mendes] in the 1980s. Pizzulo has had quite a few singles and soundtrack appearances, but he is also a prominent background singer for many artists.Needs Votehttps://en.wikipedia.org/wiki/Joe_Pizzulohttps://web.archive.org/web/20180116041815/http://www.brainchildreunion.com/bandbios/bios-joepizzulo.htmlhttps://www.imdb.com/name/nm0686252/J. PizzuloJoeJoe PazuloJoe PisulloJoe PizulloJoe PizuloJoe PizzulaJoe PizzulloJoe PizzuoJoe PizzuoloJoseph PizzuloHeat (6)Brainchild (33) + +285177FlashheadzCorrectFlash HeadzMansfieldVicky PollardPaul ChambersJon Langford + +285181David Lee (2)David Lee, Jr.American jazz drummer and percussionist, born January 4, 1941 in New Orleans, died August 4, 2021 in New Orleans. Briefly led his own quintet which recorded his lone album [m295003] in September - October 1973. As a side man Lee has recorded, among others, with Dizzy Gillespie [i]The Real Thing[/i], Joe Zawinul [i]Zawinul[/i], Sonny Rollins [i]Next Album, Horn Culture, The Cutting Edge[/i], Roy Ayers [i]He's Comin'[/i], Lonnie Liston Smith, Chet Baker [i]My Funny Valentine, Live In Paris, 1960-63 - Live In Nice, 1975[/i], Frank Weiss, Albert Daily, Charlie Rouse [i]Two Is One[/i], Gary Burton, Larry Coryell, Grady Gaines [i]Full Gain[/i], Richard Wyands [i]Then, Here And Now[/i], Ellis Marsalis [i]Live At Snug Harbor, New Orleans[/i], Earl Turbinton [i]Black Leaves, Brothers For Life[/i], Thunderbird Davis [i]Check Out Time[/i], Teddy Renoldys [i]Gulf Coast Blues[/i]. + +For the British jazz pianist, composer, see [a=Dave Lee (7)] +Needs Votehttps://en.wikipedia.org/wiki/David_Lee_(drummer)David Lee JrDavid Lee Jr.David Lee, Jr.Dizzy Gillespie QuintetGrady Gaines & The Texas UpsettersThe Black Top Rhythm Section + +285231Niels-Henning Ørsted PedersenNiels-Henning Ørsted PedersenDanish jazz double bassist +Born 27 May 1946 in Osted out of Roskilde, 30 minutes west of Copenhagen, Denmark, died April 19, 2005 in Ishøj, Copenhagen +"[b]NHØP[/b]" debuted, aged 15, at the [b][l269003][/b], ([i]Jazzhouse Montmartre[/i], commonly known as just "Montmartre"), in central Copenhagen on New Year's Eve, 1961. He died in the west Copenhagen district from heart failure aged 58, .Nicknamed "Viking."Needs Votehttps://www.facebook.com/nhopbasshttps://en.wikipedia.org/wiki/Niels-Henning_Ørsted_PedersenN - H. Ø. PedersenN-H Orsted PedersonN-H Ø. PedersenN-H ØPN-H Ørsted PedersenN-H-O PedersenN-H. Örsted-PedersenN-H. Ø PedersenN-H. Ø. PedersenN. H Ørsted PetersenN. H. O. PedersenN. H. Ø. PedersenN. H. Ørsted PedersenN. H. Ørsted-PedersenN. Henning Ørsted-PedersenN. PedersenN.-H. Ørsted PedersenN.-H. O. PedersenN.-H. Ø PedersenN.-H. Ø. PedersenN.-H. Ørsted PedersenN.H. Ørsted PedersenN.H. Ørsted-PedersenN.H.O. PedersenN.H.O. PerdersenN.H.Ø. PedersenN.H.Ø. PerdersenN.H.Ø.PN.H.Ø.P.N.H.Ø.PedersenNHOPNHØPNHØP Niels-Henning Ørsted PedersenNeils PedersenNeils-Henning Orsted PedersenNhopNhØPNiels - Henning Orsted PedersonNiels H. PedersenNiels H. Ø. PedersenNiels H.O. PedersenNiels H.Ø. PedersenNiels H.Ø. PetersenNiels Hening Ørsted PedersenNiels Hennig Orsted-PedersenNiels HenningNiels Henning O. PedersenNiels Henning Oersted PedersenNiels Henning Oersted PedersonNiels Henning Oersted-PedersenNiels Henning OrstedNiels Henning Orsted PedersenNiels Henning Orsted PedersonNiels Henning Orsted PetersenNiels Henning Orsted-PedersenNiels Henning Orstedt-PedersenNiels Henning PedersenNiels Henning Ø. PedersenNiels Henning ØrstedNiels Henning Ørsted PedersenNiels Henning Ørsted PedersonNiels Henning Ørsted PetersenNiels Henning Ørsted-PedersenNiels Henning, Ørsted-PedersenNiels Henning-Orsted-PedersonNiels Henning-Ørsted PedersenNiels Henninga Ørsted PedersonNiels Hennings Ørsted PedersenNiels O.H. PedersenNiels PedersenNiels Pedersen,Niels PedersonNiels PetersonNiels-H. Ø. PedersenNiels-H.Ø. PedersenNiels-Hening PedersenNiels-Hennimg Orsted-PedersenNiels-HenningNiels-Henning Horsted PedersenNiels-Henning Oersted PedersenNiels-Henning Oerstet PedersenNiels-Henning Orsetd PedersenNiels-Henning Orsted PeTersenNiels-Henning Orsted PedersenNiels-Henning Orsted PedersonNiels-Henning Orsted PerdersenNiels-Henning Orsted PetersenNiels-Henning Orsted-PedersenNiels-Henning Orstedt-PedersonNiels-Henning \Ørsted PedersenNiels-Henning Örsted PedersenNiels-Henning Örsted-PedersenNiels-Henning Øersted PedersenNiels-Henning Øorsted PedersonNiels-Henning ØrstedNiels-Henning Ørsted PedersonNiels-Henning Ørsted PetersonNiels-Henning Ørsted-PedersenNiels-Henning Őrsted-PedersenNiels-Henning, Ørsted PedersenNiels-Hennings Orsted PerdersenNiels⋅Henning Oersted PedersenNiles-Henning Orsted PedersenNils HenningNils Henning Oersted PedersenNils Henning Orsted PedersenNils Henning Orsted PedersonNils Henning PedersonNils Henning PetersenNils Henning Örsted PedersenNils Henning Ørsted PedersonNils Henning Ørsted-PetersenNils Henning-Orsted PedersonNils PedersenNils PedersonNils-Henning Orsted PedersenNils-Henning Orsted PedersonNils-Henning Ørsted PedersenNils-Henning Ørsted PedersonNils-Henning Ørsted-PedersenN·H·Ø·PedersenOrsted PedersonPedersenPerdersenPeredersenTrio N.H.O.P.Ørsted PedersenØrsted-PedersenН. ПедерсенНильс-Хеннинг Эрстед Педерсенタニア・マリアとニールス・ペデルセンニールス・ヘニング・エルステッド・ペデルセンニールス・ペダーセン (Niels Pedersen)ニールス・ペデルセンPeter Herbolzheimer Rhythm Combination & BrassDay Is OverThe George Gruntz Concert Jazz BandThe Oscar Peterson TrioChet Baker QuartetThe Bud Powell TrioThe Joe Pass TrioTeddy Wilson TrioTubby Hayes QuartetDon Byas QuartetThe Oscar Peterson QuartetThe Lee Konitz QuartetStan Getz QuartetBen Webster QuartetDexter Gordon QuintetDexter Gordon's All StarsGeorge Shearing TrioDanish Radio Big BandSonny Rollins QuartetAlex Riel TrioNiels-Henning Ørsted Pedersen QuartetLouis Van Dyke TrioJazz Quintet 60The Dexter Gordon & Slide Hampton SextetThe Danish Radio Jazz GroupBuddy De Franco SextetThe Dizzy Gillespie Big 7The Kenny Drew TrioThe Roland Kirk QuartetThe Danish Jazzballet Society'-EnsembleArt Farmer QuartetNiels-Henning Ørsted Pedersen TrioLouis Hjulmand QuartetWarne Marsh QuartetChet Baker TrioClark Terry SextetNiels Lan Doky TrioTete Montoliu TrioThe Oscar Peterson Big 6The Band (7)Sonny Rollins TrioThe Kenny Dorham QuintetStuff Smith QuartetThe Thomas Clausen TrioDuke Jordan TrioCount Basie 6Dexter Gordon QuartetKenny Drew QuartetHorace Parlan TrioPierre Dørge QuartetMax Leth QuartetThe Johnny Griffin QuartetIron OfficeDoug Raney QuintetTorben Hertz TrioBenny Carter 4Jean-Luc Ponty QuartetDexter Gordon & OrchestraMax Leth's OrkesterArchie Shepp/Lars Gullin QuintetBill Evans-Lee Konitz QuartetThe Ben Webster QuintetEuropean Jazz All StarsJohn Tchicai TrioWarne Marsh QuintetNDR-Jazz-Workshop-BandPeter Herbolzheimer All Star Big BandRoy Eldridge 4Warne Marsh TrioBoško Petrović QuintetDexter Gordon TrioBent Axen TrioTrouble (26)Idrees Sulieman QuintetThomas Clausen's JazzparticipantsBjarne Rostvold's TrioBooker Ervin QuartetGustaffson / Ørsted Pedersen DuoAnima TrioLennart Flindt TrioKarin Krog QuintetKarin Krog QuartetPrimož Grašič TrioDanish BrewWarne Marsh Lee Konitz Quintet + +285420Pierre PienaarPierre PienaarTrance DJ & producer hailing from Windhoek, Namibia.Needs Votehttp://www.pierre-pienaar.com/http://www.facebook.com/pierrepienaarofficialhttp://twitter.com/PierrePienaarhttp://soundcloud.com/pierrepienaarhttp://www.youtube.com/ReBirthProductionsP PienaarP. PienaarP.PienaarPienaarPierrePierrePienaarReBirth (2)P.H.A.T.T.MelodiaKofie Anon + +285423OddbodBen KearsleyUK Hard Dance DJ & Producer.CorrectBen KayePac_ManBen KearsleyAkcess (2) + +285482Deke RichardsDennis LussierDeke Richards a.k.a. Dennis Lussier and Deke Lussier +Songwriter, producer, guitarist and keyboard player. +Born on 8th April 1944 in Los Angeles, California, U.S.A. +Died on 24th March 2013 at Whatcom Hospice House, Bellingham, Washington, U.S.A. +Deke passed away following a battle with esophageal cancer. + +He was a member of the Motown Records songwriting team, The Corporation during the late 1960s and early 1970s. +The Corporation also included [a=Berry Gordy], [a=Fonce Mizell] and [a=Freddie Perren]. +Deke was also a member of the songwriting team [a=The Clan].Needs Votehttp://www.soultracks.com/story-deke-richards-dieshttps://en.wikipedia.org/wiki/Deke_RichardsD RichardsD. Eke RichardsD. RichardD. RichardesD. RichardsD. RidhardsD.RichardD.RichardsDeck RichardsDeke RichardDeke/RichardsDennis "Deke Richards " LussierDennis RichardsDerek RichardsJ. RichardsLussierPam Deke RichardsRichardRichard DekeRichardsRichards DekeRichardsonРичардディーク・リチャーズDennis LussierThe ClanThe Corporation (2) + +285786Clare FinnimoreBritish viola player.Needs VoteClair FinnimoreClaire FiinnimoreClaire FinnemoreClaire FinnimoreClara FinnimoreClare FimnimoreClare FinimoreClare FinmoreClare FinnamoreClare FinnemoreEnglish Chamber OrchestraBritten SinfoniaGuildhall String EnsembleJuno String QuartetBritten Oboe Quartet + +285956Lou LevyLouis A. LevyAmerican jazz pianist +Born March 05, 1928 in Chicago, Illinois, died January 23, 2001 in Dana Point, California + +Levy worked with [a=Georgie Auld] (1947), [a=Sarah Vaughan], [a=Chubby Jackson] (1947-’48), [a=Boyd Raeburn], [a=Woody Herman] (Second Herd, 1949-’50), [a=Tommy Dorsey] (1950), [a=Pinky Winters], [a=Shorty Rogers], [a=Stan Getz], [a=Terry Gibbs], [a=Benny Goodman], “[a=Supersax]”, and others. +Recorded also some albums as a leader.Needs Votehttp://en.wikipedia.org/wiki/Lou_Levy_%28pianist%29https://adp.library.ucsb.edu/names/327297L. LevyL.LevyLevyLou LeveyLou LeviLou LewisLou LewyLouis Levyルウ・レヴィーEarl Grey (7)Woody Herman And His OrchestraQuincy Jones' All Star Big BandSonny Stitt QuartetStan Getz QuartetShorty Rogers And His GiantsSupersaxThe Marty Paich Dek-TetteManny Albam And His Jazz GreatsBill Holman And His OrchestraWarne Marsh QuartetLou Levy TrioDennis Farnon And His OrchestraShorty Rogers QuintetShorty Rogers Big BandThe Lennie Niehaus OctetBob Cooper QuartetLou Levy QuartetChubby Jackson And His Fifth Dimensional Jazz GroupBob Cooper NonetJimmy Gourley QuartetStan Levey SextetThe Georgie Auld QuintetTerry Gibbs & His West Coast FriendsSonny Stitt & His West Coast FriendsThe Lou Levy SextetStan Levey QuintetConte Candoli QuintetWoody Herman & The Second HerdThe Ex-HermanitesColeman Hawkins & FriendsJimmy Dale BandPete Christlieb / Warne Marsh Quintet + +286072Kristin SkjølaasNorwegian violinist, born 1973.Needs VoteKristin Gerdes SkjölaasStrings UnlimitedOslo Filharmoniske OrkesterOrchestre Mondial Des Jeunesses Musicales + +286254David GatesDavid Ashworth GatesAmerican singer songwriter, composer, arranger, conductor and producer. Born on December 11, 1940 in Tulsa, Oklahoma (USA). Most famous for being the co-frontman of [a303471]. + +Needs Votehttps://en.wikipedia.org/wiki/David_Gateshttps://www.allmusic.com/artist/david-gates-mn0000179126https://www.facebook.com/Bread.Biography/https://www.imdb.com/name/nm0309552/https://www.westcoast.dk/artists/g/david-gates/CatesD GatesD, GatesD- GatesD. GaisD. GateD. GatedD. GatesD. GatsD. GolesD. gatesD.A. GatesD.GatesDave GatesDave Gates And His OrchestraDavidDavid A GatesDavid A. GatesDavid Ashworth GatesDavid CatesDavid GaitesDavid GateDavid Gates And His OrchestraG. D. AshworthGatesGates, DHatesד. גילסダビッド・ゲイツデイヴィッド・ゲイツデビッド・ゲイツデヴィッド・ゲイツ大衛蓋茲Ronnie FranklinDel AshleyBreadMr. Gasser & The WeirdosThe Avalanches (2)The FencemenThe Vibes (2)The Accents (6)The GlaciersDavid & LeeThe Country Boys (9)The Manchesters (6) + +286378Karl RatzerBorn July 4, 1950 in Vienna. Austrian jazz guitarist.Needs Votehttp://www.karlratzer.com/biographie.htmlhttps://de.wikipedia.org/wiki/Karl_RatzerC. RatzerC. RiderCarl RatzerCharlie RatzerCharly RatzerK. RatzerKarl "Charlie" RatzerKarl (Charly) RatzerKarl Ratzer Und BandRatzerThe Players AssociationChet Baker QuartetThe Slaves (2)Charles Ryders CorporationGipsy LoveKarl Ratzer GroupKarl Ratzer & Beat The HeatErich Kleinschuster QuintetKarl Ratzer QuartetThe Word (10)C-DepartmentRudi Wilfer Und Seine Speiereck BuamKarl Ratzer SeptetKarl Ratzer And BandKarl Ratzer TrioFatty George CrewKarl Ratzer Quintet + +286448John Brown (2)John G. BrownClassical violinist & Concertmaster. +Former member of the [a=London Symphony Orchestra] (1968-1976, Leader 1973-1976).Needs VoteJohn BrownJohn G. BrownLondon Symphony OrchestraThe London Virtuosi + +286888Ian BrackenClassical cellistCorrectRoyal Liverpool Philharmonic Orchestra + +286945Roberto CarlosRoberto Carlos BragaBrazilian pop singer, born April 19, 1941 in Cachoeiro de Itapemirim, Espírito Santo, Brazil. Roberto Carlos is one of the most successful Latin American pop singers in history, selling over 100 million albums over a career that spans more than 60 years. [b]Please use [a3019874] for writing and arranging credits with Erasmo Carlos.[/b]Needs Votehttp://www.robertocarlos.com/https://en.wikipedia.org/wiki/Roberto_Carlos_%28singer%29A. CarlosC. BragaCarlosCarlos BragaCarlos RobertoCarlos RomeroCoberto CarlosE. C. CarlosR. B. CarlosR. CarloR. CarlosR. Carlos - E. CarlosR. CarloseR. Et B. CarlosR. KarlosR.CarlosRobert CarlosRobertoRoberto ArlosRoberto CaclosRoberto CarloRoberto Carlos BragaRoberto Carlos Com ConjuntoRoberto CárlosRoberto E. CarlosRobertos CarlosР. КарлосРоберто Карлосרוברטו קרלוסロベルト・カルロスHermanosRoberto E Erasmo Carlos + +286984Pete EscovedoPeter Michael Escovedob. 13 July 1935 in Pittsburg, California + +Peter "Pete" Michael Escovedo is a Mexican-American musician percussionist. +He was raised in a musical family ([a=Coke Escovedo], [a=Javier Escovedo], [a=Alejandro Escovedo], [a=Mario Escovedo] are his brothers) in Oakland, CA. He has been at the front of the Latin jazz scene for three decades. Father of singer - percussionist [a=Sheila E.] +Needs Votehttp://www.peteescovedo.com/http://en.wikipedia.org/wiki/Pete_Escovedohttp://www.allmusic.com/artist/pete-escovedo-mn0000840760/biographyEscovedoP. EscovedoP.EscovedoPate EscovedoPete "Pops" EscovedoPete EscavedoPete Escovedo Jr.Pete Escovedo, Jr.Pete Escovedo, Sr.Peter EscovedoPeter Michael EscovedoPeter Michial Escovedo Jr.Peto EscovedoPops E.SantanaWoody Herman And His OrchestraAztecaPete & Sheila EscovedoThe Woody Herman Big BandThe E FamilyEscovedo BrothersPete Escovedo Orchestra + +287386Frank CappFrancis CappuccioAmerican jazz and rock drummer and percussionist +Born August 20, 1931 in Worcester, Massachusetts, USA, died September 12, 2017 in Studio City, California, USA + +Known as one of the most prolific musician for studio sessions and TV/Live shows in the Los Angeles area.Needs Votehttps://www.jazzhistorydatabase.com/content/musicians/capp_frank/bio.phphttps://en.wikipedia.org/wiki/Frank_Capphttps://www.imdb.com/name/nm0135442/https://adp.library.ucsb.edu/names/306981CappF. CappFranck CappFrank Capp?Frank CappsFrank KappFrank W. CappFranke CappFrankie CappPaul Smith QuartetThe Benny Goodman QuintetArt Pepper QuartetShorty Rogers And His GiantsThe Abnuceals Emuukha Electric OrchestraThe André Previn TrioTerry Gibbs QuartetThe Frankie Capp Percussion GroupDave Pell OctetTerry Gibbs QuintetKen Hanna And His OrchestraThe Ellington All StarsThe Marty Paich QuartetThe Paul Smith TrioThe Frankie Capp OrchestraFrank Capp QuartetThe Capp/Pierce JuggernautThe Barney Kessel TrioJerry Fuller SextetThe Phil Norman TentetHerbie Harper QuintetFrankie Capp Big BandThe Jazz City WorkshopBill Berry And The LA BandSoundstage All-StarsThe Brothers Candoli: SextetBilly Usselton SextetFrank Capp JuggernautThe Claude Williamson QuartetThe Wrecking Crew (6)Joe Albany TrioFive BrothersJack Quigley TrioFrank Capp & His OrchestraThe Frank Capp TrioThe Med Flory Quintet + +287527Benny WatersBenjamin WatersAmerican jazz saxophonist (tenor, soprano, alto) and clarinetist, born January 23, 1902 in Brighton (Baltimore), Maryland, died August 11, 1998 in Columbia, Maryland. +Waters worked with Charlie Miller (1918-1921), Charlie Johnson (1926-1931), King Oliver, Clarence Williams, Claude Hopkins, Fletcher Henderson, Benny Carter, Hot Lips Page (1938, 1941), Jimmie Lunceford (1942), Jimmy Archey (from 1949) and others. +Lived in Paris from 1952 to 1992.Needs Votehttp://en.wikipedia.org/wiki/Benny_Watershttps://adp.library.ucsb.edu/names/105384B WatersB. WaltersB. WatersBen WatersBen Waters (Whittet)Benjamin A. WatersBenny Waters (USA)WatersJimmie Lunceford And His OrchestraClarence Williams And His OrchestraRoy Milton & His Solid SendersCharlie Johnson & His OrchestraThe Harlem Blues & Jazz BandCharlie Johnson & His Paradise BandAl Lirvat Et Son OrchestreSeptuor Jack DiévalHot Lips Page And His BandBenny Waters And His Swedish BandMac-Kac Et Son Rock And RollJimmy Archey's BandBenny Waters Quartet + +287777EvyEvelyne VerrecchiaFrench singer and composer born in Angers 16 December 1945, able to perform in French, Italian, English, Spanish and famous in the 60's in France & in Italy as [a=Evy]. In 70s back with the disco-version of [i]Black Is Black[/i] (original song by spanish band [a=Los Bravos]) as leader of [a=Belle Epoque], female group produced by her brother [a=Albert Verrecchia], keyboardist of [a=I Pirañas], author of soundtracks, mostly known as [a=Albert Weyman] (also [a=Weyman Avenue] & [a=Weyman Corporation] thanks the great success with [i]Le Chat[/i], lyrics written by same Evy, aka [a=Evelyne Lenton]). +Needs Votehttp://it.wikipedia.org/wiki/%C3%89velyne_LentonEvy of Belle EpoqueEvelyne LentonEvelyne VerrecchiaLucille Lenton + +287785Charles TrenetLouis Charles Augustin Georges TrenetFrench singer and songwriter, born May 18th, 1913 in Narbonne, Aude, France, died February 19th, 2001 in Créteil, Val-de-Marne, France.Needs Votehttp://www.charles-trenet.net/https://en.wikipedia.org/wiki/Charles_Trenethttps://deces.matchid.io/id/o74KOq2lWvuMhttps://www.allmusic.com/artist/charles-tr%C3%A9net-mn0000197532https://www.imdb.com/name/nm0872081/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103592/Trenet_CharlesC TrenetC. FrenetC. L. TrenetC. TravelC. TreneC. TrenentC. TrenetC. TrentC. TrenteC. TrenétC. TronetC. TrunetC. TrènetC. TrénetC. トレネC.L. TrenetC.L.A. TrenetC.TrenetC.TrénetCH. TrenetCh . TrenetCh TrenetCh. L.A. TrenetCh. TRenetCh. TrainetCh. TrenentCh. TrenetCh. TrentCh. TrnzeetCh. TrénetCh.L.A. TrenetCh.L.TrenetCh.TrenetCh.TrénetCharels TrenetCharkes TrenetCharl. TrenetCharles TrénetCharles L. A. TrenetCharles L. TrenetCharles Louis Augustin Claude TrénetCharles Louis A. G. TrenetCharles Louis A. TrenetCharles Louis A.G. TrenetCharles Louis Augu TrenetCharles Louis Augustin TrenetCharles Louis TrenetCharles TrenettCharles TrennetCharles TrentCharles TrenétCharles TrinetCharles TränetCharles TrénetCharlie TrenetChas TrenetChas. TrenetChr. TrenetG. TrenetGeorge AugustinL. FrenetLouis Charles Augustin Georges TrenetLouis Charles TrenetLouis Charles TrentTanieTenetTranetTremetTrenerTrenetTrenet CharlesTrenet Charles LouisTrenet, C.Trenet, CharlesTrenethTrennetTrentTrewetTronetTrènetTrénetTrénet Charlescharles TrenetrenetТренеШ. ТренеШ.ТренеШарль Тренеシャルル・トレネCharles & JohnnyCharles Trenet Et Son Quartette OndiolineCharles Trenet Et Son OrchestreCharles Trenet Et Son Quintette + +287859Maxine NeumanCellist. Member of a number of ensembles, including [b]Belmont Trio[/b] (with guitarists Karin Scholz and Peter Ernst), [b]Claremont Duo[/b] (with Peter Ernst), [b]Tres por el Tango[/b] (w/ bandoneonist Karin Eckstein and Peter Ernst on guitar), [b]Bennington Cello Quartet[/b], [b]Walden Trio[/b], [b]Crescent Quartet[/b], [b]Saint Luke's Chamber Ensemble[/b] and cello/piano duo with [a=Rainer Hoffmann]. + +Born: July 1, 1948 in New York +Died: December 13, 2022Needs Votehttps://web.archive.org/web/20160126222207/http://www.maxineneuman.com/https://en.wikipedia.org/wiki/Maxine_NeumanMaxine NeumannMaxine NewmanAmerican Composers OrchestraOrchestra Of St. Luke'sThe Crescent QuartetWestchester PhilharmonicClaremont DuoPor El TangoSeigen Ono EnsembleThe Vista Nuova EnsembleThe Vita Nuova Ensemble + +287869Phil BoydenPhilip BoydenClassical cellist.Needs VoteBournemouth Symphony OrchestraYoung Musicians Symphony Orchestra + +287994Major HolleyMajor Quincy Holley Jr.American jazz bassist. + +b. July 10, 1924 (Detroit, Michigan, USA) +d. October 25, 1990 (Maplewood, New Jersey, USA) +Needs Votehttps://en.wikipedia.org/wiki/Major_HolleyHolleyHolley Jr.M. HolleyM. Holley, Jr.M.HolleyMajor "Mule" HolleyMajor HoleyMajor Holley JrMajor Holley Jr.Major Holley jr.Major Holley, Jr.Major HollieMajor HollyMajor Holly Jr.Major KolleyMajor Q. Holley, Jr.Major Quincy Holley Jr.Major Quincy Holley, JrМ. ХоллиColeman Hawkins QuartetWoody Herman And His OrchestraDuke Ellington And His OrchestraLee Konitz Big BandTeddy Wilson TrioShirley Scott TrioAl Cohn - Zoot Sims QuintetWoody Herman SextetMilt Jackson And Big BrassColeman Hawkins SextetDuke Jordan TrioTeddy Wilson And His All StarsWoody Herman And The Fourth HerdThe Phil Seamen QuintetDave McKenna QuartetTotti Bergh QuintetJoe Van Enkhuizen QuartetEddie Locke SextetThe Cliff Smalls SeptetRodney Jones/Tommy Flanagan QuartetDoctor Billy Dodd And His Swing All Stars + +288092Barry MannBarry ImbermanAmerican songwriter, singer, pianist and producer. +Born: February 9, 1939, Brooklyn, New York, USA. +One half of an illustrious songwriting duo with wife, the lyricist [a=Cynthia Weil], writing [m86073]. They were inducted into the Songwriters Hall of Fame in 1987 and received an award from the Rock & Roll Hall of Fame in 2010.Needs Votehttps://www.mann-weil.com/https://twitter.com/mannweilhttps://en.wikipedia.org/wiki/Barry_Mannhttps://www.imdb.com/name/nm0542656/B MannB. ManB. MannB. Mann,B. マンB.. MannB.MannBabry MannBannBarryBarry A MannBarry A. MannBarry MamBarry ManBarry Mann Et Les BompersBarry-MannBarrymanBarrymannBary MannBerry MannC. MannC.B. MannD. MannDavid MannG. MannH. MannM. MannMamaMammManManmMannMann - BarryMann BarryMann WeilMann, BarryMann, WeilMann/BarryMnnParry MannR. W. MannR. Wheeler MannS. MannWeilWheeler MannМаннマンMann And Weil + +288268Bessie SmithBessie SmithBessie Smith (born April 14, 1894, Chattanooga, Tennessee, USA – died September 26, 1937, in a car accident near Clarksdale, Mississippi, USA) was an American blues singer. + +Nicknamed the "Empress of the Blues", she was considered by many to be the greatest blues singer of all time. She was also a successful vaudeville entertainer who became the highest paid African-American performer of the roaring twenties. Bessie died from injuries sustained in a car crash. Her arm which was probably hanging out the car window was almost severed at the elbow. Her grave was unmarked for 33 years until [a120232] paid for her headstone in 1970. Half-sister of [a4940962]. + +Inducted into Rock And Roll Hall of Fame in 1989 (Early Influence). + +On June 7, 1923, she married [a=Jack Gee] thus becoming aunt-in-law of [a=Ruby Smith] (Jack's niece). +Needs Votehttps://en.wikipedia.org/wiki/Bessie_Smithhttps://adp.library.ucsb.edu/names/104231B SmithB. SmitB. SmithBessie BluesBessie Smith And FriendsBessie Smith Blues Singer, With OrchestraBessy SmithElisabeth "Bessie" SmithP. SmithSmithW. SmithБ. Смитベッシー・スミスBessie Smith And Her BandBessie Smith And Her Blue BoysBessie Smith And Her Down Home TrioBessie Smith-Orchestra + +288386David HillDavid HillEnglish organist and choral conductor, born on May 13, 1957 in Carlisle, Cumbria. +Educated at Chetham’s School of Music, he was made a Fellow of the Royal College of Organists at the age of 17. He took an organ scholarship to St John’s College, Cambridge under the direction of Dr [a838972]. +He has been musical director of the Alexandra Choir (1980-1987), master of the music at Westminster Cathedral (1982-1987), associate conductor and then artistic director of the Philharmonia Chorus (1986-1997), music director of The Waynflete Singers (1987-2002), master of the music at Winchester Cathedral (1988-2002) and director of music at St John's College, Cambridge (2003-2007). +He is currently Chief Conductor of the BBC Singers since September 2007, Musical Director of The Bach Choir since April 1998, Principal Conductor of the Yale Schola Cantorum since 2013, Associate Guest Conductor of the Bournemouth Symphony Orchestra, Chief Conductor of the Southern Sinfonia and Music Director of Leeds Philharmonic Society.Needs Votehttps://twitter.com/davidhconductorhttp://www.caroline-phillips.co.uk/artists/CPM_DH.htmhttp://www.thebachchoir.org.uk/about/davidhill.phphttp://www.bbc.co.uk/orchestras/singers/about/conductors/D. HillHillデイヴィッド・ヒルWinchester Cathedral ChoirThe Bach ChoirSt. John's College ChoirBBC SingersPhilharmonia ChorusBournemouth Symphony OrchestraWestminster Cathedral ChoirYale Schola CantorumLeeds Philharmonic SocietyThe Waynflete Singers + +288390Hoyt AxtonHoyt Wayne AxtonAmerican country musician, songwriter, and actor. Son of [a=Mae Boren Axton] and [a=John Thomas Axton], brother of [a=John Boren Axton]. Husband of [a1302881]. Father of [a4124739]. Wrote some songs which became well-known Internationally, including "Joy To The World". Co-founder of [l=Jeremiah Records Inc.] +Born: March 25, 1938, Duncan, Oklahoma +Died: October 26, 1999, Victor, Montana +Needs Votehttp://www.hoytsmusic.comhttps://en.wikipedia.org/wiki/Hoyt_AxtonA. AxtonAxonAxtenAxtonAxton HoytAxton Hoyt WayneAxton, HoytFloyd AxtonH AxtonH. AntonH. AxponH. AxtonH. AxtronH. HaxtonH.AxtonH.W. AxtonH.t AxtonHayt AxtonHeyt AxtonHi AxtonHoight AxtonHoit/AxtonHoly AxtonHovt AxtonHoxtonHoy & AxtonHoydt AxtonHoytHoyt ActonHoyt AxtenHoyt Wayne AxtonHoyt, AxtonHoyt/AxtonHoyte AxtonJ. AxtonM. AxtonPaxtonR. AxtonW. AxtonW. H. AxtonWayne Holt AxtonWayne Hoyt Axton + +289134Nigel EatonNigel EatonBritain's hurdy-gurdy maestro, Nigel Eaton originally played piano and cello, moving to the hurdy-gurdy when his father, Christopher Eaton, started to make the instruments in 1981. In 1985 he joined the groups 'Blowzabella' and 'Ancient Beatbox' with whom he has toured extensively in Britain, Europe and South America and recorded six albums. Nigel also appears on numerous records with artists ranging from Robert Plant, Scott Walker and Marc Almond to The Philharmonia and The New London Consort, and soundtracks for films such as 'Aliens' and 'The Name of the Rose'. Nigel took part in a year-long world tour with Robert Plant and Jimmy Page and is one half of 'Whirling Pope Joan' with Julie Murphy.Needs VoteEatonN. EatonN. WalkerAncient BeatboxNew London ConsortBlowzabellaThe DuellistsWhirling Pope Joan + +289323René PapeRené PapeGerman bass singer, born 4 October 1964 in Dresden, GDR.Needs Votehttp://www.renepape.com/https://de.wikipedia.org/wiki/René_PapePapeRene PapeРене ПапеDresdner Kreuzchor + +289505Rudy CollinsRudolph Alexander CollinsAmerican jazz drummer, born July 24, 1934 in New York City, New York, died August 15, 1988. +Played with Hot Lips Page, Cootie Williams, Eddie Bonnemere, Dizzy Gillespie, Johnny Smith, Carmen McRae, Cab Calloway, Roy Eldridge, J.J. Johnson and others. +Needs Votehttps://en.wikipedia.org/wiki/Rudy_Collinshttps://www.imdb.com/name/nm1170406/Ruby CollinsRuddy CollinsRudolph CollinsShaka ZuluWilliam "Mickey" CollinsРуди Коллинзルディ・コリンズDizzy Gillespie Big BandDizzy Gillespie QuintetLalo Schifrin & OrchestraThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsThe Jay And Kai QuintetCecil Taylor TrioVera Auer QuintetPete Brown Sextette + +289514Lesley GarrettBritish opera singer born April 10, 1955 in Thorne (near Doncaster), South Yorkshire, UK. Graduated from the Royal Academy of Music, where she is now a Fellow, and was previously a Principal Soprano at the English National Opera, where she is now a member of the Board. Garrett won the Decca Prize of the Kathleen Ferrier Award in 1979 and in 2002 was appointed a CBE for her services to music.Needs Votehttp://www.lesleygarrett.co.uk/https://en.wikipedia.org/wiki/Lesley_Garretthttps://www.imdb.com/name/nm0308162/GarrettLeslie Garrettレスリー・ギャレット萊斯麗·嘉芮萊絲麗嘉芮레슬리 가렛Various Artists (6)Stars Of The London Stage + +289519Thomas AllenThomas Boaz AllenSir Thomas Allen, CBE, (born 10 September 1944 in Seaham, County Durham, England) is an English baritone / bass vocalist +In 1989, he was made a Commander of the Order of the British Empire (CBE). In 1999, he was knighted. Both were awarded for his services to opera. + +For the songwriter, see [a=Papa Dee Allen]. +For the gospel vocalist and drummer from The Rance Allen Group, see [a=Tom Allen]. +Needs Votehttps://en.wikipedia.org/wiki/Thomas_Allen_(baritone)AllenSir Thomas AllenT. AllenT.AllenThamas AllenThomas AlenThomas AllanTom AllenТомас АленТомас Алленトーマス・アレンVarious Artists (6) + +289522BBC Symphony OrchestraBritish orchestra founded in 1930 and based in London. It is the principal orchestra of the British Broadcasting Corporation (BBC).Needs Votehttps://www.bbc.co.uk/symphonyorchestrahttps://www.facebook.com/BBCSO/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102647/BBC_Symphony_Orchestrahttps://en.wikipedia.org/wiki/BBC_Symphony_OrchestraB. B. B. Symphony OrchestraB. B. C. Symphonie-OrchesterB. B. C. SymphonyB. B. C. Symphony OrchestraB.B.C Symphony OrchestraB.B.C. Orchestra (Section D)B.B.C. SymphonyB.B.C. Symphony OrchestraB.B.C. Symphony Orchestra LondonB.B.C. Wireless Symphony OrchestraB.B.C.Symphony OrchestraBBCBBC Choir Symphony OrchestraBBC Northern SymphonyBBC OrchestraBBC Radio OrchestraBBC SOBBC Sinfonie OrchesterBBC Sinfonie-OrchesterBBC Singers & SymphonyBBC Symfonie-orkestBBC Symphonie OrchesterBBC Symphonie-Orchester LondonBBC SymphonyBBC Symphony Chorus & OrchestraBBC Symphony Orch,.BBC Symphony Orch.BBC Symphony Orchestra & ChorusBBC Symphony Orchestra And ChorusBBC Symphony Orchestra LondonBBC Symphony Orchestra Viola SectionBBC Symphony Orchestra and ChorusBBC Symphony Orchestra, Chorus & SingersBBC Symphony Orchestra, LondonBBC Symphony Orchestra, Singers And ChrousBBC Symphony Orchestra, TheBBC Symphony, Chorus & SingersBBC Szimfonikus ZenekarBBC Theater OrchestraBBC Weish Symphony OrchestraBBC-OrchBBC-OrchesterBBC-Sinfonie-OrchesterBBC-Symphony OrchestraBBCSOBBC交響楽団Bbc SoB•B•C Symphony OrchestraB∙B∙C Symphony OrchestraDas B.B.C Sinfonie OrchesterDas B.B.C. Sinfonie-OrchesterDas BBC Sinfonie OrchesterDas Britische Rundfunk-Symphonie-Orch.L'Orchestre De La B.B.C.Members Of The BBC OrchestraMembers Of The BBC Symphony OrchestraMusiciens Du BBC Symphony OrchestraOrchestraOrchestra Of BBCOrchestra Of The BBCOrchestra Sinfonica Della B.B.C. Di LondraOrchestra Sinfonica Della BBCOrchestra of the BBCOrchestreOrchestre De La B.B.C.Orchestre De La BBCOrchestre Symphonique B.B.C.Orchestre Symphonique De La B.B.C.Orchestre Symphonique De La B.B.C. Avec ChoeursOrchestre Symphonique De La BBCOrquesta De La B.B.COrquesta Sinfonica BBCOrquesta Sinfonica De La B.B.C. De LondresOrquesta Sinfonica De La BBCOrquesta Sinfónica De La B.B.C.Orquesta Sinfónica De La BBCOrquesta Sinfónica de la B.B.C.Orquesta Sinfónica de la BBCOrquestra Simfonica De La BBCOrquestra Sinfonica Da B.B.C.Orquestra Sinfónica Da BBCPhilharmonieorchester Der BBCRadio Symphony Orchestra LondonSao Paulo Symphony OrchestraSolistas Y Coros De La BBC De LondresStreicher Vom BBC-OrchesterSymfonický Orchestr B. B. C.Symfonický Orchestr BBCSymfoniorkesterSymphonieorchester Der BBCSymphonieorchester der BBCSymphony OrchestraThe B. B. C. OrchestraThe B. B. C. Symphony OrchestraThe B.B.C Symphony OrchestraThe B.B.C. OrchestraThe B.B.C. Symphony OrchestraThe B.B.C.Symphony OrchestraThe BBC Northern OrchestraThe BBC OrchestraThe BBC Radio OrchestraThe BBC SymphonyThe BBC Symphony Orch.The BBC Symphony OrchestraThe British Broadcasting Choir Symphoy OrchestraThe British Broadcasting Symphony OrchestraThe London Philharmonicthe B.B.C. Symphony OrchestraΣυμφωνική ΟρχήστραОркестр Би-Би-СиСимфонический Оркестр Би-Би-СиСимфонический Оркестр Британской Радиовещательной КорпорацииNatasha WrightRichard WaltonJack BrymerGennadi RozhdestvenskyMartin OwenJane MarshallChris Cowie (2)George RobertsonStephen SaundersAlan CivilJohn WilbrahamHugh BeanJames GalwayClive AnsteeAlan DalzielPaul CoshGary KettelSimon EstellFrances DewarMalcolm ArnoldJohn KitchenJohn BoyceJeff WakefieldJohn CoullingJohn Anderson (4)Sidney SutcliffeColin HuberPhilip HallAndy FawbertMark Walton (3)Judith HerbertNicola HollandAndrew HaveronDavid PowellClare TyackLeonard SlatkinHarry DanksDavid MeashamShaun ThompsonRichard Skinner (2)Helen CooperBeverley JonesCelia CraigJames HollandJohn OrfordDavid HockingsSam WaltonFrancis NolanJohn MarsonJohn Fletcher (2)Philip JonesJenny KingSue MonksJesse StampAdrian Smith (3)Roger HarveyRichard HosfordTamsy KanerMichelle BruilSylvain VasseurRobert Turner (2)Tammy SeHilary JonesJohn ChimesSue DentHilary StorerHugh MaguireDenis VigayRaymond CohenByron FulcherChristopher LarkinDouglas WhittakerRodney FriendKate ReadMichael AtkinsonSidonie GoossensJanet CraxtonStephen BryantDavid ButtJohn StenhouseRachel GoughDavid ArcherJohn AlleyKathryn SaundersTimothy Brown (2)John TylerHarry BlechStephen ShakeshaftRaymond OvensFerenc SzucsGwyn EdwardsWilliam WaterhouseRoger FallowsBenjamin RoskamsKenneth HeathTimothy Jones (3)Gareth GriffithsKevin NuttyJonathan Williams (7)Christine MessiterChristopher HindDavid ChewCarsten WilliamsPaul MarrionBela DekanyGeoffrey BrowneRichard Simpson (3)Patrick CardasDenzil FloydEdward BarryGraham SheenAlex NealDouglas Moore (3)Eleanor MathiesonElizabeth RandellKevin Smith (8)Francis MarkusHenry HardyGareth BimsonChristopher MowatAlison KnightDuke DobingMichael Cox (3)Hugh SparrowLionel BentleyGeoffrey GilbertMichael HirstNikki GleedElizabeth BurleyAlexander KokAmbrose GauntlettEugene CruftArchie CamdenEli GorenGilbert WebsterJack PinchesAndriy ViytovychRichard AylwinWilliam HoughtonAlan HarversonJames MerrettPeter Harvey (2)Sioned WilliamsClare GanisterSusan FrankelMartin HurrellBrendan ThomasDonald Watson (2)Richard StaggPatricia MorrisRebecca ShorrockRuth HudsonGwendoline GaleEdwin DoddHanna GmitrukDaniel Meyer (5)Ursula HeideckerRobert BishopPhillipa BallardCharles RenwickCelia WaterhouseJacqueline HartleyDawn NellerRussell DawsonKeith GurryRegan CrowleyLynette Wynn-PadfieldJeremy Martin (2)Marian GulbickiMark Sheridan (3)Audrey HenningDylan MarvellyNikos ZarbCaroline HarrisonClare HintonEric SargonAndrew McVeighEmma PritchardJanice BrodieGerald ManningGraham BradshawPeter FreyhanWalter LearAlan AndrewsJulian TraffordPeter MallinsonHeather BirksPeter MuscantStuart KnussenMarie StrømMichael Murray (6)Terence MacDonaghLeonard DommettKenneth KnussenSusan SutherleyAnna ColmanMichael MeeksFiona BrettLouise Martin (4)Aubrey BrainColin Sauer (2)Angus AndersonRebecca ChambersAmyn MerchantKatherine LacyNorman Nelson (3)Claude HobdayNeill SandersLorna McGheeWilliam OvertonAlfred G. ButlerJames GourlayAnneke HodnettFrancis BradleyColin BradburyBernard ShoreGerald DruckerCharles WoodhouseNicholas HoughamNiall KeatleyDean WilliamsonEric Pritchard (2)Phil Cobb (2)Emily Francis (3)Mike LeaverHania GmitrukNatalie Taylor (3)Andrew HendrieTom WinthorpeFrederick ThurstonColin Davis (6)Ian Mackintosh (2)Imogen EastJason Evans (9)Justin Jones (8)Peter Davis (19)Paul Beard (2)Lucy CurnowJuan Manuel González (2)Antoine BedewiRobert O'NeillDuncan SwindellsAdrian Dunn (2)Mark Wood (21)Phil Taylor (19)Tom LesselsHelen VollamRobert MurchieJack Mackintosh (2)Nicholas BayleyJames Burke (9)Michael Lloyd (12)Alexia CammishAubrey ThongerZanete UskaneColin CourtneyJ. McDonaghJames OpieMarie Wilson (8)Philippa BallardDawn BeazleyRichard AlsopMichael Clarke (19)Adolf MinkCharles Martin (18)Patrick WastnageJenni WorkmanEmma GreenwoodRuth Ben-NathanDanny FajardoPeter FurnissJoseph Cooper (6)Rachel Samuel (2)Christopher NewportRuth SchultenGraham Mitchell (8)Sarah Hedley MillerDominic Moore (3)Daniel Molloy (2)Thomas PeatfieldAlfred FlaszynskiCarol EllaDominic ChildsNana RaitaluotoSteven MageeCarolyn Scott (2)Ni DoLucica TritaErnest Hall (3)Gerald BrinnenJochen Neuffer (2)Ralph ClarkeHelen GaskellRussell King (7)Herng-Yu Elen PanFergus Davidson (2)Barry Squire (3)Arnold Cole + +289959Vincent CharbonnierDouble bass player.Needs VoteJacques Loussier TrioIl Seminario MusicaleLa Grande Ecurié Et La Chambre Du RoyLes Musiciens Du LouvreBig Band LumiereSir Ali's Girls + +289983Killswitch (2)Joe SaundersTrance DJ from England, United Kingdom.Needs Votehttp://www.myspace.com/killswitchmuzikSeffJoe-EV10Joe SaundersHi-State + +290019Maurice GibbMaurice Ernest GibbMaurice Gibb, CBE (born December 22, 1949, Douglas, Isle of Man, UK – died January 21, 2003, Miami Beach, Florida, USA) was a British singer, songwriter, multi-instrumentalist, and record producer who achieved fame as a member of the group the [a97664]. He was inducted into the Songwriters Hall of Fame in 1994. +Son of [l=Hugh & Barbara Gibb], twin brother of [a179142] and brother of [a=Lesley Gibb], [a151481] and [a213331]. From 18 February 1969 to 21 August 1975 he was married to [a=Lulu]. He married his second wife, [a=Yvonne Gibb] (née Spenceley), on 17 October 1975; they had two children, [a=Adam Gibb] and [a=Samantha Gibb].Needs Votehttps://www.facebook.com/Maurice-Gibb-160904667316897/https://twitter.com/mauricegibbhttps://beegees.fandom.com/wiki/Maurice_Gibbhttps://en.wikipedia.org/wiki/Maurice_Gibbhttps://de.wikipedia.org/wiki/Maurice_Gibbhttps://www.imdb.com/name/nm0316465/https://www.songhall.org/profile/Maurice_Gibbhttps://www.legacy.com/news/celebrity-deaths/maurice-gibb-the-quiet-bee-gee/https://musicianbio.org/maurice-gibb/https://www.biography.com/musician/maurice-gibbhttps://www.famousbirthdays.com/people/maurice-gibb.htmlhttps://www.geni.com/people/Maurice-Gibb/6000000014566524739https://www.astro.com/astro-databank/Gibb,_Mauricehttps://www.allmusic.com/artist/maurice-gibb-mn0000865286A. GibbB.u.M. GibbE. GibbsGibbGibb MGibb MauriceM GibbM.M. GibbM. A. GibbM. E. GibbM. GibbM. GibbovéM. GibbsM. GubbM.E. GibbM.E.GibbM.GibM.GibbM; GibbMM. GibbMauriceMaurice E. GibbMaurice Ernest GibbMaurice Ernest GibbMaurice Ernest gibbMaurice Ernst GibbMaurice GibbsMobyN. GibbN.GibbМ. ДжибМ.ДжибモーリスBee GeesRobin Gibb, Barry Gibb & Maurice GibbThe BunburysThe BloomfieldsThe FutBarry & Maurice GibbThe Bee Gees Band + +290025Lee GarrettLee GarrettBorn blind in Mississippi, Lee Garrett developed a friendship with [a=Stevie Wonder]. Stevie's and Lee's joint songwriting projects extended to artists including [a=Jermaine Jackson], [a=Spinners], and Stevie Wonder's own "Signed, Sealed, Delivered." + +As a solo artist, Lee signed to Chrysalis in the mid-70's where his one album "Heat For The Feats" (1976) included "You're My Everything" (UK Top 20). + +There then became a difference of opinion between Stevie and Lee over the writing credits to Stevie's hit "I Just Called To Say I Love You." with Lee claiming to have written the tune many years previously. + +They have not been in contact since that time. +Needs Votehttps://en.wikipedia.org/wiki/Lee_GarrettBarrettG. LeeGarettGarrattGarretGarrettGarrett LeeGarrett, LeeGarrrettL CarrottL GarrettL, GarrettL. GarettL. GarretL. GarrettL.GarrettLee GarrattLee GarretLee GarrrettLee GatrettLee GrantLeo Garrett + +290091Alan & Marilyn BergmanA husband and wife songwriting team who have won three Academy Awards, two Grammy Awards, one Ace Award, and three Emmy Awards. They have been nominated for sixteen Academy Awards, and in 1983, they became the first songwriters ever to be nominated for three Academy Awards for Best Song out of the five nominated songs. + +They were inducted into the Songwriters Hall of Fame in 1980, and received the National Academy of Songwriters Lifetime Achievement Award in 1995 and the Songwriters Hall of Fame Johnny Mercer Award in 1997. + +Some of their songwriting credits include: "The Way We Were", "You Don't Bring Me Flowers", "Yellow Bird", "Nice n' Easy", "What Are You Doing The Rest Of Your Life?", and "Ordinary Miracles". They provided the score to the film Yentl, and the song, "Moonlight", from the film Sabrina, as well as the theme songs for Maude, Good Times, Alice, and Brooklyn Bridge. + +They are best known for writing lyrics as a team.Needs Votehttps://alanandmarilynbergman.com/https://en.wikipedia.org/wiki/Alan_and_Marilyn_BergmanA & A BergmanA & M BegmanA & M BergmanA & M BermanA & M. BergmanA & M.BergmanA & R BergmanA + M BergmanA .& M. BergmanA And M BergmanA Bergman / M BergmanA Bergman-M BergmanA Bergman/M BergmanA Bernman/M. BerdmanA et M. BergmanA&M BargmanA&M BergmanA&M BermanA&M. BergmanA&M.BergmanA, Bergman, M. BergmanA,Bergman / M. BergmanA. & B. BergmanA. & BergmanA. & M. BargmanA. & M. BegmannA. & M. BerghanA. & M. BergmanA. & M. BergmannA. & M.BergmanA. & N. BergmanA. &. M. BergmanA. + M. BergmanA. + M. BergmannA. / M. BergmanA. And M. BergmanA. Bergaman, M. BergmanA. BergmanA. Bergman & M. BergmanA. Bergman & M.BergmanA. Bergman , M. BergmanA. Bergman - A. BergmanA. Bergman - M. BergmanA. Bergman - M. Bergman,A. Bergman - M. BorgmanA. Bergman - N. BergmanA. Bergman -M. BergmanA. Bergman / M. BergmanA. Bergman And M. BergmanA. Bergman M. BergmanA. Bergman M. BermanA. Bergman Y M. BergmanA. Bergman, B. BergmanA. Bergman, M. BergmanA. Bergman- M. BergmanA. Bergman--M. BergmanA. Bergman-M-BergmanA. Bergman-M. BergmanA. Bergman-M.BergmanA. Bergman-N. BergmanA. Bergman. M. BergmanA. Bergman/B. BergmanA. Bergman/M. BergmanA. Bergmann - M. BergmanA. Bergmann - M. BergmannA. Bergmann / M. KeithA. Bergmann, M. BergmannA. Bergmann/M. BergmannA. Bergman—M. BergmanA. Berman-M. BergmanA. Berman-M. KeithA. Bregman - M. BregmanA. E M. BergmanA. E M. BergmannA. Et M. BergmanA. M. BergmanA. M. BermanA. MarilynA. and M. BergmanA. e M. BergmanA. e M.BergmanA. u. M. BergmanA. u. M. BergmannA. y M. BergmanA.& M. BergmanA.& M.BergmanA.&M. BergmanA.&M.BergmanA.+ M. BergmanA.+M. BergmanA.- M. BergmanA./M. BergmannA.Bergman - M. BergmanA.Bergman - M.BergmanA.Bergman / M.BergmanA.Bergman, M.BergmanA.Bergman-B.BergmanA.Bergman-M. BergmanA.Bergman-M.BergmanA.Bergman/B.BergmanA.Bergman/M.BergmanA.M BergmanA.M. BergmanA.M. BergnamA/M BergmanAl. & M. BergmanAlain Bergman-Marilyn BergmanAlain Marilyn BergmanAlan & M. BergmanAlan & Marilyn BergmannAlan & Marvin BergmanAlan & Mary BergmanAlan & Marylin BergmanAlan - Marilyn BergmanAlan / Marilyn BergmanAlan And M. BergmanAlan And MarilynAlan And Marilyn BergmanAlan And Marilyn BregmanAlan And Mary BergmanAlan Bergmab-Marilyn BergmanAlan Bergman & Keith MarilynAlan Bergman & Marilyn BergmanAlan Bergman & Marlyn BergmanAlan Bergman - Marilyn BergmanAlan Bergman - Marylin BergmanAlan Bergman / Marilyn BergmanAlan Bergman And Marilyn BergmanAlan Bergman Merilyn KeithAlan Bergman Og Marilyn BergmanAlan Bergman, And Marilyn BergmanAlan Bergman, Marily BergmanAlan Bergman, Marilyn BergmanAlan Bergman,Marilyn BergmanAlan Bergman-Marilyn BergmanAlan Bergman/M. BergmanAlan Bergman/MarilynAlan Bergman/Marilyn BergmanAlan Bergmann/Marilyn BergmannAlan Berman, Marilyn BergmanAlan E Marilyn BergmanAlan Et Marilyn BergmanAlan Och Marilyn BergmanAlan Og Marilyn BergmanAlan Und Merylin BergmannAlan Y Marilyn BergmanAlan and Marilyn BergmanAlan e Merilyn BergmanAlan y M. BergmanAlan y Marilyn BergmanAlan, MarilynAlan, Marilyn BergmanAlan. Marlyn, BergmanAlan/BergmanAlanBergman/Marilyn BergmanAllan & Marilyn BergmanAllan Bergman / Marilyn BergmanAllan Bergman, Marilyn BergmanAllan Bergman/ Marilyn BergmanAllen & Marilyn BergmanAllen Bergman/M. BergmanAllen Bergman/Marilyn BergmanB. BergmanBergmanBergman & BergmanBergman - BergamBergman - BergmanBergman / BergmanBergman And BergmanBergman and BergmanBergman*BergmanBergman, A & MBergman, Alan / Bergman, MarilynBergman, BergmanBergman, MergmanBergman-A, BergmanBergman-BergmanBergman-KeithBergman/BergmanBergman; BergmanBergmannBergmann - BergmannBergmann, BergmannBergmann-BergmannBergmann/BergmannBergmansBergman–BergmanBergmenBergmen, BergmenBermanBermann/BergmannBorgmanBregmanBurgemanE. Bergman - M. BergmanH. & M. BergmanH. BergmanH. u. A. BergmanH.BergmanHergmen, BergmanI. BergmanKeith & BergmanKeith - BergmanKeith-BergmanKeith/BergmanM & A BergmanM & A. BergmanM Et A BergmanM&A BergmanM. & A. BergmanM. & A. Bergman-Le GrandM. & A. BergmannM. & A. BregmanM. & B. BergmanM. & S. BergmanM. + A. BergmanM. + A. BermanM. + R. BergmanM. -A. BergmanM. A. BergmanM. And A. BergmanM. BergmanM. Bergman - AM. Bergman - A. BergmanM. Bergman - A.BergmanM. Bergman - M. BergmanM. Bergman / A. BergmanM. Bergman / M. BergmanM. Bergman /A. BergmanM. Bergman A. BergmanM. Bergman, A. BergmanM. Bergman, B. BergmanM. Bergman-A. BergmanM. Bergman-A. BergmannM. Bergman-A.BergmanM. Bergman/ A. BergmanM. Bergman/A. BergmanM. Bregman-A. BregmanM. E A. BergmanM. Et A. BergmanM. Keith - A. BergmanM. Keith-A. BergmanM. U. A. BergmannM. Y A. BergmanM. and A. BergmanM. and A. BermanM. et A. BergmanM. y A. BergmanM.& A. BergmanM.& A.BergmanM.&A. BergmanM.&A.BergmanM.-A. BergmanM.A. BergmanM.A. BurgmanM.Bergman, A.BergmanM.Bergman,A.BergmanM.Bergman-A. BergmanM.Bergman-A.BergmanM.Bergman/A. BergmanM.U. BermannMailyn & Alan BergmanMaliMariln & Alan BergmanMarily & Alan BergmanMarily Bergman-Alan BergmanMarilyn and Alan BergmanMarilyn & A. BergmanMarilyn & Alan BergmanMarilyn & Allan BergmanMarilyn & Allen BergmanMarilyn &Alan BergmanMarilyn + Alan BergmanMarilyn Alan BergmanMarilyn And ALan BergmanMarilyn And Alan BegmanMarilyn And Alan BergmanMarilyn And Alan BergmannMarilyn And Allan BergmanMarilyn Bergman & Alan BergmanMarilyn Bergman - Alan BergmanMarilyn Bergman / Alan BergmanMarilyn Bergman Alan BergmanMarilyn Bergman And Alan BergmanMarilyn Bergman and Alan BergmanMarilyn Bergman, Alan BergmanMarilyn Bergman-Alan BergmanMarilyn Bergman-Alan BergmannMarilyn Bergman/Alan BergmanMarilyn Bergman–Alan BergmanMarilyn Bregman-Alan BregmanMarilyn E Alan BergmanMarilyn Keith (Bergman) And Alan BergmanMarilyn Keith / Alan BergmanMarilyn Keith And Alan BergmanMarilyn Keith-Alain BergmanMarilyn Keith-Alan BergmanMarilyn and Alan BegmanMarilyn and Alan BergmanMarilyn et A. BergmanMarilyn et Alan BergmanMarilyn, A. BergmanMarilyn-Alan BergmanMarulyn and Alan BergmanMarylin & A. BergmanMarylin & Alan BergmanMarylin & Allan BergmanMarylin & Boris BergmanMarylin - A. BergmanMarylin And Alan BergmanMarylin and Alan BergmanMarylin, BergmanMergman, BergmanMerilyn Bergman / Alan BergmanR. & M. BergmanR. & M. BergmannR. Bergman & M. BergmanThe BergmannsThe BergmansА. И М. БергманМэрили И Ален БергманМэрили и Ален БергманMarilyn BergmanAlan BergmanMarilyn Keith + +290092Paul Francis WebsterAmerican lyricist-publisher, b. Dec. 20 1907, New York, NY – d. March, 18 1984, Beverly Hills, CA. +Founder of [l=Webster Music], [l=Webster Music Publication]. +Father of photographer [a=Guy Webster]. + +Needs Votehttps://en.wikipedia.org/wiki/Paul_Francis_Websterhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105098/Webster_Paul_Francishttps://www.songhall.org/profile/Paul_Francis_Websterhttps://www.imdb.com/name/nm0916990/. WebsterA. F. WebsterB. WebsterB.WebsterBob HarrisC. Paul WebsterDesconocemosE.P.F. WebsterF WebsterF. F. WebsterF. P. WebsteF. P. WebsterF. WebbF. WebberF. WebsterF.P. WeberF.P. WebsterF.P.WebsterF.WebsterFain WebsterFrances WebsterFrancisFrancis / WebsterFrancis P. WebsterFrancis Paul WebsterFrancis WebsterFrancis Webster,Francis, WebsterFrancis-WebsterFrancis/WebsterGene WebsterHebsterJ. WebsterJ.F. WebsterK. WebsterP F WebsterP F. WebsterP WebsterP' WebsterP, F, WebsterP, F. WebsterP, Francis WebsterP-F. WebsterP-Francis-WebsterP. F. WebsterP. Francis WebsterP. - F. WebsterP. E. WebsterP. F WebsterP. F.P. F. WebsterP. F. VebsterisP. F. WeberP. F. WebserP. F. WebstarP. F. WebsterP. F. WebsternP. F.WebsterP. Fr. WebsterP. FrancisP. Francis WebsterP. Francis WedsterP. Francis-WebsterP. R. WebsterP. S. WebsterP. VebsterP. W. WebsterP. WebsterP. WegsterP. WelsterP. websterP.-F. WebsterP.E. WebsterP.E.WebsterP.F WebsterP.F. WebsterP.F. WebbP.F. WebberP.F. WeberP.F. WebseterP.F. WebsterP.F. WebstersP.F. WesterP.F. WewbsterP.F.WebsterP.S. WebsterP.W. WebsterP.WebsterPF WebsterPaulPaul WebsterPaul F WebsterPaul F, WebsterPaul F. WebsterPaul F. WetsterPaul F.WebsterPaul Francais WebsterPaul FrancesPaul Frances WebsterPaul Frances, WebsterPaul FrancisPaul Francis EbsterPaul Francis Miller WebsterPaul Francis W.Paul Francis WebaterPaul Francis WeberPaul Francis WebsPaul Francis WebserPaul Francis WebstePaul Francis WesterPaul Francis-WebsterPaul Frank WebsterPaul Françis WebsterPaul HebsterPaul P. WebsterPaul Samuel WebsterPaul WebsterPaul-Francis WeberPaul-Francis WebsterPaul. F. WebsterPaul. WebsterPaul.WebsterPaulWebsterPaúl Francis WebsterPoul Francis WebsterR. WebsterR.F. WebsterT. F. WebsterT. Paul FrancisT. WebsterT.F. WebsterT.P.F.WebsterT.Paul FrancisW. FrancisW. WebsterWEbsterWbsterWebberWeberWebesterWebeterWeborekWebserWebstenWebsterWebster P FWebster P. FrancisWebster Paul FrancisWebster, J.F.Webster, P.Webster, P.F.Webster-FrancisWebster.WebsternWebterWebtserWedsterWeibsterWelsterWelterWessterWesterWevsterYarburgp f websterp f wensterП. ВебстерП. УэбстерП. Ф. ВебстерП. Ф. УэбстерПол УебстърУэбстерФ. ВебстерФ. УэбстерЭ. Уэбстерⓟ F. Webster + +290093Sammy FainSamuel E. FeinbergAmerican composer of popular music (AKA Sam E. Fein) and occasional vocalist. +Born: 17 June 1902 in NYC, New York, USA. +Died: 6 December 1989 in Los Angeles, California, USA (aged 87). + +Fain worked extensively in collaboration with [a=Irving Kahal]. Together they wrote classics such as "Let A Smile Be Your Umbrella". Another lyricist who collaborated with Fain was [a=Lew Brown], with whom he wrote "That Old Feeling". His Broadway credits also include "Everybody's Welcome", "Right This Way", "Hellzapoppin'", "I'll Be Seeing You", "Flahooley", "Ankles Aweigh", "Christine", and "Something More". + +Fain also composed music for more than 30 films in the 1930s to 1950s. He was nominated for the best Original Song Oscar nine times, winning twice, with "Secret Love" from "Calamity Jane" in 1954 and with "Love Is A Many-Splendored Thing" from the movie of the same title in 1955. Fain wrote the second theme to the TV series "Wagon Train" in 1958, which was called "(Roll Along) Wagon Train". He co-wrote both songs with [a=Paul Francis Webster], another long-time collaborator. + +He also contributed to the song scores for the animated films "[r=1912661]" (1951), and other Walt Disney films "Peter Pan" (1963), and "The Rescuers" (1977). + +Fain died of a heart attack in Los Angeles, California, and is interred at Cedar Park Cemetery, in Emerson, New Jersey. + +Inducted into the Songwriters Hall Of Fame in 1972. +Needs Votehttps://www.imdb.com/name/nm0006066/https://www.songhall.org/profile/Sammy_Fainhttps://www.britannica.com/biography/Sammy-Fainhttps://disney.fandom.com/wiki/Sammy_Fainhttps://en.wikipedia.org/wiki/Sammy_Fainhttps://www.ibdb.com/broadway-cast-staff/sammy-fain-11649https://www.findagrave.com/memorial/6460691/sammy-fainhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106808/Fain_SammyA. FainCainDammy FainF. FainF. FairFahnFaiFaimFainFain SammyFain, S.Fain, SammyFaineFaingFairFaithFalnFameFanFaniFarnFayFayneFeinFeinsFineFoinFreinG. FainGainK. S. FainPainPaineS . FainS FainS FeinS Lee FainS, FainS. FainS. FaimS. FainS. FaineS. FainsS. FairS. FaithS. FaneS. FeinS. FineS. FishS. HainS. SainS. フェインS.FainSFainSainSam E. FainSam FainSamme FainSammySammy - FainSammy BainSammy FaimSammy Fain (The Crooning Composer)Sammy Fain-ChloeSammy FaineSammy FairSammy FallSammy FaynSammy FayneSammy FeinSammy FeinbergSammy FineSammy FrainSammy SainSammy, FainSammy-FainSamuel E. FeinbergSamuel FainSamuel FeinbergSamy FainSanny FainStyneSummy FainSunny FainSunny Feinfains fainС. ФайнС. ФейнФаинФайнФейнФејнФэйнס. פייןサミィ・フェインサミイフェインサミー・フェイン + +290370Howard Johnson (3)Howard Lewis JohnsonHoward Johnson (born August 7, 1941, in Montgomery, Alabama; died January 11, 2021 in New York City) is an American musician, mainly known for his work with tuba and baritone saxophone, although he plays also bass clarinet, other reed instruments, cornet and penny whistle. + +[b]Note![/b] Do not mistake with [a=Howard Johnson (6)], a swing alto saxophonist. +Needs Votehttps://en.wikipedia.org/wiki/Howard_Johnson_(jazz_musician)http://hojozone.com/H. JohnsonHoward JohnsinHoward JohnstonHoward JohnstoneJohnsonGil Evans And His OrchestraThe George Gruntz Concert Jazz BandThe Jazz Composer's OrchestraThe Little Big HornsGerald Wilson OrchestraThe NDR Big BandRahsaan Roland Kirk & The Vibration SocietyJack Dejohnette's Special EditionThe Saturday Night Live BandThe Muhal Richard Abrams OrchestraLabamba's Big BandMario Pavone SextetThe Monday Night OrchestraBill Dixon 7-TetteMcCoy Tyner Big BandGeorge Russell OrchestraThe RCO All-StarsLiberation Music OrchestraFrank Strozier SextetCharles Mingus OctetPer Husby OrchestraHoward Johnson & GravityThe 360 Degree Music ExperienceCharles Tolliver Big BandHoward Johnson's NubiaJazz Baltica EnsembleOrange Then BlueMarty Ehrlich Large EnsembleThe Levon Helm BandGeorge Gee Big BandRosi Hertlein's Improvising Chamber Ensemble + +290531The Corporation (2)In order to prevent the creation of new superstar producers, like Holland-Dozier-Holland, Gordy credited writing and production on (mainly, but not exclusively) Jackson 5 records (and related solo projects and constellations) to "The Corporation".Needs Votehttp://en.wikipedia.org/wiki/The_Corporation_%28record_production_team%29"The Corporation""The Corporation" TM"The Corporation" ™"The Corporation"™"The Corporation™"Barry Gordy Jr. / James Mizell / James Perren / Deke RichardsBerry/Alphonso/Frederick DekeCorporationCorporation T.M.Corporation TMF. Perren, F. Mizell, D. Richards, B. GordyFreddie Perren, Alphonso Mizell, Bery Gordy & Deke RichardsFreddie Perren, Berry Gordy Jr., Deke Richards, Alphonso MizellFreddie Perren, Fonce Mizell, Deke Richards, Berry GordyFreddie Perren/Fonce Mizell/Deke Richards/Berry GordyGordy/Mizell/Perren/RichardsTM The CorporationThe CompanyThe Coporation "TM"The Corporatim TMThe CorporationThe Corporation "TM"The Corporation (TM)The Corporation (Tm)The Corporation (tm)The Corporation - TMThe Corporation T. M.The Corporation T.M.The Corporation TMThe Corporation TM (Freddie Perren, Alphonso Mizell, Berry Gordy, Deke Richards)The Corporation TM - Freddie Perren/Alphonso Mizell/Berry Gordy/Deke RichardsThe Corporation TmThe Corporation [™]The Corporation tmThe Corporation ™The Corporation-TMThe Corporation™The Corporation™*The Corporation™: Deke Richards - Freddie Perren - Alphonso Mizell - Berry GordyThe Corporation™: Deke Richards / Freddie Perren / Alphonso Mizell / Berry GordyThe, Corporation (TM)Fonce MizellFreddie PerrenBerry GordyDeke Richards + +290546Brian LynchBrian LynchAmerican trumpeter, born 12 September 1956 in Urbana, Illinois, USANeeds Votehttps://web.archive.org/web/20190802125826/http://brianlynchjazz.com/https://web.archive.org/web/20200807132155/https://books.discogs.com/credit/498360-brian-lynchhttps://myspace.com/brianlynchjazzhttps://en.wikipedia.org/wiki/Brian_Lynch_(musician)B. LynchBr. LynchBrian LinchBryan LynchLynchJames White & The BlacksArt Blakey & The Jazz MessengersThe Herb Robertson Brass EnsembleThe Phil Woods QuintetThe Brian Lynch QuartetToshiko Akiyoshi Jazz OrchestraDave Stahl BandBrian Lynch SextetNicolas Hafner SwisstetMessage (9)The Brian Lynch/Eddie Palmieri ProjectJim Snidero QuintetBrian Lynch QuintetTed Rosenthal QuintetThe New York Comes To Groningen EnsembleBrian Lynch Afro Cuban Jazz OrchestraSteve Gilmore Jazz SextetMichele Franzini QuartetBrian Lynch and Spheres Of InfluenceBye-Ya!Rick Germanson QuintetRoberto Magris SextetBrian Lynch Latin Jazz SextetBill Kirchner NonetRalph Peterson & The Messenger LegacySouth Florida Jazz OrchestraBrian Lynch / Tomonao Hara Quintet + +290579Sonny TerrySaunders TerrellBlind American blues harmonica player and vocalist. He primarily played in the Piedmont blues style but also appeared in numerous folk music collaborations with the likes of [a=Pete Seeger] and [a=Woody Guthrie]. He is most known for performing as a duo with guitarist [a=Brownie McGhee]. + +Born: October 24, 1911 (Greensboro, Georgia, United States) +Died: March 11, 1986 (Mineola, New York, United States)Needs Votehttps://en.wikipedia.org/wiki/Sonny_Terryhttps://adp.library.ucsb.edu/names/346623https://www.allmusic.com/artist/sonny-terry-mn0000039661Blind Son TerryBlind Sonny TerryJoe TurnerS TerryS. TerryS. terryS.TerrySanders TerrySaunders "Sonny" TerrySaunders Sonny TerrySaunders TerrellSaunders TerrySonnnySonnySonny "Hootin'" Terry & His HarmonicaSonny 'Hootin' TerrySonny Terry (Blind Boy Fuller's Harmonica Player)Sonny Terry (Sanders Terrell)Sonny Terry And His HarmonicaSounder Sonny TerryTerryTerry, S.terryСонни ТерриSanders TerrySaunders TerrellBrother George And His Sanctified SingersSonny Terry & Brownie McGheeThe Hawks (2)The Union BoysSonny Terry's Washboard BandWashboard BandSonny Terry TrioSonny And JayceeBrownie McGhee And His Jook Block BustersSonny Terry & His Buckshot FiveSonny "Hootin'" Terry & His Night OwlsBlues X Four + +290581Big Joe WilliamsJoseph Lee WilliamsBorn : October 16, 1903 // Crawford, MS, United States +Died : December 17, 1982 // Macon, MS, United States + +Joseph Lee Williams, billed throughout his career as Big Joe Williams, was an American Delta blues guitarist, singer and songwriter, notable for the distinctive sound of his nine-string guitar. Performing over four decades, he recorded such songs as "Baby Please Don't Go" ([a=Joe Williams' Washboard Blues Singers]), "Crawlin' King Snake", and "Peach Orchard Mama" for a variety of record labels, including Bluebird, Delmark, Okeh, Prestige and Vocalion. + +Williams was inducted into the Blues Hall of Fame on October 4, 1992. +Needs Votehttp://en.wikipedia.org/wiki/Big_Joe_Williamshttp://www.wirz.de/music/willjfrm.htmhttps://www.imdb.com/name/nm3085340/https://adp.library.ucsb.edu/names/103396"Big" Joe Williams"Jackson" Joe Williams"Poor" Joe Williams'Big' Joe WilliamsB. J. WilliamsB.J WilliamsB.J. WilliamsBig Country Joe WilliamsBig J. W.Big J. WilliamsBig Jo WilliamsBig JoeBig Joe Joe WilliamsBig Joe William'sBig Joe Williams & His 9-String GuitarBig Joe Williams and His 9 String GuitarBig Joe WilliamsonG. WilliamsJ L WilliamsJ WilliamsJ. L. WilliamsJ. WIlliamsJ. WillamsJ. WilliamsJ.L. WilliamsJ.WilliamsJ.WillimasJoe Lee WilliamsJoe Lee WilamsJoe Lee WillamsJoe Lee WilliamJoe Lee WilliamsJoe TurnerJoe WIlliamsJoe WilliamJoe WilliamsJoe Williams And His 12-String GuitarJoe Williams And His 9 String GuitarJoe Williams And His 9-String GuitarJohn Lee WilliamsJoseph L. WilliamsJoseph Lee 'Big Joe' WilliamsJoseph Lee WilliamsJoseph WilliamsLee Joseph WilliamsMississippi Big Joe WilliamsPo Joe WilliamsPo' Joe WilliamsPoor Joe WilliamsWIlliamsWilliamWilliamsWilliams, Joseph LeeWilliamson«Poor» Joe WilliamsБиг Джо УильямсJoe Williams' Washboard Blues SingersYank Rachell And His Tennessee Jug-BustersBlues X FourBig Joe Williams Trio + +290582Lightnin' HopkinsSamuel John HopkinsAmerican country blues singer, songwriter and guitarist. +Born: 15 March 1912, Centerville, Leon County, Texas, USA. - Died: 30 January 1982, Houston, Texas, USA. + +In 1920, Hopkins met the legendary [a=Blind Lemon Jefferson] at a social function and got a chance to play with him. + +His cousin was [a=Texas Alexander]. While they were playing together in Houston in 1946, he was discovered by Lola Anne Cullum of Los Angeles' [l=Aladdin Records]. Hopkins first recorded with pianist Wilson Smith and the pair were dubbed 'Lightning' & 'Thunder' to add some dynamic to their marketing. + +Strong recordings followed from Hopkins, such as his song "Mojo Hand" (1960). He later inspired many artists such as [a=Jimmie Vaughan], [a=Townes Van Zandt] and [a=Ron "Pigpen" McKernan]. + +Often miscredited for writing the 1954 [a=Chuck Willis]' song "I Feel So Bad" covered by [a=Little Milton] and [a=Elvis Presley] among others. He also wrote a song by the same name released in 1947 on [l=Aladdin (6)] and in 1962 on [l=Imperial].Needs Votehttp://en.wikipedia.org/wiki/Lightnin'_Hopkinshttps://www.allmusic.com/artist/lightnin-hopkins-mn0000825208http://www.newworldencyclopedia.org/entry/Lightnin%27_Hopkinshttps://www.imdb.com/name/nm0394222/https://lightninhopkins.bandcamp.com/https://adp.library.ucsb.edu/names/104057https://www.wirz.de/music/hopkins.htm"Lightening" Hopkins"Lightnin" Hopkins"Lightnin' " Hopkins"Lightnin'" Hopkins"Lightning""Lightning" HopkinsE. HoplinsHollinsHopkinsHopkins, LightninHopkins, SamJohn HopkinsL HopkinsL. HopkinsL.H.Lightening HopkinsLightening Hopkins And His GuitarLightin' HopkinsLightining HopkinsLightnig HopkinsLightnin HopkinsLightnin'Lightnin' Hopkins & FriendsLightnin' Hopkins And His GuitarLightnin' Hopkins and his GuitarLightnin' Sam HopkinsLightnin's HopkinsLightningLightning HopkinsLightning Hopkins And His GuitarLightnin’ Hopkins And His GuitarMr. Lightnin'S HopkinsS. "Lighting" HopkinsS. "Lightnin' Hopkins"S. "Lightnin'" HopkinsS. 'Lightnin' HopkinsS. (Lightnin') HopkinsS. ,,Lightnin' ' HopkinsS. HopkinsS. L. HopkinsS. Lightnin' HopkinsS.L. HopkinsS.L. Lightning HopkinsSamSam "Lightin" HopkinsSam "Lightnin" HopkinsSam "Lightnin' " HopkinsSam "Lightnin' Hopkins"Sam "Lightnin'" HopkinsSam "Lightnin;" HopkinsSam "Lightning" HopkinsSam "Lightnin´" HopkinsSam 'Lightnin' HopkinsSam 'Lightnin'' HopkinsSam (Lightnin') HopkinsSam (Lightning) HopkinsSam HawkinsSam HopkinSam HopkinsSam John "Lightnin'" HopkinsSam Lighnin' HopkinsSam Lightnin HopkinsSam Lightnin' HopkinsSam Lightning HopkinsSam Lightnin’ HopkinsSam" Lightning" HopkinsSame 'Lightnin' HopkinsSamuel Lightnin' HopkinsSan HopkinsSon "Lightning" HopkinsThe Great Sam "Lightnin'" HopkinsThe Great Sam "Lightnin'" Hopkins*Дж. ХоокинсСэм "Лайтнин" Хопкинсライトニン・ホプキンスDwight (3)Thunder 'N' Lightnin'The Hopkins BrothersBlues X Four + +290601Maria CallasΆννα Μαρία Σοφία Καικιλία Καλογεροπούλου (Maria Anna Cecilia Sophia Kalogeropoulos)Greek-American operatic soprano, born in New York on 2 December 1923, died in Paris on 16 September 1977. Her musical and dramatic talents led to her being hailed as La Divina. +She was married to Giovanni Battista Meneghini between 1949–1959.Needs Votehttps://www.mariacallasmuseum.org/https://en.wikipedia.org/wiki/Maria_Callashttps://www.imdb.com/name/nm0006568/AminaCallasLa CallasM. CallasM. M. CallasM. Meneghini CallasM. Meneghini-CallasM.CallasMaria CallasováMaria Menegheni CallasMaria Meneghini CallasMaria Meneghini-CallasMaria-Meneghini CallasMario CallasMaría CallasMaría Meneghini CallasThe Young CallasΜαρία ΚάλλαςМ. КалласМариа КалласМария КалласМария КаллассМария Менегини Калласカラス(マリア)マリア・カラス卡拉絲Nina Foresti + +290874Al McKibbonAlfred Benjamin McKibbonAmerican jazz bassist, born 1 January 1919 in Chicago, Illinois, USA and died 29 July 2005 in Los Angeles, California, USA +Needs Votehttp://en.wikipedia.org/wiki/Al_McKibbonhttps://www.bluenote.com/artist/al-mckibbon/https://www.allmusic.com/artist/al-mckibbon-mn0000509653/biographyhttps://adp.library.ucsb.edu/names/330772A. McKibbonAl KibbonAl MacKibbonAl Mc KibbonAl Mc. KibbonAl McKibbenAl MckibberAl MckibbonAl MoKibbonAl. McKibbonAlfred B. McKibbonAlfred Mc KibbonAlfred McKibbonMcKibbonЭл МаккиббонCannonball Adderley SextetThe Cannonball Adderley QuintetDizzy Gillespie And His OrchestraThe Thelonious Monk QuintetThe George Shearing QuintetDizzy Gillespie Big BandJ.C. Heard And His OrchestraRussell Garcia And His OrchestraThelonious Monk TrioThe AquariansCal Tjader QuintetLeonard Feather All StarsThe Miles Davis NonetJazz On The Latin Side AllstarsThe Sonny Criss OrchestraJohnny Hodges And His OrchestraCal Tjader SextetColeman Hawkins' 52nd Street All StarsTerry Gibbs QuintetMiles Davis & His Tuba BandEmil Richards' Yazz BandHerbie Nichols TrioThe Giants Of Jazz (2)Caravana CubanaDickie Wells' Big SevenDizzy Gillespie's Cool Jazz StarsMilton Jackson And His New GroupJATP All StarsNeal Hefti And His Jazz Pops OrchestraJo Jones All Stars + +290876Joe ShulmanJoseph ShulmanAmerican jazz bassist +Born September 12, 1923 in New York City, New York, USA, died August 02, 1957 in New York City, New York, USA (heart attack) +Joe was the husband of jazz pianist and vocalist [a665631]. +Needs Votehttp://en.wikipedia.org/wiki/Joe_ShulmanCpl. Joe ShulmanJ. SchulmanJ. ShulmanJoe SchulmanJosh SchulmanJosz SchulmanJosz ShulmanShulmanY. (3)Miles Davis And His OrchestraBuddy Rich And His OrchestraClaude Thornhill And His OrchestraThe Miles Davis NonetJazz Club Mystery Hot BandLester Young And His OrchestraBarbara Carroll TrioBilly Strayhorn TrioWoody Herman's Four Chips + +291257Michael KunzeGerman producer, songwriter, librettist and writer born 09 November 1943 in Prague, Czechoslovakia (now Czech Republic).Needs Votehttps://www.michaelkunze.info/http://storyarchitekt.com/https://en.wikipedia.org/wiki/Michael_Kunzehttps://de.wikipedia.org/wiki/Michael_Kunze_%28Librettist%29D. T. KunzeDr. Kunze MichaelDr. M. KunzeDr. Michael KunzeDr. Michael kunzeElisabeth 2J. KunzeKK.K. KunzeKUnzeKiller/KunzeKonzeKundeKune, MichaelKuntzeKunzKunzeKunze M.Kunze MichaelKunze Michael Dr.Kunze, MichaelKunze-KillerKunze/KillerKunzellbachKünzeLiunzeM KunzeM KunzelM. KunzeM. KuntzeM. KunzM. KunzeM. Kunze-KillerM. KunzelM. KunzerM. KurtzeM.KunzM.KunzeM.l KunzeMichaelMichael KuntzeMichael Kunze Michael Dr.Michael KünzeMichale KunzeMichaël KunzMichaël KunzeMichel KunzeMikael KunzeS.K.ZunzeMario KillerStephan PragerAdrian Leverkühn + +291337Jim CroceJames Joseph CroceJim Croce (born January 10, 1943, Philadelphia, Pennsylvania, USA - died September 20, 1973, Natchitoches, Louisiana, USA) was an American singer and songwriter. He tragically died in an airplane crash at the age of 30. Father of [a=A.J. Croce], spouse of [a795620]. +Needs Votehttp://www.jimcroce.com/http://en.wikipedia.org/wiki/Jim_Crocehttps://www.allmusic.com/artist/jim-croce-mn0000848034CroceCrocheCroseGroceJ CroceJ. CroceJ. CroceJ. CrocheJ. CroseJ. CrossJ. GraceJ. GroceJ.CroceJames CroceJames J. CroceJames Joseph CroceJay SeaJim CorceJim CroceeJim CrocheJim CroseJim GroceJim KruseeДжим Крошג'ים קרוצ'יジム・クロウチ짐 크로치Jim & Ingrid CroceThe Spires (4)Coventry LadsThe Villanova Singers + +291443Jill CrowtherJill CrowtherBritish oboe and cor anglais player, born in Rotheram, South Yorkshire, England, UK. +She studied at the [l459222]. She has performed with the [a=English Northern Philharmonia]. When she moved to London, she was appointed Principal Cor Anglais with the [a=Royal Ballet Sinfonia], and subsequently became a member of the [a=Royal Philharmonic Orchestra]. She joined the [a=Philharmonia Orchestra] in 2001 becoming its Principal Cor Anglais. Regular recording musician with the ensemble known as [a=In The Nursery]. Professor of Cor Anglais at the [l=Royal Academy Of Music].Needs Votehttps://www.feenotes.com/database/artists/crowther-jill/https://philharmonia.co.uk/bio/jill-crowther/Royal Philharmonic OrchestraPhilharmonia OrchestraEnglish Northern PhilharmoniaRoyal Ballet Sinfonia + +291751George Thomasb. 28 June, 1902 +d. 26 October, 1930 + +Clarinetist, alto, tenor saxophone player and sometimes vocalist active in the 1920's and 1930. +Needs Votehttps://en.wikipedia.org/wiki/Joe_Thomas_(tenor_saxophonist)G. ThomasGTGeo. ThomasGeorge "Fathead" ThomasGeorge 'Fathead' ThomasGeorge 'Soul' ThomasThomasMcKinney's Cotton PickersThe Chocolate DandiesThe Big Aces + +292013Seppo PaakkunainenSeppo Toivo Juhani PaakkunainenFinnish jazz musician and composer, born October 24, 1943 in Tuusula, Finland. His main instrument is baritone saxophone, and he is best known for fusing jazz with ethnic music.Needs Vote"Baron" Paakkunainen"Paroni" PaakkunainenA1BaronBaron PaakkunainenBaron Seppo PaakkunainenBaron, Seppo PaakkunainenBáron, Seppo PaakkunainenLe Baron Seppo PaakkunainenP. PaakkunainenPPPaakkunainenParoniParoni PaakkunainenParoni PaakunainenParoni PakkunainenParooni PaakkunainenS. PaakkunainenS.P.Seppo "Baron" PaakkunainenSeppo "Báron" PaakkunainenSeppo "Le Baron" PaakkunainenSeppo "Paroni" PaakkunainenSeppo "Paroni" Paakkunainen YhtyeineenSeppo "Parooni" PaakkunainenSeppo 'Baron' PaakkunainenSeppo 'Paroni' PaakkunainenSeppo 'Parooni' PaakkunainenSeppo *Baron" vPaakkunainenSeppo Baron PaakkunainenSeppo Báron PaakkunainenSeppo Paroni PaakkunainenSeppo Toivo Juhani PaakkunainenArmas NukarainenKenny ReedParoni Von KlümpenfrauGerry Atric (2)"Easy" SharpJustin TuneFred FridayJ. PetradaPehmeä UnisThe George Gruntz Concert Jazz BandHeikki Sarmanto Big BandThe Otto Donner TreatmentUnisonoSoulsetKarelia GroupNunnu Big BandJussi & The BoysViisi Vierasta MiestäUtopia (13)Esko Linnavalli SextetLevynhävittäjät YhtyeLauluyhtye Pallilla KuiskatenOrkesteri OivaThe Islanders (5)Eero Ja Jussi & The BoysParoni Paakkunaisen YhtyeTikanpojatBlack Flag Of UtopiaSeppo Paakkunaisen OrkesteriTrio BaronTrio Nueva FinlandiaSaxperimentBaron's Buffet Prestige Saxophone QuartetEero & The BoysEdward Vesala Jazz BandMatti Oiling Happy Jazz BandEnsemble BraxtoniaParonin PumppuConjunto BaronÁillohaččatKardemumman Orkesteri Ja KuoroThe Winners (6)Nordic All-StarsGoodmansTuohi KlangKaj Backlund Big BandKalmiston KlangiTuohi QuartetDick Dynamite And His Hot LipsDopplerin IlmiöMike Koskinen OrchestraEdward Vesala Ensemble + +292670John Cameron (2)British composer, arranger and conductor, born March 29, 1944 in Essex, UK. + +Do NOT confuse with US soul arranger [a=Johnny Cameron] mostly associated to artists from Chicago, IL.Needs Votehttps://www.johncameronmusic.com/https://www.instagram.com/johncameronmusic/https://en.wikipedia.org/wiki/John_Cameron_%28musician%29https://www.imdb.com/name/nm0131624/CameronCamerónCâmeronDon CameronJ CameronJ. CameronJ.CameronJames CameronJay CameronJohnR. CameronキャメロンJohn Cameron QuartetCCSFrog (6)The John Cameron OrchestraKPM All-StarsThe John Cameron Big BandThe John Cameron Group + +292742Helen TunstallLondon born harpist and professor. +She studied at the [l290263]. Principal Harp of the [a=London Sinfonietta], [a=Endymion Ensemble] and [a=The Orchestra Of St. John's] Smith Square. Freelances with all the major London orchestras. She is a top London studio player recording classical, contemporary, film, TV and commercial music. +Professor of Harp at the [l527847] and [l305416].Needs Votehttps://www.youtube.com/channel/UC-gr8Al3w7VV7PIbivm1jTwhttps://londonsinfonietta.org.uk/players/helen-tunstallhttps://www.endymion.org.uk/about/helen-tunstall-harp/https://www.ram.ac.uk/people/helen-tunstallhttps://www.imdb.com/name/nm0876693/https://vgmdb.net/artist/22872?tab=Royal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraEndymion EnsembleThe Orchestra Of St. John'sParnassus Ensemble of London + +292808Derek SmithDerek Smith (born August 17, 1931, London, England, UK - died August 2016) was an English-born American jazz pianist.Needs Votehttps://en.wikipedia.org/wiki/Derek_Smith_(musician)D. SmithDerek Geoffrey SmithDerek Smith QuartetDerex SmithSmithSmith Derek GeoffreyDerek And RayBenny Goodman SextetBenny Goodman And His OrchestraThe Nick Brignola SextetLouie Bellson Big BandBuddy DeFranco QuintetDerek Smith TrioNew Jazz GroupTommy Whittle QuintetMike Bryan And His SextetLouie Bellson And His Jazz OrchestraBill Watrous QuartetArnett Cobb QuartetMel Davis SextetHarry Klein QuartetThe Danny Stiles FiveSal Salvador SextetThe Trio (16)The George Masso SextetDerek Smith QuartetCarmen Leggio QuartetThe Jersey SwingersThe Three Deuces MusiciansDick Meldonian And His OrchestraDick Meldonian QuartetThe Phil Bodner QuartetRay Turner QuartetButch Miles SeptetThe Fisher Fidelity Standard Jazz Band + +292995John OreJohn Thomas OreAmerican jazz bassist, born December 17, 1933 in Philadelphia, died August 22, 2014. +Played with Tiny Grimes 1953, George Wallington 1954, Ben Webster, Elmo Hope 1955, and Bud Powell 1955, 1957, 1964-1965. Joined Thelonious Monk in 1960, stayed until 1963. +With [a=The Sun Ra Arkestra] off and on since 1961. +Needs VoteJ. OreJohn OrrЏон Орジョン・オリCharles Tyler EnsembleThe Thelonious Monk QuartetSun Ra SextetThe Kenny Dorham QuintetLester Young And His OrchestraThe Sun Ra ArkestraElmo Hope TrioElmo Hope QuintetElmo Hope QuartetTullio Ricci Quartet + +292996Joe GordonJoseph Henry GordonAmerican jazz trumpeter, born May 15, 1928 in Boston, Massachusetts, died November 4, 1963 in Santa Monica, California +Gordon started playing professionally in Boston in 1947. During his career he played with Georgie Auld, Charlie Mariano, Lionel Hampton, Charlie Parker (1953-1955 intermittently), Art Blakey (1954), Don Redman, Dizzy Gillespie (on tour, 1956), Horace Silver, Barney Kessel, Benny Carter, Harold Land, Shelly Manne (1958-1960), Dexter Gordon, and many others. +He recorded two albums under his own name, "Introducing Joe Gordon" (1955) and "Lookin' Good!" (1961). +He died tragically in a house fire having fallen asleep with a lit cigarette. +Needs Votehttps://en.wikipedia.org/wiki/Joe_Gordon_(musician)GordonJ. GordonDizzy Gillespie And His OrchestraThe Horace Silver QuintetShelly Manne & His MenBarney Kessel SeptetJimmy Woods Quintet + +293018Maurice PeressAmerican trumpeter and conductor, born 18 March 1930 in New York City, New York, USA; died 31 December 2017.Needs Votehttps://en.m.wikipedia.org/wiki/Maurice_PeressNew York Philharmonic + +293069Ralph BurnsAmerican pianist, arranger, composer and bandleader. +Born June 29, 1922 in Newton, Massachusetts, USA. +Died November 21, 2001 in Los Angeles, California, USA. + +He won an Academy Award for [i]Cabaret[/i] in 1972. He also arranged, orchestrated and composed music for [i]Lenny[/i], [i]New York, New York[/i], [i]All That Jazz[/i], and many other movies. +Burns was a classically trained musician. He was a student at the New England Conservatory of Music in his late teens. He did yeoman service for [a239399] in one or another his skilled capacities for nearly fifteen years.Needs Votehttps://en.wikipedia.org/wiki/Ralph_Burnshttps://jazzprofiles.blogspot.com/2018/04/ralph-burns-fine-art-of-jazz.htmlhttp://www.jazzprofessional.com/memorial/RalphBurns.htmhttps://www.imdb.com/name/nm0005985/https://adp.library.ucsb.edu/names/201316BarnsBurnsBurusFrank BurnsR BurnsR. BurnesR. BurnsR. J. BurnsR.BurnsRalph BirnsRalph J. BurnsRalph O'BurnsRolf BurnsThe Free Forms AlbumР. БёрнсР.БернсРалф БернсLes Brown And His Band Of RenownWoody Herman And His OrchestraWoody Herman & The New Thundering HerdSauter-Finegan OrchestraWoody Herman & The Young Thundering HerdRalph Burns QuintetFlip Phillips And His HiptetWoody Herman & The HerdSerge Chaloff-Ralph Burns SeptetWoody Herman And His WoodchoppersThe V-Disc All StarsRalph Burns And His OrchestraChubby Jackson's OrchestraFlip Phillips FliptetBill Harris & His New MusicWoody Herman And His Third HerdWoody Herman's Four ChipsSonny Berman's Big EightBill Harris SeptetThe HerdmenWoody Herman StarsVanderbilt StarsWoody Herman & The Second HerdVanderbilt All StarsBill Harris Big EightThe Band That Plays The BluesRalph Burns And His EnsembleCharlie Ventura/Bill Harris QuintetRalph Burns And The Quiet HerdChubby Jackson Septet + +293080Jerry RagovoyJordan RagovoyAmerican songwriter and record producer. +Among his compositions, he wrote classics like [i]Time Is On My Side[/i] (1963, under the pseudonym [a711714]) and [i]Piece Of My Heart[/i] (1967). Founder and original owner of the [l=The Hit Factory] complex in 1968, which he sold to [a=Edward Germano] in March 1975. + +Born: September 4, 1930 in Philadelphia, Pennsylvania +Died: July 13, 2011 in Manhattan, New YorkNeeds Votehttp://en.wikipedia.org/wiki/Jerry_RagovoyDoctor RagavoyDoctor RagovoyDr. JerryDr. Jerry RagovoyDr. RagovoyF. RagovoyF. RogovoyFlagovoyG. RagauoyG. RagavoyG. RagovoyGerry RagavoyGerry RegovoyI. RagovoyJ RagavoyJ RagovoyJ, RagovoyJ. GagavoyJ. RabovoyJ. RacovoyJ. RaganovJ. RagareyJ. RagaudyJ. RagavayJ. RagavovJ. RagavoyJ. RagawoyJ. RagoroyJ. RagovayJ. RagovojJ. RagovoryJ. RagovovJ. RagovoyJ. RagoyoyJ. RaovoyJ. RogogovJ. RogovoyJ.RagavoyJ.RagovovoyJ.RagovoyJ/ RagovoyJ; RagavoyJerryJerry "Rags" RagavoyJerry "Rags" RagovoyJerry RacovoJerry RaganovJerry RagaovoyJerry RagavayJerry RagavoyJerry RagavoyaJerry Rago VoyJerry RagovayJerry RagovojJerry RagovoyJerry Ragovoy a.k.a. Norman MeadeJerry RagovyJerry RagowayJerry RajovoyJerry RegavoyJerry RegovoyJerry RogogovJerry RogovoyJordan "Jerry" RagovoyJordan RagovoyKerry RagavoyKerry RagovoyM. RagvoyMeadeMeade AKA Jerry RagovoyMeade aka Jerry RagavoyMeade aka Jerry RagovoyNorman MeadePagowoyR. RagovoyRaGovoyRabovogRabovoyRacovoyRagaovoyRagavcyRagavovRagavoyRagawayRagawoyRageveyRagoboyRagoroyRagoudyRagovayRagovdyRagoveyRagovogRagovoyRagovoy, JerryRagovyRagowayRagowbyRagowoyRasovayRavagoyRegavoyRegovoyRhgovoyRogavoyRogawayRogoveyRogovogRogovoyRogowayT. RagavoyT. RagovoyTerry RagavoyNorman MeadeNorman Margulies + +293252Billy PierceWilliam Watson Pierce Jr.American jazz saxophonist, born September 25, 1948 in Hampton, Virginia, USA.Needs Votehttps://billypierce.bandcamp.com/Bill PierceBillie PierceBilly PearceBilly PieraPierceビリー・ピアースArt Blakey & The Jazz MessengersJames Williams SextetBill Mobley SextetJohn Swana QuintetThe James Williams QuartetSuperblue (2)Billy Pierce QuartetJames Williams & ICUChris McCann-Billy Pierce TrioGreg Hopkins QuintetBob Kaufman 5tetRalph Peterson & The Messenger Legacy + +293253Bobby Watson (2)Robert Michael Watson Jr.American post-bop jazz alto saxophonist, composer, producer, and educator, born 23 August 1953 in Lawrence, Kansas, USA. His father [a=Bob Watson, Sr.] was also a saxophone player.Needs Votehttps://bobbywatson.com/https://bobbywatsonjazz.bandcamp.com/https://vincentherringbobbywatsongarybartz.bandcamp.com/https://en.wikipedia.org/wiki/Bobby_WatsonB. WastonB. WatsonBobbyBobby J. WatsonBobby WatsonR. WatsonR. WilsonR.W.R.WatsonRobert "Bobby" WatsonRobert (Bobby) WatsonRobert Bobby WatsonRobert M. WatsonRobert M. Watson, Jr.Robert Michael Watson, Jr.Robert WastonRobert WatsonRobert Watson, Jr.Roberts WatsonWatsonボビー・ワトソンKamal & The BrothersArt Blakey & The Jazz MessengersKlaus Ignatzek GroupBobby Watson & Horizon29th Street Saxophone QuartetMingus Big BandThe Leaders (3)Louis Hayes QuintetBobby Watson QuartetSteve Nelson QuintetRobert Watson QuartetJohn Hicks QuartetSam Rivers Winds Of ManhattanThe Horizon QuintetSuperblue (2)Renolds Jazz OrchestraThe Robert Watson SextetPeter Leitch QuintetPeter Leitch SextetThe Notorious EnsembleThe Jazz Tribe (2)Will Calhoun QuintetJack Walrath & Hard Corps + +293352George James (2)US jazz saxophonist (alto, soprano and baritone) and clarinet player from the swing-era. Born : December 07, 1906 in Boggs, Oklahoma. Died : January 30, 1995 in Columbus, Ohio. + +Needs VoteG. JamesGeo. JamesGeorge JamesGeorge James, Alto SaxGeorges JamesTheodore McCordLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraLucky Millinder And His OrchestraBenny Carter And His OrchestraTeddy Wilson OctetThe Harlem Blues & Jazz BandChick Bullock & His Levee LoungersHoward Biggs OrchestraZilner Randolph And His Orchestra + +293707Henk HaverhoekHendrik HaverhoekDutch jazz bassist, born 11 February 1947 in Schoorl, The NetherlandsNeeds VoteD. HoveroeckeH. HaverhoekHaverhoekHenk Ha VerhoekArnold Klos TrioArt Taylor QuartetDexter Gordon QuartetRob Agerbeek TrioEugen Cicero TrioFree Music QuartetThomas Pelzer LimitedRein De Graaff / Dick Vennik QuartetJohnny Griffin/Art Taylor QuartetThe Klaus Flenter TrioDon Friedman / Klaus Flenter Quartet + +293710Jukkis UotilaJukkis Uotila (until 2001 Jukka-Pekka Uotila)Finnish drummer, pianist and composer, born August 23rd, 1960 in Helsinki, Finland.Needs Votehttp://www.jukkis.com/J. UotilaJukka UotilaJukka-Pekka UotilaUotilaUmo Jazz OrchestraVladimir Shafranov TrioChet Baker QuartetBob Rockwell QuartetJukka Linkola OctetNorrbotten Big BandDoug Raney QuartetJussi Lampela NonetJørgen Emborg SeptetDoug Raney QuintetJukkis Uotila BandVladimir Shafranov-Eero Koivistoinen KvartetHeikki Sarmanto QuartetGösta Rundqvist TrioJari Perkiömäki QuartetJoe Bonner QuartetJarmo Savolainen NonetJazz Baltica EnsembleThe Stockholm Jazz OrchestraJarmo Savolainen QuartetTeuvo Siikasaari KvintettiReigo Ahven TrioTapiola Big BandCordeographyAleksi Heinola Quartet + +293803Adam SkeapingAdam Skeaping is an English musician and audio engineer. He mainly plays different early music stringed instruments, such as viola da gamba, violone and rebec. + +Founded [l=The Digital Editing Suite] in the later 1980s, and then set up [l270862] for [l228088] in 1991, with [a683417] and [a80060]. + +Son of [a1042880], brother of [a779780] and brother-in-law of [a=Lucie Skeaping].Needs Votehttps://www.katebushencyclopedia.com/newsite/skeaping-adam/A. SkeapingAdamAdam 'Wonderboy' SkeapingAdam SceapingAdam SkeatingAdam SkeepingEnglish Chamber OrchestraThe Early Music Consort Of LondonThe Academy Of Ancient MusicMusica ReservataEnglish Consort Of Viols + +293913Blondie ChaplinTerence William ChaplinSouth African singer and guitarist. + +Born 7 July 1951 in Durban, KwaZulu-Natal, South Africa + +Terence William 'Blondie' Chaplin is a musician who first became known to international audiences through his brief stint in the early 1970s as a singer and guitarist for the Beach Boys. Chaplin was also listed as a co-producer, sang lead vocals with fellow South African musician Ricky Fataar (drummer) and composed, with Fataar, "Here She Comes" and "Hold On Dear Brother" on the twenty-third official Beach Boys album, "Carl and the Passions - 'So Tough'", released in 1972. He is well known in recent years as a long term backing vocalist and acoustic rhythm guitarist for the Rolling Stones. + +Blondie Chaplin, along with drummer Ricky Fataar, joined the Beach Boys when original drummer Dennis Wilson suffered a hand injury which left him unable to play the drums for almost two years. For the Beach Boys, it was a period in which long-time member Bruce Johnston had departed the band, and one-time leader Brian Wilson's participation in the group was very limited. As a result, Chaplin and Fataar joined the Beach Boys as full-fledged members and not merely as backing musicians. Chaplin left the group in 1973 after a dispute with the Beach Boys' management; Fataar remained with the band until the following year. + +Both Chaplin and Fataar were members of South African rock band the Flame before joining The Beach Boys. The Flame were discovered by Beach Boy Carl Wilson while performing in London. Wilson signed the band to the Beach Boys' Brother Records label and produced their self-titled album which featured soulful rock/pop songs in the vein of The Beach Boys and Badfinger. The Flame were the only band aside from The Beach Boys to record for Brother Records. + +Chaplin sang lead on at least three Beach Boys songs, "Sail On, Sailor," "Leaving This Town" and "Funky Pretty" (all from the 1973 album Holland). During the late 1980s Chaplin toured with The Band, replacing some of Richard Manuel's vocals and playing guitar. Chaplin was also a featured player in former Byrds men Gene Clark and Michael Clarke's new band, titled "The 20th Anniversary Celebration of the Byrds". Chaplin then appeared on the Jennifer Warnes albums The Hunter and The Well. Since the late 1990s and the Bridges to Babylon Tour, Chaplin has been a backing vocalist and occasional guitar player for The Rolling Stones. + +Chaplin has released three solo albums, most recently Between Us in 2006.Needs Votehttps://en.wikipedia.org/wiki/Blondie_ChaplinB ChaplinB. ChaplinB.ChaplinBlondieBlondie "The Nightingale" ChaplinBlondie ChapinBlondie ChapmanChapinChaplinTerence 'Blondie' ChaplinTerence ChaplinWilsonThe Beach BoysThe Flames (6)The Wild Things (7) + +293988Richard LottridgeRichard (Dick) Lottridge is an American bassoonist, born in 1931.Needs VoteDick LottridgeWingra Woodwind QuintetChicago Symphony OrchestraThe New Orleans Symphony + +294300Otis BlackwellAmerican pianist, singer and songwriter whose songs include hits such as "All Shook Up", "Don't Be Cruel", "Fever", and "Great Balls of Fire". He was born on February 16th, 1931 in Brooklyn, New York, USA and died on May 6th, 2002 in Nashville, Tennessee, USA. + +Do not mistake with [a=Robert Blackwell]. + +Inducted into Songwriters Hall of Fame in 1991. +Needs Votehttp://en.wikipedia.org/wiki/Otis_Blackwellhttp://www.rockabilly.nl/references/messages/otis_blackwell.htmA. BlackwellBalckwellBlackBlackellBlackw.BlackweetBlackwelBlackwellBlackwell OBlackwell OtisBlackwell, OBlackwell, OtisBlackwell,OBlackwell/OtisBlackwellvBlackwoodBlacwellBladcellBlakewellBlckwellBleckwellBlockwellC. BlackwellC.BlackwellD. BlackwellE. BlackwellG. BlackwellN. BlackwellO BlackwellO BlakewellO. BlackwellO. BackwellO. Black, WellO. BlackellO. BlackewellO. BlackvellO. BlackwelO. BlackwellO. BlacwellO. PresleyO.BlackwellOtisOtis - BlackwellOtis BlachwellOtis BlackOtis Black wellOtis BlackswellOtis BlackweelOtis BlackwelOtis Blackwell & His BandOtis Blackwell & His Orch.Otis BlacwellOtis BlanckwellOtis BrackwellOtis C. BlackwellOtis-BlackwellOtis/BlackwellOtits BlackwellOttis BlackwellP. BlackwellR. BlackwellR.BlackwellWellБлекуелБлэквеллاوتيس بلاك ولبلاک ولJohn Davenport + +294393John HicksJohn Josephus Hicks, Jr.American jazz pianist +Born December 21, 1941 in Atlanta, GA, USA, died May 10, 2006 in New York City, NY, USA + +At first being taught piano by his mother, Hicks studied at Lincoln University of Missouri, Berklee College of Music, and the Julliard School. After playing with a number of different people during the early '60s (including [a=Albert King], [a=Oliver Nelson], [a=Grant Green], [a=Johnny Griffin], [a=Pharoah Sanders]) he joined [a=Art Blakey & The Jazz Messengers] in 1964. He then played with [a=Betty Carter] (1965-66) and [a=Woody Herman] (1968-69) among others. + +In the early '70s, he taught jazz history and improvisation at [l=Southern Illinois University] before returning to accompanying Betty Carter. Released his first studio album as leader in 1975 ("Hells Bells") then continued to concentrate on performing solo and in smaller groups, although he also led his own big band and played with [a=Mingus Dynasty]. His first wife was [a=Olympia Hicks], who also recorded with him. He married jazz flutist [a=Elise Wood] (Elise Wood-Hicks) in 2001. +Needs Votehttps://en.wikipedia.org/wiki/John_Hicks_(pianist)https://hickstime.bandcamp.com/HicksJ. HicksJ.HicksJohn "Walk This Way" HicksJohn J. HicksJohnHicksジョン・ヒックスMusic IncArchie Shepp QuartetArt Blakey & The Jazz MessengersWoody Herman And His OrchestraJoe Lovano NonetDavid Murray Power QuartetGary Bartz QuintetJoe Lovano EnsembleDavid Murray QuartetBobby Watson & HorizonMingus DynastyArt Davis QuartetMingus Big BandBetty Carter & TrioThe Michael Rabinowitz QuartetThe Arthur Blythe QuartetThe Alex Blake QuintetPharoah Sanders QuartetThe Bob Thiele CollectiveDavid Murray / James Newton QuintetWoody Herman And The Thundering HerdBobby Watson QuartetRobert Watson QuartetJohn Hicks QuartetNew York UnitEric Alexander QuartetLee Morgan - Clifford Jordan QuintetSonny Simmons QuintetBob Mover QuintetKeystone TrioJohn Hicks TrioThe Notorious EnsembleThe Peter Leitch QuartetThe Ray Appleton SextetJon Hazilla TrioThe Reunion Legacy BandKenny Barron-John Hicks QuartetNew York Rhythm MachineJohn Hicks / Elise Wood QuintetJohn Hicks / Elise Wood QuartetJohn Hicks / Elise Wood DuoJohn Hicks / Elise Wood Trio + +294480Anton WebernAnton Friedrich Wilhelm von WebernAustrian composer and conductor. Born: 1883-12-03 (Vienna, Austria). Died: September 15, 1945 (Mittersill, Austria).Needs Votehttps://www.antonwebern.com/https://www.anton-webern.ch/https://en.wikipedia.org/wiki/Anton_Webernhttps://www.bach-cantatas.com/Lib/Webern-Anton.htmhttps://www.britannica.com/biography/Anton-Webernhttps://www.treccani.it/enciclopedia/anton-webern/A. V. WebernA. Von WebernA. WebernA. WeburnA. v. WebernA.V. WebernA.V.WebernA.WebernAnton (Von) WebernAnton Von WebernAnton WerbernAnton von WebernVon WebernWebernv. WebernА. ВебернАнтон ВебернВебернウェーバー + +294491Chick WebbWilliam Henry WebbAmerican jazz drummer and bandleader. +Born February 10, 1905 in Baltimore, MD, USA. +Died June 16, 1939 in Baltimore, MD, USA. + +Prominent drummers such as [a=Buddy Rich], [a=Gene Krupa], & [a=George Wettling] hailed Chick Webb as the best and most influencial of all the Big Band drummers. He was born with a physical deformity described as TB of the spine. To earn money for his first set of drums at age 11 he worked as a newsboy. By the early 1920s he was playing drums on excursion boats in Baltimore Harbor. He moved to New York where he freelanced. He played with and became lifelong friends with [a=Duke Ellington] . Webb formed his first small band in 1926. Slowly gaining momentum, in 1935 he hired the shy and unsure teen-aged [a=Ella Fitzgerald]. Now headlining at The Savoy Ballroom in Harlem, Chick Webb was no longer an also ran to the likes of Ellington, Fletcher Henderson, or Cab Calloway. In 1938. now with [a=Van Alexander] as his primary arranger, Webb and Ella became national stars with the million seller "A-Tisket, A-Tasket". His final recording was on April 21, 1939. + Also known as Little Chick, Webb had suffered from ill health from birth. His spine was malformed. Peers note that he rarely complained, was "an uncommonly nice man to work with", he "hardly ever became upset when things went wrong", & that he was "very unselfish". Ella Fitzgerald's legal guardian, Chick Webb passed away June 16, 1939 at John Hopkins Hospital in Baltimore with his wife Sally Hart Webb at his side.Needs Votehttps://en.wikipedia.org/wiki/Chick_Webbhttps://www.britannica.com/biography/Chick-Webbhttps://www.drummerworld.com/drummers/Chick_Webb.htmlhttps://www.pas.org/about/hall-of-fame/william-chick-webbhttps://www.swingdreamfactory.com/chick-webb-the-king-of-swing/https://adp.library.ucsb.edu/index.php/mastertalent/detail/104445/Webb_ChickC WebbC. WebbC. webbC.WebbCh. WebbChic WebbChickChick WeppChick WilliamChick William WebChick William WebbChickwebbChik WebbNebbS. WebbThe Chick Webb BandThe Immortal Chick WebbW. H. WebbW. WebbWebbWebb*,WebbeWeberWeebWeeb, C. (William)WeissWilliam "Chick" WebbWilliam Chick WebbWilliam Henry "Chick" WebbWilliam Henry “Chick” WebbWiseЧ. УэббLouis Armstrong And His OrchestraThe Chocolate DandiesChick Webb And His OrchestraMezz Mezzrow And His OrchestraChick Webb And His Little ChicksElla Fitzgerald And Her Savoy EightThe Gotham StompersJim Mundy And His Swing Club SevenChick Webb's Savoy OrchestraThe Jungle Band (3) + +294535Sid FellerSidney Harold FellerBorn December 24, 1916, in New York City; +Died February 16 2006 in Beachwood, Ohio; + +Sid Feller was a trumpet player, orchestra leader, producer and arranger whose 30-year partnership with [a=Ray Charles] produced lushly arranged hits such as “Georgia on My Mind” and “I Can’t Stop Loving You.” + +As the head in-house arranger for [l=Capitol Records] and then [l=ABC Records], Feller also worked with [a=Peggy Lee], [a=Mel Torme], [a=Paul Anka], [a=Steve Lawrence], and [a=Eydie Gorme], and later in his career was the musical arranger for “The [a=Flip Wilson] Show,” and a host of other televised music specials. +Needs Votehttp://articles.latimes.com/2006/feb/23/local/me-feller23http://www.mattmonro.com/spotlightmarch.htmhttps://adp.library.ucsb.edu/names/203125FellerFellnerS FellerS. FellerS.FellerSid FellersSid FollerSid VellerSidney FellerJack Teagarden And His OrchestraSid Feller And OrchestraSid Feller And His "Friends".......[And Enemies]Sid Feller's Orchestra And ChorusSid Feller And His MusicThe Sid Feller Sextet + +294676Caroline DaleCaroline DaleCellist. She played as a concerto soloist with a number of orchestras, including the [url=http://www.discogs.com/artist/London+Philharmonic+Orchestra%2C+The]London Philharmonic Orchestra[/url], [url=http://www.discogs.com/artist/Royal+Philharmonic+Orchestra%2C+The]Royal Philharmonic Orchestra[/url], [b]Royal Liverpool Philharmonic Orchestra[/b], [b]Calgary Philharmonic Orchestra[/b], [url=http://www.discogs.com/artist/English+Chamber+Orchestra]English Chamber Orchestra[/url] and [url=http://www.discogs.com/artist/English+Chamber+Orchestra]London Chamber Orchestra[/url]. +Sister of [a=Miranda Dale]. +Born 1965 in Middlesbrough, England.Correcthttps://en.wikipedia.org/wiki/Caroline_Dalehttps://www.imdb.com/name/nm0197653/Cardine DaleCarolina DaleCarolyn DaleDaleGhostlandThe Balanescu QuartetGavin Bryars EnsembleLondon Metropolitan OrchestraThe London Metropolitan EnsembleScottish EnsembleRobert Farnon And His OrchestraThe New Blood OrchestraThe Chamber Orchestra Of LondonThe Pale Blue Orchestra + +294706Bobby LewisRobert Alan LewisBobby Lewis (Born: February 9, 1925 – Died: April 28, 2020) was an African American rock and roll and R&B singer, Bobby Lewis had one of the biggest songs of the 60's. In July 1961, his recording of "Tossin' and Turnin'" went to No.1 for seven weeks on the Billboard chart. Later that year, he had a second Top Ten song, "One Track Mind", his only other major hit record. +Needs Votehttp://www.tsimon.com/bobbylewis.htmhttp://en.wikipedia.org/wiki/Bobby_Lewishttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=201259&subid=0http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=201258&subid=0B. LewisBobbie LewisBobby LouisBobby LouiseBobby.LewisLewis + +294746Richard WagnerWilhelm Richard WagnerGerman composer, theatre director, polemicist, and conductor of the romantic period, born in Leipzig, Germany, May 22 1813 - died in Venice, Italy, February 13 1883. He is primarily known for his operas. Father of [a=Siegfried Wagner], grandfather of [a=Wieland Wagner], [a=Friedelind Wagner] and [a=Wolfgang Wagner (6)].Needs Votehttps://en.wikipedia.org/wiki/Richard_Wagnerhttps://www.wagnermuseum.de/http://www.wagnerdiscography.com/https://www.operadis-opera-discography.org.uk/CLORWAGN.HTMhttps://wagnerdisco.net/http://www.rwagner.net/http://www.the-wagnerian.com/http://opera.stanford.edu/Wagner/https://www.famouscomposers.net/richard-wagnerhttps://www.britannica.com/biography/Richard-Wagner-German-composerhttps://adp.library.ucsb.edu/names/102472Dick WagnerR WagnerR, VagnerisR. VagnerR. VagnerisR. VagnersR. VāgnersR. WagnerR. WagnerisR.WagnerRicardo WagnerRiccardo WagnerRich. WagnerRich. Wagner.Richard VagnerRichard W. WagnerRichard Wagner, After Heinrich HeineRichard Wilhelm WagnerRichardas VagnerisRickard WagnerRihard VagnerRyszard WagnerRészletek WagnerVagnerW.R. WagnerWagnerWagner (Wilhelm Richard)Wagner R.Wagner RichardWagner, R.Wagner, RichardWagner...WangerWilhelm Richard WagnerΒάγκνερΡίχαρντ ΒάγκνερВагнерВагнер Вильгельм РихардВагнеръВильгельм ВагнерВильгельм Рихард ВагнерР. ВагнерР. БагнерР. ВагнерР. ВагнераР. ВагнеръР.ВагнерР.ВагнераРих. ВагнерРихард Вагнервагнерفاغنرリヒャルト•ワーグナーリヒャルト・ワーグナーワグナーワーグナー理查德·瓦格纳瓦格納Staatskapelle Dresden + +295060Joe LovanoJoseph Salvatore LovanoJoseph Salvatore Lovano was born in Cleveland, Ohio on December 29, 1952 and grew up in a very musical household. His dad, Tony, aka [a2530021] was a barber by day and a big-toned tenor player at night. “Big T,” along with his brothers Nick and Joe, other tenor players, and Carl, a bebop trumpeter, made sure Joe’s exposure to Jazz and the saxophone were early and constant.Needs Votehttp://www.joelovano.com/https://en.wikipedia.org/wiki/Joe_Lovanohttps://www.allmusic.com/artist/joe-lovano-mn0000119629J. LovanoJoeJoe LovandJoe Lovano Symbiosis GroupJoe Lovano's Universal LanguageJoey LovanoJoseph LovanoLovanoジョー・ロヴァーノScolohofoWoody Herman And His OrchestraTommy Smith SextetJoe Lovano NonetPaul Motian TrioPaul Motian BandWoody Herman & The New Thundering HerdJohn Scofield QuartetWoody Herman & The Young Thundering HerdJoe Lovano EnsembleSaxophone SummitPaul Motian QuintetMasada QuintetJohn Abercrombie QuartetJoe Lovano QuintetJohn Patitucci TrioSaheb Sarbib QuintetSFJazz CollectiveSound GardenLiberation Music OrchestraWoody Herman BandJoe Lovano Wind EnsembleJoe Lovano QuartetGiovanni Tommaso QuintetHenri Texier Transatlantik QuartetKen Werner SextettWoody Herman And The Thundering HerdJoe Lovano Street BandOpera House EnsembleJoe Lovano Us FiveAntonio Farao American QuartetEd Schuller GroupAllen Farnham QuartetSound PrintsTony Martucci QuintetThe Kaleidoscope QuintetTrio TapestryPaul Motian QuartetLyle Mays Sextet + +295202Sam CookeSamuel CookSam Cooke (born 22 January 1931, Clarksdale, Mississippi, USA - died December 11, 1964, Los Angeles, California, USA) was an American gospel/R&B/soul/pop singer, songwriter and entrepreneur. He is recognized as one of the founders of soul music and one of the most important singers in soul music history. Details about his death are still in dispute; official police records state he was killed by a gunshot. +In 1961, he founded [l69831]. The label folded after his death. +Younger brother of [a3222661] (who co-wrote Chain Gang) and elder brother of [a993513]. + +Inducted into Rock And Roll Hall of Fame in 1986 (Performer). +Inducted into Songwriters Hall of Fame in 1987.Needs Votehttps://officialsamcooke.com/https://www.abkco.com/artist/sam-cooke/https://www.britannica.com/biography/Sam-Cookehttps://www.facebook.com/officialsamcookehttp://www.history-of-rock.com/cooke.htmhttps://www.imdb.com/name/nm0177492/https://www.instagram.com/officialsamcookehttps://myspace.com/samcookesoulhttps://www.songhall.org/profile/Sam_Cookehttps://www.tiktok.com/@officialsamcookehttps://twitter.com/officialscookehttps://www.whosampled.com/Sam-Cooke/https://en.wikipedia.org/wiki/Sam_Cookehttps://www.youtube.com/c/samcookeofficialhttps://www.allmusic.com/artist/sam-cooke-mn0000238115A. CookeA.CookeB. CampbellB. CookeC. CookeCharles Lowell CookeCookCookeCooke - SamCooke, S.Cooke, SamCookerCooksJ. CokeL. C. CookL. C. CookeL.C. CookeS CookeS&C CookeS, CookeS. &S. CokeS. CookS. CookeS. CookelS. CoonS. CooneS. cookeS.CookS.CookeSamSam "Mr. Soul" CookeSam (L.C.) CookeSam CockeSam CokeSam CookSam Cooke & The Soul StirrersSam Cookesam CookeSam CooksSam CooxeSame CookeSameCookeSamuel CookeWilliam CookeWilliam S CookeWilliam S. CookWilliam S. CookeС. КукСэм Кукサム・クックDale CookThe Soul StirrersBarbara CampbellThe Highway QC's + +295203Robert BlackwellRobert Alexander BlackwellRobert Alexander "Bumps" Blackwell (Born May 23, 1918 in Seattle, Washington – Died March 9, 1985 in Hacienda Heights, Whittier, California.) was an American bandleader, songwriter, arranger, and record producer, best known for co-writing early hits for [a223473], as well as grooming [a30552], [a17546], [a317859], [a116703], [a295202], [a35022], [a553067], and [a39768] at the start of their music careers. He co-wrote songs such as "Long Tall Sally", "Ready Teddy", "Rip It Up", "Good Golly Miss Molly" and "All Around The World". + +Not to be mistaken with [a=Otis Blackwell], who wrote prominent songs that [a27518] performed such as "All Shook Up" and "Don't Be Cruel". +Needs Votehttp://www.blackpast.org/aaw/blackwell-robert-bumps-1918-1985https://en.wikipedia.org/wiki/Robert_Blackwellhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=30645&subid=0"Bumps" BlackwellA. BlackwellAlexander BlackwellAlexander Robert BlackwellB BlackwellB. BlackwellB. BlackwelleB. WellBalkwellBlachwellBlack WellBlackkwellBlackmanBlackmenBlacknellBlackswellBlackvilleBlackweBlackweelBlackweilBlackwelBlackwellBlackwell RBlackwell R.Blackwell Robert AlexanderBlackwell, BumpsBlackwell, RBlackwell, R.Blackwell, Robert AlexanderBlackwellPennimanBlackwillBlackwoodBlackwoolBlacwellBlakwellBlancl wallBlckwellBleckwellBrackwellBumbs BlackwellBump BlackwellBumps BlackwellD BlackwellD. BlackwellO. BlackwellOtis BlackwellPeter BlackwellR "Bumps" BlackwellR A BlackwellR BlackwellR, A. BlackwellR. A. BlackwellR. A. "Bumps" BlackwekkR. A. "Bumps" BlackwellR. A. BlackwellR. B. BlackwellR. BIackwellR. BalckwellR. Black WellR. BlackwallR. BlackwellR. Blackwell/R. BlacwellR. StockwellR.-A. BlackwellR.A "Bumps" BlackwellR.A BlackwellR.A. "Bumps" BlackwellR.A. BlackwellR.A.BlackwellR.BlackwellRichard A. BlackwellRob. BlackwellRobert A. "Bumps" BlackwellRobert "Bumps" BlackwellRobert 'Bumps' BlackwellRobert A BlackwellRobert A. "Bumps" BlackwellRobert A. BlackRobert A. BlackwellRobert AlexanderRobert Alexander BlackwellRobert B. BlackwellRobert BalckwellRobert BlachwellRobert Black WellRobert BlacknellRobert Bumps BlackwellRobert LackwelliRobert « Bumps » BlackwellRobert ‘Bumps’ BlackwellRonnie BlackwellSandy R. BlackwellSandy (38)The Bumps Blackwell BandBumps Blackwell Orchestra + +295369Jerry DonahueJerry M DonahueAmerican guitarist, composer, mixing engineer and producer, born September 24, 1946, Manhattan, New York City as son of jazz musician [a335577] and actress Patricia Donahue. +Primarily known for his work in the British folk rock scene as a member of [a=Fotheringay], [a=Fairport Convention], and rock guitar trio [a=The Hellecasters]. +Father of [a=Kristina Donahue].Needs Votehttp://jerrydonahue.com/https://myspace.com/jerrydonahuehttps://www.facebook.com/jerrydonahuemusic/https://twitter.com/_jerrydonahuehttps://en.wikipedia.org/wiki/Jerry_DonahueDonahueGerry DonahueGerry DonohueJ DonahueJ. DanahueJ. DonahueJDJerryJerry DJerry DonaghueJerry DonehueJerry DonohueMark DonahueFairport ConventionThe YardbirdsFotheringayThe HellecastersThieves (3)Poet And The One Man BandGathering (2)Dek & JerryDave Pegg And FriendsThe Superpickers + +295397John StubblefieldJohn StubblefieldAmerican jazz saxophonist, flautist, and oboist +Born 4 February 1945 in Little Rock, Arkansas, USA, died 4 July 2005 in The Bronx, New York City, New York, USA (aged 60)Needs Votehttps://en.wikipedia.org/wiki/John_StubblefieldGentleman John StubblefieldJ. StubblefieldJohn StobblefieldJohn StubberfieldJohn StubblfieldStubblefieldGil Evans And His OrchestraNat Adderley SeptetLarry Willis SextetMingus Big BandManhattan BlazeMcCoy Tyner Big BandJerry Gonzalez And The Fort Apache BandJulius Hemphill Big BandKenny Barron QuintetThe Michael Grossman GroupLouis Hayes SextetDollar Brand Orchestra + +295639Edgardo SoderoCredited as cello player.Needs VoteEd SoderoEddie SoderoEdgardo SodaroEduardo SoderoEdward SoderoArtie Shaw And His OrchestraBilly Byers And His Orchestra + +295642Charlie PersipCharles Lawrence PersipAmerican jazz drummer, born July 26, 1929 in Morristown, New Jersey (as Charles Lawrence Persip, changed his name to Charli Persip in the early 1980s), died on August 23, 2020Needs Votehttps://en.wikipedia.org/wiki/Charlie_Persiphttps://www.allmusic.com/artist/charlie-persip-mn0000804152http://www.drummerworld.com/drummers/Charli_Persip.htmlhttps://adp.library.ucsb.edu/names/337314C. PersipCharles PersipCharley ParsipCharley PersipCharli PersipCharlie DuvivierCharlie PershipCharlie PersipiPersipЧарли ПерсипQuincy Jones And His OrchestraGil Evans And His OrchestraThe Red Garland TrioDizzy Gillespie And His OrchestraLionel Hampton And His OrchestraDizzy Gillespie Big BandThe Morris Nanton TrioThe Ernie Wilkins OrchestraThe Budd Johnson QuintetMilt Jackson And Big BrassHank Mobley SextetThe Roland Kirk QuartetThe Modern Jazz SextetFrank Rehak SextetThe Dizzy Gillespie OctetGeorge Russell OrchestraJoe Newman QuartetRandy Weston SextetGeorge Williams And His OrchestraThe Mal Waldron SextetArt Farmer And His OrchestraJohnny Coles QuartetThe Quincy Jones Big BandZoot Sims - Bob Brookmeyer OctetCharli Persip And SuperbandSal Salvador And His OrchestraFrank Foster And The Loud MinorityThe Blue Mitchell OrchestraOliver Nelson QuintetCharlie Persip's Jazz StatesmenBenny Golson QuintetJerome Richardson SextetThe Bill Potts Big BandBenny Golson QuartetSam Rivers QuintetRoland Kirk SextetHal McKusick SextetFrank Foster's Living Color – Twelve Shades Of Black + +295645Ray AlongeRay AlongeAmerican jazz French horn player +Born July 16, 1924 in New York City, New York, died January 17, 2000 in New York City, New York +Needs VoteRay AlonjeRayalongeRaymond AlongeRoy AlongeQuincy Jones And His OrchestraGil Evans And His OrchestraHugo Montenegro And His OrchestraDizzy Gillespie And His OrchestraOliver Nelson And His OrchestraMilt Jackson And Big BrassNew York Woodwind QuintetThe Jazz Interactions OrchestraArt Farmer And His OrchestraThe Quincy Jones Big BandOrizaba And His OrchestraMichel Legrand Big BandAll Star Big BandJim Timmens And His Swinging Brass + +295651Charles Davis (2)American jazz saxophonist and composer +He played previously tenor and alto saxophone, then baritone. +Raised in Chicago and active since the 50s, he performed extensively with [a=Sun Ra] and [a10514] and worked with many jazz legends including [a=Billie Holiday], [a=Ella Fitzgerald], [a=Dinah Washington] and [a=Lionel Hampton], among others. + +Born May 20, 1933 in Goodman, Mississippi, died July 15, 2016 in New York City, New York + +Needs Votehttps://en.wikipedia.org/wiki/Charles_Davis_(saxophonist)https://www.theguardian.com/music/2016/jul/27/charles-davis-obituaryhttps://adp.library.ucsb.edu/names/311090C. DavisC.DavisCh DavisCh. DavisCharlesCharlie DavisDavisチャールズ・デイヴィスThe Jazz Composer's OrchestraIllinois Jacquet And His OrchestraThad Jones / Mel Lewis OrchestraThe Muhal Richard Abrams OrchestraThe Kenny Dorham QuintetThe Cedar Walton / Hank Mobley QuintetEkayaJulian Priester SextetDizzy Reece SextetThe Sun Ra ArkestraElvin Jones/Jimmy Garrison SextetClark Terry Big BandCharles Davis SextetJimmy Heath Big BandCecil Taylor All StarsEmerald City Jazz OrchestraThe Clifford Jordan Big BandPhilly Joe Jones OctetNancie Banks OrchestraCharles Davis AllstarsDameroniaPhilly Joe Jones QuartetFred Radke & His Swingin' Big Band + +295652Matthew GeeMatthew Gee Jr..American jazz trombonist. +Born November 25, 1925 in Houston, Texas. +Died July 18, 1979 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Matthew_Geehttps://adp.library.ucsb.edu/names/317292GeeM-GeeM. GeeM. GheeM.GeeMathew GeeMathew Gee Jr.Matthew Gee All StarsMatthew Gee Jr.Matthews GeeCount Basie OrchestraDizzy Gillespie And His OrchestraDuke Ellington And His OrchestraThe Ray Bryant ComboErskine Hawkins And His OrchestraIllinois Jacquet And His OrchestraSonny Stitt BandThe Johnny Griffin OrchestraJoe Morris OrchestraJoe Newman & His BandGene Ammons SextetLou Donaldson SextetGene Ammons And His BandMatthew Gee And His OrchestraMatthew Gee All-Stars + +295771Florian PreisFlorian PreisCorrectF PreisF. PerisF. PreisF.PreisF.PriesFlorian PreissPreisPreis F.Preis, F.SunbeamChrome & PriceTrance AllstarsBondageYodaArt BizarreIron WobbleDance UnitedSystem FaithPete PlasticPriceless + +295772Michael GerlachMichael GerlachCorrectGerlachGerlach M.Gerlach, M.M GerlachM. GerlachM.G.M.GerlachSunbeamChrome & PriceTrance AllstarsBondageYodaArt BizarreIron WobbleHappy ColoursDance UnitedSystem FaithPete PlasticPriceless + +295775Eddie GladdenEdward GladdenAmerican jazz drummer, born December 6, 1937 in Newark, New Jersey, died September 30, 2003 in Newark, New Jersey, USA + +Needs Votehttps://en.wikipedia.org/wiki/Eddie_GladdenEd GladdenEddie GladenEdward GladdenGladdenThe Horace Silver QuintetThe Chet Baker QuintetRufus Reid TrioJimmy Raney QuartetDexter Gordon QuartetThe New Heritage Keyboard QuartetKirk Lightsey QuartetKirk Lightsey TrioJohn Patton QuintetClifford Jordan QuintetKirk Lightsey QuintetAlt-Tettes + +295776Rufus ReidRufus ReidAmerican jazz bassist +Born February 10, 1944, Atlanta, Georgia, USA + +Needs Votehttp://www.rufusreid.com/https://rufusreid.bandcamp.com/R. ReidReidRufus ReedRufus RiedBob Rockwell QuartetDave Liebman QuartetThe Lee Konitz QuartetStan Getz QuartetLee Konitz QuintetJack Dejohnette's Special EditionRufus Reid TrioAndrew Hill Trio And QuartetJames Williams SextetGeorge Cables TrioTete Montoliu TrioKenny Barron TrioBob Mintzer Big BandDexter Gordon QuartetArt Farmer QuintetWorld Bass Violin EnsembleJohn McNeil QuintetJazz Clinicians' QuartetLee Konitz NonetMarian McPartland TrioKirk Lightsey TrioJoe Locke QuintetThe Thad Jones Mel Lewis QuartetTanaReidGreg Abate QuartetSecret Agent Men (2)Harold Ashby QuartetMichele Rosewoman TrioThe Marvin Stamm QuartetThe Marvin Stamm / Ed Soph QuartetJohn La Barbera Big BandThe New JazztetEddie Allen QuintetRoberta Piket TrioGreg Abate QuintetMickey Tucker QuartetThe Ali Ryerson Jazz Flute Big BandSharel Cassity QuartetRufus Reid QuintetSumi Tonooka TrioBenny Golson QuartetBob Rockwell TrioDon Aliquo / Clay Jenkins QuintetRon Jackson / Rufus Reid DuoThe Asian American Jazz Trio + +295930Lee Young (2)Leonidas Raymond YoungAmerican jazz drummer & younger brother of saxophonist [a=Lester Young]. In 1964, Lee Young Sr. moved to the business side, working as a producer and executive for [l=Vee Jay Records], eventually moving to [l=ABC Records]. Often worked with [a=Arthur Wright]. In 1979, he took a similar post at [l=Motown]. Father of label executive/lawyer [a=Lee Young (8)]. He also owned the label [l1161486] + +Born: March 7, 1914 in New Orleans, Louisiana +Died: July 31, 2008 in Los Angeles, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Lee_Younghttps://www.theguardian.com/music/2008/aug/23/jazzhttps://adp.library.ucsb.edu/names/106382L. YoungLee YougLee Young Jr.Lee Young Sr.Lee Young, Sr.Lee-YoungLeonidas "Lee" YoungLeonidas R. Young Sr.Leonidas Raymond "Lee" YoungLeonidas Raymond YoungLeonidas Raymond “Lee” YoungM. YoungYoungYoung LeeFats Waller & His RhythmNellie Lutcher And Her RhythmBob Mosely & All StarsLucky Thompson's All StarsLionel Hampton All StarsLester & Lee Young's OrchestraLee Young And His BandThe Sunset All StarsLionel Hampton's Just Jazz All StarsWillie Smith Sextet + +296010Rune CarlssonSwedish jazz drummer and jazz singer, born 4 December 1940 in Stockholm, Sweden, died 9 March 2013 + +Carlsson was active as a jazz musician from 1957 and studied at the Berklee College of Music in the USA in 1971. He played with, among others, [a31617], [a145272], [a252310], [a179055], [a64694], [a145263], [a251769], [a282438], and [a257115]. + +Carlsson was influenced by modernists such as Art Blakey, Max Roach and Elvin Jones. His playing gave color to Sweden's jazz elite in the latter half of the 20th century, in groups led by Arne Domnérus, Bengt Hallberg, Bo Hansson, Kjell Jansson, Åke Johansson, Red Mitchell, Lars Sjösten, Bobo Stenson and Eje Thelin. + +In later years, Carlsson also performed as a singer, including with his own big band and together with the [a735807].Needs Votehttps://sv.wikipedia.org/wiki/Rune_Carlsson_(trummis)https://de.wikipedia.org/wiki/Rune_Carlsson_(Musiker)R. CarlssonRune CarlsonRune KarlssonKomeda QuintetStan Getz QuartetThe Swedish All StarsBobo Stenson TrioStaffan Abeleen QuintetEje Thelins KvintettKvartetten Som SprängdeBjörn Alkes KvartettDexter Gordon QuartetTrio KomedyBirkaSaxes GaloreCommunication (4)Kjell Jansson QuartetÅke Johansson TrioLasse Werner TrioThe Village Band (3)Red Mitchell TrioRed Mitchell QuintetMonica Borrfors QuintetStaffan Nilsons TrioArne Domnérus KvintettKrzysztof Komeda-Trzciński QuartetPeter Almqvist TrioAnders Lindskogs KvartettJørgen Leth QuintetUtsava Göran Strandberg TrioUlf Andersson BandEje Thelin TrioEje Thelins KvartettJoakim MilderzWojciech Karolak Trio (2) + +296160Doug FlettDouglas Jackson FlettBritish songwriter who who frequently wrote with [a578524] and partnered with him in [l2322067].Needs Votehttp://www.dougflett.com/D FlettD, FlettD. FletD. FlettD.FlettDave FlettDong FlettDoug FleetDougflettDough FlettDouglas FlattDouglas Jackson FlettDoung FlettFleetFlettFlett, D.Fletcher & Flett + +296277David LogemanDrummer, known mainly for his work with [a=Frank Zappa].Needs Votehttps://www.united-mutations.com/l/david_logeman.htmhttps://www.imdb.com/name/nm3089003/Dave LogemanDavidDavid LogemannDavid LogermanThe Belair-BanditsThe Surf City Allstars + +296409Kathleen BattleKathleen BattleAmerican operatic soprano vocalist. +Born August 13, 1948 in Portsmouth, Ohio, United States.Needs Votehttps://en.wikipedia.org/wiki/Kathleen_Battlehttps://www.britannica.com/biography/Kathleen-Battlehttps://www.kennedy-center.org/artists/b/ba-bn/kathleen-battle/https://web.archive.org/web/20031204174053/https://www.sonyclassical.com/artists/battle/https://www.imdb.com/name/nm0061513/BattleKBKathy BattleKatleen BattleMs. Battleキャスリーン・バトル + +296464Sam AllenSam AllenAmerican jazz pianist. + +Born : January 30, 1909 in Middleport, Ohio. +Died : April, 1963 in California. +Was an American jazz pianist. +Needs Votehttps://en.wikipedia.org/wiki/Sam_Allen_(musician)https://www.allmusic.com/artist/sam-allen-mn0001204694/biographyhttps://adp.library.ucsb.edu/names/110381AllenSan AllenSlim & SlamDickie Wells And His OrchestraTeddy Hill OrchestraStuff Smith & His OrchestraTeddy Hill And His NBC OrchestraDave Nelson And The King's MenDave's Harlem Highlights + +296466Kenneth HollonKenneth Lynn HollonAmerican jazz saxophonist. +Born : 26 November 1909 in Brooklyn, New York. +Died : 30 September 1974 in New York City, New York. +Needs Votehttps://www.allmusic.com/artist/kenneth-hollon-mn0001745459/biographyhttp://www.jazzarcheology.com/kenneth-hollon/HollandHollonK. HollonKen HollanKen HollmonKen HollonKenneth HollanKenneth HollandKenneth HollinKenneth HollowKenny HollonBillie Holiday And Her OrchestraFrank Newton And His OrchestraFrankie Newton & His Cafe Society OrchestraBuddy Johnson & His Band + +296874Daniel KobialkaUS classical violinist and composer (* November 19th, 1943 in Lynn, Massachusetts, USA; † January 18th 2021). +Daniel Kobialka was an internationally renown virtuoso who played and toured with nearly every major orchestra. For many years, he was a Principal Second violinist of the San Francisco Symphony. Founder (1985) and owner of [l393982].Needs Votehttp://en.wikipedia.org/wiki/Daniel_Kobialkahttp://www.myspace.com/danielkobialkahttp://www.danielkobialka.com/D. KobialkaDan KobialkaDanielDaniel KobialkoDaniel KobielkaDannny KobialkaDanny KobialkaKobialkaSan Francisco Symphony + +296955Ruby BraffReuben BraffAmerican jazz trumpeter and cornetist +born March 16, 1927 in Boston, Massachusetts +died February 9, 2003 in Chatham, Massachusetts + +He first played in the 1940s in Boston. He is best known for his performances with [a=Pee Wee Russell], [a=Vic Dickenson], [a=Benny Goodman], [a=George Wein], and [a=Buck Clayton].Needs Votehttps://bostonjazzscene.blogspot.com/2018/08/musiciansthe-major-contributors.htmlhttps://en.wikipedia.org/wiki/Ruby_BraffBraffR. BraffReuben "Ruby" BraffReuben (Ruby) BraffRuben "Ruby" BraffRubyRuby Braff And His MenRuby Braff And His TrumpetRuby Braff And StringsRuby Braff Orch.Ruby Braff and his QuartetRuby BraffwithRuby BriffRudy BraffThe Ruby Braff QuartetRuby Braff And The Shubert Alley CatsBenny Goodman SeptetRuby Braff All-StarsBenny Goodman OctetThe Newport All StarsEdmond Hall's All-StarsMel Powell TrioRuby Braff And His Big City SixRuby Braff OctetEdmond Hall And His OrchestraRuby Braff & His New England SonghoundsRuby Braff / George Barnes QuartetVic Dickenson SeptetMel Powell & His All-StarsThe Ruby Braff TrioRuby Braff And His MenRuby Braff's All-StarsRuby Braff & His AllstarsHyman-Braff-DuoThe Ruby Braff-Marshall Brown SextetRuby Braff QuartetRuby Braff SextetThe Ruby Braff QuintetNew England Songhounds + +296959Dave McKennaDavid McKennaAmerican jazz pianist and composer. + +Born May 30th, 1930 in Woonsocket, Rhode Island. +Died October 18th, 2008 in State College, Pennsylvania (age 78). +He was known primarily as a solo pianist and for his "three-handed" swing style. He was a significant figure in the evolution of jazz piano.Needs Votehttps://en.wikipedia.org/wiki/Dave_McKennahttps://www.freshsoundrecords.com/12392-dave-mckenna-albumshttps://adp.library.ucsb.edu/names/330763Dave Mc KennaDave McKennyDavid McKennaMcKennaThe Dave McKenna Rhythm Sectionデイヴ・マッケンナWoody Herman And His OrchestraGene Krupa And His OrchestraZoot Sims & FriendsWoody Herman And His WoodchoppersThe Bobby Hackett QuartetUrbie Green And His OrchestraThe Manhattan Jazz All StarsConcord Super BandWoody Herman And His Third HerdThe Gene Krupa QuartetDave McKenna QuartetThe Hanna-Fontana BandCharlie Ventura QuintetThe Bobby Hackett SextetRuby Braff's All-StarsCharles Ventura QuartetUrbie Green And His Big BandRuby Braff & His AllstarsConcord Jazz All StarsThe Dave McKenna TrioThe Concord All StarsPhil Woods-Gene Quill SextetBuddy Rich SeptetThe Teddy Charles GroupClark Terry SeptetRuby Braff QuartetNew England SonghoundsThe Dave McKenna Swing Six + +296973Carlo PesCarlo PesItalian guitarist, composer, arranger, producer and technician. +Born March 3rd, 1927 in Cagliari, Italy. Died January 17th, 1995 in Rome, Italy. +Needs Votehttps://adp.library.ucsb.edu/names/362508C. PesC. BesC. PasC. PerC. PesC. PescC. PessC. PiessC. PresC. pesC. ペスC.PesCC. PesCarlo PasCarlo PessCarlos PesCharlos PesFessJ. PesPasPeaPesPes CarloPes,CPescarloPessPezPosTezPraiarI Marc 4Carlo Pes E Il Suo ComplessoOrchestra Di Enrico SimonettiCarlo Pes E La Sua OrchestraSestetto Swing Di RomaSestetto Nunzio Rotondo Dell'Hot Club Di RomaColiseum Jazz TrioOrchestra Bruno MartinoRobledo E Seu Conjunto + +296976Paul MetzkeAmerican jazz and fusion guitarist, born in Detroit +He plays also keyboards and synthesizers. +Needs Votehttp://www.paulmetzke.com/Paul MetskyPaul MetzePaul MetzkyPaul MitzkiPoul MeztkeGil Evans And His OrchestraArchie WhitewaterWhite ElephantDavid Matthews OrchestraMike Mainieri & Friends + +297426Jeremy BuddEnglish tenor vocalist and former Treble (Boy Soprano) vocalist. +Graduate of the Royal Academy of Music, he made his professional debut in 2000. Former head chorister of St Paul's Cathedral, he sang treble solos with the Royal Opera and London Symphony Orchestra.Needs Votehttps://www.bach-cantatas.com/Bio/Budd-Jeremy.htmJermy BuddMagnificatThe Cambridge SingersLondon VoicesThe SixteenEx Cathedra Chamber ChoirSt. Paul's Cathedral ChoirTenebrae (10)Les Voix Baroques + +297572John NevesAmerican jazz bassist, born October 22, 1930 in Mansfield, MA, died on July 18, 1988 in Boston, MANeeds VoteStan Getz QuartetLem Winchester QuartetThe Herb Pomeroy OrchestraRay Santisi Trio + +297675Tom HarrellAmerican trumpet player, born June 16, 1946 in Urbana, Illinois +Moved to San Francisco at age five, and was playing in small groups around Palo Alto when 13. Toured with [a=Stan Kenton] in 1969 and with [a=Woody Herman] 1970-1971, then joined [a=Horace Silver] in 1973 and moved to New York. Later worked with [a=Cecil Payne], [a=Lee Konitz], [a=Phil Woods] and others.Needs Votehttps://tomharrell.com/https://myspace.com/tomharrellhttps://en.wikipedia.org/wiki/Tom_HarrellHarrellT. HarrellT.HarrellThomas Strong HarrellTom HarrelTommy HarrellТом ХарреллThe Players AssociationThe George Gruntz Concert Jazz BandWoody Herman And His OrchestraWolfgang Muthspiel SextetAztecaThe Horace Silver QuintetGeorge Russell's New York BandThe Joe Roccisano OrchestraJoe Lovano QuintetThe Phil Woods QuintetDavid Matthews OrchestraLee Konitz NonetLiberation Music OrchestraNational Jazz EnsemblePhilip Catherine TrioWolfgang Muthspiel GroupBobby Shew QuintetThe Richard Sussman QuintetJoris Teepe - Don Braden QuintetTom Harrell QuintetRein De Graaff QuintetDon Braden QuintetGerry Mulligan And His OrchestraCharlie Shoemake SextetWoody Herman And The Thundering HerdBill Mays QuintetPhil Woods' Little Big BandDon Braden SextetHod O'Brien QuintetMike LeDonne QuintetLarry Vuckovich SextetGeorge Robert-Tom Harrell QuintetRon McClure QuintetGreg Marvin QuintetMichael Cochrane QuintetPierre Boussaguet QuintetThe Klaus Suonsaari QuintetRalph Lalama & His Manhattan All StarsEthan Iverson QuartetGordon Stevens QuintetTom Harrell Infinity QuartetMike Richmond QuintetTim Armacost Chordless Quintet + +297693Philip CatherinePhilip CatherineBelgian jazz guitarist. +Born October 27, 1942 in London, England from an English mother and a Belgian father + +Coming from a musical family (his grandfather was first violin with the London Symphony Orchestra), he developed a musical ear from an early age. He took up the guitar after having heard George Brassens, and then started listening to all the great jazzmen of the period. Very soon he had the opportunity to meet some of them, and often play with them when they were performing in Belgium where his family had moved to by then. + +Philip Catherine has been on the forefront of the European jazz scene since the sixties. He has worked with great artists like [a=Chet Baker], [a=Edgar Bateman], [a=Lou Bennett], [a=Billy Brooks], [a=Gerry Brown], [a=Larry Coryell], [a=Kenny Drew], [a=Dexter Gordon], [a=Stéphane Grappelli], [a=Tom Harrell], [a=John Lee], [a=Charlie Mariano], [a=Charles Mingus], [a=Alphonse Mouzon], [a=Niels-Henning Ørsted Pedersen], [a=Jean-Luc Ponty], [a=Toots Thielemans], the rock group [a=Focus (2)]. His unique approach and sound, his dedication to music and, above all, the highly emotional lyricism of expression in his playing and in his music, have been important and influential. +Needs Votehttps://www.AllMusic.com/artist/philip-catherine-mn0000287463/biographyhttp://www.PhilipCatherine.com/https://philipcatherine.bandcamp.com/https://catherie.bandcamp.com/https://jazzinbelgium.be/en/people/musicians/54/philip-catherinehttps://en.wikipedia.org/wiki/Philip_CatherineCatherineP. CahterineP. CatherineP.CatherinePh. CatherinePhil CatherinePhilipPhilip CathérinePhilip Oscar CatherinePhilipe CatherinePhilipe CathérinePhilippe CatherinPhilippe CatherinePhillip CatherinePhillipe CathérineФилип КатэринFocus (2)SunbirdsPeter Herbolzheimer Rhythm Combination & BrassThe Chris Hinze CombinationRolf Kühn GroupKlaus Weiss OrchestraThe Kenny Drew TrioPork PieNiels-Henning Ørsted Pedersen TrioThe Galactic Light OrchestraChet Baker TrioDexter Gordon QuartetKenny Drew QuartetPhilip Catherine TrioEuropean Jazz EnsembleRichard Galliano QuartetMorton And The UptightsBernard Primeau Montréal Jazz EnsembleLou Bennett TrioEnrico Pieranunzi QuartetPhilip Catherine QuartetPhilip Catherine-DuoTime Travellers (5)Zbigniew Seifert SextetThe Only Chrome Waterfall Orchestra + +297875Emlyn SingletonEmlyn SingletonLondon based classically trained orchestra violinist.Needs Votehttps://www.imdb.com/name/nm1179230/E. R. SingletonE. R.SingletonE. SingletonE.R. SingletonE.R.SingletonE.SingletonEinlyn SingletonEmily SingletonEmlyn SingeltonEmyln SingletonЭмлин СинглтонThe London Session OrchestraLondon Philharmonic OrchestraThe London Studio OrchestraThe Michael Nyman BandCornucopia EnsembleOrchestre de GrandeurThe Valve Bone Woe EnsembleThe Pale Blue Orchestra + +297991Israel BakerIsrael BakerAmerican violinist, concertmaster and professor. For decades, he was successful within the genres of classical, jazz, and pop. Baker was born on the 11th February 1919, raised in Chicago, Illinois, he died on the 25th December 2011. +Grandfather of [a=Joe Dart]Needs Votehttps://www.feenotes.com/database/artists/baker-israel-11th-february-1919-25th-december-2011/https://en.wikipedia.org/wiki/Israel_BakerBake IsraelBakerBaker IsraelFred BuldriniI. BakerIsrael BakeIsrael BarkerIsral BakerIsreal BakerIssy BakerIz BakerIzzy BakerTsrael BakerThe NPG OrchestraGordon Jenkins And His OrchestraThe Gene Page OrchestraPacific Art TrioThe Wrecking Crew (6)Baker String Quartet + +297993Kenneth YerkeAmerican violinist from Los Angeles.Needs Votehttps://www.feenotes.com/database/artists/yerke-kenneth/https://www.imdb.com/name/nm3476583/Ken YerkKen YerkeKen YerkieKen YorkeKenneth VerkeKenneth YerkKenneth YerksKenneth YorkeKenny YerkeKenny Yerke "The Human Theremin"Yerke, KennethThe Cleveland OrchestraJerry Hey String Section + +297997Vincent DeRosaVincent DeRosaAmerican hornist, born on October 5, 1920, in Kansas City, Missouri, he played horn for Hollywood soundtracks and other recordings from 1935-2008, and taught at the Los Angeles Conservatory of Music and the University of Southern California. Died on July 18, 2022.Needs Votehttp://vincentderosabook.com/https://en.wikipedia.org/wiki/Vincent_DeRosaDe RosaDe Rosa VincentDeRosa Vincent N.Derosa VincentVInce De RosaVice DeRosaVicent De RosaVicent N. de RosaVicent RoseVince Da RosaVince Da RoseVince DaRosaVince De RosaVince De RoseVince DeRobertsVince DeRosaVince DeRoseVince DeRozaVince DerosaVince de RosaVincent D'RosaVincent Da RosaVincent De RosaVincent DeRoseVincent DerosaVincent N. De RosaVincent N. DeRosaVincent N. DerosaVincent de RosaVincent deRosaVinnie De RosaVinny DeRosade RosaHarry James And His OrchestraBilly May And His OrchestraHenry Mancini And His OrchestraPete Rugolo OrchestraGordon Jenkins And His OrchestraThe Marty Paich Dek-TetteThe Abnuceals Emuukha Electric OrchestraThe Mystic Moods OrchestraBill Holman's Great Big BandRalph Carmichael OrchestraJohnny Richards And His OrchestraMarty Paich Big BandThe Los Angeles Neophonic OrchestraThe Lennie Niehaus OctetDon Fagerquist OctetThe Horn Club Of Los AngelesPete Rugolo And His All StarsJack Sheldon And His Exciting All-Star Big-BandNeal Hefti And His Jazz Pops OrchestraThe Wrecking Crew (6)Art Pepper + Eleven + +298065Don PateBassist. Son of composer/arranger [a218047]Needs VoteDon 'Yaka' PateDon Pate (Yaka)Don Pate ‘Yaka’Don ‘Yaka’ PateDonald PateDonals PatePateYaka Don PateGil Evans And His OrchestraGeorge Adams QuintetAmina Claudine Myers TrioHannibal Marvin Peterson-QuartetWETPAINT.NETThe Larry Willis QuintetWet Paint (7)Tisziji Muñoz Quartet + +298099Marc Johnson (2)Marc Alan JohnsonAmerican jazz bassist and composer, born October 21, 1953 in Omaha, Nebraska. He is married to the Brazilian jazz singer and pianist [a86031]. + +Needs Votehttp://musicians.allaboutjazz.com/musician.php?id=8118#.UqR9sSgt3sNhttp://en.wikipedia.org/wiki/Marc_Johnson_(musician)JohnsonM. JohnsonM.JohnsonMarK JohnsonMarcMarc Alan JohnsonMarcjohnsonMark JohnsonmarcjohnsonSteps AheadWoody Herman And His OrchestraThe Bill Evans TrioThe Fred Hersch TrioPaul Bley TrioThe Lee Konitz QuartetStan Getz QuartetJohn Scofield QuartetEnrico Pieranunzi TrioJohn Abercrombie TrioThe Woody Herman Big BandJoe Lovano QuintetMarc Johnson's Bass DesiresMaurizio Giammarco QuartetRoman Schwaller QuartetThe Johnny Griffin QuartetWoody Herman BandMartial Solal TrioMel Lewis QuintetEnrico Pieranunzi, Marc Johnson, Joey BaronMarc Johnson's Right Brain PatrolSalvatore Bonafede TrioThe New Jazz QuartetWoody Herman And The Thundering HerdThe John Lewis GroupJimmy Gourley QuartetToots Thielemans And His American BandRue De ParisJakob Holm TrioSøren Bebe TrioAndy LaVerne QuartetLyle Mays QuartetEnrico Granafei QuartetNico Morelli TrioDoug Hall Trio1:00 O'Clock Lab BandPaul Motian QuartetAxel Fischbacher QuartettLyle Mays TrioLyle Mays Sextet + +298145Jay ClaytonJudith ColantoneAvant-garde vocalist and jazz educator, born October 28, 1941, in Youngstown, Ohio, as Judith Colantone. Died December 31, 2023. She was the mother of [a=Dejha Colantuono].Needs Votehttp://jayclayton.com/https://jayclayton.bandcamp.com/https://en.wikipedia.org/wiki/Jay_Clayton_(musician)https://www.gofundme.com/f/jay-clayton-fundraiserClaytonДжей КлейтонSteve Reich And MusiciansThe Jim Knapp OrchestraQuartettJay Clayton / Jim Knapp CollectiveVocal SummitThe Jay Clayton Voice Group + +298150James PreissClassical percussionist, a member of the Steve Reich Ensemble since 1971, and on the Manhattan School of Music faculty from 1970–2006.CorrectJim PreissДжеймс ФрейссThe Manhattan Marimba QuartetAmerican Composers OrchestraSteve Reich And Musicians + +298152Russ HartenbergerRussell HartenbergerPercussionist.Correcthttp://www.nexuspercussion.com/members/russell-hartenberger/R. HartenbergerRussel HartenbergerRussell HargenbergerRussell HartenbergRussell HartenbergerRussell HartenburgerРусс ХартенбергерNexus (18)Steve Reich And Musicians + +298245Victor LewisAmerican jazz drummer, born 20 May 1950 in Omaha, Nebraska, USANeeds Votehttps://en.wikipedia.org/wiki/Victor_Lewishttp://www.drummerworld.com/drummers/Victor_Lewis.htmlLewisV. LewisV.LewisVictor Lewis TriosVictor LouisVictor V. LewisGil Evans And His OrchestraVladimir Shafranov TrioBob Rockwell QuartetDave Liebman QuartetGeorge Russell's New York BandPaul Bley TrioStan Getz QuartetGeorge Cables TrioBobby Watson & HorizonMingus DynastyDavid Sanborn BandKenny Barron TrioManhattan Jazz QuintetArt Farmer QuintetPaul Bley QuartetHubert Laws GroupGordon Brisker QuintetAkiliCharles Tolliver Big BandMike Wofford TrioAllan Botschinsky QuintetSteve Nelson QuintetJimmy Gourley QuartetBrian Lynch SextetJohn Hicks QuartetGordon Brisker Big BandEddie Henderson QuartetWoody Shaw QuintetSonny Simmons QuintetRenolds Jazz OrchestraKenny Barron QuintetThe Carla Bley Big BandJohn Hicks TrioEddie Henderson QuintetLarry Willis TrioThe Stryker / Slagle BandGeorge Cables QuartetJanice Friedman TrioJim Snidero QuartetThe Jazz Tribe (2)Elio Villafranca & The Jass SyncopatorsBob Rockwell TrioJack Walrath & Hard CorpsKarlheinz Miklin QuartetScott Wendholt / Adam Kolker QtRich Perry TrioSeamus Blake QuartetQuiet Fire (3)Miki Hayama TrioThe Holly Hofmann QuartetThe Quintet (7)The Ryan Oliver QuartetNew York Rhythm MachineJohn McKenna Quartet + +298457Emanuel RehwaldEmanuel RehwaldNeeds VoteE. RehwaldE.RehwaldEmmanuel RehwaldManuel RehwaldRehwaldElectrofreakStarfireGhettoblastaRene et ManuelOptimizerTrapezoid (2) + +298937Benoit QuersinBenoit Jacques QuersinBelgian jazz bassist and ethno-musicologist (born July 24, 1927 in Bruxelles, Belgium - died : 1993 in Zaire, Africa)Needs Votehttps://www.jazzinbelgium.com/person/benoit.quersinB. QuersinBeno Ít QuersinBenoit QuercinBenoit QuersonBenoît QuersinBenoït QuersinChet Baker QuartetThe Chet Baker QuintetBobby Jaspar QuartetChet Baker SextetHenri Renaud Et Son SextetteJack Diéval Et Le J.A.C.E. All-StarsLionel Hampton And His SextetGérard Pochonet And His OrchestraRené Urtreger TrioHenri Renaud Et Son OrchestreChet Baker OrchestraBobby Jaspar All StarsMartial Solal Big BandGérard Pochonet & His QuartetRené Thomas And His OrchestraThe René Thomas Modern GroupHenri Renaud QuintetJay Cameron's International Sax-BandJacques Pelzer QuartetJack Sels TrioStephane Grappelly SextetGérard Pochonet All StarsJacques Pelzer And His Young StarsJack Sels SextetLéo Souris QuintetMartial Solal - Sadi QuartetteJacques Dieval's All StarsHubert Fol SextetSextette Raymond BeauRené Thomas QuartetKenny Clarke-Martial Solal SextetBobby Jaspar & Sacha Distel Quintette + +298938Benny VasseurBernard VasseurFrench jazz trombone player. Born 07/03/1926 in Neuville-Saint-Rémy (France). Died 06/02/2015 in Paris (France). +He had an older brother, [a=René Vasseur], who was also a trombonist. Needs Votehttp://amourdurocknroll.fr/pages/benny_rock.htmlhttp://www.ifccom.ch/reperes/jazz_0663.htmlB. VasseurBennie VasseurBernard VasseurVasseurBenny Rock (2)François Rauber Et Son OrchestreAndré Popp Et Son OrchestreSidney Bechet And His OrchestraRoy Eldridge And His OrchestraLucien Lavoute Et Son OrchestreChristian Chevallier Et Son OrchestreJimmy Walter Et Son EnsembleClaude Luter Et Son OrchestreClaude Cagnasso Big BandJean-Claude Pelletier Et Son OrchestreMichel Attenoux Et Son OrchestreOrchestre Jo MoutetIvan Jullien Big BandClifford Brown Big BandThe Jean-Claude Naude Big BandClaude Bolling Jazz All StarsPierre Michelot And His OrchestraClaude Thomain Et Son OrchestreThe Four BonesChet Baker OrchestraMartial Solal Big BandMoustache Jazz SevenClaude Bolling Big BandRaymond Fol Et Son OrchestreHenri Rossotti Et Son OrchestreAndré Persiany Et Son OrchestreAlbert Nicholas SextetAll Star Français 1950Claude Bolling & Le Show Biz BandJoe Rossi Et Sa Grande FormationJacques Dieval's All StarsBenny Vasseur QuintetBenny Vasseur, André Paquinet Et Leur OrchestreClaude Bolling Et Son Steffy Club Gang + +298939Jean-Louis VialeFrench jazz drummer, born 22 January 1933 in Neuilly-sur-Seine, France, died 10 May 1984 in Paris, FranceNeeds VoteJ. L. VialeJ.L. VialleJean Louis VialeJean Louis VialleJean Louis ViolaJean Louis-VialeJean VialeJean-Louis VialJean-Louis VialleJean-Marie VialeЖ.-Л. ВиалеChet Baker QuartetJack Dieval Et Son QuartettThe Chet Baker QuintetZoot Sims SextetClifford Brown SextetHenri Renaud Et Son SextetteThe Bernard Peiffer TrioHubert Fol QuartetClaude Bolling Et Son OrchestreParis Jazz QuartetRené Thomas QuintetDjango Reinhardt Et Ses RythmesClifford Brown Big BandRené Urtreger TrioMartial Solal TrioBobby Jaspar All Stars"Fats" Sadi's ComboLes Baroques (2)Gigi Gryce Clifford Brown SextetDjango Reinhardt QuartetRené Thomas And His OrchestraHenri Renaud QuintetFrank Foster QuartetJack Dieval QuintetStephane Grappelly SextetMaurice Meunier QuartetThe New Hot Club QuintetMaurice Meunier And His OrchestraMartial Solal - Sadi QuartetteHubert Fol SextetHenri Renaud - Bobby Jaspar Quintet + +298940Nils-Bertil DahlanderSwedish jazz drummer, born 13 May 1928 in Mölndal, died 6 June 2011 in Mesquite, Nevada, USA.Needs Votehttps://en.wikipedia.org/wiki/Bert_Dahlanderhttps://sv.wikipedia.org/wiki/Nils-Bertil_DahlanderB DahlanderBert DahlBert DahlanderBert DahlenderBert Dale (Nils-Bertil Dahlander)Bert DalhanderBertil (Bert) DahlanderBertil DahlanderDahlanderN-B DahlanderN.-B. DahlanderN.B. DahlanderNiels DahlanderNils Bertil DahlanderNils DahlanderNils-Berthil DahlanderNils-Bertil "Bert" DahlanderNils-Bertil "Bert" DahlanderNils-Bertil 'Bert' DahlanderNils-Bertil ("Bert") DahlanderNils-Bertil (Bert) DahlanderNils-Bertil Dahlander (Bert Dale)Bert DaleChet Baker QuartetTeddy Wilson TrioRune Öfwerman TrioLars Gullin SeptetLars Gullin QuartetJan Allan QuartetEarl Hines And His QuartetLars Gullin OctetNils-Bertil Dahlanders OrkesterToshiko And Her International Jazz SextetNils-Bertil Dahlander QuartetLennart Nilssons TrioNils-Bertil Dahlanders KvartettPacific All StarsNils-Bertil Dahlander TrioBert Dahlander QuintetBert Dahlander TrioThe Dynamite Hybride Trio + +298943Bobby JasparBobby Jaspar (born 20 February 1926, Liège, Belgium - died 28 February 1963, New York City, New York, USA) was a Belgian cool jazz and hard bop saxophonist, flutist and composer. He was married to the jazz singer [a=Blossom Dearie]. +Needs Votehttp://en.wikipedia.org/wiki/Bobby_Jasparhttps://www.jazzinbelgium.com/person/bobby.jasparhttps://adp.library.ucsb.edu/names/204925B. JasparB. JasperBabby JasparBobby Jaspar And His Modern JazzBobby JasperJasparRobert JasparChet Baker QuartetThe J.J. Johnson SextetThe Chet Baker QuintetBobby Jaspar QuartetDonald Byrd QuintetChet Baker SextetThe J.J. Johnson QuintetBernard Peiffer And His Saint-Germain-des-Prés OrchestraRené Thomas QuintetBobby Jaspar QuintetThomas - Jaspar QuintetThe Bob ShotsToshiko And Her International Jazz SextetBobby Jaspar All Stars"Fats" Sadi's ComboWynton Kelly SextetLes MexirockersJay Cameron's International Sax-BandBobby Jaspar's New JazzBobby Jaspar SextetBobby Jaspar-René Thomas QuartetHenri Renaud - Bobby Jaspar QuintetBobby Jaspar & Sacha Distel Quintette + +298945Charles SaudraisJazz drummerNeeds VoteC. SaudraisCh. SaudraisCharle SaudraisClaude SaudraisThe Chet Baker QuintetBen Webster QuartetGeorges Arvanitas TrioMarco Di Marco TrioMichel Attenoux Et Son OrchestreThe Georges Arvanitas Jazz QuartetChris Woods SextetBarney Wilen QuartetHenri Renaud Et Son OrchestrePepper Adams QuartetGuy Lafitte QuintetAlice Darr TrioClaude Guilhot QuartetAlix Combelle Et Sa Formation + +298950Brian BrombergAmerican jazz bassist (acoustic and electric), born December 5, 1960 in Tucson, Arizona, USA. Brother of drummer [a=David Bromberg (2)] (not to be confused with the guitarist of the same name).Needs Votehttps://www.brianbromberg.net/https://brianbromberg.bandcamp.com/https://www.myspace.com/brianbromberghttps://en.wikipedia.org/wiki/Brian_BrombergB. BrombergB.BrombergBrianBrian BlombertBrian BrombersBrombergDavid BrombergStan Getz QuintetJB Project (2)la connectionThe L.A. ChillharmonicL.A. Jazz QuintetDavid Benoit TrioThe Randy Waldman TrioBPM (26) + +298951Chuck LoebCharles Samuel LoebChuck Loeb (born July 12, 1955 in Suffern, New York, USA - died July 31, 2017) was an American jazz guitarist, composer and producer. Married to singer [a=Carmen Cuesta], and father of [a=Lizzy Loeb] and [a=Christina Loeb].Needs Votehttp://www.chuckloeb.com/https://en.wikipedia.org/wiki/Chuck_LoebC. LochC. LoebC.LoebCharles LoebCharles S. LoebChuckChuck LeobLoebSteps AheadLLL-MentalFourplay (3)Stan Getz QuintetMetro (12)Petite BlondeThe Fantasy BandBill Evans GroupGreg Alper BandJazz Funk SoulThe Chuck Loeb Quartet + +299092Fred SpectorSolomon E. (Fred) SpectorViolinist, born on March 11, 1925, on Chicago’s West Side, died June 3, 2017, at his home in Chicago’s Lincoln Park, aged 92. +Member of the Chicago Symphony Orchestra 1956 - 2003. +Needs VoteChicago Symphony Orchestra + +299191Michel Legrand Et Son OrchestreNeeds VoteHet Orkest Van Michel LegrandL'Orch. Di Michel LegrandL'Orchestre De Michel LegrandL'Orchestre Michel LegrandL'Orchestre de Michel LegrandLe Grand Orchestre De Michel LegrandLegrandLegrand's OrchestraM LegrandM. Legrand, Son OrchestreM. Legrand & Son Orc.M. Legrand & Son Orch.M. Legrand & Son OrchestreM. Legrand Et Son Orch.M. Legrand Et Son OrchestreM. Legrand Orc.M. Legrand Und Sein OrchesterM. Legrand, Son OrchestreM. Lluvia Orch.Mechel Legrand And His OrchestraMichael Legrand & His Orch.Michael Legrand & His OrchestraMichael Legrand & HisOrchestraMichael Legrand And His OrchestraMichael Legrand Og Hans OrkesterMichael Legrand OrchestraMichel Grand & His OrchestraMichel Le Grand OrchestraMichel LeGrand & His Orch.Michel LeGrand And His OrchestraMichel LeGrand Orch.Michel LeGrand OrchestreMichel LegrandMichel Legrand & His Film OrchestraMichel Legrand & His Orch.Michel Legrand & His OrchestraMichel Legrand & Son Orch.Michel Legrand & Son Orchest.Michel Legrand & Son OrchestreMichel Legrand & Son Orchestre De DanseMichel Legrand , Son Grand Orchestre À CordesMichel Legrand - His Orchestra And VoicesMichel Legrand And His EnsembleMichel Legrand And His Orch.Michel Legrand And His OrchestraMichel Legrand And OrchestraMichel Legrand E Il Suo ComplessoMichel Legrand E La Sua Grande OrchestraMichel Legrand E La Sua Orch.Michel Legrand E La Sua OrchestraMichel Legrand E Sua OrquestraMichel Legrand E la Sua OrchestraMichel Legrand En ZIjn OrkestMichel Legrand En Zijn OrkestMichel Legrand Et Sa Grande FormationMichel Legrand Et Ses RythmesMichel Legrand Et Son Grand OrchestreMichel Legrand Et Son Grand Orchestre De DanseMichel Legrand Et Son Grand Orchestre À CordesMichel Legrand Et Son Orch.Michel Legrand Et Son Orchestre De DanseMichel Legrand Et Son Orchestre À CordesMichel Legrand Et Sua OrchestraMichel Legrand Orch.Michel Legrand OrchestraMichel Legrand OrchestreMichel Legrand Son OrchestreMichel Legrand Su OrquestaMichel Legrand U. S. Orch.Michel Legrand U. S. OrchesterMichel Legrand Und Sein OrchesterMichel Legrand Y Su Gran OrquestraMichel Legrand Y Su OrchestraMichel Legrand Y Su OrquestaMichel Legrand Y Su OrquestraMichel Legrand and His OrchestraMichel Legrand and his OrchestraMichel Legrand og Hans OrkesterMichel Legrand u. s. OrchesterMichel Legrand u. s. Orchester mit KinderchorMichel Legrand u.s. OrchesterMichel Legrand und seinem OrchesterMichel Legrand y Su OrquestaMichel Legrand y Su Orquesta De BaileMichel Legrand, His Piano And OrchestraMichel Legrand, Son Grand OrchestreMichel Legrand, Son Orch.Michel Legrand, Son OrchestreMichel Legrand, Son Orchestre Et ChœursMichel Legrand, Son Orchestre Et Ses ChoeursMichel Legrands DanseorkesterMichel Legrands OrkesterMichel Regand OrchestraMichelle Legrand OrchestraMichèl Legrand Mit Seinem OrchesterOrch. Michel LegrandOrchester Michel LegrandOrchestra De Michel LegrandOrchestra M. LegrandOrchestra Michel LegrandOrchestre De Michel LegrandOrchestre Michel LegrandOrchestre de Michel LegrandOrquestra Michel LegrandRaymond Legrand And His OrchestraSon OrchestreThe Michel Legrand OrchestraUSA Orch. Cond. M. LeGrandla orquesta de Michel LegrandОркестр М. ЛегранаОркестр Мишеля ЛегранаОркестр П/У М. ЛегранаОркестр п/у М. Легранаミシェル・ルグラン・オーケストラミシェル・ルグラン楽団ミッシェル・ルグラン・オーケストラミッシェル・ルグラン管弦楽団Michel Legrand Et Son EnsembleMichel Legrand Et Sa Grande FormationMichel LegrandElek Bacsik + +299280Ned WashingtonEdward Michael WashingtonSongwriter, born 15 August 1901 in Scranton, Pennsylvania, died 20 December 1976 in Los Angeles, California. + +Active as a songwriter from the late 1920s well into the 1960s, he has penned the lyrics to many popular songs such as [i]I'm Getting Sentimental Over You[/i] (1932), [i]When You Wish Upon A Star[/i] (1940), [i]High Noon[/i] (1952) and the theme song from [i]Rawhide[/i] (1958). + +Washington was inducted into the Songwriters Hall of Fame in 1972. +Needs Votehttp://www.songwritershalloffame.org/exhibits/C311http://legends.disney.go.com/legends/detail?key=Ned+Washingtonhttp://en.wikipedia.org/wiki/Ned_Washingtonhttps://adp.library.ucsb.edu/names/108781C. WastinFred WashingtonGus WashingtonH. WashingtonIrving WashingtonM. WashingtonMed WashingtonN . WashingtonN WashingtonN, WashingtonN. WashingtonN. WahingtonN. WashgintonN. WashigtonN. WashinghtonN. WashingtionN. WashingtomN. WashingtonN. WashingtronN. WashinhtonN. WashintonN. WasingtonN. WassingtonN. ワシントンN.. WashingtonN.T. WashingtonN.WashingtonN> WashingtonNWashingtonNancy WashingtonNashingtonNat WashingtonNeal WashingtonNed W.Ned WashintonNed WasingtonNed-WashingtonNed. WashingtonNeil WashingtonNeo WashingtonNet WashingtonNew WashingtonNoah WashingtonN・ワシントンS. WashingtonT. WashingtonTed WashingtonW. WashingtonWASHINGTONWadingtonWahingtonWahsingtonWashgintonWashiWashigtonWashinghtonWashingtomWashingtonWashington NWashington N.Washington NedWashington NeoWashington, NWashington, N.Washington-YoungWashintonWashongtonWasingtonWastinWhashingtonWishingtonВашингтонВошингтонН. Вашингтонネッド・ワシントンワシントン + +299282Jimmy DorseyJames DorseySaxophonist, clarinetist and trumpet player, (born February 29, 1904, Shenandoah, Pennsylvania, USA – died June 12, 1957, New York City, New York, USA), he often played with his brother [a229639] and helped the Swing Jazz Era grow in New York. He died just months after his brother, both during their sleep.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Dorseyhttps://www.britannica.com/biography/Jimmy-Dorseyhttps://www.allmusic.com/artist/jimmy-dorsey-mn0000296745/biographyhttps://www.imdb.com/name/nm0234153/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103670/Dorsey_Jimmy1-21DavisDorsayDorseyJ .DorseyJ DorseyJ, DorseyJ. DonseyJ. DorsayJ. DorseyJ. SorseyJ.DorseyJames DorseyJimmie DorseyJimmyJimmy DonseyJimmy DorsayJimmy Dorsey - Jazz GroupTimmy DorseyД. ДорсиRed Nichols And His Five PenniesFrankie Trumbauer And His OrchestraJoe Venuti's Blue FourBix And His Rhythm JugglersBix Beiderbecke And His OrchestraJean Goldkette And His OrchestraBoyd Senter & His SenterpedesThe Whoopee MakersPaul Whiteman And His OrchestraJimmy Dorsey And His OrchestraThe Original Memphis FiveThe Mound City Blue BlowersJoe Venuti's Rhythm BoysEddie Lang's OrchestraCalifornia RamblersMiff Mole's MolersGreen Brothers' Novelty BandThe Dorsey Brothers OrchestraCornell And His OrchestraThe Big AcesIrving Mills And His Hotsy Totsy GangRed McKenzie And The Celestial BeingsJimmy Dorsey And His JammersThe Charleston ChasersHoagy Carmichael And His PalsJimmy Dorsey And His Original "Dorseyland" Jazz BandJoe Venuti And His New YorkersChick Bullock & His Levee LoungersThe Dorsey BrothersThe Dorsey Brothers And Their New DynamiksJimmy Dorsey, His Orchestra & ChorusThe Travelers (5)Paul Mills And His Merry MakersAlabama Red Peppers + +299573Morris JenningsAmerican jazz drummer and percussionist.Needs Votehttps://en.wikipedia.org/wiki/Morris_JenningsJenningsM. JenningsM.JenningsMaurice JenningsMoMo JenningsMooris JenningsMorris "Gator" JenningsMorris (Big Foot) JenningsMorris (The Gator) JenningsMorris JenningMorris Jennings, Jr.The Ramsey Lewis TrioWoody Herman And His OrchestraElectronic Concept OrchestraThe Operation Breadbasket Orch. & ChoirWoody Herman And The Thundering Herd + +299576Arthur HoyleArthur „Art“ Hoyle (* 9. September 1929 in Corinth, Mississippi; † 4. June 2020). Trumpet player with the Sun Ra Arkestra from 1955 to 1956. + +Needs Votehttps://www.legacy.com/obituaries/post-tribune/obituary.aspx?n=arthur-hoyle&pid=196306766https://web.archive.org/web/20120112075835/http://www.chicagojazz.com/magazine/feature-interview-with-art-hoyle-569.htmlhttps://de.wikipedia.org/wiki/Arthur_HoyleA. HoyleArt HayleArt HoylArt HoyleArthur HayleHoyleLionel Hampton And His OrchestraJu-Par Universal OrchestraOliver Nelson And His OrchestraLes Hooper Big BandThe Sun Ra ArkestraThe Bob Stone Big BandThe Art Hoyle Quintet + +299701Johnny GreenJohn Waldo GreenAmerican pianist, composer, arranger and conductor, born October 10, 1908 in New York City, New York, USA, died on May 15, 1989 in Beverly Hills, Los Angeles, California, USA. +Husband of actress, consumer advocate, and spokesperson [a9058792], Father of singer/songwriters and actresses [a1716995] and [a1062781]. + +[b]For the British vocalist of the 40s, see [a=Johnny Green (17)].[/b] + +Inducted into the Songwriters Hall of Fame in 1972. He charted twelve times with his orchestra and songs he wrote or co-wrote have charted 40 times, the last two--"Body and Soul" by Tony Bennett & Amy Winehouse in 2011 and "Forget About the Blame" by Trans-Siberian Orchestra in 2015. "Body and Soul" (co-written with [a=Edward Heyman], [a=Robert Sour] & [a=Frank Eyton]) has charted 13 times itself--7 times by different artists in 1930 alone.Needs Votehttps://en.wikipedia.org/wiki/Johnny_Greenhttps://www.songhall.org/profile/John_Greenhttps://www.imdb.com/name/nm0338004/https://www.angelfire.com/music5/tony2003/html/green.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103203/Green_JohnnyB. GreenBenny GreenF. GreenFreenG. GreenGabenGlennGreemGreenGreen J.W.Green JohnGreen, JohnGreen-HeymanGreeneGreene - JohnnyGreensGrenGrennGrrenGteenI. W. GreenI.F.GreenJ GreenJ W GreenJ, GreenJ. GeenJ. GreeJ. GreenJ. GreeneJ. J. GreenJ. W GreenJ. W. GreenJ. W. GreeneJ.-W. GreenJ.GreenJ.V. GreenJ.W. GreenJ.W. GreeneJ.W.GreenJoe GreenJoh. W. GreenJohn E. GreenJohn GreenJohn GreeneJohn W GreenJohn W, GreenJohn W. "Johnny" GreenJohn W. GreenJohn W.GreenJohn Waldo GreenJohn William GreenJohnney GreenJohnnie GreenJohnny B. GreenJohnny Green And His QuintetJohnny Green At The PianoJohnny GreeneJohnny J. W. GreenJohnny John W. GreenJohnny M. GreenJohnny W. GreenJohny GreenJonny GreenJoonny GreenR. L. Green, Jr.R.L. Green Jr.S.W. GreenTreenj. GreenБ. ГринГринДж. ГринJohnny Green And His OrchestraThe Johnny Green Quartet + +299702Leonard BernsteinLouis BernsteinAmerican composer, conductor, pianist, author and music lecturer. + +Born August 25, 1918 in Lawrence, Massachusetts, United States. +Died October 14, 1990 in The Dakota, New York City, NY, United States (aged 72). + +Most famous for his time as music director with the [a=New York Philharmonic] Orchestra (the first American-born conductor to lead a major American symphony orchestra) and his works such as "West Side Story" and "On The Town". +Inducted into Songwriters Hall of Fame in 1971. +He married actress [a=Felicia Montealegre] on September 10, 1951, with whom they had three children, [a=Jamie Bernstein], [a532277] and [a532275]. +Unrelated to [a=Elmer Bernstein], though they were friends.Needs Votehttps://en.wikipedia.org/wiki/Leonard_Bernsteinhttps://www.britannica.com/biography/Leonard-Bernsteinhttps://www.leonardbernstein.com/https://www.biography.com/musician/leonard-bernsteinhttps://www.famouscomposers.net/leonard-bernsteinhttps://www.musicianbio.org/leonard-bernstein/https://www.musicianguide.com/biographies/1608000930/Leonard-Bernstein.htmlhttps://www.famousbirthdays.com/people/leonard-bernstein.htmlhttps://www.loc.gov/collections/leonard-bernsteinhttps://www.geni.com/people/Leonard-Bernstein/6000000010685170541https://www.nyphil.org/about-us/artists/leonard-bernstein/https://www.kennedy-center.org/artists/b/ba-bn/leonard-bernstein/https://www.denverphilharmonic.org/leonard-bernstein/https://web.archive.org/web/20030811082427/https://www.sonyclassical.com/artists/bernstein/https://www.sonyclassical.com/artists/artist-details/leonard-bernsteinhttps://www.naxos.com/Bio/Person/Leonard_Bernstein/21045https://www.bach-cantatas.com/Bio/Bernstein-Leonard.htmhttps://www.imdb.com/name/nm0077086/https://www.youtube.com/channel/UCGmGJfwD5NaYvJt57mc1fVwhttps://www.x.com/lennybernsteinhttps://www.facebook.com/LeonardBernstein/https://www.facebook.com/FansOfLeonardBernstein/https://www.facebook.com/leonardbernsteinanniversary/https://www.facebook.com/LeonardBernstein100/https://www.instagram.com/leonardbernsteinofficial/https://adp.library.ucsb.edu/index.php/mastertalent/detail/107984/Bernstein_LeonardBeirsteinBensteinBerbsteinBermsteinBernasteinBernsBernsteimBernsteinBernstein LBernstein L.Bernstein LeonardBernstein, LBernstein, L.Bernstein, LeonardBernsteisBernstenBersteinBurnsteinC. BernsteinC. L. BurnsteinE. BernsteinH. BersteinI. BernsteinL BernsteinL. BernsteinL. BernstainL. BernstedinL. BernsteinL. BersteinL. BornsteinL.BernstainsL.BernsteinL.BernsteninLe. BernsteinLeandro BernsteinLennyLenny BernsteinLeo BernsteinLeonaord BernsteinLeonard BemsteinLeonard Bernstein'sLeonard Bernstein, ConductorLeonard BernštajnLeonard BersreimLeonard BersteinLeonard BerstienLeonardo BernsteinLeonhard BernsteinLeonid BernsteinLionard BernsteinLèonard BernsteinLéonard BernsteinLéonard BersteinL・バーンスタインMr. BernsteinR. BernsteinΛέοναρντ ΜπέρνσταινΛέοναρντ ΜπερνστάινБернстайнЛ. БернстайнЛеонард БернстайнЛеонард БернштајнЛеонард Бернштейнלאונרד ברנשטייןליאונרד ברנשטייןコープランドバーンスタインレオナード・バーンスタインレナード•バーンスタインレナード・バーンスタインレナード・バーンステイン伯恩斯坦倫納德伯恩斯坦New York Philharmonic + +299937Paul Weston (2)Paul WetsteinAmerican pianist, arranger, conductor, composer and the original music director for Capitol Records and helped start the Grammy Awards. +Born on March 12, 1912 in Springfield, Massachusetts. He died September 20, 1996 in Santa Monica, California. +He was married to singer [a269596]. + +Weston was the chief arranger for Tommy Dorsey's Orchestra from 1936 to 1940. He pioneered "mood music". He charted numerous times in the U.S. between 1945 and 1965: 23 times as a songwriter including the #1 smash " I'm Henery the Eighth, I Am" by Herman's Hermits (co-written by Fred Murray) in 1965; he charted 14 times with his orchestra, including hitting #2 with "Nevertheless (I'm in Love with You)". +In 1944, Paul was hired on as Musical Director and Artist and Repertoire consultant for Capitol, switching to Columbia Records in 1950, and bringing his wife (Capitol's #1 selling artist) with him. During the 1950s & 1960s he became increasingly more involved in television. +Weston and Stafford developed a comedy routine where they assumed the guise of a bad lounge act named Jonathan and Darlene Edwards.Needs Votehttp://en.wikipedia.org/wiki/Paul_Westonhttp://collections.music.arizona.edu/westonstafford/Paul/Biography/index.htmlhttps://adp.library.ucsb.edu/names/103378https://adp.library.ucsb.edu/names/210914Daul WestonP. WestonP. WestenP. WestoP. WestonP.WestonPaulPaul Weston (Wetstein)Paul Weston-WogonWatsonWebsterWenstonWestenWesternWestonWeston PaulWeston-PaulWeston-ShawWestonwWestorWetsteinП. ВестонPaul WetsteinJonathan Edwards (5)Eddie Miller And His OrchestraPaul Weston And His OrchestraPaul Weston And His Music From HollywoodJonathan And Darlene EdwardsJack Purvis And His OrchestraPaul Weston & His Dixie EightPaul Weston, His Orchestra And ChorusTen Cats And A MouseThe Paul Weston Chorus + +299939Dave BarbourDavid Michael BarbourAmerican guitarist, banjoist, and songwriter. + +Born: 28 May 1912 in Long Island, New York, USA. +Died: 11 December 1965 in Malibu Beach, California, USA (aged 53). +Married to singer [a=Peggy Lee] (1943 to 1952). + +As a songwriter, he charted eight times, all written with his wife at the time, singer Peggy Lee. He also charted once with his band, Dave Barbour and His Orchestra, in 1950, with "Mambo Jambo". He and Peggy had a #1 songwritten song in 1948 with "Mañana (Is Soon Enough for Me)", which Peggy sang. Their song "I Don't Know Enough About You" charted three times in 1946, by The Mills Brothers (#7), Peggy Lee (#7), and Benny Goodman and His Orchestra (#12).Needs Votehttp://en.wikipedia.org/wiki/Dave_Barbourhttps://www.allmusic.com/artist/dave-barbour-mn0000577301/biographyhttps://www.imdb.com/name/nm0053817/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1384125e177c4d9dd1fc4ae0f5c04daacb343/biographyhttps://www.britannica.com/biography/Dave-Barbourhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106911/Barbour_Davehttps://adp.library.ucsb.edu/names/106911BabourBarberBarbourBorbourBrabourD. BarbourD. HarbourD. M. BarbourD.BarbourDare BarbourDavd BarbourDave BarberDavid BarbourDavid M. "Dave" BarbourDavid M. BarbourHarbourLouis Armstrong And His OrchestraJack Teagarden's ChicagoansArtie Shaw And His OrchestraTeddy Wilson And His OrchestraHelen Humes And Her All-StarsBenny Goodman And His OrchestraDave Barbour OrchestraWoody Herman And His WoodchoppersGeorgie Auld And His OrchestraDave Barbour FourDave Barbour TrioThe Capitol JazzmenChu Berry And His OrchestraClyde Hurley & His OrchestraPutney Dandridge And His OrchestraThe Sunset All StarsThe Four Of A KindDave Barbour And The BraziliansTen Cats And A MouseRed Norvo's NineDave Barbour And His QuintetFrank Sinatra And His OrchestraHerbie Haymer's OrchestraThe Dave Barbour QuartetMahlon Clark SextetteThe Wilbert Baranco QuintetHerman Chittison Quartet + +299941Helen ForrestHelen FogelAmerican singer of the Big Band Swing Era, married to [a680946] and [a=Harry Jaeger]. Backed by [a=The Serenaders (11)] vocal group. + +Born: April 12, 1917 in Atlantic City, New Jersey, USA. +Died: July 11, 1999 in Los Angeles, California, USA. +Needs Votehttp://en.wikipedia.org/wiki/Helen_Forresthttps://adp.library.ucsb.edu/names/103123ForrestForrest, HellenH. ForrestH. FrostHale ForrestHelen ForestHelen Forrest And The Song MakersHelen Forrest With OrchestraHelen ForrestováHelen FrostHellen ForrestMiss Helen ForrestЭлен ФорестЭллен ФорестHarry James And His OrchestraArtie Shaw And His OrchestraBenny Goodman And His Orchestra + +299945Alvino ReyAlvin McBurneyAmerican swing era guitarist, musician, and bandleader. +Born July 01, 1911 in Oakland, California, USA. +Died February 24, 2004 in Salt Lake City, Utah, USA. + +Rey is best known as the father of the pedal steel guitar. His inventive style helped popularize the amplified guitar for generations to come. + +Rey grew up in Oakland and moved to Cleveland, Ohio, at age ten. His first interest in music came when he received a banjo as a birthday gift. In 1927 he made his professional debut with Ev Jones and a year later signed with Phil Spitalny. He eventually switched to guitar and adopted the name Alvino Rey in 1929 while performing in New York City, where Latin music was the rage. He worked for Russ Morgan and Freddie Martin before joining Horace Heidt's outfit in 1935. + +With Heidt, Rey switched to the pedal steel guitar (which he later modified and called a console guitar) and quickly became popular for his unique sound. It was also with Heidt where Rey met his wife, King Sister [a3217326]. They married (1937-1997, her death). + +In 1938 Heidt's orchestra landed a spot at the Biltmore Hotel in New York. Their new radio sponsor had signed them on the strength of Alyce King's vocals. Heidt was resentful and seized upon the first opportunity to fire her when one night her microphone fell off its stand and hit a patron. The other sisters immediately quit, followed by Rey, who took saxophonist Frank DeVol with him. They headed to Los Angeles, where Rey worked on forming his own band, which debuted in 1939 with the King Sisters as star vocalists. It was an immediate success and they began touring the country, eventually landing a job at the Biltmore, where they had been fired a year earlier and were quickly fired again when Rey played a jazz number instead of the society dance music favored by the house. + +The group found refuge in New Jersey at the Rustic Cabin, where they were broadcast over radio station WOR. Rey became famous for opening his act with an effect that sounded like a multitude of electrified voices, a gimmick whose technique he refused to reveal but involved Louise singing into a mic connected to his guitar. He was also well-known for playing Latin and Hawaiian music (two styles he later grew to hate). + +In 1941 Rey's group substituted for an ailing Dinah Shore at New York's Paramount Theater, which led to more exposure, and soon they were one of the most popular acts in the country, garnering top ten hits and making appearances in Hollywood films. In 1942 Rey reorganized his orchestra, bringing in an enormous brass section. The new lineup included such future stars as Ray Conniff, Neal Hefti, Billy May, Johnny Mandel, and Zoot Sims. Though considered one of the best bands of all time by critics, the musicians' union recording ban of 1943 meant they were never able to record. Financial hardship caused by the strike forced Rey and his musicians to take night jobs at a war-plant before Rey officially dissolved the group in 1944 and enlisted in the Navy, where he formed a service band. + +After his discharge in late 1945 Rey formed a new orchestra, which produced a few hits before being disbanded in 1950. Rey toured with small combos throughout the rest of the decade. In the late 1950s he served as music director for the King Sisters as they made their comeback. He also worked on several exotica projects with such artists as Esquivel, George Cates, and the Surfmen. In 1965 ABC broadcast a special featuring the extended King Family. This special grew into a series which ran for five seasons, with Rey as musical director. Rey continued to perform well into his eighties. Alvino Rey passed away from pneumonia and congestive heart failure in 2004.Needs Votehttp://steelguitarforum.com/Forum15/HTML/003629.html https://en.wikipedia.org/wiki/Alvino_Reyhttps://www.spaceagepop.com/rey.htmhttps://www.imdb.com/name/nm0721034/http://www.parabrisas.com/d_reya.phphttps://www.smithsonianmag.com/arts-culture/alvino-reys-musical-legacy-73521660/https://adp.library.ucsb.edu/names/103886A. RayAlvino RayAlvino Rey And His Talking GuitarReyThe Music Of Alvino ReyIra IronstringsMetronome All StarsThe SurfmenL'Ensemble Instrumental Des IlesAlvino Rey And His Orchestra + +299946Paul WhitemanPaul Samuel WhitemanAmerican bandleader and orchestral director, born 28 March 1890 in Denver, Colorado, USA; died 29 December 1967 in Doylestown, Pennsylvania, USA. + +He was leader of the most popular dance bands in the US during the 1920s. With his band, he was often referred to him as the "King Of Jazz" during this time, and this was reflected in his earnings accordingly.Needs Votehttps://en.wikipedia.org/wiki/Paul_Whitemanhttps://www.britannica.com/biography/Paul-Whitemanhttps://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/paul-whitemanhttps://www.imdb.com/name/nm0925842/https://adp.library.ucsb.edu/names/104378"Pops""Pops" WhitemanP. WhiteP. WhitemanPaul 'Pops' WhitemanPaul Whiteman's BandPaul WhitemenPaul WhitmanPopsWhitemanWhitmanПол УайтменPaul Whiteman And His OrchestraPaul Whiteman's Three TsSan Francisco SymphonyPaul Whiteman's Charleston BandPaul Whiteman And His "New" Palais Royale OrchestraPaul Whiteman And His Orchestra And ChorusPaul Whiteman's Rhythm BoysPaul Whiteman's Swing WingPaul Whiteman & His Concert OrchestraPaul Whiteman & His Concert Orchestra And ChorusPaul Whiteman's Swinging StringsPaul Whiteman And His All American BandPaul Whiteman And His Ambassador OrchestraPaul Whiteman's Sax SoctettePaul Whiteman's Bouncing BrassPaul Whiteman & His Swing GroupPaul Whiteman & His Dance Band + +299948June ChristyShirley LusterAmerican jazz/big band singer. +Born November 20, 1925, Springfield, Illinois, USA. +Died June 21, 1990, Sherman Oaks, California, USA. +She was known for her silky smooth vocals, and replaced [a=Anita O'Day] in [a=Stan Kenton]'s orchestra c. 1945. +She charted eight times with [a320804] from 1945 to 1947 in the U.S. including the #2 hit in the U.S. "Tampico" and #6 "It's Been a Long, Long Time" in 1945 as well as #6 "Shoo Fly Pie (And Apple Pan Dowdy)" in 1946. Seven of the eight made it into the top 16. +Between 1953-1961, Christy recorded more than 10 LPs and EPs (as well as many 45's) with the arranger/conductor [a300046] (whom she worked with during her period with Kenton). Married to reed player [a=Bob Cooper] (1946 -1990, her death).Needs Votehttps://en.wikipedia.org/wiki/June_Christyhttps://www.imdb.com/name/nm0160700/https://www.allmusic.com/artist/june-christy-mn0000837592/biographyhttps://rateyourmusic.com/artist/june_christyChristyJ. ChristyJudy ChristyJuly ChristyJune ChristieJune Christy And ChorusJune Christy, OrchMiss ChristyДжун Кристиジューン・クリスティMetronome All StarsMetronome All-Star BandJune Christy And Friends + +299951The Andrews SistersOriginally from Minneapolis, Minnesota, USA [b]The Andrews Sisters[/b] were a highly successful close harmony singing group of the swing and boogie-woogie eras. + +Throughout their long career, the sisters sold well over 75 million records (the last official count released by [l=MCA Records] in the mid-1970s). +They had 113 charted Billboard hits, 46 reaching Top 10 status (more than [a=Elvis Presley] or [a=The Beatles]). + +The group was inducted into the Vocal Group Hall of Fame in 1998. + +The group consisted of three sisters: +* contralto [b]LaVerne Sophia Andrews[/b] (July 6, 1911 – May 8, 1967), +* soprano [b]Maxene Angelyn Andrews[/b] (January 3, 1916 – October 21, 1995), and +* mezzo-soprano [b]Patricia Marie "Patty" Andrews[/b] (February 16, 1918 – January 30, 2013).Needs Votehttps://www.cmgww.com/music/andrews/https://en.wikipedia.org/wiki/The_Andrews_Sistershttps://www.imdb.com/name/nm1679536/https://www.facebook.com/AndrewsSistershttps://adp.library.ucsb.edu/names/301483https://mnmusichalloffame.org/andrews-sisters/Adrew SistersAndrew SistersAndrew's SistersAndrews SIstersAndrews SisterAndrews SistersAndrews Sisters With OrchestraAs Andrews SistersDie Andrews SistersDie Andrews-SistersHermanas AndrewsLas Andrew SistersLaverne, Maxine & Patty AndrewsLes Andrew SistersLes Andrews SistersPatty · Maxene · LaVernePatty • Maxene • La VernePatty, Maxene And Laverne AndrewsPatty, Maxene, & LaverneThe Andrew SistersThe Andrew's SistersThe Andrews SisThe Andrews SistasThe Andrews Sisters Featuring Patty AndrewsThe Andrews Sisters Vocal Trio With OrchestraThe Andrews Sisters With OrchestraThe Andrews Sisters'The Three Andrews SistersThree SistersСестры Эндрюсアンドリュース・シスターズPatty AndrewsMaxene AndrewsLaVerne Andrews + +299953Freddie SlackFrederick Charles SlackAmerican jazz pianist, bandleader, composer & arranger. +Known for playing in the Swing and Boogie-Woogie styles. + +Born August 07, 1910 in Westby, Wisconsin, USA. +Died August 10, 1965 in Hollywood, California, USA. + +Played with : Ben Pollack (1934-'36), Jimmy Dorsey (1936-'39), Will Bradley (1939-'41), Big Joe Turner, Johnny Mercer, Margaret Whiting and others. +In 1942 he formed his own big band which recorded for Capitol Records until 1947, later moved to California, recorded in 1955, with a small group, an album for EmArcy. + +As a composer, known for "Cow Cow Boogie", "Strange Cargo", "Cuban Sugar Mill", and "Riffette". + +Married to singer [a=Jo Ann Greer] (1950-1951, divorced).Needs Votehttps://en.wikipedia.org/wiki/Freddie_Slackhttps://www.imdb.com/name/nm0805134/https://fromthevaults-boppinbob.blogspot.com/search/label/Freddie%20Slack?m=0https://adp.library.ucsb.edu/index.php/mastertalent/detail/344115/Slack_Freddy_FreddieBlackF. FlackF. SlackF. SlakFlackFred SlackFreddie SlakFreddie StackFreddie StacksFreddy SlackSlackSlacksSlakStackJimmy Dorsey And His OrchestraWill Bradley And His OrchestraThe Freddie Slack TrioFreddie Slack And His OrchestraWill Bradley TrioFreddie Slack And His TrioFreddie Slack And His Eight Beats + +299962Axel StordahlOdd Axel StordahlNorwegian-American orchestra conductor, leader, musician and arranger. Best known for his work with Frank Sinatra. +Born August 8, 1913, Staten Island, New York Died August 30, 1963, Encino, California (age of 50). Married to singer [a299960]. +He learned to play the trumpet in public school. He played trumpet for many name bands in New York in the 1920s and '30s. +He played trumpet for Tommy Dorsey and soon began arranging for the group. In January 1942, when Sinatra convinced Dorsey to let him record four songs without Dorsey for Columbia Records. As they were successful, Stordahl then joined Sinatra when he left Dorsey to go solo. Sinatra cut around three hundred sides for Columbia Records, of which three quarters were arranged by Stordahl. +With his sophisticated orchestrations, Stordahl is credited with helping to bring pop arranging into the modern age. He was one of the first American arrangers to tailor his accompaniments to the vocal qualities of a specific singer. Besides Sinatra, Stordahl worked with other singers such as Bing Crosby, Doris Day, Eddie Fisher, Dinah Shore, Nat 'King' Cole and Dean Martin, among many others.Needs Votehttps://en.wikipedia.org/wiki/Axel_Stordahlhttps://www.allmusic.com/artist/axel-stordahl-mn0000307225/biographyhttps://www.jazzstandards.com/biographies/biography_108.htmhttps://www.imdb.com/name/nm0832428/https://knowotr.blogspot.com/2010/05/axel-stordahl-1913-63.htmlhttps://adp.library.ucsb.edu/names/100064https://www.rogalyd.no/artist/axel-stordahl-1913-1963A. StardahlA. StodahlA. StordahlA. StordalA. StordhalA. StorrdahlA. StrodahlA.StordahlAlex StohrdahlAlex StordahlAxel StardahlAxel StordalAxel StordhalAyel StordahlG. Axel StordahlM.o Axel StordahlStardahlSterdalStoagahlStorahlStordahStordahlStordahnStordaholStordalStordaleStordallStordhalStordhanStorhdahlStourdahlW. StordahlTommy Dorsey And His OrchestraAxel Stordahl OrchestraThe Strings Of StordahlThe Three EsquiresBert Block & His OrchestraThe Three Chips + +300031Frank RosolinoAmerican jazz trombonist +Born August 20, 1926 in Detroit, Michigan, USA, died November 26, 1978 in Van Nuys, California, USA (suicide) +He performed with several big bands after serving in the military during WWII.Needs Votehttps://en.wikipedia.org/wiki/Frank_Rosolinohttp://www.trombone-usa.com/rosolino_frank.htmhttps://adp.library.ucsb.edu/names/341111F .RosolinoF. RosolinoFranck RosilinoFranck RosolinoFrank RosilinoFrank RosoliniFrank RossalinoFrank RosselinoFrank RossellinoFrank RossilinoFrank RossolinoFrank. RosolinoFrankie RosolinoFrankie RossFransk RosolinoRosolinoRosolino FrankФ. Росолиноフランク・ロソリーノBuddy Rich And His OrchestraStan Kenton And His OrchestraDizzy Gillespie Big BandFrancy Boland And OrchestraRussell Garcia And His OrchestraZoot Sims SextetShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraSupersaxHoward Rumsey's Lighthouse All-StarsBill Holman And His OrchestraGeorgie Auld And His OrchestraStanley Wilson And His OrchestraThe Buddy Bregman OrchestraTerry Gibbs And His OrchestraBill Holman's Great Big BandLouie Bellson Big BandTrombones UnlimitedJohnny Richards And His OrchestraThe Los Angeles Neophonic OrchestraShorty Rogers Big BandJimmy Giuffre's OrchestraHot Rod Rumble OrchestraThe Lennie Niehaus OctetBobby Knight's Great American Trombone CompanyFrank Rosolino QuintetJohnny Mandel OrchestraBobby Troup And His Stars Of JazzThe Buddy Bregman BandBob Cooper NonetTerry Gibbs Dream BandFrank Rosolino And His QuartetTutti's TrombonesFrank Strazzeri SextetPete Rugolo And His All StarsStan Levey SextetGerry Mulligan And The Jazz ComboThe Georgie Auld QuintetSoundstage All-StarsThe Lou Levy SextetThe Frank Rosolino SextetTommy Turk And His OrchestraBoy Edgar Big BandFour Trombone BandRosolino-Persson SextetChet Baker Big BandRichie Kamuca Bill Holman Octet + +300032George RobertsGeorge Mortimer RobertsGeorge Roberts, "Mr. Bass Trombone" is one of the most beloved personalities in the music world. The man whose sound we so easily recognize in movies, records and television, is also the man who virtually single-handedly brought the Bass Trombone from its last low trombone status, to the forefront as a solo instrument which could stand alone and sound wonderful. +Born: March 22, 1928 in Des Moines, Iowa. +Died: September 28, 2014 in Fallbrook, California.Needs Votehttps://web.archive.org/web/20130606123149/http://georgerobertstribute.com/https://en.wikipedia.org/wiki/George_Roberts_(trombonist)https://www.radioswissjazz.ch/en/music-database/musician/15131d4a9f73f60714309f3868b3bfbee476b/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/208587/Roberts_GeorgeDick HixonG. RobertsGeorge M. RobertsGeorge Mortimore RobertsGeorge Roberts His Big Bass TromboneGeorges M. RobertsMr. Bass Trombone George RobertsMr. RobertsMr. Roberts & His Big Bass TromboneMr. Roberts And His Big Bass TromboneRoberts George M.Harry James And His OrchestraStan Kenton And His OrchestraHenry Mancini And His OrchestraBenny Carter And His OrchestraShorty Rogers And His GiantsPete Rugolo OrchestraLalo Schifrin & OrchestraStanley Wilson And His OrchestraThe Buddy Bregman OrchestraThe Frankie Capp Percussion GroupDennis Farnon And His OrchestraMarty Paich Big BandShorty Rogers Big BandHot Rod Rumble OrchestraThe Bob Bain Brass EnsembleThe Buddy Bregman BandThe Buddy DeFranco Big BandBill Tole And His OrchestraNeal Hefti And His Jazz Pops OrchestraGeorge Roberts' SextetJohn Williams And Co. + +300033Pete CandoliWalter Joseph Primo CandoliAmerican jazz trumpeter and arranger. +Born June 28, 1923 in Mishawaka, Indiana, USA. +Died January 11, 2008 in Studio City, California, USA. +Candoli got his first big break in 1941 when he joined Sonny Dunham And His Orchestra. After two years he moved on to play in New York in many bands, including [a=Tex Beneke] and [a=Jerry Gray] before moving to Los Angeles in 1952 for intensive studio work before to fronted his own band in the 1960s and formed a nightclub act in 1972. +Brother of trumpeter [a=Conte Candoli]. +Married to singers [a=Betty Hutton], [a=Edie Adams] and actress Vicky Lane.Needs Votehttps://www.candoli.com/https://en.wikipedia.org/wiki/Pete_Candolihttps://www.imdb.com/name/nm0133778/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13280f5821d2d1ba9408a16b41004d34f836d/biographyhttps://www.ijc.uidaho.edu/petecandoli.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/306874/Candoli_Petehttps://adp.library.ucsb.edu/names/306874CandoliCondoliCootie ChesterfieldP. CandoliP.CandoliPetePete CandaliPete Candoli And His TrumpetPete CandoriPete CondoliPete CondollPeter CandoliW. Pete CandoliWalter CandoliWalter P. "Pete" CandoliWalter P. 'Pete' CandoliWalter P. CandoliCootie ChesterfieldTommy Dorsey And His OrchestraLes Brown And His Band Of RenownWoody Herman And His OrchestraMetronome All StarsBuddy Rich And His OrchestraStan Kenton And His OrchestraRay Anthony & His OrchestraTeddy Powell And His OrchestraWill Bradley And His OrchestraHenry Mancini And His OrchestraWoody Herman & The New Thundering HerdGerry Mulligan TentetteShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraLionel Hampton And His All-Star Alumni Big BandThe Marty Paich Dek-TetteWoody Herman & The HerdStanley Wilson And His OrchestraThe Buddy Bregman OrchestraElmer Bernstein & OrchestraLeith Stevens & His OrchestraWoody Herman And The Swingin' HerdJerry Gray And His OrchestraLouie Bellson Big BandWoody Herman And The Las Vegas HerdDennis Farnon And His OrchestraJohnny Richards And His OrchestraSonny Dunham And His OrchestraMarty Paich Big BandWoody Herman And His Third HerdHot Rod Rumble OrchestraRay McKinley And His OrchestraBobby Troup And His Stars Of JazzThe Bob Bain Brass EnsemblePete Candoli And His OrchestraBob Cooper NonetDan Terry And His OrchestraPete & Conte CandoliTutti's TrumpetsPete Rugolo And His All StarsThe Jimmy Rowles SextetBill Harris SeptetThe Brothers CandoliSoundstage All-StarsThe Brothers Candoli: SextetPete Candoli SeptetNeal Hefti And His Jazz Pops OrchestraMilt Bernhart Brass EnsemblePete Candoli His Trumpet, Orchestra & ChorusDick Spencer QuintetArt Pepper + Eleven + +300035Lloyd UlyateLloyd UlyateAmerican trombonist, born 1927, died 2004, who has worked in Hollywood for many years. Has worked for David Rose, Nelson Riddle, Billy May, Henry Mancini, Percy Faith, Jerry Fielding, Max Steiner, Alfred Newman, John Williams, Victor Young, Jerry Goldsmith, Bernard Hermann, Elmer Bernstein, Franz Waxman, Igor Stravinsky, and more. Some of the movies he has worked on include Jaws, Star Trek, E.T., West Side Story, Close Encounters, Dick Tracy, My Fair Lady, Twister, Around the World in 80 Days.Needs Votehttps://www.imdb.com/name/nm0880769/George UlyateLLoyd E. UlyateLloyd E. UlyateLloyd ElliottLloyd UlateLloyd UlgateLloyd UluyateUlyate LloydUlyate Lloyd E.Lloyd ElliottBilly May And His OrchestraRussell Garcia And His OrchestraIke Carpenter And His OrchestraLalo Schifrin & OrchestraThe Buddy Bregman OrchestraThe Jerry Fielding OrchestraHot Rod Rumble OrchestraThe Buddy Bregman BandDan Terry And His OrchestraTutti's Trombones + +300036Georgie AuldJohn AltwergerCanadian jazz saxophonist (tenor, alto and soprano) and bandleader who moved to Brooklyn, New York at the age of 10. +He played alongside countless notables and in many prominent Big Bands such as [a=Benny Goodman And His Orchestra]. For his long list of "in groups" please see the profile page of his real name alias [a=John Altwerger]. +Born : May 19, 1919 in Toronto, Canada. +Died : January 08, 1990 in Palm Springs, California. Needs Votehttp://en.wikipedia.org/wiki/Georgie_Auldhttp://www.swingmusic.net/Auld_Georgie.htmlhttps://www.imdb.com/name/nm0042032/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/55642ee45e89f804d9543235c177da07cfac9/biographyhttps://www.allmusic.com/artist/georgie-auld-mn0000651193/discographyhttps://www.loc.gov/resource/gottlieb.00361.0https://rateyourmusic.com/artist/georgie_auldhttps://www.jazzwax.com/2011/07/georgie-auld-in-the-late-40s.htmlhttps://adp.library.ucsb.edu/names/104882AuldG. AuldG.AuldGeo. AuldGeoge AuldGeorg AuldGeorge AuldGeorge AultGeorgie (Altwerger) AuldGeorgie Auld With Rhythm AccompainmentGeorgie Auld, Tenor Sax SoloGéorgie Auldジョージィ・オールドジョージ・オウルドジョージ・オールドJohn AltwergerBunny Berigan & His OrchestraBenny Goodman SextetBillie Holiday And Her OrchestraArtie Shaw And His OrchestraBenny Carter And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetGeorgie Auld And His OrchestraMaynard Ferguson & His OrchestraChubby Jackson's OrchestraGeorgie Auld's All-StarsHot Rod Rumble OrchestraGeorgie Auld And His SextetAuld-Hawkins-Webster SaxtetThe Georgie Auld QuintetBuddy Rich All StarsCharlie Christian JammersBenny Carter And His All Stars + +300037Conrad GozzoConrad Joseph GozzoAmerican trumpet player. + +Born 6 February 1922 in Connecticut. +Died 8 October 1964 in Los Angeles, USA.Needs Votehttps://en.wikipedia.org/wiki/Conrad_Gozzohttps://www.allmusic.com/artist/conrad-gozzo-mn0000118997?cmpredirecthttps://adp.library.ucsb.edu/names/318526C. GozzoConaad GozzoConrad GazzoConrad GossoConrad Gozzo Y Sus Swinging StringsConrad GuzzoConrad J. GozzoGonrad GozzoGonzo ConradGozzoGozzo ConradK. GozzoKonrad GozzoHarry James And His OrchestraWoody Herman And His OrchestraBuddy Rich And His OrchestraBilly May And His OrchestraRay Anthony & His OrchestraClaude Thornhill And His OrchestraHenry Mancini And His OrchestraBenny Goodman And His OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraGordon Jenkins And His OrchestraWoody Herman & The HerdGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraThe Universal-International OrchestraBob Keene OrchestraWoody Herman And The Swingin' HerdThe Jerry Fielding OrchestraGlen Gray & The Casa Loma OrchestraJerry Gray And His OrchestraLou Bring And His OrchestraWoody Herman And The Las Vegas HerdMembers Of The Benny Goodman OrchestraWoody Herman And His Third HerdCy Touff OctetConrad Gozzo And His Swing WingBobby Christian And His OrchestraTutti's TrumpetsThe Buddy DeFranco Big BandConrad Gozzo And His OrchestraConrad Gozzo And His Swinging Strings + +300038Ray LinnRay LinnAmerican jazz trumpet player +Born October 20, 1920 in Chicago, Illinois. died November 04, 1996 in Columbus, OhioNeeds Votehttps://en.wikipedia.org/wiki/Ray_Linnhttps://www.welkshow.com/ray-linn.htmlhttps://musicianbio.org/ray-linn/https://adp.library.ucsb.edu/names/109743LinnR. LinnRLRay LinRay LindRay Linn (RL)Ray LynnRay S. LinnRay S. Linn jr.Ray S. Linn, Jr.Raymond LinnRaymond S. LinnTommy Dorsey And His OrchestraHarry James And His OrchestraLes Brown And His Band Of RenownWoody Herman And His OrchestraBilly Eckstine And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraBoyd Raeburn And His OrchestraRussell Garcia And His OrchestraBob Crosby And His OrchestraShorty Rogers And His OrchestraPete Rugolo OrchestraWoody Herman & The HerdGeorgie Auld And His OrchestraStanley Wilson And His OrchestraThe Buddy Bregman OrchestraWoody Herman's Big New HerdThe Universal-International OrchestraJimmy Mundy OrchestraThe Frankie Capp Percussion GroupWoody Herman And The Swingin' HerdJerry Gray And His OrchestraMaynard Ferguson & His OrchestraLou Bring And His OrchestraHank Mancini And The Mouldy SevenWoody Herman And The Las Vegas HerdHot Rod Rumble OrchestraRed Norvo SeptetBuddy DeFranco And His OrchestraAl Donahue And His OrchestraPete Rugolo And His All StarsThe Tom Talbert Jazz OrchestraBuddy DeFranco And The All-StarsRed Norvo's NineMilt Bernhart Brass EnsembleRay Linn's Hollywood Swing StarsFrank Sinatra And His OrchestraRay Linn And His OrchestraThe Band That Plays The BluesThe Greig McRitchie BandBoyd Raeburn All-Stars + +300041Ray LeatherwoodAmerican jazz double-bassist. +Born : April 24, 1914 in Itasca, Texas. +Died : January 29, 1996 in Camarillo, California. + +Ray worked in the bands of Joe Venuti, Bob Chester, Tommy Dorsey, Les Brown, sessionman in the 1950s and 1960s, recorded with Doris Day, Rosemary Clooney, Julie London, Pete Fountain, Sonny James and many others. +Needs VoteLeatherwoodRay LeatherfordRay LeathersworthRoy LeatherwoodTommy Dorsey And His OrchestraLes Brown And His OrchestraBob Chester And His OrchestraRosy McHargue & His RagtimersJohnny Varro trioPhil Moody TrioRay Bauduc - Nappy Lamare And Their Dixieland Band + +300042Fred NormanAmerican jazz trombonist, songwriter and arranger. +Born : October 05, 1910 in Leesburg, Florida - Died : February 19, 1993 in New York City, New York. +He began his career in 1932 as a trombonist and singer with the Claude Hopkins Orchestra. In the late 1930's and early 40's, he was a music arranger for Benny Goodman, Gene Krupa, Lionel Hampton, Jack Teagarden, Artie Shaw and Tommy Dorsey, among others. The Benny Goodman Orchestra recorded his composition "Smoke House Rhythm" in 1938. In the 1950's he was a music director with several recording companies and worked closely with singers including Sarah Vaughan and Dinah Washington.Needs Votehttps://adp.library.ucsb.edu/names/107179F. NormanFreddie NormanFreddy NormanNormanNorman, F.Fred Norman's OrchestraClaude Hopkins And His OrchestraFred Norman And EnsembleFred Norman's Orchestra And Chorus + +300044Gerald WigginsGerald Foster WigginsAmerican composer and pianist, organist, bassist and conductor. +Born: 12th May 1922 New York City, New York, USA +Died: 13th July 2008 Los Angeles, California, USA. + Father of jazz bassist [a400947]. Vocal coach for [a135189].Needs Votehttps://en.wikipedia.org/wiki/Gerald_WigginsG. WigginsG.WigginsGeorge WigginsGerald F. WigginsGerald Foster WigginsGerry WigginsJ. WigginsJerry "Headers" WigginsJerry WigginsWigginsДжеральд УиггинсJack Costanzo And His OrchestraLouis Armstrong And His OrchestraBuddy Rich And His OrchestraRussell Garcia And His OrchestraIllinois Jacquet And His OrchestraBenny Carter And His OrchestraLes Hite And His OrchestraZoot Sims QuartetThe Gerald Wiggins TrioCal Tjader QuartetThe Jerry Fielding OrchestraThe Monty Alexander QuintetRussell Jacquet And His All StarsThe Scott Hamilton QuintetBuddy Collette QuintetDexter Gordon & OrchestraThe Buddy Collette - Chico Hamilton SextetGerald Wilson Orchestra of The 80'sBen Webster SextetLeonard Feather's West Coast JazzmenBuddy Rich All StarsThe Oscar Moore TrioThe Chico Hamilton SextetThe Gerald Wiggins QuartetJerry Wiggins TrioThe Buddy Collette Big BandFour Trombone BandBuddy Rich NonetJoe Darensbourg And His "Flat Out" FiveGerald Wiggins' Orchestra"King David" And His Little Jazz FourBuddy Collette OctetThe Red Holloway/Clark Terry SextetJohn Graas Quintet + +300046Pete RugoloPietro RugoloSicilian-born US based jazz composer and arranger. +Born December 25, 1915 in San Piero Patti, Sicily, Italy. +Died October 16, 2011 in Sherman Oaks, California. + +Born in Sicily, emigrated to the U.S. with his family in 1920 (when he was 5). Best known for his music for many U.S. TV programs in the 1960s & 1970s. +He was one of the most prolific arrangers for [a212786]'s 1945-1949 orchestras. He soon started turning out pop arrangements, landing a position as music director of [l654] in 1949, where he became even more prolific with his arrangements. Some of the artists he did charts for include [a57628], [a145288], [a330342], [a273817] (in his brief pop period), and others. +His work in TV began in earnest in the late 1950's and kept going until the mid-1980's, and included music for films as well as for the series "Leave It to Beaver", "M*A*S*H", "Alias Smith and Jones", "Fantasy Island", "Run for Your Life'', and numerous others. +While he was at Capitol, and between 1953-1961, Rugolo recorded more than 10 LPs and EPs (as well as many 45's) with the singer [a299948], (whom he had worked with earlier during his Kenton association).Needs Votehttp://en.wikipedia.org/wiki/Pete_Rugolohttps://www.imdb.com/name/nm0006266/https://www.allaboutjazz.com/musicians/pete-rugolohttps://www.allmusic.com/artist/pete-rugolo-mn0000321194/biography?1682553134979https://www.spaceagepop.com/rugolo.htmhttps://www.jazzwax.com/2011/10/pete-rugolo-1915-2011.htmlP. ReguloP. RogoloP. RugaloP. RugoloP. RuguloP.RugoloPete ReguloPete RuggoloPete RugolPete RuguloPeter RugoloPeter RuguloRigoloRuboloRugeloRuggoloRugoloRuguloП. РуголоMetronome All StarsStan Kenton And His OrchestraPete Rugolo OrchestraVido Musso And His OrchestraPete Rugolo And His All StarsThe Poll Cats + +300047Ernie FeliceAmerican accordionist. +Born April 11, 1922 – died September 13, 2015.Needs Votehttps://www.erniefelice.com/https://www.imdb.com/name/nm2060685/Ernie FiliceFeliceThe Benny Goodman QuintetThe Ernie Felice QuartetErnie Felice And His Orchestra + +300049Lowell MartinJazz trombonistCorrectL. MartinLMLowell Martin (LM)M. LowellMartinTommy Dorsey And His Orchestra + +300050Lena HorneLena Mary Calhoun HorneAmerican singer, actress, dancer and civil rights activist. +Born June 30, 1917, Brooklyn, New York, USA +Died May 9, 2010, Manhattan, New York, USA. +She was secretly married to musical director and composer [a301381] in 1947, but because of the delicate politics of the interracial match led the couple to move to Paris for a while, and they avoided publicly announcing the marriage for three years. +In 1942, she became the first African-American performer to be put under contract by a major studio. She fought with first lady Eleanor Roosevelt to pass anti-lynching laws. The combination of Horne’s disarming talent and fierce individuality created a powerful force in breaking down racial barriers in Hollywood and beyond.Needs Votehttps://en.wikipedia.org/wiki/Lena_Hornehttps://www.britannica.com/biography/Lena-Hornehttps://www.allmusic.com/artist/lena-horne-mn0000815575/biographyhttps://www.biography.com/musicians/lena-hornehttps://www.imdb.com/name/nm0395043/https://larrybeatsthestreets.wordpress.com/2010/05/07/lets-talk-about-some-lena-horne-action/https://broadcast41.uoregon.edu/biography/horne-lenahttps://adp.library.ucsb.edu/names/103244HorneL. HorneL.HorneLHLeana HorneLenaLena HornLena Horne & ChorusLena Horne & OrchestraLena Horne And OrchestraLena HornerLene HorneRena HorneЛина Хорнリナ・ホーンLe Jazz HotTeddy Wilson And His Orchestra + +300122Dave McRaeUS woodwind musician whose credits include the clarinet, and alto & baritone saxophones. +Brother of [a313171] + +For the New Zealand arranger, see [a=Dave MacRae].Needs Votehttps://adp.library.ucsb.edu/names/206636D. Mc RaeD. McRaeDave MacRaeDave Mc CreaDave Mc RaeDave McCreaDavid McRaeMcRaeLouis Armstrong And His All-StarsRoy Eldridge And His OrchestraSy Oliver And His OrchestraDave McRae Orchestra + +300546Hank D'AmicoHenry D'AmicoAmerican jazz clarinetist and saxophonist player. +D'Amico played with [a1787788](1936), [a306398] (1936-1939), [a527956] (1940-1941),[a403579], [a254768], [a306398] (again), CBS (studio group), [a764782], [a229639], ABC (staff, for ten years), [a301372] (1950s), [a38201] (1950s) and in small groups. +In 1954 he recorded his only album as leader entitled "Holiday with Hank" (Bethlehem Records). +One of his last work (1964) was with the Morey Field Trio. Died of cancer. + +Born: March 21, 1915 in Rochester, New York. +Died: December 03, 1965 in New York City, New York. + + +Needs Votehttps://en.wikipedia.org/wiki/Hank_D%27Amicohttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/42492c5cba8b2c928391d4bdc818ac1324d7d/biographyhttps://www.allmusic.com/artist/hank-damico-mn0000090631https://www.imdb.com/name/nm3432612/https://adp.library.ucsb.edu/names/107194H. D'AmicoH. D’AmicoHand D'AmicoHank D-AmicoHank d'AmicoHenry "Hank" D'AmicoHenry 'Hank' D'AmicoHenry D'AmicoCozy Cole All StarsLarry Clinton And His OrchestraBilly Butterfield And His OrchestraSy Oliver And His OrchestraGeorge Wettling's New YorkersRed Norvo And His OrchestraNeal Hefti's OrchestraMildred Bailey And Her OrchestraRed Norvo All StarsJohnny Guarnieri Swing MenHank D'Amico SextetJazz Renaissance QuintetHank D'Amico QuartetJohnny Guarnieri's All Star OrchestraHank D'Amico OrchestraMax Kaminsky And His Dixieland BashersStan Rubin And His Tigertown Orchestra + +300548Harvey PhillipsTuba player +Born 2 December 1929 in Aurora, MO, died 20 October 2010 in Tubaranch, Bloomington, IN + +[was] Free-Lance recording artist; Tuba soloist and clinician. First Tubaist with The Goldman Band, New York City Ballet Orchestra, Bell Telephone Hour, Symphony of the Air and New York Brass Quintet. Brass instructor for the National Orchestral Association.Needs VoteDr. Harvey G. PhillipsHarvey G. PhillipsHarvey PhilipsHarwey PhilipHeavey PhilipsQuincy Jones And His OrchestraGil Evans And His OrchestraJimmy McPartland And His DixielandersSauter-Finegan OrchestraThe Matteson - Phillips Tubajazz ConsortThe New York Brass QuintetPee Wee Erwin And His Dixieland All-StarsOrchestra U.S.A.The Quincy Jones Big BandMichel Legrand Big BandPee Wee Erwin's Dixieland EightPee Wee Erwin's Jazzband + +300554Cutty CutshallRobert Dewees CutshallAmerican jazz trombonist. +Nickname : "Cutty". + +Born : December 29, 1911 in Huntington County, Pennsylvania. +Died : August 16, 1968 in Toronto, Ontario, Canada. +Needs Votehttps://en.wikipedia.org/wiki/Cutty_Cutshallhttps://adp.library.ucsb.edu/names/310567"Cutty" CutshallBob "Cutty" CutshallBob CutshalBob CutshallC. CutshallC. CuttshallC.CutshallCutshallCutty CatshallCutty CurshallCutty CushallCutty CutshawCutty CuttshallRobert "Cutty" CutshallRobert 'Curty' CutshallRobert CutshallRobt. "Cutty" CutshallJuggy's Jass BandGene Krupa And His OrchestraJan Savitt And His Top HattersEddie Condon And His OrchestraJimmy McPartland And His DixielandersBilly Butterfield And His OrchestraSy Oliver And His OrchestraEddie Condon And His ChicagoansEddie Condon And His BandBenny Goodman And His OrchestraThe CommandersEddie Condon And His All-StarsJimmy McPartland And His OrchestraLawson-Haggart Jazz BandThe Dixieland All StarsThe Rampart Street ParadersJimmy Dorsey And His Original "Dorseyland" Jazz BandMel Powell And His OrchestraEddie Condon's Jazz BandGeorge Wettling's Jazz BandGeorge Wettling's All StarsEddie Condon And His Dixieland BandStan Rubin And His Tigertown OrchestraDeane Kincaide's Band + +300566Teddy CharlesTheodore Charles CohenJazz vibraphonist, pianist, arranger, composer and bandleader +Born April 13, 1928 in Chicopee Falls, Massachusetts, died April 16, 2012 in Riverhead, New York +Needs Votehttps://web.archive.org/web/20160314030617/http://teddy-charles.com/https://en.wikipedia.org/wiki/Teddy_Charleshttps://www.allmusic.com/artist/teddy-charles-mn0000747202CharlesT. CharlesT.CharlesTeddy Charles/The Vibe Rant QuintetTheodore C. CohenTheodore CohenThe Miles Davis QuintetThe Teddy Charles TentetThe Prestige All StarsThe Prestige Jazz QuartetGeorge Russell OrchestraTeddy Charles QuartetTeddy Charles And The All StarsThe Manhattan Jazz All StarsTeddy Charles New Directions QuartetTeddy Charles TrioTeddy Charles QuintetTeddy Charles And His SextetThe Teddy Charles GroupRusty Dedrick And The Ten Man BandTeddy Charles' West CoastersRalph Sharon's All-Star Sextet + +300580Willie JonesWilliam Jones, Jr.Willie Jones (born October 20, 1929 in New York, NY, died April 1991 in New York City, NY) was an American jazz drummer. He worked with [a=Thelonious Monk], [a=Charles Mingus], [a=Art Blakey] and [a=Max Roach], among others. + +[b]NOTE![/b] Do not mistake with [a=Willie Jones III] (b. 1968), another jazz drummer.Needs Votehttps://en.wikipedia.org/wiki/Willie_Jones_(drummer)#:~:text=William%20Jones%20Jr.,Elmo%20Hope%2C%20and%20Charles%20Mingus.https://www.allmusic.com/artist/willie-jones-mn0000682242/biographyJonesW. JonesWillie Jones, Curt Peeples, Webb PierceWilly JonesThe Thelonious Monk QuartetThe Thelonious Monk QuintetThe Charles Mingus QuintetCharles Mingus Jazz WorkshopRandy Weston TrioElmo Hope Trio + +300694Bill MaysWilliam Allen MaysAmerican jazz pianist, composer and arranger +Born on February 5, 1944 in Sacramento, CaliforniaNeeds Votehttps://www.billmays.net/https://pjperrybillmays.bandcamp.com/https://en.wikipedia.org/wiki/Bill_Mayshttps://rateyourmusic.com/artist/bill-maysB. MayesB. MaysBillBill MayBilly MaysMayesMaysWilliam A. "Billy" MaysWilliam A. MaysWilliam Allen MaysWilliam C. MaysWilliam MayWilliam MaysWilly MaysBill Mays TrioGerry Mulligan QuartetThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraThe Inventions TrioThe Bob Magnusson QuintetThe Phil Woods QuintetBobby Shew QuintetBobby Shew SextetThe Bob Magnusson QuartetBill Mays QuintetJack Cortner Big BandBenny Golson QuintetThe Marvin Stamm QuartetThe Marvin Stamm / Ed Soph QuartetMartin Wind QuartetThe Bud Shank SextetJohn Goldsby QuartetThe Super SeptetRoad Work AheadNew York Jazz Quartet (2) + +300732Andreas HirtreiterGerman tenor. Further activities as bassist (e- and double bass), drummer, composer, arranger and author.Needs VoteChor Des Bayerischen RundfunksSinger PurGruppe Für Alte Musik München + +300859Al GibbonsJazz saxophonistNeeds VoteAlfred GibbonsWoody Herman And His OrchestraThe Jazz Composer's OrchestraEarl Hines And His OrchestraWoody Herman And The Swingin' HerdDuke Pearson's Big Band + +300862Al GafaAlexander GafaJazz guitarist, born April 9, 1941 in New York. +Worked as studio musician in New York 1964-1969, [a=Carmen McRae]'s musical director c. 1969-1971, played with [a=Dizzy Gillespie] 1971, 1974-1976. From 1976 led a series of small bop groups; also with [a=Johnny Hartman] 1978-1982. From 1980 also in musical theater.Needs VoteA. GafaAl GaffaAlex CafaAlex GafaAlexander GafaAlexander GaffaGafaBuzzy BavarianDizzy Gillespie QuintetThe Al Gafa Quinteto + +301023Peter McCarthyDouble bassist and violone player.Needs Votehttp://www.petermccarthy-violone.co.uk/https://rateyourmusic.com/artist/peter-mccarthyPete McCarthyPeter MacCarthyLa SerenissimaNew London ConsortThe Academy Of Ancient MusicCollegium Musicum 90I FagioliniLondon Classical PlayersL'Estro ArmonicoThe Society Of Strange And Ancient InstrumentsEuropean Brandenburg EnsembleLondon Early OperaThe English ConcertThe Band Of InstrumentsThe Illyria Consort + +301065Gilbert Di NinoGilbert Di NinoFrench songwriter and producer.Needs Votehttp://fr.wikipedia.org/wiki/Gilbert_Di_NinoD. GilbertDi NinoDi ninoDi-NinoDiNinoDininoG Di NinoG di NinoG. De NinoG. Di NinoG. Di ninoG. Di-NinoG. Di-ninoG. Di. NinoG. Di.NinoG. DiNinoG. DininoG. di NinoG.DI NinoG.DininoGil Di NinoGilbert Di NiroGilbert DininoNinoJoe KimberT.N.T.H.Gilleo + +301140Wilmer WiseAmerican trumpet player, born 21 December 1936; died 30 January 2015.Needs VoteThe Brooklyn Philharmonic OrchestraMarlboro Festival OrchestraBaltimore Symphony Orchestra + +301166Earl DumlerWoodwind player (mostly oboe, English horn, but also saxophone and sarrusophone).Needs Votehttps://www.imdb.com/name/nm2146678/https://musicbrainz.org/artist/737a770e-1312-48a9-b7cf-a1e11a68012d/https://www.allmusic.com/artist/mn0000070842https://rateyourmusic.com/artist/earl_dumlerhttps://genius.com/artists/Earl-dumlerhttps://isni.org/isni/0000000406611267Earl D. DumlerEarl DomlerEarl DunbarEarle A. DumlerEarle D DumlerEarle D. DumlerEarle DulmerEarle DumblerEarle DumierEarle DumlerMarginal ChagrinThe MothersStan Kenton And His OrchestraThe Abnuceals Emuukha Electric Orchestra + +301167Bob BainRobert Furniss BainAmerican jazz guitarist. + +Born: January 26, 1924, Chicago, Illinois +Died: June 21, 2018, Oxnard, CA + +Husband of Judith Clark; brother-in-law of [a=Ann Clark], [a=Jean Clark], [a=Mary Clark (3)] and [a=Peggy Clark].Needs Votehttps://en.wikipedia.org/wiki/Bob_Bainhttps://www.imdb.com/name/nm0047727/https://www.fretboardjournal.com/columns/remembering-bob-bain-1924-2018/B. BainBainBob Bain And His MusicBob Bain Orch.Bob BaineBob BamBob Bam BainBobby BainR. BainRBRober 'Bob' BainRobert "Bob" BainRobert BainRobert Bain (RB)Robert F. "Bob" BainRobert F. 'Bob' BainRobert F. BainRobert Furniss BainThe Guitars Of Bob BainTommy Dorsey And His OrchestraHarry James And His OrchestraHenry Mancini And His OrchestraLalo Schifrin & OrchestraThe 50 Guitars Of Tommy GarrettLou Bring And His OrchestraHank Mancini And The Mouldy SevenAndré Previn QuartetThe Bob Bain Brass EnsembleCaesar Giovannini And His SextetteThe Ramblers (15)Guitars Unlimited (3)Bob Bain's MusicTommy Todd And His TrioManny Klein's Dixieland BandBobby Bain's Orchestra And Chorus + +301349Izzy FriedmanIrving "Izzy" FriedmanAmerican jazz clarinetist, cornetist, saxophonist, arranger, composer & music executive. +Born December 25, 1903 in Linton, New Jersey (or in Russia). +Died November 21, 1981 in Beverly Hills, Los Angeles, California. +Friedman performed in the orchestras of Isham Jones and Paul Whiteman after high school. He also played with Bix Beiderbecke in the 1920s. +Between 1932-1943 he was the assistant head of the Warner Brothers music department, and then joined MGM in the same capacity, until 1945 when he joined Eagle-Lion, lasting into 1949. He founded Primrose Music Company, which specialized in both music and sound effects.Needs Votehttps://en.wikipedia.org/wiki/Izzy_Friedmanhttps://www.imdb.com/name/nm0295236/https://adp.library.ucsb.edu/names/203428"Izzy" FriedmanI. FriedmanIrving "Izzy" FriedmanIrving FriedmanIssy FriedmanItzie FriedmanIzzie FriedmanL. FriedmanIrving FriedmanFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangPaul Whiteman And His OrchestraEddie Lang's OrchestraVincent Lopez And His OrchestraJoe Venuti And His New YorkersThe Mason-Dixon Orchestra + +301350Tommy GarganoCredit as jazz drummer, in the early age.Needs VoteGarganoTom GarganoBix And His Rhythm Jugglers + +301351Roy BargyRoy Fredrick BargyAmerican composer and pianist. + +b. July 31, 1894 (Newaygo, MI, USA) +d. January 16, 1974 (Vista, CA, USA) +Needs Votehttps://adp.library.ucsb.edu/names/107181BargyR. BargyR: BargyRay BargyБаджиFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangPaul Whiteman And His OrchestraThe Benson Orchestra Of ChicagoAdrian's Ramblers + +301352Chauncey MorehouseAmerican jazz drummer (born March 11, 1902 in Niagara Falls, New York - died October 31, 1980 in Medford, New Jersey). +He played and recorded with Paul Specht, Jean Goldkette in 1924-1927, Adrian Rollini in 1927, Don Voorhees in 1928-1929, Frankie Trumbauer, Bix Beiderbecke, Red Nichols, The Dorsey Brothers, Joe Venuti, and many others. +Morehouse invented a set of drums called the N'Goma drums, which were made by the Leedy Drum company. +Needs Votehttp://en.wikipedia.org/wiki/Chauncey_Morehousehttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/419164f88c57ed34811fcfa820213c4db7ca1/biographyhttps://www.imdb.com/name/nm2295570/http://www.worldcat.org/identities/lccn-n00068930/https://adp.library.ucsb.edu/names/100137C. MorehouseChancey MorehouseChanncey MorehouseChannecey MorehouseChauncey MoorehouseChauncey MoorhouseChauncey MorehouceChauncy MorehouseChaunsey MorehouseMoorehouseMoorhouseMorehouseFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangJean Goldkette And His OrchestraClaude Thornhill And His OrchestraLarry Clinton And His OrchestraRuss Morgan And His OrchestraIrving Mills And His Hotsy Totsy GangThe GeorgiansJoe Venuti And His New YorkersJoe Glover And His CollegiansBenny Meroff And His OrchestraCongo FourRussell Gray And His OrchestraSal Franzella And His QuintetNew Orleans Lucky SevenJimmy Lytell And His All Star SevenSavannah Churchill And Her All Star SevenChauncey Morehouse And Swing SixThe Percussion SectionSpecht's Society Serenaders + +301353Frank SignorelliAmerican jazz pianist and songwriter, born 24 May 1901 in New York City, New York, USA, died 9 December 1975 in New York City, New York, USA. + +Frank Signorelli was an important player behind the scenes as an organizer of bands and an accompanying pianist with several notable bands. +Needs Votehttps://en.wikipedia.org/wiki/Frank_Signorellihttps://adp.library.ucsb.edu/names/102477F SignorelliF. SgnorelliF. SignerelliF. SignorelliF.SignorelliF.SignorellyFranck SignorelliFrankFrank "Cheech" SignorelliFrank SignerelliFrank SinnorelliFrank SognorelliS. SignorelliSignerelliSignnorelliSignorellSignorelliSignorellySingnorelliStignorelliСиньорелиСиньореллиФранк СиньореллиOriginal Dixieland Jazz BandFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangJoe Venuti's Blue FourJoe Venuti TrioBoyd Senter & His SenterpedesNapoleon's EmperorsThe Original Memphis FiveBobby Hackett And His OrchestraLadd's Black AcesThe Big AcesYank Lawson And His OrchestraIrving Mills And His Hotsy Totsy GangThe Charleston ChasersWillard Robison & His OrchestraThe Chicago LoopersEddie Lang-Joe Venuti And Their All Star OrchestraBenny Meroff And His OrchestraThe Broadway SyncopatersBailey's Lucky SevenRussell Gray And His OrchestraFrank Signorelli GroupNubian FiveRed McKenzie And His Rhythm KingsThe Six Blue ChipsNew Orleans Lucky SevenJimmy Lytell And His All Star SevenThe Three BarbersSavannah Churchill And Her All Star SevenTom Dorsey And His Novelty OrchestraFrank Signorelli And His OrchestraFrank Signorelli And His QuintetThe Rhythmasters (3) + +301354Boyce CullenAmerican jazz trombonist. + +Born : (circa) 1901 in Logansport, Indiana. +Died : October, 1943 in New York City, New York. +Needs VoteB. CullenBruce CullenCullenBix Beiderbecke And His OrchestraPaul Whiteman And His OrchestraMardi Gras Sextette + +301355Min LeibrookWilford F. LeibrookAmerican jazz musician. He played the cornet, tuba, bass, and bass saxophone. + +Born : January 18, 1903 in Hamilton, Ohio. +Died : June 08, 1943 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/112163"Min" LeibrookM. LeibrookMilford "Min" LeibrookMin LeibrockMin LeibrookeMinton LeibrookWilford "Min" LeibrookFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangBix Beiderbecke And His OrchestraThe Wolverine OrchestraPaul Whiteman And His OrchestraIrving Mills And His Hotsy Totsy GangSioux City SixJoe Venuti And His New YorkersBix Beiderbecke And The WolverinesEddy Duchin And His Central Park Casino OrchestraThe Mason-Dixon Orchestra + +301356Wes VaughanJazz vocalist & guitarist active from 1925 to 1950. + +Sometimes listed as Weston Vaughn, he performed with [a=Ted Weems And His Orchestra] (1925, 1931-1933), [a=Art Landry And His Orchestra] (1926), [a=Guy Lombardo And His Royal Canadians] (1927), Dewey Bergman and his Webster Hall Orchestra (1928), [a=Bix Beiderbecke And His Orchestra] (1930), the [a=Louisiana Rhythm Kings] (1930), [a=Red Nichols And His Five Pennies] (1930), [a=The Dorsey Brothers And Their New Dynamiks] (1930), [a=Freddy Martin And His Orchestra] (1935), and [a=Artie Shaw And His Orchestra] (1936).Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113007/Vaughn_Weston"Wes" VaughnVaughnWes VaughnWesley VaughanWesley VaughnWeston VaughanWeston VaughnArtie Shaw And His OrchestraBix Beiderbecke And His OrchestraGuy Lombardo And His Royal CanadiansThe Dorsey Brothers And Their New DynamiksArt Shaw And His New Music + +301357Eddie LangSalvatore MassaroEddie Lang (born October 25, 1902, Philadelphia, Pennsylvania, USA - died March 26, 1933, New York City, New York, USA) was an American jazz guitarist.Needs Votehttps://en.wikipedia.org/wiki/Eddie_Langhttps://www.britannica.com/biography/Eddie-Langhttps://www.jazzguitarlessons.net/blog/eddie-langhttps://www.imdb.com/name/nm0485734/https://adp.library.ucsb.edu/names/103511Blind Willie DunnDunnE. LangEd LangEd. LangEd. LangeEddieEddie Lang ("Blind Willie Dunn")Eddy LangLangLangeSalvatore "Eddie Lang" MassaroThe Late Ed LangBlind Willie DunnLouis Armstrong And His OrchestraRed Nichols And His Five PenniesFrankie Trumbauer And His OrchestraLouis Armstrong And His All-StarsClarence Williams' Novelty FourClarence Williams' Blue FiveJoe Venuti's Blue FourJoe Venuti TrioHoagy Carmichael And His OrchestraBix Beiderbecke And His OrchestraJean Goldkette And His OrchestraBoyd Senter & His SenterpedesNapoleon's EmperorsRoger Wolfe Kahn And His OrchestraPaul Whiteman And His OrchestraThe Mound City Blue BlowersBenny Goodman And His OrchestraJoe Venuti & Eddie LangJoe Venuti / Eddie Lang Blue FourJoe Venuti's Rhythm BoysEddie Lang's OrchestraFred Rich And His OrchestraMiff Mole's MolersThe Dorsey Brothers OrchestraBlind Willie Dunn & His Gin Bottle FourIrving Mills And His Hotsy Totsy GangBen Selvin & His OrchestraEmmett Miller & His Georgia CrackersVictor Young And His OrchestraArthur Schutt And His OrchestraAll Star OrchestraWillard Robison & His OrchestraThe Chicago LoopersEddie Lang-Joe Venuti And Their All Star OrchestraJoe Venuti And His New YorkersThe Dorsey Brothers And Their New DynamiksMississippi MaulersJustin Ring And His OrchestraAnson Weeks And His OrchestraJoe Venuti & Eddie Lang's Blue FiveRussell Gray And His OrchestraIrwin Abrams And His OrchestraThe Red HeadsClarence Williams Jazz BandTom Dorsey And His Novelty OrchestraThe Mason-Dixon OrchestraAll Star Californians + +301358Harry GaleJazz drummer active in the 1920's.Needs VoteH. GaleFrankie Trumbauer And His OrchestraBix Beiderbecke And His Gang + +301359Bill RankWilliam RankAmerican jazz trombonist. + +Born : June 08, 1904 in Lafayette, Indiana. +Died : May 20, 1979 in Cincinnati, Ohio. +Needs VoteB. RankBilly RankRankW. RankWilliam "Bill" RankWilliam RankFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangArtie Shaw And His OrchestraJean Goldkette And His OrchestraPaul Whiteman And His OrchestraEddie Lang's OrchestraBroadway Bell-HopsBenny Meroff And His OrchestraRussell Gray And His OrchestraNew Orleans Lucky SevenThe Mason-Dixon Orchestra + +301360Vic MooreVictor Cuthbert MooreAmerican jazz drummer of the 1920s (born July 12, 1902 in Chicago, IL - died ca. 1976) + +Vic Moore was one of the founding members of [a=The Wolverine Orchestra] and a member of the [a=Sioux City Six], both of which recorded for [l=Gennett] in 1924. Between 1927-1928, he also recorded with a successor band, The Original Wolverine Orchestra.Needs Votehttps://drumsinthetwenties.com/2018/10/14/heroes-13-vic-moore-c-1900-c-1970/V. MooreThe Wolverine OrchestraSioux City SixBix Beiderbecke And The Wolverines + +301362Bob GilletteBanjo player, early to mid-20th century jazz recordings mainly with [a=Bix Beiderbecke].Needs VoteBob GiletteG. GilletteThe Wolverine OrchestraBix Beiderbecke And The Wolverines + +301363Arnold BrilhartAmerican Jazz clarinet and alto sax player.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101145/Brilhart_Arnoldhttps://www.allmusic.com/artist/arnold-brilhart-mn0002355038/creditsA. BrilhartArnold BrihlartArnold BrilhardtArnold BrilheartArnold BrillhardtArnold BrillhartBrilhartHoagy Carmichael And His OrchestraRoger Wolfe Kahn And His OrchestraCalifornia RamblersThe Dorsey Brothers OrchestraBen Selvin & His OrchestraRichard Himber And His Ritz-Carlton Hotel OrchestraJoe Venuti And His New YorkersThe Dorsey Brothers And Their New DynamiksThe Vagabonds (6)Frank Farrell And His Greenwich Village Inn OrchestraBrillhardt's Orchestra + +301364Irving BrodskyIvan BrodskyAmerican jazz pianist and arranger. +Born April 15, 1901 in New York City, New York, USA. +Died March 01, 1998 in New York City, New York, USA. + +Irving played with [b]The California Ramblers[/b] (1922-1925), [b]Freddie Rich's Band[/b] (1926), [b]Roger Wolf Kahn's Band[/b] (1926-'27), [b]Sam Lanin[/b] (1927), [b]Ben Selvin[/b] (late 1920s - early 1930s), [b]Fud Livingston[/b], [b]Pee Wee Russell[/b], [b]Red Nichols[/b], [b]Glenn Miller[/b], [b]Jimmy Dorsey[/b], [b]Larry Clinton[/b], [b]Paul Whiteman[/b] and others.Needs Votehttps://www.facebook.com/groups/282519584859/posts/10156124192264860/https://adp.library.ucsb.edu/names/110839BrodskyI. BrodskyIrv BrodskyIrving BroskyIrving BrotskyHoagy Carmichael And His OrchestraBix Beiderbecke And His OrchestraLarry Clinton And His OrchestraCalifornia RamblersCornell And His OrchestraJoe Glover And His CollegiansThe Vagabonds (6)University SixVic Berton And His OrchestraIrving Brodsky And His Orchestra + +301365Don Murray (2)Donald LeRoy MurrayJazz clarinettist and saxophonist. Murray appears in "Is Everybody Happy?", a 1929 movie about bandleader [a=Ted Lewis]. +Born June 7, 1904 in Joliet, Illinois +Died June 2, 1929 in Los Angeles, California, in a car accident + +Needs Votehttps://en.wikipedia.org/wiki/Don_Murray_(clarinetist)https://adp.library.ucsb.edu/names/112410https://findagrave.com/memorial/61224514/donald_leroy-murrayD. MurrayD.MurrayDob MurrayMurrayNew Orleans Rhythm KingsFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangJoe Venuti's Blue FourBix And His Rhythm JugglersJean Goldkette And His OrchestraWillard Robison & His OrchestraThe Chicago LoopersJoe Venuti And His New YorkersBenny Meroff And His OrchestraRussell Gray And His OrchestraArt Landry and His Call of the North OrchestraNew Orleans Lucky Seven + +301366Steve Brown (2)Theodore BrownAmerican jazz bassist and tuba player, born January 13, 1890 in New Orleans, Louisiana, died September 15, 1965 in Detroit, Michigan. +Younger brother of trombonist [a=Tom Brown].Needs Votehttps://adp.library.ucsb.edu/names/114239BrownS. BrownFrankie Trumbauer And His OrchestraJean Goldkette And His OrchestraPaul Whiteman And His OrchestraOriginal Memphis Melody BoysMidway Garden Orchestra + +301367Ray LodwigEarly jazz trumpeterNeeds Votehttps://www.allmusic.com/artist/ray-lodwig-mn0000345766/creditshttps://adp.library.ucsb.edu/names/205913LedwigLodwegLodwigLudwigR. LodwigR. LudwigRay LodwingRay LudwigBix Beiderbecke And His OrchestraJean Goldkette And His OrchestraIrving Mills And His Hotsy Totsy GangJoe Venuti And His New Yorkers + +301368Hoagy CarmichaelHoagland Howard CarmichaelAmerican composer, pianist, singer, cornetist, actor, and bandleader, born 22 November 1899 in Bloomington, Indiana, USA and died 27 December 1981 in Palm Springs, California, USA. + +American composer and author [a=Alec Wilder] described Carmichael as the "most talented, inventive, sophisticated and jazz-oriented of all the great craftsmen" of pop songs in the first half of the 20th century. Carmichael was one of the most successful Tin Pan Alley songwriters of the 1930s and was among the first singer-songwriters in the age of mass media to utilize new communication technologies, such as television and the use of electronic microphones and sound recordings. + +Carmichael composed several hundred songs, including 50 that achieved hit record status. He is best known for composing the music for "Stardust", "Georgia on My Mind" (lyrics by [a=Stuart Gorrell]), "The Nearness of You", and "Heart and Soul" (in collaboration with lyricist [a=Frank Loesser]), four of the most-recorded American songs of all time. +He also collaborated with lyricist [a=Johnny Mercer] on "Lazybones" and "Skylark." +Carmichael's "Ole Buttermilk Sky" was an Academy Award nominee in 1946, from Canyon Passage, in which he co-starred as a musician riding a mule. "In the Cool, Cool, Cool of the Evening," with lyrics by Mercer, won the Academy Award for Best Original Song in 1951. +Carmichael also appeared as a character actor and musical performer in 14 films, hosted three musical-variety radio programs, performed on television, and wrote two autobiographies. + +Inducted into Songwriters Hall of Fame in 1971.Needs Votehttps://www.hoagy.comhttps://en.wikipedia.org/wiki/Hoagy_Carmichaelhttps://www.songhall.org/profile/Hoagy_Carmichaelhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102001/Carmichael_Hoagy"Hoagy" CarmichaelA. CarmichaelC. HaagyCaermichaelCamichaelCar MichaelCarlichaelCarmaichelCarmchaelCarmiachel - HoagyCarmicaelCarmicaëlCarmichaeCarmichaelCarmichael - HoagyCarmichael / HoagyCarmichael HCarmichael H.Carmichael HoagyCarmichael, H.Carmichael, HoagyCarmichael-HoagyCarmichael/HoaglandCarmichael/HoagyCarmichaelwrCarmichaleCarmichaëlCarmichealCarmichelCarmichetCarmichselCarmickaelCarmihaelCarmineCarmuchaelCarnaichealCatmichaelCharmichaelCharmichaëlCharmichelChrmichaelE. CarmichaelGarmichaelH CarmichaelH, CarmichaelH. CahrmichelH. CamichaelH. CaramichaelH. CarlmichaelH. CarmaecakH. CarmaechelH. CarmaicalH. CarmiachaelH. CarmiachelH. CarmicaelH. CarmicalH. CarmichaeH. CarmichaelH. CarmichalH. CarmichaëlH. CarmichealH. CarmichelH. CarmichäelH. CarmichælH. CarmickaelH. CarmiguelH. CarmmichaelH. CarmochaelH. CarnichaelH. CharmichaelH. CornodaelH.CamichaelH.CarmichaelH.CarmichalH.G. CarmichaelH.H. CarmichaelHaagy CarmichaëlHaogi CarmichaelHaogy CharmichaelHappy Hoagy CarmichaelHarry CarmichaelHeagy CarmichaeHeagy, CarmichaelHoagey CarmichaelHoaggy CarmichaelHoagh CarmichaelHoaghy CarmichaelHoaghy/CarmichaelHoagi CarmichaelHoagie CarmichaeHoagie CarmichaelHoagie CarmikleHoagland "Hoagy" CarmichaelHoagland CarmichaelHoagland Howard "Hoagy" CarmichaelHoagland Howard "Hoagy" CarnichaelHoagland Howard “Hoagy” CarmichaelHoaglund CarmichaelHoagyHoagy "Stardust" CarmichaelHoagy - CarmichaelHoagy / CarmichaelHoagy Car CarmichaelHoagy Car MichaelHoagy CarmchaelHoagy Carmichael And FriendsHoagy Carmichael At The PianoHoagy Carmichael and FriendsHoagy CarmichaëlHoagy CarmichealHoagy CarmichelHoagy CarmikaelHoagy CarmirhaelHoagy CharmichaelHoagy-CarmichaelHoagy/CarmichaelHockey CarmichelHodgy CarmichaelHogey CarmichaelHoggie CarmichaelHoggy CarmichaelHoggy CarnichaelHogie CarmichaelHogie CharmichaelHogy CarmichaelHongy CarmichaelHoogie CarmichaelHoogy CarmichaelHoogy/CarmichaelHorgy CarmichaelHosgy, CarmichaelHoward Hoagland CarmichaelII. CarmichaelJ. CarmichaelM. CalmichaelM. CarmichaelM.CarmichaelMichaelMoagy - CarmichaelMoagy CarmichaelN. CarmichaelNH CarmichaelS. CarmichaelTracy CarmicW. CarmichaelX. КармайклcarmichaelГ. КармикаелГ. КармихаэльК. КармайклКармайклН. КармихельХ. КармайкалХ. КармайклХоги Кармайкл“Happy” Hoagy Carmichaelホーギー・カーマイケルLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraHoagy Carmichael And His OrchestraJean Goldkette And His OrchestraEddie Lang's OrchestraBlind Willie Dunn & His Gin Bottle FourHoagy Carmichael And His PalsHoagy Carmichael TrioCarmichael's CollegiansHitch's Happy Harmonists + +301369Howdy QuicksellHoward Quicksell.American jazz banjoist and guitarist. +Played with : Jean Goldkette Orchestra (1922-1927), Frank Jones Orchestra (Frank was the brother of Isham Jones), recorded also with Bix Beiderbecke and Frankie Trumbauer. + + +Born : December 22, 1900 in Fort Wayne, Indiana. +Died : October 30, 1953 in Pontiac, Michigan. +Needs Votehttps://adp.library.ucsb.edu/names/114229H. QuicksallH. QuicksellHoely QuicksellHoward "Howdy" QuicksellHoward QuicksellHowdi QuicksellHowdy QuicksallQuickellQuickselQuicksellQuiksellWuicksellFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangBix And His Rhythm JugglersJean Goldkette And His Orchestra + +301370Adrian RolliniAdrian Francis RolliniAmerican jazz multi-instrumentalist who played the bass saxophone, piano, vibraphone, and many other Instruments. +Born 28 June 1904, New York City, New York, USA +Died May 15, 1956, Homestead, Florida, USA. + +Brother of [a=Arthur Rollini]. Member of the [a708256] (1922-1926).Needs Votehttps://en.wikipedia.org/wiki/Adrian_Rollinihttps://fromthevaults-boppinbob.blogspot.com/2013/06/adrian-rollini-born-28-june-1903.htmlhttps://www.sandybrownjazz.co.uk/YouSuggest/AdrianRollini.htmlhttps://adp.library.ucsb.edu/names/107170A. RolliniAdrain RolliniAdrian Rollini And His FriendsAdrian Rollini And The Golden Gate OrchestraRoliniRolliniRed Nichols And His Five PenniesFrankie Trumbauer And His OrchestraBix Beiderbecke And His GangJoe Venuti's Blue FourJack Teagarden And His OrchestraLeo Reisman And His OrchestraCalifornia RamblersFred Rich And His OrchestraMiff Mole's MolersAdrian Rollini TrioFreddie Jenkins And His Harlem SevenThe Dorsey Brothers OrchestraJan Garber And His OrchestraJack Purvis And His OrchestraCornell And His OrchestraLouisiana Rhythm KingsBen Selvin & His OrchestraJoe Venuti And His Blue SixAdrian Rollini And His OrchestraCloverdale Country Club OrchestraFred Elizalde And His OrchestraTed Wallace & His OrchestraBenny Meroff And His OrchestraBert Lown And His OrchestraThe Vagabonds (6)The Little RamblersVarsity EightTom Clines And His MusicThe Goofus FiveUniversity SixJoe Venuti & Eddie Lang's Blue FiveFive Birmingham BabiesJay C. Flippen And His GangRussell Gray And His OrchestraRichard Himber And His OrchestraFred Elizalde's RhythmusiciansRube Bloom And His Bayou BoysDick McDonough And His OrchestraAdrian Rollini And His Tap Room GangAdrian Rollini QuintetAdrian Rollini QuartetNew Orleans Lucky SevenAnnette Hanshaw And Her Sizzling SyncopatorsBert Shefter And His Rhythm OctetLarry Wagner & His RhythmastersAdrian's Ramblers + +301371Jimmy HartwellJames HartwellAmerican clarinetist and alto saxophonist, born c. 1900, died after 1942. +Played in Chicago with the Ten Foot Band and Russ Wilkins's Melody Boys c. 1922, then became founding member of [a=The Wolverine Orchestra]. Settled in Miami, Florida, in 1925; led own band in Florida in the late 1920s, switched to bass in the 1930s due to asthma.Needs VoteHartwellJim HartwellThe Wolverine OrchestraBix Beiderbecke And The Wolverines + +301372Jack TeagardenWeldon Leo TeagardenAmerican jazz trombonist, bandleader, composer and vocalist. +Born August 20, 1905, Vernon, Texas, USA - Died January 15, 1964, New Orleans, Louisiana, USA. +Brother of pianist [a2075039], trumpeter [a307342], and drummer (Clois) [a1066764]. +He played with many artists including [a3889678], [a357512], [a699197], [a325858], [a269598], [a38201], [a299946] as well as fronting his own bands. +Needs Votehttps://en.wikipedia.org/wiki/Jack_Teagardenhttps://www.britannica.com/biography/Jack-Teagardenhttps://syncopatedtimes.com/jack-teagarden-profiles-in-jazz/https://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/jack-teagardenhttps://www.allmusic.com/artist/jack-teagarden-mn0000124675https://www.imdb.com/name/nm0853524/https://adp.library.ucsb.edu/names/104248https://www.ctproduced.com/jack-teagarden-and-the-verve-records-era-of-creed-taylor/J TeagardenJ. TeagardenJ. TeagrdenJ.TeagardenJTJackJack T.Jack Teagarden (King Of The Texas Blues Trombone)Jack TeargardenJack TeegardenJackson TeagardenJackson Teagarden And His TromboneJask TeagardenMr. "T"TeagadenTeagardenWeldon John "Jack" TeagardenWeldon John Jack TeagardenMetronome All StarsColeman Hawkins All Star BandEsquire All StarsLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraJack Teagarden's ChicagoansLouis Armstrong And His All-StarsWingy Manone & His OrchestraRoger Wolfe Kahn And His OrchestraJack Teagarden And His OrchestraPaul Whiteman And His OrchestraEddie Condon And His OrchestraBud Freeman's Summa Cum Laude OrchestraEddie Condon And His Hot ShotsBen Pollack And His OrchestraJack Teagarden And His Big EightThe Mound City Blue BlowersEddie's Hot ShotsEddie Condon And His FootwarmersFats Waller And His BuddiesBuck And His BandGeorge Wettling's New YorkersEddie Condon And His Windy City SevenBenny Goodman And His OrchestraColeman Hawkins Swing FourJack Pettis And His OrchestraCornell And His OrchestraThe Big AcesThe Newport All StarsThe Charleston ChasersJack Teagarden And His Swingin' GatesAdrian Rollini And His OrchestraEddie Lang-Joe Venuti And Their All Star OrchestraCloverdale Country Club OrchestraWhoopee MakersBud Freeman And His Famous ChicagoansEarl Hines And His All-StarsJack Teagarden BandPaul Whiteman's Swing WingThe Capitol JazzmenAll Star Band (4)Jack Teagarden SextetThe Jack Teagarden All-StarsJack Teagarden's Dixieland BandMetropolitan Opera House Jam SessionPaul Mills And His Merry MakersJack Teagarden's Metronome All Star BandJack Teagarden And His MusicBessie Smith-OrchestraFats Waller And FriendsGil Rodin And His OrchestraFats Waller's Jam SchoolJack Teagarden & His TromboneEsquire All-American Jazz BandLouis Armstrong And The V-Disc All-Stars + +301373Itzie RiskinIrving RiskinPianist active 1920's to the 1940's.Needs Votehttp://worldcat.org/identities/lccn-nb2001017702/I. RiskinI. RuskinIrving "Itzy" RiskinIrving RiskinItzy RiskiItzy RiskinIzzy RiskinRiskinRex IrvingFrankie Trumbauer And His OrchestraJoe Venuti's Blue FourJean Goldkette And His OrchestraRex Irving And The BoysRex Irving's Modern Men Of Music + +301374Al GandeAlbert GandeJazz trombonist, born 1900, died June 3, 1944 in Cincinnati. +Gande played with Bix Beiderbecke and The Wolverines in 1923 and 1924 before leaving the band late in that year, ultimately returning to his home town of Cincinnati, Ohio. In 1936, he started a Dixieland revival band there called The New Wolverines, which he led until his tragic death in a car accident in 1944.Needs VoteAl GandeeThe Wolverine Orchestra + +301375Dick VoynowRichard F. Voynow.American jazz pianist and composer. +Born : 1900 in United States. +Died : September 15, 1944 in Los Angeles, California. +Dick Voynow was part of "The Wolverine Orchestra" and was co-author (with Hoagy Carmichael and Irving Mills) the famous song "Riverboat Shuffle". +Needs Votehttps://adp.library.ucsb.edu/names/109668'VoynowD VoynoD. VoynowN. NoynowNic NoyrowRichard VoynowVoynovVoynowThe Wolverine OrchestraBix Beiderbecke And The Wolverines + +301376Frankie TrumbauerOrie Frank TrumbauerAmerican jazz saxophonist, bandleader, and composer. One of the most important saxophonists of the 1920s and '30s, he usually played the C-melody saxophone but also played alto saxophone, bassoon, and clarinet. + +b. May 30, 1901 (Carbondale, IL, USA). +d. June 11, 1956 (Kansas City, MO, USA).Needs Votehttps://en.wikipedia.org/wiki/Frankie_Trumbauerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113069/Frankie_Trumbauers_Orchestrahttps://adp.library.ucsb.edu/names/104494F. TrumbauerFr. Trumbauer And His OrchestraFrank TrambauerFrank TrumbauerFrank TumbauerFrankie TrambauerFrankie TrumbanerFranky TrumbauerTramTrambauerTrombauerTrumbauerTrumbaurТрумбауэрФ. ТрумбауэрFrankie Trumbauer And His OrchestraJoe Venuti's Blue FourJean Goldkette And His OrchestraJack Teagarden And His OrchestraPaul Whiteman And His OrchestraSioux City SixWillard Robison & His OrchestraThe Chicago LoopersThe Benson Orchestra Of ChicagoBenny Meroff And His OrchestraLanin's Arkansaw TravelersRussell Gray And His OrchestraThe Mason-Dixon Orchestra + +301377Doc RykerStanley Ryker.American jazz saxophonist. +Played with Jean Goldkette Orchestra (with Steve Brown, Eddie Lang, Bill Rank, Frank Trumbauer, Joe Venuti, Bix Beiderbecke) and Jimmy and Tommy Dorsey and others. +Retired from the musical scene in 1927. + +Born: February 03, 1898 in Manville, Indiana. +Died: 1979. +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/208950/Ryker_Stanley_Doc"Doc" RykerD. RickerD. RyckerDok RykerRykerS. RyckerStanley "Doc" RykerFrankie Trumbauer And His OrchestraJean Goldkette And His Orchestra + +301381Lennie HaytonLeonard George HaytonJewish American composer, conductor, arranger, pianist and occasional drummer, b. February 13, 1908 New York, NY, USA, d. April 24, 1971 Palm Springs, CA, USA. + +Starting out as a jazz pianist, he played with [a=Spencer Clark (2)] in the Little Ramblers ('26), Cass Hagen ('27), and [a=Paul Whiteman And His Orchestra] ('28-30). He also appeared on a number of recordings during this time with musicians such as [a=Frankie Trumbauer], [a=Bix Beiderbecke], [a=Red Nichols], and [a=Joe Venuti]. + +During the '30s he was musical director of [a=Bing Crosby]'s radio show and led his own orchestra. He went on to be musical director at MGM Studios, Hollywood ('40-53) and for [a=Lena Horne] ('50s & '60s), whom he married in 1947.Needs Votehttps://en.wikipedia.org/wiki/Lennie_Haytonhttps://www.nytimes.com/1971/04/25/archives/lennie-hayton-composer-dies-was-husband-of-lena-horne.htmlhttps://www.imdb.com/name/nm0006125/https://adp.library.ucsb.edu/names/105204HaydonHaytonHeymanL. HaytonLenny HaytonLonnie HaytonFrankie Trumbauer And His OrchestraJoe Venuti's Blue FourPaul Whiteman And His OrchestraJoe Venuti's Rhythm BoysThe Charleston ChasersLennie Hayton And His OrchestraJoe Venuti And His New YorkersThe Mason-Dixon OrchestraLennie Hayton's Blue FourLennie Hayton's Orchestra & Chorus + +301427Dave AppellDavid Leon AppellAmerican producer, arranger, bandleader, publisher, songwriter and guitarist (born in Philadelphia, Pennsylvania, March 24, 1922 - ✝ Cherry Hill, New Jersey, November 18, 2014). He was associated mainly with the [l=Cameo Parkway] record label, in whose history he played a substantial part, here he was working very closely with the other songwriters and producers [a=Kal Mann] and [a=Bernie Lowe], all of them born in Philadelphia.Needs Votehttp://en.wikipedia.org/wiki/Dave_AppellA. AppelApelApellAppelAppel, DavidAppel,DAppellAppell DavidAppell, DaveAppell, DavidAppell-MapellAppleApplleAttelBig D. AppellBig Dave AppellD AppelD AppellD, AppelD.D. AbbeyD. ApelD. ApellD. AppelD. AppeliD. AppellD. AppleD. ApplellD. LapellD.AppelD.AppellDaveDave AbbeyDave ApelDave ApellDave AppeellDave AppelDave AppelleDave AppleDavid AappellDavid AppelDavid AppellDavid AppleDavid Leon "Dave" AppellDaye AtpellJave AppellM. AppleMannNamin' AppelS. AppellappleАппеллДэйв АппельDave LeonThe Applejacks (2)Dave Appell And His OrchestraMedress & Appell ProductionsDave Appell QuintetThe Dave Appell FourDave Appell Ensemble + +301516The Quintet Of The YearNeeds VoteQuintet Of The YearQuintet Of The Year (Dizzy Gillespie, Charlie Parker, Bud Powell, Charles Mingus, Max Roach)The QuintetBud PowellDizzy GillespieCharlie ParkerCharles MingusMax Roach + +301529William WeatherspoonWilliam Henry WeatherspoonAmerican Soul singer, songwriter and producer. +Best known for his work as songwriter at [l1723] in the 1960s, +often in collaboration with [a391773]. +Brother of the actor [a3283866]. + +Born: February 11, 1936 in Detroit, Michigan +Died: July 17, 2005 in Lathrup Village, MichiganNeeds Votehttp://en.wikipedia.org/wiki/William_WeatherspoonBill WeatherspoonD. WeatherspoonW WeatherspoonW, WeatherspoonW. H. WeatherspoonW. Weather SpoonW. WeathersonW. WeatherspoonW. WitherspoonW.H. WeatherspoonW.WeatherspoonW.WitherspoonWeatherspoonWeatherstoonWetherspoonWilliam H. WeatherspoonWilliam Henry WeatherspoonWilliam Henry WeatherspoonnWilliam Henry WitherspoonWilliam WetherspoonWilliam WitherspoonWilliams WeatherspoonWitherspoonWm WeatherspoonWm. WeatherspoonWm. WitherspoonWm. weatherspoonWm/ WitherspoonDean & WeatherspoonThe Tornados (6) + +301721Jim BuffingtonJames Lawrence BuffingtonAmerican jazz musician who played French horn. +[i](Not to be confused with [a372036], member of [a1489057])[/i] +Born May 15, 1922 in Jersey Shore, Pennsylvania, died July 20, 1981 in Englewood, New Jersey +Needs VoteJ. BuffingtonJames BuffingtonJames BufflingtonJim B.Jim BuffingtenJimmie BuffingtonJimmu BuffingtonJimmy BuffingtonJimym BuffingtonJohn Buffingtonジェイムス・バフィントンQuincy Jones And His OrchestraGil Evans And His OrchestraWalter Murphy & The Big Apple BandHugo Montenegro And His OrchestraDizzy Gillespie And His OrchestraElliot Lawrence And His OrchestraOliver Nelson And His OrchestraBilly Byers And His OrchestraRalph Burns And His OrchestraMiles Davis + 19The Jazz Interactions OrchestraGeorge Russell OrchestraArt Farmer And His OrchestraThe Quincy Jones Big BandOrizaba And His OrchestraStu Phillips SextetAll Star Big BandJim Timmens And His Swinging BrassThe New York Horn Trio + +301724Bill WatrousWilliam Russel WatrousAmerican bop-oriented trombonist, born 8 May 1939 in Middletown, Connecticut, USA, died 2 July 2018 in Los Angeles, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Bill_Watroushttps://www.imdb.com/name/nm4147125/https://www.allmusic.com/artist/bill-watrous-mn0000765776B. WatrousB. WatrusBil WatrousBill WaltrousBill WatronsBill WatrusBilly W.Billy WatrousWatrousWilliam R. WaltrousWilliam R. WatrousWilliam Russell WatrousWilliam WatousWilliam WatrousWilliam Wattousビル・ワトラスQuincy Jones And His OrchestraWoody Herman And His OrchestraTen Wheel DriveThe Gene Harris All Star Big BandWoody Herman And The Swingin' HerdDave Pell OctetPatrick Williams' New York BandShelly Manne & His Hollywood All StarsNick Brignola QuintetBill Watrous ComboThe Jack Montrose QuintetWoody Herman And The Thundering HerdBill Watrous QuartetThe New Bill Watrous QuartetTrombone SummitThe Danny Stiles - Bill Watrous FiveThe Danny Stiles FiveL'il Jack Horn SectionBuddy Charles Concert Jazz OrchestraLou Rovner Small Big BandBill Watrous QuintetThe Bob Belden EnsembleBill Watrous Big Band + +301743Barbara ChaffeAmerican flute player.Needs VoteSan Francisco Symphony + +301974George TreadwellGeorge McKinley TreadwellBorn December 21 or 23, 1918 or 1919, New Rochelle, New York – May 14, 1967, New York City) was an American jazz trumpeter. +He was [a=Sarah Vaughan]'s first husband (1946-1958).Needs Votehttp://en.wikipedia.org/wiki/George_TreadwellG TreadwellG. TreadwallG. TreadwelG. TreadwellG.TreadwellGeo TradwellGeo. TreadwellGeorge ThreadwellGeorge TredwellPerry TreadwellThreadwellTreadwallTreadwellTreasdwellTreawellTredwellCootie Williams And His OrchestraGeorge Treadwell And His All StarsGeorge Treadwell OrchestraDickie Wells' Big Seven + +301975Harold ArlenHyman ArluckPianist, singer and composer, born 15 February 1905 in Buffalo, New York, died 23 April 1986 in New York, New York. + +[b] >> When credited with [a=Johnny Mercer], please use the joint credit: [a=Harold Arlen & Johnny Mercer] << [/b] + +Active as a pianist and singer since the early 1920s, Arluck began songwriting using the name Harold Arlen in the late 1920s. + +During the first half of the 1930s he often collaborated with [a=Ted Koehler] with whom he composed songs such as [i]Between The Devil And The Deep Blue See[/i] (1931), [i]Stormy Weather[/i] (1933) and [i]Let's Fall In Love[/i] (1933). For the second half of the 1930s he mostly collaborated with [a=E.Y. Harburg]. It was with Harburg that he composed the [i]Wizard Of Oz[/i] soundtrack, containing the classic song [i]Somewhere Over The Rainbow[/i] (1939). + +Arlen's common songwriting partner during the 1940s was [a=Johnny Mercer]. Together they wrote hit songs such as [i]Blues In The Night[/i] (1941), [i]One For My Baby (And One More For The Road)[/i] (1943) and [i]Ac-Cent-Tchu-Ate The Positive[/i] (1944). Although he was less active in later years, he successfully remained composing well into the 1970s. + +Harold Arlen was inducted into the Songwriters Hall of Fame in 1971.Needs Votehttps://haroldarlen.com/https://en.wikipedia.org/wiki/Harold_Arlenhttps://www.britannica.com/biography/Harold-Arlenhttps://www.imdb.com/name/nm0002182/https://www.songhall.org/profile/Harold_Arlenhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103935/Arlen_Haroldhttps://www.allmusic.com/artist/harold-arlen-mn0000060306A. ArlenA. ArlerA. HarlanA. HarlenA. HarolA. HaroldARlenAgerAilenAlenAllenAlrenArcherArdenAreelArenAriemnArienArlanArleArlemArlenArlen H.Arlen HaroldArlen, HaroldArlen,HArlen-HaroldArlenKoehlerArleneArlensArlerArlewArlienArlinArlonArluckArlwnArlèneArold ArlemArold ArlenArold HarlenArtenArtlenBerlinH . ArlenH .ArlenH ArlenH, ArlenH- ArlenH. ARLENH. AklenH. AllenH. AlrenH. ArdenH. ArenH. ArienH. ArlanH. ArlemH. ArlenH. ArleneH. ArlesH. ArlonH. ArlénH. HarlanH. HarlemH. HarlenH.AlenH.AlrenH.ArienH.ArlenH.ArtenH.d ArlenH: ArlenHarald ArlanHarald ArlenHardingHarkenHarlenHarlod ArlenHarlold ArlenHaroald ArlenHarol ArlenHaroldHarold AldenHarold AlenHarold AllenHarold ArianHarold ArienHarold ArlandHarold ArleenHarold ArlemHarold Arlen b. Hyman ArluckHarold Arlen, B. Hyman ArluckHarold Arlen, b. Hyman ArluckHarold ArlendHarold ArleneHarold ArlernHarold ArlinHarold ArlockHarold ArluckHarold ArnerHarold ErlenHarold HarenHarold HarlemHarold HarlenHarold-ArlenHaroldArlenHarols ArienHarols ArlenHarry ArlenHerold ArlenHorld ArlenHoward ArlenH・アーレンJ. ArlenM. ArlenP. HarlenR. ArlenR. Harold ArlenRalenS. ArlenT. ArlenWarrenarlenАрленГ. АрленХ. АрленХаролд АрденХенри АрленХэролд Арленהרולד ארלןアーレンハロルド・アーレンHyman Arluck + +301992Dorothy FieldsDorothy FieldsSongwriter, born 15 July 1905 in Allenhurst, New Jersey, died 28 March 1974 in New York, New York. + +She was a successful lyricist who collaborated with composers such as [a=Jimmy McHugh], [a=Jerome Kern] and [a=Cy Coleman]. Among her best known songs are [i]On The Sunny Side Of The Street[/i] (1930), [i]The Way You Look Tonight[/i] (1936) and [i]Big Spender[/i] (1964). + +In 1971, she was the first woman to be inducted into the Songwriters Hall of Fame. + +Dorothy Fields is the daughter of vaudeville artist Lew Fields, sister of playwriters [a=Joseph Fields] and [a=Herbert Fields] and mother of pianist [a=David Lahm].Needs Votehttps://dorothyfields.co.uk/https://en.wikipedia.org/wiki/Dorothy_Fieldshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103076/Fields_DorothyA. FieldsAl FieldsB. FieldsC. D. FieldC. FieldsD FieldsD. FieldsD. FeildsD. FieldD. FieldsD. FieldsaD.FieldsDavid FieldsDorethy FieldsDorothy FIeldDorothy FieldDorothy FieldsováDorothy SillsDorothy VinceDoroty FieldsDorthy FieldsDr. FieldsFIeldsFeildsFeldsFiedsFieldFieldeFieldoFieldsFields DorothyFielsFildsFiledsFlelanFoeldsFreedFrieldsH FieldsI. FieldsL FieldsL. FieldsO. FieldsP. FieldsSieldsДороти ФилдсФилдсФиядуJimmy McHugh & Dorothy Fields + +301993Johnny BurkeJohn Francis BurkeAmerican lyricist (3 October 1908, Antioch, California, USA — 25 February 1964, New York, NY, USA) + +[b]Please use [a1077671] when credited with [a255313] +Do not confuse with songwriter [a=Joe Burke (3)] or [a=Sonny Burke]. [/b] + +Often regarded as one of the finest writers of popular songs in USA between the twenties and fifties. +Inducted into Songwriters Hall of Fame in 1970. 469 song titles are listed at ASCAP. +Needs Votehttp://en.wikipedia.org/wiki/Johnny_Burke_(lyricist)http://songwritershalloffame.org/exhibits/C81https://www.imdb.com/name/nm0121741/https://adp.library.ucsb.edu/names/108757BUrkeBarkeBerkBerkeBlakeBob BurkeBourkeBrookeBrukeBukeBurceBurgeBurkBurkeBurke JBurke JohnnyBurke JohnyBurke, JohnnyBurkelBurkerBurkeyBurkreBurksBurleBuzukDurkeE. BurkeFrancis J BurkeFrancis J. BurkeG. BurkeH. BurkeJ BurkeJ, BurkeJ. BurkeJ. BUrkeJ. BirkeJ. BorkeJ. BourkeJ. BrukeJ. BuriceJ. BurkJ. BurkaJ. BurkeJ. BurkerJ. BurleJ. F. BurkeJ. Francis BurkeJ.BurkeJ.BurkerJoe BurkeJohn BurkeJohnnie BurkeJohnnyJohnny BorkeJohnny BrukeJohnny BurkJohnny BurkerJohnny BurksJohnny BurleJohny BurkeJonny BurkeJoseph A. BurkeJ・バークL. BurkeLee BurkeQohnny BurksRoganRurkeS. BurkeSonny BurkeT. BurkeVan Heusen / BurkeДж. БеркДж. БёркE. D. ThomasK. C. RoganJuan Y. D'LorahJimmy Van Heusen And Johnny Burke + +301995Arthur JohnstonBorn January 10, 1898 in New York City, died May 1, 1954 in [url=https://en.wikipedia.org/wiki/Corona_del_Mar,_Newport_Beach]Corona del Mar[/url], [b]CA[/b]. American composer and pianist. + +Johnston worked with [a413893], [a301993], [a164571] and many others. +Needs Votehttp://www.allmusic.com/artist/arthur-johnston-p226858/biographyhttp://www.songwritershalloffame.org/exhibits/C90http://en.wikipedia.org/wiki/Arthur_Johnston_%28composer%29https://www.ascap.com/repertory#ace/writer/15434510/JOHNSTON%20ARTHURhttps://adp.library.ucsb.edu/names/108725. JohnstonA JohnsonA JohnstonA. JohnsonA. JohnstonA. JohnstoneA. JonstonA.JohnsonA.JohnstonArt JohnstonArth. JohnstonArther JohnstonArthur James JohnstonArthur JohnsonArthur JohnsponArthur JohnstoneArthur JohstonArthur JonesArthur JonstonArtur JohnstonA・ジョンストンB. JohnstonHohnstonJOhnstonJhonstonJohn Stan ArthurJohn Ston ArthurJohnatJohnsonJohnssonJohnstonJohnston & MeyerJohnston ArthurJohnstoneJohnstronJohsonJohstonJonhstoneJonstonRobinsonS. JohnstonА. ДжонсонА. ДжонстонАртур ДжонстонДжонстон + +301998Andy RazafAndreamenentania Paul RazafinkeriefoAmerican poet, composer, lyricist and occasional singer (born December 16, 1895, Washington, D.C., USA - died February 3, 1973, North Hollywood, California, USA). +He began writing songs for nightclub revues in the 1910's, in the 1920's he collaborated with several composers including [a=Eubie Blake] and [a=Fats Waller]. +Some of his Tin Pan Alley hits include "Ain't Misbehavin'" and "Honeysuckle Rose" +He also collaborated on the Broadway scores for "Keep Shufflin’", "Hot Chocolates" and "Blackbirds of 1930". + +Inducted into the Songwriter's Hall Of Fame in 1972. + + + + +Andy Razaf aurait pu naître sur la terre malgache, mais… le 16 décembre 1895, il voit le jour à Washington, États-Unis. + +L’histoire commence par celle de Jennie Maria Waller — une vie, un roman —, née en 1880 aux États-Unis, fille de John Lewis Waller [1850 – 1907]. + +Elle arrive avec sa famille à Madagascar en 1891 où son père vient d’être nommé premier consul noir américain, sous le règne de la reine Ranavalona III1.Needs Votehttps://en.wikipedia.org/wiki/Andy_Razafhttps://www.songhall.org/profile/Andy_Razafhttps://www.naxos.com/Bio/Person/Andy_Razaf/19166https://riverwalkjazz.stanford.edu/?q=program/andy-razaf-life-and-lyrics-prince-madagascarhttps://www.mtishows.com/people/andy-razafhttps://7lameslamer.net/andy-razaf-jazzman-cabosse-8-1970/https://adp.library.ucsb.edu/names/105535"Crooning" Andy And His UkuleleA PazofA RazafA RazaffA, RazafA- RazafA. BazafA. PazafA. PazlofA. PazofA. RafazA. RajfA. RasafA. RatzafA. RaxafA. RazaA. RazaafA. RazafA. RazaffA. RazagA. RazalA. RazarA. RazasA. RazatA. RazofA. RazoffA. RezafA. RogatA. RoozafA. RozafA.PazofA.RafazA.RagafA.RazaafA.RazafA.RazaffAhlertAmdu RazafAmosAndie RazafAndrea RazafAndreamenentania P. RazafinkeriefoAndreamenentania Paul RasafinkeriefoAndreamenentania RazafinkeriefoAndreamentania P. RazafkeriefoAndreamentania Paul RazafkeriefoAndreamentania PazafinkeriefoAndyAndy AzafAndy RaffazAndy RarafAndy RasafAndy RavafAndy RazaafAndy RazaeAndy Razaf, b. Andreamentena RazafinkereifoAndy Razaf, b. Andreamentena RazafinkeriefoAndy RazaffAndy RazaftAndy RazafuAndy RazakAndy RazalAndy RazarAndy RazasAndy RazatAndy RazefAndy RazfAndy RazofAndy RazoffAndy RozafAnne Dee RazafAnyd RazafBazafCrooning Andy RazafE. RazafE. RazasEazafG. RazafH. RazafH.RazafHandy RazasN. RazafP. RazafP. RazanfinkarefoRR. AndyR. RazafRaafRacafRacoffRafarRafazRafaz A.RaffRagafRajasRalafRanzafRarafRasafRasafinkeriefoRasasRatcalfeRatsoffRauafRazaRazabRazaeRazafRazaf (The Melody Man)Razaf A.Razaf AndyRazaf DavisRazaf HndyRazaf, A.Razaf-AndyRazaf.RazaffRazajRazalRazalfRazarRazarfRazasRazatRazazRazaïRazefRazfRazifRazofRazoffRazotRazsfRazufRazzafRazzaffRezafRosefRouafRozafS. RazafTazafrazafА. РазафРазафЭ. РезефJohnny Thompson (13)Rafe (6)Dan Smith (80)James Johnson (95) + +302076Ursula HolligerSwiss classical harp player and educator, born 8 June 1937 in Basel, Switzerland and died 21 January 2014 in Basel, Switzerland. She was married to [a207945]. +She studied in Basel and Brussels. She has appeared as a soloist all over Europe, the USA and in Japan. She has performed with many orchestras including the Concertgebouw-Orchestra, the Berlin Philharmonic Orchestra, the English Chamber Orchestra and "I Musici". Countless contemporary works have been dedicated to her or were first performed by her (F. Martin, H.W. Henze, E. Krenek, A. Jolivet, T. Takemitsu, E. Denisow, H. Holliger, K. Huber and others). She has made several records with harp compositions from every age of music.Needs Votehttp://www.ursulaholliger.net/HolligerU. HolligerV. Holligerウルズラ・ホリガーSymphonie-Orchester Des Bayerischen RundfunksSwiss Chamber SoloistsThe English Concert + +302078Aurèle NicoletSwiss flutist born January 22, 1926 in Neuchâtel. He died on January 29th 2016 at the age of 90.Needs VoteA. NicoletAurele NicoletAurele NicoltAurèleAuréle NicoletAuréle NicolétGeorge Aurèle NicoletGeorges Aurèle NicoletNicoletNocoletАурель НиколеОрель Николеオーレル・ニコレBerliner PhilharmonikerStuttgarter KammerorchesterMünchener Bach-OrchesterCamerata Academica SalzburgCamerata BernConcerto Amsterdam + +302134Rodi StyleBenjamin LeungWinner of the 2008 "Best New Face" award at the annual Hard Dance Awards, Rodi Style is highly regarded as one of the scene's brightest stars and has established himself as one of the most sought after Hard Dance DJs. + +Originally based in Canada, Rodi Style has since relocated to the UK following his signing to the Hard Dance brand Tidy and now heads the UK based record label Kung Fu Wax. +Needs Votehttp://www.djrodistyle.comRodi StylesBenjamin LeungSomna (2)KFC (3) + +302315The Jungle BandCorrectJungle BandTony CookMickey MurrayTony Jones (2)Johnny GriggsSt-Clair PinckneyTrevor SwaineJimmy Lee MooreHaji AhkbaVernon CheelyGeorge DickersonJoe CollierJoe PoffRonald NorwoodJohn GardyJungle Man (2)Derrick MingledolphDanny TanksleyJohn Fielding (2)Kenny Williams (6) + +302494Rod LevittRodney Charles Levitt.American jazz trombonist, composer and bandleader +Born September 16, 1929 in Portland, Oregon, died May 08, 2007 in Wardsboro, VermontNeeds VoteLevittRod LeavittRod Levitt OctetRod LewittRodney LevittRon LevittРод ЛюиттGil Evans And His OrchestraDizzy Gillespie And His OrchestraDizzy Gillespie Big BandSy Oliver And His OrchestraMundell Lowe And His All StarsNational Jazz EnsembleThe Quincy Jones Big BandThe Rod Levitt OrchestraThe Bill Potts Big Band + +302495Al EpsteinAlbert EpsteinAmerican jazz tenor and baritone saxophonist, clarinetist, bass clarinetist, English hornist, flutist and percussionist +Born July 25, 1921 in New York, New York, USA, died November 4, 2016 in Del Ray Beach, Florida, USA + +Played with Benny Goodman, Coleman Hawkins, Clark Terry, Toots Thielemans, Stan Getz, Bobby Scott, Freddie Slack, Johnny Richards, Claude Thornhill, Luis Barreiro, Ben Webster, Terry Gibbs, Charlie Ventura, Dizzy Gillespie and many others.Needs VoteA. EpsteinAl (Young) EpsteinAl Young (Epstein)Albert EpsteinEpsteinAl YoungAndy Kirk And His Clouds Of JoyGlenn Miller And His OrchestraBenny Goodman And His OrchestraTerry Gibbs And His OrchestraChubby Jackson's OrchestraGeorge Russell OrchestraBob Brookmeyer And His OrchestraManny Albam And His OrchestraHal Schaefer And His OrchestraJoe Newman And His OrchestraUrbie Green And His All-StarsThe New York Saxophone Quartet + +302498Carl FontanaCarl Charles FontanaAmerican trombonist, born 18 July 1928 in Monroe, Louisiana, USA and died 9 October 2003, Las Vegas, Nevada, USA. +Needs Votehttps://en.wikipedia.org/wiki/Carl_FontanaC. FontanaCarl FontannaFontanaK. FontanaWoody Herman And His OrchestraStan Kenton And His OrchestraThe KentoniansKai Winding And His SeptetWoody Herman And His WoodchoppersThe World's Greatest JazzbandWoody Herman And The Swingin' HerdThe Woody Herman Big BandBill Perkins OctetCarl Fontana's Cleveland ExpressWoody Herman And His Third HerdWoody Herman And The Fourth HerdBobby Knight's Great American Trombone CompanyBobby Shew QuintetThe Hanna-Fontana BandWoody Herman And The Thundering HerdThe Woody James SeptetThe Russ Gary Big Band ExpressThe Carl Fontana - Andy Martin QuintetRaoul Romero And His Jazz Stars OrchestraThe Las Vegas Jazz OrchestraThe Duško Gojković SextetThe Carl Fontana QuartetThe Carl Fontana - Arno Marsh QuintetLouise Baranger Jazz Band + +302500Dick LiebRichard LiebDick Lieb is a composer, conductor, and arranger who spent time as a bass trombonist and arranger for the Kai Winding Septet, Radio City Music Hall Orchestra, and the New York Tonight Show Band. + +He has worked on several Sesame Street and Muppet projects over the years, and also worked on other CTW series, including 3-2-1 Contact.Needs VoteD. LiebDick LeibLiebRichard LiebZiskind LiebZiskind R. LiebGil Evans And His OrchestraWoody Herman And His OrchestraKai Winding And His SeptetWoody Herman And The Fourth HerdThe Kai Winding Orchestra + +302582Geoff FosterGeoffrey FosterEngineer and mixer, represented by AIR Management.Needs Votehttps://www.airstudios.com/geoff-foster/Geoff "No Prey, No Pay" FosterGeoff FisherGeoff ForsterGoeff FisherJeff FosterJeph Foster + +302641Terry SnyderAmerican drummer and percussionist, born 1916, died 17 March 1963 in New York City, USA.Needs Votehttps://www.spaceagepop.com/snyder.htmhttps://www.freshsoundrecords.com/14014-terry-snyder-albumshttps://www.drumchat.com/showthread.php/38595-Terry-SnyderSnyderT SnyderT. SnyderTerry SniderTerry Snyder And His RhythmTerry Snyder Mr. PercusionTerry SryderFredricoBenny Goodman SextetBenny Goodman And His OrchestraThe Command All-StarsTerry Snyder And The All StarsBuddy Morrow And His OrchestraThe Charleston City All-StarsCharles Magnante And His OrchestraDick Hyman And His QuintetThe New Benny Goodman SextetStu Phillips SextetThe Buddy Weed QuartetEdgar Sampson And His OrchestraWill Bradley and HIs Jazz OctetEsquire All-American Jazz Band + +302675Felix SlatkinFelix ZlotkinAmerican violinist and conductor, born 22 December 1915 in St. Louis, Missouri, USA and died 8 February 1963 from a heart attack. He founded the [a=The Concert Arts Orchestra]. + +He was married to [a435327], and is the father of musicians [a550341] and [a328533]. +Needs Votehttps://en.wikipedia.org/wiki/Felix_SlatkinAs Maravilhosas Cordas De Felix SlatkinConducting TheF. SlatkinFSFelix Slatkin conductingFelix SlatteinFélix SlatkinM/Sgt Felix SlatkinM/Sgt Felix Slatkin, ConductingPhelix SlatkinSlatkinThe Drum Brigadefsフェリックス・スラットキンHarry James And His OrchestraTwentieth Century-Fox Studio OrchestraThe Hollywood String QuartetFelix Slatkin And His OrchestraJohnny Richards And His OrchestraThe Fantastic Strings Of Felix SlatkinBenny Goodman With Strings + +303060Helen DonathHelen Jeanette Donath née ErwinAmerican soprano, born 10 July 1940 in Corpus Christi, Texas, USA.Correcthttp://en.wikipedia.org/wiki/Helen_DonathDonathDonath,H. DonathHelen Donath-NeumeisterHelen ErwinX. ДонатХелен Донатヘレン・ドナート + +303141Peanuts HollandHerbert Lee HollandUS jazz trumpeter from the swing-era. +Born February 9, 1910 in Norfolk, VA, USA. +Died February 7, 1979 in Stockholm, Sweden. + +Needs Vote"Peanuts Holland""Peanuts" HollandH.L. 'Peanuts' HollandHerbert "Peanuts" HollandHerbert 'Peanuts' HollandHerbert L. "Peanuts" HollandHerbert Lee "Peanuts" HollandHerbert Peanuts HollandHerbert “Peanuts” HollandHollandP. HollandPea. HollandPeanuts Holland With Rhythm Section»Peanuts» Holland“Peanuts" HollandCharlie Barnet And His OrchestraDon Redman And His OrchestraDon Byas And His OrchestraTyree Glenn & His OrchestraGuy Lafitte Et Son OrchestreDon Byas Ree-BoppersAlphonso Trent And His OrchestraPeanuts Holland And His OrchestraBob Henders SextettThe Angels Of Jump + +303209MachitoFrancisco Raúl Gutiérrez GrilloLatin singer, percussionist, bandleader, and songwriter, born circa December 3, 1909 - died April 15, 1984, London, England. + +There are conflicting accounts of his birthplace and birthdate.Needs Votehttp://www.descarga.com/cgi-bin/db/archives/Profile49http://en.wikipedia.org/wiki/Machitohttps://adp.library.ucsb.edu/names/105915https://www.imdb.com/name/nm2060884/"Machito"Machito (Raul Grillo)Machito And ChorusMachito And His OrchestraR. GutiérrezRaúl GutiérrezFrank "Machito" GrilloMachito And His OrchestraMachito & His Afro-CubansMachito's Rhythm SectionCuarteto Caney + +303402Terumasa Hino日野皓正 (Hino Terumasa)Japanese jazz trumpeter +Born October 25, 1942 in Tokyo + +He is widely acknowledged as one of the finest Japanese jazz musicians in Europe and USA. +Currently based in New York. +Needs Votehttp://www.terumasahino.com/https://en.wikipedia.org/wiki/Terumasa_Hinohttps://ja.wikipedia.org/wiki/%E6%97%A5%E9%87%8E%E7%9A%93%E6%AD%A3https://www.facebook.com/people/日野皓正Terumasa-Hino/100063006799835/HinoHino TerumasaT. HinoT.HinoTeramasa Hino日野日野 皓正日野 皓正日野晧正日野正日野皓正日野皓正 (Hino Terumasa)稲葉國光Gil Evans And His OrchestraHideo Shiraki QuintetTerumasa Hino QuintetThe Eleventh HouseThe David Liebman QuintetTerumasa Hino SextetBob Moses QuintetKen McIntyre SextetJazz Of Japan All StarsSam Jones QuintetHino=Kikuchi QuintetTerumasa Hino QuartetTerumasa Hino OrchestraBob Degen QuartetElvin Jones QuintetKochi (4)Terumasa Hino And His GroupTerumasa Hino-Masabumi Kikuchi QuintetHino-Kikuchi Duo日野皓正とクインテット+ストリングスHino=Kikuchi & The All-Stars + +303407Lynn SeatonAmerican jazz bassist, born 18 July 1957 in Tulsa, Oklahoma, USA.Needs Votehttp://www.lynnseaton.com/Lyn SeatonWoody Herman And His OrchestraThe Kenny Drew Jr. TrioThe Woody Herman Big BandJeff Hamilton TrioThe Frank Wess QuartetThe Blue Wisp Big BandBill Warfield Big BandThe Howard Alden TrioJohn Fedchock New York Big BandDMP Big BandBuck Clayton And His Swing BandLynn Seaton TrioJohn Colianni TrioJay Lawrence TrioKenny Drew Jr. SextetMary Ellen Bell QuartetBrian Piper TrioRob Parton's Ensemble 9+ + +303409Byron StriplingTrumpet and flugelhorn playerNeeds Votehttps://en.wikipedia.org/wiki/Byron_StriplingByron StripplingLloyd B. StriplingStriplingバイロン・ストリプリングCount Basie OrchestraWoody Herman And His OrchestraThe Carnegie Hall Jazz BandThe Clayton-Hamilton Jazz OrchestraThe United Nation OrchestraBob Mintzer Big BandThe Woody Herman Big BandDick Hyman GroupThe Columbus Jazz OrchestraThe Carla Bley Big BandBuck Clayton And His Swing BandByron Stripling And Friends + +303420Gary SmulyanAmerican jazz saxophonist, born on April 4, 1956 in Bethpage, New York, USANeeds Votehttp://garysmulyan.com/https://garysmulyan.bandcamp.com/G. SmulyanGil Evans And His OrchestraWoody Herman And His OrchestraJoe Lovano NonetDave Holland Big BandThe Carnegie Hall Jazz BandWoody Herman & The Young Thundering HerdJoe Lovano EnsembleMingus Big BandThe Philip Morris SuperbandWoody Herman And The Thundering HerdThe Vanguard Jazz OrchestraGary Smulyan QuartetGary Smulyan QuintetDizzy Gillespie All-Star Big BandMel Lewis SextetJohn Fedchock New York Big BandDMP Big BandDave Holland OctetMike LeDonne QuintetJimmy Heath Big BandThe Carla Bley Big BandThe Northwest Prevailing WindsGary Smulyan NonetGrachan Moncur III OctetMark Masters EnsembleMichel Camilo Big BandThree Baritone Saxophone BandChico & Rita New York BandCory Weeds Little Big BandFreddie Hubbard OctetGary Smulyan & Ralph Moore QuintetGary Smulyan And BrassTim Armacost Chordless QuintetThe Dizzy Gillespie™ Alumni All-Star Big Band + +303473Mario AbramovichArgentine violinist and composer. Born October 31st, 1926 and died December 1st, 2014.Needs Votehttps://en.wikipedia.org/wiki/Mario_AbramovichAbramovichM. AbramovichMario AbramóvichMoises AbramovichSexteto MayorOrquesta Osvaldo RequenaSeleccion Nacional De TangoCarlos Garcia & Tango All Stars + +303490Luis StazoLuis Antonio StazoArgentinian bandoneonist, composer, arranger and orchestra director +(born in Buenos Aires, 21 Jun 1930 - 20 March 2019, Germany) + +There were two men who made the Major Sextet shine throughout the world; are the teachers José "Pepe" Libertella and Luis Stazo, their founders, back in 1973. They were like two lanterns that shone together, and when Libertella died, in 2004, it took just a few more months for Stazo to decide to take a step cost in the direction of the historic city of Buenos Aires, to settle in Germany and continue from there giving the fire. There he stayed with Manuela, his wife, where he founded the Stazo and Stazo Mayor Trio. And right there too, it was where yesterday, with 85 years feeding the great pages of Buenos Aires tango, the sad news of his departure was known. + +Encouraged by his parents, Stazo started from a very young age in the bandoneon studio, and at 10 he was already a Youth Orchestra, until he made his professional debut at age 18 in the Jorge Argentino Fernández Orchestra. Then he would play with Juan Carlos Cobián, Lucio Demare, Argentino Galván, Osmar Maderna, Francisco Rotundo, Alfredo De Angelis, Armando Cupo and Ernesto Baffa. His arrangements, in the trio he formed with Armando Cupo and Mario Monteleone, enhanced the voice of Roberto Goyeneche; and later, with Orlando Tripod, he founded Los Siete del Tango (1965-1969). + +On April 29, 1973, at La Casa de Carlos Gardel, he debuted as co-director of the Sexteto Mayor -which is still playing with Horacio Romo in his post- along with Libertella, Armando Cupo, Reynaldo Nichele, Fernando Suárez Paz and Juan Carlos Vallejos . With the Argentine Tango show, they triumphed in Paris, New York, Japan and toured the world.Needs VoteJuan Carlos GoyenecheL. DemareL. StazoLuis Antonio StazoLuis StasoLuis StazzoLuisa StazoLuís StazoOrchestra De Luis StazoOrquesta Luis StazoSexteto De Luis StazoStazoStazzoSexteto MayorLos 7 Del TangoOrquesta De Luis Stazo + +303575Kris KristoffersonKristoffer Kristian KristoffersonAmerican singer, songwriter and actor, born 22 June 1936 in Brownsville, Texas, USA; died 28 September 2024 in Maui, Hawaii, USA. + +Both a respected recording artist and songwriter - among his best known compositions were "Me And Bobby McGee" (1969), "For The Good Times" (1970) and "Help Me Make It Through The Night" (1970) - he was inducted into the Country Music Hall of Fame in 2004. + +Kristofferson was married to [a=Rita Coolidge] (2nd marriage) from 1973 until 1980. He was married to [a=Lisa Kristofferson], née Meyers, (3rd marriage) since 1983 and they have five children. One daughter is [a8277490]. + +• For the Nashville-area photographer, please use [b][a2384880][/b] with appropriate ANV if needed. +Needs Votehttps://kriskristofferson.com/https://www.facebook.com/kriskristoffersonhttps://www.facebook.com/groups/7240307842/about/https://kriskristoffersonfan.com/https://en.wikipedia.org/wiki/Kris_Kristoffersonhttps://www.imdb.com/name/nm0001434/https://musicianbio.org/kris-kristofferson/https://www.biography.com/people/kris-kristofferson-177860https://www.geni.com/people/Kris-Kristofferson/6000000002905483846https://marriedbiography.com/kris-kristofferson-biography/https://www.allmusic.com/artist/kris-kristofferson-mn0000774588C. ChistofersenC. ChristoffersonC. ChristophersenC. ChristophersonC. KristoffersonC.ChristofferssonCarsonChris ChristofersonChris ChristoffersonChris ChristopfersonChris ChristophersonChris KristofersonChris KristoffersenChris KristoffersonChris. KristofersenChristofersonCristoffersonK KristoffersonK, KristoffersonK. KristoffersonK. ChristofersonK. ChristophersonK. KirstoffersonK. KistoffersonK. KrisstofersonK. KrisstoffersonK. KristiffersonK. KristofersonK. KristofersonsK. KristoffensonK. KristoffersK. KristoffersenK. KristoffersonK. KristofferssonK. KristoffrsonK. KristophersonK. KristosfersonK. KrsitoffersonK..KristoffersonK.K.K.KristofersonK.KristofersonsK.Kristoffer SonK.KristoffersonKhris KhristoffersonKistoffersonKrisKris ChristoffersenKris K.Kris KristofersonKris KristoffersenKris Kristofferson & FriendsKris KristofferssonKris KristophersonKrisoffersonKriss KristoffersonKristiffersonKristofer KristoffersonKristofersonKristoff KristoffersonKristoffeicsonKristoffer KristoffersenKristoffer KristoffersonKristoffer KristofferssonKristoffersenKristoffersonKristofferson / KristofferKristofferson KKristofferson K.Kristofferson, KristofferKristoffersonkKristofferssonKristoffesonKristofffersonKristoffisonKristoffosonKristoffrsonKristophersonKristophesonKristossersonKrostoffersonYour Captaink. KristoffersonК. КристоферсонК. КристофферсонКрис КристофърсънКристофорсонС. КристофферсонThe HighwaymenOutlaw CountryKris Kristofferson & Rita CoolidgeTony & Kris + +304236Ellie GreenwichEleanor Louise GreenwichAmerican pop music singer, songwriter, and record producer. +Born October 23, 1940, Brooklyn, New York, USA. +Died August 26, 2009, New York City, New York, USA. +Married to songwriter [a=Jeff Barry] (1962-65). +Greenwich wrote or co-wrote many hit songs of the 1960's and 1970's including "Be My Baby", "Da Doo Ron Ron", "Leader of the Pack", and "River Deep, Mountain High". The husband-and-wife songwriting team of Jeff Barry and Ellie Greenwich was among the most successful and prolific of the Brill Building composers, and many of their hits were co-written and produced by [a=Phil Spector]. Greenwich and Barry charted ninety-four songs together, including six #1 songs. Greenwich wrote or co-wrote 107 charted songs between 1962-2022. +Greenwich also charted twice as a singer: "I Want You to Be My Baby" in 1967 hit #83 and "Maybe I Know" hit #122 in 1973, both in the U.S. +During 1967, Greenwich formed [l=Pineywood Music Ltd.]/[l=Pineywood Music] with [a=Mike Rashkow]. The partnership ended in 1971. + +Inducted into the Rock & Roll Hall Of Fame in 2010 (songwriter).Needs Votehttps://www.facebook.com/ellie.greenwich.5https://en.wikipedia.org/wiki/Ellie_Greenwichhttps://www.nytimes.com/2009/08/27/arts/music/27greenwich.htmlhttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/6100832/Ellie-Greenwich.htmlhttp://www.allmusic.com/artist/ellie-greenwich-mn0000154326/biographyhttps://musicianbio.org/ellie-greenwich/https://www.famousbirthdays.com/people/ellie-greenwich.htmlA. GreenwichAlly GreenwichB GreenwichB. GreenwichBreenwichD. GreenwichE GreenwichE, GreenwichE. GeenwichE. Green NichE. Green WichE. GreenvichE. GreenvischE. GreenwhichE. GreenwiceE. GreenwichE. GreenwickE. GreenwitchE. GreewichE. GrenwichE.GreenwhichE.GreenwichE.GreenwickEleanor GreenwichElie GreenwichElionar GreenwichElle GreenwichEllen GreenwichElli GreenwichElli/GreenwichEllieEllie Creewic NwichEllie Green-wichEllie GreenfieldEllie GreenichEllie GreenwachEllie GreenwienEllie GreenwitchEllie-GreenwichEllies GreenwichElliot GreenwichEllis GreenwichElly GreenwichG. EleanorGeenwichGreemwichGreen WichGreenichGreenwechGreenwhichGreenwichGreenwich EllieGreenwich, E.Greenwich, EllieGreenwichtGreenwickGreenwideGreenwishGreenwitchGreewichGrennwichGrenwichL. GreenwichN. GreenwichR.E. Greenwiche. Greenwiche. greenwichГринвичגרינוילKellie DouglasEllie GayeTeddy PrestonThe Popsicles (2)The RaindropsSpector, Greenwich & BarryLes Girls (2)The MeantimeEllie Gee & The Jets + +304241Felix CavaliereUS-American musician, songwriter, singer, and producer born November 29, 1942 in Pelham, New York. Best known as a member of [a418174], he was inducted into Songwriters Hall of Fame in 2009.Needs Votehttps://www.felixcavalieremusic.com/https://www.facebook.com/felixcavalieresrascals/https://en.wikipedia.org/wiki/Felix_Cavalierehttps://www.youtube.com/@felixcavalieresrascals449https://www.songhall.org/profile/felix_cavaliereCabaliereCalaviereCaualiereCavalaereCavalierCavaliereCavaliere/FelixCavalieriCavaliersCavalièreCavaljereCavallieriCavallèreCaviereCovaliereE. BrigateEddie CavaliereF CavaliereF. CavaliereF. CabaliereF. CalaliereF. CavalierF. CavaliereF. CavalieriF. CavaliersF. CavalièreF. CavalleriF. CavilaireF. CaviliereF. CavliereF.CavaliereFekix CavaliereFelixFelix A. CavaliereFelix CacaliereFelix CalaliereFelix CavalereFelix CavalierFelix CavalieriFelix CavalierieFelix CavalliereFelix CavallieriFelix CavilaireFelix CaviliereFelix CavlieriFelix CavuliereFelix CovaliereFelix/CavaliereFreddie CavaliereFélix CavaliereFélix CavalièreS. CavallereT. Cavalierif. CavaliereThe RascalsPeace ChoirJoey Dee & The StarlitersThe Young RascalsLittle Steven And The Disciples Of SoulRingo Starr And His All-Starr BandTreasure (7)Felix & The Escorts + +304305Art MaebeArthur Nicholas Maebe, Jr.American horn player. +Son of [a7400735]Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/328962/Maebe_ArthurA. MaebeArt MaebaArt Maebe Jr.Art MaebyArt MarbeArthur AmabeArthur MabeArthur MaebeArthur Maebe Jr.Arthur Maebe Sr.Arthur Maebe, Jr.Arthur MaebelArthur MarbeArthur MaybeArthur N. MaebeArthur N. MarbeArthus MaebeMaebeMaebe ArthurGerald Wilson OrchestraHenry Mancini And His OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraThe Tommy Vig OrchestraThe Los Angeles Neophonic OrchestraThe Horn Club Of Los AngelesThe Wrecking Crew (6) + +304310Paul HubinonPaul Joseph HubinonAmerican trumpet player. + +Born: 25th March, 1942 in Charleroi, Pennsylvania. +Dead: 25th May, 1977 in Hollywood, California.Needs Votehttps://www.feenotes.com/database/artists/hubinon-paul-25th-march-1942-may-1977/Paul HubenonPaul HubinanPaul HubinionPaul HubunonPaul HuebenonPaul J. HubinonPaul T. HubinonSgt. Paul HubinonGerald Wilson OrchestraLalo Schifrin & OrchestraPaul Hubinon - Ray Defade Orchestra + +304316Louise Di TullioAmerica flute player. A former member of the Los Angeles Philharmonic Orchestra, she played flute and solo piccolo with that orchestra for six years before resigning in 1966. Continued her career as a free-lance musician for motion picture and television orchestras. Won the 'Most Valuable Player Award' for the years 1975-1978, awarded by the Los Angeles Chapter of the National Academy of Recording Arts and Sciences. In 1980 she was solo flutist fro the Pasadena Symphony, the California Chamber Symphony, and the Orchestra. She has recorded for Columbia Records as first flute with the Columbia Symphony.Needs Votehttps://www.louiseditullio.com/https://www.imdb.com/name/nm1320320/DiTullio Louise M.Ditullio LouiseL. Di TullioLouis DeTullioLouis Di TullioLouis DiTullioLouis DitullioLouise D. DiTullioLouise D. DitullioLouise De TullioLouise DeTullioLouise Di TulioLouise Di Tullio DissmanLouise Di TulloLouise Di'TullioLouise DiTulioLouise DiTullioLouise DiTullio (Dissman)Louise DiTullio DillonLouise DiTullio DissmanLouise DiTullio-DissmanLouise DiTulloLouise DissmanLouise Dissman (DiTullio)Louise Dissman (Ditullio)Louise Dissman-DiTullioLouise DitallioLouise DitullioLouise M. Di Tullio DissmanLouise M. DiTullioLouise M. DiTullio (Dissman)Louise M. DiTullio DillonLouise M. DiTullio DissmanLouise M. DituleioLouise M. DitullioLouise M. Ditullio (Dissman)Louise TuilloLouse DitullioLousie M DitullioLouise D. DissmanLouise DillonLos Angeles Philharmonic OrchestraThe Los Angeles Chamber OrchestraPacific Symphony OrchestraHollywood Studios Woodwinds Quintet + +304375Russell SmithAmerican jazz trumpeter and singer. +His brother Joe ("Fox") Smith (1902 - 1937) was a jazz trumpeter. + +Born : 1890 in Ripley, Ohio. +Died : March 27, 1966 in Los Angeles, California.Needs Votehttps://en.wikipedia.org/wiki/Russell_Smith_(trumpeter)https://www.allmusic.com/artist/russell-smith-mn0001236232J. SmithR. SmithRussel SmithCab Calloway And His OrchestraFletcher Henderson And His OrchestraThe Dixie StompersThe Louisiana StompersFletcher Henderson And His Connie's Inn OrchestraBenny Carter And His OrchestraConnie's Inn OrchestraHorace Henderson And His OrchestraEarl Randolph's Orchestra + +304477Paul ArchibaldPaul ArchibaldBritish trumpeter.Needs Votehttp://www.paularchibald.co.uk/https://soundcloud.com/user-849129909ArchibaldP ArchibaldP. ArchibaldThe London Session OrchestraLondon BrassLondon SinfoniettaThe London OrchestraPhilip Jones Brass EnsembleLondon Festival OrchestraOrchestra Of The Royal Opera House, Covent GardenBritten SinfoniaBBC National Orchestra Of WalesThe Orchestra Of St. John'sYoung Musicians Symphony Orchestra + +304478Martin OwenBritish horn player, and Professor of Horn. Born 22 September 1973. +He studied at the [l527847]. Principal Horn at the [a=BBC Symphony Orchestra] since 2008, having served as Principal Horn of the [a=Royal Philharmonic Orchestra] for ten years (1998-2008), and from 2012-13 was contracted as Principal Horn of the [a=Berliner Philharmoniker]. Also Principal Horn in the California-based chamber music ensemble [a=Camerata Pacifica] and the UK's [a=Britten Sinfonia] and [a=The Haffner Wind Ensemble Of London]. +Professor of Horn at the [l527847].Needs Votehttps://www.facebook.com/people/Martin-Owen-horn/100034534464364/https://twitter.com/martinowenhornhttps://music.apple.com/us/artist/martin-owen/153681275https://en.wikipedia.org/wiki/Martin_Owenhttps://www.worldwideartists.com/Martin-Owen-horn-biographyhttps://www.ram.ac.uk/people/martin-owenhttps://www.imdb.com/name/nm9659714/Ensemble ModernLondon Symphony OrchestraBerliner PhilharmonikerBBC Symphony OrchestraRoyal Philharmonic OrchestraThe Millennia EnsembleBritten SinfoniaThe Haffner Wind Ensemble Of LondonCamerata PacificaThe Pale Blue Orchestra + +304482Andrew BusherTenor vocalist, active in various ensemblesNeeds Votehttps://www.bach-cantatas.com/Bio/Busher-Andrew.htmhttps://www.imdb.com/name/nm6753406/A. BusherAndrew BasherAndy Busherアンドリュー・ブッシャーThe Swingle SingersMetro VoicesLondon VoicesThe Monteverdi ChoirSynergy VocalsTenebrae (10) + +304483Richard AddisonRichard AddisonRichard Addison is a clarinetist and a member of the Royal Philharmonic Orchestra. He first joined the orchestra in 1974. +For the mastering engineer please use [a=Richard Addison (2)].Needs VoteAddisonR. AddisonRichard AddissonRoyal Philharmonic OrchestraLondon Wind OrchestraWinds Of Change + +304484Ann MorfeeAnn MorfeeViolinist.Needs VoteAnn MorleeAnn MorpheeAnn MorphyAnne MorfeeAnne MorleeAnne MorpheeCity Of London SinfoniaOpus 20The Michael Nyman BandViolet WiresThe Michael Nyman OrchestraThe Orchestra Of St. John'sString Quartet (5)Hot Strings (4) + +304486Tom EdwardsBritish mainly freelance orchestral & session classical percussionist and keyboardist. +He studied percussion at the [l527847]. As well as performing regularly amongst various orchestras, he also played keyboards and percussion for [a=Spiritualized]. He was a member of [a=Coil]'s live group where he played marimba for several years, as well as contributing to various recordings. He has also performed and recorded with [a=Thighpaulsandra], and is a member of [b]Silent Letters[/b].Needs Votehttps://londonstudiopercussion.com/biog/https://www.youtube.com/channel/UCGMP2-ayYRGyf3-Ookf3HVghttps://www.tubularbellstour.co.uk/about-ushttps://brainwashed.com/common/htdocs/biog/edwardst.php?site=coil08EdwardsT-EDDCoilSpiritualizedLondon Symphony Orchestra + +304487Mary ScullyUK based classical double bass player. + +Born in Omagh, Northern Ireland, she studied in London at the Guildhall School of Music and Drama with Thomas Martin before becoming a founder member of the Guildhall Stings with whom she made many recordings for [url=https://www.discogs.com/label/1003-BMG]BMG[/url]/[url=https://www.discogs.com/label/895-RCA]RCA[/url]. + +Guest principal double bass of all major British orchestras, including the [url=http://www.discogs.com/artist/The+Royal+Philharmonic+Orchestra]Royal Philharmonic Orchestra[/url], [url=http://www.discogs.com/artist/English+Chamber+Orchestra]English Chamber Orchestra[/url], [url=http://www.discogs.com/artist/Philharmonia+Orchestra]Philharmonia Orchestra[/url] and [url=http://www.discogs.com/artist/London+Sinfonietta]London Sinfonietta[/url].Needs Votehttps://www.imdb.com/name/nm0780285/https://www.linkedin.com/in/mary-scully-b7a26058/M. ScullyMark ScullyMary CullyThe London Session OrchestraElectra StringsRoyal Philharmonic OrchestraThe London Studio OrchestraThe Millennia EnsembleLondon Metropolitan OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraLondon Festival OrchestraAluminiumThe Taliesin OrchestraMichael Collins And FriendsThe London Double Bass SoundGuildhall String EnsembleThe Chamber Orchestra Of LondonApollo Chamber Orchestra + +304491Heather CairncrossJazz and classical alto vocalist.Needs Votehttps://heathercairncross.com/https://myspace.com/altovoiceH. CairncrossHeatherHeather CairncroffHeather CarincrossHeather ChirncrossThe London ChoirThe Swingle SingersMetro VoicesLondon VoicesDunedin ConsortSynergy VocalsLa Nuova Musica + +304494Andy CrowleyAndrew CrowleyPrincipal Trumpet of the English Chamber Orchestra (since 1989) and London Sinfonietta (since May 2003). Manager and Artistic Director of [a=London Brass]. Born in London, United Kingdom.Needs Votehttps://www.acrowley.co.uk/Andrew CrowleyThe London Session OrchestraLondon BrassThe London Studio OrchestraThe Millennia EnsembleEnglish Chamber OrchestraLondon SinfoniettaThe London Scratch OrchestraThe New Blood OrchestraThe Pale Blue Orchestra + +304496Dave Lee (3)David LeeHorn player.Needs Votehttps://www.linkedin.com/in/dave-lee-6a191368/https://www.facebook.com/pages/Dave%20Lee%20(horn%20player)/109546312404251/https://en.wikipedia.org/wiki/Dave_Lee_(horn_player)D LeeD. LeeD.LeeDave LeeDavid LeeLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon Metropolitan OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraThe London Scratch OrchestraLocke Brass Consort + +304498Nigel BlackNigel BlackBritish hornist and professor. Born in 1960. +He graduated from the [l290263] in 1977. In 1979, he was appointed Principal Horn of the [a841593] at the age of 19. He was subsequently a member of [a=The Chamber Orchestra Of Europe] (founder member and first Principal Horn), the [a=Royal Philharmonic Orchestra] and the [a=London Philharmonic Orchestra] before joining the [a=Philharmonia Orchestra] in 1991, becoming Principal Horn in 1993. Head of Brass faculty and Horn professor at London's Royal College of Music.Needs Votehttps://www.linkedin.com/in/nigel-black-3391111aa/https://www.feenotes.com/database/artists/black-nigel/https://philharmonia.co.uk/bio/nigel-black/https://www.rcm.ac.uk/brass/professors/details/?id=01881https://nyphil.org/about-us/artists/nigel-blackhttps://www.imdb.com/name/nm0085455/London Philharmonic OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraOrchestra Del Teatro Alla ScalaThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraLondon MusiciThe New Blood OrchestraOrchestre de GrandeurThe London Horn SoundThe Pale Blue OrchestraThe Philharmonia Soloists + +304501Gavin McNaughtonBritish bassoon player.Needs VoteGavin MacNaughtonGavin McnaughtonGavyn McNaughtonThe Academy Of St. Martin-in-the-FieldsThe Orchestra Of St. John'sThe Pale Blue Orchestra + +304502Paul GardhamPaul GardhamBritish French horn player. He has performed with the major London orchestras and has held chairs in the [a=Orchestra Of The Royal Opera House, Covent Garden] and the [a=Royal Philharmonic Orchestra] as co-principal. +He may appear as [b]Paul Gargham[/b].Needs Votehttp://www.gmn.com/artists/artist.asp?id=2009&bio=true&bioID=65092&ms=2https://www.imdb.com/name/nm0307349/Paul GarghamLondon BrassRoyal Philharmonic OrchestraThe London OrchestraOrchestra Of The Royal Opera House, Covent GardenThe Taliesin OrchestraThe Wallace Collection + +304503Miffy HirschViolinist.Needs VoteMiffi HirschEnglish Chamber OrchestraLondon Sinfonietta + +304506Jane MarshallJane MacPherson née MarshallBritish session musician and freelance oboe and Cor Anglais (English Horn). +She studied at [l305416]. Previous Principal Cor Anglais of both the [a=BBC Symphony Orchestra] (for 6 years) and the [a=Philharmonia Orchestra] (for 16 years). Cor Anglais Professor at the [l290263] and at [l305416]. +She has changed career in the wake of coronavirus lockdown becoming a Nordic walking instructor. She has set up the Suffolk School of Nordic Walking, based in her home village, near Ipswich.Needs Votehttps://www.rcm.ac.uk/woodwind/professors/details/?id=01700http://arcadiamusic.org.uk/pages/node/38https://www.ipswichstar.co.uk/news/top-suffolk-musician-becomes-nordic-walking-instructor-1-6866191https://www.allmusic.com/artist/jane-marshall-mn0000045744/https://www2.bfi.org.uk/films-tv-people/4ce2bd8b1d296BBC Symphony OrchestraPhilharmonia OrchestraThe Philharmonia Soloists + +304508Chris Cowie (2)Christopher CowieBritish oboist, and Professof of Oboe. Originally from Cardiff, Wales, UK. +He studied at the [l290263] (1981-1985). During his studies, he was given the position of Principal Oboe with the [a863063]. Principal Oboe of the [a=Academy Of St. Martin-in-the-Fields] chamber ensemble (04/2002-01/2017) and [a855061] (02/2017-present). Joint Principal Oboe of the [a=Philharmonia Orchestra] (01/1999-01/2017). Professor of Oboe at the Royal Academy of Music (09/1994-07/2008). Member of the faculty of the [l527847], where he holds the position of Professor of Oboe since September 2012.Needs Votehttps://www.facebook.com/christopher.cowie.58https://www.linkedin.com/in/christopher-cowie-6778465b/https://www.feenotes.com/database/artists/cowie-christopher/https://www.ram.ac.uk/people/christopher-cowiehttp://www.camdenso.org.uk/christopher-cowie-oboeChristopher CowiChristopher CowieChristopher CowrieBBC Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsOrchestra Of The Royal Opera House, Covent GardenEuropean Union Youth OrchestraYoung Musicians Symphony Orchestra + +304509Jonathan ReesViolinist and conductor. + +For the British cellist, please use [a=Jonathan Rees (4)]Needs VoteDonovan ReesJoanathan ReesJoanthan ReesJohnny ReesJonathon ReesReesThe London Session OrchestraThe London Studio OrchestraThe Millennia EnsembleScottish Ensemble + +304512Anthony PikeClarinetist.Needs VoteAntony PikeEnglish Chamber OrchestraThe Oculus EnsembleLondon Soloists Ensemble (2) + +304513Hugh SeenanBritish classical hornist, and Professor of Horn. Born ca 1956 in Glasgow, Scotland, UK. +He was a member of the [a=Glasgow Youth Choir] for nine years (age 5 to age 14). He then joined the [b]Glasgow Schools Symphony Orchestra[/b] and, in his final two years at school, was given a place as a Junior Exhibitioner at the [l=Royal Scottish Academy Of Music And Drama]. In 1974, he moved to London to continue his studies at [l305416]. In 1976, he was appointed 5th horn of the [a=Royal Philharmonic Orchestra], aged 20, while still a third year student at the GSMD. In 1979, he was appointed Principal Horn of the [a=Royal Scottish National Orchestra]. In 1985, he joined the [a=London Symphony Orchestra]. He resigned his position in 1997, after twelve years as Principal Horn. Member of the [b]Corinthian Chamber Orchestra[/b]. He has played horn for over two hundred movie soundtracks. He was Professor of Horn at the Guildhall School of Music & Drama (1985-2012). He was Honorary Chairman of the British Horn Society from 1999 to 2005.Needs Votehttp://prohorn.co.uk/https://www.youtube.com/channel/UCyI3ODzB7mZ7fPviX3FRZyAhttps://open.spotify.com/artist/2AMIdqKqjK7yURxkJPqVPChttps://music.apple.com/us/artist/hugh-seenan/274267358http://www.corinthianorchestra.org.uk/content/hugh-seenan-french-hornhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/112-hugh-seenan/https://www.imdb.com/name/nm1179180/Hugh SennanThe London Session OrchestraLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraThe Taliesin OrchestraThe White City SeptetFestival All Star Horn EnsembleGlasgow Youth ChoirThe Symphonic Brass Of London + +304514Roger ArgenteRoger ArgenteRoger Argente is a trombonist, born in Neath, South Wales in 1962. He started playing the trombone at the age of 12, and was a graduate of the Royal Northern College of Music, Manchester. Upon graduating in September 1986, Argente joined the Bournemouth Symphony Orchestra, before moving to the Royal Philharmonic Orchestra in April 1992. In addition to his role in the RPO, Argente has appeared as a guest performer with the London Symphony Orchestra, London Philharmonic Orchestra, BBC Symphony Orchestra, Royal Opera House, Covent Garden, London Sinfonietta, London Brass, Symphonic Brass of London and the Super World Orchestra at the Tokyo International Music Festival.Needs VoteRonald BryansThe London Session OrchestraRoyal Philharmonic Orchestra + +304515Jonathan TunnellBritish cellist, orchestra manager & fixer, charity director, fundraiser, and web designer. +He studied at the [l459222] and in Berlin, Germany. Whilst in Berlin, he played with [a=Gruppe Neue Musik Berlin] and the [a=Berliner Philharmoniker]. On returning to the UK, he was for seven years a member of the [a=Brindisi Quartet]. He has performed quintets with the [a=The Allegri String Quartet], [a=Belcea Quartet], [a=The Maggini Quartet] and [a=The Medici Quartet] and plays regularly with [a=The Academy Of St. Martin-In-The-Fields] and the [A=English Chamber Orchestra]. He is co-principal cello with [A=The Orchestra Of St. John's] and the [b]Orchestra of the Glyndebourne Tour[/b]. He has played as guest principal with the [a=City Of London Sinfonia], the [a=BBC Scottish Symphony Orchestra] and the [a=Scottish Ensemble]. Artistic Director of The Tunnell Trust. +Eldest son of the violinist [a=John Tunnell], and brother of the harpist [a=Philippa Tunnell]. Nephew of [a=Susan Tunnell] and [a=Charles Tunnell]. +Needs Votehttp://jonathantunnell.com/https://www.facebook.com/jonathan.tunnell.14https://www.instagram.com/tunnelljonathan/https://www.linkedin.com/in/jonathan-tunnell-69638a38/?originalSubdomain=ukhttps://open.spotify.com/artist/47i7oQBxTb9fLMIkk8N8QHhttps://www.imdb.com/name/nm1179327/https://www2.bfi.org.uk/films-tv-people/4ce2bc45303b3John TunnelJohn TunnellJon TunnellJonathan TunnelJonathon TunnelThe London Session OrchestraBerliner PhilharmonikerEnglish Chamber OrchestraLondon Metropolitan OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Festival OrchestraBrindisi QuartetThe London Cello SoundThe Orchestra Of St. John'sGruppe Neue Musik Berlin + +304516Sarah EydenSoprano vocalist.Needs Votehttps://www.saraheyden.com/https://www.linkedin.com/in/saraheyden/https://www.imdb.com/name/nm3132529/Sarah EyedenThe London ChoirThe Swingle SingersMetro VoicesLondon Voices + +304518Kate MuskerCatherine MuskerViola player.Needs Votehttps://www.imdb.com/name/nm0615781/https://www2.bfi.org.uk/films-tv-people/4ce2bb529ca76Catherine MuskeCatherine MuskerKate MaskerKate MusherKaye Muskerケイト・マスカーThe Balanescu QuartetRoyal Philharmonic OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraBritten SinfoniaThe Pale Blue OrchestraHot Strings (4) + +304519Philip DukesPhillip DukesBritish viola playerNeeds Votehttp://www.philipdukes.co.uk/Phi DukesPhil DukesPhilipDukesPhill DukesPhillip DukesThe London Session OrchestraThe Nash EnsembleSpectrum Concerts BerlinThe Locrian EnsemblePlane-Dukes-Rahman Trio + +304520Margaret TindaleMargaret TindaleOboist. CorrectOrchestra Of The Royal Opera House, Covent Garden + +304522Jacqueline BarronBritish singer, whose repertoire ranges from operetta and musicals through to contemporary music and jazz. She also sings incidental music for television and Hollywood movies.Needs Votehttp://www.jacquelinebarron.com/Jackie BarronJacqui BarronJacqui Barron,Jaqueline BarronThe London ChoirMetro VoicesLondon Voices + +304523Jeremy MorrisViolinistCorrectMorrisThe Academy Of St. Martin-in-the-FieldsThe London Scratch OrchestraThe New Blood Orchestra + +304525Roger ChaseBritish classical viola player and teacher, born in 1953 in London, England. +He studied at the [l290263] from 1964 to 1974. He made his debut performance in 1979 with the [a415725]. He was a member of many ensembles including [a=The Nash Ensemble] for more than 20 years, the [a=London Sinfonietta] , the [b]Esterhazy Baryton Trio[/b], [a=The Quartet Of London], [a=Hausmusik (2)] of London, and [a=The London Chamber Orchestra]. He has since played, recorded and toured as a soloist or chamber musician in many ensembles and has been invited to play as principal violist with many international orchestras. He has taught in the UK at the Royal College of Music, the [l527847], [l305416] and the [l459222]. He has been a professor at [l828138], and currently teaches at [l1936068] in Chicago and at [l=Trinity Laban Conservatoire of Music and Dance] in London. +He plays on the 1717 Montagnana viola, which once belonged to Tertis and Shore.Needs Votehttp://www.rogerchase.comhttps://www.facebook.com/rogerchaseviola/https://open.spotify.com/artist/5gWCWKqO43ouurfk1a5L40http://en.wikipedia.org/wiki/Roger_Chasehttps://www.trinitylaban.ac.uk/study/teaching-staff/roger-chase/https://www.roosevelt.edu/academics/faculty/profile?ID=rchase01https://www.hyperion-records.co.uk/a.asp?a=A507https://www.naxos.com/person/Roger_Chase/49211.htmChaseThe London Session OrchestraEnglish Chamber OrchestraLondon SinfoniettaLondon Metropolitan OrchestraThe London Chamber OrchestraThe Quartet Of LondonThe Nash EnsembleThe Peace Together Chamber OrchestraThe New SymphoniaHausmusik (2)Hausmusik London + +304528Nigel ShortCountertenor / Alto vocalist and recording producer. He co-founded the Tenebrae choir in 2001 and is its current artistic director.Needs Votehttps://en.wikipedia.org/wiki/Nigel_Short_%28singer_and_choir_director%29https://www.tenebrae-choir.com/about/nigel-shortShortLondon VoicesThe Tallis ScholarsThe SixteenThe King's SingersThe English Concert ChoirEx Cathedra Chamber ChoirTenebrae (10)Gallicantus + +304534Gerard O'BeirneClassical tenorNeeds VoteG. O'BeirneGerald O'BeirneGerald O'BierneGerard O'BierneGerrard O'BeirneGerry O'BeirneGerry O'BierneGérard O'BeirneThe Ambrosian SingersGabrieli ConsortThe Scholars Baroque EnsembleMetro VoicesLondon VoicesLa Chapelle RoyaleThe Monteverdi ChoirThe English Concert ChoirSynergy VocalsTenebrae (10) + +304535Michaela BettsClassical hornistNeeds VoteLondon Philharmonic Orchestra + +304536Paul BenistonPaul Benistonb. 1966, Chatham, Kent, England. + +Principal Trumpet of the [b]London Philharmonic Orchestra[/b]. +Needs VotePaul BennistonLondon Philharmonic OrchestraLondon Brass + +304538Michael DoreBass / Baritone vocalist.Needs Votehttp://www.michaeldore.com/Michael DorfMichael DoréMike DoreMetro VoicesThe Stephen Hill SingersLondon Voices + +304702David RoachBritish classical saxophonist. Born in 1955 in Darlington, County Durham, England, UK. +He has played soprano and alto saxophone for [a=The Michael Nyman Band] since 1985, making his debut on '[m=68166]' and appearing on nearly every album since. Prior to that he was a founding member of the [b]Myrha Saxophone Quartet[/b]. Member of the [a=Apollo Saxophone Quartet] and member/producer of [a=The London Saxophonic]. He has played sax for the [a=Philharmonia Orchestra] for 25 years.Needs Votehttps://en.wikipedia.org/wiki/David_Roach_(saxophonist)https://www.selmer.fr/en/artist/david-roachhttps://www.imdb.com/name/nm0730091/https://www2.bfi.org.uk/films-tv-people/4ce2bb4b70f60D. RoachDaveDave RoachRoachДэвид РоучデイブッドローチPhilharmonia OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraThe London SaxophonicNyman Sax QuartetApollo Saxophone Quartet + +304718Karie PrescottViola player.Needs Votehttps://www.laopera.org/about-us/artists-2/la-opera-orchestra/orchestra-musicians/karie-prescott/https://www.imdb.com/name/nm0696114/Carie PrescottCarrie PrescottKaire PrescottKari PrescottKarie L. PrescottKarrie PrescottKatie L. PrescottKatie PrescottKorrie PrescottLos Angeles Philharmonic OrchestraThe Los Angeles Chamber OrchestraLos Angeles Master Chorale OrchestraLos Angeles Opera Orchestra + +304723Evan WilsonEvan N. WilsonViola player.Needs Votehttps://www.facebook.com/Evan.Wilson.5http://web.archive.org/web/20161022213951/http://evanwilson.com/Evan N. WilsonEven WilsonEwan N. WilsonWilson Evan N.Boston Symphony OrchestraLos Angeles Philharmonic Orchestra + +304776Jenny HillJennifer HillClassical soprano vocalist from UK is born 20.07.1944 in London/UK.CorrectThe Monteverdi Choir + +304914John MurtaughJohn E. MurtaughAmerican saxophonist. +Born on 30 October 1927 in Minneapolis, MN, USA. +Died in 2017.Needs VoteJ. MurtaughJohn MurtaghMurtaughBenny Goodman And His OrchestraThe Baroque Jazz EnsembleThe Urbie Green Septet + +304917Jimmy WitherspoonJames WitherspoonAmerican jazz and blues singer, born 8 August 1920 in Gurdon, Arkansas, died 18 September 1997 in Los Angeles, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_WitherspoonJ & R WitherspoonJ WitherspoonJ. & R. WitherspoonJ. WhitherspoonJ. WintherspoonJ. WitherspoonJ.WitherspoonJames "Jimmy" WitherspoonJames J WitherspoonJames J. WitherspoonJames J.WitherspoonJames L. WitherspoonJames WitherspoonJimmi WitherspoonJimmie WitherspoonJimmy WhiterspoonJimmy WhitherspoonJimmy WhitterspoonJimmy Witherspoon With Orchestral AccompanimentJune WitherspoonSpoonWhitherspoonWitherspoonJimmy Witherspoon And His Orchestra + +304968Béla BartókBéla Viktor János BartókBorn: 25. March 1881 (Nagyszentmiklós, Magyar Királyság, today Sânnicolau Mare, Romania). +Died: 26. September 1945 (New York, New York, USA). + +Béla Viktor János Bartók was a Hungarian composer, pianist, ethnomusicologist and collector of Eastern European and Middle Eastern folk music. +He is considered one of the greatest composers of the twentieth century; his vast production reveals a daring and restless harmonic instinct that is affected by his passionate studies on Hungarian folk songs. Typical elements of Béla Bartók style (derived from Hungarian, Transylvanian and Romanian folklore) consists in the use of irregular rhythms and a clear preference for obsessive rhythms. His compositions have sonorities, sometimes abstract, but often harsh, rough and barbaric. +Married to the pianist [a=Ditta Pásztory-Bartók]. His 2nd son, [a=Peter Bartok] became a recording engineer.Correcthttps://web.archive.org/web/20211211042844/https://bartokrecords.com/http://www.bartok.hu/https://www.famouscomposers.net/bela-bartokhttps://en.wikipedia.org/wiki/B%C3%A9la_Bart%C3%B3khttps://www.imdb.com/name/nm0059388/https://www.britannica.com/biography/Bela-Bartokhttps://www.bach-cantatas.com/Lib/Bartok-Bela.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102542/Bartk_BlaB BartokB BartókB. B.B. BartockB. BartokB. BartokasB. BartókB. BartôkB. バルトークB.BartokB.バルトークB.巴尓托克BartokBartok B.Bartok BelaBartok Bela Viktor JanosBartókBartòkBartòk BèlaBartókBartók B.Bartók BélaBartók, BélaBar´tokBelaBela BartokBela Bartok'Bela BartòkBela BartókBele BartokBella BartokBelà BartòkBelà BartôkBlaskovicBártokBèla BartokBéla BartokBéla BártokBéla BártókBéla Viktor János BartókBēla BartōkVela BartoБ. БартокБ.БартокБартокБарток БелаБела БартокБелла Бартокバルトークベラ・バルトークベラ・バルトーク = Béla Bartókベラ・バルトーク贝·巴托克 + +304973Domenico ScarlattiGiuseppe Domenico ScarlattiItalian composer and harpsichordist, born in Naples on the 26th of October, 1685, and died in Madrid on the 23rd of July, 1757. He is classified primarily as a Baroque composer chronologically, although his music was influential in the development of the Classical style. +Son of [a=Alessandro Scarlatti].Needs Votehttps://www.domenicoscarlatti.it/https://en.wikipedia.org/wiki/Domenico_Scarlattihttps://www.britannica.com/biography/Domenico-Scarlattihttps://www.treccani.it/enciclopedia/domenico-scarlatti/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102400/Scarlatti_Domenico(Giuseppe) Domenico ScarlattiAllessandro ScarlattiD ScarlattiD. ScarlattiD. SkarlattiD.G. ScarlattiD.ScarlattiD.スカルラッティDom. ScarlattiDomenci ScarlattiDomenic ScarlattiDomenica ScarlattiDomenicoDomenico ScarlattDominico ScarlattiDoménico ScarlattiGiuseppe Domenico ScarlattiGuiseppe Domenico ScarlattiMozartS. ScarlattiScalattiScarlarttiScarlattIScarlattiScarlatti D.Scarlatti DomenicoScarlatti, D.Scarlatti, Domenico GiuseppeScarlatti/TommasiniScarlottiΝτομένικο ΣκαρλάτιА. СкарлаттиД. CкapлaттиД. СкарлаттиД. СкарлаттіДоменико СкарлатиДоменико СкарлаттиДоменіко СкарлаттіДоминико СкарлаттиСкарлаттиスカルラッティドメニコ・スカルラッティドメニコ・スカルラッティ + +304975Johannes BrahmsJohannes BrahmsGerman composer, pianist, and conductor of the Romantic period, born May 7, 1833 in Hamburg, Germany, died April 3, 1897 in Vienna, Austria-Hungary.Needs Votehttps://www.johannesbrahms.org/https://en.wikipedia.org/wiki/Johannes_Brahmshttps://www.britannica.com/biography/Johannes-Brahmshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102425/Brahms_Johanneshttps://www.allmusic.com/artist/johannes-brahms-mn0000796908BragmsBrahamsBrahmBrahm'sBrahmaBrahmesBrahmsBrahms (Johannes)Brahms J.Brahms JohannesBrahms, J.Brahms, JohannesBrahmssBramhsBramsBramsasBrhamsBrāmsDrahmsGrahmsI. BrahmsI.BrahmsIohannes BrahmsJ BrahmsJ. BrahamsJ. BrahmsJ. BrahmsasJ. BramhmsJ. BramsJ. BramsasJ. BrhamsJ. BrhmsJ. BruhmsJ. BrāmssJ. S. BrahmsJ.BrahmsJ.BramsJ.BrāmssJ.J. BrahmsJ.S. BrahmsJ.S.BrahmsJ.ブラームスJoachim BrahmsJoannes BrahmsJoh BrahmsJoh. BrahmsJoh.BrahmsJohan BrahmsJohanes BrahmsJohanes BramsJohaness BrahmsJohann BrahmsJohannesJohannes BRAHMSJohannes BrahamsJohannes BrahmesJohannes BramsJohanness BrāmssJohanns BrahmsJohannès BrahmesJohannès BrahmsJohn BrahmsJohnannes BrahmsJohs. BrahmsbrahmsΓιοχάννες ΜπραμςΜπραμςЈ. БрамсЈоханес БрамсБрамсБрамс ИоганнесБрамсаИ. БрамсИ. БрамсаИ.БрамсИоган БрамсИоганес БрамсИоганесс БрамсИоганн БрамсИоганнес (Йоханнес) БрамсИоганнес БрамсИоханнес БрамсЙ. БрамсЙоганнес БрамсЙох. БрамсЙоханес БрамсЙоханнес Брамсברהמסبرامسブラームスヨハネス ブラームスヨハネス•ブラームスヨハネスブラームスヨハネス・ブラームスヨハネス・ブラームス = Johannes Brahmsヨハネス・ブラームス布拉姆斯約翰內斯勃拉姆斯브람스 + +305083Bob FisherBob FisherAmerican producer, recording artist and mastering engineer. + +[b]Six-Time Grammy Nominee[/b] with over 2,000 credits. President of [l296108], [url=http://www.HouseOfGrooves.com]House Of Grooves[/url] label & store, [url=http://www.houseofgroovesradio.com]House Of Grooves Radio[/url] and is Funk Historian and House Of Grooves personality "Uncle" Buster Greaves. + +John Philip Sousa Award winning musician, touring and recording with many soul and funk acts, notably Stax artist Johnnie Taylor and Capitol artists Colorblind. Became a reissue producer and mastering engineer for Rhino, EMI, Warner Bros., GNP Crescendo, Concord Music, Collector's Choice, Shout! Entertainment and Gene Autry Entertainment. + +Needs Votehttp://www.bobfisher.com/http://www.HouseOfGrooves.comhttp://www.HouseOfGroovesRadio.comBob "Mr. Crossfade" FisherColorblind (2) + +305103Tommy TurrentineThomas Walter Turrentine, Jr.American jazz trumpeter +Born April 22, 1928 in Pittsburgh, Pennsylvania, died May 13, 1997 in New York City, New York + +Worked with the "Benny Carter Big Band" (1946 - 1948), "George Hudson's Orchestra", Billy Eckstine, Dizzy Gillespie, Count Basie, Earl Bostic, Max Roach (1959-'60), Sonny Clark (1960), Horace Parlan, Jackie McLean, [a29958], [a200815], with his brother [a29974] (saxophonist) and others. +Needs Votehttp://en.wikipedia.org/wiki/Tommy_TurrentineNat TurrentineT. TurrentineT.TurrentineTh. TurrentineThomas TurrentineTommy Turrentine Jr.Tommy Turrentine, Jr.Turrentineトミー・タレンタインMax Roach QuintetMax Roach Plus FourMax Roach SextetHorace Parlan QuintetTurrentine BrothersTommy Turrentine Sextet + +305112Martin DrewEnglish jazz drummer and percussionist, born February 11, 1944 in Northampton, England, died July 29, 2010 in Harefield (London), England +Drew worked, among others, with [a=Frank Rosolino], [a=Ronnie Scott], [a=Oscar Peterson], [a1565159], and [a527194].Needs Votehttps://en.wikipedia.org/wiki/Martin_Drewhttps://www.drummerworld.com/drummers/Martin_Drew.htmlhttps://www.theguardian.com/music/2010/aug/12/martin-drew-obituaryhttp://homepages.tesco.net/~martindrew/DrewM. DrewThe Joe Pass TrioBobby Wellins QuartetThe Oscar Peterson QuartetPazRonnie Scott's QuintetThe Martin Drew BandThe Tony Lee TrioThe Johnny Griffin QuartetPliva Jazz LaboratoryDanny Moss QuartetThe Brian Lemon QuartetTHE NEW COURIERSPrimož Grašič TrioThe Don Harper & Denny Wright QuartetArturo Sandoval / Chucho Valdés QuartetDavide Petrocca QuartetGregory Fine Quintet + +305122Allen SmithFrederick Allen Smith, Sr.Jazz trumpeter and educator. Born 11 August 1925, died February 3, 2011 at the age of 85 years. + +[b]NOTE[/b] For the R&B producer/keyboardist associated with Keith Sweat and Xscape, please use [a=Allan "Grip" Smith]Needs VoteAl SmithAlan SmithAllan SmithGil Evans And His OrchestraAllen Smith Quartet + +305140Louis BarbarinAmerican jazz drummer based who was based in New Orleans. Retired in 1982. Son of [a=Isidore Barbarin] and brother of [a=Paul Barbarin]. + +b. October 24, 1902 (New Orleans, LA, USA) +d. May 12, 1997 (New Orleans, LA, USA) +Needs VoteBarbarinLou BarbarinLouis BarbarLouis P. BarbarinLouise BarbarinThe Onward Brass BandOriginal Tuxedo Jazz Orchestra + +305376Gail LaughtonDenzil Gail LaughtonAmerican Jazz harpist. + +Born: June 21, 1921 in Tulsa, Oklahoma +Dead: September 9, 1985 in Los Angeles, CaliforniaNeeds VoteDenzil (Gail) LaughtonGale LaughtonDenzil LaughtonBoyd Raeburn And His Orchestra + +305448Bill InglotSenior Director A&R at [l=Rhino Entertainment Company] and [l=Rhino Records (2)] from 1982-2007. Among other things, he acquired and mastered many recordings for reissue on Rhino. + +Known studios: [l=Digiprep]Needs VoteBillBill IgnlotBill IngiotBill InglodBill Inglot At DigiPrepBill InglottBill InglötBill IngotBill inglotBob InglotWilliam Edward InglotWilliam Inglot + +305891Manuel WarwitzAustrian classical tenor vocalist, born in Salzburg, Austria.Needs VoteFilemonCollegium VocaleCantus CöllnSingphonikerBalthasar-Neumann-ChorLa Capella DucaleSinger PurSchütz-AkademieCappella Murensis + +306023Bob GrimmNeeds Votehttp://www.bobgrimm.net/B. GrimmGrimmThe Four SeasonsLux (11)HobokinLight (19)The Progressions (4)Touch (81) + +306264Gary MallaberGary A. MallaberAmerican session drummer, percussionist, vibraphonist, keyboardist, vocalist, songwriter, arranger, producer and engineer, born October 11, 1946 in Buffalo, New York, USA. +A founding member of [a=Raven (8)] in 1968 he permanently relocated to Los Angeles in 1969 after the band broke up. He is best known with his collaboration with [a=Steve Miller Band]. + +According to an interview with [a563257] in the 2022 book "Den Sista Dynastin" by Swedish authors [a3496371] and [a10633207], Mallaber was offered the job as drummer in [a153073], as a replacement when [a286546] had left in 1980 but he did not accept. Correcthttp://www.garymallaber.com/https://en.wikipedia.org/wiki/Gary_Mallaberhttps://www.bmhof.org/inductees-m/gary-mallaber.htmlhttp://blues.gr/profiles/blogs/brilliant-drummer-songwriter-gary-mallaber-talks-about-van?overrideMobileRedirect=1https://wnyfm.wordpress.com/tag/gary-mallaber/https://pocoband.com/scrapbook/the-band/previous-members/gary-mallaberhttps://muppet.fandom.com/wiki/Gary_Mallaberhttps://zildjian.com/gary-mallaber.htmlhttps://www.allmusic.com/artist/gary-mallaber-mn0000662581G. MallaberGarry MalabarGarry MalaberGarry MallabarGarry MallaberGaryGary MalabarGary MalaberGary MallabarGory MallaberMaliburMallaberMullaberSteve Miller BandPoco (3)Raven (8)ThunderboxTracker (6)Stan And The RavensChicago Blues Reunion + +306395Slam StewartLeroy Eliot StewartAmerican jazz bassist +Born 21 September 1914 in Englewood, New Jersey, USA, died 10 December 1987 in Binghamton, New York, USA + +The trademark of Stewart's style was his ability to bow the bass (arco) and simultaneously hum or sing an octave higher. He was originally a violin player before switching to bass at the age of 20. +While attending the Boston Conservatory, he heard Ray Perry singing along with his violin. This gave him the inspiration to follow suit with his bass. In 1937 Stewart teamed with [a=Slim Gaillard] to form the novelty jazz act [a=Slim And Slam]. The duo's biggest hit was "Flat Foot Floogie (With A Floy Floy)" in 1938. +Stewart found regular session work throughout the 1940s with [a=Lester Young], [a=Fats Waller], [a=Coleman Hawkins], [a=Art Tatum], [a=Johnny Guarnieri], [a=Red Norvo], [a=Don Byas], the [a=Benny Goodman Sextet], and [a=Beryl Booker], among others. One of the most famous sessions he played on took place in 1945, when Stewart played with [a=Dizzy Gillespie]'s group (which featured [a=Charlie Parker]). Out of those sessions came some of the classics of bebop such as "Groovin' High" and "Dizzy Atmosphere". +Throughout the rest of his career, Stewart worked regularly and employed his unique and enjoyable bass-playing style.Needs Votehttp://www.allmusic.com/artist/slam-stewart-p7617http://en.wikipedia.org/wiki/Slam_Stewarthttp://www.allaboutjazz.com/php/musician.php?id=4630https://www.nicolascaloia.net/slam_stewart_biography.htmlhttps://www.imdb.com/name/nm0829836/https://www.facebook.com/Slam-Stewart-332198025548/https://adp.library.ucsb.edu/index.php/mastertalent/detail/112781/Stewart_Slam"Slam" StewartL. StewartL.StewartLeRoy Elliott StewartLeroy "Slam" StewartLeroy 'Slam' StewartLeroy StewartOmit Slam StewartS. StewardS. StewartS. StuwartSam StewartSiam StewartSiewartSlamSlam StewardSlam StuartSlan StewartStan StewartStewardStewartStewertW. StewartSlim & SlamCozy Cole All StarsDon Byas QuartetDizzy Gillespie SextetRed Norvo And His Selected SextetColeman Hawkins QuintetBenny Goodman And His OrchestraLester Young QuartetSlam Stewart QuartetSlam Stewart TrioSlam Stewart QuintetSlam Stewart And The Jazz TonesIllinois Jacquet And His All StarsRed Norvo And His OrchestraTeddy Wilson QuintetArt Tatum TrioBuck Clayton QuintetRed Norvo All-StarsLionel Hampton All StarsTeddy Wilson And His All StarsTeddy Wilson SextetThe Goodman TrioJohnny Guarnieri TrioThe All Stars (7)Erroll Garner All StarsNew York New York (2)The Don Byas - Slam Stewart DuoDizzy Gillespie All Stars"Hot Lips" Page SextetA.C. Reed & His BandThe Newport Jazz Festival All-StarsHot Lips Page And His BandRoyal Rhythm BoysLionel Hampton's Just Jazz All StarsJam Session (11) + +306396Remo PalmieriRemo Paul Palmieri (Palmier).American jazz guitarist. + +Born : March 29, 1923 in New York City (The Bronx), New York. +Died : February 02, 2002 in New York City (The Bronx), New York. + +Remo worked with : [a75617], [a33589], [a64694], [a251769], [a306398] and many others.Needs Votehttps://en.wikipedia.org/wiki/Remo_Palmierhttps://www.radioswissjazz.ch/en/music-database/musician/13046c18ca988dee123e8a848e5b8538e6f07/biographyhttps://www.allmusic.com/artist/remo-palmier-mn0000887375/biographyhttps://adp.library.ucsb.edu/names/102223PalmieriR. PalmieriRemi PalmieriRemo PalmerRemo PalmierDizzy Gillespie SextetTeddy Wilson QuartetRed Norvo And His OrchestraLeonard Feather All StarsTeddy Wilson QuintetTeddy Wilson OctetRed Norvo All-StarsRed Norvo All StarsRed Norvo SextetNat Jaffe TrioLouie Bellson And His Jazz OrchestraDizzy Gillespie All StarsEsquire All American Award WinnersRed Norvo And Stuff Smith QuartetThe Ragtime Quintet + +306397George Van EpsGeorge Abel Van Eps.American jazz guitarist. +Born : August 07, 1913 in Plainfield, New Jersey. +Died : November 29, 1998 in Newport Beach, California. +Son of [a=Fred Van Eps]. + +George Van Eps began playing banjo when he was eleven years old. After hearing Eddie Lang on the radio, he put down the banjo and devoted himself to guitar. By the age of thirteen, in 1926, he was performing on the radio. Through the middle of the 1930s, he played with Harry Reser, Smith Ballew, Freddy Martin, Benny Goodman, and Ray Noble. + +Van Eps moved to California and spent most of his remaining career as a studio musician, playing on many commercials and movie soundtracks. + +In the 1930s, he invented a model of guitar with another bass string added to the common six-string guitar. The seven-string guitar allowed him to play baselines below his chord voicing, unlike the single-string style of Charlie Christian and Django Reinhardt. He called his technique "lap piano". It anticipated the finger-picking style of country guitarists Chet Atkins and Merle Travis and inspired jazz guitarists Bucky Pizzarelli, John Pizzarelli, and Howard Alden to pick up the seven-string. + +Dixieland had a following in Los Angeles during the 1940s and 1950s, and he played in groups led by Bob Crosby and Matty Matlock and appeared in the film "Pete Kelly's Blues." He famously played guitar on Frank Sinatra's classic 1955 album In the Wee Small Hours. + +Van Eps played guitar into his 80s, having built a career that lasted over sixty years + +George worked with : Freddy Martin (1931-'33), Benny Goodman (1934-'35), Ray Noble (1935-'36 and 1940-'41), Paul Weston (1950s) +Needs Votehttps://en.wikipedia.org/wiki/George_Van_Epshttps://adp.library.ucsb.edu/names/105437G Van EpsG. EpsG. Van EppsG. Van EpsG. VanepsGeo. Van EpsGeorge EppsGeorge Van EppsGeorge Van Eps TrioGeorge Van EspGeorge VanEpsGeorge van EpsJ. van EpsRay Van EpsVan EpsFrankie Trumbauer And His OrchestraPete Kelly And His Big SevenWingy Manone & His OrchestraRay Noble And His OrchestraBenny Goodman And His OrchestraPaul Weston And His OrchestraLouis Prima & His New Orleans GangGlen Gray & The Casa Loma OrchestraMorty Corb And His Dixie All-StarsThe Rampart Street ParadersAdrian Rollini And His OrchestraKings Of DixielandRed Norvo & His Swing OctetManny Klein's All StarsCharlie Lavere's Chicago LoopersThe Stan Wrightsman QuartetJess Stacy and His TrioThe Dave Barbour QuartetGeorge Van Eps Ensemble + +306398Red NorvoKenneth NorvilleAmerican jazz vibraphonist, born March 31, 1908 in Beardstown, Illinois, died April 6, 1999 in Santa Monica, California. +He formed and led various ensembles. Played with: [a299946], [a307409] (jazz singer, his wife), [a254768], [a52833], [a269594] and others and in his own bands.Needs Votehttps://en.wikipedia.org/wiki/Red_Norvohttps://www.britannica.com/biography/Red-Norvohttps://www.imdb.com/name/nm0636364/https://www.treccani.it/enciclopedia/red-norvo/https://nationaljazzarchive.org.uk/explore/interviews/1633695-red-norvo-interview-1?https://www.loc.gov/search/?fa=subject:norvo,+redhttps://adp.library.ucsb.edu/names/103480"Red" NorvoK. NorvilleK. NorvoKen KenneyKenneth "Red" NorvoKenneth NorvoNervoNoroNorvoR NorvoR. NorvoRed Norvo And His MusicRed Norvo [as Ken Kenney]Ken KenneyJohn Kirby And His OrchestraWoody Herman And His OrchestraMetronome All StarsBenny Goodman SextetThe Benny Goodman QuintetFrankie Trumbauer And His OrchestraCharlie Barnet And His OrchestraRed Norvo And His Selected SextetMatty Malneck and his OrchestraBenny Goodman And His OrchestraTeddy Wilson QuartetSlam Stewart QuintetRed Norvo And His OrchestraJulia Lee & Her Boy FriendsWoody Herman & The HerdRed Norvo Big BandTeddy Wilson QuintetWoody Herman And His WoodchoppersPaul Baron's SextetWoody Herman And The Swingin' HerdRed Norvo All-StarsThe Red Norvo TrioThe Charlie Mingus TrioThe Newport All StarsRed Norvo And His Overseas Spotlight BandRed Norvo SextetTeddy Wilson And His All StarsRed Norvo QuintetDave Cavanaugh's MusicThe Goodman TrioThe John Graas NonetEdmond Hall's All Star QuintetThe Jack Montrose QuintetRed Norvo SeptetStan Hasselgard And His All Star SixRed Norvo & His Swing OctetRed Norvo EnsembleRed Norvo And His Swing SeptetBob Keene SeptetRed Norvo And His Drafted VolunteersRed Norvo And His Swing SextetBenny Goodman And His Jazz GroupRed Norvo & His BandRed Norvo And His Sky PaintersTen Cats And A MouseRed Norvo's NineRed Norvo ComboRed Norvo And Stuff Smith QuartetRed Norvo QuartetRed Norvo And His MusicJazz Club USABenny Goodman Tentet + +306399Specs PowellGordon PowellAmerican jazz drummer and percussionist, born 5 June 1922 in New York City, New York, USA, died 15 September 2007 in San Marcos, California, USANeeds Votehttp://en.wikipedia.org/wiki/Specs_Powellhttps://www.allmusic.com/artist/specs-powell-mn0000000846https://www.namm.org/library/blog/specs-powellhttps://adp.library.ucsb.edu/names/107318"Specs" PowellG. PowellGordon "S" PowellGordon "Specs" PowellGordon 'Specs' PowellGordon (Spec) PowellGordon (Specs) PowellGordon PowellGordon Specks PowellGordon SpecsGordon Specs PowellPowelPowellS. PowellSpec PowellSpec's PowellSpecks PowellSpecsSpecs (Gordon) PowellSpecs Gordon PowellSpecs PowelJohn Kirby And His OrchestraCannonball Adderley SextetThe Cannonball Adderley QuintetBenny Goodman TrioErroll Garner TrioTeddy Wilson TrioClyde Hart All StarsRed Norvo And His Selected SextetRed Norvo And His OrchestraLeonard Feather All StarsEddie South & His OrchestraTeddy Wilson QuintetThe V-Disc All StarsPaul Baron's SextetRed Norvo All StarsTeddy Wilson And His All StarsGeorgie Auld's All-StarsDe Paris Brothers OrchestraAuld-Hawkins-Webster SaxtetCharlie Ventura SextetThe Bill Coleman QuartetCharles Ventura QuartetDizzy Gillespie All StarsThe Sammy Benskin TrioTrummy Young All StarsJoe Bushkin SextetGinny Simms And Her OrchestraEddie South's QuintetSpecs Powell & Co. + +306411Leon "Chu" BerryLeon Brown BerryLeon "Chu" Berry (born September 13, 1908, Wheeling, West Virginia, USA - died October 30, 1941, Conneaut, Ohio, USA) was an American jazz tenor saxophonist from the swing era. + +Throughout his brief career, Berry was in demand as a sideman for recording sessions under the names of various other jazz artists, including Spike Hughes (1933), Bessie Smith (1933), The Chocolate Dandies (1933), Mildred Bailey (1935–1938), Teddy Wilson (1935–1938), Billie Holiday (1938–1939), Wingy Manone (1938–1939) and Lionel Hampton (1939). + +During the period 1934–1939, while saxophone pioneer Hawkins was playing in Europe, Berry was one of several younger tenor saxophonists, such as Budd Johnson, Ben Webster and Lester Young who vied for supremacy on their instrument. Berry's mastery of advanced harmony and his smoothly-flowing solos on uptempo tunes influenced such young innovators as Dizzy Gillespie and Charlie Parker. The latter named his first son Leon in Chu's honor. + +Berry was one of the jazz musicians who took part in jam sessions at Minton's Playhouse in New York City, which led to the development of bebop. +Needs Votehttp://en.wikipedia.org/wiki/Chu_Berryhttps://www.radioswissjazz.ch/en/music-database/musician/407091eed64f14cc6f9ce37504d01d8650a6a/biographyhttps://www.allmusic.com/artist/leon-chu-berry-mn0000543298https://wvmusichalloffame.com/hof_berry.htmlhttps://adp.library.ucsb.edu/names/103961"Choo""Chu" BerryBarryBerryBettyC. & L. BerryC. BerryChew BerryChoo BerryChuChu (Chew) BerryChu BerryChu. BerryChuck BerryChy BerryH. BerryJ. BerryL. "Chew" BerryL. "Chu" BerryL. BerryL. C. BerryL. Chew BerryL.C. BerryLeo BerryLeon "Chew" BerryLeon "Choo" BerryLeon 'Chu' BerryLeon BarryLeon BerryLeon C. BerryLeon Chu BerryLeon « Chew » BerryLeon «Chew» BerryLeon „Choo BerryLeón "Choo" BerryLéon BerryCab Calloway And His OrchestraCount Basie OrchestraBillie Holiday And Her OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesLionel Hampton And His OrchestraWingy Manone & His OrchestraTeddy Wilson And His OrchestraSpike Hughes And His Negro OrchestraBuck And His BandMildred Bailey And Her OrchestraHenry "Red" Allen And His OrchestraTeddy Hill OrchestraChu Berry & His Little Jazz EnsembleGene Krupa's Swing BandChu Berry And His OrchestraChu Berry SextetRed Norvo & His Swing OctetChu Berry And His Stompy StevedoresPutney Dandridge And His OrchestraOllie Shepard & His Kentucky BoysBessie Smith-OrchestraChu Berry And His Jazz EnsembleRoy Eldridge-Chu Berry Jazz EnsembleJam Session (12) + +306565Max GardunoAmerican percussionistNeeds VoteM. GardunoFreedom SoundsEddie Cano & His QuintetGerald Wilson OrchestraOne G Plus Three + +306581Dave CarpenterDavid Edward CarpenterLos Angeles jazz session bassist. Born November 4, 1959, died June 24, 2008 + +Not to be confused with rock bassist [a=David J. Carpenter], who also plays both acoustic and electric bass, and is also from California.Needs Votehttps://www.allaboutjazz.com/dave-carpenter-remembered-dave-carpenter-by-randall-robinsonhttps://en.wikipedia.org/wiki/Dave_Carpenterhttps://www.imdb.com/name/nm0139313/CarpenterD. CarpenterDaveDave Carpenter (R.I.P.)David CarpenterJan Lundgren TrioWoody Herman And His OrchestraChris Walden Big BandLouie Bellson Big BandThe Woody Herman Big BandThe Bill Holman BandPino Daniele ProjectMitchel Forman TrioThe Lanny Morgan QuartetMitchel Forman QuintetThe Lounge Art EnsembleFullerton College Jazz EnsembleJan Lundgren QuartetMark Masters EnsembleJan Lundgren/Peter Asplund QuartetThe Jack Nimitz QuintetThe Med Flory QuintetBrandon Fields TrioEddie Daniels Quintet + +306610Phil MarkowitzJazz pianist and composer, born in 1952, married to [a=Davia Sacks]Needs Votehttp://www.philmarkowitzjazz.com/https://philmarkowitz.bandcamp.com/https://philmarkowitzartoflife.bandcamp.com/http://en.wikipedia.org/wiki/Phil_MarkowitzMarkowitzP. MarkowitzP.MarkowitzPhil M.Phil MarcowitzPhil MarkovitzPhilip MarkowitzPhillip MarkowitzDavid Liebman EnsembleChet Baker QuartetDavid Liebman GroupAl Di Meola ProjectBob Mintzer Big BandMaurizio Giammarco QuartetBob Mintzer QuartetDoug Sertl Big BandAndrew Rathbun QuartetThe Phil Markowitz TrioDave Wilson QuartetTed Moore Trio + +306772John Clark (2)John Trevor ClarkAmerican French horn player and composer, born September 21, 1944 in Brooklyn, New York (NY, USA). He's professor at Conservatory of Music, Purchase College, State University of New York, Purchase, NY. + +[b]Not to be confused with woodwind player [a=Jon Clarke][/b]. +Needs Votehttp://www.hmmusic.com/https://web.archive.org/web/20080819230657/http://appliedmicrophone.com/endorsers/profile/JohnClarkhttps://web.archive.org/web/20080929094613/http://www.jazz.com/encyclopedia/clark-john-trevorhttps://en.wikipedia.org/wiki/John_Clark_(musician)ClarkClark John T.J. ClarkJohn C.John ClarckJohn Clark Sr.John Clark, Sr.John ClarkeJohn T. ClarkJohn Trebor ClarkJohn Trevor ClarkJon ClarkJon ClarkeДжон КларкGil Evans And His OrchestraThe George Gruntz Concert Jazz BandThe Carla Bley BandThe Winter ConsortThe Mike Gibbs OrchestraBob Mintzer Big BandPaul Winter & The Earth BandJimmy Knepper SextetMcCoy Tyner Big BandGeorge Russell OrchestraTilt Brass BandThe Mike Gibbs BandOpera House EnsembleMarty Ehrlich Large EnsembleManhattan Jazz OrchestraThe Bob Belden EnsembleGrachan Moncur III OctetMichel Legrand & Co.Franz Koglmann SeptetThe Stryker / Slagle Band ExpandedGary Smulyan And Brass + +306898Peggy SantigliaMargaret Santiglia[b]Soul - disco singer[/b] + +Born 04.05.1944 in New Jersey. +Started as a northern soul singer in the 60's. +[a=Gary Criss] introduced her to [a=Fantasia (5)]'s [a=Billy Terrell]. +Needs VoteP. SantigliaP. Santiglia DavisonPeggyPeggy SansPeggy Santiglia DavisonSantigliaPeggy FarinaTiffany MichelThe Angels (3)Jessica James & The OutlawsDusk (10)The Serendipity SingersThe Delicates (2) + +306935Lelio LuttazziItalian musician, actor, singer, conductor, TV presenter, showman (Trieste 27-Apr-1923, 8-Jul-2010). Begins to play piano by ear, divided between jazz & pop music. During his university plays in bars & in seaside resorts. His first song [i]Il Giovanotto Matto[/i] gets a great success. Moves to Rome, attends jazz environment with [a=Armando Trovaioli], [a=Piero Piccioni], [a=Gianni Ferrio]. Writes many songs, most famous [i]Una Zebra a Pois[/I] by [a=Mina (3)]. In 1967 leeds [i]Hit Parade[/i], Top-Ten selling records in Italy. Debut as actor, is permanent presence in TV, composes soundtracks & theater music, moves away from showbiz for a legal matter from where comes out innocent, but not free inside. Returns many years later.Correcthttp://www.lelioluttazzi.it/http://it.wikipedia.org/wiki/Lelio_Luttazzihttps://www.imdb.com/name/nm0527379/?ref_=ttfc_fc_cl_t7I. LutazziJ.K. BroadyL. LutazziL. LuttaziL. LuttazziL. LuttoziL.LuttazziLattuzziLelio Luttazzi E I Suoi ArchiLelio Luttazzi, Pianista E RitmLelio Luttazzi, Pianista E RitmiLottazziLultazziLutazziLuttaziLuttazziLuttazzi E Il Suo "Swing 1948"Luttazzi LelioOrchestra LuttazziЛутациPrickly BrothersJ. K. BroadyLelio Luttazzi E Il Suo ComplessoLelio Luttazzi TrioLelio Luttazzi E I Suoi Solisti + +307058Gil GoldsteinGil GoldsteinAmerican jazz pianist, synthesizer player and accordionist, born 6 December 1950 in Baltimore, MD, USA.Correcthttps://web.archive.org/web/20210210204648/http://gilgoldstein.us/https://en.wikipedia.org/wiki/Gil_Goldsteinhttps://www.imdb.com/name/nm0326215/G. GoldsteinGilGil GoldstainGil Goldstein & FriendsGilbert GoldsteinGill GoldsteinMr. Goldsteinギル・ゴールドスタインGil Evans And His OrchestraElements (6)Billy Cobham's Glass MenagerieThe Manhattan ProjectErnie Krivda & FriendsJazz Mandolin ProjectJoe Lovano Street BandOpera House EnsembleThe Jim Hall QuartetThe Tom 'Bones' Malone Jazz SeptetRudy Linka QuartetThe Tango KingsJeff Brown Quartet + +307089Jean MoraFrench producer and musician on keysNeeds VoteJ. MoraJ.MoraJean MoràMora Jean + +307111Roger Smith (3)Roger A. SmithRoger A. Smith (6 July 1949 - 9 April 2014) was an English cellist. +He was a member of [a=Kent County Youth Orchestra] before he won a scholarship to the [l527847]. He then joined the [a=Menuhin Festival Orchestra]. He later joined [a=The Academy Of St. Martin-in-the-Fields]. He also was a member of the [a=Gagliano Trio] for many years. Classically trained, he also did freelance work for such acts as [a=Paul McCartney], [a=Led Zeppelin], [a=Madonna], and [a=U2].Needs Votehttps://issuu.com/skinners/docs/newsletter_may_2014/10Rodger SmithRoger SmithThe London Session OrchestraNormil HawaiiansThe Martyn Ford OrchestraMenuhin Festival OrchestraLondon String QuartetThe Academy Of St. Martin-in-the-FieldsPleeth Cello OctetKent County Youth OrchestraGagliano Trio + +307112George RobertsonScottish viola player and painter. Married to [a631315]. +He studied at the [l290263]. Early in his career he was a member of the [a=BBC Symphony Orchestra], the [a=Bath Festival Orchestra] and the [a=Philharmonia Orchestra], before going to play Principal Viola in the [a=Bergen Filharmoniske Orkester], then in the [a=Sveriges Radios Symfoniorkester].Needs Votehttps://www.patriciacalnan.com/george.htmlhttps://www.imdb.com/name/nm1178043/G. RobertsonGeorge F. RobertsonGeorge RooertsonGeorge, RobertsonGeorges F. RobertsonGeorges RobertsonRobertson G.Robertson. GThe London Session OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraSveriges Radios SymfoniorkesterPhilharmonia OrchestraNew Philharmonia OrchestraBergen Filharmoniske OrkesterThe Starcoast OrchestraThe London VirtuosiBath Festival OrchestraThe Astarte Session Orchestra + +307115Paul KeggBritish cellist. Born June 6, 1950 in London, England, UK. +Former member of the [a=London Symphony Orchestra] (1980-1982).Needs Votehttps://www.imdb.com/name/nm1179933/P. KeggPaul KleggThe London Session OrchestraLondon Symphony OrchestraThe London OrchestraLondon Festival OrchestraThe Taliesin OrchestraThe Astarte Session OrchestraPleeth Cello OctetOrchestre de Grandeur + +307147Fulton McGrathDavid Fulton McGrathAmerican jazz pianist and composer. Born December 6, 1907 in Superior, Wisconsin, USA. Died January 1, 1958 in Los Angeles, California, USA. +Fulton "Fidgy" McGrath worked with Roger Wolfe Kahn's orchestra during the late 1920s and early 1930s followed by Red Nichols (early 1930s), Dorsey Brothers, Chick Bullock, Lennie Hayton (1935-1937), Adrian Rollini, Bunny Berigan, Joe Venuti, Chauncey Morehouse and others. He worked as a session musician for NBC 1939-1941, when he moved to Hollywood to work in film studios. +Among his compositions are "Shim Sham Shimmy" and "Mandy Is Two", the latter recorded by Billie Holiday.Needs Votehttps://www.allmusic.com/artist/fulton-mcgrath-mn0000800651https://en.wikipedia.org/wiki/Fulton_McGrathhttps://adp.library.ucsb.edu/names/101156David F. McGrathF. McGrathFidgey McGrathFidgy McGrathFulton Mc GrathMc GrathMcGarthMcGrathLouis Armstrong And His OrchestraThe Dorsey Brothers OrchestraAdrian Rollini And His OrchestraArt Shaw And His New Music + +307148Wellman BraudWellman BreauxJazz double bassist +born 25 January 1891 in St. James Parish, Louisiana +died 29 October 1966 in Los Angeles, California. + +1917 he moved to Chicago, played with [a=Charlie Elgar] (1920-22) and toured Europe. 1927-35 he was in [a=Duke Ellington And His Orchestra]. He was a member of [a=The Spirits Of Rhythm] (1935-37) and recorded with [a=Jelly Roll Morton] (1939-1940) and [a=Sidney Bechet] (1940-1941). Later he recorded again with [a=Duke Ellington] (1944 and 1961), with [a=Bunk Johnson] (1947) and [a=Kid Ory And His Creole Jazz Band] (1956)Needs Votehttps://en.wikipedia.org/wiki/Wellman_Braudhttp://www.bluenote.com/artist/wellman-braud/https://adp.library.ucsb.edu/names/102897BrandBraudW. BrandW. BraudWellman BrandWellmann BrandWellmann BraudWelman BraudDuke Ellington And His OrchestraLouis Armstrong And His OrchestraThomas Morris And His Seven Hot BabiesThe Whoopee MakersThe Mezzrow-Bechet QuintetDuke Ellington And His Cotton Club OrchestraMezz Mezzrow And His OrchestraJelly Roll Morton's New Orleans JazzmenMezz Mezzrow And His Swing BandSidney Bechet And His New Orleans FeetwarmersThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsThe Harlem Blues SerenadersSidney Bechet & His All Star BandJelly Roll Morton's Hot SixJelly Roll Morton's Hot SevenThe Bechet / Spanier Big FourDanny Barker's Fly CatsDuke Ellington's Hot FiveElgar's Creole OrchestraJimmie Noone And His OrchestraDuke Ellington SextetPee Wee Russell RhythmakersRex Stewart's Big SevenLil Armstrong And Her DixielandersBunk Johnson & His BandThe Memphis Hot ShotsBaby Dodds' Jazz FourHot Lips Page And His BandThe Morton SextetThe Harlem Music MastersDuke Ellington's Philadelphia Melodians + +307149Larry BinyonLawrence F. Binyon.American jazz saxophonist (tenor), clarinetist and flutist player. + +Born : September 16, 1908 in Cicero, Illinois. +Died : February 10, 1974 in Los Angeles, California. + +Larry worked with : +Ben Pollack (1927), +Red Nichols (1930), +Irving Mills, +Victor Young, +Fats Waller, +Benny Goodman, +"The Boswell Sisters", +Mildred Bailey, +Al Goodman, +"The Dorsey Brothers' Band", +"Whiteman Orchestra" and +formed an his own band (early 1950s until 1955).Needs Votehttps://adp.library.ucsb.edu/names/113837BinyonL. BinyonLerry BinyonFrankie Trumbauer And His OrchestraBen Pollack And His Park Central OrchestraToots Camarata And His OrchestraFats Waller And His BuddiesThe Dorsey Brothers OrchestraIrving Mills And His Hotsy Totsy GangThe Charleston ChasersWhoopee MakersPaul Mills And His Merry Makers + +307151George ElrickScottish singer, percussionist, bandleader, radio personality, producer and talent manager. +(December 29, 1903 - December 15, 1999) + +After a successful music career in the 1930s and 40s, Elrick worked as a disc-jockey for BBC for nearly twenty years. +Later worked as manager for [a403890] and [a506831]Needs Votehttp://sounds.bl.uk/Jazz-and-popular-music/Oral-history-of-jazz-in-Britain/021M-C0122X0114XX-0100V0´http://en.wikipedia.org/wiki/George_ElrickElrickG. ElrickG.ElrickGeorge Elrick And His BandBenny Carter And His OrchestraBenny Carter And His Swing QuartetBilly Mason And His OrchestraGeorge Elrick And His Swing Music Makers + +307152Max GoldbergMax GorginskiGreat Britain based jazz trumpet and mellophone player, originally a native of Toronto. +Born 19 March 1905 in East London +Died 11 February 1990 in MelbourneNeeds Votehttps://de.wikipedia.org/wiki/Max_GoldbergRay Noble And His OrchestraBenny Carter And His OrchestraAmbrose & His OrchestraRay Noble & His New Mayfair Dance OrchestraThe New Mayfair Dance OrchestraSydney Lipton And His Grosvenor House BandThe Devonshire Restaurant Dance BandArcadians Dance OrchestraOrpheus Dance BandGeorge Fisher & His Kit Cat Band + +307153Leroy MaxeyAmerican jazz drummer. + +Born : June 06, 1904 in Kansas City, Missouri. +Died : July 24, 1987 in Los Angeles, California. +Needs Votehttps://www.allmusic.com/artist/leroy-maxey-mn0001635026/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/111080/Maxey_LeroyLe Roy MaxeyLeRoy MaxeyLeeRoy MaxeyLeroy MaxieCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraCab Calloway And His Cotton Club OrchestraThe MissouriansChu Berry And His Stompy Stevedores + +307160Charles StrickfadenCharles Greyson StrickfadenAmerican jazz saxophonist (tenor, alto, baritone), clarinetist, oboe and multi instrumentalist player. + +Born : January 01, 1900 in Anaconda, Montana. +Died : September 11, 1981 in Kihei, Hawaii. + +Charles Strickfadden (sometimes it is written with one "d") was a saxophonist and multi-instrumentalist wind that blew over the years 20s Paul Whiteman orchestra. +Was also present in the solo recordings of Bix Beiderbecke, Frankie Trumbauer, Jack Teagarden, Bing Crosby and others (ex) members of the orchestra of Whiteman. +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/114699/Strickfaden_CharlesC. StrickfadenC. StrickfaderCharles StrickfaddenCharlie StrickfadenChas. StrickfadenHarold StrickfaddenHarold StrickfadenFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraThe Mason-Dixon Orchestra + +307161John CordaroCredits include clarinet and saxophone.Needs VoteCordaroJack CoradaroJack CordaroJoe CordaroFrankie Trumbauer And His OrchestraJean Goldkette And His OrchestraPaul Whiteman And His OrchestraLou Prohut And The Polka-Rounders + +307163Walter ThomasWalter Purl ThomasAmerican jazz saxophonist and arranger. +Nickname : "Foots". Brother of [a=Joe Thomas (6)] + +Born : February 10, 1907 in Muskogee, Oklahoma. +Died : August 26, 1981 in Englewood, New Jersey. +Needs Votehttp://flutejournal.com/walter-foots-thomas-a-profile/https://en.wikipedia.org/wiki/Walter_Thomas_(musician)https://www.allmusic.com/artist/walter-foots-thomas-mn0001263015/biographyhttps://adp.library.ucsb.edu/names/105982"Foots" ThomasFoots ThomasThe Walter "Foots" Thomas All StarsThomasW. P. ThomasW. ThomasW.P. ThomasWalter "Foot" ThomasWalter "Foots" ThomasWalter "Foots" Thomas And His Jump CatsWalter 'Foots' ThomasWalter (Foots) ThomasWalter “Foots” ThomasCab Calloway And His OrchestraCozy Cole All StarsJelly Roll Morton's Red Hot PeppersCab Calloway And His Cotton Club OrchestraJelly Roll Morton And His OrchestraWalter Thomas & His Jump CatsWalter Thomas' OrchestraThe MissouriansFate Marable's Society SyncopatorsWalter Thomas And His All StarsJune Cole's Orchestra + +307165Demas DeanAmerican jazz trumpeter. +Born : October 06, 1903 in Sag Harbor, New York. +Died : 1991 in Los Angeles, California. + +Demas worked with : Elmer Snowden, Doc Perry, Russell Wooding, Lucille Hegamin, Billy Butler, Ford Dabney, Leon Abbey, Bessie Smith, Noble Sissle, Joe Jordan, Pike Davis and others. +Needs Votehttps://adp.library.ucsb.edu/names/113104D. DeanDeamus DeanDemus DeanNoble Sissle And His OrchestraSavoy BearcatsLeon Abbey's Band + +307168Zutty SingletonArthur James SingletonAmerican jazz drummer. +He accompanied jazz musicians as Louis Armstrong, Jelly Roll Morton, Sidney Bechet, Charlie Parker, Dizzy Gillespie and many others. + + +Born : May 14, 1898 in Bunkie, Louisiana. +Died : July 14, 1975 in New York City, New York. +Needs Votehttp://en.wikipedia.org/wiki/Zutty_Singletonhttps://www.moderndrummer.com/2009/12/arthur-zutty-singleton/https://syncopatedtimes.com/zutty-singleton-1898-1975/https://www.imdb.com/name/nm0802340/https://www.allmusic.com/artist/zutty-singleton-mn0000813802/discographyhttps://adp.library.ucsb.edu/names/109916"Zutty" SingletonArthur "Zutty" SingletonArthur 'Zutty' SingletonArthur SingletonG. SingletonSingletonZ. SingletonZ.SingletonZutie SingletonZutti SingletonZuttie SingletonZuttis SingletonZuttyZutty "Singleton"Zutty SigletonZutty ZingletonЗ. СинглтонLouis Armstrong & His Hot FiveLouis Armstrong & His Hot SevenSlim Gaillard And His OrchestraLouis Armstrong And His OrchestraLionel Hampton And His OrchestraJack Teagarden's ChicagoansLouis Armstrong And His Savoy Ballroom FiveSidney Bechet And His OrchestraCharles Creath's Jazz-O-ManiacsThe RhythmakersJelly Roll Morton TrioRoy Eldridge And His OrchestraMezz Mezzrow And His OrchestraThe Three DeucesJelly Roll Morton's New Orleans JazzmenNoble Sissle SwingstersZutty Singleton's Creole BandZutty Singleton's TrioSidney Bechet And His TrioWilbur De Paris And His New New Orleans JazzCarroll Dickerson's SavoyagersThe Slim Gaillard TrioMildred Bailey And Her OrchestraWingy Manone's Dixieland BandJelly Roll Morton's Hot SixJelly Roll Morton's Hot SevenOmer Simeon TrioLouis Armstrong And His Hot SixPee Wee Russell's Three DeucesSlim Gaillard QuartetteBill Coleman And His Swing StarsNappy Lamare And His BandBilly Banks And His OrchestraVic Lewis And His American JazzmenPee Wee Russell RhythmakersThe Capitol JazzmenZutty And His BandZutty Singleton And His OrchestraCarroll Dickerson And His OrchestraBuster Bailey & His OrchestraJimmy Johnson And His BandCrystalette All StarsFate Marable's Society SyncopatorsJoe Marsala And His Chosen SevenFats Waller And FriendsTrio Russell-Johnson-SingletonSlim Gaillard And His All Stars4-star-5Nelson Williams' All StarsCarroll Dickerson's StompersZutty And The Clarinet Kings + +307170Jimmy HarrisonJames Henry HarrisonAmerican jazz trombonist, born October 17, 1900 in Louisville, Kentucky, died July 23, 1931 in New York City. +One of many fine musicians to come out of Louisville, Kentucky, Harrison played trombone with many historic outfits in the '20s. He passed away in a private hospital of a stomach disease.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Harrisonhttps://www.toledoblade.com/Music-Theater-Dance/2000/12/24/Lafayette-Street-was-home-to-jazz-trombonist-Jimmy-Harrison.htmlhttps://www.allmusic.com/artist/jimmy-harrison-mn0000353423https://www.muso.ai/profile/169610https://adp.library.ucsb.edu/names/100200HarrisonJ. HarrisonJ. HarrissonJimmie HarrisonJimmie HarrissonJimmy HarisonJimmy HarisonJimmy HarissonJimmy HarrissonFletcher Henderson And His OrchestraThe Chocolate DandiesThe Dixie StompersThe Louisiana StompersChick Webb And His OrchestraPerry Bradford Jazz PhoolsCharlie Johnson & His OrchestraBessie Smith And Her BandCharlie Johnson & His Paradise BandCharlie Skeete And His OrchestraThe Jungle Band (3)Henderson's Roseland Orchestra + +307171Don RedmanDonald Matthew RedmanAmerican jazz musician (predominantly saxophone and clarinet but also piano and others), arranger, bandleader, and composer. In 2009 he was inducted into the West Virginia Music Hall of Fame. Uncle of [a=Dewey Redman]. + +b. July 29, 1900 (Piedmont, WV, USA) +d. November 30, 1964 (New York, NY, USA)Needs Votehttps://en.wikipedia.org/wiki/Don_Redmanhttps://syncopatedtimes.com/don-redman-1900-1964/https://www.allmusic.com/artist/don-redman-mn0000801026/biographyhttps://www.ejazzlines.com/big-band-arrangements/by-arranger/don-redman-jazz-arrangements/https://www.britannica.com/biography/Don-Redmanhttps://www.allaboutjazz.com/tag-don-redmanhttps://adp.library.ucsb.edu/names/105509D, RedmanD. RedmanD. RedmonD. RedmondD.R.D.RedmanDRDan RedmanDavis RedmanDon M. RedmanDon Redman And ChorusDon RedmenDon RedmonDon RedmondDon RodmanDonald "Don" RedmanDonald M. "Don" RedmanDonald M. RedmanDonald M. RedmondDonald Mathew "Don" RedmanDonald Matthew "Don" RedmanDonald Matthew RedmanDonald Matthew “Don” RedmanDonald RedmanDonald RedmondDonald ReedmonDonald RodmanDonals RedmanGilbert & RedmanJ.Logan-G.WashingtonJon RedmanL. RedmanMakersRedmanRedman D.RedmanDavisRedmannRedmondRednonReedmanRermanRodmanCount Basie OrchestraMcKinney's Cotton PickersBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesClarence Williams' Blue FiveThe Dixie StompersLouis Armstrong And His Savoy Ballroom FiveThe Louisiana StompersThe WashingtoniansThe Little Chocolate DandiesDon Redman And His OrchestraPerry Bradford Jazz PhoolsThe Big AcesBabs Gonzales And His OrchestraClara Smith And Her Jazz TrioClarence Williams StompersFletcher Henderson And His Club Alabam OrchestraFletcher Henderson's Jazz FiveDon Redman All StarsDon Redman Small Band + +307172Buddy FeatherStonaughRupert Edward Lee FeatherstonhaughEnglish tenor and baritone saxophonist. +Born 4 October 1909 in Paris, France. +Died 12 July 1976 in London, England. +Featherstonhaugh (pronounced "Fanshaw") was educated at Eastborune College, where he started to learn the saxophone at the age of 15. His first professional engagement was at Brent Bridge Hotel, Hendon, in 1927. He was the star soloist in Spike Hughes' famous Decca recording band (1929-31). +He worked with Louis Armstrong and Benny Carter, when they were in England, and recorded many solos with the later's band for Vocalian. +Featherstonhaugh had his own band in the "Cocoanut Grove", London, in 1935 with musicians Harry Hayes, Duncan Whyte, Cecil Norman, George Elrick and Felix King. He was voted the best tenor saxophonist in England in 1937 "Melody Maker" poll. He joined the R.A.F. in 1940, and organised the Swing Sextet for forces entertainment, which later became the BBC Radio Rhythm Club Sextet. He was the leader and announcer of the Radio Rhythm Club Sextet (1943-44). +Featherstonehaugh was also a racing driver and won the Albi Grand Prix, in France, in 1934, driving a Maserati amd averaging 89.04 miles per hour.Needs Votehttp://en.wikipedia.org/wiki/Buddy_Featherstonhaughhttps://thebluemoment.com/2020/05/29/the-fast-life-of-buddy-featherstonhaugh/http://henrybebop.co.uk/feather.htmhttp://www.motorsportmemorial.org/LWFWIW/focusLWFWIW.php?db2=LWF&db=ms&n=1219Buddy FeatherstonaughBuddy FeatherstoneaughBuddy FeatherstonehaughBuddy FeatherstonhaughBuddy FeatherstonlaughCpl. Buddy FeatherStonaughFeatherstonhaughBenny Carter And His OrchestraHugo Rignold & His OrchestraRonnie Munro & His OrchestraBilly Mason And His OrchestraSpike Hughes And His OrchestraBuddy Featherstonaugh's Radio Rhythm Club SextetBuddy Featherstonhaugh And His CosmopolitansArthur Rosebery And His Kit-Cat Dance BandBuddy Featherstonhaugh New Quintet + +307173Juan TizolVincente Martinez TizolPuerto Rican trombonist and composer, born 22 January 1900 in San Juan, Puerto Rico, died 23 April 1984 in Inglewood, California, USA (aged 84). +Tizol moved to USA in 1920, and worked with [a=Duke Ellington] from 1929 to 1944 as an indispensable part of Duke Ellington's Orchestra. Tizol left to join [a313097] in 1944 and thereafter spent most of his time alternating between the two bands. He retired to California and later lived in Las Vegas. +Together Tizol and Ellington wrote the jazz standards "Caravan", "Pyramid", and "Perdido". +Correcthttp://www.spaceagepop.com/tizol.htmhttps://en.wikipedia.org/wiki/Juan_Tizolhttps://www.jazzstandards.com/biographies/biography_112.htmhttps://web.archive.org/web/20200606081002/http://www.jazzbiographies.com/Biography.aspx?ID=112https://www.imdb.com/name/nm1221953/https://web.archive.org/web/20200220122358/http://www.musicofpuertorico.com/index.php/artists/juan_tizol/https://www.allmusic.com/artist/juan-tizol-mn0000293321https://www.britannica.com/biography/Juan-Tizolhttps://adp.library.ucsb.edu/names/109788DizolH. TisolH. TizolI. TizolIvan TizolJ TizolJ. FizelJ. JizolJ. TijolJ. TirolJ. TisolJ. TissolJ. TizalJ. TizelJ. TiziolJ. TizoiJ. TizolJ. TizollJ. TizonJ. TizzolJ. TrizolJ. TyzolJ.TizolJTJaun TizolJohn TizolJuan - TizolJuan - TizolJuan TilozJuan TisolJuan TitoJuan TizalJuan TizelJuan TiziolJuan TizollJuan TzoilJuan Vincente Martinez TizolJuan Vincento Martinez TizolJuan, TizolJulian TizolJune TizolLizalPizolTIzolTeezolTijolTirolTisolTitolTitzolTivolTixolTizalTizelTiziolTizloTizoTizoiTizojTizolTizol HuanTizol JuanTizoleTizollTizonTizotTizoyTizzolTrizolTyzalTyzolX. ТизолZiolТизолТизольХ. ТизолХ. ТизольХ. ТисолХ.ТизолХаун ТизолХуан ТизолХуан Тисолי. טיזולHarry James And His OrchestraDuke Ellington And His OrchestraCootie Williams & His Rug CuttersThe Whoopee MakersBarney Bigard And His OrchestraThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsHarry James & His Music MakersJimmy Mundy OrchestraLouie Bellson Big BandJuan Tizol & His OrchestraIvie Anderson And Her Boys From DixieThe Memphis Hot ShotsThe Coronets (3)Louis Bellson's Just Jazz All StarsThe Louis Bellson OctetBarney Bigard And His JazzopatersThe Band That Plays The BluesThe Harlem Music MastersDuke Ellington's Philadelphia Melodians + +307174Zilner RandolphZilner Trenton RandolphJazz trumpet player and teacher, born January 28, 1899 in Dermott, Arkansas, died February 2, 1994 in Chicago, Illinois. +Musical director for [a=Louis Armstrong] March 1931-March 1932 and parts of 1933 and 1935. +Needs Votehttps://en.wikipedia.org/wiki/Zilner_Randolphhttps://adp.library.ucsb.edu/names/106080CheapRandolfRandolpRandolphRandolph ZilnerZ RandolphZ. RandolfZ. RandolphZ. T. RandolphZ.P. RandolphZ.RandolphZ.T. RandolphZilmer RandolfZilmer RandolphZilmer T. RandolphZilmer and T. RandolphZilner - RandolpZilner - RandolphZilner / RandolphZilner RandolfZilner T. RandolphZilner Tranton RandolphZilner Trenlon RandolphZilner Trenton RandolphZilverZimer RandolphZiner T. RandolphLouis Armstrong And His OrchestraZilner Randolph And His OrchestraZilner T. Randolph Combo + +307175Kurt DieterleViolinistNeeds Votehttps://www.allmusic.com/artist/kurt-dieterle-mn0001700659/biographyDieterleK. DieteleHarry James And His OrchestraFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +307176Joe NantonJoseph NantonBorn: February 1, 1904, New York City +Died: July 20, 1946, San Francisco, California + +Famous trombonist with the Duke Ellington Orchestra, who played at the legendary Cotton Club in Harlem in the 1920s. One of the pioneers of the "wah-wah" sound, known for his use of the plunger mute. +Needs Votehttps://en.wikipedia.org/wiki/Tricky_Sam_Nantonhttps://www.britannica.com/biography/Joe-Nantonhttps://www.allmusic.com/artist/joe-tricky-sam-nanton-mn0000208795https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/201862b38fd594254e0d31ebc30db2c46a6982/biographyhttps://www.imdb.com/name/nm0620961/https://adp.library.ucsb.edu/names/109787"Tricky" Joe NantonJ. NantonJ. NantonJNJoe "Tricky Sam" NantonJoe "Tricky" NantonJoe "Tricky" Sam NantonJoe "Tricky-Sam" NantonJoe 'Tricky Sam" NantonJoe 'Tricky Sam' NantonJoe (Tricky Sam) NantonJoe MantonJoe Tricky Sam NantonJoe «Tricky Sam» NantonJon NantonJoseph "Tricky Sam" NantonJoseph 'Tricky Sam' NantonJoseph NantonJoseph Tricky Sam' NantonNantonTricky "Joe" NantonДжо НэнтонTricky Sam NantonDuke Ellington And His OrchestraCootie Williams & His Rug CuttersThomas Morris And His Seven Hot BabiesThe Whoopee MakersDuke Ellington And His Cotton Club OrchestraThe WashingtoniansRex Stewart And His OrchestraThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsRex Stewart And His 52nd Street StompersGet Happy BandIvie Anderson And Her Boys From DixieThe Gulf Coast SevenNew Orleans Blue FiveThe Memphis Hot ShotsThe Harlem Music MastersDuke Ellington's Philadelphia Melodians + +307178Henry HicksJazz trombonist. Born ca. 1904 in Birmingham, Alabama, died ca. 1950 in New York City + +Worked With: + +Ed Anderson, Wardell Jones, Bobby Holmes, Benny James, Crawford Wethington, Ted McCord, Castor McCord, Willie Lynch, Lavert Hutchinson, Charlie Holmes, J.C. Higginbotham, Louis Armstrong, Hayes Alvis, Bernard Addison, Joe Turner, Henry "Red" Allen +Needs Votehttp://www.jazzarcheology.com/artists/henry_hicks.pdfHenry HiksLouis Armstrong And His OrchestraBaron Lee And The Blue Rhythm BandThe Mills Blue Rhythm BandCocoanut Grove OrchestraJasper Davis & His Orchestra + +307180Jabbo SmithCladys SmithAmerican jazz trumpeter and singer + +Born: December 24, 1908 in Pembroke, Georgia. +Died: January 16, 1991 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Jabbo_Smithhttps://riverwalkjazz.stanford.edu/?q=program/ace-rhythm-story-jabbo-smithtrumpeter-composerhttps://www.scaruffi.com/jazz/jsmith.htmlhttps://www.allmusic.com/artist/jabbo-smith-mn0000103408https://adp.library.ucsb.edu/names/104816C. SmithCladys "Jabbo" SmithCladys "Jabbo" Smith*Cladys 'Jabbo' SmithCladys Jabbo SmithCladys SmithJ. SmithJSJabboSmithSmith Cladys JabboDuke Ellington And His OrchestraClarence Williams' Blue FiveThomas Morris And His Seven Hot BabiesCharlie Johnson & His Paradise BandLouisiana Sugar BabesLloyd Smith And His Gut Bucket-TeersJabbo Smith And His Rhythm AcesCharles Johnson's Paradise Ten"Banjo" Ikey Robinson And His BandJabbo Smith And His Orchestra + +307183Marvin JohnsonAlto saxophonist in Louis Armstrong's orchestras. For the Motown singer & songwriter, see [a=Marv Johnson]. For the drummer, see [a=Marvin Johnson (4)]. +Born Dec. 17, 1908 Dallas, Tex. +1927 alto sax with Leon Rene. A featured 'team' with tenor sax Charlie Jones. +1929 w. Les Hite Orch. +1931 to 1937 in house band of Frank Sebastian's 'Cotton Club', Culver City, Calif. (with Louis Armstrong the featured trumpet soloist). Actually the Les Hite band, but billed as 'Louis Armstrong and his Band'. Other bands were sometimes briefly featured at 'Cotton Club', but Les Hite's stayed the official resident band. +Made 9 recordings with Louis Armstrong Orch. on OKeh Oct. 1930 - March 1931 (Les Hite sax soloist). +Les Hite band also did most of the band work for Sepia Cabaret Scenes (film studio). +Recorded four (ARC unissued) with Les Hite Ork. June - Aug. 1935. +Johnson then worked in civil service. +July or August 1942 joined Count Basie Orch. on a tour, after given just one hour's notice (by Buck Clayton - Basie trumpet). Replaced Caughey Roberts. +With Basie to January 1943. Made no studio recordings due to AFM recording ban (August 1942 to Nov. 1944 for Columbia). Apparently not even any of Basie's 'live' recordings exist from this period. However, Johnson did appear with the Basie Orc. in 1943 film 'Reveille with Beverley' (Columbia) performing 'One O'clock Jump'. Replaced by Preston Love. +Worked in defense industry during WW2. +1944 formed own band. Residents at 'Boureston's Cafe', L.A. (1944 - '46). Residents at 'York Club' (1946 - '49) and at 'Cafe Zombie', L.A. (to 1948) +Recorded with his own Orchestra Nov. 1945- 1950 on Coronet, Sepia, G&G, Capitol. +Jan. 1946 rec. w. Wilbert Baranco (4 on Black & White). +July 1949 rec in Kitty White with Dave Cavanaugh's Orc. (4 on Capitol). +1951 rec. w. Brother Bones band (4 on Tempo). +Later worked in U.S. Post Office.Needs VoteM. JohnsonMarv JohnsonMarvin JohsonLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His OrchestraWilbert Baranco And His Rhythm BombardiersMarvin Johnson & His Orchestra + +307185Prince RobinsonAmerican jazz saxophonist (tenor) and clarinetist. +Born : June 07 (or possibly February 07), 1902 in Portsmouth, Virginia. +Died : July 23, 1960 in New York City. + +He played with : Lilian Jones' Jazz Hounds (first worked), Quentin Redd's Band, Lionel Howard's Musical Aces, [a=Elmer Snowden], [a=June Clark]. +He recorded with : "Seminole Syncopators", "The Washingtonians" (with Duke Ellington), "Blue Rhythm Orchestra", "The Gulf Coast Seven", "Duke Ellington and his Washingtonians", "McKinney's Cotton Pickers", "Jean Goldkette and his Orchestra", "The Chocolate Dandies", "Clarence William's Washboard Band", "Lazy Levee Loungers". +Needs Votehttps://en.wikipedia.org/wiki/Prince_Robinsonhttps://www.allmusic.com/artist/prince-robinson-mn0001260713/biographyhttps://adp.library.ucsb.edu/names/111099P. RobinsonPrince Robinson (?)Prince Robinson?RobinsonMcKinney's Cotton PickersLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraThe Chocolate DandiesTeddy Wilson And His OrchestraRoy Eldridge And His OrchestraThe WashingtoniansWilliams' Washboard BandClarence Williams' Jazz KingsAndy Gibson And His OrchestraClara Smith And Her Jazz BandMemphis Jazzers + +307186Art MillerJazz bassistNeeds VoteA. MillerArtie MillerMillerFrankie Trumbauer And His OrchestraJack Teagarden And His OrchestraPaul Whiteman And His OrchestraEddie Condon And His FootwarmersPaul Whiteman's Swing Wing + +307187Edgar HayesEdgar Junius HayesEdgar Hayes (born May 23, 1904, Lexington, Kentucky, USA – died June 28, 1979, San Bernardino, California, USA) was an American jazz pianist and bandleader. Studied music at Fisk University and Wilberforce University (where he graduated in 1922). Toured with [a2725908] in 1919 and 1922 before leading his own groups from 1924-1926. He was the pianist and principal arranger for [a=The Mills Blue Rhythm Band] under [a2385669] and [a=Lucky Millinder] from 1931-1936. From 1937-1941 he led his own orchestra, who had the hit "Star Dust" (arranged by Hayes). Afterwards he moved to Riverside, California where he headed his own quartet throughout the 1940's and then played mostly solo into the 1970's. +Needs Votehttp://en.wikipedia.org/wiki/Edgar_Hayeshttp://www.allmusic.com/artist/p85299/biographyhttps://adp.library.ucsb.edu/names/110530E. HayesEdgar "Stardust" HayesHayesHaysBaron Lee And The Blue Rhythm BandHenry "Red" Allen And His OrchestraThe Mills Blue Rhythm BandChick Bullock & His Levee LoungersEdgar Hayes And His OrchestraEdgar Hayes & His StardustersEdgar Hayes Quintet + +307188Nat NatoliAnthony NatoliJazz trumpeter, born c. 1902, died after 1950. +Traveled to Montreal with [a=The Original Memphis Five] in c. 1924, played with [a=Jean Goldkette] 1927-1928. From 1930 to 1934 a member of [a=Paul Whiteman]'s orchestra, but left to work in studio orchestras. Continued to play through the 1940s, but became more active as a contractor for studio musicians. His contributions on records were as a section player, not as a soloist.Needs VoteAnatole "Nat" NatoliAnthony NatoliFrankie Trumbauer And His OrchestraJean Goldkette And His OrchestraPaul Whiteman And His OrchestraThe Big AcesYank Lawson And His Orchestra + +307189Alan FergusonJazz guitarist active in the 1930's.Needs VoteA. FergusonAllan FergusonAllen FergussonFergusonFats Waller & His RhythmSydney Lipton And His Grosvenor House BandBilly Mason And His OrchestraBilly Cotton And His Orchestra + +307192Homer HobsonEarly jazz trumpeterCorrecthttps://www.allmusic.com/artist/homer-hobson-mn0001724715/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113323/Hobson_HomerH. HobsonLouis Armstrong And His OrchestraCarroll Dickerson's SavoyagersCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +307194Joe BaileyCredited as jazz bassist.Needs VoteBaileyBill BaileyJ. BaileyJ.BaileyJoe "Bill" BaileyJoseph BaileyLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His Orchestra + +307197Perry BotkinPerry Lafayette Botkin Sr.Perry Botkin was one of the Hollywood's top studio musicians on the early 1900's swing era. He played guitar, banjo, lute, ukulele and other instruments along with Bing Crosby. + +Born - 22nd july 1907 in Springfield, Clark County, Ohio. +Died - 14th October 1973 in Los Angeles, California. + +His sons are [a=Perry Botkin Jr.] and [a731173]. +Needs Votehttps://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GRid=73942787https://de.wikipedia.org/wiki/Perry_Botkin_Sr.http://www.imdb.com/name/nm0098560/bio?ref_=nm_ov_bio_smhttps://adp.library.ucsb.edu/names/101184B. BotkinBotkinP. BotkinPerry Botkin And His GuitarsPerry Botkin's Instrumental QuartetPerry Botkin, Sr.ペリー・ボトキンLouis Armstrong And His OrchestraPaul Whiteman And His OrchestraJohn Scott Trotter And His OrchestraPerry Botkin's String BandLou Bring And His OrchestraPerry Botkin And His OrchestraGinny Simms And Her OrchestraMel Henke Group + +307199Horace HendersonHorace W. HendersonAmerican jazz pianist, organist, arranger and bandleader. +born 22 November 1904 in Cuthbert, Georgia +died 29 August 1988 in Denver, Colorado. + +Brother of [a=Fletcher Henderson] + +Needs Votehttps://books.google.de/books?id=B4EjDgAAQBAJ&pg=PA312&lpg=PA312&dq=Horace+W.+Henderson+cuthbert+denver&source=bl&ots=80GXnok3SF&sig=ACfU3U3kcL2j9OjGMSJBDvUzj-R85SOUGw&hl=de&sa=X&ved=2ahUKEwi-8Jj82fDlAhUQzaQKHSNyAHIQ6AEwA3oECAkQAQ#v=onepage&q=Horace%20W.%20Henderson%20cuthbert%20denver&f=falsehttps://en.wikipedia.org/wiki/Horace_Hendersonhttps://adp.library.ucsb.edu/names/106935BarksdaleF. H. Henderson, Jr.H HendersonH. HendersonH.HendersonHendersonHendesonHendsonHorace / HendersonHorace HendersoK. HendersonFletcher Henderson And His OrchestraThe Chocolate DandiesSy Oliver And His OrchestraColeman Hawkins And His OrchestraHorace Henderson And His OrchestraDon Redman And His OrchestraBuster Harding's OrchestraThe Henderson TwinsHenry "Red" Allen And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraAl Casey And His SextetChu Berry And His Stompy StevedoresBig Sid Catlett's Band + +307201Floyd CaseyJazz drummer and washboard player, born 1900 in Poplar Bluff, MO, died December 7, 1967 in New York. City. +Casey worked with Jimmy Powell's Jazz Monarchs, Ed Allen's Whispering Gold Band, Clarence Williams' Washboard Band and others. +Needs Votehttps://www.allmusic.com/artist/floyd-casey-mn0001254970/creditsCaseyF. CaseyFloyd "Fats" CaseyClarence Williams' Blue FiveWilliams' Washboard BandClarence Williams And His OrchestraAlabama Jug BandPowell's Jazz MonarchsBirmingham SerenadersClarence Williams' Washboard Five + +307202Mike McKendrickReuben Michael McKendrickb: 1901, Paris, Tennessee, USA +d: 22 March 1965, Chicago, Illinois, USA + +Jazz, Banjo, Tenor Guitar +Brother of [a3938448] + +Worked With: +Albert Washington, Charlie Alexander, [a307174], [a307464], George James, [a307309], Tubby Hall, Lester Boone, [a38201], [a307168], [a307340] +Needs Vote"Big Mike" McKendrick(?) Mike McKendrickBig Mike McKendrickM. McKendrickM. McKendricksMcKendrickMick Mc HendrickMike Mc HenrickMike Mc KendrickMike McHendrickMike McKendricksMike McKendrockMaurice HendricksLouis Armstrong And His OrchestraTiny Parham And His MusiciansBernie Young's Creole Jazz BandZutty And His BandBanjo Ikey Robinson And His Windy City FiveZilner Randolph And His OrchestraThe Ali Baba Trio + +307204Martha BoswellMartha Boswell LloydAmerican jazz vocalist. +Born June 9, 1905, Kansas City, Missouri, USA. +Died July 2, 1958, Peekskill, New York, USA. + +Martha was the eldest of The Boswell Sisters and sang the low notes. Along with her sisters [a=Helvetia Boswell] and [a=Connie Boswell], they attained national prominence in the USA in the 1930s.Needs Votehttp://en.wikipedia.org/wiki/Martha_Boswellhttps://www.imdb.com/name/nm0098352/BoswellM. BoswellMarthaThe Boswell Sisters + +307205The Boswell SistersThe Boswell Sisters were a close harmony American singing group, consisting of sisters [b]Martha Boswell[/b], [b]Connee Boswell[/b] (original name Connie), and [b]Helvetia "Vet" Boswell[/b], noted for intricate harmonies and rhythmic experimentation. They attained national prominence in the USA in the 1930s.Needs Votehttps://www.theboswelllegacy.comhttps://songbook1.wordpress.com/fx/1931-boswell-sisters/https://en.wikipedia.org/wiki/The_Boswell_Sistershttp://web.archive.org/web/20190328111158/http://bozzies.org/https://adp.library.ucsb.edunames103494Boswell SistersConnie, Martha, Vet BoswellLes Boswell SistersThe BoswellsThe Bozwell SistersThe Three Boswell SistersMartha BoswellConnie BoswellHelvetia Boswell + +307206Lammar WrightLammar Wright, Sr.American jazz trumpeter, born June 20, 1907 in Texarkana, Texas, died April 13, 1973 in New York City. +Wright played with Bennie Moten, The Missourians, Cab Calloway, Charlie Barnet, Don Redman, Claude Hopkins, Cootie Williams, Lucky Millinder, Sy Oliver, Louis Armstrong among others. +Not to be confused with his sons [a747127] (1927-1983) and [a312518] (1929-1984) who were both jazz trumpeters.Needs Votehttp://en.wikipedia.org/wiki/Lammar_Wright,_Sr.https://www.tshaonline.org/handbook/entries/wright-lammarhttps://adp.library.ucsb.edu/names/115460L. WrightL. WrtightLamar WrightLamar Wright Sr.Lamarr WrightLammar Wright Jr.Lammar Wright Sr.Larmer WrightLemar WrightWrightCab Calloway And His OrchestraCount Basie OrchestraBennie Moten's Kansas City OrchestraLionel Hampton And His OrchestraCharlie Barnet And His OrchestraLucky Millinder And His OrchestraCootie Williams And His OrchestraCab Calloway And His Cotton Club OrchestraThe Missourians + +307207Kid OryEdward OryAmerican jazz trombonist and band leader, acclaimed as the greatest trombone player in the early years of Jazz. Born 25 December 1886 in LaPlace, Louisiana; died 23 January 1973 in Honolulu, Hawaii. + +From 1912 to 1919 Ory led one of the most popular bands in New Orleans which featured many of the great musicians who would go on to define the Hot Jazz style. At various times [a=King Oliver], a young [a=Louis Armstrong], [a=Johnny Dodds], [a=Sidney Bechet] & [a=Jimmie Noone] all played in Orys' band. Relocating to California for health reasons in 1919, he assembled a new group of New Orleans musicians on the West Coast and played regularly under the name of Kid Ory's Creole Orchestra. In 1922 they became the first African-American jazz band from New Orleans to record, recording under the name of [a=Spike's Seven Pods Of Pepper Orchestra]. Moving to Chicago in 1925 he played again with [a=King Oliver], [a=Louis Armstrong] and with [a=Jelly Roll Morton], among others. The Depression years saw Ory playing very little and operating a chicken ranch with his brother. Ory revived Kid Ory's Creole Orchestra in 1943 and played, toured & recorded Jazz until he retired in 1966.Needs Votehttp://en.wikipedia.org/wiki/Kid_Oryhttps://www.britannica.com/biography/Kid-Oryhttps://exhibits.stanford.edu/sftjf/feature/kid-oryhttps://64parishes.org/entry/kid-oryhttps://adp.library.ucsb.edu/names/103282"Kid Ory""Kid" Ory'Kid" Ory'Kid' OryDryE OryE. "Kid" OryE. 'Kid' OryE. ((Kid)) OryE. K. OryE. Kid OryE. OryE.OryEd "Kid" OryEd (Kid) OryEd OryEd. "Kid" OrlyEd. "Kid" OryEd. OryEd.OryEddie "Kid" OryEdmond "Kid" OryEduard "Kid" OryEdvard "Kid" OryEdw. "Kid" OryEdw. Kid OryEdw. OryEdward "KID" OryEdward "Kid" OryEdward "King" OryEdward "kid" OryEdward 'Kid' OryEdward 'Kid'OryEdward (Kid) OryEdward >>Kid<< OryEdward Kid OryEdward OrEdward OryEdward «Kid» OryEdward »Kid« OryEdward „Kid“ OryEdward „Kid” OryEdwardsK. OryK.E. OryK.OryKid Edward OryKid OreyKidoryKit OryOriOrrOryOry EdwardOry EdwardsRoyTry»Kid» OryК. ОриКид ОриЭ. Ори„Kid“ OryKing Oliver & His Dixie SyncopatorsLouis Armstrong & His Hot FiveNew Orleans WanderersLouis Armstrong & His Hot SevenJelly Roll Morton's Red Hot PeppersKing Oliver's Jazz BandLouis Armstrong And His Dixieland SevenKid Ory And His Creole Jazz BandKid Ory And His OrchestraLil's Hot ShotsChicago FootwarmersNew Orleans BootblacksLouis Armstrong And His Hot SixOry's Sunshine OrchestraRussell's Hot SixSpike's Seven Pods Of Pepper OrchestraTiny Parham And His "Forty" FiveKid Ory And His Dixieland BandKid Ory Band + +307209Clarence HolidayClarence HallidayClarence Holiday (born July 23, 1898, Baltimore, Maryland, USA - died March 1, 1937, Dallas, Texas, USA) was an American banjoist and rhythm guitarist who recorded with many jazz swing musicians. He is the father of jazz singer [a33589]. He never married Billie's mother and apparently was not too happy about having to admit that he had a daughter. + +Needs Votehttps://en.wikipedia.org/wiki/Clarence_Holidayhttps://www.radioswissjazz.ch/en/music-database/musician/57310e056c26d13646df6a5a3ab2076c19351/biographyhttps://peoplepill.com/people/clarence-holidayhttps://adp.library.ucsb.edu/names/111594C. HolidayClarence HalidayClarence HallidayFletcher Henderson And His OrchestraFletcher Henderson And His Connie's Inn OrchestraConnie's Inn OrchestraPutney Dandridge And His OrchestraHenderson's Roseland Orchestra + +307216Bobby JohnsonRobert JohnsonHe played guitar, banjo, and saxophone and led bands in the Boston area from the 1910s through the early 1920s. He died in 1964. + +Brother of saxophonist [a=Howard Johnson (6)]. guitarist George Johnson and pianist Walter JohnsonNeeds VoteB. JohnsonR. JohnsonChick Webb And His OrchestraBuck And His BandElla Fitzgerald And Her Savoy EightCharlie Johnson & His OrchestraCharlie Johnson & His Paradise BandBenny Morton And His OrchestraBessie Smith-Orchestra + +307218Pete BriggsAmerican jazz bassist and tuba player best known for playing with Louis Armstrong. + +Born : c. 1904 in Charleston, South Carolina. +Died : Unknown. +Needs Votehttps://en.wikipedia.org/wiki/Pete_Briggshttps://adp.library.ucsb.edu/names/107109BiggsP. BriggsPete BiggsPeter BriggsП. БриггсLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraCarroll Dickerson's SavoyagersLouis Armstrong And His StompersCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +307219Tubby HallAlfred HallJazz drummer, born 12 October 1895 in Sellers, Louisiana, died 13 May 1945 in Chicago. +Moved with family to New Orleans in his childhood. His yonger brother [a=Minor Hall] also became a professional drummer. Tubby Hall played in many marching bands in New Orleans, including Buddie Petit's. +In March 1917 Tubby Hall moved to Chicago, Illinois, where he played with Sugar Johnny Smith. After two years in the United States Army, he returned to playing in Chicago, mostly with New Orleans bands, including the groups of King Oliver, Jimmie Noone, Tiny Parham, Johnny Dodds. For some years he played with Louis Armstrong, and is seen in Armstrong's movies of the early 1930s. +Needs Votehttps://adp.library.ucsb.edu/names/111199Alfre "Tubby" HallAlfred "Tubby" HallAlfred (Tubby) HallAlfred HallFred "Tubby" HallFred 'Tubby' HallFred (Tubby) HallFred « Tubby » HallFred “Tubby” HallHallT. HallLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraLouis Armstrong And His StompersFrankie Jaxon And His Hot ShotsJimmie Noone And His New Orleans BandZilner Randolph And His Orchestra + +307224Benny JamesUS-American jazz musician (banjo, guitar). Born ca. 1905, died later than 1934Needs VoteBen JamesBaron Lee And The Blue Rhythm BandThe Mills Blue Rhythm BandChick Bullock & His Levee Loungers + +307226Ed AllenEdward Clifton AllenAmerican jazz trumpet and cornet player (December 15, 1897, Nashville, Tennessee – January 28, 1974, New York City). +[b]Not to be confused with the New York based trumpeter (born 1957) [a=Eddie Allen].[/b] +Ed Allen began to work in night clubs and on riverboats on the Mississipi River. In the 1920s he played in the band of Charlie Creath, and then had his own ensemble, the Whispering Gold Band. +In 1924 he moved to Chicago and played with Earl Hines until 1925. He then played from 1925 to 1927 in a revue called Ed Daily's Black and White Show, as a member of Joe Jordan's group, the Sharps & Flats. In the second half of the decade Allen recorded with Clarence Williams in the LeRoy Tibbs Orchestra. This ensemble also accompanied Bessie Smith on some recordings. He also recorded in several bands of King Oliver's. +Allen played in various dance bands in the 1930s and 1940s. He then played with Benton Heath in New York City from the middle of the 1940s up until 1963 when he retired from the music business. +His last appearance on record was in England with Chris Barber in the 1950s. +Needs Votehttp://en.wikipedia.org/wiki/Ed_Allen_%28musician%29https://www.allmusic.com/artist/ed-allen-mn0000795718/biographyhttps://adp.library.ucsb.edu/names/107247AllenEd. AllenEddie AllenEdward AllenClarence Williams' Blue FiveWilliams' Washboard BandClarence Williams And His OrchestraAlabama Jug BandClarence Williams' Jazz KingsDixie Washboard BandBlue Grass Foot WarmersJoe Jordan's Ten Sharps & FlatsBirmingham SerenadersClarence Williams' Washboard FourClarence Williams' Washboard Five + +307230Dave WilbornDavid Buckley WilbornAmerican jazz guitarist, banjoist, and singer, born April 11, 1904 in Springfield, Ohio, died April 25, 1982 in Detroit. +Wilborn played with Cecil and Scott Scott (1922), Louis Armstrong (1928), McKinney's Cotton Pickers (until 1937), The Chocolate Dandies, and others. +Needs Votehttps://en.wikipedia.org/wiki/Dave_Wilbornhttps://www.allmusic.com/artist/dave-wilborn-mn0001716139/creditshttps://adp.library.ucsb.edu/names/109711Dave WilburnDave WillburnWilbornMcKinney's Cotton PickersThe Chocolate DandiesLouis Armstrong And His Savoy Ballroom FiveThe New McKinney's Cotton Pickers + +307231Albert NicholasAmerican jazz clarinetist and saxophonist. +Born: May 27, 1900 in New Orleans, Louisiana. +Died: September 3, 1973 in Basel, Switzerland. + +Played with Buddie Petit, [a=King Oliver], [a=Manuel Perez], [a=Luis Russell], [a=Jelly Roll Morton], [a=Art Hodes], [a=Bunk Johnson], [a=Kid Ory] and others. +Needs Votehttps://en.wikipedia.org/wiki/Albert_Nicholashttps://www.radioswissjazz.ch/en/music-database/musician/41371de5648f96c587bf3989f19cd86389dbe/biographyhttps://www.allmusic.com/artist/albert-nicholas-mn0000616557https://rateyourmusic.com/artist/albert_nicholas/credits/https://adp.library.ucsb.edu/names/103639A. NicholasAl NicholasAl. NicholasAlbert Nicholas (USA)Albert NicholsAlbert NicolasAlbert Nicolas Z Tow. Sekcji RytmicznejNicholasアルバート・ニコラスKing Oliver & His Dixie SyncopatorsLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersKing Oliver's Jazz BandLouis Armstrong And His Savoy Ballroom FiveKid Ory And His Creole Jazz BandLuis Russell And His OrchestraFats Waller And His BuddiesJelly Roll Morton's New Orleans JazzmenWild Bill Davison And His CommodoresAlbert Nicholas QuartetAlbert Nicholas And His New Orleans FriendsJelly Roll Morton's Hot SixJelly Roll Morton's Hot SevenRex Stewart And His Dixieland Jazz BandHenry "Red" Allen And His OrchestraPete Johnson And His BandBaby Dodds TrioAlbert Nicholas And His OrchestraAlbert Nicholas QuintetAlbert Nicholas TrioRussell's Hot SixAlbert Nicholas SextetThe All Star StompersChicago HottentotsAlbert Nicholas And His Creole SerenadersBaby Dodds' Jazz FourAlbert Nicholas And His Alexander Jazz BandAlbert Nicholas' Jazz Tone ComboThe Morton SextetThe "This Is Jazz" All-StarsAlbert Nicholas All StarsAlbert Nicholas Et Son QuartetteBechet-Nicholas Blue FiveTrio Albert Nicholas / Wallace Bishop / Fritz Trippel + +307232Lonnie Johnson (2)Alonzo JohnsonPioneering blues and jazz singer, guitarist, banjoist, violinist and pianist. Known for being the first to record in a single-note soloing guitar style with string bending and vibrato. +Born: February 08, 1899 in New Orleans, LA. +Died: June 16, 1970 in Toronto, Ontario, Canada. + +His musical influence includes [a=Elvis Presley], [a=Bob Dylan], [a=T-Bone Walker], [a=Django Reinhardt] and many, many more. + +He started playing in cafes in New Orleans and in 1917 he traveled in Europe, playing in revues and briefly with Will Marion Cook's Southern Syncopated Orchestra. When he returned home to New Orleans in 1918 he discovered that his entire family had been killed by the Spanish flu epidemic except for one brother. He and his surviving brother, [url=https://www.discogs.com/artist/683139]James "Steady Roll" Johnson[/url], moved to St. Louis in 1920 where Lonnie played with [a339900] and with [a4900280] in their Mississippi riverboat bands. In 1925 Johnson married blues singer [a859572] and won a blues contest sponsored by the Okeh record company. Part of the prize was a recording deal with the company. Throughout the rest of the 1920s he recorded with a variety of bands and musicians, including [a=Eddie Lang], [a253858] and the [a284747]. In the 1930s Johnson moved to Cleveland, Ohio and worked with the [a3232783], and then in a tire factory and steel mill. In 1937 he moved back to Chicago and played with [a=Johnny Dodds] and [a=Jimmie Noone]. Johnson continued to play for the rest of his life, but was often forced to leave the music business for periods to make a living. In 1963 he once again appeared briefly with [a=Duke Ellington]. In March 1969 he was hit by a car while walking on a sidewalk in Toronto. He was seriously injured, suffering a broken hip and kidney injuries, from which he never fully recovered. Johnson died in 1970 "virtually broke".Needs Votehttps://en.wikipedia.org/wiki/Lonnie_Johnson_(musician)https://adp.library.ucsb.edu/names/103519Alonzo "Lonnie" JohnsonAlonzo 'Lonnie' JohnsonAlonzo JohnsonC. JohnsonH. JohnsonJ.J. JohnsonJessie J. JohnsonJessie Johnson-Lonnie JohnsonJohnsonL. JohnsonL. JohnsonLanny JohnsonLarry JohnsonLenny JohnsonLonnie JacksonLonnie JohnsonLonnie Johnson Blues Vocal With GuitarLonny JohnsonLoonie JohnsonW. JohnsonJimmy JordanTommy Jordan (2)Bud Wilson (2)George Jefferson (3)Louis Armstrong & His Hot FiveDuke Ellington And His OrchestraMcKinney's Cotton PickersLouis Armstrong And His OrchestraLouis Armstrong And His Savoy Ballroom FiveLuis Russell And His OrchestraBlind Willie Dunn & His Gin Bottle FourBlue Boys (2)Johnson BoysLonnie Johnson TrioOllie Shepard & His Kentucky BoysBob Shaffner And Harlem Hot Shots + +307233Cedric WallaceAmerican jazz double-bassist. + +Born : August 03, 1909 in Miami, Florida. +Died : August 19, 1985 in New York City, New York. + +Worked (and recorded) with : Fats Waller (1938-1942), Una Mae Carlisle, Maxine Sullivan, Champion Jack Dupree, Pat Flowers, Gene Sedric, Dean Martin and others. +Needs Votehttps://adp.library.ucsb.edu/names/100722C. WallaceCedrick WallaceSedric WallaceWallaceFats Waller & His RhythmThe Cedric Wallace TrioPat Flowers And His RhythmFats Waller And FriendsCedric Wallace And His OrchestraCedric Wallace Quintet + +307236Manny KleinEmmanuel KleinAmerican jazz trumpeter. + +Born: 4 February 1908 in New York City. +Died: 31 May 1994 in Los Angeles, USA.Needs Votehttps://en.wikipedia.org/wiki/Mannie_Kleinhttps://www.encyclopedia.com/religion/encyclopedias-almanacs-transcripts-and-maps/klein-manniehttps://www.radioswissjazz.ch/en/music-database/musician/13949c573a930d237a179adc1a34b562c4e0c/biographyhttps://www.imdb.com/name/nm0458881/https://adp.library.ucsb.edu/names/110374"Mannie" KleinCharlie Teagarden Or Manny KleinEmanuel "Mannie" KleinEmanuel "Manny" KleinEmanuel KleinEmanuel kleinEmmanuel 'Manny' KleinEmmanuel KleinKleinM. KleinMannie KLeinMannie KleinMannie Klein And His SextetMannie KlienMendel KleinTommy Dorsey And His OrchestraHarry James And His OrchestraBilly May And His OrchestraArtie Shaw And His OrchestraClaude Thornhill And His OrchestraHenry Mancini And His OrchestraBenny Goodman And His OrchestraPete Rugolo OrchestraRed Norvo And His OrchestraBob Scobey's Frisco BandGeorgie Auld And His OrchestraHarry James & His Music MakersThe Buddy Bregman OrchestraTex Williams And His Western CaravanSkinnay Ennis And His OrchestraIrving Mills And His Hotsy Totsy GangLou Bring And His OrchestraAdrian Rollini And His OrchestraJoe Venuti And His New YorkersThe Bob Bain Brass EnsembleBobby Christian And His OrchestraManny Klein's All StarsManny Klein And His OrchestraTutti's TrumpetsMannie Klein And His Swing-A-HulasMannie Klein's HawaiiansThe Ambassadors (11)Frank Farrell And His Greenwich Village Inn OrchestraManny Klein's Dixieland BandKolster Dance OrchestraGinny Simms And Her OrchestraVince Guaraldi SextetLou Raderman And His Orchestra + +307237Richard M. JonesRichard Mariney JonesAmerican jazz pianist, composer, band leader, record producer, vocalist, & businessman. +Born 13 June 1889 in Donaldson, Louisiana, USA +Died 8 December 1945 in Chicago, Illinois, USA + +Born into a musical family, growing up in New Orleans. Jones played many instruments before making the piano his primary. Work included playing with [a=Armand J. Piron]s` Olympia Orchestra & some time with [a=King Oliver]. Moving to Chicago in 1919 he set up [a=Clarence Williams] publishing company & music store. While playing in Chicago bands through the 1920`s his main job was managing [l=Okeh] Records race records division. With his own studio band [a=Richard Jones And His Jazz Wizards] & as a pianist he backed many singers & bands. Composing such jazz standards as "Trouble In Mind" & "Riverside Blues", he remained active until his death as a musician & talent scout. +Correcthttps://web.archive.org/web/20191211220611/http://www.redhotjazz.com/jones.htmlhttps://en.wikipedia.org/wiki/Richard_M._Joneshttps://adp.library.ucsb.edu/names/106200https://adp.library.ucsb.edu/names/324036J. M. JonesJoneJonesJones(?)M. JonesM.R. JonesP. M. JonesR M JonesR JonesR M JonesR, M. JonesR. JonesR. M . JonesR. M. JonesR. M. JonesR. N. JonesR.. M. JonesR.H. JonesR.JonesR.M. JonesR.M.JonesRIchard JonesRM JonesRich - JonesRich / JonesRich JonesRich-JonesRich. M. JonesRich/JonesRichard JoneRichard JonesRichard M JonesRichard Mariney JonesRichard N. JonesRirchard Mariney JonesRobert M. JonesР. ДжонсKing Oliver & His Dixie SyncopatorsKing Oliver's Jazz BandRichard M. Jones' JazzmenJones' Chicago CosmopolitansRichard Jones And His Jazz WizardsD.C. Nelson's SerenadersPreston Jackson's Uptown BandWallie Coulter And His BandNew Orleans CreolesHightower's Night HawksThe Jazz Wizards + +307238Victoria SpiveyVictoria Regina Spivey.American blues singer. + +Born : October 15, 1906 in Houston, Texas. +Died : October 03, 1976 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Victoria_Spiveyhttps://adp.library.ucsb.edu/names/105213Madame Queen SpiveySpiveySpivezStiveyV SpiveyV. SpiveyV.SpiveyVictoriaVictoria And Her BluesJane Lucas (2)Victoria Spivey & Her Chicago FourOriginal Victoria Spivey And Her Hallelujah Boys + +307240Harold ScottJazz trumpeterNeeds VoteScottLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His Orchestra + +307241Sonny GreerWilliam Alexander GreerAmerican jazz drummer, born 13 December 1895 in Long Branch, NJ, died 23 March 1982 in New York, NY, USA. +Needs Votehttps://en.wikipedia.org/wiki/Sonny_Greerhttp://www.drummerworld.com/drummers/Sonny_Greer.htmlhttps://www.radioswissjazz.ch/en/music-database/musician/40686994380d9e1a8a7ca99bba66d1643e637/biographyhttps://www.imdb.com/name/nm0339488/https://www.allmusic.com/artist/sonny-greer-mn0000037251/biographyhttps://adp.library.ucsb.edu/names/104570"Sonny" Greer'Sonny' GreerGreerS. GreerS.G.SGSonny GreenSunnyWilliam "Sonny" GreerWilliam Sonny GreerWilliams "Sonny" GreerСонни ГриирDuke Ellington And His OrchestraCootie Williams & His Rug CuttersLionel Hampton And His OrchestraThe Whoopee MakersDuke Ellington And His Cotton Club OrchestraThe WashingtoniansBarney Bigard And His OrchestraRex Stewart And His OrchestraThe Duke's MenThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersSonny Greer And His RextetSonny Greer And His Memphis MenSonny Greer And The Duke's MenBernard Addison All StarsDuke Ellington's Hot FiveIvie Anderson And Her Boys From DixieThe Gulf Coast SevenArt Ford's Jazz PartyDuke Ellington Alumni All StarsEsquire All American Award WinnersThe Memphis Hot ShotsBarney Bigard And His JazzopatersThe Harlem Music MastersDuke Ellington's Philadelphia MelodiansColeman Hawkins & Friends + +307244Bernard AddisonBernard S. AddisonAmerican jazz banjo and guitar player. + +Born: April 15, 1905 in Annapolis, Maryland. +Died: December 18, 1990 in Rockville, New York State. +Needs Votehttps://adp.library.ucsb.edu/names/106889AddisonAdelsonB. AddisonBarnard AddisonBernie AddisonThe Mills BrothersBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersFletcher Henderson And His OrchestraThe Chocolate DandiesBenny Carter And His OrchestraColeman Hawkins And His OrchestraMezz Mezzrow And His OrchestraSidney Bechet And His New Orleans FeetwarmersHorace Henderson And His OrchestraFreddie Jenkins And His Harlem SevenHenry "Red" Allen And His OrchestraBenny Carter And His Swing QuartetHenry Allen-Coleman Hawkins And Their OrchestraStuff Smith & His OrchestraBernard Addison All StarsThe Gotham StompersCocoanut Grove OrchestraHarry's Happy FourBernard Addison And His RhythmWabash TrioWillie "The Lion" Smith & His OrchestraHawkins Orchestra + +307245Martell PettifordBanjo and guitar player.Needs VoteTampa Red And His Hokum Jug BandThe Tub Jug Washboard BandWashboard TrioMa Rainey And Her Tub Jug Washboard Band + +307246Mike PingitoreMichael PingitoreAmerican jazz banjoist and guitarist player & long-time member of Paul Whiteman's Orchestra. + +Born October 14, 1888 in Oakland, California. +Died October 30, 1952 in North Hollywood, California. +Needs Votehttps://en.wikipedia.org/wiki/Mike_Pingitorehttps://www.imdb.com/name/nm0684162/M. PingatoreM. PingitoreMike PignatoreMike PignitoreMike PingatoreMike PinguitoreMike PongitorePaul Whiteman And His OrchestraThe Virginians (3)Paul Whiteman And His Ambassador Orchestra + +307248Pike DavisClifton DavisAmerican jazz trumpeter, born c. 1895 in Baltimore, Maryland. +Played in Baltimore with [a=Eubie Blake] in 1915. In 1921-1922 in band lead by [a=Leroy Smith (6)], visited London with the Plantation Revue in 1923 and 1926. Worked in the USA with the Revue, then returned to Europe with [a=Noble Sissle] in 1929. From 1931 to 1934 worked in the Rhapsody in Blue show, then joined Lew Leslie's Blackbirds, and again returned to Europe in 1934.Needs VoteClifton "Pike" DavisClifton 'Pike' DavisDavisP. DavisThe WashingtoniansLeroy Smith And His OrchestraThe Plantation Orchestra + +307249Mississippi John HurtJohn Smith HurtInfluential country blues singer and guitarist. +Born: 8 March 1893 (exact birth date disputed) in Teoc, Carroll County, Mississippi +Died: 2 November 1966 in Grenada, Mississippi, USA (heart attack) + +Blues enthusiast located Hurt in 1963 and persuaded him to move to Washington, D.C. He was recorded by the Library of Congress in 1964. This helped further the American folk music revival, which led to the rediscovery of many other bluesmen of Hurt's era. He also went on to record several albums.Needs Votehttp://www.wirz.de/music/hurtfrm.htmhttps://en.wikipedia.org/wiki/Mississippi_John_Hurthttps://adp.library.ucsb.edu/names/104353HurtJ. HurtJ. S. HurtJohn HirtJohn HurtJohn S .HurtJohn S. HurtJohn Smith HurtM. J. HurtM.J. HurtM.J.HurtMiss J. HurtMiss. John HurtMissippi John HurtMissisippi John HurtMississipi John HurtMississippi JohnMississippi John S. Hurt + +307250Ed AndersonAndy Edward AndersonAmerican jazz trumpeter and cornetist, born July 1, 1910 in Jacksonville, Florida. + +Not to be confused with the mixing engineer [a509292] or the composer [a706619]. + +Needs VoteAndersonE. AndersonEd. AndersonEddie AndersonEdward AndersonKing Oliver & His Dixie SyncopatorsLouis Armstrong And His OrchestraBaron Lee And The Blue Rhythm BandJelly Roll Morton And His OrchestraClarence Williams' Jazz KingsThe Mills Blue Rhythm BandJoe Sullivan And His Café Society OrchestraCocoanut Grove OrchestraMemphis JazzersClarence Williams And His Bottomland Orchestra + +307251Jimmy StrongUS clarinetist and tenor saxophonist, born August 29, 1906, died after 1940. +Played with The Nighthawks, led by pianist Lottie E. Hightower in Chicago in the early 1920s, in mid-1920s in California, returning to Chicago to play with [a=Carroll Dickerson] 1927-1929. Best known for recordings made with [a=Louis Armstrong] 1928-1929. In the 1930s led own group and played with [a=Jimmie Noone] in 1939, then moved to Jersey City, New Jersey in 1940.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Strong_(musician)https://www.allmusic.com/artist/jimmy-strong-mn0001249563/biographyhttps://adp.library.ucsb.edu/names/113433J. StrongJim StrongДж. СтронгLouis Armstrong & His Hot FiveLouis Armstrong And His OrchestraLouis Armstrong And His Savoy Ballroom FiveCarroll Dickerson's SavoyagersCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +307253Ted McCordTheodore Jobetus McCord.American jazz saxophone (tenor and alto) and clarinet player, active in the 1920s and 1930s + +Born : May 17, 1907 in Birmingham, Alabama +Died: unknown + +Twin brother of saxophonist [a=Castor McCord]. +Recorded with "McKinney's Cotton Pickers" and "Mills Blue Rhythm Band" (with brother Cass McCord) +Needs Votehttps://en.wikipedia.org/wiki/Ted_McCord_(musician)https://www.bbc.co.uk/music/artists/f960a0b2-1285-4787-976e-b3a268f7cebdhttps://adp.library.ucsb.edu/names/100814McCordTed Mc CordTeddy McCordTheodore McCordMcKinney's Cotton PickersLouis Armstrong And His OrchestraThe Mills Blue Rhythm BandCocoanut Grove Orchestra + +307254Johnny St. CyrJohn Alexander St. CyrAmerican jazz banjoist and guitarist. +Born April 17, 1890, New Orleans, Louisiana, USA. +Died June 17, 1966, Los Angeles, California, USA. +Needs Votehttps://en.wikipedia.org/wiki/Johnny_St._Cyrhttps://www.allmusic.com/artist/johnny-st-cyr-mn0000204930/biographyhttps://musicrising.tulane.edu/discover/people/johnny-st-cyr/https://adp.library.ucsb.edu/names/112561"Buddy" St. CyrBuddy SincereBuddy St. CyrCyrJ St CyrJ. Saint-CyrJ. St CyrJ. St-CyrJ. St. CyrJ. St. Cyr.J.St. CyrJ.St.CyrJSCJohn A. St. CyrJohn Saint CyrJohn Saint-CyrJohn St CyrJohn St- CyrJohn St-CyrJohn St. CyrJohn StCyrJohnnie St. CyrJohnny CyrJohnny Saint CyrJohnny Saint-CyrJohnny St CyrJohnny St-CyrJohnny St. SyrJohnny St.-CyrJonny St. CyrSaint CyrSaint-CyrSt. CyrSt.CyrДж. Сент-СирLouis Armstrong & His Hot FiveKing Oliver's Creole Jazz BandNew Orleans WanderersLouis Armstrong & His Hot SevenJelly Roll Morton's Red Hot PeppersCookie's GingersnapsKing Oliver's Jazz BandLuis Russell's Heebie Jeebie StompersDoc Cook And His 14 Doctors Of SyncopationLovie Austin's Blues SerenadersLouis Armstrong And His Hot FourNew Orleans BootblacksWooden Joe's New Orleans BandRichard Jones And His Jazz WizardsPreston Jackson's Uptown BandCook's Dreamland OrchestraRussell's Hot SixJohnny St. Cyr And His Hot FiveRay Burke's Speakeasy BoysChicago Hottentots + +307255Joe SullivanDennis Patrick Joseph Michael O'SullivanAmerican jazz pianist and composer. +Born 4 or 5 November 1906 in Chicago, Illinois. +Died 13 October 1971 in San Francisco, California. + +Debut in 1927 with [a=McKenzie & Condon's Chicagoans] +Needs Votehttps://en.wikipedia.org/wiki/Joe_Sullivanhttp://www.redhotjazz.com/sullivan.htmlhttps://dippermouth.blogspot.com/2015/01/joe-sullivan-short-lived-all-stars.html?m=0J. SullivanJoe SallivanJose SullivanJoë SullivanO'SullivanSullivanBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraLionel Hampton And His OrchestraJack Teagarden's ChicagoansLouis Armstrong And His All-StarsMcKenzie & Condon's ChicagoansBud Freeman's All Star OrchestraThe RhythmakersEddie Condon And His OrchestraEddie Condon And His Hot ShotsEddie Condon And His FootwarmersEddie Condon And His ChicagoansThe Three DeucesWild Bill Davison And His CommodoresEddie Condon And His BandBenny Goodman And His OrchestraFrank Newton And His OrchestraVarsity SevenJoe Sullivan And His Café Society OrchestraPee Wee Russell's Three DeucesJoe Sullivan Jazz QuartetJoe Venuti And His Blue SixChicago Rhythm KingsMax Kaminsky And His Windy City SixGeorge Wettling's Jazz BandBilly Banks And His OrchestraJungle Kings (2)The Capitol JazzmenFrank Teschemacher's ChicagoansGeorge Wettling's All StarsMax Kaminsky And His Dixieland BandJoe Sullivan TrioJoe Sullivan QuintetteColeman Hawkins And His Hot SevenJam Session At CommodoreJoe Sullivan Band + +307256Harry GoldfieldAmerican jazz trumpeter. +Born : circa 1898 in Russia. +Died : May 19, 1948 -. + +Harry worked for many years in Paul Whiteman Orchestra, he was the father of jazz trumpeter Don Goldie (1930-1995). +Needs VoteGoldieGoldie GoldfieldH. GoldfieldHarry "Goldie" GoldfieldHarry GoldfielFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +307260Morris WhiteMorris Ellis White.American jazz banjoist and guitarist. +Nickname : "Fruit". +Was married to [a782861]’s third and youngest daughter [a1582488] from 1934 to 1937. +b.: Jan. 17, 1911 in St. Louis, MO +d.: Nov., 1986. + + +Needs Votehttps://en.wikipedia.org/wiki/Morris_Whitehttps://adp.library.ucsb.edu/names/115036Morrice WhiteMorris "Fruit" WhiteCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraCab Calloway And His Cotton Club OrchestraThe Missourians + +307262T-Bone WalkerAaron Thibeaux WalkerT-Bone Walker (born May 28, 1910, Linden, Texas, USA - died March 16, 1975, Los Angeles, California, USA) was an American blues guitarist, singer, songwriter and multi-instrumentalist. He began recording in 1929 and was one of the first artists to use an electric guitar in the 1930's. Perhaps his best known song is 1947's [i](They Call It) Stormy Monday[/i]. He was posthumously inducted into the [i]Rock And Roll Hall of Fame[/i] in 1987 (Early Influence). +Needs Votehttps://en.wikipedia.org/wiki/T-Bone_Walkerhttp://campber.people.clemson.edu/rhumboogie.htmlhttps://adp.library.ucsb.edu/names/105350"T"-Bone Walker"T-Bone" Walker"T. Bone" Walker"T.Bone" Walker'T-Bone'Walker(T-Bone) WalkerA WalkerA. "T-Bone" WalkerA. T-Bone WalkerA. T. WalkerA. WAlkerA. WalkerA. Walker / A. WalkerA.T. WalkerA.WalkerAAron Thibeaux "T-Bone" WalkerAaron "T-Bone Walker"Aaron "T-Bone Walker" McDanielAaron "T-Bone" WalkerAaron "T-bone" WalkerAaron "T.Bone" WalkerAaron 'T-Bone' WalkerAaron 'T-Bpne' WalkerAaron (T-Bone) WalkerAaron - T. Bone WalkerAaron T Bone WalkerAaron T WalkerAaron T-Bone WalkerAaron T. "T-Bone" WalkerAaron T. Bone WalkerAaron T. WalkerAaron T. WalquerAaron T.Bone WalkerAaron ThibeauxAaron Thibeaux "T-Bone" WalkerAaron Thibeaux 'T-Bone" WalkerAaron Thibeaux WalkerAaron Thibeaux Walker "T-Bone Walker"Aaron WalkerAaron « T-Bone » WalkerAaron-(T-Bone) WalkerAaron-T-Bone-WalkerAran T. WalkerArno WalkerAron "T-Bone" WalkerAron T Bone WalkerAron T. WalkerAron WalkerC. WalkerR. WalkerT BoneT Bone WalkerT WalkerT-B. WalkerT-Bone WalkT-Bone Walker & His GuitarT-Bone Walker And His GuitarT-Bone WalterT-Bones WalkerT. "Bone" WalkerT. B. WalkerT. Bone WalderT. Bone WalkT. Bone WalkerT. Bone Walker And His GuitarT. Bone-WalkerT. BoneWalkerT. WalkerT.- Bone WalkerT.B. WalkerT.B.WalkerT.Bone WalkerT.BorneWalkerTBone WalkerT_Bone WalkerThibeaux WalkerV. WalkerV.K. WalkerVide Lee WalkerWalkerWalker/T. BoneWalter« T-Bone » Walker„T"-Bone Walkerティーボーン・ウォーカーOak Cliff T-BoneLes Hite And His OrchestraT-Bone Walker & His OrchestraT-Bone Walker And His BandT-Bone Walker Blues BandThe T-Bone Walker Quintet + +307263Ted HeathGeorge Edward HeathBritish jazz trombonist, big bandleader and author. +Considered to be one of the greatest British jazz bandleaders. +Born March 30, 1902 in Wandsworth, South London, England. +Died November 18, 1969 in Virginia Water, Surrey, England. +Married to songwriter [a2577280] (December 16, 1933-November 18, 1969, his death). They wrote songs together, sometimes using the pseudonym "Frances Ash" (though not for all of their songs). +His orchestra charted 9 times between 1958 and 1961, all in the UK, with their top hit being their first--"Swingin' Shepherd Blues" in 1958. It hit #3 on the charts. +He published his autobiography in 1957, "Listen to my Music: The fabulous success story of the famous band leader".Needs Votehttps://en.wikipedia.org/wiki/Ted_Heath_(bandleader)https://www.imdb.com/name/nm0372715/https://adp.library.ucsb.edu/names/320598HeathHumph & HeathJ. HeathT HeathT. HeathTedTed HeatTed Heath & His MusicTed Heath (New Version)Ted Heath And His MusicTedd HeathヒースTed Heath And His OrchestraTed Heath And His MusicBenny Carter And His OrchestraAmbrose & His OrchestraGeraldo And His OrchestraSydney Lipton And His Grosvenor House BandArthur Lally & His OrchestraJack Hylton's Kit-Kat BandCarlton Hotel Dance OrchestraThe Devonshire Restaurant Dance BandFrances AshThe Ted Heath BandLouis Rico + +307265Otis JohnsonAmerican jazz trumpeter. Born 13 January 1908 in Richmond, Virginia, died 28 February 1994 +Worked with: +[a647996], [a313156], [a307398], [a307315], [a307454], [a38201], [a307366], [a307231], [a307378], [a339906]. +Needs Votehttps://en.wikipedia.org/wiki/Otis_Johnson_(musician)https://www.allmusic.com/artist/otis-johnson-mn0001441858O. JohnsonLouis Armstrong And His OrchestraLuis Russell And His Orchestra + +307268Tampa RedHudson WhittakerTampa Red was an American blues singer, guitarist and songwriter, born January 8, 1904 in Smithville, Lee County in Georgia, USA. He died in a nursing home on March 19, 1981 in Chicago, IL. Tampa Red came by his nick-name because he was raised in Tampa, Florida and because of his red hair. He was also known as [b]Honey Boy Smith[/b] at [l374560]. In the 1920s he formed a team with [a=Georgia Tom] (Dorsey), also known as [b]The Hokum Boys[/b]. Tampa Red also created jug bands such as [b]Tampa Red's Hokum Jug Band[/b] (featuring a young [a=Frankie Jaxon]), and [a=The Tub Jug Washboard Band], which backed blues singer [a=Ma Rainey]. He also recorded alone, and cut a number of exquisite guitar solos. + +Already by the time of his 1928 recording debut for [l74112], he had developed the clear, precise bottleneck blues guitar style that earned him his billing "The Guitar Wizard". His bottleneck and single-string solo style inspired a number of other blues guitarists, among them [a=Big Bill Broonzy] and [a=Robert Nighthawk]. Tampa Red was also a prolific songwriter, writing such blues standards as [i]Sweet Black Angel[/i], [i]Love Her With A Feeling[/i], [i]Don't You Lie To Me[/i], and [i]It Hurts Me Too[/i] (covered by the likes of [a=B.B. King], [a=Freddie King], [a=Fats Domino] and [a=Elmore James], as well as [a=Eric Clapton] and [a=Ghalia Volt] to name but a few). He may have been the most influential of the early 20th century blues guitarists.Needs Votehttps://www.wirz.de/music/tampared.htmhttp://www.keeponliving.at/artist/tampa_red.htmlhttps://www.honkingduck.com/discography/artist/tampa_redhttps://en.wikipedia.org/wiki/Tampa_Redhttps://www.imdb.com/name/nm3052515https://www.imdb.com/name/nm14099356H. WhittakerHudson "Tampa Red" WhittakerHudson Whittaker "Tampa Red"P.D.RedReddT Red (actually Fulson)T. RedT. RodTampa Red "The Guitar Wizard"Tampa Red (The Guitar Wizard)Tampa Red With OrchestraTampa Red, "The Guitar Wizard"Tampa ReddTamparedWhittakerタンパ・レッドHudson WhittakerJimmy EagerTampa Red And His Hokum Jug BandThe Hokum BoysTampa Red And The Chicago FiveChicago FiveState Street StompersThe Black Hill Billies + +307269Bertha "Chippie" HillBertha HillAmerican blues singer, born March 15, 1905 in Charleston, South Carolina, died May 7, 1950 in New York City, New York (traffic accident). +Hill recorded for OKeh in 1925-1927, for Vocalion in 1928-1929, and again for Circle in 1946-1947. A handful of radio broadcasts from 1947 has also been released. +Needs Votehttps://adp.library.ucsb.edu/names/106279https://en.wikipedia.org/wiki/Bertha_HillB.C. HillBerta "Chippie" HillBerta Chippie HillBertha 'Chippie' HillBertha Chippe HillBertha ChippieBertha Chippie HillBertha Chippy HillBertha HillChillie HillChippie HillChippie Hill And The BluesHill + +307270Big Bill BroonzyWilliam Lee Conley Broonzy BradleyBlues singer and guitarist. +Born: June 26, 1893 or 1903 in Scott County, Mississippi +Died: August 14 or 15, 1958 in Chicago (throat cancer) + +In the 1930’s Broonzy became known as one of the major artist on the Chicago Blues scene. During this time he performed with other top blues artists in Chicago such as l [a307235], [a307268], [a312990], [a307232], and [a746951]. +In 1938, Broonzy performed at John Hammond’s famous Spiritual and Swing concert at Carnegie Hall in New York City. This was the first time that he had ever performed in front of a white audience. After the concert, people start calling him “Big Bill” Broonzy. +He was one of the best known blues players and recorded over 260 blues songs, including Feelin’ Low Down, Remember Big Bill, Make Me Getaway, and Big Bill Broonzy Sings Country Blues. His recording career spanned five long decades, as he traveled from Mississippi to Chicago and even to Europe, where he became well-known. +In 1980, he was inducted into the Blues Foundation's Hall of Fame.Needs Votehttp://www.broonzy.com/https://en.wikipedia.org/wiki/Big_Bill_Broonzyhttps://www.britannica.com/biography/Big-Bill-Broonzyhttps://www.scaruffi.com/vol1/broonzy.htmlhttps://rateyourmusic.com/artist/big-bill-broonzyhttps://www.imdb.com/name/nm1410144/https://www.allmusic.com/artist/big-bill-broonzy-mn0000757873https://adp.library.ucsb.edu/index.php/mastertalent/detail/108656/Broonzy_Big_Billhttps://adp.library.ucsb.edu/names/108656"Big Bill" Broonzy"Big" Bill Bronzy"Big" Bill Broonzy'Big Bill' BroonzyB BroonzyB. B. BronzyB. B. BroonzyB. BoozeB. BroonsyB. BroonzieB. BroonzyB.B. BronzyB.B. BroonzyB.B.BronzyB.B.BroonzyB.BroonzyBBBBig B. BroonzyBig BillBig Bill & His GuitarBig Bill (Big Bill Broonzy)Big Bill (Broonzy)Big Bill And His GuitarBig Bill And His Guitar (aka Big Bill Broonzy)Big Bill BromzeyBig Bill BronzyBig Bill BroomsleyBig Bill BroonsyBig Bill BroonzeyBig Bill BroonzieBig Bill [Broonzy]Big Bill and His GuitarBig Billy BroonzyBig BroonzyBill Big BroonzyBill BillBill Bill BroonzyBill BronzyBill BroonzeyBill BroonzyBoonzyBronzyBroodzyBroomzyBroonzey, William Lee ConleyBroonzyBroonzy BillBroonzy, William Lee ConleyBrooznyBroozyChicago BillH.B. BroonzyS. BroonzyW BroonzyW. BroonsyW. BroonzyW. BrounzeyW. BrounzyW. L. C. BroonzyW. Lee BroonzyW.BroonzyW.L. BroonzyW.L.C. BroonzyW.O. BronzyWill Lee Conley BroonzyWilliamWilliam "Big Bill" BroonzyWilliam 'Big Bill' BroonzyWilliam (Big Bill) BroonzyWilliam (Big Bill) Broonzy*William BroomzyWilliam BroonzyWilliam L. C. BroonzyWilliam L.C. BroonzyWilliam Lee BronzyWilliam Lee BroonzyWilliam Lee Conley "Big Bill" BroonzyWilliam Lee Conley BronzeyWilliam Lee Conley BroonzyWilliam Lee Conley [Big Bill] BroonzyWilliam O. "Big Bill" BroonzyWilliam O. BroonzyWillian BroonzyWilliard BroonzyWillie BroomzyWillie BroonzyWillie BroozyWilly BroonzyWm BroonzyWm. BroonzyБрунзи“Big” Bill Broonzyビッグ・ビル・ブルーンジーSammy SampsonBig Bill JohnsonChicago BillLittle SamNatchez (5)L.C. BradleyWilliam Lee ConleySlim HunterState Street Boys (2)Big Bill And His Rhythm BandArnett Nelson & His Hot FourThe Hokum Boys (2)Big Bill And ThompsFamous Hokum BoysChicago Black SwansBig Bill & His Jug BustersBig Bill & His OrchestraMidnight RamblersThe Hokum Boys (4)Jazz Gillum And His Jazz BoysBig Bill And His Chicago FiveHarum ScarumsBig Bill And The Memphis FiveBig Bill Broonzy & His Big Little OrchestraBig Bill Broonzy & His Fat FourThe Hokum Boys (5)Little Sam & OrchestraWilliams & SampsonRed And His Washboard Band + +307274Langston CurlAmerican jazz trumpeter. + +Born : March 18, 1899 in Charles City County, Virginia. +Died : April 19, 1991 in Ruthville, Charles City County, Virginia. +Needs Votehttps://www.allmusic.com/artist/langston-curl-mn0001412785https://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-2000109000https://adp.library.ucsb.edu/index.php/mastertalent/detail/112248/Curl_LangstonA. CurlA.CurlCureCurlL. A. CurlL. CurlLangston, CurlLangston/CurlLangstone CurlMcKinney's Cotton PickersThe Chocolate DandiesDon Redman And His Orchestra + +307276Cecil ScottCecil Xavier ScottAmerican jazz saxophonist (tenor, baritone) and clarinetist, born on November 22, 1905 in Springfield, Ohio, died on January 5, 1964 in New York City, New York. +Younger brother of [a=Lloyd Scott (2)].Needs Votehttps://en.wikipedia.org/wiki/Cecil_Scotthttps://adp.library.ucsb.edu/names/110937C. ScottCecil ScoftScottTeddy Wilson And His OrchestraWilliams' Washboard BandFrankie Newton And His Uptown SerenadersClarence Williams And His OrchestraHenry "Red" Allen And His OrchestraTeddy Hill OrchestraAlabama Jug BandClara Smith And Her Jazz TrioDickie Wells' Big SevenHokum TrioBirmingham SerenadersCecil Scott & His Bright BoysSandy Williams Big EightJ.C. Higginbotham's Big EightCecil Scott & His Orchestra + +307277Kokomo ArnoldJames ArnoldAmerican blues singer and left-handed slide guitar player. Born: February 15, 1901 in Lovejoy's Station, Georgia. Died: November 8, 1968 in Chicago (heart attack) + He got his nickname from "Old Original Kokomo Blues" (a song about the Kokomo brand of coffee) recorded in 1934. His first 78 for Victor in 1930 was released as by [a=Gitfiddle Jim], but his numerous recordings for Decca 1934-1938 were all released as by Kokomo Arnold. He worked mostly outside music in the Chicago area from 1941.Needs Votehttps://www.wirz.de/music/arnold.htmhttps://adp.library.ucsb.edu/names/110643A. KokomoArnoldArnold KokomoGitfiddle JimJ. A. KokomoJ. ArnoldJ. HarnoldJ.A. KokomoJames "Kokomo" ArnoldJames 'Kokomo' ArnoldJames ArnoldJames Kokomo ArnoldJames « Kokomo » ArnoldJames-ArnoldK ArnoldK. ArnoldKo Ko Mo ArnoldKokoma ArnoldKokomoGitfiddle Jim + +307278Ramon UseraPortorican jazz saxophonist and clarinetist, composer, nicknamed "Moncho" (Ponce, Puerto Rico, August 31, 1904 - Santurce, Puerto Rico, August 12, 1972)Needs VoteM. UseraMancho UseraMoncho UseraRamon 'Mocho' UseraRamon 'Moncho' UseraRamon Mocho UseraRamón "Moncho" UseraRamón "Raymond" UseraRamón UseraRaymond "Moncho' UseraNoble Sissle And His OrchestraNoble Sissle And His Sizzling SyncopatorsCuarteto De Pedro FloresMoncho Usera Y Su Orquesta + +307279Claude JonesAmerican jazz trombonist. + +Born : February 11, 1901 in Boley, Oklahoma. +Died : January 17, 1962. (died at sea) +Needs Votehttps://en.wikipedia.org/wiki/Claude_Joneshttp://www.trombone-usa.com/jones_claude_bio.htmhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/407429ccd3bdd4c24d1eeaaef7ddc12f9942d/titolihttps://www.allmusic.com/artist/claude-jones-mn0000126019/biographyhttps://rateyourmusic.com/artist/claude-joneshttps://adp.library.ucsb.edu/names/107193C. JonesCl. JonesClaud NonesClaude JoneJonesRusty JonesCab Calloway And His OrchestraDuke Ellington And His OrchestraMcKinney's Cotton PickersLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesBilly Eckstine And His OrchestraFletcher Henderson And His Connie's Inn OrchestraChick Webb And His OrchestraColeman Hawkins And His OrchestraConnie's Inn OrchestraJelly Roll Morton's New Orleans JazzmenHorace Henderson And His OrchestraDeLuxe All Star BandDon Redman And His OrchestraHenry "Red" Allen And His OrchestraBenny Morton's Trombone ChoirColeman Hawkins Big Band + +307281Edwin SwayzeeAmerican jazz trumpeter and composer. + +Born : June 13, 1906 in Marshall, Texas. +Died : January 31, 1935 in New York City. (Swayze died on tour with Calloway in 1935) +Needs Votehttps://en.wikipedia.org/wiki/Edwin_SwayzeE. SwayzeeEd SwayzeEd SwayzeeEd. SwayzeEd. SwayzeeEdward SwayzeEdwin "King" SwayzeeEdwin SwayzeEdwin SwazeeEdwyn SwayzeeSwayzeSwayzeeCab Calloway And His OrchestraCab Calloway And His Cotton Club OrchestraJelly Roll Morton And His OrchestraSammie Lewis With His Bamville SyncopatorsThe Jungle Band (3) + +307282Louis MetcalfLouis MetcalfAmerican jazz trumpeter. +Born: February 28, 1905 in Webster Groves, Missouri. +Died: October 27, 1981 in New York City (Queens), New York. + +Louis worked with [a307444], [a309984], [a145257], [a307323], [a307366], [a902270] and others.Needs Votehttps://en.wikipedia.org/wiki/Louis_Metcalfhttps://www.allmusic.com/artist/louis-metcalf-mn0000148742/biographyhttp://worldcat.org/identities/lccn-n94063994/https://adp.library.ucsb.edu/names/107102L. MercalfL. MetcalfL. MetcalfeLouie MetcalfLouie Metcalf & QuartetLouis MatcalfLouis MetcalfeLouis RussellMetcalfMetcalfeMetclaveDuke Ellington And His OrchestraThe WashingtoniansKing Oliver & His OrchestraWilliams' Washboard BandLouis Metcalf's All StarsThe Gulf Coast SevenHarry's Happy FourChoo Choo JazzersJasper Davis & His OrchestraEddie Heywood's Jazz TrioJohnson's JazzersLouie Metcalf Orch.Four Black Diamonds + +307285Walter JohnsonAmerican jazz drummer. + +Born : February 18, 1904 in New York City, New York. +Died : April 26, 1977 in New York City, New York. + +Played with : [a=Fletcher Henderson], [a=Hoagy Carmichael], [a=Tab Smith], [a=Ben Webster], [a=Coleman Hawkins], [a=Henry Red Allen], [a=Dinah Washington] and many others. +Needs Votehttps://www.allmusic.com/artist/walter-johnson-mn0000228918JohnsonW. JohnsonFletcher Henderson And His OrchestraFletcher Henderson And His Connie's Inn OrchestraColeman Hawkins And His OrchestraConnie's Inn OrchestraHorace Henderson And His OrchestraTab Smith OrchestraColeman Hawkins' All Star OctetHenry "Red" Allen And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraPutney Dandridge And His Swing BandPutney Dandridge And His OrchestraTab Smith SeptetteBuster Bailey And His Seven Chocolate DandiesHawkins Orchestra + +307287Leo WatsonAmerican jazz vocalese singer, drummer, saxophonist and trombonist. +He worked with Ben Webster, Artie Shaw, Leonard Feather, Gene Krupa, Jan Savitt, Slim Gaillard, Billie Holiday, Benny Goodman and others. + +Born : February 27, 1898 in Kansas City, Missouri. +Died : May 02, 1950 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/102180Lee WatsonLeo (Scat) WatsonLeo Watson With The All Star Jam BandLou WatsonWatsonJohn Kirby And His OrchestraThe Spirits Of RhythmSlim Gaillard And His OrchestraAll Star Jam BandLeo Watson And His OrchestraThe Five CousinsSlim Gaillard And His Boogiereeners + +307292Sterling BoseSterling Belmont Bose.American jazz trumpeter, cornetist and singer. + +Born: February 23, 1906 in Florence, Alabama. +Died: June, 1958 in St. Petersburg, Florida. +Needs Votehttps://en.wikipedia.org/wiki/Sterling_Bosehttps://www.allmusic.com/artist/sterling-bose-mn0000545982/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109835/Bose_Sterlinghttps://adp.library.ucsb.edu/names/109835BoseS. BoseS. BozeSterling BozeStirling BoseTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenJean Goldkette And His OrchestraJack Teagarden And His OrchestraBen Pollack And His OrchestraBobby Hackett And His OrchestraBob Crosby And His OrchestraCloverdale Country Club OrchestraArcadian SerenadersVic Berton And His OrchestraThe Original Crescent City JazzersRod Cless QuartetGil Rodin And His Orchestra + +307293Ralph EscuderoRafael Escudero[b]Not to be confused with [a=Bob Escudero], also tubist and bassist; or [a=Rafi Escudero] also known as Rafael Escudero, composer.[/b] + +Puerto Rican tubist, later double bassist (July 16, 1898, Manatí, Puerto Rico - April 10, 1970, Puerto Rico). He moved to New York City in 1920-1921 where he played with a number of famous jazz musicians (as well as in Los Angeles) before returning to Puerto Rico in the 1930s. Leaders and bands whom he played with include the New Amsterdam Musical Association, Wilbur Sweatman, Fletcher Henderson, William McKinney, Kaiser Marshall, the Savoy Bearcats, and W.C. Handy among others. +Needs Votehttps://en.wikipedia.org/wiki/Ralph_Escuderohttps://www.allmusic.com/artist/ralph-escudero-mn0000116966/biographyhttps://adp.library.ucsb.edu/names/113629Bob EscuderoR. EscuderoRafael EscuderoRalph EscudiroRalphael EscuderoRaphael EscuderoMcKinney's Cotton PickersFletcher Henderson And His OrchestraThe Chocolate DandiesHenderson's Hot SixLucille Hegamin And Her Blue Flame SyncopatorsFletcher Henderson And His Club Alabam OrchestraHarris Blues And Jazz SevenJoe Smith's Jazz BandAlbury's Blue And Jazz Seven + +307295Charlie DixonCharles Edward Dixon.American jazz banjoist/guitarist. + +Played with : Sam Wooding, Fletcher Henderson, "Dixie Stompers", Kaiser Marshall, Louis Armstrong, Ralph Escudero, Coleman Hawkins, Don Redman, Elmer Chambers, and accompanied the blues singers : Bessie Smith, Ma Rainey, Viola McCoy, Trixie Smith and Alberta Hunter (1920's). + +Born : December 31, 1898 in Jersey City, New Jersey. +Died : December 06, 1940 in New York City, New York.Needs Votehttps://en.wikipedia.org/wiki/Charlie_Dixon_(musician)https://www.allmusic.com/artist/charlie-dixon-mn0000171640/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/202646/Dixon_CharlesC. DixonCharles DixonCharlie DicksonCliff DixonDixonFletcher Henderson And His OrchestraThe Dixie StompersThe Louisiana StompersMa Rainey And Her Georgia BandHenderson's Hot SixBessie Smith And Her BandIda Cox And Her Five Blue SpellsHenderson's Dance OrchestraTrixie Smith And Her Down Home SyncopatorsFletcher Henderson's CollegiansClara Smith And Her Jazz BandFletcher Henderson And His Club Alabam OrchestraFletcher Henderson's Jazz FiveHenderson's Hot Four + +307296Rex StewartRex William StewartAmerican jazz trumpet player, +Born February 22, 1907 in Philadelphia, Pennsylvania +Died September 7, 1967 in Los Angeles, California, USA. +On the recommendation of [a38201], he briefly joined [a307323] in 1926, then returned for about five years from 1928 and was with [a145257] for around a decade from 1934. Stewart is remembered for his half-valving effects. Toured Europe and Australia, also performed with [a311723] (1947-1951). + + +Needs Votehttps://en.wikipedia.org/wiki/Rex_Stewarthttps://timesmachine.nytimes.com/svc/tmach/v1/refer?pdf=true&res=9D04E6DD1131E53ABC4952DFBF66838C679EDEhttps://www.allaboutjazz.com/musicians/rex-stewart/https://www.britannica.com/biography/Rex-Stewarthttps://www.radioswissjazz.ch/en/music-database/musician/13097c288ad68d765337ddb4a6ee4613ccd3a/biographyhttps://www.allmusic.com/artist/rex-stewart-mn0000888838/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103819/Stewart_Rexhttps://sova.si.edu/record/NMAH.AC.0424Dex StewartR, StewartR. StewartR. StuartR.StewartRSRed StewartRew StewartRexRex KingRex StewardRex StuartRocks RuthStewardStewartStuartРекс СтюартDuke Ellington And His OrchestraMetronome All StarsRex Stewart's "Hot Club Berlin" SessionFletcher Henderson And His OrchestraThe Chocolate DandiesThe Dixie StompersThomas Morris And His Seven Hot BabiesFletcher Henderson And His Connie's Inn OrchestraJack Teagarden And His Big EightLuis Russell And His OrchestraThe Little Chocolate DandiesConnie's Inn OrchestraBarney Bigard And His OrchestraSidney Bechet And His New Orleans FeetwarmersRex Stewart And His OrchestraRex Stewart SeptetRex Stewart And His FeetwarmersRex Stewart QuintetEddie Condon And His All-StarsRex Stewart And His 52nd Street StompersRex Stewart And His Dixieland Jazz BandSonny Greer And His RextetDuke Ellington SextetRex Stewart And His FriendsIvie Anderson And Her Boys From DixieRex Stewart's Big EightRex Stewart's Big SevenThe Fletcher Henderson All StarsRex Stewart All-StarsRex Stewart And His BandChoo Choo JazzersRex Stewart QuartetTimme Rosenkrantz And His Barrelhouse BaronsKansas City Five (2)Cozy Cole's Big SevenStewart - Williams & Co.Rex Stewart & His Sydney SixBarney Bigard And His JazzopatersDixie Trio (2)Rex Stewart Jam Session 1948Keith Hounslow's Convention JazzersRex Stewart's Big FourRex Stewart And His SextetRex Stewart And His Jazzart-istsRex Stewart's London FiveHenderson's Roseland OrchestraBrick Fleagle's Rhythmakers + +307298Helen HumesUS jazz and blues singer, born June 23, 1913 in Louisville, KY, USA, died September 9, 1981 in Santa Monica, CA, USA. +First recordings 1927. Replaced Billie Holiday as lead vocalist w. Count Basie's Orchestra in 1938. Solo artist 1940's to 1960's before withdrawing from music for several years. Comeback in 1973 at the Newport Jazz Festival and remained musically active until her death. + +Needs Votehttp://en.wikipedia.org/wiki/Helen_Humeshttps://helenhumes.bandcamp.com/https://adp.library.ucsb.edu/names/104512H HumesH. HumesHelen HumeHelen Humes And BandHemel HumesHumesHumes, H.HymesCount Basie OrchestraHarry James And His OrchestraHelen Humes And Her All-StarsJubilee All StarsHelen Humes & Her Orchestra + +307300Tommy LadnierThomas James Ladnier.[b]Tommy Ladnier[/b] (May 28, 1900 – June 4, 1939) was an American jazz trumpeter. + +In 1917 Ladnier moved north to Chicago from New Orleans, and found work in a touring band. +In 1921 he began to play with [a=King Oliver]. + + In 1926 he went to New York and became the hot trumpet soloist with the [a=Fletcher Henderson's Orchestra]. +He traveled to Europe in 1928 and worked with [b]Benny Peyton[/b], and [a=Noble Sissle And His Sizzling Syncopators] in 1930. +In 1932 Ladnier recorded and played live with [a=Sidney Bechet] as [a=New Orleans Feetwarmers] but as work dried up during the Depression the duo opened the [b]Southern Tailor shop[/b] from 1933 to 1934 in New York, but it didn't work out. + +Ladnier dropped out of sight for a few years, but was rediscovered in 1938, by French Jazz critic [a=Hugues Panassié]. +Ladnier recorded the [r=3934097] with Bechet and [a=Mezz Mezzrow] but died suddenly in 1939 from a heart attack. + +Born: May 28, 1900 in Florence, Louisiana. +Died: June 04, 1939 in Geneva, New York.Needs Votehttp://en.wikipedia.org/wiki/Tommy_Ladnierhttp://www.tommyladnier.mono.net/http://www.redhotjazz.com/ladnier.htmlhttps://www.jazzviews.net/tommy-ladnier---the-tommy-ladnier-collection-1923-to-1939-the-jazz-legends-series.htmlhttp://worldcat.org/identities/lccn-n85068363/https://www.allmusic.com/artist/tommy-ladnier-mn0000624348https://adp.library.ucsb.edu/names/104857LadnierT. LadnierT.L.Tom LadnierTommy LadinerTommy LadinierFletcher Henderson And His OrchestraThe Dixie StompersNoble Sissle And His OrchestraThe New Orleans FeetwarmersThe Louisiana StompersTommy Ladnier And His OrchestraJailhouse JazzmenMezz Mezzrow And His OrchestraMezzrow-Ladnier QuintetSidney Bechet And His New Orleans FeetwarmersOllie Powers' Harmony SyncopatorsLovie Austin's Blues SerenadersNoble Sissle And His Sizzling SyncopatorsLadnier-Mezzrow All-StarsAlberta Hunter & Her Paramount BoysJimmy Johnson And His BandMezzrow-Ladnier QuartetSam Wooding And His Chocolate DandiesClarence Jones And The Paramount Trio + +307304Louis BaconAmerican jazz trumpeter, cornetist and singer. + +Born : November 01, 1904 in Louisville, Kentucky. +Died : December 08, 1967 in New York City. +Needs Votehttps://en.wikipedia.org/wiki/Louis_Bacon_(musician)https://adp.library.ucsb.edu/names/107411BaconL. BaconLouis BatonLouis BeconDuke Ellington And His OrchestraLouis Armstrong And His OrchestraChick Webb And His OrchestraBenny Carter And His OrchestraCootie Williams And His OrchestraRex Stewart And His OrchestraRex Stewart And His 52nd Street StompersWillie Lewis And His Negro BandLouis Bacon Et Son Orchestre + +307305Al MorganAlbert Morgan.American jazz double-bass player. Please don't confuse the singer and pianist [a=Al Morgan (3)] with this one. The [l=London Records] releases belong to the later one. +Albert's brothers, Sam and Isaiah were trumpeters and bandleader, Andrew was a jazz reedist. + + +Born : August 19, 1908 in New Orleans, Louisiana. +Died : April 14, 1974 in Los Angeles, California. +Needs Votehttp://en.wikipedia.org/wiki/Al_Morgan_%28musician%29https://www.allmusic.com/artist/al-morgan-mn0000612602/biographyhttps://adp.library.ucsb.edu/names/101483A. MorganAl MorgabAlbert "Al" MorganAlbert MorganMorganCab Calloway And His OrchestraFats Waller & His RhythmLouis Jordan And His Tympany FiveJones & Collins Astoria Hot EightThe RhythmakersEddie Condon And His OrchestraThe Mound City Blue BlowersEddie Condon And His BandLes Hite And His OrchestraCab Calloway And His Cotton Club OrchestraRed McKenzie And The Celestial BeingsJoe Darensbourg And His Dixie FlyersMel Powell And His OrchestraBilly Banks And His OrchestraChu Berry And His Jazz EnsembleJam Session At CommodoreJoe Bushkin Blue Boys + +307306Mutt HayesSaxophonistNeeds VoteMatt HayesMutt HaysVernon "Mutt" HayesVernon 'Mutt' HayesFrankie Trumbauer And His OrchestraPaul Ash & His Orchestra + +307307LeadbellyHuddie William LedbetterAmerican folk and blues singer, musician, and songwriter notable for his strong vocals, virtuosity on the twelve-string guitar, and the folk standards he introduced, including his renditions of "Goodnight, Irene", "Midnight Special", "Cotton Fields", and "Boll Weevil". +Born: January 23, 1888 in Mooringsport, Louisiana, USA +Died: December 6, 1949 in New York, NY, USA + +Though many releases credit him as "Leadbelly", he himself wrote it as "Lead Belly", which is also the spelling on his tombstone. + +Inducted into Rock And Roll Hall of Fame in 1988 (Early Influence). +Inducted into the Songwriters Hall of Fame in 1970.Needs Votehttp://en.wikipedia.org/wiki/Lead_Bellyhttps://www.songhall.org/profile/Huddie_Ledbetterhttps://www.biography.com/musician/lead-bellyhttps://www.britannica.com/biography/Leadbellyhttps://adp.library.ucsb.edu/names/102558H. LeadbellyH. LeatbellyH. LedbellyHuddie "Leadbelly" LedbetterHuddie Lead BellyHuddie LeadbellyHuddy "Leadbelly" LeadbetterLadbellyLead BellyLeadbelly (Huddie Ledbetter)Led BellyLedbellyПидбеллиHuddie LedbetterThe Lonesome Blues Singer + +307308Larry GomarLarry H. Gomerdinger.American jazz drummer. +Larry played with Victor Irwin, Dick Robertson, Victor Young (early 1930s), "Smith Ballew's Orchestra" (1934), Paul Whiteman (1934-'37), after worked in the West Coast's film studios. + +Born : June 06, 1898 in Newark, Ohio. +Died : January 13, 1952 in California.Needs Vote?Larry GomarPaul Whiteman And His Orchestra + +307309Preston JacksonJames Preston McDonaldAmerican trombonist of the early New Orleans jazz era + +Born: January 03, 1902, New Orleans, Louisiana. +Died: November 12, 1983, Blytheville, Arkansas. + +He played in Louis Armstrong's band in the 1930's. Born James McDonald, he changed his first name to his original middle name (Preston) and chose to use the last name of his stepfather (Jackson). +Needs Votehttps://adp.library.ucsb.edu/names/110747JacksonP. JacksonPresten JacksonLouis Armstrong And His OrchestraLuis Russell's Heebie Jeebie StompersLovie Austin's Blues SerenadersFrankie Jaxon And His Hot ShotsRichard Jones And His Jazz WizardsBernie Young's Creole Jazz BandPreston Jackson's Uptown BandArthur Sims And His Creole Roof OrchestraThe State Street RamblersJimmie Noone And His New Orleans BandStarks Hot FiveZilner Randolph And His OrchestraPreston Jackson's Chicago All-StarsPreston Jackson And His New Orleans Band + +307310Jack FultonJohn Collins Fulton, Jr.American jazz trombonist, vocalist and composer (see ASCAP). + +Born : June 13, 1903 in Philipsburg, Pennsylvania. +Died : November 12, 1993 in Rancho Bernardo,San Diego, California. + +Played with the Paul Whiteman Orchestra (1926-1934), Bix Beiderbecke (1928), Hoagy Carmichael, Frank Sinatra, Sammy Davis Jr., Sonny Stitt, Sarah Vaughan, Brook Benton, Perry Como and many others. In Whiteman's orchestra, he also often sang, frequently in a trio with [a=Austin Young] and [a=Charles Gaylord]. + +He began his music career in New York City during the roaring twenties. Fulton was also a staff musician at radio station WBBM in Chicago from 1935 to 1955. As a lyricist, he wrote and co-wrote over one hundred songs. He teamed with Lois Steele to write Perry Como's 1954, number one hit single, "Wanted." The duo had another hit in 1956, with "Ivory Tower," sung by Cathy Carr and Gale Storm. This record hit number two and six on the Billboard music chart, respectively. Fulton greatest achievement as a lyricist came when he teamed with renowned composer Moe Jaffe to write "If You Are But A Dream" (1941). Fulton's other notable music credits include "Mrs. Santa Claus," recorded by Nat King Cole, "My Greatest Mistake," and "Until." Needs Votehttps://www.imdb.com/name/nm0298473/biohttps://peoplepill.com/people/jack-fultonhttps://www.findagrave.com/memorial/36478588/john-c_-fultonhttps://adp.library.ucsb.edu/names/109803FUltonFultojnFultonJ FultonJ. FultonJ.FultonJack Fulton And The FultonesJack Fulton, Jr.Frankie Trumbauer And His OrchestraGeorge Olsen's MusicPaul Whiteman And His OrchestraLance Harrison Dixieland Band + +307312Ed CuffeeEdward Emerson Cuffee.American jazz trombonist. + +Born : June 07, 1902 in Norfolk, Virginia. +Died : January 03, 1959 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Ed_Cuffeehttps://adp.library.ucsb.edu/names/109670CuffeeE. CuffeeEd CuffeEdward 'Ed' CuffeeEdward CuffeeEdward CuffeyCount Basie OrchestraKing Oliver & His Dixie SyncopatorsMcKinney's Cotton PickersFletcher Henderson And His OrchestraClarence Williams' Blue FiveClarence Williams And His OrchestraClarence Williams' Jazz KingsBunk Johnson & His BandMemphis Jazzers + +307314Texas AlexanderAlger AlexanderTexas Alexander (September 12, 1900 in Jewett, Texas, USA – April 16, 1954 in Houston, Texas, USA) was a blues singer. + +Cousin of [a=Lightnin' Hopkins]. +Needs Votehttps://en.wikipedia.org/wiki/Alger_%22Texas%22_Alexanderhttps://www.findagrave.com/memorial/6815329/alger-alexanderhttps://adp.library.ucsb.edu/names/105967"Texas" AlexanderA. "Texas" AlexanderA. AlexanderAlexanderAlger "Texas Alexander"Alger "Texas" AlexanderAlger (Texas) AlexanderAlger AlexanderAlger Texas AlexanderT. AlexanderTexas Alexander And His Sax Black Tams + +307315J.C. HigginbothamJack HigginbothamBorn: May 11, 1906, Social Circle, Georgia +Died: May 26, 1973, New York, New York + +An extroverted trombonist with a sound of his own. Played with [a373807] and backed [a38201] during a few sessions. +Needs Votehttps://en.wikipedia.org/wiki/J._C._Higginbothamhttp://www.bluenote.com/artist/j-c-higginbotham/https://www.radioswissjazz.ch/en/music-database/musician/4072698a5601c9f553043ff74ee61f1b087a6/biographyhttps://www.allmusic.com/artist/jc-higginbotham-mn0000115896/biographyhttps://www.imdb.com/name/nm3513360/https://adp.library.ucsb.edu/names/106094Higgen/BothamHigginbothamHigginbottomHiggyI. C. HigginbothamJ C HigginbothamJ. C. HigginbothamJ. C. HiggynbothamJ. E. HigginbothamJ. G. HigginbothanJ. HigginbothamJ.-C. HigginbothamJ.C HigginbothamJ.C. HiggenbothamJ.C. HigginbothanJ.C. HigginbottomJ.C. HiggynbothamJ.C. WigginbotmanJames C. HigginbothamJay C HigginbothamJay C. HiggimbothamJay C. HigginbothamRobert HigginbothamKing Oliver & His Dixie SyncopatorsMetronome All StarsLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesLouis Armstrong And His Savoy Ballroom FiveKing Oliver & His OrchestraColeman Hawkins And His OrchestraLuis Russell And His OrchestraMezz Mezzrow And His OrchestraFats Waller And His BuddiesThe Little Chocolate DandiesJ.C. Higginbotham And His Six HicksConnie's Inn OrchestraSidney Bechet And His New Orleans FeetwarmersJay McShann And His OrchestraColeman Hawkins' All Star OctetHenry "Red" Allen And His OrchestraJack Purvis And His OrchestraPete Johnson And His BandThe Mills Blue Rhythm BandPort Of Harlem JazzmenHenry "Red" Allen's All StarsJ.C. Higginbotham QuintetThe Fletcher Henderson All StarsMetronome All-Star BandBuster Bailey And His Seven Chocolate DandiesJ.C. Higginbotham's Big EightHenry Allen SextetColeman Hawkins & Friends + +307316Ma RaineyGertrude PridgettAmerican blues singer and songwriter, born April 26, 1886, Columbus, Georgia, USA, died December 22, 1939, Rome, Georgia, USA + +Inducted into Rock And Roll Hall of Fame in 1990 (Early Influence). +Needs Votehttp://en.wikipedia.org/wiki/Ma_Raineyhttp://www.redhotjazz.com/rainey.htmlhttps://www.rockzirkus.de/blog/2021/07/ma-rainey-back-to-the-blues-roots-4/https://adp.library.ucsb.edu/names/102149"Ma" Rainey"Ma" Rainey's"Ma" Rainy'Ma' Rainey3Big Ma RainyG "Ma" RaineyG. "Ma" RaineyG. "Ma" RainyG. "Ma." RaineyG. 'A' RaineyG. 'Ma' RaineyG. Ma RaineyG. McRaineyG. McRaneyG. RaineyG. RainyGertruda "Ma" RaineyGertrude "Ma Rainey"Gertrude "Ma" RaineyGertrude 'Ma' RaineyGertrude (Ma) RaineyGertrude M. RaineyGertrude Ma RaineyGertrude RaineyJ. RaineyM. A. RaineyM. G. RaineyM. RainerM. RaineyM. RainyM. RaneyM. ReineyM.A. RaineyMa Gertrude RaineyMa LaineyMa RackyMa RainerMa Rainey And Her Georgia BoysMa Rainey's Tub Jug Washboard BandMa RainoyMa RaneyMa' RaineyMa'RaineyMa. RaineyMaRaneyMadam Gertrude "Ma" RaineyMadame "Ma" RaineyMadame Gertrude "Ma" RaineyMaraineyMaraneyMarcuneyMc. RaineyMcRaneyRainayRaineryRaineyRainey MaRainey,RaneyRanyReiney«Ma» RaineyМ. РейнейMa Rainey And Her Georgia BandMa Rainey With Her Georgia BoysMa Rainey And Her Tub Jug Washboard Band + +307317Bubber MileyJames Wesley MileyAmerican jazz trumpeter and cornet player. + +b. April 3, 1903 (Aiken, SC, USA) +d. May 20, 1932 (Welfare Island, NY, USA) +Needs Votehttps://en.wikipedia.org/wiki/James_%22Bubber%22_Mileyhttps://www.facebook.com/BubberMileyhttps://www.allmusic.com/artist/bubber-miley-mn0000528912https://www.imdb.com/name/nm1804174/biohttps://www.britannica.com/biography/Bubber-Mileyhttp://worldcat.org/identities/lccn-no98058167/https://adp.library.ucsb.edu/names/110995"Bubber" MileyB, MileyB. M. MileyB. MileB. MileyB. MillerB. MilleyB. MillyB.MileyBert MileyBob MileyBub MileyBud MileyJ. "Bubber" MileyJ. MileyJ.W. Bubber MileyJames "Bubber" MileyJames 'Bubber' MileyJames MileyJames W Bubber MileyJames W. "Bubber" MileyJames WesleyJames Wesley "Bubber" MileyM. MileyMIleyMaleyMikyMileyMiley FamousMileyiMilleyMillsMiloyNileyNuleyRileyМайлиDuke Ellington And His OrchestraJelly Roll Morton's Red Hot PeppersClarence Williams' Blue FiveHoagy Carmichael And His OrchestraThe WashingtoniansMamie Smith And Her Jazz HoundsPerry Bradford Jazz PhoolsBubber Miley And His Mileage MakersJoe Steele And His OrchestraTexas Blues DestroyersChoo Choo JazzersThomas Morris With His Past Jazz MastersHazel Meyers And Her Sawin' TrioKansas City Five (2)Sawin' TrioLillian Goodner And Her Sawin' Three + +307318Henry EdwardsAmerican jazz musician during the pre-war area, playing bass and tuba in the earliest [a=Duke Ellington] bands (b. Atlanta, Feb. 22, 1889; d. N.Y., Aug. 22, 1965).Needs Votehttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/edwards-bass-henryhttps://www.allmusic.com/artist/henry-edwards-mn0001172472/biography"Bass" Edwards'Bass' EdwardsB. EdwardsB.E.Bass EdwardBass EdwardsH. EdwardsHarry EdwardsHenry "Bass" EdwardsDuke Ellington And His OrchestraThe WashingtoniansSavoy Bearcats + +307319Louis Armstrong And His Sebastian New Cotton OrchestraNeeds Votehttps://www.naxos.com/person/Louis_Armstrong_Sebastian_New_Cotton_Club_Orchestra/45829.htmLouis ArmstrongLouis Armstrong & His Sebastian New Cotton ClubLouis Armstrong & His Sebastian New Cotton Club Orch.Louis Armstrong & His Sebastian New Cotton Club OrchestraLouis Armstrong & His Sebastian New Cotton OrchestraLouis Armstrong & New Sebastian Cotton Club OrchestraLouis Armstrong Anad His Sebastian New Cotton Club OrchestraLouis Armstrong And His Cotton Club OrchestraLouis Armstrong And His New Sebastian Cotton Club OrchestraLouis Armstrong And His OrchestraLouis Armstrong And His Sebastian New Cotton Club Orch.Louis Armstrong And His Sebastian New Cotton Club OrchestraLouis Armstrong And His Sebastian New Cotton Club Orchestra Avec Refrain ChantéNew Sebastian Cotton Club OrchestraThe New Sebastian Cotton Club OrchestraLouis ArmstrongLionel HamptonLawrence BrownMarvin JohnsonJoe BaileyHarold ScottLes HiteHenry PrinceHarvey Brooks (2)Charlie Jones (2)Ceele BurkeGeorge OrendorffBill Perkins (2)Luther "Sonny" CravenWilliam FranzReggie JonesLeon HerrifordWillie StarkLeon ElkinsL. Z. Cooper + +307320Stan kingStanley KingStan King (born 1900, Hartford, Connecticut, USA - died November 19, 1949, New York City, New York, USA) was an American jazz drummer, vocalist and kazoo player. +Needs Votehttps://de.wikipedia.org/wiki/Stan_Kinghttps://drumsinthetwenties.com/2018/03/24/heroes-11-stan-king-1900-1949/https://adp.library.ucsb.edu/names/110372CStanly KingKingS. KingStan KingStanley KingLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraBoyd Senter & His SenterpedesJack Teagarden And His OrchestraBenny Goodman And His OrchestraEddie Lang's OrchestraCalifornia RamblersMiff Mole's MolersLouis Prima & His New Orleans GangThe Dorsey Brothers OrchestraCornell And His OrchestraThe Big AcesThe Charleston ChasersAdrian Rollini And His OrchestraCloverdale Country Club OrchestraThe Dorsey Brothers And Their New DynamiksThe Vagabonds (6)University SixRed McKenzie And His Rhythm KingsArt Landry and His Call of the North OrchestraThe Six Blue ChipsKolster Dance OrchestraTom Dorsey And His Novelty OrchestraAdrian's Ramblers + +307323Fletcher HendersonFletcher Hamilton Henderson, Jr.American arranger, composer, & pianist (December:18, 1897 in Cuthbert, Georgia – December, 28 1952 in New York City, New York). +Brother to [a=Horace Henderson]. + +He was an important figure in the formation of the early jazz orchestra in the post Ragtime, pre-Swing era of the 1920s. The first band he led was the [a=Black Swan Dance Orchestra] in 1921, followed the same year by [a=Henderson's Dance Orchestra] and [a=Henderson's Dance Players] in 1923. Henderson continued during the 1930s as an arranger, composer, and as a talent scout. [a=Fletcher Henderson And His Orchestra] was formed in 1923, and continued until 1939, after which Fletcher re-assembled bands of his own for short periods during the following decade, working mostly in New York, Los Angeles, and Chicago. His las unit was a sextet, with which he played at Cafe Society in New York until a stroke put an end to his career in December 1950. Needs Votehttps://en.wikipedia.org/wiki/Fletcher_Hendersonhttps://www.britannica.com/biography/Fletcher-Hendersonhttps://www.ejazzlines.com/big-band-arrangements/by-arranger/fletcher-henderson-benny-goodman-charts/https://www.npr.org/2007/12/19/17370123/fletcher-henderson-architect-of-swing?t=1629449742826https://www.imdb.com/name/nm1486849/https://experts.illinois.edu/en/publications/the-uncrowned-king-of-swing-fletcher-henderson-and-big-band-jazzhttps://www.treccani.it/enciclopedia/fletcher-henderson/#:~:text=Henderson%2C%20Fletcher.,%2C%20tra%20gli%20altri%2C%20L.https://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/fletcher-hendersonhttps://adp.library.ucsb.edu/names/103284CF HendersonF HendersonF. H. HendersonF. H. Henderson Jr.F. H. Henderson, Jr.F. Hamilton Henderson, Jr.F. HendersonF. HendersonasF.H.F.H. HendersonF.H. Henderson, Jr.F.HendersonFHFH?Fl. HendersonFlecher HendersonFlechter HendersonFletcherFletcher "Smack" HendersonFletcher - HendersonFletcher / HendersonFletcher H HendersonFletcher H. HendersonFletcher Hamilton Henderson, JrFletcher Hamilton Henderson, Jr.Fletcher, HendersonFletcher-HendersonFletcher/HendersonFlethcer HendersonFletscher HendersonFred HendersonH. HendersonH.HendersonHandersonHenddersonHendersoHendersonHenderson-H・Fletcher HK. HendersonKoehlerL. HendersonP. HendersonФ. ХендерсонGeorge Brooks (3)Benny Goodman SextetFletcher Henderson And His OrchestraThe Dixie StompersThe Louisiana StompersFletcher Henderson And His Connie's Inn OrchestraJack Hylton And His OrchestraConnie's Inn OrchestraBenny Goodman And His OrchestraThe Henderson TwinsHenderson's Hot SixBessie Smith And Her BandBessie Smith And Her Blue BoysIda Cox And Her Five Blue SpellsHenderson's Novelty OrchestraHenderson's Dance OrchestraEarl Randolph's OrchestraCordy Williams' Jazz MastersTrixie Smith And Her Down Home SyncopatorsThe Jazz MastersFletcher Henderson's CollegiansClara Smith And Her Jazz BandFletcher Henderson And His Club Alabam OrchestraThe Fletcher Henderson All StarsBlack Swan Dance OrchestraFletcher Henderson's Jazz FiveFletcher Henderson SextetEthel Waters And The Jazz MastersHenderson And His Jazzy CornetistHenderson's Hot FourHenderson's Dance PlayersJoe Smith's Jazz BandFletcher Henderson's TrioHenderson's Roseland OrchestraHenderson's Wonder BoysFletcher Henderson And His Sawin' Six + +307324Arthur SchuttAmerican pianist and composer. + +b. November 21, 1902 (Reading, PA, USA) +d. January 28, 1965 (San Francisco, CA, USA) +Needs Votehttps://en.wikipedia.org/wiki/Arthur_Schutthttps://www.allmusic.com/artist/arthur-schutt-mn0000957380/biographyhttp://www.perfessorbill.com/comps/aschutt.shtmlhttps://adp.library.ucsb.edu/names/107368A. SchuttA. SchuttArt SchuttArthur ShottArtie SchuttSchuttRed Nichols And His Five PenniesJoe Venuti's Blue FourRoger Wolfe Kahn And His OrchestraBenny Goodman And His OrchestraEddie Lang's OrchestraMiff Mole's MolersThe Dorsey Brothers OrchestraThe Charleston ChasersThe GeorgiansArthur Schutt And His OrchestraJoe Venuti And His New YorkersThe Dorsey Brothers And Their New DynamiksCongo FourRussell Gray And His OrchestraTom Dorsey And His Novelty OrchestraSpecht's Society Serenaders + +307327Hilton JeffersonAmerican jazz saxophonist, born 30 July 1903 in Danbury, Connecticut; died 14 November 1968 in New York City.Needs Votehttps://en.wikipedia.org/wiki/Hilton_Jeffersonhttps://musicians.allaboutjazz.com/hiltonjeffersonhttp://www.harlem.org/people/jefferson.htmlhttps://adp.library.ucsb.edu/names/109150H. JeffersonHylton JeffersonJeffersonMilton JeffersonCab Calloway And His OrchestraDizzy Gillespie And His OrchestraDuke Ellington And His OrchestraFletcher Henderson And His OrchestraLouis Armstrong And His All-StarsTeddy Wilson And His OrchestraChick Webb And His OrchestraKing Oliver & His OrchestraColeman Hawkins And His OrchestraElla Fitzgerald And Her Savoy EightHorace Henderson And His OrchestraElla Fitzgerald And Her Famous OrchestraJay McShann And His OrchestraClaude Hopkins And His OrchestraHenry "Red" Allen And His OrchestraJoe Thomas And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraWalter Thomas' OrchestraAndy Gibson And His OrchestraThe International Jazz GroupDuke Ellington Alumni All StarsJonah Jones And His OrchestraThe Fletcher Henderson All StarsStewart - Williams & Co.The Jungle Band (3) + +307328Bernie DalyJazz saxophonist.Needs VoteB. DalyBernie BaileyBernie D. DalyEddie Lang's OrchestraJoe Venuti And His New Yorkers + +307330Crawford WethingtonArthur Crawford WethingtonAmerican jazz saxophonist, born 26 January 1904 in Chicago, Illinois, died 11 September 1994, in White Plains, New York, USA:Needs Votehttps://en.wikipedia.org/wiki/Crawford_Wethingtonhttps://www.allmusic.com/artist/crawford-wethington-mn0001193486/biographyhttps://adp.library.ucsb.edu/names/113434C. WethingtonCrawford WashingtonCrawford WathingtonCrawford WetheringtonCrawford WhetingtonWethingtonLouis Armstrong And His OrchestraCarroll Dickerson's SavoyagersBaron Lee And The Blue Rhythm BandThe Mills Blue Rhythm BandEdgar Hayes And His OrchestraCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +307331Otto HardwickOtto James HardwickeAmerican jazz alto saxophonist (also clarinet and bass saxophone), nicknamed "Toby", born May 31, 1904 in Washington, D. C., died August 5, 1970 in the same city. +Hardwick is most known for playing with [a=Duke Ellington], from the early 1920s, but he also played with [a=Elmer Snowden], [a=Noble Sissle], [a=Chu Berry] and [a=Fats Waller] in the late 1920s and early 1930s. He returned to Ellington in 1932 and retired from music shortly after leaving Ellington in 1946.Correcthttps://en.wikipedia.org/wiki/Otto_Hardwickhttps://www.allmusic.com/artist/otto-hardwick-mn0000413575https://the78rpmrecordspins.wordpress.com/tag/otto-hardwick/https://dbpedia.org/page/Otto_Hardwickhttps://adp.library.ucsb.edu/names/1115831-5 to 1-19, 2-1, 2-2HardwickHardwickeHarwickHordwockO. HardwickO. HardwickeO. J. HardwickO.H.OHOtto "Toby" HardwickOtto "Toby" HardwickOtto "Toby" HardwickeOtto HardwickeOtto HardwicksOtto HardwikeOtto HarwickOtto HarwickeToby HardwickОтто ХардуикDuke Ellington And His OrchestraCootie Williams & His Rug CuttersClarence Williams' Blue FiveThe WashingtoniansThe Duke's MenJohnny Hodges And His OrchestraSonny Greer And The Duke's MenIvie Anderson And Her Boys From DixieHarry Carney's Big EightThe Ellington TwinsJimmy Jones' Big EightOtto Hardwick QuartetJimmy Jones QuintetOtto Hardwick's Wax Quintet + +307332Harlan LattimoreJazz singer, born 1908 in Cincinnati. +Lattimore joined Don Redman in 1932, working with him during the 1930s, but also recording with Fletcher Henderson in 1932 and Victor Young in 1934. inactive in music after World War II.Needs Votehttps://adp.library.ucsb.edu/names/109739https://en.wikipedia.org/wiki/Harlan_LattimoreHLFletcher Henderson And His OrchestraConnie's Inn OrchestraHarlan Lattimore And His Connie's Inn Orchestra + +307335Harry WhiteHarry Alexander White.American jazz trombonist, cornetist, saxophonist, pianist, arranger and composer. +Nickname : "Father". +Played with : Elmer Snowden, Claude Hopkins, Duke Ellington, Cab Calloway, among others. + + +Born : June 01, 1898 in Bethlehem, Pennsylvania +Died : August 14, 1962 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/108261H WhiteH. I. WhiteH. WhiteH.I. WhiteHarry "Father" WhiteHarry A. WhiteHarry WrightHarry »Father« WhiteP. WhiteWhiteWhite, Harry A.Cab Calloway And His OrchestraDuke Ellington And His OrchestraLouis Armstrong And His OrchestraCab Calloway And His Cotton Club OrchestraThe Mills Blue Rhythm BandHot Lips Page And His Band + +307337Matty MalneckMatthew Michael MalneckAmerican jazz violinist, violist and songwriter. + +Born: December 9, 1903 in Newark, New Jersey. +Died: February 25, 1981 in Hollywood, California.Needs Votehttps://en.wikipedia.org/wiki/Matty_Malneckhttps://www.imdb.com/name/nm0540338/https://adp.library.ucsb.edu/names/108942HalneckM .MalneckM MalneckM. MaIneckM. MaineckM. MaleckM. MallneckM. MalnechM. MalneckM. MalnekM. MalneocM. MalnickM. MalpeckM. MattM. MelneckM. MelnickM. MlaneckM. NalneckM.MalneckM.MelneckM.MelnickMaLneckMad MalneckMainackMaineckMalbeckMaleckMalenckMalickMalmeckMalnackMalnecMalnechMalneckMalnecksMalneeckMalneekMalnekMalnickMalnockMalpeeckMalt MalneckMalueckMalúeckMark MalneckMarty MalneckMat MalneckMat MalnickMat MelnickMattMatt "Matty" MalneckMatt MaineckMatt MalneckMatt MalnekMatt MalnickMatt MalveckMatt MeinickMatt MelneckMatt MelnickMattMalneckMatthew 'Matty' MalneckMatthew MalneckMattie MalneckMatts MalneckMatty MabeckMatty MaineckMatty MalnechMatty Malneck And OrchestraMatty MalnickMatty MeineckMatty MelneckMaty MalneckMeineckMelmeckMelneckMelnickMo MalmackNat MalneckR. MalneckWalneckmalneckМет МельнекFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraMatty Malneck and his OrchestraIrving Mills And His Hotsy Totsy Gang + +307340Ikey RobinsonIsaac L. Robinson.American jazz banjoist, guitarist and vocalist. Husband of [a3937671] from 1935 to 1990. +Played with : Jelly Roll Morton, Clarence Williams, Jabbo Smith, Wilbur Sweatman, Noble Sissle, Carroll Dickerson, Erskine Tate, Georgia White and in his own groups (from 1940's). +Born : July 28, 1904 in Dublin, Virginia. +Died : October 25, 1990 in Chicago, Illinois. +Needs Votehttps://en.wikipedia.org/wiki/Ikey_Robinsonhttps://www.allmusic.com/artist/ikey-robinson-mn0001608644/biographyhttps://www.20sjazz.com/videos/ikey-robinsonhttp://worldcat.org/identities/lccn-no93033238/https://adp.library.ucsb.edu/names/109807"Banjo" Ikey Robinson>>Banjo<< Ikey RobinsonBanjo IkeBanjo Ikey RobinsonI. RobinsonIkeIke RobinsonIkey "Banjo Ike" RobinsonRobinsonRobisonHambone Jackson (2)Cabbage (2)Williams' Washboard BandThe Hokum BoysThe Hokum Boys (3)Alabama Jug BandRichard Jones And His Jazz Wizards"Banjo Ikey" Robinson And His Bull Fiddle BandJabbo Smith And His Rhythm Aces"Banjo" Ikey Robinson And His BandDown Home BoysBanjo Ikey Robinson And His Windy City FiveHokum TrioThe Pods Of PepperThe State Street RamblersIvory Chittison & Banjo JoeHam and Cabbage Trio + +307341McKinney's Cotton PickersAmerican big band, formed by [a=William McKinney (2)] in Springfield, Ohio, from the Synco Jazz Band. They recorded for Victor 1928-1931, often with arrangements by [a=Don Redman] or by trumpeter [a=John Nesbitt]. McKinney continued to lead the band until the early 1940s, but they made no further recordings.Needs Votehttps://adp.library.ucsb.edu/names/103735M.K.C.P.MC Kinney's Cotton PickersMKCPMc Kinney's Cotton PickersMcKenney's Cotton PickersMcKinney Cotton PickersColeman HawkinsFats WallerBenny CarterGeorge ThomasDon RedmanPrince RobinsonDave WilbornLonnie Johnson (2)Ted McCordLangston CurlClaude JonesRalph EscuderoEd CuffeeTodd RhodesCuba AustinJoe Smith (3)Sidney De ParisBilly Taylor Sr.Leonard DavisJames Price JohnsonMilton SeniorKaiser MarshallClarence RossJimmy DudleyJohn NesbittGeorge 'Buddy' Lee + +307342Charlie TeagardenCharles Eugene Teagarden (Charles Teagarden, Jr.)American jazz trumpeter. +Born 19 July 1913 in Vernon, Texas, USA, Died 10 December 1984 in Las Vegas, Nevada, USA. +Teagarden played in his brother's big band in 1940, but soon branched off to lead his own ensembles. After serving in World War II, he played freelance in Los Angeles entertainment and recording studios. He played with Jimmy Dorsey in 1948-50 and Bob Crosby from 1954–58, and worked with Pete Fountain in the 1960s. He worked steadily in Las Vegas after 1959. +Brother of pianist [a2075039], trombonist and bandleader [a301372], and drummer (Clois) [a1066764] and son of pianist [a3268931]. Needs Votehttps://en.wikipedia.org/wiki/Charlie_Teagardenhttps://www.allmusic.com/artist/charlie-teagarden-mn0000177343/biographyhttps://www.tshaonline.org/handbook/entries/teagarden-charles-jr-charliehttps://rateyourmusic.com/artist/charlie_teagardenhttps://adp.library.ucsb.edu/names/106767C. TeagardenCTCh. TeagardenCharles TeagardenCharley TeagardenCharlie TeegardenCharly TeagardenTeagardenHarry James And His OrchestraFrankie Trumbauer And His OrchestraJack Teagarden's ChicagoansJack Teagarden And His OrchestraPaul Whiteman And His OrchestraGeorge Wettling's Chicago Rhythm KingsBob Crosby And His OrchestraBenny Goodman And His OrchestraJerry Gray And His OrchestraThe Charleston ChasersJimmy Dorsey And His Original "Dorseyland" Jazz BandEddie Lang-Joe Venuti And Their All Star OrchestraCloverdale Country Club OrchestraRay Anthony's Big Band DixielandPaul Whiteman's Swing WingThe Jack Teagarden All-Stars + +307345Castor McCordCastor McCordAmerican jazz tenor saxophonist and clarinetist, nickname "Cass". He played and recorded with Louis Armstrong and his Orchestra, Mills Blue Rhythm Band, King Carter and his Royal Orchestra, but left the music world in the 1940s. Twin brother of saxophonist [a=Ted McCord]. + +Born: May 17, 1907 in Birmingham, Alabama +Died: February 14, 1963 in New York City, New YorkNeeds Votehttps://en.wikipedia.org/wiki/Castor_McCordhttps://adp.library.ucsb.edu/names/206517"Cass" McCordCass McCordCastor Mc CordLouis Armstrong And His OrchestraBenny Carter And His OrchestraJack Purvis And His OrchestraThe Mills Blue Rhythm BandCocoanut Grove Orchestra + +307347Buddy ChristianNarcisse Joseph Christian.American (New Orleans) jazz banjoist, guitarist and pianist. +Born 21 July 1885 (in some sources 1895) in New Orleans, Louisiana. +Died: 1958 in New Orleans, Louisiana. + +Christian played with [a=King Oliver], [a=Lucille Hegamin], Fred Jennings (in banjo duet), [a=Peter Bocage], Dixie Corn Shucker Orchestra, [a=Clarence Williams' Blue Five], [a=Sidney Bechet] and others. + +NOTE: The New York drummer is Buddy Christian (2).Needs Votehttps://en.wikipedia.org/wiki/Buddy_Christianhttps://www.allmusic.com/artist/buddy-christian-mn0001675356/biographyhttps://blinddogradio.blogspot.com/2016/10/buddy-christian.htmlhttps://adp.library.ucsb.edu/names/111966B. ChristianBuddy ChristmanChristianN. ChristianNarcisse "Buddy" ChristianNarcisse 'Buddy' ChristianNarcissus Buddy ChristianW. ChristianThe Red Onion Jazz BabiesClarence Williams' Blue FiveThomas Morris And His Seven Hot BabiesGeorge McClennon's Jazz DevilsHarlem TrioClarence Williams' TrioClarence Williams' Jazz KingsBessie Smith And Her Down Home TrioClarence Williams' Harmonizing FourThe King Bechet TrioThe Down Home TrioClara Smith And Her Jazz BandNew Orleans Blue FiveBuddy Christian's Creole FiveThomas Morris With His Past Jazz MastersBirmingham Darktown StruttersBuddy Christian's Jazz Rippers + +307352Frank NewtonWilliam Frank NewtonAmerican jazz trumpeter. +Born 4 January 1906 in Emory, Virginia. +Died 11 March 1954 in New York City, New York. + +He played in several local bands in New York during the 1920s and 1930s including those of Elmer Snowden (1927 and 1930), Bessie Smith (1933), Sam Wooding (1934), Chick Webb, Charlie Barnet, Andy Kirk and "Fess" Johnson. +In the 1940s was a member of the orchestras of Lucky Millinder and Pete Brown, also played in the jazz clubs of New York City and Boston with many musicians including pianist James P. Johnson, drummer Sid Catlett and clarinetist Edmond Hall. +Conducted (and recorded) with his own groups as "Frankie Newton & his Uptown Serenaders" (1937), "Frankie Newton and his Orchestra" (1939 and 1941), "Frank Newton Quintet" (1939), "Frank Newton and his Café Society Orchestra" (1939), "Frankie Newton & the Crimson Stompers" (1951). +Needs Votehttps://en.wikipedia.org/wiki/Frankie_Newtonhttps://jazzhistoryonline.com/frankie-newton-1a/https://jazzhistoryonline.com/frankie-newton-2a/https://adp.library.ucsb.edu/names/102906F. NewtonFrankie NewtonNewtonBillie Holiday And Her OrchestraTeddy Wilson And His OrchestraBuck And His BandMezz Mezzrow And His Swing BandFrank Newton And His OrchestraFrankie Newton And His Uptown SerenadersTeddy Hill OrchestraBuster Bailey's Rhythm BustersPort Of Harlem JazzmenFrankie Newton & His Cafe Society OrchestraJerry Kruger & Her Knights Of RhythmFrank Newton QuintetMary Lou Williams' Chosen FiveBessie Smith-Orchestra + +307355Cyrus St. ClairAmerican brass bass (sousaphone) player, born 1890 in Cambridge, MD, died 1955 in New York. +Moved to New York c. 1925, where he worked with [a=Wilbur De Paris] and [a=Charlie Johnson], making recordings with the latter. St. Clair recorded with [a=Clarence Williams]'s orchestra 1926-1929, also accompanying singers, among others [a=Bessie Smith]. He recorded again with Williams in the mid-1930s. He ceases working as amusician for some time, but partook in Rudi Blesh's radio series "This is Jazz" in 1947 and recorded with [a=Tony Parenti's Ragtimers].Needs Votehttps://en.wikipedia.org/wiki/Cyrus_St._Clairhttps://adp.library.ucsb.edu/names/100132C. St-ClairCy St. CVlairCy St. ClairCyrus Saint ClairCyrus Saint-ClairCyrus St ClairCyrus St-ClairSt. ClairKing Oliver & His Dixie SyncopatorsThe Chocolate DandiesClarence Williams' Blue FiveKing Oliver's Jazz BandThe Little Chocolate DandiesWilliams' Washboard BandClarence Williams And His OrchestraAlabama Jug BandClarence Williams' Jazz KingsCharlie Johnson & His Paradise BandTony Parenti's RagtimersClarence Williams StompersMemphis JazzersClarence Williams' Washboard Five + +307356Doc CheathamAdolphus Anthony CheathamAmerican jazz trumpeter, saxophonist, singer, and bandleader. +Born: June 13, 1905 in Nashville, Tennessee. +Died: June 02, 1997 In Washington, D. C.. +Grandfather of [a1598888].Needs Votehttps://en.wikipedia.org/wiki/Doc_Cheathamhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/42022a022290c00540b92f1a60f4798844532/biographyhttps://www.allmusic.com/artist/doc-cheatham-mn0000167019https://adp.library.ucsb.edu/names/356268"Doc" Adolphus Cheatham"Doc" Cheatham"Doc" Cheatman'Doc' CheathamA. CheathamAdolphue "Doc" CheathamAdolphus "Doc" CheathamAdolphus 'Doc' CheathamAdolphus (Doc) CheathamAdolphus Anthony 'Doc' CheathamAdolphus CheathamAdolphus «Doc» CheathamBill CheathamD CheathamDocDoc CheatamDoc CheathanCab Calloway And His OrchestraTeddy Wilson And His OrchestraLionel Hampton And His All-Star Alumni Big BandEddie Heywood And His OrchestraWilbur De Paris And His New New Orleans JazzCab Calloway And His Cotton Club OrchestraThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsThe Harlem Blues & Jazz BandSam Wooding And His OrchestraThe 360 Degree Music ExperienceJimmy Rushing And His OrchestraThe Claude Hopkins BandMal Waldron's All StarsPutney Dandridge And His OrchestraThe Buddy Tate All StarsClaude Hopkins All StarsEchoes Of New OrleansSam Wooding And His Chocolate KiddiesThe Peewee Russell SextetsThe Sound Of Jazz All-Stars + +307358Todd RhodesTodd Washington RhodesAmerican jazz and rhythm & blues pianist, arranger, composer and bandleader, born August 31, 1900 in Hopkinsville, Kentucky, died June 4, 1965 in Detroit (or) Flint, Michigan. +Rhodes played and recorded with [a307341] (1928-1931), [a317901] (1928), [a1030149] (1929) and led and recorded with his own rhythm & blues band from 1947 to 1954. He also worked with rhythm & blues singers such as Hank Ballard, Wynonie Harris and others.Needs Votehttps://en.wikipedia.org/wiki/Todd_Rhodeshttps://rateyourmusic.com/artist/todd_rhodeshttps://www.allmusic.com/artist/todd-rhodes-mn0000603036/creditshttps://adp.library.ucsb.edu/names/105993RhodesT. RhodesTod RhodesMcKinney's Cotton PickersThe Chocolate DandiesThe Todd Rhodes OrchestraTodd Rhodes And His ToddlersTodd Rhodes QuartetteTodd Rhodes And His SeptetTodd Rhodes' Band + +307359Earl Frazierearly jazz pianistNeeds VoteJoe FraserJabbo Smith And His Rhythm Aces + +307360Charlie IrvisCharles IrvisAmerican jazz trombonist, born May 6, 1899, New York City, New York, died c. 1939 in the same city. +Irvis played with [a=Duke Ellington] (1924-1926), [a=Charlie Johnson] (1927-1928), [a=Jelly Roll Morton] (1929-1930) and [a=Bubber Miley] 1931. He recorded with [a=Clarence Williams] backing vaudeville blues singers 1923-1927 and also with [a=Fats Waller] and [a=Thomas Morris] in 1927. +Needs Votehttps://adp.library.ucsb.edu/names/114224C. IrvisC.I.Ch IrvisCh. IrvisCharles IrvisCharles IvisCharley IrvisCharlie "Plug" IrvisCharlie AlvisCharlie IrvinCireinIrvisThe Red Onion Jazz BabiesJelly Roll Morton's Red Hot PeppersClarence Williams' Blue FiveGeorge McClennon's Jazz DevilsThe WashingtoniansFats Waller And His BuddiesCharlie Johnson & His OrchestraJelly Roll Morton And His OrchestraCharlie Johnson & His Paradise BandClarence Williams' Harmonizing FourClarence Williams StompersMorris's Hot BabiesBuddy Christian's Creole FiveThomas Morris With His Past Jazz MastersBirmingham Darktown StruttersFive Jazz Bell Hops + +307361Blind Willie McTellWilliam Samuel McTier (or McTear)Born: May 05, 1898 in Thomson, GA, United States +Died: August 19, 1959 in Milledgeville, GA, United States + +McTell was a prolific 12-string blues guitarist and vocalist who recorded a great deal of 78s for the Victor, Columbia, ARC, OKeh, and Decca labels during the 1920s and '30s, often performing under pseudonyms. In 1940, the field recordist John A. Lomax located McTell working as a street performer in his homebase of Atlanta, Georgia, and recorded him for the Library of Congress. McTell's career revived briefly in 1949 when he recorded sessions for the Atlantic and Regal labels, but was never able to re-establish in these post-war years the level of fame he had enjoyed during the heyday of the "race records." McTell died of a stroke in 1959. +Was married to [a1212224]. + +Also shown in BMI files as Ernest B McTell.Needs Votehttp://www.wirz.de/music/mctelfrm.htmhttps://en.wikipedia.org/wiki/Blind_Willie_McTellhttps://adp.library.ucsb.edu/names/103817"Blind" Willie McTell'Blind' Willie McTell(Blind Willie McTell)B. W. McTellB. Willie MctellB.W.McTellBill McTellBlind McTellBlind W. McTellBlind Will McTellBlind William McTellBlind WillieBlind Willie (Blind Willie McTell)Blind Willie Mac TellBlind Willie Mc TellBlind Willie McTell as Blind WillieBlind Willy McTellE.B. McTellErnest B McTellErnest B. McTellGeorgia BillHot Shot WillieMCTellMc TellMcTellMcTell, Blind WillieW McTellW MctellW. Mc TellW. Mc. Tell.W. McTellW. UctellW.McTellWiliam McTellWill Mc TellWill McTellWill MctellWillam McTellWilli McTellWilliam McTellWillie MacTellWillie Mc TellWillie McTellWillis McFellWilly McTellHot Shot WillieBlind SammieGeorgia BillGuitar SammieBarrelhouse SammyBlind Willie & PartnerCurley Weaver & PartnerPig N' Whistle Red + +307363Chester HazlettChester Hugo HazlettAmerican jazz clarinetist and saxophonist. + +Born : November 07, 1891. +Died : April, 1974 in Turners Falls, Franklin County, Massachusetts.Needs Votehttps://de.wikipedia.org/wiki/Chester_HazlettChester H. HazlettChester HazletChester HazlittChet HazlettHazlettFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraSan Francisco SymphonyJoe Glover And His Collegians + +307364McLure "Red Mac" MorrisAmerican jazz trumpeter (but also pianist, organist, drummer, vocalist) and bandleader, nicknamed "Red Mack", born January 18, 1912 in Memphis, Tennessee, died June 14, 1993 in Los Angeles, California. +Morris played with Louis Armstrong, Sonny Clay, Charlie Echols, Lorenzo Flennoy, Lionel Hampton and also led his own orchestra. +His records for Gold Seal, Atlas and Mercury in 1945, 1946 and 1951, respectively, are rhythm & blues rather than jazz.Needs Vote"Red" Mack"Red" Mack MorrisMac MorrisMackMcClure "Red Mac" MorrisMcClure "Red Mack" MorrisMcClure MorrisRed "Mack" MorrisRed MackRed Mack MorrisRed Mack and his trumpetRed MorrisJimmy Mundy OrchestraLester & Lee Young's OrchestraFour Joes & A JaneRed Mack & His Orchestra"Red" Mack And His All StarsSylvester Scott And His OrchestraRed Mack And Ensemble + +307365Freddy JenkinsFrederic Douglas JenkinsAmerican jazz trumpeter, bassist and composer, nicknamed "Little Posey" +born October 10, 1906 in New York City +died 1978 in Texas. + +Jenkins worked with Edgar Hayes, Horace Henderson, Duke Ellington (1928-1934, 1937-1938), in his own group (1935), Luis Russell (1936), Alvis Hayes and others. Retired from music in 1938 due to illness.Needs Votehttps://en.wikipedia.org/wiki/Freddie_Jenkinshttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/jenkins-freddiehttps://adp.library.ucsb.edu/names/102898F. JenkinsF.JenkinsFGFred JenkinsFreddie JenkinsFreddy "Posey" JenkinsJenkinsDuke Ellington And His OrchestraThe Whoopee MakersDuke Ellington And His Cotton Club OrchestraThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsFreddie Jenkins And His Harlem SevenRex Stewart And His 52nd Street StompersDuke Ellington's Hot FiveThe Memphis Hot ShotsThe Harlem Music MastersDuke Ellington's Philadelphia Melodians + +307366Luis RussellLuis Carl Russell.American jazz pianist, violinist, songwriter & bandleader. + +[b]For session soul-disco guitarist, use [a=Louis Russell (2)][/b]. + +Born August 06, 1902 in Careening Cay, Panama. +Died December 11, 1963 in New York, New York, USA. +Husband of [a969786], father of [a34181]. + +Luis was leader of "Russell's Hot Six", "Lou And His Gingersnaps", "Luis Russell And His Burning Eight", "The Jungle Town Stompers" and "Luis Russell And His Heebie Jeebie Stompers". +Worked with : Albert Nicholas, Doc Cooke, Red Allen, Jelly Roll Morton, Louis Armstrong and King Oliver. +Russell was [a=Louis Armstrong]'s musical director for many years. Known for writing/co-writing the songs: "Come Back Sweet Papa" (aka ""Get 'Em Again Blues"), "Saratoga Shout", and "Back O' Town Blues".Needs Votehttps://en.wikipedia.org/wiki/Luis_Russellhttps://www.allmusic.com/artist/luis-russell-mn0000315132/biographyhttps://riverwalkjazz.stanford.edu/?q=program/feelin-spirit-luis-russell-storyhttps://alchetron.com/Luis-Russellhttps://www.imdb.com/name/nm1527043/https://thebocasbreeze.com/uncategorized/luisrussell/https://syncopatedtimes.com/luis-russell-1902-1963/https://adp.library.ucsb.edu/names/106082L RussellL. C. RusselL. RusselL. RussellL.C. RussellLewis RussellLouis RusselLouis RussellLuisLuis C. RussellLuis Carl RussellLuis RusselLuis Russell's Hot SixR. LuisRusellRusselRussellRussell, L.RusselllKing Oliver & His Dixie SyncopatorsLouis Armstrong And His OrchestraKing Oliver's Jazz BandLouis Armstrong And His Savoy Ballroom FiveLuis Russell's Heebie Jeebie StompersKing Oliver & His OrchestraLuis Russell And His OrchestraHenry "Red" Allen And His OrchestraThe Jungle Town StompersLuis Russell And His Burning EightRussell's Hot SixChicago HottentotsLou & His Gingersnaps + +307368Wilbur HallWilbur Francis HallAmerican jazz trombonist, sometimes credited as Willie Hall, who also occasionally doubled on guitar, violin, and bicycle pump. + +Born: November 18, 1894 in Shawnee Mound, Missouri. +Died: June 30, 1983 in Newbury Park, California. + +Played with the Paul Whiteman Orchestra (1924-1930), Bix Beiderbecke, Hoagy Carmichael, Tommy Dorsey, Bing Crosby, Frankie Trumbauer, Jack Hylton, and others. +Needs Votehttps://en.wikipedia.org/wiki/Wilbur_Hall_(musician)https://adp.library.ucsb.edu/index.php/mastertalent/detail/204207/Hall_Wilbur?Matrix_page=2https://adp.library.ucsb.edu/index.php/mastertalent/detail/319691/Hall_WillieWillie HallWilly HallFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +307369Connie BoswellConstance Foore "Connee" BoswellAmerican female vocalist born in Kansas City but raised in New Orleans, Louisiana. +Born December 3, 1907, Kansas City, Missouri, USA. +Died October 11, 1976, New York, USA. +Along with her sisters [a=Martha Boswell] and [a=Helvetia Boswell], they attained national prominence as [a=The Boswell Sisters] in the USA in the 1930s. They became a highly influential singing group during this period via recordings and radio. Connee herself is widely considered one of the greatest jazz female vocalists and was a major influence on Ella Fitzgerald who said, "My mother brought home one of her records, and I fell in love with it....I tried so hard to sound just like her." + +In 1936, Connee's sisters retired and Connee continued on as a solo artist (having also recorded solos during her years with the group).Needs Votehttp://en.wikipedia.org/wiki/Connee_Boswellhttps://www.imdb.com/name/nm0098333/https://adp.library.ucsb.edu/names/105690BoswellC. BoswellConneeConnee BosswellConnee BoswellConneee BoswellConner BoswelConner BoswellConnieConnie Boswell And Her V-Disc MenConnie Boswell E Sua OrquestraConnie Boswell With OrchestraFooreКонни БосуэллWoody Herman And His OrchestraThe Boswell SistersConnie Boswell And Her V-Disc Music MenConnie Boswell And Her Swing BandThe Band That Plays The Blues + +307370Mike TrafficanteMichael O. Trafficante.American jazz bassist and tuba player. + +Born : August 06, 1892 in Philadelphia, Pennsylvania. +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/210261/Trafficante_MikeMike TraficanteMike TrifficantePaul Whiteman And His OrchestraEddie Lang's Orchestra + +307372June ColeJune Lawrence ColeAmerican jazz bassist, tubist, and singer. Born 1903, Springfield, Ohio. Died October 10, 1960, New York City. + +Do NOT confuse with pianist [a=June Cole (3)], brother of [a=Cozy Cole].Needs Votehttps://en.wikipedia.org/wiki/June_Colehttp://www.allmusic.com/artist/p65535/biographyhttps://www.allmusic.com/artist/june-cole-mn0001641956/biographyhttps://adp.library.ucsb.edu/names/112306ColeJ. ColeJ. ColesJules ColesJune ColesJune L. ColeFletcher Henderson And His OrchestraThe Louisiana StompersWillie Lewis And His Negro BandSam Wooding And His OrchestraEarl Randolph's OrchestraFletcher Henderson's CollegiansWillie Lewis & His EntertainersGarnet Clark And His Hot Club's Four + +307373Jimmy Jones (3)James Henry JonesJazz swing pianist and arranger, born December 30, 1918 in Memphis, TN (USA); died April 29, 1982 in Burbank, CA (USA). + +First started to play with [a=Stuff Smith] from 1943 to 1945, then [a=J.C. Heard] (1946/1947), [a=Don Byas] (1946), [a=Coleman Hawkins] (1947) and pianist to [a=Sarah Vaughan] from 1947 through the 1960`s. He has appeared as a sideman on many jazz recordings in the 50`s and 60s, including pianist to [a=Helen Merrill], [a=Sonny Stitt], [a=Duke Ellington], [a=Ella Fitzgerald] and [a=Nancy Wilson] to name a few. Continued to record as sideman through the 1970`s. +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Jones_(pianist)https://www.allmusic.com/artist/jimmy-jones-mn0000852318/biographyhttps://adp.library.ucsb.edu/names/205115J. H. JonesJ. JonesJames (Jimmy) Henry JonesJames JonesJerry JonesJimmie JonesJonesJones, James Henry, (Jimmy)Д. ДжонсДж. ДжонсДжимми Джонсジミー・ジョーンズStuff Smith TrioSonny Stitt QuartetIllinois Jacquet And His OrchestraThe Duke's MenGeorge Treadwell And His All StarsSarah Vaughan And Her TrioThe Ernie Wilkins OrchestraTony Scott And His Down Beat Club SeptetMilt Jackson And Big BrassColeman Hawkins' 52nd Street All StarsStuff Smith QuartetThe Jones BoysJimmy Jones & His OrchestraClark Terry QuintetDon Byas QuintetteJimmy Jones BandJimmy Jones TrioAndy Gibson And His OrchestraThad Jones And His EnsembleDickie Wells' Big SevenThe Frank Wess QuintetHarry Carney's Big EightThe Frank Wess SextetHarold Ashby QuartetAl Hall QuartetThad Jones QuintetLawrence Brown's All-StarsJoe Thomas' Big SixJimmy Jones' Big EightSandy Williams Big EightJimmy Jones' Big FourTrummy Young's Big SevenJ.C. Higginbotham's Big EightJimmy Jones QuartetAl Hall QuintetSession SixJimmy Jones And His All StarsOtto Hardwick QuartetJimmy Jones QuintetStuff Smith And Mary Osborne QuartetOtto Hardwick's Wax QuintetDenzil Best's Wax Quintet + +307378Paul BarbarinAdolphe Paul BarbarinAmerican jazz drummer and bandleader, born May 5, 1899 in New Orleans, Louisiana, USA, died February 17, 1969 in the same city. +His father [a=Isidore Barbarin] and brother [a=Louis Barbarin] were also musicians. + +Needs Votehttps://en.wikipedia.org/wiki/Paul_Barbarinhttps://syncopatedtimes.com/paul-barbarin-1899-1969/https://musicrising.tulane.edu/discover/people/paul-barbarin/https://www.allmusic.com/artist/paul-barbarin-mn0000014318/biographyhttps://www.imdb.com/name/nm2010342/https://adp.library.ucsb.edu/index.php/mastertalent/detail/106342/Barbarin_Paulhttps://adp.library.ucsb.edu/names/106342BabarinBar BarianBarbainBarbarbianBarbarianBarbarinBarberinP BarbarinP. BabarinP. BarbainP. BarbarinP. BarbariniP.BarbarinPaul A. BarbarinPaul Adolf BarbarinPaul Adolf BarberianPaul Adolp BarbarianPaul Adolph BarbarianPaul Adolph BarbarinPaul BabarinPaul BarbarainPaul BarbarianPaul BarberinPaul-BarbarinPoul BarbarinS. BarbarinSid BarbarianSid. BarbarianПол БарбаринKing Oliver & His Dixie SyncopatorsLouis Armstrong And His OrchestraKing Oliver's Jazz BandLouis Armstrong And His Savoy Ballroom FivePaul Barbarin And His OrchestraPaul Barbarin And His Jazz BandKing Oliver & His OrchestraLuis Russell And His OrchestraHenry "Red" Allen And His OrchestraDanny Barker's Fly CatsThomas Jefferson And His Creole Jazz BandPaul Barbarin's New Orleans StompersWaldren "Frog" Joseph And His New Orleans Jazz BandLouis Cottrell And His New Orleans Jazz BandNew Orleans Red Beans + +307380Bert CurryBernadine CurryAmerican jazz alto saxophonist + +nephew of [a=Glyn Paque]Needs VoteB. CurryBert CurrieLouis Armstrong And His OrchestraCarroll Dickerson's SavoyagersCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +307382Lawrence LucieAmerican jazz guitarist and arranger. +Born : December 18, 1907 in Emporia, Virginia. +Died : August 14, 2009 in New York City, New York. + +Played with : Duke Ellington, Benny Carter, Fletcher Henderson, "Mills Blue Rhythm Band", Coleman Hawkins, Louis Armstrong, Teddy Wilson, Billie Holiday, Jelly Roll Morton and many others. +He died at age 101. +Needs Votehttps://en.wikipedia.org/wiki/Lawrence_Luciehttp://archives.nypl.org/scm/22273https://www.freddiegreen.org/interviews/lawrencelucie.htmlhttps://adp.library.ucsb.edu/names/107311L. LucieL. LuiciL. LuicieL. WinifredLarrie LucieLarryLarry LucieLarry LucyLarry LuiceLarry LuicieLaurence LucieLauwrence LucieLawrence "Larry" LucieLawrence 'Larry' LucieLawrence (Larry) LucieLawrence Larry LucieLawrence LucyLucieLucie LawrenceLurence LucieR. LucieWinifredBillie Holiday And Her OrchestraLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesTeddy Wilson And His OrchestraColeman Hawkins And His OrchestraSpike Hughes And His Negro OrchestraJelly Roll Morton's New Orleans JazzmenColeman Hawkins' All Star OctetHenry "Red" Allen And His OrchestraLouie Bellson Big BandThe Mills Blue Rhythm BandThe Harlem Blues & Jazz BandPutney Dandridge And His Swing BandPete Johnson & His Boogie Woogie BoysChu Berry And His Stompy StevedoresLarry Lucie OrchestraPutney Dandridge And His OrchestraLarry And LenoreLarry Lucie and the LeprechaunsLarry Lucie ComboLarry & The LeprechaunsLarry And Nora Lee + +307384Herb QuigleyJazz age drummer.Needs VoteH. QuigleyFrankie Trumbauer And His OrchestraJean Goldkette And His OrchestraJack Teagarden And His OrchestraPaul Whiteman And His OrchestraJoe Venuti And His New Yorkers + +307385Lester BooneAmerican jazz saxophonist (alto) and clarinetist. +Played with : Charlie Elgar, Carroll Dickerson, Earl Hines, Jerome Carrington, Louis Armstrong, Kaiser Marshall, Jelly Roll Morton and many others. + +Born : August 12 (or) December 08, 1904 in Tuskegee, Alabama. +Died : 1989 - . +Needs Votehttps://adp.library.ucsb.edu/names/111194L. BooneLes BooneBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraEarl Hines And His OrchestraHarry Dial And His BlusiciansZilner Randolph And His Orchestra + +307389Les HiteAmerican alto saxophonist and bandleader, born February 13, 1903 in DeQuoin, Illinois, died February 6, 1962 in Santa Monica, California. +Played with bands in Los Angeles in the 1920s, including those of [a=Mutt Carey] and [a=Curtis Mosby]. Assumed leadership of [a=Paul Howard's Quality Serenaders] in 1930. It recorded as [a=Louis Armstrong And His Sebastian New Cotton Orchestra] in 1930-1932 and as [a=Les Hite And His Orchestra]. The orchestra disbanded in 1945, when Hite retired from bandleading.Needs Votehttps://adp.library.ucsb.edu/names/110538Charles HiteHateHiteL. HiteLes Hite-RegentLes HitesLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His OrchestraReb's Legion Club Forty-Fives + +307390Arville HarrisArville S. HarrisAmerican jazz saxophonist and clarinetist, nicknamed "Bunky", born 1904 in St. Louis, Missouri, died 1954 in New York City, New York. +Brother of [a=Leroy Harris (2)].Needs Votehttps://en.wikipedia.org/wiki/Arville_Harrishttps://adp.library.ucsb.edu/names/114223A. HarrisArville HarisHarrisCab Calloway And His OrchestraKing Oliver & His Dixie SyncopatorsFletcher Henderson And His OrchestraClarence Williams' Blue FiveKing Oliver's Jazz BandFats Waller And His BuddiesCab Calloway And His Cotton Club OrchestraClarence Williams And His OrchestraJelly Roll Morton And His OrchestraClarence Williams' Jazz Kings + +307391Andy SecrestAmerican jazz cornetist and trumpeter. +Played with : Hoagy Carmichael, jean Goldkette, Paul Whiteman, Frank Trumbauer, Bix Beiderbecke and others. + +Born : August 02, 1907 in Muncie, Indiana. +Died : August 31, 1977 in California. + +Needs Votehttps://www.allmusic.com/artist/andy-secrest-mn0000738572/biographyhttps://adp.library.ucsb.edu/names/110613A. SecrestAndy SiegristFrankie Trumbauer And His OrchestraJean Goldkette And His OrchestraPaul Whiteman And His OrchestraEddie Lang's OrchestraJohn Scott Trotter And His OrchestraHoagy Carmichael And His PalsThe Mason-Dixon OrchestraLarry Russell's Orchestra + +307392Fred GuyAmerican jazz banjo and guitar player, born May 23, 1897 in Burkeville, Virginia, died November 22, 1971 in Chicago, Illinois. +Guy spent most of his musical career with [a=Duke Ellington], from 1925 to 1949, when he retired to work as manager of a ballroom in Chicago. +Needs Votehttps://en.wikipedia.org/wiki/Fred_Guyhttps://www.allmusic.com/artist/fred-guy-mn0000106465https://www.imdb.com/name/nm1334143/http://amodernist.blogspot.com/2011/04/ellingtonia-fred-guy-1946.htmlhttps://ellingtonreflections.com/2019/04/07/portrait-of-fred-guy-podcast-19-0007/https://adp.library.ucsb.edu/names/102900F. GuyF.G.Fred GayFreddie GuyFreddy GuyGred GuyGuyФред ГайDuke Ellington And His OrchestraCootie Williams & His Rug CuttersThe Whoopee MakersDuke Ellington And His Cotton Club OrchestraDuke Ellington And His Kentucky Club OrchestraThe WashingtoniansBarney Bigard And His OrchestraThe Duke's MenThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsEarl Jackson And His Musical ChampionsJohnny Hodges And His OrchestraSonny Greer And The Duke's MenIvie Anderson And Her Boys From DixieThe Memphis Hot ShotsBarney Bigard And His JazzopatersThe Harlem Music MastersDuke Ellington's Philadelphia Melodians + +307393Clarence WilliamsAmerican jazz pianist, composer, promoter, vocalist, theatrical producer, and publisher +Born 8 October 1898 in Plaquemine, Louisiana +Died 6 November 1965 in Queens, New York City + +Williams ran away from home at age 12 to join Billy Kersand's Traveling Minstrel Show, then moved to New Orleans. At first Williams worked shining shoes and doing odd jobs, but soon became known as a singer and master of ceremonies. By the early 1910s he was a well regarded local entertainer also playing piano, and was composing new tunes by 1913. Williams was a good business man and worked arranging and managing entertainment at the local African-American vaudeville theater as well as various saloons and dance halls around Rampart Street, and clubs and houses in Storyville. + +Williams started a music publishing business with violinist/bandleader Armand J. Piron 1915, which by the 1920s was the leading African-American owned music publisher in the country. He toured briefly with W.C. Handy, set up a publishing office in Chicago, then settled in New York in the early 1920s. In 1921, he married blues singer and stage actress [a307434] with whom he would frequently perform. He supervised African-American recordings (the 8000 Race Series) for New York offices of Okeh phonograph company in the 1920s in the Gaiety Theatre office building in Times Square. He recruited many of the artists who performed on that label. He also recorded extensively, leading studio bands frequently for OKeh, Columbia and occasionally other record labels. + +He mostly used "Clarence Williams' Jazz Kings" for his hot band sides and "Clarence Williams' Washboard Five" for his washboard sides. He also produced and participated in early recordings by Louis Armstrong, Sidney Bechet, Bessie Smith, Virginia Liston, Irene Scruggs, and many others. King Oliver played cornet on a number of Williams' late 1920s recordings. He was the recording director for the short-lived QRS Records label in 1928. + +Most of his recordings were songs from his publishing house, which explains why he recorded tunes like "Baby Won't You Please Come Home", "Close Fit Blues" and "Papa De-Da-Da" numerous times. + +In 1933, he signed to the Vocalion label and recorded quite a number of popular recordings, mostly featuring washboard percussion, through 1935. + +In 1943 Williams sold his extensive back-catalogue of tunes to Decca Records for $50,000 and retired, but then bought a bargain used goods store. Williams died in Queens, New York City in 1965 and was interred in Saint Charles Cemetery in Farmingdale, Long Island, New York. On her death in 1977, his wife was interred next to him. Their grandson is [a=Clarence Williams III]. + +Clarence Williams' name appears as composer or co-composer on numerous tunes, including a number which by Williams' own admission were written by others but which Williams bought all rights to outright, as was a common practice in the music publishing business at the time. Clarence Williams hits include "I Wish I Could Shimmy Like My Sister Kate" (as publisher - not composer), "Baby Won't You Please Come Home", "Royal Garden Blues", "Tain't Nobody's Business If I Do", "Shout, Sister, Shout" and many others. In 1970, Williams was posthumously inducted into the Songwriters Hall of Fame. +Needs Votehttp://en.wikipedia.org/wiki/Clarence_Williams_%28musician%29https://www.songhall.org/profile/Clarence_Williamshttp://jazzhotbigstep.com/24306.htmlhttps://www.scaruffi.com/jazz/cwilliam.htmlhttps://www.naxos.com/person/Clarence_Williams_20074/20074.htmhttps://riverwalkjazz.stanford.edu/?q=program/gulf-coast-blues-clarence-williams-storyhttps://www.imdb.com/name/nm0930293/https://adp.library.ucsb.edu/names/103691A. WilliamsA.C. WilliamsAce:Clarence WilliamsC WilliamsC, WilliamsC-. WilliamsC.C. WilliamsC. & S. WilliamsC. WiliamsC. WilliamC. WilliamsC.I. WilliamsC.S. WilliamsC.WilliamsCh. WilliamsCharence WilliamsCharles WilliamsCharles WilliansCl WilliamsCl. WilliamsClarance WilliamClarance WilliamsClarena WilliamsClarenceClarence / WilliamsClarence W.Clarence Wendel WilliamsClarence WilliamClarence Williams And His HarmonizersClarence Williams's OrchestraClarence Williams-FrankClarence-WilliamsClarence/WilliamsClarrence WilliamsClearence WilliamsD. WilliamsG. WilliamsH. Williams, Jr.J. WilliamsM. WilliamsO. WilliamsS. & C. WilliamsS. WilliamsW. ClarenceW. WilliamsWIlliamsWiliamsWiliiamsWilliamWilliamaWilliamsWilliams C.Williams ClarenWilliams ClarenceWilliams, C.Williams, ClarenceWillianmsd. WilliamswilliamsВильямсК. УильямсКларенс УильямсMose (8)King Oliver & His Dixie SyncopatorsClarence Williams' Novelty FourClarence Williams' Blue FiveClarence Williams' Swing BandClarence Williams' Blue SevenGeorge McClennon's Jazz DevilsWilliams' Washboard BandHarlem TrioClarence Williams And His OrchestraClarence Williams' TrioAlabama Jug BandClarence Williams' Jug BandClarence Williams' Jazz KingsBessie Smith And Her Down Home TrioDixie Washboard BandClarence Williams' Harmonizing FourThe King Bechet TrioJamaica JazzersThe Down Home TrioLazy Levee LoungersClarence Williams And His BandClarence Williams StompersBlue Grass Foot WarmersClarence Williams' Morocco FiveMemphis JazzersJoe Jordan's Ten Sharps & FlatsBirmingham SerenadersClarence Williams And His Bottomland OrchestraClarence Williams' Washboard FourClarence Williams' Washboard FiveHam and Cabbage TrioClarence Williams Jazz BandThe RiffersClarence Williams And His Blue MoanersClarence Williams Rhythm KingsClarence And Spencer Williams + +307398Teddy HillTheodore HillAmerican saxophonist, band leader, and nightclub manager. + +b. December 9, 1909 (Birmingham, AL, USA) +d. May 19, 1978 (Cleveland, OH, USA) + +Started out playing with George Howe ('27), [a=Luis Russell] ('28-29), and [a=James Price Johnson] ('32). From '32 he began to regularly lead his own band, which at times included sidemen such as [a=Leon "Chu" Berry], [a=Dizzy Gillespie], and [a=Frank Newton]. From 1940 he gave up leading to become manager of Minton's Playhouse, Harlem. He left there in 1969 to become manager of Club Baron, Harlem. +Needs Votehttps://en.wikipedia.org/wiki/Teddy_Hillhttps://www.britannica.com/biography/Teddy-Hill.https://www.allmusic.com/artist/teddy-hill-mn0000014064/biographyhttps://www.jazzdisco.org/teddy-hill/catalog/https://adp.library.ucsb.edu/names/106446Elson HillHillHillsT. HillTeddy TillLouis Armstrong And His OrchestraLouis Armstrong And His Savoy Ballroom FiveKing Oliver & His OrchestraLuis Russell And His OrchestraHenry "Red" Allen And His OrchestraTeddy Hill OrchestraTeddy Hill And His Big BandTeddy Hill's BandTeddy Hill And His NBC OrchestraFrank Bunch & His Fuzzy Wuzzies + +307399Sippie WallaceBeulah ThomasAmerican blues singer. Sister of [a1601337] and [a353519], aunt of [a1194999]. +Born : November 01, 1898 in Plum Bayou, Arkansas. +Died : November 01, 1986 in Detroit, Michigan. +Needs Votehttps://en.wikipedia.org/wiki/Sippie_Wallacehttps://beta.musicbrainz.org/artist/ac4c191a-92cf-4def-9a48-8635429edb96https://adp.library.ucsb.edu/names/106281Beulah "Sippie" WallaceS. B. WallaceS. WallaceSappier WallaceSipper WallaceSippi WallaceSippie ThomasSippy WallaceSkippie WallaceThomasWallaceWallace SippieSippie Thomas + +307401Joe TartoVincent Joseph TortorielloAmerican jazz bassist, arranger and tuba player. +Played with: Cliff Edwards, Sam Lanin, Vincent Lopez, Joe Venuti, Red Nichols, Miff Mole, Dorsey Brothers, Bix Beiderbecke, Phil Napoleon, Eddie Lang and many others. +Arranged for Chick Webb and Fletcher Henderson. + +Born: February 22, 1902 in Newark, New Jersey. +Died: August 24, 1986 in Morristown, New Jersey. +Needs Votehttps://en.wikipedia.org/wiki/Joe_TartoJ. TartoJoe TarboJoe TartTartoJoe Venuti's Blue FourEddie Lang's OrchestraMiff Mole's MolersIrving Mills And His Hotsy Totsy GangThe Al Duffy FourThe Charleston ChasersJoe Venuti And His New YorkersThe Broadway SyncopatersRega Dance OrchestraJohnny Sylvester & His PlaymatesJohnny Sylvester & His OrchestraBroadway Bell Hops + +307402Valaida Snow"Queen of the Trumpet" +US trumpet player and jazz singer, composer and arranger. Her place and date of birth was deliberately blurred by her own statements during her show business career, but has been established (by Mark Miller per her birth records and April 1910 US census) as June 2, 1904, in Chattanooga, Tennessee. After some success in the US she embarked on various world wide tours including appearances in Shanghai, Batavia, Singapore and Calcutta in the late 1920s, Europe in 1929/30, and Europe again in the late 1930s, ending up in nazi occupied Denmark in 1941. Reports on her time in Europe during the first two years of WWII are contradictory. Some reports say she was a war prisoner in a Copenhagen, others that she was detained by Danish authorities to keep her safe from the German occupiers and others claim she was simply imprisoned on drug charges. She returned to the US in april 1942 via Sweden. +Back in the US she continued to work but died in the Palace Theater in New York on May 30, 1956 from a massive cerebral hemorrhage. + + Needs Votehttps://en.wikipedia.org/wiki/Valaida_Snowhttp://facius-homepage.dk/jazz/snow/snow.htmlhttps://books.discogs.com/credit/717333-valaida-snowMiss ValaidaMiss Valaida SnowSnowValaidaValaida (Queen Of The Trumpet)Valeida (Queen Of The Trumpet)Valinda SnowEarl Hines And His OrchestraValaida Snow And Her Orchestra + +307404Edgar SampsonEdgar Melvin SampsonEdgar "The Lamb" Sampson (Born: 31 October 1907 in New York City, USA; died: January 16, 1973, Englewood, New Jersey). +American jazz saxophone player, arranger and composer. +Father of [a1168176].Needs Votehttps://en.wikipedia.org/wiki/Edgar_Sampsonhttps://www.vjm.biz/vjm-192-lullaby-in-rhythm--.pdfhttps://www.allmusic.com/artist/edgar-sampson-mn0000181398/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/107270/Sampson_EdgarB. SampsonC. SampsonCSampsonDampsonE SampsonE. M. SampsonE. SampsonE. SamsonE. SempsonE. SimpsonE.M. SampsonE.SampsonE.ShampsonELSEdg. SampsonEdgarEdgar - SampsonEdgar H. SampsonEdgar M. SampsonEdgar Melvin SampsonEdgar SampsoEdgar SamsonEdgar SamsponEdgar SimpsonEdgar W. SampsonEdgard SampsonEdward SampsonG. SampsonL. SampsonM. E. SampsonM. SampsonRampsonS SampsonSambsonSampsomSampsonSampson, E.M. (Melvin)SamsonSamsponSantsonSimpsonW. SampsonСэмпсонЭ. СэмпсонBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraLionel Hampton And His OrchestraFletcher Henderson And His Connie's Inn OrchestraTeddy Wilson And His OrchestraChick Webb And His OrchestraConnie's Inn OrchestraCharlie Johnson & His OrchestraBunny Berigan And His Blue BoysCharlie Johnson & His Paradise BandDick Porter And His OrchestraEdgar Sampson And His Orchestra + +307406Henry PrincePianistNeeds VoteHenry PriceJimmie PrinceJimmy PrinceLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His Orchestra + +307408Sleepy John EstesJohn Adam EstesAmerican blues singer & guitarist. +born 25 January 1899 in Ripley, Lauderdale County, Tennessee. +died: 5 June 1977 in Brownsville, Haywood County, Tennessee. + +Estes made his debut as a recording artist in Memphis in 1929, at a session organized by [a900371] for Victor Records. He later recorded for the Decca and Bluebird labels, with his last pre-war recording session taking place in 1941. He made a brief return to recording at Sun Studio in Memphis in 1952, recording "Runnin' Around" and "Rats in My Kitchen," but otherwise was largely out of the public eye for two decades. + +Though only modestly skilled as a guitarist (he was frequently teamed with more capable musicians, like [a307162], [a307450], and the piano player [a516933]), Estes was a fine singer, with a distinctive "crying" vocal style. He sounded so much like an old man, even on his early records, that blues revivalists reportedly delayed looking for him because they assumed he would have to be long dead, and because fellow musician [a307270] had written that Estes had died. By the time he was tracked down, by [a319451] and [a666121] in 1962, he had become completely blind and was living in abject poverty. He resumed touring and recording, though his later records are generally considered less interesting than his pre-war output. +Needs Votewww.wirz.mobi/music/estes.htmhttps://en.wikipedia.org/wiki/Sleepy_John_Esteshttps://web.archive.org/web/20080605192435/http://www.7digital.com/stores/ArtistBiography.aspx?shop=122&masterartist=2859https://adp.library.ucsb.edu/names/104491"Sleepy John" Estes"Sleepy" John A. Estes"Sleepy" John Adam Estes"Sleepy" John Adams Estes"Sleepy" John Estes'Sleepy' John EstesEsteEstesEsteseF. J. EstesFrom J Estes OriginalJ EstesJ. A. EstesJ. ESTESJ. EsterJ. EstesJ.A. EstesJ.EstesJohn 'Sleepy' EstesJohn Adam 'Sleepy' EstesJohn Adam EstesJohn Adams EstesJohn EstesJohna A. EstesS. EstesS. J. EstesS. John EstesS.J. EstesS.J.EstesSleep John EstesSleepy J. EstesSleepy Joe EstesSleepy John EsterSleepy John EstezSt. John EstesThe Original “Sleepy John” Estesj. Estes“Sleepy John„ Estesスリーピー・ジョン・エスティスThe Delta BoysNoah Lewis's Jug BandYank Rachell And His Tennessee Jug-Busters + +307409Mildred BaileyMildred Rinker American jazz singer and band leader, born February 27, 1907, Tekoa, Washington, USA - died December 12, 1951, Poughkeepsie, New York, USA. +She started her career 1929 in the orchestra of [a=Paul Whiteman] where she met her later husband [a=Red Norvo].Needs Votehttps://en.wikipedia.org/wiki/Mildred_Baileyhttps://www.britannica.com/biography/Mildred-Baileyhttps://biography.yourdictionary.com/mildred-baileyhttps://www.imdb.com/name/nm3072906/https://adp.library.ucsb.edu/names/103960B.R. MildredBaileyBailey MildredM. BaileyMildred Bailey & EnsembleMildred Bailey & OthersMildred Bailyミルドレッド・ベイリーFrankie Trumbauer And His OrchestraBenny Goodman And His OrchestraMildred Bailey And Her Swing BandMildred Bailey And Her Oxford GreysMildred Bailey And Her OrchestraMildred Bailey And Her Alley Cats + +307410Gene Anderson (2)Early jazz pianist.Needs VoteG. AndersonGene AndresonLouis Armstrong And His OrchestraCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy Orchestra + +307411Teddy BunnTheodore Leroy Bunn.American jazz guitarist and singer. + +Born : 1909 in Freeport, New York. +Died : July 20, 1978 in Lancaster, California. +Needs Votehttps://en.wikipedia.org/wiki/Teddy_Bunnhttps://adp.library.ucsb.edu/names/103512BunnT BunnT. BunnTheodore "Teddy" BunnTheodore BunnTheodore LeRoy BunnТ. БаннDuke Ellington And His OrchestraThe Spirits Of RhythmTommy Ladnier And His OrchestraMezz Mezzrow And His OrchestraSidney Bechet QuintetMezzrow-Ladnier QuintetBill Moore's Lucky Seven BandSidney Bechet's Blue Note QuartetLadnier-Mezzrow All-StarsMilt Herth QuartetPort Of Harlem JazzmenThe Washboard SerenadersThe Five CousinsJ.C. Higginbotham QuintetJimmie Noone And His OrchestraFrank Newton QuintetJimmy Johnson And His BandJohnny Dodds And His Chicago BoysTeddy Bunn QuartetHot Lips Page TrioThe Angels Of JumpPort Of Harlem Seven + +307412Johnny DunnAmerican jazz cornetist/trumpeter. +Born: February 19, 1897 in Memphis, Tennessee. +Died: August 20, 1937 in Paris, France. + +Worked with Perry Bradford, Mamie Smith, Noble Sissle, Jelly Roll Morton, James P. Johnson, Fats Waller and others. +Needs Votehttps://en.wikipedia.org/wiki/Johnny_Dunnhttps://grammophon-platten.de/print.php?plugin:jokes_menu.9https://adp.library.ucsb.edu/names/109950DunnJ. DunnJohnnie DunnJohny DunnMamie Smith And Her Jazz HoundsPerry Bradford Jazz PhoolsJohnny Dunn's Original Jazz HoundsThe Plantation OrchestraMamie Smith & Her Jazz BandJohnny Dunn And His Jazz BandJohnny Dunn And His Band + +307413Bennie PayneBenjamin E. PayneAmerican jazz pianist and singer, born June 18, 1907 in Philadelphia, PA, USA, died September 2, 1986 (Los Angeles, CA, USA. +Payne began performing professionally in 1926 and played with [a=Wilbur Sweatman]'s band in 1928. He recorded duets with [a=Fats Waller], who also tutored him, in 1929. From 1929 to 1931 he performed in touring shows and accompanied [a=Elisabeth Welch] and [a=Gladys Bentley]. From 1931 to 1943 (when he had to join the army), he was [a=Cab Calloway]'s pianist. When discharged from the army, he worked with Calloway again until 1946. Thereafter he worked with [a=Pearl Bailey], [a=Billy Daniels], and led his own trio. +Needs Votehttps://www.allmusic.com/artist/benny-payne-mn0000160767https://wbssmedia.com/artists/detail/1327https://www.imdb.com/name/nm0668265/https://adp.library.ucsb.edu/names/104121https://adp.library.ucsb.edu/names/207745B. PaineB. PayneB.PayneBennie PaineBennie RayneBenny PaineBenny PayneBernie PainePainePayneБ. ПейнCab Calloway And His OrchestraDuke Ellington And His OrchestraCab Calloway And His Cotton Club OrchestraChu Berry And His Stompy Stevedores + +307414Adelaide HallAdelaide Louise HallAmerican-born British jazz singer and entertainer, a jazz improviser whose wordless rhythms ushered in what became known as scat singing. She became the most celebrated black female performer in America in the 1920s. Her recording career spans 8 decades, from 1927 to 1991. + +* 20 October 1901 in Brooklyn, New York, USA +† 7 November 1993 in London, England, UK +Needs Votehttp://www.myspace.com/adelaidehallhttp://en.wikipedia.org/wiki/Adelaide_Hallhttps://adp.library.ucsb.edu/names/106655A. HallAHAdelaida HallAdelaide Hall (The Crooning Blackbird)Adelaine HallAdelaïde HallHallDuke Ellington And His Orchestra + +307416Greely WaltonAmerican jazz tenor and baritone saxophonist. He first played violin, and studied music at the University of Pittsburgh. Born Oct 4, 1905 in Mobile, Alabama, died Oct. 9, 1993 in New YorkNeeds Votehttp://oxfordindex.oup.com/view/10.1093/gmo/9781561592630.article.J471500https://en.wikipedia.org/wiki/Greely_Waltonhttps://adp.library.ucsb.edu/names/112490G. WaltonGreeley WaltonGreely WatsonWaltonCab Calloway And His OrchestraLouis Armstrong And His OrchestraCootie Williams And His OrchestraKing Oliver & His OrchestraLuis Russell And His OrchestraJack Purvis And His Orchestra + +307417Wardell JonesAmerican jazz trumpeter. Born ca 1905. Nickname: "Preacher" Needs Votehttps://en.wikipedia.org/wiki/Wardell_JonesJonesBaron Lee And The Blue Rhythm BandThe Mills Blue Rhythm Band + +307419Barney BigardAlbany Leon BigardAmerican jazz clarinetist, tenor & alto saxophonist and composer, born March 03, 1906 in New Orleans, Louisiana, died June 27, 1980 in Culver City, California. + +Bigard studied clarinet as a youth in New Orleans with Papa Tio & [a=Lorenzo Tio], He first became known as a tenor saxophonist. +After playing in several groups in his hometown, he moved to Chicago where he played with [a=King Oliver] from 1925 until 1927. Chicago also found him working with such greats as [a=Jelly Roll Morton], [a=Johnny Dodds] & [a=Louis Armstrong]. By the end of 1927 he found his place with [a=Duke Ellington And His Orchestra], playing almost exclusively as a clarinetist. +Between 1927 & 1942 as a member of The Ellington Orchestra, he was featured on many of Ellington's classic recordings. [url=http://www.discogs.com/Duke-Ellington-And-His-Cotton-Club-Orchestra-Mood-Indigo-When-A-Black-Mans-Blue/release/4800892]"Mood Indigo"[/url] which Bigard co-composed, was perhaps the most successful of his compositions. His later work was varied and included membership between 1947 & 1955 with [a=Louis Armstrong And His All-Stars].Needs Votehttps://en.wikipedia.org/wiki/Barney_Bigardhttps://www.imdb.com/name/nm0081708/https://riccardofacchi.wordpress.com/2019/08/26/barney-bigard-alla-corte-del-duca/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1352475268f26b03245177b5b2fb1e7f646b4/biographyhttps://adp.library.ucsb.edu/names/103206A BigardA, BigardA. B. BigardA. BIgardA. BigardA. Leon BigardA.. B. BigardA.B. BigardA.BigardAlbany "Barney" BigardAlbany 'Barney' BigardAlbany BegardAlbany BigardAlbany BiggersAlbany Gotham BigardAlbany Leon BigardAlbany, BigardAlbary BigardB BigardB, BigardB. BigardB. BigartB. BiggardB.BigardBBBIgardBarnard BigardBarnet BigardBarneyBarney BigarBarney BigartBarney BigerdBarney-BigardBarry BigardBegardBerney BigardBicardBigarBigardBigardsBigaroBigartBigaudBigerdBiggardBigradBihardBizardBugardDigardG. BigardL.A. BigardLeon "Barney" BigardLeon Albany "Barney" BigardRigardThomas WallerVigardБ. БигардБарни БигардKing Oliver & His Dixie SyncopatorsDuke Ellington And His OrchestraColeman Hawkins All Star BandEsquire All StarsCootie Williams & His Rug CuttersLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersLouis Armstrong And His All-StarsKing Oliver's Jazz BandLouis Armstrong And His Dixieland SevenLuis Russell's Heebie Jeebie StompersJelly Roll Morton TrioDuke Ellington And His Cotton Club OrchestraJack Teagarden And His Big EightSy Oliver And His OrchestraZutty Singleton's Creole BandBarney Bigard And His OrchestraZutty Singleton's TrioRex Stewart And His OrchestraThe Duke's MenThe Capitol International JazzmenThe Harlem FootwarmersColeman Hawkins Swing FourThe Jungle Band (2)Rex Stewart And His FeetwarmersJohnny Dodds' Black Bottom StompersJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersJelly Roll Morton And His OrchestraLouis Armstrong And His Hot SixThe Barney Bigard TrioSonny Greer And The Duke's MenBarney Bigard SextetDuke Ellington's Hot FiveBenny Morton's All StarsBarney Bigard / Art Hodes All Star StompersThe Gotham StompersBarney Bigard QuintetThe Capitol JazzmenIvie Anderson And Her Boys From DixieThe Gulf Coast SevenRex Stewart's Big SevenBarney Bigard QuartetRussell's Hot SixMetropolitan Opera House Jam SessionCrystalette All StarsBarney Bigard And His JazzopatersThe Harlem Music MastersEarl "Fatha" Hines All Stars QuintetEsquire All-American Jazz BandEarl "Fatha" Hines All Stars Quartet + +307421Hayes AlvisHayes Julian AlvisJazz bassist and tuba player, born 1 May 1907 in Chicago, Illinois, died 29 December 1972 in New York City. +Alvis worked with [a=Jelly Roll Morton] 1927-1928, [a=Earl Hines] 1928-1930, [a=Jimmie Noone] 1931, [a=The Mills Blue Rhythm Band] 1931-1934, 1936), [a=Duke Ellington] 1935-1938, [a=Benny Carter] 1939-1940, [a=Joe Sullivan] 1940, 1942, [a=Louis Armstrong] 1940-1942, in an army band led by [a=Sy Oliver] 1943-1945, and pianist Dave Martin 1946-1947. After long-term engagement as house musician at the Café Society in New York, worked as freelance. In 1970 toured and recorded in Europe with [a=Jay McShann] and [a=Tiny Grimes].Needs Votehttp://en.wikipedia.org/wiki/Hayes_Alvishttps://adp.library.ucsb.edu/names/108554AlvisH. AlvisHayer AlvisDuke Ellington And His OrchestraCootie Williams & His Rug CuttersLouis Armstrong And His OrchestraEarl Hines And His OrchestraBenny Carter And His OrchestraLeonard Feather All StarsWilbur De Paris And His New New Orleans JazzBaron Lee And The Blue Rhythm BandJohnny Hodges And His OrchestraRex Stewart And His 52nd Street StompersJoe Marsala And His Delta SixChris Barber's American Jazz BandThe Mills Blue Rhythm BandBernard Addison All StarsHarry Dial And His BlusiciansIvie Anderson And Her Boys From DixieDixie Rhythm Kings + +307422DePriest WheelerDePriest E. B. WheelerAmerican jazz trombonist. + +Born : 1903 in Kansas City, Missouri. +Died : April 10, 1998 in St. Albans, New York. +Needs Votehttps://adp.library.ucsb.edu/names/115457D, WheelerD. P. WheelerDe Priess WheelerDe Priest WheelerDePreist WheelerDePriestDePrieste WheelerDo Priest WheelerWheelerCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraCab Calloway And His Cotton Club OrchestraThe Missourians + +307425Johnny DoddsAmerican jazz & blues clarinetist, born 12 April 1892, he grew up in New Orleans. +Largely self taught, Dodds gained valuable early experience with such legendary bands as the Eagle and the Tuxedo. Years (ca.)1911 to 1916 found him working with trombonist [a307207]. By 1920 he had moved north to Chicago to join celebrated [a309966]. His first recordings came with this band in 1923, followed by a concentrated period before the great Depression which included recordings with [a253858] and with [a317883]. +With the economic collapse of 1928, and Dodds, not shifting to New York as did many of his contemporaries, was no longer playing in the spotlight. Remaining in Chicago he recorded just a few sides in the 1930's and died of a cerebral hemorrhage in 1940. + +He was brother of the jazz drummer [a326791], and also played alto & soprano saxophone + +Born : April 12, 1892 in Waveland, Mississippi. +Died : August 08, 1940 in Chicago, Illinois. +Needs Votehttps://www.britannica.com/biography/Johnny-Doddshttps://en.wikipedia.org/wiki/Johnny_Doddshttp://www.redhotjazz.com/jdodds.htmlhttps://riverwalkjazz.stanford.edu/?q=program/melancholy-blues-clarinetist-johnny-doddshttps://www.treccani.it/enciclopedia/johnny-dodds/https://adp.library.ucsb.edu/names/103887DoddsJ. DoddsJ. DoodsJ.D.John DoddsJohnnie DoddsJohnny DoddJohnny Dodds GroupJohnny DodgeJohnny DoodsJohnny DosJohnny Johnny DoddsJohny DoddsJonny DoddsДж. ДоддсKing Oliver & His Dixie SyncopatorsLouis Armstrong & His Hot FiveKing Oliver's Creole Jazz BandNew Orleans WanderersLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersKing Oliver's Jazz BandJelly Roll Morton TrioLil's Hot ShotsJohnny Dodds Washboard BandChicago FootwarmersState Street RamblersDixieland Jug BlowersLovie Austin's Blues SerenadersJohnny Dodds' Black Bottom StompersBeale Street Washboard BandLouis Armstrong And His Hot FourNew Orleans BootblacksJimmy Bertrand's Washboard WizardsFreddie Keppard's Jazz CardinalsBlythe's Washboard BandJimmy Blythe And His RagamuffinsBlythe's Washboard RagamuffinsJunie Cobb's Hometown BandDixie-Land ThumpersJimmy Blythe's OwlsJohnny Dodds TrioJohnny Dodds' Hot SixJimmy Blythe's Washboard WizardsIda Cox And Her Five Blue SpellsJohnny Dodds OrchestraJohnny Dodds And His OrchestraParamount PickersJasper Taylor's State Street BoysJohnny Dodds And His Chicago BoysJasper Taylor's 'Original Washboard Band' + +307431Shelton HemphillAmerican jazz trumpeter. + +b. March 16, 1906 (Birmingham, AL, USA) +d. December, 1959 (New York City, NY, USA) + +Studied at Wilberforce College and played with [a=Horace Henderson]'s Collegians (1924-28). Went on to play with [a=Fred Longshaw]'s band supporting [a=Bessie Smith] ('24-25), then [a=Benny Carter] ('28-29), [a=Chick Webb] ('30-31), [a=Mills Blue Rhythm Band] ('31-37), [a=Louis Armstrong] ('37-44), and [a=Duke Ellington] ('44-49). He freelanced in New York City for a while from 1949 onwards but retired from playing due to poor health. +Needs Votehttps://en.wikipedia.org/wiki/Shelton_Hemphillhttps://www.allmusic.com/artist/shelton-hemphill-mn0000118174/biographyhttps://www.imdb.com/name/nm0376167/https://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-2000197700http://www.worldcat.org/identities/viaf-66653479/https://wikivisually.com/wiki/Shelton_Hemphillhttps://adp.library.ucsb.edu/names/204407HemphillS. HemphillScad HemphillScat HemphillSheldon HemphillShelton "Scad" HemphillDuke Ellington And His OrchestraLouis Armstrong And His OrchestraChick Webb And His OrchestraBaron Lee And The Blue Rhythm BandThe Mills Blue Rhythm BandEdgar Hayes And His Orchestra + +307432Red McKenzieWilliam McKenzieRed McKenzie (born October 14, 1899, St. Louis, Missouri, USA - died February 7, 1948, New York City, New York, USA) was an American jazz musician, singer and bandleader. Red worked with [a357514] members, [a299946], [a325858] and many others, as well as recording under his own name. + +Needs Votehttp://en.wikipedia.org/wiki/Red_McKenziehttps://adp.library.ucsb.edu/names/109742"Red" McKenzieMc KenzieMcKensieMcKenzieMcKessieMckenzieR. Mc. KenzieR. McKenzieRed Mac KenzieRed MacKenzieRed MackenzieRed Mc KenzieWilliam "Red" McKenzieWilliam 'Red' McKenzieMcKenzie & Condon's ChicagoansRed McKenzie & His Music BoxThe Mound City Blue BlowersMcKenzie's Candy KidsRed McKenzie And The Celestial BeingsChicago Rhythm KingsJungle Kings (2)Red McKenzie And His Rhythm Kings + +307433Otto LandauNeeds VotePaul Whiteman And His Orchestra + +307434Eva TaylorIrene GibbonsAmerican blues singer and stage actress. +Born 22 June 1895 in St. Louis, Missouri, USA. +Died 31 October 1977 in Mineola, New York, USA. +Performing from the age of 3 on, she settled in New York by 1920. Then a nightspot regular in Harlem, she married producer, publisher, & piano player [a307393]. +Grandmother of [a=Clarence Williams III].Needs Votehttps://en.wikipedia.org/wiki/Eva_Taylorhttps://www.imdb.com/name/nm0852352/https://adp.library.ucsb.edu/names/105606E. TaylorEva Taylor (Queen Of The Moaners)Eva Taylor WilliamsTaylorThe Legendary Eva TaylorIrene GibbonsIrene Williams (3)Eva Taylor And Her Boy FriendsEva Taylor's SouthernairesEva Taylor And Her Anglo-American Boyfriends + +307435Cuba AustinAmerican jazz drummer. +Born 1906 in Charleston, WV, USA, died 1961 +Needs Votehttps://en.m.wikipedia.org/wiki/Cuba_Austinhttps://www.allmusic.com/artist/cuba-austin-mn0000133212/biographyhttps://adp.library.ucsb.edu/names/111112AustinClaude AustinMcKinney's Cotton PickersThe Chocolate Dandies + +307436Fred RobinsonAmerican jazz trombonist and arranger, born February 20, 1901 in Memphis, Tennessee, died April 11, 1984 in New York. [b] Not to be confused with the guitarist [a=Freddie Robinson].[/b] +Moved to Chicago in 1927, where he worked with [a1033035] and [a38201], to New York in 1929. Played with [a307207] (1925-1927), [a38201] (1927-1930), [a307187], Marion Hardy (1931), Charlie Turner's Acadians, [a307171] (1931-1933), [a258701] (1933), [a307323] (1935, 1938, 1939 & 1941), [a309976] (1939), [a270023] (1939-1940), [a293352] (1943), [a253474] (1944-1945), [a258007] (1946-1950), [a307453] (1950-1951) and others. +Correcthttps://en.wikipedia.org/wiki/Fred_Robinson_(musician)https://www.allmusic.com/artist/fred-robinson-mn0000175009/biographyhttps://adp.library.ucsb.edu/names/113355F. RobinsonGeorge RobinsonRobinsonФ. РобинсонLouis Armstrong & His Hot FiveLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraLouis Armstrong And His Savoy Ballroom FiveKing Oliver & His OrchestraDon Redman And His OrchestraCarroll Dickerson's SavoyagersCarroll Dickerson And His OrchestraEmmett Matthews And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +307437Red MayerRoy John "Red" Maier(b. Jan. 8, 1897, Chelsea, MI; d. Oct. 14, 1981, Los Angeles, CA), reed musician. Joined [a341395] in Feb. 1928 and departed that organization in May 1930. With the Whiteman band, he played B-flat soprano, alto, tenor and baritone saxophones, clarinet, bassoon, oboe, and English horn, as well as flute and piccolo. Founded the Roy J. Maier Corporation in Sun Valley, CA, the first company to develop machine-manufactured reeds. This company became one of the largest manufacturers of reeds in the U.S.Needs Votehttp://stuffsax.blogspot.com/2019/02/rico.htmlRed MeyerRoy MayerPaul Whiteman And His Orchestra + +307438Charlie AlexanderAmerican jazz pianist. Most notably performed with [a=Louis Armstrong]. +Born : May 29, 1890 in Cincinnati, Ohio. +Died : February 04, 1970 in California. +Needs Votehttp://en.wikipedia.org/wiki/Charlie_Alexanderhttps://adp.library.ucsb.edu/names/111196C. AlexanderCharles AlexanderLil ArmstrongLouis Armstrong And His OrchestraJohnny Dodds' Black Bottom StompersJohnny Dodds TrioZilner Randolph And His Orchestra + +307441Rudy JacksonRudolph JacksonAmerican jazz saxophonist (tenor and soprano) and clarinet player. +He played with: "Sippie Wallace", "Duke Ellington and his Kentucky Club Orchestra", "Noble Sissle". + +Born: 1901 in Fort Wayne, Indiana. +Died: 1968 (circa) in Chicago, Illinois. +Needs Votehttps://www.allmusic.com/artist/rudy-jackson-mn0000363179https://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-2000220300https://www.radioswissjazz.ch/en/music-database/musician/11863192e9899ebe7851b83db681e4921775c8/discographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/204870/Jackson_RudyJacksonR. JacksonDuke Ellington And His OrchestraDuke Ellington And His Cotton Club OrchestraDuke Ellington And His Kentucky Club OrchestraThe WashingtoniansNoble Sissle And His Sizzling SyncopatorsCrickett Smith And His Symphonians + +307443Artie BernsteinAmerican string bass player and cellist. + +Born 3 February 1909 in Brooklyn, New York, USA. +Died 4 January 1964 in Los Angeles, California, USA. + +He worked with [a=Red Nichols], [a=Tommy Dorsey], [a=Jimmy Dorsey]. In mid-1939 he joined [a=Benny Goodman], playing in his big band and sextet. He left Goodman early in 1941, becoming a studio musician in Hollywood. +Needs Votehttps://en.wikipedia.org/wiki/Artie_Bernsteinhttps://www.findagrave.com/memorial/141156784/arthur-bernsteinhttps://www.allmusic.com/artist/artie-bernstein-mn0000932467/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/14000fee04229c3e2451964f3711e919edee6/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/110373/Bernstein_Artiehttps://adp.library.ucsb.edu/names/110373A. BeristeinA. BernsteinA. BersteinArt BernsteinArt BersnteinArthur "Artie" BernsteinArthur BernsteinArthur BersteinArtie BernstienBernsteinBersnteinHarry James And His OrchestraMetronome All StarsBenny Goodman SextetBillie Holiday And Her OrchestraFrankie Trumbauer And His OrchestraLionel Hampton And His OrchestraZiggy Elman & His OrchestraJack Teagarden And His OrchestraClaude Thornhill And His OrchestraLarry Clinton And His OrchestraTeddy Wilson And His OrchestraEddie Condon And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetMildred Bailey And Her Swing BandRalph Burns QuintetSkinnay Ennis And His OrchestraThe Dorsey Brothers OrchestraLou Bring And His OrchestraAdrian Rollini And His OrchestraCloverdale Country Club OrchestraHoagy Carmichael TrioRed Norvo & His Swing OctetClyde Hurley & His OrchestraPutney Dandridge And His OrchestraMetronome All-Star BandArnold Ross QuintetCharlie Christian JammersCootie Williams Septet + +307444Willie "The Lion" SmithWilliam Henry Joseph Bonaparte Bertholoff SmithAmerican jazz pianist and composer. + +Born: 23 November 1893 in Goshen, New York, USA. +Died: 18 April 1973 in New York City, New York, USA. + +Willie was active since the early 1910s, best known for his 'Harlem Stride' playing style. The legend is that his nickname "The Lion" came from his bravery while serving as a heavy artillery gunner. +Needs Votehttp://en.wikipedia.org/wiki/Willie_%22The_Lion%22_Smithhttp://perfessorbill.com/comps/wsmith.shtmlhttps://adp.library.ucsb.edu/names/102109SmithThe LionW, SmithW. "The Lion" SmithW. L. SmithW. SmithWalter SmithWill "The Lion" SmithWilli 'The Lion' SmithWilliam "The Lion" SmithWilliam H. SmithWilliam Henry Joseph Bonaparte Bertholoff ("The Lion) SmithWilliam SmithWilliams SmithWillieWillie "Smith" LionWillie "The Lion"Willie "The Lion" Smith and His Dixie CubsWillie 'The Lion' SmithWillie (The Lion) SmithWillie - The Lion - SmithWillie <<The Lion>> SmithWillie H. SmithWillie SmithWillie Smith "Le Lion"Willie Smith "The Lion"Willie Smith (The Lion)Willie Smith - The LionWillie Smith The LionWillie Smith « Le Lion »Willie Smith « The Lion »Willie The "Lion" SmithWillie The LionWillie The Lion SmithWillie the Lion SmithWillie «The Lion» SmithWillie „The Lion“ SmithWillie"The Lion"SmithWillie-the-Lion SmithWillie‘ ’The Lion' SmithWilly "The Lion" SmithMezz Mezzrow And His OrchestraMezz Mezzrow And His Swing BandSidney Bechet And His New Orleans FeetwarmersSidney Bechet And His TrioMamie Smith And Her Jazz HoundsRega OrchestraClarence Williams And His OrchestraAlabama Jug BandBuck Clayton TrioWillie 'The Lion' Smith And His CubsMilt Herth QuartetMax Kaminsky And His Jazz BandHaitian OrchestraArt Ford's Jazz PartyThe Lion's Jazz BandMilt Herth TrioWillie "The Lion" Smith And His AllstarsWillie "The Lion" Smith & His OrchestraWillie "The Lion" Smith QuartetColeman Hawkins & FriendsHuddie Leadbetter QuartetWillie "The Lion" Smith's Quartet + +307445Art KarleArthur D. KarleAmerican jazz tenor saxophonist and clarinetist +born c. 1905 in Boston, Massachusetts +died December 21, 1967 in the same city. + +Artie Karle led own band in Boston and Cape Cod areas during the early 1920s. Moved to New York in early 1930s, playing with [a=Benny Goodman], [a=Billie Holiday] and leading own bands. In Hiram "Hy" Jason's band in the early 1940s, then moved back to Boston. Occasionally led own bands in Boston in the 1950s and 1960s with [a=Max Kaminsky] and trumpeter George Poor.Needs VoteA. KarleA. KarteArthur KarleBenny Goodman And His OrchestraArt Karle And His Boys + +307446Irving MillsIsadore MinskyUkranian-born American jazz music publisher, agent, orchestra leader, and lyricist. Born January 15, 1894 in Odessa, Odeska, Ukraine. Died April 21, 1985 in Palm Springs, California, USA. +Father-in-law of composer [a=Josef Myrow], grandfather of composer [a=Fred Myrow] and brother of [a=Jack Mills (3)]. +Mills was born in the Russian Empire, which today is in the Ukraine, moving to New York City in 1896. He founded [l282966] with his brother Jack in 1919. Between 1919 and 1965, when they sold Mills Music, Inc., they built and became the largest independent music publisher in the world. +As a music scout, Mills signed Duke Ellington and Cab Calloway. Mills is highly important in the history of jazz music because of his willingness to work with black musicians and publish their music. While Mills is mostly remembered for his business abilities, he more than dabbled in songwriting -- included among his works is the hit [i]It Don't Mean a Thing if It Ain't Got That Swing[/i].Needs Votehttp://en.wikipedia.org/wiki/Irving_Millshttps://www.jazzstandards.com/biographies/biography_81.htmhttps://syncopatedtimes.com/irving-mills-1894-1985/http://www.nndb.com/people/778/000086520/https://adp.library.ucsb.edu/names/105992A. MillsB. MeyersBigardE. MillsE.MillsEllisErvin MillsErving MillsF. MillsGoodie GoodwinGordonH. MillsHillsI .MillsI MillsI' MillsI, MillsI. MIllsI. MilesI. MillI. MillisI. MillsI. MillzI. MllsI. WillsI.. MillsI.MilesI.MillsIMIrbing MillsIriving MillsIrv. MillsIrvin MillsIrvingIrving HillsIrving MilesIrving MillIrving MillaIrving MillesIrving MillstranIrving NillsIrving, MillsIrviug MillsIrwin MillsIrwing MillsJ. MillsJ. MilsJ. TizolJimmy MillsJoe PrimroseK. MillsKillsL. MillesL. MillsL.MillsLyving MillsM. IrvingM. MillsMIllisMIllsMiilsMikksMilesMiles IrvingMilksMillMillasMilleMillerMillesMillisMilllsMillsMills IrringMills IrvingMills IrwingMills, I.Mills, IrvingMilne [sic]MilsMilssMusicP. MillsPrimroseR. MillsT. MillsUrving MillsW. IrvingWillsZ. Millsi. Millsirving Millsj. MillsmillsДж. МиллсИ. МиллсИрвинг МиллзМиллсJoe PrimroseErwin MageeGoody GoodwinSunny SmithMilton IrvingDuke Ellington And His OrchestraIrving Mills And His Hotsy Totsy GangMills Musical ClownsPaul Mills And His Merry MakersThe Hotsy Totsy GangIrving Mills And His ModernistsIrving Mills And His Swyngphonic OrchestraIrving Mills And His OrchestraMills Music Masters + +307447Herman BrownKazoo and washboard playerNeeds VoteTampa Red And His Hokum Jug BandThe Tub Jug Washboard BandWashboard TrioMa Rainey And Her Tub Jug Washboard Band + +307451Bobby StarkRobert Victor StarkAmerican jazz trumpeter. +Born: January 6, 1906 in New York City, New York. +Died: December 29, 1945 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Bobby_Starkhttps://www.allmusic.com/artist/bobby-stark-mn0000077608/biographyhttps://adp.library.ucsb.edu/names/110333B. StarkB. StrakBobby ClarkBobby StarBobby StarckBobby StarksBoddy StarkR. StarkRobert StarkStarkFletcher Henderson And His OrchestraThe Chocolate DandiesThe Dixie StompersFletcher Henderson And His Connie's Inn OrchestraChick Webb And His OrchestraConnie's Inn OrchestraHorace Henderson And His OrchestraElla Fitzgerald And Her Famous OrchestraEarl Randolph's OrchestraPutney Dandridge And His OrchestraHenderson's Roseland Orchestra + +307452Sandy WilliamsAlexander Balos WilliamsAmerican jazz trombone player. + + +Born : October 24, 1906 in Summerville, South Carolina. +Died : March 25, 1991 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Sandy_Williamshttps://www.dailygreen.it/sandy-williams-un-trombone-da-swing/https://adp.library.ucsb.edu/names/110334A. WilliamsAndrew "Sandy" WilliamsS. WilliamsSandie WilliamsWilliamsDuke Ellington And His OrchestraFletcher Henderson And His OrchestraChick Webb And His OrchestraLucky Millinder And His OrchestraRoy Eldridge And His OrchestraBenny Carter And His OrchestraCootie Williams And His OrchestraColeman Hawkins And His OrchestraConnie's Inn OrchestraSidney Bechet And His New Orleans FeetwarmersRex Stewart And His OrchestraElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraBunk Johnson - Sidney Bechet And Their OrchestraThe Gotham StompersArt Hodes' Back Room BoysColeman Hawkins Big BandSidney Bechet's Jazz BandOliver "Rev." Mesheux's Blue SixSandy Williams Big Eight + +307453Noble SissleNoble Lee SissleNoble Sissle (born July 10, 1889, Indianapolis, Indiana, USA - died December 17, 1975, Tampa, Florida, USA) was an American jazz composer, lyricist, bandleader, singer, and playwright. + +[b]When crediting together with [a=Eubie Blake], as well in writing as in performing, please, use the combined PAN [a=Sissle & Blake].[/b] + + +Needs Votehttps://en.wikipedia.org/wiki/Noble_Sisslehttps://www.britannica.com/biography/Noble-Sisslehttp://www.redhotjazz.com/sissleo.htmlhttps://www.blackpast.org/african-american-history/sissle-noble-1889-1975/https://adp.library.ucsb.edu/names/105510Lieut. Noble SissleLieut. SissleLt. Noble SissleN. SissleNoble Sissle (The Ace Of Syncopation)SisleSisléSissleLee White (4)Leonard Graham (2)Noble Sissle And His OrchestraNoble Sissle And His International OrchestraNoble Sissle SwingstersNoble Sissle And His Sizzling SyncopatorsSissle & BlakeNoble Sissle's Southland Singers + +307454Pops FosterGeorge Murphy FosterAmerican jazz bassist, trumpet and tuba player. +Born: May 18, 1892 in Plantation McCall near Baton Rouge, Louisiana. +Died: October 30, 1969 in San Francisco, California. + +Played with [a=Fate Marable], [a=Kid Ory], [a=Charlie Creath], [a=Luis Russell], [a=Art Hodes], [a=Mezz Mezzrow], [a=Sidney Bechet], [a=Bob Wilber], [a=Sammy Price], [a=Earl Hines], [a=Elmer Snowden] + +Needs Votehttps://en.wikipedia.org/wiki/Pops_Fosterhttps://www.artofslapbass.com/pops-foster/http://www.bluenote.com/artist/pops-foster/https://adp.library.ucsb.edu/names/107076"Pops" Foster'Pops' FosterBass FosterForsterFosterG. FosterG. Pops FosterGearge (Pops) FosterGeo "Pops" FosterGeo. "Pops" FosterGeorg "Pops" FosterGeorge "Pop" FosterGeorge "Pops FosterGeorge "Pops" ForsterGeorge "Pops" FosterGeorge 'Pops" FosterGeorge 'Pops' FosterGeorge 'pops' FosterGeorge (Pops) FosterGeorge <Pops> FosterGeorge FosterGeorge Murphy FosterGeorge Pops FosterGeorge « Pops » FosterGeorge «Pops» FosterGeorge »Pops« FosterGeorge “Pops” FosterGeorge “Pop” FosterJoe "Pops" FosterP. ForsterP. FosterPop FosterPop's FosterWarren "Pops" FosterWill "Pops" Foster« Pops » Foster«Pops» FosterДж. Попс ФостерLouis Armstrong And His OrchestraSidney Bechet And His Blue Note Jazz MenLouis Armstrong And His Savoy Ballroom FiveThe Mezzrow-Bechet SeptetThe Mezzrow-Bechet QuintetThe Mound City Blue BlowersLuis Russell And His OrchestraMezz Mezzrow And His OrchestraFats Waller And His BuddiesMezzrow-Ladnier QuintetSam Price TrioDan Burley And His Skiffle BoysBob Wilber And His BandSidney Bechet QuartetBunk Johnson - Sidney Bechet And Their OrchestraSidney Bechet's Blue Note QuartetHenry "Red" Allen And His OrchestraJack Teagarden And His Swingin' GatesEarl Hines' Dixieland BandMuggsy Spanier And His All StarsJoe Sullivan Jazz QuartetArt Hodes' Blue FiveDewey Jackson's Peacock OrchestraSidney Bechet & His Hot SixSam Price And His Texas BlusiciansArt Hodes' Hot FiveJonah Jones BandEmmett Berry And His OrchestraThe All Star StompersDon Ewell QuartetEarl Hines And His BandSidney Bechet's Jazz BandAlbert Nicholas And His Creole SerenadersRod Cless QuartetBob Wilber And His Jazz BandThe "This Is Jazz" All-StarsPops Foster's "Big 8"Earl Bostic's Gotham SextetJimmy Archey's BandEarl Hines / Muggsy Spanier All StarsBechet-Nicholas Blue FiveHuddie Leadbetter QuartetMart Gross And The Cellar Boys + +307458Joe Smith (3)Joseph C. SmithAmerican jazz trumpet and cornet player nicknamed "Fox". +His brother, Russell T. Smith was a jazz trumpeter, another brother, Luke Jr. Smith (jazz trumpeter) died in 1936. +Joe Smith worked with : Fletcher Henderson, Bessie Smith, Mamie Smith, Ethel Waters, Ma Rainey and others. +Born : June 28, 1902 in Ripley, Ohio - Died : December 02, 1937 in Central Islip, New York. (Tuberculosis)Needs Votehttps://en.wikipedia.org/wiki/Joe_Smith_(musician)https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/smith-joe-actually-joseph-chttps://www.anb.org/view/10.1093/anb/9780198606697.001.0001/anb-9780198606697-e-1802847DePaulDž. SmitasJ. SmithJos SmithSmithMcKinney's Cotton PickersFletcher Henderson And His OrchestraThe Dixie StompersThe Louisiana StompersConnie's Inn OrchestraHenderson's Hot SixBessie Smith And Her BandBessie Smith And Her Blue BoysIda Cox And Her Five Blue SpellsEarl Randolph's OrchestraJoseph Smith's Jazz BandClarence Williams StompersJoe Smith's Jazz BandFletcher Henderson's Trio + +307459Mamie SmithMamie RobinsonMamie Smith was an American vaudeville singer, dancer, pianist, and actress. As a vaudeville singer she performed in multiple styles, including jazz and blues. In 1920, she entered blues history as the first African American artist to make vocal blues recordings. + +Born : May 26, 1891 in Cincinnati, Ohio. +Died : September 16, 1946 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Mamie_Smithhttps://adp.library.ucsb.edu/names/109988M. SmithSmithMamie Smith And Her Jazz HoundsMamie Smith & Her Jazz Band + +307461Mancy CarrMancy Peck CarrAmerican jazz banjoist and guitarist, sometimes credited as "Mancy Cara", born in 1899 and died 10 February 1946.Needs Votehttps://www.allmusic.com/artist/mancy-carr-mn0001625242/biographyhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/carr-mancy-peckhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/112586/Cara_Mancy?Matrix_page=2CaraCarrM. CaraMancy CaraManzie CaraNancy CaraМ. КараLouis Armstrong & His Hot FiveLouis Armstrong And His OrchestraLouis Armstrong And His Savoy Ballroom FiveCarroll Dickerson's SavoyagersLouis Armstrong And His Hot FourCarroll Dickerson And His OrchestraCarroll Dickerson's Stompers + +307463Hal MatthewsJazz trombonistNeeds VoteH. MatthewsHarold MatthewsFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +307464John LindsayJazz double bassist (born August 23, 1894, New Orleans, LA - died July 3, 1950, Chicago, IL). Also recorded as trombonist early in his career +Worked with Quinn Wilson, Omer Simeon, Bud Scott, Barney Bigard, Sidney Bechet, Baby Dodds, Wellman Braud, Johnny St. Cyr, Zutty Singleton, Kid Ory, Earl Hines, Johnny Dodds. + +Needs Votehttps://en.wikipedia.org/wiki/John_Lindsay_(musician)https://www.allmusic.com/artist/john-lindsay-mn0001023874https://adp.library.ucsb.edu/names/111198J. LindsayJ.LindsayJack LindsayJack LinsayJo LindsayJoe LindsayJohn LindasyJohn LindseyJohn LinsayJohnny LindsayLindsayThe Harlem HamfatsLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersPiron's New Orleans OrchestraSidney Bechet And His New Orleans FeetwarmersPalooka Washboard BandAlbert Ammons And His Rhythm KingsJimmie Noone And His OrchestraIke Smith And His Chicago BoysHightower's Night HawksZilner Randolph And His OrchestraLil Johnson And Her Chicago Swingers + +307469Pierre OlkerNeeds VoteFrankie Trumbauer And His OrchestraPaul Ash & His Orchestra + +307498Bobby Jones (2)American jazz saxophonist (October 30, 1928, Louisville, Kentucky - March 6, 1980, Munich). Playing tenor and soprano sax as well as clarinet, Bobby Jones was lead saxophonist in [a=Woody Herman]'s big band, before joining [a=Charles Mingus], staying with him for two years between 1970-72.Correcthttp://en.wikipedia.org/wiki/Bobby_Jones_%28saxophonist%29http://www.jazzrecords.com/enja/bio/jones.htmB. JonesBobbie JonesBobby (Crow) JonesBobby JonesBobby Jones (Crow)Bobby Jones - Crow -Bobby “Crow” JonesJonesWoody Herman And His OrchestraRed Nichols And His Five PenniesCharles Mingus SextetWoody Herman And The Swingin' HerdRay McKinley And His Orchestra + +307543Bill GoodwinWilliam Richard GoodwinAmerican jazz drummer, also production credits, born January 8, 1942 in Los Angeles, USA.Needs Votehttp://en.wikipedia.org/wiki/Bill_Goodwin_(jazz_drummer)Billy GoodwinGoodwinWilliam GoodwinArt Pepper QuartetGary Burton QuartetBill Plummer & The Cosmic BrotherhoodThe Phil Woods QuartetBud Shank QuartetThe Phil Woods QuintetThe Paul Horn QuintetNational Jazz EnsembleTom Harrell QuintetBill Goodwin TrioBill Watrous QuartetThe Phil Woods SixThe Jimmy Amadie TrioPhil Woods' Little Big BandEddie Higgins QuartetGreg Abate QuintetGeorge Robert-Tom Harrell QuintetDado Moroni TrioKatchie Cartwright QuintetThe Vinson Hill SextetBill Goodwin's Solar EnergyJim Mitchell SextetJim Mitchell QuintetChuck Marohnic QuartetBill Goodwin QuartetPhil Woods-Lee Konitz QuintetCicci Santucci QuintetQuartet (10)The Bob Lark • Phil Woods Quintet + +307550Michael FormanekAmerican jazz bassist born in San Francisco, California, May 7, 1958Needs Votehttp://www.amibotheringyou.com/https://michaelformanekintakt.bandcamp.com/FormanekM. FormanekMicheal FonamackMikeMike FormanekMike ForminekGalleryChet Baker QuartetThe Fred Hersch TrioScott Fields EnsembleUri Caine EnsembleNew York Jazz CollectiveTim Berne's BloodcountJames Emery SeptetMingus Big BandBob Mintzer Big BandSimon Nabatov QuintetJulian Argüelles TrioJon Raskin QuartetIliad QuartetJacob Anderskov TrioAgnostic RevelationsThumbscrew (3)Ted Rosenthal TrioThe Enja BandMogensen Frisk QuartetHarold Danko TrioRoberta Piket TrioThe Hook UpThe Warriors Of The Wonderful SoundRichard Boukas TrioRudy Linka QuartetTony Malaby/Joey Sellers QuartetEnsemble KolossusHarold Danko QuintetAngelica Sanchez TrioRudy Linka TrioRoberto Ottaviano QuarkTetThe Mingus Epitaph Rhythm SectionMichael Formanek Elusion QuartetMichael Formanek Very Practical TrioJack Walrath & The Masters Of SuspensePierre Vaiana QuartetMichael Formanek QuintetSusan Alcorn QuintetTim Berne 7Mary Halvorson's Code GirlCleömeTony Malaby's SabinoMichael Formanek Drome TrioLocation Location LocationJon Birkholz TrioMyra Melford Splash + +307555Steve KuhnStephen Lewis KuhnAmerican jazz pianist and composer, born March 24, 1938 in New York.Needs Votehttps://en.wikipedia.org/wiki/Steve_Kuhnhttps://www.allmusic.com/artist/steve-kuhn-mn0000036645#biographyhttps://www.whosampled.com/Steve-Kuhn/https://stevekuhn.bandcamp.com/KuhnKühnS. KuhnS.KuhnS.L. KuhnSteve KahnSteve KhunThe John Coltrane QuartetStan Getz QuartetSteve Kuhn QuartetArt Farmer QuartetSteve Kuhn And EcstasySteve Kuhn TrioThe Kenny Dorham QuintetSteve Kuhn / Sheila Jordan BandBob Moses QuintetSteve Kuhn With StringsMax Roach-John Lewis GroupMark Masters Ensemble + +307563Terry ClarkeTerence Michael ClarkeCanadian jazz drummer, born 20 August 1944 in Vancouver, Canada. + +[b]1960-65:[/b] Performs with Chris Gage, David Robbins, and often teams up with bassist [a=Don Thompson (2)]. +[b]1965-67:[/b] Tours with saxophonist [a=John Handy]. +[b]1967-69:[/b] Tours with [a=The Fifth Dimension]. +[b]1970s:[/b] Clarke settles in Toronto working with, among others, [a=Lenny Breau]. He becomes a well known studio drummer while also performing with Boss Brass and other groups led by Canadian bandleaders. +[b]1976:[/b] Begins touring internationally with [a=Jim Hall] in 1976, and maintains that association intermittently through the 1980s. +[b]1981:[/b] Tours with the [a=The Oscar Peterson Trio]. +[b]1985:[/b] Clarke moves to New York, working there while also touring with many musicians including the [a=Toshiko Akiyoshi], [a=Roger Kellaway] and [a=Helen Merrill]. + +Clarke is currently an adjunct professor at The University of Toronto. Needs Votehttps://web.archive.org/web/20201126143202/http://canadianjazzarchive.dk/en/musicians/terry-clarke.htmlhttps://en.wikipedia.org/wiki/Terry_Clarke_(drummer)ClarkeT. C.T. ClarkeTerr ClarkeTerry ClarkThe Fifth DimensionThe Oscar Peterson TrioArt Pepper QuartetJohn Handy QuintetTed Moses QuintetAlvinn Pall SextetThe Brass ConnectionThe Joe Roccisano OrchestraJim Hall TrioRob McConnell & The Boss BrassFree Trade (2)Rob McConnell TentetThe Ken Peplowski QuintetThe Ed Bickert TrioToshiko Akiyoshi Jazz OrchestraDave Stahl BandEmily Remler QuartetOliver Jones TrioThe Jim Galloway QuartetThe Jim Hall QuartetThe Ed Bickert QuartetDave Turner QuartetThe Rick Wilkins OrchestraThe Don Thompson QuartetThe Rob McConnell SextetThe Eddie Higgins TrioSackville All StarsJon Burr QuartetThe Gene DiNovi TrioAll-Star Jazz SextetDale Bruning QuartetThe Canadian All StarsPeter Appleyard QuartetJohn Goldsby QuartetDave Young QuintetDavid Braid SextetFerguson, Tremblay, Young, ClarkJane Fair/Rosemary Galloway Quintet + +307604Gary ChapmanGary Winther ChapmanAmerican Christian musician, born August 19, 1957 in Waurika, Oklahoma. Father of [a1773891]. Formerly married to [a168359].Needs Votehttps://www.facebook.com/garychapmanmusic/http://ahymnaweek.com/http://www.christianmusicarchive.com/artist/gary-chapmanhttp://www.ccmclassic.com/artists/gary-chapman.htmlhttps://en.wikipedia.org/wiki/Gary_Chapman_(musician)ChapmanG ChapmanG. ChapmanG.ChapmanGary ChapmannHairy ChapmanThe Cause (3)The Maverick Choir + +307620Raoul PoliakinViolinist, conductor, and recording director (mostly for [l=Everest]). +[b]For composer of the “Le Canari” polka, please use [a=Ferdinand Poliakin][/b].Needs Votehttp://www.allmusic.com/artist/raoul-poliakin-mn0000587464/creditshttp://img.cdandlp.com/2013/01/imgL/115826646-2.jpghttp://www.vervemusicgroup.com/raoulpoliakinA PolickinePacul PoliakinPaul PoliakinePaul PollakinPoliakinPoliakin Conducting His Orchestra And ChoraleR. PoliakinR. PolikianR. PolliakineRPRaol PoliakinRaoul PoliakianRaoul PoliakianeRaoul PoliakineRaoul PoliarkinRaoul PolickinRaoul PolikianRaoul PollakinRaul PoliakinRaul PoliakineRaul Poliakine (RP)Rauoul PoliakinRoaul PoliakinTommy Dorsey And His OrchestraDon Elliott And His OrchestraRaoul Poliakin And His OrchestraFrank Sinatra And His OrchestraThe Stradivari Quintet + +307621John BealBass and double bass player. +Beal played with big band leader [a=Woody Herman] and, on records, backed [a=Judy Collins], [a=Nina Simone], [a=Bette Midler], [a=Luther Vandross], [a=Audra McDonald], [a=Gloria Estefan], [a=Wynton Marsalis] and [a=Paul Simon]. Beal has been most active performing on Broadway, in concert and even for operatic works. Needs Votehttps://muppet.fandom.com/wiki/John_Bealhttps://www.ibdb.com/broadway-cast-staff/john-beal-108826BealBeal John P.J. BealJohn BealeJohn E. BealJohn P. BealJohnny BealWoody Herman And His OrchestraThe American Symphony OrchestraThe Winter ConsortPond Life (2)The Pond Life OrchestraWoody Herman And His Third HerdThe Baroque Jazz EnsembleSal Salvador QuartetThe Freddy Merkle GroupThe New York PopsThe Rod Levitt OrchestraSal Salvador And His Orchestra + +307660Specs WrightCharles A. WrightAmerican jazz drummer. +b. September 8, 1927 - Philadelphia, Pennsylvania - d. February 6, 1963 + + +Needs Votehttps://adp.library.ucsb.edu/names/211222"Specks" Wright"Specs" Wright'Specs' WrightC. "Specs" WrightC. WrightCharles "Specks" WrightCharles "Specs" WrightCharles 'Specs' WrightCharles WrightCharlie "Specs" WrightCharlie 'Specs' WrightCharlie WrightGordon "Specs" WrightS. WrightWrightチャールス・ライトThe Art Blakey Percussion EnsembleThe Red Garland TrioDizzy Gillespie And His OrchestraHoward McGhee SextetRay Bryant TrioSonny Rollins TrioJohnny Richards And His Orchestra + +307692Billy MitchellWillie Melvin MitchellBilly Mitchell (born in Kansas City, Missouri, November 3, 1926, died Rockville Centre, NY, April 18, 2001) was an American jazz tenor saxophonist, and occasional actor. + +He was a driving force and major influence in the post WWII Detroit modern jazz explosion. He influenced and employed many local musicians who later went on to fame, including [a271154] and [a135885]. He is best known for his work with The [a253011] and The [a64694] big band of the 50's and 60's..... Mitchell and trombonist [a272655] left Basie in late 1961 and formed the Al Grey/Billy Mitchell Sextet, which won the Downbeat Award for best new jazz band of 1962! This band also officially introduced vibraphone future star [a29968]. Besides leaving and re-joining Basie's band several times in the 60's, Billy was an important figure on Long Island (his home) and Manhattan in the educational area of jazz; he was mentor and friend to Alto Saxophonist, [a349615], and LA trombonist/composer-arranger [a608578]. +Needs Votehttp://en.wikipedia.org/wiki/Billy_Mitchell_%28jazz_musician%29https://yannalaw.com/public-policy-essay-1/the-performing-arts/7235-2/B. MitchellBillie MitchellBilly MitchelBilly Mitchell (Solo)MitchellW. MitchellWillie MitchellБилли МитчеллClarke-Boland Big BandCount Basie OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraDizzy Gillespie Big BandRay Charles And His OrchestraThe Ernie Wilkins OrchestraThe Billy Mitchell QuintetWalter Gil Fuller And His OrchestraKenny Clarke And His CliqueThe Frank Wess OrchestraThe Frank Wess - Harry Edison OrchestraMorgan=Kelly SeptetThe New York AllstarsThe Al Grey - Billy Mitchell SextetThe Leiber-Stoller Big BandMilton Jackson And His New GroupGil Fuller OrchestraMilt Jackson SeptetWoody Herman & The Second HerdThe Joe Ascione Octet + +307693Frank MorganAmerican jazz saxophonist (alto, soprano), born 23 December 1933 in Minneapolis, Minnesota; died 14 December 2007 in Minneapolis, Minnesota, USA. Son of jazz guitarist [a=Stanley Morgan (3)].Needs Votehttps://en.wikipedia.org/wiki/Frank_Morgan_(musician)https://www.allmusic.com/artist/frank-morgan-mn0000173007MorganMorgarFrank Morgan QuartetFrank Morgan QuintetFrank Morgan AllstarsFrank Morgan Et Son Orchestre + +307694Walter BentonWalter Barney Benton.American jazz saxophonist (tenor) player. also composer credit + +Born : September 08, 1930 in Los Angeles, California. +Died : August 14, 2000 in Los Angeles, California. +Needs Votehttps://en.wikipedia.org/wiki/Walter_BentonBentonGerald Wilson OrchestraClifford Brown All StarsJulian Priester SextetWalter Benton QuintetThe Gerald Wilson Big Band + +307695Bill MasseyJazz trumpet player and songwriterNeeds VoteB. MasseyBillie MasseyBilly MasseyC. Bill MasseE. MasseyMaseyMasseyS. MassyWilliam MasseySonny Stitt BandWalter Gil Fuller And His OrchestraMilton Jackson And His New GroupGil Fuller OrchestraMilt Jackson SeptetGene Ammons And His BandGene Ammons - Sonny Stitt Septet + +307700Eddie JonesEdward JonesAmerican jazz bass player. He was a neighbor and friend of [a=Count Basie]'s family. Jones grew up in Red Bank, New Jersey, and played early in the 1950s with Sarah Vaughan and Lester Young. Jones taught music in South Carolina from 1951 to 1952, and became a member of Count Basie's orchestra in 1953, remaining there until 1962. He recorded frequently with this ensemble, and also played with Basie in smaller ensembles; these featured both Basie sidemen (Joe Newman, Frank Foster, Frank Wess, Thad Jones, Ernie Wilkins) and others (Milt Jackson, Coleman Hawkins, Putte Wickman). Jones quit music in 1962 and took a job with IBM; he later became vice president of an insurance company. In the 1980s he returned to jazz and played on and off in swing jazz ensembles. +Born 1 March 1929 in New York City, USA - died 31 May 1997 in West Hartford, CT, USA. + +For the blues guitarist, singer and songwriter, see [a720589] +For the New York soul songwriter - producer, see [a=Eddie Jones (11)] +Needs Votehttps://en.wikipedia.org/wiki/Eddie_Jones_(jazz_musician)https://www.radioswissjazz.ch/en/music-database/musician/24705acebec222f84e41b52c693561e295504/titleshttps://www.allmusic.com/artist/eddie-jones-mn0001009005/biographyhttps://adp.library.ucsb.edu/names/205104E. F. Jones Jr.E. JonesEd JonesEd Jones, Jr.Eddie Jones Jr.Eddie Jones, Jr.Eddy JonesEddy Jones Jr.Edward F. Jones, Jr.Edward JonesEdward Jones, Jr.FriendJonesJones, Edward, (Eddie, Or Jonesy)Э. ДжонсЭд ДжонсCount Basie OrchestraCount Basie And The Kansas City SevenThe Ernie Wilkins OrchestraJoe Newman SextetThe Buddy Tate Celebrity Club OrchestraThe Prestige All StarsJoe Newman OctetJoe Newman & His BandThe Jones BoysOsie Johnson QuintetThe Frank Wess QuartetJoe Newman QuartetJoe Newman And The Count's MenThe Frank Wess OrchestraThe Frank Wess - Harry Edison OrchestraThe Joe Newman SeptetThe Count's MenZoot Sims - Bob Brookmeyer OctetThad Jones And His EnsembleThe Jones Brothers (4)Ruby Braff's All-StarsThe Leiber-Stoller Big BandJoe Newman QuintetPaul Quinichette And His SwingtetteThe Basie-itesThad Jones SextetThe Nat Pierce TrioThe Frank Wess SeptetThe Ruby Braff QuintetBuck Clayton And His Swing BandJazz Studio OneJoe Newman - Frank Foster Quintet + +307721Johnny O'NealJohnny O'Neal (born October 10, 1956 in Detroit, Michigan) is an American neo-bop jazz pianist and vocalist. He has led many recording dates with musicians such as Russell Malone and many others. He was a 1997 inductee of the Alabama Jazz Hall of Fame.Needs Votehttp://www.smallslive.com/artists/1229-johnny-oneal/https://en.wikipedia.org/wiki/Johnny_O%27Nealhttps://johnnyoneal.bandcamp.com/John O'NealJohn O'NealyArt Blakey & The Jazz MessengersEd Thigpen Ensemble + +307726Etta JonesEtta Jonesborn November 25, 1928 - Aiken, South Carolina, USA +died October 16, 2001- Mount Vernon, New York, USA + +American jazz singer. + +Etta Jones was born in Aiken, South Carolina, United States, and raised in Harlem. Still in her teens, Jones joined Buddy Johnson's band for a nationwide tour although she was not featured on record. Her first recordings—"Salty Papa Blues", "Evil Gal Blues", "Blow Top Blues", and "Long, Long Journey"—were produced by Leonard Feather in 1944, placing her in the company of clarinetist Barney Bigard and tenor saxophonist Georgie Auld. In 1947, she recorded and released an early cover version of Leon Rene's I Sold My Heart to the Junkman (previously released by the Basin Street Boys on Rene's Exclusive Records) while at RCA Victor records. She performed with the Earl Hines sextet from 1949 to 1952. + +She had three Grammy nominations, for the Don't Go to Strangers LP in 1960, Save Your Love for Me in 1981, and My Buddy (dedicated to her first employer, Buddy Johnson) in 1999. In 2008 the album Don't Go to Strangers was inducted into the Grammy Hall of Fame. + +Following her recordings for Prestige, on which Jones was featured with high-profile arrangers such as Oliver Nelson and jazz stars such as Frank Wess, Roy Haynes, and Gene Ammons, she had a musical partnership of more than thirty years with tenor saxophonist Houston Person, who received equal billing with her. He also produced her albums and served as her manager, after the pair met in one of Johnny Hammond's bands. + +Although Etta Jones is likely to be remembered above all for her recordings on Prestige, her close professional relationship with Person (frequently, but mistakenly, identified as Jones' husband) helped ensure that the last two decades of her life would be marked by uncommon productivity, as evidenced by a string of albums for Muse Records. In 1997 she recorded The Melody Lingers On, the first of five sessions for the HighNote label. + +Her last recording, a tribute to Billie Holiday, was released 57 years later on the day of Jones' death. Only one of her recordings—her debut album for Prestige Records (Don't Go to Strangers, 1960)—enjoyed commercial success with sales of over a million copies. Her remaining nine albums for Prestige and, beginning in 1975, her numerous recordings for Muse Records and HighNote Records secured her a devoted following. + +She died in Mount Vernon, New York, at the age of 72 from cancer. She was survived by her husband, John Medlock, and a granddaughter, a daughter pre-deceased her. +Needs Votehttps://en.wikipedia.org/wiki/Etta_Joneshttps://ettajones.bandcamp.com/ahttps://www.allmusic.com/artist/etta-jones-mn0000207498/biographyhttps://adp.library.ucsb.edu/names/108045E. JonesJonesEtta Jones And Strings + +307843Mickey CroffordEngineer. + +Worked at [l343879] up to late 1967 and then transferred +to [l=RCA's Music Center Of The World], Hollywood, CaliforniaNeeds VoteM. CroffordMickey CrorfordMicky CroffordMilton Crofford + +307864Edmond HallEdmond HallAmerican jazz clarinetist. +Born May 15, 1901 - Reserve, Louisiana. +Died February 11, 1967 - Boston, Massachusetts. + +Older brother of [a1235888]. +Needs Votehttps://en.wikipedia.org/wiki/Edmond_Hallhttps://www.allmusic.com/artist/edmond-hall-mn0000150358http://www.bluenote.com/artists/edmond-hallhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/40878925e9ed676579e765e91e3d8aed038b1/biographyhttps://adp.library.ucsb.edu/names/103193E. HallE.HallEd HallEdmond Hall & His Talking ClarinetEdmond Hall With Rhythm Accomp.Edmond Hall con acomp. ritmicoEdmund HallHallЭдмонд ХоллMarlowe Morris QuintetEdmond Hall Celeste QuartetBillie Holiday And Her OrchestraGene Krupa And His OrchestraLionel Hampton And His OrchestraLouis Armstrong And His All-StarsBud Freeman's All Star OrchestraRoss De Luxe SyncopatersGeorge Wettling's DixielandersJack Teagarden And His OrchestraTeddy Wilson And His OrchestraWilbur De Paris And His OrchestraEddie Condon And His OrchestraWild Bill Davison And His CommodoresEdmond Hall's Blue Note JazzmenEdmond Hall SextetJames P. Johnson's Blue Note JazzmenEdmond Hall Swing SextetArt Tatum And His BandLeonard Feather All StarsFrankie Newton And His Uptown SerenadersThe Cafe Society BandThe Mel Powell SeptetMildred Bailey And Her OrchestraEddie Condon And His All-StarsClaude Hopkins And His OrchestraEdmond Hall's All-StarsColeman Hawkins All StarsChris Barber's American Jazz BandColeman Hawkins SeptetJoe Sullivan And His Café Society OrchestraTeddy Wilson SextetSidney DeParis' Blue Note JazzmenDe Paris Brothers OrchestraEdmond Hall's All Star QuintetEdmond Hall And His OrchestraGeorge Wettling's Jazz BandVic Dickenson SeptetJack Teagarden BandThe Edmond Hall QuartetArt Hodes And His Blue Note JazzmenJack Teagarden's Dixieland BandEdmond Hall And His Cafe Society BandJonah Jones BandGeorge Wettling's All StarsJimmy McPartland's Hot Jazz StarsGeorge Wettling And His Rhythm KingsEddie Condon And His Dixieland BandMary Lou Williams' Chosen FiveThe Ellis Larkins OrchestraGeorge Wein's Storyville BandEdmond Hall And MenEdmond Hall's SwingtetJoe Sullivan BandJam Session (11)Punch Miller Jazzband + +307865Barrett DeemsAmerican jazz drummer and bandleader. +Born 1 March 1914 in Springfield, Illinois. +Died 15 September 1998 in Chicago, Illinois. +Began to play professionally with violinist [a=Paul Ash (2)]. He played six years with [a=Joe Venuti] and with [a=Red Norvo], [a=Jimmy Dorsey], [a=Charlie Barnet], [a=Muggsy Spanier], [a=Louis Armstrong], [a=W. C. Handy] and many others. +Needs Votehttps://en.wikipedia.org/wiki/Barrett_Deemshttps://www.imdb.com/name/nm0214321/https://www.drummerworld.com/drummers/Barrett_Deems.htmlhttps://www.allmusic.com/artist/barrett-deems-mn0000784791https://adp.library.ucsb.edu/names/311654Barett DeemsBarnett DeemsBarrel DeemsBarret DeemsBarrett Bruce DeemsBarrett DeamsDeemsБ. ДимсLouis Armstrong And His All-StarsSy Oliver And His OrchestraBarrett Deems Big BandBill Harris & His New MusicBarney Bigard / Art Hodes All Star StompersBarrett Deems HottetThe Rhythmakers (4) + +307866Everett BarksdaleEverett BarksdaleAmerican jazz guitarist and session musician, he was Harold Vick's most used guitarist. +Born April 28, 1910, Detroit, Michigan Died January 29, 1986, Inglewood, California. + +Barksdale played bass and banjo before settling on guitar, and moved to Chicago early in the 1930s. His first major engagement there was in Erskine Tate's band, which he followed with a stint behind Eddie South. Toward the end of the decade he began collaborating with Benny Carter. In the early part of the next decade, Barksdale moved to New York City, where he found work in studios and on radio for CBS. + +Barksdale's credits as a session player in the 1940s and 1950s are extensive. He played with vocal ensembles such as The Blenders and The Clovers, and accompanied vocalists like Dean Barlow and Maxine Sullivan. Much of this work was due to his association with producer Joe Davis. He began working with Art Tatum late in the 1940s, taking Tiny Grimes's spot in his trio alongside bassist Slam Stewart. The association with Tatum would continue until 1956, when Barksdale became musical director of The Ink Spots. The following year, he played on Mickey & Sylvia's hit "Love Is Strange". He played for many years in the house band of ABC, and played on recordings by Lena Horne, Sammy Davis, Jr., Dinah Washington, and Sarah Vaughan. Among his other jazz associations are Milt Hinton, Buddy Tate, Clark Terry, and Louis Armstrong in his later years. + +Barksdale retired from active performance in the 1970s and moved to California. He died there in 1986. +Needs Votehttp://www.allmusic.com/artist/everett-barksdale-p54296http://en.wikipedia.org/wiki/Everett_Barksdalehttps://adp.library.ucsb.edu/names/106378BarksdaleE. BarksdaleEBEveret BarksdaleEverett BaksdaleEveritt BarksdaleEvert BarksdaleEvertett Barksdaleエヴァレット・バークスデールCab Calloway And His OrchestraLouis Armstrong And His OrchestraThe Ink SpotsLouis Armstrong And His All-StarsBenny Carter And His OrchestraSy Oliver And His OrchestraSidney Bechet And His New Orleans FeetwarmersSidney Bechet And His TrioSidney Bechet & His All Star BandArt Tatum TrioHerman Chittison TrioHenry "Red" Allen's All StarsEddie South And His International OrchestraEdmond Hall's Swingtet + +307867Trummy YoungJames Osborne YoungSwing era trombonist and vocalist. +Born 12 January 1912 in Savannah, Georgia. +Died 11 September 1984 in San Jose, California. + +He began to play professionally at the age of 16 with several groups in Washington, D.C.. He worked with with [a=Earl Hines] (1934-37), [a=Jimmy Lunceford] (1937-43) and [a=Charlie Barnet] (1943-43). After working with [a=Boyd Raeburn] and [a=Norman Granz] he lived 1947-1952 in Hawaii. After that, he toured with [a=Louis Armstrong]'s newly formed All Stars. After leaving Armstrong's group, he toured the US and Europe with various groups until his death. He was based out of Hawaii from the mid-1960's on. He died of a cerebral hemorrhage.Needs Votehttps://en.wikipedia.org/wiki/Trummy_Younghttps://www.namm.org/library/oral-history/trummy-younghttps://www.imdb.com/name/nm0949654/https://adp.library.ucsb.edu/names/104993"Trummie" Young"Trummy" Young'Trummy' YoungDrummyJ YoungJ. "Trummy" YoungJ. Trummy YoungJ. YoungJ. YouugJ.O. YoungJ.YoungJAmes "Trummy" YoungJame YoungJames "Trummie" YoungJames "Trummy Young"James "Trummy" YoungJames "Trummy"YoungJames 'Trummie' YoungJames 'Trummy' YoungJames (Trummie) YoungJames :"Trummy" YoungJames Oliver "Trummy" YoungJames Oliver YoungJames Osborne "Trummy" YoungJames Osborne "Trummy" YoungJames Osbourne "Trummy" YoungJames Trummy YoungJames YoungJames «Trummy» YoungJames"Trummy" YoungJay YoungJimmie YoungJimmy YoungJoe YoungJohnny YoungLester YoungO. YoungT. YoungTYTommy YoungTrombie YoungTrummi YoungTrummie YoungTrunmy YoungV. YoungVocal Ensemble Featuring Trummie YoungVocal Quartet Featuring Trummie YoungYoundYoungТ. ЯнгТр. ЯнгТрамми ЯнгТрямми ЯнгDizzy Gillespie And His OrchestraCozy Cole All StarsLouis Armstrong And His OrchestraJimmie Lunceford And His OrchestraBilly Eckstine And His OrchestraLouis Armstrong And His All-StarsBoyd Raeburn And His OrchestraEarl Hines And His OrchestraClyde Hart All StarsBenny Goodman And His OrchestraIllinois Jacquet And His All StarsDeLuxe All Star BandTony Scott And His Down Beat Club SeptetThe V-Disc All StarsThe Lunceford QuartetThe Tiny Grimes SwingtetBuck Clayton's Big EightThe Bopland BoysDizzy Gillespie All StarsTrummy Young & TrioTrummy Young All StarsJim Mundy And His Swing Club SevenBilly Kyle's Big EightOscar Pettiford And His 18 All StarsTrummy Young's Big SevenTrummy Young And His Special Servers"Trummy" Young And OrchestraTrummy Young And His Lucky Seven + +307870Mort HerbertMorton PelovitzAmerican jazz bassist. +Born : June 30, 1925 in Somerville, New Jersey. +Died : June 05, 1983 in Los Angeles, California. + +Mort worked with : Marian McPartland, Don Elliott, “The Sauter-Finegan Orchestra”, Sol Yaged (1955-’58), Louis Armstrong (1958-’61) and in many records with various jazz musicians. +In 1956 the Savoy Records released his single album “Night People”. +Needs Votehttps://en.wikipedia.org/wiki/Mort_Herberthttps://adp.library.ucsb.edu/names/320928HerbertM. HerbertMort HarbertLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsThe Don Elliott Quintet + +307885Billy ButterfieldCharles William ButterfieldAmerican jazz trumpeter. + +Born : January 14, 1917 in Middleton, Ohio.. +Died : March 18, 1988 in North Palm Beach, Florida. +Needs Votehttps://en.wikipedia.org/wiki/Billy_Butterfieldhttps://www.imdb.com/name/nm0125276/biohttps://www.allmusic.com/artist/billy-butterfield-mn0000767816/discographyhttps://www.jazzmusicarchives.com/artist/billy-butterfieldhttps://www.loc.gov/item/gottlieb.00921/http://www.bigbandlibrary.com/billybutterfield.htmlhttps://rateyourmusic.com/artist/billy_butterfieldhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103885/Butterfield_Billyhttps://adp.library.ucsb.edu/names/103885B. ButterfieldB.ButterfieldBill ButterfieldBillie ButterfieldBilly ButterflyBilly ButtersfieldButterfieldButtersfieldCharlie ButterfieldLa Trompeta De Oro De Billy ButterfieldW. C. ButterfieldGus HooLouis Armstrong And His OrchestraDizzy Gillespie Big BandArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraPaul Whiteman And His OrchestraClaude Thornhill And His OrchestraEddie Condon And His OrchestraBud Freeman's Summa Cum Laude OrchestraBob Crosby And The Bob CatsBob Haggart And His OrchestraBilly Butterfield And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraThe CommandersBuddy Morrow And His OrchestraThe World's Greatest JazzbandEddie Condon And His All-StarsThe Billy Butterfield QuintetYank Lawson And His OrchestraJerry Gray And His OrchestraLawson-Haggart Jazz BandBilly Butterfield Jazz BandJohnny Guarnieri Swing MenMel Powell And His OrchestraBud Freeman And His OrchestraBilly Butterfield And The Essex FivePeanuts Hucko And His OrchestraAllstars (11)George Wettling And His Rhythm KingsLou Stein And His OctetJohnny Guarnieri's All Star OrchestraThe Billy Butterfield QuartetBrad Gowans And His New York NineThe Lou Stein SextetWill Bradley and HIs Jazz OctetStan Rubin And His Tigertown OrchestraJam Session At The RiversideBilly Butterfield SextetteLouis Armstrong And The V-Disc All-Stars + +308081Roland VerdonJazz drummer.CorrectThe Oscar Peterson Trio + +308084Franck GariepyJazz drummer.CorrectFranck GariebyFrank GariepyThe Oscar Peterson Trio + +308085Russ DufortJazz drummer.CorrectRuss DufordThe Oscar Peterson Trio + +308115Emil GilelsЭмиль (Самуил) Григорьевич ГилельсEmil (Samuel) Grigorievich Gilels (October 6 (19), 1916, Odessa, Russian Empire - October 14, 1985, Moscow, USSR) - Soviet pianist, music teacher. Hero of Socialist Labor (1976). People's Artist of the USSR (1954). Laureate of the Lenin Prize (1962) and the Stalin Prize of the first degree (1946). +Father of [a=Elena Gilels].Needs Votehttps://www.emilgilels.com/http://www.doremi.com/DiscGilComp.htmlhttps://en.wikipedia.org/wiki/Emil_Gilelshttps://ru.wikipedia.org/wiki/%D0%93%D0%B8%D0%BB%D0%B5%D0%BB%D1%8C%D1%81,_%D0%AD%D0%BC%D0%B8%D0%BB%D1%8C_%D0%93%D1%80%D0%B8%D0%B3%D0%BE%D1%80%D1%8C%D0%B5%D0%B2%D0%B8%D1%87https://100philharmonia.spb.ru/persons/5145/https://www.mosconsv.ru/ru/person/130950E. GilelsE. GilelszE. GuilellsE. GuilelsE. GuillelsE.GilelsEmilEmil CilelsEmil GilelszEmil GilesEmil GiljelsEmil GuilelsEmil GuillelsEmila GilelseEmile GillelsEmile GuilelsEmile GuillelsEmol GuilelsGilelsGilelszGilesGuilelsÉmile GuillelsГилельсЕмиль ГилельсЭ. Г. ГилельсЭ. ГИЛЕЛЬСЭ. ГилельсЭ.ГилельсЭмиль ГилельсЭмиль Григорьевич ГилельсЭмильГилельсЭмиля Гилельсエミル・ギレリスエミール・ギレリス에밀길레스 + +308467Henry GloverHenry Bernard GloverAmerican songwriter, arranger, producer, trumpet player and A&R man. +Born 21 May 1921, Hot Springs, Arkansas, USA +Died 07 April 1991, St. Albans, New York, USA + +Glover's career began as a young trumpet player through high school and college before he joined [a=Buddy Johnson]'s big band in early 1944 on [l=Decca]. It was with [a=Lucky Millinder]'s orchestra, as both a musician and arranger in early 1945, that Glover met [url=http://www.discogs.com/label/King+Records+(3)]King Records[/url] founder [a=Syd Nathan], who hired him as an A&R man. The label became an early pioneer in the cultural and racial integration of American music, from blues and R&B to rockabilly, bluegrass, western swing, and country. + +Glover co-wrote "Blues Stay Away from Me" with [url=http://www.discogs.com/artist/Delmore+Brothers,+The]The Delmore Brothers[/url], covered by [a=Bob Dylan], and became one of the first black producers of country music with his input on "The Hucklebuck" by [l=Rama]'s [url=http://www.discogs.com/artist/Paul+Williams+(9)]Paul Williams[/url]. A 1948 Glover instrumental became the theme tune "Moondog", used by DJ [a=Alan Freed]. At King Glover had a run of recordings on its independent Queen Records label before it merged with King at 1540 Brewster Avenue, where Glover then began a series of successful blues fusion/R&B signings and recordings, later moving on to create Jay & Cee Music publishing and to control King's New York operations. + +It was in New York that Glover departed King to join [a=Morris Levy]'s [l=Roulette Records] label in 1958, helping revive the [l=Gee] label and introduce R&B to Roulette with the likes of [a=Sarah Vaughan] and [a=Ronnie Hawkins]. He helped [a=The Hawks (2)] produce singles as a new Canadian group, which evolved into [a=The Band]. In 1961 Glover had a co-writing hit with "Peppermint Twist" and for a period in the early 1960s Glover managed his own label, 'Glover', recording [a=Louisiana Red] and [a=Titus Turner] among others. Back with King, after Nathan's death in 1968, Glover ran the company- now much reliant on [a=James Brown]'s work- until its takeover by [l=Starday Records]. + +Glover then founded RCO Productions with [a=Levon Helm] in 1975, whilst also producing the Grammy-winning [a=Muddy Waters] Woodstock album and helping arrange [url=http://www.discogs.com/Band-The-Last-Waltz/master/14495]The Last Waltz[/url]. Before his death in 1991 Glover was inducted into the Alabama Jazz Hall of Fame and the Rock and Roll Hall of Fame. He died of a heart attack, survived by his wife Doris, son Ware ([l=Ware Records, Inc.], [l=Jonware Music]) and daughter Syracuse.Needs Votehttps://en.wikipedia.org/wiki/Henry_Gloverhttps://www.zeroto180.org/henry-glovers-monumental-musical-legacy/https://adp.library.ucsb.edu/names/317977B. GloverClaverCleverCloverClover HenryD. GloverDee GloverE. GroverG. GloverG.HenryGloberGlovenGloverGlover -Glover - Dee - LevyGlover Dee LevyGlover H.Glover HenryGlover HerryGlover, HenryGlover, LevyGlover,DGlover/HenryGloverfGlowerGlvoerGroverH CloverH GloverH. B. GloverH. CloverH. FloverH. GloberH. GlovdrH. GloverH. GlowerH. GluverH. GolverH.CloverH.GloverHarry GloverHenery GloverHenri CloverHenri GloverHenryHenry - GlorerHenry - GloverHenry / GloverHenry B GloverHenry B. GloverHenry CloverHenry Glover & His Kings Of SwingHenry Glover And His QuartetHenry GolverHenry GruberHenry OliverHenry/GloverII. GloverInnisJ. GloverJohn GloverKenny GloverM. GloverN. GloverR. GloverRaney GloverГловерグローバーHenry BernardLucky Millinder And His OrchestraHenry Glover & TrioHenry Glover And His QuartetHenry Glover Orchestra + +308512Gianna SpagnuloGiovanna SpagnuloItalian singer, passed away in Roma August 10, 2017.Needs Votehttps://it.wikipedia.org/wiki/Gianna_SpagnuloG. SpagnoloG. SpagnuloGiannaGianna SpagnoloGiovanna SpagnuloGianna (5)Jovanka (3)I Cantori Moderni di AlessandroniI Vocalisti Di Roma + +308654Frankie LymonFranklin Joseph LymonAmerican rock and roll/rhythm and blues singer and songwriter, best known as the boy soprano lead singer of the New York City-based early rock and roll doo-wop group [a=The Teenagers]. +Born: September 30, 1942 Harlem, New York +Died: February 27, 1968 in New York City, U.S. + +He joined The Teenagers at 12, and at 13, led their 1956 hit "Why Do Fools Fall in Love," which topped the R&B charts and reached No. 6 on the pop charts. The group's success continued with songs like "I Want You to Be My Girl" and "I'm Not a Juvenile Delinquent." In 1957, Lymon pursued a solo career, but struggled with heroin addiction, both his career and those of the Teenagers fell into decline. He died of a heroin overdose at 25. + +In 1993, Lymon and The Teenagers were inducted into the Rock and Roll Hall of Fame. Needs Votehttp://en.wikipedia.org/wiki/Frankie_Lymonhttp://history-of-rock.com/lymon.htmF LymonF. LymanF. LymonF.LymanF.LymonFrank Joseph LymonFrank LymanFrank LymonFrankey LymonFrankie LiemanFrankie LumonFrankie LymanFrankie Lymon & The TeenagersFranklin Joseph LymonFranky LymanFranky LymonLeslie GoreLimenLimonLomonLymanLymonR. Lymonפרנקי ליימוןThe TeenagersFrankie Lymon & The TeenagersFrankie Lymon And His All StarsFrankie Lymon And His Sea Breezes + +309123Piet SouerPieter Cornelis SouerDutch guitarist, producer, arranger, and songwriter. Born in Eindhoven, 12th of April 1948. Worked with a lot of Dutch artists like [a=Mouth & MacNeal], [a=Anita Meyer], [a=Luv'] and [a=BZN] a.o. Also with international artists like [a=Vicky Leandros] and [a=Helen Shapiro]. Was very productive in the seventies and eighties with his writing partner [a=Hans van Hemert], as '[a=Janschen En Janschens]'Needs Votehttp://www.pietsouer.nl/https://all-conductors-of-eurovision.blogspot.com/1983/04/piet-souer.htmlC. Piet PieterJanschenJanschensJansenJenschenP SouerP. SauerP. SollerP. SonerP. SouerP. SourP. SouterP. SouwerP. SoverP.SouerPete SouerPiet SauerPiet SaurPiet SonerPiet SourPiet SouwerPieter C. SouerPieter SouerSauerSolerSolleiSollerSonerSouerSourSourerSoverПит Соуерפיט סאוורピット・サウアーScenarioW. OrtelKen TreverisLloyd Watson (3)Janschen En JanschensThe Cavaliers (4)Triple TrackThe Phonogram Money Spenders + +309140Fats DominoAntoine Domino Jr.American rhythm and blues singer, songwriter and pianist, born February 26, 1928 in New Orleans, Louisiana, U.S.A., died October 24, 2017 in Harvey, Louisiana. +Joined the Dave Bartholomew Band in the mid-1940's. Signed to Imperial Records label in 1949. +Appeared in the movies Shake Rattle And Rock!, Jamboree, the Big Beat and The Girl Can't Help It. Multi Grammy winner. +Inducted into Rock And Roll Hall of Fame in 1986 (Performer). +Inducted into Songwriters Hall of Fame in 1998. +Needs Votehttp://en.wikipedia.org/wiki/Fats_Dominohttps://www.facebook.com/officialFATSDominoFANSITE/https://www.youtube.com/channel/UCLdjJaZ9uBnTLsE55x6S2dA?view_as=subscriberhttps://www.fatsdominoofficial.com/https://myspace.com/fatsdominomusichttps://www.allmusic.com/artist/fats-domino-mn0000137494"Fats Domino""Fats" Domino'Fats' Domino<Fats> Antoine DominoA "Fats" DominoA DominoA. "Fast" DominoA. "Fats" DominoA. 'Fats' DominoA. BartholomewA. DominioA. DominoA. Domino JrA. Domino Jr.A. Domino jr.A. Domino, JrA. Domino, Jr.A. Domino,Jr.A. DominoeA. DomonoA. F. DominoA.DominoA.DominoeA.F. DominoAl DominoAnotine DominoeAnt. DominoAntione DominoAntoine " Fats" DominoAntoine "Fats Domino"Antoine "Fats" DominoAntoine "Fats" Domino Jr.Antoine 'Fats' DominoAntoine (Fats) DominoAntoine (Fats} DominoAntoine DomineAntoine DominoAntoine Domino JrAntoine Domino Jr.Antoine Domino, Jr.Antoine DominoeAntoine Fats DominoAntoine « Fats » DominoAntoine, DominoAntoine-DominoAntoinne DominoAnton Fats DominoAntonie "Fats" DominoAntonie DominoAntonine DominoAntonio "Fats" DominoAntonio DominoAntonio Domino Jr.Atoine DominoeDoinoDomineDomingoDominoDomino - AntoineDomino / AntoineDomino AntoineDomino JrDomino Jr.Domino Jun.Domino, AntoineDomino, JrDomino, Jr.Domino-AntoineDominoeF DominoF. DominioF. DominoF. DominoeF.DominoFais DominoFast DominoFat DominoFat's DominoFatsFats Domino'sGros DominodominoФ. ДоминоФатс ДоминоФэтс Доминоファッツ・ドミノFats Domino And His SextetDomino & Bartholomew + +309200Richard Anthony (2)Richard BteshEgyptian-born French singer born January 13, 1938 in Cairo, Egypt and died April 19, 2015 in Pégomas, Alpes-Maritimes, France. Brother of [a1347800].Needs Votehttp://www.richardanthony.com/https://en.wikipedia.org/wiki/Richard_Anthony_(singer)AnothonyAnthonyAnthony R.Anthony RichardCraneM. AnthonyM. AntonyR. AnthonyR. AnthonyR. Anthony (2)R. AnththonyR. AntonyR.AnthonyRichardRichard Anthony Avec ChoeursRichard AntonyР. АнтониРичарда Антониリシャ−ル・アントニ−リシャール・アントニー + +309316Ray CrawfordAmerican jazz guitarist +Born 7 February 1924 in Pittsburgh, PA, USA, died 30 December 1997 in Los Angeles, CA, USA + +Guitarist Ray Crawford began his career playing tenor sax and clarinet. While living in Pittsburgh, he started a group with Art Blakey. He performed with Fletcher Henderson from 1941 to 1943. Struck by tuberculous he was forced to give up woodwinds. He switched to guitar and became a key member of Ahmad Jamal's early trios from 1949 through 1955. With Jamal he was noted for his percussive bongo-like guitar sound that was adopted by Herb Ellis. After his stint with Jamal, Crawford recorded with Gil Evans in 1959 and 1960. Settling in LA in the 60's he drove around in a converted ice cream truck and became an avid tennis player. From 1958 through the '80's Crawford recorded and toured with Jimmy Smith. During his career he also recorded with Tom Waits, Lou Rawls, Curtis Amy, Richard 'Groove Holmes, Ray Charles and more. Crawford also had several solo releases including: Smooth Groove (1961) and Doubletimes (2003). He died on Dec. 30, 1997 in Los Angeles.Needs VoteCrawfordH. Ray CrawfordR. CrawfordRay CramfordRay CrwfordRoy CrawfordGil Evans And His OrchestraAhmad Jamal TrioJimmy Smith TrioThe Ahmad Jamal Quintet + +309765Hadley CalimanAmerican jazz tenor saxophonist and flute player. + +Born: January 12, 1932, in Idabel, Oklahoma, USA +Died: September 8, 2010, in Seattle, Washington, USA + +Hadley played (among others) with Dexter Gordon, Freddie Hubbard, Joe Henderson, Earl Hines, Jon Hendricks, Earl Anderza, and Carlos Santana.Needs Votehttp://www.hadleycaliman.com/CalimanH. CalimanHadleyHardey CalimanBill Summers & Summers HeatGerald Wilson OrchestraBobby Bryant SextetSeattle Repertory Jazz OrchestraThe DePriest Project + +309767Kenneth NashKenneth Earl NashPercussionist, songwriter, producer, engineer, owner of [l=Nash Studios], Oakland, CANeeds Votehttp://kennethnash.com/https://www.facebook.com/kenneth.nash.92K. NashKen NashKenneth Nash And NeighboursKenneth WashKenny NashNashWoody Herman And His OrchestraSolar Plexus (7)The Pyramids (3)Michael White's Magic Music CompanyMichael White QuartetWoody Herman And The Thundering Herd + +309874Joe NewmanJoseph Dwight NewmanAmerican jazz trumpeter and composer. + +Born: 7 September 1922 in New Orleans, Louisiana. +Died: 4 July 1992 in New York, New York. + +Member of Lionel Hampton's orchestra in 1941/1942, and - with some interruptions - a member of Count Basie's orchestra from December 1943 until January 1961. In 1961 he co-founded [i]Jazz Interactions[/i], a New York-based organisation promoting jazz on an educational basis which he would later be president of.Needs Votehttps://en.wikipedia.org/wiki/Joe_Newman_(trumpeter)https://www.radioswissjazz.ch/en/music-database/musician/247031f7c075e0384bf2e96bce32fe4a65b3c/biographyhttps://nationaljazzarchive.org.uk/explore/interviews/1277503-joe-newman-interview-1?https://nmaahc.si.edu/object/nmaahc_2012.164.130https://adp.library.ucsb.edu/names/207262J. NewmanJ. NewmannJ.NewmanJo NewmanJoe NewmaJoe NewmannJoe NewsmanJohn NewmanJoseph D. NewmanJoseph Dwight "Joe" NewmanJoseph NewmanL.NewmanNewmanNewman, Joeジョー・ニューマンQuincy Jones And His OrchestraCount Basie OrchestraCount Basie ComboWoody Herman And His OrchestraThe Ray Bryant ComboLionel Hampton And His OrchestraAndy Kirk And His Clouds Of JoyJ.C. Heard And His OrchestraIllinois Jacquet And His OrchestraSy Oliver And His OrchestraIllinois Jacquet And His All StarsSonny Stitt BandLeo Parker's All StarsPaul Quinichette And His OrchestraLionel Hampton And His All-Star Alumni Big BandCount Basie Big BandOliver Nelson And His OrchestraThe Phoenix AuthorityCount Basie SextetThe Ernie Wilkins OrchestraRay Brown All-Star Big BandMilt Jackson SextetManny Albam And His Jazz GreatsJoe Newman SextetAl Cohn's Natural SevenWoody Herman And The Swingin' HerdRussell Jacquet And His All StarsRalph Burns And His OrchestraJoe Newman OctetJoe Newman & His BandAl Cohn And His OrchestraThe Jazz All-StarsThe Nat Pierce OrchestraJimmy Smith And The Big BandJoe Newman QuartetJoe Newman And The Count's MenThe Frank Wess OrchestraThe Frank Wess - Harry Edison OrchestraThe Joe Newman SeptetBillie Holiday And Her Lads Of JoyJoe Newman & The ComboLionel Hampton & His Giants Of JazzThe Quincy Jones Big BandBob Brookmeyer And His OrchestraAl Cohn And His "Charlie's Tavern" EnsembleThe Count's MenGary McFarland & Co.The Billy Byers-Joe Newman SextetJoe Newman QuintetJoe Newman And His OrchestraOliver Nelson QuintetJoe Newman And The Boys In The BandBuddy Rich All StarsLeo Parker QuintetteBuddy Rich EnsembleJazz Studio OneCount Basie And His NonetJoe Newman - Frank Foster QuintetBilly Byers Sextet + +309962Original Dixieland Jazz BandJazz band consisting of five New Orleans musicians, founded in Chicago in 1916. On February 26, 1917 they recorded the first jazz record ever for the Victor Talking Machine Company, which was released in May, 1917. Soon after their first release, the Original Dixieland Jass Band changed their name to Original Dixieland Jazz Band. In 1918 they came to be the very first ever jazz band to perform in Europe. Band remained active till 1925. +The five original members of the Original Dixieland Jazz Band were: +[a326830] (cornet and director) +[a326853] (trombone) +[a326793] (clarinet) +[a412532] (piano) +[a326844] (drums)Correcthttp://en.wikipedia.org/wiki/Original_Dixieland_Jass_Bandhttp://www.odjb.com/http://www.redhotjazz.com/odjb.htmlhttps://adp.library.ucsb.edu/names/105432(Original Dixieland) Jazz BandD. J.Die Original Dixieland Jass-BandDix. Jazz BandDixie Jazz BandDixieland BandDixieland Jass BandDixieland Jazz BandDr. Dixieland Jazz BandEddie Edwards Original Dixieland Jazz BandJ. B. LaRoccaJimmy Larocca's Original Dixieland Jazz BandL'Original "Jazz" De DixieNick La Rocca And His Original Dixieland Jazz BandNick La Rocca And The Original Dixieland BandNick La Rocca And The Original Dixieland Jazz BandNick LaRocca And The Original Dixieland BandO. D. J. B.O.D. J. B.O.D.J.B.O.J.D.B.ODJBOdjbOr. Dix. JazzbandOr. Dixieland JazzbandOrginal Dixieland BandOrig. Dix. JazzbandOrig. Dixiel. Jazz BandOrig. DixielandOrig. Dixieland BandOrig. Dixieland JBOrig. Dixieland Jazz BandOrig. Dixieland JazzbandOrig. DixilandOrig. Dixiland JazzbandOriginal Dixie LandOriginal Dixie Land Jazz BandOriginal Dixieland "Jass" BandOriginal Dixieland "Jazz" BandOriginal Dixieland 'Jass' BandOriginal Dixieland <<Jass>> BandOriginal Dixieland <<Jazz>> BandOriginal Dixieland BandOriginal Dixieland FiveOriginal Dixieland Jass BandOriginal Dixieland JassbandOriginal Dixieland Jazz Band TheOriginal Dixieland Jazz Band, TheOriginal Dixieland Jazz BandsOriginal Dixieland Jazz-BandOriginal Dixieland JazzbandOriginal Dixieland OrchestraOriginal DixilandOriginal Jazz-Band DixielandOriginal The Dixieland Jazz BandOrtginal Dixie LandThe Dixie-Land Jazz BandThe O.D.J.B.The Orig. Dixieland Jazz BandThe Original Dixie Land Jass BandThe Original Dixieland BandThe Original Dixieland FiveThe Original Dixieland Five (Original Dixieland Jazz Band)The Original Dixieland Jass BandThe Original Dixieland Jazz BandThe Original Dixieland JazzbandОриджинел Диксиленд Джасс Бэнд п/у Н. Ла Роккаディキシーランド・ジャズL'Orchestre Jazz-Band Du GramophoneBobby HackettJack LesbergFrank SignorelliMax KaminskyEddie CondonHenry VaniselliArthur SeabergLarry ShieldsDon ParkerNick LaRoccaTony SbarbaroEddie EdwardsBob CaseyGene SchroederWild Bill DavisonEmile ChristianHenry RagasJ. Russel RobinsonBret GowensTeddy RoyBilly Jones (11)Tony Spargo + +309966King Oliver's Creole Jazz BandNeeds Votehttps://syncopatedtimes.com/king-olivers-creole-jazz-band/"King" Oliver's Creole Jazz BandKing Oliver & His Creole Jazz BandKing Oliver And His Creole Jazz BandKing Oliver And His Jazz BandKing Oliver And The Creole Jazz BandKing Oliver Creole Jazz BandKing Oliver Créole Jazz BandKing Oliver's Creole JazzbandKing Oliver's Jazz BandKing Oliver's JazzbandKing Olivier's Creole Jazz BandKingolivers Creole Jazz BandThe King Oliver Creole Jazz BandThe King Oliver's Creole Jazz BandКреольский Джаз-Бэнд п/у К. ОливераKing Oliver's Jazz BandLouis ArmstrongBuster BaileyJohnny St. CyrJohnny DoddsKing OliverLil Hardin-ArmstrongBaby DoddsBill Johnson (4)Lee Collins (2)Stump EvansHonore Dutrey + +309971New Orleans WanderersName of the band under which Lil Hardin recorded with members of Louis Armstrong's Hot Five on a 1926 session for Columbia Records. +Louis Armstrong himself was unable to appear since he was under contract to Okeh, although he collaborated with Hardin on three of the four songs. His place was taken by George Mitchell. Four further songs were released by the same musicians under the name New Orleans Bootblacks.Needs Votehttps://en.wikipedia.org/wiki/New_Orleans_Wanderershttps://adp.library.ucsb.edu/names/105564Johnny Dodds' New Orleans WanderersNew Orleans WandersNew Orleans WonderersThe New Orleans WanderersThe WanderersNew Orleans BootblacksKid OryJohnny St. CyrJohnny DoddsLil Hardin-ArmstrongGeorge Mitchell (3) + +309976Jelly Roll MortonFerdinand Joseph Morton né LaMotheAmerican pianist and composer often considered as the first true composer of jazz music (which he claimed to have invented) who was the leader of the Red Hot Peppers, a seven or eight-piece group, from 1926 to 1930. +Born Ferdinand Joseph LaMothe on September 20, 1885 or October 20, 1890 in New Orleans, Louisiana, USA. Died July 10, 1941 in Los Angeles, California, USA. +His birth name was changed to Morton when he was three years old and his mother married again. In WW I, he was drafted as Ferd Joseph Morton. + +Inducted into Rock And Roll Hall of Fame in 1998 (Early Influence).Needs Votehttps://en.wikipedia.org/wiki/Jelly_Roll_Mortonhttps://www.ascap.com/repertory#/ace/writer/21585796/MORTON%20FERDINAND%20JOSEPHhttp://www.doctorjazz.co.uk/jrmdraftf.jpghttps://www.britannica.com/biography/Jelly-Roll-Mortonhttps://www.scaruffi.com/jazz/morton.htmlhttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/jelly-roll-mortonhttps://adp.library.ucsb.edu/names/101896"Elly Roll" Morton"Ferd" Jelly Roll Morton"Jelly Roll" Morton"Jellyroll" Morton'Jelly Roll' Morton(Ferd Jelly Roll) Morton(Jelly Roll) MortonF "Jelly Roll" MortonF MortonF. MortonF. "Jelly Roll" MortonF. "Jelly-Roll" MortonF. "Jellyroll" MortonF. "Jerry Roll" MortonF. ''Jelly Roll'' MortonF. 'Jelly Roll' MortonF. (Jelly Roll) MortonF. <Jelly Roll> MortonF. J. MortonF. J. R. MortonF. Jelly Roll MortonF. MortonF. j R. MortonF. „Jelly Roll” MortonF.J. MortonF.J.R. MortonF.MortonFer. "Jelly Roll" MortonFerd "Jelly Roll" MortonFerd "Jelly Roll" MortonnFerd "Jellyroll" MortonFerd 'Jelly Roll' MortonFerd (Jelly Roll) MortenFerd (Jelly Roll) MortonFerd (Jelly-Roll) MortonFerd (Jerry Roll) MortonFerd *Jelly Roll* MortonFerd / MortonFerd Jelly Roll MortonFerd Jelly-Roll MortonFerd MortonFerd" Jelly Roll MortonFerd, MortonFerd-MortonFerd. "Jelly Roll" MortonFerd. "Jellyroll" MortonFerd. (Jelly Roll) MortonFerd. (Jelly-Roll) MortonFerd. A. MortonFerd. MortonFerdinand "Jell-Roll" MortonFerdinand "Jelly Roll MortonFerdinand "Jelly Roll" MortonFerdinand "Jelly Roll" Morton" MentheFerdinand "Jelly" RollFerdinand "Jelly" Roll MortonFerdinand "Jelly-Roll" MortonFerdinand "jelly Roll" MortonFerdinand 'Jelly Roll MortonFerdinand 'Jelly Roll' MortonFerdinand (Jelly Roll) MortonFerdinand <<Jelly Roll>> MortonFerdinand J MortonFerdinand J. "Jelly Roll" MortonFerdinand J. MortonFerdinand Jelly Roll MortonFerdinand JosephFerdinand Joseph "Jell Roll" MortonFerdinand Joseph "Jelly Roll" MortonFerdinand Joseph "Jellyroll" MortonFerdinand Joseph MortonFerdinand MortonFerdinand «Jelly Roll» MortonFerninand "Jelly Roll" MortonFord "Jelly Roll" MortonFord (Jelly Roll) MortenFord MortonFred "Jelly Roll" MortonFred "Jelly Roll' MortonFred 'Jelly Roll' MortonFred (Jelly Roll) MortonFred Jelly Roll MortonFred Jelly-Roll MortonFred MortonFred. (Jelly Roll) MortonGerald MortonH MortonI. R. MortonJ MortonJ Roll MortonJ-R MortonJ. MortenJ. MortonJ. R. MortonJ. R. MortonJ. R.MortonJ. Roll MortonJ.-R. MortonJ.-R.MortonJ.B. MortonJ.F. MortonJ.M. MortonJ.R MortonJ.R. MortonJ.R. MartonJ.R. MortonJ.R.M.J.R.MortonJ.RollJRMJellyJelly "Roll" MortonJelly 'Role' MortonJelly 'Roll' MortonJelly - Roll MortonJelly R. MortonJelly Rol MortonJelly RollJelly Roll & MortonJelly Roll MartonJelly Roll Morton Piano Solo With Clarinet & TrapsJelly Roll, MortonJelly Roll-MortonJelly Rolly MortonJelly, MortonJelly-MortonJelly-Roll MortonJellyroll MortonJenny Roll MortonJerry Roll MortonJoseph F. MortonJoseph Ferdinand MortonJoseph MortonMartinMertonMortenMortomMortonMorton Ferdinand JosephMorton, Jelly Roll FredMotonNortonP. MortonYello-Roll Morton«Jelly - Roll» Morton«Jelly-Roll» Morton»Jelly Roll« MortonД. МортонДж. "Ролл" МортонМортонFerdinand JosephJelly Roll Morton's Red Hot PeppersJelly Roll Morton TrioJelly Roll Morton's New Orleans JazzmenJelly Roll Morton's Hot SixJelly Roll Morton's Hot SevenJelly Roll Morton And His OrchestraJelly Roll Morton's Stomp KingsJelly Roll Morton's QuartetJelly Roll Morton's Kings Of JazzJelly Roll Morton's IncomparablesJelly Roll Morton All StarsJohnny Dunn And His Jazz BandJelly Roll Morton's Steamboat FourJelly Roll Morton And His Jazz TrioLevee SerenadersSt. Louis Levee BandJohnny Dunn And His BandThe Morton Sextet + +309977Taft JordanJames Taft JordanAmerican jazz trumpeter, born February 15, 1915 in Florence, South Carolina, died December 1, 1981 in New York. +Jordan was heavily influenced by [a=Louis Armstrong].Needs Votehttp://en.wikipedia.org/wiki/Taft_Jordanhttps://www.allmusic.com/artist/taft-jordan-mn0000790235/biographyhttps://dbpedia.org/page/Taft_Jordanhttp://worldcat.org/identities/lccn-no93030470/https://adp.library.ucsb.edu/names/109773James "Taft" JordanJames JordanJames JordonJames T. JordanJames Taft JordanJordanT. JordanTaft GordonTaft JardanTaft Jordan And His MobTaft JordonTaft, JordanGil Evans And His OrchestraDuke Ellington And His OrchestraChick Webb And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraThe Duke's MenElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraSlim Gaillard And His Southern Fried OrchestraAlabama Washboard StompersMiles Davis + 19Sonny Greer And The Duke's MenWillie Bryant And His OrchestraGeorge Williams And His OrchestraHoward Biggs OrchestraThe International Jazz GroupThe Fletcher Henderson All StarsTab Smith SeptetteHarry Carney's All StarsTaft Jordan And The MobBeulah Bryant's Thin Men + +309978Francis WilliamsAmerican jazz trumpeter. +Played with : [a253482], [a31615], [a145257] and others. +In January 1975 formed his group called "Franc Williams Swing Four". + + +Born : September 20, 1910 in McConnell's Mills, Pennsylvania. +Died : October 02, 1983 in Houston, Pennsylvania. +Needs Votehttps://en.wikipedia.org/wiki/Francis_Williams_(musician)https://www.allmusic.com/artist/francis-williams-mn0000185641https://adp.library.ucsb.edu/index.php/mastertalent/detail/351010/Williams_FrancisF. WilliamsFancis "Franc" WilliamsFranc WilliamsFrancis "Franc" WilliamsFrancis WilliamNelson WilliamsWilliamsDuke Ellington And His OrchestraThe Harlem Blues & Jazz BandPanama Francis And The Savoy Sultans + +309979Muggsy SpanierFrancis Joseph Julian SpanierAmerican jazz cornetist, trumpeter and bandleader. +Nickname : "Muggsy". + +Born : November 09, 1906 in Chicago, Illinois. +Died : February 12, 1967 in Sausalito, California. +Needs Votehttp://en.wikipedia.org/wiki/Muggsy_Spanierhttp://www.imdb.com/name/nm0816835/https://www.allmusic.com/artist/muggsy-spanier-mn0000605992https://adp.library.ucsb.edu/names/103496https://adp.library.ucsb.edu/names/103497"Mugsy" Spanier'Muggsy' SpanierFrancis "Muggsy" SpanierFrancis Joseph "Muggsie" SpanierFrancis Joseph "Muggsy" SpanierM. SpanierM.S.MuggsyMuggsy Spanier Y Sus AmigosMuggsy SpannerMuggy SpanierMuggzy SpanierMugsey SpanierMugsy SpanierMugsy SpannerSpainierSpanierNew Orleans Rhythm KingsMuggsy Spanier's Ragtime BandEddie Condon And His OrchestraBob Crosby And The Bob CatsThe Mound City Blue BlowersMuggsy Spanier And His RagtimersEddie Condon And His BandMuggsy Spanier And His Jazz BandRay Miller And His OrchestraThe Bechet / Spanier Big FourTed Lewis And His BandRed McKenzie And The Celestial BeingsMuggsy Spanier And His Dixieland BandMuggsy Spanier And His All StarsCharles Pierce And His OrchestraChicago Rhythm KingsChick Bullock & His Levee LoungersMuggsy Spanier And His OrchestraThe Stomp SixPee Wee Russell RhythmakersJungle Kings (2)The Bucktown FiveMuggsy Spanier GroupPee Wee Russell Jazz EnsembleMuggsy Spanier And His V-Disc All StarsMuggsy Spanier And His BandMuggsy Spanier And His V-Disc DixielandersThe "This Is Jazz" All-StarsJam Session At CommodoreEarl Hines / Muggsy Spanier All Stars + +309980Sidney De ParisJazz trumpeter, born 30 May 1905 in Crawfordsville, Indiana, died 13 September 1967 in New York City. +Brother of [a=Wilbur De Paris].Needs Votehttp://en.wikipedia.org/wiki/Sidney_De_Parishttps://www.allmusic.com/artist/sidney-deparis-mn0000027488/biographyhttps://www.worldcat.org/identities/lccn-n91049777/https://adp.library.ucsb.edu/names/106326De ParisDeParisParisS. DeParisS. de ParisSid De ParisSidney DeParisSidney de ParisSidney deParisSydney De ParisSydney DeParisde ParisMcKinney's Cotton PickersSidney Bechet And His Blue Note Jazz MenAndy Preer And The Cotton Club OrchestraWilbur De Paris And His OrchestraWilbur De Paris And His New Orleans Jazz BandBenny Carter And His OrchestraMezz Mezzrow And His OrchestraJelly Roll Morton's New Orleans JazzmenEdmond Hall's Blue Note JazzmenJames P. Johnson's Blue Note JazzmenSidney Bechet And His New Orleans FeetwarmersDon Redman And His OrchestraWilbur De Paris And His New New Orleans JazzSidney Bechet & His All Star BandCharlie Johnson & His OrchestraChris Barber's American Jazz BandSidney DeParis' Blue Note JazzmenCharlie Johnson & His Paradise BandDe Paris Brothers OrchestraSidney Bechet & His Hot SixLem Fowler's Washboard WondersWilbur De Paris And His Rampart Street RamblersWillie "The Lion" Smith & His OrchestraJ.C. Higginbotham's Big Eight + +309982Harold BakerHarold J. BakerAmerican jazz trumpet player, nicknamed "Shorty", born May 26, 1914 in St. Louis, Missouri, died November 8, 1966 in New York City +Baker was also known to double on piano. He worked with [a=Erskine Tate] (early 1930s), [a=Don Redman] (1936-1938) before joining [a=Andy Kirk And His Clouds Of Joy] (1940-1942). +Married [a=Mary Lou Williams] in 1942.Needs Votehttp://en.wikipedia.org/wiki/Shorty_Bakerhttps://www.allmusic.com/artist/harold-baker-mn0000665171/creditshttps://www.radioswissjazz.ch/en/music-database/musician/236501007db9c61f0a68e113af9736d518edf/biographyhttps://adp.library.ucsb.edu/names/107198"Shorty" BakerBakerH. BakerH. J. BakerH.J. BakerHal BakerHarold "Shorty" BakerHarold 'Shorty' BakerHarold (Shorty) BakerHarold Jones BakerHarold Shorty BakerHerold BakerHoward BakerS. BakerShortyShorty BakerХ. БейкерShorty BakerDuke Ellington And His OrchestraAndy Kirk And His Clouds Of JoyTeddy Wilson And His OrchestraJohnny Hodges And His OrchestraHarold Baker And His Duke's MenMary Lou Williams And Her OrchestraMary Lou Williams And Her Kansas City SevenBilly Strayhorn's SeptetThe Mainstream SextetGeorge Wein And The Storyville SextetBooty Wood And His AllstarsDuke Ellington All Star Road BandHarold Baker QuartetAl Hall QuartetRussell Procope's Big SixBilly Kyle And His OrchestraEddie Johnson's CrackerjacksThe Duke's TrumpetsHarry Carney's All StarsErskine Butterfield QuartetJohnny Hodges Septet + +309983Cat AndersonWilliam Alonzo AndersonAmerican jazz trumpet player, born September 12, 1916 in Greenville, South Carolina, died April 29, 1981 in Norwalk, California, USA + +Needs Votehttps://en.wikipedia.org/wiki/Cat_Andersonhttps://www.allmusic.com/artist/cat-anderson-mn0000199369/biographyhttps://wusfjazz.org/saturday-all-night-jazz-remembers-trumpet-legend-cat-anderson/https://www.radioswissjazz.ch/en/music-database/musician/13250c55df1eeda08157db55ea7fc5fa7e715/biographyhttps://www.imdb.com/name/nm5991335/https://adp.library.ucsb.edu/names/106397"Cat "Anderson"Cat" Anderson"Cat" Johnson"Cat' Anderson''Cat'' AndersonAdersonAndersonBill AndersonC. AndersonC.AndersonCACat AndersdonCat HendersonEl GatoW. AndersenW. AndersonW. C. AndersonW.AndersonW.C. AndersonWiilliam 'Cat' AndersonWiliam "Cat" AndersonWilliam "Cat" AndersonWilliam "Cat" AndersonWilliam "Cat" JohnsonWilliam 'Cat' AndersonWilliam (Cat) AndersonWilliam Alonzo "Cat" AndersonWilliam Alonzo (Cat) AndersonWilliam AndersonWilliam Cat AndersonWilliam « Cat » AndersonWilliam «Cat» AndersonWilliam “Cat” AndersonWilliams "Cat" AndersonWilliams 'Cat' AndersonWillie "Cat" AndersonWillie "The Cat" AndersonWillie (Cat) AndersonWillie Anderson« Cat » Anderson«Cat» AndersonКэт ЭндерсонУильям «Кэт» ЭндерсонDuke Ellington And His OrchestraLionel Hampton And His OrchestraLionel Hampton And His All-Star Alumni Big BandLionel Hampton & His Giants Of JazzDuke Ellington OctetDuke Ellington All Star Road BandBill Berry And The LA BandLawrence Brown's All-StarsThe Coronets (3)Cat Anderson And His OrchestraJohnny Hodges & His Big Band + +309984King OliverJoseph Nathan OliverEarly jazz cornet player and band leader, born May 11, 1885 in New Orleans, died April 8 or 10, 1938 in Savannah, Georgia +Oliver began his professional career in 1904 with the Onward Brass Band. After playing with leading bands in New Orleans and establishing himself as a master cornetist, he moved to Chicago in 1918. From 1920 to 1923 he led the Creole Jazz Band, which became the greatest exponent of the New Orleans jazz idiom. Oliver's style was noted for its bursting, exuberant power and its great range. He strongly influenced [a=Louis Armstrong].Needs Votehttps://en.wikipedia.org/wiki/King_Oliverhttps://64parishes.org/entry/king-oliverhttps://www.britannica.com/biography/King-Oliverhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/240110dbbc8acdeba9fafa3e12f3d6a3c177e1/biographyhttps://www.scaruffi.com/jazz/oliver.htmlhttps://www.treccani.it/enciclopedia/oliver-joe-detto-king/https://www.imdb.com/name/nm8059973/https://adp.library.ucsb.edu/index.php/mastertalent/detail/104809/Oliver_King"King" OliverArmstrongJ 'King' OliverJ OliverJ. "King" OliverJ. 'King' OliverJ. K. OliverJ. King OliverJ. OliverJ. OlliverJ. «King» OliverJ. „King" OliverJ. „King” OliverJ.K OliverJ.K. OliverJ.K.OliverJ.OliverJ.„King“ OliverJKOJoe "KING" OliverJoe "King" OliverJoe 'King' OliverJoe (King) OliverJoe King OliverJoe OliverJoe Oliver (King)Joe «King» OliverJoe “ King ” OliverJoe „King" OliverJoe „King“ OliverJoesph "King" OliverJohn "King" OliverJos. OliverJoseph "King" OliverJoseph ''King'' OliverJoseph 'King' OliverJoseph King OliverJoseph OliverJoseph Oliver (King)Joê OlivierK. OliverK.O.K.OliverKingKing (Joseph) OliverKing J OliverKing Joe OliverKing Oliver'sOliverOliver J.Oliver j.Oliver, JosephOliver, Joseph KingOliversOlivierOlliverS. Oliverjoe oliverД. ОливерДж. ОливерДжо ОливерЖ. ОливерК. ОливерКинг ОливерОливерKing Oliver & His Dixie SyncopatorsKing Oliver's Creole Jazz BandClarence Williams' Novelty FourClarence Williams' Blue FiveKing Oliver's Jazz BandKing Oliver & His OrchestraClarence Williams And His OrchestraBlind Willie Dunn & His Gin Bottle FourClarence Williams Jazz Band + +309986Fats NavarroTheodore Navarro, Jr.American jazz trumpeter +Born September 24, 1923, Key West, Florida, USA +Died July 7, 1950, New York City, New York, USA +Active in the bebop movement..Needs Votehttp://csis.pace.edu/~varden/navarro/navarro.htmlhttp://www.jazztrumpetsolos.com/Fats_Navarro_Biography.asphttps://www.bluenote.com/artist/fats-navarro/https://adp.library.ucsb.edu/names/372316https://en.wikipedia.org/wiki/Fats_Navarro"Fats" Navarro"Slim Romero" Fats Navarro'Fats' NavarroF. NavaroF. NavarroF.NavarroFat NavarroFats Navarro SextetNavarroNovarroT. "Fats" NavarroT. NavarroThe Fabulous Fats NavarroThedore "Fats" NavarroTheo. NavarroTheodore "Fats" NavarroTheodore 'Fats' NavarroTheodore Fats NavarroTheodore NavarroThos. NavarroSlim RomeroThéodore De NavarreDizzy Gillespie And His OrchestraMetronome All StarsFats Navarro QuintetColeman Hawkins All Star BandThe Tadd Dameron SextetBilly Eckstine And His OrchestraTadd Dameron And His OrchestraIllinois Jacquet And His OrchestraColeman Hawkins And His OrchestraDexter Gordon And His BoysBenny Goodman SeptetIllinois Jacquet And His All StarsEddie Davis And His BeboppersAndy Kirk And His OrchestraBud Powell's ModernistsFats Navarro And His Thin MenFats Navarro And His OrchestraThe Howard McGhee-Fats Navarro SextetBarry Ulanov And His All Star Metronome JazzmenBe Bop BoysMcGhee-Navarro BoptetTadd Dameron SeptetColeman Hawkins All StarsKenny Clarke And His 52nd Street BoysFats Navarro And His Bop BoysDon Lanphere QuintetFats Navarro And His BandEarl Coleman And His All StarsFats Navarro Quartet + +309987Serge ChaloffAmerican jazz baritone saxophonist. +Born November 24, 1923 in Boston, Massachusetts. +Died July 16, 1957 in Boston, Massachusetts. +Son of [a2497809] and Margaret Chaloff, née Stedman (known professionally as Madame Chaloff), both music educators. +Needs Votehttps://en.wikipedia.org/wiki/Serge_Chaloffhttps://jazzbarisax.com/baritone-saxophonists/bop-style/serge-chaloff/https://www.mmone.org/serge-chaloff/https://www.jazzmusicarchives.com/artist/serge-chaloffhttps://www.allmusic.com/artist/serge-chaloff-mn0000001163https://www.treccani.it/enciclopedia/serge-chaloff/https://adp.library.ucsb.edu/index.php/mastertalent/detail/201748/Chaloff_Sergehttps://adp.library.ucsb.edu/names/201748ChaloffS. ChaloffS.ChaloffSergeSerge ChafoffSerge ChaleffSerge CharloffCount Basie OrchestraWoody Herman And His OrchestraMetronome All StarsJimmy Dorsey And His OrchestraBoyd Raeburn And His OrchestraRalph Burns QuintetSerge Chaloff-Ralph Burns SeptetGeorgie Auld And His OrchestraThe Four Brothers (2)Count Basie OctetThe Serge Chaloff SextetRed Rodney's Be-BoppersSonny Berman's Big EightSerge Chaloff And The Herd MenSerge And His Be Bop BuddiesOscar Pettiford And His 18 All StarsWoody Herman & The Second HerdSerge Chaloff's All StarsBill Harris Big EightThe Serge Chaloff OrchestraSerge Chaloff Quartet + +309988Paul GonsalvesPaul GonsalvesAmerican jazz tenor saxophone player. + +Born: 12 July 1920 in Boston, Massachusetts, USA. +Died: 14 May 1974 in London, England, UK (aged 53). + +Gonsalves joined [a=Count Basie]'s band in 1946, was briefly in [a64694]'s big band (1949-1950) before joining [a145257]. The long improvisation on "Diminuendo And Crescendo in Blue" at the Newport Jazz Festival in 1956 led to a comeback for Ellington's orchestra as a whole. Gonsalves stayed with Ellington for the rest of his career, but also recorded prolifically as a soloist with other groups and as a leader. Died nine days before Ellington, who was never told Gonsalves had died. + +Father of [a76115] band member [a409492]. +Needs Votehttp://www.allaboutjazz.com/php/musician.php?id=7099https://en.wikipedia.org/wiki/Paul_Gonsalveshttp://www.paulgonsalves.com/bio.htmlhttps://www.ripopmusic.org/musical-artists/musicians/paul-gonsalveshttps://adp.library.ucsb.edu/names/318219GonsalvesGonsalvezGonzalvesP. GonsalesP. GonsalvesP. GonzalvesPGPaul GansalvesPaul GonsalezPaul GonsalnesPaul GonsalvePaul Gonsalves (Solo)Paul GonsalvezPaul GonsalvèsPaul GonslavesPaul GonzalasPaul GonzalesPaul GonzalvesPaul GonzalvezП. ГонзалвесПол ГанзалвесПол ГонсалвесCount Basie OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraDuke Ellington And His OrchestraPaul Gonsalves QuartetCount Basie, His Instrumentalists And RhythmThe Ernie Wilkins OrchestraWoody Herman And The Swingin' HerdDuke Ellington And His Jazz GroupDuke Ellington's SpacemenDuke Ellington OctetAndy Gibson And His OrchestraEmmett Berry SextetBooty Wood And His AllstarsDuke Ellington All Star Road BandPaul Gonsalves SextetLawrence Brown's All-StarsThe Coronets (3)Paul Gonsalves - Clark Terry QuintetJohnny Hodges & His Big BandLatin American MusicThe Paul Gonsalves All StarsPaul Gonsalves And His OrchestraFestival All-Stars + +309989Al SearsAlbert Omega SearsAmerican jazz saxophonist (tenor and baritone) and bandleader. +Born : February 21, 1910 in Macomb, Illinois. +Died : March 23, 1990 in New York City, New York. + +Brother of sax player Marion Sears. His first important professional engagement found Al Sears in [a294491]'s orchestra (1928) replacing [a258460]. Following that he played with [a669268] (1931-32) and between 1933 and 1941 Sears was the leader of his own groups. He then united with [a270023]'s orchestra (1941-42) and with [a136133] (1943-44). In 1944 he replaced [a257115] in [a145257]'s orchestra where Sears became one of its greatest soloists. Sears left Duke in 1949 and was replaced by [a309988]. Sears then played with [a258460] (1951-52) and then enjoyed a long career as leader of his own bands, playing Jazz, R&B and Rock & Roll. He died in 1990. +Needs Votehttps://en.wikipedia.org/wiki/Al_Searshttps://www.wimuseum.org/al-sears/https://www.radioswissjazz.ch/en/music-database/musician/13252c48e9197c5c03422a471354cf3bf4175/discographyhttps://www.spontaneouslunacy.net/artists-al-sears/https://wikivisually.com/wiki/Al_Searshttps://www.allmusic.com/artist/al-sears-mn0000611743/discographyhttps://adp.library.ucsb.edu/names/109665"Big" Al Sears'Al' Sears'Big' Al SearsA. SearsAl Sears And The SparrowsAl Sears SwingsAlbert SearsAll SearsAn Al Sears ProductionBig "Al" SearsBig Al SearsFearsSearsDuke Ellington And His OrchestraLionel Hampton And His OrchestraAndy Kirk And His Clouds Of JoyJay McShann And His OrchestraJohnny Hodges And His OrchestraZack Whyte & His Chocolate Beau BrummelsRex Stewart's Big EightAl Sears And His OrchestraAl Sears And His Rock 'N' RollersAl Sears QuintetMercer Ellington OctetThe Al Sears All Stars + +309990Herschel EvansUS Jazz saxophonist (1909 -1939). Died from a heart ailment. +Occasionally known to play clarinet. + +Born : May 01, 1910 in Temple, Texas. +Died : February 09, 1939 in New York City, New York. +Needs Votehttp://www.tshaonline.org/handbook/online/articles/EE/fev3.htmlhttp://en.wikipedia.org/wiki/Herschel_Evanshttps://www.allmusic.com/artist/herschel-evans-mn0000954083/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/55293397946a62886e9f70b2e457c6de0ff79/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/203048/Evans_HershalEvansH. EvansH. HerschelH.EvansHersal EvansHerschal EvansHerschelHershal EvansHershel EvansHershell EvansHershval EvansХ. ЭвансCount Basie OrchestraHarry James And His OrchestraCount Basie BandMildred Bailey And Her OrchestraTroy Floyd And His Shadowland Orchestra + +309991Arnett CobbArnette Cleophus CobbsArnett Cobb (born August 10, 1918, Houston, Texas, USA - died March 24, 1989, Houston, Texas, USA) was an American jazz tenor saxophonist and bandleader. He played with [a3135338], [a=Milt Larkin], [a136133], and in his own group. + +Needs Votehttps://en.wikipedia.org/wiki/Arnett_Cobbhttps://www.jazzdisco.org/arnett-cobb/discography/https://www.allmusic.com/artist/arnett-cobb-mn0000929707https://adp.library.ucsb.edu/names/308954A. CobbsA. CobbA. CobbsA.CobbArnet CobbArnett CobbsArnette CobbArnette CobbsCobbCobb, ArnettCobbsLionel Hampton And His OrchestraArnett Cobb & His OrchestraLionel Hampton And His SeptetLionel Hampton And His All-Star Alumni Big BandLionel Hampton And His SextetThe Prestige All StarsMuse AllstarsArnett Cobb And The Muse All StarsArnett Cobb QuartetArnett Cobb And His MobbArnett Cobb And His BandArnett Cobb Tiny Grimes QuintetAll Star Sextet + +310038Hilary HahnUS classical violinist, born November 27, 1979 in Baltimore, Maryland. + +Debuted in 1991 with the [a=Baltimore Symphony Orchestra]. Awarded the German "Echo Klassik Award" in the years 1999 to 2001, during which time she with the [a260744]. Awarded the "Preis der Deutschen Schallplattenkritik" in 2000, and in 2001 she won a Grammy for interpretations of Brahms and Strawinsky as part of [a832962].Needs Votehttps://en.wikipedia.org/wiki/Hilary_Hahnhttps://web.archive.org/web/20220406211825/https://www.hilaryhahn.com/https://web.archive.org/web/20031207143448/https://www.sonyclassical.com/artists/hahn/H. H.H. HahnHahnHillary Hahnヒラリー・ハーン希拉蕊韓 + +310109Chet Baker QuartetCorrectChet Baker & Russ Freeman QuartetChet Baker 4tetChet Baker And His QuartetChet Baker QuartettChet Baker-Dick Twardzik QuartetQuartetQuartet: Chet Baker & Russ FreemanQuartet: Russ Freeman And Chet BakerQuartet: Russ Freeman Chet BakerQuartetto Chet BakerQuet Baker QuartettRuss Freeman & Chet Baker QuartetRuss Freeman-Chet Baker QuartetThe Chet Baker QuartetThe Fabulous Chet Baker QuartetChet BakerRon CarterLeroy VinnegarMichel GraillierBen RileyJeff BrillingerRaymond Fol"Philly" Joe JonesAl HaigPaul Chambers (3)Shelly ManneRuss FreemanJoe MondragonLarry BunkerBob NeelCarson SmithJohn EngelsHarold DankoDuke JordanJimmy BondNiels-Henning Ørsted PedersenKarl RatzerJukkis UotilaBenoit QuersinJean-Louis VialeNils-Bertil DahlanderBobby JasparPhil MarkowitzMichael FormanekNicola StiloNorman FearringtonPeter LittmanDennis LuxionBobby WhiteBob WhitlockHal GalperDick TwardzikGérard GustinDrew SalpertoJesper LundgaardRiccardo Del FraButch LacyScott Lee (5)John B. ArnoldArtt Frank + +310287Sammy PriceSam Blythe PriceJazz and blues pianist. +Born: October 6, 1908 in Honey Grove, TX, United States. +Died: April 14, 1992 in New York, NY, United States.Needs Votehttps://adp.library.ucsb.edu/names/208151https://en.wikipedia.org/wiki/Sammy_PricePricePrice, S.S. B. PriceS. PriceS.PriceSam PriceSamuel B. PriceС. ПрайсBubber PrinceJimmy Blythe, Jr.The Mezzrow-Bechet SeptetThe Mezzrow-Bechet QuintetPete Brown And His BandSam Price TrioSammy Price And His OrchestraOmer Simeon TrioSam Price And His Kaycee StompersDanny Barker's Fly CatsSam Price QuintetSammy Price & His Rompin' StompersSam Price And His Texas BlusiciansSam Price And The Rock BandEmmett Berry And His OrchestraSammy Price And His All-StarsOllie Shepard & His Kentucky BoysSam Price QuartetSammy Price And His Four QuartersHarlem StompersSam Price's Fly CatsNora And Delle And Their Ham TrioRed Allen And His QuartetSammy Price QuartetSammy Price - Maxim Saury Quintet + +310288Joe TurnerJoe Turner (November 3, 1907 in Baltimore, Maryland, USA – July 21, 1990 in Montreuil, France) was an American jazz pianist. + +[b]NOTE! Do not mistake with [a=Big Joe Turner], the American blues shouter.[/b] +Needs Votehttp://en.wikipedia.org/wiki/Joe_Turner_%28jazz_pianist%29http://www.jazzology.com/jazzbeat.php?id=34http://www.allmusic.com/artist/joe-turner-mn0000212317/biographyhttps://adp.library.ucsb.edu/names/210341J. TurnerJ.TurnerTurnerj. TurnerLouis Armstrong And His OrchestraFreddie Jenkins And His Harlem SevenAndré Ekyan Et Son Orchestre JazzCocoanut Grove OrchestraFrank "Big Boy" Goodie Et Son Orchestre + +310293Sir Charles ThompsonCharles Phillip ThompsonAmerican pianist and composer +Born March 21, 1918 in Springfield, Ohio, died June 16, 2016 in Tokyo, JapanNeeds Votehttp://www.allaboutjazz.com/php/article.php?id=14547http://www.jazzdiscography.com/Artists/Thompson/index.phphttps://adp.library.ucsb.edu/names/210152https://en.wikipedia.org/wiki/Charles_Thompson_(jazz)"Sir Charles" Thompson"Sir" Charles Thompson"Sir" Charles Thompson And His OrganAl ThompsonC. ThompsonCh. ThompsonCharles P ThompsonCharles Phillip ThompsonCharles ThompsonCharles ThonpsonCharlie ThompsonL. ThompsonS. C. ThompsonS. ThompsonS.C. ThompsonS.C. ThomsponSir C. ThompsonSir C. ThomsonSir Ch. ThompsonSir CharlesSir Charles JohnsonSir Charles ThomasSir Charles Thompson And His OrganSir Charles ThomsonSir Charles TompsonSir Chas. ThompsonSir ThompsonThompsonThomsonTompsonThe Charlie Parker All-StarsBuck Clayton And His OrchestraLucky Millinder And His OrchestraDon Byas QuartetIllinois Jacquet And His OrchestraColeman Hawkins QuintetColeman Hawkins And His OrchestraSir Charles And His All StarsIllinois Jacquet And His All StarsLeo Parker's All StarsTiny Grimes QuintetBuck Clayton With His All-StarsSir Charles Thompson QuartetThe Manhattan Jazz All StarsJoe Newman And The Count's MenThe Count's MenVic Dickenson SeptetThe Urbie Green OctetLeo Parker QuintetteThe Jimmy Rushing All StarsSir Charles Thompson TrioSir Charles Thompson And His BandHerbie Steward QuartetSir Charles Thompson SextetPaul Quinichette All-StarsSir Charles Thompson And His Orchestra + +310295Albert AmmonsAlbert C. AmmonsAmerican jazz/blues pianist. Father of [a=Gene Ammons]. +Born March 1, 1907 in Chicago, Illinois. +Died December 2, 1949 in Chicago, Illinois. +Needs Votehttp://en.wikipedia.org/wiki/Albert_Ammonshttps://adp.library.ucsb.edu/names/105199A. AmmonsA. EmonsasA.AmmonsAblert AmmonsAlbertAlbert AmonsAlbert C. AmmonsAlbert SimmonsAlt AmmonsAmmonAmmonsAmmons, AlbertAmmons/AlbertBert AmmonsА. Эммонсアルバート・アモンズThe Boogie Woogie TrioAlbert Ammons And His Rhythm KingsPort Of Harlem JazzmenAlbert, Meade, Pete And Their Three PianosJ.C. Higginbotham QuintetFrank Newton QuintetBanks Chesterfield's OrchestraAlbert Ammons And His Orchestra + +310343Jonathan CarneyJonathan CarneyUS American violinist, conductor and concertmaster, born in 1963. Graduate of the New York Juilliard School, studying with Ivan Galamian and Christine Dethier. Since 2002 he is concertmaster of the [a=Baltimore Symphony Orchestra].Correcthttps://www.bsomusic.org/bio/jonathan-carney/https://www.bach-cantatas.com/Bio/Carney-Jonathan.htmDžonatan KarnejJo CarneyJohn CarneyJonathan CarreyJonathon Carreyジョナサン・カーニーThe Balanescu QuartetGavin Bryars EnsembleRoyal Philharmonic OrchestraBaltimore Symphony OrchestraLyric Quartet + +310351Brook BentonBenjamin Franklin PeayAmerican Gospel and Soul/R&B singer, songwriter and actor. +Born: Sept. 19, 1931 in Lugoff, South Carolina - died: April 9, 1988 in Queens, New York.Needs Votehttp://en.wikipedia.org/wiki/Brook_Bentonhttp://www.waybackattack.com/bentonbrook.htmlB BentonB. BentonB. BrentonB. BurtonB.BentonBeatonBemtonBensonBentenBentonBetonBook BentonBrock BentonBrookBrook BrentonBrooke BentonBrooks Bentonブルック・ベントンBenjamin Franklin Peay + +310353Jackie DeShannonSharon Lee MyersBorn: August 21, 1941, Hazel, Kentucky + +Jackie DeShannon is an American pop singer-songwriter with a string of hit song credits from the 1960s onwards. She was one of the first female singer-songwriters of the rock 'n' roll period. She is married to [a=Randy Edelman]. Jackie's brother is songwriter [a=Randy Myers]. + +Inducted into Songwriters Hall of Fame in 2010. +Songs listed at BMI appear under the name Jackie Shannon, Jackie Dee, Sharon Lee Myers. +Needs Votehttp://www.jackiedeshannon.comhttp://en.wikipedia.org/wiki/Jackie_DeShannonhttp://www.facebook.com/people/Jackie-DeShannon/100000570107823http://www.facebook.com/pages/Jackie-DeShannon/109682992391593https://www.songhall.org/profile/jackie_deshannonhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=86414&subid=2http://www.spectropop.com/JackieDeShannon/index.htmhttps://jackiedeshannon.tripod.com/Bel ShannonBeshannonD. ShannonD.ShannonDe ChannonDe Schannon, JackieDe ShaanonDe ShannonDe Shannon JackieDe ShanonDe-ShannonDe. ShannonDeShannonDeShannon JackieDeShanonDel ShannonDeshannonIde ShannonJ De ShannonJ DeShannonJ DeShanonJ de ShannonJ. De ShannonJ. deShannonJ. D. ShannonJ. De ChannonJ. De JhannonJ. De ShannonJ. De'ShannonJ. De. ShannonJ. DeShannenJ. DeShannonJ. Dee ShannonJ. Del ShannonJ. DeshannonJ. DoShannonJ. ShannonJ. de ShammonJ. de ShannonJ. deShannonJ.. DeShannonJ.D. ShannonJ.D.ShannonJ.De ShannonJ.De.ShannonJ.DeShannonJ.Dee ShannonJ.Dee.ShannonJ.DeshannonJ.O. ShannonJ.ShannonJDJDeshannonJack De ShannonJack DeShannonJacke De ShannonJackee DeShannonJackie D. DeShannonJackie De SchannonJackie De ShannoJackie De ShannonJackie De Shannon*Jackie De ShanonJackie De SharnonJackie DeShannenJackie DeShanonJackie Dee (Shannon)Jackie Del ShannonJackie Des-ShannonJackie DeshannonJackie DeshanonJackie R. De ShannonJackie ShannonJackie de SahnnonJackie de ShannonJackie deShannonJackiedeJacky De ShannonJacky de ShannanJacky deShannonJackye DeShannonM. DeShannonSeshannonShannonShannon, J DeShannon,J.Dede ShannondeShannonj. DeShannonジャッキー・シャノンジャッキー・デシャノンJackie DeeSharon Lee MyersSherry Lee (3)The Lady-Bugs + +310355Marty RobbinsMartin David RobinsonAmerican country singer and songwriter, successful as a recording artist, stage performer, actor, author, songwriter, and stock car racer. Robbins was born 26 September 1925 in Glendale, Arizona, USA and died 8 December 1982 in Nashville, Tennessee, USA. + +Born into poverty with his twin sister Mamie, he quit school in his teens and served in the United States Navy during 1943–1945. Robbins’ career started in 1947, and he soon had his own radio and television shows on KPHO in Phoenix. His big break came in 1951 when [url=https://en.wikipedia.org/wiki/Little_Jimmy_Dickens]Jimmy Dickens[/url] guested on his TV show. Dickens was so impressed that he encouraged his record company, Columbia, to give Robbins a contract. In 1953 Robbins joined the Grand Ole Opry and moved to Nashville, and in 1965 he started performing on the last segment of the Opry so he could race stock car at the Nashville Speedway. Among the more successful crossover artists during the 1950s and 1960s, Robbins was able to handle a wide variety of musical styles with his versatile baritone. He recorded country, western, rockabilly, Hawaiian music, gospel, and his specialty, which was pop ballads. Over the course of his career, Robbins had a total of 94 charting records, with 16 going to the #1 position. + +On October 11, 1982, Robbins was inducted into the Country Music Hall of Fame, just seven weeks before he suffered a heart attack, on December 2. He died six days later at the age of 57. His children include country singer [a2118004].Needs Votehttp://www.martyrobbins.com/https://en.wikipedia.org/wiki/Marty_Robbinshttp://countrymusichalloffame.org/Inductees/InducteeDetail/marty-robbinshttps://adp.library.ucsb.edu/names/208570BobbinsBobbisD. RobinsonM .RobbinsM RobbinsM. D. RobinsonM. DobbinsM. RobbinsM. RobbinsonM. RobinsM. RobinsonM.RobbinsMart RobinsMartin D. RobbinsMartin D. RobinsonMartyMarty Robbins, Sr.Marty RobblnsMarty RobinMarty RobinsMarty RobinsonMary RobbinsMori RobensR. MartyRobbinRobbinsRobbins M.Robbins MartyRobbins, MartyRobinRobinsRobinsonマーティ・ロビンスマーティー・ロビンスマーティー・口ビンス + +310358Stephen SaundersStephen SaundersClassical brass player (bass trombone, trombone, euphonium, tuba, sackbut) and teacher. +He studied at [l305416] from 1969 to 1972 under [a688110] and was then a founder member of such ensembles as the [a=London Classical Players], [a=Orchestra Of The Age Of Enlightenment] and [a=The Academy of Ancient Music]. He played for 18 years with the [a=National Philharmonic Orchestra]. In 1992, he took the position of principal Bass Trombone with the [a=BBC Symphony Orchestra]. Former member of the Amsterdam-based [a=Orchestra Of The 18th Century], [a=Orchestre Révolutionnaire Et Romantique], [a=English Baroque Soloists]. Bass sackbut with [a=His Majestys Sagbutts And Cornetts]. +In musical education, he has been a teacher of the sackbut and trombone at the Guildhall School of Music and Drama.Needs Votehttps://www.facebook.com/stephen.saunders.35https://www.linkedin.com/in/steve-saunders-36b21375/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/saunders-stephen/https://www.hmsc.co.uk/our-team/stephen-saunders-bass-sackbut/https://www.imdb.com/name/nm0766968/Steve SaundersSteven SaundersLondon Symphony OrchestraNational Philharmonic OrchestraBBC Symphony OrchestraThe Albion BandThe Derek Wadsworth OrchestraNew London ConsortThe Campiello BandThe Michael Nyman BandThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiquePhilip Jones Brass EnsembleThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersGabrieli PlayersSonnerieNational Youth Jazz OrchestraOrchestra Of The 18th CenturyBaroque Brass Of LondonHis Majestys Sagbutts And CornettsLocke Brass ConsortThe Symphony Of Harmony And InventionJohn Harle BandLondon Cornett And Sackbut EnsembleSixteen Trombones Of Seven London OrchestrasThe English Concert + +310368Ilkka WillmanIlkka WillmanFinnish bassist (1945–1994).Needs VoteI WillmanI. WillmanI.WillmanIlkkaIlkka "Ile" WillmanIlkka WilkmanJ.WillmanWillmanEero Koivistoinen Music SocietyThe Otto Donner TreatmentOiling BoilingThe Otto Donner Element All StarsMartti Pohjalainen TrioJani Uhleniuksen Uusrahvaanomainen OrkesteriPentti Lasasen Studio-orkesteriDopplerin IlmiöPentti Lahti Band + +310370Juhani AaltoFinnish trombonist (1931–2012).Needs VoteJ.AaltoJussiJussi AaltoEero Koivistoinen Music SocietyUmo Jazz OrchestraPori Big BandThe Islanders (5)Pentti Lasasen Studio-orkesteriThe Pentti Lasanen SeptetRadion TanssiorkesteriSeppo Rannikko Big BandKauko Partion OrkesteriSäälimättömätTapiola Big Band + +310372Unto Haapa-AhoUnto Haapa-ahoFinnish jazz musician (saxophone, clarinet), composer and arranger, born 21 July 1932 in Tornio, Finland. Needs VoteHaapa-AhoHaapa-ahoHaapo-AhoU. Haapa-AhoU. Haapa-ahoUnto Haapa-ahoUnto HaapalaEero Koivistoinen Music SocietyUmo Jazz OrchestraBackmanin OrkesteriThe ChlorophylliesScandia All-StarsPentti Lasasen Studio-orkesteriOlli Hämeen OrkesteriOssi Malinen OctetOlli Hämeen KvartettiUHO-trioUnto Haapa-ahon YhtyeUnto Haapa-ahon OrkesteriRadion TanssiorkesteriUnto Haapa-ahon Dixieland-yhtyeSeurasaaren Pelimannit + +310373Juhani AaltonenJuhani Antero AaltonenJuhani Aaltonen (born December 12, 1935 in Kouvola, Finland) is a Finnish jazz musician (tenor, alto and soprano saxophones, flute), strongly influenced by the later Coltrane. + +Aaltonen has been active since the 1950s and has worked with [a=Heikki Rosendahl], [a=Eero Koivistoinen], [a=Edward Vesala], [a=UMO (2)], [a=Arild Andersen] and [a=Heikki Sarmanto] among others. +Needs VoteAaltonenAaltonen JuhaniJ. AaltonenJuha AaltonenJuhani "Junnu" AaltonenJuhani AltonenJuhanni AaltonenJunnuJunnu AaltonenEero Koivistoinen Music SocietyUmo Jazz OrchestraTasavallan PresidenttiArild Andersen QuartetHeikki Sarmanto Big BandThe Otto Donner TreatmentFinnish Big Band JazzSoulsetHeikki Sarmanto SextetNunnu Big BandThe Otto Donner Element All StarsEero Koivistoinen Kvintetti & SekstettiSuhkan UhkaJuhani Aaltonen TrioEdward Vesala TrioHeikki Sarmanto QuintetOlli Ahvenlahti EnsembleJuhani Aaltonen QuartetEdward Vesala Jazz BandNordic TrinityHeikki Sarmanto QuartetKardemumman Orkesteri Ja KuoroThe Winners (6)Nordic All-StarsSuomi-VPK-OrkesteriTUMOEdward Vesala Mau-Mau EnsembleRadion TanssiorkesteriSeppo Rannikko Big BandJ. Kantola BandDick Dynamite And His Hot LipsCartes Art MachineMike Koskinen OrchestraEdward Vesala EnsembleÄrripurri-Orkesteri + +310388Jessye NormanJessye Mae NormanJessye Norman (born September 15, 1945 in Augusta, GA, died September 30, 2019 in New York City, NY) was an American opera singer and recitalist. A four-time Grammy Award-winner, she was one of the most admired contemporary opera singers and recitalists, and one of the highest paid performers in classical music.Needs Votehttps://www.britannica.com/biography/Jessye-Normanhttp://en.wikipedia.org/wiki/Jessye_NormanJ. NormanJessey NormanJessie NormanNormanДжесси Норманジェシー・ノーマン + +310443Frank LacyFrank Ku-Umba LacyAmerican trombonist, born 9 August 1958 in Houston, Texas, USA.Needs Votehttps://en.wikipedia.org/wiki/Frank_Lacyhttps://www.tiktok.com/@kuumba.frank.lacy"Ku-Umba" Frank LacyF. LacyFrank "Ku-Umba" LacyFrank "Roots" LacyFrank Ku Umba LacyFrank Ku-Umba LacyFrank Ku-umba LacyFrank LaceFrank Lacy, Jr.Frank “Roots” LacyKu-Umba Frank LacyKu-umba Frank LacyKuumba Frank LacyLacyArt Blakey & The Jazz MessengersRoy Hargrove's CrisolDavid Murray Big BandNew York Jazz CollectiveHenry Threadgill SextettLester Bowie's Brass FantasyBobby Watson & HorizonMingus DynastyMingus Big BandMingus OrchestraMcCoy Tyner Big BandJulius Hemphill Big BandSuperblue (2)10³²KThe Jim Schapperoew New Arts SextetteNew York RazzmatazzCaptain Black Big BandThe Heliosonic Tone-tetteKu-Umba Frank Lacy And His QuartetRoxbury Blues AestheticSalim Washington Harlem Arts EnsembleXXIth Century Infinity Jazz Ensemble + +310642Werner DabringhausGerman producer, co-founder of [l41423] in 1978.CorrectDabringhaus Und Grimm + +310643Reimund GrimmGerman producer and engineer, co-founder of [l41423] in 1978 (* 07 February 1951; † 15 August 2020). Needs Votehttps://www.mdg.de/Dipl. Tonm. Reimund GrimmR. GrimmRaimund GrimmDabringhaus Und Grimm + +310912Enrico DiceccoEnrico Di CeccoAmerican violin player, active for New York Philharmonic from 1961 to 2013.Needs VoteDicecco Enrico MichaelEnrico Di CeccoEnrico DiCeccoEnrico M. DiceccoEnrico Michael DiceccoNew York Philharmonic + +311000Hans Josef GrohGerman cellist, born 1962 in Ebern, Germany.Needs VoteHans Josef GrothHans-Josef GrohHans-Josef-GrohJosef GrohOslo SinfoniettaOslo Filharmoniske OrkesterOslo Session String Quartet + +311002Kari RavnanAmerican cellist, born 1960 in Lincoln, USA.CorrectKari Lise RavnanOslo Filharmoniske OrkesterBorealis (3) + +311056Metronome All Stars[a=Metronome (19)] Magazine had an annual poll during 1939-1961 that picked who their readers considered the top jazz instrumentalists on each instrument for the year. +More than that, Metronome actually recorded the all-stars on a fairly regular basis with sessions of the 1939-1942, 1945-1950, 1953, and 1956 contests. +In most cases, the group recorded two songs with short solos from practically all of the participants. +Correcthttp://www.allmusic.com/album/metronome-all-star-bands-mw0000652438http://www.jazzdisco.org/metronome-all-stars/http://en.wikipedia.org/wiki/Metronome_All-Starshttps://adp.library.ucsb.edu/names/1091621941 Mentronome All Stars1941 Metronome All Stars1949 Metronome All StarsAll Star BandAll-Star BandAll-StarsBand Leader StarsEd. MetronomeMetronome All Star BandMetronome All Star LeadersMetronome All Star NineMetronome All Stars 1948-49Metronome All Stars 1949Metronome All Stars 1956Metronome All Stars BandMetronome All-Star BandMetronome All-Star Band (2)Metronome All-Star Band (3)Metronome All-Star LeadersMetronome All-Star NineMetronome All-StarsMetronome All-Stars 1939Metronome All-Stars 1941Metronome All-Stars 1946Metronome All-Stars 1949Metronome All-Stars 1956Metronome All-Stars BandMetronome All-Stars, TheMetronome AllstarsMetronome Bandleader All StarsThe All Star BandThe All Stars BandThe Metrenone All-StarsThe Metronome All Star BandThe Metronome All StarsThe Metronome All-Star BandThe Metronome All-Star BandsThe Metronome All-Star LeadersThe Metronome All-StarsThe Metronome All-starsThe Metronome Allstarsthe Metronome All Starsメトロノーム・オール・スターズメトロノーム・オール・スターズAll Star Band (4)Miles DavisStan GetzFrank SinatraBuddy RichGeorge ShearingDizzy GillespieCharlie ParkerDuke EllingtonCount BasieNat King ColeNeal HeftiMax RoachTommy DorseyColeman HawkinsJ.J. JohnsonBenny GoodmanTeddy WilsonTex BenekeSy OliverLester YoungRoy EldridgeJohnny HodgesHarry EdisonGene KrupaVido MussoArthur RolliniCootie WilliamsJohn KirbyBenny CarterLawrence BrownJess StacyHymie SchertzerLennie TristanoBilly BauerWarne MarshLee KonitzCharlie VenturaShelly ManneFlip PhillipsCharlie ShaversKai WindingCharlie BarnetBunny BeriganBob ZurkeFreddie GreenBob CooperChubby JacksonAl PorcinoHarry CarneyAlvino ReyJune ChristyPete CandoliPete RugoloJack TeagardenRed NorvoRex StewartJ.C. HigginbothamArtie BernsteinFats NavarroSerge ChaloffLou McGarityTerry GibbsBill HarrisCarmen MastrenCharlie ChristianDave ToughHarry James (2)Eddie SafranskiErnie CaceresEddie Miller (2)Milt BernhartTiny GrimesBob HaggartSonny DunhamRay BauducWill BradleyToots MondelloDoc GoldbergCharlie SpivakHarry BettsBuddy ChildersBart VarsalonaBuddy DeFrancoJohn LaportaBob GiogaSonny BermanRay WetzelBob Ahern (2)Warren WeidlerKen HannaJohn AltwergerHerbie FieldsHarry Forbes (2)Harry Finkelman + +311057Bennie MotenBenjamin Moten[b]For the jazz bassist, please use [a996896][/b] +[b] For the clarinet and alto saxophone player, please use [a2790670][/b] + +Bennie Moten (born November 13, 1893, Kansas City, Missouri, USA - died April 2, 1935, Kansas City, Missouri, USA) was an American jazz pianist, composer and band leader. He led [a317903], the most important of the regional, blues-based orchestras active in the Midwest in the 1920's, and helped to develop the riffing style that would come to define many of the 1930's Big Bands. Among his compositions include "Moten Swing" and "South". + +BMI CAE/IPI#: 251799831 +Needs Votehttp://en.wikipedia.org/wiki/Bennie_Motenhttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=100&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Bennie+Moten&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allB MotenB. &B. & B. MotenB. MotemB. MotenB.MotenBennieBenny &Benny MoltenBenny MotenBernie MotenD. MotenMatenMetenMontenMortonMotenMoten, B.MotonMottenMoutenBennie Moten's Kansas City Orchestra + +311058Jimmie LuncefordJames Melvin LuncefordAmerican jazz alto saxophonist, flutist, bandleader & arranger (June 6, 1902, Fulton, Mississippi - July 12, 1947, Seaside, Oregon). + +Lunceford's band differed from other great bands of the time as it was better known for its ensemble than its solo work. Comedy and vaudeville played a big part in Lunceford's presentation through clever arrangements by trumpeter [a=Sy Oliver] and bizarre lyrics (often sung by him or the [a=Lunceford Trio], [a=The Lunceford Quartet], or the [a=Lunceford Glee Club]). +Needs Votehttps://en.wikipedia.org/wiki/Jimmie_Luncefordhttp://de.wikipedia.org/wiki/Jimmie_Luncefordhttps://www.britannica.com/biography/Jimmie-Luncefordhttps://www.blackpast.org/african-american-history/lunceford-jimmie-m-1902-1947/https://adp.library.ucsb.edu/names/105572J. LuncefordJ.LuncefordJimmie LumcefordJimmy LancefordJimmy LucenfordJimmy LunceforJimmy LuncefordJimmy LunchefordLuncefordLuncfordLunchfordLungefordLunsfordJimmie Lunceford And His OrchestraJimmie Lunceford And His Chickasaw SyncopatorsJimmie Lunceford And His Harlem ExpressChickasaw SyncopatorsLunceford Glee Club + +311059Lucky MillinderLucius Venable MillinderAmerican swing and R&B bandleader. +Born August 8, 1910, Anniston, Alabama, USA. +Died September 28, 1966, New York City, New York, USA. +Married to songwriter [a732005] (1940s-1953). +He was inducted into the Alabama Jazz Hall of Fame in 1986.Needs Votehttp://en.wikipedia.org/wiki/Lucky_Millinderhttp://www.bigbandlibrary.com/luckymillinder.htmlhttps://web.archive.org/web/20160303202143/https://home.earthlink.net/~jaymar41/luckym.htmlhttps://adp.library.ucsb.edu/names/103146L MellinderL MillinderL. MilinderL. MillenderL. MillinderL. MillingerL.MillinderLucious "Lucky" MillinderLucius "Lucky" MillinderLucius 'Lucky' MillinderLucius MillinderLuckie MillinderLucky MellinderLucky MillanderLucky MillenderLucky MilnerLucky WillinderMelindaMiclinderMilinderMillanderMillenderMillindeMillinderMillinder, L.MillonderR. MillinLucky Millinder And His OrchestraThe Mills Blue Rhythm Band + +311060Casa Loma OrchestraThe Casa Loma Orchestra was a popular American dance band active from 1927 to 1963. It disbanded in 1947, however, it re-emerged from 1957 to 1963, as a recording session band in Hollywood, made up of top-flight studio musicians under the direction of [a255649]. + +[b]Please use when [a=Glen Gray] is not credited with the orchestra. If Glen Gray is credited, please use [a=Glen Gray & The Casa Loma Orchestra] instead.[/b]Needs Votehttps://en.wikipedia.org/wiki/Casa_Loma_Orchestrahttps://www.imdb.com/name/nm1870883/Casa LomaCasa Loma Orch.Casaloma OrchestraOrchestra Casa LomaSolisten Des Casa Loma OrchestersThe Casa Loma OrchThe Casa Loma OrchestraThe Casaloma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm KingsHal Laska's OrchestraLouis' Harlem StompersGlen GrayKenny SargentMurray McEachernSonny DunhamBilly RauchPee Wee HuntStanley DennisJoe HostetterPat Davis (3)Joe Hall (2)Tony BrigliaArt RalstonMel JenssenFrank MartinezBobby Lee JonesGrady WattsEugenie BairdJack BlanchetteFrank ZulloFritz HummelClarence HutchenriderRay Eberle (2) + +311233Stanislav BuninСтанислав Станиславович БунинStanislav Bunin (born September 25, 1966, Moscow) is a Soviet and Japanese pianist and music teacher.Needs Votehttps://ru.wikipedia.org/wiki/%D0%91%D1%83%D0%BD%D0%B8%D0%BD,_%D0%A1%D1%82%D0%B0%D0%BD%D0%B8%D1%81%D0%BB%D0%B0%D0%B2_%D0%A1%D1%82%D0%B0%D0%BD%D0%B8%D1%81%D0%BB%D0%B0%D0%B2%D0%BE%D0%B2%D0%B8%D1%87https://en.wikipedia.org/wiki/Stanislav_Buninhttps://orpheusradio.ru/persons/id/7666BuninS. BuninStanislas BuninStanislav BounineStanisław BuninСтанинслав БунинСтанислав БунинСтанислас БунинСтасик Бунинスタニスラフ・ブーニンブーニン(スタニスラフ) + +311234Christopher ParkeningAmerican classical guitarist, born December 14, 1947.Needs Votehttps://www.parkening.com/https://en.wikipedia.org/wiki/Christopher_ParkeningC. ParkeningParkening + +311356ChrysusMichael DowAlias UK DJ, producer & audio engineer Michael Dow used to produce Hard Dance before turning to Trance.Needs VoteMichael DowM.E.D + +311482Richard PowellPercussionistNeeds VoteRichard V. PowellWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +311628Spencer GCorrectSpencer Green (2) + +311629JunigurubiCorrect + +311722Kansas City SixWhen they had time off from the [a=Count Basie Orchestra] in the late 1930s, the Count's rhythm musicians formed a small ensemble called [b]The Kansas City Five[/b], with trumpeter Buck Clayton, drummer Jo Jones, bassist Walter Page, rhythm guitarist Freddie Green and Eddie Durham's electric guitar (as a replacement for Count Basie's piano). When Lester Young joined the band, on clarinet and tenor sax, it became the [b]Kansas City Six[/b]. + +Line-up (ca. 1938): +Buck Clayton (Trumpet) +Eddie Durham (Guitar) +Freddie Green (Guitar) +Jo Jones (Drums) +Lester Young (Clarinet, Saxophone) +Walter Page (Bass) +Correct6EnsembleHis Kansas City SixK. C. SixK.C. 6Kansas City 6Kansas City Six With Lester YoungLester Young And His Kansas City SixLester Young And The Kansas City SixLester Young Kansas City SixLester Young With The Kansas City FiveThe Kansas City 6The Kansas City SixThe Kansas City Six With Lester YoungEddie DurhamLester YoungJo JonesBuck ClaytonWalter PageFreddie GreenBill Coleman (2)Charlie ChristianJoe BushkinDickie WellsJohn Simmons + +311723Jazz At The PhilharmonicJazz At The Philharmonic is a trademark used by jazz entrepreneur and label owner [a=Norman Granz]. + +Please note: When used as a banner for the ever-changing jam session groups in his touring events or on records, Jazz At The Philharmonic can be used as main artist. But only when Jazz At The Philharmonic is billed on the release in the main artist's place - and when no other obvious main artist is billed on the release or promoted on cover and labels. + +Norman Granz's Jazz at the Philharmonic releases do not follow a usual industry pattern for naming and crediting: + +All JATP releases with the name and/or logo on them should be listed under the [l=Norman Granz Presents Jazz At The Philharmonic] series, even when Jazz At The Philharmonic is used as main artist. The shorter Jazz At The Philharmonic or any other variation of JatP ahould never be listed as a label, but instead as a series, with the relevant label in brackets afterward if necessary - such as [l=Norman Granz Presents Jazz At The Philharmonic (Verve)]. + +Company: In the 50's with the Inc. extension, the entity was also a company; [l=Jazz At The Philharmonic, Inc.] + +Office: 451 N Canon Dr, Beverly Hills, CA Needs VoteJ.A.T.P.J.A.T.P. All StarsJ.A.T.P. All-StarsJATPJATP All StarsJATP All-StarsJazz All StarsJazz At The Philharmonic All StarsJazz At The Philharmonic All-StarsJazz At The Philharmonic ConcertJazz At The Philharmonic Vol. 5Jazz at the Philharmonic All-StarsNorman Grantz' Jazz At The PhilharmonicNorman Granz "Jazz At The Philharmonic"Norman Granz JazzNorman Granz Jazz At The PhilharmonicNorman Granz' J.A.T.P.Norman Granz' Jazz At The PhilharmonicNorman Granz' Jazz At The Philharmonic Vol. #1The All StarsThe JATP ALL-STARSThe JATP All StarsThe JATP'sThe JATPsThe Jazz All StarsThe Jazz At The Philharmonic All-Stars + +311724Fats Navarro QuintetCorrectFat's Navarro QuintetteFats Navarro QuintetteFats Navarro's GroupArt BlakeyCharlie RouseMax RoachTommy PotterTadd DameronAl HaigNelson BoydFats NavarroDon LanphereLinton GarnerJimmy Johnson (7) + +311727Edmond Hall Celeste QuartetAmerican jazz ensemble in New York, active mainly in the era from 1941 to 1943.Needs VoteEd Hall QuartetEdmond HallEdmond Hall & His Celeste QuartetEdmond Hall Celeste FourEdmond Hall QuartetEdmond Hall's Celeste QuartetEdomond Hall Celeste QuartetThe Edmond Hall Celeste QuartetThe Edmund Hall Celeste QuartetEdmond HallCharlie ChristianMeade "Lux" LewisIsrael Crosby + +311730Benny Goodman SextetAmerican swing jazz ensemble, fronted by [a=Benny Goodman], with various personnel from the 1930s.Needs VoteB. Goodman SextettB. Goodman SextetB. Goodman SextettBenny GoodmanBenny Goodman & His SextetBenny Goodman All Star SextetBenny Goodman And His SextetBenny Goodman And SextetBenny Goodman E Il Suo SestettoBenny Goodman His SextetBenny Goodman SekstettBenny Goodman SextettBenny Goodman SextetteBenny Goodman Und Sein SextettBenny Goodman With The SextetBenny Goodman and His SextetBenny Goodman's SekstettBenny Goodman's SextetBenny Goodman/Count Basie All Star OctetBenny Goodmann And His SextetBenny Goodmans SekstettDas Benny Goodman-SextettEl Sexteto De Benny GoodmanIl Sestetto Di Benny GoodmanIl Sestetto di Benny GoodmanLe Benny Goodman SextetMembers Of The Benny Goodman SextettSestetto Benny GoodmanSext.SextetSextetoSexteto Benny GoodmanSextetteSextettetThe Benny Goodman SextetThe Benny Goodman Sextet And OrchestraThe Benny Goodman Sextet Featuring Count BasieThe Benny Goodman Sextet With Wardell GrayThe New Benny Goodman SextetСекстетомPeggy LeeJoe PassLionel HamptonCount BasieMel PowellBenny GoodmanTeddy WilsonBobby HackettMundell LoweGene KrupaHarry GoodmanCootie WilliamsJo JonesDon LamondMonty BudwigJimmy RowlesWardell GrayWalter PageBucky PizzarelliDerek SmithGeorgie AuldTerry SnyderRed NorvoFletcher HendersonArtie BernsteinLou McGarityAllan ReussTerry GibbsHarry BabasinAl HendricksonHarry JaegerSid WeissCharlie ChristianDave ToughEddie SafranskiPaul Smith (5)Vernon BrownJohnny SmithAllen HanlonCharlie Smith (2)Lou SteinBob Carter (2)Ronnie StephensonNick FatoolJohnny GuarnieriRalph CollierJimmy MundyPeter AppleyardDudley BrooksTom Morgan (5)John AltwergerWalter IoossSid Balkin + +311731Cozy Cole All StarsA listing of who performed for various takes is available at the papabecker reference. +Needs Votehttp://papabecker.com/Cozy%20Cole%20All%20Stars.htmlhttp://www.waybackattack.com/colecozy.htmlhttp://www.rockabilly.nl/references/messages/cozy_cole.htm"Cozy" Cole And His All StarsCosy Cole All StarsCozy Cole & All StarCozy Cole & His All StarsCozy Cole All-StarsCozy Cole And All StarsCozy Cole And His All StarsCozy Cole And His All StarsCozy Cole And His All-StarsCozy Cole And His OrchestraCozy Cole Y Su OrquestaCozy Cole and His OrchestraCozy Cole's All StarCozy Cole's All StarsCozy Cole's All-StarsCozy Cole's Big SevenThe Cozy Cole All StarsWilliam 'Cozy' ColeJonah JonesColeman HawkinsBilly TaylorDon ByasEarl HinesCozy ColeMilt HintonClyde HartEddie BarefieldCharlie ShaversAaron SachsHank D'AmicoSlam StewartWalter ThomasTrummy YoungBilly Taylor Sr.Sid WeissEmmett BerryJoe Thomas (4)Tiny GrimesJohnny GuarnieriTeddy WaltersTed SturgisReuben Cole + +311733Benny Goodman TrioThe Benny Goodman Trio created a style of 'chamber jazz' that emphasized highly developed ensemble playing and technically brilliant solos. The Trio took the ensemble sound of the small jazz band to a new level of precision and excitement that attracted a new audience to jazz. In July 1935, after playing together in a jam session, Goodman asked Teddy Wilson to record with Krupa and himself. That summer, as the Benny Goodman Trio, they recorded four classic sides of jazz chamber music. Vibraphonist Lionel Hampton and guitarist Charlie Christian later joined Goodman to form quartets and sextets.Needs Votehttp://riverwalkjazz.stanford.edu/program/hot-chamber-jazz-benny-goodman-trio-1935-1954B. Goodman TrioB.G. TrioBenny Goodman And His TrioBenny Goodman His TrioBenny Goodman With The TrioBenny Goodman's TrioBenny Goodmans TrioDas Benny Goodman TrioDas Benny-Goodman-TrioEl TrioEl Trio De Benny GoodmanEl Trío De Benny GoodmanGoodman TrioThe Benny Goodman TrioTrioTrio Benny Goodmanベニー・グッドマン・トリオLionel HamptonBenny GoodmanTeddy WilsonGene KrupaJohn KirbyJess StacySpecs Powell + +311734Stuff SmithHezekiah Leroy Gordon SmithBorn August 14, 1909 in Portsmouth, [b]OH[/b], died September 25, 1967 in [url=https://en.wikipedia.org/wiki/Munich]Munich[/url]. American jazz violinist. + +He began his career playing in Alphonso Trent's orchestra in Dallas, Texas in 1926. In 1928, he moved to New York City and played with [a=Jelly Roll Morton]. He formed his own band in 1930 with [a=Cozy Cole] and [a=Jonah Jones] in Buffalo, New York. In 1935 through to 1940, he and his sextet took up residency at the Onyx Club, a small club on 52nd Street, New York City and gained big success. After the Second World War, he opened a restaurant in Chicago. In 1957, he recorded with [a=Dizzy Gillespie] and embarked on a tour of Europe; part of the tour was cancelled due to ill health. In 1963, he played with [a=Herb Ellis]. He returned to Europe in 1965 and recorded several albums. He remained in Europe until he died and is buried in Klakring Cemetery, Copenhagen, Denmark.Needs Votehttps://en.wikipedia.org/wiki/Stuff_Smithhttps://qcnerve.com/stuff-smith-is-a-forgotten-legend-who-began-in-charlotte/https://adp.library.ucsb.edu/names/104695"Stuff" SmithHazekiah Leroy Gordon SmithHezekiah "Stuff" SmithHezekiah Leroy Gordon "Stuff" SmithL. SmithLeRoy "Stuff" SmithLeRoy SmithLeo "Stuff" SmithLeroy "Stuff" SmithLeroy 'Stuff' SmithLeroy (Stuff) SmithLeroy Gordon "Stuff" SmithLeroy Gordon « Stuff » SmithLeroy Gordon «"Stuff" SmithLeroy S. SmithLeroy SmithLeroy Stuff SmithS, SmithS. SmithSmithSmith, StuffStuff-SmithStuft SmithWill SmithStuff Smith And His Onyx Club BoysStuff Smith TrioDizzy Gillespie SextetStuff Smith QuartetStuff Smith & His OrchestraStuff Smith QuintetAlphonso Trent And His OrchestraStuff Smith & All StarsStuff Smith SeptetRed Norvo And Stuff Smith QuartetStuff Smith SextetStuff Smith With All Star BandStuff Smith And Mary Osborne QuartetStuff Smith Big Band + +311738Rubberlegs WilliamsHenry WilliamsJazz and blues singer and dancer. +He worked with Count Basie, Fletcher Henderson, Clyde Hart, Dizzy Gillespie, Charlie Parker, Miles Davis, Oscar Pettiford and others. + +Born: July 14, 1907 in Atlanta, Georgia. +Died: October 17, 1962 in New York City, New York. +Needs Votehttp://www.allmusic.com/artist/williams-p138375"Rubber Legs" Williams"Rubberlegs""Rubberlegs" WilliamsHenry WilliamsR. WilliamsRubber Legs WilliamsRubber-Legs WilliamsRubberlegsWilliamsClyde Hart All StarsDizzy Gillespie All StarsRubberlegs Williams & His Orchestra + +311739Wynonie HarrisAmerican rhythm & blues vocalist with a hot-n'-raunchy rock and roll style and dance skills. +Born: 24 August 1915, Omaha, Nebraska, USA. +Died: 14 June 1969, Los Angeles, USA. + +Harris started as a comedian and dancer. He began his musical career touring with Lucky Millinder's band, eventually cutting his first recording with them in May 1944. After quitting the band, he signed up to Leo & Edward Mesner's [l=Philo] label in the spring of 1945, with [a=Johnny Otis] leading his line-up. He recorded on other labels, gaining popular success on the King label in the late 1940s. By the mid 1960s he was recording on Chess and performing with artists such as [a=T-Bone Walker] and [a=Big Mama Thornton]. Harris died of throat cancer, aged 53. His work has subsequently been honored by inductions into several "Halls of Fame", including the Blues Hall of Fame in Memphis, Tennessee.Needs Votehttps://en.wikipedia.org/wiki/Wynonie_Harrishttps://adp.library.ucsb.edu/names/320177"Mr. Blues" HarrisB. HarrisGloverHarrisHarris WynonieW HarrisW. HarrisWinonie HarrisWynnonie HarrisWynone HarrisWynonie " Mr Blues" HarrisWynonie "(Mr. Blues)" HarrisWynonie "Blue" HarrisWynonie "Blues" HarrisWynonie "Mr Blues" HarrisWynonie "Mr. Blues" HarrisWynonie 'Blues' HarrisWynonie 'Mr Blues' HarrisWynonie 'Mr. Blues' HarrisWynonie ("Mr. Blues") HarrisWynonie (Mr. Blues) HarrisWynonie Blues HarrisWynonie HarrieWynonie ‘Blues’ HarrisWynonie ‘Mr. Blues’ HarrisWynonie"Mr.Blues"HarrisWynonis HarrisWynonne HarrisWynonnie HarrisWyonie HarrisLucky Millinder And His OrchestraWynonie Harris All StarsWynonie Harris And His Orchestra + +311741Kay DavisKatherine Elizabeth WimpUS jazz singer, née Katherine McDonald 5 December 1920, Evanston, Illinois, USA, died 27 January 2012, Apopka, Florida, USA.Needs Votehttps://en.wikipedia.org/wiki/Kay_Davishttp://www.independent.co.uk/news/obituaries/kay-davis-singer-who-worked-with-duke-ellington-7447128.htmlhttps://adp.library.ucsb.edu/names/110363DavisK. DavisKDKay DavieDuke Ellington And His Orchestra + +311742Big Joe TurnerJoseph Vernon Turner Jr.Big Joe Turner (May 18, 1911, Kansas City, MO, USA - November 24, 1985, Inglewood, CA, USA) was an American blues shouter. + +Turner often collaborated with pianist [a=Pete Johnson]. In addition he worked with the pianists [a=Art Tatum] and [a=Sammy Price] and with various small jazz ensembles. He also appeared with [a=Count Basie Orchestra]. + +Turner's most known recordings include: "Roll 'Em Pete", "Cherry Red", "Wee Baby Blues", "Chains of Love", "Honey Hush", "Flip, Flop and Fly" and "Midnight Special". + +He was married to [a=Lou Willie Turner]. + +Inducted into Rock And Roll Hall of Fame in 1987 (Performer). +Needs Votehttp://en.wikipedia.org/wiki/Big_Joe_Turnerhttps://adp.library.ucsb.edu/names/210342"Big Joe" Turner"Big" Joe Turner''Big Joe'' Turner''Big'' Joe Turner'Big' Joe TurnerB. J. TurnerB. TurnerB.J. TurnerBJ TurnerBig "Joe"I. W. TurnerJ TurnerJ. TrainerJ. TurnerJ. Vernon Turner, Jr.J.TurnerJTJoe "Lou Wilie" TurnerJoe "Lou Willie" TurnerJoe 'Lou Willie' TurnerJoe Hill TurnerJoe TainerJoe TurnerJoe TurrnerJoseph TurnerJoseph Vernon "Big Joe" TurnerJoseph Vernon Turner Jr.,L. TurnerL. W. TurnerL.W. TurnerTurnerW. Turner‘Big’ Joe Turner“Big” Joe TurnerBig VernonJerry Smith (47)Benny Carter And His OrchestraArt Tatum And His BandBig Joe Turner And His Fly CatsBig Joe Turner & OrchestraJoe Turner & His Blues KingsVarsity SevenJoe Sullivan And His Café Society OrchestraBig Joe Turner And His All StarsPete Johnson & His Boogie Woogie BoysJoe Turner And His BandFrankie Newton & His Cafe Society OrchestraJoe Turner And His Boogie Woogie BoysJoe Turner With Chorus & Orchestra + +311744Billy EckstineWilliam Clarence EcksteinAmerican Jazz singer and bandleader +Born July 8, 1914, Pittsburgh, PA, United States +Died March 8, 1993, Pittsburgh, PA, United States +Eckstine, the son of a Pittsburg chauffeur and seamstress, began his singing career in a church bazaar at the age of eleven. The family moved to Washington, where he ran errands at the Howard Theater for [a=Ethel Waters]- earning enough pocket money to enter a talent contest, which he won in 1932. + +He left school and joined the Tommy Miles Band, learning the trumpet to support his vocals. Bandleader [a=Earl Hines] heard Eckstine at the De Lizza Club and added him to his band's line-up, with whom he recorded 'Skylark' which outsold the [a=Glenn Miller] version. Eckstine's growing success enabled him to open his own club on New York's 52nd Street, which eventually closed due to crippling entertainment taxes. He then took to the road with his own historic band, helping pave the way for the bebop/modern jazz style movement with its musical arranger John Birks Gillespie. + +With Eckstine handling the vocals, along with [a=Sarah Vaughn], the line-up included trumpeters [a=Dizzy Gillespie], [a=Miles Davis], [a=Fats Navarro], [a=Kenny Dorham]; saxophonists [a=Gene Ammons], [a=Dexter Gordon], [a=Lucky Thompson], [a=Charlie Parker] and [a=Leo Parker]; drummer [a=Art Blakey]; bassist [a=Tommy Potter]; pianist John Malaclin and arrangers [a=Budd Johnson], [a=Tadd Dameron] and [a=Jerry Valentin]. In the three and a half years this band was together Eckstine made his mark as a sell-out concert singer, as well as starting fashion trends with his sharp-suited dress style that would hold him in good stead throughout his popular solo career. He was known for his rich, almost operatic bass-baritone voice + +Father of [a=Ed Eckstine].Needs Votehttp://en.wikipedia.org/wiki/Billy_Eckstinehttps://adp.library.ucsb.edu/names/106570http://www.answers.com/topic/billy-eckstineB EckstineB. EcksteinB. EcksteineB. EckstineB. EkstineB.EckstineBernie EckstineBill EcksteinBillie EckstineBilly EcksteinBilly EcksteineBilly Eckstine (The Great Mr. B)Billy EkstineBilly EskstineEcksteinEckstienEckstinEckstineEcstineEskstineThe Great 'Mr. B'The Great Mr. B.The Romantic Billy EckstineW. EcksteinW. EckstineWilliam Clarence "Billy" EckstineWilliam Clarence EckstineWilliam EcksteinWilliam EckstineБ. ЭкстайнWoody Herman And His OrchestraBilly Eckstine And His OrchestraEarl Hines And His OrchestraWoody Herman And His Third HerdBilly Eckstine And His BandJimmy Dale Band + +311745Una Mae CarlisleUna Mae CarlisleAmerican jazz singer, pianist, and songwriter. + +Born 26 December 1915, Xenia, Ohio +Died 7 November 1956, New York City, New York +Needs Votehttp://en.wikipedia.org/wiki/Una_Mae_Carlislehttp://www.allmusic.com/artist/una-mae-carlisle-mn0000217497https://adp.library.ucsb.edu/names/109394CarlisleCarlisteU. CarlisleU. M. CarlisleU. Mae CarlisleU.M. CarlisleU.M.C.Una MaeUna Mae Carlisle & OthersUna Mae Carlisle And Her PianoUna Mae Carlisle And Her OrchestraDanny Polo & His Swing StarsUna Mae Carlisle And Her Jam BandUna Mae Carlisle And Her SextetUna Mae Carlisle And Her Trio + +311925Alan JardineAlan Charles JardineA founding member of [a=The Beach Boys], the only original member of the band who was not related by blood to the Wilson brothers (Brian, Carl, and Dennis) and their cousin, Mike Love. +Born: September 3, 1942, Lima, Ohio, USA. Father of [a1286777]Needs Votehttps://www.facebook.com/alanjardinehttps://www.aljardine.com/https://en.wikipedia.org/wiki/Al_JardineA JardineA.A. JardineA. JardeA. JardinA. JardineA. JardinsA. JaridneA.JardineAlAl - Man With A MessageAl JardinAl JardineAlanAlan Charles JardineAlan JardinAlan JardinoGuess Who?JardineJardinneJardinsMePapa AlYours Trulyアル・ジャーディンThe Beach BoysKenny & The CadetsAl Jardine, Family & Friends + +311952Melba ListonMelba Doretta Liston American trombonist & arranger. Melba's professional career started on the legendary Central Avenue, where she became the first woman wind-instrumentalist in the Lincoln Theater pit orchestra conducted by Bardu Ali. From the 1940s through the 1960s, she was the first woman trombonist to work in the leading big bands of Dizzy Gillespie, Count Basie, Duke Ellington, Quincy Jones, Gerald Wilson, and Clark Terry. Melba went into performance retirement and moved to Jamaica from 1973 to 1979, where she first taught at the University of the West Indies and then became director of Popular Music Studies at the Jamaica Institute of Music in Kingston. She was forced to give up playing in 1985 after a stroke left her partially paralyzed, but she continued to arrange music with Randy Weston, contributing her imaginative, often strikingly dramatic arrangements to a succession of his albums in the 90s. She was afflicted by a further series of strokes, which eventually proved fatal. +Born: January 13, 1926, Kansas City, Missouri. +Died: April 23, 1999, Inglewood, Los Angeles, California. +Needs Votehttps://en.wikipedia.org/wiki/Melba_ListonListonM. ListonM.ListonMelba D. ListonMelba Doretta ListonMelba LisbonMelba ListolMelba Liston (uncredited)Melbo ListonMiss Melba ListonМелба ЛистонQuincy Jones And His OrchestraCount Basie OrchestraDizzy Gillespie And His OrchestraDizzy Gillespie Big BandGerald Wilson OrchestraDexter Gordon's All StarsOliver Nelson And His OrchestraArt Blakey's Big BandRay Brown All-Star Big BandMilt Jackson OrchestraMilt Jackson And Big BrassFrank Rehak SextetWilbert Baranco OrchestraRandy Weston SextetThe Quincy Jones Big BandAll Star Big BandMelba Liston And Her OrchestraErnie Henry Octet + +311953Lucille DixonBassist.CorrectTiny Grimes QuintetCarli Munoz Trio + +311978Mark NightingaleMark NightingaleBritish trombonist (born in Evesham, Worcestershire, UK, 29 May 1967), who has appeared at international festivals alongside Carl Fontana, Jiggs Whigham, Urbie Green, Slide Hampton, Bart van Lier, Bert Boeren, and many others. Mark has been featured with artists as diverse as Frank Sinatra, Cleo Laine, London Brass, Royal Philharmonic Orchestra, Sting and Shakatak.Needs Votehttp://mark-nightingale.co.uk/https://en.wikipedia.org/wiki/Mark_NightingaleM NightingaleM. NightingaleMark NightengaleMark NightingalMark NightingalesNightingaleCharlie Watts And The TentetThe BBC Big BandRoyal Philharmonic OrchestraStan Tracey OctetThe Starcoast OrchestraStan Tracey And His OrchestraRobert Farnon And His OrchestraColin Towns Mask OrchestraThe Alec & John Dankworth Generation Big BandKenny Wheeler Big BandBen Crosland Brass GroupMike Gibbs + TwelveThilo Berg Big BandThe Allan Ganley Jazz LegacyThe Clark Tracey SextetThe Don Weller Big BandOrchestre de GrandeurPat McCarthy OctetGareth Lockrane Big BandAndy Panayi QuartetLondon Trombone Quartet (2)Alan Barnes + ElevenThe Rath PackJulian Siegel Jazz OrchestraThe Genetically Modified QuintetMark Nightingale Quintet + +311992Paul QuinichettePaul QuinichetteAmerican jazz tenor saxophonist +Born May 17, 1916 in Denver, Colorado, USA, +Died May 25, 1983 in New York City, USA. +Nick named the Vice-President or Vice-Prez/Pres for emulating [a258433].Needs Votehttps://www.allmusic.com/artist/paul-quinichette-mn0000028015https://www.jazzdisco.org/paul-quinichette/discography/https://en.wikipedia.org/wiki/Paul_Quinichettehttps://adp.library.ucsb.edu/names/338730P. QuinchetteP. QuinichettePaul QuinchettePaul Quinichette And His OrchestraQuinchetteQuinichetteVice PresCount Basie OrchestraWoody Herman And His OrchestraBillie Holiday And Her OrchestraJohnny Otis And His OrchestraBenny Goodman SeptetPaul Quinichette QuintetPaul Quinichette And His OrchestraTony Scott And His OrchestraJay McShann And His OrchestraHot Lips Page And His OrchestraCount Basie SextetThe Prestige All StarsBenny Goodman OctetGene Roland OctetGene Roland SextetThe Nat Pierce OrchestraWoody Herman And The Fourth HerdPaul Quinichette SextetBillie Holiday And Her Lads Of JoyGene Ammons' All StarsThe International Jazz GroupCount Basie QuintetPaul Quinichette QuartetPaul Quinichette And His BandPaul Quinichette And His SwingtetteJazz Studio OneCount Basie And His NonetJimmy Cobb QuintetPaul Quinichette-John Coltrane QuintetPaul Quinichette All-Stars + +312014Paul AnkaPaul Albert AnkaCanadian singer, songwriter, and actor, born 30 July 1941 in Ottawa, Ontario, Canada. +Inducted into Songwriters Hall of Fame in 1993. +OC - Officer of the Order of Canada.Needs Votehttps://www.paulanka.com/https://en.wikipedia.org/wiki/Paul_Ankahttps://www.imdb.com/name/nm0001912/A.PaulAnicaAnkaAnka P.Anka PaulAnka, PaulAnkatAnkeAnkerAntF. AnkaJ.lópez LeeO. AnkaP AnkaP, AnkaP. AnkaP. AnchorP. AnckaP. AnkaP. AnkeP. AnkerP. ArikaP. EnkaP. SakaP. ankaP. アンカP.AnkaPaui AnkaPaulPaul AknaPaul Albert AnkaPaul AncaPaul Anka & FriendPaul Anka'sPaul AnkarPaul AnkerPaul NancaPaul-AnkaPaulankaPaúl AnkaPol EnkaPolancaPoul AnkaP・アンカSpankaАнкаП. АнкаП.АнкаПол Анкаפ. אנקהアンカポール ・アンカポール ・アンカポール·アンカポールアンカポール・アンカ폴 앵카Dee MarakT. H. KiddPaul Anka E La Sua OrchestraPaul Anka And His Rock 'n' Rollers + +312142Jack Del RioArgentinean percussionist.CorrectDizzy Gillespie And His OrchestraLalo Schifrin & Orchestra + +312208Ralph GriersonRalph Edwin GriersonPianist, keyboardist and composer, born 23 June 1942 in Canada. In 1968 Ralph Grierson settled in Los Angeles, establishing parallel careers as a studio musician for TV and film (playing all the electronic keyboard instruments and also piano, organ, and harpsichord) and as an interpreter of contemporary music.Needs Votehttps://musicandhealth.com/https://www.imdb.com/name/nm0340965/https://www.thecanadianencyclopedia.ca/en/article/ralph-grierson-emcGriersonGrierson RalphRalph A. GriersonRalph E. GriersonRalph GrearsonRalph GreersonRalph GreirsonRalph K. GriersonThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraHank Mancini And The Mouldy SevenThe Claus Ogerman Orchestra + +312249Eddie KhanAmerican jazz bassist (born 1935) who worked extensively with Max Roach, Eric Dolphy, Freddie Hubbard and Andrew HillNeeds Votehttps://en.wikipedia.org/wiki/Eddie_Khan#:~:text=Eddie%20Khan%20(born%201935)%20is,Freddie%20Hubbard%20and%20Andrew%20Hill.Eddie KahnEddie KohnKhanエディ・カーンMax Roach QuintetMax Roach QuartetVirgil Gonsalves Big Band + +312417Shorty RogersMilton Michael Rajonsky[b]Do not confuse with pianist, bandleader, arranger [a893883] (born Milton Adelstein)[/b] +American jazz trumpeter, composer, arranger and bandleader. Born on April 14, 1924 in Great Barrington, Massachusetts. Died on November 7, 1994 (aged 70) in Van Nuys, California (USA). Worked with [a=Will Bradley], [a=Red Norvo], [a=Teddy Charles], [a=Woody Herman], [a=Charlie Barnet] and [a=Stan Kenton], among others. In addition to leading his own jazz groups, he was a producer and writer, and teamed with [a=Kelly Gordon] for a number of productions, especially in the late 1960s. He is also known for having arranged and conducted several records for [a=The Monkees] and [a=Michael Nesmith] and for his soundtracks.Needs Votehttps://en.wikipedia.org/wiki/Shorty_Rogershttps://adp.library.ucsb.edu/index.php/mastertalent/detail/208740/Rogers_Shortyhttps://www.ejazzlines.com/big-band-arrangements/by-arranger/shorty-rogers-big-band-charts/https://www.scaruffi.com/jazz/rogers.htmlhttps://www.spaceagepop.com/rogers.htmhttps://www.imdb.com/name/nm0737197/"Jolly Roger""The Prince"(Not So) Shorty RogersB. BrownJolly RogerLeo RogersM. RogersM. Shorty RogersMickey RodgersMickey RogersMilt RogersMilton "Shorty" RodgersMilton "Shorty" RogersMilton "Shoty" RogerMilton 'Shorty' RogersMilton RajonskyMilton RogersRod\gersRodgersRogerRoger Milton (2)Roger ShortRogersRogers ShortyRogers, S.S RodgersS RogersS. RodgersS. RogersS.R.S.RogersSh. RogersSherty RogersShort RogersShortie RogersShortyShorty (Milton) RogersShorty PogersShorty RodgersShorty RogerShorty Rogers NineShorty Rogers [as The Prince]Shoty RogersŠ. RodžersasШ. Роджерсショーティ・ロジャースCalvin CoolBoots Brown (2)"The Prince"Sam "Highpockets" HendersonWoody Herman And His OrchestraStan Kenton And His OrchestraBud Shank - Shorty Rogers QuintetShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraRed Norvo And His OrchestraBoots Brown And His BlockbustersHoward Rumsey's Lighthouse All-StarsWoody Herman & The HerdCozy Cole OrchestraWoody Herman And His WoodchoppersKai's Krazy CatsElmer Bernstein & OrchestraLeith Stevens & His OrchestraNational Youth Jazz OrchestraRed Norvo SextetShelly Manne TrioShorty Rogers QuintetJohnny Richards And His OrchestraLeith Stevens' All StarsTeddy Charles QuartetShorty Rogers Big BandWoody Herman And His Third HerdThe Capes & MasksThe Pete Jolly SextetMilt Bernhart And His OrchestraShorty Rogers And His Augmented "Giants"Bobby Troup And His Stars Of JazzKai Winding's New Jazz GroupRed Norvo SeptetShelly Manne SeptetTeddy Charles QuintetGordon 'N' Rogers Inter-Urban Electric A & E Pit Crew And Rhythm BandBoots Brown And The PflugelpipersShorty Rogers And His Orchestra And ChorusWoody Herman & The Second HerdLouis Bellson's Just Jazz All Stars + +312427Jimmy HamiltonJames HamiltonAmerican jazz clarinet and tenor saxophone player, born May 25, 1917 in Dillon, South Carolina, died September 20, 1994 in St. Croix, Virgin Islands. + + +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Hamiltonhttps://www.allmusic.com/artist/jimmy-hamilton-mn0000294810www.jazzarcheology.com/artists/sedition_tenorsax_1940_1944.pdfhttps://www.facebook.com/jimmyhamiltonjazzhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/131809e64472bf3f0bcd928fc517bc9db8d40/biographyhttps://adp.library.ucsb.edu/names/103204HamiltonJ. HamiltonJames "Jimmy" HamiltonJames HamiltonJimmy HamikltonJimmy Hamilton And Clarinet LamentJimmy HammiltonJimmy HimiltonJohnny Hamiltonj. HamiltonД. ХамильтонДж. ХэмилтонДжимми ХэмилтонDuke Ellington And His OrchestraBillie Holiday And Her OrchestraTeddy Wilson And His OrchestraJimmy Hamilton And His OrchestraPete Brown And His BandJohnny Hodges And His OrchestraJimmy Mundy OrchestraSonny Greer And His RextetDuke Ellington's SpacemenClarinet SummitLucky Thompson & His OrchestraDuke Ellington All Star Road BandEsquire All American Award WinnersThe Ellington All-Stars Without DukeDuke Ellington And His Award WinnersJohnny Hodges And His Small BandJohnny Hodges & His Big BandThe Jimmy Hamilton QuartetFestival All-StarsJimmy Hamilton And His QuintetThe Jimmy Hamilton Jazz Ensemble + +312428John SandersAmerican jazz trombonist (born in Elmsford, New York), member of the Duke Ellington Orchestra during the 50s.Needs VoteJ. C. SandersJ. SandersJohn C. SandersJohn Conrad SandersJohn HandersJohn SaundersMonsignor John SandersSandersД. СандерсDuke Ellington And His OrchestraLucky Thompson And His Lucky SevenDuke Ellington's SpacemenDuke Ellington All Star Road BandJohnny Hodges & His Big Band + +312429Willie CookJohn Cook.American jazz trumpet player +Born November 11, 1923 in Tangipahoa, Louisiana, died September 22, 2000 in Stockholm, SwedenNeeds Votehttps://en.wikipedia.org/wiki/Willie_Cookhttps://www.radioswissjazz.ch/en/music-database/musician/23644ba74551a5c310e27bbf7a6e99989dfb2/biographyhttps://www.allmusic.com/artist/willie-cook-mn0000942152/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/309615/Cook_Williehttps://adp.library.ucsb.edu/names/309615CookJohn "Willie" CookJohn CookJohn W. CookJohn Willie CookW. CookWill CookWillie CookeWilly CookDizzy Gillespie And His OrchestraDuke Ellington And His OrchestraDizzy Gillespie Big BandEarl Hines And His OrchestraJay McShann And His OrchestraCount Basie 6Gugge Hedrenius Big Blues BandErnie Wilkins Almost Big BandClark Terry Big BandDuke Ellington All Star Road BandArnett Cobb And His MobbJohnny Hodges & His Big BandThe Roosters (19) + +312480Helmut BrandtHelmut Brandt-OlsenGerman jazz saxophonist and composer, born 7 January 1931 in Berlin; died 26 July 2001 in Stuttgart, Germany.Needs VoteBrandtH. BrandtHelmut BrandHelmuth BrandtHelmut Brandt-OlsenHelmut Brandt ComboRIAS TanzorchesterMainstream OrchestraHelmut Brandt OrchestraAll Star Sax GroupDie Deutschen All StarsHelmut Brandt SextettHelmut Brandt Und Seine Rhythmiker + +312517John CookUS big band trumpeterNeeds VoteJ. CookJohn CookeJohn W. CookWillie CookDizzy Gillespie And His OrchestraDuke Ellington And His Orchestra + +312518Elmon WrightAmerican jazz trumpeter (born October 27, 1929 in Kansas City, Missouri - died 1984). +Son of [a307206], Sr. and brother of [a747127] (both trumpeters). +Needs Votehttps://en.wikipedia.org/wiki/Elmon_Wrighthttps://www.allmusic.com/artist/elmon-wright-mn0000220181/biographyhttps://adp.library.ucsb.edu/names/351580Clay WrightE. WrightE.WrightElman WrightElmen WrightElmo WrightElmon Wright Jr.WrightDizzy Gillespie And His OrchestraDizzy Gillespie Big BandRoy Eldridge And His OrchestraMilt Jackson And Big BrassJames Moody And His ModernistsJohn Lewis And His Orchestra + +312519Red RodneyRobert Roland ChudnickAmerican jazz trumpeter + +Born September 27, 1927 in Philadelphia, Pennsylvania, died May 27, 1994 in Boynton Beach, Florida +Needs Votehttp://en.wikipedia.org/wiki/Red_Rodneyhttps://www.allmusic.com/artist/red-rodney-mn0000883694https://www.imdb.com/name/nm1012058/https://adp.library.ucsb.edu/names/340628R. RodneyRobert RodneyRod RodneyRodneyR. ChudnickThe Charlie Parker QuintetWoody Herman And His OrchestraDuke Ellington And His OrchestraGene Krupa And His OrchestraCharlie Parker And His OrchestraClaude Thornhill And His OrchestraRed Rodney QuintetLee Konitz NonetWoody Herman And The Fourth HerdThe Bob Thiele CollectiveThe Serge Chaloff SextetRed Rodney SextetRed Rodney's Be-BoppersRed Rodney & The New Danish JazzarmyCode Red (22)Red Rodney And Ira Sullivan QuintetRed Rodney' All StarsSerge And His Be Bop BuddiesWoody Herman & The Second HerdRed Rodney New StarsRed Rodney QuartetRed Rodney / Herman Schoonderwalt Quintet + +312520Adrian AceaJohn Adriano Acea.American jazz pianist, trumpeter and saxophonist player. + +Born : September 11, 1917 in Philadelphia, Pennsylvania. +Died : July 25, 1963 in Philadelphia, Pennsylvania. (Rheumatic fever) + +Adriano began as trumpeter in Jimmy Gorham and Sammy Price's groups (end 1930s), also played tenor sax with Don Bagley, but he was mainly a pianist, with which it played with Eddie Davis, Cootie Williams, and (at Minton's) in the +big bands of Dizzy Gillespie (1949-'50), Illinois Jacquet and Dinah Washington, again with Cootie Williams and Illinois Jacquet (1953 and in European tour in 1954). +It was subsequently a musician freelance to New York City up to disappear from the musical scene. +Recorded with : Dizzy Gillespie, Grant Green, Joe Holiday (saxophonist), James Moody, Don Wilkerson, Lou Donaldson, Leo Parker (and others).Needs VoteA. AceaAceaAdrana AceaAdrian AciaAdriana AceaAdriano AceaAdriano AceoJohnny AceaDizzy Gillespie And His Orchestra + +312521Al GibsonAlfred GibsonAmerican jazz saxophonistNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/357132/Gibson_AlA. GibsonAl. GibsonAlfred GibsonGibsonCab Calloway And His OrchestraDizzy Gillespie And His OrchestraJimmy Mundy OrchestraMilt Hinton & His Orchestra + +312522Bob SwiftAmerican trombonistNeeds VoteR. SwiftRob SwiftRobert SwiftWoody Herman And His OrchestraAlvino Rey OrchestraArtie Shaw And His OrchestraCharlie Barnet And His OrchestraBoyd Raeburn And His OrchestraWoody Herman & The Second Herd + +312523John KelsonJohn Joseph Kelson, Jr.American Jazz saxophonist, flautist and clarinetist. +Better know as [a280070]. +Classmate of [a70526]. + +Born: February 27, 1922 in Los Angeles, California +Dead: April 28, 2012 in Beverly Hills, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Jackie_KelsoJ.J. Kelson Jr.J.J. Kelson, Jr.John J. KelsonJohn J. Kelson Jr.John J. Kelson, Jr.John Joseph Kelson, Jr.John KelsomJohn Kelson (= Jackie Kelso)John Kelson JrJohn Kelson Jr.John Kelson, Jr.Johnny KelsonJon KelsonJoseph Kelson Jr.Joseph Kelson, Jr.KelsonJackie KelsoAfriqueQuincy Jones And His OrchestraCount Basie OrchestraThe Piltdown MenThe Adam Ross ReedsRoy Milton & His Solid SendersThe Black Boy OrchestraThe Gene Harris All Star Big BandWilbert Baranco OrchestraJackie Kelso OrchestraJon Nagourney QuintetThe Buddy Collette Big Band + +312524Larry BreenBassistNeeds VoteL. BreenLarry BreebLayzer BreenBenny Goodman And His OrchestraMickey Katz And His Kosher-JammersMilton Rogers And His Orchestra + +312526Lou McGarityLou McGarityAmerican jazz trombonist, born 22 July 1917 in Athens, Georgia, USA, died 28 August 1971 in Alexandria, Virginia, USA.Needs Votehttps://en.wikipedia.org/wiki/Lou_McGarityhttps://www.allmusic.com/artist/lou-mcgarity-mn0000829151https://adp.library.ucsb.edu/names/106391L. McGarityLew McGarrityLou MacGarityLou Mc GarityLou McGarrityLouis McGarityMcGarityMus. 2/C Louis McGarityRobert "Lou" McGarityRobert Louis "Lou" McGarityRobert McGarityErskine TearblotterRobert McGarityThe Will Bradley-Johnny Guarnieri BandWoody Herman And His OrchestraMetronome All StarsBenny Goodman SextetNapoleon's EmperorsCharlie Parker And His OrchestraCootie Williams And His OrchestraWild Bill Davison And His CommodoresEddie Condon And His BandBobby Hackett And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraCharlie Parker Big BandCharlie Parker With StringsThe Mel Powell SeptetThe CommandersBuddy Morrow And His OrchestraEddie Condon And His All-StarsJerry Gray And His OrchestraLawson-Haggart SextetLawson-Haggart Jazz BandPee Wee Erwin And His Dixieland All-StarsMuggsy Spanier And His All StarsHenry Jerome And His OrchestraDoc Severinsen And His OrchestraYank Lawson's Jazz BandMel Powell And His OrchestraLou McGarity QuintetNappy Lamare's Louisiana Levee LoungersAllstars (11)The Lou McGarity Big EightPee Wee Erwin's Dixieland EightEdgar Sampson And His OrchestraManny Klein's Dixieland BandPee Wee Erwin's JazzbandUrbie Green And Twenty Of The "World's Greatest"Cootie Williams SeptetJam Session At The RiversideLouis Armstrong And The V-Disc All-Stars + +312527Tommy ToddAmerican jazz pianist.Needs Votehttps://www.allmusic.com/artist/tommy-todd-mn0000618019/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/347213/Todd_TommyHal DeanT. ToddToddTom ToddHarry James And His OrchestraThe Benny Goodman QuintetArtie Shaw And His OrchestraBob Crosby And His OrchestraHarry James And His Big BandLionel Hampton All StarsThe All Stars (7)Tommy Todd And His TrioHerbie Haymer's OrchestraBabe Russin Quintet + +312528Herbie HaymerHerbert Maximillum HaymerAmerican jazz tenor saxophonist, born July 24, 1915 in Jersey City, New Jersey, USA, died April 11, 1949 in Santa Monica, California, USA. +Originally played alto saxophone but switched tenor while working with the Carl Sears-Johnny Watson orchestra. He is best known as a featured soloist with [a=Red Norvo] (1935-1937) but also played with [a=Jimmy Dorsey] (1937-1941), [a=Woody Herman] (1941-1942), [a=Kay Kyser] (1942), and [a=Benny Goodman] (1943). After serving in the Navy during 1944, he worked mostly as a studio musician but also played with Benny Goodman again and with [a=Red Nichols]. He died in a car accident driving home from a [a=Frank Sinatra] recording session. +Needs Votehttps://adp.library.ucsb.edu/names/320520H. HaymerHaymerHerb HaymerHerbert H. HaymerHerbert HaymerHerbert M. "Herbie" HaymerHerbie HaumerHarry James And His OrchestraWoody Herman And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraMildred Bailey And Her OrchestraHarry James & His Music MakersRed Callender SextetThe Sunset All StarsHerbie Haymer QuintetHerbie Haymer & His California All StarsFrank Sinatra And His OrchestraHerbie Haymer's OrchestraThe Band That Plays The BluesThe Angels Of Jump + +312530John CochraneCorrectDizzy Gillespie And His Orchestra + +312531Allan ReussAllan ReussAmerican jazz guitarist. +Born June 15, 1915 in New York City, New York, USA. +Died June 04, 1988 in North Hollywood, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Allan_Reusshttps://www.allmusic.com/artist/allan-reuss-mn0000001755/biographyhttps://www.campusfive.com/swingguitarblog/2010/1/7/allan-reuss-the-unsung-hero-of-swing-rhythm-guitar.htmlhttps://peoplepill.com/people/allan-reuss/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/406855c8717d84cddbe49aa33bb2d88dbbf41/biographyhttps://adp.library.ucsb.edu/names/116448A. HeussA. ReussA. RuessA.ReussAlaln RuessAlan ReuseAlan ReussAllan J. ReussAllan ReusAllan RuessAllenAllen J. ReussAllen ReusAllen ReuseAllen ReussAllen RuessReuseReussTommy Dorsey And His OrchestraHarry James And His OrchestraLes Brown And His Band Of RenownBenny Goodman SextetBillie Holiday And Her OrchestraLouis Armstrong & His Hot SevenLionel Hampton And His OrchestraArtie Shaw And His OrchestraJack Teagarden And His OrchestraJimmy Dorsey And His OrchestraTeddy Wilson And His OrchestraHelen Humes And Her All-StarsColeman Hawkins And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraJohn Fahey & His OrchestraMildred Bailey And Her OrchestraGene Krupa And His ChicagoansJerry Gray And His OrchestraMembers Of The Benny Goodman OrchestraPeck's Bad Boys (2)Johnny Guarnieri QuartetGene Krupa's Swing BandAl Donahue And His OrchestraCorky Corcoran & His OrchestraPutney Dandridge And His OrchestraArnold Ross QuintetCrystalette All StarsThe Jam Dandies + +312532Tommy RomersaAmerican jazz drummerNeeds Votehttps://www.allmusic.com/artist/tommy-romersa-mn0000542104https://adp.library.ucsb.edu/index.php/mastertalent/detail/340905/Romersa_TommyT. RomersaThomas Alvin RomersaThomas RomersaTom RomersaTony RomersaThe Benny Goodman QuintetThe Jerry Fielding OrchestraThe Four Of A Kind + +312533George WendtAmerican trumpet playerNeeds Votehttps://www.allmusic.com/artist/george-wendt-mn0002158573/creditsG. WendtArtie Shaw And His OrchestraRed Norvo And His OrchestraTom Gerunovich And His Roof Garden OrchestraTom Gerun And His Orchestra + +312534Terry GibbsJulius GubenkoAmerican jazz vibraphone player & bandleader, born: October 13, 1924 in Brooklyn, New York. Father of [a=Gerry Gibbs], formerly married to songwriter [a4580306]. +Gibbs got his professional start on drums with the Judy Kayne band. After three years in the U.S. Army he returned to immediate activity in and around New York and to a revitalized jazz scene that vibrated to the new music of Charlie Parker, Dizzy Gillespie and other pioneers of the new era. +After a brief term in with the Tommy Dorsey band, he toured Sweden with a group led by Chubby Jackson in December 1947-January 1948, then was featured with the Buddy Rich band until September 1948. When the Rich band folded, Gibbs joined Woody Herman's second Herd and won the international recognition that was so long overdue. During his year with Herman, Terry solidified a reputation for hard-swinging, unrelenting drive on vibes that enabled him to launch his own small groups in the years that followed. Since 1951 he has been one of the top jazz attractions in the U.S. +In 1957 Gibbs settled in the San Fernando Valley suburb of Woodland Hills. He immediately laid plans for the realization of a long-held dream: to lead his own big band.Needs Votehttp://www.terrygibbs.com/https://en.wikipedia.org/wiki/Terry_Gibbshttps://forward.com/culture/music/663256/terry-gibbs-100th-birthday-jazz-vibraphone-1959-brooklyn-jewish/https://downbeat.com/archives/detail/terry-gibbs-vamp-til-readyhttps://postgenre.org/jazz-master-terry-gibbs-ii/https://adp.library.ucsb.edu/names/203677A Jazz Band BallGibbsJulius GubenkoMr. GibbsT GibbsT. GibbsT.GibbsTerryTerry Gibbs' New Jazz StarsTerry GribbsTerry, GibbsWoody Herman And His OrchestraMetronome All StarsBenny Goodman SextetBuddy De Franco SextetTerry Gibbs QuartetBe Bop BoysTerry Gibbs And His OrchestraAllen's All StarsTerry Gibbs QuintetTerry Gibbs SextetTerry Gibbs Big BandWoody Herman And His Third HerdChubby Jackson And His Fifth Dimensional Jazz GroupTerry Gibbs Dream BandThe New Benny Goodman SextetTerry Gibbs & His West Coast FriendsSonny Stitt & His West Coast FriendsBuddy DeFranco / Terry Gibbs QuintetWoody Herman & The Second HerdThe Ex-HermanitesNudnicksTerry Gibbs And His Orchestra (2)Terry Gibbs / Buddy DeFranco / Herb Ellis SextetTerry Gibbs Octet + +312535Oscar MooreAmerican jazz guitarist (b. December 25, 1916 in Austin (USA) - d. October 8, 1981 in Las Vegas (USA). He was an integral part of the [a320797] during 1937–1947. He also recorded with [a136133], [a265634] (1941), [a2721696], and [a258433]. He played with his brother [a=Johnny Moore (2)] in the [a=Johnny Moore's Three Blazers] from 1947 to the mid-1950s. + +For the drummer, see [a=Oscar Moore (2)]. +Needs Votehttp://en.wikipedia.org/wiki/Oscar_Moorehttps://www.radioswissjazz.ch/en/music-database/musician/143867154a531115cd4bd49002bbff24ff4e3/biographyhttp://amodernist.blogspot.com/2012/12/oscar-moore-and-fender-1951.htmlhttps://www.allmusic.com/artist/oscar-moore-mn0000489027https://www.jazzdisco.org/oscar-moore/catalog/https://www.imdb.com/name/nm1784680/https://adp.library.ucsb.edu/names/106527MooreMoreO MooreO, MooreO. MooreOscarOscar MoorOscar Moore On GuitarOscar MoreThe International JazzmenLionel Hampton And His OrchestraJohnny Moore's Three BlazersThe Nat King Cole TrioIllinois Jacquet And His OrchestraArt Tatum And His BandThe Capitol International JazzmenThe Just Jazz All StarsThe Oscar Moore QuintetRay Charles TrioThe Oscar Moore TrioThe Oscar Moore QuartetIllinois Jacquet QuintetOscar Moore's ComboThe Modern Jazz OctetOscar Moore And His Rhythm Aces + +312536Gus BivonaGus Peter Bivona.American jazz clarinetist and saxophonist (alto) player. + +Born : November 25, 1915 in New London, Connecticut. +Died : January 05, 1996 in Woodland Hills, California. +Married to singer [a4629723].Needs Votehttps://en.wikipedia.org/wiki/Gus_Bivonahttps://adp.library.ucsb.edu/names/107407BivonaG. BivonaGus BinovaGus Bivona And His OrchestraGus BivonisGus VivonaJimmy BivonaTommy Dorsey And His OrchestraBunny Berigan & His OrchestraWoody Herman And His OrchestraMGM Studio OrchestraTeddy Powell And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraPete Rugolo OrchestraThe Mel Powell SeptetWoody Herman And The Swingin' HerdGlen Gray & The Casa Loma OrchestraAllen's All StarsGus Bivona And His OrchestraThe Buddy DeFranco Big BandBunny Berigan And His Men4-star-5The Great New Gus Bivona Band + +312537Rick HendersonRichard Andrew Henderson.American jazz alto and tenor saxophonist, born April 25, 1928 in Washington, D. C., died May 21, 2004 in Washington, D. C. +Henderson played and recorded as a member of Duke Ellington's Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Rick_Hendersonhttps://www.allmusic.com/artist/rick-henderson-mn0000303579HendersonRichard HendersonRichmond HendersonRick AndersonRickie HendersonRicky HendersonР. ХендерсонDuke Ellington And His OrchestraEarl Hines And His OrchestraHarlan Leonard And His RocketsMichel Legrand Big BandDinah Washington & The All-Stars + +312539Oliver WilsonIrish viola instrumentalistNeeds VoteThe English Baroque SoloistsIrish Baroque OrchestraThe MozartistsThe Bach Players + +312540Sam MarowitzSamuel MarowitzSaxophonist and clarinet player + +Born: 17 February 1920 in Middletown, New York, USA +Died: 4 December 1984 in Orlando, Florida, USACorrecthttps://de.wikipedia.org/wiki/Sam_Marowitzhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/329803/Marowitz_Samhttps://www.allmusic.com/artist/sam-marowitz-mn0000832924/credits"Big Sam" MarowitzBig SamBig Sam And His Alto SaxBig Sam Marowitz & His Alto SaxMarowitzS. MarowitzSam (The Man) MarowitzSam MarkowitzSam MarovitzSam Marowitz And His Alto SaxSam MorowitzStan MarowitzHarry James And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraAndy Kirk And His Clouds Of JoyElliot Lawrence And His OrchestraWoody Herman & The New Thundering HerdTony Scott And His OrchestraWoody Herman & The HerdJoe Reisman And His OrchestraHarry James & His Music MakersBilly Byers And His OrchestraTerry Gibbs And His OrchestraFlip Phillips BoptetLarry Sonn OrchestraThe Elliot Lawrence BandWoody Herman And The Fourth HerdChubby Jackson's Big BandVic Schoen And His All Star BandWoody Herman & The Second Herd + +312541Sam HurtAmerican jazz trombonist.Needs VoteHuntHurtS. G. HurtS. HurtS.G. HurtSam HeartSamuel HurtDizzy Gillespie And His Orchestra + +312542Carlos DuchesnePercussionistCorrectChuck DuchesneDizzy Gillespie And His OrchestraNoro Morales & His Orchestra + +312543Don SlaughterCorrectDizzy Gillespie And His Orchestra + +312544Irving GoodmanJazz trumpet player, brother of [a254768], [a258690], and [a=Freddy Goodman]. + +born: February 06, 1914, Chicago, Cook County, Illinois, United States +died: Juli 07, 1990 (76), Los Angeles, Los Angeles County, California, United States (Heart attack) Needs Votehttps://www.latimes.com/archives/la-xpm-1990-07-12-mn-339-story.htmlhttps://www.allmusic.com/artist/irving-goodman-mn0000563620/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/318353/Goodman_IrvingErving GoodmanGene GoodmanGoodmanI. GoodmanIrv GoodmanIrwing GoodmanBunny Berigan & His OrchestraJimmy Dorsey And His OrchestraCharlie Barnet And His OrchestraTeddy Powell And His OrchestraBenny Goodman And His OrchestraAlvino Rey And His OrchestraMembers Of The Benny Goodman OrchestraBunny Berigan's Rhythm-MakersBunny Berigan And His Men + +312545Red BallardSterling BallardJazz trombonist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/352634/Ballard_Redhttps://www.allmusic.com/artist/sterling-red-ballard-mn0003440260"Red" BallardBallardBed BallardG. BallardR. BallardS. BallardS.BallardSterling "Red" BallardSterling BallardSterling Red BallardTed BallardWoody Herman And His OrchestraBenny Goodman And His Orchestra + +312546Tommy PedersonPullman Gerald PedersonAmerican jazz trombonist, composer and arranger + +Born: August 15, 1920 in Watkins, Minnesota +Died: January 16, 1998 in Los Angeles, California + +Played with : Orrin Tucker, Gene Krupa, Tommy Dorsey, Nelson Riddle, Doc Severinsen, Frank Sinatra and othersNeeds Votehttps://en.wikipedia.org/wiki/Tommy_Pedersonhttp://worldcat.org/identities/lccn-no98012382/https://www.allmusic.com/artist/tommy-pederson-mn0000491707https://adp.library.ucsb.edu/names/336915PedersenPedersonPullman "Tommy" PedersonPullman PedersonPullmann Thomas 'Tommy' PedersonT. PedersonTom PedersonTommy PedersenTommy Pederson And OrchestraTommy PetersonPullman PedersonTommy Dorsey And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraBilly May And His OrchestraRay Anthony & His OrchestraCharlie Barnet And His OrchestraBoyd Raeburn And His OrchestraRussell Garcia And His OrchestraIke Carpenter And His OrchestraPete Rugolo OrchestraGeorgie Auld And His OrchestraLouie Bellson OrchestraBob Keene OrchestraJerry Gray And His OrchestraWoody Herman And The Las Vegas HerdDennis Farnon And His OrchestraJohnny Richards And His OrchestraMembers Of The Benny Goodman OrchestraThe Hollywood TrombonesHot Rod Rumble OrchestraTutti's TrombonesThe Buddy DeFranco Big BandNeal Hefti And His Jazz Pops OrchestraFour Trombone BandThe Band That Plays The Blues + +312547Herb HarperHerbert HarperAmerican trombonist, born 2 July 1920 in Salina, Kansas, and raised in Amarillo, Texas; died 21 January 2012. + +After touring with [a=Charlie Spivak] 1944-1947, Harper settled in Hollywood, playing with [a=Teddy Edwards]' quintet and in the big bands of [a=Benny Goodman] 1947, [a=Charlie Barnet] 1948, [a=Stan Kenton] 1950 and [a=Jerry Gray] 1950-1952. In the mid-1950s he led own group, playing West Coast jazz and making records. From 1955 on, he was mainly active as a studio musician for NBC, but also recorded with jazz artists such as [a=Benny Carter] (1958), [a=Bob Florence] (intermittently 1955-1981).Needs Votehttps://en.wikipedia.org/wiki/Herbie_HarperH. HarperH.HarperHarperHerbert HarperHerbie HarperHerbis HarperHerby HarperHarry James And His OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraPete Rugolo OrchestraLouie Bellson OrchestraWoody Herman And The Swingin' HerdJerry Gray And His OrchestraBob Florence Big BandMarty Paich Big BandThe Bob Florence Limited EditionBob Gordon QuintetHerbie Harper SextetTutti's TrombonesPete Rugolo And His All StarsHerbie Harper QuintetRoger Neumann's Rather Large BandThe Jazz City WorkshopFive BrothersThe George Redman GroupThe Herbie Harper-Bill Perkins QuintetFour Trombone BandRené Bloch And His Big Latin BandHerbie Harper QuartetThe Modern Jazz Octet + +312548Stan FishelsonAmerican trumpet playerNeeds Votehttps://www.allmusic.com/artist/stan-fishelson-mn0000098425/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/315448/Fishelson_StanS. FishelsonSam FishelsonStan FihillsonStan FischelsonStan FishelmanStan FishilsenStan FishlsonStanley FishelsonHarry James And His OrchestraWoody Herman And His OrchestraBuddy Rich And His OrchestraArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraElliot Lawrence And His OrchestraStan Getz QuartetBenny Goodman And His OrchestraThe Elliot Lawrence BandHal Schaefer And His OrchestraWoody Herman & The Second Herd + +312549Jake PorterJake Vernon Haven PorterJazz and rhythm & blues trumpeter and record producer, born August 3, 1916, Oakland, California, died March 25, 1993, Los Angeles. +Owner of [l=Combo Records].Correcthttp://www.allmusic.com/artist/jake-vernon-porter-mn0000134655HavenJ PorterJ. PorterJay PorterParkerPorterV. HavenVernon "Jake" PorterVernon (Jake) PorterVernon Jake PorterVernon PorterVernon PorterVernon HavenBenny Carter And His OrchestraJake Porter's ComboJake Porter And His OrchestraJake Porter Quartet + +312550Jack ChaneyAmerican jazz saxophonistNeeds VoteJack S. ChaneyJackie ChaneyRay Noble And His OrchestraGordon Jenkins And His OrchestraJohn Scott Trotter And His OrchestraOpie Cates And His OrchestraManny Klein's Dixieland BandGeorge Van Eps Ensemble + +312551Heinie BeauHenry John BeauAmerican jazz saxophonist and clarinetist, born March 8, 1911, in Calvary, Wisconsin; died April 19, 1987, Burbank, California (age 76). Married Thelma Grace Burleton ([a=Grace T. Beau]), July 23, 1936, in Fond du Lac, Wisconsin. Brother of Wally Beau (of the Wally Beau Orchestra in Fond du Lac, Wisconsin). + +Among others, he played with Hoagy Carmichael, Ray Anthony, Buddy Rich, Frank Sinatra, Ella Fitzgerald, Johnny Mercer, Jess Stacy, Jo Stafford, Benny Goodman, and Louis Armstrong. +Joined ASCAP in 1954, collaborating with Axel Stordahl, Peggy Lee, Dave Barbour, and Red Nichols. +Co-founded the [l=Henri Records] label in 1980.Correcthttps://adp.library.ucsb.edu/names/107089https://en.wikipedia.org/wiki/Heinie_Beauhttps://www.imdb.com/name/nm0064272BeauH. BeauHBHeine BeauHeini BeauHenie BeauHenry BauHenry BeanHenry Bean (HB)Henry BeauHenry J BeauHenry J. "Heinie" BeauHenry J. BeauHienie BeauTommy Dorsey And His OrchestraWoody Herman And His OrchestraJack Teagarden's ChicagoansWingy Manone & His OrchestraArtie Shaw And His OrchestraMorty Corb And His Dixie All-StarsMembers Of The Benny Goodman OrchestraRay Anthony's Big Band DixielandHeinie Beau And His OrchestraHeinie Beau And His Hollywood Jazz QuartetHeinie Beau And His Hollywood SextetHeinie Beau And His Hollywood QuintetGene Krupa ComboFrank Sinatra And His OrchestraManny Klein's Dixieland BandHerbie Haymer's OrchestraHeinie Beau And His Hollywood Jazz StarsDave Harris Sextet + +312552Skeets HerfurtArthur HerfurtAmerican jazz alto and tenor saxophonist and clarinetist, born May 28, 1911 in Cincinnati, Ohio, died April 17, 1992 in New Orleans, Louisiana. +Herfurt played with Smith Ballew (1934), Dorsey Brothers (1934-1935; with Jimmy Dorsey 1935-1937, with Tommy Dorsey 1937-1939), Ray Noble, Alvino Rey, Benny Goodman (1946-1947), Earle Spencer (1946), Billy May, Louis Armstrong, Georgie Auld, Jack Teagarden, Stan Kenton, Ray Conniff and others. + +Needs Votehttps://adp.library.ucsb.edu/names/109808"Skeets" HerfurtA. HerfurtArt HurfurtArthur "Skeets" HerfurtArthur "Skeets" Herfurt Jr.Arthur "Sweets" HerfurtArthur HerfurtArthur HurfurtArthur R. 'Skeets' HerfurtHerefordHerfurtS. HerfurtSHSkeets HerfertSkeets HerfrodSkeets Herfurt (SH)Skeets HerfurthSkeets HerfutSkeets HurfortSkeets HurfurtTommy Dorsey And His OrchestraWoody Herman And His OrchestraTommy Dorsey And His Clambake SevenBilly May And His OrchestraArtie Shaw And His OrchestraRay Anthony & His OrchestraJimmy Dorsey And His OrchestraLarry Clinton And His OrchestraPete Rugolo OrchestraGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraBob Keene OrchestraAlvino Rey And His OrchestraWoody Herman And The Swingin' HerdThe Dorsey Brothers OrchestraGlen Gray & The Casa Loma OrchestraDorsey Brothers Vocal Trio + +312553Bill HarrisWillard Palmer Harris.American jazz trombonist. +Born October 28, 1916 in Philadelphia, Pennsylvania, USA. +Died August 21, 1973 in Hallandale, Florida, USA. + +Early in his career, Harris performed with Benny Goodman, Charlie Barnet and Eddie Condon. He had a broad, thick tone and quick vibrato which remained for the duration of each tone. He went on to join Woody Herman's First Herd in 1944. He was also in the Four Brothers Second Herd during the late 1940s, and worked with Herman again in the 1950s. He then teamed up with Charlie Ventura, and later with Chubby Jackson. Together with Flip Phillips, he became a stalwart of Benny Goodman's group in 1959. He later worked in Las Vegas, and finally retired to Florida.Needs Votehttps://en.wikipedia.org/wiki/Bill_Harris_(musician)https://www.allmusic.com/artist/bill-harris-mn0000766039/biographyhttps://adp.library.ucsb.edu/names/103704B. HarrisB.HarrisBenny HarrisBill Harris & FriendsBill Harris And FriendsBilly HarrisHarrisWillard HarrisWilliard "Bill" HarrisБилл ХэррисWoody Herman And His OrchestraMetronome All StarsBenny Goodman And His OrchestraCharlie Parker Big BandNeal Hefti's OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersCharlie Parker With StringsThe V-Disc All StarsChubby Jackson's OrchestraThe Nat Pierce OrchestraFlip Phillips FliptetWoody Herman BandBenny Morton's Trombone ChoirBill Harris & His New MusicWoody Herman And His Third HerdWoody Herman And The Fourth HerdThe Gene Krupa SextetBill Harris And His OrchestraFlip Phillips And His OrchestraSonny Berman's Big EightChubby Jackson's Big BandBill Harris SeptetBenny Goodman And His Jazz GroupThe Jackson-Harris HerdJATP All StarsChubby Jackson & Bill Harris All-StarsBill Harris All StarsWoody Herman's Anglo-American HerdJoe Bushkin SextetThe V-Disc JumpersWoody Herman StarsVanderbilt StarsWoody Herman & The Second HerdThe Ex-HermanitesVanderbilt All StarsBill Harris Big EightCharlie Ventura/Bill Harris QuintetWoody Herman And The Swingin' Herd (2)Benny Goodman TentetChubby Jackson Septet + +312554Harry BabasinYervant Harry Babasin, Jr.American jazz bassist and cellist, nicknamed "The Bear" +Born March 19, 1921 in Dallas, Texas. Died May 21, 1988 in Los Angeles, California + +He was (along with Oscar Pettiford) probably the first bassist to record pizzicato jazz cello. he is also well-known for his experimental blends of jazz and Brazilian music. +Throughout the 1950s and 1960s Babasin freelanced for radio and television and served as a session player. He and drummer [a581138] formed their own record company, [l82366], in 1954 and he went on to produce ten albums.Needs Votehttps://en.wikipedia.org/wiki/Harry_Babasinhttps://www.tshaonline.org/handbook/entries/babasin-harryhttps://www.allmusic.com/artist/harry-babasin-mn0000668463/biographyhttps://www.jazzdisco.org/harry-babasin/catalog/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1311948ac799fc4eb3412d015fa25a3c328d54/discographyhttps://www.imdb.com/name/nm0044758/https://adp.library.ucsb.edu/names/302447BabasinH. BabasinH.BabasinHarry BabasonHarry BabisonHarry BabsinThe BearWoody Herman And His OrchestraSonny Clark TrioBenny Goodman SextetThe Benny Goodman QuintetGene Norman's "Just Jazz"Boyd Raeburn And His OrchestraBenny Goodman And His OrchestraBud Shank - Shorty Rogers QuintetArt Pepper QuartetPete Rugolo OrchestraJulia Lee & Her Boy FriendsWoody Herman And The Swingin' HerdLou Levy TrioThe International All-Stars (2)The Bud Shank QuintetDodo Marmarosa TrioBarney Kessel QuintetThe Jack Millman SextetLaurindo Almeida QuartetThe Herb Ellis QuintetHarry Babasin And The Jazz PickersThe Phil Moody QuintetJimmy Wyble TrioHerbie Harper QuintetBob Enevoldsen QuintetAnthony Ortega QuartetJackie Mills QuintetArnold Ross QuartetThe Dirty Old Men (3)The John Banister TrioHarry Babasin QuintetArnold Ross TrioBuddy Childers QuartetWoody Herman & The Second HerdThe Giants Of Jazz (3)Harry Babasin And His OrchestraHerbie Harper QuartetAl Killian And His OrchestraBoyd Raeburn All-StarsHarry Babasin Quartet + +312555Frank BeachCanadian jazz trumpet player. born 1923 in Winnipeg, ManitobaNeeds VoteBeachF.F. BeachFranck BeachFrank BeachsFrank BeechFrank F. BeachFrank Fletcher-BeachFrank Fletcher-BreachLes Brown And His Band Of RenownStan Kenton And His OrchestraBilly May And His OrchestraMarty Paich OrchestraArtie Shaw And His OrchestraLes Brown And His OrchestraBoyd Raeburn And His OrchestraHenry Mancini And His OrchestraPaul Weston And His OrchestraPete Rugolo OrchestraStanley Wilson And His OrchestraBob Keene OrchestraThe Frankie Capp Percussion GroupThe Jerry Fielding OrchestraJerry Gray And His OrchestraSam Donahue Navy BandDennis Farnon And His OrchestraMarty Paich Big BandMembers Of The Benny Goodman OrchestraThe Tom Talbert Jazz OrchestraHerschel Burke Gilbert Orchestra + +312556Al HendricksonAlton Reynolds HendricksonAmerican jazz and studio guitarist and vocalist. + +b. May 10, 1920 (Eastland, TX, USA). +d. July 19, 2007 (North Bend, OR, USA).Needs Votehttps://en.wikipedia.org/wiki/Al_Hendricksonhttps://www.imdb.com/name/nm5047354/https://peoplepill.com/people/al-hendricksonhttps://adp.library.ucsb.edu/names/106792A. HendricksonA. R. HendricksonA.HendricksonAiton HendricksonAl HendericksonAl HendricksenAl HendrickssonAl HendriksonAl HenricksonAl KendricksonAl R. HendricksonAlton "Al" HendricksonAlton HendricksonAlton R. "Al" HendricksonAlton R. 'Al' HendricksonAlton R. HendricksonHendericksonTommy HendrixWoody Herman And His OrchestraBenny Goodman SextetBilly May And His OrchestraLouis Armstrong And His All-StarsDizzy Gillespie Big BandArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraRussell Garcia And His OrchestraHenry Mancini And His OrchestraBenny Carter And His OrchestraThe Freddie Slack TrioPete Rugolo OrchestraThe SurfmenBill Holman And His OrchestraGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraBob Keene OrchestraL'Ensemble Instrumental Des IlesLes Cinq ModernesJerry Gray And His OrchestraWoody Herman And The Las Vegas HerdThe International All-Stars (2)Members Of The Benny Goodman OrchestraWoody Herman And His Third HerdThe Guitars, Inc.Marty Paich And His Jazz Piano QuartetThe Phil Moody QuintetGuitars Unlimited (3)Eddie Miller And His Blue NotesPete Candoli SeptetGeorge Roberts' SextetGramercy SixTommy Todd And His TrioFour Trombone BandThe Giants Of Jazz (3)Herbie Harper QuartetBabe Russin QuintetFrank Devenport QuintetteMahlon Clark Sextette + +312559Earl SwopeEarl Bowman SwopeAmerican jazz trombonist, born August 4, 1922 in Hagerstown, Maryland, died January 3, 1968 in Washington, D.C. +Brother of [a=Rob Swope] +Needs Votehttps://en.wikipedia.org/wiki/Earl_Swopehttps://www.jazzwax.com/2008/11/early-swope.htmlhttps://data.bnf.fr/fr/13900221/earl_swope/https://adp.library.ucsb.edu/names/346028E. SwopeEarl SwepeSwopeWoody Herman And His OrchestraBuddy Rich And His OrchestraLouie Bellson Big BandThe Orchestra (4)The Freddy Merkle GroupJoe Timer And His OrchestraJimmy Dorsey, His Orchestra & ChorusThe Serge Chaloff SextetEarl Swope SextetThe Bill Potts Big BandSerge And His Be Bop BuddiesWoody Herman & The Second Herd + +312560Dave BlackDavid John Black.American jazz drummer. + + +Born : January 23, 1928 in Philadelphia, Pennsylvania. +Died : December 04, 2006 in Alameda, California. +Needs VoteD. BlackDavey BlackDuke Ellington And His OrchestraBob Scobey's Frisco BandGordon Brisker Big Band + +312561Hernifan MajeedJazz trombonist and songwriter. + +BMI CAE/IPI #: 87648230Needs VoteH. MageedH. MajeedHarmeesan MageedHarneefan & MageedHarneefan MageedHarneefan, MageedHarneefan-MageedHarneefan-MaggeoHarnefan MageedHernefan MajeedHernifan MaseedCharles GreenleeDizzy Gillespie And His Orchestra + +312563Hoyt BohannonHoyt H. Bohannon.American jazz trombonist. + +Born : May 22, 1918 in Daytona Beach, Florida. +Died : December 17, 1990 in North Hollywood, California. + +Played with : Harry James, Paul Whiteman, Henry Mancini and others. + +Needs VoteBohannonH. BohannonHoyd BohannonHoyd BohannsonHoyt BohananHoyt BohannanHoyt BohanonHoyt H. BohannanHoyt H. BohannonHoyt M. BohannonHarry James And His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraHenry Mancini And His OrchestraBenny Goodman And His OrchestraLalo Schifrin & OrchestraJerry Gray And His OrchestraLouie Bellson Big BandMembers Of The Benny Goodman OrchestraBuddy Baker And His OrchestraTutti's TrombonesThe Buddy DeFranco Big BandFrank Sinatra And His Orchestra + +312564Joe TriscariJoseph Triscari.American jazz trumpeter. + +Born : June 15, 1914. +Died : October 10, 1961. +Needs VoteJ. TriscariJoe TrescariJoseph TriscariTriscariWoody Herman And His OrchestraGene Krupa And His OrchestraHenry Mancini And His OrchestraPete Rugolo OrchestraWoody Herman And The Swingin' HerdTutti's TrumpetsThe Buddy DeFranco Big BandSi Zentner & His Dance Band + +312565Francisco PozpCorrectDizzy Gillespie And His Orchestra + +312566George SeabergGeorge A. SeabergJazz trumpet player. + +Birth: 1915 Everett, Washington +Death: Jan. 17, 1965 Glendale, Los Angeles, California, USANeeds VoteG. SeabergGSGeorge A. SeabergGeorge Seaberg (GS)George SeaberyGeorge SeaburGeorge SeaburgGeorge SeeburgTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraCharlie Barnet And His OrchestraThe Band That Plays The Blues + +312567Bumps MyersHubert Maxwell MyersAmerican jazz tenor saxophone player + +Born : August 22, 1912 in Clarksburg, West Virginia +Died : April 09, 1968 in Los Angeles, California + +He worked with "Earl Whaley's Band", "Curtis Mosby and his Dixieland Blue Blowers" (recorded) +Needs Votehttps://adp.library.ucsb.edu/names/333177"Bumps" MyersBump MeyersBump MyersBumps MeyerBumps MeyersHerbert 'Bumps' MyersHubert "Bumps" MeyersHubert "Bumps" MyersHubert (Bumps) MyersHubert Bumps MyersHubert M. MyersHubert Maxwell "Bumps" MyersHubert MeyersHubert MyersHubert ”Bumps” MyersMyersBenny Carter And His OrchestraLes Hite And His OrchestraRussell Jacquet And His All StarsLester & Lee Young's OrchestraBumps Myers & His Frantic FiveBumps Myers SextetBig Sid Catlett's Band + +312568Nate KazebierNathan Forrest KazebierAmerican jazz trumpeter, born August 13, 1912 in Lawrence, Kansas, died October 22, 1969 in Reno, Nevada. +Kazebier played with Austin Wylie, Jan Garber, Benny Goodman (1935-1936, 1946-1947), Ray Noble, Seger Ellis, Spud Murphy, Gene Krupa (1935, 1939-1940), Jimmy Dorsey (1940-1943), Ray Bauduc among others. +Needs VoteKazebierN. KazebierNat KazebierNathan KazebierPaul Whiteman And His OrchestraJimmy Dorsey And His OrchestraBenny Goodman And His OrchestraGene Krupa And His ChicagoansRay Bauduc And The Bob-CatsThe Jam Dandies + +312570Sam WeissSamuel WeissAmerican jazz drummer,vibraphonist and bandleader. +Born September 1, 1910 in New York City, New York. +Died December 18, 1977 in Encino, California (67 years of age). +Father of [a=Maurice Weiss (3)] and brother of jazz bassist [a=Sid Weiss]. +[b]Not to be confused with [a575065], co-writer of several songs in the 1950's-60's, or the jazz manouche guitarist [a=Sammy Weiss].[/b] + +Weiss started with the Gene Kardos society orchestra in 1933, then gigged and recorded with many of the top big bands of the period. Weiss played with Louis Armstrong, Adrian Rollini, Wingy Manone, Miff Mole, Artie Shaw, Benny Goodman, Tommy Dorsey, Paul Whiteman, Louis Prima, Erskine Hawkins and many others. +He was sometimes called "Sammy The Drummer", a character he used on the Jack Benny television show. He eventually led his own highly popular dance band in some of the top hotels and dance halls around Los Angeles.Needs Votehttps://www.facebook.com/p/Sammy-The-Drummer-Weiss-100075422427614/https://www.imdb.com/name/nm0919166/https://jazzlives.wordpress.com/2017/05/11/sammy-the-drummer-some-thoughts-on-sammy-weiss/https://nl.wikipedia.org/wiki/Sam_WeissS. WeissSammy WeissSamuel WeissShimincha WeissWeissSammy White (5)Louis Armstrong And His OrchestraArtie Shaw And His OrchestraThe SurfmenCalifornia RamblersLouis Prima & His New Orleans GangL'Ensemble Instrumental Des IlesJohnny Guarnieri TrioErskine Butterfield And His Blue BoysThe Little RamblersArt Shaw And His New Music + +312571Bill SchaefferAmerican trombonistNeeds VoteBill SchaeferBilly SchaefferWilliam 'Bill' SchaefferWilliam SchaeferWilliam SchaefferWm. SchaeferBilly May And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraPaul Weston And His OrchestraGordon Jenkins And His Orchestra + +312641Albert HeathAlbert William HeathAmerican jazz drummer and record producer +Born 31st May 1935 Philadelphia, Pennsylvania, USA, died 3rd April 2024 Santa Fe, New Mexico, USA +Brother of [a=Jimmy Heath] and [a=Percy Heath]Needs Votehttps://en.wikipedia.org/wiki/Albert_Heathhttps://www.imdb.com/name/nm0372604/http://www.drummerworld.com/drummers/Albert_Heath.htmlhttps://tootieheath.bandcamp.com/'Tootie' HeathA. HeathAbert "Tootie" HeathAl " Tootie" HeathAl "Tootie" HeathAl 'Tootie' HeathAl 'Tootsie' HeathAl HearthAl HeathAl HeithAl Tootie HeathAlbertAlbert "Kuumba" HeathAlbert "Too-tie" HeathAlbert "Toothie" HeathAlbert "Tootie" HealhAlbert "Tootie" HeathAlbert "Tootie" HeatlAlbert "Tootie"HeathAlbert "Tootie'" HeathAlbert "Tooty" HeathAlbert "Tuttie" HeathAlbert ''Tootie'' HeathAlbert 'Tootie' HeathAlbert (Tootie) HeathAlbert (Tudie) HeathAlbert HealtAlbert Kuumba HeathAlbert Tootie HeathAlbert « Tootie » HeathAlbert »Tootie« HeathAlbert “Tootieˮ HeathAlbert “Tootie” HeathAlbert „Tootie“ HeathHeathKawaidaKummba "Tootie" HeathKuumba "Toothie" HeathKuumba "Tootie HeathKuumba "Tootie" HeathKuumba (Tootie) HeathKuumba-Toudie HeathTootie HeathToudie HeathToudie Heath-KuumbaАлберт Хитアル・ヒースKuumbaTootie MtumeClarke-Boland Big BandThe Red Garland TrioJohnny Lytle TrioThe Wes Montgomery QuartetThe J.J. Johnson SextetClifford Jordan QuartetThe George Russell SextetThe Guido Manusardi TrioSonny Rollins QuartetThe Bobby Timmons TrioTed Curson & CompanyThe J.J. Johnson QuintetThe Kenny Drew TrioThe Heath BrothersThe Roland Kirk QuartetGeorge Cables TrioRoscoe Mitchell QuartetNew York Jazz SextetRené Thomas QuintetArt Farmer QuartetMal Waldron TrioWarne Marsh QuartetTete Montoliu TrioThe JazztetWalter Benton QuintetDexter Gordon QuartetThe Johnny Griffin QuartetCannonball Adderley QuartetToshiko Mariano QuartetEddie Lockjaw Davis QuartetJimmy Heath QuintetWarne Marsh QuintetThe Harold Land / Blue Mitchell QuintetThe Young Lions (7)Charlie Mariano QuartetThe Claude Williamson TrioThe Riverside Jazz StarsThe Blue Mitchell OrchestraJimmy Heath SextetThe Riverside Reunion BandToshiko Akiyoshi QuartetKenny Dorham-Barry Harris QuartetJimmy Heath QuartetBörje Fredriksson QuartetRoberto Magris QuintetRichard Sears SextetThe John Capobianco QuartetBenny Bailey-Dexter Gordon All Stars + +312694Kira DohertyCanadian classical horn player and teacher. +She moved to London from Quebec in 2004 to complete her musical studies at the [l=Royal Academy of Music] at postgraduate level. After having graduated in 2006, she enjoyed a varied freelance career before accepting the post of 2nd Horn in the [a=Philharmonia Orchestra] in 2013. Teacher of Horn at the [l290263].Needs Votehttps://www.linkedin.com/in/kira-doherty-14616694/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/kira-doherty/https://www.imdb.com/name/nm9000453/London Symphony OrchestraPhilharmonia Orchestra + +312775Pete Brown (2)James Ostend BrownAmerican jazz saxophonist (alto) and bandleader. + +Born : November 09, 1906 in Baltimore, Maryland. +Died : September 20, 1963 in New York City, New York. + +Also adept in playing trumpet, piano, violin and tenor saxophone. +Teacher of [a=Cecil Payne] +Needs Votehttps://myspace.com/pete.brownhttps://www.dailygreen.it/pete-brown-un-sax-dallo-swing-al-bop/https://www.allmusic.com/artist/pete-brown-mn0000720786https://adp.library.ucsb.edu/index.php/mastertalent/detail/111296/Brown_Petehttps://adp.library.ucsb.edu/names/111296BrownJ.O.P. BrownP. BrownPete Brown’s All Star QuintetColeman Hawkins All Star BandFrank Newton And His OrchestraLeonard Feather All StarsFrankie Newton And His Uptown SerenadersPete Brown And His BandPete Brown QuintetColeman Hawkins' 52nd Street All StarsSam Price And His Kaycee StompersAll Star Jam BandJoe Marsala & His Delta FourBernard Addison All StarsBuster Bailey's Rhythm BustersPete Brown's Brooklyn Blue BlowersJimmie Noone And His OrchestraJerry Kruger & Her Knights Of RhythmPete Brown SextetteSextet Of The Rhythm Club Of LondonPete Brown's All-Star QuintetPete Brown Quartet + +312858Klaus OsterlohGerman trumpet player (born 1952, Bremen, Germany). +Needs Votehttp://www.klausosterloh.de/Klaus H. OsterlohKlaus Hannes OsterlohOsterlohKitty Winter Gipsy NovaWDR Big Band KölnMusica Antiqua KölnDüsseldorfer Atlanta JazzbandTrompeten Consort Friedemann ImmerThe Swinging SinglesMister Wendelins Dixie-BandAtlanta JazzbandDarktown JazzbandThe Hilton Roof Garden Orchestra + +312871Rick KieferTrumpeter, born 24 May 1939 in Cleveland, Ohio, USA, died 2 March 2025 + +Worked in New York City with the orchestras of [a=Benny Goodman], [a=Woody Herman] and [a=Tito Puente] during the late 1950s and was a member of [a=Maynard Ferguson]'s band from 1959 until 1963. + +Kiefer moved to Germany in 1965 and joined the orchestras of [a=Max Greger] (1966), [a=Kurt Edelhagen] (1967-1973) and later [a=James Last]'s orchestra, the [a=Clarke-Boland Big Band], [a=Peter Herbolzheimer Rhythm Combination & Brass] and the [a=WDR Big Band Köln] (1977-2004). +Needs VoteDick KieferKieferRich KieferRick KeeferRick KiefePeter Herbolzheimer Rhythm Combination & BrassClarke-Boland Big BandWoody Herman And His OrchestraOrchester Kurt EdelhagenMax Greger Und Sein OrchesterOrchester James LastWDR Big Band KölnKurt Edelhagen Big BandFestival Big BandThe Galactic Light OrchestraWoody Herman And The Fourth HerdThe Max Greger Big BandOrchester Kai WarnerPeter Trunk SextetTime Travellers (5) + +312921Jack GardnerFrancis Henry GardnerAmerican jazz pianist, composer and bandleader. +Born August 14, 1903 in Joliet, Illinois. +Died November 26, 1957 in Dallas, Texas. + +Among others, Gardner played with [a=Benny Goodman], [a=Glenn Miller], [a=Eddie Condon], [a=Harry James], [a=Sandy Williams]. He was also known affectionately as "Jumbo Jack".Needs Votehttp://oldtimeblues.net/2018/08/14/okeh-40339-jack-gardners-orchestra-1924/https://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=Jack+(Jumbo)+Gardner+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwjvx4fGjdbXAhVGsVQKHbxpDOQQ6AEIKDAA#v=onepage&q=Jack%20(Jumbo)%20Gardner%20%22The%20Big%20Bands%22&f=falsehttps://www.questia.com/magazine/1P3-2101664571/jack-gardner-a-truly-lusty-pianisthttps://en.wikipedia.org/wiki/Jack_Gardner_(musician)https://adp.library.ucsb.edu/index.php/mastertalent/detail/109662/Gardner_Jack"Jumbo" Jack GardnerFrancis 'Jack' GardnerGardnerJ. GardnerHarry James And His OrchestraThe Chicagoans (2)Freeman FiveJack Gardner's Orchestra + +312922Kenny KerseyKenneth Lyons KerseyCanadian jazz pianist, born 3 April 1916 in Harrow, Ontario, Canada, died 1 April 1983 in New York City, USA. + + +Needs Votehttps://en.wikipedia.org/wiki/Ken_Kerseyhttps://www.allmusic.com/artist/ken-kersey-mn0000658453/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/205363/Kersey_Ken_KennyK. KerseyK. MerseyKen KerceyKen KerseyKeneth KerseyKenneth KerseyKenny KorseyKerseySgt. Kenny KerseyColeman Hawkins QuartetBillie Holiday And Her OrchestraBuck Clayton And His OrchestraAndy Kirk And His Clouds Of JoyCootie Williams And His OrchestraLester Young QuartetJubilee All StarsEddie Lockjaw Davis QuartetFrankie Newton & His Cafe Society OrchestraJonah Jones BandJATP All StarsKenny Kersey TrioPete Brown's All-Star QuintetFranz Jackson And His Jacksonians + +312923Carmen MastrenCarmine Niccolo MastrandreaAmerican jazz guitarist and banjoist. +Born: October 06, 1913 in Cohoes, New York. +Died: March 31, 1981 in Valley Stream, Long Island, New York. +Mastren played with Wingy Manone, Tommy Dorsey, Sidney Bechet, Muggsy Spanier, Joe Marsala, Glenn Miller and with the NBC orchestra. + +Needs Votehttps://adp.library.ucsb.edu/names/107177C. MastrenC. NastrenC.MastrenCMCarmen MaestrenCarmen MastreenCarmen Mastren (CM)Carmine MasternIarmen MastrenMasternMastrenPvt. Carmen MastrenSgt. Carmen MastrenStaff Sgt. Carmen MastrenTommy Dorsey And His OrchestraMetronome All StarsBillie Holiday And Her OrchestraTommy Dorsey And His Clambake SevenWingy Manone & His OrchestraBud Freeman's All Star OrchestraThe CommandersThe Bechet / Spanier Big FourAll Star Alumni OrchestraJoe Marsala & His Delta FourBobby Byrne And His OrchestraErskine Butterfield And His Blue BoysAll Star Band (4)Delta FourThe Army Air Force BandRed McKenzie And His Rhythm KingsThe Six Blue ChipsJoe Marsala And His Chosen SevenJimmy Lytell And His All Star SevenSavannah Churchill And Her All Star Seven + +312924Eddie DoughertyEdward DoughertyJazz drummer, born July 17, 1915 in New York. Died December 14, 1994Needs Votehttps://en.wikipedia.org/wiki/Eddie_Doughertyhttps://www.allmusic.com/artist/eddie-dougherty-mn0000168816/biographyhttps://adp.library.ucsb.edu/names/312742E. DoughertyEd DoughertyEddie DaughertyEddie DoughersEddie DoughrtyEddy DoughertyBillie Holiday And Her OrchestraArt Tatum And His BandThe Boogie Woogie TrioMildred Bailey And Her Swing BandFrank Newton And His OrchestraMildred Bailey And Her Oxford GreysSidney Bechet & His All Star BandBenny Morton's All StarsPete Johnson & His Boogie Woogie BoysFrankie Newton & His Cafe Society Orchestra + +312925George ArusJazz trombonistNeeds VoteArusG. ArusG. FirusGAGeorge Arus (GA)Georgie ArusTommy Dorsey And His OrchestraArtie Shaw And His OrchestraGeorgie Auld And His OrchestraJerry Gray And His OrchestraArt Shaw And His New MusicBen Homer & His Orchestra + +312927Allen DurhamTrombone player from the swing eraNeeds VoteA. DurhamAllan DurhamAllen DurnhamLionel Hampton And His OrchestraAndy Kirk And His Clouds Of JoyLes Hite And His OrchestraBuddy Banks SextetJohn Williams' Memphis Stompers + +312929Jimmy PowellJames TheodoreJazz alto saxophonist, born October 24, 1914 in New York. +Powell worked with [a=Frank Newton] 1931 and other leaders in New York during the mid-1930s, 1938-1941 with [a=Edgar Hayes] and [a=Sidney Bechet], 1943-1946 with [a=Count Basie]. Later with [a=Lucky Millinder], [a=Lucky Thompson], [a=Dizzy Gillespie] and [a=Machito], in the 1960s-early 1970s with rhythm & blues and soul artists. Resumed playing swing with [a=Sy Oliver] in 1975.Needs VoteJ. PowellJames "Jimmie" PowellJames PowellJim PowellJimmy PowelPowellДжимми ПауэллCount Basie OrchestraDizzy Gillespie And His OrchestraBillie Holiday And Her OrchestraFats Waller & His RhythmBilly Eckstine And His OrchestraDizzy Gillespie Big BandIllinois Jacquet And His OrchestraBenny Carter And His OrchestraIllinois Jacquet And His All StarsDeLuxe All Star BandLucky Thompson And His Lucky Seven + +312930Patty AndrewsPatricia Marie AndrewsLead Vocalist of [a=The Andrews Sisters]. By the beginning of the 2010s, she was the trio's last surviving member. + +Born: February 16, 1918, Minneapolis, Minnesota. +Died: January 30, 2013, Northridge, California.Needs Votehttps://edition.cnn.com/2013/01/30/showbiz/patty-andrews-obit/index.htmlhttps://www.britannica.com/biography/Patty-Andrewshttps://www.imdb.com/name/nm0028809/https://adp.library.ucsb.edu/names/301500AndrewsAndrews, PattyBob CrosbyPattiPatti AndrewsPattyPatty Andrews, SoloThe Andrews Sisters + +312931Nat StoryNathaniel Edward StoryAmerican jazz trombonist, born August 8, 1904, Oak Station, Kentucky, in November 21, 1968, Evansville, Indiana, USA.Needs Votehttps://en.wikipedia.org/wiki/Nat_Storyhttps://nkaa.uky.edu/nkaa/items/show/1863https://www.allmusic.com/artist/nat-story-mn0000933665https://adp.library.ucsb.edu/names/345565N. StoryNat StoreyNathaniel StoryJones & Collins Astoria Hot EightChick Webb And His OrchestraLuis Russell And His OrchestraElla Fitzgerald And Her Famous OrchestraThe Nat Story Trio + +312932Joe EldridgeJoseph EldridgeAmerican jazz alto and tenor saxophonist and violinist, born 1908 in Pittsburgh, Pennsylvania, died March 5, 1952 in New York City, New York. +Brother of [a=Roy Eldridge]. +Needs Vote"Joe" EldridgeEldridgeJ. EldridgeJoseph "Joe" EldridgeBillie Holiday And Her OrchestraRoy Eldridge And His OrchestraBuddy Johnson & His BandFranz Jackson And His Jacksonians + +312933Arthur HerbertAmerican jazz drummer, born May 28, 1907 in Brookllyn, New York, date of death unknown. He is the uncle of [a343297].Correcthttps://en.wikipedia.org/wiki/Arthur_Herbert_(musician)A. HerbertArt HerbertHerbertColeman Hawkins And His OrchestraSidney Bechet And His New Orleans FeetwarmersSidney Bechet QuartetEddie Durham & His BandPete Brown's Brooklyn Blue BlowersSextet Of The Rhythm Club Of LondonThe Knocky Parker Trio + +312939Joe KeyesAmerican jazz trumpeter (also clarinet and alto saxophone), born August 17, 1909 in Houston, Texas, died November 1950 in New York. +Keyes was a veteran of the Bennie Moten, Walter Page and Count Basie bands.Needs Votehttps://en.wikipedia.org/wiki/Joe_Keyeshttps://adp.library.ucsb.edu/names/109221Joe KeysKeyesCount Basie OrchestraBennie Moten's Kansas City OrchestraBlanche Calloway And Her Joy BoysEddie Durham & His Band + +312942Harry RodgersUS American jazz trombonistNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113652/Rodgers_HarryH. RodgersHarry RogdersHarry RogersRodgersRogersHarry James And His OrchestraArtie Shaw And His OrchestraHarry James & His Music MakersSpike Jones & His Other OrchestraArt Shaw And His New Music + +312944Don LodiceDominici LoGuidiceAmerican jazz saxophonist (tenor) player. + +Born : October 25, 1919 -. +Died : April 29, 1995 in Inglewood, Los Angeles, California. +Needs VoteD. LadiceD. LodiceDLDon LodicDon Lodice (DL)Don LodiciDon LogiudiceDon LoguidiceLodiceLon LodiceTommy Dorsey And His OrchestraThe Glenn Miller OrchestraBunny Berigan & His OrchestraTeddy Powell And His OrchestraTommy Dorsey And His SentimentalistsPaul Weston And His OrchestraThe Mel Powell SeptetThe Jerry Fielding OrchestraSi Zentner & His Dance Band + +312946Wayman CarverWayman Alexander CarterAmerican jazz flutist and reeds player, born December 25, 1905, Portsmouth, Virginia, died May 6, 1967, Atlanta. Considered to be a pioneer of jazz flute and one of the first to be recorded using it on a jazz record.Needs Votehttps:en.wikipedia.orgwikiWayman_Carverhttps:www.allmusic.comartistwayman-carver-mn0000241821https:www.dailygreen.itwayman-carver-luomo-che-ha-portato-il-flauto-nel-jazzhttps:adp.library.ucsb.edunames201649B. CarverCarverW. CarverWaymanWayman CarnerWayman CraverWayman*Wyman CarverChick Webb And His OrchestraBenny Carter And His OrchestraSpike Hughes And His Negro OrchestraChick Webb And His Little ChicksElla Fitzgerald And Her Famous OrchestraDave Nelson And The King's MenDave's Harlem Highlights + +312950Ted DonnellyTheodore DonnellyAmerican jazz trombonist, nicknamed "Muttonleg", born November 13, 1912 in Oklahoma City, Oklahoma, died May 8, 1958 in New York. +Donnelly worked with [a2736122], [a332334] (1934), [a270023] (1936-1943), [a145262] (1943-1950), [a309989], [a257114], [a270238](1951-1957).Needs Votehttps://en.wikipedia.org/wiki/Ted_Donnellyhttps://www.allmusic.com/artist/ted-donnelly-mn0001215240/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/312626/Donnelly_TedDonnellyT. DonellyT. DonnellyTed "Muttonleg" DonnellyTed DonallyTed DonellyTed DonnelleyTed DonnelyTeddy DonnellyTheodore DonnelTheodore DonnellyTheodre "Ted" DonnellyCount Basie OrchestraBuddy Johnson And His OrchestraAndy Kirk And His Clouds Of JoyMary Lou Williams And Her Kansas City Seven + +312953Harry MillsJazz vocalist +Born 19 August 1913 in Piqua, Ohio, USA +Died 28 June 1982 in Los Angeles, California, USA + +One of [a=The Mills Brothers] vocal group (with [a=Donald Mills], [a=Herbert Mills], and [a=John Mills]Needs Votehttps://www.imdb.com/name/nm0590020/bio?ref_=nm_ov_bio_smhttps://adp.library.ucsb.edu/names/206841H. MillsHarold MillsHarryHarry Mills And ChoirMills/AlbertThe Mills Brothers + +312954Billy Taylor Sr.William Taylor Sr.b : April 3, 1906 in Washington D.C. (USA) +d : September 2, 1986 in Fairfax, Virginia (USA) +Jazz bass and tuba player from the 20s to the 70s, father of other jazz bassist [a1540436] +Billy Taylor Sr is unrelated to jazz pianist [a=Billy Taylor]. +Needs Votehttps://en.wikipedia.org/wiki/Billy_Taylor_(jazz_bassist)https://www.allmusic.com/artist/billy-taylor-sr-mn0000932727/biographyhttps://adp.library.ucsb.edu/names/110259B. TaylorBill TailorBill TaylerBill TaylorBillie TaylorBilly "Pickles" TaylorBilly "Pickles" Taylor, SrBilly RaylorBilly TaylerBilly TaylorBilly Taylor Jr.Billy Taylor SnrBilly Taylor SrBilly Taylor, SrBilly Taylor, Sr.Billy TylerBilly TylorTaylorWilliam "Billy" TaylorWilliam 'Billy' TaylorBea TaylorDuke Ellington And His OrchestraMcKinney's Cotton PickersCozy Cole All StarsCootie Williams & His Rug CuttersFats Waller & His RhythmJelly Roll Morton's Red Hot PeppersLionel Hampton And His OrchestraArtie Shaw And His OrchestraJack Teagarden And His Big EightColeman Hawkins QuintetCharlie Shavers' All American FiveColeman Hawkins And His OrchestraBuck And His BandGeorge Wettling's New YorkersBarney Bigard And His OrchestraEdmond Hall SextetArt Tatum And His BandRex Stewart And His OrchestraTeddy Wilson QuartetGeorge Treadwell And His All StarsDon Redman And His OrchestraDon Byas And His OrchestraRex Stewart And His FeetwarmersCozy Cole OrchestraJohnny Hodges And His OrchestraSam Price TrioRex Stewart And His 52nd Street StompersCharlie Johnson & His OrchestraJoe Thomas And His OrchestraJimmy Jones & His OrchestraBarney Bigard SextetDuke Ellington's Hot FiveDon Byas All StarsDon Byas Ree-BoppersChick Bullock & His Levee LoungersJohnny Guarnieri Swing MenDe Paris Brothers OrchestraThe Gotham StompersBarney Bigard QuintetDuke Ellington SextetIvie Anderson And Her Boys From DixieThe Edmond Hall QuartetColeman Hawkins Big BandDon Byas' All Star QuintetBilly Taylor's Big EightBenny Morton And His OrchestraHarry Carney's Big EightSam Price QuartetThe Sammy Benskin TrioJohnny Guarnieri's All Star OrchestraJoe Thomas' Big SixJimmy Jones' Big EightThe V-Disc JumpersJ.C. Higginbotham's Big EightVanderbilt All StarsBarney Bigard And His JazzopatersBessie Smith-OrchestraRex Stewart's Big FourBilly Taylor's Big Four (2)June Cole's Orchestra + +312956Eddie GibbsEdward Leroy GibbsAmerican jazz guitarist, banjoist and bassist, born December 25, 1908 in New Haven, CT. + +Needs VoteEddie GibsTeddy Wilson And His OrchestraWilbur De Paris And His OrchestraWilbur De Paris And His New New Orleans JazzEdgar Hayes And His OrchestraThe Claude Hopkins BandWilbur De Paris And His Rampart Street RamblersGinny Simms And Her Orchestra + +312957Roger HurdJazz clarinetist, tenor saxophonistNeeds VoteRodger HurdLes Hite And His Orchestra + +312958Benny MortonHenry Sterling MortonAmerican swing jazz trombonist, born January 31, 1907, in New York City, died December 28, 1985, in the same city. +Morton's first break came in 1923 when he was hired by [a=Clarence Holiday]. In 1926 Morton started working with [a=Fletcher Henderson], where he collaborated with fellow bandmate/mentor [a=Jimmy Harrison]. In addition to performing with Henderson, Morton played for [a=Don Redman] 1932-1937 and with [a=Count Basie] 1937-1940. Morton began working with [a=Teddy Wilson] in 1940, leaving Wilson's group in 1944 to play with [a=Edmond Hall]'s sextet. He also lead own band during this time. At this time Morton began his career as a trombonist in a number of Broadway shows, and once Broadway became Morton's main gig, he stopped any long-term associations with specific groups, but continued to record as a sideman. +After leaving Broadway he found work with a number of traditional jazz groups, subbing often for friend and fellow ex-Basie trombonist [a=Vic Dickenson]. He eventually replaced Dickenson in [a=Saints & Sinners], and also worked with [a=Wild Bill Davison]'s Jazz Giants, [a=Sy Oliver]'s nonet, and [a=Ray Nance]'s group. In 1964, he toured Africa with [a=Paul Taubman] as a part of the State Department jazz diplomacy program. From 1973-1974, Morton worked with [a=The World's Greatest Jazzband]. Morton became ill after his stint with the World's Greatest Jazz Band and had to stop playing for three years. He resumed his musical career in 1977, recording with [a=Earl Hines] and appearing regularly on [a=Art Hodes]' television show. Unfortunately, health issues continued to limit him, and he passed away in New York City on December 28, 1985 due to complications from pneumonia.Needs Votehttps://en.wikipedia.org/wiki/Benny_Mortonhttp://www.jazzarcheology.com/artists/benny_morton.pdfhttps://www.radioswissjazz.ch/fr/base-de-donnees-musicale/musicien/417296fa4f395d6f87e58fba4d87b2569d354/biographyhttps://www.bluenote.com/artist/benny-morton/https://adp.library.ucsb.edu/names/105496B. MortonBennie MortonBenny MortenBenny Morton or Charlie GreenBerry MortonHenry "Benny" MortonHenry MortonMenny MortonMortonCount Basie OrchestraThe Ray Bryant ComboBillie Holiday And Her OrchestraFletcher Henderson And His OrchestraCount Basie BandThe Louisiana StompersFletcher Henderson And His Connie's Inn OrchestraTeddy Wilson And His OrchestraBenny Carter And His OrchestraConnie's Inn OrchestraEddie Condon And His BandDon Redman And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraClarence Williams' Jazz KingsJoe Sullivan And His Café Society OrchestraTeddy Wilson SextetBenny Morton's All StarsBenny Morton's Trombone ChoirEarl Randolph's OrchestraThe Claude Hopkins BandFletcher Henderson's CollegiansRoy Eldridge & His Central Plaza DixielandersThe Fletcher Henderson All StarsBenny Morton And His OrchestraEdmond Hall's SwingtetBenny Carter And His All StarsJam Session At CommodoreJam Session (11) + +312960Tommy Dorsey And His Clambake SevenAmerican jazz group, formed by [a=Tommy Dorsey] in 1935 as a group within his big band.Needs VoteHis Clambake SevenI Clambake Seven Di Tommy DorseyThe Clambake SevenTommey Dorseys Clambake SevenTommy Dorsey & His Clambake 7Tommy Dorsey & His Clambake SevenTommy Dorsey And His Clam Bake SevenTommy Dorsey And His Clambake 7Tommy Dorsey And His Orchestra Clambake SevenTommy Dorsey And The Clambake SevenTommy Dorsey Clambake SevenTommy Dorsey Und Sein OrchesterTommy Dorsey Und Seine Clambake SevenTommy Dorsey Y Su Clambake SevenTommy Dorsey Y Sus Clambake SevenTommy Dorsey's ClambakeTommy Dorsey's Clambake 7Tommy Dorsey's Clambake SevenTommy Dorsey's Gambake Seven“Clambake Seven» Di Tonny DorseyTommy DorseyMaurice PurtillAlvin StollerBabe RussinBilly BauerCharlie ShaversBud FreemanSterling BoseSkeets HerfurtCarmen MastrenDave ToughGene TraxlerJohnny MincePee Wee ErwinMax KaminskyJimmy BlakeSam HermanYank LawsonBuddy DeFrancoAbraham 'Boomie' RichmanHoward Smith (4)Dick Jones (3)Johnny PotokerWilliam SchafferSandy Block + +312961Tab SmithTalmadge SmithAmerican jazz (and rhythm and blues) saxophonist and clarinettist. +Born : January 11, 1909 in Kinston, North Carolina. +Died : August 17, 1971 in St. Louis, Missouri. + +"Tab" worked with : Lucky Millinder, "The Mills Rhythm Boys", Count Basie, among others. He played in St. Louis with [a812458] in the early 1930’s and +returned in the late 1940's to stay. Smith worked around St. Louis quite a bit in the later stages of his life until his death in 1971. +Needs Votehttps://en.wikipedia.org/wiki/Tab_Smithhttps://www.allmusic.com/artist/tab-smith-mn0000013954/biographyhttps://adp.library.ucsb.edu/names/106042"Tab" SmithSmithT. SmithT.SmithTSTabs MithTabs SmithTalmadge "Tab" SmithTalmadge 'Tab' SmithTalmadge (Tab) SmithTap SmithTed SmithCount Basie OrchestraBillie Holiday And Her OrchestraTeddy Wilson And His OrchestraLucky Millinder And His OrchestraTab Smith OrchestraFrank Newton And His OrchestraHenry "Red" Allen And His OrchestraColeman Hawkins And His Sax EnsembleBilly Kyle And His Swing Club BandThe Charlie Shavers QuintetFrankie Newton & His Cafe Society OrchestraRex Stewart's Big EightTab Smith SeptetteTab Smith TrioSandy Williams Big EightJ.C. Higginbotham's Big Eight + +312962Tony ZimmersJazz tenor saxophonist, clarinetistNeeds VoteT. ZimmersTony ZimmerTommy Dorsey And His OrchestraWingy Manone & His OrchestraLarry Clinton And His OrchestraLil Armstrong And Her Swing BandArt Shaw And His New Music + +312963Shad CollinsLester Rallingston Collins.American jazz trumpeter. + + +Born : June 27, 1910 in Elizabeth, New Jersey. +Died : June 06, 1978 in New York City, New York. + +Needs Votehttps://en.wikipedia.org/wiki/Shad_Collinshttps://www.allmusic.com/artist/shad-collins-mn0000154879/biographyhttps://adp.library.ucsb.edu/names/109944"Schad" Collins"Shad" CollinsA2, B2C. CollinsCollinsLester "Shad" CollinsLester 'Shad' CollinsLester CollinsLester Shad CollinsS. CollinsSad Collins„Shad“ CollinsCab Calloway And His OrchestraCount Basie OrchestraBillie Holiday And Her OrchestraCount Basie BandBenny Carter And His OrchestraSpike Hughes And His Negro OrchestraLester Young And His BandCount Basie SextetDickie Wells And His OrchestraThe Prestige All StarsThe Ike Quebec Swing SevenTeddy Hill OrchestraBasie's Bad BoysTeddy Hill And His NBC OrchestraSam Price And His Texas BlusiciansPaul Quinichette And His SwingtetteBuddy Johnson & His Band + +312966Herman AutreyAmerican jazz trumpeter. +Born December 4, 1904 (Evergreen, AL, USA) +Died June 14, 1980 (New York, NY, USA) +Needs Votehttps://en.wikipedia.org/wiki/Herman_Autreyhttp://www.allmusic.com/artist/herman-autrey-p53064/biographyhttps://www.sandybrownjazz.co.uk/JazzRemembered/HermanAutrey.htmlhttps://adp.library.ucsb.edu/names/112442AudreyAutreAutreyAutryH. AutreyHerman AudreyHerman AutrayHerman AutryHerman Autry QuintetHermann AutreyFats Waller & His RhythmThe Saints & SinnersSam Price And His Texas BlusiciansEmmett Matthews And His OrchestraHerman Autrey QuintetHerman Autry's Band + +312969Dan GrissomAmerican Rhythm and blues and jazz singer, saxophonist and clarinetist, born around 1910, died in March 1963 in Los Angeles, California, USA.Needs Votehttps://www.allmusic.com/artist/dan-grissom-mn0000952416https://de.wikipedia.org/wiki/Dan_Grissomhttps://adp.library.ucsb.edu/names/204067D. GrissomD. GrissonDGDan GrissonDanny GrissomDon GrissomGrissomGrissonJimmie Lunceford And His OrchestraThe Lunceford Quartet + +312970Tommy FulfordAmerican jazz pianist, born 1912, died December 16, 1956 in New York City. +Fulford played with Bobby Neal (c. 1935, first professional job), [a=Blanche Calloway] (1936), [a=Leo "Snub" Mosley] (1936), [a=Chick Webb] (from 1936), [a=Ella Fitzgerald] (until 1942). +Worked mainly as solo pianist during 1940s and early 1950s, with [a=Tony Parenti] 1955-1956.Needs Votehttps://www.allmusic.com/artist/tommy-fulford-mn0000611167FulfordT. FulfordTom FulfordTommy FullfordChick Webb And His OrchestraChick Webb And His Little ChicksElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraThe Gotham Stompers + +312971Harry JaegerJazz drummer, in the Swing Era. +Name also listed as "Yaeger" +Harry Jaeger came from Boston, MA. +Married to vocalist Helen Forrest. +Needs VoteH JaegerH. JaegerHarry JagerHarry YaegerJaegerBenny Goodman SextetBenny Goodman And His OrchestraVaughn Monroe And His OrchestraRed Nichols And His OrchestraChu Berry And His Jazz Ensemble + +312973Caughey RobertsAmerican jazz alto sax player. Born August 25, 1912 in Boley, Oklahoma – died December 15, 1990 in Los AngelesNeeds Votehttps://en.wikipedia.org/wiki/Caughey_Roberts"Caughey" RobertsCauphey RobertsCount Basie OrchestraFats Waller & His RhythmThe Blenders (18) + +312975Carl SmithJazz trumpet player +For songwriter ("Rescue Me", "Higher And Higher") use [a159831] +For country artist use [a549501] + +Carl "Tatti" Smith, trumpeter, was born in Marshall, Texas about 1908, but his birth date is uncertain. + +Smith's early career included work with the Terrence Holder band in Kansas City in 1931. Subsequently, from 1931 to 1934, Smith toured the West Coast with the Amarillo band of Gene Coy. + +In 1936 Smith joined the Count Basie Orchestra and during that year was the nominal co-leader of a sextet, labeled Jones–Smith, Inc., which played in the first recording session for legendary tenorist Lester Young + +Smith left Basie the next year and performed with Skeets Tolbert's Gentlemen of Swing until 1940. During 1939 he also played with groups led by Hot Lips Page. In the 1940s Smith was briefly with several other bands, including that of Benny Carter. + +After World War II he left for South America, and during the late 1940s and into the 1950s he was playing with groups in Argentina and Brazil. No further information on this unique trumpeter has surfaced since his move to South America, and his whereabouts after the 1950s have not been reported in any reference works on jazz history. +Needs Votehttps://en.wikipedia.org/wiki/Carl_%22Tatti%22_Smithhttps://www.allmusic.com/artist/carl-tatti-smith-mn0001343446https://www.tshaonline.org/handbook/entries/smith-carl-tattihttps://adp.library.ucsb.edu/names/344236C. E. SmithCarl "Tati" SmithCarl "Tatti" SmithCarl "Taxi" SmithCarl 'Tatti' SmithCarl”Tati”SmithKarl "Tatti" SmithSmithTati SmithTatti SmithCount Basie OrchestraJones-Smith IncorporatedCount Basie Blue FiveSkeets Tolbert And His Gentlemen Of Swing + +312976Harry "Pee Wee" JacksonJazz trumpeterNeeds Votehttp://207.170.133.18/wmv_news/jazz3.htmH. JacksonHarry "Pee-Wee" JacksonHarry JacksonHarry Pee Wee JacksonPee Wee JacksonPee Wee" JacksonJimmie Lunceford And His OrchestraEarl Hines And His Orchestra + +312980Drew PageDrew Ernest PageAmerican Jazz musician (clarinet/saxophone), songwriter and author. +Born 1905 Texas. Died 1990.. +He grew up dirt poor but found himself interested in music, studied it, tried formal schooling (but couldn't afford it) and ended up in traveling territory bands before and through the depression. Early in his career, he auditioned for the John Philip Sousa Band and was offered the last chair but didn't believe he was good enough and decline the gig. +He “grew up” in the jazz players Lyle (Spud) Murphy, Harry James, Warren Smith, and Dave Mathews. From 1938 to 1940 he was featured at the famous Chicago jazz spot, the Gay Nineties, with Mel Henke. His Hollywood period included work with Red Nichols, Phil Harris, Freddy Martin, and the KHJ radio staff orchestra. +In 1951, Drew felt that he could better express himself in a small group. such a combo was the Billy Roe Quartet. They were frequently heard at the famous West Coast restaurant, Maison Jaussand, in Bakersfield, California. +His musical career lasted more than 50 years. He is the author of "Drew's Blues: A Sideman's Life With the Big Bands" (1980) that tells of life on the road travelling with big bands.Needs Votehttp://www.gragroup.com/Accent-old.htmlhttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=saxist+drew+page+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwjpofOji9bXAhUG42MKHTemACoQ6AEIKDAA#v=onepage&q=saxist%20drew%20page%20%22The%20Big%20Bands%22&f=falsePageHarry James And His OrchestraRuss Morgan And His Orchestra + +312982Jesse SimpkinsJive and jump blues bassistNeeds Vote"Po" SimpkinsJess SimpkinsJesse "Po" SimpkinsJesse "Po" Simpkins*Jesse 'Po' SimpkinsPo SimkinsPo SimpkinsSimpkinsLouis Jordan And His Tympany Five + +312983Frank PasleyRhythm & Blues guitarist, based in Los Angeles, active 1940s/50sNeeds VoteF. PasleyFrank "Wristpin" PasleyFrank PalseyFrank PashleyLes Hite And His OrchestraJoe Liggins & His HoneydrippersJoe Darensbourg And His "Flat Out" Five + +312986Clarence TriceAmerican jazz trumpet playerNeeds VoteTriceAndy Kirk And His Clouds Of JoyAndy Kirk And His Orchestra + +312987Al NorrisAmerican jazz guitarist +Born 4 September 1908, died 26 December 1974Needs Votehttps://www.allmusic.com/artist/al-norris-mn0001259681https://adp.library.ucsb.edu/index.php/mastertalent/detail/207322/Norris_AlAlbert NorrisNorrisJimmie Lunceford And His OrchestraErskine Butterfield Quartet + +312988Albert HarrisBritish jazz guitarist, pianist, arranger and composer (February 13 (or) 15, 1916, London, England - February 14, 2005 in Auckland, New Zealand). +Not to be confused with Polish pianist, composer, songwriter and singer [a951018], nor Canadian guitarist [a=Al Harris]. + +He came to New York in 1938 and moved to Los Angeles in 1942. Worked with Tony Vivian's Orchestra (Autumn 1931), Al Saxon's Band (early 1932), Al Berlin, Stanley Barnett's Band, Jack Padbury (late 1932), Howard Jacobs (Summer 1933), Maurice Winnick (Autumn 1933), Lew Stone (Autumn 1934), Teddy Joyce (late 1935). Pecorded as a freelance with Ivor Mairants (1935), Benny Carter (London, January 1937), and Bert Ambrose. Emigrated to USA 1938. worked with Ray Noble (1938), Joe Marsala (1940), Horace Heidt (1941) and others. Later with [a=Barbara Streisand], [a=Roberta Flack] and [a=Cher].Correcthttps://en.wikipedia.org/wiki/Albert_Harris_(composer)https://gypsyjazzuk.wordpress.com/36-2/albert-harris/https://adp.library.ucsb.edu/index.php/mastertalent/detail/204279/Harris_Alberthttps://www.imdb.com/name/nm0364406/A HarrisA. HarrisAl HarrisAlbt. HarrisDr. Albert HarrisHarrisClaude Thornhill And His OrchestraBenny Carter And His OrchestraAmbrose & His OrchestraLew Stone And His OrchestraMadame Tussaud's Dance OrchestraBenny Carter & His Swing Quintet + +312991Midge WilliamsVirginia Louise WilliamsAmerican swing and jazz vocalist +Born on May 27, 1915 +Died on January 9, 1952 +Needs Votehttps://en.wikipedia.org/wiki/Midge_Williamsミッヂ・ウィリアムスLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraMidge Williams And Her Jazz JestersLil Armstrong And Her Dixielanders + +312993Jerry BlakeJacinto ChabaniaAmerican jazz alto saxophone and clarinet player. +Born: January 23, 1908 in Gary, Indiana. +Died: December 31, 1961. (Mental institution) + +Blake played with [a1332213], [a2025750], [a313015], [a902270], [a294491], Zack White, [a307171], [a1001545], [a648212], [a307323], [a253474], [a145262], [a257353], [a136133].Needs Votehttps://en.wikipedia.org/wiki/Jerry_Blakehttps://www.allmusic.com/artist/jerry-blake-mn0001182377/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109836/Blake_Jerryhttps://adp.library.ucsb.edu/names/109836BlakeJ. BlakeJBJacinto "Jerry" BlakeJerry Blake (Alias Jacinto Chabania)Jimmy BlakeCab Calloway And His OrchestraCount Basie OrchestraTeddy Wilson And His OrchestraWillie Lewis And His OrchestraSam Wooding And His OrchestraBenny Morton And His OrchestraWillie Lewis & His EntertainersSam Wooding And His Chocolate Kiddies + +312994Sid WeissAmerican jazz double bassist. +Born April 30, 1914 in Schenectady, New York. +Died March 30, 1994 in Colton, California. +Brother of jazz drummer [a=Sam Weiss]. + +Played with : Louis Prima, Bunny Berigan, Wingy Manone, Artie Shaw, Tommy Dorsey, Charlie Barnet, Adrian Rollini, Benny Goodman and many others.Needs Votehttps://en.wikipedia.org/wiki/Sid_Weisshttps://www.allmusic.com/artist/sid-weiss-mn0000470962/biographyhttps://www.imdb.com/name/nm0961938/bio?ref_=nm_ov_bio_smhttps://adp.library.ucsb.edu/names/106891S. WeissSWSeymour "Sid" WeissSid Weiss (SW)Sidney WeissSud WeussWeissTommy Dorsey And His OrchestraBenny Goodman SextetCozy Cole All StarsThe Benny Goodman QuintetWingy Manone & His OrchestraArtie Shaw And His OrchestraBud Freeman's All Star OrchestraCharlie Barnet And His OrchestraEddie Condon And His OrchestraTommy Dorsey And His SentimentalistsBenny Goodman And His OrchestraBuck Clayton's Big FourMembers Of The Benny Goodman OrchestraArt Hodes And His Blue Note JazzmenRex Stewart's Big EightThe New Benny Goodman SextetPee Wee Russell's Hot FourJoe Marsala SeptetDelta FourJulian Dash And His OrchestraJoe Bushkin SextetSandy Williams Big EightThe Bill Davison SixJulian Dash Quintet + +312995Eddie TompkinsEdward Thompkins.American jazz trumpeter. + +Born : 1908 in Kansas City, Missouri. +Died : April 17, 1943 in Camp Rickenback, Tennessee. +Needs Votehttps://www.allmusic.com/artist/eddie-tompkins-mn0001209865https://adp.library.ucsb.edu/index.php/mastertalent/detail/111906/Tompkins_Eddie?Matrix_page=2https://www.imdb.com/name/nm6001051/Eddie ThompkinsEddie TomkinsEddie TomlinsEddie YompkinsTompkinsBillie Holiday And Her OrchestraJimmie Lunceford And His OrchestraThe Lunceford QuartetLunceford Trio + +312997Charlie ChristianCharles Henry ChristianUS guitar player +Born July 29, 1916 in Bonham, Texas, USA +Died March 2, 1942 at Seaview Hospital, Staten Island NY, USA. + +Career began with occasional gigs as a bass player in combos around Oklahoma in the early years of the Depression. He spent more than a year with pianist [a2736124]'s sextet, which played in Casper, Wyoming, and Deadwood, South Dakota. Early inspiration for Christian came from [a258433] who arrived with [a2392043] to perform a season at the Ritz Ballroom in 1931. The Ritz was a white ballroom, and the black players had to be content to do their jamming after hours in Slaughter's Hall on East 2nd Street - or "Deep Second" as it was called. Here Christian and [a270237], [a355700], [a254909], Harry Smith, Hobart Banks, Little Dog, James Simpson and other players gathered to trade ideas and try to best one another, developing on their chosen instruments. + +During this period, Christian learned from the guitar players with whom he came into contact: Tommy Lee House, Charlie Faris, Claude Burns and Ralph "Chuck" Hamilton. Perhaps his biggest influence at this point was James "Jim Daddy" Walker, one of the stars of Clarence Love's orchestra from Kansas City. Love played Oklahoma City many times from 1933 onwards, and in their first encounters, Walker (4 years Christian's senior) gave him many a lesson in guitar mastery. Other ideas came from Eddie Durham, who Christian heard a year or so later featuring with [a311058]'s band, and playing a guitar with a resonator. By the time Walker and Christian met again in 1936, however, Christian had developed enormously and was well able to handle the older player. + +Christian left Oklahoma City in 1939 at the age of 23, on the promptings of [a59405] and [a252830], and soon joined [a254768]. Over the next 3 years he would tour across the US with Goodman, and achieve huge popularity. Recordings - both live broadcasts and in the studio (for Columbia and others) also followed. He won the DownBeat Poll for Best Jazz Guitarist in 1939, '40 and '41, and equivalent Metronome polls in 1940 and '41. + +In June 1941, Christian's health failed and he was quickly admitted to first Bellevue, then Seaview hospital in NY. He was never recovered from tuberculosis, and died 9 months later. Inducted into Rock And Roll Hall of Fame in 1990 (Early Influence). Needs Votehttps://en.wikipedia.org/wiki/Charlie_Christianhttps://www.britannica.com/biography/Charlie-Christianhttps://www.okjazz.org/charlie-christian/https://newyorkjazzworkshop.com/charlie-christian/https://www.allmusic.com/artist/charlie-christian-mn0000805930https://www.scaruffi.com/jazz/christia.htmlhttps://medium.com/@johnharris_60942/a-real-modern-charlie-christian-the-worlds-first-electric-guitarist-a1653a16516ehttps://rockhall.com/inductees/charlie-christian/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103283/Christian_CharlieC ChristianC. C.C. ChrisianC. ChristianC. ChristinC. MundyC.ChristianCh. ChristianCh.ChristianCharles "Charlie" ChristianCharles B. ChristianCharles ChristianCharley ChristianCharlie Christian All StarsCharly ChristianChas ChristianChas. ChristianChristianChristianiChristyCristianR. ChristianRoger Val ChristianКрисченMetronome All StarsKansas City SixEdmond Hall Celeste QuartetBenny Goodman SextetLionel Hampton And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetMetronome All-Star BandCharlie Christian QuintetCharlie Christian JammersThe Jerry Jerome QuintetteJam Session (At Minton's - May 8, 1947) + +312999Teddy ColeJazz pianistNeeds VoteRoy Eldridge And His OrchestraMildred Bailey And Her Orchestra + +313000Bill LutherJazz saxophonist + +For the country songwriter: [a4125587]Correcthttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=saxist+bill+luther+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwiBgqfgjNbXAhVBllQKHZcUBrAQ6AEIKDAA#v=onepage&q=saxist%20bill%20luther%20%22The%20Big%20Bands%22&f=falseHarry James And His Orchestra + +313002Emmett BerryEmmett BerryUS jazz trumpet player, born on July 23, 1915 in Macon, Georgiam died on June 22, 1992 in Cleveland, Ohio + +Do not confuse with Ermet Perry, a jazz trumpeter from the same era.Needs Votehttps://en.wikipedia.org/wiki/Emmett_Berryhttps://www.allmusic.com/artist/emmett-berry-mn0000802058/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/421607324af977ad61f326cb0e945661c96c1/discographyhttps://www.imdb.com/name/nm7107097/https://adp.library.ucsb.edu/names/304136BerryE. BerryEmet BerryEmett BerryEmmet BerryEmmett PerryGil Evans And His OrchestraCount Basie OrchestraCozy Cole All StarsBillie Holiday And Her OrchestraFletcher Henderson And His OrchestraBuddy Rich And His OrchestraBuck Clayton And His OrchestraCount Basie, His Instrumentalists And RhythmEarl Hines And His OrchestraTeddy Wilson And His OrchestraBenny Carter And His OrchestraEdmond Hall SextetJay McShann And His OrchestraBuck Clayton With His All-StarsBuster Harding's OrchestraJohnny Hodges And His OrchestraIllinois Jacquet & His Big BandTeddy Wilson SextetJimmy Rushing And His OrchestraAndy Gibson And His OrchestraEmmett Berry SextetCorky Corcoran & His OrchestraBilly Taylor's Big EightSam Price And His Texas BlusiciansEmmett Berry And His OrchestraThe Fletcher Henderson All Stars"Little Jazz" And His Trumpet EnsembleThe Emmett Berry FiveEmmett Berry's Hot SixJune Cole's OrchestraThe Al Sears All StarsSammy Price - Maxim Saury Quintet + +313008Abe BolarAmerican jazz bassist. +Born : March 26, 1908 in Oklahoma City, Oklahoma. + +Abe worked with "Blue Devils", Hot Lips Page, Count Basie, Lucky Millinder, Benton Heath and others.His wife was the pianist Juanita Bolar. +Needs VoteAbe BolardAbe BolerLucky Millinder And His OrchestraPete Johnson's All-StarsBig Joe Turner And His Fly CatsPete Johnson's BandSam Price TrioThe Pete Johnson TrioWalter Page's Blue DevilsPete Johnson & His Boogie Woogie BoysHot Lips Page And His Band + +313010George WettlingGeorge Godfrey WettlingAmerican jazz drummer, born 28 November 1907 in Topeka, Kansas; died 6 June 1968 in New York City. + +For Published By, see [l3479836].Needs Votehttps://en.wikipedia.org/wiki/George_Wettlinghttps://www.drummerworld.com/drummers/George_Wettling.htmlhttps://www.allmusic.com/artist/george-wettling-mn0000541305/discographyhttps://adp.library.ucsb.edu/names/105504"Georgia" WettlingG. "Georgia" WettlingG. WettingG. WettlingGeo WettlingGeo. WattlingGeo. WettlingGeorge "Georgia" WettlingGeorge Shaw WettlingGeorge WetlingGeorge WhettlingGeorge WhittlingWettingWettlingBunny Berigan & His OrchestraR.C.A. Victor All-StarsArtie Shaw And His OrchestraBud Freeman's All Star OrchestraGeorge Wettling's DixielandersEddie Condon And His OrchestraJimmy McPartland And His DixielandersBud Freeman's Summa Cum Laude OrchestraToots Camarata And His OrchestraEddie Condon And His ChicagoansWild Bill Davison And His CommodoresEddie Condon And His BandGeorge Wettling's New YorkersGeorge Wettling's Chicago Rhythm KingsEddie Condon And His Windy City SevenBobby Hackett And His OrchestraSidney Bechet And His New Orleans FeetwarmersRed Norvo And His OrchestraLeonard Feather All StarsSidney Bechet & His Circle SevenEddie Condon And His All-StarsHenry "Red" Allen And His OrchestraThe Cellar BoysJimmy McPartland And His OrchestraVarsity SevenJack Teagarden And His Swingin' GatesMuggsy Spanier And His All StarsBud Freeman TrioJoe Sullivan Jazz QuartetYank Lawson's Jazz BandSidney Bechet's SevenThe Dixieland All StarsMax Kaminsky And His Windy City SixMax Kaminsky And His Jazz BandGeorge Wettling's Jazz BandHenry "Red" Allen's All StarsJam Session At VictorElmer Schoebel And His Friars Society OrchestraTony Parenti's All-StarsGeorge Brunies And His Jazz BandBud Freeman And His OrchestraHank D'Amico SextetGeorge Wettling And His Windy City SevenGeorge Wettling's All StarsJimmy McPartland's Hot Jazz StarsGeorge Wettling And His Rhythm KingsPee Wee Russell's Hot FourMax Kaminsky And His Dixieland BandGeorge Hartman And His OrchestraEddie Condon And His Dixieland BandGeorge Wettling Jazz TrioChico Marx And His OrchestraTony Parenti's RagpickersArtie Shaw And His StringsPaul Mares & His Friars Society OrchestraColeman Hawkins And His Hot SevenGeorge Wettling And His Hormel Frank StompersJam Session At CommodoreJack Teagarden & His Trombone + +313012Pha TerrellElmer TerrellAmerican jazz singer, born May 25, 1910, Kansas City, Missouri, died October 14, 1945, Los Angeles.Needs Votehttps://adp.library.ucsb.edu/names/346597Pha TerrillAndy Kirk And His Clouds Of Joy + +313014Leonard DavisUS jazz trumpeter, nicknamed "Ham", born July 4, 1905 in St. Louis, Missouri died 1957 in New York City, New York. +Davis played with [a=Charlie Creath] in St. Louis in 1924-1925, then moved to New York, where he played with [a=Edgar Hayes] 1927, Arthur Gribbs 1927-1928 and [a=Charlie Johnson] c. 1928-1929. Recorded with [a=Eddie Condon] in 1929. During the 1930s worked with [a=Elmer Snowden] 1930-1931, [a=Don Redman] 1931, [a=Russell Wooding] 1932, [a=Benny Carter] 1933, and [a=Luis Russell] 1934-1935. From October 1935 to spring 1937 member of [a=Louis Armstrong]'s orchestra. Again with Hayes 1938-1939, touring Europe. In the 1940s worked intermittently with [a=Alberto Socarras] before ceasing to work full-time as musician. + +Needs Votehttps://adp.library.ucsb.edu/names/112286L. DavisLen DavisLen. DavisLeonard "Ham" DavisLeonard "Ham" Davis.Leonard 'Ham' DavisLeonard DavidLéonard DavisMcKinney's Cotton PickersLouis Armstrong And His OrchestraThe Chocolate DandiesCharles Creath's Jazz-O-ManiacsEddie Condon And His Hot ShotsLuis Russell And His OrchestraFats Waller And His BuddiesThe Little Chocolate DandiesSpike Hughes And His Negro OrchestraDon Redman And His OrchestraCharlie Johnson & His OrchestraCharlie Johnson & His Paradise BandEdgar Hayes And His OrchestraCharlie Skeete And His OrchestraThe Leonard Davis Trio + +313015Charlie TurnerCharles McKinlay TurnerJazz bassist and tubaist, nicknamed "Fat Man", born early 20th century, died October 27, 1964. +Played with [a=Doc Cheatham] in 1926, then recorded with [a=Richard M. Jones] 1927, moved to New York in 1929. By 1933 leading his own band, Charlie Turner's Arcadians, from 1935 to 1938 some of the members of this band, including Turner himself, formed the nucleus of [a=Fats Waller]'s touring band. Thereafter he worked for [a=Ethel Waters] 1938-1939 and again with Waller in 1941-1942. +Together with [a693039], he later opened a well known restaurant in Harlem, commemorated in [a=Sy Oliver]'s song "At The Fat Man's".Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/112443/Turner_CharlesC. TurnerCharles "Fat Man" TurnerCharles 'Fatman' TurnerCharles TurnerCharlie "Fat Man" TurnerChas TurnerChas. TurnerTurnerFats Waller & His RhythmRichard Jones And His Jazz WizardsEmmett Matthews And His Orchestra + +313018Henry AdlerAmerican jazz & swing drummer, teacher, author, and publisher. +Born June 28, 1915 New York City, USA. +Died September 30, 2008 (aged 93) Dunedin, Florida, USA. + +Adler taught drummer [a57620] how to read music and co-wrote [i]Buddy Rich's Modern Interpretation of Snare Drum Rudiments[/i], published in 1942. Adler developed the Adler Technique after studying the movements of the arm, hand, and wrist. His technique intended to omit wasted motion. During the 1960s, he started the Henry Adler Music Publishing Company. He wrote many other instruction books as well including [i]Don Lamond's Design for the Drum Set[/i] with drummer [a263096] (1966). Adler also published instruction books by countless other authors.Needs Votehttps://en.wikipedia.org/wiki/Henry_Adlerhttps://www.moderndrummer.com/2011/02/henry-adler/https://www.namm.org/library/oral-history/henry-adlerLarry Clinton And His OrchestraGeorgie Auld And His Orchestra + +313021Russell BowlesAmerican jazz trombonist from the swing-era. + +Born : April 17, 1909 in Glasgow, Kentucky. +Died : July 05, 1991 in Lancaster, Pennsylvania. + +Needs Votehttps://en.wikipedia.org/wiki/Russell_Bowleshttps://www.allmusic.com/artist/russell-bowles-mn0001627912/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/305251/Bowles_Russellhttps://adp.library.ucsb.edu/names/305251BowlesR. BowlesR. BowleyRussel BowlesRussell BolesJimmie Lunceford And His Orchestra + +313022Russell BrownUS jazz trombonist from the swing-era. +[b]Please don't confuse with jazz, blues and rock songwriter, [url=http://www.discogs.com/artist/L.+Russell+Brown]L. Russell Brown[/url].[/b] +Needs Votehttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=Russell+Brown+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwiIm_aqiNbXAhUCw1QKHV8rCpMQ6AEIKDAA#v=onepage&q=Russell%20Brown%20%22The%20Big%20Bands%22&f=falseRuss BrownRussel BrownHarry James And His OrchestraArtie Shaw And His OrchestraCharlie Barnet And His OrchestraPete Rugolo OrchestraHarry James And His Big BandHot Rod Rumble Orchestra + +313023Les RobinsonLes A. Robinson.American jazz saxophonist (alto) player. +He played with : Artie Shaw's Orchestra, Benny Goodman and Jerry Wald (and others). + +Born : November 10, 1914 in USA. +Died : January 06, 2005 in Ventura, California, USA. +Needs Votehttps://www.allmusic.com/artist/les-robinson-mn0000813496/creditshttp://oldtimeblues.net/tag/les-robinson/https://adp.library.ucsb.edu/index.php/mastertalent/detail/113251/Robinson_LesL. RobinsonLRLes A. RobinsonLes Robinson (LR)Leslie RobinsonRobinsonTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraJimmy Mundy OrchestraJerry Gray And His OrchestraMembers Of The Benny Goodman OrchestraThe Capitol JazzmenArt Shaw And His New MusicThe Band That Plays The BluesCootie Williams Septet + +313024The QuintonesUS jazz vocal group. +Members: Patti Davis, Irving Deutsch, Murray Deutsch, Lloyd Hundling, and Al Lane. The Deutsch's were twins. + +For the doo wop group from Pennsylvania, see [a=The Quin-Tones]. +For the instrumental group, see [a=The Quintones (3)]. +Needs VoteQuintonesAl LaneIrving DeutschLloyd HundlingMurray DeutschPatti Davis (4) + +313026Al AvolaAlexander Albert Avola.American jazz guitarist and arranger. + +Born : January 27, 1914 in Boston, Massachusetts. +Died : January 20, 2000 in Los Angeles, California +Needs VoteA. AvolaAlexander AvolaAvolaArtie Shaw And His OrchestraGeorgie Auld And His OrchestraArt Shaw And His New Music + +313028Paul MasonAmerican Jazz saxophonist, active from the 1920's to the 1940's.Needs VoteMasonP. MasoP. MasonPMPaul Mason (PM)Tommy Dorsey And His OrchestraTommy Dorsey And His Sentimentalists + +313030Sol MooreUS jazz saxophonist from the swing-era.Needs VoteSaul MooreSol "Pee Wee" MooreSol MoorSol MorseSolomon MooreDizzy Gillespie Big BandLes Hite And His OrchestraBuster Harding's OrchestraFloyd Ray And His Orchestra + +313031Ernie PowellJazz saxophonist.Needs Votehttps://www.allmusic.com/artist/ernie-powell-mn0001231857/credits16E. PowellErnest PowellPowellBillie Holiday And Her OrchestraTeddy Wilson And His OrchestraBenny Carter And His OrchestraColeman Hawkins And His OrchestraColeman Hawkins Big BandHot Lips Page And His Band + +313032Leo WhiteJazz saxophonistNeeds VoteWhiteCharlie Barnet And His OrchestraLarry Clinton And His Orchestra + +313033John MillsJohn Hutchinson MillsAmerican singer. Member of [a=The Mills Brothers] but was in fact their father. +born 11 Feb 1889, in Bellefontaine, Logan County, Ohio, USA +died 8 Dez 1967, in Bellefontaine, Logan County, Ohio, USA +He joined the group after the death of [a=John Mills Jr.] in 1938 and retired in 1956 so the group became a trio. +Needs VoteJ. MillsJ. Mills SrJohn Mills Sen.John Mills SnrJohn Mills SrJohn Mills Sr.John Mills, Sr.John Sr.The Mills Brothers + +313035James Price JohnsonJames Price JohnsonJazz pianist born February 1, 1894, New Brunswick, New Jersey; died November 17, 1955, Jamaica, New York + +James P. Johnson was an important transitional figure between ragtime and jazz piano styles. His style became known as Stride. As a boy, Johnson studied Classical music and Ragtime. He started playing professionally in a sporting house, and then progressed to rent parties, bars and vaudeville. He eventually became known as the best piano player on the East Coast and was widely utilized as an accompanist on over 400 recordings and, from 1916 on, produced hundreds of piano rolls under his own name. He backed up many of the Classic Blues singers of the 1920s, including Ida Cox, Ethel Waters, and Bessie Smith. +Johnson's 1921 recording of "Carolina Shout" is considered to be the first recorded Jazz piano solo by some critics, although it sounds a lot like Ragtime to this listener's ears. He wrote several musical revues, including "Running Wild," "Plantation Days," and his 1928 collaboration with his former piano student Fats Waller, "Keep Shufflin'". His song "The Charleston" from "Running Wild" was one of the best known and most widely recorded songs of 1920s. +Other hits included "Old Fashioned Love" and "If I Could Be With You (One Hour Tonight).". Johnson composed several symphonic works, including "Yamecraw: A Negro Rhapsody" (1928), "Tone Poem" (1930), "Symphony Harlem " (1932), a symphonic version of W.C. Handy's "St. Louis Blues" (1937), and the one-act opera "De Organizer" (1940), with lyrics by Langston Hughes. None of his symphonic works were very popular and have seldom been performed. Johnson is generally considered the "Father of the Stride" piano, and was a major influence on some of Jazz's great pianists such as Duke Ellington, Fats Waller. and Thelonious Monk. He was inducted into the Songwriters Hall of Fame in 1970.Needs Votehttp://www.redhotjazz.com/jpjohnson.htmlhttps://www.songhall.org/profile/James_P_Johnsonhttps://www.ascap.com/repertory#ace/writer/15416708/JOHNSON%20JAMES%20Phttps://adp.library.ucsb.edu/names/103380https://en.wikipedia.org/wiki/James_P._Johnson"Fats" JohnsonHenry JohnsonJ JohnsonJ JohnsonJ P JohnsonJ P: CharlestonJ. C. JohnsonJ. JohnsonJ. JohnstonJ. P. JohnsonJ. R. JohnsonJ. T. JohnsonJ.-P. JohnsonJ.-P. JohnssonJ.C JohnsonJ.C. JohnsonJ.J.JohnsonJ.JohnsonJ.P. JohnsonJ.P.JohnsonJ.P.K. JohnsonJP JohnsonJame P. JohnsonJames "Jimmy" P. JohnsonJames "Price" JohnsonJames A JohnsonJames C. JohnsonJames J. JohnsonJames JohnsonJames P JohnsonJames P.James P. JohnsonJames P. "Jimmy" JohnsonJames P. JohnJames P. JohnosnJames P. JohnsenJames P. JohnsonJames P. JohsonJames P.JohnsonJames PJohnsonJames PriceJames. P. JohnsonJas P. JohnsonJas. P. JohnsonJimmie JohnsonJimmy JohnsenJimmy JohnsonJimmy Jr. JohnsonJimmy P. JohnsonJinny JohnsonJohn Price JohnsonJohnsenJohnsonJohnson JJohnstonJohnstoneL. JohnsonM. JohnsonP. JohnsonT. James PriceWohsonДжонсонジェームス・P・ジョンソンMcKinney's Cotton PickersThe New Orleans FeetwarmersMezz Mezzrow And His OrchestraEdmond Hall's Blue Note JazzmenJames P. Johnson's Blue Note JazzmenFrank Newton And His OrchestraClarence Williams And His OrchestraSidney Bechet QuartetSidney Bechet & His Circle SevenPerry Bradford Jazz PhoolsJohnny Dunn's Original Jazz HoundsSidney DeParis' Blue Note JazzmenYank Lawson's Jazz BandSidney Bechet's SevenJimmy Johnson And His OrchestraJames P. Johnson's Hep CatsMax Kaminsky And His Jazz BandLouisiana Sugar BabesPee Wee Russell RhythmakersThe Gulf Coast SevenJimmy Johnson And His BandThe James P. Johnson QuartetJimmie Johnson's Jazz BoysAlbert Nicholas And His Creole SerenadersJames P. Johnson's Harmony SevenJames P. Johnson Harmony EightRod Cless QuartetJames P. Johnson TrioThe "This Is Jazz" All-StarsTrio Russell-Johnson-SingletonJohnson's Jazzers + +313039Jimmy MaxwellJames Kendrick MaxwellAmerican swing jazz trumpeter and bagpiper. Born 9 January, 1917 in Stockton, California, USA. Died 20 July, 2002 in Great Neck, New York, USA.Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Maxwell_(trumpeter)https://www.nytimes.com/2002/07/25/arts/jimmy-maxwell-85-a-lead-trumpeter-with-the-top-big-bands.htmlhttp://www.jazzprofessional.com/memorial/Jimmy%20Maxwell.htmhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/14019db9c4439643be968beed1d71c7ff4352/biographyhttps://adp.library.ucsb.edu/names/330394J. MaxwellJames K. MaxwellJames MaxwellJames MaywellJim MaxwellJimmie MaxwellMaxwellジミー・マックスウェルQuincy Jones And His OrchestraThe Will Bradley-Johnny Guarnieri BandWoody Herman And His OrchestraCharlie Barnet And His OrchestraWill Bradley And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraCharlie Parker Big BandTony Scott And His OrchestraLionel Hampton And His All-Star Alumni Big BandCharlie Parker With StringsJoe Reisman And His OrchestraBuddy Morrow And His OrchestraRichard Maltby And His OrchestraSkinnay Ennis And His OrchestraJerry Gray And His OrchestraHenry Jerome And His OrchestraNational Jazz EnsembleWoody Herman And The Fourth HerdThe Quincy Jones Big BandOrizaba And His OrchestraSal Salvador And His OrchestraVic Schoen And His All Star BandMarty Grosz And His Blue AngelsThe BrassmatesJim Timmens And His Swinging Brass + +313040Sidney CatlettSidney CatlettAmerican jazz drummer who was also known as Big Sid +Born 17 January 1910 in Evansville, Indiana; died 25 March 1951 in Chicago, Illinois +Needs Votehttps://www.drummerworld.com/drummers/Big_Sid_Catlett.htmlhttps://www.radioswissjazz.chitbanca-dati-musicalemusicista791201bf59a94477eecc4c16218d7cb192039biographyhttps://www.treccani.itenciclopediacatlett-sidney-detto-big-sidhttps://www.imdb.comnamenm0146184https://adp.library.ucsb.edunames109211"Bid Sid" Catlett"Big Sid" Catlett"Big" Sid Catlett"Big" Sidney CatlettB. CatletB. CatlettBig Sid CatletBig Sid CatlettBig Sid Catlett And EnsembleBig Sidney CatlettBig Sit CatletCatlettS. CatlettSid CarlettSid CatlellSid CatlettSid CattletSid CattlettSid. CatlettSidn CatlettSidney "Bid Sid" CatlettSidney "Big Sid" CatlettSidney 'Bid Sid' CatlettSidney 'Big Sid' CatlettSidney <Big Sid> CatlettSidney CattletSidney CattlettSidney CotlettSidney NatlettSidney « Big Sid » CatlettSydney Catlett»Big Sid« CatlettСидни КэтлеттColeman Hawkins All Star BandEsquire All StarsLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe Chocolate DandiesLouis Armstrong And His All-StarsThe Mezzrow-Bechet SeptetTeddy Wilson And His OrchestraEddie Condon And His OrchestraEarl Hines SextetDon Byas QuartetColeman Hawkins And His OrchestraSpike Hughes And His Negro OrchestraSidney Bechet QuintetEddie Condon And His BandEdmond Hall's Blue Note JazzmenEdmond Hall SextetJames P. Johnson's Blue Note JazzmenSidney Bechet And His New Orleans FeetwarmersBenny Goodman And His OrchestraBen Webster And His OrchestraBen Webster QuartetLester Young QuartetDizzy Gillespie And His All Star QuintetThe Duke's MenEddie Heywood And His OrchestraEddie Heywood TrioColeman Hawkins Swing FourHot Lips Page And His OrchestraLeonard Feather All StarsColeman Hawkins' All American FourAlbert Ammons And His Rhythm KingsSidney Bechet's Blue Note QuartetColeman Hawkins And His Sax EnsembleTeddy Wilson SextetChu Berry & His Little Jazz EnsembleBig Sid Catlett QuartetSidney DeParis' Blue Note JazzmenThe Earl Hines SeptetPort Of Harlem JazzmenAl Casey And His SextetBenny Morton's Trombone ChoirMel Powell And His OrchestraJ.C. Higginbotham QuintetHot Lips Page & His Hot SevenJohn Hardee SextetRex Stewart's Big EightFrank Newton QuintetSidney Catlett QuartetSid Catlett All StarsPutney Dandridge And His OrchestraMetropolitan Opera House Jam SessionBig Sid Catlett's BandBenny Carter & His Chocolate Dandies"Hot Lips" Page SextetThe John Hardee SwingtetHot Lips Page And His BandSid Catlett's JazzmenEdmond Hall's SwingtetEarl Hines SwingtetteSid Catlett TrioEddie Condon's N.B.C. Television OrchestraJam Session At CommodoreEsquire All-American Jazz BandBig Sid Catlett TrioBill De Arango SextetBig Sid Catlett And His Orchestra + +313042Jimmy McLinAmerican jazz guitarist. + +Born : June 27, 1908 in Brookesville, Florida. +Died : December 15, 1983 in St. Petersburg, Florida. +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_McLinJ. McLinJames McLinJimmie McLinJimmie MclinJimmy Mc LinJimmy McLinnBillie Holiday And Her OrchestraTeddy Wilson And His OrchestraFrank Newton And His OrchestraClarence Williams And His OrchestraBuster Bailey's Rhythm BustersSammie Lewis With His Bamville SyncopatorsJerry Kruger & Her Knights Of Rhythm + +313045Oscar Lee Bradley Sr.Jazz drummerCorrectBradleyO. BradleyO. L. BradleyOscar BradleyOscar L. BradleyOscar Lee BradleyOscar Lee DradleyOsscar Lee BradleyBenny Carter And His OrchestraLes Hite And His OrchestraLouis Prima & His New Orleans GangStuff Smith QuartetWilbert Baranco QuartetThe 3 Dukes + +313048Red GinglerAmerican jazz trumpeter and trombonist.Needs VoteR. GinglerBenny Goodman And His Orchestra + +313049Jack WashingtonRonald WashingtonAmerican jazz alto and baritone saxophonist, born July 17, 1910 in Kansas City, Kansas, died November 28, 1964 in Oklahoma City, Oklahoma. +Washington first recorded with [a=Jesse Stone] in 1927, and worked with [a=Bennie Moten] (late 1920s-1935), [a=Count Basie] (1935-1950) and others.Needs Votehttp://en.wikipedia.org/wiki/Jack_Washingtonhttps://www.allmusic.com/artist/jack-washington-mn0000781718https://jazzbarisax.com/baritone-saxophonists/pre-bop-style/jack-washington/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/41492592a58e3e6df137a8b7624993118dde4/discographyhttp://www.worldcat.org/identities/lccn-no98095907/https://adp.library.ucsb.edu/names/111117"Ronald" Jack WashingtonJ. WashingtonJ.R. WashingtonR. WashingtonRonald "Jack" WashingtonRonald (Jack) WashingtonWashingtonRonald WashingtonCount Basie OrchestraHarry James And His OrchestraBillie Holiday And Her OrchestraBennie Moten's Kansas City OrchestraCount Basie BandCount Basie, His Instrumentalists And RhythmFrank Newton And His OrchestraThe Prestige All StarsJesse Stone And His Blue Serenaders + +313050Beverly PeerAmerican jazz double bassist. +Born : October, 07, 1912 in New York City, New York. +Died : January 16, 1997 in New York City (Manhattan), New York. + +Beverly worked with : “Chick Webb Orchestra” (1937-1939), Ella Fitzgerald, Sabby Lewis, Sarah Vaughan, Lena Horne, Ellis Larkins, Jimmy Lyons, Carol Burnett, Dorothy Loudon, Johnny Mathis, Barbra Streisand and with the pianist and singer Bobby Short (from 1970s to 1990s).In 1986, he made a cameo appearance in Woody Allen's "Hannah and her sisters" movie. +Needs Votehttps://en.wikipedia.org/wiki/Beverly_Peerhttps://www.allmusic.com/artist/beverly-peer-mn0000586398/biographyhttps://adp.library.ucsb.edu/names/336956B. PeerBeverley PeerBeverley PeersBeverly A. PeerBeverly SpeerBevery Peerビバリー・ピアーChick Webb And His OrchestraChick Webb And His Little ChicksElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraLucky Thompson And His Lucky SevenEdgar Sampson And His OrchestraThe Jimmy Lyon TrioAl Williams Trio + +313052Harry LawsonAmerican trumpet player from the swing era, born December 25, 1904 in Little Rock, Texas. Lawson was one of the standout soloists of Andy Kirk's Clouds of Joy. +His nickname was "Big Jim".Needs Votehttp://www.allmusic.com/artist/harry-lawson-mn0001554328https://adp.library.ucsb.edu/index.php/mastertalent/detail/205703/Lawson_HarryHarry "Big Jim" LawsonHarry LarsenLawsonAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraJohn Williams' Memphis Stompers + +313053Earl ThompsonJazz trumpet player from the Swing eraNeeds VoteEarl ThomsonEarly ThompsonThompsonAndy Kirk And His Clouds Of JoySix Men And A Girl + +313054Frank FroebaFrank FroebaAmerican jazz pianist and bandleader born August 31, 1907 in New Orleans, LA and died February 16, 1981 in Miami, FL. +His name is often written as "Frank Froba", Frankie Froba", or "Frankie Froeba". +Needs Votehttp://en.wikipedia.org/wiki/Frank_Froebahttps://adp.library.ucsb.edu/names/106921https://adp.library.ucsb.edu/names/106920F. FroebaForsbaFr. FroebaFranck FroebaFrank FrobaFrank FrobeFrank Froeba At The PianoFrank Froeba With RhythmFrank FrolbaFrankie FrobaFrankie FroebaFred FroebaFreebaFrobaFroebaFroeberFroetaBenny Goodman And His OrchestraJack Purvis And His OrchestraFrank Froeba And His BoysFrank Froeba And His Swing BandGeorge Hartman And His OrchestraFrank Froeba And His TrioFrank Froeba And His OrchestraEsquire All-American Jazz BandFrankie Froba And His Gang + +313055Haig StephensGeorge Haig StephensAmerican jazz bassist (string bass). +Born December 18, 1916 in Scranton, Pennsylvania, USA. +Died February 8, 2004, in Escondido, California, USA. +Apart from jazz groups, he also played double bass in [a=The NBC Orchestra] and in the National Orchestra of Spain.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100943/Stephens_HaigH. StephensHaig StephensonHaig StevensHaigh StephensStephensW. StephansW. StephensLouis Armstrong And His OrchestraToots Camarata And His OrchestraAdrian Rollini TrioErskine Butterfield And His Blue BoysJimmy Lytell And His All Star SevenSavannah Churchill And Her All Star Seven + +313057Al MastrenAlex MastandreaJazz trombonistNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/330210/Mastren_Alhttps://www.allmusic.com/artist/al-mastren-mn0001265095/creditsAlex (Al) Mastandrea (Mastren)Alex MastrenWoody Herman And His OrchestraGlenn Miller And His OrchestraRed Norvo And His OrchestraBob Chester And His OrchestraAll Star Alumni OrchestraBobby Byrne And His OrchestraThe Band That Plays The Blues + +313058Maxene AndrewsMaxene Angelyn AndrewsAmerican jazz vocalist (Andrews Sisters). + +Born : January 03, 1916 in Minneapolis, Minnesota. +Died : October 21, 1995 in Hyannis, Massachusetts. +Needs Votehttps://films.discogs.com/credit/464565-maxene-andrewshttps://adp.library.ucsb.edu/names/301498MaxeneMaxine AndrewsThe Andrews Sisters + +313059Dave ToughDavid Jaffray ToughAmerican jazz drummer. +Born: April 26, 1907 in Oak Park, Illinois. +Died: December 09, 1948 in Newark, New Jersey. +Needs Votehttp://www.drummerworld.com/drummers/Dave_Tough.htmlhttps://en.wikipedia.org/wiki/Dave_Toughhttps://adp.library.ucsb.edu/names/107188D. ToughD.ToughDTDave ThoughDave Tough (DT)Dave TroughDavey ToughDavie ToughToughTommy Dorsey And His OrchestraHarry James And His OrchestraThe Benny Goodman QuartetWoody Herman And His OrchestraMetronome All StarsBenny Goodman SextetTommy Dorsey And His Clambake SevenArtie Shaw And His OrchestraBud Freeman's All Star OrchestraJack Teagarden And His OrchestraCharlie Spivak And His OrchestraJack Teagarden And His Big EightEddie Condon And His ChicagoansWild Bill Davison And His CommodoresBenny Goodman And His OrchestraBenny Goodman SeptetWoody Herman & The HerdWoody Herman And His WoodchoppersMildred Bailey And Her OrchestraThe Charleston ChasersBud Freeman And His GangChubby Jackson's OrchestraFlip Phillips FliptetBud Freeman And His Famous ChicagoansRex Stewart's Big SevenThe Bernie Leighton QuartetCharlie Christian JammersBrad Gowans And His New York NineJ.C. Higginbotham's Big EightDave Tough QuinteteCharlie Ventura/Bill Harris QuintetDanny Hurd OrchestraChubby Jackson Septet + +313060Joe BushkinJoseph BushkinAmerican jazz pianist, born 7 November 1916 in in New York City, New York, USA and died 3 November 2004 in Santa Barbara, California, USA.Needs Votehttp://www.joebushkin.com/https://en.wikipedia.org/wiki/Joe_Bushkinhttps://www.imdb.com/name/nm0124270/https://www.allmusic.com/artist/joe-bushkin-mn0000786707/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/910306d9ae9667a99091b3a185df1ec169f0/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105660/Bushkin_Joehttps://adp.library.ucsb.edu/names/105660BushkinBuskinDž. BuškinasGeorge BushkinJ, BushkinJ. BushkinJ. BuskinJBJo BushkinJoe BurhkinJoe BushinJoe Bushkin & TrioJoe Bushkin (JB)Joe BuskinJoey BushkinJoseph BushkinRushkinSgt. Joe BushkinTommy Dorsey And His OrchestraMuggsy Spanier's Ragtime BandBunny Berigan & His OrchestraKansas City SixBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraGene Krupa And His OrchestraLouis Armstrong And His All-StarsEddie Condon And His OrchestraJoe Bushkin And His Swinging StringsBunny Berigan And His BoysBob Haggart And His OrchestraTommy Dorsey And His SentimentalistsEddie Condon And His BandBenny Goodman And His OrchestraLeonard Feather All StarsJoe Bushkin QuartetJoe Bushkin & His RhythmJoe Marsala And His ChicagoansAll Star Jam BandJoe Bushkin, His Piano And OrchestraBobby Hackett And His Swinging StringsGeorge Brunies And His Jazz BandBunny Berigan's Rhythm-MakersBrad Gowans And His New York NineEddie Condon's N.B.C. Television OrchestraJam Session At CommodoreJoe Bushkin TrioJoe Bushkin Blue Boys + +313061Jack PalmerAmerican jazz trumpeter and vocalist +Born: 1913 in Nashville, Tennessee, died: 2000 in Waterbury, Connecticut. + +[b]Don't confuse with American pianist and composer [a3467950]![/b]Needs Votehttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&lpg=PT430&dq=jack+palmer+trumpet+singer&source=bl&ots=2Oun5Zr7VG&sig=7e7sTGSzoykVz057l7TVZ12h4mo&hl=en&sa=X&ved=0ahUKEwiwlISn89XXAhXlyVQKHbzVC-8Q6AEIYjAO#v=onepage&q=jack%20palmer%20trumpet%20singer&f=falsehttps://www.youtube.com/watch?v=QXjg3q6I8IMJack BergHarry James And His OrchestraTeddy Powell And His OrchestraRed Norvo And His Orchestra + +313064Bob SnyderJazz woodwind player who has played in the Gene Krupa Orchestra around 1940. + +Please do not confuse with Jazz woodwind player and arranger [a3045142] who was born in 1936.Needs VoteB. SnyderSnyderGene Krupa And His OrchestraBenny Goodman And His OrchestraThe Bob Snyder Orchestra + +313066Gene SedricEugene Hall SedricAmerican jazz tenor saxophonist and clarinetist +Born June 17, 1907, St. Louis, MO, USA +Died April 3, 1963, New York, NY, USA + +Son of ragtime pianist Paul "Can Can" Sedric + +Career steps: +1922 [a=Charles Creath's Jazz-O-Maniacs] +1923 to 1934 [a=Sam Wooding And His Orchestra] +1934 [a=Fats Waller & His Rhythm] +from 1938 [a=Gene Sedric & His Orchestra] + + +Needs Votehttps://en.wikipedia.org/wiki/Gene_Sedrichttps://www.loc.gov/resource/gottlieb.07731.0https://www.allmusic.com/artist/gene-sedric-mn0000803655/biographyhttps://adp.library.ucsb.edu/names/107220CedricCene CedricE. CedricE. SedricEugene "Gene" SedricEugene "Honeybear" SedricEugene CedricEugene P. 'Honey Bear' SedricEugene SedricEugène SedricG. SedricGene "Honey Bear" SedricGene "Honeybear" SedricGene CedricGene SedrickGene SédricGene “Honey Bear” SedricSedricFats Waller & His RhythmTeddy Wilson And His OrchestraMezz Mezzrow And His OrchestraDon Redman And His OrchestraSidney Bechet & His All Star BandSedric And His Honey BearsSam Wooding And His Orchestra"Big Chief" Russell Moore And His OrchestraGene Sedric & His OrchestraPat Flowers And His RhythmGene Sedric BandEmmett Matthews And His OrchestraSedric-Clayton SextetSam Wooding And His Chocolate KiddiesJimmy McPartland And His SextetteMezz Mezzrow-Buck Clayton Orchestra + +313068Kermit ScottKermit Willie Scott. American jazz saxophonist (tenor). + +Born : 1913 in Beaumont, Texas. +Died : February 02, 2002 in Houston, Texas. + +Kermit worked with Fats Waller, Coleman Hawkins, +Billie Holiday, Earl Hines, Thelonious Monk and others. +Nickname : "Scotty".Needs Votehttps://en.wikipedia.org/wiki/Kermit_Scott_(musician)K. ScottKermitt ScottScottBillie Holiday And Her OrchestraEarl Hines And His OrchestraColeman Hawkins And His OrchestraColeman Hawkins Big BandJam Session (At Minton's - May 8, 1947) + +313070Ed LewisEdward A. LewisAmerican jazz trumpeter. +Played with : Paul Banks and [a2043047], [a311057], [a934070], [a1070253], [a274433], [a145262] and others. + +Born : January 22, 1909 in Eagle City, Oklahoma. +Died : September 18, 1985 in Blooming Grove, New York. +Needs Votehttps://en.wikipedia.org/wiki/Ed_Lewis_(musician)https://www.allmusic.com/artist/ed-lewis-mn00007917793https://peoplepill.com/people/ed-lewishttps://adp.library.ucsb.edu/names/112503E. LewisE.LewisEd "Tiger " LewisEd "Tiger" LewisEddie LewisEdward "Tiger" LewisEdward A.LewisEdward LewisEdward Tiger LewisLewisCount Basie OrchestraBennie Moten's Kansas City OrchestraArnett Cobb & His OrchestraCount Basie Band + +313071Claude LakeyClaude Roger Lakey.American jazz saxophonist, trumpeter and arranger. + +Born : August 21, 1910 in San Augustine, Texas. +Died : October 13, 1990 in Nacogdoches, Texas. + +Claude played with Joe Rivet (1933), Orrin Tucker (1934), Ben Young (1934), Glenn Miller (1936-1939), Harry James (1939-1947), Frankie Laine (1947), Bobby Sherwood (1947), Gene Krupa and others.Needs VoteBill LaheyLakeyHarry James And His OrchestraHarry James & His Music Makers + +313073Stanley PayneJazz saxophonist.Needs VoteS. PayneStan PayneBillie Holiday And Her OrchestraBenny Carter And His OrchestraFrank Newton And His OrchestraWillie Bryant And His OrchestraFrankie Newton & His Cafe Society Orchestra + +313074Lee BlairLee BlairAmerican jazz guitarist and banjo player. + +Born : October 10, 1903 in Savannah, Georgia. +Died : October 15, 1966 in New York City. + +Worked with Charlie Skeets (1926-1928), Jelly Roll Morton (1928- 1930), Billy Kato (1930-1931), Luis Russell (1934 - 1935), Louis Armstrong (1935 - 1940) and others. +Needs Votehttps://en.wikipedia.org/wiki/Lee_Blair_(musician)https://www.allmusic.com/artist/lee-blair-mn0001614156/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/110316/Blair_Lee_L?Matrix_page=3https://adp.library.ucsb.edu/names/110316BlairL. BlairL. T. BlairLee BliarLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersThomas Morris And His Seven Hot BabiesLuis Russell And His OrchestraWilbur De Paris And His New New Orleans JazzJelly Roll Morton And His Orchestra + +313075Fred StulceFrederick J. Stulce Jr.American jazz saxophonist, clarinetist and flutist, worked with the Tommy Dorsey's orchestra. +Born: ? +Died: May 22, 1979 in Los Angeles, California. (64)Needs VoteF. StulceFSFred Stulce (FS)Fred StuleeFred StulzeFreddie StulceFreddy StulceS. StulceStulceTommy Dorsey And His OrchestraWingy Manone & His OrchestraTommy Dorsey And His SentimentalistsPaul Weston And His Orchestra + +313076Dick WilsonRichard WilsonAmerican tenor saxophonist and clarinetist from the Swing era (b. November 11, 1911, Mount Vernon, Illinois - d. November 24, 1941, New York). His career started with Gene Coy in 1933, later with Zack Whyte. +Needs Votehttps://en.wikipedia.org/wiki/Dick_Wilson_(musician)https://peoplepill.com/people/dick-wilson/Dickie WilsonRDWRichard "Dick" WilsonRichard (Dick) WilsonWilsonAndy Kirk And His Clouds Of JoyMary Lou Williams And Her Kansas City SevenSix Men And A Girl + +313077Forrest PowellUS jazz/blues trumpet player, started in the 1930/1940s. +Needs VoteForest PowellPowellLes Hite And His OrchestraEddie Smith And His Joy Jumpers + +313079Bob KitsisRobert Eliot Kitsis.American jazz pianist. + + +Born : September 05, 1917 in Boston, Massachusetts. +Died : March 15, 2004 in Boyton Beach, Florida. +Needs Votehttps://www.allmusic.com/artist/bob-kitsis-mn0001191636/biographyhttps://www.imdb.com/name/nm5494768/B. KitsisBKBob KistisBob KitsieBob Kitsis (BK)Bolo KitsisPaul KitsisRobert KitsisTommy Dorsey And His OrchestraGene Krupa And His OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraRed Norvo And His OrchestraGeorgie Auld And His Orchestra + +313081Earl MillerAlto saxophonist from the Swing eraNeeds VoteEarl "Buddy" MillerBuddy Miller (3)Andy Kirk And His Clouds Of JoySix Men And A Girl + +313082Slick JonesWilmore Jones.American jazz drummer +Born April 13, 1907 in Roanoke, Virginia, died November 02, 1969 in New York City, New York + +Played with : Fletcher Henderson (1934-1936), Fats Waller (1936-1941), Don Redman, Lionel Hampton, Una Mae Carlisle, Stuff Smith, Eddie South, Claude Hopkins, Hazel Svott, Don Byas, Gene Sedric (1946-1954), Sidney Bechet, Sidney DeParis (1954-1955), Doc Cheatham, Eddie Durham, Eddie Barefield (late 1964). +Needs Votehttps://adp.library.ucsb.edu/names/116577"Slick" Jones'Slick' JonesEugene "Slick" JonesJonesS. JonesStick JonesW. JonesWilliam 'Slick' JonesWillmore "Slick" JonesWilmor "Slick" JonesWilmore "Sick" JonesWilmore "Slick" JonesWilmore "Slick" JonesWilmore "Slick" Jones,Wilmore "Slick" SedricWilmore 'Slick' JonesWilmore (Slick) JonesWilmore JonesWilmore Jones.« Slick » Jones“Slick" JonesFats Waller & His RhythmSidney Bechet And His Blue Note Jazz MenDon Byas QuartetDon Redman And His OrchestraGene Sedric & His OrchestraPutney Dandridge And His OrchestraEmmett Matthews And His OrchestraLittle Sam & OrchestraLloyds Phillips Trio + +313083Don WattAmerican jazz saxophonist and clarinetist.Needs VoteD. WattD. WattsWoody Herman And His OrchestraLarry Clinton And His OrchestraTed Weems And His OrchestraThe Band That Plays The Blues + +313084J.C. HeardJames Charles HeardAmerican jazz drummer. +Born August 10, 1917 in Dayton, Ohio, died September 27, 1988 in Royal Oak, Michigan + +J. C. worked with : Teddy Wilson, Erroll Garner, Coleman Hawkins, Benny Carter, Cab Calloway, Dizzy Gillespie, Lena Horne, Oscar Peterson, Lester Young, Charlie Parker and others.Needs Votehttps://en.wikipedia.org/wiki/J._C._Heardhttp://www.bluenote.com/artists/jc-heardhttps://adp.library.ucsb.edu/names/320583C. HeardH.C. HeardHeardI. C. HeardI.C. HeardJ C HeardJ-C. HeardJ. C. HardJ. C. HeardJ. C. HeardsJ. C. HerdJ. HeardJ.-C. HeardJ.C HeardJ.C.HeardJC HeardJCHJames 'J.C.' HeardJames C. HeardJames Charles HeardJames HeardJay C. HeardCab Calloway And His OrchestraThe Red Garland TrioDizzy Gillespie And His OrchestraBillie Holiday And Her OrchestraDizzy Gillespie SeptetTeddy Wilson And His OrchestraJ.C. Heard And His OrchestraTeddy Wilson TrioDon Byas QuartetRed Norvo And His Selected SextetIllinois Jacquet And His OrchestraColeman Hawkins And His OrchestraSidney Bechet And His New Orleans FeetwarmersSir Charles And His All StarsGeorge Treadwell And His All StarsHoward McGhee SextetLester Young QuintetTeddy Wilson OctetJohnny Hodges And His OrchestraRed Norvo All-StarsJames Moody SextetThe Ike Quebec Swing SevenThe Ike Quebec QuintetJoe Sample TrioPete Johnson And His BandTeddy Wilson And His All StarsTeddy Wilson SextetThe Roy Eldridge QuintetIke Quebec SwingtetMilt Hinton & His OrchestraBenny Carter QuintetBillie Holiday And Her Lads Of JoyJ.C. Heard QuintetThe Bernie Leighton QuintetColeman Hawkins Big BandWoody Herman's Four ChipsJonah Jones And His OrchestraJ. C. Heard OctetThe Flip Phillips-Howard McGhee BoptetOscar Peterson & FriendsJATP All StarsIllinois Jacquet QuintetTed Nash QuintetPete Brown's All-Star QuintetThe Nick Esposito SextetEarl Bostic's Gotham SextetThe Keynoters (5)Don Byas All Star Quartet + +313085John HarringtonJohn David Harrington.American jazz clarinetist and saxophonist. + +Born : May 23, 1910 in Denver, Colorado. +Died : September 28, 1989 in Denver, Colorado. + +John played (among others) with George Morrison, Terence +Holder, Andy Kirk ("Andy Kirk and his Clouds of Joy"), +Claude Hopkins. + +Needs Votehttps://www.allmusic.com/artist/john-harrington-mn0001507729https://adp.library.ucsb.edu/index.php/mastertalent/detail/204277/Harrington_JohnHarringtonJHAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraJohn Williams' Memphis Stompers + +313086Dick VanceRichard Thomas VanceUS jazz trumpeter, composer, born November 28, 1915 in Mayfield, Kentucky, died July or August 1985 in New York. + +Needs Votehttps://en.wikipedia.org/wiki/Dick_Vancehttps://nkaa.uky.edu/nkaa/items/show/1851https://www.radioswissjazz.ch/en/music-database/musician/573159ad5ff9f673678aea412ee7898fd88fb/biographyhttps://www.allmusic.com/artist/dick-vance-mn0000359702https://www.imdb.com/name/nm0888507/https://adp.library.ucsb.edu/names/109704D. VanceDVR. VanceRichard "Dick" VanceRichard T. VanceRichard VanceVanceDuke Ellington And His OrchestraFletcher Henderson And His OrchestraChick Webb And His OrchestraSy Oliver And His OrchestraElla Fitzgerald And Her Famous OrchestraHoward Biggs OrchestraThe International Jazz GroupFletcher Henderson SextetPaul Quinichette And His SwingtetteCyril Haynes SextetBilly Kyle's Big EightMary Lou Williams And Her SixAl Hall Quintet + +313087Jack SchaefferJazz trumpeterCorrecthttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=trumpeter+Jack+Schaeffer+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwie9K6phtbXAhUL8GMKHUhfDIIQ6AEIKjAA#v=onepage&q=trumpeter%20Jack%20Schaeffer%20%22The%20Big%20Bands%22&f=falseJack SchoefferJack ShaefferHarry James And His Orchestra + +313088Mike BryanMichael Neely Bryan.American jazz guitarist +Born August 09, 1916 in Byhalia, Mississippi, died August 20, 1972 in Los Angeles, California + +Played with : Benny Goodman, Bob Chester, Jan Savitt, Artie Shaw among othersNeeds Votehttps://en.wikipedia.org/wiki/Mike_Bryan_(musician)https://www.allmusic.com/artist/mike-bryan-mn0000581499BryanM ByranM. BryanMichael BryanMike BrianMike Bryan (As 'Lord Byron')Mike ByranMike MryanLord Byron (13)Red Nichols And His Five PenniesArtie Shaw And His OrchestraClyde Hart All StarsBenny Goodman And His OrchestraRed Nichols And His OrchestraMel Powell And His OrchestraMike Bryan And His SextetDizzy Gillespie All StarsTrummy Young All StarsThe Tom Talbert Jazz OrchestraThe V-Disc JumpersVanderbilt All Stars + +313090Chuck PetersonCharles G. PetersonAmerican jazz trumpeter, born 1915 in Detroit, died January 21, 1978 in Allen Park, Michigan. +Became a member of Artie Shaw's band in 1937, played with Tony Pastor 1939–1941, Tommy Dorsey 1939–1942 and Woody Herman 1941–1942. +Married singer [a=Kay Foster] in 1942.Needs VoteC. PetersonC.G. PetersonCPCharles "Chuck" PetersonCharles PetersonCharles Peterson (CP)Charlie PetersonChuck PeterschChuck PetersenChuck PetrsonPetersonTweet PetersonTommy Dorsey And His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraWoody Herman & The HerdGeorgie Auld And His OrchestraAlvino Rey And His OrchestraThe Band That Plays The Blues + +313092Carl FryeAmerican jazz alto saxophonist and clarinetist, born April 22, 1907 in Boston, Massachusetts. + +Needs VoteC. FryeBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraBenny Carter And His OrchestraDon Redman And His Orchestra + +313093Wesley PrinceClarence Wesley PrinceAmerican jazz bassist, born April 8, 1907 in Pasadena, California, died October 30, 1980 in Los Angeles, California. +Prince played with Lionel Hampton, Nat King Cole, Charles Brown and others. +He also recorded a rhythm & blues session for Excelsior in Los Angeles in 1946, featuring vocals by [a=Harold Grant (2)] (released as by Wes Prince & his Rhythm Princes). +Needs Votehttps://en.wikipedia.org/wiki/Wesley_Princehttps://adp.library.ucsb.edu/names/106528PrinceW, PrinceW. PrinceWes PrinceWesley PriceLionel Hampton And His OrchestraThe Nat King Cole TrioKing Perry & His Pied PipersCharles Brown TrioWes Prince And His Rhythm PrincesCharles Brown And His Smarties + +313095Dan MinorAmerican jazz trombonist, nicknamed "Slamfoot", born August 10, 1909 in Dallas, Texas, died April 11, 1982 in New York City, New York. +Minor worked with the Blue Moon Chasers (1926), [a272615] (1927-1929), Ben Smith's Blue Syncopators, Earl Dykes, Gene Coy's Black Aces, [a6181488], [a2736124] (1931), [a311057] (1931-1935), [a145262] (1936-1941), [a624918] (1942-1944), [a253474], [a323069] (1945), [a311059], [a1202048].Needs Votehttps://en.wikipedia.org/wiki/Dan_Minorhttps://www.tshaonline.org/handbook/entries/minor-dan-slamfoothttp://www.trombone-usa.com/minor_dan_bio.htmhttps://www.allmusic.com/artist/dan-minor-mn0000089877/biography?cmpredirecthttps://peoplepill.com/people/dan-minor/https://adp.library.ucsb.edu/names/109222C. MinorD. MinorDon MinorDonald MinorMinerMinorCount Basie OrchestraBennie Moten's Kansas City OrchestraCount Basie BandThe New Orleans FeetwarmersBasie's Bad BoysWalter Page's Blue Devils + +313096Skip MartinLloyd MartinAmerican jazz saxophonist, clarinetist, and music arranger. + +[b]For [a=Kool & The Gang] & [a=Dazz Band] lead vocalist/trumpeter, use [a=Skip Martin (2)][/b] + +Born May 14, 1916 in Robinson, Illinois, USA. +Died February 12, 1976, Los Angeles, California, USA. + +At the age of seventeen, Martin played clarinet in the Indianapolis Symphony. With a strong love of jazz, he headed to the west coast. Skip played sax with Glenn Miller, Benny Goodman, and Charlie Barnett. His first arranging jobs were for Count Basie. After an NBC staff berth in New York, Skip moved to Hollywood where he worked on several films and TV shows.Needs Votehttp://en.wikipedia.org/wiki/Skip_Martinhttps://www.imdb.com/name/nm0553073/https://adp.library.ucsb.edu/names/110930https://adp.library.ucsb.edu/names/357294Arranged And Conducted By Skip MartinL. S. MartinLloyd "Skip" MartinLloyd "Skippy" MartinLloyd 'Skip' MartinLloyd MartinLloyd V. "Skip" MartinMartinS. MartinShip MartinSkip MarrSkippy MartinCharlie Barnet And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraSkip Martin And His OrchestraSkip Martin And His ProhibitionistsCootie Williams Septet + +313097Harry James (2)Harry Haag JamesAmerican jazz trumpeter who came to fame mainly through playing with [a=Benny Goodman], then struck out on his own as a band leader at the age of 23. Played his last show just nine days before his death. + +Born March 15, 1916, Albany, Georgia, USA, died July 5, 1983, Las Vegas, Nevada, USA.Needs Votehttps://web.archive.org/web/20210210203326/http://www.harryjamesband.com/https://en.wikipedia.org/wiki/Harry_Jameshttps://www.imdb.com/name/nm0416548/https://www.britannica.com/biography/Harry-Jameshttps://adp.library.ucsb.edu/names/103347-H. JamesH.JamesHJHamesHarryHarry Haag JamesHarry Hagg JamesHarry JamesHarry James, His Trumpet And OrchestraHary JamesJ. JamesJainesJamesJames HarryRayelГ. ДжеймсГарри ДжеймсДжеймсハリー・ジェイムスハリー・ジェームスHarry James And His OrchestraMetronome All StarsTeddy Wilson And His OrchestraBen Pollack And His OrchestraBenny Goodman And His OrchestraTeddy Wilson QuartetThe Harry James QuintetHarry James & His Music MakersHarry James And His Big BandHarry James And The Rhythm SectionHarry James And His SeptetHarry James & His SextetAll Star Band (4)Harry James OctetHarry James Small GroupMetronome All-Star BandBenny Goodman And HIS All StarsHarry James And His Western FriendsJam Session All-StarsThe Dean And His KidsBenny Goodman Jam SessionHarry James And His Boogie-Woogie Trio + +313098Sonny WhiteEllerton Oswald WhiteAmerican jazz pianist. +Born: November 17, 1917 in Panama City, Panama. +Died: April 28, 1971 in New York City, New York. +Worked with Jesse Stone (1936-1937), Willie Bryant (1937-1938), Sidney Bechet, Teddy Hill (1938), Frankie Newton (1939), Billie Holiday (1939-1940), Benny Carter (1940, 1946), Artie Shaw (1941) and many others.Needs Votehttps://en.wikipedia.org/wiki/Sonny_Whitehttps://www.allmusic.com/artist/sonny-white-mn0000755879/biographyhttps://adp.library.ucsb.edu/names/110115S. WhiteSunny WhiteWhiteBillie Holiday And Her OrchestraArtie Shaw And His OrchestraBenny Carter And His OrchestraMezz Mezzrow And His OrchestraSidney Bechet And His New Orleans FeetwarmersFrank Newton And His OrchestraWilbur De Paris And His New New Orleans JazzBenny Carter QuintetBenny Carter & His Chocolate DandiesBenny Carter And His All Stars + +313100Wilbur De ParisWilbur de ParisAmerican jazz trombonist and bandleader, born January 11, 1900, Crawfordsville, Indiana, USA, died January 3, 1973. +Brother of [a=Sidney De Paris].Needs Votehttps://en.wikipedia.org/wiki/Wilbur_de_Parishttps://www.allmusic.com/artist/wilbur-de-paris-mn0000211161https://adp.library.ucsb.edu/names/106325De ParisDeParisParisVilbur De ParisW de ParisW. De ParisW. DeParisW. de ParisW.De ParisWilber De ParisWilber DeParisWilburWilbur De Paris & His MusicWilbur DeParisWilbur DeparisWilbur de ParisWilbur deParisWilbur-De ParisWilbyr De ParisWildur De Parisde ParisУ. Де Парисオマー・シメオンとウィルバー・ド・パリス楽団Duke Ellington And His OrchestraLouis Armstrong And His OrchestraJelly Roll Morton's Red Hot PeppersWilbur De Paris And His OrchestraWilbur De Paris And His New Orleans Jazz BandSpike Hughes And His Negro OrchestraSidney Bechet And His New Orleans FeetwarmersWilbur De Paris And His New New Orleans JazzSidney Bechet & His All Star BandSidney Bechet & His Circle SevenClarence Williams' Jazz KingsSidney Bechet's SevenDe Paris Brothers OrchestraWilbur De Paris And His Rampart Street RamblersGeorge Wettling And His Rhythm KingsWilbur De Paris SeptetDave Nelson And The King's MenDave's Harlem Highlights + +313102Pete PetersonSwing bass player.Needs VoteP. PetersonPete Peterson & His Orch.PetersonBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraBud Freeman's Summa Cum Laude OrchestraRed Norvo And His OrchestraMildred Bailey And Her OrchestraGene Gifford And His OrchestraThe Vagabonds (8)Red McKenzie And His Rhythm Kings + +313103Al PhilburnMichael Aloysius Philburn US-American trombone player, active on the East Coast jazz scene from the 1920s on with a number of bands and studio sessions, best remembered for his solo on “Bye Bye Blues”. Born 24 August 1902 in Newark, died 29 February 1972 in Glen Cove, Long Island, Nassau, USA.Needs Votehttps://www.allmusic.com/artist/al-philburn-mn0000983452/creditsA. PhilburnPhilburnLouis Armstrong And His OrchestraWill Bradley And His OrchestraPaul Specht And His OrchestraRed McKenzie And His Rhythm Kings + +313104Thurman TeagueAmerican jazz bassist. +Thurman worked, among others with Jack Goss, Ben Pollack, +Vincent Lopez, Frank Sinatra and Harry James (late 1930s - mid 1940s). + +Born : 1910 in Illinois. +Died : ?Correcthttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=bassist+Thurman+Teague+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwiSosTsj9bXAhXHq1QKHToUCiEQ6AEIKDAA#v=onepage&q=bassist%20Thurman%20Teague%20%22The%20Big%20Bands%22&f=falseTeagueThurman LeagueHarry James And His OrchestraHarry James & His Music Makers + +313107Bernard AndersonBernard Hartwell Anderson.American jazz trumpeter and pianist, nicknamed "Buddy". +Played with : Leslie Sheffield, [a274433], [a311744] among others. + +Born : October 14, 1919 in Oklahoma City, Oklahoma. +Died : May 10, 1997 in Kansas City, Missouri. +Needs Votehttps://en.wikipedia.org/wiki/Bernard_Andersonhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/301397/Anderson_Bernardhttps://www.allmusic.com/artist/bernard-anderson-mn0001210432AndersonB. AndersonBernard "Buddy" AndersonBuddy AndersonBillie Holiday And Her OrchestraJay McShann And His Orchestra + +313108The Red Onion Jazz BabiesThe Red Onion Jazz Babies sessions (created by the [l=Gennett] label) were organized by [a=Clarence Williams] and featured [a=Lil Hardin-Armstrong], who had come east to be near her husband Louis who had just joined [a=Fletcher Henderson And His Orchestra] the month before. The sessions are also famous for bringing [a=Sidney Bechet] and [a=Louis Armstrong] together for the first time on record. +The group never toured officially and recorded together only four times. They recorded in New York from 1924-1925.Needs Votehttp://en.wikipedia.org/wiki/Red_Onion_Jazz_Babieshttp://www.redhotjazz.com/redonion.htmlClarence Williams Blue FiveRed Onion Jazz BabiesRed Onion's Jazz BabiesThe Red Onion BabiesThe Red Onion Jazz BabysLouis ArmstrongBuster BaileyBuddy ChristianCharlie IrvisLil Hardin-ArmstrongAaron Thompson + +313110Claude WilliamsClaude Gabriel WilliamsAmerican jazz guitarist, violinist, singer, arranger and producer. +He played with : Terence Holder, Andy Kirk, Alphonse Trent, George E. Lee, Chick Stevens, Nat "King" Cole, Count Basie, "Four Shades of Rhythm", Jay McShann and many others. + +Born : February 22, 1908 in Muskogee, Oklahoma, USA +Died : April 25, 2004 in Kansas City, Missouri, USA + +Not to be confused with [a=Claude Williams (2)], a trumpet player and also a producer.Needs Votehttps://en.wikipedia.org/wiki/Claude_Williams_(musician)https://adp.library.ucsb.edu/names/211036C. WilliamsClaude " Fiddler" WilliamsClaude "Fiddler" WilliamsClaude Fiddler WilliamsClaude G. WilliamsCount Basie OrchestraAndy Kirk And His Clouds Of JoyJohn Williams' Memphis StompersFrankfurt Swing All StarsClaude Williams' Kansas City GiantsClaude Williams Quintet + +313112Tony PastorAnthony Pestritto.American bandleader, singer, and tenor saxophonist, born October 26, 1907 in Middletown, Connecticut, died October 31, 1969 in Old Lyme, Connecticut. +Tenor sax soloist and singer with [a=Artie Shaw] 1936-1940, then formed own band, which was disbanded in 1959. Formed smaller group with his two sons with which he performed until retiring in 1968.Needs Votehttps://en.wikipedia.org/wiki/Tony_Pastor_(bandleader)https://adp.library.ucsb.edu/names/103834PastorT. PasteurT. PastorTonyTony PasteurTony Pastor And His OrchestraTony Pastor, Sr.Тони ПэсторArtie Shaw And His OrchestraTony Pastor And His OrchestraGeorgie Auld And His OrchestraIrving Aaronson And His CommandersThe Tony Pastor ShowTony Pastor Vocal GroupArt Shaw And His New MusicTony Pastor And His All Star BandTony Pastor And His Band + +313113Hurley RameyBlues/Jazz guitarist from ChicagoCorrecthttps://www.allmusic.com/artist/hurley-ramey-mn0001267057H. RameyEarl Hines And His OrchestraThree Bits Of RhythmLaura Rucker And Her Swing BoysPrince Cooper Trio + +313116Gene TraxlerAmerican jazz bassist. +Born : June 28, 1913 in Chambersburg, Pennsylvania. + +Worked with : Tommy Dorsey, Benny Goodman, Bunny Berigan, Joe Haymes, Frank Sinatra, Bud Freeman, Bill Coleman, among others. + + +Needs VoteE. TraxlerFrank TraxlerG. TraxlerG. TrexlerGTGene TraxierGene Traxler (GT)Gene TraylerTraxlerTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenBenny Goodman And His OrchestraCalifornia RamblersAlvino Rey And His OrchestraJoe Marsala & His Delta FourJoe Haymes & His Orchestra + +313117Harry GellerHarold Max SitkovetskyCanadian-born trumpeter, conductor, arranger and bandleader. +Born July 7, 1913 in Winnipeg, Manitoba, Canada +Died February 15, 2008 (94 years of age). Father of the screenwriter Stephen Geller. + +[b]For Australian composer and bandleader, refer to [a288970][/b]. + +He was an arranger for Benny Goodman and Artie Shaw. He was lead trumpet in Artie Shaw's first big band. He wrote much uncredited music in Paris during the blacklisting days. He was an A&R guy for RCA for several years, then went to Capitol, then toured with the Ames Bros. +He was known as the collaborator of CBS music department head and composer Morton Stevens on TV series like "Gunsmoke", "The Wild Wild West" and "Hawaii Five-O". He also worked for producer Irwin Allen on shows such as "Voyage to the Bottom of the Sea" and "Lands of the Giants". Needs Votehttps://www.filmscoremonthly.com/board/posts.cfm?threadID=51212&forumID=1&archive=0https://www.imdb.com/name/nm0312380/GellerH. GellerH. GellisHarry GellarHenry GellerThe Fiery Mandolins Of Harry GellerThe Harry Geller QuartetArtie Shaw And His OrchestraBenny Goodman And His OrchestraHarry Geller And His Orchestra + +313118Earle WarrenEarl Ronald WarrenAmerican alto jazz saxophonist, born 1 July 1914 in Springfield, Ohio, died 4 June 1994 in Springfield, Ohio. + +Needs Votehttps://en.wikipedia.org/wiki/Earle_Warrenhttps://www.allmusic.com/artist/earle-warren-mn0000160718/creditshttps://secondhandsongs.com/work/161067/allhttps://www.radioswissjazz.ch/en/music-database/musician/14134b0432e2c195c075877c0ab9f9a11b9af/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/210789/Warren_EarlE. WarrenEarl WarrenEarl warrenEarle WarenEarle Warren & The Count's MenEarle Warren And The Count's MenEarlke WarrenWarenWarrenアール・ワーレンCount Basie OrchestraHarry James And His OrchestraBillie Holiday And Her OrchestraBuddy Rich And His OrchestraCount Basie BandLionel Hampton And His All-Star Alumni Big BandFrank Newton And His OrchestraBuck Clayton With His All-StarsRay Brown All-Star Big BandMilt Jackson OrchestraThe Buck Clayton SeptetEarle Warren OrchestraHenry "Red" Allen's All StarsJimmy Rushing And His OrchestraAllstars (11)"Hot Lips" Page SextetHot Lips Page And His BandJam Session At The Riverside + +313120Johnny MinceJohn MuenzbergerAmerican swing clarinetist and saxophonist, born 8 July 1912 in Chicago Heights, Illinois, USA, died in 1997. +Needs Votehttps://adp.library.ucsb.edu/names/107200BJJ MinceJ. MinceJ. MintzJMJimmy MinceJohn H. MinceJohn MinceJohn MuenzenbergerJohnny Mince (JM)Johnny Mince (Mintz)Johnny MintzMinceTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenFrankie Trumbauer And His OrchestraGlenn Miller And His OrchestraThe New Music Of Reginald ForesytheRay Noble And His OrchestraSy Oliver And His OrchestraTommy Dorsey And His SentimentalistsThe World's Greatest JazzbandAll Star Alumni OrchestraGeorge Brunies And His Jazz BandRed Norvo & His Swing Octet + +313121Herbert MillsJazz vocalist +Born 2 April 1912 in Piqua, Ohio, USA +Died 12 April 1989 in Las Vegas, Nevada, USA + +One of [a=The Mills Brothers] vocal group (with [a=Donald Mills], [a=Harry Mills], and [a=John Mills]).Correcthttps://www.imdb.com/name/nm0590025/bio?ref_=nm_ov_bio_smHerbertThe Mills Brothers + +313122Edwin WilcoxEdwin Felix Wilcox.American jazz pianist, bandleader and arranger. +Born : December 27, 1907 in Method, North Carolina. +Died : September 29, 1968 in New York City, New York. + +Edwin was for many years pianist and arranger for “[a317906]”, after the Lunceford’s death (1947), Wilcox was co-leader of the orchestra with tenor saxophonist Joe Thomas and bandleader ‘solo’ in 1949. +Needs Votehttps://en.wikipedia.org/wiki/Eddie_Wilcoxhttps://www.allmusic.com/artist/edwin-wilcox-mn0000146812/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/211013/Wilcox_EdwinE. S. WilcoxE. WilcoxEWEd WilcoxEddie WilcoxEdwin F. WilcoxEdwin S. WilcoxM. WilcoxWilcoxJimmie Lunceford And His OrchestraEddie Wilcox & His Orchestra + +313124Jimmy CrawfordJames Strickland CrawfordAmerican jazz drummer. +Born : January 14, 1910 in Memphis, Tennessee. +Died :January 28,1980 in New York City, New York. + +He worked with [a311058] (1928-1942), [a31615], [a64694], [a145262], [a258007], [a164571], [a254768], [a52833] and others.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Crawford_(drummer)https://www.radioswissjazz.ch/en/music-database/musician/13923e8277b2f63389d0d9edf6b13012ea4d5/biographyhttps://adp.library.ucsb.edu/names/107245CrawfordJ. CrawfordJames "Jim Due" CrawfordJames "Jimmy" CrawfordJames "The Craw" CrawfordJames CrawfordJames CrowfordJamesCrawfordJim CrawfordJimmie CrawfordJimmy CrawfbtdJimmy GrawfordPfc. Jimmy Crawfordジミー・クロフォードQuincy Jones And His OrchestraThe Lou Stein TrioThe Golden Gate QuartetJimmie Lunceford And His OrchestraIllinois Jacquet And His OrchestraSy Oliver And His OrchestraMezz Mezzrow And His OrchestraThe Mel Powell SeptetEarl Hines And His BoysTrummy Young And The Guys From V-DiscsEdmond Hall's All-StarsBuck Clayton's Big EightGeorge Williams And His OrchestraEdmond Hall And His OrchestraThe Quincy Jones Big BandThe Elmer Snowden QuartetAndy Gibson And His OrchestraDickie Wells' Big SevenBobby Tucker TrioThe Fletcher Henderson All StarsHarry Carney's Big EightFletcher Henderson SextetClaude Hopkins All StarsThe Ellis Larkins OrchestraUrbie Green And His All-StarsJimmy Crawford And His OrchestraBrick Fleagle's RhythmakersPunch Miller Jazzband + +313126Claude ThornhillAmerican pianist, arranger, composer, and bandleader. +Born August 10, 1908, Terre Haute, Indiana, USA. Died July 1, 1965, Caldwell, New Jersey, USA. Married to [a=Ruth Thornhill], who wrote the lyrics to their song "Snowfall". +Thornhill composed the jazz and pop standards "Snowfall" and "I Wish I Had You". His orchestra charted three times and he charted twice as a songwriter (1938-1951). His top hit with his orchestra was "Snowfall", which hit #20 in the U.S. in 1941. "Autumn Nocturne" also landed at #20 for the group in 1941. His top songwriting song was "Fare Thee Well, Annie Laurie" by Gene Krupa and His Orchestra in 1938. It was co-written by Benny Krueger & Mitchell Parish. +Thornhill collaborated often with arranger [a=Gil Evans].Needs Votehttp://en.wikipedia.org/wiki/Claude_Thornhillhttp://www.bigbandlibrary.com/claudethornhill.htmlhttps://www.hepjazz.com/hep_jazz_artist_biographies/claude_thornhill.htmlhttps://www.imdb.com/name/nm1033127/https://adp.library.ucsb.edu/names/104317https://adp.library.ucsb.edu/names/104318C & R ThornhillC. ThomhillC. ThonhillC. ThornhillC.ThornhillClaudeClaude ThornbillClaude Thornhill PianistClaude Thornhill With Rhythm Acc.Claude ThornillClause ThornhillThernhillThomhillThornhillThornhill, ClaudeTornhillBillie Holiday And Her OrchestraGlenn Miller And His OrchestraClaude Thornhill And His OrchestraRay Noble And His OrchestraRuss Morgan And His OrchestraLouis Prima & His New Orleans GangSkinnay Ennis And His OrchestraLou Bring And His OrchestraBud Freeman And His Windy City FiveGene Gifford And His Orchestra + +313127Dalton RizzottoAmerican jazz trombonist.Needs VoteDalton RizottoDalton RizzotoDalton RizzottiRizzottoHarry James And His OrchestraHarry James & His Music Makers + +313128Jean EldridgeJean I. EldridgeVocalist and pianist from Pittsburgh, Pennsylvania, who performed with various orchestras in the 1930s and 1940s, including those of [a=Duke Ellington], [a=Johnny Hodges], [a=Earl Hines], and [a=Teddy Wilson]. + +Born: ca. 1916 in Pittsburgh, Pennsylvania, USANeeds VoteJETeddy Wilson And His OrchestraJohnny Hodges And His Orchestra + +313129Gus AikenAugustine Aiken.American jazz trumpeter (born July 26, 1902 in Charleston, South Carolina - died April 01, 1973 in New York City). +Needs Votehttps://en.wikipedia.org/wiki/Gus_Aikenhttps://adp.library.ucsb.edu/names/200089AikenG. AikenGus "Rice" AikenGus AitkenGus HaikenLouis Armstrong And His OrchestraRoy Eldridge And His OrchestraLuis Russell And His OrchestraSidney Bechet And His New Orleans FeetwarmersPerry Bradford Jazz PhoolsCharlie Johnson & His OrchestraEliza Christmas Lee And Her Jazz BandEthel Waters And The Jazz MastersDaisy Martin And Her Jazz Bell Hops + +313130Oliver ColemanUS jazz drummer.Needs VoteOliver ColmonEarl Hines And His OrchestraWillie Mabon And His Combo + +313134O'Neil SpencerWilliam O'Neil Spencer.US American jazz drummer, born 25 November 1909 in Cedarville, Ohio, died as a result of contracted tuberculosis on 24 July 1944 in New York City. +He started his career with local bands in the Buffalo and NY area and joined [a1678805] in 1931, becoming the first-class swing drummer from the [a313040] school of drumming and superb brush player he was. After joining the [a311732] in 1937 he became an influential force on the jazz scene.Needs Votehttps://en.wikipedia.org/wiki/O%27Neill_Spencerhttps://vinniesperrazza.substack.com/p/is-oneil-spencer-the-first-singinghttps://www.allmusic.com/artist/oneill-spencer-mn0000651551https://adp.library.ucsb.edu/names/107086O Neil SpencerO' Neil SpencerO'-Neil SpencerO'N. SpencerO'NSO'Neal SpencerO'Neill SpencerO'Nell SpencerOneal SpencerSpencerSpencer O'NeilSpencer O'NeillJohn Kirby And His OrchestraJohn Kirby SextetJohn Kirby And His Onyx Club BoysBaron Lee And The Blue Rhythm BandThe Harlem Blues SerenadersLil Armstrong And Her Swing BandMildred Bailey And Her OrchestraHenry "Red" Allen And His OrchestraThe Mills Blue Rhythm BandBuster Bailey's Rhythm BustersMilt Herth QuartetJimmie Noone And His OrchestraJerry Kruger & Her Knights Of RhythmJohnny Dodds And His Chicago BoysSam Price And His Texas BlusiciansMilt Herth TrioThe Spencer TrioBuster Bailey SextetJack Sneed And His SneezersO'Neil Spencer & His Trio + +313135Paul WebsterPaul Francis WebsterAmerican jazz trumpeter, born August 24, 1909 in Kansas City, Missouri, died May 6, 1966 in New York City, New York. + +[b] For the writer of numerous songs, use [a=Paul Francis Webster][/b] + +Webster worked with [a2736122] (1927), [a311057] (1927-1928), [a332334], Eli Rice, [a311058] (1931 and 1935-1944), [a269594] (1946-1947 and 1952-1953), [a258007] (1947), [a253474] (1948-1949), [a313122] (1948-1949), [a145262] (1950), [a76111] and many others. +Needs Votehttps://en.wikipedia.org/wiki/Paul_Webster_(jazz)https://www.allmusic.com/artist/paul-webster-mn0000035874https://peoplepill.com/people/paul-webster/https://adp.library.ucsb.edu/names/210846P. WebsterPaul Francis WebsterPaul WebstersPaul WesbsterWebsterCab Calloway And His OrchestraCount Basie OrchestraBennie Moten's Kansas City OrchestraJimmie Lunceford And His OrchestraCharlie Barnet And His OrchestraSy Oliver And His Orchestra + +313138Edward FantJazz trombonist.Needs VoteE. FantEd FantEdwart FantEarl Hines And His Orchestra + +313140Ralph HawkinsJazz drummer + +For the late 80's soul songwriter - producer please use [a=Ralph Hawkins, Jr.]. +Needs Votehttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=drummer+Ralph+Hawkins+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwjPxJ3rkNbXAhXnlVQKHRJXCT0Q6AEIKDAA#v=onepage&q=drummer%20Ralph%20Hawkins%20%22The%20Big%20Bands%22&f=falseHarry James And His OrchestraGeorgie Auld And His Orchestra + +313142Alec FilaAlexander FilaAmerican jazz and big band trumpeter. +Born January 29, 1921 in Passaic, New Jersey, USA. +Died December 31, 2001 in New York City, New York, USA. +Married to singer [a=Dolores O'Neill] (1941-1949, divorced). +Alec played with : Jack Teagarden, Bob Chester, Benny Goodman, Will Bradley, Glenn Miller, Ray McKinley, Elliott Lawrence and others. +In high school, Fila won a four-year Guggenheim scholarship to study at Juilliard (afternoons and Saturdays) under New York Philharmonic trumpeter Max Schlossberg. In 1939 Jack Teagarden, rehearsing his band at Juilliard, recruited Alec to fill in as lead trumpet–then promptly hired him for his band.Needs Votehttps://www.local802afm.org/allegro/articles/the-musicians-voice-25/https://www.facebook.com/p/Alec-Fila-100067201430954/https://www.legacy.com/us/obituaries/northjersey/name/alec-fila-obituary?id=29275080https://adp.library.ucsb.edu/names/116170A. FilaAblex FilaAlex FilaFilaGlenn Miller And His OrchestraBenny Goodman And His OrchestraBob Chester And His Orchestra + +313144Bingie MadisonBingie "Stilgo" Madison (Born 12 October 1901, Des Moines, Iowa, USA - died July 1978 in New York City, New York, USA) was an American jazz tenor saxophonist, clarinetist and pianist. +Early in his career he played piano. He formed his own band in 1926, but in the early 1930s joined Luis Russell, whose band began accompanying Louis Armstrong and recorded under the latter's name from 1935. Madison stayed until 1940, then playing with Edgar Hayes, a.o., recording with Hank Duncan's trio in 1944, and leading his own small band. +He played with many artists and orchestras including: [a=Bobby Brown (2)] (1921/22, August 1922 to 1925), Bernie Davis, [a348886], Lew Henry (? to 1930) , [a669268], [a902270], [a311059], [a1563934], [a1678805] and [a373807].Needs Votehttps://en.wikipedia.org/wiki/Bingie_Madisonhttps://www.swingfm.asso.fr/html/biographies/saxs%20tenors/Madison%20Bingie.htmhttps://www.allmusic.com/artist/bingie-madison-mn0001482439https://adp.library.ucsb.edu/names/106088B. MadisonBingle MadisonBingy MadisonMadisonLouis Armstrong And His OrchestraLuis Russell And His OrchestraClarence Williams' Jazz KingsThe Mills Blue Rhythm BandJimmy Johnson And His OrchestraHank Duncan Trio + +313146Booker CollinsAmerican jazz bassist, valve trombone, and tuba player. +Booker played with (among others) Mary Lou Williams, Bat Brown, Bert Johnson, Andy Kirk, and Floyd Smith. + +Born : June 21, 1914 in Roswell, New Mexico. +Died : ?Needs Votehttps://www.allmusic.com/artist/booker-collins-mn0001465430/biographyBooker T. CollinsAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraMary Lou Williams And Her Kansas City SevenSix Men And A Girl + +313147Nan WynnMasha VatzAmerican big-band singer, Broadway & film actress, active from mid-1930s to mid-1950s. + +Wynn worked with [a=Teddy Wilson], [a=Hal Kemp And His Orchestra], Freddie Rich, and [a=Raymond Scott] to name a few. She had also her own radio show and appeared in several films. She was one of several women who dubbed Rita Hayworth's singing voice. She also was a vaudevillian and radio singer. + +Born: May 8, 1918 in Johnstown, Pennsylvania (USA) +Died: March 21, 1971 in Santa Monica, California (USA)Needs Votehttps://en.wikipedia.org/wiki/Nan_Wynnhttps://bandchirps.com/artist/nan-wynn/https://www.imdb.com/name/nm0943988/https://adp.library.ucsb.edu/names/104996N. WynnNan WynNan Wynn And GirlsWynnTeddy Wilson And His OrchestraHudson-DeLange OrchestraRaymond Scott And His New OrchestraNan Wynn And Her Orchestra + +313150Pee Wee ErwinGeorge ErwinAmerican jazz trumpeter. + +Born: May 30, 1913, Falls City, Nebraska, USA +Died: June 20, 1981, Teaneck, New Jersey, USA + +Erwin started on trumpet at age four. He led his own big band in 1941-42 and 1946. In the 1950s he played Dixieland jazz in New Orleans, and in the 1960s formed his own trumpet school with Chris GriffinNeeds Votehttp://en.wikipedia.org/wiki/Pee_Wee_Erwinhttps://www.allmusic.com/artist/pee-wee-erwin-mn0000301789/biographyhttps://www.nytimes.com/1981/06/21/obituaries/pee-wee-ervin-68-jazz-trumpet-player-with-goodman-band.htmlhttps://adp.library.ucsb.edu/names/105304"Pee Wee" Erwin"Pee Wee" IrwinErwinG. IrwinGeorge "Pee Wee" ErwinGeorge "PeeWee" ErwinGeorge ErwinGeorge Erwin (Pee Wee)IrwinP. ErwinP. IrwinP.W. ErwinPIPee WeePee Wee IrvinPee Wee IrwinPee Wee Irwin (PI)Pee-Wee ErwinPeeWee ErwinPeewee ErvinPeewee Erwin"Big Jeb" DooleyEnoch Light And The Light BrigadeTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenFrankie Trumbauer And His OrchestraRay Noble And His OrchestraBenny Goodman And His OrchestraThe Command All-StarsIsham Jones OrchestraLos AdmiradoresHenry "Red" Allen And His OrchestraPee Wee Erwin And His Dixieland All-StarsAll Star Alumni OrchestraBrick Fleagle And His OrchestraPee Wee Erwin's Dixieland EightSandy Williams Big EightThe Six Blue ChipsLeonard Gaskin DixielandersPee Wee Erwin's JazzbandPee Wee Erwin's Dixieland BandPee Wee Erwin And The Village FivePee Wee Erwin Sextet + +313151Cootie Williams & His Rug CuttersNeeds Vote"Cootie" Williams & His Rug CuttersCollie Williams And His Rug CuttersCootie WilliamsCootie Williams & Rug CuttersCootie Williams And His Rug CuttersCootie Williams And His RugcuttersDuke Ellington's SeptetDuke EllingtonJohnny HodgesBilly StrayhornCootie WilliamsHarry CarneyJuan TizolJoe NantonSonny GreerOtto HardwickFred GuyBarney BigardHayes AlvisBilly Taylor Sr.Jimmy BlantonScat Powell + +313152Les JenkinsTrombonistNeeds VoteGeorge JenkinsJenkinsL. JenkinsL. JenkisLJLee JenkinsLen JenkinsLes Jenkins (LJ)Tommy Dorsey And His OrchestraArtie Shaw And His OrchestraJess Stacy All Stars + +313153Donald MillsDonald Friederlich MillsJazz vocalist +Born: 29th April 1915, Piqua, Ohio, USA +Died: 13th November 1999 + +Youngest brother of the [a=The Mills Brothers] quartet.CorrectD. MillsDon MillsDonaldMillsThe Mills Brothers + +313155George WashingtonGeorge T. Washington.American jazz trombonist. +Born : October 18, 1907 in Brunswick, Georgia. +Died : ?. + + +Played with : Don Redman, Benny Carter, Spike Hughes, "Mills Blue Rhythm Band", Red Allen, Fletcher Henderson, Louis Armstrong and others. + +Needs Votehttps://en.wikipedia.org/wiki/George_Washington_(trombonist)https://adp.library.ucsb.edu/names/350114G. WashingtonGeo. WashingtonWashingtonLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraBenny Carter And His OrchestraSpike Hughes And His Negro OrchestraJohnny Otis And His OrchestraBaron Lee And The Blue Rhythm BandHenry "Red" Allen And His OrchestraThe Mills Blue Rhythm BandWilbert Baranco OrchestraWilbert Baranco And His Rhythm BombardiersJack Surrell Trio + +313156Charlie HolmesAmerican jazz saxophonist (alto and soprano), oboist, clarinetist and flutist. + +Born : January 27, 1910 in Boston, Massachusetts. +Died : September 19, 1985 in Sloughton, Massachusetts. + +Charlie worked with [a307366], [a1678805], [a258700], [a258696], [a309984], [a38201] and others.Needs Votehttps://en.wikipedia.org/wiki/Charlie_Holmeshttps://www.allmusic.com/artist/charlie-holmes-mn0000208567/creditshttp://www.jazzarcheology.com/artists/charlie_holmes.pdfhttps://adp.library.ucsb.edu/names/110885? Charlie HolmesC. HolmesCh. HolmesCharles HolmesCharley HolmesCharlie HolmsCharlie HomesHolmesLouis Armstrong And His OrchestraLouis Armstrong And His Savoy Ballroom FiveCootie Williams And His OrchestraKing Oliver & His OrchestraLuis Russell And His OrchestraFats Waller And His BuddiesBaron Lee And The Blue Rhythm BandHenry "Red" Allen And His OrchestraThe Mills Blue Rhythm BandThe Harlem Blues & Jazz BandJimmy Johnson And His OrchestraFowler's FavoritesPutney Dandridge And His OrchestraJasper Davis & His OrchestraThe Al Sears All Stars + +313157Earl CarruthersEarl Malcolm Caruthers SrAmerican jazz saxophonist. +Nickname : "Jock". + +Born : May 27, 1910 in Muldon, Mississippi. +Died : April 05, 1971 in Kansas City, Kansas. +Needs Votehttps://en.wikipedia.org/wiki/Earl_Carruthershttps://www.allmusic.com/artist/earl-jock-carruthers-mn0002048066https://adp.library.ucsb.edu/names/201614CarruthersE. "Jock" CarruthersEarl "Jack" CarruthersEarl "Joc" CarruthersEarl "Jock" CarruthersEarl (Jock) CarruthersEarl CarrothersEarl CaruthersJoc CarruthersJimmie Lunceford And His Orchestra + +313159Al HallAlfred Wesley HallAmerican jazz bassist +Born March 08, 1915 in Jacksonville, Florida, died January 18, 1988 in New York City, New York +Needs Votehttps://en.wikipedia.org/wiki/Al_Hall_(musician)https://adp.library.ucsb.edu/names/204191A. HallAlbert HallAlfred "Al" HallAlfred HallAlfred W. HallAlfred Wesley Hall.All HallHallBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraGene Krupa And His OrchestraErroll Garner TrioTeddy Wilson And His OrchestraDon Byas QuartetClyde Hart All StarsMary Lou Williams TrioEddie Condon And His ChicagoansPete Johnson's All-StarsTeddy Wilson QuintetDickie Wells And His OrchestraPaul Baron's SextetEddie Condon And His All-StarsBe Bop BoysSonny Stitt All StarsPete Johnson And His BandThe Harlem Blues & Jazz BandTeddy Wilson And His All StarsTeddy Wilson SextetKenny Clarke And His 52nd Street BoysThe Charlie Shavers QuartetBenny Morton's Trombone ChoirBilly Strayhorn's SeptetBobby Hackett And His Jazz BandHoward Biggs OrchestraLee Lovett QuartetThe Ralph Sutton TrioCharlie Ventura SextetDizzy Gillespie All StarsSkeets Tolbert And His Gentlemen Of SwingDon Redman All StarsHarold Ashby QuartetTrummy Young All StarsAl Hall QuartetNorris Turney QuintetThe Ellis Larkins OrchestraJimmy Jones' Big FourThe Ram Ramirez TrioAl Hall QuintetGil Fuller's ModernistsOtto Hardwick QuartetJohnny Hodges SeptetDanny Hurd OrchestraLloyds Phillips TrioOtto Hardwick's Wax QuintetDenzil Best's Wax QuintetLouis Armstrong And The V-Disc All-Stars + +313160Moses AllenMoses Allen.American jazz bassist, singer and tuba player. + +Born : July 30, 1907 in Memphis, Tennessee. +Died : February 02, 1983 in New York City. +Needs Votehttps://en.wikipedia.org/wiki/Moses_Allen_(musician)#:~:text=Moses%20Allen%20(1907%E2%80%93February%202,with%20Lunceford's%20orchestra%20until%201942.https://www.allmusic.com/artist/moses-allen-mn0001566759https://adp.library.ucsb.edu/names/114075AllenM. AllenMose AllenJimmie Lunceford And His Orchestra + +313161Yank PorterAllen Porter.American jazz drummer. + +Born: May 07, 1895 in Norfolk, Virginia. +Died: March 22, 1944 in New York City, New York. + +Porter worked with Calvin Jackson (1926-1930), Charlie Matson (1932), Louis Armstrong (1933), Bud Harris (1933), James P. Johnson (1934 & 1939), Fats Waller (1935-1936), Dave Martin (1936), Joe Sullivan (1940), Teddy Wilson (1940), Benny Carter (1940), Art Tatum (1941). +Needs Votehttps://en.wikipedia.org/wiki/Yank_Porterhttps://www.allmusic.com/artist/yank-porter-mn0000248824/creditshttps://adp.library.ucsb.edu/names/338190"Yank" PorterA. PorterAllen "Yank" PorterAllen H. PorterAllen PorterAllen « Yank » PorterY. PorterYank PoeterLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraBenny Carter And His OrchestraArt Tatum And His BandBenny Carter And His All Stars + +313162Christian JensenChristian Viggo JensenDanish jazz pianist and bassist, born 25 November 1909 in Copenhagen, died 2 July 1973 in Copenhagen. Christian Jensen was a pianist with [a95459] 1935-36 and [a1330774] 1936-37. Thereafter mainly a bassist with [a313011] 1939, [a95459] 1939-43, [a1634409] 1943-49 and [a4484206] 1949-52. Also a pianist and bassist in the 1960's with [a1255102] and [a5015473], for example.Needs VoteC JensenC. JensenChr. JensenChr. JenseuSvend Asmussen SextetSvend Asmussens OrkesterSvend Asmussens Skandia TrioKai Ewans Og Hans OrkesterPeter Rasmussen SeptetWinstrup Olesen's SwingbandPeter Rasmussen's SekstetPeter Rasmussens KvintetSvend Asmussens Kvintet + +313166Max KaminskyMax KaminskyAmerican jazz trumpeter and bandleader. + +Born 7 September 1908 in Brockton, Massachusetts. +Died 6 September 1994 in Castle Point, New York. + +Kaminsky played with [a=Red Nichols], [a=Eddie Condon], [a=Benny Goodman], [a=Tommy Dorsey], [a=Glenn Miller], [a=Artie Shaw], [a=Bud Freeman], [a=Pee Wee Russell], [a=Art Hodes], Rod Cless, [a=Jack Teagarden] and many others. He played internationally as a leader until 1994. + +Needs Votehttp://en.wikipedia.org/wiki/Max_Kaminsky_%28musician%29http://www.harlem.org/oldsite/people/kaminsky.htmlhttp://www.altissimo-music.com/artists/mkaminsky.htmlhttp://www.bluenote.com/artist/max-kaminsky/https://www.allmusic.com/artist/max-kaminsky-mn0000865975/biographyhttps://adp.library.ucsb.edu/names/104487H. KaminskyKaminskiKaminskyM. KaminskyMKMan KaminskyMax KaminskiMax Kaminsky (MK)Max KamiskyMax KamminksyMaxie KaminskyRed ClessTommy Dorsey And His OrchestraOriginal Dixieland Jazz BandTommy Dorsey And His Clambake SevenSidney Bechet And His Blue Note Jazz MenThe Chocolate DandiesArtie Shaw And His OrchestraEddie Condon And His OrchestraBud Freeman's Summa Cum Laude OrchestraJack Teagarden And His Big EightMezz Mezzrow And His OrchestraEddie Condon And His ChicagoansEddie Condon And His BandMax Kaminsky's OrchestraEddie Condon And His All-StarsJack Teagarden And His Swingin' GatesThe Dixieland All StarsArt Hodes' ChicagoansBud Freeman And His Famous ChicagoansArt Hodes TrioMax Kaminsky And His Windy City SixMax Kaminsky And His Jazz BandArt Hodes' Back Room BoysArt Hodes' Blue FiveEarl Hines And His All-StarsPee Wee Russell RhythmakersArt Hodes And His Blue Note JazzmenMax Kaminsky And His Windy City SevenGeorge Wettling's All StarsArt Hodes' Hot SevenMax Kaminsky And His Dixieland BandMax Kaminsky And His Dixieland All-StarsMax Kaminsky And His Dixieland BashersJoe Marsala And His Chosen SevenDon Roberts' Wolf GangMax Kaminsky All-StarsJam Session At CommodoreAdrian's RamblersMax Kaminsky Quartet Plus + +313167Chauncey HaughtonChauncey M. HaughtonAmerican jazz saxophonist (alto) and clarinetist, active from 1927 to 1958. +Born : February 26, 1909 in Chestertown, Maryland. +Died : July 01, 1989 in Tarrytown, New York. +Worked with : Elmer Calloway (Cab's brother), Claude Hopkins, Noble Sissle, Chick Webb, Cab Calloway, Ella Fitzgerald, Barney Bigard, Don Redman and others. +Needs Votehttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/haughton-chaunceyhttps://www.allmusic.com/artist/chauncey-houghton-mn0001394253/biographyChancey HaughtonChauncey HoughtonChauncy HaughtonChauncy HortonHaughtonCab Calloway And His OrchestraDuke Ellington And His OrchestraChick Webb And His OrchestraBenny Carter And His OrchestraChick Webb And His Little ChicksElla Fitzgerald And Her Famous OrchestraDon Redman And His Orchestra + +313168Willie RandallJazz saxophone playerCorrectRandallW. RandallWilliam RandallWilliams RandallWillie RendallEarl Hines And His OrchestraBanjo Ikey Robinson And His Windy City Five + +313171Teddy McRaeTheodore McRaeAmerican saxophonist, bandleader, arranger and composer. +Born: January 22, 1908 in Waycross, GA ⎯ Died: March 4, 1999 in New York City, NY. +Teddy McRae organized his first band in the 1920s and worked with drummer [a=Chick Webb], banjo player and guitarist [a=Elmer Snowden], violinist [a=Stuff Smith], pianist [a=Lil Armstrong], trombonist [a=Benny Morton], bandleader [a=Cab Calloway], saxophonist [a=Jimmie Lunceford], vibraphonist [a=Lionel Hampton], pianist/singer [a313154] and others. +Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=227205&subid=0https://en.wikipedia.org/wiki/Teddy_McRaehttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1529929d32b4dd390df3bc45487975a6c9f44/biographyhttps://adp.library.ucsb.edu/names/206640BaerM. CroeMacMac RaeMacRaeMacraeMacreaMc CraeMc CraneMc CrayMc F RaeMc F. RaeMc RaeMc RayMc. RaeMc. RayMcCRaeMcCraeMcCraneMcCrayMcCreaMcGraeMcKaeMcKayMcRaeMcRayMcReaMcRoseMcaeMcraeRaeRae MacT McRaeT, McRaeT. MaCraeT. Mac RaeT. MacRaeT. Mc CraeT. Mc RaeT. McCraeT. McRaeT. McRayT. McReaT. McraeT. McrayT.McRaeTed McCreaTed McRaeTed McraeTeddy "Mr. Bear" McRaeTeddy 'Mr. Bear' McRaeTeddy (Mr Bear) McRaeTeddy (Mr. Bear) McRaeTeddy BearTeddy Mac RaeTeddy MacCraeTeddy MacRaeTeddy Mc RaeTeddy Mc. CraeTeddy Mc. RaeTeddy McCraeTeddy McCreaTeddy McRayTeddy McReaTeddy McRoeTeddy Mr. Bear Mc RaeTeddy Mr. Bear McraeTeggy McRaeTerry McRaeTheodore "Teddy" McRaeTheodore Mac RaeTheodore MacRaeTheodore Mc RaeTheodore Mc RayTheodore McRaeThéodore Mc. Rae\McRaeMr. BearLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraChick Webb And His OrchestraElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraMr. Bear & His BearcatsTeddy McRae OrchestraBenny Morton And His OrchestraPutney Dandridge And His Orchestra + +313172Elmer CrumbleyAmerican jazz trombonist from the swing-era. + +Born : August 01, 1908 in Kingfisher, Oklahoma. +Died : 1993 - . + +Needs Votehttps://en.wikipedia.org/wiki/Elmer_Crumbley#:~:text=Crumbley%20made%20a%20lifetime%20out,Tommy%20Douglas%2C%20and%20Bill%20Owens.https://www.allmusic.com/artist/elmer-crumbley-mn0001177868/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/310288/Crumbley_Elmerhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/crumbley-elmer-eCrumbleyE. CrumbleyE.CrumbleyElmer Crumbley and OrkElmer CrumblyElmer GrumbleyJimmie Lunceford And His OrchestraSy Oliver And His OrchestraHoward McGhee And His OrchestraThe Bobby Donaldson Group + +313174Ben ThigpenBenjamin F. ThigpenAmerican drummer from the Swing era. Born November 16, 1908 in Laurel, Mississippi, died October 5, 1971. In addition to his performances, Ben worked in the union and helped a lot for musicians in St. Louis on both sides of the river. Father of [a=Ed Thigpen].Needs Votehttps://en.wikipedia.org/wiki/Ben_Thigpenhttps://www.allmusic.com/artist/ben-thigpen-mn0000138206https://adp.library.ucsb.edu/index.php/mastertalent/detail/210119/Thigpen_BenBenjamin "Ben" ThigpenEen ThigpenAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraElgar's Creole OrchestraMary Lou Williams And Her Kansas City SevenSix Men And A Girl + +313175Danny PoloAmerican jazz clarinetist, saxophonist (alto), composer, arranger and bandleader. + +Born: December 22, 1901 in Toluca, Illinois. +Died: July 11, 1949 in Chicago, Illinois. +Needs Votehttps://adp.library.ucsb.edu/names/102901D. PoloD.PoloDany PoloPoloProb. Danny PoloJean Goldkette And His OrchestraJack Teagarden And His OrchestraClaude Thornhill And His OrchestraGeorge Wettling's Chicago Rhythm KingsAmbrose & His OrchestraDanny Polo TrioRay Ventura Et Ses CollégiensDanny Polo & His Swing StarsColeman Hawkins' All Star OctetThe Hot Club Swing StarsVarsity SevenJoe Sullivan And His Café Society OrchestraArcadians Dance OrchestraPaul Ash & His OrchestraSextet Of The Rhythm Club Of LondonDanny Polo SextetLouis de Vries And His Rhythm BoysColeman Hawkins And His Hot SevenJoe Sullivan Band + +313176Claude BowenAmerican jazz trumpeter. +(his name is often misspelled as "Claude Brown" in discographies.) + +Claude worked, among others with Artie Shaw, Glenn Miller, +Tommy Dorsey and Harry James.Needs Votehttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=trumpeter+Claude+Bowen+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwi6-4PshNbXAhVByVQKHfhjC0wQ6AEIKDAA#v=onepage&q=trumpeter%20Claude%20Bowen%20%22The%20Big%20Bands%22&f=falseBowenC. BowenClaude BowensClaude BrownCluade BowenTommy Dorsey And His OrchestraHarry James And His OrchestraArtie Shaw And His OrchestraJimmy Dorsey And His Orchestra + +313177Truett JonesJazz trombonist.Correcthttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=Truett+Jones+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwjgq8HmidbXAhUHxoMKHdKMBNAQ6AEIKDAA#v=onepage&q=Truett%20Jones%20%22The%20Big%20Bands%22&f=falseTruet JonesHarry James And His Orchestra + +313178Wallace JonesWallace Leon JonesAmerican jazz trumpeter, born November 16, 1906 in Baltimore, Maryland, died March 23, 1983 in New York. +Jones moved to New York in the mid-1930s, played briefly with his cousin [a=Chick Webb] and then with [a=Willie Bryant] 1936-1937. He recorded with [a=Putney Dandridge] (1936) and with [a=Duke Ellington] (1936-1943, 1947) and belonged to Ellington's orchestra 1938-1944. He also played and recorded with [a=Benny Carter] 1945 and played with [a=Leo "Snub" Mosley] 1946 and [a=John Kirby] 1947, before leaving music.Needs Votehttps://en.wikipedia.org/wiki/Wallace_Jones_(musician)https://www.allmusic.com/artist/wallace-jones-mn0000323842/biographyhttps://rateyourmusic.com/artist/wallace_jones/credits/https://adp.library.ucsb.edu/names/111614JonesW. JonesWJWalace JonesУоллес ДжонсDuke Ellington And His OrchestraBenny Carter And His OrchestraIvie Anderson And Her Boys From DixiePutney Dandridge And His Orchestra + +313179Floyd TurnhamAmerican saxophonist, born 23 January 1909, died 5 May 1991.Needs Votehttps://en.wikipedia.org/wiki/Floyd_TurnhamF. TurnhamFloyd P. Turnham, Jr.Floyd P. Turnham. Jr.Floyd Payne Turnham Jr.Floyd TeernhamFloyd TurnerFloyd Turnham & His ComboFloyd Turnham Jr.TurnhamThe Glenn Miller OrchestraGerald Wilson OrchestraLes Hite And His OrchestraJohnny Otis And His OrchestraFloyd Turnham OrchestraJoe Liggins & His HoneydrippersMonroe Tucker And His OrchestraRed Callender SextetFloyd Turnham Band + +313180Henry JonesReed Player, swing eraNeeds VoteH. JonesHenry "Moon" JonesHenry L JonesHenry L. JonesHenry McCoy JonesJonesLouis Armstrong And His OrchestraLuis Russell And His OrchestraClarence Williams' Jazz KingsJimmy Johnson And His Orchestra + +313185Jimmy O'BryantAmerican jazz clarinetist (b. Arkansas, c. 1896; d. Chicago, 24 June 1928).Needs VoteJ. O'BryantJimmie O'BryantJimmy BryantO'BriantO'BryantLovie Austin's Blues SerenadersAlberta Hunter & Her Paramount BoysJimmy O'Bryant's Famous Original Washboard BandJimmy O'Bryant's Washboard BandJimmy O'Bryant's Washboard WondersClarence Jones And The Paramount Trio + +313468Bernard ZaslavBernard Zaslav (born April 7, 1926, New York City, New York, USA – died December 28, 2016) was an American classical violist and educator. Married to pianist [a3925293].Needs Votehttp://www.viola.com/zaslav/https://en.wikipedia.org/wiki/Bernard_ZaslavB. ZaslavBernard ZaslovBernard ZaslowBernhard ZaslavThe Cleveland OrchestraThe Composers QuartetThe Kohon String QuartetThe Fine Arts QuartetNew York SinfoniettaVermeer QuartetThe Zaslav DuoThe Stanford String Quartet + +313469Mack DavidAmerican lyricist and songwriter, born 5 July 1912 in NYC, NY - died 30 Dec. 1993 in Rancho Mirage, CA. +Born into a Jewish family, after originally planing to become an attorney; however in the mid-1940s, Mack began writing songs for New York's Tin Pan Alley. These initial successes prompted Mack to move to Hollywood, CA and he was particularly well known for his film and television work in the 1960s, especially on the Disney films "Cinderella" and "Alice In Wonderland", as well as the translated English lyrics for "[i][url=https://www.discogs.com/master/634752]La Vie En Rose[/url][/i]", which was originally written in French by [a=Edith Piaf] and became the signature song of her career. +Mack enjoyed considerable success, including eight Academy Award nominations and induction into the Songwriters Hall of Fame in 1975. +He is the elder brother of American lyricist and songwriter [a=Hal David]. Needs Votehttp://en.wikipedia.org/wiki/Mack_Davidhttps://www.songhall.org/profile/Mack_Davidhttps://www.imdb.com/name/nm0202988/?ref_=nv_sr_srsg_0https://adp.library.ucsb.edu/names/108844D.D. MackD. SmithD. mackD.MackDauisDavdDavidDavid - BrownDavid M.David MackDavid-DavisDavinDavisDeanlDsvidH. DavidH.DavidHack DavidJ. MackM DavidM. DavidM. DavidsM. DavisM. DeividasM. MackM.DavidM; DavidMac DavidMacDavidMach DavidMackMack - DavidMack / DavidMack DairdMack DaniseMack DaviesMack DavisMack-DavidMack/DavidMackDavidMackdavidMarckMarck DavidMark DavidMax DavidMc DavidMcak DavidN. DavidS. DavidW. DaviddavidДавидМ. Дейвидדודマック・デイビットマック・デビッド + +313571Benny PowellBenjamin Gordon Powell Jr.American jazz trombonist +Born 1st March 1930 in New Orleans, Louisiana, died 26th June 2010 in New York City, New York + +Benny Powell was a member of Lionel Hampton's big band and gained national attention during his twelve years with Count Basie. He is one of the most respected trombonists and jazz lecturers in the world.Needs Votehttp://www.attictoys.com/BennyPowell/index.phphttps://en.wikipedia.org/wiki/Benny_Powellhttps://www.bluenote.com/artist/benny-powell/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1209442c390036ec4195a60578f454ef02e1e/biographyhttps://originarts.com/artists/artist.php?Artist_ID=136https://attictoys.com/benny-powell/https://www.imdb.com/name/nm1167062/https://www.allmusic.com/artist/benny-powell-mn0000051087/biographyhttps://adp.library.ucsb.edu/names/338271B. PowellBen PowellBenjamin PowellBennie PowellBenny PowelsPowellベニー・パウェルCount Basie OrchestraLionel Hampton And His OrchestraTony Scott And His OrchestraLionel Hampton And His All-Star Alumni Big BandCount Basie Big BandThe Phoenix AuthorityThe Ernie Wilkins OrchestraPepper Adams OctetThe Jazz Interactions OrchestraOsie Johnson QuintetSlide Hampton And The World Of TrombonesJoe Newman And The Count's MenRandy Weston African Rhythms QuintetThe Frank Wess - Harry Edison OrchestraDuke Pearson's Big BandSpirit of Life EnsembleThe Count's MenThe Frank Foster QuintetRandy Weston's African RhythmsLeonard Feather's East Coast StarsThe Frank Wess QuintetThe Leiber-Stoller Big BandJoe Newman And His OrchestraJimmy Heath Big BandBill Berry And The LA BandThad Jones & Mel LewisPratt Brothers Big BandThe Clifford Jordan Big BandRandy Weston And His African Rhythms SextetDameronia + +313576Bobby DonaldsonRobert Stanley DonaldsonAmerican jazz drummer, born 29 November 1922 in Boston, died 2 July 1971.Needs Votehttps://adp.library.ucsb.edu/names/312590B. DonaldsonBob DonaldsonDonaldsonR. DonaldsonRobert DonaldsonRobert Stanley 'Bobby' Donaldsonボビー・ドナルドソンThe Benny Goodman QuartetSy Oliver And His OrchestraBenny Goodman SeptetEddie Heywood TrioBuck Clayton With His All-StarsHal Singer SextetBenny Goodman OctetSam Most SextetThe Bobby Donaldson GroupThe Frank Wess QuartetMel Powell TrioDon Elliott QuartetBobby Donaldson's 7th Avenue StompersThe Urbie Green OctetSam Price And His Texas BlusiciansTeddy Tyle Quintet + +313578Richard HixsonRichard E. HixsonRichard Hixson (credits sometimes appear as Richard or Dick Hixon) was a bass trombonist who played under Igor Stravinsky and Kiril Kondrashin. Born : May 17, 1924 and died at Phelps Memorial Hospital in North Tarrytown, N.Y., November 25, 1982, he was 58 years old. He played in many Broadway shows and contributed to numerous jazz record albums.Needs VoteDic HixsonDick HicksonDick HixonDick HixsonDick NixonNick HixsonRichard D. HixsonRichard HicksonRichard HixonGil Evans And His OrchestraThe Will Bradley-Johnny Guarnieri BandCootie Williams And His OrchestraOliver Nelson And His OrchestraThe Creed Taylor OrchestraManny Albam And His Jazz GreatsMundell Lowe And His All StarsThe Grand Award All StarsThe Kai Winding OrchestraOrizaba And His OrchestraChubby Jackson's Big BandJim Timmens And His Swinging BrassUrbie Green And Twenty Of The "World's Greatest" + +313645Fenella BartonBritish violinist.Needs Votehttp://www.fenellabarton.com/Fanella BartonElectra StringsEnglish Chamber OrchestraLondon Metropolitan OrchestraThe Michael Nyman BandRaglan Baroque PlayersThe Arc Of Light Orchestra + +313649Bob AugerRobert Walter Ernest AugerBritish recording engineer (born 30 April 1928, London, England - died 12 December 1998, Swansea, Wales), notable as a pioneer for the practical application of successive technical developments, including stereo and digital recording. Known to have worked at [l307254]Correcthttp://www.independent.co.uk/arts-entertainment/obituary-bob-auger-1068562.htmlBob 'Genius' AugerBob AngerBob Auger AssociatesBob AugersBob M. AugerMr. Robert AugerRob AugerRober AugerRobert AugerRobert AugerRobert AugetRobert M AugerRobert M. Augerボブ・オーガーロバート・オージャー + +313820Chuck BerghoferCharles Curtis BerghoferAmerican jazz double bass player, born June 14, 1937 in Denver, ColoradoNeeds Votehttps://en.wikipedia.org/wiki/Chuck_Berghoferhttps://www.imdb.com/name/nm0074597/Berghofer CharlesBuck BerghoferChack BerghoferCharles BerghoferCharles BerghofferCharles C. BerghoferCharles C. BerghofferCharlie BerghoferChuck BerghofferChuck Bergoferチャック・バーグフォファーJan Lundgren TrioArt Pepper QuintetThe Abnuceals Emuukha Electric OrchestraThe Howard Roberts QuartetThe Pete Jolly TrioShelly Manne TrioThe Jack Montrose QuintetFrank Capp QuartetThe Herb Ellis QuintetHerb Ellis QuartetBuddy Charles Concert Jazz OrchestraShelly Berg TrioAndy Martin-Jan Lundgren QuartetThe Wrecking Crew (6)Pete Jolly - Jan Lundgren QuartetThe H2 Big BandBob Cooper QuintetBrent Fischer OrchestraThe Frank Capp TrioPatrick Williams & His BandThe Chuck Berghofer TrioJohn Altman QuartetLanny Morgan SextetThe Midnight Jazz BandThe John Chiodini TrioLouie Bellson's Big Band Explosion!The Arno Marsh Quintet + +314008Paul NiemanTrombone and sackbut playerNeeds Votehttps://www.paulnieman.uk/"Professor' Paul Nieman'Professor' Paul NiemanP. NiemanPaulPaul NeimanPaul NiemannElton Dean's NinesenseMike Westbrook OrchestraRedbrassCentipede (3)Iskra 1912New London ConsortThe Parley Of InstrumentsThe SixteenGabrieli PlayersThe King's ConsortLondon Jazz Composers OrchestraHis Majestys Sagbutts And CornettsJohn Williams OctetThe London Jazz OrchestraLondon Cornett And Sackbut EnsembleLondon Pro MusicaThe London Early Music GroupThe Guildhall WaitsStraight No Chaser Big BandMembers Of The New London ConsortJohn Warren BigbandDon Rendell Nine + +314010Stuart DeeksClassical violinist.Needs VoteThe Academy Of Ancient MusicDeller ConsortThe Music Party + +314047Hans VermeulenPetrus Johannes VermeulenDutch singer, guitarist, songwriter and producer. Born September 18th 1947 in Voorburg, the Netherlands. Passed away November 9th 2017 in Ko Samui, Thailand. Founding member of [b]Sandy Coast[/b] in the early 1960s and [b]Rainbow Train[/b] in the 1970s. Successfully worked as a producer and songwriter with artists such as [a=Anita Meyer], [a=Rob de Nijs] and [a=Ruth Jacott]. Moved to Thailand in the early 1990s but was still occasionally active in the Netherlands. Vermeulen is the former husband of [a=Dianne Marchal] and has been married to Thai singer [i]Aom Jariya Chatsuwan[/i] since 1998. He is also the brother of [a=Jan Vermeulen] and the father of [a3058711] & [a3670758]. +Needs Votehttps://www.nldiscografie.nl/hans-vermeulenhttps://nl.wikipedia.org/wiki/Hans_VermeulenH. VermeulenH. VermulenH.VermeulenHan VermeulenHansHas VermeulenP. J. VermeulenP. VermeulenP.J. VermeulenP.J.VermeulenPetrus J Hans VermeulenVermeulenVermuelenStars On 45Sandy CoastRainbow TrainThe Eddy Starr SingersThe Rest (2)Musicians Union BandThe Six Young RidersIt Takes 2The Train (7) + +314166The Benny Goodman QuintetCorrectBenny Goodman & His QuintetBenny Goodman - QuintetoBenny Goodman And His QuintetBenny Goodman And His QuintettBenny Goodman Dixieland QuintetBenny Goodman QuartetBenny Goodman QuintetBenny Goodman QuintettBenny Goodman Quintett From New YorkBenny Goodman Swing QuintetBenny Goodman's QuintetBenny In Brussells - Benny Goodman QuintetDas Benny Goodman QuintetQuint.QuintetQuintetto Benny GoodmanQuintetto Di Benny GoodmanQuintetto strumentale Benny GoodmanThe Benny Goodman All-Star QuintetThe Benny Goodman QuintettThe Benny Goodman Swing QuintetLionel HamptonAndré PrevinLeroy VinnegarBarney KesselBenny GoodmanTeddy WilsonBobby HackettGene KrupaJohn KirbyJess StacyFrank CappErnie FeliceRed NorvoTommy ToddTommy RomersaHarry BabasinSid WeissVernon BrownBuddy SchutzMorey FeldMorey Field + +314337Richard BissillBritish horn player, composer, arranger, and Professor of Horn & chamber music. Born in Leicestershire, England, UK. +He was a member of the [a=Leicestershire Schools Symphony Orchestra], the BBC [a=Radio Leicester Big Band] and the [a=National Youth Jazz Orchestra]. He studied horn and piano at the [l527847] before joining the London Symphony Orchestra aged 22 (1982-1984). He was Principal Horn of the [a=London Philharmonic Orchestra] for 25 years (1984-2009). Member of the [a=Orchestra Of The Royal Opera House, Covent Garden], where from 2009 to 2017 he served as Section Principal Horn. He has taught at [l305416] since 1983 and been a member of [a=London Brass] since 1990. Needs Votehttps://www.richardbissill.com/https://en.wikipedia.org/wiki/Richard_Bissillhttps://broadbent-dunn.com/biographies/bissill-richard/https://www.gsmd.ac.uk/staff/professor-richard-bissill-grsm-aram-lram-arcmhttps://wells.cathedral.school/staff/richard-bissill-french-horn/https://www.the-paulmccartney-project.com/artist/richard-bissill/https://www.imdb.com/name/nm1179882/BissillR. BissillRichard BisselRichard BissellRichard BissilLondon Symphony OrchestraLondon Philharmonic OrchestraLondon BrassThe London Telefilmonic OrchestraLondon Metropolitan OrchestraOrchestra Of The Royal Opera House, Covent GardenNational Youth Jazz OrchestraLeicestershire Schools Symphony OrchestraRadio Leicester Big BandThe London Scratch Orchestra + +314412Eddie SafranskiEdward SafranskiAmerican jazz bassist, born 25 December 1918 in Pittsburgh; died 10 January 1974 in Los Angeles, USA.Needs Votehttp://en.wikipedia.org/wiki/Eddie_Safranskihttp://www.jazzdisco.org/eddie-safranski/discography/http://www.allmusic.com/artist/eddie-safranski-mn0000145543https://www.imdb.com/name/nm2935573/https://adp.library.ucsb.edu/names/357863E. SafranskiE. SafranskyEd SafranskiEd SafranskyEddie SaffranskiEddie SafrankiEddie SafranskyEddie SaftanskiEddie SatranskiEddie SzafranskiEdward SafranskiEdward SafranskyFreddie SafronskiFreddie SasranskiSafranskiEnoch Light And The Light BrigadeMetronome All StarsBenny Goodman SextetStan Kenton And His OrchestraCharlie Barnet And His OrchestraDon Byas QuartetHal McIntyre And His OrchestraCootie Williams And His OrchestraBarney Bigard And His OrchestraBenny Goodman And His OrchestraJohnny Smith QuintetVido Musso And His OrchestraThe Dick Hyman TrioJerry Gray And His OrchestraGeorgie Auld's All-StarsMary Lou Williams And Her OrchestraThe Dixieland All StarsGeorge Williams And His OrchestraDon Byas' All Star QuintetThe Blue FiveThe Sunset All StarsEddie Safranski's All StarsMetronome All-Star BandEddie Safranski And His QuartetEddie Safranski And His OrchestraEddie Safranski QuintetTeddy Reig All-StarsThe Poll CatsEddie Safranski TrioWillie Smith SextetDon Byas All Star Quartet + +314413Chano PozoLuciano GonzálezCuban percussionist, born January 7, 1915 in Havana, Cuba, died December 2, 1948 in Harlem, New York, USA. + + +Needs Votehttp://en.wikipedia.org/wiki/Chano_Pozohttps://adp.library.ucsb.edu/names/102944"Chano Pozo" GonzalesC .PozoC PozoC. GonzalesC. P. GonzalesC. PazoC. PozaC. PozoC. PozzoC.PozoCh. PozoCh. PozzoChanco PozaChanco PozoChanoChano BozoChano PChano PagoChano PazoChano PosoChano PoxoChano Pozo GonzalesChano Pozo GonzalezChano PozzoChino PozoCiano PozzoDizzy GillespieGonzalesGonzalezGonzálezL. "Chano Pozo" GonzalesL. P. GonzalesL. PozoLuciano "Chano Paza" GonzalezLuciano "Chano Pozo" GonzalesLuciano "Chano" PozoLuciano "Chano" Pozo GonzalesLuciano "Chano" Pozo GonzalezLuciano "Chano" Pozo Y GonzalesLuciano "Pozo" GonzalesLuciano Chano PozoLuciano PozoLuciano Pozo (Chano)Luciano Pozo GonzálezLuciano Pozo Y GonzalesLuciano Pozo y Gonzales aka "Chano Pozo"Luciano “Chano Pozo” GonzalesLuciano, Cano et PozoLuis "Chano" PozoLuis PozoP. ChanoP. GonzalezP. PoloP. PozoPoloPosePozPozoPozo ChanoPozo GonzalesPozzoPozzo ChanoLuciano "Chano Pozo" GonzalesMachito And His OrchestraDizzy Gillespie And His OrchestraDizzy Gillespie Big BandArtie Shaw And His OrchestraJames Moody And His ModernistsHotel Nacional OrchestraChano Pozo Y Su ConjuntoChano Pozo Y Su Conjunto AzulChano Pozo Y Su Ritmo De TamboresChano Pozo Y Su Orquesta + +314414Ted KellyTheodore Kelly.American jazz trombonist +Played with : Duke Ellington, Dizzy Gillespie and others. + +Born : September 07, 1921. +Died : November 06, 2000. +Needs VoteRed KellyT. KellyT.KellyTed KelleyTheodore "Ted" KellyTheodore Kellyテッド・ケリーDizzy Gillespie And His OrchestraDuke Ellington And His OrchestraDizzy Gillespie Big BandGerald Wilson OrchestraRoy Eldridge And His OrchestraLester Young And His BandThe Dizzy Gillespie Reunion Big BandErnie Royal And His All StarsErnie Royal & His Princes + +314416Ernie CaceresErnesto Caceres.American jazz clarinetist and saxophonist (alto, tenor and baritone) player. + +Born : November 22, 1911 in Rockport, Texas. +Died : January 10, 1971 in San Antonio, Texas. +Needs Votehttps://en.wikipedia.org/wiki/Ernie_Cacereshttps://jazzbarisax.com/baritone-saxophonists/pre-bop-style/ernie-caceres/https://riverwalkjazz.stanford.edu/?q=program/all-texas-family-jazz-legacy-emilio-and-ernie-cacereshttps://adp.library.ucsb.edu/names/106736C. CaceresCaceresCáceresE CaceresE. CaceresEddie CaceresErnest CaceresErnieErnie CacerasErnie CacereErnie CacereasErnie CarceresErnie CasceresWoody Herman And His OrchestraMetronome All StarsGene Krupa And His OrchestraLouis Armstrong And His All-StarsEmilio Caceres TrioGlenn Miller And His OrchestraSidney Bechet And His OrchestraJack Teagarden And His OrchestraEddie Condon And His OrchestraJimmy McPartland And His DixielandersSy Oliver And His OrchestraEddie Condon And His BandMiff Mole And His Nicksieland BandBobby Hackett And His OrchestraBenny Goodman And His OrchestraThe V-Disc All StarsJack Teagarden And His Swingin' GatesThe Dixieland All StarsGeorge Williams And His OrchestraEddie Condon's Jazz BandThe Rhythm CatsVic Lewis And His American JazzmenBobby Hackett And His Jazz BandBud Freeman And His OrchestraThe Bobby Hackett SextetRuby Braff's All-StarsRuby Braff & His AllstarsThe Band That Plays The BluesEddie Condon's N.B.C. Television OrchestraLouis Armstrong And The V-Disc All-Stars + +314417Big Nick NicholasGeorge Walker NicholasAmerican jazz saxophonist and vocalist. + +b. August 2, 1922 (Lansing, MI, USA) +d. October 29, 1997 (New York City, NY, USA) +Needs Votehttps://adp.library.ucsb.edu/names/207265"Big Nick""Big Nick" NicholasBig NickBig Nick "Toc"Big Nick TocG. NicholasGeorge "Big Nick" NicholasGeorge 'Big Nick' NicholasGeorge NicholasGeorge “Big Nick” NicholasGeorges "Big Nick" NicholasNicholasNick NicholsGeorge Nicholas (3)Tiny Bradshaw And His Orchestra + +314418Bill De ArangoWilliam DeArangoAmerican jazz guitarist, born September 20, 1921 in Cleveland, Ohio, died December 26, 2005 in Cleveland, Ohio. +De Arango played dixieland and Chicago jazz with bands in Chicago 1939-1942; moved to New York in 1944 to play with [a=Ben Webster]. He recorded with [a=Charlie Parker] and [a=Dizzy Gillespie] in 1945 and with [a=Ike Quebec]. He retired from jazz in 1948, but recorded as leader in 1954. He became the manager of rock group [a=Henry Tree] and in 1970 recorded anonymously with it.Needs Votehttps://en.wikipedia.org/wiki/Bill_DeArangohttp://billdearango.com/site/B. De ArangoBill D'ArangoBill DaArangeBill De ArangeBill De AranzoBill De ArrangoBill DeArangoBill DeArrangoBill de ArangoBill de ArrangoBill deArangoDe ArangoDizzy Gillespie And His OrchestraDizzy Gillespie SeptetBen Webster And His OrchestraSlam Stewart QuintetThe Ben Webster QuintetKen Werner SextettBill De Arango QuartetBill De Arango Sextet + +314419Joe GaylesJazz saxophonist.Needs Votehttps://www.allmusic.com/artist/joe-gayles-mn0001214816/creditsJ. GalesJ. GaylesJ.GaylesJoe BaylesJoe GalesDizzy Gillespie And His OrchestraDizzy Gillespie Big Band + +314420Andy DuryeaJazz trombonist.Needs VoteA. DuryeaA. DurylaAndy DureyaAndy DuryenCindy DuryeaDizzy Gillespie And His OrchestraDizzy Gillespie Big Band + +314464Terry ChangoCorrectT. Chango + +314596Delmar BrownPianist/keyboard player, vocalist and composer (born 1954; died 1 April 2017 at the age of 62).Needs Votehttps://web.archive.org/web/20180606025925/http://www.delmarbrown.com/https://www.facebook.com/delmarbrown999/https://www.imdb.com/name/nm3991382/D. BrownDel BrownDelmarDelmar "Uncle Nappy" BrownGil Evans And His OrchestraEssence (13)J-Funk ExpressPink Inc. + +314639James StroudJames Cary StroudAmerican record producer and drummer born July 4, 1949 in Shreveport, Louisiana, USA. Former co-chairman of [l=Universal Music Group Nashville]. +The man behind [l=Stroudavarious Records], hence the name of the label. +Has also started and associated label, [l=Country Crossing Records]. +Known to have worked at [l=Suite 900]. +Needs Votehttp://www.gigging-drum-charts.com/james-stroud.html"Jimmy" James StroudJ. StroudJ. TroudJ.C. StroudJ.StroudJC StroudJames C. StroudJames Carey StroudJames StoudJames StraudJim StroudJimmy StroudSteoudStroudSpoils Of War (2)The Malaco Rhythm SectionThe Snakes (8)Beau WeevilsStroudavarious Orchestra + +314839Louis Armstrong & His Hot SevenNeeds Votehttp://en.wikipedia.org/wiki/Louis_Armstrong_and_His_Hot_Sevenhttps://adp.library.ucsb.edu/names/105973"Hot Seven"And His Hot SevenHot 7Hot SevenHot SevensKing Louis Armstrong And His Hot 7Louis Armstong & His Hot SevenLouis Armstrong & His Orch.Louis Armstrong & Hot SevenLouis Armstrong And His "Hot Seven"Louis Armstrong And His Hot SevenLouis Armstrong And His Hot Seven (Sic)Louis Armstrong And His Hot-SevenLouis Armstrong And His OrchestraLouis Armstrong Con " The Hot Seven"Louis Armstrong E I Suoi Hot SevenLouis Armstrong E Seus Hot SevenLouis Armstrong Hot SevenLouis Armstrong Und Seine Hot SevenLouis Armstrong With The Hot SevenLouis Armstrong Y Sus "Hot Seven"Louis Armstrong Y Sus Hot SevenLouis Armstrong's Hot 7Louis Armstrong's Hot SevenLouis Armstrong’s Hot SevenLuis Armstrong & His Hot SevenLuis Armstrong And His Hot SevenSevenSevensThe Hot SevenThe Hot SevensThe Louis Armstrong Hot Sevenルイ・アームストロング・ホット・セブンLouis ArmstrongJohnny WilliamsEarl HinesVic DickensonRed CallenderZutty SingletonPrince RobinsonKid OryPete BriggsTubby HallJohnny St. CyrLawrence LucieBarney BigardJohnny DoddsAllan ReussSidney CatlettGeorge WashingtonLil Hardin-ArmstrongBaby DoddsLeonard FeatherGerald ReevesCharlie BealBoyd AtkinsHonore DutreyRip BassetAlbert Washington (2)John Thomas (20) + +314843Fats Waller & His RhythmSmall combo led by [a253482].Correct"Fats Waller And His Rhythm"Fats" Waller & His Rhythm"Fats" Waller & His Rhythm And Orch."Fats" Waller & His Rhythm – Dinan"Fats" Waller And His Rhythm"Fats" Waller E I Suoi Ritmi"Fats" Waller E Il Suo Ritmo"Fats" Waller E La Sua Orchestra"Fats" Waller Et Son Orchestre"Fats" Waller Und Seine Rhythmiker"Fats" Waller Y Su Ritmo"Fats" Waller y su Ritmo"Fats" Waller y su RitmoA"Fats" Waller, And His Rhythm"Fats" Waller, His Rhythm"Fats" Waller, His Rhythm And His Orch."Fats" Waller, His Rhythm And His Orchestra"Fats" Waller, His Rhythm And Orch."Fats" Waller, His Rhythm And Orchestra"Fats" Waller, His Rhythm, And His Orchestra'Fat' Waller & His Rhythm'Fats' Waller & His Rhythm'Fats' Waller And His Rhythm<Fats> Waller e i Suoi RitmiFats Waller & His Rhythm FiveFats Waller & His Rhythm OrchestraFats Waller & His RhythmnFats Waller And FriendsFats Waller And His RhythmFats Waller And His Rhythm And His OrchestraFats Waller And His RythmFats Waller And Hits RhythmFats Waller E I Suoi RhythmFats Waller Und Sein OrchesterFats Waller With His RhythmFats Waller Y Su RitmoFats Waller, His RhythmFats Waller, His Rhythm & His OrchestraFats Waller, His Rhythm & OrchestraFats Waller, His Rhythm And His OrchestraHis Rhythm & His OrchestraI Rhythm Di Fats WallerThe RhythmThomas "Fats" Waller And His RhythmThomas 'Fats' Waller«Fats» Waller And His Rhythm«Fats» Waller E I Suoi Ritmi«Fats» Waller E Il Suo Ritmo«Fats» Waller Et Son OrchestreАнсамбль "Фэтс Уоллер И Его Ритм"“Fats” Waller & His Rhythm“Fats” Waller And His RhythmEdmundo RosFats WallerMezz MezzrowAl CaseyBill Coleman (2)Lee Young (2)Alan FergusonCedric WallaceAl MorganJimmy PowellBilly Taylor Sr.Herman AutreyCaughey RobertsCharlie TurnerGene SedricSlick JonesGeorge ChisholmJohn Smith (6)Harry DialRudy PowellFred SkerrittLonnie Simmons (2)Chauncey GrahamSam SimmonsCeele BurkeLen HarrisonFloyd O'BrienJohn Hamilton (6)Gene PorterPaul Campbell (5)William AllsopNathaniel Williams (2)George RobinsonJohn HaughtonLarry HintonAlfie KahnIan SheppardDave WilkinsArnold BoldenBugs Hamilton + +314915Stan TraceyStanley William TraceyBritish jazz pianist and composer + +Born 30 December 1926 in Denmark Hill, London, England, UK, died 6 December 2013 in St. Albans, Hertfordshire, England, UK (aged 86) + +Stan Tracey cited [a=Duke Ellington] and [a=Thelonious Monk] as his main influences. As house pianist at [url=https://www.discogs.com/label/97075-Ronnie-Scotts]Ronnie Scott's Jazz Club[/url] from 1959 to 1966, he performed with many of the leading American players on their visits to London. Founded the [l45651] label in 1975 on which his own recordings were issued. A successor label, [l175953], was established in 2007. Already an Officer of the Order of the British Empire (OBE), he was later appointed Commander of the Order of the British Empire (CBE) in the 2008 New Year Honours. + +He is the father of jazz drummer [a=Clark Tracey].Needs Votehttps://en.wikipedia.org/wiki/Stan_Traceyhttps://www.imdb.com/name/nm2189864/https://www.resteamed-records.com/http://www.stantracey.co.uk/bioghtm/S. TraceyS.TraceySam TacitStan Tracey OBEStan TracyStan TrayceyStanley William TraceyStraceyThe Stan Tracy StringsTraceyThe Stan Tracey QuartetThe Wes Montgomery QuartetThe New Departures QuartetKeith Tippett's ArkStan Tracey SextetStan Tracey OctetTed Heath And His MusicZoot Sims QuartetThe Charlie Watts OrchestraStan Tracey And His OrchestraKenny Graham's Afro-CubistsThe Stan Tracey Big BrassKenny Graham And His SatellitesThe London Jazz OrchestraThe Ronnie Scott/Jimmy Deuchar QuintetTony Crombie And His OrchestraStan Tracey TrioGijs Hendriks Construction CompanyThe Ronnie Scott OrchestraThe Stan Tracey Big BandThe New Stan Tracey QuartetGijs Hendriks-Stan Tracey QuartetSal Nistico / Stan Tracey QuintetStan Tracey DuoStan Tracey Quintet + +315552Don EllisDonald Johnson EllisAmerican band leader, composer, arranger, producer, trumpet player. +Born: July 25, 1934, Los Angeles, CA, United States. +Died: December 17, 1978.Needs Votehttps://en.wikipedia.org/wiki/Don_Ellishttps://www.imdb.com/name/nm0254803/D. EllisD.EllisDonDonald EllisDonald J. EllisEllisEllissДон ЭллисWoody Herman And His OrchestraThe Don Ellis OrchestraCharles Mingus And His Jazz GroupDon Ellis And SurvivalThe New Don Ellis BandGeorge Russell SeptetWoody Herman And The Fourth HerdDon Ellis Big BandDon Ellis OctetDon Ellis QuartetDon Ellis Trio + +315712Bo StiefDanish jazz bassist, composer, producer, and lector, born 15 October 1946 in Copenhagen, Denmark.Needs Votehttp://www.bostief.com/B SteifB. StiefB.SB.S.B.StiefBe StiefBoBo SiefBo SteifBo SteijvesBo StieffBo StiffStiefPeter Herbolzheimer Rhythm Combination & BrassBen Webster QuartetPeter Herbolzheimer SWF-FormationRolf Kühn GroupHalberg-LarsenThe Kenny Drew TrioPork PieEntrance (2)The Galactic Light OrchestraAlpha CentauriKen McIntyre QuartetSanta Cruz (6)Maria Quatro BossaNiels Thybo TrioRainbow BandHotlips (2)Midnight Sun (4)Palle Mikkelborg QuintetKansas City StompersEddie Harris QuartetEddie Lockjaw Davis QuartetBo Stief One Song IIIJesper Thilo QuartetThe String SummitBuddy Tate QuartetBo Stief Dream MachineAllan Botschinsky QuintetDon Cherry QuintetApocalypse (30)Jasper Van't Hof's Face To FaceFrans Bak's KvartetHacke Björksten QuartetNiels Jørgen Steen QuintetJasper Van't Hof QuartetVincent Nilsson QuartetArne Domnérus & His Bossa OrchestraTime Travellers (5)Bent Axens Kvartet + +315729Sue EvansSue Evans[b]Percussionist, drummer and vibraphonist[/b] +Sue Evans (born July 7, 1951, New York City) is an American jazz, pop, classical, and studio percussionist/drummer. +Evans played piano, violin and clarinet as a young child before switching to drums. She studied under Warren Smith and Sonny Igoe, and graduated in 1969 from the High School of Music and Art. (Later, Evans earned a BA in Music from Columbia University, as well as a Master of Music and Doctorate from the Juilliard School.) She soon became one of the top recording percussionists in New York,recording jingles, movie scores, and numerous albums with many jazz, folk and pop artists. She was Judy Collins's touring drummer from 1969 to 1973, and worked with Gil Evans from 1969 to 1982. In the 1970s she worked with Steve Kuhn, Art Farmer, Bobby Jones, George Benson, Urbie Green and Roswell Rudd's Jazz Composers Orchestra, in addition to playing with The New York Pops, the New York Philharmonic, the Brooklyn Philharmonic and the New Jersey Symphony Orchestra. In the 1980s, she worked with Michael Franks, Suzanne Vega, Tony Bennett, and Morgana King. Other associations include touring or recording with Aretha Franklin, Sting, Spike Lee, James Brown, Billy Cobham, Blood, Sweat and Tears, Philip Glass, Peter, Paul, and Mary, Don Sebesky, Sadao Watanabe, Hubert Laws, Randy Brecker, David Sanborn and Terence Blanchard. She also played the Tony Awards for several years, as well as the Grammy Awards. +Evans won National Academy of Recording Arts and Sciences Most Valuable Awards in 1984, 1987 and 1989.Needs Votehttps://en.wikipedia.org/wiki/Sue_Evanshttps://www.moderndrummer.com/article/july-1981-susan-evans-doin/Sue AdamsSusan EvansSuzan EvansGil Evans And His OrchestraThe Jazz Composer's OrchestraPortsmouth SinfoniaLalo Schifrin & OrchestraPond Life (2)The Pond Life OrchestraThe Contemporary Arranger's WorkshopDavid Gilmour & Friends + +315793Hervé RoyHervé Jean RoyFrench singer, arranger, songwriter, composer and orchestra leader, born in 1943, died in 2009.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1979/03/herve-roy.htmlhttps://en.wikipedia.org/wiki/Herv%C3%A9_Royhttps://fr.wikipedia.org/wiki/Herv%C3%A9_Royhttps://www.imdb.com/name/nm0747044/H. AvyH. JeanH. RayH. RoyH.J. RoyH.RoyHerve Jean RoyHerve ROYHerve RoyHerve Roy FrenchHerver RoyHervey RoyHervè RoyHervé JeanHervé RoysJean HervéJean Roy HerveM. RoyR. HerveR. RoyRayRoiRou Herve JeanRoyRoy HRoy HerveРойHervé Roy Et Son OrchestrePressman & RoyLes Players (3) + +315947Herbie LewisHerbert Prince Lewis.American jazz bassist and educator. He founded the Jazz Studies program at New College of California. +Born February 17, 1941 in Pasadena, California, died May 18, 2007 in Minneapolis, Minnesota + +Best known for his work as a session contributor for artists such as Cannonball Adderley, Bobby Hutcherson, Freddie Hubbard, Harold Land, Jackie McLean, Archie Shepp, and McCoy Tyner. +Needs Votehttps://en.wikipedia.org/wiki/Herbie_Lewis_(musician)H. LewisHerb LewisHerbert LewisThe Cannonball Adderley QuintetGerald Wilson OrchestraDave Pike QuartetLes McCann Ltd.The JazztetCedar Walton TrioThe Gerald Wilson Big BandHilton Ruiz TrioHarry Verbeke / Rob Agerbeek QuartetThe Super FourThe Curtis Peagler 4 + +316302John BunchJohn BunchAmerican jazz pianist. + +Born 01-Dec-1921 in Tipton, IN, USA. +Died 30-Mar-2010 in Manhattan (New York City), NY, USA. +Needs Votehttps://en.wikipedia.org/wiki/John_Bunchhttps://adp.library.ucsb.edu/names/306167B. BunchBunchJ. BunchJ. LutherJ. T. BunchJohn Bunch JrJohn Bunch Jr.John Luther Bunchジョン・バンチWoody Herman And His OrchestraRex Stewart QuintetRolf Kühn SextetJoe Morello SextetThe Scott Hamilton QuintetRolf Kühn QuintettWoody Herman And The Fourth HerdThe Gene Krupa QuartetThe Phil Wilson SextetThe Buddy Rich QuintetNew York New York (2)The New Charlie Ventura SextetThe George Masso SextetSal Salvador And His OrchestraThe John Bunch TrioThe John Bunch QuintetThe Warren Vaché TrioThe George Masso QuintetThe John Bunch QuartetThe Butch Miles SextetRolf Kühn QuartettNew York SwingCarmen Leggio QuartetThe Ruby Braff QuintetHarry Allen QuartetWarren Vaché, Jr. And His All-StarsThe Cal Collins QuintetThe Howard Alden All Star QuintetHarry Allen All Star QuintetThe Eddie Barefield SextetThe Butch Miles OctetThe Jake Hanna Quintet + +316586James AllanJames Edward AllanTrance / Techno DJ & producer from Ayr, UK. Managed Infected Records with Douglas Sweeney. +Born: 10-01-1976. +Needs Votehttps://www.facebook.com/publicdomainsoundsystemhttps://soundcloud.com/public-domainAllanAllenJ. AllanJames AlannJames AllenPublic DomainAsylum (12)SAS (8)Digital Dropouts + +316794Van ManakasGuitarist Van Manakas studied with [a=Pat Metheny] at the Berklee College of Music, earning a B.A. in composition. He made his recording debut as a sideman with [a=Jack Tottle] on the album "Backroad Mandolin". At 21, he was hired by [a=Gil Evans], with whom he toured the U.S. and Europe. His first solo album, "Physical", was released in 1980.Needs Votehttp://www.vanmanakas.comhttp://www.allmusic.com/artist/van-manakas-q122515ManakasGil Evans And His OrchestraNashville Mandolin Ensemble + +316797Dick GroveRichard Dean GroveAmerican musician, composer, arranger and music educator (born December 18, 1927 in Lakeville, Indiana, died December 26, 1998 in Laughlin, Nevada).Needs Votehttps://www.dickgrove.com/https://en.wikipedia.org/wiki/Dick_Grovehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/319073/Grove_DickD. GloveD. GroveDick GroaveDick GrooveDick GrovesGroveGroverGroversRichard GroveGerald Wilson OrchestraDick Grove And His OrchestraDick Grove Big Band + +316892Hugh WebbHugh WebbBritish harpist and composer, born 1965 in London, England, UK. +Principal Harp of the [a=Philharmonia Orchestra] (2001-2012). Founder member of [a=The John Wilson Orchestra]. Freelance as guest principal of the major London orchestras and active in the film and television music worlds.Needs Votehttps://www.feenotes.com/database/artists/webb-hugh-1965-present/http://arcadiamusic.org.uk/pages/hughwebbhttps://www.naxos.com/person/Hugh_Webb/1051.htmhttps://www.imdb.com/name/nm1082680/Royal Philharmonic OrchestraPhilharmonia OrchestraThe Taliesin OrchestraRobert Farnon And His OrchestraThe John Wilson OrchestraJoglaresaPixels Ensemble + +317126William KnightClassical tenor vocalist.Needs Votehttps://www.williamknight-tenor.com/The SixteenCappella AmsterdamNederlands KamerkoorGli Angeli GenèveLe Nuove MusicheLuthers Bach Ensemble + +317155Paul SerranoAmerican jazz trumpeter, recording engineer and studio owner. Born January 1, 1932, in Chicago, Illinois; died January 15, 2015, Burbank, Illinois (age 82). + +Musical career started with Woody Herman's band, and recorded with [a=Ramsey Lewis], [a=James Moody], [a=Art Farmer], [a=Duke Ellington]. + +Became active in recording, and opened his own studio, [l=P.S. Recording Studios], on the South Side of Chicago (1966 to 1992), and owner of labels [l=PS Records (3)] & [l=MET Records (2)]. Was head engineer for [l=Delmark Records], in Chicago, from 1992 to 2002. + +May also be credited as "Paul Sarano" on releases.Needs Votehttps://www.chicagotribune.com/news/obituaries/ct-paul-serrano-obituary-met-20150125-story.htmlhttps://web.archive.org/web/20220125181957/https://www.chicagotribune.com/news/obituaries/ct-paul-serrano-obituary-met-20150125-story.htmlhttps://www.jazzdisco.org/paul-serrano/P. SerranoP.S.PSPaul SarannoPaul SaranoPaul SarranoPaul SeranoPaul SerrenoPaul SiranoPaul SorronoSERRANOSerranoWoody Herman And His OrchestraThe Latin SoulsThe JazztetWoody Herman And The Fourth HerdArt Farmer And His OrchestraMongo Santamaria And His Afro-Latin GroupPaul Serrano QuintetWoody Herman And The Swingin' Herd (2) + +317195Sergio BardottiSergio BardottiItalian composer, conductor, one of the greatest songs writers of the sixties . +Born in Pavia , February 14, 1939 - passed away in Rome , April 11, 2007 at 68 years. +Correcthttp://it.wikipedia.org/wiki/Sergio_BardottiBadottiBaldottiBardiottiBarditoBardotBardotiBardottBardottiBardotti Di PaulisBardotti,SBarlottiBarottiBerdottiBordottiDardottiDottiE. BardottiG. BardottiL. BardottiL.BardottiO. BardottiPardolliPardottiR. BardottiR. BardottiS BardottiS. BardottiS. B.S. BardittiS. BardotS. BardotiS. BardottS. BardottiS. BarlottiS. BarrdottiS. BartdottiS. BartottiS.B.S.BardottiS.SardottiSardottiSerge BardottiSergioSergio BadottiSergio DottiSergio, BardottiSérgio BardottibardottiБардотиБардоттиБордоттиЛ. БордоттиPantagruele + +317295Helmut ZachariasHelmut ZachariasGerman jazz violinist and composer +born 20 January 1920 in Berlin, Germany +died 28 February 2002 in Brissago, Switzerland + +Helmut first played violin at the age of two and played in public four years later. He was known for the pseudonym [a=Charly Thomas]. +After working at the Conservatory, he turned to Pop music as well as, occasionally, Jazz. +Father of [a=Stephan Zacharias] +Needs Votehttps://de.wikipedia.org/wiki/Helmut_Zachariashttp://www.komponistenarchiv.de/zacharias-helmut/https://adp.library.ucsb.edu/names/351894H. SacariaH. ZachariasH. ZahariujasHelmut - ZachariusHelmut SachariasHelmut ZackariasHelmuth ZachariasHulmut ZachariasX. ЗахариасZacariasZaccheriasZachariasZacharias And His Magic ViolinsSomebodyKid BurbankH. Z. BandCharly ThomasFerry TabyMario GardiAmiga Star BandHelmut Zacharias QuartettHelmut Zacharias QuintettHelmut Zacharias Mit Seinem Großen Orchester Und ChorHelmut Zacharias Und Seine Verzauberten GeigenHelmut Zacharias Mit Seiner Tanz-BesetzungHelmut Zacharias And His OrchestraZacharias-SwingtettOrchestra Werner DrexlerZacharias' Party BandZacharias And His Twist-FiddleHelmy's Hot-ClubHelmut Zacharias Und Das Neue Party-SwingtettHelmut Zacharias Und Seine SolistenZacharias Bossa ClubHelmut Zacharias Mit Seiner Swing-BesetzungHelmut Zacharias Jazz EnsembleDie Helmut Zacharias ComboHelmut Zacharias Und Seine Sax-GruppeChor Helmut Zacharias + +317335Willy SchadeGerman classical and jazz bassistNeeds VoteWill SchadeWilli SchadeRundfunk-Tanzorchester LeipzigOrchester Kurt HenkelsKammerorchester Berlin + +317500Phil SunkelPhilip Charles Sunkel, Jr.American jazz composer, trumpeter, cornetist, and flugelhorn player. +Born: November 26, 1925 in Zanesville, Ohio, Died February 27, 2023, New York, NY. +Phil Sunkel II, 11/26/1925-2/27/2023 - Phillip Charles Sunkel II, passed away peacefully at the age of 97 in New York City. He had a long, wonderful life. He was born in Zanesville, OH and spent his early years in OH. After serving in the Army in WWII at age 18 (combat and playing trumpet for the Army Band) overseas, he returned home and went to the Cincinnati Conservatory on the G.I. Bill where he honed his trumpet, flugelhorn, and cornet skills. He ended up in New York City in the 1950's and 60's, which was an exciting and vibrant time for jazz. In addition to albums of his own "Jazz Concerto Grosso," and "Every Morning I Listen to Phil Sunkel's Jazz Band," he appeared live and on numerous jazz albums as a sideman with the likes of Stan Getz, Gerry Mulligan, Gil Evans, Tito Rodriguez, Woody Herman, Dizzy Gillespie, Sauter-Finegan, Claude Thornhill, Charlie Barnet, Dick Meldonian, and many others. He once said, “MY idea of a jazz band, is something between a small combo and a big band incorporating the good features of both. Here we have the flexibility of a small group which allows the soloist a maximum of freedom, plus the color and drama produced by the different ensemble sounds.” He was the trumpet player on the Merv Griffin Show in the early 1960's and played with the Playboy Club Orchestra for 7 years, he played at numerous resorts, and played for Broadway musicals. He was a devoted husband to his wife, Sue, who took great care of him in his final days, and also a beloved father, stepfather, grandfather, great grandfather, uncle, certified organic farmer, foodie, wine maker, and a dog & cat lover. He died peacefully in his sleep in a nursing home in Queens, NY.Needs VoteP. SunkelPhil SankelPhillip SunkelSunkelGil Evans And His OrchestraGerry Mulligan & The Concert Jazz BandJohn Scott Trotter And His OrchestraJimmy Giuffre & His Music MenPhil Sunkel's Jazz BandBig Swing Jazz BandDick Meldonian And His Orchestra + +317502Bob TricaricoRobert TricaricoSaxophonist, bassoonist and flute playerNeeds VoteBob TricariceBob TricarioBob TriscarioBobby TricaricoBobby TricarioRobert TricaricoRobert TricarioRoibert TricaricoGil Evans And His OrchestraThe NPG OrchestraThe Abnuceals Emuukha Electric Orchestra + +317503Budd JohnsonAlbert Jackson Johnson, Sr.American jazz saxophonist, clarinetist, arranger and singer +Born December 14, 1910 in Dallas, Texas, died October 20, 1984 of a heart attack in Kansas City, Missouri + +Brother of jazz trombonist [a140590], father of doo wop singer [a3171151], and grandfather of Hip-Hop artist [a134136]. During the 1930's he was the director of the Earl Hines orchestra. In the 1940's he wrote arrangements for the big bands of Billy Eckstine, Boyd Raeburn, Woody Herman and others. He was also involved with the early bebop movement. +Correcthttps://en.wikipedia.org/wiki/Budd_Johnsonhttps://www.allmusic.com/artist/budd-johnson-mn0000640725https://adp.library.ucsb.edu/names/105494"Bud" Johnson"Budd" JohnsonA. JohnsonAl JohnsonAlbert "Bud" JohnsonAlbert "Budd" JohnsonAlbert "Budd" Johnson*Albert 'Bud' JohnsonAlbert 'Budd' JohnsonAlbert Budd JohnsonAlbert J. JohnsonAlbert Jackson Johnson, SrAlbert Jackson Johnson, Sr.Albert JohnsonAlbert «Budd» JohnsonB. JohnsonB.JohnsonBud JohnsonBudd JohansonBuddy JohnsonH. BuddH. Johnson-BoboJohnsenJohnsonSud JohnsonБад ДжонсонQuincy Jones And His OrchestraGil Evans And His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraBudd Johnson's All StarsBilly Eckstine And His OrchestraBuck Clayton And His OrchestraEarl Hines And His OrchestraDizzy Gillespie SextetIllinois Jacquet And His OrchestraSy Oliver And His OrchestraColeman Hawkins And His OrchestraPete Johnson's All-StarsDeLuxe All Star BandGeorge Treadwell And His All StarsTony Scott And His OrchestraRay Brown All-Star Big BandThe Budd Johnson QuintetColeman Hawkins All StarsEarl Hines And His QuartetThe Quincy Jones Big BandHoward Biggs OrchestraThe International Jazz GroupGeorge E. Lee And His OrchestraBudd Johnson OrchestraDickie Wells' Big SevenThe JPJ QuartetThe Budd Johnson SeptetJimmy Jones' Big FourCharlie Shavers OctetEddie Locke SextetBudd Johnson QuartetThe Band That Plays The BluesDizzy Gillespie/Oscar Pettiford QuintetThe Keynoters (5) + +317616Heinz KambergHeinz KambergGerman clarinetistNeeds Votehttps://riasbigband-berlin.de/bilder/RIAS TanzorchesterWerner Müller Und Sein OrchesterKurt Widmann Und Sein OrchesterHeinz Becker Mit Seinen SolistenHeinz Becker BarquintettHeinz Becker Mit Seiner Musette-GruppeMetrophon-Bar-Quintett + +317850Baby CoxGertrude CoxJazz singer.Needs Votehttp://www.allmusic.com/artist/baby-cox-p221114/biography"Baby" CoxB. CoxBCBabe CoxCoxDuke Ellington And His OrchestraBaby Cox With Her Georgia Band + +317852Earl ColemanAmerican jazz singer. +Born : August 12, 1925 in Port Huron, Michigan. +Died : July 12, 1995 in New York City (Manhattan), New York. + +Earl worked with : Ernie Fields, Bardu Alì (1939), Jay McShann (1943), Earl Hines, Billy Eckstine, King Kolax, Charlie Parker, Howard McGhee, Fats Navarro, Max Roach, Gene Ammons, Art Farmer, Sonny Rollins, Gigi Gryce, Don Byas, Billy Taylor, Frank Foster, Elmo Hope and others. +Needs VoteC. ColemanColemanCy ColemanE. ColemanE. Colman + +317856Al HibblerAlbert George HibblerAmerican baritone vocalist, born 16 August 1915 in Tyro, Mississippi, USA, died 24 April 2001 in Chicago, Illinois, USA.Needs Votehttps://en.wikipedia.org/wiki/Al_Hibblerhttps://adp.library.ucsb.edu/names/109393"The Great" Al HibblerA. HibblerAl HibberAl HiblerAl RibblerAlbert HibbertAlbert HibblerAll HibblerHibblerHobblerアル・ヒブラーCount Basie OrchestraDuke Ellington And His OrchestraJohnny Hodges And His OrchestraAl Hibbler And His Orchestra + +317857Slim Gaillard And His OrchestraCorrectBulee 'Slim' GaillardSlim Gailard And His Internationally Famous OrchestraSlim Gaillard & His OrchestraSlim Gaillard And His International Famous OrchestraSlim Gaillard And His Internationally Famous OrchestraSlim Gaillard And OrchestraSlim Gaillard Et Sa FormationSlim Gaillard Et Son OrchestreSlim Gaillard OrchestraDizzy GillespieCharlie ParkerSlim GaillardLucky ThompsonDodo MarmarosaHoward McGheeZutty SingletonLeo WatsonMarshall RoyalJack McVeaTiny "Bam" Brown + +317859Ernestine AndersonErnestine Irene AndersonErnestine Anderson (born November 11, 1928, Houston, Texas, USA - died March 10, 2016, Seattle, Washington, USA) was an American jazz and blues singer. +In a career spanning more than five decades, she recorded over 30 albums.Needs Votehttp://www.myspace.com/ernestineandersonhttps://en.wikipedia.org/wiki/Ernestine_Andersonhttps://www.historylink.org/File/8520AndersonStene AndersonLionel Hampton And His OrchestraJohnny Otis And His OrchestraRussell Jacquet And His All StarsThe Concord All Stars + +317860Louis Armstrong And His OrchestraAmerican Jazz orchestra active from the 1920's to the 1950's led by [a38201].Needs Votehttps://adp.library.ucsb.edu/names/110492Armstrong And His OrchestraHis OrchestraL. Armstrong And His OrchestraLouis ArmstrongLouis Armstrong Y Su OrquestaLouis Armstrong & BandLouis Armstrong & His Orch.Louis Armstrong & His OrchestraLouis Armstrong & His Orchestra (Studio Orchestra)Louis Armstrong & Louis Armstrong OrchestraLouis Armstrong & OrchestraLouis Armstrong & Son OrchestreLouis Armstrong & Sua OrquestraLouis Armstrong &His OrchestraLouis Armstrong + His BandLouis Armstrong A. His OrchestraLouis Armstrong And His Big BandLouis Armstrong And His Dance OrchestraLouis Armstrong And His Orch.Louis Armstrong And His Orchestra (1925)Louis Armstrong And His Orchestra (1926)Louis Armstrong And His Orchestra (1932-1933)Louis Armstrong And His Orchestra (Chick Webb And His Orchestra)Louis Armstrong And His SolistsLouis Armstrong And OrchestraLouis Armstrong And The Ambassador OrchestraLouis Armstrong BigbandLouis Armstrong Con L'OrchestraLouis Armstrong E La Sua OrchestraLouis Armstrong Et Son OrchestraLouis Armstrong Et Son OrchestreLouis Armstrong I Njegov OrkestarLouis Armstrong Mit OrchesterLouis Armstrong Mit Seinem OrchesterLouis Armstrong OrchLouis Armstrong Orch.Louis Armstrong OrchestraLouis Armstrong Orchestra & ChorusLouis Armstrong U. S. OrchesterLouis Armstrong U. S. OrchestraLouis Armstrong U.S. OrchesterLouis Armstrong Und Sein OrchesterLouis Armstrong Und Sein Orchester Mit Englischem GesangLouis Armstrong With His OrchestraLouis Armstrong With Jazz Ensemble And ChoirLouis Armstrong With OrchestraLouis Armstrong With Orchestral AccompanimentLouis Armstrong With The Louis Armstrong OrchestraLouis Armstrong With The OrchestraLouis Armstrong Y La OrchestraLouis Armstrong Y Su ConjuntoLouis Armstrong Y Su OrquestaLouis Armstrong ed il suo celebre jazzLouis Armstrong's Orch.Louis Armstrong's OrchestraLouis Armstrong's Orchestra And ChorusLuis Armstrong Y Su OrquestaOrch. Louis ArmstrongOrchester Louis ArmstrongOrchestraOrchestra Louis Armstrong Orkestar Louis ArmstrongThe Great Louis Armstrong And His OrchestraThe Louis Armstrong OrchestraОркестр П/У Л. Армстронгаルイ・アームストロング楽団Ted Shawne And His OrchestraLouis ArmstrongRupert ColeCharlie GreenLionel HamptonKeg JohnsonDexter GordonJohnny WilliamsLouis JordanTeddy WilsonBobby HackettJoe GarlandEarl HinesCozy ColeSidney BechetBuck WashingtonArthur RolliniGeorge KoenigLawrence BrownLucky ThompsonAl CaseyRed NicholsBunny BeriganRed CallenderArt DrelingerGeorge James (2)Chick WebbDave BarbourGerald WigginsEddie LangHoagy CarmichaelJack TeagardenFulton McGrathWellman BraudZutty SingletonDon RedmanZilner RandolphHenry HicksMarvin JohnsonPrince RobinsonHomer HobsonJoe BaileyPerry BotkinMike McKendrickPete BriggsTubby HallAlbert NicholasLonnie Johnson (2)Harold ScottBernard AddisonEd AndersonJimmy StrongTed McCordJoe SullivanOtis JohnsonClaude JonesLouis BaconPreston JacksonJ.C. HigginbothamStan kingCrawford WethingtonHarry WhiteCastor McCordLuis RussellPaul BarbarinBert CurryLawrence LucieLester BooneLes HiteTeddy HillEdgar SampsonHenry PrinceGene Anderson (2)Greely WaltonBarney BigardHayes AlvisJohnny DoddsShelton HemphillFred RobinsonCharlie AlexanderPops FosterMancy CarrJohn LindsayEverett BarksdaleTrummy YoungMort HerbertBilly ButterfieldJoe TurnerSam WeissMidge WilliamsLeonard DavisSidney CatlettHaig StephensJoe BushkinLee BlairCarl FryeWilbur De ParisPete PetersonAl PhilburnGus AikenBingie MadisonGeorge WashingtonCharlie HolmesAl HallYank PorterTeddy McRaeHenry JonesBudd JohnsonMarshall RoyalJohnny BlowersDorothy DandridgeArvell ShawDick CaryEddie CondonDanny BarcelonaPeanuts HuckoMarty NapoleonJohn Brown (3)Nick FatoolBuddy ColeSam Taylor (2)Scotville BrownBill OldhamBob HaggartDave BowmanElmer WhitlockGeorge OldhamHenry "Red" AllenGeorge Matthews (2)Pete Clark (2)Harvey Brooks (2)Elmer James"Big Chief" Russell MooreMaceo JeffersonLeslie ThompsonHenry TyreeJack HamiltonPeter DucongeOliver TinesAlfred PrattHerman ChittisonJake HannaCarl KressZeke ZarchyTrigger AlpertJohn SimmonsCharlie Jones (2)Taswell BairdScoville BrownHenderson ChambersFriedrich HollaenderJimmy ArcheyJohn TrueheartCharlie BealKaiser MarshallEd MullensWill Johnson (2)Ceele BurkeJames WhitneyElmer WilliamsFud LivingstonGeorge OrendorffBill Perkins (2)Luther "Sonny" CravenMilt YanerDon RaffellNat JaffeWilliam BlueJimmy MooreDick JacobsAlfred MooreArthur DennisElmer WarnerDanny PerriBill StegmeyerPaul RicciAndrew Ford (3)Sid StoneburnEd SwanstonNorman GreeneGene PrinceFrank GalbraithBernard FloodJack GreenbergCarroll DickersonKenny JohnFletcher HerefordJules RubinHappy CaldwellWillie LynchAlbert Washington (2)Willard BrownRobert CusumanoAmos GordonThomas GriderEarl MasonLouis HuntBilly HicksAlton MooreCharlie GainesDick 'Dent' EcklesJesse Brown (4)Jack MayhewAdam Martin (2)Bob MayhewLeo "Snub" MosleyPhilip WaltzerSidney TruckerLester CurrantJames Harris (12)Philip ShukenSam BlankGeorge W. SmithMilton SchatzArthur DaveyBenny Hill (3)Wesley RobinsonEd Hayes (2)Ellsworth BlakeAlbert CiceroneJohn Sparrow (3)Waddet WilliamsNathaniel AllenEdmund McConneyDon Hill (5)Ernest Thompson (2)Louis GrayRobert Butler (4)Russ Phillips (2)Chiefy ScottGerman AragoLionel GuimaraesHoward Davis (8)Johnny McGhee (2)Emitt SlayTed BergrenIsrael RosenbaumBobby Guy (5)Earle PenneyAlex Massey (2)George Hall (15)Larry Anderson (11)Don Kirkpatrick (4)Willard Spencer (2)Anthony Roberts (15) + +317863Ernie AndrewsErnest Mitchell Andrews Jr.Jazz, blues & pop singer was born on December 25, 1927 in Philadelphia, Pennsylvania. Died February 21, 2022 + +Ernie Andrews has managed to be both popular and underrated throughout his lengthy career. After his family moved to Los Angeles, he sang in a church choir, and while still attending high school had a few hits for the G&G label. Billy Eckstine and Al Hibbler were early influences and, after reaching maturity, Andrews was somewhat in the shadow of Joe Williams (who has a similar style). Andrews recorded for Aladdin, Columbia, and London in the late '40s, spent six years singing with the Harry James Orchestra, and cut a couple of big band dates for GNP/Crescendo during 1958-1959. Despite his unchanging style, Andrews was mostly in obscurity during the 1960s and '70s, just making a couple of albums for Dot during 1965-1966. A 1980 Discovery date found him in excellent form, and in the '80s, he was rediscovered. Andrews recorded with the Capp/Pierce Juggernaut, Gene Harris' Superband, Jay McShann, and with the Harper Brothers, in addition to making a few sets in the 1990s for Muse, and later High Note. He is also prominent in the documentary: Blues for Central Avenue. +Needs Votehttp://www.ernieandrews.net/about---tours.htmlhttps://en.wikipedia.org/wiki/Ernie_Andrewshttps://www.imdb.com/name/nm0028651/https://www.latimes.com/entertainment-arts/music/story/2022-02-24/ernie-andrews-jazz-singer-mainstay-on-central-avenue-music-scene-dies-at-94https://adp.library.ucsb.edu/names/108042AndrewsErnie Andrews And His Orchestra + +317873Charlie Parker's Re-BoppersCorrectCharley Parker's Ree BoppersCharlie Parker All StarsCharlie Parker RebeboppersCharlie Parker ReboppersCharlie Parker Ree BoppersCharlie Parker Ree-BoppersCharlie Parker's Be Bop BoysCharlie Parker's Re-Boppers [Uncredited]Charlie Parker's RebeboppersCharlie Parker's ReboppersCharlie Parker's Ree BoppersCharlie Parker's Ree-BoppersCharlie Parker's Ri Bop BoysMiles DavisDizzy GillespieCharlie ParkerMax RoachCurly RussellSadik HakimArgonne Thornton + +317874Count Basie And The Kansas City SevenCorrectBasie's Kansas City SevenCount Basie & His Kansas City SevenCount Basie & The Kansas City 7Count Basie & The Kansas City 8Count Basie & The Kansas City SevenCount Basie And His Kansas City 7Count Basie And His Kansas City SevenCount Basie And The Kansas City 7Count Basie E Seu Conjunto Kansas City SevenCount Basie Kansas City 7Count Basie Kansas City SevenCount Basie's Kansas City 7Count Basie's Kansas City SevenKansas City SevenThe Count Basie Kansas City SeptemThe Kansas City SevenКаунт Бейси И Семеро Из Канзас-СитиFrank WessCount BasieLester YoungJo JonesFrank FosterBuck ClaytonThad JonesWalter PageEric DixonFreddie GreenEddie JonesSonny PayneDickie WellsRodney Richardson + +317876The Thelonious Monk QuintetUS jazz quintet, led by American jazz pianist and composer [a145256]Needs VoteMonk-QuintetQuintetThelonious Monk QuintetThelonius Monk QuintetArt BlakeyLarry GalesSahib ShihabThelonious MonkSonny RollinsMilt JacksonCharlie RouseClark TerryMax RoachGene RameyButch WarrenPercy HeathBen RileyOscar PettifordSam JonesRay CopelandCurly RussellFrank FosterPaul Chambers (3)Art TaylorPee Wee RussellBob PaigeIdrees SuliemanDanny Quebec WestGeorge TaittThad JonesJulius WatkinsAl McKibbonWillie JonesErnie HenryFrankie Dunlop + +317882The Tadd Dameron SextetCorrectTad Dameron SextetTadd Dameron SextetTadd Dameron's SextetTed Dameron SextetThe Tadd Demeron SextetCharlie RouseKenny ClarkeTadd DameronCurly RussellAllen EagerWardell GrayNelson BoydFats NavarroErnie HenryShadow WilsonRudy Williams + +317883Jelly Roll Morton's Red Hot PeppersEarly jazz recording group led by [a=Jelly Roll Morton] in Chicago from 1926, formed to make recordings for Victor, consisting at any one time of seven or eight of the best freelance players available.Needs Votehttp://www.redhotjazz.com/redhot.htmlhttps://adp.library.ucsb.edu/names/106012"Jelly Roll" Morton And His Red Hot Peppers"Jelly Roll" Morton's Red Hot PeppersFerdinand 'Jelly Roll' MortonHis Red Hot PeppersJ. R. Morton's Red Hot PeppersJell Roll Morton'S Red Hot Peppers Dance OrchestraJelly Roll MortonJelly Roll Morton And His Red Hot PeppersJelly Roll Morton & His Red Hot PeppersJelly Roll Morton & His Red Hot PeppersJelly Roll Morton & Red Hot PeppersJelly Roll Morton An His Red Hot PeppersJelly Roll Morton And His Red Hot PeppersJelly Roll Morton And His Red Hot Peppers And TrioJelly Roll Morton And The Red Hot PeppersJelly Roll Morton E I Suoi Red Hot PeppersJelly Roll Morton Red Hot PeppersJelly Roll Morton and His Red Hot PeppersJelly Roll Morton and his Red Hot PeppersJelly Roll Morton's & His Red Hot PeppersJelly Roll Morton's Red Hot PepperJelly-Roll Morton & His Red Hot PeppersJelly-Roll Morton And His OrchestraJelly-Roll Morton And His Red Hot PeppersJelly-Roll Morton's Red Hot PeppersJelly-Roll Morton's Red Hot Peppers OrchestraJerry Roll Morton And His Red Hot PeppersL. R. Morton And His Red Hot PeppersMorton's Red Hot PeppersRed Hot PeppersThe Red Hot Peppershis Red Hot Peppers«Jelly-Roll» Morton And His Red Hot PeppersCozy ColeWalter ThomasKid OryAlbert NicholasBernard AddisonJohnny St. CyrBubber MileyCharlie IrvisBarney BigardJohnny DoddsJohn LindsayJelly Roll MortonBilly Taylor Sr.Lee BlairWilbur De ParisBaby DoddsOmer SimeonBud ScottGerald ReevesJoe Thomas (6)Tommy BenfordGeorge Mitchell (3)Marty BloomDarnell HowardGeorge BaquetWalter BriscoeAndrew HilaireBarney AlexanderBill BenfordGeechie FieldsWard PinkettWilliam LawsErnest BullockStump EvansClarence BlackBoyd "Red" RossiterJ. Wright SmithRod RodriguezQuinn WilsonPaul Barnes (2)William Johnson (23) + +317884Jimmie Noone's Apex Club OrchestraNeeds Votehttp://oldtimeblues.net/tag/joe-poston/J. Noone & His Apex Club Orch.Jimmie Noon's Apex Club OrchestraJimmie NooneJimmie Noone & His Apex Club OrchestraJimmie Noone & His OrchestraJimmie Noone And His Apex Club OrchestraJimmie Noone And His Orch.Jimmie Noone Apex Club OrchestraJimmie Noone's And His Apex Club OrchestraJimmie Noone's Apex Club Orch.Jimmie Noone's Apex Jazz OrchestraJimmie Noone's Apex OrchestraJimmie Noones' Apex Club OrchestraJimmy Noone And His Apex Club OrchestraJimmy Noone Apex Club OrchestraJimmy Noone Et Son "Apex Club Orchestra"Jimmy Noone's Apex Club OrchestraKing Oliver & His Dixie SyncopatorsLuis Russell And His OrchestraConnie's Inn OrchestraThe Savannah SyncopatorsJimmie's Blue Melody BoysEarl HinesJimmie NooneJoe PostonBud ScottAlexander HillGeorge Mitchell (3)Johnny WellsLawson BufordMay AlixFayette WilliamsBill Newton (3)Junie CobbZinky CohnEddie PollackWilbur GorhamJohnny Allen (19) + +317885Red Nichols And His Five PenniesRed Nichols and his Five Pennies were one of the most popular bands of the New York Jazz scene of the 1920s. They recorded under a variety of different names, including the Arkansas Travelers, [a=The Red Heads], the [a=Louisiana Rhythm Kings], [a=The Charleston Chasers], [a=The Six Hottentots], The Hottentots and Miff Mole and his Little Molers. The band's style was often called "Chamber Jazz" by critics and for what it lacked in hot intensity it made up for with a cool somewhat detached, yet urban and sophisticated sound. In 1959 Hollywood made a highly fictionalized movie about the band called "The Five Pennies", starring Danny Kaye as Red Nichols. Correcthttp://www.redhotjazz.com/rn5p.htmlhttps://riverwalkjazz.stanford.edu/?q=program/crazy-rhythm-red-nichols-and-his-five-pennies"Bobbie""Red" Nichols And His Five Pennies"Red" Nichols And His PenniesLoring "Red" Nichols And His Five PenniesLoring "Red" Nichols And His Five PennisOrchestre Red Nichols And His Five PenniesRed Nicholls And His World Famous PenniesRed NicholsRed Nichols & His Five PenniesRed Nichols & His OrchestraRed Nichols & His World Famous PenniesRed Nichols & The Five PenniesRed Nichols 5 PenniesRed Nichols And Famous PenniesRed Nichols And His "Five Pennies"Red Nichols And His "Pennies" OrchestraRed Nichols And His (Augmented) Five PenniesRed Nichols And His 5 PenniesRed Nichols And His Famous PenniesRed Nichols And His Hot Five PenniesRed Nichols And His New OrchestraRed Nichols And His OrchestraRed Nichols And His Orchestra (Featuring His Five Pennies)Red Nichols And His PenniesRed Nichols And His Penny SymphonyRed Nichols And His World Famous PenniesRed Nichols And Hisd Five PenniesRed Nichols And The Augmented PenniesRed Nichols And The Five PenniesRed Nichols BandRed Nichols Five PenniesRed Nichols Und Seine Five PenniesRed Nichols Und Seine PenniesRed Nichols Y Los Cinco MonedasRed Nichols Y Sus 5 PeniquesRed Nichols Y Sus Cinco PeniquesRed Nichols and His Five PenniesRed Nichols y Sus Five PenniesRed Nichols' Five PenniesRed Nichols' PenniesRed Nicols & His Five PenniesThe CaptivatorsMiff Mole's MolersThe Six HottentotsThe Red HeadsGilbert Marsh's OrchestraRed NicholsJimmy DorseyEddie LangAdrian RolliniArthur SchuttBobby Jones (2)Mike BryanHarry YaegerBilly MaxtedFrank RayBilly SheperdVic BertonLeo McConvilleDudley FosdickPaul Collins (6)King JacksonBilly Wood (4) + +317887Gene Krupa And His OrchestraCorrectBandEnsembleGene KrupaGene Krupa & His OrchestraGene Krupa & His OrchestraGene Krupa & His New OrchestraGene Krupa & His Orch.Gene Krupa & His OrchestraGene Krupa & Orch.Gene Krupa & OrchestraGene Krupa & his Orch.Gene Krupa And His Chicago All-StarsGene Krupa And His New OrchestraGene Krupa And His OrchGene Krupa And His Orch.Gene Krupa And His Orchestra (1941-46)Gene Krupa BandGene Krupa E La Sua Orch.Gene Krupa E La Sua OrchestraGene Krupa E Sua OrquestraGene Krupa Og Hans OrkesterGene Krupa Orch.Gene Krupa OrchestraGene Krupa Se Svým OrchestremGene Krupa Und Sein OrchesterGene Krupa Y Su OrquestaGene Krupa y su OrquestaGene Krupa, His Drums & His OrchestraGene Krupa, His Drums And His OrchestraGene Krupa, His OrchestraOrch. Gene KrupaOrchestra Gene KrupaOrquesta Gene KrupaThe BandThe Gene KrupaThe Gene Krupa OrchestraДжаз-Оркестр Дж. КрупаLenny HambroJ.J. JohnsonJimmy ClevelandRoy EldridgeGene KrupaVido MussoAnita O'DayDanny BankBarry GalbraithNick TravisCharlie VenturaTeddy NapoleonDon FagerquistKai WindingAaron SachsBernie GlowErnie RoyalCharles McCamishAl PorcinoDave McKennaCutty CutshallEdmond HallRed RodneySam MarowitzTommy PedersonJoe TriscariJoe BushkinBob SnyderBob KitsisAl HallErnie CaceresDick TaylorMilt RaskinShorty SherockHal McKusickMoe SchneiderClyde NewcombWild Bill DavisonEddie ShuTony Russo (2)Warren CovingtonRay TriscariJoe FerranteTeddy WaltersHarry TerrillCharlie KennedyIrene DayeGeorge SiravoBruce SquiresHorace RollinsSam MusikerJoe KochJohn DrewGraham YoungJohn BelloTasso HarrisTed BlumeRemo BiondiClint NeagleyPinky SavittMickey ManganoBob StrahlEdward CorneliusFred OhmsTommy GonsoulinEd MihelichEddie YanceJohnny BothwellCarl ElmerJoe SpringerJoe DaleJack SchwartzHy WhiteAl BeckBob AscherHoward DuLanyNorman MurphyPat VirgadamoMusky RuffoRudy NovakWalter BatesJay KelliherBiddy BastienTorg HaltenBabe WagnerCarolyn GreyLeon CoxTom DiCarloJohn GrassiSam ListengartFrank WorrellBill CulleyBill HitzIrv LangVince HughesStuart Olsen (2)Joe MegroBob LesherPaul Powell (5)Tony D'AmoreEmil MazaneoJimmy MillazzoEd BadgleyDon BrassfieldNick GaglioBenny FemanLouis Zito (2)Al JordanAndy PinoDave SchultzeBen SeamanNick ProsperoMike TriscariBill Conrad (2)Mitch MelnickRandy BellerjeanBuddy NealTony AnelliCarl BiesackerJack Zimmerman (2)Bob Curtis (2)Clay HerveyBob MunozBuddy WiseStan DoughtyGeorge Walters (2)Gordon BoswellJulius EhrenworthJimmy MiglioreLarry Patton (2)Tommy Lucas (3)Randall BellerjeauRex Kitting + +317889Frankie Trumbauer And His Orchestra1920s/1930s jazz danceband.Needs VoteF. Trumbauer y OrquestaFr. Trumbauer And His OrchestraFranck Trumbauer And His OrchestraFrank Trombar's OrchestraFrank Trumbauer & His OrchestraFrank Trumbauer And His OrchestraFrank Trumbauer OrchestraFrankie Trambauer & His OrchestraFrankie Trumauer And His Orch.Frankie TrumbauerFrankie Trumbauer & BandFrankie Trumbauer & His EnsembleFrankie Trumbauer & His Orch.Frankie Trumbauer & His OrchestraFrankie Trumbauer And His Augmented OrchestraFrankie Trumbauer And His Orch.Frankie Trumbauer E La Sua OrchestraFrankie Trumbauer Et Son OrchestreFrankie Trumbauer Og Hans Ork.Frankie Trumbauer OrchestraFrankie Trumbauer With His OrchestraFrankie Trumbauer With His Orchestra And His Rhythm BoysFrankie Trumbauer Y Su OrquestaFrankie Trumbauer's Augmented OrchestraFrankie Trumbauer's New Rhythm OrchestraFrankie Trumbauer's OrcestraFrankie Trumbauer's OrchFrankie Trumbauer's Orch.Frankie Trumbauer's OrchestraFrankie Trumbauer's Orchestra With BixOrchestraOrquesta Frankie TrumbauerTrumbauer And His OrchestraАнсамбль Ф. ТрамбауэраОрк. п. у. ТрумбауэрTom Barker And His OrchestraRussell Gray And His OrchestraGlenn MillerBing CrosbyPee Wee RussellArtie ShawBunny BeriganJoe VenutiRuss CaseBix BeiderbeckeJimmy DorseyIzzy FriedmanRoy BargyChauncey MorehouseFrank SignorelliMin LeibrookEddie LangHarry GaleBill RankDon Murray (2)Steve Brown (2)Hoagy CarmichaelHowdy QuicksellAdrian RolliniJack TeagardenItzie RiskinFrankie TrumbauerDoc RykerLennie HaytonGeorge Van EpsRed NorvoLarry BinyonCharles StrickfadenJohn CordaroKurt DieterleArt MillerNat NatoliHarry GoldfieldMutt HayesJack FultonStan kingMatty MalneckCharlie TeagardenChester HazlettWilbur HallHerb QuigleyAndy SecrestMildred BaileyArtie BernsteinHal MatthewsPierre OlkerJohnny MincePee Wee ErwinJack LaceyBob HaggartDave BowmanCarl KressBenny BonaccioTrigger AlpertFud LivingstonHarry BarrisMischa RussellMiff MoleSeger EllisHarold McDonaldEd WadeHarold "Scrappy" LambertBobby Davis (4)Charles GaylordRube CrozierMax ConnettCharlie MargulisGeorge Marsh (2)Eddie "Snoozer" QuinnMarlin HurtGeorge Rose (2)Paul Madeira MertzHelen RowlandHerman CroneLionel HallJack Williams (16)Jack ShoreDee OrrCraig LeitchCharles McConnellDan GaebeGale StoutCedric SpringMarty LivingstonJohnny Blake (4)Leroy BuckHarold Jones (12)Cappy KaplanMalcolm ElstadVance RiceJohnny Ross (6)Connie BlessingJoe KieferJoe SchlesDave Becker (7)Bernie BahrDel MentonDick DunneHoward Lamont + +317893Meade "Lux" LewisMeade Anderson LewisAmerican jazz pianist. +Born in September 1905 (on September 3rd, 4th, or 13th, according to various sources) in Louisville, Kentucky. +Lewis was hit and killed by a drunk driver after a performance on June 7, 1964. +A 1927 rendition of “Honky Tonky Train Blues” on the Paramount Records label was his recording debut. He also appeared in the movies “New Orleans” (1947) and “Nightmare” (1956). +Needs Votehttp://en.wikipedia.org/wiki/Meade_Lux_LewisLewisLewis MeadeLuxLux LewisM. "Lux" LewisM. L. LewisM. LewisM. Lewis/Meade/Lux.M. Lux LewisM.I. LewisM.L. LewisM.LewisMLLMaede LewisMaede Lux LewisMead "Lux" LewisMead (Lux) LewisMead LewisMead Lux LewisMeadeMeade 'Lux' LewisMeade (Lux) LewisMeade - Lux - LewisMeade <Lux> LewisMeade Anderson "Lux" LewisMeade LewisMeade Lux LewisMeade [Lux] LewisMeade “Lux” LewisMeade-Lux-LewisMeadelux LewisEdmond Hall Celeste QuartetSidney Bechet QuintetThe Boogie Woogie TrioThe Port Of Harlem SevenPort Of Harlem JazzmenAlbert, Meade, Pete And Their Three PianosJ.C. Higginbotham QuintetFrank Newton Quintet + +317895Fletcher Henderson And His OrchestraJazz band formed by [a=Fletcher Henderson] in 1923, which continued until 1939, after which Fletcher re-assembled bands of his own for short periods during the following decade, working mostly in New York, Los Angeles, and Chicago. Henderson previously led the [a=Black Swan Dance Orchestra] in 1921, followed the same year by [a=Henderson's Dance Orchestra] and [a=Henderson's Dance Players] in 1923. + +(If you add an alias, please add it to this list) +Known aliases used on labels such as [l=Silvertone], [l=Resona], [l=Federal (3)], [l=Domino (2)], [l=Crown (8)], [l=Cardinal (11)], [l=Puritan], [l=Broadway (9)], [l=Famous (6)], [l=Clarion (7)], [l=Grey Gull], [l=Radiex]: +- [a=The Baltimore Bell Hops] +- [a=The Dixie Stompers] +- [a=Billy James' Dance Orchestra] +- [a=Broadway Music Makers] +- [a=The Carolinians] ([l=Federal (3)] & [l=Silvertone]) +- [a=Connie's Inn Orchestra] / [a=Fletcher Henderson And His Connie's Inn Orchestra] ([l=Melotone]) +- [a=Corona Dance Orchestra] +- [a=Cotton Blossom Orchestra] +- [a=Duke Of Harlem & His Flunkies] +- [a=Frisco Syncopators] ([l=Paramount]) +- [a=Henri Gendron & His Strand Roof Orchestra] +- [a=Henderson's Roseland Orchestra] +- [a=Henderson's Wonder Boys] +- [a=Sam Hill And His Orchestra] +- [a=National Music Lovers Dance Orchestra] & [a=Music Lovers Dance Orchestra] +- [a=Manhattan Musicians] ([l=National Music Lovers] & [l=New Phonic]) +- [a=Pennsylvania Syncopators] +- [a=Rialto Dance Orchestra] +- [a=Seven Brown Babies] +- [a=The Savannah Syncopators] +- [a=Six Black Diamonds] +- [a=The Louisiana Stompers]Needs Vote(Fletcher) Henderson's OrchestraConnie's Inn Orchestra (Fletcher Henderson And His Orchestra)F. Henderson And His OrchestraF. Henderson And OrchestraF. Henderson OrchestraFletcher Anderson OrchestraFletcher HendersonFletcher Henderson & And His OrchestraFletcher Henderson & His BandFletcher Henderson & His OrchFletcher Henderson & His Orch.Fletcher Henderson & His OrchesaFletcher Henderson & His OrchestraFletcher Henderson And His BandFletcher Henderson And His Orch.Fletcher Henderson And His “Swing” BandFletcher Henderson Et Son OrchestreFletcher Henderson His OrchestraFletcher Henderson Orch.Fletcher Henderson OrchestraFletcher Henderson Und Sein OrchesterFletcher Henderson Y Su OrquestaFletcher Henderson's Dance OrchestraFletcher Henderson's Orch.Fletcher Henderson's OrchestraFletcher Hennderson & His OrchestraFletcher's OrchestraHenderson And His OrchestraHenderson's Orch.Henderson's OrchestraJazz BandMembers Of The Fletcher Henderson OrchestraOrchestraOrchestra Fletcher HendersonOrchestre Fletcher HendersonOrchestre de Fletcher HendersonThe Fletch Anderson OrchestraThe Fletcher Henderson OrchestraThe Louisiana StompersОркестр Ф. ХендерсонаФлетчер Хендерсон И Его Оркестрフレッチャー・ヘンダーソン楽団The Dixie StompersThe Louisiana StompersFletcher Henderson And His Connie's Inn OrchestraConnie's Inn OrchestraThe Southern SerenadersFrisco SyncopatorsThe Baltimore Bell HopsRialto Dance OrchestraSeven Brown BabiesDuke Of Harlem & His FlunkiesThe Stokers Of HadesTed Williams And His Famous PlayersBrown's Dixieland OrchestraParamount Novelty OrchestraHenderson's Roseland OrchestraHenderson's Wonder BoysSam Hill And His OrchestraOstend Society OrchestraLouis ArmstrongCharlie GreenKeg JohnsonColeman HawkinsFats WallerBen WebsterLester YoungRoy EldridgeRussell ProcopeIrving RandolphBuster BaileyJohn KirbyBenny CarterEddie BarefieldRussell SmithLeon "Chu" BerryJimmy HarrisonDon RedmanHorace HendersonClarence HolidayBernard AddisonClaude JonesWalter JohnsonRalph EscuderoCharlie DixonRex StewartTommy LadnierEd CuffeeJ.C. HigginbothamFletcher HendersonHilton JeffersonHarlan LattimoreJune ColeLawrence LucieArville HarrisEdgar SampsonFred RobinsonBobby StarkSandy WilliamsJoe Smith (3)Benny MortonEmmett BerrySidney CatlettDick VanceBudd JohnsonJoe Thomas (4)Dickie WellsHenry "Red" AllenElmer JamesTeddy NixonIsrael CrosbyHoward Scott (2)Kaiser MarshallJohn McConnellFranz JacksonHuey LongElmer WilliamsElmer ChambersHarvey BooneBob LesseyJerome PasquallFernando ArbelloAlbert WynnBilly FowlerErnest ElliottVictor EngleKatherine Handy LewisEdgar Campbell (3)Lois DeppeAllie RossFreddy White (2)Del ThomasJoe Brown (22)Lonnie BrownWillie Wells (3)John DickensWoodrow Key (2)Elisha HannaMatthew Rucker + +317897Gene Norman's "Just Jazz"CorrectGene Norman "Just Jazz" ConcertGene Norman's "Just Jazz" ConcertGene Norman's Just JazzBarney KesselArnold RossVido MussoDon LamondErnie RoyalWardell GrayHoward McGheeHarry Babasin + +317901The Chocolate DandiesThe Chocolate Dandies was a name used by a number of different jazz ensembles in the United States from the 1920s into the 1940s. + +The name "Chocolate Dandies" originally came from a 1924 stage show written by Eubie Blake and Noble Sissle. A unit led by Don Redman was the first to record with it on the Okeh label in 1928-1929. He also recorded with McKinney's Cotton Pickers and released material with that ensemble under this name. Benny Carter had several ensembles in the 1930s which he called the Chocolate Dandies; versions of these groups continued to play into the 1940s, and counted among their members Coleman Hawkins, Max Kaminsky, Floyd O'Brien, Buck Clayton, and other members of Carter's and Fletcher Henderson's bands.Needs Votehttp://en.wikipedia.org/wiki/The_Chocolate_Dandieshttp://www.redhotjazz.com/chocolate.htmlhttps://adp.library.ucsb.edu/names/108534Benny Carter And His Chocolate DandiesBig Chocolate DandiesChoc. DandiesChocolate DandiesColeman Hawkins And The Chocolate DandiesColeman Hawkins' Chocolate DandiesLes Chocolate DandiesLos "Chocolate Dandies"The Chocolate Dandies (McKinney's Cotton Pickers)The Chocolate Dandies CarterThe Chocolate Dandies Under The Direction Of Benny CarterThe Chocolates DandiesThe Little Chocolate DandiesColeman HawkinsFats WallerTeddy WilsonBen WebsterRoy EldridgeJohn KirbyBenny CarterBuck ClaytonAl GreyGeorge ThomasChick WebbLeon "Chu" BerryJimmy HarrisonDon RedmanPrince RobinsonHorace HendersonDave WilbornBernard AddisonLangston CurlClaude JonesRalph EscuderoRex StewartJ.C. HigginbothamCyrus St. ClairTodd RhodesLawrence LucieCuba AustinBobby StarkLeonard DavisSidney CatlettMax KaminskyGeorge StaffordJohn SimmonsMilton SeniorBenny JacksonFloyd O'BrienErnest Hill (2)John Nesbitt + +317903Bennie Moten's Kansas City OrchestraIn the late 1920s, [a=Bennie Moten]'s Kansas City Orchestra was the most successful Jazz band of the Midwest. The band toured all over the country and had a top selling recording in 1927 for Victor named "South". In 1929, the young [a=Count Basie] of The Blue Devils joined the band, and several other members of that band soon followed. Among them were bass player [a=Walter Page], trumpeter [a=Hot Lips Page], vocalist [a=Jimmy Rushing] and guitarist [a=Eddie Durham] (the first guitarist to experiment with proto-amplifiers, in the solo of [i]Band Box Shuffle[/i] in October 1929). + +The acquisition of all these members of the Blue Devils caused the exodus of long-time Moten Band members [a=Thamon Hayes] and [a=Harlan Leonard], who founded their own ensemble. + +When Moten hired [a=Ben Webster] and [a=Eddie Barefield] in 1932, the modernization of the band was complete. Later that same year, Moten recorded [i]Moten's Swing[/i], one of the first recordings to use a riff, the foundation of Kansas City jazz. + +Count Basie took over the band after Moten's death in 1935. +Needs Votehttp://www.redhotjazz.com/bmkc.htmlB. Moten's Kansas City Orch.BMKCOBennie Morten’s Kansas City Orch.Bennie MotenBennie Moten & His Kansas City OrchestraBennie Moten & His OrchestraBennie Moten And His Kansas City OrchestraBennie Moten And His OrchestraBennie Moten K.C. Orch.Bennie Moten Kansas City OrchestraBennie Moten OrchestraBennie Moten and His Kansas City OrchestraBennie Moten and His OrchestraBennie Moten's KC OrchestraBennie Moten's Kansas City JazzBennie Moten's Kansas City Orch.Bennie Moten's Kansas City OrquestaBennie Moten's OrchestraBenny Moten And His Kansas City OrchestraBenny Moten And His OrchestraBenny Moten's Kansas City OrchestraEarl Hines & His OrchestraThe Bennie Moten's Kansas City Orchestraベニー・モーテン楽団Count BasieEddie DurhamBen WebsterLester YoungEddie BarefieldHot Lips PageWalter PageJimmy RushingLammar WrightBennie MotenJoe KeyesJack WashingtonEd LewisDan MinorPaul WebsterHarry CooperLeroy BerryThamon HayesLaForest DentWoody WalderBooker WashingtonWillie McWashingtonVernon PageHarlan LeonardPrince Dee StewartBuster MotenWilliam Little Jr.Sam TallWillie Hall (4)George Tall + +317906Jimmie Lunceford And His OrchestraBig Band led by [a=Jimmie Lunceford]. + +Vocal groups associated with the orchestra: [a=Lunceford Trio], [a=The Lunceford Quartet], or the [a=Lunceford Glee Club] (arranged by [a=Sy Oliver]).Needs Votehttps://adp.library.ucsb.edu/names/111907BandEnsembleEnsemble Jimmie Lunceford And His OrchestraEnsemble-Entire Lunceford OrchestraEntire Lunceford Orch.Entire Lunceford OrchestraJ. LuncefordJ. Lunceford And His Orch.J. Lunceford OrchestraJimmie LuncefordJimmie Lunceford & His Orch.Jimmie Lunceford & His OrchestraJimmie Lunceford & OrchestraJimmie Lunceford And His BandJimmie Lunceford And His OrchJimmie Lunceford And His Orch.Jimmie Lunceford And His Orchestra With Vocal ChorusJimmie Lunceford Et Son OrchestreJimmie Lunceford OrchJimmie Lunceford Orch.Jimmie Lunceford OrchestraJimmie Lunceford U. S. OrchesterJimmie Lunceford Und Sein OrchesterJimmie Lunceford Y Su OrquestaJimmie Lunceford's BandJimmie Lunceford's OrchestraJimmie Lunceford, His Orchestra And ChorusJimmie Lunchford And His OrchestraJimmie Lundceford And His OrchestraJimmy & Lunceford's OrchestraJimmy Lunceford & His OrchestraJimmy Lunceford & HIs OrchestraJimmy Lunceford & His BandJimmy Lunceford & His Orch.Jimmy Lunceford & His OrchestraJimmy Lunceford And BandJimmy Lunceford And His OrchestraJimmy Lunceford And OrchestraJimmy Lunceford BandJimmy Lunceford E la Sua OrchestraJimmy Lunceford Et Son OrchestreJimmy Lunceford Orch.Jimmy Lunceford OrchestraJimmy Lunceford With His OrchestraJimmy Lunceford Y Su OrquestaJimmy Lunceford's OrchestraJmmy Lunceford And His OrchestraLunceford OrchestraMembers Of The Jimmie Lunceford OrchestraMembers Of The OrchestraOrch. Jimmy LuncefordOrchestraOrchestra Jimmie LuncefordQuartetThe BandThe Great Jimmie Lunceford OrchestraThe Jimmie Lunceford BandThe Jimmie Lunceford OrchestraThe Lunceford OrchestraThe Original Jimmie Lunceford OrchestraThe Original Jimmy Lunceford OrchestraДжимми Лансфорд И Его ОркестрJimmie Lunceford And His Chickasaw SyncopatorsJimmie Lunceford And His Harlem ExpressChickasaw SyncopatorsLunceford Glee ClubGerald WilsonEddie DurhamSy OliverSnooky YoungJoe MarshallBenny WatersTrummy YoungJimmie LuncefordDan GrissomHarry "Pee Wee" JacksonAl NorrisEddie TompkinsRussell BowlesEdwin WilcoxJimmy CrawfordPaul WebsterEarl CarruthersMoses AllenElmer CrumbleyWillie Smith (2)Joe Thomas (3)Omer SimeonTruck ParhamEarl HardyJohn EwingBob Mitchell (2)Freddie WebsterHenry WellsErnest PurceRostelle ReeseLaForest DentTeddy Buckner (2)Tommy StevensonFernando ArbelloWilliam Scott (3)Joe Williams (11)Ed Brown (4)Russell GreenJohn Mitchell (19)Nick BrooksAl King (5)Kurt BradfordCharlie Stewart (4)James Williams (29)Ralph GriffinKirtland BradfordLee Howard (5) + +317907Lionel Hampton And His OrchestraAmerican swing and bebop jazz orchestraNeeds Votehttps://adp.library.ucsb.edu/names/106526L'Orchestre De Lionel HamptonL. Hampton And His OrchestraLinel Hampton&His OrchestraLionelLionel And BandLionel HamptonLionel Hampton & His OrchestraLionel Hampton & His BandLionel Hampton & His Big OrchestraLionel Hampton & His OrchLionel Hampton & His Orch.Lionel Hampton & His OrchestraLionel Hampton & Orch.Lionel Hampton & OrchestraLionel Hampton (Drums Solo) And His OrchestraLionel Hampton (With Orchestra)Lionel Hampton And OrchestraLionel Hampton And BandLionel Hampton And EnsembleLionel Hampton And His All-StarsLionel Hampton And His BandLionel Hampton And His Big OrchestraLionel Hampton And His OctetLionel Hampton And His Orch.Lionel Hampton And His SeptetLionel Hampton And Orch.Lionel Hampton And OrchestraLionel Hampton AndOrchestraLionel Hampton E La Sua OrchestraLionel Hampton Et OrchestreLionel Hampton Et Son EnsembleLionel Hampton Et Son Grand OrchestreLionel Hampton Et Son OrchestreLionel Hampton Mit Seinem OrchesterLionel Hampton OrchLionel Hampton Orch.Lionel Hampton OrchestraLionel Hampton Orchestra 1944Lionel Hampton OrkestereineenLionel Hampton U. S. OrchesterLionel Hampton Und OrchesterLionel Hampton Und Sein OrchesterLionel Hampton With "The Big Band"Lionel Hampton Y OrquestaLionel Hampton Y Su OrquestaLionel Hampton u. s. OrchesterLionel Hampton und sein OrchesterLionel Hampton's Orch.Lionel Hampton's OrchestraOrchestra Lionel HamptonOrchestre Lionel HamptonOrquesta Lionel HamptonThe Lionel Hampton Big OrchestraThe Lionel Hampton OrchestraVocal GroupWith His Quartetライオネル・ハンプトン楽団Quincy JonesDonald ByrdKenny BurrellDizzy GillespieRicky FordJerome RichardsonBilly BrooksJonah JonesJimmy ScottWes MontgomeryLionel HamptonDexter GordonMilt BucknerMonk MontgomeryWade MarcusArt FarmerCharles MingusJohnny GriffinAlan DawsonColeman HawkinsJimmy ClevelandWade LeggeEarl BosticIllinois JacquetBen WebsterCozy ColeGigi GryceJohnny HodgesMilt HintonRussell ProcopeClyde HartMezz MezzrowGene KrupaHarry GoodmanVido MussoArthur RolliniBobby BennettCootie WilliamsJerry JeromeBuster BaileyGeorge KoenigJohn KirbyBenny CarterJess StacyHymie SchertzerClifford BrownGeorge DorseyAl CaseyErnie RoyalBobby PlaterAl GreyCharlie FowlkesFreddie GreenSnooky YoungJoe WilderBritt WoodmanVirgil JonesJackie KelsoDanny BarkerAnthony OrtegaThomas ChapinCharlie PersipArthur HoyleLeon "Chu" BerryZutty SingletonLammar WrightSonny GreerJoe SullivanEdgar SampsonArtie BernsteinEdmond HallJoe NewmanCat AndersonAl SearsArnett CobbAllan ReussOscar MooreAllen DurhamBilly Taylor Sr.Charlie ChristianWesley PrinceBenny PowellErnestine AndersonBarry RiesClifford ScottSonny ParkerMarshall RoyalWini BrownBuster CooperCurley HamnerBenny BaileyIrving AshbyAl KillianTeddy BucknerJack McVeaBobby TuckerGeorge JenkinsMorris LaneRay PerryToots MondelloJoe ComfortWendell CulleyCharles StephensDoug MillerEddie PazantJimmy NottinghamEddie PrestonLou BlackburnDuffy JacksonBooty WoodFred RadcliffePaul JeffreyClifford SolomonScoville BrownEddie WilliamsWallace DavenportJoe Evans (3)Eddie ChambleeWalter FullerBilly MackelPeter BadieJay PetersEd MullensJohn GordonAl SpieldockKarl GeorgeOscar DennardSam Turner (2)Gus EvansHarry SloanLamar Wright (2)Roy McCoyAl HayesCharles Harris (2)Vernon PorterLuther "Sonny" CravenVernon KingFred BeckettVernon AlleyJoe Morris (2)Dave PageTed SinclairAndrew PennJohn Marshall (7)Alfred "Chippy" OutcaltLawrence BurganFreddie SimonEarl WalkerWalter Williams (3)Ben KynardLonnie ShawAndrew McGheeL. LeeAdam BrennerJerry WeldonDave SchumacherRick VisoneRobert TrowersJohn PendenzaAl BryantChris GulhaugenVince CutroLee RomanoAlbert "June" GardnerWalter "Phatz" MorrisRicky BrauerDave GonsalvesAlan Simon (2)Johnny BoardTodd CoolmanEllis BarteeCurtis LoweLarry Wilson (3)John MeheganEric Miller (8)James WormickDave GonzalesGeorge Jones (5)John ColianniMalta (3)Herman GreenClarence WatsonHaleem RasheedOscar EstellErnest AshleyJames ArakiHerbie FieldsHarold RobertsDuke GarretteRoy Johnson (3)Leo ShepherdPaul Lee (5)John Sparrow (3)Dardanelle BreckenbridgeJohnny Morris (8)Spencer OdomJerry SokolovLester Bass (2)Abdul Hamid (2)James Robinson (16)Gene Morris (3)Billy Williams (31)Harry Finkelman + +317908The Bud Powell TrioCorrectBud PowellBud Powell TrioBud Powell's Trioバド • パウエルバド・パウエル・トリオBud PowellBuddy RichCharles MingusKenny ClarkeMax RoachPierre MichelotRay BrownSam Jones"Philly" Joe JonesJimmy WoodeCurly RussellOsie JohnsonArt TaylorGeorge DuvivierNiels-Henning Ørsted PedersenSune SpångbergJoe Harris (3)Torbjörn HultcrantzWilliam Schiöpffe + +317957Karl-Heinz HahnGerman classical and jazz clarinetist.Needs VoteKarlheinz HahnMünchner PhilharmonikerMünchner Nonett + +317969Max JourdainBass and bandoneon playerNeeds VoteOrchestre Philharmonique De StrasbourgCharly Oleg Et Son Quartette + +318148Jon JoyceAmerican vocalist and cellist. +Born on January 5, 1947 in Los Angeles Co., California, USA. +Son of choral directors/singers [a1110846] & [a887886]. Brother of singers [a696833] and [a717699]. +He has extensive choral credits with artists such as Elton John, Pink Floyd, Frank Sinatra, Barry Manilow and Barbara Streisand.Needs Votehttps://www.imdb.com/name/nm0431556/https://www.feenotes.com/database/artists/joyce-jon-5th-january-1947-present/https://www.benningviolins.com/violin-shop-cellos-cellist-jon-joyce-biography.htmlJhon JoyceJohn JoyJohn JoyceJohn JoyeeJon JoyEleventh HourHollywood Film ChoraleThe Bleeding Heart BandPaul Johnson VoicesDisco J.J.S.Patrick Williams Choir + +318371City Of London SinfoniaEnglish chamber orchestra based in London, founded by [a683292] in 1971 as [a2023920], it changed its name to City of London Sinfonia (CLS) in 1979. It has been resident orchestra at Opera Holland Park since 2004. +Richard Hickox remained its music director and artistic director until his death in November 2008. Its current music director is [a895999] and its current principal conductor is [a730834]. Past guest conductors have included [a434026] and [a754979].Needs Votehttps://cityoflondonsinfonia.co.uk/https://en.wikipedia.org/wiki/City_of_London_Sinfoniahttps://www.operahollandpark.com/city-of-london-sinfonia/https://www.naxos.com/Bio/Person/City_of_London_Sinfonia/46239https://www.imdb.com/name/nm2375335/https://www.youtube.com/user/CityofLondonSinfoniahttps://www.x.com/CityLdnSinfoniahttps://www.facebook.com/cityoflondonsinfonia/https://www.linkedin.com/company/city-of-london-sinfoniaCLSCity Of London Barogue SinfoniaCity Of London Baroque OrchestraCity Of London Baroque SinfoniaCity Of London OrchestraCity Of London Sinfonia Brass QuintetCity Of London Sinfonia Brass, TheCity Of London Symphony OrchestraCity Og London SymphoniaCity of London Baroque SinfoniaLondon SymphoniaMembers Of City Of London SinfoniaMembers Of The City Of London SinfoniaMembres Du City Of London SinfoniaSinfonia LondonSinfonia Of LondonSinfonia Of London OrchestraSinfonia StringsSymphonia Of LondonThe Baroque Orchestra Of LondonThe CIty Of London SinfoniaThe City Of London SinfoniaThe City of London SinfoniaThe London SinfoniaThe Sinfonia Of LondonThe Sinfonia Of London Orch.Оркестр "Симфония Лондона"シティ・オブ・ロンドン・シンフォニアThe Richard Hickox OrchestraAnn MorfeeJane CarwardineGlyn MatthewsSimon StandageFiona McCapraRobin JeffreyMartin BurgessCorin LongDavid RixLynda HoughtonCrispian Steele-PerkinsChristopher HookerMia CooperMatthew SouterJudith HerbertStephen WickClare HayesFiona BondsWilliam SchofieldStephen TeesStephen OrtonDouglas BoydJoely KoosRuth FunnellRuth RogersNicholas KraemerAlastair RossNicholas WardNick BettsCharles FullbrookStephen LaytonCatherine EdwardsDavid ArcherRaphael WallfischRoger BrennerKaren Jones (3)David BlackadderStephen StirlingDan JenkinsEdward BarryElizabeth RandellDuke DobingAndrew WatkinsonRobert Jordan (2)Helen McQueenPeter Harvey (2)Rachel MastersAnthony CrossJeremy CornesRebecca Scott (2)Katherine SpencerGabrielle PainterKasia ElsnerStephen MawJohn Young (14)Katie HellerJoanna GrahamShuna WilsonRuth McDowallTim CaisterDeborah Davis (2)Francesca BarritDerek HanniganSusan DoreyMichael MeeksRebecca Jones (4)Charlotte ReidAnneke HodnettAlexandra WoodUrsula LeveauxRebecca Knight (2)Markus Van HornAmos Miller (2)Daniel BatesMark Paine + +318476Bobby HebbRobert Von HebbAmerican singer and songwriter born July 26, 1938 in Nashville, Tennessee and died August 3, 2010 in Nashville, Tennessee (aged 72). He is best known for his 1966 writing and recording of track "Sunny".Needs Votehttp://www.allmusic.com/artist/p30356http://en.wikipedia.org/wiki/Bobby_Hebbhttps://repertoire.bmi.com/Search/Catalog?Num=4%252fot31%252bzEq9JkGfRnr35yg%253d%253d&Cae=MMVR5PXQbikk1AskF1K8rw%253d%253d&Search=%7B%22Main_Search_Text%22%3A%22Hebb%20Robert%22%2C%22Sub_Search_Text%22%3A%22%22%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&PartType=WriterList&ResetPageNumber=True&PartIdSub=YO0HedHMatLb45JzS23DVw%253d%253dB HebbB. HebbB. HabbB. HebB. HebbB. HebbsB. HeebB. HeppB. HerbB. HewB. HobbB. WebbB. Webb.B. hebbB.HebbB.HubbBob HebbBobb HebbBobbie HebbBobby CheebbBobby HeadBobby HebBobby HeggBobby HelbBobby HeppBobby HerbBoby HebbE. HebbE. Hebb - B. HebbH. HebbHebbHebb / BobbyHebb BobbyHebb, BobbyHepHeppHerbHobbHobby HebbJ. HebbJ. WebbMr. HebbN. HebbR. HebbRobert HebbWebbБ. ХеббБобби ХеббНеввХеббボビー・へブボビー・ヘブポピー・ヘプBobby & Sylvia + +318576Victor GaskinRoderick Victor GaskinAmerican jazz bassist. Born The Bronx, New York, November 23, 1934, died July 14, 2012 in Frederiksted, U.S. Virgin IslandsNeeds Votehttps://en.wikipedia.org/wiki/Victor_GaskinVic GaskinVic GatskyVict GaskinVictorVictor GuskinВиктор ГэскинRoderick GaskinThe CrusadersBilly Taylor TrioThe Cannonball Adderley QuintetDuke Ellington And His OrchestraLes McCann Ltd.The Paul Horn QuintetBilly Taylor Quartet + +318614Utako IkedaClassical flautist and teacher, who died in 2018.Needs VoteUta IkedaUtaka IkedaPortsmouth SinfoniaThe SixteenThe English Baroque SoloistsHanover BandThe Symphony Of Harmony And InventionThe Music PartyLe Nouveau Quatuor + +318743Dennis IrwinDennis Wayne IrwinJazz double bass player, born November 28, 1951 Birmingham, Alabama, died March 10, 2008. +Irwin started playing professionally in 1974 with [a=Charles Brackeen] and [a=Ted Curson]. He also played with [a=Red Garland], [a=Art Blakey], [a=Chet Baker], [a=Mel Lewis], [a=John Scofield] and many others. +Needs Votehttp://www.dennisirwin.org/Home.htmlhttp://en.wikipedia.org/wiki/Dennis_irwinhttp://www.allaboutjazz.com/php/musician.php?id=7885D. IrwinDeniis IrwinDenis IrwinDennis ErwinIrwinWayne IrwinД. Ирвинデニス・アーウィンArt Blakey & The Jazz MessengersJoe Lovano NonetThe Carnegie Hall Jazz BandJohn Scofield QuartetJoe Lovano EnsembleAl Haig TrioBob Mintzer Big BandThe Keith Ingham QuintetJoe Lovano QuartetThe Ken Peplowski QuintetThe Joshua Breakstone QuartetThe Vanguard Jazz OrchestraThe Mel Lewis Jazz OrchestraThe James Williams QuartetSteve Wilson QuintetMike LeDonne QuintetRalph Lalama QuartetMichael Cochrane QuintetMike LeDonne TrioRich Perry QuartetThe Pete Malinverni TrioGary Smulyan NonetMatt Wilson's Arts & CraftsHarry Allen QuartetTad Shull QuartetLoren Schoenberg And His Jazz OrchestraAri Ambrose TrioEd Neumeister QuintetTad Shull QuintetMagali Souriau OrchestraJoshua Breakstone Trio + +318744Larry FarrellLarry Dean FarrellTrombone playerNeeds Votehttps://www.linkedin.com/in/larry-farrell-15135736/https://www.ibdb.com/broadway-cast-staff/larry-farrell-389240L. FarrellLarry "Trombonious" FarrellLarry D. FarrellLarry Dean FarrellLarry FarrelWoody Herman And His OrchestraJoe Lovano NonetJoe Lovano EnsembleBob Mintzer Big BandLouie Bellson Big BandAl Porcino Big BandDavid Matthews OrchestraMaria Schneider OrchestraWoody Herman BandToshiko Akiyoshi Jazz OrchestraDave Stahl BandWoody Herman And The Thundering HerdBill Warfield Big BandDMP Big BandWestchester Jazz OrchestraThe Bob Belden EnsembleSalsa Latina + +318745Barry RiesAmerican trumpeter, born 16 March 1952 in Cincinnati, Ohio, USANeeds VoteB. RiesBarry ReisRiesLionel Hampton And His OrchestraJoe Lovano NonetJoe Lovano EnsembleThe Contemporary Arranger's WorkshopGerry Mulligan And His OrchestraJohn Fedchock New York Big Band1:00 O'Clock Lab Band + +318746Willie Smith (2)William McLeish SmithAmerican jazz alto saxophonist, clarinetist, vocalist and composer. +Born 25 November 1910 in Charleston, South Carolina, USA - Died 7 March 1967 in Los Angeles, California, USA. +He was one of the major alto saxophone players of the swing era. He began on clarinet at age 12. After leaving college he joined [a=Jimmie Lunceford] and later [a=Charlie Spivak]. He joined [a=Harry James (2)] (1944-51), [a=Duke Ellington] (1951/52), [a=Billy May] (1952/53) and others. In early 1953 he toured Europe with [a=Jazz at the Philharmonic], later with the Benny Goodman All-star Band. Back in California he rejoined [a=Harry James (2)] (1954-63) and played In autumn 1964 in in [a=Johnny Catron]’s Band in Los Angeles and worked with Johnny Rivers in Las Vegas. In 1966 he played in a big band formed by [a=Charlie Barnet]. In March 1967 he died of cancer. + +Do NOT confuse with alto sax player from Cleveland [a=Willie Smith (7)].Needs Votehttp://en.wikipedia.org/wiki/Willie_Smith_%28alto_saxophonist%29https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/smith-willie-actually-william-mcleishhttps://adp.library.ucsb.edu/names/106449"Willie" SmithB. SmithBill SmithSmithV. SmithVocal Ensemble Featuring Willie SmithVocal Trio Featuring Willie SmithW. SmithWSWilli SmithWilliam McLeish 'Willie' SmithWilliam SmithWillie M. SmithWillie Smith And His OrchestraWillie SmitheWilly SmithHarry James And His OrchestraWoody Herman And His OrchestraBillie Holiday And Her OrchestraJimmie Lunceford And His OrchestraHelen Humes And Her All-StarsGene Krupa TrioLester Young And His BandHarry James & His Music MakersThe Lunceford QuartetJimmy Mundy OrchestraLionel Hampton All StarsLunceford TrioShorty Sherock & His OrchestraAl Casey And His SextetJuan Tizol & His OrchestraThe Gene Krupa SextetThe All Stars (7)Wilbert Baranco And His Rhythm BombardiersCorky Corcoran & His OrchestraThe Sunset All StarsOscar Peterson & FriendsBuddy Rich All StarsWillie Smith QuintetWillie Smith All StarsJATP All StarsThe Coronets (3)Louis Bellson's Just Jazz All StarsThe Louis Bellson OctetBuddy Rich NonetWillie Smith And His OrchestraThe Keynoters (3)Sam Donahue And His Swing SevenLamplighter All StarsWillie Smith And His FriendsLionel Hampton's Just Jazz All StarsWillie Smith Sextet + +319147Clifford ScottClifford Donley ScottTenor & alto saxophonist, flautist. Born 21 June 1928, San Antonio, Texas and died 10 April 1993, San Antonio, Texas. +Mostly known for co-writing "Honky Tonk". Often associated to [a=Billy Butler (3)] & [a=Bill Doggett].Needs Votehttps://en.wikipedia.org/wiki/Clifford_Scott_(musician)C. ScotC. ScottC.ScottCliff "Honky Tonk" ScottCliff (Honky Tonk) ScottClifford "Honky-Tonk" ScottClifford Scott + 6 StarsClifford T. ScottClifford “Honky Tonk” ScottJack ScottJoe SplinkJohnnie ScottSCottScotScot CliffordScottJoe SplinkGoogie Rene ComboLionel Hampton And His OrchestraLionel Hampton And His Paris All StarsBill Doggett QuintetWild Bill Davis QuartetClifford Scott And His OrchestraReuben Wilson & Tommy Derrick Duo Plus TwoThe Clifford Scott SextetClifford Scott And His Quintet + +319157Bobby BryantRobert Bryant Sr. .American jazz trumpeter and flugelhornist, born May 19, 1934 in Hattiesburg, Mississippi, died June 10, 1998 in Los Angeles, California +Bryant attended the Cosmopolitan School of Music in Chicago from 1952 to 1957. He then freelanced for three years in Chicago, working with [a=Red Saunders], backing singer [a=Billy Williams (5)] and gigging with smaller groups. He spent 1960 in New York and then relocated to Los Angeles the following year where he permanently settled. +His career includes touring with [a=Vic Damone], heading his own groups and playing with such big bands as [a=Charles Mingus] (1964), [a=Oliver Nelson], [a=Gerald Wilson], the [a=Frank Capp]/[a=Nat Pierce] and [a=The Clayton-Hamilton Jazz Orchestra]. +In addition to his big-band work, he was quite active in the studios. +As a leader, Bryant led big-band dates for [l=Vee Jay Records] (1961), two for [l=Pacific Jazz] in 1969, and one for [l=Cadet Records] (1971), in addition to a sextet set for [l=Cadet Records] in 1967.Needs Votehttps://en.wikipedia.org/wiki/Bobby_Bryant_(musician)https://www.imdb.com/name/nm0117054/B. BryantBob BryantBobbie BryantBobby BruantBobby Bryant, Sr.Bobby ByrantBryantJ. BryantR. BryantR. O. BryantRobert "Bobby" BryantRobert BryantRobert Bryant Jr.Robert Bryant Sr.Robert Bryant, Sr.Robert ByrantRobert G. BryantRobert O'Bryant, Sr.Robert O. "Bobby" BryantRobert O. BryantRobert O. Bryant, Sr.Robert O." Bobby " BryantRobert “Bobby” BryantQuincy Jones And His OrchestraGerald Wilson OrchestraJames Bond & His SextetThe World Jazz All Star BandThe Gene Harris All Star Big BandThe Clayton-Hamilton Jazz OrchestraThe Thelonious Monk OrchestraBobby Bryant SextetThe Bobby Bryant QuintetOliver Nelson's Big BandCorcovado TrumpetsGerald Wilson Orchestra of The 80'sSouth Central Avenue Municipal Blues BandThe Buddy Collette Big BandFestival Workshop Ensemble + +319158Alexander ThomasTrombone player.Needs VoteAleksander ThomasAlex ThomasAlexander Thomas, Sr.Earth, Wind & FireGerald Wilson Orchestra + +319180Enrico CarusoEnrico CarusoBorn: February 25, 1873 in Naples, Italy, died August 2, 1921 ibid. +Since he came from a poor family, he was only with great difficulty able to afford the study of singing with Guglielmo Vergine in Naples. He was, beyond doubt, the best known singing personality of his time. His voice was originally a lyric tenor, but capable of the most dramatic climaxes. His phenomenal tone production, the smoothness of his registers, the nobility of his acting and singing style are even today to be marveled at on more than 200 records. +Needs Votehttps://en.wikipedia.org/wiki/Enrico_Carusohttps://www.britannica.com/biography/Enrico-Carusohttps://www.imdb.com/name/nm0142297/https://en.italy4.me/famous-italians/enrico-caruso.htmlhttps://www.the-discographer.dk/opera/caruso-menu.htmCarico CarusoCarusoCaursoCav. Enrico CarusoComm. Enrico CarusoE. CarusoE. KaruzoEnrico Caruso (Avec Accompagnement D'Orchestre)Enrico Caruso Con OrchestraEnrico Caruso W. Symphony OrchestraEnrico Caruso With Orchestral AccompanimentEnrico CaruzoMonsieur CarusoSig. CarusoSig. E. CarusoSig. Enrico CarusoSignor CarusoSignor Cav. Enrico CarusoSignor E. CarusoSignor Enrico CarusoSrs. Carusoig. CarusЕнрико КарузоКарузоЭ. КарузоЭнрико КарузоЭнрико-Карузоエンリコ・カルーソー + +319439Maurice DurufléFrench composer, organist, musicologist, and teacher. +Born 11 January 1902 in Louviers (Haute-Normandie), France. +Died 16 June 1986 in Louveciennes (near Paris), France. + +Duruflé's Requiem was chosen as the Requiem mass for the Pope John Paul II.Needs Votehttps://www.france-orgue.fr/durufle/http://www.musimem.com/durufle-maurice.htmhttps://en.wikipedia.org/wiki/Maurice_Durufl%C3%A9https://www.aso.org/artists/detail/maurice-duruflehttps://theimaginativeconservative.org/2021/03/music-maurice-durufle-michael-de-sapio.htmlDurufleDuruflèDurufléDurufléM. DiruflēM. DiuriuflėM. DurufleM. DurufléM. DurufléM.DurufléMarcel DurufléMauriceMaurice DurufleMaurice DuruflêMaurice Gustave DurufleSaint Etienne Du Mont Church, ParisSaint-Saveur Du Petit Andely Church, Franceデュリュフレモーリス・デュリュフレ + +319531Original Tuxedo Jazz Orchestra[a326842], a trumpet player, was leader of The Original Tuxedo Orchestra that played at Harry Parker‘s (AKA Abraham Shapiro) Tuxedo Dance Hall and after it‘s shutdown in 1917 in the crescent city of New Orleans for more than half a century. +After Oscar Celestin‘s Death in 1954, [a2147161], also known as „Papa“ French, a banjo player in the orchestra, took over the leadership and renamed it The Original Tuxedo Jazz Band. +Papa French passed away in 1977 and his two sons carried on tradition and changed the name to [a=The Tradition Hall Jazz Band].Needs Votehttp://originaltuxedojazzband.com/http://www.redhotjazz.com/tuxedo.htmlCelestin's Original Tuxedo Jazz OrchestraCelestin's Original Tuxedo OrchestraCelestin's Tuxedo Jazz BandCelestin’s Original Tuxedo Jazz OrchestraCelestin’s Original Tuxedo OrchestraOriginal Tuxedo "Jass" BandOriginal Tuxedo 'Jass' BandOriginal Tuxedo Jass BandOriginal Tuxedo Jazz BandOriginal Tuxedo Jazz Orchestra, TheOriginal Tuxedo Junction Jazz BandOriginal Tuxedo OrchestraOscar "Papa" Celestin And His Tuxedo Jazz BandOscar "Papa" Celestin's Original Tuxedo Jazz OrchestraOscar "Popa" Celestin's Tuxedo Jazz BandOscar Celestin Original Tuxedo JazzOscar Celestin's Original Tuxedo Jazz OrchestraOscar Celestin's Original Tuxedo OrchestraOscar Papa Celestin's Tuxedo JassbandPapa Celestin Original Tuxedo JazzPapa Celestin's Original Tuxedo Jazz OrchestraThe Original Tuxedo "Jass" BandThe Original Tuxedo 'Jass' BandThe Original Tuxedo Jazz BandThe Original Tuxedo Jazz Band.The Original Tuxedo Jazz OrchestraThe Original Tuxedo OrchestraThe Original Tuxedo „Jass“ BandThe Tuxedo Dance BandTuxedo Jazz BandTuxedo Jazz OrchestraLouis BarbarinSimon MarreroEmma BarrettKid Shots MadisonAbby FosterOscar "Papa" CelestinWillard ThoumyJohn MarreroJeanette KimballClarence HallPaul Barnes (2)Alphonse PicouGuy KellyWilliam RidgleyHappy GoldstonRicard AlexisOctave CrosbyJosiah "Cie" FrazierNarvin KimballOliver AlcornAlbert FrenchEarl PiersonJeanette SalvantSid CarriereAugust RousseauJoseph Thomas (7)Manuel "Fess" ManettaBill Matthews (5)Ernest Kelly (2)Clarence Matthews (2)John Porter (17) + +319615Markku JohanssonMarkku Henrik JohanssonFinnish trumpeter, flugelhorn player, composer, conductor and arranger, born 22 March 1949 in Lahti, Finland. +Stepbrother of [a=Nacke Johansson].Needs VoteJ. JohanssonJohanssonJohansson MarkkuM. JohanssonM. JohanssonlM. JohnssonM.JohanssonN. JohanssonHenri LähteläFrank Nilsson (2)Umo Jazz OrchestraThe Otto Donner TreatmentFinnish Big Band JazzNunnu Big BandOiling BoilingPepe & ParadiseMarkku Johanssonin OrkesteriPentti Lasasen Studio-orkesteriJanatuisen JatsiyhtyeSaxes GaloreVantaan ViihdeorkesteriKardemumman Orkesteri Ja KuoroJarmo Savolainen NonetSeppo Rannikko Big BandFyrkkaThe Atro "Wade" Mikkola QuintetMarkku Johansson SextetMarkku Johansson & FriendsStockholm Big BandPentti Hietanen Sextet + +319761Sonny CrissWilliam CrissWilliam "Sonny" Criss was a US-American alto saxophonist during the bebop era. +Born October 23, 1927 in Memphis, +died November 19, 1977 in Los Angeles. +Needs Votehttps://audiscography.web.fc2.com/crs.htmhttps://en.wikipedia.org/wiki/Sonny_CrissCrissS. CrissS.CrissSommy ChrisSonny ChrisSonny ChrissSonny CrispSonny Criss Et Son Alto-SaxSonny KrissW. T. "Sonny" CrissW.T. "Sonny" CrissWilliam "Sonny" Crissソニークリスソニー・クリスBilly Eckstine And His OrchestraThe Sonny Criss OrchestraThe Sonny Criss QuintetSonny Criss QuartetThe Buddy Rich QuintetThe Hampton Hawes All-StarsAl Killian SextetSonny Criss Sextet + +319789Denis CharlesDenis Alphonso Charles[b]Jazz drummer[/b]; born December 04, 1933 in St. Croix, Virgin Islands, died March 25, 1998 in New York City +Brother of [a2213905]. + +[b]Not to be confused with producer/songwriter, [a=Dennis Charles].[/b] +Needs Votehttp://www.denischarles.com/CharlesD. CharlesD.C.Denis "Jazz" CharlesDennis "King" CharlesDennis CharlesDennis CherlesDennis King CharlesデニスチャールズGil Evans And His OrchestraMichael Marcus TrioPatricia Nicholson EnsembleRob Brown TrioBilly Bang QuintetThe Cecil Taylor QuartetDenis Charles IVtetJohn Blum Astrogeny QuartetSteve Lacy ThreeBilly Bang QuartetJemeel Moondoc QuintetJemeel Moondoc SextetClaude Lawrence TrioCecil Taylor QuintetLuther Thomas QuartetLuther Thomas QuintetDennis Charles TriangleThomas Borgmann TrioCecil Taylor TrioBorgmann / Morris / Charles TrioBob Ackerman TrioSteve Lacy-Roswell Rudd QuartetPeter Kuhn QuartetThe Jazz DoctorsElliott Levin QuartetPeter Kuhn QuintetNew York 3Cecil Taylor All StarsWilber Morris TrioQuartet + 1 + +319808Tony ScottiAnthony Joseph Scotti American actor, singer, television, film and record producer. +Married to [a282391] (1984). +Co-founder of [l7333], along with his brother Benjamin Scotti. + +Born: December 22, 1939 in Newark, New JerseyNeeds Votehttps://en.wikipedia.org/wiki/Tony_Scottihttps://www.imdb.com/name/nm0780004/T. ScottiToni Scotti + +319836Bob FeldmanRobert C. FeldmanUS guitarist, songwriter & producer. +Born June 14, 1940 in Brooklyn, New York City, NY. Died August 23, 2023 +The first song Feldman published, "The Big Beat″ became the theme song for pioneer rock 'n' roll DJ Allen Freed. With partners Richard Gottehrer and Jerry Goldstein, he produced or wrote hits for The Angels ("My Boyfriend’s Back″), Jerry Lee Lewis ("I’m on Fire″), The McCoys ("Hang on Sloopy″) and many other acts from the 1950s and 1960s. Active in New York, NY; he moved to Nashville, TN, in 1996.Needs Votehttps://en.wikipedia.org/wiki/Bob_Feldmanhttps://www.imdb.com/name/nm1131660/https://www.bobfeldmanmusic.net/abouthttps://booksandbooks.com/event/bob-feldman/https://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=&Main_Search_Text=Robert+C.+Feldman&Search_Type=allA. FeldmanB FeldmanB. FeldanB. FeldmanB. FieldmanB. SeldmanB.FeldmanBob FeidmanBob FeldanBob FeldenBob FeldonBobby FeldmanFaldomanFeidmanFeldanFeldenFeldhamFeldmanFeldman BobFeldman, R.FeldmannFeldmenFeldomanFelldmanFelmanFelsmanFeltmanFiedmanField ManFieldmanGeldmanPeldmanR FeldmanR. FeldmanR. FeldmannRobert C. FeldmanRobert FeldmanSeldmanSelmanV. FeldmanVeldmanThe StrangelovesThe Beach-NutsFeldman, Goldstein, GottehrerTen Broken HeartsThe Kittens (10)Bob & Jerry (2) + +319880Kenny RankinKenneth Joseph RankinBorn February 10, 1940 in Manhattan, New York City, New York, USA. +Died June 07, 2009 in Los Angeles, California, USA from lung cancer. + +Singer, songwriter and guitarist. + +His songs were recorded by [a=Helen Reddy], [a=Peggy Lee] and [a=Mel Tormé]. Rankin never formally studied music but began his recording career as a teenager with some singles for [l=Decca (2)]. He also recorded for [l=Mercury], [l=Atlantic], [l=Sly Dog Records] and several other labels. +Needs Votehttps://web.archive.org/web/20160328063546/http://www.kennyrankin.com/https://en.wikipedia.org/wiki/Kenny_Rankinhttps://adp.library.ucsb.edu/names/339206K. &K. RainkinK. RankinK. RankingK.RankinKen RankinKenneth RankinKennyKenny RakinKenny RankingKenny RankinsRankinRankin Kenny + +319959Carol ConnorsCarol Connors née Annette KleinbardAmerican singer-songwriter born on November 13, 1940 in New Brunswick, New Jersey. +Lead singer of the pop vocal trio known as The Teddy Bears, which also included Phil Spector. The Teddy Bears' only major hit, "To Know Him Is To Love Him,".The trio disbanded because of the failure of their follow-up singles and the fact that Spector preferred working behind the scenes to performing. +Some years later she legally changed her name from Annette Kleinbard to Carol Connors. She co-wrote (with Ayn Robbins and Bill Conti) "Gonna Fly Now", the theme song from the film Rocky, which earned her an Academy Award nomination. Other songwriting credits include the Rip Chords' 1964 hit "Hey Little Cobra", the 1980 hit Billy Preston/Syreeta Wright duet "With You I'm Born Again," and "Madonna in the Mirror", the finale song to A&E's 15 Films About Madonna. +Needs Votehttp://www.carolconnors.com/C ConnersC ConnorsC, ConnorsC. ComnorsC. ConnersC. ConnorC. ConnorsC.ConnersC.ConnorsCarol ConnerCarol ConnersCarol ConnorCarol ConorsCarolyn ConnersConnersConnorConnorsCorganD. ConnorsS. ConnorsVonКоннорсCarol CollinsAnnette BardThe Teddy BearsThe SheikettesCarol & CherylThe SurfettesThe JoysThe Story Tellers (3) + +319964Raoul (4)Ettore Raoul LovecchioItalian singer and actor. +He was often called on for solo-singing on soundtracks in the late 1960s. After he had left the genre then became an actor during the 70s. +He was seen as the owner of a boutique for Oriental fashion in Rome. +Also known as Raul or Raoul Lo Vecchio. +Needs VoteLaoulRaulラオールI Cantori Moderni di Alessandroni + +319984Fred FosterFred Luther FosterAmerican songwriter, producer and label executive. +Founder of [l26077] Records and [l282844]. + +Born: July 26, 1931 in Rutherford, North Carolina. +Died: February 20, 2019 in Nashville, Tennessee.Needs Votehttp://www.cmt.com/artists/az/fred_foster/artist.jhtmlhttp://en.wikipedia.org/wiki/Fred_Fosterhttps://forums.stevehoffman.tv/threads/fred-foster-creator-of-monument-records-songwriter-more-r-i-p.813425/F FosterF. ForsterF. FosterF. L. FosterF.ForsterF.FosterF.L. FosterForsterFosterFoster F.Fred ForsterFred Foster y OrquestaFred L FosterFred L. FosterJ. BondJ. FosterP. FosterPreston FosterS. FosterФ. Фостер + +320176Simon BrehmSwedish double-bass player, orchestra leader, singer and record company director, born December 31, 1921 in Stockholm, Sweden, died February 11, 1967 in Täby, Sweden.Needs Votehttps://sv.wikipedia.org/wiki/Simon_Brehmhttps://en.wikipedia.org/wiki/Simon_BrehmBig "Black Plaught" BrehmBig SimonBig Simon BrehmBohemeBrehmDen Rockande SimonFar: Simon BrehmS BrehmS. BrehmS.BrehmSim. BrehmSimonSimon Brehm OrkesterSimon Brehm SextettSimon Brehms CowboysSimon Brehms Stora OrkesterSimonsSånglärare: Simon BrehmBass (16)Boheme (3)Den Rockande SimonBig "Black Plaught" BrehmErnie Englund and his OrchestraThe Swedish All StarsSimon Brehms KvintettHarry Arnold & His Swedish Radio Studio OrchestraToots Thielemans QuartetSimon Brehm Och Hans Ruskiga RöjareSimon Brehms OrkesterGösta Erikssons KvintettSimon Brehms SextettRoyal SwingersBengt Hallberg And His Swedish All StarsUlf Lindes KvartettCarl-Henrik Norins KvartettJimmy Raney All StarsBengt Hallberg EnsembleThe Ponderosa Music MakersThe Favourite Soloists 1951ParisorkesternSimon Brehm & CoParamountorkesternErik Franks SextettSimon Brehm Och Hans Gold-DiggersBob Laine QuartetReinhold Svenssons OrkesterBig Simon Och Hans Busfrön + +320180Werner WindlerGerman trumpet player, composer and arranger, born 14.08.1932, died 01.10.2006 in Eutin. Repeated and longtime member of the [a328245] (1954-1957, 1962-1967, 1969-1993)Needs VoteW. WindlerWerner WandlerHarry EllgerLubo D'Orio und sein OrchesterRIAS TanzorchesterThe Heinz Kiessling OrchestraWalter Dobschinski Und Seine Swing-BandDas Orchester Richie Hillman + +320237Gösta TheseliusTeodor Gösta TheseliusSwedish music arranger, composer, and jazz musician (piano, clarinet, and tenor saxophone). Born June 22, 1922 in Stockholm, died January 24, 1976 in the same city. + +Theselius, nicknamed ”Tesse”, was a prominent organizer of jazz and pop music, who wrote and arranged for the Thore Ehrling and Sam Samson orchestras. + +Highly respected by colleagues, Theselius was considered one of Sweden's foremost jazz composers and arrangers. + +Brother of musician [a2915222]. +Needs Votehttp://sv.wikipedia.org/wiki/G%C3%B6sta_Theseliushttps://orkesterjournalen.com/biografi/theselius-goesta/Costa TheseliusG TheseliusG. TeseliusG. TheseliusG.TheseliusGoesta TheseliusGosta TheseliusGösta TeseliusTheseliusTed GeseliusErnie Englund and his OrchestraJames Moody QuartetGösta Theselius OrkesterGösta Theselius Kör Och OrkesterGösta Theselius And All StarsThe Four Tenor BrothersArne Domnérus Favourite GroupThore Jederbys SeptettJames Moody & His Swedish CrownsCharlie Parker And His Swedish All StarsJimmy Raney All StarsLord "Tesses" BandJohan Adolfssons SextettCavalcade All StarsRolf Larssons Radio SextettTesses Rockin' GroupReinhold Svenssons OrkesterGösta Theselius And His BandGösta Theselius Sextett + +320305Carlos (3)Yvan-Chrysostome DoltoCarlos (February, 20, 1943, Paris), sometimes credited as Jean-Christophe Doltovitch, was a French singer and actor. Carlos died of cancer on 17th Jan 2008 in Paris. Son of Françoise Dolto, a famous French pediatric doctor and psychoanalyst. +Needs Votehttp://www.musicarlos.comCarlosCarlos DoltoLes Grosses TêtesViva Les Bleus + +320595Lloyd OldhamAmerican jazz vocalistNeeds VoteDuke Ellington And His Orchestra + +320597Louis Jordan And His Tympany FiveWas an American popular music group which recorded from the 1930s until the 1970s. During the 1940s, they were the most popular recording band of the soon-to-be-called rhythm and blues music having eighteen No. 1 hits, which places them as the third most successful singles artist in Billboard R&B charts history. The 1946 recording of "Choo Choo Ch'Boogie" was tied for first place for spending the most weeks (eighteen) at No. 1. in the charts. Needs Votehttp://en.wikipedia.org/wiki/Louis_Jordan_discography https://adp.library.ucsb.edu/names/328178EnsembleJordan And His Tympani FiveJordan Louis Tympany FiveLewis JordonLouie Jordan And His Tympany FiveLouie Jordon And His Tympany FiveLouis JordanLouis Jordan & His Timpany FiveLouis Jordan & His Tympani FiveLouis Jordan & His Tympany 5Louis Jordan & His Tympany FiveLouis Jordan & His Tymphany FiveLouis Jordan & Ses Tympany FiveLouis Jordan & The Tympany FiveLouis Jordan And EnsembleLouis Jordan And His OrchestraLouis Jordan And His Timpani FiveLouis Jordan And His Timpany FiveLouis Jordan And His Tympani FiveLouis Jordan And His Tympanny FiveLouis Jordan And His Tympany 5Louis Jordan And The Tympani FiveLouis Jordan And The Tympany FiveLouis Jordan And Tympany FiveLouis Jordan Tympany FiveLouis Jordan With His Tympany FiveLouis Jordan With The Tympany FiveLouis Jordan and EnsembleLouis Jordan and His Tympany FiveLouis Jordan u. s. Tympany FiveLouis Jordan's Tympani FiveLouis Jordan's Tympany FiveLouis Jordan, Vocal, & His Tympany 5Louis Jordon And His Tympani FiveLouis Jordon And His Tympany FiveLuis Jordan And His Tympany FiveTympany FiveBill DoggettLouis JordanIdrees SuliemanBob BushnellAl MorganJesse SimpkinsBilly HadnottCharlie DraytonHarry DialWild Bill DavisShadow WilsonTeacho WiltshireBob Mitchell (2)Eddie JohnsonJames Wright (2)Dallas BartleyBilly AustinFreddie WebsterHal MitchellJosh JacksonAaron IzenhallArnold ThomasVic LourieHenry TurnerCourtney Williams (2)Leonard GrahamAlex Mitchell (4)James Jackson (5)Bill JenningsFreddie SimonStafford SimonCarl HoganWalter Martin (3)Joe Morris (3)Chris ColumboEddie Byrd (2)Eddie RoaneDottie SmithPeggy ThomasEddie Boyd (5)Clarence Johnson (12) + +320606Herb JeffriesUmberto Alexander ValentinoHerbert "Herb" Jeffries "The Bronze Cowboy". Born September 24, 1913 in Detroit, Michigan - died May 25, 2014 in Woodland Hills, California) was an American jazz and popular singer and actor. He was the first black man to star in an American western. He starred as a singing cowboy in several all-black Western films. Inducted into the Western Music Association Hall of Fame (1997). + +Jeffries first recordings were with [a=Earl Hines And His Orchestra]. He recorded with [a=Duke Ellington] from 1940 to 1942. His most famous song, "Flamingo", sold over 50 million copies. + +In June 2010, at age 95, Jeffries gave a performance to raise funds for the Oceanside, California Unified School District's music program accompanied by the Big Band Jazz Hall of Fame Orchestra under the direction of clarinetist Tad Calcara.Needs Votehttp://www.herbjeffries.com/http://en.wikipedia.org/wiki/Herb_Jeffrieshttp://www.hillbilly-music.com/https://adp.library.ucsb.edu/names/102193H JeffriesH. JeffriesHJHerb "Flamingo" JeffriesHerb JefferiesHerb JeffresHerb Jeffries And ComboHerb Jeffries With The CelebritiesHerb JefriesHerbie JeffreyJeffries“Herb” JeffriesDuke Ellington And His OrchestraEarl Hines And His OrchestraSidney Bechet And His New Orleans FeetwarmersHerb Jeffries And His Orchestra + +320609Billy Eckstine And His OrchestraUS orchestra directed by [a311744].Needs VoteBilly Eckstein And His OrchestraBilly Eckstein With Deluxe All Star BandBilly EckstineBilly Eckstine & His Orch.Billy Eckstine & His OrchestraBilly Eckstine & Orch.Billy Eckstine & OrchestraBilly Eckstine And His All-Star BandBilly Eckstine And His Famous OrchestraBilly Eckstine OrchestraBilly Eckstine With OrchestraBilly Eckstine With Orchestral AccompanimentBilly Eckstine With The DeLuxe All StarsGreat Billy Eckstine And His Orchestra, TheThe Billy Eckstein OrchestraThe Billy Eckstine OrchestraThe Great Billy Eckstine & His OrchestraThe Great Billy Eckstine And His OrchestraSarah VaughanFrank WessMiles DavisArt BlakeyGene AmmonsDizzy GillespieSonny StittDexter GordonTommy PotterOscar PettifordClyde HartWardell GrayRay LinnClaude JonesTrummy YoungFats NavarroBilly EckstineJimmy PowellBudd JohnsonSonny CrissTate HoustonRaymond OrrCecil PayneAl KillianRudy RutherfordShadow WilsonNorris TurneyLeo ParkerTaswell BairdHobart DotsonKing KolaxGail BrockmanLeonard HawkinsJohn Jackson (7)Linton GarnerBill FrazierFreddie WebsterTim KennedyGerald Valentine (2)Shorty McConnellJohn MalachiConnie WainwrightMarion "Boonie" HazelAlfred "Chippy" OutcaltJimmy GoldenWalter KnoxRichard EllingtonWarren BrackenJohn CobbsBob "Junior" WilliamsArthur SammonsBill McMahonJosh JacksonJohn "Shifty" HenryRobert Scott (4)Teddy CypronThomas CrumpHoward Scott (5) + +320610Sonny ParkerWillis ParkerBlues shouter, born Youngstown, Ohio, 5 May 1925, died 7 February 1957. +Parker first recorded for Columbia in Los Angeles, California, in 1948, and made his last recordings for Brunswick in 1954. He was often a featured vocalist with [a=Lionel Hampton]'s orchestra.Needs Votehttps://adp.library.ucsb.edu/names/336488https://en.wikipedia.org/wiki/Sonny_Parker_(musician)ParkerS. ParkerSonnie ParkerLionel Hampton And His OrchestraSonny Parker And His All Stars + +320620Dave BartholomewDavid Louis BartholomewAmerican jazz bandleader, trumpeter, composer, producer, and arranger. + +Born: 24 December 1918 in Edgard, Louisiana, USA. +Died: 23 June 2019 in Metairie, Louisiana, USA (aged 100). + +He led his own band in 1946. In 1949, he became the A&R representative for [l=Imperial] in New Orleans and recorded his first session in the same year. In December 1949, he recorded a young pianist named [a309140] performing 'The Fat Man', which launched Domino's career. Bartholomew wrote over 4000 songs. + +Inducted into Songwriters Hall of Fame in 1998. +Inducted into Rock And Roll Hall of Fame in 1991 (Non-Performer). + +Married to songwriter [a=Pearl King] (1942 to her passing in 1967). +Founder of the [l501160] record label.Needs Votehttps://en.wikipedia.org/wiki/Dave_Bartholomewhttps://www.songhall.org/profile/Dave_Bartholomewhttps://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=20162&subid=0https://obits.nola.com/obituaries/nola/obituary.aspx?n=david-louis-bartholomew-dave&pid=193309598&fhid=29155https://adp.library.ucsb.edu/names/303299A. BartholomewB. BartholomewB. BortholomewB. DaveBarholomewBarthelomewBarthholomewBarthoeloemew/DaveBartholemeauBartholemewBartholmewBartholoewBartholomeuBartholomeuwBartholomewBartholomew DaveBartholomew, DaveBartholomew, KingBartholomew/KingBartholonevBartholowewBartolomewBatholemewBatholomewD BartholomewD. ArtholomewD. BaartholomewD. BargtholomewD. BarholemenD. BarthalmewD. BarthalomewD. BarthelomewD. BartholamewD. BartholamueD. BartholemewD. BartholmewD. BartholoD. BartholomenD. BartholomerD. BartholomeuD. BartholomevD. BartholomewD. BartholomowD. BartholonowD. BarthomewD. BartoholomewD. BartolomewD. BathalomewD. BatholomewD.BartholemewD.BartholomewDaveDave BarthelemewDave BarthlemewDave BartholemewDave Bartholomew & OthersDave Bartholomew And His BandDave BarthonewDave BartolomewDave Barton With The Royal PlayboysDave MartholomewDavid BartholomewDavid BartolomewDaze BartholomenKing, BartholomewP. BartholomewDave Barton (5)George Miller And His Mid DriffsDave Bartholomew And His OrchestraFats Domino And His SextetDomino & BartholomewDave Bartholomew & Pearl KingDave Bartholomew's New Orleans Jazz Band + +320627Maryetta MidgleySoprano. Born Edinburgh 27 May 1942. +Daughter of tenor [a1970695] and pianist [a5922093]. Sister of tenor [a320629].Needs Votehttps://en.wikipedia.org/wiki/Maryetta_Midgleyhttps://www.biographies.net/people/en/maryetta_midgleyM MidgleyMarietta MidgelyMarietta MidgleyMarietta MigdleyMarletta MidgleyMaryettaMaryetta MidgeleyМ. МидглиThe Ambrosian Singers + +320629Vernon MidgleyBritish tenor, born 28 May 1940 in Worcester Park, England.Needs Votehttps://en.wikipedia.org/wiki/Vernon_Midgleyhttps://www.imdb.com/name/nm0585618/https://www.bach-cantatas.com/Bio/Midgley-Vernon.htmVernonヴァーノン・ミッドグレイThe Ambrosian Singers + +320662Simon FergusonClassical trumpeter.Needs Voteサイモン・ファーガソンThe Academy Of St. Martin-in-the-FieldsLondon Classical PlayersLocke Brass ConsortThe English Concert + +320667Sarah HaynesDouble bassist.Needs VoteGabrieli PlayersThe Orchestra Of St. John's + +320674Fiona HighamFiona HighamViolinist.Needs VoteLondon Philharmonic OrchestraLondon Musici1000 UK Artists + +320675Judith KleinmanEnglish classical double bassist and teacher of the Alexander Technique. Co-author of the book [i]The Alexander Technique for Musicians[/i].Needs Votehttps://www.bloomsbury.com/author/judith-kleinmanOrchestra Of The Age Of Enlightenment + +320676Jane CarwardineJane CarwardinePrincipal Second Violin with the [b]City of London Sinfonia[/b].Needs VoteCity Of London SinfoniaGuildhall String Ensemble + +320678Rupert BawdenClassical viola player.Needs VoteThe Academy Of Ancient MusicThe English Concert + +320683Andrew RobertsClassical violinist, founder member of the Chamber Orchestra of Europe and has played in this and other important orchestras for several years.Needs VoteRobboThe English Baroque SoloistsThe Chamber Orchestra Of EuropeOrchestra Of The Age Of EnlightenmentGabrieli PlayersFitzwilliam String QuartetLondon MusiciThe Solomon EnsembleThe Mozartists + +320684Philip EastopBritish horn player, born in 1958.Needs Votehttps://eastop.net/EastopP EastopP. EastopPhil EastopPhillip EastopPip EastopPip EastpopGabrieli ConsortThe London Telefilmonic OrchestraThe London OrchestraThe Mike McEvoy OrchestraBritten SinfoniaThe Albion EnsembleThe English ConcertOrchestre de GrandeurThe Pale Blue Orchestra + +320685Rebecca WadeAustralian violinist who has performed amongst others with the [a454293].Needs VoteBec WadePhilharmonia OrchestraAustralian Youth OrchestraThe Woohoo RevueThe Counterfeit Gypsies + +320687Gillian CohenClassical violinist. +Daughter of [a=Raymond Cohen] & [a=Anthya Rael]. Sister of [a=Robert Cohen].Needs Votehttps://www.linkedin.com/in/gillian-cohen-a2b49220/Gill CohenRoyal Philharmonic OrchestraRobert Farnon And His Orchestra + +320689Glyn MatthewsGlyn MatthewsClassical percussionist, and tutor. +Tutor at [l305416].Needs Votehttps://open.spotify.com/artist/4L4vMCXRqXpM5zFP1O59h5Glyn MathewsGlynn MatthewGlynn MatthewsLondon Symphony OrchestraCity Of London SinfoniaGavin Bryars EnsembleEnglish Chamber OrchestraThe National Symphony Orchestra + +320690Rhydian ShaxsonBritish classical cellist. +Sub-principal cello of the [a=Orchestra Of The Royal Opera House, Covent Garden].Needs VotePhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenThe Raphael EnsembleThe Philharmonia Soloists + +320757John Williams (5)John Thomas WilliamsAmerican jazz pianist and composer, born on January 28, 1929 in Windsor, Vermont +Was a member of Stan Getz Quartet and Quintet during stretches of 1953-1954. Also worked with Al Cohn, Zoot Sims and Cannonball Adderley, among others, in the 1950s. +For the TV and movie composer select [a=John Williams (4)].Needs Votehttp://www.artsjournal.com/rifftides/2011/01/an_old_bit_of_confusion.htmlJ. WilliamsJohn T. WilliamsJohn WilliamsonJohnnie WilliamsJohnny T. WilliamsJohnny WilliamsWilliamsStan Getz QuartetZoot Sims QuartetStan Getz QuintetPete Rugolo OrchestraDave Pell OctetJohn Williams TrioThe Phil Woods QuartetJimmy Cleveland And His All StarsThe Nick Travis QuintetCharlie Mariano QuartetZoot Sims All-StarsCannonball Adderley All StarsThe Lon Norman SextetArt Mardigan Sextet + +320758Bill AnthonyWilliam Albert AnthonyAmerican jazz bassist +Born March 28, 1930 in New York City, New York +Needs VoteAnthonyB. AnthonyB.AnthonyEarl AnthonyW. AntonyStan Getz QuintetTony Fruscella SeptetJohn Williams TrioTony Fruscella Quintet + +320759Art MardiganArthur MardiganAmerican jazz drummer +Born: February 12, 1923 in Detroit, USA +Died: June 6, 1977 in Detroit, USANeeds Votehttps://en.wikipedia.org/wiki/Art_Mardiganhttps://de.wikipedia.org/wiki/Art_MardiganA. MardiganArt MadiganArt MandriganArt Mardigianアート・マーディガンWoody Herman And His OrchestraDexter Gordon And His BoysWoody Herman And His WoodchoppersJimmy Raney QuartetThe Pete Jolly TrioThe Woody Herman Big BandWoody Herman And His Third HerdThe Nick Travis QuintetJimmy Rowles TrioThe Frank Newman QuartetThe Mystery Band (3)Bob Hardaway's GroupThe Marty Paich OctetArt Mardigan Sextet + +320760Frank IsolaFrank IsolaAmerican jazz drummer. +Born February 20, 1925 in Detroit, Michigan, died December 12, 2004 in Detroit, Michigan. +Needs Votehttp://en.wikipedia.org/wiki/Frank_Isolahttps://adp.library.ucsb.edu/names/322658F. IsolaFranck IsolaFrank IlosaIsolaStan Getz QuartetStan Getz QuintetGerry Mulligan QuartetBob Brookmeyer QuintetJimmy Raney QuintetEddie Bert QuintetBob Szajner Triad II + +320797The Nat King Cole TrioThe King Cole TrioIn 1937, Nat King Cole arrived in Los Angeles where he formed the original lineup of the [b]Nat King Cole Trio[/b]. The trio consisted of Nat on piano, Oscar Moore on guitar, and Wesley Prince on double bass - the absence of a drummer making the combo unique among the swing/jazz outifts of that time (legend has it that Cole was to form a quartet with [a295930] on drums, but prior to his first engagement, Young no-showed and the drumless trio came about). The trio played in Los Angeles throughout the late 1930s and recorded many radio transcriptions. + +In 1939, the Cole Trio was receiving enough attention to embark on its first tour of the East Coast and the Midwest - in New York, Cole, Moore and Prince backed singer [a=Billie Holiday] on one of her Manhattan gigs. In 1940, the Cole Trio made its first commercially available recording of [i]Sweet Lorraine[/i], which featured Cole on lead vocals and became the group's first hit as well as the group's theme on radio. + +The outbreak of World War II lead to several line-up changes: Prince, who was drafted into the U.S. military, being temporarily replaced by Red Callender, and later by Johnny Miller who stayed with the group until 1948 (when he was replaced by Joe Comfort). The original guitarist, Oscar Moore, left in 1947 and was replaced by Irving Ashby. During its 1943-1949 period, the Cole Trio had its share of major hits, which were not only commercially successful, but also extremely influential. + +By the end of the '40s, Nat King Cole (in accordance with [l=Capitol Records]' marketing strategy) gradually phased out his part as improvising jazz singer/pianist with the King Cole Trio, focussing on his new career as jazz-influenced pop singer that he pursued through the '50s and early '60s. The trio officially ceased to exist in September 1951, 14 years after its founding. + +Original line-up (1937-1942): +Nat King Cole: piano +Oscar Moore: guitar +Wesley Prince: bass + +Second line-up (1942): +Nat King Cole: piano +Oscar Moore: guitar +Red Callender: bass + +"Capitol-years" line-up (1943-1947): +Nat King Cole: piano +Oscar Moore: guitar +Johnny Miller: bass + +Forth line-up (1947-1948): +Nat King Cole: piano +Irving Ashby: guitar +Johnny Miller: bass + +Fifth line-up (1948-1949): +Nat King Cole: piano +Irving Ashby: guitar +Joe Comfort: bass + +Final line-up (1949-1951): +Nat King Cole: piano +Irving Ashby: guitar +Joe Comfort: bass +Jack Costanzo: bongosNeeds Votehttps://rateyourmusic.com/artist/the-king-cole-triohttps://adp.library.ucsb.edu/names/105574"King" Cole TrioDas King Cole TrioDas Nat King Cole TrioEl King Cole TrioEl Nat King Cole TrioHampton Rhythm BoysHis TrioHis Trio With String OrchestraKing ColeKing Cole "Trio"King Cole And His Swing TrioKing Cole And His TrioKing Cole TrioKing Cole's TrioKing ColeTrioN. K. Cole TrioNat "King" ColeNat "King" Cole "The Trio"Nat "King" Cole & His TrioNat "King" Cole & The TrioNat "King" Cole And His TrioNat "King" Cole And The TrioNat "King" Cole TrioNat "King" Cole Und Sein TrioNat "King" Cole With His TrioNat "King" Cole With The TrioNat "King" Cole With TrioNat "King" Cole Y Su TrioNat "King"Cole TrioNat "King” Cole And The TrioNat ''King'' Cole And His TrioNat 'King' ColeNat 'King' Cole & His TrioNat 'King' Cole And His TrioNat 'King' Cole TrioNat 'King' Cole Y Su TrioNat (King) ColeNat (King) Cole And The TrioNat Cole TrioNat King And His TrioNat King ColeNat King Cole & His TrioNat King Cole & Son TrioNat King Cole & TrioNat King Cole (Trio)Nat King Cole And His TrioNat King Cole And His Trio With String OrchestraNat King Cole And The King Cole TrioNat King Cole And The Nat King Cole TrioNat King Cole And The TrioNat King Cole And TrioNat King Cole ComboNat King Cole TrioNat «King» Cole And His TrioNat «King» Cole And The TrioNat »King« Cole TrioNat ”King” Cole And His TrioNat.King.Cole.TrioThe King Cole TrioThe "King" Cole TrioThe "Nat" King Cole TrioThe 'King' Cole TrioThe King Cole BandThe King Cole TrioThe King Cole Trio With String ChoirThe King Cole TriosThe Nat "King" Cole TrioThe Nat 'King' Cole TrioThe Nat Cole TrioThe Nat King Cole and His TrioThe Original Nat King Cole TrioThe TrioThe »King« Cole TrioTrioVocal TrioНэт "Кинг" Коул И Его Ансамбльナット "キング" コールと彼のトリオナットキングコールトリオNat King ColeRed CallenderOscar MooreWesley PrinceJohn Collins (2)Irving AshbyJohnny Miller (2)Joe ComfortCharles Harris (2) + +320804Stan Kenton And His OrchestraCorrectBandBand MembersBig Band Of Stan KentonHis OrchestraKentonKenton BandKenton OrchKenton OrchestraKenton-BandOrchester Stan KentonOrchestraStan KentonStan Kenton & His Orch.Stan Kenton & His OrchestraStan Kenton & Orch.Stan Kenton & OrchestraStan Kenton (And His Orchestra)Stan Kenton - His Orchestra And ChorusStan Kenton And & OrchestraStan Kenton And His Greatest OrchestraStan Kenton And His Orch.Stan Kenton And His OrchestrasStan Kenton And His OrchestreStan Kenton And OrchestraStan Kenton BandStan Kenton Big BandStan Kenton E La Sua OrchestraStan Kenton E Sua OrquestraStan Kenton En Zijn OrkestStan Kenton Mit Seinem OrchesterStan Kenton Orch.Stan Kenton OrchestraStan Kenton Orchestra, TheStan Kenton OrchestrasStan Kenton OrkestereineenStan Kenton Und Sein OrchesterStan Kenton Y Su OrquestaStan Kenton's 1951 BandStan Kenton's Innovations OrchestraStan Kenton's OrchestraStan Kenton-OrchesterStan Kentoni OrkesterStan Kentonin OrkesteriStanley Kenton And His OrchestraThe EnsembleThe Kenton OrchestraThe Stan Kenton OrchestraОркестр Стена Кентонаスタン・ケントン楽団スタン・ケントン楽団Tim HagansJack CostanzoStan GetzMaynard FergusonDon SebeskyDon MenzaMarvin StammStan KentonSal SalvadorArt PepperRolf EricsonCharlie MarianoGary PackBud ShankLaurindo AlmeidaPeter ErskineVido MussoAnita O'DayJimmy GiuffreLee KonitzPepper AdamsDavey SchildkrautStan LeveyShelly ManneStu WilliamsonBill HolmanBill PerkinsMel LewisKai WindingJack NimitzErnie RoyalJoe EllisBob KestersonEddie BertBob CooperJack SheldonGabe BaltazarBud BrisboisAl PorcinoJules ChaikinConte CandoliWillie RodriguezJoel KayeFrank RosolinoGeorge RobertsPete CandoliPete RugoloEarl DumlerCarl FontanaShorty RogersHerb HarperFrank BeachEddie SafranskiMike AltschulMilt BernhartEd WassermanSam DonahueMax WayneJohn Anderson (2)John HowellHarry DiVitoTommy ShepardHarry BettsFrank StrongBuddy ChildersCarlos VidalLee KatzmanJohn HalliburtonRalph CollierRichie KamucaLeonard SelicGlenn StuartJimmy CampbellBart VarsalonaJay SollenbergerJim OattsRed DorrisBob BurgessRay StarlingBob CurnowDale DevoePhil GrossmanQuin DavisGeorge PriceAbe LuboffWillie MaidenGreg MetcalfKevin JordanGary Todd (2)Greg Smith (3)Lennie NiehausDave Stone (2)Mike WallaceJay McAllisterDalton SmithJim AmlotteWayne DunstanBob FitzpatrickDave WheelerBob BehrendtMarvin HolladayKeith LaMottePaul RenziCarl SaundersDwight CarverJack SpurlockNewell ParkerBob RolfeGene RolandDon BagleyBart CaldarelliBill RussoJohn CoppolaBob GiogaDick KenneyVinnie DeanHoward RumseyRalph BlazeTony KlatkaSam NotoGeorge KastTommy Lopez, Sr.Dennis NodayDave MaddenMike PriceBoots MussulliCarl LeachEfraim LogreiraSteve PerlowJoe RandazzoGregory BemkoKarl GeorgeFred CarterAllaudin MathieuVinnie TannoEd LeddyDon KellyPhil GilbertKent LarsenClive AckerJerry McKenzieSanford SkinnerPeter ChivilyDave Van KriedtGraham EllisRay WetzelTerry LayneDon PaladinoAlex LawFreddy ZitoTed RomersaBobby KnightDoug PurvianceMike Ross (4)Dave ZeaglerSteve CamposJohn GraasGene EnglundDick ShearerBob FaustMike SuterDick ColeDon Reed (2)Skip LaytonJeff UusitaloJames KartchnerBill SmileyFrank HugginsJohn MadridBob Ahern (2)Paul WeigandTony CampiseBilly RootArchie LeCoqueBill Catalano (2)Artie AntonAllan BeutlerDon CaroneDon Smith (6)Tony FerinaDon DennisStan FletcherRay ReedJay SaundersMike JamiesonJohn Von OhlenJohn WorsterChuck Carter (2)Mike VaxRamon LopezPhil HerringKim FrizellJoe MarcinkiewiczRichard TorresGary HobbsNorman Smith (2)Alan MorrisseyRuben McFallJimmy SalkoChris GalumanHarvey CooninMike SnusteadRick ConditMilton KabakRoy ReynoldsDave KeimJohn HarnerDan SalmasianAlan YankeeMike Egan (4)Warren WeidlerGeorge WeidlerKen HannaBuddy ArnoldJack OrdeanAl CostiHollis BridwellMarvin GeorgeEarl CollierEmmett CarlsJimmy SimmsAl AnthonyRuss BurgherRay KleinBob LymperisBill TrujilloPaul SeversonGary SlavoDee BartonRon KellerMilt GoldKirby StewartEarl CornwellBill Robinson (4)Red KellyChico AlvarezBob HicksBob OlsonStan Harris (2)Jean TurnerFred Simon (3)Ray FlorianJoe BurnettTom RingoLou GascaBucky CalabreseDanny NapolitanoGabe JellenAnthony DoriaPhil Davidson (5)Lew EliasSeb MercurioJack WulfeZachary BockJim Holmes (2)Aaron ShapiroCarl OttobrinoDwight MumaCharlie ScarleLloyd OttoBarton GreyDave SmileyPaul IsraelJim Cathcart (2)Herbert OffnerKeith Moon (2)Dave SchackneMaurice KoukelBen ZimberoffSam Singer (2)Shelley DennyDon DavidsonArchie WheelerPaul HeydorffJoe CasanoTom BridgesFrank MinearDave Kennedy (3)John ParkLloyd SpoonDick WilkiePaul AdamsonBill HartmanMike BarrowmanBob WinikerDave SovaMel Green (2)Eddie Meyers (2)Bob LivelyRay BordenGeorge FayeJoe VernonDick MorseClyde SingletonBob VarneyBill Atkinson (2)Morey BeesonKim ParkBob CrullTony ScodwellJohn Wasson (2)Miff SinesRay SikoraGus ChappellJohn Carroll (5)Norman BaltazarJoe CiavardoneJim Falzone (2)Maury BeesonTom SlaneyRay Brown (12)Joe MegroVic MinichielloBob LesherBrett StampsEd BadgleyBill FritzMike CicchettiVic MinichelliDanny NolanTom WhittakerGeorge Lee (5)Ronnie RubinErnie FigueroaPierre JosephsHarry Forbes (2)Bob DockstaderLorraine RagonDick MartinezBilly StuartJohn BockGeorge Martin (14) + +320865Vincent RobinFrench oboe + musette (bagpipe) playerNeeds VoteLe Concert Des nationsLes Folies FrançoisesAmbrassbandLe Poème HarmoniqueEnsemble PhilidorIl Complesso BaroccoEnsemble A Venti + +321053Nicola StiloItalian flutist, guitarist and pianist, born in 1956.CorrectN. StiloN.StiloNIcola StyleNicola StyloNicolas StiloChet Baker Quartet + +321128RihannaRobyn Rihanna FentyBarbadian recording artist, actress and fashion designer, born February 20, 1988 in Saint Michael, Barbados. +She began her career as a result of meeting record producer [a=Evan Rogers] in late 2003. +At age 16, she moved to the United States to pursue a recording career and began recording demo tapes under Rogers' guidance, subsequently signing a contract with Def Jam Recordings after auditioning for Jay-Z. + +Rihanna has a Lyric contralto vocal type. Vocal Range: 3 octaves 2 notes (B2-D6)'.Needs Votehttp://www.rihannanow.comhttp://www.universal-music.de/rihannahttp://www.facebook.com/rihannahttp://www.imdb.com/name/nm1982597http://www.instagram.com/badgalririhttp://myspace.com/rihannahttp://twitter.com/rihannahttp://rihannafenty.webs.comhttp://en.wikipedia.org/wiki/Rihannahttp://www.youtube.com/user/rihannaRRhiannaRhiannahRhyannaRi-annaRiahannaRiannaRiannahRihRihanna Slave Song About NothingRihannatリアーナ蕾哈娜雷哈娜Robyn FentyFenty Fantasia + +321493Peter WashingtonPeter Mark WashingtonAmerican jazz double bassist, born in Los Angeles on August 28, 1964Needs VoteThe Jazz MessengersJan Lundgren TrioArt Blakey & The Jazz MessengersTommy Flanagan TrioVladimir Shafranov TrioThe Carnegie Hall Jazz BandBenny Golson GroupGeorge Cables TrioThe Blue Note 7Billy Drummond QuartetThe Johnny Griffin QuartetTomas Franck QuartetThe Brian Lynch QuartetOne For All (3)Derek Smith TrioDonald Byrd SextetBill Charlap TrioThe Lew Tabackin QuartetToshiko Akiyoshi Jazz OrchestraMike Wofford TrioBenny Green QuintetMichel Sardaby QuintetJohn Swana QuintetDavid Hazeltine TrioReeds And DeedsEric Alexander QuartetDan Nimmer TrioRalph Moore QuintetTom Williams QuintetWalt Weiskopf SextetJimmy Cobb QuartetEric Alexander QuintetMessage (9)Mike LeDonne QuintetJimmy Heath Big BandRalph Lalama QuartetMike LeDonne SextetDon Sickler QuintetJim Snidero QuintetDado Moroni TrioBrian Lynch QuintetJazz In The New HarmonicSteve Nelson QuartetThe David Leonhardt TrioDon Grolnick GroupDavid Hazeltine QuartetJohn Swana SextetBen Riley's Monk Legacy SeptetGrant Stewart QuintetRich Perry QuartetSteve Davis SextetJim Snidero QuartetHarry Allen QuartetStanley Cowell SextetFlutologyJoe Magnarelli QuintetEric Alexander SextetRenee Rosnes TrioBobby Broom QuartetBenny Golson QuartetRichard Wyands TrioThe Ray Appleton SextetGrant Stewart QuartetFabio Morgera QuintetWalt Weiskopf NonetSteve Davis QuartetDavid Hazeltine QuintetAndy Fusco QuintetRob Bargad SextetEhud Asherie TrioGreg Gisbert SextetFreddie Hubbard OctetJesse Davis QuintetRicky Ford QuintetThe Power QuintetJim Rotondi SextetAkane Matsumoto TrioJunko Koike TrioChantale Gagné TrioAndrea Domenici TrioRenee Rosnes SextetSteve Hobbs QuartetBenny Green SextetFrank Wess NonetThe Heavy Hitters (3)Jerry Weldon - Michael Karn Quintet + +321625Joe Thomas (3)Joseph Vankert ThomasAmerican jazz saxophonist, clarinetist, and occasional vocalist, born June 19, 1909 in Uniontown, Pennsylvania; died August 3, 1986 in Kansas City, Kansas. Notable performances include: "Baby Won't You Please Come Home", "Wham", "Bugs Parade", "Posin'" and "What's Your Story, Morning Glory?". + +Recorded and played with several artists, including [a=Horace Henderson] (alto saxophone, 1929-30), [a=Stuff Smith] (tenor saxophone, 1930-31), and most notably with [a=Jimmie Lunceford] (tenor saxophone, clarinet and vocals, 1932-47), whose band he took over with [a=Edwin Wilcox] after Lunceford's death. + +He left the music business in the mid-1950s to work in the family undertaking business. In the 1960s he started to play again occasionally. + +[b]Not to be confused with [a=Joe Thomas (6)] and [a=Joseph Thomas (7)].[/b]Needs Votehttp://en.wikipedia.org/wiki/Joe_Thomas_%28saxophonist%29http://www.aaregistry.org/historic_events/view/joe-thomas-consistent-musicianhttps://adp.library.ucsb.edu/names/352700J. ThomasJoe Thomas & EnsembleJoe Thomas His Sax And His OrchestraJoe Thomas SpeechJoe Thomas' Sax-O-TetteJoe V. ThomasJoseph "Joe" ThomasThomasJimmie Lunceford And His OrchestraSy Oliver And His OrchestraBuster Harding's OrchestraThe Lunceford QuartetBarney Bigard SextetJoe Thomas & His OrchestraJoe Thomas And Band + +321705Hans LemkeHans Lemke (born 1937) is a German bassoonist.Needs VoteH. LemkeBerliner Sinfonie OrchesterRadio-Symphonie-Orchester BerlinPhilharmonisches Oktett BerlinRIAS Sinfonietta + +321922Henry CokerHenry L. CokerAmerican jazz trombonist, born 24 December 1919 in Dallas, Texas, USA, died 23 November 1979 in Los Angeles, California, USA. + + +Needs Votehttps://en.wikipedia.org/wiki/Henry_Cokerhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/46462ce2e137e874867fa7dd9b0dad53a7fa2/biographyhttps://www.allmusic.com/artist/henry-coker-mn0000672596/biographyhttps://www.tshaonline.org/handbook/entries/coker-henryhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/309055/Coker_Henryhttps://adp.library.ucsb.edu/names/309055CokerGeorge CokerH CokerH. CokerH. L. CokerHenry CockerHenry CookerHenry CrokerHenry L. CokerHery CokerLorenzo Cockerヘンリー・コーカーCount Basie OrchestraIllinois Jacquet And His OrchestraBenny Carter And His OrchestraIllinois Jacquet And His All StarsPaul Quinichette And His OrchestraTony Scott And His OrchestraEddie Heywood And His OrchestraThe Johnny Griffin OrchestraJimmy Mundy OrchestraRussell Jacquet And His All StarsThe Dizzy Gillespie OctetJohnny Richards And His OrchestraThad Jones And His EnsembleWilbert Baranco And His Rhythm BombardiersThe Frank Wess QuintetThe Leiber-Stoller Big BandThad Jones SextetCount Basie And His Nonet + +321925Wilfred MiddlebrooksWilfred Roland MiddlebrooksAmerican jazz bassist, born 17 July 1933 in Chattanooga, Tennessee; died 13 March 2008 in Pasadena, California, USA.Needs Votehttps://adp.library.ucsb.edu/names/331522MIlford MiddlebrooksW. MiddlebrooksW.MiddlebrooksWilford MiddlebrookWilford MiddlebrooksWilfred Middle BrooksWilfred MiddlebrookPaul Smith QuartetTab Smith OrchestraThe Paul Smith TrioThe Strollers (6)Frank Rosolino And His QuartetCharlie Persip's Jazz StatesmenBill Holman / Mel Lewis Quintet + +321926Don RaderAmerican jazz trumpeter and music arranger, born October 21, 1935, Rochester, Pennsylvania. He spent around two decades based in Sydney, Australia, performing with his Quintet and big bands (such as the Sydney All Star Big Band). He passed away on 16 April 2023.Needs Votehttp://www.donradermusic.com/home.htmlhttp://en.wikipedia.org/wiki/Don_RaderD. RaderDon RaiderDon ReaderDonald A. RaderDonald Arthur RaderDonald RaderRaderPeter Herbolzheimer Rhythm Combination & BrassCount Basie OrchestraToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraPeter Herbolzheimer SWF-FormationThe SDR Big BandWoody Herman And The Swingin' HerdMaynard Ferguson & His OrchestraDon Rader QuintetThe Bill Holman BandWoody Herman And The Fourth HerdStan Kenton Alumni BandKlaus Weiss Big BandBob Curnow's L. A. Big BandSteve Spiegl Big BandThe Sydney All Star Big BandThe Don Menza Big BandThe Wrecking Crew (6)Orchester Mladen GuteshaModern Jazz Duo + +321927Grover MitchellAmerican jazz trombonist. +Born 17 March 1930 in Whatley, Alabama. +Died 4 August 2003 in Manhattan, New York, USA. + +Played with the Count Basie Orchestra, as well as with Duke Ellington and Lionel Hampton. In the early '70s, Mitchell started writing music for television and films, including the hit 1972 film "Lady Sings the Blues." +Needs Votehttps://adp.library.ucsb.edu/names/206886G. MitchellGrove MitchellGroven MitchellGrover C. MitchellMitchellCount Basie OrchestraCount Basie Big BandLalo Schifrin & OrchestraThe Frank Wess OrchestraThe Frank Wess - Harry Edison OrchestraGrover Mitchell And His OrchestraGrover Mitchell's New Blue Devils + +321928Sonny PaynePercival PayneAmerican jazz drummer, born May 4, 1926 in New York City, New York, USA, died January 29, 1979 in Los Angeles, California, USA. Son of drummer [a=Chris Columbus]. +Needs Votehttps://en.wikipedia.org/wiki/Sonny_Paynehttps://www.drummerworld.com/drummers/Sonny_Payne.htmlhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/4646303a8144f4315e75160c5cdeb69ba2180/biographyhttps://www.allmusic.com/artist/sonny-payne-mn0000755947/biographyhttps://adp.library.ucsb.edu/names/336834PaynePercival "Sonny" PaynePercival 'Sonny' PayneS. PayneSonny PaineSonny PaneSunshine Sonny PayneSylvester "Sonny" PayneSylvester "Vess" PayneС. ПейнСонни ПейнCount Basie OrchestraHarry James And His OrchestraCount Basie ComboCount Basie And The Kansas City SevenErskine Hawkins And His OrchestraCootie Williams And His OrchestraTiny Grimes QuintetHarry James & His Music MakersLill-Arne Söderbergs Famous TrioGene Roland SextetPaul Quinichette SextetFrankie Newton & His Cafe Society OrchestraThe Leiber-Stoller Big BandThe Nat Pierce Trio + +321929Buddy CatlettGeorge James CatlettAmerican Jazz bassist +Born 13 May 1933 in Long Beach, California, USA, died 12 November, 2014 in Seattle, Washington, USANeeds Votehttps://en.wikipedia.org/wiki/Buddy_Catletthttps:adp.library.ucsb.edunames307767Buddie JonesBuddy CatlessBuddy CatlletBuddy CattlettBuddy CotlettG. CatlettGeorge "Buddy" CatlettGeorge "Buddy" CutlettGeorge 'Buddy' CatlettGeorge (Buddy) CatlettGeorge CatlettQuincy Jones And His OrchestraCount Basie OrchestraCount Basie ComboLouis Armstrong And His All-StarsThe Chico Hamilton QuintetThe Eddie Davis-Johnny Griffin QuintetThe Quincy Jones Big BandPhil Woods-Gene Quill SextetFrank Foster SextetThe Brian Nova Trio + +321930Marshall RoyalMarshal Walton Royal, Jr.American jazz clarinet player and saxophonist, born May 12, 1912 in Sapulpa, Oklahoma, died May 5, 1995 in Los Angeles, California, USA. Older brother of [a=Ernie Royal]. +Needs Votehttps://en.wikipedia.org/wiki/Marshal_Royalhttps://www.allmusic.com/artist/marshall-royal-mn0000355457https://www.radioswissjazz.ch/en/music-database/musician/14188c158a5d68807cbf1c89e08f9315cd953/biographyhttp://worldcat.org/identities/lccn-n81071365/https://adp.library.ucsb.edu/names/103187M RoyalM. RoyalM. RoyaleMarshal RoyalMarshall RoyaRoyalCount Basie OrchestraDuke Ellington And His OrchestraSlim Gaillard And His OrchestraLouis Armstrong And His OrchestraLionel Hampton And His OrchestraRay Anthony & His OrchestraBob Mosely & All StarsPaul Quinichette And His OrchestraLionel Hampton And His SeptetCount Basie Big BandEddie Heywood And His OrchestraThe Ernie Wilkins OrchestraThe Gene Harris All Star Big BandMonroe Tucker And His OrchestraIllinois Jacquet & His Big BandThe Ellington All StarsThe Frank Wess - Harry Edison OrchestraRed Callender SextetMarshall Royal QuintetMarshall Royal & His OrchestraThe Leiber-Stoller Big BandThe Concord All StarsBill Berry And The LA BandEddie Beal And His SextetCount Basie And His Nonet + +321932Paul Smith (5)Paul Thatcher SmithAmerican jazz pianist, composer, arranger and bandleader +Born April 17, 1922 in San Diego, California, USA, died June 29, 2013 in Torrance, California, USA + +[b]Note: For jazz pianist based in Kansas City, MO[/b] worked with [a659591], [a2458229] & [a533569], use [a3884372]. + +Married to singer/actress [a2102161] (1958-2013, his death). + +Smith was the long-time accompanist and conductor for Ella Fitzgerald.Needs Votehttps://en.wikipedia.org/wiki/Paul_Smith_(pianist)http://www.realhd-audio.com/?p=1142https://www.imdb.com/name/nm5783938/https://www.jazzwax.com/2023/12/paul-smith-swinging-elegance.htmlhttps://adp.library.ucsb.edu/names/209614P. SmithPaul T SmithPaul T. SmithPaul Thatcher SmithSmithポール・スミスThe P.T.S.Tommy Dorsey And His OrchestraPaul Smith QuartetVan Alexander And His OrchestraBenny Goodman SextetBilly May And His OrchestraLouie Bellson OrchestraThe Buddy Bregman OrchestraBob Keene OrchestraOzzie Nelson And His OrchestraDave Pell OctetJohnny Richards And His OrchestraThe Paul Smith TrioThe Paul Smith EnsembleRay Anthony's Big Band DixielandBuddy DeFranco And His OrchestraDave Pell EnsembleConrad Gozzo And His OrchestraThe Paul Smith DuoHoyt Curtin Orchestra And ChorusThe Jazz Trio (3) + +322016Eddie Miller (2)Edward Raymond MüllerAmerican jazz saxophonist (tenor), clarinetist and songwriter. +Played with Ben Pollack, Bob Crosby And The Bob Cats, Pete Fountain and others. +As a songwriter he is best known for "Slow Mood" (also known as "Lazy Mood"). +In 1945, he began his own band, Eddie Miller's Combo, which included former Cosby bandmates [a357511] and [a5357944] and former Teagarden bandmate [a6144272]. + +Born June 23, 1911 in New Orleans, Louisiana. Died April 08, 1991 in Van Nuys, California.Needs Votehttp://en.wikipedia.org/wiki/Eddie_Miller_(jazz_saxophonist)https://jazzlives.wordpress.com/2013/12/16/wouldnt-you-like-to-play-like-eddie-miller/https://www.radioswissjazz.ch/en/music-database/musician/10367b91fd0ac7ed97c39b3a2cc84fa1a2e8c/biographyhttps://www.allmusic.com/artist/eddie-miller-mn0000170213E. MillerEd MillerEddie MillerEddy MillerEdward MillerMillerMetronome All StarsLouis Armstrong And His All-StarsPete Kelly And His Big SevenWingy Manone & His OrchestraGlenn Miller And His OrchestraJack Teagarden And His OrchestraBob Crosby And The Bob CatsBen Pollack And His OrchestraEddie Miller And His OrchestraBob Crosby And His OrchestraGordon Jenkins And His OrchestraLouis Prima & His New Orleans GangWoody Herman And The Las Vegas HerdThe Jack Lesberg SextetThe Rampart Street ParadersBunny Berigan And His Blue BoysPete Fountain And His BandKings Of DixielandEddie Miller's OctetEddie Miller's Crescent City QuartetThe Capitol JazzmenAll Star Band (4)Merle Koch And Michele's Silver Stope Jazz BandEddie Miller And His Blue NotesRay Bauduc And The Bob-CatsEddie Miller and his BandChuck Thomas And His Dixieland BandTen Cats And A MouseRed Norvo's NineFour Of The Bob CatsGene Krupa ComboGil Rodin And His Orchestra + +322118George BergJazz saxophonist. Tenor Saxophone + +Needs VoteG. BergGeorg BergGeorge SaxGeorges BergH. BergEnoch Light And The Light BrigadeBuddy Rich And His OrchestraWill Hudson And His OrchestraLarry Clinton And His OrchestraBenny Goodman And His OrchestraRed Norvo And His OrchestraJimmy McPartland And His OrchestraHenry Jerome And His OrchestraJohnny Richards And His OrchestraJerry Wald And His OrchestraMel Powell And His OrchestraThe International Jazz GroupPeanuts Hucko And His OrchestraMichel Legrand Big BandEdgar Sampson And His Orchestra + +322119Jack JenneyTruman Eliot JenneyBorn: May 12, 1910, Mason City, Iowa. +Dead: December 16, 1945, Los Angeles, California. + +One of the most respected trombone players in the field of jazz and swing in the 1930s and early 40s. May be best known for instrumental versions of the song Stardust. +Needs Votehttps://en.wikipedia.org/wiki/Jack_Jenneyhttps://www.allmusic.com/artist/jack-jenney-mn0000100636/biographyhttps://www.dailygreen.it/jack-jenney-il-trombonista-vagabondo/https://snaccooperative.org/ark:/99166/w6f225bvhttp://www.trombone-usa.com/jenney_jack_bio.htmhttps://dbpedia.org/page/Jack_Jenneyhttps://adp.library.ucsb.edu/names/110371Elliot Jenney TrumanElliott JenneyJ. JenneyJ. JenniesJ. JennyJackJack JennieJack JennyJenneyJennieJennyT. E. JenneyArtie Shaw And His OrchestraIsham Jones OrchestraJack Jenney And His OrchestraRed Norvo & His Swing OctetJam Session All-Stars + +322121Andy RussoAnthony C. Russo.American jazz trombonist. + +Born : July 08, 1903 in Brooklyn, New York. +Died : September 16, 1958 in San Diego, California. + +Andy played in own his bands (early 1920s), in Radio staff work (1930s), Jimmy Dorsey (1942-'45) and from 1949 until his death in small groups (under other leaders).Needs VoteA. RussoAl RussoAndrew RussoAnthony 'Andy' RussoAnthony C. RussoAnthony RussoBunny Berigan & His OrchestraJimmy Dorsey And His OrchestraLarry Clinton And His OrchestraRed Norvo And His OrchestraLucien Lavoute Et Le Travelling OrchestraAll Star Alumni OrchestraJoe Glover And His CollegiansMal Hallett And His OrchestraYerkes Happy SixOriginal New Orleans Jazz BandHarry Archer And His OrchestraPee Wee Erwin's Dixieland BandPee Wee Erwin And The Village Five + +322122Johnny BlowersJohn G. Blowers, Jr.American jazz drummer (April 21, 1911, Spartanburg, South Carolina - July 17, 2006).Needs Votehttps://adp.library.ucsb.edu/names/304724https://en.wikipedia.org/wiki/Johnny_BlowersBlowersJ. BlowersJohn BlowersJohnny Blowers And GangJohnny Blowers And MenJohnny Blowers Jr.Johnny Blowers OrchestraJohnny Blowers, His Drums And MenJonny BlowersBunny Berigan & His OrchestraLouis Armstrong And His OrchestraSidney Bechet And His Blue Note Jazz MenArtie Shaw And His OrchestraTeddy Wilson And His OrchestraEddie Condon And His OrchestraToots Camarata And His OrchestraSy Oliver And His OrchestraBobby Hackett And His OrchestraGordon Jenkins And His OrchestraThe V-Disc All StarsYank Lawson And His OrchestraYank Lawson's Jazz BandBunny Berigan's Rhythm-MakersWoody Herman StarsVanderbilt StarsVanderbilt All StarsAll Star Rhythm SectionJohnny Blowers And His Giants Of Jazz + +322123Billy GussakWilliam "Billy" GussakAmerican jazz drummer, teacher, and inventer. +Born c 1920, died in 1994. +Gussak was a session drummer for a number of Bill Hailey And His Comets records. He played on the Show of Shows, with Arthur Godfrey, Charlie Sanford and Archie Bleyer. +Gussak was the drummer on the classic April 12, 1954 recording of "Rock Around The Clock" by Bill Haley and His Comets. Some sources incorrectly spell his name as Guesak. Gussak played a traditional swing groove and fills, adding accents on the first beat. This way of playing was then taken, molded and modified into the “four on the floor” style 4/4 drumming that’s played in today’s pop and rock music. +In the 1930's he played with the CBS Staff band. By the early fifties he was the house-drummer for Essex Records, based in New York. Later he moved to Los Angeles and played for Perry Como. There, he also began teaching drums and came up with some drum-related ideas such as a tunable hourglass drum, a jingle stick and a dual-sound shaker and tambourine – all of which he took out patents on.Needs Votehttps://en.wikipedia.org/wiki/Billy_Gussakhttp://mikedolbear.com/groovers-and-shakers/billy-gussak/https://adp.library.ucsb.edu/names/114901B. GussakBill GussackBill GussakBilly GuesackBilly GuesakBilly GussackGussakBilly GuesakCharlie Barnet And His OrchestraWill Osborne And His Orchestra + +322124Dick TaylorAmerican Jazz trombonist and bandleader. + +For the guitarist of [a=The Pretty Things], use [a=Dick Taylor (2)]. + +For a time, he was married to singer/bassist [a2566599], who sang lead on some of his recordings. +The list of greats he played with is long including Gene Krupa, Louis Armstrong, Bing Crosby, Red Norvo, Anita O'Day, and many others.Needs VoteRick TaylorTaylorGene Krupa And His OrchestraJohn Scott Trotter And His OrchestraDick Taylor And His "Taylor Made Music"Dick Taylor ComboDick Taylor OrchestraDick Taylor Quartet featuring J.D. King & Nick FatoolDick Taylor Quartet + +322126Joe Thomas (4)Joseph Lewis ThomasAmerican swing jazz trumpeter. + +Born: July 24, 1909 in Webster Groves, Missouri. +Died: August 6, 1984 in New York City, New York. + +He started his career with Cecil Scott in 1928. After moving to New York in 1934, he became one of the most asked trumpeters of the 30's and 40's. He has worked with the Fletcher Henderson's Orchestra (34-37), Fats Waller, Benny Carter (39-40), Joe Sullivan & Teddy Wilson's Sextet (42-43) and many more. + +More recently he worked with the Fletcher Henderson Reunion Band in 1957 and also with Claude Hopkins in 1966. +Needs Votehttps://jazzlives.wordpress.com/2009/06/11/remembering-joe-thomas/http://www.jazzarcheology.com/artists/joe_thomas.pdfhttps://adp.library.ucsb.edu/names/352834J. ThomasJ.L. ThomasJoe L. ThomasJohn ThomasThomasHerbie NicholsCozy Cole All StarsFletcher Henderson And His OrchestraRoy Eldridge And His OrchestraBenny Carter And His OrchestraGeorge Wettling's New YorkersArt Tatum And His BandDon Byas And His OrchestraRed Norvo All StarsJoe Thomas And His OrchestraBarney Bigard SextetDon Byas All StarsBarney Bigard QuintetDon Byas' All Star QuintetThe Fletcher Henderson All Stars"Little Jazz" And His Trumpet EnsembleHarry Carney's Big EightJoe Marsala SeptetJoe Marsala And His OrchestraJoe Thomas' Big SixJimmy Jones' Big EightSandy Williams Big EightTed Nash QuintetPete Brown's All-Star Quintet + +322128Bill Miller (2)American jazz pianist and conductor. +Also writer & arranger credit + +Born: February 3, 1915, Brooklyn, New York, USA +Died: July 11, 2006, Montreal, Quebec, Canada. + +Bill Miller accompanied [a=Frank Sinatra] over fifty years, and for the last eight years of his life, [a=Frank Sinatra Jr.] Performing with Red Norvo, Mildred Bailey and Charlie Barnet in the 1930s, Miller also performed with Tommy Dorsey and Benny Goodman.Needs Votehttp://en.wikipedia.org/wiki/Bill_Miller_%28pianist%29https://adp.library.ucsb.edu/names/107261Bob MillerMillerOrchestra Bill MillerOrchestra Di Bill MillerWilliam "Bill" MillerWilliam MillerWilliam WillerCount Basie OrchestraHarry James And His OrchestraCharlie Barnet And His OrchestraRed Norvo And His OrchestraBilly Ternent & His OrchestraRed Norvo QuintetThe Bill Miller SextetFrank Sinatra And Sextet + +322131Clyde LombardiClaudio LombardiAmerican jazz bassist. +Born February 18 (or) March 28, 1922 in New York City (Bronx), New York, died January 01, 1978 in New York City, New York + +Played with Red Norvo and Joe Marsala (1942-1945), Boyd Raeburn (1945), Benny Goodman Orchestra (1945-1946), Charlie Ventura (1946), Lennie Tristano, Wardell Gray, Stan Getz - Al Haig (1948), Slim Gaillard, Lenny Hambro, Stan Hasselgard, Hal McKusick, Specs Powell, Zoot Sims, Chuck Wayne & Barbara Carroll, Eddie Bert & J. R. Monterose, Tal Farlow (1953), CBS (staff orchestra), one of his latest collaborations was with tenor saxophonist Tony Graye (1975). +Some sources place his death in 1975 while other (more reliable) in 1978.Needs Votehttps://adp.library.ucsb.edu/names/327836C. LombardiClyde LombardClyde RombardiV. LombardiVictor "Clyde" LombardiVictor LombardiBoyd Raeburn And His OrchestraBenny Goodman And His OrchestraBenny Goodman SeptetWardell Gray QuartetLennie Tristano TrioZoot Sims QuartetStan Getz QuintetSlim Gaillard And His Southern Fried OrchestraRed Norvo SextetGeorge Williams And His OrchestraGil Mellé QuintetThe Tal Farlow QuartetThe Lenny Hambro QuintetGeorge Wallington And His StringsEddie Bert QuintetAllen Eager QuartetJohn Hardee QuartetRed Norvo And Stuff Smith QuartetRalph Burns And His EnsembleSpecs Powell & Co. + +322132Eddie DellAmerican jazz drummerNeeds VoteEd DellRed Norvo And His OrchestraRed Norvo All-StarsRed Norvo All StarsRed Norvo Sextet + +322262Gil FullerWalter Gilbert FullerAmerican jazz arranger, born April 14, 1920, Los Angeles, California, died May 26, 1994, San Diego, California. + +NOTE: This is NOT [a=Walter Fuller], the jazz trumpeter and vocalist. +Needs Votehttp://gilfuller.com/http://en.wikipedia.org/wiki/Gil_Fullerhttp://www.allmusic.com/artist/p6542/biographyhttps://adp.library.ucsb.edu/names/341645"Gil" Fuller"Gil"Fuller'Gil' FullerBrownFullerG FullerG, FullerG. FullerG. W. FullerG. WalterG.FullerGIlbert FullerGil GullerGil Walter FullerGilbert FullerGill FullerRussellSullerW G FullerW. FullerW. G. FullerW.D. FullerW.FullerW.G. FullerW.G.FullerW.O.FullerW/ G/ FullerWG FullerWaler Gilbert FullerWalter "Gil" FullerWalter "Gill" FullerWalter ''Gil'' FullerWalter 'Gil' FullerWalter (Gil) FullerWalter FullerWalter Fuller GilWalter G. FullerWalter Gil FullerWalter Gilbert "Gil" FullerWalter Gilbert FullerWalter Gill FullerWater "Gil" FullerУ. Фуллерギル・フラーWalter Gil Fuller And His OrchestraGil Fuller's Modernists + +322266Ann MooreAmerican jazz singer, discovered by [a=Count Basie] in Milwaukee in 1945. She sang with Basie until 1947 when she was replaced by [a=Ann Baker].Needs VoteAnn BakerAnne MooreCount Basie Orchestra + +322270Rae PearlSinger, also known as Rae HarrisonNeeds Votehttp://www.allmusic.com/artist/rae-pearl-mn0002165388Rae HarrisonTadd Dameron And His Orchestra + +322277Mary Ann McCallMary Ann McCallAmerican pop and jazz singer, born May 4, 1919 in Philadelphia; died: December 14, 1994 in Los Angeles, California. Aside from solo work, she sang for Charlie Barnet, Tommy Dorsey, Artie Shaw and Woody Herman. McCall joined [a284746] in New York to record "Big Wig In The Wig Wam" in 1939, later returning as vocalist to the first incarnation of [a661482].Needs Votehttps://en.wikipedia.org/wiki/Mary_Ann_McCallhttps://bandchirps.com/artist/mary-ann-mccall/https://www.imdb.com/name/nm8121152/https://alchetron.com/Mary-Ann-McCallhttps://adp.library.ucsb.edu/names/103686Ann McCallMary Ann Mc CallMary Ann McHallMary AnnMcCallMary Anne McCallMcCallWoody Herman And His OrchestraCharlie Barnet And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The HerdWoody Herman And The Swingin' HerdWoody Herman & The Second HerdThe Band That Plays The Blues + +322281Walter BrownWalter Earl BrownUS jazz and blues singer, born August 17, 1917 in Dallas, Texas, died June 1956, in Lawton, Oklahoma. +Brown joined Jay McShann's orchestra in 1940, touring and recording with him up until 1944. He continued to record up until 1950. + +Needs Votehttp://en.wikipedia.org/wiki/Walter_Brown_%28singer%29BrownLucifer BrownP. BrownW BrownW. BrownWalter "Baby" BrownWalter (Confessin' The Blues) BrownWalter ScottJay McShann And His Orchestra + +322284Jimmy GrissomJames Thomas Grissom Jazz and blues vocalist.Needs VoteGrissomJGJimmie GrissomJimmy GrissimJimmy GrissonDuke Ellington And His Orchestra + +322290Kay PentonMary Kathryn Penton Davis née CobbRadio, night club, and big band vocalist from Florida + +Penton started her career as a child, and by the age of seven, she had her own radio show on WADX in Jackson, Mississippi. From there she moved on to New Orleans, and then returned to Jackson. At the age of 16 she moved to New York, and had adopted her real father's last name, Penton. She got a job from George White's Great White Way, a club on Broadway. Her big break came during a tour of White's musical "Midnight Scandals", when the star, [a=Helen Morgan], fell ill. + +From White's show she continued to "Friday on Broadway" radio show, then to CBS and "Three-Ring Time", featuring Penton, [a=Guy Lombardo] and [a=Ogden Nash]. In 1956 she left the show business, and returned to home to Florida. In the mid-1960s, she briefly worked for WSM television in Nashville, Tennessee. + +Born: 27 November 1920 in Holt, Florida, USA +Died: 14 April 1993 in Milton, Florida, USANeeds VoteKay PeutonTadd Dameron And His Orchestra + +322293Brownie McGheeWalter Brown McGheeAmerican folk music and Piedmont blues singer and guitarist, best known for his collaboration with the harmonica player [a=Sonny Terry]. +Born: November 30, 1915 in Knoxville, Tennessee. +Died: February 16, 1996 in Oakland, California. + +Brother of [a=Stick McGhee].Needs Votehttps://en.wikipedia.org/wiki/Brownie_McGheehttps://www.imdb.com/name/nm0569185/https://adp.library.ucsb.edu/names/108013https://www.allmusic.com/artist/brownie-mcghee-mn0000630882"Brownie" McGheeB McGheeB. & R. McGheeB. Mac GheeB. MageeB. Mc CheeB. Mc GheeB. Mc. GheeB. McGeeB. McGhasB. McGheeB.M. GheeBrony McGheeBrownBrown Mc GheeBrown McGheeBrown McgheeBrowne Mc GheeBrownee McGheeBrownieBrownie "Kazoo" McGheeBrownie MageeBrownie Mc CheeBrownie Mc GeeBrownie Mc GheeBrownie McCheeBrownie McGeeBrownie McGhee (As Blind Boy Fuller #2)Brownie McGhee (As Blind Boy Fuller No. 2)Brownie McGhee (Blind Boy Fuller #2)Brownie McGhee (Blind Boy Fuller No. 2)Brownie McGhee His Guitar & Orch.Brownie McGhee His Guitar And OrchestraBrownie McGhee, His Guitar & Orch.George McGheeMc Ghee, BrownieMc . GheeMc GeeMc GheeMcGeeMcGheeMcGreeW "Brownie" McGheeW. B. Mc GheeW. B. McGheeW. McGeeW. McGheeW.B. McGheeWalter "Brownie" McGheeWalter B. McGheeWalter Brown "Brownie" McGheeWalter Brownie McGheeWalter Brwon "Brownie" McGheeWalter McGheeWm.McGheeБрауни Мак-ГиБрауни МакгиBlind Boy Fuller 2Spider SamBig Tom CollinsHenry Johnson (11)The Tennessee GabrielBrother George And His Sanctified SingersSonny Terry & Brownie McGheeDan Burley And His Skiffle Boys"Stick" McGhee & His BuddiesThe Union BoysWashboard BandSonny Terry TrioBrownie McGhee And His Jook Block BustersBlues X FourBrownie Mc Ghee & His Sugar MenHuddie Leadbetter Quartet + +322294June RichmondAmerican jazz vocalist, born 9 July 1915 in Chicago, Illinois, USA, died 14 August 1962 in Gothenburg, Sweden. +Joined [a=Jimmy Dorsey]'s band in 1938, recorded with [a=Cab Calloway] in 1938 and with [a=Andy Kirk] in 1932-1942. First recorded under own name for Mercury in 1945. +From 1948 worked in Europe, recording as a leader in Stockholm in 1951 and with [a=Quincy Jones] in Paris in 1957.Needs Votehttps://adp.library.ucsb.edu/names/116263https://en.wikipedia.org/wiki/June_RichmondJune Richmond And BandRichmondAndy Kirk And His Orchestra + +322297Frances WayneChiarina Francesco BertocciAmerican jazz vocalist. +Born August 26, 1924 in Boston, Massachusetts, USA. +Died February 6, 1978 in Boston, Massachusetts, USA. +In the 1940's she sang with the bands of [a=Sam Donahue], [a=Charlie Barnet] and later [a=Woody Herman], where she met Herman's arranger [a=Neal Hefti] whom she married. In 1946, Hefti formed his own band with Wayne as singer. Later in her career she performed with smaller ensembles. She did a few one-night stands at Donte's in 1974. +Sister of jazz saxophonist [a=Nick Jerrett]. +She sang on three recordings that charted in the U.S., all sung as the vocalist for Woody Herman and His Orchestra. First came "The Music Stopped" (#10, 1944), "Saturday Night (Is the Loneliest Night in the Week)" (1945, #18), and "Gee, It's Good to Hold You" (#17, 1946). Though the song never charted, Wayne is also known for her version of "Happiness Is a Thing Called Joe", which she recorded first with Herman in 1945 and later with Hefti in 1953. +She was on the cover of [i]Down Beat[/i] magazine June 15, 1945.Needs Votehttp://en.wikipedia.org/wiki/Frances_Waynehttps://bandchirps.com/artist/frances-wayne/https://www.imdb.com/name/nm1043503/https://swingandbeyond.com/2019/04/26/happiness-was-a-guy-called-joe/https://adp.library.ucsb.edu/names/350209Francis WayneFrances ClaireWoody Herman And His OrchestraWoody Herman & The HerdThe International All-Stars (2)The Band That Plays The Blues + +322300Kitty KallenKatherine KalinskyAmerican popular singer, born May 25, 1921 in Philadelphia, Pennsylvania, died January 7, 2016 in Cuernavaca, Mexico. +Her career spanned from the 1930s to the 1960s, to include the Swing era of the Big Band years, the post-WWII pop scene and the early years of rock 'n roll.Needs Votehttp://en.wikipedia.org/wiki/Kitty_Kallenhttps://adp.library.ucsb.edu/names/324526K. KallenKallenKitty KalenKitty KallanKitty KollenHarry James And His OrchestraJack Teagarden And His Orchestra + +322307Pee Wee CraytonConnie Curtis CraytonBlues and rhythm & blues singer and guitarist, active in California. +Born: December 18, 1914 Rockdale, Texas +Died: June 25, 1985 Los Angeles, California +Needs Votehttps://en.wikipedia.org/wiki/Pee_Wee_Crayton"Pee Wee" Crayton"Pee Wee" Crayton & His Guitar'Pee Wee' CraytonC CraytonC. CraytonC. CurtisC.C. CraytonConnie C. CraytonConnie CraytonConnie Curtis "Pee Wee" CraytonConnie Curtis CraytonCraytonE. CraytonP CraytonP. CraytonP. W. CraytonP.W. CraytonPee Wee ClaytonPee Wee Crayton & His GuitarPee Wee Crayton And His BandPee Wee Crayton And His GuitarPee Wee CreightonPeeWee CraytonPeewee CraytonПи Ви Крэйтонピー・ウィー・クレイトンJay McShann And His OrchestraIvory Joe Hunter And His BandThe Sunset Blues BandPee Wee Crayton OrchestraThe Kings Quintet + +322312Dick HaymesRichard Benjamin HaymesArgentine actor and singer, born 13 September 1918 in Buenos Aires, Argentina and died 28 March 1980 in Los Angeles, California, USA. Brother of [a=Bob Haymes]. Among others he was married to [a=Rita Hayworth] from 1953 to 1955 and to [a=Fran Jeffries] from 1958 to 1965.Needs Votehttp://en.wikipedia.org/wiki/Dick_Haymeshttps://adp.library.ucsb.edu/names/204361D. HaymesDick HamesDick Haymes & BandDick Haymes With OrchestraDick HaynesHaymesディック・ヘイムズHarry James And His Orchestra + +322314Ada BrownAda Scott BrownAmerican blues and jazz singer, born May 1, 1890 in Kansas City, Kansas, died March 31, 1950 in the same city. +Brown first recorded for OKeh in St. Louis, Mo., in 1923, accompanied by [a=Bennie Moten]'s orchestra. +Needs Votehttps://adp.library.ucsb.edu/names/106280 + +322317Dorothy DandridgeDorothy Jean Dandridge.American actress and popular singer. +Born : November 09, 1922 in Cleveland, Ohio. +Died : September 08, 1965 in West Hollywood, California. (Embolism or Overdose) + +Was the first African American to be nominated for an Academy Award for Best Actress. +Needs Votehttp://en.wikipedia.org/wiki/Dorothy_Dandridgehttps://adp.library.ucsb.edu/names/310820DorothyDorothy DandrigeДороти ДэндриджLouis Armstrong And His OrchestraThe Dandridge Sisters + +322322Memphis SlimJohn 'Peter' ChatmanAmerican blues pianist, singer, and composer. + +Born John Len Chatman in Memphis, he adopted his father's name Peter, who was a blues musician. He moved to Chicago in the 1930s where he was mentored by [a307270], and began cutting sides as a leader in 1939 for [l62753] and [l20955]. Although performed under the name Memphis Slim, he published songs that he had written under the name [a1028318]. His prolific recording career also included sides for [l71637], [l33931], and [l34488], among many other labels. He moved to Paris in 1961, living there until his death in 1988. + +Born: September 3, 1915 (Memphis, Tennessee). +Died: February 24, 1988 (Paris, France).Needs Votehttps://memphismusichalloffame.com/inductee/memphisslim/https://memphisslim.bandcamp.com/https://books.google.com/books?id=i7sDAAAAMBAJ&lpg=PA54&dq=memphis%20slim&pg=PA54#v=onepage&q=memphis%20slim&f=falsehttps://books.google.com/books?id=xR7MdpuSlAEC&lpg=PT533&dq=memphis%20slim&pg=PT533#v=onepage&q=memphis%20slim&f=falsehttps://en.wikipedia.org/wiki/Memphis_Slimhttps://adp.library.ucsb.edu/names/103579"Memphis Slim" Peter Chatman"Memphis" Slim Chatman(Memphis Slim)ChatmanGuitar SlimM. SlimM.SlimMemphis Slim (Peter Chatman)Memphis Slim ChatmanMemphis Slim With Orchestral AccompanimentP. ChapmanPeter "Memphis Slim" ChatmanPeter Chatman, aka Memphis SlimSlimPeter ChatmanL.C. FrazierLeroy (39)Peter Chatman & His Washboard BandBig Bill And His Chicago FiveMemphis Slim And The House RockersMemphis Slim & His OrchestraMemphis Slim QuartetteMemphis Slim & All Participating ArtistsMemphis Slim & His Solid BandFormation Jacques DenjeanFormation Mickey BakerMemphis Slim And His Rhythm And Blues Band + +322325Wini BrownWinifred BrownUS jazz singer during the post-war era (born in Chicago, June 17, 1927 - died March 15, 1978)Needs Votehttps://www.uncamarvy.com/WiniBrown/winibrown.htmlW. BrownWini BrowWinnie BrownLionel Hampton And His OrchestraEarl Hines And His OrchestraWini Brown And Her Boyfriends + +322327Thelma CarpenterAmerican jazz singer and actress, best known as "Miss One", the Good Witch of the North in the movie The Wiz. + +Born: 15 January 1922 in Brooklyn, New York, USA +Died: 14 May 1997 in New York, New York, USANeeds Votehttp://en.wikipedia.org/wiki/Thelma_Carpenterhttps://adp.library.ucsb.edu/names/201575CarpenterTh. CarpenterThelma CaprenterThelma Carpenter With OrchestraCount Basie OrchestraTeddy Wilson And His OrchestraColeman Hawkins And His Orchestra + +322328Joya SherrillJoyce SherrillAmerican jazz singer, songwriter and children's TV host. +Born 20 August 1927 in Bayonne, New Jersey, USA. +Died 28 June 2010 (82 years of age) in Great Neck, New York, USA. +Sherrill is noted for her time with the Duke Ellington Orchestra in the 1940's. In 1962, she participated in a band assembled by Benny Goodman that toured the Soviet Union. +Sherrill originally aspired to be a writer. While she was still in high school, she wrote lyrics to his theme song, “Take the ‘A’ Train.” Her father, a prominent writer, arranged for Ellington to hear her performance of it while he was in town. Sherrill impressed Ellington, and he offered her a job when Ivie Anderson left his band in August 1942. +She sang lead vocals on two Duke Ellington U.S. charted songs--"I'm Beginning to See the Light" (#6 overall, #4 R&B) and "I Ain't Got Nothin' But the Blues" (#4 R&B), both in 1945. +As a songwriter, she is best known for "(The) Kissing Bug", which has been covererd by more than 20 artists.Needs Votehttps://en.wikipedia.org/wiki/Joya_Sherrillhttps://www.imdb.com/name/nm0792686/https://www.allaboutjazz.com/musicians/joya-sherrill/https://bandchirps.com/artist/joya-sherrill/CherillJ. SherrillJoyaJoya SherillJoya SherrilJoyce SherrilJoyce SherrillJoye SherillSherillSherrillДжоя ШерриллDuke Ellington And His OrchestraRex Stewart's Big Eight + +322358Marius UngureanuMarius UngureanuRomanian violinist, born 1962 in Sibiu.Needs Votehttp://www.mariusungureanu.de/UngureanuUngureanu MariusAalborg SymfoniorkesterIrina & DrumTonhalle-Orchester ZürichEuropean Chamber Ensemble + +322510Jim Buck JrJames W. BuckBritish hornist, and French Horn teacher, also known as [b]Jim Buck Jnr.[/b] Died in 1997. +He studied at the [l527847] and, on leaving there, spent his two years national service playing in a band. He played with the [a=Royal Philharmonic Orchestra], spent eight years with [a=Yehudi Menuhin]'s orchestra and worked with the [a=Orchestra Of The Royal Opera House, Covent Garden], which he left to freelancing. In 1967, he was one of the four hornists brought in to work on [a=The Beatles]' "[m=23934]". He then became a member of the [a=Philip Jones Brass Ensemble] and the [a=Locke Brass Consort]. Whilst freelancing, he worked with several different orchestras and on a lot of films, including most of the James Bond series. +Son of the hornist [a=Jim Buck Sr]. + +[u][b]Note[/b][/u]: For releases on which it is not ascertained whether the hornist is [u]Jim Buck Jr[/u] or [u][a=Jim Buck Sr][/u], please use [b][a=Jim Buck][/b].Needs Votehttps://www.feenotes.com/database/artists/buck-james/http://lester.demon.nl/superm/people/gray-sessions.htmlhttps://www.the-paulmccartney-project.com/artist/james-w-buck/J. Buck Jnr.J. Buck JrJ.E. Buck JnrJames BuckJim BuckJim Buck JnrJim Buck Jnr.Jim Buck Jr.Jim Buck, Jnr.Jim Buck, Jr.Jim BuckjurRoyal Philharmonic OrchestraPhilip Jones Brass EnsembleLondon All StarOrchestra Of The Royal Opera House, Covent GardenThe Kingsway Symphony OrchestraThe John Keating OrchestraThe Original Brasso BandJohnny Keating And 27 MenThe Ray Davies OrchestraLocke Brass ConsortSinfonia '72Ken Moule & His Radio Orchestra + +322517Alan CivilBritish horn player, composer, arranger, and educator. Born 13 June 1929, Northampton, East Midlands, England, UK - Died 19 March 1989, London, England, UK. +He joined the [a=London Philharmonic Orchestra] in 1953 becoming principal hornist in 1954. In 1955, he joined the [a=Philharmonia Orchestra] becoming principal hornist in 1957. When [a=Walter Legge] suspended the orchestra in 1964, Civil became one of the first members of the governing body and stayed with the [a=New Philharmonia Orchestra] until 1966, when he became first horn with the [a=BBC Symphony Orchestra] until his retirement in 1988. In 1966, he became professor at the [l290263]. He played a horn solo on the track "For No One" included on [m45284] album. +He was married to [a=Shirley Hopkins] and was appointed OBE in 1985.Correcthttps://soundcloud.com/alan-civilhttps://open.spotify.com/artist/7JQty89L5n6zp6knPJGzA2https://music.apple.com/in/artist/alan-civil/4649726http://en.wikipedia.org/wiki/Alan_Civilhttps://www.hornsociety.org/information-archive/151-hornplayer/hpn-info-archive/636-alan-civil-obituaryhttps://broadbent-dunn.com/biographies/civil-alan/https://www.nytimes.com/1989/03/22/obituaries/alan-civil-hornist-of-bbc-and-beatles-londoner-was-59.htmlhttps://www.findagrave.com/memorial/40581537/alan-civilhttps://musicianbio.org/alan-civil/A. CivilAlain CicilAlan CivelAlan Civil, HornAlan CivillCivilアラン・シヴィルLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraLondon SinfoniettaPhilharmonia OrchestraNew Philharmonia OrchestraThe Academy Of Ancient MusicThe Little Orchestra Of LondonWestminster Brass EnsembleJohnny Keating And 27 MenPrometheus EnsembleLondon Wind SoloistsThe Band Of The Royal ArtilleryThe Music Group Of LondonThe London Wind QuintetThe Music PartyThe Military Ensemble Of LondonLondon Brass Solists + +322519John WilbrahamBritish trumpeter and Professor of Trumpet. Born on April 15, 1944 in Bournemouth, England, UK - Died on April 5, 1998 in Wells, Somerset, England, UK. +He studied at the [l527847] (1962-1965). His career began in 1966 with the [a=New Philharmonia Orchestra]. Two years later he became Principal Trumpet of the [a=Royal Philharmonic Orchestra]. In 1972, he moved to the [a=BBC Symphony Orchestra], as Principal Trumpet, remaining there for nine years. In the late 1980s, he was Co-Principal of the [a=Philharmonia Orchestra]. He was a member of the [a=Philip Jones Brass Ensemble] for five years. He taught at the Royal Academy of Music in London, Birmingham School of Music, and the Royal Military School of Music. +His marriage to the harpist [a=Susan Drake] was dissolved. +Needs Votehttp://johnwilbraham.co.ukhttps://open.spotify.com/artist/0KZXQ03XJMd68aF1gNRm0Bhttps://music.apple.com/us/artist/john-wilbraham/4564502http://ojtrumpet.net/tpin/wilbraham.htmlhttps://www.feenotes.com/database/artists/wilbraham-john-15th-april-1944-1998/John WilbahamJohn WilbrahmJohn WilbranamJohn WillbrahamWilbrahamジョン・ウィルブラハムNational Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraLondon SinfoniettaPhilharmonia OrchestraNew Philharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsMünchener Bach-OrchesterPhilip Jones Brass EnsembleLondon Festival OrchestraThe Kingsway Symphony OrchestraLondon Wind OrchestraPolished Brass Of LondonNorthern SinfoniaWestminster Brass EnsembleThe London Gabrieli Brass EnsembleThe London Bach OrchestraLondon Festival Brass EnsembleThe London Brass Players + +322526Fred AlexanderFrederick G. AlexanderBritish cellist +Former member of the [a=London Symphony Orchestra] (1933-1939)Needs Votehttps://www.imdb.com/name/nm6805510/F. AlexanderFreddie AlexanderFreddy AlexanderFrederick AlexanderLondon Symphony OrchestraThe Chitinous EnsembleThe London Jazz OrchestraThe Band Of The Royal ArtilleryDirections In Jazz UnitLeslie Jones And His Orchestra Of LondonHarry Fryer And His OrchestraThe Freddie Alexander Cello EnsembleJoe Harriott With Strings + +322529Ray PremruRaymond Eugene PremruAmerican trombonist, bass trumpeter, composer, and music teacher (born June 6, 1934, Elmira, New York - died May 8, 1998, Cleveland, Ohio). +He earned a Bachelor of Music degree from the [l635848] in 1956. Soon after graduating he travelled to England for composition study with [a=Peter Racine Fricker], intending to stay a few months. He earned a Performer's Certificate in trombone and composition from the [l290263] in 1957. He then began freelancing on trombone and bass trumpet, becoming a regular in the London jazz scene with groups like the [a=Kenny Baker's Dozen]. In 1958, he won the bass trombone position in the [a=Philharmonia Orchestra], where he performed for the next 30 years, as well as performing regularly with the [a=Philip Jones Brass Ensemble], and [a=London Brass] (from 1964 to 1988). He was Professor of Trombone at [l275380] in Ohio from 1988 until his death. +He married [a=Janet Jacobs] in 1990.Needs Votehttps://www.proquest.com/openview/dad071a3268edbd022a95fef6e8a5cec/1?pq-origsite=gscholar&cbl=18750https://www.youtube.com/playlist?list=PLUADg9O85-gsKZsmGsFV6yfVsOam1u_Unhttps://open.spotify.com/artist/4FQwxl2p7lYBK5gHREkdK4https://music.apple.com/us/artist/ray-premru/206530252https://music.apple.com/tr/artist/raymond-premru/97655475https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/premru-raymond-eugenehttps://en.wikipedia.org/wiki/Raymond_Premruhttps://www.feenotes.com/database/artists/premru-raymond-6th-june-1934-8th-may-1998/https://www.brasswindpublications.co.uk/acatalog/Premru.htmlhttp://clevelandartsprize.org/awardees/raymond_premru.htmlhttps://www.dramonline.org/albums/high-anxiety-bones/noteshttps://music.metason.net/artistinfo?name=Ray%20Premruhttps://www.imdb.com/name/nm2771314/PremruR. PremruRaymond Eugene PremruRaymond PremruRaymond Premru*Raymone PremruР. ПремруThe Chitinous EnsembleLondon BrassTed Heath And His MusicPhilharmonia OrchestraLes Reed And His OrchestraNew Philharmonia OrchestraPhilip Jones Brass EnsembleBobby Lamb - Ray Premru OrchestraWestminster Brass EnsembleBones GaloreJohnny Keating And 27 MenThe London Jazz OrchestraRobert Farnon And His OrchestraKenny Baker's DozenThe Dill Jones QuintetFriedrich Gulda Und Sein Eurojazz-OrchesterRay Premru GroupThe Philip Jones Quartet + +322537Hugh BeanHugh Cecil BeanBritish violinist, and Professor of Violin. Born 22 September 1929 in Beckenham, Kent, England, UK - Died 26 December 2003. +He attended the [l290263] studying further at [l957772]/[l1133062]. Founding member of the [a=Boise Trio]. Sub-leader initially and then Leader of The [a=Philharmonia Orchestra]/[a=New Philharmonia Orchestra] between 1956 and 1967, then after leader of the [a=BBC Symphony Orchestra] (1967-1969) and the [a=London Symphony Orchestra] (Joint Leader, 1973?-1975?). Founding member of [a=The Music Group Of London] (1966-1976). In 1989, he returned to the Philharmonia Orchestra as Co-Leader, and became Leader Emeritus. Professor of Violin at the Royal College of Music (1954-1992). +He was appointed FRCM in 1968, was awarded the Cobbett Gold Medal for chamber music in 1969 and created a Commander of the Order of the British Empire (CBE) in 1970. +Needs Votehttps://open.spotify.com/artist/4zbsyJedr27tP3TUYwH8tChttps://music.apple.com/us/artist/hugh-bean/79131152https://en.wikipedia.org/wiki/Hugh_Beanhttp://www.violinstudent.com/history/september/september22.htmlhttp://pronetoviolins.blogspot.com/2009/09/bean.htmlhttps://musicianbio.org/hugh-bean/https://www.theguardian.com/news/2004/jan/01/guardianobituaries.artsobituarieshttps://www.telegraph.co.uk/news/obituaries/1450716/Hugh-Bean.htmlhttps://www.imdb.com/name/nm1204782/Hugh Bean CBELondon Symphony OrchestraBBC Symphony OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraThe Virtuosi Of EnglandBoise TrioThe Music Group Of London + +322565I Cantori Moderni di AlessandroniI Cantori Moderni di Alessandroni were a musical group founded by Alessandro Alessandroni in 1962, the evolution of Quartetto Caravels.Needs Votehttps://it.wikipedia.org/wiki/I_Cantori_Moderni_di_Alessandronihttps://www.imdb.com/name/nm1370302/ "I Cantori Moderni""Canti Moderni""Cantori Moderni " DI Alessandro Alessandroni"Cantori Moderni Di A. Alessandroni""Cantori Moderni Di Alessandroni""Cantori Moderni""Cantori Moderni" De Allessandro Alessandroni"Cantori Moderni" Di Alessandro Alessandroni"Cantori Moderni" Di Alessandroni"Cantori Moderni" de Alessandroni"Cantori Moderni" di Alessandroni"I Cantori Di Moderni" Di Alessandroni"I Cantori Modemi""I Cantori Modern" Di Alessandroni"I Cantori Moderni D'Alessandroni""I Cantori Moderni Di Alessandroni""I Cantori Moderni di Alessandroni""I Cantori Moderni""I Cantori Moderni" Di Alessandroni"I Cantori Moderni" By A. Alessandroni"I Cantori Moderni" D'Alessandroni"I Cantori Moderni" DAlessandroni"I Cantori Moderni" Dalessandroni"I Cantori Moderni" De Alessandroni"I Cantori Moderni" De Sandro Alessandroni"I Cantori Moderni" Di A. Alessandroni"I Cantori Moderni" Di Alessadroni"I Cantori Moderni" Di Alessandro Alessandroni"I Cantori Moderni" Di Alessandroni"I Cantori Moderni" Di Alessandroni""I Cantori Moderni" Di Allessandroni"I Cantori Moderni" Di Sandro Alessandroni"I Cantori Moderni" Dii Alessandroni"I Cantori Moderni" d'Alessandroni"I Cantori Moderni" de Alessandroni"I Cantori Moderni" di A. Alessandroni"I Cantori Moderni" di Alessandro Alessandroni"I Cantori Moderni" di Alessandroini"I Cantori Moderni" di Alessandroni"I Cantori Moderni" di Sandro Alessandroni"I Cantori moderni" Di Alessandroni"I Contori Moderni""I cantori moderni" di A. Alessandroni"Il Cantori Moderni" De Alessandroni"Os Cantores Modernos De Alessandroni""Os Cantores Modernos""The Modern Singers" Of Alessandroni"The Modern Singers" of Alessandroni''I Cantori Moderni" Di Alessandroni''I Cantori Moderni" Di Alessandroni'''I Cantori Moderni" di Alessandroni''I Cantori Moderni'' Di Alessandroni'I Cantori Moderni' Di Alessandroni<<I Cantori Moderni>> Di Alessandroni<<I CantoriModerni>> Di Alessandroni<<i Cantori Moderni>> Di AlessandroniAlessandro AlessandroniAlessandro Alessandroni & I Cantori ModerniAlessandro Alessandroni ChoirAlessandro Alessandroni E I Cantori ModerniAlessandroniAlessandroni "Canti Moderni"Alessandroni's "Cantori Moderni"Alessandroni's Cantori ModerniAlessandroni's Modern BandC. M. AlessandroniCantori ModerniCantori Moderni Di Alessandro AlessandroniCantori Moderni Di AlessandroniCantori Moderni Di S. AlessandroniCantori Moderni di A. AlessandroniCantori Moderni di Alessandro AlessandroniCantori Moderni di AlessandroniCantori Moderni's ChoirComplesso Vocale "I Cantori Moderni" di Sandro AlessandroniComplesso Vocale A. AlessandroniCoroCoro "Cantori Moderni" Di AlessandroniCoro "I Cantori Moderni Di AlessandroniCoro "I Cantori Moderni Di Alessandroni"Coro "I Cantori Moderni"Coro "I Cantori Moderni" Di AlessandroniCoro "I Cantori Moderni" di AlessandroniCoro 2Coro AlessandroniCoro Cantori Moderni Di AlessandroniCoro Dei Cantori Moderni Di "Alessandroni"Coro Dei Cantori Moderni Di Alessandro AlessandroniCoro Dei Cantori Moderni di AlessandroniCoro Dei «Cantori Moderni» Di A. AlessandroniCoro Del M° AlessandroniCoro Di AlessandroniCoro Di S. AlessandroniCoro Di Sandro AlessandroniCoro I Cantori ModerniCoro M° AlessandroniCoro di A. AlessandroniCoro di AlessandroniCoro: C.M. AlessandroniI "Cantori Moderni"I "Cantori Moderni" De AlessadroniI "Cantori Moderni" Di A. AlessandroniI "Cantori Moderni" Di Alessandro AlessandroniI "Cantori Moderni" Di AlessandroniI "Cantori Moderni" di A. AlessandroniI "Cantori Moderni" di Alessandro AlessandroniI "Cantori Moderni" di AlessandroniI CantoriI Cantori Di AlessandroniI Cantori ModerniI Cantori Moderni - di AlessandroniI Cantori Moderni DalessandroniI Cantori Moderni De AlessadroniI Cantori Moderni De AlessandroniI Cantori Moderni Di A. AlessandroniI Cantori Moderni Di A.AlessandroniI Cantori Moderni Di Alessandro AlessandroniI Cantori Moderni Di AlessandroniI Cantori Moderni Diretti Da AlessandroniI Cantori Moderni Of A. AlessandroniI Cantori Moderni Of AlessandroniI Cantori Moderni by Alessandro AlessandroniI Cantori Moderni d' AlessandroniI Cantori Moderni d'AlessandroniI Cantori Moderni de Sandro AlessandroniI Cantori Moderni di A. AlessandroniI Cantori Moderni di AlessandriniI Cantori Moderni di Alessandro AlessandroniI Cantori Moderni di AlessandroniI Cantori Moderni di Alessandroni ChoirI Cantori Moderni of di A. AlessandroniI cantori Moderni d'AlessandroniI cantori Moderni di AlessandroniI « Cantori Moderni » Di AlessandroniI « Cantori Moderni » di AlessandroniI «Cantori Moderni di Alessandroni»I «Cantori Moderni»I «Cantori Moderni» Di AlessandroniI «Cantori Moderni» di AlessandroniIcantori ModerniIl Coro Del M. AlessandroniIl Coro Di AlessandroniLes "Cantori Moderni"Les Cantori ModerniLes Chanteurs ModernesLos "Cantores Moderni" De AlessandroniLos "I Cantori Moderni" De AlessandroniLos Cantores ModernosModern Singers Of Alessandroni, TheOrchestra <<I Cantori Moderni>> di AlessandroniOs "Cantores Modernos" De AlessandroniOs Cantores ModernosStudio ChoirThe "Canti Moderni"The "Modern Singers" Of AlessandroniThe Alessandro Alessandroni SingersThe Canti ModerniThe Modern Singers Of AlessandroniThe Modern Singers of AlessandroniVokalni Sastav "Cantori Moderni"antori Moderni di Alessandro Alessandronii Cantori Moderni di Alessandronii « Cantori Moderni » di Sandro Alessandroniles Cantori Moderni« Cantori Moderni Di Alessandroni »« I Cantori Moderni »« I Cantori Moderni »« I Cantori Moderni » D'Alessandroni« I Cantori Moderni » Di Alessandroni« I Cantori Moderni » di Alessandroni« I Cantori Moderni» Di Alessandroni«I Cantori Moderni»«I Cantori Moderni» Di Alessandroni«I Cantori Moderni» d'Alessandroni«I Cantori Moderni» de Alessandroni«I Cantori Moderni» di Alessandroni«I Cantori Moderni»Di Alessandroni“Cantori Moderni” Di Alessandroni“I Cantori Moderni”“I Cantori Moderni” Di Alessandroni“I Cantori Moderni” di Alessandroni”I Cantori Moderni” Di Alessandroni”I Cantori Moderni” di Alessandroni„I Cantori Moderni“„I Cantori Moderni“ di Alessandroni‟Cantori Moderni” Di AlessandroniEdda dell'OrsoAlessandro AlessandroniGianna SpagnuloRaoul (4)Giulia AlessandroniAnnibaleFranco CosacchiNino DeiEnzo GioieniErnesto BrancucciMaria Cristina BrancucciAugusto GiardinoRenzo AndreiniFiorella GranaldiLorenzo SpadoniAnna Maria RipaniRenato OrioliAdele FiorucciLorena (24) + +322694Billy PageWilliam E. Page IISongwriter/producer. Brother of [a=Gene Page].Needs VoteB PageB. PageB. PaigeB.PageBeele PageBeely PageBill PageBill PageFloydP. PagePagePage, BW.E. PageWilliam "Billy" PaigeWilliam E. PageWilliam E. Page IIWilliam PageWilliam Page IIБ. Пэйдж + +322780Bobby LambIrish jazz trombonist, composer and conductor..Needs Votehttps://en.wikipedia.org/wiki/Bobby_Lamb_%28trombonist%29B LambBob LambBob LampBobbyBobby LambeLambWoody Herman And His OrchestraThe Derek Wadsworth OrchestraThe Stan Tracey Big BrassThe London Jazz OrchestraWoody Herman BandMike Batt OrchestraWoody Herman And The Fourth HerdKenny Wheeler Big BandBobby Lamb And The KeymenTrinity Big BandWoody Herman And The Swingin' Herd (2)Bobby Lamb All Stars + +322813Jerry KennedyJerry Glenn KennedyAmerican producer, songwriter guitarist and dobro player. +Husband of [a2441155]. +Father of [a425327] and [a1104339]. +Often associated with [a=Shelby S Singleton Jr.] + +Born: 10th August 1940 in Shreveport, Louisiana, USA + +Often incorrectly credited for co-writing [a=Elvis Presley]'s song "Way Down" actually written by [a=Layng Martine Jr.] in 1977. He co-wrote a song by the same name with [a=Leon Martin (2)] in 1963.Needs Votehttp://www.cmt.com/artists/az/kennedy_jerry/artist.jhtmlhttps://en.wikipedia.org/wiki/Jerry_Kennedyhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=182981&subid=2https://www.vintageguitar.com/3698/jerry-and-gordon-kennedy/https://adp.library.ucsb.edu/names/205332J KennedyJ. KennedyJerry G KennedyJerry G. KennedyJerry GlennJerry Glenn KennedyJerry KenedyJerry Kennedy (The Maestro)Jerry Kennedy And His Blues GuitarJerry Kennedy And His Dancing GuitarsJerry Kennedy'sJerry Wayne KennedyKennedyMr. "Hey Mister" KennedyThe Maestro, Jerry G. KennedyJerry GlennThe Jerry Kennedy OrchestraTom & Jerry (4)Brad & JerryJerry Kennedy And Friends + +322819Ray StevensHarold Ray RagsdaleAmerican novelty singer, musician, comedian, songwriter and producer, born on January 24, 1939 in Clarkdale, Georgia. Brother of [a=John Ragsdale], father of [a=Suzi Ragsdale]. +Proficient on several instruments. Production work in the mid 1960's. Numerous appearances on the Andy Williams TV show in the late 60's. +Hosted own TV show in 1970. Also recorded as Henhouse Five Plus Two. +Operated [l=Ray Stevens Sound Laboratory] recording studio in the 70's in Nashville, TN.Needs Votehttp://www.raystevens.com/http://www.imdb.com/name/nm0828696https://en.wikipedia.org/wiki/Ray_Stevenshttps://www.facebook.com/raystevensmusic1707/https://myspace.com/raystevensmusic/https://twitter.com/raystevensmusichttp://repertoire.bmi.com/writer.asp?page=1&blnWriter=True&blnPublisher=True&blnArtist=True&fromrow=1&torow=25&affiliation=BMI&cae=29624770&keyID=279203&keyname=STEVENS+RAY&querytype=WriterIDB. StevensHarold Ray "Stevens" RagsdaleJ. StevensR StevensR, StevensR. StebensR. StephensR. StevensR. StevnesR..StevensR.StevensRat StevensRayRay "Ahab The Arab" StevensRay StevenStevenStevensStevenson[Ray Stevens]レイ・スティーブンスHenhouse Five Plus TwoHarold Ragsdale + +322825Bill PorterBilly Rhodes PorterAmerican sound engineer who worked closely with [A=Chet Atkins], born Jun 15, 1931 in St. Louis, Missouri, USA - died Jul 7, 2010 in Ogden, Utah, USA. +He was involved in creating the 'Nashville Sound' of the 50s and 60s, working at RCA Victor, Nashville and Monument Records, before moving to Las Vegas in 1966 to head United Recording Studios and found [l=Vegas Music International]. +[b]For the American trombonist, please use [a=Bill Porter (3)]. +For the [a=the Dukes Of Dixieland] jazz bassist, please use [a=Bill Porter (4)][/b]. +Needs VoteBill R. PorterPorter + +322845Sal MarquezTrumpet/flugelhorn playerNeeds VoteMarquezP. MarquezS. MarquezSalSal Marquez And The Hollywood HornsSalvador MarquezWoody Herman And His OrchestraThe MothersBuddy Rich Big BandGRP All-Star Big BandWoody Herman And The Thundering HerdAlphonse Mouzon QuintetThe Jazz Central Station All Stars1:00 O'Clock Lab Band + +322847Mike AltschulAmerican jazz winds player (flute, bass flute, clarinet, piccolo, saxophone and trumpet), born December 27, 1945 in Los Angeles. +Toured and recorded with [a=Stan Kenton] 1967-1969, later recorded with [a=Don Ellis], and began an association with [a=Gerald Wilson] that continued intermittently for several years.Needs VoteMichael AltschulMike AltscholMike AltshulMike G. AltschulThe MothersStan Kenton And His OrchestraThe Abnuceals Emuukha Electric Orchestra + +322933Guy MardelMardochée ElkoubiFrench singer born on June 30, 1944 in OranNeeds Votehttp://www.myspace.com/guymardelC. MardelG. MandelG. MardeG. MardelG. MardellG. マルデルG.MardelG.MardelleGuy MardellMandelMardelMardellMardenA.J. Spelberg + +323001Si ZentnerSimon Hugh ZentnerAmerican Jazz trombonist and band leader. + +Born : June 13, 1917 in New York City, New York. +Died : January 31, 2000 in Las Vegas, Nevada. +Needs Votehttps://en.wikipedia.org/wiki/Si_Zentnerhttps://adp.library.ucsb.edu/names/352073https://www.imdb.com/name/nm1408346/Cy ZentnerS. ZentnerS.H. ZentnerS.ZentnerShimshin C. ZentnerShimshin Chaim ZentnerSi ZenterSimon H. "Si" ZentnerSimon H. 'Si' ZentnerSimon H. ZentnerSimon ZentnerSy ZentnerThe Big Band of Si ZentnerThe Wonderful World Of Si ZentnerZentnerHugh SimonWoody Herman And His OrchestraBilly May And His OrchestraArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraGeorgie Auld And His OrchestraStanley Wilson And His OrchestraThe Buddy Bregman OrchestraWoody Herman's Big New HerdBob Keene OrchestraWoody Herman And The Swingin' HerdSi Zentner And His OrchestraGlen Gray & The Casa Loma OrchestraLou Bring And His OrchestraWoody Herman And His Third HerdSi Zentner & His Dance Band + +323068Buster CooperGeorge CooperBuster Cooper (born April 4, 1929, St. Petersburg, Florida, USA – died May 13, 2016) was an American jazz trombonist. +Brother of [a550904] +Needs Votehttps://en.wikipedia.org/wiki/Buster_CooperB. CooperCooperGeo "Buster" CooperGeo. "Buster" CooperGeorge "Buster" CooperGeorge 'Buster' CooperGeorge Buster CooperGeorge CooperБастер КуперDuke Ellington And His OrchestraLionel Hampton And His OrchestraThe Prestige Blues-SwingersDuke Ellington All Star Road BandRenolds Jazz OrchestraLawrence Brown's All-StarsThe Cooper Brothers (2) + +323069Mercer EllingtonMercer Kennedy EllingtonAmerican jazz trumpet player, composer & arranger. +Born: 11 March 1919 in Washington, District Of Columbia, USA. +Died: 8 February 8 1996 in Los Angeles, California, USA (aged 76). + +He is the son of [a=Duke Ellington] and the father of [a5539350].Needs Votehttp://en.wikipedia.org/wiki/Mercer_EllingtonB. EllingtonD. EllingtonElligtonEllingtonEllington - MedlerEllington - MercerEllington / MercerEllington-MercerEllington/MercerEllngtonJ. MercerM . EllingtonM EllingtonM. EllingtonM. E. EllingtonM. EllingtonM. FilingtonM.EllingtonMEMercerMercer - EllingtonMercer / EllingtonMercer K. EllingtonMercer Kennedy EllingtonMercer – EllingtonMercer – Kennedy – EllingtonMercer, EllingtonMercer-EllingtonMercer/EllingtonSonT. EllingtonМ. ЭллингтонМерсер ЕлингтънМерсер ЭллингтонDuke Ellington And His OrchestraMercer Ellington And His OrchestraThe Duke Ellington OrchestraMercer Ellington OctetMercer Ellington Quartet + +323071Herbie JonesHerbert Robert JonesAmerican jazz trumpeter and arranger. +Born March 23, 1926 in Miami, died March 19, 2001 in New York City + + +Correcthttps://en.wikipedia.org/wiki/Herbie_Joneshttps://web.archive.org/web/20170708190304/http://www.depanorama.net/dems/011a.htmHerb JonesHerbert JonesJonesХерби ДжоунсDuke Ellington And His OrchestraThe International Jazz GroupDuke Ellington All Star Road Band + +323072John LambJazz bassist, born December 4, 1933 in Vero Beach, Florida. +Lamb joined Duke Ellington's orchestra in 1964 for a three-year stay and continued to play with him occasionally during the late 1960s. + +A native of Vero Beach, John Lamb is an internationally known jazz bass player. He has played with Sonny Stitt, Jimmy Heath, Gene Ammons and the Duke Ellington Orchestra. In Florida, John Lamb is a continually sought-after bass player and has appeared in numerous jazz concerts, including the KOOL JAzz Festivals.Needs VoteJ. LambJohn LambeJohn LampJohn LamsДжон ЛэмDuke Ellington And His OrchestraBoston Pops OrchestraDuke Ellington OctetThe Herb Harris Jazz Trio + +323163Martin BanksMartin Buford Banks, Jr.American jazz trumpeter and flugelhorn player who performed with the Sun Ra Arkestra in 1988 +Born June 23, 1936 in Austin, Texas, died August 20, 2004 in Austin, Texas +Extended Bio: +Jazz trumpeter Martin Banks was born in Austin, Texas, on June 21, 1936. He was the son of Rose and Martin Buford Banks, Sr. His father Buford, played trombone with great skill in several bands, including Chicago’s King Kolax Orchestra, which included tenor saxophone giant John Coltrane. This was the younger Banks' original instrument, but he had arms too short to play the full range of notes on the trombone, so he switched to trumpet in the sixth grade. Martin, Jr., grew up in East Austin and attended L. L. Campbell Elementary School and Anderson High School before moving to San Francisco to live with an uncle in 1953. He completed his high school education there and received a B.A. degree from City College of San Francisco. + +He moved on to Los Angeles, where, as part of the local scene, he made his recording debut with saxophonist Dexter Gordon in 1961 on The Resurgence of Dexter Gordon. While Banks never recorded any albums of his own, he appeared on sessions with Ray Charles (Sticks and Stones), Archie Shepp (Magic of Ju-Ju), Harold Land (Take Aim), Rahsaan Roland Kirk, Freddie King (My Feeling for the Blues), and more. He was hired for Ray Charles' touring band, which took him to New York where Banks made his name as a journeyman musician in the 1960s and 1970s. + +In New York, Banks established an astounding résumé that included working in the bands of Duke Ellington, Count Basie, James Brown, B.B. King, Lionel Hampton, Dizzy Gillespie, Sun Ra, and many others. He was also in the house band at the Apollo Theater and at Motown Records. Banks also worked with Texan tenor saxophonists Booker Ervin and David “Fathead” Newman, backing up the former on his 1967 album entitled Booker ‘n’ Brass. Among his many recordings and other musical accomplishments, Banks also played on the Broadway musical Hair. For several years during the 1970s he played in the house band at Walt Disney World in Orlando. + +Banks returned to live in Austin in 1988. He regularly played at the Elephant Room and also taught music at elementary schools in the area. He became an active member in the local jazz scene playing with James Polk, Alex Coke, Tina Marsh, and Ephraim Owens in groups that included JAMAD, Countenance., the Creative Opportunity Orchestra, and the Texas Trumpets. Rarely heard as a soloist with groups earlier in his career, Banks would, in later years, solo on albums produced by such Austin ensembles as Tina Marsh’s Creative Opportunity Orchestra and Slim Richey’s Dream Band. To the latter’s album entitled Live and Unrehearsed, recorded in 2000, Banks contributed a lovely muted solo on Erroll Garner’s “Misty.” An unassuming musician, Martin Banks was a dependable sideman who always added to any group that called on him for a supporting role. On February 26, 1998, along with jazz saxophonist Larry D. C. Williams, Martin Banks was honored by Austin mayor Kirk Watson who officially declared the day as “Larry D. C. Williams and Martin Banks Day.” Banks is a member of the Texas Music Hall of Fame and a pavilion in Austin’s Givens Park was named in his honor in 2005. Banks died in Austin on August 20, 2004. In 2010 Banks was inducted into the Austin Music Memorial.Needs Votehttps://adp.library.ucsb.edu/names/302973https://www.austinjazzsociety.org/content.aspx?page_id=22&club_id=215484&module_id=525248MartinMarty BanksMarvin BanksマーティンバンクスArchie SheppRay CharlesDuke EllingtonCount BasieDexter GordonRoland KirkFreddy KingThe Creative Opportunity OrchestraThe Texas TrumpetsJimmy Woods QuintetJAMAD + +323261Alex SipiaginAlexandr Anatoljewitsch SipjaginRussian jazz trumpet player, born 11 June 1967 in Jaroslawl, USSR. He is married to [a8162]Needs Votehttp://www.myspace.com/alexsipiaginhttp://www.alexsipiagin.com/https://alexsipiagin.bandcamp.com/https://alexsipiaginjazz.bandcamp.com/A. SipiaginAlex "Sasha" SipiaginAlex 'Sasha' SipiaginAlex (Sasha) SipiaginAlex SipiaguineAlex SypaginAlexander SepiaginAlexander SipiaginAlexander SipyaginAlexandre SipiaquineSipiaginА. СипягинАлекс СипягинАлександр СипягинGil Evans And His OrchestraThe George Gruntz Concert Jazz BandDave Holland Big BandMingus DynastyDave Holland SextetMingus Big BandMingus OrchestraMichael Brecker QuindectetDave Holland OctetOpus 5 (3)The New York Comes To Groningen EnsembleRobin Eubanks Mass Line Big BandAlex Sipiagin QuintetRiccardo Fassi QuartetDavid Kikoski QuintetDafnis Prieto Big BandDoug Beavers 9Christophe Schweizer Normal GardenPaul Shaw QuintetMarcel & The Bathing BirdsPosi-Tone SwingtetReiner Witzel / Richie Beirach Quintet + +323333Hiroshi Fukumura福村博 (Hiroshi Fukumura)Japanese jazz trombonist, bandleader and composer/arranger, born February 21, 1949 in Tokyo, Japan.Needs VoteFukumuraH. FukumuraH. FukurumaHiroshi FukamuraХироши Фукумура福村 博福村博Gil Evans And His OrchestraSatoko Fujii Orchestra TokyoThe Hiroshi Fukumura QuintetSadao Watanabe QuintetJazz Battle Royal + +323463Albert StinsonAlbert Forrest Stinson, Jr.American jazz bassist, born 2 August 1944 in Cleveland, Ohio, USA, died of a drug overdose at age 24 in June 1969. +Needs VoteAl StinsonStinsonThe Miles Davis QuintetThe Chico Hamilton QuintetThe New John Handy QuintetThe Chico Hamilton SextetThe Chico Hamilton OctetCharles Lloyd & His Quintet + +323467Tate HoustonJazz saxophonist. + +Born: 30 November 1924 in Detroit, Michigan, USA. +Died: 18 October 1974 in Los Angeles, California, USA (aged 49).Needs Votehttps://en.wikipedia.org/wiki/Tate_HoustonTate HoustenBilly Eckstine And His OrchestraJ.C. Heard And His OrchestraTadd Dameron And His OrchestraMilt Jackson OrchestraHal Singer SextetJames Moody And His OrchestraWardell Gray and his Quintette + +323522Tapani TamminenTapani Johannes TamminenFinnish composer and jazz bassist whose musical career lasted from 1955 to 1983, born 14 April 1937 in Helsinki, Finland.Needs VoteHeikki Sarmanto TrioChristian Schwindt QuintetThe Otto Donner TreatmentKari Rydman YhtyeineenKOM-KvartettiChristian Schwindt SextetEsa Pethmanin Sekstetti + +323733Maurice MurphyMaurice Harrison MurphyBorn: 7th August 1935, Hammersmith, London, England. +Died: 28th October 2010. +World renowned classical trumpet player. He served as Principal Trumpet of the [a=London Symphony Orchestra] for 30 years (9 February 1977-2007), retiring on 3 June 2007. Previously, he was principal cornet for [a=The Black Dyke Mills Band] (1956 to 1961) and principal trumpet with the BBC Northern Orchestra (1961 to 1977). From 1974 to 1977 he was Professor of Trumpet at the [l459222]. + +Composer [url=http://www.discogs.com/artist/John+Williams+(4)]John Williams[/url] wrote many of his best known film scores with Murphy in mind, including those for the Star Wars, Superman, Indiana Jones and Harry Potter films. He was appointed Member of the Order of the British Empire (MBE) in the 2010 New Year Honours. + +Maurice Murphy remains a Principal Emeritus of The London Symphony Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Maurice_Murphy_(musician)https://www.feenotes.com/database/artists/murphy-maurice-7th-august-1935-28th-october-2010/https://www.blackdykeband.co.uk/profiles/maurice-murphy-principal-cornet-1957-1962/https://www.deniswick.com/artist/maurice-murphy/https://www.theguardian.com/music/2010/nov/29/maurice-murphy-obituaryM. MurphyLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Black Dyke Mills BandLondon Metropolitan OrchestraPhilip Jones Brass EnsembleLondon Wind OrchestraLocke Brass ConsortThe London Symphony Brass Ensemble + +323805Brynjar HoffNorwegian oboist, born 30 October 1940.Correcthttp://kunst.no/bhoff/http://brynjarhoff.com/HoffOslo Filharmoniske OrkesterTrondheim SymfoniorkesterOslo Wind Quintet + +323935Alex RielAlex Poul RielDanish jazz drummer and percussionist (born September 13, 1940 in Copenhagen, Denmark; died June 9, 2024 in Liseleje, Denmark) + +Played with traditional jazz bands (1957-1960), as house drummer at [l269003] in Copenhagen (1963-1965), in [a=Erik Moseholm]'s trio (1964-1967) and the Danish Radiojazzgruppen (1965-1968). He also played with the rock group [a=Savage Rose] (1968-1972), and later worked with [a=Six Winds] and other groups. Also many recordings with visiting American musicians, including [a=Dexter Gordon], [a=Jackie McLean], [a=Sahib Shihab], etc.Needs Votehttp://www.alexriel.dk/https://en.wikipedia.org/wiki/Alex_RielA. RielAlexAlex ReilAlex RiehlAlex TielAxel RiehlAxel RielRIELRielTielアレックス・リール (Alex Riel)Peter Herbolzheimer Rhythm Combination & BrassJan Lundgren TrioThe Bill Evans TrioMads Vinding TrioFini Høstrup TrioTubby Hayes QuartetBen Webster QuartetSavage RoseThe NDR Big BandJens Winther GroupAlex Riel TrioThe Danish Radio Jazz GroupThe Kenny Drew TrioThe Roland Kirk QuartetIstanbul ExpressKen McIntyre QuartetThe Kenny Dorham QuintetStuff Smith QuartetRadiojazzgruppenThe Thomas Clausen TrioSanta Cruz (6)The Great DanesDexter Gordon QuartetJesper Thilo QuintetKarsten Houmark GroupLundgaard, Fischer, Riel & Rockwell QuartetAlex Riel QuartetSix WindsThe Bob Brookmeyer QuartetPalle Mikkelborg QuintetKansas City StompersEddie Lockjaw Davis QuartetPeter Vuust QuartetJens Jefsen TrioArchie Shepp/Lars Gullin QuintetAllan Botschinsky QuintetPeter Herbolzheimer All Star Big BandThe Wolfgang Schlüter ComboThomas Fryland QuartetKarsten Houmark TrioThe Danish-German Slide CombinationDexter Gordon TrioJesper Lundgaard TrioEgon Denu/Bent Jædig QuintetCarsten Dahl TrioRågeleje JazzGeorge Robert QuartetFrans Bak's KvartetAlex Riel Lutz Büchner QuartetDet Blå SkrigRepertory QuartetThe Black And The BlueHeine Hansen TrioJørgen Emborg QuintetDanish BrewHacke Björkstens SeptettAlex Riel Special QuartetThe Danish Jazz QuartetBotschinsky/Jædig Quintet + +323991Jack MarshallAmerican guitarist, composer, and arranger, probably best known for writing the theme for "The Munsters". + +Born November 23, 1921 in El Dorado, Kansas. +Died September 20, 1973 in Newport Beach, California. +Marshall was a Wrecking Crew session musician.Needs Votehttps://en.wikipedia.org/wiki/Jack_Marshall_(composer)https://www.imdb.com/name/nm0550925/https://www.last.fm/music/Jack+Marshallhttps://www.facebook.com/JWMDrDeep/https://adp.library.ucsb.edu/names/108034I. MarshallJ. MarchallJ. MarshallJ.MarshallJack HarshallJack MarshalJack Marshall's Orchestra & The ChildrenJack W. MarshallJack Wilton MarshallJack Цю MarshallJackie MarshallMarshallMashallTuff JackHarry James And His OrchestraPete Rugolo OrchestraJulia Lee & Her Boy FriendsDave Cavanaugh's MusicJack Marshall And His OrchestraJack Marshall's MusicThe Jack Marshall SextetteMilt Bernhart Brass EnsembleEddie Beal And His SextetBarney Kessel SeptetDom Frontiere Octet + +324293Kamasi WashingtonKamasi Tii WashingtonAmerican jazz saxophonist, composer, production editor and band leader, + +Born February 18, 1981 in Los Angeles, California, USA. Son of [a=Rickey Washington]. Needs Votehttp://www.kamasiwashington.comhttps://www.facebook.com/kamasiwhttps://twitter.com/KamasiWhttps://www.instagram.com/kamasiwashingtonhttps://www.youtube.com/@KamasiWashingtonhttps://soundcloud.com/kamasiwashingtonhttp://en.wikipedia.org/wiki/Kamasi_WashingtonCamasi WashingtonK. WashingtonKWKamashi Washingtonカマシ・ワシントンGerald Wilson OrchestraThe Gathering (4)Young Jazz GiantsThe Next Step (5)Throttle Elevator MusicDinner Party (2)Gilbert Castellanos Quintet + +324365Chris Andrews (3)Christopher Frederick AndrewsBritish songwriter, pop singer and producer, born 15 October 1942, Romford, East London.Needs Votehttp://chris-andrews.net/https://en.wikipedia.org/wiki/Chris_Andrews_(singer)AbdrewsAndrelisAndrewAndrew Ch.AndrewsC AndrewsC. AndrewC. AndrewsC. AndrewssC.AndrewsCandrewsCh. AndrewsCh. AndrewsChr. AndersChr. AndrewsChrisChris AndrewChris AndrusChris Frederick AndrewsChris-AndrewsChriss AndrewsChristopher AndrewsChristopher Frederick AndrewsChristopher Fredrick AndrewsCris AndrewsE. AndrewsG. AndrewsR. Andrewsc. andrewsКрис АндрюсХ. Эндрюсכריסטופר פרדריק אנדרוזChristmas All StarsMut Zur MenschlichkeitChris Ravel And The RaversChris And Maxine + +324479Urban AgnasKarl Erik Urban AgnasSwedish trumpet player, born on September 20, 1961. + +He is married to classical guitarist [a=Sabina Agnas] and their sons are [a=Konrad Agnas], [a=Kasper Agnas], [a=Mauritz Agnas] and [a=Max Agnas]. His brothers are [a=Joakim Agnas] and [a=Tomas Agnas], and their niece is [a=Maja Agnas].Needs Votehttp://www.urbanagnas.com/UrbanUrban AgnesGöteborgs SymfonikerLittle Mike And The Sweet Soul Music BandThe Mikael Råberg Jazz OrchestraStockholm Chamber BrassKungliga FilharmonikernaÖwerboda BrassAgnas Project + +324481Göran SöllscherGöran Olof SöllscherSwedish classical guitarist and professor, born December 31, 1955 in Växjö. + +He studied until 1977 at the Malmö Academy of Music, and until 1979 at the Copenhagen Conservatory of Music, and then had, among others, [a5258174] as a teacher. + +Söllscher had his breakthrough in Paris in 1978 when he won the French radio guitar competition, and is considered one of the world's leading guitarists. He is known for playing baroque music (by, among others, Bach) transcribed onto the 11-string alto guitar designed and built by [a6462090]. + +He has taught at the Academy of Music in Malmö (Lund University) as an adjunct professor since 1993 and a regular professor since 2002.Needs Votehttp://en.wikipedia.org/wiki/G%C3%B6ran_S%C3%B6llscherhttps://sv.wikipedia.org/wiki/G%C3%B6ran_S%C3%B6llscherG. SöllscherGoran SollscherGoran SöllscherSöllscherイェラン・セルシェルCamerata Bern + +324534George ChisholmScottish jazz trombonist and actor. +Born March 29, 1915 in Glasgow, Scotland. +Died December 6, 1997 in London, England. +Chisholm moved to London in the 1930s where he played in dance bands led by [a=Bert Ambrose] and [a=Teddy Joyce] and played with musicians such as [a=Fats Waller], [a=Coleman Hawkins], and [a=Benny Carter] when they came to the UK. +Chisholm also worked as a musician and actor for TV and film, e.g. "The Goon Show" and "Play Away". He was awarded an OBE in 1984. +George Chisholm also contributed to the recordings of Mellotron sound libraries, most famously the so-called "GC3 Brass" that became a signature lead sound of Tangerine Dream's in around 1975.Needs Votehttps://en.wikipedia.org/wiki/George_Chisholm_(musician)https://www.imdb.com/name/nm0158225/https://adp.library.ucsb.edu/names/308393ChisholmChisolmG. ChisholmGeo. ChisholmGeorge Chisholm And His BluenotesGeorge Chisholm Jnr.George ChisholmeGeorge ChishomGeorge ChisolmGeorges ChisholmFats Waller & His RhythmLew Stone And His BandThe Big Ben Banjo BandThe George Chisholm Sour-Note SixThe SquadronairesGeorge Chisholm All StarsSydney Thompson And His OrchestraThe Mike Morton CongregationThe Jazz BoysReg Owen And His OrchestraGeorge Chisholm's Jive FiveThe Midnight JazzmenMartin Slavin SeptetGeorge Chisholm And The BirdmenGeorge Chisholm And His JazzersGeorge Chisholm And His Jive EightGeorge Chisholm And His Orchestra + +324733Claes NilssonSwedish violin player.Needs VoteSveriges Radios SymfoniorkesterDisco MackanSaulescokvartetten + +324761Ulf BjurenhedUlf Gunnar BjurenhedSwedish classical oboe player, born in Hällefors on November 11, 1956.Needs VoteSveriges Radios SymfoniorkesterDrottningholms BarockensembleKammarensembleN + +324925Vernon BrownAmerican jazz trombonist. +Born : January 06, 1907 in Venice, Illinois. +Died : May 18, 1979 in Los Angeles, California. + +Vernon played with [a301376] (1925 -'26), in variety groups in the late 1920s and 1930s included [a1030149] (1928), [a1697371], [a258687] (1937), [a254768] (1937-1940), [a269597] (1940-'41), [a270028], [a309979] (1941-'42), "[a311060]", [a258422], again with [a254768] (1950s), [a1524344] (1963) and as a studio musician into the early 1970s. + + +Needs Votehttps://en.wikipedia.org/wiki/Vernon_Brown_(musician)https://www.allmusic.com/artist/vernon-brown-mn0000324293/biographyhttps://rateyourmusic.com/artist/vernon_brown/credits/https://adp.library.ucsb.edu/names/109769BrownV. BrownVermon BrownVern BrownHarry James And His OrchestraBenny Goodman SextetThe Benny Goodman QuintetArtie Shaw And His OrchestraJean Goldkette And His OrchestraBud Freeman's All Star OrchestraEddie Condon And His OrchestraMuggsy Spanier And His RagtimersWild Bill Davison And His CommodoresEddie Condon And His BandBobby Hackett And His OrchestraBenny Goodman And His OrchestraCozy Cole OrchestraJimmy Mundy OrchestraYank Lawson And His OrchestraMel Powell & His All-StarsMuggsy Spanier And His OrchestraBud Freeman And His OrchestraBilly Taylor's Big EightHank D'Amico SextetGeorge Hartman And His OrchestraHank D'Amico OrchestraBenny Goodman Jam Session + +324926Murray McEachernMurray McEachern"Pronounce it Mc-ECK-ern." + +Jazz trombone player and saxophonist, born August 16, 1915 in Toronto, Canada. Proficient on several instruments, including trombone, trumpet, and bass, he made his US debut as a novelty act in 1936 in Chicago. He toured with [a=Jack Hylton And His Orchestra], [a=Benny Goodman And His Orchestra] (as trombone soloist 1936-8), and [a=Glen Gray & The Casa Loma Orchestra] (as trombonist and alto saxophonist 1938-41). + +McEachern was a member of the US Armed Forces Entertainment Division during World War II. He also led his own band and played with [a=Bob Crosby]'s radio orchestra in the 1940s. He later became a Hollywood studio musician, playing the trombone solos heard in the movies [i]The Glenn Miller Story[/i] (1953), [i]The Benny Goodman Story[/i] (1955), and [i]Paris Blues[/i] (1961). + +Murray McEachern died in Los Angeles, CA on April 28, 1982. +Needs Votehttps://adp.library.ucsb.edu/names/106835M, McEachernM. Mc EachernM. McEachenernM. McEachernMcEachernMurray Mac EachernMurray MacEachernMurray MacEachrenMurray Mc EachernMurray Mc. EachernMurray McCherneaMurray McEachern, His Trombone And OrchestraMurray McEahernMurray McEarchernMurry McEachernHarry James And His OrchestraWoody Herman And His OrchestraCasa Loma OrchestraBilly May And His OrchestraPaul Whiteman And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraHarry James & His Music MakersThe Universal-International OrchestraWoody Herman And The Swingin' HerdGlen Gray & The Casa Loma OrchestraJerry Gray And His OrchestraWoody Herman And The Las Vegas HerdMembers Of The Benny Goodman OrchestraClyde Hurley & His OrchestraMurray McEachern And His OrchestraWillie Smith And His OrchestraWillie Smith And His FriendsMurray McEachern Band + +325196MC D (2)Needs Major Changes + +325309Bob MoverRobert Allan MoverAmerican jazz vocalist and saxophonist (alto, soprano), born on March 22, 1952 in Boston, Massachusetts, USANeeds Votehttp://www.bobmover.com/https://en.wikipedia.org/wiki/Bob_MoverB. MoverBob MovorBobby MoverMoverThe Players AssociationLee Konitz QuintetBob Mover TrioGianni Lenoci QuintetBob Mover QuintetKen Skinner And The JazzmongersBernie Senensky QuintetBernie Senensky Quartet + +325523David PiltchDavid Samuel PiltchAcoustic & electric bass player, born January 29, 1960 in Toronto, Ontario, Canada. +Son of [a=Bernie Piltch], brother of [a=Rob Piltch] & [a=Susan Piltch].Correcthttps://www.thecanadianencyclopedia.ca/en/article/david-piltch-emchttps://en.wikipedia.org/wiki/David_Piltchhttps://www.jorgenand.se/bst/bst_stor.html#dpiltchhttps://www.notreble.com/buzz/2017/08/18/bass-players-to-know-david-piltch/https://www.householdink.com/davidpiltch.htmhttps://www.imdb.com/name/nm1003529/https://web.archive.org/web/20160402213917/http://davidpiltch.com/Cover.htmlD. PiltchDPDave PiltchDave PitchDavid PilchDavid Piltch EliasDavid PitchDavid PlitchPiltchBlood, Sweat And TearsHolly Cole TrioThe HenrysArt Pepper QuartetTed Moses QuintetStrangeness BeautyReg Schwager TrioRob Carroll Trio + +325672James GalwayJames Galway OBEIrish virtuoso flute player and teacher from Belfast, Northern Ireland, UK. +Born December 8, 1939. +He studied at the [l290263], then at [l305416], and completed his studies at [l1014340]. Following his studies, Galway pursued a career as an orchestral flautist, performing first in the United Kingdom with the [a1731476] (second flute), the [a=Orchestra Of The Royal Opera House, Covent Garden], and the [a=BBC Symphony Orchestra] (piccolo player) before being appointed principal flutist of the [a=London Symphony Orchestra] (1966-1967) and then of the [a=Royal Philharmonic Orchestra]. In 1969 Galway won the post of principal flautist of the [a=Berliner Philharmoniker], in which he played until he embarked on a solo career in 1975. +He was made an Officer of the Order of the British Empire (OBE) in 1977, and was knighted in 2001, the first wind player ever to receive that honour. +He married [a=Jeanne Galway] (his third wife) on September 9, 1984. Uncle of [a=Martin Galway].Needs Votehttps://en.wikipedia.org/wiki/James_Galwayhttps://www.britannica.com/biography/James-Galwayhttps://biography.yourdictionary.com/james-galwayhttps://www.astro.com/astro-databank/Galway,_Jameshttps://www.jamesgalway.com/https://www.robertbigio.com/galway.htmhttps://www.nyphil.org/about-us/artists/james-galwayhttps://www.camimusic.com/sir-james-galwayhttps://www.sonyclassical.com/artists/artist-details/james-galwayhttps://www.classicfm.com/artists/sir-james-galway/https://www.musicianbio.org/james-galway/https://www.musicianguide.com/biographies/1608000702/James-Galway.htmlhttps://www.feenotes.com/database/artists/galway-james-sir-8th-december-1939-present/https://www.famousbirthdays.com/people/james-galway.htmlhttps://www.imdb.com/name/nm0303526/https://www.soundcloud.com/james-galway-official/https://www.youtube.com/user/JamesGalwayFlutehttps://www.myspace.com/jamesgalwaymusic/https://www.twitter.com/sirjamesgalwayhttps://www.facebook.com/JamesGalwayFlute/https://www.instagram.com/sirjamesgalway/https://www.linkedin.com/in/james-galway-2a9b1b29/https://www.allmusic.com/artist/james-galway-mn0000118056GalwayJ. GalwayJamesJames GallwayJames Galway, Fuvola És ZenekarJimmy J. GalwaySir James GalwayДж.ГолуэйДжеймс Гэлуэйجیمز گالویBetweenLondon Symphony OrchestraBerliner PhilharmonikerBBC Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenThe London VirtuosiSadler's Wells Opera Company + +325753Kim KashkashianKim KashkashianArmenian-American violist. + +Born: 31 August 1952 in Detroit, Michigan, USA. + +Featured on over 45 albums, she is known for both classical and contemporary performance. +Needs Votehttp://en.wikipedia.org/wiki/Kim_Kashkashianhttps://musicbrainz.org/artist/fa870f84-178c-4533-9fed-4f034d69e7e8http://www.bruceduffie.com/kashkashian.htmlK. KashkashianKashkashianKim Kashkahianキム・カシュカシアンOrpheus Chamber OrchestraThe Galimir QuartetTre Voci + +325762Mark EganMark McDaniel EganGrammy-winning American jazz bassist, trumpet player and composer, born January 14, 1951 in Brockton, Massachusetts. + +Needs Votehttps://markegan.com/EganM. EganMarc EganMark EaganMark EgonMark M. EganPat Metheny GroupGil Evans And His OrchestraThe George Gruntz Concert Jazz BandChroma (2)Elements (6)Special EFXCTI All-StarsDavid Sanborn BandThe Monday Night OrchestraDavid Matthews OrchestraWolfgang Lackerschmid ConnectionDaniel Küffer QuartetThe Tom 'Bones' Malone Jazz SeptetJane Getter PremonitionJoe Beck TrioDavid Matthews & The Super Latin Jazz OrchestraFarberiusElectric Breakwater + +325854Arvell ShawArvell ShawAmerican jazz double-bassist, best known for his work with Louis Armstrong. +b. September 15, 1923 - St. Louis, Missouri. +d. December 5, 2002 - Roosevelt, New York. + +Shaw learned to play tuba in high school, but switched to bass soon after. In 1942 he worked with [a4900280] on riverboats traveling on the Mississippi River, then served in the Navy from 1942 to 1945. After his discharge he played with [a38201] in his last big band, from 1945 to 1947. Shaw and [a313040] then joined the [a326657] until 1950, when Shaw broke off to study music. He returned to play with Armstrong from 1952 to 1956, and performed in the 1956 musical High Society. Following this he worked at CBS with [a277967], did time in [a254769]'s trio, and played with [a254768] at the 1958 Brussels World's Fair. After a few years in Europe, he played again with Goodman on a tour of Central America in 1962. From 1962-64 Shaw played again with Armstrong, and occasionally accompanied him through the end of the 1960s. After the 1960s Shaw mostly freelanced in New York and kept playing until his death. He recorded only once as a leader, a live concert from 1991 of his Satchmo Legacy Band.Needs Votehttps://en.wikipedia.org/wiki/Arvell_Shawhttps://www.imdb.com/name/nm0789601/https://www.radioswissjazz.ch/en/music-database/musician/1352686782fc13adf4b7f83306ef02ff57879/biographyhttps://adp.library.ucsb.edu/names/343358A. ShawArnell ShawAruell ShawArvel ShawArvels ShawArville ShawArwell ShawOrville ShawShawLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsTeddy Wilson TrioSy Oliver And His OrchestraBenny Goodman And His OrchestraThe International Jazz GroupHerb Hall QuartetAllstars (11)Bobby Smith And OrchestraCozy Cole's Big SevenThe Arvell Shaw QuintetEarl Hines SwingtetteEchoes Of New OrleansEarl "Fatha" Hines All Stars QuintetJam Session At The RiversideThe Jazz Swing All StarsEarl "Fatha" Hines All Stars QuartetEarl "Fatha" Hines Trio + +325855Tyree GlennEvans Tyree GlennAmerican jazz trombonist and vibraphonist, born November 23, 1912 in Corsicana, Texas, USA, died May 18, 1974 in Englewood, New Jersey, USA. +Musically active from the 1930s to the 1970s, Tyree Glenn has worked with many jazz legends, including [a=Cab Calloway] (1939-1946), [a=Duke Ellington] (1947-1951) and [a=Louis Armstrong] (1965-1968). Father of [a=Tyree Glenn, Jr.] and [a=Roger Glenn].Needs Votehttps://en.wikipedia.org/wiki/Tyree_Glennhttps://de.wikipedia.org/wiki/Tyree_Glennhttps://www.tshaonline.org/handbook/entries/glenn-evans-tyreehttps://www.imdb.com/name/nm3218047/https://adp.library.ucsb.edu/names/106089GlennGlenn TyreeT. GleenT. GlenT. GlennT.GlennTGTyree GleenTyree GlenTyree Glenn With StringsTyree Glenn Y Su SextetoTyree Glenn, Jr.Tyree HumesCab Calloway And His OrchestraDuke Ellington And His OrchestraBillie Holiday And Her OrchestraLouis Armstrong And His All-StarsJim Timmens And His Jazz All-StarsBenny Carter And His OrchestraDon Redman And His OrchestraJonah Jones And His CatsHenry "Red" Allen And His OrchestraJoe Thomas And His OrchestraTyree Glenn & His OrchestraIke Quebec SwingtetMilt Hinton & His OrchestraTony Parenti's All-StarsThe International Jazz GroupGeorge Wein And The Storyville SextetDuke Ellington Alumni All StarsJonah Jones And His OrchestraRoy Johnsons Happy PalsThe Tyree Glenn QuintetThe Tyree Glenn SextetTimme Rosenkrantz And His Barrelhouse BaronsCozy Cole's Big SevenEdgar Sampson And His OrchestraBilly Kyle And His OrchestraAl Hibbler And His Orchestra + +325856Dick CaryRichard Durant CaryAmerican pianist, trumpet and alto horn player, arranger and composer (July 10, 1916, Hartford, Connecticut—April 6, 1994, Sunland, California). +Cary started his career with Joe Marsala in 1942, then played with the Casa Loma Orchestra, Brad Gowans, Muggsy Spanier, Wild Bill Davison, Billy Butterfield, Louis Armstrong, Jimmy Dorsey, Eddie Condon, Pee Wee Russell, Max Kaminsky, Bud Freeman, Jimmy McPartland, and Bobby Hackett among others. +In 1959 he moved to Los Angeles, where he became an active freelance and studio musician. In the 1970s he led his own band, the Tuesday Night Friends. +Needs Votehttp://www.dickcary.com/http://en.wikipedia.org/wiki/Dick_Caryhttps:adp.library.ucsb.edunames307492CaryCary Jazz ComboD. CareyD. CaryDick CareyDick CarreyDick CarryDick Cary BandDick Cary OrchestraRichard CaryRichard D. CaryThe Amazing Dick CaryLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsJimmy Dorsey And His OrchestraJimmy McPartland And His DixielandersBilly Butterfield And His OrchestraEddie Condon And His ChicagoansMuggsy Spanier And His RagtimersWild Bill Davison And His CommodoresBarney Bigard And His OrchestraEddie Condon And His All-StarsThe Jack Lesberg SextetJimmy Dorsey And His Original "Dorseyland" Jazz BandBobby Hackett And His Jazz BandLou McGarity QuintetJack Teagarden BandDick Cary OrchestraJack Teagarden's Dixieland BandThe Bobby Hackett SextetGeorge Wettling's All StarsJimmy McPartland's Hot Jazz StarsEddie Condon And His Dixieland BandDick Cary And The Dixieland DoodlersMax Kaminsky And His Dixieland BashersJoe Marsala And His Chosen SevenEddie Condon's N.B.C. Television OrchestraDick Cary And His Tuesday Night FriendsThe Dick Cary Trio + +325858Eddie CondonAlbert Edwin CondonAmerican jazz guitar and banjo player and bandleader. +Born: 16 November 1905 in Goodland, Indiana, USA. +Died: 4 August 1973 in New York City, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Eddie_Condonhttps://riverwalkjazz.stanford.edu/?q=program/jammin-condons-eddie-condon-storyhttps://www.britannica.com/biography/Eddie-Condonhttps://adp.library.ucsb.edu/names/102130CondonCondon's Floor ShowCordonnE. CondonE.CondonEddi CondonEddie CondenEddie Condon And His BandEddyEddy CondonEdie CondonElinor CharierGordonOriginal Dixieland Jazz BandLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsMcKenzie & Condon's ChicagoansLouis Armstrong And His Savoy Ballroom FiveThe RhythmakersEddie Condon And His OrchestraBunny Berigan And His BoysBud Freeman's Summa Cum Laude OrchestraEddie Condon And His Hot ShotsThe Mound City Blue BlowersEddie's Hot ShotsLuis Russell And His OrchestraEddie Condon And His FootwarmersFats Waller And His BuddiesEddie Condon And His ChicagoansMuggsy Spanier And His RagtimersWild Bill Davison And His CommodoresEddie Condon And His BandEddie Condon Dixieland All-StarsEddie Condon And His Windy City SevenMiff Mole And His Nicksieland BandBobby Hackett And His OrchestraJoe Bushkin's OrchestraEddie Condon And His All-StarsEddie Condon's SextetRed McKenzie And The Celestial BeingsJoe Marsala And His ChicagoansBud Freeman And His GangBud Freeman And His Windy City FiveChicago Rhythm KingsBud Freeman And His Famous ChicagoansMax Kaminsky And His Jazz BandEddie Condon's Jazz BandThe Rhythm CatsGeorge Wettling's Jazz BandBilly Banks And His OrchestraVic Lewis And His American JazzmenJungle Kings (2)George Brunies And His Jazz BandBud Freeman Jazz BandPutney Dandridge And His OrchestraGeorge Wettling's All StarsEddie Condon's QuartetEddie Condon And His Dixieland BandEddie Condon's DixielandersJoe Marsala's All TimersEddie Condon's N.B.C. Television OrchestraEddie Condon & Co.Eddie Condon JamsessionJam Session At CommodoreJack Teagarden & His Trombone + +325859Danny BarcelonaDaniel Barcelona.American jazz drummer. + + +Born : July 23, 1929 in Honolulu, Hawaii. +Died : April 01, 2007 in Monterey Park, California. +Needs Votehttps://adp.library.ucsb.edu/names/303061D. BarcelonaDanny BarcellonaDanny BarsalonaDany BarcelonaДэнни БарселонаLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsTeddy Buckner And His Orchestra + +325860Peanuts HuckoMichael Andrew HuckoAmerican clarinetist. +Born 7 April 1918 in Syracuse, New York, USA. +Died 19 June 2003 in Fort Worth, Texas, USA.Needs Votehttps://en.wikipedia.org/wiki/Peanuts_Huckohttps://adp.library.ucsb.edu/names/204721"Peanuts" Hucko"Peanuts" Hucku'Peanuts' HuckoHuckleHuckoM. HuckoMichael "Peanuts Hucko"Michael "Peanuts" HuckoMichael 'Peanuts' HuckoMichael A. "Peanuts" HuckoMichael HuckoMicheal "Peanuts" HuckoMike "Peanuts" HuckoP. HuckoP.HuckoPeanut HuckoPeanuts HuckPeanuts RuckoPenuts HuckoPfc. Peanuts HuckoPvt. Peanuts HuckoSgt. "Peanuts" HuckoSgt. Peanuts Huckopeanuts Hucko«Peanuts» Huckoピーナッツ・ハッコーU. (3)Louis Armstrong And His OrchestraLouis Armstrong And His All-StarsBud Freeman's All Star OrchestraNapoleon's EmperorsEddie Condon And His OrchestraWill Bradley And His OrchestraBud Freeman's Summa Cum Laude OrchestraJack Teagarden And His Big EightBilly Butterfield And His OrchestraEddie Condon And His BandThe World's Greatest JazzbandEddie Condon And His All-StarsBob Chester And His OrchestraThe RagtimersLawson-Haggart Jazz BandPeanuts Hucko And The All StarsAll Star Alumni OrchestraJazz Club Mystery Hot BandBobby Byrne And His OrchestraTommy Reynolds And His OrchestraEarl Hines And His All-StarsThe Bernie Leighton QuintetPeanuts Hucko And His OrchestraAllstars (11)Peanuts Hucko And The Denver Omelette"Peanuts" Hucko's Swing BandLou Stein And His OctetThe Army Air Force BandThe Bob Alexander QuintetThe Lou Stein SextetPeanuts Hucko And His V-Disc GangPeanuts Hucko And The QuartetEddie Condon's N.B.C. Television OrchestraThe Peanuts Hucko SeptetHarry Lookofsky SeptetJam Session At The RiversidePeanuts Hucko And GroupPeanuts Hucko And His MenDeane Kincaide's Band + +325861Marty NapoleonMarty Napoleon (born June 2, 1921, Brooklyn, New York City, New York, USA - died April 27, 2015, Glen Cove, New York, USA) was an American jazz pianist. He is the nephew of trumpeter and bandleader [a764792] and brother of pianist [a262141]. + + +Needs Votehttps://en.wikipedia.org/wiki/Marty_Napoleonhttps://adp.library.ucsb.edu/names/333307M. NapoleonMarty NapoleanMarty Napoleon And His MusicMatthew NapoleonNapoleonLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsRuby Braff All-StarsRuby Braff And His Big City SixHenry "Red" Allen's All StarsMarty Napoleon OrchestraChubby Jackson's Big BandThe Big Three (3)Ruby Braff SextetPhil Bodner & CompanyChico Marx And His OrchestraCharlie Ventura's Big FourTeddy Reig All-StarsStan Rubin And His Tigertown OrchestraSnapper Lloyd And His Orchestra + +325862Joe MuranyiJoseph Paul Muranyi.American jazz clarinetist, soprano saxophonist, producer and writer, born January 14, 1928 in Martins Ferry, Ohio, died April 20, 2012 in New York City (Manhattan), New York. +Joe played with, among others, [a=Eddie Condon], [a=Jimmy McPartland], [a=Max Kaminsky], [a=Yank Lawson], [a=Bobby Hackett], [a=Henry "Red" Allen] and with [a=Louis Armstrong And His All-Stars] (1967 to 1971).Needs Votehttps://adp.library.ucsb.edu/names/333006J. MuranyiJ. MurányiJoe MorenieJoe MuramyiJoe MuranyJoe MuranylJoe MurányiJoe P. MuranyiJoseph MuranyiJoseph P. MuranyiJoseph Paul MuranyJoseph Paul MuranyiMuranyiMuranyi, JoePaul Joseph Muranyiジョー・マリーLouis Armstrong And His All-StarsThe Village StompersWaldo's Gotham City BandThe Red Onion Jazz BandThe Melody Makers (6)M 'N' M TrioThe Classic Jazz Quartet (2) + +326081Milt BernhartMilton BernhartAmerican Jazz trombonist, (May 25, 1926 in Valparaiso, Indiana – January 22, 2004 in Glendale, California). + +Milt Bernhart was a West Coast jazz trombonist who worked with [a=Stan Kenton], [a=Frank Sinatra], and others. He supplied the exciting solo heard in the middle of Sinatra's popular 1956 recording of I've Got You Under My Skin, conducted by [a=Nelson Riddle]. + +Bernhart (occasionally spelled Bernhardt) began on tuba, but switched to trombone in high school. At 16 he worked in [a=Boyd Raeburn]'s band and later had some "gigs" with [a=Teddy Powell]. After time in the United States Army he worked, off and on, with [a=Stan Kenton] for the next ten years. He is perhaps most associated with Kenton, but in 1955 he had his first album as a leader. In 1986 he was elected President of the Big Band Academy of America. + +Although known as "mild-mannered" or humorous, his brief period with [a=Benny Goodman] was one area that brought out his ire. He indicates working with Goodman was "the bottom", except for basic training in the Army, of his first 23 years of life. He called Goodman a "bore" and claimed he did nothing about the treatment [a=Wardell Gray] faced at a segregated club in Las Vegas. He even alleges that he quit because Goodman publicly humiliated Gray in front of an audience.Needs Votehttp://www.allmusic.com/artist/milt-bernhart-p56131http://www.allaboutjazz.com/php/news.php?id=3169http://en.wikipedia.org/wiki/Milt_Bernharthttp://www.jazzprofessional.com/humour/bernhart.htmhttps://adp.library.ucsb.edu/names/304099BernhartM. BernhartM.BernhartMilt BerhartMilt BernardtMilt BernhaMilt BernhardMilt BernhardtMilton BernhardtMilton BernhartMilton G. Bernhartミロト・バーンハートLes Brown And His Band Of RenownWoody Herman And His OrchestraMetronome All StarsStan Kenton And His OrchestraRussell Garcia And His OrchestraHenry Mancini And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraHoward Rumsey's Lighthouse All-StarsLalo Schifrin & OrchestraStanley Wilson And His OrchestraThe Buddy Bregman OrchestraElmer Bernstein & OrchestraLeith Stevens & His OrchestraBob Keene OrchestraWoody Herman And The Swingin' HerdJerry Gray And His OrchestraLou Bring And His OrchestraLeith Stevens' All StarsMembers Of The Benny Goodman OrchestraThe Los Angeles Neophonic OrchestraShorty Rogers Big BandMilt Bernhart And His OrchestraShorty Rogers And His Augmented "Giants"Bobby Troup And His Stars Of JazzThe Bob Bain Brass EnsembleMaynard Ferguson OctetBob Keene SeptetPete Rugolo And His All StarsBuddy Rich All StarsSoundstage All-StarsPete Candoli SeptetMilt Bernhart Brass EnsembleBuddy Rich NonetJohn Williams And Co. + +326149DJ T[b]Electronic / Progressive House / Hard Trance[/b] artist, have done 2002 released track [m=205540]Needs Vote + +326160Wayne DarlingAmerican jazz bassist, born 3 January 1945 in Perry, Iowa, USA.Needs Votehttp://www.waynedarling.com/DarlingW. DarlingWayn DarlingThe Brut Imperial QuintetWoody Herman And His OrchestraChildren At Play (2)Tone Janša KvartetJazz Bigband GrazORF Big BandEnsemble Erich KleinschusterJoe Henderson QuartetErich Kleinschuster QuintetWoody Herman And The Thundering HerdHarald Neuwirth QuartetMantooth/ Darling DuoJim Pepper TrioThe Wayne Darling Band + +326413Chris WoodsAmerican jazz saxophonist (alto, baritone) and flutist, born 25 December 1925 in Memphis, Tennessee, died 4 July 1985 in New York, USA.Needs VoteC. WoodsChris WoodChris Woods and his OrchestraChriss WoodsChristopher WoodsWoodsCount Basie OrchestraDizzy Gillespie Big BandThe Phoenix AuthorityTed Curson & CompanyThe Ernie Wilkins OrchestraThe Dizzy Gillespie Reunion Big BandChris Woods SextetThe George Masso SextetChris Woods And His Orchestra + +326469Gordon JenkinsGordon Hill JenkinsAmerican pianist, conductor, composer and arranger. +Born : May 12, 1910 in Webster Groves, Missouri. +Died : May 01, 1984 in Malibu, California. +Married to coloratura soprano singer [a300358] (divorced). Married to singer [a724146]. + +Worked with: Isham Jones, Paul Whiteman, Benny Goodman, Lennie Heyton, for Paramount Pictures, NBC (in Hollywood) and [l=Decca]. +He was inducted into the Songwriters Hall of Fame in 1982. Needs Votehttp://en.wikipedia.org/wiki/Gordon_Jenkinshttps://www.imdb.com/name/nm0420851/https://www.songhall.org/profile/Gordon_Jenkinshttps://adp.library.ucsb.edu/names/106390G JenkinsG. JenkinG. JenkinsG. JenkisG. jenkinsG.JenkinsGorden JenkinsGordonGordon JenkinGordon Jenkins With ChorusGordon JenkisGordon, JenkinsGordon-JenkinsGordon-jenkinsGordon/JenkinsG・ジェンキンスJ. JenkinsJankinsJenkinsJenkins, GordonJoenkinsJohnsonYenkinsГ. ДженкинсДженкинсゴードン・ジェンキンスGordon Jenkins And His OrchestraThe Gordon Jenkins SingersIsham Jones OrchestraGordon Jenkins and his Orchestra and ChorusGordon Jenkins' Malibu SingersGordon Jenkins And His Suitcase Six + +326471Curley HamnerWilliam J. HamnerJazz drummer. Name sometimes miss-spelled Curley Hammer. +Born on March 16th, 1919 in Birmingham, AL - Died in January 1982 in New York, NY. +Needs VoteC. HammerC. HamnerC. HanmerC.HammerC.HamnerCurley HammerCurley HammersCurly HammerCurly HamnerHammerHamnerHannerJ. HamnerLionel Hampton And His OrchestraLionel Hampton And His Paris All StarsCurley Hamner OrchestraCurley Hammer's BandCurley Hamner And The Cooper Brothers + +326480Joe LocoJosé Estevez Jr..American Jazz (latin) pianist, trombonist, dancer, arranger, bandleader and composer. +Born : March 26, 1921 in New York City, New York. (Puerto Rico parentage) +Died : March 07, 1988 in Puerto Rico. + +Known for his Latin-American piano styling. At the age of nine he was taking violin lessons, as well as dancing instructions. He quickly lost interest in the violin and concentrated on his dancing. When he was thirteen, he made his first appearance on stage as a dancer. A lengthy vaudeville tour followed and, after it was over, Joe again turned to music. This time he took up the piano and in no time became proficient. +His initial appearance as a musician was as a trombonist with the New York Amateur Symphony Orchestra. His first professional engagement as a pianist was with Ciro Rimac and his orchestra. Joe also played piano in the Xavier Cugat and Enric Madriguera orchestras. His experience has not been limited to appearing in just Latin-American bands as he toured with the Will Bradley outfit afforded him an opportunity to play swing and jazz music. +Joe played, among others with : Ciro Rimac, Machito (as pianist), Polito Galindez, Marcellino Guerra, Pupi Campo and Julio Andino.Needs Votehttps://en.wikipedia.org/wiki/Joe_Locohttps://latinjazznet.com/featured/tribute-to-the-masters/joe-loco/http://www.donaldclarkemusicbox.com/encyclopedia/detail.php?s=2241J. J. LocoJ. LocoJ.LocoJoe LacoJoe Loco EstevesJoe Loco, Su Piano Y Su OrquestaJoe Loco, Su Piano y Su OrquestaJoe Loco-CamposJoë LocoLocoJosé Estévez Jr.Xavier Cugat And His OrchestraMachito And His OrchestraWill Bradley And His OrchestraCiro Rimacs Rumba-OrchesterEnric Madriguera And His OrchestraPupi Campo and His OrchestraJoe Loco And His QuintetJoe Loco BandPete Terrace QuintetJoe Loco Y Su SextetoJoe Loco And His OrchestraJoe Loco And His Pachanga BandJoe Loco And His TrioJoe Loco His Piano And RhythmJoe Loco Y Su Muchachos Locos + +326482Richard MarinoViolinist and orchestra leaderCorrectA. R. MarinoAamerigo Rickey MarinoAmerigo R. MarinoMarinoRickey MarinoRicky MarinoAmerigo MarinoRick HeatonRichard Marino & His OrchestraGordon Jenkins And His Orchestra + +326524Lil Hardin-ArmstrongLillian Hardin-ArmstrongAmerican jazz pianist, composer, arranger, singer and bandleader (b. February 3, 1898 in Memphis, Tennessee – d. August 27, 1971 in Chicago, Illinois). + +Played with [a=Freddie Keppard], [a=King Oliver], [a=Louis Armstrong], [a=Henry Allen], [a=Zutty Singleton], and many others. She also led her own groups, ([a=Lil Armstrong And Her Dixielanders] and [a=Lil Armstrong And Her Swing Band]). Lil Hardin-Armstrong was Louis Armstrong's second wife (and he was her second husband). They married in 1924 and divorced in 1938. + +Composed "Struttin' With Some Barbecue," "Bad Boy," "Just For A Thrill," "Perdido Street Blues," "The King Of The Zulu's", which is often miscredited to [a=Louis Armstrong].Needs Votehttps://en.wikipedia.org/wiki/Lil_Hardin_Armstronghttps://memphismusichalloffame.com/inductee/lilhardinarmstrong/https://www.imdb.com/name/nm1812221/https://adp.library.ucsb.edu/names/109791A.L.HardinAmstrongArmstongArmstrongArmstrong - HardinArmstrong - HardyArmstrong, HardinArmstrong, LilArmstrong-HardinArmstrong-LilC. AmstrongC. ArmstongC. ArmstrongC.ArmstrongHardinHardin / ArmstrongHardin ArmstrongHardin, ArmstrongHardin-ArmstrongHardin/ArmstrongL ArmstrongL HardinL. ArmstrongL. H. ArmstrongL. HardinL. Hardin - ArmstrongL. Hardin - L. ArmstrongL. Hardin - L.ArmstrongL. Hardin ArmstrongL. Hardin, L. ArmstrongL. Hardin-ArmstrongL.ArmstrongL.H ArmstrongL.H. ArmstrongLilLil (Hardin) ArmstrongLil - ArmstrongLil AmrstrongLil AmstrongLil ArkstrongLil ArmsrongLil ArmstongLil ArmstorongLil ArmstrongLil Armstrong (Née Harding)Lil Armstrong - HardinLil Armstrong*Lil ArrmstrongLil ArsmtrongLil HardinLil Hardin / ArmstrongLil Hardin ArmstrongLil Hardin ArtmstrongLil' HardinLil' Hardin ArmstrongLil. ArmstrongLil. Hardin ArmstrongLilArmstrongLilianLilian "Lil" ArmstrongLilian ArmstrongLilian Armstrong (Née Hardin)Lilian Armstrong-HardinLilian HardinLilian Hardin AmstrongLilian Hardin ArmstrongLilian Hardin-ArmstrongLilian Harding ArmstrongLill - AmstrongLill ArmstrongLill Hardin ArmstrongLill HardingLillian ArmstrongLillian Armstrong (Hardin)Lillian Armstrong (Née Hardin)Lillian H. ArmstrongLillian Harden ArmstrongLillian HardinLillian Hardin ArmstrongLillian Hardin-ArmstrongLillian Harding ArmstrongLou ArmstrongR.L. ArmstrongT. ArmstrongЛил АрмстронгLil HardinLouis Armstrong & His Hot FiveKing Oliver's Creole Jazz BandNew Orleans WanderersThe Red Onion Jazz BabiesLouis Armstrong & His Hot SevenKing Oliver's Jazz BandLil's Hot ShotsSidney Bechet And His TrioJohnny Dodds Washboard BandThe Harlem Blues SerenadersLil Armstrong And Her Swing BandNew Orleans BootblacksJohnny Dodds TrioLil Hardin Armstrong And Her OrchestraLil Hardin Armstrong TrioLil Armstrong And Her DixielandersJohnny Dodds And His Chicago BoysLil "Brown Gal" Armstrong And Her All-Star BandThe RiffersLil Armstrong & Her OrchestraLil "Hardin" Armstrong's Hardin-AiresLil Armstrong And Her Ebony-AiresLil Armstrong's Continental Band + +326613Clive AnsteeBritish cellist. +He played with the [a271875] and [a289522]Needs VoteC. AnsteeClive AmsteeClive AnsteyClive AnstiClive AnstreeClive AntreeClive AsteeClive AusteeLondon Philharmonic OrchestraBBC Symphony OrchestraThe Chitinous EnsembleThe Astarte Session Orchestra + +326614Ben KennardCello & Viol instrumentalist.Needs VoteB. KennardBen KannardBen KenardBenjamin KenardBenjamin KennardThe Chitinous EnsembleThe London Chamber OrchestraHarmonium QuartetThe London VirtuosiElizabethan Consort Of Viols + +326619Peter OxerBritish session violinist and instrument dealer. +Trained at the [l527847], he has played with the [a=Orchestra Of The Royal Opera House, Covent Garden], and numerous London chamber orchestras. He was a member of the [a=Royal Philharmonic Orchestra] (1969-1975).Needs Votehttps://web.archive.org/web/20211022062816/http://peteroxerbows.com/https://uk.linkedin.com/in/peter-oxer-a9009a52https://www.musiciansgallery.com/start/shops/oxer/peter.htmlhttps://www.imdb.com/name/nm1179971/https://www2.bfi.org.uk/films-tv-people/4ce2bc45278a2P. OxerP.OxerPete OxerPeter OxarPeter OxenThe Chitinous EnsembleThe Martyn Ford OrchestraRoyal Philharmonic OrchestraThe Taliesin OrchestraThe Starcoast OrchestraThe Astarte Session Orchestra + +326626Harold ParfittClassical violinist. +Former member of the [a=London Symphony Orchestra] (1959-1962).Needs VoteH. ParfittLondon Symphony OrchestraThe Armada OrchestraThe Chitinous EnsembleThe Alan Tew Orchestra + +326630Trevor ConnahClassical violinist.Needs VoteConnahThe Chitinous EnsembleThe Academy Of St. Martin-in-the-FieldsThe London Strings + +326635John Graham (2)John R. GrahamViola player.Needs Votehttps://johngrahammusic.com/J. GrahamJohn R. GrahamThe Chitinous EnsembleRoyal Philharmonic OrchestraBeaux Arts String QuartetSpeculum MusicaeThe Kingsway Symphony OrchestraDaniele Patucchi OrchestraRobert Farnon And His OrchestraThe Galimir QuartetNew World Chamber Ensemble + +326642Alan DalzielBritish classical cellist. Born in 1931 - Died in 1993. +Principal or Co-Principal cello with [a=The Sadlers Wells Opera Orchestra], the [a=London Philharmonic Orchestra], [a=Royal Scottish National Orchestra], [a=BBC Symphony Orchestra], and [a=National Philharmonic Orchestra]. Former member of the [a=London Symphony Orchestra] (1955-1957).Needs Votehttps://open.spotify.com/artist/0dKZUtWVQ7AckHac1ncHKthttps://music.apple.com/ca/artist/alan-dalziel/264688549https://johnstone-music.com/directory-of-famous-historical-cellists/15750-2/?lang=enhttps://www.the-paulmccartney-project.com/artist/alan-dalziel/https://www2.bfi.org.uk/films-tv-people/4ce2bcab2c821A. DalzielA. DazielAlan DazielAllan DalzielDalziel A.Daziel A.Daziel. ALondon Symphony OrchestraLondon Philharmonic OrchestraNational Philharmonic OrchestraBBC Symphony OrchestraThe Chitinous EnsembleThe London Studio OrchestraRoyal Scottish National OrchestraThe Alan Tew OrchestraThe Sadlers Wells Opera Orchestra + +326645Neil WatsonClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1956-1994), serving as Co-Principal Violin between 1970-1993.Needs VoteN. WatsonNiel WatsonStudsニール・ワトソンLondon Symphony OrchestraThe Chitinous EnsemblePortsmouth SinfoniaHaffner String Quartet + +326657Louis Armstrong And His All-StarsNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109217/Louis_Armstrong_All-StarsAll StarAll StarsAll-StarsAll-Stars Louis ArmstrongAnd His All-StarsArmstrong All StarsArmstrong AllstarsArmstrong's All StarsHis All-StarsL. Armstrong & All-StarsL. Armstrong Og Hans "All-Stars"L. Armstrong U. D. All StarsLoius Armstrong Y Sus All-StarsLouis "Satchmo" Armstrong & His All-StarsLouis "Satchmo" Armstrong And His All StarsLouis Amstrong And His All StarsLouis And The All StarsLouis ArmstrongLouis Armstrong & All His StarsLouis Armstrong & All StarsLouis Armstrong & All-StarsLouis Armstrong & His All StarLouis Armstrong & His All StarsLouis Armstrong & His All-StarsLouis Armstrong & His AllstarsLouis Armstrong & The All StarsLouis Armstrong & The All-StarsLouis Armstrong & The AllstarsLouis Armstrong & The V-Disk All StarsstarsLouis Armstrong All StarsLouis Armstrong All Stars, TheLouis Armstrong All Stars-YhtyeineenLouis Armstrong All-StarsLouis Armstrong AllstarsLouis Armstrong And All StarsLouis Armstrong And All The StarsLouis Armstrong And All-StarsLouis Armstrong And His "All Stars"Louis Armstrong And His All Star OrchestraLouis Armstrong And His All StarsLouis Armstrong And His All-Star BandLouis Armstrong And His All-Stars BandLouis Armstrong And His Allstar BandLouis Armstrong And His AllstarsLouis Armstrong And His OrchestraLouis Armstrong And His Original All StarsLouis Armstrong And His The-StarsLouis Armstrong And His V Disc All StarsLouis Armstrong And His V-Disc All StarsLouis Armstrong And His «All Stars»Louis Armstrong And The All-StarsLouis Armstrong And The "All Stars"Louis Armstrong And The All -StarsLouis Armstrong And The All StarsLouis Armstrong And The All Stars*Louis Armstrong And The All-StarsLouis Armstrong And The AllstarsLouis Armstrong And The Original All StarsLouis Armstrong And «The All Stars»Louis Armstrong BigbandLouis Armstrong Con "The All Star"Louis Armstrong Con "The All Stars"Louis Armstrong Con Los All StarsLouis Armstrong Con Sus All-StarsLouis Armstrong Con The All StarsLouis Armstrong E I Suoi All StarsLouis Armstrong E I Suoi All-StarsLouis Armstrong E Os "All Stars"Louis Armstrong E Os "The All Stars"Louis Armstrong E Os All StarsLouis Armstrong E Os All Stars BasinLouis Armstrong E Seus All StarsLouis Armstrong E Seus All-StarsLouis Armstrong E The All StarsLouis Armstrong E The AllStarsLouis Armstrong Et Ses All StarsLouis Armstrong Et Ses All-StarsLouis Armstrong Et The All StarsLouis Armstrong I Njegovi All-StarsLouis Armstrong M. S. All-StarsLouis Armstrong Og Hans "All-Stars"Louis Armstrong Og Hans All-StarsLouis Armstrong Og Hans «All-Stars»Louis Armstrong QuintetLouis Armstrong S Orchestrem All-StarsLouis Armstrong The All StarsLouis Armstrong U. D. All StarsLouis Armstrong U. S. All-StarsLouis Armstrong U. S. All StarsLouis Armstrong U. S. All-StarsLouis Armstrong Und Den All StarsLouis Armstrong Und Die All StarsLouis Armstrong Und Seine All StarsLouis Armstrong Und Seine All-StarsLouis Armstrong With All StarsLouis Armstrong With His All StarsLouis Armstrong With His All-StarsLouis Armstrong With His AllstarsLouis Armstrong With The All StarsLouis Armstrong With The All-StarsLouis Armstrong Y Los All StarsLouis Armstrong Y Su All StarsLouis Armstrong Y Sus All StarsLouis Armstrong Y Sus All-StarsLouis Armstrong Y Sus EstrellasLouis Armstrong and the All-StarsLouis Armstrong u. s. All StarsLouis Armstrong y Sus SolistasLouis Armstrong's All StarsLouis Armstrong's All-StarLouis Armstrong's All-StarsLouis Armstrong, His All StarsLouis Armstrong, His All-StarsLouis Armstrong, His AllstarsLouis Armstrong, The All StarsLouis Armstrong, The All-StarsLouis Satchmo Armstrong & His All StarsLouis' All-StarsThe All StarsThe All-StarsThe Louis Armstrong All StarsWith The All-StarsАнсамбль Луиса АрмстронгаДжаз-Ансамбль Л. АрмстронгаЛ. Армстронг И Его Ансамбль "Все Звезды"ルイ・アームストロンクとオールスターズルイ・アームストロンクとオール・スターズLouis ArmstrongVelma MiddletonBobby HackettEarl HinesCozy ColeBabe RussinGene KrupaBilly KyleLucky ThompsonSeldon PowellGeorge DorseyBud FreemanGeorge BarnesDave McRaeEddie LangJack TeagardenJoe SullivanHilton JeffersonBarney BigardEdmond HallBarrett DeemsEverett BarksdaleTrummy YoungMort HerbertAl HendricksonSidney CatlettJoe BushkinErnie CaceresBuddy CatlettEddie Miller (2)Arvell ShawTyree GlennDick CaryEddie CondonDanny BarcelonaPeanuts HuckoMarty NapoleonJoe MuranyiJohnny GuarnieriBob HaggartBob McCrackenJoe DarensbourgEddie Shu"Big Chief" Russell MooreDale JonesKaiser MarshallMilt YanerDon RaffellJoe YuklKenny JohnGary Crosby (2)Happy CaldwellJewel BrownSquire GershRuss Phillips (2)Bobby Domenick + +326789Henry VaniselliNeeds VoteHenry VanicelliOriginal Dixieland Jazz BandJohnny Sylvester & His Playmates + +326790Arthur SeabergNeeds VoteArtie SeabergOriginal Dixieland Jazz Band + +326791Baby DoddsWarren DoddsAmerican jazz drummer. Born 24 December 1898 in New Orleans, Louisiana. Died 14 February 1959 in Chicago, Illinois. Brother of jazz clarinetist [a307425]. +Needs Votehttps://en.wikipedia.org/wiki/Baby_Doddshttps://www.drummerworld.com/drummers/Baby_Dodds.htmlhttps://www.britannica.com/biography/Baby-Doddshttp://www.bluenote.com/artist/baby-dodds/https://www.pas.org/about/hall-of-fame/warren-baby-doddshttps://www.imdb.com/name/nm12018682/https://adp.library.ucsb.edu/names/103281"Baby" Dodds'Baby' DoddsB. DoddsBabby DoddsBabe DoddsDabby DoddsDoddsEarl "Baby" DoddsW. "Baby" DoddsWarren "Baby" DoddsWarren 'Baby' DoddsWarren (Baby) DoddsWarren <Baby> DoddsWarren Baby DoddsWarren DoddsWarren «Baby» DoddsWarren »Baby« DoddsWarren “ Baby ” DoddsWarren “Baby” DoddsБ. ДоддсБ. ДодсKing Oliver's Creole Jazz BandLouis Armstrong & His Hot SevenJelly Roll Morton's Red Hot PeppersKing Oliver's Jazz BandJelly Roll Morton TrioThe Mezzrow-Bechet QuintetBunk Johnson's Brass BandSidney Bechet And His New Orleans FeetwarmersSidney Bechet And His TrioJohnny Dodds Washboard BandChicago FootwarmersState Street RamblersJohnny Dodds' Black Bottom StompersBeale Street Washboard BandThe Original Zenith Brass BandSidney Bechet QuartetBunk Johnson And His New Orleans BandDixie-Land ThumpersJimmy Blythe's OwlsJohnny Dodds' Hot SixBaby Dodds TrioEclipse Alley FiveThe All Star StompersBaby Dodds' Jazz FourThe "This Is Jazz" All-Stars + +326792Omer SimeonOmer Victor SimeonAmerican jazz reeds player, primarily a clarinetist. + +b. July 21, 1902 (New Orleans, LA, USA) +d. September 17, 1959 (New York, NY, USA) +Needs Votehttp://www.redhotjazz.com/omar.htmlhttp://en.wikipedia.org/wiki/Omer_Simeonhttps://www.bluenote.com/artist/omer-simeon/https://www.allmusic.com/artist/omer-simeon-mn0000888491/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/406945ce57c786d7d8a85a09b8f38422db8ad/biographyhttp://www.worldcat.org/identities/lccn-n91022224/https://adp.library.ucsb.edu/names/106307"Omer" SimeonO. SimeonO.SimeonOmar SimeonOmer SomeonOtherSimeonKing Oliver & His Dixie SyncopatorsJelly Roll Morton's Red Hot PeppersJimmie Lunceford And His OrchestraClarence Williams' Blue FiveEarl Hines And His OrchestraWilbur De Paris And His OrchestraKid Ory And His Creole Jazz BandSy Oliver And His OrchestraKing Oliver & His OrchestraWilbur De Paris And His New New Orleans JazzReuben "River" Reeves & His River BoysOmer Simeon TrioRichard Jones And His Jazz WizardsHarry Dial And His BlusiciansArt Hodes' Back Room BoysJabbo Smith And His Rhythm AcesWilbur De Paris And His Rampart Street RamblersDixie Rhythm KingsJim Mundy And His Swing Club SevenClarence Williams Jazz BandPaul Mares & His Friars Society OrchestraThe Knocky Parker Trio + +326793Larry ShieldsLawrence Shields.American jazz clarinetist. +He was the older brother of jazz clarinetist [a=Harry Shields]. + + +Born : September 13, 1893 in New Orleans, Louisiana. +Died : November 21, 1953 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/110310"Larry" ShieldsChildsFieldsH. ShieldsHenry ShieldsI. ShieldsL. SheildsL. ShieldL. ShieldsL.ShieldsLaary ShieldsLarry "Pat" ShieldsLarry SchieldsLarry ShieldLarry ShieltsLawrence "Larry" ShieldsLawrence ShieldsLawrence «Larry» ShieldsLerry ShieldsSchielderSchieldsSchildsSheildsShiedShiedsShieldShielderShieldsShields LarryShielsShildsShyeldsSieldsЛэрри ШилдсШилдсOriginal Dixieland Jazz BandBourbon Street All-Star Dixielanders + +326796Tom BrownTom BrownAmerican jazz trombonist and bandleader. Born June 3, 1888 in New Orleans, Louisiana, USA. Died March 25, 1958 in New Orleans, Louisiana, USA. Brother of jazz bassist [a=Steve Brown (2)]. Brown also occasionally played violin and bass.Needs Votehttps://syncopatedtimes.com/tom-red-brown-1888-1958/https://www.nps.gov/people/tom-brown.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/362607/Brown_TomBrownBrownlee's Orchestra of New OrleansThe Happy SixJohnny Wiggs And His New Orleans BandJohnny Wiggs And His New Orleans KingsGreen Bros. Xylophone OrchestraRay Miller's Black And White Melody BoysJohnny Bayersdorffer And His Jazzola Novelty OrchestraTom Brown's Band From DixielandTom Brown And His Merry Minstrel OrchestraTom Brown And His New Orleans Jazz Band + +326797Clarence Williams' Blue FiveA series of sessions from 1923 to 1927 featuring some of the top jazz musicians and blues singers of the early '20's. With over 20 songs featuring [A=Louis Armstrong], [a=Clarence Williams] group also featured luminaries such as [a=Sidney Bechet] and [a=Coleman Hawkins].Correcthttp://www.redhotjazz.com/williamsb5.htmlBlue Five de Clarence WilliamsClarence William's Blue FiveClarence Williams & His Blue FiveClarence Williams Blue 5Clarence Williams Blue FiveClarence Williams Blue Five OrchestraClarence Williams Blues FiveClarence Williams W/ Clarence Williams' Blue FiveClarence Williams' Blue 5Clarence Williams' Blue Five (Red Onion's Jazz Babies)Clarence Williams' Blue Five OrchestraClarence Williams' Hot FiveClarence Williams’ Blue Five OrchestraThe Clarence Williams Blue FiveLouis ArmstrongColeman HawkinsSidney BechetBuster BaileyEddie LangDon RedmanJabbo SmithFloyd CaseyEd AllenEd CuffeeBubber MileyOtto HardwickBuddy ChristianCyrus St. ClairCharlie IrvisArville HarrisClarence WilliamsKing OliverOmer SimeonThomas MorrisAaron ThompsonLeroy Harris (2)John Mayfield (3)Benny Moten (2)Katherine Henderson (3)Charlie Thomas (4)Howard Nelson (2) + +326800Charlie JacksonJazz musician, active in the 1920's with [a=King Oliver] and [a=Louis Armstrong], among others. +His credits include bass saxophone, brass bass and tuba. Died in November 1928, when he was fatally shot by one Frank White. +[b]Not to be confused with[/b] blues singer and banjo player [a=Papa Charlie Jackson] or jazz banjo player [a=Charlie Jackson (10)].Needs VoteCharlie "Hooks" JacksonCharlie Hooks JacksonCharlie JohnsonCharlie “ Hooks ” JacksonPapa Charlie JacksonKing Oliver's Jazz Band + +326801Freddie KeppardFreddie Keppard (born February 27, 1890, New Orleans, Louisiana, USA - died July 15, 1933, Chicago, Illinois, USA) was an American jazz cornetist, trumpeter and bandleader. + +He is regarded as the first worthy successor to the great cornetist [a1837931]. His first professional engagement was with nell'Olympia Orchestra (around 1905) and then he played with Frankie Dusen's Eagle Band. In 1914, he moved to Los Angeles, California with the Original Creole Orchestra and toured the United States. About 1917, he moved to Chicago and worked with [a873908], [a1409386], [a1396988] and [a2773925]. Keppard recorded between 1923-1927 with the [url=https://www.discogs.com/artist/1238206-Freddie-Keppards-Jazz-Cardinals]Jazz Cardinals[/url]. Keppard suffered from alcoholism and tuberculosis in his final years and his playing suffered as a result. Brother of jazz guitarist and tubist [a3144979].Needs Votehttps://en.wikipedia.org/wiki/Freddie_Keppardhttps://www.allmusic.com/artist/freddie-keppard-mn0000181478/biographyhttps://musicrising.tulane.edu/discover/people/freddie-keppard/https://www.scaruffi.com/jazz/keppard.htmlF. KeppardF.K.Freddy KeppardFreddy Keppard & His Jazz CardinalsFreddy LeppardKeppardCookie's GingersnapsDoc Cook And His 14 Doctors Of SyncopationErskine Tate's Vendome OrchestraFreddie Keppard's Jazz CardinalsJimmy Blythe And His RagamuffinsBirmingham BluetetteCook's Dreamland OrchestraJasper Taylor's State Street BoysOriginal Midnight Ramblers Orchestra + +326805Norman BrownleeNorman Edward BrownleeAmerican jazz pianist. + +Born : February 07, 1896 in Algiers, Louisiana. +Died : April 09, 1967 in Pensacola, Escambia County, Florida. +Needs VoteBrownleeBrownlee's Orchestra of New Orleans + +326806Sharkey BonanoJoseph Gustaf Bonano.American jazz trumpeter, singer and bandleader. + + +Born : April 09, 1904 in New Orleans, Louisiana. +Died : March 27, 1972 in New Orleans, Louisiana. +Needs Votehttps://adp.library.ucsb.edu/names/106362BonanoJ. BonanoJ.S. BonanoJosef "Sharkey" BonanoJoseph "Sharkey" BonanoJoseph BonanoJoseph Sharkey BonanoS. BonanoSharkeySharkey And His Kings Of DixielandSharkey And His SharksBrownlee's Orchestra of New OrleansSharkey And His Kings Of DixielandJack Delaney And His New Orleans Jazz BabiesSharkey Bonano And His Sharks Of RhythmSharkey's New Orleans Boys + +326810Jimmie NooneAmerican jazz clarinetist and bandleader.(b. near New Orleans, 23 April 1895; d. 19 April 1944). +Needs Votehttps://en.wikipedia.org/wiki/Jimmie_Noonehttps://www.britannica.com/biography/Jimmie-Noonehttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/1412871270632ce07fa978c415c3d1d924f14/biographyhttps://www.allmusic.com/artist/jimmie-noone-mn0000341273https://adp.library.ucsb.edu/names/103207J. NooneJNJimmie NoonieJimmy NooneNo-oneNoonNooneNoone - Williamsジミー・ヌーンJimmie Noone's Apex Club OrchestraCookie's GingersnapsKing Oliver's Jazz BandOllie Powers' Harmony SyncopatorsDoc Cook And His 14 Doctors Of SyncopationLouis Armstrong And His Hot FourJimmie Noone TrioJimmie Noone And His OrchestraThe Capitol JazzmenCook's Dreamland OrchestraJimmie Noone And His Club AmbassadorsTed Picou QuartetJimmie Noone And His New Orleans BandJimmie Nooone & His Loones! + +326812Simon MarreroJazz bassistNeeds Votehttps://www.allmusic.com/artist/simon-marrero-mn0001778486Original Tuxedo Jazz OrchestraDave Nelson And The King's MenDave's Harlem Highlights + +326813Emma Barrett"Sweet Emma" Barrett (March 25, 1897, New Orleans, Louisiana – January 28, 1983) was a self-taught jazz pianist and singer who worked with the Original Tuxedo Orchestra between 1923 and 1936, and in the early 1960s became an iconic figure with the [a271588].Needs Votehttp://en.wikipedia.org/wiki/Sweet_Emma_Barrett"Sweet Emma" Barrett"Sweet" Emma BarrettBarrettEmma BarretSweet EmmaSweet Emma BarrettSweet EmmaPreservation Hall Jazz BandOriginal Tuxedo Jazz Orchestra"Sweet Emma" Barrett And Her Dixieland Boys + +326814Hal JordyJazz saxophonist.Needs VoteBrownlee's Orchestra of New OrleansMonk Hazel & His Bienville Roof OrchestraLouis Prima & His New Orleans GangJohnnie Miller's New Orleans Frolickers + +326816Butterbeans & SusieButterbeans and Susie were an African American comedy duo comprising [a=Jodie Edwards] (July 19, 1893 – October 28, 1967) and [a=Susie Edwards] (1896 - December, 5, 1963). Needs Votehttps://en.wikipedia.org/wiki/Butterbeans_and_Susiehttps://adp.library.ucsb.edu/names/110621Butterbeans & SuzieButterbeans - SusieButterbeans And SusieJoe Edwards & Susie EdwardsSusie EdwardsJodie Edwards + +326817McKenzie & Condon's ChicagoansCorrectCondon - McKenzie ChicagoansMacKenzie And Condon's ChicagoansMc Kenzie - Condon ChicagoansMc Kenzie And Condon's ChicagoansMcKenzie & Condon ChicagoansMcKenzie & Condon's BoysMcKenzie & Eddie Condon's ChicagoansMcKenzie - Condon's ChicagoansMcKenzie And Condon ChicagoansMcKenzie And Condon's BoysMcKenzie And Condon's ChicagoansMcKenzie And Condon's ChicaoansMcKenzie And Condons ChicagoansMcKenzie And His Condon ChicagoansMcKenzie and Condon's ChicagoansMcKenzie-Condon ChicagoansMcKenzie-Condon's ChicagoansMckenzie And Condon's ChicagoansRed McKenzie - Eddie Condon ChicagoansRed McKenzie And Condon's ChicagoansRed McKenzie and His Condon's ChiacagoansRed Meckenzie And His Condon's ChicagoansThe ChicagoansGene KrupaBud FreemanJoe SullivanRed McKenzieEddie CondonJimmy McPartlandFrank TeschemacherJim Lannigan + +326819Alonzo CrumbyNeeds VoteBrownlee's Orchestra of New Orleans + +326820Jimmy McPartlandJames Dugald McPartlandAmerican jazz trumpeter, cornetist and bandleader. Among others, he played with [a=Joe Candullo], [a=Sam Lanin], [a=Jack Teagarden], [a=Tony Bennett], [a=Eddie Condon], [a=Bix Beiderbecke], [a=Gene Krupa], [a=Art Hodes] and also led his own bands. He was married to pianist/composer [a296956] and was the younger brother of guitarist [a1279989]. McPartland was inducted into the Big Band and Jazz Hall of Fame in 1992. +Born: March 15, 1907 in Chicago, Illinois. +Died: March 13, 1991 in Port Washington, New York. + +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_McPartlandhttps://fromthevaults-boppinbob.blogspot.com/2019/03/jimmy-mcpartland-born-15-march-1907.htmlhttps://syncopatedtimes.com/jimmy-mcpartland/https://riverwalkjazz.stanford.edu/program/jimmy-mcpartland-hot-jazz-good-timeshttps://adp.library.ucsb.edu/names/109681J. Mc. PartlandJ. McPartlandJames McPartlandJimJim McPartlandJimmyJimmy Mc PartlandJimmy Mc.PortlandJimmy PartlandMac PartlandMacPortlandMcPartlandPartlandMcKenzie & Condon's ChicagoansJack Teagarden And His OrchestraJimmy McPartland And His DixielandersBen Pollack And His Park Central OrchestraEddie Condon And His FootwarmersJimmy McPartland And His OrchestraWhoopee MakersBen's Bad BoysJimmy McPartland And His Dixieland BandJack Teagarden BandJimmy McPartland's Chicago RompersJack Teagarden's Dixieland BandJimmy McPartland's Hot Jazz StarsPaul Mills And His Merry MakersJimmy McPartland And His All-StarsJimmy McPartland QuintetJimmy McPartland & His Jazz BandMarian & Jimmy McPartlandJimmy McPartland's SquirrelsJimmy And Marian McPartland's All StarsJimmy McPartland And His Sextette + +326821Frank TeschemacherAmerican jazz clarinetist and alto-saxophonist, born 13 March 1906 in Kansas City, Missouri, USA and died in a car accident 1 March 1932 in Chicago, Illinois, USA.Needs Votehttp://en.wikipedia.org/wiki/Frank_Teschemacherhttps://adp.library.ucsb.edu/names/103721Frank TeschemakerFrank TeschmacherFrank TeschmakerFrank TestmacherMr. TeschMr. Tesch.TeschTeschemacherTeschmacherTeschmakerMcKenzie & Condon's ChicagoansThe Cellar BoysThe Big AcesCharles Pierce And His OrchestraChicago Rhythm KingsElmer Schoebel And His Friars Society OrchestraJungle Kings (2)Frank Teschemacher's Chicagoans + +326823Kid Shots MadisonLouis MadisonAmerican jazz trumpeter. +Nickname: "Kid Shots". + +Born: February 19, 1899 in New Orleans, Louisiana. +Died: September, 1948 in New Orleans, Louisiana. +Needs Votehttps://en.wikipedia.org/wiki/Kid_Shots_Madisonhttps://www.allmusic.com/artist/louis-kid-shots-madison-mn0001349402"Kid Shots" MadisonKid "shots" MadisonKid ShotsLouis "Kid Shots" MadisonMadisonShots MadisonOriginal Tuxedo Jazz OrchestraBunk Johnson's Brass BandKid Shots New Orleans Band + +326825Don ParkerAmerican saxophonist and band leader, recorded with various bands in New York between 1922 and 1925 and also while playing at the Piccadilly Hotel & Kite-Cat Club in London from late 1925 to late 1926.Needs VoteDon Parker's Picadilly Hotel & Kit Kat Club BandOriginal Dixieland Jazz BandDon Parker's Western Melody BoysDon Parker's Dance OrchestraDon Parker's EntertainersDon Parker & His BandDon Parker Trio + +326827Paul MaresPaul Joseph MaresAmerican jazz trumpeter and bandleader, born June 15, 1900 in New Orleans, Louisiana and died August 18, 1949 in Chicago, Illinois. +In 1921 he formed the Friars Society Orchestra (renamed [a=New Orleans Rhythm Kings] in 1922). +He left the music scene in 1945. Brother of [a=Joe Mares, Jr.]. + + +Needs Votehttp://en.wikipedia.org/wiki/Paul_Mareshttps://adp.library.ucsb.edu/names/109706BaresJoseph MaresJoseph Paul MaresKaresMaesMarcsMarelMaresMares Paul JosephMarsMayersMeresMoresMorezP & G MaresP MarerP MaresP. & G. MaresP. And G. MaresP. J. MaresP. MaresP. RaresP.& G. MaresP.J. MaresPaul J. MaresPaul Joseph MaresPaul MavesPaul MayersPaul MeresPaul MoresRaresNew Orleans Rhythm KingsOriginal New Orleans Rhythm KingsFriar's Society OrchestraPaul Mares & His Friars Society Orchestra + +326828Brownlee's Orchestra of New OrleansCorrectBrownlee's Orch. Of New OrleansTom BrownNorman BrownleeSharkey BonanoHal JordyAlonzo CrumbyBehrman French + +326830Nick LaRoccaDominic James La RoccaAmerican jazz cornetist, trumpeter and bandleader. +Born 11 April 1889 in New Orleans, Louisiana. +Died 22 February 1961 in New Orleans, Louisiana. + +Nick LaRocca was a son of Italian-American immigrants. From around 1910 through 1916, he was a member of [a=Papa Laine]'s bands. In 1916 he replaced [a=Frank Christian (2)] in [a=Johnny Stein (2)]'s band which later became the [a=Original Dixieland Jazz Band]. The band gave La Rocca the nickname "Joe Blade". In the 1920s they toured England and the United States.Needs Votehttp://www.biographybase.com/biography/LaRocca_Nick.htmlhttp://www.redhotjazz.com/LaRocca.htmlhttps://www.windrep.org/Dominick_LaRoccahttps://adp.library.ucsb.edu/names/106826"Nick" La RoccaC. RoccaD James La RoccaD. J. "Nick" La RoccaD. J. "Nick" LaRoccaD. J. 'Nick' LaRoccaD. J. (Nick) La RoccaD. J. (Nick) LaRoccaD. J. De La RoccaD. J. La RoccaD. J. La RochaD. J. La RocoaD. J. LaRoccaD. J. LaroccaD. J. Nick LaroccaD. J. RoccaD. J. de la RoccaD. J. la RoccaD. J. »Nick» La RoccaD. James "Nick" LaRoccaD. James La RoccaD. James La-RoccaD. James LaRoccaD. James LaroccaD. La RoccaD. LaRoccaD. LaroccaD. la RoccaD.J. "Nick" La RoccaD.J. "Nick" LaRoccaD.J. "Nick" la RoccaD.J. (Nick) La RoccaD.J. La RoccaD.J. La RochaD.J. LaRoccaD.J. LaRocca,D.J. LaroccaD.J. Nick LaRoccaD.J. RoccaD.J. la RoccaD.J. „Nick” La RoccaD.J.La RoccaD.j. La RoccaDJ LaroccaDJ. La RocaDa RoccaDe La RoccaDeCostaDomenick LaRoccaDomenico detto Nick LaRoccaDomingo Jaime La RoccaDominic J. "Nick" La RoccaDominic J. "Nick" LaRoccaDominic J. LaRoccaDominic James "Nick" LaRoccaDominic James 'Nick' LaRoccaDominic James La RoccaDominic James LaroccaDominic LaroccaDominick James "Nick" La RoccaDominick James "Nick LaRoccaDominick James "Nick" La RoccaDominick James "Nick" LaRoccaDominick James "Nick" LaroccaDominick James «Nick» La RoccaDominick La RoccaDominick LaRoccaDominico Sebastián La RoccDominique J. "Nick" La RoccaDominique J. La RoccaDominique La RoccaG. J. La RoccaH. LaRoccaJ. D. La RoccaJ. D. LaroccaJ. D. la RoccaJ. De La RoccaJ. La RoccaJ. LaRoccaJ. de la RoccaJ.B. LaRoccaJ.D. La RoccaJ.D. LaRoccaJ.D. LaroccaJames D. La RoccaJames D. LaRoccaJames D. la RoccaJames D.La RoccaJames La RoccaJames LaRocaJames LaRoccaJames de la RoccaJimmy LaroccaL'RoccaL. RoccaLA RoccaLaLa PoccaLa ReccaLa RocLa RocaLa RoccaLa Rocca NicolaLa Rocca SheildsLa Rocca – The Original Dixieland Jazz BandLa Rocca-D. JamesLa RoccoLa RochaLa RockaLa RohcaLa RollaLaRocaLaRoccaLaRoccsLarocaLaroccaLaruccaLe RoccaLo RoccaN la RoccaN. L. RocaN. La RaccaN. La RocaN. La RoccaN. LaRocaN. LaRoccaN. LaroccaN. la RoccaNic La RocaNick De La RoccaNick La RocaNick La RoccaNick La RoggaNick LaRocaNick LaroccaNick RollaNick de la RoccaNick la RoccaNick la RockaNick la RoggaNick, LaRoccaNik La RoccaODJBP. J. La RoccaP. La RoccaRoccaW. J. "Nick" La RoccaW. J. (Nick) La RoccaW. J. Nick La RoccaW. J. «Nick» La RoccaW.J. "Nick" La RoccaW.J. (Nick) La Roccala RoccaД. Ла-РоккаЛа РоккаЛя РоккаН. Ла РоккаН. Ла-РоккаН. ЛароккаН. Ля-РоккаН. ЛяроккаН. РоккаНик Ла РоккаOriginal Dixieland Jazz Band + +326831Behrman FrenchNeeds VoteBrownlee's Orchestra of New Orleans + +326832King Oliver's Jazz BandNeeds Votehttps://syncopatedtimes.com/king-olivers-creole-jazz-band/Joe 'King' OliverK. Oliver's Jazz BandKing Oliver And His Jazz BandKing Oliver Jazz BandKing Oliver's JazzbandKing Oliver's Original Jazz BandKing Oliver's Creole Jazz BandLouis ArmstrongBuster BaileyKid OryAlbert NicholasRichard M. JonesJohnny St. CyrCyrus St. ClairLuis RussellPaul BarbarinArville HarrisBarney BigardJohnny DoddsKing OliverLil Hardin-ArmstrongBaby DoddsCharlie JacksonJimmie NooneBill Johnson (4)Bud ScottEd AtkinsHoward Scott (2)Jimmy ArcheyStump EvansBob ShoffnerHonore DutreyBert CobbBilly PaigeErnest ElliottLeroy Harris (2) + +326834Bix Beiderbecke And His GangOne of the early Jazz ensembles led by [a282067] in the 1920's until 1930.Needs VoteB. Beiderbecke And His GangBeiderbecke And His GangBix & His GangBix & The GangBix And His GangBix Beiderbeck & His OrchestraBix Beiderbeck Presents His OrchestraBix BeiderbeckeBix Beiderbecke & His GangBix Beiderbecke & His Gang RoyalBix Beiderbecke & His New Orleans Lucky SevenBix Beiderbecke & His Orch.Bix Beiderbecke & His OrchestraBix Beiderbecke And His BandBix Beiderbecke Und Seine GangBix Beiderbecke Y Su ConjuntoBix Beiderbecke And His OrchestraNew Orleans Lucky SevenBix BeiderbeckeIzzy FriedmanRoy BargyChauncey MorehouseFrank SignorelliMin LeibrookHarry GaleBill RankDon Murray (2)Howdy QuicksellAdrian Rollini + +326835Joe PostonJoseph PostonAmerican jazz saxophonist (tenor and alto), clarinetist and singer. +Played with : Jimmie Noone ("Apex Club Orchestra"), Doc Cook, Fate Marable and others. +He recorded with Freddie Keppard ("Cookie's Gingersnaps"). + +Born : December 31, 1895 in Alexandria, Louisiana. +Died : May 31, 1942 in Illinois. +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106832/Poston_Joehttps://de.wikipedia.org/wiki/Joe_Postonhttps://www.allmusic.com/artist/joe-poston-mn0001751071/creditshttp://oldtimeblues.net/tag/joe-poston/D. PostonJ. PostonJPJoe "Doc" PostonJoe PotonJoseph "Doc" PostonJoseph PostonPostonJimmie Noone's Apex Club OrchestraCookie's GingersnapsDoc Cook And His 14 Doctors Of SyncopationCook's Dreamland Orchestra + +326838Leon AddeAmerican jazz drummer. +Played with : Abbie Brunies' "Halfway House Orchestra" (early 20s), "New Orleans Rhythm Kings" (leader Johnny Bayersdorffer), Sharkey Bonano, Leon Prima (Louis Prima's brother). + +Born April 21, 1904 in New Orleans, Louisiana, USA. +Died March 01, 1942 in New Orleans, Louisiana, USA. +Adde began playing with [a=Raymond Burke] while he was still in his early teens, banging on pot lids and Christmas toys in their first band.Needs Votehttps://en.wikipedia.org/wiki/Leo_AddeAddeL. AddeLeo AddeOriginal New Orleans Rhythm KingsJohnny Bayersdorffer And His Jazzola Novelty OrchestraJohnnie Miller's New Orleans FrolickersAlbert Brunies And His Halfway House Orchestra + +326840Abby FosterAmerican jazz drummer, born January 9, 1900 in New Orleans, Louisiana, died September 12, 1962 in the same city. Foster worked with [a=Original Tuxedo Jazz Orchestra], Buddy Petit and others. +Needs VoteAbbee "Chinee" FosterAbbey "Chinee" FosterAbbie "Chinee" FosterAbbie FosterAbby "Chinee" FosterOriginal Tuxedo Jazz OrchestraPunch Miller's Bunch + +326841Jim LanniganJames Wood LaniganAmerican jazz bassist and tuba player. +Played with Husk O'Hare, Mound City Blue Blowers, Art Kassel, Jimmy McPartland, Bud Freeman, Eddie Condon, Red McKenzie and many others. + +Born: January 30, 1902 in Chicago, Illinois. +Died: April 9, 1983 in Elburn, Illinois. +Needs Votehttps://en.wikipedia.org/wiki/Jim_LaniganJim LaniganJim Lanigan (2)Jimmy LaniganJimmy LanniganLaniganMcKenzie & Condon's ChicagoansChicago Rhythm KingsJungle Kings (2)Frank Teschemacher's ChicagoansThe Chicagoans (2)Freeman FoursomeDohler FourFreeman Five + +326842Oscar "Papa" CelestinOscar Phillip CelestinAmerican jazz trumpeter, cornetist, vocalist, and bandleader, born January 1, 1884, Napoleonville, Louisiana, USA, died December 15, 1954, New Orleans, Louisiana, USA.Needs Votehttps://en.wikipedia.org/wiki/Papa_Celestinhttps://www.dailygreen.it/oscar-papa-celestin-una-tromba-nobile-di-new-orleans/https://www.allmusic.com/artist/oscar-papa-celestin-mn0001574169/biographyhttps://digitallibrary.tulane.edu/islandora/object/tulane:14255https:adp.library.ucsb.edunames105200"Papa" Celestin'Papa' CelestinCelestinCelestineO. CelestinOscar CelestinOscar Papa CelestinPapa CelestinOriginal Tuxedo Jazz OrchestraPapa Celestin And His Tuxedo Jazz BandOscar "Papa" Celestin's Jazz BandPapa Celestin And His New Orleans Ragtime BandPapa Celestin New Orleans Band + +326844Tony SbarbaroAntonio SbarbaroAmerican jazz drummer and kazoo player. + +Antonio Sparbaro, known professionally as Tony Sbarbaro or Tony Spargo (June 27, 1897 New Orleans, Louisiana – October 30, 1969 Forest Hills, New York.) was an American jazz drummer associated with New Orleans jazz. He was the drummer of the Original Dixieland Jazz Band for over 50 years. + +Needs Votehttps://en.wikipedia.org/wiki/Tony_Sbarbarohttps://adp.library.ucsb.edu/names/110378A. SbarbaroA. SharbaroA.S. BarbaroAnthony "Tony" SbarbaroAnthony SbararoAnthony SbarbardAnthony SbarbaroAnthony SbarvardAnthony SbavardAnthony «Tony» SbarbaroAntonio "Tony" SbarbaroAntonio SbarbaroBararoBarbaroSbarabroSbararoSbarbaroSbarbarroShabaroSharbaroSoarbaroSparbaroSpargoSvardaroT. SbarbaroT. SparbaroT. SpargoT.SbarbaroTony "Spargo" SbarbaroTony Sbarbaro (Now Known As Spargo)Tony SbarobaroTony SparbaroTony SpargoTony Spargo "Sbarbaro"Tony Spargo "Sparbaro"Tony Spargo Alias SbarbaroTony SpargoOriginal Dixieland Jazz BandNapoleon's EmperorsEddie Condon And His Band + +326845Chink MartinMartin N. Abraham Sr.American jazz musician (tuba, guitar, bass), born June 10, 1886 in New Orleans, Louisiana, died January 7, 1981 in the same city. +Guitarist as a youth before choosing the tuba as his main instrument, Martin also played and recorded on the double bass. +Worked with Papa Jack Laine's Reliance Brass Band, New Orleans Rhythm Kings, Halfway House Orchestra, The New Orleans Harmony Kings, New Orleans Swing Kings, Sharkey Bonano, Santo Pecora, Pete Fountain, Al Hirt and others. +His son [url=https://www.discogs.com/artist/14833768]Martin "Little Chink" Abraham[/url] is a jazz bassist. +Needs Votehttps://en.wikipedia.org/wiki/Chink_Martinhttps://adp.library.ucsb.edu/names/112986https://findagrave.com/memorial/76192416/martin-n.-abraham"Chink" Martin"Chink" Martin, Sr."Little Chink" MartinC. MartinCharles "Chink" MartinChink Martin SRChink Martin Sr.Chink Martin, Sr.Chink MortonNew Orleans Rhythm KingsOriginal New Orleans Rhythm KingsJohnny Bayersdorffer And His Jazzola Novelty OrchestraJack Delaney And His New Orleans Jazz BabiesMonk Hazel And His New Orleans Jazz Kings + +326849Thomas MorrisJazz cornet and trumpet player, born August 30, 1897 in New York, died in 1945. +Morris was a prolific member of the early New York jazz scene with over 150 recordings. He had his own ensembles such as [a=Thomas Morris And His Seven Hot Babies], and recorded with such luminaries as [a=Fats Waller], [a=Sidney Bechet], and [a=Clarence Williams]. He also accompanied blues singers such as [a=Margaret Johnson (5)], [a=Eva Taylor], and [a=Sarah Martin]. +With a brief appearance in the 1929 [a=Bessie Smith] film [url=http://www.redhotjazz.com/stlouisblues.html]"St. Louis Blues"[/url], Morris left the music business in the late 1930's, dedicating his final years to the fundamental Christian group Father Divine's Universal Peace Mission Movement. +Uncle of [a=Marlowe Morris].Needs Votehttp://en.wikipedia.org/wiki/Thomas_Morris_%28musician%29http://www.redhotjazz.com/morris.htmlhttp://www.harlem-fuss.com/pdf/soloists/harlem_fuss_soloists_morris_thomas.pdfhttps://peoplepill.com/people/thomas-morris-11/https://de.zxc.wiki/wiki/Thomas_Morris_(Musiker)https://memim.com/thomas-morris-musician.htmlhttps://adp.library.ucsb.edu/names/103510MorrisT. MorrisTh. MorrisThomas Morris!Tom MorrisClarence Williams' Blue FiveThomas Morris And His Seven Hot BabiesGeorge McClennon's Jazz DevilsGet Happy BandCharlie Johnson & His Paradise BandDixie Jazzers Washboard BandClarence Williams' Harmonizing FourNew Orleans Blue FiveMorris's Hot BabiesThomas Morris With His Past Jazz MastersThomas Morris And His Orchestra + +326850Justin RingAmerican musician (played piano, organ, celeste, chimes) - Musical director for OKeh 1921-1928 and during this period accompanied many artists and also directed a studio orchestra variously credited as Justin Ring's Ensemble, Justin Ring's [OKeh] Orchestra, Justin Ring's Trio, OKeh Concert Orchestra, etc.Needs VoteJ. RingRingJustus RinglebenClarence Williams' Novelty FourJoe Venuti's Blue FourJustin Ring And His OrchestraRing-HagerJustin Ring's TrioThe Yellow Jackets (6) + +326851The Dixie StompersEarly jazz band that also accompanied [a=Fletcher Henderson] on several recordings during 1925 - 1945. CorrectDixie StompersFletcher Henderson & His Dixie StompersFletcher Henderson & The Dixie StompersFletcher Henderson And His Dixie StompersFletcher Henderson's Dixie StompersHis Dixie StompersFletcher Henderson And His OrchestraThe Louisiana StompersThe Southern SerenadersFrisco SyncopatorsThe Baltimore Bell HopsRialto Dance OrchestraSeven Brown BabiesDuke Of Harlem & His FlunkiesThe Stokers Of HadesTed Williams And His Famous PlayersBrown's Dixieland OrchestraParamount Novelty OrchestraHenderson's Roseland OrchestraHenderson's Wonder BoysSam Hill And His OrchestraOstend Society OrchestraCharlie GreenColeman HawkinsBuster BaileyRussell SmithJimmy HarrisonDon RedmanCharlie DixonRex StewartTommy LadnierFletcher HendersonBobby StarkJoe Smith (3)Kaiser MarshallJerome Pasquall + +326852Willard ThoumySaxophonistCorrectWilliard ThoumyOriginal Tuxedo Jazz Orchestra + +326853Eddie EdwardsEdwin Branford Edwards.American jazz trombonist. + +Born : May 22, 1891 in New Orleans, Louisiana. +Died : April 09, 1963 in New York City, New York. + +CAE/IPI#: 00009060219 +Needs Votehttp://en.wikipedia.org/wiki/Eddie_Edwardshttps://adp.library.ucsb.edu/names/110118"Eddie" EdwardsE. B. EdvardsE. B. EdwardsE. EdwardsE. EdwinE. W. EdwardsE.B. EdwardsEd "Daddy" EdwardsEd. EdwardsEddieEdouardsEdvardsEdwardEdward B. EdwardsEdward Bransford "Daddy" EdwardsEdwardsEdwards EEdwin "Eddie" EdwardsEdwin B EdwardsEdwin B. EdwardsEdwin Branford "Eddie" EdwardsEdwin Bransford "Daddy" EdwardsEdwin EdwardsEdwin «Eddie» EdwardsEdwing B. "Eddie" EdwardsOriginal Dixieland Jazz BandJohnny Sylvester & His Orchestra + +326854John MarreroBanjo playerNeeds Votehttps://www.allmusic.com/artist/john-marrero-mn0001203732https://www.soundhound.com/?ar=200122850197367371MarreroOriginal Tuxedo Jazz Orchestra + +326874Eddie RabbittEdward Thomas RabbittAmerican country singer born on November 27, 1941 in Brooklyn, New York and died on May 7, 1998 in Nashville, Tennessee.Needs Votehttp://elvispelvis.com/eddierabbitt.htmhttp://www.cmt.com/artists/az/rabbitt_eddie/artist.jhtmlhttps://en.wikipedia.org/wiki/Eddie_Rabbitthttps://www.wikitree.com/wiki/Rabbitt-146E RabbitE RabbittE. RabbitE. RabbittE. RabittE.RabbitE.RabbittEd RabbittEd. RabbittEddie RabbitEddie RabitEddie RabittEddie T RabbittEddy RabbittEddye RabbitEdward 'Eddie' RabbitEdward RabbitEdward RabbittEdward T RabbitRabbitRabbit, E.RabbittRabbttRabittエディ・ラビット에디 래빝The Maverick Choir + +327018Ernie HenryErnest Albert HenryAmerican jazz alto saxophonist, born September 3, 1926 in Brooklyn, New York, USA, died December 29, 1957 in New York City, New York, USA. +Henry was discovered by [a=Tadd Dameron] and he joined his band at the Famous Door on 52nd St. in 1947. Went on to work with [a=Fats Navarro], [a=Charlie Ventura], [a=George Auld], [a=Max Roach], [a=Kenny Dorham], [a=Dizzy Gillespie And His Orchestra] (1948-1949, 1957), [a=Illinois Jacquet] (1950-1951), and [a=Thelonious Monk] (1956-1957). Died in his sleep the morning after playing with Gillespie at Birdland.Needs Votehttps://en.wikipedia.org/wiki/Ernie_Henryhttps://www.bluenote.com/artist/ernie-henry/https://www.allmusic.com/artist/ernie-henry-mn0000805514https://wbssmedia.com/artists/detail/2125https://adp.library.ucsb.edu/names/358884E. HenryE.HenrE.HenryErnest HenryErni HenryErnie HeuryHenryЭрни ГенриЭрни ХенриDizzy Gillespie And His OrchestraThe Thelonious Monk QuintetThe Tadd Dameron SextetDizzy Gillespie Big BandJames Moody And His ModernistsMcGhee-Navarro BoptetKenny Dorham QuartetJohn Lewis And His OrchestraErnie Henry QuartetErnie Henry OctetErnie Henry Quintet + +327021John Collins (2)John Elbert CollinsAmerican jazz guitarist, born 20 September 1913 in Montgomery, Alabama, USA, died 4 October 2001 in Los Angeles, California, USA.Needs Votehttp://en.wikipedia.org/wiki/John_Collins_(jazz_guitarist)https://adp.library.ucsb.edu/names/309178CollinsJ. CollinsJ.CollinsJohn CollisJohnny ColinsJohnny CollinsDizzy Gillespie And His OrchestraBillie Holiday And Her OrchestraThe Nat King Cole TrioTadd Dameron And His OrchestraRoy Eldridge And His OrchestraIllinois Jacquet And His OrchestraBenny Carter And His OrchestraArt Tatum And His BandLester Young And His BandLester Young QuintetBig Joe Turner And His Fly CatsPete Johnson's BandMildred Bailey And Her OrchestraThe Ike Quebec Swing SevenColeman Hawkins All StarsKenny Clarke And His 52nd Street BoysBilly Taylor QuartetTadd Dameron's Big TenEsquire All American Award WinnersHot Lips Page And His BandBeryl Booker Trio (2) + +327022Raymond OrrTrumpet player.Needs VoteRay OrrDizzy Gillespie And His OrchestraBilly Eckstine And His OrchestraDizzy Gillespie Big Band + +327026Vincent GuerraPercussionist.Needs VoteV. D. V. GuerraV. GuerraVice GuerraVince GuerraVincente GuerraWillie "Bobo" GuerraDizzy Gillespie And His Orchestra + +327027John Brown (3)Jazz saxophonist.Needs VoteBrownJ. BrownJ.BrownJoe BrownJohn B. BrownJohnny BrownDizzy Gillespie And His OrchestraLouis Armstrong And His OrchestraDizzy Gillespie Big BandIllinois Jacquet And His OrchestraLes Hite And His OrchestraIllinois Jacquet SextetBill Doggett's OctetRay Brown's All Stars + +327028Matthew McKayJazz trumpet player.Needs VoteM. McKayM.McKayMattew McKayMatthew MacKayDizzy Gillespie And His OrchestraDizzy Gillespie Big Band + +327029Teddy StewartAmerican jazz drummer. + +[i]For the rock drummer, member of the psychedelic band [a=Salvation (7)], see [a=Teddy Stewart (2)].[/i] +Needs Votehttps://www.allmusic.com/artist/teddy-stewart-mn0000021440/creditshttps://adp.library.ucsb.edu/names/345438StewartT. StewartTeddy StewardDizzy Gillespie And His OrchestraDizzy Gillespie Big BandSonny Stitt QuartetTeddy Stewart OrchestraGene Ammons And His BandGene Ammons - Sonny Stitt Septet + +327030Jesse "Rip" TarrantAmerican jazz trombonistNeeds VoteJ. C. TarrantJ.C. TarrantJ.C. TarrautJess TarrantJesse TarrantRip TarrantDizzy Gillespie And His OrchestraDizzy Gillespie Big BandGil Fuller Orchestra + +327031James Forman Jr.Jazz pianist.Needs Votehttps://de.wikipedia.org/wiki/James_Forman_(Musiker)Hen GatesJ. ForemanJ. Foreman, Jr.J. Forman Jr.James "Hen Gates" ForemanJames "Hen Gates" FormanJames "Hen Getes" FormanJames "Men Gates" ForemanJames "Men Gates" FormanJames 'Hen Gates' FormanJames FaremanJames ForemanJames Foreman JrJames FormanJames Forman (Hen Gates)James Forman aka Hen GatesJames FromanJimmy "Hen Gates" FormanJimmy FormanHen GatesDizzy Gillespie And His OrchestraDizzy Gillespie Big BandJames Moody And His ModernistsTeddy Stewart OrchestraHen Gates Combo + +327033Cecil PayneCecil McKenzie PayneAmerican jazz baritone saxophonist +Born 14th December 1922 Brooklyn, New York, USA, died 27th November 2007 Stratford, New Jersey, USA +Needs Votehttps://en.wikipedia.org/wiki/Cecil_Paynehttps://www.bluenote.com/artist/cecil-payne/https://cecilpayne.bandcamp.com/https://www.radioswissjazz.ch/en/music-database/musician/247474150b28c9017b1df350147cdda53dbc9/biographyhttps://www.allmusic.com/artist/cecil-payne-mn0000661645https://rateyourmusic.com/artist/cecil_paynehttps://adp.library.ucsb.edu/names/336830C PayneC. PayneC.PayneCecil PainCecil PaineCecil PaynesPayneQuincy Jones And His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraKenny Dorham OctetBilly Eckstine And His OrchestraDizzy Gillespie Big BandTadd Dameron And His OrchestraRoy Eldridge And His OrchestraIllinois Jacquet And His OrchestraColeman Hawkins QuintetThe J.J. Johnson QuintetJ.J. Johnson's BoppersThe Dizzy Gillespie Reunion Big BandJames Moody And His ModernistsWalter Gil Fuller And His OrchestraTeddy Stewart OrchestraRolf Ericson And His American StarsThe Prestige All StarsColeman Hawkins All StarsDuke Jordan QuartetGeorge Lewis And His OrchestraBennie Green And His OrchestraJimmy Cleveland And His All StarsRandy Weston SextetKenny Dorham SeptetThe Cecil Payne QuartetJohn Lewis And His OrchestraWoody Herman And The Thundering HerdCecil Payne & His OrchestraThe Kenny Burrell QuintetCecil Payne QuintetGil Fuller OrchestraCecil Payne SextetTommy Turk And His OrchestraRandy Weston QuintetCannonball Adderley All StarsErnie Henry OctetDameroniaKenny Dorham Nonet + +327034Benny BaileyErnest Harold BaileyAmerican bebop and hard-bop jazz trumpet player + +Born 13 August 1925 in Cleveland, Ohio, USA, died 14 April 2005 in Amsterdam, Netherlands (aged 79) + +He played in the [a=ORF Big Band] (ORF: Österreichischer Rundfunk, en: Austrian Broadcasting) between 1978 and 1982. +Needs Votehttp://en.wikipedia.org/wiki/Benny_Baileyhttps://www.allmusic.com/artist/benny-bailey-mn0000791572/biographyhttps://adp.library.ucsb.edu/names/302548https://bennybailey.bandcamp.com/B BaileyB. BaileyB.BaileyBaileyBailey BennyBailey-BennyBebby BaileyBennie BaileyBenny "Cool Train" BaileyBenny BailyBenny BayleyBilly BaileyE. BaileyE. BailyErnest "Benny" BaileyErnest BaileyErnest BailezThe Amazing Benny BaileyPeter Herbolzheimer Rhythm Combination & BrassQuincy Jones And His OrchestraClarke-Boland Big BandThe George Gruntz Concert Jazz BandJoe Haider SeptetJoe Haider & His OrchestraDizzy Gillespie And His OrchestraMetropole OrchestraLionel Hampton And His OrchestraFrancy Boland And OrchestraJack Dieval Et Son QuartettMax Greger Und Sein OrchesterDexter Gordon QuintetBerlin Contemporary Jazz OrchestraEric Dolphy QuintetHarry Arnolds OrkesterKurt Edelhagen Big BandFestival Big BandThe Band (7)Hans Koller Big BandHarry Arnold & His Swedish Radio Studio OrchestraORF Big BandEugen Cicero QuintettHelmut Brandt OrchestraBenny Bailey And His OrchestraBenny Bailey QuintetStan Getz And His Swedish JazzmenGösta Theselius OrkesterBenny Bailey SextettThe Quincy Jones Big BandThe Firehouse JazzmenArne Söderlunds OrkesterNDR-Jazz-Workshop-BandSlide Hampton - Joe Haider OrchestraKlaus Weiss Big BandThe Max Greger Big BandJazz Gala 77 All Star Big BandBenny Bailey QuartetThe Benny Bailey QuartetJack Dieval QuintetDexter Gordon - Benny Bailey QuintetLionel Hampton And His French New SoundPaul Kuhn And The BestBoy Edgar Big BandBenny Bailey - Joe Haider QuintettKen Rhodes Big BandSummit Big BandHoward McGhee - Benny Bailey SextetPony Poindexter QuintetDaniele D'Agaro Benny Bailey QuintetBenny Bailey-Dexter Gordon All Stars + +327112George Lewis (2)American traditional jazz clarinetist and bandleader. +Worked with Black Eagle Band, Buddy Petit, Eureka Brass Band, Chris Kelly, Kid Ory, Olympia Orchestra, Bunk Johnson (and many others) and with his own bands. + +Born: July 13, 1900 in New Orleans, Louisiana. +Died: December 31, 1968 in New Orleans, Louisiana.Needs Votehttps://en.wikipedia.org/wiki/George_Lewis_(clarinetist)https://64parishes.org/entry/george-lewishttps://www.jazzmusicarchives.com/artist/george-lewis-clarinethttps://www.allmusic.com/artist/george-lewis-mn0000945658/biographyhttps://www.radioswissjazz.ch/en/music-database/musician/684469ff77f49203c6db01a5a23549f050299/biographyhttps://www.nola.com/entertainment_life/article_f0585a1a-509f-5077-a307-2e252ec884e2.htmlhttps://adp.library.ucsb.edu/names/327346Dan LewisG. LewisG.LewisGeorge LewisGeorge Lewis & His New Orleans Jazz BandGeorge Lewis And His BandGeorge Lewis SessionLewisLouisPreservation Hall Jazz BandEureka Brass BandBunk Johnson's Brass BandGeorge Lewis TrioGeorge Lewis & His New Orleans MusicThe Original Zenith Brass BandBunk Johnson And His New Orleans BandGeorge Lewis BandGeorge Lewis' Ragtime BandGeorge Lewis And His OrchestraGeorge Lewis And His New Orleans StompersThe George Lewis Band Of New OrleansGeorge Lewis QuartetGeorge Lewis And His New Orleans All StarsEclipse Alley FiveGeorge Lewis And His Jazz BandBunk Johnson's Original Superior BandGeorge Lewis and his Preservation Hall All-StarsLouis Nelson Big FourDe De Pierce's New Orleans StompersKid Thomas - George Lewis Ragtime StompersSayles' Silver Leaf RagtimersGeorge Lewis And His New Orleans Jazz Band + +327339Talib DaawudTalib Ahmad Daawud (née Alfonso Nelson Rainey)Talib Daawud (born January 26, 1923, Antigua, Antigua and Barbuda - died July 9, 1999, New York City, New York, USA) was an Antiguan-born American jazz trumpeter. He worked with many artists including [a332337], [a38201], [a258701], [a64694], [a270023], [a311058], [a258459] and others. He changed his name when he converted to Islam. He was married to [a258618].Needs Votehttps://en.wikipedia.org/wiki/Talib_Dawudhttps://adp.library.ucsb.edu/names/310693DaawudT. DawudTalib Ahmad DawudTalib DaauribTalib DaawadTalib DaawoodTalib DawdTalib DawoodTalib DawudTalib TawudTalid DaawoodТалиб ДаавудDizzy Gillespie And His OrchestraDizzy Gillespie Big BandAndy Kirk And His Orchestra + +327340Carl WarwickWilliam Carl WarwickUS jazz trumpeter, born October 27, 1917 in Birmingham, Alabama. +In the late 1930s Warwick performed and recorded with [a=The Mills Blue Rhythm Band] (1937), [a=Don Redman] (1938) and [a=Bunny Berigan] (1939). After military service during World War II, he worked with [a=Woody Herman] 1944-1946, [a=Buddy Rich] 1946-1947 and various commercial bands. Briefly with [a=Lucky Millinder] in 1953, in group with [a=Brew Moore] in San Francisco 1954-1955, toured and recorded with [a=Dizzy Gillespie] 1956-1957 and 1961. From 1966 served as music director for the New York City Correctional Institute, and in 1973 played with [a=Benny Carter] at the Newport Jazz Festival. Warwick was mainly a section player and rarely took solos.Needs Votehttps://en.wikipedia.org/wiki/Carl_Warwick_(musician)BamaBama WarwickCarl "Bama" WarvickCarl "Bama" WarwickCarl "Barna" WarvickCarl "Barna" WarwickCarl (Bama) WarwickCarl WarwichKarl WarwickКарл УорвикBunny Berigan & His OrchestraDizzy Gillespie And His OrchestraWoody Herman And His OrchestraBuddy Rich And His OrchestraDizzy Gillespie Big BandWill Hudson And His OrchestraWoody Herman & The Herd + +327342Pee Wee MooreNuma Smith Moore.American jazz saxophonist (baritone). +Played with : Dizzy Gillespie, Big John Greer, James Moody, Lee Morgan, Mary Lou Williams, Lucky Millinder, Louis Jordan, Illinois Jacquet and others. +Not to be confused with (jazz saxophonist) [a313030] also called him "Pee Wee". + +Born : May 05, 1928 in Raleigh, North Carolina. +Died : April 13, 2009 in Raleigh, North Carolina. +Needs Votehttps://en.wikipedia.org/wiki/Pee_Wee_Moorehttps://adp.library.ucsb.edu/names/332394"Pee-Wee" MooreNuma "Pee Wee" MooreNuma "Pee-Wee" MooreNuma 'Pee Wee' MooreNuma MooreNuma Pee Wee MooreNuma Smith "Pee Wee" MooreNuman "Pee Wee" MoorePee We MoorePee Wee MorePee Wee Numa-MoorePee-Wee MooreSmith MooreThe Numa 'Pee Wee' Moore QuartetDizzy Gillespie And His OrchestraDizzy Gillespie Big BandLouis Jordan And His OrchestraThe Dizzy Gillespie OctetJames Moody And His BandHot Lips Johnson And His Orchestra + +327344Dizzy Gillespie QuintetCorrectDizzie Gillespie QuintetDizzy Cadillacs Gillespie QuintetDizzy GillespieDizzy Gillespie "All Star" QuintetDizzy Gillespie & His All Star QuintetDizzy Gillespie & His All-Star QuintetDizzy Gillespie All Star QuintetDizzy Gillespie And His All Star QuintetDizzy Gillespie And His QuintetDizzy Gillespie Et Son QuintetDizzy Gillespie Et Son QuintetteDizzy Gillespie ShowcaseDizzy Gillespie Son QuintetteDizzy Gillespie Und Sein QuintettDizzy Gillespie's All-Star QuintetThe Dizzy Gillespie QuintetLalo SchifrinBud PowellDizzy GillespieKenny BarronCharlie ParkerJames MoodyMichael LongoCharles MingusJunior ManceRoy HaynesDon ByasOscar PettifordRed MitchellClyde HartWalter Bishop, Jr.Art DavisShelly ManneMel LewisMickey RokerEarl MayLeo WrightDavid Lee (2)Rudy CollinsAl GafaGeorge Davis (2)Art SimmonsBob CunninghamChris White (3)Al DrearesChuck Lampkin + +327356New York PhilharmonicFounded in 1842 as Philharmonic Society of New York, the New York Philharmonic is the oldest symphony orchestra in the United States. + +[b]Complete list of Music Directors: [/b] +[b]As Philharmonic Society of New York [/b] +• Ureli Corelli Hill, Henry Timm, Denis Etienne, William Alpers, George Loder, Louis Wiegers and Alfred Boucher (1842–1849) +• Theodore Eisfeld (1849–1854) / Theodore Eisfeld & Henry Timm (1854–1855) +• Carl Bergmann (1855–1856, 1858–1859, 1865–1876) +• Theodore Eisfeld (1856–1858) / Carl Bergmann & Theodore Eisfeld (1859–1865) +• [a=Leopold Damrosch] (1876–1877) +• [a=Theodore Thomas (4)] (1877–1878, 1879–1891) +• [a=Adolf Neuendorff] (1878–1879) +• [a=Anton Seidl] (1891–1898) +• [a=Emil Paur] (1898–1902) +• [a=Walter Damrosch] (1902–1903) +• [a=Vasily Ilyich Safonov] (1906–1909) +• [a=Gustav Mahler] (1909–1911) +• [a=Josef Stránský] (1911–1923) +• [a=Willem Mengelberg] (1922–1930) + +[b]As [a948528] [/b] +• [a=Arturo Toscanini] (1928–1936) +• [a=Sir John Barbirolli] (1936–1941) +• [a=Artur Rodziński] (1943–1947) +• [a=Bruno Walter] (music advisor, 1947–1949) +• [a=Leopold Stokowski] (co-principal conductor, 1949–1950) +• [a=Dimitri Mitropoulos] (1949–1958) + +[b]As [a327356][/b] +• [a=Leonard Bernstein] (1958–1969) [named Laureate Conductor in 1969] +• [a=George Szell] (music advisor, 1969–1970) +• [a=Pierre Boulez] (1971–1977) +• [a=Zubin Mehta] (1978–1991) +• [a=Kurt Masur] (1991–2002) [named Music Director Emeritus in 2002] +• [a=Lorin Maazel] (2002–2009) +• [a=Alan Gilbert (2)] (2009–2017) +• [a=Jaap van Zweden] (2018–2024) +• [a=Gustavo Dudamel] (designate, effective 2026) + +The orchestra was founded in 1842 by local musicians and originally called the Philharmonic Society of New York. In 1909, to ensure the financial stability of the Philharmonic, the orchestra's organization was changed from a musician-operated cooperative to a corporate management structure. In 1921 the Philharmonic merged with New York's National Symphony Orchestra (no relation to the present Washington, D.C. [a=National Symphony Orchestra]). In 1928 the New York Philharmonic's merged with the [a=New York Symphony Orchestra] Society. In 1957 the name of the orchestra was changed to its current name: "The New York Philharmonic Orchestra." In 1962, the orchestra moved from [l=Carnegie Hall] to its current home at [url=https://www.discogs.com/label/320098-Philharmonic-Hall-New-York]Philharmonic Hall[/url], subsequently known as [l=Avery Fisher Hall] from 1973-2015, and now named [url=https://www.discogs.com/label/1491048-David-Geffen-Hall-Lincoln-Center]David Geffen Hall[/url]. + +The last concert as [a948528] (P-SONY) was on May 12, 1957 +The first concert as [a327356] (NYP) was on October 12, 1957, coinciding with Leonard Bernstein becoming conductor. +The legal entity behind the orchestra is called [l1158747]. Needs Votehttps://en.wikipedia.org/wiki/New_York_Philharmonichttps://www.nyphil.org/https://www.sonyclassical.com/artists/artist-details/new-york-philharmonichttps://www.bach-cantatas.com/Bio/NYPO.htmhttps://www.imdb.com/name/nm1702757/https://www.youtube.com/channel/UCXurQhbWuJW7FatrU_y88BQhttps://www.x.com/nyphilhttps://www.facebook.com/nyphilharmonic/https://www.instagram.com/nyphilharmonic/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103388/New_York_PhilharmonicArtists From The New York PhilharmonicColumbia Symphony OrchestraDas Philharmonische Symphonieorchester New YorkDas Philharmonische Symphonieorchesteri New YorkDie New Yorker PhilharmonikerFIlarmonica De Nueva YorkFilarmonica De New YorkFilarmonica De Nueva YorkFilarmonica Di New YorkFilarmonica de Nueva YorkFilarmónica De New YorkFilarmónica De Nueva YorkFilarmónica de Nueva YorkFilarmônica De Nova YorkFilarmônica de N.Y.Filharmònica Nova YorkGustav MahlerHet New York Philharmonisch OrkestL'Orchestre Philharmonique De New YorkL'Orchestre Philharmonique De New-YorkLa Filarmonica De Nueva YorkMem. Of N.Y. Phil.Member Of The New York PhilharmonicMembers Of New York PhilharmonicMembers Of New York Philharmonic OrchestraMembers Of The New York PhilharmonicMembers of the New York PhilharmonicN. Y. PhilN. Y. Phil.N. Y. PhilharmonicN. Y. Philharmonic OrchestraN.Y. Phil.N.Y. PhilharmonicN.Y. Philharmonic OrchestraNY PhilharmonicNY Philharmonic OrchestraNYPNYPONew YorkNew York PONew York PhilNew York Phil.New York PhilarmonicNew York Philhannonic OrchestraNew York Philharmonic OrchestraNew York Philharmonic Symphony OrchestraNew York Philharmonic-Symphony OrchestraNew York PhilharmonicOrchestraNew York PhilharmonicsNew York PhilharmonieNew York PhilharmonikerNew York-i Filharmonikus ZenekarNew York-i FilharmonikusokNew Yorker PhilharmonicNew Yorker PhilharmonieNew Yorker PhilharmonikerNew Yorker PhilharmonikernNew Yorker PhilharmonikerneNew Yorker Philharmonisches OrchesterNew Yorkin FilharmonikotNew-York PhilharmonicNew-York Philharmonic OrchestraNew-York Philharmonic Symphony OrchestraNewYorker PhilharmonikerNewyorkská FilharmonieNewyorská FilharmonieNewyorský Filhamonický OrchestrNjujorška FilharmonijaOrch. Filarmonica Di New YorkOrchestra FilarmonicaOrchestra Filarmonica Di New YorkOrchestre Philhamonique de New-YorkOrchestre Philharmonique De New YorkOrchestre Philharmonique De New-YorkOrchestre Philharmonique de New YorkOrchestre philharmonique de New YorkOrkiestra Filharmonii NowojorskiejOrq. Filarmónica De Nueva YorkOrquesta Filarmonica De New YorkOrquesta Filarmonica De Nova IorqueOrquesta Filarmonica De Nueva YorkOrquesta Filarmonica Di Nueva YorkOrquesta Filarmonica de Nueva YorkOrquesta Filarmónica De Nueva YorkOrquesta Filarmónica de Nueva YorkOrquestra Filarmónica De Nova IorqueOrquestra Filarmónica De Nova YorqueOrquestra Filarmônica De Nova IorqueOrquestra Filarmônica De Nova YorkPhilharmonicPhilharmonic Orchestra New YorkPhilharmonic Symphony OrchestraPhilharmonic-Symphony Orch. Of New YorkPhilharmonic-Symphony OrchestraPhilharmonic-Symphony Orchestra Of New YorkPhilharmonic-Symphony Orchestra of New York (New York Philharmonic)Philharmonisches Orchester New YorkPrincipal Brass Of The New York PhilharmonicSamuel BarberSchola CantorumThe N. Y. PhilharmonicThe N. Y. Philharmonic Orch.The NYPThe New York OrchestraThe New York Phil.The New York PhilarmonicThe New York PhilharmonicThe New York Philharmonic OrchestraThe New York Philharmonic Symphony OrchestraΦιλαρμονική Νέας ΥόρκηςЊујоршка ФилхармонијаНью-Йоркская ФилармонияНью-Йоркский Симфонический ОркестрНью-Йоркский Филармонический ОркестрОркестр Нью-Йоркской Филармонииהתזמורת הפילהרמונית של ניו יורקニューヨーク・フィルのメンバーニューヨーク・フィルハーモニックニューヨーク・フィルハーモニーニューヨーク・フィルハーモニー交響楽団ニューヨーク・フィルハーモニック紐約愛樂樂團纽约爱乐乐团Philharmonic-Symphony Orchestra Of New YorkDavid NadienGene OrloffManuel ZeglerSandra ParkSharon YamadaRobert RinehartMaurice PeressLeonard BernsteinEnrico DiceccoSanford AllenGlenn DicterowBrooks TillotsonMyung Hi KimAvron ColemanHarry ZaratzianAnthony SophosGabriel BanatMyor RosenMaxwell ZeugnerSherry SylarStephen FreemanCarlos PiantiniFiona SimonElizabeth DysonSoo Hyun KwonDawn HannayAlfio MicciNathan GoldsteinMaria KitsopoulosAlain LombardSol GreitzerJoseph AndererGilad KarniWendy SutterBob de PasqualeJoseph SingerGary LevinsonLisa KimNancy Allen (2)Hae Young HamRebecca YoungLeopold StokowskiKenneth GordonCarol WebbStanley DruckerWalter RosenbergerMorris LangKim LaskowskiLeonard HindellTim CobbAlan StepanskySarah ChangErik RalskeLaszlo VargaJames ChambersRafael DruianWarren DeckJohn Ware (3)Raymond SabinskyPaul ClementRodney FriendJon DeakThomas StacySidney HarthJerome RothDan Reed (2)Qiang TuVivek KamathEileen MoonArlen FastJudy LeclairAlfred WallensteinPhilip Smith (3)Julius BakerJerry GrossmanNathan StutchDaniel DruckmanGerard SchwarzAlfred BreuningJonathan FeldmanJerome AshbyRenée SiebertJames MarkeyLeon RudinJohn WummerEugene BeckerLorin BernsohnEmanuel BoderHarold GombergJoseph PereiraWilliam BlossomBasil VendryesSandra ChurchEric BartlettJacob KrachmalnickJohn AmansAlbert GoltzerEdwin BarkerMarc GoldbergRuth NegriLeon BarzinFrederick ZimmermannEric HuebnerJoseph AlessiTheodore CellaWilliam LincerMark NuccioPhilip MyersAnna RabinovaLorne MunroeAmy ZolotoHarriet WingreenNancy DonarumaCarl SternEngelbert BrennerWilliam VacchianoElden BaileySaul GoodmanToby SaksR. Allen SpanjerMishel PiastroYulia Ziskel-DeninzonJohn CanarinaHarry GlantzHarold GoltzerPaige BrookRob BottiSheryl StaplesBernard RobbinsDuoming BaSatoshi Okamoto (2)Mindy KaufmanMark SchmoocklerHoward Wall (2)Irene BreslawKen MirkinLeonard Davis (3)William KincaidGerald ApplemanDorian RenceMarc GinsbergPeter KenoteRandall ButlerValentin HirsuMichael BurgioMarilyn DubowDonald HarwoodMatitiahu BraunVincent PenzarellaAvram LavinWalter BottiGino SambucoThomas V. SmithDavid FinlaysonOscar WeiznerKerry McDermottEvangeline BenedettiMichael Gilbert (3)Yoko TakebeOscar RavinaHai-Ye NiMartin Eshelman (2)Donald WhyteVladimir TsypinJudith Nelson (2)Newton MansfieldOrin O'BrienChristopher S. LambL. William KuyperEugene LevinsonKatherine GreeneJoseph Robinson (2)Jacques MargoliesIgor GefterCarter BreyLew NortonCharles RexDavid Carroll (4)David J. GrossmanMichele SaxonHanna LachertRoland KohloffKarin Brown (3)Barry LehrArthur SchullerNathan PragerGordon PulisMichel NazziPaul NeubauerThe Strings Of The New York PhilharmonicHerbert J. HarrisJeanne BaxtresserAnthony McGillThad MarciniakLawrence TarlowLouis J. PatalanoCarl R. SchieblerPeter SimenauerSteve Freeman (4)Joseph SchusterRobert LangevinJim Ross (4)Alana VegterAlfred BrainKuan Cheng LuHyunju LeeQuan GeWei YuPhillip KaplanRu-Pei YehLeelanee SterrettArnold LangGodfrey LayefskyJohn Corigliano (2)Lewis Van HaneyFrederick William HeimFrederick VogelgesangAdolph WeissQuinto MaganiniWilliam NowinskiThomas LibertiBernard Altmann (2)Kyle Turner (4)David RosensweigLionel PartyRémi Nakauchi PelletierHenry DiCeccoYoobin SonMilton PrinzNitzan HarozJames WiltRudolph SimsSarah BullenStanley HoffmanWilliam NamenPaolo Michele BordignonMartin OrmandyHung-Wei HuangAllen OstranderRobert Sullivan (5)James Smith (46)Leon TemersonKent TritleAlexei GonzalesJoseph BernsteinMarkus RhotenCarlo RaviolaRobert Morris (11)Qianqian LiGrace ShryockNathan VickeryPascual FortezaMichelle KimBlake HinsonEdward ErwinSimeon BellisonRobert BrennandDimitry MarkevitchWilliam RheinGeorge CurranLeah FergusonChristopher Martin (14)Richard Deane (2)Alan BaerMatthew MuckeyCynthia PhelpsJohn PerkelPatrick JeeBernardo AltmannJoseph VielandMei-Ching HuangSumire KudoNancy McRaeFora BaltacigilDasol JeongNa SunSarah Pratt (2)Rion WentworthLiam BurkeRobert GladstoneBruno LabateZeyu Victor LiArmand NeveuxJoseph De Angelis (2)Benjamin SchlossbergJohn Schaeffer (4)Mario PolisiLeonard SchallerFrank RuggieriAsher RichmanGeorge FeherNaoum DingerBert BialJohn CarabellaLouis Ricci (2)Ranier De IntinisHoward KereseyHoward ZizzaFrancis NelsonPeter Regan (4)Michael de StefanoEdward HermanJosef Novotny (2)David Kates (2)Henry NigrineLarry Newland (2)Ralph MendelsonRobert WeinrebeSelig PosnerWilliam CarboniBjoern AndreassonCarlo RenzulliFrank GullinoGeorge RabinJesse CeciJoachim FishbergLeopold BuschLeopold RybbLouis CarliniLouis FishzohnMax Weiner (2)Mordecai DayanMorris BorodkinMorris KreiselmanWilliam DembinskyStephanie JeongIsaac TrapkusRoger NyeAlison FierstRyan Roberts (12)Kyle ZernaEthan BensdorfCong WuAndi ZhangHannah ChoiJin Suk YuJoo Young OhKyung Ji MinMarie SchwalbachSu Hyun ParkRichard Simon (6)Frank Huang (4)James V. CandidoJudith GinsbergMembers Of The New York PhilharmonicJulian Gonzalez (4)Anton PolezhayevAllan Schiller (2) + +327420René SüssRené SüßHouse producer.CorrectDJ ReneR. SüßR.SüßRene SubRene SuessRene SüssRene SüßRené SuessRené SüßStarfireGhettoblastaSun-DaeDeep CityRene et ManuelTwilight CrewDubgroove + +327451Øyvind FossheimNorwegian violinist, born 1969 in Bærum, Norway.CorrectOyvind FosheimOyvind FossheimOslo Filharmoniske Orkester + +327515Joe GuyAmerican jazz trumpeter. + +Born : September 29, 1920 in Birmingham, Alabama. +Died : November 10, 1961 in Birmingham, Alabama. +Needs Votehttps://en.wikipedia.org/wiki/Joe_Guy_(musician)https://adp.library.ucsb.edu/names/106976https://adp.library.ucsb.edu/names/319421GuyJ. GuyJoey GuyLucky Millinder And His OrchestraCootie Williams And His OrchestraColeman Hawkins And His OrchestraColeman Hawkins Big BandBig Sid Catlett's BandJATP All StarsJam Session (At Minton's - May 8, 1947) + +327516Nick FentonJazz bassist, working at Minton's PlayhouseNeeds VoteNicholas "Nick" FentonNick FintonLucky Millinder And His OrchestraLester Young And His BandJam Session (At Minton's - May 8, 1947)Jam Session (12) + +327539Thurman GreenTrombonistNeeds VoteT. GreenThurmam GreenThurman A GreenThurman A. GreenThurmon GreenThurmond GreenGerald Wilson OrchestraHorace Tapscott QuintetThe Gene Harris All Star Big BandThe Clayton-Hamilton Jazz OrchestraLouie Bellson Big BandGerald Wilson Orchestra of The 80'sBuddy Childers Big BandTeddy Edwards Brasstring EnsembleGerald Wilson Orchestra of The 90'sHorace Tapscott OctetDonald Dean & CompanyThurman Green Trio + +327540David DukeDavid A. DukeHorn player.Needs Votehttps://www.imdb.com/name/nm3445432/D. DukeDave Allen DukeDave DuckDave DukeDave DukesDavid A DukeDavid A. DukeDavid Alan DukeDavid Allan DukeDavid Allen DukeDavid DukesDavis Allan DukeDuke DavidDuke David AllanDuke, DavidNeil Norman And His Cosmic OrchestraGerald Wilson OrchestraThe NPG OrchestraHenry Mancini And His OrchestraThe Monterey Jazz Festival OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraThe Clayton-Hamilton Jazz OrchestraThe Horn Club Of Los Angeles + +327545John Stephens (2)John Daniel StephensAmerican jazz saxophonist, band leader and composer from Los Angeles. +He has worked with many major names in the US jazz scene including Ella Fitzgerald, Marla Gibbs, Benny Carter, Lena Horne, Gerald Wilson, Buddy Colette, Dizzy Gillespie and Stevie Wonder. +Needs Votehttps://www.facebook.com/JazzzyblueLovehttps://www.reverbnation.com/johnstephensJ. StephensJohn D. StephensJohn Daniel StephensJohn StephansJohn StephenJohn StevensStephensHome Boy And The C.O.L.Johnny Otis And His OrchestraGerald Wilson Orchestra of The 90'sThe Buddy Collette Big Band + +327625Jackie MillsAmerican jazz drummer, musical director and record company executive credited with production. +Born : March 11, 1922 in Brooklyn (New York City), New York. +Died : March 22, 2010 in Beaumont, California. + +Jackie worked with : Charlie Barnet, Teddy Powell, Dizzy Gillespie, Boyd Raeburn, Benny Goodman, among others. +For a decade on and off, starting in 1949, he was the drummer with the Harry James Orchestra in addition to working in the studios. Since the early 1960s, Mills -- who recorded with Dodo Marmarosa, Red Norvo, Gerry Wiggins, Jazz at the Philharmonic, Goodman, James and others -- has primarily been a record company executive, working as musical director for the [l261446] and [l37319] labels but largely retiring from active playing. At one time or another, he also ran his own companies, such as [l372807], publishers [l936876] and [l452289]. [a3241688] also appears on some releases.Needs Votehttp://www.allmusic.com/artist/jackie-mills-mn0000781759/biographyhttps://books.google.fr/books?id=6QgEAAAAMBAJ&pg=PA4&lpg=PA4&dq=russ+turner+jazz&source=bl&ots=XrW0gX0dAt&sig=ACfU3U0V-rrdDQ_YakCfeiYSU-CUlK6dsQ&hl=fr&sa=X&ved=2ahUKEwjUitjz34LnAhUKJBoKHTGNDSMQ6AEwEXoECAoQAQ#v=onepage&q=russ%20turner%20jazz&f=falsehttps://www.namm.org/library/oral-history/jackie-millshttps://adp.library.ucsb.edu/names/331771J. MillsJack MillsJacki MillsMillsДж. МиллзДж. Миллсジャッキー・ミルスTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraJack Costanzo And His OrchestraTeddy Powell And His OrchestraBoyd Raeburn And His OrchestraThe Just Jazz All StarsThe Gerald Wiggins TrioDodo Marmarosa TrioManny Klein's All StarsWoody Herman's Four ChipsSi Zentner & His Dance BandJackie Mills QuintetRed Norvo's NineThe Keynoters (3)Babe Russin QuartetBabe Russin QuintetBoyd Raeburn All-Stars + +327730Mac DavisMorris Mac DavisUS country and pop singer / songwriter and actor born January 21, 1942 in Lubbock, Texas. Died September 29, 2020 in Nashville, Tennessee. + +He was responsible for one of the biggest hits of [a=Elvis Presley], "In The Ghetto", (although he wrote that under the pseudonym [i]Scott Davis[/i], using the given name of his son during a short timespan to avoid confusion with songwriter [a313469]) and "A Little Less Conversation". He was a prolific writer of songs for [a=Dolly Parton], [a=Kenny Rogers] and [a=Bobby Goldsboro], amongst others. + +He graduated from Lubbock High School in Texas and attended Emory University and Georgia State College. During this period, he formed his own rock band and performed on the Atlanta night club circuit while cutting a few singles which included "Honey Love" (1963) under the Vee-Jay label with who be became a regional manager. Davis made a name for himself in the industry, initially as a writer of several songs recorded by Elvis Presley, among them "A Little Less Conversation" (1968, along with Billy Strange) "In the Ghetto" (1969) and "Memories" (1969, also with Billy Strange), prior to going on to a successful career as a solo artist. After signing a contract with the Columbia label, he earned a gold record with "Baby, Don't Get Hooked On Me" (1972, which achieved a number one placing on the charts) and had further Top 20 hits with "One Hell of a Woman" (1974), "Stop and Smell the Roses" (1974) and "Rock N' Roll (I Gave You the Best Years of My Life)" (1974). He hosted his own television series "The Mac Davis Show" (1974 to 1976) and appeared in several films among them "North Dallas Forty" (1979), as well as other TV programs. He was honored with a star on Hollywood's Walk of Fame in 1998 for his work as a recording artist and in 2006, he was inducted into the Songwriter's Hall of Fame. He died from heart related issues. + +Inducted into the Nashville Songwriters Hall of Fame in 2000 and into the Songwriters Hall of Fame in 2006. Needs Votehttp://en.wikipedia.org/wiki/Mac_Davishttps://www.songhall.org/profile/Mac_Davishttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=82864&subid=1http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=82865&subid=3https://nashvillesongwritersfoundation.com/Site/inductee?entry_id=1495https://adp.library.ucsb.edu/names/311131DavidDaviesDavisDavis MacDavis Mac ScottDavis, MacM DavisM. "Scott" DavisM. DavidM. DaviesM. DavisM. Davis-ScottM. DawiesM. S. DavisM.DavisM.S. DavisMacMac "Scott" DavisMac 'Scott' DavisMac DavidMac DaviesMac Scott DavisMacDavidMacDavisMack "Scott" DavisMack DavisMao DavisMarc DavisMark DavisMc DavisMcDavisRoger DavisS. DavisScot "Mac" DavisScott "Mac" DavisScott 'Mac' DavisScott / Mac DavisScott DavisScott E./Mac DaviesScott Mac DavisМ. ДэвисScott Davis (5)Zots + +327751Larry SantosLawrence E. SantosAmerican pop singer, songwriter and pianist, known as "America's smooth pop crooner." Father of [a=Jade Scott Santos] and [a=Laura Santos]. Founder of [l=Overture Records]. + +Larry Santos (born 2 June 1941, Oneonta, NY) is an American pop singer-songwriter. He is best known for his Grammy-winning hits "Don't Let the Music Stop," "We Can't Hide it Anymore" and “You Got Me Where You Want Me”. He also co-wrote several pop standards, such as "Take The Bows," "It Takes Two," "Get To Know Your Feelings," "Where You Are" and "Don't Take The Easy Way Out." + +From 1976 to 1980 Santos starred in the television show Hot Fudge, a syndicated children's puppet show broadcast from Detroit, Michigan. Santos scored the program's theme music and other songs, and appeared regularly as a live character actor. Needs Votehttp://www.last.fm/music/Larry+Santoshttp://www.jambow.com/larry-santoshttp://www.allmusic.com/artist/larry-santos-mn0000113132/discographyhttp://www.soulfulkindamusic.net/lsantos.htmhttp://en.wikipedia.org/wiki/Larry_Santoshttps://larrysantos.bandcamp.com/L SantosL. SantosL.SantosLarryLawrence SantosSantosThe MadisonsThe Tones (5)Glenn DenverLarry And The LegendsThe Electric Fuzz + +327833Irving AshbyIrving C. AshbyAmerican jazz guitarist +Born 29 December 1920 in Somerville, Massachusetts. +Died 22 April 1987 in Perris, California. + +During the rock & roll era, Irving Ashby was a prolific session guitarist in and around Los Angeles, where he worked as a freelance musician. But like so many session players on R&R records, he was basically a jazzman, who had to adapt to the Big Beat in order to pay the bills. Irving Ashby was in demand primarily for his solid rhythm playing, but he was also a very adept soloist. Ashby began playing guitar at age nine. In 1940 he joined [a=Lionel Hampton]'s band and continued playing with Hampton for two years. Ashby is the guitarist on Hampton's influential "Flying Home" (1942). In 1947 he joined [a=Nat King Cole]'s Trio, replacing [a=Oscar Moore]. He joined [a=Oscar Peterson]'s trio in 1952 and was a prominent member of [a=Norman Granz]'s Jazz at the Philharmonic at that time. He also led his own sextet, with which he recorded for [l=United Artists Records], and was active as a teacher, publishing a guitar instruction book in the process. In the mid and late 50's Ashby was more often found in the recording studios, both as a guitarist and an upright bass player. For the [l=Imperial] label he played on many instrumental recordings, first with [a=The Ernie Freeman Combo], later with drummer [a=Sandy Nelson]. Ashby also recorded instrumentals under his own name. By the 60's Ashby was also working outside the music field, but continued playing from time to time, sometimes brought back into the limelight by various guitarists whom he had strongly influenced, such as [a=Howard Roberts]. +Needs Votehttps://en.wikipedia.org/wiki/Irving_Ashbyhttps://www.allmusic.com/artist/irving-ashby-mn0000773143/biographyhttps://www.imdb.com/name/nm5990205/https://adp.library.ucsb.edu/names/106396AshbyI. AshbyI.AshbyIrv AshbyIrvin AshbyIrving C. AshbyJesse AshbyИрвинг ЭшбиLionel Hampton And His OrchestraThe Nat King Cole TrioIllinois Jacquet And His OrchestraLester Young And His BandThe Just Jazz All StarsThe André Previn TrioJimmy Mundy OrchestraJubilee All StarsJuan Tizol & His OrchestraThe GlaciersIrving Ashby & His ComboLady Will Carr And Her TrioJATP All StarsIrving Ashby Sextette + +328060Mike StollerMichael StollerAmerican songwriter and record producer, born March 13, 1933 in Belle Harbor, Queens, New York City , New York, USA. +He's been married to harpist [a253346] since 1970. +Credited on piano on many early [l=Atlantic] recordings, he is widely known for the [a=Leiber & Stoller] songwriting/production collaboration.Needs Votehttp://www.leiberstoller.com/https://www.imdb.com/name/nm0005469/?ref_=nmbio_sp_1HollerJ. StollerJerry Leiber - Mike StollerJerry StollerM StollerM. FtollerM. StolerM. StollerM. StrolerM. StrollerM.StollerMStollerMichael StollerMide StollerMike StallerMike SteierMike StolMike StolleMike StrollerN. StollerN.StollerPhillipS. MichaelSipplerStalleaStallerSteallaStellerStillerStolerStollarStolleeStollerStoller - MikeStoller M.Stoller MikeStoller, MStoller, MikeStopllerStrollerStroller, MikeStullerstollerマイク・ストーラーLeiber & StollerThe Leiber-Stoller Big Band + +328062Jerry LeiberJerome LeiberAmerican prolific songwriter and record producer. +Born April 25, 1933 in Baltimore, MA - died August 22, 2011 in Los Angeles, CA. +Together with composer [a328060] songwriting were record producing partners. They found initial successes as the writers of such crossover hit songs as "[i]Hound Dog[/i]" and "[i]Kansas City[/i]". +Father of [a=jed leiber] and [a=Oliver Leiber]. +Needs Votehttp://www.leiberstoller.com/https://www.wikidata.org/wiki/Q10539994D. LeiberDž. LeibersF. LeiberG. LeiberGerry LeiberJ LeiberJ LieberJ. JerryJ. LIeberJ. LeableJ. LeibenJ. LeiberJ. LeibnerJ. LeiborJ. LeiderJ. LelberJ. LieberJ. LoiborJ. LuberJ.LeiberJ.LieberJed LeiberJerome "Jerry" LeiberJerome LeiberJerry CeiberJerry LeibeJerry Leiber-Mike StollerJerry LeiborJerry LeiterJerry LejberJerry LieberJerry LiederJohn LeiberL. JerryL. LeiberLeaberLeberLeiberLeiber - JerryLeiber / SpectorLeiber CherryLeiber JLeiber J.Leiber JerryLeiber, JLeiber, JerryLeiber,JLeiber-JerryLeiber. JerryLeibertLeibetLeiborLeiderLeiebrLeiferLeilierLeitherLeiverLelberLiberLieberMike LeiberTeiberTreiberY. LeiberДж. ЛейберЛейберЛиберジェリー・リーバーGaby RodgersLeiber & StollerThe Leiber-Stoller Big Band + +328082Al KillianAlbert Killian.American jazz trumpeter +Born October 15, 1916 in Birmingham, Alabama, died September 05, 1950 in Los Angeles, California (murdered) + +He worked with Teddy Hill & Don Redman, Count Basie, Lionel Hampton, Charlie Barnet, Billy Eckstine, Duke Ellington. + + +Needs Votehttp://en.wikipedia.org/wiki/Al_Killianhttps://www.allmusic.com/artist/al-killian-mn0000932553/biographyhttps://jdisc.columbia.edu/person/al-killianhttp://www.worldcat.org/identities/lccn-no92030221/https://worddisk.com/wiki/Al_Killian/https://www.imdb.com/name/nm8199249/https://adp.library.ucsb.edu/names/325236"Al" KillianA. KillianA.l KillianAl KilianAl KilliamAlbert KillianAlex KilianAll KilianKillianCount Basie OrchestraDuke Ellington And His OrchestraLionel Hampton And His OrchestraBilly Eckstine And His OrchestraCharlie Barnet And His OrchestraDeLuxe All Star BandThe Al Killian QuintetThe Tom Talbert Jazz OrchestraAl Killian's Jazz GroupAl Killian And His All StarsThe Duke's TrumpetsAl Killian And His OrchestraAl Killian SextetSonny Criss Sextet + +328083Billy HadnottWilliam K. HadnottAmerican jazz bassist. +Born : November 30, 1914 in Port Arthur, Texas. +Died : December 01, 1999 in Los Angeles, California. + +Billy Hadnott worked with Buddy Rich, Charlie Parker, Louis Jordan, Ella Fitzgerald, Ray Charles, Red Norvo, Roy Milton, Lowell Fulson, T-Bone Walker and many others.Needs Votehttps://de.wikipedia.org/wiki/Billy_Hadnotthttp://worldcat.org/identities/lccn-no92029289/https://www.allmusic.com/artist/william-k-billy-hadnott-mn0000082706/creditshttps://adp.library.ucsb.edu/names/319528B. HadnottBill HadnottBillie HadnottBilly HadnettBilly HadnotHadnottW. HadnottWilliam HadnottWilliam K. "Billy" HadnottWilliam K. HadnottWilliam K. HandoutWm. HadnottWm. K. HadnottColeman Hawkins QuartetNellie Lutcher And Her RhythmLouis Jordan And His Tympany FiveLester Young QuartetIllinois Jacquet And His All StarsJulia Lee & Her Boy FriendsPreston Love And His OrchestraGladys Bentley QuintetteJubilee All StarsHarlan Leonard And His RocketsThe Howlett Smith TrioRed Norvo's NineBilly Hadnott And His OrchestraLowell Fulson's ComboEddie Beal And His SextetMarl Young's Band + +328195Paul ShafferPaul Allen Wood ShafferPianist, composer, bandleader and actor, born 28 November 1949 in Thunder Bay, Ontario. +Best known as [a956832]'s longtime bandleader, Shaffer has been active as a musical director and pianist since 1972. From 1975 to 1980 he worked on the [i]Saturday Night Live[/i] TV show as a keyboardist and composer. During this time he often collaborated with the show's stars on their side projects, like with [a=Gilda Radner] and [a=Blues Brothers]. + +Paul Shaffer has been David Letterman's musical director and sidekick for more than 30 years. + +He began his career in 1972 as musical director of the Toronto production of "Godspell." He played piano in "The Magic Show" on Broadway in 1974, then spent the next five years with the original "Saturday Night Live," where he played keyboards, composed special musical material and, in 1980, became a featured performer. + +In 1977, he took a brief break from the show to star in the CBS comedy series "A Year at the Top," produced by Norman Lear and Don Kirshner. After his return to "Saturday Night Live," he collabo­rated with Gilda Radner on the songs for her Broadway show, in which he also appeared. He served as musical director for the Blues Brothers – John Belushi and Dan Aykroyd – for their double-platinum album and national tour. He has also guest starred in the television series “Ed,” “The Sopranos” and “Law & Order: Criminal Intent.” + +In addition to recording his own albums, Coast to Coast (1989) and The World's Most Dangerous Party (1993), Shaffer recorded with such diverse artists as Diana Ross, Yoko Ono and Robert Plant's Honeydrippers. He composed the LATE SHOW theme song and, with Paul Jabara, wrote the #1 '80s dance hit "It's Raining Men," performed by the Weather Girls and re-recorded by Geri Halliwell for the "Bridget Jones's Diary" soundtrack, topping the British pop charts in 2001. In 2002, he received his first GRAMMY® Award, Best Country Instrumental, for the Earl Scruggs and Friends album. He co-produced an avant-garde jazz album for his mentor, [a=Tisziji Muñoz], released on Dreyfus Records. + +His feature film roles include Artie Fufkin in Rob Reiner's "This Is Spinal Tap." He also appeared in the Mike Nichols-directed "Gilda Live," the Bill Murray movie "Scrooged," and with John Travolta in "Look Who's Talking Too." He is heard as the voice of Hermes in Disney's animated feature "Hercules" and the television series based on the film. He produced the gold-selling soundtrack for and appeared in "Blues Brothers 2000," and composed original songs for the movie "Strangers with Candy." + +Shaffer has served as musical director and producer for the Rock and Roll Hall of Fame induction ceremony at the Waldorf-Astoria since its inception in 1986. He led the band for the "We Are the World" finale of Live Aid. Shaffer hosted CBS's 1994 New Year's Eve special from New York's Times Square and was musical director of the closing concert at the 1996 Olympic Games. He appeared with the Blues Brothers at the 1996 Super Bowl halftime show and was musical director of the 1999 Concert of the Century at the White House, featuring Eric Clapton, B. B. King, Gloria Estefan, 'N Sync and others, to aid music programs in public schools. He was the musical director of Paul McCartney's "Concert for New York" and appeared with Faith Hill on the "America: A Tribute to Heroes" telethon, both of which honored and raised money for victims of the Sept. 11, 2001 terrorist attacks. + +“Paul Shaffer’s This Day in Rock,” is a daily interstitial feature nationally syndicated by Envision Radio. His bestselling memoir, published in October 2009 by Doubleday/Flying Dolphin, a division of Random House, is entitled We’ll Be Here For The Rest of Our Lives. + +Shaffer holds two honorary doctorate degrees, was recently inducted into the National Black Sports and Entertainment Hall of Fame and was awarded a star on Canada’s Walk of Fame. In 2008, Shaffer received the Order of Canada, Canada’s highest civilian honor. Currently, he is the National Spokesperson for Epilepsy Canada. He lives in the New York area with his wife and two children.Needs Votehttp://thepaulshaffer.com/https://twitter.com/paulshafferhttps://www.instagram.com/thepaulshaffer/https://www.facebook.com/paulshafferofficial/http://en.wikipedia.org/wiki/Paul_Shafferhttp://www.imdb.com/name/nm0787322/https://www.youtube.com/channel/UCVbUlmIOznZAck3HM-4HavwMC For Folk/pop CategoriesP ShafferP. A. W. ShafferP. SchaefferP. SchafferP. ShafferP. ShaflerP. ShasserP.ShafferPaulPaul "Mister Premise" ShafferPaul "The Shiv" ShafferPaul 'The Shiv' ShafferPaul A. W. ShafferPaul A.W. SchafferPaul A.W. ShafferPaul A.W.ShafferPaul Allen Wood ShafferPaul SchaeferPaul SchaefferPaul SchaferPaul SchafferPaul SchatterPaul ShaefferPaul ShaferPaul Shaffer ‘Shabd Bodhi’Paul ShaffnerPaul ShatterS ShafferSchafferSchaffer, P.ShaferShafferShaffer, P.Shaffer, PaulShatterポール・シェーファーGil Evans And His OrchestraThe HoneydrippersNorthern Lights (6)The Blues Brothers BandThe Saturday Night Live BandThe World's Most Dangerous BandGary Burton & FriendsPaul Shaffer & The Party Boys Of Rock 'N' RollThe CBS OrchestraThe Hall Of Fame OrchestraSaturday Night Live CastHell's Kitchen Funk OrchestraThe Slicers + +328245RIAS TanzorchesterBerlin based ensemble, founded November 1948 by [a328257], later leaders were [a552909], [a359504] and [a59283]. +Existed until the early 1990s, then the broadcasters RIAS (Rundfunk im Amerikanischen Sektor) & Stimme der DDR were merged into [a1013566], the ensemble became the [a250391]. +Needs VoteBrandenburg Big BandDance OrchestraDas RIAS TanzorchesterDas RIAS-Orch. W. MüllerDas RIAS-OrchesterDas RIAS-Orchester Und EnsembleDas RIAS-TanzorchesterDas RIAS-Tanzorchester, BerlinDas Rias-Tanz-OrchesterDas Rias-TanzorchesterDie Bläser + Streicher Des RIAS-TanzorchestersL'Orchestra RIASL'Orchestre De Danse RIAS De BerlinL'orchestre De Danse RIAS De BerlinLa Orquesta De Baile RIAS De BerlínLa Rias Dance OrchestraLe RIAS Orchestre De DanseMitglieder Des RIAS-Tanzorchesters BerlinMitglieder des RIAS-Tanzorchester BerlinOrchesterOrchestra Dave HildingerOrchestre RiasOrchestre du RIASOrquestra RIASOrquestra de Dança da RiasRIAS BerlinRIAS Dance OrchestraRIAS Dance Orchestra, BerlinRIAS DanseorkesterRIAS DansorkesterRIAS OrchesterRIAS OrchestraRIAS Orchestra with ChoirRIAS Orchestre De DanseRIAS StreichorchesterRIAS Tanz-OrchesterRIAS Tanzorchester BerlinRIAS Tanzorchester, BerlinRIAS Tanzorchester, Leitung Werner MüllerRIAS- UnterhaltungsorchesterRIAS-Dance-OrchestraRIAS-DanseorkesterRIAS-Danseorkester, BerlinRIAS-Dansork.RIAS-OrchesterRIAS-OrquestaRIAS-Tanz-OrchesterRIAS-Tanz-Orchester BerlinRIAS-TanzorchesterRIAS-Tanzorchester BerlinRIAS-Tanzorchester, BerlinRIAS-UnterhaltungsorchesterRIAS-danseorkester, BerlinRTORias Dance Orch.Rias L’ Orchestre De DanseRias OrchestraRias Orchestra, TheRias OrquestaRias TanzorchesterRias Tanzorchester Werner MüllerRias Tanzorchester, BerlinRias-Orchester Und EnsembleRias-StreichorchesterRias-TanzorchesterRias-Tanzorchester BerlinRias-Tanzorchester, BerlinRias-UnterhaltungsorchesterRüdiger Piesker Und Sein RIAS-Tanz-OrchesterSolisten Des RIAS-TanzorchestersSolisten Des Rias-TanzorchestersThe Orchestra Of RIAS BerlinThe R.I.A.S. Dance OrchestraThe RIAS Dance OrchestraThe RIAS OrchestraThe RTO-OrchestraThe Rias Dance OrchestraThe Rias OrchestraWerner Müller And The RIAS Dance OrchestraWerner Müller M. D. RIAS-TanzorchesterWerner Müller Mit Dem RIAS-TanzorchesterWerner Müller Mit Dem RIAS-Tanzorchester, BerlinWerner Müller Und Das RIAS-TanzorchesterWerner Müller Und Das RIAS-Tanzorchester, BerlinWerner Müller Und Das Rias-TanzorchesterWerner Müllers DansorkesterErich WernerHelmut BrandtHeinz KambergWerner WindlerWerner MüllerKai RautenbergOlle HolmqvistDave HildingerWolfgang KöhlerManfred StoppacherAddy FeuersteinRüdiger PieskerHeinz SchönbergerErhard WenigHarry SampSolisten des Rias - Tanzorchesters + +328257Werner MüllerWerner MüllerGerman composer, arranger and orchestra leader +Born: August 2, 1920 in Berlin, Germany. +Died: December 28, 1998 in Cologne, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Werner_M%C3%BCller_(musician)https://www.br-klassik.de/programm/sendungen-a-z/mittagsmusik/mittagsmusik-werner-mueller-100.htmlhttps://adp.library.ucsb.edu/names/332936Dr. Werner MüllerM. MullerMuellerMullerMüllerMüller WernerW MullerW. MillerW. MuellerW. MullerW. MüllerWernerWerner MuellerWerner MullerМюлерヴェルナー・ミュラーRicardo SantosHeinz BuchholzRené UllmerRIAS TanzorchesterWerner Müller Und Sein OrchesterKurt Widmann Und Sein OrchesterRicardo Santos Und Sein TanzorchesterWerner Müller Studio-BandRicardo Santos And His OrchestraRicardo Santos und sein Tango-OrchesterRicardo Santos SingersWerner Müller Und Sein ChorWerner Müller Big Band + +328270Michael JaryMaximilian Michael Andreas JarczykGerman composer and "Schlagerkönig" in the 1930/40/50s, born 24 September 1906 in Laurahütte, German Empire (today Siemianowice Śląskie, Poland) and died 12 July 1988 in Munich, Germany. Brother of [a=Herbert Jarczyk]. + +As a writer of movie-scores he wrote for Stars like [a=Zarah Leander], [a=Rosita Serrano], [a=Evelyn Künneke] and others. +Needs Votehttp://www.michaeljary.dehttp://en.wikipedia.org/wiki/Michael_Jaryhttps://adp.library.ucsb.edu/names/107264Franco, JaryHaryJariJarryJaryJary, M.Jary, MichaelJary/MichaelJayM JaryM. JariM. JarryM. JaryM. jaryM.JaryMich. JarryMich. JaryMichael GaryMichael JarryMichaël JaryjaryМ. ЯриJacky LeedsRBT OrchesterOrchester Michael JaryMichael Jary Und Sein FilmorchesterWiener TanzorchesterMichael Jary Mit Seinen SolistenMichael Jary Mit Seinem Kammer-Tanzorchester + +328319Johnny SmithJohn Henry Smith, Jr.American jazz guitarist and songwriter. Composer of "Walk, Don't Run". +Born June 25, 1922 in Birmingham, AL +Died June 11, 2013 in Colorado Springs, CONeeds Votehttp://classicjazzguitar.com/artists/artists_page.jsp?artist=29http://en.wikipedia.org/wiki/Johnny_Smithhttps://adp.library.ucsb.edu/names/103075H.J SmithJ SmithJ. H. Smith Jr.J. S.J. SmithJ. Smith, Jr.J.H. Smith, JrJ.H. Smith, Jr.J.S.J.SmithJimmy SmithJohn H. R. SmithJohn H. Smith JrJohn H. Smith Jr.John H. Smith, Jr.John Henry SmithJohn Henry Smith JrJohn SmithJohn Smith Jr.Johnny H. Smith Jr.Johnny SmithsJonnesJonny SmithSir John GasserSir Jonathan GasserSmithSmith JrSmith Jr.Smith, JThe Johnny Smith Guitar除墨洲Sir Jonathan GasserBenny Goodman SextetBenny Goodman And His OrchestraJohnny Smith QuintetJohnny Smith QuartetJohnny Smith Trio + +328320Allen HanlonAmerican Swing jazz guitarist, teacher and author. +Born January 10, 1919, in Long Island, New York, USA. +Died April 6, 1986, in New York, New York, USA. +Hanlon began playing violin at the age of eight but switched to the guitar at fourteen, being greatly influenced by George Van Eps. Hanlon's first real professional job was with Benny Goodman in 1937 followed quickly after by three years with Red Norvo's band. Later he joined Claude Thornhill and Adrian Rollini, with others in-between. +After recording and touring with multiple bands and groups early in his career, and following the war, Hanlon became a staple in New York studios, and on radio stations and TV programs as a studio musician. He was featured on recording sessions with singers such as Tony Bennett, Perry Como, Vic Damone and Bobby Vinton. Hanlon played on two Louis Armstrong tracks, one of them the hit "Wonderful World" in 1967 (and the B side "The Sunshine of Love"). +Hanlon also began teaching guitar after the war and wrote many guitar instruction booklets including "Kreutzer for Guitar (Pick Method)", as well as multiple Basic Guitar series books and other scales and chords booklets. +In 1970 Hanlon started a jazz guitar duo with Sal Salvador and they gave many concerts in the New York area.Needs Votehttps://www.allmusic.com/artist/allen-hanlon-mn0001762860/biography?1687920962211https://www.bachmansmusic.com/wp-content/uploads/2013/05/Alan-Hanlon-Kreutzer-Etudes.pdfAl HanlonAlan HanionAlan HanlonAlan HantonAllan HanlonHanlonBenny Goodman SextetClaude Thornhill And His OrchestraRed Norvo And His OrchestraAdrian Rollini TrioGeorge Barnes QuartetJoe Harnell TrioBuddy Weed SeptetEdgar Sampson And His OrchestraThe Ragtime Quintet + +328322Charlie Smith (2)Charles Smith.American jazz drummer and percussionist +Played with : Dizzy Gillespie, Charlie Parker, Hank Jones, Ella Fitzgerald, Oscar Pettiford, Piano Red (blues), Billy Taylor and others. + +Born April 15, 1927 in New York City, New York, died January 15, 1966 in New Haven, Connecticut +Needs Votehttps://adp.library.ucsb.edu/names/107251https://en.wikipedia.org/wiki/Charlie_Smith_(drummer)C. SmithCh. SmithCharles SmithSmithBilly Taylor TrioBenny Goodman SextetErroll Garner TrioSlim Gaillard And His Southern Fried OrchestraThe Mitchell-Ruff TrioThe BirdlandersThe Oscar Pettiford QuartetThe International Jazz GroupMachito's Rhythm SectionHank D'Amico QuartetMat Mathews QuintetRay Brown Quintet + +328323Lou SteinLouis SteinAmerican jazz pianist, born 22 April 1922 in Philadelphia, Pennsylvania; died 11 December 2002 in Litchfield, Connecticut, USA.Needs Votehttp://lousteinjazz.com/https://en.wikipedia.org/wiki/Lou_Steinhttps://adp.library.ucsb.edu/names/345245L. SteinL. SternLou Stein's MusicLouie SteinLouis SteinSteinЛ. СтейнЛу СтейнThe Lou Stein TrioBenny Goodman SextetCootie Williams And His OrchestraJoe Newman SextetCharlie Parker With StringsLawson-Haggart Jazz BandAll Star Alumni OrchestraGeorgie Auld's All-StarsBobby Byrne And His OrchestraJoe Venuti QuartetBill Harris And His OrchestraThe Billy Byers-Joe Newman SextetRay McKinley QuartetLou Stein And His Bar-Room BoysPeanuts Hucko And His OrchestraAllstars (11)Lou Stein And His OctetTony Mottola And His All-StarsEdgar Sampson And His OrchestraThe Lou Stein SextetThe Lou Stein TenLou Stein Jazz BandJam Session At The RiversideBilly Byers Sextet + +328324Bob Carter (2)Robert KahakalauAmerican jazz bassist and arranger, born 11 February 1922 in New Haven, Connecticut, USA. +Brother of [a3489541] + +Do NOT confuse with rhythm & blues bassist [a=Bob Carter (9)]Needs Votehttp://en.wikipedia.org/wiki/Bob_Carter_%28musician%29http://www.allmusic.com/artist/p62821/biographyhttps://adp.library.ucsb.edu/names/201623B. CarterB.CarterBob "Pops" KahakalauBob CarterBob Carter/"Pops" KahakalauBob KahaklauBob KahakalauThe Will Bradley-Johnny Guarnieri BandBenny Goodman SextetBill Smith QuintetBuddy De Franco SextetThe Bobby Hackett QuartetRed Norvo SextetPapa Oscars DixielandersCharles Ventura QuartetBob Harrington QuartetThe Bob Alexander QuintetAllen Eager QuartetBen Homer & His OrchestraDerek Humble Quartet + +328519Gray SargentAmerican jazz guitarist, based in Boston, USA. Born June 10, 1953 in Attleboro, MA, USANeeds VoteGray SargeantSargentIllinois Jacquet And His All StarsDave McKenna QuartetThe Concord All StarsThe Gray Sargent TrioThe Alex Elin QuartetThe Joel Press QuartetTony Bennett Quartet + +328591Ronnie StephensonBritish jazz drummer, born 26 January 1937, Sunderland, County Durham, England, died 8 August 2002, Dundee, Scotland +Needs Votehttp://www.jazzprofessional.com/memorial/Ronnie%20Stephenson.htmR. StephensonRon StephensonRonnie StevensonRonny StephensonStephensonBerry Lipman & His OrchestraPaul Gonsalves QuartetThe Jack Nathan OrchestraBenny Goodman SextetThe NDR Big BandThe London Jazz Chamber GroupKurt Edelhagen Big BandThe Galactic Light OrchestraEugen Cicero TrioBerlin Big BandRemy Filipovitch TrioThe EmCee FiveWes Montgomery All-StarsSture Nordin SextetTime Travellers (5)Eugen Cicero & His Friends + +328592Jackie DouganScottish drummer, born 1930, Greenock, Scotland, died 27 January 1973, New South Wales, AustraliaNeeds VoteJack DouganJackie DooganThe Stan Tracey QuartetThe Wes Montgomery QuartetZoot Sims QuartetThe Dick Morrissey QuartetThe Joe Harriott Double QuintetThe Tony Coe QuintetThe Ronnie Scott/Jimmy Deuchar QuintetFrank Barber Percussion EnsembleTommy Whittle QuintetKenny Baker's DozenTommy Whittle QuartetHumphrey Lyttelton Big Band + +328746Nick FatoolAlbert “Nick” FatoolAmerican jazz drummer +Born January 2, 1915 in Milbury, Massachusetts, died September 26, 2000 in Los Angeles, California + +In 1943, he moved to Los Angeles and took work as a session musician, recording profusely. A big band and dixieland drummer, he estimated once that he had played on between 200-300 albums (and that was in 1987, years before he was done recording). He worked with the orchestras of Benny Goodman, Artie Shaw, Les Brown and Harry James. Also recorded with Louis Armstrong, Bing Crosby, Bob Crosby and Tommy Dorsey and worked on and off in Hollywood.Needs Votehttps://en.wikipedia.org/wiki/Nick_Fatoolhttps://www.allmusic.com/artist/nick-fatool-mn0000397252/biographyhttps://www.angelfire.com/mac/keepitlive/drummers/Fatool/fatool.htmhttps://www.imdb.com/name/nm0268889/https://jazzriffing.blogspot.com/2013/03/big-noise-from-millbury.htmlhttps://syncopatedtimes.com/nick-fatool-the-perfect-jazz-percussionist/https://adp.library.ucsb.edu/names/107333FatoolFrank HarrisonN. FatoolNick FattolNick FattoolNick FotoolHarry James And His OrchestraBenny Goodman SextetLouis Armstrong And His OrchestraPete Kelly And His Big SevenWingy Manone & His OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraErroll Garner TrioClaude Thornhill And His OrchestraEddie Miller And His OrchestraBarney Bigard And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraPaul Weston And His OrchestraGordon Jenkins And His OrchestraThe Buddy Cole QuartetJohn Scott Trotter And His OrchestraThe World's Greatest JazzbandGeorge Paxton & His OrchestraGlen Gray & The Casa Loma OrchestraJerry Gray And His OrchestraThe Wonderland Jazz BandThe Jack Lesberg SextetThe Rampart Street ParadersMembers Of The Benny Goodman OrchestraJuan Tizol & His OrchestraKings Of DixielandZep Meissner Dixieland BandNick Fatool's Jazz BandThe Capitol JazzmenCorky Corcoran & His OrchestraDom Frontiere SextetClyde Hurley & His OrchestraMerle Koch And Michele's Silver Stope Jazz BandThe Sunset All StarsCharlie Lavere's Chicago LoopersThe Stan Wrightsman QuartetArnold Ross QuintetChuck Thomas And His Dixieland BandGramercy SixManny Klein's Dixieland BandHerbie Haymer's OrchestraJess Stacy and His TrioWillie Smith And His OrchestraWillie Smith And His FriendsThe Dave Barbour QuartetMahlon Clark SextetteNick Fatool's QuartetDick Taylor Quartet featuring J.D. King & Nick Fatool + +328747Dickie WellsWilliam WellsAmerican jazz trombonist +Born June 10, 1907 in Centerville, Tennessee +Died November 12, 1985 in New York, NY.Needs Votehttps://en.wikipedia.org/wiki/Dicky_Wellshttps://www.britannica.com/biography/Dicky-Wellshttps://www.commandertrombone.com/jztrbcap/dickie-wells/https://adp.library.ucsb.edu/names/104826D. WellesD. WellsD.WellsDick WellsDicke WellsDickey WellsDickie WellesDickie Wells All StarsDicky WellsDikie WellsW. WellsWellsWilliam "Dicky" WellsWilliam WellsCount Basie OrchestraKansas City SixBillie Holiday And Her OrchestraCount Basie And The Kansas City SevenFletcher Henderson And His OrchestraBuck Clayton And His OrchestraCount Basie BandWingy Manone & His OrchestraSpike Hughes And His Negro OrchestraHorace Henderson And His OrchestraThe Kansas City SevenBuck Clayton With His All-StarsThe Buddy Tate Celebrity Club OrchestraBuster Harding's OrchestraDickie Wells And His OrchestraHenry "Red" Allen And His OrchestraTeddy Hill OrchestraBasie's Bad BoysHenry Allen-Coleman Hawkins And Their OrchestraBuck Clayton's Big EightBill Coleman And His Swing StarsJimmy Rushing And His OrchestraPee Wee Russell RhythmakersAndy Gibson And His OrchestraDickie Wells' Big SevenEmmett Berry SextetTeddy Hill And His NBC OrchestraThe Fletcher Henderson All StarsThe Jimmy Rushing All StarsEarl "Fatha" Hines And His New SoundsThe Hines VarietiesPaul Quinichette SeptetDickie Wells' Blue SevenHawkins Orchestra + +328844Jerzy MaksymiukJerzy Jan MaksymiukJerzy Maksymiuk (born April 9, 1936, Grodno, Poland ) is a Polish orchestra conductor. +Maksymiuk studied violin, piano, conducting and composition at the Warsaw Conservatory.Maksymiuk was Chief Conductor of the BBC Scottish Symphony Orchestra (BBC SSO), with which he appeared each season at the Henry Wood Promenade Concerts in London. Together, they have made many overseas tours. He is now the BBC SSO's Conductor Laureate. In Britain, Maksymiuk has also conducted the BBC National Orchestra of Wales, the BBC Philharmonic, the City of Birmingham Symphony Orchestra, the London Symphony Orchestra, London Philharmonic Orchestra and The Philharmonia. In addition he has conducted many orchestras in Europe, the USA and Japan, Australia and Israel.Needs Votehttp://jerzymaksymiuk.pl/https://culture.pl/pl/tworca/jerzy-maksymiukhttps://pl.wikipedia.org/wiki/Jerzy_MaksymiukJ. MaksymiukJerzego MaksymiukaJerzy MaksimiukJerzy MaksumiukJerzy MaksymniukJerzy MakysmiukMaksymiukЕжи Максымюк + +329897Sandy SiegelsteinSanford SiegelsteinFrench horn player +Born 10 April 1919, died 14 January 2013 +CorrectSandford SiegelsteinSandy SiegestleinSandy SieglesteinSanford 'Sandy' SiegelsteinSanford SiegelsteinMiles Davis And His OrchestraClaude Thornhill And His OrchestraThe Miles Davis Nonet + +329898Mike ZwerinMichael ZwerinBorn: 18th May 1930 Queens, New York City, New York, USA +Died: 2nd April 2010 Paris, France. +American trombonist, trumpeter, journalist and author. Through the unavailability of regular trombonist [a=Kai Winding], Zwerin got his break to play with [a=Miles Davis]' "Birth Of The Cool" at the Royal Roost Club on Broadway when he was only 18, playing also in the rehearsal in the run-up to the recording of the seminal album. He has been writing about jazz, pop and world music since 1965 for the Village Voice and the International Herald Tribune, and, since 2005, for the wire service Bloomberg News. He has also written 6 books, including “Swing Under The Nazis,” and “The Parisian Jazz Chronicles.” +Needs Votehttp://www.mikezwerin.com/http://en.wikipedia.org/wiki/Mike_ZwerinMichael ZweerinMichael ZwerinMike ZwirinZwerinマイケル・ゼヴェリンThe George Gruntz Concert Jazz BandThe Celestrial Communication OrchestraBlues IncorporatedZIP (8)Not Much NoiseMingus Big BandMiles Davis & His Tuba BandThe Robert F. Pozar EnsembleThe Sextet Of Orchestra U.S.A.Orchestra U.S.A.Mike Zwerin Jazz Trio + +330062Teddy BucknerJohn Edward BucknerAmerican dixieland jazz trumpeter +Born 16 July 1909 in Sherman, Texas +Died 22 September 1994 in Los Angeles, California + +For the saxophonist please use [a981419] + +At the age of 15, he worked with bandleaders Buddy Garcia and "Big Six" Reeves, later he played trumpet in ensembles led by [a=Sonny Clay], [a=Curtis Mosby], Sylvester Scott, Speed Webb, and Edith Turnham. In the 30s and 40s he appeared in a number of motion pictures. Before, during and after the Second World War he was a member of [a=Benny Carter And His Orchestra]. 1949 to 54 he worked intensive with [a=Kid Ory]. In 1954 he formed his own small dixieland band and played with clarinetist [a=Edmond Hall], drummer [a=J.C. Heard], clarinetist [a=Albert Nicholas], pianist [a=Sammy Price], trombonist [a=Trummy Young] and ohers. +Needs Votehttps://en.wikipedia.org/wiki/Teddy_Bucknerhttps://www.fellers.se/Kid/Buckner,_Teddy.htmlhttps://adp.library.ucsb.edu/names/306059BrucknerBucknerEdward "Teddy" BucknerJ. BrucknerJ. BruknerJohn "Ted" BucknerJohn "Teddy" BucknerJohn (Ted) BucknerJohn E. BucknerJohn Ed BucknerJohn Edward (Teddy) BucknerT. BucknerTed BucknerTeddie BucknerTeddy "4 Port" BucknerTeddy BrucknerTeddy Buckner & his New Orleans BandTeddy Buckner and His BandLionel Hampton And His OrchestraTeddy Buckner And His OrchestraKid Ory And His Creole Jazz BandBenny Carter And His OrchestraThe Teddy Buckner BandTeddy Buckner And His Dixieland BandChuck Thomas & His All StarsTeddy Buckner And The All StarsJoe Darensbourg And His "Flat Out" FiveTeddy Buckner And His Trad. Jazz Band + +330110André OrvikNorwegian violinist, born 1967 in Mo i Rana, Norway.Needs VoteAndre OhrvikAndre OrvikAndrè OrvikAndré OhrvikAndré OrviOslo Filharmoniske OrkesterOslo Session String Quartet + +330113Stig Ove OseNorwegian viola player, born 1961 in Ålesund, Norway.Needs VoteStein Ove OseStig OseStig Ove OreStig-Ove OseOslo Filharmoniske OrkesterAnthill (7) + +330138Chuck ConnorsCharles Raymond Connors.American jazz trombonist (bass trombone). + + +Born : August 18, 1930 in Maysville, Kentucky. +Died : December 11 , 1994 in Los Angeles, California*. +Needs VoteCCrsCharles "Chuck" ConnorsCharles ConnorsCharles R. ConnorsChuck ConnerChuck ConnersChuck ConnorConnorsCuchk ConnorsЧак КоннорсЧарлз КоннорсDuke Ellington And His OrchestraClark Terry Big BandDuke Ellington All Star Road Band + +330152Gildo MahonesAmerican jazz pianist, born June 29, 1929, New York City, died April 27, 2018 at the age of 88Needs Votehttp://en.wikipedia.org/wiki/Gildo_MahonesG. MahonesG.MahonesGildo MahoneysGuido MahonesGuildo MahonesMahonesMohonesThe Gildo Mahones QuartetThe Ike Isaacs TrioThe Jazz ModesLester Young And His OrchestraThe Frank Foster QuintetThe Rouse-Watkins ComboThe Gildo Mahones TrioWes Montgomery All-StarsThe Curtis Peagler 4 + +330252Julia DibleyJulia DibleyViolinist from New Zealand, who won one of top prizes at the 1999 New Zealand Post Young Musicians Awards.Needs VoteBergen Filharmoniske Orkester + +330345Jay MiglioriGetululio Salvatore Migliori Jazz saxophonist, born as Getululio Salvatore Migliori 14 Nov 1930 in Erie, Pennsylvania; died 2 Sept 2001 in California. Played on more than 4,000 commercial recordings including Charlie Parker, Frank Sinatra, Dean Martin, Miles Davis, Neil Diamond, Manhattan Transfer, The Monkees, Celine Dion, Glen Campbell, The Beach Boys, Ray Charles, Stan Kenton, Terry Gibbs, Louie Bellson, Maynard Ferguson, Tito Puente, Si Zentner and the Grammy-winning group Supersax (1972-1984).Needs Votehttps://www.facebook.com/jaymigliorijazzJ. MiglioriJay MaglioriJay MigleoriJay MigliorJay MiglioreJay MiglioriaJay MigloireMiglioriWoody Herman And His OrchestraSupersaxThe Abnuceals Emuukha Electric OrchestraThe Knights (2)The VettesWoody Herman And The Fourth HerdSam Trippe And His OrchestraThe Catalinas (5)Roy Wiegand Jazz OrchestraThe Chiz Harris QuartetSteve Spiegl Big BandHi-Hat All-StarsChiz Harris Sextet + +330618Kenny YoungShalom GiskanAmerican songwriter, musician and producer. +Born: 14th April 1941 Mea-Shearim, Jerusalem, Mandatory Palestine +Died: 14th April 2020 Banbury, Oxfordshire, England + +His most famous songs were "Under the Boardwalk," co-written with [a=Arthur Resnick] and recorded by [a=The Drifters] in 1964 and many other artists and "Ai No Corrida" co-written with [a=Chaz Jankel], most notably recorded by [a=Quincy Jones]. He had success in 1960s with top 10 songs for [a=Ronnie Dove], [a=Herman's Hermits], [a=Reparata and the Delrons], [a=Clodagh Rodgers] among many others. + +In 1970 Young moved to England. In 1974 he founded [a=Fox (3)], a band featuring [a=Susan Traynor] as lead singer under the stage name [a=Noosha Fox]. The band broke up in 1977. Young's other bands were [a=Yellow Dog], [a=Gentlemen Without Weapons], [a208564], and [a=Rhythms del Mundo]. + +In 1990 he co-founded and organized the charity Earth Love Fund to aid environmental projects around the world. With fellow musicians, he began the label Elf Records Ltd., part of the Earth Love Fund charity. In 2006 he founded Artists' Project Earth (APE). +Needs Votehttp://en.wikipedia.org/wiki/Kenny_Younghttps://spectropop.com/KennyYoung/https://www.carlinmusic.com/writers/page/writerId/1635https://www.ascap.com/repertory#/ace/writer/33409407/YOUNG%20KENNY%20https://repertoire.bmi.com/Search/Catalog?num=eMqkCTxM9Iw%252fXza2fGMpVg%253d%253d&cae=oyEVMZnVJ4VCrlf8hIf0Qw%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Just%20a%20taste%22%2C%22Sub_Search_Text%22%3A%22Young%22%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3A%22Writer%2FComposer%22%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dJames YoungJoungK YoungK. G. YoungK. JungK. YangK. YongK. YoungK.G. YoungK.YoungKay YoungKen YoungKenneth YoungKenny JoungKenny YongeP. YoungR. YoungV. YoungYoungYoung K. FredYountYungקני יאנגI ShinkoSgt. Smiley RaggsFace On Mars39 VybesGentlemen Without WeaponsFox (3)Spirit Of The ForestRhythms Del MundoYellow DogSan Francisco EarthquakeBlue YogurtMoonshine (14)Kenneth Young & The English MuffinsThe Seagulls (3)The Squirrels (5) + +330692Ulysses LivingstonUS jazz guitarist from the swing era, born January 1912, in Bristol, Tennessee.Needs Votehttps://en.wikipedia.org/wiki/Ulysses_Livingstonhttps://www.allmusic.com/artist/ulysses-livingston-mn0001752120https://rateyourmusic.com/artist/ulysses-livingstonhttps://adp.library.ucsb.edu/names/327686LivingstonU. LivingstonUlysses Gwinn LivingstonUlysses LivingstoneUlysses LivinstonThe Spirits Of RhythmIllinois Jacquet And His OrchestraBenny Carter And His OrchestraIllinois Jacquet And His All StarsElla Fitzgerald And Her Famous OrchestraThe Harlem Blues SerenadersVarsity SevenThe Pete Johnson TrioFrankie Newton & His Cafe Society OrchestraRex Stewart's Big EightJoe Lutcher's Jump BandJack McVea QuintetWilbert Baranco QuartetBenny Carter And His All StarsColeman Hawkins And His Hot Seven + +330693Rodney RichardsonJazz bassist, born 21 August 1917 in New Orleans, Louisiana, died 29 October 2005 in Modesto, California. + +Rodney Richardson is a brother of [a=James "Beans" Richardson] and cousin of [a=Leontyne Price]. +Needs VoteR. RichardsonRichardsonRod RichardsonРодни РичардсонCount Basie OrchestraCount Basie And The Kansas City SevenRoy Eldridge And His OrchestraThe Kansas City SevenThe Lester Young SextetLester Young And His BandLester Young QuintetCount Basie And His Kansas City Five + +330694Milt RaskinMilton William Raskin.American jazz pianist, conductor and arranger. +Born January 27, 1916, Boston, MA - died October 16, 1977, Los Angeles, CA. +He played in many big bands including: [a258689] (1938-'39 & 1941-'42), [a650687] (1939-'40), [a299945] (1940), [a229639] (1942-'44), [a269597], [a33589] (1946), [a239399], [a269603] (1947), [a8284] (1951), [a300036] (1952), [a37729] (1959), [a212786] (1963 & 1965) and others. +Needs Votehttp://www.spaceagepop.com/raskin.htmhttps://en.wikipedia.org/wiki/Milt_RaskinM. RaskinMRMilton RasinMilton RaskinMilton Raskin (MR)Milton W. RaskinRadkinRaksinRaskinRuskinРазкинРазскинTommy Dorsey And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraTeddy Powell And His OrchestraPaul Weston And His OrchestraRalph Flanagan And His OrchestraJimmy Mundy OrchestraAlvino Rey And His OrchestraJATP All StarsThe Jack Marshall SextetteMilt Raskin OrchestraThe Milt Raskin Group + +330696Jack McVeaJohn Vivian McVeaAmerican saxophonist, born 5 November 1914 in Los Angeles, California, died 27 December 2000 in Los Angeles, USA.Needs Votehttps://en.wikipedia.org/wiki/Jack_McVeahttps://www.allmusic.com/artist/jack-mcvea-mn0000099546/biographyhttps://adp.library.ucsb.edu/names/206644J. Mc VeaJ. McVeaJ. McVeqJ.McVeaJack 'McVoute' McVeaJack MackJack Mc VeaJack Mc WeaJack Mc. VeaMc VeaMcVeaMcViaMcWeaJack Mack (2)Slim Gaillard And His OrchestraLionel Hampton And His OrchestraJack McVea's All StarsLionel Hampton And His SeptetJack McVea & His BandGene Phillips & His Rhythm AcesJack McVea OrchestraJack McVea QuintetJack McVea And His Door OpenersHarry Carney's All StarsSlim Gaillard And His All Stars + +330697Tommy TurkThomas Eugene "Tommy" TurkAmerican jazz trombonist +Born 1927 in Johnstown, Pennsylvania, USA — died August 4, 1981 in Las Vegas, USANeeds Votehttps://en.wikipedia.org/wiki/Tommy_TurkT. TurkTurkТомми ТуркCharlie Parker And His OrchestraJATP All StarsTommy Turk And His Orchestra + +330698Bobby TuckerRobert Nathaniel TuckerAmerican pianist, arranger and accompanist, born January 8, 1923 in Morristown, N.J., died April 12, 2007. +Tucker is known for having been the musical director for two great jazz artists, Billie Holiday and Billy Eckstine. he only made one album under his own name, 1960's "Too Tough."Needs Votehttp://en.wikipedia.org/wiki/Bobby_Tuckerhttp://people-vs-drchilledair.blogspot.com/2008/05/bobby-tucker-rip.htmlhttps://adp.library.ucsb.edu/names/347924B.TuckerBob TuckerBobbie TuckerRobert TuckerTuckerCount Basie OrchestraBillie Holiday And Her OrchestraLionel Hampton And His OrchestraBob Haggart And His OrchestraPaul Quinichette And His OrchestraBobby Tucker And His TrioBobby Tucker And His OrchestraBobby Tucker TrioTiny Grimes Sextet + +330699Johnny Miller (2)Johnny Millerb : February 24, 1915 in Pasadena (USA) +d : July 19, 1988 in Los Angeles (USA) +Jazz bass player. +Needs Votehttps://www.imdb.com/name/nm0588656/http://worldcat.org/identities/lccn-no96035545/https://adp.library.ucsb.edu/index.php/mastertalent/detail/106886/Miller_JohnnyBob MillerJ. MillerJohn MillerJohnnie MillerJohnny MillesJohny MillerMillerBob Miller (22)The Nat King Cole TrioThe Just Jazz All StarsRay Charles Trio + +330701Buddy ColeEdwin LeMar ColeBuddy Cole was a jazz pianist, orchestra leader and organist. + +Born: December 15, 1916 in Irving, Illinois. +Died: November 05, 1964 in Hollywood, California. + +He played behind a number of pop singers, including [a=Rosemary Clooney], [a=Jill Corey], and [a=Four Lads], who recorded for [l=Columbia] Records. He is the organist on the Henry Mancini album, "Music from Mr. Lucky." + +Cole recorded for [l=Capitol Records] as both Buddy Cole and Eddie LeMar and His Orchestra, and for Warner Bros. and Alshire Productions as Buddy Cole. +Under the alias Eddie Grant (2) exist some recordings on [l=Capitol Records] from 1950. +Married and divorced to [a1812072]. Father of actress/singer [a4614126] and singer [a1865676].Needs Votehttps://en.wikipedia.org/wiki/Buddy_Cole_%28musician%29http://www.spaceagepop.com/cole.htmhttps://www.last.fm/music/Buddy+Colehttps://rocknroll-schallplatten.de/buddy-cole-eddie-grant-t49.htmlB. ColeBud ColeBuddy Cole And His GroupBuddy Cole And RhythmBuddy Cole Quartet en OrkestColeEdwin 'Buddy' ColeEdwin ColeEdwin L. "Buddy" ColeEdwin L. (Buddy) ColeEdwin L. ColeEdwin LeMar "Buddy" ColeThe Late Buddy ColeThe Late, Great Buddy ColeThe Swingin' Buddy Cole At The Hammond OrganEdwin Lemar ColeEddie Grant (2)Louis Armstrong And His OrchestraThe Buddy Cole TrioBuddy Cole And His OrchestraThe Buddy Cole QuartetJohn Scott Trotter And His OrchestraThe Four Of A KindBuddy Cole's Boogie Woogie SevenMahlon Clark SextetteHoyt Curtin Orchestra And Chorus + +330702Shorty SherockClarence Francis CherockShorty Sherock (born November 17, 1915, Minneapolis, Minnesota, USA - died February 19, 1980, Northridge, California, USA) was an American jazz trumpeter. + +Shorty played with many artists including [a736274], Dell Coon, [a357512] (1936), [a1089959], [a3634739], [a867074], [a766138], [a326803], [a299282] (1937-'39), [a527956] (1939-'40), [a258689] (1940-'41), [a229639], [a26383], [a270026], [a1402704], [a299945], [a1807616] and others.Needs Votehttps://en.wikipedia.org/wiki/Shorty_Sherockhttps://adp.library.ucsb.edu/names/343499"Shorty " Sherock"Shorty" SherockC.F. CherockClarence "Shorty" SherockClarence F. "Shorty" SherockClarence F. 'Shorty' SherockClarence SherockSherockShortyShorty CherockTommy Dorsey And His OrchestraGene Krupa And His OrchestraGlen Gray & The Casa Loma OrchestraShorty Sherock & His OrchestraThe Capitol JazzmenTutti's TrumpetsGramercy Six + +330703Tiny GrimesLloyd GrimesAmerican jazz (and R&B) guitarist. +Born: July 7, 1916 in Newport News, Virginia. +Died: March 4, 1989 in New York City, New York. +Began as a drummer and pianist before switching to four-string tenor guitar. Grimes performed with [a265634] (1943-44), [a33589], with his own groups (with [a75617] and [a721517]), and recorded with [a251769], [a258009], [a29964], [a257353] and others.Needs Votehttps://www.spontaneouslunacy.net/artists-tiny-grimes/https://www.allmusic.com/artist/tiny-grimes-mn0000504893https://www.imdb.com/name/nm5980381/https://adp.library.ucsb.edu/names/103671https://en.wikipedia.org/wiki/Tiny_Grimes"Tiny" GrimesGrimesGrymesL. GrimesL.T. GrimesLloyd "Tiny" GrimesLloyd 'Tiny' GrimesLloyd GrimesT. GeesT. GrimesT.GrimesTony GrimesTracy GrimesMetronome All StarsCozy Cole All StarsTiny Grimes QuintetThe Cats And The FiddleArt Tatum TrioThe Tiny Grimes SwingtetThe Ike Quebec Swing SevenThe Ike Quebec QuintetTiny Grimes And His Rocking HighlandersColeman Hawkins All StarsColeman Hawkins SeptetBuck Clayton's Big FourEarl Hines And His QuartetIke Quebec SwingtetThe Prestige Blues-SwingersDoc Bagby's OrchestraThe John Hardee SwingtetTiny Grimes And His OrchestraTiny Grimes And His BandArnett Cobb Tiny Grimes QuintetTiny Grimes SextetTiny Grimes Quartet + +330704Dave ColemanAmerican drummer who played with [a265635] & recorded with [a33589]. Died in 1989 of cancer (age of 65). Not to be confused with his son Dave Coleman Jr. + +For [b]songwriter[/b], see [a=Dave Coleman (3)]. +For[b] trance producer[/b], see [a=Dave Coleman (4)]. +For [b]bassist[/b], of [a=The Maple Trail], see [a=Dave Coleman (8)]. +For [b]cellist/multi-instrumentalist[/b], see [a=David Coleman (2)]. +For [b]engineer[/b], see [a=David Coleman (4)]. +For [b]visual artist[/b], see [a=David Coleman (5)]. +For [b]multi-instrumentalist[/b] of [a3661154], see [a=Dave Coleman (2)].Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/309106/Coleman_DaveColemanD. ColemanDave Coleman & FriendsDave ColmanDavid Coleman, Jr.Davis ColemanHarry James And His OrchestraTommy Duncan & His Western All StarsLeon McAuliffe & His Western Swing BandJATP All StarsWillie Smith And His Friends + +330705Tiny "Bam" BrownAmerican jazz bassist and jive vocalist Needs Vote"Tiny" BrownBam BrownBrownSam BrownSlam BrownT. BrownThomas "Bam" BrownThos. BrownTiny Bab BrownTiny Bam BrownTiny BrownW. BrownSlim Gaillard And His OrchestraThe Slim Gaillard TrioSlim Gaillard QuartetteSlim & BamSlim Gaillard And His BoogiereenersSlim Gaillard And His All Stars + +330706Corky CorcoranGene Patrick Corcoran.American jazz saxophonist (tenor) player. + +Born : July 28, 1924 in Tacoma, Washington State. +Died : October 03, 1979 in Tacoma, Washington State. +Needs Votehttps://adp.library.ucsb.edu/names/309730"Corky" CorcoranC. CorcoranCorcky CorcoranCorcoranCorcy CorcoranCorky CocoranCorky CorcorabnEugene 'Corky' CorcoranGen CorkoranGene "Corky" CorcoranGene "Corky" CorkoranGene CorcoranTommy Dorsey And His OrchestraHarry James And His OrchestraHelen Humes And Her All-StarsIke Carpenter And His OrchestraHarry James & His Music MakersLionel Hampton All StarsThe All Stars (7)Corky Corcoran & His OrchestraCorky Corcoran's CollegiatesLionel Hampton's Just Jazz All StarsCorky Corcoran Quintet + +330707Charlie DraytonCharlie DraytonTraditional jazz bassist active in the 30's, 40's & 50's. Noted for working with [a=Louis Jordan] & [a=Billie Holiday]. +Not to be confused with his drummer, bassist & producer grandson [a=Charley Drayton]. His son [a=Bernard Drayton] is a successful jingle and record producer. +Needs Votehttps://adp.library.ucsb.edu/names/312872C. DraytonCharles DraytonLouis Jordan And His Tympany FiveBenny Carter And His OrchestraBen Webster And His OrchestraJulia Lee & Her Boy FriendsPete Brown And His BandRussell Jacquet And His All StarsLouie Jordon's Elks Rendevouz BandThe Angels Of JumpBen And The Boys + +330758Jimmy GourleyJames Pasco Jr. Gourley.French jazz guitarist and composer. + +Born : June 09, 1926 in St. Louis, Missouri. +Died : December 07, 2008 in Villeneuve-Saint-Georges, France. +Needs VoteGourleyJ. GourleyJames GourleyJimmy CourleyJimmy GourlayLou Bennett Et Son QuintetteZoot Sims SextetLee Konitz QuintetClifford Brown SextetLester Young QuintetBob Brookmeyer QuintetHenri Renaud Et Son SextetteKenny Clarke TrioBill Smith QuintetHenri Renaud Et Son OrchestreRoy Haynes SextetJimmy Gourley QuartetThe Lou Bennett QuartetBuddy Banks Et Son QuartetGigi Gryce Clifford Brown SextetHenri Renaud QuintetPierre Spiers SextetteTrio Buddy BanksChristian Escoude OctetJimmy Gourley TrioHenri Renaud - Bobby Jaspar Quintet + +331401The RobinsThis Los Angeles vocal group were the forerunners of the Coasters. They began as the Four Bluebirds in 1947, then became the Robins. Ty Terrell, Billy Richards, Roy Richards, and Bobby Nunn were the original members, with Carl Gardner and Grady Chapman adding in 1954. In 1957, Gardner and Nunn departed to form the Coasters. The Robins had two R&B Top Ten hits. "If It's So Baby" was done with the Johnny Otis Band in 1950 for Savoy, while their best-known number, "Smokey Joe's Cafe", was recorded for the LA based SPARK label, as shown here in 1955. +Also compare to [a=The Robins (11)].Needs Votehttp://www.angelfire.com/mn/coasters/robins.htmlhttp://www.uncamarvy.com/Robins/robins.htmlhttps://en.wikipedia.org/wiki/The_RobinsBobby Nunn & The RobbinsBobby Nunn & The RobinsRobinsThe "Robbins"The RobbinsThe Robins (Coasters)Little Esther & The Blue NotesThe Nic NacsThe Buzzards (5)The Four BluebirdsMel Walker And The Blue NotesH.B. BarnumBobby SheenRoy RichardBobby Nunn (2)Mickey ChampionTy Terrell LeonardGrady ChapmanBilly Richard (2)Billy Richards (3) + +331715John Smith (6)John William SmithAmerican jazz guitarist and banjo player, born November 27, 1908 in Atlanta, GA. Died January 15 or October 15, 1994. +In Atlanta played banjo with [a=J. Neal Montgomery] in late 1920s. With [a=Teddy Hill] 1932-1939, with [a=Fats Waller] 1939-1940, then toured with [a=The Mills Brothers] until 1942. With [a=Cab Calloway] 1946-1948 and at intervals to 1951, with [a=Wilbur De Paris] 1958-1966. Retired from music, but resumed his career with [a=Panama Francis] from the late 1970s into the 1980s. +Needs VoteJ. SmithJames SmithJimmy SmithJoe SmithJohn SmithJohnny SmithDizzy Gillespie And His OrchestraFats Waller & His RhythmWilbur De Paris And His New New Orleans JazzFrankie Newton And His Uptown SerenadersTeddy Hill OrchestraTeddy Hill And His NBC OrchestraPanama Francis And The Savoy SultansCleo Gibson With Her Hot Three + +332029Bob WestRobert WestAmerican session bassist, songwriter, arranger, and producer based in Los Angeles. Performed on many Wrecking Crew related sessions, sessions for [l1723]/[l35444] and [l40383]/[l40542], and co-wrote the Jackson 5 song "[m=176435]". + +For the reggae songwriter who co-wrote 'Golden Locks', see [a3216077]. +For the soul songwriter ("You're So Fine") and label owner based in Detroit, active in the late 1950s and early 1960s, see [a491240]. +For the US country / rockabilly songwriter, see [a=Red West] +Needs Votehttps://rateyourmusic.com/artist/bobby_west_f1https://www.allmusic.com/artist/bobby-west-mn0001284330B WestB. WesB. WestB.BestB.WestBobby 'Wild Wild' WestBobby 'Wild, Wild' WestBobby 'Wild,Wild' WestBobby WestHurstWestJr. B. WestR. WestRobert WestSenator Bob WestWestGerald Wilson OrchestraThe Magic BandThe Ernie Watts EncounterThe Pan-Afrikan Peoples ArkestraMike Wofford SeptetLarry Bunker QuartetteSouth Central Avenue Municipal Blues Band + +332217Michael LarcoAmerican violistNeeds VoteMichael Angelo LarcoLos Angeles Philharmonic Orchestra + +332285Guy LafitteFrench jazz tenor saxophonist, born January 12, 1927 in St. Gaudens, France, died June 10, 1998 in Simorre, France. +He worked with Big Bill Broonzy (blues), Mezz Mezzrow, Bill Coleman, Dicky Wells, and Buck Clayton, and in his own groups, featuring many visiting American jazz stars, such as Lionel Hampton, Duke Ellington, Milt Buckner, Wallace Davenport, Arnett Cobb, and Wild Bill Davis. +Needs Votehttps://fr.wikipedia.org/wiki/Guy_LafitteG LafitteG. LafitteG. LafeitteG. LaffiteG. LaffitteG. LafiteG. LafitteG.D. LafitteG.LafitteGuy Dennis Fernand LafitteGuy LaffiteLa FiteLa FitteLa TifeLafitteLafitte Guy denis FernandMezz Mezzrow And His OrchestraJack Diéval Et Le J.A.C.E. All-StarsJean-Claude Pelletier Et Son OrchestreParis Jazz TrioGuy Lafitte Et Son OrchestreClaude Bolling Jazz All StarsBill Coleman And His Swing StarsGuy Lafitte QuintetSeptuor Jack DiévalEmmett Berry And His OrchestraGuy Lafitte Et Son QuartetteGuy Lafitte Jazz ComboBill Coleman And His SevenGuy Lafitte Et Ses Twist BoysJean-Pierre Sasson Et Son Orchestre + +332308George JenkinsAmerican jazz drummer from the swing-era, born November 19, 1911, died May 10, 1967 in San Francisco, California. + +Needs VoteG. JenkinsGeorge JohnsonJenkinsLionel Hampton And His OrchestraLionel Hampton And His SeptetLionel Hampton And His QuartetBen Webster SextetGeorge Jenkins And His OrchestraGeorge Jenkins And The Tune TwistersGeorge Jenkins And His All Stars + +332326Ace HarrisAsa Harris.American jazz pianist. +Born : April 01, 1910 in New York City, New York. +Died : June 11, 1964 in Chicago, Illinois. + +Ace worked with : “Billy Steward’s Serenaders” (1932), “Bill Mear’s Sunset Royal Serenaders” (1935-’39 led in this group from 1937), Hot Lips Page (1944), “Erskine Hawkins Orchestra” (1944-’47 and 1950-’51). +Not be confused with Johnny “Ace” Harris (1928-2000), a pianist for “The Ink Spots”. +Needs Votehttps://adp.library.ucsb.edu/names/106384A. HarrisAce Harris And ChorusAce HarryAsa A.HarrisAsa HarrisHarrisErskine Hawkins And His OrchestraHot Lips Page And His OrchestraAce Harris And OrchestraAce Harris And His QuartetAce Harris QuintetAce Harris And His Sunset Royal Orchestra + +332327Roosevelt SykesRoosevelt SykesAmerican blues singer and pianist, born January 31, 1906 in Elmar, Arkansas, died July 17, 1983 in New Orleans, Louisiana.Needs Votehttp://en.wikipedia.org/wiki/Roosevelt_Sykeshttps://adp.library.ucsb.edu/names/105974(Roosevelt Sykes)R SykesR. SykesR.SykesRoosevelt "The Honeydripper" SykesRoosevelt (Honeydripper) SykesRoosevelt (The Honeydripper) SykesRoosevelt Sykes & His PianoRoosevelt Sykes (The Honey Dripper)Roosevelt Sykes And His Honey Dripper QuartetRoosevelt Sykes And His PianoRoosevelt Sykes The Honey DripperRoosevelt, SykesRosevelt SykesS. SakesSkyesSykesSykes, RooseveltWillie KellyThe Honey DripperDobby BraggEasy Papa JohnsonSt. Louis JohnnyThe Blues Man (2)Joe 'Boogie' EvansR.S. BeyRoosevelt Sykes And His Original HoneydrippersRoosevelt Sykes TrioRoosevelt Sykes And His Honeydrippers + +332331Eddie MackMack EdmundsonEddie Mack (Mack Edmondson) was part of the Brooklyn blues scene in the late 40s and early 50s but his subsequent career is a mysteryNeeds VoteEddy MackEdmundsonMack EdmundsonPigmeat PetersonCootie Williams And His OrchestraEddie Mack And His Orchestra + +332336Morris LaneJazz tenor saxophonist +Born ca. 1920 +Died on May 30, 1967 in Gary, Indiana, USA +Needs Votehttps://www.allmusic.com/artist/morris-lane-mn0000965850LaneM. LaneMorris Lane And His Magic SaxophoneMorris Lane Tenor SaxsationLionel Hampton And His OrchestraEarl Hines And His OrchestraBe Bop BoysMary Lou Williams And Her OrchestraMorris Lane BandMorris Lane And His ComboMorris Lane And His OrchestraGil Fuller's Modernists + +332373Phil EverlyPhillip Jason EverlyPhil Everly (born January 19, 1939, Chicago, Illinois, USA - died January 3, 2014, Burbank, California, USA) was an American singer, songwriter and musician. He is perhaps best known as one half of the [a145071], a duo which he formed with his brother [a515987].Needs Votehttps://www.imdb.com/name/nm0263616/https://en.m.wikipedia.org/wiki/Phil_Everlyhttps://www.allmusic.com/artist/phil-everly-mn0000847960EverleyEverlyEverly PhilEverly,PF. EverlyP EverlyP. ErvelyP. EverlayP. EverleyP. EverlyP.EverlyPh. EverlyPh.EverlyPhilPhil EverleyPhil Everly BrotherPhil EveryPhil. EverlyPhile EverlyEllen CarrolEverly BrothersKeestone Family SingersBuddies Of The Crickets + +332376John LenehanBritish classical pianist and composer, born 1958.Needs Votehttp://www.johnlenehan.co.uk/https://www.imdb.com/name/nm1023398/John LenahanJohn LenehamLenehanジョン・レネハンThe Michael Nyman BandJoachim TrioThe Rossetti EnsembleLondon Soloists Ensemble (2) + +332377Simon HaramSimon HaramBritish saxophonist, and professor. Born in 1969 in Liverpool, England, UK. +He graduated from [l305416] in 1992. He was appointed Principal Saxophone of the [a=London Sinfonietta] in 1997. Member of [a=The Will Gregory Moog Ensemble] as EWI and keyboard player, and of the [b]Graham Fitkin Band[/b]. As a soloist, Simon Haram performed with a number of orchestras, including [a454293], [a271875], [a462220], [a415725], [a835546] and [a973597]. He was Professor of Saxophone at the Guildhall School of Music & Drama for over 10 years. Professor of Saxophone at the [l527847]. +Owner of the [l=Silent Age Sound] recording and post-production company.Needs Votehttps://simon0839.wixsite.com/websitehttps://www.facebook.com/simon.haramhttps://www.youtube.com/channel/UCMBTWfXi67lrsK5OQpMKTfAhttps://londonsinfonietta.org.uk/players/simon-haramhttps://fitkin.com/featured-artist-simon-haram/https://www.ram.ac.uk/people/simon-haramhttps://www.bbc.co.uk/programmes/profiles/4XJhfZwgVmS23Dsv8r6RzVy/simon-haramhttps://www.hkphil.org/artist/simon-haramhttps://sound-scotland.co.uk/site/2010/artists/HaramSimon.htmhttps://www.naxos.com/person/Simon_Haram/283.htmhttps://www.imdb.com/name/nm0361800/HaramSimon Harramサイモン・ハラームLondon Symphony OrchestraThe Millennia EnsembleLondon SinfoniettaPhilharmonia OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraThe Steve Martland BandThe London SaxophonicNyman Sax QuartetJohn Harle BandThe Will Gregory Moog Ensemble + +332450Jimmy Lewis (2)American jazz bassist, born 11 April 1918, Nashville, Tennessee, USA - died 2000, New York City, New York, USA. + +Both an upright bass and electric bass player, his recording credits include [a=Count Basie], [a=Grant Green], [a=Lou Donaldson], [a=Wilson Pickett], [a=Otis Redding], [a=Charles Kynard], [a=King Curtis] and many others. + +For this Jimmy Lewis' songwriting credits, he often published under [l283663] ("A Case Of Blues", "Black on Black" & "The Doll House").Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Lewis_(bassist)https://prabook.com/web/jimmy.lewis/2377636J. LewisJames LewisJim LewisJimmy BewisJimmy LewisJummy LewisLewisCount Basie OrchestraThe Horace Silver QuintetNoah Howard QuartetThe Noble KnightsCount Basie SextetCount Basie OctetMickey 'Guitar' Baker & His House RockersTapscott Simmons QuartetThe Al Casey Quartet + +332573Danny StilesAmerican jazz trumpeter and flugelhornist player; born October 14, 1932 in Evansville, Indiana, died December 29, 1997 in Orlando, Florida + +Danny worked with : Bill Watrous, Jake Hanna, Gil Evans, Bette Midler, Jimmy Smith, Gerry Mulligan, Woody Herman and others.Needs VoteDaniel StilesDanny StylesStilesGil Evans And His OrchestraWoody Herman And His OrchestraWoody Herman & The New Thundering HerdTen Wheel DriveWoody Herman And The Fourth HerdThe Danny Stiles - Bill Watrous FiveThe Danny Stiles FiveSal Salvador And His OrchestraThad Jones & Mel LewisThe Jake Hanna Quintet + +332582Andy GibsonAlbert Andrew GibsonAmerican swing/R&B Arranger, composer, trumpeter, songwriter, born November 6, 1913 in Zanesville, Ohio; died February 10, 1961 in Cincinnati, Ohio (heart attack). After the Second World War, he gradually switched from swing to R&B, and worked as a musical director for [l=King Records (3)] (1955-1960). Known for writing "I Left My Baby" and "The Hucklebuck".Needs Votehttps://en.wikipedia.org/wiki/Andy_Gibsonhttps://adp.library.ucsb.edu/names/357022A GibsonA. GibonsA. GibsonA. Mc GibsonA.GibsonAlbert Andrew GibsonAlbert GibsonAlfred GibsonAndrew GibsonAnoy GibsonGibbonGibsonGibson, AndyMc GibsonMcGibsonR. GibsonShubertAlbert ShubertCount Basie OrchestraAndy Gibson And His OrchestraAndy Gibson's Orchestra + +332583Johnny GriggsJohn Talib GriggsAmerican percussionist. +October 29, 1939 ~ October 25, 2018 (age 78) + +John Griggs was born on October 29, 1939 in Newark, NJ. At a very young age John developed a strong love for music of various types. John accepted Al-Islam as his religion in early 1960. +Later he began playing at night clubs in Newark and New York. He was called the ‘Master of Percussions’. One night at the Apollo Theater some musician mentioned John to James Brown. James Brown told him, “I like the way you play. Go home and get your Congo drums”. He told the band we ourselves a Congo player. He toured with James Brown all over the world for 26 years.Needs VoteGriggsJ. GriggsJ.C.GriggsJ.GriggsJohn GriggsJohn W. GriggsThe J.B.'sThe Jungle Band + +332585Al LucasAlbert B. LucasCanadian jazz double-bassist, born November 16, 1916 in Windsor, Ontario, Canada; died July 19, 1983 in New York, USA. +Needs Votehttps://adp.library.ucsb.edu/names/103026https://en.wikipedia.org/wiki/Al_Lucas_(musician)A. LucasAlbert B. LucasAlbert LucasLucasDuke Ellington And His OrchestraTeddy Wilson TrioMary Lou Williams TrioIllinois Jacquet And His OrchestraJames P. Johnson's Blue Note JazzmenIllinois Jacquet And His All StarsLeo Parker's All StarsEddie Heywood And His OrchestraEddie Heywood TrioHot Lips Page And His OrchestraThe J.J. Johnson QuintetColeman Hawkins And His Sax EnsembleJ.J. Johnson's Bop QuintetteThe Charlie Shavers QuintetArt Hodes' Back Room BoysMary Lou Williams' Chosen FiveLeo Parker QuintetteMary Lou Williams And Her SixLou Stein Jazz Band + +332589Jimmy MadisonUS drummer +Originally from Cincinnati, hired by [a=Lionel Hampton] at the age of 19 and two years later relocated to New York City. Since then he has worked on the road and on records with [a=James Brown], [a=Gerry Mulligan], [a=Nina Simone], [a=Al Cohn], [a=Roland Kirk], [a=Joe Farrell], [a=George Benson], [a=Richie Havens], [a=Stan Getz], [a=Hubert Laws], [a=Lee Konitz], [a=Anita O’Day], [a=Art Farmer], [a=Ray Baretto], [a=Shirley MacLaine], [a=Maceo Parker], [a=Ron Carter], [a=Grover Washington, Jr.], [a=Chet Baker], [a=Dave Matthews] in addition to leading his own groups.Needs Votehttp://www.smallsjazzclub.com/mobile/person.cfm?personId=1191https://www.moderndrummer.com/article/october-1982-jimmy-madison-new-york-state-mind/https://en.wikipedia.org/wiki/Jimmy_Madison_(musician)James H. MadisonJames H. MadsonJames MadisonJim MadisonJimmie MadisonJimmy M.Jimmy Madison & FriendsLee Konitz QuintetRahsaan Roland Kirk & The Vibration SocietyJanet Lawson QuintetThe Grodeck WhipperjennyDave Matthews' Big BandRed Rodney QuintetManhattan Jazz QuintetThe Contemporary Arranger's WorkshopDavid Matthews OrchestraMarian McPartland TrioRon McClure QuintetMichael Cochrane QuintetHarold Danko QuartetSteve Gilmore Jazz SextetLarry Newcomb QuartetNew York Trio (2)Michel Legrand & Co.Arkadiy Figlin TrioAxel Fischbacher Quartett + +332590Sam Taylor (2)Samuel Leroy Taylor Jr.American jazz and blues saxophonist (tenor, baritone), born July 12, 1916 in Lexington, Tennessee, died October 5, 1990 in Lexington, Tennessee. +Worked with [a=Scatman Crothers] (late 1930's), [a=Cootie Williams], [a=Lucky Millinder] (early 1940s), [a=Cab Calloway], [a=Ray Charles], [a=Buddy Johnson], [a=Louis Jordan], [a=Big Joe Turner], [a=Ella Fitzgerald] and many others. +Nickname: "The Man". +Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&keyid=338857&subid=1&page=1&fromrow=1&torow=25https://en.m.wikipedia.org/wiki/Sam_Taylor_(saxophonist)https://adp.library.ucsb.edu/names/105513Bluesy Sam TaylorLeroy "Sam" TaylorLeroy Sam TaylorS. 'The Man' TaylorS. TaylorSam "The Man" TaylorSam "The Man" Taylor With StringsSam 'The Man' TaylorSam (The Man) TaylorSam (The Man) Taylor & His Orch. & ChorusSam (The Man) Taylor & His OrchestraSam (The Man) Taylor & The Swing OrchestraSam (The Man) Taylor And His OrchestraSam The Man TaylorSam TylorSam “The Man” TaylorSammy TaylorSamuel TaylorTaylorС. Тейлорサム (ザ・マン) テイラーサム・テイラーサム・テーラー薩姆·泰勒Woody Herman And His OrchestraLouis Armstrong And His OrchestraLucky Millinder And His OrchestraCootie Williams And His OrchestraSy Oliver And His OrchestraThe Woody Herman Big BandSam Taylor And His OrchestraWoody Herman And His Third HerdGeorge Williams And His OrchestraThe Quincy Jones Big BandThe Secret 7Cootie Williams SextetBobby Smith And OrchestraThe Cat MenSam Taylor And His Cat MenSam Taylor And His Orchestra And ChorusBeulah Bryant's Thin MenSam "The Man" Taylor And His All Star Jazz Groups + +332603St-Clair PinckneyAmerican tenor and baritone saxophonist. +Born September 17, 1930, died February 1, 1999. +Member of [a=James Brown]’s backing band [a=The J.B.'s] during the band’s whole existence. He was the oldest of the members, recognizable by a patch of gray hair. Also known as “Pink”.Needs VoteC. PinckneyKellum PickneyPickneyPinckneyPinckney-St. ClairePinkneyS. C. PickneyS. PickneyS. PinckneyS. PinkneyS.C. PinckneyS.PinckneySC. PinckneySinclair PinckneySinclair PinkneySt Clair PickneySt Clair Pickney JrSt Clair PinckneySt Clair Pinckney Jr.St Clair PinkneySt-Clair PickneySt. C. PickneySt. Cair PinckneySt. Clair PickneySt. Clair PikneySt. Clair PinckeneySt. Clair PinckneySt. Clair Pinckney Jr.St. Clair PinkneySt. Clair/PickneySt. Claire PinckneySt. Clark PinckneySt.Clair PinckneySy. Clair PickneyT. PinckneyFred Wesley & The JB'sThe J.B.'sThe Jungle BandThe James Brown BandThe G.A.'s + +332608Michael Moore (2)Jazz bass player and composer, originally from the U.S. (born May 16, 1945 in Cincinnati, Ohio, USA). + +For the jazz saxophone player originally from the U.S., see [a436526].Needs Votehttps://www.wikiwand.com/en/Michael_Moore_(bassist)https://de.wikipedia.org/wiki/Michael_Moore_(Bassist)M. MooreMichael MooreMichael W. MooreMike MooreMooreGil Evans And His OrchestraThe Dave Brubeck QuartetCharlie Byrd QuintetWoody Herman And His OrchestraThe Grodeck WhipperjennyWoody Herman And The Swingin' HerdThe Dick Hyman TrioMarian McPartland TrioThe Scott Hamilton QuintetKeith MacDonald TrioLew Tabackin TrioRuby Braff / George Barnes QuartetWoody Herman And The Thundering HerdThe Howard Alden TrioDavid Matthews TrioThe John Bunch TrioThe John Bunch QuintetMichael Urbaniak Jazz TrioMike Melillo TrioWarren Vaché QuartetDale Bruning QuartetThe Cal Collins QuintetMichael Moore Trio (2)The Howard Alden All Star QuintetThe Jesse Green TrioThe Johnny Varro Swing SevenThe Jake Hanna QuintetThe Mike Greensill Quintet + +332622Gerald VinciCesare Sodero Jr.American violinist and strings conductor. +Born: 22nd February 1927. in Brooklyn, New York, USA +Died: 14th August 2001 in Escondido, California, USANeeds Votehttps://isni.org/isni/0000000407302554https://musicbrainz.org/artist/7f7770ba-8e8c-4a3e-9556-166f6ddc96b5/https://www.allmusic.com/artist/mn0000578093https://www.findagrave.com/memorial/10601301/gerald-vincihttps://rateyourmusic.com/artist/gerald_vincihttps://genius.com/artists/Gerald-vincihttps://www.imdb.com/name/nm3832772/G. VinciG.VinciGerald 'Jerry' VinciGerald VincGerald VinceGerri VinciGerrry VinciGerry VinceGerry VinciGerry Vinci StringsJerald VinciJerry VinciJerry CinciJerry VincentJerry VinciJerry VincyHarry James And His OrchestraThe NPG OrchestraMilt Jackson & StringsNick DeCaro And His OrchestraPaul Nero & His Hi Fiddles + +332794Buell NeidlingerBuell NeidlingerBuell Neidlinger, born on March 2, 1936 in New York, died on March 16, 2018, was an American double bassist and cellist.Needs Votehttps://en.wikipedia.org/wiki/Buell_NeidlingerB. NeidlingerB.NB; NeidlingerBeull NeidlingerBoell NeidlingerBoell NeidlingorBuel NeidlingerBuellBuell NeidlingelBuell NeidlinglerBuell NeidlingorBuell NeiglingerBuell NeildlingerBuell NiedlingerNeidlingerNeidlinger BuellBoston Symphony OrchestraThe Cecil Taylor QuartetAurora (18)Krystall Klear And The BuellsCecil Taylor QuintetThe Jimmy Giuffre 4Cecil Taylor TrioThe Great American String BandBuellgrassBuell Neidlinger's String JazzCecil Taylor All StarsThelonious (2)Musical Offering Baroque EnsembleJohnny Windhurst QuartetBuell Neidlinger Quartet + +333548Shawn MurphyShawn Edward MurphySoundtrack, Film Score, and Technical direction for many popular movies (born 16 May 1948, Los Angeles, California). + +His work includes consulting and mixing for many famous institutions such as the [a=Boston Symphony Orchestra], the [a=Pacific Symphony Orchestra], the Tanglewood Music Festival and the [l=Hollywood Bowl]. As a free-lance mixer and audio supervisor his work includes the Academy Awards, Boston Pops Television Series (PBS), Great Performances (PBS), and the original audio design and installation at NBC Saturday Night ("Saturday Night Live" (1975)). + +He has been nominated for three Academy Awards, winning in 1993 for Jurassic Park ([m55514]). + +He has worked at [l=Todd-AO Scoring Stage] and [l=Symphony Hall, Boston]Needs Votehttps://en.wikipedia.org/wiki/Shawn_Murphy_(sound_engineer)http://www.imdb.com/name/nm0004156/bio + +333635Henry FranklinJazz bassist. Son of [a=Sammy Franklin]. Also known as "Skipper". Founder of [l490405]. +Born: October 1, 1940 - Los Angeles, CaliforniaNeeds Votehttp://www.henryfranklin.com/(The Skipper) Henry FranklinFranklinH. FranklinHarry FranklinHenry "Skipper" FranklinHenry "The Skipper" FranklinHenry "The Skipper"FranklinHenry Franklin (Nyimbo)Nyimbo Henry FranklinNyimbuNyimbu (Henry Franklin)Nyimbo AmaniGerry Mulligan QuartetDennis Gonzalez New DallasangelesDennis Gonzalez New DallasorleanssippiCreative Arts EnsembleThe Phil Woods QuartetDennis Gonzalez New Dallas QuartetDennis Gonzalez John Purcell 8TetTheo Saunders SextetFranklin/Clover ProjectThomas Tedesco EnsembleHugh Masekela QuintetHenry Franklin Collaboration3 More Sounds + +333806Ulrich HornUlrich HornGerman classical cellist from RostockNeeds VoteOrchester der Bayreuther FestspieleHamburg Triohr-SinfonieorchesterEnsemble Frankfurt ConcertantEstonian Festival OrchestraL'Ensemble Ondine + +334067Eddie SouthEdward Otha SouthEddie South (born November 27, 1904, Louisiana, Missouri, USA - died April 25, 1962, Chicago, Illinois, USA) was an American jazz violinist. + +He was a classical violin prodigy who switched to jazz because of limited opportunities for African-American musicians. He began his professional musical career in 1921, playing with [a1409386] and Mae Brady. In 1923, he was the musical director for [a2962275]'s Syncopators. In 1927, he formed [a2435340]. During a European tour in 1929 with Marian Harris, he discovered gypsy music in Budapest. In 1937, he returned to Paris and performed and recorded with [a=Django Reinhardt], [A=Stéphane Grappelli] and [a=Michel Warlop]. Continued to lead his own groups during the 1940s & 1950s and although he suffered from ill health for many years he continued to work professionally until a few weeks before his death. Never used an amplified instrument, and was known as "The Dark Angel of the Violin".Needs Votehttps://en.wikipedia.org/wiki/Eddie_Southhttps://adp.library.ucsb.edu/names/104539E SouthE. SouthESEddy SouthSouthSouth-Grappelli-Reinhardt ComboEddie South & His OrchestraTrio De ViolonsEddie South QuartetWades Moulin Rouge Orch.Eddie South And His AlabamiansEddie South And His International OrchestraEddie South TrioClarence Williams' Morocco FiveEddie South & His QuintetGinny Simms And Her OrchestraDuo De ViolonsEddie South's QuintetEddie South And His Ensemble + +334068Joe Venuti's Blue FourAmerican, New York based Jazz ensemble formed by violinist [a269802] in the 1920's and 1930's. Depending on the number of musicians, who performed with Venuti, also [a3728489] and [a1993780] are known. Together with [a301357], there were also the ensembles [a3193223] and [a374503].Needs VoteBlue FourEddie Lang & Joe VenutiJoe VenutiJoe Venuti & His Blue FourJoe Venuti And His Blue FiveJoe Venuti And His Blue FourJoe Venuti Blue FourJoe Venuti Y Su Blue FourJoe Venuti's And His Blue FourJoe Venuti's Blue Four With Vocal RefrainThe Joe Venuti Blue FourJoe VenutiPete PumiglioJimmy DorseyFrank SignorelliEddie LangDon Murray (2)Adrian RolliniItzie RiskinFrankie TrumbauerLennie HaytonArthur SchuttJoe TartoJustin RingRube BloomHyman Arluck + +334073Marshall SossonAmerican violinist (born August 18, 1910 in Chicago, Illinois – died April 29, 2002 in Los Angeles, California) +(In discographies, his name is sometimes spelled "Marshall Soson.") + +Marshall Sosson was equally comfortable playing Classical music, jazz, or pop. Growing up in Chicago's Humboldt Park neighborhood, Sosson studied violin with Max Fischel at the Chicago Musical College and later with [a=Efrem Zimbalist] at the Curtis Institute of Music in Philadelphia. + +Sosson began his professional career as concertmaster for the staff orchestra of Chicago's WBBM Radio. On the side, he performed with his own his jazz quartet, Marshall Sosson and the Chicagoans, which between 1933 and 1942 regularly broadcast live and coast-to-coast on CBS radio. Sosson also played jazz violin with the orchestras of [a=Paul Whiteman], [a=Benny Goodman], and [a=Artie Shaw]. + +Drafted during World War II, Sosson served in several Army Air Corps entertainment units. With [a=Felix Slatkin], he served as co-concertmaster of the Army-Air Force orchestra in Santa Ana, California. + +After the war, Sosson settled in Los Angeles where he founded the Los Angeles String Trio and Piano Quartet. He gave chamber music recitals with pianist Leonard Stein and cellist and violinist Kurt and Sven Rehr, but also participated in jam sessions with pianist [a=Johnny Guarneri] at the Sacramento Jazz Jubilee. He also become concertmaster for several major Hollywood motion picture studios, including 20th Century Fox, Columbia Films (1947), and [a=Walt Disney] Studios (from 1959). He performs on the soundtrack of "All The Kings Men," "From Here To Eternity," "On The Waterfront," and "Picnic." In 1981, Disney chose him as the concertmaster for the remake of "Fantasia." + +Through the years, Sosson also accompanied countless stars on pop music recordings, including [a=Frank Sinatra], [a=Nat King Cole], [a=Ella Fitzgerald], [a=Dean Martin], [a=Quincy Jones], and [a=Frank Zappa].Correcthttps://jewishjournal.com/old_stories/5956/https://www.chicagotribune.com/obituaries/marshall-sosson-il/https://www.findagrave.com/memorial/166225955/marshall-sossonM. SossonMarshal SossonMarshall FossonMarshall SassonMarshall SassonRonMarshall SessonMarshall SossenMarshall SussonMarxhall SossonSosson MarshallHarry James And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraThe Gene Page OrchestraThe Da Sallo String Quartet + +334074Noble Sissle And His OrchestraCorrectNoble SissleNoble Sissle & His OrchestraNoble Sissle & OrchestraNoble Sissle Acc. By His Special OrchNoble Sissle And BandNoble Sissle And His Orch.Noble Sissle And His Own Special OrchestraNoble Sissle OrchestraNoble Sissle With His Special OrchestraNoble Sissle and OrchestraNoble Sissle's OrchestraОркестр Н. СисслаSidney BechetDemas DeanRamon UseraTommy LadnierNoble SissleWendell CulleyHarry Brooks (2)Clarence BreretonHoward HillHarvey BooneJack Carter (2)Edward ColesJames TolliverChester Burrill + +334075Ray PerrySwing jazz violin and alto saxophone player, born February 25, 1915 in Boston (USA), died autumn 1950 in New York (USA). +Ray Perry first studied violin, at the age of twenty taking up the saxophone. As a violinist, he was much influenced by [a=Stuff Smith], and was the one of the first to use amplified violin in the 1940s. He played with Clarence "Chic" Carter (1937-1939), Blanche Calloway (1940) and [a=Lionel Hampton] (1940 to 1943). +Brother of drummer [a=Bay Perry] and baritone saxophonist Joe Perry. + +Needs Votehttps://en.wikipedia.org/wiki/Ray_Perryhttps://www.allmusic.com/artist/ray-perry-mn0001601782https://adp.library.ucsb.edu/names/207855R. PerryRaymond PerryRoy PerryLionel Hampton And His OrchestraIllinois Jacquet And His OrchestraIllinois Jacquet And His All Stars + +334082Michel WarlopFrench classical and jazz violinist, arranger and composer. +b : January 23 1911, Douai +d : March 6, 1947, Bagnères de Luchon +Michel Warlop is probably, with [a=Stéphane Grappelli] and [a=Eddie South], the greatest swing violin player of the '30s and '40s even if he seems to have been the complete antithesis of the "gentle" Grappelli (exalted, nervy, music and alcohol enthusiast, Warlop was a peculiar character). +Educated at the Conservatoires of both Lille and Paris, and expected to have a successful classical career, by 1930 he had secured a place with one of Paris' leading jazz ensembles, Gregor Et Ses Gregorians of the Tabac Pigalle. +Even if billed as a jazz player, he also occasionally worked for french pop singers like [a=Maurice Chevalier] or [a=Germaine Sablon]. +During the war, Michel Warlop turned more into composing and orchestrating, and conducted a jazz string septet, what's considerated today as his most original and exciting work. His masterpiece, "Swing Concerto", recorded in 1942 with a symphonic orchestra, will only see the light as a release in 1989. +After the Second World War, Michel Warlop left the Parisian scene, due to unproved murmurs of collaboration, on account of his wartime involvement in broadcasts on Radio Paris and the Raymond Legrand Orchestra, which toured Germany successfully in 1942. +He died at the age of 36 years only, no doubt because of his alcoholism. +He is thought to have played on approximately 400 recordings of jazz and variétés Françaises, comparatively few of which appear to have survived. +Needs Votehttp://www.hotclub.co.uk/gypsyworld/index.php?title=Michel_Warlophttps://adp.library.ucsb.edu/names/104061M WarlopM. WarlopMichael WarlopWarlopQuintette Du Hot Club De FranceSouth-Grappelli-Reinhardt ComboDjango Et CompagniePhilippe Brun "Jam Band"Stéphane Grappelli And His Hot FourRaymond Legrand Et Son OrchestreMichel Warlop Et Son OrchestreL'Orchestre VolaDjango Reinhardt Et Son OrchestreL'Orchestre Du Theatre DaunouTrio De ViolonsMichel Warlop TrioMIchel Warlop And His Big BandMichel Warlop Et Son EnsembleGuy Paquinet Et Son OrchestreGrégor Et Ses GrégoriensMichel Warlop Et Ses Solistes De Jazz + +334084Red McKenzie & His Music BoxCorrectMcKenzie And His Music BoxRed Mc Kenzie And His Music BoxRed McKenzie And His Music BoxRed McKenzie And His Music Box OrchestraRed McKenzieJack Bland + +334131Skaila KangaSkaila Kanga was born in India and started learning the piano at the age of five. She won a Junior Exhibition to the Royal Academy of Music and later studied there with Vivian Langrish. Her interest in the harp began at 17 years of age when she was given the opportunity to study with Tina Bonifacio, Sir Thomas Beecham's harpist in the Royal Philharmonic Orchestra. +She is an harp player. + +Skaila began her career with the BBC Concert Orchestra and soon went on to freelance with many regional and all the major London orchestras under such eminent conductors as Boult, Kempe, Guilini, Monteux, Haitink, Maazel, Mehta, Barenboim, Previn, Solti, Klemperer, Svetlanov and Rattle. At this time she also worked extensively with Pierre Boulez in the BBC Symphony Orchestra alongside Sidonie Goossens and Maria Korchinska.Needs Votehttps://en.wikipedia.org/wiki/Skaila_Kangahttps://www.imdb.com/name/nm0437658/HarpS. KangaScaila KangaShaila KangaSkaila GangaSkaila KengaSkaile KangaSkala KangaSkalia KangaSkarla KangaSkiala KangaSkyla KangaSkyler KangaС. КангаThe Academy Of St. Martin-in-the-FieldsLondon Festival OrchestraThe New SymphoniaMike Batt OrchestraOrchestre de GrandeurThe Pale Blue Orchestra + +334142Kiane ZawadiTrombonist and euphonium player, born Bernard Atwell McKinney November 26, 1932 in Detroit; died May 20, 2024 in New York Methodist Hospital, Brooklyn, NYC. Took the name Kiane Zawadi in the first half of the 1960s. +Zawadi played or recorded with [a=Donald Byrd] (1955), [a=Pepper Adams] (1959), [a=Slide Hampton], [a=James Moody] (1961), [a=Mongo Santamaria], [a=Lionel Hampton], [a=Dizzy Gillespie], and [a=Aretha Franklin].Needs Votehttps://amsterdamnews.com/news/2024/05/30/kiane-zawadi-consumate-saxophonist-dies-at-91/K!ane ZawadiK. ZawadiKiane AwadiKiane Zawadi (Bernard McKinney)Kiani ZawadiKiano ZawadiKiané ZawadiKiawni Zawadiキアネ・ザワディBernard McKinneyHoward McGhee And His OrchestraThe Brass CompanyThe Sun Ra ArkestraFrank Foster And The Loud MinorityThe Clifford Jordan Big BandDollar Brand Orchestra + +334313Sanford AllenViolinist, the first African-American to join the [a327356]. + +Concertmaster for [a=New York City Strings].Needs Votehttps://en.wikipedia.org/wiki/Sanford_Allenhttps://www.feenotes.com/database/artists/allen-sanford-1939-present/Allen SanfordAllen W SanfordAllen W. SanfordS. AllenSandford AllenSanford AllesSanford W. AllenW. Sandford AllenW. Sandord AllenW. Sanford AllenLuv You Madly OrchestraNew York PhilharmonicNew York City StringsThe Hip String QuartetNew Black Music Repertory Ensemble Quartet + +334509Michel SardouMichel Charles SardouFrench singer, born on January 26, 1947 in Paris, France.Needs Votehttp://www.sardou.comhttp://www.sardou.chhttp://fr.wikipedia.org/wiki/Michel_Sardouhttp://www.clubsardou.comM SardouM. CardouM. SandouM. SardonM. SardouM. SardouxM. SardowM. SardoyM. sardouM.SardouMichael SardouMichelMichel Charles SardouMichel SardouxMichell SardouSardoSardonSardouSardou M.Sardou Michel CharlesSardouxSardovSarduSurdouМишель Сардуミッシェル・サルドゥミッシェル・サルドゥーミッシェル・サルドウーく미셸 사르두Les EnfoirésLes Grosses Têtes + +334574Joe HowardFrancis L. HowardAmerican trombone player, born November, 3 1919, Batesville, Indiana, died 1995. + +Played trombone with such bands as Stan Kenton, Ben Pollack, Will Osborne, Woody Herman, and Gene Krupa.Needs Votehttp://www.trombone-usa.com/howard_joe_bio.htm"Joe" HowardFrances Joe HowardFrancis "Joe" HowardFrancis HowardFrancis Joe HowardFrancis L. "Joe" HowardFrancis L. 'Joe' HowardFrancis L. HowardFrancis L. Joe HowardFrank HowardHowardJoseph HowardFerdy (7)Woody Herman And His OrchestraArtie Shaw And His OrchestraHenry Mancini And His OrchestraPete Rugolo OrchestraStanley Wilson And His OrchestraThe Buddy Bregman OrchestraWoody Herman And The Swingin' HerdThe Jerry Fielding OrchestraGlen Gray & The Casa Loma OrchestraJerry Gray And His OrchestraDennis Farnon And His OrchestraThe Buddy Bregman BandTutti's TrombonesThe Buddy DeFranco Big BandJohn Williams And Co. + +334577Robert La MarchinaAmerican cellist player and orchestral director. + +Born: September 03 , 1928 in New York City, New York. +Died: September 30 , 2003 in Kaneohe, Hawaii.Needs Votehttp://cello.org/Newsletter/Articles/lamarchina/lamarchina.htmRobert La MarcinaRobert LaMarchinaNBC Symphony OrchestraLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +334772Bert PaigeAlbert LepageBelgian arranger, producer, orchestra- and choirleader, born October 15, 1920 in Gent, Belgium - died October 9, 1987 in Laren, Noord-Holland. + +In 1943 he joined the orchestra of Robert de Kers as a trumpet player. From there he left for another dance orchestra, The Ramblers (1950-1957), while simultaneously making his mark as one of the Metropole Orchestra's staff arrangers as well as a freelance record arranger for several companies - continuing to work extensively in both fields until a serious illness prevented him from doing so towards the end of the 1970s. In the 1960s, Paige also had occasional stints as conductor of televised show programmes.Needs Votehttps://www.muziekschatten.nl/page/15734/bert-paige-een-rasarrangeurhttps://nl.wikipedia.org/wiki/Bert_Paigehttps://adp.library.ucsb.edu/names/367644B. PaigeB. PaugeB.PaigeBert PagePaigeБ. ПейджAlbert LepageThe RamblersBert Paige And His Strings Of TrumpetsOrkest o.l.v. Bert PaigeDe Blauwbaardjes + +334786Paul CohenAmerican jazz trumpeter. +Born October 3, 1922 in Brighton Beach, Brooklyn, New York, USA. +Died February 8, 2021 in Tamarac, Florida, USA. + +For other Paul Cohen credits, please consider the following: +- American cellist from Minnesota, [b][a356938][/b] +- Classical music saxophonist, [b][a1213364][/b] +- Soul/country/rockabilly music producer, [b][a1333577][/b] +- Mexican-American saxophonist, songwriter, producer, [b][a1437708][/b] +- Prog-rock guitarist, [b][a1513239][/b] +- Recording engineer, [b][a1642075][/b] +- Jazz drummer, [b][a1862773][/b] +- Photographer and designer, [b][a2412732][/b] +- Mixing engineer, [b][a2526241][/b]Needs Votehttps://de.wikipedia.org/wiki/Paul_Cohen_(Trompeter)Paul CobenPaul CohnPauly CohenTommy Dorsey And His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraClaude Thornhill And His OrchestraBenny Carter And His OrchestraThe Dorsey Brothers OrchestraJohnny Richards And His OrchestraWoody Herman And The Fourth HerdThe Quincy Jones Big BandBuck Clayton And His Swing BandDick Meldonian And His Orchestra + +335045Aram KhatchaturianԱրամ Եղիայի Խաչատրյան (Арам Ильич Хачатурян, Aram Ilyich Khachaturian)Aram Khachaturian or Арам Хачатурян (1903–1978) was an Armenian composer and conductor, husband of [a14167009] (1908–1976), brother of [a3366395] (1901–1968) and uncle of composer [a=Karen Khachaturian] (1920–2011). Considered one of the leading Soviet composers of the 20th century, he is a national hero in Armenia. He survived the Soviet regime relatively unscathed, but was in turn humiliated and rewarded by it, receiving awards and titles like "People's Artist of the USSR" (1954), "Hero of Socialist Labour" (1973), the Lenin Prize (1959), four Stalin Prizes (1941–50), and the USSR State Prize (1968) - as well as being branded "fundamentally incorrect", being sent into internal exile, and finding himself obliged to make a forced public apology for his work. + +Born and raised in Tbilisi, Khachaturian moved to Moscow in 1921 and enrolled in the Gnesin Musical Institute to study the cello. In 1925, he joined a newly established composition class led by [a=Mikhail Fabianovich Gnesin]. He continued his studies in composition with [a=Nikolai Myaskovsky] in 1929 at the Moscow Conservatory, also taking orchestration lessons from [a=Reinhold Glière]. In 1933, he married the composer Nina Makarova, a fellow student from Myaskovsky's class. He graduated from the Conservatory in 1934, and received his Ph.D. two years later. + +Khachaturian gained recognition and fame for one of the first major compositions, the Piano Concerto (1936). Other significant works include the Masquerade Suite (1941), Violin Concerto (1940) and Cello Concerto (1946), the Anthem of the Armenian SSR (1944), ballets Gayane (1942) and Spartacus (1954), three symphonies composed from 1935 to 1947, and over twenty film scores. His best-known piece, the 'Sabre Dance' from Gayane, has been covered by numerous musicians and used extensively in popular culture. + +During most of his career, Soviet regime gave Khachaturian approval, and he held several high posts in the Union of Soviet Composers. He joined the Communist Party in 1943. Five years later, Aram was named as one of the leading figures of the "fundamentally incorrect" formalist direction in music alongside with [a=Sergei Prokofiev], [a=Dmitri Shostakovich], [a=Dmitry Kabalevsky], [url=https://www.discogs.com/artist/1437100]Vissarion Shebalin[/url] and Myaskovsky. Their music was denounced as "anti-national." Khachaturian made public apology for his "artistic errors" and was sent away to Armenia as a punishment. The decision to ban the composer was entirely in keeping with the dangerously capricious nature of the regime under Stalin, and, ultimately, he did not change his musical style at all. He was rehabilitated fairly quickly, when his music was used for the documentary film [i]Vladimir Ilyich Lenin[/i] (1949). + +In 1950, he began performing as a conductor and started teaching composition at the Gnessin Institute and Moscow Conservatory. Some of his notable students included [url=https://www.discogs.com/artist/4142186-عزيز-الشوان]Aziz al-Shawan[/url], [url=https://www.discogs.com/artist/776004-Андрей-Эшпай]Andrey Eshpai[/url], [a=Anatol Vieru], [a=Edgar Oganesyan], [url=https://www.discogs.com/artist/702287-Микаэл-Таривердиев]Mikael Tariverdiyev[/url], [url=https://www.discogs.com/artist/944041-Марк-Минков]Mark Minkov[/url], [url=https://www.discogs.com/artist/1349385-Алексей-Рыбников]Alexey Rybnikov[/url], [url=https://www.discogs.com/artist/3668692-Толиб-Шахиди]Tolib Shahidi[/url], [a=Georgs Pelēcis], [url=https://www.discogs.com/artist/2822684-Ростислав-Бойко]Rostislav Boiko[/url], [a=Nodar Gabunia], [url=https://www.discogs.com/artist/2500730-Эдуард-Хагагортян]Edward Khagagortyan[/url], [url=https://www.discogs.com/artist/943389-Владимир-Дашкевич]Vladimir Dashkevich[/url], [url=https://www.discogs.com/artist/4499675-Кирилл-Волков]Kirill Volkov[/url], [a=Viktor Ekimovsky] and [url=https://www.discogs.com/artist/805629-Игорь-Якушенко]Igor Yakushenko[/url]. + +Name variations: Aram Il'yich Khachaturian, Aram Illich Khachaturian, Aram Xačatryan, Արամ Խաչատրյան, Арам Ильич Хачатурян, Арам ХачатрянNeeds Votehttp://www.khachaturian.am/https://en.wikipedia.org/wiki/Aram_Khachaturianhttps://www.britannica.com/biography/Aram-Khachaturianhttps://www.imdb.com/name/nm0006154/https://adp.library.ucsb.edu/names/362293A ChatjaturjanA I KhachaturianA I KhatchaturianA KhachaturianA KhatchaturianA. CatchaturjanA. ChaczaturianA. ChatjaturjanA. ChatschaturianA. ChatschaturjanA. ChačaturianA. ChačaturianasA. ChačaturjanA. ChačaturjanasA. ChačiaturianasA. HachaturianA. HaciaturianA. HacsaturjánA. HatsaturianA. HatsaturjanA. HatšaturjanA. HačarturjansA. HačaturianA. HačaturijanA. HačaturjanA. I. ChatchaturianA. I. ChatchaturjanA. I. HačaturjanA. I. KhachaturianA. I. KhatchaturianA. Il'yich KhatchaturianA. JachadurianA. KachaturianA. KaciaturianA. KahtchaturianA. KatchatourianA. KatchaturianA. KatchaturijanA. KatchaturjanA. KatchaturyanA. KatschaturianA. KatsjatoerianA. KatsjatoerjanA. KchakaturianA. KhacaturjanA. KhachadourianA. KhachaturaianA. KhachaturianA. KhachaturyanA. KhachatwianA. KhachturianA. KhaciaturianA. KhatcaturianA. KhatcharturianA. KhatchatourianA. KhatchaturiamA. KhatchaturianA. KhatchaturyanA. KhatchturianA. KhatschaturianA. KhatsjatoerianA. KhatsjaturianA. KratchatourianA. ХачатурянaA.ChaczaturianA.HachaturanA.HaciaturianA.I. ChatschaturjanA.I. HaciaturianA.I. KhatchaturianA.I. KhatsjatoerjanA.KatchaturianA.KhachaturianA.KhachaturjanA.KhachaturyanA.KhatchaturianA.KhatchturianAaram HaciaturianAaram KhatchaturianAdam KatschaturianAdam KhachaturianAdam KhatschaturianAdnan KhatchaturianAkatchaturianAlexander ChatschaturjanAmram KatchaturiamAmram KhachaturianAmran KhachaturianAramAram CaschaturianAram CačaturjanAram ChaczaturianAram ChatchaturianAram ChatchaturjanAram ChatjaturjanAram ChatjturjanAram ChatjutarjanAram ChatschaturianAram ChatschaturjanAram ChatschuturjanAram ChatshaturjanAram ChatsjatoerjanAram ChačaturianAram ChačaturjanAram ChhatchaturjanAram ChjatjaturjanAram HaciaturianAram HacsaturjanAram HacsaturjánAram HatsaturjanAram HatšaturjanAram HaçaturyanAram HačaturijanAram HačaturjanAram HačaturjianAram I. ChatschaturjanAram I. KhachaturianAram Il'Ych KhatchaturianAram Il'Yich KhachaturianAram Il'ich KhachaturianAram Il'ych KhachaturianAram Il'yich KhachaturianAram Il'yich KhatchaturianAram Ilic KhachaturianAram Ilic KhachaturjanAram Ilic KhaciaturjanAram Ilich JachaturiánAram Ilich KhachaturianAram Ilich KhatchatourianAram Ilich KhatchaturyanAram Ilitch KhatchatourianAram Ilitch KhatchaturianAram Ilji KhachaturianAram Iljisch ChatschaturjanAram Iljitsch ChatschaturjanAram Iljitsch KhachaturianAram Iljitsch KhatchaturianAram Iljič ChačaturjanAram Illitch KhatchaturianAram Ilych KhachaturianAram Ilyich KhachaturianAram Ilyich KhatchaturianAram Il’yich KhachaturianAram J. KhačaturjanAram JachaturiánAram KacaturianAram KachaturianAram KaciaturianAram KahchaturianAram KatchaturianAram KatschaturianAram KatsjatoerianAram KatsjatoerjanAram KatsjatúríanAram KchachaturianAram KchaczaturianAram KhachataturianAram KhachatourianAram KhachaturiamAram KhachaturianAram KhachaturjanAram KhachaturyanAram KhachturianAram KhaciaturianAram KhaciaturjanAram KhaohsturianAram KhatcharurianAram KhatchatarianAram KhatchatouriamAram KhatchatourianAram KhatchaturiamAram KhatchaturjanAram KhatchaturyanAram KhatjaturianAram KhatschaturianAram KhatschaturjanAram KhatsjatoerianAram KhatsjatoerjanAram KhatsjaturianAram KhatsjaturjanAram KhačaturjanAram ČhačaturjanAram СhatschaturjanArams HačaturjansAran KhachaturianArmen KachaturianArt. KhatchatrianCatchatourianChaczaturianChatchaturianChatjaturjanChatschaturianChatschaturjanChatschaturjan, A.Chatschaturjan, Aram IljitschChatshaturjanChatsjatoerjanChatsjaturjanChačaturjanChjatjaturjanE. ChatchaturjanE. KhachaturianHaceaturianHachaturianHachaturyanHaciaturianHacsaturjanHacsaturjánHascaturjánHatsathurianHatsaturianHatsaturjanHatshaturjanHatšaturianHatšaturjanHačaturijanHačaturjanJachaturianKachaturianKaciaturianKatchachurianKatchatourianKatchaturianKatchaturyanKatchurianKatjaturianKatschaturianKatsjakturianKatsjatoerjanKatsjaturianKchatchaturianKha ChaturianKhachachurianKhachapurianKhachatourianKhachatrianKhachaturianKhachaturian A.Khachaturian, Aram Il'yichKhachaturian, Aram IlyichKhachaturjanKhachaturyanKhachatyrianKhachturianKhaciaturianKhackaturianKhahaturianKharha turianKhatatchurianKhatchachourianKhatchadourianKhatchadourian A.KhatchatourianKhatchatourian Aram IlichKhatchaturianKhatchaturian A. I.Khatchaturian A.I.Khatchaturian,Khatchaturian, Aram Il'yichKhatchaturjanKhatchaturyanKhatchturianKhatehaturianKhatjaturianKhatschaturianKhatschchaturianKhatsjatoerianKhatsjaturianKhatsjaturjanKnachaturanR. I. KhachaturjianR.I.KhachaturjanV. KhachaturyanΧατσατουριάνА. XaчaтypянА. ХачатурянА. ХачятурянА.KhchaturianА.И. ХачатурянА.И. ХачатурянА.ХачатурянАрам Ильич ХачатурянАрам ХачатурянХачатурянХачатурян А. И.Хачатурян АрамԱրամ Խաչատրյանアラム・ハチャトゥリアンアラム・ハチャトゥリャンハチャトゥリアンハチャトリアン + +335465Charles CoolidgeCharles William "Skip" CoolidgeAmerican big band vocalist and trombonist. Also known as Skip Morr. +Born 1912 in Chicago, Illinois, USA. Died October, 1962 in Ross, California, USA. +Coolidge/Morr's father was a pianist and his grandfather was a drummer with John Philip Sousa. Coolidge/Morr started on the drums but switched to the trombone. +After graduating from Northwestern University in 1934, Coolidge/Morr played with groups directed by Ted Weems, Bill Hogan and Henry Busse. After moving to Hollywood in 1942, Coolidge/Morr worked with Artie Shaw and Charlie Barnet and in the studio orchestras of Ray Noble, Alex Stordahl and Gordon Jenkins. +In 1950, Coolidge/Morr joined Wingy Malone's combo in San Francisco and in 1952 joined with Marty Marsala, Joe Sullivan and Muggsy Spanier in Dixieland groups.Needs VoteC. W. CoolidgeCharlie CoolidgeChuck CoolidgeSkip MorrArtie Shaw And His OrchestraCharlie Barnet And His Orchestra + +335466Julian DashSt. Julian Bennett Dash.American jazz saxophonist (tenor). Together with Erskine Hawkins and William Johnson he wrote "Tuxedo Junction" - made into a hit by Glenn Miller. + +Born : April 09, 1916 in Charleston, South Carolina. +Died : February 25, 1974 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/106030https://adp.library.ucsb.edu/names/310952BachCashDachDasDashDash, FeyneDash, JulianDash, M.Dž. DešasJ- DashJ. DadsJ. DashJ.DashJulian DeshJulius DashДж. ДэшErskine Hawkins And His OrchestraJulian Dash & His SextetJulian Dash SeptetJulian Dash And His OrchestraThe Jimmy Rushing All StarsThe Jay McShann All StarsJulian Dash QuintetJulian Dash Combo + +335468Hobart SimpsonCorrectBob Zurke And His Delta Rhythm Band + +335471Johnny GuarnieriJohnny Albert GuarnieriAmerican jazz and stride pianist. Born: March 23, 1917 in New York City, New York. Died: January 07, 1985 in Livingston, New Jersey. + +He played in High School bands, then after graduation with George hall orchestra and Mike Riley. Between 1939 - 1942 he alternated between Artie Shaw and Benny Goodman. Later he played ihe Jimmy Dorsey and Raymond Scott as well as leading his own bands. + +He claims to be a direct descendant of the old Italian family of Guarnerius, who perfected the violin.Needs Votehttps://en.wikipedia.org/wiki/Johnny_Guarnierihttps://www.imdb.com/name/nm0345429/https://www.allmusic.com/artist/johnny-guarnieri-mn0000210757https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/174891f9a4916d6080d71f739dc321d77cec2/discographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/204090/Guarnieri_Johnhttps://jazzprofiles.blogspot.com/2013/07/johnny-guarnieri-master-stride-pianist.htmlhttps://fromthevaults-boppinbob.blogspot.com/2022/03/johnny-guarnieri-born-23-march-1917.htmlGarnieriGuarneriGuarnieriHarry GuarnieriJ. GuarneriJ. GuarnieriJack GuarnieriJohn Guanier8John GuarneriJohn GuarnieriJohnnie GuarnieriJohnnyJohnny GarnieriJohnny GuamieriJohnny GuanieriJohnny GuarneriJohnny GuarnierJohnny Guarnieri And RhythmThe Will Bradley-Johnny Guarnieri BandBenny Goodman SextetCozy Cole All StarsLouis Armstrong And His All-StarsArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraDon Byas QuartetCootie Williams And His OrchestraBenny Goodman And His OrchestraLester Young QuartetBenny Goodman SeptetSlam Stewart QuintetDon Byas And His OrchestraGeorge Hall & His OrchestraColeman Hawkins And His Sax EnsembleYank Lawson's Jazz BandDon Byas All StarsBenny Morton's Trombone ChoirJohnny Guarnieri TrioJohnny Guarnieri Swing MenJohnny Guarnieri QuintetJ.C. Heard QuintetJohnny Guarnieri QuartetBarney Bigard QuintetRex Stewart's Big EightSaturday Night Swing SessionDon Byas' All Star QuintetTony Mottola FourBilly Taylor's Big Eight"Little Jazz" And His Trumpet EnsembleJohnny Guarnieri And His OrchestraJohnny Guarnieri And His GroupThe Buddy Tate All StarsVic Dickenson QuartetJohnny Guarnieri's All Star OrchestraCharlie Christian JammersTony Mottola GroupCootie Williams SeptetThe Keynoters (5)Louis Armstrong And The V-Disc All-StarsDon Byas All Star Quartet + +335472George SchwartzJazz trumpeterNeeds Votehttps://www.allmusic.com/artist/george-schwartz-mn0001236151/creditsGeorge Schwartz His Orchestra And SingersGeorge SchwarzArtie Shaw And His OrchestraGeorgie Auld And His Orchestra + +335474Jackie FieldsJazz saxophonistNeeds Votehttps://www.allmusic.com/artist/jackie-fields-mn0001609277/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/203221/Fields_Jackiehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/203222/Fields_JackieJ. FieldsJackie FieldColeman Hawkins And His OrchestraColeman Hawkins Big Band + +335476Brad GowansArthur Bradford GowansAmerican Jazz trombonist, reedist and bandleader, born December 12, 1903 in Billerica, Massachusetts and died September 8, 1954 in Los Angeles. +Needs Votehttps://en.wikipedia.org/wiki/Brad_GowansB. GowansB.GowansBrad CowansBrad GowanBradley GowansGowansEddie Condon And His OrchestraBud Freeman's Summa Cum Laude OrchestraEddie Condon And His ChicagoansEddie Condon And His BandBobby Hackett And His OrchestraThe Rhythm CatsNappy Lamare And His BandGowan's Rhapsody MakersVic Lewis And His American JazzmenRay Bauduc And The Bob-CatsBrad Gowans And His New York NineJam Session At CommodoreRosy McHargue's Memphis Five (2) + +335477Jud DenautGeorge Matthews Denaut.American jazz bassist, arranger and conductor. + +Born: January 28, 1915 in Walkerton, Indiana. +Died: April 05, 1999 in Newport Beach, California. + +"Jud" worked with Artie Shaw, Ray Noble, Richard Himber, Ozzie Nelson, Kay Kyser, Woody Herman, Paul Whiteman, Bobby Sherwood and others.Needs Votehttps://de.wikipedia.org/wiki/Jud_DeNauthttps://music.negativedead.com/dar/335477/Jud%20Denauthttps://adp.library.ucsb.edu/names/107332De NautDeNautGeo M. "Jud" De NautGeo M. "Jud" DeNautGeo. M. DeNautGeorge "Jud" De NautGeorge "Jud" DeNautGeorge M. 'Jud' De NautGeorge M. De NautGeorge M. DenautJub DeNautJud De NantJud De NautJud DeNautJud DenantJud de NautJudd DenautJude DeNautPete Kelly And His Big SevenArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraThe Freddie Slack TrioOpie Cates And His OrchestraGramercy SixBabe Russin Quintet + +335478Dave JacobsJazz trombonistCorrecthttps://www.allmusic.com/artist/dave-jacobs-mn0001281936https://adpprod2.library.ucsb.edu/index.php/mastertalent/detail/323007/Jacobs_DaveD. JacobsDJDavid JacobsDavid Jacobs (DJ)JacobsTommy Dorsey And His OrchestraJoe Haymes & His Orchestra + +335479Babe FreskLivio O. FreskUS big band saxophonist. +Born: 23 March 1913, East Hartford, Hartford County, Connecticut, USA +Died: December 1976, Jamaica, Queens County, New York, USANeeds VoteB. FreakBabe FroskFreskL. FreskLivio "Babe" FreskLivio FreakLivio FreskLivio FreskeLivio „Babe‟ FreskTommy Dorsey And His OrchestraThe Will Bradley-Johnny Guarnieri BandJimmy Dorsey And His OrchestraShep Fields And His New MusicSy Oliver And His OrchestraAll Star Alumni OrchestraBen Homer & His Orchestra + +335482Clyde RoundsAmerican jazz saxophonistNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/208861/Rounds_ClydeC. RoundsCRClyde Rounds (CR)Clyde RundsTommy Dorsey And His OrchestraBunny Berigan & His OrchestraBunny Berigan's Rhythm-Makers + +335483Scotville BrownJazz saxophone playerCorrectS. BrowS. BrownScorville BrownLouis Armstrong And His Orchestra + +335485Preston LovePreston Haynes LoveAmerican jazz and rhythm & blues alto saxophonist, bandleader and songwriter. +Born 26 April 1921 in Omaha, Nebraska USA. +Died 12 February 2004 in Omaha, Nebraska USA. +He was a very close and personal friend of [a=Johnny Otis]. +Needs Votehttp://en.wikipedia.org/wiki/Preston_LoveLoveP. LovePrestonPreston LoweCount Basie OrchestraPreston Love And His OrchestraPreston Love And His BandThe Fabulous Preston Combo + +335487Noni BernardiErnani BernardiAmerican Jazz Saxophonist. Worked with Benny Goodman, Kay Kyser, Tommy Dorsey and others. +Born: October 29, 1911 in Standard, Illinois. +Died: January 04, 2006 in Van Nuys, California.Needs Votehttps://en.wikipedia.org/wiki/Ernani_Bernardihttps://www.allmusic.com/artist/noni-bernardi-mn0000912600/biographyhttps://www.imdb.com/name/nm2842201/bioB. BernardiBarnardiBernadiBernardiE. BernardiN. BernardiNoni BerardiNoni BernardTommy Dorsey And His OrchestraZiggy Elman & His OrchestraJimmy Dorsey And His OrchestraKay Kyser And His OrchestraBob Crosby And His OrchestraBenny Goodman And His Orchestra + +335489Tony FasoAnthony Fasulo.American jazz trumpeter. +Born : 1923 in Brooklyn, New York. +Died : January 27, 1990 in Tamarac, Florida. + +"Tony" worked with : Benny Goodman, Artie Shaw, Dorsey Brothers, Sammy Spear, Jackie Gleason and others.Needs VoteTony FascoTony FassoArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraLes Brown And His OrchestraBilly Butterfield And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraHenry Jerome And His Orchestra + +335490Gene SimonJazz trombonistNeeds VoteEugene SimonG. SimonCount Basie OrchestraLucky Millinder And His OrchestraBenny Carter And His OrchestraDon Redman And His Orchestra + +335491Bernie BillingsJazz saxophonistNeeds VoteB. BillingsBernie BillingMuggsy Spanier's Ragtime BandBobby Hackett And His OrchestraVic Lewis And His American Jazzmen + +335492Rod ClessGeorge Roderick ClessAmerican jazz clarinetist +born May 20, 1907 in Lenox, Iowa +died December 8, 1944 in New York City, New York + +Moved to Chicago in 1927, played with [a=Frankie Quartell], [a=Louis Panico], [a=Muggsy Spanier], [a=Art Hodes], [a=Marty Marsala], [a=Edward Farley], [a=George Brunies], [a=Wild Bill Davidson], [a=Bobby Hackett], [a=Max Kaminsky] and others. +Needs Votehttps://en.wikipedia.org/wiki/Rod_Clesshttps://www.bluenote.com/artist/rod-cless/https://www.jazzdisco.org/rod-cless/catalog/https://www.allmusic.com/artist/rod-cless-mn0001687639https://adp.library.ucsb.edu/names/113044https://adp.library.ucsb.edu/names/308856R. ClessRod Cless QuartetMuggsy Spanier's Ragtime BandJack Teagarden's ChicagoansJack Teagarden And His OrchestraYank Lawson's Jazz BandArt Hodes' ChicagoansMax Kaminsky And His Jazz BandFrank Teschemacher's ChicagoansRod Cless QuartetChicago Rhythm Kings (3) + +335493Phil StephensOdysseus Philip StephensAmerican jazz bassist and tuba player (born April 24 1907 in Atlanta, Georgia – died May 29, 1996 in Los Angeles, California). + +Born to a Greek immigrant merchant in Atlanta, Georgia, Stephens, a self-taught musician, toured with [a=Tommy Dorsey And His Orchestra] in the late 1930s and early 1940s. It was Tommy Dorsey who awarded him his nickname Phil "The Chief" Stephens. + +Stephens performed for more than 30 years and recorded together with, e.g., [a=Artie Shaw], [a=Charlie Barnet], [a254893], [a301368], and [a311166]. + +As a Hollywood studio musician, Stephens also accompanied some of the best-known singers of his time, such as [a164571], [a=Peggy Lee], and [a10533] (with Martin, he recorded "Memories Are Made of This"). At the opening of Disneyland in 1956, he played with the Elliot Brothers Band on Main Street.Needs Votehttps://www.allmusic.com/artist/phil-stephens-mn0000214615/creditsChief StephensP. StephensP. StephensenP. StevensPSPhil StephensonPhil StevensPhilip StephensPhilip StevensPhillip StephensPhillip Stephens (PS)StephensTommy Dorsey And His OrchestraArtie Shaw And His OrchestraCharlie Barnet And His OrchestraPete Rugolo OrchestraGordon Jenkins And His OrchestraJohn Scott Trotter And His OrchestraWingy Manone's Dixieland BandJerry Gray And His OrchestraMatty Matlock And His Dixie-MenPete Daily's Dixieland BandThe Rampart Street ParadersCharlie Barnet And His Rhythm MakersThe Stan Wrightsman QuartetThe Four Of A KindChuck Thomas And His Dixieland BandFrank Sinatra And His OrchestraHerbie Haymer's OrchestraThe Dave Barbour Quartet + +335496Hal McKusickHarold Wilfred McKusickAmerican jazz alto saxophonist, clarinetist and flutist +Born June 01, 1924 in Medford, Massachusetts, died April 10, 2012 in Sag Harbor, New York + +Hal worked in the big bands of [a403579], [a239399] (1943), [a1903222] (1944-'45), [a299945] (1946), [a57620], [a313126] (1948-'49), [a312534], [a913747] and Many others. +Recorded nine albums (1955-1958) as a leader.Needs Votehttps://en.wikipedia.org/wiki/Hal_McKusickhttps://www.allmusic.com/artist/hal-mckusick-mn0000660389https://www.radioswissjazz.ch/en/music-database/musician/13871ef03961019d470e695c895686410edd8/biographyhttps://www.jazzwax.com/2010/05/hal-mckusick-cross-sectionsaxes.htmlhttps://adp.library.ucsb.edu/names/206606H. McKusickHal Mc KusickHal McCusickHal McKusikHoward McKusickMcKusickХэлл МаккусикFefe PhophumQuincy Jones And His OrchestraGene Krupa And His OrchestraAndy Kirk And His Clouds Of JoyCharlie Parker And His OrchestraBoyd Raeburn And His OrchestraElliot Lawrence And His OrchestraJim Timmens And His Jazz All-StarsThe Manhattan Jazz SeptetteHal McKusick QuintetGeorge Russell & His SmalltetBilly Byers And His OrchestraTerry Gibbs And His OrchestraThe Prestige All StarsUrbie Green And His OrchestraThe Don Elliott QuintetOsie Johnson And His OrchestraThe Nat Pierce OrchestraGeorge Russell OrchestraThe Elliot Lawrence BandGeorge Williams And His OrchestraHal McKusick QuartetAl Cohn And His "Charlie's Tavern" EnsembleThe Hal McKusick OctetUrbie Green And His Big BandThe Tom Talbert Jazz OrchestraThe Vinson Hill SextetJim Mitchell SextetHal McKusick Sextet + +335497Gene RodgersEugene R. Rodgers, Jr..American jazz pianist and arranger. + +Born : March 05, 1910 in New York City, New York. +Died : October 23, 1987 in New York City, New York. + +Gene worked with Clarence Williams, King Oliver, Chick Webb, Teddy Hill, Coleman Hawkins (his piano in the famous 1939 "Body And Soul"), Zutty Singleton, Erskine Hawkins, Cab Calloway and others.Needs Votehttps://en.wikipedia.org/wiki/Gene_Rodgershttps://adp.library.ucsb.edu/names/105503G. RodgersGene RogersRodgersBenny Carter And His OrchestraColeman Hawkins And His OrchestraColeman Hawkins' All Star OctetBenny Carter And His Swing QuartetClarence Williams' Jazz KingsThe Harlem Blues & Jazz BandGene Rodgers TrioColeman Hawkins Big Band + +335498Robert RangeJazz trombonistNeeds VoteB. RangeBobBob RangeBobby RangeR. RangeRangeRobert HangeErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State Collegians + +335500Charles SperoCorrectBob Zurke And His Delta Rhythm Band + +335501Walt LevinskyWalter Levinsky.American jazz clarinetist, alto saxophonist and flutist +Born April 18,1929 in Paterson, New Jersey, died December 14, 1999 in River Edge, New Jersey + +Walt played with : Les Elgart, Tommy Dorsey, Benny Goodman, NBC (staff orchestra), "Sauter-Finegan Orchestra", CBS (satff orchestra), Artie Shaw, Tony Bennett, Stan Getz, Lena Horne, Gerry Mulligan, Doc Severinsen, Frank Sinatra, Sarah Vaughan and others.Needs Votehttps://adp.library.ucsb.edu/names/205801LevinskySSgt Walt LevinskyW. LevinskyW. LewinskyWaler LevinskyWalt LavinskyWalt LevinskiWalt LewinskyWalt LiviniskyWalt LivinskiWalt LivinskyWalter LavinskyWalter LevinskiWalter LevinskyWatt LevinskyTommy Dorsey And His OrchestraThe Will Bradley-Johnny Guarnieri BandJim Timmens And His Jazz All-StarsBenny Goodman And His OrchestraHenri René And His OrchestraJoe Reisman And His OrchestraThe Gary McFarland OrchestraAl Caiola And His OrchestraUrbie Green And His OrchestraGeorge Russell OrchestraArt Farmer And His OrchestraOrizaba And His OrchestraUrbie Green and His 6-TetMichel Legrand Big BandStewart - Williams & Co. + +335502Mac ZazmarMack ZazmarCorrectMack ZazmarBob Zurke And His Delta Rhythm Band + +335506Aaron MaxwellJazz saxophonistCorrectErskine Hawkins And His Orchestra + +335509Frank D'AnnolfoAmerican jazz trombonist. + +Born : December 26, 1907. +Died : May 05, 2003 in Old Bethpage, New York. + +Frank played (among others) with Glenn Miller, Bunny Berigan, Tommy Dorsey, Charlie Spivak and Guy Lombardo. +Needs VoteF. D'AnnolfoFrank D'AnnoffoFrank d'AnnolfoTommy Dorsey And His OrchestraBunny Berigan & His OrchestraGlenn Miller And His OrchestraAll Star Alumni OrchestraBobby Byrne And His Orchestra + +335510Morris RaymanAmerican jazz bassist, died in 1994.Needs Votehttps://de.wikipedia.org/wiki/Morris_Raymanhttps://adp.library.ucsb.edu/names/339348M. RaymanMaurice RaymanMorey RaymanMorrie RaymanJan Savitt And His Top HattersArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraCharlie Barnet And His OrchestraEddie Condon And His OrchestraBarney Kessel's All StarsGeorgie Auld And His Orchestra + +335513Rudy RutherfordElman Rutherford.American jazz baritone and alto saxophonist and clarinetist, born June 18, 1924 in Arizona, died March 31, 1995 in New York City, New York. +Played with Lionel Hampton, Count Basie, Ted Buckner, Wilbur De Paris, Earl Hines, Illinois Jacquet and others.Needs VoteElman "Rudy" RutherfordElman RutherfordR. RutherfordRuby RutherfordRudy ReatherfordRudy RuthefordRuthefordRutherfordCount Basie OrchestraBilly Eckstine And His OrchestraLionel Hampton And His SeptetDeLuxe All Star BandLionel Hampton And His SextetCount Basie OctetIllinois Jacquet & His Big BandKarl George OctetBuddy Tate SextetAll Star Sextet + +335514Jack LaceyJazz trombonist, born 1911 in Lancaster, Pennsylvania, died May 25, 1965 in New York City. +Played in Philadelphia with [a=Oliver Naylor] in the late 1920s, freelanced in New York, joined Benny Goodman for a year in 1934, later studio work.Needs VoteJ. LaceyJack LacyJack LesseyLaceyFrankie Trumbauer And His OrchestraClaude Thornhill And His OrchestraBunny Berigan And His BoysBenny Goodman And His Orchestra + +335517Al SidellJazz drummerNeeds Votehttps://www.allmusic.com/artist/al-sidell-mn0001778409https://adp.library.ucsb.edu/index.php/mastertalent/detail/343645/Sidell_AlAl SeidelAl SiddellMuggsy Spanier's Ragtime BandBob Zurke And His Delta Rhythm BandBud Freeman's Summa Cum Laude Orchestra + +335518Lyman VunkJazz trumpeterNeeds VoteLyman FunkVunkCharlie Barnet And His OrchestraBob Crosby And His OrchestraSam Donahue And His Orchestra + +335520Tom MaceJazz saxophonist, Oboe player.Correcthttps://www.allmusic.com/artist/tommy-mace-mn0001735605/biographyMaceTom MacyTommy MaceТомми МэйсTom MaceyWingy Manone & His OrchestraArtie Shaw And His OrchestraCharlie Parker And His OrchestraPaul Whiteman And His OrchestraTeddy Wilson And His OrchestraCharlie Parker With StringsAbe Lyman And His CaliforniansPutney Dandridge And His Orchestra + +335521Herb StewardHerbert Bickford Steward.American jazz clarinetist, saxophonist (soprano, alto and tenor) and flutist player. + +Born : May 07, 1926 in Los Angeles, California. +Died : August 09, 2003 in Clearlake, California. +Needs Votehttps://en.wikipedia.org/wiki/Herbie_Stewardhttps://rateyourmusic.com/artist/herbie_stewardhttps://www.allmusic.com/artist/herbie-steward-mn0000956020/biographyhttps://adp.library.ucsb.edu/names/345402Erbie StewardH. StewardHerbHerb StewartHerbert "Herbie" StewardHerbie StewardHerbie StewartHerby StewardStewardHarry James And His OrchestraWoody Herman And His OrchestraJack Costanzo And His OrchestraArtie Shaw And His OrchestraHerbie Steward QuintetBarney Kessel's All StarsThe Four Brothers (2)Woody Herman & The Second HerdHerbie Steward Quartet + +335523Richard FisherJazz guitarist.Needs VoteDick FischerDick FisherR. FisherRichard FischerRichard FischesGlenn Miller And His OrchestraTeddy Powell And His OrchestraThe Universal-International OrchestraThe Ernie Felice Quartet + +335527Charlie DiMaggioAmerican jazz saxophonist in the swing era, active from 1939 to 1957. He is also known by his nickname 'Chuck'.Needs VoteCharles Di MaggioCharles DiMaggioCharlie Di MaggioCharlie DimaggioCharlie di MaggioChas. Di MaggioChuck Di MaggioChuck DiMaggioChuck DimaggioBunny Berigan & His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraBunny Berigan And His MenThe Band That Plays The Blues + +335528Ed WassermanAmerican jazz saxophonist (tenor, alto and baritone ), clarinetist and flutist. +Worked with : Stan Kenton, Lena Horne, Manny Albam, Gene Krupa, Jimmy Giuffre, Benny Goodman, Gary McFarland and others. + +Born : March 05, 1923. +Needs VoteE. WassermanEddie WaermanEddie WassermanEddie WassermannStan Kenton And His OrchestraAndy Kirk And His Clouds Of JoyCharlie Barnet And His OrchestraElliot Lawrence And His OrchestraManny Albam And His Jazz GreatsTony Scott SeptetUrbie Green And His OrchestraThe Elliot Lawrence BandGeorge Williams And His OrchestraThe Gene Krupa QuartetBob Brookmeyer And His OrchestraJoe Newman And His OrchestraBig Swing Jazz Band + +335530Conrad LanoueAmerican jazz pianist and arranger, born October 18, 1908 in Cohoes, N.Y., died October 15, 1972 in Albany, N.Y. +Lanoue recorded with Red McKenzie in 1935, played and recorded with Eddie Farley and Mike Riley 1935-1936. While a member of Wingy Manone's orchestra in 1936-1940, he also played and recorded with Joe Haymes and wrote arrangements for several big bands. From 1940 he worked for long periods in the bands of Hal Landsberry, Charles Peterson, and Lester Lanin.Needs Votehttps://en.wikipedia.org/wiki/Conrad_Lanouehttps://www.revolvy.com/main/index.php?fldrs=13549&uid=389&stype=folders&name=20th-century-pianists&sr=950C. LanoueConrad LanoeConrad LanoneWingy Manone & His OrchestraBrick Fleagle And His Orchestra + +335533Truck ParhamCharles Valdez ParhamAmerican jazz bassist, born 25 January 1911 in Chicago, Illinois, USA, died 5 June 2002 +Correcthttps://en.wikipedia.org/wiki/Truck_Parhamhttps://www.allmusic.com/artist/charles-truck-parham-mn0001471581https://adp.library.ucsb.edu/names/336407"Truck" ParhamCharles "Truck" ParhamCharles "Truck" ParnhamCharles 'Truck' ParhamCharles ParhamCharles Truck ParhamCharles Valdez «Truck» ParhamCharles ‘Truck’ ParhamChas. "Truck" ParhamChas. Truck ParhamParhamT. ParhamTricky ParhamJimmie Lunceford And His OrchestraEarl Hines And His OrchestraRoy Eldridge And His OrchestraMildred Bailey And Her OrchestraLouie Bellson Big BandThe State Street RamblersThe Neo-Passé Jazz BandOriginal Camellia Jazz BandArt Hodes And His GroupPrince Cooper TrioThe Chicago All Stars (3)The Rhythmakers (4) + +335535Pat McNaughtonJazz trombonistCorrectPat Mc NaughtonArtie Shaw And His Orchestra + +335536James LamareJazz saxophonistNeeds VoteHames LamaraJames LemereJim LamareJimmy LamareCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +335537Harry DialAmerican jazz drummer. Drummer Harry Dial (1907-1987) was a professional musician by the age of 14. Playing gigs at the Manchester Café, the Manhattan Café and the Almac Hotel while he was still in school, he eventually joined Fate Marable on the steamer J.S. and Dial was soon playing all over St. Louis with Charles Creath, Dewey Jackson, Norman Mason and Jimmy Powell. In 1928, he moved to Chicago and in 1933 went on to New York. Dial worked with Louis Armstrong and was a member of Fats Waller’s Rhythm from 1934 to 1935. + + +Born : February 17, 1907 in Birmingham, Alabama. +Died : January 25, 1987 in New York City, New York. +Needs Votehttps://www.allmusic.com/artist/harry-dial-mn0001531740/biographyhttps://adp.library.ucsb.edu/names/105239DialH. DialHarry "The Versatile" DialFats Waller & His RhythmLouis Jordan And His Tympany FiveJunie C. Cobb And His Grains Of CornHarry Dial And His BlusiciansHarry Dial Quartet + +335538Junior RaglinAlvin Redrick Raglin.American jazz bassist. +Played with : Eugene Coy, [a284747] (replaced [a335660]), [a415788] (trio), [a31615], [a317856] and others. + + +Born : March 16, 1917 in Omaha, Nebraska. +Died : November 10, 1955 in Boston, Massachusetts. +Needs Votehttps://en.wikipedia.org/wiki/Junior_Raglinhttps://www.allmusic.com/artist/junior-raglin-mn0000125424/biographyhttp://worldcat.org/identities/lccn-n92035354/https://adp.library.ucsb.edu/names/106511"Junior" RaglinAl "Junior" RaglinAl RaglinAlvin "Junior" RaglinAlvin (Junior) RaglinAlvin RaglinAlvin Raglin JuniorAlvin Raglin, Jr.Alvin RanglinAlvin «Junior» RaglinJ. RaglinJunior RaglanJunior RaglandRaglinAlvin RaglinDuke Ellington And His Orchestra + +335539Mannie GershmanJazz saxophonistCorrecthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/203665/Gershman_Manny?Matrix_page=5Emanuel GershmanHenry GershmanM. GershmanManny GershmanManny GershmannTommy Dorsey And His OrchestraBob Chester And His Orchestra + +335541Jimmy MitchelleUS jazz saxophone player, vocalist.Needs VoteJ. MitchellJ. MitchelleJames MitchelleJimmie MitchellJimmie MitchelleJimmy MichelleJimmy MitchellMitchelleErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State Collegians + +335542Ralph MuzilloUS jazz trumpeter from the swing-era. + +Needs VoteMuzilloMuzzilloR. MuzilloR. MuzzilloRalph MuzzilloRalphi MuzzilloJimmy Dorsey And His OrchestraLarry Clinton And His OrchestraBenny Goodman And His OrchestraMuggsy Spanier And His OrchestraBunny Berigan's Rhythm-Makers + +335544Conn HumphreysUS jazz saxophonist from the swing-era. + +Needs VoteColin HumphreysCon HumphreysConn HumphriesConn HumphriesCharlie Barnet And His OrchestraClaude Thornhill And His OrchestraGlen Gray & The Casa Loma OrchestraRed Nichols And His Orchestra + +335545Harry YaegerJazz drummerNeeds VoteRed Nichols And His Five PenniesChu Berry And His Jazz Ensemble + +335546William Oscar SmithWilliam Oscar Smith was born in Bartow, Georgia, to William O. and Ida B. Smith on May 2, 1917. In Philadelphia, Pennsylvania, he received his education in the city schools and was graduated from the Benjamin Franklin High School. After graduating from high school, he entered the Mastbaum Vocational School of Music. Subsequent to attending Mastbaum, Smith matriculated at Lincoln University and in 1937 entered New York University (NYU), New York City. While a student at NYU, Smith, a bassist, gained practical music experience playing with noted persons such as Bessie Smith, Fats Waller, Dizzy Gillespie, and Coleman Hawkins. + +Two years after he enrolled in NYU, Smith "thumped" his way into jazz history by playing for the now-classic Coleman Hawkins recording of Body and Soul. In June of 1942, he was graduated from NYU with a Bachelor of Arts degree. Smith continued his academic training, earning a graduate degree from the University of Texas at Austin and the Doctor of Philosophy degree form the University of Iowa at Iowa City. + +During World War Two, Smith was stationed at Fort Huachucha, Arizona, as band director in the Thirty-seventh Special Services Company, U. S. Army. After his tour of military service ended, he returned to New York and taught at the Seward Park High School. + +In 1945, Smith participated in a recording session with Max Roach and Dizzy Gillespie. Later in the same year, he moved to Baltimore. The Long Gig of W.O. Smith (1991), when he moved to Baltimore, he "effectively left behind [his] chance to become a big name in jazz." Smith displayed his musical capability at noted spots of entertainment such as the Cotton Club and the Savoy Ballroom. In 1952, William and his family moved to Nashville, where he began his thirty-year tenure on the faculty of Tennessee Agricultural and Industrial State University. + +Subsequent to joining Tennessee State University's faculty, Smith reportedly became a regular member of the Nashville Symphony, playing in the viola and bass sections. His instructional experience and contact with the city's school system made him painfully aware of students who possessed a desire and aptitude for music but lacked the financial wherewithal to afford private lessons. Through a multicultural gathering of interested community members known as the Wednesday Night Club, which was founded by Smith, he articulated his desire to find a solution to the problem. In 1984, two years after Smith's retirement from Tennessee State University, his vision of a community music school came to fruition. Specifically structured to meet the needs of Nashville's low income students, the W. O. Smith / Nashville Community Music School was the bridge between the city's public schools, where the students' multitude prevented personalized training on a one-to-one ratio, and the Ellair School of Music, a private musical academy where the $300 cost for fifteen weekly half-hour periods (payable in advance) was preclusive for under-privileged persons. The community music academy was established in the inner city at 1416 Edgehill, where it provided seven teaching studios, a waiting room, and office space. + +Dr. William Oscar Smith passed away on May 31, 1991. His remains were interred in Woodlawn Cemetery, Nashville. +Needs Votehttp://www.tnstate.edu/library/digital/smithw.htmhttps://adp.library.ucsb.edu/names/106354Billy SmithOscar SmithW. O. SmithW.O. SmithWilliam O. SmithWilliam SmithColeman Hawkins And His OrchestraNashville Symphony Orchestra + +335547Eustis MooreJazz saxophonistNeeds Votehttps://www.allmusic.com/artist/eustis-moore-mn0002285829Austis MooreE. MooreEustice MooreEustie MooreColeman Hawkins And His OrchestraColeman Hawkins Big Band + +335548Ray ShermanAmerican jazz pianist. + +Born April 15, 1923 in Chicago, Illinois. + +Played with : Glen Gray, Bobby Hackett, Eddie Miller, Pete Fountain, Van Alexander, Ben Pollack, Pete Kelly and many others. + + +Needs Votehttp://www.raysherman.netR. ShermanRay I. ShermanShermanPete Kelly And His Big SevenBarney Bigard And His OrchestraGlen Gray & The Casa Loma OrchestraJack Sheldon QuintetThe Jack Lesberg SextetKings Of DixielandBen Pollack And His Pick-A-Rib BoysGramercy SixThe Bobby Gordon Quartet + +335551Lee CastaldoAniello CastaldoAmerican jazz trumpeter in the tradition of Louis Armstrong and Bunny Berigan and bandleader. Born February 28, 1915, in New York City, Bronx, New York, died November 16, 1990 in Hollywood, Florida. +Was known throughout his career for his full tone, extensive range and the ability to play in the New Orleans tradition as well as the sweet, ballroom manner of Harry James. From the late 1930s he led his own bands with moderate success. Around 1942 he adopted the name [a916052]. Needs VoteCastaldoL. CastaldoL. GastaldoLCLee Castaldo (Castle)Lee Castaldo (LC)Lee CastleLee CastleTommy Dorsey And His OrchestraArtie Shaw And His OrchestraBenny Goodman And His OrchestraGlenn Hardman And His Hammond FiveThe Dorsey Brothers OrchestraJimmy Dorsey, His Orchestra & ChorusLee Castle And His Orchestra + +335554Jack HansenUS trumpeter and tuba player of the swing era. +Also spelled [a=Jack Hanson]Needs VoteJ. HansenJack HanssenJack HansonJan Savitt And His Top HattersGeorge Olsen's MusicThe Charleston Chasers + +335555Bill OldhamJazz bassist and tuba player (also baritone sax, trombone), born June 1, 1909 in Chattanooga, Tennessee. +Moved with family to Chicago in 1919, worked with [a=Louis Armstrong] in the first half of 1930s, worked for many years with [a=Franz Jackson]. +Brother of [a=George Oldham].Needs VoteB. OldhamJohn "Bill" OldhamJohn"'Bill" OldhamJohns "Bill" OldhamW. OldhamLouis Armstrong And His OrchestraFranz Jackson And His Original Jass All-StarsThree Bits Of RhythmLaura Rucker And Her Swing Boys + +335557Scoops CareyGeorge Dorman Carry.American jazz saxophonist (alto) and clarinetist player +He played with Cassino Simpson, Lucky Millinder, Zutty Singleton, Fletcher Henderson, Roy Eldridge, Art Tatum, Horace Henderson, Darnell Howard, Earl Hines. + + +Born : January 23, 1915 in Little Rock, Arkansas. +Died : August 04, 1970 in Chicago, Illinois. +Correcthttps://en.wikipedia.org/wiki/Scoops_Carryhttps://www.allmusic.com/artist/george-scoops-carey-mn0001815651/creditshttps://adp.library.ucsb.edu/names/357671CarryGeorge "Scoops" CareyGeorge "Scoops" CarryGeorge 'Scoops' CarryGeorge CarryGeorge «Scoops» CarryS. CareyScoops CarryEarl Hines And His OrchestraRoy Eldridge And His OrchestraMildred Bailey And Her Orchestra + +335559Jesse MillerJesse Miller Jr.American jazz trumpeter. + +Born : August 16, 1921 in Houston, Texas. +Died : January 24, 1950 in Chicago, Illinois. (Hodgkins Disease) + +Worked with Sun Ra, Gene Ammons, Billy Eckstine, Earl Hines, Hoagy Carmichael and others. +CorrectJ. MillerJessie MillerMillerEarl Hines And His OrchestraGene Ammons SextetSession Six + +335562Wingy Manone & His OrchestraNeeds Votehttps://syncopatedtimes.com/wingy-manone-and-his-orchestra/"Wingy" Manone And His OrchestraClub Royale OrchestraJoe "Wingy" Mannone & His Club Royale Orch.Joe "Wingy" Mannone & His Club Royale OrchestraJoe "Wingy" Mannone And His Club Royale Orch.Joe "Wingy" Mannone And His Club Royale OrchestraJoe "Wingy" Manone & His Club Royale OrchestraJoe "Wingy" Manone And His Club Royale OrchestraJoe 'Wingy' Manone And His Club Royale OrchestraJoe Mannone And His Club Royale OrchestraJoe Manone And His Club Royale OrchestraJoe “Wingy” Mannone And His Club Royale OrchestraWIngy Mannone And His Orch.Wingie Mannone & His San Sue StruttersWingie Mannone And His OrchestraWingie Manone & His Orch.Wingie Manone & His OrchestraWingie Manone & his Orch.Wingie Manone And His OrchestraWingie Manone Y Su OrquestaWings Manone And His Club Royale OrchestraWingy Mannone & His Orch.Wingy Mannone & His OrchestraWingy Mannone And His Orch.Wingy Mannone And His OrchestraWingy Mannone Orch.Wingy Mannone's OrchestraWingy ManoneWingy Manone & His Club Royale OrchestraWingy Manone & His OrchWingy Manone & His Orch.Wingy Manone & His Royal Club OrchestraWingy Manone And His Club Royale OrchestraWingy Manone And His Orch.Wingy Manone And His Orch. And ChorusWingy Manone And His OrchestraWingy Manone And OrchestraWingy Manone E La Sua OrchestraWingy Manone With His OrchestraWingy Manone's Orch.Wingy Manone's OrchestraWingy Manone’s OrchestraWingyy Manone And His OrchestraBarbecue Joe And His Hot DogsJohnny MercerTerry ShandCozy ColeBabe RussinHarry GoodmanBuster BaileyJohn KirbyArtie ShawWingy ManoneBud FreemanGeorge BarnesDanny BarkerAnthony OrtegaRay LinnJack TeagardenGeorge Van EpsLeon "Chu" BerryHerbie HaymerHeinie BeauBill SchaefferCarmen MastrenTony ZimmersSid WeissFred StulceEddie Miller (2)Nick FatoolDickie WellsMilt RaskinTom MaceConrad LanoueDanny AlvinRay BauducDick ClarkJules CassardMatty MatlockJoe MarsalaGil BowersNappy LamareZeke ZarchyElmer SmithersLeonard HartmanArtie ShapiroKaiser MarshallTed Nash (2)Sidney ArodinCarl LoefflerJack RyanFrank VictorSid JacobsPhil OlivellaCharles GriffardBonnie PottleErnie HughesZeb JulianBuck ScottJack LeMaireAllan Thompson (2)Tommy De RoseHap Lawson + +335565Bob HaggartRobert Sherwood HaggartJazz bassist/composer/arranger, born 13 March 1914 in New York City, USA, died 2 December 1998 in Venice, Florida, USA. He was a founding member of the Bob Crosby Band (1935), arranging and part-composing several of the band's big successes, including "What's New?", "South Rampart Street Parade", "My Inspiration", and "Big Noise from Winnetka". He was also an accomplished painter, whose art was featured on covers of several of his recordings. + + +Needs Votehttps://en.wikipedia.org/wiki/Bob_Haggarthttp://www.bluenote.com/artist/bob-haggart/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/141682360d764a14109e18a9921f6e8815bf8/biographyhttps://www.allmusic.com/artist/bob-haggart-mn0000065595/biographyhttps://adp.library.ucsb.edu/names/106788B HaggartB HaggertB. AggartB. HaggardB. HaggartB. HaggertB. HoggartB. MaggartB. ハガートB.HaggarB.HaggardB.HaggartB.HoggartBabby HaggartBo. HaggartBob HagartBob HaggardBob HaggardtBob Haggart BandBob HaggarthBob HaggertBob HoggartBobb HaggardBobby HackettBobby HaggartBobby HaggertBoby HaggartBon HaggertBurke-HaggartH.HagartHaggHaggardHaggartHaggart BobHaggart RobertHaggatHaggertHargardHarragartHassartHazzardHoggartKaggartP. HaggartR HaggartR. HaggardR. HaggartR.HaggartRob HaggartRobert "Bob " HaggartRobert "Bob" HaggartRobert HaggardRobert HaggartRobert HaggertRobert Sherwodd "Bob" HaggartRobert Sherwood "Bob" HaggartRobert Sherwood 'Bob' HaggartRobert Sherwood HaggartRobert Sherwood “Bob” HaggartRobert haggartБ. ХаггартБ. ХэгартБоб ХаггартEnoch Light And The Light BrigadeMetronome All StarsLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraLouis Armstrong And His All-StarsArtie Shaw And His Gramercy FiveEddie Condon And His OrchestraWill Bradley And His OrchestraBob Crosby And The Bob CatsBob Haggart And His OrchestraMuggsy Spanier And His RagtimersBobby Hackett And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraEnoch Light And His OrchestraDick Hyman and The GroupThe Command All-StarsCharlie Parker With StringsThe V-Disc All StarsLos AdmiradoresBuddy Morrow And His OrchestraThe World's Greatest JazzbandYank Lawson And His OrchestraUrbie Green And His OrchestraLawson-Haggart SextetCharles Magnante And His OrchestraLawson-Haggart Jazz BandMuggsy Spanier And His All StarsHenry Jerome And His OrchestraThe Grand Award All StarsDoc Severinsen And His OrchestraYank Lawson's Jazz BandArt Hodes' ChicagoansJohnny Guarnieri TrioLawson-Haggart Rockin' BandThe New York AllstarsAll Star Band (4)Jo Basile, Accordion And OrchestraBud Freeman And His OrchestraGeorge Wettling And His Rhythm KingsThe Carl Kress SextetTony Mottola And His All-StarsSal Franzella And His QuintetFour Of The Bob CatsEd Polcer's All StarsAllan Vache's Florida Jazz AllstarsChuck Hedges QuartetBob Haggart And His BoysBob Haggart's Swing ThreeBob Haggart QuintetThe Joe Ascione Octet + +335566Clark YocumClark Albert Yocum.American jazz guitarist and vocalist. +Born : April 19, 1912 in Sunbury, Pennsylvania. +Died : January 13, 1993 in Las Vegas, Nevada. + +Yocum played (banjo and guitar) with "Mal Hallett's Orchestra" (1934-'37). +Clark also belonged to (from 1940 - 1967) the vocal group "The Pied Pipers" replacing Billy Wilson, as well as The Boys Next Door (backing up June Hutton on her solo records in the 1950s) and vocal quartet The Dolphins in the mid-1950s. + +Clark also recorded as member of vocal group "4 Hits and a Miss", backing up Bing Crosby and Jane Wyman on "In the cool, cool, cool of the evening" in 1951.Needs Votehttp://www.geocities.ws/Mairzydoat/bioclark.htmC. YocumCYCarl YokumClark Yocum (CY)Clark YokumClark YoucumYocumAllan StorrTommy Dorsey And His OrchestraTommy Dorsey And His SentimentalistsThe Pied PipersBob Keene OrchestraThe Boys Next Door (2)Mal Hallett And His OrchestraThe Dolphins (9) + +335569Eli RobinsonAmerican jazz trombonist and arranger. +Born: June 23, 1908 in Greenville, Georgia. +Died: December 24, 1972 in New York City, New York. +Worked with Alex Jackson, Frank Terry, Speed Webb, Zack White, McKinney's Cotton Pickers, Blanche Calloway, Willie Bryant, Teddy Hill, Mills Blue Rhythm Band, Roy Eldridge Count Basie and others. +Needs Votehttps://en.wikipedia.org/wiki/Eli_Robinsonhttps://adp.library.ucsb.edu/names/112573E. RobinsonEli EobinsonElie RobinsonEly RobinsonPRRobinsonCount Basie OrchestraLucky Millinder And His OrchestraRoy Eldridge And His OrchestraThe Buddy Tate Celebrity Club OrchestraBuddy Tate's OrchestraAndy Gibson And His OrchestraFranz Jackson And His Jacksonians + +335570Artie Shaw And His Gramercy FiveArtie Shaw created another smaller group within his band. He named it the Gramercy Five after his home telephone exchange. The original Gramercy Five made eight records in 1940, giving up his band in early 1941. But after Artie finished his service in the Navy, he revived the Gramercy Five in name, at least, in 1944. The new Gramercy Five recorded for the first time in January 1945. The Gramercy Five's biggest hit was "Summit Ridge Drive". A CD of The Complete Gramercy Five sessions was released in 1990.CorrectArtie Shaw & Gramercy FiveArtie Shaw & His Gramercy 5Artie Shaw & His Gramercy FiveArtie Shaw & His Grammercy FiveArtie Shaw & His Orch.Artie Shaw & His Orchestra & Gramercy FiveArtie Shaw And His Gramercy 5Artie Shaw And His Gramercy 5—.Artie Shaw And His Grammercy FiveArtie Shaw E I Suoi Gramery FiveArtie Shaw E Il Suo Quintetto GramercyArtie Shaw E Seus Gramercy FiveArtie Shaw GramercyArtie Shaw Gramercy FiveArtie Shaw With The Gramercy FiveArtie Shaw Y Su QuintetoArtie Shaw Y Sus Cinco GraciasArtie Shaw and his Gramercy 5—.Artie Shaw's Gramercy FiveArtie Shaw's Grammercy FiveGramercy FiveHis Gramercy FiveThe Gramercy Fiveアーティ・ショウとグラマシー・ファイヴBarney KesselRoy EldridgeDon FagerquistHank JonesArtie ShawDodo MarmarosaGeorge BarnesBilly ButterfieldAl HendricksonBob KitsisNick FatoolJohnny GuarnieriJud DenautMorris RaymanBob HaggartTal FarlowJimmy RaneyBuddy SchutzJoe PumaTrigger AlpertStan FreemanDon LanphereDick NivesonIrv KlugerGil BarriosDanny PerriBunny ShawkerJoe RolandDave Williams (54) + +335571Bus EtriAnthony EtriAmerican Jazz guitarist. +Born June 22, 1917 in Manhattan, New York. +Died Aug. 21, 1941 in Culver City, California. +Died in car accident with trumpeter/vocalist [a7977881].Needs Votehttp://keepitswinging.blogspot.com/2017/11/anthony-bus-etri-legendary-big-band.htmlhttp://www.jazzarcheology.com/artists/bus_etri.pdfAnthony 'Bus' EtriEtriCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +335573Mickey FolusUS jazz saxophonist from the swing-era. + +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/315733/Folus_MickeyMickey FelusMickey PolusMicky FolusMicky FolzeMyron "Mickey" FolusMyron 'Mickey' FolusWoody Herman And His OrchestraArtie Shaw And His OrchestraClaude Thornhill And His OrchestraTeddy Powell And His OrchestraWoody Herman & The HerdWoody Herman And The Swingin' HerdBill Harris & His New MusicThe Band That Plays The Blues + +335574Bob CaseyRobert Hanley CaseyAmerican traditional jazz musician. Recorded both as bassist and guitarist. +Worked with : Wingy Manone, Muggsy Spanier, Gus Arnheim, Charlie Spivak and others. + +Born : February 11, 1909 in Marion, Illinois. +Died : April 09, 1986 in New York City. +Needs Votehttps:en.wikipedia.orgwikiBob_Casey_(musician)https:www.allmusic.comartistbob-casey-mn0001202109https:adp.library.ucsb.edunames106791B. CaseyMuggsy Spanier's Ragtime BandOriginal Dixieland Jazz BandBud Freeman's All Star OrchestraMuggsy Spanier And His RagtimersWild Bill Davison And His CommodoresEddie Condon And His BandMiff Mole And His Nicksieland BandBobby Hackett And His OrchestraMax Kaminsky And His Jazz BandEddie Condon's Jazz BandGeorge Wettling's Jazz BandPee Wee Russell RhythmakersGeorge Wettling's All StarsPee Wee Russell Jazz EnsembleJoe Marsala's All TimersCliff Jackson's QuartetCliff Jackson's Black & White StompersJam Session At Commodore + +335575Sonny DunhamElmer Lewis DunhamAmerican jazz trumpeter, trombonist and bandleader. +Born November 16, 1914 in Brockton, Massachusetts, USA. +Died July 1, 1990 in Miami, Florida, USA. +Dunham played with Ben Bernie (first professional job), Casa Loma Orchestra, with own orchestra (Sonny Dunham & His Orchestra, 1940s), with Tommy Dorsey (early 1950s) and others. +Dunham's theme song was "Memories of You", a track he had made his own as a soloist with the Casa Loma Orchestra in 1937.Needs Votehttps://en.wikipedia.org/wiki/Sonny_Dunhamhttps://bandchirps.com/band/sonny-dunham/https://www.imdb.com/name/nm0242293/http://www.bigbandlibrary.com/sonnydunham.htmlhttps://adp.library.ucsb.edu/names/202789DunhamS. DunhamSonny "Mushmouth" DurhamSonny Dunham And Rhythm Accomp.Sonny DurhamSunny DunhamMetronome All StarsCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraSonny Dunham And His OrchestraAll Star Band (4)Sonny Dunham SextetThe Lords Of Dixieland + +335577Sam DonahueSamuel Koontz DonahueSam Donahue (born March 18, 1918, Detroit, Michigan, USA - died March 22, 1974, Reno, Nevada, USA) was an American jazz tenor saxophonist, trumpeter, arranger and bandleader. He is the father of guitarist [a295369]. + +Sam played with [a258689] (1938-'40), [a254768], [a313097], then formed his own big band and recorded for Okeh Records and Bluebird Records. After the World War II, he worked with [a229639], [a254886] (1954-'55) and [a212786] (1960-1961) and many others. He recorded an album under his own name in 1958.Needs Votehttps://en.wikipedia.org/wiki/Sam_Donahuehttp://de.wikipedia.org/wiki/Sam_Donahuehttp://www.hepjazz.com/bios/samdon.htmlDonahueDonahue & EnsembleFormer Musician 1/c Sam DonahueMus 1/c Sam DonahueMus 1/c Sam Donahue And The Navy Dance BandS. DonahueSam Donahue (MU1, USN)Sam Koontz DonahueTommy Dorsey And His OrchestraHarry James And His OrchestraThe Will Bradley-Johnny Guarnieri BandWoody Herman And His OrchestraStan Kenton And His OrchestraThe Jerry Fielding OrchestraSam Donahue And His OrchestraSam Donahue Navy BandSam Donahue And The Navy Dance BandWoody Herman And The Fourth HerdSam Donahue And His Swing Seven + +335579Don MichaelJazz pianistCorrectD. MichaelVal DoonicanErskine Hawkins And His Orchestra + +335580Danny AlvinDaniele VinielloAmerican jazz drummer. + +Born : November 29, 1902 in New York City. +Died : December 06, 1958 in Chicago, Illinois. + +Began his career in 1920 when he joined [a=Sophie Tucker]'s Kings of Syncopation. In 1924, he moved to Chicago to work with [a=Wayne King]. Later, he played with [a=Bobby Hackett], [a=George Brunies], [a=Eddie Condon], and many other Dixieland greats. In May 1950, his band, [a=Danny Alvin's Kings of Dixieland], cut four sides for [l=Rondo (2)] in Chicago. +Needs Votehttps://adp.library.ucsb.edu/names/100194D. AlvinWingy Manone & His OrchestraBud Freeman's Summa Cum Laude OrchestraMezz Mezzrow And His OrchestraWild Bill Davison And His CommodoresBuck Clayton QuintetTeddy Wilson And His All StarsJoe Marsala And His ChicagoansArt Hodes' ChicagoansDanny Alvin's Kings Of DixielandArt Hodes' Blue FiveGeorge Brunies And His Jazz BandArt Hodes And His Blue Note JazzmenArt Hodes' Hot SevenMezz Mezzrow TrioBechet-Nicholas Blue Five + +335581Bill RobertsonJazz trombonistNeeds VoteRobertsonCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +335584Ray BauducRaymond BauducAmerican jazz drummer and composer. Born: June 18, 1909 in New Orleans, Louisiana. Died: January 8, 1988 in Houston, Texas. +Needs Votehttps://en.wikipedia.org/wiki/Ray_Bauduchttps://www.allmusic.com/artist/ray-bauduc-mn0000863226/biographyhttps://www.drummerworld.com/drummers/Ray_Bauduc.htmlhttps://www.imdb.com/name/nm0061725/https://www.angelfire.com/mac/keepitlive/drummers/Baudue/bauduc.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106405/Bauduc_Rayhttps://adp.library.ucsb.edu/names/106405A. BauducAllan BauducBadancBaducBadugBanducBaudacBaudicBaudocBauducBauduc RayBaudueBaudukBauduoBaudusBeauducBouducBuaducBuadueBunducBurkeDauducR BauducR. BaducR. BanducR. BarducR. BaudacR. BauducR. BaudukR. BeauducR. BoudueR.BauducR.BaudueRay BadoucRay BaducRay BaduckRay BanducRay BandueRay BanoucRay BanouciRay BarducRay BaudacRay BaudocRay Bauduc And The Bob-CatsRay BeauducRay BonoucRaymond BauducRoy BaudueMetronome All StarsLouis Prima And His OrchestraWingy Manone & His OrchestraGlenn Miller And His OrchestraJack Teagarden And His OrchestraBob Crosby And The Bob CatsBen Pollack And His Park Central OrchestraBen Pollack And His OrchestraBob Crosby And His OrchestraFred Rich And His Hotel Astor OrchestraBunny Berigan And His Blue BoysJimmy Dorsey And His Original "Dorseyland" Jazz BandEddie Lang-Joe Venuti And Their All Star OrchestraWhoopee MakersBen's Bad BoysEddie Miller's OctetGene Gifford And His OrchestraJack Teagarden BandEddie Miller's Crescent City QuartetNappy Lamare's Louisiana Levee LoungersAll Star Band (4)The Jack Teagarden All-StarsJack Teagarden's Dixieland BandRay Bauduc And The Bob-CatsPaul Mills And His Merry MakersFour Of The Bob CatsGil Rodin And His OrchestraEddie Miller's OrchestraDeane Kincaide's BandRay Bauduc - Nappy Lamare And Their Dixieland Band + +335587Gene KinseyJazz saxophonistCorrectKinseyCharlie Barnet And His OrchestraHal McIntyre And His OrchestraBenny Goodman And His OrchestraCharlie Barnet And His Rhythm Makers + +335589Morey SamuelAmerican jazz trombonist, a.k.a. Morey Samel, born March 27, 1909 in Newark, N.J.Needs VoteM. SamelM. SamuelMorey SamelMorey SamuelsBunny Berigan & His OrchestraArtie Shaw And His OrchestraGene Gifford And His Orchestra + +335591Murray WilliamsAmerican jazz saxophonistNeeds VoteM. WilliamsMurray WilliamsonМеррей УилльямсHarry James And His OrchestraBunny Berigan & His OrchestraWoody Herman And His OrchestraCharlie Parker And His OrchestraCharlie Barnet And His OrchestraCharlie Parker Big BandNeal Hefti's OrchestraCharlie Parker With StringsGene Krupa And The Band That Swings With StringsBunny Berigan And His MenThe Band That Plays The Blues + +335593Raymond HoganJazz trombonistCorrectRay HoganErskine Hawkins And His Orchestra + +335595Andy Kirk And His Clouds Of JoyJazz orchestra directed by [a=Andy Kirk] (1898-1992), who took over Terrence Holder's Dark Clouds of Joy in 1929 and turned the band into a successful touring and recording unit, very largely dependent on the magnificent writing and arranging of [a=Mary Lou Williams]. + +Though he was often out front for photo opportunities, Andy Kirk ran the Clouds of Joy strictly from the back row. The limelight was usually left to singer [a=June Richmond] or vocalist/conductor [a=Pha Terrell]; the best of the arrangements were done by Mary Lou Williams, who left the band in 1942; as a bass saxophonist, Kirk wasn't called on to take a solo. All the same, he turned the Clouds of Joy into one of the most inventive swing bands. His disposition was sunny and practical and he was a competent organizer (who in later life ran a Harlem hotel, the legendary Theresa, and organized a Musicians' Union local in New York City).Needs Votehttps://jazzprofiles.blogspot.com/2019/05/andy-kirk-and-his-twelve-clouds-of-joy.htmlA. Kirk And His Twelve Clouds Of JoyAndy Kirk & And His Twelve Clouds Of YouAndy Kirk & His 12 Clouds Of JoyAndy Kirk & His Clouds Of JoyAndy Kirk & His OrchestraAndy Kirk & His Twelve Clouds Of JoyAndy Kirk & His Twelve Clouds Of YouAndy Kirk And Clouds Of JoyAndy Kirk And HIs Twelve Clouds Of JoyAndy Kirk And His (Twelve) Clouds Of JoyAndy Kirk And His 12 Clouds Of JoyAndy Kirk And His Clouds Of Joy OrchestraAndy Kirk And His Twelve Cloud Of JoysAndy Kirk And His Twelve Clouds Of JoyAndy Kirk And The Clouds Of JoyAndy Kirk The 12 Clouds Of JoyAndy Kirk With His Twelve Clouds Of JoyAndy Kirk's BandBandHis 12 Clouds Of JoyOrchestraJohn Williams' Memphis StompersThe Seven Little Clouds Of JoyMary Lou WilliamsJimmy ClevelandDon ByasRay CopelandMilt HintonOsie JohnsonAl CohnAndy KirkBernie GlowHoward McGheeFreddie GreenFrank RehakConte CandoliAl EpsteinJoe NewmanHarold BakerAl SearsSam MarowitzKenny KerseyAllen DurhamTed DonnellyClarence TricePha TerrellHarry LawsonEarl ThompsonDick WilsonEarl MillerJohn HarringtonClaude WilliamsBooker CollinsBen ThigpenHal McKusickEd WassermanRudy PowellBilly MasseyTaswell BairdThomas MitchellFloyd Smith (2)Chauncey WelschJohn Williams (14)Art CapehartHenry WellsEdward IngeGene PrincePaul King (4)Reuben PhillipsTed Robinson (2)Ted Brinson (2)Ben Smith (9)Edward McNeilWilliam DirvinLawrence FreemanMilton RobinsonJohnny Burris + +335597Dick CathcartCharles Richard Cathcart.American Dixieland trumpet and cornet player and vocalist. +Born November 06, 1924 in Michigan City, Indiana. +Died November 08, 1993 in Los Angeles (Woodland Hills), California. +Brother of jazz trumpeters [a1599948] and [a1610814]. +Married to singer [a1233566] of The Lennon Sisters (1964-1993, his death). + +In early 1957, he joined the group The Modernaires as a singer, replacing Alan Copeland, including a stint on Bob Crosby's daytime TV show. He sang with them for over three years.Needs Votehttp://en.wikipedia.org/wiki/Dick_Cathcarthttps://petekellysblog.blogspot.com/2008/08/dick-cathcarta-musicians-musician.htmlhttps://bandchirps.com/vocalgroup/modernaires/https:adp.library.ucsb.edunames307757"Dick" CathcartCharles R. CathcartCharles Richard "Dick" CathcartDick CathartDick Cathcart's DixielandersDick Cathcart, His Trumpet And OrchestraDick Cathcart, His Trumpet and OrchestraDick CatheartRichard CathcartRay Conniff And The SingersThe ModernairesPete Kelly And His Big SevenLawrence Welk And His OrchestraBob Crosby And His OrchestraGordon Jenkins And His OrchestraJuan Tizol & His OrchestraKings Of DixielandDick Cathcart And His All StarsBen Pollack And His Pick-A-Rib Boys + +335598Al StearnsJazz trumpeterNeeds VoteA. StearnsStearnsCount Basie OrchestraTommy Dorsey And His OrchestraHarry James And His Orchestra + +335599Ben HellerJazz guitarist from the United States.Needs Votehttps://de.wikipedia.org/wiki/Benny_HellerB. HellerBHBell HellerBen Heller (BH)Benny HellerBob HellerHellerTommy Dorsey And His OrchestraHarry James And His OrchestraZiggy Elman & His OrchestraTeddy Powell And His OrchestraBenny Goodman And His OrchestraHarry James & His Music Makers + +335600Dick ClarkSwing era jazz saxophonist. Tenor saxophonist together with [a258693] in early incarnations of [a374400]. Turned to studio work in his later career. +• [b]For the radio and television personality of the 1950s to 1990s, please use [a449852][/b]. +• [b]Do not confuse with trumpeter [a2114627].[/b] +• [b]Do not confuse with trombonist [a1207707].[/b] +Needs VoteClarkClartD. ClarkDick ClarckR. ClarkRichard ClarkWoody Herman And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraThe New Music Of Reginald ForesytheBenny Goodman And His OrchestraJohn Scott Trotter And His OrchestraJimmy Mundy OrchestraSkinnay Ennis And His OrchestraGene Krupa And His ChicagoansLou Bring And His OrchestraThe Jam Dandies + +335601George DixonAmerican jazz trumpeter and multi-instrumentalist. +Born : April 08, 1909 in New Orleans, Louisina. +Died : August 01, 1994 in Chicago, Illinois. + +George played with Sammy Stewart, Earl Hines, Floyd Campbell, Teg Eggleston and others. +He led his own band at the "Circle Inn" (in Chicago) in the 1940s and early 1950s. +Needs VoteDixonG. DixonG. T. DixonG.DixonGeo DixonGeo. DixonEarl Hines And His OrchestraHarry Dial And His Blusicians + +335604Kurt BloomJazz saxophonistNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113058/Bloom_KurtBloomCharlie Barnet And His OrchestraClaude Thornhill And His OrchestraCharlie Barnet And His Rhythm Makers + +335612Billy MaxtedWilliam George MaxtedAmerican jazz pianist, composer and arranger. +Born : January 21, 1917 in Racine, Wisconsin. +Died : October 11, 2001 in Fort Lauderdale, Florida. + +Billy Maxted played with : Red Nichols (1937-1940), Ben Pollack, Teddy Powell, Will Bradley. +After World War II he wrote arrangements for Benny Goodman, Claude Thornhill, Bob Crosby and Red Nichols and was co-led of a group with Ray Eberle (1947-1948). +Needs Votehttps://adp.library.ucsb.edu/names/109709B. MaxstedB. MaxtedB. MaxterB. MuxedB. MuxtedDelly MatedLuxedMaxtedP. MaxtedW. MaxtedRed Nichols And His Five PenniesPee Wee Erwin And His Dixieland All-StarsRed Nichols And His OrchestraBilly Maxted's Manhattan Jazz BandBilly Maxted And His OrchestraPee Wee Erwin's Dixieland BandPee Wee Erwin And The Village Five + +335613George BoehmJazz bassistCorrectG. BoehmGeorg BoehmTommy Dorsey And His Orchestra + +335614Joe MurphyJazz drummerCorrectErskine Hawkins And His Orchestra + +335615Frank RayJazz bassistCorrectRed Nichols And His Five Pennies + +335617Johnny NaptonAmerican trumpet player and songwriter. +Born 1924. +He charted four times as a songwriter in 1942 with the same song "My Devotion" (co-written by Roc Hillman). The highest charted release was by Charlie Spivak and His Orchestra, when it reached #2 on the U.S. charts.Needs VoteJ. NaptonJohn NaptanJohn NaptonJohnny HaptonNaptanNaptonS. NaptonBunny Berigan & His OrchestraJimmy Dorsey And His OrchestraClaude Thornhill And His OrchestraLarry Clinton And His OrchestraBenny Goodman And His OrchestraJan Savitt And His OrchestraLennie Hayton And His OrchestraThe Johnny Napton Orchestra + +335620Moe SchneiderJazz trombonistNeeds Vote"Moe" Schneider'Moe' SchneiderElmer "Moe" SchneiderGene Krupa And His OrchestraPete Kelly And His Big SevenBob Crosby And His OrchestraGordon Jenkins And His OrchestraKings Of DixielandBen Pollack And His Pick-A-Rib BoysRosy McHargue & His RagtimersGene Krupa Combo + +335621Ford LearyAmerican Jazz trombonist. singer and actor. +Born September 5, 1908 in Lockport, N.Y. +Died June 4, 1949 in New York, New York (age of 40). +Played with Bunny Berigan 1936-1937, Larry Clinton 1938-1940, Charlie Barnet 1940-1941. He later became a professional actor and appeared on Broadway in "Follow The Girls" in 1944.Needs Votehttps://fromthevaults-boppinbob.blogspot.com/2019/09/ford-leary-born-5-september-1908.htmlhttps://bandchirps.com/artist/ford-leary/https://www.imdb.com/name/nm0495255/https://adp.library.ucsb.edu/index.php/mastertalent/detail/106370/Leary_FordF. LearyBunny Berigan & His OrchestraCharlie Barnet And His OrchestraLarry Clinton And His OrchestraMuggsy Spanier And His OrchestraFord Leary & His Boys + +335622George HuntJazz trombonist, born c. 1906 in Kansas City, MO, died c. 1946 in Chicago, Illinois. +Played with [a=Bennie Moten] c. 1932-c. 1935, [a=Count Basie] in 1936, [a=Fletcher Henderson] 1937-1939, [a=Earl Hines] 1938, 1940-1942. Hunt was primarily a section musician; however, he may be heard playing a solo on Basie's "One O'Clock Jump" (1937).Correcthttps://en.wikipedia.org/wiki/George_Hunt_(trombonist)https://adp.library.ucsb.edu/names/322209G. HuntGeorg HuntHuntCount Basie OrchestraEarl Hines And His Orchestra + +335624Lee StanfieldLemire StanfieldJazz bassistNeeds VoteL. StanfieldLeMire StanfieldLeemie StanfieldLeenie StanfieldLennie StanfieldS. FieldsStan FieldsStanfieldErskine Hawkins And His OrchestraTeddy Wilson And His OrchestraErskine Hawkins And His 'Bama State Collegians + +335626Jimmy SkilesJazz trombonist of the Big band era. Also played with [a924964]. +Born in 1909Needs VoteJ. SkilesJSJames LeRoy StilesJames Leroy SkilesJames SkilesJames Skiles (JS)Jimmy SkylesJohnny SkilesTommy Dorsey And His OrchestraLarry Clinton And His Orchestra + +335627Clyde Newcombalso [i]Clyde Newcombe[/i], was an american jazz bassist (*1910)Needs Votehttps://de.wikipedia.org/wiki/Clyde_NewcombClyde NewcombeClyde NewcomeNewcombGene Krupa And His OrchestraBud Freeman's Summa Cum Laude OrchestraEddie Condon And His ChicagoansBobby Hackett And His OrchestraThe Rhythm Cats + +335628Jimmy AbatoVincent Jimmy Abato.American saxophonist, clarinetist - bass clarinetist. + +Born : January 21, 1919 in Wilmerding, Pennsylvania. +Died : January 31, 2008 in New York City, New York. + +He recorded with Percy Faith, Morton Gould, André Kostelanetz and other, played with the Glenn Miller, Tommy Dorsey. +Needs VoteJ. AbatoJames AbatoJim AbatoJimmie AbatoVincent “Jimmy” AbatoVincent AbatoGlenn Miller And His OrchestraClaude Thornhill And His OrchestraAll Star Alumni OrchestraBobby Byrne And His Orchestra + +335629Earl HardyTrombonistCorrecthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/319974/Hardy_EarlE. HardyHardyJimmie Lunceford And His OrchestraColeman Hawkins And His OrchestraElla Fitzgerald And Her Famous Orchestra + +335630Will BradleyWilbur SchwichtenbergTrombonist and bandleader (July 12, 1912, Newton, NJ - July 15, 1989, Flemington, NJ). Please don't confuse with African-American trombonist [a5812583]. +Bradley enjoyed commercial success after forming a big band with drummer [a=Ray McKinley] and recording the hit "Beat Me Daddy, Eight to the Bar." This tune and others propelled Bradley to the forefront of the boogie woogie scene, though he was also known for his swing playing. Later in his career, he spent many years playing trombone on "The Tonight Show" during the [a=Johnny Carson] era. +Bradley's son is [a2048718], a noted jazz drummer.Needs Votehttps://en.wikipedia.org/wiki/Will_Bradleyhttps://www.allmusic.com/artist/will-bradley-mn0000960669/biographyhttps://adp.library.ucsb.edu/names/305344https://adp.library.ucsb.edu/names/103367Bill BradleyBradleyThe Will Bradley Jazz BandW. BradleyWilbur "Will" BradleyWilliam BradleyWilly BradleyУилл БрэдлиThe Will Bradley-Johnny Guarnieri BandWoody Herman And His OrchestraMetronome All StarsRay Noble And His OrchestraRuss Morgan And His OrchestraWill Bradley And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraWoody Herman And His WoodchoppersCharlie Parker With StringsNoro Morales & His OrchestraWill Bradley's SextetJerry Gray And His OrchestraThe Woody Herman Big BandWill Bradley TrioWoody Herman And His Third HerdWoody Herman And The Fourth HerdJimmy Dorsey, His Orchestra & ChorusWill Bradley And His Boogie Woogie BoysJimmy Lytell And His All Star SevenUrbie Green And Twenty Of The "World's Greatest"Savannah Churchill And Her All Star SevenBen Homer & His OrchestraWill Bradley and HIs Jazz OctetEddie Condon's N.B.C. Television OrchestraWoody Herman And The Swingin' Herd (2)Beulah Bryant's Thin Men + +335632Paul TannerPaul O.W. TannerAmerican Jazz trombonist and inventor of the electro-theremin. +Born October 15, 1917 in Skunk Hollow, Kentucky, USA. +Died February 5, 2013 in Carlsbad, California, USA. + +Paul Tanner developed the electro-theremin (sometimes called "Tannerin") in co-operation with Bob Whitsell and Joe Rozar. +While the original theremin is played without touching the instrument, Paul Tanner's electro-theremin is mechanically controlled, which enables the player a more conventional use of the instrument. +Tanner was one of the original members of The Glenn Miller Orchestra.Needs Votehttp://www.electrotheremin.com/PTE-TPage.htmlhttps://en.wikipedia.org/wiki/Paul_Tannerhttps://www.imdb.com/name/nm0849683/https://adp.library.ucsb.edu/names/103112Lightnin' TannerP. TannerPaul O.W. TannerPaul Ora Warren (Lightnin') TannerTannerThe Glenn Miller OrchestraGlenn Miller And His OrchestraThe Universal-International Orchestra + +335635Steve LipkinsStephen J. LipkinsAmerican jazz trumpeter. +Born: 19 September 1917 +Died: 29 January 2011 in Boca Raton, Florida, USA. +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113648/Lipkins_Stevehttps://www.allmusic.com/artist/steve-lipkins-mn0001606872/creditsLipkinsS. LipkinsSerge LipkinsStephen LipkinsSteve LipskinsTommy Dorsey And His OrchestraBunny Berigan & His OrchestraArtie Shaw And His OrchestraLarry Clinton And His OrchestraWill Bradley And His OrchestraAll Star Alumni OrchestraHudson-DeLange OrchestraBobby Byrne And His OrchestraBunny Berigan And His Men + +335636Jimmy BlakeJazz trumpeter.Needs VoteBlakeJ. BlakeJBlJames BlakeJames Blake (JBl)Tommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenTommy Dorsey And His SentimentalistsBenny Goodman And His OrchestraRed Norvo And His OrchestraMildred Bailey And Her OrchestraJerry Gray And His OrchestraHudson-DeLange OrchestraMel Powell And His Orchestra + +335639Bruce SnyderJazz saxophonistCorrectB. SnyderBSBruce Snyder (BS)Bruce SynderTommy Dorsey And His Orchestra + +335641Dave BowmanDavid Walter BowmanUS jazz pianist from the swing-era, born September 8, 1914 in Buffalo, New York, died December 28, 1964 in Miami, Florida. + +Needs Votehttps://en.wikipedia.org/wiki/Dave_Bowman_(musician)https://www.allmusic.com/artist/dave-bowman-mn0001203378/creditshttps://adp.library.ucsb.edu/names/305258BowmanD. BowmanDavid BowmanLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraSidney Bechet And His OrchestraBud Freeman's Summa Cum Laude OrchestraToots Camarata And His OrchestraMuggsy Spanier And His RagtimersBobby Hackett And His OrchestraBud Freeman And His Famous ChicagoansThe Rhythm CatsVic Lewis And His American JazzmenMuggsy Spanier And His OrchestraGeorge Wettling And His Rhythm KingsDeane Kincaide's Band + +335642Billy SheperdJazz clarinetist and saxophonist. + +For the UK arranger, see [a=Bill Shepherd]Needs VoteBill SheperdBilly ShepherdRed Nichols And His Five Pennies + +335643Tommy LindsayAmerican jazz trumpeterNeeds VoteT. LindsayTom LindsayTommy LindayTommy LindseyColeman Hawkins And His OrchestraColeman Hawkins Big Band + +335647Cliff LeemanClifford LeemanAmerican jazz drummer, born 9 October 1913 in Portland, Maine, USA, died 26 April 1986 in New York, USA. +Also known as "Mr. Time" or "the Sheriff" +Needs Votehttps://en.wikipedia.org/wiki/Cliff_Leemanhttps://www.facebook.com/Soundsofthebigbands/photos/cliff-leeman-drummer-was-born-in-portland-maine-on-september-10-1913-he-played-p/2980423761984200/https://www.allmusic.com/artist/cliff-leeman-mn0000190770/creditshttps://adp.library.ucsb.edu/names/106790C. LeemanC.LeemanCl. LeemanCliff LeamanCliff LeemannCliff LeemansCliff LeermanCliff LehmanCliff LemanClifford LeemanClifford LeemenWoody Herman And His OrchestraArtie Shaw And His OrchestraCharlie Barnet And His OrchestraBilly Butterfield And His OrchestraEddie Condon And His All-StarsLawson-Haggart SextetLawson-Haggart Jazz BandPee Wee Erwin And His Dixieland All-StarsAll Star Alumni OrchestraGeorge Barnes QuartetThe Grand Award All StarsBobby Byrne And His OrchestraThe Ralph Sutton QuartetThe Ralph Sutton TrioBilly Butterfield And The Essex FiveJazz Renaissance QuintetLou Stein And His OctetTony Mottola And His All-StarsPee Wee Erwin's Dixieland EightMax Kaminsky And His Dixieland BashersThe Lou Stein SextetArt Shaw And His New MusicPee Wee Erwin's JazzbandLou Stein Jazz BandThe Band That Plays The BluesSnapper Lloyd And His OrchestraPee Wee Erwin And The Village FiveThe Chicago Jazz Giants + +335648Jules CassardJazz tuba player, bassist, and composerCorrectCassardCossardJ. CassardJules CossardYules (2)Wingy Manone & His OrchestraRay Miller And His OrchestraMerritt Brunies & His Friars Inn Orchestra + +335650Elmer WhitlockJazz trumpeterCorrectE. WhitlockEllis ''Stumpy" WhitlockEllis WhitlockElmer "Stumpy" WhitlockStumply WhitlockStumpy WhitlockLouis Armstrong And His Orchestra + +335652Toots MondelloNuncio F. MondelloJazz alto saxophone and clarinet player, born in Boston, MA on August 14, 1911, died November 15, 1992, in New York City. +Toots Mondello is best known for his long association with [a=Benny Goodman And His Orchestra]. He was very active as a session musician and recorded with many well-known bands and artists, remaining active until the early 1970s. +He is the brother of fellow saxophonist [a=Pete Mondello] and the cousin of Vince Mondello, who played guitar and banjo.Needs Votehttps://en.wikipedia.org/wiki/Toots_Mondellohttps://www.allmusic.com/artist/nuncio-toots-mondello-mn0000160923/biographyhttps://web.archive.org/web/20220105113131/http://www.collateralworks.com/linernotes/tootsmondello.htmlhttps://necmusic.edu/archives/nuncio-toots-mondellohttps://adp.library.ucsb.edu/names/106360"Toots" Modello"Toots" MondelloMondelloN. MondelloNucio Toots MondelloNuncio "Toots" MondelloNuncio "Toots". MondelloNuncio 'Toots' MondelloNuncio F. MondelloNuncio MondelloNunzio "Toots" MondelloPete MondelloT. MondelloToots MendelloToots MondelleToots MonelloToots MundelloТутс МонделлоMetronome All StarsLionel Hampton And His OrchestraClaude Thornhill And His OrchestraLarry Clinton And His OrchestraThe New Music Of Reginald ForesytheRuss Morgan And His OrchestraWill Bradley And His OrchestraBob Haggart And His OrchestraBilly Butterfield And His OrchestraBenny Goodman And His OrchestraCharlie Parker With StringsJerry Gray And His OrchestraDoc Severinsen And His OrchestraJoe Haymes & His OrchestraThe Alec Wilder OctetMetronome All-Star BandToots Mondello And His OrchestraDeane Kincaide's Band + +335654Joe McLewisJazz trombonistNeeds Votehttps://www.allmusic.com/artist/joe-mclewis-mn0001252544/creditsJ. McLewisJohn "Streamline" EwingMack LevisMack LewisEarl Hines And His Orchestra + +335655George OldhamGeorge D. OldhamAmerican jazz saxophonist, died June 21, 1947. +Brother of [a=Bill Oldham].Needs VoteG. OldhamGeorge OldamLouis Armstrong And His OrchestraThe Variety Boys + +335656Doc GoldbergJazz bassistNeeds Vote"Doc" Edward Goldberg"Doc" GoldbergE GoldbergE. GoldbergEdward "Doc" GoldbergEdward (Doc) GoldbergEdward GoldbergGoldbergMetronome All StarsGlenn Miller And His OrchestraWill Bradley And His OrchestraGeorge Paxton & His OrchestraWill Bradley TrioHudson-DeLange OrchestraHarris-Leigh Plus Three + +335659Don CarterDon CarterUS jazz drummer from the swing-era. He was the first husband of [a258903]. + +[b]For the rockabilly / doo wop songwriter, see [a=Don Carter (2)] +For the [a=Travis Wammack] drummer, see [a=Don Cartee][/b] + +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/201629/Carter_Donhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/201628/Carter_DonCarterD. CarterMuggsy Spanier's Ragtime BandMuggsy Spanier And His RagtimersBobby Hackett And His OrchestraJess Stacy And All His StarsMuggsy Spanier And His Orchestra + +335660Jimmy BlantonJames BlantonAmerican jazz bassist, born 5 October 1918 in Chattanooga, Tennessee, USA, died of tuberculosis 30 July 1942 in Los Angeles, California, USA. Jimmy Blanton, from Chattanooga, was +discovered at Jesse Johnson’s Deluxe Cafe when Ellington was in St. Louis, Missouri at the Coronado Hotel in 1939. According to Eddie Randle, Blanton was on the stand with the Ellington band the next night, He was recorded in an air-check with Ellington from the Coronado Hotel on November 1, 1939. + + +Please note that although the bassist is nearly universally listed with Jimmy as his first name, Jimmie was his preferred spelling. Please see this example of a book autographed with the Duke Ellington band members' signatures: + +https://www.rrauction.com/auctions/lot-detail/347102406673120-jazz-legends-hot-discography-multi-signed-book/ + +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Blantonhttps://www.allmusic.com/artist/jimmy-blanton-mn0000349181/biographyhttps://www.britannica.com/biography/Jimmy-Blantonhttps://www.treccani.it/enciclopedia/jimmy-blanton/https://www.bbc.co.uk/radio3/jazz/profiles/jimmy_blanton.shtmlhttps://adp.library.ucsb.edu/names/106021BlantonJ. BlantonJBJimmie BlantonJimmy BlautonДж. БлентонДжимми БлэнтонDuke Ellington And His OrchestraCootie Williams & His Rug CuttersBarney Bigard And His OrchestraRex Stewart And His OrchestraJohnny Hodges And His Orchestra + +335661Rudy PowellAmerican jazz saxophonist and clarinetist (but also played piano and violin). +Worked with Elmer Snowden, Dave Nelson, Sam Wooding, Kaiser Marshall, Rex Stewart, Fats Waller, Edgar Hayes, Claude Hopkins, Teddy Wilson, Fletcher Henderson, Eddie South, Don Redman and many others. + +Born : October 28, 1907 in New York City, New York. +Died : October 30, 1976 in New York City, New York. + +Needs Votehttps://en.wikipedia.org/wiki/Rudy_Powellhttps://www.allmusic.com/artist/rudy-powell-mn0000777677http://www.harlem.org/people/powell.htmlhttps://adp.library.ucsb.edu/names/112253Everard Stephen 'Rudy' PowellPowellR. PowellRudy "Jungles" PowellMusheed KarweemFats Waller & His RhythmAndy Kirk And His Clouds Of JoyTeddy Wilson And His OrchestraLucky Millinder And His OrchestraBuster Harding's OrchestraJonah Jones And His CatsHenry "Red" Allen And His OrchestraThe Saints & SinnersEdgar Hayes And His OrchestraJimmy Rushing And His OrchestraCliff Jackson & His Crazy KatsEmmett Matthews And His Orchestra + +335663Noel KilgenCorrectBob Zurke And His Delta Rhythm Band + +335665Matty MatlockJulian MatlockJulian Clifton "Matty" Matlock was an American Dixieland jazz clarinettist, saxophonist and arranger. + +Born : April 27, 1907 in Paducah, Kentucky. +Died : June 14, 1978 in Los Angeles, California. + + +From 1929-1934 Matlock replaced Benny Goodman in the Ben Pollack band doing arrangements and performing on clarinet. + +From 1935-1942, after a falling out with Pollack, Matty joined Bob Crosby in whose band he was the featured clarinetist and also doubled on saxophone in the saxophone section, as well as contribute arrangements to the band's continuously growing repertoire. + +Over his career, Matlock wrote many arrangements for various television shows, feature films and motion pictures. + +From Wikipedia, the free encyclopediaNeeds Votehttps://en.wikipedia.org/wiki/Matty_Matlockhttps://www.allmusic.com/artist/matty-matlock-mn0000330744/biographyhttps://www.imdb.com/name/nm0559155/https://adp.library.ucsb.edu/index.php/mastertalent/detail/106744/Matlock_Matty"Matty" Matlock'Matty' MatlockJ. MatlockJulian "Matty" MatlockJulian C. "Matty" MatlockJulian MatlockM. MatlockMarty MatlockMary MatlockMatlockMatt MatlockMattie MatlockMattyMatty Matlock And The Paducah PatrolMatty MattlockPete Kelly And His Big SevenWingy Manone & His OrchestraJack Teagarden And His OrchestraBen Pollack And His OrchestraMatty Matlock And The Paducah PatrolEddie Miller And His OrchestraBob Crosby And His OrchestraGordon Jenkins And His OrchestraJohn Scott Trotter And His OrchestraWingy Manone's Dixieland BandMatty Matlock And His OrchestraIrving Mills And His Hotsy Totsy GangMatty Matlock And His Dixie-MenThe Rampart Street ParadersMatty Matlock's All StarsKings Of DixielandEddie Miller's OctetGene Gifford And His OrchestraNappy Lamare's Louisiana Levee LoungersMatty Matlock And His Jazz BandThe Jack Teagarden All-StarsBen Pollack And His Pick-A-Rib BoysVic Berton And His OrchestraCharlie Lavere's Chicago LoopersRay Bauduc And The Bob-CatsJohnny Lucas And His BlueblowersGil Rodin And His OrchestraMatty Matlock's Dixielanders + +335666Spud MurphyMiko StephanovicAmerican jazz multi-instrumentalist (alto sax, oboe, etc.), bandleader, and arranger, born August 19, 1908 in Salt Lake City, died August 5, 2005. + +For the member of [a219292], see [a=Spud Murphy (2)]. +For the photographer, see [a=Spud Murphy (3)].Needs Votehttp://en.wikipedia.org/wiki/Spud_Murphyhttps://adp.library.ucsb.edu/names/109685"Spud" MurphyClaude "Spud" MurphyMurphyS. MurphyT.C. MurphyLyle MurphyClaude MurphyCharlie Barnet And His Orchestra + +335668Hal McIntyreHarold William McIntyreAmerican saxophonist, clarinetist, and bandleader. +Born: November 29, 1914 in Cromwell, Connecticut, USA. +Died: May 05, 1959 in Los Angeles, California, USA. + +He and his orchestra charted six times in the top 20's between 1945 and 1946 including three top tens with "Sentimental Journey" (#3), "I'll Buy That Dream" (#8), and "The Gypsy" (#8).Needs Votehttps://www.allmusic.com/artist/hal-mcintyre-mn0000656492/biographyhttps://en.wikipedia.org/wiki/Hal_McIntyrehttps://www.imdb.com/name/nm0570752/https://syncopatedtimes.com/hal-mcintyre-sentimental-journey-the-singles-collection-1942-48/https://adp.library.ucsb.edu/names/100047(Hal) William McIntyreHalHal MacIntyreHal Mc IntyreHal McKintyreHal. McIntyreMcIntyreGlenn Miller And His OrchestraHal McIntyre And His Orchestra + +335670John Owens[b]Not to be confused with the 1990s onwards trumpeter [a=Jon Owens] (sometimes credited as John Owens)[/b]. + +US jazz trumpeter from the swing-era. + +Needs VoteJ. OwensJohn AvensJohnny OwensOwensWoody Herman And His OrchestraRaymond Scott And His OrchestraCharlie Barnet And His OrchestraYank Lawson And His OrchestraThe Band That Plays The Blues + +335671Glenn Miller And His OrchestraGlenn Miller and his Orchestra was formed by trombonist, arranger, and composer Glenn Miller in 1938. Between 1939 and 1942, this orchestra was the best-selling dance band in the United States. + +Miller was a sideman in many different groups, beginning in 1926 with the Ben Pollack Orchestra. He was overshadowed in Pollack's band by [a=Jack Teagarden] who began taking all of the trombone solos. Miller focused on arranging and composing, and by 1928 he had already published a songbook. Miller played frequently with other sidemen who would become famous in their own rights with their orchestras, Jimmy and Tommy Dorsey and Benny Goodman. Making some recordings with "Benny Goodman's Boys" in 1928 for Brunswick, Miller was a free-lance trombonist in several bands such as those of Red Nichols, Joe Venuti, and Nat Shilkret. From the early to mid 30's Miller served as an arranger and composer for the Dorsey Brothers Orchestra and made many recordings with Bing Crosby and The Boswell Sisters for Brunswick and Decca. In 1935 he assembled the American orchestra for Ray Noble. +Anxious to break out on his own, Miller formed his first orchestra in 1937 and made his first recordings as the Glenn Miller Orchestra for [l=Brunswick], [l=Vocalion (2)] and [l=Decca]. By 1938, the band was unsuccessful and starving to death and disbanded. Miller revamped his style and arranging and created the second and massively popular Glenn Miller Orchestra. +In September 1938 the band made its first in a long list of recordings for Victor subsidiary [url=https://www.discogs.com/label/20955-Bluebird-3]Bluebird[/url]. In the spring of 1939, after a stint at the Meadowbrook Ballroom and Glen Island Casino, the orchestra's popularity soared. By 1939 Miller's band was tops in the jukeboxes and was the most popular orchestra until 1942 when Miller went into the service during WWII. From December 1939 to September 1942 Miller had a radio program broadcast three times a week. The band's records sold millions, and Miller was awarded the first Gold Record for "Chattanooga Choo Choo" in 1941. In addition, the band appeared in several motion pictures. + +By Joel Whitburn's tabulation, in less than four years the group saw 16 US number-one hits, as well as 6 Australian number-ones (three of which didn't top the US charts). The amount of hit singles Miller and his Orchestra had in such a short amount of time proved to be one of the greatest chart runs in history. "In the Mood" became an anthem of the swing craze and the most lasting of even his biggest records. The group sold over 60 million records, the most of any dance band. + +In the wake of Pearl Harbor, the very patriotic Miller joined the Army Air Forces where he would develop a modern military band for morale raising. The orchestra disbanded to a very emotional crowd at the Central Theater in Passaic, NJ on September 27, 1942. On December 15, 1944, Miller mysteriously disappeared over the English Channel. He was recognized as a war hero. The band's music never left the American public. Despite never recording a studio album, Miller and his Orchestra scored three posthumous Billboard number-one compilation albums as well as album certifications spanning several countries several decades after his death at age 40. + +[b] Use [a=The Glenn Miller Orchestra] for recordings WITHOUT [a=Glenn Miller] (who died in 1944). +See also: [a=The New Glenn Miller Orchestra] [/b]Needs Votehttps://en.wikipedia.org/wiki/Glenn_Miller_Orchestrahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106747/Glenn_Miller_Orchestra?Matrix_page=100000BandDas Orchester Glenn MillerDie Original Glenn Miller Big BandG Miller & The OrchestraG. Miller & His OrchestraG. Miller And His OrchestraG. Miller E La Sua OrchestraG. Miller Y Su OrquestraG. MillersGlen Miller & His OrchestraGlen Miller And His OrchestraGlen Miller E La Sua OrchestraGlen Miller Og Hans OrkesterGlen Miller OrchestraGlen Miller Y Su Orq.Glenn MIller E La Sua OrchestraGlenn MillerGlenn Miller & His OrchestraGlenn Miller & And His OrchestraGlenn Miller & His Army Air Force BandGlenn Miller & His Orch.Glenn Miller & His OrchestraGlenn Miller & His OrchstraGlenn Miller & Orch.Glenn Miller & OrchestraGlenn Miller & Son OrchestreGlenn Miller & The Glenn Miller OrchestraGlenn Miller & his Orch.Glenn Miller + His OrchestraGlenn Miller AEP OrchestraGlenn Miller And & OrchestraGlenn Miller And His BandGlenn Miller And His Chesterfield OrchestraGlenn Miller And His OrchGlenn Miller And His Orch.Glenn Miller And The BandGlenn Miller And The UK OrchestraGlenn Miller BandGlenn Miller Big BandGlenn Miller Big Band OrchestraGlenn Miller Bigband OrchestraGlenn Miller E La Sua OrchestraGlenn Miller E Sua OrquestraGlenn Miller E la Sua OrchestraGlenn Miller En Zijn OrkestGlenn Miller Et Miembros De Su OrquestaGlenn Miller Et Son Grand OrchestreGlenn Miller Et Son OrchestreGlenn Miller His Orchestra And VocalistsGlenn Miller Miembros De Su OrquestaGlenn Miller Mit Seinem OrchesterGlenn Miller OGlenn Miller Og Hans OrkesterGlenn Miller OrchGlenn Miller Orch.Glenn Miller OrchestraGlenn Miller Orchestra, TheGlenn Miller OrkestereineenGlenn Miller OrquestraGlenn Miller U. S. OrchesterGlenn Miller Und Sein OrchesterGlenn Miller Y Su Gran OrquestaGlenn Miller Y Su OrquestaGlenn Miller Y Su OrquestraGlenn Miller Y Su QrquestaGlenn Miller and His Orch.Glenn Miller and his Orch.Glenn Miller und sein OrchesterGlenn Miller y Su OrquestaGlenn Miller& His OrchestraGlenn Miller's Big BandGlenn Miller's OrchestraGlenn Millers OrchestraGlenn Millers OrkesterGlenn MillersOrchestraGlenn Miller’s Orch.His OrchestraLa Orquesta De Glenn MillerMiller Big Band OrchestraMiller Bigband OrchestraOrch. Glenn MillerOrchester G. MillerOrchestraOrchestra Glenn MillerOrchestre Glenn MillerOrchestres Glenn MillerOrkestar Glenna MilleraOrquesta De Glen MillerOrquesta Glenn MillerThe BandThe Glenn Miller BandThe Glenn Miller OrchestraThe Masters Of RhythmThe Miller OrchestraThe One And Only Glenn Miller BandThe OrchestraThe Original Glenn Miller & His OrchestraThe Original Glenn Miller OrchestraThe Real Glenn Miller And His OrchestraThe World Famous Glenn Miller OrchestraГ. Миллер И Его ОркестрГленн Миллер И Его ОркестрОркестр Под Управлением Глена Миллераオリジナル・サウンドトラックグレン・ミラー楽団グレン・ミラー楽団Glenn MillerChummy McGregorBilly MayAl KlinkJohn BestBobby HackettWilbur SchwartzPaula KellyJoe GarlandMaurice PurtillClyde HurleyJerry GrayTex BenekeRay EberleEddie DurhamBabe RussinRay AnthonyBunny BeriganLouis R. MucciAl EpsteinAl MastrenJohnny MinceClaude ThornhillAlec FilaErnie CaceresEddie Miller (2)Frank D'AnnolfoRichard FisherRay BauducJimmy AbatoPaul TannerDoc GoldbergHal McIntyreCharlie SpivakFrank CarlsonDale McMickleHarold TennysonLegh KnowlesJimmy PriddyRolly BundockTrigger AlpertTommy Mack (2)Stanley AronsonBob PriceGerald YelvertonBill Conway (2)Arthur EnsCharles FrankhauserHoward Smith (4)Jack LathropBill StegmeyerJohnny AustinJacob KrachmalnickMickey McMickleBud Smith (2)Delmar KaplanBob Spangler (2)Cody SandiferMembers Of Glenn Miller's Orchestra, TheBill Abel (4) + +335672Charlie SpivakCharles SpivakCharlie Spivak (born February 17, 1905 (or) 1907 (probably), Kiev, Ukraine - died March 1, 1982, Greenville, South Carolina, USA) was a Ukrainian-born American jazz trumpeter and bandleader. He worked with: [a984464]'s Orchestra, [a1787788]'s Orchestra (1924-'30), [a357512] (1931-'34), [a2220093] (1934-'35) and [a503363]. During the years 1936 and 1937, he recorded in studios with the orchestras of [a527956], [a229639] and [a301372]. In November 1939, he formed his own band which was successful and continued until 1959. In 1950 he married [a381569] who became his manager until her death in 1971.Needs Votehttps://en.wikipedia.org/wiki/Charlie_Spivakhttps://www.imdb.com/name/nm0819206/https://www.allmusic.com/artist/charlie-spivak-mn0000214702/https://libguides.furman.edu/special-collections/charlie-spivak-papers/biographical-sketchhttp://www.bigbandlibrary.com/charliespivak.htmlhttps://adp.library.ucsb.edu/names/102208C. SpivackC. SpivakCSCharles SpivakCharles Spivak (CS)Charlie SpirakCharlie SpivackCharlie Spivak And His Trumpet & OrchestraSoivakSpivakTommy Dorsey And His OrchestraMetronome All StarsGlenn Miller And His OrchestraJack Teagarden And His OrchestraCharlie Spivak And His OrchestraClaude Thornhill And His OrchestraLarry Clinton And His OrchestraRay Noble And His OrchestraBen Pollack And His OrchestraBob Crosby And His OrchestraAll Star Band (4)Benny Goodman And HIS All StarsGil Rodin And His Orchestra + +335673Bob Zurke And His Delta Rhythm BandCorrectBob Zurke & His BandBob Zurke & His Delta Rhythm BandBob Zurke & His Delta Rhythm BoysBob Zurke & His OrchestraBob Zurke And His BandBob Zurke And His Delta Rhythm BoysBob Zurke E Sua Orchestra De RythmosThe Ole Tom-cat Of The Keys Bob Zurke & His Delta Rhythm BandBob ZurkeHobart SimpsonCharles SperoMac ZazmarAl SidellNoel KilgenWayne Williams (3)Marty BermanHarry Cohen (3)Chelsea QuealeyHoward GaffneyArt WamserJohn Gassoway + +335674Artie Shaw And His OrchestraAmerican big band led by [a=Artie Shaw] in the swing and bebop era. + +[a=Artie Shaw]’s first public appearance leading his own band was in his native New York City on May 24th, 1936. The band recorded its first session on June 11, 1936 in New York. From 1937-38, Shaw renamed the band "[a=Art Shaw and His New Music]," and in 1938, it was changed back to "Artie Shaw and His Orchestra." Shaw became one of the biggest names in jazz during the heyday of swing in the 1930’s and 1940’s. He broke the racial divide by becoming the first white bandleader to hire a featured African-American vocalist when he brought [a=Billie Holiday] on board in 1938. Shaw also played with vocalist [a=Lena Horne] and trumpeter [a=Roy Eldridge], as well as many other musicians of color. + +In 1939, the orchestra became the house band at the [l=Cafe Rouge Hotel Pennsylvania, N.Y.C.] The band also made several musical short films in 1939 for Vitaphone and Paramount Pictures. In 1940 Shaw formed a new jazz band in Hollywood, resulting in the hit ‘Frenesi.’ The following year, Shaw formed a big band with seven brass, five saxes, four rhythm, and fifteen strings. In 1942, Shaw joined the US Navy, served in the Pacific, formed a band that played for Navy personnel. After returning from the Navy, Shaw formed a new band in Hollywood with eight brass, five saxes, and no strings, recording for [l=RCA Victor]. In 1945, Shaw signed with independent label [l=Musicraft] after RCA Victor contract expired (some of these recordings featured the young singer [a=Mel Tormé]). Shaw made several recordings for [l=Columbia] in 1949, as well as making transcription recordings for [l=Thesaurus] in December 1949. The band recorded for [l=Decca] from December 1949 to July 1953. The last recording featuring Shaw on clarinet was Capitol album ST-2992 "[m317670]." + +Opinions are divided but many consider Artie Shaw to be the best clarinetist ever, even better than [a=Benny Goodman]. In 1954, Artie Shaw made his last public appearance as an instrumentalist, and his last recording on clarinet in November 1955 when he put together a new [url=https://www.discogs.com/artist/335570]Gramercy 5[/url]. Shaw spent much of the second half of his life devoted to writing and other pursuits. In 1983 Shaw formed a new band and selected clarinetist [a=Dick Johnson (3)] as bandleader and soloist. Dick Johnson fronted the orchestra for 25 years until his retirement in 2008. The band now features clarinetist [a=Matt Koza].Needs Votehttps://en.wikipedia.org/wiki/Artie_Shawhttps://www.artieshaworchestra.com/https://artieshaw.com/A Shaw And His Orch.A. Shaw E La Sua OrchestraA. Shaw Y Su OrquestraArt Shaw & His OrchestraArt Shaw And His Orch.Art Shaw And His OrchestraArte Shaw OrchestraArthur Shaw And His Orch.Arthur Shaw's Swing String EnsembleArtie ShawArtie Shaw Y Su OrquestaArtie Shaw & His BandArtie Shaw & His OrchArtie Shaw & His Orch.Artie Shaw & His OrchestraArtie Shaw & Orch.Artie Shaw & OrchestraArtie Shaw & Son OrchestreArtie Shaw + String SectionArtie Shaw And & OrchestraArtie Shaw And His BandArtie Shaw And His Famous OrchestraArtie Shaw And His MusiciansArtie Shaw And His New OrchestraArtie Shaw And His OrchArtie Shaw And His Orch.Artie Shaw And His Orch. With Chorus & Orch.Artie Shaw And Orch.Artie Shaw And OrchestraArtie Shaw And The RhythmakersArtie Shaw E La Sua OrchestraArtie Shaw E Sua OrquestraArtie Shaw Et Son OrchestreArtie Shaw His OrchestraArtie Shaw I Njegov OrkestarArtie Shaw O.Artie Shaw Og Hans OrkesterArtie Shaw Orch.Artie Shaw OrchestraArtie Shaw OrkestereineenArtie Shaw OrquestaArtie Shaw Und Sein OrchesterArtie Shaw With His Fabulous OrchestraArtie Shaw Y Su ConjuntoArtie Shaw Y Su OrquestaArtie Shaw y su OrquestaArtie Shaw's OrchestraArtie Shaws OrkesterArtie Shaw’s OrchL'Orchestra Di Artie ShawL'orchestra Dl Artie ShawMembers Of Artie Shaw OrchestraMembers Of The Artie Shaw OrchestraOrch. A. ShawOrch. Artie ShawOrchester Artie ShawOrchestra Artie ShawOrquesta Artie ShawRhythm MakersThe Artie Shaw OrchestraThe BandThe Rhythm MakersThe Rhythm Makers (Artie Shaw Orchestra)Арти Шоу (Кларнет) И Его ОркестрАрти Шоу И Его ОркестрОркестр А. Шоуアーティ・ショウ楽団Art Shaw And His New MusicThe Melody Masters (3)Buddy RichChuck GentryRandall MillerBilly TaylorBarney KesselAl KlinkJohn BestBernie PrivinClyde HurleyHank FreemanJerry GrayRoy EldridgeBabe RussinJerry JeromeGeorge KoenigHymie SchertzerArnold FishkinDanny BankDon FagerquistArtie ShawHot Lips PageBernie GlowNeely PlumbDodo MarmarosaGeorge BarnesArt DrelingerWillie KelleyRay ConniffEdgardo SoderoDave BarbourHelen ForrestGeorgie AuldRay LinnWes VaughanBill RankManny KleinBilly ButterfieldBob SwiftTommy ToddHerbie HaymerAllan ReussGeorge WendtStan FishelsonHeinie BeauSkeets HerfurtFrank BeachAl HendricksonHoyt BohannonSam WeissBill SchaefferGeorge ArusHarry RodgersBilly Taylor Sr.Sid WeissGeorge WettlingRussell BrownLes RobinsonAl AvolaDave ToughBob KitsisMike BryanChuck PetersonSonny WhiteTony PastorHarry GellerLes JenkinsMax KaminskyClaude BowenChano PozoJack JenneyJohnny BlowersSi ZentnerVernon BrownNick FatoolMilt RaskinJoe HowardPaul CohenCharles CoolidgeJohnny GuarnieriGeorge SchwartzJud DenautTony FasoPhil StephensMorris RaymanEddy McKimmeyTom MaceHerb StewardCharlie DiMaggioPat McNaughtonLee CastaldoMickey FolusMorey SamuelDick ClarkSteve LipkinsCliff LeemanBuddy MorrowHarry KleeDan LubeAllan HarshmanJimmy RaneyChris Griffin (3)Jimmy NottinghamBill SchumannAlex BellerZeke ZarchyRonnie PerryGene LamasBus BasseyLes BurnessTed VeselyBart VarsalonaElmer SmithersBob LawsonBruce SquiresPaul RobynRichard PerissiFrank SocolowArtie ShapiroHenderson ChambersBobby ByrneJoe LipmanShep ShepherdHerbert LawsonHarold Johnson (2)Lou SingerOllie WilsonStanley WebbMilt YanerEd KusbyDon PaladinoMorton FriedmanDon RaffellSonny RussoDick NivesonAlex LawFred GoernerVictor FordStanley SpiegelmanIrv KlugerPorky CohenHarold LawsonFreddy ZitoGil BarriosLou PrisbyGus DixonMort BullmanJimmy ShirleyImogene LynnBobby SherwoodSkitch HendersonSam RossArtie BakerJack CaveLou FrommBud CarltonCarl MausTony GottusoMark Bennett (3)Ben KanterAngie CalleaJon WaltonStan WrightsmanCharlie MargulisJohn AltwergerJack CathcartJimmy CathcartBabe BowmanRudolph TanzaPhil NemoliBlake ReynoldsGeorge ThowBud CarletonJack StaceyAnita BoyerLew EliasTed KlagesMorris KohnEd McKinneyBen GinsbergLes Clarke (2)Truman BoardmanTom DiCarloFred Petry (2)Bob MorrowRalph RosenlundSid BrokawJimmy PupaPauline ByrneArt MastersLyle BowenBill Holcombe (2)Frank SiegfriedBart WallaceMike Michaels (3)Joseph KrechterNicolae Ochi AlbiDale PearceDan PalladinoEddie McKimmeySam PersoffGene StultzPat Lockwood (2)Sandy BlochRobert Rodriguez (9)Spencer PrinzDeacon DunnDave Williams (54)Shop Shepherd + +335676Bobby BurnetRobert W. BurnetJazz trumpeter, born 1912 in Chicago, died August 3, 1984 in Guadalajara, Mexico. +After moving to New York, Burnet worked and recorded with [a=Charlie Barnet] 1938-1942. He later recorded with Freddie Wacker's Windy City Seven c. 1957, and moved to Mexico in 1958.Needs VoteBob BurnetBobby BurnettBurnetRobert BarnetRobert Burnetrobert burnetCharlie Barnet And His Orchestra + +335760Gustav HolstGustavus Theodor von HolstEnglish composer (born September 21 in Cheltenham, 1874; died May 25, 1934 in London). + +He is most famous for his orchestral suite The Planets. His music was influenced by Indian spiritualism and English folk tunes, and is well known for unconventional use of meter and haunting melodies. +Father of [A=Imogen Holst].Needs Votehttps://www.gustavholst.info/https://x.com/gustavholstinfohttps://en.wikipedia.org/wiki/Gustav_Holsthttps://www.britannica.com/biography/Gustav-Theodore-Holsthttps://www.imdb.com/name/nm0392304/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102544/Holst_Gustavhttps://www.wikitree.com/wiki/Holst-423G HolstG. HolstG. HolstsG. T. HolstG. V. HolstG. ホルストG.HolstG.HolstsG.T. HolstGT HolstGustaf HolstGustan HolstGustav HoistGustav HolsGustav HoltzGustav T. HolstGustav T. HoltzGustav Theodor HolstGustav Theodore HolstGustav Theodore Von HolstGustav Von HolstGustav von HolstGustave HolstGustavus Theodor HolstGustavus Theodore Von HolstGustaw HolstGustov HolstHoistHoldtHols tHolstHolst G.Holst, G.HorstΓκούσταβ ΧολστГ. ХолстГустав ХолстХолстХольстグスターヴ・ホルストホルスト + +336120Rob CrowderRobert Crowder1950s-1980s jazz, blues, and soul drummer from Chicago, IllinoisNeeds VoteBob CrowderBob Crowder Jr.Bob Crowder, Jr.CrowderRobert CrowderRobert L. CrowderPete Jones (5)Gil Evans And His OrchestraThe Hardy Boys (3)The Roscoe Mitchell Art EnsemblePhilip Cohran & The Artistic Heritage Ensemble + +336122Gerry NiewoodGerard Joseph NevidoskyAmerican saxophone (tenor, soprano) and flute player, born April 6, 1943 in Rochester, N.Y., died in a plane crash near Buffalo, New York on February 12th, 2009. +Gerry Niewood was best known for his association with Chuck Mangione. Niewood was a talented multi-instrumentalist who had appealing sounds and styles on tenor, soprano, and flute. He attended the University of Buffalo and first joined Mangione's band in 1968, but continued studying until he gained a degree from the Eastman School of Music in 1970. Niewood was with Mangione through 1976 and appeared on most of his famous records, adding a strong jazz flavor to the music; however, his solo career never achieved real success (he recorded two obscure albums, in 1976 and 1978, as a leader for A&M). Niewood had a post-bop quartet with Dave Samuels from 1976-1977, led the Sunday Morning Jazz Band in the early '80s, and played with Joe Beck a few years later. But he mostly worked in the studios and freelanced in low-profile jobs until rejoining Mangione in the mid-'90s when the flügelhornist began his comeback -- although Niewood's 2004 album Facets proved the saxophonist/flutist's strengths as a session leader in his own right during the 21st century. He played with Mangione up until February 12, 2009, when, tragically, Niewood and bandmate Coleman Mellett died in the crash of Colgan Air Flight 3407 en route from Newark to Buffalo, where they were scheduled to appear with Mangione and the Buffalo Philharmonic Orchestra the following evening.Needs Votehttps://en.wikipedia.org/wiki/Gerry_NiewoodG. NiewoodGeary NiewoodGerald NielwoodGerard J. NiewoodGerard NiewoodGerry NeiwoodGerry NielwoodJerry NeiwoodJerry NiewoodNiewoodGil Evans And His OrchestraChuck Mangione QuartetLalo Schifrin & OrchestraDavid Matthews OrchestraNational Jazz EnsembleGerry Mulligan And His OrchestraDoug Sertl Big BandWally Dunbar Jazz ElevenButch Miles' Jazz ExpressThe Gerry Niewood QuartetBill Goodwin QuartetThe Randy Sandke Quintet + +336123George AdamsGeorge Rufus AdamsJazz saxophonist, flutist, clarinetist +Born April 29, 1940 in Covington, Georgia, died November 14, 1992 in New York City +Needs Votehttps://en.wikipedia.org/wiki/George_Adams_(musician)AdamsG. Adamsジョージ・アダムスGil Evans And His OrchestraThe Fatback BandGeorge Adams - Don Pullen QuartetGeorge Adams QuintetPhalanx (4)Mingus DynastyThe Monday Night OrchestraGeorge Adams QuartetReggie Workman FirstNew York UnitOrange Then BlueBlue Brass Connection + +336324David HungateWilliam David HungateAmerican bassist, born August 5, 1948 Troy, Missouri. Noted as a member of Los Angeles pop-rock band [a=Toto] from 1977-1982. [a=Boz Scaggs]'s "Silk Degrees" album of 1976 included Hungate and several other future members of Toto. Hungate's tracks featured the "hook" popping bassline on the single "Lowdown," and the lyrical bass fills on "Harbor Lights" and "We're All Alone." Since 1982 he has worked as a session musician in Nashville and has worked with [a=Greg Lake], [a=Bryan Adams], [a=Dolly Parton], [a=Rosanne Cash] and [a=Melissa Manchester] among others. Hungate also plays guitar, saxophone and trombone and has produced and recorded with several country artists. + +He has performed on hundreds of albums, movie scores, TV shows and commercials and has won four Grammys for his work with Toto and [a=Chet Atkins]. David Hungate along with the other members of Toto inducted into the Musicians' Hall of Fame in Nashville in 2009. +Needs Votehttps://web.archive.org/web/20230829145934/http://www.toto99.com/band/former/hungate.shtmlhttps://en.wikipedia.org/wiki/David_Hungatehttps://www.allmusic.com/artist/david-hungate-mn0000182777D. HungateDave HungateDavidDavid HumgateDavid HungethHungateWilliam D. HungateWilliam David HungateWilliam HungateEd HuduHungus HuduTotoMecca (6)Rake And The SurftonesThe Willie Burgundy Five1:00 O'Clock Lab Band + +336325Harry BluestoneHarold B. BlosteinBritish born violinist and concertmaster. + +Born on 30.09.1907. +Died on 22.12.1992 of tuberculosis. + +He moved to New York as a boy. He made a fabulous career in Hollywood and the record business.Needs Votehttps://en.wikipedia.org/wiki/Harry_Bluestonehttps://www.imdb.com/name/nm0089581/https://adp.library.ucsb.edu/names/106938Blue StoneBluestoneBluestone HarryH. BluestoneHarold BluestoneHarry Blue StoneHarvey BluestoneMr. Harry BluestoneHarry James And His OrchestraBenny Goodman And His OrchestraThe Gene Page OrchestraThe Harry Bluestone String EnsembleHarry Bluestone SectionLou Bring And His OrchestraHarry Bluestone String SectionJohnny Richards And His OrchestraHarry Bluestone & His OrchestraThe Wrecking Crew (6) + +336415Buddy MorrowMuni ZudekoffAmerican jazz trombonist and bandleader. +Born February 8, 1919 in New Haven, Connecticut. +Died September 27, 2010 (91 years of age) in Ormond Beach, Florida. +Morrow won a scholarship to Juilliard School in New York City but left before graduation to play professionally. +Morrow played with Tommy Dorsey (1938), Paul Whiteman (1939), Tony Pastor (1940), Bob Crosby, Billy Butterfield, and Red McKenzie. In 1951 he formed his own band which got its first huge and lasting hit in 1952 with "Night Train" (written by Jimmy Forrest) of which one million copies were sold. He charted six times between 1951 and 1956 with his orchestra on the U.S. and U.K. charts. His top charted song was "Rose, Rose, I Love You", which hit #8 in 1951. "Night Train" followed it and hit #27 the same year in the U.S. and #14 in the U.K. Three other releases landed in the top 20 in the U.S. +He became a bandleader in 1945 covering for Jimmy Dorsey. He formed the Buddy Morrow Orchestra in 1947 until 1968 and worked with Skitch Henderson and Doc Severinsen on the "Tonight Show" band in the 1960s when the show was based in New York City. +He conducted the Tommy Dorsey Orchestra for over 30 years and was the director of The Glenn Miller Orchestra after its hey-day. In the early 1970s, he formed a jazz quartet that played in the Las Vegas and Los Angeles areas. He was still performing on stage three days before he died.Needs Votehttps://en.wikipedia.org/wiki/Buddy_Morrowhttps://www.imdb.com/name/nm1301230/https://www.buddymorrowproductions.com/buddy-morrow.htmlhttps://glennmillerorchestra.com/buddy-morrow/https://adp.library.ucsb.edu/names/103676B. MorrowBuddy Sensational! MorrowMorrowMuni MorrowMunie "Buddy" MorrowThe Buddy Morrow OrchestraMoe ZudekoffArtie Shaw And His OrchestraBob Crosby And His OrchestraBuddy Morrow And His OrchestraThe RagtimersBuddy Morrow And His "Night Train"Tommy Dorsey BandBuddy Morrow's Trombone TrioUrbie Green And Twenty Of The "World's Greatest"Amanda Randolph And Her Orchestra + +336800Pete TerryAmerican baritone saxophone playerNeeds VoteGerald Wilson OrchestraGeorgie Auld And His OrchestraSi Zentner & His Dance Band + +336804Harry KleeHarry G. Klee (1921-1998) was an American flutist, clarinetist, and saxophonist. He was one of the earliest recorded jazz artists to perform on the flute. + +Klee hailed from Washington D.C. where he started his music studies. He later relocated to New York and then Los Angeles where he became a studio musician initially working for Columbia Pictures. + +He joined Ray Linn`s Orchestra in the mid-1940`s with whom he made some of the earliest recordings to feature the flute in jazz following Albert Socarras in the late 1920`s and Wayman Carver in the early 1930`s. The group was also broadcast on radio which brought wider attention to the flute`s use as a jazz instrument, subsequently bringing it acclaim briefly. He is thus seen as precursor and inspiration to later jazz flutists who helped to solidify the instrument`s acceptance in the 1950`s such as Herbie Mann and Buddy Collette, both of whom had high regard for Klee. He was also the first to utilize the bass flute on a jazz record with Jimmy Giuffre and as a member of Buddy Collette`s Swinging Shepards. + +Klee also worked in the groups of Charlie Spivak, Benny Goodman, Mel Torme with Sonny Burke And His Orchestra, Artie Shaw, Boyd Raeburn, Pete Rugolo, Stan Kenton, Gene Krupa, Johnny Mandel, Sammy Davis Jr., Henry Mancini, Neal Hefti, Nelson Riddle, and Frank Sinatra among many others. + +He was active as a studio musician in Hollywood where he played on numerous film and TV scores such as Breakfast at Tiffany's (film), Hatari!, Days of Wine and Roses (film), The Pink Panther (1963 film), Von Ryan's Express,The Great Race, Batman (1966 film), The Devil's Brigade (film), The Omega Man, The Streets Of San Francisco, Planet of the Apes (TV series), Escape to Witch Mountain (1975 film), Buck Rogers in the 25th Century (TV series), and Caddyshack. +Needs Votehttps://www.imdb.com/name/nm4068027/https://www.allmusic.com/artist/harry-klee-mn0001186768/https://rateyourmusic.com/artist/harry_klee/Harry G. KleeHenry KleeKleeArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraGerald Wilson OrchestraHenry Mancini And His OrchestraPete Rugolo OrchestraBuddy Collette And His Swinging ShepherdsThe Gerald Wilson Big BandPete Rugolo And His All StarsThe Marty Paich OctetThe Bill Miller SextetFrank Sinatra And SextetNeal Hefti And His Jazz Pops OrchestraThe Jack Marshall SextetteRay Rasch And The Pipers 10 + +336808Raphael KramerCellist.Needs Votehttps://www.feenotes.com/database/artists/kramer-raphael/https://www.imdb.com/name/nm1149545/R. KramerR.KramerRaphael "Ray" KramerRaphael 'Ray' KramerRaphael (Ray) KramerRaphael <<Ray>> KramerRaphael KraemerRaphael KramarRaphael Ray KramerRau KramerRay CramerRay CreamerRay KramerRaymond KramerRey KramerHarry James And His OrchestraGordon Jenkins And His OrchestraMilt Jackson & StringsThe Buddy Bregman Orchestra + +336809Sam CaplanViolinist.Needs Votehttps://www.allmusic.com/artist/sam-caplan-mn0001221571/creditsCaplanSam CapllanSam KaplanSammy CaplanSamuel CaplanHarry James And His OrchestraNeal Hefti's OrchestraCharlie Parker With StringsHarry James & His Music Makers + +336811James ZitoJames “Jimmy” Zito American trumpet player. +Born May 22, 1923 in Chicago, Illinois, USA. +Died February 2, 2014 in Woodland Hills, California, USA. +Married to actress [a=June Haver] (1947- 1948, divorced). +Zito was a member of the Ted Fio Rito Orchestra.Needs Votehttps://www.allaboutjazz.com/musicians/jimmy-zito/https://www.imdb.com/name/nm3887656/https://www.findagrave.com/memorial/242897414/james-zitoJ. ZitoJZJames C. ZitoJames Zito (JZ)Jim ZitJim ZitoJimmie ZitoJimmy ZitoZitojimmy ZitoTommy Dorsey And His OrchestraLes Brown And His OrchestraGerald Wilson OrchestraThe Abnuceals Emuukha Electric OrchestraLouie Bellson Big BandBob Florence Big BandShorty Rogers Big BandThe Gerald Wilson Big BandJimmy Zito, His Trumpet And His OrchestraLouie Bellson's Big Band Explosion! + +336812Uan RaseyAmerican jazz trumpet player. + +Born: August 21, 1921 in Glasgow, Montana. +Died: September 26, 2011 in Los Angeles, California.Needs Votehttps://en.wikipedia.org/wiki/Uan_Raseyhttps://www.imdb.com/name/nm0711107/https://adp.library.ucsb.edu/names/339240RaseyRasey UanU. RaseyUan C. RaseyUon RaseyVan RaseyYan RasetYan RaseyHarry James And His OrchestraLes Brown And His Band Of RenownBilly May And His OrchestraBenny Carter And His OrchestraPete Rugolo OrchestraGordon Jenkins And His OrchestraStanley Wilson And His OrchestraHarry James & His Music MakersLouie Bellson OrchestraThe Buddy Bregman OrchestraTutti's TrumpetsSi Zentner & His Dance Band + +336814Dan LubeViolinist.Needs VoteDan Lube And His Dancing ViolinDaniel 'Dan' LubeDaniel LubeHarry James And His OrchestraThe Warner Bros. Studio OrchestraArtie Shaw And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraThe Buddy Bregman Orchestra + +336818Frank CarlsonUS jazz drummer from the swing-era. + +Born : May 05, 1914 in New York City, New York. +Died : May 19, 1996. + +Coming from a background in the big band and swing jazz of the '30s, Frank Carlson became a busy studio-session drummer who played on a huge stack of hit records, including sides by [a=Doris Day], [a=Bing Crosby], and [a=Elvis Presley]. + +His cache with hipsters comes mostly from getting the studio call to back up the brilliant actor, hell-raiser, and occasional recording artist [a=Robert Mitchum], while Carlson's most prominent jazz job was holding down the drum throne in the [a=Woody Herman] band from 1937-1942. + +He later was Fred Astaire's choice for playing on his movie soundtracks in the 40's. + +Needs Votehttp://www.answers.com/topic/frank-carlsonhttps://www.allmusic.com/artist/frank-carlson-mn0001634771/creditsCarlsonF. CarlsonFranck CarlsonFrank CarlsenFrank CarlssonFrank J. CarlsonFrank L. "Frankie" CarlsonFrank L. CarlsonFrankie CarlsonWoody Herman And His OrchestraGlenn Miller And His OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersIsham Jones OrchestraThe Mel Powell SeptetSpike Jones & His Other OrchestraLou Bring And His OrchestraThe Los Angeles Neophonic OrchestraFrank Carlson's QuartetWoody Herman's Four ChipsThe Band That Plays The Blues + +336821Lou RadermanLouis RadermanAmerica concert master and violinist, active since 20's. +He was long time the leading violinist and concert master of the [l61808] Studio Orchestra (20's/30's) +and concert master of [a289567] (from late 30's to the 60's). +Brother of [a988554], married with [a8148357] (1950) + +Born: July 3,1902 in NYC, New York +Dead: October 1981 in Los Angeles, CaliforniaNeeds Votehttp://adp.library.ucsb.edu/index.php/talent/detail/44309/Raderman_Lou_instrumentalist_violinL. RadermanLew RadermanLou RadermannLouis 'Lou' RadermanLouis RadermanMarie GravelleHarry James And His OrchestraMGM Studio OrchestraGordon Jenkins And His OrchestraPlantation Dance OrchestraGreen Brothers' Novelty BandThe Buddy Bregman OrchestraThe Universal-International OrchestraJack Shilkret's OrchestraHarry Raderman's Jazz OrchestraHarry Raderman's Dance OrchestraPelham Inn Society OrchestraVictor Salon OrchestraPlantation Jazz OrchestraRay Beagle And His Hounds Of MusicBal Taberin Jazz OrchestraRaderman's Novelty OrchestraLou Raderman And His Orchestra + +336824Allan HarshmanViola player.Needs VoteA. HarshmanA.HarschmanAl HarshmanAlan HarshmanAlla HarshmanAllah HarshmanAllan HaishmanAllan HatshmanAllan HershmanAllen HarshmanHarshmanHarshman AllanHarry James And His OrchestraArtie Shaw And His OrchestraMilt Jackson & StringsHarry James & His Music MakersModern String Ensemble + +337094John Williams (7)John Christopher Williams AO OBEAustralian virtuosic classical guitarist renowned for his ensemble playing as well as his interpretation and promotion of the modern classical guitar repertoire. + +Born April 24, 1941 in Melbourne, Victoria, Australia. + +Although Williams is best known as a classical guitarist, he has explored many different musical genres. Between 1978 and 1984 he was a member of the fusion group Sky. + +He is also a composer and arranger. At the invitation of producer Martin Lewis he created a highly acclaimed classical-rock fusion duet with rock guitarist Pete Townshend of The Who on Townshend's anthemic "Won't Get Fooled Again" for the 1979 Amnesty International benefit show The Secret Policeman's Ball. +The duet featured on the resulting album and the film version of the show – bringing Williams to the broader attention of the rock audience.Needs Votehttps://en.wikipedia.org/wiki/John_Williams_%28guitarist%29https://web.archive.org/web/20031125111521/https://www.johnwilliamsguitar.com/https://www.johnwilliamsguitarnotes.com/https://web.archive.org/web/20031209103115/https://www.sonyclassical.com/artists/williams_guitar/https://www.sonyclassical.com/artists/artist-details/john-c-williamshttp://plum.cream.org/williams/https://www.bach-cantatas.com/Bio/Williams-John-Guitar.htmhttps://www.imdb.com/name/nm0930932/https://www.allmusic.com/artist/john-williams-mn0000815705https://historyofaussiemusic.blogspot.com/search/label/John%20WilliamsDž.V.J. WilliamsJ.W.J.ウィリアムスJohnJohn Christopher WilliamsJohn WilliamsJohn Williams, GuitarT. WillamsWilliamsДж. УильямсДжон Уильямсジョン・ウィリアムスジョン・ウィリアムズ約翰威廉士Sky (4)Liszt Ferenc Chamber Orchestra + +337593Martin AllenBritish percussionist. He specializes in contemporary chamber music.Needs Votehttps://www.imdb.com/name/nm4380244/Gavin Bryars EnsembleLondon Sinfonietta + +337626Roger GreenawayRoger John Reginald GreenawayBorn August 23, 1938 in Fishponds, Bristol, UK. [b]When credited together with Cook, use the entry [a1274131][/b] +Needs Votehttps://en.wikipedia.org/wiki/Roger_Greenawayhttps://www.imdb.com/name/nm0338443/A R.GreenawayA Roger Greenaway ProductionA. GreenawayAwayGreen AwayGreenawayGreenaway, Roger John ReginaldGreene WayGreeneawayGreenewayGreenwayGrenawayH. GreenawayJ. R. GreenawayJ.R. GreenawayJon Roger GreenawayR GreenawayR. GreenawayR. GreebawayR. GreenaewayR. GreenawayR. GreenawayesR. GreenhalchR. GreenwayR.GreenawayR.GreenwayRegor YawaneergRogerRoger BreenwayRoger GreenwayRoger John GreenawayRoger John GreenwayRoger John Reginald GreenawayS. GreenawayT. GreenawayГринвейКук и ГринвейBrotherhood Of ManBlue MinkWhite PlainsDavid & JonathanThe PipkinsThe KestrelsCook-GreenawayCurrant Kraze + +337647Grachan MoncurGrachan Moncur IIAmerican jazz bassist, born September 2, 1915 in Miami, Florida, died November 3, 1996. +Moncur played with (among others) Savoy Sultans, Billie Holiday, Mildred Bailey, and with own bands. +Father of [a=Grachan Moncur III], jazz trombonist and composer, and half-brother of [a=Al Cooper].Needs Votehttps://en.wikipedia.org/wiki/Grachan_Moncur_IIG. MoncurGracan MoncourGracham MoncurGrachan MoncourGrachum MoncurGraham MoncurGrahan MoncurBillie Holiday And Her OrchestraTeddy Wilson And His OrchestraThe Ike Quebec Swing SevenAl Cooper And His Savoy SultansBunny Berigan And His Blue BoysBud Freeman And His Windy City FiveMildred Bailey And Her Alley CatsPutney Dandridge And His Orchestra + +337650Tom MaceyCredited as clarinetist and saxophonist.Needs VoteTom MaceTeddy Wilson And His OrchestraIsham Jones Orchestra + +337651Shirley ClayAmerican jazz trumpeter. + +Born : 1902 in Charleston, Missouri. +Died : February 07, 1951 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/112669ClayS. ClayShirleyEarl Hines And His OrchestraBenny Goodman And His OrchestraDon Redman And His OrchestraRichard Jones And His Jazz WizardsHarry Dial And His BlusiciansPreston Jackson's Uptown BandWallie Coulter And His BandPutney Dandridge And His OrchestraDixie Rhythm KingsStarks Hot Five + +337958Harvey WolfeAmerican cellist, born in 1934.CorrectHarvey S. WolfeThe Cleveland OrchestraHouston Symphony OrchestraNational Symphony Orchestra + +338103Anthony PleethEnglish cellist, born in 1948 in London, specialising in the performance of music of the 18th and 19th centuries on period instruments. He also plays modern cello. He is the son of [a=William Pleeth]. +He has recorded the complete cello sonatas of Geminiani (with [a=Christopher Hogwood]) and Vivaldi (with Robert Woolley and Suki Towb), trio sonatas by Händel and Corelli and chamber music by J. C. Bach with the English Concert Chamber Group. With fortepianist [a=Melvyn Tan], he recorded Beethoven's complete sonatas and variations for cello and piano. +Aside from Classical appearances, he has also been on many film soundtracks, such as We Were Soldiers by Nick Glennie-Smith and Gladiator by Hans Zimmer and Lisa Gerrard.Needs Votehttps://en.wikipedia.org/wiki/Anthony_PleethA. PleethAndy PleathAnthony PleathAnthony PleetAntohony PleethAntony PleathT. PleethTony PlaethTony PleathTony PleeceTony PleetTony PleethThe London Session OrchestraThe London Studio OrchestraThe London OrchestraNew London ConsortThe Academy Of Ancient MusicLondon Festival OrchestraThe Taliesin OrchestraThe Academy Of Ancient Music Chamber EnsembleBrindisi QuartetRobert Farnon And His OrchestraL'Estro ArmonicoEx Cathedra Baroque OrchestraPleeth Cello OctetThe English ConcertThe Chamber Orchestra Of London + +338201Tete MontoliuVicenç Montoliu i MassanaSpanish jazz pianist +Born March 28, 1933 in Barcelona, Catalonia, Spain +Died August 24, 1997 in Barcelona, Catalonia, Spain +Husband of [a2840825] and father of [a2601606].Needs Votehttps://www.allaboutjazz.com/musicians/tete-montoliu/https://www.independent.co.uk/news/people/obituary-tete-montoliu-1247292.htmlhttps://www.imdb.com/name/nm0600137/MontoliuOrquesta MontoliuT. MontoliuTete MontnliuTete Montoliu Y Su ConjuntoTete Montoliu, PianoTeté MontoliuV, Tete MontoliuV. Tete MontoliuThe Roland Kirk QuartetTete Montoliu TrioThe Kenny Dorham QuintetDexter Gordon QuartetEddie Harris QuartetArchie Shepp/Lars Gullin QuintetBuddy Tate QuartetThe European All StarsGeorge Coleman - Tete Montoliu DuoVan Prince And OrchestraTete Montoliu Y Su QUINTETOTete Montoliu Y Su Conjunto TropicalTete Montoliu Y Su CuartetoTete Montoliu-Peter King Quintet + +338202Rob LangereisDutch jazz bassistNeeds VoteR. LangereisRob LangerijsRobbie LangerijsRobert LangereisPeter Herbolzheimer Rhythm Combination & BrassDas Klaus Weiss TrioMetropole OrchestraBen Webster QuartetFestival Big BandThe Galactic Light OrchestraRob Agerbeek QuintetMisha Mengelberg QuartetMisha Mengelberg/ Piet Noordijk-KwartetRob Agerbeek TrioRogier Van Otterloo And His OrchestraMunich Big BandPiet Noordijk QuartetChris Hinze QuartetEddy Engels QuintetLex Jasper TrioThe Coen Van Nassou SwingtetKölnMusik Big BandHobby OrkestTime Travellers (5)Septet Frans Elsen + +338343József VajdaClassical bassoonist.Needs VoteIfj. Vajda JózsefJ.VajdaJosef VajdaJozsef VajdaVajdaVajda J.Vajda JózsefVajdä JozsefCamerata HungaricaConcentus HungaricusLiszt Ferenc Chamber OrchestraAustro-Hungarian Haydn OrchestraBläserquintett Des Ungarischen Rundfunks + +338447Bix And His Rhythm JugglersCorrectBix & His Rhythm JugglersBix Beiderbecke And His Rhythm JugglersBix Beiderbecke With His Rhythm JugglersBix Beiderbecker And His Rhythm JugglersRhythm JugglersThe Rhythm JugglersTommy DorseyBix BeiderbeckeJimmy DorseyTommy GarganoDon Murray (2)Howdy QuicksellPaul Madeira Mertz + +338448Hoagy Carmichael And His OrchestraCorrectH. CarmichaelHoagy Carmichael & His Orch.Hoagy Carmichael & His OrchestraHoagy Carmichael & OrchestraHoagy Carmichael And His Orch.Hoagy Carmichael And OrchestraHoagy Carmichael OrkestereineenHoagy Carmichael With His OrchestraHoagy Carmichael Y Su OrquestaHoagy Carmichael's OrchestraStudio OrchestraThe Hoady Carmichael OrchestraThe Hoagy Carmichael OrchestraTommy DorseyBenny GoodmanGene KrupaHarry GoodmanJoe VenutiBud FreemanBix BeiderbeckeEddie LangArnold BrilhartIrving BrodskyHoagy CarmichaelBubber Miley + +338449Bix Beiderbecke And His OrchestraBix Beiderbecke and His Orchestra were a studio group put together for a Beiderbecke-led [l61808] recording session in September 1930. + +The name was also used for many non-US issues of recordings made for [l62753] by [a326834].Needs VoteBix Beiderbeck & His OrchestraBix Beiderbeck And His OrchestraBix Beiderbecke & His OrchBix Beiderbecke & His Orch.Bix Beiderbecke & His OrchestraBix Beiderbecke And His Orch.Bix Beiderbecke E La Sua OrchestraBix Beiderbecke OrchestraBix Beiderbecke OrchestrasBix Beiderbecke OrquestraBix Beiderbecke Presents His OrchestraBix Beiderbecke And His GangNew Orleans Lucky SevenBenny GoodmanGene KrupaPee Wee RussellBud FreemanBix BeiderbeckeJimmy DorseyBoyce CullenMin LeibrookWes VaughanEddie LangIrving BrodskyRay Lodwig + +338450Jean Goldkette And His OrchestraDetroit based jazz orchestra among the most successful acts in the U.S.A. in the late 1920's. +Formed in 1924, & having their great success in 1926 and 1927. +The band was a vehicle for classically trained entrepreneur [a=Jean Goldkette], who saw potential in the rising jazz market, +Goldkette himself did not perform in any group which bore his name.CorrectGene Goldkette & His OrchestraGene Goldkette And His OrchestraGoldkette's Book-Cadillac Hotel OrchestraGoldkette's Book-Cadillac OrchesterGoldkette's Book-Cadillac OrchestraJean Goldkett & His OrchestraJean Goldkette & His OrchestraJean Goldkette & Hs. OrchestraJean Goldkette &His OrchestraJean Goldkette And His Orch.Jean Goldkette And His Victor OrchestraJean Goldkette Et Son OrchestreJean Goldkette OrchJean Goldkette OrchestraJean Goldkette Und OrchesterJean Goldkette Y Su Orq.Jean Goldkette Y Su OrquestaJean Goldkette's Book-Cadillac-OrchesterJean Goldkette's OrchestraJean Goldklette And His OrchestraMcKinney's Cotton PickersOrchestra Jean GoldketteThe Jean Goldkette OrchestraTommy DorseyJoe VenutiBix BeiderbeckeJimmy DorseyChauncey MorehouseEddie LangBill RankDon Murray (2)Steve Brown (2)Ray LodwigHoagy CarmichaelHowdy QuicksellItzie RiskinFrankie TrumbauerDoc RykerJohn CordaroNat NatoliSterling BoseHerb QuigleyAndy SecrestDanny PoloVernon BrownPee Wee HuntDewey BergmanJean GoldketteJoe GalbraithVolly De FautDale SkinnerHymie GunklerGeorge Rose (2)Fred FarrarVan FlemingSpiegle WillcoxEarl Baker (3)Larry TicePaul Madeira MertzArt GronwallIrish HenryCarroll HuxleyMyron Schultz (2)Lorin SchultzHarold StokesDee OrrTex BrewsterGeorge Williams (32)Ben SchriebmanGeorge Crozier (2)Earl Wright (10)Bob Strong (4)Fuzzy FarrarCharles Horvath (2)Harry BasonRed GinslerHarold George (2)Bob HutsellRay Porter (8)Reggie Byleth + +338451The Wolverine OrchestraThe Wolverines (also Wolverine Orchestra, Wolverines Orchestra, The Original Wolverines) were an American jazz band. They were one of the most successful territory bands of the American Midwest in the 1920s. + +The Wolverine Orchestra first played at the Stockton Club, a nightclub south of Hamilton, Ohio, in September 1923. Many of its players were transplanted Chicago musicians, and it was led by pianist Dudley Mecum. Cornetist Bix Beiderbecke joined the group toward the end of the year after the lead cornetist quit. Mecum named the group based on the fact that they so often performed the Jelly Roll Morton tune "Wolverine Blues". However, he quit at the end of 1923, and was replaced by Dick Voynow, from St. Louis. + +Wolverine members obviously recognized that Beiderbecke was the band's outstanding soloist--he is in the forefront on records. The others were competent on their respective instruments, at times elegant and imaginative. Few other bands at this time made records featuring so much improvisation. Yet the band was clearly well-rehearsed for sessions. Alternate takes of numbers establish that some musical ideas had been carefully worked out ahead of time. Needs Votehttps://en.wikipedia.org/wiki/The_Wolverines_(jazz_band)http://www.redhotjazz.com/wolverine.htmlhttps://archive.org/details/BixBeiderbeckeAndTheWolverines1924-1925https://adp.library.ucsb.edu/names/103517The Wolverine Orchestra ChicagoThe WolverinesWolverine Orch.Wolverine OrchestraOriginal WolverinesThe WolverinesThe Jazz HarmonizersBix BeiderbeckeMin LeibrookVic MooreBob GilletteJimmy HartwellAl GandeDick VoynowGeorge Johnson (3) + +338489Helmut Müller-LankowGerman actor and voice actor, born 19 April 1928 in Weimar, Germany, died 8 March 2006 in Berlin, Germany.CorrectH. MüllerH. Müller-LankowMüller + +338494Wild Bill DavisWilliam Strethen DavisAmerican jazz pianist, organist and arranger. He is best known for his pioneering jazz electronic organ recordings and for his crucial role as the pianist-arranger in Louis Jordan's Tympany Five (1945–1947) at the peak of their success. +b. November 24, 1918 in Glasgow, Missouri - d. August 17, 1995 in Moorestown, New Jersey. +Do NOT confuse with pianist [a=Will Davis (2)]. +Needs Votehttp://en.wikipedia.org/wiki/Wild_Bill_Davishttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=83247&subid=0https://adp.library.ucsb.edu/names/202414"Wild Bill""Wild Bill" Davis"Wild" Bill DavisB. DavisBDBill DaviesBill DavisDaviesDavisStrethen "Wild Bill" DavisW. B. DavisW. DavisW. S. DavisW.B. DavisW.S. DavisW.W.B. DavisWild Bill DaviesWild Bill Davis And His Real Gone OrganWild Bill DawisWill Bill DavisWilliam "Wild Bill" DavisWilliam DavisWilliam S. DavisWilliam Strethen "Wild Bill" DavisWilliams DavisWilliams S. DavisУайлд Билл ДэвисStrethen DavisDuke Ellington And His OrchestraLouis Jordan And His Tympany FiveLouis Jordan And His OrchestraWild Bill Davis And OrchestraWild Bill Davis And His MenThe Johnny Hodges QuintetLionel Hampton & His Giants Of JazzWild Bill Davis TrioGrover Mitchell And His OrchestraThe Secret 7Wild Bill Davis QuartetSwing System DWild Bill Davis Super Trio + +338496Gene SchroederEugene Charles SchroederAmerican jazz pianist +Born 5 February 1915 in Madison, Wisconsin +Died 16 February 1975 in Madison, Wisconsin + +He frequently played with [a=Eddie Condon], [a=Wild Bill Davison], Wes Westerfield, [a=Joe Marsala], [a=Marty Marsala], [a=Miff Mole] and others. +Needs Votehttps://www.allmusic.com/artist/gene-schroeder-mn0000124707https://adp.library.ucsb.edu/names/209178G. SchroederG.SchroederGene SchoederGene ShroederSchroederThe Dukes Of DixielandOriginal Dixieland Jazz BandBud Freeman's All Star OrchestraEddie Condon And His OrchestraBud Freeman's Summa Cum Laude OrchestraJack Teagarden And His Big EightMuggsy Spanier And His RagtimersWild Bill Davison And His CommodoresEddie Condon And His BandMiff Mole And His Nicksieland BandBob Scobey's Frisco BandEddie Condon And His All-StarsEddie Condon's Jazz BandGeorge Brunies And His Jazz BandBud Freeman And His OrchestraEddie Condon And His Dixieland BandGeorge Wettling Jazz TrioJoe Marsala's All TimersAll Star Rhythm Section + +338587Jacky SamsonJacques Léon Jean SAMSONFrench jazz bassist. + +Born : April 11, 1940 in Paris, France. +Died : October 03, 2012 in Montbard, Côte-d'Or, France. + +Jacky worked with : Georges Arvanitas, Ted Curson, Teddy Wilson, Anita O'Day, Dexter Gordon, Ben Webster, Eddie Davis, Sonny Criss, Pepper Adams, Michel Legrand and others.Needs VoteJ. SamsonJackie SamsonJacques SamsonJacky SampsonBen Webster QuartetGeorges Arvanitas TrioMarco Di Marco TrioThe Georges Arvanitas Jazz QuartetChris Woods SextetIvan Jullien Big BandThe Jean-Claude Naude Big BandPepper Adams QuartetClaude Guilhot Quartet + +338608Joan La BarbaraJoan Linda La BarbaraJoan La Barbara (born June 8, 1947, Philadelphia, Pennsylvania, USA) is an American vocalist and composer known for her explorations of non-conventional or “extended” vocal techniques. Her career as a composer, performer and sound artist has been devoted to exploring the human voice as a multi-faceted instrument, going far beyond its traditional boundaries, creating works for voices, instruments and interactive technology. La Barbara was a member of [a224854] from 1971 to 1976. She is married to composer [a32196] with whom she collaborates.Needs Votehttp://www.joanlabarbara.com/https://en.wikipedia.org/wiki/Joan_La_Barbara9Joan La BarberaJoan LaBarbaraJoan LabarbaraLa BarbaraLaBarbaraДжоан ЛаБарбараThe Philip Glass EnsembleSteve Reich And MusiciansNe(x)tworks + +338609Bruce DitmasAmerican jazz drummer and percussionist, born December 12, 1946 in Atlantic City, New JerseyNeeds Votehttps://www.facebook.com/bruce.ditmashttps://en.wikipedia.org/wiki/Bruce_DitmasB. DitmasBruce DimasGil Evans And His OrchestraEnrico Rava QuartetPaul Bley TrioEnrico Rava QuintetEnrico Rava / Dino Saluzzi QuintetD3 (3)Oil CanRichard Bliwas TrioAndrea Massaria Octet + +338619Herb BushlerHerb BushlerAmerican jazz bassist, born 7 March 1939 in New York City, USANeeds Votehttps://en.wikipedia.org/wiki/Herb_Bushlerhttps://www.knowyourbassplayer.com/bass-players-blog/2017/3/15/herb-bushlerBushlerH. BushlerHerb BueshlerHerb BuschlerThe Players AssociationGil Evans And His OrchestraTed Curson & CompanyThe Winter ConsortGeorge Russell OrchestraTed Curson Quartet + +338994Louis Armstrong And His Savoy Ballroom FiveCorrect"Savoy Ballroom Five"Louis Armstong & His Savoy Ballroom FiveLouis Armstrong Con "The Savoy Ballroom Five"Louis Armstrong & His Savoy Ballroom FiveLouis Armstrong & His Savoy Ballroom OrchestraLouis Armstrong & The Savoy Ballroom FiveLouis Armstrong And 'Savoy Ballroom Five'Louis Armstrong And His OrchestraLouis Armstrong And His Savoy Ball Room FiveLouis Armstrong And His Savoy Ballroom OrchestraLouis Armstrong And His Savoy Ballroom-FiveLouis Armstrong Et Son OrchestreLouis Armstrong With The Savoy Ballroom FiveLouis Armstrong Y Sus Savoy Ballroom FiveSavoy Ballroom FiveThe Savoy Ballroom Fiveルイ・アームストロング・サヴォイ・ボールルーム・ファイブLouis ArmstrongEarl HinesZutty SingletonDon RedmanDave WilbornAlbert NicholasLonnie Johnson (2)Jimmy StrongJ.C. HigginbothamLuis RussellPaul BarbarinTeddy HillFred RobinsonPops FosterMancy CarrCharlie HolmesEddie Condon + +339159Max WayneAmerican jazz bassistNeeds VoteBill StillmanStan Kenton And His OrchestraThe Mat Mathews QuartetBernie Nerow TrioJimmy McPartland And His Sextette + +339161Ed ShaughnessyEdwin Thomas ShaughnessyAmerican jazz drummer. +Played with: Doc Severinsen, George Shearing, Bud Powell, Charles Mingus, Benny Goodman, Horace Silver and many others. + +Born: January 29, 1929 in Jersey City, New Jersey. Died: May 24, 2013.Needs Votehttps://en.wikipedia.org/wiki/Ed_Shaughnessyhttps://www.drummerworld.com/drummers/Ed_Shaughnessy.htmlhttps://www.imdb.com/name/nm0789481/https://adp.library.ucsb.edu/names/343350E. ShaughnessyE. ShaughuessyE.ShaughnessyEd ShaughnasseyEd ShaughnesseyEd ShaugnesseyEd ShaugnessyEd ShaunesseyEddie O'ShaugnessyEddie ShaughnessyEdie ShaughnessyShaughnessyShaughuessyShaugnessyエド・ショネシーLucky Millinder And His OrchestraOliver Nelson And His OrchestraShirley Scott TrioMundell Lowe And His All StarsThe Gary McFarland OrchestraChildren Of All AgesMal Waldron TrioCharlie Ventura And His OrchestraDoc Severinsen And His OrchestraThe Jazz Interactions OrchestraJimmy Smith And The Big BandTeddy Charles QuartetJimmy Giuffre & His Music MenThe Manhattan Jazz All StarsThe Charlie Ventura SeptetTeddy Charles New Directions QuartetTeddy Charles TrioBillie Holiday And Her BandThe Mundell Lowe QuartetRoy "King David" Eldridge & His Little JazzTeo Macero And His OrchestraJoe Newman QuintetZoot Sims & His Five BrothersThe Carl Kress SextetNBC Rhythm SectionAl Klink QuintetThe Teddy Charles GroupDoc Severinsen And His Big BandChuck Wayne QuintetThe Ram Ramirez TrioJack Sheldon's Late Show All-StarsHot Lips Johnson And His OrchestraThe Stan Free Quartet + +339220Charles AznavourShahnour Varenagh Aznavurjian (Armenian: Շահնուր Վաղինակ Ազնաւուրեան - Shahnur Vaghinak Aznavuryan)French-Armenian singer, songwriter, actor, public activist and diplomat born May 22, 1924 in Paris and died October 1, 2018 in Mouriès, France (aged 94). His career spanned over 70 years and he recorded more than 1,200 songs performed in 9 languages. +Brother of [a2529521], married to [a3188718] (1946-1952), father of [a2915995], [a875407] and [a6483509]. +He was inducted into the Songwriters Hall of Fame in 1996.Needs Votehttps://www.aznavourfoundation.org/https://twitter.com/MrAznavourhttps://en.wikipedia.org/wiki/Charles_Aznavourhttps://web.archive.org/web/20090421135737fw_/http://www.c-aznavour.com/SITE/accueilEN.htmlhttps://adp.library.ucsb.edu/names/356040AdnavourAlnadurAsnavourAzanavourAzanvourAzenavourAznabourAznaourianAznaourian, C.AznavdurAznavourAznavour C.Aznavour Ch.Aznavour CharlesAznavour, C.Aznavour, CharlesAznavourianAznovourAznvourC AznaourianC AznavourC, AznavourC. AznavourC. AZNAVOURC. AZnavourC. AsnavourC. AsznavourC. AzanavourC. AznabourC. AznanvourC. AznaourianC. AznaudurC. AznavorC. AznavouC. AznavourC. AznavourianC. OznavourC. アズナブールC. アズナヴールC.AznavourCH. AznavourCh AznavourCh, AznavourCh. AznavourCh. AzanavaurCh. AzbavourCh. AznabourCh. AznanvourCh. AznavoerCh. AznavourCh. AznevourCh.AznavourCh: AznavourCh; AznavourChales AznavourChares AznvoarCharlesCharles AnavourCharles AsnavourCharles AsnavurCharles AsznavourCharles AxnaourianCharles AzanavourCharles AzanvourCharles AzenavourCharles AznacurianCharles AznaourianCharles AznavoourCharles AznavorCharles Aznavour Con Su OrquestaCharles Aznavour con Su OrquestaCharles AznavourianCharles AznavuarCharles AznavurCharles AznovourCharles AznávourCharles AzznavousCharles Y AznavourCharlez AznovourCharlieChas. AznavourChs. AznavourS.Aznavouraznavourch. aznavourАзнавурШ. АзнавурШ.АзнавурШарл АзнавурШарль Азнавурצ'. אזנבורש. אזנאבורש. אזנבורשארל אזנבורשרל אזנבורアズナブールシャルル・アズナブールシャルル・アズナヴールMorrison (17)Les EnfoirésRoche Et Aznavour + +339248SuaeJason LauAustralian based freeform and hardcore DJ & producer.Needs Votehttp://www.myspace.com/jasonsuaehttp://www.twitter.com/SuaeDJ SuaeJason LauSwaysonHard Dance Alliance + +339271Joe ComfortJoseph George Comfort American jazz bassist, born 18 July 1917 in Alcorn, Mississippi, USA, died 29 October 1988 in Los Angeles, California, USA. + +Needs Votehttp://en.wikipedia.org/wiki/Joe_Comforthttps://adp.library.ucsb.edu/names/309303J. ComfortJoe ComportJoe ConfordJoe ConfortJoseph ComfortJoseph G. "Joe" ComfortJoseph G. 'Joe' ComfortHarry James And His OrchestraJack Costanzo And His OrchestraLionel Hampton And His OrchestraBuddy Rich And His OrchestraThe Nat King Cole TrioGeorgie Auld And His OrchestraThe Gerald Wiggins TrioLou Bring And His OrchestraThe Harry Edison QuartetHot Rod Rumble OrchestraBuddy Rich All StarsThe Oscar Moore TrioThe Oscar Moore QuartetBuddy Rich NonetThe Modern Jazz Octet + +339273Wendell CulleyWendell Philips CulleyAmerican jazz trumpeter (also cornet, flugelhorn), born January 8, 1906 in Worcester, Massachusetts, died May 8, 1983 in Los Angeles, California. +Culley began 1929 playing in [a2789628]. He played locally in Boston, then moved to New York City in 1931, where he found early work playing with [a307199] and [a253474]. He then spent 11 years in the employ of [a307453], recording extensively with him. Following this he played with [a136133] (1944-1949), then worked again briefly with Sissle before playing in the [a253011] from 1951 to 1959. +During his career he participated in more than 200 recording sessions. After working with Basie, Culley retired from music, moved to the West Coast, and pursued a career in insurance. +Needs Votehttp://en.wikipedia.org/wiki/Wendell_Culleyhttp://www.jazzhistorydatabase.com/content/musicians/culley_wendell/bio.phphttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/464606dba57a348d9756ea541ccd0732ee157/biographyhttps://www.allmusic.com/artist/wendell-culley-mn0000194415/biographyhttps://adp.library.ucsb.edu/names/107317CulleyH. CulleyW. CulleyW. CurleyWendall CulleyWendel CulleyWendell CullyWendell CurleyWendell CutleyWendell P. CulleyWendell P. Cullyウェンデル・カリーCount Basie OrchestraLionel Hampton And His OrchestraNoble Sissle And His OrchestraLionel Hampton And His SeptetCount Basie Big BandJoe Steele And His Orchestra + +339275John Anderson (2)John H. Anderson, Jr.American jazz trumpeter, composer born January 31, 1921 in Birmingham, Alabama, died August 18, 1974 in the same city. Anderson worked with Stan Kenton, Tiny Bradshaw, Jerry Fielding, Perez Prado, Earl Bostic, Charles Mingus, Buddy Collette, Curtis Counce, Britt Woodman, Count Basie and many others. +Often confused with songwriter [a=John W. Anderson] because of several errors in the BMI database. Both worked with [a=J. W. Alexander] and [a=Sam Cooke].Needs Votehttp://en.wikipedia.org/wiki/John_Anderson_%28jazz_trumpeter%29http://www.allmusic.com/artist/p195101/biographyhttps://repertoire.bmi.com/Search/Catalog?num=zB2Vkcr6D27OtKuuX70qEw%253d%253d&cae=6164qBKGFCUZNlYe8KPQwA%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22I%20FINALLY%20MADE%20THE%20HEADLINES%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dAndersonH. AndersonJ. AndersonJohn Anderson, Jr.John Anderson. JrJohn H AndersonJohn H. AndersonJohn H. Anderson, Jr.Johnny AndersonJack Costanzo And His OrchestraStan Kenton And His OrchestraJack Costanzo & His Afro Cuban BandGeorgie Auld And His OrchestraRussell Jacquet And His All StarsThe Buddy Collette - Chico Hamilton SextetJohnny Mandel OrchestraDee Williams & The California PlayboysThe Chico Hamilton SextetThe Chico Hamilton OctetThe Tom Talbert Jazz OrchestraJohn Anderson and His OrchestraDee Williams SextetteBuddy Collette Octet + +339373Dick CollinsRichard Harrison CollinsAmerican jazz trumpeter, born 19 July 1924 in Seattle, Washington, USA.Needs Votehttps://en.wikipedia.org/wiki/Dick_Collinshttps://adp.library.ucsb.edu/names/309173CollinsD. CollinsRichard CollinsLes Brown And His Band Of RenownWoody Herman And His OrchestraMarty Paich OrchestraCharlie Barnet And His OrchestraThe Woody Herman Big BandWoody Herman And The Las Vegas HerdThe Dave Brubeck OctetWoody Herman BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdDick Collins And His OrchestraThe Paul Desmond QuintetCal Tjader Modern Mambo OrchestraCharlie Mariano SextetHubert Fol & His Be-Bop MinstrelsThe Nat Pierce-Dick Collins NonetThe HerdmenDick Collins And The Runaway HerdCal Tjader NonetWoody Herman And His OctetWoody Herman And The Swingin' Herd (2) + +339376Luis MirandaLuis Rafael MirandaJazz conga player (conguero) of joint Cuban and Puerto Rican descent. He worked with some of the biggest names in jazz including [a=Dizzy Gillespie], [a=Charlie Parker], and [a=Cal Tjader]. +Born: February 12, 1923, in New York, NY. +Died: July 28, 2021, in New York, NY. + +May appear on releases as Luis R. Miranda, Rafael Miranda or Ralph Miranda.Correcthttps://www.namm.org/library/oral-history/luis-mirandaL. MirandaLouis MirandaLuis MiranaLuis MirandoLuis R. MirandaMirandaRafael MirandaRalph MirandaSantos MirandaThe Charlie Parker QuintetCharlie Parker's JazzersMachito And His OrchestraTito Rodriguez & His Orchestra + +339377Charlie WalpAmerican jazz trumpeter.Needs VoteCarlos WalpCharles WalpCharles WalphCharlie WalkWoody Herman And His OrchestraChubby Jackson's OrchestraWoody Herman BandWoody Herman And His Third HerdDick Collins And His OrchestraCal Tjader Modern Mambo OrchestraJoe Timer And His OrchestraCal Tjader NonetWoody Herman & The Second Herd + +339378John HowellTrumpet player, died 17 May 1980. + +Howell was mostly active in Chicago working with artists like [a=The Impressions], [a=Curtis Mayfield] and [a=Terry Callier] but he also worked in Los Angeles for a while during the 1950's, playing trumpet on recordings by [a=Stan Kenton], [a=Shorty Rogers] and [a=Cal Tjader]. +Needs Votehttps://www.allmusic.com/artist/john-howell-mn0001283646John E. HowellJohnny HowellWoody Herman And His OrchestraStan Kenton And His OrchestraCharlie Barnet And His OrchestraShorty Rogers And His OrchestraThe Woody Herman Big BandWoody Herman BandWoody Herman And His Third HerdDick Collins And His OrchestraCal Tjader Modern Mambo OrchestraThe Nat Pierce-Dick Collins NonetCal Tjader NonetJimmy Dale Band + +339398Dale McMickleReginald DaleAmerican jazz trumpeter. +Born June 6, 1907 in Iowa, USA. +Died March 21, 1985 in Los Angeles, California, USA. +Married to singer [a1613040]. +He was a lead trumpet player with the Glenn Miller band, and a copyist.Needs Votehttps://www.imdb.com/name/nm0573244/https://adp.library.ucsb.edu/index.php/mastertalent/detail/206620/McMickle_DaleBob McMickleD. McNickleDale "Mickey" McMickleDale 'Mick' McMickleDale MacMickelDale Mc MickleDale McMickelDale McMickieDale McMicklerDale McNickleDale MickieDale R. McMickleDale “Mickey” McMickleDaleMacMickelMcMickleMick McMickleMickey McMickleR. D. McMickleR. Dale McMickleR.D. McMickleR.d. McMickleReginald Dale (Mickey Gomotts [Grand Old Man of the Trumept Section])Wade McMickleR.D. McMickleMickey McMickleGlenn Miller And His OrchestraJerry Gray And His OrchestraAll Star Alumni OrchestraBobby Byrne And His Orchestra + +339399Harold TennysonSaxophonistCorrecthttps://www.allmusic.com/artist/harold-tennyson-mn0002160652/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/346562/Tennyson_HaroldHal TennysonTennie TennysonGlenn Miller And His OrchestraCharlie Spivak And His OrchestraClaude Thornhill And His OrchestraTeddy Powell And His Orchestra + +339401Legh KnowlesAmerican jazz trumpeter, played (among others) with the orchestras of: Red Norvo (and Mildred Bailey), Glenn Miller and Charlie Spivak. +He played with a number of big bands before entering the Air Force in 1942. After leaving the service in 1948, he started a job for the California wines before he eventually became chairman of Beaulieu Vineyard. +Born: June 18, 1919 in Bethel, Connecticut. +Died: August 15, 1997 in Napa, California.Needs Votehttps://www.allmusic.com/artist/legh-knowles-mn0001192130/creditsLee KnowlesLee KnowlessLegh (Lee) Francis Knowles Jr.Legh “Freddy” KnowlesLeigh F. Knowles, Jr.Leigh KnowlesGlenn Miller And His OrchestraCharlie Spivak And His Orchestra + +339514Sidney Bechet And His OrchestraCorrectSidney Bechet And His French BandSidney Bechet & His Orch.Sidney Bechet & His OrchestraSidney Bechet & Son OrchestraSidney Bechet & Son OrchestreSidney Bechet And GroupSidney Bechet And His French BandSidney Bechet Et Son OrchestreSidney Bechet Et Son OrchestreSidney Bechet OrchestraSidney Bechet Und Sein OrchesterSidney Bechet Y Su OrquestaSydney Bechet And His BandSydney Bechet Et Son OrchestreSidney BechetBenny VasseurZutty SingletonErnie CaceresDave BowmanJean-Pierre SassonAndré JourdanHenry TurnerLeonard Ware + +339515Tal FarlowTalmage Holt FarlowAmerican jazz guitarist +Born June 7, 1921 in Greensboro, North Carolina, USA, died July 25, 1998 in New York City, New York, USANeeds Votehttps://en.wikipedia.org/wiki/Tal_Farlowhttps://jazzprofiles.blogspot.com/2019/09/tal-farlow-jazz-guitar-and-bebop.htmlhttps://www.allaboutjazz.com/musicians/tal-farlow/https://geezermusicclub.com/2013/03/18/tal-farlow-the-reluctant-virtuoso/https://adp.library.ucsb.edu/names/314816FarlowTalTal FarloweTalmadge Holt "Tal" FarlowTalmage FarlowTed Farlowタル・ファーロウArtie Shaw And His Gramercy FiveJersey Artists For MankindThe Red Norvo TrioThe Charlie Mingus TrioRed Norvo SextetThe BirdlandersRed Norvo QuintetBuddy DeFranco QuintetGil Mellé QuintetRed Norvo SeptetThe Tal Farlow QuartetClark Terry SeptetProject G-5The Dardanelle TrioTal Farlow Trio + +339516Jimmy RaneyJames Elbert RaneyAmerican modern jazz guitarist +Born August 20, 1927 in Louisville, Kentucky, U.S.A, died May 10, 1995 in Louisville, Kentucky, U.S.A. +Father of [a=Doug Raney] and [a=Jon Raney (2)]. +Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Raneyhttps://www.jonraney.com/musicians-2/jimmy-raney-2/https://adp.library.ucsb.edu/names/339193A. ZollerJ. E. RaneyJ. RaneyJ.RaneyJames E. RaneyJames Elbert RaneyJames RaneyJim RaineyJim RaneyJimmt raineyJimmyJimmy RaimeyJimmy RaineyJimmy RoneyRaineyRaneySam BeethovenBunny Harris (2)Sir Osbert HaberdasherWoody Herman And His OrchestraArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraStan Getz QuintetBob Brookmeyer QuintetHerbie Steward QuintetBuddy De Franco SextetThe Gary McFarland SextetAl Haig SextetThe Teddy Charles TentetThe Red Norvo TrioJimmy Raney EnsembleJimmy Raney QuartetJImmy Raney TrioAl Haig QuartetRed Norvo SextetBuddy DeFranco QuartetTeddy Charles QuartetThe Manhattan Jazz All StarsJimmy Raney QuintetThe Sextet Of Orchestra U.S.A.Dick Collins And His OrchestraThe Vinnie Burke All-StarsThe Teddy Charles GroupJimmy Raney All StarsProject G-5The Jimmy Lyon TrioWoody Herman & The Second HerdAl Haig-Jimmy Raney QuartetAl Haig QuintetTed Brown QuintetJimmy & Doug Raney QuartetRalph Burns And His EnsembleJazz Club USA + +339517Chuck WayneCharles JagelkaAmerican jazz guitarist +Born February 27, 1923 in New York City, died July 29, 1997 in Jackson, New Jersey + + +Chuck Wayne was a jazz guitarist who came to prominence in the 1940s. He is best known for his work with [a239399]s First Herd, and for being the first guitarist in the [a59407] quintet. He also was [a170754]'s music director and accompanist from 1954-1957. +Needs Votehttp://en.wikipedia.org/wiki/Chuck_Waynehttps://www.allmusic.com/album/the-jazz-guitarist-mw0000098308https://www.jazzdisco.org/chuck-wayne/discography/https://www.imdb.com/name/nm0915531/https://adp.library.ucsb.edu/names/350208C. WayneC. Wayne (C. Jagelka)C.WayneCharles 'Chuck' WayneChuck WaynChuck Wayne (Chas. Jagelka)Chuck Wayne (Jagelka)Richard-RichardWayneCharles JagelkaGil Evans And His OrchestraWoody Herman And His OrchestraColeman Hawkins All Star BandThe George Shearing QuintetNapoleon's EmperorsJack Teagarden And His Big EightDizzy Gillespie SextetColeman Hawkins And His OrchestraLester Young QuartetRalph Burns QuintetWoody Herman & The HerdWoody Herman And His WoodchoppersRolf Kühn SextetColeman Hawkins All StarsDuke Jordan QuartetBilly Taylor QuartetThe Chuck Wayne TrioWoody Herman's Four ChipsTab Smith SeptetteJoe Marsala SeptetSarah Vaughan And Her OrchestraJohn Mehegan QuartetThe Stan Free FiveJoe Marsala And His OrchestraRolf Kühn QuartettThe Chuck Wayne QuartetChuck Wayne QuintetTerry Gibbs And His Orchestra (2) + +339676Chris Griffin (3)Gordon Claude "Chris" GriffinJazz trumpeter, born in Binghamton, NY on October 31, 1915. In 1936, Chris Griffin joined [a=Benny Goodman And His Orchestra]. Together with [url=http://www.discogs.com/artist/Harry+James+(2)]Harry James[/url] and [a=Ziggy Elman], Duke Ellington called them "the greatest trumpet section that ever was." In 1939, he left Goodman's band. + +Chris Griffin played on CBS radio in New York and the soundtrack for Hollywood movie, [i]The Benny Goodman Story[/i]. During the 1950s, Chris was also playing on TV. One of his greatest achievements was creating the trumpet obligato on the theme for the [i]Jackie Gleason Show[/i]. He recorded with many popular singers of the day including [a=Ella Fitzgerald], [a=Billie Holiday], [a=Mel Tormé], and [a=Frank Sinatra]. + +Chris Griffin died on June 18, 2005 in Danbury, Connecticut. +Needs Votehttps://en.wikipedia.org/wiki/Chris_Griffin_(musician)http://griffin-house.com/chris-griffinhttps://www.allmusic.com/artist/chris-griffin-mn0000112969/biographyhttps://adp.library.ucsb.edu/names/112159"Chris" GriffinC. GriffenC. GriffinChris GriffenChrist GriffinCriss GriffiinG. Chris GriffinG. GriffenG. GriffinG.GriifinGordon "Chris" GordonGordon "Chris" GriffinGordon "Chris" Griffin*Gordon 'Chris' GriffinGordon (Chris) GriffinGordon Chris GriffinGordon Chris Griffin (Gordon GriffinGordon GriffithGordon GriifinGriffinКрис ГриффинWoody Herman And His OrchestraArtie Shaw And His OrchestraTeddy Wilson And His OrchestraWill Bradley And His OrchestraBenny Goodman And His OrchestraMildred Bailey And Her Swing BandCalifornia RamblersCharlie Parker With StringsJerry Gray And His OrchestraWoody Herman And His Third HerdGeorge Williams And His OrchestraChris Griffin's Calypso BoysChris Griffin And His Orchestra + +339677Buddy SchutzAdolph Schutz Jazz drummer +Born 23 November 1914, died 24 February 2007Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/112300/Schutz_BuddyB. SchultzB. SchutzBuddy SchultzBuddy SctutzBuddy ShultzBudy SchutzSchutzThe Benny Goodman QuintetArtie Shaw And His Gramercy FiveJimmy Dorsey And His OrchestraBenny Goodman And His Orchestra + +339755Pierre-Laurent AimardA founder member of the Ensemble InterContemporain, the pianist Pierre-Laurent Aimard (b. 1957) was a pupil of Yvonne Loriod at the Paris Conservatoire and won the first prize in the 1973 Olivier Messiaen International Competition at the age of 15. He has appeared as soloist with leading orchestras in the USA (Chicago, Boston, San Francisco) and Europe (Concertgebouw, London Philharmonic). He has premièred the solo parts of many contemporary works, including Boulez's "Répons", Stockhausen's "Klavierstück XIV", Ligeti's 11th and 13th "Piano Studies" and George Benjamin's Antara. +Brother of [a909703]Needs Votehttps://pierrelaurentaimard.com/https://en.wikipedia.org/wiki/Pierre-Laurent_AimardAimardP.L. AimardProf. Pierre Laurent AimardEnsemble Intercontemporain + +339756Peter MasseursDutch trumpet player, born 1944 in Halsteren; died January 5th, 2019.Needs VoteMasseursP. MasseursP.J.M. MasseursConcertgebouworkestNieuw Sinfonietta AmsterdamEbony BandRotterdams Philharmonisch OrkestAmsterdam Bach Soloists + +339875Napoleon's EmperorsCorrect(Phil) Napoleon's EmperorsEmperors Of JazzPhil Napoleon's EmperorsPhil Napoleon's Emperors Of JazzThe Napoleon EmperorsThe Napoleon EmporersFrank SignorelliEddie LangLou McGarityPeanuts HuckoTony SbarbaroChuck WaynePhil NapoleonJoe DixonFelix GiobbeTony SpargoSal FranzellaSteve Kretzmer (2) + +339886Clarence Williams' Blue SevenCorrectClarence Williams Blue SevenClarence Williams + +339888Andy Preer And The Cotton Club OrchestraCorrectAndy Preer & The Cotton Club OrchestraThe MissouriansThe Cotton Club OrchestraThe Harlequinaders (2)Leroy MaxeyMorris WhiteDePriest WheelerSidney De ParisJimmy Smith (5)Earres PrinceWilliam BlueAndrew Brown (5)R.Q. DickersonGeorge Scott (7) + +339892Phil Napoleon & His OrchestraCorrectPhil Napolean's OrchestraPhil Napoleon And His OrchestraPhil Napoleon's OrchPhil Napoleon's Orch.Phil Napoleon's OrchestraPhil Napoleon + +339905The RhythmakersSwing jazz recording group, that made four sessions in 1932.Needs VoteBilly Banks & His RhythmakersBilly Banks & The RhythmakersBilly Banks And His Rhythm MakersBilly Banks And His RhythmakersBilly Banks Rhythm MakersBilly Banks RhythmakersBilly Banks' RhythmakersEddie Condon And His RhythmakersHis RhythmakersJack Bland And His RhythmakersJack Bland's RhythmakersRhythmakersThe Rhythm MakersPee Wee RussellZutty SingletonJoe SullivanAl MorganEddie CondonHenry "Red" AllenJack BlandBilly Banks (2)Jimmy Lord + +339906Henry "Red" AllenHenry James AllenAmerican jazz trumpeter, singer, composer and bandleader. +Born January 7 1906, New Orleans, Louisiana. +Died April 17, 1967, New York City.Needs Votehttps://en.wikipedia.org/wiki/Red_Allenhttps://www.britannica.com/biography/Henry-Allenhttps://riverwalkjazz.stanford.edu/?q=program/ride-red-ride-new-orleans-trumpeter-henry-red-allen-jrhttps://www.allaboutjazz.com/tag-henry-red-allen__1202https://adp.library.ucsb.edu/index.php/mastertalent/detail/103481/Allen_Henryhttps://adp.library.ucsb.edu/names/103481"Red" AllenAllenAllen Jr.Allen Orch.B. AllenH AllenH. 'R.' AllenH. AllenH. Allen JrH. Allen Jr.H. Allen JuniorH. Allen, Jr.H. R. AllenH.AllenH.R. AllenH.R. AlllenHenry AllenHenry "Red" Allen And GroupHenry "Red" Allen JrHenry "Red" Allen Jr.Henry "Red" Allen, Jr.Henry 'Red' AllenHenry (Red) AllenHenry (Red) Allen, Jr.Henry AllenHenry Allen JnrHenry Allen Jr.Henry Allen, Jr.Henry Allen, Jnr.Henry Allen, Jr.Henry EllenHenry Red AllenHenry Red Allen Jr.Henry Red Allen, Jr.Henry ’Red’ AllenHenry „Red" AllenHenrz "Red" AllenHerny AllenMr. 'Red' AllenR. AllenRed AllenLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraThe RhythmakersTeddy Wilson And His OrchestraKid Ory And His Creole Jazz BandKing Oliver & His OrchestraColeman Hawkins And His OrchestraLuis Russell And His OrchestraFats Waller And His BuddiesSpike Hughes And His Negro OrchestraSidney Bechet And His New Orleans FeetwarmersHorace Henderson And His OrchestraDon Redman And His OrchestraJelly Roll Morton's Hot SixJelly Roll Morton's Hot SevenHenry "Red" Allen And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraDanny Barker's Fly CatsPutney Dandridge And His Swing BandThe Washboard SerenadersBilly Banks And His OrchestraHenry "Red" Allen's All StarsTony Parenti's All-StarsArt Ford's Jazz PartySaturday Night Swing SessionBenny Morton And His OrchestraPutney Dandridge And His OrchestraBuster Bailey And His Seven Chocolate DandiesHenry Allen SextetHawkins OrchestraColeman Hawkins & FriendsRed Allen And His Quartet + +339910Wild Bill DavisonWilliam Edward DavisonJazz cornet player, American Wild Bill Davison garnered his nickname 'Wild' from his appetite for women & alcohol. +B: January 5, 1906 in Defiance, Ohio, USA. +D: November 14th, 1989 in Santa Barbara, California, USA. +Playing professionally in the 1920's, he gained wide recognition in the 1940's. +He played with the likes of [a=Eddie Condon], [a=Gene Krupa] & [a=Sidney Bechet].Needs Votehttps://en.wikipedia.org/wiki/Bill_Davisonhttps://www.bluenote.com/artist/wild-bill-davison/https://www.britannica.com/biography/Wild-Bill-Davisonhttps://adp.library.ucsb.edu/names/102402"Wild Bill" Davidson"Wild Bill" Davison"Wild" Bill Davison'Wild' Bill Davidson'Wild' Bill DavisonB. DavisonBill DavidsonBill DavisonBll DavisonDavidsonDavisonThe Bill Davison StoryW. B. DavisonW. Bill DavisonWild BillWild Bill DavidsonWild Bill Davison & Die Spree City StompersWild Bill Davison Et Sa TrompetteWild Bill Davison with StringsWild Bill, DavisonWild Billy DavisonWild Bull DavisonWild DavisonWill Bill DavidsonWilliam "Wild Bill" DavisonWilliam "Wild" Bill DavisonWilliam 'Wild Bill' Davison»Wild« Bill DavisonУ. Б. ДэвидсонOriginal Dixieland Jazz BandGene Krupa And His OrchestraSidney Bechet And His Blue Note Jazz MenBud Freeman's All Star OrchestraEddie Condon And His OrchestraWild Bill Davison And His CommodoresEddie Condon And His BandSidney Bechet And His New Orleans FeetwarmersEddie Condon And His All-StarsWild Bill Davison's All StarsEddie Condon's Jazz BandGeorge Wettling's Jazz BandGeorge Brunies And His Jazz BandWild Bill Davison's BulldozersArt Hodes' Hot FiveWild Bill Davison And His JazzologistsGeorge Wettling's All StarsThe All Star StompersEddie Condon And His Dixieland BandWild Bill Davison And His All Star StompersWild Bill Davison And His Range RidersThe Bill Davison SixWild Bill Davison's United EuropeansThe "This Is Jazz" All-StarsWild Bill Davison And His BandThe Peewee Russell SextetsClaude Hopkins SwingstersWild Bill Davison And His CobbersWild Bill Davison & His Dixie CatsWild Bill Davison And His New YorkersThe Chicago Jazz GiantsWild Bill Davison And His Quartet + +339911Luis Russell's Heebie Jeebie StompersCorrectLuis Russel's Heebie Jeebie StompersLuis Russell And His Heebie Jeebie StompersJohnny St. CyrPreston JacksonLuis RussellBarney BigardDarnell HowardBob Shoffner + +339912Lu WattersLucius Carl WattersAmerican jazz trumpeter and bandleader. + +Born : December 19, 1911 in Santa Cruz, California. +Died : November 05, 1989 in Santa Rosa, California. + +After playing in the band of Bob Crosby, in 1939 Lu founded the "Yerba Buena Jazz Band" for a long period (1939-1950) made ​​the Dixieland revival. +Watters also worked with Turk Murphy (tour 1963). +Needs Votehttps://en.wikipedia.org/wiki/Lu_Wattershttps://www.jazzdisco.org/lu-watters/discography/L. WattersLou WattersLou WatersLou WattersLu WatersWattersLu Watters And The Yerba Buena Jazz BandLu Watters Jazz BandLu Watters Band + +339913Friar's Society OrchestraCorrectFriars Society Orch.Friars Society OrchestraNew Orleans Rhythm KingsOriginal New Orleans Rhythm KingsPaul MaresBen PollackGeorge BruniesLeon Roppolo + +339917Roger Wolfe Kahn And His OrchestraNeeds Votehttps://en.wikipedia.org/wiki/Roger_Wolfe_Kahnhttps://www.imdb.com/name/nm3945091/Orquesta Roger Wolfe KahnRoger Wolf Kahn And His OrchestraRoger Wolfe And His OrchestraRoger Wolfe Kahn & Hans OrkesterRoger Wolfe Kahn & His O.Roger Wolfe Kahn & His OrchestraRoger Wolfe Kahn & His Orchestra*Roger Wolfe Kahn And His Hotel Biltmore OrchestraRoger Wolfe Kahn And His Orch.Roger Wolfe Kahn And His OrchesterRoger Wolfe Kahn Et Son OrchestreRoger Wolfe Kahn OrchRoger Wolfe Kahn OrchestraRoger Wolfe Kahn's Hotel Biltmore OrchestraRoger Wolfe-Kahn And His OrchestraWolfe Kahn & His OrchestraDeauville DozenJoe VenutiEddie LangArnold BrilhartJack TeagardenArthur SchuttVic BertonAlfie EvansTommy GottArthur "Babe" CampbellJoe RaymondRoger Wolfe KahnTony ColucciLeo McConvilleDomenic Romeo (3)Harold Sturr + +339918Jelly Roll Morton TrioCorrectHis TrioJelly Roll Morton And His Jazz TrioJelly Roll Morton And His TrioJelly Roll Morton E Il Suo TrioJelly Roll Morton TriosJelly Roll Morton's TrioJelly- Roll Morton TrioJelly-Roll Morton TrioJelly-Roll Morton's Jazz TrioJelly-Roll Morton's TrioMortonMorton TrioTrioTrios«Jelly - Roll» Morton Trio«Jelly-Roll» Morton TrioZutty SingletonBarney BigardJohnny DoddsJelly Roll MortonBaby Dodds + +339922Red And Miff's StompersNeeds Major ChangesRed & Miff's StompersRed NicholsMiff Mole + +339931Red Nichols' StompersCorrectRed Nicholas StompersRed Nichols StompersRed NicholsMax Farley + +339952Sam DockerySamuel Dockery Jr..American hard bop pianist on the Philadelphia jazz scene since the early 1950s, also teacher at the University of the Arts in Philadelphia. + +Born: 1929 in Lawnside, New Jersey. +Died: December 23, 2015 in Burlington, New Jersey. Needs Votehttp://en.wikipedia.org/wiki/Sam_DockeryBill DockeryDockeryS. DockerySam (Bill) DockerySam Dockery Jr.Sam Dockery, Jr.Art Blakey & The Jazz MessengersClifford Brown Quartet + +339953Bill HardmanWilliam Franklin Hardman, Jr.American jazz trumpeter and flugelhornist +Born 6th April 1933, Cleveland, Ohio, USA, died 5th December 1990, Paris, France +Needs Votehttp://en.wikipedia.org/wiki/Bill_HardmanB. HardimanB. HardmanB.HardmanBill HardemanBill HardimanBill HardmannBill HartmanHardmanHartsmanW. HardmanWilliam Hardmanビル·ハードマンArt Blakey & The Jazz MessengersHoward McGhee And His OrchestraCharles Mingus Jazz WorkshopVibration SocietyArt Blakey's Big BandThe Dave Bailey QuintetBill Hardman QuintetThe Brass CompanyJackie McLean QuintetThe Mal Waldron SextetMel Lewis QuintetBill Hardman Sextet + +339954Spanky DeBrestJimmy DeBrestAmerican jazz bassist, born April 24, 1937 in Philadelphia, Pennsylvania, U.S.A.., died March 2, 1973 in the same city. +DeBrest worked with Lee Morgan, Art Blakey's Jazz Messengers (1958), Ray Draper's Quintet (1957), Jackie McLean, Mal Waldron, Ben Dixon, John Coltrane, Clifford Jordan, J. J. Johnson and others.Needs Votehttps://en.wikipedia.org/wiki/Spanky_DeBrest"Spanky" De Brest"Spanky" DeBrest"Spanky" Debrest"Spansky" DebrestDeBrestJ. De BrestJames "Spanky" De BrestJames "Spanky" DeBrestJames "Spanky" de BrestJames (Spanky) De BrestJames De BrestJimmy "Spanky" De BrestJimmy "Spanky" DeBrestJimmy "Spanky" DebrestJimmy ("Spanky") De BrestJimmy De BrestSpank deBrestSpankey De BrestSpankey DeBrestSpanky De BrestSpanky DeBreastSpanky de BrestSpoke de BrestArt Blakey & The Jazz MessengersThe J.J. Johnson SextetClifford Jordan QuartetThe Ray Draper Quintet + +340034Jiří StivínJiří StivínCzech flutist, saxophonist, multi-instrumentalist, composer, band leader, originally cinematographer. + +Born November 23, 1942 in Prague (former Czechoslovakia). 1961–1962 one of the pioneers of Czechoslovak rock music as a member of [a=Sputnici]. Founder of [a=Jazz Q] in the mid-1960s. Father of [a=Adam Stivín], [a=Jiří Stivín (2)], [a=Markéta Stivínová] and [a=Zuzana Stivínová]; cousin of [a=Milan Svoboda]. + +Stivín has been interpreting pre-classical music on the recorder since 1975. After graduating from the cinematography department of the Prague Film Academy (FAMU), he devoted himself exclusively to music. He studied at the Royal Academy of Music as well as at the Prague Academy of Music, where he studied composition. Stivín performs music from the Middle Ages, the Renaissance, and the Baroque periods. He has recorded flute concertos and has mastered all kinds of flutes and recorders. He has also been intensely involved in jazz, composition, and in the improvisational New Music, using saxophone, clarinet, flute, recorder, and several kinds of folk pipes.Needs Votehttps://www.stivin.infoJ. StivinJ. StivínJiri StirinJiri StivinJiri StivínJirì StivìnJirí StivínJiři StivinJiři StivínJiří StivinJiří Stivín (Sen.)StivinStivínPrague Big BandThe Scratch OrchestraSHQJazz QPrague Madrigal SingersCapella IstropolitanaVáclav Zahradník Big BandThe QUaX EnsembleSystem Tandem Stivín & DašekJiří Stivín & Co. Jazz SystemInterjazz IVOrchestr Klubu Dokonalé Zdravovědy Jana Boublíka Ze ŽluticEuropean Jazz EnsembleBosko Petrovic's Nonconvertible All StarsPliva Jazz LaboratoryJiří Stivín & Collegium QuodlibetSkupina Karla VelebnéhoEuropean Jazz TrioDivadlo Járy CimrmanaEuropean Jazz SextetJiří Stivín GroupBolo Nás JedenásťKarel Růžička + 9Jiří Stivín & Emil Viklický Quintet + +340120Erroll Garner TrioCorrectErrol Garner & His TrioErrol Garner And His TrioErrol Garner TrioErroll GarnerErroll Garner & His TrioErroll Garner (Trio)Erroll Garner And His TrioErroll Garner And TrioErroll Garner E Il Suo TrioErroll Garner Et Son TrioThe Erroll Garner TrioAlvin StollerDenzil BestEddie CalhounErroll GarnerLeonard GaskinRed CallenderHarold "Doc" WestSpecs PowellAl HallCharlie Smith (2)Nick FatoolShadow WilsonJohn SimmonsJohn LevyWyatt RutherFats HeardHarold WingKelly MartinEddie Brown (3)George De HartLou Singer + +340195Arnold KoblentzOboe player (5th April 1926-11th October 1995).Needs Votehttps://www.feenotes.com/database/artists/koblentz-arnold-5th-april-1926-11th-october-1995/https://adp.library.ucsb.edu/index.php/mastertalent/detail/325584/Koblentz_ArnoldArnold CoblentzArnold E. KoblentzArnold KoblenzArnold KoblintzKoblentz ArnoldHenry Mancini And His OrchestraGordon Jenkins And His OrchestraElmer Bernstein & Orchestra + +340205Don Robertson (2)Donald Irwin RobertsonAmerican singer/songwriter, arranger, pianist and conductor. +Born December 5, 1922 in Beijing, China - died March 16, 2015 in California. + He began formal piano lessons at the age of four. At the age of 7, his family returned to the USA where he began to learn how to play brass instruments, however he never forgot his piano training. His career as a songwriter began when he collaborated with [a=Hal Blair] in about 1953. The following year he scored his first major success with his song [i]I Really Don't Want To Know[/i] which was recorded by [a=Eddy Arnold]. He was inducted into the Nashville Songwriters Hall of Fame in 1972.Correcthttp://www.donrobertson.comhttps://nashvillesongwritersfoundation.com/Site/inductee?entry_id=4090https://en.wikipedia.org/wiki/Don_Robertson_(songwriter)https://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=100&Main_Search_Text=Robertson+Donald+Irwin&Search_Type=allD RobertsonD. RoberdsonD. RobersonD. RoberstonD. RobertsonD. Robertson.D. RobertsonbD. RovertsonD. ロバートソンD.RobertsonD.S. Robertson, Jr.D.ロバートソンDonDon RobertsDon RobertsenDon Robertson's MusicDonRobertsonDonald I RobertsonDonald I. RobertsonDonald Irving RobertsonDonald J. RobertsonDonald RobertsonF. BrownRobartsonRobertRobertonRobertsRobertsenRobertsoRobertsonRobertson D.Robertson Donald BRobertson, DRobertson, DonRobinsonRon RobertsonRubertsonД. Робертсонドン・ロバートソンドン・ロバードソンロバートソンThe Echoes (19) + +340404Matthew GarrisonMatthew Justin Garrison American jazz bassist, born 2 June 1970 in New York City, USA. Son of bassist [a254065]. Needs Votehttp://www.myspace.com/matthewgarrisonhttp://www.garrisonjazz.com/GarrisonM.GarrisonMGMatt GarrisonMatteo GarrisonMatthew GarissonMatthew GarrissonMatthew Justin GarrisonGil Evans And His OrchestraBacktalkThe Zawinul SyndicateThe Chico Hamilton TrioAmit Heri GroupHuman Element (2)Spiros Exaras World-Jazz EnsembleJack DeJohnette TrioGary Husband's Force Majeure + +340554Pat DonaldsonUK bass guitarist born circa 1943, Edinburgh, Lothian, ScotlandNeeds VoteDonaldsonP. DonaldsonPatPat Don AldsonPat DonaldsomPatrick DonaldsonFotheringayDantalian's ChariotLazy RacerThe Bunch (3)Zoot Money's Big Roll BandThe Chris Farlowe BandPoet And The One Man BandRichard Thompson Band + +340559Lenny McBrowneLeonard Louis McBrowneAmerican jazz drummer, born 24 January 1933 in New York City, USA.Needs Votehttps://adp.library.ucsb.edu/names/330519L. McBrowneLennie McBrownLennie McBrowneLennie McBrownieLeonard BrowneLeonard L. Mc BrowneLeonatd Browneレニー・マックブラウンThe Thelonious Monk QuartetBillie Holiday And Her OrchestraSonny Stitt QuartetTony Scott And His OrchestraThe Tony Scott QuartetPaul Bley QuartetRandy Weston SextetSal Salvador QuartetThe Barry Harris SextetBooker Ervin QuartetThe Harold Land Quartet + +340586Charlie Parker And His OrchestraCorrectCharles Parker And His OrchestraCharles Parker Und Sein OrchesterCharlie Parcher And His Orchestra (Quintet)Charlie ParkerCharlie Parker & His Orch.Charlie Parker & His OrchestraCharlie Parker & OrchestraCharlie Parker And His Orch.Charlie Parker And His Orchestra (Big Band)Charlie Parker And His Orchestra (Nonet With Mixed Chorus)Charlie Parker And His Orchestra (Quintet)Charlie Parker And His Orchestra - Quintet: Bird & DizCharlie Parker And His South Of The Border OrchestraCharlie Parker And OrchestraCharlie Parker E Sua OrquestraCharlie Parker Et Son OrchestreCharlie Parker With The OrchestraCharlie Parker e Sua OrquestraLeur OrchestreЧарли Паркер И Его ОркестрMiles DavisBuddy RichDizzy GillespieCharlie ParkerThelonious MonkCharles MingusKenny ClarkeMax RoachTommy PotterKenny DorhamRoy HaynesCurly RussellAl HaigWalter Bishop, Jr.Tony AlessAl BlockRed RodneyLou McGarityTommy TurkHal McKusickTom MaceMurray WilliamsCarlos VidalCarl PooleBobby RodriguezTeddy KotickStan FreemanMilt LomaskAddison CollinsJoe LipmanFrank BrieffStanley WebbBobby WoodlenManny ThalerFrank Davilla + +340678Howlin' WolfChester Arthur BurnettAmerican blues singer, guitarist, harmonica player. A key figure in bridging the early Delta Blues with the more modern Electric Blues. His tutelage on the Mississippi Delta included guitar and showmanship from [a=Charley Patton] and harmonica teachings from [a=Sonny Boy Williamson (2)]. By the end of the 1930s he was a fixture on the Southern Club scene. He was inducted into the U.S. Army on April 9, 1941 and discharged on November 3, 1943. He then moved near West Memphis, Arkansas. In 1948 he formed a band which included guitarists [a=Willie Johnson (4)] & [url=https://www.discogs.com/artist/348055-Matt-Murphy]Matt "Guitar" Murphy[/url], harmonica player [a=Little Junior Parker], and drummer [a=Willie Steele (2)]. In 1951, [a=Sam Phillips (2)] recorded several songs by Howlin' Wolf at his [l=Memphis Recording Service], and he became a local celebrity. After [a=Leonard Chess] secured his contract, The Wolf relocated to Chicago in 1952. It was in Chicago that his legendary status was secured. Playing with prominent blues musicians such as [a=Willie Dixon], [a=Jimmy Rogers] and his longtime guitarist [a=Hubert Sumlin], his everchanging lineups remained stellar thanks in part to Burnetts' admirable policies of paying his musicians well and on time, even including unemployment insurance and Social Security contributions, basically unheard of among his peers. Over the years many of his songs have been interpreted by rock bands, including "Little Red Rooster", "Back Door Man", "Killing Floor", & "Spoonful". [a=Howlin Wolf], with his Memphis and Chicago recordings, his status and influence, surely is one of the vital links between Blues and Rock. + +Inducted into Rock And Roll Hall of Fame in 1991 (Early Influence). + +Born June 10, 1910 West Point, Mississippi, USA. +Died January 10, 1976 Hines, Illinois, USA.Needs Votehttp://www.howlinwolf.com/https://en.wikipedia.org/wiki/Howlin%27_Wolfhttps://www.britannica.com/biography/Howlin-Wolfhttp://www.howlinwolf.com/articles/bio_2.htm"Howlin' Wolf""Howlin' Wolf" Chester BurnettH. WolfH.WolfHWHawling WolfHollin WolfHowlin WolfHowlin WolfsHowlin' Wolf (Chester Burnett)Howlin' WolffHowlin'WolfHowling WolfHowling' WolfHowlin’ WolfThe Howlin WolfThe Howlin' WolfThe Howling WolfThe WolfWolfWulfХаулин Вулф“Howlin’ Wolf”Chester Burnett + +340731Jack Teagarden And His OrchestraNeeds Vote"Big T" Jack Teagarden And His OrchestraJack TeagardenJack Teagarden & FriendsJack Teagarden & His Orch.Jack Teagarden & His OrchestraJack Teagarden & OrchestraJack Teagarden And BandJack Teagarden And His BandJack Teagarden And His Famous OrchestraJack Teagarden And His Orch.Jack Teagarden And OrchestraJack Teagarden Big BandJack Teagarden E La Sua OrchestraJack Teagarden Et Son OrchestreJack Teagarden Et Son Orchestre New-OrleansJack Teagarden Orch.Jack Teagarden OrchestraJack Teagarden Su Trombon Y Su OrquestaJack Teagarden With His OrchestraJack Teagarden Y Su OrquestaJack Teagarden's OrchestraJack Teagarden, His Trombone And OrchestraJack Teagarden, Vocal And OrchestraJack Teargarden And His OrchestraThe BandThe Jack Teagarden OrchestraОркестр Джека ТигарденаFrank Keyes And His Orchestra (3)Terry ShandFats WallerBenny GoodmanHarry GoodmanArnold FishkinPee Wee RussellBud FreemanBenny LagasseCharles McCamishSid FellerAdrian RolliniJack TeagardenFrankie TrumbauerArt MillerSterling BoseStan kingCharlie TeagardenHerb QuigleyArtie BernsteinEdmond HallAllan ReussDave ToughDanny PoloErnie CaceresEddie Miller (2)Kitty KallenJimmy McPartlandRod ClessRay BauducMatty MatlockCharlie SpivakGil BowersGil RodinNappy LamareJack RussinDavid AllynKarl GarvinNat JaffeDanny PerriCharles La VereJohnny Van EpsTommy GonsoulinArt St. JohnClint GarvinJose GutierrezHub LytleCubby TeagardenJohn Anderson (14)Mark Bennett (3)Buddy WeedDick McPartlandJimmy SimmsAbe AaronFrank RyersonTony AntonelliSeymour GoldfingerJoe FerdinandoJohn FallstitchJoe FerrallLarry Walsh (2)Paul Collins (6)Buddy FiskTommy Moore (3)Bonnie PottleBob ConselmanJoe CatalyneMax FarleyTommy ThunenCasper ReardonDale SkinnerClaude WhitemanEddie DudleyErnie HughesArt BeckTruman QuigleyPokey CarriereArt Moore (2)Gish GilbertsonEddie Gale (2)Mildred SpringerMyron ShaplerFred KellerKen HarpsterWally WellsDon SeidelCharles GelruthLloyd Springer (2)Ray Olsen (3) + +340732Tommy Ladnier And His OrchestraCorrectTommy LadnierTommy Ladnier & His Orch.Tommy Ladnier & His OrchestraTommy Ladnier & OrchestraTommy Ladnier And His Orch.Tommy Ladnier And OrchestraTommy Ladnier E La Sua OrchestraTommy Ladnier E OrchestraTommy Ladnier Et Son OrchestreTommy Ladnier OrchestraSidney BechetMezz MezzrowTommy LadnierTeddy BunnElmer JamesManzie JohnsonCliff Jackson + +340734Erskine Hawkins And His OrchestraCorrectErskin Hawkins OrchestraErskine HawkinsErskine Hawkins & His Orch.Erskine Hawkins & His OrchestraErskine Hawkins & OrchestraErskine Hawkins (The 20th Century Gabriel) & His OrchestraErskine Hawkins (The Twentieth Century Gabriel) & His Orch.Erskine Hawkins (The Twentieth Century Gabriel) & His OrchestraErskine Hawkins (The Twentieth Century Gabriel) And His OrchestraErskine Hawkins And His Orch.Erskine Hawkins And Their OrchestrasErskine Hawkins Big BandErskine Hawkins E La Sua OrchestraErskine Hawkins OrchestraErskine Hawkins Y Su OrquestaEskine Hawkins & His OrchestraHis OrchestraTuxedo Junction OrchestraJimmy HarrisErskine HawkinsSammy LoweMatthew GeeSonny PayneAce HarrisJulian DashRobert RangeAaron MaxwellJimmy MitchelleMatthews GeeDon MichaelRaymond HoganJoe MurphyLee StanfieldGeorge Matthews (2)Reunald JonesHaywood HenryKelly MartinSkeeter BestLeroy KirklandWilliam JohnsonAvery ParrishAndrew PennWilbur Bascomb Sr.James Morrison (5)Edward SimsPaul BascombBill McLemoreMarcellus GreenDavid James (15)Norman GreeneRichard Harris (5)Dud BascombBobby Smith (3)Donald ColeEdmund McConneyCarroll RidleyBill Moore (9)Danny Logan (3)Charlie Jones (18)Bobby Johnson (27)Bobby Greene (4) + +340736Fletcher Henderson And His Connie's Inn OrchestraPseudonym used for [a=Fletcher Henderson And His Orchestra]. +See also [a=Connie's Inn Orchestra].Needs VoteConnie's Inn OrchestraFletcher Anderson And His Connies' Inn OrchestraFletcher Henderson And His Connie Inn OrchestraFletcher Henderson And His Orchestra (Connie's Inn Orchestra)Fletcher Henderson E La Sua Connie's Hinn OrchestraFletcher Henderson's Connie's Inn Orch.Fletcher Henderson's Connie's Inn OrchestraFletcher Henderson, Connie's Inn OrchestraFletcher Hendersons Connies Inn OrchestraThe Connie's Inn OrchestraFletcher Henderson And His OrchestraConnie's Inn OrchestraColeman HawkinsRussell ProcopeJohn KirbyRussell SmithClarence HolidayClaude JonesWalter JohnsonRex StewartFletcher HendersonEdgar SampsonBobby StarkBenny MortonHarvey Boone + +340864Charles StephensTrombonist with the Sun Ra Arkestra between 1967 and 1979Needs VoteC. StephensCharles StephenCharles Stephens (Stevens)Charles StevensThe Jazz Composer's OrchestraLionel Hampton And His OrchestraArthur Doyle Plus 4Arthur Doyle TrioThe Brass CompanyThe Sun Ra ArkestraLionel Hampton & His Big BandFrank Foster And The Loud MinorityGeorge Gee Big BandFrank Foster's Living Color – Twelve Shades Of Black + +340865Roy BurrowesAmerican jazz trumpeter, born February 18, 1930 in Kingston, Jamaica, died December 2, 1998Needs Votehttps://rateyourmusic.com/artist/roy_burrowesBurrowesBurrowsR. BuprowesR. BurrowesRoy "Bubbles" BurrowesRoy BorrowesRoy BurroughsRoy BurrowcsRoy BurrowsDuke Ellington And His OrchestraThe Jamaican Jazz CrusadersRoy Burrowes Sextet + +340953Willie ThomasWillie Thomas (February 13, 1931 - February 16, 2019) was an American jazz trumpeter and author.Needs Votehttps://en.wikipedia.org/wiki/Willie_Thomas_(trumpeter)https://www.jazzeveryone.com/about/ThomasW.ThomasWilliam ThomasWoody Herman And His OrchestraMJT+3Woody Herman And The Fourth Herd + +340967Irving FazolaIrving Henry PrestopnikUS jazz saxophonist and clarinetist, born December 10, 1912 in New Orleans, Louisiana, died March 20, 1949 in the same city. + +Needs Votehttps://en.wikipedia.org/wiki/Irving_Fazolahttps://www.allmusic.com/artist/irving-fazola-mn0000103749/biographyhttps://rateyourmusic.com/artist/irving_fazolahttps://adp.library.ucsb.edu/names/314917FazFazolaFozzolaI. FazolaI. FazolabroIrving FazzolaPancho Villa (2)Billie Holiday And Her OrchestraClaude Thornhill And His OrchestraTeddy Powell And His OrchestraBob Crosby And The Bob CatsMuggsy Spanier And His RagtimersBob Crosby And His OrchestraIrving Fazola's DixielandersMuggsy Spanier And His OrchestraThe Rhythm Maniacs (3)Irving Fazola And His Orchestra + +341048Gary FalconeGary Anthony FalconeStudio session singer, guitarist, songwriter, Los Angeles, CA-based.Needs Votehttps://www.facebook.com/gary.falcone.5https://www.ascap.com/repertory#/ace/writer/36635382/FALCONE%20GARY%20ANTHONYFalconeG. FalconeGary A FalconeWest Coast Gang + +341076Jay DaVersaTrumpet player + +Toured with many artists & bands such as [a=Johnny Mathis] & played the jazz chair in the Stan Kenton Orchestra from l966-68. He can be heard as one of the featured soloists on the recording, "Stan Kenton conducts the Jazz Compositions of Dee Barton." + +In addition to his extensive studio credits Jay has performed with many artists including: George Duke, Herbie Hancock, Hampton Hawes, Roger Kellaway, Henry Mancini, Joe Sample, Frank Zappa, Shelly Manne & many more. +Needs Votehttp://jaydaversa.com/DaversaJay DaversaJay DeversaJay DiversaJay J. DaVersaJay J. DaversaGerald Wilson OrchestraThe Ernie Watts EncounterDick Grove Big BandThe Mike Vax Big Band + +341084Shirley VerrettShirley Verrett-LomonacoAmerican operatic mezzo-soprano or soprano sfogato. +Married to [a5947472] (1963) + +Born: May 31, 1931 in New Orleans, Louisiana +Died: November 5, 2010 in Ann Arbor, MichiganNeeds Votehttps://shirleyverrett.com/https://en.wikipedia.org/wiki/Shirley_VerrettS. VerrettShirley VerretShirley Verrett-CarterVerrettШирли Верет + +341104Royal Philharmonic Orchestra[b]For chorus credit use [a=Royal Philharmonic Chorus].[/b] +The R.P.O. was founded by Sir Thomas Beecham in 1946 and is based in London at Cadogan Hall with seasons at Royal Albert Hall. RPO tours regionally and has played in 30 countries. Notable conductors have included Antal Doráti and André Previn; Maestro Daniele Gatti has been Music Director since 1996. The orchestra reaches out through its Community and Education programme and records for major commercial record companies, as well as its own label. A sister artist is The Royal Philharmonic Concert Orchestra, formed in 1987 for light classical and pops, as well as traditional classical music.Needs Votehttps://en.wikipedia.org/wiki/Royal_Philharmonic_Orchestrahttps://www.rpo.co.uk/https://royalphilharmonicorchestra.bandcamp.comhttps://www.naxos.com/Bio/OrchestraEnsemble/Royal_Philharmonic_Orchestra/46373https://www.bach-cantatas.com/Bio/RPO.htmhttps://www.last.fm/music/The+Royal+Philharmonic+Orchestrahttps://www.imdb.com/name/nm1099157/https://www.soundcloud.com/royal-philharmonic-orchestrahttps://www.youtube.com/channel/UC21STFbJjiTnlv60q4SgLUAhttps://www.youtube.com/rpoonlinehttps://www.myspace.com/91013510https://www.x.com/royalphilorchhttps://www.facebook.com/royalphilharmonicorchestra/https://www.tiktok.com/@royalphilorchestrahttps://www.linkedin.com/company/royal-philharmonic-orchestra/(Orchestra)And ChorusBrass Ensemble Of The Royal Philharmonic OrchestraDas KGL. Philharmonische Orchester LondonDas Kgl. Philharmonische Orchester LondonDas Königl. Philharmonische Orchester LondonDas Königl. Philharmonische Orchester, LondonDas Königlich Philharmonische Orchester LondonDas Königliche Philharmonia Orchester LondonDas Königliche Philharmonische Orchester LondonDas Royal Philharmonic OrchestraFilarmónica RealFilh. OrkestarFilharmaniaHet Royal Philharmonic OrchestraKgl. Philharmonisches Orchester LondonKgl. Philharmonisches Orchester, LondonKraliyet Filarmoni OrkestrasıKraljevska FilharmonijaKraljevski Filharmonijski OrkestarKraljevski Filharmonijski Orkestar, LondonKrálovský Filharmonický OrchestrKungl. Filharmoniska Orkestern, LondonKuninkaallinen Filharmoninen OrkesteriKuninkaallista Filharmonista OrkesteriKuninkaallista Filharmonista OrkesteriaKönigl. Philharmonisches Orchester LondonKöniglich Philharmonisches OrchesterKöniglich Philharmonisches Orchester LondonKöniglich-Philharmonisches OrchesterKöniglich-Philharmonisches Orchester LondonKöniglich-Pilharmonisches Orchester LondonKönigliches Philharmonisches Orchester, LondonLPOLa Orquesta Filarmonica RealLa Orquesta Filarmónica RealLa Orquesta Royal PhilharmonicLa Real Orquesta FilarmónicaLa Real Orquesta Filarmónica De LondresLa Royal Philharmonic OrchestraLe Royal Philharmonic OrchestraLiverpool Philharmonic OrchestraLondon Royal OrchestraLondon Royal Philharmonia OrquestraLondon Royal PhilharmonicLondon Royal Philharmonic OrchestraLondon's Royal PhilharmonicLondoner Königliche PhilharmonieMembers Of The Royal Philharmonic (London)Members Of The Royal Philharmonic OrchestraOrch.OrchestraOrchestra Filarmonica RealeOrchestra Filarmonicii Regale din LondraOrchestra Real Filarmonica Di LondraOrchestra Reale Filarmonica Di LondraOrchestra Royal PhilharmonicOrchestreOrchestre Du Philharmonique De LondresOrchestre Du Royal PhilharmonicOrchestre Filharmonique RoyalOrchestre Philarmonique RoyalOrchestre Philharmonique RoyalOrchestre Philharmonique Royal De LondresOrchestre Royal PhilharmonicOrchestre Royal PhilharmoniqueOrchestre Royal Philharmonique De LondresOrchestre Symphonique RoyalOrq. Filarmónica London RoyalOrq. Filarmónica RealOrq. Filarmônica RealOrq. Royal PhilarmonicOrquesta Filarmonica De LondresOrquesta Filarmonica RealOrquesta Filarmonica Real, De LondresOrquesta Filarmonica RoyalOrquesta Filarmónica RealOrquesta Filarmónica Real De LondresOrquesta Filarmónica Real de LondresOrquesta Filarmónica Real, De LondresOrquesta Filarmónica RoyalOrquesta Filrmónica RealOrquesta Philarmonic 'Pops'Orquesta Real FilarmonicaOrquesta Real Filarmonica De LondresOrquesta Royal PhilharmonicOrquesta Royal Philharmonic De LondresOrquesta Royal Philharmonic, LondresOrquestra Filarmonica RealOrquestra Filarmônica RealOrquestra Filarmônica Real De LondresOrquestra Royal PhilharmonicPAN Royal PhilharmonicPAN Royal Philharmonic OrchestraPhilharmonic "Pops" OrchestraPhilharmonic OrchestraPhilharmonic Orchestra LondonPhilharmonic Sound OrchestraPhilharmonic Symphony Of LondonPrincipal String Players Of The Royal Philharmonic OrchestraR. P. O.R.P.OR.P.O.RPOReal Orq. Filarmonica de LondresReal Orquesta FilarmonicaReal Orquesta Filarmonica De LondresReal Orquesta Filarmonica de LondresReal Orquesta FilarmónicaReal Orquesta Filarmónica De LondresReal Orquesta Filarmónica de LondresReal Orquesta Filarmónica, LondresReal Orquesta FilarmónícaReal Orquestra FilarmonicaRoyalRoyal Classical OrchestraRoyal Filharmonikus ZenekarRoyal Filharmónikus ZenekarRoyal OrchestraRoyal Phil OrchRoyal Phil Orch.Royal Phil Orch. & OrganRoyal Phil. Orch.Royal Phil. OrchestraRoyal PhilarmonicRoyal Philarmonic OrchestraRoyal Philarmonic Orquesta De LondresRoyal Philh Orch.Royal Philh. Orch.Royal Philh. OrchestraRoyal Philharmonia OrchestraRoyal Philharmonia Orchestra LondonRoyal PhilharmonicRoyal Philharmonic / Orchestra LondonRoyal Philharmonic De LondresRoyal Philharmonic LondonRoyal Philharmonic London OrchestraRoyal Philharmonic Orc.Royal Philharmonic OrchRoyal Philharmonic Orch.Royal Philharmonic Orch. LondonRoyal Philharmonic Orch., LondresRoyal Philharmonic Orch:Royal Philharmonic Orchesta Of LondonRoyal Philharmonic Orchestra (London)Royal Philharmonic Orchestra - LondonRoyal Philharmonic Orchestra De LondresRoyal Philharmonic Orchestra Di LondraRoyal Philharmonic Orchestra LondonRoyal Philharmonic Orchestra London*Royal Philharmonic Orchestra Of LondonRoyal Philharmonic Orchestra With Brass Bands, Organ, BellsRoyal Philharmonic Orchestra de LondresRoyal Philharmonic Orchestra di LondraRoyal Philharmonic Orchestra of LondonRoyal Philharmonic Orchestra, LondenRoyal Philharmonic Orchestra, LondonRoyal Philharmonic Orchestra, LondraRoyal Philharmonic Orchestra, LondresRoyal Philharmonic OrchestrasRoyal Philharmonic Orchestras LondonRoyal Philharmonic Orq.Royal Philharmonic OrquestaRoyal Philharmonic OrquestraRoyal Philharmonic de LondresRoyal Philharmonic, LondresRoyal Philharmonic. Orch. LondonRoyal PhilharmonicaRoyal Philharmonica OrchestraRoyal Philharmonie OrchestraRoyal Philharmonik OrkestraRoyal-Philharmonic OrchestraRoyl PhilharmonicRpoSolisten Und Streicher Des Royal Philharmonic OrchestraSymfonicky OrchestrSymphonie-OrchesterSymphony OrchestraTheThe London Royal PhilharmonicThe London Royal Philharmonic OrchestraThe PAN Royal Philharmonic OrchestraThe Philharmonia OrchestraThe Philharmonic OrchestraThe R.P.O.The RPOThe Roya Philharmonic Orchestra Of LondonThe Royal London Philharmonic OrchestraThe Royal Phil Orch.The Royal Phil. Orch.The Royal Phil. OrchestraThe Royal Philarmonic OrcheatraThe Royal Philarmonic OrchestraThe Royal Philh Orch.The Royal PhilharmonicThe Royal Philharmonic / LondonThe Royal Philharmonic 3The Royal Philharmonic Concert OrchestraThe Royal Philharmonic OrchThe Royal Philharmonic Orch.The Royal Philharmonic OrchestraThe Royal Philharmonic Orchestra "Cool School" RevivalistsThe Royal Philharmonic Orchestra & ChorusThe Royal Philharmonic Orchestra & FriendsThe Royal Philharmonic Orchestra (London)The Royal Philharmonic Orchestra - LondonThe Royal Philharmonic Orchestra And ChorusThe Royal Philharmonic Orchestra And GuestsThe Royal Philharmonic Orchestra LondonThe Royal Philharmonic Orchestra Of LondonThe Royal Philharmonic Orchestra of LondonThe Royal Philharmonic Orchestra playsThe Royal Philharmonic Orchestra, LondonThe Royal Philharmonic Orchestra, Ltd.The Royal Philharmonic Pops Orchestra Of LondonThe Royal Philharmonic, LondonThe Royal Philharmonica OrchestraThe Royal-Philharmonic-OrchestraThe Royl Philormonic OrchestraVioloncelles Du Royal Philharmonic OrchestraWind And Percussion Ensembles Of The Royal Philharmonic OrchestraWind Soloists Of The Royal Philharmonic OrchestraYuri SimonovКоролевский Симфонический ОркестрКоролевский Филармонический ОркестрКоролевский Филармонический Оркестр (Лондон)Королевский филармонический оркестрКоролевский филармонический оркестр (Лондон)Кралски Филхармоничен ОркестърКралски филхармоничен оркестърКралският Симфоничен ОркестърЛондонский Королевский Филармонический ОркестрЛондонский Симфонический ОркестрНациональный Филармонический ОркестрОркестр Лондонской Королевской ФилармонииСимфонический Оркестрהרויאל פילהרמוניתオムニバスロイヤル・フィルハーモニックロイヤル・フィルハーモニック・オーケストラロイヤル・フィルハーモニー・オーケストラロイヤル・フィルハーモニー交響楽団ロイヤル・フィルハーモニー管弦楽団ロイヤル・フィルハーモニー管弦楽団皇家愛樂管弦樂團Philharmonic Symphony Of LondonFrank RicottiLouis ClarkJack BrymerPadraic SavageSimon FischerGennadi RozhdestvenskyJill CrowtherHelen TunstallMartin OwenRichard AddisonMary ScullyDave Lee (3)Nigel BlackPaul GardhamChris Cowie (2)Hugh SeenanRoger ArgenteKate MuskerGeorge RobertsonJonathan CarneyMark NightingaleHugh WebbGillian CohenJim Buck JrAlan CivilJohn WilbrahamMaurice MurphyJames GalwayPeter OxerJohn Graham (2)Barry WildeGary KettelFrank LloydDavid StrangeMichael McMenemyPhilippa DaviesNick BarrLaura MelhuishAlasdair MalloyCarol SlaterFiona HibbertTim GoodEdward VandersparVicci WardmanJim RattiganPeter Maxwell DaviesSusan EvansJeff WakefieldCharles NolanKevin DuffyJames Watson (2)Sebastian BellJohn Anderson (4)Simon ChamberlainKerenza PeacockClive DobbinsMark BennettColin HuberSteve HendersonCorin LongJonathan SnowdenCrispian Steele-PerkinsPaul BatemanJohn HeleyCecil JamesHoward BallClive LanderBrendan O'Brien (2)Ursula GoughMia CooperJanice GrahamMichael Thompson (2)Tim EnglishJennie GoldsteinYehudi MenuhinStephen WickMichael Chapman (4)Yuri TemirkanovPaul PritchardJeff BryantPaul CullingtonPhilip HeymanJonathan StrangeHelen KeenOwen SladeRichard Skinner (2)Sian McInallyDuncan RiddellRichard HarwoodAndrew Clark (3)Jonathan HillPeter CollyerClio GouldThelma OwenHelena BinneyGillian FindlayRachel Roberts (2)Richard Taylor (2)Neville TaweelPhilip JonesValery GergievMichael Baker (6)Michael Davis (5)Ray SimmonsJeremy MetcalfeBarry CastleLiz ButlerAnthea CoxLeslie PearsonBarry GriffithsDean FoleyRoberto SorrentinoTamsy KanerAndrew FullerMichelle BruilStephen RowlinsonRobert Turner (2)Ian RhodesNicole Wilson (2)Elisabeth VarlowVladimir AshkenazySir Charles MackerrasWilliam Bennett (3)Michael WinfieldNicholas WardRoger BirnstinglRaymond CohenByron FulcherPeter ManningSir Thomas BeechamVernon HandleyDaniel JemisonKatherine HagoJennifer ChristieErich GruenbergJohn Wallace (4)John RonayneLeon King (2)Robin McGeeDominic MorganNorman Del MarDennis CliftHarold LesterAlan J. PetersStephen BryantSharon Williams (2)Jonathan VaughanPatrick HarrildMary BerginGerald RuddockDavid ArcherKathryn SaundersIshani BhoolaAshley ArbuckleStephen Stewart (3)Nelson CookeLaurence DaviesBridget CareyStephen KearGil White (2)Edwin HoosonSarah BrookeAnthony ProtheroeKathleen StevensonLaurence CromwellLindsay ShillingKen Lawrence (2)Andrew SippingsAlain PetitclercJack McCormackTimothy VolkardGareth Wood (2)Charles BeldomJulian CummingsRobin Del MarMartin FennNick ReaderPru WhittakerAlbert Dennis (2)William HeggartCarolyn FranksStephen ShakeshaftGeoffrey Palmer (2)David ChattertonDavid BurrowesJames WarburtonMary SamuelHarry JonesJohn Holt (2)Nigel PinkettRaymond OvensPeter NuttingGuy BebbKate Smith (4)Timothy WelchDavid HerdDon Thompson (4)Russell GilbertNina WhitehurstJohn SibleyJulian CowardAline BrewerStewart McIlwhamMichael Dolan (2)Alan HammondSteve MersonDavid StoweMartin ChiversAndrew KleePeter VelPeter HetheringtonRoy BensonDavid Richard HirschmanEldon FoxStephen TrierStephen Williams (3)Brian Thomas (4)Richard West (3)Graeme McKeanDerek James (2)Andrew Williams (10)Mats LidströmJohn BimsonRaphael WallfischDenis VaughanClive HowardClaire MilesDaniele GattiSue KinnersleyBarry DavisPeter SermonRobert WinnChristopher LydonRichard LaytonGerald KirbyDavid NewlandMarilyn GermainsPeter ChrippesMartin OwensFrancois RiveDavid TowseNorman Taylor (2)Geoffrey BrowneStephen QuigleyCyril NewtonPaul RinghamLeila WardPaul Wood (3)Terry JohnsAlice McVeighKeith MillarStanley WoodsEdward BarryRoger GrovesDavid Willis (3)Christopher MowatJudith TempplemannGeoffrey GilbertJames Bradshaw (2)David BroughtonDominic WeirMichael AngressGraham Lee (5)Nick RodwellKeith MarjoramJaime MartínDennis BrainPhil Brown (11)Katherine JenkinsonHenry DatynerWilliam HoughtonVernon DeanChristine PalmerCaroline HarrisonMartin HumbeyWalter LearJean-Baptiste ToselliReginald KellSantiago CarvalhoKeith BraggNicholas DaviesJoseph AtkinsGraham PyattMyrna EdwardsSusan CrootSarah GayeCatherine McCrackenMarianne HodgeGill CavanaghSimon HallettMaurice BrettAlison BeattyJohn HurseyAnne McAneneyCarol IrbyJeremy CornesLeslie ChildLaurence RogersJoanne BoddingtonAileen MorrisonNicholas BoothroydJohn HattAdam PreciousNatasha HolmesGwilym HoosonGerri DroughtMaria DumreseDenise MarleynEve WatsonJacqueline WoodsMartin TurnlandDaniel LynessTimothy AmherstSian DaviesKaren LeachSydney MannChris WestcottHilary MyerscoughSandra MackCatherine CraigRobert QuickChristopher McShaneAlan AndrewsDiana CarringtonSusan AppelPrue SedgwickGwydion BrookeTimothy GillGordon LaingRobert McIntoshHeather BirksCaroline O'NeillPatrick Jones (3)Janet CrouchHelen SimonsBen Cunningham (4)Peter Hamilton (5)Matthew Lee (3)Clive Brown (3)Chris West (8)John Fisher (5)Chantal WebsterKay ChappellClara BissElizabeth Randall (2)Keith Pearson (2)Sylvia Mann (2)Alan Baker (2)Tim Barry (2)Andrew Mitchell (3)John McCutcheon (3)Lee StephensonSusan Smith (2)Phil Brown (17)Angela Moore (2)Paul Buckton (2)Mark Denman (2)Rachel Cohen (3)Peter Dale (4)Terence MacDonaghLeonard DommettAndrew StoreyGerald GregoryKaren StephensonChristopher IrbyTriona MilneCormac Ó hAdodáinMichael MeeksKevin Morgan (5)Paul Draper (3)Frederick RiddleSali-Wyn RyanMichael WhightTina BonifacioDavid Stone (17)Peter Graham (5)Katherine LacyNorman Nelson (3)Claude HobdayJackie KendleChian LimSuzy Willison-KawalecPhil Woods (3)Emer McDonoughAudrey DouglasFred HarmerCharles WoodhouseJian LiuEmma HeathcoteMarie MacleodSophie MatherDavid WhistonThomas WatmoughNiall KeatleyJohn Roberts (15)Celeste RushSulki YuAlbert CayzerWalter MonyMatthew Gee (2)Esther HarlingCharlotte AnsbergsStephen Payne (2)Jonathan AylingRosie WainwrightRachel van der TangJonathan HallettFraser GordonTamás AndrásKaty AylingErik Chapman (2)Imogen EastEllen BlytheMat HeighwayToby StreetJason Evans (9)Richard Waters (5)Naoko KeatleyAlexander EdmundsonClare DuckworthJames Casey (6)Alfred HobdayElaine AckersHuw Clement EvansDavid Lyon (5)David Gordon (15)Matthew Williams (8)Philip White (8)Peter Ellis (11)Timothy RidoutAndrew Fletcher (6)Robert HeardJosh CirtinaShana Douglas (2)Samantha NormanBen HulmeJennifer DearMaria OldakJames Fountain (3)Anna StuartMatthew Knight (6)Oscar LampeAubrey ThongerCharles Gregory (7)Sarah White (7)Robert Leighton (2)Roger Clark (5)Levis GarsonManuel PortaBen WolstenholmeRosemary WainwrightEsther Kim (3)Pamela FerrimanUgnė TiskutėMartin LüdenbachJames W. Brown (2)Abigail FennaAyse OsmanHelen StoreyRichard IonSonia SielaffFinlay BainRupert WhiteheadKenneth Essex (2)Patrick FlanaghanIan Davidson (12)Adriana Iacovache-PanaPaul LestreMaria OłdakMaria MealeyRebecca Gibson SwiftClare-Louise ApplebyJohn Woolf (4)Graeme Adams (2)Kevin WatermanZoë TweedRobert IssellLaurence HoltMichael Wright (28)David Broughton (3)Neil Watson (13)Peter Hodges (3)Jonathan RookeChristopher Cole (7)Georgina PayneJoseph CowieBernard O'Reilly (3)Joseph Fisher (3)Joanna Marsh (2)Naomi Watts (2) + +341147Narciso YepesNarciso García YepesSpanish classical guitarist, arranger and composer, born 14 November 1927 in Lorca, Spain and died 3 May 1997 in Murcia, Spain. +Married to [a=Maria H. Szumlakowska de Yepes].Needs Votehttp://www.narcisoyepes.org/https://en.wikipedia.org/wiki/Narciso_YepesDer Meister Der Gitarre Narciso YepesG. YepesJepesN YepesN. JepesN. YepesN. Yepes Et Sa GuitareN. YepezN. YèpesN. YépèsN. イエベスN.YepesNalciso YepesNarcisco YepesNarciso YepezNarciso YépèsNarciso YẹpesNarcissoNarcisso JepesNarcisso YepesYapesYepesYepes EdyYepes NarcisoYepésYetes NarcisoYèpesYépesYépésНарсисо ЙепесНарцисо Йепесイエペスエペスナルシソ・イエペス + +341250Ron MaloRonald Clements MaloEngineer +He has worked at [l289765], Chicago, Illinois. +He was born August 29 1935 in Illinois. +He died on 15 August 1992 in Burbank, California. +Correcthttps://en.wikipedia.org/wiki/Ron_Malohttps://groups.google.com/forum/#!msg/bit.listserv.blues-l/nMn1AD_ne-g/odutzhLflAYJMaloR. MaloRonRon MalloRonald MaloRoy MaloRun Malo + +341357John EwingJohn Richard EwingBorn: January 19, 1917 in Topeka, Kansas +Died: February 1, 2002 in Pasadena, California + + +John Richard "Streamline" Ewing was a trombonist who worked with a number of major bands in the late 1930s and 1940s, including those led by ay Jay McShann, Cootie Williams, Earl Bostic, Earl Hines, Louis Armstrong, Lionel Hampton, Cab Calloway and Jimmie Lunceford. He worked with Teddy Buckner from 1956 into the 1980s. For a brief period in the late 1950’s he led his own band, “John Ewing and the Streamliners”. In the early 1980’s he joined the Johnny Otis Orchestra. +Needs Votehttps://adp.library.ucsb.edu/names/111299"Streamline" Aving"Streamline" Ewing"Streamliner" John EwingEwingJ. EwingJesse "Streamline" EwingJesse EwingJohn "Stream" EwingJohn "Streamline" EwinJohn "Streamline" EwingJohn 'Streamline' EwingJohn (Streamline) EwingJohn R. EwingJohn Streamline EwingJohn «Streamline» EwingJohn ‘Streamline’ EwingJohnny "Streamline" EwingPhil Streamline EwingRussell "Streamline" EwingStreamline EwingStreamline (5)Jimmie Lunceford And His OrchestraGerald Wilson OrchestraEarl Hines And His OrchestraJohnny Otis And His OrchestraThe Gerald Wilson Big BandRed Callender And His Modern Octet + +341364Gene EstesAmerican jazz (but also rock) drummer, percussionist and vibraphonist. +Born : October 03, 1931 in Texas. +Died : March 17, 1996 in North Hollywood, California. + +Gene played with Shorty Rogers, Jean-Luc Ponty, Frank Zappa, Neil Diamond, Harry Nilsson, Boz Scaggs, Tina Turner, Little Richard, Sam Cooke and many others.Needs Votehttps://adp.library.ucsb.edu/names/117136Eugene EstesGene EsteGene P. EstesJene EstesHarry James And His OrchestraLes Brown And His Band Of RenownShorty Rogers And His OrchestraThe Abnuceals Emuukha Electric OrchestraThe SurfmenL'Ensemble Instrumental Des IlesLes Cinq ModernesJack Sheldon QuintetThe Paul Horn QuintetThe Gene Estes BandThe Paul Horn FourHeinie Beau And His Hollywood SextetMat Mathews SextetThe Phil Moody QuintetJerry Fuller SextetThe Wrecking Crew (6)Johnny Varro trioHerschel Burke Gilbert OrchestraThe Bobby Gordon QuartetChuck Hedges QuartetThe Dick Hafer QuartetThe Gene Estes Quartet + +341395Paul Whiteman And His OrchestraThe most popular band of the 1920s. Extremely successful with a commercial sound compared to the peers, an early purveyor of symphonic jazz. +Not to be confused with the much larger [a2763165].Needs Votehttps://syncopatedtimes.com/paul-whiteman-and-his-orchestra/A Contingent From Paul Whiteman's OrchestraFeaturingL'Orchestra Di Paul WhitemanL'Orchestre WhitemanL'orchestra Di Paul WhitemanLa Orquesta De Paul WhitmanMembers Of Paul Whiteman's OrchestraOrchester Paul WhitemanOrchestraOrchestra Paul WhitemanOrquesta De Paul WhitemanOrquesta Paul WhitemanP. Whiteman And His Orch.Paul Whiteman Und Sein OrchesterPaul WhitemanPaul Whiteman "The King Of Jazz" & His OrchestraPaul Whiteman & HIs Orch.Paul Whiteman & Hans OrkesterPaul Whiteman & His Dance BandPaul Whiteman & His O.Paul Whiteman & His Orch.Paul Whiteman & His OrchestraPaul Whiteman & Orch.Paul Whiteman & Son OrchestrePaul Whiteman And His Ambassador OrchestraPaul Whiteman And His Concert OrchestraPaul Whiteman And His Orch.Paul Whiteman And His TroupePaul Whiteman And OrchestraPaul Whiteman E La Sua OrchestraPaul Whiteman E Sua OrquestraPaul Whiteman Et Son OrchestraPaul Whiteman Et Son OrchestrePaul Whiteman Och Hans OrkesterPaul Whiteman Og Hans OrkesterPaul Whiteman OrchPaul Whiteman Orch.Paul Whiteman OrchestraPaul Whiteman Orchestra, ThePaul Whiteman Und Sein OrchesterPaul Whiteman Und Sein OrchestraPaul Whiteman Y Su OrquestaPaul Whiteman and his OrchestraPaul Whiteman y Su OrquestaPaul Whiteman's "Hawaiian Magic"Paul Whiteman's Orch.Paul Whiteman's OrchestraPaul Whiteman, The King Of Jazz And His OrchestraPaul Whitemans OrkesterPaul Withemann And His OrchestraThe OrchestraThe Paul Whiteman And His OrchestraThe Paul Whiteman OrchestraThe Paul Whitman OrchestraThe Paul Withman OrchestraWhiteman's OrchestraОрк. Под Управлен. П. УайтманаОрк. Под Управлением Поль ВайтманОрк. п/у УайтманаОрк. под упр. УайтманаОркестр И Хор п/у Пола УайтманаОркестр П. У. Пола УайтменаОркестр Под Управлен. П. УайтманаОркестр Под Управлением Поль ВайтманBing CrosbyJohnny MercerTommy DorseyJoe VenutiArt RyersonBix BeiderbeckeWillie RodriguezJimmy DorseyPaul WhitemanIzzy FriedmanRoy BargyBoyce CullenMin LeibrookEddie LangBill RankSteve Brown (2)Jack TeagardenFrankie TrumbauerLennie HaytonCharles StrickfadenJohn CordaroKurt DieterleArt MillerNat NatoliPerry BotkinMike PingitoreHarry GoldfieldLarry GomarJack FultonMatty MalneckCharlie TeagardenChester HazlettWilbur HallMike TrafficanteHerb QuigleyAndy SecrestOtto LandauRed MayerHal MatthewsBilly ButterfieldNate KazebierMurray McEachernTom MaceVic BertonBill SchumannCarl KressTommy GottBenny BonaccioJimmy MundyElmer SmithersJulius HeldLeonard HartmanFerde GroféArtie ShapiroBill ChallisDon GoldieKing GuionAl RinkerHarry BarrisMischa RussellHenry BusseMonty KellySkip LaytonAlvy WestLarry NeilDanny D'AndreaDon WaddilovePaul GeilHenry SternHarold McDonaldHale ByersEd PowellEd WadeHarry StrubleHenry LangeJose GutierrezCharles GaylordJohn Bowman (2)Harry PerrellaMario PerryHal McLeanNye MayhewRube CrozierBuddy WeedBuster JohnsonGus MuellerCharlie MargulisGeorge Marsh (2)Eddie "Snoozer" QuinnVincent GrandeJoe RushtonHoward KayJack MayhewAustin YoungTom SatterfieldMellowairesVincent PirroNorman McPhersonDavid Newman (9)Sam Lewis (5)Frank D. SiegristAl ArmerDon Clark (5)Vic D'IppolitoJohn SperzelE. Lyle SharpeIrving GreenwaldNat Brown (3)Milt WilliamsAlbert CassidyBernard DalyHarry AzenHarry PerellaTeddy BartellWalter HolzhausEleanora McKayTed BaconLou PainoSol BlumenthalFrank MarsalesJohn Jarman (2)George UngerNels SassersonJames McKillop (2) + +341400Jimmy Dorsey And His OrchestraSwing orchestra led by Jimmy Dorsey.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/323516/Jimmy_Dorsey_OrchestraBandJImmy Dorsey & His OrchestraJimmie Dorsey & His OrchestraJimmy DorseyJimmy Dorsey BandJimmy Dorsey & His Orch.Jimmy Dorsey & His OrchestraJimmy Dorsey & Orch.Jimmy Dorsey & Son OrchestreJimmy Dorsey And His Orch.Jimmy Dorsey And Orch.Jimmy Dorsey And Their OrchestrasJimmy Dorsey E La Sua OrchestraJimmy Dorsey O.Jimmy Dorsey Orch.Jimmy Dorsey OrchesterJimmy Dorsey OrchestraJimmy Dorsey Orchestra And ChorusJimmy Dorsey Orchestra, TheJimmy Dorsey OrkestereineenJimmy Dorsey Und Sein OrchesterJimmy Dorsey With OrchestraJimmy Dorsey With Orchestra And ChorusJimmy Dorsey Y Su Gran OrquestaJimmy Dorsey Y Su OrchestraJimmy Dorsey Y Su OrquestaJimmy Dorsey's BandJimmy Dorsey's OrchJimmy Dorsey's OrchestraJimy Dorsey & His OrchestraLa Orquesta De Jimmy DorseyOrchester Unter Ltg. Von Jimmy DorseyOrchestra Jimmy DorseyOrkestar Jimmy DorseyOrquesta De Jimmy DorseyThe Fabulous New Jimmy Dorsey OrchestraThe Jimmy Dorsey OrchThe Jimmy Dorsey Orch.The Jimmy Dorsey OrchestraThe Rhythm KingsChuck GentryNick DiMaioRay McKinleyHerb EllisMarky MarkowitzJohn FrigoJimmy DorseyFreddie SlackRay LinnSerge ChaloffHerbie HaymerAllan ReussIrving GoodmanSkeets HerfurtNate KazebierClaude BowenAndy RussoSi ZentnerDick CaryJohnny GuarnieriBabe FreskNoni BernardiTony FasoRalph MuzilloJohnny NaptonBuddy SchutzNorman Bates (2)Tutti CamarataRobert AlexanderTeddy WaltersBob LawsonMike Lewis (7)Bobby ByrneJoe LipmanChauncey WelschLou CarterFud LivingstonDavid Mann (3)Milt YanerPhil NapoleonRoc HillmanBobby Van EpsJack RyanBob AlexyWilliam PritchardCharles FrazierTommy KayPaul McCoy (2)Guy Smith (2)Joe YuklBill CoveyFrank LangoneSonny LeeLeonard WhitneyKarl KiffeGeorge ThowJack StaceyNathan SolomsonDon MattesonJerry RosaMarvin Wright (3)Patti PalmerJimmy Campbell (6)Sam RubinowitchCy BakerNat LobovskyAl JordanSy BakerJimmy MiddletonSlim TaftToots CamarattaCliff Jackson (3)Tony PicciottoJack AikenGilbert KoernerCharles Travis (2)Jimmy Dorsey, His Orchestra & Chorus + +341403Charlie Barnet And His OrchestraNeeds Votehttps://www.imdb.com/name/nm1933255/https://adp.library.ucsb.edu/names/110991C. Barnett & OrchestraCarlos Barnet Y Su ConjuntoCarlos Barnet Y Su OrquestaCharles Barnet & His OrchestraCharles Barnet And His OrchestraCharles Barnett And His OrchestraCharley Barnet And His OrchestraCharlie BarnetCharlie Barnet & His OrchestraCharlie Barnet "King Of The Saxophone" And His OrchestraCharlie Barnet & His BandCharlie Barnet & His Orch.Charlie Barnet & His OrchestraCharlie Barnet & Orch.Charlie Barnet & OrchestraCharlie Barnet & his OrchCharlie Barnet And BandCharlie Barnet And His BandCharlie Barnet And His Orch.Charlie Barnet And OrchestraCharlie Barnet Con Su OrquestaCharlie Barnet E La Sua OrchestraCharlie Barnet E OrquestraCharlie Barnet E Sua OrquestraCharlie Barnet Et Son Grand OrchestreCharlie Barnet Orch.Charlie Barnet OrchestraCharlie Barnet OrkestereineenCharlie Barnet Town Hall Jazz ConcertCharlie Barnet U. S. OrchesterCharlie Barnet Und Sein OrchesterCharlie Barnet Y Orq.Charlie Barnet Y Su Orq.Charlie Barnet Y Su OrquestaCharlie Barnet y Su OrquestaCharlie Barnet y su OrquestaCharlie Barnet's OrchestraCharlie Barnett & His OrchestraCharlie Barnett And His BandCharlie Barnett And His OrchestraCharlie Barnett OrchestraCharlie YBarnet Y Su OrquestaCharly Barnet OrchestraChick Webb & His OrchestraConjunto Carlos BarnetOrquesta Charlie BarnetSwing And Sweat With Charlie BarnetThe Barnet BandThe Charles Barnet Big BandThe Charlie Barnet OrchestraThe Charlie Barnett OrchestraTommy Dorsey & His Orchestraチャーリー・バーネット楽団Jack HendersonDoc SeverinsenRolf EricsonDick HaferBarney KesselPhil WoodsBilly MayBernie PrivinMundell LoweDave Matthews (2)John KirbyLawrence BrownEddie SauterDanny BankGeorge DuvivierDon LamondBill HolmanHank JonesCharlie ShaversCharlie BarnetDodo MarmarosaAl PorcinoPeanuts HollandRed NorvoLammar WrightBob SwiftIrving GoodmanTommy PedersonGeorge SeabergSid WeissRussell BrownLeo WhiteJimmy MaxwellSkip MartinPaul WebsterEddie SafranskiBilly GussakBill Miller (2)Mary Ann McCallAl KillianCharles CoolidgePhil StephensMorris RaymanLyman VunkEd WassermanJames LamareConn HumphreysBus EtriBill RobertsonGene KinseyMurray WilliamsKurt BloomFord LearyCliff LeemanSpud MurphyJohn OwensBobby BurnetDick CollinsJohn HowellTutti CamarataJoe FerranteMickey ScrimaMickey BloomBuddy DeFrancoBob PriceTony Di NardiJohn CoppolaArt RaboyClaude WilliamsonKenny MartlockDick KenneyVinnie DeanHoward RumseyIvar JaminezJohn MarkhamDick MeldonianTurk Van LakeChauncey WelschRene BlochJohnny MartelPorky CohenNicholas PisaniGeorge BohnNat JaffeGerald FosterBob PolandVernon Smith (2)Dick ShermanWally GordonWalter BensonDick ShanahanSam SkolnickBen PickeringDon RuppersbergJoe HostetterEd MihelichFred FallensbyLarry Taylor (4)Owen B. MasingillCarl ElmerMichael Goldberg (2)Judy EllingtonDon McCookRay MichaelsBen Hall (4)Lyle MurphyFern CaronJohnny MendellWesley DeanHorace DiazKermit SimmonsChuck JordanLes Cooper (4)Charles HuffineGeorge EspositoMarshall MendellBob Harrington (2)Don DavidsonArt RobeyKahn KeeneJimmy PupaCy BakerBob DawesEd FrommAndy PinoSy BakerPhil Stevens (5)Henry SaltmanJack JarvisGeorge BoneWally BarronCharles Zimmermann (2)Tom Moore (6)Dave HallettErnie FigueroaJack MootzRay HopfnerJack LeMaireRuss WagnerWayne NicholsBurt JohnsonEd PrippsJoe MeisnerHarold HahnFrank Bradley (2)Harold HerzonJohn ChanceDave Nichols (6)Carlton McBeathStan StecklerJohn ColtraineAl Del SimoneErnie Hood (2)Ken Matlock + +341415Boyd Raeburn And His OrchestraOrchestra led by saxophonist [a=Boyd Raeburn] active between 1943 to 1949. + +The band, controversial for its sometimes harmonically advanced or rhythmically complex arrangements, collected a small group of fiercely loyal advocates, but failed to be commercially successful.Needs Votehttps://artmusiclounge.wordpress.com/2019/01/05/forgotten-jazz-orchestras-boyd-raeburn/Boyd RaeburnBoyd Raeburn & His Orch.Boyd Raeburn & His OrchestraBoyd Raeburn & Orch.Boyd Raeburn And BandBoyd Raeburn And OrchestraBoyd Raeburn OrchestraOrch. Boyd RaeburnThe Boyd Raeburn OrchestraDizzy GillespieWilbur SchwartzOscar PettifordJimmy GiuffreAl CohnTiny KahnLucky ThompsonJohnny MandelShelly ManneBernie GlowDodo MarmarosaEddie BertBritt WoodmanConte CandoliRay LinnGail LaughtonTrummy YoungSerge ChaloffBob SwiftTommy PedersonStan FishelsonHarry BabasinFrank BeachClyde LombardiJackie MillsHal McKusickHarry KleeZeke ZarchyDavid AllynBenny HarrisBuddy DeFrancoFrank SocolowOllie WilsonIrv KlugerPorky CohenFreddy ZitoSteve Jordan (3)Ike CarpenterTony RizziGeorge HandyJohnny BothwellCarl BergJulie JacobsHal SchaeferNorman FayeLloyd OttoBoyd RaeburnShirley Thompson (2)Joe MegroTommy AllisonRay Rossi (2)Jack CarmanDon DarcyHal Smith (4)Allen FieldsDale PearceCarl GroenHy MandelNelson ShelladyGus McReynoldsRalph Lee (2)Alan JeffreysNelson ShelladayEvan VailWalter Robinson (4)Sam KrupitJohn BerisiFrank WebbJoe Romano (8)Micky Mendi + +341422Gerald Wilson OrchestraNeeds Vote(Gerald Wilson's Orchestra)Gerald WilsonGerald Wilson & His OrchestraGerald Wilson & Orch.Gerald Wilson & OrchestraGerald Wilson And His BandGerald Wilson And His OrchestraGerald Wilson And OrchestraGerald Wilson Big BandGerald Wilson His Trumpet And His OrchestraGerald Wilson Orch.Gerald Wilson Orchestra, TheGerald Wilson and His OrchestraGerald Wilson' (6-7 Piece) BandGerald Wilson's BandGerald Wilson's OrchestraLa Orquesta De Gerald WilsonOrchestra Under The Direction Of Gerald WilsonThe 17 Piece Orchestra Of Gerald WilsonThe Gerald Wilson Orch.The Gerald Wilson OrchestraRoy AyersGeorge DukeRichard "Groove" HolmesBobby HutchersonGerald WilsonJack WilsonCarmell JonesWilton FelderJoe PassDon RandiGary BaroneCharles TolliverJean-Luc PontyPaul HumphreyLeroy VinnegarCurtis AmyErnie WattsKenny ShroyerJohn AudinoTommy FlanaganFrank ButlerVictor FeldmanBud ShankLaurindo AlmeidaHarold LandJimmy RowlesBill PerkinsMel LewisDave PellTeddy EdwardsJack NimitzJimmy BunnEddie "Lockjaw" DavisJimmy OwensPhil Moore IIIDennis BudimirLew McCrearyMike BaroneJimmy BondAnthony OrtegaFreddie HillLester RobertsonOllie MitchellAl PorcinoJules ChaikinHoward Johnson (3)Art MaebePaul HubinonMax GardunoWalter BentonHadley CalimanMelba ListonFloyd TurnhamTed KellyHerbie LewisDick GroveBobby BryantAlexander ThomasKamasi WashingtonThurman GreenDavid DukeBob WestPete TerryHarry KleeJames ZitoJay DaVersaJohn EwingNathaniel MeeksDon SwitzerFreddie HallLester RobinsonChuck CarterJoe MainiModesto DuranJimmy WoodsRay TriscariRichard AplanalpErnie TackWilliam PetersonFrank StrongJerome RuschLou BlackburnMike WimberlyLarry McGuireStan GilbertWilliam GreenGene EdwardsJeremy PeltSteve HuffsteterJoe PorcaroCarl LottWilbert LongmireTony LujanMichael Anthony (5)Melvin Moore (2)Mike WoffordAlex RodriguezMichael RodriguezDalton SmithMike Anthony (4)Maurice James SimonBuddy WoodsonGeorge HydeHenry Tucker GreenGus EvansMel LeeDon RaffellBobby KnightRon BarrowsBrian O'RourkeMoises OblagacionRay BojorquezHenry De VegaAllan BeutlerDick ForestBob EdmondsonJoe Kelly (7)Hugh AndersonBill MattisonSean Jones (2)Vernon SlaterDave DysonVivian FearsRalph BledsoeRobert Ross (7)Adolpho ValdezWilliam Marshall (8)Dick Forrest (2)Jack TrainorViktor GaskinBob SanchezLeon TrommelIsaac LivingstoneJames Anderson (44)Fred Murell + +341437Doug MillerAmerican saxophonistNeeds VoteD. MillerEdward D. "Doug" MillerCount Basie OrchestraLionel Hampton And His OrchestraGeorge Russell's New York BandLionel Hampton & His Big Band + +341441Earl McIntyreTrombonist who has served as guest conductor for the Brooklyn Philharmonic, b Nov, 21, 1953. Also tuba player with the Carla Bley Band. Needs Votehttps://www.linkedin.com/in/earl-mcintyre-bb781810Ear McIntyreEarlEarl MacIntyreEarl MackentyreEarl Mc IntyreEarl McIntireEarl McIntryEarl McKintyreEarl P. McIntyreEarle McIntryeEarle McIntyreGil Evans And His OrchestraThe George Gruntz Concert Jazz BandThe Cecil Taylor UnitThe Carla Bley BandGeorge Russell's New York BandAfro-Latin Jazz OrchestraNatural Essence (2)Thad Jones / Mel Lewis OrchestraMingus Big BandHoward Johnson & GravityThe "New Lucifers"Bill Warfield Big BandThe Vanguard Jazz OrchestraThad Jones & Mel LewisJoris Teepe Big BandFred Ho And The Green Monster Big Band + +341494Coot GrantLeola B. PettigrewAmerican classic female blues, country blues, and vaudeville singer & songwriter. +Born June 11 or 17, 1893 in Birmingham, Alabama. +Died December 26, 1970 in Riverside County, California at age 77. +[a=Ann Johnson (2)] may also be a pseudonym for Grant. +Coot Grant also played guitar and danced.Needs Votehttps://en.wikipedia.org/wiki/Coot_Granthttps://syncopatedtimes.com/coot-grant-singer-and-vaudevillian/https://adp.library.ucsb.edu/names/107226"Coot" GrantC. GrantCool GrantCoots GrantGrantGrentKid WilsonLeola "Coot" GrantLeola 'Coot' GrantLeola B.Leola B. "Coot" GrantLeola B. GrantLeola B. WilsonLeola B. PettigrewPatsy HunterGrant & WilsonHunter And Jenkins + +341505Earl Hines And His OrchestraBig Band formed by [a=Earl Hines] in 1928 as a rehearsal band while he was appearing with [a=Jimmie Noone's Apex Club Orchestra]. + +The group worked to combine the Hot Chicago sound with the arranged, twelve-piece orchestral big band. The band used many different arrangers. The Hines band usually comprised 15-20 musicians on stage, occasionally up to 28. Among the band's many members were Wallace Bishop, Alvin Burroughs, Scoops Carry, Oliver Coleman, Bob Crowder, Thomas Crump, George Dixon, Julian Draper, Streamline Ewing, Ed Fant, Milton Fletcher, Walter Fuller, Dizzy Gillespie, Leroy Harris, Woogy Harris, Darnell Howard, Cecil Irwin, Harry 'Pee Wee' Jackson, Warren Jefferson, Budd Johnson, Jimmy Mundy, Ray Nance, Charlie Parker, Willie Randall, Omer Simeon, Cliff Smalls, Leon Washington, Freddie Webster, Quinn Wilson and Trummy Young. Occasionally, Hines allowed other pianists to play as "relief" piano player which better allowed Hines to conduct his whole "Organization". Several pianists filled in, such as Jess Stacy, Nat "King" Cole, and Teddy Wilson (Cliff Smalls was his favorite). + +In 1928 Hines and his orchestra opened at Chicago's Grand Terrace Cafe. For many years, the Hines big band broadcast live from the Grand Terrace, garnering a huge nationwide audience. +In 1931, Earl Hines and his Orchestra "were the first big Negro band to travel extensively through the South". Hines referred to it as an "invasion" rather than a "tour". Between a bomb exploding under their bandstage in Alabama (" ...we didn't none of us get hurt but we didn't play so well after that either") and numerous threatening encounters with the Police, the experience proved so harrowing that Hines in the 1960s recalled that, "You could call us the first Freedom Riders". For the most part, any contact with whites, even fans, was viewed as dangerous. Finding places to eat or stay overnight entailed a constant struggle. + +Hines led his big band for 20 years, right up to the demise of big swing bands in the postwar period. During the WWII years, the Hines band was a hotbed of experimentation and new directions in jazz. Both Charlie Parker and Dizzy Gillespie worked with Hines, as did Benny Carter, Wardell Gray and Gene Ammons. Hines’ featured singers were Billy Eckstein and Sara Vaughan. And Budd Johnson updated Hines' arrangements to reflect the new musical vocabulary of Parker and Gillespie. By the 1950s Hines returned to work with Louis Armstrong on his All-Stars band. Eventually Hines settled in the Bay Area, forming his own Dixieland band.Needs Votehttps://adp.library.ucsb.edu/names/313395Earl "Fatha" Hines & His OrchestraEarl "Fatha" Hines & Orch.Earl "Fatha" Hines And His BandEarl "Fatha" Hines And His Orch.Earl "Fatha" Hines And His OrchestraEarl "Fatha" Hines And OrchestraEarl "Fatha" Hines Et Son OrchestreEarl "Fatha" Hines His Piano And OrchestraEarl "Fatha" Hines Orch.Earl "Fatha" Hines OrchestraEarl "Fatha" Hines Y Su OrquestaEarl "Fatha" Hines, His Piano And OrchestraEarl 'Fatha' Hines & His OrchestraEarl 'Fatha' Hines And His OrchestraEarl (Fatha') Hines And His OrchestraEarl (Fatha') Hines And OrchestraEarl Fatha Hines & His OrchestraEarl Fatha Hines OrchestraEarl HinesEarl Hines "Big Band"Earl Hines & His OrchestrEarl Hines & His OrchestraEarl Hines And His Orch.Earl Hines And OrchestraEarl Hines Big BandEarl Hines E La Sua OrchestraEarl Hines Et Son Grand OrchestreEarl Hines Et Son OrchestreEarl Hines OrchEarl Hines Orch.Earl Hines OrchestraEarl Hines Und Sein OrchesterEarl Hines Y Su OrquestaEarls Hines And His OrchestraHis OrchestraL'Orch. Di Earl HinesL'Orchestra Di Earl HinesOrchestra Di Earl HinesOrchestra Earl HinesThe Earl Hines Orchestraアール・ハインズ楽団Sarah VaughanRichard WilliamsJimmy ClevelandRene HallEarl HinesVic DickensonBennie GreenIvie AndersonWardell GraySnooky YoungGus JohnsonRay NanceAl GibbonsLester BooneValaida SnowHayes AlvisTrummy YoungBilly EckstineWillie CookRick HendersonHarry "Pee Wee" JacksonEmmett BerryKermit ScottHurley RameyOliver ColemanEdward FantWillie RandallBudd JohnsonHerb JeffriesWini BrownOmer SimeonMorris LaneTruck ParhamScoops CareyJesse MillerGeorge DixonGeorge HuntJoe McLewisShirley ClayJohn EwingRudy TraylorJimmy MundyBenny HarrisLeroy HarrisOliver JacksonHenderson ChambersBill PembertonChick BoothWalter FullerSkeeter BestFranz JacksonGeorge Mitchell (3)Huey LongFreddie WebsterJohn Williams (14)Alvin BurroughsGerald Valentine (2)Shorty McConnellEd BurkeDarnell HowardQuinn WilsonEdward SimsRostelle ReeseWallace BishopRobert Crowder (2)Leon WashingtonRichard Harris (5)Milton Fletcher (2)Claude RobertsCliff SmallsRuss AndrewsArthur WalkerCharlie Allen (3)Thomas CrumpIrv StokesDavid Booth (2)Lloyd Smith (5)Bill Thompson (9)Laura RuckerCecil IrwinGus ChappellToby TurnerBenny WashingtonMadeline GreenThe Three VarietiesLeon ScottLouis Taylor (3)Kenneth StuartWarren JeffersonLawrence DixonDruie BessWalter Harris (2)Eddie Smith (11)Bob Wyatt (2)William Franklin (2)Alan HareTommy EnochBobby Donaldson (3)Nat AtkinsonBilly Douglas (3)Palmer DavisGene Thomas (6)Ernest Williams (3) + +341527Cameron BrownCameron Langdon BrownAmerican jazz double bassist, born 21 December 1945 in Detroit, Michigan, USA.Needs Votehttps://books.google.de/books?id=KEHGs88c-aAC&pg=PT194&lpg=PT194&dq=cameron+langdon++brown&source=bl&ots=7UG_DPeTBZ&sig=KwzkeYGdMiHXNUqN5QeYOnsalP8&hl=de&sa=X&ved=0ahUKEwiy0buI9_LbAhXBLVAKHT8_BCIQ6AEIXTAL#v=onepage&q=cameron%20langdon%20%20brown&f=falseBrownC. BrownCam BrownCamaron BrownCameroun BrownArchie Shepp QuartetArt Blakey & The Jazz MessengersThe George Russell SextetThe Archie Shepp GroupGeorge Adams - Don Pullen QuartetDewey Redman QuartetDannie Richmond QuintetThe New Archie Shepp QuartetThe 360 Degree Music ExperienceMassimo Urbani QuartetThe Last Mingus BandThe Jack Walrath GroupSonny Simmons TrioBob Degen QuartetEd Blackwell TrioJazzCode™Nathalie Loriers QuartetKatchie Cartwright QuintetConnie Crothers - Lenny Popkin QuartetEmanons StorbandBlue Brass ConnectionSteve Slagle QuartetJim McNeely TentetFeatheryWolfgang Lackerschmid QuartetMichael Musillami OctetRichard Tabnik TrioRox TrioCameron Brown And The Hear And Now + +341576Dick KatzRichard Aaron KatzAmerican jazz pianist, arranger, record producer, educator and writer +Born March 13, 1924 in Baltimore, Maryland, died November 10, 2009 in Manhattan, New York City, New York + +Katz had freelanced throughout much of his career, and worked in a number of ensembles.Needs Votehttps://en.wikipedia.org/wiki/Dick_Katzhttps://adp.library.ucsb.edu/names/324791D. KatzDick Katz [As Bill Richard]KatzRichard Albert 'Dick' Katzディック・カッツLee Konitz Big BandBenny Carter And His OrchestraStan Getz QuartetBen Webster QuartetLee Konitz QuintetBuck Clayton With His All-StarsThe Tony Scott QuartetThe Mat Mathews QuartetManny Albam And His Jazz GreatsThe Dick Katz TrioJoe Newman OctetThe American Jazz OrchestraLarry Sonn OrchestraOsie Johnson QuintetThe Jay And Kai QuintetJimmy Knepper QuintetGene Quill And His QuintetOscar Pettiford OrchestraThe Lee Konitz TrioPaul Horn QuartetBuck Clayton And His Swing BandLoren Schoenberg And His Jazz Orchestra + +341663Jule StyneJulius Kerwin Stein[b] >> When credited with [a=Sammy Cahn], please use the joint credit: [a=Jule Styne And Sammy Cahn] << [/b] + +British-born American songwriter and composer especially famous for a series of Broadway musicals (born 31 December 1905 in London, England, UK - died 20 September 1994 in New York City, New York, USA). Father of [a=Stanley Styne] and uncle of [a300030]. Inducted into the Songwriters Hall of Fame in 1972 and the Theatre Hall of Fame in 1981.Needs Votehttps://www.julestyne.com/https://en.wikipedia.org/wiki/Jule_Stynehttps://www.imdb.com/name/nm0006312/https://www.songhall.org/profile/Jule_Stynehttps://adp.library.ucsb.edu/names/103313DŽ.StainsDž.StainsG. StynerGryneI. StyneJ SteinJ StyneJ. FineJ. SayneJ. SteinJ. SteynJ. StijneJ. StineJ. StiyneJ. StoneJ. StyenJ. StyleJ. StyneJ. StynerJ. StynwJ. StynéJ. StyrneJ. TyneJ., StyneJ.SteinJ.StyleJ.StynJ.StyneJ.styneJ: StyneJoe StearnJoe SteenJoe SteinJole StyneJuel StyneJule SteinJule SteineJule SteynJule SteyneJule StineJule StoneJule StyleJule StynJule StyneJule Styne, b. Julius Kerwin SteinJule StyniJule StynéJule-StyneJuleStyneJules K. SteinJules SteinJules SteynJules SteyneJules StoneJules StyneJules StynesJules StyrneJules styneJulestyneJulez StyneJulie SteinJulie SteyneJulie StineJulie StynJulie StyneJulie SyneJulius Kerwin "Jule" StyneJulius Kerwin StyneJuly StineJuly StyneJune StyneJute StyneM. StyneS.S. StyneSlyneSreinStayneSteinSteninSternSteynSteyneStienStineStneStoneStuneStyleStymeStynStyneStyne JuleStyne, JStyne, JuleStyngStynoStyrneSyneYule StyleYule Stynej. StynestyneДж. СтайнДжул СтайнЖ. СтайнСтайнスタインJule Styne And Sammy Cahn + +341782Ilpo SaastamoinenIlpo Erkki Aslak SaastamoinenFinnish guitarist, musicologist, composer and conductor, born July 22nd, 1942 in Pielavesi, Finland.Needs VoteI. SaastamoinenIljaIlja SaastamoinenIlpo "Ilja" SaastamoinenIpo SaastamoinenSaastamoinenAslak NunnuMuhtar ZühtüEero Koivistoinen Music SocietySoulsetKarelia GroupNunnu Big BandPiirpaukePohjantahtiCandy (35)The Winners (6)GoodmansDopplerin Ilmiö + +341812Glenn DicterowGlenn DicterowAmerican violinist and former Concertmaster for The New York Philharmonic, born 23 December 1948. He joined the New York Philharmonic in 1980 and left the orchestra, when being retired in 2014.Needs Votehttps://www.glenndicterow.com/https://en.wikipedia.org/wiki/Glenn_DicterowDicterow GlennDicterow Glenn EugeneGlen DicterowGlenn DictarowGlenn Eugene DicterowГ. ДиктеровГ. ДихтеровГленн ДиктеровNew York PhilharmonicLos Angeles Philharmonic OrchestraLyric Piano Quartet + +341914Thomas A. DorseyBorn: June 1, 1899 - Villa Rica, GA +Died: January 23, 1993 - Chicago, IL +Piano player/songwriter best known for writing blues classic "It's Tight Like That" (1928) and gospel standards like "Precious Lord, Take My Hand" (1932). In 1932 Dorsey (better known as "Rev. Thomas A. Dorsey") completely turned to writing biblical songs. +Thomas A. Dorsey got awarded with a Governor's Award For The Arts in Chicago (1985) and a Grammy\National Trustees Award (1992). +Needs Votehttp://georgiamusicmag.com/the-life-and-legacy-of-the-rev-thomas-andrew-dorsey/https://findagrave.com/cgi-bin/fg.cgi?page=gr&GSvcid=116536&GRid=6546&https://en.wikipedia.org/wiki/Thomas_A._Dorseyhttps://adp.library.ucsb.edu/names/106306https://www.imdb.com/name/nm0234185/"Georgia Tom" Dorsey"Georgia" Tom Dorsey'Georgia Tom' DorseyA. DorseyA. Thomas DorseyBorseyDarseyDirseyDorsayDorsay TADorsay TaDorseyDorsey Thomas ADorsey, T.ADorsey, T.A.Dorsey, Thomas ADorsey, Thomas A.Dr. Thomas A. DorseyF. A. DorseyGeorgia Thomas A. DorseyGeorgia Thomas DorseyGeorgia TomGeorgia Tom DorseyJ. DorseyK. DorseyP.D.Prof. Thomas A. DorseyProf. Thomas DorseyProfessor Thomas Andrew DorseyRev. DorseyRev. T.A. DorseyRev. Thomas A. DorseyRev. Thomas A. Dorsey |Rev. Thomas DorseyT A DorseyT DorseyT. A. D.T. A. DorsayT. A. Dorse<T. A. DorseyT. A: DorseyT. DorsayT. DorseyT.A. D'OrseyT.A. DorseyT.A.D'OrseyT.A.DorseyT.D'orsayT.DorseyTh DorseyTh. A. DorseyTh. DorseyThomasThomas A "Georgia Tom" DorseyThomas A DorseyThomas A. (Georgia Tom) DorseyThomas A. D'OrsayThomas A. DaisyThomas A. Dorsey (The Gospel Singer)Thomas A. Dorsey Alias Georgia TomThomas A.DorseyThomas Andrew DorseyThomas DoiseyThomas DorseyThomas E. DorseyThomas P. DorseyThomas/A. DorseyThos. A. DorseyThos. DorseyTom A. DorseyTom DorseyTomas A. DorseyTommy A. DorseyTommy DoreseyTommy DorseyTrad.Georgia TomGeorge RamseyMemphis MoseRailroad Bill (2)Texas Tommy (3)Memphis JimTampa Red And His Hokum Jug BandThe Hokum BoysFamous Hokum BoysThe Paramount All StarsHarum ScarumsYazoo All StarsThomas A. Dorsey And The Gospel SingersThe Hokum Boys (5) + +342140George Matthews (2)George MatthewsAmerican jazz trombonist. +Born September 23, 1912 in Dominica, British West Indies. +Died June 28, 1982 in New York City. + + +Needs Votehttps://en.wikipedia.org/wiki/George_Matthews_(musician)https://www.allmusic.com/artist/george-matthews-mn0000001014/biographyhttps://adp.library.ucsb.edu/names/330281G. MatthewsGeo. MathewsGeorge MathewsGeorge MatthewGeorges MatthewsMatthewsP. MathewsCount Basie OrchestraDizzy Gillespie And His OrchestraLouis Armstrong And His OrchestraCount Basie, His Instrumentalists And RhythmErskine Hawkins And His OrchestraChick Webb And His OrchestraLucky Millinder And His OrchestraElla Fitzgerald And Her Famous OrchestraLucky Thompson And His Lucky SevenBuster Harding's OrchestraWillie Bryant And His OrchestraChu Berry And His Stompy Stevedores + +342141Pete Clark (2)Pete Frank ClarkeAmerican jazz saxophonist (alto, baritone) and clarinetist, born March 10, 1911 in Birmingham, Alabama, died March 27, 1975 in New York. +Brother of [a2114627] (trumpeter) and [url=http://www.discogs.com/artist/418232]Arthur "Babe" Clarke[/url] (saxes), played with Montgomery's Collegiate Ramblers, Wayman Carver, Chick Webb, Duke Ellington, Louis Armstrong, Teddy Wilson, Rex Stewart, Don Redman, John Kirby, Happy Caldwell, Jimmy Jones and others.Needs Votehttp://alabamamusicoffice.com/artists-a-z/c/536-clarke-frank-petehttps://www.allmusic.com/artist/pete-clark-mn0001581238/biographyP. ClarckP. ClarkP. ClarkePete ClarkePeter ClarkDuke Ellington And His OrchestraLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraChick Webb And His OrchestraRex Stewart And His OrchestraElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraDon Redman And His Orchestra + +342173Norman Bates (2)Norman Louis BatesAmerican jazz double bass player. +Born 26 August 1927 in Boise, Idaho – died 29 January 2004. +Brother of [a=Bob Bates] and [a=Jim Bates (4)]. He played with [a=Jimmy Dorsey] in 1945, [a=Carmen Cavallaro] in 1947, [a=Dave Brubeck] in 1948/49 and others. +Needs Votehttps://data.bnf.fr/de/13950590/norman_bates/https://memim.com/norman-bates-musician.htmlhttps://adp.library.ucsb.edu/names/303404Norm BatesThe Dave Brubeck QuartetJimmy Dorsey And His OrchestraThe Paul Desmond QuartetDave Brubeck QuintetJack Sheedy's Jazz BandThe Jack Sheedy Sextet + +342236Harry KimTrumpeterNeeds Votehttps://en.wikipedia.org/wiki/Harry_Kim_(musician)https://harrykimtrumpet.com/"High Note" Harry KimH. KimHary KimIn Search Of OrchestraFlakesMighty FireRinlew AllstarsThe Phil Collins Big BandThe Phenix HornsVine Street HornsCuba L.A.ToluCaravana CubanaSoul Purpose Worship Band + +342246Mick GoodrickAmerican Jazz guitarist. + +Born in Sharon, PA, June 9, 1945. Died November 16, 2022. + + +Needs Votehttp://en.wikipedia.org/wiki/Mick_GoodrickGoodrickM. GoodrickM.GoodrickMichael GoodrickMichael GoodrickMick GoodrichWoody Herman And His OrchestraJack Dejohnette's Special EditionGary Burton QuintetGary Burton QuartetLiberation Music OrchestraCon Brio (4)Mick Goodrick QuartetWoody Herman And The Thundering HerdJerry Bergonzi 4etCarlo Mombelli's AbstractionsGreg Hopkins Quintet + +342361Teddy Wilson And His OrchestraCorrectHis Piano And His OrchestraOrchestra Teddy WilsonTeddy WilsonTeddy Wilson OrchestraTeddy Wilson & His 1939 Big BandTeddy Wilson & His OrchTeddy Wilson & His Orch.Teddy Wilson & His OrchestraTeddy Wilson & Orch.Teddy Wilson & OrchestraTeddy Wilson & Orchestra (Vocal Billie Holiday)Teddy Wilson & Son OrchestreTeddy Wilson (Piano) & His Orch.Teddy Wilson And His Big BandTeddy Wilson And His Orch.Teddy Wilson E La Sua Orch.Teddy Wilson E La Sua OrchestraTeddy Wilson E OrquestraTeddy Wilson E Sua OrquestraTeddy Wilson Et Son OrchestreTeddy Wilson His Piano & OrchestraTeddy Wilson His Piano And OrchestraTeddy Wilson His Piano And OrchstraTeddy Wilson O.Teddy Wilson Og Hans OrkesterTeddy Wilson Orch.Teddy Wilson OrchestraTeddy Wilson Se Svým OrchestremTeddy Wilson U. S. OrchesterTeddy Wilson With OrchestraTeddy Wilson Y Su OrquestaTeddy Wilson's Orch.Teddy Wilson's OrchestraTeddy Wilson, His Piano & OrchestraTeddy Wilson, His Piano And OrchestraTeddy Wilsons OrkesterThe Teddy Wilson OrchestraTheodore "Teddy" Wilson And His OrchestraTheodore 'Teddy' Wilson And His OrchestraElla FitzgeraldJonah JonesLionel HamptonJohnny WilliamsHelen WardBenny GoodmanTeddy WilsonBobby HackettBen WebsterCozy ColeLester YoungRoy EldridgeJohnny HodgesMilt HintonBabe RussinIrving RandolphGene KrupaHarry GoodmanVido MussoCootie WilliamsBuster BaileyJohn KirbyBenny CarterJo JonesHymie SchertzerPee Wee RussellBuck ClaytonAl CaseyWalter PageFreddie GreenDanny BarkerBill Coleman (2)Harry CarneyGeorge James (2)Dave BarbourLena HorneLeon "Chu" BerryPrince RobinsonCecil ScottHilton JeffersonFrank NewtonDoc CheathamLawrence LucieEdgar SampsonArtie BernsteinEdmond HallHarold BakerJimmy HamiltonAllan ReussEddie GibbsBenny MortonTab SmithMidge WilliamsJerry BlakeEmmett BerryErnie PowellSidney CatlettJimmy McLinGene SedricJ.C. HeardHarry James (2)Pete PetersonJean EldridgeNan WynnAl HallYank PorterTeddy McRaeJohnny BlowersThelma CarpenterTom MaceLee StanfieldRudy PowellGrachan MoncurTom MaceyChris Griffin (3)Henry "Red" AllenPete Clark (2)John SimmonsBuster HardingIsrael CrosbyFloyd BradyJohn TrueheartGeorge IrishKarl GeorgeEugene FieldsBob LesseyRedd HarperFrances HuntBoots CastleRichard Clarke (5)Archie RosateJake WileyEleanora McKay + +342496The Original Memphis FiveEarly jazz group, formed in 1917 by [a=Phil Napoleon] and [a=Frank Signorelli] after playing in dance bands together at Coney Island in New York. They were one of the most prolific of the early White Jazz bands. Their first record was actually released as an [a=Original Dixieland Jazz Band] record with the blessing of [a=Nick LaRocca]. The Original Dixieland Jazz Band had just broken up after La Rocca’s nervous breakdown in 1922. Frank Signorelli was the only member of the Original Memphis Five who had been in the Original Dixieland Jazz Band. They recorded under a variety of other names including Ladd’s Black Aces, Jazzbo’s Carolina Serenaders, Bailey’s Lucky Seven, The Southland Six and The Cotton Pickers. Red Nichols, Miff Mole, and Tommy and Jimmy Dorsey also played in the band from time to time. None of the band members were from Memphis or even the south. The band was named after W.C. Handy‘s song “Memphis Blues“. +Also performed with [a2481728] as [a4786882].Needs Votehttps://syncopatedtimes.com/original-memphis-five/Memphis FiveOriginal Memhis FiveOriginal Memphis 5Original Memphis FiveThe Memphis FiveLadd's Black AcesLanin's Southern SerenadersNubian FiveThe Southland SixCarolina Cotton Pickers (2)T.N.T. Rhythm BoysThe Savannah SixKentucky Serenaders (3)Hollywood SyncopatorsKentucky FiveConnorized JazzersWhite Bros. OrchestraAlameda Wonder OrchestraBroadway SevenTommy DorseyJimmy DorseyFrank SignorelliMiff MoleJimmy LytellPhil NapoleonJack RothCharles PanelliRay KitchingmanSal Franzella + +342541Emmanuel ChabrierAlexis Emmanuel ChabrierFrench Romantic composer, born January 18, 1841, died September 13, 1894.Needs Votehttps://en.wikipedia.org/wiki/Emmanuel_Chabrierhttps://adp.library.ucsb.edu/names/102522A. E. ChabrierA. Emmanuel ChabrierA.E. ChabrierAexis-Emanuel ChabrierAlexis ChabrierAlexis Em. ChabrierAlexis Emanuel ChabierAlexis Emanuel ChabrierAlexis Emmanuel ChabrierAlexis-Emanuel ChabrierAlexis-Emmanuel ChabrierChabrierChabrier E.Chabrier, E.CharbrierCharrierE. ChabrierE.ChabrierE.シャブリエEm. ChabrierEmanuel ChabrierGhabrierManuel ChabrierManuel CharbrierШабриеЭ. Шабриеעמנואל שברייהシャブリエ + +342543Georges BizetAlexandre-César-Léopold BizetBorn: 1838-10-25 (Paris, France). +Died: 1875-06-03 (Bougival, France). + +Georges Bizet was a French composer of the Romantic era. +He is best known for his opera Carmen.Needs Votehttps://en.wikipedia.org/wiki/Georges_Bizethttps://www.klassika.info/Komponisten/Bizet/index.htmlhttps://www.britannica.com/biography/Georges-Bizethttps://www.treccani.it/enciclopedia/georges-bizet/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102559/Bizet_Georges(I Pescatori Di Perle)A. BizetAlexander Cesar Leopold BizetAlexandra Cesar Leopold BizetAlexandre BizetAlexandre C. L. BizetBIzetBizeBizelBizetBizet Alexandre Cesar LeopoldBizet G.Bizet GeorgesBizet'sBizet, G.Bizet, GeorgeBizet, GeorgesBizzetBizétBizėBızetC.BizetD. BizetG BizetG. BissetG. BizetG. BizotG. ビゼーG.A.C.L BizetG.BizetG.ビゼーG: BizetGeirge BizetGeo. BizetGeorg BizetGeorg PizettGeorge BIzetGeorge BitzetGeorge BizetGeorges Alexandre Cesar Leopold BizetGeorges BizetGeorges S. BizetGeorget BizetGeorgs BizetGiorgio BizetGorges BizetGounodJ. BizetJosef KosmaLouie BellsonM. Georges BizetMo. Georges BizetS. BeaseW.A. MozartZ.BizeĴorĵ BizeŽ. BizeŽ. BizetŽ. BizēŽ. BizėŽ.BizeŽorž BizeŽoržs BizēΖορζ ΜπιζέΜπιζέБизеБизе ЖоржБизэБізеВизеД.БизеДжорж БизеДжорж БизэЖ БизеЖ, БизеЖ. БизеЖ. Бизе-ПЖ. БізеЖ. ВизеЖ.БизеЖорж Бизеז'ורז' ביזהジョルジュビゼージョルジュ・ビゼービゼー比才 + +342667Leonard FeatherLeonard Geoffrey FeatherBritish-born jazz pianist, composer, author, critic and producer. +Born September 13, 1914 in London, England +Died September 22, 1994 in Sherman Oaks, CA., USA. +After studying piano and clarinet at St. Paul’s School and University College, London, he embarked on a career as a jazz performer and songwriter. He moved to New York City in 1939. He compiled "The New Encyclopedia of Jazz" (1960), later volumes on jazz in the 1950s and 1960s; the work eventually become "The Biographical Encyclopedia of Jazz" (1999, with [a334380]), who had assisted on the earlier volumes). Feather was co-editor of "Metronome" magazine, associate editor for "DownBeat" (creating its Blindfold Test feature) and chief jazz critic for the "Los Angeles Times", having settled in the city in 1960, a post he retained until his death. For several decades, Feather was the most widely read writer on jazz. +Married to [a832381] and father of [a41398].Needs Votehttps://www.nytimes.com/1994/09/24/obituaries/leonard-feather-80-composer-and-the-dean-of-jazz-critics.htmlhttp://www.allmusic.com/artist/leonard-feather-mn0000200885/biographyhttps://www.latimes.com/archives/la-xpm-1994-09-23-mn-41941-story.htmlhttps://adp.library.ucsb.edu/names/101859https://www.ijc.uidaho.edu/feather_leonard/bio.htmlhttp://en.wikipedia.org/wiki/Leonard_FeatherB. FeatherC. L. FeatherFearherFeartherFeatherFeather, L.Feather, Leonard G.FeathersJ. FeatherJ. L. FeatherLL FeatherL. FeatherL. FatherL. FeatherL. FeathersL.. FeatherL.FeatherLe FeatherLeo. FeatherLeonardLeonard FeathersLeonard G. FeatherLeonard Geoffrey FeatherLeonard Geofrey FeatherLeonard J. FeatherLeonard Jeffrey FeatherLeonhard FeatherLéonard FatherLéonard FeatherЛ. ФедерФезерレナード・フェザーJelly Roll LipschitzLeroy Williams (15)Snotty McSiegelLouis Armstrong & His Hot SevenLeonard Feather All StarsJoe Marsala & His Delta FourThe Night Blooming JazzmenJack Teagarden BandLeonard Feather's Blue SixLeonard Feather's West Coast StarsLeonard Feather's East Coast StarsJack Teagarden's Dixieland BandLeonard Feather's Esquire All-AmericansTab Smith SeptetteHot Lips Page TrioLeonard Feather's West Coast JazzmenSarah Vaughan And Her OrchestraLeonard Feather's Swinging SwedesLeonard Feather's Hip-TetLeonard Feather And Ye Olde English Swynge BandLeonard Feather Dick Hyman OrchestraThe Leonard Feather Esquire All-StarsRalph Burns And Leonard Feather And Their OrchestraThe Leonard Feather BandLeonard Feather's Encyclopedia Of Jazz All Stars + +342740Nicky ChinnNicholas Barry ChinnBorn May 16, 1945 in London, England. Producer and songwriter. +Co-founder of production company [l277811] & publishing house [l300715]. +Co-director of [l=New Dawn Productions Ltd.] and [l=Chinebridge Ltd.] +Needs Votehttps://books.discogs.com/credit/706656-nicky-chinnhttps://en.wikipedia.org/wiki/Nicky_ChinnC. N. BarryC.N. BarryChinChinnChinn NickyM. ChinM. ChinnM.ChinnN ChinnN. ChinN. ChinnN. ChinneN. ShinneN.B. ChinnN.ChinnNicholas BarryNicholas Barry ChinnNicholas Barry Nicky ChinnNicholas ChinnNichy ChinnNick ChinnNicki ChinnNicky "If That Ain't A Number One I've Never Heard A Hit" ChinnNicky "Nerves" ChinnNicky "Nerves" ChinnNicky ChiloNicky ChinNicky Chinn, Mike ChapmanNicky Chinn/Nicholas BarryNicky HinnNicolas ChinnNike ChinnNiki ChinnNikki ChinnV. ChinnН. ЧиинЧинЧиниChinn And Chapman + +342787Paul CoshBritish hornist, trumpet player and conductorCorrecthttp://paulcosh.com/BBC Symphony OrchestraThe Secret Police + +342795Billy MasseyAmerican jazz singer with Andy Kirk, Blanche Calloway.Needs VoteBill MasseyWilliam MasseyAndy Kirk And His Clouds Of Joy + +342796Chick Webb And His OrchestraAmerican jazz orchestra.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/107101/Chick_Webb_OrchestraC. Webb OrchChick WebbChick Webb & His OrchestraChick Webb & His Orch.Chick Webb & His OrchestraChick Webb & His Savoy OrchestraChick Webb & OrchestraChick Webb And His BandChick Webb And His Big BandChick Webb And His Orc.Chick Webb And His OrchChick Webb And His Orch.Chick Webb And His Savoy Ballroom OrchestraChick Webb And OrchestraChick Webb BandChick Webb Et His OrchestreChick Webb Et Son OrchestreChick Webb Orch.Chick Webb OrchestraChick Webb Und Seinem OrchesterChick Webb Y Su OrquestaChick Webb's BandChick Webb's Orch.Chick Webb's OrchestraChick Webb's Savoy OrchestraChuck Webb & His OrchestraLa Orquesta De Chick WebbOrch. Chick WebbOrchestra Chick WebbThe C. Webb OrchestraThe Chick Webb Orch.The Chick Webb OrchestaThe Chick Webb OrchestraThe Chick Webb-Orch.The Chick Webb-OrchestraWebbОркестр Чика УэббаElla Fitzgerald And Her Famous OrchestraChick Webb's Savoy OrchestraThe Jungle Band (3)Ella FitzgeraldLouis JordanJohn KirbyBenny CarterGarvin BushellChick WebbJimmy HarrisonBobby JohnsonClaude JonesLouis BaconHilton JeffersonEdgar SampsonShelton HemphillBobby StarkSandy WilliamsTaft JordanNat StoryWayman CarverTommy FulfordBeverly PeerDick VanceChauncey HaughtonTeddy McRaeGeorge Matthews (2)Pete Clark (2)Elmer JamesReunald JonesMario BauzáBill BeasonJohn TrueheartElmer WilliamsBill Thomas (3)Fernando ArbelloLouis HuntJoe Steele (2)Del ThomasCharles Linton (2)Don Kirkpatrick (4) + +342798Duke Ellington And His Cotton Club OrchestraCorrectCotton Club OrchestraDuke EllingtonDuke Ellington & Cotton Club OrchestraDuke Ellington & His Cotton Club Orch.Duke Ellington & His Cotton Club OrchestraDuke Ellington & His OrchestraDuke Ellington & The Harlem FootwarmersDuke Ellington And His Cotton Club Orch.Duke Ellington And His Famous Cotton Club OrchestraDuke Ellington And His OrchestraDuke Ellington And The Cotton Club OrchestraDuke Ellington OrchestraDuke Ellington Und Sein Cotton Club OrchesterDuke Ellington Und Sein OrchesterDuke Ellington Y Su OrquestaDuke Ellington Y Su Orquesta Cotton ClubJoe Turner And His Memphis MenOrchestraOrq. Duke Ellington Cotton ClubDuke EllingtonJohnny HodgesCootie WilliamsHarry CarneyWellman BraudJoe NantonSonny GreerFreddy JenkinsFred GuyBarney BigardRudy JacksonArthur Whetsel + +342801Jimmie Lunceford And His Chickasaw SyncopatorsNeeds VoteJimmie LuncefordJimmie Lunceford & His Chickasaw SyncopatorsJimmie Lunceford And His ChickasawJimmie Lunceford And His Chickasaw Sync.Jimmy Lunceford And His Chickasaw SyncopatorsJimmy Lunceford And His Chicksaw SyncopatersJimmie Lunceford And His OrchestraChickasaw SyncopatorsJimmie Lunceford + +342955Buzzy DrootinBenjamin DrootinAmerican jazz drummer, born 22 April 1910 in Kiev, Ukraine, died 21 May 2000. +Brother of [a=Al Drootin].Needs Votehttps://en.wikipedia.org/wiki/Buzzy_Drootinhttps://adp.library.ucsb.edu/names/312910"Buzzy" DrootinB. DrootinB.DrootinBen DrootinBenjamin "Buzzy" DrootinBenjamin "Dizzy" DrootinBenjamin 'Buzzy' DrootinBuzzie DrootinBuzzy DrootenBuzzy DrottinBuzzy DroutenEddie Condon And His OrchestraEddie Condon And His All-StarsThe Bobby Hackett QuartetThe Ralph Sutton QuartetJoe Venuti QuartetRuby Braff OctetThe Bourbon Street ParadersHerb Hall QuartetThe Bobby Hackett SextetRuby Braff's All-StarsThe Ruby Braff-Marshall Brown SextetRuby Braff QuartetThe Ruby Braff QuintetBen Homer & His OrchestraThe Peewee Russell Sextets + +342958Don EwellDonald Tyson EwellAmerican jazz pianist and songwriter. +Played with: Sidney Bechet, Kid Ory, George Lewis, George Brunies, Muggsy Spanier, Bunk Johnson, Jack Teagarden and others. + +Born: November 14, 1916 in Baltimore, Maryland. +Died: August 09, 1983 in Pompano Beach, Florida. +Needs Votehttps://en.wikipedia.org/wiki/Don_EwellD. EwellDon EvellDonald EwellDonald Tyson "Don" EwellEwellKid Ory And His Creole Jazz BandSidney Bechet's Jazz Ltd. OrchestraEddie Condon And His All-StarsThe Newport All StarsBaby Dodds TrioJack Teagarden SextetHerb Hall QuartetDixieland At Jazz Ltd.Bunk's 3-Piece BandDon Ewell QuartetSlow Drag's Bunch + +342960Bob McCrackenRobert Edward McCracken.American jazz clarinetist and saxophonist. +Born : November 23, 1904 in Dallas, Texas - died : July 04, 1972 in Los Angeles, California. +He played with : Louis Armstrong, Bobby Hackett, Kid Ory, Lee Collins, Charlie Parker, Jelly Roll Morton, Henry "Red" Allen and others.Correcthttps://adp.library.ucsb.edu/names/330606Bob Mc CrackenRobert E Mc CrackenRobert McCrackenLouis Armstrong And His All-StarsKid Ory And His Creole Jazz Band + +342962Freddie MooreAmerican jazz drummer and singer, born August 20, 1900, in Washington, North Carolina, died in 1992. +During his career spanning seven decades, he played with such jazz men as Sidney Bechet, King Oliver, Art Hodes, Eubie Blake, Bob Wilber, Charlie Creath, Wilbur Sweatman, John Kirby, Conrad Janis, Mezz Mezzrow, Sammy Price, Tony Parenti and Roy Eldridge. He also led a trio including Pete Brown and Don Frye1933-1937. During the 1980s and 1990s, he played with various bands in the New York area, often doubling on washboard.Needs VoteF. MooreFred MooreFred MoreFreddie MoreFreddy MooreMooreSidney Bechet And His Blue Note Jazz MenWilbur De Paris And His OrchestraKing Oliver & His OrchestraArt Hodes TrioArt Hodes' Back Room BoysSam Price And His Texas BlusiciansArt Hodes' Hot FiveEmmett Berry And His OrchestraWilbur De Paris And His Rampart Street RamblersConrad Janis And His Tailgate Jazz Band + +342970Ed GarlandEdward Bertram Garland.American jazz bassist. +Played with : "Imperial Orchestra", Freddie Keppard, King Oliver, Kid Ory, Bunk Johnson, Baby Dodds, Earl Hines, Barney Bigard and many others. +Nickname : "Montudie". + +Born : January 09, 1885 in New Orleans, Louisiana. +Died : January 22, 1980 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/317105E. GarlandEd "Montudie" GarlandEd CarlandEd. GarlandEdw. GarlandEdward "Montudi" GarlandEdward GarlandGarlandTaken In And Done ForKid Ory And His Creole Jazz BandZutty Singleton's Creole BandOry's Sunshine OrchestraSpike's Seven Pods Of Pepper OrchestraThe Legends Of Jazz + +342972Joe DarensbourgJoseph Wilmer DarensbourgAmerican jazz clarinetist and soprano saxophonist (born July 9, 1906 in Baton Rouge, Louisiana – died May 24, 1985 in Van Nuys, California, USA). + +Darensbourg studied clarinet under [a=Alphonse Picou] and played with local New Orleans groups early on. After traveling with a medicine show and a circus band, he settled first in Los Angeles, then worked on cruise liners and clubs while based in Seattle. From 1961 to 1964, he performed with [a=Louis Armstrong And His All-Stars], with whom he also toured overseas. + +Darensbourg played primarily in the New Orleans style.Needs Votehttps://en.wikipedia.org/wiki/Joe_Darensbourghttps://www.findagrave.com/memorial/93292409/joseph-darensbourghttps://adp.library.ucsb.edu/names/310914DarensbourgDarensburgDarrensbourgJ. DarensbourgJ. DarrensbergJoeJoe "Leadfoot" DarensbourgJoe DarenbourgJoe DarenburgJoe DarensbourghJoe DarensburgJoe Darnes BourgJoseph "Joe" DarensbourgJoseph DarensbourgДжо ДаренсбургLouis Armstrong And His All-StarsTeddy Buckner And His OrchestraKid Ory And His Creole Jazz BandJohn Fahey & His OrchestraJoe Liggins & His HoneydrippersJoe Darensbourg And His Dixie FlyersTeddy Buckner And His Dixieland BandThe Legends Of JazzJoe Darensbourg And His "Flat Out" FiveJohnny Wittwer TrioThe Gin Bottle 4 + +342992Geoffry WhartonAmerican violinist and composer, born in Michigan, USA. He is a Concertmaster of the Cologne Philharmonic Orchestra (Gürzenichorchester der Stadt Köln) and teaches at the Musikhochschule in Essen, Germany.Correcthttp://www.whartons.de/gswcv/gw%20vln%20cv.htmG.WhartonGeoffrey WhartonJ. WhartonEnsemble ModernKeith Tippett's Ark + +343022Spike HeatleyBrian John HeatleyEnglish jazz bassist, born 17 February 1933 in London, died 10 November 2021 (aged 88) in Brittany. +Father of drummer [a=Danny Heatley]Needs Votehttps://web.archive.org/web/20081120191714/http://www.spikeheatley.com/https://myspace.com/spikeheatleyhttps://en.wikipedia.org/wiki/Spike_Heatleyhttps://www.imdb.com/name/nm6805514/HeatleyS. HeatleySpikeSpike (I Prefer Jazz) HeatleySpike HealeySpike HeartleySpike HeatlySpike HentleyMagna CartaCCSThe Bill Le Sage / Ronnie Ross QuartetBen Webster QuartetThe John Dankworth OrchestraBlues IncorporatedHarold McNair QuartetFrog (6)The Tony Coe QuintetThe Be-Bop Preservation SocietyDirections In Jazz UnitDaylight (13)The Dill Jones QuintetThe EmCee FivePlay Away + +343223Rainer GäblerGerman saxophonist, clarinetist and flutist, born 18 July 1937 in Plauen, Germany.Needs Vote"Mäcki" GäblerGäblerR. GablerRainer "Macky" GäblerReinhard GäblerKlaus Lenz Modern Soul Big BandKlaus Lenz Big BandRundfunk-Sinfonieorchester BerlinJazz-Collegium BerlinBarbara Kellerbauer & GruppeMacky Gäbler QuartettSOK (3)BigBand Deutsche Oper BerlinEnsemble Rainer Gäbler + +343297Herbie LovelleHerbert LovelleAmerican jazz and session drummer (born June 1, 1924 in Brooklyn, New York - died April 8, 2009 in New York City, New York). He is the nephew of [a312933]. +Needs Votehttp://en.wikipedia.org/wiki/Herbie_Lovellehttps://adp.library.ucsb.edu/names/328272H. LavalleH. LovelleHerb LaVelleHerb LaveileHerb LavellHerb LavelleHerb LovellHerb LovelleHerb. LovelleHerbert E. LovelleHerbert LavelleHerbert LovellHerbert LovelleHerbie LaveileHerbie LovellHerbie LowelleHerby LovelleHervie LovelleLovellLovelleХерби ЛовеллHot Lips Page And His OrchestraBuck Clayton With His All-StarsThe Phoenix AuthorityThe Devil's AnvilArt Farmer QuartetBuddy Tate QuartetGenuine JohnBobby Smith And OrchestraSnooky Young SeptetThe Stan Free FiveThe MICHAEL COLDIN SEPTET + +343573Robbie Muir (2)Robbie MuirNeeds Votehttps://soundcloud.com/robbie-muir + +343577Alan BrindAlan BrindBritish classical violinist, and Professor of Violin. Born 8 April 1969 in Hethersett, Norfolk, England, UK. +He studied at the [l527847]. He was concertmaster of the [a=European Union Youth Orchestra] for two years. Founder member of the [a=European Soloists Ensemble]. He was also in the 1st violin section of the [a=Philharmonia Orchestra] and a member of [a=The Mullova Ensemble]. Professor of Violin at the [l957772].Needs Votehttps://www.facebook.com/alan.brind.7https://www.linkedin.com/in/alan-brind-10795682/?originalSubdomain=ukhttps://open.spotify.com/artist/4qzA03UQXwD1GX5Hm9iwWRhttps://music.apple.com/au/artist/alan-brind/83739952https://en.wikipedia.org/wiki/Alan_Brindhttps://hethersettherald.weebly.com/brind.htmlPhilharmonia OrchestraEuropean Union Youth OrchestraThe Peace Together Chamber OrchestraThe Mullova EnsembleEuropean Soloists EnsembleThe John Wilson OrchestraEuropean Camerata + +343823Hans KochBorn in 1948 in Biel, Switzerland and plays bass clarinet, contrabass clarinet, soprano saxophone, tenor saxophone and electronics. + +For the classical double bassist, please use [a=Hans Koch (2)].Needs Votehttps://www.hansko.ch/https://hanskoch.bandcamp.com/https://soundcloud.com/hans_kochDr. Hans KochH. KochHans "Hausi" KochKochCecil Taylor European OrchestraHolz Für EuropaKoch-Schütz-StuderBarry Guy New OrchestraTsukiX-CommunicationSchweizer Holz TrioTommy Meier Root DownThau (2)Hans Koch / Martin Schütz / Marco KäppeliUrs Blöchlinger TettetPeter Schaerli QuintettMarco Käppeli ConnectionDonat Fisch QuartettMoodswing 3Porta ChiusaInsub Meta OrchestraRat KillerDeer (6)Der Grosse BärBlast6tetLe Quintette PopolienSocial InsectsReto Weber TrioS4 (3)Elgar Trio + +343871Leningrad Philharmonic OrchestraСимфонический оркестр Ленинградской государственной филармонии[u]Full real name of the orchestra in English[/u]: Leningrad State Philharmonic Symphony Orchestra. +Leningrad (St. Petersburg) philharmonic orchestra was founded in 1882. It is the oldest and best known symphonic orchestra from Saint-Petersburg. +[b]Not to be confused[/b] with [a=Leningrad Academic Philharmonic Symphony Orchestra] and other Leningrad / St. Petersburg orchestras. +[b]Since 1993[/b], the orchestra has been called [b][a1065788][/b] = Заслуженный коллектив России Академический симфонический оркестр Санкт-Петербургской филармонии (abbreviated — ЗКР АСО) +------------------------------------------------------- +[b]Chief conductors:[/b] +[a=Nikolai Alexeyev] = Николай Алексеев (since 2022) +[a=Yuri Temirkanov] = Юрий Темирканов (1988–2022) +[a=Evgeny Mravinsky] = Евгений Мравинский (1938–1988) +[a=Fritz Stiedry] = Фриц Штидри (1934–37) +[a=Alexander Gauk] = Александр Гаук (1930–34) +[a=Nicolai Malko] = Николай Малько (1926–1930) +Valery Berdyaev = Валериан Бердяев (1924–26) +[a=Emil Cooper] = Эмиль Купер (1920–23) +[a=Serge Koussevitzky] = Сергей Кусевицкий (1917–20) +[a=Hugo Wahrlich] = Гуго Варлих (1907–1917) +[a=Hermann Fliege] = Герман Флиге (1882–1907) +------------------------------------------------------- +For the wind & percussion ensemble, please use: +[b][a11959400][/b] +For the wind quintet, please use: +[b][a3035057][/b] +For the Chamber orchestra, please use: +[b][a1437651][/b] +For String Group Of The Leningrad Philharmonic Symphony Orchestra, please use: +[b][a6126815][/b] +For Soloists Ensemble, please use: +[b][a13535923][/b]Needs Votehttps://ru.wikipedia.org/wiki/%D0%A1%D0%B8%D0%BC%D1%84%D0%BE%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B9_%D0%BE%D1%80%D0%BA%D0%B5%D1%81%D1%82%D1%80_%D0%A1%D0%B0%D0%BD%D0%BA%D1%82-%D0%9F%D0%B5%D1%82%D0%B5%D1%80%D0%B1%D1%83%D1%80%D0%B3%D1%81%D0%BA%D0%BE%D0%B9_%D1%84%D0%B8%D0%BB%D0%B0%D1%80%D0%BC%D0%BE%D0%BD%D0%B8%D0%B8https://www.philharmonia.spb.ru/en/about/orchestra/zkrasof/about/https://en.wikipedia.org/wiki/Saint_Petersburg_Philharmonic_Orchestrahttp://www.bach-cantatas.com/Bio/SPPO.htmhttps://www.britannica.com/topic/Saint-Petersburg-Philharmonic-OrchestraAkademisches Sinfonieorchester der Leningrader Staatlichen PhilharmonieAkademisches Sinfonieorechester Der Leningrader Staatlichen PhilharmonieAслуженный симфонический оркестр Ленингрской филармонииBrass Octet Of The Leningrad State PhilharmonicChamber Ensemble Of Leningrad Philharmonic SoloistsChamber Orchestra Of St Petersburg, PhilharmoniaCимфонический Оркестр Ленинградской Государственной ФилармонииCимфонический Оркестр Ленингрской ФилармонииCимфонический оркестр Ленингрской государствеииой ФилармонииD. Shostakovich Leningrad Philharmonic Symphony OrchestraDas Akademische Sinfonieorchester Der Staatlichen Leningrader PhilharmonieDas Philharmonische Orchester, LeningradDas Sinfonieorchester Der Leningrader Staatlichen PhilharmonieDas Sinfonieorchester Der Staatlichen Leningrader PhilharmonieDas Sinfonieorechester Del Leningrader Staatlichen PhilharmonieDie Leningrader PhilharmonieFiati E Percussione Della Filarmonica Di LeningradoFilarmonica Di LeningradoFilarmonica de LeningradoFilarmónica De LeningradoFilharmonica Di LeningradoFilharmonijski Hor I Sankpeterburški Simfonijski OrkestarFilharmonisch Orkest van LeningradFilármonica De LeningradoGrand Orchestre Philharmonique De LéningradGrand Orchestre Symphonique de LéningradGrand Symphony OrchestraHonoured Ensemble Of The Republic, Leningrad State Philharmonic Symphony OrchestraHonoured Ensemble Of The Russian Republic Leningrad Philharmonic Symphony OrchestraL'Orchestra Filarmonica Di LeningradoLeningradLeningrad Academic Philharmonic Symphony OrchestraLeningrad Chamber OrchestraLeningrad FilharmoniLeningrad Harmonic Symphony OrchestraLeningrad OrchestraLeningrad Phil.Sym. Orch.Leningrad PhilharmoniaLeningrad PhilharmonicLeningrad Philharmonic Academic Symphony OrchestraLeningrad Philharmonic Academic Symphony Orchestra, Honoured Ensamble Of The Russian RepublicLeningrad Philharmonic Academic Symphony Orchestra, Honoured Ensemble Of The Russian RepublicLeningrad Philharmonic Chamber OrchestraLeningrad Philharmonic Orch.Leningrad Philharmonic Orchestra (Saint Petersburg Philharmonic Orchestra)Leningrad Philharmonic SocietyLeningrad Philharmonic Society Symphony OrchestraLeningrad Philharmonic Symphony Orch.Leningrad Philharmonic Symphony OrchestraLeningrad Philharmonic Sypmhony OrchestraLeningrad PhilharmonieLeningrad Philharmonisch OrkestLeningrad Philharmony Orch.Leningrad Philharmony Symphony OrchestraLeningrad State PhilharmonicLeningrad State Philharmonic Academy Symphony OrchestraLeningrad State Philharmonic Chamber OrchestraLeningrad State Philharmonic OrchestraLeningrad State Philharmonic SocietyLeningrad State Philharmonic Society OrchestraLeningrad State Philharmonic Society Symphony OrchestraLeningrad State Philharmonic Symphony OrchestraLeningrad State Philharmonic Symphony Orchestra /Honoured Ensemble Of The RSFSRLeningrad State Philharmony OrchestraLeningrad State Philharmony Symphony OrchestraLeningrad State Symphony OrchestraLeningrad Symfonie OrkestLeningrad Symphonic OrchestraLeningrad SymphonyLeningrad Symphony OrchestraLeningrader PhilharmonicLeningrader PhilharmonieLeningrader PhilharmonikerLeningrader Sinfonie-OrchesterLeningrader State Philharmonie Society Symphony OrchestraLeningrader Symphonic OrchestraLeningrader SymphonikerLeningradeska FilharmonijaLeningradi Filharmoonia SümfooniaorkesterLeningradin Filharmoninen SinfoniaorkesteriLeningrado Filharmonijos Simfoninis OrkestrasLeningrado Valst. Filharmonijos Simfoninis OrkestrasLeningrads SymfoniorkesterLeningradská FilharmonieLeningradská FilharmóniaLeningradská Státní FilharmonieLeningrádi FilharmonikusokLeningrádi Állami Filharmónia Szimfónikus ZenekaraLeningrádi Állami Szimfonikus ZenekaraMerited Ensemble Of The Urss Leningrad State Philharmonic Symphony OrchestraNational Philharmonic OrchestraNational Philharmonisches OrchesterNational Philharmonisches Orchester (Leningrad)National Philharmonisches Orchester LeningradOrchestr Leningradské Státní FilharmonieOrchestra Filarmonica Di LeningradoOrchestra Accademica Sinfonica di LeningradoOrchestra Filarmonica Di LeningradoOrchestra Filarmonica Sinfonica di LeningradoOrchestra Filarmonica di LeningradoOrchestra Of The Leningrad State PhilharmonicOrchestra Sinfonica Della Società Filarmonica di Stato di LeningradoOrchestra Sinfonica Filarmonica di LeningradoOrchestra Sinfonica della Filarmonica di LeningradoOrchestra Sinfonica di LeningradoOrchestra della Società Filarmonica di Stato di LeningradoOrchestre National Philharmonique De LeningradOrchestre Philarmonique De LeningradOrchestre Philarmonique de LeningradOrchestre Philharmonic De LeningradOrchestre Philharmonique De LeningradOrchestre Philharmonique De LéningradOrchestre Philharmonique NationalOrchestre Philharmonique de LeningradOrchestre Philharmonique de LèningradOrchestre Philharmonique de LéningradOrchestre Symhpnieque De La Philharmonie De LéningradOrchestre Symphonique De La Philarmonie De LeningradOrchestre Symphonique De La Philharmonie Nationale De LéningradOrchestre Symphonique De La Philharmonique De LéningradOrchestre Symphonique De La Radio-Télévision De Saint PétersbourgOrchestre Symphonique De LeningradOrchestre Symphonique De LéningradOrchestre Symphonique de LeningradOrq. Filarmonica De LeningradoOrq. Sinf. LenningradoOrquesta Filarmonica De LeningradoOrquesta Filarmónica De LeningradoOrquesta Filarmónica de LeningradoOrquesta Filarmónico-Sinfónica De LeningradoOrquesta Sinfónica De La Filarmónica De LeningradoOrquesta Sinfónica De LeningradoOrquesta Sinfónica de LeningradoOrquestra Filarmonica De LeningradoOrquestra Filarmónica De LeningradoOrquestra Filarmónica de LeningradoOrquestra Filarmónica de São PetersburgoOrquestra Filarmônica De LeningradoOrquestra Filarmônica de LeningradOrquestra Filarmônica de LeningradoOrquestra Sinfônica De LeningradoOrquestra Sinfônica de LeningradoPhilarmonisches Orchester LeningradPhilharmonic Orchestra Of Sankt PetersburgPhilharmonisches National-OrchesterPhilrarmonisches Orchester LeningradSaint-Petersburg Philharmonic OrchestraSankt Petersburg Philharmonic OrchestraSimfonijski Orkestar Lenjingradske Državne FilharmonijeSinfonie Orchester Der Leningrader Staatl. PhilharmonieSinfonie Orchester der Leningrader Staatl. PhilharmonieSinfonie-Orchester Der Leningrader Staatlichen PhilharmonieSinfonieorchester Der Leningrader PhilharmonieSinfonieorchester Der Leningrader Staatl. PhilharmonieSinfonieorchester Der Leningrader Staatlichen PhilarmonieSinfonieorchester Der Leningrader Staatlichen PhilharmonieSinfonieorchester Der Staatlichen Leningrader PhilharmonieSinfonieorchester der Leningrader Staatlichen PhilharmonieSinfonieorchester der Leningrader staatlichen PhilharmonieSt Petersburg Philharmonia OrchestraSt Petersburg Philharmonic OrchestraSt Petersburg Philharmonic Orchestra (Leningrad)St-Petersburg (Leningrad) Philharmonic OrchestraSt. Petersburg OrchestraSt. Petersburg PhilharmonicSt. Petersburg Philharmonic OrchestraSt. Petersburg Philharmonic Orchestra & ChorusesSt. Petersburg Philharmonic Orchestra And ChorusSt. Petersburg Symphonic OrchestraState Leningrad Philharmonic Symphony OrchestraStrings of the Leningrad Philharmonic OrchestraSymfonický Orchestr Leningradské Státní FilharmonieSymphonieorchester Der Leningrader Staatlichen FilharmonieSymphony OrchestraSymphony Orchestra Of Leningrad PhilharmonicSymphony Orchestra Of Leningrad State PhilharmonicSymphony Orchestra Of The Leningrad Philharmonic SocietySymphony Orchestra Of The Leningrad PhilharmonySymphony Orchestra Of The Leningrad State PhilharmonicSymphony Orchestra Of The State Philharmonic, LeningradThe Academic Symphony Orchestra Of The Leningrad State Philharmonic SocietyThe Leningrad Philharmonia OrchestraThe Leningrad PhilharmonicThe Leningrad Philharmonic OrchestraThe Leningrad Philharmonic Society Symphony OrchestraThe Leningrad Philharmonic Symphony OrchestraThe Leningrad Symphony OrchestraThe Shostakovich Philharmonic Symphony Orchestra Of LeningradThe St Petersburg Philarmonic OrchestraThe St. Petersburg Chamber PhilharmonicThe State Symphony Orchestra Of LeningradThe Symphony Orchestra Of The Leningrad Shostakovich Philharmonic SocietyTschaikowsky Symphonic Orchestra St. PetersburgValsts Ļeņingradas Filharmonijas Simfoniskais OrķestrisWinds Of The Leningrad State PhilharmonicĻeningradas Valsts Filharmonijas Simfoniskais OrķestrisĻeņingradas Filharmonijas Simfoniskais OrķestrisĻeņingradas Valsts Filharmonijas Simf. OrķestrisĻeņingradas Valsts Filharmonijas Simfoniskais OrķestrisΦιλαρμονική Ορχήστρα Του ΛένινγκραντАкадем. Симфонический Оркестр ЛГФАкадем. симф. оркестр Лен. гос. филармонииАкадемический Симфонический Оркестр Ленинградской Государственной ФилармонииАкадемический Симфонический Оркестр Ленинградской Государственной Филармонии Имени Д. Д. ШостаковичаАкадемический Симфонический Оркестр Ленинградской Государственной Филармонии,Академический Симфонический Оркестр Ленинградской ФилармонииАкадемический Симфонический Оркестр Ленинградской филармонииАкадемический Симфоничский Оркестр Ленинградской Государственной ФилармонииАкадемический симфонический оркестр Ленинградской государственной филармонииГосударственный Cимфонический Оркестр Ленинградской ФилармонииЗаслуженный Коллектив РСФСР Симфонический Оркестр Ленинградской Государственной ФилармонииЗаслуженный Коллектив РСФСР Симф. Орк. Ленинградской Гос. ФилармонииЗаслуженный Коллектив РСФСР Симф. Оркестр Ленинградской Гос. ФилармонииЗаслуженный Коллектив РСФСР Симфонический Оркестр Ленинградск. Гос. Филарм.Заслуженный Коллектив РСФСР Симфонический Оркестр Ленинградской Государственной ФилармонииЗаслуженный Коллектив Республики Академический Симфонический Оркестр Ленинградской Государственной ФилармонииЗаслуженный Коллектив Республики Симфонический Оркестр Ленинградской Гос. ФилармонииЗаслуженный Коллектив Республики Симфонический Оркестр Ленинградской Гос.ФилармонииЗаслуженный Коллектив Республики Симфонический Оркестр Ленинградской Государственной ФилармонииЗаслуженный Коллектив Республики Симфонический Оркестр Ленинградской Государственной ФилхармонииЗаслуженный коллектив России Академический симфонический оркестр Ленинградской филармонииКамерный Ансамбль Солистов Ленинградской Государственной ФилармонииКамерный Оркестр Ленинградской ФилармонииЛенинградск. Гос. ФилармонииЛенинградской Гос. ФилармонииЛенинградской Гос. ФилхармонииЛенинградской Государственной ФилармонииЛенинградской Государственной филармонииОрк. Лен. Гос. Филарм.Орк. Лен. Госфиларм.Орк. Лен. Госфиларм. под упр. К. И . ЭлиасбергаОрк. Лен. ГосфилармонииОрк. Лен. Госфилармонии п. у. Засл. Арт. РСФСР А. В. ГаукаОрк. Ленинградск. Гос. Филарм.Орк. Ленинградск. Гос. ФилармонииОрк. Ленинградской Гос. Филарм.Орк. Ленинградской Гос. ФилармонииОркестр Лен. Гос. Филарм.Оркестр Лен. Гос. Филармон.Оркестр Лен. Гос. ФилармонииОркестр Ленингр. Гос. Филарм.Оркестр Ленинградской Гос. ФилармонииОркестр Ленинградской Государственной ФилармонииОркестр Ленинградской Государственной Филармонии п/у Николая РабиновичаОркестр Ленинградской Государственной ФилхармонииОркестр Ленинградской гос. филармонииОркестр Ленинградской государственной ФилармонииОркестр Ленинградской государственной филармонииОркестр Санкт-Петербургской филармонииСимф. Орк. Лен. Гос. Филарм.Симф. Орк. Лен. Гос. ФилармонииСимф. Орк. Ленгосфиларм.Симф. Орк. Ленингр. Гос. Филарм.Симф. Орк. Ленингр. гос. ФилармонииСимф. Орк. Ленинградск. Гос. Филарм.Симф. Орк. Ленинградск. Гос. ФилармонииСимф. Орк. Ленинградской Гос. ФилармонииСимф. Орк. Ленинградсой Гос. ФилармонииСимф. Оркестр Лен. Гос. ФилармонииСимф. Оркестр Лениинградской Гос. ФилармонииСимф. Оркестр Ленинградск. Гос. ФилармонииСимф. Оркестр Ленинградской Гос. ФилармонииСимф. Оркестр Ленинградской ГосфилармонииСимф. орк. Лен. гос. филарм.Симф. орк. Лен. гос. филармонииСимф. орк. Ленингр. гос. филармонииСимф. орк. Ленинградск. Гос. филарм.Симф. орк. Ленинградской Гос. филармонииСимф. орк. Ленинградской гос. филармонииСимф. оркестр Лен. гос. филармонииСимф. оркестр Ленинградск. Гос. филармонииСимф. оркестр Ленинградской Гос. филармонииСимфонический oркестр Ленинградской государствеииой ФилармонииСимфонический ОркестрСимфонический Оркестр ЛГФСимфонический Оркестр Лен. Гос. Филарм.Симфонический Оркестр Лен. Гос. ФилармонииСимфонический Оркестр Лениградской Гос. ФилармонииСимфонический Оркестр Лениинградской Гос. ФилармонииСимфонический Оркестр Ленинградск. Гос. Филарм.Симфонический Оркестр Ленинградск. Гос. ФилармонииСимфонический Оркестр Ленинградской Гос. Филарм.Симфонический Оркестр Ленинградской Гос. ФилармонииСимфонический Оркестр Ленинградской Гос. ФилармониноиСимфонический Оркестр Ленинградской Гос. ФилхармонииСимфонический Оркестр Ленинградской Государстбенной ФилармонииСимфонический Оркестр Ленинградской Государстбенной Филармонии (Заслуженний Коллектив Республики)Симфонический Оркестр Ленинградской Государственной ФилармонииСимфонический Оркестр Ленинградской Государственной Филармонии (Заслуженный Коллектив Республики)Симфонический Оркестр Ленинградской Государственной филармонииСимфонический Оркестр Ленинградской ФилармонииСимфонический оркестер Ленинградской государственной ФилармонийСимфонический оркестр Ленинградской Гос. ФилармонииСимфонический оркестр Ленинградской гос. филармонииСимфонический оркестр Ленинградской государственной филармонииСимфонический оркестр Ленинградской филармонииСимфонтческий Оркестр Ленинградской Гос. ФилармонииХор И Орк. Лен. Госфиларм. п/к Н. С. Рабиновичаサンクトペテルブルクフィルハーモニー管弦楽団レニングラード・オーケストラSt. Petersburg Philharmonic OrchestraYuri TemirkanovEvgeny MravinskyLeonid GesinWladislaw WarenbergAlexander GaukВиталий БуяновскийEugene LevinsonMichail GantvargВиктор ВенгловскийVladimir FedotovВениамин МарголинЛенинградский Квинтет Духовых ИнструментовВалентин ЛукинНиколай ТкаченкоОльга РыбальченкоVladimir OvcharekValentin KoshinAlbert IgolnikovСемен МеерсонИсаак ГеллерКонстантин СимеоновПётр ТосенкоYakov MilkisВалентин МалковSergei AkopovМирра ФурерRoma VayspapirАнсамбль Солистов Академического Симфонического Оркестра Ленинградской Государственной ФилармонииКонстантин ВаренбергГригорий Немеренецкий + +343905Simon StandageSimon Andrew Thomas StandageEnglish violinist, conductor, and Professor of Baroque Violin. Born 8th November 1941 in High Wycombe, Buckinghamshire, England, UK. +Known for playing and conducting baroque and classical music on original instruments. +He studied at [l1517371]. Former member of [a=The London Symphony Orchestra] (1969-1972). Founder member and first violinist of [a=The English Concert] from 1972 to 1991, sub-leader of the [a=English Chamber Orchestra] from 1974 to 1978, leader of the [a=City Of London Sinfonia] from 1980 to 1989, and co-founder of [a=The Salomon Quartet] in 1981. He played regularly with [a=The Academy Of Ancient Music] (of which he was Associate Director from 1991 to 1995) throughout the 1980s. In 1990, he founded the group [a=Collegium Musicum 90] with [a=Richard Hickox]. +He has also made regular collaboration with Collegium Musicum Telemann in Osaka and [a=Haydn Sinfonietta Wien]. He plays in period-instrument chamber group [a=The Music Collection] with Susan Alexander-Max (fortepiano) and [a=Jennifer Ward Clarke] (cello). +Professor of Baroque Violin at the [l527847] since 1983. +Husband of [a=Jennifer Standage].Needs Votehttps://www.linkedin.com/in/simon-standage-7ab6801b/?originalSubdomain=ukhttps://music.youtube.com/channel/UCXviVD7G1exDn2nC3iX5Tgwhttps://open.spotify.com/artist/2jIBkRzVUboTbp05rJnKeThttps://music.apple.com/us/artist/simon-standage/4310956http://en.wikipedia.org/wiki/Simon_Standagehttps://www.feenotes.com/database/artists/standage-simon-8th-november-1941-present/https://www.bach-cantatas.com/Bio/Standage-Simon.htmhttp://www.haydn.or.at/en/portrait/simon_standagehttp://www.wienroth.net/english/Simon_Standage/simon_standage.htmlhttps://www.ram.ac.uk/people/simon-standagehttps://www.chandos.net/artists/Simon_Standage/1158https://www.imdb.com/name/nm1306660/https://www2.bfi.org.uk/films-tv-people/4ce2bad2119faS. StandageStandageСаймон СтэндейджLondon Symphony OrchestraCity Of London SinfoniaEnglish Chamber OrchestraNew London ConsortThe Early Music Consort Of LondonThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90The King's ConsortThe Salomon QuartetThe Academy Of Ancient Music Chamber EnsembleThe Richard Hickox OrchestraRasoumovsky QuartetThe English ConcertCollegium SagittariiOrfeo Orchestra BudapestRoyal Academy of Music Baroque OrchestraThe Music Collection + +344325J.C. Heard And His OrchestraCorrectJ. C. Heard And His Cafe Society OrchestraJ. C. Heard OrchestraJ.C. Heard & His Cafe Society OrchestraJ.C. Heard & His Orch.J.C. Heard And His BandJ.C. Heard Et Son OrchestreJ.C. Heard OrchestraJ.C. Heard SextetJC Heard & His OrchestraAl HaigBennie GreenWardell GrayAl McKibbonJoe NewmanJ.C. HeardTate Houston + +344328Lucky Millinder And His OrchestraCorrectCongregationEnsembleLeroy 'Lucky' MillinderLucky MillinderLucky Millinder & His Orch.Lucky Millinder & His OrchestraLucky Millinder & OrchestraLucky Millinder And EnsembleLucky Millinder And His Blue Rhythm BandLucky Millinder And His OrchLucky Millinder And His Orch.Lucky Millinder And OrchestraLucky Millinder Et Son OrchestreLucky Millinder OrchLucky Millinder Orch,Lucky Millinder Orch.Lucky Millinder OrchestraLucky Millinder's BandLucky Millinder's Orch.Lucky Millinder's OrchestraLucky Millinders OrchestraOrchestra, TheThe Lucky Millinder OrchestraThe Millinder OrchestraThe OrchestraFrank WessDizzy GillespieBill DoggettClyde HartBuster BaileyGeorge DuvivierSeldon PowellEddie "Lockjaw" DavisGeorge James (2)Lammar WrightSandy WilliamsHenry GloverSir Charles ThompsonLucky MillinderWynonie HarrisTab SmithAbe BolarJoe GuyNick FentonSam Taylor (2)Gene SimonEli RobinsonRudy PowellEd ShaughnessyGeorge Matthews (2)Al CobbsBernie PeacockGeorge StevensonBull Moose JacksonHenderson ChambersHarold MinerveBill SwindellRaymond TuniaFloyd BradyJohn BelloTed BarnettElmer WilliamsFreddie WebsterHarold Johnson (2)Freddy ZitoStafford SimonPanama FrancisNelson BryantSterling MarloweArchie JohnsonEdward MorantErnest PurceLeon SpannDanny SmallJames CannadyAndrew Ford (3)Annisteen AllenFrank GalbraithMilton Fletcher (2)Joe BrittonTrevor BaconBilly BowenMike HedleyDonald ColeWilliam Scott (3)Frank HumphriesThomas GriderBig John GreerSid BrownLeon MerianBernie MackeyLudwig JordanDave Young (10)Sterling MarlowHarold Clark (3)George Nicholas (3)Frank MazzoliSam HopkinsCurtis MurphyErnest LeavyLeon KetchumJerry Cox (4)Robert Johnson (56) + +344334Helen Humes And Her All-StarsCorrectHelen Humes & All-StarsHelen Humes & Her All StarsHelen Humes & Her All-StarsHelen Humes (And All Stars)Helen Humes And All StarsHelen Humes And Her All StarsArnold RossLester YoungRed CallenderJimmy BunnSnooky YoungDave BarbourHelen HumesAllan ReussWillie Smith (2)Corky CorcoranMaxwell DavisHenry Tucker GreenJimmy RuddBrother WoodmanTom Archia + +344335Tadd Dameron And His OrchestraAmerican jazz orchestraNeeds VoteOrchestraOrchestra Under Dir. Of Tadd DameronTadd Dameron & His OrchestraTadd Dameron OrchestraTadd Dameron and his OrchestraTadd Dameron's OrchestraTed Dameron And His OrchestraThe Tadd Dameron Orch.The Tadd Dameron OrchestraMiles DavisBlue MitchellJerome RichardsonSahib ShihabRon CarterDexter GordonJerry DodgionKenny ClarkeJohnny GriffinJ.J. JohnsonTadd DameronBill EvansJimmy Cleveland"Philly" Joe JonesCurly RussellClifford BrownGeorge DuvivierAllen EagerKai WindingJulius WatkinsBritt WoodmanLeo WrightFats NavarroRae PearlKay PentonTate HoustonJohn Collins (2)Cecil PayneCarlos VidalRudy WilliamsTed SturgisBenjamin LundyDiego IborraVidal Bolado + +344508Maciej RakowskiPolish violinist and professor, born in 1951. +After moving to the UK in 1976, he was a founder member of the [b]Spohr Quartet[/b]. Professor of Violin at the [l290263].Needs Votehttps://open.spotify.com/artist/3xhfvDZytWiUX0YaKiRjcxhttps://www.rcm.ac.uk/strings/professors/details/?id=01884https://www.the-paulmccartney-project.com/artist/maciej-rakowski/https://www.imdb.com/name/nm0707636/M. RakowskiMaciaj RakowskiMacief RakowskiMaciej RokowskiMacies RakowskiMaicek RakowskiMariej RakowskiThe London Session OrchestraEnglish Chamber OrchestraThe London OrchestraThe Michael Nyman OrchestraLondon Festival OrchestraThe Taliesin Orchestra + +344509Mike De SaullesMichael John de SaullesBritish classical violinist. Born in Wimbledon, England, UK. +He studied at [l305416]. Former Co-Principal Violin with the [a=London Symphony Orchestra] (1957-1976).Needs Votehttps://open.spotify.com/artist/7GwyyUWjiUj0eWkcYQJZWzhttps://music.apple.com/mx/artist/michael-de-saulles/265492338?l=enhttps://www.imdb.com/name/nm1179905/M. De SaullesMichael De SallesMichael De SaullesMichael DeSallesMichael DesaullesMichael SaullesMichael de SaullesMike DeSaulsLondon Symphony OrchestraThe London Telefilmonic OrchestraThe Academy Of St. Martin-in-the-FieldsRobert Farnon And His Orchestra + +344513Barry Wilde(Peter) Barry WildeBritish classical violinist. +Former Sub Principal First Violin of the [a=London Symphony Orchestra] (1959-1964).Needs Votehttp://www.barrywilde.com/B. WildeBarny WildeBarry WildLondon Symphony OrchestraRoyal Philharmonic OrchestraNorthern SinfoniaThe London Virtuosi + +344516Ben CruftBenedict J.M. CruftBritish violinist. Born in 1949. +He studied at the [l290263] (1966-1970). During the 1970s he played in the [a=Orchestra Of The Royal Opera House, Covent Garden], the [a=London Symphony Orchestra] (1973-1975) and the [a=Philharmonia Orchestra], and joined the [a=London String Quartet] when it was re-formed by [a=Carl Pini]. In 1980, as the Associate Concertmaster of the [a=Hong Kong Philharmonic Orchestra] he went for the first time to live in Hong Kong, and while there he also taught at the Hong Kong Conservatory and formed and led the [b]Tononi String Quartet[/b]. He returned in 1984 to London, where he free-lanced, giving solo and chamber music recitals, playing with many different groups in England and abroad, recording music for films, records and television in the London studio world and occasionally composing music for television commercials, Library Music and the theatre. In 2003, he became Dean of music at the Hong Kong Academy for Performing Arts (HKAPA) (2003-2013). +Son of [a=Adrian Cruft] and grandson of [a=Eugene Cruft].Needs Votehttp://www.musiciansgallery.com/start/strings/violins/cruft/benedict.htmhttps://www.the-paulmccartney-project.com/artist/benedict-cruft/https://www.scmp.com/lifestyle/arts-culture/article/1273167/exiting-apa-music-head-leaves-formidable-legacyhttps://www.schoenfeldcompetition.com/cruft.phphttps://music.apple.com/co/artist/benedict-j-m-cruft/1162535547https://open.spotify.com/artist/38KYTA4pzDGzAncRz79WfWhttps://www.imdb.com/name/nm1178351/https://www.linkedin.com/in/benedict-cruft-1a679baa/B. CroftB. CruftBem CruftBen CruffBen CrustBenedict CrufBenedict CruffBenedict CruftBenjamin CruftThe London Session OrchestraLondon Symphony OrchestraPhilharmonia OrchestraLondon String QuartetLondon Festival OrchestraOrchestra Of The Royal Opera House, Covent GardenThe Taliesin OrchestraThe London VirtuosiThe Astarte Session OrchestraThe Chamber Orchestra Of LondonThe Gypsy Strings + +344522Martin LovedayBritish cellist. Born: 1958 Salisbury, Rhodesia (now Harare, Zimbabwe) - Died: April 2020 London of coronavirus. +Moved to England in 1964. He studied at the [l290263] and then at the [l527847]. Member of [a=The Academy Of St. Martin-in-the-Fields] from 1984-2019. He also played with ensembles including the [a=Hanson String Quartet], the [a=Pleeth Cello Octet] and the [a=Hartley Piano Trio].Needs Votehttps://open.spotify.com/artist/0RDiduesy7Kibb82zA2v7uhttps://music.apple.com/uz/artist/martin-loveday/4788399https://jaxsta.com/profile/abb3d69e-5986-4f8c-b5cf-faec8b30ff23/catalogue?view=tilehttps://www.theguardian.com/music/2020/jun/22/martin-loveday-obituaryhttps://www.thestrad.com/news/uk-cellist-martin-loveday-dies-of-coronavirus/10511.articlehttps://www.asmf.org/martin-loveday-1958-2020/https://theviolinchannel.com/cellist-martin-loveday-died-covid19-coronavirus-academy-st-martin-in-the-fields-obituary/https://www.imdb.com/name/nm1018412/https://www2.bfi.org.uk/films-tv-people/4ce2bc452f1b0LovedayM. LovedayMartinMartin Kesley LovedayMartin LavedayMartin Loveday DoubleМартин ЛавдэйThe London Session OrchestraThe London Studio OrchestraLondon Metropolitan OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Festival OrchestraThe Taliesin OrchestraHanson String QuartetThe Astarte Session OrchestraHartley Piano TrioPleeth Cello OctetOrchestre de GrandeurThe Pale Blue Orchestra + +344523John PigneguyJohn PignéguyEnglish horn player, born in 1945 at Shoreham-by-Sea in Sussex.Needs Votehttp://www.johnpigneguy.co.uk/john-pigneguy/J. PigneguyJ. PigneyJ. PinequyJohn PigneevyJohn PignegayJohn PignegnyJohn PignegueyJohn PigneguwJohn Pigneguy And The Sound Of HornsJohn PigniugyJohn PignéguyJohn PiqneguyThe London Session OrchestraThe Strictly Unreasonable Zang Tuum Tumb Big Beat ColossusPhilip Jones Brass EnsembleThe Nash EnsembleLondon Mozart PlayersThe Taliesin OrchestraLocke Brass ConsortRobert Farnon And His Orchestra + +344525Bill BenhamWilliam BenhamBritish former classical violin (primarily) & viola player, music & Alexander Technique teacher, and fitter of adjustable chin rests & collar bone rests. Born in Salisbury, Wiltshire, England, UK. +At the age of 20, he joined the [a=Bath Festival Orchestra], and at 22, the [a=London Symphony Orchestra] (1968-1973). At 27, he joined the [a=Northern Sinfonia] as Co-Leader. Two years later he returned to London where he worked as a freelance session musician (1975-2003). He also took up the viola in 1990. He has become the Leader of the [b]Farley Quartet[/b], re-launched in 2014 as the [b]Wiltshire Quartet[/b]. He has developed an adjustable violin chin rest.Needs Votehttps://www.facebook.com/billbenham9https://www.linkedin.com/in/bill-benham-88376529/?originalSubdomain=ukhttp://www.philanthropypoint.scot/news/wiltshire-quartet-makes-its-music-in-farley-debut/https://www.pittonandfarley.co.uk/events/mozart-and-mendelssohn-the-wiltshire-quartet/https://www.musicteachers.co.uk/teacher/e35498eac753f58e3d49https://www.bapam.org.uk/practitioner-directory/mr-bill-benham/B. BenhamBen BenhamBill BenhemrW BenhamW. BenhamWilliam BenhamThe London Session OrchestraLondon Symphony OrchestraPhilharmonia OrchestraLondon Festival OrchestraThe Taliesin OrchestraNorthern SinfoniaBath Festival OrchestraThe Astarte Session Orchestra + +344528Jim McLeodJames McLeodBritish violinist.Correcthttps://web.archive.org/web/20210614195707/https://www2.bfi.org.uk/films-tv-people/4ce2bc45298bbhttps://www.imdb.com/name/nm3252699/James McCleodJames McLeodJim Mac LeodJim MacLeodJim MaleadJim Mc LeodJim McCleodJim McleodSim McLeodThe London Session OrchestraEnglish Chamber OrchestraThe London OrchestraLondon Festival OrchestraThe Taliesin OrchestraThe London VirtuosiThe Astarte Session OrchestraOrchestre de GrandeurThe Valve Bone Woe Ensemble + +344535Bob SmissenRobert SmissenViolist. +Husband of [a=Rebecca Scott (2)].Needs VoteBob SmissonBod SimseenRob SmissenRobert P P SmissenRobert SmissenRobert SmissonThe London Session OrchestraThe Academy Of St. Martin-in-the-FieldsEuropean Union Youth OrchestraMarylebone CamerataAcademy Of St. Martin-in-the-Fields Chamber EnsembleI Musicanti (3)The Pro Arte Piano Quartet (2) + +344536David TheodoreDavid TheodoreClassical oboe & cor anglais player, and Professor of Oboe. +He studied at the [l527847]. At the age of twenty he was appointed Principal Oboe in the [a=BBC Welsh Symphony Orchestra]. He has held Principal positions with various London orchestras. Professor of Oboe at the [l290263] and [l305416].Needs Votehttps://open.spotify.com/artist/4O6900XY8Pvala6OqefXhjhttps://music.apple.com/us/artist/david-theodore/64719359http://bukovica.eu/artist/555745/david-theodorehttps://www.the-paulmccartney-project.com/artist/david-theodore/https://www.imdb.com/name/nm0857476/https://www2.bfi.org.uk/films-tv-people/4ce2bbbb210f7https://vgmdb.net/artist/13351D. TheodoreDavid TheodorDavid ThéodoreTheodore D.Theodore. DLondon Symphony OrchestraLondon Philharmonic OrchestraNational Philharmonic OrchestraThe Michael Nyman OrchestraAthena EnsembleThe Mancini Pops OrchestraBBC Welsh Symphony OrchestraDick Bakker Orchestra (2)The Military Ensemble Of LondonDesign (25)Orchestre de GrandeurThe Thamesis Trio Of London + +344537Roger GarlandBritish classical violinist, active from the 1970s. +His early career as a member of the [a=English Chamber Orchestra] (joined 1969) and as a principal of [a=The Academy Of St. Martin-in-the-Fields] (joined in 1973) took him all over the world,Needs Votehttps://yso.org.uk/history/biographies/roger-garland/http://www.youthmusicinternational.com/FacultyList2010.htmhttps://www.imdb.com/name/nm9956701/https://www.allmusic.com/artist/roger-garland-mn0000798097/R. GarlandRodger GarlandThe Martyn Ford OrchestraThe London Telefilmonic OrchestraThe London OrchestraThe Academy Of St. Martin-in-the-FieldsThe Taliesin OrchestraThe London VirtuosiThe Thames Chamber OrchestraThe English ConcertYorkshire SinfoniaAcademy Chamber Ensemble + +344610Sid CooperSidney CooperFlute/clarinet player and songwriter +Born 1918 in Montreal, died 18th July 2011 in Lake Worth, Florida +Needs Votehttps://adp.library.ucsb.edu/names/202097CooperS. CooperSCSid Cooper (SC)Side CooperSidney CooperGil Evans And His OrchestraEnoch Light And The Light BrigadeHugo Montenegro And His OrchestraTommy Dorsey And His OrchestraSy Oliver And His OrchestraSauter-Finegan OrchestraVic Schoen And His OrchestraSonny Stitt All StarsMiles Davis + 19Henry Jerome And His OrchestraDoc Severinsen And His OrchestraJohnny Richards And His OrchestraSid Cooper And OrchestraStewart - Williams & Co.The Three Deuces MusiciansSnapper Lloyd And His Orchestra + +344621Stefaan VerdegemClassical oboist.Needs VoteStefan VerdegemAnima EternaThe Amsterdam Baroque OrchestraConcerto KölnLes AgrémensLes MuffattiB'Rock OrchestraMannheimer Hofkapelle + +344970David GreenbaumAmerican cellist and session musician, born 1908 in Scotland and died in 1974.Needs VoteThe Cleveland OrchestraChicago Symphony Orchestra + +345039Al De RisiAmerican trumpet and flugelhorn player.Needs VoteA. de RisiAl De RiseAl DeRiseAl DeRisiAl DelrisiAl DeriseAl DerisiAl Di RisiAl DirisiAl PerisiAlfred De RisiAlio De RisiQuincy Jones And His OrchestraThe Glenn Miller OrchestraWoody Herman And His OrchestraElliot Lawrence And His OrchestraBenny Goodman And His OrchestraSauter-Finegan OrchestraManny Albam And His Jazz GreatsJoe Reisman And His OrchestraTerry Gibbs And His OrchestraThe Elliot Lawrence BandWoody Herman And The Fourth HerdThe Quincy Jones Big BandBob Brookmeyer And His OrchestraMichel Legrand Big BandJim Timmens And His Swinging BrassStewart - Williams & Co. + +345311Quentin FranglenQuentin FranglenUK Hard House/Trance producer most known under his alias [a=Baby Doc].Needs VoteFranglenQ FranglenQ. FranglenBaby DocBad ManThe Hellfire ClubBaby Doc & The DentistHyperspaceBaby Doc & S-JBoscalandHiroshimaDeep Space (3)Four Star Freaks + +345542Justus LiebichGerman engineer. Associated with several studios in the Köln (Cologne) area over spanning from the early 1970's till present day.Needs Votehttps://www.floh-dur.de/kunst/ku_studio.html"Justus" LiebichDietmar "Justus" LiebichDietmar Justus LiebichDietmar LiebichJ. LiebigJ. LiebichJ. LiebigJ. LieblichJustusJustus (Tom Mix) LiebichJustus (Torn Mix) LiebichJustus D. LiebichJustus Liebich, KölnJustus LiebiechJustus LiebigLiebig“Justus” Liebich + +345759Mike RichmondMichael RichmondAmerican jazz bassist +Born February 26, 1948 in Philadelphia, Pennsylvania, USA + +Needs Votehttp://www.mikerichmondmusic.com/sites/mrm/index.htmlhttps://de.wikipedia.org/wiki/Mike_RichmondM. RichmondMichael RichmondRichmondGil Evans And His OrchestraThe George Gruntz Concert Jazz BandJack DeJohnette's DirectionsMingus DynastyMingus Big BandHarris Simon GroupFranco Ambrosetti QuintetThe George Gruntz TrioAsian JournalHubert Laws GroupAir Mail (2)The Richard Sussman QuintetJim McNeely TrioBill Warfield Big BandDannie Richmond QuartetAndy Laverne TrioJim McNeely QuintetManhattan Jazz OrchestraLarry Schneider QuartetStan Getz + Bob Brookmeyer SextetThe Tango KingsMike Richmond QuartetCarlos Franzetti TrioMike Richmond Cello QuartetThe Randy Sandke QuintetMike Richmond QuintetTom Cohen TrioThe Cello Quartet (4) + +346088Larry MuhoberacLawrence Gordon Muhoberac Jr.American musician (keyboards, piano) - producer - composer +Born February 12, 1937 in Louisiana, died December 4, 2016 in Erina, New South Wales, Australia. +He grew up in Louisiana and moved to Memphis, in 1959. +Sometimes credited as Larry Owens and Larry Larry Gordon. +Father of musicians [a=Jamie Muhoberac] and [a=Parrish Muhoberac]. +Worked with [a=Elvis Presley], [a=Neil Diamond], [a=Tina Turner], [a=Ray Charles], [a=Tanya Tucker], [a=Ray Conniff] and [a=Barbra Streisand], among others. +Muhoberac and his wife, [a=Andra Willis] lived in Australia since 1986. +Needs Votehttps://en.wikipedia.org/wiki/Larry_Muhoberachttps://www.facebook.com/larry.muhoberac.7https://www.elvis.com.au/presley/interview-with-larry-muhoberac.shtmlhttp://www.isni.org/0000000032918327http://www.isni.org/0000000406693485https://musicbrainz.org/artist/a00ad90f-fe02-4c30-a949-90a0d6fa3c58https://www.wikidata.org/wiki/Q6490842https://www.allmusic.com/artist/mn0000086064https://genius.com/artists/Larry-muhoberachttps://www.imdb.com/name/nm0611298/https://id.loc.gov/authorities/names/n91093398https://rateyourmusic.com/artist/larry-muhoberac/https://secondhandsongs.com/artist/220964https://www.themoviedb.org/person/1979539https://www.whosampled.com/Larry-Muhoberac/B7L. MahoberacL. MuhoberacL. MuhoberalLarry C. MuhoberacLarry G. MuhoberacLarry G. Muhoberac, Jr.Larry MahoberacLarry MahoberackLarry MohaberackLarry MohoberacLarry MohouberacLarry MohuberacLarry MuboberacLarry MucoberacLarry MuhobaraeLarry MuhobarecLarry MuhoberackLarry MuhoberaeLarry MuhoberagLarry MuhoberakLarry MuhoberalLarry MuhoboracLarry MuhoveracLarry MuhulbruckLawrence G. MulhoberacMuhoberacLarry OwensLalo Schifrin & OrchestraThe TCB Band + +346157Gary KettelBritish percussionist, born in the early 50s. He plays both on classical and pop releases.Needs Votehttps://bell-music.co.uk/gary-kettel/https://www.trinitylaban.ac.uk/study/teaching-staff/gary-kettel/G. KettelGKGarry KettelGarry KettellGary KettleGery KettelBBC Symphony OrchestraRoyal Philharmonic OrchestraLondon Metropolitan OrchestraFires Of LondonPhilip Jones Brass EnsembleThe New SymphoniaThe Taliesin OrchestraThe Starcoast OrchestraThe Pale Blue OrchestraThe Tony Coe Ensemble + +346372Heikki HämäläinenA Finnish violinist born on November 11, 1947.Needs VoteH. HämäläinenVantaan ViihdeorkesteriHeikki Hämäläisen JousiryhmäTeemu Hämäläinen Sacral StringsLohjan KaupunginorkesteriPentti Lasanen Orchestra + +346373Jorma YlönenJorma Johan YlönenFinnish violinist, conductor and concertmaster of [a=Helsinki Philharmonic Orchestra]. Born 1931, died 2007. He was very prolific and in-demand musician both in classical and pop music genres. His string section was heard on numerous pop records making him the 10th most recorded studio musician in Finland.Needs VoteJ. YlönenHelsinki Philharmonic OrchestraJorma Ylösen JousiryhmäMieskuoro "Varsovan Laulu"Jorma Ylösen Jousikvintetti + +346387Timothy FerchenClassical percussionist, born in 1947 in the United States, he studied music with the lead of William Street, [a=John Beck] and Jack Moore. In 1972 he joined [a=Steve Reich And Musicians]. He moved to Finland in 1974, and he has been a member of the Finnish Radio Symphony Orchestra since 1977. In 1984 he founded The Breath Ensemble.Needs VoteDime, Timothy FerchenFershenTim FerchenТим ФерхенSteve Reich And MusiciansRadion SinfoniaorkesteriÁillohaččat + +346395Jussi PesonenJussi Antero PesonenA Finnish violinist born on October 11, 1941.Needs VoteHelsinki Philharmonic OrchestraFinlandia QuartetHeikki Hämäläisen Jousiryhmä + +346398Juhani TiainenFinnish violinist and composer. Born June 13, 1939. Died October 7, 2017.Needs VoteJuha TiainenTiainen JuhaniLeikarit + +346569David SchnitterDavid Bertram SchnitterAmerican jazz saxophonist, born 19 March 1948 in Newark, New Jersey, USA. + + +Needs VoteD. SchnitterD.SchnitterDave SchnitterDavid SchmitterSchnitterArt Blakey & The Jazz MessengersThe Rongetz FoundationMichael Jefry Stevens QuartetDavid Schnitter QuartetFreddie Hubbard SextetDaniele Gorgone 4tet + +346662Nathaniel MeeksAmerican jazz trumpet player, born 1930, died 1973.Needs VoteCharlie MeeksNat MeeksGerald Wilson OrchestraThe Gerald Wilson Big BandTeddy Edwards Octet + +346666Jimmy Miller (3)Jazz guitar player.CorrectNoble Sissle Swingsters + +346667Don SwitzerJazz trombonist.Needs VoteDonald SwitzerWoody Herman And His OrchestraBuddy Rich Big BandGerald Wilson OrchestraThe Gerald Wilson Big BandWoody Herman And The Thundering Herd + +346671Freddie HallTrumpeterNeeds VoteFred HallHallGerald Wilson Orchestra + +346674Chuck CarterDrummerNeeds VoteGerald Wilson OrchestraThe Gerald Wilson Big BandHugh Masekela Quintet + +346676Joe MainiJoseph MainiAmerican jazz alto saxophonist. +Born February 8, 1930 in Providence, Rhode Island. +Died May 7, 1964 in Los Angeles, California, USA. +Accounts of his death usually state that Maini died playing Russian roulette, though his family and several witnesses contend that it was the result of a firearms accident. +Needs Votehttps://en.wikipedia.org/wiki/Joe_MainiJ. MainiJo MainiJoe MainJoe MaineJoe Maini Jr.Joe Maini jr.Joe Maini, Jr.Joe MainoJoe ManiJoe MiniMainiGerald Wilson OrchestraClifford Brown All StarsBill Holman And His OrchestraLouie Bellson OrchestraTerry Gibbs And His OrchestraBill Holman's Great Big BandJack Sheldon QuintetKenny Drew QuartetKenny Drew QuintetTerry Gibbs Big BandThe Gerald Wilson Big BandJimmy Knepper QuintetJohnny Mandel OrchestraTerry Gibbs Dream BandNeal Hefti And His Jazz Pops OrchestraJoe Maini Sextett + +346678Modesto DuranLatin percussionist. + +Needs VoteDuranDuránM. DuranM. DuránMadesto DuranModesta DuranModestoModesto Duran MartinezModesto DuránSuranGerald Wilson OrchestraShorty Rogers And His GiantsModesto's Charanga KingsMongo Santamaria Y Sus Ritmos Afro-CubanosThe Gerald Wilson Big BandModesto Duran And Orchestra + +346681Jimmy WoodsWest coast-based jazz alto saxophonist (born October 29, 1934 in St. Louis, Missouri; died March 29, 2018 in Anchorage, Alaska)Needs VoteWoodsGerald Wilson OrchestraThe Pan-Afrikan Peoples ArkestraJimmy Woods SextetThe Gerald Wilson Big BandThe Chico Hamilton SextetTeddy Edwards OctetJimmy Woods Quintet + +346715Richard LeithAmerican trombonistNeeds VoteDick LeithHarry James And His OrchestraThe Orchestra (4)Bob Jung And His OrchestraThe Wrecking Crew (6)Carol Kaye And The Hitmen + +346719Roy CatonRoy Vernon CatonRoy Vernon Caton (January 28, 1927 – July 29, 2010) was an American trumpet player and session musician.Needs Votehttps://en.wikipedia.org/wiki/Roy_CatonRoy CatronRoy V. CantonRoy V. CatonWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdSam Trippe And His OrchestraThe Wrecking Crew (6) + +347268Tutti CamarataSalvatore CamarataAmerican instrumentalist, orchestrator, arranger, composer, and producer, Born 11 May 1913, Glen Ridge, New Jersey, USA; died 20 April 2005, Burbank, California, USA. He owned the labels [l132500] and [l300238]. Often regarded as the first producer-as-artist. + +Camarata began his career as a trumpet player for bands such as Jimmy and Tommy Dorsey, Benny Goodman, and others, eventually becoming the lead trumpet and arranger for Jimmy Dorsey. He also did arranging for Glen Gray and the Casa Loma Orchestra, Benny Goodman, Louis Armstrong, Bing Crosby, Billie Holliday, Ella Fitzgerald, Duke Ellington, and many others. He also conducted and orchestrated a recording of Jascha Heifetz, the legendary violinist. + +In 1944, Camarata joined British Decca and helped found London Records. In addition to his duties at London Records, he also served as a classical-music artist, orchestrating and conducting a number of classical albums including the works of Puccini, Verdi, Bach, Bizet, Tchaikovsky, and Rachmaninoff. + +In 1956, Walt Disney hired him to form Disneyland Records, and to be music director and producer for the label, at which he worked until left in 1972. In 1958, Camarata purchased the first building that would become [l=Sunset Sound Recorders]—where, during his 16-year association with Disney, he produced over 300 albums for the company. + +Camarata was the musical conductor for several TV series, including “Startime,” “The Vic Damone Show,” and “The Alcoa Hour.” In 1981, Camarata would also purchase [l=The Sound Factory], previously owned by David Hassinger. Like Sunset Sound studios, the Sound Factory is one of the top recording studios in Hollywood and has been used by many top music artists.Needs Votehttp://legends.disney.go.com/legends/detail?key=Tutti+Camaratahttps://adp.library.ucsb.edu/names/109330https://en.wikipedia.org/wiki/Salvador_Camarata"Toots" CamarataCAMARATACamarataCamarata & His MusicCamarata K.S.O.CamarateCamerataE. CamarataI. CamerataMr. CamarataMusic By CamarataSalavatore "Tutti" CamarataSalvador CamarataSalvadore "Tutti" CamarataSalvadore CamarataSalvatore "Tutti" CamarataSalvatore CamarataSalvatore »Tutti« CamarataT . CamarataT CamarataT. CamarataT. CammarataToot CamarataToots CamarataToots CamarattaToots CamerataTutti CamarattaTutti CamerataTutti CamerattaКамаратаJimmy Dorsey And His OrchestraCharlie Barnet And His OrchestraToots Camarata And His OrchestraThe CommandersThe Camarata Contemporary Chamber GroupSalvador Camarata And His OrchestraCamarata Chorus And OrchestraTutti's TrumpetsTutti's TrombonesMusic By Camarata + +347273George Cates And His OrchestraGeorge Cates (October 19, 1911 – May 10, 2002) was an American music arranger, conductor, songwriter and record executive known for his work with Lawrence Welk and his orchestra.Needs Votehttp://www.allmusic.com/artist/george-cates-his-orchestra-mn0002217893https://www.google.co.za/search?q=George+Cates+And+His+Orchestra&rlz=1C1IRFF_enZA552ZA630&espv=2&source=lnms&sa=X&ved=0ahUKEwitsbKyk8rSAhVIBcAKHSa9CNwQ_AUIBygA&biw=1280&bih=869&dpr=1George Cates & His Orch.George Cates & His OrchestraGeorge Cates Et Son Grand OrchestreGeorge Cates Et Son OrchestreGeorge Cates OrchestraGeorge Cates Und Sein OrchesterGeorge Cates Y Su OrquestaGeorge Gates And His OrchestraOrchestra Directed By George CatesOrchestre G. CatesOrchestre George CatesThe George Cates OrchestraGeorge Cates + +347276Ron Goodwin And His OrchestraCorrectGoodwinOrchester Ron GoodwinOrchestra Ron GoodwinOrkest Ron GoodwinRon Goodvin And His OrchestraRon GoodwinRon Goodwin & His Concert Orch.Ron Goodwin & His Concert OrchestraRon Goodwin & His Orch.Ron Goodwin & His OrchestraRon Goodwin & Orch.Ron Goodwin & OrchestraRon Goodwin And His Concert Orch.Ron Goodwin And His Concert OrchestraRon Goodwin And His Enchanting English OrchestraRon Goodwin And His Magic StringsRon Goodwin And His Orch.Ron Goodwin And His Orchestra and ChorusRon Goodwin And his Concert OrchestraRon Goodwin E La Sua OrchestraRon Goodwin E La Sua Orchestra Da ConcertoRon Goodwin E Sua OrquestraRon Goodwin E Sua Orquestra De ConcertoRon Goodwin Et Son Grand OrchestreRon Goodwin Et Son OrchestreRon Goodwin Og Hans OrkesterRon Goodwin Orch.Ron Goodwin OrchestraRon Goodwin Und Sein OrchesterRon Goodwin With His Orchestra And Children's ChorusRon Goodwin With His Orchestra and ChorusRon Goodwin Y Su OrquestaRon Goodwin Y Su Orquesta De ConciertoRon Goodwin's MusicRon Goodwin's OrchestraRon Goodwin's OrkesterRongood Win And His Concert OrchestraThe Ron Goodwin Orchestraロン・グッドウイン・オーケストラRon Goodwin + +347509Norman FearringtonCopenhagen-based American drummer and percussionist. He came to Denmark in 1979 while touring with [a=Tina Turner] and married [a=Jytte Fearrington]. Brother of [a=Basil Fearington], father of [a=Fearrington].Needs VoteN. FearringtonNormanNorman FarringtonNorman FearingtonNorman FerrintonNorman SearlingtonMFSBChet Baker QuartetJukka Tolonen BandOreo MoonAnne Linnet BandJanice (8)Eddie Harris Funk ProjectEddie Harris Quartet + +347516Tony CrombieAnthony John KronenbergEnglish jazz drummer, pianist, bandleader, vibraphonist and composer. +Born August 27, 1925 in Bishopsgate, London, England. +Died October 18, 1999 in North West London, England. +Crombie was a self-taught musician who began playing the drums aged fourteen. He was one of a group of young men from the East End of London who ultimately formed the co-operative Club Eleven, bringing modern jazz to Britain. Having gone to New York with his friend Ronnie Scott in 1947, witnessing the playing of Charlie Parker and Dizzy Gillespie, he and like-minded musicians such as Johnny Dankworth, Scott and Dennis Rose brought be-bop to the UK. In 1948 Crombie toured Britain and Europe with Duke Ellington, who had been unable to bring his own musicians with him, except for Ray Nance and Kay Davis. Picking up a rhythm section in London, he chose Crombie on the recommendation of Lena Horne, with whom Crombie had worked when she appeared at the Palladium. +In August 1956, Crombie set up a rock and roll band he called The Rockets, which included future Shadows bassist Jet Harris. The group was modelled after Bill Haley's Comets and Freddie Bell & the Bellboys. Crombie and his Rockets released several singles for Decca and Columbia, including "Teach You to Rock" produced by Norrie Paramor, which made the Top 30 in the UK Singles Chart in October 1956. +He is credited with introducing rock and roll music to Iceland, performing there in May 1957. By 1958, the Rockets had become a jazz group with Scott and Tubby Hayes. During the following year, Crombie started Jazz Inc. with pianist Stan Tracey. In 1960, he composed the score for the film "The Tell-Tale Heart" and had a residency at a hotel in Monte Carlo. In May 1960, he toured the UK with Conway Twitty, Freddy Cannon, Johnny Preston, and Wee Willie Harris. +In the early sixties, Crombie's friend, Victor Feldman, passed one of his compositions to Miles Davis, who recorded the piece on his "Seven Steps to Heaven" album. The song, "So Near, So Far", has been recorded by others including Joe Henderson, who named a tribute album to Miles Davis with the title. +During the next thirty years, Crombie appeared with many other American jazz musicians, including Ben Webster, Coleman Hawkins, Illinois Jacquet, Joe Pass, Mark Murphy and Eddie "Lockjaw" Davis. In the mid-1990s, after breaking his arm in a fall, he stopped playing the drums but continued composing until his death in 1999. +Crombie was married twice. He had a son and daughter from his first marriage and another daughter from his second. One of his grandsons is the drummer, music producer and composer Dylan Freed.Needs Votehttp://www.jazzprofessional.com/memorial/crombie.htmhttps://www.imdb.com/name/nm0188604/http://henrybebop.co.uk/crombie.htmhttps://www.rocky-52.net/chanteursc/crombie_t.htmCrombieT CrombieT. CrombieTony Crombie & His FriendsBen Webster QuartetLondon Jazz QuartetRonnie Scott's QuintetTony Crombie And His RocketsAlan Clare TrioTito Burns And His SextetTony Crombie And His OrchestraTony Crombie And His MenTony Crombie And His BandThe Ronnie Scott OrchestraThe Tony Crombie 4-TetJimmy Deuchar QuartetThe Ronnie Scott BoptetPat Smythe TrioMike Carr-Tony Crombie DuoRonnie Scott QuartetTony Crombie And His Sweet Beat + +347735Jay SenterSignificant production credits, songwriter and engineering credits. He has collaborated with major songwriter [a586602]. Correcthttp://www.billlabounty.com/J. SenterJSJay F. SenterSenter + +347792Walter Davis Jr.American jazz pianist. +Born : September 02, 1932 in Richmond, Virginia. +Died : June 02, 1990 in New York City, New York. + +Walter worked with : Babs Gonzales, Melba Liston, Max Roach, Charlie Parker, Dizzy Gillespie, Donald Byrd, Sonny Criss, Art Blakey, Kenny Clarke, Jackie McLean and others. +Needs Votehttps://en.wikipedia.org/wiki/Walter_Davis_Jr.https://www.bluenote.com/artist/walter-davis-jr/DavisDavis JrDavis Jr.Davis, Jr.W. DavisW. Davis JrW. Davis Jr.W. Davis, Jr.W.DavisWalter DavidWalter DavisWalter Davis 2Walter Davis 2ndWalter Davis IIWalter Davis JWalter Davis JnrWalter Davis JrWalter Davis JuniorWalter Davis TrioWalter Davis, JR.Walter Davis, Jnr.Walter Davis, JrWalter Davis, Jr.Walter Davis, Jr. TrioWalter Davis., Jr.Walter Jnr Davisウォルターディヴィスウォルター・ディヴィス・ジュニアウォルター・デイヴィスJr.Art Blakey & The Jazz MessengersDizzy Gillespie And His OrchestraDonald Byrd QuintetFrank Rehak SextetMax Roach QuartetMax Roach SeptetLes MexirockersWalter Davis Jr. CompanyDonald Byrd QuartetDameroniaPhilly Joe Jones QuartetWalter Davis, Jr. Trio + +347836Eddie PazantEdward Pazant.American jazz saxophonist (alto), flutist and oboist player. +Born : June 29, 1938 in Savannah, Georgia. +Died : August 2, 2017 in Teaneck, NJ + +Ed played with : Lionel Hampton (for 11 years), Frank Foster, The Dells, Kool and the Gang (and others) and with own his groups.Needs VoteE. PazantE.D. PazantEd PazantEd PazzantEd PozantEddie PasanteEdward "Ed" PazantEdward PazantEdward T. PazantThe Chili PeppersPucho & His Latin Soul BrothersThe Pazant BrothersLionel Hampton And His OrchestraGeorge Gee Big Band + +347923Chuck SabatinoCharles SabatinoVocalist, Keyboardist and songwriter from the St. Louis, Missouri area. Chuck was playing in St. Louis during the 1960's with the Charades and the Sheratons before replacing [a907456] in [a426425] as lead vocalist. After the Guise disbanded Chuck and [a4973454] would form [a1238003] followed by [a4818693]. He would move to California around 1985 working regularly as a recording studio session musician in addition to traveling as backing vocalist and songwriter for [a38258] until 1994, when he suffered a massive brainstem stroke which left him partially paralyzed and unable to speak ending his career. Charles Sabatino passed away February 19, 1996 in Belleville, Illinois at the age of 45.Needs VoteC. SabatinoCharles SabatinoSabatinoJake JonesA Full Moon Consort + +348120Reiner SüßGerman bass vocalist and entertainer, born 2 February 1930 in Chemnitz, Germany, died 29 January 2015 in Friedland, Germany. Father of [a=Dario Süß].Correcthttp://www.kv-events.de/reiner-suess.htmlhttp://de.wikipedia.org/wiki/Reiner_S%C3%BC%C3%9FR. SüßRainer SüßReiner SussReiner SüssSüssRundfunkchor LeipzigThomanerchorStaatskapelle Berlin + +348179William ShakespeareEnglish playwright, poet and actor (bapt. 26 April 1564, Stratford-upon-Avon; died 23 April 1616, Stratford-upon-Avon), widely considered one of the most important and most influential authors in the English language. +Needs Votehttp://en.wikipedia.org/wiki/William_Shakespearehttp://www.opensourceshakespeare.orghttps://adp.library.ucsb.edu/names/102258B. ШекспирBill ShakespeareMr. William ShakespeareSchakespeareShakespearShakespeareShakespeare's Antony And Cleopatra (Mandarin)ShakspereShalespeareShankespeareSir William ShakespeareSkakespeareV. ShakespeareV. ŠekspirV. ŠekspyrasV.ŠekspyrasV.ŠekspīrsViljamas ŠekspyrasViljams ŠekspīrsViljem ŠekspirW ShakespeareW. ShakespeareW. ShakespearW. ShakespearaW. ShakespeareW. Shakespeare?W. SzekspirW.ShakespeareWiliam ShakespeareWiliam SzekspirWill ShakespeareWillams Shakes BeerWilliam SchakespeareWilliam Shakespeare (1564-1616)William Shakespeare (c. 1609)William SzekspirWilly ShakespeareWm ShakespeareWm. ShakespeareŠekspirŠekspīrsΟυίλιαμ ΣαίξπηρΟυίλλιαμ ΣαίξπηρΣαίξπηρВ. ШекспирВ. ШекспірВ.ШекспирВилијам ШекспирВильям ШекспирВильям Шекспир, пер. С.МаршакаВильям наш ШекспирВильяму ШекспируУ. ШекспирУ.ШекспирУильям ШекспирУилям ШекспирШекспирШекспираוויליאם שייקספירויליאם שייקספירשייקספירשקספירویلیام شکسپیرシェークスピア + +348531Gregg FieldAmerican jazz drummer, percussionist and producer, born 21 February 1956 in Oakland, USANeeds Votehttps://www.yamaha.com/artists/greggfield.htmlGr3gg FieldGreg FieldGreg FieldsCount Basie OrchestraPatrick Williams And His OrchestraKockyChris Walden Big BandWDR Big Band KölnThe Frank Wess - Harry Edison OrchestraThe Bob Florence Limited EditionShelly Berg Trio + +348534Ron EschetéJazz guitarist Ron Escheté (pronounced ESH-tay) was born in 1948 in Houma, Louisiana.Needs Votehttp://www.roneschete.com/EscheteR. EscheteR. EschetéRon EscheteRon EschetteThe Gene Harris QuartetRon Escheté TrioRay Brown's All StarsAndy Simpkins QuintetThe Mort Weiss QuartetTommy Gumina TrioThe David Silverman Quartet + +348565The Royal Choral SocietyThe Royal Choral Society (RCS)Choir, formed in 1871 for the opening of the Royal Albert Hall of Arts and Sciences.Needs Votehttp://www.royalchoralsociety.co.uk/http://www.bach-cantatas.com/Bio/RCS-L.htmhttps://adp.library.ucsb.edu/names/104384ChoirChoral SocietyCoro della Royal SocietyLa Sociedad Coral RealRoyal Choral SocietyRoyal Chorale SocietyThe Royal Choir SocietyThe Royal Choral Society And OrchestraThe Royal Choral Society And Royal Philharmonic OrchestraThe Royal Philharmonic Choral Societyロイヤル・コーラル・ソサエティロイヤル合唱協会Laszlo Heltay + +348738Harvey Brooks (2)Harvey Oliver BrooksAmerican jazz pianist and composer. +He worked with: Mamie Smith, Paul Howard (in "Quality Four"), Kid Ory, Teddy Buckner, Joe Darensbourg, "Young Men of New Orleans". + +Born: February 17, 1899 in Philadelphia, Pennsylvania. +Died: June 17, 1968 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/113026BrooksH. BrooksH. O. BrooksH. Q. BrooksHarbey O. BrooksHarry O'BrooksHarry O.BrooksHarve O. BrookHarveyHarvey O BrooksHarvey O. BrooksHarvey O. Brooks (2)Harvey Oliver BrooksHarvey Q. BrooksO BrooksO'BrooksO. BrooksLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraPaul Howard's Quality SerenadersMamie Smith And Her Jazz HoundsJoe Darensbourg And His Dixie FlyersTeddy Buckner And His Dixieland BandHarvey Brooks' Quality Four + +348879Elmer JamesElmer Taylor JamesAmerican jazz double bass and tuba player, born 1910 in Yonkers, New York, died 25 July 1954 in New York ity. +James played and recorded with Sidney Bechet, Louis Armstrong, Jabbo Smith, Chick Webb, Ben Webster, Fletcher Henderson, Benny Carter, Henry "Red" Allen, Bob Howard, Mezz Mezzrow, Baby Dodds, Tommy Ladnier, Buster Bailey and others. + +Not to be confused with the bluesman [a=Elmore James].Needs Votehttps://en.wikipedia.org/wiki/Elmer_James#:~:text=Elmer%20Taylor%20James%20(1910%2C%20Yonkers,Webb%20in%20the%20late%201920s.https://adp.library.ucsb.edu/names/113596E. JamesElmer JonesJamesLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraTommy Ladnier And His OrchestraChick Webb And His OrchestraMezz Mezzrow And His OrchestraHenry "Red" Allen And His OrchestraThe Mills Blue Rhythm BandLadnier-Mezzrow All-StarsEdgar Hayes And His OrchestraJimmy Johnson And His BandBuster Bailey And His Seven Chocolate DandiesThe Jungle Band (3) + +348881Manzie JohnsonManzie Isham JohnsonAmerican jazz drummer + +Born August 19, 1906 in Putnam, Connecticut +Died April 9, 1971 in New York City, New York + +Johnson played with [a=Willie Gant], [a=June Clark], [a=Elmer Snowden], [a=Joe Steele (2)], [a=Fats Waller], [a=James P. Johnson], [a=Horace Henderson], [a=Jelly Roll Morton], [a=Willie Bryant], [a=Lil Hardin-Armstrong], [a=Mezz Mezzrow], [a=Don Redman] and many others. +Needs Votehttps://adp.library.ucsb.edu/names/107077JohnsonM. JohnsonMainzie JohnsonManzle JohnsonSidney Bechet And His Blue Note Jazz MenTommy Ladnier And His OrchestraMezz Mezzrow And His OrchestraMezzrow-Ladnier QuintetSidney Bechet And His New Orleans FeetwarmersDon Redman And His OrchestraBunk Johnson - Sidney Bechet And Their OrchestraJelly Roll Morton And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraLadnier-Mezzrow All-StarsSidney Bechet & His Hot SixLil Armstrong And Her DixielandersSidney Bechet's Jazz Band + +348884Bill Johnson (4)William Manuel Johnson[b]For the writer of "Tuxedo Junction", please use [a=William Johnson].[/b] +American jazz double bassist, banjoist, mandolin player and guitarist, born August 10, 1872/74 in Talladega, Alabama; died December 3, 1972 in New Braunfels, Texas. He started out playing the guitar and mandolin, but switched to bass in the late 1890s. Founder of the Original Creole Orchestra. In addition he occasionally played tuba with brass bands. Retired in the late 1950s. + +Played with King Oliver in the early 1920s, most notably played banjo and shouted "Oh play that thing" on "Dipper Mouth Blues" (1923). There was also another banjoist/guitarist who recorded with King Oliver in the late 1920s and early 1930s, see [a=Will Johnson (2)] for details. +Needs Votehttps://en.wikipedia.org/wiki/William_Manuel_Johnsonhttps://www.allmusic.com/artist/bill-johnson-mn0000078639https://adp.library.ucsb.edu/names/110790B. JohnsonBall JohnsonJohnsonP. JohnsonWill JohnsonKing Oliver's Creole Jazz BandKing Oliver's Jazz BandTampa Red And His Hokum Jug BandJohnny Dodds Washboard BandState Street RamblersBill Johnson's Louisiana Jug BandJohnny Dodds TrioJohnny Dodds' Hot SixDixie FourJunie C. Cobb And His Grains Of CornThe Midnight Rounders"Banjo Ikey" Robinson And His Bull Fiddle BandThe Backa-Town Boys + +348885Emile ChristianEmile Joseph Christian.American jazz trombonist, trumpeter and bass player. +Nickname : "Boot-mouth". +He was brother of jazz trombonist Charles Christian (1886 - 1964) and Frank Christian. + +In the 1920's and 1930's, he played in various groups in Europe, including Berlin, Paris and Stockholm. +He also went to India in that era, but returned to the USA in 1939. + +Born : April 20, 1895 in New Orleans, Louisiana. +Died : December 03, 1973 in New Orleans, Louisiana.Needs VoteChristianE. ChristianEmil ChristianOriginal Dixieland Jazz BandEmile Christian And His New Orleans Jazz BandEric Borchard's JazzbandLeon Abbey's Band + +348886Cliff JacksonClifton Luther JacksonCliff Jackson (born July 19, 1902, Culpeper, Virginia, USA - died May 24, 1970, New York City, New York, USA) was an American jazz pianist. He played with many artists including: Lionel Howard, [a585881] and [a669268] and he accompanied singers such as: [a2025767], [a3233094], [a326807] and [a412671]. He was married to singer [a311737]. + + +Needs Votehttps://en.wikipedia.org/wiki/Cliff_Jackson_(musician)C. JacksonCliff KacksonClifton Luther "Cliff" JacksonJacksonTommy Ladnier And His OrchestraSidney Bechet And His New Orleans FeetwarmersSidney Bechet & His All Star BandBunk Johnson - Sidney Bechet And Their OrchestraRed Norvo All-StarsLadnier-Mezzrow All-StarsBunny Berigan And His Blue BoysThe Elmer Snowden QuartetPee Wee Russell RhythmakersCliff Jackson's Washboard WanderersCliff Jackson & His Crazy KatsChoo Choo JazzersThe Sepia SerenadersSidney Bechet's Jazz BandPee Wee Russell Jazz EnsembleCliff Jackson's QuartetHot And HeavyCliff Jackson's Black & White Stompers + +348887John Thomas (3)American trumpet, trombone and flugelhorn player; born 1950 in Fort Worth, Texas. Started his career in 1973, based in Los Angeles. Son of [a=Don Thomas (4)] + +[b]NOTE![/b] For the Louis Armstrong-era jazz trombonist, please use [a=John Thomas (20)]. +Needs Votehttps://music.usc.edu/john-thomas/http://calicchio.com/playerDetails.cfm?pid=20http://vanabigband.com/cmt-management-team/john-thomas/John L. ThomasДж. ТомасCount Basie OrchestraWoody Herman And His OrchestraThe North Texas State University Lab BandLouie Bellson Big BandThe Ashley Alexander Big BandPat Longo And His Super Big BandThe Gary Urwin Jazz OrchestraWoody Herman And The Thundering HerdMerle Koch And Michele's Silver Stope Jazz BandThe Matt Catingub Big BandUniversity Of North Texas All-Star Alumni BandPat Longo And His Hollywood Jazz Band1:00 O'Clock Lab BandThe Los Angeles City College Jazz Band + +348955Joe MarsalaJoseph Francis MarsalaAmerican jazz clarinetist, saxophonist and songwriter. +Born 4 January 1907, Chicago, Illinois, USA. +Died 4 March 1978, Santa Barbara, California, USA. +Older brother of trumpeter [a564412]. +Married to jazz harpist [a=Adele Girard] (1937-1978, his death).Needs Votehttps://en.wikipedia.org/wiki/Joe_Marsalahttps://www.allmusic.com/artist/joe-marsala-mn0000143111/biographyhttps://www.imdb.com/name/nm8158478/https://www.facebook.com/AdeleGirardAndJoeMarsala/https://adp.library.ucsb.edu/names/103366I. MarsalaJ. MarsalaJ. MarsaraJ. MarselaJoe MarsallaJoe MarsolaJoe MasalaJoseph MarsalaMarsalaMarsellaMarty MarsalaMarty MasalaWingy Manone & His OrchestraEddie Condon And His OrchestraWild Bill Davison And His CommodoresEddie Condon And His BandGeorge Wettling's Chicago Rhythm KingsLeonard Feather All StarsJoe Marsala And His Delta SixJoe Marsala And His ChicagoansAll Star Jam BandJoe Marsala & His Delta FourVic Lewis And His American JazzmenJoe Marsala BandJoe Marsala SextetPutney Dandridge And His OrchestraJoe Marsala SeptetDelta FourJoe Marsala And His OrchestraJoe Marsala's All TimersThe Six Blue ChipsJoe Marsala And His Chosen SevenJam Session At CommodoreJoe Marsala And His Dixieland Band + +349247Christophe GuiotFrench violinist.Needs Votehttps://www.imdb.com/name/nm0347459/C. D. GuillotC. GuiotCh. GuiotChristophe GuillotChristophe GuyotGuiotOrchestre De ParisOrchestre National De L'Opéra De ParisLes Archets De ParisParis Symphonic OrchestraRaymond Guiot Et Sa Formation Symphonique + +349256George Davis (2)George Richard Davis Jr.George Davis (born on March 30th, 1938 in New Orleans, Louisiana, USA) was an American musician (guitar, bass, saxophone, oboe) and songwriter. During his career George Davis worked with [a=Allen Toussaint], [a=Aaron Neville], Larry Williams, [a=Sarah Vaughan], [a=Duke Ellington], Buddy Rich, Wardell Quezergue, [a=Earl King] and Ernie K-Doe, among others. He also (co-)wrote a lot of songs, including "Tell It Like It Is", "Bitchin'" and "In A Funky Way". He often collaborated with [a=Lee Diamond]. He died on September 10th, 2008 in Liburn, Georgia, USA. + +Do NOT confuse with guitar player [a=George Davis (19)] from Iowa active in New Jersey or songwriter [a=George Davis (21)] from Chicago, IL.Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=82522&subid=0https://birdsalwaysflew.blogspot.com/2019/02/a-tribute-to-george-davis.htmlhttp://www.soulwalking.co.uk/George%20Davis.htmlhttps://www.imdb.com/name/nm3460718/D. GeorgeDavidDaviesDavisG DavisG. DavidG. DaviesG. DavisG. Davis Jr.G. Davis, Jr.G. R. DavisG. R. Davis Jnr.G. R. Davis Jr.G. R. Davis, Jr.G.DavisG.Davis Jr.G.R. DavisG.R. Davis JrG.R. Davis jr.George DavidGeorge DavidGeorge Davis Jr.George Davis, Jr.George R Davis JrGeorge R. Davies, Jr.George R. Davis JrGeorge R. Davis Jr.George R. Davis, Jr.George Richard Davis Jr.L. DavisWilliam DavisLee Konitz Big BandDizzy Gillespie QuintetClark Terry And His Jolly GiantsThe George Davis One-Man BandGeorge & Lee + +349306Peter AllenPeter Richard Woolnough Australian singer, songwriter and entertainer who moved to the USA. Married to [a106449] (1967-1974). +Born February 10, 1944 in Tenterfield, New South Wales, Australia +Died June 18, 1992 in San Diego, California, USA (from AIDS-related complications)Needs Votehttps://www.imdb.com/name/nm0020899/https://www.onamrecords.com/artists/peter-allenhttps://en.wikipedia.org/wiki/Peter_Allen_(musician)https://www.newyorker.com/magazine/2003/10/27/down-underdoghttps://www.smh.com.au/entertainment/tv-and-radio/peter-allens-story-is-of-a-boy-from-the-bush-who-found-international-acclaim-20150902-gjcpzm.htmlhttps://www.westcoast.dk/artists/a/peter-allen/AllanAllemAllenAllen Peter WoolnoughP AllenP. AllanP. AllenP. Allen IrvingP. W. AllenP.AllenP.W AllenP.W. AllenP.W.AllenPeter AllanPeter Allen OrchestraPeter W AllenPeter W. AllenT. AllenTeter AllenW Allen Peterピーター・アレンChris & Peter Allen + +349484Eddie ShuEdward ShulmanAmerican swing jazz saxophonist, born August 18, 1918 in New York City, died July 4, 1986, Tampa, Florida. +Shu learned violin and guitar as a child before picking up saxophone as a teenager. His first professional gigs were as a ventriloquist/harmonica player. He played in bands while serving in the Army from 1942 to 1945, and following his discharge he played with Tadd Dameron (1947), George Shearing, Johnny Bothwell, Buddy Rich, Les Elgart, Lionel Hampton (1949-1950), Charlie Barnet, Chubby Jackson, and Gene Krupa (1954-1958). +In the 1960s Shu moved to Florida, playing locally as well as with Louis Armstrong's All-Stars, Hampton, and Krupa again. Though he only did a few sessions as a leader (1949, 1954, 1955), he recorded frequently with Krupa. +Needs Votehttp://en.wikipedia.org/wiki/Eddie_ShuE. ShuEd ShuEddie ChuEddie Shu's QuartetEddie ShueEddie ShureeShuGene Krupa And His OrchestraLouis Armstrong And His All-StarsGene Krupa TrioGene Krupa All-StarsThe Gene Krupa QuartetMel Powell & His All-StarsEddie Shu Quintet + +349518Glen Gray And His OrchestraCorrectGlen Gray & His OrchestraGlen Gray + +349519Tony Russo (2)Big band Jazz vocalist & Trumpet PlayerNeeds VoteT. RussoTonny RussoTony RussoGene Krupa And His Orchestra + +349559George DevensAmerican drummer, percussionist and vibraphonist. +Born 24 August 1931 in the Bronx, New York, USA. +Died on Nov. 16, 2021 (age of 90) in Little River, South Carolina, USA. +He toured with George Shearing prior to a long recording career, and received the NARAS Award for Tuned Mallet in 1982.Needs Votehttps://www.local802afm.org/allegro/articles/george-devens/https://www.legacy.com/us/obituaries/nytimes/name/george-devens-obituary?id=31673964DevensDevens George R.Devens, GG. DevansG. DevensGeorge BevonsGeorge DavisGeorge DeavinsGeorge DevansGeorge DevenGeorge DeveusGeorge DevinsGeorge DevonGeorge DevonsGeorge DevounsGeorge R. DevensGoerge DevinsThe BrothersDizzy Gillespie And His OrchestraThe Jerry Ross SymposiumLew Davies And His OrchestraThe RagtimersNinapinta And His Bongos And CongasJo Basile, Accordion And OrchestraThe BrassmatesHarris-Leigh Plus Three + +349560Brooks TillotsonChester Brooks TillotsonAmerican French Horn player from New York. + +Born: September 13, 1930 in Fort Edward, New York +Died: November 2, 2018 in Glens Falls, New York Needs Votehttps://www.local802afm.org/allegro/articles/requiem-183/Brook TillotsonBrooks TilldtsonBrooks TilletsonBrooks TillitsonBrooks TilloltsonBrooks TillotsinNew York PhilharmonicMichel Legrand & Co.The New York Horn Trio + +349574Harry KatzmanViolinistNeeds VoteH. KatzmanHarry KaltzmanKatzmanS/Sgt Harry KatzmanSgt. Harry KatzmanHugo Montenegro And His OrchestraNeal Hefti's OrchestraGlenn Miller And The Army Air Force BandAl Cohn And His OrchestraThe Army Air Force Band + +349577Warren CovingtonWarren Lewis Covington American trombonist, singer and band leader, born August 7, 1921 in Philadelphia, died August 24th, 1999 in Safety Harbour, Florida.Needs Votehttps://en.wikipedia.org/wiki/Warren_Covingtonhttps://adp.library.ucsb.edu/names/202173CovingtonMr. CovingtonW. CovingtonTommy Dorsey And His OrchestraGene Krupa And His OrchestraLes Brown And His OrchestraThe CommandersHorace Heidt And His Musical KnightsWarren Covington & EnsembleWarren Covington And His OrchestraWarren Covington And His Jazz Band + +349582Joe TemperleyJoseph Temperley.Scottish jazz tenor and baritone saxophonist and bass clarinetist, born September 20, 1929 in Fife, Scotland, died May 12, 2016. +Temperley first learned alto saxophone, but recorded on tenor sax with [a=Harry Parry] 1949, [a=Jack Parnell] 1953 and [a=Tony Crombie] 1954, and on baritone with [a=Tommy Whittle] 1955-1956. Became more known as member of [a=Humphrey Lyttelton]'s band 1958-1965. In 1965 he settled in New York mainly playing with big bands.Needs VoteJim TemperleJoe TemparleyJoe TemperlyJohn TemperleyJoseph TemperleyJoseph TemperlyWoody Herman And His OrchestraThe Duke Ellington OrchestraThe Ernie Wilkins OrchestraThe Nagel Heyer AllstarsWoody Herman And The Swingin' HerdKenny Graham's Afro-CubistsJazz At Lincoln CenterGerry Mulligan And His OrchestraThad Jones & Mel LewisThe Benny Carter All-Star Sax EnsembleBuck Clayton And His Swing BandDavid Matthews & The Super Latin Jazz Orchestra + +349586Erin DickinsSinger.Needs Votehttps://www.erindickinsmusic.com/http://erindickins.blogspot.comErinErin DickensErn DickensThe Manhattan TransferErin Dickins & The Relief Band + +349796Sue AllenUS West Coast pop vocalist. Also member of a vocal group in the TIME-LIFE series "The Swing Era" +Born on 18th Oct. 1922 - Died on 29th Aug. 2016. + +For the rhythm & blues vocalist, see [a=Sue Allen (2)]Needs VoteSue Brown AllenTuxedo JunctionRay Conniff And The SingersRandy Van Horne SingersThe CheersThe Mel-TonesThe Pied PipersThe California DreamersThe NotablesThe Girl FriendsPaul Johnson VoicesThe Bill Bates SingersMickey And Bertha KatzThe Allen Sisters (2) + +349797The Mel-TonesAmerican modern vocal group, they appeared in several motion pictures and numerous radio shows, later the name was expanded to "Mel Tormé and the Mel-Tones" in recognition of [a152707]'s dual role as the arranger and solo vocalist. The group disbanded in 1947, when Mel Tormé started his solo career. + +Members were [a349798], Diz Disruhd, Betty Beveridge, and [a349803], plus Tormé who doubled as arranger. Disruhd was replaced by Les Baxter in 1944. +Correcthttp://www.singers.com/jazz/vintage/meltones.htmlHis Mel-TonesMel TonesMel Torme And His Mel-TonesMel Torme And The Mel-TonesMel Torme And The MeltonesMel Tormé And His Mel-TonesMel Tormé And The Mel TonesMel Tormé And The Mel-TonesMel Tormé His Mel-TonesMel-TonesMeltonesThe Mel TonesThe Mel-tonesThe Meltoneshis Mel-TonesLes BaxterMel TorméSue AllenBernie ParkeGinny O'ConnorBetty BeveridgePaul Fredricks + +349798Bernie ParkeVocalist.Needs VoteBennie ParksBernie ParkBernie ParksThe Mel-TonesThe CheerleadersThe Bill Bates SingersLes Baxter Trio + +349799Jimmy NottinghamJames Edward Nottigham Jr.American Jazz trumpet player. +Born : December 15, 1925 in New York City, New York. +Died : November 16, 1978 in New York City, New York. + +Worked with : Stan Kenton, Ella Fitzgerald, Billie Holiday, Nina Simone, Charles Mingus, Mel Lewis, Lucky Millinder, Ray Charles, Big Joe Turner, Chris Connor, Dizzy Gillespie, Wes Montgomery, Chuck Willis, Buddy Rich and many others. + +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Nottinghamhttps://adp.library.ucsb.edu/names/334194I. NottinghamJ. NottinghamJames NottinghamJim NottinghamJimmie NottinghamJimmy NothinghamJimmy NotinghamNottinghamジェイムス・ノッティンガムジミー・ノッティンガムQuincy Jones And His OrchestraCount Basie OrchestraLionel Hampton And His OrchestraBuddy Rich And His OrchestraDizzy Gillespie Big BandQuincy Jones' All Star Big BandArtie Shaw And His OrchestraSy Oliver And His OrchestraTony Scott And His OrchestraLionel Hampton And His All-Star Alumni Big BandOliver Nelson And His OrchestraBuster Harding's OrchestraBilly Byers And His OrchestraTony Scott SeptetHenry Jerome And His OrchestraSteve Allen And His All-StarsThe Quincy Jones Big BandThe Leiber-Stoller Big BandVic Schoen And His All Star BandAll Star Big BandThad Jones & Mel LewisEdgar Sampson And His OrchestraRoy Milton's SextetJim Chapin OctetJimmy Dale Band + +349801The Oscar Peterson QuartetCorrectDas Oscar Peterson QuartettKvartet Oscara PetersonaOscar Petersen QuartetOscar Peterson & His QuartetOscar Peterson & Jazz PhilharmonicOscar Peterson QuartetThe Oscar Peterson FourBuddy RichJoe PassRay BrownBarney KesselOscar PetersonHerb EllisAlvin StollerNiels-Henning Ørsted PedersenMartin DrewLouis BellsonJohn Poole (3) + +349803Ginny O'ConnorVirginia (O'Connor) ManciniAmerican vocalist. Married to [a10529] (1947-1994, his death). +Born July 25, 1924 in Los Angeles, California, USA. +Died October 25, 2021 in Malibu, California, USA.Needs Votehttps://www.imdb.com/name/nm1464766/https://schoolofmusic.ucla.edu/in-memoriam-virginia-ginny-mancini-1924-2021/https://www.jazzwax.com/2021/10/ginny-mancini-1924-2021.htmlhttps://www.findagrave.com/memorial/233453067/ginny-mancinihttps://en.wikipedia.org/wiki/Ginny_ManciniCernie O'ConnorGiny O'ConnorGinny ManciniThe Mel-TonesThe Mello-Larks + +349929Joël GrareFrench percussionistNeeds Votehttp://joelgrare.wordpress.com/biography/GrareJoel GrareVenice Baroque OrchestraLe Poème Harmonique + +349974Julia GirdwoodBritish classical oboe & english horn player.Needs VoteJulia GridwoodOrchestra Of The Royal Opera House, Covent GardenConsort Of London + +350055Myung Hi KimSouth Korea born and New York based classical violinist. In 1977, she was the first musician of Asian descent to join the New York Philharmonic. She retired in 2010.Needs VoteKim, Myung-HiMyung-Hi KimNew York Philharmonic + +350089Bud Freeman's Summa Cum Laude OrchestraJazz octet formed in 1939 by [a=Bud Freeman]; lasted until 1940. The name was revived in 1958 for [m=393715], using some of the same personnel as the original group..Needs VoteBud Freeman & His Summa Cum Laude OrchestraBud Freeman & The Summa Cum Laude Orch.Bud Freeman & The Summa Cum Laude OrchestraBud Freeman And His Summa Cum Laude Orch.Bud Freeman And His Summa Cum Laude OrchestraBud Freeman And His Summa Cum Laude Orchestra 1939Bud Freeman And His Summa Cum Laude-OrchestraBud Freeman And The Summa Cum Laude Orch.Bud Freeman And The Summa Cum Laude OrchestraBud Freeman Summa Cum LaudeBud Freeman With His Summa Cum Laude OrchestraBud Freeman and His Summa Cum Laude OrchestraHis Summa Cum Laude OrchestraSumma Cum Laude OrchestraPee Wee RussellLeonard GaskinBud FreemanJack TeagardenBilly ButterfieldGeorge WettlingPete PetersonMax KaminskyEddie CondonPeanuts HuckoBrad GowansAl SidellDanny AlvinClyde NewcombDave BowmanGene SchroederMorey Feld + +350238Peter BaranPeter BaranSlovak cellist.Needs VoteP. BaranPrúdyCapella Istropolitana + +350337Harry DiVitoAmerican jazz trombonist. He played with Tommy Reynolds, Isham Jones, Les Brown, Harry James, Benny Goodman, Charlie Spivak, Stan Kenton, Sam Donahue, Gene Krupa, Phil Napoleon. +Born : 1924. +Died : February 12, 2006. +Needs VoteHarry DaVitoHarry De VitoHarry DeVitoHarry Di VitoHarry DiVitoHarry DivitoHugo Montenegro And His OrchestraStan Kenton And His OrchestraSam Donahue And His OrchestraJerry Gray And His OrchestraAll Star Alumni OrchestraDoc Severinsen And His OrchestraThe Empire City SixBobby Byrne And His OrchestraGeorge Williams And His OrchestraUrbie Green And Twenty Of The "World's Greatest"The Fisher Fidelity Standard Jazz BandDoctor Billy Dodd And His Swing All Stars + +350615Sonny Stitt QuartetCorrectSonny Stitt And His QuartetThe Sonny Stitt QuartetArt BlakeyBud PowellSonny StittJunior ManceMax RoachKenny DrewTommy PotterLeroy VinnegarRay BrownJo JonesCurly RussellGeorge MorrowBobby TimmonsMel LewisDuke JordanEugene WrightEarl MayLou LevyJimmy Jones (3)Teddy StewartLenny McBrowneEdgar WillisKenny DennisClarence AndersonCharles BatemanWes LandersAmos Trice + +350645Maxwell DavisThomas Maxwell DavisUS tenor saxophonist, arranger and bandleader, best known for his work with independent West Coast R&B label Aladdin Records and related labels (often associated with [a=Joe Josea]). Some of his credits are shared with his wife [a=Adelia Davis]. +b. January 14, 1916 in Independence, Kansas - d. September 18, 1970 in Los Angeles, California +Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=82906&subid=0https://en.wikipedia.org/wiki/Maxwell_Davishttps://adp.library.ucsb.edu/names/311133DavidDaviesDavisDavis' KingM DavisM. D.M. DaviesM. DavisM.D.M.DavisMax DavisMaxvel/DavisMaxwellMaxwell DaviesMaxwell Davis & His Rock 'n' Roll OrchestraMaxwell Davis SwingtetT. "Max" DavisT. DavisT. M. DaviesThomas DavisThomas M. DavisThomas MaxwellThomas Maxwell DavisThomas davisThos. M. DavisHelen Humes And Her All-StarsThe Maxwell Davis OrchestraCharles Mingus SextetMaxwell Davis And His All-StarsMonroe Tucker And His OrchestraRed Callender SextetMaxwell Davis And The Harlem BrassThe Maxwell Davis QuintetMaxwell Davis TrioMaxwell Davis & His BandMaxwell Davis And His Trio + +351666Willy MattesAustrian composer, arranger and conductor, born 4 January 1916 in Vienna, Austria and died 30 July 2002 in Salzburg, Austria. Father of actress [a=Eva Mattes].Needs Votehttp://de.wikipedia.org/wiki/Willy_Matteshttps://www.imdb.com/name/nm0559844/?ref_=nv_sr_srsg_0_tt_4_nm_4_in_0_q_Willy%2520MattesMattesMatthesT. MattesV. MatteoW. MattesW. MatthesW.MattesWilli MattesWilly MaltesWilly Mattes Und Seine TangogeigenWilly MatthesWilly MattosВ. МаттеоCharles WildmanOrchester Willy MattesWilly Mattes Und Sein Film-OrchesterCharles Wildmans OrkesterCharles Wildmans EnsembleWilly Mattes U.S. Solisten + +351754James Williams (2)James Edward WilliamsAmerican jazz pianist, born 8 March 1951 in Memphis, Tennessee, USA and died 20 July 2004 in Manhattan, New York, USA. + +For the pre-war blues pianist, please use [a3714544].Needs Votehttp://www.allaboutjazz.com/php/musician.php?id=11390http://en.wikipedia.org/wiki/James_Williams_%28musician%29https://jameswilliamspiano.bandcamp.com/B.J. WilliamsJ. WilliamsJames Edward WilliamsJames WiliamsJames WilliamsJimmi WilliamsJimmy WilliamsWilliamsジェームス・ウィリアムスジミー・ウィリアムスArt Blakey & The Jazz MessengersJames Williams SextetArt Farmer QuintetThe James WIlliams TrioLiberation Music OrchestraHoward Johnson & GravityEmily Remler QuartetThe Tal Farlow QuartetThe James Williams QuartetGreg Abate QuartetBilly Pierce QuartetPeter Leitch QuintetPeter Leitch SextetJavon Jackson QuartetThe Contemporary Piano EnsembleThe James Williams Magical TrioThe James Williams All-StarsJames Williams & ICUJon Hazilla TrioBob Graf QuartetRandall Conners QuartetNew York Jazz Ensemble (2) + +351876Tom VuoriCredit for recording and mixing (SBBY CD 1) +Singer in 60's Finrock band the Downwalkers. Later played slide etc guitar and worked as an engineer alongside eg. Jimi SuménNeeds VoteT. VuoriTom "Hanat kaakkoon" VuoriTom ("Mountain") VuoriTom Vuori "Professor"Tom WuoriVuoren TomppaVuoriThe Downwalkers + +352156Joe LaBarberaJoseph James LaBarberaAmerican jazz drummer (born February 22, 1948 in Mt. Morris, New York, USA). The drummer inserted a space into his surname as it caused some people problems pronouncing it, as explained in a 2024 interview. + +Needs Votehttps://en.wikipedia.org/wiki/Joe_LaBarberahttps://www.drummerworld.com/drummers/Joe_LaBarbera.htmlJ. LaBarberaJoe De BarberaJoe La BarbaraJoe La BarberaJoe La BarbraJoe LaBarbaraJoe LabarbaraJoe LabarberaLa BarberaLaBarberaJan Lundgren TrioWoody Herman And His OrchestraBill Mays TrioThe Bill Evans TrioChuck Mangione QuartetThe Ralph Sharon TrioAnthony Ortega TrioBaseline (2)The Paul Smith TrioLennie Niehaus QuintetAlan Broadbent TrioThe Kenny Wheeler And Sonny Greenwich QuintetBobby Shew QuintetRon Escheté TrioWoody Herman And The Thundering HerdBill Cunliffe TrioEnrico Pieranunzi QuartetThe Lanny Morgan QuartetJohn La Barbera Big BandThe Trotter TrioThe Bill Cunliffe SextetJoe Locke QuartetKim Richmond / Clay Jenkins EnsembleAndy Martin-Jan Lundgren QuartetThe Rafael Jerjen ConceptPete Jolly - Jan Lundgren QuartetThe H2 Big BandMartin Wind QuartetThe Ray Reed QuintetThe Tom Warrington TrioThe Joe La Barbera QuintetAccidental TouristsThe Bud Shank SextetJohn Lindberg Raptor TrioThe Jim DeJulio QuintetMark Masters EnsemblePhil DeGreg TrioDon Friedman Salzau TrioThe Frank Collett TrioThe Clay Jenkins QuartetThe David Finck QuartetJMOGPat LaBarbera / Kirk MacDonald QuintetPat LaBarbera QuintetSpirits (17)Jake Fryer/Bud Shank QuintetJoe & Pat LaBarbera QuartetEugene Maslov TrioThe Mike Greensill Quintet + +352478Sascha ArmbrusterGerman saxophonist, born 1974 in Lahr, Germany.Needs Votehttp://www.saschaarmbruster.com/ArmbrusterSasha ArmbrusterEnsemble ModernPierre Favre EnsembleARTE QuartetDrescher-Okabe-Armbruster TrioKaspar Ewalds Exorbitantes Kabinett + +353270Reunald JonesReunald Jones Sr. .American jazz trumpeter. +Born : December 22, 1910 in Indianapolis, Indiana. +Died : February 26, 1989 in Los Angeles, California. + +Reunald played with : Speed Webb (1930), [a370228], [a3370335], [a2725908], [a294491] (1933-'34), [a902270], [a648212], [a1202048], [a307398], [a307171] (1936-'38), [a270238], [a145257] (1946), [a311058], [a311059], [a258007], [a145262] and many others.Needs Votehttp://www.allmusic.com/artist/reunald-jones-mn0000542020http://articles.latimes.com/1989-02-28/news/mn-325_1_reunald-joneshttp://en.wikipedia.org/wiki/Reunald_Jones https://www.radioswissjazz.ch/en/music-database/musician/46461ae848fde4004f03a9d1aea3a9887a27c/biographyhttps://adp.library.ucsb.edu/names/324035JonesJones RenouldR. JonesRenald JonesRenaud JonesRenauld JonesRenauld Jones Jr.Reunald Jones Sr.Reunald Jones, Jr.Reunald Jones, Sr.Reunaldo JonesRoland JonesRomuald JonesRonald JonesCount Basie OrchestraWoody Herman And His OrchestraErskine Hawkins And His OrchestraChick Webb And His OrchestraMezz Mezzrow And His OrchestraThe Ernie Wilkins OrchestraThe Jones BoysWoody Herman And The Fourth HerdWoody Herman's Anglo-American Herd + +353290Frank De Vol And His OrchestraCorrectA Orquestra De Frank De VolDe VolDe Vol & His OrchestraF. De Vol And His OrchestraF. DeVol Or.F. DeVol Orch.Frabk De Vol E La Sua OrchestraFranck De Vol Et Son OrchestreFranck De Vol Y Su OrquestaFranck Devol And His OrchestraFranck Devol Et Son OrchestreFrank De VolFrank De Vol & His OrchFrank De Vol & His Orch.Frank De Vol & His OrchestraFrank De Vol & His StringsFrank De Vol & OrchestraFrank De Vol & his Orch.Frank De Vol And His Orch.Frank De Vol And OrchestraFrank De Vol E La Sua Orch.Frank De Vol E La Sua OrchestraFrank De Vol Et Son OrchestreFrank De Vol Og Hans Ork.Frank De Vol Og Hans OrkesterFrank De Vol Or.Frank De Vol OrchFrank De Vol Orch.Frank De Vol OrchestraFrank De Vol Sa Svojim OrkestromFrank De Vol U. S. OrchesterFrank De Vol Und Sein OrchesterFrank De Vol Y Orq.Frank De Vol Y OrquestaFrank De Vol Y Su Orq.Frank De Vol Y Su OrquestaFrank De Vol u. s. OrchesterFrank De Vol y Su Orq.Frank De Vol y Su OrquestaFrank De Vol y Sua OrquestraFrank De Vol's OrchestraFrank De Vol's OrkesterFrank De Vols OrkesterFrank De Vol´s OrchestraFrank DeVolFrank DeVol And His OrchestraFrank DeVol E La Sua OrchestraFrank DeVol & His Orch.Frank DeVol & His OrchestraFrank DeVol 's OrchestraFrank DeVol And His Music Of The CenturyFrank DeVol And His Orch.Frank DeVol And His OrchestraFrank DeVol And His Rhythm BustersFrank DeVol And OrchestraFrank DeVol Orch.Frank DeVol OrchestraFrank DeVol Y Su OrquestaFrank DeVol's Orch.Frank DeVol's OrchestraFrank DeVols Ork.Frank DevolFrank Devol & His OrchestraFrank Devol & OrchestraFrank Devol And His OrchestraFrank Devol And OrchestraFrank Devol E La Sua Orch.Frank Devol Et Son Orch.Frank Devol Et Son OrchestreFrank Devol OrchestraFrank Devol's Orch.Frank Devol's OrchestraFrank Du Val & OrchestraFrank de Vol And His OrchestraFrank de Vol Et Son OrchestreFrank de Vol OrchestraFrank de Vol u. s. OrchesterFrank de Vol's Orch.Frank de Vol's OrchestraFrank deVol & His OrchestraFrank deVol And His OrchestraFrank deVol Und Sein OrchesterOrchester Frank De VolOrchester Frank DeVolOrchester Frank de VolOrchestra Conducted By DeVolOrchestra Conducted By Frank De VolOrchestra Conducted By Frank DeVolOrchestra Conducted By Frank DevolOrchestra Frank De VolOrchestra Frank DeVolOrchestra Under The Direction Of Frank De VolOrchestralOrkestrom Franka DevolaThe Frank De Vol OrchestraThe Frank DeVol OrchestraThe Frank Devol OrchestraThe Orchestras Of Frank De VolVocal Group Frank De Vol And His OrchestraVocal Group Frank DeVol's Orch.With Frank De Vol And His OrchestraОркестр П/У Ф. Де ВолаОркестр П/У Ф. ДеВолаFrank De VolRon Perry (3) + +353291Louis BellsonLuigi Paulino Alfredo Francesco Antonio BalassoniItalian-American jazz drummer, composer, arranger, bandleader, and jazz educator +Born 6 July 1924 in Rock Falls, Illinois, died 14 February 2009 in Los Angeles, California +Married to singer [a=Pearl Bailey] (1952 -1990, her death) +Married to producer [a=Francine Bellson] (1992-2009, his death) +Older brother of drummer [a7769808]. Father of jazz singer [a=Dee Dee Bellson] + +Credited with pioneering the use of two bass drums, a set-up he already used at the age of 15. He received the prestigious Jazz Masters Award from the US National Endowment of the Arts in 1994 and was made a “Living Legend” by the Kennedy Centre in 2007.Needs Votehttps://louiebellson.info/https://www.youtube.com/channel/UCKeIdRAC8yw5mw7T8A3kmnwhttps://en.wikipedia.org/wiki/Louie_Bellsonhttps://www.imdb.com/name/nm0069245/https://www.drummerworld.com/drummers/Louie_Bellson.htmlhttps://www.britannica.com/biography/Louie-Bellsonhttps://repertoire.bmi.com/Search/Search?Main_Search_Text=Louis%20Bellson&Main_Search=Writer%2FComposer&Search_Type=all&View_Count=0&Page_Number=0BellisonBelllsonBellsonBelsonBlue BellsL. BellsonL. BelsonL.BellsonLouLou BellsonLoui BellsonLouie BellisonLouie BellsaonLouie BellsonLouie Bellson b. Luigi Paulino Alfredo Francesco Antonio BalassoniLouie Bellson, B. Luigi Paulino Alfredo Antonio BellsonLouie BelolsonLouie BelsonLouis B. BellsonLouis BellisonLouis Bellson His Drums And OrchestraLouis BelsonLouis P. BellisonLouis P. BellsonLouis, BelsonLouise BellsonЛ. БеллсонЛ. БеллсооЛуи БеллсонЛуис БеллсонCount Basie OrchestraHarry James And His OrchestraWoody Herman And His OrchestraDuke Ellington And His OrchestraRay Brown TrioThe Oscar Peterson QuartetBenny Goodman And His OrchestraZoot Sims QuartetBoston Pops OrchestraThe Duke Ellington OrchestraThe Count Basie TrioDuke Ellington QuartetJohnny Hodges And His OrchestraHarry James & His Music MakersLouie Bellson OrchestraSam Most QuartetThe Oscar Peterson Big 6The Louie Bellson QuintetKansas City 3Louie Bellson Big BandCount Basie 6Woody Herman And His Third HerdLouis Bellson & His BandThe Louie Bellson Drum ExplosionLouie Bellson And His Jazz OrchestraLouie Bellson & His All-Star OrchestraLouis Bellson And His OrchestraThe Louie Bellson QuartetThe Coronets (3)Louie Bellson's Magic 7Louis Bellson's Just Jazz All StarsThe Louis Bellson OctetThe Giants Of Jazz (3)Milt Hinton TrioJazz Giants 1958The Jazz Trio (3)Louie Bellson's Big Band Explosion! + +353520Clarence BabcockCredited as singer, in the early jazz years. +Clarence G Babcock was born on August 7, 1913. +He died on August 10, 1991 at age 78.Needs VoteLouis Armstrong & His Hot Five + +353521Bud ScottArthur Scott, Jr.American jazz banjoist, guitarist and singer, born January 11, 1890 in New Orleans, Louisiana, died July 2, 1949 in Los Angeles, California. +Scott left New Orleans in 1913 and played on the southern vaudeville circuit, then in 1915 went to New York. During the 1920s he played intermittently in Chicago with [a309984], and on the West Coast with [a307207]. After leaving Oliver in 1926, Scott worked in Chicago with [a1409386], [a326810] and others. In 1927 he recorded with [a307425] and [a309976]. In 1929 Scott moved to California where he played with [a500437] in the early 1930s and led own trio several years. Again a member of Ory's band 1944-1948. +He also played with[a1837931], [a1517078], [a326801], Bob Young, and Will Marion Cook.Needs Votehttp://en.wikipedia.org/wiki/Bud_Scotthttps://syncopatedtimes.com/arthur-bud-scott-1890-1949/https://www.allmusic.com/artist/bud-scott-mn0000640241/biographyhttps://adp.library.ucsb.edu/names/109915"Bud" ScottA. "Bud" ScottA. 'Bud' ScottA. ScottArthur "Bud" ScottArthur "Bud" W. ScottArthur 'Bud' ScottArthur ScottArthur “Bud” ScottB. ScottBSBudd ScottBuddy ScottScottKing Oliver & His Dixie SyncopatorsJelly Roll Morton's Red Hot PeppersJimmie Noone's Apex Club OrchestraKing Oliver's Jazz BandLouis Armstrong And His Dixieland SevenKid Ory And His Creole Jazz BandZutty Singleton's Creole BandJohnny Dodds' Black Bottom StompersLouis Armstrong And His Hot SixJimmy Blythe's OwlsJohnny Dodds TrioHightower's Night Hawks + +353591Chantal GoyaChantal De GuerreFrench singer and actress born June 10, 1942 in Saigon (French Indochina). +She started her career during the 60's as a yé-yé girl, singing catchy pop songs. She also enjoyed a career as a French New Wave actress; she had a starring role as Madeleine in the [a=Jean-Luc Godard] film "[b]Masculin, Féminin[/b]" (1966) and in Jean-Daniel Pollet's "[b]L'Amour C'Est Gai, L'Amour C'Est Triste[/b]". +Since 1975, she has become mostly known as a singer for children. Together with her husband, songwriter and composer [a=Jean-Jacques Debout], she does shows with children. The main themes are dreams and traveling. Her usual character is Marie-Rose, a mix between a maid and an older sister (reminiscent of Julie Andrews in both The Sound of Music and Mary Poppins).Needs Votehttp://www.chantalgoya.net/C. GoyaCh.GoyaGoyaシャンタル・ゴヤLes Grosses Têtes + +353748Billy WallaceJazz pianist +Born 20 August 1929, died 7 December 2017 + +Billy Wallace was a self-taught genius of the modern piano lineage. Starting very young, he cut his teeth in Midwest night clubs and seedy strip joints to bring his raw talent to a sharpened edge. In the 1950's, based out of Chicago, he began touring and playing with some of the most well-known musicians of the day(Clifford Brown, Max Roach, Bill Lee, etc.). He’s credited on Max Roach’s popular album “Jazz in 3/4 Time” and helped back up such talents as Illinois Jacquet, Charlie Parker, B.B. King and Gladys Knight. In the early 70s, Wallace moved to Denver, Colorado and became well-known in some of the city’s best hotels and nightclubs. He moved to Seattle in the early 1990's and there established himself as a premier pianist on the thriving local jazz scene. Billy moved back to Denver in 2003 and there lived out the rest of his days as a keystone of the city's legendary music history. His knowledge of over 10,000 songs at any given point was a standard he held himself to always. His inspired, fiery solos often wowed audiences with dual solo lines played simultaneously with both hands. Yet to the audience at large he remains an unsung hero of modern American music. + +For country and rockabilly musician, please use [a=Billy Wallace (3)].Needs VoteB. WallaceBill WallaceAl Smith OrchestraMax Roach QuintetThe Billy Wallace TrioThe Floyd Standifer Quartet + +353751Marshall BrownMarshall Richard BrownJazz trombonist and trumpeter, born December 21, 1920 in Framingham, MA, died December 13, 1983 in New York.Needs Votehttps://en.wikipedia.org/wiki/Marshall_Brown_(musician)https://adp.library.ucsb.edu/names/201190BrownBrown Marshall RM. BrownMarshal BrownMarshall BraunMarshall R. BrownMarshall Richard BrownN. BrownPee Wee Russell QuartetLee Konitz QuintetThe 360 Degree Music ExperienceThe International Youth BandLouis Armstrong Newport International Jazz BandThe Ruby Braff-Marshall Brown Sextet + +353754Russell GeorgeBass player and violinistNeeds VoteGeorge RussellR. GeorgeRuss GeorgeRussel GeorgeRussell E GeorgeHot ButterWoody Herman And His OrchestraPee Wee Russell QuartetJoe Newman QuartetWoody Herman And The Thundering HerdBill Watrous QuartetThe Roger Kellaway TrioThe Fisher Fidelity Standard Rock Band + +354194Urszula DudziakUrszula Bogumiła Dudziak-UrbaniakBorn October 22, 1943 in [url=https://pl.wikipedia.org/wiki/Straconka_(Bielsko-Biała)]Straconka[/url]. Polish jazz vocalist, composer and lyricist. +Ex-wife to [a455886] and mother of [a750888]. + + +Already gifted with a remarkable five-octave vocal range, Dudziak employs electronic devices to extend still further the possibilities of her voice. She has frequently worked with leading contemporary musicians, including Archie Shepp and Lester Bowie, and was a member of the Vocal Summit group, with Jay Clayton, Jeanne Lee, Bobby McFerrin, Norma Winstone, Sting, Michelle Hendricks, and Lauren Newton. + +She was married to [a=Michał Urbaniak].Needs Votehttps://www.facebook.com/dudziakurszulahttps://www.instagram.com/urszuladudziak.officialhttps://www.youtube.com/channel/UCPtnPX6lH3I5REqPb028oVQ/https://en.wikipedia.org/wiki/Urszula_DudziakDudziakU. DudziakU. PadziakU.DudziakUla DudziakUllaUlzula DudziakUnszula DudziakUrsula (Ula) DudziakUrsula DudziakUrsula Dudziak-UrbaniakUrszulaUrszula DudkiakUrszula Dudziak-UrbaniakUrszula DudziakjUrzula Dudziakアーシュラ・ズディアクGil Evans And His OrchestraFunk FactoryVienna Art OrchestraMichal Urbaniak's GroupMichal Urbaniak's FusionMichał Urbaniak ConstellationMilky Way (3)Michael Urbaniak's OrchestraVocal SummitUrbaniak-Coryell Band + +354410"Big Chief" Russell MooreBig Chief Russell MooreAmerican jazz trombonist (born August 13, 1912 in Sacaton, Arizona - died Decenber 15, 1983 in Nyack, New York). + +Moore was a Pima American Indian, and lived in Blue Island, Illinois from age twelve, where he studied trumpet, piano, drums, french horn, and trombone. He moved to Los Angeles in the early 1930s, where he worked freelance with Lionel Hampton (1935), Eddie Barefield, and others. After moving to New Orleans in 1939, he worked with Oscar Celestin, Kid Rena, A.J. Piron, Paul Barbarin, Ernie Fields, Harlan Leonard, and Noble Sissle. + +He played with Louis Armstrong's last big band in 1944-47, and worked freelance on the Dixieland jazz circuit thereafter. In the 1950s he played with Ruby Braff, Pee Wee Russell, Eddie Condon, Wild Bill Davison, Jimmy McPartland, Tony Parenti, Mezz Mezzrow, Sidney Bechet, and Buck Clayton. He returned to play in the Louis Armstrong All-Stars in 1964-65, but fell ill and had to leave the group. After recovering he led a Dixieland group of his own, which toured Canada repeatedly. + +Moore had been working with pianist Eddie Wilcox shortly before Wilcox died in 1968. Moore played with Cozy Cole in 1977 and Keith Smith in 1981. + +He recorded as a leader in 1953 for Vogue and Trutone, and in 1973 for Jazz Art. +Needs Votehttp://www.nytimes.com/1983/12/16/obituaries/russell-big-chief-moore-a-trombonist-in-big-bands.html"Big Chief" Moore"Big Chief" R. Moore"Big Chief" Russel Moore"Big Chief" Russell MoreBig ChiefBig Chief MooreBig Chief Russel MooreBig Chief Russell MooreBig Chief Russell MoreRussel "Big Chief" MooreRussel 'Big Chief' MooreRussel «Big Chief» MooreRussell "Big Chief MooreRussell "Big Chief" MooreRussell Big Chief MooreRussell MooreRussell «Big Chief» MooreLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsBuck Clayton And His OrchestraMezz Mezzrow And His Orchestra"Big Chief" Russell Moore And His OrchestraBuck Clayton's Buckeroos"Big Chief" Russell Moore All Star Jazz BandMezz Mezzrow-Buck Clayton Orchestra + +354411Maceo JeffersonMaceo Buckingham JeffersonAmerican jazz guitarist and banjoist, born c. 1900. +First professional work with pianist Frank Clarke in Norfolk, Virginia. Subsequently moved to New York, played with [a=Wilbur Sweatman] 1923 and others, to Europe with The Plantation Orchestra in 1926. Stayed in Europe to the early 1930s, playing with [a=Arthur Briggs] and others, including a brief spell with [a=Louis Armstrong] in 1934. Returned briefly to USA, back in Europe in 1937, imprisoned by the Nazis and interned at Compiegne Concentration Camp until late 1944 when he returned to the USA. "... nov lives in Bridgeport, Connecticut, where he devotes considerable time to composing." (John Chilton, Who’s who of jazz, 1970, p. 195)Needs Votehttps://en.wikipedia.org/wiki/Maceo_JeffersonJeffersonM. JeffersonMaceo Jefferson And His BoysMilton JeffersonLouis Armstrong And His OrchestraMaceo Jefferson Et Son OrchestreThe Plantation Orchestra + +354413Leslie ThompsonLeslie Anthony Joseph ThompsonJamaican jazz trumpeter + +Born: 17 October 1901 in Kingston, Jamaica +Died: 26 December 1987 in London, England + +Thompson played in the West India Regiment band and played locally in Kingston movie palaces in the 1920s, then moved to London in 1929. In 1930 he began playing with [a=Spike Hughes], where he played trumpet, trombone, and double bass until 1932. In 1934-35 he toured Europe with [a=Louis Armstrong], then formed his own band with the help of [a=Ken 'Snakehips' Johnson], who himself took over control of this band in 1936. [a=Leslie Hutchinson] was one of his sidemen. In 1936-37 Thompson played with [a=Benny Carter], and later in the 1930s with Edmundo Ros. He served in the military during World War II and was active in dance halls and nightclubs after the war, but stopped playing music professionally after 1954. +Needs Votehttp://en.wikipedia.org/wiki/Leslie_Thompson_%28musician%29https://adp.library.ucsb.edu/names/210150L. ThompsonLes ThompsonLouis Armstrong And His OrchestraBenny Carter And His OrchestraSpike Hughes And His OrchestraLouis Armstrong And His Hot Harlem Band + +354416Henry TyreeCredited ad jazz alto saxophoniste.Needs VoteH. TyreeHenri TyreeHenry "Hy" TeeLouis Armstrong And His OrchestraLouis Armstrong And His Hot Harlem Band + +354417Jack HamiltonTrumpeterNeeds VoteJ. HamiltonJackleboneLouis Armstrong And His OrchestraLouis Armstrong And His Hot Harlem Band + +354418Peter DucongePeter DuCongeAmerican jazz saxophonist and clarinetist, born c. 1903 in New Orleans, died c. 1965 in Michigan.Needs Votehttps://en.wikipedia.org/wiki/Peter_DuCongeP. DucongePete Du CongePete DuCongePete DucongePeter Du CongéPeter DuCongéPeter DucongéLouis Armstrong And His OrchestraLouis Armstrong And His Hot Harlem Band + +354420Oliver TinesCredited as drummer.Needs VoteO. TinesOliver "Ollie" TinesOliver TimesOliver TynesLouis Armstrong And His OrchestraLouis Armstrong And His Hot Harlem Band + +354423Alfred PrattAmerican jazz tenor saxophonist and clarinetist, born December 19, 1908 in New Orleans, Louisiana, died c. 1960 in South America. +Pratt moved to New York in childhood. He played with [a=Bubber Miley] in 1930, toured with [a=King Oliver] 1931-1932, then with Ralph Cooper's Kongo Knights. To Europe with Lucky Millinder in 1933. He settled in South America c. 1936. +He recorded with Freddy Johnson and his Harlemites and with Louis Armstrong.Needs VoteA. PrattLouis Armstrong And His OrchestraFreddy Johnson And His HarlemitesLouis Armstrong And His Hot Harlem Band + +354424Herman ChittisonAmerican jazz pianist, born 15 October 1908 in Flemingsburg, Kentucky; died 8 March 1967 in Cleveland, Ohio, USA.Needs Votehttps://adp.library.ucsb.edu/names/106794ChittisonH. ChittisonH.ChittisonHerman ChitisonIvory ChitisonLouis Armstrong And His OrchestraWilliams' Washboard BandGeorge Wettling's New YorkersWillie Lewis And His OrchestraHerman Chittison TrioZack Whyte & His Chocolate Beau BrummelsWillie Lewis & His EntertainersIvory Chittison & Banjo JoeEddie Brunner Und Sein OrchesterLouis Armstrong And His Hot Harlem BandHerman Chittison Quartet + +354542Artie SchroeckArthur Bruce SchroeckArthur "Artie" Bruce Schroeck (born October 10, 1938) is an American musician, best known for arranging and composing popular songs and jingles. He has won multiple Clio Awards, such as when he composed the music for the 1981 ABC-TV promo "Now is the time, ABC is the place". He also composed (with Frank Gari) the 1982 promo "Come on along with ABC". He arranged the classic "Can't Take My Eyes Off You" in 1967 for Frankie Valli and has written or arranged music for multiple other artists including Liza Minnelli, Sammy Davis Jr. and Frank Sinatra. In the 1990s, he was a regular performer at Harrah's in Atlantic City with his wife, singer [a365225], and in 1997, he wrote, arranged, and produced a tribute to bandleader Spike Jones. As of 2011, he continues to perform in Las Vegas.Needs Votehttps://en.wikipedia.org/wiki/Artie_SchroeckA SchroeckA, SchroeckA. SchroeckA. SchroekA. ShroeckArt SchreeckArt SchroeckArthur SchroeckArthur SchroekArtie SchreckArtie SchrockArtie SchroekArtie ShroakArtie ShroeckArtie ShroekG. SchroeckSchroechSchroeckSchroekShroeckShroekThe Artie Schroeck ImplosionArtie And Linda + +354573Ralph PeñaAmerican jazz bassist, born 24 February 1927 in Jarbidge in Nevada, USA and died in a car accident 20 May 1969 in Mexico-City, Mexico. He was well-known and acclaimed as supportive bassist in the 1950s and 1960s.Needs Votehttp://www.vervemusicgroup.com/artist/default.aspx?aid=4713http://www.answers.com/topic/ralph-pe-ahttps://adp.library.ucsb.edu/names/337022Ralph PenaRalph PenayRalph PennaRalph PinaRalph PiniaRaplh PenaThe CrusadersThe George Shearing QuintetThe Jimmy Giuffre TrioThe Chico Hamilton QuintetShorty Rogers And His GiantsBob Brookmeyer QuintetElmer Bernstein & OrchestraDave Pell OctetKen Hanna And His OrchestraShorty Rogers QuintetThe Jimmy Giuffre 4Jack Montrose SextetRalph Pena QuintetThe Jack Sheldon QuartetThe Bill Miller SextetFrank Sinatra And SextetJimmy Giuffre Quintet + +354574David FrisinaDavid Paul FrisinaAmerican classical and jazz violinist. +Born: 1914 in Morristown, Pennsylvania. +Died: November 01, 2000 in Sherman Oaks (Los Angeles), California. + +David played in the jazz orchestra's of Billy Eckstine, Artie Shaw, Benny Goodman, with the singers Frank Sinatra and Ella Fitzgerald, Eartha Kitt, Dean Martin and many others, played also in classical orchestra under the direction of Zubin Metha and Elmer Bernstein, among others.Needs Votehttps://www.feenotes.com/database/artists/frisina-david-1914-1st-november-2000/https://www.latimes.com/archives/la-xpm-2000-nov-15-me-52074-story.htmlD. FrisinaD.FrisinaDave FrasinaDave FrisinaDavid 'Dave' FrisinaDavid FresinaDavid FriscinaDavid P. FrisinaDavid Paul FrisinaDavio FrisinaFrisina DavidHarry James And His OrchestraGordon Jenkins And His OrchestraThe Charles Veal String OrchestraMilt Jackson & StringsLos Angeles Philharmonic OrchestraBenny Goodman With Strings + +354576Kurt ReherAmerican cellist, born on 5 February 1913 in Hamburg, Germany and died in July 1976 in Thousand Oaks, California, United States.Needs VoteReherGordon Jenkins And His OrchestraLos Angeles Philharmonic Orchestra + +354581Tommy ShepardThomas M Shepard Former staff trombonist of the orchestras at NBC, ABC, and finally CBS. Shepard is also known as a photographer, who took behind-the-scenes photographs of many of the top entertainers of the 1960s. +b.: Mar. 31, 1923 +d.: Feb. 23, 1993 in Indiana Wells, CA +CorrectT. ShepardThomas M. ShepardThomas N. ShepardThomas SheparThomas ShepardThomas SheparfThomas ShephardTom ShepardTom SheppardTommy ShephardTommy SheppardStan Kenton And His OrchestraBilly May And His OrchestraThe Gene Page OrchestraChubby Jackson's Big BandNeal Hefti And His Jazz Pops OrchestraTommy Shepard And His OrchestraShepard's HornsHoyt Curtin Orchestra And Chorus + +354649Gene AllenEugene Sufana AllenAmerican jazz baritone saxophonist, clarinetist and bass clarinetist +Born December 05, 1928 in East Chicago, Indiana, died February 14, 2008 in New York City, New York + +He played with Louis Prima,Claude Thornhill, Tex Beneke, Sauther-Finegan Orchestra, Jimmy & Tommy Dorsey Orchestras, Benny Goodman. + +[b]Note:[/b] please use [a=Gene Allan] for the songwriter/producer.Needs Votehttps://musicbrainz.org/artist/04460253-6128-46fc-bc4c-11b28fa61ba4https://en.wikipedia.org/wiki/Gene_Allen_(musician)https://adp.library.ucsb.edu/names/300980AllenG. AllenGene AllanGene O'AllenWoody Herman And His OrchestraClaude Thornhill And His OrchestraJim Timmens And His Jazz All-StarsBenny Goodman And His OrchestraOliver Nelson And His OrchestraSauter-Finegan OrchestraManny Albam And His Jazz GreatsGerry Mulligan & The Concert Jazz BandWoody Herman And The Swingin' HerdUrbie Green And His OrchestraThe Nat Pierce OrchestraGeorge Russell OrchestraLarry Sonn OrchestraWoody Herman And The Fourth HerdBob Brookmeyer And His OrchestraThe Rod Levitt OrchestraRusty Dedrick And The Ten Man Band + +354650Sal NisticoSalvatore NisticoJazz tenor saxophonist, born 2 April 1938 in Syracuse (New York), died 3 March 1991 in Berne, Switzerland.Correcthttps://books.discogs.com/credit/483536-sal-nisticohttps://www.allmusic.com/artist/sal-nistico-mn0000290363/biographyhttps://en.wikipedia.org/wiki/Sal_NisticoNisticoS. NisticoSalvatore NisticoTito Puente & His Concert OrchestraClarke-Boland Big BandWoody Herman And His OrchestraFrancy Boland And OrchestraThe Mangione Brothers SextetWoody Herman And The Swingin' HerdThe Woody Herman Big BandNational Jazz EnsembleWoody Herman And The Thundering HerdSal Nistico QuintetThe Duško Gojković SextetSal Nistico / Stan Tracey QuintetSummit Big Band + +354651Jack GaleJohn Calvin GaleJohn Calvin “Jack” Gale was an American jazz trombonist, arranger and composer, born 1936 in Wichita, Kansas; died 16 March 2022 in Ithaca, New York. + +Gale attended Wichita University in Kansas as a theory and composition major. After coming to New York in 1957, he played with several major bands including Buddy Morrow, Maynard Ferguson, and Woody Herman, as well as with the Kai Winding Septet. Since 1961, Gale has been a member of the orchestras of more than thirty Broadway shows, numerous movie soundtracks and countless record jingle and television dates, plus he has continued to work in the concert, jazz, and educational fields. From 1965 through 1980, he was trombonist and musical director of the Manhattan Brass Quintet, for which he developed and arranged extensive music education programs. During this period, he worked with Buddy Rich and the Benny Goodman Sextet. Gale has also performed with the New York City Symphony, the American Symphony, and the Orchestra of St. Luke’s. His compositions, arrangements, and orchestrations have been performed by the Empire and New York Philharmonic brass quintets and the American Symphony Orchestra. He was a member of the Local 802 Executive Board since 1989. He was a featured trombonist and arranger on Garrison Keillor’s American Radio Company on NPR from 1990 through 1994.Needs Votehttp://www.trombone-usa.com/gale_jack_bio.htmhttps://artofsoundmusic.com/?main_page=composershttps://www.local802afm.org/allegro/articles/jack-gale/GaleJ. GaleJake GaleJohn C. GaleJohn GaleWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe New York Studio Jazz Ensemble + +354652Bill ChaseWilliam Edward ChiaieseAmerican trumpet player. + +Born: 20th October, 1934, in Boston/MA +Died: 9th August, 1974 in Jackson/MN in a plane crash.Correcthttp://en.wikipedia.org/wiki/Bill_ChaseB. ChaseB.ChaseChaseWilliam ChaseWoody Herman And His OrchestraChase (5)Woody Herman SextetWoody Herman's Big New HerdWoody Herman And The Swingin' HerdJazz In The ClassroomMaynard Ferguson & His OrchestraWoody Herman And The Fourth HerdWoody Herman And The Thundering Herd + +354653Gerry LamyAmerican jazz trumpeter.CorrectGerald LamyGérald LamyWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +354654Gordon BriskerGordon BriskerAmerican jazz tenor saxophonist +Born 6 November 1937 in Cincinnati, Ohio, USA, died 10 September 2004 in Blue Ash, Cincinnati, USACorrecthttp://www.gordonbrisker.com/G. BriskerGorden BriskerGordon BiskerWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJazz In The ClassroomPat Longo And His Super Big BandBobby Shew QuintetBobby Shew SextetGordon Brisker QuintetGordon Brisker Big BandMilan Svoboda Big BandBuddy Charles Concert Jazz Orchestra + +354655Chuck AndrusCharles E. Andrus Jr..American jazz bassist. + +Born : November 17, 1928 in Holyoke, Massachusetts. +Died : June 12, 1997 in Boca Raton, Florida. +CorrectChuck AndrosWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman QuartetThe Jim Chapin Sextet + +354656Dave GaleJazz trumpeter + +Could be the same person as [a=David Gale (5)]CorrectD. GaleWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJack Cortner Big BandThe Contemporary Brass Quintet + +354657Paul FontaineAmerican jazz trumpeter.CorrectFontaineP. FontainP. FontaineWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJazz In The ClassroomWoody Herman And The Fourth HerdMilan Svoboda Big Band + +354658Phil WilsonPhillips Elder Wilson, Jr.American jazz trombonist, born January 19, 1937 in Belmont, MA. +Chaired Berklee's Trombone Department until 1974 and is a member of the Board of Directors of the International Trombone Association.CorrectMr. Phil WilsonP. WilsonPhilWilsonWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman And The Swingin' HerdThe Big Band MachineThe Phil Wilson SextetThe Mousey Alexander SextetThe Phil Wilson's Rainbow BandPhil Wilson FivePhil Wilson Quartet + +354659Jake HannaJohn Edwin HannaAmerican jazz drummer +Born 4 April 1931 in Dorchester, Massachusetts, died 12 February 2010 in Los Angeles, California + +Performed with [a=Woody Herman], [a=Maynard Ferguson], [a=Louis Armstrong] and [a=Duke Ellington], among others +Needs VoteHannaJack HannaJake HannahJohn (Jake) HannaJohn Hannaジェイク・ハナHarry James And His OrchestraWoody Herman And His OrchestraLouis Armstrong And His OrchestraWoody Herman & The New Thundering HerdSupersaxToshiko Akiyoshi TrioWoody Herman And The Swingin' HerdWoody Herman QuartetDuke Jordan TrioMarian McPartland TrioConcord Super BandWoody Herman And The Fourth HerdThe Hanna-Fontana BandThe Ross Tompkins TrioHerb Ellis QuartetThe Jack Sheldon QuartetThe George Masso SextetConcord Jazz All StarsEd Bickert 5The Dave McKenna TrioThe Concord All StarsThe George Masso QuintetHerb Ellis-Ray Brown SextetFraser MacPherson QuartetBill Berry And The LA BandAntti Sarpila QuintetThe New York City All-Star Big BandJim Galloway's Wee Big BandThe Doug MacDonald QuartetThe Howard Alden All Star QuintetHarry Allen All Star QuintetThe Ross Tompkins QuartetThe Jake Hanna QuintetThe Jack Nimitz QuintetThe Jack Nimitz-Bill Berry Quintet + +354660Nat PierceNathaniel Pierce Blish Jr.Swing jazz pianist and arranger, born 16 July 1925 in Somerville, Massachusetts, died 10 June 1992 in Los Angeles, California.Correcthttps://en.wikipedia.org/wiki/Nat_Piercehttps://natpierce.bandcamp.com/https://adp.library.ucsb.edu/names/207941Bilie PierceN. PierceN.PierceNPNat PierrePierceН. Пирсナット・ピアーズNathaniel Pierce Blish Jr.Woody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman And His WoodchoppersThe Buddy Tate Celebrity Club OrchestraAl Cohn's Natural SevenWoody Herman And The Swingin' HerdThe Prestige All StarsWoody Herman QuartetGene Roland OctetGene Roland SextetLouie Bellson Big BandThe Woody Herman Big BandThe Ellington All StarsThe Nat Pierce OrchestraLarry Sonn OrchestraWoody Herman BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdRuby Braff OctetPaul Quinichette SextetDick Collins And His OrchestraJimmy Rushing And His OrchestraThe Mystery Band (3)The Capp/Pierce JuggernautRuby Braff's All-StarsJoe Newman And His OrchestraNat Pierce QuintetPaul Quinichette And His SwingtetteThe Nat Pierce-Dick Collins NonetDick Collins And The Runaway HerdThe Nat Pierce TrioThe Ruby Braff QuintetThe Duško Gojković SextetNat Pierce's JazzmenWoody Herman OctetNat Pierce ComboCharlie Mariano OctetLouie Bellson's Big Band Explosion!Specs Powell & Co.The Nat Pierce BandstandCharlie Mariano & Nat Pierce Sextet + +354662Eddie MorganAmerican jazz trombonist and singer. +Born in New Jersey, settled in Cincinnati, died 2015Correcthttps://www.allmusic.com/artist/eddie-morgan-mn0001435869https://www.facebook.com/cincijazzhall/posts/686510044822326https://music.metason.net/artistinfo?name=Eddie%20Morgan%20%286%29https://www.facebook.com/eddie.morgan.1485https://www.facebook.com/photo/?fbid=1742923382602119&set=ecnf.100006534221784Ed MorganEdwin MorganWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJazz In The ClassroomThe Las Vegas Jazz Orchestra + +354663Ziggy HarrellAmerican jazz trumpeter.CorrectDizzy HarrellThomas "Ziggy" HarrellWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +354747Milan TedlaMilan TedlaClassical violinistNeeds VoteM. TedlaSlovak Chamber OrchestraProvisorium + +355011Roy MalanViolin playerNeeds Votehttp://sfcmp.org/roy-malan/Roy T. MalanSan Francisco SymphonyCalifornia Parallèle EnsembleSan Francisco Contemporary Music PlayersRoscoe Mitchell Orchestra + +355012Peter WahrhaftigAmerican tuba player.Needs Votehttp://www.baybrass.org/bio_wahrhaftig.htmlMarc WahrhaftigPeter WahrhoftigSan Francisco SymphonySan Francisco Contemporary Music PlayersThe Contemporary Chamber Players Of The University Of ChicagoThe Bay BrassSan Francisco Ballet Orchestra + +355185Quintette Du Hot Club De FranceJazz group founded in France in 1934.Needs Votehttps://en.wikipedia.org/wiki/Quintette_du_Hot_Club_de_Francehttps://fr.wikipedia.org/wiki/Quintette_du_Hot_Club_de_Francehttps://adp.library.ucsb.edu/names/104500Der Hot Club De FranceDjango Et Le Quintette Du Hot Club De FranceDjango Et Quintette Du Hot Club De FranceDjango Et Quintette Du Hot Club De France Avec Stephane GrappelliDjango Reinhardt & Stéphane Grappelly Et Le Quintette Du Hot Club De FranceDjango Reinhardt & The Hot Club De France QuintetDjango Reinhardt And His BandDjango Reinhardt Et Le Quintette Du Hot Club De FranceEl Quinteto Del Hot Club De FranciaEl Quinteto Hot Club de FranciaFrench Hot Club QuintetHot Club De FranceHot Club De France QuintetHot Club Of FranceHot Club QuintetHot Club de FranceIl Quintetto Del H.C.F.Il Quintetto Dell' "Hot Club De France"Il Quintetto Dell'"Hot Club De France"Kvinteto Hot Club De FranceLa Quintette Du Hot Club De FranceLe 5tet Du HCFLe Hot Club De FranceLe Hot Club De France QuintetLe Hot-Club De FranceLe Nouveau QuintetteLe Nouveau Quintette Du Hot Club De FranceLe Quintet Du Hot Club De FranceLe Quintett Du Hot Club De FranceLe Quintette Du H.C.FLe Quintette Du H.C.F.Le Quintette Du HCFLe Quintette Du Hot ClubLe Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France (Augmented)Le Quintette Du Hot-Club De FranceLe Quintette de Hot Club du FranceLe Quintette du Hot Club de FranceLe Quintette du h.c.f.QHCFQuintet Du HCFQuintet Du Hot Club De FranceQuintet Of Hot Club Of FranceQuintet Of The "Hot Club The France"Quintet Of The French Hot ClubQuintet Of The Hot Club De FranceQuintet Of The Hot Club Of FranceQuintet Of The Hot Club Of ParisQuintet Of The Hot Club de FranceQuintet Of The “Hot Club The France”Quintet Van De "Hot-Club De France"Quintet de Hot Club FranceQuintete Of The Hot Club Of FranceQuinteto Del "Hot Club" De FranciaQuinteto Del ''Hot Club'' De FranciaQuinteto Del Hot Club De FranciaQuinteto Do "Hot Club De France"Quinteto Do Hot Club Da FrançaQuinteto Do Hot Club de FranceQuinteto Hot Club De FranceQuintett Des "Hot Club De France"Quintett Des "Hot Club Of France"Quintett Des Hot Club De FranceQuintett Du Hot Club De FranceQuintette Du H. C. F.Quintette Du H.C.F.Quintette Du HCFQuintette Du Hot Club De France (Augmented)Quintette Du Hot Club De France Et Les CuivresQuintette Du Hot Club De France, Les Cuivres Et Les CordesQuintette Du Hot-Club De FranceQuintette Of The Hot Club De FranceQuintette Of The Hot Club Of FranceQuintette Of The Hot Club de FranceQuintette du H. C. F.Quintetto Del "Hot Club De France"Quintetto Hot Club de FranceStars Of The Hot Club De FranceThe "Hot Club" QuintetThe French Hot QuintetThe HCF QuintetThe Hot Club Of FranceThe Hot Club Of France QuintetThe Hot Club QuintetThe New Stars Of The Hot Club De FranceThe Quinted Of The Hot Club Of FranceThe Quintet Du Hot Club De FranceThe Quintet Of Hot Club Of FranceThe Quintet Of The French Hot ClubThe Quintet Of The Hot Club De FranceThe Quintet Of The Hot Club Of FranceThe Quintet Of The Hot Club Of ParisThe Quintet of the Hot Club of FranceThe Quintett Of The Hot Club Of FranceThe Quintette Du Hot Club De FranceThe Quintette From The Hot Club Of FranceThe Quintette Of The Hot Club De FranceThe Quintette Of The Hot Club Of Francele Quintette du Hot Club de Francele quintette du Hot Club De France«Hot Club De France»'s Quintettジャンゴ・ラインハルト ホットクラブ・オブ・フランス五重奏団Orchestre "Swing"Django ReinhardtStéphane GrappelliMichel WarlopAlix CombelleLouis VolaMarcel BianchiEugène d'HellemmesAndré EkyanPierre FerretAlphonse MasselierJoseph ReinhardtAlphonse CoxPierre AllierFrank "Big Boy" GoodieSigismond BeckArthur BriggsRoger ChaputMaurice CizeronRoger GrassetFreddy TaylorColeridge GoodeHubert RostaingMichel de VillersLucien SimoensPierre FouadEugène VéesAntonio "Tony" RoviraAllan HodgkissGaston LéonardRoger ParaboschiMaurice MeunierEmmanuel SoudieuxLadislas CzabanickJack DiévalPhilippe BrunAndré LluisGérard LévêqueLéo ChauliacMax BlancJean StorneGus DeloofJosse BreyereAndré CornilleGuy PaquinetJosette DaydéFrancis LucaAndré JourdanJacques MartinonJoseph SwetchinPaul BartelRalph SchécrounJack LlewelynJean "Matlo" FerretEddie BernardAl CraigWilly LockwoodArthur MottaRené "Challain" FerretJoseph Mengozzi + +355186Alix CombelleFrench clarinetist and tenor saxophonist, born June 15, 1912 in Paris, France, died March 2, 1978 in Mantes, France. +Combelle began as a drummer (1928-1931), then worked with all well-known jazz musicians in pre-WWII France, and later recorded with US musicians visiting Paris in the 1950s and 1960s ([a=Bill Coleman (2)], [a=Buck Clayton], etc) +Father of [a=Philippe Combelle]. +Needs Votehttps://adp.library.ucsb.edu/names/356734A CombelleA. CombelleA.CombelleAlex CombelleAlix CombellAlix CombilleCombelleQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreBenny Carter And His OrchestraDjango's MusicFestival SwingColeman Hawkins And His All Star Jam BandPhilippe Brun "Jam Band"Philippe Brun And His Swing BandRay Ventura Et Ses CollégiensNoel Chiboust Et Son OrchestreChristian Wagner Et Son OrchestrePierre Allier Et Son OrchestreMichel Warlop Et Son OrchestreWal-Berg Et Son Jazz FrançaisAlix Combelle And His Swing BandArthur Briggs And His OrchestraFletcher Allen And His OrchestraLe Jazz De ParisDanny Polo & His Swing StarsPatrick & Son Orchestre De DanseAndré Ekyan Et Son Orchestre JazzFred Adison Et Son OrchestreThe Hot Club Swing StarsTrio De Saxophones Alix CombelleLionel Hampton And His Paris All StarsPierre Fouad Et Son OrchestreGrégor Et Ses GrégoriensAlix Combelle Et Sa Formation + +355192Louis VolaFrench jazz bassist and accordionist, born 6 July 1902 in La Seyne-sur-Mer, died 15 August 1990 in Paris, France.Needs Votehttps://adp.library.ucsb.edu/names/112239L. VolaLouis "Loulou" VolaLouis ViolaLouis Vola Del Quinteto Del Hot Club De FranciaVolaQuintette Du Hot Club De FrancePhilippe Brun "Jam Band"Philippe Brun And His Swing BandRay Ventura Et Ses CollégiensMichel Warlop Et Son OrchestreL'Orchestre VolaMicheline Day Et Son Quatuor SwingPierre Spiers Et Son OrchestreDanny Polo & His Swing StarsAndré Ekyan Et Son Orchestre JazzLouis Vola Et Son Orchestre Du Lido De ToulonThe Hot Club Swing StarsDuo Louis Vola - Arthur MottaQuatuor Ray VenturaLouis Vola & Son Orchestre Du Casino De ToulonWillie Lewis & His Entertainers + +355193Marcel BianchiFrench jazz guitarist and bandleader. Early in his career, he was a rhythm guitarist in the "Quintette Du Hot Club de France" in 1937. He spent the WW II years in Switzerland, where he bought his first electric guitar in 1944. Recorded on acoustic guitar up to 1946 and from then on on electric guitar and electric (hawaiian) steel guitar. Recording career ended in 1978, but he still played live around Juan-les-Pins until 1993. +From 1952 on, he was the partner of [a2557703], whom he married in 1957. +b.: Aug. 28, 1911 in Marseille, France. +d.: Nov. 23, 1997 in Juan-les-Pins, France.Needs Votehttp://www.guitaresetbatteries.com/marcel-bianchi/9, 10, 21, 22BianchiM. BianchiMarcel Bianchi Et Sa GuitareMarcel Bianchi Et Sa Guitare HawaienneMarcel Bianchi Et Sa Guitare HawaïenneMarcel Bianchi Et Sa Guitare SoloMarcel Bianchi Et Ses GuitaresMarcel Bianchi Et Ses Multi GuitaresMarcel Bianchi Et Ses Multi-GuitaresMarcel Bianchi His GuitarsMarcel Bianchi Sa Guitare Et Son OrchestreMarcel Bianchi Y Su Guitarra HawaïanaMarciel Bianchi & His GuitarQuintette Du Hot Club De FranceAimé Barelli Et Son OrchestrePierre Allier Et Son OrchestreFletcher Allen And His OrchestraThe Hawaiian BeachcombersJerry Thomas SwingtetteLouis Richard-Day's Accordion Swing QuartetteJerry Thomas Et Son Orchestre HawaienTomas & Ses Merry BoysMarcel Bianchi Et Son OrchestreHenri Rossotti Et Son OrchestreJohnny Rock Guitare Et Ses Rock 'N' RollersMarcel Bianchi Et Ses BrazilianosMarcel Bianchi et ses Hawaiians BeachcombersMarcel Bianchi Et Les Cinq BoogiesMarcel Bianchi Et Ses BrazilierosMarcel Bianchi Et Ses RythmesLes Hawaian TroubadoursMarcel Bianchi Et Son Quartette + +355196Eugène d'HellemmesFrench jazz trombonist and bassist,(around 1910 - after 1958)Needs VoteD'HellemmesE. D'HellemmesE. d'HellemmesEugene D'HellemesEugene D'HellemmesEugene d'HellemesEugene d'HellemmesEugène D'HellemesEugène D'HellemmesEugène HellemesEugène HellemmesEugène d'HellemesEugène d'HellèmmesEugène d’HellemmesEugéne D'HellemmesEugéne d'HellemmesEugëne d'HellemmesHellemmesd'Hellemesd'HellemmesQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreColeman Hawkins And His All Star Jam BandBill Coleman & His OrchestraMichel Warlop Et Son OrchestreFreddy Taylor And His OrchestraAndré Ekyan Et Son Orchestre JazzFred Adison Et Son OrchestreFreddy Taylor And His Swing Men From HarlemD'Hellemmes' StompersEugène D'Hellemmes Et Son Orchestre + +355197André EkyanAndré EchkyanFrench jazz saxophonist, clarinetist, bandleader, composer and arranger. +Born October 24, 1907 in Meudon, France. +Died August 9, 1972 in Alicante, Spain. + +He recorded with [a=Benny Carter], [a=Coleman Hawkins], [a=Fats Waller], [a=Tommy Dorsey], [a=Joe Turner], [a=Mezz Mezzrow], [a=Frank "Big Boy" Goudie] and [a=Tommy Benford]. He worked or toured in/with [a=Jack Hylton And His Orchestra] (London, 1930-31), Gregor (Paris, 1932-33), [a=Tommy Dorsey And His Orchestra] (New York, 1936) and Ray Ventura (1938, 1941)Needs Votehttp://jazzhotbigstep.com/293212.htmlA. EkyanAndre EkyanEkyanJo CallaghanQuintette Du Hot Club De FranceEddie Barclay Et Son OrchestreOrchestre Musette "Swing Royal"André Ekyan Et Son EnsembleDjango's MusicColeman Hawkins And His All Star Jam BandRay Ventura Et Ses CollégiensDjango Reinhardt Et Son QuintetteMichel Warlop Et Son OrchestreWal-Berg Et Son Jazz FrançaisPatrick & Son Orchestre De DanseAndré Ekyan Et Son Orchestre JazzJean Sablon & TrioLes Amis De DjangoAndré Ekyan Et Son SwingtetteQuatuor Ray VenturaPierre Fouad Et Son OrchestreGrégor Et Ses GrégoriensFrank "Big Boy" Goodie Et Son OrchestreAndré Ekyan Et Son Nouvel Orchestre De DanseJo Callaghan And His OrchestraBlue Star Swing Band + +355571Phillip GuilbeauAmerican jazz trumpet player + +Born: January 16, 1926 in Lafayette, Louisiana +Died: September 8, 2005Correcthttps://www.facebook.com/p/Phillip-Guilbeau-100068008873660/GuilbeauP. GuibeauP. GuilbeauPhil BilbeauPhil GilbeauPhil GuilbeauPhilip GuilbeauPhilipp GuilbeauCount Basie OrchestraPhil Guilbeau And His Creole StompersWild Bill Moore Sextet + +355573John HuntTrumpet player.Needs VoteHuntSonny Stitt Band + +355576Ray TriscariRay Joshua Triscari.American jazz trumpeter. + +Born : May 27, 1923 in Jamestown, New York. +Died : September 08, 1996 in Prescott, Arizona. +Needs Votehttp://www.vervemusicgroup.com/raytriscari/bio/Ray TriscarRay TriseariRaymond J. TriscariRaymond TriscariTriscariWoody Herman And His OrchestraGene Krupa And His OrchestraDizzy Gillespie Big BandRay Anthony & His OrchestraGerald Wilson OrchestraHenry Mancini And His OrchestraBenny Carter And His OrchestraShorty Rogers And His OrchestraSupersaxLalo Schifrin & OrchestraBill Holman And His OrchestraLouie Bellson OrchestraTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdBill Holman's Great Big BandThe Los Angeles Neophonic OrchestraShorty Rogers Big BandThe Gerald Wilson Big BandJohnny Mandel OrchestraBobby Troup And His Stars Of JazzThe Bob Bain Brass EnsembleThe Buddy Bregman BandCorcovado TrumpetsTerry Gibbs Dream BandSi Zentner & His Dance BandRené Bloch And His Big Latin Band + +355580Haywood HenryFrank Haywood HenryAmerican jazz baritone saxophonist and clarinet, born 10 January 1913 in Birmingham, Alabama, died 15 September 1994 in New York City (Bronx), New York.. + +Occasional substitute for [a=Harry Carney] in Duke Ellington's orchestra in his early career. Member of Erskine Hawkins' orchestra from 1934 until the early 1950's, and a member of Sy Oliver's orchestra from 1972 to 1980. Also did a lot of session work. +Needs Votehttp://en.wikipedia.org/wiki/Haywood_Henryhttp://www.allmusic.com/artist/haywood-henry-mn0000673293http://poparchives.com.au/feature.php?id=412https://adp.library.ucsb.edu/names/102210Franck HenryFrank "Haywood" HenryFrank Haywood HenryFrank HenryH. HenryHayward HenryHaywoodHenryHenry HeywoodHeywood HenryDuke Ellington And His OrchestraErskine Hawkins And His OrchestraIllinois Jacquet And His OrchestraSy Oliver And His OrchestraJay McShann And His OrchestraThe Megatrons (2)Erskine Hawkins And His 'Bama State CollegiansThe Heywood Henry OrchestraThe Fletcher Henderson All StarsThe Clark Terry SpacemenHaywood Henry SixtetTiny Grimes SextetGeorge Rhodes And His Orchestra + +355581Harry BettsAmerican jazz trombonist and composer +Born September 15, 1922 in New York City, New York, died July 13, 2012 +Needs Votehttps://en.wikipedia.org/wiki/Harry_BettsBettsH. BettsH. R. BettsH.R. BettsHarrie BettsHarry Betts Jr.Harry Betts Orch.Harry Betts jr.Harry Betts, Jr.Harry BetzHarry R. BettsPottsWoody Herman And His OrchestraMetronome All StarsStan Kenton And His OrchestraRussell Garcia And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraLeith Stevens & His OrchestraBob Keene OrchestraThe Frankie Capp Percussion GroupDave Pell OctetShorty Rogers Big BandWoody Herman And His Third HerdBobby Troup And His Stars Of JazzHarry Betts & His OrchestraThe Harry Betts Orchestra & ChorusThe Tom Talbert Jazz OrchestraHarry Betts Chorale + +355582Sam HermanJazz guitarist.Needs VoteSam HermannSamuel HermanTommy Dorsey And His OrchestraHarry James And His OrchestraThe Glenn Miller OrchestraTommy Dorsey And His Clambake SevenBuddy Rich And His OrchestraThe Dorsey Brothers OrchestraThad Jones & Mel Lewis + +355584Edgar WillisAmerican jazz bassist.Needs VoteEd WillisEdgar "Lemon, Thumper" WillisEdgar L. WillisEdgar L. WillsEdgar WillsEdgard WillisWillisSonny Stitt QuartetJohnny Otis And His OrchestraRay Charles And His Orchestra + +355697Charlie HowardJazz guitarist.CorrectC. HowardCharles HowardSidney Bechet And His New Orleans Feetwarmers + +355698Henry "Hank" DuncanAmerican jazz pianist, born 26 October 1894 in Bowling Green, Kentucky, died 7 June 1968 in Long Island, New York. + +[b]For the jazz drummer, please use [a=Henry Duncan (2)].[/b] +Correcthttps://en.wikipedia.org/wiki/Hank_Duncanhttp://www.worldcat.org/identities/lccn-no98-8393/https://adp.library.ucsb.edu/names/110683DuncanH. DuncanHank DuncanHenry 'Hank' DuncanHenry DuncanThe New Orleans FeetwarmersSidney Bechet And His New Orleans FeetwarmersFess Williams And His Royal Flush OrchestraHenry "Red" Allen And His OrchestraChris Barber's American Jazz BandTony Parenti's All-StarsEmmett Matthews And His OrchestraSnub Mosley And His OrchestraHank Duncan Trio + +355699Teddy NixonJazz trombone player.Needs Votehttps://www.allmusic.com/artist/teddy-nixon-mn0002287741https://www.allmusic.com/artist/teddy-nixon-mn0002287741NixonT. NixonTed NixonTeddy WilsonFletcher Henderson And His OrchestraThe New Orleans FeetwarmersSidney Bechet And His New Orleans FeetwarmersClara Smith And Her Jazz BandFletcher Henderson And His Club Alabam OrchestraFletcher Henderson's Jazz FiveEdgar Dowell's "Chicago Waddlers"Julia Moody And Her Dixie Wobblers + +355700Lem JohnsonLemuel Charles JohnsonAmerican jazz saxophonist, clarinetist and occasional singer. +Born: August 16, 1909 in Oklahoma City, Oklahoma. +Died: April 1, 1989 in New York City, New York. + +"Deacon" Lem Jackson played with [a=Louis Jordan], [a=Sidney Bechet], [a=Skeets Tolbert], [a=Sammy Price], [a=Sam Taylor (2)], Eli Rice, [a=Hot Lips Page], [a=Grant Moore], and others. + + + +Needs Votehttps://adp.library.ucsb.edu/names/108316Deacon Lem JohnsonJohnsonLee JohnsonLem C. JohnsonLemmy JohnsonLemuel JohnsonLen JohnsonLeon JohnsonSidney Bechet And His New Orleans FeetwarmersHot Lips Page And His OrchestraEddie Durham & His BandWalter Page's Blue DevilsPeetie Wheatstraw And His Blues-BlowersSkeets Tolbert And His Gentlemen Of SwingLem Johnson And His Washboard BandLouie Jordon's Elks Rendevouz BandLem Johnson And His BandLem Johnson And The Long Shots + +355701Wilson MyersErnest Wilson MyersOne of the best "hot" jazz and swing jazz bassist of the 1920s and 1930s. +Born: October 7, 1906 in Germantown, Pennsylvania. +Died: March 25, 1991 in Philadelphia, Pennsylvania. + +Wilson Myers was first drummer for blues legend [a=Bessie Smith], but could also play clarinet, trombone and even banjo before he picked up the bass in the 1920s. +He has played with many the New Orleans jazz bands and also in France. +Needs Votehttps://en.wikipedia.org/wiki/Wilson_Myershttps://www.allmusic.com/artist/wilson-myers-mn0000208270/biographyhttps://adp.library.ucsb.edu/names/112576E. MeyersErnest "Wilson" MyersErnest 'Serious' MyersErnest MeyersErnest MyersErnest WilsonErnest Wilson MyersMyersW. MyersW.E. MyersWilson "Serious" MyersWilson E. MyersWilson Ernest "Serious" MyersWilson Ernest MyersWilson MeyersDuke Ellington And His OrchestraThe New Orleans FeetwarmersAlix Combelle Et Son OrchestreSouth-Grappelli-Reinhardt ComboBenny Carter And His OrchestraSidney Bechet And His New Orleans FeetwarmersRex Stewart And His OrchestraBill Coleman & His OrchestraWillie Lewis And His OrchestraOscar Aleman TrioJosh White TrioThe Five CousinsLouis Bacon Et Son OrchestrePutney Dandridge And His OrchestraFrank "Big Boy" Goodie Et Son OrchestreWillie Lewis & His EntertainersBenny Carter And His All StarsRay Stokes Trio + +355750Alan HavenAlan HavenAlan Haven (Born 1 April 1935, died 12 Jan 2016), Prestwich, Lancashire, United Kingdom) was an English, self taught, jazz organist. He married Miss World, Lesley Langley in the 60's. +Alan Haven enjoyed success with John Barry on the soundtracks to 1960s film classics including The Knack, Goldfinger, From Russia with Love and critical acclaim for his performances and recordings with jazz drumming supremo Tony Crombie. He further scored a surprise single hit with his recording of “Image”. +In 1969 and 1971 Haven recorded two albums for CBS, a mix of originals by Haven with his arrangements of covers. All benefiting from the distinctive Haven Lowrey Heritage keyboard sounds which he had been developing throughout the 1960s. “Haven For Sale” featured jazz trumpeter Maynard Ferguson and direction from Keith Mansfield. “St. Elmo’s Fire” saw Haven experiment more with the keyboards and its effects, also producing and including more originals than before. Both these LPs were released on a short-lived CD in 2010.Needs Votehttp://organs.uk/alan-haven/http://www.alanhaven.com/http://www.myspace.com/alan_havenhttp://www.manchesterbeat.com/groups/alanhaven/alanhaven.phpA. HavenHavenJazz Organist Alan HavenThe Incomparable Alan HavenBen Webster Quartet + +355827Jay AndersonAmerican jazz bassist, born October 24, 1955 in Ontario, California, USA + +Needs Votehttp://jayandersonbass.comhttps://en.wikipedia.org/wiki/Jay_AndersonAndersonJ. AndersonJ.AndersonJayJim AndersonJohn HébertWoody Herman And His OrchestraPaul Bley TrioThe Lee Konitz QuartetMark Soskin QuartetGeorge Cables TrioRed Rodney QuintetWarren Bernhardt TrioBob Mintzer Big BandTony Purrone TrioFreddie Redd TrioPaul Bley QuartetThe Lynne Arriale TrioMaria Schneider OrchestraTerumasa Hino SextetThe Michael Brecker BandFejj AliveGordon Brisker QuintetBANN (2)Toshiko Akiyoshi Jazz OrchestraThe Jamie Baum GroupWoody Herman And The Thundering HerdGil Evans ProjectBrian Lynch SextetDave Stryker Quintet(Another) Nuttree QuartetJack Cortner Big BandCode Red (22)Ken Schaphorst Big BandThe Cutting Edge (2)Bob Mintzer QuartetRed Rodney And Ira Sullivan QuintetCalifornia State University Long Beach Studio Day BandRue De ParisAndrew Rathbun QuartetJoe Locke QuartetFrank Kimbrough TrioThe Bob Belden EnsembleGarry Dial TrioThe Stryker / Slagle BandVic Juris TrioLarry Schneider QuartetRudy Linka QuartetThe Phil Markowitz TrioRich Perry QuartetSteve Slagle QuartetDave Stryker QuartetVic Juris QuartetMaurizio Giammarco RundeepNiculin Janett QuartetBrian Landrus OrchestraRogerio Boccato QuartetoNew York City SoundscapeNYC TrioErik Charlston Jazz BrasilRich Perry TrioJohn Campbell TrioPat Harbison QuartetCharles Pillow EnsembleMike Richmond Cello QuartetNew York Jazz Ensemble (2)The Miles Donahue QuintetDanny Walsh Quintet + +355862Gerd HenjesGerman sound engineer (Tonmeister) and producer. +When HE is found in the runouts (e.g. HE ◇K), use Engineer as credit role.CorrectG. HenjesGerdhard HenjesGerdhardt HenjesGerhard HenjesHHEHeHenjes + +355975Simon EstellSimon Estell2nd Bassoon/Principal Contra Bassoon of the [a=London Philharmonic Orchestra].Needs Votehttps://www.facebook.com/simon.estellSimon EstelleLondon Philharmonic OrchestraBBC Symphony OrchestraPhilharmonia OrchestraThe Albion Ensemble + +356029Tom LazarusRecording and mastering engineer at [l=Classic Sound, New York].Correcthttp://www.classicsound.com/engineering/tom_discography.htmlLazakusThomas LazarusTom LazarnsTom LazausTom Lazurus + +356030Roger CookFrederick Roger CookBritish songwriter, musician and producer, born August 19, 1940 in Bristol, UK. In 1975 he moved to the U.S. and settled in Nashville, Tennessee, where country musicians recorded his songs, with hits including [a=Crystal Gayle]'s "Talking In Your Sleep" and "Love Is On A Roll" by [a=Don Williams (2)]. + +[b]When credited together with Greenaway, use the entry [a1274131][/b]. + +Inducted into Songwriters Hall of Fame in 2009.Needs Votehttp://www.rogercook.com/https://en.wikipedia.org/wiki/Roger_Cook_%28songwriter%29https://www.songhall.org/profile/roger_cookhttps://www.imdb.com/name/nm0177263/A. CookCockCoockCookCook / RogerCook RogerCook, RogerCook, Roger FrederickCook/Cook/RogerCookeCooksCoolCrookF. R. CookFrederick Roger CookJ R CookLookP. CookR CoockR CookR. BookR. CockR. CoockR. CookR. CookeR. CookesR. CooksR.CookR.F. CookR.R. CookRodger CookRoger CookeRoger CooksRoger CoorRoger Frederick CookRoger James CookRoger James CookeS. CookS. KookКукКук и ГринвейР. КукBlue MinkWhite PlainsDavid & JonathanThe KestrelsCook-GreenawayCCWCurrant KrazeJon And Julie + +356219Elspeth CoweyViolin and viola player.Needs VoteElspeth CowieElspeth CowleyKreisler String OrchestraThe Academy Of St. Martin-in-the-FieldsApollo Chamber Orchestra + +356313Harrie StarreveldDutch classical flute player.Needs VoteHarry StarreveldNieuw Sinfonietta AmsterdamHet Trio + +356317William ChristieWilliam Lincoln ChristieFrench harpsichordist and conductor (born American on December 19, 1944 in Buffalo, NY). +Between 1971 and 1975, he was a member of [a4285098]. He joined [a842641]' [a=Concerto Vocale] in 1976, playing the harpsichord and organ for the group until 1980. In 1979, he formed the ensemble [a=Les Arts Florissants], with whom he devoted himself to rediscovering the French, Italian and English repertory of the 17th and 18th centuries, specializing in the French baroque repertoire ([a571862], [a671328], [a834050] et al). +In 1982, he became the first American to be appointed professor at the [l1014340], where he was placed in charge of the early music course. +In January 1993, he was appointed a Chevalier de la Légion d'Honneur.Needs Votehttps://en.wikipedia.org/wiki/William_Christie_(musician)ChristieW. ChristieWilliam ChristyWilliam Lincoln ChristieУ. Кристиウィリアム・クリスティLes Arts FlorissantsConcerto VocaleThe Five Centuries Ensemble + +356319Karin Van Der PoelVocalist.Needs VoteKarin v.d. PoelNederlands Kamerkoor + +356399Elayne JonesAmerican timpanist, percussionist and author. +Born January 30, 1928 in New York, New York, USA. +Died December 17th, 2022 (aged 94) in Walnut Creek, California, USA. +She graduated from Juilliard. Jones's career was marked by many firsts. She became the first Black opera orchestra member in 1949. +She played with the San Francisco Symphony and New York Philharmonic among others. +Her mother wanted to be a concert pianist but became a housewife and domestic worker. Instead she taught her daughter piano very early in her life. +She published her autobiography "Little Lady with a Big Drum" in 2019.Needs Votehttps://en.wikipedia.org/wiki/Elayne_Joneshttps://www.sfcv.org/articles/music-news/memoriam-timpanist-elayne-jones-94https://www.local802afm.org/allegro/articles/elayne-jones/https://pas.org/elayne-jones/Elaine JonesSan Francisco SymphonyNew York City Ballet OrchestraNew York City Opera Orchestra + +356400Eddie PrestonEdward L. PrestonAmerican jazz trumpeter, born 9 May 1925 in Dallas, Texas, USA, died 22 June 2009 in Palm Coast, Florida, USA.Needs VoteE. PrestonEd PrestonEdward PrestomEdward PrestonEric PrestonDuke Ellington And His OrchestraLionel Hampton And His OrchestraJohnny Otis And His OrchestraCharles Mingus SextetThe Brass Company + +356437Richard AplanalpJazz & blues saxophone player, but also other wind instruments.Needs VoteRichard AplanRichard AplanadRichard AplanapGerald Wilson OrchestraKaleidoscope (3)Red Beans & Rice + +356438Ernie TackErnie TackErnie Tack was with the NBC Orchestra on the Tonight Show for 20 years. He has been one of the most sought-after bass-trombonists in Hollywood for decades, having worked with Neil Diamond and Ray Coniff, among many others.Needs VoteEarnie TackErnest C. TackErnest TackErnie TakErnie TalkHarry James And His OrchestraThe MothersGerald Wilson OrchestraSupersaxOliver Nelson's Big BandRoy Wiegand Big BandTutti's TrombonesThe Mike Barone Big BandSteve Spiegl Big BandBuddy Charles Concert Jazz OrchestraDoc Severinsen And His Big Band + +356440William PetersonCredited as trumpet player.CorrectGerald Wilson Orchestra + +356442Frank StrongTromboneNeeds VoteStan Kenton And His OrchestraGerald Wilson OrchestraThe Gerald Wilson Big Band + +356443Jerome RuschAmerican jazz trumpeter. + +Born : May 08, 1943 in St. Paul, Minnesota. +Died : May 05, 2003 in Las Vegas, Nevada. + +Played with : Gerald Wilson (orchestra), Ray Charles (1972-'73), Clifford Jordan, Joe Henderson, Willie Bobo, Louis Bellson, Teddy Edwards, Frank Foster, Thad Jones-Mel Lewis Orchestra and many others. +Needs Votehttps://en.wikipedia.org/wiki/Jerry_Ruschhttp://www.allmusic.com/artist/jerry-rusch-mn0000100195J. RuschJerome Anthony RuschJerome RushJerry RuschJerry RushTony RuschGerald Wilson OrchestraOrchester Pepe LienhardThe John "Terry" Tirabasso OrchestraRush Hour (15) + +356444Kenny DennisKenneth Carl DennisAmerican jazz drummer. +Born May 27, 1930 in Philadelphia, Pennsylvania. Husband of [a=Nancy Wilson]. +Dennis worked with many artists, including Miles Davis, Billy Taylor, J.J. Johnson, Kai Winding, Erroll Garner, Charles Mingus, Chris Connor, Sonny Stitt, and Sonny Rollins. +Needs VoteKenny DavisSonny Stitt QuartetSonny Rollins QuintetThe Music Of Kenny Dennis + +356446Lou BlackburnAmerican jazz trombonist; born November 12, 1922 in Rankin ,Pennsylvania died June 7, 1990 in Berlin, Germany +In the 1950s he played swing music with musicians such as Lionel Hampton and Charlie Ventura. In the early 1960s he began performing in the West Coast jazz and soul jazz genres with musicians like Cat Anderson and Charles Mingus. He worked also as session musician with appearances on recordings by the Turtles, the Righteous Brothers, and the Beach Boys among others. +In 1970 he went to Europe, living first in Germany, then in Switzerland. He founded the Afro-pop ensemble Mombasa, and also played in the Krautrock band [a=Agitation Free].Needs VoteBlackburnL. BlackburnLew BlackburnLewis BlackburnLou BackburnLouis BlackburnLouise BlackburnLu BlackburnMombasaLionel Hampton And His OrchestraGerald Wilson OrchestraThe Thelonious Monk OrchestraOliver Nelson's Big BandThe Gerald Wilson Big BandThe Chico Hamilton OctetFestival Workshop Ensemble + +356448Buddy ChildersMarion ChildersAmerican Jazz trumpeter and bandleader. +Born February 12, 1926 in St. Louis, Missouri, USA. +Died May 24, 2007 in Los Angeles, California, USA. +Became lead trumpeter in [a=Stan Kenton]'s band in 1942 and played with him at intervals until 1954. Also worked with [a=Benny Carter] 1944, [a=Les Brown] 1947, [a=Woody Herman] 1949, [a=Tommy Dorsey] 1951-1952, [a=Georgie Auld] 1954 and [a=Charlie Barnet] 1954. After moving to Los Angeles recorded with [a=Oliver Nelson], [a=Quincy Jones] and others, and performed in Las Vegas.Needs Votehttps://en.wikipedia.org/wiki/Buddy_Childershttp://www.allaboutjazz.com/php/article.php?id=26201http://www.jazzprofessional.com/technical/childers.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/308352/Childers_Buddyhttps://adp.library.ucsb.edu/names/308352"Buddy" ChildersB. ChildersBobby ChildersBud ChildersBuddy ChilderBuddy ChildressChildersMarion "Buddy" ChildersMarion (Buddy) ChildersMarion ChildersMarion Childers, Jr.Marion E. "Buddy" ChildersMarion E. (Buddy) ChildersMarione E. 'Buddy' ChildersToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraMetronome All StarsStan Kenton And His OrchestraMarty Paich OrchestraShorty Rogers And His GiantsPete Rugolo OrchestraThe World Jazz All Star BandLalo Schifrin & OrchestraThe Tommy Vig OrchestraMaynard Ferguson & His OrchestraDick Grove Big BandJohnny Richards And His OrchestraMarty Paich Big BandPat Longo And His Super Big BandBob Jung And His OrchestraOliver Nelson's Big BandShorty Rogers Big BandWoody Herman And His Third HerdThe Bob Florence Limited EditionBobby Troup And His Stars Of JazzPete Rugolo And His All StarsThe Mike Barone Big BandThe Matt Catingub Big BandThe Sunset All StarsRoy Wiegand Jazz OrchestraBob Curnow's L. A. Big BandBuddy Childers QuintetBuddy Childers Big BandBuddy Childers QuartetRaoul Romero And His Jazz Stars OrchestraWoody Herman & The Second HerdThe Steve Huffsteter Big BandThe Los Angeles City College Jazz Band + +356449Mike WimberlyTrombonist.Needs VoteMike WimberleyGerald Wilson OrchestraThe Thelonious Monk OrchestraLouie Bellson Big BandLouie Bellson's Big Band Explosion! + +356450Larry McGuireTrumpet playerNeeds VoteLarry J. McGuirePeter Herbolzheimer Rhythm Combination & BrassHarry James And His OrchestraGerald Wilson OrchestraSupersaxDRS Big BandThe Mike Barone Big BandThe Steve Huffsteter Big BandThe Los Angeles City College Jazz Band + +356451Stan GilbertAmerican bassist, born in September 1938 in New York City, USA.Needs Votehttp://stangilbert.com/GilbertStanStanley GilbertStenley GilbertGerald Wilson OrchestraThe AquariansThe Invaders (3)Ernie Watts QuartetGerald Wilson Orchestra of The 90'sLlew Matthews TrioThe Don Grusin Trio + +356453Ken WatsonKenneth WatsonAmerican percussionist.Needs Votehttps://www.imdb.com/name/nm0914752/Kenneth E. WatsonKenneth WatsonKenny WatsonWatson KenWatson Kenneth E.kenneth WatsonHarry James And His OrchestraLalo Schifrin & OrchestraThe Mystic Moods Orchestra + +356526Franz AllersAustria-Hungarian born American conductor. +of ballet, opera, Broadway musicals, film scores and symphony orchestras. + +Born: August 6, 1906 in Carlsbad, Austria-Hungary (now Czech Republic). +Died: January 26, 1995 of pneumonia in Las Vegas, Nevada.Needs Votehttps://en.wikipedia.org/wiki/Franz_Allershttps://www.ibdb.com/broadway-cast-staff/franz-allers-78659https://www.imdb.com/name/nm0021248/AllersChorus And Orchestra Conducted By Franz AllersDas Orchester Des Deutschen Theaters München, Leitung Franz AllersF. AllersFr. AllersFranz Allers OrchestraФ. Аллерс + +356556Robert NorthernRobert NorthernAmerican jazz composer, flutist and French horn player +Born May 21, 1934 in Kinston, North Carolina, died May 31, 2020 + +Bob Northern worked with : Donald Byrd, John Coltrane, Gil Evans, Sun Ra, McCoy Tyner, Roland Kirk, Don Cherry, Thelonious Monk, Freddie Hubbard, Miles Davis, Dizzy Gillespie, Eric Dolphy, Charlie Haden, John Lewis, Oliver Nelson and others. +Nickname : “Brother Ah”.Needs Votehttp://www.brotherah.com/https://en.wikipedia.org/wiki/Bob_NorthernBob NorthernBob NothernR. NortheR. NorthernR.NorthernRob NorthernRobert NothernBrother AhhGil Evans And His OrchestraThe Jazz Composer's OrchestraMilt Jackson And Big BrassThe Thelonious Monk OrchestraLiberation Music OrchestraArt Farmer And His OrchestraOrchestra U.S.A.Michel Legrand Big BandArt Farmer Tentet + +356568Sal MoscaSalvatore Joseph Mosca.American jazz pianist and teacher. +Born : April 27, 1927 in Mount Vernon, New York. +Died : July 28, 2007 in White Plains, New York. + +Sal played with : Lee Konitz, Warne Marsh, among others, and with his own groups. +Needs Votehttps://salmosca.bandcamp.com/MoscaS. MoscaSalvadore MoscaSalvator MoscaSalvatore MoscaLee Konitz SextetLee Konitz QuintetWarne Marsh GroupSal Mosca-Warne Marsh Quartet + +356641Fransisca BalkeCorrectBalkeF. BalkeFranFran BalkeFransisca Hall + +356859Ray Brown (2)Raymond Lee Brown[b]Note: not to be confused with jazz trumpeter [a=Ray Brown (12)][/b] (Raymond Harry Brown) who is also a composer, arranger, and jazz educator. + +American session trumpeter, flugelhornist, arranger and orchestrator born and based in Los Angeles, who joined the second official horn-section of [a=Earth, Wind & Fire] (1987-1988 period of the "Touch The World" album) and retired from that group in 2004. Before that, he was a member of the modern soul group [a=Madagascar (5)] as well as several television orchestras. He has performed or toured with such artists as Brothers Johnson, Quincy Jones, Marvin Gaye, Count Basie, Patrice Rushen, Natalie Cole, Diana Ross, MC Hammer, Yanni and Whitney Houston.Needs Votehttps://en.wikipedia.org/wiki/Raymond_Lee_Brownhttps://www.linkedin.com/in/raymond-brown-70906b8b/George "Dimp Paco" Ray Brown Jr.R. BrownRafy BrownRay Brown Jr.Ray Brown, Jr.Ray E. BrownRaymond BrownRaymond L. BrownRaymond L. BrownRaymond Lee BrownCount Basie OrchestraThe Horns Of FireMadagascar (5)The Clayton-Hamilton Jazz OrchestraThe Madagascar HornsEarth, Wind & Fire Horns (2) + +357374Caleb BurhansCaleb BurhansMusician, vocalist and composer from New York (NY, USA). He plays violin, viola, mandolin, banjo, electric guitar, cello, bass, saxophone, percussion, piano and probably even more. He started playing music at an age of 9 and when he was 14 years old he started composing jazz and punk. He studied at Interlochen Arts Academy (Interlochen, MI, USA), than Eastman School of Music [Rochester, NY, USA). He was a member of Susie Kelly String Quartet, now he's a member of the Trinity on Wall Street Choir. +Married with [a=Martha Cluver]. +Needs Votehttp://www.calebburhans.comhttp://www.myspace.com/cburhansCBCaleb BurhausOssiaNewspeak (3)itsnotyouitsmeThe Unremembered Orchestra + +357468Malcolm SmithMalcolm John SmithBritish classical trumpeter and Professor of Trumpet. Born in Gloucester May 24, 1946; died in London June 19, 2001. +He studied at the [l290263]. Shortly after leaving the RCM, he became Principal Trumpet/Cornet with [a=BBC Concert Orchestra] (1969-1982). Former Co-Principal Trumpet of the [a=London Symphony Orchestra] (1982-1988). Principal Trumpet in the [a855061] from 1991. He was chairman of the ROH orchestra committee from 1997 to 2000. +Professor of Trumpet at the Royal College of Music. +Father of [a=Robin Smith (2)] & [a=Katie Smith (4)]. + +For the keyboardist/songwriter, member of [a=Fan Club], see [a=Malcolm Smith (2)]. +For the prog rock guitarist, see [a=Malcolm Smith (4)]. +For the countertenor, see [a=Malcolm Smith (5)]. +For the folk fiddler and guitarist, see [a=Malcolm Smith (6)]. +For the trombonist, see [a=Malcolm Smith (7)]. +For the bass vocalist, see [a=Malcolm Smith (10)].Needs Votehttps://www.theguardian.com/news/2001/jul/06/guardianobituaries.artsLondon Symphony OrchestraThe Martyn Ford OrchestraThe Academy Of Ancient MusicOrchestra Of The Royal Opera House, Covent GardenOrchestra Of The Age Of EnlightenmentLocke Brass ConsortBBC Concert OrchestraThe English Concert + +357482Dick Morgan (2)Dick Morgan played with a number of jazz and swing bands, including with Ben Pollack and Alvino Rey, but he is best known for his work with Spike Jones and His City Slickers. Also known as "Icky Face," Morgan was a natural for the band and contributed narrations and vocals in addition to playing guitar and banjo. His tenure ended after a fatal heart attack in 1953.Needs VoteD. MorganDick MoranDick Morgan And The Four FifthsDr. Richard MorganIcky MorganMorganRichard MorganI. W. HarperSpike Jones And His City SlickersBen Pollack And His Park Central OrchestraAlvino Rey And His OrchestraWhoopee MakersBen's Bad BoysPaul Mills And His Merry Makers + +357484Eddie Condon And His Hot ShotsCorrectEddie Condon's Hot ShotsEddie's Hot ShotsMezz MezzrowJack TeagardenJoe SullivanLeonard DavisEddie CondonGeorge StaffordHappy Caldwell + +357486Vic BertonVictor CohenAmerican jazz drummer and percussionist. +Co-composer of the song [i]"Sobbin' Blues"[/i] with [a584079] + +Born : May 07, 1896 in Chicago, Illinois. +Died : December 26, 1951 in Hollywood, California. +Needs Votehttps://en.wikipedia.org/wiki/Vic_Bertonhttps://syncopatedtimes.com/vic-berton-1898-1951/https://www.allmusic.com/artist/vic-berton-mn0000171053/biographyhttps://www.imdb.com/name/nm1938449/https://adp.library.ucsb.edu/names/111079BertonBurtonBurton/VictorDick BurtonV. BeronV. BertonV. BurtonV.BertonVic BurtonVic. BurtonVictorVictor BertonVictor BurtonVie BertonRed Nichols And His Five PenniesRoger Wolfe Kahn And His OrchestraPaul Whiteman And His OrchestraThe Charleston ChasersWillard Robison & His OrchestraThe Chicago LoopersThe HottentotsBailey's Lucky SevenVic Berton And His OrchestraThe Six HottentotsRayner's Dance Orchestra + +357487Frank "Josh" BillingsFrank Rhoads Billings.American jazz drummer. + +Born : February 14, 1905 in Chicago, Illinois. +Died : March 13, 1957 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/114361BillingsDillingsF. BillingsFrank BillingsJoe BillingsJosh BillingsJoshBillingsThe Mound City Blue BlowersRed McKenzie And The Celestial Beings + +357489Alfie EvansAlfred Lewis EvansAmerican reeds player in the early jazz era (Dixieland - Swing). Born June 20, 1904 in Olyphant, PA, died in 1991 in Florida. +He first learned to play violin. In 1923, he met [a299282] and switched to saxophone and clarinet to play at the Saxons Society Orchestra. Eventually, he played in numerous New York City based bands and had pesonal contact with a lot of famous personalities of Jazz in that time, as the Dorsey brothers or [a282067]. Starting from 1926, he began with recording music together with them. +Around 1954, Evans stopped recording activities and started as a teacher and ran a music store around 1960. +He retired in 1970 and moved to Deerfield Beach, FL. Needs VoteAlf EvansAlfred EvansEvansRoger Wolfe Kahn And His OrchestraIpana TroubadoursDr Henry Levine's Barefooted Dixieland PhilharmonicNBC's Chamber Music Society Of Lower Basin StreetJoe Venuti And His New YorkersFrank Farrell And His Greenwich Village Inn Orchestra + +357490Bill SchumannWilliam Schuman(b. Apr. 14, 1904; d. Dec. 1988). Cello player and violinist from the swing era.Needs VoteBill SchumanWilliam SchumanWilliam SchumannHarry James And His OrchestraArtie Shaw And His OrchestraPaul Whiteman And His OrchestraBen Pollack And His Park Central OrchestraBuddy Rogers And His OrchestraArtie Shaw And His Strings + +357491Gil BowersJazz pianist.Needs VoteGilbert BowersWingy Manone & His OrchestraJack Teagarden And His OrchestraBen Pollack And His OrchestraBob Crosby And His OrchestraAmanda Randolph And Her OrchestraGil Rodin And His Orchestra + +357492Carl KressCarl Kress (born October 20, 1907, Newark, New Jersey, USA - died June 10, 1965, Reno, Nevada, USA) was an American jazz guitarist and banjo player and husband of [a1950077]. + +Carl Kress started his career as banjo and guitar player, recording with the best white jazzmen of the 1920's, among them [a=Bix Beiderbecke]. In the 1930's, Kress became a central figure in the conception and perfecting of the jazz guitar duo. He was first heard in the company of [a=Eddie Lang] in 1932 ([i]Feeling My Way[/i]), then with [a=Dick McDonough] ([i]Chicken a la Swing[/i]) and [a=Tony Mottola] ([i]Jazz in G[/i]). In 1961, he formed a duo with [a=George Barnes] after working for a long time in studios and radio and television far from jazz. He was also the co-owner of the renowned Onyx Club, where many famous jazz musicians played.Needs Votehttps://en.wikipedia.org/wiki/Carl_Kresshttps://adp.library.ucsb.edu/names/103521C, KressC. KressC.KressCarl CressKarl KressKressLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraBoyd Senter & His SenterpedesPaul Whiteman And His OrchestraToots Camarata And His OrchestraBobby Hackett And His OrchestraGordon Jenkins And His OrchestraMiff Mole's MolersThe Big AcesYank Lawson And His OrchestraThe Charleston ChasersJimmy Dorsey And His Original "Dorseyland" Jazz BandBud Freeman And His OrchestraJack Teagarden's Dixieland BandThe Carl Kress SextetDeane Kincaide's BandAdrian's Ramblers + +357493Ben Pollack And His OrchestraOrchestra established by drummer Ben Pollack in the 1920s which was active until 1934. Later reformed as a swing big band with a different personnel in 1936.Needs VoteBen Pollack & Ben's Bad BoysBen Pollack & His Orch.Ben Pollack & His OrchestraBen Pollack & The Rhythm WreckersBen Pollack And His Orch.Ben Pollack And His Park Central OrchestraBen Pollack And Orch.Ben Pollack Big BandBen Pollack Orch.Ben Pollack OrchestraBen Pollack With His OrchestraBen Pollack's OrchestraBen Pollock And His OrchestraThe BandBen's Bad BoysThe Kentucky GrasshoppersLouisville Rhythm KingsThe Dean And His KidsThe New Orleans Ramblers (2)Jack TeagardenSterling BoseHarry James (2)Eddie Miller (2)Ray BauducMatty MatlockCharlie SpivakGil BowersGil RodinNappy LamareBen PollackJerry Johnson (3)Ralph CopseyAlex BellerRaymond CohenSammy TaylorFrank FredericoJamie McIntoshDick Morgan (7) + +357495Ruby WeinsteinJazz trumpeter. Also acted as recording supervisor for the Keynote Recordings label between 1940 and 1948.Needs VoteR. WeinsteinRuby WintersteinRueben WeinsteinWeinsteinBen Pollack And His Park Central OrchestraThe Charleston ChasersRichard Himber And His Ritz-Carlton Hotel OrchestraJoe Glover And His CollegiansMuggsy Spanier And His Orchestra + +357498Cliff StricklandAmerican jazz saxophonist (Tenor)Needs VoteClifton StricklandJack Teagarden And His Big EightBenny Goodman And His Orchestra + +357499Tommy GottArlan Thomas GottAmerican jazz trumpeter, cornetist, and bandleader. + +Born: March 2, 1895 in Waveland, Indiana. +Died: January 3, 1965 in San Joaquin County, California. + +Gott played (or recorded) with: Sam Lanin, Ben Selvin, Harry Reser, "California Ramblers", Joe Candullo, "Club Royal Orchestra", Zez Confrey, Roger Wolfe Kahn, Freddy Rich, Paul Whiteman (1921-1923), and with his own band (late 1920's - early 1930's). +Needs VoteRoger Wolfe Kahn And His OrchestraPaul Whiteman And His OrchestraArthur Lange And His OrchestraBailey's Lucky SevenThe Virginians (3)Lopez & Hamilton's Kings Of Harmony OrchestraThe Rose Room Orchestra (2)Blue Room OrchestraThe Four Musical MinstrelsTommy Gott And His Orchestra + +357500George StaffordAmerican jazz drummer, born c. 1898 in Ozarks, died Spring 1936 in New York. +Played with Sam Wooding, Charlie Johnson, Mezz Mezzrow, Eddie Condon, Jabbo Smith, Red Allen, Jack Teagarden and others. +His sister [a=Mary Stafford (2)] was a singer. +Needs Votehttps://en.wikipedia.org/wiki/George_Stafford_(musician)#:~:text=George%20Stafford%20(1898%2D1936),name%20Mary%20Stafford%20as%20well.https://www.allmusic.com/artist/george-stafford-mn0002148558/biographyhttps://adp.library.ucsb.edu/names/111078The Chocolate DandiesEddie Condon And His Hot ShotsMezz Mezzrow And His OrchestraThe Little Chocolate DandiesMezz Mezzrow And His Swing BandHenry "Red" Allen And His OrchestraCharlie Johnson & His OrchestraClarence Williams' Jazz KingsCharlie Johnson & His Paradise Band + +357501Arthur "Babe" CampbellJazz Age tuba playerNeeds VoteArthur CampbellBabe CampbellBabes CampbellRoger Wolfe Kahn And His Orchestra + +357502Vic BriedisLithuanian-American jazz pianist (born October 14, 1905 in Lithuania – died March 12, 1937 in Venturas, CA, USA) + +Born Vitold Briedis, Vic Briedis emigrated to the United States in 1910 and grew up in Chicago. He became a naturalized U.S. citizen in 1917. + +Briedis studied piano at the Beethoven Conservatory in Chicago. He soon became known as one of the best jazz pianists of Chicago. In 1926, he joined [a=Ben Pollack]'s band, with which he moved to New York City in 1928. In 1930, he became the regular accompanist of singer [a=Ruth Etting], and when she went to Hollywood in 1932, he followed along. + +In Hollywood, Briedis worked on film music and played an unnamed pianist in the 1936 movie "Cain and Mabel." In March 1937, he died in a car accident.Needs Votehttps://www.findagrave.com/memorial/88312857https://www-jazzhistory-lt.translate.goog/14/tekstai?_x_tr_sl=lt&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapphttps://worldradiohistory.com/Archive-Broadcast-Weekly/1932/Broadcast-Weekly-1932-12-04.pdfhttps://www.spauda2.org/vienybe/archive/1938/1938-01-08-VIENYBE.pdfhttps://books.google.com/books?id=vyVhAAAAIAAJ&pg=PA338&lpg=PA338&dq=%22victor+briedis%22++%2B+Chicago&source=bl&ots=uekULVbG-o&sig=ACfU3U3G2Tr32mKWzm8j9uBC6pxIu7_BFg&hl=en&sa=X&ved=2ahUKEwjFnI7L-Mf-AhUSCDQIHfQbA_YQ6AF6BAgeEAM#v=onepage&q=%22victor%20briedis%22%20%20%2B%20Chicago&f=falseBriedisVic BreidisBen Pollack And His Park Central OrchestraWhoopee MakersBen's Bad BoysPaul Mills And His Merry Makers + +357504Joe RaymondCorrectJoe Raymond And His OrchestraRoger Wolfe Kahn And His OrchestraJoe Raymond And His Orchestra + +357505Benny BonaccioAmerican (Italian born) jazz saxophonist (alto), clarinetist and bass clarinetist player. +Born September 04, 1903 in Mineo, Italy. +Died January 10, 1974 in Clearwater, Florida, USA. + +Bennie played in the bands of Lou Gold, Rudy Vallee, Paul Whiteman, André Kostalanetz, Morton Gould, Percy Faith and others.Needs VoteBennie BonaccioBennie BonacioBenny BonacioBonaccioBonacioMildred KIngFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +357508Gil RodinAmerican jazz saxophonist and clarinetist, songwriter and producer, born 9 December 1906 in Russia and died 10 June 1974 in Palm Springs, California, USA. +Played in the orchestras of Art Kahn (1924-1925), Harry Bastin (in California), Ben Pollack (1927-1934), Red Nichols, Bob Crosby and others. During the 1950s and 1960s Rodin was a producer for radio and TV.Needs Votehttp://en.wikipedia.org/wiki/Gil_Rodinhttps://www.imdb.com/name/nm0734844/https://adp.library.ucsb.edu/names/111955G RodinG. RobinG. RodinG.RodinGil RaodinGil RodenRobinRodenRodinJack Teagarden And His OrchestraBen Pollack And His Park Central OrchestraBen Pollack And His OrchestraBob Crosby And His OrchestraIrving Mills And His Hotsy Totsy GangWhoopee MakersBen Pollack And His CaliforniansPaul Mills And His Merry MakersGil Rodin's BoysGil Rodin And His Orchestra + +357510Jack BlandAmerican jazz banjoist and bandleader. +Played with : "Mound City Blue Blowers" (co-founded with Red McKenzie), Eddie Lang, Billy Banks, Pee Wee Russell, Red Allen, "Rhythmmakers", Vic Dickenson, Ike Quebec and others. Is also credited on the guitar. +In the 1950s retired from musical scene. + +Born : May 08, 1899 in Sedalia, Missouri. +Died : October, 1968 in Van Nuys (Los Angeles), California. +Needs Votehttps://adp.library.ucsb.edu/names/110439BlandBlandonJ. BlandRed McKenzie & His Music BoxThe RhythmakersThe Mound City Blue BlowersGeorge Wettling's Chicago Rhythm KingsRed McKenzie And The Celestial BeingsArt Hodes' ChicagoansBilly Banks And His Orchestra + +357511Nappy LamareJoseph Hilton LamareAmerican jazz banjoist, guitarist, and vocalist. +Born 14 June 1905 in New Orleans, USA. +Died 8 May 1988 in Newhall, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Nappy_Lamarehttps://www.allmusic.com/artist/nappy-lamare-mn0000858606https://www.imdb.com/name/nm0482830/https://adp.library.ucsb.edu/names/106406"Nappy" LamareH. La MareH. LaMareH. LamareHappy LemarHilton "Nappy" LamareHilton 'Nappy' LamareHilton (Nappy) LamareHilton La MarHilton LaMareHilton LamareHilton LeMareHilton Napoleon "Nappy" LamareJ. LamareJules LemareLa MareLaMareLamareLamarrLeMareMilton "Nappy" LamareMilton LamareN. LamareN.LamareNLNappy La MarNappy La MareNappy LaMarNappy LaMareNappy LamarNappy Lamare And Their Dixieland BandNappy LamarreNappy LamarteNappy LamereNappy LemareRaymond "Nappy" LamareHilton La MareWingy Manone & His OrchestraJack Teagarden And His OrchestraBob Crosby And The Bob CatsBen Pollack And His OrchestraEddie Miller And His OrchestraBob Crosby And His OrchestraJulia Lee & Her Boy FriendsWingy Manone's Dixieland BandLouis Prima & His New Orleans GangThe World's Greatest JazzbandPete Daily's Dixieland BandCloverdale Country Club OrchestraNappy Lamare And His BandEddie Miller's OctetNappy Lamare's Louisiana Levee LoungersThe Capitol JazzmenRay Bauduc And The Bob-CatsGil Rodin And His OrchestraNappy Lamare's Strawhat SevenHilton "Nappy" Lamare And His Rendezvous Ballroom Orch.Ray Bauduc - Nappy Lamare And Their Dixieland Band + +357512Ben PollackBen Pollack (born June 22, 1903 in Chicago, Illinois, USA - died June 7, 1971, Palm Springs, California, USA) was an American jazz drummer, singer and bandleader. He worked with artists like [a=Jack Teagarden], [a=Kay Starr], [a=Benny Goodman], [a=Eddie Lang] and [a=Joe Venuti], to name a few. In 1945 he founded his own record label [l=Jewel] and employed [a=Henry Stone] as an executive for A&R. + + +Needs Votehttp://en.wikipedia.org/wiki/Ben_Pollackhttp://www.redhotjazz.com/pollack.htmlhttps://adp.library.ucsb.edu/names/103192https://drumsinthetwenties.com/2017/11/20/heroes-7-ben-pollack-1903-1917B PollackB. PolackB. PollackBPBen PollakBenny PollackBenny/PollackL. PollackPolackPollacPollackPollack BenPollakPollockS. PollackS. PullackJim Bracken (2)New Orleans Rhythm KingsFriar's Society OrchestraBen Pollack And His Park Central OrchestraBen Pollack And His OrchestraBen's Bad BoysThe Stomp SixBen Pollack And His CaliforniansBen Pollack And His Pick-A-Rib BoysChico Marx And His OrchestraThe Dean And His KidsBen Pollack Dixie For Dancin'Jimmy Bracken's Toe Ticklers + +357513Jerry Johnson (3)Jazz bassist and band leader credited in the 1930's.Needs VoteJohnsonBen Pollack And His OrchestraJerry Johnson And His Orchestra + +357514The Mound City Blue BlowersJazz group, formed as a novelty trio in 1924 by [a=Red McKenzie] and [a=Dick Slevin]. Between 1929 and 1936 McKenzie used the name for various groups of up to ten players, including at different times [a=Eddie Condon], [a=Coleman Hawkins], [a=Gene Krupa], [a=Pee Wee Russell], [a=Muggsy Spanier], and [a=Jack Teagarden].Needs Votehttps://adp.library.ucsb.edu/names/108435McKenzie's Mound City Blue BlowersMcKenzies' Mound City Blue BlowersMind City Blue BlowersMound City BlowersMound City Blue BlowersMound City Blues BlowersRed McKenzie & The Mound City Blue-BlowersRed McKenzie And The Mound City Blue BlowersRed McKenzie And The Mound City Blue-BlowersRed McKenzie Und Die Mound City Blue-BlowersThe Mound City Blue-BlowersThe Mound City BlueblowersMcKenzie's Candy KidsRed McKenzie And The Celestial BeingsThe Dancing StevedoresGlenn MillerColeman HawkinsGene KrupaPee Wee RussellJimmy DorseyEddie LangJack TeagardenAl MorganRed McKenziePops FosterMuggsy SpanierEddie CondonFrank "Josh" BillingsJack BlandJack RussinDick SlevinBilly Wilson (18) + +357515Ralph CopseyJazz trombonist.CorrectRalph CopsyBen Pollack And His Orchestra + +357516Alex BellerAmerican violinist.CorrectA. BellerABAl BellerAlex Beller (AB)Alex L. BellerAlexander BellerBellerHarry James And His OrchestraArtie Shaw And His OrchestraBen Pollack And His Park Central OrchestraBen Pollack And His OrchestraHarry James & His Music Makers + +357702Donald BrownDonald Ray BrownKeyboard player - pianist - producer. + +Born on 28.03.1954 in Desoto, Mississippi +Needs Votehttp://www.donaldsilkbrown.comhttp://www.donaldsilkbrown.com/https://www.allmusic.com/artist/donald-brown-mn0000180014https://donaldbrown.bandcamp.com/D. BrownDon BrownDonald BrowneArt Blakey & The Jazz MessengersManhattan ProjectsDonald Byrd SextetSteve Nelson QuintetContinuum (10)Carl Allen & Manhattan ProjectsBill Easley SextetDonald Brown TrioThe Contemporary Piano EnsembleDezron Douglas QuartetRicky Ford Quintet + +357704Albert DaileyAlbert Preston DaileyAmerican jazz pianist and composer +Born June 16, 1938 in Baltimore, Maryland, died June 26, 1984 in Denver, Colorado (pneumonia) + +Albert worked with Art Blakey, Charles Mingus, Sonny Rollins, Stan Getz and others.Needs VoteA. DaileyAl DaileyAl Dailey, Jr.Al DaileyJr.Al DailyAlbert Dailey, Jr.Albert DailyDaileyGary Bartz NTU TroopArt Blakey & The Jazz MessengersWoody Herman And His OrchestraStan Getz QuartetLee Konitz QuintetGary Bartz QuintetWoody Herman And The Swingin' HerdArt Farmer QuintetDizzy Reece SextetWalt Dickerson QuartetReggie Workman FirstWoody Herman And The Thundering HerdRay Alexander QuintetAlbert Dailey TrioGeorge Coleman Quintet + +357910Bob Haggart And His OrchestraAmerican jazz orchestraCorrectBob Haggard & His OrchestraBob Haggard And His OrchestraBob Haggard OrchestraBob Haggart & His OrchestraBob Haggart And BandBob Haggart And His All-Star BandBob Haggart And His All-Star Band*Bob Haggart And His Orch.Bob Haggart And OrchestraBob Haggart Jazz BandBob Haggart Orch.Bob Haggart OrchestraBob Haggart Y Su OrquestaBob Haggart's OrchestraBob Haggart's BandBob Haggart's Orch.Bob Haggart's OrchestraBob Haggert & His OrchestraBobby Haggart And His OrchestraOrchestra Bob HaggartOrchestra Directed By Bob HaggartOrq. De Bob HaggartThe Bob Haggard OchestraThe Bob Haggart OrchestraAl KlinkCozy ColeGeorge KoenigArt DrelingerBilly ButterfieldJoe BushkinBobby TuckerBob HaggartToots MondelloTrigger AlpertHank RossBill StegmeyerBunny ShawkerJack GreenbergDan Perry (2)Milton Schatz + +357950Roy Eldridge And His OrchestraCorrectBandRoy "King David" Eldridge And His OrchestraRoy EldridgeRoy Eldridge & His OrchestraRoy Eldridge & StringsRoy Eldridge And His OrchRoy Eldridge And His V-DiscattersRoy Eldridge And OrchestraRoy Eldridge Et Son OrchestreRoy Eldridge OrchestraRoy Eldridge Y Su OrquestaRoy Eldrige & His OrchestraRoy “King Jazz” And His OrchestraIke QuebecHal SingerRay BrownBarney KesselOscar PetersonRaymond FolHerb EllisRoy EldridgeAlvin StollerClyde HartBuddy TateDuke JordanHarold "Doc" WestCharles GreenleeBenny VasseurDave McRaeZutty SingletonPrince RobinsonSandy WilliamsElmon WrightJoe EldridgeTeddy ColeGus AikenTed KellyJoe Thomas (4)John Collins (2)Cecil PayneRodney RichardsonTruck ParhamScoops CareyEli RobinsonBuster HardingWilliam BoucayaTed SturgisJohn McConnellFranz JacksonMarion "Boonie" HazelJohn Hamilton (6)Panama FrancisPorter KilbertElton HillSylvester LewisCarl Wilson (4)Albert FerreriGeorge RobinsonCarl PruittLes ErskineThomas GriderBobby Williams (6)Charles BowenTom ArchiaAndrew "Goon" GardnerRozelle GayleLeon AbramsonSam Allen (4)George LawsonTony D'AmoreBenny FemanDave Young (10)Sam Lee (5)Clarence Wheeler (2)Robert "Cookie" MasonGeorge Wilson (16)Christopher Johnson (9)Henry Clay (4)Louis CarringtonHarold WebsterSandy Watson (2)Al RidingAlbert B. TownsendMelvin SaundersLucius FowlerRichard Dunlap (3)James Thomas (37) + +358034Carlos VidalCarlos Vidal Bolado.Cuban (born) Latin jazz percussionist. +Born : July 02, 1914 in Matanzas, Cuba / Died : August 24, 1996 in Los Angeles, California. + +> For the Colombian arranger, composer, use [a2827245]Needs VoteC. VidalCarlos A. Vidal C.Carlos Vidal BoladoCarlos VidelThe Late Carlos VidalVidalVidal BoladoStan Kenton And His OrchestraCharlie Parker And His OrchestraTadd Dameron And His OrchestraHoward Rumsey's Lighthouse All-StarsMongo Santamaria Y Sus Ritmos Afro-CubanosEddie Cano And His SextetShelly Manne SextetMike Pacheco SextetAl Haig QuintetBob Romeo Sextet + +358126Joe FerranteJoseph Paul FerranteUS jazz trumpeter from the swing-era. Born 1921, died August 25, 2015 + +Needs Votehttps://www.feenotes.com/database/artists/ferrante-joe-1925-august-2016/https://www.dewittfh.com/obituaries/Joseph-Ferrante-2/#!/TributeWallJ. FerranteJoe FeranteJoe FerantiJoeseph FerranteJoseph FerranteJoseph Ferrante,Woody Herman And His OrchestraGene Krupa And His OrchestraCharlie Barnet And His OrchestraSauter-Finegan OrchestraGeorge Russell OrchestraWoody Herman And The Fourth HerdGeorge Williams And His OrchestraArt Farmer And His OrchestraBob Brookmeyer And His OrchestraChubby Jackson's Big BandSal Salvador And His OrchestraJoe Newman And His OrchestraJim Timmens And His Swinging BrassStan Rubin And His Tigertown Orchestra + +358127Gerald SanfinoGerald Thomas Sanfino.American jazz saxophonist, clarinetist and flutist +Born December 20, 1919 in New York City, New York, died December 14, 2011 in New York City, New YorkNeeds VoteGerald SafinoGerald SanfindGerry SanfinoJerry SanfinaJerry SanfinoGil Evans And His OrchestraWoody Herman And His OrchestraBenny Goodman And His OrchestraAlvino Rey And His OrchestraJohnny Richards And His OrchestraRichard Wess And His OrchestraZoot Sims And His OrchestraWoody Herman And The Fourth Herd + +358129Babe ClarkArthur F. ClarkeArthur "Babe" Clarke +American jazz saxophonist born in Birmingham, Alabama, USA. +Brother of [a342141] and [a337649] + +Dead: January 7, 1992 in East Brunswick, New Jersey (age 67)Needs Votehttp://www.allmusic.com/artist/babe-clarke-mn0000763693/biography"Babe Clark""Babe Clarke"Arthur "Babe" ClarkArthur "Babe" ClarkeArthur ClarkBaba ClarkBabe ClarkeBob ClarkeArthur ClarkeOliver Nelson And His OrchestraBabe Clark And His Horn SectionJohnny Hodges And His OrchestraJimmy Smith And The Big BandNew Pulse Jazz BandThe Leon Thomas Blues Band + +358504Assa DroriAmerican concertmaster and violinist from Los AngelesNeeds Votehttps://web.archive.org/web/20101216145546/http://home.cogeco.ca/~mansion1/assadrori.htmlhttps://www.imdb.com/name/nm1953313/https://www.feenotes.com/database/artists/drori-assa/A. DroriAsa DoriAsa DroriAssa DoriAssa DroiAssa Drori (concertmaster)Assa DroryAssa DruriAssa FroriAssa KroriAssai DroriAssi DroriDrori AssaOssa DroriThe Assa DroriThe NPG OrchestraPatrick Williams And His OrchestraLos Angeles Philharmonic OrchestraThe Wrecking Crew (6)Brent Fischer Orchestra + +358566Dizzy Gillespie SextetCorrectAll Star SextetteDizzie Gillespie SextetDizzie Gillespie SextettDizzy GillespieDizzy Gillespie & His SextetDizzy Gillespie (All Star Sextette)Dizzy Gillespie 6Dizzy Gillespie And His BandDizzy Gillespie And His Selected SextetDizzy Gillespie And His SextetDizzy Gillespie And His SextetsDizzy Gillespie Et Son SextetteDizzy Gillespie SextettDizzy Gillespie ShowcaseDizzy Gillespie Y Su OrquestaDizzy Gillespie-SextetSexteto Dizzy GillespieThe Dizzy Gillespie SextetСекстет Д. ГиллеспиArt BlakeyKenny BurrellDizzy GillespieCharlie ParkerJohn ColtraneSonny StittDexter GordonMilt JacksonKenny ClarkeBilly TaylorJ.J. JohnsonRay BrownPercy HeathBill GrahamAl JonesCozy ColeClyde HartCurly RussellAl HaigJimmy HeathShelly ManneSlam StewartRemo PalmieriStuff SmithBudd JohnsonChuck WayneFrank PaparelliKansas FieldsMurray ShipinskyJoe Harris (3)Irv KlugerJimmy Oliver (3) + +358567Clyde Hart All StarsCorrectClyde Art All StarsClyde Hart's All StarsClyde Harts All StarsDizzy Gillespie With Rubberleg Williams With Clyde Hart's All StarsRubberleg Williams With Clyde Hart's All StarsDizzy GillespieCharlie ParkerDon ByasClyde HartSpecs PowellTrummy YoungRubberlegs WilliamsMike BryanAl Hall + +358568Red Norvo And His Selected SextetCorrectRed Norvo & His Selected SextetRed Norvo And His Selected SeptetRed Norvo And His SextetRed Norvo SeptetDizzy GillespieCharlie ParkerTeddy WilsonFlip PhillipsSlam StewartRed NorvoSpecs PowellJ.C. Heard + +358833Buddy ClarkWalter Clark, Jr.American jazz bassist (July 10, 1929, Kenosha, WI - June 08, 1999, Granada Hills, CA). +He worked with [a=Bud Freeman], [a=Bill Russo], [a=Tex Beneke], [a=Les Brown], [a=Peggy Lee], [a=Red Norvo], [a=Dave Pell], [a=Jimmy Giuffre], and [a=Gerry Mulligan]. He was also part of the original band, [a=Supersax]. + +[b] For the 1930-40's vocalist, please use [a=Buddy Clark (3)]. [/b]Needs Votehttp://www.imdb.com/name/nm0163741/http://www.allmusic.com/artist/buddy-clark-p8269https://adp.library.ucsb.edu/names/362699Bud ClarkBuddyBuddy ClarkeBuddy ClarkyClarkWalter 'Buddy' ClarkWalter Buddy ClarkWalter ClarkWoody Herman And His OrchestraDizzy Gillespie Big BandThe Jimmy Giuffre TrioMarty Paich OrchestraArt Pepper QuartetShorty Rogers And His GiantsSupersaxJohnny Hodges And His OrchestraHerbie Mann's CaliforniansThe Frankie Capp Percussion GroupWoody Herman And The Swingin' HerdDave Pell OctetJohnny Richards And His OrchestraThe Marty Paich QuartetTerry Gibbs Big BandHot Rod Rumble OrchestraThe John Graas NonetJohnny Mandel OrchestraThe Five (5)Don Fagerquist OctetTerry Gibbs Dream BandThe Claude Williamson TrioJack Sheldon And His Exciting All-Star Big-BandMel Lewis SextetGerry Mulligan GroupAndré Previn EnsembleDon Fagerquist NonetteRay Sims With StringsRonny Lang SaxtetThe Bob Keene QuintetBilly Usselton SextetJoanne Grauer TrioJack Quigley TrioPete Jolly DuoJohn Graas Quintet + +358834Lee KatzmanAmerican trumpet player, flugelhorn player and band leader. +Born 17 May 1928 In Chicago, Illinois, USA. Died 1 August 2013. +He studied music at the University of Indiana. He left to play on the road with Claude Thornhill, Les Brown, Charlie Barnet, Stan Kenton, and Benny Goodman. He also played in the big bands of Gene Krupa, Sam Donahue, Buddy Rich, and Jimmy Dorsey, +Father of [a=Theo Katzman].Needs Votehttps://en.wikipedia.org/wiki/Lee_KatzmanKatzmanKatzman, LeeL. KatzmanBaja Marimba BandStan Kenton And His OrchestraRussell Garcia And His OrchestraBill Holman And His OrchestraOrchestra Chris ReynoldsSam Donahue And His OrchestraBill Holman's Great Big BandJimmy Rowles SeptetTerry Gibbs Dream BandBill Holman / Mel Lewis QuintetThe Delaware Water Gap Civic BandThe Lee Katzman Quartet + +359067Tatiana GrindenkoТатьяна Тихоновна ГринденкоTatyana Grindenko (born March 29, 1946, Kharkov) is a Soviet and Russian violinist. People's Artist of the Russian Federation (2002). +She began studying music at the age of six at the Kharkov Secondary Specialized Music School at the Conservatory (class of A. Kozlovicher), then studied in Leningrad and Moscow. +Her first public performance was at the age of 8, when she performed Bach's works with a symphony orchestra. +She graduated from the [l285011]. In 1970, she won the Tchaikovsky Competition, taking 4th place. +In 1972, she won the Wieniawski International Violin Competition. Since 1974, she has been a soloist at Mosconcert. +In 1976, she joined the rock group "Boomerang" = [a2982613], and then the rock group "Forpost". She served as a choirmaster in the church. In 1978-1988, she was banned from public performances and traveling abroad. Nevertheless, in 1982 she created the ensemble "Academy of Ancient Music", which quickly gained fame. +Since 1989, she has been giving concerts widely in Russia and abroad. In 1999, she created the chamber ensemble "[a976859]". +Brother - [a2629981] (born 1950) - gamboist and choirmaster, head of the [url=https://www.discogs.com/ru/artist/1613726]group "Old Russian Chant"[/url] (1983), whose main goal is to promote the ancient traditions of Russian church singing on the concert stage. +Husband - composer [a1480724]. +She was married to violinist [a359068].Needs Votehttps://ru.wikipedia.org/wiki/%D0%93%D1%80%D0%B8%D0%BD%D0%B4%D0%B5%D0%BD%D0%BA%D0%BE,_%D0%A2%D0%B0%D1%82%D1%8C%D1%8F%D0%BD%D0%B0_%D0%A2%D0%B8%D1%85%D0%BE%D0%BD%D0%BE%D0%B2%D0%BD%D0%B0https://en.wikipedia.org/wiki/Tatiana_Grindenkohttps://www.mariinsky.ru/en/company/orchestra/violin/tatiana_grindenko/GrindenkoT. GrindenkoT. GrindienkoTatiana GridenkoTatiana GrindienkoTatjana GrindenkoTatyana GrindenkoТ. ГридненкоТ. ГринденкоТатьяна ГринденкоТатьяны ГринденкоOpus PosthБумеранг (2) + +359068Gidon KremerGidons KrēmersLatvian violinist and conductor, born February 27, 1947 in Riga. +In 1981 he founded a chamber music festival in Lockenhaus, Austria, named "Kremerata Musica" since 1992. +In 1996 he formed a chamber ensemble, [a=Kremerata Baltica]. +He plays a various repertoire from Vivaldi and Bach to contemporary composers such as Astor Piazzolla, Philip Glass, Alfred Schnittke, Lera Auerbach, Arvo Pärt, John Adams & Luciano Berio.Needs Votehttps://www.gidonkremer.net/https://en.wikipedia.org/wiki/Gidon_KremerDuidon KremerG. KremerGKGideon KremerGidon Kremer & FriendsGidon KrémerGidons KrēmersGuidon KramerGuidon KremerKramerKremerГ. КремерГидон Кремерギドン・クレーメルギドン・クレーメルクレメールKremerata BalticaThe Astor QuartetKremerata MusicaGidon Kremer & Friends + +359080Jimmy PriddyJames Robert PriddyAmerican jazz trombonist. +Born : October 03, 1918 in West Virginia (U.S.A.) +Died : December 27, 1990 in Los Angeles County, California (U.S.A.) + +James "Jimmy" Priddy worked in the years 1930s and 1940s in the Big Band of Glenn Miller (and in other bands). +Correct11 to 19Cpl. Jimmy PriddyJames "Jimmy" PriddyJames 'Jimmy' PriddyJames PriddyJames Priddy Sr.James Priddy, Sr.James R. PriddyJim PriddyJimmy PriddiJimmy PridyS/Sgt. Jimmy PriddyStaff Sgt. Jimmy PriddyHarry James And His OrchestraThe Glenn Miller OrchestraGlenn Miller And His OrchestraHenry Mancini And His OrchestraBenny Goodman And His OrchestraJerry Gray And His OrchestraDan Terry And His OrchestraJimmy Priddy And His Big BandThe Army Air Force Band + +359081John HalliburtonAmerican jazz trombonist +Born April 02, 1924, died May 01, 1987 in Los Angeles, California + +John played with, among others, [a276034] +Needs VoteJames HalliburtonJohn HaliburtonJohn R. HalliburtonJohnny HaliburtonJohnny HalliburtonJonny HalliburtonPfc. Johnny HalliburtonSgt. John HalliburtonSgt. Johnny HalliburtonStan Kenton And His OrchestraHenry Mancini And His OrchestraIke Carpenter And His OrchestraShorty Rogers And His OrchestraGlenn Miller And The Army Air Force BandJerry Gray And His OrchestraBobby Troup And His Stars Of JazzBob Cooper NonetDan Terry And His OrchestraThe Army Air Force BandThe Tom Talbert Jazz Orchestra + +359083Maurice HarrisAmerican jazz trumpet playerNeeds VoteMaurice HarrieMaurie HarrisMaurrie HarrisMaury HarrisMorrie HarrisWoody Herman And His OrchestraStanley Wilson And His OrchestraHot Rod Rumble Orchestra + +359085Karl De KarskeAmerican jazz trombonist.Needs VoteCarl De KaraskeCarl De KarskeCarl DeKarskeCarl de KarskeCarl deKarskeK. de KarskeKarl De KarsheKarl De KorseKarl DeKarskeKarl DekarskeKarl J. DeKarskeKarl de KarskeKirk De KarskeTommy Dorsey And His OrchestraWoody Herman And His OrchestraHenry Mancini And His OrchestraWoody Herman And The Swingin' Herd + +359087John CaveHornist.Needs VoteCaveJack CaneJack CaveJohn "Jack" CaveJohn W. "Jack" CaveJohn W. CaveHarry James And His OrchestraWoody Herman And His OrchestraHenry Mancini And His OrchestraGordon Jenkins And His OrchestraRed Norvo And His OrchestraWoody Herman & The HerdBill Holman's Great Big BandLou Bring And His OrchestraRalph Carmichael OrchestraJohnny Richards And His OrchestraThe Los Angeles Neophonic OrchestraThe Horn Club Of Los AngelesPete Rugolo And His All Stars + +359105Ralph CollierRalph Sylvanus CollierAmerican jazz drummer. Born June 25, 1919, died September 5, 2010Needs Votehttps://adp.library.ucsb.edu/names/309157R. CollierRalph ColierRalph S. CollierHarry James And His OrchestraBenny Goodman SextetStan Kenton And His OrchestraHenry Mancini And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraThe Universal-International Orchestra + +359106Bob EnevoldsenRobert Martin EnevoldsenAmerican arranger, trombonist, tenor saxophonist and bassist, born September 11, 1920, Billings, Montana, died November 19, 2005. +Moved to Los Angeles in 1951, playing with many West Coast jazz musicians. He played in shows in Las Vegas 1959-1962, then worked as staff arranger and studio musician for Steve Allen's TV show 1962-1964. From mid-1960s active mainly as a session and freelance musician in Los Angeles. +Needs Votehttps://en.wikipedia.org/wiki/Bob_Enevoldsenhttps://www.bluenote.com/artist/bob-enevoldsen/https://www.allmusic.com/artist/bob-enevoldsen-mn0000763322/biographyhttps://www.imdb.com/name/nm0256954/https://adp.library.ucsb.edu/names/202953B. EnevoldsenBob EneveldsonBob EnevoldenBob EnevoldesBob Enevoldsen OrchestraBob EnevoldsonBob EnovoldsenBob EnovoldsonBob EnvoldsenBob EnvoldsonBobbie EnevoldsenBobby EnevoldsenBobby EnvoldsenEnevoldsenRobert EnevoldsenBuddy Rich And His OrchestraShelly Manne & His MenRussell Garcia And His OrchestraGerry Mulligan TentetteShorty Rogers And His GiantsShorty Rogers And His OrchestraThe Marty Paich Dek-TetteHoward Rumsey's Lighthouse All-StarsLeith Stevens & His OrchestraTerry Gibbs And His OrchestraDave Pell OctetThe Howard Roberts QuartetDennis Farnon And His OrchestraThe Bill Holman BandThe Jack Lesberg SextetMarty Paich Big BandShorty Rogers Big BandThe Lennie Niehaus OctetThe Alan Copeland SingersThe John Graas NonetJimmy Rowles SeptetBud Shank And Three TrombonesShorty Rogers And His Augmented "Giants"Bobby Troup And His Stars Of JazzDon Fagerquist OctetBobby Troup QuintetDan Terry And His OrchestraLeonard Feather's West Coast StarsBill Holman OctetThe Marty Paich OctetHerbie Harper QuintetBob Enevoldsen QuintetAndré Previn EnsembleLeonard Feather's West Coast JazzmenBobby Troup And His OrchestraRoger Neumann's Rather Large BandHarry Babasin QuintetThe Tom Talbert Jazz OrchestraThe Wrecking Crew (6)Jack Sheldon OrchestraFive BrothersThe Marty Paich SeptetMark Masters EnsembleBob Troup TrioArt Pepper + ElevenJohn Williams And Co. + +359107Rolly BundockRoland E. Bundock.American jazz bassist and composer; born February 20, 1915 in Wallingford, Connecticut, died April 08, 1998 in Meriden, Connecticut +Played with Tex Beneke, Glenn Miller, Les Brown, Benny Goodman, Tommy Dorsey and othersNeeds Votehttps://www.imdb.com/name/nm2797699/BundockR. BundockRoland BundocRoland BundockRoland E. BundockRollie BundockRonald BundockRowland "Rolly" BundockRowland (Rolly) Edward BundockRowland BuncockRowland BundockRowland BundrockRowland “Rolly” Bundockroland bundockLes Brown And His Band Of RenownThe Glenn Miller OrchestraGlenn Miller And His OrchestraHenry Mancini And His OrchestraThe SurfmenThe Universal-International OrchestraL'Ensemble Instrumental Des IlesDave Pell OctetJerry Gray And His OrchestraThe Phil Moody QuintetPaul Nero & His Hi FiddlesRay Rasch And The Pipers 10Hall Daniels' Octet + +359148Call CobbsHarvey Call Cobbs Jr.American jazz pianist (Urbana, Ohio, January 30, 1911 – New York City, September 21, 1971)Needs VoteC. CobbsCal CobbsCal CobsCall CobbcsCall Cobbs Jr.Carl CobbsAlbert Ayler QuintetJohnny Hodges And His Orchestra + +359216Frank LloydHorn player. +Born in 1952, Cornwall, U.K. +From 2005 to 2006, President of the International Horn Society.Needs Votehttp://en.wikipedia.org/wiki/Frank_Lloyd_%28horn_player%29F. LloydFranck LloydFrank LoydLloydThe London Session OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraRoyal Scottish National OrchestraPhilip Jones Brass EnsembleThe Nash EnsembleGerman Brass + +359225Ted LewisTheodore Leopold FriedmanAmerican jazz bandleader, entertainer, singer and clarinetist. + +Lewis started his recording career in 1917, playing clarinet in [a=Earl Fuller's Famous Jazz Band]. That band tried to copy the style of the [a=Original Dixieland Jazz Band] after the ODJB had had a tremendous success with its jazzy "Livery Stable Blues" earlier that year. + +In 1919, Lewis founded his own band. Playing a combination of jazz and dance music, the band became very popular, not least because it included well-known jazz musicians such as [a=Muggsy Spanier] on trumpet and [a=George Brunies] on trombone. Other distinguished musicians that recorded with Lewis' band, but more briefly, include [a=Benny Goodman], [a=Jimmy Dorsey], and [a=Don Murray (2)] on clarinet. Lewis' catchphrase was "Is Everybody Happy?" which itself became the title of a 1929 movie featuring his band. + +For many years, Ted Lewis recorded exclusively for [l=Columbia], which honored him with his own picture label (1929-1933), a special distinction he shared only with [a=Paul Whiteman]. In 1934, however, Lewis switched to a new start-up label, [l=Decca], for which he re-recorded many of his earlier hits, such as "When My Baby Smiles at Me," "Wear A Hat With A Silver Lining" or "The Sweetheart Of Sigma Chi." + +Born: June 06, 1890 in Circleville, Ohio. +Died: August 25, 1971 in New York City, New York.Needs Votehttp://en.wikipedia.org/wiki/Ted_Lewis_%28musician%29https://www.tedlewismuseum.org/ted-lewis-biography-1955https://www.imdb.com/name/nm0507792/https://www.findagrave.com/cgi-bin/fg.cgi?page=gr&GSvcid=492485&GRid=8728&http://adp.library.ucsb.edu/index.php/talent/index?Talent[search][Operator][1]=And&Talent[search][Name][1]=Ted+Lewis&Talent[search][Title][1]=&Talent[search][Operator][2]=And&Talent[search][Name][2]=&Talent[search][Title][2]=&Talent[search][Operator][3]=And&Talent[search][Name][3]=&Talent[search][Title][3]=&yt0=Searchhttp://www.loc.gov/jukebox/search/results?q=Ted%20Lewishttps://adp.library.ucsb.edu/names/106786LewisT. LewisTedTed Lewis (Old Version)Ted Lewis And His BandTed LouisTed Lewis And His BandEarl Fuller's Famous Jazz BandTed Lewis And His OrchestraTed Lewis And His Jazz Band + +359551Rudy TraylorRudolph TraylorJazz drummer, vibraphonist, pianist, arranger, producer. +Played in Philadelphia in later part of 1930s, with [a=Earl Hines], [a=Hot Lips Page] and others 1941-1942. Served in the US army from 1942 to 1946. Studied at Julliard after WWII. With [a=Noble Sissle] 1948-1951. Played in Broadway theatre orchestras, worked as studio musician, then A&R work for record companies, musical director for vocal groups, visited Europe in late 1950s. From 1957 onwards recording supervisor, arranger and producer for [l12201]. +b.: Aug. 28, 1918 in Providence, RI +d.: May 22, 1992Needs Votehttps://www.allmusic.com/artist/rudy-traylor-mn0000845288/biographyhttps://musicianbio.org/rudy-traylor/https://adp.library.ucsb.edu/names/347517R TraylorR. TraylorRudolph TaylorRudolph TraylorRudy TaylorEarl Hines And His OrchestraRudy Traylor's Orchestra + +360222Richie KamucaRichard KamucaAmerican jazz tenor saxophonist, born July 23, 1930 in Philadelphia, Pennsylvania, died July 22, 1977 in Los Angeles, California, USA. + + +Needs Votehttps://en.wikipedia.org/wiki/Richie_Kamucahttps://www.sandybrownjazz.co.uk/JazzRemembered/RichieKamuca.htmlhttps://adp.library.ucsb.edu/names/324573KamucaR. KamucaRichard KamucaRichi KamucaRichie CamucaRichie KamuchaRichie KamukaRichie KaumkaRichy KamucaRitchie KamucaWoody Herman And His OrchestraStan Kenton And His OrchestraShelly Manne & His MenMarty Paich OrchestraShorty Rogers And His OrchestraChet Baker SextetManny Albam And His Jazz GreatsBill Holman And His OrchestraThe Gary McFarland SextetWoody Herman's Big New HerdThe Frankie Capp Percussion GroupWoody Herman And The Swingin' HerdBill Holman's Great Big BandWoody Herman And The Las Vegas HerdCy Touff QuintetJohnny Richards And His OrchestraWoody Herman BandShorty Rogers Big BandTerry Gibbs Big BandJimmy Giuffre's OrchestraWoody Herman And His Third HerdWoody Herman And The Fourth HerdThe Richie Kamuca QuartetFrank Rosolino QuintetDick Collins And His OrchestraCy Touff OctetThe Buddy Bregman BandTerry Gibbs Dream BandLeroy Vinnegar QuartetStan Levey SextetBill Berry And The LA BandThe Chet Baker-Art Pepper SextetThad Jones & Mel LewisThe Mel Lewis SeptetStan Levey QuintetAl Cohn-Richie Kamuca SextetRoy Eldridge - Richie Kamuca QuintetWoody Herman And His OctetWoody Herman And The Swingin' Herd (2)Art Pepper + ElevenRichie Kamuca Bill Holman OctetJohn Williams And Co. + +360223Peter LittmanDrummer.Needs VotePeter LitmanPeter LittmannChet Baker QuartetThe Chet Baker QuintetChet Baker & CrewDick Twardzik TrioThe Boots Mussulli QuartetPhil Urso-Bob Burgess QuintetCharlie Mariano Quintet + +360956Jean-Jacques TilchéFrench jazz guitarist and producerNeeds VoteJ-J TilcheJ-J. TilchéeJ. J. TilcheJ. J. TilchéJ.-J. TilcheJ.-J. TilchéJ.J TilchéJ.J. TilcheJ.J. TilcherJ.J. TilchéJ.J.TilcheJean Jacques TilchéJean Louis TilcheJean-Jacques TielcheJean-Jacques TilchePhoto J.J TilcheTilcheTilchéJean-Jacques TilkayRex Stewart And His OrchestraDon Byas And His OrchestraDon Byas QuintetTyree Glenn & His OrchestraDon Byas Ree-BoppersDizzy Gillespie And His Operatic StringsJean-Jacques Tilché Et Son Ensemble + +361065Avron ColemanAmerican classical violinist and cellist born November 21, 1930 in Brooklyn, New York. Member of the New York Philharmonic Orchestra from 1958, retired in 1997. +He is starring in the 2002 movie "The Cellist".Needs VoteNew York Philharmonic + +361091Harry ZaratzianAmerican violist and violinist, born 1922 in Alexendria, Egypt and died 2013 in Westchester, New York, United StatesNeeds VoteHarry ZarathianHarry ZaratzoamHarry ZarazianHarry ZarotzianHarry ZavatzianHary ZaratzianThe Philadelphia OrchestraNew York PhilharmonicHouston Symphony OrchestraCantilena Chamber PlayersThe Kroll Quartet + +361105William GreenWilliam Ernest GreenAmerican jazz saxophone, clarinet, flute, oboe and other woodwinds player and music teacher. +Born February 28, 1925 in Kansas City, Kansas, died July 29,1996 in Los Angeles, California. + +[b]For the Soul/Funk producer and songwriter, colleague of [a=Theodore Life], use [a=Bill Greene]. +For the Atlanta based Jazz pianist and composer, please use [a1545862][/b]. + +Bill played (and recorded) with : [a=Benny Carter], [a=Louis Bellson], [a=Nat King Cole], [a=Peggy Lee], [a=The Clayton-Hamilton Jazz Orchestra], [a=Frank Sinatra], [a=The Capp/Pierce Juggernaut], [a=Ella Fitzgerald], [a=Lionel Hampton], [a=Tony Bennett] and others. +He also taught at the Los Angeles Conservatory of Music from 1952 to 1962 and then to the Los Angeles Conservatory, California State University and the University of Southern California. +Green's personal papers and recordings are held in an archive at UCLA.Needs Votehttps://en.wikipedia.org/wiki/Bill_Green_(musician)https://lajazz.org/programs/bill-green-mentorship-program/https://oac.cdlib.org/findaid/ark:/13030/tf9s201041/entire_text/https://snaccooperative.org/view/1200039https://www.jazzwax.com/p/william-green-shades-of-green-1963"Mean" Bill GreenB. GreeneBill GreebBill GreenBill Green, Jr.Bill GreeneBilly GreenGreen WilliamW. GreenW. GruneWilliam "Bill" GreenWilliam "Bill" GreeneWilliam E. GreenWilliam Earnest GreenWilliam GreenWilliam GreeneWillie GreenWm. GreenGerald Wilson OrchestraThe Monterey Jazz Festival OrchestraLouie Bellson OrchestraThe Black Boy OrchestraThe Gene Harris All Star Big BandThe Clayton-Hamilton Jazz OrchestraLouie Bellson Big BandSouth Central Avenue Municipal Blues BandThe Matt Catingub Big BandThe Chico Hamilton OctetRed Callender And His Modern OctetHerschel Burke Gilbert OrchestraBuddy Collette OctetCarol Kaye And The Hitmen + +361252Iain KingBritish violin/viola player and teacher, born in Scotland, UK and residing in Ballina, Ireland. +He graduated from [l305416]. First Violin in the [a=Philharmonia Orchestra] followed by Assistant Leader of the [a415725]. Guest Leader with many European orchestras. In addition to his classical career, he has worked on commercial recordings, including film and TV soundtracks and pop recordings.Needs Votehttps://www.mayoschoolofmusic.com/Iain-Kinghttps://www.imdb.com/name/nm1274303/Ian KingEnglish Chamber OrchestraThe London Telefilmonic OrchestraPhilharmonia OrchestraCapricorn (14) + +361261Joanna LevineClassical cello and viol player. +Levine studied cello and viola da gamba at the Guildhall School of Music. She joined Fretwork in 2017.Needs Votehttps://www.joannalevine.co.uk/Jo LevineJoanne LevineFretworkNew London ConsortCollegium Musicum 90ConcordiaEnsemble CordariaPalladian EnsembleEx Cathedra Baroque Orchestra + +361385Marc ChantereauMarc Henri ChantereauFrench keyboardist, percussionist. +He has played a big role in the french electronic and disco scene. +Born: December 1, 1947 in Paris. +Dead: December 25, 2024.Needs VoteAlain ChantereauChantereauChantreauM. ChamtereauM. ChanterauM. ChanterauxM. ChantereauM. ChantreauM. ChatereauM.ChantereauMarcMarc ChanterauMarc ChanterrauMarc ChanterreauMarc ChantreauMarc ChontereauMark ChantereauNarc ChantereauMarc EcclesfieldVoyageChantereau, Dahan & PezinCrystal GrassJean-Claude Petit Et Son OrchestreArpadysSynthesis (6)CCPPMichel Lorin Et Son EnsembleEnsemble De Percussion De ParisDisco & CoIvan Jullien Big BandThe RoadmastersParis Symphonic OrchestraL'Ensemble Instrumental Aït El Khédir + +361389Mike HurwitzMichael HurwitzBritish cello player and teacher, born in 1949 +In 1970 he played with [a=Centipede (3)]. Five years later he became a member of the [a=Amphion String Quartet] and remained with them for fifteen years before taking the position of the 4th cellist at the [a=Philharmonia Orchestra] (June 1989 - February 2016). Michael, his wife [a=Miriam Keogh] and their son Raphael Leo are members of the [b]Goldcrest Ensemble[/b]. He was a teacher at the [l680970] for a decade but left and became a private tutor. +Son of [a=Emanuel Hurwitz]. (Raphael Leo and his brother Alex are members in the band [b]Developers[/b]).Needs Votehttps://www.facebook.com/michael.hurwitz.18https://uk.linkedin.com/in/michael-hurwitz-21328138https://www.feenotes.com/database/artists/hurwitz-michael-1949-present/https://stmaryswivenhoe.files.wordpress.com/2019/12/about-the-goldcrest-ensemble-2019.pdfMichael HurvitzMichael HurwitzThe Martyn Ford OrchestraCentipede (3)Philharmonia OrchestraThe London Cello SoundMichaelangelo Chamber OrchestraAmphion String Quartet + +361417Franco PisanoFrancesco PisanoFranco Pisano (Cagliari, December 10, 1922 - † Rome, January 6, 1977) was an Italian composer and conductor. The older brother of [a=Berto Pisano].Needs Votehttp://it.wikipedia.org/wiki/Franco_Pisanohttps://www.imdb.com/name/nm0685403/?ref_=nv_sr_srsg_0https://en.wikipedia.org/wiki/Franco_PisanoB. PisanoBerto PisanoE. PisanoF .PisanoF PisanoF. PisanaF. PisanoF.PisanoFrancesco PisanoMo Franco PisanoM° Franco PisanoPisanoPizanoPerecocaFranco Pisano E La Sua OrchestraFrank Pisano And His StyleOrchestra Gli AsternovasFranco Pisano E Il Suo ComplessoFranco Pisano E La Sua Orchestra E CoroFrank Pisano And His OrchestraComplesso Swing Sotto L'egida Dello Hot Club Torino + +361423Giulia AlessandroniGiulia Alessandroni (née De Mutiis)Giulia Alessandroni, also known by her maiden name [a3020943] (born 19 January 1938, Rome, Italy - died 19 January 1984, Sesto Calende, Italy) was an Italian singer, composer and lyricist. Married to [a=Alessandro Alessandroni] with whom she had two children [a4240279] and [a454181].Needs Votehttps://it.wikipedia.org/wiki/Giulia_De_MutiisGiuliaGiulia Alessandroni AKA KEMAGiulia Alessandroni [Née De Muittis] AKA KEMAGiulio AlessandroniKema (4)Giulia De MutiisI Cantori Moderni di Alessandroni + +361544Mitch MillerMitchell William MillerAmerican musician, singer, conductor and record producer. +Miller began his musical career as a player of the oboe & English horn. +He was head of A&R for both Mercury Records and Columbia Records. +Popular for his NBC's TV Show [i]Sing Along with Mitch[/i] (1961-1964). + +Born July 04, 1911 in Rochester, New York. +Died July 31, 2010 in New York City, New York. +Miller was a graduate of the Eastman School of Music and a classically trained oboist.Needs Votehttp://en.wikipedia.org/wiki/Mitch_Millerhttps://www.imdb.com/name/nm0589022/https://fromthevaults-boppinbob.blogspot.com/2018/07/mitch-miller-born-4-july-1911.htmlhttps://adp.library.ucsb.edu/names/116418AM. MillerMich MillerMillerMitchMitch Miller And ChorusMitch Miller And OrchestraMitchel MillerMitchell "Mitch" MillerMitchell MillerMitchell Miller,Митч Миллер밋치 미러Mitch Miller & His OrchestraCharlie Parker With StringsMitch Miller And The GangMitch Miller, The Sing-Along Chorus And The Flower Drum KidsMitch Miller And His Sing-Along ChorusMitch Miller And His Orchestra And ChorusMitch Miller & Horns & ChorusMitch Miller And The Brass, Piccolos And DrumsMel Powell And His OrchestraThe Alec Wilder OctetMitch Miller SingersFrank Sinatra And His OrchestraMitch Miller And His Horns + +361592The Hilliard EnsembleClassical vocal ensemble founded in 1974, disbanded in 2014.Needs Votehttps://en.wikipedia.org/wiki/Hilliard_Ensemblehttps://www.bach-cantatas.com/Bio/Hilliard-Ensemble.htmhttps://ecmrecords.com/artists/the-hilliard-ensemble/https://web.archive.org/web/20150828070828/http://www.hilliardensemble.demon.co.uk/https://www.audivivocem.org/https://www.facebook.com/profile.php?id=100063457837010Ensemble HilliardHilliard EnsembleHilliard-EnsembleThe Hilliard EnseThe Hilliard-Ensembleヒリヤード・アンサンブルSarah LeonardPaul HillierRogers Covey-CrumpGordon Jones (2)Paul ElliottDavid James (13)Charles BrettMark PadmoreDavid BeavanAshley StaffordMichael ChanceCharles Daniels (2)Robert MacdonaldLynne DawsonNicolas RobertsonLeigh NixonJudith NelsonJohn Potter (2)Rebecca OutramGillian FisherMichael George (3)David Gould (5)Errol GirdlestonePhilip CaveSteven HarroldJoanne LunnWilliam PurefoyAllan ParkesKristine SzulikMonika MauchMarie-Louise DählerJohn Nixon (5)Sarah StobartAlex Donaldson + +361600Rogers Covey-CrumpEnglish tenor vocalist, former boy alto (born March 24, 1944 in St Albans, Hertfordshire, England).Needs Votehttps://en.wikipedia.org/wiki/Rogers_Covey-Crumphttps://www.bach-cantatas.com/Bio/Covey-Crump-Rogers.htmhttps://www.audivivocem.org/rcc/biography.htmCovey-CrumpR. Covey-CrumpR.C.Roger Covey-CrumpRogers CoveyRogers Covey CrumpThe Hilliard EnsembleThe English Chamber ChoirSingcircleThe Academy Of Ancient MusicDeller ConsortTaverner ChoirTaverner ConsortThe Consort Of MusickeGothic Voices (2)The King's ConsortThe Medieval Ensemble of LondonSchütz ConsortThe London Early Music GroupThe Alban SingersYorkshire Bach Choir + +361603Dennis Russell DaviesDennis Russell DaviesAmerican conductor and pianist, born 16th April 1944 in Toledo, Ohio. + +Co-founder of [a=American Composers Orchestra].Needs Votehttp://dennisrusselldavies.com/https://en.wikipedia.org/wiki/Dennis_Russell_DaviesD. R. DaviesD. Russell DaviesD.R. DaviesDaviesDenis Russel DavisDennis DaviesDennis Russel DaviesDennis Russell DavisRussell DaviesAmerican Composers OrchestraBruckner Orchestra LinzRSO Wien + +361605Gordon Jones (2)Bass / Baritone vocalist & Liner Notes authorNeeds Votehttps://www.bach-cantatas.com/Bio/Jones-Gordon.htmhttps://www.allmusic.com/artist/gordon-jones-mn0000114082JonesThe Hilliard EnsembleThe English Concert ChoirPro Cantione AntiquaKammerchor StuttgartThe Schütz Choir Of London + +361606Christopher Bowers-BroadbentChristopher Bowers-BroadbentEnglish organist and composer.Needs Votehttps://en.wikipedia.org/wiki/Christopher_Bowers-BroadbentC. Bowers-BroadbentChristopher Bouver-BroadbentChristopher Bowers BroadbentChristopher Bowerz-BroadbentTheatre Of Voices + +361608Thomas DemengaThomas DemengaCellist and composer born 1954 in Berne, Switzerland.Needs Votehttp://www.thomasdemenga.ch/https://de.wikipedia.org/wiki/Thomas_DemengaDemengaT. DemengaTh. DemengaI MusiciCamerata Bern + +361752Buzzy BraunerStanley BraunerJazz saxophonist and session woodwind player.Needs Vote"Buzz" BraunerBuzz BaunerBuzz BraunerBuzzt BraunerStan BraunerStanley "Buzz" BraunerStanley (Buzz) BraunerStanley BraunerTommy Dorsey And His OrchestraRichard Maltby And His OrchestraThe Dorsey Brothers OrchestraJimmy Dorsey, His Orchestra & ChorusThe Richard Maltby Octet + +361757Al CobbsAlfred CobbsJazz trombonist who is often mentioned with his full name Alfred Cobbs. + +He played with artists like [a=Duke Ellington], [a=Dizzy Gillespie], [a=Esther Phillips], [a=Louis Armstrong], [a=Louis Jordan], [a=Johnny Otis], [a=Sy Oliver], [a=Big Maybelle] and [a=Little Willie John]Needs VoteA, CobbsA. CobbsAl CobbAl CoobsAl GobbsAlfred C. CobbsAlfred CobbAlfred CobbsLucky Millinder And His OrchestraSy Oliver And His OrchestraLes Hite And His OrchestraLouis Jordan And His OrchestraHot Lips Page And His Orchestra + +361805Jean-François GardeilClassical Bass & Baritone vocalist.Needs VoteGardeilLes Arts Florissants + +361807Arthur HoneggerArthur HoneggerSwiss composer, born March 10, 1892, in Le Havre, France, died November 27, 1955, in Paris, also France. He was an influential representative of the [i]Groupe des Six[/i].Needs Votehttp://arthur-honegger.com/https://en.wikipedia.org/wiki/Arthur_Honeggerhttps://musicbrainz.org/artist/7bcfc64a-ce4a-4065-947c-d037bca1e230https://www.britannica.com/biography/Arthur-Honeggerhttps://www.imdb.com/name/nm0006131/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102532/Honegger_ArthurA HoneggerA. HonegerA. HonegerisA. HoneggerA. HonnegerA. ОнеггерA.HoneggerArthur HonegerArthur HonnegerArthur HonneggerArthur OneggerArthur Oscar HoneggerArtur HoneggerArturs HonegersHoneggerHonegger, ArthurHonnegerHonneggerL'AuteurА, ОнеггерА. ОнегггерА. ОнеггерА. ОннегерА.ОнеггерАртур ОнеггерОнеггерオネゲルLe Groupe Des Six + +361814Francis PoulencFrancis Jean Marcel PoulencFrancis Poulenc (Paris, January 7, 1899 – Paris, January 30, 1963) was a French composer and a member of the French group "Les Six". He composed music in all major genres, including art song, chamber music, oratorio, opera, ballet music, and orchestral music. Critic [a=Claude Rostand], in a July 1950 Paris-Presse article, described Poulenc as "half bad boy, half monk" ("le moine et le voyou"), a tag that was to be attached to his name for the rest of his career.Needs Votehttps://www.poulenc.fr/https://en.wikipedia.org/wiki/Francis_Poulenchttps://www.britannica.com/biography/Francis-Poulenchttps://www.imdb.com/name/nm0693590/https://adp.library.ucsb.edu/index.php/mastertalent/detail/360027/Poulenc_FrancisF PoulencF. PaulencF. PoulencF. PoulenkF. PulenkasF.PoulencF.プーランクFr. PoulencFrances PoulencFrancis Jean Marcel PoulencFrancis PouelncFrancis PoulancFrancois PoulencFrançis PoulencFrançois PoulencFrensis PulankM. Francis PoulencPolencPoulancPoulencPoulenc, F.Poulenc, FrancisPouleucПуленкФ. ПуленкФ.ПуленкФрансис ПуленкФренсіс Пуленкフランシス・プーランクブーランクプーランクLe Groupe Des Six + +362041Joe PumaJoe PumaAmerican jazz guitarist, born: August 13, 1927 in Bronx, NY, died May 31, 2000 in New York, NY. +Puma played with Joe Roland (first professional job, 1949-1950), Louie Bellson, Artie Shaw, Herbie Mann, Mat Mathews, Chris Connor, Paul Quinichette, Morgana King, Bobby Hackett, Gary Burton, Carmen McRae, Chuck Wayne, among others. He recorded as a leader from 1954 through the 1990s on over a dozen albums. +He also worked as a recording engineer at [l=Select Sound Studio] in upstate New York.Needs Votehttps://adp.library.ucsb.edu/names/338608https://en.wikipedia.org/wiki/Joe_PumaJ. PumaJ. PurmaJoeJoe Puma And The Audiobon All-StarsJoe PumePumaジョー・ピューマArtie Shaw And His Gramercy FiveHerbie Mann QuartetLouie Bellson OrchestraThe Don Elliott QuintetJoe Puma SextetDick Hyman And His QuintetNew York QuartetThe Joe Puma QuintetThe Vinnie Burke All-StarsThe Joe Puma TrioThe Joe Puma QuartetRalph Sharon SextetThe Herbie Mann-Sam Most QuintetNew York Jazz EnsembleJoe Roland, His Vibes & His Boppin' StringsRalph Sharon's All-Star Sextet + +362152Judith FleetBritish freelance chamber, orchestral & solo cellist, and cello teacher. +She studied at [l305416].Needs Votehttps://www.cellozone.co.uk/https://www.facebook.com/cellozoneJF/https://mobile.twitter.com/judithafleethttps://www.linkedin.com/in/judith-fleet-0824a966/?originalSubdomain=ukhttps://www.youtube.com/channel/UCVrZVs07dL5_HCOzxJSS7WA?app=desktophttps://www.playwithapro.com/live/Judith-Fleet/https://encoremusicians.com/Judith-FleetMy Life StoryLondon Symphony OrchestraPhilharmonia OrchestraColin Towns Mask Orchestra + +362160Robert AlexanderAmerican jazz trombonist. + +Born : November 23, 1920. +Needs VoteB. AlexanderBob AlexandeBob AlexanderBobby AlexanderRobert (Bob) AlexanderRobert H. AlexanderJimmy Dorsey And His OrchestraAll Star Alumni OrchestraHenry Jerome And His OrchestraDoc Severinsen And His OrchestraThe J.J. Johnson And Kai Winding Trombone OctetPeter Appleyard OrchestraThe Bob Alexander QuintetThe Brassmates + +362162Janice Robinson (2)Janice RobinsonJazz trombonist, born December 28, 1951 in Clairton, Pa. +Performed and recorded with jazz big bands and ensembles, including those of Dizzy Gillespie, Billy Taylor, Marian McPartland, Thad Jones/ Mel Lewis, Slide Hampton, The Jazzmobile All Star Big Band, Gil Evans, McCoy Tyner, George Gruntz and Mercer Ellington among others.Needs Votehttp://www.janicerobinsontrombone.com/index2.htmlJanice E. RobinsonJanis RobbinsonJanis RobinsonGil Evans And His OrchestraThe Jazz Composer's OrchestraFrank Foster And The Loud MinorityThad Jones & Mel LewisFrank Foster's Living Color – Twelve Shades Of Black + +362177Reg GuestBritish pianist, arranger and music director, born in 1930 in Birmingham, England. Also known as Earl Guest. +Needs VoteEarl GuestGuestR Guest E Orch.R. GuestRed GuestRedge GuestReg. GuestReggie GuestEarl GuestLondon All StarThe John Keating OrchestraReg Guest SyndicateThe Nashville FiveReg Guest And His Orchestra + +362290Udo JürgensUdo Jürgens Bockelmann (né Jürgen Udo Bockelmann)Austrian composer, singer and songwriter. Father of [a=Jenny Jürgens], John Jürgens ([a=John Munich]), Gloria Burda, and Sonja Jürgens. Brother of [a=Manfred Bockelmann]. Born 30 September, 1934 in Klagenfurt, Carinthia, Austria. Died 21 December, 2014 in Münsterlingen, Switzerland. + +Winner of the Eurovision Song Contest 1966 with the song "Merci, Chérie". +Wrote songs for other artists, including [a=Shirley Bassey], etc. +Needs Votehttp://www.udojuergens.dehttps://www.facebook.com/UdoJuergensOfficialhttps://www.youtube.com/channel/UCjnS3NTENxFqJ3CByeISKlghttps://www.youtube.com/user/udojuergensVEVOhttp://en.wikipedia.org/wiki/Udo_Jürgenshttps://de.wikipedia.org/wiki/Udo_J%C3%BCrgenshttps://www.udofan.com/https://www.schlager.de/stars/udo-juergens/https://adp.library.ucsb.edu/names/324398(Udo Jürgens)B.ユルゲンスJ. JuergensJ. JurgensJergensJrrgensJuergenJuergensJuergens UdoJugensJungensJurdensJurgenJurgensJurgens UdoJurgersJurgonsJurguensJürgenJürgensJürgens UdoJürgens, UdoU JurgensU JürgensU'JurgensU. J rgensU. JergensU. JuergensU. JurgensU. JurgensasU. JurgėnasU. JörgensU. JûrgensU. JüergensU. JürgensU.JurgensU.JürgensUdio JurgensUdoUdo JuergensUdo JurgensUdo JüergensUdo Jürgens & Co.Udo Jürgens Piano And OrchestraUdo YurgensUgensUgo JurgersUgo JürgensV. JurgensV. JürgensW.JurgensW.ユルゲンスv. JorgensÜ. JürgensУ. ЮргенУ. ЮргенсУдо УргенсУдо ЮргенсУдо ЮргенсаЮргенсウッド・ユルゲンスウド•ユルゲンスウド・ユルゲンスユド・ユルゲンスUdo Jürgen BockelmannDie Trocaderos + +362341Jim ChapinJames Forbes ChapinAmerican jazz drummer and teacher (* July 23, 1919; † July 04, 2009). +Father of [a=The Chapin Brothers].Needs Votehttps://en.wikipedia.org/wiki/Jim_Chapinhttps://www.drummerworld.com/drummers/Jim_Chapin.htmlJames ChapinJim Chapin, Sr.Woody Herman And His OrchestraWoody Herman And His Third HerdThe Jim Chapin SextetJim Chapin EnsembleJim Chapin Octet + +362481Yves ChabertFrench contrabassistNeeds VoteY. ChabertYves ChaberYves ChavertOrchestre National De L'Opéra De Paris + +362515Noel McGhieJazz drummerNeeds Votehttp://www.myspace.com/noelmcghiehttp://www.facebook.com/people/Noel-McGhie/689299984Noel Mc GheeNoel Mc GhieNoel McGeeNoel McGheeNoël Mc GheeNoël Mc GhieNoël McGhieGil Evans And His OrchestraLaboratorio Della QuerciaNoah Howard QuartetSteve Lacy QuintetNoel Mc Ghie & Space SpiesFrancois Tusques TrioBobby Few TrioNoel McGhie Afro-Caribbean Project + +362592Hermann HesseHermann HesseGerman-born Swiss poet, novelist, and painter. He was awarded with the Nobel Prize in Literature in 1946. + +He was born 2 July 1877 in Calw, Germany and died 9 August 1962 in Montagnola, Switzerland. +Needs Votehttp://en.wikipedia.org/wiki/Hermann_Hessehttps://adp.library.ucsb.edu/names/321193H. H.H. HesseH. HesėHerman HesHerman HesseHermann Hesse (Tagebuch)Hermann Hesse - frag. DEMIANHesseГ. ГессеГерман Гессеヘルマン・ヘッセ + +362731Andrzej TrzaskowskiAndrzej Bronisław TrzaskowskiBorn March 23, 1933 in Kraków, died September 16, 1998 in Warszawa. Polish jazz pianist and composer. +From a Polish noble family, he began on piano aged four and took formal lessons from the age of seven. After coming into contact with the communist authorities as a teenager for distributing "anti-Soviet propaganda", and been held in custody for about three weeks, he was a musicology student at Jagiellonian University in Kraków from 1952 to 1957 when he completed his masters degree on the music of [a75617]. A member of Melomany from 1954, the group performed at the [url=https://www.discogs.com/label/556411-Festiwal-Jazzowy-Sopot-1956] 1956 Jazz Festival in Sopot[/url]. After moving to Warsaw permanently, his regular group [a4121861], debuted at the [url=https://www.discogs.com/label/420581-Jazz-Jamboree-Festival] Jazz Jamboree'59[/url]) and continued appearing there until 1962; at the 1960 event [a30486] performed with them. After a United States tour in 1962, it became an eponymously named quintet, thought safer, and performed elsewhere in Europe (not only communist countries) during 1963 and 1964 and, for two years from 1965, [a256582] worked with them. By now, Trzaskowski had begun to move away from bop towards free jazz, describing himself in an interview as a "dodecaphonist", an adopter of the twelve-tone row method of musical composition. He was artistic director of Jazz Workshops in Hamburg from 1965 to 1970, and remained active as a jazz pianist until 1974. A film composer for around seventy motion pictures, he directed [a2433282] from 1974 to 1991 and was also a music critic.Needs Votehttps://culture.pl/en/artist/andrzej-trzaskowskihttps://jazzforum.com.pl/main/news/andrzej-trzaskowski-1933-1998https://katalog.bip.ipn.gov.pl/informacje/680134https://pl.wikipedia.org/wiki/Andrzej_Trzaskowskihttps://en.wikipedia.org/wiki/Andrzej_Trzaskowskihttps://www.imdb.com/name/nm0874516/A. TrzaskowskiA. TrzaskowskiegoA. TschaskowskiA.TrzaskowskiAndre TschaskovskiAndre TschaskowskiAndrej TrzaskowskiAndrzej TrzakowskiTrzaskowskiА. ТшасковскиStan Getz QuartetHot Club "Melomani"The Andrzej Trzaskowski QuintetThe Andrzej Trzaskowski SextetAndrzej Trzaskowski TrioThe Wreckers (3)Zespół Instrumentalny Andrzeja Trzaskowskiego + +362850John BoudreauxAmerican drummer who performed and recorded with many New Orleans r&b and funk artists, including [a136135], [a15152], [a18394] and [a381633]. + +Born December 10, 1936, New Roads, Louisiana, USA. +Died January 14, 2017, Los Angeles, California, USA. Needs Votehttp://johnboudreaux.tripod.com/index.htmlhttp://www.afofoundation.org/musicians/Dr. BoudreauxJ. BoudreauxJohn BoudreauJohn Boudreaux Jr.John Boudreaux, Jr.John Boudreax, Jr.John BourdreauxJohn T. BoudreauJohnny Otis And His OrchestraA.F.O. Studio ComboAFO Executives + +362933Leonard SelicAmerican viola player.Needs VoteLeo SelicLeonard SeligStan Kenton And His OrchestraThe Abnuceals Emuukha Electric OrchestraFrank Sinatra And His Orchestra + +363372C.F. TurnerCharles Frederick TurnerCanadian bassist, singer and songwriter, born 16 October 1943 in Winnipeg, Manitoba, Canada.Needs Votehttps://en.wikipedia.org/wiki/Fred_Turner_(musician)https://www.youtube.com/channel/UCGFAXPHMSzENq8F7_8MQRDQC F TurnerC F. TurnerC. F.C. F. TurnerC. F. YoungC. Fred TurnerC. TurnerC.F TurnerC.F.C.F.TurnerC.TurnerCharlesCharles F. TurnerCharles Fred TurnerCharles TurnerF. TurnerFred TrunerFred TurnerKellyS. TurnerS.F. TurnerTurnerTurner, Charles FredKristopher KellyBachman-Turner OverdriveBrave BeltBachman-Turner-BachmanBachman & TurnerUnion (17)The Pink Plumm + +363446George GoldnerBorn 1918, New York City, New York, USA +Died 15 April 1970, Turtle Bay, New York, USA + +Goldner's involvement in the record label industry began in the early 1940s, when he ran popular dance halls in New York City and New Jersey. After his marriage to a Latin girl his interest in Latin-American music grew, as did that of his dancehall clientele who followed artists such as [a=Tito Puente], [a=Machito], [a=Tito Rodriguez] and [a=Joe Loco]. In 1948 Goldner created his first label [l=Tico Records], inspired by the popular 'Tico Tico' number, on which he released the mambo & cha cha style artists of the time. + +By the early 1950s, with the emergence of the fusions in urban blues, rhythm & blues and gospel and the popular doo wop style, Goldner spied a new market and created the [l=Rama] label in 1953. Noticing that DJs tended not to fill the airwaves with music from only one label he cleverly created another- the [l=Gee] label, named after a hit he'd had with [url=http://www.discogs.com/artist/Crows,+The]The Crows[/url]. [url=http://www.discogs.com/artist/Valentines,+The]The Valentines[/url], with the versatile [a=Richard Barrett (5)], gained him hits on Gee. Most of Goldner's recording was done at Bell Sound Studios in Manhattan. + +In late 1955 Goldner sold half his interest in Tico, Rama and Gee to the partnership of Joe Kolsky and [a=Morris Levy]. In January 1957 they formed [l=Roulette Records] with Levy as president but, by April, Goldner sold out his interest in the four labels. However, his interest in music development had been elsewhere, with the creation of the [l=Luniverse] label in 1956. This label was in partnership with [a=Bill Buchanan] and [a=Dickie Goodman], on which they released 'novelty' recordings. + +Shortly after departing from Roulette, in early 1957, Goldnercreated the [l=Gone Records] and [l=End] labels. The former to release the more jazz-based and easy listening styles, and the latter for the doo wop and 'bluesy' styles of the day. Barrett's work with Goldner during this period was fundamental to the success of these labels, especially with [url=http://www.discogs.com/artist/Chantels,+The]The Chantels[/url]. In 1962 Goldner sold Gone and End to Roulette. + +In 1964 Goldner then created [l=Red Bird] Records in partnership with the hot writing team of [a=Jerry Leiber] and [a=Mike Stoller]. Goldner was president of the associated company [l=Stuyvesant Productions Inc.] then. The label's first release 'Chapel Of Love' by [url=http://www.discogs.com/artist/Dixie+Cups,+The]The Dixie Cups[/url] went to #1 internationally. [l=Blue Cat] was formed in this period. In 1966 the writing duo sold their Red Bird interest to Goldner . Early in 1970 he had just developed the [l=Firebird (2)] Records label when, in April of that year, he suddenly died of a heart attack. +Correcthttp://www.rockabilly.nl/references/messages/george_goldner.htmhttp://en.wikipedia.org/wiki/George_Goldnerhttps://www.youtube.com/watch?v=4QnLFsFabRMA George Goldner ProductionA. GoldnerB. GoldnerG Goldner et RCAG. GoldenerG. GoldnerGeo GoldnerGeo. GoldnerGlodwerGoldenGolderGoldnerGoloner + +363532Gene QuillDaniel Eugene QuillGene Quill (born December 15, 1927, Atlantic City, New Jersey, USA - died December 8, 1988, Atlantic City, New Jersey, USA) was an American jazz saxophonist. Worked with [a253777], [a258689], [a57620], [a313126], [a37733] and others. + +Needs Votehttps://en.wikipedia.org/wiki/Gene_Quillhttps://adp.library.ucsb.edu/names/338725D. QuillDaniel QuillG. QuillGene QuillxQuilQuillQuincy Jones And His OrchestraGil Evans And His OrchestraClaude Thornhill And His OrchestraElliot Lawrence And His OrchestraRay Ellis And His OrchestraTito Puente And His OrchestraManny Albam And His Jazz GreatsJoe Newman SextetGerry Mulligan & The Concert Jazz BandMundell Lowe QuintetJoe Newman OctetJohnny Richards And His OrchestraLarry Sonn OrchestraPhil Woods SeptetGene Quill And His QuintetThe Quincy Jones Big BandBob Brookmeyer And His OrchestraAl Cohn And His "Charlie's Tavern" EnsemblePhil Woods/Gene Quill QuintetOscar Pettiford & His All StarsThe Billy Byers-Joe Newman SextetGene Quill-Dick Sherman QuintetHal Schaefer And His OrchestraPhil Woods-Gene Quill SextetThe Bill Potts Big BandBilly Byers Sextet + +363721Gene EdwardsGuitarist.Needs VoteEdwardsGerald Wilson Orchestra + +363748Andreas LehnertClassical clarinetist.Needs VoteGewandhausorchester LeipzigArmonia Ensemble + +363968Maureen GallagherAmerican violist.Needs VoteM. GallagherOrchestra Of St. Luke'sSpeculum MusicaeOrpheus Chamber OrchestraThe Composers QuartetNew York City Ballet Orchestra + +363970Lois MartinViola player, born 29 October 1952 in York/PA, died 19 November 2025 in Manhattan, NYC/NYNeeds VoteLois E. MartinSteve Reich And MusiciansOrchestra Of St. Luke'sSpeculum MusicaeSoho QuartetThe Group For Contemporary MusicChris Potter 10Michael Brecker QuindectetGil Evans ProjectChris Potter Underground OrchestraThe American Chamber EnsembleBrian Landrus OrchestraThe Washington Square EnsembleGreenleaf Chamber PlayersThe Zebra Coast String TrioCrosby Street String QuartetThe Zorn Quartet + +363972Linda MossPrincipal Viola of the [b]American Composers Orchestra[/b]. Before this appointment, Linda Moss served as Assistant Principal Viola with the [b]Saint Louis Symphony Orchestra[/b].Needs VoteAmerican Composers OrchestraSaint Louis Symphony OrchestraThe Group For Contemporary Music + +364253Lasse MauritzenClassical hornist.Needs Votehttps://www.lassemauritzen.comLasse MauritsenDet Kongelige KapelDR SymfoniOrkestret + +364529Paul Davis (3)Paul Lavon DavisPop - blue eyed soul - country singer - songwriter - pianist - keyboardist +Born on April 21, 1948 in Meridian, Mississippi +Died on April 22, 2008 in Meridian, Mississippi. +Has dueted with [a=Marie Osmond], [a=Tanya Tucker] and [a=Paul Overstreet]. His biggest hits are "I Go Crazy", "Cool Night" and "'65 Love Affair" in the late 70's and early '80s.Needs Votehttp://en.wikipedia.org/wiki/Paul_Davis_(singer)DavisJ. DavisJ.DavisP. DavisP.DavisPJPaul DavidPaul Davis (Paul L. Davis)Paul L. DavisPaul Lavon Davisポール・デイヴィスThe Reivers (3)Six Soul SurvivorsThe Livin' End (10) + +364545Johnny HortonJohn Gale HortonAmerican country singer/songwriter. Rockabilly pioneer and member of American TV program, The Hayride. +Born: April 30, 1925 in Los Angeles, California. +Died: November 5, 1960 as the result of injuries sustained in an automobile accident near Milano, Texas following a show at Austin's Skyline Club. The same venue as [a256313]' final show. +Needs Votehttp://www.rockabillyhall.com/JohnnyHorton1.htmlhttp://en.wikipedia.org/wiki/Johnny_Hortonhttps://www.imdb.com/name/nm1145502/HortonHoward HortonJ HortonJ. HortonJ.HortonJHJimmy HortonJohn HortonJohnnie HortonJohnny Horton And The TexansJohnny Horton'sJohnny OrtonJohny HortonJonny HortonJonny HurtonVaughn HortonДж. Хортонジョニー・ホートン + +364778Johnny AceaAdriano John AceaAmerican jazz pianist, trumpeter and saxophonist, born September 11, 1917, in Philadelphia, Pennsylvania; died July 25, 1963, in Philadelphia, Pennsylvania. + +May also be credited as John Acea or Raymond (Ray) Acea.Needs Votehttp://en.wikipedia.org/wiki/Johnny_Aceahttps://www.bluenote.com/artist/john-acea/https://www.allmusic.com/artist/john-johnny-adriano-acea-mn0000652234https://www.radioswissjazz.ch/en/music-database/musician/1417774d0efbcbe7792cfd05f39db089918ee/biographyhttp://www.worldcat.org/identities/lccn-n81058243/https://adp.library.ucsb.edu/index.php/mastertalent/detail/300262/Acea_Johnhttps://jazzleadsheets.com/composers/adriano-acea.htmlAceaAcoaCceaJohn "Johnny" AdrianoJohn AceaRay AceaRaymond AceaAdrian AceaDizzy Gillespie And His OrchestraIllinois Jacquet And His OrchestraJoe Newman SextetJoe Newman & His BandArnett Cobb And His Mobb + +364841Bertrand CuillerHarpsichordist and organist. Son of [a2627074].Needs Votehttps://web.archive.org/web/20181004164823/http://www.amarcordes.ch/artistes/cuiller.htmlhttps://www.bach-cantatas.com/Bio/Cuiller-Bertrand.htmLes Arts FlorissantsEnsemble StradivariaLe Cercle De L'HarmonieLes Basses RéuniesLa RéveuseGli Angeli GenèveLes MuffattiCaravanserailLunaisiensFuoco E Cenere + +364850Ulysses31CorrectUlysses 31 + +365245Pierre FerretPierre Joseph Ferret1908-1976. +Pioneering gypsy jazz guitarist, brother of Jean and Etienne, and cousin of René Ferret. +Needs Votehttp://www.hotclub.co.uk/gypsyworld/index.php?title=Baro_Ferrethttps://adp.library.ucsb.edu/names/110764B. FerretBaroBaro FerretBaro FerréBaro Joseph FerréBarro FerretFerretJ. FerréJean "Matelot" FerretJoseph-Pierre "Baro" FerretP. "Baro" FerretP. B. FerretP. FerretP. FerréP.B. FerretPerre "Baro" FerretPierre "Baro" FerretPierre "Barot" FerretPierre "Barro" FerretPierre "Matelot" FerretPierre 'Baro' FerrePierre 'Barro' FerretPierre (Baro) FerretPierre Baro FerretPierre Barro FerrePierre FeretPierre FerreiPierre FerrelPierre FerréPierre «Baro» FerretPierre “Baro” FerretPierret FerretQuintette Du Hot Club De FranceJoseph Reinhardt Et Son EnsembleDjango's MusicStéphane Grappelli And His Hot FourTony Murena Et Son EnsembleGuerino Et Son Orchestre Musette De La Boite A MatelotsGus Viseur Et Son EnsembleTony Murena Et Son Ensemble SwingGus Viseur's MusicOrchestre GuérinoSarane Ferret Et Le Swing Quintette De ParisLe Trio FerretPierre Ferret Et Son EnsembleTrio De Guitares Pierre Ferret + +365517Art SimmonsArthur Eugene SimmonsAmerican jazz pianist, born February 5, 1926, Glen White, West Virginia, USA.Needs Votehttps://fr.wikipedia.org/wiki/Art_SimmonsA. SimmonsArt SimonsArt. SimmonsArthur SimmonsArts SimonsSimmonsDizzy Gillespie QuintetDon Byas And His OrchestraJames Moody QuartetArt Simmons QuartetTrumpet Young Und Sein NegerorchesterNelson Williams' All StarsJack Dieval And His QuartetDon Byas Et Ses RythmesBill Coleman Et Son Ensemble + +365629Neil SkinnerRodger Neil SkinnerNeeds VoteN. SkinnerNiel SkinnerSkinnerMC CyclonePublic DomainActive ForceSAS (8) + +366152Mick Jones (2)Michael Leslie JonesBorn December 27, 1944 in [url=https://en.wikipedia.org/wiki/Portsmouth]Portsmouth[/url]. English guitarist, keyboardist, vocalist, composer, lyricist and music producer. +Before his success with Foreigner he was member of several bands like The Hustlers, Nero And The Gladiators, State Of Micky & Tommy (with Gladiators drummer Tommy Brown) and Spooky Tooth, and also worked as a session musician for Peter Frampton and George Harrison. In the 60s he worked as musician and arranger in France along with [a=Tommy Brown (3)]. +With Ian McDonald he formed Foreigner in 1976 and today he's the only original member that is still part of Foreigner. + +Inducted into the Songwriters Hall of Fame in 2013. + +He is the stepfather of DJ, remixer, producer and songwriter [a=Mark Ronson].Needs Votehttps://www.facebook.com/TheMickJoneshttps://en.wikipedia.org/wiki/Mick_Jones_(Foreigner_guitarist)https://www.songhall.org/profile/mick_joneshttps://www.imdb.com/name/nm0428853/https://www.allmusic.com/artist/mick-jones-mn0000407058J. JonesJobesJohnesJonesJones LonesJones M.Jones M. LeslieJones Miachael LeslieJones Michael LesJones MickJones, MickJones–NickLeslie M. JonesM JanesM JonesM. JonesM. JohnM. JonesM.JOnesM.JonesM.L. JonesM.icky JonesMichael - Leslie - JonesMichael JonesMichael L. JonesMichael Leslie JonesMichael Lesly JonesMichael, Leslie, JonesMichael-Leslie-JonesMichael/Leslie/JonesMick.JonesMickey JonesMicky JonesMicky Jones Et Tommy BrownMiek JonesMike JonesMiky JonesN. JonesT. JonesМ. ДжоунзForeignerSpooky ToothNimrod (5)The BlackburdsThe J. & B.State Of Micky & TommyThe Leslie West BandWonderwheel (2)Orchestre De Micky Jones + +366290Jeff HarringtonJeffry Lincoln HarringtonAmerican singer-songwriter from Winona, Minnesota.Correcthttps://secondhandsongs.com/artist/101976https://soundcloud.com/jeffharringtonofficialhttps://www.ascap.com/repertory#/ace/writer/69187048/HARRINGTON%20JEFFRY%20LINCOLN?page=2HarringtonI. MarringtonJ HarringtonJ. HarringtonJeffry HarringtonHarrington-Berger-Heyer + +366291Jeff PennigJeffrey Edmund PennigAmerican songwriter, born April 26, 1949 in Saint Paul, Minnesota and died November 22, 2018 in Nashville, Tennessee. + +Has written also as a writing duo along with [a=Jeff Harrington] +Correcthttps://www.nashvillecremationcenter.com/obituary/Jeffrey-Pennig#obituaryhttps://rateyourmusic.com/artist/jeff-pennighttps://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=100&Main_Search_Text=Pennig+Jeffrey+E&Search_Type=allhttps://www.ascap.com/repertory#ace/writer/48295261/Pennig%20Jeffrey%20EJ. PennigJ. PennigJ. PenningJeff PenningJeffery PenningPennig + +366863Zeke ZarchyRubin ZarchyJazz trumpeter. +Born in New York City on June 12, 1915. +Died in Irvine, California on April 11, 2009. + +He played and recorded with many of the leading swing bands, including those of [a=Benny Goodman], [a=Artie Shaw], [a=Bob Crosby], [a=Red Norvo], [a=Tommy Dorsey] and [a=Glenn Miller].Needs Votehttps://en.wikipedia.org/wiki/Zeke_Zarchyhttps://www.radioswissjazz.ch/en/music-database/musician/425708a72a1d3af1029d28b4cb49b0cf97d08/biographyhttps://www.imdb.com/name/nm2631516/https://adp.library.ucsb.edu/names/115719"Zeke" ZarchyMaster Sergeant Zeke ZarchyReuben "Zeke" ZarcheyReuben "Zeke" ZarchyRobin ZacharyRuben ZarchyRubin "Zeke" ZarcheyRubin "Zeke" ZarchyRubin 'Zeke' ZarchyRubin ZarcheyRubin ZarchyS/Sgt. Zeke ZarchySgt. Zeke ZarchyZ. ZarchZ. ZarchyZZZarcheyZeche ZarchyZeke ZarchZeke ZarcheyZeke Zarchy (ZZ)Zeke ZarkeyTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraLouis Armstrong And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraPaul Weston And His OrchestraRed Norvo And His OrchestraHarry James & His Music MakersThe Universal-International OrchestraJerry Gray And His OrchestraMembers Of The Benny Goodman OrchestraFrank Sinatra And His Orchestra + +366867Trigger AlpertHerman AlpertAmerican jazz double-bassist, born September 3, 1916 in Indianapolis, Indiana, USA and died December 21, 2013 in Jacksonville Beach, Florida, USA.Needs Votehttps://adp.library.ucsb.edu/names/107106"Trigger" AlpertAlpertH. AlpertHarman Trigger AlpertHerman "Trigger" AlpertHerman 'Trigger' AlpertHerman AlbertHerman AlpertHermann "Trigger" AlpertS/Sgt Trigger AlpertS/Sgt. Trigger AlpertSgt. Trigger AlpertT. AlpertTriger AlpertTrigger AlbertTrigger AlpartTrigger Alpert All-Star SevenTrigger AltertTriggert AlpertLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraArtie Shaw And His Gramercy FiveGlenn Miller And His OrchestraBob Haggart And His OrchestraSauter-Finegan OrchestraGlenn Miller And The Army Air Force BandPee Wee Erwin And His Dixieland All-StarsAll Star Alumni OrchestraBobby Byrne And His OrchestraThe Mundell Lowe QuartetThe Bernie Leighton QuintetTony Mottola FourWoody Herman's Four ChipsThe Bernie Leighton QuartetThe Army Air Force BandNBC Rhythm SectionAl Klink QuintetTed Nash QuintetTony Mottola GroupDeane Kincaide's Band + +366872Jack RussinJazz pianist +Brother of [a=Babe Russin]Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/341608/Russin_JackJ. RussinJack RufinJack RusinJackie RussinPfc Jack RussinPfc. Jack RusinRussinJack Teagarden And His OrchestraThe Mound City Blue BlowersCalifornia RamblersRed McKenzie And The Celestial BeingsThe Little RamblersUniversity Six + +366873Frank IppolitoFrancis IppolitoAmerican drummer and percussionist. +died March 18, 1978Needs VoteFrank IppolitePfc Frank IppolitoPfc. Frank IppolitoWoody Herman And His OrchestraGlenn Miller And The Army Air Force BandWoody Herman And The Swingin' HerdThe Army Air Force Band + +366880Jack FerrierJazz saxophonist and clarinetistNeeds VoteCorporal Jack FerrierCpl. Jack FerrerCpl. Jack FerrierJack FernierJean FerrierPvt. Jack FerrerWoody Herman And His OrchestraJan Savitt And His Top HattersClaude Thornhill And His OrchestraGlenn Miller And The Army Air Force BandThe Army Air Force BandThe Band That Plays The Blues + +366912Marcella DeCrayMarcella DeCrayAmerican harpist and teacher, born in 1928 and died 2 December 2011 in San Francisco, California.Needs VoteMarcella De CrayMarcella DecrayThe Philadelphia OrchestraSan Francisco SymphonyMills Performing Group + +366922Bruce Grainger(Born: March 30, 1954) +(Died: May 14, 1996) + +Bassoonist + +A native of Seattle, Mr. Grainger began studying the bassoon at 13. He attended the University of Washington and, after completing his studies there in 1978, joined the Seattle Symphony as second bassoon, a position he held until then-music director Georg Solti appointed him to the CSO in 1986.Needs VoteBnuce GraingerChicago Symphony OrchestraSeattle Symphony OrchestraThe Chicago Chamber Musicians + +367325Olive SimpsonSoprano vocalist.Needs Votehttps://www.olivesimpson.com/https://www.facebook.com/olive.simpson.5Metro VoicesThe Choir Of The King's ConsortThe Cambridge SingersNew London ConsortThe Tallis ScholarsThe Monteverdi ChoirSwingle II + +367372Ara MalikianԱրա Մալիքյան (Armenian) / آرا ماليكيان (Arabic) / Ara Malikian (Latin)Ara Malikian (born 1968) is a Lebanese-Spanish violinist of Armenian descent. +He was concertino (concertmaster) for seven years of Orquesta Sinfónica De Madrid in early 2000s, +Needs Votehttps://aramalikian.com/https://en.wikipedia.org/wiki/Ara_Malikianhttps://open.spotify.com/intl-es/artist/5kIE5Bm5P9h6KDsz46V2qchttps://www.youtube.com/@AraMalikian/videoshttps://www.facebook.com/Ara.Malikian.violin/?locale=es_EShttps://www.instagram.com/aramalikian/?hl=eshttps://twitter.com/AraMalikianAraOrquesta Sinfónica De MadridEnsamble Nuevo Tango + +367736Anthony SophosAnthony SophosAmerican cellist. +Born in Peabody, Massachusetts in February 1923. +Died 2004 +He played in [a547971] under [a539131] from 1942 to 1944 +Member of [a=New York Philharmonic] 1949-1957 +In 1957, he join the [a3295250]Needs VoteA. SophosAnthony SaphosTony SophosNew York PhilharmonicThe Cleveland OrchestraCBS Symphony OrchestraFrank Sinatra And His Orchestra + +368070Duffy JacksonDuff Clark JacksonAmerican jazz drummer +born 3 July 1953 in Freeport, New York +died 3 March 2021 in Nashville, Tennessee + +Son of [a277952]. Until his passing, Duffy lived in and ran a big band out of Nashville TN. He died after complications from hip surgery. + +Duffy recorded with [a=Count Basie], [a=Illinois Jacquet], [a=Lionel Hampton], [a=Monty Alexander], [a=Sonny Stitt], [a=Ira Sullivan], [a=Jon Hendricks], [a=George Benson], etc. etc.Needs Votehttp://duffyjackson.homestead.com/https://en.wikipedia.org/wiki/Duffy_JacksonJacksonCount Basie OrchestraLionel Hampton And His OrchestraThe Monty Alexander TrioIllinois Jacquet & His Big BandThe Monty Alexander 7Harry Allen QuartetSummer Festival All Star Jazz Band + +368137Claudio AbbadoClaudio Abbado, OMRI was an Italian conductor. +He was the son of violinist, conductor, and teacher [a=Michelangelo Abbado], and brother of pianist [a=Marcello Abbado]. + +Born June 26, 1933 in Milan, Italy +Died January 20, 2014 in Bologna, Italy (aged 80) + +He was the music director of La Scala from 1968 to May 1986. He founded the Orchestra della Scala for the performance of orchestral repertoire in concert. From 1986 to 1991 he was music director of [l613318]. +He was principal conductor of [url=https://www.discogs.com/artist/212726-London-Symphony-Orchestra]the London Symphony Orchestra[/url] from 1979 to 1987. In the US, he was principal guest conductor of [url=https://www.discogs.com/artist/837562-Chicago-Symphony-Orchestra]the Chicago Symphony Orchestra[/url] from 1982 to 1986. +In October 1989, [url=https://www.discogs.com/artist/260744-Berliner-Philharmoniker]the Berlin Philharmonic Orchestra[/url] elected Abbado as their chief conductor, to succeed [a=Herbert Von Karajan]. Abbado held this post until 2002. +In 2003, he formed the [a=Lucerne Festival Orchestra]. +He is also founder and music director of the European Union Youth Orchestra (1978) and the Gustav Mahler Jugendorchester (1986). +In 1988, Abbado founded the music festival [i]Wien Modern[/i], which has since expanded to include all aspects of contemporary art. +He has recorded a wide range of Romantic works, in particular Gustav Mahler, as well as modern works such as Arnold Schoenberg, Karlheinz Stockhausen and Luigi Nono. + +From his first marriage in 1956 to singer Giovanna Cavazzoni, Abbado had two children: [a=Daniele Abbado] (born 1958), who became an opera director, and Alessandra (born 1959). His first marriage was dissolved. From his second marriage, to Gabriella Cantalupi, Abbado had a son, Sebastiano. His four-year relationship with Viktoria Mullova resulted in Mullova's first child, a son, the jazz bassist, [a=Misha Mullov-Abbado]. +Abbado's nephew, the son of his brother, Marcello, is the conductor [a=Roberto Abbado].Needs Votehttps://en.wikipedia.org/wiki/Claudio_Abbadohttp://www.abbadiani.it/abbadiani/enhttps://web.archive.org/web/20031008171357/https://www.sonyclassical.com/artists/abbado/https://www.sonyclassical.com/artists/artist-details/claudio-abbadohttps://www.bach-cantatas.com/Bio/Abbado-Claudio.htmhttps://www.allmusic.com/artist/claudio-abbado-mn0000760782https://www.imdb.com/name/nm0007798/AbbadoC. AbbadoClaudia AbbadoCludio AbbadoCoro e Orchestra del Teatro alla ScalaKlaudio AbadoК. АббадоКлаудио АбадоКлаудио Аббадоアバドクラウディオ・アバドクラウディオ・アバドBerliner PhilharmonikerMahler Chamber OrchestraWiener PhilharmonikerThe Chamber Orchestra Of EuropeLucerne Festival OrchestraOrchestra Mozart + +368138Rainer BrockProducer and recording supervisor for [l7703].CorrectRainer BroekRainer BrookReiner Brookライナー・ブロックライナー・ブロック + +368181Illinois Jacquet And His OrchestraCorrectIllinois Jacquet & His Orch.Illinois Jacquet & His OrchestraIllinois Jacquet & Orch.Illinois Jacquet And His All StarsIllinois Jacquet E Sua OrquestraIllinois Jacquet OrchestraRussell Jacquet & His Orch.Art BlakeyKenny BurrellBill DoggettCount BasieCharles MingusGene RameyJ.J. JohnsonRay BrownIllinois JacquetRoy EldridgeHarry EdisonJo JonesBarry GalbraithGeorge DuvivierCurtis CounceHank JonesJohn Lewis (2)Ernie RoyalRed CallenderFreddie GreenErnie WilkinsCharles Davis (2)Matthew GeeGerald WigginsJimmy Jones (3)Joe NewmanFats NavarroSir Charles ThompsonOscar MooreJimmy PowellJ.C. HeardJimmy CrawfordBudd JohnsonHenry CokerJohn Collins (2)John Brown (3)Cecil PayneIrving AshbyUlysses LivingstonAl LucasRay PerryHaywood HenryJohnny AceaShadow WilsonLeo ParkerJimmy MundyJimmy RowserRussell JacquetAl WichardArthur DennisArnett SparrowAl BarteeCarl Perkins (4)Fortunatus "Fip" RicardJoe Sinacore + +368184Benny Carter And His OrchestraCorrectBennie Carter & His All Star OrchestraBennie Carter & His All-Star OrchestraBennie Carter And His All-Star OrchestraBennie Carter And His OrchestraBennie Carter En Zijn OrkestBenny CarterBenny Carter & His All Star Orch.Benny Carter & His All Star OrchestraBenny Carter & His Chocolate OrchestraBenny Carter & His Club Harlem OrchestraBenny Carter & His Orch.Benny Carter & His OrchestraBenny Carter & OrchestraBenny Carter All StarsBenny Carter And His All Star OrchestraBenny Carter And His All Stars OrchestraBenny Carter And His All-Star Orch.Benny Carter And His All-Star OrchestraBenny Carter And His BandBenny Carter And His Big BandBenny Carter And His Club Harlem OrchestraBenny Carter And His Famous SoloistsBenny Carter And His OrchBenny Carter And His Orch.Benny Carter And OrchestraBenny Carter BandBenny Carter E La Sua OrchestraBenny Carter E Sua OrquestraBenny Carter Et Son OrchestreBenny Carter Jazz Allstar OrchestraBenny Carter Orch.Benny Carter OrchestraBenny Carter QuartetBenny Carter Sa Swing OrkestromBenny Carter Und Sein OrchesterBenny Carter With OrchestraBenny Carter Y Su OrquestaBenny Carter et son OrchestreBenny Carter's All StarsBenny Carter's All-StarsBenny Carter's International OrchestraBenny Carter's MusicBenny Carter's Orch.Benny Carter's OrchestraBenny Carter, Coleman Hawkins, Freddy Johnson And OrchestraBenny Cater's OrchestraBerry Carter & His OrchestraCarter OrchestraClarence Clump with Orch.Clarence Crump With OrchestraHis OrchestraOrch. Benny CarterOrchestraOrchestra Directed By Benny CarterOrchestra Of Benny CarterOriquesta Dirigida Por Benny CarterOrquesta Benny CarterThe Benny Carter OrchestraThe Orchestra Of Benny Carterベニー・カーター楽団Miles DavisGerald WilsonJonah JonesCharlie RouseColeman HawkinsJ.J. JohnsonDjango ReinhardtPhil WoodsJimmy GarrisonBen WebsterVic DickensonBenny CarterJo JonesCurly RussellGeorge DorseyIdrees SuliemanEddie HeywoodPlas JohnsonAl GreyJustin GordonBill Coleman (2)George James (2)George RobertsGeorgie AuldGerald WigginsRussell SmithGeorge ElrickMax GoldbergBuddy FeatherStonaughBernard AddisonTed HeathLouis BaconCastor McCordHayes AlvisSandy WilliamsEverett BarksdaleSidney De ParisBig Joe TurnerJake PorterAl HendricksonBumps MyersJimmy PowellWayman CarverBenny MortonShad CollinsAlbert HarrisEmmett BerryErnie PowellOscar Lee Bradley Sr.Stanley PayneCarl FryeSonny WhiteGeorge WashingtonYank PorterChauncey HaughtonWallace JonesHenry CokerJoe Thomas (4)Tyree GlennJohn Collins (2)Teddy BucknerUlysses LivingstonCharlie DraytonPaul CohenGene SimonGene RodgersUan RaseyDick KatzLeslie ThompsonAlix CombelleRay TriscariWilson MyersBart VarsalonaFrank ComstockTeddy BrannonBill DillardLew DavisJimmy ArcheyJohn McConnellEd MullensYork De SouzaFletcher AllenBertie KingLen HarrisonDupree BoltonGeorge IrishKarl GeorgeFreddie WebsterRonnie GubertiniBobby WoodlenPercy BriceStafford SimonArchie JohnsonRufus WebsterGene PorterWalter Williams (3)Porter KilbertJames CannadyJewell GrantTed FieldsMilton Fletcher (2)Pat DoddBilly MunnIrv LewisClarence RossJohn HaughtonLincoln MillsSavannah ChurchillHerman MitchellAndy McDevittFreddy GardnerGerry MooreGeorge Elliott (2)Wally MorrisBill MulraneyAl BurkeThomas MoultrieRobert MommarchéBen Smith (9)Willard BrownKeg PurnellAlton MooreTommy McQuaterBobby Williams (6)Charles Johnson (9)E. O. PogsonBob GraettingerJohn Carroll (5)Roy FeltonSammy Davis (2)Louis GrayLouis Taylor (3)Calvin StricklandMilton RobinsonArnold AdamsJohnny Morris (8)Joe EppsHarold Clark (3)Claude DunsonMadison VaughanDuncan WhyteTommy McQuarterHenry Morrison (2)Dick GrayFred TrainerEdwin DavisHarry Van OvenRolf GoldsteinCliff WoodbridgeSam DasbergIra PettifordFreddy Johnson (5)William Brown (38)Bobby Sherwood (2)Jimmy Edwards (13) + +368185Cootie Williams And His OrchestraCorrectCootie And His Savoy OrchestraCootie Wiliams OrchestraCootie WilliamsCootie Williams & His OrchCootie Williams & His OrchestraCootie Williams And His Orch.Cootie Williams And Orch.Cootie Williams And OrchestraCootie Williams Avec Son OrchestreCootie Williams E Sua OrquestraCootie Williams Et Son Orchestre Du Savoy De HarlemCootie Williams Orch.Cootie Williams OrchestraCootie Williams Und Sein OrchesterCootie Williams Y Su OrquestaCootie Williams Y Su Orquesta Del Savoy De HarlemCootie Williams' OrchestraOrchestraThe Cootie Williams OrchWith Cootie Williams OrchestraBud PowellWillis JacksonRupert ColeGene ReddAl KlinkRomeo PenqueMundell LoweCootie WilliamsJo JonesPhil BodnerBarry GalbraithOsie JohnsonDon LamondHank JonesRobert AshtonGeorge BarnesGus JohnsonBilly ByersGeorge TreadwellLammar WrightLouis BaconGreely WaltonArtie BernsteinSandy WilliamsLou McGarityKenny KerseyLes RobinsonSkip MartinCharlie HolmesRichard HixsonEddie SafranskiSonny PayneJoe GuyLou SteinEddie MackSam Taylor (2)Johnny GuarnieriTony MottolaButch BallardArnold Jarvis (2)Eddie de VerteuilNorman KeenanBobby ByrneEddie JohnsonJohn Jackson (7)Chauncey WelschLeroy KirklandAbraham 'Boomie' RichmanJohn Williams (14)Stanley WebbEd BurkePee Wee TinneyBob HortonSylvester "Vess" PayneLee PopeErmet PerryBob DorseyLeonard SwainEddie "Cleanhead" VinsonNick CaiazzaElwyn FraserTommy StevensonMilton Fletcher (2)Henry RowlandCarl PruittBob Merrill (2)Billy FordSam Allen (4)Julius WatsonEdward Johnson (9)George FavorsJonas WalkerEd GloverJimmy GloverEverest GainesOtis GambleChuck Clarke (3)Daniel Williams (9)Edwin Johnson (3)Frank Powell (3)William Parker (5)Edwin Johnson (4) + +368205Coleman Hawkins QuintetCorrectColeman Hawkin & His QuintetColeman HawkinsColeman Hawkins & His QuintetColeman Hawkins And His QuintetColeman Hawkins' QuintetColeman Hawkins' Quintet And StringsThe Coleman Hawkins QuintetThe Coleman Hawkins' QuintetHorace SilverArt BlakeyMax RoachColeman HawkinsBilly TaylorTeddy WilsonOscar PettifordCozy ColeRoy EldridgeCurly RussellAl HaigDenzil BestBennie GreenBuck ClaytonHoward McGheeNelson BoydSlam StewartSir Charles ThompsonBilly Taylor Sr.Cecil PayneShadow WilsonJimmy ShirleyEllis Larkins + +368206Charlie Shavers' All American FiveCorrectCharley Shavers And His All American FiveCharlie Shavers All American 5Charlie Shavers All American FiveCharlie Shavers' All-American FiveColeman HawkinsTeddy WilsonDenzil BestCharlie ShaversBilly Taylor Sr. + +368208Teddy WaltersWalter Theodore VinielloAmerican jazz guitarist and singer (b. August 20, 1920 Philadelphia, PA - d. April 19, 1958 Philadelphia, PA) + +Walters, the son of drummer [a=Danny Alvins], started out as a guitarist in the bands of [a=Ray Noble] and [a=Raymond Scott]. In May 1942, he joined [a=Charlie Ventura]'s Orchestra, only to be lured away that same October by [a=Gene Krupa]. When Krupa's orchestra was disbanded in early 1943, Walters recorded with [a=Billie Holiday]. In late 1943, Walters briefly joined Tommy Dorsey's orchestra. When Tommy realized he could sing as well and sounded very much like Frank Sinatra, he featured him as a male vocalist, causing a sensation. Tommy offered Walters a five-year contract but insisted on a cut of all future earnings should Walters decide to go solo. Instead, Walters made a few more small combo recordings with [a=Sonny Greer] and [a=Cozy Cole], then joined [a=Jimmy Dorsey And His Orchestra] on guitar and vocals in June 1944, again to great public acclaim. In October 1945, he did enter on a solo career as a vocalist, signing first with [l=ARA], then with [l=Musicraft]. In April 1946, his recording of "Laughing on the Outside (Crying on the Inside)" reached the Top Ten, but later efforts did not create much of a stir. By 1948, Walters' career had faded and he returned to Philadelphia where he died a few years later of cirrhosis.Needs Votehttps://bandchirps.com/artist/teddy-waltershttps://de.wikipedia.org/wiki/Teddy_Waltershttps://www.allmusic.com/artist/teddy-walters-mn0001233172/creditsT. WaltersTed WaltersTed WalthersTeddy WalterTeddy WalthersTeddy WatersWaltersWaltherCozy Cole All StarsGene Krupa And His OrchestraJimmy Dorsey And His OrchestraEddie Heywood And His OrchestraSonny Greer And His RextetEarl Hines And His All-Stars + +368251Yves FavreFrench trombonist.Needs VoteOrchestre National De JazzOrchestre National De L'Opéra De ParisOrchestre De Chambre Jean-François PaillardConcert Arban + +368348Tibor ZeligTibor Zelig was a studio session violin player in Los Angeles. +(*May 19, 1921 - ✝April 6, 2015)Needs Votehttps://vgmdb.net/artist/18826https://wiki.killuglyradio.com/wiki/Tibor_ZeligT. ZeligTiber ZeligTibor ZligThe Philadelphia OrchestraThe Abnuceals Emuukha Electric OrchestraThe Wrecking Crew (6) + +368358Linn SubotnickLinn Pottle SubotnickAmerican Viola player from Los Angeles. +Was member of the [a3668221], the [a446472], the [a2492982], and worked for many years as a studio musician in Hollywood, where she appears on several jazz and pop/rock recordings. She was previously married to electronic music composer [a32196]. + +Born: May 18, 1932 in Los Angeles, California. +Died: March 26, 2005 in Los Angeles, California.Needs Votehttps://www.legacy.com/obituaries/latimes/obituary.aspx?n=linn-pottle-subotnick&pid=3347650Linn SubtonickLynn SubotnickLynn SubotnikSubotnick LinnSan Francisco SymphonyNew York City Opera OrchestraThe New Orleans Symphony + +368361Nathan GershmanAmerican jazz and classical cellist. He was the brother of [a270858]. + +Born on 29 November 1917 in Philadelphia, Pennsylvania, died on 13 September 2008 in North Hollywood, Los Angeles County, California, USANeeds VoteNat GershmanNate GershmanNath GershmanNathan GerschmanNathan Gersh ManNathan GershamNathan GershwinThe Chico Hamilton QuintetThe Cleveland OrchestraThe Wrecking Crew (6)Modern String Ensemble + +368362John De VoogdtViolinistNeeds VoteJohn De VoogotJohn DeVoodgtJohn DeVoogdtJohn DeVoogdt*John DeVoogtJohn DevoogdtJohn P. De VoogdtJohn P. de VoogdtJohn Peter De VoogdtJohn Peter DeVoogdtJohn Peter DevoogdtJohn de VoogdtJohn deVoogdtJohn deVoogtJohn deVoogvtHarry James And His OrchestraHarry James & His Music MakersThe Wrecking Crew (6) + +368489Jack KellerJack Walter KellerAmerican pop songwriter and composer. +Born November 11, 1936 in Queens, New York, USA. +Died April 1, 2005 in Nashville, Tennessee, USA. +Often associated to the publisher [a=Aldon Music].Needs Votehttps://web.archive.org/web/20171011092855/http://www.jackkellersongwriter.com/id1.htmlhttp://www.spectropop.com/remembers/JKobit.htmhttps://en.wikipedia.org/wiki/Jack_Keller_(songwriter)https://www.imdb.com/name/nm0445664/http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=181956&subid=0A.KellerEllerG. KellerH. KellerHellerI. KellerJ KellerJ, KellerJ. HellerJ. KellerJ.KellerJack KefferJack Keller ProductionsJack KileerJack SellerJack W. KellerJack Walter KellerKealerKeelnerKellarKelleeKellerKeller JackKeller, JKeller, JackKellyKemlerKollorKruerTack KellerКеллерジャック・ケラー + +368542Charlie RichCharles Allan RichAmerican country singer born on December 14, 1932 in Colt, Arkansas and died on July 25, 1995 in Hammond, Louisiana. +He was married to [a=Margaret Ann Rich]. +If on release writing credits just 'Rich', please double-check if the song was not actually written by his wife M. A. Rich. +In 1960 for an instrumental single he used the alias Bobby Sheridan +Correcthttps://www.charlierich.com/charlierich.htmhttps://web.archive.org/web/20220408080512/http://www.charlierich.com/https://en.wikipedia.org/wiki/Charlie_RichBoby RichC RichC, RichC. A. RichC. RichC. RickC. RightC.A. RichC.RichCarlie RichCh RichCh. RichCharles Allan RichCharles RichCharley RichCharlieCharlie RichieCharlie RidiCharlier RichCharline RichCharly RichH. RichR. RichRichRich CharlieRich-WRickRitchชาลี ริชチャーリー・リッチBobby SheridanJerry Lee Lewis And FriendsCharlie Rich & His All Stars + +368543Arthur "Big Boy" CrudupArthur William CrudupUS, Mississippi delta blues singer and guitarist sometimes refered to as "The Father of Rock and Roll" due to his influence on "The King of Rock and Roll", [a=Elvis Presley], who recorded Crudup's "That's Allright (Mama)" for his initial, breakthrough record. He also wrote many other well known songs, such as "My Baby Left Me" and "So Glad You're Mine" which also have been covered by Presley and dozens of other artists. + +Born: 24 August 1905 in Forest, Mississippi, USA. +Died: 28 March 1974 in Nassawadox, Virginia, USA (aged 68). + +Discovered by legendary Chicago record producer [a=Lester Melrose], Crudup made his recording debut for the Victor label in 1941. Over the next 11 years he did 36 recording sessions for Victor resulting in songs like "That's Allright (Mama)", "So Glad You're Mine" (both 1946) and "My Baby Left Me" (1950). He then recorded more infrequently for a.o. the [l=Checker] and [l=Trumpet] labels before he by 1956 withdrew from recording due to dissatisfaction with wages and battles with Melrose over his writing royalties. In 1962 he recorded again, this time for Bobby Robinson's [l=Fire] label, resulting in some of his best recorded work, backing himself on all instruments. His later recordings includes a 1968 [l=Delmark] album and a 1970 album recorded in the UK with young british blues musicians including [a=Dave Kelly], [a=Tom McGuinness] and [a=Hughie Flint]. +Needs Votehttp://www.allmusic.com/artist/arthur-big-boy-crudup-p67615http://www.last.fm/music/Arthur+%22Big+Boy%22+Cruduphttp://en.wikipedia.org/wiki/Arthur_Cruduphttp://www.wirz.de/music/crudufrm.htmhttps://adp.library.ucsb.edu/names/109234"Big Boy" Arthur Crudup"Big Boy" CrudupA 'Big Boy' CrudupA CrudupA GrudupA „Big Boy" CrudupA, CrudupA. CrudupA. "Big Boy" CrudupA. B. B. CrudupA. CadupA. Cr udupA. CroupA. CrucupA. CruddupA. CrudeysA. CrudrupA. CrudupA. CruduppA. CrupupA. CudrupA. GrudupA. J. CrudupA.CrudrupA.CrudupA.CudrupArther CrudupArthurArthur "Big Boy" GrudubArthur "BigBoy" CrudupArthur "Bigboy" CrudupArthur "Blues" CrudupArthur 'Big Boy CrudupArthur 'Big Boy'Arthur 'Big Boy' CrudupArthur 'Big Boy' GroupArthur 'Big-Boy' CrudupArthur (Big Boy) CrudupArthur - CrudupArthur Big Boy CruddupArthur Big Boy CrudupArthur CradupArthur CrodupArthur CruddupArthur CrudeysArthur CrudipArthur CrudopArthur CrudrupArthur CruduArthur CrudupArthur CrundupArthur CudrupArthur GrudupArthur GudrupArthur KrudupArthur W. CrudupArthur WilliaM "Big Boy" CrudupArthur William "Big Boy" CrudupArthur William 'Big Boy' CrudupArthur William CrudupArthur « Big Boy » CrudupArthur “Big Boy” CrudupArthur „Big Boy“ CrudupArthus CrudupArtur CrudupArtur GudupAthur CrudupAuthor CrudupB. B. CrudupBig BoyBig Boy CrudupC. CrudupCridipCrodupCropupCrud upCruddupCrudeysCrudpCrudrupCrudrup / ArthurCruduCrudupCrudup ArthurCrudup Arthur "Big Boy"Crudup, ACrudup, A.Crudup, ArthurCrudup/ArthurCrupCrupudCudrupGrudupGudrupKurdupR. Cruduprthur CrudupА. КрадюпКрэдалPercy Lee CrudupElmer James (3) + +368674Sy Oliver And His OrchestraNeeds Votehttps://adp.library.ucsb.edu/names/346038Accompaniment Directed By Sy OliverChor Und Orchester Sy OliverChorus & Orch. Accompaniment Directed By Sy OliverChorus & Orch. Directed By Sy OliverChorus & Orchestra Directed By Sy OliverLa Orquesta De Sy OliverLa Orquesta de Sy OliverOrch.Orch. Sy OliverOrchester Sy OliverOrchestr Sy OliveraOrchestraOrchestra Conducted By Sy OliverOrchestra Di Sy OliverOrchestra Directed By Sy OliverOrchestra Of Sy OliverOrchestra Sy OliverOrchestre Sy OliverOrkestar Sy OliverOrq. De Sy OliverOrquesta De Sy OliverOrquesta Dirigida Por Sy OliverQuintet & Orch. Directed By Sy OliverSi Oliver And His OrchestraSy OliverSy Oliver & His Orch.Sy Oliver & His OrchestraSy Oliver & Orch.Sy Oliver & OrchestraSy Oliver & The All StarsSy Oliver And His Chorus And OrchestraSy Oliver And His Orch.Sy Oliver And His Orchestra And ChorusSy Oliver And OrchestraSy Oliver Con Su OrquestaSy Oliver Et Son OrchestreSy Oliver Orch.Sy Oliver Orch. & ChorusSy Oliver OrchesterSy Oliver Orchester & ChorSy Oliver OrchestraSy Oliver OrkestereineenSy Oliver Sus Coros y OrquestaSy Oliver U. S. OrchesterSy Oliver Und Sein OrchesterSy Oliver Und Seinem OrchesterSy Oliver With OrchestraSy Oliver Y Su OrquestaSy Oliver y Su OrquestaSy Oliver's OrchestraSy Olivers OrchestraSy The Oliver OrchestraSyoliver & His OrchestraThe Orchestra Of Sy OliverThe Sy Oliver Choir And All StarsThe Sy Oliver Choir And The All StarsThe Sy Oliver Orch.The Sy Oliver OrchestraСай Оливер И Его ОркестрХор Сай Оливераサイ・オリバーのオーケストラサイ・オリバー楽団Billy TaylorRay BrownAl KlinkBernie PrivinJoe BenjaminEarl HinesSy OliverCozy ColeJerry JeromeHymie SchertzerBilly KyleEddie BarefieldDanny BankPhil BodnerGeorge DuvivierSeldon PowellGeorge DorseyHank JonesBuck ClaytonCharlie ShaversWarren SmithAl GreyGeorge BarnesArt DrelingerDanny BarkerDave McRaeHank D'AmicoCutty CutshallRod LevittHorace HendersonBarney BigardBarrett DeemsEverett BarksdaleJoe NewmanTaft JordanJimmy MaxwellDick VanceJohnny MinceJimmy CrawfordPaul WebsterElmer CrumbleyBobby DonaldsonErnie CaceresBudd JohnsonJoe Thomas (3)Johnny BlowersArvell ShawOmer SimeonSam Taylor (2)Babe FreskTony FasoSid CooperJimmy NottinghamHaywood HenryAl CobbsCarl PooleJack SatterfieldHenderson ChambersBobby ByrneDick PerryMelvin TaxDavid Martin (10)Milt YanerDick JacobsMort BullmanPat NizzaArtie BakerRed SolomonBunny ShawkerFreddie Williams (2)Richard Harris (5)William GranzosClarence RossWilliam Scott (3)Sandy BlockPaul SeidenBill Holcombe (2)Frank SaraccoFrank Ludwig (2)Wolffie TannenbaumLawrence RiveraHenry SingerStewart BlakeSy SchafferDaniel Burrows (2) + +368805Glenn StuartUS trumpeter; lead trumpet with the Don Ellis Orchestra. Director of music in San Marino High School in Los Angeles, CA. +Born in 1933 - Killed himself in 2002. + +[b]Do NOT confuse with [a=Dion (3)] arranger [a=Glen Stuart (2)] or the singer of British folk rock band [A=Magna Carta] [a=Glen Stuart][/b] +Needs VoteGlen StuartStuartJess Møller RasmussenStan Kenton And His OrchestraThe Don Ellis Orchestra + +369053Giacomo PucciniGiacomo Antonio Domenico Michele Secondo Maria PucciniBorn: December 22, 1858 (Lucca, Tuscany, Italy). +Died: November 29, 1924 (Brussels, Belgium). + +Giacomo Puccini was an Italian opera composer who has been called "the greatest composer of Italian opera after Verdi".Needs Votehttps://www.puccini.it/http://www.pucciniamerica.org/https://en.wikipedia.org/wiki/Giacomo_Puccinihttps://www.britannica.com/biography/Giacomo-Puccinihttps://www.imdb.com/name/nm0006242/https://www.treccani.it/enciclopedia/giacomo-puccini_%28Enciclopedia-dei-ragazzi%29/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102565/Puccini_GiacomoAntonio Giacomo PucciniCiagomo PucciniComposerD. CacciniD. PučiniDella GiacomaDzakomo PuciniDž. PučiniDž. PučinisDž. PučīniDž.PučīniDžakomo PučīniG . PucciniG PucciniG. Pucc IIG. PuccinG. PucciniG. PuciniG. PucinniG. PučiniG.PucciniG.PuccinniGiaccomo PucciniGiacommo PucciniGiacomo Antonio PucciniGiacomo PucchiniGiacomo Puccini (1858-1924)Giacomo PuccinniGioacchino PucciniGioacomo PucinniGiocomo PucciniGiácomo PucciniJakomo PucciniJiacomo PucciniMo. Giacomo PucciniMolto PucciniMozartP. CiampiP. PucciniPUCCINIPucchiniPucciniPuccini G.Puccini GiacomoPuccini'sPuccini, G.Puccini, GiaccomoPuccini, GiacomoPuccini-ArnoldPuccinioPuciniPucinniPutinePučiniPučinijaPučinisT. PucciniVinnie PucciniìĐ. PučiniΠουτσίνιΤζάκομο ΠουτσίνιЂ. ПучиниЏ. ПучиниД. ПуччiнiД. ПуччиниД.ПуччиниДЖ. ПуччиниДж. ПУЧЧИНИДж. ПучиниДж. ПуччiнiДж. ПуччиниДж. ПуччинниДж.ПуччиниДжакомо ПучиниДжакомо ПуччиниДжиакомо ПуччиниПучиниПуччиниПуччініジャコモ・プッチーニプッチーニ普契尼浦契尼 + +369576Terry GilkysonHamilton Henry Gilkyson IIIBorn: Phoenixville, Pennsylvania 17 June 1916 +Died: Austin, Texas 15 October 1999 + +"Terry" Gilkyson, singer and songwriter, wrote several of the biggest hit records of the early 1950s. His "Memories are Made of This" became both a number one song for Dean Martin in 1956 and a clever catchphrase for the nostalgia boom. He recorded two albums of folk songs, The Solitary Singer, volumes 1 and 2, in 1950 and 1951, but had his first hit record in 1951 when he joined [a=The Weavers], with "On Top of Old Smokey". + +With his songwriting friends Rick Dehr and Frank Miller, Gilkyson had formed a folk group, [a=Terry Gilkyson And The Easy Riders]. They released the album "Golden Minutes of Folk Music" in 1953. + +In 1958 the Easy Riders scored the film [i]Windjammer[/i], and then in the 1960s, Gilkyson wrote music for the long-running television series [i]The Wonderful World of Disney[/i]. In 1967 Gilkyson wrote the song "The Bare Necessities" for the Walt Disney cartoon [i]The Jungle Book[/i], in 1970 he contributed to the score of [i]The Aristocats[/i]. + +His daughter [a=Eliza Gilkyson] is a singer-songwriter. His son [a=Tony Gilkyson] has played with both [a=X (5)] and [a=Lone Justice]. +Needs Votehttps://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=100&Main_Search_Text=Gilkyson+Hamilton+H+III&Search_Type=allhttps://adp.library.ucsb.edu/names/107122https://www.imdb.com/name/nm0318601/https://en.wikipedia.org/wiki/Terry_GilkysonCilkysonFrank GilkysonG. KysonGIlkysonGelkysonGikysonGil KysonGilcysonGilgysonGilikysonGilkGilkersonGilkeysonGilkfonGilkinsonGilkisonGilksonGilksysonGilkusonGilky SonGilky/SonGilkynsonGilkysenGilkysonGilkyson, TerryGilkysoonGilliksonGilyksonGilysonGiokysonGlikysonGlykersonGylkersonGylkisonGylkysonI. GilkysonK. KysonKilkysonKylkysonKysonLkysonM. GilkysonMr. GilkysonP. GilkysonR. GilkysonR. ZigfeldS. GlikysonT GilkysonT. CilkysonT. G. SonT. GelkysonT. GilbysonT. GilkinsonT. GilkisonT. GilksonT. GilkvsonT. GilkynsonT. GilkyrsonT. GilkysenT. GilkysonT. GillicksonT. GillkysonT. GilykinsonT. GilysonT. GlikysonT. GylkisonT. GylkysonT. JilkysonT.GilkysonTed GilkysonTerry / GilkysonTerry BilkysonTerry GikysonTerry GilbysonTerry GilgysonTerry GilkinsonTerry GilksonTerry Gilky SonTerry GilkynsonTerry Gilkyson And The South CoastersTerry Gilkyson The Solitary SingerTerry Gilkyson-RichTerry GilrysonTerry GilysonTerry GiokysonTerry GlkysonTerry GulkysomTerry GylkynsonTerry GylkysonTerry, TerryTom GilkysonГилкисонГликисонТ. Джилкисонギルカイソンテリー・ギルキーソンTerry Gilkyson And The Easy RidersThe Easy Riders + +369637Nicholas BootimanNicholas Martin BootimanBritish orchestral & chamber classical violist and conductor. Born in July 1980 near Munich, West Germany. +He attended [l1727868], the [l290263], the [l692283], and the [l604698]. In 2002, he joined [b]The Guillami String Quartet[/b] and the [b]Bowen String Quartet[/b]. In May 2008, Nicholas started up the [b]Bedford Chamber Music Festival[/b] and became its Artistic Director. Freelance No 2 Viola with the [a=Philharmonia Orchestra] since June 2008.Needs Votehttps://twitter.com/nickbooti?lang=enhttps://www.linkedin.com/in/nicholas-bootiman-6263bb202/?originalSubdomain=ukhttps://myspace.com/135165957https://open.spotify.com/artist/75LWb7g63fNAcdf6Lm1iqQhttps://find-and-update.company-information.service.gov.uk/officers/mB7G-KkyB4W3SjZdw7fBciVy78A/appointmentshttps://www.feenotes.com/database/artists/bootiman-nicholas-1980-present/https://philharmonia.co.uk/bio/nicholas-bootiman/https://www.bmop.org/explore-bmop/musicians/nicholas-bootimanhttp://www.artsahimsa.org/artists/n_bootiman.htmhttp://www.cervochambermusic.com/CCM/en-GB/musicians.aspxhttps://www.arcpublications.co.uk/ymf/perform/bowen.htmhttps://guillami.co.uk/about/Nick BootimanNicole BootimanPhilharmonia OrchestraRoyal Liverpool Philharmonic OrchestraLondon Contemporary OrchestraColin Currie Group + +370226June ClarkAlgeria Junius Clark.American jazz trumpeter and cornetist player. + +Born : March 24, 1900 in Long Branch, New Jersey. +Died : February 23, 1963 in New York City, New York. +Needs VoteClarkJ. ClarkJune ClarckJunius "June" ClarkDuke Ellington And His OrchestraPerry Bradford Jazz Phools + +370227Leroy RutledgeTrumpet player.Needs VoteThe Washingtonians + +370228Charlie JohnsonCharles Wright Johnson.American jazz pianist, bandleader and arranger. +Nickname : "Fess". + +Born : November 21, 1891 in Philadelphia, Pennsylvania. +Died : December 13, 1959 in New York City, New York. + +NOT to be confused with the jazz trumpeter from the same era: [a=Charlie Johnson (4)] +Needs VoteC. JohnsonCharles JohnsonChas. JohnsonG. JohnsonJohnsonCharlie Johnson & His OrchestraCharlie Johnson & His Paradise BandCharles Johnson's Paradise TenMary Stafford & Her Jazz BandJackson & His Southern Stompers + +370229Harry CooperHarry R. Cooperb.: 1903 in Lake Charles, LA. +d.: 1961 in Paris, France + +American jazz trumpeter and conductor. Growing up in Kansas City he associated musically with [a311057], [url=http://www.discogs.com/artist/2070018]George E. Lee[/url] and [a774885]. Among his school mates at Lincoln High were [a307422], [a4129206] and [a307153]. He left KC in 1922 with the [a559498]'s touring band. Moved to Europe in the late 1920s with [url=http://www.discogs.com/artist/4039866]Leon Abbey[/url]'s Orchestra. He apparently became a French citizen in 1941 through his wedding and stayed in Europe for the rest of his life.Needs VoteCooperH. CooperHarry CopperBennie Moten's Kansas City OrchestraThe WashingtoniansJerry Mengo Et Son OrchestreHarry Cooper Et Son OrchestreHarry Cooper QuintetSam Wooding And His OrchestraHarry's Happy FourPierre Fouad Et Son OrchestreJerry Mengo Et Ses Solistes Du Jazz De Paris + +370230Duke Ellington And His Kentucky Club OrchestraCorrectDuke Ellington & His Kentucky Club Orch.Duke Ellington & His Kentucky Club OrchestraDuke Ellington's Kentucky Club OrchestraKentucky Club OrchestraDuke EllingtonFred GuyRudy Jackson + +370233The WashingtoniansThe Washingtonians was the name of [a145257]'s earliest recording band. This band was originally managed and directed by [a669268], but Snowden himself does not appear on any recordings by the group. The Washingtonians name was also applied pseudonymously to many releases by [a284747] during the 1920s. All these Ellington-associated releases, made either before or after Ellington took over the band, should be entered on this page. + +Artist name may appear as "The Washingtonians", "Duke Ellington and the Washingtonians", "Duke Ellington's Washingtonians", "Duke Ellington and his Washingtonians" or subtle variations of these names for inclusion on this page.Needs VoteDuke Ellington & His WashingtoniansDuke Ellington & The WashingtonersDuke Ellington & The WashingtoniansDuke Ellington And His WashingtoniansDuke Ellington's WashingtoniansMemphis Bell HopsWashingtoniansDuke EllingtonHarry CarneyDon RedmanJoe NantonPrince RobinsonSonny GreerPike DavisLouis MetcalfBubber MileyHenry EdwardsOtto HardwickCharlie IrvisFred GuyRudy JacksonLeroy RutledgeHarry Cooper + +370234Rube BloomReuben BloomAmerican composer and pianist and author. +Born 24 April 1902 in New York City, New York, USA. +Died 30 March 1976 in New York City, New York, USA. +Inducted into Songwriters Hall of Fame in 1982. +He charted as a songwriter thirty times in the U.S. and twice in the U.K. between 1930-1976 including four #1 songs: "The Man from the South" by Ted Weems and His Orchestra (1930) (co-written by Harry M. Woods), "Truckin'" by Fats Waller (1935) (co-written by Ted Koehler), "Day in, Day Out by Bob Crosby and His Orchestra (1939) (co-written by Johnny Mercer), and "Fools Rush In (Where Angels Fear to Tread)" by The Glenn Miller Orchestra (1940) also (co-written by Johnny Mercer). He also had six other top 10 singles as a songwriter. +He wrote the instruction guide [i]Rube Bloom’s Guide to Modern Piano Playing[/i] (1936).Needs Votehttps://en.wikipedia.org/wiki/Rube_Bloomhttps://www.songhall.org/profile/Rube_Bloomhttp://ragpiano.com/comps/rbloom.shtmlhttps://adp.library.ucsb.edu/names/104736.BloomB. BloomBlloomBloemBlomBlommBloomBloom*BloomsBloonBlorrmBlumBlumeC. BloomCrubb BloomFloomM. BloomR BloomR, BloomR. BloomR. BloomeR. BlumeR. BoomR.BloomReuben BloomRub BloomRuba BloomRube BloonnRuby BloomRueben BloomS. BloomJoe Venuti's Blue FourSioux City SixThe Tennessee TootersThe HottentotsLanin's Arkansaw TravelersRube Bloom And His Bayou BoysThe Tampa Blue Two + +370291Philippe ChatelPhilippe de Châteleux de Villeneuve-Bargemont de DurasPhilippe Chatel (February 23, 1948 – 19 February 2021) was a French singer-songwriter.Needs Votehttps://fr.wikipedia.org/wiki/Philippe_ChatelC. ChatelChatelP. ChatelP. ChâtelP.ChatelPh. ChatelPh.Chatel + +370500Laura NyroLaura NigroAmerican songwriter, singer, and pianist. +Born: 18 October 1947 in The Bronx, NYC, New York, USA. +Died: 8 April 1997 in Danbury, Connecticut, USA (aged 49). +Inducted into Songwriters Hall of Fame in 2010 and Rock and Roll Hall of Fame in 2012.Needs Votehttps://www.cwhf.org/inductees/laura-nyrohttps://www.facebook.com/LauraNyro/https://rockhall.com/inductees/laura-nyro/https://en.wikipedia.org/wiki/Laura_Nyrohttps://www.allmusic.com/artist/laura-nyro-mn0000137474I. NyroL NyroL. NirdL. NyroL.NyroL.nyroLauraLaura MyroLaura NeroLaura NyraLauro MyroLauro NuroLyra NyroMyroNyroЛ. Найро + +370522MDA & SphericalUK Hard Dance Producers, Remixers, Engineers & DJs.Correcthttp://www.myspace.com/mdasphericalmusicM.D.A & SphericalMDA + SphericalMDA And SphericalMda And SphericalMatt AdamsMark Beadle + +370651Dittmar TrebeljahrDittmar Trebeljahr is a German clarinetist, saxophonist, engineer and producer. +Needs VoteDresdner Philharmonie + +370709Abraham HochsteinViolin player from the big band eraCorrectAbe HochsteinHarry James And His Orchestra + +370710Buff EstesJazz saxophonistNeeds Votehttps://www.allmusic.com/artist/buff-estes-mn0000562596/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/354402/Estes_BuffB. EstesBenny Goodman And His OrchestraOzzie Nelson And His Orchestra + +370712Elias FriedeAmerican cellist during the big band eraCorrectAl FriedaAl FriedeElis FriedeFriedeHarry James And His OrchestraHarry James & His Music Makers + +370713Nick BuonoAmerican jazz trumpeter. + +Born : June 17, 1917 in San Diego, California. +Died : October 14, 1993, in San Diego, California. +CorrectBuonoDom BuonoDominic BuonoDominick BuonoHarry James And His OrchestraHarry James & His Music Makers + +370714Arnold CoveyJazz guitarist.Needs VoteArnold CovarrubiasArnold CovesArnold Covey (Covarrubias)Arnold CovarrubiasBenny Goodman And His Orchestra + +370715Al LernerAlbert LernerAmerican big band pianist, composer and conductor. +Born April 7, 1919 in Cleveland, Ohio. +Died January 19, 2014 in Palm Desert, California. + +[b]For the prolific lyricist and composer use [a=Alan Jay Lerner].[/b] + +He played with Harry James in the early 1940s. After that band disbanded he worked as musical director for Dick Haymes for thirteen years. Lerner was the last surviving member of the original Harry James Orchestra. +He often collaborated with [a1160325].Needs Votehttps://en.wikipedia.org/wiki/Al_Lerner_(composer)http://obituaries.desertsun.com/obituaries/thedesertsun/obituary.aspx?pid=169513604https://m.imdb.com/name/nm3322867/https://adp.library.ucsb.edu/names/359390A. J. LernerA. LernerA.J. LernerAlan Jay LernerAlbert LernerLernerHarry James And His OrchestraHarry James & His Music MakersAl Lerner QuintetteAl Lerner And His Orchestra + +370716Clint DavisBaritone saxophonist during the swing era.CorrectClint Davis Jr.DavisHarry James And His Orchestra + +370717Ronnie PerryAmerican jazz saxophonistNeeds VoteR. PerryRon PerryRonald PerryRonnie ParryRonny PerryRon Perry (3)Woody Herman And His OrchestraArtie Shaw And His OrchestraTeddy Powell And His OrchestraBob Keene OrchestraThe Band That Plays The Blues + +370721Leo ZornAmerican violinist during the big band era.CorrectZornHarry James And His OrchestraHarry James & His Music Makers + +370724Alex CuozzoUS Jazz trumpeter of the swing era.Needs VoteAl CuozzoAlexander CuozzoHarry James And His OrchestraBenny Goodman And His OrchestraHarry James & His Music Makers + +370725Victor YoungAlbert Victor YoungAmerican composer, arranger, conductor, and violinist, working principally in Hollywood motion pictures (August 8, 1899, Chicago, Illinois – November 10, 1956, Palm Springs, California). + +Victor Young was born into a poor, but musical family. He was educated at the Warsaw Conservatory in Poland. As a teenager, he toured Europe as violinist with the [url=https://www.discogs.com/artist/452918-The-National-Warsaw-Philharmonic-Orchestra]Warsaw Philharmonic[/url], and later gave imperial concerts in Russia. He returned to the United States in 1920, working in Chicago as a violinist, arranger and conductor for radio and theater during the 1920s and 1930s. He arranged many of [a=Bing Crosby]'s records for [l=Decca], and worked as a songwriter for Broadway musicals and revues. Young joined Paramount studios in 1935 and worked on more than 300 film scores over a period of twenty years. He also wrote many popular songs, such as "Love Letters", "My Foolish Heart", "Stella By Starlight", "Sweet Sue, Just You", "Street of Dreams," and the popular hit "When I Fall In Love," penned with lyricist [a=Edward Heyman].Needs Votehttps://www.songhall.org/profile/Victor_Younghttps://www.imdb.com/name/nm0000082/https://oac.cdlib.org/findaid/ark:/13030/tf796nb4d2/https://en.wikipedia.org/wiki/Victor_Younghttps://www.ibdb.com/broadway-cast-staff/victor-young-12609https://www.britannica.com/biography/Victor-Younghttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105747/Young_VictorBilly YoungBloomC. YoungChandler RoyD. YoungDe YoungI. YoungJ. YoungJoe YoungJouncJoungK. YoungL. YoungN. YoungN.YoungNed YoungO. YoungP. Victor YoungP.V. YoungU. YoungV YoungV, YoungV,YoungV. YoungV. EwingV. JanV. JoungV. P. YoungV. YangV. YongV. YoomV. YoungV. YouungV. YungV. ヤングV..YoungV.P YoungV.P. YoungV.YoungV: YoungV:YoungV=ヤングVi. YoungVictorVictor A. YoungVictor JonesVictor JoungVictor JungVictor P. YoungVictor Popular YoungVictor YangVictor YongVictor YougVictor Young With The DragonettesVictor YourVictor YungVictory YoungVictoy YoungViktor YoungVitor YoungVoctor YoungVíctor YoungW YoungW. YoungWictor YongWictor YoungY.Y. YoungY.EwingYOungYohngYongYonugYouYounaYoundYoungYoung VYoung V.Young VictorYoung Victor PopularYoung ViktorYoung, VYoung, VictorYoung, YoungYungv youngВ. ВунгВ. ЯнгВиктор Янгיאנגビクター • ヤングヤングIsham Jones OrchestraVictor Young And His Singing StringsVictor Young And His OrchestraBen Pollack And His CaliforniansVictor Young's Small FryersVictor Young And His Concert OrchestraVictor Young And His SerenadersVictor Young And The All-Star RevueVictor Young And The Paramount Studio Orchestra And Chorus + +370727Sam SachelleAmerican jazz saxophonist of the swing era.Needs VoteSan SachelleHarry James And His OrchestraJan Savitt And His Top HattersWill Bradley And His OrchestraHarry James & His Music Makers + +370728Gene LamasEugene LamasViolinistCorrectE. LamasEugene LamasArtie Shaw And His OrchestraHarry James & His Music Makers + +370729Jimmy HorvathAmerican jazz saxophinst.Needs VoteJames HorvathJames HowarthJimmy HorrathJimmy HowathWoody Herman And His OrchestraBenny Goodman And His OrchestraThe Band That Plays The Blues + +370730Pete MondelloJazz saxophonist. +Brother of [a=Toots Mondello]Needs Votehttps://www.allmusic.com/artist/pete-mondello-mn0000866840Peter MondelloWoody Herman And His OrchestraTeddy Powell And His OrchestraBenny Goodman And His OrchestraNeal Hefti's OrchestraWoody Herman & The HerdChubby Jackson's Big BandThe Band That Plays The Blues + +370731Sindel KoppAmerican violinist. +Sindell played with : "Paul Whiteman Orchestra", "Harry James Band" and others. + +Born : circa 1913. +Died : 1987 in Shreveport, Louisiana.CorrectKoppSindell KoppHarry James And His Orchestra + +370734Phil Palmer (2)American french horn playerCorrectPhilip PalmerHarry James And His Orchestra + +370736Mickey ScrimaMichael V. Scrima.American jazz percussionist. +Mickey worked, among others with : Harry James and Charlie Barnet. + +Born : November 07, 1915 in Pittsburgh, Pennsylvania. +Died : March 29, 2009 in Dallas, Texas.Correcthttps://obits.dallasnews.com/obituaries/dallasmorningnews/obituary.aspx?n=michael-v-scrima-mickey&pid=125732503Michael ScrimaMichey ScrimaMickey CrimaMicky ScrimaScrimaHarry James And His OrchestraCharlie Barnet And His OrchestraHarry James & His Music Makers + +370737Jimmy CampbellJames L. Campbell[B]For the British songwriter ("If I Had You", "Try A Little Tenderness", "Goodnight Sweetheart"), see [a=James Campbell][/b] +American jazz drummer, born December 24, 1928, Wilkes-Barre, PA, died March 27, 1998 in Las Vegas, Nevada. He passed away at age 69 of respiratory failure, attributed to a three-pack-a-day cigarette habit that lasted for over four decades. + + +Needs Votehttp://www.jazzinternet.com/vegasjazz/artists/jcampbell/index.htmlCampbellJ. CampbellJames CampbellJim CampbellJimmy CambellWoody Herman And His OrchestraStan Kenton And His OrchestraRalph Flanagan And His OrchestraWoody Herman SextetWoody Herman And The Swingin' HerdThe Don Elliott QuintetDon Elliott QuartetWoody Herman And The Fourth HerdSal Salvador QuintetThe Chuck Wayne TrioThe Richard Maltby OctetSal Salvador And His OrchestraLou Mecca QuartetThe Vinnie Burke All-StarsThe Urbie Green SeptetWoody Herman's Anglo-American HerdFrank Socolow's Sextet + +370738Jack GootkinViolinist.CorrectJack GoetkinJack GoodkinJack GotkinJack M. GootkinHarry James And His OrchestraHarry James & His Music Makers + +370739Bus BasseyJazz saxophonist.Needs Votehttps://www.allmusic.com/artist/bus-bassey-mn0000918126/creditshttp://musicalbacon.com/Bus-Bassey.htmlhttps://www.imdb.com/name/nm0060254/Bud BasseyBus BaseyBuss BasseyC. BasseyCl. BasseyG. BasseyRuss BasseyArtie Shaw And His OrchestraBenny Goodman And His Orchestra + +370740Les BurnessLester Friedman.American jazz pianist. + +Born : 1911 in Hartford, Connecticut. +Died : September 13, 2000 in Eatontown, New Jersey. + +Les worked (among others) with : Mal Hallett, Artie Shaw, +Bunny Berigan, Red Norvo, Wayne King, Tony Pastor (1941-1967).Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/306266/Burness_LesBurnessL. BurnessLes BurnesLester BurnessArtie Shaw And His OrchestraArt Shaw And His New Music + +370741Alex PevsnerAmerican violinist during the big band era.CorrectAlx PevsnerPevsnerHarry James And His Orchestra + +370743Ted VeselyAmerican jazz trombonist + +Born : 1913. +Died : August 20, 1973. (Heart attack) + +Ted worked with : [a269597], [a403545], [a254768], [a52833], [a164571], [a258706], [a1838997], [a31615], [a33589], [a313112],[a307409], [a254886], [a301368], [a357512], [a239399], [a152707], [a312997], [a299941], Speedy Forrest and others..Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109663/Vesely_Tedhttps://rateyourmusic.com/artist/ted-vesely/credits/https://www.allmusic.com/artist/ted-vesely-mn0000566641/credits[a269597]T. VesleyTed VeseleyTed Vesely's Jazz BandTed VesleyTed VeslyTed VessleyArtie Shaw And His OrchestraBob Crosby And His OrchestraBenny Goodman And His Orchestra + +370744Fred WaldronUS Jazz french hornist of the swing era.Needs VoteHarry James And His OrchestraHarry James & His Music Makers + +370745Johnny McAfeeUS Jazz saxophonist of the swing era.Needs Votehttps://adp.library.ucsb.edu/names/112957John MacAfeeJohnny Mac AfeeJohnny MacAfeeJohnny MacafeeJohnny McAffeeJohnny McAveeHarry James And His OrchestraHarry James & His Music Makers + +370748Bill SpearsAmerican viola & violin player.CorrectBill SpearSpearsWilliam SpearHarry James And His OrchestraHarry James & His Music Makers + +370787Frank PaparelliAmerican jazz pianist and composer. +Born : December 25, 1917 in Providence, Rhode Island. +Died : May 24, 1973 in Los Angeles, California. + +A jazz pianist in [a=Dizzy Gillespie]'s band during the mid-'40s, Frank Paparelli never became a known name like some of his bandmates, but he made a contribution to a genre that has endured the decades since. Along with Gillespie, Paparelli wrote the bop classic 'Night in Tunisia', as well as the still popular 'Blue 'n' Boogie'. +Needs Votehttp://www.frankpaparelli.com/F PaparelliF PararelliF-PaparelliF. DaparelliF. PaparellF. PaparelliF. PaparellyF. PaparelyF. PaparolliF. PaperelliF. PapparelliF. PaprelliF. PararelliF. PreliF. RaparelliF. ZaparelliF. パーパレリF.PapareillF.PaparelliF.PaperelliFranck PaparelliFrankFrank DaparelliFrank PapararelliFrank PapareillFrank PaperelliFrank PappardelliFrank PapparelliFrank PaprelliFrank PararelliFrank RaparelliJ. PaparelliJohn PaparelliPapaelliPaparalliPapareliPaparelliPaparelli, FrankPaparelliePapaselliPapavelliPaperelliPapparelliPapparelliePapperelliPaprelliPaprielliParaelliPararelliPeparelliRobinФ. ПапареллиDizzy Gillespie Sextet + +370846Oliver JohnsonAmerican drummer, born 5th December 1944 in Oakland, CA, died 6th March 2002 in Paris, France. +The Oliver Johnson's encounter with music takes place with instruments different from the one that will make him famous. In fact, as a young man he learned to play the trumpet and in his free time he sang in one of the many religious choirs in his city. The turning point came by chance between 1962 and 1963 when during his military service he learned the technique of percussion and especially drums. In 1964 he played in various Latin American groups and the following year, having met Don Raphael Garrett, he decided to dedicate himself to jazz, working in the recording studio with pianist Denny Zeitlin and playing with Bobby Hutcherson, Dewey Redman, Sam Rivers, Johnny Griffin , Dexter Gordon, Andrew Hill and others. At the end of the Sixties, following in the footsteps of many other jazz musicians, he left the States and moved to Europe, where he played and recorded, among others, with Alan Silva in 1970, Jean-Luc Ponty in 1971, Anthony Braxton in 1972, Gato Barbieri , Eje Thelin, Rolf and Joachim Kuhn, David Murray and many others. Since 1977 he has been a regular member of Steve Lacy's group with which he recorded half a dozen records for various labels. At the same time, with Takashi Kako and Kent Carter he created the TOK trio, with which he recorded three albums. On March 26, 2002, Johnson was found lifeless on a bench on Rue Pierre Lescot in Paris. The police investigations lead nowhere. His killer will go unpunished.Needs Votehttps://www.dailygreen.it/oliver-johnson-batterista-per-caso-jazzista-per-passione/JohnsonO. JohnsonOlivier JohnsonОливер ДжонсонThe Celestrial Communication OrchestraNoah Howard QuartetSteve Lacy QuintetRolf Kühn GroupSteve Lacy & CieNoah Howard GroupSteve Lacy TrioThe Steve Lacy QuartetAnthony Braxton Creative Music OrchestraSteve Lacy SevenThe Steve Lacy SextetSteve Lacy FourSteve Lacy NineSteve Lacy FiveDexter Gordon QuartetTOK (3)Hal Singer QuartetJean-Luc Ponty "Experience"François Chassagnite QuartetThe Hal Singer Jazz QuartetDaniele Cavallanti Double TrioCarolyn Del Rosario Sextet + +371107Booty WoodMitchell W. WoodBooty Wood (born December 27, 1919 in Dayton, Ohio, USA - died June 10, 1987 in Dayton) was an American jazz trombonist.Needs Votehttps://en.wikipedia.org/wiki/Booty_Wood"Booty" WoodB. WoodB. WoodsBWdBootie WoodBootsy WoodsBooty WoodsM. WoodM. ВудMichael "Booty" WoodMichael WoodMichael WoodsMichel WoodsMike WoodMike WoodsMitch WoodMitchel "Booty" WoodMitchel WoodMitchell "Bootie" WoodMitchell "Booty" WoodMitchell 'Bootie' WoodMitchell 'Booty' WoodMitchell WoodMíchael 'Booty' WoodWoodWoodsCount Basie OrchestraDuke Ellington And His OrchestraLionel Hampton And His OrchestraArnett Cobb & His OrchestraBooty Wood And His AllstarsSnooky Young SeptetDuke Ellington And His Award Winners + +371374Marty NelsonMarty Nelson has worked in the entertainment and advertising industries for over twenty years. He has written copy and music for commercials, produced records and directed videos. + +An original member of [a49605] from 1969 to 1972, he appears on their 1971 Capitol Records debut album "Jukin". He not only performed but also did both instrumental and vocal arrangements on the album. Marty's voice has been heard on hundreds of radio and TV commercials as a singer and voice-over talent and has sung backup on albums for a variety of artists ranging from Frank Sinatra to The Village People. +Needs Votehttp://martynelson.com/M. NelsonMartyNelsonThe Manhattan Transfer + +371484AfterShokDave LeighElectronic dance music producer from Bristol, UK +Styles: Hard Trance | Dance | Hard Dance | PsyCorrecthttp://soundcloud.com/aftershokhttp://www.myspace.com/aftershokmusicAfterShokkAftershockDave LeighVote Robot (2) + +371586Irma KortIrma KortOboe player and teacher from the Netherlands. +She studied at the Conservatory in Groningen (the Netherlands) with Frank Mulder and at the Royal Conservatory in The Hague (the Netherlands) with professor [a=Bart Schneemann]. +She teaches playing Oboe in her Oboe studio at the ISH Music Centre (The Hague, the Netherlands). +She's also part of Holland Symfonia, an orchestra from Haarlem (the Netherlands). +Needs Votehttp://www.irmakort.nl/Nederlands Blazers EnsembleStarvinsky OrkestarHannekes Pocket OrchestraMartin Fondse Orchestra + +371587Carla SchrijnerCarla SchrijnerCellist from the Netherlands. +She studied cello at Het Koninklijk Conservatorium in The Hague (the Netherlands) by Jean Decroos. She did courses by Paul Tortelier and Boris Pergamenschikov. +She played for a long time for the Dutch and the European Youth Orchestra. From 1987 to 1996 she played for Brabants Orkest. Now she's playing for Rotterdams Philharmonisch Orkest and for Orion Ensemble. +CorrectCarla SchrijverHet Brabants OrkestRotterdams Philharmonisch Orkest + +371594Janine BallerJanine BallerViola player from the Netherlands. +She's a member of Rotterdams Philharmonisch Orkest since 1996. +CorrectRotterdams Philharmonisch Orkest + +371597Noëmi BoddenNoëmi BoddenViolinist from the Netherlands. +She's a (solo) violinist of Rotterdams Philharmonisch Orkest and of Rotterdam Chamber Orchestra. +CorrectNoemi BoddenRotterdams Philharmonisch Orkest + +371598Ebred ReijnenEbred ReijnenViolinist, born 1955 in Breda, Netherlands. + +Received his first lessons at the age of 10 from Karel Visser of the music school of Breda (the Netherlands). Reijnen graduated as a solo violinist at the Brabants Conservatorium (Tilburg, the Netherlands), then studied at the Royal Conservatoire (Brussels, Belgium) and followed mastercourses with Andre Gertler in Goslar (Germany) . +He joined the Rotterdams Philharmonisch Orkest in 1982. In 1993 he worked as concertmaster with the Orquesta Ciudad De Granada (Granada, Spain) for a year, where he discovered gypsy and improvisational music. Back in the Netherlands he then started the gypsy band Youchka. Over the years he has discovered more musical genres and alongside classical music he now plays gypsy, jazz, tango, pop, klezmer and new age. +Reijnen has also founded the string ensemble [a2680968] with whom he appeared on several pop music recordings. He is currently experimenting with electric violins and effects. +Needs Votehttp://www.ebred.nl/Ebred ReijenEbred ReynenRotterdams Philharmonisch OrkestEbred Strings + +371786Sture NordinKarl Sture NordinSwedish bass player, born 11 November 1933 in Östersund, died 11 October 2000 in Stockholm, Sweden.Needs Votehttps://sv.wikipedia.org/wiki/Sture_NordinNordinS NordinS. NordinStureThe Guido Manusardi TrioDexter Gordon QuintetLill-Arne Söderbergs Famous TrioRune Öfwerman TrioDexter Gordon QuartetJan Allan QuartetBenny Bailey QuintetPutte Wickmans KvartettSölve Strands KapellThe Swedish Modern Jazz GroupNils Lindberg SeptetSture Synnefors QuintetSummit MeetingStaffan Nilsons TrioBenny Bailey QuartetRobert Edman QuartetPutte Wickman KvintettKeiko McNamara TrioJazz IncorporatedSture Nordin SextetHacke Björkstens Septett + +371787Lars ErstrandRolf Lars Olof ErstrandSwedish vibraphonist, born September 27, 1936 in Uppsala, died March 11, 2009 in Uppsala. + +On Erstrand's track record, it can be noted that he played with [a254768] in Paris in 1972, and at Michael's Pub in New York on several occasions. In 1991, he recorded the album Two Generations with [a136133]. + +Among other musicians, Erstrand played with Alice Babs, Svend Asmussen, Arne Domnérus, Bob Wilber, Scott Hamilton, Kjell Öhman, the Swedish Swing Society and Antti Sarpila. Also new generations of jazz players have turned to Erstrand, such as clarinetist and tenor saxophonist [a296957] and guitarist [a806763]. At the end of his life he played with his quartet "Lars Erstrand Four".Needs Votehttps://en.wikipedia.org/wiki/Lars_Erstrandhttps://sv.wikipedia.org/wiki/Lars_ErstrandErstrandL. ErstrandLELars ErstandLars Erstrand And Four BrothersBenny Goodman And His OrchestraLars Erstrand QuartetThe Ove Lind Swing GroupOve Linds SextettOve Lind QuartetThe Swedish Swing QuartetErstrand-Lind QuartetLars Erstrand & Co.Swedish Swing SocietyThe International AllstarsSvenska SwingelitenLars Erstrand TrioLars Erstrand Quartet With FriendsLars Erstrand FourLars Erstrand QuintetLars Erstrand / Antti Sarpila QuartetSwingers UnlimitedLars Erstrand Antti Sarpila QuintetBanger & Erstrand Trio + +372037Mike LawrenceMichael LawrenceAmerican jazz trumpeter, flugelhornist, and composer +Born December 03, 1945 in Yonkers, New York, died January 01, 1983 in New York City, New York (cancer) + +Mike worked with [a=Joe Henderson], [a=Billy Cobham], [a=Bob James], [a=Manu Dibango], [a=Larry Coryell], [a=Gil Evans], [a=Fania All Stars], and others. +Husband of [a=Roberta Lawrence].Needs Votehttps://www.facebook.com/MikeLawrenceTrumpet/https://de.wikipedia.org/wiki/Mike_Lawrencehttps://www.trumpetherald.com/forum/viewtopic.php?t=51006&sid=5aa58a8246d467ac153b8bb6d7edd78chttps://musicianbio.org/mike-lawrence/LawrenceM. LawrenceMichael LawrenceMicke LaurenceGil Evans And His OrchestraLibreBlood, Sweat And TearsThe Jazz Composer's OrchestraThe Eleventh HouseJoe Henderson SextetNational Jazz Ensemble1:00 O'Clock Lab Band + +372039Herbert SorkinClassical violinist.Needs VoteHebert SorkinHerb SorkinThe Cleveland OrchestraMarlboro Festival OrchestraArs Nova (13) + +372362Shadow WilsonRossiere Vandella WilsonAmerican jazz drummer +Born September 25, 1919 in Yonkers, New York, died July 11, 1959 in New York City, New York + +Worked with Lucky Millinder, Benny Carter, Tiny Bradshaw, Lionel Hampton, Earl Hines, Count Basie, Woody Herman, Sonny Stitt, Illinois Jacquet, Erroll Garner, Thelonious Monk and others.Needs Votehttps://en.wikipedia.org/wiki/Shadow_Wilsonhttps://www.drummerworld.com/drummers/Shadow_Wilson.htmlhttps://www.radioswissjazz.ch/en/music-database/musician/4123134726fc9ca487fa6e22860d1df9f31a5/biographyhttps://www.bluenote.com/artist/shadow-wilson/https://adp.library.ucsb.edu/names/351214"Shadow" Wilson'Shadow' WilsonR. "Shadow" WilsonRosière "Shadow" WilsonRoss WilsonRoss «Shadow» WilsonRosseire "Shadow" WilsonRossiere "Shadow" WilsonRossiere 'Shadow' WilsonRossiere Shadow WilsonRossiere V. WilsonRossiere WilsonRoziere "Shadow" WilsonS. WilsonSh. WilsonShad WilsonShadow WisonWilsonШадоу ВильсонШэдоу Уилсонシャドウ・ウィルソンColeman Hawkins QuartetCount Basie OrchestraThe Thelonious Monk QuartetWoody Herman And His OrchestraThe Tadd Dameron SextetLouis Jordan And His Tympany FiveBilly Eckstine And His OrchestraThe Gil Melle QuartetErroll Garner TrioIllinois Jacquet And His OrchestraColeman Hawkins QuintetLester Young QuartetIllinois Jacquet And His All StarsSonny Stitt BandLeo Parker's All StarsDeLuxe All Star BandThelonious Monk TrioLester Young QuintetThe J.J. Johnson QuintetJ.J. Johnson's BoppersBuster Harding's OrchestraJimmy Mundy OrchestraJoe Newman OctetColeman Hawkins All StarsIllinois Jacquet & His Big BandJ.J. Johnson's Bop QuintetteJerome Richardson QuartetJoe Newman And The Count's MenThe Jay And Kai QuintetJubilee All StarsThe New Yorkers (4)The Count's MenRed Callender SextetPhil Woods-Gene Quill SextetEsquire All American Award WinnersKarl George OctetWoody Herman & The Second Herd + +372465Frank AarninkFrank AarninkDutch percussionist. A member of the Iceland Symphony Orchestra and the Caput Ensemble, among others. Formed Duo Harpverk with harpist Katie Buckley in 2007.Needs VoteFrank AarnickFrank AarnikThe Caput EnsembleIceland Symphony OrchestraNetherlands Bach CollegiumDuo Harpverk + +372550Hank RossUS jazz saxophonist active in New York, NY. Brother of [a=Benny Ross]. Worked as a contractor for [a=Perry Como]Needs VoteH. RossHenry "Hank" Ross.Henry RoosHenry RossХэнк РоссWill Bradley And His OrchestraBob Haggart And His OrchestraCharlie Parker Big BandCharlie Parker With StringsBuddy Morrow And His Orchestra + +372551Harry TerrillAmerican Saxophonist of the swing era. +Born March 11, 1913, New York, New York, USA. +Died May 13, 1986, Elizabeth City, North Carolina, USA. +lso known as Harry Twetsky and Harry Turetsky. +Terrill was a longtime [a1051280]' musician. In the mid-1970s, Terrill formed with singer Marion Herrman a reconstituted "Mitchell Ayres Orchestra" that worked in and around New York City.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/346600/Terrill_HarryHarry TerrikkHarry TerrilHarvey TerrillHenry TerrillTerrillGene Krupa And His OrchestraMitchell Ayres And His OrchestraCharlie Parker Big BandCharlie Parker With StringsBuddy Morrow And His OrchestraMitchell Ayres And His Fashions In Music + +372552Norris TurneyAmerican saxophonist, flutist and clarinet player, born 8 September 1921 in Wilmington, Ohio; died 17 January 2001 in Kettering, Ohio, USA.CorrectN. TurneyNTrnTurneyDuke Ellington And His OrchestraBilly Eckstine And His OrchestraHoward McGhee And His OrchestraNational Jazz EnsembleJazz At Lincoln CenterNorris Turney QuartetGrover Mitchell And His OrchestraPanama Francis And The Savoy SultansSnooky Young SeptetNorris Turney QuintetThe Butch Miles SextetThe Newport Jazz Festival All-StarsThe Cliff Smalls SeptetThe Howard Alden All Star QuintetOliver Jackson Quintet + +372553Bob BoswellRobert W. Boswell.American jazz bassist +Born November 01, 1927 in Pennsylvania, died June 11, 2001 in Pittsburgh, Pennsylvania + +Bobby worked with : Chick Webb Orchestra, Stan Kenton, Marian McPartland, Max Roach, Tommy Turrentine and others.Needs VoteBobby BoswellRobert Boswellボビー・ボズウェルMax Roach QuintetMax Roach Plus FourMax Roach Sextet + +372554Morris SeconAmerican french horn player. + +Born : 1923 in Philadelphia, Pennsylvania. +Died : September, 2010. +Needs VoteM. SeconMorris SecondMorris SecovMorris ScottDizzy Gillespie And His OrchestraAll Star Big Band + +372556Carl PooleJazz trumpeter.Needs VoteC. PooleCarl PoolsCharlie Parker And His OrchestraWill Bradley And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraCharlie Parker Big BandGordon Jenkins And His OrchestraCharlie Parker With StringsThe Commanders + +372557Eddie CostaEdwin James CostaAmerican Jazz pianist and vibraphone player +Born August 14, 1930 in Atlas, Pennsylvania +Died July 28, 1962 on Westside Highway, New York, NYC (automobile accident, aged 31)Needs Votehttp://www.costaproductions.com/eddie/index.htmhttps://adp.library.ucsb.edu/names/202159https://en.wikipedia.org/wiki/Eddie_CostaCostaE. CostaE.CostaEd CostaEddy CostaEdwin CostaEdwin J. CostaJ. CostaЭдди КостаGil Evans And His OrchestraHugo Montenegro And His OrchestraWoody Herman And His OrchestraThe Manhattan Jazz SeptetteThe Ernie Wilkins OrchestraWoody Herman SextetManny Albam And His Jazz GreatsHal McKusick QuintetMundell Lowe And His All StarsUrbie Green And His OrchestraBobby Jaspar QuintetWoody Herman And The Fourth HerdThe Eddie Costa QuartetBob Brookmeyer And His OrchestraAaron Bell And His OrchestraEddie Costa QuintetThe Secret 7Astor Piazola & His QuintetThe Tubby Hayes SextetUrbie Green and His 6-TetPeter Appleyard OrchestraEddie Costa TrioThe Vinnie Burke All-StarsEddie Costa - Vinnie Burke TrioFrank Socolow's SextetThe Joe Puma TrioThe First Modern Piano QuartetRalph Sharon SextetGigi Gryce SextetWoody Herman Octet + +372559Bart VarsalonaBart V. VarsalonaAmerican jazz trombonist, played, among other, with: [a212786], [a75617], [a1903222], [a239399], [a269597], [a52833]. +Born: April 24, 1918 in Bayonne, New Jersey, USA. +Died: January 23, 1984 in Valley Stream, New York, USA.Needs Votehttps://www.allmusic.com/artist/bart-varsalona-mn0000629215/creditshttps://music.metason.net/artistinfo?name=Bart%20Varsalonahttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/42350d818eac9cc4515bbb75adf4704405110/discographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/348738/Varsalona_Barthttps://www.bassbone.com/resources/articles.phpBart BarsaronaBart VarcelonaBart VarsalanaBart VarsalinaBart VarsalonBart VarsaloneBart VarselonaBart VarsolonaBart VasalonaBert VarsalonaWoody Herman And His OrchestraMetronome All StarsStan Kenton And His OrchestraArtie Shaw And His OrchestraBenny Carter And His OrchestraCharlie Parker Big BandNeal Hefti's OrchestraCharlie Parker With StringsThe J.J. Johnson And Kai Winding Trombone OctetAl Donahue And His OrchestraWoody Herman & The Second Herd + +372568Joseph GolanAmerican violinist, born 10 September 1930 in Chicago, Illinois and died 27 June 2011 in Chicago, Illinois. He was the father of [a2329013]. + +Member of the Chicago Symphony Orchestra 1953 - 2002, as principal second violin from 1969 until 2002.Needs VoteJoe GolanChicago Symphony OrchestraThe New Orleans Symphony + +372570William FaldnerViolinist. + +Member of the Chicago Symphony Orchestra 1956 - 1994. +Needs VoteWilliam FaldineChicago Symphony Orchestra + +372571Leonard ChausowCellist. + +Member of the Chicago Symphony Orchestra 1956 - 2003. On the cello, he served as Assistant Principal 1964 - 1993 and Assistant Principal Emeritus 1993 - 2003. +Needs VoteLen ChausowLeonard ChausonChicago Symphony Orchestra + +372574Edward DruzinskyAmerican harpist, born 16 June 1924 in St. Louis, Missouri and died 8 January 2011 in Chicago, Illinois + +Member of the Detroit Symphony Orchestra 1952 - 1957, Principal Harp with the Chicago Symphony Orchestra 1957 - 1997. +Needs VoteEd DruzinskyEddie DruzinskyEdward DruzinskiEdward DuzinskyMr. DruzinskyNettie DruzinskyDetroit Symphony OrchestraChicago Symphony OrchestraDavid Carroll & His Orchestra + +372576Jerry SabranskyViolinist, born 10 June 1923 in Cleveland, Ohio, died June 2006 in Chicago, Illinois. + +Member of the Chicago Symphony Orchestra 1949 - 1997. +Needs VoteJerry BabranskyJerry SabrenskyChicago Symphony Orchestra + +372579Theodore SilavinViolinist, born 18 March 1919, died 27 July 1991 in Naperville, Illinois. + +Member of the Chicago Symphony Orchestra from 1948 to 1988. +Needs VoteTheodore SillavinTheodore SilvinThe Cleveland OrchestraChicago Symphony OrchestraDavid Carroll & His Orchestra + +372753Mert OliverAmerican jazz bassist. +Born : January 28, 1917 in Herndon, Virginia. + +Mert played with : Tommy Dorsey, Charlie Parker, Stan Getz, Nat King Cole, Artie Shaw, Dizzy Gillespie, Boyd Raeburn and others. +Needs VoteMerton OliverTommy Dorsey And His OrchestraWoody Herman And His OrchestraTeddy Powell And His OrchestraThe Orchestra (4)Joe Timer And His OrchestraWoody Herman & The Second Herd + +372754Stan Getz QuartetCorrectEl Cuarteto De Stan GetzKvartet Stana GetzaStan Gets QuartetStan Getz & GuestsStan Getz & His QuartetStan Getz - QuartetStan Getz And His QuartetStan Getz Et Son QuartetStan Getz Quartet 1960Stan Getz QuartettStan Getz QuartetteStan Getz-René Thomas QuartetThe Stan Getz Jazz Samba EncoreThe Stan Getz QuartetThe Stan Getz Quartetteスタン・ゲッツ・カルテットHorace SilverStan GetzChick CoreaGerry MulliganGrady TateKenny BarronStanley ClarkeEddy LouissRon CarterMiroslav VitousStanley CowellKenny ClarkeMax RoachJack DeJohnetteGene RameyBilly TaylorTommy PotterLeroy VinnegarBernard LubatRené ThomasBilly HartRay BrownPercy HeathMose AllisonJimmy GarrisonEd ThigpenRoy HaynesOscar PettifordPaul MotianAddison FarmerJoe HuntChuck IsraelsGene ChericoGary BurtonGeorge MrazCurly RussellAl HaigAnthony WilliamsDon LamondStan LeveyTony AlessJohnny MandelIdrees SuliemanShelly ManneMonty BudwigJimmy RowlesLarry BunkerHank JonesCharlie PerryDuke JordanScott LaFaroBill CrowGeorg RiedelEgil JohansenJan JohanssonJerry SegalAl PorcinoSteve SwallowNiels-Henning Ørsted PedersenLou LevyRufus ReidRune CarlssonJohn NevesMarc Johnson (2)Victor LewisSteve KuhnStan FishelsonJohn Williams (5)Frank IsolaDick KatzAlbert DaileyAndrzej TrzaskowskiJoanne BrackeenBob WhitlockJoe Harris (3)Don LanphereBengt HallbergJim McNeelyJoe CallowayAndrzej DąbrowskiWalter BoldenWilliam SchiöpffeLars SjöstenRoman DylagGunnar JohnsonJack NorenDaniel Jordan (5)Willie Davis (5)Jug Taylor + +372755Leo ParkerAmerican jazz saxophonist (alto and baritone). + +Born : April 18, 1925 in Washington, D. C.. +Died : February 11, 1962 in New York City, New York. (heart attack) + + +Worked with : Coleman Hawkins, Billy Eckstine, Dizzy Gillespie, Illinois Jacquet, Fats Navarro, J.J. Johnson, Dexter Gordon, Sir Charles Thompson, Bill Jennings and others. +Needs Votehttp://leoparkermusic.comhttps://adp.library.ucsb.edu/names/362287L. ParkerL.ParkerLeo Parker's ReboppersLeo T. ParkerLéo ParkerP. ParkerParkerDizzy Gillespie And His OrchestraBilly Eckstine And His OrchestraDizzy Gillespie Big BandIllinois Jacquet And His OrchestraColeman Hawkins And His OrchestraDexter Gordon QuintetIllinois Jacquet And His All StarsLeo Parker's All StarsFats Navarro And His Thin MenThe J.J. Johnson QuintetJ.J. Johnson's Bop QuintetteLeo Parker And His Mad LadsLeo Parker QuartetLeo Parker QuintetteThe Bill Jennings - Leo Parker QuintetLeo Parker And His Orchestra + +372789Mike LoveMichael Edward LoveMike Love (born March 15, 1941, Los Angeles, California, USA) is an American singer, songwriter, musician, and activist who co-founded [a70829] with his cousins [url=https://www.discogs.com/artist/189718-Brian-Wilson]Brian[/url], [url=https://www.discogs.com/artist/391245-Dennis-Wilson-2]Dennis[/url] and [a260571]. Nephew of [a363017] and [a3239364]. + +In 1998, following the death of cousin Carl Wilson, Love and longtime Beach Boy [a100702] were given an exclusive license to tour under the name "The Beach Boys". The other surviving Beach Boys, Brian Wilson and [a311925], embarked on solo endeavors. Needs Votehttps://mikelove.comhttps://en.wikipedia.org/wiki/Mike_Lovehttps://mikelovefanclub.comhttps://www.youtube.com/channel/UCxffbn4jfkMNQ9Gu62TSXLghttps://www.instagram.com/mikeloveofficial/https://twitter.com/MikeLoveOFCLhttps://www.facebook.com/OfficialMikeLoveLoveLove, M.Love, M.E.Love, MikaLove, MikeLove,MLovelLoverLoweM LoveM. LoveM. E. LoveM. LoceM. LoveM. Love*M. LoverM. WilsonM. loveM.E. LovM.E. LoveM.E.LoveM.LoveMLMichaelMichael E. LoveMichael Edward LoveMichael LoveMik3MikeMike E LoveMike E. LoveMikeLoveMikeveMr. LoveN. LoveloveМ. Лоувマイク・ラヴThe Beach BoysCelebrationCarl And The Passions + +372892Thomas FrostThomas T. Frost American classical producer, conductor and violinist. +Father of [a1925538]. +Former co-director at [l=Columbia Masterworks] (which later became [l=CBS Masterworks]) +and senior executive producer for [l=Sony Classical] from 1989 to 2001. + +Born March 7, 1925 in USANeeds Votehttps://en.wikipedia.org/wiki/Thomas_Frost_(producer)https://www.imdb.com/name/nm3074659/https://www.youtube.com/watch?v=aWcv_6JslfAFrostT. FrostThomas T. FrostTom Frostトマス・フロスト + +372977Bobby FreemanRobert Thomas FreemanBobby Freeman (born June 13, 1940, San Francisco, California, USA - died January 28, 2017, Anson, Texas, U.S.A.) was an American soul and R&B singer, songwriter and record producer. Freeman began his recording career at age 14 with [a2082139]. In 1958, he had a Top Ten hit with "Do You Want to Dance" which he wrote and sang. In 1964, he reentered the Top Ten with the [a=Sylvester Stewart] penned dance-craze hit "C'mon and Swim" which reached number 5.Needs Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=10830924&affiliation=BMI&keyid=119634&keyname=FREEMAN+BOBBYhttps://en.wikipedia.org/wiki/Bobby_Freemanhttps://www.imdb.com/name/nm2740191/B FreemanB. E. FreemanB. FreemanB. FreemenB.FreemanBob FreemanBobbi FreemanBobbie FreemanBobby FBobby FreamenBobby Freeman & GroupD. FreemanFramanFreemanFreeman, BFreeman, BobbyP. HamR. B. FreemanR. FreemanRob. FreemanRobert FreemanRobert FreemannRobert T. FreemanRobt FreemanS. FreemanФрименR.B. FreemanBobby TurnerThe Romancers (2) + +373173Iggy ShevakRobert Coleman ShevakIggy Shevak was an American jazz musician who played string bass with several leading jazz figures in the 1940's and 1950's. Shevak was married to the singer [a1629054].Needs Votehttps://en.wikipedia.org/wiki/Iggy_ShevakIggy ShevackRobert "Iggie" ShevakRobert ShevakClaude Thornhill And His OrchestraKai's Krazy CatsThe Sonny Criss OrchestraKai Winding's New Jazz Group + +373281Russ TerranaOne of the most successful engineers. He mixed 89 No. 1 hits. Associated with Motown since the middle of the 1960s. +Twin brother of [a=Ralph Terrana].Needs Votehttp://tapeop.com/interviews/105/russ-terrana/https://themotownvault.weebly.com/russ-terrana.htmlR TerranaRus TerranaRuss "The Mix King" TerranaRuss "The Wiz" TerranaRuss TaranaRuss TeranaRuss Terrana Jr.Russ Terrana, Jr.Russ TerranceRuss TerraneRuss TerranoRuss TurraneRussel TerranaRussell "Jefe" TerranaRussell Ralph TerranaRussell TerranaRussell TerranoTerranaThe Sunliners + +373295Harold GarrettTrombonistNeeds VoteHarold L. GarrettHarrold GarrettWoody Herman And His OrchestraWoody Herman And The Thundering HerdSteve Spiegl Big Band1:00 O'Clock Lab Band + +373560Larry GrecoClaude Degallierswiss singer born June 15, 1941, † Nov. 15, 2015 +founder of the rock band The Mousquetaires in Genève, Switzerland, in 1961.Needs VoteDegallierDégallierJ. GrécoL. GrecoL. GrécoL.GrécoLarryLarry Gréco + +373783Steve HoughtonJazz drummer, percussionist, clinician, author, and educator. At age twenty, he was the drummer with Woody Herman’s Young Thundering Herd. Since then he has shared stage and studio with luminaries Gary Burton, Clay Jenkins, Shelly Berg, Toots Thielemans, Christian McBride, Toshiko Akiyoshi, Freddie Hubbard, Lyle Mays, Billy Childs, Rosemary Clooney, Peggy Lee, Pat LaBarbara, Arturo Sandoval, Joe Henderson, Karrin Allyson and Maureen McGovern.Needs Votehttps://houghtonmusic.com/S. HoughtonStephen HoughtonStephen R. HoughtonSteve HaughtonToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraEnrico Pieranunzi TrioThe Woody Herman Big BandThe Ashley Alexander Big BandThe Bob Florence Limited EditionSteve Houghton QuintetBob Curnow's L. A. Big BandFrank Mantooth Jazz OrchestraThe Gabe Baltazar QuartetBeaux J Poo BooAHA! QuintetThree As One (2)1:00 O'Clock Lab BandSteve Houghton TrioThe SW Santa Ana Winds + +373788King Oliver & His OrchestraNeeds Vote"King" Oliver And His OrchestraJoe "King" Oliver And His OrchestraJoe 'King' OliverKing Olive's OrchestraKing Oliver & His BandKing Oliver & His Orch.King Oliver And His All Stars BandKing Oliver And His Orch.King Oliver And His OrchestraKing Oliver E La Sua OrchestraKing Oliver Et Son OrchestreKing Oliver Orch.King Oliver OrchestraKing Oliver Y Su OrquestaKing Oliver and His OrchestraKing Oliver's OrchestraOrchestre King OliverS. Oliverio OrkestrasArthur TaylorLouis MetcalfJ.C. HigginbothamHilton JeffersonLuis RussellPaul BarbarinTeddy HillGreely WaltonFred RobinsonKing OliverCharlie HolmesOmer SimeonHenry "Red" AllenFreddie MooreJimmy ArcheyWill Johnson (2)Glyn PaqueLawson BufordBass MooreQuinn WilsonWallace BishopDon FryePunch MillerCharles FrazierDave Nelson (4)Carroll DickersonRoy SmeckBobby HolmesCecil IrwinClinton Walker (2)Eric FrankerEdmund JonesNorman LesterWalter Wheeler (2)Cassino SimpsonWilliam Franklin (2)Lionel Nipton + +373804Lil's Hot ShotsLil's (or Lill's) Hot Shots was a pseudonym for Louis Armstrong and his Hot Five. This name was used when recording for [l=Vocalion (2)].Needs Votehttp://www.redhotjazz.com/hotshots.htmlLill's Hot ShotsLouis Armstrong & His Hot FiveLouis ArmstrongKid OryJohnny DoddsLil Hardin-Armstrong + +373805Coleman Hawkins And His OrchestraNeeds Votehttps://adp.library.ucsb.edu/names/110491C. Hawkins E la Sua OrchestraColeman HawkinsColeman Hawkins & His Orch.Coleman Hawkins & His OrchestraColeman Hawkins & OrchestraColeman Hawkins & Son OrchestreColeman Hawkins Acc. By OrchestraColeman Hawkins All American 5Coleman Hawkins And His Orch.Coleman Hawkins And Orch.Coleman Hawkins And OrchestraColeman Hawkins BandColeman Hawkins E La Sua OrchestraColeman Hawkins Et Son OrchestreColeman Hawkins Orch.Coleman Hawkins OrchestraColeman Hawkins Und Sein OrchesterColeman Hawkins With OrchestraColeman Hawkins Y Su OrquestaColeman Hawkins' OrchestraColeman Hawkins, And His OrchestraColman Hawkins And His OrchestraHawkins OrchestraThe Coleman Hawkins OrchestraК. Хоукинс И Его Ансамбльコールマン・ホーキンス楽団Dizzy GillespieMilt JacksonJohnny WilliamsKenny ClarkeMax RoachPierre MichelotColeman HawkinsJ.J. JohnsonOscar PettifordClyde HartJohn KirbyCurly RussellDenzil BestShelly ManneHank JonesAl CaseyHoward McGheeJack LesbergMaurice BrownBill Coleman (2)Horace HendersonBernard AddisonClaude JonesWalter JohnsonJ.C. HigginbothamHilton JeffersonLawrence LucieSandy WilliamsFats NavarroSir Charles ThompsonAllan ReussArthur HerbertBilly Taylor Sr.Ernie PowellSidney CatlettKermit ScottJ.C. HeardBudd JohnsonThelma CarpenterJoe GuyJackie FieldsGene RodgersWilliam Oscar SmithEustis MooreEarl HardyTommy LindsayChuck WayneHenry "Red" AllenLeo ParkerJohn SimmonsJean-Paul MengeonBill DillardRay AbramsZelly SmirnoffEugene FieldsWilliam CatoNelson BryantGeorge Brown (5)Porter KilbertJimmy ShirleyEllis LarkinsMarion DeVetaTommy StevensonVic CoulsonAndy FitzgeraldDolores MartinHoward Johnson (6)Leonard LowryGene FieldsGladys MaddenLeslie Scott (3)Billy KatoBenjamin Lambert (4) + +373806Eddie's Hot ShotsCorrectEddie CondonEddie Condon's Hot ShotEddie Condon's Hot ShotsMezz MezzrowJack TeagardenEddie Condon + +373807Luis Russell And His OrchestraAmerican jazz band active from the 1920's to the 1940's, led by [a307366].Needs VoteLou And His GingersnapsLouis Russel And His OrchestraLouis Russel And His OrchestraLouis Russell And His Burning EightLuis RusselLuis Russel And His OrchestraLuis Russel E La Sua OrchestraLuis Russel OrchestraLuis Russell & His Orch.Luis Russell & His OrchestraLuis Russell & Orch.Luis Russell And His Louisiana Swing OrchestraLuis Russell And OrchestraLuis Russell BandLuis Russell BigbandLuis Russell E La Sua OrchestraLuis Russell OrchestraLuis Russell Und Sein OrchesterLuis Russell's Jam GroupLuis Russell's OrchestraOrchestraOrchestre de Luis RussellRussell And His OrchestraThe Luis Russell OrchestraKing Oliver & His Dixie SyncopatorsJimmie Noone's Apex Club OrchestraJ.C. Higginbotham And His Six HicksConnie's Inn OrchestraThe Savannah SyncopatorsThe Jungletown StompersLou & His Ginger SnapsBill Coleman (2)Albert NicholasLonnie Johnson (2)Otis JohnsonRex StewartJ.C. HigginbothamLuis RussellPaul BarbarinTeddy HillGreely WaltonPops FosterNat StoryLeonard DavisLee BlairGus AikenBingie MadisonCharlie HolmesHenry JonesEddie CondonHenry "Red" AllenJimmy ArcheyWill Johnson (2) + +373808Eddie Condon And His FootwarmersCorrectEddie Condon & His FootwarmersEddie Condon With His Feet WarmersMezz MezzrowJack TeagardenArt MillerJoe SullivanEddie CondonJimmy McPartlandJohnny Powell + +373809Mezz Mezzrow And His OrchestraMembers: + +Freddy Goodman, Ben Gusick, Max Kaminsky (trumpet) +Benny Carter (trumpet, alto saxophone, vocals, arranger) +Floyd O'Brien (trombone) +Mezz Mezzrow (clarinet, alto saxophone, arranger) +Johnny Russell (tenor saxophone) Teddy Wilson (piano) +Clayton "Sunshine" Duerr (guitar) Pops Foster (bass) +Jack Maisel (drums) Needs Votehttp://www.redhotjazz.com/mezzo.htmlM. Mezzrow And His OrchestraMezz Mezzrow & His Orch.Mezz Mezzrow & His OrchestraMezz Mezzrow And His All Star BandMezz Mezzrow And His BandMezz Mezzrow And His Orch.Mezz Mezzrow Et Son OrchestreMezz Mezzrow OrchestraMezz Mezzrow Y Su OrquestaMezz Mezzrow's OrchestraMilton "Mezz" Mezzrow & His Orch.Milton "Mezz" Mezzrow & OrchestraMilton "Mezz" Mezzrow And His All Star BandMilton "Mezz" Mezzrow And His OrchestraMilton "Mezz" Mezzrow And OrchestraMilton "Mezz" Mezzrow Et Son OrchestreMilton "Mezz" Mezzrown And His OrchestraMilton "Mezz” Mezzrow Et Son OrchestreMilton Mezz Mezzrow Et Son OrchestreMilton Mezz-MezzrowMilton « Mezz » Mesirow Et Son OrchestreMilton « Mezz » Mezzerow Et Son OrchestreMilton « Mezz » Mezzrow And His OrchestraMilton «Mezz» Mesirow Et Son OrchestreThe Broadway SwingstarsPierre MichelotTeddy WilsonSy OliverMezz MezzrowJohn KirbyBenny CarterBuck ClaytonAl CaseyBud FreemanChick WebbWellman BraudZutty SingletonBernard AddisonTommy LadnierJ.C. HigginbothamTeddy BunnWillie "The Lion" SmithPops FosterSidney De ParisJames Price JohnsonGene SedricSonny WhiteJimmy CrawfordMax KaminskyGuy LafitteDanny AlvinElmer JamesManzie JohnsonReunald Jones"Big Chief" Russell MooreGeorge StaffordKansas FieldsAndré PersianyLee Collins (2)Alexander HillRed RichardsJohnny RussellFloyd O'BrienMowgli JospinArt HodesHappy CaldwellJack MaiselChelsea QuealeyBen GusickFreddy GoodmanClayton Duerr + +373810Chocolate DandiesThis should be merged with [a317901] with an ANV + +Don't merge with [a=The Little Chocolate Dandies]!Needs Vote + +373811Fats Waller And His BuddiesCorrect"Fats" Waller & His Buddies"Fats" Waller And His BuddiesFats Waller & His BuddiesThomas 'Fats' Waller & His BuddiesFats WallerJack TeagardenLarry BinyonAlbert NicholasJ.C. HigginbothamCharlie IrvisArville HarrisPops FosterLeonard DavisCharlie HolmesEddie CondonHenry "Red" AllenKaiser MarshallWill Johnson (2)Charlie Gaines + +373812The Little Chocolate DandiesDon't merge with [a=Chocolate Dandies]!Needs VoteFive Little Chocolate DandiesThe Little AcesColeman HawkinsFats WallerBenny CarterDon RedmanRex StewartJ.C. HigginbothamCyrus St. ClairLeonard DavisGeorge Stafford + +373813Spike Hughes And His Negro OrchestraCorrectSpike Hughes & His Negro OrchestraSpike Hughes & His OrchestraSpike Hughes And His OrchestraThe Spike Hughes Negro OrchestraColeman HawkinsBenny CarterLeon "Chu" BerryLawrence LucieWayman CarverShad CollinsLeonard DavisSidney CatlettWilbur De ParisGeorge WashingtonDickie WellsHenry "Red" AllenHoward Scott (2)Bill DillardRod RodriguezHoward Johnson (6)Spike Hughes + +373814J.C. Higginbotham And His Six HicksCorrectJ. C. Higginbotham & His Six HicksJ. C. Higginbotham And His Six HicksJ.C. Higginbotham & His 6 HicksJ.C. Higginbotham & His Six HicksJack 'J.C.' HigginbothamLuis Russell And His OrchestraThe Jungletown StompersLou & His Ginger SnapsJ.C. Higginbotham + +373815Buck And His BandCorrectBuck & His BandBuck Und Seine BandBuck Washington And His BandBenny GoodmanBuck WashingtonJack TeagardenLeon "Chu" BerryBobby JohnsonFrank NewtonBilly Taylor Sr. + +373816Connie's Inn OrchestraAlso used as a pseudonym for [a=Fletcher Henderson And His Connie's Inn Orchestra] ([a=Fletcher Henderson And His Orchestra]).Needs VoteConnie Inn OrchestraConnie's Inn OrchConnie's Inn OrquestaFletcher Henderson & His "Connie's Inn" OrchestraFletcher Henderson And His Connie's Inn OrchestraFletcher Henderson's Connie's Inn OrchestraThe Connie's Inn OrchestraKing Oliver & His Dixie SyncopatorsJimmie Noone's Apex Club OrchestraFletcher Henderson And His OrchestraFletcher Henderson And His Connie's Inn OrchestraLuis Russell And His OrchestraThe Savannah SyncopatorsColeman HawkinsRussell ProcopeJohn KirbyRussell SmithClarence HolidayClaude JonesWalter JohnsonRex StewartJ.C. HigginbothamFletcher HendersonHarlan LattimoreEdgar SampsonBobby StarkSandy WilliamsJoe Smith (3)Benny MortonHarvey BooneLeora Henderson + +373817Washboard Rhythm BandCorrectThe Washboard Rhythm BandWashboard Rhythm KingsWashboard Rhythm BoysAlabama Washboard StompersThe Georgia Washboard StompersThe Washboard SerenadersChicago Hot FiveFive Rhythm Kings + +373819Sidney Bechet QuintetCorrectBechet/Wilber QuintetSidney Bechet And His Blue Note QuintetSidney Bechet Blue Note QuintetSidney Bechet's QuintetThe Sidney Bechet QuintetJohnny WilliamsSidney BechetTeddy BunnSidney CatlettMeade "Lux" Lewis + +373820Eddie Condon And His ChicagoansCorrectCondon's ChicagoansEddie Condon & His ChicagoansEddie Condon & The ChicagoansEddie Condon's Chicago Rhythm KingsEddie Condon's ChicagoansPee Wee RussellLeonard GaskinBud FreemanCutty CutshallJoe SullivanGeorge WettlingDave ToughAl HallMax KaminskyDick CaryEddie CondonBrad GowansClyde Newcomb + +373821The Three DeucesCorrectPee Wee RussellZutty SingletonJoe Sullivan + +373822Washboard Rhythm KingsLoose aggregation of jazz performers, many of high calibre, who recorded as a group for various labels between about 1930 and 1933. +The group that recorded for Bluebird in 1935 is a different group (with vocals by blues singer [a=Casey Bill Weldon]) - see [a=Washboard Rhythm Kings (2)].Needs Votehttps://en.wikipedia.org/wiki/The_Washboard_Rhythm_Kingshttps://adp.library.ucsb.edu/names/109436BandRhythm KingsThe Rhythm KingsThe Washboard Rhythm KingsWashboard R. K.Washboard Rhythm BandWashboard Rhythm BoysAlabama Washboard StompersThe Georgia Washboard StompersThe Washboard SerenadersChicago Hot FiveFive Rhythm KingsJerome CarringtonJimmy Shine (2)Jimmy Spencer (2)Steve Washington (3)J. Smith (18)H. Smith (8) + +373823Muggsy Spanier And His RagtimersCorrect"Muggsy" Spanier And His RagtimersMuggsy Spanier & His Ragtime Band:Muggsy Spanier & His RagtimersMuggsy Spanier And His Ragtime BandMuggsy Spanier RagtimersMuggsy Spanier's RagtimersMugsy Spanier's RagtimersPee Wee RussellMuggsy SpanierVernon BrownDick CaryEddie CondonBob HaggartBob CaseyDave BowmanDon CarterGene SchroederIrving FazolaMiff MoleJack KelleherNick CaiazzaJoe GrausoKen Broadhurst + +373824Jelly Roll Morton's New Orleans JazzmenCorrectJ. R. Morton's New Orleans JazzmenJelly Roll Morton & His New Orleans JazzmenJelly Roll Morton And His New Orleans JazzmenJelly Roll Morton And His New-Orléans JazzmenJelly Roll Morton New Orleans JazzmenJelly Roll Morton's Hot SevenJelly Roll Morton's Hot SixJelly-Roll Morton's New Orleans JazzmenJerry Roll And His New Orleans JazzmenNew Orleans JazzmenSidney BechetWellman BraudZutty SingletonAlbert NicholasClaude JonesLawrence LucieJelly Roll MortonSidney De ParisHappy Caldwell + +373825Noble Sissle And His International OrchestraCorrectNoble Sissle & His International OrchestraSidney BechetNoble SissleJames Tolliver + +373826Williams' Washboard BandJazz group, led by [a=Clarence Williams], mostly credited as Clarence Williams and his Washboard Band. + +Since not a single record of the many released between 1927 & 1937 by Clarence Williams' Washboard Band was credited as Williams' Washboard Band why is the PAN Williams' Washboard Band being used? + +The Williams' Washboard band recordings made for Victor & Bluebird in 1933 are by a group related to the Washboard Rhythm Kings and nothing to do with Clarence Williams. + +At present records by the jazz group that recorded a session for Victor/Bluebird in 1933 the PAN [a=Williams' Washboard Band (2)] is used but this group should be just Williams' Washboard Band since Clarence Williams is not involved in the 1933 recordings in any way.Needs VoteClarence William's Washboard FiveClarence Williams & His Washboard BandClarence Williams & Washboard BandClarence Williams And His Washboard BandClarence Williams And His Washboard FourClarence Williams And Washboard BandClarence Williams Jug & Washboard BandsClarence Williams Washboard BandClarence Williams Washboard FiveClarence Williams' Washboard BandClarence Williams' Washboard FiveClarence Williams' Washboard FourClarence Williams’ Washboard BandThe Clarence Williams Washboard BandPrince RobinsonFloyd CaseyEd AllenCecil ScottLouis MetcalfIkey RobinsonCyrus St. ClairClarence WilliamsHerman ChittisonBenny Moten (2)Clarence Lee (2)Carmelo Jari + +373827Mezz Mezzrow And His Swing BandCorrectMezz Mezzrow & His Swing BandMezz Mezzrow And His Swing GangMezz MezzrowAl CaseyBud FreemanWellman BraudFrank NewtonWillie "The Lion" SmithGeorge Stafford + +373828Wild Bill Davison And His CommodoresCorrect"Wild Bill" Davison & His Commodores"Wild Bill" Davison And His Commodores"Wild" Bill Davison And His Commodores"Wild" Bill Davison's CommodoresWild Bill Davison & His CommodoresWild Bill Davison CommodoresPee Wee RussellJack LesbergAlbert NicholasJoe SullivanEdmond HallLou McGarityGeorge WettlingDave ToughVernon BrownDick CaryEddie CondonBob CaseyDanny AlvinGene SchroederWild Bill DavisonJoe MarsalaGeorge BruniesGeorge LuggBill Miles + +373830Eddie Condon And His BandCorrectDr. Jazz At Condon'sEddie CondonEddie Condon & His BandEddie Condon BandEddie Condon EnsembleEddie Condon's BandEddie Condon's Jazz BandThe Eddie Condon BandLionel HamptonFats WallerBobby HackettJess StacyPee Wee RussellBud FreemanCutty CutshallJoe SullivanAl MorganMuggsy SpanierLou McGarityBenny MortonGeorge WettlingSidney CatlettJoe BushkinMax KaminskyErnie CaceresVernon BrownEddie CondonPeanuts HuckoTony SbarbaroBrad GowansBob CaseyGene SchroederWild Bill DavisonJoe MarsalaGeorge BruniesMarty MarsalaArtie ShapiroMiff Mole + +373831Noble Sissle SwingstersCorrectNoble Sisle's SwingstersNoble Sissie's SwingstersNoble Sissle SwingersNoble Sissle's SwingersNoble Sissle's SwingstersNoble Sissler's SwingersNoble Sissles SwingersNoble Sissles SwingstersSwingstersJimmy Jones (2)Sidney BechetZutty SingletonNoble SissleJimmy Miller (3)Wilbert KirkHarry Brooks (2)Clarence BreretonGil WhiteEddie Robinson (4) + +373832Mezzrow-Ladnier QuintetCorrectLadnier (Mezzrow Quintet)Ladnier-Mezzrow QuintetMezzrow-Ladniere QuintetMezzrow/Ladnier QuintetThe Mezz Mezzrow-Tommy Ladnier QuintetThe Mezzrow-Ladnier QuintetMezz MezzrowTommy LadnierTeddy BunnPops FosterManzie Johnson + +373842Stephen Taylor (2)Stephen TaylorOboe player + +Principal oboe with the [b]Orchestra of St. Luke's[/b], the [b]St. Luke's Chamber Ensemble[/b] and the [b]American Composers Orchestra[/b]. Co-principal oboe with the [b]Orpheus Chamber Orchestra[/b]. Member of the [b]Speculum Musicae[/b] and the [b]New York Woodwind Quintet[/b].Needs VoteStephen G TaylorStephen G. TaylorSteve TaylorSteven TaylorTaylorAmerican Composers OrchestraOrchestra Of St. Luke'sSpeculum MusicaeOrpheus Chamber OrchestraNew York Woodwind QuintetPhilharmonia VirtuosiSt. Luke's Chamber Ensemble + +373843Gloria LumCellist.Needs Votehttps://www.linkedin.com/in/gloria-lum-b7184744https://www.instagram.com/audition_confidential/https://www.laphil.com/musicdb/artists/3257/gloria-lumGloria J. LumLos Angeles Philharmonic Orchestra + +373844Daniel RothmullerCellistNeeds VoteDan RothmullerDanny RothermullerDanny RothmullerRothmuller DanielLos Angeles Philharmonic OrchestraAn Die MusikThe Miraflores Quartet + +373848David GarrettAmerican cellist, he teaches at the Bob Cole Conservatory of Music in Long Beach, California. + +For the German-American violinist please use [a1925482]!Needs VoteLos Angeles Philharmonic OrchestraHouston Symphony Orchestra + +373849Jeremy PeltTrumpet player from NYC, graduated from Berklee College of Music. Jeremy Pelt has played with [a=Jimmy Heath], [a=Frank Wess], [a=Charli Persip], [a=Keter Betts], [a=Frank Foster], [a=Ravi Coltrane], Winard Harper, [a=Vincent Herring], [a=Ralph Peterson], [a=Lonnie Plaxico], [a=Cliff Barbaro], [a=Nancy Wilson], Bobby Short, Bobby "Blue" Bland, The Skatalites, [a=Cedar Walton], the Roy Hargrove Big Band, The Village Vanguard Orchestra, the Duke Ellington Big Band, Lewis Nash Septet, Mingus Big Band, The Cannonball Adderley Legacy Band, and many more. His own bands are currently "Creation", a sextet consisting of trumpet, alto sax/bass clarinet, vibraphone, guitar, bass and drums; "Noise", a semi-electric band consisting of trumpet with effects, guitar, rhodes, bass and drums; and "The Jeremy Pelt Quartet", consisting of trumpet, rhodes, bass and drums. + +(extract from his biography at [url=http://www.peltjazz.com/]www.peltjazz.com[/url])Needs Votehttps://jeremypelt.net/J. PeltPeltGerald Wilson OrchestraThe Lonnie Plaxico GroupRalph Peterson QuintetMingus Big BandFrank Foster And The Loud MinorityAntonio Ciacca QuintetJazz In The New HarmonicCannonball Legacy BandThe Co-Op (3)Black Art Jazz CollectivePete Zimmer QuartetGaël Horellou QuintetThe John L. Nelson ProjectSharp Nine Class Of 2001Jeremy Pelt SextetWiRED (19)Violet HourThe Power QuintetJazz Incorporated (2)The Heavy Hitters (3)J.D. Allen Quintet + +373850Frank MorelliBassoonist.Needs Votehttp://www.morellibassoon.com/Frank A. Morelli Jr.Morelliフランク・モレリAmerican Composers OrchestraOrpheus Chamber OrchestraWestchester PhilharmonicWindscapeThe All Stars (28) + +373851Chris GekkerAmerican trumpet player. Professor of Trumpet at the University of Maryland.Needs Votehttps://www.chrisgekkertrumpet.com/Chris GeckkerChristopher GekkerP.C. GekkerPaul Christopher GekkerOrchestra Of St. Luke'sOrpheus Chamber OrchestraAmerican Brass QuintetFranklin Kiermyer & JerichoSt. Luke's Chamber EnsembleWashington Symphonic BrassAspen Music Festival Contemporary EnsembleTidewater Brass Quintet + +373853Stewart RoseNew York based classical horn player.Needs Votehttps://www.oslmusic.org/bios/stewart-rose/Steward RoseStuart RoseOrchestra Of St. Luke'sSpeculum MusicaeOrpheus Chamber OrchestraMozzafiatoNew York City Ballet OrchestraSt. Luke's Chamber EnsembleMetropolitan Opera Brass + +373854Brent SamuelCellist.Needs VoteLos Angeles Philharmonic Orchestra + +373856Barry GoldClassical cellist.Needs Votehttps://www.linkedin.com/in/barry-gold-10196854/Barry R. GoldLos Angeles Philharmonic Orchestra + +373862Eddie Condon Dixieland All-StarsEddie Condon & Dixieland All-Stars were never a real band, just a title given to a number of unspecified musicians appearing on the 1962 Dixieland Compilation 'Spotlight On'Needs VoteEddie Condon & Dixieland All StarsEddie Condon & His All-Stars Dixieland JamEddie Condon & The Dixieland All-StarsEddie Condon And His Dixieland All StarsBuck ClaytonEddie Condon + +373863George Wettling's New YorkersCorrectGeorge WettlingGeorge Wettling And His New YorkersColeman HawkinsHank D'AmicoJack TeagardenBilly Taylor Sr.George WettlingJoe Thomas (4)Herman Chittison + +373864George Wettling's Chicago Rhythm KingsCorrectGeorge Wettling And His Rhythm KingsGeorge Wettling's ChicagoansJess StacyCharlie TeagardenGeorge WettlingDanny PoloJoe MarsalaJack BlandArtie ShapiroFloyd O'Brien + +373870Bob CunninghamJazz bassist, born December 28, 1934 in Cleveland, died April 1, 2017 +Moved to New York in 1960 to play with [a=Dizzy Gillespie]. During the 1960s he recorded with [a=Bill Hardman], [a=Eric Dolphy], [a=Ken McIntyre], [a=Frank Foster], [a=Freddie Hubbard] and others. Played with [a=Yusef Lateef] 1970-1976. He also played with the Sun Ra Arkestra during the mid-1960s and the late 1970s.Needs Votehttps://en.wikipedia.org/wiki/Bob_Cunningham_(musician)B. CunninghamBob CunninghamlR. CunninghamRobert CunninghamGary Bartz NTU TroopArchie Shepp QuartetThe Jazz Composer's OrchestraDizzy Gillespie QuintetThe Errol Parker ExperienceWorld Bass Violin EnsembleThe Sun Ra ArkestraWalt Dickerson QuartetSteve Lacy-Roswell Rudd QuartetBross Townsend's BandThe Blues River Jazz OrchestraThe Three B's + +373888Edmond Hall's Blue Note JazzmenCorrectEdmond HallEdmond Hall & His Blue Note Jazz MenEdmond Hall And Blue Note JazzmenEdmond Hall's Blue Note Jazz MenEdmond Hall's JazzmenEdomond Hall Blue Note JazzmenVic DickensonEdmond HallSidney De ParisJames Price JohnsonSidney CatlettIsrael CrosbyJimmy Shirley + +373889Zutty Singleton's Creole BandCorrectZ. Singleton's CreolesZutty Singleton And His Creole BandZutty Singleton And His Créole BandZutty Singleton's CreolesZutty SingletonBarney BigardEd GarlandBud ScottJohn HaughtonFreddie Washington (2)Norman Bowden + +373890Eddie Condon And His Windy City SevenCorrectEddie CondonEddie Condon & His Windy City SevenEddie Condon And His Windy SevenWind City SevenWindy City SevenBobby HackettJess StacyPee Wee RussellBud FreemanJack TeagardenGeorge WettlingEddie CondonGeorge BruniesArtie Shapiro + +373891Miff Mole And His Nicksieland BandCorrectMiff Mole & His Nicksieland BandMiff Mole & His NicksielandersMiff Mole & Nicksieland BandMiff Mole & The Nixieland SixMiff Mole And His NicksielandersBobby HackettPee Wee RussellErnie CaceresEddie CondonBob CaseyGene SchroederJoe Grauso + +373892Barney Bigard And His OrchestraCorrectBarney Bigard & His Orch.Barney Bigard & His OrchestraBarney Bigard & Orch.Barney Bigard & OrchestraBarney Bigard And His Orch.Barney Bigard And OrchestraBarney Bigard And Orchestra (An Ellington Unit)Barney Bigard Et Son OrchestreDuke EllingtonBilly StrayhornHarry CarneyRay NanceJuan TizolSonny GreerRex StewartFred GuyBarney BigardBilly Taylor Sr.Eddie SafranskiDick CaryNick FatoolRay ShermanJimmy BlantonDave Koonse + +373893Edmond Hall SextetCorrectEdmond Hall & His SextetEdmond Hall SextettEdmond Hall's SextetEdmund HallEdmund Hall & His SextetEdmund Hall And His SextetThe Edmond Hall SextetVic DickensonEddie HeywoodAl CaseyEdmond HallBilly Taylor Sr.Emmett BerrySidney Catlett + +373894James P. Johnson's Blue Note JazzmenCorrectJames P. Johnson And His Blue Note JazzmenJames P. Johnson Blue Note JazzmenJames P. Johnson's Blue Note Jazz MenJames P. Johnson's JazzmenBen WebsterVic DickensonEdmond HallSidney De ParisJames Price JohnsonSidney CatlettAl LucasJohn SimmonsJimmy ShirleyArthur Trappier + +373896Edmond Hall Swing SextetCorrectJohnny WilliamsIrving RandolphEdmond HallHenderson ChambersEllis LarkinsArthur Trappier + +373897Zutty Singleton's TrioCorrectZutty Singleton And His TrioZutty Singleton TrioZutty's TrioZutty SingletonBarney BigardFreddie Washington (2) + +373898Bobby Hackett And His OrchestraCorrectBobby Hackett & His Orch.Bobby Hackett & His OrchestraBobby Hackett & Orch.Bobby Hackett And His Jazz BandBobby Hackett And His Orch.Bobby Hackett E La Sua OrchestraBobby Hackett His Trumpet And His OrchestraBobby Hackett Mit OrchesterBobby Hackett Og Hans OrkesterBobby Hackett OrchestraBobby Hackett Sa Trompette Et Ses CordesBobby Hackett U. S. OrchesterBobby Hackett With OrchestraHis MenBobby HackettMaurice PurtillJess StacyPee Wee RussellAndy PicardRay ConniffFrank SignorelliSterling BoseLou McGarityGeorge WettlingErnie CaceresJohnny BlowersVernon BrownEddie CondonBrad GowansBernie BillingsBob HaggartBob CaseyClyde NewcombDave BowmanDon CarterCarl KressDeane KincaideGeorge BruniesLouis ColomboNick CaiazzaJoe DixonSid JacobsJohn GrassiJim BeiterJerry BorshardCappy CrouseBob JulianJerry CaplanGeorge TroupHank KusenJack Thompson (10) + +373899The Roger Kay StringCorrect + +373922Sidney Bechet And His New Orleans FeetwarmersSoprano saxophonist and clarinetist Sidney Bechet had already been performing for nearly two decades when he formed the Feetwarmers in 1932. He formed the band with trumpeter Tommy Ladnier. In the late 1930's and 1940's Bechet revived the band's name as Sidney Bechet and his New Orleans FeetwarmersCorrecthttp://www.allmusic.com/artist/the-new-orleans-feetwarmers-mn0000867021/biographyNew Orleans FeetwarmersSidney Bechet & His FeetwarmersSidney Bechet & His N.O.F.Sidney Bechet & His NO FeetwarmersSidney Bechet & His New Orleans Feet WarmersSidney Bechet & His New Orleans FeetwarmersSidney Bechet & His New-Orleans FeetwarmersSidney Bechet & The New Orleans FeetwarmersSidney Bechet A. H. New Orleans FeetwarmersSidney Bechet And His FeetwarmersSidney Bechet And His New Orleans Feet WarmersSidney Bechet And His New Orleans FootwarmersSidney Bechet And The New Orleans FeetwarmersSidney Bechet E I Suoi New Orleans FeetwarmersSidney Bechet New Orleans FeetwarmersSidney Bechet With The New Orleans FeetwarmersSidney Bechet Y Su New Orleans FeetwarmersSidney Bechet's New Orleans FeetwarmersSidney Bechey & The New Orleans FeetwarmersSidney Becket & New Orleans FeetwarmersSindney Bechet and his New Orleans FootwarmersThe New Orleans FeetwarmersThe New Orleans FeetwarmersKenny ClarkeEarl HinesSidney BechetVic DickensonCharlie ShaversJack LesbergWellman BraudBernard AddisonRex StewartTommy LadnierJ.C. HigginbothamWillie "The Lion" SmithSandy WilliamsJohn LindsayEverett BarksdaleSidney De ParisArthur HerbertGeorge WettlingSidney CatlettJ.C. HeardSonny WhiteWilbur De ParisGus AikenHerb JeffriesBaby DoddsHenry "Red" AllenWild Bill DavisonManzie JohnsonCliff JacksonCharlie HowardHenry "Hank" DuncanTeddy NixonLem JohnsonWilson MyersRalph Sutton (2)Eddie BernardStubby SebastianErnest Williamson (2)Don FryeDon DonaldsonHenry GoodwinJames Tolliver + +373924Tampa Red And His Hokum Jug BandHokum blues band, led by [a=Tampa Red], featuring vocals by [a=Frankie Jaxon], that recorded for Vocalion in 1928-1930.Needs Votehttps://www.imdb.com/name/nm14099356/https://en.wikipedia.org/wiki/Tampa_RedHokum Jug BandTampa Red & His Hokum Jug BandTampa Red And His Hokum Jub BandTampa Red's Hokum BandTampa Red's Hokum Jazz BandTampa Red's Hokum Jug BandMartell PettifordTampa RedHerman BrownThomas A. DorseyBill Johnson (4)Frankie JaxonCarl Reid + +373925Ma Rainey And Her Georgia BandCorrect"Ma" Rainey & Her Georgia Jazz Band"Ma" Rainey Acc. By Her Georgia Jazz Band"Ma" Rainey And Her Georgia Band"Ma" Rainey With Her Georgia BandGeorgia Jazz BandGertruda Ma Rainey And Her Georgia BandGertrude "Ma" Rainey Acc. By Georgia Jazz BandGertrude "Ma" Rainey Acc. By Her Georgia Jazz BandGertrude "Ma" Rainey And Her Georgia BandGertrude 'Ma' RaineyHer Georgia BandHer Georgia Jazz BandMa Rainel And Her Georgia Jazz BandMa Rainey & Georgia BandMa Rainey & Her Georgia BandMa Rainey & Her Georgia Jazz BandMa Rainey & Her Jazz BandMa Rainey (Blues Singer) With Her Georgia BandMa Rainey Acc. By Her Georgia BandMa Rainey Acc. By Her Georgia Jazz BandMa Rainey Accompanied By Her Georgia BandMa Rainey Accompanied By Her Georgia Jazz BandMa Rainey And Georgia BandMa Rainey And HerMa Rainey And Her Georgia Jazz BandMa Rainey E La Sua Georgia BandMa Rainey With Her Georgia BandMa Rainey With Her Georgia Jazz BandMa Rainey With The Georgia BandMa Rainey With The Georgia Jazz BandMa Rainey's Georgia BandMa Rainey, Acc Her Georgia BandMa Rainey, Acc. Her Georgia BandMa Rainey, Acc. Her Georgia Jazz BandMadame "Ma" Rainey And Her Georgia BandThe Georgia BandThe Georgia Jazz Band«Ma» Rainey Acc. By Her Georgia BandCharlie DixonMa RaineyHoward Scott (2)George Williams (8)Robert Taylor (16) + +373962Frank De VolFrank Denny De VolAmerican actor, musician, bandleader. +Born September 20, 1911, Moundsville, West Virginia, USA. +Died October 27, 1999, Lafayette, California, USA. +Frank's father had a "pit" orchestra at the local movie house. De Vol began composing music when he was 12. He was a member of the musicians' union from the age of 14 and worked for his father in the theatre orchestra and doing professional level arrangements by age 16. His instruments were violin and saxophone at first. After his stint in college, he joined Emerson Gill's orchestra in Ohio and traveled the state. Later, he joined Horace Heidt's band and not only was he a musician but also became an arranger for the band. Later, he traveled with Alvino Rey's band. In 1943, he settled in California and started his own band, appearing on KHJ radio and accompaniment to many radio shows, such as Jack Carson and Jack Smith. +With the advent of television, De Vol moved to working on The Betty White Show (1958) and The Dinah Shore Chevy Show (1956), among others. In the 1950s, he broke into movie composing and composed the score for 50 films. In addition, he composed the music for a number of television shows, such as Family Affair (1966), The Smith Family (1971), My Three Sons (1960), and The Brady Bunch (1969). As a composer he was nominated for four Academy Awards: Pillow Talk (1959), Hush...Hush, Sweet Charlotte (1964), Cat Ballou (1965) and Guess Who's Coming to Dinner (1967). . The success of "Nature Boy", recorded for Capitol Records, led to an executive position for De Vol at the rival Columbia Records in 1957, West Coast Director of Popular Artists and Repertoire. His second wife was big-band vocalist [a=Helen O'Connell], member West Virginia Music Hall of Fame. + +ASCAP IPI# 32263319.Needs Votehttps://en.wikipedia.org/wiki/Frank_De_Volhttps://www.imdb.com/name/nm0006030/?ref_=nm_mv_closehttps://www.wvmusichalloffame.com/hof_devol.htmlhttps://adp.library.ucsb.edu/names/106377DavolDe VolDe VollDeVolDevolF. De VolF. De. VolF. DeVoiF. DeVolF. DevelF. DevolF. de VolF. deVolF.DeVolFranck De VolFranck DevolFrank Be VolFrank DavolFrank DeVOLFrank DeVelFrank DeVolFrank DeVol And His Rhythm RaidersFrank Denny De VolFrank DevolMusic By De VolMusic By Devolde VoldeVolФ. Де ВолФ. Де ВолаФ. ДеВолPete PurvisFrank De Vol And His OrchestraFrank DeVol's MusicFrank De Vol And His Rainbow StringsFrank De Vol, His Chorus And OrchestraFrank DeVol & His Music Of The CenturyTen Cats And A MouseFrank De Vol's Rocking Big BandFrank DeVol's Vocal Group + +374006Hallé OrchestraThe HalléBritain's oldest professional symphony orchestra, formed 1857 by Charles Hallé. In 1899 Hans Richter took over the orchestra and from 1911 to 1943 the orchestra enjoyed a succession of permanent and guest conductors including Beecham, Sargent and Harty. In 1943 John Barbirolli took over and transformed the Hallé from a provincial to an international force in the music world. +Based in the Bridgewater Hall in Manchester since 1996. + +For the related choir please credit [a1587279] separately. + +Contact: +Hallé Concerts Society +The Bridgewater Hall +Manchester M1 5HANeeds Votehttps://www.halle.co.uk/https://www.facebook.com/thehallehttps://x.com/the_hallehttps://instagram.com/the_hallehttps://www.youtube.com/channel/UCtkf2PSgOqa1zXtsJy3A2qAhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/357810/Hall_Orchestrahttps://en.wikipedia.org/wiki/The_Hallé"The Halle Orchestra"A Section Of The Halle OrchestraDas Hallé OrchesterDas Hallé OrchestraDas Hallé-OrchestraHalle OrchestraHalle Orchestra - ManchesterHalle Orchestra, TheHalle' OrchestraHalléHallé Choir and OrchestraHallé Orch.Hallé Orchestra, ManchesterHallé Orchestra, TheHallé OrkestHallé SoloistsHallé-OrchesterHallé-OrchestraHallé-OrkestHallé-orkesteriHalléorkesteret, ManchesterHalléorkestern I ManchesterHalléorkestern, ManchesterHalléorkestret, ManchesterL'Orchestre HalléL'orchestre Symphonique "Hallé"La Orquesta HalléMembers Of The HalléMembers Of The Hallé OrchestraMembers of the Hallé OrchestraOrch.OrchestraOrchestra "Hallé"Orchestra HalleOrchestra Halle'Orchestra Halle' Di ManchesterOrchestra HallèOrchestra HalléOrchestre HalléOrchestre Symphonique "Hallé"Orchestre Symphonique HalleOrchestre Symphonique Halle De ManchesterOrquesta De HalleOrquesta HalleOrquesta HalléOrquesta Hallé (Manchester)Orquestra Sinfônica "Hallé" De ManchesterSoloists from the Hallé OrchestraStrings Of The Hallé OrchestraStrings from the Hallé OrchestraThe HalleThe Halle OrchestraThe Halle Orchestra, ManchesterThe HallèThe HalléThe Hallé OrchestraThe Hallé Orchestra Of ManchesterThe Hallé Orchestra, EnglandThe Hallé Orchestra, ManchesterThe Hallé-OrchestraThe Hallé-Orchestra, Manchesterハルレ管弦楽団Jacqui PenfoldPiero GaspariniSimon Turner (2)Zoe ColmanDavid CrippsWilliam LangFrancis NolanGraham WarrenMichael Davis (5)Mike HextRoger HarveyPeter Lloyd (2)Ruth RogersChris EmersonTiberiu ButaPaul BarrittMichael WinfieldLyn FletcherRaymond CohenJanet CraxtonDudley BrightHarry BlechMartin FieldThomas DaveyBarry DavisHarry MortimerKieron MooreHugh SparrowGareth Small (2)Terence MortonMaurice HandfordArthur ButterworthIfor JamesSarah EwinsPaul Farr (2)Mark Elder (2)David PetriEmma PritchardLaurence RogersJoanne BoddingtonGordon NealStuart KnussenSimon Davies (6)Andrew BerrymanMarie LeenhardtThomas MatthewsStéphane RancourtRoger Winfield (2)Millicent SilverChristine Anderson (2)Ian BousfieldLeonard HirschBarbara GórzyńskaDiego GabeteAnna Smith (4)Colin Sauer (2)John PurtonKatie Jackson (2)Julia HansonPaulette BayleyDale CullifordNick TrygstadAlex Harris (5)Ian Watson (10)Eva ÞórarinsdóttirDavid Jones (38)Timothy PooleySteven ProctorRosemary AttreeJane HallettElizabeth BosworthGrania RoyceCaroline AbbottDaniel StorerRachel MeerlooJulian MottramBeatrice SchirmerKatherine Baker (3)Mehli MehtaMarie SchreerJonathan PetherJason Evans (9)Alan Jenkins (6)Susan SalterNatasha Hughesjohn cockerillJohn AbendsternNicola ClarkClare RoweMartin Schäfer (7)Rob CriswellJohn GralakVictor HayesThomas Osborne (3)Pat Ryan (14)Roberto RuisiHelena BuckieGemma DunneErika ÖhmanDavid HextHaydn BeckPeter LiangPhilippa HeysCameron CampbellMichelle Marsh (2)Yi Xin SalvageAmy YuleKaty Jones (2)Matthew Head (4)Emily HultmarkVirginia ShawSergio Castelló LópezEwan EastonYu-Mien SunPaul GrennanGerald BrinnenSarah Bennett (5)Rosa María Campos FernándezDylan EdgeKyle MacCorquodaleBilly Cole (11)Natasha Armstrong (2)Julian PlummerRichard BournRosalyn DaviesKenneth Brown (15)Eva PetrarcaHelen BridgesChristine DaveyGeorge Alexander (18)Heather MacLeod (2) + +374007Tasmin LittleEnglish classical violinist, born London, 13 May 1965.Needs Votehttp://www.tasminlittle.org.uk/http://en.wikipedia.org/wiki/Tasmin_LittleLittleタスミン・リトルチャルダッシュリトル(タスミン)Tasmin Hatch + +374012Dame Moura LympanyMary Gertrude JohnstoneEnglish concert pianist, born 18 August 1916 at Saltash, Cornwall, England, UK, died 28 March 2005 in Gorbio near Menton, France. +Dame Commander (DBE) - Order of the British Empire. +Needs Votehttps://en.wikipedia.org/wiki/Moura_LympanyDame Moura LampanyLympanyM. LympanyMoura LimpanyMoura LumpanyMoura LymapanyMoura Lympanyムーラ・リンパニーモーラ・リンパニーリンパニー + +374076Bill Douglass (2)William DouglassWilliam "Bill" Douglass (Born February 28, 1923 in Sherman, Texas, USA - died December 19, 1994) was an American jazz drummer. He worked with artists like [a=Benny Goodman], [a=Ben Webster], [a=Lena Horne], [a=June Christy], [a=Gerald Wiggins], [a=Red Callender] and [a=Art Tatum], among others.Needs VoteBill DouglasBilly DouglasDouglassWilliam V. DouglasWilliam V. DouglassHerbie Mann QuartetThe Gerald Wiggins TrioCal Tjader QuartetRed Norvo SextetThe Art Tatum - Ben Webster QuartetHarry Babasin And The Jazz PickersRed Callender And His Modern OctetEddie Beal And His SextetThe Art Tatum Buddy Defranco Quartet + +374100Bengt RosengrenSwedish classical oboist and oboe who also teaches on his instrument, born November 24, 1958. + +He is educated at the Royal Academy of Music and since 1993 has been solo oboist with the Swedish Radio Symphony Orchestra. Since 2001, he has been teaching at the Royal Academy of Music. + +He used to be the chairman of SNYKO.Needs Votehttps://web.archive.org/web/20071203201753/http://www.snyko.com/projekt.htmlhttps://sv.wikipedia.org/wiki/Bengt_RosengrenSveriges Radios SymfoniorkesterSnykoAmadékvintettenThe Amadé QuintetUnga Musiker + +374154Marl Young And His OrchestraCorrectMarl And His OrchestraMarl Young & His OrchestraMarl Young OrchestraMarl Young's OrchestraMarl Young + +374155Les Hite And His OrchestraCorrectLes Hite & His OrchestraLes Hite And His Orch.Les Hite OrchestraLes Hite's OrchestraLes Hites' OrchestraGerald WilsonDizzy GillespieLionel HamptonJoe WilderBritt WoodmanGerald WigginsMarvin JohnsonJoe BaileyHarold ScottT-Bone WalkerAl MorganLes HiteHenry PrinceBumps MyersAllen DurhamRoger HurdFrank PasleySol MooreOscar Lee Bradley Sr.Forrest PowellFloyd TurnhamJohn Brown (3)Al CobbsCharlie Jones (2)Charlie BealLeon ComegysGeorge OrendorffBill Perkins (2)Luther "Sonny" CravenWalter Williams (3)Paul Campbell (5)Benny BookerQuedillas MartinNat Walter (2) + +374157The Singing ChristianCorrectJosh WhitePinewood TomPaul La FranceTippy Barton + +374256The Delta BoysBlues recording group, consisting of [a=Sleepy John Estes], [a=Son Bonds], and [a=Raymond Thomas], that recorded six titles for Bluebird in 1941.Needs VoteSleepy John EstesRaymond ThomasSon Bonds + +374257Brother George And His Sanctified Singers"Brother George was used as a pseudonym for George Washington ([a=Bull City Red]/Oh Red) and [a=Blind Boy Fuller] on their religious sides. After Fuller's death, [a=Brownie McGhee] [...] had one record issued as by 'Brother George and his Sanctified Singers'." (Blues and gospel records 1890-1943 (1997), p. 577) +The profile is for recordings featuring [a=Blind Boy Fuller].Needs VoteBrother George & His Sanctified SingersSonny TerryBrownie McGheeFulton AllenGeorge Washington (6) + +374297The Freddie Slack TrioAmerican Boogie-woogie & swing piano trio led by [b]Freddie Slack[/b] on piano, [b]Jud De Naut[/b] on string bass, & [b]Al Hendrickson[/b] on guitar. +[a=Big Joe Turner] was often the vocalist.Needs Votehttps://www.imdb.com/name/nm2938423/https://adp.library.ucsb.edu/index.php/mastertalent/detail/316362/Freddie_Slack_TrioFreddie Slack TrioFreddie SlackAl HendricksonJud Denaut + +374298Pete Johnson's All-StarsCorrectJoe Turner With Pete Johnson's All-StarsPete Johnson & His All StarsPete Johnson All StarsPete Johnson And His All StarsPete Johnson's All StarsPete Johnson's AllstarsDon ByasHot Lips PageHarold "Doc" WestPete JohnsonAbe BolarAl HallBudd JohnsonJack ParkerLeonard WareDon StovallJimmy ShirleyClyde Bernhardt + +374319Leon SimsSavoy Records VocalistNeeds VoteLeon SmithJohnny Otis And His Orchestra + +374320Johnny Otis And His OrchestraCorrect"The Group"J. And O. OrchestraJohn Ottis & OrchestraJohnnie Otis And His OrchestraJohnny Otis & His OrchJohnny Otis & His OrchestraJohnny Otis & OrchestraJohnny Otis & The PeacocksJohnny Otis - His Drums And OrchestraJohnny Otis And OrchestraJohnny Otis And His Orch.Johnny Otis And OrchestraJohnny Otis His Drums & His OrchestraJohnny Otis His Drums And OrchestraJohnny Otis OrchJohnny Otis Orch.Johnny Otis OrchestraJohnny Otis and OrchestraJohnny Otis' CongregationJohnny Otis' OrchJohnny Otis' Orch.Johnny Otis' OrchestraJohnny Otis, His Drums & OrchestraJohnny Otis, His Drums And His OrchestraJohnny Otis, His Drums And OrchestraThe J. And O. OrchestraThe Johnny Otis Orch.The Johnny Otis OrchestraGerald WilsonJohnny OtisCurtis CouncePaul QuinichetteGeorge WashingtonFloyd TurnhamErnestine AndersonJohn Stephens (2)John EwingEdgar WillisEddie PrestonJohn BoudreauxLeon SimsIke WilliamsOtis HayesLois McMorrisDon Johnson (2)Fred ClarkMack JohnsonEddy Owens (2)Lorenzo HoldenWallace HuffEdwin PleasantsMario DelagardeBob Harris (3)Larry Douglas (2)James Von StreeterLoyal WalkerLeon BeckJap JonesJohn PettigrewCurtis LoweJohnny Parker (5)Lester CurrantKent PopeDevonia WilliamsBilly Jones (10)Pete "Guitar" LewisBernie Cobbs (2) + +374322Junior RyderMorris L. RidenUS rhythm & blues singer, who recorded for the Duke label in 1953-1954. Songwriter.Needs Votehttp://www.electricearl.com/dws/ryder.htmlhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=287866&subid=0"Junior" RyderJ. RyderJuniorRyderMorris RidenSugar And Spice (2) + +374398Gene Krupa And His Swinging Big BandCorrectBandGene Krupa And His Swing BandGene Krupa + +374399Bob Crosby And His OrchestraCorrectB. Crosby E La Sua OrchestraBandBob CrosbyBob Crosby & His Orch.Bob Crosby & His OrchestraBob Crosby & OrchestraBob Crosby & Son OrchestreBob Crosby . His OrchestraBob Crosby And His 15-Piece OrchestraBob Crosby And His Famous OrchestraBob Crosby And His OrchBob Crosby And His Orch.Bob Crosby And His Orchestra - 1936Bob Crosby And His Orchestra Play The BluesBob Crosby And OrchestraBob Crosby E La Sua OrchestraBob Crosby E OrquestraBob Crosby En Zijn OrkestBob Crosby Et Son OrchestreBob Crosby Med OrkesterBob Crosby Orch.Bob Crosby OrchesterBob Crosby OrchestraBob Crosby Orchestra And Vocal GroupBob Crosby OrkestereineenBob Crosby Sa Svojim OrkestromBob Crosby Und Sein OrchesterBob Crosby Y Orq.Bob Crosby Y Su Orq.Bob Crosby Y Su OrquestaBob Crosby and OrchestraBob Crosby's OrchestraBob Crosby, His OrchestraBob Crosby, His Trumpet And OrchestraBob Crosby, Trompete Und Sein OrchestraGil Rodin And His OrchestraLa Orquesta De Bob CrosbyOrch. Bob CrosbyOrchestraOrchestra Bob CrosbyThe Bob Crosby OrchestraChuck GentryDoris DayWilbur SchwartzJess StacyDave PellBob ZurkeRay LinnSterling BoseCharlie TeagardenBilly ButterfieldLou McGarityTommy ToddGus BivonaEddie Miller (2)Murray McEachernNick FatoolNoni BernardiLyman VunkBob HaggartRay BauducDick CathcartMoe SchneiderMatty MatlockCharlie SpivakBuddy MorrowIrving FazolaGil BowersGil RodinNappy LamareRalph CollierZeke ZarchyTed VeselyDeane KincaideAndy FerrettiElmer SmithersWard SillowayYank LawsonBob LawsonJoe Harris (2)Morty CorbBob CrosbyFloyd O'BrienDick Noel (2)Warren D. SmithBill Graham (4)Art MendelsohnJim EmertMark Bennett (3)Earl CollierStan WrightsmanMax Herman (2)Ted KleinJim StutzJack MootzArtie FosterJoe Kearns (2)Phil WashburneDale PearceCountry WashburneJimmy EmmertJack Holmes (5)Frank Meyers (2)Doc RandoAl King (16) + +374400Benny Goodman And His OrchestraAmerican jazz orchestra, which was later considered to be one of the most influential of the swing era.Needs Votehttps://www.allmusic.com/artist/benny-goodman-his-orchestra-mn0000591425/biographyhttps://adp.library.ucsb.edu/names/106708A Orquestra Original de Benny GoodmanB. Goodman & His Orch.B. Goodman & His OrchestraB. Goodman And His Orch.B. Goodman OrchestraB. Goodman Y Su OrquestraB. Goodman's OrchestraBG OrchestraBandBennie Goodman OrchesterBennie Goodman OrchestraBenny GoodmanBenny Goodman & His BandBenny Goodman & His Groups OrchestraBenny Goodman & His Orch.Benny Goodman & His OrchestraBenny Goodman & Orch.Benny Goodman & OrchesterBenny Goodman & OrchestraBenny Goodman & Son OrchestreBenny Goodman + His OrchestraBenny Goodman And & His OrchestraBenny Goodman And His BandBenny Goodman And His Big BandBenny Goodman And His Music Hall OrchestraBenny Goodman And His MusiciansBenny Goodman And His OrchBenny Goodman And His Orch.Benny Goodman And His Original OrchestraBenny Goodman And His Ork.Benny Goodman And His Rhythm MakersBenny Goodman And His Swing BandBenny Goodman And His TrioBenny Goodman And OrchestraBenny Goodman And The Giants Of SwingBenny Goodman BandBenny Goodman Big BandBenny Goodman E La Sua OrchestraBenny Goodman E OrquestraBenny Goodman E Sua OrchestraBenny Goodman E Sua OrquestraBenny Goodman E la Sua OrchestraBenny Goodman Et Son OrchestreBenny Goodman His Orchestra & GuestsBenny Goodman I Njegov OrkestarBenny Goodman Mit Seinem OrchesterBenny Goodman O.Benny Goodman Og Hans Ork.Benny Goodman Og Hans OrkesterBenny Goodman OrchBenny Goodman Orch,Benny Goodman Orch.Benny Goodman OrchestraBenny Goodman Orchestra And SextetBenny Goodman Ork.Benny Goodman OrkestereineenBenny Goodman Se Svým OrchestremBenny Goodman Su OrquestaBenny Goodman U. S. OrchesterBenny Goodman Und Sein OrchesterBenny Goodman With His OrchestraBenny Goodman With His Orchestra And SextetBenny Goodman With StringsBenny Goodman With The Big BandBenny Goodman Y Su Gran OrquestaBenny Goodman Y Su Orq.Benny Goodman Y Su OrquestaBenny Goodman Y Su OrquestraBenny Goodman et son OrchestreBenny Goodman und sein OrchesterBenny Goodman y Su Gran OrquestaBenny Goodman y Su OrquestaBenny Goodman És EgyütteseBenny Goodman's BandBenny Goodman's Orch.Benny Goodman's OrchestraBenny Goodman, His Band, and His SextetBenny Goodman, His OrchestraBenny Goodman, His Orchestra And His CombosBenny Goodman, His Orchestra and his CombosBenny Goodman, His Orchestra, And His CombosBenny Goodman, His Orchestra, His CombosBenny Goodman, Su Orquesta Y Sus ConjuntosBenny Goodman/The BandBenny Goodmani OrkesterBenny Goodmann OrchestraBenny Goodmans OrkesterBenny GoodmenBenny-Goodman-OrchestraEnsembleGoodman & Orch.GuestsHis OrchestraKing Of Swing Benny Goodman And His OrchestraL'Orchestra Di Benny GoodmanL'orchestra Di Benny GoodmanLa OrquestaMembers Of The Benny Goodman OrchestraOrch.Orch. Benny GoodmanOrchester Benny GoodmanOrchestraOrchestra Benny GoodmanOrkest Benny GoodmanOrquesta Benny GoodmanOrquestra De Benny GoodmanThe BandThe Benny Goodman BandThe Benny Goodman Orch.The Benny Goodman OrchestraThe Benny Goodman Story OrchestraThe Big BandThe Goodman BandThe OrchestraБ. Гудман И Его Джаз-ОркестрБенни Гудмен И Его ОркестрОрк. под упр. Бенни ГудманаОркестр Б. ГудманаОркестр Бенни ГудменаОркестр Под Управлением Бенни ГудменаОркестромวงดนตรีคณะ เบนนี กูดแมนオリジナル・サウンドトラックベニー・グッドマン楽団ベニー・グッドマン楽団The RadiolitesBen Selvin & His OrchestraVincent Rose And His OrchestraBenny Goodman And His ModernistsThe Modernists (6)Stan GetzJack HendersonBuddy RichPeggy LeeChuck GentryLionel HamptonCount BasieDoc SeverinsenHelen WardJerry DodgionJohn FroskMel PowellColeman HawkinsWillie DennisBarney KesselBenny GoodmanTeddy WilsonAl KlinkJohn BestBernie PrivinBuck WashingtonLester YoungMundell LoweDave Matthews (2)Babe RussinGene KrupaHarry GoodmanVido MussoArthur RolliniCootie WilliamsJerry JeromeGeorge KoenigJo JonesZiggy ElmanJess StacyHymie SchertzerHerb GellerBilly BauerDanny BankBarry GalbraithUrbie GreenNick TravisGeorge DuvivierDon LamondZoot SimsSeldon PowellHank JonesBuck ClaytonKai WindingBunny BeriganDick McDonoughAaron SachsBud FreemanBernie GlowLouis R. MucciWardell GrayWalter PageJack LesbergEddie BertRoland HannaAl BlockArt DrelingerBernie LeightonLawrence StearnsReggie MerrillBilly ByersHoward CollinsDerek SmithDave BarbourHelen ForrestGeorgie AuldConrad GozzoCutty CutshallEddie LangJack TeagardenAl EpsteinTerry SnyderJohn MurtaughSlam StewartGeorge Van EpsRed NorvoManny KleinJoe SullivanStan kingFletcher HendersonArthur SchuttCharlie TeagardenMildred BaileyArtie BernsteinArt KarleTrummy YoungBilly ButterfieldTaft JordanLarry BreenLou McGarityAllan ReussGus BivonaIrving GoodmanRed BallardStan FishelsonBill HarrisHarry BabasinHoyt BohannonNate KazebierHarry JaegerSid WeissCharlie ChristianLes RobinsonJimmy MaxwellSidney CatlettRed GinglerFrank FroebaDave ToughJoe BushkinBob SnyderMike BryanSkip MartinHarry James (2)Gene TraxlerHarry GellerAlec FilaPee Wee ErwinEddie SafranskiErnie CaceresGeorge BergClyde LombardiVernon BrownMurray McEachernArvell ShawJohnny SmithNick FatoolMarshall SossonJohnny GuarnieriNoni BernardiTony FasoWalt LevinskyJack LaceyRalph MuzilloLee CastaldoBob HaggartGene KinseyBen HellerDick ClarkJohnny NaptonWill BradleyJimmy BlakeToots MondelloHarry BluestoneDan LubeShirley ClayChris Griffin (3)Buddy SchutzAl De RisiLouis BellsonGene AllenCliff StricklandGerald SanfinoJimmy PriddyRalph CollierZeke ZarchyBuff EstesArnold CoveyAlex CuozzoJimmy HorvathPete MondelloBus BasseyTed VeselyLars ErstrandCarl PooleJohn SimmonsTony MottolaJack RainesWilliam SlapinWard SillowayYank LawsonSol SchlingerStan FreemanBruce SquiresJoe Harris (2)Victor ArnoPaul RobynTommy NewsomCharles FrankhauserRex PeerAl Stewart (3)Addison CollinsJohn RotellaBobby ByrneJoe LipmanMorey FeldChauncey WelschAbraham 'Boomie' RichmanJohnny MartelJohnny White (6)Milt YanerSonny RussoMischa RussellCy BernardArthur KaftonBarney SpielerErmet PerryClint NeagleyBob PolandFrank BeecherBill ShineWilliam PritchardArtie BakerTommy KayEdward CorneliusBilly HodgesErnie MauroBill DepewJerry NearyTom Morgan (5)Sonny LeeCharles GriffinDick MainsCharlie QueenerJon WaltonEarl CollierArt LundWalter YostBud ShiffmanEmmett CarlsMitch GoldbergCharlie CastaldoHoward ReichSol KaneMickey McMickleLarry MolinelliHoward Davies (2)Dick LefaveArt RalstonAl Davis (2)Angelo CicaleseCliff Hill (2)George MonteEthel EnnisCharlie MargulisJohn AltwergerEddie AulinoVince BadaleBlake ReynoldsTerry SwopeArt SylvesterFern CaronRoy BurnsLeon CoxJohn McLevyHarry SheppardLes Clarke (2)Sam Shapiro (2)James SandsArt LondonCy BakerMarty BlitzRay BellerFrank Lo PintoTommy ReoLeonard KayeGish GilbertsonJohn PragerHud DaviesJohn Pepper (2)Julie Schwartz (2)Stan KosowAnn Graham (4)Leonard SimsEleanora McKaySy Shaffer (2)Brodie SchroffBenny BakerDale SchroffRicky TrentDave Mathes (3)Harry FinkelmanBob Taylor (39) + +374502Joe Venuti & Eddie Lang[b]For writing credits, use their own separate names [a=Joe Venuti] and [a=Eddie Lang]. This is only for their performing credits![/b].CorrectEddie Land & Joe VenutiEddie Lang & Joe VenutiEddie Lang - Joe VenutiEddie Lang And Joe VenutiEddie Lang E Joe VenutiEddie Lang& Joe VenutiEddie Lang-Joe Venuti And Their All Star OrchestraJoe Venuti & Ed LangJoe Venuti - Ed LangJoe Venuti - Eddie LangJoe Venuti / Eddie LangJoe Venuti And Ed LangJoe Venuti And Eddie LangJoe Venuti E Eddie LangJoe Venuti Eddie LangJoe Venuti With Eddie LangJoe Venuti • Eddie LangJoe Venuti, Eddie LangJoe Venuti-Eddie LangJoe Venuti/Eddie LangLang - VenutiVenti-LangVenuti & LangVenuti - LangVenuti / LangVenuti And LangVenuti LangVenuti-LangVenutti, Land DuoJoe VenutiEddie Lang + +374503Joe Venuti / Eddie Lang Blue FourAmerican, New York based Jazz ensemble formed by violinist Joe Venuti and guitarist Eddie Lang in the 1920's and 1930's. Depending on the number of musicians, who performed with Venuti, also [a3193223] is known. Without Eddie Lang, there were also the ensembles [a334068], [a3728489] and [a1993780].Needs VoteJoe VenutiEddie Lang + +374504Joe Venuti's Rhythm BoysCorrectAll Star Rhythm BoysJoe VenutiJimmy DorseyEddie LangLennie HaytonHyman Arluck + +374505Art Tatum And His BandCorrectArt Tatum & His BandArt Tatum And His OrchestraArt Tatum Y Su BandaArt TatumEdmond HallBig Joe TurnerOscar MooreEddie DoughertyBilly Taylor Sr.Yank PorterJoe Thomas (4)John Collins (2) + +374506Art Tatum And His SwingstersCorrectArt Tatum & His SwingstersArt Tatum And His SwingersArt Tatum + +374632Rex Stewart And His OrchestraCorrectRex Stewart & His Orch.Rex Stewart & His OrchestraRex Stewart & Orch.Rex Stewart And His Orch.Rex Stewart And His Orchestra (An Ellington Unit)Rex Stewart And OrchestraRex Stewart Mit Seinem OrchesterRex Stewart OrchestraRex Stewart Und Sein OrchesterRex Stewarts OrkesterRex Stewarts OrkestrDuke EllingtonBen WebsterJohnny HodgesLawrence BrownHarry CarneyJoe NantonSonny GreerRex StewartLouis BaconBarney BigardSandy WilliamsBilly Taylor Sr.Jimmy BlantonPete Clark (2)Wilson MyersJean-Jacques TilchéFred ErmelinBay PerryDon GaisVernon StoryTed CurryLadislas CzabanickCeele BurkeStafford SimonJohnny Harris (4) + +374633Ben Webster And His OrchestraCorrectBen Webster & His Orch.Ben Webster & His OrchestraBen Webster OrchestraTony Scott (2)Ray BrownOscar PetersonHerb EllisBen WebsterAlvin StollerHarry EdisonBenny CarterDenzil BestIdrees SuliemanHot Lips PageSidney CatlettBill De ArangoCharlie DraytonJohn Simmons + +374634Ben Webster QuartetCorrectBen Webster And His QuartetThe Ben Webster QuartetGeorges ArvanitasKenny DrewBen WebsterMarlowe MorrisJohn EngelsCees SlingerNiels-Henning Ørsted PedersenCharles SaudraisSidney CatlettBo StiefAlex RielRob LangereisJacky SamsonDick KatzSpike HeatleyTony CrombieAlan HavenJohn SimmonsOle Kock Hansen + +374646Bruno LauziBruno LauziItalian singer, songwriter (born on August 8th, 1937 in Asmara, Eritrea - at that time part of Ethiopia - † on October 24th, 2006 in Peschiera Borromeo, Milano). + +Needs Votehttp://www.brunolauzi.com/https://www.imdb.com/name/nm0487336/?ref_=nv_sr_srsg_0https://it.wikipedia.org/wiki/Bruno_Lauzihttp://www.brunolauzi.it/page5/page5.htmlB LauziB. LanziB. LausiB. LauziB.LauziB.LeusiBravno LuaziBrunoC. LauziE. LauziL. BrunoLauriLauziLauzilLauzziM. LauziPlayboyT. LauziPlayboy (2)Miguel E I Caravana + +374747Benny Carter And His Swinging QuintetCorrectBenny Carter + +374748Teddy Wilson QuartetCorrectTeddy Wilson KvartettTeddy Wilson's QuartetThe Teddy Wilson QuartetGene RameyTeddy WilsonJo JonesDenzil BestBuck ClaytonRemo PalmieriRed NorvoBilly Taylor Sr.Harry James (2)John Simmons + +374749Sonora Swing BandCorrectSonora Swing-Band + +374750The RamblersDutch dance orchestra, formed in 1926 by [a=Theo Uden Masman]. It was very popular in The Netherlands with a repertory of jazz and popular tunes, and recorded backing [a=Coleman Hawkins] in 1935 and 1937, [a=Benny Carter] in 1937 and [a=Freddy Johnson (5)] in 1937-1938. + +In 1942 German law forced the group to change its name to [a12877352]. The group continued to be led by Masman until 1964, when it changed its name to [a2591447] (VARA after Verenigde Arbeiders Radio, on which it played) and its repertory to one of entirely popular music. In the mid-1980s it was led by [a=Marcel Thielemans]. + +Other spin-offs of The Ramblers included [a12877409] and [a4710438]. +Correcthttps://nl.wikipedia.org/wiki/The_RamblersDe RamblersDie RamblersHet Ramblers DansorkestHet Remblers DansorkestL'Orchestre De Danse "Les Ramblers"Los RamblersRambler OrchestreRamblersRamblers Dance OrchestraThe Original RamblersThe Original Ramblers Orch.The Ramblers '74The Ramblers Dance BandThe Ramblers Dance Orch.The Ramblers Dance OrchestraThe Ramblers DansorkestThe Ramblers OrchestraThe Ramblers' Dance OrchestraVARA-DansorkestThe Swinging RascalsHet DansorkestJerry Van RooyenJacques ScholsBert PaigeWim SandersKees KranenburgMarcel ThielemansJack BultermanAdo BroodboomTinus BruynWim PoppinkPierre WijnnobelJos CleberKees BruynTheo Uden MasmanFrancis BayVictor IngeveldtSem NijveenTonny HelwegJan KoulmanCharlie NederpeltJack PetNico De RooySal DoofGeorge Van HelvoirtAndre Van Der OuderaaTony LimbachFritz ReindersHenk HinrichsToon DiepenbroekFred Van IngenJohnny HolshuysenAlbert BrinkhuizenFrans de GuiseFerry BarendseJan de Vries (3)Joop DiepenbroekJany BronLion GroenJaap MeyerSam DasbergGerard SpruytJoop HuismanDavid van WeezelNap van der PloegHans LachmanMaurits DreeseEddy MeenkBenny de GooyerLouis de Vries (3)Jack de VriesDick HilariusRambalayaMatthias Konrad (4) + +374751Lester Young QuartetCorrectLester YoungLester Young (JATP) QuartetLester Young And His QuartetLester Young E Seu QuartetoLester Young Quartet BlueQuarteto De Lester YoungThe Lester Young QuartetYoung QuartetBuddy RichGene RameyLex HumphriesRay BrownLester YoungJo JonesCurly RussellTiny KahnHank JonesJohn Lewis (2)Slam StewartKenny KerseySidney CatlettBilly HadnottJohnny GuarnieriChuck WayneShadow WilsonGene DiNoviAl King (4)Horst Ornimert + +374752Sidney Bechet And His TrioCorrectSidney Bechet TrioThe Sidney Bechet TrioTrioEarl HinesSidney BechetZutty SingletonWillie "The Lion" SmithEverett BarksdaleLil Hardin-ArmstrongBaby Dodds + +374754Jones-Smith IncorporatedRecording quintet led by [a=Count Basie]. +Named to avoid legal difficulties when recording for Vocalion in 1936 after Basie had signed a contract with Decca.Needs VoteCount Basie QuintetJoe Jones - Carl Smith Inc.Jones & Smith Inc.Jones & Smith IncorporatedJones - Smith IncJones - Smith Inc.Jones-Smith Inc.Jones-Smith, Inc.Jones-Smith, IncorporatedSmith-Jones IncorporatedCount Basie Blue FiveCount Basie QuintetCount BasieLester YoungJo JonesWalter PageJimmy RushingCarl Smith + +374755Glenn Hardman And His Hammond FiveCorrectGlenn Hardman & His Hammond FiveGlenn Hardman Organ FiveGlenn Hardmann And His Hammond FiveLester YoungJo JonesFreddie GreenLee CastaldoGlenn Hardman + +374784Didier BarbelivienDidier René Henri BarbelivienFrench author and singer (born 10 March 1954 in Paris). +Father of [a3892450]Needs Votehttp://www.barbelivien.comhttp://fr.wikipedia.org/wiki/Didier_BarbelivienB. BarbelivienBabelivienBarabelivienBarbelievenBarbelinienBarbelivienBarbelivien D.Barbelivien, D.BarbelivieuBarbellivianBarbeuvienBarbilevienBarbélivienBarebelivienBarvelivienBerbelivienBorbelivenD BarbelivienD. Barbe LivenD. Barbe LivienD. BarbelievenD. BarbelievierD. BarbeliienD. BarbelinienD. BarbeliveinD. BarbelivianD. BarbelivienD. BarbelivierD. BarbeliwienD. BarbellivianD. BarbelvienD. BarbilienD. BarbolivienD. BarbolivionD. BarbélivienD. BardivienD. BerbeliviemD. BerbelivienD. Didier BarbelivienD. R. BarbelivienD.BarbelivienD.BarbelvienD.R. BarbelivienD; BarbelivienDaniel BarbevilienDidier - BarbelivienDidier BarbélivienDidier BarelivienDidier BarvelivienDidier Rene Henri BarbelivienG. BarbelivienR. Didierדידייה ברבליוויין디디에 바르블리비엥David Burroughs (2)Maurice LindetChanteurs Sans FrontièresLes Enfants Sans NoëlLes Grosses TêtesDJ's GroupViva Les Bleus + +374794Lee AndrewsArthur Lee Andrew ThompsonAmerican doo-wop vocalist, born June 2, 1936, Goldsboro, NC - died March 16, 2016. +Son of [a=Beachey Thompson] of the Dixie Hummingbirds. Husband of [a1561535] and father of [a=Ahmir '?uestlove' Thompson].Needs VoteAndersonAndrewsL AndrewsL. AndrewsLee AndersonLee Andrews And GroupLee Andrews And The HeartsLee Andrews And The MastersLee Andrews aka Poppa ?uestionPoppa QuestionLee Andrews & The HeartsCongress Alley + +374826Dexter Gordon And His BoysCorrectDexter Gordon & His BoysDexter GordonTadd DameronNelson BoydFats NavarroArt Mardigan + +374827Dexter Gordon QuintetVarious groups over time with US tenor saxophonist [a=Dexter Gordon] as the leaderNeeds VoteDexter Gordon QuintetteDexter Gordon With His QuintetThe Dexter Gordon QuintetArt BlakeyBud PowellDexter GordonMax RoachKenny DrewTadd DameronRolf EricsonCurly RussellHank JonesNiels-Henning Ørsted PedersenBenny BaileySture NordinLeo ParkerTorbjörn HultcrantzEspen RudLeonard HawkinsLars SjöstenJual CurtisPelle Hultén + +374828Sir Charles And His All StarsCorrect'Sir' Charles Thompson and his All StarsSir Charles & His All StarsSir Charles (Thompson) & His All-StarsSir Charles All StarsSir Charles Thompson & His All StarsSir Charles Thompson All-StarsSir Charles Thompson And His All StarsSir Charles Thompson And His All-StarsSir Charles Thompson's All StarsCharlie ParkerDexter GordonBuck ClaytonDanny BarkerSir Charles ThompsonJ.C. HeardJimmy ButtsBob Dorsey + +374830John Kirby And His Onyx Club BoysNeeds VoteJohn Kirby & His Onyx Club BoysJohn Kirby OrchestraJohn Kirby Y Sus Onyx Club BoysJohn Kirby And His OrchestraJohn Kirby SextetRussell ProcopeBuster BaileyJohn KirbyBilly KyleCharlie ShaversO'Neil Spencer + +374831Dexter Gordon's All StarsCorrectDexter Gordon All StarsDexter Gordon All-StarsDexter Gordon AllstarsDexter Gordon's All-StarsDexter GordonRoy PorterGene RameyChuck ThompsonTeddy EdwardsRed CallenderWardell GrayJimmy BunnNiels-Henning Ørsted PedersenMelba ListonEddie NicholsonArgonne Thornton + +374832Benny Goodman SeptetEarly American jazz ensembleNeeds VoteBenny Goodman - SeptetoBenny Goodman And His SeptetBenny Goodman BandBenny Goodman Septet 1948Benny Goodman SeptetteSeptetThe Benny Goodman SeptetCount BasieBenny GoodmanTeddy WilsonLester YoungMilt HintonMundell LoweCootie WilliamsJo JonesArnold FishkinBilly BauerUrbie GreenBuck ClaytonBuddy GrecoWardell GrayWalter PageFreddie GreenRuby BraffGeorgie AuldArtie BernsteinFats NavarroPaul QuinichetteCharlie ChristianDave ToughBobby DonaldsonClyde LombardiJohnny GuarnieriDoug MettomeStan HasselgardMel ZelnickGene DiNoviFrank BeecherPerry LopezSonny IgoeÅke Hasselgård + +374836Charlie KennedyCharles Sumner KennedyAmerican jazz saxophonist (tenor and alto). + +Born : July 02, 1927 in Staten Island, New York. +Died : April 03, 2009 in Ventura, California. + +Worked (among others) with : Louis Prima (1943), Gene Krupa (1945-1948), Charlie Ventura, Flip Phillips, Med Flory, Bill Hollman, Terry Gibbs (1959-1962). Needs Votehttps://en.wikipedia.org/wiki/Charlie_Kennedy_(saxophonist)https://adp.library.ucsb.edu/names/325068Ch. KennedyCharles KennedyCharley KennedyKennedyGene Krupa And His OrchestraDizzy Gillespie Big BandBill Holman And His OrchestraTerry Gibbs And His OrchestraBill Holman's Great Big BandChubby Jackson's OrchestraTerry Gibbs Dream BandNeal Hefti And His Jazz Pops OrchestraArt Pepper + Eleven + +374909Belinda SykesBelinda Sykes (Born: 1966 – Died: 16 November 2021) was a London-based session singer who can sightsing in various ethnic styles including Bulgarian singing and Arabic singing. Belinda studied voice and improvisation in Morocco, Bulgaria, Syria, Spain and India; oboe and recorder at the Guildhall School of Music.Needs Votehttps://en.wikipedia.org/wiki/Joglaresa#Belinda_Sykeshttps://www.imdb.com/name/nm0843039/BelindaOni WytarsThe English ConcertJoglaresaMusicians Of Shakespeare's Globe + +374915Wardell Gray QuintetCorrectHampton HawesArt FarmerShelly ManneJoe MondragonWardell Gray + +374916Wardell Gray QuartetCorrectWardell GrayWardell Gray QuartetteTommy PotterChuck ThompsonAl HaigTiny KahnRed CallenderDodo MarmarosaWardell GrayHarold "Doc" WestClyde Lombardi + +374917Bob Mosely & All StarsCorrectCharles MingusLucky ThompsonLee Young (2)Marshall RoyalKarl GeorgeGene PhillipsBob Mosley (2) + +374918Eddie Beal And His FourtetteCorrectEddie Beal FourtetEddie Beal's OrchestraEddie Beale FourtetteEddie Beals' FourtetThe Eddie Beal FourtetThe Eddie Beal FourtetteThe Eddie Beal QuartetLucky ThompsonEddie Beal + +374919Slam Stewart QuartetCorrectThe Slam Stewart QuartetDon ByasErroll GarnerHarold "Doc" WestSlam Stewart + +374920Phil Moore And His OrchestraCorrectPhil Moore & His OrchestraPhil Moore & OrchestraPhil Moore And OrchestraPhil Moore And The OrchestraPhil Moore Et Son OrchestrePhil Moore Orch.Phil Moore OrchestraPhil Moore Und Sein OrchesterPhil Moore's OrchestraThe Phil Moore OrchestraLucky ThompsonPhil Moore (2) + +374921David AllynAlbert DiLelloAmerican vocalist. +Born July 19, 1923 in Hartford, Connecticut, USA +Died November 21, 2012 (age 89) in West Haven, Connecticut, USA. +Allyn first sang professionally in high school, then most strongly influenced by his idol Bing Crosby. In 1940, David took his first big step into his professional career with the Jack Teagarden Band. Entering the army, in 1942 he served with the First Division on its African campaign. Out of the army, he sang with the Van Alexander Orchestra. By now he had given up his Bing Crosby style, and was listening with interest to Sarah Vaughan, Dick Haymes, early Al Hibbler, Peggy Lee, and Frank Sinatra, but was developping his own style. David moved next to the early Henry Jerome band, with sidemen such as Al Cohn, Tiny Kahn, Harry Biss, Ollie Wilson, and most of all, Johnny Mandel. After the Jerome band broke up, David sang at WHN and WNEW radio and spent a short stint with the Bob Chester band, before joining Mandel in the new experimental Boyd Raeburn Band. +In 1957, David Allen eventually recorded his first LP album for World Pacific. He died November 21, 2012 at the Veterans Administration Hospital in West Haven, CT.Needs Votehttps://indianapublicmedia.org/afterglow/voices-that-time-forgot-david-allyn,-rocky-cole,-and-deno-kannes.phphttps://fromthevaults-boppinbob.blogspot.com/2023/07/david-allyn-born-19-july-1919.htmlhttps://www.jazzwax.com/2009/10/interview-david-allyn-part-1.htmlDavid AllenJack Teagarden And His OrchestraBoyd Raeburn And His Orchestra + +374922Slam Stewart TrioCorrectErroll GarnerHarold "Doc" WestSlam Stewart + +374924Ike Carpenter And His OrchestraCorrectIke Carpenter & His OrchestraIke Carpenter Orch.Ike Carpenter OrchestraIke Carpenter's OrchestraIke Carpenter’s OrchestraGerald WilsonBobby SimsBud ShankLucky ThompsonLloyd UlyateTommy PedersonCorky CorcoranJohn HalliburtonBob LawsonJoe KochVito ManganoRoy HarteTed Nash (2)Ollie WilsonIke CarpenterWalter BensonEd MihelichGeorge WeidlerJim StutzLou Obergh Jr.Herb MoiseBob Hummel (2) + +374925Slam Stewart QuintetCorrectSlam StewartThe Slam Stewart QuintetSlam StewartRed NorvoBill De ArangoJohnny GuarnieriMorey Feld + +374928Slam Stewart And The Jazz TonesCorrectSlam Stewart + +374982Illinois Jacquet SextetCorrectIllinois Jacquet And His SextetThe Illinois Jacquet SextetBill DoggettIllinois JacquetJohn Brown (3)Russell Jacquet + +374983Dizzy Gillespie And His All Star QuintetCorrectD. Gillespie And His All StarsDizzy Gillepsie And His Allstar QuintetDizzy Gillespie & His All Star QuintetDizzy Gillespie & His All StarsDizzy Gillespie & His All-Star QuintetDizzy Gillespie & His All-StarsDizzy Gillespie & His Star QuintetDizzy Gillespie All Star QuintetDizzy Gillespie All Star QuintettDizzy Gillespie All Star QuintetteDizzy Gillespie All StarsDizzy Gillespie All Stars QuintetDizzy Gillespie All-Stars QuintetDizzy Gillespie And His All Star QuintetteDizzy Gillespie And His All StarsDizzy Gillespie And His All Stars QuintetDizzy Gillespie And His All-Star QuintetDizzy Gillespie Star QuintetDizzy Gillespie's All Star QuintetDizzy Gillespie's All Star QuintetteDizzy Gillespie's All-Star QuintetteDizzy Gillespie`s All Star QuintetGillespie & His All Star QuintetThe Dizzy Gillespie All Star QuintetteThe Dizzy Gillespie All-Star QuintetSarah VaughanDizzy GillespieCharlie ParkerCurly RussellAl HaigSidney Catlett + +374984Illinois Jacquet And His All StarsCorrectIllinois Jacquet & His All StarIllinois Jacquet & His All StarsIllinois Jacquet & Hist All StarsIllinois Jacquet All StarsIllinois Jacquet And & His All StarsIllinois Jacquet And His All-StarsThe Illinois Jacquet All StarsThe Illinois Jacquet AllstarsGrady TateJohnny OtisBill DoggettCharles MingusIllinois JacquetVic DickensonDenzil BestFreddie GreenBarry Harris (2)Slam StewartTrummy YoungJoe NewmanFats NavarroSir Charles ThompsonJimmy PowellHenry CokerBilly HadnottGray SargentUlysses LivingstonAl LucasRay PerryShadow WilsonLeo ParkerJohn SimmonsRussell JacquetArthur Dennis + +374985Charlie Parker's New All-StarsCorrect + +374987Dizzy Gillespie JazzmenCorrectDizzy Gillespie Jazz MenThe Dizzy Gillespie JazzmenTempo Jazz MenDizzy Gillespie Tempo JazzmenDizzy GillespieCharlie ParkerMilt JacksonRay BrownAl HaigLucky ThompsonStan LeveyArvin GarrisonGeorge Handy + +375009Lennie Tristano TrioCorrectLennie TristanoLennie Tristano And His TrioLennie Tristano's TrioLennie Tristanos TrioLennie Tristano’s TrioLenny Tristano (And His Trio)Lenny Tristano TrioThe Lennie Tristano TrioLennie TristanoBilly BauerClyde LombardiJohn LevyBob Leininger + +375010Lennie Tristano SextetCorrectLennie Tristano & His SextetLennie Tristano And His SextetLennie Tristano And His SextetteLennie Tristano SekstettLennie Tristano SexteteLennie Tristano SextetoLennie Tristano SextetteLennie Tristano Und Sein SextettLennie Tristano's SextetThe Lennie Tristano SextetThe Lennie Tristano SextetteLennie TristanoArnold FishkinBilly BauerWarne MarshHarold GranowskyDenzil BestLee Konitz + +375011Thelonious Monk SextetCorrectThe Thelonious Monk SextetThelonius Monk SextetArt BlakeyThelonious MonkGene RameyIdrees SuliemanDanny Quebec WestBilly Smith + +375012Eddie Davis And His BeboppersCorrectEddie Davis & His Be BopperpsEddie Davis & His BeboppersEddie Davis And His Be BoppersEddie Davis And His Be-BoppersGene RameyAl HaigDenzil BestEddie "Lockjaw" DavisFats NavarroHuey Long + +375014Lennie Tristano QuintetCorrectLennie TristanoThe Lennie Tristano QuintetLennie TristanoArnold FishkinBilly BauerWarne MarshLee KonitzAl LevittJeff MortonPeter Ind + +375016Lennie Tristano QuartetCorrectLennie Tristanos QuartetQuartetThe Lennie Tristano Quartetレニー・トリスターノ三・四重奏団レニー・トリスターノ四重奏団Gene RameyLennie TristanoArnold FishkinBilly BauerHarold GranowskyLee KonitzArt TaylorJeff MortonPeter Ind + +375022Marie-Paule BelleMarie-Paule Belle (born January 25, 1946, Pont-Sainte-Maxence, Oise, France) is a French singer, pianist and actress.Needs Votehttps://www.mariepaulebelle.comhttps://fr.wikipedia.org/wiki/Marie-Paule_BelleM-P. BelleM. -P. BelleM. P. BelleM.-.P. BelleM.-P. BelleM.P. BelleMP BelleMaria P. BelleMarie Paule BelleMarie-Paul Belle + +375043Nathalie ArchangelNathalie ArchangelNathalie Archangel, a double platinum songwriter for her work on Bette Midler’s Some People’s Lives album, spent the early part of her music career recording well-received but under-promoted pop albums for Columbia and MCA. These did foreshadow the future, as Nathalie penned a couple of wonderful duets and enlisted the likes of Frankie Valli and Howard Jones as vocal partners on her MCA release, Owl. Nathalie has also worked with such luminaries as Greg Penny, Don Was and David Kahne, among a constellation of others. Nathalie's new 2020 album, Nineteen Hand Horse brings a rich pedigree to its debut album, Revel, set for release on May 21 2021. This Northern California-based group also brings authenticity, country soul and a wealth of experience to Revel, along with the unique male/female singer/songwriter partnership of Nathalie Archangel and Mark Anthony Montijo, a pair that harkens to the glory days of George and Tammy, Johnny and June, Dolly and Porter.Needs Votehttps://www.facebook.com/NathalieArchangelOfficial/http://amprofile.blogspot.com/2013/03/nathalie-archangel.htmlhttps://www.nineteenhandhorse.com/ArchangelN. ArchangelNatalie Archangelナタリー・アークエンジェルThe Raincity Industrial Art EnsembleNineteen Hand Horse + +375085Wayne Williams (3)Jazz trumpet playerCorrectWayneBob Zurke And His Delta Rhythm Band + +375086Tommy Mack (2)Jazz trombonistCorrectMackT. MackGlenn Miller And His Orchestra + +375279Georg Friedrich HändelGeorg Friedrich HändelGerman Baroque composer, born 23 February 1685 in Halle/Saale, Germany; died 14 April 1759 in London, UK. +He spent most of his adult life in England where his name was anglicized to ‘George Frideric [or Frederick] Handel’.Needs Votehttps://en.wikipedia.org/wiki/George_Frideric_Handelhttps://de.wikipedia.org/wiki/Georg_Friedrich_H%C3%A4ndelhttps://fr.wikipedia.org/wiki/Georg_Friedrich_Haendelhttps://www.klassika.info/Komponisten/Haendel/https://www.britannica.com/biography/George-Frideric-Handelhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102593/Handel_George_Friderichttps://www.allmusic.com/artist/george-frederick-handel-mn0000805740Aus: G. F. Händel, Alessandro (1726)C. F. HandelC. F. HändelC.F. HandelC.F. HändelCr. F. HaendelF. G. HandelF. HaendelF. HandelF. HäendelF. HändelFr. HandelFr. HändelFrederick HaendelFrederick HandelFrideric HandelFrideric HändelFriedrich HaendelFriedrich HandelFriedrich HändelG / F/ HandelG F HG F HaendelG F HandelG F HandleG F HändelG F. HändelG HandelG HändelG-F HändelG-F. HaendelG-F. HandelG. - F. HaendelG. -F. HaendelG. F HändelG. F. HandelG. F. HändelG. F. 'HändelG. F. HANDELG. F. HaendeG. F. HaendelG. F. HandeiG. F. HandelG. F. HandelisG. F. HandleG. F. HanelG. F. HaëndelG. F. HeandelG. F. HendelG. F. HendelisG. F. HendlG. F. HäendelG. F. HändeG. F. HändelG. F. Händel, CouranteG. F. HändelnG. F. HändlG. F. HændelG. F. Hændel*G. F.HandelG. F: HändelG. Fr. HaendelG. Fr. HandelG. Fr. HändelG. Fr. Händel*G. Frederick HandelG. Frideric HaendelG. Friedr. HändelG. Friedrich HaendelG. Friedrich HändelG. Frédéric HaendelG. H. HandelG. H. HendelsG. HaendelG. HaendleG. HandelG. HendelisG. HerndelisG. HändelG. J. HandelG. P. HaendelG. ヘンデルG.-F. HaendelG.-F. HaëndelG.-F. HändelG.-F. HændelG.-F.HaendelG.-Fr. HaendelG.-Fr.HaendelG.F HaendelG.F HandelG.F HändelG.F. HändelG.F. GandelG.F. HaendelG.F. HandelG.F. HaëndelG.F. HändelG.F. HeandelG.F. HendelisG.F. HäendelG.F. HändelG.F. HændelG.F.HaendelG.F.HandelG.F.HändelG.F.ヘンデルG.Fr. HaendelG.Fr. HandelG.Fr. HändelG.H. HaendelG.H. HandelG.H. HändelG.HandelG.f. HandelG.ヘンデルG/F HandelG: F. HändelGEorge Frideric HandelGF HaendelGF HandelGF HändelGF. HändelGendelGeo. F. HandelGeor Friedrich HaendelGeor Friedrich HændelGeorg - Friedrich HaendelGeorg - Friedrich HändelGeorg F. HaendelGeorg F. HandelGeorg F. HäendelGeorg F. HändelGeorg Fr HändelGeorg Fr. HaendelGeorg Fr. HandelGeorg Fr. HändelGeorg Frdr. HändelGeorg Frederic HandelGeorg Frederic HändelGeorg Frederich HaendelGeorg Frederich HandelGeorg Frederick HandelGeorg Fredrich HandelGeorg Fredrich HändelGeorg Fredrick HaendelGeorg Frideric HandelGeorg Frideric HändelGeorg Friderich HandelGeorg Friderich HändelGeorg Fridric HandelGeorg Fridric HändelGeorg Fridrih HandelGeorg Fridrih HendlGeorg Fried. HändelGeorg Friederic HandelGeorg Friederich HaendelGeorg Friederich HandelGeorg Friederich HändelGeorg Friedich HaendelGeorg Friedr. HändelGeorg Friedric HandelGeorg Friedric HändelGeorg Friedrich AndelGeorg Friedrich HaendelGeorg Friedrich HandelGeorg Friedrich HarndelGeorg Friedrich HaëndelGeorg Friedrich HsndelGeorg Friedrich HäendelGeorg Friedrich Händel (1685 - 1759)Georg Friedrich Händel (?)Georg Friedrich HændelGeorg Friedrich von HandelGeorg Friedrick HandelGeorg Friedrik HaendelGeorg Frédéric HaendelGeorg Griedrich HaendelGeorg HaendelGeorg HandelGeorg HändelGeorg Philipp HändelGeorg-Friedrich HaendelGeorg-Friedrich HandelGeorg-Friedrich HändelGeorg-Friedrich HændelGeorgFriedrich HaendelGeorge Frideric HandelGeorge F HandelGeorge F. HaendelGeorge F. HandelGeorge F. HandleGeorge F. HändelGeorge F. HændelGeorge F.HandelGeorge Fideric HandelGeorge Fr. HandelGeorge Frederic HaendelGeorge Frederic HandelGeorge Frederic HandleGeorge Frederic HändelGeorge Frederich HandelGeorge FrederickGeorge Frederick HaendelGeorge Frederick HandelGeorge Frederick HandellGeorge Frederick HändelGeorge Frederik HandelGeorge Fredric HandelGeorge Fredrick HandelGeorge Freiderich HandelGeorge Freidrich HändelGeorge Frideic HandelGeorge Friderec HandelGeorge Frideric HaendelGeorge Frideric HandelGeorge Frideric Handel)George Frideric HändelGeorge Frideric handelGeorge Friderich HandelGeorge Friderick HandelGeorge Friderik HandelGeorge Fridreic HandelGeorge Fridric HandelGeorge Fridric HändelGeorge Fridrich HandelGeorge Fridrich HändelGeorge Fridrick HandelGeorge Fridzric HandelGeorge Friederic HandelGeorge Friederic HändelGeorge Friederich HaendelGeorge Friederich HandelGeorge Friederich HändelGeorge Friederick HandelGeorge Friederik HandelGeorge Friedr. HändelGeorge Friedric HaendelGeorge Friedric HandelGeorge Friedric HändelGeorge Friedrich HaendelGeorge Friedrich HandelGeorge Friedrich HändelGeorge Friedrich HændelGeorge Frierich HandelGeorge Frédéric HaendelGeorge HandelGeorge HändelGeorge-Frideric HaendelGeorges -Frédéric HaendelGeorges F. HaendelGeorges Frederic HaendelGeorges Frederic HändelGeorges Frideric HandelGeorges Friedrich HaendelGeorges Frédéric HaendelGeorges Frédéric HændelGeorges Frédérick HaendelGeorges-F. HaendelGeorges-Fréderic HaendelGeorges-Frédéric HaendelGeorges-Frédéric HændelGeorgh F. HaendelGeorgr Fredrich HandelGeorgs Fridrihs HendelisGeorgs Frīdrihs HendelisGeroge F HandelGeroge F. HandelGeroge Frideric HandelGf. HandelGiorgio Federico HaendelGiorgio Federico HändelGoerg Frideric HandelGoerge Frederic HandelGorge Frederic HandelGorge Friedrich HaendelG·F·HändelG⋅F⋅HändelG・F・ヘンデルH NdelH ndelH. F. HaendelH. Fr. HändelHAENDELHANDELHAndelHaadelHadelHaedelHaendeHaendelHaendel G. F.Haendel G.F.Haendel Georg FriedrichHandeHandelHandel G. F.Handel G.F.Handel Georg FriederichHandel Georg FriedrichHandel'sHandel, G.F.Handel, Georg FriderichHandel, George FrederickHandel, George FridericHandel-HalvorsenHandellHandel’sHandlHandleHandëlHanelHarrisHaydnHaändelHaêndelHaëndelHeandelHendelHendel, G. F.HendelisHndelHäendelHändelHändel G. FHändel Georg FriedrichHändel'sHändel, G. F.Händel, Georg FriedrichHändlHændelHœndelJ F HandelJ. F. HaendelJ. F. HandelJ. F. HändelJ. Frederic HandelJ.F. HaendelJ.F. HandelJ.F. HändelJohann Friedrich HändelJorge Federico HandelJorge Federico HändelJorge Frederico HaendelMr HandelMr. HandelThe Magnificent Mr. HandelhandhandelvΧέντελΧαίντελІ. Г. ГендельА. ГендельГ . ГендельГ. ГендельГ. ГенделяГ. Ф ГендельГ. Ф. ГендельГ. Ф. ХендлГ. ФенделыГ. Фр. ГендельГ. Фр. ХенделГ.ГендельГ.Ф. ГендельГ.Ф. ХенделГ.Ф.ГендельГендельГендель, Ф.Георг ГендельГеорг Фредерик ГендельГеорг Фридрих ГендельГеорг Фридрих Гендель (1685-1759)Георг Фридрих ХендлГеорг Фрідріх ГендельГеорг ХендельИ. ГендельТ.Ф. ХенделФ. ГендельФр. ХендельХандлХенделג'ורג' פרידריך הנדלהנדלゲオルク・フリードリヒ・ヘンデルゲオルク・フリードリヒ・ヘンデルGeorg-Friedrich Haendelジョージ・フリデリック・ヘンデルヘンデル亨德尔韓德爾헨델 + +375341Bob DaughertyAmerican jazz bassist.Needs VoteBob DaughteryBob DoughertyRobert DaughertyRobert DoughertyRobert W. DaughertyWoody Herman And His OrchestraToshiko Akiyoshi TrioWoody Herman And The Swingin' HerdHubert Laws GroupThe Lou Levy SextetToshiko Akiyoshi Quartet + +375379Sonny Stitt BandCorrectSonny StittSonny Stitt & BandSonny Stitt And His BandSonny Stitt’s QuintetArt BlakeyGene AmmonsSonny StittJunior ManceTommy PotterJo JonesBennie GreenDuke JordanEugene WrightMatthew GeeBill MasseyJoe NewmanJohn HuntShadow WilsonErnie ShepardHumberto MoralesWes LandersLarry TownsendJohn Houston + +375380George Shearing TrioCorrectDas George Shearing TrioDas George-Shearing-TrioThe George Shearing TrioGeorge ShearingHarvey MasonRay BrownAndrew SimpkinsMarvin "Smitty" SmithVernell FournierNiels-Henning Ørsted PedersenIsrael CrosbyLouis StewartRusty JonesJack FallonNeil SwainsonNorman Burns (2) + +375381Leo Parker's All StarsCorrectLeo Parker All StarsLeo Parker And His All StarsGene AmmonsDexter GordonCharlie RouseJunior ManceJ.J. JohnsonCurly RussellHank JonesHoward McGheeEugene WrightJoe NewmanSir Charles ThompsonAl LucasShadow WilsonLeo ParkerJack ParkerCharles Williams (7) + +375436Herbie Mann QuartetCorrectHerbie MannHerbie Mann's QuartetHerbie MannLeroy VinnegarHarold GranowskyJoe PumaBill Douglass (2)Benny WeeksLee RockeyCarl Perkins (4)Herbert SolomonKeith Hodgson (4) + +375438Zoot Sims SextetCorrectZoot SimsJean-Louis VialeFrank RosolinoJimmy GourleyHenri RenaudDon Bagley + +375439Lee Konitz SextetCorrectMiles DavisMax RoachTommy PotterArnold FishkinBilly BauerLee KonitzSal Mosca + +375440Lee Konitz QuintetCorrectThe Lee Konitz QuintetКвинтет Л. КонитцаRoland KovacJack DeJohnetteJoe ChambersArnold FishkinWarne MarshDenzil BestLee KonitzStan LeveyEddie GomezRufus ReidBob MoverJimmy GourleyJimmy MadisonDick KatzMarshall BrownSal MoscaAlbert DaileyBen AronovHenri RenaudTed BrownDon BagleyJeff MortonMike MooleKarl SannerJohnny Fischer + +375441Zoot Sims QuartetCorrectThe Zoot Sims FourThe Zoot Sims QuartetZoot SimsZoot Sims And His QuartetZoot Sims FourZoot Sims Quartet/QuintetZoot Sims' QuartetArt BlakeyGrady TateKenny ClarkePierre MichelotJohn MarshallMilt HintonCurly RussellDon LamondZoot SimsHank JonesJohn Lewis (2)Gus JohnsonGerald WigginsStan TraceyJohn Williams (5)Clyde LombardiJackie DouganLouis BellsonNabil TotahKenny NapperHarry Biss + +375460Juice NewtonJudy Newton-GoodspeedAmerican country singer, born Judith Kay Newton on 18 February 1952, Lakehurst, New Jersey, U.S.A. +In 1978, Newton legally changed her name from "Judy Kay Newton" to "Juice Newton" ("Juice" having long been her nickname). +Formed group Dixie Peach, which later evolved into Silver Spur. +Newton married polo star and coach Tom Goodspeed in 1985, the couple had two children, Jessica and Tyler. +Now divorced, Newton lives in San Diego, California. +Besides continuing in the music business, Newton works as a horse trader. She deals mostly in European breeds.Needs Votehttps://www.allmusic.com/artist/juice-newton-mn0000837946/biographyhttp://juicenewton.net/http://www.juicenewtonfanclub.com/http://www.cmt.com/artists/az/newton_juice/artist.jhtmlhttp://www.myspace.com/juicenewtonhttp://en.wikipedia.org/wiki/Juice_NewtonJ. NewtonJ.NewtonJoice NewtonJucie NewtonJuicy NewtonKay JudyNewtonジュース・ニュートン茱絲紐頓쥬스 뉴튼 + +375876Stan Getz QuintetCorrectQuinteto De Stan GetzStan GetzStan Getz & His QuintetStan Getz QuintetsStan Getz QuintettStan Getz QuintetteThe Stan Getz QuintetThe Stan Getz QuintetteHorace SilverStan GetzCharles MingusGene RameyTommy PotterConnie KayAndy LaverneRoy HaynesBobo StensonAl HaigTiny KahnLeonard GaskinBob BrookmeyerKai WindingCharlie PerryDuke JordanNelson BoydBill CrowBrian BrombergChuck LoebJohn Williams (5)Bill AnthonyFrank IsolaClyde LombardiJimmy RaneyAl LevittTeddy KotickBengt HallbergJoe CallowayWalter BoldenGunnar JohnsonLars GullinJack NorenYngve ÅkerbergKenneth FagerlundVictor Jones (2)Erik Nordström (2)Phil Brown (23) + +375877James Moody QuintetCorrectJames Moody And His QuintetJames Moody's QuintetJames MoodyNat PeckBernard PeifferLucien SimoensJack NorenLeppe SundevallYngve ÅkerbergThore Swanerud + +375977Chubby Jackson And His All Stars BandCorrectChubby Jackson & His All Stars BandChubby Jackson All Star BandChubby Jackson's All Star BandChubby Jackson's All StarsGerry MulliganChubby Jackson + +375978Gerry Mulligan QuartetCorrectGerry MulliganGerry Mulligan 4Gerry Mulligan And His QuartetGerry Mulligan Quartet, TheGerry Mulligan QuartettGerry Mulligans KvartettMulliganMulligan QuartetQuartetQuarteto De Gerry MulliganThe Fabulous Gerry Mulligan QuartetThe Gerry Mulligan QuartetThe Legendary QuartetThe Original Gerry Mulligan QuartetКвартет Дж. МаллигенаChet BakerGerry MulliganHampton HawesChico HamiltonArt FarmerJoe BenjaminRed MitchellDave BaileyHenry GrimesBen TuckerJoe MondragonLarry BunkerBob BrookmeyerCarson SmithDonald BaileyBill CrowGus JohnsonMichael CarvinBill MaysFrank IsolaHenry FranklinTed RosenthalJon EardleyBob WhitlockBill CharlapDonn TrennerDean Johnson (3)Ron VincentRich DeRosaPeter AxelssonRonnie Gardener + +375979Paul Quinichette QuintetCorrectPaul QuinichetteCount BasieWalter PageFreddie GreenGus JohnsonPaul QuinichetteSkeeter BestJimmy GoldenJimmy RichardsonLes Erskine + +375980Paul Quinichette And His OrchestraCorrectPaul Quinichette And His Orch.The Paul Quinichette OrchestraCharlie FowlkesErnie WilkinsJoe NewmanPaul QuinichetteHenry CokerMarshall RoyalBobby Tucker + +375981Gerry Mulligan TentetteUS jazz ensemble in the 1950sNeeds VoteGerry Mulligan And His TentetteGerry Mulligan And His Ten-TetteGerry Mulligan And His TentetteGerry Mulligan E Sua "Tentette"Gerry Mulligan TentetGerry Mulligan Y Sus DiezGerry Mulligan y Su TentetteTentetteThe Gerry Mulligan TenetteThe Gerry Mulligan TentetThe Gerry Mulligan TentetteChet BakerGerry MulliganChico HamiltonBud ShankJoe MondragonLarry BunkerPete CandoliBob EnevoldsenRay SiegelJohn GraasDon Davidson + +376031Paul EsswoodEnglish alto & countertenor vocalist and conductor. +Born June 6, 1942 in West Bridgford, England.Needs Votehttp://en.wikipedia.org/wiki/Paul_EsswoodEsswodEsswoodP. EsswoodPro Cantione Antiqua + +376039Bud Shank - Shorty Rogers Quintet[a=The Bud Shank Quintet] + [a=Shorty Rogers] +Needs VoteBud Shank & Shorty RogersBud Shank And Shorty RogersThe Bud Shank - Shorty Rogers QuintetBud ShankJimmy RowlesShorty RogersHarry BabasinRoy Harte + +376040Art Pepper QuartetCorrectArt Pepper Quartet [Uncredited]Art Pepper Quartet' 64Art Pepper QuartetteThe Art Pepper Quartetアート・ペッパー・カルテットHampton HawesFrank StrazzeriPete JollyMarty PaichArt PepperLeroy VinnegarWynton KellyJimmy CobbGeorge CablesChuck FloresSonny ClarkGeorge MrazPaul Chambers (3)Stan LeveyBen TuckerRuss FreemanJoe MondragonLarry BunkerAl FosterDavid Williams (2)Milcho LevievFrank CappBill GoodwinTerry ClarkeHarry BabasinDavid PiltchBuddy ClarkCarl BurnettBobby WhiteBob WhitlockHoward RumseyGary FrommerHersh HamelBernie SenenskyCarl Perkins (4) + +376042Shorty Rogers And His GiantsCorrectShorty Rodgers & His GiantsShorty Roger E I Suoi GiantsShorty Rogers & His GiantsShorty Rogers & The GiantsShorty Rogers And His "Giants"Shorty Rogers And His Afro Cuban Jazz All Star Big BandShorty Rogers And His Augmented "Giants"Shorty Rogers And His GiantShorty Rogers And His Giants With Shelly ManneShorty Rogers And His OrchestraShorty Rogers And His Orchestra Featuring TheGiantsShorty Rogers And His « Giants »Shorty Rogers And The GiantsShorty Rogers E I Suoi GiantsShorty Rogers E Seus "Giants"Shorty Rogers Et Son OrchestreShorty Rogers GiantsShorty Rogers Y Sus GigantesShorty Rogers y Sus GigantesThe GiantsThe Shorty Rogers Giantsショーティ・ロジャースとのジャイアンツショーティ・ロジャースと彼のジャイアンツトランペットショーティ・ロジャースThe Giants (3)Shorty Rogers QuintetChet BakerGerry MulliganMaynard FergusonHampton HawesChuck GentryPete JollyArt PepperCharlie MarianoBarney KesselJohn BestBud ShankHarry EdisonJimmy GiuffreHerb GellerPepper AdamsStan LeveyShelly ManneBill HolmanCurtis CounceJimmy RowlesLawrence MarableDon FagerquistMel LewisJoe MondragonLarry BunkerJack MontroseRed CallenderWardell GrayBill HoodBob CooperChico GuerreroAl PorcinoConte CandoliLou LevyFrank CappFrank RosolinoGeorge RobertsPete CandoliShorty RogersMilt BernhartModesto DuranRalph PeñaHarry BettsBuddy ChildersBuddy ClarkBob EnevoldsenMarshall CramDon BagleyJohn GraasPaul SarmentoGene EnglundSam RiceCarlos RosarioChach GonzalesGary Lefebvre + +376043Chet Baker EnsembleCorrectChet Baker E Il Suo ComplessoThe Chet Baker EnsembleChet BakerHerb GellerShelly ManneRuss FreemanJoe MondragonJack MontroseBob Gordon (2) + +376044Chet Baker - Stan Getz QuartetCorrectStan Getz Chet Baker QuartetStan GetzChet Baker + +376045Art Pepper QuintetCorrectThe Art Pepper QuintetFrank StrazzeriPete JollyArt PepperLeroy VinnegarJoe Romano (2)Frank ButlerShelly ManneRuss FreemanJack SheldonJimmy BondChuck BerghoferNick Ceroli + +376069The Ennio Morricone OrchestraThe orchestra conducted by [a15900] since the late 1950s.Needs VoteE. Morricone , La Sua Orch.E. Morricone E La Sua OrchE. Morricone E La Sua Orch.E. Morricone E La Sua OrchestraE. Morricone E Su OrquestaE. Morricone E Sua OrchestraE. Morricone Orch.E. Morricone Orch. & CoroE. Morricone Orch. & Coro.E. Morricone Su Orq. Y CoroE. Morricone Y Su OrchestraE. Morricone Y Su Orq.E. Morricone Y Su OrquestaE. Morricone e la sua Orch.E. Morricone, E La Sua Orch.E. Morricone, La Sua OrchestraE. Morricone, La Sua Orch.E. Morricone, La Sua OrchestraE. Morricone, La Sua Orchestra E CoroE. Morricone, La Sua Orchestra*E. Morricone, Su OrquestaE. Morricone, Y Su OrquestaE. Morriconeela Sua OrchestraE.Morricone E La Sua OrchestraE.Morricone, La Sua OrchestraEnnio Morricon, La Sua OrchestraEnnio MorriconeEnnio Morricone & His OrchestraEnnio Morricone & Orch.Ennio Morricone & OrchestraEnnio Morricone & Son Orch.Ennio Morricone & Sua OrquestraEnnio Morricone & his Orch.Ennio Morricone , Sua OrquestraEnnio Morricone And His Orch.Ennio Morricone And His OrchestraEnnio Morricone And OrchestraEnnio Morricone E La Sua Orch.Ennio Morricone E La Sua OrchestraEnnio Morricone E La Sua Orchestra E CoroEnnio Morricone E S/ OrquestraEnnio Morricone E Sua OrchestraEnnio Morricone E Sua OrquestraEnnio Morricone E Sua OrquetraEnnio Morricone En ZIjn OrkestEnnio Morricone En Zijn OrkestEnnio Morricone Et Sa OrchestreEnnio Morricone Et Son OrchestreEnnio Morricone La Sua Orch & CoroEnnio Morricone La Sua Orch.Ennio Morricone La Sua OrchestraEnnio Morricone La Sua Orchestra = エンニオ・モリコーネ楽団Ennio Morricone OrchesterEnnio Morricone OrchestraEnnio Morricone Orquesta Y CoroEnnio Morricone Sua OrquestraEnnio Morricone U.S. OrchesterEnnio Morricone Und Sein OrchesterEnnio Morricone Y Su OrchestaEnnio Morricone Y Su Orq.Ennio Morricone Y Su OrquestaEnnio Morricone e la sua Orch.Ennio Morricone e la sua OrchestraEnnio Morricone e la sua OrechestraEnnio Morricone És EgyütteseEnnio Morricone És ZenekaraEnnio Morricone's Orch.Ennio Morricone, E La Sua OrchestraEnnio Morricone, La Sua OrchestraEnnio Morricone, La Sua Orch.Ennio Morricone, La Sua OrchestraEnnio Morricone, Sein Chor Und OrchesterEnnio Morricone, Son OrchestreEnnio Morricone, Su OrquestaEnnio Morricone, la sua orchestraEnnio Morriconi, La Sua OrchestraEnrico Morricone, La Sua OrchestraHis OrchestraLa Grande Orchestra Di Ennio MorriconeLa Orquesta de Ennio MorriconeMorricone E La Sua OrchestraOrch. Di E. MorriconeOrch. E. MorriconeOrch. Ennio MorriconeOrch. MorriconeOrchester Ennio MorriconeOrchester: Ennio MorriconeOrchestra -Ennio Morricone, La Sua OrchestraOrchestra Conducted By Ennio MorriconeOrchestra Di E. MorriconeOrchestra Di Ennio MorriconeOrchestra Diretta Da Ennio MorriconeOrchestra Diretta E. MorriconeOrchestra E. MorriconeOrchestra Ennio MorriconeOrchestra diretta dal M.o Ennio MorriconeOrchestra: Ennio MorriconeOrchestre Ennio MorriconeOrkestar E. MorriconeOrkestar Ennia MorriconeaOrq. De Ennio MorriconeOrq. Enio MorriconeOrq. Ennio MorriconeOrquesta Ennio MorriconeOrquestra De Ennio MorriconeОркестр П/у Э. Морриконеエンニオ・モリコネ楽団エンニオ・モリコーネエンニオ・モリコーネ楽団Ennio Morricone + +376089Clifford Brown SextetCorrectClifford "Brownie" Brown SextetSextetThe Clifford Brown SextetArt BlakeyCharlie RousePierre MichelotPercy HeathGigi GryceClifford BrownJohn Lewis (2)Jean-Louis VialeJimmy GourleyHenri Renaud + +376090The Swedish All StarsSwedish jazz "all star" group, recording in the first half of the 1950s. +The same credit was also used for a 1980s group that included two of the members of the 1950s group.Needs VoteSwedish All StarsSwedish All Stars (Estrad Poll Winners)Swedish All-StarsSwedish-All StarsThe Swedish All Star OrchestraThe Swedish All-StarsThe Swedish CrownsGeorg RiedelEgil JohansenRune CarlssonSimon BrehmRune GustafssonBengt HallbergÅke PerssonJan AllanGunnar JohnsonLars GullinJack NorenPutte WickmanNisse SandströmArne DomnérusKenneth Fagerlund + +376091Charlie Parker Big BandCorrectCharlie Parker W. Big BandThe Big BandCharlie ParkerRay BrownOscar PetersonBernie PrivinDanny BankDon LamondFlip PhillipsFreddie GreenAl PorcinoLou McGarityBill HarrisJimmy MaxwellMurray WilliamsHank RossHarry TerrillCarl PooleBart Varsalona + +376092Lou Donaldson - Clifford Brown QuintetCorrectLou Donaldson / Clifford Brown QuintetLou Donaldson QuintetLou Donaldson/Clifford Brown QuintetLou DonaldsonPercy Heath"Philly" Joe JonesClifford BrownElmo Hope + +376250Greg MurphyJazz pianistNeeds Votehttps://gregmurphyjazz.com/homePrima MateriaRaphael CruzRashied Ali QuintetChico AlvarezGreg Murphy Trio + +376337Dizzy Gillespie - Stan Getz SextetCorrectDiz And GetzDizzy Gillespie / Stan Getz SextetDizzy Gillespie Stan Getz SextetThe Dizzy Gillespie - Stan Getz SextetThe Dizzy Gillespie - Stan Getz SextetteThe Dizzy Gillespie-Stan Getz SextetteThe Gillespie-Getz SextetStan GetzDizzy GillespieMax RoachRay BrownOscar PetersonHerb Ellis + +376385Chick Webb And His Little ChicksCorrectChick Webb & His Little ChicksThe Little ChicksGarvin BushellChick WebbWayman CarverTommy FulfordBeverly PeerChauncey Haughton + +376498The Boogie Woogie TrioThe Boogie Woogie Trio was a name loosely applied to various ensembles that included one or more of the boogie woogie pianists Pete Johnson, Albert Ammons and Meade Lux Lewis. There were four tracks recorded with Harry James that also added Johnny Williams on bass and Eddie Dougherty on drums. + +Here are examples of the trio: +Brunswick 8318 Side A and 8350 Side A: Pete Johnson, Johnny Williams and Eddie Dougherty +Brunswick 8318 Side B and 8350 Side B: Albert Ammons, Johnny Williams and Eddie Dougherty +Storyville STCD8026 and Polydor ‎537 215-2: Pete Johnson, Albert Ammons, Meade Lux LewisCorrectB.W. TrioBoogie Woogie BoysBoogie Woogie TrioThe Boogie Woogie BoysThe Boogie Woogie Boys (Albert Ammons, Pete Johnson & Meade Lux Lewis)The Boogie Woogie BoysJohnny WilliamsPete JohnsonAlbert AmmonsEddie DoughertyMeade "Lux" Lewis + +376539Lionel Hampton And His SeptetCorrectHamp's SeptetHampton & His SeptetLionel Hampton & His SeptetLionel Hampton SeptetLionel Hampton SeptetteLionel Hampton Und Sein SeptettLionel Hampton's SeptetThe Lionel Hampton SeptetLionel HamptonMilt BucknerArnett CobbMarshall RoyalJack McVeaGeorge JenkinsRudy RutherfordWendell CulleyFred RadcliffeBilly MackelCharles Harris (2)Vernon KingVernon AlleyJoe Morris (2)John MeheganGeorge Jones (5)Herbie Fields + +376540Lionel Hampton And His QuartetCorrectHamp's QuartetLionel HamptonLionel Hampton & His Blues QuartetLionel Hampton & His QuartetLionel Hampton QuartetLionel Hampton Quartett, TheLionel Hampton Und Sein QuartettLionel Hampton's QuartetThe Lionel Hampton QuartetThe Lionel Hampton QuartettBuddy RichLionel HamptonMilt BucknerRay BrownOscar PetersonGeorge JenkinsBilly MackelPeter BadieCharles Harris (2)Dan Burley + +376558Christian GaubertChristian Lucien Joseph GaubertFrench composer, pianist, arranger and band leader. Collaborations include [a=Charles Aznavour], [a=Mireille Mathieu], [a=Gilbert Bécaud], [a=Johnny Hallyday], [a=Serge Gainsbourg], [a=Pascal Auriat], and [a=Gérard Lenorman] among others.Needs Votehttps://www.christiangaubert.com/https://fr.wikipedia.org/wiki/Christian_Gauberthttps://www.imdb.com/name/nm0309874/C. GauberC. GaubertC.GaubertCH. GaubertCh GaubertCh. GauberCh. GaubertCh. GoubertChr. GaubertChris GaubertChristian GauberD. GauberG GaubertG. GaubertGaubertGouberJaubertLast Exit (Christian Gaubert)Кр. ГобертКристиан ГоберChristian Gaubert Et Son OrchestreLigne Sud Trio + +376566The Duke's MenCorrectDie Duke's MenDuke's MenThe Ellington MenOscar PettifordRed CallenderHarry CarneyRay NanceSonny GreerOtto HardwickJimmy Jones (3)Fred GuyBarney BigardTaft JordanSidney CatlettHenderson ChambersDudley Brooks + +376567Shorty Rogers And His OrchestraCorrectOrkestar Shorty RogersShorty Roger's OrchestraShorty Rogers & His OrchestraShorty Rogers And His Orch.Shorty Rogers Con Su OrquestaShorty Rogers E La Sua OrchestraShorty Rogers E Sua OrquestraShorty Rogers Et Son OrchestreShorty Rogers OrchestraShorty Rogers With His OrchestraShorty Rogers Y Su Orq.Shorty Rogers Y Su OrquestaShorty Rogers y Su OrquestaShorty Rogers' Orch.Shorty Rogers' OrchestraShorty Rogers’ OrchestraThe Shorty Rogers Orchestraショーティ・ロジャース楽団Maynard FergusonHoward RobertsChuck GentryPaul HornMarty PaichArt PepperKenny ShroyerJimmy KnepperBarney KesselBud ShankHarry EdisonJimmy GiuffreHerb GellerZoot SimsShelly ManneBill HolmanCurtis CounceBill PerkinsDon FagerquistMel LewisJoe MondragonLarry BunkerBob CooperDick NashOllie MitchellAl PorcinoConte CandoliFrank RosolinoPete CandoliConrad GozzoRay LinnShorty RogersMilt BernhartJohn HowellGene EstesRay TriscariHarry BettsJohn HalliburtonBob EnevoldsenRichie KamucaBob Gordon (2)Clyde ReasingerJohn GraasPaul SarmentoGene EnglundTom Reeves (2) + +376594Mildred Bailey And Her Swing BandCorrectHer Swing BandMildred Bailey & Her Swing BandDick McDonoughMildred BaileyArtie BernsteinEddie DoughertyChris Griffin (3) + +376851Ella Fitzgerald And Her Savoy EightAmerican Jazz ensemble on stage with [a31615], active between 1936 and 1939, when they dissolved. It was a marketing built orchestra, which recruited from members of [a342796].Needs VoteElla Fitzgerald & Her Savoy EightElla Fitzgerald And The Chick Webb's Savoy EightElla Fitzgerald Con Los Chick Webb's Savoy EightElla Fitzgerald Savoy EightElla Fitzgerald With Her Savoy EightElla Fitzgerald With The Savoy EightElla With Her Savoy EightHer Savoy EightThe Savoy EightElla FitzgeraldLouis JordanChick WebbBobby JohnsonHilton JeffersonSandy WilliamsTaft JordanTommy FulfordBeverly PeerTeddy McRaePete Clark (2)John Trueheart + +376853Horace Henderson And His OrchestraCorrectHorace Henderson & His Orch.Horace Henderson & His OrchestraHorace Henderson And His Orch.Horace Henderson OrchestraHorace Henderson's OrchestraOrchestra Conducted By Horace HendersonColeman HawkinsRussell ProcopeJohn KirbyRussell SmithHorace HendersonBernard AddisonClaude JonesWalter JohnsonHilton JeffersonBobby StarkDickie WellsHenry "Red" AllenBob DorseyEddy Williams (2) + +376854The Dixieland Jazz Group Of NBC's Chamber Music Society Of Lower Basin StreetCorrectDixieland Jazz Group Of NBC's Chamber Music Society Of Lower Basin StreetHenry Levine & The Dixieland Jazz Group Of Nbc's Chamber MusicN.B.C. Chamber Society Of Lower Basin StreetNBC's Chamber Music Society Of Lower Basin StreetThe Chamber Music Society Of Lower Basin StreetThe Dixieland Group Of NBC's Chamber Music Society Of Lower Basin StreetThe Dixieland Jazz GroupThe Dixieland Jazz Group Of "NBC's Chamber Music Society Of Lower Basin Street"The NBC Dixieland Jazz GroupThe NBC Dixieland Octet + +376855Ella Fitzgerald And Her Famous OrchestraNeeds VoteElla And Her Famous OrchestraElla Fitzgerald & Her OrchestraElla Fitzgerald & Her Famous Orch.Ella Fitzgerald & Her Famous OrchestraElla Fitzgerald & Her OrchestraElla Fitzgerald & OrchestraElla Fitzgerald Accompanied By OrchestraElla Fitzgerald And Her OrchestraElla Fitzgerald And OrchestraElla Fitzgerald Con Su Famosa OrquestaElla Fitzgerald Et Son OrchestreElla Fitzgerald OrchestraElla Fitzgerald With & Her OrchestraElla Fitzgerald With Her Famous OrchestraElla Fitzgerald With Her OrchestraElla Fitzgerald With Orch. Accomp.Ella Fitzgerald With OrchestraElla Fitzgerald Y Su OrquestaElla Fitzgerald and Her Famous OrchestraElla Fitzgerald's OrchestraElla Fitzgerlald And Her OrchestraChick Webb And His OrchestraThe Jungle Band (3)Ella FitzgeraldIrving RandolphEddie BarefieldGarvin BushellGeorge DorseyHilton JeffersonBobby StarkSandy WilliamsTaft JordanNat StoryWayman CarverTommy FulfordBeverly PeerDick VanceChauncey HaughtonTeddy McRaeUlysses LivingstonEarl HardyGeorge Matthews (2)Pete Clark (2)Lonnie Simmons (2)Bill BeasonSam SimmonsJimmy ArcheyJohn TrueheartJohn McConnellRoger RamirezJesse PriceJohn Haughton + +376875Tony SansoneAnthony J. SansoneTony Sansone currently runs 'Angela Ludwig Music', a New York based music production and artist management company. He is co-writer of the smash hit "Walk Away Renee" (recorded by Left Banke and Four Tops).Correcthttp://www.myspace.com/tonysansonehttp://www.angelaludwigmusic.com/A. SansoneA.SansoneAJ SansoneAnthony SansoneAntony SansoneSamsonSamsoneSansomSansomeSansoneSansone Anthony JSansoniSanzoneSarsoneT SansomeT SansoneT, SansoneT. SamsomeT. SansomeT. SansonT. SansoneT. SarsoneT.SansoneTony SansomeTony Sanson + +376961Dave Barbour OrchestraCorrectDave Barber's OrchestraDave Barbor And His OrchestraDave Barbour & His Orch.Dave Barbour & His OrchestraDave Barbour And His BraziliansDave Barbour And His Orch.Dave Barbour And His Orch. And Male ChorusDave Barbour And His OrchestraDave Barbour And His Orchestra, With Male ChorusDave Barbour And OrchestraDave Barbour And The BraziliansDave Barbour BandDave Barbour His OrchestraDave Barbour Samba-OrchestraDave Barbour Und Seinem OrchesterDave Barbour Y Su OrquestaDave Barbour and His OrchestraDave Barbour and his OrchestraDave Barbour's Orch.Dave Barbour's OrchestraDavid Barbour BandHis OrchestraOrchestraOrchestra Conducted By Dave BarbourThe Dave Barbour BandThe Dave Barbour OrchestraThe David Barbour BandPeggy LeeDave Barbour + +376962Paul Weston And His OrchestraNeeds Votehttps://adp.library.ucsb.edu/names/336729OrchOrch.Orch. Paul WestonOrchester Paul WestonOrchestraOrchestra By Paul Wetstein (Weston)Orchestra Conducted By Paul WestonOrchestra Directed By Paul WestonOrchestra Diretta Da Paul WestonOrchestra Of Paul WestonOrq. De Paul WestonOrquesta De Paul WestonOrquestra De Paul WestonOrquestra de Paul WestonP. Weston & His Orch.P. Weston & His OrchestraP. Weston And His Orch.P. Weston Orch.P. Weston Y Su Orq.P. Weston, Orch.Paul The Paul Weston OrchestraPaul WestonPaul Weston E La Sua OrchestraPaul Weston & HIs Orch.Paul Weston & His Orch,Paul Weston & His Orch.Paul Weston & His OrchestraPaul Weston & His Orchestra With Vocal QuartetPaul Weston & His V Disc OrchestraPaul Weston & His. Orch.Paul Weston & OrchPaul Weston & OrchestraPaul Weston & Son OrchestrePaul Weston And His Music From HollywoodPaul Weston And His Music Of HollywoodPaul Weston And His Orch.Paul Weston And His Orchestra And QuartetPaul Weston And His V Disc OrchestraPaul Weston And OrchestraPaul Weston E La Sua OrchestraPaul Weston E La Sua Musica Da HollywoodPaul Weston E La Sua Orch.Paul Weston E La Sua OrchestraPaul Weston E La Sua OrquestraPaul Weston E OrquestraPaul Weston E Sua OrquestraPaul Weston E Sua OrquestraPaul Weston E Sus Orq.Paul Weston E la Sua Orch.Paul Weston E la Sua OrchestraPaul Weston En Zijn OrkestPaul Weston Et Son OrchestraPaul Weston Et Son OrchestrePaul Weston His Piano And OrchestraPaul Weston Mit Seinem OrchesterPaul Weston Og Hans Ork.Paul Weston Og Hans OrkesterPaul Weston Orch.Paul Weston OrchestraPaul Weston Orchestra With ChorusPaul Weston OrkestereineenPaul Weston Sa Svojim OrkestromPaul Weston U. S. OrchesterPaul Weston U.S. OrchesterPaul Weston Und Sein OrchesterPaul Weston Und Seinem OrchesterPaul Weston With His Orch.Paul Weston With His OrchestraPaul Weston With OrchestraPaul Weston Y Su OrquestaPaul Weston Y Su OrquestraPaul Weston and His OrchestraPaul Weston and His Orchestra And QuartetPaul Weston e la sua orch.Paul Weston u. s. OrchesterPaul Weston und seinem OrchesterPaul Weston y Su Musica de HollywoodPaul Weston y Su OrquestaPaul Weston y su OrquestaPaul Weston's Orch.Paul Weston's OrchestraPaul Weston's Ork.Paul Weston's OrkesterPaul Weston, His Orch.Paul Weston, His Orchestra And ChorusPaul Westonin OrkesteriPaul Westons Ork.Paul Westons OrkesterPaul Westons ork.Paul Weston’s OrchestraPaul Wetstein & His OrchestraPaul Wetstein's OrchestraThe Paul Weston OrchestrThe Paul Weston OrchestraWeston & His Orch.ポール・ウエストン管弦楽団Paul Wetstein And His OrchestraPeggy LeeHarry EdisonBabe RussinPaul Weston (2)George Van EpsFrank BeachBill SchaefferDon LodiceFred StulceNick FatoolMilt RaskinZeke ZarchyElmer SmithersMatt DennisLeonard HartmanHarold LawsonJohn Ryan (18)Allan Thompson (2)Harry Finkelman + +376963Peggy Lee OrchestraCorrectPeggy Lee & OrchestraPeggy Lee And OrchestraPeggy Lee With Orch.Peggy Lee With OrchestraPeggy Lee with Orchestraペギー・リーとヴィクター・ヤング楽団Peggy Lee + +376964DeLuxe All Star BandCorrectDe Luxe All StarsThe De Luxe All StarsDizzy GillespieOscar PettifordClyde HartWardell GrayClaude JonesTrummy YoungJimmy PowellBudd JohnsonAl KillianRudy RutherfordShadow WilsonFreddie WebsterShorty McConnellConnie WainwrightThomas CrumpHoward Scott (5) + +376984Paschal ByrneMastering engineer and owner of [l=The Audio Archiving Company].Needs VotePascal ByrnePaschalPaschal BynrePaschal Byrne (The Audio Archiving Company Ltd.)Paschal J. ByrnePasqual Byrne + +377041Tab Smith OrchestraCorrectHis OrchestraTab "Tubby" Smith And His OrchestraTab Smith & His OrchestraTab Smith & OrchestraTab Smith And His Orch.Tab Smith And His OrchestraTab Smith And OrchestraTab Smith Featuring The Tenor Sax And His BandTab Smith His Alto Sax And OrchestraTab Smith His Fabulos Alto And His OrchestraTab Smith His Fabulous Alto And BandTab Smith His Fabulous Alto And ComboTab Smith His Fabulous Alto And His BandTab Smith His Fabulous Alto And His OrchestraTab Smith His Fabulous Alto And OrchestraTab Smith His Fabulous Alto Sax And BandTab Smith His Fabulous Alto Sax And ComboTab Smith His Fabulous Alto Sax And His BandTab Smith His Fabulous Alto Sax And His OrchestraTab Smith His Fabulous Alto Sax And OrchestraTab Smith His Famous Alto And OrchestraTab Smith His Velvet Tenor And OrchestraTab Smith His Velvet Tenor and OrchestraTab Smith Orch.Tab Smith's OrchestraTab Smith, His Fabulous Alto And ComboTab Smith, His Fabulous Alto And His OrchestraTab Smith, His Fabulous Alto And OrchestraTed Smith's OrchestraThe Tab Smith's OrchestraTubby "Tab" Smith & His Orch.Tubby "Tab" Smith And His OrchestraTubby "Tab" Smith And his OrchestraUnknown ArtistJohnny WilliamsSonny CohnWalter JohnsonTab SmithWilfred MiddlebrooksTeddy BrannonRed RichardsFrank GalbraithJohnny Hicks (2)Russell RoysterLarry Belton + +377043Rudy Martin TrioCorrectRudy Martin With His TrioRudy Martin's TrioThe Rudy Martin TrioBill SettlesRudy Martin + +377045Ken Lane SingersNeeds Votehttps://adp.library.ucsb.edu/names/325036Ken Lane Singers And OrchestraKen Lane Singers OrchestraLas Ken Lane SingersThe Ken Lane SingersThe Ken Lane Singers Orchestra + +377046Hal Mooney And His OrchestraCorrectHal Mooney & His Orch.Hal Mooney & His OrchestraHal Mooney & His Orchestra Including Jimmy JonesHal Mooney & Orch.Hal Mooney & OrchestraHal Mooney & Son OrchestreHal Mooney And OrchestraHal Mooney E La Sua OrchestraHal Mooney E Sua OrquestraHal Mooney Et Son OrchestreHal Mooney OrchHal Mooney Orch.Hal Mooney OrchestraHal Mooney Sa Svojim OrkestromHal Mooney Y Su OrquestaHal Mooney e S/ Orq.Hal Mooney's Orch.Hal Mooney's Orch. & ChorusHal Mooney's OrchestraHall Mooney Orchestra Incl. StringsHan Mooney And His OrchestraHank Mooney And His OrchestraHarold "Hal" Mooney Orch.Harold Mooney & His Orch.Harold Mooney & His OrchestraHarold Mooney & OrchHarold Mooney And His Orch.Harold Mooney And His OrchestraHarold Mooney E La Sua OrchestraHarold Mooney Orch.Harold Mooney OrchestraHarold Mooney's MusicHarold Mooney's Orch. & ChorusHarold Mooney's OrchestraLarge BandOrch. Conducted By Harold MooneyOrchestra Concucted By Hal MooneyOrchestra Cond. By Hal MooneyOrchestra Conducted By Hal MooneyOrchestra Conducted By Halrold MooneyOrchestra Conducted By Harold MooneyOrchestra Conducted By Harry MooneyOrchestra Conducted By Herold MooneyOrchestra conducted by Hal MooneyOrquestra Hal MooneyStudio OrchestraThe Hal Mooney OrchestraThe Harold "Hal" Mooney OrchestraHal Mooney + +377048Tony Mottola TrioCorrectT. MottolaThe Tony Mottola TrioTrioTrio Acc.Tony Mottola + +377049Sonny Burke And His OrchestraCorrectOrch. Sonny BurkeOrchester Sonny BurkeOrchestraOrchestra & Chorus Under Direction Of Sonny BurkeOrchestra Conducted By Sonny BurkeOrchestra Directed By Sonny BurkeOrchestra Of Sonny BurkeOrchestra Sonny BurkeOrchestre Sonny BurkeOrq. Sonni BurkeSonny Burke & His Orch.Sonny Burke & His OrchestraSonny Burke & OrchestraSonny Burke E Sua OrquestraSonny Burke Et Son OrchestreSonny Burke OrchesterSonny Burke OrchestraSonny Burke Und Sein OrchesterSonny Burke Y OrquestaSonny Burke's OrchestraSonny' Burke And His OrchestraThe Orchestra Of Sonny BurkeSonny BurkeDon Raffell + +377050Axel Stordahl OrchestraCorrectAlex Stordahl & OrchestraAlex Stordahl And His OrchestraAlex Stordahl E La Sua OrchestraAlex Stordahl's Orch.Alex Stordhal & His OrchestraAlex Stordhal And His OrchestraAlex Stordhal And OrchestraAnd His OrchestraAxel Sordahl & Orch.Axel StordahlAxel Stordahl & His OrchestraAxel Stordahl & Orch.Axel Stordahl & OrchestraAxel Stordahl & The Hit Parade OrchestraAxel Stordahl And His Orch.Axel Stordahl And His OrchestraAxel Stordahl And His Orchestra And ChorusAxel Stordahl And OrchestraAxel Stordahl E La Sua OrchestraAxel Stordahl E Sua OrquestraAxel Stordahl GroupAxel Stordahl OrkesterAxel Stordahl and His OrchestraAxel Stordahl and his OrchestraAxel Stordahl's OrchAxel Stordahl's Orch.Axel Stordahl's Orch. And ChorusAxel Stordahl's OrchestraAxel Stordahl's Orchestra And ChorusAxel Stordahls OrchestraAxel Stordahls Ork.Axel Stordahls OrkesterAxel Stordahlꞌs OrchestraAxel Stordhal And His OrchestraAxel Stordhal And OrchestraAxel Strordahl And His OrchestraAyel Strordahl And His OrchestraAzel Stordahl & His OrchestraChoir and Orchestra Under the diirection of Axel StordahlChoir, Orchestra Under The Direction Of Axel StordahlG. Axel StordahlHis OrchestraOrchOrch.Orch. Axel StordahlOrch. Axel StordhalOrch. M.o Axel StordahlOrch. Under The Direction Of Axel StordahlOrchester Axel StordahlOrchester Dirigent: Axel StordehlOrchestraOrchestra Axel StordahlOrchestra Axel StordhalOrchestra Cond. By Axel StordahlOrchestra Conducted By Alex StordahlOrchestra Conducted By Axel StordahlOrchestra Conducted By Axel StordhalOrchestra Directed By Alex StordahlOrchestra Directed By Axel StordahlOrchestra Under The Direction Of Axel StordahlOrchestra conducted by Axel StordahlOrquestra Sob A Direção De Axel StordahlStordahl Orchestra, TheThe Axel Stordahl OrchestraThe Stordahl OrchestraAxel Stordahl + +377051Pete Rugolo OrchestraCorrectHis OrchestraOrch. Cond. By Pete RugoloOrchesterOrchestraOrchestra Conducted By Pete RugoloOrchestra Of Pete RugoloOrchestra Pete RugoloOrkest o.l.v. Pete RugoloOrkesterOrquesta Dirigida Por Pete RugoloOrquesta Pete RugoloOrquesta de Pete RugoloPete Rugalo And OrchestraPete Ruggolo And His OrchestraPete RugoloPete Rugolo & His Orch.Pete Rugolo & His OrchestraPete Rugolo & His. Orch.Pete Rugolo & OrchPete Rugolo & Orch.Pete Rugolo & OrchestraPete Rugolo & his OrchestraPete Rugolo And All That BrassPete Rugolo And His Orch.Pete Rugolo And His OrchestraPete Rugolo And OrchestraPete Rugolo E La Sua OrchestraPete Rugolo E Sua OrquestraPete Rugolo His Orchestra And ChorusPete Rugolo OrchPete Rugolo OrchestrePete Rugolo U. S. OrchesterPete Rugolo Und Sein OrchesterPete Rugolo Y OrquestaPete Rugolo Y Su OrquestaPete Rugolo and His OrchestraPete Rugolo and his OrchestraPete Rugolo's OrchestraPete Rugolo, His Orch. And Cho.Pete Rugulo & His Orch.Pete Rugulo And All That BrassPete Rugulo And His OrchestraPete Rugulo's OrchestraPeter Rugolo & His OrchestraPeter Rugolo And His OrchestraThe Pete Rugolo OrchestraThe Pete Rugulo BrassPete Rugolo And All That BrassJack CostanzoMaynard FergusonHoward RobertsChuck GentryPaul HornAndré PrevinJ.J. JohnsonBuddy ColletteKenny ShroyerBarney KesselBud ShankRed MitchellAlvin StollerVido MussoJimmy GiuffreShelly ManneJimmy RowlesDon FagerquistRuss FreemanJoe MondragonLarry BunkerDave PellKai WindingPlas JohnsonBill HoodBob CooperAl ViolaGene CiprianoDick NashBud BrisboisOllie MitchellConte CandoliVincent DeRosaFrank RosolinoGeorge RobertsPete CandoliConrad GozzoRay LinnPete RugoloManny KleinShorty RogersGus BivonaTommy PedersonHerb HarperSkeets HerfurtHarry BabasinFrank BeachAl HendricksonJoe TriscariRussell BrownJohn Williams (5)Jack MarshallMilt BernhartJoe HowardPhil StephensHarry KleeUan RaseyHarry BettsBuddy ChildersJay McAllisterBob FitzpatrickClaude WilliamsonJohn RotellaTed Nash (2)Don PaladinoJohn GraasPaul SarmentoDick Noel (2)Whitey MitchellVern FrileyJoe CastroPerry LopezJohn AltwergerRobert Edward PringChico AlvarezRuss CheeverRocky ColuccioCappy LewisJoe Megro + +377098Peter PrommelGerman percussionistNeeds Votehttp://www.peterprommel.de/Nederlands Blazers EnsembleConcertgebouworkestRadio KamerorkestThe New Percussion Group Of AmsterdamNew KlookabilitiesRadio Kamer Filharmonie + +377170Andy Kirk And His OrchestraCorrectAndy KirkAndy Kirk & His OrchestraAndy Kirk And His Orch.Andy Kirk Orch.Andy Kirk OrchestraAndy Kirk Y Su OrquestaAndy Kirk's OrchestraKirkJoe WilliamsAndy KirkHoward McGheeJimmy ForrestFats NavarroClarence TriceHarry LawsonJohn HarringtonBooker CollinsBen ThigpenJune RichmondTalib DaawudTaswell BairdJoe Evans (3)Art CapehartHenry WellsReuben PhillipsJohn Lynch (4)Ben Smith (9)John Young (16)James D. KingMilton RobinsonClaude DunsonEd LovingBob Murray (3)John Taylor (41)Wayman RichardsonJohn Porter (9)Fortunatus "Fip" Ricard + +377171George Treadwell And His All StarsAmerican jazz orchestraNeeds VoteGeorge Treadwel's All StarsGeorge Treadwell & His All StarsGeorge Treadwell And His All-StarsGeorge Treadwell E I Suoi All StarsGeorge Treadwell E Seus All StarsGeorge Treadwell Y Sus All StarsThe George Treadwell AllstarsMiles DavisTony Scott (2)Mundell LoweBennie GreenFreddie GreenGeorge TreadwellJimmy Jones (3)Billy Taylor Sr.J.C. HeardBudd Johnson + +377172Ray Brown's OrchestraCorrectOrch. Ray BrownRay Brown & His OrchestraRay Brown And His OrchestraRay Brown OrchestraThe Ray Brown OrchestraRay Brown + +377174Sarah Vaughan And Her TrioLong-lasting American jazz ensemble featuring jazz legend [a8284]. Their recording peak was in the 1950's, but in the 1980's they were still performing live.Needs VoteSarah Vaughan & Her TrioSarah Vaughan & TrioSarah Vaughan And TrioSarah Vaughan With Her TrioSarah Vaughan With TrioSarah VaughanJoe BenjaminRoy HaynesRichard Davis (2)Jimmy Jones (3)John Malachi + +377176Gordon Jenkins And His OrchestraNeeds Votehttps://adp.library.ucsb.edu/names/318399Gorden Jenkins And His OrchestraGorden Jenkins Orch.Gordeon Jenkins' OrchestraGordon James & His OrchestraGordon Jenkin's OrchestraGordon JenkinsGordon Jenkins & His OrchGordon Jenkins & His Orch.Gordon Jenkins & His OrchestraGordon Jenkins & OrchGordon Jenkins & Orch.Gordon Jenkins & OrchestraGordon Jenkins And His Band And OrchestraGordon Jenkins And His Orch.Gordon Jenkins And OrchestraGordon Jenkins E Sua OrquestraGordon Jenkins Et Son OrchestreGordon Jenkins M. S. OrchesterGordon Jenkins Mit Seinem OrchesterGordon Jenkins Orch.Gordon Jenkins OrchestraGordon Jenkins U. S. OrchesterGordon Jenkins Und Sein OrchesterGordon Jenkins With His OrchestraGordon Jenkins Y Su OrquestaGordon Jenkins m. s. OrchesterGordon Jenkins y Su Orq.Gordon Jenkins' Orch.Gordon Jenkins' OrchesterGordon Jenkins' OrchestraGordon Jenkins's OrchestraGordon Jenkins's OrkesterGordon Jenkins, His OrchestraOrch. Cond. By G. JenkinsOrchester Gordon JenkinsOrchestraOrchestra Conducted By Gordon JenkinsOrchestra Directed By Gordon JenkinsOrchestra Gordon JenkinsOrchestra Of Gordon JenkinsOrchestra Under Direction Of Gordon JenkinsOrkest o.l.v. Gordon JenkinOrkestar Gordon JenkinsOrquesta de Gordon JenkinsOrquestra De Gordon JenkinsThe Gordon Jenkins OrchestraThe Orchestra Of Gordon JenkinsThe Orchestra of Gordon Jenkinsゴードン・ジェンキンス・オーケストラゴードン・ジェンキンス楽団Bobby HackettWilbur SchwartzHymie SchertzerJack LesbergArt DrelingerBernie LeightonIsrael BakerVincent DeRosaConrad GozzoBilly ButterfieldAllan ReussJack ChaneyBill SchaefferEddie Miller (2)Johnny BlowersGordon JenkinsRichard MarinoNick FatoolMarshall SossonPhil StephensDick CathcartMoe SchneiderWill BradleyMatty MatlockRaphael KramerUan RaseyDan LubeLou RadermanArnold KoblentzDavid FrisinaKurt ReherCarl KressJohn CaveCarl PooleTony MottolaPaul ShureYank LawsonVictor ArnoPaul RobynArmand KaproffRichard PerissiJoseph QuadriJoseph LivotiBeverly JenkinsMilt YanerDavid SterkinMischa RussellKathryn ThompsonWalter EdelsteinCharles La VereLouis KievmanBunny ShawkerThomas ParshleyStan WrightsmanJacques GasselinMurray KellnerWayne SongerGeorge ThowDick 'Dent' EcklesMeyer "Mike" RubinBruce Hudson (2)Charles Griffard + +377183Iris HiskeySoprano VocalistNeeds VoteIris HickeyIris HickseyIris HiskyThe Philip Glass EnsembleSchola Antiqua + +377704David StrangeDavid Strange is an English cellist and currently professor at the Royal Academy of Music and the University of London. He was principal cellist of the Royal Philharmonic Orchestra (1973-85) and of the Royal Opera House (1985-90).Needs VoteDavid StrangerThe Armada OrchestraRoyal Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent Garden + +377747Ben DaviesUK cellist and bass vocalist. + +Ben Davies was brought up and went to school in York, followed by studies at the University of Manchester and the Royal Academy of Music.Needs Votehttps://www.bcu.ac.uk/conservatoire/about-us/birmingham-conservatoire-tutors-and-staff/ben-daviesThe Sixteen + +378001Billy HarperBilly HarperAmerican jazz tenor saxophonist, flutist, vocalist and composer +Born January 17, 1943 in Houston, Texas + +Billy played with Gil Evans, Art Blakey, Thad Jones & Mel Lewis, Lee Morgan, Max Roach, Elvin Jones and others. +From 1973 recorded as a leader.Needs Votehttps://www.billyharpermusic.comhttps://billyharper.bandcamp.com/https://adp.library.ucsb.edu/names/106606https://en.wikipedia.org/wiki/Billy_HarperB. H.B. HarperB.H.Bill HarperHarperWilliam Harperビリーハーパービリー・ハーパーGil Evans And His OrchestraThe George Gruntz Concert Jazz BandFour ShellsThad Jones / Mel Lewis OrchestraMax Roach QuartetMcCoy Tyner Big BandThe CookersBilly Harper QuintetThe Billy Harper SextetCharles Tolliver Big BandRandy Weston's African RhythmsThe New York Saxophone MadnessThad Jones & Mel LewisUniversity Of North Texas Neophonic OrchestraGrachan Moncur III OctetMark Masters EnsembleKlaus Weiss Sextett1:00 O'Clock Lab Band + +378105William O. SmithWilliam Overton SmithAvant-classical and jazz clarinetist, born September 22, 1926 in Sacramento, California; died February 29, 2020 in Seattle, Washington. +Smith studied at Julliard and Mills College. At the latter institution, he met [a=Dave Brubeck] and became part of his octet. William lived in Italy in the early 1960's where he collaborated with [a=Luigi Nono] among others. While there, he and [a=John Eaton (2)] commissioned Paolo Ketoff to built the Syn-ket synthesizer. He performed the Nuova Consonanza festivals and was an original member of [a=Gruppo di Improvvisazione Nuova Consonanza]. In 1966, he relocated to Seattle, Washington, to teach at the University of Washington, and has lived there ever since.Needs Votehttp://faculty.washington.edu/bills/index.htmlB. SMithB. SmithBill SmithBill Smith, ClarinetBill Smith/William O. SmithBilly SmithSmithW. O. SmithW. SmithW.O. SmithWilliam O. “Bill” SmithWilliam Overton SmithWilliam SmithWm. O. (Bill) SmithБилл СмитВ. Д. СмитВ. СмитGruppo di Improvvisazione Nuova ConsonanzaThe Dave Brubeck QuartetBill Smith QuintetRed Norvo SextetThe Dave Brubeck OctetThe American Jazz EnsembleBill Smith QuartetNunzio Rotondo Tentette + +378329Rick KellerRichard H. KellerAmerican saxophonist and composer born in Syracuse, New York. Started career in 1983 in Europe based in Munich, Germany, since 2001 based in Los Angeles.Needs Votehttp://futuresax.com/https://www.linkedin.com/in/rickkellersax/https://lvjs.org/rick-keller/https://musicians.allaboutjazz.com/rickkellerhttps://www.bestsaxophonewebsiteever.com/sax-virtuoso-rick-keller-shares-tips-for-better-sound-rhythm-improvisation-and-more/http://www.woodwinds.daddario.com/woodwindsArtistDetails.Page?ActiveID=2022&ArtistId=46762&sid=56325d83-f852-4788-90e4-4f3d3b830555https://www.ascap.com/repertory#/ace/writer/215984452/KELLER%20RICHARD%20H?at=false&searchFilter=SVW&page=1KellerR. KellerRichard KellerChris Walden Big BandAl Porcino Big BandBrüning V. Alten's Sunrise OrchestraThilo Wolf Big BandThe Kick (9)Pete York's Blue Jive FiveChristoph Stiefel QuartetGrossi-Keller-Cetto-Sanguinetti-GroupChristian Stock International Jazz QuartetBudman / Levy Orchestra + +378792Peter NijsNeeds VotePeter NysGalaxy String OrchestraNieuw Sinfonietta Amsterdam + +378870David WoodcockViolin player.Needs Votehttps://www.imdb.com/name/nm1020709/D. WoodcockDave WoodcocDave WoodcockDave WoodockDave WoodstockDavid WoodcokThe London Session OrchestraThe Martyn Ford OrchestraThe SixteenThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicThe New SymphoniaThe King's ConsortThe Symphony Of Harmony And InventionL'Estro ArmonicoThe Astarte Session OrchestraThe Chamber Orchestra Of London + +378872Roy GillardBritish classical violinist, and violin teacher. Born in 1946 in Hirwaun, Wales, UK - Died in 2004 in Buckinghamshire, England, UK. +He was Leader of the [a=National Youth Orchestra Of Wales] and Sub-Leader of the [a=London Symphony Orchestra] (1974-1976). He was also associated with [a=The Academy of St. Martin-in-the-Fields].Needs Votehttps://open.spotify.com/artist/2fjzuIoKi9SRZTzYREGIxZhttps://music.apple.com/sg/artist/roy-gillard/17992899?l=zhhttps://www.abgs.org.uk/culturalactivities/NYO/NYO_1964/NYO_1964.htmlhttps://www.the-paulmccartney-project.com/artist/roy-gillard/https://www.imdb.com/name/nm8621396/https://www2.bfi.org.uk/films-tv-people/4ce2bb0f18e73London Symphony OrchestraLondon Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe New SymphoniaThe London VirtuosiNational Youth Orchestra Of WalesThe United Kingdom Symphony OrchestraAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +378963Jean-Claude PetitJean-Claude PetitFrench composer, arranger, and conductor, born 14 November 1943 in Vaires-sur-Marne. Worked as a record arranger and TV conductor prior to turning to film composing in the 1980s.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1987/05/jean-claude-petit.htmlhttps://en.wikipedia.org/wiki/Jean-Claude_Petithttps://www.imdb.com/name/nm0006223/C. PetitC.C. PetitClaude PetitJ - C. PetitJ -Cl. PetitJ-C PetitJ-C. PetitJ-Cl. PetitJ. - C. PetitJ. -C. PetitJ. C. PetitJ. C. PetitJ. C. VannierJ. Cl. PetitJ. Claude PetitJ. PetitJ.-C. PetitJ.-Cl. PetitJ..-C. PetitJ.C PetitJ.C. Claude PetitJ.C. PetitJ.C. PettiJ.C.. PetitJ.C.PetitJ.Cl. PetitJ.Claude PetitJ.P. PetitJ.c. PetitJC. PetitJCP Workshop's - Jean-Claude PetitJean - Claude PetitJean C. PetitJean Claude PetitJean Claude-PetitJean-Cl. PetitJean.Claude PetitOrch. J.C. PetitPetisPetitPétitY. C. PetitЖан-Клод ПетиR. StarlingJ C LittleJean-Claude Petit Et Son OrchestreJef Gilson Big BandLa Grande Formation De Jean-Claude PetitSonny Jones Et Les BlackbirdsJean-Claude Petit Et Les Hornets + +379034David MannUS-American saxophone, flutist, and woodwinds player, producer and engineer, based in New York, USANeeds Votehttp://www.davidmann.net/Site/Home.htmlhttps://www.neffmusic.com/blog/2015/01/david-manns-tenor-saxophone-solo-sun-down-transcription/D. MannDaveDave MannDavidMannДэвид МаннGil Evans And His OrchestraThe George Gruntz Concert Jazz BandTower Of Power Horn SectionElements (6)Chieli MinucciSpecial EFXThe Living Time OrchestraThe Mann BrothersThe Fantasy BandThe Gary Schreiner Big BandTony Kadleck Big BandUltrablue (2)Rich Shemaria Jazz OrchestraRich Willey's Boptism Funk BandTransatlantic HighwayToph-E & The Pussycats + +379513Ensemble Instrumental de Musique ContemporaineContemporary Music Instrumental Ensemble, based in Paris, France.Needs VoteEnsemble InstrumentalEnsemble Instrumental ContemporainEnsemble Instrumental De Musique Contemporaine De ParisEnsemble Instrumental De Musique Contemporaine de ParisEnsemble Instrumental de Musique Contemporaine De ParisEnsemble Instrumental de Musique Contemporaine de ParisInstrumental Brass Ensemble Of Contemporary Music, ParisInstrumental EnsembleInstrumental Ensemble For Contemporary Music Of ParisInstrumental Ensemble of Contemporary Music, ParisParis Instrumental Ensemble For Contemporary Music + +379683Joris Van Den HauweBelgian classical oboist.Correcthttp://www.arien-artists.com/arien_artists_joris_vdh_cv_gb.htmlJ. Van Den HauweJ.v.d.HauweJoris Van De HouweJoris Van Den DauweJoris Van Der HauweJoris Vanden HauweJoris van de HouweJoris van der Hauwev.d.HauweI FiamminghiBrussels Philharmonic + +379697Claron McFaddenClaron McFaddenAmerican soprano, born in New York State in 1961. Her repertory extends from the Baroque to contemporary works.Needs Votehttp://www.claronmcfadden.com/https://www.facebook.com/ladyclaronmcfadden/https://en.wikipedia.org/wiki/Claron_McFaddenhttps://www.bach-cantatas.com/Bio/McFadden-Claron.htmhttps://www.imdb.com/name/nm0568666/Clara Mc FaddenClaren McFaddenClaronClaron Mac FaddenClaron Mc FaddenMcFaddenNederlands KamerkoorSix Women + +379809Isaac SternBorn July 21, 1920 in [url=https://en.wikipedia.org/wiki/Kremenets]Kremenets[/url], died September 22, 2001 in New York City, [b]NY[/b]. American violinist of Jewish origin. + +With the rest of his family, he emigrated to the US in 1922.Needs Votehttps://en.wikipedia.org/wiki/Isaac_Sternhttps://www.britannica.com/biography/Isaac-Sternhttps://web.archive.org/web/20031124014744/https://www.isaacstern.com/https://www.isaacsternlegacy.org/https://web.archive.org/web/20031210101912/https://www.sonyclassical.com/artists/stern/https://www.sonyclassical.com/artists/artist-details/isaac-sternhttps://www.bach-cantatas.com/Bio/Stern-Isaac.htmhttps://www.imdb.com/name/nm0827716/I. SternIsaac Stern With String OrchestraIsaac Stern and Orchestra & ChorusIsaac Stern, ViolinIsaak SternIssac SternNew York PhilharmonicSternStern StringsStern.И. СтернИ.СтернИсаак Стернアイザック・スターンスターン史鄧艾萨克·斯特恩Liszt Ferenc Chamber OrchestraJerusalem Music Center Chamber OrchestraPrades Festival OrchestraThe Istomin/Stern/Rose Trio + +379816Jean-Pierre RampalJean-Pierre Louis RampalFrench classical flutist. +Born January 7, 1922 in Marseille, France +Died May 20, 2000 in Paris, France (aged 78)Needs Votehttps://en.wikipedia.org/wiki/Jean-Pierre_Rampalhttps://www.britannica.com/biography/Jean-Pierre-Rampalhttps://www.jprampal.com/https://www.nfaonline.org/about/about-the-nfa/achievement-awards/jean-pierre-rampalhttps://web.archive.org/web/20030803204353/https://www.sonyclassical.com/artists/rampal/J-P. RampalJ-P.RampalJ. - P. RampalJ. P. RambalJ. P. RampalJ. P. ランパルJ.-P. RampalJ.-Pierre RampalJ.P. RampalJ.P.RampalJean Pierre RampalJean Pierre RampallJean-Pierre RambalJean-Pierre RampaJean-Pierre Rampal And FriendsJean-Pierre RampallJean-Pierre RampelJean-Pièrre RampalJohn-Pierre RampalM. Jean-Pierre RampalRampaRampaiRampalRampal,Žan-Pier RampalЖ.-П. РампальЖан Пьер Рампальז'ן פייר רמפלジャン=ピエール・ランパルジャン・ピエール・ランバルジャン・ピエール・ランパルジャン=ピエール・ランパルランパルLiszt Ferenc Chamber OrchestraI Solisti VenetiOrchestre De Chambre Jean-François PaillardCollegium Musicum De ParisEnsemble Baroque De ParisQuintette À Vent FrançaisOrchestre de Chambre Fernand OubradousLe Quatuor De Flûtes De Roger Bourdin + +380036Sveriges Radios SymfoniorkesterSwedish orchestra formed in 1967, when "Radioorkestern" and "Radiotjänsts TV-orkester" where merged. Often referred to as "Radiosymfonikerna". + +The original 7-piece ensemble called "Radiotjänsts Orkester" was founded in 1925 and lived on for just a few years before disbanding in the thirties when Radiotjänst, the Swedish national broadcasting company, instead chose to engage several independent orchestras in multiple cities for around 10 years, before founding "Radiotjänsts dans- och underhållningsorkester" in 1936. This ensemble gradually moved towards a more classical repertoire and changed its name to Radioorkestern in 1948. The other orchestra was founded as "Radiotjänsts Kabaretorkester" in 1945. After a number of name changes (briefly taking over the Underhållningsorkestern moniker) it was merged with Radioorkestern in 1967 to form Sveriges Radios Symfoniorkester. + +While not actual aliases for this ensemble, here are some links to previous incarnations: [a5648750], [a4433965], [a1015094], [a6213902], [a1266911]. Some of them have aliases in themselves. Needs Votehttps://www.srso.se/om-sveriges-radios-symfoniorkester/orkesterns-historia/https://en.wikipedia.org/wiki/Swedish_Radio_Symphony_Orchestrahttp://sv.wikipedia.org/wiki/Sveriges_Radios_Symfoniorkesterhttps://sverigesradio.se/diverse/appdata/isidor/files/3988/10475.pdfhttps://www.facebook.com/sverigesradiossymfoniorkester/https://www.imdb.com/name/nm4006024// Swedish Radio Symphony OrchestraEnsemble Ur RadiosymfonikernaFrom RadioorkesternMedl. Ur Sveriges Radios SymfoniorkesterMedl. Ur Sveriges Radios SympniorkesterMedlemmar Ur RadiosymfonikernaMedlemmar Ur Sveriges Radios SymfoniorkesterMedlemmar Ur Sveriges Radios Symfoniorkester Under Ledning Av Hans WahlgrenMedlemmar ur Sveriges Radios SymfoniorkesterMedlemmer Af Sveriges Radios SymfoniokesterMembers From The Swedish Radio Symphony OrchestraMembers Of The String Section Of The Swedish Radio Symphony OrchestraMembers Of The Swedish Radio Symphony OrchestraMembers of the Swedish Radio Symphony OrchestraMembres de l'Orchestre Symphonique de la Radio SuédoiseMitglieder Des Sinfonie-Orchesters Des Schwedischen RundfunksMitglieder Des Sinfonieorchester Des Schwedischen RundfunksMusiker Ur RadioorkesternMusiker Ur RadiosymfonikernaMusiker Ur Sveriges Radios SymfoniorkesterOrchester Des Schwedischen RundfunksOrchestra Of The Swedish RadioOrchestre De La Radiodiffusion SuédoiseOrchestre Philharmonique de la Radio suédoiseOrchestre Symphonique De La Radio SuédoiseOrquesta De La Radio Sueca/CuerdaRSORadio OrkesternRadio Sinfonieorchester SchwedenRadio SymfonikernaRadio Symphony OrchestraRadio Symphony Orchestra Of SwedenRadio-OrkesternRadions SymfoniorkesterRadions SynfoniorkesterRadions UnderhållningsorkesterRadioorkesteretRadioorkesternRadiosymfonikernaRadiosymfonikerna (Swedish Radio Symphony Orchestra)Radiosymfonikerna = Swedish Radio Symphony OrchestraRadiosymponikernaRiksradions SymfoniorkestRiksradions SymfoniorkesterRootsi Raadio SümfooniaorkesterRuotsin radion sinfoniaorkesteriS.R.S.OS.R.s SymfoniorkesterSchwedisches Radio SymphonieorchesterSchwedisches Radio-Sinfonie-OrchesterSchwedisches Radio-Symphonie-OrchesterSchwedisches RsoSinfonie-Orchester Des Schwedischen RundfunksSinfonie-Orchester des Schwedischen RundfunksSinfonieorchester Des Schwedischen RundfunksStockholm Radio OrchestraStockholm Radio Symphony OrchestraStockholm Symphony OrchestraStockholms RadioorkesterStrings From The Swedish Radio Symphony OrchestraStråkar Från Radio-orkesternStråkar Ur Sveriges Radio SymfoniorkesterStråkar Ur Sveriges Radios SymfoniorkesterStråkar ur Sveriges Radios SymfoniorkesterStråkssektion Från RadioorkesternSveriges RadioSveriges Radio SymfoniorkesterSveriges Radio's SymfoniorkesterSveriges RadioorkesterSveriges Radios SymfonikerSveriges Radios Symfoniorkester StockholmSveriges Riksradios SymfoniorkesterSwedisch Radio Symphony OrchestraSwedish Broadcasting Symphoni OrchestraSwedish Broadcasting Symphony OrchestraSwedish RSOSwedish Radio Light OrchestraSwedish Radio OrchestraSwedish Radio Orchestra, TheSwedish Radio OrchestreSwedish Radio Symph. Orch.Swedish Radio Symphnony OrchestraSwedish Radio Symphonic. Orch.Swedish Radio SymphonicsSwedish Radio Symphoniy OrchestraSwedish Radio SymphonySwedish Radio Symphony Orch.Swedish Radio Symphony OrchestraSwedish Radio Symphony Orchestra = RadiosymfonikernaSwedish Radio Symphony Orchestra MembersSwedish Radio Symphony Orchestra,Swedish Radio Symphony Orchestra, S.N.Y.K.O.Swedish Radio Symphony Orchestra, TheSwedish Radio Symphony Orchestra, The*Swedish Radio Symphony RadioSwedish Radio's Symphonic Orchestra, TheSwedish Raio Symphony OrchestraSweidsh Radio Symphony OrchestraSymphonic Orchestra Of Radio StockolmSymphonieorchester Des Schwedischen RundfunksSymphony Orchestra Of Radio Sweden, TheSænsku Útvarpshljómsveitinni LeikurThe Light Music Orchestra Of The Swedish Broadcasting CorporationThe Orchestra Of The Swedish RadioThe Radio Symphony OrchestraThe Stockholm Radio OrchestraThe Stockholm RadiosymfoniorkesterThe Swedish Radio SymphonyThe Swedish Radio Symphony OrchestraThe Symphony Orchestra Of Radio SwedenThe Symphony Orchestra of Radio SwedenZweeds Radio Symphonie Orkestradiosymfonikernawedish Radio Symphony Orchestraスウェーデン放送交響楽団Knut SönstevoldUlrika JanssonGeorge RobertsonClaes NilssonUlf BjurenhedBengt RosengrenJoel HunterMartin StenssonPeter OlofssonJohn ErikssonAnders Dahl (2)Herbert BlomstedtTony BauerSaara Nisonen-ÖmanMartin BylundEriikka NylundLennart NordAlfred PisukeInge LindstedtÅke OlofssonKrzysztof ZdrzalkaHåkan RoosHans-Göran EketorpLars StegenbergGunnar MicholsBertil OrsinSixten StrömvallHarry TeikeMikael SjögrenUlrika EdströmTorbjörn BernhardssonPer HammarströmChris ParkesChristian BergqvistMalin William-OlssonElisabeth ArnbergSvein H. MartinsenUlf ForsbergHenrik BlixtMagnus LanningIngalill HillerudJohanna SjunnessonAnn Christin WardAstrid LindellEvgeni SvetlanovSergiu CelibidacheTomas Nilsson (2)Ingegerd KierkegaardHelena NilssonErik FreitagKarl ThorssonHans Larsson (3)Maj WiddingPer ÖmanDiana CrafoordRoland KressChrister ThorvaldssonAntonio HallongrenTorben RehnbergAleksander SätterströmÅsa HallerbäckAnders Nyman (2)Åsa Karlsson (2)Tom SkogOla KarlssonTore WestlundRobert RöjderCarina SporrongPer SporrongMats-Olov SvantessonGunnar EklundStaffan BergströmJosef GrünfarbMats WallinHanna GöranHans ÅkessonEva JonssonMalin BromanRolf Cato RaadeClaudia BonfiglioliJan IsakssonRoger CarlssonRick StotijnJana BoutaniStanka SimeonovaPeter MolanderJan-Erik Gustafsson (2)Linnea NymanYlva MagnussonNiklas Andersson (5)Mats Nilsson (6)Bernt LysellVeronika NovotnaEva LindalJohn LingesjöOlle MarkströmWalter John McTigertLachlan O'DonnellKristina LignellKarin ErikssonRiikka RepoAnu JämsäBengt NyPär ÖjeboDag HenrikssonJan HussAnders JonhällGöran BrinkKatarina AgnasJames Kent (4)Ann-Marie LysellMikael OskarssonAleksei KiseliovRenate KlavinaMira FridholmEmmanuel LavilleIskandar KomilovHåkan BjörkmanJulia Kretz-LarssonSusanne HörbergDashiel NesbittDaniel HandsworthMalin KlingborgHenrik NaimarkFrida Hallén BlixtAndreas SundénAlbin UusijärviJennifer Downing OlssonLisa ViguierPeter VolpertErik Williams (5)Martha Eikemo AndersenPP3 Music Aid + +380673Gene BiancoEugene CapobiancoBorn Eugene Capobianco 29 March 1927, Hartford, Connecticut, jazz enthusiast Gene Bianco started off his career as a classical virtuoso harpist, and toured with major orchestras to rave reviews. His love for jazz, however, prompted him to explore the concept of using harp as a jazz instrument, an idea that was hitherto unheard of. Having appeared as a solo act in a variety of New York nightclubs, he later teamed up with guitarist Mundell Lowe and percussionist Joe Venuto to form a jazz trio which released an album on the obscure Major Records label. Soon after, RCA signed the group to a three-album contract, under which the albums "Stringin' the Standards" and "Harp, Skip and Jump!" were released. + +However, RCA had a different idea of where the harp belonged. For a new record club partnership with Readers Digest, RCA bought out the existing contract and entered into a new contract with Gene Bianco which obliged him to produce easy-listening albums catered to the "middle-class market" (as described by a certain author). The first album, Joy To The World, was a hit. By then, Gene Bianco had been recast as "The Rainbow Sounds of Bianco" with his own personal logo on the front of his albums, which enjoyed first-class productions, and a full orchestra. + +Nonetheless, Bianco prefers and opted for the anonymity and independence of life as a freelance session jazz musician, and ended up playing on dozens of great jazz recordings, such as all three of Paul Desmond's string albums, on Gil Evans' "Blues in Orbit", on Herbie Mann's "Push, Push", Alan Lorber's "Lotus Palace", and others. He also recorded with some of the best jazz singers around, including Carmen McCrae and Marlena Shaw. Some of his best session work of the 1960s and 1970s now shows up on sampling favorites such as the Blue Break Beats. + +After 30 years as a studio player, Bianco went into the recording booth as a musical coordinator and contractor, screening and hiring musicians for recording sessions. Respected throughout the business, he worked with acts as diverse as Mary J. Blige, D Train, Stevie Nicks, Natalie Cole, and even Ray Charles. Recently, he put together the orchestra that accompanied tenor saxman Joe Lovano on Viva Caruso. He and Mundell Lowe even pioneered an instrument combining the harp and electric guitar that is now a standard feature of many pop orchestrations. + +Bianco's grandfather is Fillippo Capobianco, who was also a successful harpist in Italy.Needs Votehttp://www.spaceagepop.com/bianco.htmBiancoE. BiancoEuegene BiancoEugen BiancoEugene BiancoGene BiancaGene Bianco The "Atom" HarpJene BiancoThe Rainbow Sounds Of Bianco, His HarpGil Evans And His OrchestraGene Bianco And His GroupGene Bianco And His SextetThe Rainbow Sound Of Bianco, His Harp And Orchestra + +380704Steven IsserlisBritish cellist, born 19 December 1958, London. Brother of [a836771] and [a1370073] and grandson of [a3208197].Needs Votehttps://stevenisserlis.com/https://en.wikipedia.org/wiki/Steven_IsserlisIsserlisStephen IsserlisSteve Isserlis + +380795Fritz SonnleitnerViolinist and concertmaster, born 1920, died 1984. Father of [a2316264].Needs VoteF. SonnleitnerFritz SonleiterFritz SonneleitnerFritz SonnleithnerFritz SonuleitnerMr. SonnleitenerMr. SonnleitnerSonnleitnerGazFritz Sonnleitner's Fantastic StringsFritz Sonnleitner QuartetFritz Sonnleitner TrioBayerisches StaatsorchesterThe Sonnleitner StringsMünchener Bach-OrchesterFritz Sonnleitner And OrchestraString Quartet Of The Munich Philharmonic Orchestra + +380864Sandro GiacobbeSandro GiacobbeItalian singer and songwriter, born 14 December 1949 in Genova. Died December 5, 2025 in Cogorno, Genova.Needs Votehttp://www.sandrogiacobbe.ithttps://it.wikipedia.org/wiki/Sandro_Giacobbehttps://en.wikipedia.org/wiki/Sandro_Giacobbehttps://www.imdb.com/name/nm3346734/GiaccobeGiacobbeGiacobbe S.Giacobbe SandroGiacobeGiocobbeS. GacoveS. GiaccobeS. GiacobbeS.GiacobbeSandro GiaccobeSandro GiacobbiSandro GiacobbéSantino GiacobbeСандро ДжакоббеAlandreTutti Insieme + +380870Dario Baldan BemboDario Baldan BemboItalian writer, musician and performer, born on 15 May 1948 in Milan. Younger brother of [a10860]. His debut as a singer with [i]Aria[/i] sold 25 million copies across Europe in 1975.Needs Votehttps://digilander.libero.it/gianni61dgl/dariobaldanbembo.htmhttps://web.archive.org/web/20140209122936/http://dariobaldanbembo.it/Dario_Baldan_Bembo/HOME.htmlhttps://en.wikipedia.org/wiki/Dario_Baldan_BemboA. Baldan BemboB. BemboB. D. BaldanB.Baldan BemboB.D. BaldanBalbanBaldamBaldanBaldan & BemboBaldan - BemboBaldan / BemboBaldan / BempoBaldan Bemba, D.Baldan BemboBaldan Bembo DerioBaldan Bembo, DarioBaldan Benbo DarioBaldan, BemboBaldan, DarioBaldan-BemboBaldan/BemboBaldanBamboBaldenBalden BemboBalden, BemboBalden-BemboBalden/BemboBalden/emboBaldmanBaldonBaldon BemboBardotte-Baldan-BemboBemboBembo BaldanBembo Dario BaldanBembo's OrchestraBembo, Dario BaldanBembowBenbowBáldanCaptain Dario Baldan BemboD-B BemboD. A. BemboD. B. B.D. B. BaldanD. B. BemboD. Badlan BemboD. Balban BemboD. Balban BembpD. Balban-BemboD. Baldah BemboD. BaldamD. Baldam BemboD. BaldanD. Baldan - BemboD. Baldan B.D. Baldan BemboD. Baldan BernoD. Baldan GemboD. Baldan-BemboD. Baldan-BenboD. Baldan-BimboD. Baldan/BemboD. Baldan/BenboD. BaldanbemboD. Balden BemboD. Balden/BamboD. Balden/BemboD. BaldonD. Baldon BemboD. BaldwinD. BemboD. DalbanD. Dalban BemboD. Gembo BladanD.B BemboD.B. BemboD.B. GemboD.B.B. & SoleadoD.B.B. SoleadoD.B.BemboD.BaldambemboD.BaldanD.Baldan BemboDalban BemboDanilo BaldanDarario Baldan BamboDari BaldanDarian Baldan BemboDarii Baldan BemboDarioDario "Bembo" BaldanDario B. BemboDario Badan BemboDario Baldam GemboDario BaldanDario Baldan - BemboDario Baldan BamboDario Baldan GemboDario Baldan-BamboDario Baldan-BemboDario Baldan-Bembo BardottiDario BaldanbemboDario Baldán BemboDario Bembo BaldanDario DalbanDario Gembo BaldanDario-Baldan BemboDarío B. BernalDarío Baldan BemboGamboGemboO. Baldan BemboOrch. D. Baldan BemboEquipe 84Space PhilharmonicOrchestra Dario Baldan Bembo + +381159Kristjan MäeotsDrummer, percussionistNeeds VoteKrisjian MäeotsKristjan Mäeots (Kotkas)Jim Arrow & The AnachronesEstonian National Symphony Orchestra + +381298John McClureJohn Taylor McClureAmerican producer and engineer. +Born June 28, 1929; died June 17, 2014.Needs Votehttps://en.wikipedia.org/wiki/John_McClure_(producer)J. Mc ClureJ. McClureJohn Mc ClureJohn McLureJohn T. McClureJonh McClureMcClureジョン・マックルーアCalico (4) + +381327Merenia GilliesNew Zealand singer, now based in AustraliaNeeds VoteGilliesL.M. GilliesMerena GilliesMereniaMerenia Gillies-MorganEureka (20) + +381407Roger HarrisonBritish drummerNeeds VoteGabrieli ConsortPazWalrus (4)New Jersey Turnpike + +381443Andrew ByrtClassical viola player.Needs VoteAndrew BirtOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicHanover BandThe Homemade Orchestra + +381505Thelonious Monk TrioThelonious Monk Trio was a jazz trio ensemble with [a=Thelonious Monk] leading on piano. The musicians on bass and drums varied per playing session. + +The Thelonious Monk Trio was recorded at least on the following occasions: +October 24, 1947 for [l=Blue Note] at [l=WOR Studios] with [a=Gene Ramey] on bass & [a=Art Blakey] on drums. +Recorded compositions were: [i]Off Minor[/i], [i]Well You Needn't[/i], [i]Ruby My Dear[/i], [i]April in Paris[/i] & [i]Nice Work[/i]. + +October 15, 1952 for [l=Prestige] at [l=Beltone Studios] with [a=Gary Mapp] on bass & [a=Art Blakey] on drums. +Recorded compositions were: [i]Sweet and Lovely[/i], [i]Bye-Ya[/i], [i]Little Rootie Tootie[/i] & [i]Monk's Dream[/i]. + +December 18, 1952 for [l=Prestige] at [l=Beltone Studios] with [a=Gary Mapp] on bass & [a=Max Roach] on drums. +Recorded compositions were: [i]Bemsha Swing[/i], [i]Reflections[/i], [i]Trinkle Tinkle[/i] & [i]These Foolish Things[/i]. + +September 22, 1954 for [l=Prestige] in [l=Van Gelder Studio, Hackensack, New Jersey] with [a=Percy Heath] on bass & [a=Art Blakey] on drums. +Recorded compositions were: [i]Blue Monk[/i], [i]Just A Gigolo[/i], [i]Nutty[/i] & [i]Work[/i]. + +March 17 & April 3, 1956 for [l=Riverside Records] in [l=Van Gelder Studio, Hackensack, New Jersey] with [a=Oscar Pettiford] on bass & [a=Art Blakey] on drums. +Recorded compositions were: [i]Liza[/i], [i]Memories Of You[/i], [i]Honeysuckle Rose[/i], [i]Darn That Dream[/i], [i]Tea For Two[/i], [i]You Are Too Beautiful[/i] & [i]Just You, Just Me[/i]. + +July 6, 1958 at the [l=Newport Jazz Festival] with [a=Henry Grimes] on bass & [a=Roy Haynes] on drums. +Recorded compositions were: [i]Just You, Just Me[/i], [i]Blue Monk[/i], [i]'Round Midnight[/i] & [i]Well You Needn't[/i].Needs VoteT. Monk TrioThe Thelonious Monk TrioThelonious MonkThelonious Monk TriosThelonius Monk TrioTheolonious Monk TrioTrioセロニアス・モンク・トリオArt BlakeyJohn ColtraneThelonious MonkMax RoachGene RameyPercy HeathRoy HaynesOscar PettifordWilbur WareHenry GrimesNelson BoydAl McKibbonShadow WilsonGary Mapp + +381506John SimmonsJohn Jacob SimmonsAmerican jazz bassist, born June 14, 1918 in Haskell, Oklahoma, died September 19, 1979 in Orange, New York + +Needs Votehttps://en.wikipedia.org/wiki/John_Simmons_(musician)https://www.allmusic.com/artist/john-simmons-mn0000237944/biographyhttps://www.radioswissjazz.ch/en/music-database/musician/420279f84e3a633625b0e67b875f9bac317a2/biographyhttps://www.imdb.com/name/nm0799799/https://adp.library.ucsb.edu/names/209445J. SimmonsJohn SimmondsJohn Simmons And His OrchestraJohn SimonsJohnny SimmonsJohny SimmonsSimmonsSimonsジョン・シモンズThe Thelonious Monk QuartetKansas City SixBillie Holiday And Her OrchestraLouis Armstrong And His OrchestraThe Chocolate DandiesBud Freeman's All Star OrchestraErroll Garner TrioTeddy Wilson And His OrchestraTeddy Wilson TrioColeman Hawkins And His OrchestraJames P. Johnson's Blue Note JazzmenBenny Goodman And His OrchestraBen Webster And His OrchestraBen Webster QuartetTeddy Wilson QuartetIllinois Jacquet And His All StarsEddie Heywood And His OrchestraEddie Heywood TrioHot Lips Page And His OrchestraJohn Simmons And His OrchestraLouie Bellson OrchestraRolf Ericson And His American StarsLouie Bellson Big BandIllinois Jacquet & His Big BandBig Sid Catlett QuartetSidney DeParis' Blue Note JazzmenTatum - Eldridge - Stoller - Simmons QuartetAl Casey And His SextetThe Buddy Rich QuintetBillie Holiday And Her BandThe Ben Webster QuintetHot Lips Page & His Hot SevenBill Doggett TrioThe Birdland StarsThe Sunset All StarsBig Sid Catlett's BandLionel Hampton And His GiantsBenny Carter & His Chocolate DandiesBuddy Rich All StarsThe John Hardee SwingtetKarl George OctetBilly Kyle's Big EightRussell Procope's Big SixTadd Dameron QuartetSid Catlett TrioJohn Hardee QuintetBill De Arango Sextet + +381562Billy RauchRussell RauchAmerican jazz trombonist in the 1930's and 1940's. He is told, he had been a short man with iron lips, when he was playing, he had to stand on a soap box to reach the microphone.Needs VoteBill RauchBilly "Russell" RauchBilly RauschRussell "Billy" RauchRussell Billy RauchRussell RauchWilliam RauchWilliam RauschCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm KingsYank Lawson And His Orchestra + +381563Jack SatterfieldAmerican jazz trombonistNeeds VoteJ. SatterfieldJack SatersfieldJack SattersfieldJack StatterfieldJimmy SatterfieldTeddy Powell And His OrchestraSy Oliver And His OrchestraThe CommandersBilly Byers And His OrchestraHenry Jerome And His OrchestraNew York Brass EnsembleThe Brassmates + +381566Tony MottolaAnthony C. MottolaAmerican jazz guitarist. +Born April 18, 1918 in Kearny, New Jersey, USA. +Died August 9, 2004 in Denville, New Jersey, USA. +When his friend saxophonist George Paxton got a job with George Hall's orchestra, he convinced Hall to hire Mottola.Needs Votehttps://en.wikipedia.org/wiki/Tony_Mottolahttps://fromthevaults-boppinbob.blogspot.com/2020/04/tony-mottola-born-18-april-1918.htmlhttps://www.spaceagepop.com/mottola.htmhttps://adp.library.ucsb.edu/names/207075Anthony MattolaAnthony MottoAnthony MottolaAnthony MottoloMattolaMottolaT, MottolaT. MottolaTonny MottolaTony MatollaTony MattolaTony MotolaTony Mottola Guitars And OrchestraTony Mottola Y Su GuitarraTony Mottola's Dance RhythmsMr. Big (6)Enoch Light And The Light BrigadeCootie Williams And His OrchestraBenny Goodman And His OrchestraTony Mottola TrioGordon Jenkins And His OrchestraEnoch Light And His OrchestraThe Command All-StarsTerry Snyder And The All StarsJoe Reisman And His OrchestraLos AdmiradoresRichard Maltby And His OrchestraTony Mottola And His OrchestraDoc Severinsen And His OrchestraJohnny Guarnieri TrioGeorge Hall And The Hotel Taft OrchestraTony Mottola QuintetJo Basile, Accordion And OrchestraTony Mottola FourThe Buddy Weed QuartetTony Mottola And The Quad GuitarsLou Stein And His OctetTony Mottola And His All-StarsSal Franzella And His QuintetThe Lou Stein SextetTony Mottola GroupWill Bradley and HIs Jazz OctetTony Mottola SextetBilly Taylor's Big Four (2)The Rhythmasters (3) + +381569Irene DayeIrene Daye SpivakAmerican jazz singer. +Born January 17, 1918, Lawrence, Massachusetts, USA. +Died November 1, 1971, Greenville, South Carolina, USA. +Best known as a singer with [a=Gene Krupa And His Orchestra] from 1938-1941. She retired from music after marrying [a=Edward Cornelius] in 1941. When he died in 1943, she resumed her singing career performing with [a=Charlie Spivak And His Orchestra] from 1944-1950. Married [a=Charlie Spivak] in 1950 and for the second time gave up her singing career and became his manager, a role which she performed until her death in 1971. +She sang vocals on six charted songs in the U.S. with three different bands from 1940 to 1945. She had two with Gene Krupa and His Orchestra: "Down Argentina Way" (#16, 1940) and "There'll Be Some Changes Made" (#13, 1941). She had one hit with Sam Donahue and His Orchestra: "Do You Care?" (#19, 1941). And she had charted three times with her husband's band: Charlie Spivak and His Orchestra: "(I Love You, I Love You, I Love You) Sweetheart of All My Dreams" (#16, 1945), "Can't You Read Between the Lines?" (#16, 1945) and "It's Been a Long, Long Time" (#4, 1945). Still, she is possibly best known for the song "Drum Boogie" by Krupa.Needs Votehttps://bandchirps.com/artist/irene-daye/https://en.wikipedia.org/wiki/Irene_Dayehttps://www.imdb.com/name/nm2069479/https://www.allmusic.com/artist/irene-daye-mn0000773889/biographyhttps://web.archive.org/web/20020815031906/http://www.gkrp.net/irenebio.htmlhttps://fromthevaults-boppinbob.blogspot.com/2021/01/irene-daye-born-17-january-1918.htmlhttps://adp.library.ucsb.edu/names/356274DayeIrene DayIrene Daye & BandIrene Daye And EnsembleIrene DayneGene Krupa And His OrchestraCharlie Spivak And His OrchestraIrene Daye And Ensemble + +381637Clarence SmithClarence E. SmithUS jazz trumpeter. + +For the boogie-woogie/blues pianist (1904-1929), see [a=Clarence "Pinetop" Smith]. +Needs VoteClarence E. SmithBlanche Calloway And Her Joy Boys + +381866Sam FormicolaSamuel FormicolaA violist. He has been previously a member of the Oslo Philharmonic, and currently he is a member of the Los Angeles Chamber Orchestra (since 2000). + +He is also one of the founding members of the Romauldo String Trio and co-director / co-founder of the Gold Coast Chamber Music Festival in Calabasas, California.Needs Votehttps://www.samformicola.com/https://www.facebook.com/profile.php?id=100010033358109https://www.instagram.com/samformicola/https://www.youtube.com/channel/UCjRxE4oeBFwSZqNn7oL91MwFormicola, SamuelSam FormacolaSamuel FormicolaSamuel Formicola, Jr.Samuel W. FormicolaThe Colorado Symphony OrchestraThe PCD OrchestraOslo Filharmoniske OrkesterThe Los Angeles Chamber OrchestraOklahoma City Symphony Orchestra + +381888Julie GiganteJulie Ann GiganteViolinist. Julie Gigante has been a member of the [a=The Los Angeles Chamber Orchestra] since 1986, and she is a founding member of both the Capitol Ensemble and the Angeli Duo. + +She has also been a member of the Phoenix Symphony, the Festival Orchestra of the Music Academy of the West in Santa Barbara, the Opus Chamber Orchestra in Los Angeles and the Rochester Philharmonic. + +She is also active in the motion picture and recording industry and has performed on over 1,000 movie scores and hundreds of records and CDs.Needs Votehttps://www.imdb.com/name/nm0317571/Gigante Julie A.Gigante, Julie AnnJulia Ann GiganteJulie A. GiganteJulie An GiganteJulie Ann GiganteJulie Anne GiganteJulie GiganticJulie-Ann GiganteJullie GiganteThe Hollywood Studio SymphonyRochester Philharmonic OrchestraThe Los Angeles Chamber Orchestra + +382103Al LevittAlan LevittAmerican jazz drummer +Born November 11, 1932, New York City, died November 28, 1994, ParisNeeds VoteA. LevittA. LewittAl. LevittAlan LevittAlan LewittAllan LevittBill LevittLevittThe Charles Mingus QuintetPaul Bley TrioLennie Tristano QuintetStan Getz QuintetBarney Wilen QuintetWarne Marsh QuartetBarney Wilen QuartetRené Urtreger TrioLevittsWarne Marsh TrioGuy Lafitte Et Son QuartetteStéphane Grappelly Et Son QuartetteAl & Stella Levitt QuartetWarne Marsh Lee Konitz QuintetBobby Jaspar & Sacha Distel Quintette + +382241The Kansas City SevenNeeds Major Changes7Kansas City SevenCount BasieLester YoungJo JonesBuck ClaytonFreddie GreenDickie WellsRodney Richardson + +382396Heinz GietzGerman musician, songwriter, arranger, producer and founder of [l=Cornet] Records. He was born 31 March 1924 in Frankfurt am Main, Germany and died 24 December 1989 in Cologne, Germany.Needs Votehttp://de.wikipedia.org/wiki/Heinz_GietzCietsCietzDietzFietzG. GeltsG. GietzGeitzGietzGietz H.Gietz HeinzGietz Heinz M.Gietz, HeinzGiezGitzGletzGrietzGutzH GietzH. GietzH. GeitzH. GetzH. GhietsH. GientzH. GietgH. GiethzH. GietsH. GietzH. GitzH. GlatzH. GrietzH. GuetzH.GietzH.GlenzHans GietzHeins GietzHeintz GietzHeinzHeinz GeitzHeinz GiertzHeinz GietsHeinz Gietz-teHeinz GiezHeinz GitzHeinz GletzHeinz GretzHeinz/GietzHeinzGietzHeiz GietzK. GietzM. GietzN. GietzSietzГ. ГелиьцаГ. ГельцГ. ГельцаГ. ГитцГитцГицХ. ГитцХайнц ГитцRobert SchaubergDavid CumberlandH.G. AriesWilson O'HayreAddi SieglerGregor SteinschmätzerBenjamin Stern (3)Orchester Heinz GietzDave Cumberland OrchestraCarlos GedarroBilly Balk + +382495Lee Harris (3)Artist from UK. Related to [l=Music Factory]/[l=Music Factory Music Ltd]. +Died in August 2025Needs VoteHarrisL. HarrisL.HarrisYekuanaEvolverNorthface + +382706Hank DevitoHenry M. DevitoAmerican steel guitarist and songwriter and photographer/visual artistNeeds VoteDe VitoDeVitoDevitoDevito HankDevito, Henry MDeyitoH. De VitoH. De VoiH. DeVitdH. DeVitoH. DevitoH. DivitoH. de VitoH. deVitoH.DevitoHanck DeVitoHank De VitoHank De VoiHank DeVitoHank DeVittoHank DevitaHank Di VitoHank DiVitoHank de VitoHank diVitoHenry DevitoHenry M. DeVitoHenry M. DevitoM. DeVitoVitode VitoThe Hot BandThe Notorious Cherry BombsThe Dixie Pearls + +383088Steve HuffsteterTrumpet and flugelhorn player, composer, arranger + +Born in Michigan, raised in Arizona from age 10, Steve Huffsteter started playing trumpet at 8 and started playing professionally while still in high school. He attended Arizona State at Tempe and worked in the Phoenix area until he moved to Los Angeles in 1959. Starting in 1960 with Stan Kenton, Huffsteter has worked with most of the name big bands on the West Coast, including Sy Zentner, Les Brown, Ray Charles, Louie Bellson, Toshiko Akiyoshi, Billy Berry, Benny Carter, Bill Watrous, Bill Holman, Shorty Rogers, Clare Fisher, Bob Florence, Gordon Brisker, Matt Cattingub and Tom Talbert. In addition, Steve has worked and recorded with many smaller bands such as Shorty Rogers, Supersax, Willie Bobo, Pete Cristlieb, Paulino Da Costa, Moacir Santos, Jim Morris' Brass Plus, Poncho Sanchez, the Dave Pell Octet, and since 1994, the Cecilia Coleman Quintet, with whom he has recorded two CDs. Steve Huffsteter has backed many singers such as Tony Bennett, Nat "King" Cole, Mel Torme, +Ella Fitzgerald, Jack Jones, Diane Schurr, Natalie Cole, Julie Kelly, Mike Campbell, Debbie Reynolds, Toni Tenille, Vicci Carr, Dean Martin and others. Steve has recorded more than 80 albums and CDs, including his own "Circles" with Pete Cristlieb, Roger Kellaway, Monte Budwig and Joey Baron.Needs VoteHuffsteterS. HuffsteterS. HuffstetterStephen HuffsteterSteve HoffsteterSteve HuffesteterSteve HuffstetterSteve HufsteterSteven C. HuffsteterSteven Carl HuffsteterSteven HuffsteterSteven HuffstetterWillie Bobo & The Bo GentsToshiko Akiyoshi-Lew Tabackin Big BandGerald Wilson OrchestraCurtis Amy SextetDave Pell OctetStan Kenton Alumni BandThe Bob Florence Limited EditionGordon Brisker Big BandThe Mike Barone Big BandThe Matt Catingub Big BandRoy Wiegand Jazz OrchestraThe George Stone Big BandThe Tom Talbert Jazz OrchestraToshiko Akiyoshi QuartetThe Los Angeles Jazz OrchestraKim Richmond Concert Jazz OrchestraJust Be-BopBill Watrous Big BandThe Steve Huffsteter Big BandMark Masters EnsembleClare Fischer Latin Jazz Big BandCecilia Coleman QuintetSteve Huffsteter QuintetThe Bill Perkins - Steve Huffstetter QuintetJim Morris Brass Plus + +383089Jay CorreJay William LischinAmerican jazz saxophonist, worked with: Buddy Rich, Dizzy Gillespie, Harry James, Benny Goodman, Ella Fitzgerald, Mercer Ellington, Maynard Ferguson, Frank Sinatra, Sammy Davis Jr., mel Tormé, Nat King Cole, Tony Bennett and many others. +Born: December 30, 1924 in Philadelphia, Pennsylvania. +Died: October 26, 2014 in Stuart, Florida.CorrectJ. CorreJay CaréHarry James And His OrchestraBuddy Rich Big Band + +383091Rene HernandezRené Alejandro Hernández Junco Cuban pianist, composer, and arranger ("Spanish Grits", "Cha Cha With La Playa", "42nd Street Cha Cha Cha", "A Bailar Guajira", "Es Mi Destino", "Son Montuno", "Cathy Cha-Cha-Cha", "Este Tumbao", "Manhattan Cha Cha Cha", "Montuneando" etc.) +born: January 21, 1916, Cruces, Cienfuegos, Cuba - died: September 4, 1977, San Juan, Puerto Rico +[b]Do NOT confuse with [a=Rafael Hernández][/b]Needs Vote"Latigo" Hernandez'Látigo' HernándezAlejandro HernandezEl LátigoF. HernandezHarmandezHernandesHernandezHernandez ReneHernendesHernándezR. HernandesR. HernandezR. HernándezRen HernándezRene "El Flaco" HernandezRene "El Latigo" HernandezRene HermandezRene HernandesRene HernándezRenee HernandezReneé HernandezRenè "El Flaco" HernandezRené "El Flaco" HernandezRené HernandezRené HernándezRené Hernández.Réne HernandezMachito And His OrchestraOrquesta CienfuegosOrquesta Hermanos PalauRene Hernandez Y Su OrquestaLuis "Lija" Ortiz Y Su ConjuntoConjunto Rene Hernandez + +383105Tony Reyes (3)Latin jazz bassist in the 1950s/1960sCorrectReyesT. ReyesTony ReyezHarry James And His OrchestraJack Costanzo And His Orchestra + +383107Jay CameronJay Cameron (born 14 September 1928 in New York City; died 21 March 2001 in San Diego, CA) was an American saxophone player, mainly baritone. His career began in the 1940s in Hollywood and then shifted to Europe. He returned to the U.S. in 1956 playing in bands led by [a=Woody Herman], [a=Slide Hampton], [a=Maynard Ferguson], [a=Chet Baker], [a=Dizzy Gillespie], [a=Paul Winter (2)] and [a=Freddie Hubbard].Needs Votehttps://adp.library.ucsb.edu/names/201444CameronJ. CameronSlide Hampton OrchestraWoody Herman And His OrchestraSlide Hampton OctetThe Paul Winter SextetWoody Herman BandWoody Herman And The Fourth HerdRoy Haynes SextetJay Cameron's International Sax-BandWoody Herman And The Swingin' Herd (2)Hubert Fol SextetBill Coleman Et Son Ensemble + +383131Harvey BroughHarvey Frederick Glover BroughThe English versatile composer, arranger and performer, Harvey Brough, was trained at Coventry Cathedral Choir, the Royal Academy of Music and then at Clare College Cambridge. After leaving college he formed 'Harvey and the Wallbangers' and toured Britain and Europe for six years in venues as diverse as the Royal Albert Hall, Sadlers Wells, the Town and Country Club, and Berlin Tempodrom. +Since the band split, Brough has worked as a composer for TV, radio, and stage, and as an arranger and producer in the music business. In 1998 Brough was awarded the first Andrew Milne Award for jazz composition for his Requiem In Blue, written for mixed ensemble of early music instruments with a jazz rhythm section and 5 singers. +His recordings include four albums with the Wallbangers and the Jazz album with Simon Rattle. Brough's talent as an arranger has lead him to work with a wide variety of artists such as Soul II Soul, D Influence, Definition of Sound, Kim Wilde, Oleta Adams, Spiritualized, Terry Hall, and Salad. His Big Band arrangements have been performed by the 'Dankworth Generation Band'. +Brough has worked extensively with Jocelyn Pook on many projects. Their collaboration was most notable in Stanley Kubrick's 'Eyes Wide Shut', for which he co-produced and co-wrote and conducted the score. +His most recent project is the band 'Field Of Blue' formed with singer Jacqueline Dankworth reflecting the musical spirit of jazz, blues, and fold fused with a pop sensibility. +Needs Votehttp://harveybrough.com/https://myspace.com/harveybroughBroughH. BrouchHarveyHarvey B.The Jocelyn Pook EnsembleThe Cambridge SingersLondon VoicesThe Tallis ScholarsRed ByrdThe English Concert ChoirHarvey & The WallbangersVoices From Somewhere + +383318Maurice WilliamsMaurice WilliamsAmerican singer and songwriter. +Born April 26, 1938 in Lancaster, South Carolina, USA. +Died August 5, 2024 in Charlotte, North Carolina, USA. +Williams wrote such songs as "Little Darlin'", "Stay", and "May I". + +Williams discovered his passion for music at a young age, leading to the formation of his first group, the Royal Charms, during his teenage years. This group would later evolve into Maurice Williams and the Zodiacs, marking the beginning of a storied career. Williams wrote the song “Little Darlin,” which became a hit for The Diamonds, but was only the beginning of Williams’ impact on the charts. + +In 1960, Maurice Williams and the Zodiacs released the single “Stay,” a doo-wop classic that captivated audiences with its catchy melody and concise, under-two-minute runtime. “Stay” soared to the top of the Billboard Hot 100 chart, becoming one of the shortest songs ever to achieve such a feat. Its enduring appeal saw it covered by numerous artists, including the Four Seasons and Jackson Browne, giving it new life in several decades.Needs Votehttp://mauricewilliams.comhttps://restingplace.com.ng/maurice-williams-legendary-rb-and-rock-n-roll-songwriter-has-passed-away/#https://www.imdb.com/name/nm1530415/M WilliamsM. WIlliamsM. WillamsM. WilliamM. WilliamsM.WilliamsMaurice - WilliamsMaurice WilliamMurice WilliamsW. WilliamsW.WilliamsWilliamWilliamsWilliams, M.WillliamsВильямМ. УильямсMaurice Williams & The ZodiacsThe GladiolasShang (10) + +383330The WillowsUS vocal group from 114th Street in Harlem +Previously known as [a=The 5 Willows] (before dropping the "Five" in 1954 for booking purposes). +Harlem doo-wop quintet, formed as "The Dovers" in 1950, with an original lineup comprised of twin brothers [url=https://www.discogs.com/artist/884113-Joe-Martin-4]Joe Martin[/url] and [a=Ralph Martin], [url=https://www.discogs.com/artist/884114-Richard-Davis-6]Richie Davis[/url], [a=John Thomas Steele], and [a=Bobby Robinson], who was replaced in 1952 by [a=Tony Middleton]. +Best known for "[url=https://www.discogs.com/Willows-Church-Bells-May-Ring-Baby-Tell-Me/master/463935]Church Bells May Ring[/url]" (1956), which only reached #62 on the charts due to the success of the cover version by [a=The Diamonds].Needs Votehttp://doo-wop.blogg.org/the-willows-1-aka-the-five-willows-a116515286https://en.wikipedia.org/wiki/The_Willows_(group)The Willows CraftWillowWillowsWillows,ウィローズThe 5 WillowsTony MiddletonJoe Martin (4)Richard Davis (6)Ralph MartinJohn Thomas Steele + +383374Jesse Powell (2)American jazz tenor saxophonist +born February 27, 1924 in Smithville, Bastrop County, Texas +died October 19, 1982 in New York City, New York + +Worked with : [a=Hot Lips Page], [a=Louis Armstrong], [a=Luis Russell], [a=Illinois Jacquet], [a=Count Basie], [a=Brownie McGhee], [a=Willie Jordan], [a=Doc Pomus], [a=Dizzy Gillespie] and others. +He recorded as leader for [l=Federal Records (3)] (1951 & 1953). +CorrectJ. PowellJessie PowellJessie PowellsPowellDizzy Gillespie And His OrchestraHoward McGhee SextetJesse Powell OrchestraJesse Powell And His QuintetJessie Powell And BandJesse Powell & The Majors + +383422Dennis LuxionAmerican jazz pianist, arranger and composer, born 1952 in Springfield, Illinois, USA.Needs Votehttp://dennisluxion.com/Denis LuxionLuxionChet Baker QuartetMonika Linges QuartetGreg Ward & 10 Tongues + +383442Tony RiversDouglas Anthony ThompsonFather of [a3271823].Needs Votehttp://www.craftweb.org/web/tony/index.htmlhttps://myspace.com/tonyrivers1Anthony RiversP. SizzeyP. SizzyRiversT RiversT. RiversTonyTony RivervRiver (24)Tony RiversHarmony GrassThe Top Of The PoppersTony RiversTony Rivers And The CastawaysHighly LikelySummer WineShine (67)The Houseband + +383468Trevor KoehlerTrevor Curtis KoehlerAmerican keyboard player, saxophonist and flutist. Born 1935, died 1975.Needs Votehttps://en.wikipedia.org/wiki/Trevor_KoehlerKoehlerT. KoehlerTrevor KeohlerGil Evans And His OrchestraThe Insect TrustOctopus (12) + +383623Harmonica CharlieCredited as harmonica player.Needs Vote"Harmonica Charlie"Duke Ellington And His Orchestra + +384186Mark RadiceAmerican singer, songwriter, musician and producer. Since the mid-1980s more associated with writing and recording material for Sesame Street. Son of [a=Gene Radice] and his uncle is [a=Bill Radice].Needs Votehttps://web.archive.org/web/20110707055425/http://markradice.150m.com/http://en.wikipedia.org/wiki/Mark_Radicehttps://www.youtube.com/channel/UC5pmhXV_nthQ4lSbei1gCIghttps://adp.library.ucsb.edu/names/338907M. RadiceM.RadiceMarc RadiceMike RadiceRadice + +384377Mandy ParnellAmanda ParnellBritish mastering engineer, based in London, UK. + +Critically acclaimed Mandy Parnell and her team currently work at [l=Black Saloon Studios], North East London, UK. + +Previously a mastering and cutting engineer at [l=The Exchange], recognizable by the etching "MANDY THE EXCHANGE". She has also worked for [l=Electric Mastering], recognizable by the etching "ELECTRIC MANDY PARNELL", before leaving there to launched her own mastering and recording company [l=Black Saloon Studios]. + +Mastering Engineer of the Year 2012, 2015 and 2017 at the Music Producers' Guild Awards.Correcthttps://web.archive.org/web/20150118005205/http://www.mandyparnell.com:80/Blacksaloon%20Home%20.htmlhttps://en.wikipedia.org/wiki/Mandy_Parnellhttps://myspace.com/mandyparnellM.P.MANDYMANDY THE EXCHANGEMPMandeyMandiMandi ParnellMandyMandy 'Madge' ParnellMandy 'On The Move' ParnellMandy ParnelMandy ParnellphoMandy PurnellMandy RawlingsMandy The ExchangeMandy'sMendy Parnelle + +384817Alphonse MasselierFrench bass player and harmonicist +Born : August 12, 1925 (Paris) +Died : May 3, 2013 (Villemoisson-sur-Orge) +Also known as "Totole"Needs Votehttps://adp.library.ucsb.edu/names/330181"Totole" MasselierA. MasselierAl MasselierAlf "Totole" MasselierAlf MasseliAlf MasselierAlf MassellierAlf MasslierAlf. MasselierAlph. MasselierAlphonse "Alf" MasselierAlphonse Masselier (Totole)Alt "Totole" MasselierMasselierMasselier AlphonseP. MasselierT. MasselierTotol MasselierTotole MasselierToto MasselierQuintette Du Hot Club De FranceLucien Lavoute Et Son OrchestreAndré Ekyan Et Son EnsembleClaude Bolling Et Son OrchestreLucien Lavoute Et Le Travelling OrchestraPaul Piot Et Son OrchestreClaude Bolling Jazz All StarsSidney Bechet And His All-StarsClaude Thomain Et Son OrchestreHubert Fol & His Be-Bop MinstrelsLes Gros MinetsJoe Rossi Et Sa Grande FormationGéo Daly Et Son Quartette De La Rose RougeAndré Dedjean Et Son Quartet De Jazz + +384819André PaquinetFrench jazz trombonist, born October 1, 1916 in Arcueil, France. +Son of [a=Guy Paquinet], brother of [a2672851] Needs VoteA. PaquinetAndre PaquinetAndré PacquinetPaquinetDuke Ellington And His OrchestraAndré Popp Et Son OrchestreLucien Lavoute Et Son OrchestreChristian Chevallier Et Son OrchestreSFB Big BandLucien Lavoute Et Le Travelling OrchestraPaul Piot Et Son OrchestreOrchestre Jo MoutetLe Grand Orchestre De Paul MauriatTony Proteau Et Son OrchestreIvan Jullien Big BandThe Jean-Claude Naude Big BandJacques Hélian Et Son OrchestreMichel Legrand Et Sa Grande FormationThe Four BonesDRS Big BandClaude Bolling Big BandHenri Rossotti Et Son OrchestreAndré Paquinet Et Son OrchestreGérard Pochonet All StarsJoe Rossi Et Sa Grande FormationBenny Vasseur, André Paquinet Et Leur Orchestre + +384840Hervé TrovelPercussionist.Needs VoteEnsemble IntercontemporainOrchestre Des Champs ElyséesLe Cercle De L'HarmonieLe Concert de la Loge + +384925James TylerJames Henry TylerJames Tyler (3 August 1940 – 23 November 2010) was an American lutenist, banjoist, guitarist, composer, musicologist, author, and teacher and has been featured on over 60 early music recordings. +As a lutenist, he performed and recorded with New York Pro Musica, and also toured and recorded as a banjoist in the 1960's with "Max Morath and the Original Rag Quartet". During the 1970s and 80s, he performed and recorded in London with Musica Reservata, the Consort of Musicke, the Julian Bream Consort and the Early Music Consort of London. +He founded his own ensemble, the "London Early Music Group" in 1977, which lasted until 1990. He composed music for BBC television productions of Shakespeare plays, and also made an appearance as a lutenist in the 1972 film, "Mary Queen of Scots". +Needs Votehttp://en.wikipedia.org/wiki/James_Tyler_%28music%29Jim TylerEnglish Chamber OrchestraThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsThe Julian Bream ConsortThe Consort Of MusickeMusica ReservataOriginal Rag QuartetThe London Early Music GroupEnsemble De MediciThe English Concert + +385425Lucy WakefordLucy WakefordBritish harpist, playing the harp since the age of five. Born 1972 in Surrey, England, UK. +She was the youngest ever member of the [a=National Youth Orchestra Of Great Britain] at age ten. Studied at the [l=Royal College of Music, London]. She regularly gives solo performances and orchestral performances with many of the leading orchestras including the [a=BBC Symphony Orchestra], and [a=The London Symphony Orchestra]. Principal Harp of the [a=Philharmonia Orchestra] (2002-2011), the [a=Britten Sinfonia], and the [a=Orchestra Of The Royal Opera House, Covent Garden]. Harpist with [a=The Nash Ensemble]. Harp Chamber Music Coach at [l305416].Needs Votehttps://www.facebook.com/lucy.wakeford.56https://www.feenotes.com/database/artists/wakeford-lucy-1972-present/https://www.brittensinfonia.com/who-we-are/people/lucy-wakefordhttps://www.gsmd.ac.uk/staff/lucy-wakefordhttps://www.adderburyensemble.com/lucy-wakeford-harp/https://www.berliner-symphoniker.de/lucy-wakeford/https://www.naxos.com/Bio/Person/Lucy_Wakeford/44124https://www.hyperion-records.co.uk/a.asp?a=A2878https://signumrecords.com/product-category/artists/lucy-wakeford/https://www.imdb.com/name/nm2148306/WakefordThe London Telefilmonic OrchestraPhilharmonia OrchestraLondon Festival OrchestraThe Nash EnsembleOrchestra Of The Royal Opera House, Covent GardenNational Youth Orchestra Of Great BritainBritten SinfoniaPrimavera Chamber OrchestraEnsemble 360The Adderbury Ensemble + +385585James BoldenJacques PépinoDisco singer - songwriter + +Teamed with [a=Jack Robinson] he wrote some classic hits of the disco era for [a=Tina Charles], [a=Gloria Gaynor] etc. +CorrectBaldanBaldenBalderBlodenBohlenBoldBoldenBolenD. BoldenG. B. BoldenG.B. BoldenGoldenHaldenJ BaldenJ J BoldenJ. BaldenJ. BlodenJ. BohlenJ. BoldenJ. Bolden (D. Christie)J. BoldonJ. BolldenJ. J. BoldenJ. RobinsonJ. boldenJ.B BoldenJ.B. BoldenJ.BaldenJ.BoldenJ.BolenJ.J. BoldenJames BoldemJames BolderJames BordenJames BowdenJames Jack BoldenJames Jacques BoldenJames Jaques BoldenJamus Jacques BoldenJaques BoldenOldenT. RoldenDavid ChristieSoular SystemJacques PépinoPhilippe TarareBuddy Bolden (3)Frantique + +385599The Capitol International JazzmenCorrectCapital JazzmenCapitol International JazzmenThe Capitol JazzmenMax RoachColeman HawkinsJohn KirbyBenny CarterBill Coleman (2)Barney BigardOscar Moore + +385953Michael McMenemyBritish classical violinist. Born in South Shields, Tyne and Wear, England, UK. +Former member of the [a=London Symphony Orchestra] (1961-1962). He moved to USA or Canada.Needs Votehttps://www.imdb.com/name/nm1179954/Michael McMememyMichael McMenemeyMike Mac MenemyMike McMenemyMike McMenenyLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic Orchestra + +386162Thiemo BeschGerman horn player.Needs VoteMünchner PhilharmonikerOrchester Des Staatstheaters Am GärtnerplatzJuvavum-Brass + +386315Bobby RodriguezRoberto Rodriguez[b]For US salsa bandleader, composer, arranger and flute player active in New York City, see [a=Bobby Rodríguez (5)] +For the US trumpeter, see [a=Bobby Rodriguez (3)][/b] +American jazz (latin) bassist who played with [a=Machito] (age 17), [a=Tito Puente], [a=Charlie Palmieri], [a=Tito Rodriguez], [a=Cal Tjader], [a=Chico O'Farrill], [a=Kako (2)] among others. +Born: May 02, 1927 in Tampa, Florida / Died: July 29, 2002 in New York City, New York. +Needs VoteB. RodriguezBob RodriguezBobbie RodriguezBobbyBobby "B" RodriguezBobby "Big Daddy" RodriguezBobby B. RodriguezBobby R.Bobby RodriguesBobby RodrígesBobby RodríguezBobbyy RodriguezDr. Bobby RodriguezR. RodriguezRobert "Bobby" RodríguezRobert RodriguezRobert Rodriguez7 to 10Roberto RodriguezRoberto RodríguezRodriguezBig Daddy (2)Machito And His OrchestraDizzy Gillespie And His OrchestraCharlie Parker And His OrchestraThe Alegre All StarsTito Puente And His OrchestraThe Cesta All StarsTito Puente & His Latin Jazz All StarsNoro Morales Y Su SextetoVicentico Valdés Y Su Orquesta + +386326Antero JakoilaRaimo Antero JakoilaBorn on October 17, 1945 in Vaasa, Finland. A guitarist.Needs VoteA, JakoilaA. JakoilaA. JakolaA.JakoilaAnteroAntero Albert JakoilaJakoilaJussi & The BoysSeppo Hovi Beat GroupPunainen LankaTuomari Nurmio & Kongontien OrkesteriParadise (22)Eero Ja Jussi & The BoysHEC (2)Pentti Lasasen Studio-orkesteriAntero Jakoila Recording BandCaj IncorporatedCountry Boys (4)Dick Dynamite And His Hot LipsNostalgia (11)Antero Jakoila EnsembleHuutokuoro + +386331Iain ChurchesAppears as sound engineerCorrectI. ChurchesIainIain ChorchesIain ChurchessIain M. ChurchesIan ChurchesJain Churches + +386441George SiravoAmerican arranger, big band performer playing reeds section of various bands. +Born: 2nd October 1916, Staten Island, New York +Died: 28th February 2000, Medford, Oregon +Needs Votehttps://adp.library.ucsb.edu/names/209487https://en.wikipedia.org/wiki/George_SiravoG. SiravoGeo. SiravoGeorge SiracoGeorge SiranoGeorge SivaroRosaroSiradoSiraudSiravoSivardSivaroСераваФ. СераваGene Krupa And His OrchestraWill Hudson And His OrchestraGeorge Siravo And His OrchestraSiravo BandGeorge Siravo And His Orchestra And Chorus + +386443James PolkPianist [b]Dr. James Polk[/b] (September 10, 1940 - June 21, 2024) was one of the key figures in the Austin music scene from the late 1950s through the 1970s. + +Known in players' circles for his knowledge of the technical aspects of music (theory, composition, etc.), Polk was also responsible for forming the first integrated bands in the scene, which included young white players from University of Texas at Austin and Austin's West Side. +He founded the [l2479213] label in 1969. His main job in Austin was working for IBM, but he took several months leave of absence to tour with Lionel Hampton in New York and Europe. + +In 1978, Polk relocated to the West Coast to take a job with the Ray Charles Orchestra. +After touring and recording internationally, he came back to Austin in the late 80s. +He passed away on June 21, 2024. + +Needs Votehttp://musicians.allaboutjazz.com/musician.php?id=17449http://www.twinkrecords.com/bio.htmhttps://www.king-tearsmortuary.com/obituaries/james-polk-2024https://www.austinjazzsociety.org/content.aspx?page_id=22&club_id=215484&module_id=525290Dr. James PolkPolkJames PulkRay CharlesJames Polk & The BrothersExtreme HeatJames Polk & Co.CenterpeaceChurch On MondayJAMAD + +386548Carmen GrilloAmerican session guitarist, vocalist, songwriter, engineer. Owner of [l=Big Surprise Music (2)]. Was member of [a=Tower Of Power] from 1988 to 1997.Needs Votehttps://carmengrillo.com/https://twitter.com/cargrillhttps://www.facebook.com/grillocarmenC. GrilloCarman GrilloCarmen CrilloCarmen GrillioCarmon GrilloGrilloTower Of Power + +386684Clyde McPhatterClyde Lensley McPhatterAmerican singer, perhaps the most widely imitated R&B singer of the 1950s and 1960s, making him a key figure in the shaping of doo-wop and R&B. +Born: Nov. 15, 1932, Durham, NC - died: June 13, 1972 in Manhattan, NYC, NY. +McPhatter was lead tenor for [a=Billy Ward And His Dominoes] & largely responsible for the success they initially enjoyed. After his tenure with the Dominoes, McPhatter formed his own group, [a=Clyde McPhatter & The Drifters], before going solo after a short stint in the Army. +Clyde's musical career began at the age of 5 when he was lead tenor of his father's church choir. +Only 39 at the time of his death, Clyde McPhatter left a legacy of over 22 years of recording history. He was the first artist in music history to become a double inductee into the Rock and Roll Hall of Fame, first as a member of The Drifters, and later as a solo artist. as a result, all subsequent multiple inductees into the Rock and Roll Hall of Fame are said to be members of "The Clyde McPhatter Club". +Inducted into Rock And Roll Hall of Fame in 1987 (Performer).Needs Votehttp://en.wikipedia.org/wiki/Clyde_McPhatterhttps://www.opendurham.org/people/mcphatter-clydehttps://www.vintagerockmag.com/2024/11/spotlight-on-soul-the-clyde-mcphatter-story/https://rocky-52.net/chanteursm/mcphatter_c.htmhttps://recordcollectormag.com/articles/the-trouble-with-clydehttps://adp.library.ucsb.edu/names/330875C McPhatterC. M. PhatterC. Mac-PhatterC. Mc PhatterC. McFatterC. McPatherC. McPhatterC.MCphatterC.McPhatterClydeClyde Mc PhateClyde Mc PhatterClyde Mc-PhatterClyde Mc. PatterClyde McPatterClyde McPhateClyde McPhaterMc FaddenMc PatterMc PhatterMcPahtterMcPhateMcPhatherMcPhatteMcPhatterMcpPhatterクライド・マクファーターThe DominoesClyde McPhatter & The DriftersBilly Ward And His Dominoes + +386760Dietmar SchwalkeGerman cellist, born in 1958 in Pinneberg. He was a member of the [a=Berliner Philharmoniker] between 1994 and 2025.Needs Votehttps://schwalke.de/https://de.wikipedia.org/wiki/Dietmar_SchwalkeBerliner PhilharmonikerRadio-Sinfonieorchester StuttgartDie 12 Cellisten Der Berliner PhilharmonikerKreuzberger StreichquartettPhilharmonia Quartett Berlin + +386765Jack ZaydeYacob ZaydeAmerican Violinist. + +Dead: November 24, 1997 in Queens, New YorkNeeds Votehttp://adp.library.ucsb.edu/index.php/talent/detail/75641/Zayde_Yacob_instrumentalist_violinhttps://www.allmusic.com/artist/jack-zayde-mn0001198062/creditsJ. ZaydeJack ZaydeeJacques ZaydeYacob "Jack" ZaydeYacob ZaydeCharlie Parker With Strings + +386766Max HollanderAmerican violinist from New York (b.1910 - d.1986) +Father of [a1546019]Needs Votehttps://adp.library.ucsb.edu/names/321583Max HollandefMax HollnaderМакс ХоланндерHugo Montenegro And His OrchestraNBC Symphony OrchestraCharlie Parker With StringsBilly Byers And His OrchestraAl Cohn And His Orchestra + +386944Rudy LoveRudy LoveBorn September 15, 1948, in Oklahoma +Died October 6, 2021 after a battle with pancreatic cancer at age 73 in Wichita, KSNeeds Votehttp://www.rudylove.com/ LoveR. LoveRudy Love And The Love FamilyRudy Love & The Company Soul + +387498Linda CreedLinda Diane CreedRenowned Philadelphia songwriter and background vocalist for [a504145], [a240218] and The (Detroit) [a82735]. +(December 6, 1948 – April 10, 1986). +Married Stephen Lee Epstein in 1972. +She was inducted into the Songwriters Hall of Fame in 1992, with stand out work as collaborator to [a164262] and [a41107], in the soul, disco and deep ballad styles. +After Dusty Springfield recorded her song [m843876] she continued working with [a164262] and created "Stop, Look, Listen (To Your Heart)" next, which became a Top 40 pop hit for the Stylistics, beginning an extended collaboration that also yielded the group's most successful recordings, including "You Are Everything", "Betcha by Golly, Wow", "Break Up to Make Up", "People Make the World Go Round", "You Make Me Feel Brand New", and "I'm Stone in Love with You" (the latter with Anthony Bell). Creed and Bell also paired on a number of hits for the Spinners, including "Ghetto Child", "I'm Coming Home", "Living a Little, Laughing a Little", and "The Rubberband Man". Linda Creed also worked with fellow Pennsylvania native Phyllis Hyman on many of her songs, most notably "Old Friend".Needs Votehttps://www.songhall.org/profile/Linda_Creedhttp://en.wikipedia.org/wiki/Linda_CreedC. CreedCredCreedCreed LindaCreed Linda DianeCreed-LojeskiCreedeCveedD.L. CreedInda CreedL CreedL. C. ReedL. CreedL. CreekL. D. CreedL. Epstein-CreedL. GreedL. ReedL. クリードL.CreedLind CreedLinda CaedLinda Creed DianeLinda CreeedLinda CreetLinda CreidLinda Diane CreedLinda GreedLinda ReedLinda TredLindaCreedLynda CreedMcCreedMcReedOn Label incorrect As 'Green'R. Creedcreedリンダ・ウリートLinda Epstein + +387518Carlos De LeonDominican trumpeter and arranger active throughout the years in New York, Boston, Providence, Dominican Republic, and Venezuela. Also know as Carlitos De Leon.Needs VoteCarlitos De LeonCarlitos De LeónCarlos De LeónCarlos DeLeonCarlos DeLeonCarlos D'LeonIsmael MirandaJohnny PachecoOrchestra HarlowJohnny VenturaBillo's Caracas BoysSonido Original + +387615Robert von BahrCarl Robert Lauri von BahrSwedish music producer and record company director. Born 27 August 1943 in Solna. + +Robert von Bahr is a trained music teacher and singing teacher at the Royal College of Music in Stockholm and has also studied law at Stockholm University. He worked as a music technician for the [a939901] (now [a2770118]) from 1968 to 1973, and as a gramophone producer since 1970. He founded the record company [l51038] in 1973, of which he is CEO. He is also founder and CEO of the music download service eClassical AB. + +He has been married three times: the first time from 1970 1977 to the flutist [a1001357], the second time from 1979 to 2001 to [a3043405], and the third time from 2002–2010 to the flutist [a1160367], with whom he still lives. He is the son of civil engineer Lars von Bahr and Finnish ballet dancer Margaretha von Bahr née Wasenius (grand-daughter of Finnish music critic Karl Fredrik Wasenius). He is the half-brother of the Finnish pop singer [a623366]. + +Von Bahr received the UK magazine Gramophone's Special Achievement Award"in 2020 (see also in the photo section).Needs Votehttp://www.bis.se/https://en.wikipedia.org/wiki/BIS_Recordshttps://sv.wikipedia.org/wiki/Robert_von_BahrRobert BahrRobert von Bahr + +387651Curtis OusleyCurtis OusleySaxophonist, songwriter and producer better known as King Curtis. +Born 7 February 1934 in Fort Worth, Texas, died 13 August 1971 in New York, New York. +Needs Vote"King Curtis" Ousley"King" Curtis OusleyC. OusleyC.OusleyCurt OusleyCurtisCurtis (King Curtis) OusleyCurtis OsleyCurtis OuskyCurtis-OusleyCurtiss OusleyCusleyDusleyDuslyK. C. OusleyKing Curtis OusleyKurtis OusleyOmsleyOsleyOuselyOusleyOusley "King" CurtisOusley CurtisOuslyOvsleyOwleyOwsleyQueleyKing CurtisThe Killer Joe OrchestraKing Curtis & The KingpinsKing Curtis And His OrchestraKing Curtis ComboThe Kings Of TwistThe Commandos (2)King Curtis And The Noble KnightsKing Curtis & His Royal MenSam Price And His Texas BlusiciansKing Curtis & The Noble MenKing Curtis Quintet + +387675Dale JonesAmerican jazz bassist. + +Born : August 13, 1902 in Nebraska. +Died : June, 1970.Needs Vote"Doghouse" Dale JonesDaleJonesLouis Armstrong And His All-StarsWill Osborne And His Orchestra + +387782Geoff LoveGeoff Loveb. 4 September 1917, Todmorden, Yorkshire, England, +d. 8 July 1991, London, England. + +Musical director, arranger, composer and one of the UK’s most popular easy-listening music personalities. + +Learned to play the trombone in his local brass band and made his first broadcast in 1937 on Radio Normandy. He moved to the south of England, and played with violinist Jan Ralfini’s Dance Orchestra in London and with the Alan Green Band in Hastings. Joined Harry Gold’s Pieces Of Eight in 1946, and stayed with them until 1949. + +In 1955, he formed his own band for the television show 'On The Town', and soon afterwards started recording for EMI/Columbia with His Orchestra and Concert Orchestra. He had his first hit in 1958, with a cover-version of Perez Prado’s cha-cha-cha ‘Patricia’, and made several albums. In 1959, he started to release some recordings under the pseudonym, Manuel And His Music Of The Mountains. Besides his own orchestral records, he provided the accompaniment and arrangements on record, and in concert, for many popular artists. + +In the 70s, he created the Exotica band Mandingo and later formed Billy’s Banjo Band, known as Geoff Love’s Banjo Band, while still having hits under his own name with his 'Themes' albums. He also capitalized on late ‘70s disco as [a=Geoff Love's Big Disco Sound]. He was consistently popular on radio and television. +Needs Votehttp://en.wikipedia.org/wiki/Geoff_LoveG LoveG. LoveG.LoveGeoff - LoveGeoff / LoveGeoff Love And His OrchestraGeoff Love's MusicGeoffrey LoveGeoffry LoveJeff LoveLoveManuelManuel And His StringsManuel And His Music Of The MountainsMandingo (6)Geoff Love & His OrchestraGeoff Love's Big Disco SoundGeoff Love, His Orchestra & SingersThe Geoff Love SingersThe Geoff Love Country SingersGeoff Love And His Ragtime BandThe Geoff Love BanjosGeoff Love & His Latin-American RhythmHughie Green's Sing-Along PartyGeoff Love and his Rag Pickers + +387838Rigby PowellAmerican trumpet player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +387977Bobby SchmidtGerhard Schmidt ZinkGerman drummer, songwriter, singer and producer, born 25 March 1923 in Berlin, Germany and died 03 January 2014 in Hamburg, Germany. From 1945 to 1955 he played the drums for [a313916]. In 1955 he founded his own band [a1789044], with which he made recordings for numerous artists. In 1958 he settled down as a producer at Deutsche Grammophon, where he discovered and promoted [a455109], among others. Until his retirement in July 1986 he maintained an intensive collaboration with [a334643].Needs Votehttps://adp.library.ucsb.edu/names/342596https://de.wikipedia.org/wiki/Bobby_SchmidtB. SchmidtB. SmidtB.SchmidtBobby SchmidBobby Schmidt/Gerhard Zink SchmidtD. B. SmidtSchmidSchmidtSchmidt, BobbyБ. ШмидтPeter ZeedenLeo SuckmanPaule BollermannOrchester Kurt EdelhagenJazzorchester Kurt EdelhagenKurt Edelhagen Und Die AllstarsBobby Schmidt Mit Seinem SextettBobby Schmidt Mit Seinen SolistenOrchester Bobby Schmidt + +388159Dick SpencerRichard O. SpencerAlto saxophonist, also occasionally plays soprano saxophone, flute and clarinetNeeds VoteRichard "Dick" SpencerRichard O. SpencerRichard SpencerSpencerRonnie Ross & His BandToshiko Akiyoshi-Lew Tabackin Big BandHarry James And His OrchestraThe World Jazz All Star BandHarry James & His Music MakersLouie Bellson Big BandEugen Cicero QuintettThe Max Greger Big BandDick Spencer Quintet + +388160Bill BerryWilliam R. BerryAmerican jazz trumpeter, flugelhornist, vibraphone and cornet player; born 14 September 1930 in Benton Harbor, Michigan, USA, died 13 October 2002 in Los Angeles, California, USANeeds VoteB. BerryBerryBilly BerryW. BerryWilliam BerryWoody Herman And His OrchestraDuke Ellington And His OrchestraThe World Jazz All Star BandMilt Jackson And Big BrassWoody Herman And The Swingin' HerdDave Pell OctetMaynard Ferguson & His OrchestraBill Berry QuartetThe Ellington All StarsWoody Herman And The Fourth HerdThe Herb Pomeroy OrchestraThe Hanna-Fontana BandBill Berry And The LA BandThad Jones & Mel LewisThe Brian Priestley Special SeptetThe Jack Nimitz-Bill Berry QuintetLouie Bellson's Big Band Explosion! + +388165Jack RainesAmerican trombonistNeeds VoteJack RainsBenny Goodman And His OrchestraThe World Jazz All Star BandJerry Gray And His OrchestraJimmy Dorsey, His Orchestra & ChorusThad Jones & Mel Lewis + +388217Carl BurnettJazz funk drummer. Born February 20, 1941 in Camden, Arkansas, USA. + +[b]Note: For the jazz, R&B guitarist, multi-instrumentalist please use [a=L. Carl Burnett][/b] + +. +Needs Votehttps://musicbrainz.org/artist/e925511d-251f-4c4b-8fea-b03a69bfc222https://de.wikipedia.org/wiki/Carl_Burnetthttp://www.jazzmusicarchives.com/artist/carl-burnett-drumsC. BurnettCarl BurnetteCarl BurnnetArt Pepper QuartetCarl Burnett QuintetGeorge Cables TrioPepper Adams QuintetThe Milcho Leviev QuartetTeddy Saunders SextetJesse Sharps QuintetJack Sheldon & His West Coast FriendsMilcho Leviev TrioSonny Stitt & His West Coast FriendsBill Watrous QuintetFreddie Hubbard Sextet3 More Sounds + +388272Joanne BrackeenJazz pianist, composer and educator, born JoAnne Grogan July 26, 1938 in Ventura, California, USA +In the late 1950s she worked in Los Angeles with [a=Harold Land], [a=Dexter Gordon] and others. +She married [a=Charles Brackeen] in the early 1960s and moved with him to New York in 1965.Needs Votehttp://www.joannebrackeenjazz.com/https://en.wikipedia.org/wiki/Joanne_BrackeenBrackeenJ. BrackeenJ. BrackenJ.BrackeenJo Anne BrackeenJo Anne M BrackeenJoAnne BrackeenJoanne Brackeenaジョアン·ブラッキーンStan Getz QuartetThe Joanne Brackeen TrioJohn McNeil QuintetJoanne Brackeen And Special FriendsJoAnne Brackeen – Clint Houston DuoJoanne Brackeen Quartet + +388567Sy MiroffViolinist. Born Feb. 6, 1914. Died April 1978.Needs VoteCy MiroffS. MiroffSMSeymour MiroffSeymour Miroff (SM)Si MiroffTommy Dorsey And His OrchestraAl Wagner And His Philharmonic StringsBilly Byers And His OrchestraAl Cohn And His Orchestra + +388723Mike FryeBritish drummer and percussionist. + +For almost twenty years (1972-1988), Michael Frye was one of the principals of the London Symphony Orchestra, where he had the honour of meeting Stravinsky, and performing with musicians as diverse as Herbert Von Karajan, Bernstein and John Williams. He was able to balance his classical career with the world of pop, recording with the likes of Sir Paul McCartney, Sir Elton John, The Who, Barbara Streisand, Frank Zappa and many, many more. +It was whilst travelling the world as a musician that Mike realised that his homeland had more history and heritage than most of the other places he was seeing and, wanting to share its treasures with others, he completely changed profession and created "British Heritage Chauffeur Tours".Needs Votehttp://www.bhctours.co.uk/index.php/about-us/founderFryeFyreM FryeM. FryM. FryeM.FryeMichael FreyMichael FryMichael FryeMike FryPryeLondon Symphony OrchestraLondon Wind OrchestraThe Mike Oldfield GroupThe Military Ensemble Of London + +388770Larry MilesAmerican recording engineer. Known to have worked at [l353265] and [l319649]. +CorrectLawrence Miles + +388773Matthias WilkeMatthias WilkeHe plays harpsichord, organ, continuo, viola and is choir director as well as conductor. He has been born in Berlin (Germany) and studied viola, piano and composition at the Hannes Eisler university of music in Berlin (Germany). Later he concentrated himself to playing harpsichord, organ and continuo. Currently he is viola player at [a833446]. He's also the choir director of the Russian-orthodox cathedral in Berlin (Germany).Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/matthias-wilke.24493Staatskapelle BerlinSchütz-AkademieBerliner Barock-Trio + +389044Tapani IkonenTuomo Tapani IkonenFinnish drummer and percussionist, nicknamed Nappi. Born 1946. +According to the statistics of Gramex (Copyright Society of Performing Artists and Phonogram Producers in Finland) he has played on 5797 recordings (mostly in the '70s and '80s) making him the most prolific session drummer in Finland.Needs Vote"Nappi" Ikonen"Nappi" Tapani IkonenIkonenN.IkonenNappi IkonenT. IkonenTapani "Nappi" IkonenTapani «Nappi» IkonenTapani ”Nappi” IkonenTapio IkonenSeppo Hovi Beat GroupMartti Pohjalainen TrioJani Uhleniuksen Uusrahvaanomainen OrkesteriKari Fall SyndikaattiDick Dynamite And His Hot LipsTami ComboTaivaantemppeliPentti Lahti BandMircea Stan QuintetSolistiyhtye Humina + +389096Marco BeasleyItalian classical [b]tenor[/b] vocalist and [b]musicologist[/b] specialized in early baroque music. +Born 1957 in Naples. Co-founder of ensemble [a=Accordone]. +Needs Votehttp://www.marcobeasley.it/BeasleyM. BeasleyMarco BeaslyМарко БизлиL'ArpeggiataAccordoneCoro Della Radio Televisione Della Svizzera ItalianaEnsemble DaedalusIl Teatro ArmonicoSator MusicæMadrigalisti Della RSIEnsemble Ars ItalicaEnsemble Del RiccioMusica Ficta (7) + +389170Fiona McCapraFiona McCapraViolinist.Needs Votehttps://www.brittensinfonia.com/who-we-are/people/fiona-mccapraFiona MaccapraFiona MccapraFional McCapraCity Of London SinfoniaThe Chamber Orchestra Of EuropeBritten SinfoniaEndymion EnsembleTouchwood Piano Quartet + +389193Ken AscherKenneth Lee AscherAmerican keyboardist, pianist, arranger, producer, songwriter, and composer. He was born October 26, 1944 in Washington, D.C..Needs Votehttp://en-gb.facebook.com/pages/Kenny-Ascher/111893638829335https://en.wikipedia.org/wiki/Kenneth_Ascherhttps://www.imdb.com/name/nm0038502/https://www.imdb.com/name/nm12577907/https://repertoire.bmi.com/Search/Catalog?num=hRCDW0HAXwqHOozbTCQnNA%253d%253d&cae=xMd%252bVFEJuTdgJGA%252fMb8zlQ%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22ascher%20kenneth%20%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dAscherAscher Kenneth LeeAsherK. AscherK. AsherK. L. AsherK. Lee AscherK.AscherK.L. AscherKen AsherKenneth AscherKenneth AsherKenneth Lee AscherKenny AscherKenny AshcerKenny AsherKevin AscherVen AscherThe Plastic Ono BandWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe Leslie West BandThe Woody Herman Big BandDavid Matthews OrchestraBand Of BonesThe Birdland Big BandScott Whitfield Jazz Orchestra EastWally Dunbar Jazz ElevenThe Nuff Brothers + +389274Sarah McMahonIrish classical cellist.Needs Votehttps://aam.co.uk/sarah-mcmahon/Sarah MacMahonSarah MacmahonSarah Rose McMahonLa SerenissimaThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersThe Callino QuartetCamerata KilkennyArcangeloIrish Baroque OrchestraMarylebone CamerataClassical OperaTheatre Of Early MusicThe English ConcertRoyal Academy of Music Baroque OrchestraThe MozartistsThe Illyria ConsortBenedetti Baroque Orchestra + +389530Christophe MorinFrench cellistNeeds Votehttps://www.christophemorincellist.com/welcomeC. MorinMahler Chamber OrchestraParis Symphonic OrchestraEuropean CamerataTrio Miroir + +389532Florent BremondFlorent BrémondFrench violist, born 1973 in Marseille, France.Needs VoteF. BrémondFlorent BremontFlorent BrémontMahler Chamber OrchestraOrchestre De ParisOrchestre Du Théâtre Royal De La MonnaieEuropean CamerataEnsemble Carpe Diem + +389534Elsa BenabdallahFrench violinistNeeds VoteElsa Ben AbdallahElsa BenadballahElsa BenhabdallahElsa BennabdallahOrchestre De ParisLa Petite Orchestre De Cannes + +389536Fabien BoudotFrench violinist.Needs VoteF. BoudotOrchestre De ParisL'Orchestre De Bretagne + +389746Bobby SheenRobert Joseph Sheenb. Robert Joseph Sheen, 17th May 1941, St. Louis, Missourri, U.S.A. +d. 23rd November 2000, Los Angeles California, U.S.A. + +Needs Votehttp://www.soulwalking.co.uk/Bobby%20Sheen.htmlB. SheenBobbie SheenRobert SheenShawnSheenBob B. Soxx And The Blue JeansThe RobinsThe Alley CatsThe Ding Dongs (2) + +389794Melinda MaxwellOboist.Needs Votehttps://en.wikipedia.org/wiki/Melinda_MaxwellM.MaxwellMalinda MaxwellLondon SinfoniettaCornucopia EnsembleThe Whispering Wind Band + +390115Philippa DaviesClassical flautist. +She began her career as principal flute with the National Youth Orchestra of Great Britain, and gained a scholarship to London's Royal College of Music where she studied with [a852031] and [a836447]. She made her debut in the 1977 BBC Proms. She was then the flute player with Sir [a439843]'s ensemble Fires of London (1977-85), Capricorn and The Albion Ensemble. She now performs mainly with The Nash Ensemble and London Winds, as well as her own group, Philippa & Friends (a flexible ensemble with a line-up ranging from a duo to six or more players) and the Davies Cole Duo, with [a960913] (harpsichord). Philippa is also a Professor at the Guildhall School of Music.Needs Votehttp://www.jwnelleke.nl/philippadavies/index.htmhttp://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/66-philippa-daviesPhilipa DaviesPhilippa DavisPhillipa DaviesPhillippa DaviesPippa Daviesフリッパー・ディビスThe London Session OrchestraRoyal Philharmonic OrchestraFires Of LondonThe Nash EnsembleNational Youth Orchestra Of Great BritainThe Albion EnsembleCapricorn (14)London Winds + +390182Hannu SaxelinHannu SaxelinBorn January 27th, 1938 in Kemi, Finland. Died April 16th, 2004 in Helsinki, Finland. A Finnish jazz musician and music journalist.Needs VoteHannu SakselinHannu Saxelin Alto SaxHeikki Sarmanto Big BandNunnu Big BandOiling BoilingPentti Lasasen Studio-orkesteriHannu Saxelin With Studio OrchestraSoitinyhtye LiisaBig Band PartisaanitRadion Tanssiorkesteri + +390227Mya FracassiniMya FracassiniMezzo-Soprano vocalistNeeds Votehttp://www.myspace.com/myafracassinihttp://www.myafracassini.itFracassiniM. FracassiniMyaMya & The MirrorModo AntiquoL'Homme ArméCoro Della Radio Televisione Della Svizzera ItalianaCappella Artemisia + +390313Jay SollenbergerTrumpet player.Needs VoteJay Paul SollenbergerSollenbergerWoody Herman And His OrchestraChase (5)Stan Kenton And His OrchestraWoody Herman BandWoody Herman And The Thundering HerdThe Boulevard Big BandThe Trilogy Big BandKansas City Jazz OrchestraThe Boulevard BrassThe New Vintage Big BandRiver City Jazz OrchestraThe Dave Stephens Swing Orchestra + +390316Jim OattsTrumpet player.Needs VoteChase (5)Stan Kenton And His OrchestraDes Moines Big BandThe Daugherty McPartland Big Band + +390473Ike WilliamsTrumpet player.Correct"Ike" WilliamsIke "Diz" WilliamsJohnny Otis And His Orchestra + +390504Joe PorcaroJoseph Thomas PorcaroAmerican jazz drummer, percussionist and educator (born: April 29, 1930 in Hartford, Connecticut; died: July 6, 2020). +His three sons (all musicians): [a=Steve Porcaro] (b. 1957), keyboardist and composer, [a=Mike Porcaro] (1955-2015), a bassist, and [a=Jeff Porcaro] (1954-1992), a drummer. +Worked with Stan Getz, Frank Sinatra, Gerry Mulligan, Don Ellis, Sarah Vaughan, Natalie Cole, Freddie Hubbard, Pink Floyd, Gladys Knight, Madonna and many others. He appears also on several film scores by James Newton Howard, John Williams, Jerry Goldsmith, James Horner, Danny Elfman, John Frizzell and his son Steve.Needs Votehttps://en.wikipedia.org/wiki/Joe_Porcarohttps://www.imdb.com/name/nm1826684/https://adp.library.ucsb.edu/names/338139J. PorcaroJ.PorcaroJo PorcaroJoe ParcaroJoe PercaroJoe PoracoJoe PorcardoJoe T. PorcaroJoseph PorcaroJoseph Porcaro, Jr.Joseph T. PorcaroPorcaro JoePorcaro Joseph T.Gerald Wilson OrchestraLalo Schifrin & OrchestraThe Clayton-Hamilton Jazz OrchestraEmil Richards & The Microtonal Blues BandThe Mike Mainieri QuartetLouie Bellson Big Band + +391046Otis HayesOtha Maurice HayesPianist.CorrectHayesHaysO. HayesOris HayesOtis Hayes Jr.Little OtisOtha HayesJohnny Otis And His OrchestraOtis Hayes Trio + +391245Dennis Wilson (2)Dennis Carl WilsonDennis Wilson (born December 4, 1944, Inglewood, California, USA – died December 28, 1983, Marina del Rey, California, USA) was an American musician, singer, and songwriter who co-founded [a70829] along with his brothers [url=https://www.discogs.com/artist/189718-Brian-Wilson]Brian[/url], [url=https://www.discogs.com/artist/260571-Carl-Wilson]Carl[/url] and cousin [a372789]. Son of [a363017] and [a3239364]. Uncle of [a434651] and [a413862]. + +Dennis served mainly on drums and backing vocals for The Beach Boys from the bands formation in 1961, until his death in 1983. While he was allowed few lead vocals in the 1960's, his prominence as a singer-songwriter increased into the 1970's. He was also known for his brief association in the late 1960's with aspiring songwriter [a58562], who was later convicted of murder conspiracy. In 1971, Dennis starred in the road movie [i]Two-Lane Blacktop[/i]. + +Dennis drowned at Marina Del Rey, Los Angeles, after drinking all day and then diving in the afternoon, to recover items he had thrown overboard at the marina from his yacht three years prior. + +He was married [a=Karen Lamm] twice — first in 1976 and again in 1978.Needs Votehttps://en.wikipedia.org/wiki/Dennis_Wilsonhttps://www.allmusic.com/artist/dennis-wilson-mn0000252356C. WilsonCarl B. WilsonCharles MansonD WilsonD. WilsonD. WIlsonD. WilsomD. WilsonD. WisonD.WilsonDWDave WilsonDennisDennis C. WilsonDennis Carl WilsonDennis WilosnDennis WilsonTaylor HawkinsWIlsonWilsonBob Delgado & Denis Di DanatoThe Beach Boys + +391292Jacqui PenfoldJacqui PenfoldSub-principal Viola of the [b]BBC Scottish Symphony Orchestra[/b].CorrectHallé OrchestraBBC Scottish Symphony OrchestraBournemouth Symphony Orchestra + +391301Alison GreenBritish bassoonistNeeds VoteGreenScottish Chamber OrchestraScottish Chamber Orchestra Wind Soloists + +391303Joel HunterBritish classical violist, born in Yorkshire. + +He picked up the viola at aged 7. He ended up in London continuing his studies at the Royal Academy of Music. + +Immediately after finishing his studies, Joel was appointed Co-Principal Viola with the BBC Scottish Symphony Orchestra in Glasgow, moving on to the Swedish Radio Symphony Orchestra in Stockholm a few years later where, as Principal Viola, he worked until 2014. He is currently the principal violist of the Mahler Chamber Orchestra, which he combines with a busy freelance career throughout Europe. + +He has appeared as a Guest Principal Violist in most of the UK orchestras, including the Philharmonia, Royal Philharmonic, London Philharmonic, City of Birmingham Symphony, The BBC National Orchestra of Wales, Philharmonic and Concert Orchestras, Royal Scottish National Orchestra, Scottish Chamber Orchestra, London Chamber Orchestra, Aurora, Royal Northern Sinfonia, as well as internationally with the Symphonie Orchester des Bayerischen Rundfunk, Bamberg Symphony, Oslo Philharmonic, Munich Philharmonic, Leipzig Gewandhausorchester Leipzig and the Amsterdam Sinfonietta. + +As a chamber musician, Joel has performed with many eminent artists, including Christian Tetzlaff, Alisa Weilerstein, Pascal Roge, Mitzuko Uchida and Leif Ove Andsnes in concerts throughout the world. Recent recordings include the Korngold string sextet for Chandos. He is a founding member of the Logos Chamber Group playing annually at the Joy Of Music Festival and International Piano Competition in Hong Kong. + +In 2001 he was made an ʻAssociate Member’ of the Royal Academy of Music in London (ARAM) for his services to the profession. +Needs VoteJo HunterMillennia StringsSveriges Radios SymfoniorkesterLondon Metropolitan OrchestraMahler Chamber OrchestraEnglish SinfoniaThe Goldberg EnsembleSwonderful OrchestraSinfonia Of London Chamber EnsembleThe Goldberg Ensemble QuartetThe Roff Ensemble + +391307Carole HowatBritish violinistCorrectScottish Chamber Orchestra + +391309Cheryl CrockettBritish violinistNeeds VoteCheryll CrockettThe BT Scottish EnsembleScottish Ensemble + +391313Andrea KuypersFlute player.Needs VoteRoyal Scottish National Orchestra + +391319Elin EdwardsClassical violinistCorrectScottish Chamber Orchestra + +391328Simon CowenTrombonist.Correcthttps://www.facebook.com/profile.php?id=100007638408960SimonSimon J CowenRoyal Liverpool Philharmonic Orchestra + +391329Daniel NewellDaniel NewellBritish classical trumpeter, cornetist, musician & author. Born on 30 October 1975 in London, England, UK. +He studied at [l305416]. Former member of the [a=London Philharmonic Orchestra] (09/2009-01/2015), the [a=London Brass], and former Sub-Principal Trumpet with the [a=London Symphony Orchestra] (18/02/2015-12/2016). Principal Cornet of the [a=Orchestra Of The Royal Opera House, Covent Garden] since 2016. Creator and author of 'Billy's Band' series of books for children age 3+.Needs Votehttps://www.linkedin.com/in/dan-newell-a4448487/https://joinbillysband.co.uk/dan-newell/https://www.facebook.com/dannewell.billysbandhttps://en.wikipedia.org/wiki/Daniel_Newellhttps://lso.co.uk/component/content/article.html?id=388:welcome-to-new-membershttps://www.imdb.com/name/nm5526291/D. NewellDan NewellDanny NewellLondon Symphony OrchestraLondon Philharmonic OrchestraLondon BrassThe Millennia EnsembleOrchestra Of The Royal Opera House, Covent GardenThe London Scratch OrchestraThe New Blood OrchestraBrunel EnsembleGuildhall Symphonic Wind EnsembleBristol Easton Band + +391331Alison BalsomAlison Louise BalsomEnglish classical trumpet soloist, arranger, producer, and music educator. +Born October 7, 1978 in Hitchin, Hertfordshire, UK. +Aged 15 to 18, she played with the [a861263]. She studied at the [url=https://www.discogs.com/label/1014340-Conservatoire-National-Sup%C3%A9rieur-De-Musique-Et-De-Danse-De-Paris]Paris Conservatoire[/url] and [l305416]. Alison was the Principal Trumpet of the [a=English Chamber Orchestra]. From 2018 to 2019, she was Artistic Director of Cheltenham Music Festival. In 2016, she was appointed an Officer of the Order of the British Empire (OBE). +She has a son, Charlie (b. 2010), with her ex-partner, the English conductor [a=Edward Gardner], whom she separated in 2011. In 2017, she married film director Sir [a=Sam Mendes].Needs Votehttps://www.alisonbalsom.com/https://www.facebook.com/AlisonBalsomhttps://x.com/alisonbalsomhttps://www.instagram.com/alisonbalsom/https://www.youtube.com/channel/UCGCGRYnK8HBjsl5Kowex0JQhttps://en.wikipedia.org/wiki/Alison_Balsomhttps://musicianbio.org/alison-balsom/https://www.famousbirthdays.com/people/alison-balsom.htmlhttps://www.baroque.org/About/Soloists/alison-balsomhttps://www.geni.com/people/Alison-Balsom/6000000077199990008A BalsomA. BalsomA.BalsomABAlison BalsamBalsomアリソン・バルサムLondon Symphony OrchestraThe London Chamber OrchestraNational Youth Orchestra Of Great BritainAluminium + +391733Raynard MinerRaynard MinerAmerican singer songwriter and pianist born March 18, 1946 in Chicago, Illinois, died April 4, 2024.Needs Votehttps://www.adampwhite.com/westgrandblog/checkmatehttp://www.myspace.com/raynardminerI.R. MinerM. MinorManerMilnerMinerMiner B. RaynardMinorP. MinerR MinerR, MillerR, MinerR. MillerR. MilnerR. MimerR. MinderR. MinerR. MineryR. MinorR.MilnerR.MinerRay MilnerRay MinerRaymond MinerRaynard KinerRaynard MaynerRaynard MinorReynard MinerReynard MinorWiner + +391744Connie HainesYvonne Marie Antoinette JaMaisAmerican popular big band singer and actress. +Born January 20, 1921, Savannah, Georgia, USA. +Died September 22, 2008, Clearwater Beach, Florida, USA (87 years of age). +Married to bandleader [a3969388] (1966-1972). + +She was petite in size (less than 5' tall) but sang like she was twice that. Her recordings were frequently up-tempo big band songs. She performed with orchestras led by [a313097] and [a229639]. She also performed in a number of films and in the early 1960's had her own TV program, the [i]Connie Haines Show[/i]. +She charted in the U.S. twice as a solo artist and once in a duet with [a1380414], all in 1949. Her first charted song was "How It Lies, How It Lies, How It Lies!" which landed at #19 in April. "The Darktown Strutters' Ball", her duet with Dale, hit #29 in August. And her final charted song came in September: "Maybe It's Because", which hit #20. +In the early 1950s, Haines joined with [a597144], [a835592] and [a3454018] to do an impromptu performance at a charity night for Hollywood Episcopal Church. Their version of the spiritual "Do Lord" entertained the audience and attracted the attention of people in the recording industry. The group (with [a647313] replacing Della Russell) recorded several gospel albums, donating all of their royalties to the churches to which each belonged. The group also appeared on The Colgate Comedy Hour and the Arthur Murray program on TV (sometimes referred as "The Arthur Murray Party Actresses"). Connie, Beryl and Jane also recorded an album together "The Magic Of Believing" as a trio.Needs Votehttp://en.wikipedia.org/wiki/Connie_Haineshttps://www.imdb.com/name/nm0354234/https://adp.library.ucsb.edu/names/106986C. HainesC.H.Conni HainesConnieConnie Haines With Instrumental TrioConnie HayesConnie HaynesConny HainesRev. Connie HainesTommy Dorsey And His OrchestraHarry James And His Orchestra + +391755Al ClevelandAlfred W. ClevelandAmerican Soul/R&B songwriter and producer, worked mainly for [l1723]. + +Born: March 11, 1930 in Pittsburgh, Pennsylvania +Dead: August 14, 1996 in Las Vegas, Nevada + +Has worked with artists like [a=Donny Hathaway] ([i]Come Back Charleston Blue[/i]), [a=Smokey Robinson] ([i]I Second That Emotion[/i]) and [a=Marvin Gaye] ([i]What's Going On[/i]).Needs VoteA . ClevelandA ClevelandA. ClavelandA. ClevelandA. ClevlandA. W. ClevelandA.ClevelandA.W. ClevelandAfred ClevelandAl CleevelandAl ClevlandAl. ClevelandAl. CovelandAlfred ClevelandAlfred W ClevelandAlfred W. "Al" ClevelandAlfred W. ClevelandArthur ClevelandCleavelandClecelandClevelandCleveland AlfredClevlandH. ClevelandH.ClevelandS. Cleveland + +391773James Dean (3)James Anthony DeanAmerican Soul R&B songwriter . +Best known for his work at [l1723] in the 1960s, often in duo with [a301529]. +Cousin to [a589715] and [a195791] + +Born: February 7, 1943 in Detroit, Michigan. +Dead: April 9, 2006 in Detroit, Michigan. Needs Votehttp://en.wikipedia.org/wiki/James_Dean_(songwriter)C. DeanD. DeanDeadDeanDearI. DeanJ DeanJ. DeanJ. DeanJ. DeaneJ. DeansJ.A. DeanJ.DeanJamesJames A DeanJames Anthony DeanJames DeamJames DeanJimmy DeanJimmy Ray DeanW. H. DeanDean & Weatherspoon + +391846Frances DewarBritish violinistNeeds VoteFrancis DewarBBC Symphony OrchestraMillennia Strings + +392456Christian BardGerman classical cellist, born October 3, 1961 in Frankfurt/OderNeeds VoteRundfunk-Sinfonieorchester Berlin + +392677Boston Pops OrchestraBoston PopsThe Boston Pops Orchestra is an American orchestra based in Boston, Massachusetts, that specializes in playing light classical and popular music. Founded in 1885 as a subsection of the [a=Boston Symphony Orchestra] (BSO). +The naming policy on the sleeve and labels have varied over the years: +1935 - Boston "Pops" Orchestra - with "Pops" in quotes +1949 - Boston Pops Orchestra - quotes are dropped from this year. Dominant sleeve name 1949-1960, 1978-2005. +1952 - Boston Pops - Used infrequently 1952-1959. Becomes the dominant sleeve name from 1960-1978 and again 2005-2023, due to reissues. Note that labels still usually credit the full name Boston Pops Orchestra throughout the era.Correcthttps://en.wikipedia.org/wiki/Boston_Pops_Orchestrahttps://en.wikipedia.org/wiki/Hatch_Memorial_Shell#Historyhttps://www.bso.org/https://www.youtube.com/thebostonpopshttps://www.twitter.com/thebostonpopshttps://www.facebook.com/TheBostonPopshttps://www.instagram.com/thebostonpops/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103024/Boston_Pops_Orchestra"Boston Pops" OrchestraBostonBoston "Pops"Boston "Pops" Orch.Boston "Pops" OrchestraBoston "Pops" OrkestBoston 'Pops' OrchestraBoston OrchestraBoston PopBoston PopsBoston Pops Orc.Boston Pops Orch.Boston Pops OrchesterBoston Pops Orchestra & ChorusBoston Pops OrkestBoston Pops OrquestaBoston Pops OrquestraBoston Pops with ChorusBoston Promenade OrchestraBoston “Pops” OrchestraBoston ”Pops” OrchestraBostonski Pop OrkestarBostonski Pops OrkestarHet Boston Pops OrkestKonzert-OrchesterLa Boston Pops OrchestraLa Orchestra Boston PopsLa Orq. Boston PopsLa Orquesta Boston PopsLe Boston Pops OrchestraMembers Of The Boston PopsMembers Of The Boston Pops OrchestraMembers of the Boston Pops OrchestraMitglieder D. Bostoner Sinfonie-OrchestersOrchestraOrchestra Boston PopsOrchestre Boston PopsOrchestre Du Boston PopsOrchestre Philharmonique "Pops"Orchestre du Boston PopsOrq. "Boston Pops"Orq. Boston PopsOrquesta "Boston Pops"Orquesta Boston "Pops"Orquesta Boston PopsOrquesta De Boston "Pops"Orquesta De Boston PopsOrquesta Sinfónica de BostonOrquestra Boston "Pops"Orquestra Boston PopsOrquestra Boston «Pops»Orquestra The Boston PopsPops OrchestraPoston PosThe Boston "Pops" OrchestraThe Boston 'Pops' OrchestraThe Boston Pop OrchestraThe Boston PopsThe Boston Pops Orch.The Boston Pops OrchestraThe Boston Pops.Trente-Quatre Violons Du Boston Pops OrchestraΟρχήστρα Pops Της Βοστώνηςボストン・ポップスボストン・ポップスオーケストラボストン・ポップス・オーケストラボストン・ポップス管弦楽団Boston Promenade OrchestraFestival Concert OrchestraJohn LambLouis BellsonAlfred KripsArthur FiedlerJason HorowitzAlan StepanskyTim Morrison (2)Norman BolterMax WinderTamara SmirnovaAnn HobsonJay WadenpfuhlLeo LitwinPaul Fried (2)Laurence ThorstenbergCharles Smith (6)Everett FirthArthur PressMartin HohermanSato KnudsenMax HobartBo Youp HwangPasquale CardilloDaniel KatzenDaniel BauchFredy OstrovskyEinar HansenAlfred SchneiderVladimir ResnikoffSheldon RotenbergMinot BealeRoger ShermontGeorge ZazofskyLeo PanasevichStanley BensonRolland TapleyGottfried WilfingerNoah BielskiHerman SilbermanDarren AcostaJessica ZhouThomas RolfsReuben GreenRoger VoisinBerj ZamkochianRobert KarolLawrence WolfeHarry Ellis DicksonPatrick HollenbeckRichard SebringJoel MoerschelSi-Jing HuangMark Ludwig (2)Manuel ValerioOwen YoungMihail JojatuAndre ComeGabriel BartoldWilliam ShislerLuis LeguiaJerome PattersonJonathan MenkisRichard RantiRobert SheenaCarol ProcterJohn SalkowskiWendy PutnamMarianne GedigianMartha BabcockAza RaykhtsaumCraig NordstromRonald WilkinsonNicole MonahanDouglas YeoElizabeth OstlingElita KangGeralyn CoticoneThomas Martin (6)Fred BudaValeria KuchmentJoseph PietropaoloJonathan Miller (9)Mark Henry (6)Andrew Pearce (2)Edward GazouleasNancy BrackenGregg HenegarDennis RoyJohn StovallJames OrleansJames Cooke (2)Keisuke WakaoChester SchmitzMark McEwen (2)Michael ZaretskyJoseph McGauleyLucia LinVictor RomanulBonnie BewickRoland SmallRachel FagerburgRonald KnudsenRobert OlsonKazuko MatsusakaTodd SeeberJ. William HudginsTimothy GenisRonald FeldmanJennie ShamesLois SchaeferJosef OroszAdam EsbensenThomas van DyckFelix ViscugliaCharles YancichArnold BrostoffAlexandre LecarmeTatiana DimitriadesToby OftAlexander VelinzonBlaise DejardinGlen CherrySheila FiekowskyIkuko MizunoXin DingCynthia MeyersRebecca GitterJulius Schulman (2)Matthew RuggieroJohn Holmes (20)Michael Wayne (3)Kevin Owen (3)Marc Jeanneret (2)Siobhan KelleherJerome Rosen (2)Elizabeth Ostling Klein + +392717Enrique GranadosPantaléon Enrique Costanzo Granados y CampiñaSpanish pianist and composer of Romantic period. +Born: July 27, 1867, Lérida (Lleida in Catalán), Catalonia, Spain. +Died: March 24, 1916, torpedoed by a German U-boat in the English Channel.Needs Votehttps://www.biografiasyvidas.com/biografia/g/granados.htmhttps://en.wikipedia.org/wiki/Enrique_Granadoshttps://www.britannica.com/biography/Enrique-Granadoshttps://www.bach-cantatas.com/Lib/Granados-Enrique.htmhttps://biography.yourdictionary.com/enrique-granadoshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102690/Granados_EnriqueCampina GranadosCranadosDomenico ScarlattiE GranadosE, GranasosE. GranadosE. Granados - CasadoE. GranadósE.G. GranadosE.GranadosEnric GranadosEnrico GranadosEnriko GranadosEnrique GranadasEnrique Granados CampiñaEnrique Granados CampínaEnrique Granados Y CampiñaEnrique GrandodosEnrique GrandosErique GranadosGranadaGranadasGranadosGranados, EnriqueGranados-CampinaGranados’GrandadosGrandados Campina, EnriqueGrandosГранадосЭ. ГранадосЭнрике Гранадосエンリケ・グラナドスエンリケ・グラナドスグラナドス + +392719Federico Moreno TorrobaFederico Moreno Torroba BallesterosFederico Moreno Torroba (March 3, 1891 - September 12,1982) was a Spanish composer and conductor focused in Zarzuela style (operetta), born in Madrid. [a3057090] conductor. +Composer of "La Virgen de Mayo" in 1925) and "El Poeta" in 1980. +Not to be mistaken with his son [a4682541], born in 1933.Needs Votehttp://es.wikipedia.org/wiki/Federico_Moreno_Torrobahttp://en.wikipedia.org/wiki/Federico_Moreno_T%C3%B3rrobahttps://adp.library.ucsb.edu/names/102555Arno BabadjanianF. M. JorrobaF. M. TorrobaF. M. TórrobaF. Moreno T.F. Moreno TorrobaF. Moreno, TorrobaF. Moreno-TorrobaF. Moreno/TorrobaF. Morreno TorrobaF. TorrobaF.M. TorrobaF.M. TorróbaF.M.TorrobaF.Moreno TorrobaF.Moreno-TorrobaFederico M. TorrobaFederico Morena TorresFederico Morena TorrobaFederico Morena-TorrobaFederico Moreno - TorrobaFederico Moreno Torroba LarreglaFederico Moreno TorróbaFederico Moreno TottobaFederico Moreno TórrobaFederico Moreno, Torroba BallesterosFederico Moreno-TorrobaFederico Moreno-TórrobaFederico TorrobaFederico-Moreno TorrobaFederigo Morena TorróbaFedrico Moreno TorrobaFrancesco TorrobaFrederic Moreno TorrobaFrederico M. TorrobaFrederico Moreno TorrobaFrederico Moreno TorróbaFrederico Moreno-TorrobaFrederico TorrabaFrederico TorrobaFredrico TorrabaFédérico Moreno-TorrobaLarrega Federi Moreno TorbaLarrega Federi Moreno TorrobaM. TorrobaM.TorrobaMaestro TorrobaMoreno TorrobaMoreno TorróbaMoreno-TorrobaMoréno TorrobaMtro. F. Moreno TorrobaP. Moreno TorrobaTorrabaTorrobaTorróbaTorróba,TórrobaМ. ТорробаТорробаФ. М. ТорробаФ. Морено ТорробаФ. Морено-ТоробаФ. Морено-ТорробаФедерико Морено ТорробаФредерико Морено-ТорробаIsidro NoguerasLa Orquesta Del Maestro TorrobaAgrupación Sinfónica "La Zarzuela" + +392724Eduardo Sainz De La MazaSpanish guitarist and composer, 1903 – 1982, younger brother of [a1036501].CorrectDel La MazaE. S. De La MazaE. Sainz De La MazaE. Sainz de la MazaE. Sáinz De La MazaE. Sáinz de la MazaEdouardo Sainz De La MazaEduard S. De La MazaEduardo S. De La MazaEduardo Sáinz De La MazaEduardo Sáinz de la MazaSainz De La MazaSainz de la Maza + +392833John BoydenProducer for classical music recordings, born 19 September 1936; died 20 September 2021. +Since 1967 he was producer with [l=Music For Pleasure]. In late 1970 he became product manager of both, [l=Music For Pleasure] and [l=Classics For Pleasure]. +Founder of [a=The Virtuosi Of England] ensemble.Needs VoteJ. BoydenJohn BoydJohn Boyden AsscoiatesJohn Boyden AssociatesJohn WestJohyn Boyden + +392950Johnny CunninghamJohnny Cunningham (born August 27, 1957, Portobello, Edinburgh, Scotland - died December 15, 2003, New York City, New York, USA) was a Scottish fiddler, composer and producer. Brother of [a631941].Needs Votehttp://www.johnnycunningham.com/https://en.wikipedia.org/wiki/Johnny_CunninghamCunninghamJ. CunninghamJohnJohn CunninghamJohn CunninhamJohnnyJonny CunninghamNightnoise (2)Celtic Fiddle FestivalSilly WizardRelativity (2)Raindogs (2)John & Phil Cunningham + +393019Bill DeLoachCorrectBill DeLouch + +393032Claude MorganClaude Youcef Eliaou GanemFrench singer, songwriter (born Claude Ganem in 1947, Sousse, Tunisia).Needs VoteC . MorganC MorganC. MarganC. MerganC. MoganC. MorganC. MorganyC.MorganCl. MorganCl.MorganClaude M.Claude MorgenClaudo MorganGlaude MorganL. MorganMarganMorganMorgan ClaudeMorgan/ClaudeMorgenO. MorganU. MorganК. МорганМорганكلود مرجانكلود مورجانクロード•モーガンクロード・モーガンBabel SonClaude Ganem + +393116Dallas FrazierDallas June FrazierAmerican country musician/songwriter who had success in 1950s-60s. +Born October 27, 1939 in Spiro, Oklahoma, USA. +Died January 14, 2022 (aged 82) in Gallatin, Tennessee, USA. +As a teenager, he played with Ferlin Husky and on the program Hometown Jamboree; and released his first single, "Space Command", at age 14 in 1954. In 1966 he released his solo debut album Elvira, containing his song "Elvira". He was awarded Country Music Association Award for Song of the Year in 1967. He was inducted into the Nashville Songwriters Hall of Fame in 1976. +As a songwriter, he had an astounding 130 songs chart between 1960 and 1990, including eleven #1's (four of the #1's by Charley Pride). +In 1988, Frazier left the music industry and became a minister. He later released new music.Needs Votehttp://www.nashvillesongwritersfoundation.com/d-g/dallas-frazier.aspxhttp://www.cmt.com/artists/az/frazier_dallas/artist.jhtmlhttp://www.allmusic.com/artist/dallas-frazier-mn0000954321/biographyhttps://en.wikipedia.org/wiki/Dallas_Frazierhttps://www.imdb.com/name/nm1531651/B. FrazierD FraizerD FrazierD, FrazierD. FrazierD. DrazierD. FozierD. FracierD. FraiserD. FraizerD. FrancierD. FranzierD. FrasierD. FrazerD. FrazierD. FrazinD. FrazzierD.F.D.FrazerD.FrazierDallasDallas & FrazierDallas , FrazierDallas - FraiserDallas - FrasierDallas - FrazierDallas / FrazierDallas FergieDallas FraierDallas FraiserDallas FraizerDallas FranzierDallas FraserDallas FrasierDallas FraxierDallas FrazerDallas June FrazierDallas TrojusDallas «Elvira» FrazierDallas, FrazierDallas-FrazierDallas/FrazierDalls FrazierDollas FrazierFozierFraierFraizerFrasierFrazerFrazieFrazierFrazier - DallasFrazier DallasFrazier-DallasFraziorFrazzierFrezierSrazerWrazier + +393315Cheryl LaddCheryl Jean Ladd née StoppelmoorBorn the 12th of July 1951 in Huron, South Dakota. +Initially started singing in the animated tv series "Josie And The Pussycats" (under the name Cherie Moor). Later married actor David Ladd, taking his name and keeping it after their divorce and after marrying music producer Brian Russell, who worked with her on her musical projects. She started recording as a solo artist while working on the tv show "Charlie's Angels". +Needs Votehttps://en.m.wikipedia.org/wiki/Cheryl_LaddC. Laddシェリル・ラッドCherie MoorJosie And The Pussycats (2) + +393383Iona BrownElizabeth Iona BrownBritish violinist and conductor. Born 7 January 1941, Salisbury, Wiltshire, England, UK - Died 5 June 2004, Salisbury, Wiltshire, England, UK. +[b]For the younger British violinist of the same name, please check [a=Iona Brown (2)][/b]. +Restricted by rheumatoid arthritis in her wrists, she turned increasingly to conducting giving her final concert as a conductor in May 2002, with [a=The London Philharmonic Orchestra], the same day that she received a diagnosis of cancer. +She was made an Officer of the Order of the British Empire in 1986. + +1955-1960: joined the [a861263] +1963-1966: played violin with the [a=Philharmonia Orchestra] +1964: joined the Academy of St Martin in the Fields +1974-1980: became soloist and director of [a=The Academy of St. Martin-in-the-Fields] +1981: artistic director of [a=Det Norske Kammerorkester] +1985-1989: guest director of the [a=City Of Birmingham Symphony Orchestra] +1987-1992 & 1995-1997: artistic director of [a=The Los Angeles Chamber Orchestra] +In her last years she was chief conductor of the [a622683] in Denmark + +Sister of [a=Timothy Brown (2)], [a=Ian Brown (4)] and [a=Sally Brown (4)].Needs Votehttps://www.youtube.com/channel/UCtm3ODXpmN56jM6bPS923eghttps://en.wikipedia.org/wiki/Iona_Brownhttps://musicianbio.org/iona-brown/https://www.feenotes.com/database/artists/brown-iona-7th-january-1941-5th-june-2004/https://www.famousbirthdays.com/people/iona-brown.htmlhttps://www.chandos.net/artists/Iona_Brown/3627https://www.theguardian.com/news/2004/jun/10/guardianobituaries.artsobituarieshttps://www.telegraph.co.uk/news/obituaries/1464162/Iona-Brown.htmlhttps://www.nytimes.com/2004/06/12/arts/iona-brown-63-violin-soloist-who-turned-to-conducting.html?_r=0https://www.latimes.com/archives/la-xpm-2004-jun-10-me-brown10-story.htmlBrownI. BrownIna BrownJona Brownアイオナ・ブラウンPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsNational Youth Orchestra Of Great BritainDet Norske KammerorkesterThe London StringsCremona String QuartetAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +394234Robin JeffreyMandolin, Lute and Theorbo player from the UK.Needs VoteR. JeffreyRobin JefferyCity Of London SinfoniaThe SixteenThe English Baroque SoloistsThe King's ConsortThe City WaitesThe Symphony Of Harmony And InventionMartin Best ConsortThe New Scorpion BandThe Extempore String EnsembleSneak's NoyseThe English ConcertMusicians Of Shakespeare's GlobePassamezzo + +394237Richard CampbellRichard John CampbellWas an English classical violist and cellist, best known as a founder member of the early music ensemble [a267135] +Born: 21 February 1956 London, England +Died : 8 March 2011 Truro, Cornwall, EnglandNeeds Votehttps://en.wikipedia.org/wiki/Richard_Campbell_(English_musician)CampbellFretworkNew London ConsortThe BT Scottish EnsembleThe SixteenOrchestre Révolutionnaire Et RomantiqueLes Arts FlorissantsThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicI FagioliniOrchestra Of The Age Of EnlightenmentGabrieli PlayersTheatre Of Early MusicKontrabande + +394288Joanne OpgenorthCanadian violinist.CorrectMinnesota Orchestra + +394289Carole EvansAmerican violinist.CorrectNational Symphony Orchestra + +394487Raymond DonnezRaymond DonnezFrench pianist, composer, arranger, conductor, and record producer born in Aulnay-sous Bois (1942), died in 2019. Wrote the arrangements to international hits by Anne-Marie David, Jeane Manson, and Marie Myriam and was involved in the Eurovision Song Contest as a conductor on three occasions. In the disco era, often using the pseudonym Don Ray, he worked with Cyrstal Grass, Alec Costandinos, Cerrone, and Leroy Gomez. He also produced Santa Esmeralda's hit cover of "Don't Let Me Be Misunderstood" and their third LP, "House of the Rising Sun". His single "Got To Have Loving" had cross-over success on pop radio, and charted to #44 in the Billboard Hot 100 in October 1978. +Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1977/05/raymond-donnez.htmlA. DonnezDon RayDonnesDonnezDonnez R.Donnez Raymond Geroges HenriP. DonnezR DonnezR. DonnezR. DonezR. DonnedR. DonnezR.DonezR.DonnezR.G. DonnezR; DonnezRaymon DonnezRaymond DonezRaymond DonnesRaymond DonneyRaymond Donnez Geroges HenriRaymond Donnez/Don RayRaymond Georges DonnezRaymond Georges Henri DonnezRobert Donezdonnezレイモン・ネッズDon RayRevelacionKongasCrystal GrassSumeriaSphinx (4)The BlackburdsCarol Ray BandRaymond Donnez Et Son Grand OrchestreQuasimodo (9)Chance (51) + +394509Al GorgoniAmerican songwriter, producer and session guitarist. +Along with [a=Chip Taylor] they were a successful songwriting and producing duo in the '60s. + +Born: 1939 in Philadelphia, Pennsylvania +Needs Votehttp://gorgoni.net/https://en.wikipedia.org/wiki/Al_GorgoniA GorgoniA. GargoniA. GordonA. GorginiA. GorginoA. GorgonA. GorgoniA.GorgoniAl GargoniAl GiorgoniAl GordonAl GorginiAl GorgogniAl GorgonAl GorgoneAl GrogoniAlbert GorgoniAlberto GorgoniAll GorgoniBorginBorginiBorgoniGargoniGeorgoniGordonGorganiGorgioniGorgonGorgoniGorgonyGrogoniL. GorgoniSr. Al Gorgoniアルバート・ゴルゴ―二Gigi Parker & The LoneliesJust Us (7) + +394513Nabil TotahNabil Marshall TotahJazz bassist. +Born April 5, 1930 in Ramallah, Transjordan (now in the West Bank) +Died June 7, 2012, in York, Pennsylvania, USA. +When he was 14, he moved to the United States. As a child, ‘Nobby’ Totah played violin and piano. He took up the bass at the age of 23.Needs Votehttps://www.allmusic.com/artist/nabil-totah-mn0000375888https://www.local802afm.org/allegro/articles/ray-mosca-remembers-nabil-totah/https://bassmusicianmagazine.com/2012/08/passing-of-bassist-nabil-totah/Knabby TotahKnabil TotahKnobby TotahNabbil "Knobby" TotahNabil "Knobby" TotahNabil M. TotahNobby TotahNobil TotahZoot Sims QuartetBobby Jaspar QuartetSlide Hampton OctetWoody Herman SextetEddie Condon And His All-StarsGeorge Wallington QuintetThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsJohnny Smith QuartetBobby Jaspar QuintetThe Gene Krupa QuartetThe Bobby Hackett Sextet + +394529Adrian LaneBritish trombone player and teacher. He covers a wide variety of styles, playing in early music groups (the sackbut), in symphony orchestras or in big bands and jazz ensembles.Needs VoteLaneMike Westbrook OrchestraLondon BrassThe Millennia EnsembleThe Academy Of Ancient MusicGabrieli PlayersPete Cater Big Band"Oliver!" 1994 London Palladium Cast, Orchestra + +394604Darren RamirezDarren RamirezNeeds VoteDarrenDarren R. RamirezDarrien "Waxworks" RamirezDarrin 'Wax Works' RamirezDarren R.The HoodlumsTwo Phunk D-LuxThe Ghetto PimpsHouse O' HolicsMetal ZoneThe Mercenaries + +394795Charlotte GeselbrachtClassical viola player.Needs VoteCharlotte WalterspielEnsemble ModernPellegrini-QuartettConcentus Musicus WienThe Chamber Orchestra Of Europe + +394796Michael GielenMichael Andreas GielenGerman-Austrian conductor and composer, born 20th July 1927 in Dresden, Germany; died 8 March 2019 in Mondsee, Salzkammergut, Austria. +He’s the son of [a3795151].Needs Votehttps://en.wikipedia.org/wiki/Michael_Gielenhttps://www.bach-cantatas.com/Bio/Gielen-Michael.htmGielenM GielenM. GielenMichael Gielen, ConductorsMichaël GielenMichæl GielenМихаэль Гиелен + +395053Linda LawleyLinda Lee LawleyAmerican musician, actress and songwriter. +Born on April 18, 1949 in Stillwater, Oklahoma. +Died on November 24, 2007 in Woodland Hills, Los Angeles, CA. +She was married to [a538481].Needs Votehttps://melodic-hardrock.com/linda-lawley-love-strike-1989/https://www.imdb.com/name/nm0492531/http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=195925&subid=0https://www.ascap.com/repertory#ace/writer/69690628/LAWLEY%20LINDA%20LEEL. LawleyL.L. LawlyLawleyLewleyLinda L. LawleyLinda Lee LawleyLinda Lee LawlyLynda L. LawleyLynda LawleyLynda Lee LawleyEternity's ChildrenThe KnickersThieves (3)Consenting Adults + +395324Hugo Winterhalter OrchestraCorrecthttps://en.wikipedia.org/wiki/Hugo_WinterhalterH. Winterhalter & His Orch.H. Winterhalter And His Orch.H. Winterhalter And His OrchestraH. Winterhalter E La Sua Orch.H. Winterhalter OrchestraH. Winterhalter Y Su OrquestaHis OrchestraHuge Winterhalter & His OrchestraHugo Winterhalter And His OrchestraHugo Winterhalter & His OrchestraHugo Winterhalter & His Orch.Hugo Winterhalter & His OrchestraHugo Winterhalter & Orch.Hugo Winterhalter & OrchestraHugo Winterhalter And His OrchestraHugo Winterhalter And His Famous OrchestraHugo Winterhalter And His Orch.Hugo Winterhalter And His OrchestraHugo Winterhalter And His World Famous OrchestraHugo Winterhalter And Orch.Hugo Winterhalter And OrchestraHugo Winterhalter And The Concert OrchestraHugo Winterhalter And The OrchestraHugo Winterhalter And his OrchestraHugo Winterhalter Con La Sua OrchestraHugo Winterhalter Con Su OrquestaHugo Winterhalter E La Sua OrchestraHugo Winterhalter E La Sua Famosa OrchestraHugo Winterhalter E La Sua Grande OrchestraHugo Winterhalter E La Sua Orch.Hugo Winterhalter E La Sua OrchestraHugo Winterhalter E Sua OrquestraHugo Winterhalter E la Sua OrchestraHugo Winterhalter En Zijn OrkestHugo Winterhalter Et Son OrchestreHugo Winterhalter Orch.Hugo Winterhalter U. S. OrchesterHugo Winterhalter Und Sein Grosses TanzorchesterHugo Winterhalter Und Sein OrchesterHugo Winterhalter Und Seinem OrchesterHugo Winterhalter Y OrquestaHugo Winterhalter Y Su Orq.Hugo Winterhalter Y Su OrquestaHugo Winterhalter and His OrchestraHugo Winterhalter and his Orch.Hugo Winterhalter and his OrchestraHugo Winterhalter y Su OrquestaHugo Winterhalter y su OrquestaHugo Winterhalter's Orch.Hugo Winterhalter's Orch. And ChorusHugo Winterhalter's OrchestrHugo Winterhalter's OrchestraHugo Winterhalter, Piano Und OrchesterHugo Winterhaltery And His OrchestraHugo Winterholter Et Son OrchestreHugo Winthalther & OrchHugo Wintherhalter & His Orch.Hugo Wintherhalter & His OrchestraHugo Wintherhalter And His Orch.Huugo Winterhalter And His OrchestraOrch. H. WinterhalterOrch. Hugo WinterhalterOrchester Hugo WinterhalterOrchestraOrchestra Conducted By Hugo WinterhalterOrchestra Di Hugo WinterhalterOrchestra Directed By Hugo WinterhalterOrchestra H. WinterhalterOrchestra Hugo WinterhalterOrchestra Under The Direction Of Hugo WinterhalterOrchestre De Hugo WinterhalterOrchestre Hugo WinterhalterOrq. Hugo WinterhalterOrquesta De H. WinterhalterOrquesta De Hugo WinterhalterOrquesta Hugo WinterhalterThe Concert OrchestraThe Hugo Winterhalter Orchestraユーゴー・ウィンターハルター楽団Hugo Winterhalter + +395349Basil FungAmerican session guitarist, producer, songwriter, TV and film composer.Needs Votehttps://www.facebook.com/basilfungmusichttp://www.linkedin.com/pub/basil-fung/3/940/498Basil FongBastl FungBazil FungBig Mouth (8) + +395868François GuinFrench jazz trombonist, band leader and composer. +Born in 1938 in Contres (Loir et Cher).Correcthttp://www.francoisguin.com/https://fr.wikipedia.org/wiki/Fran%C3%A7ois_GuinErik GuinF. "Frick" GuinF. GuinFrancois 'Frick' GuinFrancois GuinFrançois " Frick " GuinFrançois "Frick" GuinFrançois «Frick» GuinFrick GuinGrand Orchestre De L'OlympiaJacques Denjean Et Son OrchestreJacques Hélian Et Son OrchestreFrançois Guin Et Les SwingersFrançois "Frick" Guin Et Son OrchestreLes Petits Français + +395909Samuel MayesSamuel Houston MayesAmerican cellist, born 11 August 1917 in St. Louis, Missouri and died 24 August 1990 in Mesa, Arizona.Needs VoteMayes, S.S. MayesSamuel H. MayesСамюэл МэйсThe Philadelphia OrchestraBoston Symphony OrchestraBoston Symphony String QuartetBel Arte TrioThe Boston Trio + +395911Richard BurginRichard BurginPolish-American violinist, best known as associate conductor and the concertmaster of the Boston Symphony Orchestra (BSO). +(October 11, 1892 – April 29, 1981) + +Burgin was born in Siedlce, Poland, and first performed in public at age 11, as a soloist with the Warsaw Philharmonic Society. In 1906 he studied with Joseph Joachim in Berlin, and from 1908 to 1912, he studied with Leopold Auer at the St. Petersburg Conservatory. Then he worked in Helsinki, Stockholm and Oslo. + +Burgin was appointed concertmaster of the BSO in 1920, when Pierre Monteux was the orchestra's conductor. He was appointed assistant conductor in 1927. He conducted the BSO in 308 concerts in the United States, Australia and Japan, and was associate conductor for seven world premieres and 25 Boston premieres. +Earlier, he had been concertmaster Leningrad Symphony, Helsinki Symphony, Oslo Philharmonic and the Stockholm Concert Society. He played under conductors Max Fiedler, Arthur Nikisch, and the composers Richard Strauss, and Jean Sibelius. Burgin retired from the BSO following the 1961-62 season. + +In 1957, Burgin told TIME Magazine, "I know many virtuosos and I do not envy them. They tell me what it's like to play the same few pieces over and over and know they have to go here and then be there. Not for me. I like the orchestra." + +As a violin soloist, he played the U.S. premiere of Sergei Prokofiev's Violin Concerto No. 1, on 24 April 1925, with the BSO under Serge Koussevitzky. + +Within a year of coming to Boston, Burgin organized the Burgin String Quartet. He also headed the string department of New England Conservatory and in 1953 was its orchestra conductor. He taught violin and conducting at New England Conservatory. Starting in 1959, Burgin also taught at Boston University, where he directed the Boston University Chamber Orchestra and lectured, and at the Berkshire Music Center, where he taught conducting. After moving to Florida following his retirement, Burgin taught at Florida State University. During this time, he also formed the Florestan Quartet with his wife, violinist [a5391399], as a member. He retired from Florida State University in the mid-1970s. + +Burgin was a chevalier officer of the French Légion d'honneur and was a member of the American Academy of Arts and Sciences. + +Burgin married [a5391399] on July 3, 1940. Their son, Richard W. Burgin is a short story writer and editor. Their daughter, Diana Lewis Burgin, is an author, and Professor of Russian at the University of Massachusetts; she had published a narrative poem "Richard Burgin: A Life in Verse" (Slavica Pub, 1989; ISBN 0893571962) describing her father's biography. + +He died in Gulfport, Florida, on 29 April 1981. +Needs Votehttp://en.wikipedia.org/wiki/Richard_Burginhttps://adp.library.ucsb.edu/names/105946BurginR. BurginBoston Symphony OrchestraBoston Symphony String Quartet + +395912Alfred KripsAmerican violinist, born 1901 in Berlin, Germany and died 1974 in the United States.Needs VoteA. KripsA. KrispsAlfred Krippsアルフレッド・クリップスBoston Pops OrchestraBoston Symphony OrchestraBoston Symphony String Quartet + +395913Boston Symphony OrchestraAmerican symphony orchestra in Boston, Massachusetts founded in 1881 by Henry Lee Higginson. Their first venue was the old Boston Music Hall, now called the [l410313]. Since 1900, their home is [url=/label/274678]Symphony Hall[/url]. Their summer residence is [l1758515] in Lenox, Massachusetts. + +Music Directors: +[a3630646] (1881–1884) +Wilhelm Gericke (1884–1889) +[a840070] (1889–1893) +[a=Emil Paur] (1893–1898) +Wilhelm Gericke (1898–1906) +[a1504968] (1906–1908) +[a2866277] (1908–1912) +Karl Muck (1912–1918) +[a1915782] (1918–1919) +[a406278] (1919–1924) +[a1010199] (1924–1949) +[a406273] (1949–1962) +[a696257] (1962–1969) +[a479033] (1969–1972) +[a712500] (1973–2002) +[a696260] (2004–2011) +[a1554740] (2014–present)Needs Votehttps://en.wikipedia.org/wiki/Boston_Symphony_Orchestrahttps://www.britannica.com/topic/Boston-Symphony-Orchestrahttps://www.bso.org/https://www.youtube.com/bostonsymphonyhttps://www.myspace.com/bostonsymphonyhttps://www.x.com/bostonsymphonyhttps://www.facebook.com/bostonsymphony/https://www.instagram.com/bostonsymphony/https://www.linkedin.com/company/boston-symphony-orchestra/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102119/Boston_Symphony_OrchestraB.S.O.BSOBostonBoston OrchestraBoston PopsBoston S. O.Boston S.O.Boston SOBoston Symfonie OrkestBoston SymfoniorkesterBoston Symph. Orch.Boston SymphonieBoston Symphonie-OrchesterBoston SymphonyBoston Symphony And ChorusBoston Symphony Orch.Boston Symphony Orchestra & ChorusBoston Symphony Orchestra And ChorusBoston Symphony OrkestBoston Synphony OrchestraBoston-Symphonie-OrchesterBostoner SinfonieorchesterBostoner Symphonie OrchesterBostoner Symphonie-OrchesterBostoner SymphonieorchesterBostoner Symphonioe-OrchesterBostoner Symphony OrchesterBostoner Synfonie-OrchesterBostoner-Symphonie-OrchesterBostons SymfoniorkesterBostonski Simfonijski OrkestarConjunto de Cuerda de la Orquesta Sinfónica de BostonCordes De L'Orchestre Symphonique De BostonDas Boston Symphonie OrchesterDas Bostoner Symphonie OrchesterDas Bostoner Symphonie-OrchesterGrande Orchestra SinfonicaL'Orchestra Sinfonica Di BostonL'Orchestre Symphonique De BostonL'orchestra Sinfonica Di BostonL'orchestre Symphonique De BostonLa Boston Symphony OrchestraLa Orquesta Sinfónica de BostonMembers Of Boston Symphony OrchestraMembers Of The Boston SymphonyMembers Of The Boston Symphony OrchestraMembers of the Boston Symphony OrchestraMembres De L'Orchestre Symphonique De BostonMembres De l'Orchestre Symphonique De BostonMembres de l'Orchestre Symphonique de BostonOrc. Sinf. De BostonOrch. Symph. De BostonOrch. Symphonique De BostonOrchestr Symphonique De BostonOrchestra Sinfonica Di BostonOrchestra Sinfonica Di BostonOrchestre Symphonique De BostonOrchestre Symphonique de BostonOrhestre Symphonique De BostonOrq. Sinf. De BostonOrq. Sinfonica De BostonOrq. Sinfónica De BostonOrq. Sinfônica De BostonOrqeustra Sinfônica De BostonOrquesta Filármonica De LondresOrquesta SInfónica De BostonOrquesta Sinfonica De BostonOrquesta Sinfonica de BostonOrquesta Sinfónica De BostonOrquesta Sinfónica De BostónOrquesta Sinfónica de BostonOrquesta Sinfônica De BostonOrquestra Sinfónica De BostonOrquestra Sinfônica De BostonOrquestra Sinfônica de BostonOrquestra Sinfōnica De BostonPrincipal Brass Of The Boston Symphony OrchestraSinfónica De BostonStreicher Des Bostoner Symphonie-OrchestersStrings From The Boston Symphony OrchestraStrings Of Boston Symphony OrchestraStrings Of The Boston Symphony OrchestrStrings Of The Boston Symphony OrchestraSymphony Of The Air Orchestra New YorkSymphony OrchestraThe Academy Of St. Martin In The FieldsThe Boston PopsThe Boston SymphonyThe Boston Symphony OrchestraThe Strings Of The Boston Symphony OrchestraThe Virtuoso Orchestra Boston Symphony OrchestraΣυμφωνική Ορχήστρα Της ΒοστόνηςБостонский ОркестрБостонский ОркестрБостонский Симф. Орк.Бостонский Симф. ОркестрБостонский Симфонический ОркестрБостонский симфонический оркестрボストン Symボストン交響楽団Centennial Symphony OrchestraNathan ColeEvan WilsonBuell NeidlingerSamuel MayesRichard BurginAlfred KripsJoseph De PasqualeCharles MunchPierre MonteuxRichard SherLukas FossJason SniderRichard MackeyJoseph SingerJoel SmirnoffIlan VolkovWalter TramplerJames Levine (2)Jason HorowitzJuliette KangFenwick SmithThomas GaugerJames SommervilleJacques ZoonJoseph SilversteinTim Morrison (2)James StaglianoStephanie FongDavid OhanianRolf SmedvigNorman BolterStephen GeberBernard KadinoffMax WinderPeter HalmiTamara SmirnovaRaphael HillyerWinifred MayesAnn HobsonJay WadenpfuhlDaniel BannerSherman WaltJames MarkeyPaul Fried (2)Laurence ThorstenbergHarold FarbermanFred FradkinBoston Symphony Chamber PlayersJules EskinCharles Smith (6)Everett FirthArthur PressBurton FineDoriot Anthony DwyerEmanuel BoderMartin HohermanSato KnudsenHaldan MartinsonRonan LefkowitzNorman CarolElizabeth RoweSam FrankoEdwin BarkerEnrique Fernández ArbósLila BrownHarold WrightTheodore CellaAlfred GenoveseJoseph HearneVincent MauricciPatricia McCartyDarlene GrayMarylou SpeakerMax HobartJerome RosenHarvey SeigelBo Youp HwangMark KrollCecylia ArzewskiEmanuel BorokPasquale CardilloDaniel KatzenAmnon LevyDaniel BauchGustav StrubeArmando GhitallaJohn Sant'AmbrogioAndris NelsonsRalph GombergFredy OstrovskyEinar HansenAlfred SchneiderVladimir ResnikoffSheldon RotenbergJames PappoutsakisMinot BealeRoger ShermontGeorge ZazofskyLeo PanasevichStanley BensonRolland TapleyGottfried WilfingerNoah BielskiHerman SilbermanFrank CorlissHenry PortnoiJascha SilbersteinNisanne HowellWayne RapierFrank EpsteinGeorges MoleuxNurit Bar-JosefJessica ZhouLeone BuyseThomas RolfsReuben GreenRoger VoisinBerj ZamkochianBernard ZigheraRobert KarolAlbert BernardLawrence WolfeHarry Ellis DicksonRichard SebringGiuseppe CampanariAvron TwerdowskyJoel MoerschelSi-Jing HuangMark Ludwig (2)Ronald BarronCharles SchlueterCharles KavalovskiPeter Chapman (5)Manuel ValerioOwen YoungMihail JojatuWilliam Gibson (3)Kauko KahilaAndre ComeWillis PageGabriel BartoldHarry Shapiro (2)William ShislerMichel SassonGino CioffiLuis LeguiaJerome PattersonJonathan MenkisRichard RantiRobert SheenaCarol ProcterJohn SalkowskiWendy PutnamScott Andrews (4)Martha BabcockAza RaykhtsaumCraig NordstromRonald WilkinsonNicole MonahanDouglas YeoElizabeth OstlingElita KangGeralyn CoticoneThomas Martin (6)Valeria KuchmentJoseph PietropaoloJonathan Miller (9)Andrew Pearce (2)Edward GazouleasNancy BrackenGregg HenegarDennis RoyJohn StovallJames OrleansJames Cooke (2)Keisuke WakaoRobert Barnes (2)Chester SchmitzMark McEwen (2)Michael ZaretskyJoseph McGauleyLucia LinVictor RomanulBonnie BewickRoland SmallRachel FagerburgRonald KnudsenRobert OlsonKazuko MatsusakaTodd SeeberJ. William HudginsTimothy GenisRonald FeldmanJennie ShamesOtto UrackLois SchaeferPaul KeaneyJosef OroszWilliam MoyerKilton Vinal SmithHarold MeekPeter HadcockGeorges MiquelleAyrton PintoAdam EsbensenThomas van DyckGerard GoguenRaymond AllardFelix WinternitzPhillip KaplanJames Burton (4)Victor YampolskyMichael Martin (11)Georges LaurentChristopher KimberFelix ViscugliaWilliam StokkingEugene LehnerStephen LangeJennifer NitchmanCharles YancichSteven EmeryKarl RisslandKonosuke OnoRoger KazaMalcolm LoweMichael Winter (6)Christopher WuAlexandre LecarmeTatiana DimitriadesToby OftAlexander VelinzonBlaise DejardinGlen CherrySheila FiekowskyIkuko MizunoXin DingCynthia MeyersRebecca GitterGerald EliasPeter Gordon (8)Hugh A. CowdenJulius Schulman (2)Yuncong ZhangColin Davis (6)Yizhak SchottenAlfred ZigheraWilliam R. HudginsJohn FerrilloSteven Ansell (2)Cathy BasrakSue-Ellen Hirshman-TcherepninSamuel RoensJenny AhnErnst PanenkaAttilio PotoRichard SvobodaEmil KornsandVyacheslav UritskyCatherine FrenchGordon HallbergMatthew RuggieroJohn Holmes (20)Mickey Katz (2)Benjamin Wright (3)Leah FergusonRichard CzerwonkyMarcel LaFosseJulianne Lee (2)Bracha MalkinAla JojatuOliver AldortRebekah EdewardsDaniel Getz (2)Danny Kim (3)Benjamin Levy (2)Suzanne NelsenClint ForemanMichael Wayne (3)Kyle BrightwellMark FabulichThomas SidersRachel ChildersMatthew McKay (2)Mary FerrilloKathryn SieversLisa Ji Eun KimMike RoylanceWesley CollinsJohn PerkelSophie WangMarc Jeanneret (2)Wallace GoodrichChristopher ElchicoAndres VelaTakumi TaguchiRosario MazzeoCarl Anderson (13)Steven LaraiaViktor PolatschekJacob RaichmanGeorges MagerJohn Coffey (6)Jerome Rosen (2)Carl WendlingElizabeth Ostling KleinAndrew SandwickJonah EllsworthWill ChowLeonardo Vásquez ChacónVictor PolatschekBoaz PillerWillem ValkenierWilliam GebhardtChristine Lee (7)Roric Cunningham + +395914Joseph De PasqualeJoseph de PasqualeAmerican violist, born October 14, 1919 in Philadelphia, Pennsylvania; died June 22, 2015, Philadelphia. He's the brother of [a3508323] and [a543673].Needs VoteDe PasqualeDe Pasquale, JosephJoseph PasqualeJoseph de PasqualeJoseph dePasqualede Pasquale, J.Жозеф Де ПаскальThe Philadelphia OrchestraBoston Symphony OrchestraBoston Symphony String QuartetBel Arte Trio + +396009Philip BlumCellist, born 3 May 1932 in Chicago, Illinois, died 31 August 2009 in Oak Park, Illinois. + +Member of the Chicago Symphony Orchestra 1955 - 2009. +Needs VotePhil BlumPhillip BlumChicago Symphony Orchestra + +396013William SchoenWilliam Schoen (2 September 1919 in Czechoslovakia - 21 July 2014 in Chicago, Illinois) was an American violist. He was a member of the [a837562] from 1964 to 1996. +Needs VoteBill SchoenVictor SchoenThe Philadelphia OrchestraChicago Symphony OrchestraGuilet String Quartet + +396255Renard EdwardsAmerican violistNeeds VoteThe Philadelphia OrchestraThe String Reunion + +396354Virginia HalfmannAmerican violinist + +Died: November 27, 2012 in Philadelphia, Pa. (age 68)Needs VoteVirginia HalfmanVirgnia HalfmannThe Philadelphia OrchestraDetroit Symphony Orchestra + +396365Robert PangbornPercussionist born in Painesville, Ohio, US. +His early training was with his uncle, William Hruby at the Hruby Conservatory of Music in Cleveland. He later studied with [a4378693] at the Cleveland Institute of Music, Roman Sculz at the Berkshire Music Festival, William Street at the Eastman School of Music and [a759313] at Julliard. His military service was spent as a percussionist with the United States Military Academy Band at West Point. +Before joining the Detroit Symphony Orchestra in 1964, Robert Pangborn held the positions of principal timpanist with the [a2576208], mallet percussionist with the Cleveland Orchestra, and timpanist/percussionist with the Metropolitan Opera Orchestra in New York City. +In addition to the Detroit Symphony Orchestra he formed several chamber percussion groups including the Detroit Percussion Trio, 4 for Percussion and Mostly Mallets. +In the late 1960s and early 1970s, he performed as set drummer with [a2038512] a “cross-over” pop-rock group.Needs VoteBob PangbornTim ForsterDetroit Symphony OrchestraThe Cleveland OrchestraSymphonic Metamorphosis + +396368Alvin ScoreAmerican violinist, died on March 23, 2013.CorrectAl ScoreDetroit Symphony OrchestraSaint Louis Symphony OrchestraNorth Carolina Symphony + +397050Lennie HaightLeonard HaightViolinistCorrecthttps://musicbrainz.org/artist/c3e0c689-3d40-421b-8f0a-6f57df3e77f1https://www.imdb.com/name/nm1275862/https://se.linkedin.com/in/lennie-haight-64ab637bhttps://rateyourmusic.com/artist/lennie_haight/credits/https://www.youtube.com/channel/UCNx5oab8Szc0mT47vJux2vQLenni HaightLenny HaightLeonard HaightThe Nashville String MachineThe Shelly Kurland StringsGöteborgs SymfonikerThe Kris Wilkinson StringsSwedish National Orchestra + +397252Brad WarnaarHorn player and composer. Born in Flint, Michigan. Moved to LA in 1980s.Needs Votehttps://www.bradwarnaar.com/https://www.imdb.com/name/nm0912352/https://www.naxos.com/person/Brad_Warnaar/303453.htmBrad "Chainshot" WarnaarBrad WaarnarBrad WaarnerBrad WamaarBrad WanaarBrad WarnerBrad WomaarBradley WarnaarWamaarWarnaarWarnaar, BradJaco Pastorius Big BandHamilton Philharmonic OrchestraToronto Symphony OrchestraRob McConnell & The Boss BrassRochester Philharmonic OrchestraThe Clayton-Hamilton Jazz OrchestraThe Boss Brass + +397264John D'AndreaAmerican television composer, arranger and music writer.Needs Votehttp://en.wikipedia.org/wiki/John_D%27Andreahttps://yellmusic.com/artist/john-dandrea/https://www.ascap.com/repertory#/ace/writer/36091596/D%20ANDREA%20JOHN%20AndreaD AndreaD' AndreaD'AndreaD. AndreaDeAndreaJ. D'AndreaJ. D'ArdreaJ. D'andreasJ. D. AndreaJ. DandreaJ. D’AndreaJ. d'AndreaJ.D'AndreaJ.d'AndreaJohn AndreaJohn D' AndreaJohn D'AandreaJohn D'AndraJohn D'AndreJohn D'AndreaJohn D'AndreasJohn D'AndresJohn D'AndréaJohn D. AndreaJohn DeAndreaJohn DeandreaJohn D’AndreaJohn d'Andread'AndreaAtomic Symphony (2) + +397304Guy FinleyLarry Guy FinleySongwriter from Los AngelesNeeds Votehttp://www.guyfinley.orghttp://en.wikipedia.org/wiki/Guy_FinleyFinleyG. FinlayG. FinleyG.FinleyGuy FinlayL. Finley, Jr.The Laughing WindMartin And Finley + +397402Lucien SmithAlias used by classical cellist Lucien Schmit for his hot jazz endeavors of the 1920s and 1930s. + +The majority of his jazz credits are for tenor saxophone, alto saxophone, and clarinet. A few of these sessions also credit cello.Needs Votehttps://yestercenturypop.com/2023/04/14/notes-on-lucien-s/Lucien SchmitThe Dorsey Brothers OrchestraIpana TroubadoursThe Tennessee TootersB. A. Rolfe And His Palais D'or OrchestraBailey's Lucky SevenBilly Artz & His Orchestra + +397616Sir Adrian BoultAdrian Cedric BoultBritish conductor (born 8 April 1889 in Chester, England; died 22 February 1983 in London, England). +Adrian was a conductor with the BBC Symphony (1930-1950), City of Birmingham Symphony (1924-1930); and London Philharmonic (1950-1958) Orchestras. He was knighted in 1937. +His gave his last public performance conducting [a=Sir Edward Elgar]'s ballet The Sanguine Fan for London Festival Ballet at the Coliseum London, 24 June 1978. His final record, completed in December 1978, was of music by Hubert Parry. He formally retired from conducting in 1981.Needs Votehttps://en.wikipedia.org/wiki/Adrian_Boulthttps://www.bach-cantatas.com/Bio/Boult-Adrian.htmhttps://mahlerfoundation.org/mahler/contemporaries/adrian-boult/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102058/Boult_Adrianhttps://www.britannica.com/biography/Adrian-Cedric-Boulthttps://www.encyclopedia.com/history/encyclopedias-almanacs-transcripts-and-maps/boult-adrian-cedricA. BoultAdrian BoultAdrian C. BoultBoultDr. Adrian BoultDr. Adrian C. BoultM.o BoultSir A. BoultSir A.BoultSir AdrianSir Adrian Boult C.H.Sir Adrian BoutСэр А. БолтЭдриен Боултアドリアン・ボールトエードリアン・ボールトサー・エードリアン・ボールト + +397947Ronnie ZitoRonald Zito.American jazz drummer, based in New York, USA. Brother of [a=Torrie Zito]. + +Born: February 17, 1939 in Utica, New York.Needs Votehttps://www.linkedin.com/in/ronnie-zito-2724ba36/https://www.imdb.com/name/nm2259270/Ron ZitoRonald ZitoRonnie LitoRonny ZitoZitoWoody Herman And His OrchestraWoody Herman And The Swingin' HerdDave Tofani QuartetWally Dunbar Jazz ElevenReese Markewich QuintetThe Duško Gojković SextetThe Fisher Fidelity Standard Rock Band + +398237Luther DixonAmerican songwriter, record producer, and singer. Dixon's songs achieved their greatest success in the 1950s and 60s, and were recorded by Elvis Presley, The Beatles, The Jackson 5, B.B. King, Dusty Springfield, and others. +[b]Born: [/b]August 7, 1931 in Jacksonville, Florida, U.S.A. - [b]Died: [/b]October 22, 2009 in Jacksonville, Florida, U.S.A. +He co-wrote "Big Boss Man" with [a=Al Smith]; [a=Willie Dixon] is often miscredited instead because he played bass on [a=Jimmy Reed]'s recording. + +Needs Votehttp://en.wikipedia.org/wiki/Luther_Dixonhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=1134911&subid=0https://www.theguardian.com/music/2009/nov/11/luther-dixon-obituaryhttps://adp.library.ucsb.edu/names/115711A Ludix ProductionA. DixonAl DixonB. DixonBixonD. LutherDicksonDicsonDiksonDimonDisonDivonDixioDixionDixonDixon L.Dixon LutherDixon, LDixsonDizonFlorenz DixonK. DixonK. Luther DixonL DixonL. BuxonL. DicksonL. DixonL. Dixon,L.DixonL.ディクソンLee DixonLu DixonLudixLudix ProductionsLutherLuther - DixonLuther DicksonLuther DixLuther DixoLuther DixsonLuther Et DixonLuther-DixonLuthor DixonLutter DicksonSiconSixonW. DixonWilliamsディクソンBarney Williams (2)Ludix ProductionsThe Bill Johnson QuintetLuther & Little EvaThe Barons (27) + +398438Alan O'DayAlan Earl O'DayPop singer - songwriter + +Born October 3, 1940 in Los Angeles, California. Died May 17, 2013 in Westwood, California. +Active since the 70's as a solo recording artist and songwriter. +His biggest hit was the disco-tinged, 1977's "Undercover Angel". +He wrote, among other hits [a=Helen Reddy]'s "Angie Baby" and [a=Righteous Brothers]' "Rock And Roll Heaven". +In the '80's he moved from pop music to television, co-writing over 100 songs for the Saturday morning Muppet Babies series, and in the 1990s he wrote and performed music on the National Geographic series "Really Wild Animals".Needs Votehttp://www.alanoday.com/https://en.wikipedia.org/wiki/Alan_O%27Dayhttps://www.imdb.com/name/nm0640593/A O'DayA. O'DayA. O'DauA. O'DayA. O'dayA. O. DayA. ODayA. OdayA. O‘DayA. o'DayA.O'DayAlain O'DayAlan O DayAlan O' DayAlan O'dayAlan O. DayAlan OdayAllan O'DatAllan O'DayAllan O'dayAllan O’DayO' DayO'DayOdayO’Dayアラン・オデイArch Hall, Jr. And The Archers + +398622Joseph DitullioAmerican cellist, played in the [a835190], [a1154816], [a2855180]. +Born: December 4, 1907. +Died: August 20, 1990 in Glendale, California.Needs VoteDitulliosJoe Di TullioJoe DiTullioJoe DutillioJos. di TullioJoseph Di TullioJoseph DiTullioLos Angeles Philharmonic OrchestraThe Glendale Symphony OrchestraThe Warner Brothers OrchestraThe Wrecking Crew (6) + +398627Milton ThomasAmerican violist, died on June 16, 2001 in San Francisco, California at the age of 81.Needs Votehttps://www.latimes.com/archives/la-xpm-2001-jun-30-me-16972-story.htmlM. ThomasMTMilt ThomaMilt ThomasMilton 'Milt' ThomasMilton Thomas (MT)ThomasThomas MiltonThe Cleveland Orchestra + +398628Douglas DavisDouglas L. DavisAmerican cellist native of South California, based in Los Angeles. +Scholarship student of [a896978]. +Married with [a915481].Needs Votehttps://www.feenotes.com/database/artists/davis-douglas/https://www.imdb.com/name/nm2475351/https://www.vashonbeachcomber.com/life/a-talented-couple-brings-intimacy-of-chamber-music-to-vashon/Davis, DouglasDoc DavisDoug DavisDoug L. DavisDouglas D. DavisDouglas DavidDouglas DaviesDouglas L. DavisThe NPG OrchestraSaint Louis Symphony OrchestraThe Los Angeles Chamber OrchestraLos Angeles String Quartet + +398634Paul ShureAmerican violinist and conductor, he was co-founder of the Hollywood String Quartet in 1947, died 8 December 2010. Married to [a=Bonnie Douglas].Needs Votehttps://www.bach-cantatas.com/Bio/Shure-Paul.htmhttps://www.imdb.com/name/nm0795930/P. ShurePaul C. ShurPaul C. ShurePaul C.ShureShure PaulShure Paul CraneThe Philadelphia OrchestraHarry James And His OrchestraGordon Jenkins And His OrchestraThe Gene Page OrchestraTwentieth Century-Fox Studio OrchestraThe Hollywood String QuartetThe Los Angeles Chamber OrchestraSeattlemusic GroupLos Angeles String Quartet + +398673Florent JodeletFlorent JodeletPercussionist Florent Jodelet (born 1962 in Neuilly-sur-Seine) is a soloist with the Orchestre National de France and assistant professor at the Conservatoire National Superieur de Musique de Paris. He studied with Michel Cals, and then Jacques Delécluse at the Conservatoire National Superieur de Musique de Paris, where he won first prize in 1983. He also undertook the course of Iannis Xenakis Acoustics at the University of Paris, and studied music technology and electroacoustic composition with Michel Zbar.Needs Votehttps://www.florentjodelet.com/F. JodeletTM+Orchestre National De FranceOphélie Gaillard & FriendsOrchestre De Chambre Nouvelle-Aquitaine + +398820Karel EberleKarel EberleKarel Eberle, born 1950 in Prague, has been a substitutional concertmaster of the Münchner Philharmoniker since 1972.Needs VoteMünchner PhilharmonikerYoung Romance Orchestra + +398822Deinhart GoritzkiDeinhart Goritzki (30 June 1937 - 26 July 2012) was a German violist and poet. He was the brother of [a1863679], [a637392] and [a6825262].Needs VoteMünchner PhilharmonikerMünchner Baryton-Trio + +398825Wolfgang StinglGerman violist.Needs VoteMünchner PhilharmonikerYoung Romance Orchestra + +398826Matthias WeberGerman double bassist. Kontrabass player. + +For the Sweetbox track "Don't Go Away" credit use [a=Matthias Weber (10)] + +Born 1956, studied at Musikhochschule Stuttgart 1976-1981, co-principal double bass player of Bergen Symphony Orchestra (Norway) 1981-1983, principal double bass of Düsseldorfer Symphoniker 1983-1986, principal double bass of Munich Philharmonic Orchestra 1986-2012, member of the Bayreuth Festival Orchestra since 1990, Professor of double bass at Musikhochschule Stuttgart since 2007Correcthttp://www.mh-stuttgart.de/unsere-hochschule/personenverzeichnis/personen/matthias-weber/http://www.fmb-hochschulwettbewerb.de/weber-prof-matthias/Orchester der Bayreuther Festspiele + +399141Paul GoodmanAmerican sound engineer. + +Grammy award-winning sound engineer, with awards in 1983 for Mahler: Symphony No. 7 in E Minor, in 1985 for Prokofiev: Symphony No. 5 in B Flat, Op. 100, and in 1987 for Horowitz - The Studio Recordings, New York 1985. In addition to classical music, he has also worked on notable jazz albums, including the avant-garde jazz album Communications, performed by Jazz Composer's Orchestra and 1974's Musique du Bois, by Phil Woods.Needs VoteRoy Goodman + +399273Earl Hines QuartetCorrect + +399309Red DorrisJazz tenor saxophonist (in Stan Kenton's Hold Back The Dawn), who started as an alto saxophonist. Born in Marmaduke, Arkansas.Needs VoteDorrisHoward "Red" DorrisRed DorisStan Kenton And His Orchestra + +399594Maja VerunicaClassical violinistNeeds VoteSydney Symphony Orchestra + +399774Roger LoubetFrench composer.Needs Votehttp://www.myspace.com/RogerLoubetL. LoubetLoubetLoubet R.M. LoubetR LoubetR. LoubertR. LoubetR. LoubeteR. LoubletR. loubetR.LoubetR.cLoubetR. Black-moogOphiucusLe Grand Orchestre De Roger LoubetAttention Les Parents Ecoutent + +399868Riccardo CoccianteRiccardo Vincent Cocciante Born on 20 February 1946 in Saigon, French Indochina (now Ho Chi Minh City, Vietnam) from French mother and Italian father. +Very popular italian songwriter, active since beginning of the 1970's. +Needs Votehttp://www.allmusic.com/artist/richard-cocciante-mn0001567285http://www.italianprog.com/a_cocciante.htmhttps://it.wikipedia.org/wiki/Riccardo_Cocciantehttps://en.wikipedia.org/wiki/Riccardo_CoccianteCoccianteCocciante R.Cocciante RicardoCocciante RiccardoCocciantiCochianteR CoccianteR, CoccianteR. CioccianteR. CoccanteR. CoccianteR. CoccinateR. CossianteR. KokeanteR. V. CoccianteR.CoccianteRicardo CoccianteRicardo CocciantiRicardo Vincent CoccianteRiccard CoccianteRiccardoRiccardo CocciantiRiccardo ConcianteRiccardo Vincent CoccianteRicchardo CoccianteRichard CoccianteRichardo CoccianteК.СоссшфтеубКоччантеРиккардо Коччанте理查克西揚Les Enfoirés + +400267Paul IngrahamSolo French Horn with the [b]American Composers Orchestra[/b], [b]New York City Ballet Orchestra[/b], [b]Brooklyn Philharmonic Orchestra[/b], and [b]New York Chamber Symphony[/b]. He has held Principal Horn positions with the [b]Metropolitan Opera Orchestra[/b], [b]Minneapolis Symphony Orchestra[/b] and [b]American Symphony Orchestra[/b] (under [a=Leopold Stokowski]).Needs VotePaul IngrahanPaul IngramPaul IngranhamPaul W. IngrahamGil Evans And His OrchestraThe Brooklyn Philharmonic OrchestraAmerican Composers OrchestraThe American Symphony OrchestraMilt Jackson And Big BrassMinneapolis Symphony OrchestraThe New York Brass Quintet + +400283Tony WalthersAnthony WalthersTony Walthers was born in Cleveland, Ohio, son of a professional jazz musician. A professional vocalist, At a very early age he performed live with Little Richard at the Flamingo Hilton in Las Vegas and even gave Liza Minnelli vocal coaching lessons. Tony moved to Los Angeles when he was 22 years old and became the head Copywriter for Warner Brothers Chapel Division. After leaving Warners, he recorded and toured with Diana Ross, Tina Turner, Frankie Valli, Sting, George Michael, Toto, Robbie Williams, The Pet Shop Boys, Rick Astley, Robert Palmer, 911, Kylie Minogue, Hue & Cry, Michael Ball, Michael MacDonald, Brenda Russell, Atlantic Rhythm Section, Paulette Brown, Kenny Loggins, Natalie Cole and Michel Legrand. His voice could also be heard in hundreds of commercials for Ford, United Airlines and Pepsi. He also recorded tracks for the films “Love Actually” and “Shrek 2.” + +Tony Walthers succumbed to cancer on March 9, 2006. +Needs Votehttp://www.tonywalthers.tvAnthony WalthersTont WalthersTony Walthers HeatPark Avenue (4) + +400404Nick BarrNicholas BarrFreelance classical violist. +Prior to entering the [l290263] in 1984, he played with the [a=European Community Youth Orchestra] and, whilst still studying, with [a=The Academy Of St. Martin-in-the-Fields] and the [a=London Symphony Orchestra] (1991-1994). He was a founder member of the [a=Lyric Quartet].Needs Votehttps://www.asmf.org/musician-profiles/https://www.imdb.com/name/nm0056552/https://vgmdb.net/artist/22750Nicholas BarrNick BaarNick BarNicocholas BarrLondon Symphony OrchestraWired StringsRoyal Philharmonic OrchestraThe Michael Nyman BandThe Michael Nyman OrchestraThe Academy Of St. Martin-in-the-FieldsAnn Morfee StringsThe National Symphony OrchestraLyric QuartetEuropean Community Youth OrchestraTear Quartet + +400609Laura MelhuishBritish violinist. +Wife of [a=Richard Ashton] and mother of [a=Millie Ashton].Needs Votehttps://www.imdb.com/name/nm11217904/L. MelhuishL.MelhuishLaura "Melhewish" MelhuishLaura MalhuishLaura MelhewishLaura MelhuisLaura MellhuishLaura MelluishLaura MeluishLavra MelhuishRoyal Philharmonic OrchestraThe Outatime OrchestraLondon Metropolitan Orchestra + +400615John LubbockEnglish conductor, singer and founder of the [a=The Orchestra Of St. John's].Needs VoteJohn LubbeckLubbockSir John LubbockJohn Alldis ChoirSwingle II + +400677Birch JohnsonAmerican trombonist. Born in Dublin, Georgia, he spent his early childhood years in North Carolina and the Philippine Islands. He now lives in New York and has played on many film soundtracks and television programs. Also known as “Crimson Slide”.Needs Votehttp://www.crimsonslide.com/projects.htmB. JohnsonBirch "Crimson Slide" JohnsonBirch "Slide" JohnsonBirch JhonsonH Birc JohnsonM. Birch JohnsonM. JohnsonGil Evans And His OrchestraWoody Herman And His OrchestraThe Delta HornsWoody Herman & The Young Thundering HerdWoody Herman BandWoody Herman And The Thundering HerdJack Cortner Big BandThe Nuff Brothers + +400979Hadar CohenIsraeli classical violinist.Needs Votehttps://www.ipo.co.il/orckestra_member/%d7%94%d7%93%d7%a8-%d7%9b%d7%94%d7%9f/הדר כהןIsrael Philharmonic Orchestraהתזמורת של יועד ניררביעיית רוסושמיניית מאיה בלזיצמן + +401400William SlapinWilliam (Billy) I. Slapin (September 6, 1929- January 25, 2000) was an American woodwind player (tenor sax, clarinet, flute, piccolo). Born in Cincinatti, Ohio, USA, he was a member of Benny Goodman`s band and later toured in Frank Sinatra`s orchestra.Needs VoteBill SaplinBill SlapinBilly SlapinW. SlapinWilliam J. SlapinWilliam SlapionWilliams SlapinQuincy Jones And His OrchestraWoody Herman And His OrchestraRay Anthony & His OrchestraBenny Goodman And His OrchestraArt Blakey's Big BandJohnny Richards And His OrchestraWoody Herman And The Fourth HerdFrank Sinatra And His Orchestra + +401517Rob SwireRobert Swire ThompsonAustralian musician, singer, songwriter and record producer, born 5 November 1982.Needs Votehttps://twitter.com/rob_swirehttp://en.wikipedia.org/wiki/Rob_SwireR SwireR. SwireR. Swire ThompsonR. ThompsonR.S. ThompsonR.SwireR.Swire-ThompsonRob ShireRob Swire, ThompsonRob Swire/ThompsonRobert SwireRobert Swire ThompsonSwireSwire ThompsonThompsonPendulum (3)Knife PartyXygen + +401527Craig Thompson (2)Craig ThompsonNot to be confused with Craig "Happy" Thompson and Craig Thomson. + +Started working at Polygram Records factory in Walthamstow in 1984, then, after redundancy had brief spells at Lee Holme Audio and PRT Studios before going Decca in 1989. After redundancy in 1997 went freelance, working mainly with the Audio Archiving Company (formed by former Decca colleague Paschal Byrne). Returned to full time employment with UMG in their tape library in 2012, then in 2015 moved over to the UMG archive in as part of the Abbey Road team team involved in the preservation project. Left in 2020 and is currently freelancing and starting up his own business Cult Image.Needs VoteCraig "Happy" ThompsonCraig Thompson (2) (Abbey Road Studios)Craig Thompson (The Audio Archiving Company Ltd.)Craig Thomson + +401547Charles PriceJazz saxophonist.Needs VoteC. PriceC. Q. PriceC.Q. PriceCharles C.Q. PriceCharles Q. PriceCharley PriceCharlie PriceCharlie Q. PriceChas Q. PriceChas. Q. PricePriceCount Basie OrchestraCount Basie, His Instrumentalists And RhythmThe BBC Dance Orchestra + +401548Jimmy MundyJames MundyAmerican jazz tenor saxophonist and arranger, born June 28, 1907 in Cincinnati, Ohio, died April 24, 1983 in New York City, New York. +Mundy worked with Erskine Tate, Carroll Dickerson, White Brothers, Elmer Calloway, Eddie White's Band, Duke Eglin's Bell Hops, Earl Hines and his Orchestra, Benny Goodman Orchestra.Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Mundyhttps://www.imdb.com/name/nm3807428/https://adp.library.ucsb.edu/names/107256B. MundiH. MundyJ MundyJ. MundayJ. MunderJ. MundeyJ. MundiJ. MundyJ. WhiteJ.MundyJ.R. MundyJ.R.MundyJMJames "Jimmy" MundyJames B. MundyJames J. MundayJames MundyJames R MundyJames R. MuddyJames R. MundayJames R. MundyJim MundyJimmi MundyJimmie MundyJimmy MendyJimmy MindyJimmy MundayJimmy MundiJimmy. MundyJimy MundyJoe MundyMindyMondayMondyMuddyMudyMundayMundiMundyMunfyMunyP. MundyД. МандиМандиМондиBenny Goodman SextetPaul Whiteman And His OrchestraEarl Hines And His OrchestraIllinois Jacquet And His OrchestraJimmy Mundy OrchestraJim Mundy And His Swing Club Seven + +401552Butch BallardGeorge Edward BallardAmerican jazz drummer. + +Born: December 26, 1918 in Camden, New Jersey. +Died: October 1, 2011 in Philadelphia, Pennsylvania. +Needs Votehttp://en.wikipedia.org/wiki/Butch_Ballard"Butch" BallardBallardG. "Butch" BallardG. BallardGeorge "Butch" BallardGeorge BallardGeorge «Butch» BallardGeorges "Butch" BallardGeorges BallardGeortge "Butch" BallardCount Basie OrchestraDuke Ellington And His OrchestraCootie Williams And His OrchestraEddie "Lockjaw" Davis TrioThe Duke Ellington TrioLee Lovett QuartetErnie Royal & His PrincesThe Clark Terry Spacemen + +401553Buster HardingLavere HardingPianist, arranger and composer. Originally from Canada, he moved to New York in 1938. Worked with [a=Teddy Wilson], [a=Coleman Hawkins], [a=Cab Calloway] and as a freelance arranger for [a=Artie Shaw], [a=Roy Eldridge], [a=Count Basie], [a=Billie Holiday] and [a=Dizzy Gillespie]. +b.: Mar. 19, 1917 in North Buxton, Ontario, Canada, +d.: Nov. 14, 1965 in New York, NYNeeds Votehttps://adp.library.ucsb.edu/names/109786"Buster" HardingB. HardinB. HardingBHBuster HandingBuster HarbingBuster HardengCarletonHardinHardingL. HardingLavere "Buster" HardingLeverne "Buster" HardingPaul HardingTeddy Wilson And His OrchestraRoy Eldridge And His OrchestraBuster Harding's OrchestraThe Buster Harding TrioJonah Jones And His Orchestra + +401554Singleton PalmerSingleton William PalmerAmerican jazz bassist, cornetist, bandleader and tuba player, born November 13, 1913 in St. Louis, Missouri, died March 8, 1993 in the same city. +Worked with Oliver Cobb, Eddie Johnson, Dewey Jackson, George Hudson, Clark Terry, and others.Needs Votehttp://en.wikipedia.org/wiki/Singleton_Palmerhttp://www.allmusic.com/artist/singleton-palmer-mn0001588364S. PalmerSingleton "Cooky" PalmerCount Basie OrchestraOliver Cobb's Rhythm KingsEddie Johnson's CrackerjacksSingleton Palmer And His Dixieland BandSingleton Palmer's Dixieland Six + +401757Lois McMorrisGuitarist.CorrectLois "Lady Mac" McMorrisLois Mc MorrisJohnny Otis And His Orchestra + +401793Deane KincaideRobert Deane KincaideAmerican saxophonist, clarinetist, flutist, composer and arranger (born 18 March 1911 in Austin, Texas - died 14 August 1992 in St. Cloud, Florida). +In his youth he also played piano and trombone. +He played with [a=Wingy Manone], [a=Ben Pollack], [a=Lennie Hayton], [a=Bob Crosby], [a=Benny Goodman], [a=Woody Herman] and [a=Tommy Dorsey] among others. As arranger, he worked with [a=Joe Marshall], [a=Ray Noble], [a=Glenn Miller] or [a=Muggsy Spanier]. +After 1945, he worked as composer for TV and radio and played in the orchestras of [a=Ray McKinley] (1948-1956) and [a=Yank Lawson] (1961-1965). +Needs Votehttps://www.imdb.com/name/nm0454203/biohttps://www.allmusic.com/artist/deane-kincaide-mn0001201590/biographyhttps://en.wikipedia.org/wiki/Deane_Kincaidehttps://adp.library.ucsb.edu/names/106730D, KincaideD. KincadeD. KincaidD. KincaideD. KincaidoDKDean "Look Ma, No Zither" KincaideDean KincadeDean KincaidDean KincaideDean KincaiseDeane KincadeDeane KincaidDeane Kincaide (DK)Deanne KincaideKincaidKincaideRobert Dean KincaidRobert KincaideTommy Dorsey And His OrchestraWoody Herman And His OrchestraBilly Butterfield And His OrchestraBobby Hackett And His OrchestraBob Crosby And His OrchestraAlvino Rey And His OrchestraRay McKinley And His OrchestraDeane Kincaide QuintetDeane Kincaide's Dixieland BandThe Band That Plays The BluesStan Rubin And His Tigertown OrchestraDeane Kincaide's Band + +401794Mickey BloomMilton Bloom.American jazz trumpeter. + +Born : September 09, 1906 in Brooklyn, Kings County, New York. +Died : October 11, 1979 in Las Vegas, Nevada. +Needs VoteBloomM. BloomMicky BloomTommy Dorsey And His OrchestraBoyd Senter & His SenterpedesCharlie Barnet And His OrchestraHal Kemp And His OrchestraIrving Aaronson And His Commanders + +401795Andy FerrettiAndrew FerrettiJazz trumpeterNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/315223/Ferretti_Andyhttps://www.allmusic.com/artist/andy-ferretti-mn0002652650A. FerettiA. FerrettiAFAndrew FerrettiAndy Feretti (AF)Andy FerreittiAndy GerrettiAndy PerrettyAndy TerrettiFerrettiTommy Dorsey And His OrchestraBob Crosby And His OrchestraThe CommandersJoe Haymes & His Orchestra + +401796Mike DotyRobert E. Doty American jazz saxophonist + +Robert E. "Mike" Doty was born in Zumbro Falls, Minnesota, on February 21, 1906. By the time +he was 18 years old, he was already organizing and managing his own jazz and dance bands near +Rochester. His band traveled to Fargo, South Dakota, where in 1930 he joined Phil Baxter's +band. Baxter's band went west to Tacoma, Washington, where Doty eventually took over +leadership of the band for two years. +In 1931 Doty joined the Joe Haymes Orchestra in Springfield, Missouri, played in the sax +section, did some arrangements for the band, some vocals, and even some recording dates of the +Haymes Orchestra under his own name. He stayed with the group after it had been taken over by +Buddy Rogers in late 1934, but by the beginning of 1935, Doty left for New York and eventually +joined Phil Harris' orchestra and toured briefly with them. +Doty joined Ray Noble's orchestra later in 1935 and stayed with him until he joined Tommy +Dorsey's Orchestra in March of 1937. After a few brief months with Dorsey (but numerous +recordings), Doty joined with Bunny Berigan's band through the remainder of 1937, also +recording quite a few sides with Berigan. In 1938 Doty joined Larry Clinton and stayed until +March 1939, finishing the year with a tour for Bob Zurke. +In the early 1940s Doty did Broadway musicals ("Louisiana Purchase" and "Priorities of 1942") +and some substitute dates (including Paul Whiteman), finally settling down into his longest +tenure thus far by joining Fred Waring's Pennsylvanians from 1942 until 1956. The next five +years he played at the Roxy Theatre in the house orchestra (intermittently substituting at Radio +City Music Hall) until he joined Radio City Music Hall full time in the beginning of 1961. He +retired from Radio City and full time music in April of 1979. +Sometime in the late 1940s Doty began playing the oboe and continued playing double reeds +(and all the woodwinds) through the remainder of his career. His tenure with the Roxy Theatre +and the Radio City Music Hall exposed him to a much more classical repertoire, and he studied +accordingly. At the same time, he took to some composing and wrote a piece for woodwinds, +featuring the oboe, called the "Hoboe Simfony," which was performed publicly twice. The +composition reflects some links and crossovers between jazz and impressionistic classical music. +Sometime also in the late 1940s Doty began taking on students and continued to teach and attend +student concerts late into his life until his death on May 31, 1988 at his home in Rochester, Minnesota.Correcthttps://www.mtsu.edu/popmusic/findingaids/pdfaids/Doty.pdf https://www.mtsu.edu/popmusic/record/49/Robert+E.+"Mike"+Doty+CollectionM. DotyMDMichael DotyMike Doty (MD)Enoch Light And The Light BrigadeTommy Dorsey And His OrchestraBunny Berigan & His OrchestraLarry Clinton And His OrchestraMike Doty And OrchestraBunny Berigan's Rhythm-Makers + +401798Elmer SmithersTrombonistNeeds VoteE. SmithersESElmer Smithers (ES)SmithersTommy Dorsey And His OrchestraWingy Manone & His OrchestraArtie Shaw And His OrchestraPaul Whiteman And His OrchestraBob Crosby And His OrchestraPaul Weston And His OrchestraOzzie Nelson And His OrchestraFrank Sinatra And His Orchestra + +401799Ward SillowayDorr Ward SillawayAmerican jazz trombonist and vocalist, born March 29, 1909 in Grand Rapids, Michigan, died October 1, 1965 in Chicago, Illinois. +Worked with [a=Joe Haymes] in the early 1930s, long spell with [a=Phil Harris] before joining [a=Bob Crosby]. Left Crosby in 1938 to join [a=Tommy Dorsey]. Long spell of studio work for CBS (briefly with [a=Benny Goodman] in 1944). Continued studio work in 1950s. In 1964 moved to Chicago. Married to singer [a=Kay Weber].Needs Votehttps://www.allmusic.com/artist/ward-silloway-mn0001244477https://de.wikipedia.org/wiki/Ward_Sillowayhttps://adp.library.ucsb.edu/names/112302Mard SillowaySillawaySillowayW. SillowayWSWard SillawayWard SillowaxWard Silloway (WS)Tommy Dorsey And His OrchestraBob Crosby And His OrchestraBenny Goodman And His Orchestra + +401802Yank LawsonJohn Rhea LawsonAmerican jazz trumpeter,. +Born : 3 May 1911 in Trenton, Missouri, USA. +Died : 18 February 1995 in Indianapolis, Indiana, USA. +Needs Votehttps://www.nytimes.com/1995/02/21/obituaries/yank-lawson-84-trumpeter-with-prominent-jazz-bands.htmlhttp://riverwalkjazz.stanford.edu/program/march-bobcats-tribute-trumpeter-yank-lawsonhttps://en.wikipedia.org/wiki/Yank_Lawsonhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/115269689567b6d07bdf32e346981e98960602/biographyhttps://adp.library.ucsb.edu/names/105431"Yank" Lausen"Yank" LawsonJ. LausenJohn "Yank" LawsonJohn LausenLawsonT. LawsonThe Yank LawsonY. LawsonY. LousonY.LawsenYLYank J. LawsenYank LausenYank LausonYank LawsenYank Lawson (YL)Yank Lawson And His Yankee ClippersYank Lawson And The Yankee ClippersTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenEddie Condon And His OrchestraBob Crosby And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraBuddy Morrow And His OrchestraThe World's Greatest JazzbandYank Lawson And His OrchestraSlatz Randall And His OrchestraLawson-Haggart SextetLawson-Haggart Jazz BandYank Lawson's Jazz BandThe Dixieland All StarsLawson-Haggart Rockin' BandYank Lawson And His Dixieland BluesThe Carpetbaggers (4)Yank Lawson And His Yankee ClippersDeane Kincaide's Band + +401803Red Bone (2)American trombonist and arrangerNeeds Vote"Red" BoneBoneBone (2)E. W. BoneE. W. Red BoneE.W. "Red" BoneE.W. 'Red' BoneE.W. BoneR. BoneRBRed BoneRed Bone (RB)Red BonesRed BooneRedboneTommy Dorsey And His Orchestra + +402109Florence SchwartzViolinistNeeds VoteFlorence Schwartz-LeeFlorence ShartzThe Salsoul OrchestraChicago Symphony Orchestra + +402151Harry HallTrumpet playerNeeds VoteHallWoody Herman And His OrchestraThe Brass CompanyMaynard Ferguson & His OrchestraNewport Youth BandWoody Herman And The Thundering Herd + +402484Volker HemkenGerman clarinetist. He received his training in Hamburg, Amsterdam and Basel. During this time, he was a member of one Tom Waits‘s bands, among other things. Since 1992 he has been Solo bass clarinetist of the Gewandhaus Orchestra.Correcthttps://wurlitzerklarinetten.de/artists/volker-hemken/?lang=enGewandhausorchester LeipzigDevil's Rubato Band + +402550Bill StapletonWilliam John StapletonAmerican jazz trumpet/flugelhorn player and arranger, born May 4, 1945 in Blue Island, Illinois, died in 1984. +Worked with Woody Herman 1972-1974, Neal Nefti 1974 and Bill Holman 1974-1975.Needs VoteB.StapletonBilly StapletonStapletonWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And The Thundering HerdUniversity Of North Texas Neophonic Orchestra1:00 O'Clock Lab Band + +402551Tom AnastasAmerican jazz saxophonistNeeds VoteTom AnastasioWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Thundering Herd + +402552Bob BurgessAmerican jazz trombonist +Born October 4, 1929, Centralia, Illinois, died June 9, 1997 +For the rock vocalist, see [a=Bob Burgess (2)]. + +Nicknamed "butter" for his smooth trombone playing. + +Needs VoteB. BurgessBob BourgessBob BurgesBobby BurgesBobby BurgessBobby PourgessBuddy BurgessBurgessRobert BurgessPeter Herbolzheimer Rhythm Combination & BrassOrchester Erwin LehnWoody Herman And His OrchestraTender AggressionStan Kenton And His OrchestraFrancy Boland And OrchestraMarty Paich OrchestraLouis Jordan And His OrchestraDave Pell OctetOrchestra Chris ReynoldsMaynard Ferguson & His OrchestraWoody Herman And The Thundering HerdTerry Gibbs Dream BandSlide Hampton - Joe Haider OrchestraKlaus Weiss Big BandJim Widner Big BandPhil Urso-Bob Burgess QuintetBilly Usselton SextetMed Flory OrchestraOrchester Mladen GuteshaSummit Big BandRosolino-Persson Sextet + +402554Rick SteptonUS trombone player, born 28 February 1942 in Fitchburg, MSNeeds Votehttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/stepton-rickhttps://www.jazzhistorydatabase.com/content/musicians/stepton_rick/biography.phpRichard A. SteptonRichard SteptonWoody Herman And His OrchestraBuddy Rich Big BandLighthouse (2)The White Heat Swing OrchestraDave Stahl BandWoody Herman And The Thundering HerdOrange Then BlueNimmons 'N' Nine Plus SixRick Stepton SextetPratt Brothers Big BandThe Killer ForceThe John Allmark Jazz OrchestraLakewood Jazz Ensemble + +402555Steve LedererAmerican tenor saxophonist.Needs VoteLedererWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +402799David BracciniViolinist.Needs VoteD. BracciniDavid BraccimiOrchestre De ParisLes Archets De ParisParis Symphonic Orchestra + +402863Andy FreeAndré Domien Van der VekenBelgian singer, songwriter and producer (°Ninove, January 19, 1949).Needs Votehttps://www.drevanderveken.com/bioA. DeFreeA. FreeA. FreyA.FreeAndyAndy FreyFreeAndre Van Der VekenWaylonRemien + +403026Hildur GuðnadóttirHildur Ingveldardóttir GuðnadóttirIcelandic cellist, composer and singer, born September 4, 1982 in Reykjavik. + +A prolific indie artist, she is known for her numerous live and studio collaborations with [a=Pan Sonic], [a=Throbbing Gristle], [a=múm], [a=Ben Frost], Ilpo Väisänen's [url=https://www.discogs.com/artist/69987]Angel[/url], [a=Jóhann Jóhannsson], [a=Animal Collective], [a=Sunn O)))], [url=https://www.discogs.com/artist/630881]Robert Aiki Aubrey Lowe[/url], [a=Hauschka], the duo of [a=BJ Nilsen & Stilluppsteypa], [a=The Knife], and many others. + +In 2007, Hildur released her debut solo album, [i]Mount A[/i] under the Lost in Hildurness alias. She worked on it alone, playing and recording cello, viola, piano, zither, vibraphone and gamelan. A follow-up [i]Without Sinking[/i] was released in 2009 by British label [l=Touch], as well as her next works [i]Leyfðu Ljósinu[/i] (a concert album capturing live performance without any editing or post-production) and her most recent album [i]Saman[/i], which melts the sounds of her voice and cello together to form a single instrument. + +Guðnadóttir is also a vocal performer, and once she arranged a choir for Throbbing Gristle performances in Austria and UK. As a composer, she wrote a score for the play [i]Sumardagur[/i] performed at Iceland's National Theatre, as well as the Danish film [i]Kapringen[/i].Needs Votehttp://www.hildurness.comhttps://www.instagram.com/hildur_gudnadottirhttps://en.wikipedia.org/wiki/Hildur_Guðnadóttirhttps://twitter.com/hildurnesshttps://www.facebook.com/HildurGudnadottirMusichttps://www.youtube.com/channel/UCzSebZaqfKU_p3QA0K4kjTQhttps://hildurgudnadottir.bandcamp.com/https://soundcloud.com/hildurgudnadottir-musicGuðnadóttirH. GudnadottirH.G.HildurHildur GudnadottirHildur GudnadóttirHildur GuonadottirHildur GuđnadóttirHildur I GuðnadóttirHildur I. GuðnadóttirHildur Ingveldard GudnadottirHildur Ingveldard GuðnadóttirHildur Ingveldard. GuðnadóttirHildur Ingveldardottir GudnadottirHildur Ingveldardóttir GudnadóttirHildur Ingveldardóttir GuðnadóttirLost In HildurnessMr. Schmuck's FarmRepresensitive ManStórsveit Nix NoltesWoofer (9)The Eternal ChordMósaík (17)OSMIUM (10) + +403042Julia JowettViola player.Needs Votehttps://www.mo.nl/en/orkest/julia-jowettJ JowettJ. JowettJ.A. JowettJulie JowettMetropole OrchestraNieuw Sinfonietta Amsterdam + +403052Ben AronovBenjamin James AronovAmerican jazz pianist, Born October 16, 1932 in Gary, Indiana. Died May 23, 2015 in Aux-en-Provence, France.Needs Votehttp://www.myspace.com/benaronovtriohttps://en.wikipedia.org/wiki/Ben_AronovAronovBen AranovBenny AranoffBenny AranovBenny ArnoovBenny AronovLee Konitz QuintetLee Konitz NonetNational Jazz EnsembleThe Ken Peplowski QuintetThe Tony Corbiscello Big BandTerry Gibbs Dream BandThe JPJ QuartetBenny Aronov Quartet + +403201Katie VitalieViolinistNeeds VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +403314Lisle AtkinsonLisle Arthur AtkinsonAmerican jazz double bassist. Born September 16, 1940 in New York, New York. Died March 25th, 2019, in New York, New York. +Atkinson began studying violin at age four and gave his first concert at age six. He continued studying and playing the violin until he was introduced to the double bass at the age of twelve. Soon after, he enrolled in the New York School of Music and Art, where he played in the school orchestra. After graduating, he entered the Manhattan Conservatory of Music, where he received a degree in Music. +Atkinson has performed with Betty Carter, Billy Taylor, Clark Terry, Hank Jones, Hazel Scott, Jon Hendricks, Kenny Burrell, Marylou Williams, New York Jazz Quartet, Nina Simone, Stanley Turrentine, Thad Jones & Mel Lewis Big Band, The New York Bass Violin Choir, Wynton Kelly, and others.Needs Votehttp://www.lisleatkinson.com/Lisle A, AtkinsonLisle A. AtkinsonLisle AckinsonLisle AtckinsonLyle AtkinsonLysle AtkinsonBarry Harris TrioHoward McGhee SextetJazz ContemporariesThe New York Bass Violin ChoirThe Andrew Cyrille TrioNational Jazz EnsembleFrank Strozier SextetThe George Coleman OctetHorace Parlan QuintetGrover Mitchell And His OrchestraNorman Simmons QuartetRichard Wyands TrioRoni Ben-Hur TrioJoshua Breakstone TrioThe Cello Quartet (4) + +403469Michael GatelyAndrew Michael GatelyBorn on October 28, 1942 in New Jersey +Died on April 12, 1982 in Los Angeles, CaliforniaNeeds VoteA. M. GatelyA.M. GatelyGatelyGateryM. GateleyM. GatelyM.GatelyMike GatelyMikel Gately + +403529Henri RenaudHenri Raymond Fernand RenaudFrench jazz pianist, composer, writer and producer +born 20 April 1925 in Villedieu-sur-Indre, France +died 17 October 2002 in Paris, Île-de-France, FranceNeeds Votehttps://en.wikipedia.org/wiki/Henri_RenaudH. N. RenaudH. R.H. RenaudH. r.H.N. RenaudH.R.Henri RichmondHenry RenaudR. RenaudRebaudRenaudh.r.Enrique ReynaldoQuincy Jones And His OrchestraZoot Sims SextetLee Konitz QuintetClifford Brown SextetBobby Jaspar QuartetBob Brookmeyer QuintetHenri Renaud Et Son SextetteHenri Renaud Et Son QuartetteHenri Renaud Quintet - QuartetRené Thomas QuintetClifford Brown Big BandClifford Brown QuartetHenri Renaud BandHenri Renaud Et Son OrchestreSonny Criss QuartetThe BirdlandersThe Henri Renaud TrioRoy Haynes SextetGigi Gryce Clifford Brown SextetEnrique Reynaldo Et Ses DesafinadosGigi Gryce OctetHenri Renaud QuintetFrank Foster QuartetJay Cameron's International Sax-BandHenri Renaud - Al Cohn QuartetMichel Hausser QuartetGérard Pochonet All StarsSandy Mosse QuartetHenri Renaud Et Son EnsembleHenri Renaud All StarsHenri Renaud - Bobby Jaspar Quintet + +403584Joseph ReinhardtFrench guitarist and composer +born 1 March 1912 in Paris +died 7 February 1982. + +Nicknamed Nin-Nin, brother of [a253481]. Needs Votehttps://adp.library.ucsb.edu/names/110872J. ReinardtJ. ReindhardtJ. ReinhardtJ.R.Jo ReinhardJo ReinhardtJoe ReinhardtJoseph "Nin Nin" ReinhardtJoseph "Nin-Nin" ReinhardtJoseph ReindhardtQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreOrchestre Musette "Swing Royal"Joseph Reinhardt Et Son EnsembleOrchestre Swing Jo ReinhardtDjango's MusicFestival SwingBill Coleman & His OrchestraHubert Rostaing Et Son OrchestreAimé Barelli Et Son OrchestreDjango Reinhardt Et Son QuintetteMichel Warlop Et Son OrchestreGus Viseur Et Son OrchestreAlix Combelle And His Swing BandDjango Reinhardt Et Son Orchestre Du Boeuf Sur Le ToitJerry Mengo Et Son OrchestreLe Jazz De ParisAlex Renard Et Son OrchestrePatrick & Son Orchestre De DanseAndré Ekyan Et Son Orchestre JazzTrio De Saxophones Alix CombelleDany Kane QuintetteMichel Warlop TrioJoseph Reinhardt Et Son QuintetteLes Amis De DjangoDany Kane Et Son SwingtetteOrchestre Joseph ReinhardtJoseph Reinhardt Et Son Quartette + +403585Alphonse CoxBelgian jazz trumpeter, active late 1920s / early 1930sNeeds VoteQuintette Du Hot Club De FrancePatrick & Son Orchestre De DanseCharles Remue And His New Stompers Orchestra + +403586Pierre AllierTrumpet, jazz swing french playerNeeds VoteAllierP. AllierP.AllierQuintette Du Hot Club De FranceDjango's MusicFestival SwingNoel Chiboust Et Son OrchestreHubert Rostaing Et Son OrchestrePierre Allier Et Son OrchestreMichel Warlop Et Son OrchestreWal-Berg Et Son Jazz FrançaisAlix Combelle And His Swing BandFletcher Allen And His OrchestraAndré Ekyan Et Son Orchestre JazzThe Hot Club Swing StarsGrégor Et Ses Grégoriens + +403588Sigismond BeckNeeds VoteBeckSigismund BeckSibecQuintette Du Hot Club De FranceLe Quartette Swing Emile CarraraJean Yatove Et Son Grand Orchestre De Radio-ParisEmile Carrara Et Son EnsembleBilly Colson Et Ses Rythmes + +403589Arthur BriggsJames Arthur BriggsBritish Caribbean jazz trumpeter and orchestra leader who performed in Europe. + +Born: April 9, 1901 in St. George's, Grenada. +Died: July 15, 1991 in Chantilly, Paris, France. + +He joined Will Marion Cook's Southern Syncopated Orchestra in 1919 which toured Europe. After surviving a Nazi concentration camp (because he was black) he played mainly in France.Needs Votehttps://en.wikipedia.org/wiki/Arthur_Briggs_(musician)https://adp.library.ucsb.edu/names/305582A. BriggsBriggsQuintette Du Hot Club De FranceEddie Barclay Et Son OrchestreMichel Warlop Et Son OrchestreArthur Briggs And His OrchestraNoble Sissle And His Sizzling SyncopatorsFreddy Johnson, Arthur Briggs & Their All-Star OrchestraAlain Romans Du Poste Parisien Et Son EnsembleFreddy Johnson & His OrchestraFreddy Johnson And His HarlemitesArthur Briggs And His Savoy Syncops OrchestraArthur Briggs & His BoysBlue Star Swing Band + +403592Roger ChaputFrench jazz guitarist, banjoist and mandolinist. He was a founding member of the [a=Quintette Du Hot Club De France] in 1934 after recording with his own [a=Roger Chaput Et Son Orchestre Musette]. +b.: May 19, 1909 in Montluçon, France +d.: Dec. 22, 1994 in Toulon, France.Needs Votehttps://en.wikipedia.org/wiki/Roger_Chaputhttps://adp.library.ucsb.edu/names/109699R. ChaputRager ChaputRoger ChaoutRoger Chaput (Tonton Guitare)Quintette Du Hot Club De FranceAlix Combelle Et Son OrchestreEddie Barclay Et Son OrchestreChristian Bellest Et Son OrchestreNoel Chiboust Et Son OrchestreStéphane Grappelli And His Hot FourMichel Warlop Et Son OrchestreWal-Berg Et Son Jazz FrançaisRichard Blareau Et Son OrchestreJean Yatove Et Son Grand Orchestre De Radio-ParisRoger Chaput Et Son Orchestre MusetteViseur-Deloof SextetThe Hot Club Swing StarsPierre Fouad Et Son Orchestre + +403603Maurice CizeronFrench saxophonist and flutistNeeds VoteCizeronQuintette Du Hot Club De FranceDjango's MusicMichel Warlop Et Son OrchestreLud Gluskin And His Versatile JuniorsAlex Renard Et Son OrchestrePatrick & Son Orchestre De DanseAndré Ekyan Et Son Orchestre JazzMichel Emer Et Son Orchestre + +403605Alex RenardFrench jazz trumpet player.Needs VoteA. RenardRenardAlix Combelle Et Son OrchestreDjango Et CompagnieGrand Orchestre De L'OlympiaDjango's MusicRay Ventura Et Ses CollégiensNoel Chiboust Et Son OrchestreChristian Wagner Et Son OrchestreHubert Rostaing Et Son OrchestreMichel Warlop Et Son OrchestreWal-Berg Et Son Jazz FrançaisAlix Combelle And His Swing BandDjango Reinhardt Et Son OrchestreRichard Blareau Et Son OrchestreJean Yatove Et Son Grand Orchestre De Radio-ParisAlex Renard Et Son OrchestrePatrick & Son Orchestre De DanseFred Adison Et Son OrchestreWillie Lewis & His EntertainersLe Jazz Du Poste Parisien + +403632Dave HartleyDavid HartleyPianist, keyboardist, songwriter and producer. Born in 1962. +David or Dave Hartley is a musician especially notable for several collaborations with [a=Sting]. Their cooperations include writing songs for the Walt Disney Animation Studios "[m=458795]", arranging for the song "[m=1418155]" from "Cold Mountain (soundtrack)", Hartley performed on the Sting albums "[m=33598]" and "[m=44572]" as a string arranger and conductor as well as playing piano and Hammond organ. +Together with Sting he has received an Annie Award and a BFCA Award for songs of The Emperor's New Groove, as well as nominations for an Oscar, Golden Globe, Grammy, BATFA TV and Golden Satellite Award.Needs Votehttps://en.wikipedia.org/wiki/David_Hartley_(musician)https://www.imdb.com/name/nm0366817/https://www.allmusic.com/artist/david-hartley-mn0000178625/David HarleyDavid HartleyDavid HartteyPhilharmonia OrchestraJack Sharpe Big BandThe Frank Ricotti All StarsColin Towns Mask OrchestraThe Jazz Seven + +404329Adrian BradburyBritish cellist.Needs Votehttps://www.musicianscience.org/Adrian BradburryMillennia StringsThe Outatime OrchestraLondon SinfoniettaChamber DomaineMarylebone CamerataTouchwood Piano QuartetThe Chamber Orchestra Of LondonTrio Gemelli + +404331Natalia BonnerViolin player. Part of Wired Strings. +Full Time Orchestral Experience: +Finnish Radio Symphony Orchestra, 1st violin tutti, 1995 +Cordoba Symphony Orchestra, principal second, 1994 - 1995 +San Luis Chamber Orchestra, principal second, 1993 - 1994 +Recent Sessions Include: +Film Scores and TV Series for BBC, ITV and CH 4 and artists like George Michael, Shirley Bassey, Status Quo, Bryan Adams, Paul Weller etc.Needs Votehttps://www.facebook.com/natalia.bonner.5Natalia Sarah BonnerNatalie BonnerMillennia StringsWired StringsEnglish Chamber OrchestraThe New Blood OrchestraAfter Eden + +404337Alasdair MalloyBritish percussionist, presenter, glass harmonica player, programme deviser, arranger and more. +He joined the [a=BBC Scottish Symphony Orchestra] at the age of 20. Principal Percsussionist with the [a=BBC Concert Orchestra]. +Malloy was awarded an Honorary Doctorate by the University of the West of Scotland in 2017.Needs Votehttps://www.alasdairmalloy.comhttps://x.com/alasdairmalloy?lang=enhttps://www.youtube.com/channel/UCGy7S9X_EP4kooO7-ws3byghttps://www.naxos.com/person/Alasdair_Malloy/479.htmhttps://hksl.org/non-hksl-musicians/alasdair-malloy/https://www.imdb.com/name/nm1724008/https://www2.bfi.org.uk/films-tv-people/4ce2bc4916359A. MalloyAlasdair MolloyAlastair MalloyAlisdair MolloyAlistair MalloyAllasdair MalloyRoyal Philharmonic OrchestraNew London ConsortMahler Chamber OrchestraBBC Scottish Symphony OrchestraBBC Concert OrchestraOrchestra Of The Sixteen + +404351Deborah RobertsClassical treble / soprano vocalist, born 10 May 1952; died 9 September 2024.Needs Votehttps://en.wikipedia.org/wiki/Deborah_Roberts_(soprano)https://www.bach-cantatas.com/Bio/Roberts-Deborah.htmDeborrrah RobertsThe Tallis ScholarsThe Academy Of Ancient Music ChorusThe English Concert ChoirThe Schütz Choir Of London + +405310Bill PottsWilliam Orie PottsAmerican jazz pianist, composer and arranger. +Played with : Woody Herman, Buddy Rich, Lester Young, Ella Fitzgerald, Quincy Jones and others. +At one point he headed the trio of [a668711] & [a976048] which played at [l637587] backing for one Lester Young in 1956.[r2836553] + + +Born : April 03, 1928 in Arlington, Virginia. +Died : February 15 (or) 16, 2005 in Plantation, Florida.Needs Votehttp://de.wikipedia.org/wiki/Bill_Pottshttps://adp.library.ucsb.edu/names/208099B. PattsB. PottB. PottsB.P.Bill PotsPottsБ. ПоттWoody Herman And His OrchestraWoody Herman And The Fourth HerdBill Potts And His OrchestraThe Freddy Merkle GroupThe Bill Potts Big BandThe Bill Potts Trio + +405311James GannonAmerican jazz bassist. + +Not to be confused with the Broadway artist [a=James Gannon (2)] nor with the guitarist [a=Jim Gannon].Needs VoteGannonJ. GannonJim GannonJimmy Gannonjimmy gannonWoody Herman And His OrchestraBuddy Rich Big BandThe Australian Jazz QuartetWoody Herman And The Fourth HerdThe Herbie Mann-Sam Most Quintet + +405317Marty FlaxMartin Flachsenhaar Jr..American jazz saxophonist (baritone and tenor), +also played flute, clarinet and trombone. + +Born : October 07, 1924 in New York City, New York. +Died : May 03, 1972 in Las Vegas, Nevada. + +Marty worked with Chubby Jackson (1949), Woody Herman +(1950), Louis Jordan (1951), Pete Rugolo (1954), +Lucky Millinder, Perez Prado, Les Elgart (1956), in +tour with Dizzy Gillespie (1956), Woody Herman (1958) +with own group at Café Society (1957), also played +tenor sax with Claude Thornhill's band (1959), Buddy +Rich (1966-'67).From the late '60 played in Las Vegas' +hotel. +Needs VoteFlaxMartin FlachsenhaarMartin FlaxMarty FlachensenharrMarty Flachsenhaar (Flax)Marty FlaksDizzy Gillespie And His OrchestraWoody Herman And His OrchestraBuddy Rich Big BandClaude Thornhill And His OrchestraLouis Jordan And His OrchestraFrank Rehak SextetSam Most SextetChubby Jackson's OrchestraWoody Herman And His Third HerdWoody Herman And The Fourth Herd + +405319Bobby ShewRobert ShewAmerican jazz trumpeter and flugelhorn player, born March 4, 1941 in Albuquerque, New Mexico, USA + +Needs Votehttp://www.bobbyshew.com/https://en.wikipedia.org/wiki/Bobby_Shewhttp://www.jazztrumpetsolos.com/shew.htmB. ShewBob ShewBobby SheBobby ShowBopbby SheRobert ShewShewToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraBuddy Rich Big BandChris Walden Big BandWoody Herman And The Swingin' HerdThe Bob Magnusson QuintetThe Louie Bellson QuintetLouie Bellson Big BandThe Bud Shank QuintetBobby Shew QuintetDon Menza & His '80s Big BandBobby Shew SextetThe Gary Urwin Jazz OrchestraBob Curnow's L. A. Big BandFrank Mantooth Jazz OrchestraThe Jim Olsen EnsembleThe Bill Cunliffe SextetBobby Shew - George Robert QuintetLou Rovner Small Big BandBobby Shew & His West Coast FriendsLes DeMerle SextetThe Don Menza Big BandThe H2 Big BandRaoul Romero And His Jazz Stars OrchestraBobby Shew QuartetBob Washut DodectetLouie Bellson's Big Band Explosion! + +405322Ray StarlingBritish jazz trumpeter, mellophonist, pianist and arranger. +He played with : Stan Kenton, Kai Winding, Ray Eberly, Claude Thornhill, Buddy Rich, Johnny Richards, Tony Ortega and many others. + +Born : January 04, 1933 in London, England. +Died : May 15, 1982 in Arizona. +Needs VoteR. StarlingRaymond StarlingStarlingStan Kenton And His OrchestraBuddy Rich Big BandSal Salvador And His OrchestraPeter Appleyard OrchestraStan Kenton's Melophoneum Band + +405402Robert RogersRobert Edward RogersAmerican Soul singer and songwriter. +Original member of [a80124]. +He is sometimes credited as Robert "Bobby" Rogers. +Grandfather of [a=Blaque (2)]'s [a=Brandi Williams]. + +Born: February 19, 1940 in Detroit, Michigan, +Dead: March 3, 2013 in Southfield, Michigan. + +Needs Votehttp://en.wikipedia.org/wiki/Bobby_Rogershttp://www.soultracks.com/bobby-rogers-diesB. RodgersB. RogersBobbie RogersBobbyBobby RodgersBobby RogersEdward RogersR RogersR. RodgersR. RogersR.E. RogersR.RodgersR.RogersRigersRobersRobert "Bobby" RogersRobert 'Bobby' RogersRobert Edward RogersRobert RodgersRoberts RogersRodgersRogerRogersRonnie RogersS. RogersWhiteThe Miracles + +405519Colin KitchingViola player. As of 2020, music librarian with the Orchestra Of The Age Of Enlightenment.Needs Votehttps://oae.co.uk/ten-minutes-with-a-music-librarian/Centipede (3)Orchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersThe Richard Hickox OrchestraClassical OperaThe English Concert + +405523Catherine FinnisCellist and viol player.Needs VoteC. FinnisCatherine FinnissCathy FinnisKathy FinnisCentipede (3)New London ConsortThe Parley Of InstrumentsOrchestra Of The Age Of EnlightenmentLondon Classical PlayersConcordiaEuropean Brandenburg EnsembleThe English ConcertChamber Choir Of Sydney University Baroque Ensemble + +405526Katherine ThulbornBritish cellist. She may appear as [b]Katharine Thulborn[/b].Needs VoteCathyKatharine ThulbornKathy ThulbornThe Martyn Ford OrchestraCentipede (3)Philharmonia OrchestraThe London Cello Sound + +405543Carol SlaterViolinist.Needs Votehttps://carolslater.co.uk/Royal Philharmonic OrchestraCentipede (3) + +405600Chet AmsterdamBassist.Needs VoteAmsterdamC & C AmsterdamChet BrandonClaude Thornhill And His OrchestraNeal Hefti's OrchestraJohn Berberian And The Rock East EnsembleThe John Berberian EnsembleJohnny Richards And His OrchestraAstor Piazola & His QuintetHal Schaefer And His OrchestraJohn Plonsky Quintet + +405607Donald MacDonaldDrummer. He was married to the violinist [a=Betty MacDonald].Needs VoteDon MacDonaldDon McDonaldDonald F. McDonaldDonald Mc DonaldDonald McDonaldDonald McDonladMcDonaldGil Evans And His OrchestraThe Mike Mainieri QuartetJeremy & The SatyrsGary McFarland & Co.The Jazz Rock Syndrome + +405645Andrew Parker (2)Andrew ParkerViolist.Needs VoteAndrew Maynard ParkerAndy DarkerAndy ParkerThe London Studio OrchestraLondon SinfoniettaLondon Metropolitan OrchestraThe London OrchestraThe Michael Nyman BandCornucopia EnsembleOrchestre de GrandeurThe Valve Bone Woe EnsembleThe Pale Blue Orchestra + +405659Piero GaspariniClassical violistCorrectP.GaspariniPeiro GaspariniHallé Orchestra + +405736Jeanette KimballJeanette Kimball née SalvantAmerican jazz pianist. +Played with : "Tuxedo Orchestra", Buddy Charles, Herb Leary, Sidney Desvignes, Papa Celestin and others. +She married jazz banjoist and guitarist [a1982739]. + +Born : December 18, 1906 in Pass Christian, Louisiana. +Died : March 29, 2001 in Charleston, South Carolina. +Needs Votehttp://www.allmusic.com/artist/mn0002295104http://www.allmusic.com/artist/mn0002142352http://viaf.org/viaf/68514922https://en.wikipedia.org/wiki/Jeanette_Kimballhttps://musicbrainz.org/artist/5f19f9ac-0f57-450a-9eaf-ea955f7b1574Jeanett KimballJeannett KimballJeannette KimballJeanette SalvantOriginal Tuxedo Jazz OrchestraKid Sheik's Storyville RamblersWendell Brunious And His BandThe Tradition Hall Jazz BandOriginal Camellia Jazz BandJack Delaney And His New Orleans Jazz BabiesSammy Rimington Quintet + +406149Daniel HopeIrish-german violinist, born August 17, 1974 in Durban, South Africa, grow up in London, UK and based in Berlin, Germany since 2016.Correcthttp://www.danielhope.com/https://www.facebook.com/daniel.hope.pagehttps://www.instagram.com/violinhope/https://twitter.com/HopeViolinD. HopeHopeThe Chamber Orchestra Of EuropeBeaux Arts TrioZürcher KammerorchesterKonzerthaus Kammerorchester Berlin + +406258David JuritzClassical violinist, born in Cape Town, South Africa.Needs Votehttp://www.davidjuritz.com/JuritzEnglish Chamber OrchestraThe London Telefilmonic OrchestraLondon Metropolitan OrchestraLondon Mozart PlayersConsort Of LondonMarylebone CamerataBriggs Piano TrioThe Lanyer Ensemble + +406271Arthur FiedlerUS American conductor (born December 17, 1894 in Hyde Park, Boston, Massachusetts, USA; died July 10, 1979 in Brookline, Massachusetts, USA (aged 84) +He was appointed the 18th conductor for the [a=Boston Pops Orchestra] in 1930 which he conducted for 50 years, until his death. He also spent 26 summers with the "San Francisco Pops Orchestra" beginning in 1949.Needs Votehttps://en.wikipedia.org/wiki/Arthur_Fiedlerhttps://www.britannica.com/biography/Arthur-Fiedlerhttps://www.sonyclassical.com/artists/artist-details/arthur-fiedler-1https://www.bach-cantatas.com/Bio/Fiedler-Arthur.htmhttps://www.musicianguide.com/biographies/1608000088/Arthur-Fiedler.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103023/Fiedler_ArthurA. FiedlerA. FielderArthurArthur Fiedler, ConductorArthur FielderArtur FiedlerDr. Arthur FiedlerFiedleFiedlerFielderHi-Fi FiedlerΑρθουρ ΦιντλερАртур Фидлерアーサー・フィードラーフィードラーBoston Pops OrchestraArthur Fiedler And His Orchestra And ChorusArthur Fiedler And His ChorusArthur Fiedler & His Orchestra + +406273Charles MunchCharles MünchAlsacian conductor and violinist, born 26 September 1891 in Strasbourg, German Empire (now France), and died 6 November 1968 in Richmond, Virginia, USA. +Noted for his mastery of the French orchestral repertoire, he was best known as music director of the [a395913]. +Son of organist and choir director Ernst Münch, he was the fifth of six children. He was the brother of conductor [a2937693] (1890-1970) and the cousin of conductor and composer [a1182032] (1893-1983). + +Chief conductor of: +• [a2362045] (1935–1938) +• [a703271] (1938–1946) +• [a395913] (1949–1962), Musical Director +• [a744724] (1967–1968)Needs Votehttps://en.wikipedia.org/wiki/Charles_Munch_(conductor)https://global.oup.com/us/companion.websites/9780199772704/appendix/AppendixC. MunchCh. MunchCh. MünchCharles MuenchCharles MünchCharles MünchDr. Charles MunchM. Charles MunchM. Charles MünchMunchMünchTsch. MünchЧ. МюншЧарльз МанчЧарльз МунчЧарльз МюншШарль Мюншشارل مونشシャルルミュンシュシャルル・ミュンシュシャルル・ムンシュBoston Symphony OrchestraOrchestre De La Société Des Concerts Du ConservatoireOrchestre De ParisOrchestre Philharmonique De Paris + +406278Pierre MonteuxPierre Benjamin MonteuxPierre Monteux (April 4, 1875 – July 1, 1964) was an orchestra conductor. +Father of [a1042892] and grandfather of [a1626637]. Brother-in-law of bandleader/businessman [a2862604] & composer/pianist [a8112412] & uncle of soprano singer [a8112377]. + +Born in Paris, France, he began conducting at the very early age of twelve. One of his most prominent roles in his early career was that of principal conductor with Serge Diaghilev's Ballets Russes, with whom he conducted the premieres of Ravel's Daphnis Et Chloé, Stravinsky's Rite Of Spring, Rossignol and Petroushka. + +In later years Monteux moved to the United States, where he became permanent conductor of the [a395913] and then the [a446472]. In his 80s he took up a post as chief conductor to the London Symphony Orchestra in 1961. Unfortunately this was short lived tenure, and after a number of short illnesses, Monteux suffered a serious fall in 1964, and died that year at the age of 89.Needs Votehttps://en.wikipedia.org/wiki/Pierre_Monteuxhttps://www.britannica.com/biography/Pierre-Monteuxhttps://www.bach-cantatas.com/Bio/Monteux-Pierre.htmhttps://www.monteuxmusic.org/https://www.allmusic.com/artist/pierre-monteux-mn000002054https://adp.library.ucsb.edu/index.php/mastertalent/detail/103403/Monteux_PierreM. Pierre MonteuxMonteuxP. MonteuxPieere MonteuxPierre MonteauxPjer MonteПьер МонтеПьер МонтьеПьер Монтэピエール・モントゥー蒙都Boston Symphony OrchestraSan Francisco Symphony + +406283Fritz ReinerFrederick Martin ReinerProminent conductor of opera and symphonic music in the twentieth century. (December 19, 1888 – November 15, 1963). + +Reiner was born in Budapest, Hungary to a secular Jewish family that resided in the Pest area of the city. After preliminary studies in law at his father’s urging, Reiner pursued the study of piano, piano pedagogy, and composition at the Franz Liszt Academy. During his last two years there his piano teacher was the young [a=Béla Bartók]. + +He worked at opera houses in Budapest and Dresden, where he worked closely with [a=Richard Strauss]. He moved to the United States in 1922 to take the post of Principal Conductor of the [a=Cincinnati Symphony Orchestra]. He remained until 1931, having become a naturalized citizen in 1928, leaving to teach at the Curtis Institute in Philadelphia, where his pupils included [a=Leonard Bernstein], [a=Lukas Foss] and [a235382]. + +He conducted [a=The Pittsburgh Symphony Orchestra] from 1938 to 1948 and made a few recordings with them for Columbia Records. He then spent several years at [a=The Metropolitan Opera], where he conducted a historic production of Strauss's [i] Salome [/i] in 1949, and the American premiere of [a=Igor Stravinsky]'s [i] The Rake's Progress [/i] in 1951. + +Reiner's focus had been on American music since his arrival in Cincinnati, but after the WWII he began increasing his European activity. When he became music director of the [a=Chicago Symphony Orchestra] in 1953 he had a completely international reputation. By common consent, the ten years that he spent in Chicago mark the pinnacle of his career, and are best-remembered today through the many recordings he made in Chicago's Orchestra Hall for [l=RCA Victor] from 1954 to 1963.Needs Votehttps://en.wikipedia.org/wiki/Fritz_Reinerhttps://web.archive.org/web/20230621223752/https://www.stokowski.org/Fritz_Reiner_Biography.htmhttp://www.classicalnotes.net/columns/reiner.htmlhttps://www.britannica.com/biography/Fritz-Reinerhttps://www.naxos.com/person/Fritz_Reiner/31016.htmChicago Symphony OrchestraDr. Fritz ReinerF. ReinerFr. ReinerFritz Reiner And His Symphony OrchestraReinerReiner FrigyesVienna PhilharmonicФ. РайнерФриц РайнерФриц Рајнерフリッツライナーフリッツ・ライナーリッツ・ライナーStaatskapelle DresdenCincinnati Symphony OrchestraThe Metropolitan OperaChicago Symphony OrchestraPittsburgh Symphony OrchestraFritz Reiner And His Orchestra + +406409Jamey DellEngineer, producerNeeds VoteJamie Dell + +406423Klaus ThunemannGerman bassoonist, born April 19, 1937 in Magdeburg. Died in August (29th or earlier) 2025 in Hannover, Germany.Needs Votehttps://en.wikipedia.org/wiki/Klaus_Thunemannhttps://de.wikipedia.org/wiki/Klaus_ThunemannK. ThunemannKlaus ThunemanThunemannStuttgarter KammerorchesterThe Academy Of St. Martin-in-the-FieldsI MusiciCamerata Academica SalzburgBachcollegium StuttgartZürcher KammerorchesterNDR SinfonieorchesterDie Deutschen Bläsersolisten + +406615Coleridge-Taylor PerkinsonColeridge-Taylor PerkinsonBorn New York City on June 14, 1932, died of cancer on March 9, 2004 +African American composer, pianist and conductor. Named for the 19th century Afro-British composer [a=Samuel Coleridge-Taylor]Needs Votehttp://chevalierdesaintgeorges.homestead.com/Perkinson.htmlhttps://en.wikipedia.org/wiki/Coleridge-Taylor_PerkinsonC PerkinsonC. PerkinsonC. T. PerkinsonC.T. PerkinsonColdridge-Taylor PerkinsonColeridge ParkinsonColeridge PerkinsColeridge PerkinsonColeridge PerkissonColeridge T. Perkinson Jr.Coleridge T. PerkinsColeridge T. PerkinsonColeridge T.PerkensonColeridge TaylorColeridge Taylor PerkinsonColeridge Taylor-PerkinsColeridge- T. PerkinsonColeridge-T. PerkensonColeridge-TaylorColeridge/PerkinsonColerigde PerkinsonColridge PerkinsonParkinsonPericiasaPerkinsonMax Roach Quintet + +406839Trevor SwaineNeeds VoteSwaineT. SwaineThe Jungle Band + +407111Kurt WeillKurt Julian WeillGerman composer, eventually America-based, twice married to [a=Lotte Lenya]. +Born: 2nd March 1900 Dessau, Germany. Died: 3rd April 1950 New York City, New York, USA. + +Prominent and popular composer in Germany at the end of the 1920s and the beginning of the 1930s. His best-known work is the Threepenny Opera, written in collaboration with [a=Bertolt Brecht] in 1928. Left the Nazi regime in 1933 for Paris, then London and then the USA in 1936.Needs Votehttps://www.kurt-weill-fest.de/https://www.kwf.org/https://www.imdb.com/name/nm0918044/https://en.wikipedia.org/wiki/Kurt_Weillhttps://www.britannica.com/biography/Kurt-Weillhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101959/Weill_KurtC. WeillC. WeilC. WeillCurt WeilCurt WeillD. WeillFeillG. WeillH. WeillJulian Kurt WeilK WeillK WiellK, WeilK, WeillK- WeillK. VeillK. WaillK. WalshK. WeilK. WeilhK. WeillK. WellK. WielK. ワーイルK.WeilK.WeillKa. WeillKart WeillKult WeillKurtKurt Julian WeillKurt VileKurt WeilKurt WeileKurt Weill (1900-1950)Kurt Weill'sKurt WellKurt WillKurt/WeillKurtWeillK・ヴァイルMr. WeillR. WeillUrsprünglich Von WeilW. KurtWailWaillWeiilWeilWeil - CurtWeileWeillWeill - KurtWeill KurtWeill [Uncredited]Weill, KurtWeill,KWeill-WeillyWeitWellWielWiellWillΚ. ΒάιλΚ. ΒαϊλΚουρτ ΒάιλВайлВейльК. БейлК. ВайлК. ВайльК. ВейльК. Вэйлוויילקורט וויילקורט ויילクルト・ウィルクルト・ワイルクルト・ヴァイル柯特懷爾/ + +407204Carl LottAmerican jazz drummer, born in February 1942 in Houston, Texas, USANeeds VoteCarl Lott, Jr.Gerald Wilson OrchestraThe AquariansBobby Bryant SextetArnett Cobb And His Mobb + +407246Julius HeldViolinist.Needs Votehttps://www.ibdb.com/broadway-cast-staff/julie-held-102425https://adp.library.ucsb.edu/index.php/mastertalent/detail/320685/Held_JuliusJ. HeldJuilius HeldJulius M. HeldJuluis HeldДжулиус ХелдPaul Whiteman And His Orchestra + +407653Lloyd SwantonLloyd Stuart SwantonAustralian jazz double bassist/bass guitarist and composer, based in Sydney. + +Owner of [l543553].Needs Votehttp://en.wikipedia.org/wiki/Lloyd_SwantonL. SwantonLoyde SwantonSwantonThe NecksThe Dynamic HepnoticsThe CatholicsThe Benders (2)Alpha Centauri EnsembleSydney Symphony OrchestraWizards Of OzAlister Spence TrioPhil Slater QuartetMcGannClarion Fracture ZoneThe Raymond MacDonald International Big BandChris Cody CoalitionAron Ottignon TrioRoger Frampton's IntersectionPeter Boothman QuartetThe Last StrawBernie McGann TrioDale Barlow QuartetThe Field (5)Susan Gai Dowling BandGai Bryant QuartetSandy Evans QuartetVazesh + +407932John HobbsJohn Nolan HobbsKeyboardist and composer. Originally from Long Beach, CA. Split his time between Los Angeles and Nashville. +Correcthttps://web.archive.org/web/20200804145940/http://www.cybergrass.com/node/904#sthash.AgssfIme.dpbsHobbsJ. HobbsJohn "eavy Met-al" HobbsJohn ChobbsJohn HobbesJohn HobsJohn N. HobbsJohn Nolan HobbsJohnny HobbsJohynny CatsoP. HobbsReggie DozierKenny Rogers & The First EditionCoven (3)Freeway (5)The Notorious Cherry BombsThe Roadhouse Band + +408286Miran KojianViolinist.Needs Votehttps://www.imdb.com/name/nm1321346/KojianKojian, MiranMilran KojianMiran H. KojianMiran Haig KMiran Haig KojianMiran KajianMiran KoijanMiran KojlanThe Cleveland Orchestra + +408296Andrew ShulmanAndrew ShulmanBritish cellist, conductor, composer, and teacher. Born 1960 in London, England, UK. +Principal cellist with [a=The Los Angeles Chamber Orchestra]. He was formerly principal cellist of the [a=Philharmonia Orchestra], [a=The Academy Of St. Martin-in-the-Fields], the [a=Los Angeles Philharmonic Orchestra] and the [a=Royal Liverpool Philharmonic Orchestra]. Professor of cello and chamber mucis at [l118141]'s Thornton School of Music. +Married to [a=Janet Crouch].Needs Votehttps://andrewshulman.com/https://www.facebook.com/atsmusicinc/https://x.com/shulmantweet?lang=enhttps://www.youtube.com/watch?v=BgSgIq5FzZshttps://www.playwithapro.com/live/Andrew-Shulman/https://en.wikipedia.org/wiki/Andrew_Shulmanhttps://www.laco.org/people/andrew-shulman/https://music.usc.edu/andrew-shulman/https://www.heifetzinstitute.org/andrew-shulman/https://ljms.org/directory/listing/biography-andrew-shulman-cellohttps://www.hollywoodbowl.com/musicdb/artists/4841/andrew-shulmanhttps://dola.com/p/dola-crush-andrew-shulmanhttp://www.malibufriendsofmusic.org/artistsinresidence/guestartistbios.htmlAndrew SchullmanAndrew SchulmanAndrew ShullmanAndrew T. ShulmanMr. Andrew ShulmanShulman, AndrewShulman, Andrew TShulman, Andrew T.The London Telefilmonic OrchestraThe Hollywood Studio SymphonyPhilharmonia OrchestraChris Walden Big BandThe Academy Of St. Martin-in-the-FieldsLos Angeles Philharmonic OrchestraRoyal Liverpool Philharmonic OrchestraThe Los Angeles Chamber OrchestraBritten Quartet + +408298Bob CurnowRobert Harry CurnowBorn 1 November 1941. +He was trombonist/arranger for Stan Kenton. +1973-1977: General manager for Kenton's Creative World Records +Currently president of Sierra Music PublicationsNeeds Votehttps://en.wikipedia.org/wiki/Bob_CurnowB. CurnowBob CurhowCurnowR. CurnowRobert CunnowRobert CurnowRobert H. CurnowStan Kenton And His OrchestraBob Curnow's L. A. Big Band + +408299Dale DevoeAmerican trombonist, composer/arrangerNeeds VoteD. DevoeDevoeStan Kenton And His OrchestraStan Kenton Alumni BandDave Stahl BandThe Mike Vax Big BandThe Phil Giordano Jazz OrchestraStan Kenton Spirits + +408342Mario BauzáPrudencio Mario Bauzá CárdenasMario Bauzá (April 28, 1911 in the Cayo Hueso section of Havana, Cuba – July 11, 1993 in New York City, USA) was a musician (reeds, trumpet) and arranger, he was married to Estella, [a1332854]'s sister.Needs Votehttps://en.wikipedia.org/wiki/Mario_Bauz%C3%A1https://www.britannica.com/biography/Mario-Bauzahttps://mospace.umsystem.edu/xmlui/bitstream/handle/10355/4978/research.pdf?sequence=3https://latinjazznet.com/reviews/cds/mario-bauza-the-legendary-mambo-king-and-his-afro-cuban-jazz-orchestra/https://adp.library.ucsb.edu/names/116587BanzaBauerBauzaBauzáBouzaLa Orquesta De Mario BauzaM. BauzaM. BauzáMaria BauzaMaria BauzáMarioMario BauzaMario BauzoMario BeuzeMario MauzoMaría BauzaCab Calloway And His OrchestraMachito And His OrchestraMario Bauza And FriendsChick Webb And His OrchestraMachito & His Afro-CubansMario Bauzá And His Afro-Cuban Jazz OrchestraCuarteto MachínLuis "Lija" Ortiz Y Su Conjunto + +408788Andrzej SasinEngineer and producer.CorrectA. SasinA.SasinAndrej SasinAndrez SasinAndrzej Sassin + +408830Gerhard SibbingGerman classical violist, born in 1962 in Bonn, Germany.Needs VoteGerhardt SibbingOrchester Der Beethovenhalle BonnOrchester der Bayreuther FestspieleDeutsche Kammerakademie NeussNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +408842Boris BachmannGerman classical violinist, born 1971 in Hamburg, Germany.Needs VoteB. BachmannBachmannOrchester der Bayreuther FestspieleHamburger StudiostringsNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +408897Michael BergekCarl Olof Michael BergekSwedish sound engineer. Group leader Live music at Sveriges Radio, born on 18 July 1948. + +He was previously the coordinator for Production Technology Southwest at Sveriges Radio. Prior to that, he was technical manager for thirteen years at Swedish Radio Gothenburg and former technical manager for Riksradion in Gothenburg for almost four years. He was employed at Swedish Radio in Stockholm as early as 1970 as a dubbing technician and then worked as a sound technician and then music technician at SR in Gothenburg. In 1982, he recorded the first CD in Northern Europe and has since had around 100 recordings behind him. Michael Bergek has also participated in and led a number of major projects within Swedish Radio.Needs Votehttps://www.facebook.com/michael.bergekhttps://www.linkedin.com/in/michael-bergek-84308163/?originalSubdomain=seBergekMicke BergekMikael BergekMikke Bergek + +409054Vincent RoyerFrench violist and composer, born in Strasbourg. +Since 2010 professor of chamber music at [l778768].Needs Votehttp://vincent-royer.com/Scott Fields EnsembleTrio ARCGürzenich-Orchester Kölner PhilharmonikerMultiple Joyce OrchestraScott Fields String FeartetQuatuor Brac + +409506Roger DumasRoger Adrien DumasFrench actor, songwriter and composer born May 9, 1932, Annonay and died July 3, 2016.Needs Votehttp://en.wikipedia.org/wiki/Roger_DumasDumasDumas RogerDumas, RogerDumesH. DumasH. DumusHuard DumasM. DelancrayM.R. DumasP. DumasR DumasR. DemasR. DumaR. DumasR. RogerR.Dumas + +410027Michel GoutyMichel GoutyFrench singer.Needs VoteGoutyGouty Michel YvonM GoutyM. CoutyM. GautyM. GoutilM. GoutyM.GoutryMichael GoutyMichel Yvon GoudyMichel Yvon GoutyMike GoutyR. GoutyMichael BeaucartyMichel BeaucartyGordon KuthT.N.T.H.Bounce (10)Passion (16)Caramel (15)Memphis Soul (2)Liberty Magic Combo + +410032Michel CarreFor the opera librettist, see [a=Michel Carré (2)].Needs VoteCarrCarreCarryCarrèCarréM. CarrM. CarreM. CarréM. carreMichel CarrMichel CarräMichel CarrèT.N.T.H. + +410038Malcolm ArnoldSir Malcolm Henry Arnold, CBEEnglish Academy awarded composer and conductor, born 21 October 1921 in Northampton, England, UK and died 23 September 2006 in Norfolk, England, UK. +He first was trumpet soloist for the [a271875] and later for the [a289522]. In the age of 37, he decided to leave the orchestra and to focus solely on composition. Additionally to his classical compositions, he wrote more than 80 scores and soundtracks, the best known of them being the score of [url=https://www.discogs.com/Malcolm-Arnold-The-Bridge-On-The-River-Kwai/master/146412]The Bridge On The River Kwai[/url].Needs Votehttps://www.malcolmarnoldsociety.co.uk/http://web.archive.org/web/20210505205323/http://www.malcolmarnold.co.uk/https://en.wikipedia.org/wiki/Malcolm_Arnoldhttps://www.imdb.com/name/nm0002185/AlbertAlfonsAlfordArnoArnoldArnold MalcolmArnold MelcomArnold [Uncredited]Arnold, MalcolmH. ArnoldK. J. AlfordK.J. AlfordM ArnoldM. ArnoldM. ArnoldM. ArnoldsM.ArnoldMalcolmMalcolm Arnold Et Son OrchestreMalcolm Henry ArnoldMalcolm-ArnoldMalcolm/ArnoldMalcolmn ArnoldMalcoln ArnoldMalcom ArnoldMalcomb ArnoldMalcome ArnoldSir Malcolm ArnoldSir Malcolm Henry ArnoldАрнольдАрнольд М.М. АрнольдМалкольм АрнольдМалькольм АрнольдמלקולםLondon Philharmonic OrchestraBBC Symphony Orchestra + +410234Richie Gajate-GarciaRichie Gajate-GarciaPuerto Rican percussionist (nicknamed El Pulpo).Needs Votehttps://www.drummerworld.com/drummers/Richie_Gajate_Garcia.htmlGarciaRichard GajateRichard Gajate GarciaRichard GarciaRichieRichie "Bajate" GarciaRichie "Gajate" GarciaRichie "Gajate" GarcíaRichie 'Gajate' GarciaRichie Cajate-GarciaRichie GajateRichie Gajate GarciaRichie Gajate Garcia "El Pulpo"Richie Gajate-GarcíaRichie Gajote-GarciaRichie GarciaRichie GarcíaRichio Gajate-GariciaRitchie GarciaSoulplanet Jazz EnsembleThe Dave Weckl BandDavid Becker TribunePat Longo And His Hollywood Jazz BandRichie Gajate García & Friends + +410373Johannes HeestersJohan Marius Nicolaas HeestersDutch tenor singer and entertainer, born 5 December 1903 in Amersfoort, Netherlands, died 24 December 2011 in Starnberg, Germany, aged 108. Father of [a=Nicole Heesters]. He was married to [a=Simone Rethel] from 1992 until his death.Needs Votehttps://web.archive.org/web/20120530033146/http://www.johannes-heesters.de/2010/home.phphttps://en.wikipedia.org/wiki/Johannes_HeestersHanns HeestersJ. HeestersJohan HeestersJohannes Heesters & De Kinderen Von TrappJohannes Heesters Mit Großem FilmorchesterJohannes Heesters With Orchestra + +410383Gustaf GründgensGustav Heinrich Arnold GründgensGerman actor, intendant and artistic director of theatres in Berlin, Düsseldorf and Hamburg, born 22 December 1899 in Düsseldorf, Germany, died 7 October 1963 during a world trip in Manila, The Philippines by an overdose of sleeping pills. +He took his artist name Gustaf in 1924 and was married to [a=Erika Mann] from 1926 to 1929 (divorced), and to [a=Marianne Hoppe] from 1936 to 1946 (divorced). +Needs Votehttp://en.wikipedia.org/wiki/Gustaf_GründgensG. GründgensGründgensGustaf Gründgens Mit Chor Und OrchesterGustaf Gründgens Mit FilmorchesterGustaf Gründgens Mit OrchesterbegleitungGustav GruendgensGustav Gründgens + +410426Len LasherLeonhard LasherAmerican double bassist and session musician, born 1937 in New York, New YorkNeeds VoteLennie LasherLenny LasherLeonard LasherSan Francisco Symphony + +410531George FischoffGeorge Allan FischoffAmerican composer and pianist, born August 3, 1938 in South Bend, Indiana, died February 20, 2018. +He is a former student of Rudolf Serkin and a Juilliard graduate. He is well known for composing the 1960s pop music hits "98.6," performed by [a319856] and "Lazy Day," performed by [a=Spanky & Our Gang]. + +In 1970, Fischoff was the youngest composer on Broadway with the Tony-nominated musical "Georgy!". He wrote and directed "Promised Land", a musical history of Moses that ran eight months off-Broadway. "Shepherd!", a one-man-show based on the story of King David and written and performed by Fischoff, is the longest running one-man-show based on the Bible in Broadway history. + +He lectures on topics including humanities, Christian theater, opera literature, and the history of music and art. +Needs Votehttps://en.wikipedia.org/wiki/George_FischoffC. FischoffFisch oggFischeffFischofFischoffFischonFiscoffFish oggFishoffFishonG. BischoffG. ElschottG. FischaffG. FischeffG. FischofG. FischoffG. FischottG. FishoffG.FischoffGeorge Allan FischoffGeorge Fischoff "Super-Piano"George FishoffJ. FischoffS. FischoffPeppers (2)The George Fischoff Keyboard Komplex + +410541Jerry LivingstonGerald LevinsonAmerican songwriter, born March 25, 1909 in Denver, Colorado, died on July 1, 1987. + +[b]Do not confuse with [a=Jay Livingston] ("Que Sera, Sera", "Tammy", "Mona Lisa", "Bonanza").[/b] + +From 1940s to the 1960s he had written songs for numerous films and television series, including Cinderella (1950), Bronco (1958), 77 Sunset Strip (TV series, 1958), and Hawaiian Eye (TV series, 1959). He worked on Tin Pan Alley and co-wrote with Mack David the theme song to Casper the Friendly Ghost. + +With Mack David he was nominated three times for the Academy Awards, the first time in 1951 for the song "Bibbidi-Bobbidi-Boo" from Cinderella (1950), again in 1960 for the song "The Hanging Tree" from the film of the same name (1959), and the last time for "The Ballad of Cat Ballou" (from the 1965 film Cat Ballou) in 1966. + +Update from Don Cole's Rock History 101 ( December 26, 2018 ): +Few may know this but Jerry and his wife Ruth were shot February 17,1965 by their 22 year old son who said his parents were "bugging him". +They were taken to the UCLA Medical Center where attendents reported that Jerry had been shot in the arm and Ruth in the chest. Both were in good condition. +This info was first posted in Cashbox magazine the week of February 21-27, 1965. + +Composer of "Adios Amigo".Needs Votehttp://songwritershalloffame.org/exhibits/C299https://www.imdb.com/name/nm0515256/?ref_=fn_al_nm_1https://en.wikipedia.org/wiki/Jerry_Livingstonhttps://adp.library.ucsb.edu/names/108845A. LivingstonA. LivingstoneAlan LivingstonC. LivingstonD. LivingstonD. LivingstonDavid LivingstonDavid LivingstoneGerry LivingstoneJ LivingstonJ LivingstoneJ. LivingstonJ. LevingstonJ. LevingtonJ. LevinsonJ. LinvingstonJ. LivingstonJ. Livingston-Par.J. LivingstoneJ. LivingtonJ. LivinsonJ. LivinstonJ. LiwingstoneJ. WebingstonJ. リヴィングストンJ.LivingstonJ.LivingstoneJary LivingstonJay LivingstonJay LivingstoneJeffrey LivingstonJenny LivingstonJerry LevingstonJerry LingstonJerry LivingstJerry LivingstoneJerry LivingtonJerry LivinstonJerry LivinstoneJerry LivinstongL. LivingstonLIvingstonLevingstonLevinsonLiningstonLivibtonLivigstoneLivinestonLiving StoneLivingsonLivingstenLivingstonLivingston JerrLivingstoneLivingstoneeLivingtonLivinstonLivinstoneStoneW. LivingstonД. Ливингстонלוינגסטוןジェリー・リビングストンジェリー・リヴィングストンGerald Levinson + +410547Michiel WeidnerClassical cellist and cimbalom player.Needs VoteM.W.Michael WeidnerMichiel WeitnerMichiel WiednerAsko EnsembleNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaOrkest Amsterdam DramaCorrie van Binsbergen BandPrisma String Trio + +410750Jean-Jacques DeboutJean-Jacques Henri Robert DeboutFrench singer and composer, born March 9, 1940 in Paris. Married to [a=Chantal Goya].Needs Votehttp://www.youtube.com/@jjdeboutVEVODeBoutDeboutDebout, Jean-JacquesDebout, Jean-JaquesDoboutJ DeboutJ-J. DeboutJ. -J. DeboutJ. DeboutJ. J DeboutJ. J, DeboutJ. J. DeboutJ. J. DaboutJ. J. DeBoutJ. J. DebautJ. J. DebourJ. J. DeboutJ. J. DuboutJ. J.DeboutJ. Jacques DeboutJ.-J, DeboutJ.-J. DeboutJ.-J. acques DeboutJ.-J.DeboutJ.-Jacques DeboutJ.J DeboutJ.J. DeboutJ.J. DebautJ.J. DeboutJ.J.DeboudJ.J.DeboutJ.J.Henri Robe DeboutJJ DeboutJJ DeboutJJ DuboutJJ deboutJJ. DeboutJacques / DeboutJacques DeboutJacques; DebotJacques;DebotJean DeboutJean J. DeboutJean JacquesJean Jacques DeboutJean Jacues DeboutJean – Jacques DeboutJean-J. DeboutJean-Jacques de BoutLeboutLes Trois MousquetairesMysticLes Grosses Têtes + +411347Hilary SummersWelsh contralto vocalist.Needs Votehttps://www.hilarysummers.com/https://twitter.com/HilarySummers10https://en.wikipedia.org/wiki/Hilary_Summershttps://www.imdb.com/name/nm2598616/Hillary SummersSummersХиллфри СаммерсLa SerenissimaBrandenburg Consort + +411402Sune SpångbergSwedish jazz drummer, born 20 May 1930 in Stockholm, died 21 June 2012. +Needs Votehttps://orkesterjournalen.com/biografi/spangberg-sune-trumslagare/S.SS.SpångbergSpångbergSune Spangbergスネ・スペンゲベルーThe Bud Powell TrioIskraLars Gullin QuintetThe Werner-Rosengren Swedish Jazz QuartetLasse Werner TrioJazz Club '57Sune Spångberg Trio + +411577Heather WallingtonBritish classical violist, and violin/viola tutor. Born in Hathersage, Derbyshire, England, UK. +She studied at the [l459222]. She has since performed as a freelance musician with several orchestras and ensembles and as a member of the [a=London Symphony Orchestra] (2010-2019). Violin/Viola tutor at the Royal Northern College of Music.Needs Votehttps://www.facebook.com/heather.wallington.7https://www.facebook.com/ViolinViola-Teaching-104386131311220/https://twitter.com/heatherwallin11https://music.apple.com/mx/artist/heather-wallington/180488298?l=enhttps://www.feenotes.com/database/artists/wallington-heather/https://www.imdb.com/name/nm3034174/London Symphony Orchestra + +411983Melvin BermanCanadian oboist and teacher, born 28 February 1929 in Hartford, Connecticut, USA and died 2 April 2008. + +Oboe soloist of the Montreal Symphony Orchestra and the Canadian Broadcasting Corporation Orchestra in Montreal as well as a member of the Baroque Trio of Montreal. +He received his Master of Music degree from the Hartt College of the University of Hartford. He held several posts before moving to Montreal, including that of Solo Oboist of the New Orleans Philharmonic, Balle Theater, and Boston Pops orchestras. He was a member of McGill University and the Conservatoire Provincial of Quebec.Needs VoteMel BermanMel BermerOrchestre symphonique de MontréalThe Baroque Trio Of MontrealPro Arte Wind QuintetToronto Woodwind Quintet + +412531Alton PurnellAmerican jazz pianist. +He played with Isaiah Morgan, Alphonse Picou, Big Eye Louis Nelson, Sidney Desvigne, Joe Cousin, Bunk Johnson and others. + +Born: April 16, 1911 in New Orleans, Louisiana. +Died: January 14, 1987 in Inglewood, California. +Needs VoteA. PurnellAlton Purnell And His Funky PianoPurnellGeorge Lewis & His New Orleans MusicBunk Johnson And His New Orleans BandGeorge Lewis BandGeorge Lewis' Ragtime BandGeorge Lewis And His New Orleans StompersGeorge Lewis QuartetThe Legends Of JazzGeorge Lewis And His New Orleans Rhythm Boys + +412532Henry RagasHenry W. Ragas.Dixieland jazz pianist, founding member of the Original Dixieland Jazz Band. +He was replaced by J. Russel Robinson after his death. + +Born : January 01, 1891 in New Orleans, Louisiana. +Died : February 18, 1919 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/111605E. W. RagasH. RagasH. RaggsH. RegasH. RogersH. W. RagasH. W. RogasH.A. RagasH.W. LagasH.W. RagarH.W. RagasH.W. RogasH.W.RagasHarry RagasHarry W. RagasHenri RagasHenry W. RagasHenry W. RaggsRagaRaganRagarsRagasRagazRagesRaggsRagosRagsRegasRegisRogarsRogasRogersW H RagasW RagasW. H. RagasW. RagasW.H. RagasOriginal Dixieland Jazz Band + +412537George BruniesGeorge Clarence BruniesAmerican jazz trombonist (known as the "King of the Tailgate Trombone") + +born February 6, 1902, New Orleans, Louisiana +died November 19, 1974, Chicago, Illinois + +Brother of [a=Albert Brunies] and [a=Merritt Brunies] + +He changed the spelling of his last name by dropping the e from it, so that is not a typo on recordings featuring his last name spelled as Brunis. + +Needs Votehttp://en.wikipedia.org/wiki/George_Brunieshttps://books.google.de/books?id=qM16DwAAQBAJ&printsec=frontcover&dq=early+jazz+trumpet+legends+larry+kemp&hl=de&sa=X&ved=0ahUKEwilg9OJr6fkAhXE26QKHYGNAOcQ6AEIKDAA#v=onepage&q=early%20jazz%20trumpet%20legends%20larry%20kemp&f=false, p.32https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/13547f76f0b7631d779ee6932d1b73ebe2490/biographyhttps://www.allmusic.com/artist/george-brunies-mn0000941321/creditshttps://www.imdb.com/name/nm2345270/https://adp.library.ucsb.edu/index.php/mastertalent/detail/109721/Brunis_Georgehttps://adp.library.ucsb.edu/names/109721BriniesBroniseBrumesBrunelsBrunesBrunieBrunielBruniesBrunies GeorgeBrunilsBrunioBrunisBruniseBrunniesBrunsBurniesG. BruiniesG. BruniesGeo BruniesGeo. BruniesGeorg BrunisGeorge BrunesGeorge BrunisGeorge Clarence BruniesNew Orleans Rhythm KingsMuggsy Spanier's Ragtime BandFriar's Society OrchestraWild Bill Davison And His CommodoresEddie Condon And His BandEddie Condon And His Windy City SevenBobby Hackett And His OrchestraLouis Prima & His New Orleans GangEddie Condon And His All-StarsTed Lewis And His BandBarney Bigard / Art Hodes All Star StompersBix Beiderbecke And The WolverinesGeorge Brunies And His Jazz BandGeorge Brunis And His New Rhythm KingsGeorge Brunies & His New Orleans AllstarsJoe Marsala And His Chosen SevenThe "This Is Jazz" All-StarsJam Session At Commodore + +412540Lawrence MarreroLaurence Henry Marrero.American jazz banjo player. + +Born: October 24, 1900 in New Orleans, Louisiana. +Died: June 06, 1959 in New Orleans, Louisiana. +Needs Votehttps://adp.library.ucsb.edu/names/329845L. MarreroLaurence MarreroLawrence MarraroMarreroMarrersMarrreoBunk Johnson's Brass BandGeorge Lewis & His New Orleans MusicThe Original Zenith Brass BandBunk Johnson And His New Orleans BandGeorge Lewis' Ragtime BandGeorge Lewis And His New Orleans StompersGeorge Lewis QuartetEclipse Alley FiveGeorge Lewis And His New Orleans Rhythm BoysBunk Johnson's Original Superior Band + +412549Jim Robinson (2)Nathan RobinsonAmerican jazz trombone player (December 25, 1892, Deer Range, Louisiana - May 4, 1976, New Orleans, Louisiana), a jazz pioneer, Robinson played guitar as a child and started playing trombone in 1917 while stationed in France during World War I. Nicknamed Nathan "Jim Crow" Robinson.Needs Votehttps://en.wikipedia.org/wiki/Jim_Robinson_(trombonist)https://64parishes.org/entry/jim-robinsonhttps://adp.library.ucsb.edu/names/208625"King Jim" RobinsonBig Jim RobinsonJ. RobinsonJames RobinsonJim "Big Jim" RobinsonNathan RobinsonRobinsonPreservation Hall Jazz BandSam Morgan's Jazz BandBunk Johnson's Brass BandGeorge Lewis & His New Orleans MusicThe Original Zenith Brass BandBunk Johnson And His New Orleans BandGeorge Lewis BandGeorge Lewis' Ragtime BandGeorge Lewis And His New Orleans StompersEclipse Alley FiveJim Robinson's New Orleans BandJim Robinson's BandThe December BandBunk Johnson's Original Superior BandDe De Pierce's New Orleans StompersKid Thomas - George Lewis Ragtime StompersSlow Drag's BunchSayles' Silver Leaf RagtimersBig Jim's Little Six + +412557Alcide (Slow Drag) PavageauAlcide Pavageau American jazz double-bassist, born March 7, 1888 in New Orleans, died January 19, 1969 in the same city. His nickname "Slow Drag" comes from the dance of the same name. Pavageau taught himself to play guitar before switching to bass in 1927. In 1943 he was engaged by [a=George Lewis (2)], whith whom he played for the rest of his life. +Married to [a=Sister Annie Pavageau].Needs Votehttps://adp.library.ucsb.edu/names/110134"Slow Drag" Pavageau'Slow Drag' PavageauA. PavageauAlcide "Slow Drag"Alcide "Slow Drag" PavageauAlcide "Slow Drag" PavageauxAlcide "Slow Drag" PavageayAlcide "Slow Drag" PaveagueAlcide "Slow Drag" PavegeauAlcide "Slow Drug" PavageauAlcide 'Slow Drag' PavageauAlcide ("Slow Drag") PavageauAlcide PavageauAlcide PayageauAlcide Slow "Drag" PavageauAlcide Slow Drag PavageauAlcide « Slow Drag » PavageauAlcide « Slow Drag » PavangeauAlcide «Slow Drag» PavageauAlcide »Slow Drag« PavageauAlcide"Slow Drag"PavageauAlice "Slow Drag" PavageauAlicide "Slow Drag" PavageauPavageauSlow DragSlow Drag PavageauSlow Drag PavageuPreservation Hall Jazz BandGeorge Lewis & His New Orleans MusicBunk Johnson And His New Orleans BandGeorge Lewis BandGeorge Lewis' Ragtime BandGeorge Lewis And His OrchestraGeorge Lewis And His New Orleans StompersGeorge Lewis QuartetEclipse Alley FiveKid Thomas - George Lewis Ragtime StompersSlow Drag's Bunch + +412559Lloyd Trotman (2)Lloyd Nelson TrotmanAmerican jazz bassist, born 25 May 1923 in Boston, USA, died 3 October 2007. Needs Votehttps://en.wikipedia.org/wiki/Lloyd_Trotmanhttps://adp.library.ucsb.edu/names/347830L. TrotmanLloyd Nelson TrotmanLloyd TrottmanNelson Trotman TrotmanTrottmanWoody Herman And His OrchestraJohnny Hodges And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdThe Oscar Pettiford QuartetHenry "Red" Allen's All StarsLloyd Trotman & His OrchestraDanny Mendelsohn OrchestraThe Al Sears All Stars + +412671Clara SmithAmerican blues singer. + +Born : circa 1894 in Spartanburg County, South Carolina. +Died : February 02, 1935 in Detroit, Michigan. +Needs Votehttps://adp.library.ucsb.edu/names/106278C. SmithSmithViolet GreenClara Smith And Her Jazz TrioClara Smith And Her Jazz BandClara Smith And Her Jazz BabiesClara Smith And Her Novelty Band + +412751Vincent BauerPercussionist.CorrectEnsemble Intercontemporain + +412753Pierre StrauchFrench cellist, composer and conductor born in 1958.Needs Votehttps://en.wikipedia.org/wiki/Pierre_Strauchhttps://brahms.ircam.fr/en/pierre-strauchEnsemble IntercontemporainBernard Wystraëte Group + +412758Jean SulemFrench concert violist, born in 1959, co-founder of the Rosamonde Quartet in 1981, he is Professor at the Conservatoire in Paris.Needs Votehttps://en.wikipedia.org/wiki/Jean_Sulemhttps://fr.wikipedia.org/wiki/Jean_SulemEnsemble IntercontemporainQuatuor Rosamonde + +412969Dr WillisDavid WillisAustralian DJ and trance producer from Melbourne.Needs Votehttps://myspace.com/djdrwillishttps://www.facebook.com/djdrwillishttps://twitter.com/djdrwillishttps://soundcloud.com/drwillishttps://www.instagram.com/djdrwillisDr. WillisDr.WillisDavid Willis (2)Buster Pooman + +413008Gene GoeGene Arnold GoeAmerican trumpet playerNeeds VoteE. CoeG. GoeGene A. CoeGene A. GoeGene Arnold GoeGene CoeMichael Sean (4)Count Basie OrchestraThe Abnuceals Emuukha Electric OrchestraMaynard Ferguson & His OrchestraBob Florence Big BandThe Bob Florence Limited EditionBill Berry And The LA BandThe Modern Jazz Orchestra + +413010Lou OrensteinAmerican tenor saxophone player.Needs VoteLou OrensteenLou OrnsteenWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe Clifford Jordan Big Band + +413013Phil GrossmanTrumpet PlayerNeeds VoteStan Kenton And His Orchestra + +413014Jack O'KeefeAmerican jazz saxophonistCorrectJohn O'KeefeHarry James And His Orchestra + +413086Roland GuillotelFrench sound engineer. +Known to have worked at [l269411], and founder of [l267660].Correcthttp://www.guillaumetell.com/G. GuillotelGuillotelJean GuillotelR. GuilletelR. GuillotelR. GuillotellRené GuillotelRolandRoland GuilautelRoland GuillautelRoland GuillautellRoland GuyotelRolland Guillotel + +413172Kenny NapperKenneth NapperEnglish jazz bassist, born 14 July 1933 in LondonNeeds Votehttps://www.kennynapper.com/K. NapperKen NapperKenney NapperNapperPaul Gonsalves QuartetThe Tony Kinsey QuintetZoot Sims QuartetThe John Dankworth OrchestraThe David Lindup Big BandMary Lou Williams QuartetThe Ronnie Scott/Jimmy Deuchar QuintetTony Crombie And His OrchestraStan Tracey TrioThe Jazz CouriersThe Tony Kinsey QuartetPat Smythe TrioVictor Feldman Quintet + +413455John CohenViolinist. + +For the singer/guitarist, folk music collector, musicologist, photographer/filmmaker, see [a=John Cohen (2)]. +For the electronic musician, see [a=John Cohen (3)]. +For the liner note writer, see [a=John Cohen (4)]. +Needs VoteJ. CohenJoël CohenLa Grande Ecurie Et La Chambre Du Roy + +413739Gabriel BanatAmerican violinist, born 1926 in Transylvania, Romania.Needs Votehttp://gabrielbanat.com/BanatNew York PhilharmonicBobby Hackett And His Swinging Strings + +413893Sam CoslowSam CoslowAmerican songwriter, singer, film producer, publisher, and market analyst. + +Born December 27, 1902 - New York, NY, USA +Died April 2, 1982 - New York, NY, USA. + +He began writing songs as a teenager. He contributed songs to Broadway revues, formed the music publishing company Spier and Coslow in 1928 and made a number of vocal recordings. + +With the explosion of film musicals in the late 1920s, Hollywood attracted a number of ambitious young songwriters and Coslow joined the exodus in 1929. Coslow and his partner Larry Spier sold their publishing business to Paramount Pictures and Coslow became a Paramount songwriter. One of his first assignments for the studio was the score for the 1930 film The Virtuous Sin. He formed a successful partnership with composer Arthur Johnston and together they provided the scores for a number of films including Bing Crosby vehicles. + +Coslow became a film producer in the 1940s and won the Academy Award for Best Short Film for his production Heavenly Music in 1943. He was married to actress Esther Muir from 1934 to 1948, and they had a daughter Jacqueline Coslow, who also worked as an actress. In 1953 he married famed cabaret singer, Frances King, of Cafe Societie duo Noble & King. Sam and Frances remained married until his death in 1982. Together they have a daughter, Cara Coslow who gained notoriety as Head of Casting for Carsey Werner Productions and the Producer of the television series Dante's Cove. Cara is also an author of two books. + +During the 1960s Coslow's work shifted from music and film to market analysis. During this time Coslow founded the publishing company Investor's Press, which published investing books and the newsletter "Indicator Digest." During the 1970s Coslow wrote two books, "Cocktails for Two" which focused on his musical career and "Super Yields" which focused on investing. He died in New York City. + +List of song titles: +"Bebe", "Wanita", "True Blue Lou", "Sing, You Sinners", "Hot Voodoo", "Just One More Chance", "Thanks", "The Day You Came Along”, "Learn To Croon", "Cocktails for Two", "(If You Can't Sing It) You'll Have to Swing It (Mr. Paganini)", "My Old Flame", "Beware My Heart", "Kiss and Run", "In the Middle of a Kiss", "(Up On Top Of A Rainbow) Sweepin' The Clouds Away" +Needs Votehttps://www.songhall.org/profile/Sam_Coslowhttp://en.wikipedia.org/wiki/Sam_Coslowhttps://www.ascap.com/repertory#ace/writer/6883967/COSLOW%20SAMhttps://www.imdb.com/name/nm0181885/?ref_=nv_sr_srsg_0https://adp.library.ucsb.edu/names/104876https://adp.library.ucsb.edu/names/372422A. CosolowB. CoslowC. AslowC. CoslowCaslawCaslowCodlowColslowCoscowCoslawCosloCoslouCoslovCoslowCoslow SamCosluwCostowF. CoslowGoslowJ. CoslowKeslowKing-Sam ProductionsKoslowRoslowS CoslowS GoslowS. CaslowS. ClosowS. ConlowS. CoslowS. CoswellS. GoslowS. KosloS. KoslowS.CoslowSamSam CaslowSam ColsonSam CoslovSam CostowSam KoslowSam SoclowSamCoslowSamuel CoslowSlam CoslowSoslowС. КословС. КослоуСэм Кослоу + +414338Aurore PingardFrench double bass and cello player.Needs VoteOrchestre Des Concerts Lamoureux + +414421José MaderaFamous percussionist (mostly credited for playing bongos & congas), composer and arranger (in particular for Fania records). + +As he is the son of Puerto Rican tenor saxophonist [a=José “Pin” Madera], he can also be found as "José Madera, Jr."Needs Votehttp://slamanater.com/legends/living-legends/i-p/jose-madera/"Flaco"J. MaderaJose (Flaco) MaderaJose MaderaJose Madera Jr.Jose Madera, Jr.José Madera Jr.MaderaMachito And His OrchestraTito Puente & His Latin EnsembleHector Rivera And His OrchestraJose Madera Y Su Tropical ComboTito Puente & His Latin Jazz All Stars + +414918Fiona HibbertHarp player.Needs Votehttps://www.imdb.com/name/nm2857144/F. HibbertHibbertRoyal Philharmonic Orchestra + +414919Tim GoodTimothy GoodClassical violinist and author. +Former member of the [a=London Symphony Orchestra] (1965-1975).Needs Votehttp://www.timothygood.co.uk/https://www.andrewlownie.co.uk/authors/timothy-goodhttps://www.penguinrandomhouse.com/authors/10483/timothy-good/https://en.wikipedia.org/wiki/Timothy_GoodGood T.Good. TTim GoodeTimothy GoodLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Astarte Session Orchestra + +414920Elizabeth EdwardsClassical violin player.Needs VoteE. EdwardsElisabeth EdwardsLizLiz EdwardLiz EdwardsThe Martyn Ford OrchestraThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiqueThe New SymphoniaThe Valve Bone Woe Ensemble + +414921John RookeClassical horn player. +Former Assistant Principal Horn of the [a=London Symphony Orchestra] (1973-1976). + +Possibly the same as [a=Jonathan Rooke].Needs Votehttps://www.imdb.com/name/nm10718693/J. RookeJohn RokeJohn RookLondon Symphony OrchestraPhilharmonia OrchestraThe Mike Gibbs OrchestraRobert Farnon And His OrchestraThe Mike Gibbs Band + +414926Edward HobartClassical trumpet and flugelhorn player.Needs VoteEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-Fields + +414928John KitchenJohn Maciver KitchenBritish violinist and violin teacher. Born in Lancaster, Lancashire, England, UK. +He studied at the [url=https://www.discogs.com/label/459222-Royal-Northern-College-Of-Music]Royal Manchester College of Music[/url]. He completed his National Service with [a=The Band Of The Grenadier Guards]. In 1959, he joined the [a=BBC Symphony Orchestra] as its youngest member. In 1965, he joined the [a=London Symphony Orchestra] as Sub-Principal Second Violin (1966-1973). In 1984, he was invited to join the [a=London Philharmonic Orchestra] until his retirement in 2009.Needs Votehttps://www.johnkitchenviolin.com/https://www.surreycommunity.info/kingstonu3aorchestra/about-the-orchestra/Joanthan Paul KitchenJonathan KitchenLondon Symphony OrchestraLondon Philharmonic OrchestraThe Band Of The Grenadier GuardsBBC Symphony OrchestraThe Astarte Session Orchestra + +414957Alex AcuñaAlejandro Nesciosup AcuñaBorn December 12, 1944 in Pativilca, Peru. Moved to Puerto Rico in 1967 and then on to Las Vegas in 1974. +Drummer and percussionist, joined [a=Weather Report] (1975 - 1978). Additionally, has worked with [a=Perez Prado], [a=Elvis Presley], [a=Diana Ross], [a=Paul McCartney], [a=Joni Mitchell], [a=Ella Fitzgerald], [a=Chick Corea], [a=Whitney Houston], [a=Placido Domingo], [a=Herbie Hancock], [a=Carlos Santana], [a=Antonio Carlos Jobim], [a=Beck], [a=Roberta Flack] and [a=Al Jarreau]. +Often credited as [b]Alejandro "Alex" Acuna[/b] and [b]Alex Acuna[/b].Needs Votehttps://www.facebook.com/alexacunamusic/https://www.drummerworld.com/drummers/Alex_Acuna.htmlhttps://en.wikipedia.org/wiki/Alex_Acu%C3%B1ahttps://www.gonbops.com/artists/alex-acuna/https://musicianbio.org/alex-acuna/A. AcunaA. AcuñaA.AcunaAcunaAcuñaAlax AcunaAlcunaAlejandro "Alex" AcunaAlejandro "Alex" AcuñaAlejandro AcunaAlejandro AcuñaAlejandro N, AcuñaAlejandro N. AcunaAlejandro N. AcuñaAlejandro NeciosupAlejandro Neciosup AcunaAlejandro Neciosup AcuñaAlejandro Neciosup-AcunaAlejandro Neciosúp AcuñaAlejandro Nesciosup AcunaAlejandro Nesciosup AcuñaAles Neciosup-AcuñaAlexAlex AcunaAlex AcuNaAlex AcuaaAlex AcuanaAlex AcucaAlex AcunaAlex AcunhaAlex AcuniaAlex AcunáAlex AcuraAlex AcuriaAlex AcuρaAlex AnucaAlex AounaAlex N. AcunaAlex Necioscup AcuñaAlex Necioscup-AcunaAlex Necioscup-AcuneAlex Necioscup-AcuñaAlex Neciosop AcunaAlex Neciosop AcuñaAlex Neciosuop-AcunaAlex Neciosuop-ArcunaAlex NeciosupAlex Neciosup - AcunaAlex Neciosup AcunaAlex Neciosup AcuñaAlex Neciosup-AcunaAlex Neciosup-AcuñaAlex Neciosup-AcũnaAlex Neciosup-acunaAlex Nesciosup AcunaAlex Nesciosup AcuñaAlex Nesciosup-AcunaAlex Nesciosup-AcuñaAlex NesiousupAlexander Neciosup-AcunaArejando Neciosup AcunaArejandro Neciosup Acunaアレックス・アクーニャアレックス・アクーニャWeather ReportLuis Bonilla Latin Jazz All StarsThe Zawinul SyndicateThe Red Road EnsembleCaldera (2)Jazz On The Latin Side AllstarsFriendship (3)KoinoniaSession IIClare Fischer's Latin SoundLos Angeles Philharmonic OrchestraGRP All-Star Big BandThe Blues CaravanBob Mintzer Big BandFletch Wiley & FriendsToluThe L.A. ChillharmonicBirds Of A Feather (6)The Laurindo Almeida TrioTia DiaBobby Lyle TrioToon Roos GroupAcuña-Hoff-Mathisen TrioAlex Neciosup-Acuña & GroupLos Hijos del Sol (4)Pacific Coast JamRich Lamanna And The Last Word + +415015Tompall GlaserThomas Paul GlaserAmerican country singer/songwriter and brother of [url=http://www.discogs.com/artist/Chuck+Glaser]Chuck[/url] and [a=Jim Glaser]. +Co-founded and owned [l=Glaser Sound Studios, Nashville] with his brothers. Inducted into the America's Old Time Country Music Hall of Fame (2003). +Born on September 3, 1933 in Spalding, Nebraska. +Died on August 13, 2013 in Nashville, Tennessee.Needs Votehttps://en.wikipedia.org/wiki/Tompall_Glaserhttps://adp.library.ucsb.edu/names/317921GlaserGlasserH. GlazierT. GlaserT. Glaser - T. GlaserT. GlasserT. GlazerT. P. GlaserT.GlaserTempall GlaserThomas D. GlaserThomas P. GlaserTomTom GlaserTom GlazerTom Pall GlaserTom Paul GlaserTom Paul GlazierTompallTompall - GlaserTompall ClaserTompall-GlaserTompaul GlaserTompball GlaserTompsall/GlaserTomsToms GlaserTompall And His Outlaw BandTompall Glaser & The Glaser BrothersThe Charleston Trio + +415188Frank MitchellFrank MitchellSaxophonist in [a262128]Needs VoteMitchellArt Blakey & The Jazz Messengers + +415476Mickey BakerMcHouston BakerAlso known as Mickey "Guitar" Baker, son of [a693892]. +American jazz guitarist and singer, widely held to be a critical force in the bridging of rhythm and blues and rock and roll. His broad session work included playing on numerous hit records on the Atlantic, Savoy, and King labels. +Writer of "The Complete Course in Jazz Guitar" self-tuition series, his books are a mainstay for introducing students of guitar to the world of jazz and have remained in print for over fifty years. +Born: October 15, 1925 in Louisville, Kentucky, USA; died: November 27, 2012 in Toulouse, France.Needs Votehttps://en.wikipedia.org/wiki/Mickey_Bakerhttps://adp.library.ucsb.edu/names/302612'Mickey' BakerBackerBakerBaker, MickeyBakersBig Red McHoustonM BakerM. BackerM. BakerM.BakerMc Houston BakerMcHouston "Mickey" BakerMickay BakerMickeyMickey "Guitar" BakerMickey "Guitar" BarkerMickey "Guitar“ BakerMickey 'Guitar' BakerMickey (Guitar) BakerMickey BackerMickey Baker And His GuitarMickey Baker With His Wildest GuitarMickey Guitar BakerMicky BakerMicky BeckerMikey "Guitar" BakerMikey 'Guitar' BakerN BarkerNicky "Guitar" BakerБейкерS. GibsonMcHouston BakerBonita (20)The Loop (3)Formation Mickey Baker + +415507Frank ComstockBorn September 20th 1922, San Diego, California. Died May 21st, 2013 (90 years). +Composer, orchestrator, arranger, conductor and trombonist.Needs Votehttps://en.wikipedia.org/wiki/Frank_Comstockhttp://www.filmmusicsociety.org/news_events/features/2013/072613.htmlhttps://www.imdb.com/name/nm0174104/https://adp.library.ucsb.edu/names/309329ComstockF. ComstockFran ComstockFranck ComstockOrchestra under the direction of Frank ComstockLes Brown And His OrchestraBenny Carter And His OrchestraFrank Comstock And His Orchestra + +415572Jean-Pierre FestiJean-Pierre FestinesiFrench arranger, born in Marseille (1936), died in Remoulins (1976). +Arranger for many recording projects in partnership with producer Yvon Ouazana. in 1972, Festi conducted the orchestra in the Eurovision Song Contest in Edinburgh for Switzerland's entry, 'C'est la chanson de mon amour' by Véronique Müller.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1972/03/jean-pierre-festi.htmlFestiFestinesiJ -P. FestiJ-P. FestiJ. - P. FestiJ. -P. FestiJ. P. FestiJ. P. FestiJ. Pierre FestiJ.-P FestiJ.-P. FestiJ.-P. FestinesiJ.-P. FestyJ.-P. SestiJ.P FestiJ.P. FestiJ.P. FestyJ.P.FestiJF FestiJP FestiJean FestiJean FestinesiJean-Pierre FestyOrchestre J.-P. FestiP. FestiT. P FestiPerformance (2)Fefti OuazannaJean-Pierre Festi Et Son Orchestre + +415573Yvon OuazanaArranger and conductor/director.Needs VoteJ. QuazanaOuazanaOuazana YvanOuenzanaOuzanaOvazanaQuanzanaQuazanaT. OuazanaV. OuazanaY OuazanaY. OnaganaY. OnatanaY. OuanzanaY. OuazanaY. OuazannaY. OuazanoY. OuchanaY. OvanzaY. OvazanaY. OvazonaY. QuazanaY.OuazanaY; OuazanaYvan OuazanaYvan OuzanaYvonYvon OuzzanaYvon QuazanaYvon WazanaJess KineganYvon WazanaPerformance (2)Les Champions (2)Fefti OuazannaYvon Ouazana Et Son Orchestre + +415720Lorin MaazelLorin Varencove MaazelFrench-born American composer, conductor, and violinist +Born March 6, 1930 in Neuilly-Sur-Seine, France +Died 13 July 2014 in Castleton Farm, Virginia, USA (aged 84). +Music director of [a547971] from 1972 to 1982, following [a547969].Needs Votehttps://en.wikipedia.org/wiki/Lorin_Maazelhttps://de.wikipedia.org/wiki/Lorin_Maazelhttps://www.maestromaazel.com/https://web.archive.org/web/20030803205254/https://www.sonyclassical.com/artists/maazel/https://www.nyphil.org/about-us/artists/lorin-maazel/https://www.bach-cantatas.com/Bio/Maazel-Lorin.htmhttps://www.facebook.com/MaestroMaazel/L MaazelL. MaazelLoren MaazelLorinLorin MaazalLorin MazzelMaazelЛ. МаазельЛopин MааʒeльЛopин MаазeльЛopйн MааʒeльЛорен МаазельЛорин Маазельマゼールロリン・マゼール + +415721Winchester Cathedral ChoirProfessional choir based at [l305642], in Hampshire. It comprises 22 boy choristers (aged 8-13) and 12 permanent adult male singers (lay clerks), who sing eight services a week. +The Cathedral also runs a girls’ choir (founded in 1999 and composed of 20 girls aged 12-17), a chamber choir (consisting of 25-30 singers of all ages and complementing the main choirs outside choir term time) and a nave choir (formed in 2007 and made up of around 40 singers drawn from the Cathedral congregation, who sing at services that fall outside those covered by the main choirs). +Since 2002, the Director of Music is [a2355450], assisted by George Castle since September 2012. Former directors include [a1468659] (October 1849-1865), [a1850223] (1949-1972), [a456699] (1972-1988) and [a288386] (1988-2002).Correcthttp://winchester-cathedral.org.uk/music-choir/cathedral-choirs/http://www.facebook.com/pages/Winchester-Cathedral-Choir/191944850822510http://www.ofchoristers.net/Chapters/WinchesterChoristers.htmhttp://en.wikipedia.org/wiki/Winchester_Cathedral_Choirhttp://www.thepilgrims-school.co.uk/default.asp?page=679&section=207http://www.bach-cantatas.com/Bio/Winchester-Cathedral-Choir.htmhttp://www.concertorganists.com/artists/Winchester-Cathedral-Choir/Catedral De WinchesterChoir Of Winchester CathedralChor Der Winchester CathedralChoristers Of Winchester CathedralChœur Cathédrale De WinchesterSoloists, Winchester Cathedral ChoirThe Choir Of Winchester CathedralThe Choir Of Winchester CathedralThe Choirs Of Winchester CathedralThe Choristers Of Winchester CathedralThe Winchester Cathedral ChoirWinchesterWinchester Cathedral & ChorusWinchester Cathedral Chamber ChoirWinchester Cathedral Choir, TheWinchester Cathedral ChoristersWinchester CathedralsDavid HillStephen BartonChristopher RobsonStephen LaytonStephen Roberts (2)Julian PodgerTimothy PrideDonald SweeneyGeraint Watkins (3) + +415723Paul Miles-KingstonBorn 8 April 1972 +Treble soloist in Andrew Lloyd Webber's production Requiem +Head Chorister of Winchester Cathedral January-July 1985Needs Votehttps://en.wikipedia.org/wiki/Paul_Miles-KingstonKingstonPaul Miles KingstonPaul Miles-KingtonPaul Milnes-Kingston + +415724David R. MurrayBritish producer of [l37150] (EMI) classical recordings at [a=Abbey Road Studios].Needs VoteDavid MurrayDavid R MurrayDavid Murray (4) + +415725English Chamber OrchestraFounded in 1948 by [a=Lawrence Leonard] and [a=Arnold Goldsbrough], originally as the [a=Goldsbrough Orchestra] and renamed to the English Chamber Orchestra in 1960. + +Based in London, England, U.K. + +The most recorded chamber orchestra in the world, its discography containing 857 recordings of over 1,500 works by more than 400 composers. + +The ECO has also performed in more countries than any other orchestra, and played with many of the world’s greatest musicians. The American radio network CPRN has selected ECO as one of the world’s greatest ‘living’ orchestras. The illustrious history of the orchestra features many major musical figures. Benjamin Britten was the orchestra’s first Patron and a significant musical influence. The ECO’s long relationship with Daniel Barenboim led to an acclaimed complete cycle of Mozart piano concertos as live performances and recordings, followed later by two further recordings of the complete cycle, with Murray Perahia and Mitsuko Uchida. Paul Watkins has been the ECO’s Music Director and Principal Conductor since 2009, and Sir Colin Davis was appointed Conductor Emeritus in 2010. + +2 Coningsby Road, London, W5 4HR, U.K. +Tel.: + 44 (0) 20 8840 6565 +Fax: + 44 (0) 20 8567 7198 +mail@englishchamberorchestra.co.ukNeeds Votehttps://www.englishchamberorchestra.co.uk/https://englishchamberorchestra.bandcamp.com/https://www.x.com/ECOrchestrahttps://www.facebook.com/englishchamberorchestra/https://www.bach-cantatas.com/Bio/ECO.htmhttps://en.wikipedia.org/wiki/English_Chamber_Orchestrahttps://www.naxos.com/person/English_Chamber_Orchestra/46249.htmAnglický Komorní OrchestrAnglický Komorný OrchesterAnglijos Kamerinis OrkestrasAngol KamarazenekarCOECellos Of The English Chamber OrchestraChamber OrchestraChaplinDas English Chamber OrchestraE.C.O.ECOEOCEng. Chamber OrchestraEngels KamerorkestEngelsk KammerorkesterEngl. Chamber OrchestraEngleski Kamerni OrkestarEngleski Komorni OrkestarEnglisches KammerorchesterEnglish Ch. Orch.English Chamber MusicEnglish Chamber Orc.English Chamber Orch.English Chamber OrchesterEnglish Chamber Orchestra & ChoirEnglish Chamber Orchestra (Ampliada)English Chamber Orchestra SoloistsEnglish Chamber Orchestra, LondonEnglish Chambers OrchestraEnglish Chambre OrchestraEnglish Champer OrchestraHet English Chamber OrchestraJose Luiz GarciaL'Orchestre de Chambre AnglaisMembers Of The English Chamber OrchestraMembers of the English Chamber OrchestraMusiciens De L'English Chamber OrchestraOrchestraOrchestre De Chambre AnglaisOrq. De Camara InglesaOrquesta Camara InglesaOrquesta De Camara InglesaOrquesta De Cámara InglesaOrquesta Inglesa De CamaraOrquesta Inglesa De CámaraOrquesta Inglesa de CamaraOrquesta Inglesa de CámaraOrquesta de Camara InglesaOrquesta de Cámara InglesaOrquestra De Câmara InglesaOrquestra de Câmara InglesaSoloists; English Chamber OrchestraStrings Of The English Chamber OrchestraThe Augmented Wind Ensemble Of The English Chamber OrchestraThe Consort Of LondonThe ECOThe English Chamber OrchestraThe English Chamber OrchestraWolfİngiliz Oda OrkestrasıАнглийский Камерный ОркестрАнглийский Камерный ОркестьАнглийский камерный оркестрЕнглеско Камерни Оркестарイギリス室内管弦楽団Goldsbrough OrchestraDave HeathHeinz HolligerSimon PrestonNigel KennedyAdrian BrettKeith HarveyDoug BoyleRebecca HirschClare FinnimoreAdam SkeapingAndy CrowleyMiffy HirschAnthony PikeJonathan TunnellRoger ChaseFenella BartonGlyn MatthewsAlan CivilJohn WilbrahamSimon StandageMaciej RakowskiJim McLeodFrank LloydIain KingJames TylerNatalia BonnerDavid JuritzEdward HobartMarcus Barcham-StevensPaul MosbyRory McFarlaneDavid Mason (2)Gareth Huw DaviesAlan LumsdenMatt HaimovitzJohn WillisonBrian HawkinsJohn Anderson (4)Roger LinleyJohn BurdenDerek WickensJudith HerbertDavid MunrowJonathan BarrittCharles TunnellJim BuckRaymond KeenlysideAndrew McGavinAdrian LevineAndrew DavisClare ThompsonBeverley JonesDerek Taylor (3)Gillian FindlayStephen OrtonAnthony ChidellJames Brown (10)John MarsonPhilip JonesJohn TunnellRobin O'NeillRoger HarveyBenjamin NabarroChris BevanJohn ConstableLeslie PearsonIan Watson (2)Sue BriscoeSylvain VasseurNicole Wilson (2)James BladesNeil Black (3)Tess MillerJosé-Luis GarciaJohn ChimesWilliam Bennett (3)Paul BarrittDavid CorkhillPaula ChateauneufDonald HuntSophie RenshawRaymond LeppardThomas GoffDenis VigayRichard AdeneyEdward SelwynPeter GraemeRaymond CohenMichael Laird (2)Don SmithersThurston DartOsian EllisDesmond DupréCharles FullbrookAnthony HalsteadMelanie StroverEmma JohnsonDietrich BethgeBernard RichardsCecil AronowitzCarl PiniRosemary GreenHoward SnellHarold LesterJennifer Ward ClarkeOlga HegedusJohn TruslerRuşen GüneşKenneth SillitoIshani BhoolaPhilip SimmsJulian CummingsNick ReaderAdrian BeersEmanuel HurwitzThea KingMartin GattMartin Smith (15)Stephen Williams (3)Paul Goodwin (2)James Ellis (3)Graeme McKeanAndrew Williams (10)Blandine VerletRoger BrennerIaan WilsonRobert Spencer (2)Matthew ElstonKenneth HeathQuintin BallardieIan HarperCelia NicklinNorbert SchmittWolfgang LäubinBernhard LäubinHannes LäubinMichael DobsonStephanie GonleyJulie PriceJohn ThurgoodAlexander TaylorChristopher TerianMichael Skinner (2)Philippe HonoréArthur Wilson (3)Malcolm HallIan MacIntoshGraham SheenJohn Langdon (2)Brian SewellMartin OutramNigel WoodhouseWilfred BrownPhilippe RacineKate HillJohn HoneymanJanice KnightThomas IndermühleMalcolm AllisonChristopher Nicholls (2)Ivor McMahonGraham WhitingJoan Enric LlunaAnthony RandallKate RobinsonRona MurrayPaul BoucherPhil Brown (11)Ifor JamesRod FranksLorraine McAslanMagnus JohnstonTerence WeilRobert AldwinckleMartin HumbeyMary EadeAnita LaskerJoanna MilhollandNorbert BlumeSimon RawsonPatrick Milne (2)Pierre DoumengeJean StewartStuart KnussenAndrew Sutton (3)Timothy BoultonRobin DavisPaul Sherman (3)Paul Sherman (2)Joy HallPeter ReeveThomas Martin (5)Sara BarringtonFabio ZanonIan CuthillCameron SinclairMaurice StegerDavid GreenleesJake ReaMarije PloemacherBozidar VukoticMichael MeeksPeter Carter (3)Howard EthertonHenry WardWilliam Prince (3)Nancy Johnson (3)Benjamin BucktonJohn Mills (8)Deirdre Dundas-GrantRuth EhrlichRoger BullivantPeter Mountain (2)Abigail YoungDavid Thomas (27)Neill SandersKenneth Cooper (2)Nicholas Hill (3)Alexandra Mackenzie (2)James Beck (5)James Sherlock (2)Norman Knight (2)Roy Sinclair (2)Neill BlackCatherine Smith (5)John Barnett (8)Tim Lowe (3)Joan-Eric LlunaRodney StatfordCharlotte TemplemanDavid Johnston (15)Shana Douglas (2)Helena Nichols (2)Pauline GilbertsonRodney Stewart (2)Christine GearJohn Clementson (3)Margaret Cowen (2)Andrew Clarke (18)Joanna Godden + +415783Buck RamSamuel RamAmerican songwriter, and popular music producer and arranger (November 21, 1907 Chicago, Illinois - January 1, 1991 Las Vegas, Nevada). + +He was born Samuel Ram to Jewish parents. It has been written that the history of rock and roll could not be written without Buck Ram's contributions. He was one of BMI's top five songwriters/air play in its first 50 years, alongside Paul Simon, Kris Kristofferson, Jimmy Webb, and Paul McCartney. Ram also wrote, produced and/or arranged for The Platters, The Coasters, The Drifters, Ike and Tina Turner, Ike Cole, Duke Ellington, Glenn Miller, Ella Fitzgerald, and many others. + +Ram is now mainly remembered for his long association with [a229180]. The success of the group can be attributed to Ram's large circle of friends in the music industry that included songwriters, publishers, agents and artists. Ram was a talent manager with his own firm, Personality Productions, an A&R man and saxophone player in a dance band when Tony Williams, the brother of one of Ram's clients, auditioned for him. Ram was looking for a group to sing the songs he wrote and found the voice he was looking for in Williams. He built The Platters around Williams voice because the other members of the group could not sing in the harmony, like the Mills Brothers, that Ram truly wanted. Ram arranged and produced all recordings by The Platters, from their signing with Mercury Records until his death, and wrote their biggest hits including "Only You (And You Alone)", "The Great Pretender". "Magic Touch", and "Twilight Time". + +When Mercury announced that they would release "Only You" on their purple "race music" label, Ram insisted that the records be relabeled, stating that The Platters had worked too hard to have their (and his) market limited by a record label. Mercury agreed, and the records were relabeled, thereby breaking down racial barriers and laying the groundwork for the black groups of the 1960s and beyond. + +Ram wrote the lyrics to "The Great Pretender" in the washroom of the Flamingo Hotel in Las Vegas after being asked what The Platters follow-up to "Only You" would be. In 1987, when the song hit #4 in England for Freddie Mercury, Ram had no idea who Mercury was but was thrilled his song was on the charts again - thirty one years after its 1956 premiere by The Platters, and like Dolly Parton and Liberace, he laughed all the way to the bank. Ram also wrote "The Magic Touch," the lyrics for "Come Prima (For the First Time)," "Twilight Time," "Chew Chew Chew Your Bubble Gum," (with Ella Fitzgerald), "Remember When," and "Ring Telephone Ring," among others. + +Controversy has surrounded "I'll Be Home for Christmas," since it was first published. The label on Bing Crosby's recording of "I'll Be Home for Christmas" credits it to Kent, Gannon, and Ram. Later recordings usually credit only Kent and Gannon. The discrepancy arose from the fact that on December 21, 1942 Buck Ram copyrighted a song titled "I'll Be Home for Christmas (Tho' Just in Memory)" although that version bore little or no resemblance, other than its title, to the Crosby recording. A song titled "I'll Be Home for Christmas" was also copyrighted on August 24, 1943, by Walter Kent (music) and James "Kim" Gannon (words). Kent and Gannon revised and re-copyrighted their song on September 27, 1943, and it was this version that Bing Crosby made famous. + +According to Ram and newspaper articles from the era, Ram wrote the lyrics to "I'll Be Home For Christmas" as a gift for his mother when he was a sixteen year old college student. In 1942, Ram's publisher chose to hold the song for release because they were going to release Irving Berlin's "White Christmas" first. Not completely satisfied with the song, Ram discussed his concerns with casual acquaintances, Kent and Gannon, in a bar. He left a copy of the song with them but never discussed it with them again. Both Ram and his publisher were shocked when the song was released. Ram's publisher sued and won. + +Unlike other talent managers of the era who were known for stealing and publishing songs others had written, Ram did not need to do so. He was a songwriter first and manager/producer second. The Platters and other groups he managed, like the Flares, were his vehicle to getting his songs recorded. In many cases he put singers names on songs he had written. The only other controversy in Ram's long songwriting career was with "Twilight Time" which had been an instrumental recorded by the Three Suns. When Ram wrote the lyrics to the song and made it a hit, the Three Suns sued. As in the Christmas standard, the court ruled that Artie Dunn and the Nevin brothers, writers of the instrumental, names be included. It did not find against Ram. +Needs Votehttp://en.wikipedia.org/wiki/Buck_Ramhttps://adp.library.ucsb.edu/names/104697A. RamA.RamB RamB RamsB-RamB. HamB. RamB. Ram.B. Ram/A. RandB. RammB. RamsB. RanB. RandB. RauB. RaumB. RayB. RemB. ramB.-RamB.RamBramBuch RamBuckBuck "Ram" RamirezBuck - RamBuck / RamBuck HamBuck RainBuck Ram AntlerBuck Ram RamirezBuck RammBuck RamseyBuck RanBuck RandBuck RemBuck RumBuck, RamBuck-RamBuck/RamBuckkamBuckramBudk - RamD. RamDamFiamManP. HamR. "Buck" RamR. BuckR. RamR.RamRAMRaeRahmRainRamRam - RandRam / RandRam BandRam BuckRam, BRam, BuckRam, RandRam-RandRam/BuckRam/RamRam/RandRam/Shand/RandRambuckRamsRanRandRand And RamRauRemRomRounRámSamuel "Buck" RamSamuel 'Buck' RamSamuel Ramb. RamБ. РамБ. РамандБ. РемБ.РамандРамондРэмAnde RandJean MilesJim Williams (6)Lynn PaulBuck Ram And His Rock'n Ram OrchestraBuck Ram And His Orchestra + +415785Benny HarrisBenny Harris (April 23, 1919, New York City - May 11, 1975, San Francisco) was an American bebop trumpeter and composer. + +Harris's first major gig was in 1939 with Tiny Bradshaw. He played with Earl Hines in 1941 and 1943, and worked the 52nd Street bebop circuit in New York City in the 1940s, where he collaborated with Benny Carter, John Kirby, Coleman Hawkins, Don Byas, and Thelonious Monk. He was with Boyd Raeburn from 1944-45 and Clyde Hart in 1944; he and Byas worked together again in 1945. He played less in the late 1940s, though he appeared with Dizzy Gillespie in 1949 and Charlie Parker in 1952; after this he quit music entirely. + +Harris was never a well-known soloist, and is better known for his compositions, which include "Ornithology" (a signature Charlie Parker tune), "Crazeology", "Reets and I" (a Bud Powell favorite), and "Wahoo". +Needs Votehttps://en.wikipedia.org/wiki/Benny_Harrishttps://www.allmusic.com/artist/benny-harris-mn0000792654/biographyhttps://adp.library.ucsb.edu/names/320137"Little" Benny HarrisB HarrisB HarrosB. HarrisB. HarrisB.HarrisBennie HarrisBenniw HarrisBenny - HarrisBenny-HarrisH. HarrisHarrisL. B. HarrisL.B. HarrisL.B.HarrisLIttle Benny-Benny HarrisLittle Bennie HarrisLittle Benny HarrisLittle Benny-Benny Harris“Little” Benny HarrisThe Charlie Parker QuintetDizzy Gillespie And His OrchestraBoyd Raeburn And His OrchestraEarl Hines And His OrchestraDon Byas QuintetteOscar Pettiford And His 18 All Stars + +415786John LevyAmerican jazz double bassist and businessman +Born April 11, 1912 in New Orleans, Louisiana, died January 20, 2012 in Altadena, California + +John played with (among others) Ben Webster, Errol Garner, Jimmy Jones, Milt Jackson, Billie Holiday, and George Shearing. +Not to be confused with [a=John Levy (2)] for Field Recordings.Needs Votehttp://www.personalmanagershalloffame.org/john-levy.htmlhttps://adp.library.ucsb.edu/names/327295https://en.wikipedia.org/wiki/John_Levy_(musician)https://www.imdb.com/name/nm4366805/J. LevyJ. O. LevyJ. O. Levy Jnr.J. O. Levy, Jnr.J. O. Levy, Jr.J. O. Levy, jr.J.Levy jr.J.O. LevyJ.O. Levy Jr.John LeveyJohn Levy JrJohn Levy, Jr.John O. LevyJohn O. Levy Jr.John O. Levy, JR.John O. Levy, Jnr.John O. Levy, Jr.John O.Levy jr.LevyLevy JnrLevy Jnr.Levy Jr.Levy, Jr.Levy, jr.The George Shearing QuintetStuff Smith TrioErroll Garner TrioDon Byas QuartetLennie Tristano TrioStuff Smith QuartetBilly Taylor QuartetDon Byas QuintetteCharles Ventura QuartetThe Phil Moore FourLittle Sam & OrchestraCyril Haynes SextetTrummy Young's Big SevenSession SixBilly Taylor's Big FourJimmy Jones QuintetRex Stewart's Big FourEddie Shu QuintetStuff Smith And Mary Osborne QuartetPete Brown Quartet + +415787Jack ParkerJazz drummer.Needs Votehttps://adp.library.ucsb.edu/names/108403J. ParkerJacg "The Bear" ParkerJack "The Bear" ParkerJack "the Bear" ParkerJack 'The Bear" ParkerJack 'The Bear' ParkerJack (The Bear) ParkerJack The BearJack The Bear ParkerJack “The Bear” ParkerJackie ParkerJimmie ParkerJimmy ParkerParkerMary Lou Williams TrioPete Johnson's All-StarsLeo Parker's All StarsEddie Heywood And His OrchestraHot Lips Page And His OrchestraBabs Gonzales And His OrchestraMary Lou Williams' Chosen FiveLeo Parker QuartetLeo Parker QuintetteCliff Jackson's QuartetMary Lou Williams And Her SixCliff Jackson's Black & White StompersJack Parker And Orchestra + +415788Dave RiveraDavid RiveraAmerican (Puerto Rican born) jazz pianist. + +Born : December 19, 1915 in Puerto Rico. + +He was a member of Cab Calloway Orchestra, also played with Rex Stewart, Mary Lou Williams, Ike Quebec, Don Byas and others. +Needs VoteD. RiveraDave RiveracDave RivieraDavid RiveraRiveraRivoraCab Calloway And His OrchestraJonah Jones And His CatsThe Ike Quebec QuintetMilt Hinton & His OrchestraJonah Jones And His Orchestra + +415789Rudy WilliamsAmerican jazz saxophonist (alto, tenor, baritone) and clarinetist, born 1909 in Newark, New Jersey, died September 1954. +Williams was a prominent member of [a=Al Cooper And His Savoy Sultans] 1937-1943, who also worked with [a=Hot Lips Page], [a=Tadd Dameron], [a=Howard McGhee], [a=Gene Ammons] and others. + +Needs Votehttps://en.wikipedia.org/wiki/Rudy_Williams_(saxophonist%29Rudy "Red" WilliamsWilliamWilliamsThe Tadd Dameron SextetTadd Dameron And His OrchestraTadd Dameron QuintetJohnny Hodges And His OrchestraAl Cooper And His Savoy SultansBennie Green SeptetTimme Rosenkrantz And His Barrelhouse Barons + +415791Fred RadcliffeJazz drummer +He played with Dinah Washington, Earl Bostic, Lionel Hampton, Don Byas, Herbie Fields, Arnett Cobb and many others.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/338897/Radcliffe_FredFred RadclifeFred RadcliffFred RatcliffeFreddie RadcliffeFreddie RodcliffeFreddy RadcliffFreddy RadcliffeLionel Hampton And His OrchestraDon Byas QuartetLionel Hampton And His SeptetLionel Hampton And His SextetDon Byas QuintetteHerbie Fields Swingsters + +415792Teddy BrannonHumphrey BrannonAmerican jazz and blues pianist (September 27, 1916, Moultrie, Georgia - February 24, 1989, Newark, New Jersey)Needs Votehttp://en.wikipedia.org/wiki/Teddy_Brannonhttps://adp.library.ucsb.edu/names/201050BrannanBrannonHumphrey "Ted" BrannonHumphrey "Teddy" BrannonHumphrey BrannonHumphrey Ted BrannonT. BrannonTed BrannonThe Jonah Jones QuartetDon Byas QuartetBenny Carter And His OrchestraTab Smith OrchestraJohnny Hodges And His OrchestraBennie Green SeptetTeddy Brannon OrchestraTeddy Brannon And His QuartetDickie Thompson And His Blue FiveTeddy Brannon Trio + +415833Wolfgang WeberGerman cellist (born December 22, 1939).Needs VoteFriedhelm Schönfeld TrioRundfunk-Sinfonie-Orchester LeipzigBerliner Sinfonie OrchesterGruppe Neue Musik "Hanns Eisler" LeipzigHans Rempel OrchesterAulos-Trio + +415921Edward VandersparClassical soloist and chamber viola player, and viola teacher. +He studied at [l305416] (1973-1975) and the [l1595558] (1975-1978). He became a member of the [a=London Symphony Orchestra] in 1991 where he took the position of Joint Principal Viola. Co-founder of the [a=World Orchestra For Peace]. Member of the [b]Vanderspar String Trio[/b] with his siblings [a=Chris Vanderspar] and Fiona.Needs Votehttps://www.feenotes.com/database/artists/vanderspar-edward/https://windsorfestival.com/profile/edward-vandersparhttps://www.imdb.com/name/nm4035138/https://vgmdb.net/artist/22768Ed VandersparEddie VandersparEdward Vander SparEdward VandesparLondon Symphony OrchestraRoyal Philharmonic OrchestraLondon Metropolitan OrchestraWorld Orchestra For PeaceKammerensemble BernLondon Symphony Orchestra Chamber Ensemble + +415922Marcus Barcham-StevensBritish violinist and composer.Needs Votehttp://www.marcusbarchamstevens.co.uk/Marcus Barcham StMarcus Barcham StevensMillennia StringsEnglish Chamber OrchestraThe London Telefilmonic OrchestraFitzwilliam String QuartetBritten SinfoniaEnsemble Modern OrchestraChroma (5)ArcangeloPlus-Minus Ensemble + +415923Gillian ThodayClassical cellist, cello tutor, festival adjudicator, and Diploma examiner. +She studied at the [l527847]. She has worked with many of the major London orchestras and as Guest Principal with, the [a=Bournemouth Sinfonietta], [a=London Concert Orchestra], [url=https://www.discogs.com/artist/349147-RT%C3%89-Concert-Orchestra]Radio Orchestra of Dublin[/url], [a=Trondheim Symfoniorkester], and the [b]Brussels Opera House[/b], where she was offered the position of Co-Principal Cello. Tutor of cello at the [l459222].Needs Votehttps://www.rncm.ac.uk/people/gillian-thoday/https://www.gsmd.ac.uk/youth_adult_learning/junior_guildhall/staff/department/23-string-teaching-staff/903-gillian-thoday/https://chethamsschoolofmusic.com/staff/gillian-thoday/https://www.lamariette.co.uk/page3https://www.cambridgeyouthmusic.org.uk/competitions/CYMY08/adjudicators/Gillian_Thoday.htmlGill ThodayGillian TodayLondon Symphony OrchestraI FiamminghiRedcliffe Ensemble + +415924Vicci WardmanBritish classical violist and tutor. Born in Leeds, West Yorkshire, England. +Founding member of the [a=Sorrel Quartet], which made its début in 1987. On leaving the Quartet in 2000, she took up the position of Principal Viola with the [a=Philharmonia Orchestra] for seven years, a position shared with [a=Rachel Roberts (2)]. Before this appointment, she was the Principal Viola of [a=The Manchester Camerata] for two years, and for many years Principal Viola of [a=The John Wilson Orchestra]. In 2010, she was appointed Principal Viola of the [a=Royal Philharmonic Orchestra], leaving 12 months later to return to full-time freelancing. Member of [a=Mobius (7)], [b]Pixels Ensemble[/b], [b]Psappha Ensemble[/b], and violist in the [a=Eroica Quartet]. Joint Principal Viola with the [a=Royal Liverpool Philharmonic Orchestra]. Vicci Wardman played with a number of orchestras, incl. [a=BBC Philharmonic], and [a=Northern Sinfonia]. Tutor in Viola at the [l459222].Needs Votehttps://www.facebook.com/vicci.wardmanhttps://open.spotify.com/artist/1BIB9muQDKfBKvttwwjKiJhttps://music.apple.com/id/artist/vicci-wardman/29751769https://musicianbio.org/vicci-wardman/https://maslink.co.uk/client-directory?client=WARDV1&instrument=VIOLA1http://pixelsensemble.org/?page_id=47https://www.rncm.ac.uk/people/vicci-wardman/Vicci WardmenVicki WardmanVicky ViolaVicky WardmanRoyal Philharmonic OrchestraThe London Studio OrchestraPhilharmonia OrchestraSorrel QuartetSonia Slany String And Wind EnsembleEroica QuartetThe Manchester CamerataThe John Wilson OrchestraMobius (7)The Chamber Orchestra Of LondonPixels Ensemble + +415926Jim RattiganFrench hornist.Needs Votehttps://www.jimrattigan.co.uk/https://jimrattigan1.bandcamp.com/James RattiganRattiganRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraThe Mike Gibbs OrchestraThe Ultramarine Big BandMike Gibbs + TwelvePavillonScratch Band (3)Hans Koller Jazz EnsembleThe Hardy Ensemble + +415927Douglas MacKieDouglas MacKieViolinist.CorrectDouglas MackieThe Academy Of St. Martin-in-the-Fields + +415931Martin BurgessClassical violinist.Needs VoteCity Of London SinfoniaThe Emperor String QuartetThe London Telefilmonic OrchestraLondon Metropolitan OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Scratch OrchestraThe New Blood OrchestraMichaelangelo Chamber Orchestra + +415940Richard WatkinsClassical horn player who performs as a concerto soloist and chamber music player. He is closely associated with promoting contemporary music for the horn. Born in 1962. +He was Principal Horn of the [a=Philharmonia Orchestra] from 1985 to 1996. Member of [a=The Nash Ensemble] and a founder member of [a=London Winds] & the [b]Transatlantic Horn Quartet[/b]. +Father of [a=Alexei Watkins] and [a=Louis Watkins]. +Needs Votehttps://soundcloud.com/richard-watkins-officialhttps://en.wikipedia.org/wiki/Richard_Watkinshttp://arcadiamusic.org.uk/pages/richard_watkinshttps://nyphil.org/about-us/artists/richard-watkinshttps://bachtrack.com/interview-richard-watkins-horn-brain-britten-turnage-philharmonia-november-2019https://www.hyperion-records.co.uk/a.asp?a=A830Richard Watkinリチャード・ワトキンスLondon Metropolitan OrchestraPhilharmonia OrchestraLondon Festival OrchestraThe Nash EnsembleThe Taliesin OrchestraMichael Collins And FriendsThe London Scratch OrchestraRobert Farnon And His OrchestraThe Dartington EnsembleLondon WindsMichaelangelo Chamber OrchestraThe English ConcertOrchestre de GrandeurMichael Thompson Horn QuartetThe Lanyer Ensemble + +416215Ted RosenthalAmerican jazz pianist, born in 1959.Needs Votehttp://tedrosenthal.com/RosenthalT. RosenthalTheodore RosenthalGerry Mulligan QuartetPer Husby OrchestraBill Warfield Big BandKen Peplowski QuartetTed Rosenthal TrioWestchester Jazz OrchestraBrad Goode QuartetKerry Strayer SeptetTed Rosenthal QuintetSteve Gilmore Jazz SextetJay Leonhart TrioNadav Snir-Zelniker Trio + +416216Tony DenicolaAntonio (Anthony) Emedio DeNicola.American jazz drummer. +Played with : Harry James, Freddy Martin, Charlie Ventura, Kenny Davern, Dick Hyman, Ralph Sutton and others. + +Born : September 27, 1927 in Pennington, New Jersey. +Died : September 02, 2006 in Philadelphia, Pennsylvania. +Needs VoteTony De NicolaTony DeNicolaTony Di NicolaTony DiNicolaHarry James And His OrchestraThe Kenny Davern QuartetTony DeNicola Band + +416399Chris White (3)Christopher Westley WhiteAmerican jazz bassist, born July 6, 1936 in New York, USA.Needs Votehttp://chriswhitebass.com/https://en.wikipedia.org/wiki/Chris_White_(bassist)https://adp.library.ucsb.edu/names/350659C. WhiteChristopher Wesley WhiteChristopher WhiteКрис УайтDizzy Gillespie Big BandDizzy Gillespie QuintetLalo Schifrin & OrchestraAndrew Hill QuartetThe Bill Barron QuartetThe Jimmy Owens - Kenny Barron QuintetThe Chris White ProjectNina Simone & Her TrioVera Auer QuintetAndrew Hill Trio + +416672Sol SchlingerSol SchlingerAmerican jazz and big band baritone saxophonist +Born September 06, 1926 in New York City, New York + +He played with Tommy and Jimmy Dorsey as well as Benny Goodman. He recorded with Al Cohn, Phil Woods, John LaPorte and Gene Quill.Needs Votehttps://adp.library.ucsb.edu/names/209150S. SchlingerSal SchlingerSaul SchlingerSchlingerSoh SchlingerSol SchilingerQuincy Jones And His OrchestraElliot Lawrence And His OrchestraThe Bob Prince TentetteBenny Goodman And His OrchestraManny Albam And His Jazz GreatsBilly Byers And His OrchestraThe Teddy Charles TentetUrbie Green And His OrchestraAll Star Alumni OrchestraHenry Jerome And His OrchestraGeorge Russell OrchestraLarry Sonn OrchestraJimmy Giuffre & His Music MenZoot Sims And His OrchestraGeorge Williams And His OrchestraArt Farmer And His OrchestraBob Brookmeyer And His OrchestraAl Cohn And His "Charlie's Tavern" EnsembleLouie Bellson And His Jazz OrchestraHal Schaefer And His OrchestraUrbie Green And His Big BandMichel Legrand Big BandPhil Woods-Gene Quill SextetThe Bill Potts Big BandBen Homer & His Orchestra + +416803Wolfgang StryiFor 23 years Stryi (1957 - 2005) played Bass Clarinet, Contrabass Clarinet, and Tenor Saxophone for the German contemporary music group Ensemble Modern.Needs VoteStryiWolf StryiEnsemble ModernEnsemble Modern Orchestra + +416804Susan KnightEnglish violist, born on 6th February 1969 in Leicester.Needs VoteSue KnightEnsemble ModernThe Academy Of St. Martin-in-the-FieldsEnsemble Modern OrchestraProspero EnsembleThe Britten-Pears EnsembleSwonderful Orchestra + +416805Roland DiryClassical clarinet player. +Member of Ensemble Modern since 1982 until 2015. +From 2003-2015, managing director of the Ensemble Modern and chairman of the International Ensemble Modern Academy.Needs VoteEnsemble ModernEnsemble Modern OrchestraMacheath's Gang (1999 Die Dreigroschenoper, HK Gruber, Ensemble Modern) + +416806Thomas FichterClassical double bass player, also plays various forms of electric bass.Needs Votehttps://brooklynrail.org/people/thomas-fichter/Ensemble ModernEnsemble Modern OrchestraMarque Löwenthal QuartettMacheath's Gang (1999 Die Dreigroschenoper, HK Gruber, Ensemble Modern) + +416807Dietmar WiesnerClassical flutist and composer, born in 1955 in Luenen, Germany. +Member of the Ensemble Modern since 1980. +During 1992 and 1993 he was curator of Ars Electronica in Linz, Austria. +In 1994, together with [a=Catherine Milliken] and [a=Hermann Kretzschmar], he founded [a=HCD Productions]. +Dietmar Wiesner's own compositions include "Variation V" (1997), written for the re-opening of the Wiesbaden Landesmuseum, "T-RAM" (1997), a tape composition performed at the Kestner Museum as part of the Hannover Biennale Festival, and "Ghibli" for alto flute and bass clarinet, written for Hessen Radio.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/dietmar-wiesnerDietmar WeisnerEnsemble ModernHCD ProductionsEnsemble Modern OrchestraMacheath's Gang (1999 Die Dreigroschenoper, HK Gruber, Ensemble Modern) + +416808Uwe DierksenUwe DierksenGerman classical trombonist from Frankfurt/Main.Needs Votehttps://uwe-dierksen.com/https://www.facebook.com/UweDierksenofficial/Ensemble ModernEnsemble Modern OrchestraMavis (6) + +416809Rainer RömerGerman classical percussionist and radioplay producer, born 1956 in Würzburg. Since 1985 he is a member of the Ensemble Modern, in 2004 he became professor in Frankfurt.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/rainer-roemerEnsemble ModernEnsemble Modern OrchestraMacheath's Gang (1999 Die Dreigroschenoper, HK Gruber, Ensemble Modern) + +416811Rumi Ogawa-HelferichClassical percussionist. +For credits mentioning just [a629535] use the alias.Needs VoteRumi OgawaRumi-Ogawa-HelferichRumi OgawaEnsemble ModernFreies Bläser- Und SchlagzeugensembleEnsemble Modern Orchestra + +416812Franck OlluFrench classical hornist and conductor, born 1960 in La Rochelle.Needs Votehttps://www.franckollu.com/Frank OlluEnsemble ModernEnsemble Musique ObliqueEnsemble Modern Orchestra + +416814Hermann KretzschmarClassical pianist and composer, born in 1958. +Member of the Ensemble modern since 1985. +He composes mainly chamber music with electronic and audio pieces made for radio.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/hermann-kretzschmarHermann KretschmarHermann KretzschmarrEnsemble ModernHCD ProductionsEnsemble Modern Orchestra + +416816Michael KasperMichael Maria KasperCellist. + +After studying in Berlin and Cologne (Germany), Kasper joined the [a=Ensemble Modern] in 1980. In 1985, he left that group and joined the [url=http://www.discogs.com/artist/WDR+Sinfonieorchester+K%C3%B6ln]Symphony Orchestra Of Radio Cologne[/url]. He rejoined the Ensemble Modern in 1997.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/michael-m-kasperMichael M. KasperMichael Maria KasperEnsemble ModernWDR Sinfonieorchester KölnEnsemble Modern Orchestra + +416817Hilary SturtClassical violin playerNeeds VoteHilary StirtEnsemble ModernKreisler String OrchestraApartment HouseThe Homemade OrchestraHot Strings (4) + +416818Noriko ShimadaJapanese bassoon player, she studied in Tokyo and Hannover, after many years in Europe she joined the Sydney Symphony Orchestra as principal contrabassoon in 2002.Needs Votehttps://www.sydneysymphony.com/musicians/noriko-shimadaNorika ShimadaEnsemble ModernSydney Symphony OrchestraHet Brabants OrkestEnsemble Modern Orchestra + +417042Peter MatzPeter MatzAmerican musical director, composer and arranger. +Born November 6, 1928 in Pittsburgh, Pennsylvania, USA. +Died August 9, 2002 in Los Angeles, California, USA. +Married to singer [a=Marilynn Lovell] (1981-2002, his death). +Nominated for the Oscar for Best Music, Scoring Original Song Score and/or Adaptation for "Funny Lady" (1976). He was also nominated for fourteen Emmys (1965-1990). He was nominated for two Grammys, winning in 1990 for 1965 Best Accompaniment Arrangement for Vocalist(s) or Instrumentalist(s) for the song "People", accompanying Barbra Streisand.Needs Votehttps://en.wikipedia.org/wiki/Peter_Matzhttps://www.imdb.com/name/nm0560690/https://adp.library.ucsb.edu/names/206446MatzP, MatzP. MatzP.MatzPeter MatyPeter WaltzОркестрNo Strings SextetPeter Matz Orchestra + +417249Maaike AartsMaaike AartsViolinist, born 10 March 1976 in Amsterdam, Netherlands. From 2004 to 2010 she plays first violin in the Royal Concertgebouw Orchestra. Between 1992 and 1995 she played in the Dutch metal band Celestial Season.Needs Votehttp://en.wikipedia.org/wiki/Maaike_AartsMaaikeCelestial SeasonConcertgebouworkestNetherlands Chamber Orchestra + +417353John PelloweSound engineer on recordings of classical music.CorrectJ. Pellowe + +418232Arthur ClarkeArthur F. ClarkeAmerican jazz saxophonist born in Birmingham, Alabama, USA. Best known under the nickname "Babe". Brother of [a342141] and [a2114627]. Died January 7, 1992 in East Brunswick, New Jersey, at age 67.Needs VoteA. ClarkeArt ClarkeArthur "Babe" ClarkeArthur ClarkArthur F. ClarkeClarkeBabe ClarkMilt Jackson OrchestraJohnny Hodges And His OrchestraThe Frank Wess OrchestraThe Riverside Jazz Stars + +418678Henrik Dam ThomsenDanish classical cellist.Needs Votehttp://www.henrikdamthomsen.dk/Henrik DamHenrik Dam ThomsonMad Cows SingStradi & The Various StringsDR SymfoniOrkestretCopenhagen Cello Quartet + +418685Paul MosbyClassical oboist.Needs VoteEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Bach Ensemble + +418708Frederick LoeweFriedrich (Fritz) LöweAustrian-American musical composer. +Born: 10th June 1901, Berlin, Germany. +Died: 14th February 1988, Palm Springs, California. + +Musicals: Brigadoon, My Fair Lady, Camelot...Needs Votehttps://www.frederickloewe.org/http://www.frederickloewefoundation.org/https://en.wikipedia.org/wiki/Frederick_Loewehttps://www.imdb.com/name/nm0517350/https://adp.library.ucsb.edu/names/102084E. LoeweElmer LœveF LoeweF. LoeweF. K. LoeweF. LeeweF. LoeneF. LoeweF. LouF. LovsF. LoweF. LöeweF.LoeweF.LouFr. LoeweFr. LöweFr.LoeweFran LoweFrank LoeweFred LoeweFrederck LœveFrederic LoeveFrederic LoeweFrederich LoeweFrederick LaineFrederick LoeveFrederick LoweFrederickg LoeweFrederik LoeweFrederique LoeweFredric LoeweFredrick LoeweFriedrich LöweFréd. LoeweFrédéric LoeweFrédéric LoweFrédérick LoeweHoeweLeoweLeuweLoeLoeveLoewLoeweLoewe F.Loewe, FrederickLooweLoveLoweLowewLoéLöweS. LoeweЛоуиЛёвеР. ЛоуФ. Лоуלאוופ. לאופרדריק לאוفريديريك لوفيLerner & Loewe + +418711Mousey AlexanderElmer AlexanderAmerican jazz drummer. +Played with : Jimmy McPartland, Sauter-Finegan, Johnny Smith, Benny Goodman, Bud Freeman, Eddie Condon and others. + +Born : June 29, 1922 in Gary, Indiana. +Died : October 09, 1988 in Longwood, Florida. +Needs Votehttp://www.allmusic.com/artist/mousie-alexander-p51048/biography"Mousey" Alexander"Mousie" AlexanderElmer "Mousey" AlexanderElmer 'Mousey' AlexanderElmer AlexanderMoosie AlexanderMousey O'AlexanderMousie AlexanderMousy AlexanderJimmy McPartland And His DixielandersSauter-Finegan OrchestraJay McShann And His OrchestraRex Stewart QuintetJohnny Smith QuartetMarian McPartland TrioThe Ralph Sutton QuartetMike Bryan And His SextetThe Sons Of Sauter-FineganMel Davis SextetCharlie Ventura QuintetThe New Charlie Ventura SextetThe Mousey Alexander SextetZoot Sims / Jimmy Rowles QuartetThe Eddie Barefield Sextet + +418852Robert B. ShermanRobert Bernard ShermanAmerican songwriter and painter (born 19 December 1925 in New York City, New York, USA; died 6 March 2012 in London, England, UK.). +Son of [a=Al Sherman (2)] and father of [a5100490]. +Starting in the 1950s, Sherman formed a songwriting team, [a666551], with his brother [a=Richard M. Sherman]. Often working for the [i]Walt Disney[/i] film studios, they composed the songs for movies like [i]Mary Poppins[/i], [i]The Jungle Book[/i] and [i]Chitty Chitty Bang Bang[/i]. +During a career that spanned almost 50 years, Sherman won multiple Academy and Grammy Awards. In 2005, he was inducted into the Songwriters Hall of Fame.Needs Votehttp://www.robertshermanart.com/https://d23.com/about-legends/remembering-robert-sherman-2/https://en.wikipedia.org/wiki/Robert_B._Shermanhttps://www.imdb.com/name/nm0792567/B ShermanB シャーマンB. SermanB. ShermanB.ShermanBobBob RobertsBob ShermanBob-ShermanBud ShermanD. ShermanHermanJ. ShermanM. ShermanR & B ShermanR B ShermanR B. ShermanR ShermanR. B. ChermanR. B. DhermanR. B. ShermanR. H. ShermanR. M. ShermanR. SherhamR. ShermanR. ShermanovéR. ŠermanR. シャーマンR.-B. ShermanR.B HermanR.B ShermanR.B. & R.M. ShermanR.B. HermanR.B. ShermanR.B. シャーマンR.B.-ShermanR.B.ShermanR.B.シャーマンR.E. ShermanR.H. DhermanR.M. ShermanR.ShermanR.b ShermanRB ShermanRB. ShermanRichard M. ShermanRob. B. ShermanRobertRobert B ShermanRobert B.Robert B. S. ShermanRobert Bernard ShermanRobert M. B. ShermanRobert M. ShermanRobert SchermanRobert ShermanRobert. B. ShermanRobt. B. ShermanRobt. ShermanSchermanShermanSherman RSherman Robert BSherman, Robert BSherman. BShermonБ. ШерманР. Б. ШерманШерманר. שרמןרוברט ב. שרמןロバート・B・シャーマンB シャーマンThe Sherman Brothers + +418854Richard M. ShermanRichard Morton ShermanAmerican songwriter +Born: 12th June 1928 New York, New York, USA +Died: 25th May 2024 Los Angeles, California, USA +Since the 1950s Sherman formed a songwriting team with his brother [a=Robert B. Sherman]. Often working for the [i]Walt Disney[/i] film studios, they composed the songs for movies like [i]Mary Poppins[/i], [i]The Jungle Book[/i] and [i]Chitty Chitty Bang Bang[/i]. +During his career that spans almost 50 years, he has won multiple Academy and Grammy Awards and was inducted into the Songwriters Hall of Fame in 2005. +The Sherman brothers are the sons of [a=Al Sherman (2)].Needs Votehttp://www.songwritershalloffame.org/exhibits/C347http://legends.disney.go.com/legends/detail?key=Richard+Shermanhttp://www.allmusic.com/artist/richard-m-sherman-mn0000351536https://en.wikipedia.org/wiki/Richard_M._Shermanhttps://www.imdb.com/name/nm0792556/https://it.wikipedia.org/wiki/Richard_M._ShermanB. ShermanD ShermanD シャーマンD. ShermanD. SherwinD.ShermanD.SherwinDIck ShermanDick ShermanDick. ShermanM. ShermanP.M. ShermanR M ShermanR M. ShermanR ShermanR,M ShermanR.R. M. ShermanR. B. ShermanR. M.R. M. DhermanR. M. SbermanR. M. ShermanR. N. ShermanR. S. ShermanR. SchermanR. SherhamR. ShermanR. ShermanovéR. ŠermanR.-M. ShermanR.B. ShermanR.H. ShermanR.M ShermanR.M.R.M. DhermanR.M. ShemanR.M. ShermanR.M. ShumanR.M. シャーマンR.M.-ShermanR.M.L ShermanR.M.ShermanR.M.シャーマンR.N. ShermanR.m ShermanRM ShermanRM. ShermanRich ShermanRich. M ShermanRich. M. ShermanRich. ShermanRichardRichard B. ShermanRichard MRichard M ShermanRichard M.Richard Morton ShermanRichard SchermanRichard ShermanRichard. ShermanRichardsRobert B. ShermanRobert M. ShermanShemanShemarShermanSherman DickSherman RSherman Richard MSherman, Richard MSherman. DShermonW. ShermanР. М. ШерманШерманב.ד. שרמןר. שרמןריצ'ארד מ‫.リチャード・シャーマンD シャーマンRod Sherwood (2)The Sherman BrothersPearlies + +419271Justin WilliamsAustralian violistNeeds Votehttp://tinalley.com.au/the-quartet/justin-williams-viola/Sydney Symphony OrchestraTinalley String Quartet + +419352Robert SwisshelmFrench hornistNeeds VoteBob SwisshelmRobert J. SwisshelmRobert SwisselRobert SwisshelGil Evans And His OrchestraOrchestra U.S.A. + +419412Warren HamWarren Lee HamAmerican saxophonist, vocalist, flautist and composer, born 26 October 1952, TX, United StatesNeeds Votehttp://warrenham.blogspot.com/https://www.facebook.com/warren.ham.9https://en.wikipedia.org/wiki/Warren_HamHamW. HamWarrenWarren "Mr. Fabolous" HamWarren "Mr. Fabulous" HamWarren HaimWarren HammWarren Lee HamKansas (2)BloodrockThe Maranatha SingersRingo Starr And His All-Starr BandAD (10)Ham Brothers + +419440Otto JoachimGerman-born Canadian violinist, violist, composer, electronic music specialist, and educator, October 13, 1910 – July 30, 2010.Needs Votehttp://en.wikipedia.org/wiki/Otto_Joachim_%28composer%29http://www.thecanadianencyclopedia.com/index.cfm?PgNm=TCE&Params=U1ARTU0001761JoachimMontreal Consort Of ViolsOrchestre symphonique de MontréalMcGill Chamber OrchestraMontreal String Quartet + +420011Julien ClercPaul-Alain Auguste LeclercFrench singer of pop music and ballads in French language, also songwriter and actor, born 1947 in Paris.Needs Votehttps://www.julienclerc.comhttp://www.facebook.com/julienclerchttp://genius.com/artists/Julien-clerchttp://twitter.com/julienclerc_offhttp://en.wikipedia.org/wiki/Julien_Clerchttp://www.youtube.com/@julienclercClercClerc JulienJ ClercJ. CercJ. ClercJ. ClerkJ.ClercJ; ClercJulienJulien ClairJulien ClereJulien ClerecJulien CleroJulien!Juliens ClercLeclercMister J. ClercЖ. КлеркЖюльен Клеркジュリアン・クレールChanteurs Sans FrontièresNoël EnsembleLes EnfoirésEnsemble (4)Les Enfants Du Pays36 Front Populaire + +420273Richard SherRichard SherAmerican cellist, born in 1948.Correcthttp://richardsher.comRichie SherBoston Symphony OrchestraSaint Louis Symphony OrchestraVermeer Quartet + +420553Lenny MacalusoAmerican guitar player, songwriter and composer, born in 1947.Needs VoteL. MacAlusoL. MacalusoL.MacalusoLen MacalusoLennie MacalusoLenny MackLenny MaculusoLeoLeonard MacalusoLeonardo MacalusoMacalusoC.C.L.M.Mass (19)Sound Foundation (2)Rockin' Horse (2) + +421437Jimmy WilkinsUS-Trombone player (born 1921)Needs Votehttps://www.jazzwax.com/2018/08/jimmy-wilkins-1921-2018.htmlhttp://detroitsound.org/artifact/jimmy-wilkins/https://de.zxc.wiki/wiki/Jimmy_Wilkins_%28Musiker%29J. WilkinsWilkinsCount Basie OrchestraErnie Fields OrchestraJeter-Pillars "Club Plantation" OrchestraJimmy Wilkins Orchestra + +421442Bernie PeacockSaxophonist. Born June 2, 1921. Died December 6, 1997. Needs Votehttps://en.wikipedia.org/wiki/Burnie_PeacockBurney PeacockBurnie PeacockPeacockLucky Millinder And His OrchestraBurnie Peacock & His OrchestraHot Lips Johnson And His OrchestraBurnie Peacock Quartet + +421717David HallydayDavid Michael Benjamin SmetBorn: August 14, 1966 in Boulogne-Billancourt, France +French singer. +Son of [a=Johnny Hallyday] and [a=Sylvie Vartan]. +Needs Votehttp://davidhallyday.artistes.universalmusic.frD. HallidayD. HallydayD. Michael SmetD.HallydayDavidDavid HalldayDavid HallidayHallydayデビッド・ハリデイデヴィッド・ハリディDavid SmetNoël EnsembleLes EnfoirésNovacaine (2)Blind FishCollectif Paris-Africa Pour L'UnicefLes Voix De L'enfantMission Control (19) + +421870Keith LovingKeith I. IllidgeGuitarist - songwriterNeeds Votehttps://www.linkedin.com/in/keithlovingKeith L. LovingKeith LovigKeith Loving IlledgeKeith Loving IllidgeKeith IllidgeGil Evans And His Orchestra + +421925Laura CochraneClassical violinist.CorrectThe Monteverdi ChoirGabrieli PlayersThe King's Consort + +421968Tessa BonnerEnglish classical vocalist (soprano). +Born February 28, 1951; died December 31, 2008.Needs VoteBonnerGabrieli ConsortMetro VoicesNew London ConsortThe Tallis ScholarsThe SixteenCollegium VocaleThe English Concert ChoirTaverner ChoirMusica SecretaThe Schütz Choir Of LondonThe King's Consort + +421970Kim PorterEnglish classical mezzo-soprano / alto and composer.Needs Votehttps://www.kimportermusic.com/https://www.bach-cantatas.com/Bio/Porter-Kim.htmMagnificatBBC SingersThe SixteenPolyphonyMartin Best ConsortThe Eric Whitacre Singers + +422050William MotzingAmerican born Australian conductor and composer. Relocated to Australia in 1972. In the 1970s and 1980s Motzing arranged and conducted strings and horns on many of Australia's chart-topping hits and has over 30 Australian film and TV soundtracks to his name. He taught theory, arranging, modern jazz history, improvisation and ensembles at the [l=Sydney Conservatorium Of Music].Needs Votehttp://gaibryantspareparts.com/composer/william-motzing/https://en.wikipedia.org/wiki/William_MotzingB. MotzingBill MotzingMotzingW. MotzingWilliam E. MotzingWilliam MotzigRTÉ Concert OrchestraThe Australian Opera & Ballet OrchestraSydney Symphony OrchestraAustralian Chamber OrchestraBBC Radio OrchestraThe Neon Philharmonic OrchestraWilliam Motzing OrchestraKirk L'Orange OrchestraThe Australian Broadcasting Commission Philharmonic Orchestra + +422189Jean RenardJean Gaston RenardFrench composer, born December 4th, 1933 in Provins, France. + +Do NOT confuse with German songwriter [a=Stefan Renard] ("Sept Coeurs")Needs Votehttp://fr.wikipedia.org/wiki/Jean_Renard_(auteur-compositeur)BernardG. RenardG.RenardGaston Renard JeanI. RenardI. RenardasI.RenardasJ RenardJ. BenardJ. BernardJ. Gaston RenardJ. ReanrdJ. RegardJ. RenadJ. RenanoJ. RenardJ. RenartJ. RenaudJ. RénardJ.RenardJ.ルナールJG ReanrdJean FenardJean G. RenardJean Gaston RenardJean Gatson RenardJean Marie RenardJean Renard GastonJean RenartJean RenhardJean RénardJèan RenardPierre HavettR. RenardRenardRenard Jean GastonRenartRenaudRenerdRénardY. Renardj. RenardЖ. Ренарג'אן רנרדJuan ZorroBig TwistDallas (11)Jean Renard & Sein Orchester + +422196Howard McGillClarinetist and saxophonistNeeds Votehttps://www.bandm.co.uk/wind-and-brass-world/features/introducing-howard-mcgill-as-a-vandoren-uk-artistH. D. McGillThe Matthew Herbert Big BandLondon Symphony OrchestraNational Youth Jazz OrchestraOrchestrateAlan Barnes + Eleven + +422199Simon Turner (2)Cellist.Needs VoteHallé OrchestraRealstrings.com + +422601The Lester Young SextetCorrectLester Young & His SextetLester Young And His BandLester Young And His SextetLester Young SextetJunior ManceRoy HaynesLester YoungRodney RichardsonFred LaceyShorty McConnellJesse DrakesJerry ElliottLyndall MarshallArgonne ThorntonLeroy Jackson (3) + +423007Blair MastersBlair Kent MastersAmerican session keyboardist, programmer, arranger, producer and engineer. Born in 1965 in Keizer, Oregon. +Moved to Nashville in 1988. +Recorded with Amy Grant, BeBe Winans, Jerrod Niemann, Steven Curtis Chapman, Casting Crowns, Andy Williams, Barry Manilow, Megadeth, and others. +Toured with Garth Brooks, Peter Frampton, Michael McDonald, MercyMe, Giant, Steve Wariner, and others. +Composed music for television for A&E, The Discovery Channel, ABC, NBC, and CBS. +Co-wrote the song “Blue Beyond”, which was sung by Trisha Yearwood in the Disney movie “Fox & the Hound II”. +Needs Votehttp://blairmasters.tumblr.com/https://twitter.com/blairmastershttps://www.facebook.com/blair.masters.96https://www.thepettyjunkies.com/blair-mastersBlairBlair K. MastersBlair Kent MasterBlair MasterBlaire MastersMastersDogs Of PeaceTim Akers & the Smoking Section + +423096Joseph SciacchitanoCellist, born 1913, died 22 May 2009 in Chicago, Illinois. + +Joseph "Sam" Sciacchitano was a member of the Indianapolis Symphony Orchestra in 1937, joined the Chicago Symphony Orchestra in 1943 but left shortly afterward to work with the WGN Symphony Orchestra. + +That orchestra disbanded in the mid-1950s and he went on to play as principal cellist with the Milwaukee Symphony Orchestra before going back to the Chicago Symphony Orchestra in 1961. He retired from the orchestra in 1983. +Needs VoteJoe SciacchitanoSam SciacchitanoChicago Symphony OrchestraMilwaukee Symphony Orchestra + +423100Samuel MagadViolinist, born in Chicago, Illinois. + +Member of the Chicago Symphony Orchestra 1958 - 2007, as Assistant Concertmaster from 1966 until 1972 and as Concertmaster from 1972 until 2007. +Needs VoteS. MagadSam MagadChicago Symphony Orchestra + +423493Rory McFarlaneBassist and composer, from London, England +Rory McFarlane started out in 1983 with folk artist Richard Thompson before going on to record and tour for many renowned and successful artists including Tanita Tikaram, Loudon Wainwright, Martin Carthy and Dave Swarbrick, classical violinist Nigel Kennedy, Damon Albarn, the Magic Numbers, Lemon Jelly, Squeeze, Madness, the Blockheads, Marianne Faithfull etc. +In 1989, parallel to his career as accompanying musician, he started writing advertising, film and animation soundtracks. +Since 2001 he has taught bass and run music workshops at various schools and colleges including the Bass Institute, Kingston Grammar School, the Centre for Young Musicians and London Philharmonic Orchestra Bright Sparks. He has a BSc in Psychology and Sociology and has worked with Special Educational Needs pupils.Needs Votehttp://rorymcfarlane.com/McFarlaneR McFarlaneR. MacFarlaneRauri McFarlaneRaurie McFarlaneRori McFarlaneRory MacFarlaneRory MacfarlaneRory Mc FarlaneRory McFarlandRoy McFarlaneRuari McFArlaneRuari McFarlaneThe Keith Hancock BandEnglish Chamber OrchestraThe Kennedy ExperienceRichard Thompson BandThe Demon Strings + +423502Jack HuntAmerican sound, mastering and lacquer cutting engineer. +Known to have worked for [l=MGM], [l=Liberty Studios], [l=JVC Cutting Center] and [l=Mobile Fidelity Sound Lab]. +When credits are derived from the initials in the runout (that can easily be mistaken for J.T. or J+), please use the following ANVs for the [b]Lacquer Cut By[/b] credit: +"J.H." or "J.H./2" - use ANV J.H. +"JG/2" or "JG" (can be circled) - use ANV J (JG note: stands for Jack & Gary, Gary is a shoutout).Needs VoteJJ.HJ.H.J.H./2JGJG/2JHJH/2Jack E. HuntJack H. Huntジャック・ハント + +423690Edgar BattleEdgar William Battle.American jazz trumpeter, trombonist, saxophonist, pianist, organist, arranger and composer. + +Born : October 03, 1907 in Atlanta, Georgia.. +Died : February 06, 1977 in New York City. +Needs Votehttps://adp.library.ucsb.edu/names/106189BahleBattleBattle, E.Battle, E.W.BattlesE BattleE. BattleE. W. BattleE. William BattleE.BattleE.W. BattleE.W.BattleEd BattleEdgar "Pudden Head" BattleEdgar "Pudding Head" BattleEdgar "Puddinghead "BattleEdgar "Puddinghead" BattleEdgar 'Puddin' Head' BattleEdgar W. BattleEdgar William BatteleEdgar William BattleEdgar William Battle.Edgar «Pudding Head» BattleEdgard BattleEdger W. BattleEdward "Pudding Head" BattleEdward "Puddinghead" BattleRoy BattleW. BattleWilliam E. BattleWilliam Edgar BattleBlanche Calloway And Her Joy BoysWillie Bryant And His Orchestra + +423809Bob LawsonAmerican jazz saxophonist.Needs VoteRobert LawsonHarry James And His OrchestraWoody Herman And His OrchestraArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraBob Crosby And His OrchestraIke Carpenter And His OrchestraRed Norvo And His OrchestraBob Keene OrchestraHarry James And His Big BandDan Terry And His OrchestraBuddy Rich All Stars + +424108Bournemouth SinfoniettaEnglish chamber orchestra founded in 1968 as an off-shoot of the [a=Bournemouth Symphony Orchestra]. Disbanded in 1999 due to increased funding difficulties. +For the associated choir, please use [a3862011]Needs VoteBournemouth Sinfonietta OrchestraThe Bournemouth SinfoniettaБорнмут СимфониеттаRichard StudtStephen OrtonJohn OrfordWilliam O'SullivanIvor BoltonVanessa King (2)Alun Thomas (2)Peter FaircloughDrusilla AlexanderMatthew FairmanPeter NallPhilip Borg-WheelerJeremy CornesLeslie ChildSydney HumphreysGonzalo AcostaMatthias WittJulian TraffordBrian Johnston (2)Peter KaneNicholas CarpenterHoward NelsonSuzanne KinghamPatrick Milne (2)John EwartChristopher GrayerYoucheng SuNicholas OrmrodPhilip James (4)Hugh Miller (2)James Hunt (4)Andrew KnightsDavid Evans (11)Gunnar WestrupBrian HowellsAndrew Baker (2)Michael GarbuttGraeme Davis (2)Julia BarkerColin Sauer (2)Torbjörn HultmarkMark Calder + +424382Scott DickinsonScott DickinsonClassical violist, born in Glasgow. Principal Viola of the BBC Scottish Symphony Orchestra.Needs VotePhilharmonia OrchestraBBC Scottish Symphony OrchestraThe Leopold String Trio + +424440David Mason (2)David MasonEnglish orchestral, solo and session trumpet player. Despite his long career, he was probably best known for playing the piccolo trumpet solo on The Beatles' song, "Penny Lane". +(2 April 1926, London – 29 April 2011) + +His early career benefited from the onset of World War II, as he was ineligible for recruitment, and was able to pick up a lot of work in London before and during his time as a student at the Royal College of Music, which was itself interrupted by his own call-up into the Band of the Scots Guards. After leaving the Royal College of Music, Mason became a member of the orchestra of the Royal Opera House, moving on later to the Royal Philharmonic Orchestra where he eventually became principal trumpet. After seven years in that role he moved to the Philharmonia, where he remained for most of the rest of his orchestral career. He was a professor of trumpet at the Royal College of Music for thirty years and thus taught many of the trumpet players who now make up the core of the profession in the UK. The Royal College of Music has awarded a David Mason Prize for Orchestral Trumpet Playing. + +On 17 January 1967 at Abbey Road Studios Mason recorded the piccolo trumpet solo which is a prominent part of The Beatles' song "Penny Lane". The solo, inspired by Mason's performance of Bach's 2nd Brandenburg Concerto with the English Chamber Orchestra, is in a mock-Baroque style for which the piccolo trumpet (a small instrument built about one octave higher than the standard instrument) is particularly suited, having a clean and clear sound which penetrates well through thicker midrange textures. Mason also contributed to several other Beatles’ songs, including "A Day in the Life", "Magical Mystery Tour" and "All You Need Is Love". + +Mason died of leukaemia in April 2011, at the age of 85.Needs Votehttps://en.wikipedia.org/wiki/David_Mason_(trumpeter)D MasonD. MasonEnglish Chamber OrchestraMelos Ensemble Of LondonThe Wind Virtuosi Of England + +424527Sébastien PlancadeClassical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +424565Gary KellerAmerican jazz saxophonistNeeds Votehttps://www.garykeller.net/Woody Herman And His OrchestraJaco Pastorius Big BandTradewinds (2)Dave Stahl BandGerry Mulligan And His OrchestraWoody Herman And The Thundering HerdThe Emil Palame Big BandBig Swing Jazz BandStephen Guerra Big BandMiami Saxophone QuartetSouth Florida Jazz Orchestra + +424572Renate KupferProducer of classical recordings.Correct + +424575Robert KassingerDouble bass player.Needs VoteRob KassingerChicago Symphony Orchestra + +424576Daniel BarenboimArgentine-Israeli-Spanish pianist and conductor, born 15 November 1942 in Buenos Aires, Argentina. He was married to [a=Jacqueline Du Pré] until her death in 1987 and is now married to pianist [a3587870]. +The current general music director of the Berlin State Opera and the Staatskapelle Berlin, Barenboim previously served as Music Director of the Chicago Symphony Orchestra, the Orchestre de Paris and La Scala in Milan. Barenboim is known for his work with the West–Eastern Divan Orchestra, a Seville-based orchestra of young Arab and Israeli musicians, and as a resolute critic of the Israeli occupation of Palestinian territories. + +Barenboim has received many awards and prizes, including seven Grammy awards, an honorary KBE Knight Commander of the Order of the British Empire, France's Légion d'honneur both as a Commander and Grand Officier, and the German Großes Bundesverdienstkreuz mit Stern und Schulterband. Together with the Palestinian-American scholar Edward Said, he was given Spain's Prince of Asturias Concord Award. Barenboim is a polyglot, fluent in Spanish, Hebrew, English, French, Italian, and German. A self-described Spinozist, he is significantly influenced by Spinoza's life and thought. + +His sons are violinist [a2894303] and HipHop producer [a2478613] (alias [a=KD-Supier]).Needs Votehttps://danielbarenboim.com/https://en.wikipedia.org/wiki/Daniel_Barenboimhttps://www.bach-cantatas.com/Bio/Barenboim-Daniel.htmBaremboimBarenboimBarenboïmD. BarenboimDaniel BaremboimDaniel BarenboinDaniel BarenboïmSir Daniel BarenboimД. БаренбоймДаниел БаренбоймДаниель БанербоймДаниель БаренбоймДаниэль Баренбоймダニエル・バレンボイムバレンボイム + +424582Emmanuel PahudEmmanuel PahudSwiss solo-flutist, born 27 January 1970 in Geneva, Switzerland. He has been a member of the [a=Berliner Philharmoniker] since 1993.Needs Votehttp://www.pahudemmanuel.com/https://en.wikipedia.org/wiki/Emmanuel_PahudE. PahudLes Vents Français: Emmanuel PahudPahudエマニュエル・パユBerliner PhilharmonikerMünchner PhilharmonikerTrio WandererOrchestre De Chambre De ParisBerliner Barock SolistenLes Vents Français + +424586Larry CombsLarry Combs (born 31 December 1939) is an American clarinetist and educator. + +Principal clarinet for the Chicago Symphony Orchestra from 1978 to 2008. +Founding member of the Chicago Chamber Musicians. +A prodigy on the instrument, Combs was used by Charleston Symphony as fill-in clarinetist at age 13 and its principal clarinetist by 16. Also former principal clarinetist for New Orleans Philharmonic and Montreal Symphony Orchestra. + +Combs also plays jazz with his own Combs-Novak Sextet and headlined the 1999 Chicago Jazz Festival. + +Inducted, 2009, to West Virginia Music Hall of Fame. Needs Votehttps://www.wvmusichalloffame.com/hof_combs.htmlCombsLarry Coombsラリー・コンブスChicago Symphony OrchestraOrchestre symphonique de MontréalThe Chicago Chamber MusiciansThe New Orleans Philharmonic-Symphony OrchestraPro Arte Wind QuintetCharleston Symphony Orchestra + +424630Alex HendersonAmerican trombone player from California. + +Alex (Crazy legs) Henderson has been Big Bad Voodoo Daddy's trombonist since 2001. Alex also played trombone for the band "No Doubt" (1991–1993).Needs Votehttp://www.bbvd.com/alexhttps://en.wikipedia.org/wiki/Big_Bad_Voodoo_Daddyhttps://www.linkedin.com/in/alex-henderson-73901980No DoubtBrian Setzer OrchestraBig Bad Voodoo DaddyThe Jeff Benedict Big Big Band + +425095Siri HilmenSiri HilmenCellist based in Bergen, NorwayNeeds Votehttp://www.myspace.com/sirihilmenBergen Filharmoniske OrkesterBergen Barokk + +425096Hans Gunnar HagenNorwegian viola playerNeeds VoteBit 20 EnsembleBergen Filharmoniske OrkesterBergen Chamber Ensemble + +425099Annette MykingViolinistNeeds VoteAnette MykingBergen Filharmoniske Orkester + +425100Bodil ErdalNorwegian cellistNeeds VoteBodil ErdaøBergen Filharmoniske OrkesterBergen Chamber Ensemble + +425124Rundfunk-Sinfonie-Orchester LeipzigThe Rundfunk-Sinfonie-Orchester Leipzig (RSO Leipzig) is affiliated to the public broadcaster [l55458]. It was founded on 6 January 1923 as [a9145396] (or Leipziger Sinfonie-Orchester) with Alfred Szendrei as its first principal conductor, thus being the oldest German radio orchestra. +After the German Reunification the Rundfunk-Sinfonie-Orchester Leipzig was renamed to [b][a4954539][/b]. + +Chief conductors: +Alfred Szendrei (1924–1932) +[a823061] (1931–1933) +[a2874775] (1934–1939) +Reinhold Merten (1939–1940) +Heinrich Schachtebeck (1945) +[a1313525] (1946–1948) +[a1183591] (1949–1956) +[a425125] (1960–1978) +[a917756] (1978–1985) +[a836608] (1987–1991)Needs Votehttps://www.mdr.de/klassik/mdr-sinfonieorchester/index.htmlBläsergruppe des Rundfunk-Sinfonie-Orchesters LeipzigBläserquintett des RSO LeipzigChor U. Rundfunk-Sinfonie-Orchester LeipzigChor Und Orchester Des Leipziger RundfunksChorus And Orchestra Of Radio LeipzigCoro E Orchestra Sinfonica Della Radio Di LipsiaCoro E Orquestra Sinfônica Da Rádio De LeipzigCoros Y Orquesta de La Radio de LeipzigDas Große Rundfunkorchester LeipzigDas Rundfunk-Sinfonie-Orchester LeipzigDas Rundfunk-Sinfonieorchester LeipzigGr. Orchester LeipzigGroßes Orchester des Senders LeipzigGroßes Rundfunk-Sinfonie-Orchester LeipzigInstrumentalgruppe Des Rundfunk-Sinfonieorchesters LeipzigL'Orchestre De La Radio De LeipzigLRSOLajpciški Simf. Ork.LeipzigLeipzig MDR Radio Choir And Symphony OrchestraLeipzig Philharmonic OrchestraLeipzig Pro Musica SymphonyLeipzig RSOLeipzig RSO)Leipzig Radio Chorus And Symphony OrchestraLeipzig Radio Orch.Leipzig Radio OrchestraLeipzig Radio SymphonyLeipzig Radio Symphony OrchestraLeipzig Radios SymfoniorkesterLeipzig SymphonyLeipzig Symphony OrchestraLeipziger Funkorchester und Sinfonieorchester I und IILeipziger Rundfunk-Sinfonie-OrchesterLeipziger Rundfunk-SinfonieorchesterLeipziger Rundfunk-Sinfonieorchester I und IILeipziger Rundfunk-SymfonieorchesterLeipziger Rundfunk-Symphonie-OrchesterLeipziger RundfunksinfonieorchesterLeipzigin Radio-OrkesteriLeipzigin Radion SinfoniaorkesteriLeipzigs RadiosymfonikerLeipzigs RadiosymfoniorkesterLiepzig Philharmonic OrchestraLiepzig Radio OrchestraMdr-Sinfonieorchester LeipzigMembers Of The Leipzig Radio OrchestraMitglieder Des Rundfunk-Sinfonie-Orchesters LeipzigMitglieder Des Rundfunk-Sinfonie-Orchesters-Leipzig LeipzigMitglieder Des Rundfunk-Sinfonieorchesters LeipzigMitglieder Des Rundfunk-Symphonieorchesters LeipzigMitglieder des Rundfunk-Sinfonie-Orchesters LeipzigMitteldeutsches RundfunkorchesterOmroep-Symfonie-Orkest LeipzigOmroepkoor LeipzigOmroepkoor en- Orkest van LeipzigOrch. Sinfonica Della RTV Di LipsiaOrch. Symphoniqye De La Radio De LeipzigOrchesterOrchester Des Leipziger RundfunksOrchester Des Mitteldeutschen Rundfunks, LeipzigOrchester Des Senders LeipzigOrchester des Leipziger RundfunksOrchester, LeipzigOrchestraOrchestra Of Leipzig RadioOrchestra Simfonică Radio LeipzigOrchestra Simfonică Radio-LeipzigOrchestra Sinfonica Della RTV Di LipsiaOrchestra Sinfonica Della Radio Di LipsiaOrchestra Sinfonica Di Lipsia Della RadioOrchestra Sinfonica Di Radio LipsiaOrchestra Sinfonica Di RundfunkOrchestra Sinfonica della RTV di LipsiaOrchestra Sinfonico Della Radio Di LeipzigOrchestra of the Leipzig RadioOrchestra simfonică Radio- LeipzigOrchestra simfonică Radio•LeipzigOrchestre De Chambre De LeipzigOrchestre De La Radio De LeipzigOrchestre Radio Symphonique De LeipzigOrchestre Radio-Symphonique De LeipzigOrchestre Symphonique De La Radio De LeipzigOrchestre Symphonique De La RTV LeipzigOrchestre Symphonique De La Radio De LeipzigOrchestre Symphonique De LeipzigOrchestre Symphonique De Radio LeipzigOrchestre Symphonique De Radio-LeipzigOrchestre Symphonique de Radio LeipzigOrchestre Symphonique de Radio-leipzigOrchestre Symphonique de la RTV LeipzigOrchestre Symphonique de la RTV, LeipzigOrchestre Symphonique de la Radio de LeipzigOrchestre Symphonyque De La Radio De LeipzigOrchestre de la Radio de LeipzigOrq. Sinfônica da Rádio de LeipzigOrquesta Filarmónica De LeipzigOrquesta Sinfónica De La Radio De LeipzigOrquesta Sinfónica De La Radiofusión De LeipzigOrquesta Sinfónica De Radio LeipzigOrquesta Sinfónica de la Radio de LeipzigOrquesta Sinfónica de la Radiodifusión de LeipzigOrquestra Sinfónica Da Radio De LeipzigOrquestra Sinfônica Da Rádio De LeipzigRSO LeipzigRadio Chamber Orchestra Of LeipzigRadio Chamber Orchestra, LeipzigRadio Chorus And Radio Symphony Orchestra, LeipzigRadio Chorus And Symphony Orchestra, LeipzigRadio Leipzig SymphonyRadio Leipzig Symphony OrchestraRadio Sinfonie Orchester LeipzigRadio Symphony Orchestra & Chorus, LeipzigRadio Symphony Orchestra LeipzigRadio Symphony Orchestra LeizpigRadio Symphony Orchestra Of LeipzigRadio Symphony Orchestra, LeipzigRadio Symphony Orchestra, LeizpigRadio- Symfonieorkest LeipzigRadio-Sinfonie-Orchester LeipzigRadio-Symphonie-Orchester LeipzigRudfunk Sinfonie Orkester LeipzigRundf. Sym. Orch. LeipzigRundf.-Sinf.-Orch. LeipzigRundf.Sinf.-Orch. LeipzigRundfunk - Simfonie - Oerchester LeipzigRundfunk - Sinfonie - Orchester LeipzigRundfunk Sinfonie Orchester LeipzigRundfunk Sinfonie-Orchester LeipzigRundfunk Sinfonieorchester LeipzigRundfunk Symphony OrchestraRundfunk- Und Sinfonie-Orchester LeipzigRundfunk- und Sinfonie-Orchester LeipzigRundfunk-Instrumentalgruppe LeipzigRundfunk-Kammerorchester LeipzigRundfunk-Orchester Des Senders LeipzigRundfunk-Orchester LeipzigRundfunk-Sinfonie Orchester LeipzigRundfunk-Sinfonie-OrchesterRundfunk-Sinfonie-Orchester Leipzig [MDR Sinfonieorchester]Rundfunk-Sinfonie-Orchesters LeipzigRundfunk-Sinfonieorchester LeipzigRundfunk-Sinfonieorchester Leipzig (MDR Sinfonieorchester)Rundfunk-Symphonie-Orchester LeipzigRundfunk-Symphonieorchester, LeipzigRundfunk-Symphony-Orchester LeipzigRundfunkchor LeipzigRundfunkchor Und Symphonie-Orchester Des Senders LeipzigRundfunkorchester LeipzigRundfunksinfonie Orcherter LeipzigRundfunksinfonieorchester LeipzigSimfonijski Orkestar Iz LajpcigaSimfonijski Orkestar Radio-LajpcigaSimfonijski orkestar Radio-LajpcigaSinf.- Orch. Leipzig D. Staatl. RundfunkkomiteesSinf.-Orch. Leipzig D. Staatl. RundfunkkomiteesSinf.-Orch. Leipzig Des Staatl. RundfunkkomiteesSinf.-Orchester Leipzig Des Staatl. Rundf.-KomiteesSinfonie Orchester Des Mitteldeutschen Rundfunks LeipzigSinfonie-Orchester LeipzigSinfonieorchester Des Leipziger RundfunksSinfonieorchester Des Mitteldeutschen RundfunksSinfonieorchester LeipzigSinfonieorchester Leipzig Des Staatlichen RundfunkkomiteesSinfonieorchester Radio LeipzigStudio-OrchesterSymfonický Orchestr Lipského RozhlasuSymphonie Orchestra Of Radio LeipzigSymphonie-Orchester von Radio LeipzigSymphony Orch. Of Radio LeipzigSymphony OrchestraSymphony Orchestra And Chorus Of The Mitteldeutsche Rundfunk, LeipzigSymphony Orchestra LeipzigSymphony Orchestra Of Radio LeipzigSymphony Orchestra Radio LeipzigSymphony Orchestra of Radio LeipzigSymponieorchester Radio LeipzigThe Chorus and Orchestra of Leipzig RadioThe Leipzig Pro Musica Symphony OrchestraThe Leipzig Radio Concert OrchestraThe Leipzig Radio Large Symphony OrchestraThe Leipzig Radio Symphony OrchestraThe Radio Symphony Orchestra Of LeipzigОркестр Лейпцигского радиоСимф. Орк. Лейпцигского РадиоСимфонический Оркестр Лейпцигского РадиоСимфонический Оркестр Лейпцигского радиоСимфонический оркестр Лейпцигского радиоライプツィヒ放送交響楽団Leipzig Philharmonic OrchestraMusic Treasures Philharmonic SymphonyMDR SinfonieorchesterLeipziger SinfonieorchesterWolfgang WeberDieter ZahnGerd SchenkerAdolf Fritz GuhlErich DonnerhackGünther OpitzGyörgy GarayHornquartett Des Rundfunk-Sinfonie-Orchester LeipzigSiegfried GizykiWaldemar MarkusIb HausmannJochen PleßJohannes WinklerRalf MielkeWerner LegutkeErwin KretzschmarUndine Röhner-StolleAxel SchmidtWerner BerndsenJohannes KiefelErich ListThomas Schulze (2)Rudolf BartlHans-Jakob EschenburgAlfred LipkaFritz SchneiderGünter AngerhöferHeinz FügnerPetra NagelHolm BirkholzKurt JanetzkyTorsten JanickeJürgen DietzeGünter SchaffrathDieter ReinhardtJörg Richter (2)Andreas Pietschmann (2)Christian Sprenger (5)Johannes StiehmHartmut SchuldtSiegfried NittPeter SchurrockMitglieder Des Rundfunk-Sinfonie-Orchesters LeipzigJudith Meng + +425129Claus StrübenClaus Strüben (30 October 1930 - 18 December 2023) was a German sound engineer; Executive Balance Engineer ([i]Cheftonmeister[/i]) [l219433] 1959 - 1990; mainly on [l47734] productions.Needs VoteClaus StrubenClaus StruebenClaus Strüben (VEB Deutsche Schallplatten)Claus StübenClaus TrubenKlaus StrubenKlaus Strüben + +425130Siegfried StöckigtGerman pianist. + +Born December 8, 1929 in Lengenfeld, Germany. Died July 6, 2012. Father of [a1554503], grandfather of [a=Alexander Leonard Donat]. Needs Votehttps://de.wikipedia.org/wiki/Siegfried_St%C3%B6ckigtSiegfried StockigtSiegfried StöckiftSiegried StöckigtSigfrid StekigtΖιγκφριντ Στεκιγκτジークフリート・シュテッキクト + +425509John CapekJohn Joseph CapekCzech songwriter, composer, arranger, producer, keyboardist, pianist, and bassist. Born on November 27, 1947, in Prague, Czechoslovakia, raised in Australia, moved to Canada in 1973 and Los Angeles in 1979; currently based in Toronto. Known for his longtime songwriting partnership with [a=Marc Jordan].Needs Votehttp://www.johncapek.comhttps://www.facebook.com/John.Capek.Music/https://www.instagram.com/JohnCapekOfficial/https://www.thecanadianencyclopedia.ca/en/article/john-capek-emc/https://www.nashvillemusicguide.com/songwriter-spotlight-john-capek/https://www.australianmusician.com.au/john-capek-notes-from-nashville/https://www.imdb.com/name/nm0135013/https://en.wikipedia.org/wiki/John_Capekhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=52816&subid=0https://www.ascap.com/repertory#ace/writer/65415091/CAPEK%20JOHN%20JOSEPHCapekCapek, John JosephCapek/SadanCarpekJ CapekJ. CapekJ. CaperJ. CasekJ. KapekJ.C.J.CapekJohn Capek OrchestraJohn CaperJohn CapesJohn J. CapekJohn Joseph CapekJohn ČapekK. CapekO.J. CapekTora (8)Carson (3) + +425636Melissa MeellAmerican cellist.Needs Votehttps://www.bridgemusik.com/MelissaMeellhttps://www.linkedin.com/in/melissa-meell-3a94a17/Melissa MeelOrpheus Chamber Orchestra + +425857Jimme O'NeillJames Hugh Vincent O'NeillScottish guitarist, vocalist, songwriterNeeds Votehttp://jimmeoneill.online.fr/https://fr.wikipedia.org/wiki/Jimme_O%27NeillJ O'NeillJ. O'NeilJ. O'NeillJ. O'NeilsJ. OnielJ.O'NeilJ.O'NeillJames O'NeillJimmeJimme O' NeilJimmieJimmie O'NeilJimmie O'NeillJimmie O´NeillJimmy O NeillJimmy O'NeilJimmy O'Neil (Fingerprintz)Jimmy O'NeillJimmy O´NeillNeillO' NeillO'NeilO'NeillO'neillO-NeillO´NeillO’NeillJimme ShelterIntro (6)Fingerprintz (2)The SilencersThe Celtic Social Club + +425986Ron DavisRonald Julian DavisUS jazz drummer. +Died: April 6, 1996 + +For the recording engineer, see [a520931] +For the Belgian singer, see [a1007702] +For the photographer, see [a3605260] +For the songwriter of "It Ain't Easy", see [a=Ron Davies] +Needs Votehttps://www.musiciansfoundation.org/support/ronald-davis-legacy-fundRonald Julian DavisWoody Herman And His OrchestraChuck Mangione QuartetTimepieceWoody Herman And The Thundering Herd + +426548Stephen BartonBritish film, television and video game composer who has lived and worked in Los Angeles since 2001. His body of work includes Apex Legends, Star Trek Picard (season 3), Star Wars Jedi: Survivor, Multiversus, Titanfall, Call of Duty: Modern Warfare, 12 Monkeys, and Unlocked. He also works as a conductor and pianist. + +As a child, he sang with the [a=Winchester Cathedral Choir], touring around the world and appearing on more than a dozen albums. He began his composing career at 19, as an assistant to [a=Harry Gregson-Williams] (Shrek, The Chronicles of Narnia, Kingdom of Heaven). + +Born: 17 September 1982 in Preston, England, UKNeeds Votehttps://www.stephenbarton.com/https://en.wikipedia.org/wiki/Stephen_Bartonhttps://www.imdb.com/name/nm1564659/Steven BartonWinchester Cathedral Choir + +426653Barry SocherBarry Socher (died October 22, 2016, aged 68) was an American violinist, composer and educator. + +He served in the first violin section of the [a835190] from 1981 until his retirement in 2016. Socher had also been concertmaster for the [a3216216], Pasadena Pops Orchestra, [a3089959] and the Ojai Festival and Oregon Bach Festival orchestras. He founded the [a426649], taught at Idyllwild School of Music and the Los Angeles Philharmonic Institute, and served on the faculties of Pomona College and the [l118141].Needs Votehttp://www.armadillostringquartet.com/BarrySocher.htmBarry SockerBarry SoocherSocker BarryArriaga QuartetArmadillo String QuartetLos Angeles Philharmonic OrchestraLos Angeles Philharmonic New Music GroupLos Angeles Master Chorale Orchestra + +426832Gareth Huw DaviesBass player, engineer, producer.Needs VoteDaviesGareth DaviesGareth Huw-DaviesEnglish Chamber OrchestraThe Eitzel Ordeal + +426849Scott AttrillScott Lee AttrillFormer managing director of [l=Obsession Music Ltd].Needs VoteAttrillS AtrillS AttnillS AttrillS trillS. AtrillS. AttrilS. AttrillS.AttrillScottScott AtrillScott AttrilScott Attrill Aka VinylgrooverScott Attrill aka VinylgrooverScott Lee AttrillScott RillScott-AttrillVinylgrooverNorth WestAGBHigher Level (3)Mr. X (5)Mr. MonkeyUrban NoizeThe Hot StepperDigitek (3)Apple MacSky RiseHardcore MastersAaREKElectronik OrchestraThe Traveller (6)DJ Is DeadS.A.Y ProjectPhat Kat (7)Undercover Project (2)Vinylgroover & The Red HedThe CollectiveVGTMidasBrisk & VinylgrooverVinylgroover & TrixxySelectBam Bam & PebblesSound AssassinsVG 2000Class ActHyperdrive (2)KontaktElevate (2)Promised Land (2)Stargate (5)Skylab NineTechno PhobicSJ ProjectLoop (9)Era (6)ScintillatorS & M (3)Off Key (2)Quest (27)SG-1 + +427125Teddy KotickTheodore John Kotick.American jazz bassist +Born June 04, 1928 in Haverhill, Massachusetts, died April 17, 1986 in Boston, Massachusetts. + +Teddy, appeared as a sideman with many of the leading figures of the 1940s and 1950s, including Charlie Parker, Buddy Rich, Artie Shaw, Horace Silver and Bill Evans. Needs Votehttps://en.wikipedia.org/wiki/Teddy_Kotickhttps://www.bluenote.com/artist/teddy-kotick/https://www.allmusic.com/artist/teddy-kotick-mn0000746853/biographyhttps://adp.library.ucsb.edu/names/325761KotickT. KotickTed KotickTeddy KoteckTeddy KottickThe Charlie Parker QuartetThe Charlie Parker QuintetCharlie Parker's JazzersThe Horace Silver QuintetCharlie Parker And His OrchestraStan Getz QuintetAl Cohn - Zoot Sims QuintetThe Tony Scott QuartetAl Cohn QuintetRené Thomas QuintetThe Teddy Charles TentetThe Prestige All StarsGeorge Wallington QuintetJimmy Raney QuartetAl Haig QuartetThe Phil Woods QuartetBuddy DeFranco QuartetThe Nick Travis QuintetHerbie Nichols TrioGene Quill And His QuintetPhil Woods/Gene Quill QuintetJ. R. Monterose QuartetEddie Costa QuintetPhil Woods New Jazz QuintetThe Tony Fruscella & Brew Moore QuintetArt Mardigan Sextet + +427174Ivan JullienFrench trumpeter, bandleader and arranger, born 27 October 1934 in Vincennes, France, died January 3, 2015 in France.Needs Votehttp://de.wikipedia.org/wiki/Ivan_Jullienhttp://www.myspace.com/206625479I. JulienI. JullienIvan JulienIvan(hoé) JullienJulienJullienY. JullienY. JulianY. JulienY. JullienYvan JulienYvan JullienYvan «Big» JullienАйвен ДжуллианBig JullienSynthesis (6)Alix Combelle Et Son OrchestreGrand Orchestre De L'OlympiaJacques Denjean Et Son OrchestreIvan Jullien Et Son OrchestreJoey And The ShowmenIvan Jullien Big BandBig Jullien And His All StarLos CangaceirosLe Bobby Clark's NoiseLes Baroques (2)Benny Bennet Et Son Orchestre De Musique Latine-Américaine9 Plus + +427336George PerilliDrummer.Needs Votehttps://www.linkedin.com/in/george-perilli-07b31021/G. PerilliGeorge "Biddabing Biddabong" PerilliGeorge PerelliGeorge Pirelli + +427413Jean-Pierre GoussaudFrench composer. +Born on May 13, 1948 in Saint-Denis (93) - died on July 25, 1990 in Chennevières-sur-Marne (94).Needs Votehttps://fr.wikipedia.org/wiki/Jean-Pierre_Goussaudhttps://www.bide-et-musique.com/song/8663.htmlG. Pierre GoussaudGoussardGoussaubGoussaudI.P. GoussaudJ Pierre GoussaudJ-P GoussaudJ-P. GousaudJ-P. GoussaudJ-Pierre GoussaudJ. GoussadJ. GoussaudJ. P. GoussabJ. P. GoussandJ. P. GoussaubJ. P. GoussaudJ. P. GousseauJ. Pierre GoussaudJ. Pierre GousseauJ. Pierre GousseaudJ.- P. GoussaudJ.-P GoussaudJ.-P. GoussardJ.-P. GoussaudJ.-Pierre GoussaudJ.GoussaudJ.P GoussaudJ.P GoussaudJ.P. GoussaudJ.P. GaussaudJ.P. GoussadJ.P. GoussaubJ.P. GoussaudJ.P. GousseaudJ.P.GoussaudJ.Pierre GoussaudJP GoussaudJP. GoussaudJP.GoussaudJean GoussaudJean Pierre GoussaudJean-PierreJean-Pierre GousseauJean-Pierre GoussotJp. GoussaudP. GousaudP. GoussaudMessageLornsmith + +427758Roger GrassetJazz bassistNeeds Votehttps://adp.library.ucsb.edu/names/318683GrassetR. GrassetRoger "Toto" GrassetRoger GrassnetQuintette Du Hot Club De FranceDon Byas And His OrchestraDany Kane Et Son EnsembleMichel Warlop Et Son OrchestreSarane Ferret Et Son OrchestreAlain Romans Et Ses RythmesGrégor Et Ses GrégoriensEddie Brunner Und Sein OrchesterLe Jazz Du Poste Parisien + +427760Jean-Pierre SassonFrench jazz guitarist. He started his career in 1939 with [a=André Ekyan], [a=Pierre Fouad] and [a=Emmanuel Soudieux]. During WWII, he joined the R.A.F. in Great Britain. He continued his music career in France from 1946 onwards. +b.: 10 Aug. 1918 in Aix-les-Bains, France +d.: 26 May, 1999 in Paris 7e, FranceNeeds Vote"Sir John Peter""Sir" John Peter'Sir' John PeterJ. P. SassonJ. P. SassonsJ. SassonJ.-P. SassonJ.P SassonJ.P. SansonJ.P. SassonJP SassonJean Pierre SassonJeanPierre SassonSassonSir John PeterЖ.-П. СассонSidney Bechet And His OrchestraHubert Rostaing Et Son SextetteGérard Pochonet And His OrchestraHarry Cooper QuintetDick Rasurell Et Ses BerluronsChico Cristobal And His Boogie-Woogie BoysSeptuor Jack DiévalGérard Pochonet & His QuartetGérard Pochonet All StarsJean-Pierre Sasson TrioJean-Pierre Sasson QuintetMac-Kac Et Son Rock And RollMarcel Bianchi Et Les Cinq BoogiesJean-Pierre Sasson Et Son QuartetJean-Pierre Sasson And The 4 SaladersJ.P. Sasson And The MuskratsJean-Pierre Sasson Et Son OrchestreGéo Daly Et Son QuintetteChristian Garros Et Sa Section RythmiqueBuck Clayton And His French StarsBill Coleman Et Son Ensemble + +427842Harry van HoofHenricus M. van HoofDutch pianist, composer, arranger, and conductor, born 16 March 1943, Hilversum - died 1 June 2024, Eindhoven. Original member of rock band [a521606] during the late 1950s/early 1960s. Became a sought-after studio arranger from the second half of the 1960s onwards - and later also worked extensively as a television conductor. Led the orchestra for no fewer than fifteen Netherlands' Eurovision Song Contest entries between 1972 and 1994.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1994/04/harry-van-hoof-english-version.htmlhttps://nl.wikipedia.org/wiki/Harry_van_Hoofhttps://en.wikipedia.org/wiki/Harry_van_Hoofhttps://www.imdb.com/name/nm0393541/H v HoofH van HoofH. V. HoofH. Van HoffH. Van HoofH. Van HooffH. VanHootH. r. HoofH. v. HoofH. v. Hoof Jr.H. v. Hoof.H. v. HooffH. van HoofH. van HooffH. vanHoofH.M. van HoofH.V. HoofH.Van HoofH.v,HoofH.v. HoofH.v.HoofH.van HoofHH. v. HoofHans van HoofHarry HoofHarry Van HoofHarry Van HooffHarry Van HootHarry Von HoofHarry v. HoofHarry van HofHarry van HooffHarry van HotHay - van HooffHenri van HoofHenricus M. "Harry" Van HoofHenricus M. Harry HoofHenricus M. Harry van HoofHenricus Van HoofHenricus van HoofHoffHoofHoof H.V.HooffR. Van HoofV. HoofVan HoffVan HoofVan HootVon Hoofv. Hoofvan HoofPeter Koelewijn & Zijn RocketsThe Harry van Hoof OrchestraOrkest o.l.v. Harry van HoofKoor o.l.v. Harry van HoofThe Phonogram Money Spenders + +428218Dave Stewart (2)David StewartTrombonistNeeds Votehttps://en.wikipedia.org/wiki/Dave_Stewart_%28trombonist%29Dave StewardDavidDavid StewartThe Kick HornsLondon Philharmonic OrchestraLondon BrassThe London OrchestraThe Michael Nyman BandThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiquePhilip Jones Brass EnsembleThe Academy Of Ancient MusicThe Mike Gibbs OrchestraJack Sharpe Big BandThe London Jazz OrchestraThe Mike Gibbs BandKenny Wheeler Big BandMike Oldfield Jazz BandLondon Trombone Quartet (2)The Pale Blue Orchestra"Oliver!" 1994 London Palladium Cast, Orchestra + +428925Ellen HjalmarssonSwedish classical violinist.Needs Votehttp://www.myspace.com/ellenhjalmarssonEllen HjalmarsonGöteborgs SymfonikerSjöströmska String Quartet + +429049Michel MalloryJean-Paul CugurnoNeeds Votehttps://fr.wikipedia.org/wiki/Michel_MalloryM MalloryM. MallauryM. MalloryM. MaloryM. MaloyM.MalloryM.l MalloryM.マロニーMallery MichelMallorisMalloryMallotyMarollyMichael HalloryMichael MalloryMichel MallauryMichel MaloryMichelle MalloryV.F. M. MalloryМ. МаллериGodefroy LiberiThomas LiberiMichel Mallory Et Son Orchestre + +429300JordanaNeeds Votehttps://www.jordanaofficial.comhttps://www.facebook.com/jordanamusichttps://www.instagram.com/jordanamusic + +429641Freddy TaylorAmerican jazz singer, trumpet player and bandleader, born 1914 in New York City. +In the early 1930s worked as dancer and entertainer at Cotton Club, learned to play trumpet c. 1933 and went to Europe leading own band in 1935, where he stayed until late 1930, when he went back to the US, returning to his role as entertainer. Brief return to Paris in 1967.Needs Votehttps://adp.library.ucsb.edu/names/113046Eddie TaylorFreddie TaylorTaylorQuintette Du Hot Club De FranceFreddy Taylor And His OrchestraFreddy Taylor And His Swing Men From Harlem + +429801Charlie Jones (2)Saxophone and clarinet playerNeeds VoteC. JonesC.H. JonesLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His Orchestra + +429895Juliet SnellClassical violinist and violin/viola teacher. +She studied at the [l528847]. She pursued a busy freelance career in London before joining the first violin section of the [a=London Symphony Orchestra] as an associate member (12/1980-01/1991). Member of the [a=Rambert Dance Company] since January 1995.Needs Votehttps://www.facebook.com/juliet.snell.9https://www.linkedin.com/in/juliet-snell-7323a433/details/experience/https://www.latymer.co.uk/extra-curricular-activities/musicJuliette SnellLondon Symphony OrchestraRambert Dance Company + +429903Berend MulderClassical violist.Needs VoteBerend MullerBergen Filharmoniske Orkester + +429905Rebecca GilliverBritish classical cellist and Professor of Cello. +She studied at the [l459222]. Principal Cello for the [a=London Symphony Orchestra] since 2009. She previously served as Co-Principal Cello, joining the orchestra in 2001. She has played guest principal with orchestras all around the world, including the [url=http://www.discogs.com/artist/1092558-Australian-Chamber-Orchestra]Australian Chamber Orchestra[/url], [a882824], and most recently the [url=http://www.discogs.com/artist/927893-World-Orchestra-For-Peace]World Orchestra for Peace[/url]. Member of the [a=European Camerata]. Professor of Cello at [l305416].Needs Votehttp://rebeccagilliver.co.uk/https://www.facebook.com/rebecca.gilliverhttps://www.linkedin.com/in/rebecca-gilliver-3908b75b/?originalSubdomain=ukhttps://musicacademy.org/big-profiles/rebecca-gilliver/https://www.feenotes.com/database/artists/gilliver-rebecca/http://www.thedorsetcelloclasses.co.uk/people.htmlhttps://lso.co.uk/orchestra/players/strings.html#Celloshttps://www.gsmd.ac.uk/staff/rebecca-gilliverhttps://alpenkammermusik.com/about-us/faculty-members/past-akm-faculty-members/rebecca-gilliver-cello-week-1/https://aboynecellos.co.uk/tutors/rebeccagilliver/https://www.imdb.com/name/nm3912348/London Symphony OrchestraThe Nash EnsembleLSO String EnsembleThe Chamber Orchestra Of LondonThe Solomon EnsembleEuropean Camerata + +430093Lee HallydayLemoine Gardner KetchamBorn December 25, 1927 in Sapulpa, OK, U.S.A. Died – September 5, 2023. +Country singer, dancer, producer, manager. +Married to Desta Halliday, born Desta Mar, cousin of [a=Johnny Hallyday]. +He gave [a=Jean-Philippe Smet] his artist name.Needs Votehttps://en.wikipedia.org/wiki/Lee_Hallidayhttps://www.imdb.com/name/nm2821914/Lee HallidayStagger Lee HallydayCrystal Grass + +430354VandallJeremy TrimbyUK based Hard Trance/Tech Trance/Hard Dance/Tech Dance artist + +info@trancewarez.co.uk +Correcthttp://www.trancewarez.co.ukhttp://www.myspace.com/trancewarezVandalVandellJeremy TrimbySleepless NightsFalse Economy + +430359Wim SandersDutch guitaristNeeds VoteSandersWim SanderThe RamblersDe Hoepla'sDick Willebrandts En Zijn OrkestTom Erich And His SoloistsDe KlankmakersFats Vennessee And His JazzlinersKwintet Henk Vos + +430360Kees KranenburgDrummer, born 5 February 1902 in Den Haag, Netherlands, died 22 December 1975 in Hilversum, Netherlands. + +Kranenburg is a member of orchestra [b]The Ramblers[/b] from the late 1920s until the mid-1960s. He has also done a lot of session work. + +Kees Kranenburg is the father of [a=Kees Kranenburg Jr.] who is also a drummer. +Needs VoteCees KranenburgCombo Kees Kranenburg Sr.Kees Kranenburg En KoorKees Kranenburg SrKees Kranenburg Sr.Kees Kranenburg Sr;Kees Kranenburg sr.Kees Kranenburg, Sr.KranenburgThe RamblersThe Main Street Piano BandRoy Dennis ComboThe Rhythme All StarsThe Red And Brown Brothers + +430477Wyatt RutherAmerican jazz bassist, born 5 February 1923 in Pittsburgh, Pennsylvania; died 31 October 1999 in San Francisco, California, USA.Needs VoteBill RutherBull RutherRother WyattWyat RutherWyatt "Bull" RutherWyatt Bull RuetherWyatt Bull RutherWyatt R. RutherWyatt ReutherWyatt RhuterWyatt RuetherThe Dave Brubeck QuartetThe Chico Hamilton QuintetErroll Garner TrioRay Bryant TrioThe Erroll Garner QuartetBuddy Rich & His BuddiesBuddy Rich And His SextetFraser Macpherson Trio + +430567Annekathrin BürgerAnnekathrin RammeltGerman actress, born April 3, 1937 in Berlin.Needs Votehttp://www.annekathrin-buerger.de/http://de.wikipedia.org/wiki/Annekathrin_B%C3%BCrgerAnne-Kathrin BürgerBürger + +430629Osmo LindemanOsmo LindemanOsmo Lindeman (1929-1987) was a Finnish musician who performed as jazz pianist in the 1950s and experimented with electro-acoustic music since 1967.Needs VoteLindemanStig Wennström Dixieland Jazz Band + +430637Matti BergströmMatti Harri Björn BergströmBorn on February 17, 1938 in Helsinki, Finland. +Died on October 8, 1994 in Helsinki, Finland. + +Matti Bergström was a Finnish composer, musician and arranger. He worked mostly together with his wife [a=Pirjo Bergström]. + +His father is [a=Harry Bergström]. +Needs VoteBergströmM. BergströmM. BergstömM.BergströmMasa BergströmStanislav PlymouthSoulsetOiling BoilingNew JoysMatti Ja Pirjo Bergström YhtyeineenPentti Lasasen Studio-orkesteriMatti Ja Pirjo BergströmSoitinyhtye LiisaKaarlo Ja Lauluyhtye Hieman LaulaneetPorsas Urhea BändiDick Dynamite And His Hot Lips + +430666Thomas AlvoradoCorrectThomas AlvaradoTommy AlvaradoTommy Alvorado + +430742Alan LumsdenAlan Frederick LumsdenBritish trombonist (1934-2020), also playing the sackbut and historicals winds instruments. + +Needs VoteA. LumsdenLumsdenEnglish Chamber OrchestraThe Early Music Consort Of LondonMusica ReservataLondon Cornett And Sackbut EnsembleDavid Munrow Recorder EnsembleThe London Early Music GroupLondon Serpent Trio + +430744Francis BainesProfessional Viol, Double-Bass and Violone player (born 1911 in Oxford - died in 1999). Married to [a=June Baines]. +He worked with several early music ensembles. He composed music for double bass and for the popular Gerard Hoffnung Festivals and was also active as a musicologist and music editor.Needs Votehttps://en.wikipedia.org/wiki/Francis_Baines_(musician)BainesF. BainesFrancisThe Parley Of InstrumentsThe Academy Of Ancient MusicDeller ConsortPhilomusica Of LondonGabrieli PlayersThe English Opera GroupThe Jaye ConsortBaroque String EnsembleThe Music Party + +430822Bobby WhiteRobert E. White.American jazz drummer. +Born : June 28, 1926 in Chicago, Illinois. +Needs VoteBabby WhiteBob WhiteRobert WhiteSonny Clark TrioChet Baker QuartetArt Pepper QuartetCal Tjader QuintetJimmy Raney QuartetBuddy DeFranco QuartetVido Musso Sextet + +430825Stan FreemanStanley FreemanAmerican pianist, composer, musical arranger and conductor. + +Born : April 03, 1920 in Waterbury, Connecticut. +Died : January 13, 2001 in Los Angeles, California. +Needs Votehttp://en.wikipedia.org/wiki/Stan_Freemanhttps://adp.library.ucsb.edu/names/316425FreemanS. FreemanS. FreesmanS.FreemanStan FreedmanStan Freeman At The UprightStan GreemanС. ФрименСтэн ФрименArtie Shaw And His Gramercy FiveCharlie Parker And His OrchestraBenny Goodman And His OrchestraCharlie Parker With StringsStan Freeman And The TwistersStan Freeman And His OrchestraWill Bradley and HIs Jazz OctetThe Stan Freeman QuartetThe Stan Freeman Trio + +430829Buddy DeFrancoBoniface Ferdinand Leonardo DeFrancoAmerican jazz clarinet (and saxophone) player +Born February 17, 1923 in Camden, New Jersey +Died December 24, 2014 in Panama City, FloridaNeeds Votehttp://www.buddydefranco.com/bio.htmlhttp://en.wikipedia.org/wiki/Buddy_DeFrancohttps://www.allmusic.com/artist/buddy-defranco-mn0000638918https://legacy.npr.org/programs/jazzprofiles/archive/defranco.htmlhttps://adp.library.ucsb.edu/names/105192"Buddy" De FrancoB. De FrancoB. DeFrancoB. de FrancoB.DeFrancoBoniface "Buddy" DeFrancoBoniface "Buddy" DeFranco (BD)Boniface "Buddy" de FrancoBoniface "Buddy" deFrancoBoniface DeFrancoBuddyBuddy De FrancoBuddy DeFranco & StringsBuddy DeFranco And StringsBuddy DeFranco With StringsBuddy DefrancoBuddy DetrancoBuddy FrancoBuddy de FrancoDFDe FrancoDeFrancoDuddy De FranceDuddy DeFrancode FrancoCount Basie OrchestraTommy Dorsey And His OrchestraMetronome All StarsTommy Dorsey And His Clambake SevenCharlie Barnet And His OrchestraBoyd Raeburn And His OrchestraLionel Hampton QuintetCount Basie SextetBuddy De Franco SextetCount Basie OctetBuddy DeFranco QuartetBuddy DeFranco QuintetBuddy DeFranco - Tommy Gumina QuartetThe Buddy DeFranco SeptetteThe Charlie Shavers QuintetBuddy DeFranco And His OrchestraThe Buddy DeFranco MenDizzy Gillespie's Cool Jazz StarsThe Buddy DeFranco Big BandBuddy DeFranco And The All-StarsBuddy DeFranco / Terry Gibbs QuintetBuddy DeFranco And His TrioBuddy And GroupThe Art Tatum Buddy Defranco QuartetJazz Club USATerry Gibbs / Buddy DeFranco / Herb Ellis Sextet + +430832Fred SkerrittJazz saxophonistNeeds VoteAlfred SkerritAlfred SkerrittFred SkerittFred SkerritFreddie SkerrittFreddy SherrittFreddy SkerittFreddy SkerritFreddy SkerrittMachito And His OrchestraFats Waller & His RhythmClarence Williams' Jazz KingsJimmy Johnson And His Orchestra + +430835Milt LomaskViolinist.Needs VoteMilton LomasMilton LomaskМилтон ЛомэскCharlie Parker And His OrchestraCharlie Parker With StringsAl Cohn And His OrchestraBen Webster With Strings + +430838Myor RosenMyor RosenAmerican harpist. Studied at Juilliard under a full scholarship with the renowned master [a1526200]. He performed as principal harpist with the symphony orchestras of Indianapolis, Mexico City, Minneapolis, and the Columbia Broadcasting System. In 1960, Mr. Rosen was offered the principal harp position with the New York Philharmonic, a post he held for 27 years until his retirement in 1987. +Brother of [a2036241] and [a562207]. +b.: May 28, 1917 +d.: Mar. 13. 2009.Needs Votehttp://www.local802afm.org/2009/06/requiem-131/https://www.harpsociety.org/downloads/files/Z7HDPBHP8DJBBZAW626-myorrosen-V2-1-.pdfM. RosenMeyer RosenMyer RosenМайр РозенNew York PhilharmonicCharlie Parker With Strings + +430840Frank MillerAmerican singer/songwriter. +Born July 29, 1918 in Brooklyn, New York, died December 15, 2015 in Durham, North Carolina. + +[b]Note: For the US Cellist, please use [a=Frank Miller (3)] +For the writer of "If You're Irish Come Into The Parlour", please use [a=Frank Miller (9)][/b] +Needs VoteA. MillerD. MillerF MillerF. MIllerF. MikerF. MillerF. WillerF.MillerF.rankie MillerF: MillerFr. MillerFran MillerFranck MillerFrank MillFrankie MillerJ. MillerMillerMiller - FrankMiller, FrankMiller/FrankR. MillerS. MillerT.F. MillerГ. МиллерМиллерМиллер ФранкФ. МиллерTerry Gilkyson And The Easy RidersThe Easy Riders + +430843Gene JohnsonEugene McClane JohnsonUS jazz alto saxophonist and clarinetist, born 1902 in Hartford, CT, died February 1958 in New York. +From 1930 to 1937 a member of [a=Claude Hopkins] orchestra, later played with [a=Chick Webb] and [a=Erskine Hawkins]. In the 1950s with [a=Machito And His Orchestra]. + +Needs VoteEugene JohnsonMachito And His OrchestraClaude Hopkins And His OrchestraCharlie Skeete And His Orchestra + +430844Neal Hefti's OrchestraCorrectNeal Hefti & His Orch.Neal Hefti & His OrchestraNeal Hefti & OrchestraNeal Hefti And His BandNeal Hefti And His Jazz Pops OrchestraNeal Hefti And His Orch.Neal Hefti And His OrchestraNeal Hefti And Is OrchestraNeal Hefti And OrchestraNeal Hefti E La Sua OrchestraNeal Hefti E Sua OrquestraNeal Hefti Et Son OrchestreNeal Hefti M. S. OrchesterNeal Hefti Og Hans OrkesterNeal Hefti Orch.Neal Hefti OrchestraNeal Hefti Sa Svojim OrkestromNeal Hefti Y Su Orq.Neal Hefti Y Su OrquestaNeal Hefti and His Orch.Neal Hefti and His OrchestraNeal Hefti and his OrchestraNeal Hefti y Su OrquestaNeal Hefty Et Son OrchestreNeil Hefti & His OrchestraNeil Hefti And His OrchNeil Hefti And His Orch.Neil Hefti And His OrchestraNeil Hefti Orch.Orchester Neal HeftiOrchestra Conducted By Neal HeftiOrchestra Conducted By Neil HeftiOrchestra Di Neal HeftiOrchestra Neal HeftiOrchestra Neal Hefti'sOrquesta Dir. Neal HeftiOrquestra De Neal HeftiPaul Nelson's OrchestraPaul Nielson's OrchestraThe Neal Hefti Orchestraニール・ヘフティ楽団Neal HeftiAlvin StollerCurly RussellBilly BauerGene OrloffCharlie VenturaTony AlessShelly ManneFlip PhillipsKai WindingChubby JacksonAl PorcinoHank D'AmicoBill HarrisMurray WilliamsSam CaplanHarry KatzmanPete MondelloBart VarsalonaChet AmsterdamJohn LaportaManny AlbamDoug MettomeSid HarrisManny FidlerZelly SmirnoffSonny SaladFred RuzillaDiego IborraJoe BenaventiVinnie JacobsNat NathansonRay WetzelVincent Jacobs (2) + +430845Leroy LovettLeroy C. Lovett, Jr.American jazz pianist, arranger and composer. + +Born on March 17, 1919 in Philadelphia, Pennsylvania.Died 9 December 2013 Chatsworth, California. +Needs Votehttps://en.wikipedia.org/wiki/Leroy_LovettC. LoveC.I. LovettLL. C. LovettL. C. LovettL. C. Lovett Jr.L. LevertL. LovettL.C. LovettL.LovettLeeLee "Roy" LovettLee LovettLee LovetteLeroy C. LovettLeroy C. Lovett Jr.Leroy LevittLeroy Lovett Jr.Leroy Lovett, Jr.Leroy/LovettLouettLovettCliff LeeJohnny Hodges And His OrchestraLee Lovett QuartetLee Lovett And His OrchestraLeroy Lovett And The PlayersThe Al Sears All Stars + +430878Lawrence PaytonLawrence PaytonBorn: 2nd March 1938 Born Detroit, Michigan. +Died: 20th June 1997. +An original member of the [a=Four Tops] who was replaced by Theo Peoples following his death in 1997. +Father of [a=Roquel Payton] who replaced [a=Levi Stubbs, Jr.] in the Four Tops after he retired.Needs Votehttps://en.wikipedia.org/wiki/Lawrence_Paytonhttps://www.imdb.com/name/nm1249667/https://www.biographies.net/biography/lawrence-payton/m/03f7l7https://www.uncamarvy.com/Thrillers/thrillers.htmlA.L. PaytonL. PaytonL. Payton Jr.L.PaytonLarryLaurance PaytonLawrenceLawrence "W.W." PaytonLawrence Payton Jr.Lawrence Payton, Jr.Lawrence W.W.PaytonPaytonPayton LawrenceFour TopsThe Thrillers (6) + +431008Johannes PlatzViolin and viola player.Needs VoteZeitkratzerAkademie Für Alte Musik BerlinMusica Antiqua KölnCapella ThuringiaThePianoforteTrio + +431453Christian SteyerChristian Steyer (born December 6, 1946 in Falkenstein, Vogtland, Saxony) is a German actor, voice actor, musician, film composer and conductor of the Choir [a1393153].Needs Votehttp://de.wikipedia.org/wiki/Christian_SteyerChr. SteyerSteyeretc (2)Berliner Solisten + +431526Arthur EdgehillClifford Arthur Edghill Jr.American jazz drummer, born 21 July 1926, in New York; died 10 September, 2024, in Brooklyn, New York. +Played with Mercer Ellington, Eddie "Lockjaw" Davis, Shirley Scott, Kenny Dorham, Coleman Hawkins, Arnett Cobb, Mal Waldron, and others. +"His name has been consistently misspelled Edgehill." (The New Grove dictionary of jazz, 1988)Needs Votehttps://en.wikipedia.org/wiki/Arthur_EdgehillArthur EdghillAurthur EdgehillShirley Scott TrioThe Prestige All StarsMal Waldron QuintetEddie "Lockjaw" Davis TrioEddie Lockjaw Davis QuartetThe Eddie "Lockjaw" Davis Quintet + +431745Cheryl BentyneCheryl BenthienAmerican jazz vocalist, born on January 17, 1954 in Mount Vernon, WA. Started off in local bands and soon joined eight-piece swing outfit, [a3712182]. She was a part of the group for four years, and then went off on a solo career. Upon [a264563] leaving [a49605], she was asked to audition for the group, and wound up winning the audition. Bentyne debuted with the group on 1979's [I]Extensions[/I], and has remained with them for several decades, winning nine Grammy Awards with them along the way. + +Besides her work with the Transfer, Bentyne has also maintained a solo career, starting with 1992's [I]Something Cool[/I].Needs Votehttps://en.wikipedia.org/wiki/Cheryl_Bentynehttps://www.last.fm/music/Cheryl+BentyneBentyneC. BentyneCherylCheryl BentineCheryl Bentyne from The Manhattan TransferCheryl Bentynováシェリル・ベンティーンThe Manhattan TransferNew Deal Rhythm Band + +431940Monika LennartzGerman actress and voice actor. She was born 20 February 1938 in Stettin, Germany (now Szczecin, Poland).Needs Votehttps://de.wikipedia.org/wiki/Monika_LennartzMonika Lennarz + +431994Bernd RungeBernd Runge (Born in Ludwigslust (Mecklenburg)) is a German recording supervisor and producer. Almost exclusively active for the label [l47734].Needs Votehttps://www.ioco.de/interview-bernd-runge-musikregisseur-beim-label-eterna-ioco/B. RungeBerndt RungeRungeInstrumentalgruppe Bernd Runge + +432053Heinrich HeineChristian Johann Heinrich Heine née Harry HeineGerman poet, journalist, essayist and literary critic, born 13 December 1797 in Düsseldorf, Germany and died 17 February 1856 in Paris, France. He was one of the most significant German poets.Needs Votehttp://www.heinrich-heine.nethttps://en.wikipedia.org/wiki/Heinrich_Heinehttps://adp.library.ucsb.edu/names/102443C. HeineH HeineH. HeineH. HeinėH.HeineH.HeinėHajneHch. HeineHeineHeine HeinrichHeine, HeinrichHeine/MeierHeinich HeineHeinr HeineHeinr. HeineHeinrich HerneHeinrihs HeineHenri HeineHenrich HeineHenry HeineHeyneΕ. ΧάινεΕρρίκος ΧάινεΕρρίκος ΧάϊνεГ. ГайнеГ. ГейнеГ.ГейнеГейнеГенрих ГейнеГенріх ГайнеХайних ХайнеХайнрих ХайнеХајнрих Хајнеהיינרייך היינההיינריך היינהハインリッヒ・ハイネ海涅 + +432069Jutta HoffmannJutta HoffmannGerman actress, and visual arts professor.CorrectBandits (2) + +432166Shunzo Ohno大野俊三Japanese jazz trumpet player. Born on March 22, 1949 in Gifu, Japan. Moved to New York City in 1974. Has worked with Art Blakey, Gil Evans, Herbie Hancock, Wayne Shorter and many more.Needs Votehttps://www.shunzoohno.com/https://www.facebook.com/Trumpet.Shunzo.Ohno/https://www.instagram.com/shunzoohnoS, O'noS,OnoS. O'noS. OhnoShenzo OhnoShunzo O'noShunzo OnoShunzo O´NoShunzoh OhnoShunzu Ono大野 俊三大野俊三Gil Evans And His OrchestraThe Monday Night OrchestraMachito And His Salsa Big BandTakeshi Inomata & Sound LimitedShunzo Ohno QuartetGeorge Otsuka QuintetShunzo Ohno QuintetShintaro QuintetYoichi Kobayashi & Japanese Jazz Messengers + +432500Jan Dismas ZelenkaJan Dismas ZelenkaCzech baroque composer. Born October 16, 1679 in Louňovice pod Blaníkem, Bohemia (presently Czechia), died December 23, 1745 in Dresden (presently Germany). His music was notably adventurous with great harmonic invention and mastery of counterpoint. Most of Zelenka's compositions were sacred works, including three oratorios, 21 masses, a Te Deum and numerous other pieces. Also known as Johann Dismas Zelenka. +Needs Votehttp://www.jdzelenka.net/http://en.wikipedia.org/wiki/Jan_Dismas_Zelenkahttp://www.classical.net/music/comp.lst/articles/zelenka/bio.phpD. ZelenkaJ. D. ZelenkaJ.D. ZelenkaJan Disman ZelenkaJean Dismas ZelenkaJohann Dismas ZelenaJohann Dismas ZelenkaJohann Lukas ZelenkaJohn Dizsmas ZelenkaZelenkaZelenka J. D.ZelenskaStaatskapelle Dresden + +433437Maxwell ZeugnerAmerican double bassist.Needs VoteMax ZeugnerNew York Philharmonic + +433707Bruce SquiresBruce Willmarth Squires.American jazz trombonist. + +Born : January 21, 1910 in Berkeley, California. +Died : May 08, 1981 in North Hollywood, California. + +Bruce worked with : +Ben Pollack (1935-'37), +Jimmy Dorsey (1937-'38), +Gene Krupa (1938-'39), +Benny Goodman (1939), +Harry James (1939-'40), +Freddie Slack (1940-'41), +Bob Crosby (1942), +after World War II he was an active performer into the 1970s.Needs VoteBruce SquireHarry James And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraArtie Shaw And His OrchestraBenny Goodman And His OrchestraOpie Cates And His Orchestra + +433709Israel CrosbyIsrael Clem CrosbyJazz bassist, born 19 January 1919 in Chicago, Illinois, died 11 August 1962 in Chicago, Illinois. +Crosby started his career in the mid-1930s working with [a=Albert Ammons] and later joined the ensembles of [a=Fletcher Henderson] (1936-1939), [a=Horace Henderson] (1940-1941) and [a=Teddy Wilson] (1940-1942). +After working as a session musician for over a decade he was a member of [a=Ahmad Jamal]'s trio from 1954 to 1962. He joined [a=George Shearing]'s band just before his death. +Needs Votehttps://en.wikipedia.org/wiki/Israel_Crosbyhttps://adp.library.ucsb.edu/names/106018I. CrosbyIrael CrosbyIsraelIsrale CrosbyIsraël CrosbyIsreal CrosbyColeman Hawkins QuartetAhmad Jamal TrioEdmond Hall Celeste QuartetFletcher Henderson And His OrchestraThe George Shearing QuintetTeddy Wilson And His OrchestraEdmond Hall's Blue Note JazzmenGeorge Shearing TrioAlbert Ammons And His Rhythm KingsGene Krupa And His ChicagoansBenny Morton's All StarsThe Ahmad Jamal QuintetArt Hodes' Back Room BoysGene Krupa's Swing BandAuld-Hawkins-Webster SaxtetChu Berry And His Stompy Stevedores"Little Jazz" And His Trumpet EnsembleSam Jones & Co.Jimmie Noone And His New Orleans BandHerb Ellis And The All-StarsOliver "Rev." Mesheux's Blue SixIsrael Crosby Quartette + +433710Horace RollinsAmerican jazz bassistNeeds VoteGene Krupa And His Orchestra + +433712Sam MusikerSam Musiker (born 1916, New York City, New York, USA - died 1964) was an American clarinetist and saxophonist (tenor and alto) spanning both jazz and klezmer music. Among the artists that he played with include [a258689]'s band, [a254768], [a258459], [a258903] and others. He is the brother of [a1641602] and son-in-law of [a514064]. + +Needs Votehttps://en.wikipedia.org/wiki/Sam_Musikerhttps://amp.google-wiki.info/47522483/1/sam-musiker.htmlhttps://www.allmusic.com/artist/sam-musiker-mn0000290129/biographyMusikeerMusikerS. MusikerSammy MusicaSammy MusikerThe Musiker BrothersGene Krupa And His OrchestraSam Musiker And His Orchestra + +433713Joe Harris (2)American jazz trombonist and vocalist. + +Born : September 27, 1907 in Sedalia, Missouri. +Died : July 26, 1952 in Fresno, California. + +Joe worked with the big bands of Ben Pollack, Bob Crosby,Benny Goodman, Lyle Murphy, Pee Wee Erwin +and others.Needs VoteHarrisJ. HarrisJHJoe HarrisBob Crosby And His OrchestraBenny Goodman And His OrchestraGene Krupa And His ChicagoansThe Jam Dandies + +433797Brian BrooksBritish violinist, musicologist and pedagogue.Needs VoteBrian BrookesRaglan Baroque PlayersGreenwich String Quartet + +433899José Padilla SánchezJosé Julián Padilla SánchezSpanish composer and arranger, known for his zarzuelas and operettas. +Born: 28th May 1889 Almería, Spain / Died: 25th October 1960 Madrid, Spain. + +'Padilla' as he is often credited, trained in the Madrid Conservatory and then in Italy before embarking on assisting Ventura de la Vega with several works & 'zarzuelas'. + +"La Mala Hembra" (1906), one-act 'sainetes' and 'revistas'; "Juan Miguel" and "Los Viejos Verdes" (1909), "Luzbel" (1917), together with an opera "La Faraona". + +He then moved to Paris, where his 'operettes' became incorporated into works at the Moulin Rouge. Many of these pieces - such as "El Relicario", "La Violetera" (with [a1448249]) and the popular pasodoble "Valencia" - brought him international celebrity. Another of his works "My Spanish Rose" became part of Jerome Kern's score for "The Night Boat" on Broadway. + +>> for the Cuban producer, please use [a2354346]Needs Votehttps://adp.library.ucsb.edu/names/106962https://en.wikipedia.org/wiki/Jos%C3%A9_Padilla_(composer)A. PadillaBadillaBadilla Sanchez JoseC. PadillaC.J. PadillaDe PadillaE. PadillaG. PadillaGrey PadillaH. パディーリャJ PadillaJ. P. SánchezJ. PadellaJ. PadilhaJ. PadillaJ. Padilla SanchesJ. Padilla SanchezJ. Padilla SánchezJ. Padilla-SchultzeJ. Padilla.J. PadilliaJ. PadilloJ. ParillaJ. PavillaJ. PidilloJ. PodillaJ. SanchezJ. SánchezJ. de PadillaJ.PadillaJ.S. PadillaJoosé PadillaJoseJose PadillaJose Padilla-SanchezJose PadilloJose Sanchez PadillaJosè PadillaJosè Padilla SanchezJosé "Maestro" PadillaJosé P. SánchezJosé PaddillaJosé PadillaJosé Padilla SanchezJosé SánchezLeónMaestro J. PadillaMaestro PadillaMontesions PadillaOrchestre Jose PadillaPadellaPadiliaPadiliarPadillPadillaPadilla / SanchezPadilla JosePadilla SanchezPadilla Sanchez JoséPadilla yPadilla/SánchezPadillapPadillePadilloParillaS. J. PadillaS. PadillaSanchezSanchez Jose PadillaSanchez José PadillaSenchez Jose PadillaTadillaYose PadillaК. ПадиллаПАДИЛЛПадиллаПадильяХ. ПадиллаХ.Падиллаホセ パデイーリャ + +434005Glenn DrewesAmerican trumpeter, born 1949Needs VoteGlen DrewesGlen DrewsGlen DrewseGlenn DrewsWoody Herman And His OrchestraLouie Bellson Big BandWoody Herman BandThe Philip Morris SuperbandDave Stahl BandLouie Bellson And His Jazz OrchestraWoody Herman And The Thundering HerdBill Warfield Big BandThe Vanguard Jazz OrchestraThe Lew Anderson Big BandThe Birdland Big BandThe Tom Talbert Jazz OrchestraThe Nuff Brothers + +434017Sherry SylarAmerican classical oboist born in Chattanooga, Tennessee. She joined the New York Philharmonic in 1984.Needs VoteNew York Philharmonic + +434124Robert Veyron-LacroixRobert Veyron-LacroixFrench harpsichordist, pianist and teacher. + +Born: December 13, 1922 - Paris, France +Died: April 3, 1991 - Garches (Hauts-de-Seine), Paris, France +Needs Votehttp://jsebestyen.org/veyron-lacroix/http://www.bach-cantatas.com/Bio/Veyron-Lacroix-Robert.htmR. Veyron LacroixR. Veyron-LacroixR. Veyron-VacroixR.VeyronR.Veyron LacroixRobert Veyron - LacroixRobert Veyron LacroixRobert Veyron-LacroisVeyron LacroixVeyron-Lacroixロベール・ヴェイロン=ラクロアロベール・ヴェイロン=ラクロワロベール・ヴェイロン=ラクロワKammerorchester Des Saarländischen Rundfunks, SaarbrückenEnsemble Baroque De ParisLondon Baroque EnsembleOrchestre de Chambre Fernand Oubradous + +434233Chuck WillisHarold WillisChuck Willis (born January 31, 1928, Atlanta, Georgia, USA - died April 10, 1958, Atlanta, Georgia, USA) was an American blues, R&B and rock 'n' roll singer. His 1954 song "I Feel So Bad" is often miscredited to [a=Lightnin' Hopkins] who also wrote and released a song of the same name in 1947 on [l=Aladdin (6)]. + +[b]For the photographer, see [a2948072].[/b] + + +Needs Votehttp://en.wikipedia.org/wiki/Chuck_WillisC WillisC WillsC, WillisC. WillesC. WillieC. WillisC. WillsC.WillisC.k WillisCh. WillisCh. WillsChick WillisChuck WilliamsChuck WillieChuck Willis & His BandChuck WillsCuck WillisH. WillisHarold WillisMenjinu WillisWilisWillieWillisWillis C.WillissWillsChuck Willis & His OrchestraChuck Willis And His Band + +434336London SinfoniettaThe London Sinfonietta is an English chamber orchestra based in London, founded in 1968 by [a1172205] and [a836085]. The ensemble specialises in contemporary music and works across a wide range of genres. Artistic directors have been: + +[a836085] from 1968-1973 +Michael Vyner from 1972-1989 +[a1015112] from 1988-1994 +[a=Markus Stenz] from 1994-1998 +[a=Oliver Knussen] from 1998-2002 +Gillian Moore from 1998-2006Needs Votehttps://en.wikipedia.org/wiki/London_Sinfoniettahttps://www.londonsinfonietta.org.uk/https://www.southbankcentre.co.uk/whats-on/festivals-series/classical-season/london-sinfoniettahttps://www.naxos.com/Bio/Person/London_Sinfonietta/45516https://www.bach-cantatas.com/Bio/London-Sinfonietta.htmhttps://www.imdb.com/name/nm2986368/https://www.youtube.com/user/LondonSinfoniettahttps://www.x.com/Ldn_sinfoniettahttps://www.facebook.com/londonsinfonietta/https://www.instagram.com/london.sinfonietta/https://www.linkedin.com/company/london-sinfonietta/London SinfoneittaLondon Sinfonietta OrchestraLondon Sinfonietta SoloistsLondon Sinfonietta Und ChorLondon Sinfonietta VoicesLondon Sinfonietta, TheLondon SinfoniettoMembers Of The London SinfoniettaMembers of the London SinfoniettaOrchestra London SinfoniettaSinfonia Of LondonThe London SinfoniettaThe London Sinfonietta Opera OrchestraThe London Sinfonietta OrchestraLionel HandyRebecca HirschTristan FryHelen TunstallPaul ArchibaldAndy CrowleyMiffy HirschRoger ChaseAlan CivilJohn WilbrahamSimon HaramMartin AllenMelinda MaxwellAdrian BradburyAndrew Parker (2)James Watson (2)Joan AthertonMark Van De WielDavid AlbermanSebastian BellEdward BeckettCorin LongLouise HopkinsLynda HoughtonDavid PurserGalina SolodchinCaroline DearnleyZoe MartlewMichael Thompson (2)Donald McVayChristopher Van KampenJane AtkinsClio GouldShelagh SutherlandJames HollandJeremy Williams (2)Gareth HulseJohn OrfordEnno SenftFiona RitchieDavid HockingsJames BoydAnthony ChidellDenis WickEric CreesMichael Collins (3)John ConstableElizabeth WexlerPaul SilverthorneSimon Wills (2)John ChimesRoger BirnstinglByron FulcherGareth BradyAnssi KarttunenGervase de PeyerJohn Wallace (4)Valentin GarvieRobin McGeeAntony PayNona LiddellJanet CraxtonHoward SnellHarold LesterJennifer Ward ClarkeJonathan MortonBryn LewisCatherine EdwardsNick ReaderMartin GattJames Anderson (6)Roger FallowsMichael Harris (6)Karen Jones (3)Hale HambletonKevin NuttyTimothy LinesMiranda FulleyloveSimon Smith (6)Keith MillarJohn Miller (14)Joseph SandersMichael Cox (3)Andriy ViytovychTimothy GillJanet CrouchJohn Jenkins (6)Joy FarrallSimon BlendisStephen MawHilary Jane ParkerPeter Blake (6)Michael WhightRobert HollidayTorbjörn HultmarkCharlotte ReidMarkus Van HornAlistair MackieChristian BarracloughRichard Waters (5)Adam WynterZoe MatthewsSiwan RhysDaniel Finney (3)Kenneth Essex (2) + +434650Matt HaimovitzCellist. +Born on 3 December 1970 in Bat Yam, Israel. +Needs Votehttps://web.archive.org/web/20170923201141/http://www.matthaimovitz.com/https://en.wikipedia.org/wiki/Matt_Haimovitzhttps://myspace.com/matthaimovitzhttps://oxingalerecords.com/matt-haimovitz/HaimovitzMatt HaimowitzEnglish Chamber OrchestraUccello + +434719Andrew LongBritish violinistCorrectAndrewAndy LongRoyal Liverpool Philharmonic OrchestraLiverpool Session Orchestra + +434848Alex Harvey (2)Thomas Alexander HarveyAlex Harvey (Born: March 10, 1947 - Died: April 4, 2020) was an American country singer, songwriter, author, actor, and radio host. + +This is [u]not[/u] the vocalist/guitarist of The Sensational Alex Harvey Band. +Needs Votehttps://en.wikipedia.org/wiki/Alex_Harvey_(country_musician)A HarveyA. HareeyA. HarveryA. HarveyA.HarveyAlex HardeyAlex HarvyAlexander HarveyHarveyHarvey AlexLarry CollinsThomas Harvey + +435081Cy TouffCyril James TouffJazz bass trumpeter. Born on March 4, 1927 in Chicago; died January 24, 2003 in Evanston, Illinois.Needs Votehttps://en.wikipedia.org/wiki/Cy_TouffCy ToufeCy TouffsCy TouftCyril J. TouffCyril TouffCytouffTouffWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And The Las Vegas HerdCy Touff QuintetWoody Herman BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdMike Simpson And OrchestraCy Touff OctetChubby Jackson's Big BandThe Nat Pierce-Dick Collins NonetThe HerdmenWoody Herman And His OctetWoody Herman And The Swingin' Herd (2)Jimmy Dale Band + +435321Victor BayAmerican violinist and conductor, born 1896 in Russia and died 1988 in the United States. He was the brother of [a976868].CorrectThe Philadelphia Orchestra + +435323Victor ArnoAmerican Violinist, radio concertmaster, and conductor. +Born 1907 in Savannah, Georgia. +He began playing violin at the age of 6.Needs Votehttps://www.imdb.com/name/nm1147676/Vic ArnoVicot ArnoVictor AmoBenny Goodman And His OrchestraGordon Jenkins And His OrchestraJohnny Richards And His OrchestraVictor Arno And His Salon OrchestraThe Victor Arno Orchestra + +435325Paul RobynAmerican viola player.Needs VotePaul RobinHarry James And His OrchestraArtie Shaw And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraThe Hollywood String Quartet + +435326Joe KochAmerican jazz saxophonistNeeds VoteJ. KochJoe KockJoseph "Joe" KochJoseph J. 'Joe' KochJoseph J. KochJoseph KochTommy Dorsey And His OrchestraGene Krupa And His OrchestraIke Carpenter And His Orchestra + +435334Emmet SargeantAmerican cellist, born 23 June 1907 and died 22 September 1999.Needs VoteEmmet R. SargeantEmmet SargentEmmet SergeantEmmett SagentEmmett SargeantEmmett SargentThe Philadelphia OrchestraThe Wrecking Crew (6) + +435340Vito ManganoJazz trumpeterNeeds VoteM. ManganoVMVitoVito "MIckey" ManganoVito "Mickey" ManganoVito Mangano (VM)Vito Nicholas ManganoMickey ManganoTommy Dorsey And His OrchestraIke Carpenter And His OrchestraThe Jerry Fielding Orchestra + +435341Armand KaproffUS cellist (* 24 June 1919 in Brooklyn, New York, USA; † 06 February 2005 in Los Angeles, California, USA).Needs Votehttps://www.imdb.com/name/nm1880860/https://www.feenotes.com/database/artists/kaproff-armand-24th-june-1919-6th-february-2005/A. KaproffArman KaproffArmand Kapro_Armand KaprofArmand KarpoffArmannd KaproffArmin KaproffArmond KaproffArnold KaproffKaproff ArmandGordon Jenkins And His OrchestraBen Webster With StringsThe Wrecking Crew (6)Benny Goodman With StringsBaker String QuartetBilly Moore and his Jumpin String OctetteLos Angeles String Quartet + +435344Erno NeufeldViolinist (1910-2006). Father of violist [a=Dan Neufeld].Needs Votehttps://www.imdb.com/name/nm2993756/https://www.legacy.com/us/obituaries/latimes/name/erno-neufeld-obituary?id=26135155Arno NeufeldE. NeufeldE.NeufeldEmo NeufeldEnro NeufeldErno NeufieldErno NewfeldErno NuefeldHarry James And His OrchestraHenry Mancini And His OrchestraLalo Schifrin & OrchestraMilt Jackson & Strings + +435493Arne ReicheltArne ReicheltGerman trance producer and one half of the [a=Alphazone] team.Needs Votehttps://web.archive.org/web/20130827085141/http://www.skywarp.de/A ReicheltA. ReicheltA.ReicheltR. ReicheltReicheltAlphazoneD-MentionSaturatorSaltwaterPump MachineNebulus (2)CeylonNightflightOverload (10)AramanjaBias Bros.BasswizzardsCrusader + +435494Alexander ZwargAlexander ZwargGerman trance producer and one half of the [a=Alphazone] team.Needs Votehttps://web.archive.org/web/20130827085141/http://www.skywarp.de/A ZwargA. ZwargA.ZwargAlexander ZwarkZwargAlphazoneD-MentionSaturatorSaltwaterPump MachineNebulus (2)CeylonNightflightOverload (10)AramanjaBias Bros.BasswizzardsCrusader + +435555The Czech Philharmonic OrchestraČeská filharmonieCzech symphony orchestra. Established in 1894 as the orchestra of [l274610] ([a=Orchestr Národního Divadla]) in Prague. First performed under its name on January 4, 1896, conducted by [a=Antonín Dvořák]. Independent orchestra since 1901. + +Related entities: [a=Czech Singers Chorus] (Český pěvecký sbor), [a=Prague Philharmonic Chorus] alias [a=Czech Philharmonic Chorus] (Pražský filharmonický sbor).Needs Votehttps://www.ceskafilharmonie.czhttps://www.facebook.com/ceskafilharmoniehttps://www.instagram.com/czechphilharmonichttps://en.wikipedia.org/wiki/Czech_Philharmonichttps://www.youtube.com/@CzechPhilharmonicOfficialCeska FhilarmonieCeska FilharmonieCeská FilharmonieCeská PhilharmonieCeské FilharmonieChech Philharmonic OrchestraCzech National Philharmonic OrchestraCzech POCzech PhilCzech Phil.Czech Phil. OrchCzech Phil. Orch.Czech PhilarmonicCzech Philarmonic OrchestraCzech Philharmonia OrchestraCzech PhilharmonicCzech Philharmonic Chamber OrchestraCzech Philharmonic OrchestraCzech Philharmonic Orchestra (Čf)Czech Philharmonic Orchestra Of PragueCzech Philharmonic Orchestra Percussion SectionCzech Philharmonic Orchestra PragueCzech Philharmonic Orchestra Wind EnsembleCzech Philharmonic Orchestra,Czech Philharmonic PlayersCzech Philharmonica OrchestraCzech Philharmonie OrchestraCzech PhilharmonyCzechoslovakian State Philharmony PragueČeská FilharmonieDas Orchester Der Tschechischen PhilharmonieDas Tschechische Philharmonische OrchesterDe Tsjechisch-Slovaakse FilharmonieDen Tjekkiske FilharmoniDer Tschechischen PhilharmonieDie Tschechische FilharmonieDie Tschechische PhilharmonieDie Tschechische Philharmonie PragDie Tschechischen PhilharmonikerDie Tsjechische PhilharmonieFilarmonica BoemaFilarmonica CecaFilharmonický OrchestrGrand Orchestre Philharmonique TchèqueGroßes Symphonieorchester (Tschechische Philharmonie / Nationaltheater Prag)Harmonie Českých filharmonikůHarmony Of The Czech PhilharmonicInstrumental EnsembleInstrumentální Soubor Členů České FilharmonieKomorní Soubor České FilharmonieKvarteto Českých FilharmonikůL'Orchestre De La Philharmonie TchèqueL'orchestre Philarmonique De PragueL'orchestre Philarmonique TchèqueL'orchestre Symphonique TchèqueLa Orquesta Filarmónica ChecaLa Philarmonie TchèqueLa Philharmonie TchequeLa Philharmonie TchèqueMembers Of Czech Philharmonic OrchestraMembers Of The Czech PhilharmonicMembers Of The Czech Philharmonic OrchestraMembers Of The Czech Philharmonic Orchestra (Percussion)Members Of The Czechs PhilharmonicsMembers of Czech Philharmonic OrchestraMitglieder Der Tschechischen PhilharmonieOchestre Philharmonique TchèqueOrch. Die Tschechische PhilarmonieOrch. Phil. TchèqueOrch. Philharmonique TchèqueOrchester Der Tschechischen PhilharmonieOrchester Des Prager National TheatersOrchester der Tschechischen PhilharmonieOrchestr České FilharmonieOrchestraOrchestra Filarmonica BoemaOrchestra Filarmonica BoemaOrchestra Filarmonica CecaOrchestra Filarmonica CecoslovaccaOrchestra Filarmonica ChecaOrchestra Filarmonica CècaOrchestra Filarmonica CécaOrchestra Filarmonicii Naționale CeheOrchestra Filarmonică CehăOrchestra Filarmónica ChecaOrchestra Filharmonica CécaOrchestra Of The National Theatre, PragueOrchestra Philharmonica BoemaOrchestra Pilarmonica BoemaOrchestra Simfonică A Filarmonicii CeheOrchestra Simfonică din PragaOrchestra simfonică a Filarmonicii ceheOrchestre De La Philharmonie TchequeOrchestre De La Philharmonie TchèqueOrchestre Du Philharmonic TchèqueOrchestre Du Philharmonique TchèqueOrchestre Du Théâtre National De PragueOrchestre Philarmonique TchequeOrchestre Philarmonique TchèqueOrchestre Philharmonic TchéqueOrchestre Philharmonique De PragueOrchestre Philharmonique TchecOrchestre Philharmonique TchequeOrchestre Philharmonique TchèqueOrchestre Philharmonique TchèquesOrchestre Philharmonique TchéqueOrchestre Philharmonique de PragueOrchestre Symphonique TchèqueOrchestre de la Philharmonie TchequeOrchestre de la Philharmonie Tcheque de PragueOrchestre de la philharmonie tchèqueOrkestar češke FilharmonijeOrkiestra Filharmonii CzeskiejOrquesta Filamónica ChecaOrquesta Filarmonica ChecaOrquesta Filarmonica de PragaOrquesta Filarmónia ChecaOrquesta Filarmónica ChecaOrquesta Filarmónica de ChequiaOrquesta Fillarmonica ChecaOrquesta Filármonica ChecaOrquesta Sinfónica ChecaOrquestra Filarmoica ChecaOrquestra Filarmonica ChecaOrquestra Filarmónica ChecaOrquestra Filarmônica TchecaOrquestra Filarmônica Tcheca De PragaPercussionPhil. TchéquePhil. ThéquePhil. ThéquesPhilarmonique TchèquePhilhamonie Tchèque De PraguePhilharmonic OrchestraPhilharmonic Orchestra PraguePhilharmonie TchequePhilharmonie TchèquePhilharmonie Tchèque De PraguePhilharmonie Tchèque, PraguePhilharmonisches Orchester PragPhilmarmonie TchéquePrager Philharmonisches OrchesterPrague Grand OrchestraPrague National TheatrePrague National Theatre Chamber OrhestraPrague National Theatre ChorusPrague National Theatre OrchestraPrague PhilharmoniaPrague Philharmonic OrchestraPrague Symphony OrchestraPražský Filharmonický OrchestrSoloists And Czech Phil. Orch.Soloists Of The Czech PhilharmonicSoloists Of The Czech Philharmonic OrchestraSoloists, Chorus, And Orchestra Of The Prague National TheatreState Czech Philharmonic OrchestraSymphonisches Orchester PragTchechische FilharmonieTchechische PhilharmonieTchechische Philharmonie, PragThe Czech PhilharmoniaThe Czech PhilharmonicThe FOK Symphony OrchestraThe Prague National Philharmonic OrchestraThe Tschechische PhilharmonieTjechisch Philharmonisch OrkestTjeckiska Filarmonins OrkesterTjeckiska FilharmoninTjeckiska Filharmonins OrckesterTjeckiska Filharmoniska OrkesternTjeckiska StatsfilharmoninTschech Philharmonic OrchestraTschech. Philharmonisches OrchesterTschechiche Philharmonic Prag.Tschechiche PhilharmonieTschechische FilharmonieTschechische PhiharmonieTschechische PhilarmonicTschechische Philharmie, PragTschechische PhilharmoniaTschechische PhilharmonicTschechische Philharmonic PragTschechische Philharmonic, PragTschechische PhilharmonieTschechische Philharmonie = Czech PhilharmonicTschechische Philharmonie PragTschechische Philharmonie Prag.Tschechische Philharmonie • Orchestre Philharmonique TchèqueTschechische Philharmonie, PragTschechische StaatsphilharmonieTschechische Staatsphilharmonie PragTschechischen PhilharmonieTschechisches Philharm. OrchesterTschechisches PhilharmonieTschechisches Philharmonisches OrchesterTschechisches SymphonieorchesterTsechische PhilharmonieTsekkiläinen Filharmoninen OrkesteriTsjechisch Filharmonisch OrkestTsjechisch Philharmonisch Koor & OrkestTsjechisch Philharmonisch OrkestTsjechische PhilharmonieTšekinmaan Filharmoninen Orkesteridie tschechische Philharmonieorchestra Filarmonica CecoslovaccaĆeská FilharmonieČFČeske FilharmonieČeskou FilharmoniiČeskà FilharmonieČeská FilharmonieČeská Filharmonie / Czech Philharmonic OrchestraČeská Filharmonie OrchestraČeská FilharmóniaČeská FilharomonieČeská filharmoniaČeská filharmonieČeské FilharmonieČeška FilharmonijaČeški Filharmonijski OrkestarČlenové České Filharmoniečeská Filharmoniečeská filharmonieΦιλαρμονική Ορχήστρα Της ΤσεχίαςОркестр Чешской ФилармонииОркестр чешской филармонииЧешская ФилармонияЧешский Филармонический Оркестрチェコフィルチェコ・フィルハーモニー管弦楽団チェコ・フィルハーモニー管弦楽団チェコ・フイルハーモニー管弦楽団Carlyle Symphony OrchestraPetra ČermákováVáclav NeumannDominik TrávníčekBohumil KotmelRené VáchaOndrej KamešSemyon BychkovLukáš ValášekVladimir AshkenazyVáclav TalichJosef VlachBohuslav MartinůJiří MihuleJiří VálekFrantišek HermanKarel AnčerlVáclav SmetáčekJosef ChuchroRafael KubelikGerd AlbrechtFrantišek SlámaFrantišek VajnarPetr ŠkvorZdeněk MácalKarel ŠejnaEliahu InbalKarel BidloZdeněk ŠedivýVáclav HozaRaphael WallfischDaniel MikolášekJaroslav MotlíkZdeněk BendaJiří HudecMartin Roos (2)František PoštaZdeněk DivokýPavel HořejšíLadislav KozderkaDimitri AshkenazyFrantišek LhotkaKarel ŘehákJiří BělohlávekPeter MišejkaJaroslav KopáčekIvan SéquardtVladimír VálekEmil LeichnerTomas HostickaLukáš MoťkaJiří BoušekOtakar JeremiášJan ŠimonBruno BělčíkJiří SušickýJan JouzaJana BrožkováJaroslav KubitaOndřej BalcarPetr DudaRadek BaborákVladislav BorovkaJiří VodičkaJan MachatOndřej RoskovecJaroslav TachovskýZuzana HájkováRoman KoudelkaOtis KlöberJan Keller (2)Jindřich VáchaJiří ZelbaVáclav PrudilIvan PazourJaromír ČerníkBarbara PazourováRoman NovotnýOtakar SroubekZdeněk StarýPavel PolívkaJan VobořilOndřej SkopovýRadomír PivodaJaroslav HalířVladimír KubátJan ŠtrosPetr VeverkaFrantišek HostJaroslav PondělíčekJaromír PávičekJosef ŠpačekFrantišek BláhaTomáš FrantišJaroslav KroftMarcel KozánekKarel MalimánekKarel StralczynskýKarel KučeraMiroslav VilímecJiří VopálkaJan MarečekRobert KozánekZdeněk TesařMartin Hilský (2)Georg SumpikMiroslav Kejmar Jr.Petr SinkuleJan LudvíkFrantišek HavlínOtakar BartošPavel HerajnLuboš DudekPavel CiprysPavel NejtekJan Valta (2)Jan Brabec (2)Jiri TancibudekZdeněk ZelbaJiří PosledníJiří Havlík (2)Václav MáchaJosef Dvořák (2)Antonín ModrVojtěch Jouza (2)Franziska van OoyenVáclav VonášekJan Šimon (2)Josef Špaček (2)Markéta VokáčováVilém Zemánek + +435560Claude MainguyNeeds VoteC. Main GuyC. Main-GuyC. MainguyC.MainguyCI. MainguyCl. MainguyG. MainguyMainguyW. MainguyMainguyMike SteenMaya (56)L'Empreinte + +435781John BoyceCellist, violinist, and string arranger.Needs VoteBBC Symphony Orchestra + +435981Wilbert LongmireWilbert Thomas LongmireJazz guitarist from Cincinnati, Ohio. Born 1941, died 3 January 2018.Needs Votehttp://www.myspace.com/wilbertlongmire"Wilbert Longmire"LongmireMax LongmireW LongmireW. LongmireW. T. LongmireWilbur LongmireGerald Wilson OrchestraHank Marr QuartetteWilbert Longmire Quartet + +436074George David WeissGeorge David WeissAmerican songwriter and President of the Songwriters Guild of America. He also played violin, piano, saxophone and clarinet. +Born April 9, 1921, New York City, New York - died August 23, 2010 in Oldwick, NJ. +His songs, including "What a Wonderful World", "Can't Help Falling In Love With You", "Lullaby Of Birdland", have been recorded by such artists as [a=Tom Jones], [a=Mel Tormé], [a=Elvis Presley], [a=Dinah Washington], [a=Stylistics] or [a=Sammy Davis Jr.].Needs Votehttps://www.songhall.org/profile/George_David_Weisshttps://en.wikipedia.org/wiki/George_David_Weisshttps://www.imdb.com/name/nm0918993/https://repertoire.bmi.com/Search/Search?SearchForm.View_Count=100&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=WEISS+GEORGE+DAVID+&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allhttps://adp.library.ucsb.edu/names/352647B. WeissBob David WeissC. D. WeissC. WeissCarl WeissD. G. WeissD. WeissD.G. WeissDavid / WeissDavid GeorgeDavid George WeissDavid WeissDavid WeiszE. WeissForsterG D WeissG WeissG, WeissG-D- WeissG-D. WeissG. WeissG. & D. WeissG. - D. WeissG. A. WeissG. C. WeissG. D WeissG. D. WeinG. D. WeisG. D. WeissG. D. WetssG. D. WiessG. D. WotssG. DavidG. David WeiffG. David WeissG. DavidweissG. Davis WeisG. E. WeissG. P. WeissG. R. WeissG. W. WeissG. WeisG. WeiseG. WeissG. WeißG. WellsG. WiessG. WiseG. WissG. ZeissG. ワイスG.&D. WeissG.-D. WeissG.B.WeissG.D WeissG.D. WeisG.D. WeissG.D. WeiszG.D. WeizzG.D., WeissG.D.WeissG.DavidG.David.WeissG.P. WeissG.W. WeissG.WeisG.WeissGD WeissGD. WeissGd WeissGeo D. WeissGeo David WeissGeo WeissGeo. D. WeissGeo. David WeissGeo. WeissGeor D. WeissGeorg DavidGeorg David WeissGeorg WeissGeorg-David WeissGeorge - B. WeissGeorge - David WeissGeorge / David WeissGeorge B. WeissGeorge D WeissGeorge D. WeiisGeorge D. WeissGeorge D. WeißGeorge D.WeissGeorge Dadid WeissGeorge Daivid WeissGeorge DavidGeorge David - WeissGeorge David WeiszGeorge David WessGeorge Davis WeisGeorge Davis WeissGeorge E. WeissGeorge WeisGeorge WeiseGeorge WeissGeorge WhiteGeorge WiessGeorge-David WeissGeorge-David-WeissGeorge-WeissGeorges WeissGeorges Daw WeissGeorges WeissGeorgew WeissGeorgie WeissGeprge WeissGeroge WeissGg. WeissGore David WeissGorge WeissH. & L. WeissH. WeissHolofocner-WeissJ. D. WeissJ. DavidJ. WeissJohn F. EdmondsJ・ダビッド,ワイズK. UkissL. WeissLaurence WeissLawrence WeissMeissMelisaNijssR. WeissRobert WeissS. D. WeissS. WeissS.D. WeissStephan WeissWW.D. WeissWaissWeiffWeirsWeisWeisaWeiseWeissWeiss G.Weiss G.D.Weiss George DavidWeiss, GeorgeWeiss, George DavidWeiszWeißWeiß*WelsWetssWeyssWheissWhiteWiessWiseWissWittWyhssYeissg. weissВайсД. ВэсДж. Д. Вайсג'ורג' דיויס וייסג'ורג' דייויס וייסジョージ・D・ワイスジョージ・デヴィッド・ワイスワイスB. Y. ForsterJohn F. EdmondsGeorge David Weiss And His Orchestra + +436322Johannes RupeClassical bassoonist.Needs Votehttps://www.johannes-schwarz.com/Johannes SchwarzEnsemble ModernEnsemble Modern Orchestra + +436375Doris HochscheidDoris HochscheidDutch cellist.Needs Votehttp://www.dorishochscheid.nlD. HochscheidAsko EnsembleNieuw Sinfonietta AmsterdamElastic JargonAsko|SchönbergThe Stolz QuartetAmsterdam Bridge Ensemble + +436598Mark GoodchildClassical double bassist, born in London, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +436787Papa Charlie JacksonWilliam Henry JacksonAmerican blues and jazz banjoist, guitarist and ukelele player. Born circa 1885, probably in New Orleans, Louisiana, died 1938 in Chicago, Illinois. + +For credits for saxophone, bass sax, & brass bass please use [a=Charlie Jackson]. +Needs Votehttp://en.wikipedia.org/wiki/Papa_Charlie_Jacksonhttp://www.redhotjazz.com/jackson.htmlhttp://www.wirz.de/music/jackpfrm.htmhttp://www.paramountshome.org/index.php?option=com_content&view=article&id=82:william-henry-qpapa-charlieq-jackson&catid=45:new-york-recording-laboratoriesartist&Itemid=54https://adp.library.ucsb.edu/names/106245"Papa" Charlie Jackson"Poppa" Charlie Jackson(Papa) Charlie JacksonC. "Papa" JacksonC. JacksonCharles JacksonCharlie JacksonJacksonPapa Charley JacksonPapa CharlieW. Jackson« Papa » Charlie JacksonDentist JacksonWilliam Henry JacksonFreddie Keppard's Jazz CardinalsThe Paramount All StarsYazoo All Stars + +436788Bill SettlesBlues bassistNeeds VoteBob SettlesRudy Martin TrioState Street Boys (2)Arnett Nelson & His Hot FourThe Hokum Boys (2)Chicago Black SwansBig Bill & His OrchestraThe Hokum Boys (7) + +436985Matt DennisMatthew Loveland DennisUS-American pianist, singer, comedian, arranger & songwriter. +Born February 11, 1913 in Seattle, Washington, USA. +Died June 21, 2002 (age of 89) in Riverside, California, USA. +Married to singer [a=Virginia Maxey] (1953-2002, his death). +Brother of [a4236952]. +Dennis was exposed to music early as his mother was a violinist and his father a singer in vaudeville. In 1933, stilll a teenager, he joined Horace Heidt's Orchestra as a vocalist and pianist. Later on, he formed his own band, with Dick Haymes as vocalist. +During World War II, Dennis served as a singer-vocalist and arranger for the U.S. Army Air Forces’ Radio Production Unit and played with the Glenn Miller Air Force Band after it returned from Europe. +Dennis charted 6 times on the U.S. charts between 1940-1981. His highest charted song was "Let's Get Away from It All (Parts 1 & 2)" by Tommy Dorsey & His Orchestra. Dennis' chief collaborator was lyricist [a661120]. He was inducted into the Songwriters Hall of Fame in 2010. +Dennis was an accomplished jazz and pop pianist and wrote two tutorials, [i]Introduction to the Blues[/i] and [i]You Can Teach Yourself Piano[/i], designed to teach as well as to encourage improvisation.Needs Votehttp://en.wikipedia.org/wiki/Matt_Dennishttps://www.jazzstandards.com/biographies/biography_26.htmhttps://www.songhall.org/profile/matt_dennishttps://geezermusicclub.com/2012/02/28/matt-dennis-a-different-kind-of-crooner/https://www.imdb.com/name/nm0219516/https://adp.library.ucsb.edu/names/100092BrentD.D. MattDanielsDannisDavisDemisDenisDennisDennis MattDennis-MathewE. DennisEnnisLovelandM DennisM. DenisM. DennieM. DennisM.DeniM.DennisMark DennisMat DavisMat DenisMat DennisMathew DennisMatt DannisMatt DeninsMatt DenisMatt Dennis And His OrchestraMatt Dennis; Earl BrentMatt DinnisMatt-DenisMatt-DennisMattDennisMatthew DennisMatthew LovelandN. DennisR. DennisМ. ДеннисМ.ДеннисМэтт Дэнисマット・ デニスPaul Weston And His OrchestraHorace Heidt And His Orchestra + +437476Jon EardleyJon Eardleyb. September 30, 1928 - Altoona, Pennsylvania USA +d. April 1, 1991 - Lambermont (near Verviers), Belgium + +American jazz trumpet and flugelhorn player, also composer +Needs Votehttps://en.wikipedia.org/wiki/Jon_EardleyEardleyJ. EardleyJohn EardleyJohn EardlyJon EardlyTon EardleyGerry Mulligan QuartetWDR Big Band KölnGerry Mulligan And His SextetOrchester Harald BanterNDR-Jazz-Workshop-BandManfred Schoof OrchesterPhil Woods New Jazz QuintetMulligan ManiaHod O'Brien / Jon Eardley Quartet + +437684Joss BaselliJoseph Octave Basile né Giuseppe Ottaviano BasileFrench accordionist and composer, born 19 September 1926, died 5 September 1982. He married Josette Viseur, the daughter of [a=Gus Viseur].Needs Votehttps://www.vintagemusic.fm/es/artist/joss-baselli/BasellBaselliBasileBasseliBasselliBosellG. BaselliG. BasolliJ. BaseliJ. BasellJ. BaselliJ. BasseliJ. BasselliJ. DaselliJ.BaselliJo BaselliJo BasileJos BaselliJos BasselliJose BaselliJoseph BaselliJoseph BasileJoss BaseliJoss Baselli Et Son AccordéonJoss BasseliJoss BasselliJosse BaselliS. BaselliT. BaselliJo BasileClyde Borly Et Ses PercussionsJoss Baselli Et Son OrchestreJoss Baselli Et Son EnsembleJoss Baselli Au Vibraphone Et Ses SolistesJoss Baselli QuartetTrio CavagnoloJoss Baselli Et Son TrioClaudio Bonelli Ses Mandolines Et Son OrchestreJoss Baselli Et Ses CordesJoss Baselli Et Le Pop QuartetJoss Baselli Et L'Ensemble Des Violons De Paris + +438242Nelson WilliamsNelson WilliamsAmerican jazz trumpeter, born 26 September 1917 in Montgomery, Alabama, USA, died 20 November 1973 in Voorburg, The Netherlands. +Played with: Tiny Bradshaw, John Kirby, Billy Kyle, Duke Ellington and others. +Nickname: "Cadillac". + +Needs Votehttps://adp.library.ucsb.edu/names/362538Cadillac WilliamsN. WilliamsNWNelson "Cadillac" WilliamsNelson 'Cadillac' WilliamsNelson Cadillac WilliamsWilliamsDuke Ellington And His OrchestraJohnny Hodges And His OrchestraThe Nelson Williams QuartetThe Duke's TrumpetsNelson Williams And His RhythmsNelson Williams' All StarsDuo Nelson Williams / Fritz Trippel + +438270Karel IngelaereViolin player from Belgium (Brugge).Needs VoteK. IngelaereKarel IngelaerecKarel InpelaereLes Musiciens Du LouvreThe Hooverphonic String Orchestra + +438801Manfred BaierEast German classical oboist and hornistNeeds VoteManfred BayerManfred BeyerRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +438925John DrewJohn Derek DrewEnglish jazz bassist, born December 23, 1927 in Sheffield, England. +Drew emigrated to the USA in 1954, and worked with Les Elgart, Gene Krupa, Stan Getz, Neal Hefti, Nat Pierce, Barbara Carroll, Peggy Lee, Marian McPartland, Sauter-Finnegan Orchestra, Toshiko Akiyoshi and many others.Needs VoteDrewJohnny DrewGene Krupa And His OrchestraThe Gene Krupa QuartetToshiko And Her International Jazz Sextet + +439106Kai RautenbergKarl Heinz RautenbergGerman pianist and composer +Born 5 November 1939, Arnsberg, Germany - Died 28 May 2013 in Berlin, Germany. +In 1969 played as a pianist in the SFB dance orchestra under [a108343], switched to the RIAS dance orchestra in 1971 and has composed various soundtracks for films such as "Die Zwillinge vom Immenhof" and "Schmetterlinge weinen nicht" since the 1970s. +In the 1980s, accompanied singer [a55104] on the piano during several tours and also re-recorded the classic "Es wird Herbst da draußen" neu auf /"It’s getting autumn out there" with her and the trumpeter [a59748]. +As pianist and composer, worked with artists such as [a55104], [a433751] and [a397360]. + +Needs Votehttp://de.wikipedia.org/wiki/Kai_RautenbergK. RautenbergK.RautenbergKai RauthenbergKarl-Heinz RautenbergKay RautenbergRautenbergRIAS Big BandRIAS TanzorchesterSFB TanzorchesterOrchester Helmut BrandenburgDie Kai-Rautenberg-ComboKai Rautenberg-QuartettThe Kai Rautenberg OrganisationKai Rautenberg-TrioOliver Nelson And The "Berlin Dreamband"Berni's Swing FiveOrchester Kai RautenbergBanjo Live BookPeter Meyer's Ragtime SinfonikerLos Internacionales (9) + +439276Sergei Forster-HallSergei Forster-HallNeeds VoteC. Forster-HallC. Foster-HallCharles Forster HallCharles Forster-HallCharles Foster HallCharles Sergei Forster-HallForster-HallHallS HallS. F. HallS. Forester-HallS. HallS.HallSergei ForsterSergei HallSergei-Forster-HallSergei-Forster-Hall,Sergei HallProject MayhemFuture AddictionD&GThe Lost BrothersBig Tool 4 USunset StrippersMy Digital EnemyCult 45MDEBillionaireDroid Army + +439277Keiron McTernanKieron Sean McTernanNeeds VoteK McTernanK. McTernanK. McternanK.McTernanKieran McTernanKieron McTernanKieron McTernonMcTernanKieron McTernanK-MRKProject MayhemFuture AddictionD&GThe Lost BrothersBig Tool 4 USunset StrippersMy Digital EnemyCult 45MDEBillionaire + +439278Karim LamouriKarim LaamouriElectronic dance music DJ / producer from the UK +Styles: Hard House | NRG +Also manages record labels [l=Do Not Bend Recordings], [l=Tuff Trax] & [l=Unfknblvbl] Needs Votehttp://www.dj-karim.comhttp://soundcloud.com/do-not-bend-digitalhttp://www.dontstayin.com/members/karim-laamouriK. LamouriK.LamouriKarimKarim LaamouriLamouriKarimKevin MoorThe FrogRocco SiffrediDJ Mister K2 SlagsD.R. Base vs. KarimThe Captain & KarimRim 'N' Chop + +439662Frank LoesserFrank Henry LoesserAmerican songwriter. + +Born: 29 June 1910 in New York City, New York, USA. +Died: 26: July 1969 in New York City, New York, USA (aged 59). + +Frank Loesser has been called the most versatile of all Broadway composers. He wrote the lyrics to over 700 songs, wrote and composed the Pulitzer Prize winning musical "How To Succeed In Business Without Really Trying". He won the Tony Award in 1951 as Best Composer and Lyricist for the musical "Guys And Dolls" and won the Academy Award for "Best Song" for "Baby, It's Cold Outside". + +Inducted into the Songwriters Hall of Fame in 1970. +Needs Votehttp://www.frankloesser.comhttp://en.wikipedia.org/wiki/Frank_Loesserhttp://songwritershalloffame.org/exhibits/C230https://adp.library.ucsb.edu/names/103360ChesterE, LoesserE. LoesserF LoesserF, LoesserF. :LoesserF. FloesserF. LaesserF. LesserF. LoeeserF. LoeserF. LoessenF. LoesserF. LoessnerF. LoessorF. LoosserF. LosserF. LuesserF. LœsserF. R. LoesserF. ロイザーF.LoesserF.LöesserF.R. LoesserF; LoesserFormer Sgt. Frank LoesserFr. LesserFr. LoesserFranck LoesserFrank & LoesserFrank - LoesserFrank Henry LoesserFrank LasserFrank LeosserFrank LesserFrank LessorFrank LobsserFrank LoerserFrank LoeserFrank LoessehFrank Loesser'sFrank LoessnerFrank LoessorFrank LoesterFrank LooserFrank LosserFrank-LoesserFred LoesserL. LoesserLaresserLeesserLeisserLeosserLesserLoefferLoefflerLoeseLoeserLoesselLoesserLoesser F.Loesser, FrankLoessetLoesslerLoessnerLoeswserLoeverLoeweLoiesserLosserLousserLösserLœsserRank LoesserRosesserS. RollinsW. LoesserWith Apologies To Frank Loesserf. LoesserФ. ЛоссерФ. Лоусерלוסרפרנק לוסר + +439765Nathalie ChabotClassical violinistNeeds VoteOrchestre National De FranceTrio Bergamasque + +439767Claire MichèleClassical flautist and oboist.CorrectClaire MichelLes Arts FlorissantsLa Chapelle Royale + +439843Peter Maxwell DaviesSir Peter Maxwell Davies CH CBE (born 8 September 1934, Salford, Lancashire, England – died 14 March 2016, Hoy, Orkney Islands) was an English composer and conductor. In 2004 he was made Master of the Queen's Music.Needs Votehttps://en.wikipedia.org/wiki/Peter_Maxwell_Davieshttps://web.archive.org/web/20031002030840/http://www.maxopus.com/DaviesDirettoreM. DaviesMaxwell DaviesP. M. DaviesP. Maxwell DaviesP.M.D.Peter DaviesPeter M. DaviesPeter Maxwell-DaviesPeter Maxwell-DavisSir Peter Maxwell DaviesSir Peter Maxwell Davies CBESir Peters Maxwell DaviesRoyal Philharmonic OrchestraFires Of LondonThe Pierrot Players + +440245Kansas FieldsCarl Donnell FieldsAmerican jazz drummer, born 5 December 1915 in Chapman, Kansas, USA, died 3 August 1995 in Chicago, Illinois, USA. +Moved with family to Chicago at age 14, began playing professionally with Eddie Mullens in 1933. Later worked with [a=Roy Eldridge] 1940-1941, [a=Mel Powell] 1942, [a=Cab Calloway] 1945, [a=Claude Hopkins] 1946, [a=Sidney Bechet] 1947, 1949, [a=Dizzy Gillespie], and others. After a European tour with [a=Mezz Mezzrow] in 1953, he stayed in Europe, returning to Chicago in 1964.Needs Votehttps://en.wikipedia.org/wiki/Kansas_Fieldshttps://www.allmusic.com/artist/kansas-fields-mn0000364067https://adp.library.ucsb.edu/names/315290"Kansas" FieldsCarl "Kansas" FieldsCarl D. "Kansas" FieldsCarl Donnell "Kansas" FieldsCarl FieldsCarl “Kansas” FieldsFieldsK. FieldsKansas FieldKanzas Fieldsカンサス・フィールズDizzy Gillespie SextetMary Lou Williams TrioMezz Mezzrow And His OrchestraSam Price TrioJonah Jones And His CatsMel Powell And His Orchestra"Big Chief" Russell Moore And His OrchestraMezzrow-Saury QuintetSedric-Clayton SextetKansas Fields QuartetMezz Mezzrow-Buck Clayton Orchestra + +440246Murray ShipinskyJazz bassistNeeds VoteMurray ShapinskyMurray ShipinskiShipinskyDizzy Gillespie Sextet + +440250Coleridge GoodeColeridge George Emerson GoodeJamaican-born jazz bassist best known for his work in London with Joe Harriott and Michael Garrick. + +Born: November 29, 1914 in St. Andrew, Jamaica +Died: October 2, 2015 in London, EnglandNeeds VoteC. GoodeCleridge GoodeColdridge GoodColdridge GoodeColeridgeColeridge Goode [As George Goodwin]George GoodwinGoodeQuintette Du Hot Club De FranceThe Joe Harriott Double QuintetJoe Harriott QuintetThe Michael Garrick SextetMichael Garrick QuintetShake Keane QuintetJoe Harriott SextetJohn Scott's Koool Kats + +440316Zita CarnoZita CarnovskyAmerican classical keyboard instrumentalist. Born April 15, 1935, in New York, NY, USA; died December 7, 2023, in Tampa, FL, USA (aged 88).Needs Votehttps://www.feenotes.com/database/artists/carno-zita/Los Angeles Philharmonic Orchestra + +440483Jürgen PeterGerman organist, accordionist and composer +(These are probably two different people with the same name... one from East (GDR) and one from West Germany)Needs VoteJ. PeterJurgen PeterHemmann-QuintettMusette-Sound-Orchester Jürgen PeterHarmonika-Ensemble Jürgen PeterMünchener Bach-OrchesterHavelländer Musikanten Und Sänger + +440679Quin DavisQuinn Hall DavisAlto saxophonist and flutist, born March 12, 1944 in Artesia, California. +Davis toured and recorded with [a=Buddy Rich] in 1966-1967 and again in 1969-1970. From 1970 to 1973 he was solo alto saxophonist with [a=Stan Kenton], after which he played with [a=Harry James] 1973-1976.Needs VoteDavisQ. DavisQuinn DavisHarry James And His OrchestraStan Kenton And His OrchestraBuddy Rich Big BandHarry James And His Big Band + +440741Niels PijpersNiels PijpersCorrectArnoldsonN PijpersN. PiepersN. PijperN. PijpersN. PipersN.PijpersNiels PijperP. PijpersPijpersNilzMisdemeanourDC ChantLock 'N LoadGray-ScaleMass AppealUnited DJ's Of UtrechtGabi & NilsonGroove 'N Gear + +440749Georges CostaGeorges Philippe CostaVocalistNeeds Votehttps://danslombredesstudios.blogspot.com/2012/08/georges-et-michel-costa-musique-magique.htmlC. CostaCostaG, CostaG. CostaG.M. CostaGeorge CostaGeorgesGionata CostaG・コスタPhilippe George CostaTony KarapatLes CostaCosta Yared CostaGeorges Costa Et Son Orchestre + +440852Susan EvansOrchestral violinist and classically trained singer from London, UK, who has toured much of Europe, the far East, USA and Canada working with orchestras including BBC Symphony and Royal Philharmonic. + + [b](PLEASE do NOT use this profile page for the percussionist [a=Sue Evans]. Only use it for matching violin credit roles, referring to the orchestral musician from the UK.)[/b]Needs Votehttps://www.starnow.com/u/susanevans5/Royal Philharmonic Orchestra + +441147Alan PaulAlan Paul WichinskyAmerican vocalist and composer, born on 23 November 1949 in Newark, New Jersey, USA.Needs Votehttps://en.wikipedia.org/wiki/Alan_Paulhttps://www.feenotes.com/database/artists/paul-alan-23rd-november-1949-present/A. PaulA.PaulPaulThe Manhattan TransferGrease Broadway Cast + +441179Emory Gordy, Jr.Emory Lee Gordy Jr.Session musician (he began as bass guitarist in 1964), producer and songwriter (born December 25, 1944, in Atlanta, Georgia). Since 1989, he has been married to country music singer [a=Patty Loveless]. Among others, he toured and/or recorded with Neil Diamond, 1971; Elvis Presley, 1973; Emmylou Harris and her Hot Band, 1974–77; The Cherry Bombs, 1977–79 and 1981–82; John Denver, 1979–81; J.J. Cale on his 1980 album, Shades; he also worked as a session musician and producer for such artists as the Bellamy Brothers, Vince Gill, and Earl Thomas Conley.Needs Votehttp://www.elvispresleymusic.com.au/articles/tcb_band_emory_gordy.htmlhttp://en.wikipedia.org/wiki/Emory_Gordy,_Jr.Amory GordB. CordyB. GordyB. Gordy JnrCordyE. CordyE. GordieE. GordyE. Gordy JrE. Gordy Jr.E. Gordy, JrE. Gordy, Jr.E. Gordy, jr.E.GordyE.Gordy, Jr.Emary GordyEmary Gordy, JrEmery GodyEmery GordyEmery Gordy Jr.Emery Gordy, Jr.Emoru GordyEmoryEmory GordyEmory Gordy JR.Emory Gordy JnrEmory Gordy Jnr.Emory Gordy JrEmory Gordy Jr.Emory Gordy,Jr.Emory L. Gordy Jr.Emory L. Gordy, Jr.Emory L. Gordy., Jr.Emory gordyGardyGordyGordy Jnr.Gordy Jr.Gordy, Jr.J. GordyFantom Of The OpryThe Hot BandThe TCB BandSt John & The CardinalsThe Notorious Cherry BombsHere Today (3)The Kommotions + +441313Elisabeth HarrisonClassical soprano vocalistCorrectLondon Voices + +441315Judith ReesSoprano vocalist.Correct1st MaidJudy ReesElectric PhoenixLondon Voices + +441316Gareth RobertsWelsh tenor vocalist.Needs VoteThe Ambrosian SingersThe English Chorale + +441318Geoffrey ShawBass / Baritone vocalist and choir conductor.Needs VoteThe Academy Of Ancient MusicThe Purcell Consort Of VoicesThe London Early Music Group + +441319Lesley ReidMezzo-soprano vocalist.CorrectLondon Voices + +441322Terry Edwards (2)Terry EdwardsEnglish chorus master, born: May 25, 1939 - North London, England, died September 2, 2022. +Founder and director of [a=London Voices]. Also has been involved with [a1510591]. +Also credited as chorus master in operas.Correcthttps://www.bach-cantatas.com/Bio/Edwards-Terry.htmhttps://www.imdb.com/name/nm0250399/1st CockneyHarryT. EdwardsElectric PhoenixLondon VoicesThe English Chamber ChoirSchütz Consort + +441324Simon Davies (3)Classical tenor.Needs Votehttps://www.bach-cantatas.com/Bio/Davies-Simon.htmGabrieli ConsortMetro VoicesThe Cambridge SingersNew London ConsortLondon VoicesThe Tallis ScholarsLa Chapelle RoyaleThe Monteverdi ChoirThe English Concert ChoirMartin Best ConsortSeicento + +441367Johan van BeekJohan van BeekLeft Techno / Hardcore group Human Resource in 1992.Needs VoteBeekJ . van BeekJ Van BeekJ van BeekJ'Van BeekJ. V. BeekJ. Vaan BeekJ. Van BeekJ. VerbeekJ. v. BeekJ. van BeckJ. van BeekJ.V.BeekJ.Van BeekJ.v.BeekJ.van BeekJerry Van BeekJerry van BeekJoe Van BeekJoe van BeekJohan F Johannes Van BeekJohan V BeekJohan V. BeekJohan V.BeekJohan v BeekJohan van Beek as Human ResourceJohan. V. BeekJonan V. BeekVan BeekVan Beek, J.Van Beek, JohanVanbeekVerbeekvan BeekLoudness (2)Human ResourceThe Point (2)Niso OmegaInterrupt (3) + +441469Pascal PonsFrench percussionist, born 1968 in Nice.Needs Votehttps://en.wikipedia.org/wiki/Pascal_PonsEnsemble ModernEnsemble SurPlusEnsemble Modern Orchestra + +441528John McCarthyEugene Patrick John McCarthy OBEBritish chorus master, scholar, composer and arranger, b. 1919 d. 2009. Co-founder with [a1548002] in 1951 of the [a39874]. In the 1960s, when he was chorus master of the London Symphony Orchestra, was known as the London Symphony Orchestra Chorus (not to be confused with the [a839085]). +[b]For the Australian jazz clarinet player, please use [a=John McCarthy (13)] [/b]Needs Votehttps://www.theguardian.com/music/2009/jul/16/obituary-john-mccarthyhttps://en.wikipedia.org/wiki/John_McCarthy_(conductor)ConductorGardelliJ. A. McCarthyJ. McCarthyJohn CarthyJohn Mac CarthyJohn MacCarthyJohn Mc CarthyJohn McArtheyJohn McCartheyJohn McCarthy And His OrchestraJohn McCarthy ChorusJohn McCarthy Chorus And OrchestraJohn McCarthy O.B.E.John McCarthy ObeJohn McCartyMaccarthyMc CarthyMcCarthyThe John McCarthy ChorusДжон Мак-КартиДжон Маккартиジョン・マッカーシーThe Ambrosian SingersThe Ambrosian Opera ChorusJohn McCarthy ChorusThe John McCarthy Men's ChorusThe John McCarthy SingersThe John McCarthy ChoirJohn McCarthy And His Orchestra + +441634Julia Tillman WatersJulia Ardelia Waters Tillman née Waters American R&B / pop / rock singer, born 8 June 1943 in Texas. Sibling of [a=Maxine Willard Waters], [a=Luther Waters] and [a=Oren Waters]. +[b]NOTE: This artist has several aliases. Please choose the one closest to the credit printed on your release.[/b] + +One of the most famous backing vocalists in the 70s & 80s soul scene. +Needs Votehttps://myspace.com/juliatillman-watershttps://web.archive.org/web/20230607092221/http://thewatersjuliamaxinelutheroren.com/J. Tillman WatersJuliaJulia Waters TillmanJulia (Tillman) WatersJulia A. TillmanJulia T. WatersJulia TillmaJulia TillmanJulia Tillman "Waters"Julia Tillman 'Waters'Julia Tillman (Waters)Julia Tillman - WatersJulia Tillman WaterJulia Tillman-WatersJulia Tillmard WatersJulia Tillmen WatersJulia TilmanJulia Tilman WatersJulia Water TillmanJulia Waters - TillmanJulia Waters A TillmanJulia Waters TillmanJulia Waters TilmanJulia Waters, A TillmanJulia Waters-TillmanJulia Waters/TillmanJulia WatersTillmanJulian Tillman WatersJulie TillmanJulie Tillman 'Waters'Julie Tillman WatersJulie Tillman-WatersJulie Waters TillmanJulie Waters-TillmanJulie Waters-Tilmanジュリア・ティルマン・ウォーターズJulia WatersJulia TillmanArdie TillmanThe WatersThe Waters SistersRock FlowersThe Goldman GirlsThe Brothers & Sisters (2)The DarlingsThe DynelsSugar (55) + +441641Doug RhoneRaymond Douglas RhoneAmerican guitarist and songwriter who worked mainly as touring and studio musician.Needs VoteD. RhoneD. RohneD.RhoneDoug RoahneDoug RohneR. RhoneRhoneMouse & The TrapsGladstone + +441793Hubert RostaingHubert-Louis RostaingBorn : September 17, 1918 in Lyon, France. +Died : June 10, 1990 in Paris, France. +Clarinet and saxophone jazz player, Hubert left Algiers for Paris in 1939, where he met [a=Django Reinhardt]. +He also recorded as a leader during 1940-50, then spent most of his later years composing film scores, playing classical music and made some arrangements in pop music. +Needs Votehttps://en.wikipedia.org/wiki/Hubert_Rostainghttps://adp.library.ucsb.edu/names/356879H RostaingH. RosatingH. RostaingH. RoustantHubert MoustaingHubert RostaignHubert RostainHubert RostandHubert RostangHubert de RostaingJoe KalamazooLe RostaingRostaingユーベル・ロスタンJean-Michel RiffDick Rasurell Et Ses BerluronsEarl CadillacJoe KalamazooSonny Scott (2)Quintette Du Hot Club De FranceKenny Clarke's SextetEddie Barclay Et Son OrchestreHenri Crolla Sa Guitare Et Son EnsembleLe Jazz Groupe De ParisLe Quintette FrançaisAndré Ekyan Et Son EnsembleDjango's MusicFestival SwingBob Castella Et Son OrchestreChristian Wagner Et Son OrchestreHubert Rostaing - Aimé Barelli Et Leur OrchestreHubert Rostaing Et Son OrchestrePierre Allier Et Son OrchestreLouis Richardet Et Son EnsembleRex Stewart QuintetJerry Mengo Et Son OrchestreAlex Renard Et Son OrchestreHubert Rostaing Et Son SextetteTrio De Saxophones Alix CombelleTyree Glenn & His OrchestraLes Amis De DjangoDick Rasurell Et Ses BerluronsChico Cristobal And His Boogie-Woogie BoysMartial Solal Big BandHubert Rostaing Et Sa Formation JazzEarl Cadillac Et Son OrchestreCharles Hary Et Son OrchestreJam Session N° 5All Star Français 1950Hubert Rostaing TrioHubert Rostaing Et Sa Jam SessionSonny Scott Et Son OrchestreJerry Mengo Et Ses Solistes Du Jazz De ParisLes 3 Du RythmeChristian Chevallier TentetJerry Mengo SextetSonny Scott Et Son SextetSonny Scott's Madison-BandBlue Star Swing Band + +441899John Davies (4)British classical violinist (initially) and violist, worked in London during the 1960s and 1970s. +Former member of the [a=London Symphony Orchestra] (1957-1963).Needs VoteJ. DaviesJ. DavisJohn DavisJohn G. DavisLondon Symphony OrchestraLondon Philharmonic OrchestraSinfonia Of LondonThe Gordon Rose OrchestraKen Moule & His Radio Orchestra + +441901Jeff WakefieldJeffrey WakefieldBritish classical violinist. +Former member of the [a=London Symphony Orchestra] (1953-1962).Needs VoteGeoff WakefieldJeff WakerfieldJeffrey WakefieldLondon Symphony OrchestraBBC Symphony OrchestraThe Chitinous EnsembleRoyal Philharmonic Orchestra + +441904David NolanBritish classical violinist, orchestra leader (concertmaster), and violin teacher. Born in 1949 in Liverpool, England, UK. +He studied at the [l459222]. Former Principal Second Violin with the [a=London Symphony Orchestra] (1974-1976). He has served as concertmaster of the [a=London Philharmonic Orchestra] (1976-1992, joined in 1972), the [a=Orchestra Of The Royal Opera House, Covent Garden], the [a=Philharmonia Orchestra], and the [a=Bournemouth Symphony Orchestra] (1997). Former Leader of the [b]Rehearsal Orchestra[/b]. In 1999, he became Solo Concertmaster of the [a=Yomiuri Nippon Symphony Orchestra]. He has taught at the [l527847] and the [l360834].Needs Votehttps://open.spotify.com/artist/0pzLJZmxecFjyANidkfEK0https://music.apple.com/fm/artist/david-nolan/5915185https://medartconcert.wordpress.com/testimonial/david-nolan-concertmaster/https://books.google.se/books?id=ez1JfIVM4ykC&pg=PA471&lpg=PA471&dq=david+nolan+violin+yomiuri+nippon+symphony+orchestra&source=bl&ots=-J9r80p5iO&sig=ACfU3U0JQ06JKLnmUVujfdC0z9mnHKoANg&hl=en&sa=X&ved=2ahUKEwiesKfo7dv1AhXtSfEDHTaOByMQ6AF6BAgeEAM#v=onepage&q=david%20nolan%20violin%20yomiuri%20nippon%20symphony%20orchestra&f=falseD. NolanDave NolanLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraBournemouth Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenYomiuri Nippon Symphony OrchestraThe Astarte Session OrchestraThe Philharmonia Soloists + +441908Robin FirmanRobin Michael FirmanClassical cellist. +Former member of the [a=London Symphony Orchestra] (1968-1970).Needs Votehttps://www.metal-archives.com/artists/Robin_Firman/890939https://www.imdb.com/name/nm10363688/https://www2.bfi.org.uk/films-tv-people/4ce2bcd6e84efR. FirmanR. FirminRob FirmanRobert FirminRobin FirminLondon Symphony OrchestraThe Armada OrchestraDick Bakker Orchestra (2)Ken Moule & His Radio Orchestra + +441910Charles NolanCharles NolanViolinist.Needs VoteC. NolanCharles B NolanCharles B. NolanCharles LolanRoyal Philharmonic OrchestraThe Kingsway Symphony Orchestra + +441921John CoullingViolist. Needs VoteJ. CoullingBBC Symphony Orchestra + +441922Kevin DuffyKevin DuffyViolinist.Needs VoteK. DuffyRoyal Philharmonic OrchestraThe Kingsway Symphony Orchestra + +441924John WillisonViolinist.Needs VoteJ. WillisonJohn WilliamsJohn WilsonEnglish Chamber OrchestraThe Academy Of Ancient MusicLondon Classical PlayersThe Starcoast OrchestraThe English Concert + +441925Peter WillisonClassical cellist and contractor. +Former member of the [a=London Symphony Orchestra] (1962-1965). Executive Director of [a=Sinfonia Of London].Needs Votehttps://open.spotify.com/artist/785K8j1UL5OG52v7Aoemoghttps://music.apple.com/us/artist/peter-willison/29362234https://www.naxos.com/Bio/Person/Peter_Willison/38383P. WillisonP.WillisonPete WillisonPeter Willison & His Sinfonia StringsPeter Willison And His Sinfonia StringsPeter WilsonWillison P.Willison. PLondon Symphony OrchestraSinfonia Of LondonMichaelangelo Chamber OrchestraQuartet Of London + +441940Matthew VineTenor vocalist, pianist, composer.Needs Votehttp://www.matthewvine.eu/https://www.bach-cantatas.com/Bio/Vine-Matthew.htmJeremy VineGabrieli ConsortOxford CamerataThe Choir Of The King's ConsortLondon VoicesThe SixteenHuelgas-EnsembleThe Binchois ConsortThe English Concert ChoirThe Choir Of Christ Church CathedralThe Clerks' GroupMartin Best ConsortArmonico Consort + +441949Susan BradshawSusan Mary BradshawWelsh pianist, harpsichordist, teacher and writer +Born: 8th September 1931, Monmouth, Monmouthshire, Wales. +Died: 30th January 2005 London, England.Needs Votehttps://www.independent.co.uk/news/obituaries/susan-bradshaw-489057.htmlhttps://en.wikipedia.org/wiki/Susan_BradshawThe Academy Of St. Martin-in-the-FieldsThe Mabillon Trio + +442021Kathy KienzleAmerican harpist.CorrectMinnesota Orchestra + +442174Gioacchino RossiniGioachino Antonio RossiniItalian composer, born 1792-02-29 in Pesaro, Italy, died 1868-11-13 in Passy, Paris, France, who gained fame for his 39 operas, although he also wrote many songs, some chamber music and piano pieces, and some sacred music. +He set new standards for both comic and serious opera before retiring from large-scale composition while still in his thirties, at the height of his popularity.Needs Votehttps://www.fondazionerossini.com/https://en.wikipedia.org/wiki/Gioachino_Rossinihttps://www.klassika.info/Komponisten/Rossini/index.htmlhttps://www.britannica.com/biography/Gioachino-Rossinihttps://www.treccani.it/enciclopedia/gioacchino-rossini/https://adp.library.ucsb.edu/names/102419https://www.allmusic.com/artist/gioachino-rossini-mn0000678420After RossiniAntonio Gioacchino RossiniAntonio RossiniD. RosiniD. RossiniDj. RosiniDž. RosiniDž. RosinisG A RossiniG RossiniG. A. RossiniG. RosiniG. RossiiniG. RossineG. RossiniG. RossinisG.A. RossiniG.A.RossiniG.RossiniGeoachinno RossiniGiacchino RossiniGiaccomo RossiniGiachino RossiniGiacino RossiniGiacommo RossiniGiacomo RossiniGiaocchino RossiniGiaquino RossiniGiardino RossigniGioacchimo RossiniGioacchini RossiniGioacchino Antonio RossiniGioacchino A. RossiniGioacchino Antonio RossiniGioacchino-Antonio RossiniGioacchio RossiniGioacchiono RossiniGioaccino RossiniGioachimo Antonio RossiniGioachino Antonio RossiniGioachino RossiniGiocchino RossiniGoachino RossiniJ. RocciniJ. RossiniJoaquin RossiniJoaquín RossiniMtro. RossiniNossimROSSINIRissiniRocciniRosiniRosinisRossiRossi niRossinIRossiniRossini G.Rossini GioacchinoRossini, G.Rossini, GioacchinoRossini, GiocchinoRossiniegoRossininiRossinniRossoniRossınıTostiTutto RossinirossiniĐ. RosiniĐoakino RosiniΡοσίνιΤζοακίνο ΡοσίνιЂ. РосиниЂоакино РосиниЏ. РосиниЏоакино РосиниГ. РосиниД. РосиниД. РоссиниД.РоссиниДж, РоссиниДж. РосиниДж. РоссiнiДж. РоссиниДж. РоссініДж.РоссиниДжоакино Антонио РосиниДжоакино РосиниДжоакино РоссиниДжоаккино РоссиниРосиниРоссиниРоссини ДжоаккиноРоссініジョアキーノ・ロッシーニジョアッキーノ・ロッシーニロッシーニ羅西尼 + +442220Philip LarsonClassical vocalist.Needs VotePhil LarsonPhilip LarsenPhillip LarsonPomeriumThe Ineluctable ModalityExtended Vocal Techniques Ensemble + +442236Michel de VillersMichel De Villers De Montauge.French jazz saxophonist (alto & baritone) player. + +Born : July 13, 1926 in Villeneuve-sur-Lot, France. +Died : October 25, 1992 in Rouen, France. + +Michel de Villers was one of the most influential French reed players in modern jazz, known by most of his fellow musicians by his nickname: “Low reed.” From a very young age, de Villers excelled on alto sax and clarinet. After gaining the attention of fans and musicians as an amateur, he was hired by Django in 1946. Shortly afterwards he began recording as a leader, improvising with cohesive drive and swinging passion (...). Looking to achieve a more modern sound, he adopted the baritone as his main instrument in 1949 (...). His skill as a soloist and improviser put him among the best European baritonists when Jazz-Hot awarded him from 1950 onwards first place in their annual readers’ poll. This in turn, led to calls from American jazzmen who were on their way through Paris, such as Buck Clayton, Jonah Jones, Bill Coleman, Lucky Thompson, and even vocalist Jimmie Davis. His fame spread to the United States when in 1956 he was voted one of the best new baritone players by the Down Beat international critics’ poll. In the spring of 1957, without abandoning the baritone, he took his alto saxophone again, to play in the boppish style of Parker-Sonny Stitt (...). +In addition to his work as a musician, Michel de Villers was also a savy reviewer and longtime collaborator of Jazz Hot, writing answers for the section “Courrier des lecteurs.” In the late 1950s, he began a new career as a disc jockey with two radio shows.Needs VoteLow RedLow ReedLow Reed (aka Michel de Villers)M. De VillersM. DevillersM. de VillersMichel De VillersMichel De VilliersMichel DevillersMichel DevilliersMichel de Villiersde VillersQuintette Du Hot Club De FranceJack Diéval Et Le J.A.C.E. All-StarsDjango's MusicDjango Reinhardt Et Son QuintetteJean-Claude Pelletier Et Son OrchestreBernard Zacharias Et Ses SolistesDjango Reinhardt Et Son Orchestre Du Boeuf Sur Le ToitMichel De Villers Et Son OrchestreDick Rasurell Et Ses BerluronsJazz O'ManiacsSeptuor Jack DiévalAndré Persiany Et Son OrchestreMichel De Villers Et Son QuintetteHubert Fol & His Be-Bop MinstrelsAll Star Français 1950Gérard Pochonet All StarsJazzmen Dance TrioMichel de Villers SwingtetMichel De Villers And CoAndré Persiany QuintetBuck Clayton And His French StarsGéo Daly Et Son Orchestre De La "Rose Rouge" + +442961Richard GatermannGerman baritone, born in Hamburg, + 1991 +Started as a member of [a=Das Roland-Trio], inital with the alias Hanno Horn. +1959 member of the Axel-Horn-Quartett +Later he performed with Die Riverboys, Gatermann-Duo (with Rolf Simson)Needs VoteGatermannR. GatermannR. GaterrannRichard GatermanRichard Gatermann, Coro Y OrquestaFred GatermannDie TeddiesChor der Bayreuther FestspieleDas Roland-Golgowsky-QuartettTom & TommyDas Roland-TrioDie TrampsDie Rixdorfer SängerDie Fröhlichen WandererDie OctaviosDie River-BoysDie Weißen MäuseDie Fröhliche RundeDie Riverboys + +442985Buford OliverJazz drummerNeeds VoteB OliverB. OliverO. BufordOliverBilly Taylor TrioDon Byas QuartetDon Redman And His OrchestraDon Byas And His OrchestraTyree Glenn & His OrchestraDon Byas Ree-Boppers + +442986Bernard PeifferFrench jazz pianist, composer and teacher, born 23 October 1922 in Epinal, France, died 7 September 1976 in Philadelphia, Pa. +Played with Django Reinhardt and others, recorded in Basel with Rex Stewart in 1948 and in Paris with Bill Coleman, Don Byas a.o. in 1949. Moved to the USA in 1954, settled in Philadelphia, working mainly in clubs there.Needs Votehttps://adp.library.ucsb.edu/names/336982B. PeifferBernard PfeifferPeifferБ. Пейфферベルナール・ペイフェーDon Byas QuartetJames Moody QuintetThe Bernard Peiffer TrioDany Kane Et Son EnsembleBernard Peiffer And His Saint-Germain-des-Prés OrchestraDany Kane QuartetThe Be-Bop MinstrelsChico Cristobal And His Boogie-Woogie BoysDon Byas Big FourGeo Daly Et Son QuartetDany Kane Et Son OrchestreHubert Fol & His Be-Bop MinstrelsJames Moody - Don Byas QuartetQuartette Armand MolinettiBill Coleman/Don Byas Quintet + +442987Vernon BiddleAmerican jazz pianist + +Vernon Diddle a.o. – the name is a pseudonym for the pianist Hank Jones or Will Davis (2) on Savoy Records.Needs VoteV. BiddleVernon BittleVernon DiddleHoward McGhee SextetHoward McGhee And His Orchestra + +442988Howard McGhee SextetCorrectDas Howard McGhee SextetDas Howard McGhee SextettHoward Mac Ghee SextetHoward Mc Ghee SextetHoward McGhee & His SextetteHoward McGhee's Be-BoppersHoward McGhee's BirdsMcGhee SextetThe Howard McGhee SextetFrank WessJames MoodyMilt JacksonCharlie RousePercy HeathJimmy HeathHank JonesHoward McGheeSpecs WrightJ.C. HeardJesse Powell (2)Lisle AtkinsonVernon BiddleJual Curtis + +442989Lucien SimoensLucien SimoënsFrench jazz bassistNeeds Votehttps://adp.library.ucsb.edu/names/114544L. SimoensL. SimoënsLucian SimoensLucien SimeonsLucien SimmoensLucien SimoansLucien SimoënsSimoensJack Dieval Et Son QuartettQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreJames Moody QuintetEddie Barclay Et Son OrchestreDon Byas And His OrchestraChristian Bellest Et Son OrchestreDjango's MusicNoel Chiboust Et Son OrchestreChristian Wagner Et Son OrchestreBill Coleman & His OrchestraDon Byas QuintetLéo Chauliac Et Son EnsembleHarry Cooper Et Son OrchestreAndré Ekyan Et Son Orchestre JazzSarane Ferret Et Le Swing Quintette De ParisChico Cristobal And His Boogie-Woogie BoysChristian Di Maccio Et Ses MusiciensCharles Hary Et Son OrchestreYvonne Blanc Et Son Trio RythmiqueQuintette Rythmique De ParisClaude Laurence Et Son OrchestreArmand Molinetti Et Son OrchestreOrchestre Ray BinderBlue Star Swing Band + +443120Stuart BatsfordUK based consultant musicologist, artist manager / label owner & retail and product consultant. He has worked for Virgin, Edsel, PIAS and Warner Music.Needs Votehttps://www.linkedin.com/in/stuart-batsford-2214821/ + +443259John RutterBritish composer, conductor, music arranger and record producer, mainly of religious choral and classical music. Born September 24, 1945 in London. +For the UK electronic music artist please see [a=John Rutter (2)] +For the photographer please see [a=Johnnie Rutter]Needs Votehttps://johnrutter.com/https://en.wikipedia.org/wiki/John_RutterDž. RatersJ RutterJ. RutterJ.M. RutterJ.R.J.RutterJohn Milford RutherJohn Milford RutterJohn RupperL. RutterRutterSir John RutterラターOrkest o.l.v. John Rutter + +443319Jim AtlasJames R. Atlas.American jazz bass player. + +Born : 1936 - . +Died : April 10, 1994 in Chicago, Illinois. +Needs Votehttps://www.chicagotribune.com/news/ct-xpm-1994-04-13-9404130159-story.htmlJames AtlasJim AltasJim AtlassThe Dukes Of DixielandThe Jimmy Giuffre TrioLes Hooper Big BandMal Waldron's All StarsThe Bob Stone Big Band + +443694Frank Gallagher (2)Jazz BassistNeeds VoteFrank GallaguerWoody Herman And His OrchestraWoody Herman And His Third HerdThe Wayland QuartetNat Pierce ComboCharlie Mariano Octet + +444032D. CowlingCorrectD CowlingD.CowlingSmokin' Bert Cooper + +444033Alec MillinerAlec MillinerNeeds Votehttps://www.facebook.com/alec.milliner"Magic" Alec MillinerA MillinerA. MilinerA. MillerA. MillinerA. MillnerA.MillinerA.MillnerH. MillinerMagic AlecMillinerMagic AlecMcBain & MendozaFallout BoyFBPOne Eyed JackFlying ScotsmanChester DrawersHinksResonance (18)The MAGIC MANManhattanSmokin' Bert CooperKarovaCimmeraMoonrunnersFat LarryLastmanstandingCapital CollectiveIntastella (2)Framewerk + +444097Carol LombardCarol Lee Lombard AfarianAmerican Vocalist. For the American actress please use [a=Carole Lombard (2)]. +Born: December 25, 1931, Detroit, Michigan Died: March 12, 2018 Los Angeles, California. +Carol was a member of the Skylarks, who appeared regularly on the Dinah Shore show in addition to performing and releasing albums. Carol was inducted into The Vocal Group Hall of Fame in 2001, as a member of The Skylarks. She also worked on many TV variety shows during the sixties and seventies, such as Carol Burnett, Sonny and Cher, The Danny Kaye Show and Mama's Family. +She established the Sherman Oaks Community Children's Chorus, and "The Carol Lombard Kids" – a professional children's chorus that was actively working in commercials, television and film scoring for the next 35 years. +She did backing vocals on Sam Cooke's "Shake". She toured and sang as part of "The 16 Singers" on Ray Conniff's Concert in Stereo in April of 1960. She was a backup singer on "The Ray Conniff Christmas Show" on December 20, 1965.Needs Votehttps://www.imdb.com/name/nm0518294/bio?ref_=nm_ov_bio_smCarol Lee LombardCarol Lombard AfarianThe Carole Lombard TrioCarole LombardCarole Lombard QuartetHollywood Film ChoraleThe SkylarksCarol Lombard TrioThe Carol Lombard Children's ChoirThe Sally Stevens Singers + +444254Bob WhitlockVon Varlynn WhitlockAmerican west coast jazz bassist; born January 21, 1931 in Roosevelt, Utah, died June 29, 2015, Long Beach California, age 84Needs VoteB. WhitlockBobby WhitlockBobby WitlockVon (Bob) WhitlockChet Baker QuartetStan Getz QuartetGerry Mulligan QuartetArt Pepper QuartetWarne Marsh QuartetJack Sheldon Quintet + +444293Dominique PoulainDominique BonnevayFrench backing vocalist, born on October 24, 1949. Sister of [a1698331].Needs VoteD. PoulainDominiqueDominique BonnevayCocktail ChicLes FléchettesLes OP'4Chance (19) + +444386Nick GarrettBritish bass vocalistNeeds VoteNicholas GarrettNicholas Garrett*Nicholas garretThe Swingle SingersAmici ForeverLondon VoicesTenebrae (10) + +444527Larry Hall (2)American jazz trombonist.Needs VoteHallPfc Larry HallPfc. Larry HallPvt. Larry HallTommy Dorsey And His OrchestraGlenn Miller And The Army Air Force BandThe Army Air Force Band + +444528Paul RovèreFrench jazz bassistNeeds VoteP. RovereP. RovèrePaul RoverPaul RoverePaul RoversJack Diéval Et Le J.A.C.E. All-StarsLionel Hampton And His SextetClyde Borly Et Ses PercussionsStuff Smith QuartetRené Urtreger TrioArmand Migiani All StarsTanzorchester Des Schweizer-RadiosAlain Goraguer And His TrioThe Rainbow-OrchestraMichel Hausser QuartetGuy Lafitte Et Son QuartetteJean-Pierre Sasson TrioMichel de Villers SextetAndré Dedjean Et Son QuintetAlbert Nicholas Et Son QuartetteGuy Boyer Et Son QuartetteChristian Garros Et Sa Section Rythmique + +444585Billy WalkerWilliam Marvin Walker American country singer and guitarist. +[b]For session guitarist and producer, see [a=Billy Joe Walker Jr.][/b]. + +Born January 14, 1929 in Ralls, Texas. Died May 21, 2006 in Fort Deposit, Alabama. +Best-known for his 1962 hit [i](I'd Like To Be In) Charlie's Shoes[/i]. He was nicknamed The Tall Texan, Walker had more than 30 charted records during a nearly 60-year career; and was a longtime member of the Grand Ole Opry. Walker died, along with his wife, when the van he was driving back to Nashville after a performance in Foley, Alabama veered off Interstate 65 in Fort Deposit and overturned.Needs Votehttp://www.cmt.com/artists/az/walker_billy/artist.jhtmlhttp://en.wikipedia.org/wiki/Billy_Walker_(musician)http://tjscountry.forumotion.com/t773-billy-walker-discography-78-albums-95cd-s?highlight=Billy+WalkerB. WalkerB. WilderBill WalkerBillie WalkerBillyBilly Walker (Tall Texan)Billy Walker (The Travelin' Texan)C. WalkerW. P. WalkerW. WalkerWalkerTravelin' Texans + +444606Gérard SouzayGérard Marcel TisserandFrench operatic baritone. He was born 8 December 1918 in Angers, France and died 17 August 2004 in Antibes, France.Correcthttps://en.wikipedia.org/wiki/G%C3%A9rard_SouzayG. SouzayGerard SouzayGérard SousaySouzaySouzay...ジェラール・スゼー + +445306Nina StemmeNina Maria StemmeSwedish operatic soprano and hovsångare (royal court singer), born 11 May 1963 in Västerleds parish, Stockholm. + +Stemme is regarded by today's opera fans as our era's greatest Wagnerian soprano. In 2010, Michael Kimmelman wrote of one of Stemme's performances in Richard Wagner's opera Die Walküre, "As for Brünnhilde, Nina Stemme sang gloriously. It's hard to recall anyone's sounding more commanding or at ease in the part, and that includes Kirsten Flagstad".Needs Votehttp://ninastemme.com/https://sv.wikipedia.org/wiki/Nina_Stemmehttps://en.wikipedia.org/wiki/Nina_StemmeN. StemmeNSStemme + +445665Alan HackerAlan Ray HackerEnglish clarinettist and professor of the Royal Academy of Music. He was born 30 September 1938 and died 16 April 2012. In 1966, a thrombosis on his spinal column caused permanent paraplegia. +Commander (CBE) - Order of the British Empire. +Nephew of [a=Jack Brymer]. +Needs Votehttps://en.wikipedia.org/w/index.php?title=Alan_Hacker&oldid=1114631787A. HackerAllan HackerHackerFires Of LondonMelos Ensemble Of LondonThe Pierrot PlayersThe Music Party + +445798Martin NearyMartin NearyBritish engineer, remixer and producer. Has worked at [l=PWL Studios], founded [l=Park Music Productions]. +[b]For the organist and conductor use [a=Martin Neary (2)].[/b]Needs Votehttps://instagram.com/martin_neary_?utm_medium=copy_link"The Deuces" Martin Neary''The Deuces'' - Martin NearyM. NearyM.NearyMartinMartin "Nobby"Martin "Nobby" NearyMartin 'Nobby' NearyMartin (Nobby) NearyNeary“The Deuces” Martin HearyNobbyBig Boss StylusNobby Neary PressureDancing DivazSinister (2)Nu-RenegadesBagheadsNorthstarzProject EdenNeon 8LifestylerzPiano PiratesNorthern HeightzThe Good Girls (2)Aftermath (5)TFPDeuce (9)The Filthy 3Grands Et Sheveleux + +445911Joseph KosmaJózsef KozmaJoseph Kosma (born October 22, 1905 in Budapest, Hungary - died August 7, 1969 in La Roche-Guyon) was a Hungarian-French composer, of Jewish background. + +He emigrated to Paris in 1933, after studying five years in Berlin. There he met [a=Jacques Prévert], with whom he wrote around 80 songs. Kosma met Marcel Carné through Prévert and during the Occupation of France (World War II) he worked for him. + +He is probably most known for the song "Les feuilles mortes" ("Autumn Leaves"). The piece was originally meant for an opera, but Kosma and Prevért convinced Carné to turn into a film: "Les portes de la nuit" (1946). The lyrics were originally written by Prévert, the English lyrics were written by [a=Johnny Mercer]. + +After the war, Kosma wrote scores to numerous films, and he continued writing music for films until his death. In his last years, he also composed two operas "Les Hussards" and "Les Canuts". + +Married twice; first time with the pianist Lilly Appel then to [a5063288]. + +Related to conductor [a=Georg Solti].Needs Votehttps://en.wikipedia.org/wiki/Joseph_Kosmahttps://www.naxos.com/person/Joseph_Kosma_22799/22799.htmhttps://www.imdb.com/name/nm0006158/https://adp.library.ucsb.edu/names/322793A. KosmaB. KosmaCosinaCosmaCosmoD. KozmaDž. KozmaEdward KosmaG. KosmaH. KosmaI. KosmaJ KosmaJ KozmaJ. CosmJ. CosmaJ. CosmoJ. KasmaJ. KasmanJ. KoSmaJ. KosmaJ. Kosma,J. KosmanJ. KosmarJ. KosmoJ. KosnaJ. KozmaJ. P. CosmaJ. ΚosmaJ. フスコJ.CosmaJ.KosmaJ.KusmaJacques KosmaJos. KosmaJos.KosmaJosef CosmaJosef KosmaJoseh KosmaJosep KosmanJoseph CosmaJoseph KasmaJoseph KosmalJoseph KosmanJoseph KosmasJoseph KosnoJoseph KosuaJoseph KozmaJozef KosmaJózef KozmaKasmaKatsmaKazmaKoamaKornaKosaKosmKosmaKosma JKosmanKosmarKosmeKosmerKosmoKosnaKostmaKozimaKozmaKozma J.Kozma JosephKozma JózsefKozmanKoznaKusmaRosmaT. KosmaTibor KozmaV. CosmaV. KosmaV.CosmaV.KosmaVladimir CosmaW. KosmasWladimir CosmaZ. KosmaŽ. KozmaЏозеф КозмаЖ. КосмаЖ.КосмаЖозеф КосмаКосмаШ. Космаコスマコズマジョセフ・コスマGeorges Mouqué + +446042Pierre FouadPierre Fouad was a French jazz drummer.Needs Votehttps://de.wikipedia.org/wiki/Pierre_Fouadhttps://adp.library.ucsb.edu/names/363068P. FouadPierre FuoadQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreEddie Barclay Et Son OrchestreLe Quintette FrançaisAndré Ekyan Et Son EnsembleDjango's MusicFestival SwingNoel Chiboust Et Son OrchestreChristian Wagner Et Son OrchestreHubert Rostaing - Aimé Barelli Et Leur OrchestreHubert Rostaing Et Son OrchestrePierre Allier Et Son OrchestreLe Quartette Swing Emile CarraraDjango Reinhardt Et Son OrchestreFletcher Allen And His OrchestraLe Jazz De ParisAlex Renard Et Son OrchestreLouis Richard-Day's Accordion Swing QuartetteThe Hot Club Swing StarsTrio De Saxophones Alix CombelleLéo Chauliac Et Ses RythmesPierre Fouad Et Son OrchestreClaude Laurence Et Son Orchestre + +446044Fred ErmelinFrench jazz bassistNeeds VoteErmelinF. ErmelinFred Ermelin Et Son QuintetteFred HermelinRex Stewart And His OrchestraClyde Borly Et Ses PercussionsTrio Emil SternAlec Siniavine And His TrioAlain Romans Et Ses RythmesQuartetto Fred ErmelinPhilippe-Gérard Et Son Ensemble + +446045Eugène VéesFrench jazz guitarist, born 1915, died 1977. Father of [a1359714].Needs Votehttps://adp.library.ucsb.edu/names/112238E. VeesE. VéesE.V.Eugene VeesEugene VéesEugène "Ninine" VéesEugène VeesEugéne VéesNinineQuintette Du Hot Club De FranceLe Quintette FrançaisAndré Ekyan Et Son EnsembleDjango's MusicHubert Rostaing Et Son OrchestreDjango Reinhardt Et Son OrchestreEugene Vees QuartetLes Amis De DjangoQuintette Rythmique De Paris + +446047Antonio "Tony" RoviraFrench bassistNeeds VoteA. RoviraAntonio "Tony" RiveraAntonio 'Tony' RoviraAntonio RoviraAntônio RoviraRoviraT. RoviraToni RoviraTony RiviraTony RoveraTony RoviraQuintette Du Hot Club De FranceLe Quintette FrançaisDjango's MusicFestival SwingChristian Wagner Et Son OrchestreStéphane Grappelli And His Hot FourHubert Rostaing Et Son OrchestreAimé Barelli Et Son OrchestrePierre Allier Et Son OrchestreArthur Briggs And His OrchestraFletcher Allen And His OrchestraLe Jazz De ParisAlex Renard Et Son OrchestreTrio De Saxophones Alix CombelleGuy Paquinet Et Son OrchestreDany Kane Et Son OrchestreAntonio Rovira Et Sa "Banda" Espagnole + +446049Allan HodgkissJazz guitaristCorrectA. HodgkissAlan HodgkinsAlan HodgkissAllan HodgkinsAllan HodkinsQuintette Du Hot Club De France + +446050Gaston LéonardDrummerNeeds VoteG. LéonardGaston LeonardQuintette Du Hot Club De FranceJoseph Reinhardt Et Son EnsembleDany Kane Et Son EnsembleDjango Reinhardt Et Son QuintetteRichard Blareau Et Son OrchestreTony Proteau Et Son OrchestreDany Kane Et Son Orchestre + +446102Simon KrappSimon Krapp (born January 9, 1918; died March 28, 1972) was a German composer and orchestra leader. Most of his recordings are from 1946 to 1965.Needs Votehttps://meinsammelsuriumblog.wordpress.com/category/krapp-simon/KrappS. KnappS. KrappSimonЗ. КраппOrchester Simon KrappFFB - OrchesterChor Und Orchester Simon Krapp + +446105Rundfunkchor BerlinThe [b]Rundfunkchor Berlin[/b] was founded 1973 by accompanying [a916314] (also known as "Solistenvereinigung des Deutschlandsenders") and [a1945306]. Both were post-war successors of previous choirs of the German national broadcasting service having early roots from 1925 on. + +Chorus masters have included [a=Kurt Masur] and [a=Otmar Suitner]. [a=Dietrich Knothe] (1982-1993) and [a=Robin Gritton] (1994-2001) continued the legacy. + +Londoner [a=Simon Halsey] is their leader since April 2001.Needs Votehttps://www.rundfunkchor-berlin.de/https://de.wikipedia.org/wiki/Rundfunkchor_Berlin-ChorBerlinBerlin Radio ChoirBerlin Radio Choir (GDR)Berlin Radio ChorusBerlin Radio Chorus (GDR)Berlin Radio Chorus, Male SectionBerlin Radio Chorus, male sectionBerlin Radio Men's ChoirBerliner RudfunkchorBerliner RundfunkchorBerlini Rádió ÉnekkaraBerlinski Hendl-HorBerlínský Rozhlasový SborChoeur De La Radio De BerlinChoeursChoeurs De La Radio De BerlinChoeurs Symphonique De Radio BerlinChoirChoir of the Berlin RadioChorChor Des Beliner RundfunksChor Des Berliner RundfunksChor Und Orchester Des Berliner RundfunksChor des Berliner RundfunksChorusChorus Of Radio BerlinChorus Of The Berlin RadioChorus of Radio BerlinChœur De La Radio De BerlinChœur de la Radio de BerlinChœurs De La Radio De BerlinCoroCoro Da Rádio de BerlimCoro De La Radio De BerlinCoro Della Radio Di BerlinoCoro Di Voci Femminili Della RTV Di BerlinoCoro da Rádio de Berlim (R.D.A.)Coro de la Radio de BerlínDer Radio-DDR-StudiochorEast Berlin Radio Choir, TheEast Berlin Rundfunk ChoirEast Berlin Rundfunk Choir And Orchestra, TheGroßer Chor Des Berliner RundfunksGroßer Rundfunkchor BerlinMembers Of Rundfunkchor BerlinMembers Of The Rundfunkchor BerlinMembri Del Rundfunkchor BerlinMembri Del Rundfunkchor, BerlinoMen's Choir Rundfunkchor BerlinMitglieder Des Rundfunkchor BerlinMitglieder Des Rundfunkchores BerlinMitglieder Des Rundfunkchors BerlinMitglieder Vom Rundfunkchor BerlinMitglieder des Rundfunkchor BerlinMitglieder des Rundfunkchores BerlinMitglieder des Rundfunkchors BerlinMitglieder vom Rundfunkchor BerlinMännerchorMännerchor Des Berlinder RundfunksMännerchor Des Rundfunkchores BerlinMännerchor vom Rundfunkchor BerlinMännergruppe des Rundfunkchores BerlinNational Chorus Of BerlinRadio Berlin ChorusRadio Chorus BerlinRadio Chorus, BerlinRadio-Symphonie-Orchester Berlin Und ChorRundfunk ChoirRundfunk Choir BerlinRundfunk ChorRundfunk Chor BerlinRundfunk Orchestra & Choir, TheRundfunk Orchestra And Choir, TheRundfunk-Chor BerlinRundfunkchorRundfunkchor Berlin (DDR)Rundfunkchor Berlin (GDR)Solisten Des Berliner RundfunksSolisten Des Rundfunkchores BerlinSolistenvereinigung Und Rundfunkchor BerlinSoloists, Rundfunkchor BerlinStudio-Chor Des Berliner RundfunksThe Berlin Radio ChorusThe Berlin Radio Chorus (GDR)The East Berlin Radio ChoirThe East Berlin Rundfunk ChoirThe East Berlin Rundfunk Choir & OrchestraThe East Berlin Rundfunk Choir And OrchestraThe East Berline Radio ChoirThe Rundfunk ChoirThe Rundfunk Orchestra & ChoirThe Rundfunk Orchestra And ChoirThe Rundfunkchor BerlinVocal Soloists & ChorusWomen Of The Rundfunkchor BerlinWomen's Chorus Of The Rundfunkchors BerlinZbor Berlínskeho RozhlasuΧορωδία Του Ραδιοσταθμού Του ΒερολίνουХор Берлинского РадиоPetra LeipertJudith EngelJoachim VogtKatrin FischerSabine PuhlmannWilfried StaufenbielWolfgang DerschIsabelle VoßkühlerRené VoßkühlerMichael TimmVolker SchwarzThomas KoberTatjana SotinGeorg TaubeKlaus SilberJohannes SprangerSiegfried HausmannAnne-Kristin ZschunkeJohannes KlüglingUlrich LönsYeree SuhGesine NowakowskiVernon KirkSylke SchwabDavid StinglUta Damm-KühnerBeate ThiemannJoachim Fiedler (2)Oliver GawlikThomas PfütznerRosemarie ArztHans-Christian BraunSebastian Schade (2)Alexander LauerSophie KlußmannNora von BillerbeckJohannes VoigtAnett TaubeIngeborg RupprechtJörg Schneider (5)Birte KulawikGeorg DrakeHella WeigmannKonrad UrbanWolfram TeßmerJan RemmersHeike PeetzKatrin Pohl-KanießUta SchwarzeCatherine HenseUta FabriciusGabriele WillertRicarda VollprechtDoris ZuckerJudith SimonisChristina SeifertIngrid LizzioKatharina Thimm (2)Ute KehrerSibylle JulingBettina PieckMonika DegenhardtStefanie BlumenscheinInes MuschkaWolfgang Weber (6)Seongju OhChristoph LeonhardtNorbert SängerKristiina MäkimattilaSören von BillerbeckBernd Engel (2)Georg Witt (2)Axel ScheidigSebastian SchwarzeRainer SchnösChristfried KanigSascha GlintenkampMarion NickelRoksolana ChraniukChristine LichtenbergJudith MayerMathis KochGina SarabinskiMartin SchubachRobert FrankeJudith LöserBianca ReimHolger Marks (2)Christina BischoffAnna-Clara CarlstedtSabine EyerZsuszanna Kausz OhláJens HorenburgKim Young Wook + +446125Kassu HalonenKalervo Osmo Väinö HalonenBorn January 24, 1953 in Vaala, Finland. A Finnish songwriter, musician, arranger, producer and singer. Kassu Halonen has written circa 1500 songs, most of them to other artists, like [a=Vesa-Matti Loiri], [a=Kirka], [a=Irwin Goodman] and [a=Jari Sillanpää]. He has also released five solo albums. He often works together with lyricist [a=Vexi Salmi]. + +Pseudonyms: Carlos Caramancha, Öövin Hankin, Kimmo Kaislaranta, Kari Koponen, Susanna Savela +Needs Votehttps://sites.google.com/site/kassuhalonentaidetalohttps://sites.google.com/site/halonensalmisamulisivonen/kassu-halonen"Kassu" Halonen'Kassu' HalonenHalonenHalonen K.Halonen KalervoHalonen KassuHolonenJ. HalonenK HalonenK. HalonenK. HalonetK. HalonwnK. halonenK.HalonenK.O.V.HalonenKaarlo HalonenKaisu HalonenKalervo "Kassu" HalonenKalervo 'Kassu' HalonenKalervo HalonenKalervo Halonen & Kassu HalonenKalevi HalonenKassuKassu H.Kullervo HalonenPanimomestari Kassu HalonenК. ХалоненКалерво ХалоненKimmo KaislarantaKarl-Heinz HalombutahÖövin HankinSusanna SavelaCarlos CaramanchaKari KoponenDimitri MoscowitzThe Islanders (5)Karl-Heinz Halombutahs Studio OrkesterStudio-orkesteri UmmetusX-Ray (61) + +446441Adrian FusiarskiCorrectAdrian FAdrian F.Fustarski99th Floor Elevators + +446467Moe WechslerMorris WechslerAmerican barrel house and jazz pianist. +Born: October 15, 1920. +Died: February 2016 (age of 95) in Boynton Beach, Florida. +He played from the mid-1940s with Ella Fitzgerald and in1947 with the Mills Blue Rhythm Band. He played on many records as a session player including on such great recordings as The Chordettes version of "Mr. Sandman", Del Shannon's "Runaway", and Frank Sinatra's "The World We Knew (Over and Over)" and "This Town".Needs Votehttps://fromthevaults-boppinbob.blogspot.com/2020/10/moe-wechsler-born-15-october-1920.htmlhttps://www.local802afm.org/allegro/articles/memories-of-moe-wechsler/"Crazy Finger" Moe And His RagtimersMo WechslerMoe WeschlerMoe WeschslerMorrie WechslerMorris "Moe" WeschlerMorris WechslerMorris WechslierMos WechslerWechslerBaldy WynnEnoch Light And The Light BrigadeVic Schoen And His OrchestraThe Creed Taylor OrchestraThe Command All-StarsLos AdmiradoresThe RagtimersGeorge Williams And His OrchestraThe Quincy Jones Big Band + +446471Edo de WaartDutch conductor. He was born 1 June 1941 in Amsterdam, The Netherlands.Needs Votehttps://en.wikipedia.org/wiki/Edo_de_Waarthttps://www.bach-cantatas.com/Bio/Waart-Edo.htmDe WaartDo De WaartEdo De WaartEdo DeWaartde WaartЭдо Де Ваартエド・デ・ワールトConcertgebouworkestRoyal Flemish Philharmonic + +446472San Francisco SymphonySan Francisco SymphonyAmerican orchestra based in San Francisco, California. Founded in 1911. + +Referred to as "San Francisco Symphony" since the mid-late 1950s. Residing at the [l285012] since September 1980. + +Musical directors +[a653535], 2020- +[a253245], 1995-2020, now Music Director Laureate. +[a508213], 1985-1995, now Conductor Laureate. +[a446471], 1977-1985 +[a712500] (小澤 征爾), 1970-1977 +[a832942], 1963-1970 +[a1172316], 1954-1963 +[a406278], 1935-1952 +[a857230], 1931-1934 +[a1767242], 1930-1932 +[a3607887], 1916-1930 +[a3377112], 1911-1915Needs Votehttps://www.sfsymphony.org/https://www.youtube.com/user/sfsymphonyhttps://www.x.com/sfsymphonyhttps://en.wikipedia.org/wiki/San_Francisco_Symphonyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103524/San_Francisco_Symphony_OrchestraCoro Sinfónico De San FranciscoL'Orchestre Symphonique De San FranciscoLa Orquesta Sinfonica De San FranciscoMembers Of The San Francisco SymphonyMembers Of The San Francisco Symphony OrchestraOrch. Symphonique De San FranciscoOrchestraOrchestra Sinfonica Di San FranciscoOrchestre Symphonique De San FranciscoOrchestre Symphonique De San·FranciscoOrchestre Symphonique de San FranciscoOrq. Sinfónica De S. FranciscoOrq. Sinfónica San FranciscoOrquesta Sinfonica De San FranciscoOrquesta Sinfónica De San FranciscoOrquesta Sinfónica San FranciscoOrquesta Sinfónica de San FranciscoOrquesta Sinfônica De San FranciscoOrquestra Sinfónica De São FranciscoOrquestra Sinfônica De San FranciscoS. Francisco Symphony OrchestraSan Francisci Symphonie-OrchestrerSan Francisco OrchestraSan Francisco SOSan Francisco SymfoniorkesterSan Francisco Symph. Orch.San Francisco Symph. OrchestraSan Francisco Symphone OrchesterSan Francisco Symphonie OrchestraSan Francisco Symphonie-OrchesterSan Francisco Symphony Orch.San Francisco Symphony OrchestraSan Francisco-OrchSan Fransisco SymphonySan Fransisco Symphony OrchestraSinfônica De San FranciscoSymphonic OrchestraSymphonyThe San Francisco OrchestraThe San Francisco SymphonyThe San Francisco Symphony Orch.The San Francisco Symphony OrchestraΣυμφωνική Ορχήστρα Του Αγίου ΦραγκίσκουСан-Францисский Симфонический ОркестрСимфонический Оркестр Г. Сан-Францисклоサンフランシスコ交響楽団World Wide Symphony OrchestraThe Standard Hour Symphony OrchestraDaniel KobialkaPaul WhitemanBarbara ChaffeChester HazlettRoy MalanPeter WahrhaftigElayne JonesMarcella DeCrayLinn SubotnickPierre MonteuxLen LasherRaymond KoblerMelissa KleinbartLaura FlaxHerbert BlomstedtStuart CaninBob ZelnickPaul RenziSteve BraunsteinJames ButtonChristopher GaudiChristina KingMark VolkertAh Ling NeuJudiyabaDan SmileyMarcia Van DykeHarold DicterowGeraldine WaltherAnthony CironeJames ArkatovKatie KadarauchStephanie FongDon EhrlichVirginia BakerZaven MelikianJeremy MerrillVerne SellinNancy EllisLawrence GrangerMeyer SlivkaBarbara BogatinMichael GrebanierRaymond DusteMark BrandenburgJoshua GarrettRoger WiesmeyerAlexander BarantschikPaul BrancatoNaomi KazamaDouglas HullPaul WelcomerDaniel BannerJill Rachuy BrindelFlorin ParvulescuFrances JeffreyGlenn FischthalAndrew McCandless (2)Anne PinskerNanci SeveranceEnrique BocediSeth MausnerDavid GaudryJonathan RingMichael GerlingKelly Leon-PearceCatherine DownDouglas RiothLinda LukasSheryl RenkRichard AndayaCraig Morris (3)Kum Mo KimDiane NicholerisBruce FreifeldChris BogiosPamela Smith (2)Rob WeirStephen PaulsonDavid TeieTom HemphillYun Jie LiuEugene IzotovRaymond FroehlichPhilip SantosConnie GantswegJeremy ConstantJeffrey BudinDavid Herbert (3)Yukiko KurakataChumming Mo KobialkaGina FeinauerEric AchenCatherine PayneJulie Ann GiacobassiArtie StorchAnthony StriplenVictor RomasevichRudolph KremerJohn EngelkesAlfred WallensteinYasuko HattoriLarry EpsteinWilliam RitchenCharles ChandlerChris GilbertStephen TramontozziS. Mark WrightGregory BarberErica SharpQing HouJeffrey BiancalanaJorja FleezanisLuis BaezLeonid GesinRyohei NakagawaPeter WyrickAmy HiragaBasil VendryesLucy StoltzmanSuzanne LeonMariko SmileyNadya TichmanSarn OliverJames Lee Wyatt IIIZoya LeybinMilton E. NadelJacob KrachmalnickJames MathesonElsa HilgerMichael O'Donovan (2)Jean-Louis LeRouxRufus OlivierSarah KnutsonJudith YanchusCharles VernonDarlene GrayJohn ZirbelMishel PiastroMichael Webster (2)Margaret TaitSharon GrebanierLaurie McGawLeonid BolotineFloyd CooleySusan WilloughbyHarry GlantzLudwig AltmanArthur KrehbielRobin Sutherland (2)William SabatiniJack Van GeemMary Jo AhlbornMischa MyersDavid Goldblatt (3)Steven DibnerRobert N. WardBruce A. RobertsKenneth S. MillerBrian QuinceyKen MirkinLeone BuyseRoland KohloffCarolyn McIntoshMary NeumannDave SmileyLouis PersingerMichael BurrElizabeth BakerPeter Shelton (3)Mark InouyeEzequiel AmadorEdward StephanDavid BreedenChristopher Cooper (3)Germain PrévostWilliam Williams (4)Timothy Day (3)Barry JekowskyJustin EmerichMichelle DjokicMichel PenhaStan MuncyJoseph Alessi, Sr.Jerome SimasMichael Mann (6)Attilio De PalmaFelix KhunerJascha VeissiRichard FleischmanSébastien GingrasJessica ValeriJonathan VinocourCharles BurrellChen ZhaoNicole CashAdolph WeissDiane FarrellQuinto MaganiniKimberly Wright (3)George BaratiMarc LifscheyClara MühlethalerEdward HaugCarl ModellDetlev OlshausenRaymond OjedaFrealon BibbinsRuss DelunaJacob NisslyAndrew BerdahlBarbara BernhardHarry MoulinJeffrey WeisnerEdward Percival CodeScott PingelWilliam Bennett (4)Boris BlinderNaoum BlinderLeor MaltinskiPeter GrunbergTimothy HigginsYuna LeeKatarzyna Bryla-WeissCarey Bell (2)Jessie FellowsRobin McKeeBen FreimuthPolina SedukhYun ChuDavid ChernyavskyOrion MillerDaniel G. SmithAmos YangShu-Yi PaiNick PlatoffJeffrey Anderson (5)Matthew Young (9)Adam SmylaRaushan AkhmedyarovaJohn Chisholm (6)Mark Almond (3)Jesse ClevengerAsbjørn FinessRainer EudeikisChristopher BassettGuy PiddingtonDaniel Hawkins (12)Gail SchwarzbartKatherine SiochiWyatt UnderhillAaron SchumanBarbara Andres (4)Brian Marcus (4)Leonid Plashinov-JohnsonIn Sun JangCathryn DownDan Carlson (4)Steve SánchezRuss de LunaMarty ThenellBarbara Wirth + +446475PomeriumVocal ensemble founded by [a1169741] in New York in 1972 to perform music composed for the famous chapel choirs of the Renaissance.Needs Votehttp://pomerium.us/Pomerium EnsemblePomerium MusicesPhilip LarsonRobert KuehnStephen RosserJeffrey JohnsonPeter StewartLawrence WellerKathy TheilPaul ShipperHoward CrookAnn MonoyiosWendy GillespieElizabeth FarnumPhyllis Jo KubeyMichele EatonRuth CunninghamNathaniel WatsonGregory CarderKathy EtheringtonMichael SteinbergerAlessandra ViscontiAlexander BlachlyTimothy Leigh EvansMark DuerDavid Hart (5)Sanford SylvanBetsy BlachlyLawrence RosenwaldCynthia Richards WallaceNeil FarrellDavid DusingJohnson FluckerRossana BertiniChristopher KennyBetsy BeattieJeffrey DooleyKurt Owen RichardsKaren Clark YoungDavid Hart (8)Thom BakerTom Moore (14)Peter Bannon + +446577Peter SchreierGerman tenor vocalist and conductor, born on 29th July 1935 in Meißen. Died on 25th December 2019 in Dresden.Correcthttp://en.wikipedia.org/wiki/Peter_SchreierP SchreierP. SchreierP. SchreinerPeter SchreiePeter ShreierPeter schreieSchreierShreierΠέτερ ΣράιερП. ШрайерПетер Шрайерペーター・シュライアーペーター・シュライヤーペーター・シュライアーDresdner Kreuzchor + +446580Mareike ThrunMareike Thrun (born 1976) is a German flute player.Needs VoteDresdner Philharmonie + +446627Jay McShann And His OrchestraCorrectHootie McShann & His OrchestraHootie McShann And His OrchestraJay Mc Shann Et Son OrchestreJay Mc Shann's OrchestraJay Mc Shann, His Piano And OrchestraJay McShannJay McShann & His Orch.Jay McShann & His OrchestraJay McShann And His BandJay McShann Orch.Jay McShann OrchestraJay McShann Und Sein OrchesterJay McShann Y Su OrquestaJay McShann's BandJay McShann's Orch.Jay McShann's OrchestraJay McShann, His Piano And OrchestraThe Jay McShann BandThe Jay McShann Orch.The Jay McShann OrchestraKenny BurrellCharlie ParkerLes PaulGene RameyBen WebsterRay CopelandSeldon PowellJay McShannGus JohnsonJ.C. HigginbothamHilton JeffersonAl SearsPaul QuinichetteWillie CookEmmett BerryBernard AndersonWalter BrownPee Wee CraytonHaywood HenryMousey AlexanderTaswell BairdJohn Jackson (7)Flaps DungeeJames SkinnerJimmy CoeBob Merrill (2)Bob MabaneOrville "Piggy" MinorHarry Ferguson (2)Harold BruceFreddy CulliverLawrence "Frog" AndersonLeonard EnoisWilliam J. ScottClifford JenkinsBud GouldLloyd Anderson (5)Dave Mitchell (11)Jesse Jones (12)Rudy MorrisonRudolph DennisFats DennisGene GriddinsCooky JacksonAlfonso FookWilliam Hickman (2)"Stoogy" Gelz"Jeepy" + +446629Lester Young And His BandLester Young led various bands and groups after his tour in World War II, through the 1950s until his health prevented him from playing around late 1958.Needs VoteHelen Humes And Her All StarsLester YoungLester Young & His BandLester Young BandHorace SilverChico HamiltonJohnny OtisJunior ManceGene RameyConnie KayRoy HaynesLester YoungVic DickensonCurtis CounceRed CallenderDodo MarmarosaHarold "Doc" WestHoward McGheeFreddie GreenShad CollinsTed KellyWillie Smith (2)John Collins (2)Nick FentonIrving AshbyRodney RichardsonWesley JonesFred LaceyHenry Tucker GreenShorty McConnellJesse DrakesFreddy JeffersonJerry ElliottTed BriscoeEarl KnightLyndall MarshallArgonne ThorntonJoe Albany + +446631Tiny Grimes QuintetCorrectTiny GrimesTiny Grimes & BandTiny Grimes 5tetTiny Grimes And His Rhythm And Blues QuintetTiny Grimes QuintetteTiny Grimes' QuintetCharlie ParkerClyde HartHarold "Doc" WestSir Charles ThompsonLucille DixonSonny PayneTiny GrimesJimmy ButtsRed PrysockJohn HardeeJerry PotterGeorge Kelly (4)Ike Isaacs (2)Jimmy Saunders (5) + +446633Bud Powell's ModernistsCorrectBud Powell And His ModernistsBud Powell ModernistsBud Powell's ModernistBud PowellSonny RollinsTommy PotterRoy HaynesFats Navarro + +446634Howard McGhee And His OrchestraCorrectHoward McGheeHoward McGhee & His BoppersHoward McGhee & His Orch.Howard McGhee & His OrchestraHoward McGhee And His BandHoward McGhee And His ComboHoward McGhee And His Orch.Howard McGhee Orch.Howard McGhee OrchestraHoward McGhee and His BoppersHoward McGhee's OrchestraGerald WilsonCharlie ParkerCharles MingusRoy PorterGene TaylorVic DickensonLucky ThompsonClifford JordanTeddy EdwardsHoward McGheeElmer CrumbleyKiane ZawadiBill HardmanNorris TurneyVernon BiddleGene PorterStephen FurtadoRuss AndrewsDonald ColeNat WoodardFrank CapiJames D. KingVicki KellyCharles SimonAshley FernellLeon Comigy + +446638Fats Navarro And His Thin MenCorrectFats Navarro & His Thin MenFats Navarro & His Tin MenGene RameyTadd DameronDenzil BestFats NavarroLeo Parker + +446648The Harlem FootwarmersNeeds VoteDuke Ellington And His Harlem FootwarmersDuke Ellington And The Harlem FootwarmersHarlem FootwarmersLonnie Johnson's Harlem FootwarmersLonnie Jonson's Harlem FootwarmersThe Harlem Footwarmers (Duke Ellington & His Orch.)Duke Ellington And His OrchestraDuke EllingtonJohnny HodgesCootie WilliamsHarry CarneyWellman BraudJuan TizolJoe NantonSonny GreerFreddy JenkinsFred GuyBarney BigardArthur Whetsel + +446653Ollie Powers' Harmony SyncopatorsCorrectOllie Power's Harmony SyncopatorsOllie Powers & His Harmony SyncopatersOllie Powers & His Harmony SyncopatorsTommy LadnierJimmie NooneBass MooreEddie VincentJ. Glover ComptonOllie PowersJohn BasleyHorace DiemerAlex Calamese + +446654Don Redman And His OrchestraUS mid 20th century orchestra led by pianist, vocalist [a=Don Redman]Needs VoteBandDon RedmanDon Redman & His Orch.Don Redman & His Orchescahrlie alexandertraDon Redman & His OrchestraDon Redman & OrchestraDon Redman And BandDon Redman And His BandDon Redman And His Orch.Don Redman BandDon Redman E La Sua OrchestraDon Redman Et Son OrchestreDon Redman Orch.Don Redman OrchestraDon Redman Und Sein OrchesterDon Redman's BandDon Redman's OrchestraRedman And BandRedman Orch.The Don Redman OrchestraBilly Bunch And His Smoky RhythmRupert ColeBilly TaylorQuentin JacksonDon ByasBill Coleman (2)Peanuts HollandDon RedmanHorace HendersonLangston CurlClaude JonesFred RobinsonSidney De ParisBilly Taylor Sr.Benny MortonLeonard DavisGene SedricSlick JonesCarl FryeChauncey HaughtonTyree GlennGene SimonShirley ClayHenry "Red" AllenPete Clark (2)Manzie JohnsonBuford OliverTed SturgisBill BeasonRay AbramsBuster SmithEdward IngeBob YsaguirreTalcott ReevesRobert CarrollTommy StevensonBob LesseyInez CavanaughBobby Williams (6)Eddie Williams (5)Tapley LewisNicholas RodriguezJack CarmanAlan Jeffries (2) + +446656Coleman Hawkins Swing FourCorrectColeman Hawkins' Swing FourColeman Hawkins‘ Swing FourHawkins QuartetMax RoachColeman HawkinsOscar PettifordRoy EldridgeShelly ManneArt TatumEddie HeywoodAl CaseyJack TeagardenBarney BigardSidney CatlettJimmy ShirleyEllis Larkins + +446658Lester Young QuintetCorrectLester Young (JATP) QuintetThe Lester Young QuartetThe Lester Young QuintetYoung QuintetCount BasieKenny ClarkeGene RameyKenny DrewWynton KellyRay BrownOscar PetersonHerb EllisLester YoungJo JonesIdrees SuliemanJohn Lewis (2)Freddie GreenAaron BellJ.C. HeardJohn Collins (2)Rodney RichardsonJimmy GourleyShadow WilsonJoe Harris (3)Jean-Marie IngrandGil CogginsJesse DrakesLee AbramsEarl KnightLeroy Jackson (3) + +446664The Just Jazz All StarsCorrectJust JazzJust Jazz All StarsJust Jazz All Stars (Wardell Gray & Dexter Gordon)Just Jazz AllstarsThe AllstarsNat King ColeErroll GarnerRed CallenderWardell GrayOscar MooreJackie MillsIrving AshbyJohnny Miller (2) + +446667Frank Newton And His OrchestraCorrectFrank Newton & His OrchestraFrank Newton And OrchestraFrank Newton Et Son OrchestreFrank Newton's OrchestraFrankie Newton & His Orch.Frankie Newton & His OrchestraFrankie Newton And His OrchestraFrankie Newton And OrchestraFrankie Newton E OrquestraFrankie Newton Og Hans OrkesterFrankie Newton OrchestraFrankie Newton's OrchestraThe Frankie Newton OrchestraJohnny WilliamsCozy ColeLester YoungHarry EdisonMezz MezzrowJohn KirbyJo JonesAl CaseyWalter PageFreddie GreenKenneth HollonJoe SullivanFrank NewtonPete Brown (2)Eddie DoughertyTab SmithJames Price JohnsonJimmy McLinJack WashingtonStanley PayneSonny WhiteEarle Warren + +446668Leonard Feather All StarsCorrectAll-Star Jam BandColeman Hawkins And Leonard Feather's All StarsLeonard Feather & His All StarsLeonard Feather All Star Jam BandLeonard Feather All-StarsLeonard Feather And His All Star OrchestraLeonard Feather And His All StarsLeonard Feather And His All Stars BandLeonard Feather's All Star Jam BandLeonard Feather's All StarsLeonard Feather's All Stars Jam BandLeonard Feather's All-Star Jam BandLeonard Feather's AllstarsLeonard Feather's Esquire All AmericansLeonard Feather's Esquire All StarsLeonard Feather´s All StarsLeonard Feather’s All StarsWillie Bobo"Stix" HooperPaul HumphreyColeman HawkinsErnie WattsAndrew SimpkinsMax BennettBobby HackettOscar PettifordCozy ColeCootie WilliamsBenny CarterBilly KyleArt TatumBuck ClaytonAl CaseyAl McKibbonRemo PalmieriSpecs PowellHayes AlvisEdmond HallPete Brown (2)George WettlingSidney CatlettJoe BushkinLeonard FeatherJoe MarsalaArtie ShapiroRemo Biondi + +446671Lucky Thompson And His Lucky SevenCorrectLucky Thompson & His Lucky SevenLucky Thompson And His Lucky 7Lucky Thompson SevenGil AskeyLucky ThompsonJohn SandersJimmy PowellBeverly PeerGeorge Matthews (2)Al Williams (4)Harold Johnson (2)Percy BriceCurby AlexanderEarl Knight + +446874Maria CebotariMaria CebotaruSoprano vocalist and actress who made her career in Germany and Austria. +Born February 10, 1910 in Chişinău, Gubernia Basarabia (today Republic of Moldova). +Died June 9, 1949 in Vienna, Austria. +Needs Votehttp://en.wikipedia.org/wiki/Maria_Cebotarihttps://www.musiklexikon.ac.at/ml/musik_C/Cebotari_Maria.xmlhttps://kulturstiftung.org/biographien/cebotari-cebotaru-maria-2CebotariKammersängerin Maria CebotariM. CebotariМ. ЧеботариМария Чеботари + +446928Dick KnissRichard Lawrence KnissFolk and jazz bassist born 04/24/1937 in Portland, OR. Died 01/25/2012 in Kingston, NY of chronic obstructive pulmonary disease. Co-wrote "Sunshine On My Shoulders". Worked with [a=John Denver], [a=Peter, Paul & Mary], [a=Herbie Hancock], and [a=Woody Herman].Needs VoteD. KnissDick KrissKeissKniffKnissR KuissR. KnissR. L. KnissRichard KnissRichard L. KnissWoody Herman And His OrchestraDon Friedman TrioWoody Herman And The Fourth HerdDon Friedman Quartet + +446946George PriceFrench Horn player.Needs VoteGeorge F. PriceStan Kenton And His OrchestraThe Horn Club Of Los Angeles + +447022Giorgio AgazziItalian Recording engineer at [l=Trafalgar Recording Studios]. Historical sound engineer passed away the 19th of August, 2010.Needs VoteAgazziG. AgazziG.AgazziGeorgio Agazzi + +447026Tijs VerwestTijs Michiel VerwestTijs Verwest aka Tiësto (born 17 January, 1969, Breda, Netherlands) is a Dutch electronic dance music producer and DJ. In 1997, he founded the label [l=Black Hole Recordings] with [a=Arny Bink]. In 1998, Tijs met producer [a=Dennis Waakop Reijers] and this led to a long and successful collaboration. Tiësto's fame rose in the 2000's as his music was exposed to mainstream audiences. He was named "the Greatest DJ of All Time" by [l=Mixmag] magazine in a poll voted by the fans.Needs Votehttp://www.tiesto.com/http://www.facebook.com/tiestohttp://myspace.com/tiestohttp://twitter.com/tiestohttp://en.wikipedia.org/wiki/Ti%C3%ABstohttp://soundcloud.com/tiestohttp://www.youtube.com/officialtiestohttp://www.songkick.com/artists/152971-tiestoLT. VerwestT VerwestT. M. VerwestT. M.VerwestT. VernestT. VerwestT. VewestT. WerwestT.M. VerwestT.M.VerwestT.VerwestThijs M. VerwestThijs VerwestTijs M VerwestTijs M.Tijs M. VerwestTijs Michel VerwestTijs Michiel VerwestTiss VernestTiss VerwestVerwestVerwest T.Verwest, T.Verwest, TijsDJ TiëstoRozeStray DogWild BunchDrumfireTom AceLoop ControlDa JokerDJ MephistoDJ LimitedPassenger (2)Handover CircuitSteve Forte RioRoberto ScilattiJavier RodriguezTST (6)VER:WESTGouryellaKamaya PaintersControl FreaksVimanaAllureHammock BrothersAlibiParadise In DubsMajor LeagueClear ViewWest & StormHard TargetT-ScannerGlycerineMain MenTwo Deejays (2)FlowerchildTB X-PressAndanteA3 (3)ConilPink Elephant (2)The Veil KingsJedidjaEs VedráD'Alt Vila (2)Clouded LeopardDokmaiManilla RisingBanyan TreeKamui (2)Sunday CinemaLagan ValleyBoys Will Be Boys (2) + +447081Rachel BoltRachel Stephanie BoltRachel Bolt is an English viola player whose recording career spans 1983 to the present day. She was a scholarship student at the Royal Academy of Music and went on to the University of Southern California aided by a Fulbright Award. Recordings listed here reflect a varied career and include classical recordings with the Academy of St Martin in the Fields and the Nash Ensemble, live concerts with Robbie Williams, film soundtracks composed by James Newton Howard and Han Zimmer and huge hits including the Amy Winehouse album "back to black".Needs Votehttps://www.linkedin.com/in/rachel-bolt-11b8a2107/https://maslink.co.uk/client-directory?client=BOLTR1&instrument=VIOLA1https://www.imdb.com/name/nm1020391/Rachael BoltRachel S BoltRachel Stephanie BoltStephanie BoltRachel HoltThe London Session OrchestraThe London Studio OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Festival OrchestraMichaelangelo Chamber OrchestraThe Chamber Orchestra Of LondonOrchestre de Grandeur + +447130Roger ParaboschiFrench drummer, born 1926 in Paris.Needs VoteParaboschiR. ParaboschiRoger Para-BoschiRoger ParabochiRoger ParaboshiQuintette Du Hot Club De FranceThe Bernard Peiffer TrioJimmy Walter Et Son EnsembleMichel Attenoux Et Son OrchestreArmand Migiani All StarsRaymond Fol Et Son OrchestreDon Byas Big FourGeo Daly Et Son QuartetAll Star Français 1950The Tigers ThreeBill Coleman And His SevenBill Coleman/Don Byas QuintetPierre Braslavsky & His Band + +447164Adam MartinAdam MartinElectronic dance music DJ / producer from Leeds, UK +Styles: Hard House | Hard NRG + +[b]Please use [a169199] for the short name.[/b]Needs VoteA MartinA.MartinAdam MAdam M (2)The Beast (16)A vs BPowertraxA.D.O.M.M.G.M. (2)Beauty & The BeastThe Freak Brothers (3)Hard House Masters + +447385James Watson (2)British classical trumpeter & cornettist, conductor, and Professor of Trumpet. Born 4 September 1951 in Leicestershire, England, UK - Died 6 February 2011 in London, England, UK. +[b]For the Scottish jazz trumpeter (born in 1922), please use [a=Jimmy Watson (2)][/b]. +At the age of 11, he became Principal Cornet of [a=The Desford Colliery Band]. He went on to study the trumpet at the [l527847], after which, at the age of 22, he was appointed Principal Trumpet with the [a=Royal Philharmonic Orchestra] (the youngest Principal Trumpet in the orchestra's history). He remained with the RPO until 1978, acting also in those years (1974-1982) as Principal Trumpet for the [a=London Sinfonietta], [a=The Nash Ensemble] and the [a=Philip Jones Brass Ensemble]. From 1983 to 1990, he was the Principal Trumpeter at the [a=Orchestra Of The Royal Opera House, Covent Garden]. His conducting positions included Artistic Director of [a=The Black Dyke Mills Band] from 1992 to 2000. He was Artistic Director of the [a=National Youth Brass Band of Wales] for six years, and was Vice-President of the [b]National Youth Wind Orchestra of Great Britain[/b]. He was Head of Brass at the Royal Academy of Music from 2001 until his death. +Father of [a=Tom Watson (19)] and [a=William Watson (3)].Needs Votehttps://open.spotify.com/artist/0wOyz2NbvFmVR3uWKhhWnIhttps://music.apple.com/us/artist/james-watson/77181118https://en.wikipedia.org/wiki/James_Watson_(trumpeter)https://www.feenotes.com/database/artists/watson-james/https://divineartrecords.com/artist/james-watson/https://www.thetimes.co.uk/article/james-watson-c2dk0m9sjdkhttps://www.theguardian.com/music/2011/feb/16/james-watson-obituaryhttps://www.4barsrest.com/news/12890/death-of-james-watsonJim WatsonJimmy WatsonLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Black Dyke Mills BandLondon SinfoniettaPhilip Jones Brass EnsembleThe Nash EnsembleOrchestra Of The Royal Opera House, Covent GardenLondon Wind OrchestraLocke Brass ConsortThe Desford Colliery BandThe London Trumpet SoundLondon Symphony Orchestra Brass + +447649William KendallEnglish tenor vocalist.Needs VoteW. KendallCollegium VocaleThe Monteverdi Choir + +447694Patrick HallingPatrick Clancy HallingAustralian classical violinist. Born 28 August 1924 in Rowella, Tasmania, Australia. +His family relocated to England on the eve of the 2nd World War. He joined the [a=London Philharmonic Orchestra] while still a teenager. He then studied at the [l527847] and [l305416]. He was a member of the [b]Hirsch Quartet[/b] for 8 years, before forming the [b]Quartet Pro Musica[/b] in 1955. He was a member of the [a=London Symphony Orchestra] (1948-1954). Leader of [a=The Virtuoso Ensemble] of London and a past leader of [a=Sinfonia Of London]. He and his brother, [a=Peter Halling] were part of [a=George Martin]'s 'go-to' string section for [a=The Beatles]. They played on "Yesterday", "Eleanor Rigby" etc. +Uncle of [a=Rod Halling].Needs Votehttps://storywrite.com/story/7672141-Pro-Musica--for-Patrick-Clancy-Halling--by-Carl-Hallinghttps://www.booksie.com/posting/carl-halling/the-tragedy-of-phyllis-pinnock-8162https://www.violinist.com/directory/bio.cfm?member=dhallinghttps://cosmofunnel.com/stories/patrick-halling-voyage-music-51627https://qpromusica.wordpress.com/patrick-halling/https://www.the-paulmccartney-project.com/artist/patrick-halling/P HallingP. HallingP. HellingP.HallingPa HallingPat HalingPat HallingPat HallingsPat HillingPat HowlingLondon Symphony OrchestraLondon Philharmonic OrchestraPat Halling's String EnsembleThe Alan Tew OrchestraSinfonia Of LondonThe London Jazz Chamber GroupVirtuoso Chamber EnsembleThe Virtuoso EnsembleLondon Baroque EnsembleThe Francis Chagrin EnsemblePatrick Halling & Co. + +447843Adam JukesAdam Jukes is a UK Hard House / NRG DJ, Producer, Remixer and a partner in [l=Deprivation Recordings] and its sublabels.Correcthttp://www.jpandjukesy.co.ukhttp://www.deprivationrecords.co.ukA JukesA. JukesA.JukesDark Fusion (2)JP & JukesyMasmada + +447919Gavin Kerr (2)CorrectG KerrKernzy & KlemenzaCK2 + +447920Patrick KearnsNeeds VoteP KearnsPaddy KearnsPaddy KernzTallaghtBossgroovePadraig BallyerPaddy KearnsKernzy & KlemenzaCK2Matter of Phat + +448007Orchestre Des Concerts LamoureuxOrchestre De L'Association Des Concerts LamoureuxOrchestre Des Concerts Lamoureux is the orchestra of the Association Des Concerts Lamoureux (also known as the Concerts Lamoureux). It was founded in Paris, as the Société des Nouveaux-Concerts, by Charles Lamoureux, a champion of [a294746], in 1881. It became the Association Des Concerts Lamoureux in 1897. It is now known simply as Orchestre Lamoureux. + +Conductors: +Charles Lamoureux (1881–1897) +[a3704047] (1897–1923) +[a843529] (1923–1928) +[a1071276] (1928–1934) +[a1816349] (1935–1950) +[a833128] (1951–1957) +[a448010] (1957–1961) +[a1934207] +Jean Claude Bernède (1979–1991) +Valentin Kojin (1991–1993) +[a384428] (1993–2011) +[a1913519] (2011–present)Needs Votehttps://orchestrelamoureux.com/https://www.facebook.com/orchestredesconcertslamoureuxhttps://www.instagram.com/orchestrelamoureux/https://twitter.com/Orch_Lamoureuxhttps://www.youtube.com/channel/UCCd-iQP-8kRl5CnzAhuvxDQ/https://en.wikipedia.org/wiki/Orchestre_Lamoureuxhttps://fr.wikipedia.org/wiki/Orchestre_Lamoureuxhttps://adp.library.ucsb.edu/names/103820"Lamoureux Concertos" Orchestra'Lamoureux' Konzert Orchester, ParisAssociation Des Concerts LamoureuxAssociation Des Concerts Lamoureux, ParisAssociation Des Concerts Robert LamoureuxConcerts LamoreuxConcerts LamoureuxConcerts Lamoureux Association OrchestaConcerts Lamoureux OrchestraEnsemble De Solistes De L'Orchestre Des Concerts LamoureuxEnsemble De Solistes De L'Orchestre LamoureuxEnsemble De Solistes Des Concerts LamoureuxGrand Orchestre Des Concerts LamoureuxHet Lamoureux OrkestKoncertni Orkestar LamureL' Orchestre Des Concerts LamoureuxL'Orcheste Des Concerts LamoureauxL'Orchestre De L'Association Des Concerts LamoreuxL'Orchestre De L'Association Des Concerts LamoureuxL'Orchestre Des Concerts LamoureuxL'Orchestre Des Concerts Lamoureux, ParisL'Orchestre LamoureuxL'orchestre LamoureuxLa Orquesta De Los Conciertos LamoureuxLamoreux OrchestraLamoureauxLamoureaux Chamber OrchestraLamoureaux Concert OrchestraLamoureaux Concert Orchestra, ParisLamoureaux OrchestraLamoureaux Orchestra and Chorus, ParisLamoureuxLamoureux , ParisLamoureux Chamber OrchestraLamoureux Concert OrchestraLamoureux Concert Orchestra,Lamoureux Concert orchestraLamoureux ConcertosLamoureux Concerts OrchestraLamoureux Orch.Lamoureux OrchestraLamoureux Orchestra (Paris)Lamoureux Orchestra (Paris), TheLamoureux Orchestra And Wind EmsembleLamoureux Orchestra Of ParisLamoureux Orchestra ParisLamoureux Orchestra of ParisLamoureux Orchestra, ParisLamoureux Orchestra, ParisLamoureux Orchestra, Paris*Lamoureux OrchestreLamoureux OrkestLamoureux String Orchestra, ParisLamoureux-Konzert-OrchesterLamoureux-KonzertorchesterLamoureux-Orch.Lamoureux-OrchesterLamoureux-Orchester, ParisLamoureuxorkestret, ParisLamourex Concert OrchestraLamourex Orchestra, ParisMitglieder Des Orchestre Des Concerts LamoureuxOquestra Dos Concertos LamoureuxOrch. Dei Concerti LamoureuxOrch. Des Concerts LamoureuxOrch. LamoureuxOrch. Lamoureux ParisOrchester LamoureauxOrchester Lamoureaux, ParisOrchester LamoureuxOrchester Lamoureux ParisOrchester Lamoureux, ParisOrchester Lamoureux. ParisOrchestere De L'association Des Concerts LamoureuxOrchestr LamoureuxOrchestr Lamoureux PařížOrchestra Concertelor „Lamoureux” Din ParisOrchestra "Lamoureax Concerts"Orchestra "Lamoureux" Din ParisOrchestra Concertelor „Lamoureux“ Din ParisOrchestra Concertelor „Lamoureux“ din ParisOrchestra Concertelor „Lamoureux” Din ParisOrchestra Concertelor „Lamoureux„ Din ParisOrchestra De L'Association Des Concerts LamoureuxOrchestra De L'association Des Concerts LamoureuxOrchestra Dei Concerti LamoreuxOrchestra Dei Concerti LamoureuxOrchestra Dei Concerti Lamoureux Di ParigiOrchestra Dell' Associazione Dei Concerti LamoureuxOrchestra Dell'"Association Des Concerts Lamoureux" Di ParigiOrchestra Dell´"Association Des Concerts Lamoureux"Orchestra Des Concerts LamoureuxOrchestra Des Concerts Lamoureux, ParisOrchestra LamoureuxOrchestra Lamoureux Di ParigiOrchestra Lamoureux, ParigiOrchestra Lamoureux, ParisOrchestra Of The Association Of Lamoureux ConcertsOrchestra Of The Concerts LamoureuxOrchestra de l'Association des Concerts LamoureuxOrchestra dei Concerti LamoureuxOrchestra des Concerts LamoureuxOrchestra of the Association of Lamoureux ConcertsOrchestra of the Lamoureux Concert AssociationOrchestreOrchestre (Lamoureux ?)Orchestre D L'Association Des Concerts LamoureuxOrchestre De I'Association Des Concerts LamoureuxOrchestre De I'Association Des Concerts Lamoureux, ParisOrchestre De L'Assicuation Des Concerts LamoureuxOrchestre De L'Assocation Des Concerts LamoureuxOrchestre De L'Association De Concerts LamoureuxOrchestre De L'Association Des Conc. LamoureuxOrchestre De L'Association Des Concerts LamoureuxOrchestre De L'Association Des Concerts Lamoureux, ParisOrchestre De L'association Des Concerts LamoureuxOrchestre De La Société Des Concerts LamoureuxOrchestre De L’Association Des Concerts LamoureuxOrchestre Des Concerts Lamoureux, ParisOrchestre Des Concerts Robert LamoureuxOrchestre L'Association des Concerts LamoureuxOrchestre LamoreuxOrchestre Lamoreux, ParisOrchestre LamoureuxOrchestre Lamoureux ParisOrchestre Lamoureux, ParijsOrchestre Lamoureux, ParisOrchestre Lamoureux.Orchestre LamourexOrchestre de L'Association Des Concerts LamoureuxOrchestre de L'Association des Concerts LamoureuxOrchestre de L’association Des Concerts LamoureuxOrchestre de l'Association des Concerts LamoureauxOrchestre de l'Association des Concerts LamoureuxOrchestre des Concerts LamoureuxOrchestre des Concerts Lamoureux, ParisOrkestar "Lamoureux"Orkestar "Lamure"Orkestar "Lamureaux"Orkestar LamureOrq. de Concertos LamoureuxOrquesta De Concierto LamoureuxOrquesta De Conciertos LamoureauxOrquesta De Conciertos Lamoureaux, ParisOrquesta De Conciertos LamoureuxOrquesta De Conciertos Lamoureux (Ensayo)Orquesta De Conciertos Lamoureux De ParísOrquesta De La Asociación De Conciertos LamoureuxOrquesta De Los Conciertos De Lamoureux - ParisOrquesta De Los Conciertos Lamoureaux ParisOrquesta De Los Conciertos LamoureuxOrquesta De Los Conciertos Lamoureux De ParisOrquesta Des Concerts LamoureuxOrquesta Dos Concertos LamoureuxOrquesta LamoureuxOrquesta Sinfonica Lamoreau De ParisOrquesta Sinfonica LamoureuxOrquesta Sinfonica Lamoureux De ParisOrquesta Sinfónica LamoureuxOrquesta de Conciertos LamoreuxOrquesta de Conciertos Lamoreux de ParísOrquesta de Conciertos Lamoreux,Orquesta de Conciertos LamoureuxOrquesta de la Asociación de Conciertos LamoureuxOrquesta de los Conciertos LamoureuxOrquestra De Concertos LamoureuxOrquestra Dos Concertos LamoureuxOrquestra LamoureuxOrquestra Lamoureux De ParísOrquestra dos Concertos LamoureuxParis Symphony OrchestraParix Philharmonia OrchestraSociété des Nouveaux-ConcertsSolistes De L'Ochestre Des Concerts LamoureuxSolistes De L'Orchestre Des Concerts LamoureuxSolistes de l'Orchestre Des Concerts LamoureuxStre Des Concerts Lamoureux, ParisString Orchestra Of The Lamourex Concert AssociationSymphony OrchestraSymphony Orchestra Lamoureux ConcertsThe Lamoreux OrchestraThe Lamoureux Concert OrchestraThe Lamoureux Concerts OrchestraThe Lamoureux OrchestraThe Lamoureux Orchestra (Paris)The Lamoureux Orchestra Of ParisThe Lamoureux Orchestra(Paris)The Lamoureux Orchestra, ParisThe Lamourex OrchestraThe Orchestra LamoureuxThe Orchestra Of The Association Of Concerts LamoureuxThe Orchestre Des Concerts LamoureuxThe Orchestre Lamoureux«Lamoureux Concertos» OrchestraОркестр " Концерты Ламуре"Оркестр "Концерты Ламуре"Оркестр «Концерты Ламуре»Оркестр «Концерты Ламурё»Оркестр „Концерты Ламурё“Парижский Оркестр Общества "Концерты Ламуре"Парижский оркестр Общества "Концерты Ламуре"Симфонический ОркестрСимфонический Оркестр «Концерты Ламуре»Симфонический оркестрコンセル・ラムー交響楽団コンセール・ラムルー管弦楽団コンセール・ラムルー管弦楽団ラムルー管弦楽団Aurore PingardMarcel CarivenPierre ChailléMaurice AndréMichel BarreJean MartinonRoger BourdinPierre PierlotChristophe GervaisAnne Sophie DhenainJérôme RocancourtArthur LamarreFlorent BarroisMarie-Christine ColmoneBruno NouvionMarie-Jeanne LechauxLaurent Manaud-PallasCécile MoreauAgnès DavanFranck ChoukrounRémi FrançoisDominique AbihissiraFrançoise BordenaveMarie-Laure SognoSophie VernantBéatrice FauréDelphine HervéNathalie Griffet-LaureSarah DecottigniesPierre NeriniJacques LancelotDidier CostariniEmmanuel CurtCécile GrondardEugène BigotYves PichardJean-François DurezNathalie GantiezChristel RayneauArnaud LeroyKarim StrahmRenaud MalauryJean SemperLysiane MétryOrchestre De Chambre Des Concerts LamoureuxDavid DelacroixRémi BernardMagali CazalHervé MoreauEmeline ConcéNicolas ProstVincent MitterrandSébastien WacheMaud GastinelSarah KahanePierre Monty (2)Julie Chouquer'Cello ensemble of the Lamoureux Orchestra, ParisCyril NormandHa Thanh BertauxVincent BrunAude-Marie DuperretPierre BadolMarlène RivièreAnita PardoDelmas BoussagolPascal BenedettiJérôme GaubertClaire Vergnory-Mion蘇顯達Emmanuelle DeaudonRomain DavazoglouFrançoise De MaubusBertrand BraillardMichel FréchinaMaxime DelattreJean-Michel JavoyAnne GottschalkHélène DusserreJulien Lo Pinto + +448010Igor MarkevitchИгорь Борисович МаркевичIgor Borisovich Markevich (July 27 [August 9], 1912, Kyiv, Russian Empire – March 7, 1983, Antibes, France). Russian, Italian and French conductor and composer of Russian origin. Great-great-grandson of [a3014266]. Brother of [a5819083]. Father of [a1754561]. +He conducted [a448007] from 1957 to 1961.Needs Votehttp://en.wikipedia.org/wiki/Igor_MarkevitchI. MarkevitchI. MarkevicI. MarkevichI. MarkevitchI. MarkevičIgor MarchevitchIgor MarkevicIgor MarkevichIgor Markevitch, ConductorIgor MarkevitjIgor MarkevitschIgor MarkevitsjIgor MarkevičIgor MarkewitchIgor MarkovitchIgor MarkévichIgor MarkévitchIgor MerkevitchIgor-MarkevitchJ. MarkevitchMarkevitchMarkevitschΙγκόρ ΜάρκεβιτςИ. МаркевичИгор МаркевичИгорь Борисович МаркевичИгорь Маркевичايغور ماركيڤيتشイーゴリ・マルケヴィチイーゴル・マルケヴィッチOrchestra dell'Accademia Nazionale di Santa CeciliaOrquesta Sinfónica de RTVE + +448161Rich O'DonnellSt. Louis, Missouri-based percussionist; composer; designer and builder of instruments; teacher; and writer. Not to be confused with [a=Richard O'Donnell (2)], an American classical percussionist and conductor based in Ireland. + +Rich O'Donnell is director of the Electronic Music Studio at Washington University in St. Louis, and co-founder of HEARDing Cats Collective. He spent 43 years with the St. Louis Symphony Orchestra, most of them as principal percussionist.Needs Votehttps://www.richodonnell.com/O'DonnellRichard O'DonnellSaint Louis Symphony OrchestraLeroy Jenkins' Driftwood + +448472David CoxClassical horn player. + +David Cox may also refer to: +- [a=David Cox (3)], member of [a=The Spartacus Barraworn] +- [a=David Cox (4)], member of [a=AutoKratz] +- [a=David Cox (6)], guitarist +- [a=David Cox (10)], guitarist +- [a=David Cox (11)], drummer +- [a=Dave Cox] +Needs VoteThe Academy Of Ancient MusicThe English Concert + +448658Stanley AronsonStanley W. AronsonSaxophonist. b March 9, 1916 in Hartford, d May 19, 2008 CorrectStan AronsonStanle AronsonStanley (Stan, Moose) William AronsonStanley AaronsonStanley ArronsonGlenn Miller And His Orchestra + +448660Bob PriceAmerican jazz trumpeterCorrectRobert PriceWalter PriceWalter Robert (Bob) PriceTommy Dorsey And His OrchestraWoody Herman And His OrchestraGlenn Miller And His OrchestraCharlie Barnet And His OrchestraThe Band That Plays The Blues + +448661Gerald YelvertonUS-American clarinet and saxophone player. Played in the late 30s for the [a6004407] and was recruited from [a77991] after graduation in 1938 at Auburn University as lead saxophonist for his band.CorrectGlenn Miller And His OrchestraAuburn Knights + +448664Bill Conway (2)William G ConwayAmerican vocalist and arranger +Born 25 September 1913 in New York, USA +Died 4 April 1991 in Los Angeles County, California, USA + +He was the baritone vocalist and arranger for [a=The Modernaires], the regular backing vocalist group for the popular 1940s Big Band [a=Glenn Miller and his Orchestra]Needs Votehttps://de.findagrave.com/memorial/3698603/william-g-conwayhttps://adp.library.ucsb.edu/names/202060https://adp.library.ucsb.edu/names/115188B. ConwayBilly ConwayConwayD. ConwayRay ConwayWilliam ConwayThe ModernairesGlenn Miller And His OrchestraThe Crew ChiefsThe Melody Makers (6) + +448769Tommy NewsomThomas Penn NewsomAmerican jazz saxophonist (alto, tenor) and composer, born February 25, 1929 in Portsmouth, Virginia, USA, died April 28, 2007. +Newsom played in the NBC Orchestra on The Tonight Show Starring Johnny Carson, for which he later became assistant director. He joined the band in 1962, and left it when Carson retired in 1992. He also performed and arranged for musicians such as [a=Benny Goodman], [a=Charlie Byrd], [a=Woody Herman], [a=Vincent Lopez] and [a=Louis Bellson].Needs Votehttp://en.wikipedia.org/wiki/Tommy_NewsomNewsomNewsonSSgt Tommy NewsomT. NewsomT. NewsomeT. NewsonT. P. NewsonT.NewsomThomas NewsomThomas NewsonThomas P. NewsomThomas Penn NewsomTom NewsomTom NewsomeTom NewsonTommy Newsom And His Holiday EnsembleTommy NewsomeTommy NewsonBenny Goodman And His OrchestraLouie Bellson Big BandThe DIVA Jazz OrchestraMel Davis SextetThe Ruby Braff-Marshall Brown SextetJack Sheldon's Late Show All-StarsTommy Newsome OrchestraRonnie Bedford Quartet + +448833David Maria GramseGerman violinistCorrectDavid GramseEnsemble ResonanzDeutsche Kammerphilharmonie Bremen + +449046Gary MelvinNeeds VoteUniversity Of North Texas Two O'Clock Lab Band + +449145Rodney NewtonRodney Stephen NewtonRodney Stephen Newton ( Birmingham, July 31, 1945 ) is a British composer, music pedagogue, conductor, percussionist and music publisher. + +Newton studied composition , orchestral conducting , music theory and percussion at the Birmingham School of Music , now: Royal Conservatory of Music Birmingham in Birmingham . After obtaining his diplomas, he became a percussionist with several leading orchestras (BBC TRG Orchestra 1967-1970, English National Opera Orchestra 1974-1985, London Symphony Orchestra). He completed his studies at the University of Salford and graduated there to Ph.D. (Philosophiæ Doctor) Needs VoteThe Academy Of Ancient MusicLocke Brass Consort + +449216Bob RussellSidney Keith RussellAmerican songwriter, born 25 April 1914 in Passaic, New Jersey, USA and died February 1970 in Beverly Hills, California, USA. Grandfather of [a=Luther Russell]. Inducted into the Songwriters Hall of Fame in 1970. + +Please note: This is not [a=Bob Russell (2)], performer of synthesizer covers versions. +Needs Votehttp://en.wikipedia.org/wiki/Bob_Russell_(songwriter)http://www.allmusic.com/artist/bob-russell-mn0000069912/biographyhttps://adp.library.ucsb.edu/names/105700B RusselB RussellB- RussellB. RusselB. RussellB.RusselB.RussellB.RusslellBie RusselBob RuffleBob RussallBob RusselBob Russell IIBob RuwwellBob. RussellBobb RussellBobby RusselBobby RussellBurt RussellD. RussellG. RusselJ. RussellK. RussellK.S. RussellKeithKeith RussellKeith Sidney RussellL. RussellLussellPaul RussellPina G. Roussels SR. Charles / S.K. RussellR. RussellRob RussellRobert RusellRobert RussellRossellRusellRusnelRusseellRusselRussel KeithRussellRussell B.Russell ScottRussell, BobRussell-KeithRussilRussillS RussellS. K. RussellS. RussellS.K RussellS.K. "Bob" RussellS.K. 'Bob' RussellS.K. (Bob) RussellS.K. RusselS.K. RussellS.K.RussellS.RusselSidney Keith RussellSidney RussellБ. РасселБ. РасселлРасселSidney Keith Russell + +449273Tim Stone (2)Tim StoneAmerican singerCorrectThe Four SeasonsSwing (5) + +449542Werner EhrlicherGerman actor, voice actor and dubbing speaker. He was born 4 March 1927 in Oer-Erkenschwick, Germany.CorrectWerner Ehrlichter + +449575Matt HarrisMatt HarrisDJ and producer originally from Cornwall, UK. Brother of [a=Scott Harris].Needs VoteHarrisM HarrisM. HarrisMattMatthew HarrisDJ X-CessMatt ODGhost UnitOrgan DonorsX-cess & G-neticThe NumbskullsBlue PrintXcite & XcessDivine Intervention (2) + +449591Takeshi KanazawaJapanese violinist.Needs VoteOrchester der Bayreuther FestspieleDas Neue OrchesterPhilharmonie Zuidnederland + +450251Arthur EnsJazz guitaristNeeds VoteArie EnsGlenn Miller And His Orchestra + +450252Charles FrankhauserJazz trumpet player, also credited as Chuck Frankhauser.Needs Votehttps://www.allmusic.com/artist/charles-frankhauser-mn0001513605C. FrankhauserChalie FrankhauserCharile FrankhauserCharles FrankenhauserCharles FrankhouserCharlie FrankenhauserCharlie FrankhauserCharlie FrankhouserChas. FrankhauserChuck FrankenhauserChuck FrankenhouserChuck FrankhauserChuck FrankhouserFrank FrankhouserWoody Herman And His OrchestraGlenn Miller And His OrchestraBenny Goodman And His OrchestraWoody Herman & The HerdThe Orchestra (4) + +450300Tom Smith (4)Brass musician (best known as a bass trombonist) based in Glasgow, Scotland. Additionally plays tuba, euphonium and violin. +Masters degree from Royal Scottish Academy of Music and Drama (Royal Conservatoire of Scotland). + +Frequent session work. + +Also associated with the Royal Scottish National Orchestra, National Youth Orchestra of Scotland (Junior and Senior Orchestras), the Junior Royal Conservatoire of Scotland, the "Big Noise" (Sistema Scotland) projects, and West of Scotland Schools Concert Band. +Needs Votehttps://encoremusicians.com/Tom-Smithhttps://www.linkedin.com/in/tom-smith-76a66130?originalSubdomain=ukRoyal Scottish National OrchestraBBC Scottish Symphony OrchestraScottish Chamber OrchestraThe Scottish Concert OrchestraThe Scottish Festival Orchestra + +450355Stephen FreemanAmerican classical bass clarinetist, active for New York Symphonic from 1966 to 2009. +He passed away in March 2014Needs VoteNew York Philharmonic + +451368Mark BihlerMastering and mixing engineer at Calyx Mastering, Berlin, Germany. + +Needs Votehttp://www.calyx-mastering.comBihlerMarc BihlerMarkMark.Bridge & TunnelCapricornsCalyx MasteringWhite Daughter + +451472Claude CaudronGraphic designer.Needs Votehttp://www.encyclopedisque.fr/artiste/9849.htmlC CaudronC. CaudronC.CaudronCaudronClaude (C)ClaudeCaudron + +451535Bayerisches StaatsorchesterThe Bayerisches Staatsorchester (Bavarian State Orchestra) is the orchestra of the [l587621] (Bavarian State Opera) based in München (Munich), Bavaria. It was founded by composer [a=Ludwig Senfl] in 1523. +For the related chorus, use [a1933252]Needs Votehttps://www.staatsoper.de/staatsorchester/https://en.wikipedia.org/wiki/Bavarian_State_OrchestraBavaria State Opera OrchestraBavarian Opera OrchestraBavarian State OperaBavarian State Opera OrchestraBavarian State Opera Orchestra MunichBavarian State Opera Orchestra, MunichBavarian State OrchestaBavarian State OrchestraBavarian State Orchestra Of MunichBavarian State Orchestra, MunichBavarian State Radio OrchestraBavarian State Symphony OrchestraBavarian State-Opera OrchestraBavarian Symphony OrchestraBavarian state orchestraBayer. StaatsorchesterBayer. Staatsorchester MünchenBayer. Staatsorchester, MünchenBayerin Valtionoopperan OrkesteriBayerische StaatsoperBayerische Staatsoper MünchenBayerische Staatsorchester MünchenBayerischen StaatsoperBayerischen StaatsorchesterBayerischen Staatsorkester MünchenBayerischer StaatsorchesterBayerisches Sinfonie-OrchesterBayerisches StaatsopernorchesterBayerisches Staatsorchester MunchenBayerisches Staatsorchester MünchenBayerisches Staatsorchester, MünchenBayerisches Staatsorchester,MunichBayerisches StaatsorchestraBayerisches Symphonie-OrchesterBayerska Statens OperaorkesterBayerska Statsoperans Orkester, MünchenBayerska Statsoperaorkestern, MünchenBayerska StatsorkesternBayrisch. StaatsorchesterBayrische StaatsoperBayrische Staatsoper MünchenBayrischen StaatsorchesterBayrisches StaatsorchesterBayrisches Staatsorchester MünchenBeiers StaatsorkestBeierse StaatsoperaBläser Des Bayrischen StaatsorchestersBläsersolisten Des Bayerischen Staatsorchesters MünchenBlåsare Ur Bayerska StatsorkesternCappella DI Stato BavareseChamber Orchestra Of The State Of BavariaChorus of the Bavarian State Opera, MunichDas Bayerische StaatsorchesterDas Bayerische Staatsorchester MünchenDas Bayerisches StaatsorchesterDas Bayrische StaatsorchesterDas Orchester Der Bayerischen Saatsoper MünchenDas Orchester Der Bayerischen StaatsoperDas Orchester Der Bayerischen Staatsoper MünchenDas Orchester Der Bayerischen Staatsoper, MunchenDas Orchester Der Bayrische Staatsoper MünchenDas Orchester der Bayerischen Staatsoper MünchenDie Bayerische StaatskapelleDie Bayerische StaatsoperKammerorchester Der Bayerischen StaatsoperKammerorchester Der Bayrischen StaatsoperKammerorchester der Bayerischen StaatsoperKör Och Orkester Från Bayerska Statsoperan I MünchenL'Orchestre de L'Opéra D'Etat de MunichL'Orchestre de l'Opéra d'Etat de MunichMembers of Bavarian State OrchestraMembers of the Orchester der Bayerischen Staatsoper MünchenMembers of the Orchestra of the Münchner StaatsoperMembers of the Orchestra of the Münchner StaatsoperMitgl. des Bayr. StaatsorchestersMitglieder Der Münchener StaatsoperMitglieder Der Münchner StaatsoperMitglieder Des Bayerischen StaatsorchestersMitglieder Des Bayerisches StaatsorchestersMitglieder Des Orchesters Der Bay. Staatsoper MünchenMitglieder Des Orchesters Der Bayerischen StaatsoperMitglieder Des Orchesters Der Bayerischen Staatsoper MünchenMitglieder Des Orchesters Der Münchener StaatsoperMitglieder Des Orchesters Der Münchner StaatsoperMitglieder des Bayerischen StaatsorchestersMitglieder des Orchesters der Münchner StaatsoperMunich Bavarian OrchestraMunich Festival OrchestraMunich Opera OrchestraMunich State Opera Orch.Munich State Opera OrchestraMünchener OpernorchesterMünchener StaatskapelleMünchener StaatsopernorchesterMünchner Residenz OrchesterMünchner Residenz-OrchesterMünchner StaatskapelleOpera Di Stato BavareseOpera National de BavièreOpernorchester MünchenOpéra De MunichOrch. D.Bayerischen StaatsoperOrch. d. Bayer. Staatsoper MünchenOrch. d. Bayerischen StaatsoperOrchdester der Bayerischen Staatsoper MünchenOrchesterOrchester Der Bayerischen StaatsoperOrchester Der Bayerischen StaatsoperOrchester Der Bay. StaatsoperOrchester Der Bayer. StaatsoperOrchester Der Bayerische Staatsoper MunchenOrchester Der Bayerische Staatsoper MünchenOrchester Der Bayerischen SaatsoperOrchester Der Bayerischen StaasoperOrchester Der Bayerischen Staasoper MünchenOrchester Der Bayerischen StaatsopeOrchester Der Bayerischen StaatsoperOrchester Der Bayerischen Staatsoper MunchenOrchester Der Bayerischen Staatsoper MünchenOrchester Der Bayerischen Staatsoper MüchenOrchester Der Bayerischen Staatsoper MünchenOrchester Der Bayerischen Staatsoper, MünchenOrchester Der Bayerischen Staatsoper. MünchenOrchester Der Bayerisches Staatsoper MünchenOrchester Der Bayerrischen Staatsoper MünchenOrchester Der Bayrischen StaatsoperOrchester Der Bayrischen Staatsoper MünchenOrchester Der Münchner StaatsoperOrchester Der Staatsoper MunchenOrchester Der Staatsoper MünchenOrchester Der bayrischen StaatsoperOrchester Des Bayerischen StaatsoperOrchester Des Bayerischen Staatsoper MünchenOrchester Des Bayerischen Staatsoper, MünchenOrchester MünchenOrchester der Bayerische Staatsoper MünchenOrchester der Bayerischen StaatsoperOrchester der Bayerischen Staatsoper MünchenOrchester der Bayerischen StaatsorchesterOrchester der Bayerischen StastsoperOrchester der Bayrischen StaatsoperOrchester der Bayrischen Staatsoper MünchenOrchester der Münchner StaatsoperOrchester der Staatsoper MünchenOrchesters Der Bayerischen StaatsoperOrchesters Der Bayerischen Staatsoper MünchenOrchesters Der Münchener StaatsoperOrchestraOrchestra Del Nationaltheater Di MonacoOrchestra Del Nationaltheater Di Monaco Di BavieraOrchestra Dell'Opera Di Stato Bavarese Di MonacoOrchestra Dell'Opera Di Stato Di MonacoOrchestra Dell'Opera Di Stato Di Monaco Di BavieraOrchestra Della Bayerische StaatsoperOrchestra Della Staatsoper Di MonacoOrchestra Der Bayerischen Staatsoper MunchenOrchestra Di Stato BavareseOrchestra Of Bavarian State OperaOrchestra Of Munich State OperaOrchestra Of The Bavarian State Opera, MunichOrchestra Of The Bavarian State OperaOrchestra Of The Bavarian State Opera MunichOrchestra Of The Bavarian State Opera, MunichOrchestra Of The Bayerisch State OperaOrchestra Of The Bayerische StaatsoperOrchestra Of The Bayerischen Staatsoper Of MunichOrchestra Of The Munich StaatsoperOrchestra Of The Munich State OperaOrchestra Of The Münchner StaatsoperOrchestra Of The Staatsoper, MunichOrchestra Of The State Opera, MunichOrchestra Of The The Bavarian State Opera, MunichOrchestra of the Bavarian State OperaOrchestra of the Bavarian State Opera, MunichOrchestra of the Munich State OperaOrchestre D'Etat De BavièreOrchestre D'État BavaroisOrchestre D'État De BavièreOrchestre De BavièreOrchestre De L'Etat De BaviereOrchestre De L'Opéra D'Etat De BavièreOrchestre De L'Opéra D'État De BavièreOrchestre De L'Opéra D'État De MunichOrchestre De L'Opéra De Bavière De MunichOrchestre De L'Opéra De MunichOrchestre De L'Opéra De MünichOrchestre De L'Opéra D’État De MunichOrchestre De L'opéra De MunichOrchestre Des Opéras De MünichOrchestre National D'État De BavièreOrchestre National De BavièreOrchestre Philharmonique BayerOrchestre d'Etat De BavièreOrchestre d'État De BavièreOrchestre de L'Opéra D'Etat de BavièreOrchestre de L'Opéra de MünichOrchestre de L’opéra De MunichOrchestre de l'Opéra d'Etat de BavièreOrchestre de l'Opéra de MunichOrchestre de l’opéra BavaroisOrkest Der Staatsoper MünchenOrkest Van De Beierse Staatsopera MünchenOrkest van de Beierse Staatsopera MünchenOrkest van de Staatsopera MünchenOrkesterOrkester Från Bayerska Statsoperan I MünchenOrquesta De La Baja BavieraOrquesta De La Opera De MunichOrquesta De La Opera Del Estado De BavariaOrquesta De La Opera Del Estado De BavieraOrquesta De La Ópera Del Estado De Baviera, MunichOrquesta Del Estado De BavieraOrquesta de la Opera Del Estado de MunichOrquesta de la Opera Nacional de BavieraOrquestra Da Ópera Estadual Da BavieraOrquestra Do Estado Da BaváriaOrquestra Estadual Da BavieraStaatsoper Bayerisches StaatsorchesterStaatsoperorchester MunichThe Bavarian State Opera OrchestraThe Bavarian State Opera Orchestra, MunichThe Bavarian State Opera, MunichThe Bavarian State OrchestraThe Bavarian State Symphony OrchestraThe Bayerisch State OrchestraThe Chamber Orchestra Of The Bavarian State OperaThe Munich State Opera OrchestraThe Munich State OrchestraThe Orchestra Of The Bavarian State Opera, MunichThe Orchestra Of The Munich State OperaΚρατική Ορχήστρα Της ΒαυαρίαςБаварский Государственный ОркестрОркестр Баварской Государственной ОперыОркестр Мюнхенской Государственной ОперыОркестр Мюнхенской Оперыバイエルン国立管弦楽団Fritz SonnleitnerRobert TucciAllan BergiusGeorg HörtnagelIvor BoltonBernd HerberUwe FüsselIngo SinnhofferFranz AmannHermann KlemeyerMarkus MöllenbeckRoland MetzgerStefan GeigerFritz RufAxel Wolf (2)Thomas JauchSven StrunkeitFrederic TardyWalter HauptKlaus WallendorfUlrich PförtschAndreas GroteKurt GuntnerCorinna DeschHenrik WieseAlexander Von PuttkamerCarl LentheDietrich CramerJanis OlssonChristoph HellmannYamei YuHermann HollerJános MátéYves SavaryFelix GargerleMichael RieberGiorgi GvantseladzeBirgitta RoseWolfgang HaagClemens MüllnerAndreas SchablasMarkus Wolf (2)Johannes DenglerClaudio EstayAndrea IkkerChristoph BachhuberStefan AmbrosiusRaymond CurfsFranz DraxingerArben SpahiuPeter WöpkeChrista MilradSusanne GargerleRita RoszaYukino ThompsonTilo WidenmeyerDavid SchultheissHans PizkaRainer SchmitzKurt Meister (2)Gottfried SirotekJosef NiederhammerDietrich Von KaltenbornFriedrich Kleinknecht (2)Reinhard Schmid (3)Darima TcyrempilovaMarkus Kern (4)Daniel Schmitt (7)Hansjörg ProfanterGerhard BreinlWolfgang LeopolderRenate NollMichael Arlt (2)Jean HommelKatharina LindenbaumFlorian RufMichael DurnerCäcilie SproßIlona Then-BerghSteffen SchmidKatharina KutnewskyRupert BuchnerJakob SpahnJussef EisaThomas Herbst (3)Barbara BurgdorfFelix Kay WeberDania LempDemetrius PolyzoidesRobert KamleiterGaël GandinoAndreas RieplAdrian MusteaMilena ViottiGeorg Donderer (2)Traudi PauerStephan FinkenteyCasey RipponMarkus Schön (2)Opera BrassStefan Tischler (2)Katrin Hoffmann (2)Martin KlepperSusanne Von Hayn + +451852Joan AthertonJoan Atherton2nd Violin of the [b]London Sinfonietta[/b].CorrectJean AthertonLondon SinfoniettaLondon Harpsichord Ensemble + +451853Mark Van De WielMark van de WielBritish clarinet player and teacher. Born in 1958 in Northampton, England, UK. +He studied at the [l290263]. He was appointed principal clarinettist with [a=The Welsh National Opera Orchestra] and subsequently with the [b]Glyndebourne Touring Opera[/b]. Founding member & principal of the [a=Endymion Ensemble] since its formation in 1980. He was Principal Clarinet with [a=The Composers Ensemble] (1992-2000). Principal clarinettist of the [a=Philharmonia Orchestra] (since 2000), [a=London Sinfonietta] (since 2002), and [a=The London Chamber Orchestra]. Teacher at the [l527847].Needs Votehttps://www.feenotes.com/database/artists/wiel-mark-van-der/https://en.wikipedia.org/wiki/Mark_van_de_Wielhttps://www.oxfordlieder.co.uk/artist/47http://www.morgensternsdiaryservice.com/WebProfile/van-de-wiel_m_1377.shtmlhttps://philharmonia.co.uk/bio/mark-van-de-wiel/https://londonsinfonietta.org.uk/players/mark-van-de-wielhttp://www.endymion.org.uk/mark_vandewiel.htmhttps://www.ram.ac.uk/people/mark-van-de-wielhttps://www.hyperion-records.co.uk/a.asp?a=A5910https://malmolive.se/biografi/mark-van-de-wielhttps://www.imdb.com/name/nm4047779/Mark Van De WeilMark van de WielMark van der WielMark ven de WielLondon SinfoniettaPhilharmonia OrchestraThe London Chamber OrchestraThe Nash EnsembleThe Welsh National Opera OrchestraThe Composers EnsembleEndymion Ensemble + +451854David AlbermanBiritsh classical violinist. Born in 1959 in London, England, UK. +He studied at the [l527847]. After playing with [a=The Academy Of St. Martin-in-the-Fields] and the London Symphony Orchestra, he became a concertmaster of [a=The Chamber Orchestra of Europe]. He joined [a=Arditti Quartet] in 1986 and, in 1995, having left the Quartet, he formed a Duo with the pianist [a=Rolf Hind], and, in 1998, became Principal Second Violin of the [a=London Symphony Orchestra]. Member of the [a=Hebrides Ensemble].Needs Votehttps://www.feenotes.com/database/artists/alberman-david-1959-present/https://www.musicacademy.org/profile/david-alberman/https://lso.co.uk/orchestra/players/strings.html#First_violinshttps://www.hebridesensemble.com/personnel/david-alberman/https://pad.philharmoniedeparis.fr/how-can-young-musicians-learn-to-become-professional-orchestra-players-conference.aspxhttps://www.dacapo-records.dk/en/artists/david-albermanhttps://www.imdb.com/name/nm0016420/AlbermanDavid AlbermannLondon Symphony OrchestraLondon SinfoniettaArditti QuartetThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of EuropeHebrides EnsembleYoung Musicians Symphony Orchestra + +451911Gregory HerbertGregory Delano HerbertAmerican jazz alto and tenor saxophonist, clarinetist and flutist, born 19 May 1947 in Philadelphia, Pennsylvania, died from a drug overdose 31 January 1978 in Amsterdam, The Netherlands while on tour with Blood, Sweat & Tears.Needs Votehttp://en.wikipedia.org/wiki/Gregory_Herberthttps://news.allaboutjazz.com/remember-gregory-herberthttps://books.google.se/books?id=P78DAAAAMBAJ&pg=PA58&lpg=PA58&dq=greg+herbert+saxophone&source=bl&ots=8JxQfpOklb&sig=ACfU3U2V3d2j8RLsIfuQ9H_rJkn-eQujcA&hl=en&sa=X&ved=2ahUKEwiM-tz88b_pAhVOr4sKHXX4Ar44ChDoATAEegQICxAB#v=onepage&q=greg%20herbert%20saxophone&f=falseGreg HerbertGregory D. HerbertHerbertBlood, Sweat And TearsJohnny ColesWoody Herman And His OrchestraThad Jones / Mel Lewis OrchestraNational Jazz EnsembleWoody Herman And The Thundering HerdThad Jones QuartetThad Jones & Mel LewisHarold Danko Quartet + +452011Tony LujanAmerican trumpeter, born in Albuquerque, New Mexico in 1956, died July 27, 2022.Needs VoteLujanTony LuJonTony LuhanLuis Bonilla Latin Jazz All StarsGerald Wilson OrchestraTito Puente & His Latin Jazz All StarsThe George Stone Big BandJim Morris Brass PlusRumbaJazzMartin Wind/Buggy Braune Quintet + +452141Daniele PaceDaniele PaceItalian singer, lyricist and composer, born 20 April 1935 in Milan and died 24 October 1985 in Milan due to heart attack. +Father of [a=Matteo Pace] and [a=Attilio Pace].Needs Votehttps://it.wikipedia.org/wiki/Daniele_Pacehttps://en.wikipedia.org/wiki/Daniele_Pacehttps://www.imdb.com/name/nm0655121/B. PaceC. PaceCD PaceD PaceD PacoD, PaceD. PacD. PacaD. PacceD. PaceD. PacheD. PacsD. PadeD. PageD. PanecD. PaseD. PlaceD. SpaceD./PaceD.P. PaceD.PaceD.PacoD.e PaceDaniel PaceDaniela PaceDanieleDaniele - PaceDaniele / PaceDaniele PacDaniele PaseDaniele PlaceiDaniele PáceDaniele-PaceDanieliDanielle PaceDanielle PacoDanielo PaceDanièle PaceDanièle PageDe PaceDepazzeDi PaceF. PaceFaceI. PaceM. D. PaceM. PaceO. PaceP aceP. DanieleP. PacePacaPacePace D.Pace DanielePace, D.Pace, DanielePace,DPacelPaciPacéPagePalePanceParcePasePazePcePeacePlacePocePowerPraceS. PaceT. PaceTaceTaseД. ПацеД. ПачеПацеПацэПачеפאצ'הダニエル・パーチェパーシUnder FinalSquallorDonna LaserI Marcellini + +452264Harold SpinaAmerican composer, born 21 June 1906, died 18 July 1997.Needs Votehttps://en.wikipedia.org/wiki/Harold_Spinahttp://www.allmusic.com/artist/harold-spina-mn0000669629https://www.imdb.com/name/nm0818825/bio?ref_=nm_ov_bio_smhttps://adp.library.ucsb.edu/names/106383H SpinaH. EspinaH. SpainH. SpinaH. SpinahH. SpinerH. SpivaH.SpinaH.スピナHarol SpinaHarold Spina'sHarold SpinerHarold SpiraHarold-SpinaHaroldo SpinaHoward SpinaJack SpinaPninaSpinaSpina-HaroldSpineSpinerSpinnaSpinoSpinsSpiraSpunaSpînaStinaE. D. ThomasJuan Y. D'LorahThe Harold Spina SingersThe Harold Spina Orchestra + +452442Marco VerkuylenMarinus J.A.C.M. VerkuylenNeeds Votehttp://www.marcov.nl/http://www.myspace.com/marcovofficialhttp://www.facebook.com/marco.verkuylenhttp://www.facebook.com/pages/Marco-V/112852108725448http://www.bebo.com/MarcoV-Propagandahttp://soundcloud.com/marco-vhttp://www.youtube.com/marcovofficialM VerkuylenM. VekuylenM. VerkuijenM. VerkuijlenM. VerkujilenM. VerkuyenM. VerkuylenM. VerkuylerM. VerkuytenM. VeruylenM.VerkuijlenM.VerkuyenM.VerkuylenMarc VerkuylenMarco Marinus J.A.C.M. VerkuylenMarco VerkuiilenMarco VerkuijlenMarco VerkujlenMarco VerkuljlenMarco VerkuyfenMarco VerkuytenMarinus J.A.C. VerkuylenMarinus VerkuijlenVerkuijlenVerkuylenVerkuylen, MarcoMarco VMarco SoloDan MarcT-MarcHuftiVision 20/20Southside SpinnersPhoney FablesOctagonMagic From AboveCollusionMarco V & BenjaminOut Of GraceSolicitousGuerillaA Special PersonLocusEve@Mo'HawkLondon BoySouth WestThe Fusion8th WonderCrowd PleaserProFoolsArti$tryThe OriginatorDiminishMarvin's ClubStacey ChandlerJefferseiffMC BassPeace & Jammin'QuoteVK-38Viscious CurvesNightstalkers (2)The BeatshopIntoxicaSlider (2)Unknown DeejayDisco MacabreFunklubTales From The ClubImage (3)Mad ManAerosoulStars On 99AragonDa Rubba CruHumpty And DumptyCypher (6)Charades (2)Madox (2)MV&BThe Crew (2)Cosmic Project (3) + +452556Taswell BairdTaswell Joseph Baird, Jr.Jazz trombonist. + +Born : June 24, 1922 in St. Louis, Missouri. +Died: November 22, 2002 in Oakland, California + +Taswell Baird, Jr (sometimes known as "Little Joe" from his middle name) was born in St Louis. He spent 50 years as a touring musician working with musicians "from [a64694] to [a300050]", and played on recordings by [a31615], [a75617] and [a38201]. + +During the final year of his life, when he could no longer play the trombone, he took up the piano. + +On November 5th, 2002, he was thrown from his wheelchair and beaten by robbers who stole $80 from him outside of his West Oakland retirement home. He died seventeen days later of injuries sustained during the robbery. +Needs Votehttps://de.wikipedia.org/wiki/Taswell_Baird"Little Joe" Taswell BairdJ. BairdJoe "Taswell" BairdJoe BairdJoe Taswell BairdTaswell "Joe" BairdTaswell "Little Joe" BairdDizzy Gillespie And His OrchestraLouis Armstrong And His OrchestraBilly Eckstine And His OrchestraAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraJay McShann And His Orchestra + +452558Joe Harris (3)Joseph Allison HarrisAmerican jazz drummer and percussionist +Born 23 December 1926 in Pittsburgh, USA, died 27 January 2016 in Pittsburgh. USANeeds Votehttps://adp.library.ucsb.edu/names/358894George HarrisHarrisJ. HarrisJoe HarrisJohn HarrisДжо ХэррисPeter Herbolzheimer Rhythm Combination & BrassNiagaraQuincy Jones And His OrchestraClarke-Boland Big BandDizzy Gillespie And His OrchestraThe Bud Powell TrioDizzy Gillespie Big BandDon Byas QuartetDizzy Gillespie SextetStan Getz QuartetLester Young QuintetThe Kenny Clarke - Francy Boland SextetBill Smith QuintetIdrees Sulieman QuartetDon Byas QuintetThe Teddy Charles TentetKing Perry & His Pied PipersKenny Clarke And His CliqueSonny Rollins TrioChubby Jackson's OrchestraFreddie Redd TrioJames Moody And His BandBenny Bailey QuintetJimmy Cleveland And His All StarsChris Powell And The Five Blue FlamesThe Quincy Jones Big BandArne Söderlunds OrkesterRay Brown's All StarsBenny Bailey QuartetFritz Pauer Quartet + +452559William ShepherdJazz trombonist (1940s, 50s) who played with [a=Dizzy Gillespie] and [a=James Moody] among others.Needs Votehttps://www.allmusic.com/artist/william-shepherd-mn0001237756Bill ShepardBill SheperdBill SheperedBill ShephardBill ShepheardBill ShepherdKen ShepherdW. ShepherdWilliam SheperdWilliam ShepperdWm. SheppardWm. ShepperdDizzy Gillespie And His OrchestraDizzy Gillespie Big BandJames Moody And His Band + +452639Martin StenssonSwedish classical violinistNeeds VoteMartin StensonSveriges Radios SymfoniorkesterKungliga HovkapelletThe Nàu Ensemble + +452768Mike Lewis (7)Peter Michael LewisAmerican composer, arranger and producer active in Miami, FL. Born August 23, 1938 in Danville, Virginia, US. Has worked with many many artists including Crosby, Stills & Nash, Rod Stewart, Julio Iglesias and KC & The Sunshine Band. Toured as saxophonist with the orchestras of Jimmy Dorsey and Charlie Spivak in the 1960s. Arranger for the Jackie Gleason TV Show, Miami Beach from 1968 to 1970, for the House orchestra, Deauville Hotell, Miami Beach from 1965 to 1970. + +Do NOT confuse with the doo wop/soul arranger, producer, songwriter from Brooklyn, NY, [a=Mike Lewis (39)] (both worked with [a=Jimmy Beaumont] and [a=Bert DeCoteaux]). +Needs Votehttp://mlewis.comhttps://www.henrystonemusic.com/interview-with-mike-lewis-on-tk-records/http://www.afm655.org/item/2006/09/profile-mike-lewis/category/11https://www.imdb.com/name/nm6164134/LewisM. LewisMichael LewisMike L. LewisCharlie Spivak And His OrchestraJimmy Dorsey And His OrchestraStan Fields SextetMike Lewis Orchestra + +453290Martin RobinsonClassical cellist. +Former member of the [a=London Symphony Orchestra] (1967-1970).Needs VoteRobinson M.Robinson. MLondon Symphony OrchestraThe Martyn Ford OrchestraThe New SymphoniaThe Taliesin OrchestraThe London Cello Sound + +453294Brian HawkinsBritish viola player. Born in 1936 in York, Yorkshire and the Humber, England, UK - Died in October 2019. +He was a member of the [a590903] until 1965, followed by three years with the [a=David Martin Quartet]. He was a founder member of [a2008871] and the [a434336]. He was a regular member of the [a415725] and [a832962].Needs Votehttps://www.britishviolasociety.co.uk/wp-content/uploads/2019/11/Brian-Hawkins-1936-2019.-Remembered-by-Tully-Potter.pdfB. HawkinsEnglish Chamber OrchestraOrchestre Révolutionnaire Et RomantiqueNational Youth Orchestra Of Great BritainThe London VirtuosiThe Astarte Session OrchestraDavid Martin QuartetThe London Oboe Quartet + +453402Dietrich KnotheGerman conductor and chorusmaster, born 6 January 1929 in Dresden, Germany and died 7 September 2000 in Berlin, Germany. +in 1955 he was the founder of the ensemble [a=Capella Lipsiensis]Needs VoteD. KnotheDieter KnotheDietrich KnothKarl-Dietrich KnotheKnotheДитрих КнотеRundfunkchor LeipzigThomanerchorCapella LipsiensisKammerorchester BerlinCappella Sagittariana DresdenHornquartett Dietrich Knothe + +453405Dietrich SchmuhlTrumpeter.Needs VoteDietrich SchmuhtStaatskapelle Berlin + +453408Dieter ZahnDieter Zahn (born 8 February 1940) is a German double bassist and violone player.Needs VoteRundfunk-Sinfonie-Orchester LeipzigCapella LipsiensisKammerorchester BerlinCapella FidiciniaGruppe Neue Musik "Hanns Eisler" LeipzigOrchester Der Komischen Oper Berlin + +453409Gerd SchenkerGerman classical percussionist, born 1948 in Zeulenroda.Needs VoteGert SchenkerRundfunk-Sinfonie-Orchester LeipzigGroßes Rundfunkorchester LeipzigGruppe Neue Musik "Hanns Eisler" LeipzigMDR Sinfonieorchester + +453850John LaportaJohn Daniel LaPortaAmerican jazz saxophonist, clarinetist, composer, arranger, author & educator +Born 1 April 1920 in Philadelphia, Pennsylvania, USA, died 12 May 2004 in Sarasota, Florida, USA + +He played alto, tenor and baritone saxophones. He was a founding member of the Jazz Composers Workshop. He played with [a=Bob Chester], [a=Charlie Parker], [a=Lennie Tristano], [a=Woody Herman], [a=Duke Ellington], [a=Neal Hefti], [a=Bill Harris], [a=Charles Mingus], [a=Stan Getz], [a=Bill Evans], [a=Billy Eckstine] and many others. In the 1980 he was a featured soloist with [a=Herb Pomeroy]'s big band. +After earning his Master's degree, LaPorta joined the faculty of Berklee School of Music in 1963 and remained there for over thirty years until he retired to Florida. He played a pivotal role in the earliest stage of formalized American jazz education, shaping the Berklee curriculum and influencing the artistic lives of thousands of students. He wrote fifteen books on music education and over two hundred compositions, and assisted with Stan Kenton's jazz camps. In 1985 he returned to the recording studio to wax [i]Alone Together[/i]. His last album was [i]Life Cycle[/i] in 1999.Needs Votehttps://en.wikipedia.org/wiki/John_LaPortahttps://www.allaboutjazz.com/musicians/john-laportahttps://jazztimes.com/archives/john-laporta-themes-and-variations/https://www.richardvacca.com/on-may-12-2004/"Jayell Porter"J. La PortaJ. LaPortaJ. la PortaJ.LaPortaJohn La PortaJohn La PorteJohn La-PortaJohn LaPortaJohn LaPorteLa PortaLaPortaLaportaLe PortaGil Evans And His OrchestraWoody Herman And His OrchestraMetronome All StarsNeal Hefti's OrchestraCharles Mingus Jazz WorkshopJohn La Porta GroupGeorge Russell OrchestraBill Harris & His New MusicOrquesta CasablancaWoody Herman And The Fourth HerdJohn LaPorta SextetThe Charlie Mingus ModernistsJohn La Porta And His OrchestraBarry Ulanov's All Star Modern Jazz MusiciansThe John LaPorta QuartetRusty Dedrick And The Ten Man BandJohn LaPorta Trio + +453854Hobart DotsonAmerican jazz trumpeter. +Born : January 13, 1922 in Beloit, Wisconsin. +Died : January 01, 1971 in Brooklyn, New York. + +Hobart Dotson played with : "Gerald Wilson Big Band", Wilbert Baranco, Charles Mingus, Billy Eckstine, "Duke of Swing", Danny Belloc, Horace Henderson, Sun Ra and others. +Needs Votehttps://de.wikipedia.org/wiki/Hobart_DotsonDodsonDotsonDotson Hobart Jr.H. DotsonHobant DotsonHobart DodsonHobart DolsonHobart/DotsonSlide Hampton OrchestraBilly Eckstine And His OrchestraSlide Hampton OctetWilbert Baranco OrchestraThe Sun Ra ArkestraCharles Mingus OctetJimmy Dale Band + +453937Michael Anthony (5)LA-based session & jazz guitarist. +Now based in Albuquerque, NMNeeds Votehttp://www.michaelanthonyonline.com/(Boomer)Mike AnthonyGerald Wilson Orchestra + +453952Graham EdenGraham EdenCo-owner of the [l=Shock Records] label.Needs VoteEdenG. EdenDigital MastersBrain BashersTekno KingsSpeedoShockwave (2)Neo & Barbwire + +454152Charlie LyonsNeeds VoteC. LyonsC.LyonsCharlieJez & Charlie + +454154Jez WintersCorrectJ WintersJ. WintersJ.WintersJeremy WintersJezJez & Charlie + +454276Barbara Herr OrlandClassical oboist.Needs VoteSaint Louis Symphony Orchestra + +454293Philharmonia OrchestraLondon-based orchestra founded in 1945 by [a841734]. [a846301] conducted the orchestra's opening concert on 27 October 1945. In March 1964, Legge announced the orchestra’s disbanding. The players rallied, took matters into their own hands, elected a governing body, added 'New' to the title (see [a=New Philharmonia Orchestra]) and carried on, first up with [a=Otto Klemperer] conducting [a95544]’s "Choral Symphony". The 'New' was dropped in 1977, the orchestra’s third era celebrated with a Beethoven concert under [a=Riccardo Muti] and pianist [a=Sviatoslav Richter]. Since 1995 it has been based in the [l264335]. +For chorus/choir credits use [a833169]. +Please consider also: +- [a=Members Of The Philharmonia Orchestra] +- [a=The Philharmonia Chamber Orchestra] +- [a=Philharmonia Chamber Artists] +- [a=Philharmonia Chamber Players] +- [a=The Philharmonia String Orchestra] +- [a=Strings Of The Philharmonia Orchestra] +- [a=The Philharmonia Soloists] +- [a=Philharmonia String Quartet] +- [a=Philharmonia Wind Quartet] + +[b]For recordings between 1964-1977 please use [a=New Philharmonia Orchestra] if stated that way on the release[/b]. +[b]For fictitious orchestras, conducted by [a=Alfred Scholz] (or one of his aliases), please check: [a=Philharmonia Orchestra (2)], [a=Philharmonic Orchestra], or [a=The Philharmonic Orchestra (2)][/b]. +[b]Not to be confused with the [a271875][/b].Needs Votehttps://en.wikipedia.org/wiki/Philharmonia_Orchestrahttps://www.philharmonia.co.uk/https://www.harrisonparrott.com/artists/philharmonia-orchestrahttps://www.bachtrack.com/performer/philharmonia-orchestrahttps://www.musicianbio.org/philharmonia-orchestra/https://www.naxos.com/Bio/OrchestraEnsemble/Philharmonia_Orchestra/46330http://www.dennisbrain.net/philh45.htmlhttp://www.dennisbrain.net/philh51.htmlhttp://www.dennisbrain.net/philh52.htmlhttp://www.dennisbrain.net/philh55.htmlhttps://www.allformusic.fr/philharmonia-orchestrahttps://www.schoenberg.at/diskographie/names/groups/philharm.htmhttps://www.zasluchani.pl/artysta/philharmonia-orchestrahttps://www.feenotes.com/database/groups/philharmonia-the/https://www.imdb.com/name/nm1897371/https://www.soundcloud.com/philharmoniahttps://www.youtube.com/channel/UCKzx92ZqX1PKYTC-FC-CZRQhttps://www.vimeo.com/philharmoniahttps://www.myspace.com/philharmoniahttps://www.x.com/philharmoniahttps://www.facebook.com/philharmoniaorchestra/https://www.instagram.com/philharmonia_orchestra/https://www.linkedin.com/company/philharmonia-orchestra/"Philharmonia""Philharmonia" London OrchestraBritish Philharmonia OrchestraChamber Players Of The PhilharmoniaChorusCoro Y Orquesta "Philharmonia"Coro Y Orquesta PhilharmoniaDas London Philharmonia OrchesterDas Philharmonia Orchester LondonDas Philharmonia OrchesterDas Philharmonia Orchester LondonDas Philharmonia Orchester, LondonDas Philharmonia Orchestra LondonDas Philharmonia orchester LondonDas Philharmonia-OrchesterDas Philharmonia-Orchester LondonDas Philharmonie Orchester LondonDas Philharmoniker Orchester, LondonEnglish PhilharmoniaFilharmonický OrchestrFilharmonický Orchestr LondýnFilharmonijski OrkestarHet Filharmonia Orkest LondonHet Londens Philharmonisch OrkestHet Philharmonia OrkestHet Philharmonia Orkest LondenHet Philharmonia Orkest, LondenHet Philharmonia Orkest, LondonKör Och Philharmonia OrchestraL'Orchestra "Philharmonia"L'Orchestra PhilharmoniaL'Orchestra Philharmonia Di LondraL'Orchestra Philharmonia di LondraL'Orchestra «Philharmonia»La Orquesta FilarmoniaLa Orquesta FilarmoníaLa Orquesta PhilharmoniaLe Philharmonia OrchestraLe Philharmonia Orchestra de LondresLondon "Philharmonia" OrchestraLondon PhilharmoniaLondon Philharmonia OrchesterLondon Philharmonia OrchestraLondon Philharmonic OrchestraLondoner Philharmonia OrchesterLondons Philharmonia-OrchesterLondonski Filharmonijski OrkestarLontoon Philharmonia OrkesteriLontoon Philharmonia-OrkesteriLontoon Philharmonia-orkesteriNew Philharmonia OrchestraOrch. LondonOrch. Phil. di LondraOrch. Philhar. di LondraOrch. PhilharmoniaOrch. Philharmonia Di LondraOrch. Philharmonia di LondraOrchesterOrchester Der Londoner PhilharmoniaOrchester LondonOrchestraOrchestra PhilharmoniaOrchestra "Philharmonia"Orchestra "Philharmonia" - LondraOrchestra "Philharmonia" Di LondraOrchestra "Philharmonia" Din LondraOrchestra "Philharmonia" LondraOrchestra "Philharmonia”, LondraOrchestra "The Philharmonia"Orchestra ''Philharmonia'' LondraOrchestra Della Philharmonia Di LondraOrchestra FilarmoniaOrchestra LondonOrchestra Philarmonia Di LondraOrchestra Philarmonica Di LondraOrchestra PhilharmoniaOrchestra Philharmonia D LondraOrchestra Philharmonia DI LondraOrchestra Philharmonia Di LondraOrchestra Philharmonia di LondraOrchestra The PhilharmoniaOrchestra «Philharmonia» - LondraOrchestra „Philharmonia“ - LondraOrchestra „Philharmonia” - LondraOrchestra „Philharmonia” din LondraOrchestra, LondonOrchestre PhilarmoniaOrchestre PhilharmoniaOrchestre PhilharmoniqueOrchestre Philharmonique De LondresOrkestOrkestar PhilharmoniaOrq. Filarmonia de LondresOrquesta "Philarmonia"Orquesta "Philharmonia"Orquesta FIlarmoníaOrquesta FilarmoniaOrquesta Filarmonia (Londres)Orquesta Filarmonia de LondresOrquesta FilarmonicaOrquesta Filarmonica De LondresOrquesta FilarmoníaOrquesta Filarmónica De LondresOrquesta Filharmonia De LondresOrquesta PhilarmoniaOrquesta Philarmonia De LondresOrquesta Philarmonia, LondresOrquesta PhilarmonìaOrquesta PhilarmoníaOrquesta PhilharmoniaOrquesta Philharmonia (LondresOrquesta Philharmonia (Londres)Orquesta Philharmonia De LondresOrquesta Philharmonia De Londres Y CoroOrquesta Philharmonia de LondresOrquesta Philharmonia, De LondresOrquesta Philharmonia, LondresOrquesta Philharmonia, de LondresOrquesta PhilharmoníaOrquesta YOrquestraOrquestra FilarmoniaOrquestra Filarmônica De LondresOrquestra PhilharmoniaOrquestra Philharmonia De LondresPOPhiharmonia OrchestraPhil OPhilarmonia OrchestraPhilarmonia Orchestra (Londres)Philarmonica OrchestraPhilharmoni OrchestraPhilharmoniaPhilharmonia (London)Philharmonia BrassPhilharmonia Chorus And OrchestraPhilharmonia Concert SocietyPhilharmonia Di LondraPhilharmonia Di LondrePhilharmonia LondonPhilharmonia LondresPhilharmonia Of LondonPhilharmonia Orch.Philharmonia Orch. LondonPhilharmonia Orchestar LondonPhilharmonia OrchesterPhilharmonia Orchester LondonPhilharmonia Orchester · LondonPhilharmonia Orchester, LondonPhilharmonia Orchestra & ChorusPhilharmonia Orchestra (London)Philharmonia Orchestra And ChorusPhilharmonia Orchestra Di LondraPhilharmonia Orchestra LondonPhilharmonia Orchestra LondresPhilharmonia Orchestra Of LondonPhilharmonia Orchestra di LondraPhilharmonia Orchestra of LondonPhilharmonia Orchestra, LondonPhilharmonia Orchestra, LondraPhilharmonia Orchestra, ThePhilharmonia OrchestrasPhilharmonia Orchestrer LondonPhilharmonia OrkestPhilharmonia Orkest LondonPhilharmonia OrkestretPhilharmonia Orkestret, LondonPhilharmonia String Orch.Philharmonia String OrchestraPhilharmonia StringsPhilharmonia ZenekarPhilharmonia orchestra LondonPhilharmonia, LondonPhilharmonia-OrchesterPhilharmonia-Orchester LondonPhilharmonia-Orchestra LondonPhilharmonic OrchestraPhilharmonic Orchestra LondonPhilharmonica OrchestraPhilharmonie Orchester, LondonPhilharmonie OrchestraPhilharmônica OrchestraPhilharnonia Orchestra, LondonSoloists With Philharmonia OrchestraStrings Of The Philharmonia OrchestraThe "Philharmonia" Orchestra - LondonThe "Philharmonia" Orchestra LondonThe London PhilharmoniaThe London Philharmonia OrchestraThe London PhilharmonicThe London Philharmonic OrchestraThe London «Philharmonia» OrchestraThe New Philharmonia OrchestraThe Phil Harmonia OrchestraThe Philadelphia OrchestraThe PhilarmoniaThe Philarmonia OrchestraThe Philharmia Orchestra Of LondonThe PhilharmoniaThe Philharmonia OrchestraThe Philharmonia LondonThe Philharmonia Orch.The Philharmonia OrchestThe Philharmonia Orchester LondonThe Philharmonia OrchestrThe Philharmonia OrchestraThe Philharmonia Orchestra LondonThe Philharmonia Orchestra Search in new windowStrict Search Artist not found. Philharmonia OrchestraThe Philharmonia Orchestra De LondresThe Philharmonia Orchestra LondonThe Philharmonia Orchestra Of LondonThe Philharmonia Orchestra and ChorusThe Philharmonia Orchestra of LondonThe Philharmonia Orchestra, LondonThe Philharmonia String OrchestraThe Philharmonia, LondonThe Philharmonic OrchestraThe «Philharmonia» Orchestra – LondonThe „Philharmonia“ Orchestra - LondraThe „Philharmonia” Orchestra LondonThePhilharmonia OrchestraZenekarl'Orchestra "Philharmonia" di Londrathe Philharmonia OrchestraΟρχήστραΟρχήστρα PhilharmoniaΟρχήστρα ΦιλαρμόνιαЛондонский Оркестр "Филaрмония"Лондонский Оркестр "Филармония"Лондонский Оркестр «Филармония»Лондонский Оркестр ФилармонияЛондонский Симфонический Оркестр «Филармония»Лондонский Филармонический ОркестрЛондонский оркестр "Филармония"Оркестар ФилхармонијеОркестрОркестр "Филармония"Оркестр «Филармония»Оркестр «Филармония» (Лондон)Оркестр Лондонской ФилармонииОркестр ФилармонияСимфонический Оркестр "Филармония"Филармонический ОркестрФилармонический оркестрФилармонический оркестр Лондонаоркестр "Филармония"ニューフィルハーモニア管弦楽団フィルハーモニア・オーケストラフィルハーモニア管弦楽団フィルハーモニア管弦楽団&合唱団フィルハーモニー管弦楽団ベルリン・フィルハーモニー管弦楽団愛樂管絃樂團New Philharmonia OrchestraPhilharmonia Promenade OrchestraThe Festival OrchestraNatasha WrightChristopher Warren-GreenRichard WaltonJill CrowtherHelen TunstallNigel BlackJane MarshallChris Cowie (2)Hugh SeenanDavid RoachGeorge RobertsonKira DohertyHugh WebbRebecca WadeRhydian ShaxsonAlan CivilJohn WilbrahamRay PremruHugh BeanJames GalwaySimon HaramAlan BrindBen CruftBill BenhamSimon EstellIain KingMike HurwitzJudith FleetNicholas BootimanLucy WakefordIona BrownDave HartleyKatherine ThulbornAndrew ShulmanJohn RookeVicci WardmanRichard WatkinsScott DickinsonDavid NolanMark Van De WielAlison MartinJohn Anderson (4)Jack EllorySidney SutcliffePeter HallingCorin LongRalph IzenRoy Carter (2)Jonathan SnowdenAndy Wood (2)Michael Jones (6)Cecil JamesEdward WalkerSidney FellCaroline DearnleySue BowranMichael Thompson (2)Otto KlempererAndrew HaveronMaurice LobanDeirdre CooperDerek CollierMaurice AndréAndrew McGavinClare ThompsonHelen PatersonJames BuckleForbes HendersonStephen OrtonDavid Cohen (2)Rachel Roberts (2)Jack LongMichael Mitchell (3)Renata Scheffel-SteinPhilip JonesRobin O'NeillRoger HarveyRoger BenedictLeslie PearsonEric VillemineyMark DavidNeil TarltonLucy WaterhouseRuth RogersNicole Wilson (2)Christoph von DohnányiManoug ParikianArthur GleghornSir Neville MarrinerDavid CorkhillRaymond LeppardRaymond ClarkRoger BirnstinglHugh MaguirePeter GraemeRaymond CohenByron FulcherOsian EllisGranville JonesIsolde AhlgrimmJohn Wallace (4)Hans GeigerVernon ElliottNorman Del MarMax GilbertSidney EllisonDennis CliftCarl PiniPeter BeavanBernard Davis (2)Herbert DownesArthur DavisonJennifer Ward ClarkeChristopher WellingtonAlan J. PetersGareth Morris (2)Bryn LewisRobert Hughes (3)Christine PendrillAmélie TheurillatJohn StenhouseGordon HuntDudley BrightDavid ArcherKathryn SaundersMarie GoossensBernard Walton (2)Harry BlechNelson CookeLaurence DaviesNick ReaderRaymond OvensAline BrewerEldon FoxAdrian BeersWilfred HambletonMax SalpeterLeo BirnbaumPaul Edmund DaviesAvis PerthenHeidi KrutzenGraeme McKeanWilliam WaterhouseCsaba ErdélyiMichael Harris (6)Benjamin RoskamsAnnabelle MeareDenis BlythQuintin BallardieKaren Jones (3)Roy CopestakeKevin NuttyEmily Davis (2)Michael DobsonMeyrick AlexanderPeter BassanoMartin FieldGeorge CrozierCarsten WilliamsNicholas BuschLeila WardChristopher TerianBarnaby RobsonPhilippe HonoréHarry MortimerArthur Wilson (3)John Miller (14)Miranda DaleNigel WoodhouseHeinrich SchmidtJohn HoneymanHugh SparrowJames Bradshaw (2)Michael AngressRay Brown (8)Elizabeth BurleyAlexander KokAmbrose GauntlettIvor McMahonGraham GriffithsAnn CriscuoloLinda KidwellDennis BrainJames Clark (6)Henry DatynerSarah EwinsMaya IwabuchiEmmanuel CurtGerald JarvisJames MerrettPeter Harvey (2)Peter NallJulian MiloneMichael FreedmanMichael Turner (9)Reginald KellKeith BraggGordon LaingRobert McIntoshRebecca Scott (2)Clem LawtonJanet CrouchJohn Jenkins (6)Edmund ChapmanAlfred CursuePeter NewburyGerald EmmsVivian TroonJohn Cave (3)Peter ReeveVictoria Wood (2)Felix KokDebbie PreeceKaren StephensonMichael Cole (5)Peter Gibbs (2)Gijs KramersCameron SinclairRoger Winfield (2)John Chambers (4)Matthew ComanChristine Anderson (2)Maurice WesterbyGeorge IvesCormac Ó hAdodáinMike HyattMaurice MeekPeter SeagoHilary Jane ParkerMichael MeeksPeter Carter (3)Leonard HirschJennifer McLarenKevin HathwayLuke WhiteheadMichael RoundAubrey BrainPaul Draper (3)Richard BirchallJulia O'RiordanMartin Jones (10)Stanley Smith (3)Colin Sauer (2)Andrew Smith (30)Michael WhightKenneth Smith (6)Robert FarleyAndrew Knight (3)Desmond NeysmithPeter Mountain (2)Lauren SteelTessa RobbinsAngus AndersonStephen MilneDaniel Gardner (3)Adrian CruftRebecca ChanPeter Fry (3)Jackie KendleRoy PattenMatthias FeileDavid Thomas (28)Ian Hall (3)Clare HowickNeill SandersTimothy WaldenPhil Woods (3)Anneke HodnettAntoine SiguréSimon GabrielSean BishopGerald DruckerZsolt-Tihamér VisontayNieder MayrBenjamin Marquise GilmoreTheresa PopleHarold Jackson (5)Victoria SimonsenDavid Jones (38)Brian MoyesFred HarmerTimothy ColmanPhilip B. CatelinetLaura DixonAmanda TrueloveTim Ball (2)Tim GibbsEugene Lee (4)David WhitehouseGalina TanneyHuw Jenkins (2)Samuel ColesErnest Scott (2)Dominic Black (2)Tim RundleArthur AckroydAlbert CayzerNuno CarapinaAlistair MackieJohn Ashby (4)Deborah BoyesKeith McNicollJames HandyBrian ChadwickThomas Pilz (2)Frederick ThurstonWilfred SimenauerChristian GeldsetzerImogen EastAdrián VarelaVictoria IrishEllen BlytheAshok KloudaHelen CochraneNathaniel Anderson-FrankKarin TilchSoong ChooAnne Baker (2)Ella RundleLouise HawkerGareth SheppardCheremie Hamilton-MillerSusan HedgerLulu FullerJan RegulskiEleanor WilkinsonFiona DalglieshSamuel BurstinPaula Clifton-EverestGideon RobinsonJason Evans (9)Shlomy DobrinskyRichard Waters (5)Nat ComrassStuart James (9)Justin Jones (8)Olwen CastleGillian CostelloAndrew CourtSimon HorsmanSusan SalterKathleen RuseMary WhittleDominic WorsleyAnne BarberJune ScottNatasha HughesChristian Jones (8)Mark Calderjohn cockerillDaniel ShaoSarah OatesJames Casey (6)Huw Clement EvansKaty WoolleyAdam WynterStephanie EdmundsonSanttu-Matias RouvaliDavid Wise (7)Simon Oliver (3)Robin TotterdellPeter Smith (40)Sam Rice (2)Joe MelvinPhilip White (8)Kathleen SturdySiwan RhysLinda Speck (2)Gillian BaileyRebecca Carrington (2)David MundenLorna MelhuishBogden OffenbergJohn Rogers (19)Mary White (3)Michael Lloyd (10)Carol HultmarkJocelyn GaleAndrew Fletcher (6)James Whitehead (4)Jack Kessler (2)Jack Mackintosh (2)Amy HarmanAlison ProcterFiona CornallPeter Taylor (12)Eugene FeildMaria ZachariadouHelena BuckieSophie CameronMinhee LeeFabrizio FalascaTamás SándorLaurent Ben SlimaneJonathan MaloneyTom BlomfieldMichael Fuller (5)Yukiko Ogura (2)Geremia IezziAubrey ThongerRodney Stewart (2)David H. JonesRobert Leighton (2)Roger Clark (5)Andrew Wickens (2)Colin CourtneyMargaret LambMargaret Hunt (2)Carlos Brito-FerreiraNorina SeminoHaydn BeckMartyn Jones (4)Cameron CampbellMark O'Leary (5)Thomas RolstonRichard Wheeler (4)Teresa ZimmermannAnne WolfeMarie Wilson (8)Graham Mitchell (8)Ronald WoodcockEmily HultmarkWilliam Bender (2)Sylvain SeaillesAlfred FlaszynskiSiret LustKenneth Essex (2)Marina GillamAlyson FrazierMark Almond (3)Stanley Brown (5)Joonas PekonenShelly OrganYaroslava TrofymchukAlexander RoltonOwen NicolaouPaul StonemanEmanuela ButaDavid Lopez IbañezEunsley ParkRobert LoomanMaura MarinucciImogen DaviesSara SheppardGwendolyn FisherMaurice Young (5) + +454332Chris B (4)Chris BrownCorrectC BrownChris B.Chris BrownKris B.Pants & Corset + +454493Monty (6)Jacques BulostinPopular French singer and songwriter. Born: 18 February 1943 in Chezal-Benoît, France. +Signed by Eddie Barclay in 1963 Monty released his debut EP the same year, riding on the popular yé-yé music craze at the time. After a successful career as a singer and songwriter through the sixties and seventies he then moved to the USA in a new role as a record producer before returning to France in the eighties.Needs Votehttp://fr.wikipedia.org/wiki/Monty_%28chanteur%29J. MontyMontiMontjMontyMonty - BulostinMonty BulostinМонтiJacques MontyNicolas SonnJacques Bulostin + +454650Ronald HagenRonald D. HagenDutch DJ / producer, born on May 25, 1976 in The Hague.Needs VoteHagenHagen, Ronald DR HagenR. HagenR.HagenRoland HagenRon HagenD-FactorSignumRon Hagen & Pascal M.Acetate (3)Ron Hagen & Al-Exander + +454690Robert KuehnClassical vocalist.Needs VotePomeriumMusica SacraPalmer Singers + +454805Hubert VarronFrench classical cellist. Born June 23, 1933 in Paris, France - Died August 16, 2005 in Courtonne-les-Deux-Églises, Calvados, France. +He studied at the [l1014340]. From 1951 until 1955, he performed as 1st cellist at the [a=Orchestre De L'Association Des Concerts Pasdeloup]. Then, in 1955, he became the 1st cellist (solo) of the [a=Orchestre National De L'Opéra De Paris], and continued in that position 37 years, until 1992. He also performed in movie scores and played for artists such as [a=Charles Trenet], [a=Barbra Streisand], [a=Edith Piaf], [a=The Eurythmics], etc.Needs Votehttps://open.spotify.com/artist/2fDJNAlvv09on5Yo6yOOmlhttps://music.apple.com/us/artist/hubert-varron/255936109http://www.cello.org/cnc/varron.htmhttp://www.musimem.com/obi-0705-1205.htmhttps://data.bnf.fr/fr/13932256/hubert_varron/https://www.imdb.com/name/nm3140697/https://www2.bfi.org.uk/films-tv-people/4ce2bc05ecbe9Equipe Hubert VarronH. VarronHubertHubert VaronHubert WarronVarronVarron HubertOrchestre National De L'Opéra De ParisOrchestre De L'Association Des Concerts Pasdeloup + +454980Adolf Fritz GuhlGerman organist and conductor, born 29 March 1917 in Wittenberge, Germany, died 8 January 1977 + +Needs Votehttps://www.wittenberge.de/seite/65172/adolf-fritz-guhl.htmlA. F. GuhlA. GuhlA.F. GuhlAdolf GuhlAdolf-Fritz GuhlAdolph Fritz GuhlGMD Prof. Adolf Fritz GuhlGuhlDEFA-SinfonieorchesterRundfunk-Sinfonie-Orchester LeipzigBerliner EnsembleRundfunk-Sinfonieorchester Berlin + +455008Gábor PresserPresser GáborHungarian musician, composer, singer. He is a prominent personality of the Hungarian pop music. +Born 27 May 1948, Budapest (Hungary). + +Founding member of [a=Omega (5)] (1962 - 1971). +In 1971 he formed [a=Locomotiv GT].Needs Votehttp://www.pressergabor.huhttps://www.facebook.com/PRESSERGABORhivataloshttps://www.instagram.com/pressergaborhivataloshttps://www.youtube.com/@PRESSERGABORofficialhttps://en.wikipedia.org/wiki/Gábor_PresserBo GǎrressperDisturbo ElettricoG. PreserG. PresserG.PresserGabor PreserGabor PresserGábor 'Pici' PresserGábor PresszerP. BogárPGPreserPreser GáborPresner GaborPresserPresser CáborPresser GPresser G.Presser G. PiciPresser GáborPresser Gábor EgyüttesePresser PiciPresser PycyPresszerPresszer GPresszer Gáborábor PresserГ. ПрессерГабор ПрессерOmega (5)Locomotiv GTTomsits Együttes + +455022Jon-Paul MontgomeryJP is a UK Hard House / NRG DJ, Producer, Remixer and a partner in [l=Deprivation Recordings] and its sublabels.Correcthttp://www.jpandjukesy.co.ukhttp://www.deprivationrecords.co.ukJPJP MonetgomeryJP MontgomeryJon Paul MontgomeryJP & Jukesy + +455255Hal GalperHarold GalperAmerican jazz pianist, born April 19, 1938 in Salem, Massachusetts, USA. Galper died July 18, 2025 in Cochecton, New York. +Correcthttps://www.halgalper.com/https://en.wikipedia.org/wiki/Hal_GalperGalperGalper HalH. GalperH.GalperHal GarlperHal GarperHarold "Hal" GalperHarold GalperThe Cannonball Adderley QuintetChet Baker QuartetJohn Scofield QuartetJazz In The ClassroomThe Phil Woods QuartetThe Phil Woods QuintetHal Galper QuintetTom Harrell QuintetHutcherson-Land QuintetHal Galper TrioPhil Woods' Little Big BandHal Galper And The YoungbloodsHal Galper Quartet + +455296Gérard JouannestFrench pianist and composer (2 May, 1933 in Vanves, France - 16 May, 2018, Ramatuelle). A frequent collaborator of arranger [a300290], he was the pianist of and composed songs for many French-speaking artists, such as [a164263] or [a287519]. He was married to the latter since 1988.Needs Votehttp://fr.wikipedia.org/wiki/Gérard_JouannestA. GerardB3C. JouannestF. JouannestG JouannestG, JouannestG. JouannestG. E. JouannestG. GouannestG. JauannestG. JoannestG. JoaunnestG. JouamestG. JouanestG. JouannesG. JouannestG. JouannesteG. JouannetG. JouannosG. JouhannestG. JounnestG. JovannestG. JuannestG.E. JouannestG.E.JouannestG.JouannestGeadr JouannestGeard JouannestGerald JouannestGerard EmileGerard Emile JouannestGerard JohannestGerard JouannastGerard JouannesGerard JouannestGerard JouhannestGerard JovannestGerard JuanestGerard JuannestGerrard JouannestGèrard JouannestGérald JouannestGérardGérard Emile JouannestGérard JouanestGérard JuannestGérard. JouannestGérarde JouannestJ. JouanestJ. JouannestJ.JouannestJarard JouannestJouanestJouannesJouanneslJouannesstJouannestJouannest GerardJouannest Gerard EmileJounanestJounnestJovannestז'ראר ז'ואנסטז׳ראר ז׳ואנסטGérard Jouannest Et Son EnsembleGérard Jouannest Et Son Orchestre + +455403Sara CutlerAmerican harpist.Needs VoteS. CutlerSarah CutlerThe American Symphony OrchestraOrchestra Of St. Luke'sNew York City Ballet OrchestraWestchester Philharmonic + +455549Eli MagenIsraeli singer, double bass and guitar player, born February 21, 1948.Needs Votehttps://he.wikipedia.org/wiki/%D7%90%D7%9C%D7%99_%D7%9E%D7%92%D7%9FE. MagenEli Maganאלי מגןIsrael Philharmonic OrchestraThe High WindowsThe Nachal Troupeאחרית הימיםShmulik Kraus+Friendsכיף התקווה הטובהחבורת ראש כרובPeter Lemer Trioשלישייה מלהקת הנח"ל + +455550Dudu CarmelClassical oboist.Needs Voteדודו כרמלIsrael Philharmonic Orchestra + +455644Jon PittsJohn PittsNeeds Votehttp://www.jon-doe.comhttp://www.myspace.com/jondoeukJ PittsJ. PitsJ. PittsJ.PittsJohn PittsPittsJon DoePeacemakerBeat FactoryCLSMFlava 'N' DivineD.H.S.S.D-Frag (2)DJ BookingsWarp 3Chavbots From Outta SpaceJD303D (6)Colin MeonDJ NedNew Ground (2)Dave Thomas (25)NosurnameLymington Rot ClubJon DboisRave DustThe Chunk BrothersBilly Daniel Bunter & Jon DoeBeatniqzNew Horizons (2)UK HardcoreHardcore Music TerrorThe Rough Breaks CrewCLSM & Billy "Daniel" Bunter + +455829Walter OlbertzGerman pianist, born 1931 in Aachen, Germany.Needs VoteOlbertzW. OlbertzWalter OlbertWalter OlbertsWalther OlbertzВальтер Ольбертсワルター・オルベルツ + +455839Rundfunkchor LeipzigThe Rundfunkchor Leipzig (Leipzig Radio Choir) was founded in 1946 and was affiliated to the Central German Broadcasting Company (Mitteldeutscher Rundfunk) between 1946 and 1952. Until the German Reunification the choir was part of the [l269033], in 1992 the Rundfunkchor Leipzig was renamed to [b][a4967507][/b]. + +Chorus masters: +Heinrich Werlé (1946) +[a4798974] (1947–1948) +[a425125] (1949–1978) +[a917756] (1978–1980) +[a866959] (1980–1988) +[a2798349] (1988–1998)Needs Votehttp://www.mdr.de/konzerte/rundfunkchor/mdr-rundfunkchor-bio100.htmlChoers De La Radio De LeipzigChoeur De La Radio De LeipziChoeur De La Radio De LeipzigChoeur De Radio-LeipzigChoeur de la Radio de LeipzigChoeursChoeurs De La Radio, DresdeChoeurs De La Radiodiffusion de LeipzigChoeurs De LeipzigChoeurs de la RTV, LiepzigChoeurs de la Radio de LeipzigChoeurs de la Radio, LeipzigChoeurs de la Radiodiffusion de LeipzigChoirChoir Of Leipzig RadioChorChor Des Leibziger RundfunksChor Des Leipziger RundfunkChor Des Leipziger RundfunksChor Des Mitteldeutschen Rundfunks, LeipzigChor Des Senders LeipzigChor der DienerChor des Leipziger RundfunksChorul Radio-LeipzigChorusChorus Of Leipzig RadioChorus Of Mitteldeutscher Rundfunk, LeipzigChorus Of Radio LeipzigChór RadiaChór Radia LipskChór Radia W LipskuChœurChœur De La Radio De Berlin Et LeipzigChœur De La Radio De LeipzigChœur Symphonique De La Radio De LeipzigChœur de la Radio de LeipzigChœursCoro Da Rádio De LeipzigCoro De La Opera Del Estado De DresdeCoro De La Radio De LeipzigCoro De La Radio LeipzigCoro De La Radiodifisión De LeipzigCoro De La Radiodifusión De LeipzigCoro Di Radio LipsiaCoro Sinfonico Della Radio Di LeipzigCoro de la Radio de LeipzigCoro de la Radiodifusión de LeipzigCorosCoros De La Radio De LeipzigCorul Radio LeipzigCorul Radio-LeipzigCorul Radioteleviziunii Din LeipzigCorul Radioteleviziunii din LeipzigCôro Da Rádio De LeipzigCôro Da Rádio De LípsiaDer Chor Des Leipziger RundfunksDer Rundfunk-Chor LeipzigDer Rundfunkchor LeipzigFrauenchor des Rundfunkchores LeipzigGr. RundfunkchorGr. Rundfunkchor LeipzigGrosser Rundfunkchor LeipzigGroßer Chor Des Leipziger RundfunksGroßer Rundfunkchor LeipzigHor Lajpciškog RadijaJugendchor Des Radio DDRLeipzig Radio ChoirLeipzig Radio ChorusLeipzig Radio Chorus, Male SectionLeipzig Radio OrchestraLeipzig Radio Symphony ChorusLeipziger Rundfunk ChorLeipziger RundfunkchorLeipziger Rundfunkchor Und InstrumentalsolistenLeipzigs RadiokörLeipzigs Radiosymfonikers KörLipský Rozhlasový SborMDR Chor LeipzigMDR Leipzig Radio ChoirMDR Radio Choir LeipzigMDR-Rundfunkchor LeipzigMembers Of The Radio Chorus LeipzigMietglieder Des Rundfunkchores LeipzigMitglieder Des Rundfunkchores LeipzigMitglieder des Rundfunkchores LeipzigMitglieder des Rundfunkchors LeipzigMitteldeutscher RundfunkchorMännerchor Des Rundfunkchores LeipzigMännerchöre Mit Dem Rundfunkchor LeipzigOmroepkoor LeipzigRadio Choir LeipzigRadio Choir Of LeipzigRadio ChorusRadio Chorus LeipzigRadio Chorus, LeipzigRadio Leipzig ChorusRadio Symphony Chorus, LeipzigRadio de LeipzigRadiokoor LeipzigRfk.-Chor LeipzigRudfunkchor LiepzigRundf.-Chor LeipzigRundfunk Chor LeipzigRundfunk Chor, LeipzigRundfunk-Chor LeipzigRundfunk-Chor Leipzig (MDR Chor)Rundfunk-Frauenchor LeipzigRundfunk-Jugendchor LeipzigRundfunkchorRundfunkchor Di LipsiaRundfunkchor Gewandhausorchester LeipzigRundfunkchor Leipzig (MDR Chor)Rundfunkchor Leipzig (Männerchor)Rundfunkchor Und Rundfunkblasorchester LeipzigRundfunkchor-Rundfunkchöre LeipzigSbor Lipského RozhlasuSoli, RundfunkchorStaatskapelle DresdenThe Chorus Of Leipzig RadioThe Leipzig Radio ChorusThe Leipzig Radio Symphony ChorusЛейпцигского РадиоХор Лейпцигского РадиоХор Лейпцигского РадиокомитетаХор Лейпцигского радиоライプツィヒ放送合唱団MDR RundfunkchorReiner SüßDietrich KnotheHorst NeumannGerhard RichterThomas Neumann (3)Horst-Dieter KnorrnArmin OeserEkkehard WagnerWolf ReinholdAlf PörschmannMichael GläserThomas RatzakHorst Karl HesselFrauenchor Des Rundfunkchores LeipzigMonica Tietze + +455853Gilbert Dall'aneseFrench saxophonist, composer and arranger, born in Lot-et-Garonne (Southwest of France).Needs Votehttp://gilbert.dallanese.free.fr/Dall'AneseG. Dall'AneseG. Dall'AnèzeG. Dall'aneseG. Dall'anezG. DallaneseGilbert "Jyotish" Dall'AneseGilbert D'AlaneseGilbert D'AllaneseGilbert D'all'AneseGilbert Dal AneseGilbert Dal'AneseGilbert DalanesGilbert DalanezeGilbert Dall'AneseGilbert Dall'AnezGilbert Dall'AnezeGilbert Dall'anesGilbert Dall'eneseGilbert DallaneseGilbert Dall’AnezGill Dall'aneseOrchestre National De JazzClaude Cagnasso Big BandDallas (11) + +455878Marc MalysterBelgian keyboard player, arranger and producerNeeds VoteM. MalisterM. MallysterM. MalystarM. MalysterM. NalysterMalisterMalylerMalystarMalysterMalyterMarc MalisterMark MalijsterMark MalysterNew InspirationThe VeteransThe VipersWaterlooMonte MoroRoan-Malyster And FriendsPerte TotaleRolysterAmazing HighwayLittle Jimmy And The Sharks + +455886Michał UrbaniakBorn January 22, 1943 in Warszawa, died December 20, 2025 in New York City, [b]NY[/b]. Polish jazz violinist, saxophonist, composer and arranger. +Ex-husband to [a=Urszula Dudziak] and father of [a750888]. + +Began his career in Poland and Scandinavia in the 1960's and formed [a425263] in Poland in 1969. Emigrated to the USA in 1973, and formed [url=https://www.discogs.com/artist/1707769-Michal-Urbaniaks-Fusion]Fusion[/url] in 1974. Has worked as a session musician with performers such as [a=Herbie Hancock], [a=Weather Report] and [a=Miles Davis]. + +[i]Note the PAN uses a polish letter "ł" in first name. If not present on release please use Michal Urbaniak ANV.[/i]Needs Votehttps://urbaniak.comhttps://facebook.com/UrbaniakMichalhttps://facebook.com/urbguruhttps://linkedin.com/in/michal-urbaniak-450a77bhttps://x.com/urbguruhttps://instagram.com/michalurbaniakofficialhttps://youtube.com/channel/UCVWd6Ir6Gb6IBEWxjDrGoIAhttps://pl.wikipedia.org/wiki/Micha%C5%82_Urbaniakhttps://en.wikipedia.org/wiki/Micha%C5%82_Urbaniakhttps://imdb.com/name/nm0881673M UrbaniakM. UrbaniakM.UrbaniakMichael UrbaniakMichael UrbaniakMichael UrbaniaxMichael UrbanlakMichaeł UrbaniakMichail UrbaniakMichal UrbaniakMichal UrbanikMichal UrbankMike UrbaniakUrbaniakUrbanizerUrbzzGil Evans And His OrchestraUrbaniaxFunk FactoryJazz RockersKomeda QuintetMichal Urbaniak's GroupUrbanatorBilly Cobham's Glass MenagerieMichal Urbaniak's FusionMichał Urbaniak ConstellationPaul Bley QuartetRolf Kühn QuintettBosko Petrovic's Nonconvertible All StarsMilky Way (3)Michal Urbaniak QuartetMichael Urbaniak Jazz TrioMichael Urbaniak's OrchestraUrbanizerUrbaniak-Coryell BandThe Larry Coryell/Michael Urbaniak Duo + +456210Diego MassonDiego Masson (born 21 June 1935 in Tossa de Mar, Spain) is a French conductor, composer, and percussionist. After his graduation he studied conducting with [a=Pierre Boulez]. In 1966 he formed [a=Ensemble Musique Vivante], a group specializing in contemporary music which he still directs, he is also an acclaimed conductor of opera and ballet.Needs Votehttps://en.wikipedia.org/wiki/Diego_MassonD. MassonDiégo MassonMassonEnsemble Musique Vivante + +456391Marcel CarivenMarcel CarivenBorn April 18, 1894 in Toulouse and died November 5, 1979 in Crosne. French conductor, orchestrator, radio producer and violinist. He studied at the "Conservatoire national supérieure de musique de Paris".Needs Votehttps://adp.library.ucsb.edu/names/103412CarivenM. CarivanM. CarivenM. CariventM. Marcel CarivenM.CarivenMarcel CarlvonOrchestre Des Concerts LamoureuxL'Orchestre Marcel CarivenEnsemble Folklorique de Marcel Cariven + +456440Matt AdamsMatthew David AdamsEDM producer & DJ from Huddersfield, England, UK. +Styles: Happy Hardcore | Hard Dance | Hard TranceCorrecthttps://myspace.com/mdahardcoreAdamsM. AdamsM.AdamsMDA (5)MDA & Spherical + +456441Mark BeadleMark BeadleUK Hard House / Hard Trance producerNeeds VoteBeadleM. BeadleM.BeadleSpherical (3)MDA & SphericalIDM (2) + +456478Sebastian BellGiles Sebastian BellBorn: 29th October 1941 Oxford, England. +Died: 21st September 2007. +British flautist and educator. He was a founder member of the London Sinfonietta and taught at the Royal College of Music and the Royal Academy of Music.Needs Votehttps://www.independent.co.uk/news/obituaries/sebastian-bell-flautist-with-the-london-sinfonietta-761367.htmlhttps://www.theguardian.com/news/2007/nov/14/guardianobituaries.obituariesSebastin BellRoyal Philharmonic OrchestraLondon SinfoniettaLondon Wind OrchestraAthena EnsembleBBC National Orchestra Of Wales + +456508MC ManicJonathan Mark GlavinCorrectManicJonathan Mark Glavin + +456699Martin Neary (2)Martin Gerard James Neary LVOEnglish organist and choral conductor, born 28 March 1940, London; died 27 September 2025. After he was dismissed from Westminster Abbey he became music director of [a1307249].Needs Votehttps://en.wikipedia.org/wiki/Martin_Nearyhttps://www.bach-cantatas.com/Bio/Neary-Martin.htmhttps://www.allmusic.com/artist/martin-neary-mn0000025747/biographyhttps://www.imdb.com/name/nm5512043/M NearyM. NearyMartin NearyMartin NeeryNearyマーティン・ニーリーThe Paulist Boy Choristers Of CaliforniaThe Choir Of Westminster Abbey + +456729Alison MartinBritish harpist. +Principal harpist with [a=The English National Opera Orchestra] since 1984. Guest principal harpist of [a=Sydney Opera House]. Harp tutor at the [a=Royal Academy Of Music].Needs Votehttps://eno.org/artists/alison-martin/https://www.ram.ac.uk/staff/alison-martinhttps://www.malvernstjames.co.uk/msj-community/oga/malvern-alumnae-100/profiles/~board/ma100/post/alison-martinPhilharmonia OrchestraOrchestra Of The Age Of EnlightenmentThe English National Opera Orchestra + +456731John Anderson (4)British (born in South Wales) oboist John Anderson has a highly respectable career in classical music as well as a touch of the pop profile, appearing on [a=Diana Ross] and [a=Joni Mitchell] recordings. +He studied at the [l527847]. He began his career in Geneva, when he was twenty, with [a=L'Orchestre De La Suisse Romande]. He was Principal Oboe with the [a=BBC Symphony Orchestra] (1979-?), and with the [a=Royal Philharmonic Orchestra]. He combines positions as principal oboe with [a=The London Metropolitan Orchestra], and the [a=English Chamber Orchestra] with a busy freelance career as soloist, chamber musician and session player. +His work in the studio has included music for [i]Johnny English[/i], [i]Band of Brothers[/i], [i]Rugrats[/i], [i]Harriet the Spy[/i], [i]Leon[/i], [i]Loch Ness[/i], [i]Twin Towns[/i], various James Bond films and a solo credit for his performance of the Marcello concerto used in [i]The Firm[/i]. +Oboe professor at the [l290263].Needs Votehttps://www.feenotes.com/database/artists/anderson-john-oboe/https://musicianbio.org/john-anderson-20/https://www.rcm.ac.uk/Woodwind/professors/details/?id=01762https://www.rwcmd.ac.uk/staff/john-andersonhttps://www.imdb.com/name/nm0026943/Jon AndersonThe London Session OrchestraL'Orchestre De La Suisse RomandeBBC Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraLondon Metropolitan OrchestraPhilharmonia OrchestraThe Valve Bone Woe EnsembleTHAMYSE STRING TRIOThe Pale Blue Orchestra + +456826FFB - OrchesterGerman entertainment, dance and studio orchestra of the 'Radio Forces Françaises de Berlin' (1956 - ~1965). +FFB stands for both [i][b]F[/b]orces [b]F[/b]rançaises de [b]B[/b]erlin[/i] and [i][b]F[/b]ilm-, [b]F[/b]unk-, [b]B[/b]ühne[/i].Needs Votehttps://de.wikipedia.org/wiki/Radio_Forces_Fran%C3%A7aises_de_BerlinChor Und FFB - OrchesterDas F.F.B. OrchesterDas F.F.B.-OrchesterDas FBB OrchesterDas FBB-OrchesterDas FFB - OrchesterDas FFB OrchesterDas FFB TanzorchesterDas FFB-BlasorchesterDas FFB-Orch.Das FFB-OrchesterDas FFB-Orchester BerlinDas FFB-Orchester, BerlinDas FFB-OrcheterDas FFB-Sinfonie-OrchesterDas FFB-Sinfonieorchester BerlinDas FFB.-OrchesterDas Grosse FFB - OrchesterDas Grosse FFB-OrchesterDas Grosse Film-, Funk-, Bühne-Orchester, BerlinDas Große FFB - OrchesterDas Große FFB OrchesterDas Große FFB-OrchesterDas Große FFB-Orchester BerlinDas Große Film, Funk- Und Bühneorchester BerlinDas Große Film-, Funk-, Bühne-Orch., BerlinDas Große Film-, Funk-, Bühne-OrchesterDas Große Film-, Funk-, Bühne-Orchester BerlinDas Große Film-, Funk-, Bühne-Orchester Berlin Und ChorDas Große Film-, Funk-, Bühne-Orchester, BerlinDas grosse FFB-OrchesterDas grosse Film-, Funk-, Bühne-Orchester BerlinDas große Film-, Funk-, Bühne-OrchesterDas große Film-, Funk-, Bühne-Orchester BerlinDas große Film-, Funk-, Bühne-Orchester, BerlinEin Großes OperettenorchesterF. F. B. - Orchester, BerlinF. F. B. OrchesterF. F. B. Orchester, BerlinF. F. B.-Orchester, BerlinF.F.B-OrchesterF.F.B. - Orchester, BerlinF.F.B.- Orchester, BerlinF.F.B.-OrchesterF.F.B.-Orchester BerlinF.F.B.-Orchester, BerlinF.F.B.-Orchester, BerlinFBB-OrchesterFBB-OrkestFFBFFB - Orch.FFB - Orch. BerlinFFB -orkesternFFB Orch.FFB OrchesterFFB Orchester, BerlinFFB OrchestraFFB OrkesternFFB TanzorchesterFFB--OrchesterFFB-Orch.FFB-OrchesterFFB-Orchester BerlinFFB-Orchester Und ChorFFB-Orchester, BerlinFFB-OrchestraFFB-OrkestFFB-Orkest, BerlijnFFB-Sinfonie-OrchesterFFB-Sinfonie-Orchester BerlinFFB-Sinfonie-Orchester, BerlinFFB-Sinfonieorchester BerlinFFB-TanzorchesterFFB-Tanzorchester BerlinFFB-orkesternFFB. - OrchesterFFB.-Orch.FFB.-OrchesterFFB.-Orchester, BerlinFFB.-Tanzorchester, BerlinFTB OrchesterFfb-OrchesterFfb-OrkesternGroßen Film-, Funk- Und Bühne-Orchester BerlinGroßes FFB-Orchester BerlinGroßes Film-OrchesterGroßes FilmorchesterHet FFB-OrkestMännerchor Und Das FBB-OrchesterOrchesterOrchestra FFBOrchestra Of FFBOrchestra of FFBOrchestre Symphonique F.F.B. de BerlinOrquesta De La FFBOrquesta F. F. B.Orquesta F.F.B.Orquesta F.F.B., BerlínOrquesta F.F.B., Berlín.The F.F.B. OrchestraThe FFB - Orchestra, BerlinThe FFB OrchestraThe FFB Symphony OrchestraSimon Krapp + +456827Friedrich SchröderFriedrich Hermann Dietrich SchröderSwiss composer and producer of Schlager and Operetta music. +Born 06 August 1910 in Näfels, Switzerland, died 25 September 1972 in West Berlin.Needs Votehttp://www.friedrichschroeder-komponist.de/start.htmhttps://en.wikipedia.org/wiki/Friedrich_Schr%C3%B6derhttps://adp.library.ucsb.edu/names/104998Chor mit Begleitorchester, Ltg .: Friedrich SchröderF. SchroderF. SchroederF. SchröderF. ScröderF.SchröderFr. SchroederFr. SchröderFr. SchøderFried. SchröderFriedr. SchrodstFriedr. SchröderFriedrich SchroederK. F. SchröderS. SchröderSchrederSchroderSchroederSchroeder, FriedrichSchröderSchröder, FriedrichФ. ШредерFriedrich Schröder Und Sein OrchesterFriedrich Schröder Und Sein Ensemble + +456907Trixie SmithAmerican jazz and blues singer. +Born: 1895 in Atlanta, Georgia. +Died: September 21, 1943 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Trixie_SmithMamie SmithSmithSmith T.T. SmithTrie SmithTrixie Smith & The Jazz MastersTessie AmesTrixie Smith And Her Down Home Syncopators + +456908Maggie JonesAmerican blues singer and pianist, born Fae Barnes in March 1894. Died March 9, 1940. +Jones recorded 40 issued songs between 1923 and 1926. She was billed as "The Texas Nightingale". Among her best rememberd songs are "Single Woman's Blues", "Undertaker's Blues", and "Northbound Blues". +She hailed from Hillsboro, Texas, and moved to New York in the early 1920s, appearing in theatres in the Northeast. She stayed in showbusiness after she stopped recording, with a small role in the Blackbirds of 1928 revue, which took her to Europe. By 1934, she had returned to Texas, performing in Fort Worth.Needs Votehttps://en.wikipedia.org/wiki/Maggie_Jones_(blues_musician)https://adp.library.ucsb.edu/names/109158https://adp.library.ucsb.edu/names/109157JonesFay BarnesMaggie Jones And Her Jazz Band + +456926Camille Saint-SaënsCharles-Camille Saint-SaënsBorn 9 October 1835 in Paris, died 16 December 1921 (Algiers, Algeria) +French composer, organist, conductor and pianist of the Romantic era.Needs Votehttps://en.wikipedia.org/wiki/Camille_Saint-Sa%C3%ABnshttps://www.klassika.info/Komponisten/Saint_Saens/index.htmlhttps://www.britannica.com/biography/Camille-Saint-Saenshttps://www.treccani.it/enciclopedia/camille-saint-saens_%28Enciclopedia-Italiana%29/https://www.imdb.com/name/nm0006269/https://adp.library.ucsb.edu/names/102051(Charles) Camille Saint-Saëns(Saint) SaensC Saint-SaënsC. Saint-SaënsC. S. SaënsC. Saent-SaensC. Sain SaënsC. Saint - SaensC. Saint - SaënsC. Saint - SaëntC. Saint SaensC. Saint SainsC. Saint SaënsC. Saint SäensC. Saint- SaënsC. Saint-SaensC. Saint-SaénsC. Saint-SaënC. Saint-SaënsC. Saint-SaëntC. Saint-SaёnsC. Saint-SeansC. Saint-SäensC. Saint~SaensC. Saint—SaënsC. St-SaënsC. St. SaensC. St. SainsC. St. SaënsC. St. SeansC.C. Saint-SaënsC.M. Saint-SaënsC.Saint SaënsC.Saint-SaensC.Saint-SaënsC.aint - SaënsC.サン=サーンスC.サン=サーンスC; Saint SaensCamil Saint-SaensCamile Saint-SaensCamile Saint-SaënsCamilla Saint-SaënsCamille C. Saint-SaensCamille Saent-SaënsCamille SaintCamille Saint - SaensCamille Saint - SaënsCamille Saint SaensCamille Saint SaenzCamille Saint SaënsCamille Saint – SaënsCamille Saint-SaensCamille Saint-SainsCamille Saint-SansCamille Saint-SanënsCamille Saint-SaénsCamille Saint-SaënCamille Saint-SaïnsCamille Saint-SaěnsCamille Saint-SeansCamille Saint-SoensCamille Saint-SäensCamille St-SaensCamille St-SaënsCamille de Saint-SaënsCamiller Saine-SainsCamilles-Saint-SaënsCamillo Saint-SaensCh. Camille Saint-SaensCh.-C. Saint-SaënsCh.Saint-SaensCharles Camille Saint-SaënsCharles Camille Saint-SaensCharles Camille Saint-SaënsCharles Camille Saint-Saëns‏Charles Camille-Saint-SaënsCharles Saint-SaënsCharles-Camille Saint SaënsCharles-Camille Saint-SaensCharles-Camille Saint-SaënsG. Saint SoënsG. Saint-SaensK. Saint-SaensK. Sen - SansK. Sen-SansK. Sen-SansasK. Sen-SanssK. Sen-SaënsKamij Sen SansKamij Sen-SansKamil Saint-SaënsKamilis Sen SansasKamils Sen-SansKamils Sen-SanssKamils SensānssS. SaensS. Saint-SaënsS. SäensSAINT-SAENSSaensSaens SaensSaens-SaensSaent SaensSaent-SaënsSain SaënsSain-SaensSain-SaënsSaine-SaensSaint - SaensSaint - SaënsSaint - SeansSaint - SäensSaint -SaënsSaint SaensSaint Saens, Charles-CamilleSaint SaenzSaint SansSaint SaënsSaint Saëns CamilleSaint SeansSaint SäensSaint- SaensSaint-SaansSaint-SaenSaint-SaensSaint-Saens C.Saint-Saens CamilleSaint-SaenzSaint-SainsSaint-SangSaint-SansSaint-SaénsSaint-SaênsSaint-SaënsSaint-Saëns CamilleSaint-Saëns, CamilleSaint-SaënzSaint-SaëusSaint-SaẽnsSaint-SeansSaint-SensSaint-SoeurSaint-SäensSaint-SënsSaint-saensSaint.SaënsSaint/SaensSaints/SeansSaintt-SaënsSaint~SaensSaint~SaënsSaint‐SaënsSaënsSen-SansSen-SansasSen-SanssSint-SaensSt SaensSt SaënsSt-SaensSt-SaënsSt. SaensSt. SaënsSt. SeansSt.-SaensSt.-SaënsSt.SaensSäint-SaënsΣεν-ΣανςК. Saint-SaënsК. Сен - СансК. Сен СансК. Сен-СансК. Сен-сансК. Сенс-СансК.Сен-СансК.Сенс-СансКамий Сен-СансКамил Сен-Санс (1835-1921)Камила Сен-СансаКамилл Сен-СансКамиль Сен-СанеКамиль Сен-СансКамиј Сен СансКамиј Сен-СансКаміль Сен-СансС. Saint-SaensС. СансаСен - СансСен-СансСен-СансаСенс-СансСенъ-СансСенъ-СансъШарль Камиль Сен-Сансסן-סאנסק. סן-סאנסקמיל סן-סאנסカミーユ・サン=サーンスカミーユ・サン=サーンスカミーユ・サン=サーンスサン= サーンスサン=サーンスサン・サーンスサン=サースンサン=サーンスサン・サーンス卡·圣桑聖桑 + +457141Bertolt BrechtEugen Berthold Friedrich BrechtGerman dramatist and lyricist, whose works were (and still are) nationally and internationally respected. Born 10 February 1898 in Augsburg,Germany - Died 14 August 1956 in Berlin, Germany. +He is well known for his "epic theatre", or "dialectic theatre". +He married the Viennese opera singer Marianne Zoff in 1922 with whom they had the daughter [a=Hanne Hiob] (1923-2009). They divorced in 1927. While married, he had a romantic affair with [a=Helene Weigel] whom eventually married on 10th April 1929. Father of [a=Stefan Brecht] (1924-2009) and [a=Barbara Berg] (1930-2015), both with Helene Weigel. Father-in-law of [a=Ekkehard Schall] (Barbara Berg's husband). Grandfather of [a=Johanna Schall].Needs Votehttps://www.facebook.com/profile.php?id=100063623384265https://en.wikipedia.org/wiki/Bertolt_Brechthttps://www.britannica.com/biography/Bertolt-Brechthttps://musicianbio.org/bertolt-brecht/https://www.imdb.com/name/nm0106517/B BrechtB. BrechetB. BrechtB. BreehtB. BretchB. EkemarB. ブレヒトB.B.B.BrechtBechtBerchtBert BrechtBert. BrechtBerthol BrechtBerthold BrechtBerthold BretchBerthold-BrechtBertholdt BrechtBertholt BrechtBertholt MackBertol BrechtBertold BrechtBertoldas BrechtasBertoldo BrechtBertoldt BrechtBertoltBertolt B.Bertolt BrechetBertolt BretchBertolt-BrechtBertolta BrehtaBertoltas BrechtasBertölt BrechtBiechtBrachtBrchtBrechetBrechtBrecht BertoltBrecht/BrecktBrectBreechtBrehtBrenchBretchBurt BrechtB・ブレヒトE. BertholdBrechtE. Bertold BrechtE. Bertolt BrechtE. BrechtEugen Berthold "Bertolt" BrechtEugen Berthold BrechtEugen BrechtEugene BrechtLenin-Friedenspreisträger Bertold BrechtMonsieur BrechtS. BrechtStephen BrechtΜ. ΜπρέχτΜ. ΜπρεχτΜπ. ΜπρεχτΜπέρτολντ ΜπρεχτΜπέρτολτ ΜπρέχτΜπέρτολτ ΜπρεχτΜπρεχτБ. БрехтБ.БрехтБертольд БрехтБертольт БрехтБрехтברט ברכטברטולד ברכטברכטベルトルト・ブレヒト + +457525George StevensonUS jazz trombonist from the swing-era. Born : June 20, 1906 in Baltimore, Maryland. Died : September 21, 1970. +He played with: [a=Sammy Price]Needs VoteG. StevensonGeorge Edward StevensonGeorge StephensonGeorges StevensonLucky Millinder And His OrchestraCharlie Johnson & His OrchestraSam Price And His Texas BlusiciansHot Lips Page And His Band + +457732Lukas FossLukas FuchsLukas Foss (born 15th August, 1922, in Berlin/Germany - died 1st February, 2009, in New York/USA) was an American composer, pianist and conductor.Needs Votehttps://en.wikipedia.org/wiki/Lukas_Fosshttps://www.britannica.com/biography/Lukas-Fosshttps://www.bach-cantatas.com/Bio/Foss-Lukas.htmFossL. FossLukas FoosЛ. ФоссЛукас ФоссBoston Symphony Orchestra + +458148Ralph SharonRalph Simon Sharon English Jazz pianist naturalized American. +Emigrated to the US in 1953, he obtained citizenship a few years later. +Best know for collaborating with [a=Tony Bennett] for over 40 years. + +Born on September 17, 1923 in London, England. +Died on March 31, 2015 in Boulder, Colorado, USA.Needs Votehttps://en.wikipedia.org/wiki/Ralph_SharonR. SharonRalph Sharon & His OrchestraRalph Sharon SextetSharonThe Ralph Sharon Trioラルフ・シャロンCount Basie OrchestraRalph Sharon And His OrchestraThe Ralph Sharon TrioThe Ralph Sharon SingersRalph Sharon Quartet And FriendRalph Sharon QuartetRalph Sharon's GroupSue & Ralph SharonJohnny Dankworth's Cool BritonsRalph Sharon SextetEsquire FiveThe Ralph Sharon GroupKeith Bird And The Esquire Six + +458557Helen KammingaViolist.Needs Votehttps://maslink.co.uk/client-directory?client=KAMMH1&instrument=VIOLA1Helen KamingaThe Balanescu QuartetLondon Philharmonic OrchestraKreisler String OrchestraThe London Scratch OrchestraThe New Blood OrchestraThe Pale Blue Orchestra + +458931James KitcherJames KitcherTrance / Progressive Trance / Tech Trance producer from Coventry, Britain (UK)Needs VoteJ KitcherJ. KitcherJames KitchenerKitcherDark SocietyHyperstate (2)Pariah (7)Transcend (5)Aether ProjectK.I. (5)Dark SocietyEndemic (2)Pariah vs DJ WrekaTranscend & Cyrax + +458932Dark SocietyFormed in early 2001, Dark Society are James Kitcher and Ross Reveley. Producing Hard Dance, Freeform, Electro, Dubstep and House. + +CorrectJames KitcherHyperstate (2)Pariah (7)Transcend (5)Aether ProjectK.I. (5)James KitcherRoss Reveley + +458933Ross ReveleyCorrectDark Society + +459231Arnold Jarvis (2)Jazz pianistNeeds VoteAl JarvisAl JervisArnold "Al" JarvisCootie Williams And His OrchestraCootie Williams Sextet + +459266Jeff Davis (3)American jazz trumpeter +Born December 19, 1952 in St. Albans, New York +Needs VoteDavisJaffrey DavisWoody Herman And His OrchestraThe Woody Herman Big BandErnie Wilkins Almost Big BandMachito And His Salsa Big BandLeif Johansson's OrchestraThe Jazzpar All Star NonetEBU/UER Big Band + +459375Daniel LightBorn in Tottenham in May 1975. He originally started working with his dad and uncles on the markets in north London. He started DJing house, acid house & balearic at friends and relatives house parties in 1988-89. +In 1989 he started working in Pauls 4 Music, a record shop in Bethnal Green after calling in and asking for a job on the off-chance. Also working in the shop were Jazzy M (who took him to his first rave in 1989), and Eamon Downes from Liquid. One of his main jobs in the shop was entering all the new tunes that had came in into a book, which earned him the nickname "Danny Book 'em" (soon LTJ Bukem would garner the same nickname). He soon acquired his Billy Bunter DJ name due to his resemblance to the cartoon character. +He began as a resident at Labrynth in 1990, where he remained until 1995. He also had a show on Eruption FM. +He attempted to make his first tune in 1992 with Roger Nell who ran the Eskimo Noise sound system (and was married to Gem, the vocalist on Let It Lift You etc), but the track never got released. +His first release came from a chance meeting with Ola from Just Another Label in a pie 'n' mash shop in East Ham. +Needs VoteD LightD LightsD, LightD. LightD.LightD.LiteDanielLightBilly "Daniel" BunterDifferent VibeHouse ShockClassifiedHard FunkersDistortion LevelNervousCrunch (5)Full SteamRave DustThe Chunk BrothersBilly Daniel Bunter & Jon DoeDBSKFuture CollectiveBang The FutureGBT Inc.TastyA ProjectBilly Daniel Bunter & RoostaD-Tek (3)Smith BrothersUK HardcoreHighly StrungThe Cyfi ProjectBody GrooverzThe New Generation (2)The Hardcore Hit SquadThe Full Time Super StarsCLSM & Billy "Daniel" BunterBilly Daniel Bunter & SparkyMr Dan & SparksB & S (2)Mitsu (18) + +459583Riccardo TesiniRiccardo TesiniRiccardo Tesini began his artistic career in 1997 at the Aqva Disco Village in Numana (An). From there he very quickly, in 1999, became the resident dj at the prestigious consol of the Ecu “European Club Underground” in Rimini, until 2002. At the same time he began to take his first steps towards being a producer with excellent results. This allowed him to work at some of the most prestigious clubs and events: Ecu, Teatriz, Cocorico, Imperiale, Zak (D), Red Zone, Italghisa, Prince, Echoes, Street Parade (It), Starfuckers, Sun Explosion, Strangeland, Elisir and many more. + +2002 marked an important turning point in his artistic career. He became the official Saifam producer and art director together with Luca Antolini of the labels Red Alert & Lisergica, producing many more musical pieces with several different service names, always under the Saifam label, such as: Dance Pollution, Green Force, Blq and Titanic. Currently he is a partner with Luca Antolini of Virus Recording studio and, always with Luca, has founded the L.a. Teams and two virtual labels: Melodie Metropolitane and Ritmo Bemolle. +Needs Votehttp://www.djrickyt.comR TesiniR. TesiniR. TessiniR.TesiniRiccardo "T" TesiniRiccardo 'T' TesiniRicky TesiniTessiniTiccardo "T" TesiniDJ Ricky TR.K.T.AntexVector TwoCitizenDroidSpiritual ProjectThe KGB'sThe RaidersNitro (2)TraumRuffKloneBuilderPsy ManHardstyle GuruThe NavigatorDreadlock (2)Black & White (8)Manny AnimatorHeavyhandsLe SphinxJuppystyleHabana (2) + +459586Nicola LewisClassical violinistNeeds VoteAustralian Brandenburg OrchestraSydney Symphony Orchestra + +459665Edda MoserGerman soprano vocalist, born October 27, 1938 in Berlin. + +A recording by Moser of "Der Hölle Rache kocht in meinem Herzen" from The Magic Flute was included on the Voyager Golden Record.Needs Votehttp://www.eddamoser.com/http://en.wikipedia.org/wiki/Edda_MoserE. MoserMoserЭдда Мозерエッダ・モーザー + +459670Siegfried JerusalemSiegfried JerusalemGerman tenor vocalist, born 17 April 1940 in Oberhausen, Germany.Needs Votehttps://de.wikipedia.org/wiki/Siegfried_JerusalemJerusalemSiegfried Jarusalem + +459673Berliner SymphonikerGerman classical orchestra founded in 1949 in West-Berlin as the Berliner Symphonisches Orchester, chief conductor [a1005207]. In 1967 it was renamed to Symphonisches Orchester Berlin (SOB), since 1990 it appears under the name Berliner Symphoniker. + +It is not to be mixed up with the [a523982], based in East-BerlinCorrecthttp://www.berliner-symphoniker.de/http://de.wikipedia.org/wiki/Berliner_Symphonisches_OrchesterBerl. Symph.Berl. SymphonikerBerlijns Symfonie OrkestBerlin "Symphoniker" OrchestraBerlin OrchestraBerlin SOBerlin SymphonicBerlin Symphonic OrchestraBerlin SymphonicsBerlin Symphoniker OrchestraBerlin SymphonyBerlin Symphony OrchestraBerlin Symphony Orchestra And ChoirBerlin Symphony Orchestra And ChorusBerlin Symphony Orchestra, TheBerlinerBerliner SimphonikerBerliner Sinfonie OrchesterBerliner Sinfonie-OrchesterBerliner SinfonieorchesterBerliner SinfonikerBerliner Sinfonisches OrchesterBerliner SymfonikerBerliner SympBerliner Symph.Berliner Symphonic OrchestraBerliner Symphonie OrchesterBerliner Symphonie-OrchesterBerliner Symphoniker Und ChorBerliner Symphoniker-OrchesterBerliner SymphoniknBerliner Symphonisches OrchesterBerliner Symphony OrchestraBerlini Szimfonikus ZenekarBerlinsymfonikernaBerlinští SymfonikovéBerlon Symphony OschestraBln. Symph.Chorus And Berlin Symphony OrchestraChœur Et Orchestre Symphonique De BerlinCoro E Orchestra Sinfonica Di BerlinoDas Große Berliner Symphonie-OrchesterDas Symphonische Orchester BerlinDer Berliner SymphonikerDie Beliner SymphonikerDie Berliner SinfonikerDie Berliner SymhonikerDie Berliner SymphinkerDie Berliner SymphonikerDie Berliner Symphoniker Und InstrumentalistenDie Berliner SymponikerDie Bertliner SymphonikerGrande Orchestra Sinf. Di BerlinoGrosses OrchesterGroßes OpernorchesterGroßes Opernorchester, Dirigent Horst SteinL'Orchestre Symphonique De BerlinMembers Of The Berlin Symphony OrchestraMitglieder Der Berliner SymphonikerMitglieder Des Symphonischen Orchesters BerlinMitglieder der Berliner SymphonikerOdeon-Tanz-StreichorchesterOrch. Sinfonica Di BerlinoOrch. Symph. De BerlinOrchesterOrchestra Sinfonica Di BerlinoOrchestra Sinfonica di BerlinoOrchestra Symphonique De BerlinOrchestre Philharmonique De BerlinOrchestre Symphonique De BerlinOrchestre Symphonique de BerlinOrkestOrq. Sinfonica De BerlinOrquesta Sinfonica De BerlinOrquesta Sinfonica De BerlinoOrquesta Sinfonica de BerlinOrquesta Sinfónica De BerlinOrquesta Sinfónica De BerlínOrquesta Sinfónica de BerlinOrquesta Sinfónica de BerlínOrquestra Sinfinica De BerlinOrquestra Sinfónica De BerlimOrquestra Sinfónica De BerlinOrquestra Sinfónica De BerlínOrquestra Sinfónica de BerlimOrquestra Sinfônica De BerlimOrquestra Sinfônica De BerlínOrquestra Sinfônica de BerlimSymphonic Orchestra BerlinSymphonie Orchester BerlinSymphonie Orkest Van BerlijnSymphonie Orkest Van BerlinSymphonie Orkest van BerlijnSymphonie-Orchester BerlinSymphonisches Orchester BerlinSymphony OrchestraSymphony Orchestra BerlinSymphony Orchestra, BerlinThe Berlin SymphonikersThe Berlin SymphonyThe Berlin Symphony OrchestraThe Berliner SymphonikerThe Symphony Orchestra, BerlinБерлинский Симфонический ОркестрБерлинский симфонический оркестрベルリン・シンフォニー・オーケストラAndrea BauerMatthias BäckerWolfgang BenderHermann KlemeyerBernhard von der GabelentzUlf BorgwardtVolker WorlitzschBenjamin WalbrodtGerhard Meyer (4)Dagmar StiehlerChristiane BuchenauSophia BaltatziAnne AngererHolger HoldgrünAlexander GlücksmannDominik GausJörg PotratzAlexander HasePhilippe PerottoAnna KosinskaMichael ScheppJenny RostWolfgang DunstJohanna Sigler + +459676Rudolf SchockRudolf Johann SchockGerman Tenor. + +He was born 4 September 1915 in Duisburg, Germany and died 13 November 1986 in Düren, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Rudolf_Schockhttp://www.rudolfschock.nl/R. SchockR.SchockRud. SchockRudolf Schock Mit Chor Und OrchesterRudolf Schock Mit OrchesterRudolf ShockRudolph SchochRudolph SchockSchockР. ШокРудольф Шок + +459681Rex PeerRex Eugene PeerTrombonist, born 1928 in the US - died 14 October 2008 in Chapel Hill, TN. +Native of Atlantic, IA, then moved to Nashville, TN, and then moved to Waianae, Hawaii.Needs Votehttp://www.rogerbissell.com/id22a.htmlR. PeerRex E. PeerRex Eugene PeerBenny Goodman And His OrchestraTony Scott And His OrchestraDanny Davis & The Nashville Brass + +459734Donatienne Michel-DansacFrench soprano vocalist. Sings contemporary music (Aperghis, Manoury, Dusapin, Ligeti, Stockhausen…) as well as the baroque, classical or romantic repertoire.Needs Votehttps://fr.wikipedia.org/wiki/Donatienne_Michel-DansacLes Arts Florissants + +459956Jack LeonardJohn Joseph LeonardAmerican big band tenor vocalist and actor. +Born February 10, 1913 in Brooklyn, NY, died June 17, 1988 in Woodland Hills, Los Angeles of cancer. +In the late 1930's, while singing with Tommy Dorsey, his popularity as a singer was rivaled only by Bing Crosby. He had joined Dorsey's band in 1937 and recorded over two hundred songs with him, including Irving Berlin's "Marie", for which he is best known. He left Dorsey’s orchestra in November 1939. He charted twice on the U.S. charts as a solo artist--first with "All This and Heaven Too" in 1940--it hit #20; and second with "I Give You My Word" in 1941--it rose to #17. +Leonard later served as Nat King Cole’s business manager and worked in music publishing before retiring in the 1970s.Needs Votehttps://www.imdb.com/name/nm0502648/bio?ref_=nm_ov_bio_smhttps://www.geni.com/people/Jack-Leonard/6000000117795349839https://bandchirps.com/artist/jack-leonard/https://adp.library.ucsb.edu/names/109633J. LeonardJack Leonard And ChorusLeonardT Sergeant Jack LeonardT/Sgt. Jack LeonardTechnical Sergeant Jack LeonardTommy Dorsey And His OrchestraThe Three EsquiresBert Block & His OrchestraJack Leonard And His V-Disc FriendsThe Three ChipsJack Leonard Orchestra + +460108Mats BergströmMats Johan BergströmSwedish guitarist, born March 7, 1961 in Gävle. + +He was educated at the Royal College of Music in Stockholm and Juilliard School in New York. He debuted in 1983 at Wigmore Hall in London and has since been freelance soloist, accompanist and ensemble musician.Needs Votehttp://www.matsbergstrom.com/https://en.wikipedia.org/wiki/Mats_Bergströmhttps://sv.wikipedia.org/wiki/Mats_Bergstr%C3%B6mM. BergströmMads BergströmMats Bergström & FriendsEnsemble ModernKammarensembleNEnsemble Modern OrchestraBandet + +460621Hugo WolfHugo Philipp Jacob WolfAustrian composer of Slovene origin (* 13 March 1860 in Windischgrätz/Steiermark, Austrian Empire (today Slovenj Gradec, Slovenia); † 22 February 1903 In Vienna, Austria).Needs Votehttps://dx.doi.org/10.1553/0x0001e73bhttps://en.wikipedia.org/wiki/Hugo_Wolfhttps://www.britannica.com/biography/Hugo-Wolfhttps://adp.library.ucsb.edu/names/102575H. VolfsH. WolfH.WolfH.WolffHugo WolffWolfWolf HugoWolffГ. ВольфГуго ВольфХуго Волф + +460658Maurice MeunierClarinetist & SaxophonistNeeds VoteM. MeunierQuintette Du Hot Club De FranceHenri Crolla Sa Guitare Et Son EnsembleMaurice Meunier QuintetHubert Rostaing Et Sa Formation JazzAndré Persiany Et Son OrchestreLionel Hampton And His French New SoundMaurice Meunier QuartetMaurice Meunier And His OrchestraJacques Dieval's All StarsJack Dieval Et Son Sextet + +460659Emmanuel SoudieuxFrench jazz bassist, born 30 July 1919,died 23 October 2006Needs Votehttps://adp.library.ucsb.edu/names/344683E. SoudieuE. SoudieuxEm. SoudieuxEmile SoudieuxEmmannuel SoudieuxManny SoudieuxSoudieuxJack Dieval Et Son QuartettQuintette Du Hot Club De FranceEddie Barclay Et Son OrchestreHenri Crolla Sa Guitare Et Son EnsembleJoseph Reinhardt Et Son EnsembleAndré Ekyan Et Son EnsembleDany Kane Et Son EnsembleJack Diéval TrioDjango's MusicHubert Rostaing Et Son OrchestreAimé Barelli Et Son OrchestreGus Viseur Et Ses PotesJerry Mengo Et Son OrchestreRobert Mavounzy And His Be-BoppersThe Be-Bop MinstrelsEugene Vees QuartetDany Kane QuintetteMichel Warlop TrioLes Amis De DjangoHarry Cooper QuintetLéo Chauliac Et Ses RythmesDany Kane Et Son SwingtetteSeptuor Jack DiévalPierre Fouad Et Son OrchestreHubert Fol & His Be-Bop MinstrelsClaude Laurence Et Son OrchestreJack Dieval And His QuartetJerry Mengo SextetJack Dieval Et Son Sextet + +460838William BoucayaWilliam Boucaya (1922, † 1985) was a French jazz musician (baritone saxophone, also alto saxophone, bass clarinet). + +Boucaya worked in the post-war Paris scene of modern jazz; he played from the mid-1940s with Hubert Rostaing ("Chelsea Bridge"), 1950 in its sextet. During this time, he also worked with Roy Eldridge, Claude Bolling, Bill Coleman, Bill Tamper, André Hodeir, Henri Renaud's All-Stars, Gigi Gryce, Jack Dieval, Christian Chevallier, André Persiany, Dave Pochonet, Guy Lafitte, Bobby Jaspar as well as with the American jazz stars Lionel Hampton, Chet Baker, Clifford Brown and Lucky Thompson. In the second half of the decade, he also worked on recordings by Benny Vasseur, Armand Migiani, Martial Solal, Sacha Distel, Michel Legrand, Eddie Barclay, Sarah Vaughan, Alain Goraguer (soundtrack of Les Loups Dans La Bergerie, 1959). At the beginning of the 60s he played with Martial Solal (soundtrack of Si Le Vent Te Fait Peur) and in the studio band, which recorded the soundtrack to Paris Blues (with Louis Armstrong). In the early 1960s, he worked again with Rostaing and Lafitte, also with the singer Tony Milton. In 1963 he was a member of the big band of Jef Gilson. In the field of jazz he was involved in 76 recording sessions between 1947 and 1969, most recently with Maxim Saury and The Three Dimensional Band. + +His playing on the baritone saxophone was influenced by Gerry Mulligan.Needs VoteW. BoucayaAndré Popp Et Son OrchestreRoy Eldridge And His OrchestraChristian Chevallier Et Son OrchestrePaul Piot Et Son OrchestreClifford Brown Big BandMaurice Meunier QuintetArmand Migiani All StarsMichel Legrand Et Sa Grande FormationChet Baker OrchestraMartial Solal Big BandParis All Stars (2)André Persiany Et Son OrchestreGigi Gryce OctetLionel Hampton And His French New SoundWilliam Boucaya And His "New-Sound" QuartetMaurice Meunier And His OrchestraSebastien Solari Et Son OrchestreJacques Dieval's All StarsChristian Chevallier TentetBill Tamper Et Ses "Cool Cats"Bill Coleman Et Son Ensemble + +460839Marcel HraskoSaxophonist. [a460840]'s brother.Needs VoteHraskoM. HraskoMarcel HrascoMarcel RascoFrançois Rauber Et Son OrchestreAndré Popp Et Son OrchestreLucien Lavoute Et Son OrchestreGrand Orchestre De L'OlympiaLucien Lavoute Et Le Travelling OrchestraPaul Piot Et Son OrchestreMichel Legrand Et Sa Grande FormationParis All Stars (2)Gérard Pochonet All StarsClaudio Bonelli Ses Mandolines Et Son Orchestre + +460840Jo HraskoJoseph HraskoSaxophonist. [a460839]'s brother.Needs VoteJ. HraskoJoe HrascoJoe HraskoJoseph HraskoJo RascoQuincy Jones And His OrchestraFrançois Rauber Et Son OrchestreLucien Lavoute Et Son OrchestreGrand Orchestre De L'OlympiaLucien Lavoute Et Le Travelling OrchestraPaul Piot Et Son OrchestreMichel Legrand Et Sa Grande FormationGérard Pochonet All StarsChristian Chevallier TentetClaudio Bonelli Ses Mandolines Et Son Orchestre + +460961Josephine KnightBritish cellist and Professor of Cello +She studied at [l602659] and the [l527847]. Former member of the [a=London Symphony Orchestra] (1994-1996). +Professor of Cello at the [l527847].Needs Votehttp://josephineknight.com/https://www.facebook.com/josephineknightcellist/https://twitter.com/knightcellohttps://www.linkedin.com/in/josephine-knight-cello-sessions-25a3ba89/?originalSubdomain=ukhttps://open.spotify.com/artist/52YjeuSSJXaGLf5mRMDkPThttps://music.apple.com/us/artist/josephine-knight/156986432https://www.ram.ac.uk/people/josephine-knighthttps://schoenfeldcompetition.com/josephine_knight.phpJohn KnightLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Cello Sound + +461047Delphine TissotFrench violistNeeds VoteMahler Chamber OrchestraEuropean Camerata + +461169Mary CareweSoprano vocalist.Needs Votehttp://www.marycarewe.com/CareweMaryMary CaremeMary CareneMary CarewMary Carewe És VokálMetro VoicesThe Stephen Hill SingersLondon VoicesStars Of The London StageVoxaphonicMary Carewe & Company + +461445Olaf OttOlaf OttOlaf Ott, born 1963 in Dortmund, is a German solo trombonist. He has been a member of the Berliner Philharmoniker since 1994.Needs VoteBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinTriton Trombone QuartetWestfälisches Blechbläser-Ensemble + +461451Albrecht MayerGerman solo-oboist, born 3 June 1965 in Erlangen, Germany. He is a member of the [a=Berliner Philharmoniker] since 1992. +Founder of [a=New Seasons Ensemble]Needs Votehttp://www.albrechtmayer.com/http://en.wikipedia.org/wiki/Albrecht_MayerMayerBerliner PhilharmonikerSinfonia VarsoviaBamberger SymphonikerNew Seasons EnsembleBläserensemble Sabine MeyerBach-Collegium MünchenBerliner Barock Solisten + +461456Martin KretzerMartin KretzerMartin Kretzer, born 1950 in Wolfenbüttel, Germany, is a German trumpeter. He has been a member of the Berliner Philharmoniker from 1973 to 2016.Needs VoteBerliner PhilharmonikerBlechbläser-Ensemble Der Berliner Philharmoniker + +461464Hermann BäumerGerman trombonist and conductor, born 28 January 1965 in Bielefeld, Germany.Needs Votehttps://www.hermannbaeumer.com/https://de.wikipedia.org/wiki/Hermann_BäumerBäumerBerliner PhilharmonikerBrass PartoutTriton Trombone QuartetWestfälisches Blechbläser-EnsembleKuhlo-Horn-Sextett 1991 + +461546Ian McDougallIan McDougall(born 14 June 1938, Calgary - died 26 January 2026) Canadian trombonist who grew up in Victoria, British Columbia. +Married to [a=Barbara McDougall].Needs Votehttps://ianmcdougall.com/https://en.wikipedia.org/wiki/Ian_McDougall_(musician)https://www.imdb.com/name/nm15037737/https://thecanadianencyclopedia.ca/en/article/ian-mcdougall-emcI. M. McDougallI. McDougallI.McDougallIan MacDougalIan MacDougallIan McDougalIan McDougall OrchestraMcDougallWoody Herman And His OrchestraThe Brass ConnectionRob McConnell & The Boss BrassWoody Herman And The Swingin' HerdAll Star Swing BandPacific SaltThe Dave Robbins BandThe Fraser MacPherson QuintetThe Ian McDougall QuartetIan McDougall QuintetThe Ian McDougall SextetHugh Fraser's Bonehenge!The Ian McDougall Big BandArt Ellefson Sextet + +461773Philip HarperTrumpet player. Born on May 10, 1965 in Baltimore, Maryland. + +Between the years 1986 and 1988 he was a member of Art Blakey´s Jazz Messengers and then co-founded The Harper Brothers, which released albums on Verve Records. +Brother of [a=Winard Harper].Needs VoteHarperJ. HarperP. HarperPhil HarperPhillip HarperThe Harper BrothersArt Blakey & The Jazz MessengersMingus Big BandThe Errol Parker TentetThe Cedar Walton SextetThe Heliosonic Tone-tetteGoodfellas (18)Super QuintetYoichi Kobayashi & J,Messengers + +462043Bruno CaninoItalian classical pianist and composer, born 30 December 1935.Needs Votehttps://en.wikipedia.org/wiki/Bruno_Caninohttps://www.bach-cantatas.com/Bio/Canino-Bruno.htmhttps://www.stauffer.org/en/professors/bruno-canino/B. CaninoCaninoMr. Caninoブルーノ・カニーノOrchestra Del Teatro Alla ScalaI Solisti Delle Settimane Musicali Internazionali di Napoli + +462175Peter RundelGerman violinist and conductor, born 1958 in Friedrichshafen, Southern Germany. +From 1984 to 1996, he was a performing member of the [a=Ensemble Modern], since 1987 he also works internationally as a conductor, mainly for contemporary music. +Since 2005, he is the permanent conductor of the [a=Remix Ensemble], the contemporary music ensemble of Casa da Música, Porto, Portugal.Needs Votehttps://de.wikipedia.org/wiki/Peter_Rundelhttps://de.karstenwitt.com/peter-rundel-BiographieRundelEnsemble ModernRemix EnsembleEnsemble Modern Orchestra + +462220The London Chamber OrchestraUK's oldest professional chamber orchestra, founded in 1921 by [a=Anthony Bernard]. + +[b]Not to be confused with [a=The Chamber Orchestra Of London], which is a commercial session orchestra[/b].Needs Votehttps://en.wikipedia.org/wiki/London_Chamber_Orchestrahttps://www.lco.co.uk/https://adp.library.ucsb.edu/index.php/mastertalent/detail/105117/London_Chamber_OrchestraLCOLCO - The London Chamber OrchestraLCO StrijkkwintetLcoLondon Baroque OrchestraLondon Chamber OrchestraLondon Chamber Orchestra And ChorusLondon Chamber Orchestra LtdLondoner Kammer-OrchesterLondoner Kammer-SolistenLondoner KammerorchesterMembers Of The London Chamber OrchestraOrchestre De Chambre De LondresOrchestre de Chambre de LondresThe Chamber Orchestra Of LondonThe City Of London Chamber OrchestraThe London Chambers Orchestraロンドン室内管弦楽団Christopher Warren-GreenJack RothsteinRoger ChaseBen KennardAlison BalsomMark Van De WielJonathan SnowdenColin SheenCharles TunnellSir John BarbirolliAlice TrenthamTrevor Williams (2)Ciaran McCabeJoely KoosDerek SimpsonGordon HuntGraeme McKeanKaren Jones (3)Meyrick AlexanderJohn HoneymanAmbrose GauntlettPierre DoumengeDebbie PreeceVictoria SaylesClifton HarrisonGreta MutluKenneth Essex (2) + +462314Peter KatesAmerican-born percussionist and music teacher active in Norway since 1994.Needs VotePeter A. KatesPeter Adam KatesBit 20 EnsembleBergen Filharmoniske Orkester + +462315Gary PetersonGary Blake PetersonAmerican trumpeter, conductor, composer, and music teacher, active in Norway since 1999. +[b]For the Rhino Records researcher, please use [a533247].[/b]Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +462359Joanna ForbesJoanna Forbes L'EstrangeEnglish vocalist, best known for her work with world-renowned a cappella group The Swingle Singers, of which she was soprano and musical director for over six years. She is a classical soprano, jazz singer, composer/arranger, CD producer, and singing teacher, and the wife of [a836717].Needs Votehttps://www.joannaforbeslestrange.com/J ForbesJ. ForbesJo ForbesJoanna Forbes L'EstrangeJoanna Forbes L'estrangeJoanna Forbes LestrangeJoanna Forbes L’EstrangeJoanna Forbes-L'EstrangeJoanna Forbes-LestrangeJoanna Forbes-´L'ÉstrangeJoanna L'EstrangeJoanne Forbes L'EstrangeThe Swingle SingersMetro VoicesLondon VoicesTonus PeregrinusSchola Cantorum of OxfordTenebrae (10)L'Estranges In The Night + +462374Niki MacNeeds Major Changes + +462460Yannick DondelingerClassical violist, born 1970 in London, England.CorrectMahler Chamber OrchestraHelsingborgs SymfoniorkesterGustav Mahler Jugendorchester + +462603José CarrerasJosep Maria Carreras CollBetter known as José Carreras, is a Spanish operatic tenor who is particularly known for his performances in the operas of Donizetti, Verdi and Puccini. +Born 5 December 1946, in Barcelona, Spain. He made his debut on the operatic stage at 11 as Trujamán in Manuel de Falla's El retablo de Maese Pedro, and went on to a career that encompassed over 60 roles, performing in the world's leading opera houses and on numerous recordings. + +He gained fame with a wider audience as one of the Three Tenors, with Plácido Domingo and Luciano Pavarotti, in a series of large concerts from 1990 to 2003. +He is also known for his humanitarian work as president of the José Carreras International Leukaemia Foundation (La Fundació Internacional Josep Carreras per a la Lluita contra la Leucèmia), which he established following his own recovery from the disease in 1988.Needs Votehttps://en.wikipedia.org/wiki/Jos%C3%A9_Carreras(J.C).(J.C.)CarrarasCarrerasJ. CarrerasJ.C.Jose CarrerasJose GarrerasJosep CarrerasJosep Ma. CarrerasJosep Mª CarrerasJosoCuraJosè CarrerasJosé Carreras ( Des Grieux )José CarrerrasJosé Ma. CarrerasJosé Ma. CasserasJosé Maria CarrerasJosé María CarrerasKarerasΧοσέ ΚαρέραςХ. КареррасХосе Каррерасカレラスホセ・カレラスホセ・カレーラス卡列拉斯荷西.卡列拉斯荷西.卡瑞拉斯호세 카레라스The Three Tenors + +462826Carlos PiantiniCarlos Alberto Piantini EspinalViolinist and conductor, born 9 May 1927 in Santo Domingo de Guzmán, Dominican Republic and died 26 March 2010 in Port Jervis, Dominican Republic. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteCarlos Piantini And His Authentic CharangaNew York Philharmonic + +463081Larry LingleLarry Gene LingleGuitarist + +Has played at a plenty of soul and disco especially, recordings since late 70's. +Needs VoteL. LingleLarry G. LingleThe Four SeasonsL.A.X.Pieces (3) + +463442Ingrid HilleGerman actress and voice actress.Needs Votehttps://www.imdb.com/name/nm4271804/ + +463691Lisa ChilcottLisa Jane Chilcott CorrectChillcottL ChilcottL. ChilcottL.ChilcottLisa BarrettaLisa ChilloctLisa Pin-Up2 FierceLP ProjectTidy Girls + +463696Elmo HopeSt. Elmo Sylvester HopeAmerican jazz pianist and composer. +Born June 27, 1923 in New York City, New York. +Died May 19, 1967 in New York City, New York. +Performed with Joe Morris, Sonny Rollins, Lou Donaldson, Clifford Brown, Jackie McLean, Frank Foster, Art Blakey (and others) and as a leader. Married to [a1836281]. + + + +Needs Votehttps://www.bluenote.com/artist/elmo-hope/https://www.npr.org/2023/08/17/1193962841/an-elmo-hope-centennial-celebration-giving-a-jazz-piano-pioneer-his-duehttps://www.allaboutjazz.com/musicians/elmo-hope/http://en.wikipedia.org/wiki/Elmo_HopeE. HopeEl. HopeHopeElmore SylvesterLou Donaldson - Clifford Brown QuintetJoe Morris OrchestraSonny Rollins QuintetJackie McLean QuintetElmo Hope EnsembleThe Curtis Counce GroupElmo Hope SextetElmo Hope TrioElmo Hope QuintetElmo Hope QuartetThe Curtis Counce QuintetLou Donaldson SextetThe Harold Land Quartet + +463781Joe WaltersJoseph WaltersHorn player from the UK.Needs Votehttp://les-chevaliers.co.uk/joe.htmlJoseph WaltersStereolabThe SixteenThe King's ConsortDunedin ConsortCollegium 1704Ensemble MarsyasIrish Baroque OrchestraLes Ambassadeurs (6) + +463782John Ryan (3)John Killian RyanClassical hornist. +Former Co-Principal Horn of the [a=London Symphony Orchestra] (2001-2009).Needs VoteLondon Symphony OrchestraLondon Philharmonic Orchestra + +463875Nico DostalNikolaus Josef Michael DostalAustrian operetta and film music composer, born 27 November 1895 in Korneuburg, Austria and died 27 October 1981 in Salzburg, Austria.Needs Votehttp://en.wikipedia.org/wiki/Nico_Dostalhttps://de.wikipedia.org/wiki/Nico_Dostalhttps://adp.library.ucsb.edu/names/103538Begleitorchester Nico DostalDostalDostal, NicoN. DostalN. DostelN.DostalNito DostalVon Nico DostalИ. ДостальН. ДостальН.ДостальНико Досталь + +463881Jules SylvainAxel Stig HanssonSwedish composer and pianist. +Born June 11, 1900 in Stockholm, Sweden — died October 29, 1968 in Castiglione della Pescaia, Italy. + +Used a lot of different aliases. The Swedish Performing Rights Society, STIM, has 28 registered aliases for Stig Hansson. Those are: [a1860493], Boucher, [a=Willy Bramsen], W Bright, [a4857751], Brown & Ehrlich, Bengt Carlberg, J Enrico, Frank Louis, [a5815795], Sigurd Hannel, Otto Herrman, Jack Jonsson, [a2232701], [a2232960], [a1818772], Nic Layton, [a1884543], Lee, Jim McCoy, [a5882609], David Palmér, [a1966071], Edward Reimer, [a6526728], Stephen Sinclair, [a1883640] and Vaclav Zerol.Needs Votehttp://www.julessylvain.se/https://sv.wikipedia.org/wiki/Jules_Sylvain (Sw)https://en.wikipedia.org/wiki/Jules_Sylvain (En)https://adp.library.ucsb.edu/names/104645G. SylvainJ SylvainJ. SulvainJ. SyilvainJ. SylvainJ. SylvanJ. SylvianJ. SylwainJ.SylvainJuies SylvainJul. SylvainJules SulvainJules Sylvain (Stig Hansson)Jules SylvanJules SylvianJules SylwainJules-SylvainStig HanssonSylvainSylvanSylvianSylwainSylwanЖ. СюльвенЖюль СюльвенLarsson I HultEinar BjörkeEugen WidmanPeter LebedjeffEmil RehmanSven LandahlJean LarentoBroby-PelleVaclav ZerolSigurd HannelThompson & BrightStig HammarTed McLouisWilly BramsenEmil SegnitzBrown-EhrlichBengt CarlbergJules Sylvains Orkester + +463895Essiet EssietEssiet Okon EssietAmerican jazz bass player, born 1 September 1956 in Omaha, Nebraska, USA, to Nigerian parents. +Needs VoteBssiet Okon EssietE. EssietEssie EssietEssietEssiet O. EssietEssiet Okon EssietEssiet Okon Essiet,Essiet Okun EssietWssiet Okon EssietЭссиет Окон ЭссиетArt Blakey & The Jazz MessengersThe Blue Note All-StarsGeorge Cables TrioBobby Watson & HorizonThe Brian Lynch QuartetRalph Peterson TrioGeorge Adams QuartetRon Affif TrioSuperlights QuintetRomantic Jazz TrioMarty Cook GroupContinuum (10)George Cables QuartetCharles Thomas TrioGoodfellas (18)Carl Orrje TrioRalph Peterson & The Messenger LegacyYoichi Kobayashi & J,MessengersSouthern Africa Force + +463963Karl FaustProducer and recording supervisor for [l7703].CorrectC. FaustFaustProf. Karl Faustカール・ファウスト + +464097Edith MarkmanViolinist.Needs VoteEddie MarkmanEdie MarkmanEdith H. MarkmanEdith J. MarkmanLos Angeles Philharmonic Orchestra + +464105Raymond KoblerRaymond Spencer KoblerAmerican violinist, born in 1945Needs VoteRay KoblerSan Francisco SymphonyThe Cleveland OrchestraNational Symphony Orchestra + +464110Franklyn D'AntonioAmerican violinist, born in 1957.Correcthttps://web.archive.org/web/20230610065006/https://www.berkeleysymphony.org/people/franklyn-dantonio/D'Antonio Franklyn C.D'Antonio, FranklynFrank D'AntonioFranklIn D'AntonioFrankli n D'AntonioFranklin D'AntonioFranklin D'antonioFranklin DíAntonioFranklyn C. D'AntonioFranklyn D'AntoniaFranklyn D'antonioFranlyn D'AntonioBerkeley Symphony OrchestraLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +464384Abe LuboffAmerican bassist, educator, author & Los Angeles session musician. +Born 19 May 1917, Chicago, Illinois, USA. +Died 26 Jul 2004, Los Angeles, California, USA. + +Uncredited originator of the aquaphobic two-note opening for the main title theme of [r=1506203]. Author of, "Sevcik For Bass: An Entertaining Series of Exercises for Bow Technique" (Debabe, 1975.) One-time mentor of [a=Jerry Watts Jr.] (CSUN.) No relation to [a=Norman Luboff].Needs Votehttps://www.imdb.com/name/nm1149796/Abraham LuboffAl LuboffHarry James And His OrchestraStan Kenton And His OrchestraLos Angeles Philharmonic OrchestraElmer Bernstein & OrchestraStan Kenton And The Innovations Orchestra + +464390Richard PerissiFrench horn player (1921-8th November 2007).Needs Votehttp://united-mutations.com/p/richard_perissi.htmhttps://www.feenotes.com/database/artists/perissi-richard-1921-8th-november-2007/https://www.imdb.com/name/nm6915491/Dick ParisiDick PerisiDick PerisseDick PerissiDick PirissiPerissiPerissi RichardPerissi Richard E.R. PerissiR. PersissiRichar PerissiRichard E. 'Dick' PerissiRichard E. PerissiRichard N. PerissiRichard ParisiRichard ParissiRichard PeressiRichard PerisisRichard PerrissiHarry James And His OrchestraArtie Shaw And His OrchestraHenry Mancini And His OrchestraGordon Jenkins And His OrchestraThe Abnuceals Emuukha Electric OrchestraLalo Schifrin & OrchestraRalph Carmichael OrchestraThe Los Angeles Neophonic OrchestraThe Horn Club Of Los AngelesNeal Hefti And His Jazz Pops OrchestraThe Wrecking Crew (6)Frank Sinatra And His Orchestra + +464730Margaret DornMargaret Anna DornSinger - songwriter - producer - arrangerNeeds Votehttp://theaccidentals.com/members/margaretdorn.htmlDoraDornM. DornMargaretMargret DornThe Manhattan TransferThe Accidentals"Chicago" Female Chorus (2002 Miramax Motion Picture) + +465031Peter OlofssonSwedish violinist. First concertmaster of [a3064719]. Concertmaster at [a=The Chamber Orchestra Of Europe], and the [a=Uppsala Kammarsolister].Needs VoteSveriges Radios SymfoniorkesterForge PlayersThe Chamber Orchestra Of EuropeUppsala KammarsolisterGävle SymfoniorkesterStenhammar Quartet + +465064L.T.R. van SchooneveldLeenderd T. Richard van SchooneveldNeeds VoteL. SchooneweldL. T. R. Van SchooneveldL. T. R. van SchooneveldL. T. SchooneveldL. T. van SchooneveldL. T.R. van SchooneveldL. T.R.v.SchooneveldL.T. SchooneveldL.T. van SchooneveldL.T.R. SchooneveldL.T.R. Van SchooneveldL.T.R. v SchooneveldL.T.R. van SchoonefeldL.T.R. van SchoonveldL.T.R.v.SchooneveldL.T.R.van SchooneveldLT. van SchooneveldLTR Van SchooneveldLTR van ScooneveldR. SchooneveldR. Van SchooneveldR. Van SchoonveldR. van SchooneveldR. van SchoonveldR.SchooneveldRichard Van SchooneveldRichard van SchooneveldSchooenveldSchoonefeld, L.T.R. vanSchooneveld, LeenderdVan Schooneveldvan SchoonveldG-SpottCyber HumanOut NowRichard DurandCliffhangerHeaven's CryG-ProjectDJ Jose vs. G-SpottDigital Culture (3) + +465065Jos KlasterJohannes L. Jos KlasterNeeds VoteJ KlasterJ. KlasterJ.KlasterJ.L. KlasterJL KlasterDJ JoseJose (37)Heaven's CryDJ Jose vs. G-Spott + +465070Håkon ThelinNorwegian double bass player, vocalist and composerNeeds Votehttps://www.haakonthelin.com/multiphonics/https://haakonthelin.bandcamp.com/H.ThelinThelinEnsemble ModernOslo SinfoniettaPoingCikada EnsembleEple Sextet + +465257Raymond Vincent1943-2018. Belgian violin player and composer.Needs VoteA. VincentAllan VicentAllan VincentE. VincentR. VicentR. VincentR.VincentRay VincentRay. VincentRaymondRaymond VincientV. DreVicentViincentVincentThe StradivariusWallace CollectionEsperanto (5) + +465259Jack ElloryBrtish flautist. Born June 18, 1920, died July 5, 2009. +John Ellory was a graduate from Trinity College in Bristol, UK and the Royal College of Music. The London Philharmonia Orchestra was founded in 1945 and Ellory was the first hired to play second flute. The orchestra was often called upon to play session work for EMI recording studio. Ellory would soon become a studio musician playing flute for such artists as Bing Crosby, Frank Sinatra, Peter Sellers, and of course, The Beatles. + +Jack Ellory can also be heard playing in the soundtrack of many of the early James Bond and Pink Panther films. Other works include the films The Guns of Navarone and Where Eagles Dare. +He played the flute solo on [a=The Beatles] 'The Fool on the Hill' (1967). +Needs VoteJ. ElloryPhilharmonia OrchestraThe Laurie Johnson OrchestraThe Kingsway Symphony OrchestraKenny Graham And His SatellitesRobert Farnon And His Orchestra + +465592Simon ChamberlainPiano and celeste player.Needs Votehttps://www.imdb.com/name/nm0150210/ChamberlainS. ChamberlainSimm ChamberlainSimon ChamberlengSimon ChamerlainSimon ChamerlaneRoyal Philharmonic OrchestraThe Michael Nyman BandYou (48) + +465844Jennifer Brown (3)British classical cellist. Born in London, England, UK. +She was with the [a=Young Musicians Symphony Orchestra] in the 1970s. She studied at the [l527847]. She became a member of the [a=Orchestra Of The Royal Opera House, Covent Garden] aged 21, and was appointed Sub-Principal the following year. After 5 years, in 1982, she became a member of the [a212726]. As a member of the [a=Tzigane Piano Trio], she has recorded the complete piano trio works by [a=Cécile Chaminade]. +Daughter of [a=James W. Brown (2)].Needs Votehttp://www.jenniepounder.com/https://www.feenotes.com/database/artists/brown-jennifer/https://lso.co.uk/orchestra/players/strings.html#Celloshttps://lso.co.uk/more/blog/1347-40-years-on-an-interview-with-jennie-brown.htmlhttps://www.imdb.com/name/nm3264221/Jennie BrownJenny Brownジェニファー・ブラウンLondon Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenYoung Musicians Symphony OrchestraTzigane Piano Trio + +465982Maurizio PolliniMaurizio PolliniItalian classical pianist and conductor, born January 5, 1942, in Milan, died March 23, 2024, in Milan. + +He was the winner of the VI International Chopin Piano Competition in 1960. +Father of pianist and conductor [a1821726]. +Needs Votehttps://en.wikipedia.org/wiki/Maurizio_Pollinihttps://www.deutschegrammophon.com/en/artist/pollini/https://www.deutschegrammophon.com/en/artists/mauriziopollini/news/maurizio-pollini-passes-away-at-82-272396https://www.imdb.com/name/nm2508308/M. PolliniMaurizioMaurizio Pollini, PianoPolliniМаурицио Поллиниマウリツィオ・ポリーニマウリツィオ・ポリーニ + +465983Arnold SchoenbergArnold SchönbergAustrian composer and painter, best known as the (putative) innovator of the twelve-tone technique. Leader of the Second Viennese School. +Born 13 September 1874 in Vienna, Austria as [b]Arnold Schönberg[/b], emigrated to the US in 1933 and changed his name to [b]Arnold Schoenberg[/b]. He died 13 July 1951 in Los Angeles, California, USA. +Starting from the exasperated Wagnerian chromatism of the Tristan with the sextet for strings "Verklärte Nacht" Op.4 of 1899, the symphonic poem "Pelleas und Melisande" Op.5 of 1903 and the cantata "Die Gurrelieder" (1900-1911), he reached the total decomposition and liquidation of the Tonality and Harmony with the "Three Pieces for Piano" Op.11 of 1909, "Five Pieces for Orchestra" Op.16 (1909) and the "Pierrot Lunaire" (1912). +With the Five Pieces for Piano Op.23 and the Serenade Op.24 of 1923 Schoenberg organizes the sounds in a rational way, which he defined: +"Method of Composition by means of twelve tones in relation only to each other", called Dodecaphony or "serial music ". Father in law and private teacher of [a2344778], grandfather of [a4288653]. +Much of his archived work was destroyed in the wildfires of the LA area in early 2025. +Needs Votehttps://www.schoenberg.at/https://www.facebook.com/arnoldschoenbergcenter/https://x.com/ascschoenberghttps://www.youtube.com/c/ascvideo/https://www.instagram.com/arnoldschoenbergcenter/https://en.wikipedia.org/wiki/Arnold_Schoenberghttps://www.britannica.com/biography/Arnold-Schoenberghttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102726/Schoenberg_ArnoldA. SchoenbergA. SchonbergA. SchöenbergA. SchönbergA. Šenberg / A. SchoenbergA.SchoenbergAmold SchönbergArnold SchoembergArnold SchonbergArnold SchöbergArnold SchöenbergArnold SchönbergArnold SchœnbergArnold ShoenbergArnold ŠenbergSchoenbergSchoenberg, ArnoldSchoenberg-WebernSchonbergSchönbergSchöenbergSchönbergSchœnbergА. ШeнбергА. ШенбергА. ШёнбергА.ШёнбергАрнолд ШенбергАрнолд ШьонбергАрнольд ШенбергАрнольд ШёнбергШенбергアルノルト・シェーンベルクシェーンベクシェーンベルク + +466144Hans KnappertsbuschGerman conductor, born 12 March 1888 in Elberfeld, now Wuppertal, German Reich and died 25 October 1965 in Munich, Germany.Needs Votehttps://knappertsbusch-stiftung.de/http://www.hansknappertsbusch.de/https://en.wikipedia.org/wiki/Hans_Knappertsbuschhttps://web.archive.org/web/20060210023417/http://www.trovar.com/kna.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/361564/Knappertsbusch_Hanshttps://www.britannica.com/biography/Hans-KnappertsbuschGeneralmusikdirektor Hans KnapperstbuschGeneralmusikdirektor Hans KnappertsbuschGeneralmusikdirektor Prof. KnappertsbuschH. KnappertsbuchH. KnappertsbuschHans KnappertbuschKnappertsbuschProf. Hans KnappertsbuschProfessor Hans KnappertsbuschГ. КнаппертсбушГанс КнаппертсбушКнаппертсбушХ. Кнаппертсбушハンク・クナッパーツブッシュハンス・クナッパーツブッシュ + +466270Harry SimeoneHarry Moses SimeoneAmerican pianist, music arranger, conductor and composer. +Born May 9, 1911, Newark, New Jersey, USA. +Died February 22, 2005, New York City, USA. +Married to singer [a=Margaret McCrae] (1938-2001, her death). +Simeone's [i]Harry Simeone Chorale[/i] group popularized the song "The Little Drummer Boy" in 1958, after it was first recorded in 1951 by the Austrian Trapp Family. Simeone co-wrote the song with [a=Katherine K. Davis] & [a=Henry Onorati]. The song charted five times between 1958-62 by his group and thirty times since by other artists. +Simeone was arranger and conductor for [a=Fred Waring], beginning in 1939. He studied piano and composition at Juilliard and also played piano, conducted and arranged for CBS.Needs Votehttp://en.wikipedia.org/wiki/Harry_Simeonehttps://www.imdb.com/name/nm0799469/https://adp.library.ucsb.edu/names/105370B. SimeoneH SimeoneH SimoeneH. LimeoneH. S. MeoneH. SimconeH. SimelorH. SimenneH. SimeonH. SimeoneH. SimioneH. SimoeneH. SimoneH. SiméoneH. SineoneH. SmeoneH.SimeoneH.SimoneHarryHarry Moses imeoneHarry SemeoneHarry SimeneHarry SimeonHarry SimeonéHarry SimonHarry SimoneHarry SiméoneHarry SineoneHary SimeoneHenri SimeoneHenry SimeoneHenry SineoneJ. SimeoneM. SimeoneMary SimeoneP. SimonR. SimeoneSimenneSimeoeSimeomeSimeonSimeoneSimeone H.Simeone HarrySimeone, HarrySimeoniSimioneSimoeneSimoneSiméoneSomeoneSomeonsThe Harry Simeone ChoraleHarry Simeone OrchestraHarry Simeone His Orchestra And ChorusThe Harry Simeone Songsters + +466362Marc SteckarMarc Joseph Victor SteckarFrench tuba, trombone and euphonium player, composer, arranger, leader (b. 1935, Cherbourg, France - died in Bessancourt June 27th 2015. + +After studying the cello and the trombone at the Paris Conservatoire National Supérieur de Musique he went on to play in a number of Big Bands. In the 1960s he accompanied Marlene Dietrich, Nat King Cole, Sammy Davis and Charles Aznavour, and in 1970 added the tuba, working as a studio musician and recording with Michel Legrand, Vladimir Cosma, Michel Colombier and others. From 1973 to 1983 he accompanied Claude Nougaro with Eddie Louiss and Maurice Vander, and played in the orchestras of Martial Solal, Michel Portal and others. + +In 1981 he formed his own group, the "Steckar Tubapack", and his first recording in 1982 won the Prix Boris Vian, awarded by the Académie de Jazz. Marc Steckar has recorded over twenty discs using the tuba and in 1990 he started to mix the tuba with other ensembles, big bands, brass bands, wind bands, and choirs. In 1994 he composed several concertos for tuba, euphoniums and trombones and in 1999 received the Sacem Prix Printemps. He has gone on to compose several children’s tales and concertos for clarinet quartet, trumpets and bass trombone, all with wind ensemble. + +Marc Steckar is the father of [a=Franck Steckar] + + + +Needs Votehttp://fr.wikipedia.org/wiki/Marc_SteckarM. SteckarM. SteckerM. SteekarMarcMarc Joseph Victor SteckarMarc SkeckarMarc SteckanMarc SteckartMarc SteckerMarc StekkarMart StreckarMichel StekkarSteckarSteckar MarcCram RacketsMarc StevyRamón LópezSynthesis (6)Grand Orchestre De L'OlympiaMulticolor Feeling FanfareIvan Jullien Big BandZetwalGérard Badini Super Swing MachineMartial Solal Big BandSteckar TubapackYochk'o Seffer Big-BandBenny Bennet Et Son Orchestre De Musique Latine-AméricaineJean-Jacques Ruhlmann Big BandDidier Goret Big Band + +466369Christian GuizienChristian GuizienFrench Trombonist (1940-2015)Needs VoteAlain GuizienC. GuizienCh. GuizienChristian GuizenChristian GuizieuChristian GuizinChristian GuérinGuizienGuizien ChristianEnsemble Musique VivanteClaude Cagnasso Big BandIvan Jullien Big BandBig Jullien And His All StarDany Doriz Big BandMichel Legrand Big BandLes M.J. Horns + +466429Les ElstonLeslie John ElstonUK hard dance artist, best known as half of [a=Lab 4].Needs VoteElstonL ElstonL J ElstonL. ElstonL. J. ElstonL.ElstonL.J. ElstonLJElstonLes.Leslie ElstonLez ElstonDj X Lab4Lab 4The Mind Of GodCreedHyperwaveDrumAura ZBerettaLuna ChiqueKurve + +466526Hamilton DeanHamilton Craig DeanNeeds Votehttp://www.myspace.com/dj_hamhttp://www.myspace.com/hamiltondnbA. DeanD. HamiltonDeanH DeanH. DeanH.DeanHamiltonR. DeanDJ HamAluminaSlush & PuppieDJ Brian (2)Eclipse (9)John BarnardRoland (7)Hamilton (17)CyberdriveBrisk & HamDropzoneStimulant DJsEurotrashPowerhouse (3) + +466527Paul NinehamPaul Michael NinehamUK Hardcore & Gabber producer and DJ; he also produces Hardtrance and currently is reinventing himself producing Drum & Bass Needs VoteNinehamP NinehamP. NinehamP.NinehamBriskCyberdriveDouble Dutch (2)HyperaktiveQuicksilver (2)Landslide (3)Brisk & TrixxyCyberdriveBrisk & HamRapidoDropzoneBrisk & VinylgrooverStimulant DJsEurotrashBrisk & FadeBrisk & V.A.G.A.B.O.N.D.Brisk & Fracus + +466733Kerenza PeacockBritish violinist.Needs Votehttp://kerenzapeacock.com/https://www.facebook.com/kerenzajpeacockWired StringsCoal PortersRoyal Philharmonic OrchestraThe Pavão String QuartetThe London Recording OrchestraThe Chamber Orchestra Of London"Joe Bonamassa Live At The Hollywood Bowl" Orchestra + +466948Robert HowesRobert Frederick HowesTimpani player, percussionist, conductor and composer of mostly library and theme music.Needs Votehttps://roberthowes.co.uk/Bob HowesHowesR. HowesRobert B. HowesRobert Frederick HowesRobert HoweThe Scholars Baroque EnsembleThe English ChoraleThe Parley Of InstrumentsThe SixteenChorale (2)The Academy Of Ancient MusicLondon Mozart PlayersLondon Classical PlayersThe King's ConsortBrandenburg ConsortBach Collegium JapanOrchestra Of The Golden AgeBaroque Brass Of LondonTristan Fry Percussion EnsembleThe English Concert + +467254Guy MearnsGuy MearnsElectronic dance music producer from Leeds, England +Styles: Trance | Hard Trance | Hard House +Needs Votehttp://soundcloud.com/mearnsmusichttp://twitter.com/guymearnshttp://www.youtube.com/mearnsmusichttps://www.facebook.com/guymearnstanjiiG. MearnsG.MearnsGuy MeansMearnsGuyverKronosMizukiMonz (2)UmaroAudio TTAntonio Menez3NDGAM3Forever LucidGr33ndogThink DriftBarely LegalThe Riot BrothersEuphony (2)Masif DJ'sEuphonic SessionsM.G.M. (2) + +467532John MarascalcoJohn S. MarascalcoAmerican songwriter, producer, publisher, and label owner, +Owned the California labels [l114968] and [l293485]. + +Born: March 27, 1931 in Grenada, Mississippi +Died: July 5, 2020 in Los Angeles, CaliforniaNeeds Votehttp://en.wikipedia.org/wiki/John_Marascalcohttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=215385&subid=0BarascalcoCalcaCalcoD, MarascalcoD. MarascalesE. MarascalcoErnie MarascalcoErnie MrascalcoG. MarascalcoI. MarascalcoJ ArascalcoJ MarascalcoJ R MarascalcoJ, MarascalcaJ. A. MarascalooJ. ArascalcoJ. ManascalcoJ. MaracalcoJ. MaralascoJ. Maras CalcoJ. MarasalcoJ. MarascaglioJ. MarascaicoJ. MarascakoJ. MarascalaJ. MarascalcJ. MarascalcaJ. MarascalcoJ. MarascaldoJ. MarascaleoJ. MarascalgoJ. MarascalloJ. MarascaloJ. MarascalooJ. MarascalsoJ. MarascatoJ. MarascoloJ. MercecaiceJ. S. MarascalcoJ. S. MarascaldoJ. S. MarassalcoJ.- S. MarascalcoJ.B. MarascoloJ.C. MarascalcoJ.D. MarascalcoJ.MarascalcaJ.MarascalcoJ.MarascaleoJ.MarascaloJ.S. MarascalcoJ.S. MarascaleJ.S. MarascalloJ.S. MarassalcoJ.S.MarascalcoJhon MarascalcoJhon MarascalloJohnJohn A. MarascalcoJohn B. MarascalcoJohn MaracalcoJohn MarascaicoJohn MarascalcaJohn MarascaleeJohn MarascalenoJohn MarascaleoJohn MarascalesJohn MarascalkoJohn MarascalloJohn MarascaloJohn MarascoloJohn MaraskolkaJohn MarhscalcoJohn MariscalcoJohn MarscalcoJohn S MarascalcoJohn S. MarascalJohn S. MarascalcoJohn S. MarascaloJohn S. MarassalcoJohn S.MarascalcoJohn. S. MarascalcoJohnny MarascalcoL. MarascalcoM. CalcoM. MarascalcoMacascalcoMalascalcoManascalcoMaracaiscoMaracalcoMaracaloMaracalooMaracalscoMaracelcoMaralascoMaras CalcaMaras CalcoMaras-CalcoMarasaicaMarasaicoMarasalcaMarasalcoMarascacoMarascaicoMarascaigoMarascakoMarascalMarascalaMarascalaoMarascalboMarascalcMarascalcaMarascalceMarascalcoMarascalco John SMarascalco, JMarascalco, J.Marascalco, John S.MarascalcolMarascaldoMarascaleMarascaleoMarascaleroMarascalgoMarascalloMarascaloMarascalooMarascalosMarascalscoMarascalsoMarascaltoMarascalvoMarascascaMarascaslcoMarascasoMarascelcoMarascelloMaraschalcoMaraschaloMaraschiroMarascilsoMarasclacoMarasclgoMarascoMarascocolMarascolaMarascolcaMarascolcoMarascoloMaraskolaMaraskolkaMaraxalcoMarescalcoMarnscakoMaroscoMarrascalcoMarrisMarscalcoMarscaloMarsscalMaruscaloMasascaicoMasascaliMasascaloMascalcoMavascaloMorascalcoNaras CalcoNarascallcoR. MarascalcoS. Marascalco\Marascalco]Marascalo + +467729Dominik FelsmannDominik FelsmannGerman DJ, producer and sound designer born in Stuttgart on June 12th 1987. He has released two expansions for ReFX's Nexus 2 and several sound banks for Access Virus, Clavia Nordlead 2 and Roland JP-8080 synthesizers.Needs Votehttp://www.facebook.com/dominikfelsmann.kamuiD. FelsmannD.FelsmannDominic FelsmannDominik FelsmanDominki FelsmannVirus Inc. (2)KamuiMonsunBlack PhazeSynthflutKa (4)ZumasKairo KingdomFelsmann + Tiley + +467730Patrick ScheidtPatrick ScheidtGerman producer. Born May 23rd 1986 in Stuttgart and is based there.Correcthttp://www.facebook.com/patrickscheidtP. ScheidtP. SchneidtPatrick PlaiceVirus Inc. (2)KamuiMonsunBlack PhazeSynthflutKa (4)Patrick Plaice & Frank Ellrich + +467797Wouter JanssenWouter JanssenWouter Janssen (Dutch pronunciation: [ˈʋʌutər ˈjɑnsən], born August 30, 1982) is a Dutch DJ, known to be part of the band [a=Showtek] with his brother [a=Sjoerd Janssen]. +Needs VoteJenssenW JanssenW. JanssenW. JannsenW. JansenW. JanssenW.JanssenWouter 'Bubi' JanssenWaltAlex FakeySecond Wave (2)Bubi (6)AllureMethods Of MayhemShowtekUnibassOpcodeWoody RiversVirus (4)Walt & FelizSouthstylersDouble UnitBabylonW&SHeadlinerDutch Masters (2)Side-DishLowriders (2)Mr PutaZushiBoys Will Be Boys (2) + +467951Graham YoungUS trumpet player (b. 19 October 1921 - d. 24 December 1998).Needs Votehttps://www.findagrave.com/memorial/105108450/graham-youngG. YoungYoung GrahamThe Glenn Miller OrchestraGene Krupa And His OrchestraHenry Mancini And His OrchestraKen Hanna And His Orchestra + +467999Mickey BassLee Odiss Bass IIIAmerican bassist from Pittsburgh. His arrival in New York yielded early performances with Hank Mobley and Sonny Rollins. He then worked with jazz performers like Bennie Green, Lee Morgan, Charles Mingus, Kenny Dorham, Jackie McLean, Billy Eckstine, Johnny Hartman, Joe Henderson, Sonny Stitt, Ramon Morris, Reuben Wilson, Freddie Hubbard, Art Blakey & The Jazz Messengers, Curtis Fuller, Freddie Redd, Bobby Timmons, Tony Williams, Philly Joe Jones, Walter Bishop Jr., Zoot Sims, Mose Allison, Wynton Kelly, John Hicks, Ruth Brown, Carmen McRae and Miriam Makeba, among others. He also served as musical director for Gloria Lynne for seventeen years.Needs Votehttp://mickeybass2.bandzoogle.com/storehttp://www.youtube.com/M2MMoviesBassLee Oddis BassLee Otis Bass IIIM. BassMickey Bass (Lee Oddis Bass)Art Blakey & The Jazz MessengersThe Reunion Legacy Band + +468105Danyel GérardGérard Daniel KherlakianFrench singer, born on March 7, 1939 in Paris, with Armenian father and Corsican mother. +Considered as one of the very first French rock singer.Needs Votehttp://de.wikipedia.org/wiki/Danyel_Gerardhttps://fr.wikipedia.org/wiki/Danyel_G%C3%A9rardD GerardD GerrardD GérardD, GerardD. GedardD. GeraldD. GerardD. GererdD. GerrardD. GirardD. GrardD. GéraldD. GérardD. GërardD. JerardD. KerlakianD. ŽerarasD.GerardD.GérardDan GérardDanel GeridDanel GérardDangel GerardDaniel GerardDaniel GerrardDaniel GèrardDaniel GérardDanyal GérardDanyelDanyel - GerardDanyel G.Danyel GeradDanyel GeraldDanyel GerardDanyel GerrardDanyel GirardDanyel GèrardDanyel GérarDanyel Gérard Avec Les ChampionsDanyel/GerardDanyél GerardDaugelF. SmithG. DanyelG. KherlakianGeardGeradGerardGerard DanyelGerard, DanyelGerard-KherlakianGerrardGerrartGèrardGèrard DanyelGéaradGéradGéraldGérardGérard D.Gérard DanyelKherlakianR. GerardД. ЖepapД. ЖерарЖерарד. ג'ררד + +468112Dick MitchellRichard "Dick" Mitchell (born in California, USA) is an American woodwind player and session musician. He's specialized in alto and tenor saxophone, but plays also flutes and clarinets. He's currently the principal saxophonist of [a=Hollywood Bowl Orchestra]. + +He has performed together with several classical, jazz and pop artists, including [a=Frank Sinatra], [a=Harry James (2)], [a=Woody Herman], [a=Poncho Sanchez], [a=Paul McCartney], [a=Prince], [a=Robert Palmer], [a=Tori Amos] and [a=Chris Botti]. He has also played on numerous television and film soundtracks.Needs Votehttps://www.imdb.com/name/nm10552288/https://www.allmusic.com/artist/dick-mitchell-mn0000257834/https://rateyourmusic.com/artist/dick-mitchell/Richard A. MitchellRichard MitchellEastside ConnectionWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdThe Bill Holman BandThe Bob Florence Limited EditionClare Fischer & His Latin Jazz SextetTom Talbert Septet + +468276Ulrike SchäferGerman cellist, born 1959 in Munich, Germany.Needs VoteStreicherensemble Christian FinkGürzenich-Orchester Kölner PhilharmonikerWDR String Ensemble KölnBundesjugendorchester + +469186Dale ClevengerDale Clevenger(Born: July 2, 1940 – Died: January 5, 2022) was an American horn player, conductor and teacher. He was the principal horn of the Chicago Symphony Orchestra from February 1966 until his retirement in June, 2013.Needs Votehttps://en.wikipedia.org/wiki/Dale_Clevengerhttps://www.imdb.com/name/nm11093514/ClevengerD. ClevengerDale ClavengerDale Cleavengerデール・クレヴェンジャーChicago Symphony Orchestra + +469199Karl FruhCellist, born 2 September 1914, died 1999 in Austin, Texas. + +Member of the Chicago Symphony Orchestra 1942 - 1945, later joined the Chicago NBC radio orchestra. +Needs VoteCarl B. FruhCarl FruhKarl B. FruhKarl B. FruthKarl B.FruhKarl Fruh Jr.Karl FruthKarly FruhChicago Symphony Orchestra + +469216Christoph CaskelChristoph Caskel (12 January 1932 in Greifswald, Pomerania - 19 February 2023 in Cologne) was a German percussionist and music educator. He graduated from the Französisches Gymnasium in Berlin. He studied percussion at the Staatlichen Hochschule für Musik in Cologne from 1949 to 1954.Needs Votehttps://en.wikipedia.org/wiki/Christoph_CaskelCaskelКристоф ХаскелKölner Ensemble Für Neue MusikSchlagzeug-Ensemble Der Musikhochschule Köln + +469246John HayhurstJohn HayhurstViola player.Needs Votehttps://www.linkedin.com/in/john-hayhurst-03879043/https://www.laphil.com/musicdb/artists/2348/john-hayhursthttps://www.imdb.com/name/nm1684475/John E. HayhurstLos Angeles Philharmonic Orchestra + +469410Remo GiazottoItalian musicologist, music critic, and composer (September 4, 1910, Rome - August 26, 1998, Pisa), mostly known through his systematic catalogue of the works of [a=Tomaso Albinoni]. He was a professor of the history of music at the University of Florence, and the director of the chamber music programs for Italian broadcaster RAI (Radio Audizioni Italiane).Correcthttp://en.wikipedia.org/wiki/Remo_GiazottoAlbinoniAlbinoni-GiazottoGianottoGiazottoGiazotto After AlbinoniGiazotto RemoGiazotto, RemoGiazzottoGrazottoR GiazottoR. GiaizottoR. GiazottoR. GiazzottoR. GiozottoR.GiazottoRemo GiazattoRemo GiazottiRemo GiazzottoRemogiazottoRenzo GiazottoRémo GiazottoTomaso AlbinoniTommaso AlbinoniРемо ДжадзоттоРемо ДжацоттоРемо Джиазоттоジャゾットレモ・ジャゾット + +469874Axel Freiherr von Hoynigen-HueneGerman cellistNeeds VoteAxel Von HueneAxel von Hoynigen-HueneAxel von Hoynigen-HüneAxel von HueneGewandhausorchester Leipzig + +469951Louis StewartLouis Stewart (born January 5, 1944, Waterford, Ireland – died August 20, 2016) was an Irish jazz guitarist.Needs Votehttp://www.louisstewart.net/http://en.wikipedia.org/wiki/Louis_Stewart_%28guitarist%29Louis StuartStewartЛуис СтюартThe Chitinous EnsembleTubby Hayes QuartetGeorge Shearing TrioRonnie Scott's QuintetThe London Jazz Chamber GroupRobert Farnon And His OrchestraThe Louis Stewart TrioLouis Stewart Quartet + +470011Joel WeiskopfAmerican jazz pianist, composer and band leader, born in 1962 in Syracuse, New York, USANeeds VoteJ. WeiskopfJoe WeiskopfJoel WoiskopfWoody Herman And His OrchestraThe Woody Herman Big BandDave Stahl BandBill Warfield Big BandJohn Fedchock New York Big BandWalt Weiskopf SextetWalt Weiskopf NonetAndy Fusco QuintetDon Hanson QuartetSection 8 (33) + +470027Ferdinand GrossmannAustrian choral conductor, vocal teacher and composer, born 4 July 1887 in Tulln, Austria and died 5 December 1970 in Vienna, Austria.Needs Votehttp://en.wikipedia.org/wiki/Ferdinand_Grossmannhttps://adp.library.ucsb.edu/names/322596F. GrossmannF. GroßmannFerd. GrossmannFerdinand GrossmanFerdinand GroßmanFerdinand GroßmannFewrd. GrossmannGrossmanGrossmannGroßmannProf. Ferdinand GrossmannProfessor Ferdinand Großmannフェルディナンド・グロスマンChorus ViennensisWiener Männergesang-Verein + +470062Arthur LilleyArthur Williams Leonard LilleyBorn: 10 July 1916, Wandsworth, London, England +Died: 1982 + +Lifelong British engineer for the Decca label and its sublabels. +Needs VoteA. LilleyArthur Lilly + +470180Robert SalterClassical violinist.Needs VoteR SalterR. SalterThe Academy Of St. Martin-in-the-FieldsLondon MusiciGuildhall String Ensemble + +470181Clive DobbinsClive DobbinsViolin player.Needs Votehttps://www.linkedin.com/in/clive-dobbins-77b651b3/https://www.facebook.com/people/Clive-Dobbins/100009068305508Royal Philharmonic Orchestra + +470222Julia SchriewerFlautist.Needs VoteSinfonieorchester MünsterDeutsche Kammerphilharmonie Bremen + +470227Verena VolkmerGerman harpist, born 1978.Needs VoteVerena VolknerSüdwestdeutsches Kammerorchester + +470246Michael SvobodaMike SvobodaComposer and trombonist was born in 1960 of the Pazifik-Island Guam.Needs Votehttps://mikesvoboda.net/M.SvobodaMichel le VosdaboMike SvobodaMike Svoboda,SvobodaМайк СвободаEnsemble ModernPaper FactoryManfred Kniel And His Reduction QuartetMichael Kiedaisch Trieau + +470255Andrew DigbyClassical trombone player.Needs VoteEnsemble ModernApartment HouseEnsemble AventureEnsemble Ascolta + +470263Gregory JohnsClassical cellist.Needs VoteEnsemble ModernEnsemble Modern Orchestra + +470264Hae Sun KangViolin player.Needs Votehttps://en.karstenwitt.com/hae-sun-kang-biographyHae-Sun KangEnsemble IntercontemporainEnsemble Prometeo + +470389Andrew WattsClassical countertenor/alto, born 29 December 1967. + +For the classical bassoonist, see [a=Andrew Watts (2)]. +For the trumpeter, see [a=Andrew Watts (3)]. +Needs VoteMaster Andrew Watts + +470549Darren StokesDarren StokesNeeds VoteD StokesD StrokesD. StokesD.StokesStokerStokesDyna MinkTin Tin OutBaby BlueGoodfellosStark 92Faze IITall Tin BoxStokes & LongStudio KillersM-3ox + +471201Marc GrauwelsMarc GrauwelsMarc Grauwels is a Belgian flautist who made his orchestral debut with the Flemish Opera at age nineteen. He taught at the Royal Conservatory of Brussels for fifteen years and now he holds a chair as titular professor at the Royal Conservatory of Mons.Needs Votehttp://www.marcgrauwels.be/GrauwelsM. GrauwelsMarc Grauwels Und FreundeMark GrauwelsМ. ГрауэлсLes Violons du RoyThe Brussels Virtuosi + +471753Mark BennettString player. + +For the classical trumpeter, see [a=Mark Bennett (2)]. +For the jazz trombonist, see [a=Mark Bennett (3)]. +For the stage manager, see [a=Mark Bennett (4)]. +For the photographer, see [a=Mark Bennett (5)]. +Needs VoteBennettGavin Bryars EnsembleRoyal Philharmonic OrchestraAuckland Philharmonia OrchestraBach Musica NZ + +471823Bob Gordon (2)Robert GordonAmerican jazz baritone saxophonist, born June 11, 1928 in St. Louis, Missouri, died August 28, 1955 in California (car accident). +Gordon was a cool jazz saxophonist, best known as a sideman with Stan Kenton, Shelly Manne, Chet Baker, Maynard Ferguson, trombonist Herbie Harper and tenor saxophonist Jack Montrose, among others. +Needs Votehttp://en.wikipedia.org/wiki/Bob_Gordon_%28saxophonist%29https://adp.library.ucsb.edu/names/203889Bob GordonBobby GordonGordonChet Baker EnsembleShorty Rogers And His OrchestraHoward Rumsey's Lighthouse All-StarsDave Pell OctetThe Lennie Niehaus OctetShelly Manne SeptetBob Gordon QuintetMaynard Ferguson OctetJack Montrose SextetClifford Brown EnsembleBill Holman OctetHerbie Harper QuintetDon Fagerquist NonetteDave Pell EnsembleThe George Redman GroupThe Modern Jazz OctetHall Daniels' OctetThe West Coast All Star Octet + +471944Sidney SutcliffeSidney Clement SutcliffeSidney "Jock" Sutcliffe was a British oboist (and cellist), and Professor of Oboe. Born October 6, 1918 in Edinburgh, Scotland - Died July 5, 2001. +He studied at the [l290263] for three years. In 1938 he was appointed principal oboe in the [a=Sadler's Wells Orchestra]. He served as principal oboist for [a271875] (1945-1949), first oboe in the [a454293]/[a=New Philharmonia Orchestra] (1949-1964) and co-principal oboist with [a289522] (1964-1971). In 1971, he decided to go freelance. He was taught at the Royal College of Music for twenty years. He retired in 1983.Needs Votehttps://www.youtube.com/channel/UCYfMM1L14N4hS1EfknHS37Qhttps://open.spotify.com/artist/1ZVx4xU2QzET7qTJRWKd4shttps://music.apple.com/us/artist/sidney-sutcliffe/5868799https://music.apple.com/co/artist/sidney-sutcliffe/5868799?l=enhttps://en.wikipedia.org/wiki/Sidney_Sutcliffehttps://www.theguardian.com/news/2001/jul/12/guardianobituaries3https://www.telegraph.co.uk/news/obituaries/1333755/Jock-Sutcliffe.htmlhttps://www.independent.co.uk/news/obituaries/jock-sutcliffe-9209331.htmlhttps://www.heraldscotland.com/news/12176072.sidney-sutcliffe/S. SutcliffeSydney SutcliffeСидни СатклиффJock Sutcliffe (2)BBC Symphony OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraThe Virtuosi Of EnglandSadler's Wells OrchestraDennis Brain Wind EnsembleThe Music Group Of LondonThe Little Symphony Of LondonThe London Wind QuintetLondon Baroque EnsembleThe Wind Virtuosi Of EnglandPhilharmonia Wind Quartet + +471949Peter HallingAustralian classical cello player and teacher. Born in Rowella, Tasmania, Australia. +His family relocated to England on the eve of the 2nd World War. He studied at the [l527847]. Original player of [b]Quartet Pro Musica[/b] (1955). Peter Halling (and his brother, [a447694]) were part of [a=George Martin]'s 'go-to' string section for [a=The Beatles]. They played on "Yesterday", "Eleanor Rigby" etc. He taught at the [l=Royal Academy of Music]. +Father of [a=Rod Halling].CorrectPhilharmonia OrchestraVic Lewis And His OrchestraAmici String QuartetLondon Bach Ensemble + +471951John MeekBritish viola player. +Former member of the [a=London Symphony Orchestra] (1948-1951).Needs VoteJ. MeekMaurice MeekLondon Symphony OrchestraThe Kingsway Symphony Orchestra + +472144Ivan GallardoIvan Gallardo BaezVocalistNeeds VoteThe Roger Wagner Chorale + +472214Klaus HiemannGerman sound engineer. +Born 1942 in Leipzig, Germany. +He studied at the Hamburg University of Music and Theatre and then made his Tonmeister (sound engineer) exam at the Hochschule für Musik in Detmold. +Started working at [l=Studio Hamburg] and then hired at [l=Deutsche Grammophon Gesellschaft] as sound engineer, recording engineer and recording supervisor. In the early 1990s he was managing director of the DGG Recording Center in Hannover.Needs VoteClaus HiemannKlaus Hiemann (Deutsche Grammophon)Klaus HiermannKlaus Richard HiemannKlaus-Hiemannクラウス・ヒーマン + +472215Dr. Rudolf WernerSound engineer and producer for Deutsche Grammophon.CorrectDr Rudolf WernerDr. Rudolph WernerRudolf WernerRudolph Werner + +472391Trevor MclachlanCorrectT.McLachlan + +472676Robert St. John WrightRobert St. John WrightBritish claissical violinist.Needs VoteLondon Philharmonic Orchestra + +472677Pamela ThorbyRecorder player.Needs VoteLa SerenissimaNew London ConsortDunedin ConsortPalladian EnsembleThe English Concert + +473375Don ElliottDon Elliott HelfmanAmerican jazz trumpeter, bandleader, vibraphonist, vocalist, and mellophone player. +Born October 21, 1926 in Somerville, New Jersey, died July 5, 1984 in Weston, Connecticut, USA. +He recorded over 60 albums and 5,000 advertising jingles throughout his career. Needs Votehttp://www.middlehornleader.com/Don%20Elliott.htmhttp://en.wikipedia.org/wiki/Don_Elliotthttps://www.imdb.com/name/nm0254431/https://adp.library.ucsb.edu/index.php/mastertalent/detail/202923/Elliott_Donhttps://enciclopediadeljazz.wordpress.com/2015/06/12/don-elliott-discography/D. ElliotD. ElliottD.ElliottDonDon EliotDon ElliotDon Elliot And His ChoirDon Elliot And The Skip JacksDon Elliott And The Skip Jacks (Knocks By Sam)ElliotElliottQuincy Jones And His OrchestraThe Paul Desmond QuartetThe Don Elliott VoicesDon Elliott And His OrchestraLouie Bellson OrchestraThe Nutty SquirrelsTerry Gibbs And His OrchestraDon Elliott SextetThe Don Elliott QuintetJohnny Richards And His OrchestraGeorgie Auld's All-StarsTerry Gibbs SextetDon Elliott QuartetThe Don Elliott OctetRuby Braff's All-StarsDizzy Gillespie's Cool Jazz StarsPhil Bodner & CompanyThe Ruby Braff QuintetTerry Gibbs And His Orchestra (2)Michel Legrand & Co.Terry Gibbs OctetDon Elliott Septet + +473440Fiona SimonClassical violinist born in England who has played in the New York Philharmonic since 1985. +Married to violinist colleague [a12313678]. She retired from the orchestra in May 2024.Needs Votehttps://nyphil.org/about-us/artists/fiona-simonNew York Philharmonic + +473454Elizabeth DysonBritish classical cellist, based in the USA.Needs Votehttps://www.imdb.com/name/nm3310330/Elisabeth DysonNew York PhilharmonicAtlanta Symphony Orchestra + +473461Soo Hyun KwonViolinist.Needs Votehttps://www.imdb.com/name/nm2774275/Soohyun KwanSoohyun KwonNew York Philharmonic + +473465Dawn HannayAmerican violist, member of the New York Philharmonic from 1979 until she retired in 2016.Needs Votehttps://www.imdb.com/name/nm0360363/New York Philharmonic + +473475Melissa KleinbartPlays first violin in the San Francisco Symphony Orchestra since 1998.Needs Votehttps://www.sfsymphony.org/Data/Event-Data/Artists/K/Melissa-KleinbartVancouver Symphony OrchestraSan Francisco SymphonySan Francisco Opera Orchestra + +473837Cornelius HauptmannGerman concert and opera singer (lyric bass), born in Stuttgart. Was a member of the German Krautrock-Band [a=Eulenspygel] in the 70s.Correcthttp://www.cornelius-hauptmann.de/C. HauptmannCornelius HauptmanHauptmannEulenspygelSchubert Hoch Vier + +474004Roger DeLilloAmerican jazz trombonist, born 9 July 1936, died 12 July 2013.Needs VoteR. DeLilloRoger De LilloRoger DeLilioRoger DeLiloRoger Di LilloRoger DililoRoger H. DelilloRoger R. DeLilloThe Salsoul OrchestraWoody Herman And His OrchestraJazz In The ClassroomWoody Herman And The Fourth HerdDan McMillion Jazz Orchestra + +474012Buddy SavittBerton Schwarz.American jazz (and rock 'n' roll) saxophonist. +Played (jazz) with : "Elliott Lawrence's Orchestra", "Woody Herman's Second Herd", Charlie Parker, Dizzy Gillespie, Gerry Mulligan and others. +Worked also with : Charlie Gracie, John Zacherle, Bobby Rydell, Chubby Checker, The Dovells and others. + + +Born : April 08, 1931 in Philadelphia, Pennsylvania. +Died : April 18, 1983 in Somers Point, New Jersey. +Needs VoteBuddy SavitBudy SavittSavittThe Salsoul OrchestraWoody Herman And His OrchestraWoody Herman & The Second Herd + +474298Alfio MicciViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteAl MicciMicci AlfioNew York Philharmonic + +474332Henry LawesEnglish composer (1596 - 1662). Brother to [a=William Lawes]. + +For the reggae producer please use [a218281] & ANV. +Needs Votehttp://en.wikipedia.org/wiki/Henry_Laweshttps://adp.library.ucsb.edu/names/103214H. LawesHenryLawesMr. H. Lawes + +474485Harold D. KlatzViola player. +Member of the Chicago Symphony Orchestra 1947-1949. + +Died Saturday, Oct. 27, 2001 of complications from Parkinson's disease in the Whitehall North nursing home in Deerfield, aged 86 + + +Needs VoteHal KlatzHarold KlatzChicago Symphony OrchestraDavid Carroll & His Orchestra + +474992Gerhard PaulGerman actor, voice actor and dialog director. Born in 1938.CorrectG. PaulGerhad Paul + +475132Colin HuberBritish classical violinist.Needs VoteBBC Symphony OrchestraRoyal Philharmonic Orchestra + +475134Philip HallBritish viola player. +He studied music at the [l1393117] and then at the [l421345]. While studying at Goldsmith's, he auditioned for and landed a Principal Viola role in [a=Jyväskylä Sinfonia]. In 1990, he returned to the UK and joined the [a=BBC Philharmonic]. In December 1991, he was appointed Sub-Principal Viola in the [a=BBC Symphony Orchestra].Needs Votehttps://twitter.com/bbcphilhttps://www.inomnibuslabora.co.uk/where-are-they-now/phil-hall-1977-to-1984https://www.imdb.com/name/nm4562367/London Symphony OrchestraBBC Symphony OrchestraBBC PhilharmonicJyväskylä Sinfonia + +475255Jacques RevauxJacques Abel Jules RevaudFrench composer, born July 11, 1940 in Azay-sur-Cher (37). +He co-founded [url=https://www.discogs.com/label/10081]Trema[/url] Records with [a=Régis Talar]. +Most famous for his 1968 writing collaboration with singer [a=Claude François] on the song "[i]Comme d'habitude[/i]" (one of the biggest revenue for the copyrights society SACEM).Needs Votehttps://en.wikipedia.org/wiki/Jacques_Revauxhttps://www.auteurscompositeurs.com/index.php/france/jacques-revauxhttps://www.imdb.com/name/nm0720767/C. Revaux - JacquesC. Revaux JacquesDevauxF. RevanF. RevauxF. ReveauxFevauxG. RevauxG. ReveauxI RevauxJ RevauxJ, RevauxJ. RevauxJ. BevauxJ. LarevauxJ. RavauxJ. ReauxJ. RebauxJ. RenaudJ. RenauxJ. ReuavxJ. ReuvauxJ. RevandJ. RevansJ. RevaudJ. RevausJ. RevauxJ. ReveauxJ. RewauxJ. RexauxJ. ReyauxJ. RivauxJ. RévauxJ. revaudJ. revauxJ.A.J. RevaudJ.L. RevauxJ.RavauxJ.RevauxJ.RivauxJ.RévauxJ; RevauxJac.RevauxJack RevauxJacque RevauxJacques AbelJacques Abel Jules RevaudJacques Abel/Jules RevaudJacques Able Jules RevaudJacques RavauxJacques Ravaux,Jacques ReauxJacques RevandJacques RevanxJacques RevauJacques RevaudJacques RevcuxJacques ReveauxJacques RevouxJacques RévauxJaques RevaudJaques RevauxJaques [sic] RevauxJesques RevaudJ・RevauxM. RevauxR. JacquesR. RevauxRavausRavauxRaveauReauxRebauxRejauxReuaudReuauxRevaixRevansRevanxRevarRevauRevaucRevaudRevaud JacquesRevausRevautRevauxRevaux J.Revaux JackuesRevaux JacquesRevauzReveauReveauxReveuxRevoauxRevouxRevunxRevuxRevvauxReyauxReyeuxReyexReyouxRivauxRoavauxS. RevauxS. RexauxS.RevauxrevauxЖ. РевоРевоז'. רבאוジャック・ルボーPhilippe Malidor + +475511Pierre BillonPierre Jean Maurice BillonFrench artistic director (producer, not "Art Director"), lyricist, composer and singer, born July 24, 1946 at Chapelle-Saint-Martin-en-Plaine (Loir-et-Cher).Needs Votehttp://fr.wikipedia.org/wiki/Pierre_Billon_%28auteur-compositeur%29BillionBillonBillon P.Billon RadionBillónF. BillonF. BillonP. BIllonP. BillionP. BillonP. PillonP.BillonPierrePierre BillionPierre BilonPierre HillonPete YonbyLabyrinthe + +475516Jackie SardouJacqueline LabbéFrench actress, born 7 April 1919 in Paris, France, died 2 April 1998 in Paris, France.CorrectJacky SardouJackie RollinLes Grosses Têtes + +475556Benoît KaufmanFrench multi-instrumentalist, composer, arranger, and conductor, born in Paris (1946). As a studio arranger, he worked with the likes of Johnny Hallyday and Sylvie Vartan. Spent a spell on the USA's West Coast in the 1980s before settling in Switzerland. Musical director of the 1989 Eurovision Song Contest, held in Lausanne.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1989/05/benoit-kaufman.htmlB KaufmanB. KauffmannB. KaufmamB. KaufmanB. KaufmannB.KaufmanB.kaufmanBenoitBenoit KauffmanBenoit KaufmanBenoit KaufmannBenoît KauffmanBenoît KaufmannBenuit KaufmanBenôit KaufmannBonoit KaufmanD. KaufmanDan KaufmanKauffmanKaufmanKaurfmanb. KaufmanJohanna GroupLes Champions (2)Les Satellites (3)Kaufmann And Jerome Inc. + +475582Jean-Pierre BourtayreJean‐Pierre Henri Eugène BourtayreBorn in Paris on January 31st, 1942. +Died on March 5, 2024, aged 82. +French composer, son of [a1312931]. +He worked as art director for [a270795], as well as for the [l40396] and [l10081] labels. He finally became vice-president and administrator of the French rights society SACEM.Needs Votehttps://fr.wikipedia.org/wiki/Jean-Pierre_Bourtayrehttps://en.wikipedia.org/wiki/Jean-Pierre_Bourtayrehttps://www.imdb.com/name/nm0100181/BaurtayneBourtaireBourtayeBourtayneBourtayreBourtayre Jean PierreBourtayre, Jean - PierreBourtayrieBourteyreBourtyreBoutayreBoutrayreBurtayreF. BourtayreH. BourtrayreJ P BourtayreJ P. BourtayreJ-B BourtayreJ-P BourtayreJ-P- BourtaireJ-P. BoultayreJ-P. BourtayneJ-P. BourtayreJ-P.BourtayreJ-P.H. BourtayreJ-Pierre BourtayreJ. -P. BourtayreJ. BoultayreJ. BourtaireJ. BourtayreJ. D. BourtayreJ. P BourtayreJ. P. BourtayreJ. P. BouretayreJ. P. BourtaireJ. P. BourtaiseJ. P. BourtayereJ. P. BourtayreJ. P. BourtayréJ. P. BourtoyreJ. P. BourtrayreJ. PierreJ. Pierre - H. BourtayreJ. Pierre BourtayreJ. Pierre BourteyreJ.- BourtayreJ.- P. BourtayreJ.-P BourtayreJ.-P. BourtayreJ.-Pierre BourtayreJ.. BourtaireJ..P. BourtayreJ.C. BourtayreJ.P BourtayreJ.P BoutayreJ.P. BourtayreJ.P. BortaureJ.P. BorutayeJ.P. BouretayreJ.P. BourtaireJ.P. BourtareJ.P. BourtayeJ.P. BourtayneJ.P. BourtayreJ.P. BourtayrgJ.P. BourteyreJ.P. BoutayreJ.P. BurtayreJ.P.BourtayreJ.P: BourtayreJP BourtayneJP BourtayreJP. BourtayreJP.BourtayreJean - Pierre BourtayreJean BourtayreJean P. BourtayreJean Pierre BourtayeJean Pierre BourtayreJean-Claude BourtayreJean-Paul BourtayreJean-Pierra BourtayreJean-PierreJean-Pierre BortayreJean-Pierre BourtayneJean-Pierre BourtayzeJean-Pierre BoutayreMichel BourtayreOurtrayeP. BourtaireP. BourtayrePP. BourtayrePierre - BourtayrePierre-Bourtayrej.- P. Bourtayrej.-p. boutayreБуартэЖ. П. Бурэрジャン・ピエール・ブルテールDouglas GylsbiUniversal Energy + +475951Danny WilliamsonDanny WilliamsonElectro DJ from Manchester, United Kingdom.Needs Votehttps://soundcloud.com/dannywilliamson + +476228Jon BWJohn EvansNeeds VoteJohn Evans (5)Vox & Go + +476505Scott HarrisScott Farley HarrisHard trance producer from the UK. Brother of [a=Matt Harris]. +[B]For the American singer-songwriter see [a=Scott Harris Friedman].[/B]Needs VoteHarrisS HarrisS. HarrisScottSkyy (4)Organ DonorsThe Numbskulls + +476910Holland-Dozier-HollandInducted into Rock And Roll Hall of Fame in 1990 (Non-Performer).Needs Votehttp://www.hollanddozierholland.comhttp://en.wikipedia.org/wiki/Holland-Dozier-Hollandhttps://www.imdb.com/name/nm9198516/B & E Holland - L.DoxierB & E Holland / LamontB & E Holland, DozierB & E Holland-DozierB Dozier/L Dozier/E DozierB Et D. Holland - H. Dozier / LamontB Holland - L. Dozier - E. HollandB Holland / L Dozier / E HollandB Holland / L. Dozier / E. HollandB Holland L.Dozier E.Holland Jr.B Holland • L. Dozier • E. Holland, Jr.B Holland, L Dozier, E HollandB Holland/Dozier/E HollandB Holland/L Dozier/E HollandB Holland/L Dozier/E Holland JrB&E Holland - L DoxierB&E Holland/L. DozierB. & E. Harland, L. DozierB. & E. Holland - DosierB. & E. Holland - DozierB. & E. Holland - L. DozierB. & E. Holland - LamontB. & E. Holland, DozierB. & E. Holland, L. DozierB. & E. Holland, R. DozierB. & E. Holland-DozierB. & E. Holland-L. DozierB. & E. Holland-L.DozierB. & E. Holland/DozierB. & E. Holland/L. DozierB. & E.Holland-DozierB. & E.Holland/DozierB. + E. Holland/DozierB. And E. Holland, DozierB. And E.Holland/DozierB. HollandB. Holland & E. Holland & L. DozierB. Holland & E. Holland, LamontB. Holland & L. DozierB. Holland & L. Dozier & E. HollandB. Holland - D. Holland - L. DozierB. Holland - Dozier - E. HollandB. Holland - Dozier - L. HollandB. Holland - E. Dozier - L. DozierB. Holland - E. Holland & L. DozierB. Holland - E. Holland - H. Dozier - LamontB. Holland - E. Holland - L. DozierB. Holland - E. Holland / H. Dozier LamontB. Holland - K. Dozier - E. HollandB. Holland - L. Dozer - E. HollandB. Holland - L. DozierB. Holland - L. Dozier - E. HollandB. Holland - L. Dozier - E. Holland, Jr.B. Holland - L. Dozier - E.HollandB. Holland - L. Dozier - F. HollandB. Holland - L. Dozier / E. HollandB. Holland - L. Dozier E. HollandB. Holland - L. H. Dozier - E. HollandB. Holland - L.Dozier - E. Holland, JrB. Holland - L.Dozier - E.HollandB. Holland / Dozier / E. HollandB. Holland / Dozier / E. Holland Jr.B. Holland / E. Holland / D. LamontB. Holland / E. Holland / DozierB. Holland / E. Holland / L. DozierB. Holland / E. Holland Jr. / L.H. DozierB. Holland / I. Dozier / E. HollandB. Holland / L. DOzier / E. HollandB. Holland / L. DozierB. Holland / L. Dozier / E. HollandB. Holland / L. Dozier / E. Holland Jnr.B. Holland / L. Dozier / E. Holland Jr.B. Holland / L. Dozier / E.Holland, Jr.B. Holland / L.Dozier / E. HollandB. Holland / L.H. Dozier / E. HollandB. Holland /L. Dozier/E. HollandB. Holland Jr L. Dozier/B. HollandB. Holland L. Dozier E. HollandB. Holland • L. Dozier • E. Holland, Jr.B. Holland ▪ L. Dozier ▪ E. Holland, Jr.B. Holland, Dozier, E. HollandB. Holland, Dozier, E.HollandB. Holland, E. Holland Et L. DozierB. Holland, E. Holland Jr., L. DozierB. Holland, E. Holland, A. DozierB. Holland, E. Holland, Jr., L. DozierB. Holland, E. Holland, L. DozierB. Holland, E. Holland, T. DozierB. Holland, E. Holland/H. Dozier LamontB. Holland, E.Holland, L.DozierB. Holland, L Dozier, E. HollandB. Holland, L. Dozier & E. HollandB. Holland, L. Dozier y E. HollandB. Holland, L. Dozier, B. HollandB. Holland, L. Dozier, E. HollandB. Holland, L. Dozier, E. Holland JrB. Holland, L. Dozier, E. Holland Jr.B. Holland, L. Dozier, E. Holland, JrB. Holland, L. Dozier, E. Holland, Jr.B. Holland, L. Dozier, E. Holland,Jr.B. Holland, L. Dozier, E.HollandB. Holland, L. Dozier,E. HollandB. Holland, L.Dozier, E. HollandB. Holland, L.Dozier, E.HollandB. Holland, T. Dozier, E. HollandB. Holland- L. Dozier- E. HollandB. Holland- L. Dozier- E. Holland, JrB. Holland--L. Dozier--E. HollandB. Holland-Dozier-E. HollandB. Holland-E. Dozier-L. HollandB. Holland-E. Holland L. DozierB. Holland-E. Holland-L. DozierB. Holland-E. Holland-L.DozierB. Holland-E. Holland-L.Dozier-B. Holland-E.Dozier-E.HollandB. Holland-E.Holland-L. DozierB. Holland-J. Dozier-E. HollandB. Holland-L. Dosier-E. HollandB. Holland-L. Dozier E. Holland, Jr.B. Holland-L. Dozier- E. HollandB. Holland-L. Dozier-B. HollandB. Holland-L. Dozier-E. HollandB. Holland-L. Dozier-E. Holland J.R.B. Holland-L. Dozier-E. Holland JrB. Holland-L. Dozier-E. Holland Jr.B. Holland-L. Dozier-E. Holland Jr.*B. Holland-L. Dozier-E. Holland, JR.B. Holland-L. Dozier-E. Holland, JrB. Holland-L. Dozier-E. Holland, Jr.B. Holland-L. Dozier-E. Holland. Jr.B. Holland-L. Dozier-E.HollandB. Holland-L. Pozier-S. MapelB. Holland-L. dozier-B. HollandB. Holland-L.Dozier-E. HollandB. Holland-L.Dozier-E. Holland Jr.B. Holland-L.Dozier-E.HollandB. Holland/ E. Holland Jr./L. DozierB. Holland/ L. Dozier/ E. HollandB. Holland/ L. Dozier/E. HollandB. Holland/Dozier/E. HollandB. Holland/Dozier/E.HollandB. Holland/E. Dozier/B. HollandB. Holland/E. Dozier/E. HollandB. Holland/E. Holland Jr./L. DozierB. Holland/E. Holland/ L.H. DozierB. Holland/E. Holland/D. LamontB. Holland/E. Holland/H. Dozier LamontB. Holland/E. Holland/L. DosierB. Holland/E. Holland/L. DozierB. Holland/E. Holland/L. H. DozierB. Holland/E. Holland/L.DozierB. Holland/E. Holland/L.H. DozierB. Holland/E. Holland/Lamont DozierB. Holland/E.Holland/DozierB. Holland/E.Holland/L.H.DozierB. Holland/H. J. Dozier/E. HollandB. Holland/L. Dozer/E. HollandB. Holland/L. Dozier / E. HollandB. Holland/L. Dozier/ E. HollandB. Holland/L. Dozier/ E. Holland Jnr.B. Holland/L. Dozier/B. HollandB. Holland/L. Dozier/E. HollandB. Holland/L. Dozier/E. Holland Jnr.B. Holland/L. Dozier/E. Holland JrB. Holland/L. Dozier/E. Holland Jr.B. Holland/L. Dozier/E. Holland, Jr.B. Holland/L. Dozier/E.HollandB. Holland/L. Dozier/El. HollandB. Holland/L.Dozier/E. HollandB. Holland/L.Dozier/E.HollandB. Holland/L.Dozier/T.HollandB. Holland/L.H. Dozier/E. Holland Jr.B. Holland/R. Dozier/E. HollandB. Hollande /L. Dozier/E. HollandeB. Hollande-L. Dozier-E. HollandeB. Hollande/L. Dozier/E. HollandeB. Holland–L. Dozier–E. HollandB. I E. Holland, DozierB. e E. Holland, L. DozierB.&E. Holland/DozierB.Holland - L. Dozier - E. HollandB.Holland - L.Dozier - E. HollandB.Holland - L.Dozier - E.HollandB.Holland / E.Holland / D.LamontB.Holland / L. Dozier / E. HollandB.Holland / L.Dozier / E.HollandB.Holland / L.Dozier / E.Holland,Jr.B.Holland, Dozier, E.HollandB.Holland, E.Holland, DozierB.Holland, E.Holland, L.DozierB.Holland, L.Dozier, E.HollandB.Holland,L.Dozier,E.Holland,Jr.B.Holland-E. Holland-L. DozierB.Holland-E.Holland-L.DozierB.Holland-L.Dozier-B.HollandB.Holland-L.Dozier-E.HollandB.Holland/ L.Dozier/E.HollandB.Holland/B.Dozier/E.HollandB.Holland/E.Holland/L.DozierB.Holland/I.Dozier/E.HollandB.Holland/L. Dozier/E. HollandB.Holland/L.Dozier/E. HollandB.Holland/L.Dozier/E.HollandB.Holland/L.Dozier/E.Holland Jnr.B.Holland/L.Dozier/E.Holland JrB.Holland/L.Dozier/E.Holland.Jr.B.Holland/L.Dozier/N.E.HollandBert Holland, Eddie Holland, Lamont DozierBiran Holland-Lamont Dozier-Eddie HollandBolland-DozierBolland/DozierBr. Holland, Dozir, E. HollandBrain And Eddie Holland/Lamont DozierBrain Holland - Lamont Dozier - Eddie HollandBrain Holland / Lamont Dozier / Eddie HollandBrain Holland, Lamont Dozier, Eddie HollandBrain Holland, Lamont Dozier, Edward Holland, Jr.Brain Holland-Lamont Dozier-Edward Holland Jr.Bria Holland/Lamont Dozier/Eddie HollandBrian & Eddie Holland - Lamont DozierBrian & Eddie Holland / Lamont DozierBrian & Eddie Holland, Lamont DozierBrian & Eddie Holland-Lamont DozierBrian & Eddie Holland/Lamont DozierBrian & Edward Holland, Lamont DozierBrian And Eddie Holland / Lamont DozierBrian And Eddie Holland Lamont DozierBrian And Eddie Holland/Lamont DozierBrian Hilland, Lamont Dozier, Eddie HollandBrian HollandBrian Holland & Lamont DozierBrian Holland , Lamont Dozier , Eddie HollandBrian Holland , Lamont Dozier , Edward Holland, Jr.Brian Holland - Eddie Holland - Lamont DozierBrian Holland - Lament Dozier - Eddie HollandBrian Holland - Lamond Dozier - Eddie HollandBrian Holland - Lamont Dozier - Eddie HollandBrian Holland - Lamont Dozier - Eddie Holland, Jr.Brian Holland - Lamont Dozier - EddieHollandBrian Holland - Lamont Dozier - Edward HollandBrian Holland - Lamont Dozier - Edward Holland , Jr.Brian Holland - Lamont Dozier - Edward Holland Jr.Brian Holland - Lamont Dozier - Edward Holland, JrBrian Holland - Lamont Dozier - Edward Holland, Jr.Brian Holland - Lamont Holland - Edward Holland Jr.Brian Holland - Lamont, Dozier - Edward Holland Jr.Brian Holland - Lemont Dozier - Eddie HollandBrian Holland / Ed Holland / Lamont DozierBrian Holland / Eddie Holland / Lamont DozierBrian Holland / Eddie Holland / Lamont Herbert DozierBrian Holland / Eddie Holland Jr. / Lamont DozierBrian Holland / Edward Holland / Lamont DozierBrian Holland / Edward Jr Holland / Lamont DozierBrian Holland / Edward Jr. Holland / Lamont DozierBrian Holland / Edward Jr. Holland / Lamont Herbert DozierBrian Holland / Lamont Dozer / Eddie HollandBrian Holland / Lamont Dozier / E. Holland Jr.Brian Holland / Lamont Dozier / Eddie HollandBrian Holland / Lamont Dozier / Eddie Holland Jr.Brian Holland / Lamont Dozier / Ediie HollandBrian Holland / Lamont Dozier / Edward HollandBrian Holland / Lamont Dozier / Edward Holland JrBrian Holland / Lamont Dozier / Edward Holland Jr.Brian Holland / Lamont Dozier / Edward Holland, JrBrian Holland / Lamont Dozier / Edward Holland, Jr.Brian Holland / Lamont Dozier And Eddie HollandBrian Holland / Lamont Dozier/ Eddie HollandBrian Holland / Lamont H. Dozier / Eddie HollandBrian Holland / Lamont Herbert Dozier / Edward Holland, Jr.Brian Holland /Lamont Dozier/Edward Holland, JrBrian Holland Eddie Holland Lamont DozierBrian Holland · Lamont Dozier · Edward HollandBrian Holland · Lamont Dozier · Edward Holland, Jr.Brian Holland • Lamont Dozier • Edward Holland, Jr.Brian Holland, Dozier Holland, Eddie HollandBrian Holland, Eddie Holland & Herbert Lamont DozierBrian Holland, Eddie Holland & Lamont DozierBrian Holland, Eddie Holland & Lamont Herbert DozierBrian Holland, Eddie Holland And Lamont DozierBrian Holland, Eddie Holland Jr. & Lamont DozierBrian Holland, Eddie Holland, Edward Holland Jr And Lamont DozierBrian Holland, Eddie Holland, Lamont DozierBrian Holland, Eddie Holland, Lamont Herbert DozierBrian Holland, Edward Holland And Lamont DozierBrian Holland, Edward Holland Jr., Lamont DozierBrian Holland, Edward Holland Jr., Lamont Dozier,Brian Holland, Edward Holland, Edward Jr. Holland, Lamont Dozier, Lamont Herbert DoziertBrian Holland, Edward Holland, Jr. & Lamont DozierBrian Holland, Edward Holland, Jr. And Lamont DozierBrian Holland, Edward Holland, Jr., Holland LaMont Dozier, Lamont Herbert DozierBrian Holland, Edward Holland, Jr., L. DozierBrian Holland, Edward Holland, Jr., Lamont DozierBrian Holland, Edward Holland, Lamont DozierBrian Holland, Lament Dozier, Edward Holland, Jr.Brian Holland, Lamnot Dozier & Edward Holland Jr.Brian Holland, Lamond Dozier, Edward Holland Jr.Brian Holland, Lamont Dozier & Eddie HollandBrian Holland, Lamont Dozier & Eddie Holland JrBrian Holland, Lamont Dozier & Edie HollandBrian Holland, Lamont Dozier & Edward HollandBrian Holland, Lamont Dozier & Edward Holland JBrian Holland, Lamont Dozier & Edward Holland JrBrian Holland, Lamont Dozier & Edward Holland Jr.Brian Holland, Lamont Dozier & Edward Holland, Jr.Brian Holland, Lamont Dozier And And Edward Holland JrBrian Holland, Lamont Dozier And Eddie HollandBrian Holland, Lamont Dozier And Edward HollandBrian Holland, Lamont Dozier And Edward Holland JrBrian Holland, Lamont Dozier And Edward Holland Jr.Brian Holland, Lamont Dozier And Edward Holland, Jr.Brian Holland, Lamont Dozier Eddie HollandBrian Holland, Lamont Dozier and Eddie HollandBrian Holland, Lamont Dozier and Edward Holland Jr.Brian Holland, Lamont Dozier and Edward Holland, Jr.Brian Holland, Lamont Dozier, And Edward HollandBrian Holland, Lamont Dozier, And Edward Holland, Jr.Brian Holland, Lamont Dozier, Eddie HollandBrian Holland, Lamont Dozier, Eddie Holland JrBrian Holland, Lamont Dozier, Eddie Holland Jr.Brian Holland, Lamont Dozier, Eddie Holland, Jr.Brian Holland, Lamont Dozier, Eddie Holland.Brian Holland, Lamont Dozier, EddieHollandBrian Holland, Lamont Dozier, Eddite HollandBrian Holland, Lamont Dozier, Edward HollandBrian Holland, Lamont Dozier, Edward Holland JrBrian Holland, Lamont Dozier, Edward Holland Jr.Brian Holland, Lamont Dozier, Edward Holland, JrBrian Holland, Lamont Dozier, Edward Holland, Jr.Brian Holland, Lamont Dozier, Edward Holland,Jr.Brian Holland, Lamont Dozier, and Edward Holland, Jr.Brian Holland, Lamont Herbert Dozier, Eddie HollandBrian Holland, Lamont Herbert Dozier, Edward HollandBrian Holland, Lamont Holland, Edward Holland Jr.Brian Holland, Lamont, Dozier, Eddie HollandBrian Holland, lamont Dozier, Eddie HollandBrian Holland,/Lamont Dozier/Edward Holland Jr.Brian Holland,Lamont Dozier,Eddie HollandBrian Holland- Lamont Dozier - Edward Holland Jr.Brian Holland- Lamont Dozier- Edward Holland Jr.Brian Holland-Eddie Holland-Lamont DozierBrian Holland-Edward J. Holland-Lamont Herbert DozierBrian Holland-LamontDozier-Edward Holland Jr.Brian Holland-Lamont Dozier - Eddie HollandBrian Holland-Lamont Dozier- Eddie HollandBrian Holland-Lamont Dozier-Eddie HollandBrian Holland-Lamont Dozier-Eddie Holland,Jr.Brian Holland-Lamont Dozier-Edward HollandBrian Holland-Lamont Dozier-Edward Holland JrBrian Holland-Lamont Dozier-Edward Holland Jr.Brian Holland-Lamont Dozier-Edward Holland, JrBrian Holland-Lamont Dozier-Edward Holland, Jr.Brian Holland-Lamont Dozier-Edward Hollard, Jr.Brian Holland-Lamont Dozier-Erward Holland JrBrian Holland-Lamont Dozier/Edward Holland Jr.Brian Holland-Lamont-Dozier-Eddie HollandBrian Holland/ Lamont Dozier / Eddie HollandBrian Holland/ Lamont Dozier / Edward Holland, Jr.Brian Holland/ Lamont Dozier/ Eddie HollandBrian Holland/ Lamont Dozier/ Edward Holland Jr.Brian Holland/Eddie Hilland/Lamont DozierBrian Holland/Eddie Holland Jr./Lamont Herbert DozierBrian Holland/Eddie Holland/Edward Holland Jr./Lamont DozierBrian Holland/Eddie Holland/Herbert Dozier LamontBrian Holland/Eddie Holland/Lamont DozierBrian Holland/Edward Holland Jr./Lamont DozierBrian Holland/Edward Holland, Jr./Lamont DozierBrian Holland/Edward Holland,Jr./Lamond DozierBrian Holland/Edward Holland/Lamont DozierBrian Holland/Edward J. Holland/Herbert L. DozierBrian Holland/Edward Jr. Holland/Lamont Herbert DozierBrian Holland/Herbert Lamont Dozier/Eddie HollandBrian Holland/Lamont Dozer/Eddie HollandBrian Holland/Lamont Dozier & Edward Holland Jr.Brian Holland/Lamont Dozier/E Holland JrBrian Holland/Lamont Dozier/Eddi HollandBrian Holland/Lamont Dozier/Eddie HollandBrian Holland/Lamont Dozier/Eddie Holland, Jr.Brian Holland/Lamont Dozier/Edward HollandBrian Holland/Lamont Dozier/Edward Holland JnrBrian Holland/Lamont Dozier/Edward Holland Jnr.Brian Holland/Lamont Dozier/Edward Holland JrBrian Holland/Lamont Dozier/Edward Holland Jr.Brian Holland/Lamont Dozier/Edward Holland Jr..Brian Holland/Lamont Dozier/Edward Holland, Jnr.Brian Holland/Lamont Dozier/Edward Holland, JrBrian Holland/Lamont Dozier/Edward Holland, Jr.Brian Holland/Lamont Dozier/Erward Holland JrBrian Holland/Lamont Herbert Dozier/Eddie Holland Jr.Brian Holland/Lamont Herbert Dozier/Edward Holland Jr.Brian Holland/lamont Dozier/Eddie Holland Jr.Brian Holland—Lamont Dozier—Eddie HollandBrian Hollland - Lamont Dozier - Edward Holland Jr.Brian and Eddie Holland / Lamont DozierBrian and Eddie Holland/Lamont DozierBriand And Eddie Holland/Lamont DozierBriand Holland-Lamont Dozier-Edward Holland, Jr.Bryan Holland - Lamont Dozier - Eddie HollandD. Holland - E. Dozier - L. HollandD. Holland-L.Dozier-F.HollandDoizer, B. & E. HollandDozierDozier & HollandDozier - B. et C. HollandDozier - HollandDozier - Holland - HollandDozier - Holland / HollandDozier / B. Holland / E. HollandDozier / HollandDozier / Holland / HollandDozier / Holland / Holland Jr.Dozier HollandDozier, B Holland. E HollandDozier, B. Holland, E. HollandDozier, E. & B. HollandDozier, HollandDozier, Holland And HollandDozier, Holland B., Holland E.Dozier, Holland and HollandDozier, Holland, DozierDozier, Holland, HollandDozier, R./Holland, B./Holland, E.Dozier-E. Holland-B. HollandDozier-HollandDozier-Holland-HollanDozier-Holland-HollandDozier-MariseDozier/E. & B. HollandDozier/HollandDozier/Holland/DozierDozier/Holland/HollandDozier/Holland/Holland Jr.Doziert, Lamont Herbert/Holland, Brian/Holland, EddieE & B Holland & DozierE & B Holland / DozierE & B Holland-DozierE & Holland / DozierE Holland / B Holand / L DozierE Holland / L Dozier / B HollandE Holland, L Dozier, B HollandE Holland/L Dozier/B HollandE Holland/L. Dozier/B. HollandE&B Holland/DozierE, & B. Holland, DozierE, Holland - L. Dozier - B. HollandE, Holland, B. Holland, L. DozierE. & B. Holland, DozierE. & B Holland - BozierE. & B. HollandE. & B. Holland - BozierE. & B. Holland - DozierE. & B. Holland - L. DozierE. & B. Holland - L.DozierE. & B. Holland / DozierE. & B. Holland / L. DozierE. & B. Holland — DozierE. & B. Holland, BozierE. & B. Holland, DozierE. & B. Holland, L. DozierE. & B. Holland-BozierE. & B. Holland-DozierE. & B. Holland-L. DozierE. & B. Holland-L.DozierE. & B. Holland/BezierE. & B. Holland/DozierE. & B. Holland/L. DozierE. & B. Holland; DozierE. & B. Hollander, DozierE. & B. Hollander-DozierE. & B. Hollans; DozierE. & R. Holland, BoxierE. + B. Holland/L. DozierE. And B. Holland, DozierE. And B. Holland-DozierE. B. Hollan, DozierE. Dozier / L. Dozier / B. HollandE. E. B. Holland / DozierE. Et B. Holland - L. DozierE. Et B. Holland, DozierE. HollandE. Holland , L. Dozier, B. HollandE. Holland - B. Holland - L. DozierE. Holland - Dozier - B. HollandE. Holland - I. Dozier - B. HollandE. Holland - L. Dozier - B. HollandE. Holland - L. Dozier - R. HollandE. Holland - L. Dozier And B. HollandE. Holland - Lamont Dozier - B HollandE. Holland -B. Holland - L. DozierE. Holland / B. Holland / L. DozierE. Holland / Dozier / B. HollandE. Holland / L. Dozier / B. HollandE. Holland / L. Holland / S. HollandE. Holland Jr - L. Dozier - B. HollandE. Holland Jr.E. Holland Jr. - L. Dozier - B. HollandE. Holland Jr., B. Holland, L. DozierE. Holland Jr.-L. Dozier-B. HollandE. Holland Jr./E. Holland/B. Holland/L. DozierE. Holland Jr./E. Holland/L. DozierE. Holland Jr./L.H. Dozier/B. HollandE. Holland L. Dozier B. HollandE. Holland L.Dozier B.HollandE. Holland – B. Holland – L. DozierE. Holland – L. Dozier – B. HollandE. Holland, B. Holland et L. DozierE. Holland, B. Holland, L. DozierE. Holland, B. Holland, W. DozierE. Holland, Dozier, B. HollandE. Holland, H. Dozier, B. HollandE. Holland, Jr, L. Dozier, B. HollandE. Holland, Jr. - L. Dozier - B. HollandE. Holland, Jr. / L. Dozier / B. HollandE. Holland, Jr. L. Dozier, B. HollandE. Holland, Jr., L. Dozier, B. HollandE. Holland, Jr., L.Dozier, B. HollandE. Holland, Jr.-L. Dozier-B. HollandE. Holland, Jr./L. Dozier/B. HollandE. Holland, L Dozier, B HollandE. Holland, L. Dozieer, B. HollandE. Holland, L. Dozier & B. HollandE. Holland, L. Dozier, B. HollandE. Holland, L. Dozier, D. HollandE. Holland, L. Dozier, E. HollandE. Holland, L. Dozier, and B. HollandE. Holland, L.Dozier, B. HollandE. Holland, L.Dozier, B.HollandE. Holland,/L. Dozier/B. HollandE. Holland,L. Dozier,B. HollandE. Holland- L. Dozier - B. HollandE. Holland-B. Holland-DozierE. Holland-B. Holland-L. DozierE. Holland-Dozier, B. HollandE. Holland-Dozier-B. HollandE. Holland-Dozier-HollandE. Holland-L. Dozier - B. HollandE. Holland-L. Dozier- B.HollandE. Holland-L. Dozier-B. HollandE. Holland-L. Dozier-B.HollandE. Holland-L. Dozier-E. HollandE. Holland-L. Dozier.B. HollandE. Holland-L.Dozier-B. HollandE. Holland-L.Dozier-B.HollandE. Holland.L. Dozier-B. HollandE. Holland/ L. Dozier/ B. HollandE. Holland/B. Holland/ L.DozierE. Holland/B. Holland/L. DozierE. Holland/B. Holland/L.DozierE. Holland/B. Holland/L.H. DozierE. Holland/B.Holland/L. DozierE. Holland/Dozier/B. HollandE. Holland/Dozier/HollandE. Holland/E. Dozier/B. HollandE. Holland/L. Dozier-/B. HollandE. Holland/L. Dozier/ B. HollandE. Holland/L. Dozier/B. HollandE. Holland/L. Dozier/B.HollandE. Holland/L. Dozier/D. HollandE. Holland/L. Dozier/E. Holland, Jr.E. Holland/L.Dozier/B. HollandE. Holland; L. Dozier; B. HollandE. Holland—B. Holland—L. DozierE. Ja B. Holland-L. DozierE. WayneE. Y B. Holland, DanzierE. Y B. Holland-DanzierE. and B. Holland, DozierE. et B. Holland, DozierE. u. B. Holland - BozierE. u. B. Holland/DozierE. y B. Holland-DanzierE.& B. Holland, BozierE.& B. Holland, DozierE.&B. Holland, L. DozierE.&B. Holland-BozierE.&B. Holland-DozierE.&B.Holland-L.DozierE./B. Nolland / BozierE.B. Holland, DozierE.Holland - L. Dozier - B. HollandE.Holland -L.Dozier -B.HollandE.Holland, L.Dozier and B.HollandE.Holland, L.Dozier, B.HollandE.Holland, Lamont Dozier & B.HollandE.Holland,L.Dozier,B.HollandE.Holland-L.Dozier-B.HollandE.Holland/B. Holland/L. DozierE.Holland/B.HollandE.Holland/B.Holland/DozierE.Holland/L. Dozier/B. HollandE.Holland/L.Dozier/B.HollandE.Holland/L.Dozier/D.HollandE.Holland/L.DozierB.HollandEd Holland/Lamond Dozier/Brian HollandEddi Holland, Lamont Dozier, Brian HollandEddie & Brian Holland & L. DozierEddie & Brian Holland - Lamont DozierEddie & Brian Holland, Lamont DozierEddie & Brian Holland-Lamont DozierEddie & Bryan Holland, Lamont DozierEddie Holand-Lamont Dozier-Brian HollandEddie HollandEddie Holland & Brian Holland & Lamont Herbert DozierEddie Holland , Lamont Dozier , Brian HollandEddie Holland - Brian Holland- Lamont DozierEddie Holland - Lamont Dozier - Brian HollandEddie Holland - Lamont Dozier - Freddie GormanEddie Holland / Brian Holland / Lamont DozierEddie Holland / Brian Holland / Lamont Herbert DozierEddie Holland / Lamond Dozier / Brian HollandEddie Holland / Lamont Dozier / Brian HollandEddie Holland • Lamont Dozier • Brian HollandEddie Holland, Brian Hollan, Lamont DozierEddie Holland, Brian Holland And Lamont DozierEddie Holland, Brian Holland, Lamont DozierEddie Holland, Brian Holland, Lamont Herbert DozierEddie Holland, Jr., Lamont Dozier, Brian HollandEddie Holland, Lamond Dozier, Brian HollandEddie Holland, Lamont DozierEddie Holland, Lamont Dozier & Brian HollandEddie Holland, Lamont Dozier And Brian HollandEddie Holland, Lamont Dozier and Brian HollandEddie Holland, Lamont Dozier, Brian HollandEddie Holland, Lamont Dozier, BrianHollandEddie Holland, Lamont Dozier, and Brian HollandEddie Holland, Lemont Dozier, Brian HollandEddie Holland-Brian Holland-Lamont DozierEddie Holland-Lamont Dozier-Brian HollandEddie Holland/ Brian Holland/ Lamont DozierEddie Holland/Brian Holland/Lamont DozierEddie Holland/Lamonot Dozier/Brian HollandEddie Holland/Lamont Dozier/Brian HollandEddie Holland/Lamont Herbert Dozier/Brian HollandEddie Hollano-Brian Hollano-Lamont DozierEddy Holland/Bryan Holland/Herbert Lamont DozierEdith WayneEdward Holland & Lamont Dozier & Brian HollandEdward Holland - Lamont Dozier - Brian HollandEdward Holland / Brian Holland / Lamont DozierEdward Holland / Brian Holland / Lamont Dozier Jr.Edward Holland Jr, Brian Dozier And Brian HollandEdward Holland Jr, Brian Dozier and Brian HollandEdward Holland Jr, Brian Holland & Lamont DozierEdward Holland Jr, Brian Holland, Lamont DozierEdward Holland Jr, Lamont Dozier & Brian HollandEdward Holland Jr, Lamont Dozier And Brian HollandEdward Holland Jr. / Brian Holland / Lamont DozierEdward Holland Jr. / Lamont Dozier / Brian HollandEdward Holland Jr., Brian Holland & Lamont DozierEdward Holland Jr., Brian Holland And Lamont DozierEdward Holland Jr., Brian Holland, Lamont DozierEdward Holland Jr., Lamont Dozier & Brian HollandEdward Holland Jr., Lamont Dozier And Brian HollandEdward Holland Jr., Lamont Dozier, Brian HollandEdward Holland Jr./Brian Holland/Lamont DozierEdward Holland Jr./Lamont Dozier/Brian HollandEdward Holland Jr/Lamont Dozier/Brian HollandEdward Holland, Brian Holland, Lamont DozierEdward Holland, JrEdward Holland, Jr - Lamont Dozier - Brian HollandEdward Holland, Jr, Lamont Dozier, Brian HollandEdward Holland, Jr.Edward Holland, Jr. - Lamont Dozier - Brian HollandEdward Holland, Jr. / Lamont Dozier / Brian HollandEdward Holland, Jr. / Lamont Dozier / Brioan HollandEdward Holland, Jr. · Lamont Dozier · Brian HollandEdward Holland, Jr. – Lamont Dozier – Brian HollandEdward Holland, Jr. • Lamont Dozier • Brian HollandEdward Holland, Jr., Brian Holland, Lamont DozierEdward Holland, Jr., Lamont Dozier & Brian HollandEdward Holland, Jr., Lamont Dozier And Brian HollandEdward Holland, Jr., Lamont Dozier and Brian HollandEdward Holland, Jr., Lamont Dozier, Brian HollandEdward Holland, Jr.-Lamont Dozier-Brian HollandEdward Holland, Jr.-Lamont Dozier-BrianHollandEdward Holland, Jr./Lamont Dozier/Brian HollandEdward Holland, Lamont Dozier & Brian HollandEdward Holland, Lamont Dozier, & Brian HollandEdward Holland, Lamont Dozier, Brian HollandEdward Holland. Jr., Lamont Dozier, Brian HollandEdward Holland/Brian Holland/Lamont DozierEdward Holland/Brian Holland/Lamont Dozier, JrEdward Holland/Brian Holland/Lemont DozierEdward Holland/BrianHolland/Lamont DozierEdward J Holland / Lamont Herbert Dozier / Brian HollandEdward J Holland, Brian Holland, Lamont Herbert DozierEdwards Holland, Jr/ Lamont Dozier/ Brian HollandErnie Holland, Lamont Dozier, Brian HollandErnie Holland/Lamont Dozier/Brian HollandF. & B. Holland / L. DozierH-D-HH. - Dozier - H.H. DozierH. Dozier - B. Holland - E. HollandH. Dozier H.H. Dozier Ramont/B. Et E. HollandH. L. Dozier - B. Holland - J. E. HollandH.D. HollandH/D/HHDHHOlland, L. Dozier, E. HollandHdland-Dogier-HollandHerbert Dozier-Brian Holland-Eddie HollandHerbert Lamont Dozier, Brain Holland, Edward J. HollandHoland, Dozier, HolandHoland, Dozier, HollandHoland/Dozier/HolandHoland/Dozier/HollandHollan, Dozier, HollandHollan-Dozier-HollandHollan. Dozier & HollandHollan/Dozier/HollandHollandHolland & DozierHolland & Dozier & HollandHolland & Dozier-HollandHolland & Dozier/HollandHolland & Holland & DozierHolland & Holland/DozierHolland , Dozier , HollandHolland ,Dozier, HollandHolland - BozierHolland - Dozer/HollandHolland - DozierHolland - Dozier - HollandHolland - Dozier - Holland Jr.Holland - Dozier And HollandHolland - Dozier- HollandHolland - Dozier/HollandHolland - Holland - DozierHolland - L. DozierHolland -DozierHolland / Dozer / HollandHolland / DozierHolland / Dozier / HollanHolland / Dozier / HollandHolland / Dozier /HollandHolland / Dozier/HollandHolland / Holland / DozierHolland /Donzier/HollandHolland /Dozier /HollandHolland A DozierHolland B/Dozier L/Holland EHolland DosierHolland DozierHolland Dozier & Brian HollandHolland Dozier & HollandHolland Dozier - HollandHolland Dozier And HollandHolland Dozier HollandHolland Dozier, HollandHolland Dozier-HollandHolland Dozier-Holland ProductionsHolland E.-Dozier-Holland B.Holland E/Dozier L/Holland BHolland Et Dozier Et HollandHolland Jr., Dozier, HollandHolland Jr./Dozier/HollandHolland Y DozierHolland and DozierHolland et Dozier et HollandHolland, BozierHolland, Brian, Holland, Edward, Dozier, LamontHolland, Dezjer, HollandHolland, Dozer, HolllandHolland, DozierHolland, Dozier & HollandHolland, Dozier & Holland Jr.Holland, Dozier - HollandHolland, Dozier And HollandHolland, Dozier HollandHolland, Dozier Y HollandHolland, Dozier and HollandHolland, Dozier y HollandHolland, Dozier, HllandHolland, Dozier, HolandHolland, Dozier, HollandHolland, Dozier, Holland Jr.Holland, Dozier, Holland,Holland, Dozier, HollansHolland, Dozier,HollandHolland, Dozier/HollandHolland, DozlerHolland, Duzier, HollandHolland, E/Dozier/Holland, BHolland, E/Holland, B/DozierHolland, Holland And DozierHolland, Holland, & DozierHolland, Holland, DozierHolland, Jr., Drier, HollandHolland,DozierHolland,Dozier, HollandHolland,Dozier,HollandHolland,m Dozier, HollandHolland- / Dozier / HollandHolland- DozierHolland- Dozier-HollandHolland-BozierHolland-Bozier-HollandHolland-Dosier-HollandHolland-Dossier-HollandHolland-Dossier-IngramHolland-Dovire-HollandHolland-DozierHolland-Dozier & HollandHolland-Dozier / HollandHolland-Dozier Et HollandHolland-Dozier Featuring Eddie & Brian HollandHolland-Dozier- HollandHolland-Dozier-BremerHolland-Dozier-E. HollandHolland-Dozier-Holland JrHolland-Dozier-Holland Jr.Holland-Dozier-Holland ProductionsHolland-Dozier-Holland Productions, Inc.Holland-Dozier/HollandHolland-Holland Jr.-DozierHolland-Holland-DozierHolland-Holland-Lamont-DozierHolland-Zozier-HollandHolland. Dozier, HollandHolland.Dozier.HollandHolland/ Dozier/ HollandHolland/Aozier/HollandHolland/Doizer/HollandHolland/Dozer/HollandHolland/DozierHolland/Dozier & HollandHolland/Dozier-HollandHolland/Dozier/Dozier/HollandHolland/Dozier/HollanHolland/Dozier/HollandHolland/Dozier/Holland Inc.Holland/Dozier/Holland JrHolland/Dozier/Holland Jr.Holland/Dozier/Holland Prod. Inc.Holland/Dozier/Holland ProductionHolland/Dozier/Holland*Holland/DozierHollandHolland/Dozir/HollandHolland/Dozzier/HollandHolland/Holland Jr./DozierHolland/Holland/DozierHolland; Dozier; HollandHolland–Dozier–Holland Jr.Holland—Dozier—HollandHolland•Dozier•HollandHollard/Dozier/HollandHollends/Dozier/HollendsHommand-DozierHooand-DozierHooland/Dozier/HollandHowardHunterHölland, Dozier, HollandHöltand / DozierL Dozier - B Holland - D HollandL Dozier - B Holland - E HollandL H Dozier/B Holland/E Holland JrL Holland, L Dozier, E HollandL. Dozer - B. Holland - E. HollandL. DozierL. Dozier - B. Holland - E. HollandL. Dozier / B. Holland / E. HollandL. Dozier / E. Holland / B. HollandL. Dozier, B. Holland And E. HollandL. Dozier, B. Holland And J. HollandL. Dozier, B. Holland, E. HollandL. Dozier, B. Holland, E. Holland Jr.L. Dozier, B. Holland, J. HollandL. Dozier, B. Holland, L. HollandL. Dozier, Barry Holland, Eddie HollandL. Dozier, E. Holland, B. HollandL. Dozier/B. & E. HollandL. Dozier/B. Holland/E. HollandL. Dozier/B. Holland/E. Holland Jr.L. Dozier/B. Holland/E.HollandL. Dozier/B. Holland/E.Holland, Jr.L. Dozier/B.Holland/E. HollandL. Dozier/E. Holland/B. HollandL. Holland - L. Dozier - B. HollandL.Dozier / B.Holland / E.HollandL.Dozier / E.HollandL.Dozier / E.Holland / B.HollandL.Dozier, B.Holland, E.HollandL.Dozier-E.Holland-B.HollandL.H. Dozier / B. Holland / E. HollandL.H. Dozier, B. Holland, E. HollandLamont Doier - Brian Holland - Eddie HollandLamont Doizer/Brian Holland/Eddie HollandLamont DozierLamont Dozier - Brian Holland - Eddie HollandLamont Dozier - Brian Holland - Edward Holland Jr.Lamont Dozier - Brian Holland - J Edward HollandLamont Dozier / Brian Holland / Eddie HollandLamont Dozier / Brian Holland / Edward HollandLamont Dozier / Brian Holland / Edward Holland JrLamont Dozier / Brian Holland / Edward Holland Jr.Lamont Dozier / Brian Holland / Edward Holland, Jr.Lamont Dozier / Eddie Holland / Brian HollandLamont Dozier, Brian Holland & Eddie HollandLamont Dozier, Brian Holland & Edward Holland Jr.Lamont Dozier, Brian Holland And Eddie HollandLamont Dozier, Brian Holland And Edward Holland JrLamont Dozier, Brian Holland And Edward Holland Jr.Lamont Dozier, Brian Holland and Edward HollandLamont Dozier, Brian Holland and Edward Holland, Jr.Lamont Dozier, Brian Holland, And Edward Holland JrLamont Dozier, Brian Holland, Eddie HollandLamont Dozier, Brian Holland, Eddie Holland Jr.Lamont Dozier, Brian Holland, Edward HollandLamont Dozier, Brian Holland, Edward Holland JrLamont Dozier, Brian Holland, Edward Holland Jr.Lamont Dozier, Brian Holland, Edward Holland, Jr.Lamont Dozier, Brian Holland, and Edward HollandLamont Dozier, Eddie Holland & Brian HollandLamont Dozier, Eddie Holland, Brian HollandLamont Dozier, Edward Holland Jr. & Brian HollandLamont Dozier, Edward Holland, Brian HollandLamont Dozier-Brian Holland-Eddie HollandLamont Dozier-Brian Holland-Edward Holland, Jr.Lamont Dozier-Edward Holland Jr-Brian HollandLamont Dozier/B. Holland/E. HollandLamont Dozier/Brian Holland/ Edward HollandLamont Dozier/Brian Holland/Ed HollandLamont Dozier/Brian Holland/Eddie HollandLamont Dozier/Brian Holland/Edward Holland Jr.Lamont Dozier/Brian Holland/Edward Holland, Jr.Lamont Dozier/Eddie Holland/Brian HollandLamont Dozier/Edward Holland/Brian HollandLamont H. Dozier, Brian & Eddie HollandLamont Herbert Dozier , Brian Holland & Eddie HollandLamont Herbert Dozier - Brian Holland - Eddie HollandLamont Herbert Dozier / Brian Holland / Eddie HollandLamont Herbert Dozier / Brian Holland / Eddie Holland Jr.Lamont Herbert Dozier / Brian Holland / Edward J. HollandLamont Herbert Dozier / Brian Holland/ Eddie Holland Jr.Lamont Herbert Dozier, Brian Hollan, Eddie HollandLamont Herbert Dozier, Brian Holland & Eddie J HollandLamont Herbert Dozier, Brian Holland, Eddie HollandLamont Herbert Dozier, Brian Holland, Edward J. HollandLamont Herbert Dozier/Brian Holland/Eddie HollandLamonte Dozier-Eddie Holland-Brian HollandLamonth Dozier, Brian Holland, Edward HollandMulland-DozierR. Holland, L. Dozier, E. HollandWayneХолландХолланд - ДозверХолланд — ДозверХолланд/Дозье/ХолландХолланд—Дозверブライアン・ホーランド、ラモント・ドジャー、エディー・ホーランドEdith WayneEdythe CraigheadStagecoach Productions, Inc.Lamont DozierBrian HollandEdward Holland, Jr. + +477108Al DrearesAlbert Alfred DrearesAmerican jazz drummer, born January 4, 1929, Key West, Florida, USA.Needs VoteAlfred DrearesAlfred DrearsAll DrearesDrearsアル・ドリアレスDizzy Gillespie QuintetMal Waldron TrioFreddie Redd TrioRandy Weston TrioFrank Strozier QuartetBross Townsend Quintet + +477482Francesco DonadelloFrancesco Donadello is a sound engineer specialized in recording/mixing/mastering. +He works mostly in [l445685] and [l269429].Needs Votehttps://www.francescodonadello.com/Dnd FncDonadelloDr. DonadelloF. DonadelloFrancescco DonadelloFrancescoFrancesco "Burro" DonadelloFrancesco "giardini di mirò" DonadelloFrancesco Burro DonadelloFrancesco Donadello Alpha DeptFrancesco DonatelloFrancesco DondelloFrancescoDonadelloMr. DonadelloDNDFNCGiardini Di MiròCalyx Mastering + +477597Mario P. GrilloSalsa, latin jazz percussionist, drummer, musical director of [a2727601] from 1977, also known as "Mario Grillo" or "Machito Jr", son of [a1332854]Needs VoteM. GrilloMachito Jr. (Mario Grillo)Mario GrilloPhil GrilloMachito Jr.Machito And His OrchestraMachito And His Salsa Big BandChocolate Y Su Sexteto + +477765Al Williams (4)Alfred W. WilliamsUS jazz pianist and arranger, born December 17, 1919 in Memphis, Tennessee. +Williams grew up in Chicago, worked professionally from the age of 16.Needs Votehttps://de.wikipedia.org/wiki/Al_Williams"Big" Al WilliamsAlfred WilliamsWilliamsLucky Thompson And His Lucky SevenBuck Clayton With His All-StarsJohnny Richards And His OrchestraHenry Allen SextetAl Williams Trio + +477766Buck Clayton With His All-StarsCorrectBuck ClaytonBuck Clayton & His All-StarsBuck Clayton All StarsBuck Clayton All-StarsBuck Clayton And All StarsBuck Clayton And His All StarsBuck Clayton And His All-StarsBuck Clayton And His French StarsBuck Clayton Jam SessionBuck Clayton Jazz StarsBuck Clayton's All StarsBuck Clayton's All-StarsThe Buck Clayton All StarsThe Buck Clayton All-StarsGene RameyVic DickensonBuck ClaytonBuddy TateWalter PageCharlie FowlkesFreddie GreenSir Charles ThompsonEmmett BerryEarle WarrenBobby DonaldsonDickie WellsDick KatzHerbie LovelleAl Williams (4)Oliver Jackson + +478063Willie MaidenWilliam Ralph MaidenAmerican jazz saxophonist (tenor, baritone) and arranger, born March 12, 1928 in Detroit, died May 29, 1976 in Los Angeles. +Maiden began on piano at age five and started playing saxophone at 11. He spent most of his career playing in big bands, and while he recorded copiously as a sideman, he never led his own session. He worked with [a76111] in 1950 and arranged for [a38207] from 1952 into the 1960s. He played with [a269594] in 1966, and played baritone sax in addition to arranging for [a212786] between 1969 and 1973. After this he taught at the University of Maine until his death in 1976. +Needs Votehttp://www.allmusic.com/artist/p101026/biographyhttp://en.wikipedia.org/wiki/Willie_maidenMaidenW MaidenW. MaidenW.MaidenWilliam "Willie" MaidenWilliam MaidenWilliam R. MaidenWilliam Ralph "Willie" MaldenWillie MadenWillie MaldenWillie MaydenWilly MaidenStan Kenton And His OrchestraMaynard Ferguson SextetMaynard Ferguson & His Orchestra + +478093Arild SolumNorwegian violinist, born 1952 in Namsos, Norway.CorrectSolumOslo Filharmoniske Orkester + +479033William SteinbergHans Wilhelm SteinbergGerman-American conductor (1 August 1899, Cologne, Germany - 16 May 1978, New York City, New York, USA). + +Steinberg worked as an apprentice under [a=Otto Klemperer] at the Cologne Opera ([l=Oper Köln]) and in 1924 became principal conductor there. He conducted opera at Prague (1925–29) and Frankfurt-am-Main (1929–33). After establishing himself as a conductor in Germany, Steinberg fled the Nazi regime in 1936 and emigrated to Palestine. He founded, with [a=Bronislaw Huberman], the Palestine Symphony (later the [a=Israel Philharmonic Orchestra]) in 1936. It was there he gained the notice of [a=Arturo Toscanini], who invited him to become associate conductor of the newly formed [a=NBC Symphony Orchestra]. In 1938 Steinberg went to the United States and became assistant to Arturo Toscanini at the NBC Symphony from 1938-40. He conducted summer concerts at [l=Lewisohn Stadium, New York] at the City College of New York (1940–41), led [a=New York Philharmonic] concerts in 1943–44, and also conducted at the [l=San Francisco Opera]. He became a US citizen in 1944, and was engaged as music director of the [a=Buffalo Philharmonic Orchestra] from 1945 to 1952. + +Steinberg is best known for his long tenure as music director of the [a=Pittsburgh Symphony Orchestra] from 1952 to 1976. Steinberg's Pittsburgh appearances in January 1952 were so impressive, he was quickly engaged as music director and also signed to a recording contract with [l=Capitol Records]. From 1958 to 1960, he also conducted the [a=London Philharmonic Orchestra], but eventually resigned that post due to medical concerns. Steinberg led the [a=New York Philharmonic] for twelve weeks while on sabbatical leave from Pittsburgh in 1964–65; This led to his engagement as the Philharmonic's principal guest conductor from 1966 to 1968. From 1969 to 1972, Steinberg was also the music director of the [a=Boston Symphony Orchestra], while maintaining his Pittsburgh post. He retired as music director of the Pittsburgh Symphony in 1976 after building it into one of the strongest musical institutions in the United States. Needs Votehttp://en.wikipedia.org/wiki/William_Steinberghttps://adp.library.ucsb.edu/names/108648And TheConducting TheKapellmstr. SteinbergSteinbergW. SteinbergWilhelm SteinbergWm. SteinbergУ. СтайнбергУ. Стейнбергウィリアム・スタインバーグ + +479037Anton BrucknerJosef Anton BrucknerAustrian organist and composer, born September 4, 1824, in Ansfelden, died October 11, 1896, in Vienna. +In 1855 he began to seriously study music in Vienna and graduated in 1861 at the age of 37. +It was only at 40 that he began to devote himself seriously to composition. +Since 1868 he has taught organ and counterpoint at the conservatory of Wien, meanwhile, he makes himself known as an organ concert player. +His work was initially appreciated only by a small circle of admirers, only after his death, his great symphonic-choral compositions began to find acclaim and enthusiastic admirers in Europe and around the world. +Josef Anton Bruckner best known for his symphonies, masses, Te Deum and motets. His symphonies are considered emblematic of the final stage of Austro-German Romanticism because of their rich harmonic language, strongly polyphonic character, and considerable length. Bruckner's compositions helped to define contemporary musical radicalism, owing to their dissonances, unprepared modulations, and roving harmonies. + +[b]Please, add composer revision year for Symphonies 1, 2, 3, 4 and 8. +Please, add score revision credit with tag "Score Editor" on all symphonies. +If it is uncredited you can check your recording at https://www.abruckner.com/discography/. +More common score editors are by [a2039828] and [a1493527] (here, please, also add score year).[/b]Complete and Correcthttps://www.abruckner.com/https://en.wikipedia.org/wiki/Anton_Brucknerhttps://www.britannica.com/biography/Anton-Brucknerhttp://www.classical.net/music/comp.lst/bruckner.phphttps://www.famouscomposers.net/anton-brucknerhttps://www.imdb.com/name/nm0115673/A. BruchnerA. BrucknerA. BruknersA. BrücknerA. brucknerA.BrucknerAnton BruckerAnton BrücknerAntón BrucknerBruchnerBrucknerBruckner A.Bruckner AntonBruckner, AntonBruknerBrücknerJosef Anton BrucknerJoseph Anton BrucknerΜπρούκνερА. BrucknerА. БрукнерАнтон БрукнерБрукнерЙозеф Антон Брукнерアントン・ブルックナーアントン・ブルックナー = Anton BrucknerブルックナーSt. Florianer Sängerknaben + +479121Luc DevosBelgian classical pianist.Needs VoteTrio Arthur GrumiauxTrio Amati + +479349Paul JeffreyPaul Jeffrey (born April 8, 1933, New York City, New York, USA – died March 20, 2015) was an American jazz tenor saxophonist, arranger, and educator. Perhaps best known for performing with [a145256] (1970–1975), Jeffrey also worked with many musicians including [a200815], [a64694], [a217242], [a136133] and [a37729] and others.Needs Votehttps://en.wikipedia.org/wiki/Paul_JeffreyP. JeffreyPaul GeffreysPaul JefferyThe Thelonious Monk QuartetLionel Hampton And His OrchestraDizzy Gillespie Big BandThe Dizzy Gillespie Reunion Big BandPaul Jeffrey QuintetLionel Hampton & His Giants Of JazzRutgers University Livingston College Jazz EnsemblePaul Jeffrey Quartet + +479350Melvin Moore (2)Trumpet player and vocalist, born June 15, 1923, in Chicago. +Played with Jimmie Lunceford 1942-1945, Lucky Millinder 1947, briefly with Duke Ellington 1948, 1950. After playing with rhythm and blues bands on he West Coast, he performed with Charles Mingus and Thelonious Monk at the Monterey Jazz Festival in 1964. Later he recorded with Gil Fuller and Gerald Wilson.Needs Votehttps://de.wikipedia.org/wiki/Melvin_Moorehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/206976/Moore_MelvinM. HendersonMel MooreMelvin E. MooreMooreGerald Wilson OrchestraThe Monterey Jazz Festival OrchestraDave Shipp QuintetFestival Workshop EnsembleMelvin Moore And Orchestra + +480062Ulrich KrausUlrich KrausSound engineer and producer at [l296127]. +Born 15 December 1940 in Tübingen, Germany and died 3 November 2020 in Walchstadt am Wörthsee, Germany.Needs Votehttps://de.wikipedia.org/wiki/Ulrich_KrausProf. Ulrich KrausU. KrausUli KrausUllrich KrausUllrich KraussUlrich KrauseUlrich Krauss + +480263Jimmy ButtsJames H. ButtsAmerican jazz bassist, born September 24, 1917 in New York City, died January 8, 1998 in New York City +Played with the bands of Chris Columbus, Les Hite, Lucky Millinder, Benny Morton, Al Sears, Wilbur DeParis, Don Redman, Tiny Grimes and others.Needs Votehttp://www.dailygreen.it/31500-2/https://en.wikipedia.org/wiki/Jimmy_Buttshttps://adp.library.ucsb.edu/names/306413Harry ButtsJames Buddy ButtsJames ButtsJimmie ButtsSir Charles And His All StarsTiny Grimes QuintetThe Tiny Grimes Swingtet + +480264Sadik HakimAmerican jazz pianist, born Argonne Argyle Thornton, July 15, 1919 in Duluth, Minnesota, died June 20, 1983 in New York City, New York. +He used his given name until the late 1940s, when he adopted his Muslim name. +Hakim played with Ben Webster (1944-1945), Dexter Gordon, Charlie Parker, Lester Young (1946-1948), Slam Stewart (1949), James Moody (1956-1960), Duke Jordan and others. +Recorded own albums from the 1970s. +Needs VoteArgonne "Dense" Thornton alias Sadik HakimArgonne ThorntonArgonne Thornton (Sadik Hakim)Argonne Thornton [Sadik Hakim]HakimS. HakimArgonne ThorntonCharlie Parker's Re-BoppersJames Moody And His BandSadik Hakim Trio + +480445Nathan GoldsteinNew York based classical violinist, born in 1924, from 1964 member of the violin section of the New York Philharmony. He retired in 2002 and died February 27, 2003.Needs VoteНатан ГолдстайнNew York PhilharmonicOrchestra U.S.A. + +480491Nikolaj BlochCorrectN. BlochNikolaj Block + +480718Edward BeckettClassical flautist.Needs VoteE BeckettEd BeckettEddie BeckettEdward BecketLondon SinfoniettaLondon Festival OrchestraLondon Wind Orchestra + +480804Richard StudtBritish violinist, conductor, concertmaster, and violin teacher. Born in Ventnor, Isle of Wight, England, UK. +While in his teens, he joined the [a=National Youth Orchestra Of Great Britain]. He then studied at the [l527847] (1964-1969). He joined [a=The Academy of St. Martin-in-the-Fields] in 1968, playing for some ten years. In the late 1970s, he was Concertmaster of the [a=London Symphony Orchestra] (1977-1978). In September 1988, he was appointed Director and Associate Conductor of the [a=Bournemouth Sinfonietta]. In the 1970s, he was appointed to the Music Faculty of [l=Southampton University] where he taughtNeeds Votehttps://www.richardstudt.co.uk/about.phphttps://www.linkedin.com/in/richard-studt-b1822914/?originalSubdomain=ukhttps://open.spotify.com/artist/2BtaY8pmwX2PXpkTMdQ7rvhttps://music.apple.com/dk/artist/richard-studt/3072356https://onthewight.com/richard-studt-profile/https://www.imdb.com/name/nm8741121/David StudtDick StudeDick StudtDick StuttR. StudtRichard J. StudtRichard ShudtRichard Studt [Leader]Richard StuttStudtLondon Symphony OrchestraBournemouth SinfoniettaThe London OrchestraThe Academy Of St. Martin-in-the-FieldsNational Youth Orchestra Of Great BritainThe New SymphoniaThe Steve Gray Orchestra + +480806Alan Downey (2)Alan James DowneyBritish jazz and session trumpeter, composer, and arranger. Born 11 February 1944 - Died 26 September 2005 in Kingston Hospital, Kingston upon Thames, Surrey, England, UK.Needs Votehttps://www.trumpetherald.com/forum/viewtopic.php?p=1424909A. DowneyAl DowneyAlan DowneyAlan DownieAllan DowneyDowneyPeter Herbolzheimer Rhythm Combination & BrassLondon Symphony OrchestraMike Westbrook OrchestraThe BBC Big BandThe John Dankworth OrchestraMelophoniaLes Reed And His OrchestraThe Peter Herbolzheimer OrchestraDaniele Patucchi OrchestraLouie Bellson Big BandThe Greatest Swing Band In The World... IsKenny Wheeler Big BandBerlin Big BandThe London Brass ConferenceThe Don Lusher Big BandBBC Radio Big BandEuropean Jazz OrchestraEBU/UER Big Band + +480807Steve HendersonStephen HendersonBritish classical percussionist/timpanist and teacher, born in England, UK. +He became a staff percussionist with the [a=BBC Concert Orchestra] in 1972 and remained with them until 1979 when he had appeared on numerous television programmes including The Benny Hill Show. At the same time, from 1972 to 1977, he was also Second Timpanist with several orchestras that included the [a=London Symphony Orchestra]. Member of the [a=New London Consort].Needs Votehttps://www.feenotes.com/database/artists/henderson-stephen-steve/https://www.metal-archives.com/artists/Stephen_Henderson/890822https://www.imdb.com/name/nm3134329/https://vgmdb.net/artist/22606HendersonStephen HendersonStephen HenresonSteven HendersonLondon Symphony OrchestraLondon BrassRoyal Philharmonic OrchestraNew London ConsortPhilip Jones Brass EnsembleThe Academy Of Ancient MusicThe King's ConsortBBC Concert OrchestraL'Estro ArmonicoThe English ConcertOrchestre de GrandeurThe Pale Blue Orchestra + +480810Andy FawbertTrombonist.Needs VoteAndrew FawbertAndy FawburtBBC Symphony OrchestraLa Petite BandeThe Wets Big BandBBC Radio Big BandThe Don Weller Big Band + +481010Alan GeorgeClassical viola player. +He studied violin with [a2667001] at Dartington Hall, viola with [a882858] in London, and chamber music with [a1884089] at the Royal Academy of Music. In 1968 he won an open scholarship to King’s College Cambridge, where he became one of the founder members of the Fitzwilliam. Since 1976 he has been actively involved with the period instrument movement, including eleven years as principal viola with [a833722]’s [a833721]. +He is currently the Fitzwilliam String Quartet's viola player and is also conductor of the Academy of St. Olave's Chamber Orchestra and principal viola in Southern Sinfonia.Needs Votehttp://www.fitzwilliamquartet.org/Alanアラン・ジョージNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicFitzwilliam String QuartetThe King's ConsortThe Purcell BandThe Music PartyYorkshire Baroque Soloists + +481158Umberto GalliItalian cellist.Needs VoteGalli UmbertoOrchestra Del Teatro Alla Scala + +481269Jean-Claude PelletierBorn : August 11, 1928 in Joinville le Pont, France. + +French jazz pianist, composer, arranger and conductor. He begins his music studies at the Conservatoire National de Musique in Paris at the age of 10 in 1938. He studied piano, music theory and harmony there until 1948. After playing in jazz orchestras, he worked as an arranger for the Columbia label in 1956 then for Vogue in 1958. He has arranged for cinema, television or popular music. He died on October 8, 1982. + +Needs VoteJ-C. PelletierJ. -C. PelletierJ. C. PelletierJ. C. PelletierJ. Cl. PelletierJ. J. RobertJ. PelletierJ.-C. PelletierJ.-C.PelletierJ.-Cl. PelletierJ.C PelletierJ.C. PelletierJ.C.PelletierJ.Cl. PelletierJean Claude PelletierJean Claude PellettierPelletierPellettierЖан Клод-ПельтьеJuan MontegoC. Carl WingCharles TalmageJ.C. BaquianitoJean-Claude Pelletier Et Ses MonksJean-Claude Pelletier Et Son OrchestreLionel Hampton And His SextetMickey Baker QuartetAlbert Nicholas SextetJean-Claude Pelletier Et Son SextetteBill Coleman And His SevenThe Pelletier Rhythm BoysAlbert Nicholas Et Son QuartettePierre Braslavsky & His BandJuan Montego And The Kingston OrchestraChristian Garros Et Sa Section RythmiqueJean-Claude Pelletier Trio + +481270André PersianyAndré Paul Stephane PersianiFrench jazz pianist and arranger. +Son of [a4122761] and father of [a3425040] + +Born : November 19, 1927 in Paris, France. +Died : January 02, 2004 in Paris, France. +Needs VoteA PersianyA. PersiannyA. PersianyAndre PercianiAndre PersianiAndre PersianyAndré PersianiAndré PersiannyJ. DupontPersianiPersianyJules DupontFanfan La Tulipe (2)Mezz Mezzrow And His OrchestraMichel Attenoux Et Son OrchestreRobert Mavounzy And His Be-BoppersThe Be-Bop MinstrelsGuy Lafitte Et Son OrchestreThe International Jazz GroupAndré Persiany Et Son OrchestreGeo Daly Et Son QuartetMichel De Villers Et Son QuintetteHubert Fol & His Be-Bop MinstrelsAndré Persiany QuartetGérard Pochonet All StarsMichel de Villers SwingtetJean-Pierre Sasson Et Son QuartetAndré Persiany QuintetJean-Pierre Sasson Et Son OrchestreBuck Clayton And His French StarsGéo Daly Et Son Quartette De La Rose Rouge + +481549Walter SchulzClassical cellistNeeds VoteWiener SymphonikerEnsemble Eduard MelkusSchulz-Ensemble + +481796Corin LongCorin Walter LongBritish double-bass player and teacher, born 12th September 1966 in King’s Lynn, Countesthorpe, Leicester, England, UK, died 29th March 2007 in a diving accident in Malaga, Spain. +He studied at the [l459222]. He was a member of the [a627128]. Whilst in Scottland, Corin became Professor of Double Bass at the [l742849] and subsequently Senior Tutor of Double Bass at the Royal Northern College of Music in Manchester. Professor at the [l527847] and [l532187] in London. After several years as a member of the [a=Philharmonia Orchestra], Corin accepted the position of Principal Double Bass in the [a=Royal Philharmonic Orchestra]. Also a member of [a=The Composers Ensemble]. Alongside his role in the Royal Philharmonic Orchestra, Corin was a busy chamber musician, playing with groups such as [a=Ensemble Modern], the [a=London Sinfonietta], [a=The Nash Ensemble] and the [a=City of London Sinfonia].Needs Votehttps://doublebassblog.org/2007/04/double-bassist-corin-long-dies-in-accident.htmlhttps://www.thetimes.co.uk/article/corin-long-v2tpl5pzdklhttps://www.pressreader.com/uk/sunday-express-1070/20070421/282024732820425https://www.talkbass.com/threads/corin-long-dead.321174/Ensemble ModernCity Of London SinfoniaRoyal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraRoyal Scottish National OrchestraThe Nash EnsembleThe Composers Ensemble + +481959Greg MetcalfAmerican saxophonist based in Seattle, WA +1951-2014Needs VoteGregory Lee MetcalfGregory MetcalfStan Kenton And His OrchestraThe Jim Knapp OrchestraThe Jazz Police (2) + +482081Lucy TheoLucy Theo studied at guildhall School Of Music in London. She completed a post graduate at the Guildhall and participated in masterclasses with Jane Atkins and Sir Colin Davis. She regularly plays with the London soloists chamber orchestra, as well as her own work on Wired Strings. +She joined Bryan Ferry as part of the string quartet on his 'As Time Goes By' tour in 1999-2000. During this period Lucy did some studio work with Bryan Ferry which can be heard on his album 'Frantic'. +CorrectWired StringsGabrieli Players + +482089Richard BottomRichard BottomGuitarist, producer and engineer. Rock engineer in the 90s, dance producer towards the millenium, and ambient and production music since.Needs VoteR BottomR. BottomRichard 'Fingers' BottomRichard (dBm) BottomdBmCortinaAstraSubsonic CollectiveThe Committee (9) + +482516John ErikssonJohn Thomas Daniel ErikssonSwedish singer, drummer, vibraphonist, percussionist, composer and music producer, born in 1974 in Piteå and raised in Hortlax. + +He is best known as a member of the indie band [a540163] where he plays drums and sings. + +Eriksson is educated at the music high school in Skellefteå, the music department at Framnäs Folkhögskola and at the Royal Academy of Music in Stockholm. In 1994 he formed the percussion ensemble Peaux, which consisted of a quartet of percussionists where Eriksson was also the composer. From 1995 to 1999 he played in [a380036] and was a member of [a1354604]. + +In 1999, Eriksson, Peter Morén and Björn Yttling founded the trio Peter Bjorn and John. In the basic line-up, Eriksson plays drums, but he also plays other instruments and sings on some songs. He has also participated as composer and producer on the Peter Bjorn and John album. In parallel, he has participated as a musician on other artists' recordings and runs the solo project Hortlax Cobra with electronic dance music. + +In 2012, John Eriksson was one of the founders of the record company [l396655]. As Hortlax Cobra he participated with a track on the compilation album which became Ingrid's first album release. + +As a musician, Eriksson has participated in recordings with artists such as Lykke Li, Moneybrother, Marit Bergman and Shout Out Louds.Needs Votehttps://sv.wikipedia.org/wiki/John_Eriksson_(slagverkare)http://hortlaxcobra.com/https://www.facebook.com/HortlaxCobraErikssonJ ErikssonJ. ErikssonJ. T. D. ErikssonJohnJohn EricssonHortlax CobraSveriges Radios SymfoniorkesterHoliday For StringsPeter Bjorn And JohnSkogenKroumata Percussion EnsemblePeauxTya Ensemble + +483122Fred WebbFred W. WebbBorn: 1947 +Died 1990Needs VoteF. W. WebbF. WebbF. WeebF.W. WebbFredFred W. WebbWebbIt's A Beautiful Day + +483254Jouko AheraJouko AheraBorn on October 23, 1939. A long-time Finnish recording engineer who started his career already in the early 1960s. +He worked in the [l=Scandia Studio] 1960-1972, Finvox Studio 1972-1988, Äänityspalvelu Jouko Ahera 1972-2018. Under the name Äänityspalvelu Jouko Ahera has redorded for example: Jyväskylä Symphony, Oulu Symphony, Tampere Philharmony, Turku Philharmony, hundreds of Finnish choirs CD, FinnConcert productions 2007-2018 over 50 classical CDs.Needs Votehttp://www.aanityspalvelu.comJ. AheraJokke AheraJouko 'Jah' AheraJouko AheJouko Ahera KyJouko AheroÄänityspalvelu Jouko Ahera KyÄänityspalvelu Jouko Ahera Oy + +483878New London ConsortLondon-based Renaissance and Baroque music directed by [a=Philip Pickett] with recordings, mostly on [l66183], from 1978 to 2003. The ensemble has been inactive since Pickett's sentencing in February 2015 to an 11-year prison sentence for the rape and sexual assault of pupils at [l305416] between 1979 and 1983.Needs Votehttps://en.wikipedia.org/wiki/New_London_ConsortThe New London ConsortNigel EatonPeter McCarthyStephen SaundersPaul NiemanAnthony PleethSimon StandageJoanna LevineOlive SimpsonRichard CampbellAlasdair MalloyCatherine FinnisTessa BonnerSimon Davies (3)Pamela ThorbySteve HendersonAlan GeorgeCatherine BottPhilip PickettMark Bennett (2)David PurserDavid StaffHelen ParkerStephen WickChristopher RobsonAndrew Clark (3)Mark LevyPhillip BainbridgeRichard CheethamSimon Grant (4)Jacob HeringmanJonathan KahanStephen KeavyMartin Kelly (3)Nicolette MoonenJonathan ImpettAlison BuryJan SchlappCarol Hall (2)Paul NicholsonMiles GoldingAnnette IsserlisLisa BeznosiukAndrew Watts (2)David CorkhillAlastair MitchellWilliam HuntJohn TollRichard EgarrMarshall MarcusTrevor Jones (4)Micaela CombertiRachel PodgerPaula ChateauneufCatherine LathamLucy RussellRichard TunnicliffeMichael Laird (2)Helen OrslerPavlo BeznosiukAndrew Lawrence-KingDavid RoblouAmanda McNamaraNigel NorthDavid Miller (7)Susanna PellTom FinucaneDavid WatkinJohn Potter (2)Catherine KingJohn Mark AinsleyWilliam LockhartDeborah YorkGiles LewinStephen Jones (7)Nancy HaddenMarion ScottChristian RutherfordJeremy WestMartin Nicholls (2)Iaan WilsonAndrew King (5)Michael George (3)Frances KellyGavin EdwardsPhilip TurbettTimothy RobertsMichael Harrison (4)Norman Taylor (2)Gail HennessyElizabeth RandellWilliam CarterRon BryansKeith McGowanCaroline HarrisonAllan ParkesKristine SzulikDavid BrookerMike FentrossWilliam LyonsTim Barry (2)Tom LeesKaty BircherAlan EwingElizabeth StanbridgeJan WaterfieldSue PicknellHelen Brown (2)Chizuko IshikawaRobert EhrlichJanet WaterfieldPenny PayKenneth HamiltonJean McCreeryAdrian ChandlerJonathan Morgan (3)Miguel LawrenceKathleen StubbingsJohn Harrod (2)Elizabeth Walker (4)Clifton PriorDavid Tosh + +483879Catherine BottBritish soprano, born 11 September 1952 in Leamington Spa, England, UK. Presenter on Classic FM from 2013 to 2023.Needs Votehttp://www.catherinebott.com/https://radiotoday.co.uk/2023/06/catherine-bott-takes-a-break-from-regular-show-on-classic-fm/BottCathreine BottCathrine BottKate BottKatherine Bottキャサリン・ボットMetro VoicesNew London ConsortPro Cantione AntiquaSwingle IICecila's Circle + +483880Maria KitsopoulosAmerican cellist.Needs Votehttps://www.imdb.com/name/nm0457746/Maria KitsopolousMaria KitsoupolousNew York PhilharmonicContinuum (4)Cello (8)New York Chamber Consort + +483881Philip PickettPhilip Pickett (born 19 November 1950) is an English woodwind instrumentlist. Pickett was director of early music ensembles including the [a=New London Consort] and [a4810565], and taught at the Guildhall School of Music and Drama. Pickett began his career as a trumpeter, before becoming one of Britain's leading recorder players, performing and recording as soloist with the Academy of St Martin-in-the-Fields, Polish Chamber Orchestra, English Chamber Orchestra, London Mozart Players and English Concert. In February 2015, Pickett received an 11-year prison sentence for the rape and sexual assault of pupils at the school. + +As guest conductor Philip Pickett was regularly invited to appear with the Orchestre National des Pays de la Loire in France and the Aarhus and Aalborg Symphony Orchestras in Denmark. He also conducted the Orchestre Symphonique et Lyrique de Nancy, Orchestre National de Lille, Orchestre National d’Ile-de-France, Chicago’s Music of the Baroque, Halle Opera Orchestra, Mexico City Philharmonic, Macau Orchestra and Stavanger Symphony Orchestra. + +From 1996-2003 Philip Pickett was artistic director of the South Bank Centre’s annual Early Music Festival. In 1995 he was appointed Director of Early Music at Shakespeare's Globe Theatre in London.Needs Votehttps://en.wikipedia.org/wiki/Philip_Picketthttps://www.bach-cantatas.com/Bio/Pickett-Philip.htmMr Philip PickettP. PickettPhi PickettPhilPhil PickettPhilip PichettPhilip PicketPhilipp PickettPhillip PicketPhillip PickettPickettProfessor Phil PickettThe Albion BandNew London ConsortL'École D'OrphéeMembers Of The New London ConsortThe English ConcertMusicians Of The Globe + +483895Simon WallfischCellist and classical bass vocalist (born May 22, 1982). Son of [a890923] and [a990481]. Grandson of [a1659362] and [a2488968]. Brother of [a1342004] and [a941060]. Between 2000 and 2006, Simon Wallfisch studied at the London Royal College of Music singing, violoncello and conducting.Needs Votehttps://www.simonwallfisch.com/https://www.youtube.com/user/hips321RIAS-Kammerchor + +484058Ralph IzenClassical & jazz trumpet player. +Member of the [a=Philharmonia Orchestra] (1955-?) and the [a=London Philharmonic Orchestra] (1959-1964).Needs Votehttps://music.metason.net/artistinfo?name=Ralph%20Izenhttps://www.imdb.com/name/nm10718687/R. IzenRalph "Bugs" IzenRalph 'Bugs' IzenRalph IzemLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraStanley Myers And His OrchestraJohnny Keating And 27 Men + +484066John FrancaClassical cellist. +Former member of the [a=London Symphony Orchestra] (1958-1966).Needs VoteLondon Symphony Orchestra + +484126Tom RaskinBritish classical Tenor vocalist born in Bath.Needs Votehttps://www.linkedin.com/in/tom-raskin-2633819/https://twitter.com/tomraskin_tenorhttps://www.bach-cantatas.com/Bio/Raskin-Tom.htmThomas RaskinMagnificatThe SixteenPolyphony + +484127Patricia ForbesSoprano vocalist.Needs Votehttps://www.linkedin.com/in/patricia-forbes-01160413b/?originalSubdomain=ukhttp://www.voice-works.de/en/bio.htmlhttps://www.bach-cantatas.com/Bio/Forbes-Patricia.htmThe SixteenLes Arts FlorissantsThe English Concert ChoirThe Schütz Choir Of London + +484921Elin CarlsonElin CarlsonFemale vocalist that has worked with Air and Industrial Monk, amongst others.Correcthttp://www.elincarlson.com/Eliin CarlsonElin Carlson & The Mr. Bongo SingersEllen CarlsonThe Roger Wagner ChoraleHollywood Film ChoralePatrick Williams ChoirSixth Wave + +485282Gareth McGrillenGareth McGrillenNeeds VoteG McGrillenG. McGrillenG.McGrillenG.T. McGrillenMcGillenMcGrillenPendulum (3)Knife PartyXygen + +485405Taisto WesslinTaisto Aatos WesslinBorn on July 23rd, 1941 in Helsinki, Finland. A Finnish composer, arranger and guitarist. + +Died on July 7th, 2010 in Helsinki, Finland.Needs VoteT WesslinT,WesslinT. WeslinT. WesslinT.WeslinT.WesslinTaistoTaisto VeslinTaisto WeslinTaisto Wesslin & KitaraWesslinNils SewJani Uhleniuksen Uusrahvaanomainen OrkesteriSoitinyhtye LiisaTaisto Wesslinin YhtyeThe Vostok All-StarsTami ComboDuo Taisto Wesslin & Pentti Lasanen + +485456Tony NijsTony NysBelgian viola player.Needs VoteToni NysTony NysOrchestre Du Théâtre Royal De La MonnaieQuatuor DanelTetra LyreTrioFenix + +485529Roger RocheFrench sound engineer. Worked at [l275766] (Paris). +[b]For the French classical violist, see [a1974495].[/b]CorrectR. Roche + +485825WilzGlenn WilsonHi-NRG DJ/Producer from Sydney, Australia. Also one half of the [a=Sunset Bros.]Needs VoteChevron 8DJ WilzGlenn Wilson (9) + +486498Bay PerryJazz drummer.Needs VoteBazeley "Bey" PerryBazeley PerryBazely "Bey" PerryBazley PerryRex Stewart And His Orchestra + +486643Jeff AndrewsJeff Michael AndrewsAmerican jazz bassist (* 20 January 1960; † 14 March 2019 in New York City, New York, USA).Needs Votehttps://www.facebook.com/JeffAndrewsBassPage/https://jazztimes.com/features/tributes-and-obituaries/jeff-andrews-1960-2019/https://www.notreble.com/buzz/2019/03/15/in-memoriam-jeff-andrews/https://www.legacy.com/obituaries/nytimes/obituary.aspx?n=jeff-andrews&pid=192121167AndrewsJ. Andrewsジェフ・アンドリュースSteps AheadGil Evans And His OrchestraBlood, Sweat And TearsVital InformationAtticus FinchMike Stern BandMatalexThe Michael Brecker BandJoe Locke QuintetInside Out (25) + +486668Joe RenéJoseph RenéDutch-American composer, arranger and producer. +Husband of [a=Malou Rene]. +He produced/arranged "Tossin' And Turnin'" and "One Track Mind", recorded by [a294706], and "My True Story", recorded by [a374805]. He later produced for [l47558] and [l1005] Records. In 1964 he joined [l11358]; then (1969) left to do independent production and freelance arranging. A&R man for [l=Beltone (2)]. + +Born September 4, 1920 in Amsterdam, Holland +Died January 13, 2000 in West Palm Beach, Florida +Needs VoteAcomp. Orquesta - Dir. Joe ReneJ. "Malou" RenéJ. ReneJ. RenéJoe ReneJoe ReneeReneReneeRenéJoe Rene & OrchestraThe Joe René Complex + +486721Sachiko KobayashiJapanese classical violinist, born 1968 in Osaka.CorrectLotus String QuartetOrchester Der Ludwigsburger Schlossfestspiele + +486749Julien LepersRonan LepersBorn in 1949, France. +Mainly known as TV-show promotor, he was also a singer in the late 70's. +Son of [a7979817].Needs VoteJ. LepersJ. LespersLepers JulienLes Grosses Têtes + +486844Roger LinleyBritish double & electric bass player, born in London, England, UK. +He studied at [l305416]. After a job at [a=The English National Opera Orchestra] for a year, he left to pursue a freelance career and has since worked with most of London's orchestras and ensembles. Member of [a=Britten Sinfonia].Needs Votehttps://www.facebook.com/roger.linley.5https://open.spotify.com/artist/0UpksH1WRfSSmEZeSY7O8mhttps://music.apple.com/us/artist/roger-linley/950350688https://brittensinfonia.com/people/roger-linley/https://www.imdb.com/name/nm5068669/https://www2.bfi.org.uk/films-tv-people/4f4b8d2909ed6London Symphony OrchestraEnglish Chamber OrchestraThe Michael Nyman BandBritten SinfoniaThe National Symphony OrchestraThe London Double Bass SoundLondon Contemporary OrchestraThe English National Opera Orchestra + +486864Rudolph LekhterRudolf LekhterClassical violinistNeeds VoteRudolf LekhterMinnesota Orchestra + +486998Herbie NicholsHerbert Horatio NicholsAmerican jazz pianist and composer +Born January 3, 1919 in New York +Died April 12, 1963, San Juan Hill, Manhattan, New York. +Nichols made his living performing in traditional jazz groups, but in the 1950s managed to record in trio format some of his own highly original compositions, which combine bop and Caribbean music with harmonies derived from [a=Erik Satie] and [a=Béla Bartók], but the albums gained only limited interest at the time. His pieces have been recorded by [a=Roswell Rudd] and [a=The Herbie Nichols Project], including many which he was unable to record himself. +Needs Votehttp://en.wikipedia.org/wiki/Herbie_Nicholshttps://adp.library.ucsb.edu/names/333849H. NicholasH. NicholsH. NickolasH. NicolsHerb NicholsHerbert H. NicholsHerbert Horatio "Herbie" NicholsHerbert NicholsNicholsJoe Thomas (4)Rex Stewart And His Dixieland Jazz BandHerbie Nichols QuartetHerbie Nichols Trio + +487150René PratxRené Andre Joseph PratxFrench arranger, producer and orchestra directorNeeds VotePratxPraxtR PratzR. PratsR. PratxR. PratzR.PratxRene PratRene PratxRené PratzOrchestre René Pratx + +487473Janis SiegelAmerican jazz singer, born on July 23, 1952 in Brooklyn, NY. In the mid-1960s, she began singing with the Young Generation, which released one single ("The Hideaway") on Red Bird Records. She later joined the folk group The Loved Ones (later known as Laurel Canyon), where she had remained until being discovered by NYC taxi driver Tim Hauser at a party. Hauser, who had been looking to get back into four-part harmony singing after his group the Manhattan Transfer broke up, had asked her to help out on some demos, after which she agreed to join what would eventually become the second incarnation of the Manhattan Transfer. It was during this time that she won ten Grammys as part of the group, as well as a Grammy nomination for her second solo album, [I]At Home[/I].Needs Votehttps://web.archive.org/web/20211022232758/http://janissiegel.com/https://www.facebook.com/janissiegel1https://en.wikipedia.org/wiki/Janis_Siegel_(singer)J. SiegelJanice SegalJanice SiegelJanisJanis SeigelJanis SiegalJanis SiegelováSeigalSiegelSieglジャニス・シーゲルThe Manhattan TransferVoicestraLaurel CanyonJaLaLaThe Young Generation (6)The Loved Ones (14)Los Angeles Jazz EnsembleGreek Food Choir + +487835Alessandro MarcelloAlessandro Ignazio MarcelloAlessandro Marcello was an Italian nobleman and dilettante who excelled in various areas, including poetry, philosophy, mathematics and, perhaps most notably, music, as a composer. + +Born on August 24, 1669 or February 1, 1673 in Venice, Italy +Died on June 19, 1747 in Padua, Italy (aged 78 or 74)Needs Votehttps://en.wikipedia.org/wiki/Alessandro_Marcellohttps://www.bach-cantatas.com/Lib/Marcello-Alessandro.htmhttps://web.archive.org/web/20090411110908/http://idrs.org/publications/journal2/jnl10/marc.htmlA MarcelloA. MarcelloA.MarcelloA.マルチェッロAlessandro Igniazio MarcelloAlessanro MarcelloAllesandro MarcelloAllessandro MarcelloMacelloMarccelloMarcelloMarcello A.Marcello, AlessandroMarceloMarchelloА. МарчеллоАлессандро МарчеллоМарчеллоマルチェッロ + +488082Andreas LubichAndreas Lubich[b]Note: When credited simply as Loop-o or Lupo, please use [a=Loop-o] (with ANV if necessary)[/b]. + +Mastering engineer and cutting master-lacquer discs since around 1999. +Until 2013 he was co-owner and mastering / cutting engineer of [l=Dubplates & Mastering], Berlin. +From 2013 - 2019 he was a mastering and cutting engineer at [l=Calyx Mastering], Berlin +In 2019 he set up his own company [l1725509]. + +Contact info: lupo (at) loop-o.com +His cuts are signed with "Loop_O / D&M" / "Loop_O / Calyx" / "NN for Loop_O / Calyx" or "Jan for Loop_O / Calyx". +Appears as "LUPO" / "LOOP-O" / "Andreas [LUPO] Lubich" / "Andreas Lubich" / "Acoustic-Interface" / "LOOP.O" / "LOOP_O".Correcthttp://www.loop-o.comALAndeas [LUPO] LubichAndreas [Lupo] LubichAndreas "LUPO" LubichAndreas "LUPO" LupichAndreas "Lupo" LubichAndreas "Lupo" LupichAndreas 'Lupo' LubichAndreas 'Lupo' LubischAndreas (LUPO) LubichAndreas (Lupo) LubichAndreas - LUPO - LubichAndreas <Lupo> LubichAndreas LUPOAndreas LUPO LubichAndreas LubischAndreas Lupo LubichAndreas Lupo LubischAndreas [LUPO] LubichAndreas [LUPO]LubichAndreas [LUPO]Andreas [LUPO] LubichAndreas [Lu-po] Lu-bichAndreas [Lupo]Andreas [Lupo] LubichAndreas {Lupo} LubichAndreas »Lupo« LubichAndreas ‘Lupo’ LubichAndreas „Lupo” LubichLupo LubichLoop-oacoustic interfaceCalyx Mastering + +488206Charlie Lewisb.: October 16, 1903 (Chattanooga, Tennessee, U.S.) +d.: ?? + +American jazz pianist. Aka Louis Charles «Dizzy» «Charlie» Lewis. +He worked first in the U.S. with among others Jimmie Lunceford, then went to France and Belgium in 1940 to play with among others Sidney Bechet and Django Reinhardt.Needs VoteC. LewisCharles LewisCharles LouisCharley LewisCharlie LouisChrles LewisCharles LouisDizzy (28)Alix Combelle Et Son OrchestreAndré Ekyan Et Son EnsembleDjango's MusicPhilippe Brun "Jam Band"Hubert Rostaing Et Son OrchestreMichel Warlop Et Son OrchestreAlix Combelle And His Swing BandSidney Bechet & His All Star BandLe Quartette Swing Émile CarraraSidney Bechet And His All-StarsÉmile Carrara Et Son EnsembleTrio Big-BoyCharlie Lewis TrioSidney Bechet SextetBuck Clayton SextetBuck Clayton And His RhythmJerry Mengo Et Ses Solistes Du Jazz De ParisLeon Abbey's BandJerry Mengo Sextet + +488280Louise HopkinsBritish cellist, born 1968. + +She studied under Raphael Wallfisch and Steven Isserlis at the Guildhall School of Music and Drama. In 1989 she won the Frank Britton award. A few years later she became professor at the Yehudi Menuhin School and the Guildhall School of Music and Drama. + +She made her concerto debut at the Barbican Hall performing the Lutoslawski Concerto with the composer conducting, and since then she has been invited to perform as a soloist in many countries including France, The Netherlands, Belgium, Sweden, New Zealand, Switzerland, The United States, Ireland and throughout the UK. She has broadcast concerto and recital appearances for the BBC, Suisse - Romande, WFMT, Radio France, Radio Classique, New Zealand Radio and RFT. Festival appearances include Aldebrugh, Bath, Cheltenham, Cardiff, Harrogate, Dijon, Salon de Provence and Brighton. + +In April 2010, Hopkins became Head of Strings at the Guildhall School of Music and Drama.Needs Votehttps://en.wikipedia.org/wiki/Louise_Hopkins_(cellist)London SinfoniettaThe Michael Nyman OrchestraAnn Morfee Strings + +488362Giacomo MeyerbeerJakob Liebmann Meyer Beer Born 1791-09-05 in Tasdorf, Mark Brandenburg, died 1864-05-02 in Paris. +German opera composer of Jewish birth who has been described as perhaps the most successful stage composer of the nineteenth century. +His father was a very wealthy financier and his mother also had an elite background. His siblings included the astronomer Wilhelm Beer and the poet Michael Beer. +He adopted the surname Meyerbeer on the death of his grandfather Liebmann Meyer Wulff (1811) and the first name Giacomo during his period of study in Italy, around 1817. Meyerbeer won his first great success at the Paris Opéra in 1831 with Robert le diable (‘Robert the Devil’). This was followed by 'Les Huguenots,' 'Le Prophète' and finally by 'L’Africaine,' all three with texts by the famous librettist [a=Eugène Scribe]. +Needs Votehttp://en.wikipedia.org/wiki/Giacomo_Meyerbeerhttp://www.britannica.com/EBchecked/topic/379496/Giacomo-Meyerbeerhttp://www.naxos.com/person/Giacomo_Meyerbeer/24631.htmhttp://www.allmusic.com/artist/giacomo-meyerbeer-mn0000161076http://imslp.org/wiki/Category:Meyerbeer,_Giacomohttp://www.meyerbeer.com/http://www.classicalarchives.com/composer/3003.htmlhttps://books.discogs.com/credit/754713-giacomo-meyerbeerhttps://adp.library.ucsb.edu/names/102619G MeyerbeerG. MeyerbeerG. MeyerberG.MayerberG.MeyerbeerG.MeyerberGiaccomo MeyerbeerGiacomo MayerbeerGiacomo MeyebeerGiocomo MeyerbeerJ. MeyerbeerJacob MeyerbeerJakob MeyerbeerL.A. MeyMayerbeerMeybeerMeyerBeerMeyerbeeMeyerbeerMeyerbeer G.Meyerbeer GiacomoMeyerbeer, GiacomoMeyerbeer.MeyerberMyerbeerVon MeyerbeerWagnermeyerbeerĐ. MajerberĐ. MejerberГ. МейерберД. МейерберД. МейербераД. МейєрберД.МейерберДж. МайерберДж. МейерберДж.МейерберДж.МейерберaДжакомо МейерберМайерберМейерберМейерберaМейербераМейерберъマイヤベーア + +488363Vincenzo BelliniVincenzo Salvatore Carmelo Francesco BelliniBorn: 1801-11-03 (Catania, Italy) +Died: 1835-09-23 (Puteaux, France) + +Vincenzo Bellini was an Italian opera composer, who was known for his long-flowing melodic lines for which he was named "the Swan of Catania".Needs Votehttps://en.wikipedia.org/wiki/Vincenzo_Bellinihttps://www.britannica.com/biography/Vincenzo-Bellinihttps://www.naxos.com/person/Vincenzo_Bellini/25979.htmhttps://www.treccani.it/enciclopedia/vincenzo-bellini/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102890/Bellini_VincenzoB.БеллиниBeliniBelinniBellinBelliniBellini V.Bellini, VincenzoBellinisBellniG. BelliniN. N. BelliniV BelliniV. BeliniV. BelinisV. BellineV. BelliniV. BellinisV. BelīniV.BelliniVicenzo BelliniVincenco BelliniVincenso BelliniVincenzo BelliVincenzo Bellini (1801-1835)Vincenzo Salvatore Carmelo Francesco BelliniVinenzo BelliniVinzenzo BelliniVinćenco BeliniVinĉenco BeliniΒιντσέντσο ΜπελίνιΜπελίνιБелиниБеллиниВ БеллиниВ. БелиниВ. БеллиниВ.БеллиниВинченцо Беллиниბელინიベッリーニベルリーニ貝里尼 + +488518Bill Anderson (2)James William Anderson IIIBill Anderson, AKA "Whisperin' Bill", is a country singer and songwriter born November 1, 1937 in Columbia, South Carolina. + +He wrote his first song, "Carry Me Home to Texas" in the late 1940s and formed his first band in 1952. Whilst studying for his journalism degree at the University of Georgia and working as a disc jockey, he wrote "City Lights", which Ray Price recorded in 1958 and took to No. 1 for 13 weeks. This same year, Anderson signed to Decca Records and Tree Publishing. In 1960, Anderson had his own Top 10 hit with "The Tips Of My Fingers", and recorded his first No. 1 in 1962 with "Mama Sang a Song". + +Having permanently moved to Nashville a year before, Anderson joined the Grand Ole Opry as a cast member in 1961. In 1965, he began appearing in his own syndicated television series, "The Bill Anderson Show", which stayed on the air for 9 years. During this time, he was married to [a4316834]. He was elected to the Nashville Songwriters Hall of Fame in 1975 and to the Country Music Hall of Fame in 2001. Anderson's songs have been recorded not only by his country contemporaries, but by pop, r'n'b and soul performers. +Needs Votehttp://www.billanderson.comhttps://www.last.fm/music/Bill+Anderson/+wikihttp://nashvillesongwritersfoundation.com/Site/inductee?entry_id=126http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=7633&subid=0https://adp.library.ucsb.edu/names/200238A. Anderson IIIAndersonAnderson, BillAnderssonAндerдoнB AndersonB. ANdersonB. AndersenB. AndersonB. AnderssonB.AndersonBill AndersenBill AndersonBill AnderssonBill AngersonBilly AndersonE. AndersonL.AndersonP. AndersonW AndersonW. AndersonWalter HaynesWhisperin' Bill AndersonWhispering Bill AndersonThe Kung Pao BuckaroosBill & JanThe New Kung Pao Buckaroos + +489108Remko De JagerTrombonist, born 1971 in Heeg, Netherlands.CorrectRemco de JagerRotterdams Philharmonisch OrkestDoelen EnsembleNew Trombone CollectiveNederlands Philharmonisch Orkest (2) + +489114Pete Saunders (2)TrombonistNeeds Votehttps://nl.linkedin.com/in/petesaundershttp://www.koncon.nl/en/Departments%20%26%20Study%20Programmes/Classical%20Music/Trombone/Teachers/469/__Pete-Saunders__.htmlNederlands Blazers EnsembleNieuw Sinfonietta Amsterdam + +489306Carter JeffersonCarter Randolph JeffersonAmerican jazz tenor saxophonist, born in November 30, 1945 in Washington, D.C.; died December 10, 1993 in Kraków, Poland.Needs Votehttps://en.wikipedia.org/wiki/Carter_Jeffersonhttps://www.allmusic.com/artist/carter-jefferson-mn0000797598/biographyC. JeffersonJeffersonArt Blakey & The Jazz MessengersJerry Gonzalez And The Fort Apache BandUnity (29)Woody Shaw QuintetJack Walrath & The Masters Of SuspenseEl Corols Band & Show + +489336Chris Green (4)Christopher GreenBritish classical cellist. +Former member of the [a=London Symphony Orchestra] (1962-1963).Needs Votehttps://nl.wikipedia.org/wiki/Chris_GreenC. GreenChristopher GreenLondon Symphony OrchestraThe Alan Tew OrchestraDaniele Patucchi OrchestraMike Batt Orchestra + +489554Faysal MatarFaysal MatarNeeds VoteF. MatarFaysalMatarCydonF.A.Y.X-Santos + +489684Roy JowittBritish classical clarinetist. Born 23 December 1938 in London, England, UK - Died 6 April 2012 in Canterbury, Kent, England, UK. +His professional career began when, as a student at the [l527847], he was invited to become Principal Clarinet with [a=The Sadlers Wells Opera Orchestra]. After four years, he joined the [a=BBC Welsh Symphony Orchestra], where he stayed for four years. He was Principal Clarinet with the [a=London Symphony Orchestra] (1969-1988).Needs Votehttps://open.spotify.com/artist/3SqXJOtWwuhhRRvKv6SvWBhttps://www.eatonclarinets.com/jowitt.htmlhttps://www.imdb.com/name/nm4750486/https://www2.bfi.org.uk/films-tv-people/4ce2bc81d1d7eR. JowittRoy JewittLondon Symphony OrchestraLondon Wind OrchestraBBC Welsh Symphony OrchestraThe Sadlers Wells Opera Orchestra + +489685Roy Carter (2)Roy CarterBritish classical oboist, and professor. +He graduated from the [l290263]. Subsequently, he embarked on a freelance career across the UK, before joining the [a=Philharmonia Orchestra] as Co-Principal Oboe. In 1978, he was appointed Principal Oboe of [a=The English National Opera Orchestra] and in 1986 Principal Oboe of the [a=London Symphony Orchestra], a position he held for 19 years (until 2005). Between 1990 and 1995 he was Professor of Oboe at [l=The Guildhall School Of Music & Drama]. In 2005, he joined the [a=Northern Sinfonia] as Principal Oboe, where he remained until 2009. He then moved to Trinidad and Tobago as principal oboist, professor of oboe, and overseer of performance excellence at the University of Trinidad and Tobago and the related orchestra. Since then he has played as a freelance Principal Oboe in various orchestras. Professor of Oboe in the Talent Music Master Courses in Brescia, Italy.Needs Votehttps://web.archive.org/web/20220118132618/https://www.roycarteroboereeds.co.uk/https://www.facebook.com/roy.carter.391420https://www.facebook.com/roycarteroboereedshttps://www.linkedin.com/in/roy-carter-980bb222/https://open.spotify.com/artist/5HhlJLUXQeRMnQAo8mfjJrhttps://music.apple.com/us/artist/roy-carter/1401836https://en.wikipedia.org/wiki/Roy_Carterhttps://www.the-paulmccartney-project.com/artist/roy-carter/Roy CarterLondon Symphony OrchestraThe Martyn Ford OrchestraPhilharmonia OrchestraNorthern SinfoniaThe English National Opera OrchestraThe Deutz Trio + +489686Elizabeth KennyClassical guitarist, theorbist and lutenist.Needs Votehttp://www.elizabethkenny.co.uk/E. KennyElisabeth KennyLiz KennyPhantasm (3)The Parley Of InstrumentsLes Arts FlorissantsThe Chamber Orchestra Of EuropeCollegium Musicum 90Orchestra Of The Age Of EnlightenmentConcerto CaledoniaLes Talens LyriquesGabrieli PlayersRaglan Baroque PlayersSonnerieConcordiaThe King's ConsortDunedin ConsortEnsemble CordariaCecila's CircleEnsemble MarsyasTheatre Of Early MusicBrecon BaroqueThe English ConcertTheatre Of The AyreFlorilegiumSt John's SinfoniaBenedetti Baroque Orchestra + +489690Jonathan SnowdenBritish flute player and professor, born in Somerset, England, UK. +He studied at [l305416]. He was named Principal Flute with the [url=https://www.discogs.com/artist/840014-English-Northern-Philharmonia]English National Opera North[/url] at age 21. Two years later, he was appointed Principal Flute with the [a=Royal Philharmonic Orchestra], and subsequently with the [a=London Philharmonic Orchestra] and the [a=Philharmonia Orchestra]. He also was Principal Flute with [a=The London Chamber Orchestra] for many years, [a=The London Metropolitan Orchestra], and the [a=BBC National Orchestra Of Wales]. As a flute professor, he has served on the faculty of the [l=Royal College Of Music, London] and the [l=London College Of Music]. Professor of Flute at Shenandoah Conservatory, Shenandoah University, Winchester, Virginia, USA.Needs Votehttps://jonathansnowden.com/https://www.facebook.com/Jonathan-Snowden-133981473454399/https://www.youtube.com/channel/UCvof1pQvEoUU06ksyx-a9VAhttps://www.su.edu/faculty-staff/faculty/jonathan-snowden/https://www.justflutes.com/lessons/jonathan-snowden-2020-03-06#grefhttps://www.bsu.edu/calendar/events/academics/school-of-music/2014/10/4/flute-day-featuring-guest-artist-jonathan-snowdenhttp://www.lmo.co.uk/?page=keyPlayers/bySection.html&section=2Džonatan SnoudenJonathan SnowdonJonathon SnowdonJonothan SnowdenLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon Metropolitan OrchestraPhilharmonia OrchestraThe London Chamber OrchestraThe Michael Nyman OrchestraEnglish Northern PhilharmoniaMichael Thompson Wind QuartetMichael Thompson Wind QuintetBBC National Orchestra Of WalesThe English National Opera Orchestra + +490003Rudi SchurickeErhard Rudolf Hans SchurickeGerman singer and actor, born 16 March 1913 in Brandenburg an der Havel, German Empire, died 28 December 1973 in Munich. + +Most famous for his recording of [a=Gerhard Winkler]'s composition "Capri-Fischer". +His nickname was "Rudicke ". +Needs VoteBiography: https://kardosch-saenger.de/die-herren-saenger/rudi-schurickehttp://www.schuricke.dehttp://de.wikipedia.org/wiki/Rudi_Schurickehttps://www.chartsurfer.de/artist/rudi-schuricke/biography-ngvg.htmlhttps://adp.library.ucsb.edu/names/115924R. SchurickeR.SchurickeRudi Schuricke Mit OrchesterRudi SchurikeRudi ShurickeRudy SchurickeRudy SchurikeSchurickeRudolf ErhardMichael HoferSchuricke-TerzettDie Spree-RevellersDie Kardosch-SängerRudi Schuricke Und Seine Solisten + +490084Emil KleinRomanian conductor and cellist, born 5 May 1955, died 29 April 2004 in Reggio Emilia, Italy.Needs VoteOrchester Anthony VenturaSonare Quartet + +490279City Of Birmingham Symphony OrchestraOrchestra based in Birmingham, England, UK. Founded in 1920. + +For the similarly-named orchestra in Birmingham, Alabama, USA, see [a5119428].Needs Votehttps://www.cbso.co.uk/https://www.youtube.com/user/TheCBSOhttps://www.x.com/TheCBSOhttps://www.facebook.com/TheCBSO/https://www.linkedin.com/company/cbsohttps://en.wikipedia.org/wiki/City_of_Birmingham_Symphony_OrchestraBirmingham Symphony OrchestraBirminghams SymfoniorkesterCBSOCBSO BirminghamCBSO BrassCity Of Birmingham OrchestraCity Of Birmingham SOCity Of Birmingham SinfoniaCity Of Birmingham SymphonyCity of Birmingham OrchestraCity of Birmingham Symphony OrchestraEngland's City Of BirminghamEngland's City Of Birmingham SymphonyEngland's City Of Birmingham Symphony OrchestraMitglieder Des City Of Birmingham Symphony OrchestraOrchestr Mésta BirminghamuOrchestraOrchestre De BirminghamOrquesta Sinfonica de la Ciudad de BirminghamOrquesta Sinfónica De La Ciudad De BirminghamOrquestra Sinfónica da Cidade de BirminghamOrquestra Sinfônica da Cidade de BirminghamSymfonicky Orchestr Mesta BirminghamuThe CBSOThe City Of Birmingham OrchestraThe City Of Birmingham Symphony OrchestraThe City of Birmingham Orch.Симфонический Оркестр БирмингемаСимфонический оркестр Бирмингемаバーミンガム市交響楽団Mark GoodchildClare TyackDavid MeashamMichelle TaylorAnthony CamdenRobert BourtonDenis WickFrank MathisonLouise ShackeltonJohn GeorgiadisJohn Gray (7)Myriam GuillaumeRobert MandellAlan Sinclair (3)Nicholas HunkaCatherine EdwardsDavid ArcherKathryn SaundersPeter WaldenTimothy Jones (3)Emily Davis (2)Susan AddisonTimothy LinesDavid VinesDominic WeirMichael HirstPeter Thomas (10)Andris NelsonsEduardo VassalloRobert Johnston (4)Ulrich HeinenGordon NealMargareth CampbellDanny LongstaffThomas Martin (5)Felix KokMike Kidd (3)Jonathan Holland (2)John Chambers (4)Chris Yates (3)Hilary RobinsonJonathan QuirkJohn Logan (3)Hetty SnellRachael PankhurstAdam RömerAlan Thomas (8)Elspeth DutchUlf ÅbergJonathan Kelly (3)Adrian SpillettMargaret CampbellColin LilleyAlwyn GreenCaroline SimonJohn TattersdillMarie-Christine ZupancícChristian GeldsetzerToby KearneyMark Robinson (25)Sergei AkopovKevin GowlandAlan Whitehead (3)Colin CassonColin ParrRobert HeardMark Phillips (31)Andrew BarnellOliver Janes (2)Mark O'Brien (8)Margaret CookhornEdward Jones (9)Kirsty LovieJonathan MartindaleNikolaj HenriquesGeorge Reynolds (6)Colette OverdijkCatherine Ardagh-WalterKate SetterfieldJulian AtkinsonDamián Rubido GonzálezJulian WaltersJeremy BushellMartin Wright (18)Emmet ByrneAndrew Herbert (2)Helen BensonMatthew Hardy (4)Anthony Howe (2)Richard WatkinDavid BaMaungMichael JenkinsonAmy Thomas (5)Angela SwansonCatherine BowerElizabeth GoldingRuth Lawrence (2)Stefano MengoliJane Wright (3)Julia Åberg (2)Amy Jones (10)Bryony MorrisonCatherine ArlidgeGabriel DykerMoritz PfisterPeter Campbell-KellyWendy Quirk (2) + +490281Alain LombardFrench conductor, born 4 October 1940 in Paris, France.Needs Votehttps://en.wikipedia.org/wiki/Alain_LombardA. LombardLombardАлен ЛомбарNew York PhilharmonicOrchestre Philharmonique De StrasbourgOrchestre National Bordeaux AquitaineThe Metropolitan Opera House OrchestraOpéra National De LyonReal Orquesta Sinfónica de Sevilla + +490290Sir Simon RattleSimon Denis Rattle OM CBEEnglish conductor, born January 19, 1955 in Liverpool, England, UK. +Principal conductor of the [a=Berliner Philharmoniker] from 2002 to 2018. +Currently music director of the [a=London Symphony Orchestra] since September 2017. +He was married to [a=Elise Ross] from 1980 to 1995. In 2008, he married mezzo-soprano [a=Magdalena Kožená]. Father of [a6145431].Needs Votehttps://en.wikipedia.org/wiki/Simon_Rattlehttps://www.britannica.com/biography/Simon-Rattlehttps://www.classicfm.com/artists/sir-simon-rattle/https://www.facebook.com/sirsimonrattleofficialRattleS. RattleSimon RattleSir S. RattleСаймон РэттлСэр Саймон Раттлサイモン・ラトルサー・サイモン・ラトル + +490488Joseph QuadriViolinistCorrectJoe QuadriJoseph 'Joe' QuadriJoseph G. 'Joe' QuadriJoseph G. QuadriJoseph Quadri, Sr.Gordon Jenkins And His Orchestra + +490495Gareth NuttycombeViola and violin playerNeeds Votehttps://sinatraology.com/person/view/1399?page=0&limit=24&order=asc&sort=date&person=1399G. NuttycombeGareth "Garry" NuttycombeGareth D. 'Gary' NuttycombeGareth D. NuttycombeGareth D.'Gary' NuttycombeGareth NuttycolbeGareth NuttycombGarey NuttycombeGarry NutteycombeGarry NuttycombeGarth NuttycombeGary Nutty CombeGary NuttycombGary NuttycombeGerry NittycombeGerry NuttycombeNutticomb GarrethHarry James And His OrchestraThe Gene Page Orchestra + +490515Joseph LivotiViolinist.Needs VoteJoe LivotiJoseph 'Joe' LivotiJoseph LijotiGordon Jenkins And His Orchestra + +490522Clifford SolomonUS jazz / R&B saxophonist. Born January 17, 1931 in Los Angeles, CA. Died June 21, 2004.Needs Votehttps://en.wikipedia.org/wiki/Clifford_SolomonCliff "King" SolomonCliff SolomonCliffordClifford "King" SolomonClifford SolomanClifford SolomenCliford SolomonClifton SolomonKing SolomonSolomonLionel Hampton And His OrchestraThe Art Farmer SeptetClifford Brown Big BandSouth Central Avenue Municipal Blues BandGigi Gryce Octet + +490524Alexander NeimanViola player.Needs VoteAl NeimanAl NeimannAl NiemanAlex NeimanAlex NeimannAlex NiemanAlexander NiemanHarry James And His OrchestraThe Gene Page OrchestraHarry James & His Music MakersFrank Sinatra And His OrchestraBaker String Quartet + +490568Jerome ReislerAmerican violinist.Needs VoteJerome J. ReislerJerome Joseph ReislerJerome L. ReislerJerry J. ReislerJerry Jerome ReislerJerry ReislerHarry James And His OrchestraThe Abnuceals Emuukha Electric OrchestraHarry James & His Music MakersThe Wrecking Crew (6) + +490573Gail MartinTrombonistNeeds VoteGail MartinsHarry James And His OrchestraHarry James & His Music Makers + +490777Léo DelibesClément Philibert Léo DelibesFrench composer of the Romantic era, specialised in ballets, operas, and other works for the stage. +Delibes was born at Saint Germain-Du-Val in France on February 21, 1836. He died at Paris on January 6, 1891. He studied at the Paris Conservatory of Music, where he began to develop his florid style and orchestral sense. Upon graduation, he achieved fame as a master of the ballet. His ballets Coppélia and Sylvia are favorites today. The composer soon wrote works in the genres of opera and operetta. Delibes is very famous for his exotic opera Lakmé. This is not his only opera, however. Throughout his life, Delibes created many operas that pleased his French audience.Needs Votehttps://en.wikipedia.org/wiki/L%C3%A9o_Delibeshttps://www.findagrave.com/memorial/6798https://adp.library.ucsb.edu/names/102756https://musicbrainz.org/artist/a56056f7-4e47-4209-abdc-171331ff1089(Clément Philibert) Léo DelibesC. DelibesC.P. Léo DelibesClément Philibert Léo DelibesClément-Philibert-Léo DelibesDe LibesDeLibesDebibesDebilesDelbesDelebesDeletesDelibesDelibes L.Delibes LéoDelibes/DohnanyiDelibresDeliebesDeliebsDèlibesDélibesI. DelibesJean DelibesL DelibesL. DebibL. DebilesL. DelibL. DelibasL. DelibesL. DelibésL. DilibesL. DélibesL.DelibesL.DélibesLeo Climenti DelibesLeo DebilesLeo DelibLeo DelibesLeo DelibésLeo DélibesLeon DelibesLeó DelibesLèo DelibesLéo DélibesLéo. DelibesLêo DelibesLëo DelibesLëo DeliebesM. DelibesRubensteinД.ДелибаДелибДелибаДелибъЛ. ДелибЛ. ДелибаЛ.ДелибЛ.ДелибaЛео ДелебЛео Делибドリーブドリーヴ + +491016David RixDavid RixClarinetist.Needs VoteCity Of London SinfoniaThe Michael Nyman Band + +491018Richard ClewsClassical hornist. +He was a member of the [a=London Symphony Orchestra] (1990-2000).Needs Votehttps://www.facebook.com/richard.clews.904https://www.imdb.com/name/nm0166556/Richard ClewesThe London Session OrchestraLondon Symphony OrchestraLondon BrassOrchestra Of The Royal Opera House, Covent GardenThe London Gabrieli Brass EnsembleThe Pneuma Quintet + +491022Lynda HoughtonLynda HoughtonClassical double bass player. Based in England, UK.Needs Votehttp://www.leicesterinternationalmusicfestival.org.uk/lynda-houghtonLinda HoughtonThe London Session OrchestraCity Of London SinfoniaLondon SinfoniettaLondon Metropolitan OrchestraThe Michael Nyman BandThe Academy Of St. Martin-in-the-FieldsThe London VirtuosiMichaelangelo Chamber Orchestra + +491152Frank ChurchillFrank Edwin ChurchillFrank Churchill (October 20, 1901 in Rumford, Maine - May 14, 1942 in Newhall, California) was a U.S. composer of popular music for films. He wrote most of the music for Disney's 1937 movie Snow White and the Seven Dwarfs, including "Whistle While You Work" and "Some Day My Prince Will Come". The latter (without the Larry Morey lyrics) became a jazz standard covered by various jazz greats including Oscar Peterson, Miles Davis and Dave Brubeck. + +Churchill began his career playing piano in cinemas at the age of 15. After dropping out of medical studies at UCLA to pursue a career in music, he became accompanist at the Los Angeles radio station KNX (AM) in 1924. + +He joined Disney studios in 1930, and scored many animated shorts - his song for The Three Little Pigs, Who's Afraid Of The Big Bad Wolf, was a huge commercial success. + +In 1937, he was chosen to score Disney's first full-length animated feature, Snow White and the Seven Dwarves. His catchy, artfully written songs played a large part in the film's initial success and continuing popularity. + +He became supervisor of music at Disney, and in 1942 won Oscar nominations for his work on Dumbo and Bambi. + +Frank Churchill committed suicide on May 14, 1942.Needs Votehttps://www.imdb.com/name/nm0161430/https://en.wikipedia.org/wiki/Frank_Churchillhttps://d23.com/walt-disney-legend/frank-churchill/https://adp.library.ucsb.edu/names/110505C. HurchillChruchillChurchChurchhillChurchilChurchillChurchill FChurchilleChuychillCome Frank ChurchillE. ChurchiliE. ChurchillE. E. ChurchillE.F. ChurchillE.F.ChurchillF ChurchillF E ChurchillF E. ChurchillF. CharchillF. ChruchillF. ChurchhillF. ChurchilF. ChurchillF. ChurhillF. E ChurchillF. E. ChurchillF. E.ChurchillF. ČerčilsF.-E. ChurchillF.ChuchillF.ChurchilF.ChurchillF.E ChurchillF.E. ChuchillF.E. ChurchillF.E.ChurchillFr. ChurchillFranck ChurchillFranck E. CharchillFranck E. ChurchillFrank CharchillFrank ChurchFrank ChurcillFrank ChurhcillFrank E ChrchillFrank E ChurchillFrank E, ChurchhillFrank E. ChurchFrank E. ChurchillFrank E. Churchill*Frank E.ChurchillFrenk ČerčilP. ChurchillR. ChurcillФ. ЧерчилФ. ЧерчиллФ. ЧерчилльФ. ЧерчильФ. ЧёрчиллФренк ЧерчилФрэнк ЧерчиллЧерчилЧерчилльШаршиллШаршиялフランク・チャーチル + +491155Schöneberger SängerknabenGerman boy's choir, founded 12 November 1947 by [a=Gerhard Hellwig]; active until his death in January 2011.Needs Votehttp://www.schoeneberger-saengerknaben.de/http://de.wikipedia.org/wiki/Schöneberger_Sängerknabenhttps://berlin-magazin.info/bezirke/tempelhof-schoeneberg/saengerknaben"Die Schöneberger Sängerknaben"Berliner (Schöneberger) SängerknabenBerliner SängerknabenBerliner Sängerknaben (Schöneberger Sängerknaben)Choeur De Garçons "Schöneberger"Coro De Niños De SchonebergerCoro De Niños De SchönebergCoro De Niños De SchönebergerDe Schöneberger SängerknabenDie Berliner (Schöneberger) SängerknabenDie Schoneberger SangerknabenDie Schöneberger SängerknabenDie SängerknabenDie Sängerknaben Mit InstrumentalbegleitungMuchachos Cantores De SchönebergMuchachos Cantores de SchönebergSchoeneberger SaengerknabenSchoneberger SängerknabenSchoneberger Youth ChoirSchönberger SängerknabenSchöneberger "Sängerknaben"Schöneberger Boys ChoirSchöneberger Boys Choir And OrchestraSchöneberger Boys' ChoirSchöneberger SängerSchöneberger Sängerk.Schöneberger Youth ChoirSchönebergský Chlapecký SborШёнебергский Хор МальчиковGerhard HellwigRolf GurraDirk Lorenz + +491321Gareth WestGareth WestHard trance producer / DJ residing in Manchester, UK. +Born: June 19, 1981 +Needs VoteG WestG. WestG.WestGaz 'Kain Marco' WestGaz WestWestDark By DesignKain MarcoRawRInglorious BasterdsCloud Nine (2)Masif DJ'sCunning Linguists + +491343Ed SophEdward SophAmerican jazz drummer, born March 21, 1945 in Coronado, California, USA. + +Needs VoteEd SaphEd SapleEdward SophWoody Herman And His OrchestraDave Liebman QuartetWoody Herman & The Young Thundering HerdJohn McNeil QuintetClark Terry And His Jolly GiantsWoody Herman And The Thundering HerdStefan Karlsson TrioThe Marvin Stamm QuartetThe Marvin Stamm / Ed Soph QuartetUniversity Of North Texas All-Star Alumni BandUniversity Of North Texas Neophonic OrchestraJoe LoCascio Trio1:00 O'Clock Lab BandPavel Wlosok Quartet + +491345Geoff SharpAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +491346Harry KleintankAmerican jazz saxophonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +491347Gil RathelGilman RathelAmerican jazz trumpet player.Needs VoteGilman RathelJ. RathelWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +491348Larry PyattAmerican jazz trumpet player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering HerdThe John Allmark Jazz Orchestra + +491392Mayuki FukuharaClassical violinist. He began studying the violin at age 7 and entered the Toho School at age 16. At age 19 he went to the United States to study at the Curtis Institute, where his teachers included Ivan Galamian and Jaime Laredo. He continued his studies in New York at Mannes College with Felix Galimir.Needs VoteOrchestra Of St. Luke'sSt. Luke's Chamber EnsembleModernWorks + +491394Sol GreitzerViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +491397Joseph AndererAmerican hornist.Needs Votehttps://en.wikipedia.org/wiki/Joseph_AndererJoe AndererJohn AndererJoseph T. AndererJpe Andererjoe andererNew York PhilharmonicOrchestra Of St. Luke'sContemporary Chamber EnsembleThe Metropolitan Opera House OrchestraSt. Luke's Chamber EnsembleThe Boehm QuintetteMetropolitan Opera Brass + +491421Laura FlaxAmerican clarinetist, born 27 July 1952 in Long Beach, NY; died 12 March 2017.Needs VoteThe American Symphony OrchestraSan Francisco SymphonySan Diego SymphonyNew York New Music EnsembleThe Prism OrchestraDa Capo Chamber PlayersNew York City Opera Orchestra + +491618Mark Walton (3)Violinist.Needs VoteBBC Symphony Orchestra + +491655Eric RobberechtBelgian violinist.Needs VoteErik RobberechtMusiques NouvellesOrchestre Du Théâtre Royal De La MonnaieEnsor StrijkkwartetTitanic Ensemble + +491875Judy GeistViolin playerNeeds Votehttps://philorch.ensembleartsphilly.org/press-room/blogs-and-press/a-q-and-a-with-violist-judy-geistGeist Judy LeanneJody GeistJudy Leanne GeistThe Philadelphia OrchestraLong Island Youth Orchestra + +491878Mark Bennett (2)Classical trumpeter & horn player.Needs VoteMarc BennettMark BennetGabrieli ConsortLondon BrassNew London ConsortCollegium VocaleThe English Baroque SoloistsThe Chamber Orchestra Of EuropeLondon Classical PlayersThe King's ConsortBaroque Brass Of LondonThe English Concert"Oliver!" 1994 London Palladium Cast, OrchestraVoces8 Foundation Orchestra + +491879Crispian Steele-PerkinsCrispian Gay Steele-PerkinsClassical trumpeter and composer.Needs Votehttps://en.wikipedia.org/wiki/Crispian_Steele-PerkinsC. Steele PerkinsC. Steele-PerkinsCSPChrispian Steele-PerkinsCrispian Steele PerkinsCrispin Steele-PerkinsCristian Steele-PerkinsSteele-PerkinsThe Scholars Baroque EnsembleCity Of London SinfoniaRoyal Philharmonic OrchestraThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueCollegium VocalePhilip Jones Brass EnsembleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90La Petite BandeTaverner PlayersThe King's ConsortBrandenburg ConsortTafelmusik Baroque OrchestraBaroque Brass Of LondonLocke Brass ConsortThe Symphony Of Harmony And InventionDas Kleine KonzertThe English ConcertRetrospect Ensemble + +491882David PurserDavid PurserTrombone and sackbut player.Needs VoteD. PurserDave PurserDavid PurcerPurserLondon BrassLondon SinfoniettaNew London ConsortPhilip Jones Brass EnsembleThe Nash EnsembleGabrieli PlayersBaroque Brass Of LondonCornucopia Ensemble + +491883David Staff[b]David Staff[/b] is a classical trumpeter and virtuoso cornetto player, music pedagogue, and maker of 17th-18th century trumpets. He is a founding member of [b][a=His Majestys Sagbutts And Cornetts][/b] and has served as the principal trumpet at [a=Frans Brüggen]'s [b][a=Orchestra Of The 18th Century][/b] since it was established in 1981. Staff taught at [l=The Guildhall School Of Music & Drama] in London and [l=Conservatorium van Amsterdam] in the Netherlands, among other notable institutions. Between 2007 and 2009, David apprenticed with brass instrument maker and collector, [a=Frank Tomes] (1936—2011); later, he began making natural trumpets.Needs Votehttps://www.davidstafftrumpets.com/StaffNew London ConsortOrchestre Révolutionnaire Et RomantiqueCollegium VocaleThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersThe Consort Of MusickeGabrieli PlayersThe King's ConsortOrchestra Of The 18th CenturyBaroque Brass Of LondonHis Majestys Sagbutts And CornettsL'Estro ArmonicoThe English Concert + +492011Paul BatemanBritish conductor, pianist, arranger and composer.Needs Votehttps://www.paul-bateman.com/https://divineartrecords.com/artist/paul-bateman/BatemanP. BatemanRoyal Philharmonic OrchestraPaul Bateman OrchestraKammerspielPaul Bateman, His Orchestra & Chorus + +492124Jacek UrbaniakBorn October 12, 1949 in Warszawa. Polish oboist, flautist, composer and arranger. +Artistic director of ensemble [url=https://www.discogs.com/artist/2404478-Ars-Nova-7]Ars Nova[/url].Needs VoteJ. UrbaniakMichał UrbaniakOrkiestra Symfoniczna Filharmonii NarodowejArs Nova (7)Warszawska Opera KameralnaOrkiestra Złotego Wieku + +492245Moray WelshMoray (Meston) WelshBritish classical cellist, cello tutor, and painter in oils. Born in 1947 in Longniddry, East Lothian, Scotland, UK. +Former Principal Cello of the [a=London Symphony Orchestra] (1992-2007). For eighteen years he held a teaching post at the [l459222].Needs Votehttp://www.moraywelsh.com/https://www.haddingtonconcertsociety.com/honorary-president-moray-welsh.htmlhttps://www.naxos.com/person/Moray_Welsh/36570.htmhttps://music.apple.com/us/artist/moray-welsh/3977973https://open.spotify.com/artist/2ocmEmlnHUWK64S863czvwhttps://www.youtube.com/channel/UCv1rvGkPma3-0Ctd0gy2QLghttps://www.facebook.com/people/Moray-Welsh/100008720229086/https://www.instagram.com/cellistpainterMoray WelchWelshLondon Symphony OrchestraThe Nash EnsembleAmsterdam SinfoniettaLondon Symphony Orchestra StringsThe Arienski Ensemble + +492246Remco de VriesDutch oboe player, born 1960 in Den Bosch.Needs VoteNederlands Blazers EnsembleRotterdams Philharmonisch Orkest + +492333Nacke JohanssonPaul Mikael JohanssonFinnish musician, composer, arranger and producer, born June 26, 1932 in Turku, Finland; died October 14, 2007 in Finström, Ahvenanmaa (Åland). He retired in 1987, but only from composing and arranging. +Stepbrother of [a319615]. +Needs Votehttps://fi.wikipedia.org/wiki/Nacke_JohanssonJohansonJohanssonN JohanssonN. JOhanssonN. JohannsonN. JohanssonN. JohnassonN.JohanssonNacce JohanssonNakke JohanssonP. JohanssonPaul "Nacke" JohanssonPaul JohanssonPaul NiskaPaul NiskaJuha VuoristoNacke Johanssonin OrkesteriNacke Johanssonin YhtyeValastonesPentti Lasasen Studio-orkesteriNacke Johansson And His ComboThe Vostok All-StarsThe Modangos + +492334Ossi RunneYrjö Osvald RunneFinnish trumpeter and conductor. Longtime musical director of Finnish public broadcaster YLE, who conducted in more than twenty editions of the Eurovision Song Contest. Born on April 23, 1927 in Viipuri, Finland (nowadays Russia). Died on November 5, 2020 in Helsinki.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1989/05/ossi-runne.htmlhttps://fi.wikipedia.org/wiki/Ossi_Runnehttps://en.wikipedia.org/wiki/Ossi_RunneO. RunneO.RunneOssi Runne And His Letkis-BrothersOssi Runne Ja Hänen Kultainen TrumpettinsaOssi RunniRunneHeikki Sarmanto Big BandOssi Runnen YhtyeOlli Hämeen OrkesteriOssi Runnen OrkesteriRadion TanssiorkesteriSeppo Rannikon Sekstetti"Sua Kohti Herrani" Puhallinkvintetti + +492336Jaakko BorgJaakko BorgBorn 20th September, 1927 in Helsinki, Finland. Died October 15th, 2005 in Helsinki, Finland. A Finnish musician, composer, arranger and producer who worked in the major record company Fazer from the 1950s to late 1970s. + +Brother of [a=Kim Borg]. +CorrectBorgJ. BorgJ.BorgJ.BozyJaako BorgV. SalanovJuan CastelloCurd LangTimo LossiLetkumestari PoriJaakko Borgin OrkesteriSuomi-VPK-Orkesteri + +492337Sven NygårdSven-Erik NygårdFinnish jazz saxophonist and arranger. Born on August 25, 1931 in Pietarsaari, Finland.Needs VoteNygardNygårdS-E NygårdS. NygardS. NygårdS.NygårdSven "Nago" NygårdSven "Nagu" NygårdSven NygardSven Nygårdin OrkesteriJazz Society Big BandGrani Big BandBeem Jazz Combo + +492446Steve MarcusSteve MarcusAmerican jazz saxophonist (tenor, soprano), born September 18, 1939 - Bronx, New York, died September 25, 2005 - New Hope, Pennsylvania. +Needs Votehttps://en.wikipedia.org/wiki/Steve_MarcusMarcusSteve MarkusSteven D. Marcusスティーヴ・マーカスWoody Herman And His OrchestraThe Jazz Composer's OrchestraBuddy Rich Big BandThe Mysterious Flying OrchestraWoody Herman And The Swingin' HerdJazz In The ClassroomThe Bob Thiele CollectiveBuddy's Buddies (2)Rick Stepton SextetThe Killer ForceThe Wallace/Trainor ConspiracyThe Killer Force BandBrian Trainor & FriendsSection 8 (33) + +492455Gerald ChamberlainTrombone playerNeeds VoteGerald ChamberlanGerald ChamerlainGerald R. ChamberlainGerald Ray ChamberlainGerard ChamberlainGerry ChamberlainGerry ChamberlinJ. ChamberlainJerry ChamberlainJerry ChamberlinLove Childs Afro Cuban Blues BandWoody Herman And His OrchestraBuddy Rich Big BandNew York Neophonic OrchestraNational Jazz EnsembleWoody Herman And The Thundering HerdUniversity Of North Texas Neophonic OrchestraThe Contemporary Brass Quintet1:00 O'Clock Lab Band + +493464London VoicesLondon-based choral ensemble founded in 1973 by [a441322], now managed and directed by [a875354].Needs Votehttps://www.london-voices.com/https://en.wikipedia.org/wiki/London_Voices&ChorusLondon Sinfonietta VoicesLondon VoiceLondon Voice ChoirLondon Voices ChoirLondon Voices, TheThe London VoicesThe London Voices ChoirThe London Voices Choral EnsembleVoces De Londresロンドン・ヴォイシズロンドン・ヴォイセズLouise Clare MarshallRosalind WatersAlison JiearJeremy BuddAndrew BusherHeather CairncrossSarah EydenJacqueline BarronNigel ShortGerard O'BeirneMichael DoreHarvey BroughElisabeth HarrisonJudith ReesLesley ReidTerry Edwards (2)Simon Davies (3)Matthew VineNick GarrettMary CareweJoanna ForbesPhillip Conway-BrownAnn De RenaisSusan FlanneryDavid Porter-ThomasGavin HorsleyBrian EtheridgeIldiko AllenAlexandra GibsonGrace DavidsonSimon Grant (4)Liz SwainDonald GreigLawrence WallingtonBen ParryPatrick Ardagh-WalterRichard EtesonCheryl EneverNicholas KeayAdrian PeacockHelen TempletonHelen BrooksClaire HenrySimon PreeceCarys Lloyd RobertsRichard Edgar-WilsonPaul GrierCaroline StormerSimon Wall (2)John Bowen (2)Christopher NealeClara SanabrasDeryn EdwardsNicholas Hadleigh WilsonMatthew LongPeter DavorenKate AshbyHelen AshbyAlastair PuttGuy CuttingWill DawesEleanor HarriesAlison HillOliver HuntBenedict HymasCarris JonesJimmy Holliday (2)Mark Williams (27)Elin Manahan ThomasGareth TresederKatie TretheweyTeresa Shaw (2)Thomas HerfordNeil BellinghamEdward GrintAlice GribbinChristina SampsonSusan MarrsLucy GoddardKaty HillJulian Chou-LambertEmily DickensImogen ParryMary WiegoldStephen AlderPeter SnippTom BullardVanessa HeineLawrence White (2)Sophie JonesRussell MatthewsAndrew Walters (2)Juliet SchiemannAlain JuddBen AldenTimothy Murphy (2)Amy Wood (4)Laura OldfieldMartha McLorinanElizabeth DruryGareth Dayus-JonesStephen Miles (2)Kenneth Fraser AnnandPenny VicarsCarole CourtChristopher HobkirkPhilip Sheffield (2)James Birchall (2)Rachel MajorMartin Nelson (2)Steve Trowell (2)Henry Moss (3)John EvansonMatthew HowardNicholas AshbyEdmund HastingsPeter Harris (13)Tara BungardRobyn PartonNatalie Clifton GriffithPrudence SandersPhilippa MurrayRuth KerrWendy NieperCathy Bell (2)Dominic BlandClemmie FranksMatthew MinterJulian Alexander SmithFreya JacklinNorbert MeynAmanda DeanTamsin DalleyPolly MayRichard FallasAshley TurnellAdrian HorsewoodAndrew FriedhoffRichard ArundelClara KanterRonan BusfieldPeter WilmanSimon Haynes (2)Stefan BerkietaGarth BardsleyBenjamin BevanAmy Lyddon-TowlRuth KiangEleanor MinneySumudu JayatilakaCaroline FitzgeraldJo Marshall (2)Sara BrimerCatherine BackhouseRobert Davies (7)Lucy PottertonKatie ThomasEmilia MortonPaul Bentley-AngellChristian GoursaudMelanie Sanders (2)Joanna GoldsmithEdward RandellThomas Robson (3)Oliver GriffithsMike Solomon WilliamsDani MayKatherine Nicholson (2)Katie SchofieldChristopher Webb (2)Carmel De JagerRobbie MacDonald (4)Amy BlytheDavid George LeeAmy Carson (2)Jenni HarperElizabeth Adams (2)Daisy WalfordPablo StrongSophie OverinChristina GillGeorge Cook (9)Jennifer Cearns + +493615Rich CooperTrumpet and flugelhorn player. Played with [a212786], [a57620], [a239399], [a313097], [a503241], [a353291], several years in Las Vegas show bands, travelled as lead player for [a137779], [a271962], [a51039] and others. Lived and worked his last 30 active years in Portland, Oregon, USA.Needs Votehttps://www.trumpetherald.com/registry.php?task=detail&mid=8896http://www.imdb.com/name/nm0178328/?ref_=ttfc_fc_cr75Dick CooperRichard CooperRichie CooperRick CooperToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraLadd McIntosh Big BandWoody Herman And The Thundering HerdThe GLeeful Big Band + +493922Andy Wood (2)Trombonist.Needs VoteThe London Studio OrchestraPhilharmonia OrchestraNational Youth Jazz OrchestraStan Tracey And His OrchestraColin Towns Mask OrchestraMike Oldfield Jazz BandAlan Barnes OctetOrchestre de GrandeurLouis Dowdeswell Big BandThe Valve Bone Woe EnsembleThe Pale Blue Orchestra + +494049Earl WatkinsEarl Thomas Watkins, Jr.American jazz drummer. +Born: January 29, 1920 in San Francisco, California. +Died: July 1, 2007 in Oakland, California. +Needs VoteE. WatkinsEarl Watkins JrEarl Watkins, Jr.WatkinsKid Ory And His Creole Jazz BandEarl Hines' Dixieland BandMuggsy Spanier And His All StarsWilbert Baranco OrchestraWilbert Baranco And His Rhythm BombardiersEarl Hines And His BandEarl Hines / Muggsy Spanier All Stars + +494246Michael Jones (6)British classical violinist. + +[b]For the Cracow-based British violinist, please check [a=Michael Jones (36)][/b]. +[b]For the Manchester-/Birmingham-based British violinist, please check [a=Michael Jones (67)][/b]. + +He played in the [a=Amici String Quartet] after playing in the [a=Philharmonia Orchestra] and leading the [a=Northern Sinfonia]. +Brother of [a=Martyn Jones (4)] and uncle of [a=Karen Jones (3)].Needs VoteM. JonesPhilharmonia OrchestraDaniele Patucchi OrchestraNorthern SinfoniaThe Hoffnung Symphony OrchestraAmici String QuartetLondon Bach Ensemble + +494406Med FloryMeredith Irwin FloryAmerican saxophonist and vocalist, born 27 August 1926 in Logansport, Indiana, USA and died 12 March 2014 in Los Angeles, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Med_Floryhttps://adp.library.ucsb.edu/names/315680FloryM. FloryMedMeredith FloreyMeredith FloryNed FloryWoody Herman And His OrchestraMarty Paich OrchestraRay Anthony & His OrchestraClaude Thornhill And His OrchestraSupersaxL. A. VoicesThe Marty Paich Dek-TetteWoody Herman's Big New HerdTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdDave Pell OctetThe Urbie Green OctetThe Mike Barone Big BandThe Conte Candoli - Med Flory QuintetDick Collins And The Runaway HerdMed Flory OrchestraNeal Hefti And His Jazz Pops OrchestraArt Pepper + ElevenThe Med Flory QuintetThe Sax Maniacs (3) + +494726Paolo DossenaPaolo Dossena (Parma, January 29, 1942) is an Italian record producer, composer, music publisher and arranger.Correcthttps://www.facebook.com/paolo.dossena.7/photos?lst=1813922682%3A100002910227187%3A1488320502&source_ref=pb_friends_tlhttps://it.wikipedia.org/wiki/Paolo_DossenaDassenaDosenaDossenaDossena PaoloDossensP. DossenaP. DossenP. DossenaP. DossensP. DossinaP. SossenaP.DossenaPalo DossenaPaola DossenaPaoloS. DossenaT. DossenaДоссенаDentrixDresdy + +494930Kirk PatrickKirk PatrickUS rapper who has been a member of Dutch hardcore/gabber project [a=Human Resource] during about one year. He provided vocals for the track [r=90046] as well as for the '96 remixes of Human Resource's classic track "Dominator".Needs VoteE.Kirk PatrickHuman Resource + +495004Andreas Schmidt (2)Andreas SchmidtGerman bass / baritone vocalist of classical music born June 30, 1960 in Düsseldorf.Needs Votehttps://www.andreas-schmidt-bariton.de/https://www.imdb.com/name/nm1444600/https://en.wikipedia.org/wiki/Andreas_Schmidt_(baritone)Andreas SchmidtAndreas SchnidtSchmidtChorus Musicus KölnEnsemble Cantus Figuratus Der Schola Cantorum BasiliensisEnsemble Turicum + +495017Martin SchaalGerman double bassist.Correcthttp://www.deutscheoperberlin.de/de_DE/ensemble/martin-schaal.18187#Orchester Der Deutschen Oper Berlin + +495100Kym AyresKym AyresFemale hard dance DJ/producer based in Bournemouth, UK.Needs Votehttp://www.facebook.com/pages/Kym-Ayres-Official-Page/126598748086http://www.dontstayin.com/groups/official-kym-ayres-forumhttp://www.chictalent.com/Kim Ayres + +495105Bernard LeloupPhotographerCorrect"SLC" Bernard LeloupB LeloupB. Bernard LeloupB. Le LoupB. LelouB. LeloupB. Leloup "Salut"B. Leloup (S.L.C.)B. Leloup (Salut Les Copains)B. Leloup (Salut)B. Leloup (s.l.c.)B. Leloup (salut)B. Leloup S.L.C.B. Leloup SalutB. Leloup-S.L.C.B. Leloup/SalutB.LeloupB.leloupB; LeloupBernardBernard Le LoupBernard Leloup (S.L.C.)Bernard Leloup (Salut !)Bernard Leloup (Salut Les Copains)Bernard Leloup (Salut!)Bernard Leloup - "Salut"Bernard Leloup - SLCBernard Leloup / SalutBernard Leloup S.L.C.Bernard Leloup- SalutBernard Leloup-SalutLeloupLeloup slcSLC By Bernard LeloupSLC by Bernard Leloupb. leloup© Bernard Leloup + +496511Michael JeansPlays the Oboe. Has played with the [a=London Symphony Orchestra].Needs VoteLondon Symphony OrchestraLondon Wind OrchestraThe Whispering Wind Band + +496516John HeleyBritish cello player.Needs VoteJohn HealyJohn HeeleyThe London Session OrchestraRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicLondon Classical PlayersThe Taliesin OrchestraThe Orchestra Of St. John'sPleeth Cello OctetThe Chamber Orchestra Of London + +497008Eberhard BüchnerGerman tenor vocalist, born November 6, 1939 in Dresden.CorrectBüchnerE. Büchnerエバーハルト•ビュヒナー + +497530Cecil JamesCecil Edwin JamesBritish orchestral and chamber music bassoonist. Born 10 April 1913 in London, England, UK - Died 13 January 1999 in London, England, UK. +He studied at the [l290263]. In 1933, he joined the [a=London Symphony Orchestra] (until 1939). During the Second World War, he played with [a546443]. When he demobbed, he joined [a271874], then the [a=Dennis Brain Wind Quintet] and then, in 1951, he was appointed Principal Bassoon with the [a=Philharmonia Orchestra]. After leaving the Philharmonia Orchestra in 1961, he played for another couple of decades, including a period with the [a341104]. +Son of [a7531014] and nephew of [a7531015], he married [a=Natalie Caine]/[a=Natalie James (2)] in 1938.Needs Votehttps://www.youtube.com/channel/UC9AaZeJmt3sTWO0ApGkOXe, whttps://open.spotify.com/artist/5gL9jIziKynV9eLRlfdUPIhttps://music.apple.com/us/artist/cecil-james/35408184http://en.wikipedia.org/wiki/Cecil_Jameshttps://web.archive.org/web/20050309071339/http://www.idrs.org/Publications/DR/DR23.1.pdf/Cecil%20Jameshttps://www.independent.co.uk/arts-entertainment/obituary-cecil-james-1068573.htmlhttps://www.theguardian.com/news/1999/feb/22/guardianobituarieshttps://www.imdb.com/name/nm3855319/London Symphony OrchestraThe New Symphony Orchestra Of LondonRoyal Philharmonic OrchestraPhilharmonia OrchestraThe Central Band Of The Royal Air ForceThe Academy Of St. Martin-in-the-FieldsThe Virtuosi Of EnglandDennis Brain Wind EnsembleThe Little Symphony Of LondonLondon Baroque EnsembleThe Wind Virtuosi Of EnglandPhilharmonia Wind QuartetDennis Brain Wind Quintet + +497532Edward WalkerBritish classical flutist, and flute teacher. Born in 1909 - Died in 1982. +He studied with his father, [a=Gordon Walker (3)]. He joined the [a=London Symphony Orchestra] in 1937, when his father was Principal Flute, and became the orchestra's Principal Flute himself in 1946. In 1955, he left the LSO to become 2nd Flute in the [a=Philharmonia Orchestra], at the same time playing first flute in [a=The Sinfonia Of London], founded by his father to record film music. He taught at the [l290263]. +Eddie Walker's son, Tony, who died in 2011, was a member of the [a=BBC Northern Symphony Orchestra] (later known as [a=BBC Philharmonic]).Needs Votehttps://robertbigio.com/e-walker.htmE. WalkerЭдуард УокерLondon Symphony OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraNew Philharmonia Chamber OrchestraSinfonia Of LondonVirtuoso Chamber EnsembleThe Virtuoso EnsembleBath Festival OrchestraLondon Baroque EnsembleLondon Symphony Orchestra Chamber Ensemble + +497533Sidney FellBritish clarinetist, and clarinet tutor. +Principal Clarinet with the [a=London Symphony Orchestra] (1948-1954). He joined the US tour by the [a454293] in 1955 under [a283122]. Clarinetist of [a=The Virtuoso Ensemble] and the [a=Pro Arte Orchestra]. Tutor of clarinet at the [l459222] and the [l290263]. + Needs Votehttps://open.spotify.com/artist/2EUFCLiPEvmwxYIwxRE40Hhttp://test.woodwind.org/clarinet/BBoard/read.html?f=1&i=69452&t=69452S. FellPro Arte OrchestraLondon Symphony OrchestraPhilharmonia OrchestraVirtuoso Chamber EnsembleThe Virtuoso EnsembleThe Francis Chagrin EnsembleLondon Symphony Orchestra Chamber Ensemble + +497534John BurdenJohn Harold BurdenBritish classical (orchestral & chamber) hornist (French Horn), Professor of French Horn, and author. Born on April 13, 1921 in London, England, UK - Died on October 31, 2010 in Wiltshire, England, UK. +He entered the [l527847] aged 18. Before he could conclude his studies, World War II broke out and joined [a=The Central Band Of The Royal Air Force]. After demobilization, he was invited to join the [a=London Symphony Orchestra] in 1946, as its 2nd Horn. Two years later he was appointed Principal Horn. He resigned in 1954. In 1955, he was a member of the group, which set up [a=Sinfonia of London]. He left the orchestra in 1958 and joined the [a=Virtuoso Chamber Ensemble]. The following year, he founded the [b]London Horn Trio[/b] with the violinist [a=Lionel Bentley] and the pianist Celia Arieli. He met [a=Yehudi Menuhin] during recording sessions in London and was invited to become Principal Horn of the [a=Bath Festival Orchestra] (later the [a=Menuhin Festival Orchestra]). He retired from playing in 1979 and took up a position as Professor at the [l680970], where he taught until 1988. Two years later, he accepted an ivitation to teach at Ballymena Academy, and he remained there until his retirement in 2005. He published the book "Horn Playing, A New Approach". +John worked with [a=Georg Solti], [a=Sir Malcom Sargent], [a=Josef Krips], [a=André Previn], [a=Sir Colin Davis], and [a=Malcom Arnold] among others, played on soundtracks for about twenty years, and participated in the recordings of "[m=23934]" as performer and co-arranger. +Needs Votehttps://timburden.com/images/John-Burden-Brochure.pdfhttps://www.thetimes.co.uk/article/john-burden-kcjh58hr6t3https://www.belfasttelegraph.co.uk/news/northern-ireland/article15012128.ecehttps://www.facebook.com/notes/10158715405902229/J. BurdenJ. H. BurdenJohn BurdonДжон БэрдонLondon Symphony OrchestraEnglish Chamber OrchestraMenuhin Festival OrchestraThe Central Band Of The Royal Air ForceThe Laurie Johnson OrchestraThe Kingsway Symphony OrchestraSinfonia Of LondonVirtuoso Chamber EnsembleBath Festival OrchestraVictor Feldman Big BandThe Francis Chagrin EnsembleLondon Symphony Orchestra Chamber EnsembleDavid Fanshawe Ensemble + +497535Derek WickensClassical oboist.Needs VoteD. WickensD. WickinsD.WickensDereck WigginsDerek WickinsDerek WigginsDerk WickensEnglish Chamber OrchestraThe Kingsway Symphony OrchestraMichael Thompson Wind QuintetThe Wind Virtuosi Of EnglandMichael Thompson Wind EnsembleThe Barry Tuckwell Wind Quintet + +497542Gabriel FauréGabriel Urbain FauréFrench composer, organist, pianist, and teacher (born May 12, 1845, Pamiers, France - died November 4, 1924, Paris, France).Needs Votehttps://en.wikipedia.org/wiki/Gabriel_Faur%C3%A9https://www.klassika.info/Komponisten/Faure/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103050/Faur_GabrielF. FaureFAUREFaureFaure'Faure' GabrielFauréFaurèFauréFauré G.Fauré GabrielFauré, GabrielFauveForetFoureeG FaureG FauréG. FaureG. FauréG. FaurèG. FauréG. ForeG. ForetG. ForèG. ForēG. ForėG. FoureG. U. FaureG. フォーレG.FaureG.FauréG.U. FaureG.U.FauréG.フォーレGabiel FaureGabriel (Urbain) FauréGabriel FaurGabriel FaureGabriel Faure'Gabriel FaurèGabriel FauŕeGabriel ForeGabriel FouréGabriel U. FauréGabriel Urbain FauréGabriel Urbrin FauréGabriel-Urbain FauréGabrielis ForeGabriels ForēGabriël FauréGabriëlle FauréGaure, G.J. FaurePavaneГ. ФореГ. Форе = G. FauréГ. ФорэГ.ФореГ.ФорэГабриел ФореГабриель ФореГабриэль ФореГабриэль ФорэФореФорэגבריאל פורהガブリエル・フォーレガブリエル・フォーレフォーレ佛瑞福列 + +497763Patrick Lange (2)Patrick Lange (born 1981) is a German conductor.Needs Votehttps://www.patricklange.com/Regensburger Domspatzen + +497768The Miles Davis NonetNeeds VoteMiles Davis NonetMiles Davis's NonetMiles Davis And His OrchestraMiles Davis & His Tuba BandMiles DavisGerry MulliganMax RoachJ.J. JohnsonAl HaigLee KonitzKai WindingJohn Lewis (2)Bill BarberNelson BoydJunior CollinsAl McKibbonJoe ShulmanSandy SiegelsteinAddison Collins + +498095Emma HayesAustralian violinistNeeds VoteSydney Symphony Orchestra + +498178Richard AshEngineer.CorrectR. Ash + +498384Sjoerd JanssenSjoerd JanssenNeeds VoteF. JanssenS JanssenS. JannsenS. JanssenS.JanssenSjored JanessennDJ DuroJulio CesareDirk-Jan DJOutgangAllureShowtekUnibassW&SHeadlinerTriple X (5)Dutch Masters (2)Lowriders (2)Mr PutaZushiBoys Will Be Boys (2) + +498447Peter J. ReynoldsBritish mastering and remastering engineer who worked on music projects for Albion, BBC, Chandos, Disney, EMI, Guild, Sanctuary, Snapper, Universal etc. +Owner of [l387826]Needs Votehttps://www.linkedin.com/in/peter-reynolds-087a2827P. J. ReynoldsPete J ReynoldsPete R.Pete ReynoldsPeter J ReynoldsPeter J.ReynoldsPeter Reynoldspeter reynolds + +499135Mike WoffordMike WoffordAmerican jazz pianist, born 28 February 1938 in San Antonio, Texas, USA. Died September 19, 2025 in San Diego, California. + +He was known in the jazz community going back to the 1960s for the albums Strawberry Wine and Summer Night. He settled in Los Angeles and performed with Shorty Rogers, Teddy Edwards, Bud Shank, Red Norvo, Chet Baker, Joe Pass, Quincy Jones, Oliver Nelson, Shelly Manne, and Zoot Sims. In the 1970s Wofford toured Europe with Manne and Lee Konitz, in the 1980s Japan with Manne, Sweets Edison, and Eddie "Lockjaw" Davis, and Japan and Brazil with Benny Carter. + +Returning to San Diego, he performed with Kenny Burrell, Benny Golson, Art Farmer, Charlie Haden, Slide Hampton, Clifford Jordan, Ray Brown, and Charles McPherson. Wofford worked on John Lennon's album Rock 'n' Roll (1975) and in 1973 briefly toured with Roger McGuinn of the Byrds. + +On August 13, 2012, he was given the Lifetime Achievement Award at the 22nd Annual San Diego Music Awards.Needs Votehttp://www.mikewofford.comhttps://en.wikipedia.org/wiki/Mike_Woffordhttps://www.imdb.com/name/nm3772701/M. WoffordM.WoffordMichael R. WoffordMichael WoffordMike Wofford GroupsMike WofordMike WooferdMike WooffordMike WoofordWoffordマイク・ウォフォードマイク・ワッフォードGerald Wilson OrchestraThe Tommy Vig OrchestraBud Shank QuartetShelly Manne TrioAnthony Ortega TrioThe Bud Shank QuintetJoe Pass QuartetMike Wofford SeptetMike Wofford TrioCharlie Shoemake SextetLarry Bunker QuartetteGerald Wilson Orchestra of The 80'sMike Wofford QuartetThe Charles McPherson SextetDon Thompson & His West Coast FriendsBobby Shew & His West Coast FriendsAndy Simpkins QuintetShelly Manne Jazz QuartetFlutologyShelly Manne QuartetMike Wofford/Holly Hofmann QuintetBobby Shew Quartet"The Bird" Memorial QuintetThe Holly Hofmann QuartetHarry Edison SixJake Fryer/Bud Shank QuintetRob Thorsen Quartet + +499156Petra GriffioenDutch violinist.Needs VoteMetropole OrchestraNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +499158Liesbeth SteffensClassical viola player.Needs Votehttps://www.linkedin.com/in/liesbeth-steffens-57746125https://www.facebook.com/liesbeth.steffensAsko EnsembleNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaAitos TrioAsko|SchönbergRenoir EnsembleThe Sound Of Art + +499163Ernst GrapperhausViolin and viola player.Needs VoteE. GrapperhansErnst GrappenhausErnst GrapperhuisNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaNederlands Philharmonisch Orkest (2)Amsterdam Soloist Quintet + +499269Desmond BradleyAustralian classical violinist and composer. Born October 12, 1934 in Melbourne, Australia - Died in 1992. +Leader of the [a704150] since mid-1960s but officially in 1972.Needs Votehttps://open.spotify.com/artist/50a5GZt5bCsZ4GXaTflIMzhttps://music.apple.com/us/artist/desmond-bradley/818532https://www.tobias-broeker.de/rare-manuscripts/a-f/bradley-desmond/https://www.accmelb.com.au/desmond-bradley/https://queenelisabethcompetition.be/en/laureates/desmond-bradley/2387/https://www.talkclassical.com/47966-desmond-bradley-violin-concerto.htmlhttps://www.imdb.com/name/nm4707717/Bradles D.Bradles. DD. BradleyDes BradleyNew Philharmonia OrchestraThe Kingsway Symphony OrchestraThe Starcoast Orchestra + +499270Peter HansonClassical violinist.Needs Votehttps://www.peterhanson.co.uk/HansonPete HansoPete HansonPeter G. HansonPeter HansenThe London Session OrchestraOrchestre Révolutionnaire Et RomantiqueLondon Classical PlayersLes Musiciens Du LouvreHanover BandThe London Scratch OrchestraHanson String QuartetEroica QuartetMarylebone CamerataThe English ConcertThe Chamber Orchestra Of LondonOrchestre de GrandeurThe Pale Blue Orchestra + +499278Ian MackinnonClassical and session violinist.Needs VoteI. MackinnonIain MackinnohIain MackinnonIan MacKinnonIan McKinnonJain MackinnonLondon Symphony OrchestraThe Martyn Ford Orchestra + +499279Howard BallBritish violinist and instrument maker.Needs Votehttps://web.archive.org/web/20161216052639/http://www.howardballbowmaker.co.uk/H. BallH.BallHowar BallLondon Philharmonic OrchestraThe Martyn Ford OrchestraRoyal Philharmonic Orchestra + +499284Galina SolodchinClassical violinist, active from 1970s.Needs VoteG. SolodchinGalena SolodchinGalina SolochinGelina SolodchinLondon SinfoniettaThe Delmé String QuartetThe London StringsThe Richard Hickox OrchestraThe Thames Chamber Orchestra + +499287Colin SheenTrombone and sackbut player.Correcthttps://www.audionetwork.com/browse/m/composer/colin-sheen_1248Nelson Riddle And His OrchestraThe London Chamber OrchestraThe Early Music Consort Of LondonPhilip Jones Brass EnsembleThe Pride Of London Big BandBaroque Brass Of LondonMusica ReservataLocke Brass ConsortRobert Farnon And His OrchestraBBC Radio Big Band + +499289Marilyn SansomClassical cellist.Needs VoteM. SansomMarian SansomMarilyn SansonMarilyn SensonMarylin SansomOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe Monteverdi OrchestraCollegium Sagittarii + +499436Clive LanderViolinist.Needs VoteRoyal Philharmonic OrchestraNorthern Sinfonia + +500231Andreas SchollGerman countertenor, born 10 November 1967 in Eltville am Rhein, Germany.CorrectA. SchollAndreas ShollSchollアンドレアス・ショルLes Arts FlorissantsConcerto VocaleCantus Cölln + +500384Floriane BonanniFrench violinist.Needs Votehttp://fr.wikipedia.org/wiki/Floriane_BonanniBonanni FlorianeBonannie FlorianeF. BonamiF. BonanniFlorian BonaniFlorian BonnaniFloriane BonamiFloriane BonaniFloriane BonnamFloriane BonnamiFloriane BonnaniFlorianne BonanniFlorianne BonnaniFlorianne BonnantOrchestre Philharmonique De Radio FranceAntigone Quartet + +500387Catherine MontierCatherine MontierFrench violinist.Needs VoteLes Talens LyriquesTrio Wanderer + +500419Morty CorbMortimer G. Corb.American jazz double-bassist. +Born : April 10, 1917 in San Antonio, Texas. +Died : January 13, 1996 in Las Vegas, Nevada. + +Morty played with : Gus Bivona, Pete Fountain, Ella Fitzgerald, Nat King Cole, Pearl Bailey, Louis Armstrong, Claude Thornhill, Jess Stacy, Kid Ory, Jack Teagarden, Benny Goodman, Earle Spencer, Bob Crosby and many others. +Needs VoteCorbM. CorbM. CrobMarty CorbMort CorbMorty CorbbMorty KorbPaul Smith QuartetPete Kelly And His Big SevenClaude Thornhill And His OrchestraKid Ory And His Creole Jazz BandBob Crosby And His OrchestraLouie Bellson OrchestraJerry Gray And His OrchestraMorty Corb And His Dixie All-StarsThe Barney Kessel QuartetHeinie Beau And His Hollywood Jazz QuartetHeinie Beau And His Hollywood SextetThe Jack Teagarden All-StarsRay Bauduc And The Bob-CatsGene Krupa ComboJess Stacy and His TrioThe Bobby Gordon Quartet + +500421Wilbert KirkJazz drummer +born: ca 1906 in New Orleans +died: 9 September 1983Needs Votehttp://www.swingfm.asso.fr/html/biographies/batteurs/Kirk%20Wilbert.htmW. KirkWilber KirkWilbur KirkNoble Sissle SwingstersWilbur De Paris And His New New Orleans JazzSam Price And His Texas Blusicians + +500482Robert PrizemanRobert Gordon PrizemanBritish composer and Chorus-Master (1952 - September 8, 2021)Needs Votehttps://en.wikipedia.org/wiki/Robert_PrizemanPrizemanR PrizemanR. Prizemanプライズマンロバート・プライズマンLibera + +500672Philippe MullerPhilippe MullerPhilippe Muller is a solo and chamber cellist, born 1946, in Alsace, France. He formed a trio in 1970 with Jean-Jacques Kantorow and Jacques Rouvier, which continues to perform to public and critical acclaim. In 1979, Muller was named professor of cello at the Conservatoire Supérieur de Paris, succeeding his teacher, André Navarra.Needs VoteMullerP. MullerPhilippe MüllerEnsemble IntercontemporainRouvier-Kantorow-Müller TrioL'Octuor de ParisL'Académie Royale De Musique De Paris + +500929Marco Paolo PierucciMarco Paolo PierucciItalian DJ and producer based in Rome.Needs Votehttp://www.djvortex.itM. P. PerucciM. P. PierucciM. PierucciM.P. PerucciM.P. PierucciM.P.PierucciMP PierucciP. PierucciP.M. PaoloP.Marco PoloPierucciPierucci Marco PaoloPierucci Marco PoloDJ VortexMavorMarco VorticeDoctor V.VTXVextorVoMarSerious MindsDJ Vortex & Arpa's Dream4 NavigatorsTitanic Bros.P.V.P.Poko PunkLiquid FightersMavor vs. Mark NailsDemons On DopeFalsemanHardlineHeavy HandsThe StoneHardromeSerious MindsIron Cave Squad2 ExplorersRim ShottersMa-Pe-RoHarddriver ProjectHellboyzMa-Pe-RookVorna TexilsRushtexPhat 4Golden GoalBaze HeroesOverload (11)FabulaNightmare In RomePlasmaboysVorlukStartrackersEnglandPlazmavortVRTX and FriendsOneiric Vortex06 (3) + +501000Masayuki Takayanagi高柳昌行 (Takayanagi Masayuki)Japanese free improvisation guitarist. + +Born December 22, 1932 in Tokyo, turned professional in 1951, and formed the first of many groups with the New Direction moniker in 1954. Was a leading member of every avant-garde movement in Japanese jazz from the fifties onwards. Towards the end of his life Takayanagi moved into complex 'Action Direct' works for tabletop guitar, tapes and electronics that verge on pure noise in their intent. Died June 23, 1991.Needs Votehttp://katta.html.xdomain.jp/http://katta.html.xdomain.jp/discography_en.htmlhttps://en.wikipedia.org/wiki/Masayuki_TakayanagiAction Direct : Masayuki TakayanagiJ. TakayanagiJojo TakayanagiM. TakayanagiM.TakayanagiMasayuki "JoJo" TakayanagiMasayuki "Jojo" TakayanagiMasayuki JoJo TakayanagiMasayuki Jojo TakayanagiMasayuki Takayanagi Action DirectTakayanagiTakayanagi MasayukiTakayanagi New Direction高柳高柳昌行高柳昌行 New DirectionGil Evans And His OrchestraMasahiko Togashi QuartetMasayuki Takayanagi Quintet"Jojo" Takayanagi Second ConceptHideto Kanai GroupNew Direction UnitNew DirectionsNew Direction For The ArtsTakayanagi 3Tee & CompanyMasayuki Takayanagi & Kaoru AbeMasayuki Takayanagi QuartetTakayanagi's Angry WavesMasahiko Togashi & Improvisation Jazz Orchestra高柳昌行グループTakayanagi Jazz Contemporary 4Loco Takayanagi Y Los Pobres + +501175Beth AndersenBeth Marie Andersen BodineAmerican pop vocalist. +Often unintentionally misspelled as “Beth Anderson” in credits. Needs Votehttp://bethandersen.com/https://en.wikipedia.org/wiki/Beth_Anderson_%28singer%29https://www.imdb.com/name/nm0026406/B. AndersenB. AndersonBeth Anders0nBeth Andersonベス・アンダーセンThe Honey Sisters (2) + +501233Al Stewart (3)Al Stewart is an American jazz trumpeter and photographer. He started his career in 1947 in [a=Louis Prima]'s band. + +In addition, Stewart has played with [a=Louis Armstrong], [a=Benny Goodman], [a=Dizzy Gillespie], [a=Charlie Parker], [a=Bobby Hackett], [a=Lee Morgan], [a=Charlie Shavers], [a=Buck Clayton], [a=Conrad Gozzo], [a=Maynard Ferguson], [a=Bernie Glow], [a=Gene Krupa] and [a=Woody Herman], among others. +Needs Votehttps://adp.library.ucsb.edu/names/345406A. StewartAl StewartAl Stewart's Museum Of Modern BrassAlvin StewartMachito And His OrchestraWoody Herman And His OrchestraBenny Goodman And His OrchestraWoody Herman SextetThe Nat Pierce OrchestraWoody Herman And The Fourth HerdChubby Jackson's Big BandSal Salvador And His Orchestra + +501234Frank SocolowAmerican jazz tenor saxophone player,. +Born September 18, 1923 in New York, USA,. +Died April 30, 1981 in New York, USA. +Needs Votehttps://en.wikipedia.org/wiki/Frank_Socolowhttps://adp.library.ucsb.edu/names/209649F. SocolowFrank SokolovFrank SokolowFrankie SocolowFrankie SokolowSoclowSocolowArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraManny Albam And His Jazz GreatsFrank Socolow's Duke QuintetTerry Gibbs And His OrchestraChubby Jackson's OrchestraJohnny Richards And His OrchestraLarry Sonn OrchestraBill Russo And His OrchestraSal Salvador QuintetChubby Jackson And His Fifth Dimensional Jazz GroupFrank Socolow's Sextet + +501615Ralph Sutton (2)Ralph Earl SuttonFavorite American stride jazz pianist + +Sutton had a stint as a session musician with Jack Teagarden's band before joining the US Army during World War II. After the war, he played at various venues in Missouri with the [a13033734], eventually ending up at Eddie Condon's club in Greenwich Village. In 1956, he relocated to San Francisco, California, where he recorded several albums with Bob Scobey's dixieland band. + +From the 1960s onward, he worked mostly on his own. However, when the World's Greatest Jazz Band was established in 1968, he was the natural choice for piano. He left that band in 1974 due to the extensive travel involved, and joined an old sidekick, Peanuts Hucko, in a quartet in Denver, near his home in Evergreen, Colorado. + +Fellow jazz pianist Jess Stacy said this about Ralph Sutton: "He is a superb piano player and a great guy. There's nothing upstage about him. I really admire the way he plays. He's one of the few piano players who uses both hands, and it's sure nice to know that a player like Ralph is still around. I can't say enough good things about him. He's one of the greats, and I hope he gets the recognition he deserves. + +born November 4, 1922 in Hamburg, Missouri, USA +died December 30, 2001 in Evergreen, Colorado, USANeeds Votehttps://en.wikipedia.org/wiki/Ralph_Suttonhttps://web.archive.org/web/20230127131816/https://www.nytimes.com/2002/01/01/arts/ralph-sutton-79-the-pianist-known-as-the-master-of-stride.htmlR. SuttonRalf SuttonRalph E. SuttonRalph SuttonRaph SuttonSuttonР. СаттонEddie Condon And His OrchestraSidney Bechet And His New Orleans FeetwarmersBob Scobey's Frisco BandThe World's Greatest JazzbandEddie Condon And His All-StarsThe Ralph Sutton QuartetSusie Arioli Swing BandGeorge Wettling's Jazz BandThe Ralph Sutton TrioGeorge Wettling's All StarsThe All Star StompersSackville All StarsThe Bill Davison SixTony Parenti's RagpickersThe "This Is Jazz" All-StarsRalph Sutton And His AllstarsRalph Sutton & FriendsPunch Miller JazzbandJoe Schirmer TrioThe Chicago Jazz Giants + +501760Artie WayneArthur Wayne KentAmerican record producer, music publisher, songwriter and singer. Often associated with publishers [l=Flomar Music] and [l=Paisley Music], songwriter [a=Ben Raleigh] and producer [a=Howard Bogess] through [l=Boggess-Wayne Productions]. +Born: January 22, 1942 in New York City, New York +Died: February 19, 2019 in Palm Springs, CaliforniaNeeds Votehttps://artiewayne.wordpress.com/https://www.ascap.com/repertory#ace/writer/32583397/WAYNE%20ARTIEhttps://en.wikipedia.org/wiki/Artie_WayneA. WayleA. WayneA. WayreA.WayneA.ワイネArt WayneArthur WayneArtie - WayneArty WayneJerry WayneR. TwainWayneShadow MannNeil Sheppard (2)Wayne Kent (2)The Third Rail (2)Terry Boyd and the Trends + +501764Teacho WiltshireGeorge (born Audrick Gladstone) WiltshireHighly-regarded pianist, arranger and conductor who worked with [a257026], [a83396], [a269102], [a109435], [a374805], [a191323], [a202255], [a110626], [a269356] and [a179041]. + +Born 20 September 1909 in St Andrew Parish, Barbados +Died 29 September 1968 in Teaneck, New Jersey, USANeeds Votehttp://www.allmusic.com/artist/teacho-wiltshire-mn0001229298https://en.wikipedia.org/wiki/Teacho_Wiltshirehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/211165/Wiltshire_TeachoA. T. WiltshireT WiltshireT. WilshireT. WiltchireT. WiltshireTeach WilshireTeacha WilshireTeachoTeacho WilchireTeacho WillshireTeacho WilshireTeacho WilstshireTeacho Wiltshire & BandTeaco WiltshireTecho WilchireTecho WilshireTecho WiltshireTiacho WiltshireWilshireWiltshireLouis Jordan And His Tympany FiveTeacho And His StudentsTeacho Wiltshire OrchestraTeacho Wiltshire And The Bad MenTeacho Wiltshire QuartetTeacho Wiltshire, His Orchestra And ChorusTeacho Wiltshire And Band + +501972Eddie BrigatiEdward J. Brigati Jr.American singer and songwriter, born 22 October 1945, Garfield, New Jersey, USA. Brother of [a501970]. + +Inducted into Songwriters Hall of Fame in 2009. +Needs Votehttp://en.wikipedia.org/wiki/Eddie_Brigatihttp://www.allmusic.com/artist/eddie-p59378http://songwritershalloffame.org/exhibits/C6016Bri GatiBrigagiBrigantiBrigateBrigatiBrigati JnrBrigati Jr.Brigati, JrBrigati, jrBrigati/EdwardBrigatieBrigattiBriggatiBrighatiBrightBugatiCavaliereDrigatiE BrigateE BrigatiE. BrigatiE. BragatiE. Bragati Jr.E. Bragatti, Jr.E. BrigadiE. BrigateE. BrigatiE. Brigati Jr.E. Brigati, Jr.E. BrigattiE. DrigatiE. J. Brigati, Jr.E.BrigantiE.BrigateE.BrigatiE.Brigati, Jr.E.J. BrigatiE.J. Brigati Jr.E.e BrigatiEd BriagtiEd BrigatiEd. Brigati Jr.EddiEddi BrigatiEddieEddie BigatiEddie BregatiEddie BriganteEddie BrigantiEddie BrigateEddie Brigati Jr.Eddie Brigati, Jr.Eddie BrigatoEddie BriggatiEddie BrightEddie J. BrigatiEddy BrigatiEdie BrigatiEdvard BrigatiEdward BriatiEdward BrigatEdward BrigatiEdward Brigati JrEdward Brigati Jr.Edward Brigati, Jr.Edward BrigattiEdward Brigatti Jr.Edward J BrigatiEdward J Brigati JrEdward J Brigati Jr.Edward J. "Eddie" Brigati, Jr.Edward J. BrigatiEdward J. Brigati Jr.Edward J. Brigati, Jr.Edward J. BrigattiEdward Jr. BrigatiEdward K. BrigatiEdward VrigatiJ. BrigatiJ.E. BrigatiThe RascalsJoey Dee & The StarlitersThe Young RascalsThe New York Rock And Soul Revue + +502034Anders Dahl (2)Swedish violinist and orchestra leader.Needs VoteAnder DahlAnders DahlAnders Dahl Och Hans PojkarAnders DahlsDahlSveriges Radios SymfoniorkesterAnders Dahls EnsembleIvan Renlidens OrkesterYngve Furéns OrkesterDisco MackanNashville TrainAnders Dahl And His Magic StringsHerrgårdskvartettenSveriges Hot SixAnders Dahls OrkesterAnders Dahl Och Hans KvartettAnders Dahls Wienerkvartett + +502792Gilad KarniSwiss-israelian classical viola player. He played viola for the New York Philharmonic from 1992 to 1997.Needs Votehttps://en.wikipedia.org/wiki/Gilad_KarniNew York PhilharmonicTonhalle-Orchester Zürich + +502814Elliott CarterElliott Carter, Jr.Born: December 11, 1908 (New York, New York, United States). +Died: November 5, 2012 (New York, New York, United States). + +Elliott Carter was a two-time Pulitzer Prize-winning American composer. He was born and lived in New York City.Needs Votehttps://www.elliottcarter.com/https://www.facebook.com/chronometros/https://x.com/chronometroshttps://en.wikipedia.org/wiki/Elliott_Carterhttps://www.britannica.com/biography/Elliott-Carterhttps://www.imdb.com/name/nm3183723/CarterE. CarterElliot Carter + +502816Heinz StanskeHeinz Stanske (1909 - 1996) was a German violinist and a music pedagogue. +Needs VoteStanske + +502819Wolfgang RihmProf. Dr. h.c. Wolfgang RihmGerman composer, university lecturer and author +Born: 13th March 1952 Karlsruhe, Germany +Died: 27th July 2024 Ettlingen, Germany +Professor for composition at the [l517948] from 1985. Former pupils include [a=Rebecca Saunders] and [a695348]. +Awarded the Golden Lion for lifetime achievement in music at the 2010 Venice Biennale.Needs Votehttps://en.wikipedia.org/wiki/Wolfgang_Rihmhttps://hfm-karlsruhe.de/hochschule/personen/prof-dr-hc-wolfgang-rihmhttps://www.universaledition.com/wolfgang-rihm-599https://www.imdb.com/name/nm3775813/A. RihmRihmW. R.W. RihmStaatskapelle Dresden + +502823Yvonne LoriodYvonne Loriod-MessiaenFrench pianist, born 20 January 1924 in Houilles, Seine et Oise, France - died 17 May 2010 in Saint-Denis, France. Sister of [a=Jeanne Loriod]. Wife of [a=Olivier Messiaen], whose pupil she was at the Paris Conservatoire in 1941, and whom she married in 1961. Messiaen quickly saw in Yvonne Loriod somebody whose technique could interpret his music as he saw it. He dedicated "Vingt Regards sur l'Enfant Jesus", "Visions de l'Amen", "Catalogue d'Oiseaux", "La Fauvette des Jardins", "Petites esquisses d'oiseaux" and most of the piano parts in his orchestral works to her. Yvonne Loriod was also a composer, writing several works including "Grains de cendre" (1946) for Ondes Martenot, piano and voice; but the only one to be performed in public was probably "Trois Mélopées africaines" for flute, ondes Martenot, piano and drum. She was also a renowned concertist and soloist, performing for instance 22 of Mozart's concertos in a single week or premiering Boulez's "Structures, Book 2", in 1961 at Donaueschingen. +Needs Votehttps://en.wikipedia.org/wiki/Yvonne_LoriodLoriodYvone LoriodYvonneYvonne Loriod-MessiaenYvonne LoriodováYvonne LoriotYvonne Loriot-Messiaen + +502859Andrew MarrinerAndrew Stephen MarrinerBritish classical solo/chamber/orchestral clarinetist and educator. Born 25 February 1954. +His professional musical career began at the age of 7 when he was a boy chorister at [a=The King's College Choir Of Cambridge]. In 1968, he joined the [a=National Youth Orchestra Of Great Britain]. He held the position of Principal Clarinet in the [a=London Symphony Orchestra] from 1986 to 2019. He first played with the LSO in 1977 and, as guest principal, on the orchestra's 1983 world tour. He later became Principal Clarinet of [a=The Academy of St. Martin-in-the-Fields], a position he held concurrently with his commitment to the LSO until 2008. Throughout his career, he has performed with chamber ensembles around the world, as well as being a member of the [a=London Symphony Orchestra Chamber Ensemble]. Professor of Clarinet at [l305416] and the [l527847]. +Andrew Marriner is the son of famed conductor and violinist, [a=Sir Neville Marriner].Needs Votehttp://www.andrewmarrinerclarinet.com/https://www.facebook.com/AndrewMarrinerClarinet/https://en.wikipedia.org/wiki/Andrew_Marrinerhttps://www.feenotes.com/database/artists/marriner-andrew-25-february-1954-present/https://www.highresaudio.com/en/artist/view/c4d49439-171e-4ed7-b012-ac1b1f44cbc8/andrew-marriner-sir-neville-marrinerhttps://www.ram.ac.uk/people/andrew-marrinerAndrew MarinerMarrinerLondon Symphony OrchestraThe King's College Choir Of CambridgeThe Academy Of St. Martin-in-the-FieldsNational Youth Orchestra Of Great BritainThe Albion EnsembleLondon Symphony Orchestra Chamber EnsembleLSO Wind Ensemble + +502860Christopher HookerClassical oboe player, he has performed with all the major London orchestras, and was for many years Principal Oboe of the City of London Sinfonia.Needs VoteChris HookerCity Of London Sinfonia + +502861Andrew StowellBassoonistCorrecthttp://www.andrewstowell.comOrchestra Of The Royal Opera House, Covent Garden + +503203Brendan O'Brien (2)Classical violinist. +Former 1st violin of the [a=Royal Philharmonic Orchestra] and the [a=London Symphony Orchestra] (1965). In 1968, he was appointed Leader of the [a=Bournemouth Symphony Orchestra].Needs VoteLondon Symphony OrchestraRoyal Philharmonic OrchestraBournemouth Symphony Orchestra + +503363Ray NobleRaymond Stanley NobleEnglish bandleader, composer, arranger and actor (born December 17, 1903, Brighton, England – died April 3, 1978, London, England). + +Noble is most notable as the composer of many famous songs such as "The Very Thought of You," "I Hadn't Anyone Till You," "The Touch of Your Lips," "Goodnight Sweetheart", "Love Is The Sweetest Thing" and "Cherokee." He studied music at the Royal Academy of Music and, at age 21, became a staff arranger for the BBC and a year later was named a musical advisor for [l=His Master's Voice] (HMV) Records. In 1929, he became conductor/leader HMV's house band, known as the New Mayfair Orchestra. This orchestra featured members from many of the top hotel orchestras of the day. The most popular vocalist with Noble's studio band was [a=Al Bowlly], who joined Noble in 1930. Ray Noble's band recordings were the first by a British ensemble to achieve popularity in the United States, and in 1934 he journeyed to America, along with drummer/manager [a=Bill Harty] and popular vocalist [a=Al Bowlly]. Noble enlisted famous American bandleader/trombonist [a=Glenn Miller] to help him organize a band in America. The band achieved great success, especially during its engagements in The Rainbow Room, but it was later disbanded in 1937. + +Noble went to Los Angeles, where he conducted an orchestra on the radio and provided music for shows like 'The Chase and Sanborn Hour,' '[a=Burns And Allen]' and the '[url=http://www.discogs.com/artist/2719873-Charlie-McCarthy-2]Charlie McCarthy[/url] Show,' (featuring ventriloquist [a=Edgar Bergen]). He also did some comedy on the radio during this time and worked extensively with [a=Fred Astaire]. Noble also made a lot of recordings with his band on [l=Brunswick] and [l=Columbia] from 1937-1950 and worked with artists like [a=Tony Martin (3)] and [a=Buddy Clark (3)]. In the mid-1950s, Noble decided to enter semi-retirement and relocated to Jersey (Channel Islands) in the late 1960s. In March 1978 he flew to London for treatment of cancer, and later died of the disease at a London hospital. + +"The Very Thought of You", recorded on His Master's Voice in 1934, was inducted into the Grammy Hall of Fame. Ray Noble was inducted into the Songwriters Hall of Fame and in 1987 inducted into the Big Band and Jazz Hall of Fame.Needs Votehttps://en.wikipedia.org/wiki/Ray_Noblehttps://www.songhall.org/profile/Ray_Noblehttp://www.nobello.com/ray-noble.htmlhttp://www.bigbandlibrary.com/raynoble.htmlhttps://www.imdb.com/name/nm0633656/https://adp.library.ucsb.edu/names/102805.Noble/. NobleBernsteinDawson Ray NobleDay NobleDonald ChadwickHobelLay NobleNObleNableNebleNobelNobleNoble RayNoble, RayNoblesNovleP. NobleR NobleR. NobleR. NobelR. NoblR. NobleR. ノーブルR.NobleR.S. NobleRayRay & NoblesRay - NobleRay NobelRay, NobleRay/NobleRaymond Stanley "Ray" NobleRaymond Stanley NobleRoy Nobler. NobleР. НоблРей НобльРей НобълРей НобэльРэй НоблРэй НобльRay Noble And His OrchestraRay Noble & His New Mayfair Dance OrchestraThe New Mayfair Dance Orchestra + +503479Ronnie KranckFinnish musician and recording engineer, born on May 13, 1931 in Helsinki, Finland; died on January 1, 2014 in Porvoo, Finland. Started his career as a jazz musician in the late 1940s. Ran his own group Ronnie Kranckin Yhtye from the late 1950s to 1969. After the group was disbanded, he started working as a studio engineer.Needs VoteKranckR. KranckR.KranckRonald KranckRonnie KrankGeoffery HopkinsRonnie Kranckin OrkesteriRonnie Kranckin SekstettiRonnie Kranckin Yhtye + +503619Bill Evans (3)William D. EvansAmerican jazz saxophonist (tenor & soprano). He also played flute occasionally. Born February 8, 1958 in Clarendon Hills, Illinois. +At the age of 22, he joined [a=Miles Davis] and was part of his comeback in the early to mid–1980s. He has played, toured and recorded with artists such as [a=Herbie Hancock], [a=John McLaughlin], [a=Michael Franks], [a=Willie Nelson], [a=Mick Jagger], [a=Les McCann], [a=Mark Egan], [a=Danny Gottlieb], [a=Ian Anderson], [a=Randy Brecker], [a=The Allman Brothers Band], and [a=Medeski, Martin & Wood].Needs Votehttp://billevanssax.com/https://www.facebook.com/billevanssaxhttps://twitter.com/billevanssaxhttps://www.instagram.com/realbillevanssax/https://soundcloud.com/billevanssaxhttp://en.wikipedia.org/wiki/Bill_Evans_(saxophonist)https://musicians.allaboutjazz.com/billevanssaxophonehttps://www.jazzmusicarchives.com/artist/bill-evans-saxhttps://musicianbio.org/bill-evans-2/https://www.imdb.com/name/nm4979077/https://www.allmusic.com/artist/bill-evans-mn0000074005B, EvansB. EvansBillBill "east coast" EvansEvansSteps AheadGil Evans And His OrchestraMahavishnu OrchestraElements (6)Man Doki SoulmatesRichard S. & The Vibe TribeCTI All-StarsPeople (9)Petite BlondePush (14)Miles Davis SeptetBill Evans GroupInternational QuintetMiles Davis GroupSoulbopbandThe Tom 'Bones' Malone Jazz SeptetThe Voodoo Horns + +504258Eddie de VerteuilCredited as jazz saxophonist.Needs VoteE. de VerteuilEd DeVerteuilEd De VerteuilEd De VertoilEd DevertoilEd de VerteuilEddie De VerteilEddie De VerteuilEddie De VerteuillEddie De VertoilEddie De VertueilEddie De VertuilEddie DeVerteuilEddie DeVerteuillEddie DeVertueilEddie DeverteuilEddie DuverteuilEddie VertoilEddie deVerteuilEddy De VertevillEddy DeVerteuilEddy DeVertevillCootie Williams And His OrchestraGeorge Treadwell OrchestraBe Bop BoysKenny Clarke And His 52nd Street BoysGil Fuller's Modernists + +504261Leroy HarrisAmerican jazz alto saxophonist and clarinetist, born February 12, 1916 in St. Louis, Missouri, died February 16, 2005 in St. Louis, Missouri. +Harris (not to be confused with his father [a2773938]), worked among others with Sarah Vaughan and Earl Hines. +CorrectHarrisL. HarrisLe Roy HarrisLeory HarrisEarl Hines And His OrchestraEarl "Fatha" Hines And His New SoundsThe Hines Varieties + +504262Ted SturgisMostly known as a bass player for [a=Sarah Vaughan], Ted Sturgis was a multi-instrumentalist artist, active from the 30s until the mid 70sNeeds Votehttps://adp.library.ucsb.edu/names/345734Fred SturgessSturgisT SturgisT. SturgisTed StrugisTed SturgesTed SturgessTheodore "Ted" SturgisTheodore SturgisBilly Taylor TrioCozy Cole All StarsBillie Holiday And Her OrchestraStuff Smith TrioTadd Dameron And His OrchestraRoy Eldridge And His OrchestraDon Redman And His OrchestraDon Byas And His OrchestraBuddy Tate's OrchestraEddie Heywood And His SextetFranz Jackson And His Jacksonians + +504673Francesco PetrarcaFrancesco Petrarca, known in English as PetrarchItalian scholar, poet and one of the earliest Renaissance humanists (July 20, 1304 – July 19, 1374), often called the "Father of Humanism". His sonnets were admired and imitated throughout Europe during the Renaissance and became a model for lyrical poetry.Correcthttp://en.wikipedia.org/wiki/PetrarchF. PetrarcaFrancesco Petrarca (1304 - 1374)Francesco PetrarchFrancesco PetràrcaPetrachPetrarcaPetrarchPetrarch, Sonnet No. 104PetrarquePétrarqueПетраркаПетрарка ФранческоФ. ПетраркаФранческо Петрарка + +504675Giorgio MainerioItalian musician and composer of the Renaissance era (ca. 1530-1540 - 1582). +CorrectDon G. MainerioDon Giorgio MainerioDon Giorgio MaineroG. MainerioGiorgio MainieroGiorgio Mainiero, 16. JahrhundertGiorigo MainerioMainerioMainiero + +504881Wendy SutterAmerican cellist, plays for Bang On A Can.Needs Votehttp://www.bangonacan.org/all_stars/wendy_sutterBang On A CanNew York PhilharmonicNew York Piano Quartet + +504968Scoville BrownScoville Toby BrownAmerican jazz saxophonist, born October 13, 1915 in Atlanta, Georgia.Needs Vote(Scoville) Toby BrownS. BrownS. BrowneScouille BrownScoville BrowneLouis Armstrong And His OrchestraLionel Hampton And His OrchestraTeddy Wilson OctetBuck Clayton's Big FourThe Claude Hopkins BandBuddy Johnson & His Band + +505113Kevin JordanTrumpet playerNeeds VoteStan Kenton And His OrchestraThe Northern Illinois University Jazz Ensemble + +505159Caroline DearnleyBritish freelance classical cellist. +She graduated from the [l290263] in 1984. She has been Principal Cello with [a=Britten Sinfonia] since 1993 and plays a Milanese cello, dated 1740. She was a founder member of the [a=Joachim Trio]. +Married to [a=William Lockhart].Needs Votehttps://www.facebook.com/caroline.dearnleyhttps://www.playsthis.com/Caroline-Dearnley/https://www.brittensinfonia.com/who-we-are/people/caroline-dearnleyhttps://www.imdb.com/name/nm3405111/C. DearnelyC. DearnleyCaroline DearnelyCaroline DearneyCarolyn DearnleyLondon SinfoniettaPhilharmonia OrchestraBritten SinfoniaJoachim TrioLondon MusiciRobert Farnon And His OrchestraThe London Cello SoundJuno String QuartetMichaelangelo Chamber OrchestraBritten Oboe Quartet + +505161Ursula GoughBritish classical violinist. +She studied at [l305416] and then at the [l481472]. On returning to England, she began freelancing. She was a member of the [a=London Symphony Orchestra] (1998-1999) and, for three years, Principal 2nd Violin in [a=The Royal Philharmonic Orchestra].Needs Votehttp://www.fibsonline.co.uk/gallery/detail.php?ImID=14https://www.imdb.com/name/nm2753084/London Symphony OrchestraRoyal Philharmonic OrchestraThe Fibonacci SequenceThe Chamber Orchestra Of London + +505163Zoe MartlewZoë Martlew Cello player.Needs Votehttp://zoemartlew.com/Zoë MartlewMillennia StringsThe Millennia EnsembleLondon SinfoniettaAluminiumLondon Contemporary OrchestraEt Cetera Ensemble + +505165Maxine MooreClassical viola player. +Former member of the [a=London Symphony Orchestra] (2000-2008).Needs Votehttps://www.imdb.com/name/nm11803055/Maxime MooreLondon Symphony OrchestraTippett Quartet + +505166Mia CooperMia CooperIrish violinist.Needs VoteCity Of London SinfoniaRoyal Philharmonic OrchestraRTÉ Concert OrchestraThe Michael Nyman BandThe Goldberg EnsembleThe Goldberg Ensemble QuartetSolstice Ensemble (2) + +505169Richard MiloneBritish violinistNeeds VoteOrchester der Bayreuther FestspieleSonia Slany String And Wind EnsembleThe Orchestra Of St. John'sMarylebone Camerata + +505170Matthew SouterMatthew SouterBritish viola instrumentalistNeeds VoteMathew SouterCity Of London SinfoniaThe Academy Of St. Martin-in-the-Fields + +505172Timothy GrantBritish classical viola playerNeeds VoteTimothyGrantThe Academy Of St. Martin-in-the-Fields + +505177Janice GrahamJanice Graham (Woolley)British classical violinist, orchestral leader, film and commercial recording artist, and Professor of Violin. +She studied at [l1727868] (1976-1985), [l305416] (1986-1991) and the [l477743] (1991-1992). She was Principal 2nd Violin (01/1993-08/1996) & Assistant Leader (09/1996-01/2001) of the [a=London Symphony Orchestra], and Leader of the [a=BBC National Orchestra Of Wales] (01/1997-12/2002) & [a=The English National Opera Orchestra] (01/2007-07/2020). She has appeared as guest leader of most of the UK's symphony and opera orchestras. Leader (since 01/1995) & Artistic Director (since 2005) of [a=English Sinfonia]. Professor of Violin at the [l290263] (09/1995-07/2011) and at the Guildhall School since September 2011.Needs Votehttps://www.englishsinfonia.org.uk/meet-the-orchestrahttps://www.eno.org/artists/janice-graham/https://www.gsmd.ac.uk/staff/janice-grahamhttps://www.imdb.com/name/nm1020496/https://www.x.com/janice_woolleyhttps://www.facebook.com/janice.woolley.31https://www.linkedin.com/in/janice-woolley/J. GrahamJ.GrahamLondon Symphony OrchestraRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraEnglish SinfoniaLondon Symphony Orchestra StringsBBC National Orchestra Of WalesThe English National Opera OrchestraYoung Musicians Symphony Orchestra + +505435Chicago FootwarmersJazz recording group, formed in Chicago in 1927. +As a quartet, with Johnny Dodds, Baby Dodds, Jimmy Blythe, Natty Dominique, they had earlier recorded as [a=Dixie-Land Thumpers] for Paramount, and as [a=State Street Ramblers] for Gennett. As Chicago Footwarmers they recorded four tracks for OKeh on December 3 and 15, 1927. +With Kid Ory and Bill Johnson added they then recorded three further tracks on July 2 1928, and, with Honore Dutrey replacing Ory, two more tracks two days later. + +Not to be confused with the [a=The Chicago Footwarmers].Needs Votehttp://redhotjazz.com/cfootwarmers.htmlJohnny Dodd's Chicago FootwarmersJohnny Dodds And His Chicago FootwarmersJohnny Dodds And The Chicago FootwarmersJohnny Dodds Chicago FootwarmersJohnny Dodds' Chicago FootwarmersThe Chicago FootwarmersKid OryJohnny DoddsBaby DoddsJimmy BlytheNatty Dominique + +505437State Street RamblersName used by several informally organized jazz bands that recorded for the Gennett label 1927-1928 and 1931. The bands were formed by [a=Jimmy Blythe], who partook in all their recordings.Needs VoteJimmy Blythe's State Street RamblersJohnny Dodd's State Street RamblersState St. RamblersThe Back Beach PiratesThe State Street RamblersBlythe's Blue BoysChicago StompersThe Back Beach PiratesBlue Jay BoysJohnny DoddsBaby DoddsBill Johnson (4)Jimmy BlytheClifford "Snags" JonesDarnell HowardW.E. BurtonNatty DominiqueRoy PalmerMarcus Norman (3)Baldy McDonaldMarie Grinter + +505439Carroll Dickerson's SavoyagersCorrectCaroll Dickerson's SavoyagersCarroll Dickenson's SavoyagersLouis ArmstrongEarl HinesZutty SingletonHomer HobsonPete BriggsJimmy StrongCrawford WethingtonBert CurryFred RobinsonMancy CarrCarroll Dickerson + +505441Dixieland Jug BlowersJazz/blues jug band, based in Louisville, that recorded for Victor 1926-1927.Needs Votehttps://en.wikipedia.org/wiki/Dixieland_Jug_Blowershttps://adp.library.ucsb.edu/names/110620Dixieland JugblowersJohnny Dodds' Dixieland Jug BlowersThe Dixieland Jug BlowersJohnny DoddsHenry CliffordLockwood LewisEarl McDonaldCurtis HayesClifford HayesFreddy SmithCal Smith (2)Johnny GatewoodEmmett PerkinsDan BriscoeGeorge Allen (12) + +505452Ernest GoldErnst Sigmund GoldnerAustrian-born American composer who was the first to have his name engraved on the Hollywood Walk of Fame (1975). +Born July 13, 1921 in Vienna, Austria. +Died March 17, 1999 in Los Angeles, California, USA. +Married to [a1202325] (1950-1969), father of [a300794].Needs Votehttps://en.wikipedia.org/wiki/Ernest_Goldhttps://kids.britannica.com/students/article/Ernest-Gold/311446https://www.imdb.com/name/nm0006104/https://adp.library.ucsb.edu/index.php/mastertalent/detail/108021/Gold_ErnestA. ゴールドC. GoldE GoldE. ColdE. EoldE. GolaE. GoldE. GoldbergE. GoludE. goldE. ゴールドE.GoldEarnest GoldEr. GoldErnerst GoldErnest - GoldErnest Gold And His OrchestraErnest GouldErnest-GoldErnesto GoldErnst GoldEugene GoldGahlGoldGold ErnestGold, ErnestGoudGouldH. GolM. GoldOroארנסט גולדゴールド어네스트고울드악단 + +505454Manos HadjidakisΕμμανουήλ Χατζιδάκις = Emmanuel HatzidakesGreek composer. Born 23 October 1925 in Xanthi, Greece - Died 15 June 1994 in Athens, Greece. + +In the late 1940s, he was the first to publicly appraise (and adapt on his piano works) "rebetika", the urban underground songs that followed the Asia Minor refugee influx to the country in 1922. In the late 1950s and early 1960s, he became immensely popular with his pop compositions and movie soundtracks. In 1960, his song "Never on Sunday" from the film of the same name earned him an Oscar for Best Original Song. Among others he collaborated with [a188983] and went on to produce numerous stage soundtracks and concept albums. + +In 1985, he started his own record company [l88664] (Σείριος). In 1989, he founded the [a=Orchestra of Colours] and served as its first conductor. He re-organized, and served as its manager (1975-1982), [l198541]'s radio Third Program. + +Stepfather of [a=Γιώργος Χατζιδάκις] (aka [a=Γιώργος Θεοφανόπουλος]).Needs Votehttps://www.manoshadjidakis.com/https://www.facebook.com/manoshadakisofficial/https://www.facebook.com/Μανος-Χατζιδακις-198403606857254/https://www.youtube.com/channel/UCXqeEcPYqPUHAi3AvSlh3bghttps://soundcloud.com/manos-hadjidakishttps://open.spotify.com/artist/4epy8uB6icBmTU3VoMwVzGhttps://music.apple.com/us/artist/manos-hadjidakis/1404142https://tetartopress.gr/manos-chatzidakis-viografiko-se-proto-prosopo/https://en.wikipedia.org/wiki/Manos_Hatzidakishttps://musicianbio.org/manos-hadjidakis/https://www.famousbirthdays.com/people/manos-hatzidakis.htmlhttps://www.astro.com/astro-databank/Hatzidakis,_Manoshttps://www.imdb.com/name/nm0006118/AdjidakisBadjedakisChadzidakisChadżidakisChatzidakiChatzidakisE.M. HadjidakisEmmanuel Manos HadjidalusG. HadjidakisG. HadjinasiosG. HatzidakisH.H. HadajakisH. HadjidakisH. ManosHADjidakisHaajidhakisHadgidakisHadijakisHadijdakisHadijidakisHadjaidakisHadjakisHadjdakisHadjedakisHadji AkisHadjiakarisHadjiakisHadjidacasHadjidahisHadjidak'isHadjidakaif ManosHadjidakasHadjidakiHadjidakisHadjidakis MamosHadjidakis ManosHadjidakis, ManosHadjidakis-ManosHadjidakosHadjidokisHadjifakisHadjikadisHadjikakisHadjikdokisHadjikisHadjildakisHadjjdakieHadsidakisHadyidakisHadzidakiHadzidakiaHadzidakisHadzidhakisHadzsidakiszHadzydhakisHadžidakisHaijdakisHajidakisHajidikasHakjidakisHarjidakisHasidakisHatsidakisHatziadakisHatzidakisHazidhakisHađidakisHedjidakisHodijidakisHodjdakisKadjidakisLegrand MichelM HadjidakisM HadjidakosM, HadjidakisM. HadjidakisM. ChadjidakiM. ChadjidakisM. ChadzidakisM. ChadzindakisM. ChatzidakiM. ChatzidakisM. HadgidakisM. HadidakisM. HadijdakisM. HadjadakasM. HadjadakisM. HadjdakisM. Hadji-DakisM. HadjiadakisM. HadjiakisM. Hadjida KisM. HadjidahasM. HadjidakiM. HadjidakisM. HadjidkisM. HadjidákisM. HadjikakisM. HadjikanisM. HadjikasM. HadjikatisM. HadjldakisM. HadkidakisM. HadlidakisM. HadsidakisM. HadzidakisM. HadzidhakisM. HadžidakisM. HajdidakisM. HajidakisM. HatjidakiM. HatjidakisM. HatsidakisM. HatzidakiM. HatzidakisM. HatzikadisM. HađidakisM. JadzidakisM. XatzidakisM. ΧατζιδάκιςM. ハジタキスM.HadjadakisM.HadjidakisM.HadjikakisM.HatsidakisMN, HadjidakisMadjidakisMamos HadjidakisManes HadjidakisManes HadjikakisMano HadjidakisManolis ChatzidakisManolis HatzidakisManon HadjidakiManos - HadjidakisManos ChatzidakisManos GatsosManos HadManos HaddidakisManos HadgidakisManos HadijakisManos HadikakisManos HadjedakisManos HadjiakisManos HadjidokisManos HadjidrkisManos HadjikadisManos HadjithakisManos HadjùdakisManos HadsidakisManos HadzidakisManos HadzidhakisManos HadzjidakisManos HajidakasManos HanjidakisManos HatzidakisManos HatzithakisManos HdjidakisManos HedjidakisManos HodjidakisManos HoljidakisManos HudjidakisManos MadjidakisManos, HadjdakisManos-HadijidakisManos-HadjidakisManos-HadyidakisManos/HadjidakisManou ChatzidakiManoxManoz HadjidakisMonos HadjidakisMoras HadjidakisMr. Manos HadjidakisMános HadjidákisMános HatzidákisMάνου ΧατζιδάκιN. HadjidakisNadjidakisNamos HadjidakisNanos HadjidakisS. HadjidakisΓ. ΜουτζουρίδηΜ. XατζιδάκιΜ. XατζιδάκιςΜ. Χ.Μ. ΧατζηδάκηΜ. ΧατζηδάκηςΜ. ΧατζηδάκιΜ. ΧατζηδάκιςΜ. ΧατζιδάκηΜ. ΧατζιδάκηςΜ. ΧατζιδάκιΜ. ΧατζιδάκιςΜ. ΧατζιδακιςΜ.Χ.Μ.ΧατζιδάκηΜ.ΧατζιδάκηςΜ.ΧατζιδάκιΜ.ΧατζιδάκιςΜάνο ΧατζιδάκιΜάνος ΧατζiδάκιςΜάνος ΧατζδάκιςΜάνος ΧατζηδάκηςΜάνος ΧατζηδάκιςΜάνος ΧατζιδάκηςΜάνος ΧατζιδάκιΜάνος ΧατζιδάκιςΜάνος Χατζιδάκις = Manos HadjidakisΜάνου ΧατζηδάκιΜάνου ΧατζιδάκηΜάνου ΧατζιδάκιΜαν. ΧατζιδάκηςΜαν. ΧατζιδάκιςΜανος ΧατζιδάκιςΜανός ΧατζιδάκιςΜὰνος ΧατζιδὰκιςΟρχήστρα Μάνου ΧατζιδάκιΧατζηδάκηςΧατζηδάκιΧατζηδάκιςΧατζιδάκηςΧατζιδάκιΧατζιδάκιςГаджидакисМ. ХаджидакиМ. ХаджидакисМ. ХадзидакисМ. ХаџидакисМ. ХедийдекисМ.ХаджидакиХаджидакисХадзинакисהג׳ידקיסהדז׳דיקיסחדג'ידקיסחדיג'אקיסמ. הג׳ידקיסמ. הדז'ידקיסמ. הד׳גידקיסמ. חג'דקינסמ. חג'ידקיסמ. חדג'ידקיסמאנוס חאג'ידאקיסמאנוס חג'ידאקיסמאנוס חד'יקיסמאנוס חדג'ידקיסמנוס האג'ידאקיסמנוס חאג'ידאקיסמנוס חג'ידאקיסמנוס חג'ידקיסמנוס חדג'ידאקיסמנוס חדג'ידקיסניקוס הדז'ידאקיסهادجيداكيسハジダキスマノス・ハジダキスManos Hadjidakis And His Orchestra + +505455Gus KahnGustav Gerson KahnGerman-American lyricist. +Born in Koblenz, Germany on November 6, 1886. +Died in Beverly Hills, California, on October 8, 1941 (54 years of age). +Immigrating to the United States in 1891, where his family settled in Chicago. After graduating from high school, he worked as a clerk in a mail order business before launching one of the most successful and prolific careers from Tin Pan Alley. + +In his early days, Kahn wrote special material for vaudeville, together with [a=Egbert Van Alstyne] and at the age of 20, his first song was published, “My Dreamy China Lady”. From that publication through the 1940’s, Kahn contributed to Broadway scores such as Kitty’s Kisses, Whoopee, Show Girl, Sinbad, Passing Show of 1922 and Greenwich Village Follies of 1923. Concurrently, he wrote several hits for films, primarily MGM produced features. By 1933, Kahn had become a full time motion picture songwriter contributing to Flying Down to Rio, Kid Millions, Thanks a Million, A Day at the Races, Everybody Sing a.o. + +While his primary collaborator was [a=Walter Donaldson], Kahn also worked with composers [a=Richard Whiting], [a=Buddy DeSylva], [a=Al Jolson], [a=Raymond Egan], [a=Isham Jones], [a=Vincent Youmans], [a=George & Ira Gershwin], [a=Sigmund Romberg], [a813072] and [a=Harry Warren (2)] amongst others. + +In 1916 he married [a=Grace Leboy] and they had two children. He is also the grandfather of [a=Gwynne Kahn]. + +He's charted in the U.S. and U.K. an astounding 236 times between 1909 and 2013. Of those, eleven were #1 songs. Some notable ones are 'Pretty Baby' (1916), 'I'll Say She Does' (1916), 'Ain't We Got Fun?' (1921), 'Carolina in the Morning' (1923), 'It Had to be You' (1924), 'See You In My Dreams' (1924), 'Yes Sir! That's My Baby' (1925), 'Makin' Whoopee' (1928), ''Love Me or Leave Me' (1929), 'My Baby Just Cares for Me'(1930), 'Dream a Little Dream of Me' (1931), 'One Night of Love' (1934).Needs Votehttp://en.wikipedia.org/wiki/Gus_Kahnhttp://www.imdb.com/name/nm0006146/?ref_=nmbio_bio_nmhttps://www.songhall.org/profile/Gus_Kahnhttps://adp.library.ucsb.edu/names/108721Andre KahnB. KahnBuskanC. CahnC. KahnCahm, G.CahnCanCarnConnDrakeE. KaanF. KahnG CahnG KahnG, KahnG. KahnG. CahnG. HahnG. JonesG. KahenG. KahlG. KahnG. KanG. KanasG. KanhG. KayesG. KeyesG. KhamG. KhanG. KohnG. RahnG. kahnG.KahnG.KhanGahnGeorge KahnGhus KhanGoss KahnGud KahnGusGus CahnGus CarrGus GahnGus HahnGus KahanGus KahmGus KahnandGus KalinGus KanGus KannGus KarnGus KhanGus Khan WriterGus KohnGus y KahnGus. KahnGus/KahnGush KahnGuskahnGuskanGuskhanGuslahnGuss KahnGuss KhanGust KahnGustav KahnGustave KahnGuy KahnH. H. KahnH.KahnHahnHayhenHenry KahnJ. KahnJahnJef JahnJef KahnJohnJone KhanJoseph KahnK AhnKaanKahKahanKahan GusKaharKaherKahmiKahnKahn G.Kahn GusKahn [Uncredited]Kahn, G.Kahn, GusKahn-G.KahnnKahoKahrKahuKahwKalenKalinKalmKanKanhKannKarnKehnKernKerrKhahnKhanKoehlerKohnKuhnMillsO. KahnOufkahnRahnRoger KahnRus CahnS. KahnS.KahnW. KahnWalter KahnXahnГ. КанГ. КенКанגס קאןקאהןקהאןカーンガス・カーンGilbert Keyes + +505772Sue BowranViolinist. +2nd Violin with the [b]Chamber Ensemble of London[/b].Needs VoteSusan BowranPhilharmonia Orchestra + +505931Kevin O'TooleKevin John Paul O'TooleAudio engineer, songwriter and music producer. +Co-founded [a=N-Trance] with [a=Dale Longworth].Needs Votehttps://uk.linkedin.com/in/kevin-o-toole-b3224347K. O'TooleK.O'TooleKevin John Paul O TooleKevin John Paul O'TooleKevin John Paul TooleKevin O TooleKevin OTooleO 'TooleO' TooleO'TolleO'ToolO'TooleO'tooleO. TooleOTooleOiTooleO»TooleN-TranceKleptomaniaFreeloaders (2) + +505932Dale LongworthMusic producer. +Co-founded [a=N-Trance] with [a=Kevin O'Toole].Needs VoteD. LongworthD.LongworthLangworthLong WorthLongworthLongwothN-TranceKleptomaniaFreeloaders (2) + +506008Irvine ArdittiIrvine ArdittiBritish violinist, orchestra leader, and violin teacher. Born 2 August 1953 in London, England, UK. +Founder of the [url=https://www.discogs.com/artist/645741-Arditti-Quartet]Arditti String Quartet[/url], creating the group in 1974 whilst a student at the [l527847]. He joined the [a=London Symphony Orchestra] in 1976 and, after two years, at the age of 25, became its Co-Concert Master. He left the orchestra in 1980 in order to devote more time to the Arditti Quartet. Violin teacher at the Accademia di Musica di Pinerolo. +Husband of [a=Hilda Paredes] with whom they have a son, the counter-tenor [a=Jake Arditti].Needs Votehttps://ardittiquartet.com/irvine-ardittihttps://en.wikipedia.org/wiki/Irvine_Ardittihttps://www.feenotes.com/database/artists/arditti-irvine-1953-present/https://musicianbio.org/irvine-arditti/https://www.realarts.eu/Irvine-Ardittihttps://www.viennasummermusic.com/irvine-ardittihttps://www.millertheatre.com/explore/bios/irvine-ardittihttps://accademiadimusica.it/en/docente/irvine-arditti-2/https://moderecords.com/profiles/irvinearditti/https://www.naxos.com/person/Irvine_Arditti/9205.htmhttps://www.imdb.com/name/nm5298643/ArdittiArvine ArdittiI. ArdittiIrvin ArditiIrvin ArdittiIrvine ArdithIrving ArdittiLondon Symphony OrchestraThe Martyn Ford OrchestraArditti QuartetThe New Symphonia + +506718Colin BarrettCanadian bassistNeeds Vote + +507087Alex RodriguezTrumpet playerNeeds VoteAlex RodriquezAlex RodríguezWoody Herman And His OrchestraGerald Wilson OrchestraWoody Herman And The Swingin' Herd + +507341Hannes BiegerHannes BiegerDJ & producer from Berlin, Germany. +Works also as Mastering Engineer, Mixing Engineer & Post Producer at [l=Calyx Mastering]. +Mastering for CD, Vinyl, Surround, Mix Revision, Post Production. +Needs Votehttp://www.hannesbieger.comhttp://www.facebook.com/hannesbiegerhttp://www.soundcloud.com/hannesbiegerhttp://www.myspace.com/airmateAirmate75 MoodsLlavaCalyx Mastering + +507353Giorgio BobellowGert-Jan BelDutch Club, Disco-House & Dance classics DJ & producer.Correcthttp://www.bobellow.nl/BJ Bow BellowBellowBo BellowBo BellowsBo BobellowBoBellowBoBollowBobelloBobelloeBobellowBow-BellowDJ Bo BellowDJ BobellowGiorgioGiorgio Bo BellowGiorgo BobellowRobellowRobelowBobby SummerKungaraSummervibesBo RetroBo-Disco3 X BOG. Sus De BataviaReal Man (2)The DiscokingGert-Jan Bel + +507420Boris TonkovBulgarian violist, violinist and mandolinistNeeds VoteOrchestre Philharmonique De Strasbourg + +507500Julia WhiteClassical Soprano vocalist +[b]For the classical Cello & Oboe artist use [a=Julia White (2)] [/b] Needs VoteThe Sixteen + +507728Phillip Conway-BrownBritish tenor.Needs Votehttps://auditionoracle.com/singer/phillip_conway-brown/Philip BrownPhillip BrownPhillip Conway BrownMetro VoicesLondon VoicesSynergy Vocals + +507731Micaela HaslamMicaela Haslam studied bassoon and piano, she is now mainly active as a soprano vocalist, she is the co-founder and musical director of the Synergy vocal ensemble.Needs Votehttp://www.micaelahaslam.com/Micela HaslamMichaela HaslamThe London ChoirThe Swingle SingersBBC SingersThe SixteenSynergy VocalsCantyTenebrae (10) + +508115Christian KellersmannGerman managing director and producer, born 1960 in Hamburg. Since his youth he has also been active as a musician (saxophone and flute), and after studying musicology he published his thesis on Jazz in Germany from 1933-45.Needs VoteC. KellermannChristian "Pork" KellersmannChristian KellermannChristian KellersmanChristian ZimmermannDr. Christian KellersmannDie Doraus Und Die MarinasDie Zimmermänner + +508131Irving BerlinIsrael Isidore BeilinAmerican composer and lyricist, born 11 May 1888 in Tyumen, Russian Empire (today Russia) and died 22 September 1989 in New York City, New York, USA. + +Inducted into Songwriters Hall of Fame in 1970.Needs Votehttps://www.irvingberlin.com/https://en.wikipedia.org/wiki/Irving_Berlinhttps://www.imdb.com/name/nm0000927/https://www.britannica.com/biography/Irving-Berlinhttps://www.biography.com/musician/irving-berlinhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101971/Berlin_IrvingA. BerlinArlenB. FeldmanBalineBelinBellinBelrinBerinBerlijnBerlimBerlinBerlin / IrvingBerlin IBerlin I.Berlin IrvingBerlin IrwingBerlin, I.Berlin, IrvingBerlin/BerlinBerlin/IrvingBerlineBerlingBerling IrvinBerlinoBerlistBerliunBerlnBerlínBirlinBrelinBurlinCharlesE. BerlinE.Berlins (I.Berlin)Ercing BerlinErvin BerlinErving BerlinErwin BerlinErwin BerlingEwing BerlinGilbertI BerlinI BerlingI. BErlinI. BerlinI. Berlin*I. BerlindI. BerlineI. BerlingI. BerlinsI. BerlínI. BeskingI. CarlinI. berlinI. バーリンI.BereinsI.BerlinI.BerlingI.BeskingI.バーリンIr ing BerlinIr. berlinIrningIrring BerlinIrv BerlinIrv. BerlinIrvin BerlinIrvin BerlingIrvin BerlnIrvineIrvine BerlinIrvingIrving - BerlinIrving - BerlinIrving BerlimIrving Berlin & ChorusIrving Berlin (Williamson)Irving Berlin b. Israel BalinIrving Berlin b., Israel BalinIrving Berlin'sIrving Berlin, b. Israel BalinIrving BerlingIrving BerlínIrving BerunIrving BrlinIrving PerlinIrving-BerlinIrviug BerlinIrvring BerlimIrvwng BerlinIrwin BerlinIrwin Berlin [sic]Irwin BerlingIrwing BerlinIrying BerlinIsrael BalinIvingI・バーリンJ. BerlinJ. BerlinsJ. BerlínJ.BerlinJe BerlinJrvingL. BerlinMr. Irving BerlinMr. Irving Berlin With Supporting Cast And Soldier ChorusSergeant Irving BerlinSgt. Irving BerlinT. BerlinU. BerlinUrving BeriinVerlinY. BerlinberlinΊρβινγκ ΜπέρλινБерлинБерлингДж. БарлинИ. БерлинИрвинг Берлинאירבינג ברליןאירווינג ברליןארוינג ברליןアービング・バリンバーリン艾文·柏林Ren G. May + +508213Herbert BlomstedtHerbert Thorsson BlomstedtSwedish-American conductor, born 11 July 1927 in Springfield, Massachusetts, USA and raised in Sweden. + +He has been Music Director or Principal Conductor of the [a328834] (1954–62), [a900448] (1962–68), [a5558626] (1967–77), [a380036], (1977–82), [a578737] (1975–85), [a446472] (1985–95), [a3103680] (1996–98) and [a522210] (1998–2005).Needs Votehttps://en.wikipedia.org/wiki/Herbert_Blomstedthttps://www.imdb.com/name/nm1393160/BlomstedtH. BlomstedtГерберт БломштедтГерберт Блумстедтヘルベルト・ブロムシュテットNorrköping Symphony OrchestraSveriges Radios SymfoniorkesterSan Francisco SymphonyGewandhausorchester LeipzigStaatskapelle DresdenOslo Filharmoniske OrkesterNDR SinfonieorchesterDanmarks Radios Symfoniorkester + +508217Knut GuettlerNorwegian double-bass player and composer (born 31 January 1943; died in February 2013) was a teacher at the Norwegian Academy of Music from 1973 (professor since 1993), and at the Koninklijk Conservatorium since 1986.Needs VoteOslo Filharmoniske Orkester + +508218Per NyhaugNorwegian drummer, percussionist and vibraphonist, born 2 March 1926, died 1 September 2009.Needs VoteP. NyhaugWilly Andresens OrkesterWilly Andresens KvintettOslo Filharmoniske OrkesterFrank Ottersen Og Hans SekstettPer Nyhaug StudiobandRowland Greenberg & His GroupToralf Tollefsen & His Rhythm GroupFred Thunes' OrkesterThe Spotlights (10)Per Nyhaugs OrkesterEilif Holm's Kvartett + +508304Ed Greene (2)Edward GreeneAmerican Soul/Funk drummer and top session musician. +Since the early 70's he has played for [a=The Friends Of Distinction], [a=The Mamas & The Papas], [a=Donald Byrd], [a=Eddie Kendricks], [a=The Temptations], [a=Willie Hutch] etc. +Most notably, he played on the vast majority of Barry White's output in the 70's (including the Love Unlimited Orchestra). + +[b]For the engineer, see [a=Ed Greene (3)]. +For the session string player (also credited for percussion), see [a=Ed Green (2)]. +For the funk/soul keyboardist, see [a=Eddie Green (3)]. +For the Jazz/Blues songwriter and pianist (1891-1950), see [a=Eddie Green (4)]. +For the early jazz drummer, see [a=Eddie Green (6)]. +For the singer/songwriter, see [a=Eddie Greene].[/b] + +Needs Votehttps://www.youtube.com/watch?v=9DqYjx1RveYE. GreeneEdEd GreenEd GreeneEd GreenieEd. GreeneEddie GreenEddie GreeneEdward GreenEdward GreeneGreenRhythm Sectionエド・グリーンRhythm HeritageUnion (2)Lalo Schifrin & OrchestraMadagascar (5) + +508450Ben Smith (2)Benjamin SmithAustralian violinist, born and raised in Sydney, began to study the instrument with Yasuki Nakamura at the age of four, was freelancer in the UK and played in the Sinfónica de Galicia (Spain) for 15 years +Needs Votehttps://opera.org.au/artist/ben-smith/https://www.violinist.com/directory/bio.cfm?member=BenSBenjamin SmithSydney Symphony OrchestraOrquesta Sinfonica De Galicia + +508531Rainer CastillonRainer Castillon is a German violist.Needs VoteOrchester der Bayreuther FestspieleNDR SinfonieorchesterWinkler Quartett + +509009Martine SchoumanViolist and violinistCorrectMartine SchoumannOrchestre Philharmonique De Radio France + +509155Paul HadjajePaul HadjajeFrench viola player. He was successively super-soloist in the [url=http://www.discogs.com/artist/Paris+Op%C3%A9ra-Comique+Orchestra]Paris Opéra-Comique[/url] then in the [url=http://www.discogs.com/artist/Orchestre+National+De+L%27Op%C3%A9ra+De+Paris]Paris Opéra Garnier[/url], professor at the Lyons Conservatoire National Supérieur and at the Versailles Conservatoire. +Co-founder and secretary of the French 'Association des Amis de l'Alto' in 1979, he died in 1997.Needs VotePaul HadjadjPaul HadjageEnsemble Musique VivanteOrchestre National De L'Opéra De ParisOrchestre Du Théâtre National De L'Opéra-Comique + +509714Ramón LópezDrummer, percussionist and composer, born August 6, 1961 in Alicante. He mainly works in the jazz and improvised music fields. +Ramón López began as a self-taught drummer in the mid-1970’s. Witnessing a Max Roach solo concert in 1980 was a turning point that fundamentally changed his understanding of music. He was part of local groups until he decided to move to Paris in January 1985 and became increasingly involved in the experimental scene in France. At the same time, he developed an interest in Indian music, and took tabla lessons with Krishna Govinda K.C. He was a student of Pandit Subhankar Banerjee, while teaching Indian music himself with Patrick Moutal at the Paris Conservatory (1994-2001). +Besides Jazz and Indian music, he is attracted especially to flamenco music. He has worked with some of the great flamenco artists, among them Carmen Linares, Esperanza Fernández, Inés Bacán, Gerardo Núñez, Rafael de Utrera, Chano Domínguez, etc… + +His first recording as a leader, an album of solo drums, was released in 1997 on the British Leo label. +His musical endeavours have always been challenging; his interpretation of songs from the Spanish civil war (2001) spring to mind, or his duos dedicated to Roland Kirk (2002). From 1997 to 2000 he was drummer in the renowned French Orchestre National de Jazz under Didier Levallet's direction. + +Among many others, Lopez has worked at concerts and festivals and in the recording studio with the following musicians of the jazz avant-garde: Beñat Achiary, Rashied Ali, Majid Bekkas, Anthony Coleman, Andrew Cyrille, Sophia Domancich, Agustí Fernández, Glenn Ferris, Sonny Fortune, Barry Guy, Charles Gayle, Teppo Hauta-Aho, Howard Johnson, Hans Koch, Joachim Kuhn, Daunik Lazro, Jeanne Lee, Thierry Madiot, Roscoe Mitchell, Joe Morris, Ivo Perelman, Enrico Rava, Paul Rogers, Louis Sclavis, Alain Silva, Archie Shepp, John Surman, Claude Tchamitchian, Mal Waldron, Christine Wodrascka… + +Ramon Lopez is an un-typical percussionist. He is a musician who has mastered a number of different musical traditions. He loves to work with artists from other disciplines, with actors, choreographers or visual artists. He is currently one of the most respected European musicians in the area of contemporary jazz or improvised music. The French government named him "Chevalier of the Order of Arts and Letters" in 2008.Needs Votehttp://www.ramonlopez.net/https://www.instagram.com/ramonlopezmusicart/https://www.youtube.com/user/alicante681961/https://open.spotify.com/playlist/0O6HsnADo1qJ1juAIsL6hM?si=-H7HLYlsTUOeuiRy5I2KqA&nd=1https://rateyourmusic.com/artist/ramon-lopezLopezLópezR. LopezRamon LopezRamónRamón LopezMarc SteckarOrchestre National De JazzDenis Colin TrioVariable Geometry OrchestraRamon Lopez QuartetRamón López Flowers TrioDJOA - Quintet Claude SommierFernandez / Guy / LópezRamón López Freedom Now SextetClaude Tchamitchian SeptetNew LousadzakJoachim Kühn - Majid Bekkas - Ramon LopezFrançois Cotinaud QuartetAurora TrioTheTurbine!Double Face (8)Blue Shroud BandRamon Lopez Misterioso TrioPhilippe Mouratoglou TrioWandering The Sound QuintetFriends Of Barry Guy + +510159Martine LatorreMartine ChemenerFrench backing vocalist. She was married with drummer [a1072850].Needs VoteM. LatorreMartineMartine LatorMartine LatordeMartine LejeuneCocktail ChicLes FléchettesLes OP'4Jungle Rock Star + +510288Gérard DaguerreCorrectA. GeronG. DaguerreGerard DaguerreMr Gérard Daguerre + +510320Vic SaywellBritish tuba player.Needs VoteVic SeywellVictor SaywellLondon Philharmonic Orchestra + +510836Addison CollinsAddison 'Junior" CollinsAmerican French horn player. +Born : April 17, 1927 in Pine Bluff, Arkansas. +Died : 1976 in Dublin, New Hampshire. + +Played with : Glenn Miller, Claude Thornhill, Charlie Parker, Gerry Mulligan, Miles Davis ("Birth of the Cool") and others. +Needs VoteA. CollinsAddison "Junior" CollinsAddison 'Junior' CollinsCpl. Addison Collins Jr,Cpl. Addison Collins Jr.J. CollinsJunior CollinsJuunior CollinsPfc. Addison Collins Jr,Pfc. Addison Collins Jr.Джуниор КоллинзMiles Davis And His OrchestraCharlie Parker And His OrchestraClaude Thornhill And His OrchestraBenny Goodman And His OrchestraGlenn Miller And The Army Air Force BandThe Miles Davis NonetMiles Davis & His Tuba Band + +511161David CleggCountertenor & Alto vocalist.Needs Votettps://www.bach-cantatas.com/Bio/Clegg-David.htmhGabrieli ConsortThe Choir Of The King's ConsortThe SixteenThe Monteverdi ChoirVoces8La Schola Cantorum + +511498Péter FüzesHungarian hornist.Needs VoteFüzes PéterLiszt Ferenc Chamber Orchestra + +511503Michael VogtGerman tuba player.Needs VoteM. VogtMichael A. VogtMichael VoigtBerliner Sinfonie OrchesterPosaunenquintett BerlinKonzerthausorchester Berlin + +511610Gerome RagniGerome Bernard RagniAmerican actor, singer and songwriter, born 11 September 1935 in Pittsburgh, Pennsylvania, USA and died 10 July 1991 in New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Gerome_RagniA. RagniC. RagniC.RagniD. RagniEagniG & RagniG RagniG RagnieG RogniG, RagniG. RachiG. RaginG. RagmiG. RagnG. RagniG. RagnyG. RegniG. RgnigG. RogniG. ラグニーG.RagniGagniGeorge RagniGerme RagniGermone RagniGeromeGerome - RagniGerome RaghiGerome RagiGerome RagnGerome RagniandGerome RagnisGerome RagnyGerome RangiGerome RanglGerome RogriGerome agniGérome RagniJ. RagneyJ. RagniJ. RagninJ. RogniJerome RagaiJerome RaginJerome RagnJerome RagniJérome RagniJérôme RagniMagniPagniR. GeromeR. JeromeR. RagniRagiRaginRaginiRagnRagneRagneyRagniRagni GeromeRagni-G.RagnigaltRagnyRaguiRaqniRegniRigniRogneRognySerome RagniРаниג'רום רגנירגני"Hair" Original Broadway Cast"Hair" Original Off-Broadway Cast + +511613James RadoJames Alexander RadomskiAmerican actor, writer and composer, born 23 January 1932 in Venice Beach, California, USA - died 21 June 2022. Rado was inducted into the Songwriters Hall of Fame in 2009.Needs Votehttp://hairthemusical.com/https://en.wikipedia.org/wiki/James_Radohttps://www.songhall.org/profile/james_radohttps://www.imdb.com/name/nm0705735/https://www.ibdb.com/broadway-cast-staff/james-rado-6628G. RadoGaddJ RadoJ. RadoJ. DadoJ. I. RadóJ. RaboJ. RadaJ. RaddJ. RadioJ. RadoJ. Rado-G.J. ラドーJ./RadoJ.RaboJ.RadaJ.RadoJamesJames MadoJames RadioJames RadosJames RadóJames RedoJames RodoJim RadoR. JamesRaRadiRadioRadoRado JamesRagoRaoRedoradoДж. РадоРадоג'יימס ראדוראדו"Hair" Original Broadway Cast + +511812Les LovittTrumpet playerNeeds VoteLee LovittLes LovettLester LovettLester LovittWoody Herman And His OrchestraThe Heart Attack HornsThe Woody Herman Big BandMark Masters' Jazz Composers OrchestraThe Bob Belden EnsembleMark Masters' Jazz Orchestra1:00 O'Clock Lab Band + +511884Diethelm JonasGerman oboistNeeds VoteD. JonasBachcollegium StuttgartFailoni Chamber Orchestra, BudapestBläserensemble Sabine MeyerAulos-Bläserquintett + +511891Monika Hölszky-WiedemannGerman violinist, born 30th June 1953 in Bucharest. Twin-sister of [a986914].Needs VoteMonica Hölszky-WiedemannRadio-Sinfonieorchester StuttgartAbert-Quartett Stuttgart + +511997Grand Orchestre De L'OlympiaFrench famous orchestra of Olympia Hall Paris (known as [l288520])Correcthttps://en.wikipedia.org/wiki/Olympia_(Paris)https://www.olympiahall.com/Gilbert Sigrist's OrchestraGr. Orch. Des OlympiaGran Orquesta De L'OlympiaGran Orquesta de L'OlympiaGrand Orchestre De L'Olympia, LeGroßes Olympia-OrchesterL'Orchestra DelI'OlympiaL'Orchestre De L'OlympiaLa Gran Orquestra Del OlympiaLe Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaLe Grand Orchestre De L’olympiaLe Grand Orchestre de l'OlympiaL’orchestre De L'OlympiaOlympia Grand OrchestraOlympia OrchestraOlympia-OrchesterOrchestra Teatrului Olympia ParisOrchestra „Olympia” – ParisOrchestre De L'OlympiaOrquesta del OlympiaThe Grand Orchestra Of The OlympiaThe Orch.Velký Orchestr Divadla OlympicОркестр "Театра Олимпия"Оркестър на Гилбърт СигристDaniel JaninFrançois GuinAlex RenardIvan JullienMarcel HraskoJo HraskoMarc SteckarGeorges GrenuJean GuiraudArmand CavallaroBruno CoquatrixBob QuibelDaniel GiaccardoGeorges GayRené LégerRaymond FonsèqueEmile VilainGeorges BessièreGabriel VilainJean-Charles GuiraudRené LegerFrancis Le MaguerMichel PaquinetGaby VilainDenis Fournier (3) + +512414Marcel Thielemansb.: May 13, 1912 (Schaerbeek, Belgium) +d.: May 15, 2003 (Hilversum, the Netherlands) + +Belgian singer and trombonist. +He joined The Ramblers in 1933 (at that time, directed by [a=Theo Uden Masman]), and stayed playing with the band until its disbandment in 1964. +In 1974, he joined again The Ramblers (at that time, direct by [a=Jack Bulterman]). After Bulterman's death in 1978, he directed the band until he decided to leave it, in 1998.Needs Votehttps://www.nldiscografie.nl/marcel-thielemansM. ThielemanM. ThielemansMarcel TheilmanMarcel ThielemanMarcel Thielemans (Geurt van de Tröter)Marcel Thielemans En Zijn TromboneMarcel ThielmansMarcel ThilemansMarcel TielemansThielemansGeurt van de TröterThe RamblersRadioliansDe BlauwbaardjesThe Flying Dutchmen (3)The SongsingersCantilene (3) + +513526Lynda RichardsonBritish soprano. Married to [a=Simon Bainbridge].Needs Votehttps://www.imdb.com/name/nm1605183/Linda RichardsonThe Ambrosian SingersThe Young Musicians London + +513550Andrea MorrisClassical violinist.Needs VoteThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicGabrieli PlayersThe King's ConsortDunedin ConsortRetrospect Ensemble + +513764Fats HeardEugene HeardAmerican jazz drummer, born October 10, 1923 in Cleveland, OH, USA, died December 5, 1987 in Cleveland, OH, USA +Needs Vote"Fats Heard""Fats" Heard'Fats' HeardEugene "Fats" HeardEugene "Fats'" HeardEugene 'Fats' HeardEugene HeardFats HerdJ.C. "Fats" Heard« Fats » Heard«Fats» Heard„Fats“ HeardErroll Garner TrioThe Erroll Garner QuartetBill Mayson Quartette + +513873Judith HerbertClassical cellist.Needs VoteBBC Symphony OrchestraCity Of London SinfoniaEnglish Chamber OrchestraThe Cannizarro StringsThe Academy Of St. Martin-in-the-FieldsAmbache Chamber Ensemble + +513874Naomi ButterworthBritish classical cellist.Needs VoteThe Academy Of St. Martin-in-the-FieldsAmbache Chamber EnsembleMichaelangelo Chamber Orchestra + +513876Giles FrancisBritish classical violinist.Needs VoteGilesNieuw Sinfonietta AmsterdamDante QuartetRubens Quartet + +514348Jobst EberhardtSound engineer, mainly for Deutsche Grammophon.CorrectJ. EberhardtJ. EnerhardtJobst Eberhardヨープスト•エバーハルト + +514349Wolf-Dieter KarwatkyGerman recording engineer (Tonmeister) for classical recordings.CorrectWolf Dieter KarwatkyWolf-Dieter KarwartkyWolf-Dieter KarwatkiWolf-Dieter KarwatkzWolf-Dieter Karwatsky + +514353Gernot WesthäuserGernot R. WesthäuserEngineer.Needs Votehttps://myspace.com/115518812Gerd WesthäuserGernot R. WesthäuserGernot West-HäuserGernot WesthaeuserGernot Westhauserゲルノート・R・ヴェストホイザー + +514465Solistes Des Choeurs De l'ORTFNeeds VoteChoeur Lyrique De L'O.R.T.F.Les Solistes Des Choeurs De l'ORTFLes Solistes Des Chœur De l'ORTFLes Solistes Des Chœurs De L'O.R.T.F.Les Solistes Des Chœurs de l"O.R.T.F.Les Soloistes Des Choeurs de L'ORTFO.R.T.F. Chamber OrchestraORTF Chamber OrchestraSolistes De Chœur De L'ORTFSolistes De L'O.R.T.F.Solistes Des Choeurs De L'ORTFSolistes Des Chœurs De L'ORTFSolistes Des Chœurs De l'ORTFSolistes de L'Orchestre National de la Radiodiffusion FrançaiseSolistes des Choeurs de I'O.R.T.F.Solistes des Chœurs de l’ORTFSoloists Of The Chorus Of The O.R.T.F.Soloists Of The French Radio And Television ChoirsChœur de Radio France + +514528Clay JordanCorrectClayClay (9)Pacific UV + +514678Dick RuedebuschJazz trumpeter From Wisconsin, USA.Needs VoteDick ReudebuschDick RuedenbuschMr. Trumpet!!! Dick RuedebuschRuedebuschWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe Night Pastor and Seven Friends + +514869Marshall CramTrombonist.Needs VoteM.CramMarshal CramMarshall CrammHarry James And His OrchestraShorty Rogers And His GiantsHoward Rumsey's Lighthouse All-StarsThe Buddy Bregman OrchestraHot Rod Rumble OrchestraCarl Ravazza And His Orchestra + +515035Scott KuneyGuitarist and banjo player.Needs Votehttps://www.ibdb.com/broadway-cast-staff/scott-kuney-87485Orchestra Of St. Luke'sMusic AmiciBroadway For Orlando Orchestra + +515203Julia ThorntonJulia Thornton, attended the junior department of The Royal College Of Music from 1983 where she studied harp, piano & percussion. In 1990 she was awarded a scholarship to The Royal College Of Music and has subsequently pursued a busy career embracing orchestral ensemble and solo work which led to a number of radio appearances she has gained numerous awards for her achievements. +Julia's debut album 'Harpistry' is released on 29th September 2003. +Needs VoteJ. ThornonJulia Thornton (Harp)ジュリア・ソーントンAndy Mackay & The Metaphors + +515224Lewis JonesAmerican sound engineerCorrect + +515239Michael Thompson (2)British horn player, teacher and conductor. Born 4 January 1954 in London, England. +After studying at the [l527847] he was appointed Principal Horn with the [a=BBC Scottish Symphony Orchestra], aged 18. In 1975, he became Principal Horn in the [a=New Philharmonia Orchestra], a post he held for ten years before leaving to concentrate on his solo and chamber music career. Since 2003 he has been Principal Conductor of the [b]City of Rochester Symphony Orchestra[/b]. Principal Horn in the [a=London Sinfonietta] and conductor of [a=The Ulster Youth Orchestra]. His work with Sir [a=Paul McCartney] led McCartney to compose "Stately Horn", which the [a=Michael Thompson Horn Quartet] premiered in the [l251627] and [l280434]. Founder of [a=Michael Thompson Wind Quintet], [a=Michael Thompson Horn Quartet] and [a=Michael Thompson Wind Ensemble]. Fellow and Aubrey Brain Professor of Horn at the Royal Academy of Music.Needs Votehttp://www.michaelthompson.uk.com/https://www.youtube.com/channel/UCuqSiiwa8CqYE9wI5iZ1QsAhttps://id.loc.gov/authorities/names/no97012940.htmlhttps://en.wikipedia.org/wiki/Michael_Thompson_(horn_player)https://londonsinfonietta.org.uk/players/michael-thompsonhttps://nyphil.org/about-us/artists/michael-thompsonhttps://www.hornsociety.org/ihs-people/punto-recipients/46-people/punto-recipients/842-michael-thompsonhttps://www.naxos.com/person/Michael_Thompson_751/751.htmhttps://www.irishtimes.com/culture/whirlwind-of-musical-talents-1.1091140https://oldox.se/michael-thompson/M ThompsonMicahel ThompsonMichael ThomsonMicheal ThompsonMike ThmpsonMike ThompsonThe London Session OrchestraRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraNew Philharmonia OrchestraBBC Scottish Symphony OrchestraThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Festival OrchestraMichael Thompson Wind QuartetMichael Thompson Wind QuintetThe King's ConsortMichael Laird Brass EnsembleEquale BrassThe Albion EnsembleMichael Thompson Wind EnsembleMichael Thompson Horn Quartet"Oliver!" 1994 London Palladium Cast, OrchestraThe Transatlantic Horn Quartet + +515264Ronnie SelfRonald Keith SelfAmerican rockabilly musician and songwriter, born July 5, 1938 in Tin Town, Missouri and died August 28, 1981 in Springfield, Missouri.Needs Votehttp://www.rockabillyhall.com/RonnieSelf1.htmlhttp://www.myspace.com/ronnie_selfhttp://en.wikipedia.org/wiki/Ronnie_Selfhttps://adp.library.ucsb.edu/names/343024R SelfR. SeefR. SeffR. SelfR.SelfRon SelfRonald Keith SelfRonald SelfRonie SelfRonnie SeitRonnie Self "Petrified"Ronnie SelsRonnie SeltRonny SelfRownie SelfSelfSelf, RonnieSelsSels RonnieСельфRonnie Self & His Rock-A-Billy Rebels + +515766Alfred HauseGerman violinist, conductor (Kapellmeister) and band leader (* 08 August 1920 in Ibbenbüren, German Empire; † 14 January 2005 in Hamburg, Germany). +Conductor of the Tanz- und Unterhaltungsorchester of radio broadcaster NWDR. Known as the ‘German king of tango’. With his orchestra, he performed in radio and TV broadcasts and recorded a string of albums, marketed in Germany and abroad. Did concert tours in Japan. In 1965, he conducted West Germany's Eurovision Song Contest entry 'Paradies, wo bist Du?', a composition by [a=Hans Blum].Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/06/alfred-hause.htmlhttps://de.wikipedia.org/wiki/Alfred_HauseA. HauseA. HauserAlfred Hause U.S. OrchesterAlfred Hause Y Su OrquestaAlfred HauserC. HauseHausHauseHause, Alfredアルフレッド・ハウゼOrchester Alfred HauseAlfred Hause Mit Seinen Tanz-StreichsolistenDas Grosse Promenaden-Orchester Alfred HauseAlfred Hause Und Das Tanzorchester Des NDRAlfred Hause And His Tango Orchestra + +515770Norman KeenanNorman Dewey KeenanAmerican jazz bassist, born 23 November 1916 in Union, South Carolina, died 12 February 1980, New York, USA.Needs Votehttps://adp.library.ucsb.edu/names/324892A3, B1KeenanN. KeenanNorm KeenanNorman "Dewey" KeenanNorman KeenNorman KennanNorman KenonNorman Wilson KeenanCount Basie OrchestraCootie Williams And His OrchestraCootie Williams Sextet + +515878Reginald ConnellyReginald John ConnellyBritish songwriter and music publisher, born 22 October 1895, died 23 September 1963. +Mainly active during the 1920s and 1930s. +Connelly formed a publishing and songwriting team with fellow Brit [a=James Campbell] (aka Jimmy Campbell), the duo known as [b]Irving King[/b]. They also collaborated with other songwriters. + +Among their best known compositions are [i]If I Had You[/i] (1928), [i]Goodnight, Sweetheart[/i] (1931), [i]Try A Little Tenderness[/i] (1933), and [I]Midnight, The Stars And You.[/I]Needs Votehttp://en.wikipedia.org/wiki/Reginald_Connellyhttps://adp.library.ucsb.edu/names/112844CannellyColonComellyCommellyComwellyConelliConellyConleyConnallyConnalyConneleyConnellConnelleyConnellyConnelyConnertyConnollyConoleyConollyCopnellyCoullyCunnelH. ConnellyJimmy ConnellyPeg ConnellyR ConnellyR ConellyR ConnellyR, ConnellyR. ConellyR. ConnallyR. ConnellyR. ConnelyR. ConnollyR. CornellyR.ConnellyR.ConnelyRay ConnellyRed ConnellyReg ConellyReg ConnellyReg ConnelyReg ConnollyReg. ConnellyReginaldReginald John ConnellyRegineld ConnellyReginold ConnellyVonnellyКонеллиКоннелиР. КоннелиIrving KingWallace HerbertLeo Herbert + +515881James CampbellJames Alexander Campbell Tyrie[b]Do NOT confuse with the trumpeter [a=Jimmy Campbell (6)][/b] + +British songwriter and music publisher, known as Jimmy Campbell. Born on April 5, 1903 in Gosforth, Northumberland, England – died August 19, 1967 in Hillingdon, London, England. + +Mainly active in the 1920s and 1930s, Campbell formed a songwriting and publishing team with fellow Brit [a=Reginald Connelly] ([i]Campbell Connelly[/i]). They also collaborated with other songwriters. Among their best known compositions are [i]If I Had You[/i] (1928), [i]Goodnight Sweetheart[/i] (1931) and [i]Try A Little Tenderness[/i] (1933). They also wrote [i]Midnight Stars And You[/i] and [i]When The Organ Played At Twilight[/i]. The duo of Connelly and Campbell sometimes used the pseudonym [i]Irving King[/i]. + +Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Campbell_and_Reg_Connellyhttps://adp.library.ucsb.edu/names/113657CCambellCambpellCamobellCampbellCampbell-CampbellCampdellCampellChampbellChapbellCsmpbellD. CampbellF. CampbellJ CampbellJ. CambellJ. CampbelJ. CampbellJ. CampellJ. CompbellJ.CampbellJ.L. CampbellJames Tyrie CampbellJim CambelJimmi CampbellJimmy CambellJimmy CampbellJimmy CampellcampbellКемфелКэмпбелEnoch CampbellIrving KingWallace HerbertLeo Herbert + +516110Leonard HartmanJazz saxophone, Clarinet, and other woodwinds from the 1940-1950s Big Band era, having performed with [a313097] and [a299946] orchestras, and performed in various [a52833]'s orchestras. In 1966, he performed on two tracks of the [m17217] sessions.Needs VoteLen HartmanLennie HartmanLenny HartmanLeonard "Lennie" HartmanWingy Manone & His OrchestraPaul Whiteman And His OrchestraTeddy Powell And His OrchestraPaul Weston And His OrchestraHerschel Burke Gilbert Orchestra + +516629Marcia DicksteinMarcia F. DicksteinHarpist, and co-founder of [a=The Debussy Trio], based in California. She has performed on more than 400 movie and television show soundtracks. She is also on the faculty at Westmont College in Santa Barbara, and at Cal Poly San Luis Obispo, and performs with the Long Beach and San Luis Obispo Symphonies.Needs Votehttps://debussytrio.com/wp2/biographies/marcia-dickstein-2/https://www.longbeachsymphony.org/musicians/marcia-dickstein/https://www.imdb.com/name/nm1492525/Dickstein, MarciaMarcia DicksonMarcia Dickstein VoglerMarcia F. DicksteinMaria DicksteinThe London Session OrchestraLondon Symphony OrchestraPatrick Williams And His OrchestraThe Hollywood Studio SymphonySan Luis Obispo SymphonyThe Debussy TrioLos Angeles Master Chorale OrchestraLong Beach Symphony Orchestra + +517042Albert LortzingGustav Albert LortzingGerman composer, actor, singer, librettist and conductor, born 23 October 1801 in Berlin, Germany and died 21 January 1851 in Berlin, Germany.Needs Votehttp://en.wikipedia.org/wiki/Albert_Lortzinghttps://adp.library.ucsb.edu/names/104277A. LorcingA. LortzingA. LorzingAlb. LortzingAlbert LorzingAlbertsG. A LortzingG. A. LortzingG.A. LortzingGustav A. LortzingGustav Albert LortzingLirtzingLortcingLortzigLortzingLorzingLotzingLörzingЛортцингЛорцинг + +517153Karl RichterKarl RichterGerman conductor, organist, and harpsichordist, born 15 October 1926 in Plauen, Germany and died 15 February 1981 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Karl_Richter_(conductor)https://www.bach-cantatas.com/Bio/Richter-Karl.htmhttps://www.imdb.com/name/nm1675414/Doctor Karl RichterDr. Karl RichterK. RichterK.RichterKari RichterKarl RicherRichterК. РихтерКарл Рихтерカール・リヒター李赫特Dresdner KreuzchorBamberger SymphonikerKarl Richter Und Sein Kammerorchester + +517156David MunrowDavid John MunrowBritish musician and early music historian (August 12, 1942 – May 15, 1976). He co-founded [a650601] with [a779781]. +He played various wind instruments, most notably the bassoon, recorder and wind instruments from the late Renaissance and early Baroque period. + +See [l2176567] for a list of releases on which his copyright appears, mainly for liner notes.Needs Votehttp://www.davidmunrow.org/http://en.wikipedia.org/wiki/David_Munrowhttp://www.medieval.org/emfaq/performers/munrow.htmlD. MunrowD.MonroeDavid MonroeDavid MonrowDavid MunroeEarly Music Consort Of LondonMunrowデイビッド・マンローデイヴィッド・マンロウLondon Philharmonic OrchestraThe RoundtableEnglish Chamber OrchestraMenuhin Festival OrchestraThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsThe Virtuosi Of EnglandMusica ReservataDavid Munrow Recorder Ensemble + +517158Wolfgang SawallischGerman conductor and pianist, born 26 August 1923 in Munich, Germany and died 22 February 2013 in Grassau, Germany.Needs Votehttps://www.sawallisch-stiftung.de/https://en.wikipedia.org/wiki/Wolfgang_Sawallischhttps://www.britannica.com/biography/Wolfgang-Sawallischhttps://www.bach-cantatas.com/Bio/Sawallisch-Wolfgang.htmSawallischVolfgang SavališW. SallawischW. SawallischWolfgang SaivalishWolfgang SawallishWolfgang SawillischВольфганг ЗаваллишВольфганг Саваллишヴォルフガンク・サヴァリッシュヴォルフガング・サヴァリッシュ薩瓦利許 + +517165Otto KlempererOtto Nossan KlempererGerman conductor and composer, born 14 May 1885 in Breslau, Lower Silesia, German Empire (today Wrocław, Poland) and died 6 July 1973 in Zürich, Switzerland. +Klemperer went on to hold a number of positions, in Hamburg (1910–1912); in Barmen (1912–1913); the Strasbourg Opera (1914–1917); the Cologne Opera (1917–1924); and the Wiesbaden Opera House (1924–1927). From 1927 to 1931, he was conductor at the Kroll Opera in Berlin. In 1935, he migrated to the United States, residing in California after being appointed music director of the [a=Los Angeles Philharmonic Orchestra], a position he held until 1939. After World War II, he returned to Europe to work at the [url=https://www.discogs.com/artist/749007-Hungarian-State-Opera-Orchestra]Budapest Opera[/url] (1947–1950). In 1954, [a=Walter Legge], engaged Klemperer to conduct the [a=Philharmonia Orchestra] in performances of music by [url=https://www.discogs.com/artist/95544-Ludwig-van-Beethoven]Beethoven[/url], [url=https://www.discogs.com/artist/304975-Johannes-Brahms]Brahms[/url] and much more repertoire for [l=EMI] Records. Klemperer became the first principal conductor of the Philharmonia Orchestra in 1959. His last concert was on Sep 26, 1971, and his final recording session two days later (Mozart's Serenade No. 11 in E flat, K. 375). +Father of [a=Werner Klemperer] and [a5554595], cousin of [a=Viktor Klemperer].Needs Votehttps://www.ottoklemperer.nl/https://en.wikipedia.org/wiki/Otto_Klempererhttps://www.britannica.com/biography/Otto-Klempererhttps://www.bach-cantatas.com/Bio/Klemperer-Otto.htmhttps://mahlerfoundation.org/mahler/contemporaries/otto-klemperer/https://israeled.org/conductor-otto-klemperer-dies/https://holocaustmusic.ort.org/politics-and-propaganda/third-reich/klemperer-otto0/ConductorDr. Otto KlempererGeneralmusikdirektor Otto KlempererKlempererO. KlempererО. КлемперерОтто Клемперерオット・クレンペラーオットー・クレンペラーPhilharmonia OrchestraNew Philharmonia OrchestraHungarian State Opera OrchestraLos Angeles Philharmonic Orchestra + +517167Anthony HolborneAnthony HolborneComposer of English consort music during the reign of Queen Elizabeth I. +Born ca. 1545, died November 29, 1602. + +Holborne entered Pembroke College, Cambridge in 1562. He was admitted to the Inner Temple Court in 1565. Holborne married Elisabeth Marten on 14 June 1584. On the title page of both his books he claims to be in the service of Queen Elizabeth. He died of a ‘cold’ in November 1602. + +He was held in the highest regard as a composer by contemporaries. John Dowland dedicated the very first song I saw my lady weepe in his Second Booke to Holborne. His patron was the Countess of Pembroke, Mary Sidney. In the 1590s he entered the service of Sir Robert Cecil, the 1st Earl of Salisbury. + +His brother was William Holborne. Six of William's madrigals were included in the Cittarn Schoole. + +His first known book was the Cittarn Schoole of 1597, consisting of compositions for the cittern. The preface indicates the pieces were composed over a number of years. He writes that the musical compositions are "untimely fruits of my youth, begotten in the cradle and infancy of my slender skill." + +The Pavans, Galliards, Almains and other short Aeirs, both grave and light, in five parts, for Viols, Violins, recorders or other Musicall Winde Instruments was published in 1599 and consisted of 65 of his own compositions. It is the largest surviving collection of its kind. Most are of the pavan-galliard combination. Other pieces are of the allemande style. The rest are unclassified. + +"The Fairie Round" from this collection was included on the Voyager Golden Record, copies of which were sent into space aboard the Voyager 1 and Voyager 2 space probes in 1977, as a representation of human culture and achievement to any who might find it.Needs Votehttps://en.wikipedia.org/wiki/Anthony_Holbornehttp://www.hoasm.org/IVM/Holborne.htmlA HolbornA. HolbornA. HolborneAnthonie HolborneAnthony HolbornAntonie HolborneAntony HolborneHolbornHolborn A.HolborneHolborne, AnthonyHolbourneЭ. Холборн + +517292Tony BauerTony Rickard BauerSwedish viola player, born on April 8, 1967. +Former member of [a2770118].Needs VoteTony BakerStockholm Session StringsSveriges Radios SymfoniorkesterSnykoForge PlayersKungliga FilharmonikernaStenhammar Quartet + +517297Saara Nisonen-ÖmanSaara Leena Nisonen-ÖmanSwedish classical violinist, born on 2 August 1971.Needs VoteSaara Nisonen ÖmanSara Nisonen ÖmanSveriges Radios Symfoniorkester + +517349ActiManuel TessarolloHard Dance/Electro DJ from Italy.Needs VoteActOverdriveRadical CoreManuel EsT-78DJ ActivatorKnockoutDJ Stefano BonatoDJ MantesSpy-KoreOutlaw (5)Lo-Fi (3)J-Maican RaversDJ ActProzactManuel TessarolloDJ Ki?FeitaSubkillaT78Frank Snack + +517370Martin BylundSwedish violinist, born 1946, died 3 December 2009. +Husband of [a=Irene Bylund] and father of [a=Mattias Bylund].Needs Votehttps://open.spotify.com/artist/7fExkT1OGsz5LPW6IOVDsuhttps://music.apple.com/us/artist/martin-bylund/160401312Mattias BylundMratin BylundSveriges Radios SymfoniorkesterStockholmskvartettenGöteborgsOperans OrkesterDisco MackanSaulescokvartetten + +517411Lee ShapiroLee James ShapiroKeyboard player, musical director, arranger & songwriter with Frankie Valli & The Four Seasons and The Hit Men. Not to be confused with RCA in-house producer [a=Lee Schapiro].Needs Votehttp://www.thehitmenlive.com/L. ShapiroLeeShapiroThe Four SeasonsThe Hit Men (8) + +517443Helen ParkerVocalist + +For the Hawaiian songwriter, please use [a984393]Needs VoteHelen PakkerSongster Helen Parker (Enfield)The London ChoirThe Scholars Baroque EnsembleMetro VoicesNew London ConsortTenebrae (10)Retrospect Ensemble + +517444Julia DoyleBritish soprano vocalist born in Lancaster, EnglandNeeds Votehttp://juliadoylesoprano.com/https://www.bach-cantatas.com/Bio/Doyle-Julia.htmDoyleThe Cambridge SingersThe SixteenI FagioliniPolyphonyEx Cathedra Chamber ChoirTenebrae (10)Chor & Orchester Der J.S. Bach Stiftung St. GallenConsortium (8) + +517623KlubfillerSteven BrettUK hard dance music producer from the Wirral. Runs [l=Klubbed Up].Needs Votehttps://www.facebook.com/klubfillerukhttps://soundcloud.com/klubfillermusichttps://myspace.com/klubfillerukhttps://twitter.com/klubfillerhttps://www.youtube.com/user/klubfillerhttps://www.instagram.com/klubfiller/KFKlub FillerKlubbfillerStevie B (2)The InsiderSteven BrettThe Beast! + +517900Nicola HollandBritish classical oboist.Needs Votehttps://www.mattersmusical.com/artists/nicola-and-jonathan-oboe-and-piano-duo/BBC Symphony Orchestra + +517938Bridget FitzgeraldViola player, freelance soloist, chamber and orchestral musician and teacher based in Brooklyn. She performs on viola and synthesizers with her bands Discovery and Stereo Off.Needs Votehttps://bridgetink.tumblr.com/ACME (American Contemporary Music Ensemble)Discovery (11)Stereo Off + +517941Clarice JensenComposer and cellist based in New York.Needs Votehttps://www.claricejensen.comhttps://claricejensen.bandcamp.comClarence J.Clarice JClarice JensonClaris JensenJensenACME (American Contemporary Music Ensemble)Acme String QuartetWordless Music OrchestraWordless Music QuartetEcho String Quartet (2) + +517942Miranda CucksonViolinist and violist, Miranda Cuckson studied at The Juilliard School, where she received her BM, MM and DMA degrees. +A United States citizen, she was born in Sydney, Australia and is of Austrian/Jewish, English and Taiwanese descent.Needs Votehttp://www.mirandacuckson.com/ACME (American Contemporary Music Ensemble)counter)induction + +517947ACME (American Contemporary Music Ensemble)Needs Votehttps://www.acmemusic.org/https://twitter.com/ACMEnewmusichttps://instagram.com/acmenewmusic/https://www.facebook.com/americancontemporarymusicensembleACMEAmerican Contemporary Music EnsembleAmerican Contemporary Music Ensemble ACME)The American Contemporary Music EnsembleBridget FitzgeraldClarice JensenMiranda CucksonErik Carlson (2)Paul WianckoChris Thompson (17) + +517958Kurt FeltzKurt FeltzGerman poet and songwriter, born 14 April 1910 in Krefeld, Germany, died 2 August 1982 in Pollença, Majorca, Spain. He wrote more than 3500 song-lyrics and worked as a producer from 1951 to 1982. His production company "Musikproduktion Feltz" had the short cut MPF. Additionally, he also acted as screenwriter. +Kurt Feltz was an ambiguous personality during his most popular period. He was known to play his own songs on the radio channels, he was musical director of. +He was sacked for this at NWDR in 1949, but soon made similar things on self-founded channels (MPF-based). He also started to use aliases in order to gain more money for airplay of his own songs, as in that time, the number of airplays per week per songwriter was limited.Needs Votehttp://de.wikipedia.org/wiki/Kurt_Feltzhttps://adp.library.ucsb.edu/names/104291C. FeltzC. SeltzCurt FeltzCurt FelzF. FeltzF.FeltzFaltzFeeltzFeitzFeldtFelitzFelixFelizFellzFelsFeltsFelttFeltzFeltz K.Feltz KurtFeltz, KurtFeltztFelzFelztFetzFletzFreedFèltzGeltzH. FeltzH. PeltzHeinzliHoff-FeltzK. FeitzK. FeldK. FeldzK. FelizK. FellzK. FelpzK. FelsK. FeltyK. FeltzK. FelzK. FoltzK. PeltzK. SetzK.-FeltzK.FeldzK.FeltzK.H. FelsKeltzKurtKurt - FeltzKurt / VeipsKurt FeitzKurt FeizKurt FeldzKurt FelixKurt FeltsKurt FelzKurt FletzKurt GeltzKurt SeletzKurt SeltzKurt VeipsKurt VeipzKurt-FeltzKurth FeltzKurtz FeltzKurz FeltzLeltzPeltzR.FeltzSeltzVeipsК. ФелтцК. ФельцФельцJonny BartelsJonny HalveyEdi HartgesWalter SteinAndré HoffCole DrivePeter KönigBernd HeimHarry HennerichHanno PlaschkyFerry TaleKarl KimbelJohn Duffy (5)Alexander KühnDon JyssoLeopold SchönauerMeinhold WinterhoffJosef HahnenPaul Clemens (2)Axel VillingerCharlie HauerJoachim JansonPiet HaseKurt Feltz Fantastic Sound + +518450Victor SprolesAmerican jazz bassist, born November 18, 1927 in Chicago. Died May 13, 2005. Worked in the early Sun Ra Arkestra, later on joined Art Blakey's Jazz Messengers.Needs Votehttps://en.wikipedia.org/wiki/Victor_SprolesVic SprolesVictor Sproles Jr.Art Blakey & The Jazz MessengersThe Johnny Griffin OrchestraRed Rodney QuintetClark Terry And His Jolly GiantsThe Sun Ra ArkestraClark Terry Big BandIra Sullivan QuintetVernel Fournier TrioWardell Gray and his Quintette + +518647Joe SoldoJoseph William SoldoAmerican saxophone and flute player, orchestra contractor and supervisor. Born in Newark, NJ on July 21, 1925; died August 15, 2025.Needs Votehttps://adp.library.ucsb.edu/names/358211https://www.linkedin.com/in/joe-soldo-02296431Joe SoldJoe SoldeJohn William SoldoJoseph SoldoJoseph SolodNeil Norman And His Cosmic OrchestraWoody Herman And His OrchestraElliot Lawrence And His OrchestraWoody Herman And The Fourth HerdThe Tom Talbert Jazz Orchestra + +518878Michael RodriguezUS trumpeter (* 14 July 1979 in Queens, New York).Needs Votehttps://www.whirlwindrecordings.com/michael-rodriguez-trumpet/http://rodbrosmusic.com/mike-rodriguez.htmlM. RodriguezMicheal RodoriguezMike RodriguezMike RodríguezMke RodriguezThe George Gruntz Concert Jazz BandGerald Wilson OrchestraAfro-Latin Jazz OrchestraManhattan Jazz QuintetSFJazz CollectiveMaria Schneider OrchestraLiberation Music OrchestraKenny Barron QuintetPete Zimmer QuintetTony Kadleck Big BandThe H2 Big BandCatharsis (25)Dafnis Prieto Big BandSamuel Torres GroupChico & Rita New York BandThe Spanish Heart BandDavid Bixler BixtetGeneration Gap Jazz OrchestraBrassologyThe Rodriguez Brothers (2) + +519528Benny WeeksJazz guitaristNeeds VoteBen WeeksBennie WeeksHerbie Mann QuartetAl Haig Quartet + +519586Oliver JacksonOliver JacksonJazz drummer, born April 28, 1933 in Detroit, Michigan, died May 29, 1994 in New York City, USA.Needs Votehttps://en.wikipedia.org/wiki/Oliver_Jacksonhttps://www.nytimes.com/1994/06/03/obituaries/oliver-jackson-61-jazz-drummer-noted-for-an-elegant-style.htmlhttps://www.independent.co.uk/news/people/obituary-oliver-jackson-1420135.htmlhttps://adp.library.ucsb.edu/names/322977JacksonO. JacksonO. Jackson JrOliverOliver Jackson JrOliver Jackson Jr.Oliver Jackson, JrOliver Jackson, Jr.Oliver Jackson, Jun.Olivier JacksonWoody Herman And His OrchestraEarl Hines And His OrchestraThe Morris Nanton TrioBuck Clayton With His All-StarsThe Yusef Lateef QuintetThe Billy Mitchell QuintetThe Earl Hines TrioTeddy Wilson And His All StarsThe Oliver Jackson OrchestraThe Charlie Shavers QuartetEarl Hines And His QuartetRay Alexander SextetAlex Kallao TrioThe Vic Dickenson QuintetThe Kenny Burrell QuartetBilly Strayhorn's SeptetAaron Bell And His OrchestraThe Mainstream SextetWoody Herman And The Thundering HerdHazel Scott TrioBuster Bailey QuartetBooty Wood And His AllstarsJoe Newman QuintetHarold Ashby QuartetThe Buddy Tate All StarsKing Curtis QuintetOliver Jackson TrioAl Hall QuartetVic Dickenson QuartetThe Newport Jazz Festival All-StarsThe JPJ QuartetWill Davis TrioHarry Allen QuintetCharlie Shavers OctetHarry Allen QuartetJohnny Hodges SeptetOliver Jackson Quintet + +519728Pierre GroscolasPierre Robert GroscolasFrench singer born on October 29, 1946 in Algeria.Needs Votehttps://fr.wikipedia.org/wiki/Pierre_GroscolasCroscolasGorscolasGroscolasGrosculasP GroscolasP. CroscolasP. GorscolasP. GrocolasP. GroscolasP.GroscolasP.R. GroscolasPier GroscolaPierre GrocolasPierre GroscolaPierre GrosgolasPierre Robert Groscolasピエール・グロコラPeter WylerLe Cœur (2) + +520323Paul MeddClassical violinist. + +Performer for the [a627128] since 1996. +CorrectRoyal Scottish National Orchestra + +520617Gary WatersGary WatersUK Hard Trance / Hardstyle DJ & producer. +Half of duo Cally & Juice alongside [a=Cally (3)] aka [a=Ian Hollyman].Needs VoteG. WatersDJ Juice (6)GSICally & JuiceJac (2) + +520618Ian HollymanIan HollymanHardstyle DJ & producer from the United Kingdom. +Also half of Hard Trance / Hardstyle duo Cally & Juice alongside "Juice" aka [a=Gary Waters]. +Co-founded digital labels [l=Ourstyle Recordings] (2006-2015) and [l=HDUK] (2020-).Needs Votehttp://www.facebook.com/ian.hollyman.96http://www.facebook.com/groups/2231857326/user/100005062865433I. HollymanIan 'Cally' HollymanCally (3)RapturaGSICally & JuiceJac (2) + +520992Alex AlstoneSiegfried Alex SteinJewish French songwriter, arranger and conductor. +Born December 30, 1903 in Hamburg, Germany - died July 3, 1982. +He lived and worked in France. In 1952-1957 he also toured in the United States. +Throughout his career, he collaborated with Tino Rossi, Maurice Chevalier, Tommy Dorsey, Joe Reisman, Charles Aznavour, Dean Martin, Perry Como. +He is also known under the pseudonym "Gaston Lecoque".Needs Votehttps://adp.library.ucsb.edu/names/352732A AlstoneA. AhlstoneA. Alex AlstoneA. AlstonA. AlstoneA. StoneA.AlstoneAistoneAl StoneAl. AlstoneAl. StoneAlastoneAlec AlstoneAlex AllstoneAlex AlstoncAlex Alstone RogerAlex StoneAlexandre Alstone Y Su RitmoAllstoneAlstomAlstonAlstoncAlstoneAlstone A.Alstone AlexAlstone, AlexAlstongAstoneD. AlstoneD’AlstoneStoned'AlstoneАлстонАльстонЭлстоунアルストーンSiegfried SteinGaston Lecoque + +520996Agustín SerranoAgustin Serrano MataSpanish piano player and arranger (b. 1939).Needs VoteA. SerranoAgustin SerranoAgustin Serrano Y OrquestaА. СерраноLa Banda SalsaOrquesta Sinfónica de RTVE + +521166Petra ČermákováClassical hornistNeeds VotePetr ČermákováThe Czech Philharmonic Orchestra + +521242Vasko VassilevBulgarian violinist, conductor, born 14 October 1970.Needs Votehttp://www.vaskovassilev.comVasko VassilievВаско ВасилевOrchestra Of The Royal Opera House, Covent Garden + +521601Jerry CapehartJerry Neil CapehartAmerican songwriter and music manager. Born 22 August 1928, died 7 June 1998 in Nashville, Tennessee.Correcthttp://en.wikipedia.org/wiki/Jerry_Capeharthttp://tims.blackcat.nl/messages/jerry_capehart.htm1-5C. CapehartCadehartCanehartCapahartCapartCapchartCape / HartCape HartCape-HartCape/HartCapehardCapehartCapehart Jerry NCapehart Jerry N.Capehart, JCapehart, J.CapehatCapeheartCapeheatCapeheratCapemariCapemartCapenanCapenhartCaphartCapshartCobertCopehartCopeheartCopenhartCoperhartG. CapehardG. CapehartGebhartI. CapeheartJ CapehartJ CapeheartJ. CanchartJ. CapahartJ. CapeartJ. CapeerlandJ. CapehardJ. CapehariJ. CapehartJ. CapeheartJ. Capehert.J. CapemanJ. CapenhartJ. CaperartJ. CaperhartJ. CaphartJ. CochranJ. CopehartJ. CoperhartJ. KampheartJ. KapeahrtJ. N. CapehartJ.CapehartJ.CapeheartJ.N. CapeheartJerry Cape HartJerry CapeharJerry Capehart (uncredited)Jerry CapeheartJerry CaphartJerry CarpehartJerry CatehartJerry CoperhartJerry KapehartJerry N CapeJerry N CapehartJerry N CapeheartJerry N, CapeheartJerry N. CapehartJerry N. CapeheartJerry Neal CapehartJery CapehartJimmy CapehartJohnny CapehartLapehartP. CapeheartPehartTalphartJerry NealJerry Berryhill + +521609John D. LoudermilkJohn Dee Loudermilk Jr.American singer and songwriter. Composed 'Tobacco Road'. +Father of [a3567845] and the cousin of [a2050546] and [a919075], known professionally as [a715799]. His first wife was songwriter [a826239]. + +Born: March 31, 1934 in Durham, North Carolina +Died September 21, 2016 in Christiana, Tennessee, USA.Needs Votehttp://ihesm.com/https://en.wikipedia.org/wiki/John_D._Loudermilkhttps://adp.library.ucsb.edu/names/328149A. D. LoudermilkD LoudermilkD. LaudermilkD. LoudermilkDeeG. D. LondermilkG. D. LoudermilkJ D LoudermilkJ LoudermilkJ, LoudermilkJ. D. LoudermilkJ. B. LoudermilkJ. D. LoudermilkJ. D. LaudermilkJ. D. LeudemilkJ. D. LoudemilkJ. D. LoudenmilkJ. D. LoudermilJ. D. LoudermildJ. D. LoudermilkJ. D. LoudsermilkJ. D. LudermilkJ. D.LoudermilkJ. L. LoudermilkJ. L. MilkJ. L. OudermilkJ. LaudermilkJ. Louder-MilkJ. LoudermikJ. LoudermilkJ. LudermilkJ. O. LoudermilkJ. OudermilkJ. R. LoudermilkJ. W. LoudermilkJ. ディーJ.-D. LoudermilkJ.B.LoudermilkJ.C. LoudermilkJ.D LoudermilkJ.D. LaudermilkJ.D. LoudemilkJ.D. LoudermickJ.D. LoudermilkJ.D.LoudermilkJ.D.Luder-MilkJ.L. LoudermilkJ.LoudermilkJ.O. LoudermilkJD LoudermilkJD. LoudermilkJihn LoudermilkJohan D. LaudermilkJohn LoudermilkJohn B. LoudermilkJohn D LaudermilkJohn D LoudermilkJohn D, LoudermilkJohn D.John D. DaudermilkJohn D. LaudermilkJohn D. LodermilkJohn D. LoudamilkJohn D. Loudermilk JrJohn D. Loudermilk, Jr.John D. LoudermilmJohn D. LoudmilkJohn D. LourdermilkJohn D. LuddermickJohn D., LoudermilkJohn D.LoudermckJohn De LoudermilkJohn Dee Loudermilk Jr.John Dee Loudermilk, Jr.John LaudermilkJohn LondermilkJohn LoudemilkJohn LoudermickJohn LoudermilkJohn LoundermilkJohn W. LoudermilkJohn-D. LoudermilkJohn-Dee LoudermilkJohn. D. LaudermilkJohnny LoudermilkL. DermilkL.O. LoudermilkLaudermilkLew DermilkLodermilkLonder - MilkLondermilkLou DermilkLoudemilkLouder MilkLoudermiilkLoudermikLoudermilkLoudermilk John DLoudermilk, J.Loudermilk, John D.Louer MilkLoundermilkLouthermilkLowdermilkS. D. LoudermilkДж. ЛаудермилкローダーミルクJohnny Dee (3)Ebe SneezerEbe Sneezer And His Epidemics + +521630Tim EnglishViolinist.Needs VoteTimothy EnglishRoyal Philharmonic Orchestra + +521797George Williams (2)American composer, conductor, pianist, songwriter and arranger. +Born 5 November 1917 in New Orleans, Louisiana, USA +Died 17 April 1988 + +Known for his violin arrangements for the [a=Jackie Gleason] television show and for a number of major bands. +Formed [a=George Williams And His Orchestra] in 1955 and moved to South Florida with the Gleason show in 1968. +[a=Lionel Hampton], [a=Benny Goodman], [a=Tommy Dorsey], [a=Ray Anthony], [a=Glenn Miller] and [a=Tony Bennett] were other entertainers who used Mr. Williams's arrangements. He also wrote the music for [a=Barbra Streisand]'s first album, ''Happy Days Are Here Again.'' +Needs Votehttps://www.imdb.com/name/nm0930653/G WilliamsG. WilliamsG.WilliamsGene WilliamsGeorge "The Fox" WilliamsGeorge (The Fox) WilliamsGeorge WilliamsGeorges WilliamsWilliamsГ. ВильямсGeorge Williams And His OrchestraGeorge Williams' Swinging Big Band + +522034Christoph MüllerGerman flutist, piano and recorder player - was in [i]Jugendorchester Rheinland-Pfalz[/i], [i]Orchester der Bayreuther Festspiele[/i], toured with [a463199] and was soloist of [a4603013]. He currently works at [i]Theater Pforzheim[/i].Needs Votehttps://www.theater-pforzheim.de/das-theater/ensemble-mitarbeiter/badische-philharmonie-pforzheim/orchestermitglieder/christoph-mueller.htmlChristoph F. MüllerChantal (4)Orchester der Bayreuther FestspieleAargauer Symphonie OrchesterStädtisches Orchester Pforzheim + +522209Kurt MasurBorn July 18, 1927 in [url=https://en.wikipedia.org/wiki/Brzeg]Brzeg[/url], died December 19, 2015 in [url=https://en.wikipedia.org/wiki/Greenwich,_Connecticut]Greenwich[/url], [b]CT[/b]. German conductor. +Chief conductor of the [a=Gewandhausorchester Leipzig] from 1970 to 1996, principal conductor of [a=The New York Philharmonic Orchestra] from 1991 to 2000, principal conductor of the [a=London Philharmonic Orchestra] from 2000 to 2007 and was music director at [a=Orchestre National de France] from 2002 to 2008. +Third wife was [a=Tomoko Sakurai].Needs Votehttps://en.wikipedia.org/wiki/Kurt_Masurhttps://www.britannica.com/biography/Kurt-Masurhttps://www.imdb.com/name/nm0557955/K. MasurK. MazurasKurt Masur, ConductorKurt MazurKutr MazurMasurΚουρτ ΜαζουρКурт Мазурクルト・マズアクルト・マズワクルト・マズア + +522210Gewandhausorchester LeipzigOne of the oldest symphony orchestras in the world, named after the concert hall in which it is based, the [l=Gewandhaus] in Leipzig, Germany. Its origins can be traced to 1743, when a society called the Grosses Concert began performing in private homes and then in a tavern called "The Three Swans". The orchestra gave its first concert in the Gewandhaus in 1781. + +Music directors (Gewandhauskapellmeister): +1781–1785 [a3993353] +1785–1810 [a6566752] +1810–1827 [a2886716] +1827–1835 [a2099292] +1835–1843 [a=Felix Mendelssohn-Bartholdy] +1843–1844 [a=Ferdinand Hiller] +1845–1847 [a=Felix Mendelssohn-Bartholdy] +1848–1854 [a3302699] +1860–1895 [a=Carl Reinecke] +1895–1922 [a=Arthur Nikisch] +1922–1928 [a=Wilhelm Furtwängler] +1929–1933 [a=Bruno Walter] +1934–1945 [a=Hermann Abendroth] +1946–1949 [a=Herbert Albert] +1949–1962 [a=Franz Konwitschny] +1964–1968 [a=Václav Neumann] +1970–1996 [a=Kurt Masur] +1998–2005 [a=Herbert Blomstedt] +2005–2016 [a=Riccardo Chailly] +2018-present [a=Andris Nelsons]Needs Votehttps://www.gewandhausorchester.de/https://www.facebook.com/Gewandhausorchesterhttps://x.com/gewandhaushttps://www.instagram.com/gewandhausorchester/https://www.youtube.com/user/gewandhausleipzighttps://soundcloud.com/gewandhaus-zu-leipzighttps://en.wikipedia.org/wiki/Leipzig_Gewandhaus_Orchestrahttps://de.wikipedia.org/wiki/GewandhausorchesterCorul Radioteleviziunii Și Orchestra "Gewandhaus" Din LeipzigDas Gewandhaus-OrchesterDas Gewandhaus-Orchester LeipzigDas Gewandhaus-Orchester Zu LeipzigDas GewandhausorchesterDas Gewandhausorchester LeipzigDas Gewandhausorchester Zu LeipzigDas Gewandhausorchester, LeipzigDas Leipziger GewandhausorchesterDas Städtische und Gewandhausorchester LeipzigDer Gewandhausorchester LeipzigGOLGevandhauzo Simfoninis OrkestrasGew. Orch. Leipz.Gewand Hausorchester LeipzigGewandh.-Orch. LeipzigGewandhausGewandhaus Chamber Orchestra, LeipzigGewandhaus De LeipzigGewandhaus LeipzigGewandhaus Orchester LeipzigGewandhaus Orchester LepzigGewandhaus Orchester, LeipzigGewandhaus OrchestraGewandhaus Orchestra LeipzigGewandhaus Orchestra Of LeipzigGewandhaus Orchestra, LeipzigGewandhaus Orchestrs, LeipzigGewandhaus de LeipzigGewandhaus, LeipzigGewandhaus-Kammer Orchester LeipzigGewandhaus-Kammer-Orchester LeipzigGewandhaus-Kammerorchester LeipzigGewandhaus-Kammerorchester, LeipzigGewandhaus-OrchesterGewandhaus-Orchester LeipzigGewandhaus-Orchester Zu LeipzigGewandhaus-Orchester, LeipzigGewandhaus-Orkest LeipzigGewandhaus-OrkesteriGewandhaus-orchester LeipzigGewandhauskammerchorGewandhausorchest & -ChorGewandhausorchesterGewandhausorchester Di LipsiaGewandhausorchester Leipzig Und SolistenGewandhausorchester LeizpigGewandhausorchester Zu LeipzigGewandhausorchester zu LeipzigGewandhausorkestern, LeipzigGewandhousorchestra LeipzingGewandhs. Kammer-Orch. LeipzigGewanhaus Orchester LeipzigGudački Orkestar Gewandhaus iz LajpcigaLeipizig Gewandhouse OrchestraLeipzig "Gewandhaus" OrchestraLeipzig Gerwandhaus OrchestraLeipzig Gewandhaus OrchestraLeipzig Gewandhaus Orch.Leipzig Gewandhaus OrchestraLeipzig Gewandhaus Orchestra, TheLeipzig Gewandhaus-OrchesterLeipzig GewandhausorchesterLeipzig Gewandhouse OrchestraLeipzig Operahaus OrchestraLeipzig OrchestraLeipzig Philharmonic OrchestraLeipzig Symphony OrchestraLeipzig-Symphony OrchestraLeipziger Gewandhaus-OrchesterLeipziger GewandhausorchesterLeipzip Gewandhaus OrchestraLipcsei Gewandhaus ZenekarMembers Of The Gewandhausorchester LeipzigMembers Of The Gewandhausorchester, LeipzigMembers Of The Leipzig Gewandhaus OrchestraMembers Of The Stadt- Und Gewandhausorchester Of LeipzigMitglieder Des Gewandhausorchester LeipzigMitglieder Des Gewandhausorchesters LeipzigMitglieder des Gewandhausesorchesters LeipzigMitglieder des Gewandhausorchester LeipzigMitglieder des Gewandhausorchesters LeipzigOrch. Du Gewandhaus De LeipzigOrch. du Gewandhaus de LeipzigOrchester Des Leibziger RundfunksOrchestr Du Gewandhaus De LeipzigOrchestr Lipského GewandhausuOrchestra "Gewandhaus"Orchestra "Gewandhaus" Din LeipzigOrchestra "Gewandhaus" din LeipzigOrchestra Del Gewandhaus Di LipsiaOrchestra Del Gewandhaus di LipsiaOrchestra Del Gewandhause Di LipsiaOrchestra Gewandhaus Din LeipzigOrchestra Gewandhaus LeipzigOrchestra Gewandhaus-LeipzigOrchestra del Gewandhaus di LipsiaOrchestra «Gewandhaus» Din LeipzigOrchestra «Gewandhaus» din LeipzigOrchestra „Gewandhaus“ LeipzigOrchestra „Gewandhaus“ din LeipzigOrchestra „Gewandhaus” din LeipzigOrchestre De Gewandhaus De LeipzigOrchestre De Gewandhaus LeipzigOrchestre Du Gewandhaus De LeipzigOrchestre Du Gewandhaus LeipzigOrchestre Du Gewandhaus de LeipzigOrchestre Symphonique Du GewandhausOrchestre de la Gewandhaus de LeipzigOrchestre du Gewandhaus De LeipzigOrchestre du Gewandhaus LeipzigOrchestre du Gewandhaus de LeipzigOrchestre À Cordes Du Gewandhaus De LeipzigOrkiestra Gewandhaus W LipskuOrquesta De Gewandhaus De LeipzigOrquesta De La Gewandhaus De LeipzigOrquesta De La Gewandhaus, LeipzigOrquesta Del Gewandhaus De LeipzigOrquesta Del Gewandhaus de LeipzigOrquesta Del Gewandhausorchester De LeipzigOrquesta Do Gewandhaus De LeipzigOrquesta Gewandhaus De LeipzigOrquesta Gewandhaus de LeipzigOrquesta Gewandhaus, LeipzigOrquesta del "Gewandhaus" de LeipzigOrquesta del Gewandhaus de LeipzigOrquestra "Gewandhaus" LeipzigOrquestra Da Gewandhaus De LeipzigOrquestra De Gewandhaus De LeipzigOrquestra Do Gewandhaus De LeipzigOrquestra Do Gewandhaus de LeipzigOrquestra Gewandhaus, De LípsiaSimfonijski Orkestar Iz LajpcigaSinfonietta LeipzigStadt und Gewandhausorchester LeipzigStadt- Und Gewandhausorchester LeipzigStadt- und Gewandhausorchester LeipzigStadt-Und Gewandhausorchester LeipzigStreichorchester Des Gewandhausorchesters LeipzigString Orchestra Of The Gewandhaus Orchestra LeipzigSymphonycki Orchestr Lipskeho GewandhausuThe Gewandhaus OrchestraThe Gewandhaus Orchestra LeipzigThe Gewandhaus Orchestra Of LeipzigThe Gewandhaus Orchestra, LeipzigThe Leipzig Gewandhaus OrchestraThe Orchestra Of The Gewandhaus LeipzigΟρχήστρα Γκεβάντχαους Της ΛειψίαςГевандхауз-оркестр ЛейпцигГевандхауз-оркестр ЛейпцигГевандхаусоркестрЛейпцигский Гевандхаус ОркестрЛейпцигский Оркестр "Гевандхауз"Лейпцигский Симфонический Оркестр "Гевандхаус"Лейпцигский Симфонический Оркестр «Гевандхауз»Лейпцигский Симфонический Оркестр „Гевандхауз“Оркестр " Гевандхаус" . ЛейпцигОркестр Гевандхауза В ЛейпцигеОркестр Гевандхауза в г. ЛейпцигeОркестр" Гевандхаус" Лейпциг„Гевандхаусоркестр“ Лейпцигゲヴァントハウス管弦楽団ライプチッヒ・ゲヴァントハウス管弦楽団ライプツィヒ・ゲバントハウス管弦楽団ライプツィヒ・ゲヴァントハウス管弦楽団Andreas LehnertVolker HemkenAxel Freiherr von Hoynigen-HueneHerbert BlomstedtKurt StiehlerGeorg WilleFriedemann ErbenDietmar HallmannGerhard BosseKonrad SiebachKlaus SchwenkeThekla WaldbaurEva KästnerGerhard FladeBernd JäcklinHans-Ludwig MörchenKlaus HebeckerWerner SeltmannSiegfried PankSiegfried ArnoldPeter Fischer (3)Lothar MaxVolker MetzWaldemar SchieberHeinz HörtzschHannes KästnerMatthias MoosdorfAndreas SeidelIvo BauerChristian OckertTilman BüningKlaus SteinKarl-Heinz PassinHelmut RuckerTobias HasseltWolfram StrasserHenriette-Luise NeubertHans PischnerChristian Funke (2)Willi KrugGeorg MoosdorfJürnjakob TimmMitglieder Des Gewandhausorchesters LeipzigMichael SchönheitKarl SuskeKarl-Heinz GeorgiGunar KaltofenGerhard EßbachHeinz MorawietzEberhard UhligReiner GebauerJochen PleßMatthias KreherVincent AucanteEberhard PalmKlaus-Peter GützThomas ReinhardtPeter-Carsten BraunWolfgang EspigHans-Christian BartelHellmut SchneidewindWalter GerwigKurt HiltawskyRoald ReineckeThomas StahrKarl Heinrich NiebuhrDietrich ReinholdJürgen DaseSebastian UdeBarbara UdeHorst BaumannJan WesselyHenry Schneider (2)Norbert TunzeWerner JanekUwe StahlbaumHelmut WeimannGünter GlassBernhard KrugJulius KlengelStephanie WinkerEdmund SchuëckerRolf QuinqueAndris NelsonsKarl MehligRainer HuckeHans Münch-HollandWilli NeumannFranz GenzelGernot SchwickertFritz HungerKonrad SpitzbarthErich ListWilly GerlachPetra SauerwaldOtto SteinkopfHorst Fuchs (2)Burkhard Schmidt (2)Armin MännelGünther StephanErik ReikeWolfgang LoebnerHans-Jürgen SchmidtDorothea VogelJörg BrücknerHans BergerMatthias Weise (3)Henning RascheGewandhaus-Quartett LeipzigMoritz KlaukHelmut BöhmeFred Roth (3)Fritz SchneiderJuliane GreplingConrad SuskeFrank-Michael ErbenFranziska MantelDorothea HemkenBirgitta RoseLuke TurrellSteffen WeiseLutz KlepelElisabeth DingstadKatharina DargelHeiner StolleOlaf HallmannDavid CribbPeter WettemannOtmar StrobelLukas BenoGiorgio KröhnerWolfgang BilfingerHannah PerowneHolger LandmannStefan Wagner (3)Jürgen DietzeUwe KleinsorgeHenrik Wahlgren (2)Tobias LampelzammerAnna Theresa SteckelEberhard FreibergerAndre SchochMichael PeternekAnton JivaevSimona VenslovaitėJohannes GrossoRalf GötzGunnar HarmsGerwin BaaschHeinz PupkeKarl JacobKarl SemschWerner PilzRolf BachmannClemens RögerGeorg BöhnerGerhard HundtJoachim NaumannJörg Richter (2)Edgar HeßkeAnna Garzuly-WahlgrenSimon SommerhalderIngolf BarchmannGudrun HinzeTobias SchnirringEckehard KupkeChristian Sprenger (5)David Petersen (2)Siegfried JägerJens BorleisUlf LehmannTobias Haupt (2)Marek StefulaChristoph VietzSteffen CottaChaim StellerJohannes Wagner (3)Tino MönksChristian GigerHenrik HochschildGiuliano SommerhalderEdwin IlgStefan ArzbergerDavid WedelMatthias Schreiber (2)Wolfgang GränitzGundel Jannemann-FischerThomas ZieschThomas HipperZeno FusettiTai-Yang ZhangKlaus SchießerSébastian JacotCsaba WagnerLothar GumprechtAnne WiechmannJohann Gottfried SchichtRalf WeinerValentino WorlitzschRolf LorenzGustav LinkHeinz WeißkopfKıvanç TireDirk Lehmann (2)Dorothée ErbinerWaldemar SchwiertzEberhard SpreePeter Gerlach (2)Leonard Frey MaibachDomenico Orlando (2)Susanne WettemannCornelia GrohmannSebastian BreuningerGottfried KronfeldDaniel FusterAndreas BuschatzKarl SeegersDomenico CatalanoDorian XhoxhiBurak MarlaliChristoph KrügerRebekka Wittig-VogelsmeierPeter Michael BorckWolfram HollEkkehard BeringerTahlia PetrosianDavid Castro-BalbiTristan TheryDavid Lau (4)Axel BenoitVeronika WilhelmSlawomir RozlachManfred Ludwig (2)Veronika StarkeVincent Lo (2)Christian ErbenDaniel Pfister (5)Gayane KhachatryanHeiko SchumannKristin ElwanNicolas DefranouxPedro PelaezUlrike Strauch (2)Bernd Meier (5)Christoph Winkler (3)Karsten HeinsMichail-Pavlos SemsisAlice WedelBirgit Weise (2)Claudia BussianImmo SchaarIvan BezpalovRuth BernewitzSara Kim (3)Anna Schuberth-RichwienBrita ZühlkeChiara AstoreChristian Hofmann-KrugIna WieheJohanna BerndtJulius BekeschKana OhashiLiane UngerMao ZhaoRegine KorneliSara AstoreStefanie CribbSusanne HallmannThomas TauberYun-Jin ChoAndrea PleßAnna BaduelBernadette WundrakCamille GoutonEwa HelmersKatharina WachsmuthKathrin PantzierLars Peter LeserLydia DoblerMarkus PinquartMiho Tomiyasu-Palma MarquesMinah LeeNemanja BugarcicAlbert KegelPeter SchurrockHans SchlagJohanna SiglerKatalin StefulaCornelia SmacznyGabriella VictoriaChristian Kretschmar (2)Jürgen MerkertSimen FegranAmanda TauriņaAndres Otin MontanerJohann-Georg BaumgärtelPhilipp Schroeder (2)Severin StitzenbergerTünde MolnárTom GreenleavesTomáš TrnkaGábor RichterJohann ClemensJonathan Müller (2)Szabolcs SchüttTobias Schmitt (3)Naomi ShahamRiccardo TerzoJoachim HantzschkNathalie SchmalhoferFriedrich GumpertDorothee AppelhansBettina AustBernhard Eduard Müller + +522269Paul ElliottTenor vocalist. + +For the reggae singer, please see [a=Paul Elliot]. +For the drummer of [a=Trickster (6)], please see [a=Paul Elliott (2)]. +For the Australian producer/engineer/film director, please see [a=Paul Elliott (4)]. +For the bluegrass fiddler, please see [a=Paul Elliott (5)]. +For music journalist / rock liner notes see [a=Paul Elliott (10)]. +For American mastering engineer see [a=Paul Elliott (14)].Needs Votehttps://www.bach-cantatas.com/Bio/Elliott-Paul.htmElliotElliottP. ElliottP.E.P.ElliottPaul ElliotПол ЭллиоттTheatre Of VoicesThe Hilliard EnsembleThe Monteverdi ChoirThe Academy Of Ancient MusicDeller ConsortThe Consort Of MusickePro Cantione AntiquaThe Medieval Ensemble of LondonThe London Early Music GroupMagnificat Baroque Ensemble + +522280Allison ZellesSoprano vocalist.Needs VoteTheatre Of VoicesAltramar Medieval Music Ensemble + +522286Andrea FullingtonSoprano vocalist.Needs VoteTheatre Of VoicesMagnificat Baroque Ensemble + +522452Clarence JohnstonClarendon Carlisle JohnstonAmerican jazz drummer, born October 24, 1924, Boston, Massachusetts - died May 17, 2019, Burbank, California. Sometimes misspelled as "Johnson".Needs Votehttps://en.wikipedia.org/wiki/Clarence_Johnston_(jazz_drummer)Clarence JohnsonClarendon JohnstonJohnsonJohnstonJames Moody And His OrchestraThe Harry Edison QuartetJack Wilson Trio + +522505Adriaan VerstijnenDutch sound engineer and recording producer.CorrectA. VerstijnenAdri VerstijnenAdriaan VerstijenAdriaan VertijnenAdrian VerstijnenAdrian VerstiynenAdrian VerstynenAndriaan VerstijnenVerstijnen + +522630Jane PiperAustralian classical violinist, born 1980 in Sydney, Australia.CorrectConcertgebouworkestAustralian Chamber Orchestra + +522739Akiko Suwanai諏訪内 晶子 (すわない あきこ Suwanai Akiko)Japanese violinist. Born on February 7, 1972, in Tokyo.Needs Votehttp://www.universal-music.co.jp/akiko-suwanaiАкико Суванаи諏訪内晶子The Chamber Orchestra Of Europe + +522918Pentti LasanenPentti Kalevi LasanenFinnish musician (clarinet, saxophone, trumpet, flute), singer, arranger and composer. Born on September 17, 1936 in Kotka, Finland and died on March 13, 2021 in Helsinki.Needs Votehttp://www.penttilasanen.comLasanenP LasanenP. LasanenP.LasanenPenaPenttiPentti LaasanenPertti LasanenMartti LapanenE. BosseUmo Jazz OrchestraHeikki Sarmanto Big BandFinnish Big Band JazzErik Lindström SextetOiling BoilingFour CatsPentti Lasasen Studio-orkesteriLasasetThe Pentti Lasanen SeptetÅke Granholm SextetPentti Lasasen YhtyeKolmosetPenan SoittajatAntti Sarpila - Pentti Lasanen Swing BandFinnish Jazz All StarsRadion TanssiorkesteriThe Vostok All-StarsThe Finnjet SingersRonnie Kranckin SekstettiDuo Taisto Wesslin & Pentti Lasanen + +522920Nono SöderbergArno Arvid SöderbergFinnish bassist and guitarist. Born on September 8, 1945. +Nono Söderberg has been active since the late 1960s. In 1975, he played on the singular, eponymous album by jazz-rock supergroup Uni Sono with pianist Olli Ahvenlahti and bassist Pekka Pohjola. Söderberg released his debut solo album, Nono, in 1976 on Hi-Hat. The follow-up, Rare Bird, appeared in 1982 on Parlovox. Before his debut album had already played for approximately 10 years in different pop and jazz groups, including Matti Oiling Happy Jazz Band, Utopia, The Needles and Jussi & The Boys. The Needles was Söderberg’s first band and in it he played the bass instead of the guitar. He switched from the bass to the guitar in 1967. In the early 70s he started working as a music teacher in Oulunkylä Pop & Jazz Academy. Needs VoteA. SöderbergArno SöderbergN. SöderbergN.SöderbergNonoNuno SöderbergSöderbergFinnish Big Band JazzUnisonoJussi & The BoysUtopia (13)Nono Söderberg BandThe Islanders (5)Eero Ja Jussi & The BoysBoxcar (3)The Needles (3)Black Flag Of UtopiaPentti Lasasen Studio-orkesteriRobson TapesJanatuisen JatsiyhtyeKapteeni NemoMatti Oiling Happy Jazz BandToeloe StringsKomppimafiaMadcaps (3)Ball (8) + +523073Thomas StrasserGuitarist, songwriter, singer and arranger. Son of [a538637]Needs VoteStrasserStrasser Jr.Strasser ThomasT. StrasserT. StresserTh. StrasserTh.StrasserTheo StrasserThomas Strasser Und Seine MusikantenThomas Fabian (4)Hugo Strasser Und Sein TanzorchesterRalf Nowy GroupOrchester Etienne CapMunich ConnectionThomas Strasser Und Seine MusikantenTill (8)Orchester Thomas Strasser + +523633Modest MussorgskyМодест Петрович МусоргскийModest Petrovich Mussorgsky +Russian composer. +Born: March 21 (March 9 O.S.), 1839, Karevo, Pskov Governorate, Russian Empire +Died: March 28 (March 16 O.S.), 1881, Saint Petersburg, Russian Empire + +One of the Russian composers known as "Могучая кучка" / "The Five", was an innovator of Russian music in the romantic period. He strove to achieve a uniquely Russian musical identity, often in deliberate defiance of the established conventions of Western music.Needs Votehttps://en.wikipedia.org/wiki/Modest_Mussorgskyhttps://ru.wikipedia.org/wiki/%D0%9C%D1%83%D1%81%D0%BE%D1%80%D0%B3%D1%81%D0%BA%D0%B8%D0%B9,_%D0%9C%D0%BE%D0%B4%D0%B5%D1%81%D1%82_%D0%9F%D0%B5%D1%82%D1%80%D0%BE%D0%B2%D0%B8%D1%87https://adp.library.ucsb.edu/names/102584M MoussorgskiM MoussorgskyM MussorgskyM P MussorgskyM. MussorgskyM. MoessorgskiM. MoessorgskyM. MoussogskyM. MoussorgskiM. MoussorgskyM. MoussorskyM. MusogorskiM. MusorgskiM. MusorgskijM. MusorgskisM. MusorgskiyM. MusorgskyM. MusorskiM. MussorgskiM. MussorgskijM. MussorgskyM. MussorkskiM. MussorskyM. MuszorgszkijM. P, MussorgskyM. P. MussorgskyM. P. MoessorgskiM. P. MoussorgskiM. P. MoussorgskyM. P. MusorgskiM. P. MusorgskijM. P. MusorskiM. P. MussorgskiM. P. MussorgskijM. P. MussorgskyM. P. MusszorgszkijM. P. MuszorgszkijM. Petrovics MuszorgszkijM. МусоргскийM.MoussorgskyM.MusorgskiM.MussorgskiM.MussorgskijM.MussorgskyM.P. MoussorgskiM.P. MusogorskiM.P. MusorgskiM.P. MusorgskijM.P. MusorgskyM.P. MussorgkIM.P. MussorgskyM.P. Mussorgsky,M.P.MusorgskijM.p.MussorskyM.t MussorgskyM:MussorgskyModes MoussorgskyModest HussorgskyModest MoesorgskiModest MoessorgskiModest MoessorgskyModest MoussorgksyModest MoussorgskiModest MoussorgskyModest MoussorskyModest MusorgskiModest MusorgskijModest MusorgskyModest MussorgskiModest MussorgskijModest MúsorgskiModest P. MussorgskiModest P. MoussorgskyModest P. MusorgskiModest P. MusorgskijModest P. MusorgskyModest P. MussorgskiModest P. MussorgskijModest P. MussorgskyModest Pertrovich MussorgskyModest Peter MoussorgskyModest Peter MussorgskiModest Peter MussorgskyModest Petronič-MusorgskiModest Petrovic MoussorgskyModest Petrovic MusorgskijModest Petrovic MussorgskyModest Petrovich MoussorgskyModest Petrovich MusorgskyModest Petrovich MussorgskiModest Petrovich MussorgskyModest Petrovici MusorgskiModest Petrovitch MoussorgskiModest Petrovitch MoussorgskyModest Petrovitch MussorgskyModest Petrović MusorgskiModest Petrovič MusorgskiModest Petrovič MusorgskijModest Petrovič MussorgskijModest Petrovič MussorgskyModest Petrowitsch MussorgskiModest Petrowitsch MussorgskijModest Petrowitsch MussorgskyModeste MoesorgskiModeste MoessorgskiModeste MoussorgksyModeste MoussorgkyModeste MoussorgskiModeste MoussorgskyModeste MoussorskyModeste MoussourgskyModeste MussorgskiModeste MussorgskyModeste MussorskiModeste MussourgskyModeste Petrovich MoussorgskyModeste Petrovich MussorgskiModeste Petrovitch MoussorgskyModeste Petrovitch MussorgskyModeste-Petrovitch MoussorgskyModesto MoussorgskiModesto MoussorgskyModesto MusorgskyModesto MussorgskiModesto MussorgskyModests MussorgskyMoessorgskiMoessorgskyMogyeszt MuszorgszkijMogyeszt MuszorszkijMogyeszt Petrovics MuszorgszkijMossourgskyMousorgskyMoussogskyMoussorggskyMoussorgkiMoussorgksiMoussorgkskiMoussorgksyMoussorgkyMoussorgskiMoussorgski M.Moussorgski ModestMoussorgskijMoussorgskyMoussorgsky M.Moussorgsky M.P.MoussorkskyMoussorsgskyMoussorskiMoussorskyMoussorvskyMoussourgskyMouzzorgskiMuossorgskyMusoreksyMusorgskiMusorgskijMusorgskiyMusorgskyMusorskiMussorgkiMussorgkskyMussorgksyMussorgskiMussorgskijMussorgskyMussorgsky M.Mussorgsky, After PushkinMussorgsky, M.I.Mussorgsky, ModestMussorgsky, Modest PetrovichMussorgsky=RavelMussorkskyMussorskyMussorzkiMussourgskyMusssorgskyMusszorgszkijMuszorgszkijP. M. MusorgskijМ, МусоргскийМ. MussorgskyМ. МuszorgszkijМ. МусогрскийМ. МусоргскoгoМ. МусоргскиМ. МусоргскииМ. МусоргскийМ. МусоргськийМ. МуссоргскийМ. П. МусоргскийМ.МусоргскoгoМ.МусоргскийМ.МуссоргскийМ.П. МусоргскийМ.П.МусоргскиМодест МусогскийМодест МусоргскиМодест МусоргскийМодест Петрович МусоргскийМусоргскaгoМусоргскагоМусоргскиМусоргскийМуссоргскийムソルグスキーモデスト・ペトロヴィッチ・ムソルグスキーモデスト・ムソルグスキー穆索斯基 + +523641Grigoras DinicuGrigoraș DinicuRomanian Romani violinist, composer and band leader. +Born April 3, 1889, București, România – died March 28, 1949, București, România. +Best known for his virtuoso violin showpiece [b]“Hora Staccato”[/b] (1906). +Famous for making popular the tune [b]“Ciocîrlia” (“The Lark”)[/b] composed by his grandfather [a3379816]. +Uncle of [a621324]. + +1902 - 1906 studied at Conservatory with [a1422861]. +1906 - takes the graduation exam on the stage of the Romanian Athenaeum, performing Concert no. 1 by Paganini. +There performed first time his composition “Hora Staccato”.Needs Votehttps://en.wikipedia.org/wiki/Grigora%C8%99_Dinicuhttps://ro.wikipedia.org/wiki/Grigora%C8%99_Dinicuhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102521/Dinicu_GrigorasC. DinichD. DinicuDenieuDidicuDiinicuDimicuDincuDiniciuDinicoDinicuDinicu G.Dinicu GeorgesDinicu GrigorasDinicu, GrigorasDinikuDiniouDiniçuG. C. DimicuG. DenikuG. DimikuG. DinicaG. DinicuG. DinikuG. DinikyG. I. DinicuG. J. DinicuG. J. DinikuG.DinicuG.I. DinicuG.J. DinicuGeorg DinicuGeorges DinicuGheorge DinicuGheorghe DinicuGr. DinicuGr.DinicuGregoras DinicuGregore DinicuGregori DinicuGregory DinicuGrigora DinicuGrigoras DINICUGrigoras DinisuGrigoras L. DinicuGrigorash DinicuGrigoraș DinicuGrigoraș Ionică DinicuGrigoraț DinicuGrigore DinicaGrigore DinicuGrigorias DinicuGrigoros DinicuGrigorras DinicuGrigorus DinicuJ. DinicuJ. Grigorias DinicuL. DinicuM. Grigoras DinicuВ. ДимикуГ. ДиникуГригориас ДиникoГригориас ДиникуДиницуДінікуグリゴラシュ・ディニクディニークOrchestra Grigoraş Dinicu + +523642Joaquín RodrigoJoaquín Rodrigo VidreSpanish composer and piano player, born November 22, 1901 in Sagunto, Valencia, Spain and died July 6, 1999 in Madrid, Spain.Needs Votehttps://www.joaquin-rodrigo.com/https://www.facebook.com/ediciones.rodrigohttps://twitter.com/eJoaquinRodrigo/https://www.youtube.com/user/edicionesjrhttps://en.wikipedia.org/wiki/Joaqu%C3%ADn_RodrigoAranjuezFernando RodrigezHoaquín RodrigoI. RodrigoJ RodrigoJ Rodrigo VidreJ. RidrigoJ. Rodnig-VidreJ. RodorigoJ. RodricoJ. RodrigoJ. Rodrigo - VidreJ. Rodrigo - VidreJ. Rodrigo VidreJ. Rodrigo-VidreJ. Rodrigon VidreJ. RodrigroJ. RodriguezJ. RodriguoJ. RodriogoJ.R.VidreJ.RodrigoJ.ロドリーゴJaoquin RodrigoJaoquin Rodrigo VidreJoachim RodrigoJoachim Rodrigo - VidreJoachim Rodrigo-VidreJoachim Rodrigo-VireJoachim RodriguoJoachin RodrigoJoachín RodrigoJoacquin RodrigoJoakim RodrigoJoakim RodriguoJoaquIn RodrigoJoaquim RodrigoJoaquim Rodrigo VidreJoaquim Rodrigo-VidreJoaquim Rodrigo-VidréJoaquim/RodrigoJoaquin De RodrigoJoaquin Rodigro VidreJoaquin RodrigoJoaquin Rodrigo - VidreJoaquin Rodrigo V.Joaquin Rodrigo VidreJoaquin Rodrigo Vidre SchottJoaquin Rodrigo-VidreJoaquin Rodrio / VidreJoaquin Vidre RodrigoJoaquíb RodrigoJoaquím RodrigoJoaquín De RodrigoJoaquín Rodrigo - VidreJoaquín Rodrigo - VidréJoaquín Rodrigo D'après le concerto d'aranjuezJoaquín Rodrigo VidreJoaquín Rodrigo-VidreJoaquín RodrígoJoaquíno RodrigoJoquin RodrigoJourgan RodregoJuaquin RodrigoJuoquin RodrigoJ・ロドリーゴM. J. RodrigezMaestro Joaquin RodrigoMaestro Joaquín RodrigoMaestro RodrigoO. RodrigoRoaquin RodrigoRodgrigoRodigroRodrgoRodrico VidreRodrigoRodrigo - VedriRodrigo - VidreRodrigo - VioreRodrigo J.Rodrigo VidreRodrigo Vidre JoaquinRodrigo Vidre, JoaquinRodrigo, J.Rodrigo, JoaquinRodrigo, JoaquínRodrigo-VidreRodrigo-VioreRodrigo/VibreRodrigo/VidreRodrigo/VioreRodriguesRodriguezRodriguoRodring Viore JoaquinV. J. RodrigoV.J. RodrigoVidreVidre Joaquin RodrigoVidre Joaquín RodrigoVivaldiX. РодригоYoagain Rodrigo-VidreYokhayan RodreghoД. РодригосИ. РодригоР. ВидрР. ВирдРодригоХ. РодригоХоакин Родригоז'ואקין רודריגורודריגוيواخين رودريغوロドリゴロドリーゴRodrigo Vidre + +523982Berliner Sinfonie OrchesterBerliner Sinfonie-OrchesterThe Berliner Sinfonie-Orchester (Berlin Symphony Orchestra) was an East-Berlin German classical orchestra founded in 1952 as a rival ensemble to [a=Berliner Philharmoniker] (Berlin Philharmonic Orchestra) based in West-Berlin. It is not to be mixed up with the [a459673], also based in West-Berlin. + +Berliner Sinfonie-Orchester was renamed in July 2006 [a=Konzerthausorchester Berlin], with [a=Lothar Zagrosek] as principal conductor. + +Berliner Sinfonie-Orchester has been conducted by: +Eliahu Inbal (2001-2006) +Michael Schønwandt (1992–1998) +Claus Peter Flor (1984–1991) +Günther Herbig (1977–1983) +Kurt Sanderling (1960–1977) +Hermann Hildebrandt (1952–1959) + + +Konzerthaus Berlin, Gendarmenmarkt +D-10117 Berlin Germany +info@berliner-sinfonie-orchester.deNeeds Votehttps://www.konzerthaus.de/https://de.wikipedia.org/wiki/Konzerthausorchester_BerlinBSOBerliinin Sinfoniaork.Berlijns Stedelijk Symfonie-OrkestBerlijns Symfonie-orkestBerlijns Symphonie OrkestBerlijns Symphony OrkestBerlin City Symphony OrchestraBerlin Municipal Symphony OrchestraBerlin State Philharmonic OrchestraBerlin State Symphony OrchestraBerlin SymphonyBerlin Symphony OrchestraBerlin. Sinf. OrchesterBerliner Rundfunk-Sinfonie-OrchesterBerliner Sinfonie Orch.Berliner Sinfonie-OrchesterBerliner Sinfonie-Orchester*Berliner SinfonieorchesterBerliner Sinfonieorchester (jetzt Konzerthaus-Orchester Berlin)Berliner SinfonikerBerliner Sinfonisches OrchesterBerliner Symphonie OrchesterBerliner Symphonie-OrchesterBerliner SymphonieorchesterBerliner SymphonikerBerliner Symphonisches OrchesterBerliner SymphonyBerliner Symphony OrchestraBerliner Synfonie-OrchesterBerliner-Sinfonie-OrchesterBerlinski simfoničariDas Berliner Sinfonie-OrchesterDas Berliner SinfonieorchesterDas Berliner Symphonie OrchesterDas Berliner Symphonie-OrchesterDie Berliner SinfonikerDie Berliner SymphonikerEin Grosses Berliner Symphonie-OrchesterMembers Of The Sinfonie-Orchester BerlinMitglieder Des Berliner Rundfunk-Sinfonie-OrchestersMitglieder Des Berliner Sinfonie OrchesterMitglieder Des Berliner Sinfonie-OrchesterMitglieder Des Berliner Sinfonie-OrchestersMitglieder des Berliner Sinfonie-OrchestersOrchesterOrchestra Simfonică Municipală Din BerlinOrchestra Symphonique De BerlinOrchestre Symphonique De BerlinOrchestre Symphonique de BerlinOrq. Sinf. De BerlinOrquesta Sinfonica De BerlinOrquesta Sinfónica De BerlínOrquesta Sinfónica de BerlínSinfonie Orchester BerlinSinfonie-Orchester BerlinSinfonieorchester BerlinSolisten Des Berliner Sinfonie-OrchesterSolisten des Berliner Sinfonie-OrchesterStädisches Berliner Sinfonie OrchesterStädtischer Berliner Symphonie-OrchesterStädtisches Berliner Sinfonie-OrchesterStädtisches Berliner Symphonie-OrchesterStädtisches Sinfonie-OrchesterStädtisches Sinfonie-Orchester BerlinSymphonic Orchestra BerlinSymphonisches Orchester BerlinSymphonisches Orchester, BerlinSymphonisches Orchestrer BerlinSymphony Orchestra BerlinThe Berlin State Symphony OrchestraThe Berlin Symphony OrchestraThe Symphony Orchestra, BerlinБерлинский симфонический оркестрベルリン・シンフォニー・オーケストラベルリン・フィルハーモニック管弦楽団ベルリン交響楽団Konzerthausorchester BerlinHans LemkeWolfgang WeberMichael VogtChristian-Friedrich DallmannMichael SchønwandtKlaus SchöppJürgen ButtkewitzNikolai GraudanFriedemann WeigleWolf-Dieter BatzdorfFrank ForstUwe KöllerChristoph StarkeWerner Scholz (2)Thomas SelditzAlf MoserMichael SimmBarbara SanderlingUlrike ScobelFritz FinschGábor TarköviWolfram Große + +523989Günther HerbigGünther HerbigGerman conductor, born November 30, 1931, in Aussig, Bohemia (today: Ústí nad Labem, Czech Republic). +Husband of [a1285366]. +A student of [a=Herbert von Karajan].Needs Votehttp://www.naxos.com/conductorinfo/bio31097.htmhttps://en.wikipedia.org/wiki/G%C3%BCnther_HerbigG. HerbigGuenther HerbigGunter HerbigGunther HerbigGünter HerbigGüther HerbigHerbigГюнтер Хербиг + +524182Ferde GroféFerdinand Rudolph von GroféAmerican pianist, arranger, conductor and composer. +Married to [a3798671] (1916-1928). +Best known for being the first to orchestrate [a261293]’s "Rhapsody in Blue" and composed the Grand Canyon Suite. He also worked as an arranger for [a299946], where he wrote hundreds of concert and popular arrangements between 1919-1931. + +Born: March 27, 1892 in New York City, New York +Died: April 03, 1972 in Santa Monica, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Ferde_Grof%C3%A9https://www.imdb.com/name/nm0342928/https://www.britannica.com/biography/Ferde-Grofehttps://www.naxos.com/person/Ferde_Grof%C3%A9/26084.htmhttps://adp.library.ucsb.edu/names/104209F. GorféF. GrofeF. GroffeF. GroféF. GroföF. GroteFedre GrofeFerde GrofeFerde GrofèFerder GrofeFerdi GroféFerdie GrofeFerdie GroféFerdie GroteFerdinand Rudolf Von "Ferde" GrofèFerdinand Rudolf von "Ferde" GrofèFerdy GroféFerdé GrofeFerdé GroffeFerdé GroféFred GraffeFred GroféFreddie GrofeFrede GrofeFrede GroféFrederich GrofeG. GroféGROFEGofréGraffeGrofeGroffeGrofoGroféGrofé Conducts GroféGrofëGropeGroteMerde GroféФ. ГрофеФерди Грофеグローフェファーディ・グローフェPaul Whiteman And His OrchestraPaul Whiteman's Charleston BandThe Virginians (3)Ferde Grofe And His Orchestra + +524726Donna WeissDonna Terry WeissU.S. songwriter and singer. Best known for co-writing and winning the Grammy for Song Of The Year and Record Of The Year for Kim Carnes' hit "Bette Davis Eyes" with [a=Jackie DeShannon]. Originally from Memphis, Weiss had an extensive career as a backing vocalist for artists including [a=Bob Dylan], [a=Al Kooper], [a=Joe Cocker], and [a=Rita Coolidge].Needs Votehttp://en.wikipedia.org/wiki/Donna_WeissD WeissD. KeissD. NeissD. T. WeissD. T. WeisslD. VeissD. WeissD. WiessD.T. WeissD.T.WeissD.WeissD.WissDonnaDonna T WeissDonna T. WeissDonna Terry WeissDonna TweissDonna WiessDonna/WeissDoona WeissO.WeissTweiss, DonnaWeissWeiss DonnaWeiss Donna TWiessTony And Terri + +524756Marvin TholenMarvin TholenMember of Dutch Techno / Hardcore group Human Resource from 1992 to 1995.Needs VoteM. TholenM.TholenMarvin (D) TholenMarvin (D.) TholenMarvin [D] TholenTholenMarvin D (2)Human Resource + +524898Jonathan BarrittViolist and educator.Needs VoteJonathan BarritEnglish Chamber OrchestraThe Michael Nyman BandThe Allegri String QuartetCoull Quartet + +524935Eriikka NylundEriikka NylundA Finnish violist.Needs VoteSveriges Radios SymfoniorkesterRadion Sinfoniaorkesteri + +525097Tim Williams (4)Timothy F. WilliamsTrombonist.Needs VoteTim WilliamsTimothy WilliamsArt Blakey & The Jazz Messengers + +525240Torbjörn HultcrantzJohan Torbjörn HultcranzSwedish jazz bassist. +Born: May 2, 1937 in Stockholm, Sweden +Died: January 18, 1994Needs VoteHultcrantzThorbjörn HultcrantzTorbjorn HultcrantzTorbjörnTorbjörn HultcrantsTorbjörn HultcranzTorbjörn HultectanzTorbjörn HultkrantzTornbjörn Hultcrantzトービヨン・フルトクランシThe Bud Powell TrioDexter Gordon QuintetBernt Rosengren GroupPer Henrik Wallin TrioBernt Rosengren Big BandBernt Rosengren QuartetLars Gullin QuartetThe Werner-Rosengren Swedish Jazz QuartetHerr T Och Hans SpelmänClaes-Göran Fagerstedts TrioDexter Gordon - Benny Bailey QuintetBernt Rosengren QuintetJazz Club '57Bernt Rosengren TrioPer Henrik Wallin Tentet + +525410Tony MiddletonAnthony MiddletonAmerican singer. + +Born: 26 June 1934 in Richmond, Virginia, USA. +Died: 7 February 2024 from chronic kidney disease. + +Grew up and went to school in Richmond, Virginia. In the mid 1950s, when he was in his late teens, he moved with his mother to New York City. He excelled at sports and he boxed as an amateur into his early twenties. + +Middleton joined the group [a=The Willows] (before 1954, known as "[a=The Five Willows]") in 1952 and became their lead singer, recording and performing with them until late 1957 when he went solo. Though Middleton recorded more than 30 solo singles, he also cut many more demos and commercials. + +His voice was used on a movie score when he moved to Paris, and his name has been linked with some of the biggest names in the business like [a=Burt Bacharach], [a=Michel Legrand], [a=Stan Applebaum], [a=Leiber & Stoller], [a=Johnny Pate], and [a=Klaus Ogermann], amongst others. +Correcthttps://www.youtube.com/watch?v=J8mS4T_VIV4http://www.tonymiddletonmusic.com/bio.htmlhttp://www.soulmusichq.com/artists/middle.htmA. MiddletonAnthony MiddletonMiddletonT. MiddletonTonny MiddletonTony MiltonThe WillowsThe 5 Willows + +525459Franz LehárFranz LehárAustro-Hungarian composer most known for his Viennese operettas. + +He was born 30 April 1870 in Komárom, Kingdom of Hungary, Austria–Hungary (today Komárno in Slovakia) and died 24 October 1948 in Bad Ischl, Austria.Needs Votehttps://en.wikipedia.org/wiki/Franz_Leh%C3%A1rhttps://www.britannica.com/biography/Franz-Leharhttps://www.imdb.com/name/nm0006167/https://adp.library.ucsb.edu/names/102499CowardDéharF LehárF. LeharF. LehárF. LaharF. LaherF. Le'harF. LeHarF. LearF. LecharF. LegarF. LeharF. LeharasF. LehardF. LehartF. LehàrF. LehárF. LehārsF. LèharF. LéharF. LéhàrF. LéhárF.LeharF.LeharasF.LehárFerenc LehárFerenc Lehár JrFerenc Lehár Jr.FlotowFr,LéharFr. LeharFr. LehárFr. LéharFr.LehárFranc LeharFranc LehárFrancas LeharasFrance LeharFrancis LehārsFranciszek LeharFrank LeharFrankz LeharFranl LéhàrFrans LaharFrans LeharFrans LéhàrFrantz LeharFrantz LehàrFranz - LeharFranz LahrFranz LearFranz LecharFranz Leh'arFranz LehaiFranz LeharFranz Lehar'sFranz LehartFranz LeharàFranz LeherFranz LehrFranz LehàrFranz Lehár Jun.Franz LéharFranz LóharFranz Von LeharFranz leharFranz-LeharFranza LeharFraz LeharHeharIfj. Lehár FerencLaharLearLegarLehArLehanLeharLehar F.Lehar FranzLehar'sLehartLehaárLeherLehàrLehálLehárLehár F.Lehár FerencLehár, FranzLehárwrLehârLehärLekarLhearLieharLèharLéharLéhárR. LeharRavelThe Lehár DynastyЛегарЛегарaЛегараЛегаръЛехарФ. ЛегарФ. ЛегараФ. ЛехарФ.ЛегарФ.ЛегараФеренц ЛегарФр. ЛехарФранц Легарф. Лехараフランツ・レハールフランツ・レハール = Franz Lehárレハール + +525460Ruggiero LeoncavalloRuggiero Giacomo Maria Giuseppe Emmanuele Raffaele Domenico Vincenzo Francesco Donato LeoncavalloItalian opera composer, born 23 April 1857 in Naples, Italy (then Kingdom Of Two Sicilies), died 9 August 1919 in Montecatini Terme, Tuscany, Italy (aged 62). + +His two-act work "Pagliacci" (1892) remains one of the most popular works in the repertory, appearing as number 20 on the Operabase list of the most-performed operas worldwide. +Needs Votehttp://www.klassika.info/Komponisten/Leoncavallo/index.htmlhttp://www.imdb.com/name/nm0502851http://en.wikipedia.org/wiki/Ruggero_Leoncavallohttps://adp.library.ucsb.edu/names/102585C. Ruggiero-Leon CavalloCavalloK. LeoncavalloL. CavalloL. LeoncavalloL. LeoncavaloL. LeoncavoloLaeoncavalloLaoncavalloLeancavalloLeaocavalloLenncavalloLeon CarvalhoLeon CavalioLeon CavalloLeon CavolloLeonCavalloLeonavalloLeonca ValloLeoncaballoLeoncafalloLeoncavallLeoncavallaLeoncavalliLeoncavalloLeoncavallo RuggeroLeoncavallo, RuggieroLeoncavallo.LeoncavaloLeoncavelloLeoncavvaloLeonkavaloLeonkcavalloLeonvavalloLeonvcavalloLeón CaballoLéon CavalloLéoncavalloPucciniR LeoncavalloR. LeoncavalloR. LeocavalloR. Leon CavalloR. LeoncafalloR. LeoncavalloR. LeoncavaroR. LeoncavelloR. LeoncavlloR. LeoncovaloR. LeonkavalasR. LeonkavalisR. LeonkavalloR. LeonkavaloR. LeonkovalisR. LeonkovalloR. León CaballoR. León CavalloR. LéoncavalloR.LeoncavalioR.LeoncavalloReggero LeoncavalloRiggiero LeoncavalloRuggero LeoncavalloRuggero LeoncavaloRuggero LeontcavalloRuggiere LeoncavalloRuggiero LeoncavallaRuggitro LeoncavalloZazàГ. ЛеонковаллоЛеонкаваллоЛеонкавалоЛеонковаллоП.ЛеанковаллоР. ЛеокаваллоР. ЛеоковаллоР. ЛеонкаваллоР. ЛеонкавалоР. ЛеонковаллоР. ЛеонковалоР.ЛеанковаллоР.ЛеонкаваллоРуггеро ЛеонкаваллоРуджеро ЛеонкаваллоРуджиеро Леонкаваллоレオンカヴァッロレオンカヴァルロレオンカヴァロ雷昂卡發洛 + +525469Gaetano DonizettiDomenico Gaetano Maria DonizettiBorn: 1797-11-29 (Bergamo, Italy). +Died: 1848-04-08 (Bergamo, Italy). + +Gaetano Donizetti was an Italian Romantic composer, best known for his almost 70 operas.Needs Votehttps://en.wikipedia.org/wiki/Gaetano_Donizettihttps://www.britannica.com/biography/Gaetano-Donizettihttps://www.treccani.it/enciclopedia/gaetano-donizetti/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102598/Donizetti_GaetanoD.G. DonizettiDenizettiDomenico DonizettiDonazettiDonicetiDonicettiDonigettiDonitzettiDonizattiDonizetiDonizetiiDonizettIDonizettiDonizetti -Donizetti G.Donizetti, GaetanoDonizettoDonizzettiDonnizettiDonrettiDonzettiDonziettiDonzinettiDozettiG DonizettiG. DonicetisG. DoninzettiG. DoninzetttiG. DonizettiG. DonizzetiG. DonizzettiG. DonnizettiG. DonzettiG.DonizettiG.DonizzettiGa. DonizettiGaetanoGaetano Domenico Maria DonizettiGaetano DonazettiGaetano DonitzettiGaetano Donizetti (1797-1848)Gaetano DonizzettiGaetano GiordanoGaetāno DonicertiGaëtano DonizettiGeatano DonizettiJ. DonizettiLa ForgeRombergRossinidonizettiΝτονιτσέτιГ. ДоницетиГ. Доницети.Г. ДоницеттиГ.ДоницеттиГаетано ДоницетиГаэтано ДоницеттиД.ДоницеттиДонецеттиДоницетиДоницеттиДоницетти ГаэтаноДоніцеттіドニゼッティ도니제티 + +525470Francesco Maria PiaveItalian opera librettist who was born in Murano in the lagoon of Venice, during the brief Napoleonic Kingdom of Italy, born May 18, 1810 died March 5, 1876. + +He was most notably known for his collaboration with [a=Giuseppe Verdi].Needs Votehttp://en.wikipedia.org/wiki/Francesco_Maria_Piavehttps://adp.library.ucsb.edu/names/102461& PiaveF-M PiaveF. M. PiaveF. M. PiavoF. Maria PiaveF. P. PiaveF. PiaveF.M. PiaveF.M. PiavéF.M. PiraveF.M.PiaveF.Maria PiaveFR. M. PiaveFr. M. PiaveFr. Maria PiaveFrancesco M PiaveFrancesco M. PiaveFrancesco Maria PiavaFrancesco Mario PiaveFrancesco PiaveFrancisco Maria PiaveIllicaJ. PiaveMaria PiaveMaria-PiavePiavePiavoS. PiaveΦραντσέκσο Μαρία ΠιάβεС. ПиавеФ. М. ПиавеФ. М. ПьявеФ. ПиавеФ. ПьявеФранческо Мария Пьяве + +525705Jean-Paul MengeonJean-Paul MengeonFrench jazz pianist, composer & band leaderNeeds VoteJ. - P. MengeonJ. MengeonJ. P. MengeonJ.-P. MangeonJ.-P. MengeonJ.-P. MingeonJ.P. MengeonJ.P. MingeonJean Paul MengeonJean-Paul MengeinMengeonColeman Hawkins And His OrchestraJean-Paul Mengeon Et Son OrchestreJean-Paul Mengeon Et Ses RythmesJean-Paul Mengeon Et Son QuartetteJean-Paul Mengeon Et Son EnsemblePentagone Quintet + +525849Evert TaubeEvert Axel TaubeSwedish writer, composer, troubadour, lute player, screenwriter and artist, born 12 March 1890 in Gothenburg, died 31 January 1976 in Stockholm. + +Taube's collected literary contributions make him count as one of Sweden's national poets. His rich output includes prose and poetry as well as drawings, watercolors and oil paintings, but it is for the poems, more than 200 in total, that he is best known for. His prose includes, among other things, travelogues and novels. + +He married to [a=Astri Bergman-Taube] in 1925. +He is the father of [a=Sven-Bertil Taube]. +Needs Votehttp://sv.wikipedia.org/wiki/Evert_Taubehttp://en.wikipedia.org/wiki/Evert_Taubehttps://adp.library.ucsb.edu/names/102537Cabaretsångare Evert TaubeE TaubeE. TaubE. TaubeE.TaubeEdv. TaubeEdvart TaubeEvart TaubeEvertEvert A. TaubeEvert Axel TaubeEvert TaubEvert Taube M. Eget Ack. A´ LutaEvert Taube Med Eget Lutack.Ewart TaubeEwert TaubeTaubeTauluTobeEvert Taube-Trion + +526409Siegfried VogelSiegfried VogelGerman bass, born on March 6, 1937 in Chemnitz, Germany.Correcthttp://www.bach-cantatas.com/Bio/Vogel-Siegfried.htmKammersänger Siegfried VogelVogelジークフリート・フォーゲル + +526411Theo AdamTheo AdamGerman bass-baritone opera singer (* August 01, 1926 in Dresden, German Empire; † January 10, 2019 in Dresden, Germany).Needs Votehttps://de.wikipedia.org/wiki/Theo_Adamhttps://www.sadk.de/mitglieder/gedenken/adam-theoAdamT. AdamT. AdamsTeo AdamTh. AdamТ. АдамТео АдамDresdner Kreuzchor + +526412Günther LeibGerman Baritone & Bass vocalist, born 12 April 1927 in Gotha, Thuringia, Germany. Died March 3, 2024.Needs VoteG. LeibGunter LeibGunther LeibGünter LeibLeibГюнтер ЛейбГюнтер Ляйб + +526416Hermann Christian PolsterHermann Christian PolsterBass vocalist (born 8 April 1937 in Leipzig, Germany).Needs Votehttp://hermannchristianpolster.de/cms/http://de.wikipedia.org/wiki/Hermann_Christian_Polsterhttp://www.bach-cantatas.com/Bio/Polster-Hermann-Christian.htmChristian PolsterHermann Christian PolsteHermann PolsterHermann-Christian PollsterHermann-Christian PolsterPolsterDresdner KreuzchorCapella Lipsiensis + +526418Annelies BurmeisterGerman actress and operatic and concert contralto. She was born 23 November 1928 in Ludwigslust, Germany and died 16 June 1988 in Berlin, Germany.CorrectA. BurmeisterováAnnelies BürmeisterAnneliese BurmeisterAnnelis BurmeisterBurmeister + +526419Adele StolteGerman soprano singer, born 12 October 1932 in Sperenberg, † 26. September 2020 in Potsdam, Germany.Needs Votehttps://en.wikipedia.org/wiki/Adele_StolteA. SolteAdele SolteAdèle StolteStolte + +526420Reimar BluthGerman recording supervisor, producer, organist and church musician; from 1967 - 1993 director of classical recordings at label [l47734] (* 1940; † 26 October 2019).Needs Votehttps://www.neue-bachgesellschaft.de/trauer-um-reimar-bluth/https://www.selk.de/index.php/newsletter/5499-vollblutmusiker-reimar-bluth-verstorben-30-10-2019Keimar BluthRaimar BluthRainer BluthReimar Bluth (VEB Deutsche Schallplatten)Reimer BlutReimer BluthReinar BluthReinmar Bluth + +526576Orchestra Of St. Luke'sAmerican chamber orchestra based in New York City, NY. Founded in 1974.Needs Votehttps://en.wikipedia.org/wiki/Orchestra_of_St._Luke%27shttps://www.oslmusic.org/https://www.myspace.com/orchestraofstlukeshttps://www.facebook.com/OSLmusichttps://www.instagram.com/oslmusic/Members Of The Orchestra Of St. Luke'sMembers Of The Saint Luke's Chamber OrchestraOrchestra Of St Luke'sOrchestra Of St. LukesOrchestra Of St. Luke’sOrchestra of St. Luke'sOrchestra of St. Luke’sOrchestre De Saint LukeSt. Luke'sSt. Luke's OrchestraThe Orchestra Of Saint Luke'sThe Orchestra Of St. Luke'sThe Orchestra Of St. LukesThe Orchestra of St. Luke'sThe Saint Luke's Chamber Orchestraセント・ルークス管弦楽団Ron LawrenceGregor KitzisMaxine NeumanMaureen GallagherLois MartinStephen Taylor (2)Chris GekkerStewart RoseSara CutlerMayuki FukuharaJoseph AndererScott KuneyWilliam PurvisRobert WolinskyMitsuru TsubotaDennis GodburnMyron LutzkeKrista Bennion FeeneyLouise SchulmanLiuh-Wen TingScott TempleSheryl HenzeSusan ShumwayDavid CeruttiCarl AlbachJohn RojakDonald RunniclesEllen PayneMelanie FeldMaya GunjiChristoph FranzgroteFritz V KrakowskiAnca NicolauAdam AbeshouseLiz MannLoretta O'SullivanWilliam BlountRonald E. CarboneKarl KawaharaTony FalangaAmy HiragaMitchell WeissAngela CordellMarc GoldbergKarl BennionRebecca MuirNaoko TanakaAnn RoggenNaomi KatzJohn FeeneyMineko YajimaJon ManassePatrick PridemoreJeff CaswellEriko SatoTom SefcovicKenneth FinnMarilyn ReynoldsRobin BushmanDavid WakefieldDaire FitzgeraldGerhardt KochRosalyn ClarkeMarina SturmMichael Powell (7)Stephanie FrickerAloysia FriedmannDavid CarpKyle Turner (4)John CarboneDennis GoodburnRussell RinzerDaniel Olsen (4)Gary KochBasia DanilowRobert Shaw (13)Sarah SchwartzAnca Nikolau + +526579Henryk WieniawskiBorn July 10, 1835 in [url=https://en.wikipedia.org/wiki/Lublin]Lublin[/url], died March 31, 1880 in [url=https://en.wikipedia.org/wiki/Moscow]Moscow[/url]. Polish violinist, composer and pedagogue.Needs Votehttps://en.wikipedia.org/wiki/Henryk_WieniawskiE. WieniawskiEnrique WieniawskyG. VenyavskyG. WjenjawskiGeorg VenjaevskyH. VenavskisH. VieniavskisH. WeniawskyH. WienawskiH. WieniawskeH. WieniawskiH. WieniawskyH. WieniwskiH. WienlawskiH.WieniawskiHeni WieniawskiHenri WienawskiHenri WieniaswkiHenri WieniaswskiHenri WieniawskiHenri Wieniawski, Op. 16Henri WieniawskyHenri WienlawskiHenrik WieniawskiHenry WieniawskiHenry WiniawskyHenryk / Henri WieniawskiHenryk WienawskiHenryk WieniavskiHenryk WieniawskyHenryk WienlawskiKonzert Fur Violine Und Orchester No. 1 Fis-moll Op.14Konzert Fur Violine Und Orchester No. 2 D-moll Op. 22Legend G-moll Op. 17VeniawskyVieniawskyWienavskiWienawskiWienawskyWieniaswkiWieniavskiWieniavskyWieniawskiWieniawskyWienjawskiWienlawskiZigeunerweisen Op. 20ВенявскiйВенявскийГ. ВенявскийГ. ВенявськийГ. ВиенявскийГ.ВенявскийГенрик ВенявскийГенрих Иосифович ВенявскийХ. Виенявскиヘンリク・ヴィエニャフスキヘンリク・ヴィエニャフスキヴィエニャフスキヴィエニヤフスキ維尼亚夫斯基 + +526590Jascha HeifetzИосиф Рувимович ХейфецRussian-Lithuanian-American violin virtuoso, born February 2 [O.S. January 20], 1901, Vilna, Vilna Governate, Russian Empire (now Vilnius, Lithuania), died December 10, 1987, Los Angeles, California, US. + +His name transliterates to [i]Iosif Ruvimovich Kheyfets[/i], conforming to Russian patronymic usage. The Kheyfets were Jewish, and Jascha was a common Yiddish diminutive for Joseph. The surname was anglicized Heifetz. +His father, Reuven Heifetz, was a local violin teacher and served as the concertmaster of the Vilnius Theatre Orchestra for one season before the theatre closed down. Heifetz and his family left Russia in 1917, traveling by rail to the Russian far east and then by ship to the United States, arriving in San Francisco. +He became a naturalized American citizen in 1924. + +Famous for his arrangement and making popular the tune “Hora Staccato” composed by [url=https://www.discogs.com/artist/523641/]Grigoraș Dinicu[/url]. +Needs Votehttps://jaschaheifetz.com/https://en.wikipedia.org/wiki/Jascha_Heifetzhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103499/Heifetz_JaschaD. HeifetzG. HeifetzHaifetzHeifertzHeifetzHeifetz G.HeifitzHerfetzHiefetzI. HeifetzJ HeifetzJ. HeifecasJ. HeifetxJ. HeifetzJ. HeiletzJa. HeifetzJascha Heifetz, ViolinJascha HeifitzJasha HaifetzJasha HeifetzJaša HeifetzJim HoylY. KheifetsY.ハイフェッツYa. HeifetsYa. HeifetzYa. KheifitsYasha KheifetsИосиф (Яша) ХейфецЛ. ХейфецаХейфецЯ ХейфецЯ. ХейфецЯ. ХейфецЯша ХейфецЯша Хейфец = Jascha HeifetzЯша ХейфецъЯша Хейфицハイフェッツヤッシャハイフェッツヤッシャ・ハイフェッツJosé de Sarasate + +526591Lamberto GardelliLamberto GardelliNovember 1915 – 17 July 1998 +Gardelli was an Italian conductor, particularly associated with the Italian opera repertory, especially the works of Giuseppe Verdi. +Needs Votehttp://en.wikipedia.org/wiki/Lamberto_GardelliGardelliL. GardelliL.GardelliLabmerto GardelliLambert GardelliLamberti GardelloLamberto GarelliLambertro GardelliLanberto GardelliЛ. ГарделлиЛамберто Гарделлиランベルト・ガルデッリランペルト・ガルデッリ + +526592Rudolf KempeGerman conductor (* 14 June 1910 in the vicinity of Dresden, German Empire; † 12 May 1976 in Zürich, Switzerland). [a8551878] chief conductor (1965–1972). +First oboist of the [a522210] at the age of 19. In 1933 he was appointed Korrepetitor at the [l690848], delivering his conductor debut three years later. Following his military service he was the main conductor of the [l1052907]. From 1948 he was with the Weimar Nationaltheater ([l4130644]), and from 1949 to 1952 with the Dresdener Staatsoper. From 1952 to 1954 we worked for the [l587621] and debuted at the [l372665] with this ensemble in 1954. He led on the annual 'Ring' performances at the [l1812877] from 1960 to 1963. [a846301] himself appointed him to his successor at the [a341104] where he started working in 1975, though at the same time he was musical director with [a8551878] and [a261451]. In 1975 he was also appointed chief conductor of the [a289522].Needs Votehttps://www.rudolfkempesociety.org/https://en.wikipedia.org/wiki/Rudolf_Kempehttps://www.allmusic.com/artist/rudolf-kempe-mn0000752882https://rateyourmusic.com/artist/rudolf-kempeKempeMunich Symphony OrchestraR. KempR. KempeRudolf KempRudolfe KempeRudolph KempeRudolphe KempeРудольф Кемпеルドルフ・ケンペStaatskapelle DresdenTonhalle-Orchester Zürich + +526593Mady MespléFrench opera singer (born March 7th, 1931, Toulouse, France; died May 30th, 2020), she was the leading high coloratura soprano of her generation in FranceNeeds Votehttp://en.wikipedia.org/wiki/Mady_Mespl%C3%A9Mady MespleMady MesplèMespléМади МеплеМади Месплеマディ・メスプレ + +526594Ottorino RespighiOttorino Respighi (born in Bologna, July 9, 1879 - died in Rome, April 18, 1936), was an Italian composer, musicologist and violinist. He is perhaps best known for his Roman trilogy and the three suites of Ancient Airs and Dances.Needs Votehttps://web.archive.org/web/20200217192738/http://www.amicidirespighi.it/https://en.wikipedia.org/wiki/Ottorino_Respighihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102671/Respighi_OttorinoC. RespighiO. RespighiO. RespigiO. RespigisO.RespighiOtorino RespigiOttarino RespighiOttorine RespighiOttorino ResphigiOttorino RespihiOttorio RespighiResphighiResphigiRespighiRespighniRespigiRespigihiRossini/RespighiО. PeспигиО. РеспигиО.РеспигиОт. РеспигиОторино РеспигиОтторино РеспигиОтторино РеспиньиРеспигиオットリーノ・レスピーギレスビーギレスピーギ + +526595Danielle MilletFrench mezzo-soprano vocalist, sang at the Opéra Comique in Paris.Needs VoteDaniel MilletDanielle MalletDanielle MillerDanièle MilletDaniëlle MilletMillerダニエル・ミレ + +526604Peter Gorski (2)Correct + +526839Mercedes RuizClassical cellist.Needs VoteMercedes RuízConcerto KölnLe Concert Des nationsHespèrion XXIEnsemble FontegaraConductus Ensemble + +527005Peter AppleyardCanadian vibraphonist and drummer, born 26 August 1928 in Cleethorpes, England, and died 18 July 2013 on his farm in Eden Mills, Canada.Needs Votehttps://adp.library.ucsb.edu/names/200292P. AppleyardPete AppleyardPeter Appleyard & Orch.Peter Appleyard And The All Star Swing BandPeter Appleyard QuintetBenny Goodman SextetThe Calvin Jackson QuartetAll Star Swing BandPeter Appleyard OrchestraThe Rick Wilkins OrchestraJohnny Burt TrombonesPeter Appleyard QuartetMel Torme And His All-Star QuintetThe Johnny Burt Society + +527059Otmar BergerGerman double bassist.CorrectGürzenich-Orchester Kölner PhilharmonikerBundesjugendorchester + +527063Werner DickelGerman viola player who also teaches in Wuppertal.Needs VoteEnsemble ModernCamerata Academica SalzburgThe Chamber Orchestra Of EuropeEnsemble Modern OrchestraRosa Klassik + +527161David WillcocksSir David Valentine Willcocks CBE, MCBritish choral conductor, organist, and composer. During his life he was largely associated with [a700443], with whom he became an Organ Scholar in 1939. His studies were interrupted by the start of the Second World War, in which he served with distinction (receiving the Military Cross), before returning to his studies in 1945. He was then elected to a Fellowship in 1947, and subsequently became their Director of Music from 1957 to 1974. However, he also performed with the [a3861383], [a424273] (1960-1998), Salisbury Musical Society (1947-1950), Worcester Cathedral (1950-57), the Three Choirs Festival (1951, 54 & 57), the City of Birmingham Choir, and [a2969087] (1956-1974). + +Willcocks began his musical career at the age of 8, as a chorister at Westminster Abbey (1928-1934) where he was conducted by [a255804]. From 1934 to 1938, he studied music at Clifton College, Bristol, before going to Cambridge in 1939. He was made a Commander of the Order of the British Empire (C.B.E.) in 1971, and was knighted in 1977. Notably in 1981, he was one of musical directors for the wedding of Prince Charles and Lady Diana Spencer. + +He is the father of [a2599951]. + +Born: 30th December 1919, in Newquay, Cornwall, England. +Died: 17th September 2015, in England. (natural causes, aged 95)Correcthttps://en.wikipedia.org/wiki/David_Willcockshttps://www.bach-cantatas.com/Bio/Willcocks-David.htmhttps://www.imdb.com/name/nm2275395/Conducted By David WillcocksD WillcocksD. V. WillcocksD. WilcocksD. WillcocksD. WillcooksD.WillcocksDavid N. WillcocksDavid V WillcocksDavid WilcocksDavid WilcoxDavid WillcoksDir David WillcocksSir D. WillcocksSir David Valentine WillcocksSir David WilcocksSir David WillcockeSir David WillcocksSir David Willcocks, C.B.E., M.C.Sir David WillcoksSir David WillocksThe Director Of Music, David WillcocksWilcocksWilcoxWillcocksWillcoxWilllcocksДейвид Уилкоксデイヴィッド・ウィルコックス + +527166Andrea RobinsonAndrea Lynn RobinsonAmerican singer and voice actressNeeds Votehttps://en.wikipedia.org/wiki/Andrea_Robinson_(singer)http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=291058&subid=0A. RobinsonRobinsonアンドレア・ロビンソンWhoopi & The SistersThe KnickersThieves (3)Voice Of The City + +527198Charles TunnellBritish cello player. +Co-founder of the [a=Tunnell Trio] alongside his brother [a=John Tunnell] (violin), and his sister [a=Susan Tunnell] (piano). +Uncle of [a=Jonathan Tunnell], and [a=Philippa Tunnell].Needs VoteC. TunnellCharles TunnelЧарлз ТаннеллEnglish Chamber OrchestraThe London Chamber OrchestraTunnell Piano QuartetThe Lansdowne String QuartetTunnell TrioGibson String QuartetThe London Oboe QuartetBig Band (16) + +527308Esther MellonClassical cellistCorrectBaltimore Symphony Orchestra + +527797Jennie GoldsteinJennifer GoldsteinClassical violinist.Needs VoteJennifer GoldsteinRoyal Philharmonic OrchestraChristchurch Symphony Orchestra + +527933Andrew HaveronBritish violinist, born in 1975 in London, UK. +First violinist with [a=Brodsky Quartet]. Leader of [a=The John Wilson Orchestra] since its inception. Concert Master of the [a=Sydney Symphony Orchestra]. In July 2007, he became leader of the [a=BBC Symphony Orchestra]. Joint Concert Master of the [a454293] since 2012.Needs Votehttp://www.andrewhaveron.com/https://twitter.com/havertweethttps://www.adderburyensemble.com/andrew-haveron-violin/https://citynews.com.au/2015/sting-sibelius-violinist-andrew-haveron/Brodsky QuartetBBC Symphony OrchestraThe Millennia EnsembleLondon Metropolitan OrchestraPhilharmonia OrchestraSydney Symphony OrchestraElektra String QuartetThe John Wilson OrchestraThe Adderbury EnsembleSinfonia Of London Chamber Ensemble + +527936Harvey De SouzaBritish violinist, born in Mumbai, India.Correcthttps://santafechambermusic.com/bio/harvey-de-souza/The Academy Of St. Martin-in-the-FieldsMarylebone CamerataThe Chamber Orchestra Of London + +527956Bob CrosbyGeorge Robert CrosbyAmerican dixieland/swing bandleader and vocalist, born August 23, 1913, Spokane, Washington, USA, died March 9, 1993, La Jolla, California, USA. +Younger brother of [a=Bing Crosby]. +Needs Votehttps://en.wikipedia.org/wiki/Bob_Crosbyhttps://adp.library.ucsb.edu/names/104408B CrosbyB. CrosbyBobBob CrosabyBob CrosbBob Crosby & His OrchestraBob Crosby And The Bob Cat OrchestraBob CrubbyCrosbyLt. Bob CrosbyLt. Bob Crosby (USMC)Lt. Bob Crosby, USMCR.CrosbyBob Crosby And The Bob CatsBob Crosby And His OrchestraBob Crosby And QuartetteBob Crosby's Dixieland Band + +528150Karl MaddisonKarl MaddisonKarl Maddison (1971-2007)Needs Votehttp://www.facebook.com/pages/Karl-Maddison/206232383808K. MaddisonK.MadisonKarl MadisonMad DogMaddisonYekuanaEvolverNorthfaceNamaste + +528735Gary Todd (2)European jazz bass player.Needs Votehttp://www.garytodd.com/Garry ToddGary Lyn ToddGary Lynn ToddToddTodd-EddyBetweenStan Kenton And His OrchestraPaul Kuhn BigbandLeszek Zadlo EnsembleThe Gipsy Jazz Violin SummitLadia's DixiebandKen Rhodes QuintetKen Rhodes Big BandSmiley Winters Memorial QuartetBernhard Ullrich Quartett + +528844Nat PavoneAmerican jazz trumpet playerNeeds VoteNat PavonneNatale PavonePavoneWhite ElephantWoody Herman And His OrchestraSlide Hampton OctetMaynard Ferguson & His OrchestraMike Mainieri & FriendsNewport Youth BandWoody Herman And The Thundering HerdEmanons Storband + +529119Ed AtkinsJazz trombonist, born c. 1887 in New Orleans, Louisiana. Deceased. +Played with [a=King Oliver] in New Orleans, settled in Chicago after World War I, playing with Oliver, [a=Erskine Tate], [a=Junie Cobb] and others. Continued playing in the 1930s; with Art Short Orchestra in 1932.Needs Votehttps://www.allmusic.com/artist/ed-atkins-mn0001280159E. AtkinsEd. AtkinsEddie AtkinsKing Oliver's Jazz Band + +529450Biréli LagrèneBiréli LagrèneFrench jazz musician, guitar player and composer of Sinti origin, born September 4, 1966 in Saverne, France. +A "guitar phenomenon", according to [a=John McLaughlin], he came to prominence in the 1980s via his manouche (Django-like) style. After collaborations with his musical patron [a=Jan Jankeje], he has cooperated from the early 1980s on - at a very young age and still being considered a child prodigy - with famous jazz artists such as [a=Jaco Pastorius], [a=Benny Carter] and [a=Benny Goodman].Needs Votehttps://en.wikipedia.org/wiki/Bir%C3%A9li_Lagr%C3%A8nehttps://birelilagrene.bandcamp.com/B. LagreeneB. LagreneB. LagrèneB. LagréneBireliBireli LaGreneBireli LagreneBireli LagrèneBireli LagréneBireli LegreneBirell LagrienBirelli LagreneBirelli LagrèneBiréli LagreneLagreneLagrene BireliLagrèneLagréneビレリ・ラグレーンGil Evans And His OrchestraBiréli Lagrène EnsembleFront Page (9)André Ceccarelli TrioBiréli Lagrène Gipsy Project + +529504Jari HyttinenJari Juhani HyttinenJari "Cyde" Hyttinen is a Finnish singer and musician. Born on February 22, 1959 in Joensuu, Finland.Needs VoteCyde HyttinenHyttinenJari "Cyde" HyttinenJari "cyde" HyttinenSyde HyttinenCharlie DollsJari KullervoIsmo Alangon RadioJerry SultsinaSilmienvaihtajatKosmonautsSössölandian Kultakurkut + +529879Gerald ReevesUS jazz trombonistNeeds Votehttps://www.allmusic.com/artist/gerald-reeves-mn0001236416/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/339556/Reeves_GeraldG. BryantG. ReevesLouis Armstrong & His Hot SevenJelly Roll Morton's Red Hot PeppersReuben "River" Reeves & His River BoysJohnny Dodds' Black Bottom Stompers + +529885Jasper DrexhageJasper O. DrexhageNeeds Votehttp://www.drexmeister.com/A. DrexhageDrexhageDrexhage, J.Drexhage, JasperDrexmeisterJ DrexhageJ. BrexhageJ. DrekshageJ. DrexhageJ. DrezhageJ.DrexhageJasper "Drexmeister" DrexhageJasper 'Drexmeister' DrexhageJasper O DrexhageDrexmeisterHuman ResourceSymbiosis of SoundsNiso OmegaDutchican SoulGlowing Sounds Of Darkness + +530169Kai WesselGerman Countertenor Born 1964 in Hamburg. He studied music theory with Prof. R. Ploeger, composition with Prof. Dr. F. Döhl, and Voice with Prof. Ute von Garczynski at the Lübeck College of Music. Parallel to this he studied Baroque performance practice at the Schola Cantorum Basiliensis with [a=René Jacobs]. He won prizes at the competition of the Association of German Music Teachers and Performing Artists in Berlin and at the Concours Musica Antiqua of the Flanders Festival in Brugge. Needs Votehttp://kaiwessel.com/https://de.wikipedia.org/wiki/Kai_Wessel_(Sänger)K. WesselKaï WesselWesselCollegium VocaleLa Chapelle RoyaleCantus CöllnRheinische KantoreiCapella De La TorreAbendmusiken BaselEcco La Musica + +530183David BursackDavid Joseph BursackViolist.Needs VoteDavid J. BursackOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +530229Dov ScheindlinViola player, married to violinist [a=Katherine Fong]Needs Votehttp://dovscheindlin.com/Dov_Scheindlin/Welcome.htmlDovDov SheindlinArditti QuartetOrpheus Chamber OrchestraThe Metropolitan Opera House OrchestraAngeli Strings + +530230François EckertSound engineer and producer for classical/contemporary releases.Needs Votehttp://www.sonomaitre.com/Fran EckertFrancois EckertFrançois "Tonmeister" EckertFrançois EckaertFrançois EckartFrançois Eckett + +530518Adrian WallisCellist from Sydney, AustraliaNeeds Votehttps://www.sydneysymphony.com/musicians/adrian-wallisSydney Symphony OrchestraElektra String Quartet + +530814Kirk TrevorBritish cellist and conductorCorrecthttp://kirktrevor.com/Kick Trevor + +531005Milton SeniorAmerican saxophonist and clarinetist, born c. 1900 in Springfield, Ohio, died. c. 1948. +One of the founding members of the Synco Septet in 1921; William McKinney assumed its leadership and the band was known as the Synco Jazz Band before it became [a=McKinney's Cotton Pickers] in 1926. Senior left McKinney in 1928 and in the early 1930 led his own band, which included [a=Art Tatum] and [a=Teddy Wilson].Needs Votehttps://www.allmusic.com/artist/milton-senior-mn0001638073Milt SeniorSeniorMcKinney's Cotton PickersThe Chocolate Dandies + +531382Luigi Lopez(Rome, 30 September 1947 – Civita Castellana, Viterbo, May 6, 2025) was an Italian composer, musician, and singer. Needs Votehttps://it.wikipedia.org/wiki/Luigi_Lopezhttps://en.wikipedia.org/wiki/Luigi_LopezF. LopezG. LopezGigi LopezL. LopezL. Lopez.L. LópezL.LopezLopezLópezЛ. ЛопесFantasy (13)Bob & LuisOrchestra Di Gi Lopez + +531527Tommy StrongSound engineer known to have worked at [l=RCA Victor Studios, Nashville] and [l385781]. + +Primarily on 1960/70s [l=RCA]/[l=RCA Victor] and [l=Monument] releases, later on 1970/80s [l=Sing (2)] and [l=Skylite] releases.Needs VoteT. StrongTom Strong + +531602Ralph RaingerRalph ReichenthalAmerican musician, film composer and songwriter, born October 7, 1900 in New York and died by a fatal plane crash near Palm Springs, California on October 23, 1942.Needs Votehttp://www.songwritershalloffame.org/exhibits/C236https://www.imdb.com/name/nm0006247/https://adp.library.ucsb.edu/names/109746https://en.wikipedia.org/wiki/Ralph_RaingerDavid RaingerGrainerGraingerGrangerGrawgerGreigerL. RaingerL. RangerN.RaingerPaingerR RaingerR RangerR, RaingerR. GraingerR. RaigenR. RaignerR. RainerR. RaingerR. RainingerR. RangerR. RanierR. RayngerR. RingerR. レイントR.RaingerR.RangerRaigerRaignerRaiingerRainbowRainerRaingarRaingeRaingelRaingerRainger RalphRainger*Rainger, RalphRaingersRainierRainingerRainngerRalf RaingerRalngerRalp RaingerRalph GraingerRalph RainerRalph RaingRalph RainingerRalph RangerRalph RanigerRalph RianderRalph RobinRamgerRangerRanigerRaugerReinerReingerRuingerレインジャー + +531605Leo RobinLeo RobinAmerican composer, lyricist and songwriter, born April 6, 1895 in Pittsburgh, Pennsylvania, USA, died 29 December 1984 Woodland Hills, California, USA. 575 song titles listed at ASCAP. Inducted into the Songwriters Hall of Fame in 1972.Needs Votehttps://www.songhall.org/profile/Leo_Robinhttps://en.wikipedia.org/wiki/Leo_Robinhttp://www.imdb.com/name/nm0732209/https://adp.library.ucsb.edu/names/105220, Ralph RaingerAl RobinBobbinsC. RobinE. RodinI. RobinIra RobinL . RobinL RobinL, RobinL. PobinL. R. RobinL. R. TrustL. RobbinL. RobbinsL. RobinL. Robin.L. RobinsL. RubinL. ロビンL..RobinL.RobinLee RobbinLee RobinLeoLeo RabinLeo RobbinLeo RobbinsLeo RobiLeo RobinsLeo RobinsonLeo RubinLeon RobinLes RobbinsLes RobinLobinLéo RobinRabinRboninReo RobinRobbinRobbinsRoberRobertRobibRobinRobin LeoRobin*Robin-RobindRobingRobinsRobisRobsonRobynRohinRoinRosinsonRovinRubinléo RobinРобинРобинсロビン + +531975Aldo FrankEldo PapiriFrench pianist, songwriter, conductor, arranger and singer born September 20, 1941 in Aubervilliers, Saint-Denis and died September 22, 2021 in La Verrière, Île-de-France. +Pianist accompanist of [a=Nicole Croisille].Needs VoteA FranckA. FranckA. FrankA.FranckA.FrankAl. FrankAldo FranckFranck AldoFranck RecordsFrankFrank AldoАльдо ФранкEldo PapiriLe Grand Orchestre De Aldo FrankAldo Frank Et Son OrchestreCafé Des SportsPotatoes Trio + +532002Eva BöckerClassical cellist. Member of the Ensemble Modern since 1994. She performed also with the Parisian [a=Ensemble InterContemporain] and as solo cellist at the Opera de la Monnaie in Brussels.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/eva-boeckerEva BockerEnsemble ModernEnsemble Modern Orchestra + +532086Yehudi MenuhinYehudi Menuhin, Baron Menuhin of Stoke d’AbernonAmerican Swiss British violinist and conductor, born 22 April 1916 in New York City, New York, USA and died 12 March 1999 in Berlin, Germany. Brother of [a=Hephzibah Menuhin]. Father-in-law of [a1214103] (1960-1969). +Order of Merit. +Knight Commander (KBE) - Order of the British Empire.Needs Votehttps://www.menuhin-foundation.com/https://www.facebook.com/InternationalYehudiMenuhinFoundation/https://www.youtube.com/channel/UCwKvO_dfu6d4oZVzsb9zNwQhttps://www.linkedin.com/company/international-yehudi-menuhin-foundation/https://www.instagram.com/menuhin_foundation/https://www.menuhinschool.co.uk/https://en.wikipedia.org/wiki/Yehudi_Menuhinhttps://adp.library.ucsb.edu/names/102026Giovanetto Yehudi MenuhinGiovinetto Yehudi MenuhinJ.S. BachJehudi MenuhinLord MenuhinLord Yehudi MenuhinMaster Yehudi MenuhinMenuhinMenuhunMr. MenuhinSir Jehudi MenuhinSir Yehudi MenhuinSir Yehudi MenudinSir Yehudi MenuhinSir Yehudin MenuhinThe Lord Menuhin OM KBEY.Y. MenuhinYehudiYehudy MenhuinYehudy MenuhinЕгуди МенухинЕудин МенуинИ. МенухинИ. МенухинаИегуди МенухинИегуди МенухинаМенухинСзр Иегуди Менухинаメニューインユーディメニューインユーディ・メニューインユーディ・メニューインRoyal Philharmonic OrchestraCamerata Lysy GstaadBath Festival Chamber OrchestraBath Festival OrchestraThe Menuhin - Kentner - Cassado Trio + +532088Menuhin Festival OrchestraCorrectAmbrosian SingersMenuhin EnsembleMenuhin FestivalMenuhin OrchestraMenuhin-Festival OrchestraOrchestra MenuhinThe Menuhin Festival OrchestraThe Menuhin Festival-OrchestraThe Menuhin OrchestraThe Yehudi Menuhin OrchestraBath Festival OrchestraRoger Smith (3)John BurdenDavid MunrowGeorge MalcolmRonald Kinloch AndersonJohn Turner (5)Nannie JamiesonValda AvelingRobert Masters (2) + +532089George MalcolmGeorge John MalcolmEnglish pianist, organist, composer, harpsichordist, conductor and bassoonist (born 28 February 1917 in London, UK - died 10 October 1997 in London, UK). + +Malcolm's first instrument was the piano, and his first teacher was a nun who recognised his talent and recommended him to the Royal College of Music, where he studied under Herbert Fryer. He attended Wimbledon College, and went on to study at Balliol College, Oxford. + +During the Second World War he was a bandleader. After the war, he developed a career as a harpsichordist, although he continued to make occasional appearances as a pianist in chamber music, notably with the Dennis Brain Wind Ensemble. He left few recordings of his piano playing (one interesting example is the first performance of the Gordon Jacob Sextet, written for the group). + +In the 1950s he participated in annual concerts featuring four harpsichordists, the three others being Thurston Dart, Denis Vaughan and Eileen Joyce. In 1957 this group also recorded two of Vivaldi's Concertos for Four Harpsichords, one in a Bach arrangement, with the Pro Arte Orchestra under Boris Ord. Malcolm, Dart and Joyce also recorded Bach's Concerto in C for Three Harpsichords. In 1967, he appeared with Eileen Joyce, Geoffrey Parsons and Simon Preston in a 4-harpsichord concert with the Academy of St Martin in the Fields under Neville Marriner in the Royal Festival Hall. + +As well as Baroque works, he played modern harpsichord repertoire including his own compositions "Bach before the Mast" (a humorous set of variations on The Sailor's Hornpipe in the style of Johann Sebastian Bach), and "Variations on a Theme of Mozart". Like Wanda Landowska, he favoured rather large 'revival' harpsichords with pedals, built in a modern style, that now are seen as "unauthentic" for Baroque music. While aspects of his interpretations may seem outdated by the standards of today's historically informed performance practice, his recordings and live performances introduced many people to the harpsichord and influenced a number of today's musicians. + +He also pursued a notable career as an organist and choir-trainer: for 12 years (1947–1959), he was organist of Westminster Cathedral, where he developed the choir's "continental" sound, which contrasts with that of Anglican choirs. Benjamin Britten's Missa Brevis was commissioned for his retirement. He continued to play the organ, recording the Handel organ concertos for example. Malcolm was founding patron of Spode Music Week, an annual residential music school that places particular emphasis on the music of the Roman Catholic liturgy. Malcolm also composed for voices, a well-known piece being his Palm Sunday introit Ingrediente Domino. + +Needs Votehttp://www.georgemalcolm.xcellent-stuff.co.uk/biographical1.htmlG. MalcolmG. MalcomGeorg MalcolmGeorge MalcomGeorges MalcolmMalcolmMalcomДжордж МалколмMenuhin Festival OrchestraThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsWestminster Cathedral ChoirNorthern SinfoniaBath Festival OrchestraSolistenensemble Der Wiener StaatsoperGeorge Malcolm Piano Trio + +532265Kiri Te KanawaClaire Mary Teresa RawstronDame Kiri Jeanette Claire Te Kanawa, ONZ, Ch, DBE, AC is an operatic soprano singer. She was born on 6 March 1944 in Gisborne, New Zealand, of European and Maori heritage. By the time she was 20 she had won the major vocal prizes available in the South Pacific, and had started her recording career with Kiwi Records. She then moved to London to study at the London Opera Centre and pursue her singing and recording career. + +Needs Votehttp://www.kiritekanawa.orghttp://en.wikipedia.org/wiki/Kiri_Te_KanawaDame Kiri KanawaDame Kiri Te KanawaElizaK.Te KanawaKanawaKira Te KanawaKiriKiri Te Kanawa ( Desdemona )Kiri Te Kanawa ( Manon Lescaut )Kiri Te Kanawa, FiordiligiKiri TekanawaKiri!Te KanawaThe Young Kiriキリ・テ・カナワ마오리 합창단키리 테 카나와 + +532268Hanno RinkeGerman classical producer, composer, author and director, born 1946 in Berlin, Germany.Correcthttp://www.hanno-rinke.deハンノ•リンケハンノ・リンケハンノ・リンケ + +532276Tatiana TroyanosAmerican mezzo-soprano of Greek and German descent. She was born 12 September 1938 in New York, New York, USA and died 21 August 1993 in New York, New York, USA.Correcthttp://en.wikipedia.org/wiki/Tatiana_TroyanosT. TroyanosT.TroyanosTatiana TroyancaTatiana TroyanoTatiano TroyanosTatjana TroyanosTitiana TroyanosTroyanosТатьяна ТрояносThe Metropolitan Opera + +532425Viktoria MullovaViktoria Yurievna Mullova (Russian: Виктория Юрьевна Муллова)Born: 27 November 1959, Zhukovsky, Moscow, Russian SFSR, Soviet Union + +[b]Viktoria Mullova[/b] is a British violinist of Soviet origin who has become highly regarded for her performances and recordings of a number of great violin concertos, compositions by [a=Johann Sebastian Bach], and her innovative interpretations of popular and jazz compositions by [a=Miles Davis], [a=Duke Ellington], [a=The Beatles], and others. +After studying at the Central Music School of Moscow and at the Moscow Conservatoire under Leonid Kogan, she won first prize at the 1980 International Jean Sibelius Violin Competition in Helsinki and the Gold Medal at the International Tchaikovsky Competition in 1982. During a tour of Finland in 1983, Mullova and her lover Vakhtang Jordania (who posed as her accompanist so they could defect together), left the hotel in Kuusamo, after Jordania told the KGB officer who was watching them that Mullova was too sick from drinking to attend the afterparty. They left the Stradivarius owned by the Soviet Union on the hotel bed, jumped into a taxi, and drove several hundred kilometers to the Swedish border. In Sweden, they applied for political asylum. At that time, the Swedish police treated young, on-the-run musicians just like any other political defector and suggested they stay in a hotel over the weekend until the American embassy opened. So for two days they sat under false names in a hotel room, not even daring to go down to the reception desk, wisely, as it turned out, because their photographs were on the front page of every newspaper. Two days later they were already walking around Washington D.C. with American visas in their pockets. Mullova lives currently in Holland Park, London, England. +Mullova has made many recordings including her debut release of the [a=Pyotr Ilyich Tchaikovsky] and [a=Jean Sibelius] violin concertos which was awarded the Grand Prix du Disque. +She formed the Mullova Chamber Ensemble in the mid-1990s. The ensemble has toured Italy, Germany, and the Netherlands and has recorded the Bach violin concertos on Philips Classics. She was nominated for a 1995 Grammy Award for her recording of the Bach Partitas, and she won a 1995 Echo Klassik award, a Japanese Record Academy Award and a Deutsche Schallplattenkritik prize for her recording of the Brahms concerto. Her recording of the Brahms B major Trio (No 1) and Beethoven's Archduke Trio with [a=André Previn] and [a=Heinrich Schiff] was released in 1995, receiving a further Diapason d'Or. +Mullova's international career as a soloist has included performances with The Philharmonia Orchestra, the Vienna Symphony Orchestra, the Montreal Symphony Orchestra, San Francisco and the Bavarian Radio Symphony Orchestra. She has also performed as soloist and director with the Orchestra of the Age of Enlightenment. +Mullova plays on the "Jules Falk" Stradivarius (1723) and a 1750 Guadagnini. Her bows include a Baroque style bow by a modern maker, a Dodd and a Voirin. +Mother of [a=Katia Mullova] (with [a=Alan Brind] and [a=Misha Mullov-Abbado] (with [a=Claudio Abbado])). Married to [a=Matthew Barley] with whom they have a daughter, Nadia Mullova-Barley.Needs Votehttp://www.viktoriamullova.com/https://en.wikipedia.org/wiki/Viktoria_Mullovahttps://ru.wikipedia.org/wiki/%D0%9C%D1%83%D0%BB%D0%BB%D0%BE%D0%B2%D0%B0,_%D0%92%D0%B8%D0%BA%D1%82%D0%BE%D1%80%D0%B8%D1%8F_%D0%AE%D1%80%D1%8C%D0%B5%D0%B2%D0%BD%D0%B0MullovaV. MullovaViktoria MullowaВ. МулловаВиктория МулловаThe Academy Of St. Martin-in-the-FieldsLos Angeles Philharmonic OrchestraThe Chamber Orchestra Of EuropeOrchestra Of The Age Of EnlightenmentIl Giardino ArmonicoVenice Baroque OrchestraThe Mullova Ensemble + +532429Wolfgang StengelRecording supervisor and producer of classical releases.CorrectW. StengelWolf Dieter StengelWolfgang D. StengelWolfgang Dieter Stengelヴォルフガング・シュテンゲル + +532434Yuri BashmetYuri Abramovich Bashmet (Russian: Ю́рий Абра́мович Башме́т, romanized: Yury Abramovich Bashmet)Yuri Bashmet (born January 24, 1953, Rostov-on-Don, USSR) is a Soviet and Russian violist, conductor, teacher, and public figure. +Father of Russian pianist [a5688482].Needs Votehttps://en.wikipedia.org/wiki/Yuri_Bashmethttps://bashmet.newsmusic.ru/https://ru.wikipedia.org/wiki/%D0%91%D0%B0%D1%88%D0%BC%D0%B5%D1%82,_%D0%AE%D1%80%D0%B8%D0%B9_%D0%90%D0%B1%D1%80%D0%B0%D0%BC%D0%BE%D0%B2%D0%B8%D1%87BashmetIouri BachmetJ. BashmetJurij BaschmetYouri BashmentYouri BashmetYri BashmentYu. BashmetYu.BashmetYuriЮ. БашметЮрий Башметユーリ・バシュメットMoscow SoloistsNew Russia State Symphony Orchestra + +532763Rex RobinsonAmerican bassist. Brother of [a=Robby Robinson].Needs VoteRex D. RobinsonRex P. RobinsonMouzon's Electric BandThe Steve March BandThe Steve March Chorus + +532838Donald McVayA viola player. Based in England, UK.Needs VoteDon Mac VayDon Mc VayDon McVayDon McVeyDon McvayThe London Session OrchestraThe Martyn Ford OrchestraLondon SinfoniettaLondon Festival OrchestraThe New Symphonia + +533132Gérard HugéFrench composer and musician.CorrectG. HugeG. HugéG.H.G.HugeGerard HugeGerard HugéGérard HugeHugeSonny SilverGérard Hugé Et Son OrchestreLes Pingouins + +533188Bull Moose JacksonBenjamin Clarence JacksonBorn : April 22, 1919 in Cleveland, Ohio. +Died : July 31, 1989 in Cleveland, Ohio. + +American jazz, blues and early rhythm and blues saxophonist, singer and bandleader. Began on violin, switched to tenor sax in highschool . +Played with [a=Lucky Millinder] (and his orchestra) 1944/45, then he formed his own group called "The Buffalo Bearcats" with which he made several big hits. + +Correcthttp://www.bullmoosejackson.com/http://en.wikipedia.org/wiki/Bull_Moose_Jacksonwww.jazzarcheology.com/artists/sedition_tenorsax_1940_1944.pdf"Bull Moose" Jackson"Bullmoose" JacksonB. JacksonB. M. JacksonB.M. JacksonB.M. Jackson & BrothersBM JacksonBen "Bull Moose" JacksonBen (Bull Moose) JacksonBen JacksonBen. Clarence ‘Bullmoose’ JacksonBenjamin "Bull Moose" JacksonBenjamin "Bullmoose" JacksonBenjamin "Bullmose" JacksonBenjamin 'Bullmoose' JacksonBenjamin 'Mullmoose' JacksonBenjamin C. ‘Bullmoose’ JacksonBenjamin Clarence JacksonBenjamin JacksonBull "Moose" JacksonBull 'Moose' JacksonBull Moose JacsonBullMoose JacksonBullmoose JacksonClarence "Bullmoose" JacksonJacksonMoose JacksonThe MooseLucky Millinder And His OrchestraBull Moose Jackson & His Buffalo BearcatsBig Sid Catlett's BandBull Moose Jackson And His OrchestraBull Moose Jackson & His Band + +533193L. Russell BrownLawrence Russell Brown[b]Please don't confuse with jazz trombonist [url=http://www.discogs.com/artist/Russell+Brown]Russell Brown[/url].[/b] + +Songwriter Lawrence Russell Brown was born in Newark, New Jersey, on June 29, 1940. He was lent a guitar when he was 15, which is when he learned to play and tried to learn how to read music. + +He enlisted in the US Army in the 1960s and toured Europe as part of the Distant Cousins, and after his return to the United States, he became a duo with Raymond Bloodworth, and they performed in Greenwich Village as part of the folk scene. His work was heard by the producer Bob Crewe and his career took off after that. +He has written or co-written over 700 songs over four decades and has seen international chart success with hits such as “Knock Three Times,” “Tie a Yellow Ribbon ’Round the Ole Oak Tree,” “Butterfly (I’ll Set You Free),” and “Sock it to Me Gently.” + +He collaborated with artists who include Tommy Page, Irvine Levine, Raymond Bloodworth, and Lance Hayward. His music has been heard in many movies that include “A Kind of Hush,” “Forrest Gump,” “Wallace & Gromit in the Wrong Trousers,” “Blind Date,” and “An Officer and a Gentleman.” + +Needs Votehttps://en.wikipedia.org/wiki/L._Russell_Brownhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=42937&subid=1http://www.imdb.com/name/nm0114046/http://www.classicbands.com/LRussellBrownInterview.htmlA. Russell-BrownB. Russell BrownBrownBrown - RussellBrown Lawrence RussellBrown/RussellBrowneEl BrownI. BrownJ. BrownL BrownL R BrownL R. BrownL Russel BrownL RussellL Russell BrownL. BrownL. Dussel BrownL. H. BrownL. P. BrownL. Poussel BrownL. R. BrownL. R. BrownL. Rassell-BrownL. Rosell BrownL. Rosell-BrownL. Rossell BrownL. Rusell BrownL. Russ ell BrownL. RusselL. Russel & BrownL. Russel - BrownL. Russel BrownL. Russel-BrownL. Russel/BrownL. RussellL. Russell - BeownL. Russell - BrownL. Russell / BrownL. Russell BrowL. Russell Brown ShaneL. Russell BrowneL. Russell BrwonL. Russell — BrownL. Russell-BrowL. Russell-BrownL. Russell.BrownL. Russell/BrownL. Russell–BrownL. Russell—BrownL. Russel—BrownL. Russle BrownL.BrownL.J.BrownL.R. BrownL.R. Russell BrownL.R.BrownL.Russell - BrownL.Russell B.L.Russell BrownLarry BrownLarry Rousel BrownLarry RussellLarry Russell BrownLarry Russell-BrownLaw BrownLawrence BrownLawrence Russ BrownLawrence RussellLawrence Russell BrownLeon Russell BrownR. BrownR. RusselR.BrownRoseRossel, BrownRossell, BrownRusselRussel - BrownRussel BriwnRussel BrownRussel – BrownRussel-BrownRussel/BrownRussellRussell & BrownRussell - BrownRussell / BrownRussell BrowRussell BrownRussell L. BrownRussell L.BrownRussell, BrownRussell-BrownRussell-brownRussell/BrownZ. BrownБраунThe Distant CousinsThe Duals (2) + +533357MogolGiulio RapettiLegendary Italian lyricist known for his remarkable contributions to the world of music, born 17 August 1936 in Milan, Italy. His talent in crafting heartfelt and poetic lyrics has left an indelible mark on the Italian music scene. + +Mogol's career spans several decades, during which he collaborated with some of the most iconic Italian artists, including [a=Lucio Battisti] and [a=Adriano Celentano]. His ability to convey deep emotions through words has resonated with countless fans, making his songs timeless classics. + +One of Mogol's defining characteristics as a lyricist is his ability to capture the essence of love, longing, and the human experience. His lyrics are often introspective and thought-provoking, touching on themes of love, society, and personal growth. Songs like "Il Mio Canto Libero" and "Pensiero Stupendo" showcase his poetic prowess and continue to be beloved by generations. + +Mogol's impact on Italian music cannot be overstated. He has received numerous awards and accolades for his contributions to the industry, and his songs remain an integral part of the Italian cultural landscape. Whether you're a fan of classic Italian music or simply appreciate beautifully crafted lyrics, Mogol's work is a must-listen.Needs Votehttps://en.wikipedia.org/wiki/Mogol_%28lyricist%29https://it.wikipedia.org/wiki/Mogolhttps://www.imdb.com/name/nm1410649B. MogolC. MogolG. MogolG. RapettiG.R MogolG.R. MogolGiulio "Mogol" RapettiGiulio MogolGiulio Rapetti MogolHogelI. MogolI. MogulIvan MogolIvan MogollIvan MogulIvan MogullL. MogolMagilMagolMegelMobolMocolMogalMogal RapettiMogelMoggolMogoMogoiMogol Rapetti GiulioMogolaMogoliMogollMogolmMogulMogullMongolMoqulNogolPolitoRapettiRapetti MogolRepettiW. MogolМоголג׳. רפטי מוגולמוגולモゴールGiulio Rapetti + +533487Hans CarsteHans Friedrich August CarsteHans Carste (actually Hans Häring) was a German composer and conductor, born 5 September 1909 in Frankenthal, Germany and died 11 May 1971 in Bad Wiessee, Germany. His most famous work is probably the opening theme of the German television news series Tagesschau.Needs Votehttps://de.wikipedia.org/wiki/Hans_Carstehttp://www.klangtext.de/projekte/hans_carste.htmlCarsteCarste, HansCarstenCartseCasteH CarsteH. CarstH. CarsteH. CarstenH. CarstonH.CarsteHans CarstenHans CasterHans KarsteProf. H. CarsteProf. Hans CarsteBob WintherJosef FantaHans Carste Und Sein OrchesterHans Carste & The Berlin Promenade Orchestra + +533659Greg Smith (3)Gregory H. SmithAmerican reeds and horn player (bass and baritone saxophones, flute, clarinet)Needs Votehttps://web.archive.org/web/20160109012614/http://www.centralcoastsax.com/about.htmlhttps://cannonballmusic.co.uk/gsmith.phphttps://web.archive.org/web/20210218072038/http://teenjazz.com/teen-jazz-influence-saxophonist-greg-smith/G. SmithGragory SmithGreg "X-Man" SmithGreg "X-Man' SmithGreg SmithGregg SmithGreggory SmithGregory B. SmithGregory H. SmithGregory SmithSmithStan Kenton And His OrchestraThe Heart Attack HornsThe North Texas State University Lab BandThe Soul LipsThe Killer Force Band1:00 O'Clock Lab Band + +533865Stephen WickStephen WickBritish tuba & ophcicleide player, conductor, arranger and teacher, born 1969. +Active in classical and jazz music, and has appeared with many period instrument orchestras. He was Deputy Principal Tuba with the [a=Oslo Filharmoniske Orkester] (1972-1973), ophicleide player in the [a=Orchestre Révolutionnaire Et Romantique] (January 1990-January 2015), and tuba & ophicleidle player in [a=Anima Eterna] from 2008 to October 2016. Principal Tuba in the [a=City Of London Sinfonia] since July 1977. Teacher at the [l1727868] (July 2004-July 2022) and [l527847] from September 1992. +Son of [a=Denis Wick].Needs Votehttps://www.deniswick.com/about/https://www.facebook.com/stephen.wick.35https://www.linkedin.com/in/stephen-wick-4b94123a/https://www.feenotes.com/database/artists/wick-stephen/https://musicfest.ca/people/stephen-wick/https://www.ram.ac.uk/people/stephen-wickS. WickStephan WickSteve WickSteven WickLondon Symphony OrchestraCity Of London SinfoniaRoyal Philharmonic OrchestraHenry Mancini And His OrchestraNew London ConsortOrchestre Révolutionnaire Et RomantiqueAnima EternaOslo Filharmoniske OrkesterLondon Wind OrchestraLondon Jazz Composers OrchestraThe London Gabrieli Brass EnsembleThe London Brass ConferenceJohn Stevens FolkusLondon Serpent Trio + +534111The Lyndhurst OrchestraCorrectAIR Lyndhurst String OrchestraAir Lyndhurst OrchestraLyndhorst OrchestraLyndhurst OrchestraThe Landhurst OrchestraThe London Lyndhurst OThe London Lyndhurst Orchestra + +534667Gary Cooper (2)Gary CooperEnglish conductor and classical keyboardist (harpsichord and fortepiano). +In 1990, while still an organ scholar at New College, Oxford, he co-founded the New Chamber Opera, and conducted many of their performances. Between 1992 and 2000, he was a member of the baroque ensemble, Trio Sonnerie. He has also directed the Irish Baroque Orchestra, the Akademie für Alte Musik, Arion in Montreal, and was ‘Artist in Residence’ of the Belgian period instrument ensemble, B’Rock. He is a founding member of the period instrument ensemble, ensembleF2, launched at London’s Wigmore Hall in Spring 2009. He performs regularly with ensembles such as The King's Consort, His Majestys Sagbutts & Cornetts and Concordia.Needs Votehttps://web.archive.org/web/20201025044315/https://www.gary-cooper.uk/https://web.archive.org/web/20180830052554/https://gary-cooper.co.uk/https://en.wikipedia.org/wiki/Gary_Cooper_%28musician%29https://www.bach-cantatas.com/Bio/Cooper-Gary.htmhttps://web.archive.org/web/20091129050511/http://www.loganartsmanagement.com/artists/gary-cooperG. CooperГари КуперThe English Baroque SoloistsSonnerieConcordiaThe King's ConsortHis Majestys Consort Of VoicesHis Majestys Sagbutts And CornettsArion Orchestre Baroque + +534822Christoph Willibald GluckChristoph Willibald Ritter von GluckComposer of Italian and French opera in the early classical period. +Born: 1714-07-02 in Berching, Upper Palatinate. +Died: 1787-11-15 in Vienna, Austria-Hungary.Needs Votehttps://gluck-gesellschaft.org/https://en.wikipedia.org/wiki/Christoph_Willibald_Gluckhttps://www.britannica.com/biography/Christoph-Willibald-Gluckhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102604/Gluck_Christoph_WillibaldA.W. Von GlückC W GluckC. GluckC. GlückC. W. GluckC. W. GlückC. W. Von GluckC. W. v. GluckC. W. von GluckC. Willibald GluckC. Willibald von GluckC. von GluckC.-W. GlückC.M. Von GluckC.M. von GluckC.W. GluckC.W. GlückC.W. Van GluckC.W. Von GluckC.W. v. GiuckC.W. v. GluckC.W. von GluckC.W.GluckC.W.R. von GluckCH. W. GluckCh, W. GluckCh. GluckCh. GluckCh. W. GluckCh. W. GlukCh. W. Von GluckCh. W. von GluckCh. W.V. GluckCh.-W. GluckCh.W. CluckCh.W. GluckCh.W. GlückCh.W.GluckChevaliér GluckChistoph GluckChistoph Wilibald GluckChr. GluckChr. V. GluckChr. W. GluckChr. W. Von GluckChr. W. v. GluckChr. W. von GluckChr. W.GluckChr. Willibald GluckChr. von GluckChr.W. GluckChr.W.GluckChrisoph GluckChrist. Willibald GluckChristof Willibald GluckChristofer GluckChristopf Willibald GluckChristoph GluckChristoph GlückChristoph Von GluckChristoph W. GluckChristoph W. Von GluckChristoph W. von GluckChristoph Wilibald GluckChristoph Willbald GluckChristoph Willebald von GluckChristoph Willibad GluckChristoph Willibald GlückChristoph Willibald Ritter von GluckChristoph Willibald Von GluckChristoph Willibald vom GluckChristoph Willibald von GluckChristoph Willibald von GlückChristoph Willibald, Ritter von GluckChristoph von GluckChristoph-W. GluckChristoph-Willibald GluckChristoph-Willibald GlückChristoph-Willibald Von GluckChristophe - Willibald GluckChristophe Willibald GluckChristophe von GluckChristopher GluckChristopher W. GluckChristopher Willibald GluckChrstoph W. GluckCristoph Willibald GluckCristoph Willibald von GluckCristóbal GluckF. GluckG. W. GluckGLuckGluchGluckGluck = ГлюкGluck C. W.Gluck, Ch.W.Gluck, Christoph W.Gluck, Christoph WillibaldGluck-ArnoldGlueckGluekGlukGlückH. GluckK. GliukasK. W. GluckK.W. GluckKristifor Vilibald GlukKristof GliuckKristofs Vilibalds GluksRitter Christoph Willibald GluckVon GluckVon GlückW. Christop GluckW. G. GluckW. GluckW. GlückW. v. GluckWillibald GluckГлукГлюкГлюкъК. В. ГлукК. В. ГлюкК. ГлюкК.Б. ГлукК.В. ГлукК.В. ГлюкКр. ГлюкКристоф Вилибалд ГлукКристоф Виллибальд ГлюкКрістоф Віллібальд ГлюкТомазо АльбиониХ. В. ГлюкХ. ГлюкХ.В. ГлюкХристоф Глюкק. ו. גלוקグルック格魯克 + +534901Peter LaggerSwiss operatic bass, born 7 September 1930 in Buchs, Switzerland and died 17 September 1979 in Berlin, Germany.Needs Votehttps://www.bach-cantatas.com/Bio/Lagger-Peter.htmhttps://en.wikipedia.org/wiki/Peter_Laggerhttps://www.imdb.com/name/nm2226524/LaggerP. LaggerOrchester Rüdiger Piesker"Zum Doppelten Engel"-Cast + +535091Massimo ChiticontiMassimo Chiti ContiItalian DJ and producer. Aka Joy Kitikonti.Needs Votehttp://www.joykitikonti.comhttp://www.facebook.com/joykitikontihttps://www.instagram.com/joykitikonti_/Chiti ContiChiti Conti, M.Chiti Conti, MassimoChiti ContimassimoChiticontiChiticonti, M.Chti Conti, MassimoKiticontiM Chiti ContiM ChiticontiM KitikontiM. Chili ConliM. ChitiM. Chiti ContiM. Chiti KontiM. ChiticontiM. ChitikontiM. Chitti ContiM. Chti ContiM. KiticontiM. KitikontiM.ChitiM.Chiti ContiM.ChiticontiMassimo Chiti ContiMassimo KitikontiMassmo Chiti ContiJakyroJoy KitikontiJomanStereo VibesEnkyP.I.N. FactoryCRWFarmakitMiss MessageJoy DJ MossMariKitTom Pooks & Joy KitikontiDJ F.G.Terre FortiZiet-OOlimpoKiperHoyos CoryaX-Simble + +535524Lennie NiehausLeonard NiehausAmerican alto saxophonist on the West Coast jazz scene, arranger and composer for motion pictures. +Born June 11, 1929 in St. Louis, Missouri, US. +Died. May 28, 2020 in Redlands, California, US. +The son of a Russian immigrant, a violinist who moved the family to Los Angeles to work in the new talkies, Niehaus performed with the [a212786] big band, and other jazz groups in California. A longtime composer for [a550011]'s motion pictures, including "Bird" (1988), he first met Eastwood in basic Army training in 1952 at Fort Ord, CA after being drafted.Needs Votehttps://www.jazzwax.com/2009/11/interview-lennie-niehaus-part-1.htmlhttps://en.wikipedia.org/wiki/Lennie_Niehaushttps://www.imdb.com/name/nm0006215/https://adp.library.ucsb.edu/names/333901L NiehausL. NIehausL. NiehausL.NiehausLenie NiehausLennie NeihausLennie NiehaudLennie NiehouseLenny MeihausLenny MiehausLenny NiehausLeny NiehausLeonard NiehausNeihausNeuhaisNiehausNiehaus LennieStan Kenton And His OrchestraLeith Stevens & His OrchestraThe Lennie Niehaus OctetLennie Niehaus QuintetLennie Niehaus Quintet + OneShorty Rogers And His Augmented "Giants"Jack Sheldon And His Exciting All-Star Big-Band + +535730Oliver LeighsOliver LeighsCorrecthttp://www.oliverleighs.com/http://www.myspace.com/oliverleighsOllie LeighsAyana + +535836Abe LincolnAbram LincolnAmerican Dixieland jazz trombonist, born March 29, 1907, Lancaster, Pennsylvania, died June 9, 2000, Van Nuys, California. + +Abe Lincoln, renowned as a masterful dixieland player, enjoyed a considerable reputation in traditional jazz circles as a trombonist with a punchy, expressive, hard-hitting style who could improvise fluently in the idiom. Those qualities ensured he was much in demand, both as a performer and a prolific session musician, and he appeared on over 250 recordings across his long career. +Needs Votehttps://adp.library.ucsb.edu/names/116274Able LincolnEddie Miller And His OrchestraBob Scobey's Frisco BandCalifornia RamblersJohn Scott Trotter And His OrchestraWingy Manone's Dixieland BandThe Rampart Street ParadersBobby Hackett And His Jazz BandThe Vagabonds (6)University SixOpie Cates And His OrchestraGinny Simms And Her Orchestra + +535879Rosenna EastBritish violinistCorrectScottish Chamber OrchestraThe Loveboat Big Band + +536409Fabio SteinFabio Benedetti IsidoriSão Paulo-based, Italo-Brazilian tech-trance pioneerNeeds Votehttp://www.fabiostein.nethttp://www.myspace.com/fabiosteinhttp://www.myspace.com/40deghttp://www.fullpack.podomatic.comhttp://www.facebook.com/fabiosteinhttp://www.soundcloud.com/fabiosteinhttp://twitter.com/fabiosteinhttp://www.fabiostein.multiply.comF. SteinFabio SteinsFabiosteinFabio Benedetti IsidoriUprise (3)Electrical + +536499Jean-Pierre LangJean-Pierre LangNeeds VoteC. P. LangE. P. LangG.P. LangJ P LangJ P. LangJ-P LangJ-P. LangJ. P. LangJ. P. LangJ. Pierre LangJ.-P. LangJ.M. LangJ.P LangJ.P. LandJ.P. LangJ.P. LangeJ.P. LangueJ.P.LangJ.Pierre LangJ.p.langJP LangJP. LangJean Pierre LangJean pierre LangJean-Pierre LamsJp LangJp. LangLangLangue JP.P. LangЖ.-П. ЛанAtaulfo Dos AnjosAtaulfo DomingoLe Petit Conservatoire De La Chanson + +536545Eddie Lang's OrchestraCorrectEd Lang & His OrchestraEd Lang And His OrchestraEd Lang's Wonder OrchestraEd. Lang And His OrchestraEddi Lang's OrchestraEddie Lang & His OrchestraEddie Lang And His OrchestraEddie Lang OrchestraEddie Langs OrkesterTommy DorseyJimmy DorseyIzzy FriedmanEddie LangBill RankHoagy CarmichaelStan kingArthur SchuttBernie DalyMike TrafficanteAndy SecrestJoe TartoLeo McConvilleCharlie MargulisGeorge Marsh (2)Bernard Daly + +536656Phil OchsPhilip David OchsBorn - December 19, 1940 in El Paso, Texas. +Died - April 9, 1976 in Far Rockaway, NY (suicide) + +American folk singer/songwriter who was active throughout the 60s and 70s, but committed suicide by hanging himself at his sister's home on April 9th, 1976. Brother of [a=Michael Ochs]. +Needs Votehttp://en.wikipedia.org/wiki/Phil_Ochshttp://sonnyochs.com/philbio.htmlhttps://www.imdb.com/name/nm0643794/https://www.allmusic.com/artist/phil-ochs-mn0000333634Fhil OchsJohn TrainMr. Phil OchsOchsOchs - PhilOrchsOxP OchsP. OakesP. OchsP.OchsPhil OaksPhil OcksPhil OdesPhil OrchsPhil OxPhil. OchsPhilip OxPhils OchsThil OchsФил Оксフイル・オクスThe Campers + +537235Barbara KindermannGerman vocalist.Needs VoteChor der Deutschen Oper BerlinFor Kings And Queens + +537381Vincent ScottoVincent Baptiste ScottoFrench composer (21 April 1874 in Marseille – 15 November 1952 in Paris). +Vincent Scotto started his career in Marseille in 1906 and later moved to Paris. Over the course of a lifetime, he wrote 4,000 songs as well as sixty operettas. He was friends with Marcel Pagnol and wrote music for his films. Overtime, he wrote music for about fifty films in the 1940s and 1950s, and sometimes appeared in them as an actor. + +In 1973, a biographical TV film was broadcast, La Vie rêvée de Vincent Scotto +Needs Votehttp://en.wikipedia.org/wiki/Vincent_Scottohttps://adp.library.ucsb.edu/names/105157B.V. ScottoBaptisteC. ScottoScottScotteScottiScottoScotto BaptisteScotto V.Scotto VincentScotto Vincent BaptisteScottsV ScottoV, ScottoV. B. ScottoV. ScottV. ScotteV. ScottoV. SeattoV. ViScottoV.B. ScottoV.ScottoV.t ScottoVi. ScottoVicent - ScottoVicent ScottoVinc. ScottoVincent Baptiste ScottoVincent S'cottoVincent SchotteVincent ScoVincent ScottVincent ScotteVincenti ScottiVincento ScottoVincenz ScottiVincenz ScottoVinicent/ScottoVinsento ScottoVinvent ScottoW. ScottoW.ScottoWincent ScottoscottoΒινσέντ ΣκοττόВ. СкоттоСкоттоスコットOrchestre Vincent Scotto + +537587Thomas CampionEnglish composer, poet, and physician, (12 February 1567 – 1 March 1620).Needs Votehttp://en.wikipedia.org/wiki/Thomas_Campionhttp://www.luminarium.org/renlit/campion.htmhttps://adp.library.ucsb.edu/names/102161CampianCampionT. CampionTh. CampianTh. CampionThomas CampianThomas ChampianThomas ChampionThos. Campion + +537696Catherine MorganClassical violinist.Needs VoteThe Academy Of St. Martin-in-the-FieldsEt Cetera Ensemble + +538094GracielaGraciela Pérez-GutiérrezGraciela Pérez Gutiérrez was a Cuban salsa & jazz singer (La Habana, 1915 - New York, 2010). She performed around the world, recording and sharing the stage with her adoptive older brother, [a1332854] who encouraged her to sing. They played along [a408342] (originator of the genre Afro-Cuban Jazz) in the world renowned orchestra Machito and the Afro-Cubans. When [a408342] and [a1332854] decided to split, Graciela decided to stay acting with [a408342]. She sang until her 90s [also appears as Graciela Pérez or Graciela Pérez Grillo]Needs Votehttp://en.wikipedia.org/wiki/Gracielahttps://www.montunocubano.com/Tumbao/biographies/Perez,%20Graciela.htmlhttps://www.ecured.cu/Graciela_P%C3%A9rezGabrielaGraciela PerezGraciela PérezGraciellaGrazielaLa Fabulosa GracielaGraciela PerezMachito And His Orchestra + +538476Stuart CaninStuart Victor CaninAmerican violinist, born 5 April 1926 in New York City, New York. Member of the New Century Chamber Orchestra from 1992 to 1999 and the Los Angeles Opera from 2000 to 2010.Needs Votehttps://en.wikipedia.org/wiki/Stuart_CaninCanin StuartSteward CaninStewart CaninStu CaninStuart KamenStuart V. CaninSan Francisco SymphonyThe New Century Chamber OrchestraLos Angeles Opera OrchestraThe Holmby Quartet + +538644Alfons KontarskyGerman pianist and professor for piano in Cologne, Munich and at the Mozarteum in Vienna, born 9 October 1932, in Iserlohn, Germany, died 5 May, 2010. Since the 1950s, together with his brother [a=Aloys Kontarsky], he has been an early participant and later a teacher at the 'Internationalen Ferienkurse für Neue Musik in Darmstadt'. His youngest brother is [a=Bernhard Kontarsky].Needs Votehttps://de.wikipedia.org/wiki/Alfons_Kontarskyhttps://www.uni-mozarteum.at/de/university/personen/emeriti_bio.php?l=de&nr=74A. KontarskyAlfonsAlfons KontarskiAlfons & Aloys Kontarsky + +538821Zubin MehtaZubin MehtaIndian conductor. +Music Director of [a539271], 1960-1967; [a835190], 1962-1978; [a388185], 1978-1991; [a837568] 1981-2019. + +Son of [a=Mehli Mehta]. + +Born April 29, 1936 in Bombay (now Mumbai), India.Needs Votehttps://en.wikipedia.org/wiki/Zubin_Mehtahttps://www.britannica.com/biography/Zubin-Mehtahttps://www.zubinmehta.net/https://web.archive.org/web/20031002183533/https://www.sonyclassical.com/artists/mehta/https://www.imdb.com/name/nm0576590/MehtaMethaWobin MethaZ. MehtaZ. MethaZubhin MehtaZubin MehiaZubin MethaЗ.МехтыЗубин Метаזובין מהטהズービン・メータズービン・メータ指揮メータ + +539034Al StillmanAlbert Irving SilvermanAmerican lyricist from New York, inducted into the Songwriters Hall of Fame in 1982. + +Born; June 26, 1901 in Manhattan, New York +Died: February 17, 1979 in Manhattan, New YorkNeeds Votehttp://en.wikipedia.org/wiki/Al_Stillmanhttps://www.imdb.com/name/nm0830276/?ref_=fn_nm_nm_1https://adp.library.ucsb.edu/names/109882A StillmanA, StillmanA. SillmanA. StilimanA. StilllmanA. StillmamA. StillmanA. StillmannA. StillmerA. StilmanA. TillmanA.StillmanA.StillmannA.V. StillmanAl SillmanAl StillAl StillmannAl StilmanAl StilmannAl TillmanAl. StillmanAl.StollmanAlbert StillmanAlbert StilmanAll StillmanAll StilmanAll TillmanAllan StillmanAllen StillmanAntonio StillmanAtillmanD. StillmanI. StillmanL. StillmanP.StillmanS. StillmanS. StilmanS.K. StillmanShullmanSillmanSpillmanSteelmanStellmanStiLlmanStickmanStillStillamnStillimanStilllmanStillmamStillmanStillman*,Stillman, AStillman, AlStillman, AllenStillmannStilmanStilmannStilmmanStllmanT. StilmanTillmanА. ШтильманЭ. СтиллманסטילמןAlbert Silverman + +539131Artur RodzinskiArtur RodzińskiBorn January 1, 1892 in [url=https://en.wikipedia.org/wiki/Split,_Croatia]Split[/url], died November 27, 1958 in Boston, [b]MA[/b]. American conductor of Polish descent. +Father of [a3682781], past artistic director of the [l1044867] and the [a837548]. + +Second music director of [a547971] from 1933 to 1943, succeeding [a1689097].Needs Votehttps://web.archive.org/web/20080724025001/https://www.classicalrecording.org/zRodzinski/index.htmlhttps://en.wikipedia.org/wiki/Artur_Rodzi%C5%84skihttps://www.poles.org/DB/R_names/Rodzinski_A/Rodzinski_A.htmlhttps://www.britannica.com/biography/Artur-Rodzinskyhttps://www.bach-cantatas.com/Bio/Rodzinski-Artur.htmhttps://www.eugeneistomin.com/great-musical-collaborations/conductors/artur-rodzinski/https://www.imdb.com/name/nm0736191/A. RodzinskiArthur RodzinskiArthur RodzinskijArthur RodzinskyArtur Rodzinski, ConductorArtur RodzinskijArtur RodzinskyArtur RodzinzkiArtur RodzińskiArtur RodzínskiConductor XDirigent XProf. Artur RodzinskiRodzinskiА. Родзиньский + +539272Charles DutoitCharles Édouard DutoitSwiss conductor, born 7 October 1936 in Lausanne, Switzerland. [a8551878] chief conductor (1967–1971).Needs Votehttps://en.wikipedia.org/wiki/Charles_DutoitC. DutoitD. DutoitDuthoitDutoitΝτυτουάШарль Дютуаシャルル・デュトワシャルル・デュトワNHK Symphony OrchestraOrchestre symphonique de Montréal + +539550Jack BultermanJacques Cornelis BultermanDutch trumpeter, pianist, producer, songwriter, arranger and conductor, born 27th September 1909 in Amsterdam, Netherlands, died 27th May 1977 in Amsterdam, Netherlands. + +He was a member of [a=The Ramblers] from 1935 until 1947, and wrote many of their songs. From the late 1940s, he mostly worked as a producer and arranger with artists like the [a=The Blue Diamonds], [a=Anneke Grönloh] and [a=Willeke Alberti]. During the 1970s, he was active with a reunited version of The Ramblers. +Needs Votehttps://www.nldiscografie.nl/jack-bultermanhttps://adp.library.ucsb.edu/names/201267BuitermannBultermanBultermannBulternannButtermanJ. BultermamJ. BultermanJ. BustermanJ. ButermanJ. C. BultermanJ.BultermanJ.C. BultermanJac BultermanJaci BultermannJack BultermannJackie BultermanJacky BultermanJacques Cornelis "Jack" Bultermanジャック・ブルターマンJaap de BieJack Black (18)The RamblersOrkest O.l.v. Jack BultermanDe Jonkers En De JoffersThe Flying Dutchmen (3)Koor o.l.v. Jack BultermanKoor En Orkest o.l.v. Jack Bulterman + +539639Gregg AugustAmerican double bassist.Needs Votehttp://greggaugust.com/Greg AugustGregg AugestGregg E. AugustThe Brooklyn Philharmonic OrchestraAfro-Latin Jazz OrchestraOrpheus Chamber OrchestraEos OrchestraWestchester PhilharmonicRay Barretto & New World SpiritGregg August SextetJD Allen TrioElio Villafranca & The Jass SyncopatorsMichael-Louis Smith QuintetNew York Bass QuartetGregg August Quartet + +540187Münchner RundfunkorchesterThe Munich Radio Orchestra (German: Münchner Rundfunkorchester) is a German symphony orchestra based in Munich and affiliated with [l=Bayerischer Rundfunk] (Bavarian Radio). + +There are three Munich orchestras associated with this broadcaster - +[a604396] - The Bavarian Radio Symphony Orchestra +[a540187] - The Munich Radio Orchestra +[a=Tanzorchester Des Bayrischen Rundfunks] the light (or dance) orchestra, now defunct. + +From wikipedia: +A precursor ensemble to the Munich Radio Orchestra was established in the 1920s. The current Munich Radio Orchestra was formalised in 1952, with Werner Schmidt-Boelke as its first chief conductor. The orchestra's focus has historically been on light music, with particular emphasis in its early years as an orchestra for operettas. The orchestra was also historically known for its Sunday concerts. + +From the chief conductorship of Lamberto Gardelli (1982-1985) onwards, the orchestra expanded its repertoire into opera, specifically Italian opera. This work continued under the orchestra's next three chief conductors, all Italians, Giuseppe Patanè (1988–1989), Roberto Abbado (1992–1998), and Marcello Viotti (1998–2005). This activity extended to commercial recordings of operas and opera excerpts with the orchestra's chief conductors.Needs Votehttps://www.rundfunkorchester.de/https://en.wikipedia.org/wiki/Munich_Radio_OrchestraBavarian Radio Orch.Bavarian Radio Orchestra, MunichBayerisches RundfunkorchesterBrass Ensemble MünchenBrass Of The Munich Radio OrchestraDas Bayerische RundfunkorchesterDas Bayrische RundfunkorchesterDas Grosse Orchester Des Bayerischen RundfunksDas Münchner Rundfunk-TanzorchesterDas Münchner RundfunkorchesterDas Orchester Des Bayerischen RundfunksDas Orchester Des Bayrischen Rundfunks MünchenDas Rundfunk Orchester Des Bayerischen RundfunksDas Rundfunk-Orchester MünchenDas Rundfunk-Orchester, MünchenDas Rundfunkorchester Des Bayerischen Rundfunks, MünchenDas Rundfunkorchester MünchenDas Solistenensemble Des Münchner RundfunkorchestersDas Solistenensemble des Münchner RundfunkorchestersGroßes Münchener RundfunkorchesterMitglieder Des Münchner RundfunkorchestersMitglieder Des Rundfunkorchesters MünchenMunchen RundfunkorchesterMunchener RundfunkorchesterMunchner RundfunkorchesterMunchner RundfunkorchestraMunich Broadcasting Symphony Orch.Munich Broadcasting Symphony OrchestraMunich ROMunich Radio OrchestraMunich Radio Orchestra / Münchner RundfunkorchesterMunich Radio SymphonyMunich Radio Symphony OrchestraMünchener Rundfunk-OrchesterMünchener RundfunkorchesterMünchenin Radion OrkesteriMünchens RadioorkesterMüncher RundfunkorchesterMünchner FunkorchesterMünchner Philharmonisches OrchesterMünchner R. O.Münchner ROMünchner Rundfunk OrchesterMünchner Rundfunk-Orch.Münchner Rundfunk-OrchesterMünchner Rundfunkorch.Münchner Rundfunkorchester/Munich Radio OrchestraMünchner Rundfunkt OrchesterMünchner TanzstreichorchesterOrchester Des Bayerischen RundfunksOrchester Des Bayrischen Rundfunks MünchenOrchester des Bayerischen RundfunksOrchestra Of The Muncher RundfunkorchesterOrchestra Of The Munich RadioOrchestra of the Teatro Lirico "Giuseppe Verdi" TriesteOrchestre De La Radio De MunichOrchestre De La Radio De MünichOrchestre De La Radiodiffusion De MunichOrchestre Symphonique De Radio-MunichOrchestre de la Radio de MunichOrquesta De La Radio De MuncihOrquestra Da Rádio De MuniqueRTL-SinfonieorchesterRadio Orchester MünchenRadio Symphony Orchestra Of MunichRdfk.-Orchester MünchenRundfunk-Orchester MünchenRundfunkorchesterRundfunkorchester Des Bayerischen RundfunksRundfunkorchester Des Bayerischen RundfunksRundfunkorchester MunchenRundfunkorchester MünchenRundfunkorchester MünchnerSinfonieorchester Des Münchner RundfunksSinfonieorchester des Münchner RundfunksThe Munich Broadcasting OrchestraThe Munich Symphony OrchestraМюнхенский РадиооркестрОркестр Баварского РадиоОркестр Мюнхенского РадиоСимфонический оркестр Мюнхенского радиоミュンヘン放送管弦楽団John RonaynePeter SchlierHenry RaudalesEmmanuel HahnJosef GröbmayrKiko PedrozoUlrich PförtschKarl ReitmayerRalf KlepperTill HeineJános MátéKarol LimanEva HahnOliver TriendlFranz DraxingerJosef BierlmeierMax HanftNorbert BernklauMichael ChristiansSusanna PietschElmar SpierMatthew PeeblesMartin GrieblUwe SchrodiTilbert WeigelNorbert MerkelMihnea EvianIngo NawraFlorian EutermoserChristian Obermaier (2)Christiane DohnFranz KanefzkyVeronica RichterMakio KataokaAlexandre VayFlorian AdamUta HannabachMinea EvianUlrich Hahn (2)Alexander FickelRobert PolzerUladzimir SinkevichMaxim KosinovMartina LiesenkötterMarkus BlecherEberhard KnoblochHande ÖzyürekMaria AzovaDoren DinglingerStefana TiteicaMalgorzata Kowalska-StefaniakAlbert Frasch (2)Alexandra MuhrCaroline RajendranJulia BasslerHans-Ulrich BreyerMartin SchöneVladimir TolpygoGeorg LienerUta JungwirthChristopher ZackSo Jin KimMarc OstertagArpad GyörgySong-Le DoWolfram DierigHanna SieberUlf BreuerIonel CraciunescuAndreas Moser (3)Emil RadutiuJürgen Evers (2)Albert BachhuberJulia KühlmeyerEkaterina ReshetnyakToyomi SuzukiTomoko ShimazakiDamien LingardThorsten JohannsDania LempChristian BrühlDavid PiaClaudius MüllerRabia AydinStanko MadicElena SoltanBerta Bermejo MoyaMakio BachauerEugene Nakamura + +540315Dave Stone (2)David R. StoneBassist born in 1955. Tour bassist from 1974 to 1977 for [a263953], [a239399], [a212786], [a313097] and [a97917]. Lots of studio work on both rhythm bass and orchestra bass in the Los Angeles studio scene. Also worked on Broadway shows such as “Beauty and the Beast,” “Ragtime,” “Cinderella,” “Sunset Blvd.,” “Les Miserables” and “Fiddler on the Roof” and on many movie soundtracks.Needs Votehttps://web.archive.org/web/20120806221324/https://www.davestonebass.com/www.davestonebass.com/Home_Page.htmlhttps://www.imdb.com/name/nm2370578/Dave "Stoney" StoneDavid "Stoney" StoneDavid R. StoneDavid StoneDavis StoneStone, DavidHarry James And His OrchestraStan Kenton And His OrchestraHarry James And His Big BandLes Hooper Big BandThe Bill Elliot Swing OrchestraJack Sheldon QuintetPat Longo And His Super Big BandThe Carl Saunders SextetThe Matt Catingub Big BandRoy Wiegand Jazz OrchestraLouie Bellson's Magic 7The Bill Perkins Big BandWoodwinds WestThe Snapdaddys + +540724Kullervo LinnaKullervo Kaarlo LinnaFinnish musician and composer, born November 24, 1911 in Helsinki, Finland; died October 19, 1987 in Helsinki, Finland. He was one of Finland's most important drummers in the 1930s and 1940s.Needs VoteK. LInnaK. LinnaK. Linna - KullervoK.LinnaKullervo LinnanLinnaLinna—KullervoKullervo Linnan OrkesteriKullervo Linnan Suuri HumppaorkesteriHumppa-VeikotKullervo Linnan YhtyeKullervo Linnan Solistiorkesteri + +540727Ingmar EnglundIngmar EnglundFinnish musician (guitar, banjo) and arranger , born October 7th, 1920 in Helsinki, Finland. Died August 5th, 1978 in Helsinki, Finland. Ingmar Englund was also [a=Irina Milan]'s uncle.Needs VoteEnglundI. EnglundI.EnglundIngmarKullervo Linnan OrkesteriMatti Viljasen KvintettiIngmar Englundin YhtyeIngmar Englundin OrkesteriStig Wennström Dixieland Jazz BandRytmin Swing-TrioHumppa-VeikotSuomi-VPK-OrkesteriSoitinyhtye "Lahjattomat"Matti Viljasen Trio"Menneiltä Ajoilta" Studioyhtye + +540731Irma TapioIrma TapioBorn Irma Niemi, on April 23, 1946 in Tornio, Finland. + +Irma Tapio is a Finnish singer. She started her career in 1950's in a children's radio program. During her career she has sung background vocals, movie themes and commercials. She has also been (and still is) a member of several groups. + +Her daughter, [a=Nina Tapio], is also a singer. +Needs VoteI.TapioIrmaIrma NiemiHammasharjaFantastic Four (3)YstävätGirls (4)LasasetThe Finnjet SingersOopperan Solistit + +540733Gösta MöllerGösta Eugen MöllerBorn on January 3rd, 1920 in Pohja, Finland. Died on September 4th, 2009 in Helsinki, Finland. A Finnish musician whose main instrument was tuba. He was best known for playing tuba in a very popular schlager group called Humppa-Veikot.Needs VoteGösta "Tuuba" MöllerThe Otto Donner TreatmentKullervo Linnan OrkesteriHumppa-VeikotSuomi-VPK-OrkesteriKauko Partion OrkesteriSäälimättömätOtto Donnerin Orkesteri"Sua Kohti Herrani" Puhallinkvintetti + +540751Martti MetsäketoA Finnish musician (bass, flute, tenor saxophone, congas) and singer. Born December 17, 1940 in Iitti - died September 23, 2015 in Helsinki.Needs VoteM. MetsäketoM.MetsäketoMarttiMartti MetsäkeroMatti MetsäketoMartin MalmbergOiling BoilingSilhuetitFantastic Four (3)Four CatsPentti Lasasen Studio-orkesteriJanatuisen JatsiyhtyeLasasetThe SmokingsThe Finnjet SingersSolistiyhtye Humina + +541024Jake HolmesAmerican folk-rock singer-songwriter born December 28, 1939 in San Francisco, California. Author and original performer of the popular song "Dazed and Confused". + +Later worked as a jingle writer for [l=HEA Productions], penning ads for Dr. Pepper, British Airways and others before forming his own agency.Needs Votehttp://www.myspace.com/jakeholmeshttps://en.wikipedia.org/wiki/Jake_HolmesH. HolmesHolmesHomesJ. HolmesJack HolmesJohn HolmesUake HolmesAllen & Grier + +541134Billy AlessiGuitarist, organist and singer from New York. Twin brother of [a665004]Needs Votehttps://www.facebook.com/billy.alessi.142https://www.linkedin.com/in/billy-alessi-6905572aAlessiAlessi BillyB AlessiB. AlessiBill AlessiBillyBilly AllessiWilliam AlessiAlessiCountry GentlemenBarnaby ByeThe Look (9) + +541368Serge PrissetFrench pop singer and multi-instrumentalist. He released a number of singles 1968 to 1982, and featured in the pop/rock bands Alliance and Fever Exploration. He also composed and performed on a few library label LPs and co-wrote the pop/prog musical Pénélope. + +born 09 December 1946Needs Votehttp://fr.wikipedia.org/wiki/Serge_PrissetG. PrissetPrissetS. PeissetS. PrissetFever ExplorationJohn AnawatiL'Alliance + +541831Andreas NeubronnerGerman sound engineer and producer; co-founder of [l521126].Correcthttp://www.tritonus.de/A. NeubronnerAndreas NeubonnerAndreas NeubrommerAndreas Neubronner (Tritonus)Andreas Neubronner, TritonusAndreas Neubronner, Tritonus MusikproduktionAndreas Neubronner/TritonusNeubrönnerアンドレアス・ノイブロンナーTritonus (8) + +542306Cynthia WeilCynthia WeilAmerican songwriter (lyricist) +Born: 18th October 1940 Manhattan, New York, USA +Died: 1st June 2023 Beverly Hills, California, USA +One half of an illustrious songwriting duo with husband, the composer [a=Barry Mann], writing [m86073]. They were inducted into the Songwriters Hall of Fame in 1987 and received an award from the Rock & Roll Hall of Fame in 2010. +Needs Votehttp://www.mann-weil.com/https://twitter.com/mannweilhttps://en.wikipedia.org/wiki/Cynthia_Weilhttps://www.imdb.com/name/nm0917941/https://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Cynthia+Weil&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allC WeilC WeillC. NeilC. WealC. WeilC. WeillC. WellC. WellsC. WeyC. WheilC. WielC.WeilC.WeillCyncia WeilCynthai WeilCynthiaCynthia LyleCynthia NeilCynthia WeillCynthia WellCynthie WeilCynthis WeilCyntia WeilF. WheelG. WeilG. WellG.WeilK. WeillMannMann WeilNeilSynthia WeilWeilWeil C.Weil CynthiaWeil, CynthiaWeillWellWellsWheelWheilWielВеиллС. ВейлУэйлウェルシンシア・ウェイルMann And Weil + +542687Regensburger DomspatzenYoung boys choir ensemble, based at [l2656702] (Regensburger Dom), Germany. + +See also [a1220883].Needs Votehttp://www.domspatzen.dehttps://en.wikipedia.org/wiki/Regensburger_Domspatzenhttps://adp.library.ucsb.edu/names/3599653 Regensburger DomspatzenBoys Of The Regenburger DomchorusBoys Of The Regensburg Cathedral ChoirBoys of the Regenburger DomchorusCantores de la Catedral de RegensburgChœur d'Enfants de RatisbonneChœurs De La Cathédrale De RatisbonneCoro De La Catedral De RatisbonaCoro De La Catedral De RegensburgCoro De Niños De La Catedral De RegensburgCoro Del Duomo Di RatisbonaDie Regensburger DomspatzenDie Regensburger Domspatzen Mit InstrumentalbegleitungDrei Regensburger DomspatzenKnaben Des Regensburger DomchorsKnaben der Regensburger DomspatzenKnabenstimmen Des Regensburger DomchorKnabenstimmen Des Regensburger DomchoresLes Moineaux Du Dome De RatisbonneLes Petits Chanteurs Et La Chorale De La Cathédrale De RatisbonneLos Niños Cantores de RegensburgerMannerchor Ehemaliger Regensburger DomspatzenMännerchor Ehemaliger Regensburger DomspatzenRegensberg Cathedral ChoirRegensburg Boys ChoirRegensburg Cathedral Boys ChoirRegensburg Cathedral Children's ChoirRegensburg Cathedral ChoirRegensburg Cathedral Choir (Domspatzen)Regensburg Cathedral Choir Boys' VoicesRegensburg Dom ChoirRegensburg DomspatzenRegensburger Cathedral ChoirRegensburger DomchorRegensburger Domchor (Die Domspatzen)Regensburger Domchor (Domspatzen)Regensburger Domchor, Boy's VoicesRegensburger DomkoorRegensburger Domkoret "Die Domspatzen"Regensburger Domspatzen (Jongenskoor)Regensburger Domspatzen . Niños Cantores De La Catedral De RatisbonaRegensburger Domspatzen ChoirRegensburger Domspatzen Und DomchorRegensburger Domspatzen Und Ihre EhemaligenRegensburger Domspatzen, SoloistRegensburgher DomspatzenRegensburgi Dómspatzen KórusSolisten Der Regensburger DomspatzenStimmen Der Regensburger DomspatzenThe Regensburg ChoirThe Regensburgber Domspatzen Boys ChoirThe Regensburger Cathedral Boys ChoirThe Regensburger Domspatzen Choir And OrchestraХор Мальчиков Регенсбургского Собораレーゲンスブルク児童合唱団レーゲンスブルク大聖堂聖歌隊레겐스 부르크 대성당 성가대Robert MattPeter La BontéPatrick Lange (2)Emanuel SchikanederEdgar KrappMarco KöstlerMichael SchopperLothar ZagrosekHans OrtererMaximilian SchmittVolker HornWerner GüraManfred VorderwülbeckeTheobald SchremsGuntram AltnöderHeiner HopfnerNikolaus HillebrandPeter LikaThomas E. BauerJörg (12)Benjamin GrundUwe LohrmannCornelius von der HeydenHubert NettingerSingknabe Der Regensburger DomspatzenWerner BreinigHolger FalkWilhelm SchwinghammerMathias BreitschaftRoland BüchnerWilly HarlanderBenjamin ApplWolfgang SeifenJulian FreibottFlorian HelgathFranz WittenbrinkDr. Adolf J. EichenseerHubertus BaumannAlexander Held (2)Maximilian Mayer (2)Thomas GropperSebastian WeyererEin Regensburger Domspatz Mit KlavierbegleitungWolfgang MirlachChristian Heiß (2)Christian BischofStephan SkibaSolistenknaben Der Regensburger Domspatzen + +542810Aaro KurkelaAaro KurkelaBorn on March 2, 1933 in Sääksmäki, Finland. A Finnish accordionist. + +Died on March 24, 1989 in Tampere, Finland. +Needs VoteA. KurkelaA.KurkelaAarko KurkelaAaro Kurkela (Hanuri)Aro KurkelaArto KurkelaKurkelaJani Uhleniuksen Uusrahvaanomainen OrkesteriPentti Lasasen Studio-orkesteriSoitinyhtye LiisaAaro Kurkela OrkestereineenHeikki Laurilan MandoliiniyhtyeAaro Kurkela Studioyhtyeineen + +542942Herman StrakaAmerican violinist.CorrectThe Cleveland Orchestra + +542943Bob ZelnickRobert ZelnickAmerican violinist, born 1950 in New York, New York.Needs VoteRobert ZelnickSan Francisco SymphonyThe Saint Paul Chamber OrchestraU.S. Marine Band + +543200Pierre ChailléPierre ChailléFrench violinist, conductor and producer. Artistic director of [l344116]. +Needs VoteM. Pierre ChailléPierre ChailleOrchestre Des Concerts LamoureuxOrchestre De L'Association Des Concerts PasdeloupOrchestre ColonneLa Société De Musique D'AutrefoisPierre Chaille And The Grand Orchestra + +543206René KolloRené Viktor KollodzieyskiGerman tenor and schlager singer, born on 20 November 1937 in Berlin, Germany and most notably known for his Wagner performances. Grandson of [a=Walter Kollo], son of [a=Willi Kollo] and father of [a=Nathalie Kollo]. Married to [a=Dorthe Kollo] from 1967 to 1977.Needs Votehttp://www.kollo.com/kollographie/rene-kollo/1/https://en.wikipedia.org/wiki/Ren%C3%A9_Kollohttps://de.wikipedia.org/wiki/Ren%C3%A9_KolloKolloR. KolloRene KolloRenè KolloRenè KoloRené Koloコロルネ•コロルネ・コロルネ・コロ = René KolloDie Billy-BoysDuo Marina + +543673Bob de PasqualeRobert de PasqualeAmerican violinist, the father of [a2346731] and the brother of [a395914] and [a3508323]Needs VoteBob DePasqualeRobert DePasqualeRobert de PasqualeThe Philadelphia OrchestraNew York PhilharmonicBob de Pasquale's String Ensemble + +543767Harold WingAmerican Jazz drummer. Born 1927.Needs VoteArold WingChink WilliamsErroll Garner TrioPaul Quinichette All-Stars + +544206Mike WallaceTrombonistCorrectStan Kenton And His Orchestra + +544872Robin CanterBritish oboe player.Needs VoteThe English Baroque SoloistsThe Academy Of Ancient MusicThe Dartington EnsembleRedcliffe Ensemble + +544894Leif Ove AndsnesLeif Ove AndsnesNorwegian classical pianist born in Karmøy, Rogaland, April 7, 1970. + +Founded Rosendal Kammermusikkfestival in 2016. +Has been awarded the Norwegian Spellemannsprisen eleven times, first time in 1991. He is also nominated for a twelfth for his 2022 album "[r=25023175]".Needs Votehttp://www.andsnes.com/https://mariusnesetleifoveandsnes.bandcamp.com/http://en.wikipedia.org/wiki/Leif_Ove_Andsneshttps://snl.no/Leif_Ove_AndsnesAndsnesL.O. AndsnesЛеиф Ове Андснесレイフィ・オヴェ・アンスネスレイフ・オヴェ・アンスネスDeutsche Kammerphilharmonie Bremen + +545177Garth KnoxGarth KnoxIrish viola player and composer, born October 8, 1956 in Dublin.Needs Votehttps://www.garthknox.org/https://en.wikipedia.org/wiki/Garth_KnoxGarth KnowKnoxEnsemble IntercontemporainArditti QuartetI Solisti Veneti + +545204Jay McAllisterTuba playerNeeds VoteJames McAllisterJay McAlisterJim McAllisterJimmy McAllisterGil Evans And His OrchestraStan Kenton And His OrchestraPete Rugolo OrchestraSauter-Finegan OrchestraThe Thelonious Monk OrchestraJohnny Richards And His OrchestraGeorge Williams And His OrchestraThe Lennie Niehaus OctetArt Farmer And His OrchestraPete Rugolo And His All StarsJim Timmens And His Swinging Brass + +545637Olle HolmqvistBert Olav HolmquistSwedish trombone & Sackbut player. +Born in November 1936 in Skellefteå, died March 26th 2020Needs Votehttps://en.wikipedia.org/wiki/Olle_HolmquistOlaf HolmquistOlav HolmquistOlav HolmqvistOle HolmquistOle HolmqvistOle HomqvistOll. HolmqvistOlle HolmkvistOlle HolmquistRIAS TanzorchesterOrchester James LastRadiojazzgruppenArne Domnérus OrkesterMr BandEnsemble BourrasqueNordic All-StarsFeta Heta LinjenOrchester Kai WarnerThe Rainbow-OrchestraOlle Holmqvist And His BeatbonesOlle Holmqvist Sweden All Stars + +545818Lucy ClarkeLucy ClarkeProfessional Dance Singer & Songwriter of 25 years + + +Needs Votehttp://www.facebook.com/pages/Lucy-Clarke/20638890379?sk=infohttp://soundcloud.com/tracks/search?q%5Bfulltext%5D=lucy+clarkehttp://www.youtube.com/user/lucyoclarkehttp://lucyclarkemusic.co.ukhttp://www.facebook.com/NeutronAndStarClarkeL. ClarkeLucy Olivia ClarkeNeutron & Star + +545908David PowellDavid PowellTuba player +He was a founder-member of the jazz ensemble "Loose Tubes" and has played with the bands of Mike Westbrook, John Dankworth, Billy Cobham and Barry Guy. Founder of his own 8-piece jazz/world music band "Kermesse".Needs Votehttps://warwickmusicgroup.com/2019/06/03/david-powell/Dave PowelDave PowellBBC Symphony OrchestraMike Westbrook OrchestraLondon Improvisers OrchestraLoose TubesBritten SinfoniaThe London Scratch OrchestraThe Dedication OrchestraThe Alec & John Dankworth Generation Big BandThe New Blood OrchestraThe Peter Hurt OrchestraThe Spike OrchestraThe Balkanatics + +546115Jason SniderAmerican horn player.CorrectBoston Symphony OrchestraSan Antonio Symphony Orchestra + +546266Alex AshworthAlexander AshworthEnglish bass / baritone vocalist born March 8, 1976 in BirminghamNeeds Votehttps://www.alexashworth.com/http://www.bach-cantatas.com/Bio/Ashworth-Alexander.htmAlexander AshworthThe SixteenThe Monteverdi ChoirSolomon's Knot + +546396Swantje TessmannGerman violinist and violist, born 1969 in Hamburg, Germany.CorrectSwantje TessmanEnsemble ModernEnsemble ResonanzEnsemble Modern OrchestraBundesjugendorchester + +546505Dick HalliganRichard Bernard HalliganAmerican musician (keyboard, trombone, flute), composer, and arranger. +Born: August 29, 1943 in Troy, New York, City, NY, USA. +Dead: January 18, 2022 in Rome, Lazio, Italy. + +Father of [a=Shana Halligan].Needs Votehttp://www.richardhalligan.com/https://en.wikipedia.org/wiki/Dick_Halliganhttp://www.jorgenand.se/bst/bst_stor.html#halliganhttps://woodstockwhisperer.info/2016/08/29/richard-dick-bernard-halligan/https://www.grammy.com/grammys/artists/dick-halliganhttps://www.imdb.com/name/nm0356599/D HalliganD. HalliganD. HallignD.D.HalliganD.HalliganD; HalliganDickG. HalliganHalliganRichard (Dick) HalliganRichard HalliganBlood, Sweat And TearsCat's Pajamas! + +546506Geoffrey BurgonGeoffrey Burgon (born July 15, 1941 in Hampshire, England; died September 21, 2010) was a British composer, especially known for his work for television (for example Tinker, Tailor, Soldier, Spy and Brideshead Revisited) and films (for example Monty Python’s Life Of Brian).Needs Votehttp://www.geoffreyburgon.co.ukhttp://www.myspace.com/geoffreyburgonmusicBurgonG BurgonG. BurgonGeoffrey BurdonGeoffrey Burgon OrchestraGeofrey Burgon + +546606Anne-Louise ComerfordAustralian violist Needs VoteAnn-Louise ComerfordAnne Louis ComerfordAnne Louise ComerfordAnne-Louise CommerfordSydney Symphony Orchestra + +547010Carlo DonidaCarlo Donida LabatiItalian composer and pianist (Milano, 30 October 1920 – Porto Valtravaglia, 22 April 1998).Needs Votehttp://www.carlodonida.ithttp://it.wikipedia.org/wiki/Carlo_DonidaBonidaC DonidaC. DonidaC. BonidaC. D. LabatiC. DanidaC. DanidoC. DomidaC. DonaldC. DondidaC. DonidaC. Donida - LabatiC. Donida LabatiC. Donida-LabatiC. Donida-MogolC. Donida/LabatiC. DonikaC. DonildaC. DonitaC. Donita LabatiC. DonivaC. DoridaC. L. DonidaC.DonidaC.ドニダCarlo DanidaCarlo Donida LabatiCarlo Donida MogolCarlo Donida-LabatiCarlo DonidoCarlo Donina-LabatiCarlo Donita LabatiCarlo Labati DonidaCarlo LobariCarlos DonidaD. DonidaD.L.CarloDanidaDenidaDinideDjnidaDoidaDoindaDomdaDomidaDonDon IdaDonadiDonadoDonedaDoniaDonicaDonidDonidaDonida - LabatiDonida - LavatiDonida - LobaliDonida - LobatiDonida La Bati CarloDonida LabateDonida LabatiDonida, CarloDonida,CDonida-LabatDonida-LabatiDonida-LobatiDonida/LabatiDonidadDonideDonide-LabatiDonidiDonidoDonido MogolDoniduDoniedaDonildaDoninaDonitaDonnaDonodioDowidaI. DonidaJonidaL. C. DonidaL. DonidaL.C. DonidaLabat Carlo DanidaLabatiLabati Cario DonidaLabati Carlo DonidaLabati DonidaLabatida Carlo DonidaLabiti Carlo DonidaMagatiMogol, C. DonidaMogol, C. Donida,PonidaДонадаДонидаК. ДонидаКарло Донидаדונידה לבטיドニダBacalD. LabatiCarlo Donida Orchestra E Coro + +547173Ted BrownTheodore George BrownAmerican tenor saxophonist, born 1 December 1927 in Rochester, New York. +Needs Votehttp://www.tedbrownjazz.com/ (website inactive as of November 10, 2025)https://adp.library.ucsb.edu/names/305874BrownT. BrownT.BrownLee Konitz QuintetThe Ted Brown SextetWarne Marsh QuintetTed Brown TrioTed Brown QuintetTed Brown Quartet + +547316Michael Chapman (4)Michael ChapmanBritish bassoonist and reed maker, born 3 August 1934, died 21 July 2005.Needs Votehttps://en.wikipedia.org/wiki/Michael_Chapman_(bassoonist)https://web.archive.org/web/20080610001242/http://www.musiciansgallery.com/start/woodwind/bassoons/chapman/michael.htmRoyal Philharmonic OrchestraThe Michael Nyman OrchestraThe Academy Of St. Martin-in-the-Fields + +547323Rune GustafssonRune Urban GustafssonSwedish jazz guitarist and composer, born 25 August 1933 in Gothenburg, Sweden, died 15 June 2012 in Stockholm. + +In addition to his activities as a jazz musician, during the late 1950s he was often hired as a solo guitarist on Swedish rock recordings. + +Prizes and awards: +1976 – The Jan Johansson scholarship +1997 – Albin Hagström's Memorial Prize +1998 – Thore Ehrling scholarship +2004 – Guitarpeople's Prize +2009 – The Lars Gullin award for being "style-setting for young guitarists in Sweden and abroad" +2010 – The Monica Zetterlund scholarshipNeeds Votehttps://en.wikipedia.org/wiki/Rune_Gustafssonhttps://sv.wikipedia.org/wiki/Rune_GustafssonGustafssonGustavssonR GustafssonR. GustafsonR. GustafssonR. GustavsonR. GustavssonRune GustafsonRune Gustafsson Et Sa GuitareRune GustavsonRune GustavssonS. Gustafssongustafssonルネ・グスタフソンThe Swedish All StarsKnud Jörgensens KvartettRadiojazzgruppenArne Domnérus OrkesterArne Domnérus TrioArne Domnérus SextettClaes Rosendahls OrkesterPutte Wickmans SextettLars Gullin QuintetGeorg Riedel SeptetArne Domnérus KvartettThe RunestonesRobert Edman QuartetPutte Wickman KvintettHans Busch EnsembleNils-Bertil Dahlander QuartetHacke Björksten's All Star SextetBengt-Arne Wallin & His TentetGustaffson / Ørsted Pedersen DuoSone Banger SextetRune Gustafsson & BandReinhold Svensson QuartetRune Gustafsson OctetRune Gustafsson QuartetLasse Samuelsons AlarmRune Gustafsson TrioArne Domnérus & His Bossa OrchestraNils-Bertil Dahlanders KvartettNils Lindberg QuintetNils Lindberg Sextet + +547324Dalton SmithDalton SmithLead Trumpeter during the Big Band era, which included playing with [a323990], [a1511064], [a1805094], [a302676], and a lengthy stay with [a320804].Needs VoteStan Kenton And His OrchestraGerald Wilson OrchestraThe Los Angeles Neophonic OrchestraStan Kenton's Melophoneum Band + +547334John SantulisViolinist.Needs VoteJohn SantilusJohn SantuusJohnny SantulisHarry James And His OrchestraHarry James & His Music Makers + +547917Georges GrenuFrench saxophonist (born June 1925 in Tourcoing, died 22th July 2013 in Blois)Needs VoteG. GrennG. GrenuGeorge GrenuGeorges GrenliGrenuFrançois Rauber Et Son OrchestreLuis Pena Et Son OrchestreGrand Orchestre De L'OlympiaMichel Lorin Et Son EnsembleLe Jazz Groupe De ParisLucien Lavoute Et Le Travelling OrchestraOrchestre Jo MoutetBig Jullien And His All StarArmand Migiani All StarsPierre Michelot And His OrchestraMartial Solal Big BandParis All Stars (2)Fernand Clare Et Son OrchestreClaudio Bonelli Ses Mandolines Et Son OrchestreChristian Garros Et Sa Section RythmiqueFormation Jacques Denjean + +547969George SzellGyörgy SzéllHungarian-born American conductor and composer. +Born June 7, 1897 in Budapest, Austria-Hungary (today Hungary) +Died July 30, 1970 in Cleveland, Ohio, USA (aged 73). +He is remembered today for his long and successful tenure as music director of [a547971], which he directed from 1946 until his death. At that he was credited, to quote the critic [a2066049], with having built it into "what many critics regarded as the world's keenest symphonic instrument."Needs Votehttps://en.wikipedia.org/wiki/George_Szellhttps://www.britannica.com/biography/George-Szellhttps://web.archive.org/web/20230716044441/https://www.georgeszell.com/https://web.archive.org/web/20030804114119/https://www.sonyclassical.com/artists/szell/https://www.sonyclassical.com/artists/artist-details/george-szellhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100049/Szell_GeorgeG. SzellGeo. SzellGeorg SzellGeorg SzéllGeorge SzéllGeorges SzellKapellmeister SzéllKapellmstr. George SzéllSellSzellSzéllSzéll GyörgyZellД. СеллДж. СеллДж.СэллДжордж СеллДжордж Сэллジョージ・セルジョージ・ゼルセル + +547971The Cleveland OrchestraAmerican orchestra based in Cleveland, Ohio. Founded in 1918. Housed in [l278487] since 1931. Operated by the non-profit organization [l1838071]. + +Music directors: +1918-1933: [a1689097] +1933-1943: [a539131] +1943-1946: [a696257] +1947-1970: [a547969] +1972-1982: [a415720] +1982-2002: [a834229] +2002-present: [a855164] + +Associated with [a944043]Needs Votehttps://www.clevelandorchestra.com/https://www.youtube.com/user/clevelandorchestrahttps://www.x.com/CleveOrchestrahttps://www.facebook.com/clevelandorchestrahttps://www.instagram.com/cleveorch/https://en.wikipedia.org/wiki/Cleveland_Orchestrahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103148/Cleveland_OrchestraCOChoeurs Et Orchestre De ClevelandClevelandCleveland Symphony OrchestraCleveland O.Cleveland OkesterCleveland Orch.Cleveland OrchesterCleveland OrchestraCleveland Orchestra & ChorCleveland Orchestra und ChorCleveland OrchestreCleveland OrchestrerCleveland OrchetraCleveland OrkesterCleveland SymphonyCleveland Symphony OrchestraCleveland Symphony Orchestra OrchestraCleveland-OrchesterCleveland-OrchestraClevelandi Szimfonikus ZenekarClevelandský Symfonický OrchestrColumbia Symphony OrchestraComponenti della Cleveland OrchestraDas Cleveland OrchesterDas Cleveland OrchestraDas Cleveland-OrchesterDas Cleveland-OrchestraHet Cleveland OrkestHis Symphony OrchestraLa Orquesta De ClevelandMembers Of The Cleveland OrchestraMembers of the Cleveland OrchestraMembres De L'Orchestre De ClevelandMembres De L'Orchetre De ClevelandMembres De L'orchestre De ClevelandMitglieder Des Cleveland OrchesterOrchestraOrchestra Di ClevelandOrchestra di ClevelandOrchestre De ClevelandOrchestre De CleverlandOrchestre Symphonique De ClevelandOrchestre de ClevelandOrchestred De ClevelandOrq. de ClevelandOrquesta ClevelandOrquesta De ClevelandOrquesta de ClevelandOrquestra De ClevelandOrquestra de ClevelandPlayers From The Cleveland OrchestraSinfónica ClevelandSymphony OrchestraThe Cleeveland OrchestraThe Cleveland Or.The Cleveland OrchThe Cleveland Orch.The Cleveland Orchestra SinfoniettaThe Cleveland SinfoniettaThe Cleveland SymphonyWolfgang Amadeus MozartΟρχήστρα Του ΚλίβελαντКливлендский Симфонический ОркестрКливлендский ОркестрКливлендский Симф. ОркестрКливлендский Симфонический Орк.Кливлендский Симфонический ОркестрКливлендский оркестрОркестар Из Кливлендаクリーヴランド管弦楽団Paul GershmanDavid SchwartzSeymour BarabKenneth YerkeBernard ZaslavHarvey WolfeDavid GreenbaumAnthony SophosNathan GershmanHerbert SorkinTheodore SilavinRobert PangbornMilton ThomasMiran KojianRaymond KoblerHerman StrakaRichard MackeyIsadore RomanRon LeonardSamuel ThaviuElias CarmenKenneth MooreJames StaglianoStephen GeberMax WinderDavid ZauderRafael DruianLynn HarrellChristoph von DohnányiMichael GrebanierCarlton CooleyWilliam SteckRobert MarcellusJohn GraasAndré EmelianoffSteve ShippsCharles PiklerOtto ArminDavid GlazerRalph SilvermanGlenn FischthalJulius BakerNathan StutchJeffrey KhanerVerlye MillsIsabel TrautweinMyron BloomJules EskinGeorge SilfiesDaniel MajeskeRalph MatsonJosef GingoldJacob KrachmalnickAndor TothAnshel BrusilowAbraham SkernickDavid PerlmanWilliam PreucilMorris HochbergWilliam LincerLeonard RoseFelix KrausJoseph AdatoRichard WeinerRosemary GoldsmithWarren DownsAlfred ZetzerErnst WallfischAlfred GenoveseAmy ZolotoPhilipp NaegeleFranklin CohenCarolyn Gadiel WarnerYasuhito SugiyamaCecylia ArzewskiArnold SteinhardtMilan YancichThomas A. DummArthur BervJoela JonesFrank BroukDavid GoodingEric RuskeAlice ChalifouxJac GorodetzkyPhilip CollinsSeymour LipkinAdolphe FrezinSheryl StaplesMartin ChalifourJessica Lee (2)Gerald ApplemanAvram LavinEdward VitoNella HunkinsRobert WilloughbyEwing PoteetHerbert OffnerKenneth PattiHugo KolbergVernon KirkpatrickJohn Mack (2)Nathan PragerSteven WitserFelix EyleDaniel DombRichard SolisBert GassmanBernard AdelsteinThomas WohlwenderRobert BoydRonald BishopMiho HashizumeChristopher HanulikDavid McGillMichael SachsCharles SchlueterEmmanuelle BoisvertDavid Taylor (20)Michael CharryGino CioffiJohn SalkowskiNancy BrackenOtakar SroubekGary StuckaEllen DePasqualeVance RegerScott DixonMary Lynch (2)Thomas MansbacherEli Epstein (2)Dane JohansenAlfred BrainWaldemar LinderJoseph ZwilichJeffrey ZehngutDiane MatherIrwin KatzSol MarcossonJames Darling (3)Allen KofskyJulius DrossinBernard GoldbergWendell HossLeon FrengutWilliam StokkingJesse McCormickGodfrey LayefskyJascha VeissiLouis Davidson (2)William J. HebertJonathan SherwinLaura OkuniewskiJames DeSanoJoseph FuchsStanley HastyEdward OrmondGeoffrey HardcastleMartin Morris (2)Otto EifertMa Si-HonStephen Warner (2)Muriel CarmenJoan SiegelPamela Pecha WoodsCatharina MeintsMarie SetzerKeiko FuriyoshiElizabeth CamusYoko MooreLisa WellbaumRoberta StrawnRichard Stout (2)George DrexlerSidney WeissKurt LoebelThomas LibertiElmer SetzerRichard King (8)Joshua Smith (9)Jacques PosellGeorge GosleeBernhard GoldschmidtMarcel DickRichard Roberts (10)Homer SchmittRobert SwensonBernard GoodmanGeorge HambrechtRoy WaasMaurice SharpErnani AngelucciMarc LifscheyRobert Vernon (3)Jeno AntalBerl SenofskyDaniel BonadeJessica Orit SindellJacob NisslyThomas SperlDavid JandorfBrian DummErik KahlsonBert PhillipsK. David Van HoesenWilliam NamenEd ZadroznyMichael Haber (2)Cloyd DuffEmil ScholleShirley TrepelMary Kay FinkMark KosowerAdrian GnamShelley ShowersTakako MasameYun-Ting LeeAdam Han-GorskiJack SutteLouis BermanGareth ZehngutHarry FuchsHari BernsteinShachar IsraelFrank RosenweinStanley KonopkaRichard Weiss (4)Thomas Sherwood (2)Brian Thornton (4)Robert Walters (5)Brian WendelCharles Bernard (5)Robert WoolfreyLembi VeskimetsWesley CollinsMark DummAnalise KukelhanEliesha NelsonPeter Otto (5)Afendi YusufSae ShiragamiNathaniel SilberschlagElayna DuitmanMarc DamoulakisMichael Mayhew (2)Lisa BoykoStephen Rose (5)Joanna Patterson ZakanyThomas KlaberJeffrey PowersWilliam Bender (2)Eli MatthewsJeanne Preucil RoseEmilio LlinásJeffrey RathbunJerome Rosen (2)Alexandra PreucilLaura Griffiths (3)John ClouserDaniel McKelwayJung-Min Amy LeePaul KushiousTanner TanyeriAlicia KoelsKatherine BormannHenry PeyrebruneRalph CurryTrina StrubleHans ClebschZhan ShuStephen Tavani (2) + +548101King KolaxWilliam Little.American jazz trumpeter and bandleader. + +Born : November 06, 1912 in Kansas City, Missouri. +Died : December 18, 1991 in Chicago, Illinois. +Needs Votehttp://myweb.clemson.edu/~campber/kolax.htmlK. K.K. KolaxKing ColaxKolaxW. LittleWilliam Little (2)Billy Eckstine And His OrchestraKing Kolax OrchestraKing Kolax & His BandKing Kolax And His QuintetteKing Kolax & Combo + +548105John Watson (2)John M. Watson Sr.American jazz trombonist, actor and music teacher. + +b. January 10, 1937 +d. September 7, 2006Needs Votehttps://en.wikipedia.org/wiki/John_M._Watson_Sr.http://www.imdb.com/name/nm0914485/http://articles.chicagotribune.com/2006-09-15/news/0609150265_1_mr-watson-music-teacher-jazz-trombonistJ. WatsonJohn M. WatsonJohn M. Watson Sr.John Watson SrJohn Watson Sr.John Watson, Sr.Count Basie OrchestraHerb Miller Orchestra + +548187Lonnie Simmons (2)Pianist, organist, tenor saxophonist, jazz, r'n'b. Active in Chicago, 1950s + +Worked with [a=Al Cooper And His Savoy Sultans] until joining [a=Ella Fitzgerald And Her Famous Orchestra] in 1940.Needs Votewww.redsaunders.comLonnie SymonsSam SimmonsFats Waller & His RhythmElla Fitzgerald And Her Famous OrchestraAl Cooper And His Savoy Sultans + +548666Kelly MartinAmerican jazz drummer, born September 16, 1914 in Lake City, South Carolina +Kelly worked, among others in the Erroll Garner TrioNeeds VoteKelley MartinErroll Garner TrioErskine Hawkins And His OrchestraHoward Biggs Orchestra + +548732Jim AmlotteTrombone player. +Born: June 30, 1930 +Died: June 13, 2016 in Porter Ranch, CaliforniaNeeds Votehttps://data.bnf.fr/en/14149601/jim_amlotte/Jim AmloneJim AmoletteJim AmolotteStan Kenton And His OrchestraRussell Garcia And His OrchestraThe Monterey Jazz Festival OrchestraThe Los Angeles Neophonic OrchestraStan Kenton's Melophoneum Band + +548733Wayne DunstanAmerican saxophonistNeeds VoteDunstanDunstonWayne DunstenWayne DunstonRay Conniff And The SingersStan Kenton And His Orchestra + +548734Bob FitzpatrickAmerican jazz trombonist, played with: Skinnay Ennis, Woody Herman, Harry James, Paul Whiteman, Bobby Sherwood, Gene Krupa and Stan Kenton. +Born: 1921 in Des Moines, Iowa, USA. +Died: February 17, 1995 in Los Angeles, California, USA.Needs VoteB. FitzpatrickBob FitzpatrikFitzpatrickFrancis 'Bob' FitzpatrickFrancis FitzpatrickStan Kenton And His OrchestraMarty Paich OrchestraPete Rugolo OrchestraThe Los Angeles Neophonic OrchestraStan Kenton's Melophoneum Band + +548735Dave WheelerTrombone, Bass-Trombone, TubaNeeds VoteHarry James And His OrchestraStan Kenton And His OrchestraThe College All-StarsStan Kenton's Melophoneum Band + +548737Bob BehrendtTrumpet PlayerNeeds VoteBob BerhrendtStan Kenton And His OrchestraStan Kenton's Melophoneum Band + +548738Marvin HolladayAmerican baritone saxophone player, ethnomusicologist and jazz educator, born January 30, 1929. Needs VoteHolladayM. HolladayMarc HolladayMarv "Doc" HolladayMarv HolladayMarvin "'Dog" HolladayMarvin 'Doc' HolladayMarvin HalladayMarvin HoladayMarvin HolladeyMarvin HollidayWoody Herman And His OrchestraStan Kenton And His OrchestraThad Jones / Mel Lewis OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Fourth Herd + +548739Keith LaMotteIn January 1961, Keith was selected to play with [a320804]. He spent the next two years touring with [a3202839], first playing the Mellophonium and then later the Trumpet. He was also a part of many of Kenton's recordings from 1961-1962, including Stan's famous [m=214807] album. Needs VoteKeith B. LaMotteKeith La MotteKeith LaMotteStan Kenton And His OrchestraStan Kenton's Melophoneum BandAfter Six ComboThe Keith LaMotte Jazz Ensemble + +548740Paul RenziPaul E. RenziAmerican flautist, wind and reed player, born 25 February 1926 in New York City, New York and died 16 December 2014 in San Francisco, California. He was the son of [a2314244] and the father of [a1094365].Needs VoteNBC Symphony OrchestraStan Kenton And His OrchestraSan Francisco Symphony + +548741Carl SaundersAmerican jazz trumpeter, composer, and educator, born 2 August 1942 in Indianapolis, Indiana, USA; died February 25, 2023. Worked with [a212786], [a265381], [a300170], among others.Needs Votehttp://www.carlsaunders.com/https://en.wikipedia.org/wiki/Carl_Saundershttps://www.imdb.com/name/nm3010086/https://www.imdb.com/name/nm11138027/C. SaundersCal SaundersCarl SandersSaundersHarry James And His OrchestraStan Kenton And His OrchestraChris Walden Big BandDave Pell OctetThe Bill Holman BandClare Fischer Big BandThe Bob Florence Limited EditionThe Gary Urwin Jazz OrchestraGordon Brisker Big BandThe Carl Saunders SextetThe Phil Norman TentetBuddy Charles Concert Jazz OrchestraVic Lewis West Coast All-StarsPat Longo And His Hollywood Jazz BandThe Mike Vax Big BandThe H2 Big BandThe Los Angeles Jazz OrchestraRaoul Romero And His Jazz Stars OrchestraThe Las Vegas Jazz OrchestraThe Ray Reed QuintetThe Bud Shank Big BandThe Carl Saunders - Lanny Morgan QuintetMark Masters' Jazz OrchestraThe Carl Saunders ExplorationClare Fischer Latin Jazz Big BandBrent Fischer OrchestraMighty Little Big HornsChiz Harris SextetThe Med Flory QuintetLouie Bellson's Big Band Explosion!Roger Neumann Quintet + +548742Dwight CarverAmerican mellophonium player.Needs VoteCarverStan Kenton And His OrchestraStan Kenton's Melophoneum BandCarol Kaye And The Hitmen + +548743Jack SpurlockTrombonist.Needs VoteJohn SpurlockSpurlockStan Kenton And His OrchestraBuddy Rich Big Band + +548744Newell ParkerTrombone player from the 1940s Big Band era, having performed with [a145288] and [a212786] bands. He may also be credited using the nickname of "Bud". Needs VoteBud ParkerNewell (Bud) ParkerStan Kenton And His OrchestraStan Kenton's Melophoneum BandEmerald City Jazz Orchestra + +548745Bob RolfeAmerican jazz trumpeter.Needs VoteRobert RolfeHarry James And His OrchestraStan Kenton And His Orchestra + +548746Gene RolandGene M. RolandJazz trumpeter, bandleader, composer and arranger (born September 15, 1921 in Dallas, Texas, died August 11, 1982 in New York City, New York). + +Worked with, among others, [a300036], [a145262], [a269594], [a311059], [a313126], [a269597], [a30486], [a263796], [a259074], [a212786].Needs Votehttps://en.wikipedia.org/wiki/Gene_Rolandhttps://www.tshaonline.org/handbook/entries/roland-genehttps://www.allmusic.com/artist/gene-roland-mn0000804392https://adp.library.ucsb.edu/names/103942Eugene RolandG RolandG. BolandG. RolandG. RolandsG. RowlandG.RolandGene BolandGene RolanGene RowlandGreeneRolandRowlandWoody Herman And His OrchestraStan Kenton And His OrchestraClaude Thornhill And His OrchestraWoody Herman And The Swingin' HerdGene Roland OctetGene Roland SextetPaul Quinichette SextetEddie Safranski's All StarsThe Tom Talbert Jazz Orchestra + +548843Jari LappalainenJari LappalainenBorn on March 11, 1948 in Kuopio, Finland and died on June 16, 2022 in Helsinki, Finland. A long-time Finnish session musician. His main instrument was violin, but he also played mandolin, guitar and bass. Between 1969 and 1978 he also released solo records as a singer.Needs VoteJ. LappalainenJaroslav LappCumulus (2)Tami Combo + +548941Reijo LehtovirtaReijo LehtovirtaFinnish jazz musician (saxophone, clarinet), born 1935, died 1999.Needs VoteE. LehtovirtaLehtovirtaR, LehtovirtaR. LehtovirtaR.LehtovirtaV. HehtolitraSeppo Hovi Beat GroupPertti Metsärinteen YhtyeManu Teittisen YhtyeManu Teittinen EnsembleSuomi-VPK-OrkesteriSeppo Rannikko Big BandReijo Lehtovirran YhtyeHeikki Laurilan MandoliiniyhtyeReijo Lehtovirran Tango-orkesteriSolistiyhtye Humina + +548942Paavo HonkanenNeeds VoteNunnu Big BandPepe & ParadisePelimannikvartetti + +548996Clare TyackFreelance classical double bassist from Enfield, England.Needs VoteClare LongBBC Symphony OrchestraCity Of Birmingham Symphony Orchestra + +549499Sonny Rollins QuartetCorrectQuartetThe Sonny Rollins Quartetソニー・ロリンズ・カルテットソニー・ロリンズ四重奏団Miles DavisArt BlakeyRay BryantThelonious MonkSonny RollinsMax RoachKenny DrewTommy PotterConnie KayTommy FlanaganPercy HeathRed GarlandDoug WatkinsWade LeggeRoy HaynesSonny Clark"Philly" Joe JonesJo JonesGeorge MorrowPaul Chambers (3)Art TaylorWalter Bishop, Jr.John Lewis (2)Niels-Henning Ørsted PedersenAlbert Heath + +549757Eddie WilliamsEdward David WilliamsUS jazz [b]trumpeter[/b] Eddie Williams is based out of New York City. He has performed on nearly two dozen albums of mainstream jazz recorded between the mid-'50s and early '80s. His style ranges from hard bop to soul-jazz, and is most noted for his appearances on Lou Donaldson's 1969 releases titled "Hot Dog" and "Everything I Play Is Funky". More recently, Williams performed in the early-'90s comeback album of soul singer Solomon Burke, and also figures prominently in the funky Blue Break Beats series. He even trumpeted as a part of Broadway pit bands. + +For the tenor saxophonist, use [a=Eddy Williams (2)]. +For the bassist (1912-1995), member of [a=Johnny Moore's Three Blazers], use [a=Eddie Williams (3)]. +For the Swing-era alto saxophonist, use [a=Eddie WIlliams (5)]. +For the engineer, see [a=Ed Williams].Needs Votehttps://www.ibdb.com/broadway-cast-staff/eddie-williams-118398E. WilliamsEd WilliamsEd. WilliamsEddy WilliamsEdward David WilliamsEdward WilliamsWilliamsLionel Hampton And His OrchestraOliver Nelson And His Orchestra + +550031Heikki AnnalaHeikki Lauri AnnalaFinnish jazz bassist, composer and arranger, born 28 June 1934 in Lapua, Finland, died 23 July 1995 in Nurmijärvi, Finland. Needs VoteAnnalaH AnnalaH. AnnalaH.AnnalaLauri PeuraNiilo PollariHerb HyvilaHerbert Katz QuintetErik Lindström SextetHerbert Katz & FriendsSoitinyhtye LiisaThe NP SextetHeikki Laurila TrioTeuvo Suojärvi TrioSeppo Arjanteen KvintettiRadion TanssiorkesteriSeurasaaren PelimannitSeppo Rannikon Sekstetti + +550033Herbert KatzHerbert KatzBorn on December 10th, 1926 in Turku, Finland. Died on December 1st, 2007 in Göteborg, Sweden. A Finnish jazz and rock guitarist.Needs VoteH. KatzHäkäKatzHerbert Katz QuintetDDT JazzbandHacke Björksten CorporationBengt Hallberg QuartetScandia All-StarsHerbert Katzin YhtyeHerbert Katzin OrkesteriHerbert Katz & FriendsThe NP SextetFenno Jazz BandOnni Gideonin KvintettiOssi Malinen OctetRautalanka OyThe Vostok All-StarsThe ModangosTeuvo Suojärvi QuartetOld House SextetErna Tauro QuartetNCC Bygg Band + +550244Andrea BauerClassical cellist.Needs Votehttps://www.andreabauercello.com/A BBerliner SymphonikerStill Collins + +550339Christopher Van KampenChristopher Van KampenEnglish cellist, born 4 September 1945 in Pinner, Middlesex, England, UK; died 30 September 1997 in Pinner, Middlesex, England, UK. Married to [a=Marcia Crayford] (divorced).Needs Votehttps://www.naxos.com/person/Christopher_van_Kampen/5627.htmChris Van KampenChrist Van KampenChristian KampenChristopher Van KempenChristopher van KampenChristopher van KempenLondon SinfoniettaThe Nash EnsembleBrindisi QuartetThe London Cello Sound + +550341Leonard SlatkinLeonard Edward SlatkinUS conductor and composer. Born 1944 in Los Angeles, CA, USA. Son of conductor [a=Felix Slatkin] and cellist [url=/artist/435327]Eleanor (Aller) Slatkin[/url], and brother of cellist [a328533]. + +Music director of the [a=Saint Louis Symphony Orchestra] from 1979 to 1996, the [a=National Symphony Orchestra] from 1996 to 2008, then of the [a=Detroit Symphony Orchestra] from 2008 to 2012.Needs Votehttps://en.wikipedia.org/wiki/Leonard_Slatkinhttps://www.leonardslatkin.com/https://www.youtube.com/channel/UC1IrqSLQgOrCnak6LLY6-nQhttps://www.x.com/LeonardSlatkinhttps://www.facebook.com/MaestroLeonardSlatkin/https://www.instagram.com/LeonardSlatkin/L SlatkinL. SlatkinLeonard Slatkin, ConductorLeonard SlatkintLeonhard SlatkinSlatkinЛ. СлаткинЛеонард Слаткинセント・ルイス・シンフォニー・オーケストラレオナルド・スラットキンレナード・スラットキンBBC Symphony OrchestraDetroit Symphony OrchestraSaint Louis Symphony OrchestraLos Angeles Philharmonic OrchestraNational Symphony Orchestra + +550342Marcia CrayfordBritish classical violinist & conductor. +Former Leader of [a=The Nash Ensemble] for 25 years. Assistant Leader of the [a=London Symphony Orchestra] in 1996. She was Co-Artistic Director and leader of the [b]Mid Wales Chamber Orchestra[/b]. She has since formed [b]The Dragonfly Ensemble[/b].Needs Votehttps://soundcloud.com/marciacrayfordhttps://open.spotify.com/artist/0fDdykjEIEpJCNPP5M1Ch8https://music.apple.com/us/artist/marcia-crayford/20381761https://blog.rwcmd.ac.uk/2014/10/28/former-lso-leader-joins-junior-conservatoire/https://www.imdb.com/name/nm1095969/https://www2.bfi.org.uk/films-tv-people/4ce2bbfa92679CrayfordMarciaCrayfordLondon Symphony OrchestraThe Martyn Ford OrchestraThe London Telefilmonic OrchestraThe English Baroque SoloistsThe Nash Ensemble + +550656Alain LegrandFrench composer and musician. +Best known for composing the theme tune to the TV series 'The Magic Roundabout'.CorrectA. LeGrandA. LegranA. LegrandLegrandLes VénètesLes Pingouins + +550878Alois PoschAustrian double bass player, born 1959 in Wies, Austria.Needs Votehttps://www.allmusic.com/artist/alois-posch-mn0001644692Aloys PoschPoschOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Astor QuartetWiener OktettFestival Ensemble SpannungenWiener Ring Ensemble + +551071Alan LovedayAlan Raymond LovedayAlan Loveday (born February 29, 1928, Palmerston, New Zealand – died April 12, 2016) was a New Zealand-born British violinist. His son is [a430270].Needs Votehttps://en.wikipedia.org/wiki/Alan_LovedayA. LovedayThe Academy Of St. Martin-in-the-FieldsThe London Strings + +551076Jim Buck[b]ATTENTION![/B] +This profile lists releases on which it has not yet been ascertained whether the French horn player is [b][a=Jim Buck Sr][/b] or [b][a=Jim Buck Jr][/b]. +If you are certain about the identity of the player on a release, please move that release to one of the above profiles, using an appropriate ANV. Furthermore, if he appears as a member of a group, please don't forget to remove the group from this page and add it to the respective Sr's of Jr's page.Needs VoteJ. BuckJ. W. BuckJames BuckJimmy BuckEnglish Chamber OrchestraLes Reed And His OrchestraThe Alan Tew OrchestraMelos Ensemble Of LondonWestminster Brass EnsembleRobert Farnon And His Orchestra + +551083Ernest GreavesErnest Roger GreavesAustralian classical cellist. Born in late 1920s (1928?) in Brisbane, Queensland, Australia. +He played with the [a=Melbourne Symphony Orchestra] before joining the [a=Queensland State String Quartet], aged 21. Former Sub-Principal Cello of the [a=London Symphony Orchestra] (1965-1970).Needs VoteEarnest GreavesLondon Symphony OrchestraLondon Philharmonic OrchestraMelbourne Symphony OrchestraThe London Cello SoundHaffner String QuartetQueensland State String Quartet + +551091Harry DanksHarry Danks was a British viola player with [a=BBC Symphony Orchestra] from 1936-1978. +Born: 18th May 1912, Pensnett, Worcestershire, UK +Died: 26th April 2001, Addenbrooke, Cambridge, UK +Father-in-law of [a=Alexander Kok] (1964-1976).Needs VoteDanksBBC Symphony OrchestraThe Armada Orchestra + +551095Raymond KeenlysideRaymond Keenlyside was a British classical violinist. He passed away in June 2011.Needs VoteR. KeenlysideRay KeenlysideRaymond KeenleysideRaymond KeenteysideRaymond KeentysideEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsAeolian String QuartetThe London StringsBath Festival OrchestraThe Astarte Session OrchestraLondon Bach Ensemble + +551098Maurice LobanRussian-born (in Nikolayev, Ukraine -then Russia-) British violin and viola player, fl. 1930s. +He studied at the [l527847]. He joined the [a518900] in early 1930; he was replaced by his brother [a=Benny Loban] in early 1931. He then joined [a=Jack Hylton And His Orchestra] where he stayed until early 1936. He also played in [a212726].Needs Votehttp://www.nyu.edu/projects/wke/press/sheshallhavemusic/sheshallhavemusic.pdfM. LobanMorris LobanLondon Symphony OrchestraJack Hylton And His OrchestraPhilharmonia OrchestraDebroy Somers BandThe Kingsway Symphony OrchestraSydney Lipton And His Grosvenor House Band + +551164Deirdre CooperDeirdre CooperCellist from the UK. +As well as playing principal cello with the European Festival Orchestra at Les Jardin Musicaux, in Neuchâtel, Switzerland Deirdre has held positions with the Scottish Ballet Orchestra as principal cellist, The [a835546] as sub-principal and in 2010 joined (again) the PO cello section. She has been guest principal cellist with the [a=Philharmonia Orchestra], BBC Scottish Symphony, [a1905359], the [a1505245], [a1260606] and [a263416]. She is currently principal cellist with L’Orchestre Des Jardins Musicaux. She joined the [a=The Smith Quartet] in 1996 and the [a=The Philharmonia Orchestra] in 2010 as #3 Cellist.Needs Votehttps://www.philharmonia.co.uk/orchestra/players/17292/deirdre_cooperhttps://www.ellso.org/deirdre-cooperhttps://www.festivalofchapels.com/deirdre-cooperhttps://thefriedmanensemble.wordpress.com/about/the-friedman-ensemble/deirdre-cooper/https://divineartrecords.com/artist/deirdre-cooper/https://www.rambert.org.uk/performance-database/people/deirdre-cooper/Deidre CooperDeirdre Johnstone-CooperDiedre CooperDierdre CooperThe Smith QuartetPhilharmonia OrchestraBBC Scottish Symphony OrchestraEast London Late Starters OrchestraThe Waldegrave Ensemble + +551283John DunkerleyClassical music engineer. +John Dunkerley was senior balance engineer at the [l5320] Record Co. Ltd. from 1968-1997, until the closure of the recording centre. He has worked subsequently with the majority of the major labels, especially EMI Classics. + +Dunkerley’s teacher and mentor was [a833089], who was previously chief engineer of Decca until his retirement in 1980. Wilkinson’s career spanned more than fifty years beginning with the start of electrical recording at Decca in 1929. + +For the British folk artist, please use [a1547917].CorrectJohn DunkerlyДж. Данкерли + +551284Peter WadlandBritish classical music record producer, born in Exmouth 28 May 1946, died in London 30 June 1992, Wadland was Decca's [l66183] label manager. From 1973 to his death he curated the [l252070], which released performances of music from the Renaissance to the Romantic periods on original instruments.Needs Votehttp://www.independent.co.uk/news/people/obituary-peter-wadland-1530654.htmlPeter Waldland + +551598Alistair MacIsaacAlistair Joseph MacIsaacCorrectA. MacIsaacAlistair MacisaalMacIsaacMacisaacMaclsaccPublic Domain + +551620Richard MackeyAmerican horn player, born in 1929.Needs VoteRichard L. MackeyBoston Symphony OrchestraThe Cleveland OrchestraThe Horn Club Of Los Angeles + +551622Bob Mitchell (2)Robert Andrew MitchellAmerican jazz trumpeter and occasional R&B singer, born April 3, 1920 in Houston, Texas. +Worked with Jimmie Lunceford 1941-1947, Louis Jordan 1949-1956 and Count Basie in the early 1950s. He also backed up many popular and rhythm and blues singers. + +Not to be confused with younger trumpet player [a=Bobby Mitchell], who played with Basie in the 1970s.Needs VoteBobby MitchellMitchellRobert MitchellCount Basie OrchestraJimmie Lunceford And His OrchestraLouis Jordan And His Tympany FiveLouis Jordan And His OrchestraSam Trippe And His OrchestraBob Mitchell And His Orchestra (2) + +551626Isadore RomanAmerican violinist and session musician, born 2 February 1905 and died in January 1978.CorrectIsadora RomanThe Cleveland Orchestra + +552012Herman ClebanoffAmerican violinist & conductor. +Born: 2 May 1917, Chicago, Illinois. +Died: 13 January 2004, Sherman Oaks, California.Needs Votehttp://www.spaceagepop.com/clebanof.htmhttps://en.wikipedia.org/wiki/Herman_Clebanoffhttps://www.imdb.com/name/nm3032176/ClebanoffClebinoffH. ClebanoffH. GlebanoffH.ClebanoffHerman Clebanoff Y Su Orquesta De Cuerdas Y PercusiónHermann ClebanoffГ. ГлебановMilt Jackson & StringsChicago Symphony OrchestraThe Clebanoff StringsDavid Carroll & His OrchestraClebanoff And His OrchestraThe Clebanoff Strings and Orchestra + +552016Bill EltonWilliam "Bill" EltonAmerican jazz trombonist. Died in Los Angeles on Friday, November 28, 2008.Needs Votehttps://www.legacy.com/us/obituaries/gadsdentimes/name/william-elton-obituary?id=23240683Bill EatonBill HeltonEltonWilliam EltonGil Evans And His OrchestraElliot Lawrence And His OrchestraPatrick Williams And His OrchestraThe Nat Pierce OrchestraBill Russo And His OrchestraBob Brookmeyer And His OrchestraChubby Jackson's Big BandUrbie Green And Twenty Of The "World's Greatest" + +552021Manny AlbamEmmanuel AlbamAmerican jazz baritone saxophonist, arranger, composer, and teacher. + +b. June 24, 1922 (Samana, Dominican Republic) +d. October 2, 2001 (Croton-on-Hudson, NY, USA) +Needs Votehttps://adp.library.ucsb.edu/names/104686AlbamAlbanM. AlbamM. AlbanM.AlbamMAMannie AlbamManny Albam Conducting His Strings That SingManny AlbanManny AlbaumManny AlbumMany AlbamNanny AlbamNeal Hefti's OrchestraManny Albam And His Jazz GreatsGeorgie Auld And His OrchestraZoot Sims And His OrchestraManny Albam And His OrchestraManny Albam Big BandManny Albam His Chorus And OrchestraManny Albam And Ernie Wilkins OrchestraHerbie Fields Swingsters + +552044Pat PattisonJazz musician, played tuba and bass, in Chicago in the 1920s-1930s.Needs VotePatt PattisonPattisonMuggsy Spanier's Ragtime BandDanny Altier And His OrchestraPaul Mares & His Friars Society Orchestra + +552195Fritz LehmannGerman conductor and professor (* 17 May 1904 in Mannheim, German Empire; † 30 March 1956 in Munich, Germany).Needs Votehttps://de.wikipedia.org/wiki/Fritz_Lehmann_(Dirigent)F. LehmannF.LehmannGeneralmusikdir. Fritz LehmannGeneralmusikdirektor Fritz LehmannGeneralmuzikdirektor Fritz LehmannLehmannOperndirektor Fritz LehmannProf. Fritz LehmannAlfred Federer + +552306TechnikoreAlfie Geno Raymond BamfordUK Hardcore DJ & producer hailing from Basingstoke, England, UK. +In 2015 he relocated to Sydney, Australia. +Co-founder of digital label [l=OneSeventy] (2016-).Needs Votehttp://www.facebook.com/technikorehttp://www.instagram.com/technikoredj/http://twitter.com/Technikorehttp://myspace.com/technikorehttp://soundcloud.com/technikoredjhttp://open.spotify.com/artist/45mQUJrPyctvf2IhkVE0ymTechnikalAlf BamfordSolar ScapeElemental (3)Alfy XCritikal (2)Covered UpImmerzeOutsider (14)Ikorus + +552707Kai Winding QuintetNeeds Major Changes + +552708Don BagleyDonald Neff BagleyAmerican jazz double bassist and bandleader. +Born : July 18, 1927 in Salt Lake City, Utah. +Died : July 26, 2012 in Los Angeles, California. + +From the 40s he he did extensive work as a session and touring musician. In the 1970s and '80s he composed and arranged for film and television and worked with Burt Bacharach between 1976 and 1984. +Don played with : Stan Kenton, Nat King Cole, Dexter Gordon, Zoot Sims, Maynard Ferguson, Shelly Manne, among others. +As a bandleader he released three albums under his own name. +Needs Votehttp://en.wikipedia.org/wiki/Don_Bagleyhttps://adp.library.ucsb.edu/names/302531BagleyD. BagbyD. BagleyDonDon BaglyDonald BagleyDonald N. BagleyE. Bagleyドン・バグリーLes Brown And His Band Of RenownStan Kenton And His OrchestraZoot Sims SextetLee Konitz QuintetShorty Rogers And His GiantsShelly Manne SeptetRoy Wiegand Jazz OrchestraPaul Horn QuartetThe Howlett Smith QuartetThe Wrecking Crew (6)Rosolino-Persson Sextet + +552712Bart CaldarelliTenor saxophonist, jazz player.Needs VoteBart CaldarallBart CaldarellBart CaldarrelBart CalderalBart CalderallBart CalderellBart CalderwallBart CardarellBert CaldarellBert CalderalStan Kenton And His OrchestraHal McIntyre And His OrchestraKen Hanna And His Orchestra + +552714Al Cohn QuartetCorrectTommy PotterAl CohnGeorge WallingtonTiny Kahn + +552716Tony Di NardiAnthony P. "Tony" DiNardiJazz Trumpeter for the top swing bands of the 1940s and '50s, including [a229639], [a299282] and [a269594]. He passed away in April 1998.Needs VoteT. DiNardiToni DinardoTony DiNardiTony DinardoCharlie Barnet And His Orchestra + +552717Bill RussoWilliam Joseph Russo, Jr.US-American jazz musician, arranger and composer born 25 June 1928 in Chicago, Illinois, USA and died 11 January 2003 in Chicago, Illinois, USA.Needs Votehttps://musicbrainz.org/artist/88003f59-44ba-4841-a404-12d70804a077B. RussoB.RussoBill TussoRussellRussoW. RussoWilliam "Bill" RussoWilliam <RussoWilliam Joseph "Bill" Russo, Jr.William RussoБ. РуссоStan Kenton And His OrchestraBill Russo And His OrchestraShelly Manne Septet + +552718John CoppolaAmerican jazz trumpeter (Born 1929 in Geneva, New York State). +Needs VoteCoppolaJ. CoppolaJohnJohn CappolaJohn CopollaJohnny CapoloJohnny CappolaJohnny CoppolaWoody Herman And His OrchestraStan Kenton And His OrchestraCharlie Barnet And His OrchestraWoody Herman And The Las Vegas HerdWoody Herman BandWoody Herman And The Fourth HerdVirgil Gonsalves Big BandWoody Herman And His OctetWoody Herman And The Swingin' Herd (2) + +552721Art RaboyJazz SaxophonistCorrectCharlie Barnet And His Orchestra + +552723Wesley JonesJazz PianistCorrectW. JonesWesly JonesLester Young And His Band + +552725Bob GiogaAmerican jazz saxophonist (baritone and tenor), clarinetist, bassist, bassoonist. + +Born : May 19, 1905 in California. +Died : February 24, 1999 in Santa Ana, California. + +Bob played with (among others) [a212786], [a37733], [a251873], [a38207], [a312417], [a145288], [a258903], [a299948], [a252750].Needs Votehttps://de.wikipedia.org/wiki/Bob_Giogahttps://www.allmusic.com/artist/bob-gioga-mn0000910255/biographyhttps://www.loc.gov/item/gottlieb.05251/https://rateyourmusic.com/artist/bob-gioga/credits/https://adp.library.ucsb.edu/index.php/mastertalent/detail/317834/Gioga_BobB. GiogaBob GioaRobert GiogaMetronome All StarsStan Kenton And His Orchestra + +552726Arno MarshArno Marsh (born May 28, 1928, Grand Rapids, Michigan, USA – died July 12, 2019) was an American jazz tenor saxophonist. Marsh played in dance bands from the age of 18, with [a239399] 1951-1953, and later played with hotel orchestras in Las Vegas.Needs Votehttps://en.wikipedia.org/wiki/Arno_MarshA. MarshArno MarchMarshHarry James And His OrchestraWoody Herman And His OrchestraWoody Herman And His WoodchoppersThe Woody Herman Big BandWoody Herman BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdMed Flory OrchestraWoody Herman And The Swingin' Herd (2)Fred Radke & His Swingin' Big BandThe Carl Fontana - Arno Marsh QuintetThe Arno Marsh Quintet + +552728Claude WilliamsonAmerican jazz pianist; born November 18, 1926 in Brattleboro, Vermont, USA, died July 16, 2016 +Older brother to trumpeter [a=Stu Williamson]Needs Votehttps://en.wikipedia.org/wiki/Claude_Williamsonhttps://news.allaboutjazz.com/claude-williamson-1926-2016.php?utm_C. WIlliamsonC. WilliamsonC.WilliamsonChuck WilliamsonClaud WilliamsonClaude WilliamsClaude Williamson, Jr.WilliamsonCharlie Barnet And His OrchestraPete Rugolo OrchestraHoward Rumsey's Lighthouse All-StarsThe Bud Shank / Bob Cooper QuintetThe Buddy Bregman OrchestraLeith Stevens & His OrchestraDave Pell OctetBud Shank QuartetThe Bill Perkins QuartetThe Claude Williamson TrioStan Levey SextetThe Conte Candoli QuartetJohn Graas SeptetThe Frank Rosolino SextetThe Tom Talbert Jazz OrchestraThe Claude Williamson QuartetDizzy Reece QuintetStu Williamson Quintet + +552731Kenny MartlockJazz TrombonistCorrectKen MarlockKen MartlockCharlie Barnet And His Orchestra + +552733Sam StaffJazz SaxophonistNeeds VoteStaffWoody Herman And His OrchestraWoody Herman And His WoodchoppersThe Woody Herman Big BandWoody Herman And His Third HerdThe Mystery Band (3)The Urbie Green Septet + +552734Dick KenneyRichard Mathewson KenneyAmerican big band trombonist, born July 6, 1920 in Albany, New York.Needs Votehttp://www.radioswissjazz.ch/de/musikdatenbank/musiker/1374142dfe32843b13dcf049b0e06d69ccf350/titelhttps://www.allmusic.com/artist/dick-kenney-mn0002288060Dick KennedyDick KennyLes Brown And His Band Of RenownWoody Herman And His OrchestraStan Kenton And His OrchestraCharlie Barnet And His OrchestraThe Woody Herman Big BandWoody Herman BandWoody Herman And His Third HerdToots Mondello And His Orchestra + +552735Vinnie DeanVincent DiVittorio.American jazz saxophonist (alto). +Played with : Stan Kenton and many others. + +Born : August 08, 1929 in Mount Vernon, New York State. +Died : September 14, 2010 in Danbury, Connecticut. +Needs Votehttps://en.wikipedia.org/wiki/Vinnie_Deanhttp://vinniedean.com/Home_Page.phpV. DeanVinni DeanVince DiVittorioStan Kenton And His OrchestraCharlie Barnet And His OrchestraThe Eddie Bert SextetSal Salvador And His Orchestra + +552736Gail BrockmanJazz TrumpeterNeeds VoteBrockmanBilly Eckstine And His OrchestraGene Ammons And His OrchestraGene Ammons QuintetJimmy Dale Band + +552738Doug MettomeDouglas Voll Mettome.American jazz trumpeter. +Born : March 19, 1925 in Salt Lake City, Utah. +Died : February 17, 1964 in Salt Lake City, Utah. + +Worked with : Billy Eckstine (1946-'47), Benny Goodman (1948-'49), Woody Herman (1950-'52), Tommy Dorsey (1953), Allen Eager, Urbie Green and others. +Needs Votehttps://www.allmusic.com/artist/doug-mettome-mn0000263816/biographyhttps://adp.library.ucsb.edu/names/331390Dorey MittoneDoug MettoneDouglas MettoneWoody Herman And His OrchestraBenny Goodman SeptetNeal Hefti's OrchestraAllen Eager QuintetWoody Herman And His WoodchoppersSam Most QuartetThe Dorsey Brothers OrchestraThe Nat Pierce OrchestraJohnny Richards And His OrchestraWoody Herman And His Third HerdThe Urbie Green Septet + +552740Howard RumseyAmerican jazz bass player. Born on November 7, 1917 in Brawley, California, USA. Died on July 15, 2015 in Newport Beach, California. He began his recording career in Stan Kenton's orchestra in 1941 and managed [url=https://www.discogs.com/label/404692-The-Lighthouse-Hermosa-Beach]The Lighthouse in Hermosa Beach[/url] in the 1950s. In 1981 he left The Lighthouse to start his [l824686] venue in Redondo Beach, also in California.Needs Votehttps://en.wikipedia.org/wiki/Howard_Rumseyhttps://adp.library.ucsb.edu/names/341505https://www.allmusic.com/artist/howard-rumsey-mn0000277201/creditshttps://www.imdb.com/name/nm1150614/https://www.namm.org/library/oral-history/howard-rumseyH. RumseyHoward MumseyHoward RumsyRumseyStan Kenton And His OrchestraCharlie Barnet And His OrchestraArt Pepper QuartetHoward Rumsey's Lighthouse All-Stars + +552743Don LanphereDonald Gale LanphereAmerican jazz tenor and soprano saxophonist, born 26 June 1928 in Wenatchee, Washington, USA, died 9 October 2003 in Redmond, Washington, USA.Needs Votehttps://adp.library.ucsb.edu/names/326481D. LanphereDon LamphereLanphereWoody Herman And His OrchestraFats Navarro QuintetArtie Shaw And His Gramercy FiveStan Getz QuartetDon Lanphere QuartetWoody Herman's Big New HerdWoody Herman And The Swingin' HerdWoody Herman And The Fourth HerdDon Lanphere QuintetThe Don Lanphere SextetWoody Herman & The Second HerdEarl Coleman And His All Stars + +552746Ivar JaminezJazz PercussionistCorrectAnivar JaminezAnivar JemenezAnivar JimenezAnviar JaminezCharlie Barnet And His Orchestra + +552748Ralph BlazeAmerican jazz guitarist. +Born : April 11, 1922 in New Brunswick, New Jersey. + +Ralph played with Stan Kenton, Gene Krupa and others. +Needs Votehttps://www.allmusic.com/artist/ralph-blaze-mn0000668530/biographyR. BlazeStan Kenton And His Orchestra + +552909Dave HildingerDavid Sprague HildingerAmerican composer, arranger, pianist and percussionist, born 19.11.1928 in Ann Arbor (Michigan), died 29.03.2020. +He received his Masters of Music from the University of Michigan in 1951. In 1954 he did post-graduate work at the Manhattan School of Music (New York). He than moved to Germany to work in radio, television, film and stage where he composed, arranged and conducted. After returning to the US he became a professor of music at the University of Ottawa, where he initiated and led the Jazz program until his retirement in 1991.Needs VoteD. HildingerHildingerKurt VeidtRIAS TanzorchesterThe Karas-Hildinger OrchestraThe Karas-Hildinger Orchestra And Chorus + +552915Joseph SingerAmerican horn player, born 1909 in Philadelphia, USA, died 1978Needs Votehttps://web.archive.org/web/20230512205319/https://www.hornsociety.org/ihs-people/past-greats/28-people/past-greats/612-singerhttps://windsongpress.com/brass%20players/horn/Singer.pdfJ. SingerJoe SingerSingerGil Evans And His OrchestraNew York PhilharmonicBoston Symphony OrchestraCharlie Parker With Strings + +553137Matthias SchefflerMatthias SchefflerCorrecthttp://www.mat-silver.com/http://www.myspace.com/matsilverM SchefflerM. SchefflerM. SchefferM. SchefflerM. SchefflorM. ShefflerM.SchefflerMatthias SchefilerMat SilverStokerEndymion (2)Mat Silver vs. Tony BurtSilver & ChromeB.BeachNova (13) + +553565Ozzie BaileyAmerican vocalist, briefly working with Duke Ellington during the late 1950s (born 6 November 1925, died in the early 1980s, most likley of cancer).Needs VoteO. BaileyDuke Ellington And His Orchestra + +553731Adam KuenzelAmerican flute player.CorrectMinnesota Orchestra + +553792Cyril AssousRobert AssousFrench musician and songwriter born in 1948.Needs Votehttps://fr.wikipedia.org/wiki/Cyril_AssousAssiousAssousC AccousC. ArsonC. AssouC. AssoudC. AssousC. AssoussC. AssousseC. AssovC.AssousCassonsCassousClaude AssousCryril AssourCyrilCyril AssouzCyrill AssousCyrille AssousR. AssousRobert Assousסיריל אסוסRobert AssousDonald FlowyCar Line + +554032Bruno LazzarettiItalian tenor, born 5 September 1957.Needs VoteBruno LazarettiLazzarettiБруно Лаццаретти + +554201Poppy HoldenPoppy HoldenSoprano vocalist Poppy Holden launched her singing career by premièring new works, then specialised in baroque and earlier music, making recordings and giving concerts worldwide. When health problems cut short her performing career, she wrote for music journals and presented music programmes on Radio 3. +Needs Votehttp://www.poppyholden.com/poppyholden/Poppy_Holden.htmlThe Palm Beach OrchestraThe Tallis ScholarsTrevor Wishart & FriendsThe Consort Of Musicke + +554285Jon Kingsley HallOwns a production company called "BAM" together with [a=George Stewart (2)] with their studio based in Finsbury Park.Needs VoteHallJ HallJ. HallJ. Kingsley HallJ. Kingsley-HallJ.HallJ.Kingsley-HallJohn HallJohn Kingsley HallJon HallKingleyhallJHQKissing The PinkAscendant MastersLuxia + +554732Josef RittClassical trombonistNeeds VoteJoseph RittConcentus Musicus Wien + +554868Jaroslav StranavskyJaroslav StráňavskýSlovak recording engineer. +Born January 7, 1960 in Turzovka (former Czechoslovakia, presently Slovakia). +Correcthttp://www.musicmaster.sk/jaroslav-stranavsky.phtml?id3=52047Jaroslav StránavskyJaroslav StráňavskyJaroslav Stráňavský + +555458Yuri TemirkanovЮрий Хатуевич ТемиркановRussian conductor, artistic director, and chief conductor of the [a=Leningrad Philharmonic Orchestra] since 1988. He was born 10 December 1938 in Nalchik, Russia. Died 2 November 2023. (Russian: Юрий Хатуевич Темирканов; Kabardian: Темыркъан Хьэту и къуэ Юрий)Needs Votehttps://ru.wikipedia.org/wiki/%D0%A2%D0%B5%D0%BC%D0%B8%D1%80%D0%BA%D0%B0%D0%BD%D0%BE%D0%B2,_%D0%AE%D1%80%D0%B8%D0%B9_%D0%A5%D0%B0%D1%82%D1%83%D0%B5%D0%B2%D0%B8%D1%87https://en.wikipedia.org/wiki/Yuri_Temirkanovhttps://symphony.org/obituary-conductor-yuri-temirkanov-84/https://www.imdb.com/name/nm0854597/Iouri TemirkanovJuri TemirkanovJuri TemirkanowJurij TemirkanovJurij TěmirkanovTemirkanovTemirkanowY. TemirkanovYuri TemikanovYuri TemirkanowYuri TemizkanovТемиркановЮ. ТемиркановЮрий Темиркановユーリ・テミルカーノフRoyal Philharmonic OrchestraLeningrad Philharmonic OrchestraSt. Petersburg Philharmonic OrchestraLeningrad Kirov Theater OrchestraLeningrad Academic Philharmonic Symphony OrchestraОркестр Ленинградского Государственного Академического Малого Театра Оперы И Балета + +555462Charles GounodCharles François GounodFrench composer. +Born: 1818-06-17 (Paris, France). +Died: 1893-10-18 (Saint-Cloud, France).Needs Votehttps://www.charles-gounod.com/https://en.wikipedia.org/wiki/Charles_Gounodhttps://www.bach-cantatas.com/Lib/Gounod-Charles.htmhttps://www.treccani.it/enciclopedia/charles-francois-gounod/https://www.britannica.com/biography/Charles-GounodA GounodA. GounoA. GounodA. GrounodANV GounodBounodC GounodC. CounodC. F. GounodC. GonoudC. GounaudC. GounodC. GounodgC. GounoudC. GunoC. GunodC. GunoudC. グノーC.F. GounadC.F. GounodC.GenoudC.GounodC.H. GounoudC.グノーCH. GounodCarlo GounodCh - GounodCh GounodCh. Charles GounodCh. CounodCh. F. GounodCh. GaunodCh. GonoudCh. GoundCh. GoundoCh. GounodCh. GounotCh. GounoudCh. GuonodCh.-F. GounodCh.GounodCharl GounodCharl GounoudCharle GounodCharle GounodsCharle GounotCharles F. GounodCharles Francis GounodCharles Francois GounodCharles François GounodCharles Françoise GounodCharles Franϛois GounodCharles GonoudCharles GounedCharles GounotCharles GournardCharles GuonodCharles-Francois GounodCharles-François GounodChas. GounodChr. GounodChrales GounodF. GounodG. GounodG. H. GounodG.GounaudG.GounodGOUNODGaunodGlounodGoenudGonodGonoudGounadGoundGoundoGounodGounod / JounodGounod C.Gounod Ch.Gounod CharlesGounod Charles FrancoisGounod u.a.Gounod'sGounod, C.F.Gounod, ChalesGounod, CharlesGounod, Charles FrancoisGounod, Charles FrançoisGounod.GounodaGounoldGounotGounothGounoudGounozGrounodGudnodGunaudGunoGuno BahGunodGunoudGunoutGuonodJ. GounodJ.S.BachP.D.S. GounodS. GunoThomasŠ. GunoŠ.GunoŠarl GunoŠarls GunoГуноГунодЧ.ГуноШ ГуноШ. ГуноШ.ГуноШарл ГуноШарль ГуноШарль Франсуа ГуноШарль-Франсуа Гуноגונוგუნოグノーシャルル=フランソワ・グノーシャルル・グノーシャルル・グノー = Charles Gounod古諾구노 + +555490Veikko HuuskonenVeikko Johannes HuuskonenFinnish accordionist, composer and conductor. Born on October 15, 1930 in Helsinki, Finland.Needs VoteV. HuuskonenV.HuuskonenVeikko Huuskosen Tango-OrkesteriVeikko Huuskosen YhtyeKirkkonummen Kamariorkesteri + +555645Hy WeissHyman Y. WeissAmerican record producer, songwriter, & label owner of Pop/R&B music in 1950s-1960s. +Born 12 February 1923, Romania. +Died 20 March 2007, Englewood, New Jersey, USA. + +[b]Weiss[/b] moved with his parents to the Bronx, where he grew up and, after WW II, where he returned to work as a furrier and then a bouncer. During the mid 1940s [b]Weiss[/b] then learned the art of shifting music product as a sales distributor for the [l92737] and [url=http://www.discogs.com/label/Exclusive+(2)]Exclusive[/url] labels, selling to record stores and later to jukebox owners. + +By the late 1940s the activities of [b]Weiss[/b] were part of a New York music culture that had really began to heat up in a fusion of diverse styles and clubs, such as [a=Morris Levy]'s 'Birdland' and those of [a=George Goldner], which sprang up to cater to a fan base that would, in turn, provide a record-buying audience. To tap this market in the early 1950s [b]Weiss[/b] and his brother [url=http://www.discogs.com/artist/Sam+Weiss+(2)]Sam[/url] started the Parody label and recorded [url=http://www.discogs.com/artist/Danny+Taylor+(2)]Danny Taylor[/url], whilst also aiding distribution of [l71694] and [a=Jubilee] labels, helping in the success of [a383344]. + +In July 1953 [b]Weiss[/b] intercepted [a2115449], who were about to audition elsewhere, and got them to record 'You Could Be My Love'. This was when the [b]Weiss[/b] brothers moved into what appeared on paper to be a prestige Madison Avenue address at East 125th Street. It was in fact a small office in back of an old theatre, previously occupied by a duplicating company called Old Town Corporation. To cut corners, [b]Weiss[/b] used this company's old stationery stock to launch [a2115449] on his new label. Thus, [l=Old Town Records] was born. + +The label launched a history of popular artists, from R&B, blues and doo wop to pop. One of its first national hits was by [a340090]. [b]Weiss[/b] also began the distribution house Superior, which came to handle [l33515], Cindy, [l98754], Lamp, [l=Coed], Tip-Top, [l=End], [url=http://www.discogs.com/label/Gone+Records]Gone[/url], Bullseye, [url=http://www.discogs.com/label/Vee+Jay+Records]Vee-Jay[/url], and [a=John Vincent]'s labels, such as [l1588567] and [url=http://www.discogs.com/label/Ace+Records+(3)]Ace[/url]. He created a publishing company called Maureen Music and initiated other labels, such as Whiz, [l234230] (on which he signed [a375478]) and [l238226]- named after his son, who would later become president of the [url=http://www.discogs.com/label/Zomba+Records]Zomba Label Group[/url]. Old Town also enjoyed some success in the UK. By the 1960s [b]Weiss[/b] had begun to wind down his work with the label and briefly worked with [a=Arthur Prysock] (who had recorded for Old Town) at [l=Stax] before selling his publishing interests and Old Town, whose back catalog is featured on the [l=Ace] label. + +[b]Weiss[/b] died of natural causes, aged 84, leaving three children, four grandchildren and an indelible legend as one of the industry’s great original independent record men and entrepreneurs. +Father of [a=Barry Weiss (3)].Needs Votehttps://www.newspapers.com/clip/75472384/hyman-hy-weiss-music-impresario/https://en.wikipedia.org/wiki/Hy_WeissH WeissH. WeissH. WiessHy WelssHyman WeissS. WeissSy WeissWeiss + +555647John MarkhamJohn Gordon MarkhamJazz drummer and bandleader. +Born November 1, 1926 in Oakland, California. Died October 4, 1998 (71 years old). +Markham performed and recorded with Charlie Barnet 1950-1952 and then with Billy May 1952-1953. From 1955 mostly working in television, with the occasional tour or recording session. He is noted for his work with many greats, including Frank Sinatra, Benny Goodman, Ella Fitzgerald, Peggy Lee, and other prominent musicians with whom he toured.Needs VoteJ. MarkhamJohn MarhamJohnny MarkhamMarkhamCharlie Barnet And His OrchestraCal Tjader QuintetRed Norvo QuintetVince Guaraldi QuartetBob Harrington QuartetBenny Goodman And His Jazz GroupBill Perkins And His San FranciscansBenny Goodman BandJohn Markham OrchestraBenny Goodman Tentet + +555746Steve BraunsteinPlays contrabassoon in the San Francisco Symphony.Needs VoteSteven BraunsteinSteven J. BraunsteinSan Francisco Symphony + +555778Tony KlatkaAmerican composer, arranger and jazz musician ((primarily) trumpeter & bassist). +Born 6 March 1946 in New York City, New York.Needs Votehttps://soundcloud.com/tony-klatkahttps://www.facebook.com/people/Tony-Klatka/100011090310012https://www.linkedin.com/in/tony-klatka-5b059a39/https://www.youtube.com/channel/UCmTj3uC23sSCVd1jomxx7Kghttp://www.jorgenand.se/bst/bst_stor.html#klatkahttps://es.wikipedia.org/wiki/Tony_Klatkahttps://de.wikipedia.org/wiki/Tony_KlatkaA.J. KlatkaAnthony J. KlatkaAnthony KlatkaKlatkaKlatkeT. KlatkaBlood, Sweat And TearsWoody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman And The Thundering HerdNeophonic Jazz OrchestraThe Buddy Rich Band + +555779Richard DollarhidePercussionist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +555780Marilyn BergmanMarilyn Keith BergmanBorn: November 10, 1929 in Brooklyn, NY. +Died: January 8, 2022 in Beverly Hills, CA. + +Composer and songwriter, and President and Chairman of the Board of ASCAP. She is also the wife of and collaborator with [a=Alan Bergman]. +Inducted into Songwriters Hall of Fame in 1980. + +[b] >> When credited with [a=Alan Bergman], please use the joint credit: [a=Alan & Marilyn Bergman] << [/b] unless there is a third writer involved.Needs Votehttps://www.imdb.com/name/nm0004750/B BergmanB. BergmanB. BergmannBergmanBergman M.Bergman, M.BergmannBergmann, M.BergmonBermanBersmanBorgmanKeithM BergmanM. BargmanM. BegrmanM. BerganM. BergmanM. BergmannM. BermanM. BorganM. BurgmanM.BergmanM.BergmannMarily BergmanMarilym BergmanMarilynMarilyn (Keith) BergmanMarilyn BergamnMarilyn BermanMarilyn BersmanMarilyn BregmanMarlyn BergmanMary BergmanMarylinMarylin BergmanMarylin BergmannMergmanMerilyn BergmanW. BergmanW. BergmannМерилин БергманMarilyn KeithAlan & Marilyn Bergman + +555781Alan BergmanAlan BergmanHusband of and songwriting collaborator with [a=Marilyn Bergman]. Born 11 September 1925 in Brooklyn, New York, NY, USA. Died 17 July 2025 in Los Angeles, CA, USA. +Inducted into Songwriters Hall of Fame in 1980. + +[b] >> When credited with [a=Marilyn Bergman], please use the joint credit: [a=Alan & Marilyn Bergman] << [/b] unless there is a third writer involved.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/104319/Bergman_Alanhttps://www.imdb.com/name/nm0074732/A BergmanA, BergmanA. BergamanA. BergmanA. BergmannA. BermanA. BurgmanA. M. BergmanA. bergmanA.BergmanA.BergmannA.BregmanAlain BergmanAlanAlan - M. BerguemanAlan BergamnAlan BerganAlan BermanAlan BersmanAlan BregmanAllan BergmanAllan BergmannAllen BerganAllen BergmanAllin BergmanB. BergmanBagmanBargmanBergemanBergmanBergman A.Bergman, A.BergmannBergnamBergnanBermanBersmanBorgmannBurgmanH. BergmanIan BergmanАлан БергманБергманAlan & Marilyn Bergman + +555782Steve KohlbacherAmerican jazz trombonist.Needs VoteStephen KohlbacherWoody Herman And His OrchestraFull Faith & Credit Big BandWoody Herman And The Thundering HerdNew York All-State High School Orchestra + +556376Jimmy KennedyJames B. KennedyIrish songwriter, born 20 July 1902 near Omagh, Northern Ireland, UK, died 6 April 1984 in Cheltenham, England, UK. +Brother of [a=Hamilton Kennedy].Needs Votehttp://en.wikipedia.org/wiki/Jimmy_Kennedyhttps://adp.library.ucsb.edu/names/103369B. KennedyC. KennedyCennedyE. KennedyF. KennedyG. KennedyGimmy KennedyI. KennedyJ B KennedyJ KenedyJ KennedyJ, KennedyJ- KennedyJ. B. KennedyJ. JennedyJ. KenedyJ. KenndeyJ. KenndyJ. KennedyJ. KenneyJ. ケネディJ.. KennedyJ.B. KennedyJ.B.KennedyJ.KennedyJ.P. KennedyJ; KennedyJack KennedyJames B. KennedyJames KennedyJemmy KennedyJerry KennedyJim KennedyJimmay KennedyJimmi KennedyJimmie KendyJimmy B. KennedyJimmy KenneddyK. KennedyKannedyKenedyKenndeyKenndyKennedKenneddyKennedeyKennedyKennedy J.Kennedy JimmyKennedy, JKennedy, J.Kennedy, JimmyKennedyeKenneyKennnedyStoneT. KennedyTimmy KennedyWilliamsY.B. KennedyД. КеннедиДж. КеннедиКеннеди + +556382Jimmy McHughJames Francis McHugh*10 July 1894 in Boston, Massachusetts, USA +† 23 May 1969 in Beverly Hills, California, USA + +As an American songwriter McHugh worked as a pianist and salesman for the Boston office of Irving Berlin's publishing company, before moving to New York, where he met [a=Dorothy Fields]. McHugh and Fields would write many songs together, first on Broadway and then in Hollywood. After Fields had returned to Broadway, McHugh continued to work with other lyricists in Hollywood, notably [a=Harold Adamson]. +Needs Votehttp://www.jimmymchughmusic.com/https://en.wikipedia.org/wiki/Jimmy_McHughhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103080/McHugh_JimmyBilly Mac HughD. McHughF. McHughFields-McHughHcHughHughHughesJ McHughJ MchughJ, McHughJ. McHughJ. HughJ. M. HughJ. M. HughtJ. MC HughJ. MCHughJ. Mac HughJ. Mac-HughJ. MacqueJ. Mc HugeJ. Mc HughJ. Mc-HughJ. Mc. HugJ. Mc. HugeJ. Mc. HughJ. Mc.HoughJ. Mc.HughJ. McHighJ. McHugeJ. McHuggJ. McHughJ. McHughcJ. McHuhgJ. Mc`HouJ. MchughJ. マクヒューJ.M. HughJ.M.HughJ.Mc HughJ.McHughJ.McMughJ.mc HughJMc HughJMcHughJames Francis "Jimmy" McHughJames Francis Mc HughJames Francis McHughJames McHughJim McHughJim MchughJimm McHughJimmi McHughJimmie Mc HughJimmie McHookJimmie McHughJimmyJimmy HughJimmy Mac HugJimmy Mac HughJimmy Mac-HughJimmy MacHughJimmy MachughJimmy Mc HugJimmy Mc HugaJimmy Mc HughJimmy Mc. HughJimmy McHoughJimmy McHugJimmy McHugeJimmy McHugnJimmy McMuphJimmy MchughJimmy MettughJohnny Mc HughJummy McHughJymmy Mc HugM. C. HughM. HughM. McHughMCMC. HughMac HugesMac HughMac Hugh JimmyMacHughMattughMc HugMc HugeMc HughMc HughesMc TughMc-HughMc. HugMc. HughMc.HughMcGughMcHeartMcHeighMcHighMcHiughMcHugMcHugeMcHughMcHugh JimmyMcHugh, JMcHughesMcHughjMcHughtMcHugnMcJughMcMughMchughMeHughMettugn JimmyMillsMr. HughPete RugoloS. Mac HughSammy McHughV. Mac HughW. McHughД. Мак-ХюгД. МаккьюД. МакхьюД. МакьюДж. Мак ХюДж. Мак-ХьюДж. МаккьюДж. МакхьюДжими Мэк ГьюМ. ХьюгМак ХилМак ХьюМак-ХьюМакхьюХьюгจิมมี แมคฮิวJimmy McHugh & Dorothy FieldsJimmy McHugh's Bostonians + +556781David BarraultCorrectMisanthrope (2) + +556973Billy SmithUS tenor saxophonist, composer ("I Wish I Knew") probably from Brooklyn, NY. + +For the bluegrass songwriter, see [a=Billy Boone Smith].Needs VoteB. SmithSmithThelonious Monk Sextet + +557243Sif TuliniusSif Margrét TuliniusViolinist and violin teacher, born 25 March 1970 in Reykjavik, Iceland. +She graduated from the Reykjavik Music School in the spring of 1991. She further studied anc completed her B.A. degree from [l275380]. She later completed a Masters degree from [l1003583]. After graduating, she played with various music groups, such as the [a=New York Symphonic Ensemble], the [a=Ensemble Modern] in Frankfurt, the [a866595], and the [a834837]. Member of the [a=Iceland Symphony Orchestra] since November 2000.Needs Votehttps://www.facebook.com/sif.tuliniushttp://caput.is/?page_id=374https://www.ismus.is/i/person/id-1006087http://gamli.reykholtshatid.is/index.php/is/sagan-okkar/tonleikar-2014/22-flytjendur/flytjendur-2014/9-sif-margret-tulinius-fidhlaSif TuliníusThe Caput EnsembleEnsemble ModernThe Icelandic String OctetEnsemble Oriol BerlinMünchener KammerorchesterIceland Symphony OrchestraSwonderful OrchestraNew York Symphonic Ensemble + +557260Ann De RenaisA Belgian lyrico spinto soprano, whose repertoire includes roles from Belcanto operas and the lighter dramatic Italian opera roles by Mozart, Puccini and Verdi.Needs Votehttps://www.annderenais.com/Ann de RenaisThe London ChoirMetro VoicesLondon VoicesSwingle Singers + +557276Paul PritchardBritish arranger, composer, producer and horn player. +[b]For the engineer at [l=Abbey Road Studios], please use [a=Paul Pritchard (2)][/b]. +He studied at the [l290263]. He has scored a wide range of projects including: feature film, television drama, documentary, advertising, production, corporate, also ballet, and concert commissions.Correcthttps://www.paulpritchardmusic.com/https://www.linkedin.com/in/paul-pritchard-51101815/https://soundcloud.com/paul-pritchard-622510690https://www.imdb.com/name/nm0698058/https://www.elviscostello.info/wiki/index.php/Paul_PritchardP PritchardPritchardRoyal Philharmonic OrchestraThe Punishing Kiss BandThe London Festival Ballet OrchestraThe White City Septet + +557285James ButtonAustralian oboist, based in the USA.Needs VoteSan Francisco SymphonyNashville Symphony Orchestra + +557303Christopher GaudiAmerican oboist.Needs Votehttp://www.oboeclass.comSan Francisco SymphonyThe Phoenix Symphony + +557325Jeff BryantJeffrey BryantBritish freelance classical French horn player & soloist, and Professor of Horn. Born in 1946 in Bristol, England, UK. +While in his teens, he joined the [a861263]. He went on to study at the [l527847]. His first professional position, at the age of 20, was as Principal Horn with the [url=https://www.discogs.com/artist/870967-The-Midland-Radio-Orchestra]BBC Midland Light Orchestra[/url]. This was followed by principal positions in the [a=Bournemouth Symphony Orchestra], the [a=London Philharmonic Orchestra], and the [a=London Symphony Orchestra] (1972-1973). He joined the [a=Royal Philharmonic Orchestra] in 1975 and was Principal Horn for 22 years. Professor of Horn at [l305416] since 1973, horn tutor for the [a=European Union Youth Orchestra] and Senior Brass tutor at the [l680970]. +Needs Votehttps://music.metason.net/artistinfo?name=Jeff%20Bryanthttps://www.rcm.ac.uk/brass/professors/details/?id=03567https://www.dublinbrassweek.com/faculty-2015.htmlGeoff BryantGeoffrey BryantJefferey BryantJeffery BryantJeffrey BriantJeffrey BryantJeffrey ByantLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraBournemouth Symphony OrchestraNational Youth Orchestra Of Great BritainThe Midland Radio OrchestraThe Virtuosi Of EnglandLondon Wind OrchestraRobert Farnon And His OrchestraBristol Easton BandThe London Horn Sound + +557414Paul MorrellPaul Stephen MorrellDJ, producer, remixer & promoter from Coventry, England, UK.Needs Votehttp://www.djpaulmorrell.com/https://twitter.com/paulmorrellhttps://www.facebook.com/paul.morrell.5MorrellPaul MorellPaul Morrell EP + +557810Mike Anthony (4)US session guitarist. Also plays banjoNeeds VoteGerald Wilson Orchestra + +557956Howard Scott (2)Cornet player from the early jazz era (New Orleans, Dixieland), also known for his work with Fletcher Henderson. + +[b]Not to be confused with [a=Howard Scott (5)], trombone player from the 40s[/b] +Needs VoteHoward 'Chiefy' ScottScottFletcher Henderson And His OrchestraKing Oliver's Jazz BandSpike Hughes And His Negro OrchestraMa Rainey And Her Georgia BandFletcher Henderson And His Club Alabam OrchestraHenderson And His Jazzy CornetistHenderson's Hot Four + +557960Frankie Newton And His Uptown SerenadersCorrectFrank Newton & His Uptown SerenadersFrank Newton And His Uptown SerenadersFrankie Newton & His Uptown SerenadersSlim GaillardCozy ColeRussell ProcopeCecil ScottFrank NewtonEdmond HallPete Brown (2)John Smith (6)Richard "Dick" FullbrightDon Frye + +557961Baron Lee And The Blue Rhythm BandNeeds VoteBaron Lee & His Blue Rhythm BandBaron Lee & The Blue Rhythm BandBaron Lee & The Mills Blue Rhythm BandBaron Lee And His Blue Rhythm BandBaron Lee And His Blue Rhythm BoysBaron Lee And His Blue Rhythm OrchestraBaron Lee And His Blues Rhythm BoysMills Blue Rhythm BandJoe GarlandHenry HicksEdgar HayesBenny JamesEd AndersonCrawford WethingtonWardell JonesHayes AlvisShelton HemphillO'Neil SpencerGeorge WashingtonCharlie HolmesBaron Lee + +557967Barbecue Joe And His Hot DogsCorrectBarbacue Joe And His Hot DogsWingy Manone & His OrchestraWingy ManoneGeorge WaltersJoe DunnDash BurkisMaynard SpencerMiff FrinkEd Camden + +557968Blanche Calloway And Her Joy BoysCorrectBlanche Calloway & Her Joy BoysBlanche Calloway And Her BandBlanche Calloway's Joy BoysBen WebsterCozy ColeClyde HartJoe KeyesClarence SmithEdgar BattleBlanche CallowayBooker PittmanAlton MooreAndy Jackson (6)Joe DurhamLeroy Hardy + +558401Félicien BonifayNeeds VoteChoeur National De L'Opéra De Paris + +558403Jean SavignolNeeds VoteChoeur National De L'Opéra De Paris + +558404Michel MarimpouyNeeds VoteChoeur National De L'Opéra De Paris + +558406Anne-Marie TostainMezzo-soprano vocalsNeeds VoteChoeur National De L'Opéra De Paris + +558408Yvonne LaforgeNeeds VoteChoeur National De L'Opéra De Paris + +558409Véronique HonoratNeeds VoteChoeur National De L'Opéra De Paris + +558412Svetlana KurtzAlto vocalistCorrectChoeur National De L'Opéra De Paris + +558413Jean-Jacques NadaudNeeds VoteChoeur National De L'Opéra De Paris + +558518Horst SchulzeGerman actor, voice actor and opera singer. Born on April 26, 1921 in Dresden, Germany, died on October 24, 2018 in Berlin, Germany.Correct + +558533Katarzyna BugalaPolish classical violist.Needs VoteKasia BugalaKatarziyna BugalaPhilharmonic Orchestra Of EuropeDR SymfoniOrkestret + +558679Franco MigliacciFrancesco MigliacciItalian lyricist, producer and actor, born October 28, 1930 in Mantua, Italy - died September 15, 2023 in Rome, Italy. Mostly known for co-authoring the pop standard [r=3805204] to the world better known as Volaré.Needs Votehttps://it.wikipedia.org/wiki/Franco_Migliaccihttp://en.wikipedia.org/wiki/Franco_Migliaccihttps://www.imdb.com/name/nm0585914/?ref_=nv_sr_srsg_0B. MigliacciD. MigliacciD. VaonaE. MigliacciE. MilliacchiEnriquez MigliacciF .MigliacciF MigliacciF. MigliacciF. F. MigliacciF. ImigliacciF. MagliacciF. MagliaciF. MgliacciF. MicliacciF. MidliaciF. MigelacciF. MiggliacciF. MigiacciF. MigilacciF. MiglacciF. MigliacciF. MigliacciiF. MigliaciF. MigliaeciF. MigliaggiF. MigliakkiF. MigltacciF. MigniacciF. MiguliacciF. MilgiacciF. MilgliacciF. ModugnoF. NigliacciF. VigliacciF.MagliaciF.MighiacciF.MigliacciF.MiljačiFr. MigliacciFr.MigliacciFrancesci MigliacciFrancesco 'Franco' MigliacciFrancesco F. MigliacciFrancesco Franco MigliacciFrancesco Jr. MigliacciFrancesco MagliacciFrancesco MigliacciFrancesco Migliacci Jr.Francesco Migliacci Jun.Francesco MilgliacciFranceso MigliacciFranci MigliacciFrancisco Franco MigliacciFrancisco MigliacciFrancoFranco MigliaccFranco MigliacchiFranco Migliacci Jr.Franco Migliacci JuniorFranco MigliaccioFranco MigliaciFransesco MigliacciG. MigliacciH. ManciniJ. MigliacciM. MigliacciM.FrankoMIgliacciMaggiacciMagliacciMagliaciMediacciMegliacciMegliazziMicMicciacciMichacciMifliacciMiggliaciMighacciMigiacciMigiiacciMiglacciMiglassiMigleacciMigliaccMigliacchiMigliacciMigliacci F.Migliacci FilippiMigliacci FrancescoMigliacci Francesco JuniorMigliacci Francesco JuniorMigliacci FrancoMigliacci FrankoMigliacci, FMigliacci, F.Migliacci, Francesco (Jr.)Migliacci, FrancoMigliacci,FMigliaccioMigliaccliMigliacheMigliaciMigliactMigliaggiMiglialliMigliancciMiglianciMigliazziMiglicciMigliocciMigliscciMiglliacciMignacciMiguacciMilacciMilachiMilgliacciMilgliaciMiliacchiMiliacciMillacciMilliacciMistiacciMogliacciNiggliacciNigliacciNigliecciPesS. MigliacciS.MiguacciT. MigliacciVerdedi MigliacciМилачиМильячиМильячинМильяччиМилячиФ. МильячиФранко Мильяччиמוגליאצימיגליאצ'יקלאודיו פרנסיסミグリアッチCamucia + +558885Dave SpurrDrummer and songwriter, married to [a=Cathy Spurr].Needs VoteDave SpurDavid SpurrSpurrFourth EstateIdle Cure + +558920Robert EliscuRobert EliscúAmerican wind instrument artist, mainly oboe, conductor and composer, born in 1944 in Georgia, USA; died October 11, 1996. +Eliscú studied oboe and musicology in Rochester, NY. His studies led him to Berlin in the 1960's. At the end of the 1960's he went to Munich as oboist of the [a261451]. In that stage, he was part of the artist scene in Munich-Haidhausen, where he met [a1234614] and [a168686] in a club called "Song Parnass". In the following years, they met there other musicians from around the world. In 1970, a small group of musicians decided to form a band between Pop and Classical music. The band was first called B.A.C.H. and was eventually renamed to [a177232]. +Eliscu was oboist and flutist of the band and stayed with the band until it split in 1980. While his part in Between, he still was part of the Munich classical orchester and was also temporary working for other Krautrock and Jazz Rock bands as [a81882] (1973-1978) or [a601424] (1972). From 1975 to 1980, he also composed scores for film and TV. +In 1980, he moved to Holland, where he was oboist until 1986, later he was conductor for a couple of orchestras in Germany and Holland. Additionally, he stayed active in composing. +Eliscu died in 1996 in a plane crash.Needs VoteBob EliscuEliscuR. EliscuRobert ElescuRobert EliscúPopol VuhBetweenMünchner PhilharmonikerSametiMünchener Bach-OrchesterStudio Der Frühen MusikRadio Kamerorkest + +559185Joël CartignyFrench producer and songwriter. +Father of [a=France Cartigny] and [a=Sylvain Cartigny].Needs VoteJ. CartignyJoel CartignyJeholl SantiniParodisiak + +559503Bobbie LeecanJazz/blues banjoist, guitarist and occasional singer. He made recordings, often in the company of [a=Robert Cooksey], in 1926-1932. +b. April 1897 in Philadelphia, PA +d. May 3, 1946 at Hahnemann Hospital in Philadelphia, PA +buried May 8, 1946 at the Eden Cemetery in Philadelphia, PANeeds VoteB. LeecanBobby LeecanLeecanR. LeecanBlind Bobby BakerThomas Morris And His Seven Hot BabiesBobbie Leecan's Need-More BandSouth Street TrioDixie Jazzers Washboard BandMorris's Hot BabiesThe New Orleans Wild Cats + +559505Grant & WilsonVaudeville blues singing husband-and-wife team, consisting of [a=Leola B. Wilson] (born [a=Leola B. Pettigrew], a.k.a. [a=Coot Grant]) and Kid [a=Wesley Wilson] (a.k.a. +[a=Pigmeat Pete] and [a=Socks Wilson]). +Kid Wesley Wilson also played piano, and both made recordings without their spouse.Needs Vote"Coot" Grant - "Kid" Wesley Wilson"Coot" Grant And "Kid" Wesley Wilson"Sox" Wilson & Coot GrantCool Grant And Kid Wesley WilsonCoot Grand And Kid Wesley WilsonCoot Grant & Kid "Wesley" WilsonCoot Grant & Kid 'Sox' WilsonCoot Grant & Kid Wesley WilsonCoot Grant & Kid WilsonCoot Grant & Socks WilsonCoot Grant & Wesley "Sox" WilsonCoot Grant & Wesley WilsonCoot Grant ("Kid" Wesley Wilson)Coot Grant And "Kid" Wesley WilsonCoot Grant And Kid Wesley WilsonCoot Grant And Kid WilsonCoot Grant And Socks WilsonCoot Grant And Socks WilsonCoot Grant And Wesley WilsonGrant - WilsonGrant And WilsonGrant and WilsonGrant-WilsonLeola And Wesley WilsonLeola B. & "Kid" Wesley WilsonWilson and GrantWilson-GrantHunter And JenkinsKid & CootCoot GrantWesley Wilson + +560080Don GaisDonald Elton GaisJazz pianist, born on September 9, 1919 in Niagara Falls, New York, USA, died October 9, 1996 in Lewiston, New York, USA.Needs Votehttps://buffalonews.com/1996/10/11/donald-e-gais-accomplished-jazz-pianist/https://www.imdb.com/name/nm2531421/https://www.ancestry.com.au/genealogy/records/donald-elton-gais_23485635D. GaisDonald GaisGaisRex Stewart And His OrchestraThe Don Gais Trio + +560081Vernon StoryJazz saxophone player.Needs Votehttps://en.wikipedia.org/wiki/Vernon_StoryStoryV. StoryRex Stewart And His Orchestra + +560082Ted CurryJazz drummerNeeds VoteTed CurrieRex Stewart And His OrchestraRex Stewart Quintet + +560083Ladislas CzabanickJazz bassistNeeds VoteCzabanickCzabanyickLadislas CsabanyckLadislas CzabancykLadislas CzabanyckLadislas CzanbancykStanislas CzabanickQuintette Du Hot Club De FranceRex Stewart And His OrchestraRex Stewart QuintetHubert Rostaing Et Son SextetteJacques Hélian Et Son Orchestre + +560105Jack DiévalJacques Joseph Jean DiévalBorn September 21, 1921 in Douai, France, died October 31, 2012 + +French composer and jazz pianist. He was nicknamed "Le Debussy du Jazz". +He had worked with [a113333], played two pianos with [a1485345]. +He was the regular accompanist of [a59389]. +Member of the Board of Directors of the SACEM (82, 85, 88, 93, 96 and 97)Needs VoteDievalDievelDiévalDrevalEvalJ. DievalJ. DiévalJ.DievalJack DievalJack DievalJack Dieval Et Son SextetteJack Dieval's MusicJacq DievalJacques "Jack" DiévalJacques DievalJacques DiévalJean DiévalJohn DivelaJack Dieval Et Son QuartettQuintette Du Hot Club De FranceEddie Barclay Et Son OrchestreDon Byas And His OrchestraJack Diéval TrioJack Diéval Et Le J.A.C.E. All-StarsDon Byas QuintetJerry Mengo Et Son OrchestreHarry Cooper Et Son OrchestreSeptuor Jack DiévalHubert Rostaing TrioJack Dieval QuintetThe Jack Dieval's SextetJack Dieval And His QuartetEric Dolphy SeptetJacques Dieval's All StarsJack Dieval Et Son SextetBlue Star Swing Band + +560798Fred RaymondRaimund Friedrich VeselyAustrian composer, born 20 April 1900 in Vienna, Austria and died 10 January 1954 in Überlingen, West Germany.Needs Votehttp://en.wikipedia.org/wiki/Fred_Raymondhttps://adp.library.ucsb.edu/names/109199F RaymondF. R. MondF. RajmondF. RavmondF. RaymondF. RaymundF. ReymondF.RamontF.RaymondF.レイモンドFr. RaimondFr. RaymondFr. ReymondFranz RaymondFred RaymundFred ReymondFred RymondFreddy RaymondFredy RaymondF・レイモンドL. RaymondMax RaymondR. RaymondRaimondRamondRaymonRaymondRaymond, FredRaymundReymondTred RaymondΦ. Ραϊμόνδουレイモンド + +560801Eberhard RichterGerman sound engineer and producer for recordings of classical music.Needs Votehttps://www.ioco.de/interview-bernd-runge-musikregisseur-beim-label-eterna-ioco/E. RichterRichterЭберхард Рихтер + +560802Gerhard WinklerBorn September 12, 1906 in [url=https://en.wikipedia.org/wiki/Neukölln_(locality)]Rixdorf[/url], died September 25, 1977 in Kempten. German composer of entertainment music. +Needs Votehttps://de.wikipedia.org/wiki/Gerhard_Winkler_(Komponist)https://www.hebu-music.com/de/musiker/gerhard-winkler.3516/?page=19https://adp.library.ucsb.edu/names/105086A. WinklerC. WinklerC.WinklerE. WinklerG WinklerG. VinklerG. WehnerG. WincklerG. WinkelerG. WinkerG. WinklerG. WinlerG.WinklerGehard WinklerGerald WinklerGerard WinklerGerh. WinklerGerhard WincklerGerhard WinkelGerhart WinklerJerhard WinklerP. WinklerWincklerWinglerWinkeerWinklerWinkler G.Winkler GerhardWinkler GerhardtWinkler, GerhardWinkler-GerhardtWintlerВинклерУинклерBen BernPeter Jan HansenJürgen HeidemannAlex KirchnerPaul EremitFrank Jakobi (2)Gerhard Winkler Und Sein OrchesterChor Und Orchester Gerhard Winkler + +560825Darren JonesDarren JonesDarren Jones is known DJ / Record producer and remixer in Trance, Hard Trance, Hardstyle, Techno and Chillout Music. + +Darren has made many big hits across the genres which all started in 2003 with his first ever vinyl release with a double remix of ' We Should Be Proud Of Nuclear War' On Indigenous Beats. +His alias Mercurial Virus & Fusion Reaktor were born. + +His D10 alias shot to fame with his remix on S-Trax (Masif Organisation) of Neon Lights - Not Over Yet that was played at Dance Valley, Godskitchen, Gatecrasher and every other major event across the world. The track was played out by DJ Scot Project, DJ Wag, DERB, Yoji Biomehanika, Dave Joy, RAM, Kamui, Dave Pearce, Tommy Pulse, Alphazone, Steve Hill and many more. +Not Over Yet found its way onto many compilation albums.The follow up single Binary Harder did really well too, That was also a big hit and was played everywhere by the big names as mentioned above and found its way on to a few compilation albums including a Goodgreef compilation.Binary Harder also found its way into the radio 1 dance charts at number 44 ahead of Shapeshifters and Scissor Sisters. + +As time went on many releases came out including the Remixes and covers of Children, Silence, Join Me, Tricky Tricky, Ready Or Not and the biggest achievement was been asked to remix on Traffic Tunes and the monster track DJ Wag - Life On Mars.D10 toured Australia in 2005 and 2006 and played many gigs out there in Sydney, Perth, Melbourne, Geelong, Adelaide which has made him a hit out in AustraIia,D10 Has had good successes as a producer releasing on Masif, Traffic Tunes, Dutch Master Works, Kattiva, Joyride Music and more. + +His label Viper Traxx has come up with successful D10 Tracks and remixes.Bionic was reviewed on Harder Faster and in magazines such as IDJ and DJ.Evil, Unleashed was played on Radio 1. + +D10 has found a new lease of life in hard trance again and has been making waves in the scene again with a big remix of Hennes & Cold – First Step and a collaboration with Pete Delete on Nocturnal Knights. + +Mercurial Virus has had many successful releases ranging from solo, collaborations and remixes which led to support by the biggest names such in Trance such as Armin Van Buuren, John O'Callaghan, Aly & Fila, Sean Tyas, Darren Porter, Ferry Corsten, Paul Van Dyk, Johan Gielen, Alex M.O.R.P.H, Ram, Allen Watts, ReOrder, Daniel Skyver, John Askew, Yoshi & Razner, Amos & Riot Night, Ferry Tayle, Dan Stone, Talla 2XLC to name a few. + +Mercurial Virus has had some huge releases such as 'Turning Point' on Subculture which was played on A State Of Trance 950,951,952 as well as ADE, FSOE 636, Transmission etc. +Many huge releases followed on the big labels in trance such as Subculture, FSOE, FSoe Fables, Regenerate, Nocturnal Knights, AVA White, Kinected, High Voltage, ZYX Trance and many more. +Early releases such as Legacy, Memories, Earth, Ethno, Roseline were released on Redux, Beyond The Stars Recordings and Phoenix Recordings but were successful including ASOT play. +Mercurial Virus has had the pleasure to remix for artists he looked up to in his early clubbing days such as Hemstock & Jennings and The Conductor & The Cowboy and has plans for other big collaborations with other big influences in the near future. +Mercurial Virus also collaborated work with String Theory which were released on Nocturnal Knights, Redux & Phoenix Recordings. + +Darren was clubbing at God Kitchen, Gatecrasher in the late 90’s and early 2000s, so he knows the original trance sound, but has developed his own style with a taste of film music influences. +Every Mercurial Virus track is unique and different to the last, which is why all tracks have a place. +Needs Votehttps://vipertraxx-shop.fourthwall.com/en-gbphttps://soundcloud.com/darrenjonesproductions/https://soundcloud.com/vipertraxxsessionshttps://soundcloud.com/viper-traxxhttps://soundcloud.com/mvandsthttps://soundcloud.com/rendarsejonofficialhttps://www.facebook.com/DJ.D10https://www.facebook.com/ViperTraxxhttps://www.facebook.com/D10Officialhttps://www.facebook.com/MercurialVirushttps://www.facebook.com/profile.php?id=61556317804150https://www.youtube.com/channel/UCboST-ZMGhWiUxWKI1nBqUwhttps://www.tiktok.com/@mercurialvirus_d1https://x.com/dj_d10https://www.instagram.com/djd10officialhttp://web.archive.org/web/20031224111520/http://www.indigenousbeats.com:80/artists.htmlhttps://open.spotify.com/artist/6izOq8vhqqwWNGW2NNIEPUhttps://open.spotify.com/artist/3Z70dAdwSvMR1uJ1VDpFZqhttps://open.spotify.com/artist/0ECGFt3b93XGkHPBzn0z53https://www.twitch.tv/mercurialvirusD JonesD. JonesD10Darren 'D10' JonesDarren Jones (D10)Mercurial VirusD10Deton-8D&G (6)Fusion ReaktorRendar SejonMasif DJ'sSteve Hill vs. D10 + +560907Jill ColucciU.S. musician, singer, and songwriter based in Nashville, Tennessee (born 1949). Owner of [l=Colucci-Toons, Inc.]Needs Votehttp://jillcolucci.com/https://soundcloud.com/jillcoluccihttps://www.facebook.com/JillColucciMusichttps://www.linkedin.com/in/jill-colucci-bab69788https://www.imdb.com/name/nm0173347/CollucciColocciColucciGill CallucciJ. ColucciJil ColuciJill CollucciJill ColuchiJill ColuciJill ColucyJill Golucci + +561054Sir John BarbirolliGiovanni Battista BarbirolliEnglish conductor and cellist, born 2 December 1899 in Holborn, London, England, UK, died 29 July 1970 in London, England, UK. +Original cellist in the newly formed [a=The London Chamber Orchestra] in 1921. Music Director of The [a=New York Philharmonic Orchestra] (1936-1943). +He then helped save from dissolution [a=Hallé Orchestra] in 1943 becoming its conductor. He retired from Hallé in 1968, though he was given the title of Conductor Laureate for Life. Guest Conductor of many other orchestras. +Among his state awards were a British knighthood in 1949 and Companion of Honour in 1969, the Finnish Grand Star and Collar of Commander 1st Class of the Order of the White Rose in 1963, from Italy the Order of Merit in 1964 and from France, Officier de l'Ordre des Arts et des Lettres, 1966, and Officier de l'Ordre national du Mérite, 1968. +A commemorative blue plaque was placed on the wall of the Bloomsbury Park Hotel in Southampton Row in May 1993 to mark his birthplace. +Barbirolli Square in Manchester is named in his honour and features a sculpture of him. +He was married to [a=Evelyn Rothwell] from 1939 to his death. +Brother of [a=Rosa Barbirolli].Needs Votehttp://www.barbirollisociety.co.uk/?LMCL=pqP57Phttps://www.facebook.com/Barbirolli/https://www.youtube.com/channel/UCsfxvLEDyVyv2n3rp2oDD2ghttps://soundcloud.com/sir-john-barbirollihttps://open.spotify.com/artist/5X3hmAle6klG0VvstAnvyDhttps://music.apple.com/us/artist/sir-john-barbirolli/500741https://www.britannica.com/biography/John-Barbirollihttps://en.wikipedia.org/wiki/John_Barbirollihttps://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/sir-john-barbirollihttps://www.bach-cantatas.com/Bio/Barbirolli-John.htmhttp://www.arkivmusic.com/classical/Name/Sir-John-Barbirolli/Conductor/650-3https://musicianbio.org/john-barbirolli/https://www.geni.com/people/John-Barbirolli-CH/6000000017929399917https://www.findagrave.com/memorial/19185/john-barbirollihttps://www.imdb.com/name/nm1061949/https://www.allmusic.com/artist/john-barbirolli-mn0000635614https://adp.library.ucsb.edu/names/103071"Sir" John BarbirolliBabirolliBarbirlolliBarbirolliBaribirolliDir. John BarbirolliG. BarbirolliJ. BarbirolliJ.BarbirolliJohn BarbirollJohn BarbirolliJohn BaribrolliJohn BarnbirolliM.o G. BarbirolliMaster John BarbirolliSir J. BarbirolliSir John Barbirolli C.H.Sir John Barbirolli, C. H.Sir John Barbirolli, C.H.Sir John BarborilliSir John Barborolli, C.H.Sir. J. BarbirolliДж. БарбироллиДжон Барбироллиサー・ジョン・バルビローリジョン・バルビロリージョン・バルビローリThe London Chamber OrchestraInternational String QuartetJohn Barbirolli's Chamber OrchestraJohn Barbirolli And His Symphony Orchestra + +561396Sam CoatesCurrent musical director of the UK boys choir [a=Libera]Needs Voteサム・コーツLibera + +561398Thomas CullyFormer soloist of [a=Libera] (2002-2009).Needs Votehttp://theliberadatabase.weebly.com/tom-cully.htmlTom CullyJamie IsaacLibera + +561405Alex BaronSinger.Needs VoteLibera + +561407Christopher RobsonClassical vocalist (alto, countertenor). For the classical bassoonist, use [a3907943].Needs Votehttp://www.christopher-robson.com/RobsonWinchester Cathedral ChoirNew London ConsortThe Monteverdi ChoirHesperion XXThe English Concert Choir + +561421Steven GeraghtyAlto vocalist and multi instrumentalist.Needs VoteLibera + +561464Dennis JamesAmerican organist, pianist and glass harmonica player.Needs Votehttp://en.wikipedia.org/wiki/Dennis_James_(musician)Denis JamesDennis M. JamesDennis & Heidi James + +561521Robot KochRobert KochLos Angeles based producer hailing from Berlin, Germany. In the 2000s Robot Koch made himself a name as the beat maniac of the electronic projects The Tape, The Tapes Vs RQM and Jahcoozi (with Peters Elsewhere).Needs Votehttp://www.robotsdontsleep.com/http://www.myspace.com/robotkochhttps://www.facebook.com/robotkochofficial/?fref=tshttps://instagram.com/robotkoch/https://twitter.com/robotkochhttps://therealrobotkoch.bandcamp.comKochRobert KochRobotoThe TapeRobert KochEl TajoFoam And Sand + +561560Adam GilbertAdam Knight GilbertAssociate Professor and Director of the Early Music Program, USC Thornton School of Music. Recorder and historical double reeds player. He grew up in Columbia, South Carolina. + + +Needs Votehttps://music.usc.edu/adam-knight-gilbert/A.K. GilbertAGAKGAdam Gilbert (AG)Adam Gilbert KnightAdam Knight GilbertGilbertCiaramellaPiffaro, The Renaissance Band + +561634Ben HarmsClassical percussionist.Needs Votehttp://www.harmsperc.com/BHBen HarmesBen Harmes, New YorkBenjamin HarmsБен ХармсSteve Reich And MusiciansBoston CamerataThe Metropolitan Opera House OrchestraThe Waverly ConsortThe Bach EnsembleThe New York Renaissance BandCalliope (9)Brewer Chamber OrchestraTrinity Baroque Orchestra + +561690Anna ZanderThe Swedish mezzo-soprano, Anna Zander, started her musical education by studying jazz at Kulturama in Stockholm.Needs Votehttp://www.bach-cantatas.com/Bio/Zander-Anna.htmhttps://www.annazander.se/Anna Zander SandAnna Zander SandRadiokörenRicercar ConsortEnsemble Lundabarock + +561722Espen RudNorwegian percussionist and drummer, born in Asker, Norway 29 January 1948 +Needs Votehttp://www.mic.no/nmi.nsf/doc/art2006060114462283246967E. RudEspenEspen RuudRudDexter Gordon QuintetSvein Finnerud TrioGuttorm Guttormsen QuartetGuttorm Guttormsen KvintettDexter Gordon QuartetThe Staffan William-Olsson TrioMoose LooseLotus (28)KråbølMin BulKarin Krog & FriendsKausland / Mathisen QuartetFire FyrerNew Cool QuartetThe Magni Wentzel Sextet + +561920Kim MackrellClassical cellist. +Founder, tutor and course organizer of Chamber Cellos courses for adult amateur cellists. Freelance cellist, teacher & chamber music coach.Needs Votehttps://mobile.twitter.com/kimmackrellhttps://www.linkedin.com/in/kim-mackrell-85a8ba63/?originalSubdomain=ukLondon Symphony Orchestra + +562045Gabby AbularachNeeds VoteAbularachG. AbularachGabbyGabby AbulrauchGabriel AbularachGil Evans And His OrchestraCro-MagsVoodoocult + +562202Herbert BrownJazz bass player. +Consider also [a=herb brown] (folk bass player)Needs VoteBert BrownHerb BrownThe Oscar Peterson TrioEarl Washington All StarsThe John Young Trio + +562206Tony InzalacoAnthony Frank Inzalaco, Jr.American jazz drummer, born 14 January 1938 in Passaic, New Jersey, USANeeds Votehttps://en.wikipedia.org/wiki/Tony_Inzalacohttps://tonyinzalaco.weebly.com/InzalacoT. InzalacoTommaso InzalacoToni InsalacoToni InzalacoTony InsalacoTony InsalakoTony InzaladoTony InzelacoPeter Herbolzheimer Rhythm Combination & BrassIra Kris GroupClarke-Boland Big BandFritz Pauer TrioThe George Gruntz Concert Jazz BandMaynard Ferguson SextetArt Farmer QuartetFestival Big BandCertain Lions & TigersThe Paul Nero SoundsDexter Gordon QuartetHorace Parlan TrioMunich Big BandJiggs Whigham TrioPeter Trunk Sextet + +562262Michel BanonCorrect + +562375Derek CollierDerek CollierBritish violinist and orchestra leader. + +Born: 1927. +Died: 24 June 2008 (aged 81). + +Collier studied at the [l527847]. He was the leader of many of the great British orchestras including the [a835739], [a262940], [a153980] and the [a=Philharmonia Orchestra]. He was also Professor of Violin at the [l=Royal Academy Of Music]. + +Father of violinist [a6960254]; maternal grandfather of multi-instrumentalist [a4674871]. +Needs Votehttps://en.wikipedia.org/wiki/Derek_Collierhttps://sounds.bl.uk/Classical-music/Derek-Collier-Collectionhttps://www.gazette-news.co.uk/announcements/deaths/obituaries/8653479.COLLIER/D. CollierDereck CollierDerek CollyerDerrick Collierw/Derek CollierPhilharmonia OrchestraThe Kingsway Symphony OrchestraThe Little Orchestra Of LondonThe Starcoast OrchestraRobert Farnon And His OrchestraLeslie Jones And His Orchestra Of London + +562382Paul CullingtonClassical double bass player. Based in England, UK.Needs Votehttps://www.linkedin.com/in/paul-cullington-5980b074/https://www.imdb.com/name/nm1178352/P. CullingtonThe London Session OrchestraRoyal Philharmonic OrchestraThe Taliesin Orchestra + +562386Basil SmartClassical violinist. +Former member of the [a=London Symphony Orchestra] (1965-1976).Needs VoteB. SmartLondon Symphony Orchestra + +562393Andrew McGeeClassical viola and violin player. +Former Acting/Joint Leader of the [a=London Symphony Orchestra] (1961-1966).Needs Votehttps://open.spotify.com/artist/6jSZotJRfhZ8TZgt2546SChttps://music.apple.com/gb/artist/andrew-mcgee/80140846Andy Mac GeeAndy McGeeMcGee A.McGee. ALondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Bach SocietyAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +562947Reino HelismaaReino Vihtori HelismaaFinnish lyricist, singer and actor, born June 12, 1913 in Helsinki; died January 21, 1965 in Helsinki. + +His surname was originally Helenius. Like many other Finnish songwriters, he also used various pseudonyms: Orvokki Itä, Rainer Kisko, Aarne Lohimies (all three also used by Toivo Kärki on certain occasions), Rauni Kouta and Väinö Karras. +Needs VoteHelismaaHelismaa ReinoR HelismaaR, HelismaaR. HelismaaR. HelismaaaR.HelismaaR.HellsmaaR.HelsimaaR.helismaaReinoReino HelismaaaReino-tonttuRepeRepe HelismaaР. ХелисмааOrvokki ItäRauni KoutaAarne LohimiesArto-SetäRainer Kisko (2)Reino Helismaa Ja Yhtye + +562992Jean GilbertMax WinterfeldGerman composer and conductor, born 11 February 1879 in Hamburg, Germany, died 20 December 1942 in Buenos Aires, Argentina. Father of [a=Robert Gilbert].Needs Votehttps://en.wikipedia.org/wiki/Jean_Gilberthttps://adp.library.ucsb.edu/names/109009Gean GilbertGilbertGilbertiHilbertJ GilbertJ, GilbertJ. GilbertJ. GuilbertJan GilbertJean GilbergΙ. ΖίλμπερτЖ. ЖильберЖильберЖильберъOrchester Jean Gilbert + +563086Olive GroovesPaul MaddoxCorrectOlive GroovePaul MaddoxO.G.R.AbandonStreet ForceAzure (5)Comedy DickWall Haddocks + +563317Benjamin HudsonBenjamin HudsonViolinist, born in Decatur, Illinois, on June 14, 1950, raised in California. He is concertmaster of the Stuttgart Chamber Orchestra and the Basel Symphony Orchestra.Needs Votehttps://www.benjamin-hudson.de/Ben HudsonBenjamin C. HudsonБенджамин ХадсонThe Brooklyn Philharmonic OrchestraBasler Sinfonie-OrchesterStuttgarter KammerorchesterSpeculum MusicaeMusica Antiqua KölnThe Group For Contemporary MusicHanover BandColumbia String Quartet + +563318How Liang-PingViolinistCorrectLiang Pin HowLiang Ping HowLiang-Ping HowOrpheus Chamber Orchestra + +563320Julian FiferAmerican cellist, a founder in 1972 of the [a=Orpheus Chamber Orchestra].Needs Votehttp://www.pollyrhythm.com/julian.htmlOrpheus Chamber Orchestra + +563322Ruth WatermanViolinist, educator, public speaker and author. Born in the UK.Needs Votehttps://ruthwaterman.com/Orpheus Chamber Orchestra + +563323Ronnie BauchAmerican violinist.Needs VoteBauch Ronnie S.Ronnie S. BauchOrpheus Chamber OrchestraLong Island Youth Orchestra + +563324Guillermo FigueroaGuillermo Figueroa HernándezViolinist, conductor and music director of the New Mexico Symphony Orchestra. +Son of [a6372443] and brother of [a5935944]Needs Votehttp://www.guillermofigueroa.com/http://www.musicosfigueroa.org/bioguilleing.htmlOrpheus Chamber OrchestraEmerson String Quartet + +563326Joanna JennerAmerican violinist and founding member of [a837570].Needs VoteJoanna M. JennerOrpheus Chamber OrchestraEmpire Trio (3) + +564412Marty MarsalaMario Salvatore MarsalaMarty Marsala (born April 2, 1909, Chicago, Illinois, USA – died April 27, 1975, Chicago, Illinois, USA) was an American dixieland jazz trumpeter. He is the younger brother of clarinettist [a348955].. He started out as drummer, playing in Chicago with groups led by Red Feilen and Joe Bananas. Marsala switched to trumpet in the late 1920s. Needs Votehttps://en.wikipedia.org/wiki/Marty_Marsalahttps://adp.library.ucsb.edu/names/329854MarsalaMarty MarsalalaMarty MarssalaKid Ory And His Creole Jazz BandEddie Condon And His BandJoe Marsala And His ChicagoansBud Freeman And His GangThe Marty Marsala BandChico Marx And His OrchestraChicago Rhythm Kings (3) + +564413Artie ShapiroArthur Shapiro.American jazz bassist. + +Born : January 15, 1916 in Denver, Colorado. +Died : March 24, 2003 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/109768A. ShapiroArt ShapiroArt. ShapiroArthur "Artie" ShapiroArthur ShapiroShapiroTommy Dorsey And His OrchestraJack Teagarden's ChicagoansWingy Manone & His OrchestraArtie Shaw And His OrchestraPaul Whiteman And His OrchestraEddie Condon And His OrchestraEddie Condon And His BandGeorge Wettling's Chicago Rhythm KingsEddie Condon And His Windy City SevenLeonard Feather All StarsLouis Prima & His New Orleans GangJimmy Mundy OrchestraVarsity SevenJoe Marsala And His ChicagoansBud Freeman And His GangChu Berry & His Little Jazz EnsembleAndré Previn QuartetNappy Lamare's Louisiana Levee LoungersThe Capitol JazzmenManny Klein's All StarsThe Sunset All StarsCharlie Lavere's Chicago LoopersThe Six Blue ChipsTommy Todd And His TrioColeman Hawkins And His Hot SevenJam Session At CommodoreJack Teagarden & His Trombone + +564626Jean-Pierre MareuilSound and mastering engineer located in France (EU). J-P Mareuil was known for having worked at [l269411] in Boulogne, near Paris, during the second mid of the 70’s, then, at [l306336] and [l280162] studios in Paris, during the 80’s.CorrectJ,P. MareuilJ-P MareuilJ. P. MareuilJ.-P. MareuilJ.-Pierre MarevilJ.P. MareuilJean Pierre MareuilJohn P. Mareuil + +564649Bryn TerfelBryn Terfel JonesWelsh bass-baritone, born 9 November 1965 in Pant Glas, North Wales, UK.Needs Votehttps://en.wikipedia.org/wiki/Bryn_Terfelhttps://www.deutschegrammophon.com/en/artists/brynterfel/biographyhttps://www.britannica.com/biography/Bryn-TerfelB. TerfelB.TerfelBryan TerfelBrynBryn Terfel JonesBryn TeufelSir Bryn TerfelTerfelブリン・ターフェル布萊恩·特菲爾Bryn Terfel & Friends + +564749Paavo JärviEstonian-American conductor, born December 30, 1962, in Tallinn. Son of [a=Neeme Järvi], brother of [a=Kristjan Järvi]. [a8551878] chief conductor (2019– ).Needs Votehttps://paavojarvi.comhttps://www.harrisonparrott.com/artists/paavo-jarvihttps://paavoproject.blogspot.com/https://en.wikipedia.org/wiki/Paavo_JärviJärviP. JärviPaavoPaavo Jarviパーヴォ・ヤルヴィ + +564750Estonian National Symphony OrchestraEesti Riiklik Sümfooniaorkester[b]Estonian National Symphony Orchestra[/b] (known as [b]Eesti Riiklik Sümfooniaorkester[/b] or [b]ERSO[/b] in Estonian) is the longest continually operating professional orchestra of its kind in the country. The orchestra's history dates back to 1926 and, like that of many other world orchestras, is connected to the birth of national broadcasting. + +For many years, the Orchestra had word [b]Radio[/b] in the name, but it was changed to 'State' (or 'National') in 1975. + +For individual groups in the Orchestra, use: + +Estonian National Symphony Orchestra Wind Quintet: [a=Eesti Riikliku Sümfooniaorkestri Puhkpillikvintett] +Estonian National Symphony Orchestra String Quartet: [a=Eesti Riikliku Sümfooniaorkestri Keelpillikvartett] +Estonian National Symphony Orchestra String Group: [a=ENSV Riikliku Sümfooniaorkestri Keelpillirühm] + +Principal conductors: +1939–1944 [a=Olav Roots] +1944–1950 [a=Paul Karp] +1950–1963 [a=Roman Matsov] +1963–1979 [a=Neeme Järvi] +1980–1990 [a=Peeter Lilje] +1990–1991 [a=Arvo Volmer] +1991–1993 [a=Leo Krämer] +1993–2001 [a=Arvo Volmer] +2001–2010 [a=Nikolai Aleksejev] +2010– . . . . [a=Neeme Järvi]Needs Votehttps://erso.ee/https://en.wikipedia.org/wiki/Estonian_National_Symphony_OrchestraENSOENSV Riiklik SümfooniaorkersterENSV Riiklik SümfooniaorkesterENSV SümfooniaorkesterERSOERSO / Estonian Symphony OrchestraERSO Estonian National Symphony OrchestraEesti NSV Riiklik SümfooniaorkesterEesti NSV Riikliku Sümfooniaorkestri KammerkoosseisEesti NSV SümfooniaorkesterEesti Riiklik SümfooniaorkesterEesti SümfooniaorkesterEestin SinfoniaorkesteriEstnisches Staatliches SinfonieorchesterEstnisches Staatliches SymphonieorchesterEstnisches Symphonie OrchesterEstnisches SymphonieorchesterEstonia Symphony OrchestraEstonian Radio Symphony OrchestraEstonian Radio-orkesteriEstonian SSR Symphony OrchestraEstonian SSR Symphony Orchestra (Chamber Group)Estonian State Symphony OrchestraEstonian Symphony OrchestraNationales Sinfonieorchester EstlandNew York PhilharmonicOrchester Des Estnischen RundfunksOrchester Estnischen RundfunksOrchestre Symphonique National D'EstonieOrquestra Sinfônico Da República Da EstoniaStaatliches Symphonieorchester EstlandState Symphony Orchestra Of EstoniaThe Estonian State Symphony OrchestraThe State Symphony Orchestra Of The ESSRThe State Symphony Orchestra of EstoniaViron Valtiollinen SinfoniaorkesteriГосударственный Симфонический Оркестр Эстонской ССРГосударственный симфонический оркестр Эстонской ССРСимфонический Оркестр Эстонской ССРЭстонский Симфонический Оркестрესტონეთის სიმფონიური ორკესტრიEesti Raadio SümfooniaorkesterKristjan MäeotsVambola KrigulMarlis TimpmanJoosep KõrvitsKalev KuljusArvo LeiburValdek PoldKalle KoppelMall HelpMeelis VindMaano MänniMadis MetsamartRain ViluTõnu JõesaarMartti MägiKaido SussKirti-Kai LoorandTerje TerasmaaToomas VeenreKaido VäljaJanel AltroffTarmo TruuväärtImre EenmaTheodor-Peeter SinkMail SildosAndres KontusEgert LeinsaarMaris VallsaluMati LukkPeeter SarapuuRein RoosKaupo OltAndrus TorkIndrek VauJanika LentsiusMihkel PeäskeMarius JärviHelena AltmanisHeli ErnitsMadis KariLevi-Danel MägilaMerje RoomereEva-Liisa EhalaAnne IlvesAssia CunegoAnts ÕnnisAndreas LendKristjan NölvakVarje RemmelHelena TuulingPeeter MargusMiina LaanesaarLiis ViiraIngely LaivMarten AltrovTriin RuubelKalervo KulmalaSabina YordanovaIndrek LeivategijaLauri ToomTönu KünnapasLiina ZigursMarge UusSvjatoslav ZavjalovAstrid MuhelUrmas RoomereKaja KihoKadi ViluMari-Katrina SussKarin SarvMargus UusPärt TarvasElisabeth HärmandMadis JürgensVäino PõlluIvar TillemannAleksander HännikäinenTönis TraksmannJohannes KiikValdek PõldLiis-Helena VäljamäeGuido GualandiJuhan Palm-PeipmanMairit MittRiina ErinLauri MetsvahiMaiu MägiMari-Liis VihermäeErki MöllerKenti KadarikMarika HellermannSirje PalialeTriin KrigulÜlle AlladeKristiina KunglaKätlin IvaskPiret SandbergTõnis Pajupuu (2)Katrin OjaVillu VihermäeMattias VihmannSandra KlimaitėKaspar EiselKalmer Kiik + +564752Tõnu KaljusteEstonian conductor, born 28th August 1953 in Tallinn. +1981 he founded the [a=Estonian Philharmonic Chamber Choir], whose artistic director and chief conductor he remained until 2001.Needs Votehttps://en.wikipedia.org/wiki/T%C3%B5nu_KaljusteKaljusteT. KaljusteTonu KaljusteTõnuTönu KaljusteТ. КальюстеТыну Кальюстеトヌ・カリユステTallinn Chamber OrchestraEstonian Philharmonic Chamber Choir + +564754Estonian Philharmonic Chamber ChoirEesti Filharmoonia KammerkoorFounded in 1981 by [a=Tõnu Kaljuste]. +Artistic directors and chief conductors: +1981 to 2001 [a=Tõnu Kaljuste], +2001 to 2008 [a=Paul Hillier], +2008 to 2013 [a=Daniel Reuss], +2014 to present [a1213359].Needs Votehttps://www.epcc.ee/Chœur De Chambre D'EstonieChœur De Chambre Philharmonique D'EstonieEPCCEesti Filharmoonia KammerkoorEesti KammerkoorEesti NSV Riikliku Filharmoonia KammerkoorEstnischer Philharmonischer KammerchorEstonian Phil. Chamber ChoirEstonian Philharmonic Oratorio ChoirEsts Philharmonisch KamerkoorMale Singers from the Estonian Philharmonic Chamber ChoirPhilhamonischer Kammerchor EstlandThe Estonian Philharmonic Chamber ChoirThe Female Choir Of The Estonian Philharmonic Chamber ChoirViron Filharmooninen KamarikuoroКамерный Xор Эстoнской филармонииКамерный Хор Госфилармонии Эстонской ССРКамерный Хор Эстонской Филармонииエストニア・フィルハーモニック室内合唱団Paul HillierTõnu KaljusteKaia UrbTiit KogermanAarne TalvikDaniel ReussErkki TargoMaret KüüraKalev KeerojaTiiu OtsingMikk ÜleojaTõnu TormisKarin SalumäeKristiina UnderKadri MittEha PärgMati TuriAllan VurmaToivo KiviRaili JaansonArvo AunEvelin SaulKai DarzinšTõnis TammRanno LindeVilve HepnerKatrin KarelsonAve MoorKaido JankeEsper LinnamägiJuta Roopalu-MalkUku JollerLembit TraksMaire JoalaKülli SelkeElmo TiisvaldMeeli KallastuAnnely SarvAnne LassmannMartin LumeAnnika IlusKädy PlaasIris OjaVeronika PortmuthKülli ErimäeToomas TohertMaris LilosonRainer ViluRisto JoostHele-Mall LeegoRaul MiksonMaarja KukkErik SalumäeKaroliina KriisAve HännikäinenHele-Mai PoobusAnnika LõhmusMerili KristalHelis NaerisMarianne PärnaHelen PoolmaOtt KaskEndel ValkenklauAndrus PoolmaAivar HuntAndres AlamaaPriit PõldmaaMati SildosMaria ValdmaaHenry TiismaUrmas PõldmaMarie Roos (2)Andre TõnnisMaria MelahaMadis EnsonAnna DõtõnaLodewijk van der ReeHeli JürgensonGeir LuhtOlari ViikholmMaarja HelsteinAnnely LeinbergHelina KuljusKristel MarandAndreas Väljamäe (2)Kristine MuldmaCätly TalvikKaarel KukkGreesi LangovitsKarolis KaljusteSander SokkLaura ŠtomaKristjan-Jaanek MölderMariliis TiiterGert-Heiko KütaruJanari JorroTriin SakermaaDanila FrantouJoosep TrummMiguel Gonçalves SilvaRyan Adams (14)Yena Choi (2) + +564789Susan FlanneryMezzo-soprano vocalist.Needs VoteMetro VoicesLondon VoicesLondoners Cast + +564790Karen WoodhouseClassical sopranoNeeds VoteKaren WoodhoweThe London ChoirMetro VoicesBBC SingersThe Monteverdi Choir + +564791David Porter-ThomasBass vocalist + +Do not confuse with [a7308626].Needs Votehttps://www.facebook.com/david.porterthomashttps://www.bach-cantatas.com/Bio/Porter-Thomas-David.htmDavid Porter ThomasDavid Poter ThomasDavid ThomasThe Swingle SingersMetro VoicesLondon VoicesTenebrae (10) + +564877Jacques DemarnyJacques Edme LemaîtreFrench songwriter (21 December 1925 in Paris - 12 January 2011).Needs Votehttp://fr.wikipedia.org/wiki/Jacques_DemarnyD. MarnyDe MarnyDeMarnyDemarnyDemarry J.E. DemarnyI. DemarnyJ DemarnyJ. DemarnyJ. De MarnyJ. DemachyJ. DemamyJ. DemannyJ. DemanryJ. DemarayJ. DemarnJ. DemarneyJ. DemarnyJ. DemarryJ. DermanyJ. DermarnyJ. LemaîtreJ. de MarnyJ.DemarnyJacques De MarcyJacques De MarnyJj.DemarnyK. DemarnyS. Demarnyde MarnyДемарниЛ. ДемарниמרוםJack Douglas (8) + +564890Werner ScharfenbergerProlific German songwriter, arranger and bandleader (* 25 September 1925 in Regensburg, Germany; † 05 July 2001 in Lugano, Switzerland). Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1974/04/werner-scharfenberger.htmlhttp://de.wikipedia.org/wiki/Werner_ScharfenbergerB. ScharferbergerCharfenbergerE. ScharfenbergerF. ScharfenbergerH. SchafenbergerK. ŠarfenbergerisKurt ScharfenbergerM. ScharfenbergerSchaarsenbergerSchafenbergerSchaffenbergerSchar FenbergerScharfScharfebergerScharfembergerScharfenbacherScharfenbegerScharfenbengerScharfenbergScharfenbergenScharfenbergerScharfenberger W.Scharfenberger WernerScharfenberger, W.Scharfenberger, WernerScharfenbergeroScharfenburgerScharferbergerScharffenbergerSchargenbergerScharlenbergerScharpenbergerScharsembergerScharsenbergerSchartenbergSchartenbergerSchlafenbergerSchrafenbergerSchrfenberger,SchwarzenbergSharfenbergerW ScharfenbergerW, ScharfenbergerW. ScharfenbergerW. ScarfenbergW. SchafenbergerW. SchaffenbergerW. ScharfembergerW. Scharfen BergerW. ScharfenbergW. ScharfenbergeW. ScharfenbergenW. ScharfenbergerW. ScharferbergerW. ScharffenbergerW. SchrfenbergerW. SharfenbergerW.SchalfenbergerW.ScharfenbergW.ScharfenbergerWarner ScharfenbergerWernerWerner - ScharfenbergerWerner ScarfenbergerWerner SchaffenbergerWerner ScharfenbergWerner ScharfenbergenWerner ScharfeubergerWerner SchrafenbergerWerner-ScharfenbergerВ. ШарфенбергерШарфенбергерMike DovenWolfgang ZellWerner ReinwaldFranz LöscherErnesto CampoAlec NomatoRon A. ChipheardWerner HeinkesAlec G. MontagueMax Greger Und Sein OrchesterOrchester Werner ScharfenbergerWerner Scharfenberger Und Sein QuartettAlex KannenbergerLenard Best Und Sein OrchesterWerner Scharfenberger Und Seine SolistenWerner Scharfenberger Und Seine Dorfmusikanten + +565233Dick MeldonianAmerican jazz saxophone and clarinet player, born 27 January 1930 in Providence, Rhode Island, USA. +Co-Leader with Sonny Igoe of their Big Band "Big Swing Jazz Band" +Leads his own Quartet "The Jersey Swingers"Needs Votehttps://www.jazzwax.com/2017/06/dick-meldonian-and-sonny-igoe.htmlhttps://de.wikipedia.org/wiki/Dick_MeldonianD. MeldonianDick MeldonialMeldonianWoody Herman And His OrchestraCharlie Barnet And His OrchestraGerry Mulligan & The Concert Jazz BandWoody Herman And The Swingin' HerdGene Roland OctetThe Nat Pierce OrchestraBill Russo And His OrchestraDick Collins And His OrchestraMarty Grosz And His Blue AngelsDestiny's TotsThe Jersey SwingersBig Swing Jazz BandDick Meldonian TrioDick Meldonian And His OrchestraDick Meldonian QuartetDoctor Billy Dodd And His Swing All Stars + +565235Billy ExinerWilliam ExinerAmerican jazz drummer, born November 22, 1910, died 1983 +Billy worked with : Claude Thornhill, Gil Evans, Tony Bennett, Ralph Sharon and others.Needs VoteBill ExinerBill ExnerBilly ExnerWilliam ExinerHarry James And His OrchestraWill Hudson And His OrchestraClaude Thornhill And His OrchestraThe Ralph Sharon TrioBarbara Carroll Trio + +565251Alice TrenthamAlice TrenthamBritish harpistCorrecthttp://www.harpist-surrey.co.uk/The London Chamber Orchestra + +565349John RotellaJohn RotellaAmerican session musician and songwriter, played saxophone, clarinet and flute. Among other he was involved in various [a=Frank Zappa] recordings. +---- +Johnny Rotella was born in Jersey City and grew up in North Bergen, New Jersey where he began his music career in his teens, playing clarinet and saxophone with many bands. +During World War II, he was with the 389th ASF Band stationed at Ft. Monmouth, New Jersey. While in the service he looked forward to his visits to New York City where he studied with the finest teachers including Simeon Bellison on clarinet, Joe Allard on saxophone and Victor Goldring on flute. +After serving in the Army, Johnny joined Raymond Scott’s band in New York and later, the bands of Benny Goodman and Tommy Dorsey. On a trip to California with Benny Goodman, he decided to make Hollywood his new home, and began working as a studio woodwind player. +Johnny played in the reed section with Jerry Gray (arranger for Artie Shaw and chief arranger for The Glenn Miller Orchestra) on “Club 15”, a daily radio show on CBS featuring Bob Crosby, the Andrews Sisters, the Modernaires and Jo Stafford, and on all of Jerry Gray’s albums. Over the years he recorded with a wide range of artists, from Neil Diamond to Frank Zappa, was featured on the twin altos with the Billy Vaughn Orchestra and played on many sessions with Jimmie Haskell, Earle Hagen and Buddy Baker. He was a band regular on the “Sonny and Cher Comedy Hour” and played on many other television shows, including Andy Williams and Frank Sinatra. In addition to studio work, Johnny enjoyed playing in the orchestra for Broadway shows and other theatre productions in Los Angeles. +A songwriter since his high school days, Johnny became a member of ASCAP in 1954. Always looking to improve his knowledge of music, he studied The Schillinger System of Musical Composition with Franklyn Marks, a longtime Walt Disney composer. He collaborated with such well-known lyricists as Johnny Mercer, Sammy Cahn, Ray Gilbert, Sidney Clare, Abbey Lincoln, Franz Steininger and Jerry Gladstone. Many of those collaborations are featured on his “Nothing But The Best” compilation CDs. +Needs Votehttps://www.johnnyrotellamusic.com/biohttps://en.wikipedia.org/wiki/Johnny_Rotellahttp://www.united-mutations.com/r/john_rotella.htmhttp://www.peermusic.com/peermusic/index.cfm/artist-writer/artist-details/?artist_id=699https://adp.library.ucsb.edu/names/208851J RotellaJ. NotellaJ. RotellaJohn RotelloJohnny RotellaJohnny Rotella And The Little WheelsJohnny RotellaonJohnny RotelloJohnny RotettaRotellaThe MothersBenny Goodman And His OrchestraPete Rugolo OrchestraThe Abnuceals Emuukha Electric OrchestraJohn Fahey & His OrchestraGeorgie Auld And His OrchestraJerry Gray And His OrchestraRay Rasch And The Pipers 10 + +565422Heinz WildhagenGerman sound engineer, born 14 February 1928; died 29 December 2013. +From the 1950s to 1983 he recorded more than 3600 sessions for [l7703] releases, afterwards he continued as a freelance engineer.Needs VoteHeinz WidhagenHeinz WildbagenHeinz Wildhagen M.A.Ingeniero De SonidoWIWISWiWildhagenハインツ・ヴィルトハーゲンハインツ・ヴィルトハーゲン + +565694Olle WibergOlle Gotthard WibergFinnish musician (piano, guitar). Born on March 16, 1938 in Helsinki, Finland and died on October 12, 2021 in Helsinki, Finland.Needs VoteD. WibergO. WibergOlli WibergOlle Wibergin YhtyeRautalanka OyThe Modangos + +565710Maija HapuojaMaija Tuulikki HapuojaFinnish soprano vocalist, born April 2nd, 1948 in Oulu, Finland.Needs Votehttp://www.maijahapuoja.fi/MaijaMaija Hapuoja-RytiMaiju HapuojaHeikki Sarmanto Serious Music EnsembleGirls (4)The Finnjet Singers + +565716Jean-Marie IngrandFrench jazz bassistNeeds VoteJ. IngrandJ.M. IngrandJean Marie IngardLester Young QuintetThe Bernard Peiffer TrioJack Diéval Et Le J.A.C.E. All-StarsHubert Fol QuartetClaude Bolling Et Son OrchestreBernard Peiffer And His Saint-Germain-des-Prés OrchestraRené Thomas QuintetMartial Solal Trio"Fats" Sadi's ComboThe Lou Bennett QuartetGérard Raingo And His FriendsRené Thomas And His OrchestraFrank Foster QuartetMartial Solal - Sadi QuartetteJean-Pierre Sasson Et Son QuartetHenri Renaud - Bobby Jaspar Quintet + +566541Stephen SondheimStephen Joshua SondheimAmerican composer and lyricist for film and stage productions notably 'West Side Story' in 1956, born 22 March 1930 in New York City, New York, USA and died 26 November 2021 in Roxbury, Connecticut, USA. +Sondheim has received an Academy Award, eight Tony Awards (including a Special Tony Award for Lifetime Achievement in the Theatre), eight Grammy Awards, a Pulitzer Prize, a Laurence Olivier Award, and a 2015 Presidential Medal of Freedom.Needs Votehttps://www.sondheimsociety.com/http://www.sondheim.com/https://www.biography.com/musician/stephen-sondheimhttps://www.britannica.com/biography/Stephen-Sondheimhttps://www.facebook.com/SondheimSocietyhttps://www.facebook.com/stephensondheimhttps://www.imdb.com/name/nm0814227/https://musicianbio.org/stephen-sondheimhttps://www.musicianguide.com/biographies/1608001475/Stephen-Sondheim.htmlhttps://en.wikipedia.org/wiki/Stephen_SondheimB. SoundheimC. SondheimG.F. SondheimH. SondheimL. SondheimMr. StephenS SondheimS, SondheimS. SondheimS. CondheimS. S. SondheimS. SandheimS. SondheimS. SondheimsS. SondheinS. SongheimS. SonheimS. SontheimS. SoudheinS. SoundheimS. StephenS.SondheimS.SondheimsSandheimSandkeinSendheimShondheimSobdheimSodenheimSodheimSoldheimSomdheimSomheimSoncheimSondbeimSondeimSondgeimSondheimSondheim / StephenSondheim SSondheim StephenSondheim,Sondheim, St.Sondheim.SondheinSondheiwSondhelmSondhiemSonfheimSonheimSontheimSoudheimSoundheimSoundhiemSt SondheimSt. SondheimSteffen SondheimStepen SondheimStephan SondheimStephen Joshua SondheimStephen SandheimStephen SandheinStephen SendheimStephen SodheimStephen SonderheimStephen Sondheim'sStephen SondheinStephen SondheiumStephen SondhemStephen SondhiemStephen SonheimStephen SontheimStephen SoundheimStephens SondheimStephens/SondheimSteve SondheimSteven Sondheims. SondheimsondheimС. СондхеймСтефан Сонхеймステフェン・ソンドハイムEsteban Rio Nido + +566763Julia CooperSoprano VocalistNeeds VoteThe Sixteen + +566828Wallace DavenportAmerican jazz trumpet player, born 30 June 1925 in New Orleans, Louisiana, USA, died 18 March 2004 in New Orleans, Louisiana, USA.Needs Votehttps://en.wikipedia.org/wiki/Wallace_DavenportDavenportDavensportW. DavenportWallace Foster DavenportWallis DavenportCount Basie OrchestraLionel Hampton And His OrchestraLionel Hampton And His All-Star Alumni Big BandWallace Davenport And The Jazz GreatsLionel Hampton & His Big BandLionel Hampton & His Giants Of JazzThe Paul Gayten BandWallace Davenport And His New Orleans Jazz BandWallace Davenport's Quintet + +566829Henderson Chambers Henderson Charles ChambersAmerican jazz trombonist, born 1 May 1908 in Alexandria, Indiana, died 19 October 1967 in New York City, USA.Needs Votehttps://en.wikipedia.org/wiki/Henderson_Chambershttps://www.allmusic.com/artist/henderson-chambers-mn0002288939/creditshttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/chambers-henderson-charleshttps://www.imdb.com/name/nm8570987/https://adp.library.ucsb.edu/names/308010ChambersFreddy WilliamsH. ChambersHenderson C. ChambersHenderson ChambertsCount Basie OrchestraLouis Armstrong And His OrchestraArtie Shaw And His OrchestraEarl Hines And His OrchestraLucky Millinder And His OrchestraSy Oliver And His OrchestraEdmond Hall Swing SextetThe Duke's MenThe Ernie Wilkins OrchestraThe Mel Powell SeptetEdmond Hall And His OrchestraHoward Biggs OrchestraThe International Jazz GroupThe Ellis Larkins Orchestra + +566834Sam NotoAmerican jazz trumpeter, born 17 April 1930 in Buffalo, New York, USANeeds VoteNotoSam NottoSammy NotoCount Basie OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraRussell Garcia And His OrchestraAlvinn Pall SextetRob McConnell & The Boss BrassWoody Herman And The Swingin' HerdWoody Herman And The Fourth HerdThe Frank Rosolino SextetBill Allred's Goodtime Jazz BandDon Menza QuintetBernie Senensky QuintetBernie Senensky Quartet + +567488John BullEnglish composer and keyboard instrumentalist. +Born: c. 1562, Radnorshire, Wales. +Died: March 12, 1628, Antwerp, Belgium.Needs Votehttps://en.wikipedia.org/wiki/John_Bull_%28composer%29https://www.britannica.com/biography/John-Bull-English-composerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103040/Bull_JohnBullDoctor BullDoctor John BullDr John BullDr. John BullDž. BulsJ BullJ. BullJan BullБуллДж. БуллДж. БульДжон Булл + +567511Paul HindemithPaul Hindemith (*November 16, 1895, Hanau, Germany - ✝December 28, 1963 Frankfurt am Main, Germany) was a prolific German composer, violist, violinist, teacher and conductor.Needs Votehttps://en.wikipedia.org/wiki/Paul_Hindemithhttps://www.hindemith.info/https://www.britannica.com/biography/Paul-Hindemithhttps://www.imdb.com/name/nm0385519/https://www.bach-cantatas.com/Lib/Hindemith-Paul.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102426/Hindemith_PaulHIndemithHindemethHindemitHindemithHindemith P.Hindemith, PauHindemith, PaulHindemith’HindesmithHindsmithP HindemithP. HindemitP. HindemitasP. HindemithP. HindemitsP. HindesmithP. HindimithP.HindemithPaul HimdenithPaul HindemitPaul MeranoPoul HindemithProf. Paul HindemithА. ХиндемитП. ХиндемитП.ХиндемитПаул ХиндемитПауль ХиндемитХиндемитパウル・ヒンデミットヒンデミットAmar-QuartettHindemith-TrioAmar TrioHindemith Duo + +567580Philippe BrunFrench jazz trumpeter, born April 29, 1908 in Paris, died January 14, 1994. +Recorded with [a=Ray Ventura] in 1929 and played with dance bands in London in the first half of the 1930s; later in Paris played with [a=Django Reinhart] 1937, [a=Alix Combelle] 1938 and 1937-1940 recorded as a leader. Between 1941 and 1944 worked in Switzerland with [a=Teddy Stauffer] and others; later mostly with own bands.Needs Votehttps://adp.library.ucsb.edu/names/368578BrubBrunP. BrunP.BrunPh. BrunPhilippePhilippe Brun Et Son OrchestrePhilippe Brun TrioPhilippe Brun Y Su Trompeta MagicaPhillipe BrunQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreJack Hylton And His OrchestraOrchestre Musette "Swing Royal"Django's MusicPhilippe Brun "Jam Band"Philippe Brun And His Swing BandRay Ventura Et Ses CollégiensPhilippe Brun Et Son OrchestreAlix Combelle And His Swing BandGus Viseur Et Ses PotesDanny Polo & His Swing StarsThe Hot Club Swing StarsPhilippe Brun Und Sein SextettJack Hylton And His 22 BoysPhilippe Brun SeptetMrs. Jack Hylton And Her BandPhilippe Brun Et Son Quintette De JazzPhilippe-Gérard Et Son EnsemblePhilippe-Gérard Et Le Brelan D'As + +567586Aimé BarelliFrench jazz trumpeter, composer and bandleader, born May 1, 1917 in Loda, near Lantosque, France, died on July 13, 1995 in Monaco (Principality of Monaco). Aimé worked with [a=Charles Trenet], [a=Django Reinhardt], [a=Miles Davis], [a=Alix Combelle], [a=Charlie Parker] and others, as well as with his own groups. Husband of [a456394], father of [a912197], for whom he conducted the orchestra for the [l=Eurovision Song Contest] in Vienna in 1967. He was naturalized as a Monegasque.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/08/aime-barelli.htmlhttps://fr.m.wikipedia.org/wiki/Aim%C3%A9_Barellihttps://adp.library.ucsb.edu/names/356853A. BarelliA. BerelliA.BarelliAime BarelliAimè BarelliAimé BarrelliAimé BorelliAimée BarcelliBarelliBarrelliBorelliD'Aimé BarelliЭ. БареллиAlix Combelle Et Son OrchestreAndré Ekyan Et Son EnsembleDjango's MusicFestival SwingNoel Chiboust Et Son OrchestreHubert Rostaing - Aimé Barelli Et Leur OrchestreHubert Rostaing Et Son OrchestreAimé Barelli Et Son OrchestreLe Jazz De ParisFred Adison Et Son OrchestreLos CubancitosAimé Barelli & His Swinging MelodiesCharles Hary Et Son OrchestreJam Session N° 5All Star Français 1950Armand Molinetti Et Son OrchestreAimé Barelli Et Son QuartetteAimé Barelli Et Son Sextette + +567588Maurice ChaillouJazz drummerNeeds VoteChaillouM. ChaillouMaurice ChaillaudMaurice ChaillouxAlix Combelle Et Son OrchestreOrchestre Musette "Swing Royal"Philippe Brun "Jam Band"Philippe Brun And His Swing BandMichel Warlop Et Son OrchestreWal-Berg Et Son Jazz FrançaisPatrick & Son Orchestre De DanseAndré Ekyan Et Son SwingtetteYvonne Blanc Et Son Trio RythmiqueBilly Colson Et Ses RythmesJean Lutèce Quartett + +567591André LluisFrench clarinetist and saxophonist born July 14, 1910 in Béziers, died November 30, 2010 in Toulouse.Needs VoteA. LluisA. LluissAndre LhuisAndre LluisAndre LouisAndré LouisAndré LuisQuintette Du Hot Club De FranceEddie Barclay Et Son OrchestreOrchestre Musette "Swing Royal"Orchestre Swing Jo ReinhardtRay Ventura Et Ses CollégiensNoel Chiboust Et Son OrchestreGus Viseur Et Son OrchestreDjango Reinhardt Et Son Orchestre + +567653Gérard LévêqueFrench Soul-jazz-funk composer, arranger, clarinetist and session musician based in Paris. +Before composing library music, he was part of [a=Django Reinhardt]'s group. +Needs Votehttps://djangonewquintettclarinet.wordpress.com/2017/08/16/discographie-de-gerard-levecque/G. LevecqueG. LévecqueG. LévêqueGerard LevecqueGerard LevequeGerard LévêqueGérard LevecqueGérard LevequeGérard LevéqueGérard LevêcqueGérard LevêqueGérard LévecqueGérard LévèqueGérard LévêcqueGérard Lévêque Et Son OrchestreGerardo (9)Quintette Du Hot Club De FranceDany Kane Et Son EnsembleDjango's MusicRay Ventura Et Son OrchestreJacques Hélian Et Son OrchestreLes Amis De DjangoQuintette Rythmique De ParisAragon (12)Gérard Lévêque Et Son Grand Orchestre + +567743Peter DonohoePeter DonohoePiano player, born in Manchester, UK, in 1953Correcthttp://www.concertartist.info/biog/DON001.htmlDonohoePeter DonahoePeter DonohueП. ДонохоуПитер ДонохоуПитер Донохьюピーター・ドノホー + +567747John McGlinnJohn Alexander McGlinn IIIAmerican conductor and musical theatre archivist, born 18 September 1953 in Bryn Mawr, Pennsylvania, USA, died 14 February 2009 in New York City, New York, USA.Correcthttps://en.wikipedia.org/wiki/John_McGlinnJohn A. McGlinnMcGlinn + +567751Blasorchester der Berliner PhilharmonikerWind orchestra of the Berliner Philharmoniker. +Please, do not confuse with [a1853152].Needs VoteBerliinin Filharmonikkojen VasketBerlin Philharmonic Brass EnsembleBerlin Philharmonic Wind EnsembleBerlin Philharmonic WindsBerliner BlasorchesterBlaser Der Berliner PhilarmonikerBlaser Der Berliner PhilharmonikerBlasorchesterBlazers Van De Berliner PhilharmonikerBläser Der Berliiner PhilharmonikerBläser Der Berliner PhilharmonieBläser Der Berliner PhilharmonikerBläser der Berliner PhilharmonikerBläser-Ensemble Der Berliner PhilharmonikerBläserensemble Der Berliner PhilharmonikerBläservereinigung Der Berliner PhilharmonikerBlåsare Ur Berliner PhilharmonikerBrass of the Berlin PhilharmonicConjunto De Sopros Da Orquestra Filarmônica De BerlimFiati Solisti della Filarmonica di BerlinoInstruments À Vent De L'Orchestre Philharmonique De BerlinSección De Viento De La Orquesta Filarmónica de BerlínVents De La Philharmonie De BerlinVientos De La Filarmónica De BerlínWind Ensemble Of The Berlin Philharmonic OrchestraWind Players Of The Berlin Philharmonic OrchestraWinds Of The Belin PhilharmonicWinds Of The Berlin PhilharmonicGerd SeifertBerliner Philharmoniker + +567776Luciano IorioLuciano Iorio is an Italian classical violist. He's married to [a843644] and is the father of [a5815780].Needs VoteLuciana IorioLuciano JorioLuciano LorioLucinano IorioThe London Session OrchestraQuartetto Di Nuova MusicaI Solisti VenetiCummings String TrioEnglish String Quartet + +567876Bobby ByrneRobert ByrneFor US songwriting and/or production credits in the Soul/Pop/Country genre from the late 70s onward, consider [a=Robert Byrne (2)]. + +American jazz trombonist and orchestra leader, born 10 October 1918 in Pleasant Corners, OH - died 25 November 2006 in Irvine, California +Byrne began his career when he was hired by the Dorsey Brothers in 1934 at only 16 years of age. +He had his own orchestra from 1939 to 1942. +After 1945 he began freelancing in New York. He founded a new orchestra in 1946. He worked often on television, leading a dixieland combo on Steve Allen's program from 1952 to 1954, and performing on the shows of Milton Berle, Perry Como, and Patti Page. +He also served as A&R director for labels [l=Command] and [l=Evolution (3)] and often performed as a studio musician for that label. +In the early 1970s Byrne completely left the music industry for the business world, though he occasionally continued to perform.Needs Votehttps://adp.library.ucsb.edu/names/106787B. ByrneBob ByrneBob ByrnesBobby BirneBobby BryneBobby ByrnesBobby ByrnsByrnByrneR. ByrneRobert BurneRobert ByrneRobert ByrnesEnoch Light And The Light BrigadeArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraCootie Williams And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraThe Command All-StarsLos AdmiradoresThe Charleston City All-StarsUrbie Green And His OrchestraAll Star Alumni OrchestraThe Grand Award All StarsDoc Severinsen And His OrchestraBobby Byrne And His OrchestraDon Redman All StarsBobby Byrne And His NBC Dixieland BandBobby Byrne's Dixielanders + +568177Frank SzaboFrank J. SzaboAmerican jazz trumpet player, born September 16, 1952 in BudapestNeeds Votehttps://en.wikipedia.org/wiki/Frank_SzaboFranck SzaboFrank J. SzaboFrank ZsaboCount Basie OrchestraThe Gene Harris All Star Big BandLouie Bellson Big BandThe Bill Holman BandPat Longo And His Super Big BandDon Menza & His '80s Big BandThe Gary Urwin Jazz OrchestraBuddy Charles Concert Jazz OrchestraRoger Neumann's Rather Large BandThe Don Menza Big BandThe Tom Talbert Jazz OrchestraTeddy Edwards Brasstring EnsembleThe Bob Belden EnsembleThe Los Angeles Jazz OrchestraLouie Bellson's Big Band Explosion! + +568306William BlakeEnglish poet, painter, and print-maker, born November 28, 1757 in Soho, London, England, UK, died August 12, 1827 in Soho, London, England, UK.. Largely unrecognized during his lifetime, his work is today considered seminal and significant in the history of both poetry and the visual arts.Needs Votehttps://en.wikipedia.org/wiki/William_Blakehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102257/Blake_WilliamBlakeMr. William BlakeSir William BlakeSir. William BlakeU. BlejkW BlakeW. BlakeW.BlakeWilliam BondWlliam BlakeWm BlakeWm, BlakeWm. BlakeБлейкВ. БлейкВильям БлейкУ. БлейкУильям БлейкУильям БлэйкУильяма Блэйка + +569062George KastAmerican violinist and concertmaster (August 28, 1913 New York - August 22, 1987 (age of 73)). +Was married to violinist [a1510909]. + +Kast was instrumental in the amalgamation of black and white musicians unions in the early 1950s. +Kast was a child prodigy and gave a public violin recital at the age of seven, played five seasons with the Los Angeles Philharmonic under Otto Klemperer, and worked with Alex Stordahl and Paul Weston and recorded with his own orchestra for Capitol Transcription Service. +He appeared on over eighty albums with a range of variety of musical styles including [a=The Andrews Sisters], [a=Tony Bennett], [a=The Carpenters], [a=Benny Carter], [a=Rosemary Clooney], [a=Bing Crosby], [a=Doris Day], [a=Earth, Wind & Fire], [a=Aretha Franklin], [a=Michael Jackson], [a=Eartha Kitt], [a=Frankie Laine], [a=Dean Martin], [a=Sergio Mendes], [a=The Monkees], [a=Ray Parker, Jr.], [a=Minnie Riperton], [a=Artie Shaw], [a=Simon & Garfunkel], [a=Frank Sinatra], [a=Rod Stewart], [a=Barbra Streisand], [a=Mel Tormé], [a=Tom Waits], [a=Mason Williams] and more. +His film and television credits include [i]Bullitt[/i], [i]Dirty Harry[/i], [i]Enter the Dragon[/i], [i]Mission: Impossible[/i], and [i]Rocky[/i].Needs Votehttps://www.feenotes.com/database/artists/kast-george-28th-august-1913-22nd-august-1987/Harry James And His OrchestraStan Kenton And His OrchestraGeorge Kast Ensemble + +569163Thomas MitchellThomas MitchellAmerican jazz trombonist +Born 1926 in Columbia, Pennsylvania, died 2003 + +Tom recorded with [a23755], [a64694], [a30486], [a61585], [a229639], [a299282], [a251769], [a29981], [a52833], [a170754], [a53248], [a79742], [a31615], and [a33587], among others. + +Not to be confused with his son (pianist/singer/songwriter), [a=Tommy Mitchell].Needs Votehttp://www.allmusic.com/artist/thomas-mitchell-mn0000922906/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/206890/Mitchell_Tommy_Tomhttps://rateyourmusic.com/artist/tom_mitchell_f2/credits/MitchellRommy MitchellT. MitchellThom MitchellThomas J. MitchellThommy MitchellTom MitchelTom MitchellTom Mitchell JrTom, MitchellTommy MItchellTommy MitchelTommy MitchellTommy MithchellQuincy Jones And His OrchestraGil Evans And His OrchestraAndy Kirk And His Clouds Of JoyRay Ellis And His OrchestraOliver Nelson And His OrchestraSauter-Finegan OrchestraThe Ernie Wilkins OrchestraManny Albam And His Jazz GreatsJoe Reisman And His OrchestraLos AdmiradoresBilly Byers And His OrchestraTerry Gibbs And His OrchestraMiles Davis + 19Henry Jerome And His OrchestraJimmy Smith And The Big BandGeorge Russell OrchestraLarry Sonn OrchestraCoxon's ArmyGeorge Williams And His OrchestraThe J.J. Johnson And Kai Winding Trombone OctetArt Farmer And His OrchestraThe Quincy Jones Big BandThe Kai Winding OrchestraThe Sons Of Sauter-FineganChubby Jackson's Big BandJoe Newman And His OrchestraMichel Legrand Big BandVic Schoen And His All Star BandUrbie Green And Twenty Of The "World's Greatest" + +569418Donna FeinCorrect + +569429Alfredo CatalaniItalian operatic composer, and composition teacher. Born 19 June 1854 in Lucca, Italy (then Grand Duchy of Tuscany) - Died 7 August 1893 in Milan, Italy. +He was trained at the [l479044] where, in 1886, he succeeded [a=Amilcare Ponchielli] as composition teacher. He is best remembered for his operas "Loreley" (1890) and "La Wally" (1892). "La Wally" was composed to a libretto by [a=Luigi Illica], and features Catalani's most famous aria "Ebben? Ne andrò lontana." This aria, sung by American soprano [a=Wilhelmenia Wiggins Fernandez], was at the heart of [a=Jean-Jacques Beineix]'s 1981 film 'Diva'. + + +Needs Votehttps://www.youtube.com/channel/UC6ICjad_41oZVR_P87x7VUQhttps://open.spotify.com/artist/2pJPaYySRIl7SVCgkT2weIhttps://music.apple.com/us/artist/alfredo-catalani/319070https://en.wikipedia.org/wiki/Alfredo_Catalanihttps://web.archive.org/web/20071021065916/http://operaitaliana.com/autori/biografia.asp?ID=9https://www.britannica.com/biography/Alfredo-Catalanihttps://www.turismo.lucca.it/en/alfredo-catalanihttps://musicianbio.org/alfredo-catalani/https://www.geni.com/people/Alfredo-Catalani/6000000017424746900https://www.imdb.com/name/nm0145808/https:adp.library.ucsb.edunames104134A. CatalaniA. CataliniA. CatalniA.CatalaniA.CataloniAlfred CatalaniCatalaniCatalani, AlfredoCatalinaCataliniE. CatalaniА. КаталанiА. КаталаниАльфредо КаталаниКаталаниКаталаніアルフレード・カタラーニカタラーニ + +569446Edwin HawkinsEdwin Reuben HawkinsAmerican singer, pianist, songwriter, arranger and choir master. +One of the cornerstones of modern gospel music he is credited with being the bridge between old-school and contemporary gospel. +Born 18 August 1943 in Oakland, California, USA. +Died January 15, 2018 in Pleasanton, California, USA. +One of six children, he grew up in the Campbell Village projects, where his parents, Mamie and Dan Lee Hawkins, encouraged his musical skills at an early age. +He began playing piano by age five and when he was seven took over the keyboards for his family's vocal group. +Best known for his 1969 hit song "Oh Happy Day" (with the [a=Edwin Hawkins Singers]), one of first gospel songs to achieve mainstream success. +Edwin Hawkins was a brother of [a=Walter Hawkins]. +Hawkins and [a810118] founded the [a3520561] of the Ephesians Church of God in Christ (COGIC) in May of 1967, which included almost fifty members. The group was split in 1969 after the success of "Oh Happy Day", with Hawkins group becoming the [a254601] and Watson and another soloist organizing a new group, taking the original name. +Needs Votehttp://en.wikipedia.org/wiki/Edwin_Hawkinshttps://www.imdb.com/name/nm0370126/E HawkinsE R HawkinsE R. HawkinsE, HawkinsE-R. HawkinsE. HawkinE. HawkinsE. R. HawkinsE.HawkinsE.R HawkinsE.R. HawkinsE.R.HawkinsEd. HawkinsEdward HawkinsEdward R. HawkinsEdwinEdwin Hawkins Music And Arts SeminarEdwin Hawkins PublishingEdwin R HawkinsEdwin R. HawkindEdwin R. HawkingsEdwin R. HawkinsEdwin R.HawkinsEdwin R.K. HowkinsEeddie HawkinsHawkinHawkinsHawkins - R, EdwinHawkins - R. EdwinHawkins-R. EdwinJ.R. HawkinsOawkinsR. EdwinR. HawkinsRev. Edwin HawkinsReverend Edwin HawkinsThe Edwin Hawkins SingersThe Edwind Hawkins SingerW. HawkinsEdwin Hawkins SingersThe Love Center ChoirEdwin Hawkins And The Hebrew BoysWalter Hawkins And The FamilyThe Bay Area Chapter Of The Music & Arts SeminarNorthern California State Youth Choir + +569447Brian O'FlahertyJazz trumpet player. O'Flaherty obtained a Bachelors Degree in Music Composition from Roosevelt University in Chicago in 1979. He also did graduate work at Northern Illinois University. He received the Down Beat magazine “Dee Bee” Award in 1980 in two categories–Best Jazz Arrangement and Best Instrumental Soloist in the college division. Brian played with Louis Bellson, Woody Herman, Don Sebesky, Mel Lewis, Bob Mintzer, and Kim Richmond. He also performed and recorded for television and radio.Needs Votehttps://playerschool.net/brian-oflaherty/https://www.legacy.com/obituaries/name/brian-o%27flaherty-obituary?pid=206681959Bryan O'FlahertyWoody Herman And His OrchestraLouie Bellson Big BandThe Woody Herman Big BandThe Contemporary Arranger's WorkshopLouie Bellson And His Jazz OrchestraWoody Herman And The Thundering HerdJack Cortner Big BandThe Lew Anderson Big BandThe Jazz Surge + +569576Stephen JacksonBritish bass vocalist and chorus master born November 7, 1951. Former longtime director of the [a=BBC Symphony Chorus] (1989-2015).Needs Votehttps://www.trinitylaban.ac.uk/study/teaching-staff/stephen-jacksonhttps://www.linkedin.com/in/stephen-jackson-9948582a/https://www.imdb.com/name/nm3991856/JacksonThe Tallis ScholarsBBC Symphony Chorus + +569577BBC Symphony ChorusNeeds Votehttp://www.bbc.co.uk/orchestras/symphonyorchestra/symphonychorus/B B C Symphony ChorusB. B. C. ChoirB. B. C. KorB.B.C. ChoirB.B.C. ChorusB.B.C. ChrorusB.B.C. ChrousB.B.C. Symphony ChorusB.B.C. Wireless ChorusBBC ChoirBBC ChorusBBC Radio ChoirBBC Symphony ChoirBBC Symphony Chorus LondonBBC Symphony Chorus, TheBBC-ChorBBC-ChorusBBC-Chorus, TheChoeur De La BBCChoeursChoeurs BBCChoeurs De La BBCChorChor der BBCChor der MatrosenChor der MädchenChorusChorus Of The BBC, LondonChorusesChœurChœur De La BBCChœur Symphonique De La B.B.C.Chœur Symphonique De La BBCChœursChœurs De La BBCCoroCoro De La BBCCoro Sinfonica Da B.B.C.Coro Sinfónica De La B.B.C.Coro de la B.B.C.Coro de la BBC de LondresCorosCoros De La BBCLadies of the BBC Symphony ChorusSymphony ChorusThe B.B.C. ChoirThe B.B.C. ChorusThe B.B.C. Chorus And OrchestraThe B.B.C. Wireless ChorusThe B.B.C. Wireless Chorus & OrchestraThe B.B.C. Wireless Chorus And OrchestraThe BBC ChoirThe BBC Symphony ChorusThe BBC-ChorusThe British Broadcasting ChoirThe British Broadcasting Company's ChoirWomen Of The BBC Symphony ChorusХор Би-Би-СиStephen JacksonHannah BishayWomen of the BBC Symphony ChorusAnne Taylor (3)Kuan Hon + +570216Philip HeymanViolist.Needs Votehttps://wno.org.uk/profile/philip-heymanRoyal Philharmonic Orchestra + +570543David MeashamDavid Michael Lucian MeashamBritish-Australian conductor and violinist. Born 1 December 1937 in Nottingham, Nottinghamshire, England, UK - Died 6 February 2005 in Perth, Western Australia, Australia. +He studied at [l305416]. His career began as a violinist in the [a=BBC Symphony Orchestra]. In 1962, he became Sub-Leader of the [a=City Of Birmingham Symphony Orchestra], a position he held until 1967. In 1965, he joined the [a=London Symphony Orchestra] eventually becoming Prinicipal Second Violin (1967-1973). In 1971, he emigrated to Perth, Australia and became Principal Conductor (1974-1981) and Principal Guest Conductor (1981-1986) of the [a=West Australian Symphony Orchestra]. +Father of [a539585]. + + +Correcthttps://open.spotify.com/artist/1pBJRkjXLGTA82cTfNWVoshttps://music.apple.com/us/artist/david-measham/293933https://en.wikipedia.org/wiki/David_Meashamhttp://www.musiciansgallery.com/tribute/measham/david.htmlhttps://www.theguardian.com/news/2005/apr/05/guardianobituaries.artsobituarieshttps://www.imdb.com/name/nm1866842/Daniel MeashamDavid MeechamLondon Symphony OrchestraBBC Symphony OrchestraCity Of Birmingham Symphony OrchestraWest Australian Symphony Orchestra + +570719Billy RoseWilliam Samuel RosenbergBilly Rose (born September 6, 1899, New York City, New York, USA – died February 10, 1966, New York City, New York, USA) was an American Broadway producer, impresario, theatrical showman and lyricist. His many famous songs include "Me and My Shadow" (1927), "It Happened in Monterey" (1930) and "It's Only a Paper Moon" (1933). He was once married to comedian [a=Fanny Brice]. + +Inducted into the Songwriter's Hall of Fame in 1970. +Needs Votehttp://en.wikipedia.org/wiki/Billy_Rosehttp://songwritershalloffame.org/exhibits/C307http://www.ibdb.com/person.php?id=16019https://adp.library.ucsb.edu/names/104074A. RoseB RoseB. BoseB. RoseB. RossB. ローズB.RoseBelly RoseBill RoseBillie RoseBilly De RoseBilly RoserBilly RossBily RoseD. RoseDreyerFred RoseJ, RoseM. RoseRedRhodesRiceRodeRoesRomeRoneRoosRoseRose BillyRose, BillyRossRosèRowRozaV. RoseW RoseW. RoseW. RosseW.B. RoseW.RoseWilliam RoseWm. RoseWm.RoseРоуз + +570822Bruno BalzGerman lyricist, born 6 October 1902 in Berlin, Germany, +died 14 March 1988 in Bad Wiessee, Germany +Needs Votehttp://en.wikipedia.org/wiki/Bruno_Balzhttps://adp.library.ucsb.edu/names/101333B BalzB. BalsB. BaltzB. BalzB. BatzB. BolzB.BalzBaczBaltzBalzBalz BrunoBalz, B.Balz, BrunoBatzBelzBlazBr BalzBr. BaltzBr. BalzBr.BalzBrune BalzBrunoBruno BalkBruno BaltzBruno Balz-FlatowBruno BolzBruno WalzBrüne BalzBälzErich BalzH. F. BeckmannIllerMalzv. Balz + +571402Red SaundersTheodore Dudley Saunders.American jazz drummer, vibraphonist, composer and bandleader. +Born: March 2, 1912 in Memphis, Tennessee - Died: March 5, 1981 in Chicago, Illinois. + +"Red" played with Stomp King, Tiny Parham, and with own bands (1937-1963), Duke Ellington, Louis Armstrong, Woody Herman, Big Joe Turner, Little Brother Montgomery, Art Hodes, among others. +Needs Votehttp://campber.people.clemson.edu/saunders.htmlhttps://adp.library.ucsb.edu/names/342394"Red" SaundersR. SaundersRod SaundersSandersSaundersTheo "Red" SaundersTheodore "Red" SaundersWoody Herman And His OrchestraRed Saunders & His OrchestraThe State Street RamblersRed Saunders BandRed Saunders And His All StarsThe Band That Plays The BluesRed Saunders Sextette + +571403Eddie JohnsonEdwin Lawrence JohnsonUS jazz and blues tenor saxophonist who studied at Englewood High at the Kentucky State College. Born December 11, 1920 in Napoleonville, LA, died April 07, 2010 in Chicago South, IL + +Do NOT confuse with US trombonist/co-writer of "Jersey Bounce" [a=Edward Johnson (9)]; both artists played in [a=Cootie Williams And His Orchestra]. + +He worked with [a=Coleman Hawkins] (1941), [a=Cootie Williams And His Orchestra] (1944 (?) or 1946) ; the house band of the Rhumboogie Cafe in Chicago (1942-43); [a=Louis Jordan And His Tympany Five]; [a=Duke Ellington] & [a=Ella Fitzgerald]; [a=Marl Young] and [a=Walter Fuller] +Recorded for Chess (1950s), Nessa and Delmark (1980s, 1990s)Needs Votehttp://campber.people.clemson.edu/johnson.htmlhttp://en.wikipedia.org/wiki/Eddie_Johnson_%28musician%29E. JohnsonEdwIn JohnsonEdward JohnsonEdwin "Eddie" JohnsonEdwin 'Eddie' JohnsonEdwin JohnsonJohnsonJoey Pastrana And His OrchestraLouis Jordan And His Tympany FiveCootie Williams And His OrchestraJazz Members Big BandChicago Jazz EnsembleEddie Johnson And His OrchestraSession Six + +571547Alison WadeAlison WadeCorrectA. WadeAliAlisonAngel Eyez + +571862Marc Antoine CharpentierFrench composer from the Baroque period (born 1643 in Paris - died 1704 in Paris). +One of the most important French Baroque composers, alongside [a=Jean-Baptiste Lully], [a=François Couperin] and [a=Jean-Philippe Rameau]. + +[b]Please note[/b] - the opera 'Louise' (inc. aria 'Depuis Le Jour') is composed by [a1071292]. +Needs Votehttps://www.britannica.com/biography/Marc-Antoine-Charpentierhttps://en.wikipedia.org/wiki/Marc-Antoine_Charpentierhttps://www.naxos.com/Bio/Person/Marc_Antoine_Charpentier/25945https://imslp.org/wiki/Category:Charpentier,_Marc-AntoineA. CharpentierAntoine CharpentierCarpenterCarpentierCharpenterCharpentierCharpentier (MA)Charpentier M.A.Charpentier, M.A.M-A CharpentierM-A. CharpentierM. -A. CharpentierM. A CharpentierM. A. CharpantierM. A. CharpentierM. A. ŠarpentijeM. CharpentierM.-A. CharpentierM.-A.CharpentierM.A CharpentierM.A. CharpantierM.A. CharpentierM.A.CharpendierM.A.CharpentierM.C. CharpentierM/A CharpentierMarc A. CharpentierMarc Antonio CharpentierMarc CharpentierMarc-Antione CharpentierMarc-Antoine CarpentierMarc-Antoine CharpentierMarc-Antoine-CharpentierMarco Antonio CharpentierR. CharpentiereКарпентерシャルパンティエマルカントワーヌ・シャルパンティエ + +572072Tom Phillips (3)English painter, composer and writer, who taught [a=Brian Eno] among many others. +CBE RA (25 May 1937 – 28 November 2022).Needs Votehttp://www.tomphillips.co.uk/https://en.wikipedia.org/wiki/Tom_Phillips_(artist)https://www.imdb.com/name/nm0680848/PhillipsTom PhillipPhilharmonia ChorusMusic Now Ensemble 1969 + +572701Bertrand CerveraClassical violinistNeeds VoteB. CerveraBertrand ServeratOrchestre National De FranceSarocchi + +572706Ghislaine BenabdallahViolinist.Needs VoteGhislaine Ben AbdalaGhislaine Benabdalla MancelGhislaine Benadballa MancelGhislaine BenhabdallahGhyslaine BenabdalaOrchestre National De France + +572708Catherine BourgeatClassical violinistNeeds Votehttps://www.facebook.com/catherine.bourgeat?ref=br_rsOrchestre National De France + +572718Shaun ThompsonSaxophone and clarinet playerNeeds VoteBBC Symphony Orchestra + +573073Jun Yi MaClassical violinist born in Shanghai in 1972, current concertmaster of the [a941075]. +In 1989, he was appointed inaugural concertmaster of the Asian Youth Orchestra and, in 1992, concertmaster and soloist with the Australian Virtuoso Chamber Orchestra. He pursued further studies at the Tasmanian Conservatorium of Music with Professor Jan Sedivka and then at the Sydney Conservatorium with [a1871531]. He has also studied with [a526590]. He was principal first violin of the Sydney Symphony Orchestra from 1997 to 2002.Needs Votehttp://www.utas.edu.au/music/people/people/jun-yi-maThe Australian Opera & Ballet OrchestraAdelaide Symphony OrchestraSydney Symphony OrchestraTasmanian Symphony Orchestra + +573076Peter MorrisonPeter Højby MorrisonAustralian cellist and composer, based in Copenhagen, DenmarkNeeds Votehttps://www.peetmorrison.com/biographyAustralian Brandenburg OrchestraStatsradiofoniens SymfoniorkesterDR SymfoniOrkestretAustralian World Orchestra + +573078Fiona ZieglerAustralian violinist. Daughter of Australian violinist [a=Eva Kelly (2)].Needs Votehttp://www.grevilleaensemble.net.au/fiona.htmlhttp://www.sydneychambermusicfestival.org.au/Fiona-Ziegler-2010.htmlFiona ZeiglerAustralian Brandenburg OrchestraSydney Symphony OrchestraChamber Choir Of Sydney University Baroque Ensemble + +573116Siegfried PalmSiegfried PalmGerman cellist born 25th April 1927 in Wuppertal, died 6th June 2005 in Frechen.Needs Votehttps://en.wikipedia.org/wiki/Siegfried_Palmhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/palm-siegfried-0PalmS. PalmSigfried PalmDas Hamann QuartettPalm-Trio + +573235Erika KöthGerman operatic high coloratura soprano, born 15 September 1925 (*1927) in Darmstadt, German Empire and died 21 February 1989 in Speyer, Germany. + +*In some music lexica 1927 is called as year of birth.Needs Votehttp://en.wikipedia.org/wiki/Erika_KöthE. KöthErikaErika KoethErika KothErika KöttKöthЭ. КётЭрика Кёт + +573237Robert GilbertRobert David WinterfeldGerman composer, poet, singer and actor. + +b. 29/09/1899 in Berlin, Germany +d. 20/03/1978 in Minusio, Switzerland + +Son of [a=Jean Gilbert]. +Needs Votehttp://en.wikipedia.org/wiki/Robert_Gilbert_(musician)http://de.wikipedia.org/wiki/Robert_Gilberthttps://www.transatlanticperspectives.org/entries/robert-gilbert/https://adp.library.ucsb.edu/names/104290GibertGilbertGilbert, R.Gilbert, RobertGilbrtGlibertJ. GilbertJ.GilbertR GilbertR, GilbertR. GIlbertR. GibertR. GilbertR.GilbertRene GilbertRob GilbertRob. GilbertRob.GilbertRobertYves GilbertГильбертDavid Weber (4)Rudolf BertramHarry Roberts (13)Roxy (26) + +573239Hermann PreyHermann Oskar Karl Bruno PreyGerman baritone vocalist. Father of [a1057180]. + +He was born 11 July 1929 in Berlin, Germany and died 22 July 1998 in Krailling, Germany.Needs Votehttp://www.hermannprey.de/https://en.wikipedia.org/wiki/Hermann_PreyFigaroH. PreyHerm. PreyHerman PreyHermannHermann FreyHermann Prey & OrchesterHermann Prey InstrumentalensembleHermann Prey Mit OrchesterHermann Prey Und InstrumentalensembleHerrmann PreyPreyГ. ПрейГерман Прейヘルマン・プライ + +573240Werner Schmidt-BoelckeWerner Albert Anton Paul SchmidtGerman composer, chorus master and conductor, born 28 July 1903 in Rostock-Warnemünde, German Empire, died 05 November 1985 in Munich, Germany.Needs Votehttps://de.wikipedia.org/wiki/Werner_Schmidt-Boelckehttps://adp.library.ucsb.edu/names/359702Dir. Werner Schmidt-BoelckeKapellm. Schmidt-BoelckeKapellmeister Schmidt-BoelckeKapellmstr. Schmidt-BoelckeSchmidtSchmidt - BoelckeSchmidt BoelckeSchmidt-BoelckeSchmidt-BoelkckeSchmidt-BoelkeW. Schmidt-BoelckeW. Schmidt-BoelkeWerner SchmidtWerner Schmidt - BoelckeWerner Schmidt BoelckeWerner Schmidt-BoelckWerner Schmidt-BoelkeWerner Schmidt-BölckeWerner-Schmidt-BoelckeWilhelm Schmidt-BoelckeWilhelm Schmidt-BoelckeTanzorchester Werner Schmidt-BoelckeUnterhaltungsorchester Werner Schmidt-BoelkeOrchester Werner Schmidt-Boelcke + +573243Heinrich StreckerAustrian composer, born 24 February 1893 in Vienna, Austria, died 28 June 1981 in Baden, Austria.Needs Votehttp://en.wikipedia.org/wiki/Heinrich_Streckerhttps://adp.library.ucsb.edu/names/116373F. StreckerFranz StreckerH StreckerH. StreckerHeinr. StreckerHeinrich StrickerHemrich SteckerSteckerStreckerStrecketY. Strecker + +573244Wilhelm MüllerJohann Ludwig Wilhelm MüllerGerman lyric poet and writer. + +[b]Johann Ludwig Wilhelm Müller[/b] was born 7 October 1794 in Dessau, Germany and died 1 October 1827 in Dessau, Germany. +He became known for his socially critical German folk songs. +Best known for his lyrics on "Das Wandern ist des Müllers Lust". + +Also known as +"Griechen-Müller"Needs Votehttp://en.wikipedia.org/wiki/Wilhelm_M%C3%BCllerhttps://www.deutsche-digitale-bibliothek.de/person/gnd/11858524Xhttps://adp.library.ucsb.edu/names/102716A. MüllerJohann Ludwig Wilhelm MüllerMattilaMillerMuellerMullerMüllerMüller WilhelmMüller, WilhelmV. MillerV. MüllerW. MüllerW.MüllerW.ミュラーWilh. MüllerWilheim MullerWilhelmВ. МюллерВ.МюллерМюллерウィルヘルム・ミュラーヴィルヘルム・ミュラーヴィルヘルム・ミューラー + +573251Johann Wolfgang von GoetheJohann Wolfgang GoetheGerman writer, artist and politician, born 28 August 1749 in Frankfurt, Holy Roman Empire, died 22 March 1832, in Weimar, Saxe-Weimar-Eisenach. +His works span the fields of poetry, drama, literature, theology, philosophy, humanism and science. +He was one of the key figures of German literature and the movement of Weimar Classicism in the late 18th and early 19th centuries; this movement coincides with Enlightenment, Sentimentality (Empfindsamkeit), Sturm und Drang and Romanticism.Needs Votehttp://en.wikipedia.org/wiki/Johann_Wolfgang_von_Goethehttps://www.imdb.com/name/nm0324473/?ref_=nv_sr_srsg_0https://adp.library.ucsb.edu/names/102274GeotheGoeteGoetheGoethe Johann Wolfgang V.Goethe?GötheGœtheJ W GoetheJ,W,V,GoetheJ-W GoetheJ. GėtėJ. V. GetėJ. W. GoethaJ. W. GoetheJ. W. GoethėJ. W. V. GoetheJ. W. Von GoetheJ. W. v GoetheJ. W. v. GoetheJ. W. v: GoetheJ. W. von GoetheJ. W.v. GoetheJ. W: v. GoetheJ. Wolfg. Von GoetheJ. Wolfgang GoetheJ. Wolfgang v. GoetheJ.-W. von GoetheJ..W. von GoetheJ.V.GēteJ.W v. GoetheJ.W von GoetheJ.W. GoetheJ.W. GoëtheJ.W. V. GoetheJ.W. Von GoeteJ.W. Von GoetheJ.W. v. GoetheJ.W. von GoetheJ.W.GoetheJ.W.Von GoetheJ.W.v. GoetheJ.W.v. Goethe 1774J.W.v.GoetheJ.v. GoetheJW GoetheJoh. W. GoetheJoh. W. Von GoetheJoh. W. v. GoetheJoh. W. von GoetheJoh. Wolfg. GoetheJoh. Wolfg. V. GoetheJoh. Wolfg. v. GoetheJoh. Wolfg. von GoetheJoh. Wolfgang GoetheJoh. Wolfgang V. GoetheJoh. Wolfgang v. GoetheJoh. Wolfgang von GoetheJohan Volfgang GeteJohan Wolfgang GoetheJohan Wolfgang van GoetheJohan Wolfgang von GoetheJohann Van GoetheJohann W. GoetheJohann W. Von GoetheJohann W. v. GoetheJohann W. von GoetheJohann Wolfgang GoetheJohann Wolfgang V. GoetheJohann Wolfgang Von GoetheJohann Wolfgang v. GoetheJohann Wolfgang von GoetheJohann Wolfgang von GœtheJohann Wolfgangn GoetheJohann Wolgang von GoetheV. GetėV. GoetheV. GēteV. GėtėVon GoetheVon Goethe, J.W.W, GoetheW. A. GoetheW. GoeteW. GoetheW. GöetheW. V. GoetheW. Von GoetheW. v. GoetheW. von GoetheW.A. GoetheW.J. GoetheW.v.GoetheWolfWolf-GoetheWolfango GoetheWolfgang GoetheWolfgang J. GoetheWolfgang Von GoetheWolfgang v. GoetheWolfgang von Goethev. Goethev. Goethe, J. W.von GoetheΒόλφγκανγκ ΓκαίτεΓιόχαν Βόλφγκανγκ ΓκαίτεΓκαίτεЁган Вольфганг ГётэВ. ГëтеВ. ГетеВ. ГётеВ.ГётеГетеГётеИ. В. ГетеИ. В. ГётеИ. ГетеИ. ГётеИ.-В. ГетеИ.-В. ГётеИ.В. ГетеИ.В. ГётеИ.В.ГетеИ.В.ГётеИоган Вольфганг ГетеИоганн Вольфганг ГетеИоганн Вольфганг ГётеИоганн Вольфганг фон Гётеゲーテ + +573254Erich MederAustrian songwriter, born 28 July 1897 in Brünn, Austro-Hungarian Empire (today Brno, Czech Republic) and died 18 September 1966 in Vienna, Austria.Needs Votehttps://www.erichmeder.at/lieder/B. MederE MederE- MederE. MeanderE. MecherE. MederE. Meder.E. MeederE. NederE.MederEderEric MederErich MaederErich MecherF. MederM. MederMaderMecherMederMeder ErichMeder ErwinMeder, ErichMeederNeder + +573351Hans BradtkeHans Joachim Alexander BradtkeGerman composer, arranger and caricaturist. +Born 21 July 1920 in Berlin, Germany. +Died 12 May 1997 in Berlin, Germany. +Bradtke was the lyricist of the German hit "Uncle Satchmos Lullaby", sung by Louis Armstrong & [a=Gabriele] in 1959.Needs Votehttp://de.wikipedia.org/wiki/Hans_Bradtkehttps://www.imdb.com/name/nm0103557/A. BradtkeBaderBadtkeBardtkeBartelsBooneBrabtkeBradkeBradktBradkteBradteBradtkeBradtke HansBradtke, HansBradtkeWritten-ByBradtkerBradtkyBrandtkeBratkeBrodikeG. BradtkeH BradtkeH. BradtkeH. BradkeH. BradkteH. BradlkeH. BradtH. BradteH. BradtkeH. BrandtkeH. BrathkiH. BratkeH. BredikeH.BradtkeH.PradtkeHams BradtkeHand BradtkeHansHans - BradtkeHans BadkeHans BadtkeHans BradeHans BradikeHans BradkeHans BrandtkeHans BratkeHans BrodtkeHans-BradtkeHeinz PradkeHs BradtkeHs. BradtkeJ. BradtkeN. BradtkePradtkeRadtkeT. H. Bradtkedt. BradtkeБрадткеГ. БрадткеК. БратхеHans HubertCarl SeefeldAnton Reiser + +573416Erich DonnerhackErich Herbert DonnerhackErich Donnerhack (August 5, 1909 in Dresden – March 12, 1990 in Leipzig) was a German orchestra leader and director of the [a425124].Needs Votehttps://de.wikipedia.org/wiki/Erich_DonnerhackRundfunk-Sinfonie-Orchester LeipzigStaatliches Unterhaltungsorchester Halle + +573420Ralph Maria SiegelRudolf Maria SiegelGerman schlager composer, lyricist and tenor, born June 8, 1911 in Munich, Germany and died August 2, 1972 in Munich, Germany. +Father of [a=Ralph Siegel]. grandfather of [a=Giulia Siegel]. + +The linked webaddress lists all works of the author. +Needs Votehttps://viaf.org/viaf/50231597/https://adp.library.ucsb.edu/names/101197B. M. SiegelH. WinterM. R. SiegelM. SiegelMaria SiegelMaria-SiegelP. SiegelR. M. SiegelR. A. SiegelR. M. SIegelR. M. SiegalR. M. SiegelR. M. SieglerR. M.SiegelR. M: SiegelR. Maria SiegelR. SeigelR. SiebelR. SiegelR.-M. SiegelR.A. SiegelR.M. SIegelR.M. SiegelR.M. Sieget DtR.M. SieglR.M. SigelR.M.SiegelR:M. SiegelRalf Maria SiegelRalf-Maria SiegelRalph M SiegelRalph M. SiegelRalph Maria SiegalRalph Marie SiegelRalph SiegelRalph-Maria SiegelRalph-Maria-SiegelRudolph Maria SiegelSeigelSiebelSiegalSiegeSiegelSiegel R. M.Siegel RalphSiegel Ralph MariaSiegel, R. MariaSiegel, Ralph MariaSieglSigelStegalStegelStrouseZigelЗегельФ. Зигельラルフ・マリア・シーゲルGustav AuerbachTheo HansenBruno VolkertLeo Schulz-DöblingenFelipe Alvarez (6)Kapelle Ralph M. Siegel + +573428Jimmy PrattJazz drummerNeeds Votehttps://www.allmusic.com/artist/jimmy-pratt-mn0000074066/creditsJ. PrattPrattOrchester Roland KovacThe Charlie Parker QuintetThe Galactic Light OrchestraArmando Trovaioli E La Sua OrchestraBasso-Valdambrini OctetThe Oscar Pettiford QuartetHerb Geller QuartetItalian Jazz QuartetQuartetto Di Giorgio BurattiJimmy Pratt & His OrchestraJimmy Pratt E I Suoi Ritmi LatiniThe Jimmy Pratts GroupThe Tom Talbert Jazz OrchestraOscar Pettiford & FriendsThe Jimmy Pratt ComboTime Travellers (5)Piero Umiliani & His OctetDuo Franco Cerri + +573449Richard BooneRichard Bently BooneSinger and trombonist, born 23 February 1930 in Little Rock, Arkansas, died 8 February 1999 in Copenhagen, Denmark. + +Worked with artists like [a=Gerald Wilson], [a=Dexter Gordon] and [a=Della Reese] during the 1950's and 1960's. Was a member of [i]Count Basie[/i]'s orchestra from 1966 until 1969. Moved to Denmark in the early 1970's, where he would join the [i]Danish Radio Big Band[/i] from 1973 until 1985. Richard Boone has also made several recordings as a bandleader. +Needs Votehttps://adp.library.ucsb.edu/names/305041BooneDick BooneR. BooneRichard BoonCount Basie OrchestraDanish Radio Big BandDexter Gordon & OrchestraErnie Wilkins Almost Big BandThad Jones EclipseThe Richard Boone / Bent Jædig Quintet + +573556E.Y. HarburgIsidore HochbergBorn Isidore Hochberg (April 8, 1896 in Manhattan, New York, USA – March 5, 1981 in Los Angeles, California, USA) to immigrant Jewish parents on the Lower East Side of New York, his name was changed to Edgar Yipsel Harburg. He is also known under his nickname Yip Harburg, "Yipsel" meaning squirrel in Yiddish. He attended Townsend Harris High School, where he and Ira Gershwin worked on the school paper and became life-long friends. +After graduating from university, Harburg spent three years in Uruguay to avoid involvement in WWI, which he opposed as a committed socialist. There he worked as a factory supervisor. After the war he returned to New York, married and had two children and started writing light verse for local newspapers. He became co-owner of Consolidated Electrical Appliance Company. The company went bankrupt following the crash of 1929, leaving Harburg "anywhere from $50,000 - $70,000 in debt,". At this point, Ira Gershwin and Yip Harburg agreed that Yip should start writing song lyrics. +Gershwin introduced Harburg to Jay Gorney, who collaborated with him on songs for an Earl Carroll Broadway review: the show was successful and Harburg was engaged as lyricist for a series of successful reviews. +Harburg and Gorney were offered a contract with Paramount: in Hollywood, Harburg worked with composers Harold Arlen, Vernon Duke, Jerome Kern, Jule Styne and Burton Lane, and wrote the lyrics for The Wizard of Oz for which he won the Academy Award for Best Music, Original Song for Somewhere Over the Rainbow. +During the McCarthy era, from about 1951 to 1962, Yip Harburg was a victim of the Hollywood blacklist when movie studio bosses blacklisted industry people for their left-wing political activity. No longer able to work in Hollywood, he continued to write musicals for Broadway, among them was Jamaica, which featured Lena Horne.Needs Votehttps://yipharburg.com/https://en.wikipedia.org/wiki/Yip_Harburghttps://www.imdb.com/name/nm0361971/https://adp.library.ucsb.edu/index.php/mastertalent/detail/105161/Harburg_E._Y"Yip" Harburg'Yip' HarburgA. E. HarburgA. HarburgArburgBarburgD. HarburgD.Y. HarburgDuke HarburgE "Yip" HarburgE HarburE HarburgE Y HarburgE Y HargurgE,V. HarburgE. "Yip" HarburgE. & Y. HarburgE. A. HarburgE. G. HarburgE. HamburgE. HarbergE. HarbourgE. HarburgE. HearburgE. J. HarburgE. V. HarburgE. W. HarburgE. W: HarburgE. Y HarburgE. Y. HarburgE. Y. "Yip" HarburgE. Y. (Yip) HarburgE. Y. HamburgE. Y. HarbergE. Y. HarbourgE. Y. HarbugE. Y. HarburE. Y. HarburdE. Y. HarburgE. Y. YarbugE. Y. YoungE. Y. harburgE. YipE. Yip HarburgE. Yip HareburgE.-Y. HarburgE.ArburgE.HarburgE.J. HarburgE.K. HarburgE.T. HarburgE.V. HarburgE.W. HarburgE.X.HarburgE.Y HarburgE.Y. "Yip" HarburgE.Y. "Ylp" HarburgE.Y. "Yp" HarburgE.Y. 'Yip' HarburgE.Y. (Yip) HarburgE.Y. HamburgE.Y. HanburgE.Y. HarbaughE.Y. HarbergE.Y. HarbourgE.Y. HarbugE.Y. HarburE.Y. HarburdE.Y. HarbureE.Y. HarburugE.Y. HardburgE.Y. HargurgE.Y. HartbirghE.Y. HartburghE.Y. YarburgE.Y. YoungE.Y. “Yip” HarburgE.Y. „Yip” HarburgE.Y.HamburgE.Y.HarbaugE.Y.HarbureE.Y.HarburgE.Yip HarburgE.v. HarburgEHaburgEV HarburgEY HarburgEd 'Yip' HarburgEdagr Yip HarburgEdgar "YIP" HarburgEdgar "Yip" HamburgEdgar "Yip" HarbergEdgar "Yip" HarburgEdgar "Yipsel" HarburgEdgar 'Yip' HarburgEdgar ("Yip") HarburgEdgar <<Yip>> HarburgEdgar HarburgEdgar Y. HarburgEdgar Yip HarburgEdgar Yipsel "E.Y. Yip" HarburgEdgar Yipsel "Yip" HarburgEdgar Yipsel HamburgEdgar Yipsel HarburgEdgar Yipsel HardurgEdgar Yipset "Yip" HarburgEdgar Ypsel "Yip" HarburgEdgar Ypsel HarbourgEdgar Ypsel HarburgEdgar ”Yip" HarburgEdgard Yipsel "E. Y. Yip" HarburgEdward "Yip" HarburgEdward Y. HarburgEdward Yipsel HarburgEve HarburgEy HarburgEy. HarbugE・Y・ハーバーグF.Y. HarburgF.Y.HarburgH. HarburgH.Y. HarburgHaburgHaburghHaburyHagburgHamburgHanburgHarbHarbachHarbergHarbirgHarbirugHarborgHarbourgHarbrughHarbugHarbuggHarburHarburaHarburchHarburdHarburgHarburg - EYHarburg EHarburg E.Y.Harburg, E.Y.Harburg, Edgar YipselHarburg,E.YHarburg.HarburghHarburhHarburkHarburnHarburyHarbuyHargurgHarlbergHarmburgHartbergHartburgHayburgHerburgHorburgHurburgJ. HarburgMarburgO. HarburgOtto HarburgP.Y. HarburgStarburgW.Y. HarburgY. HarburgY. P. HarburgY. YoungYarbergYarburgYipYip HarbergYip HarbugYip HarburgYip HardburgYip HartburgYup HarburgharburgХагбургЭ. Харбургאי. ג'יי הרבורג + +573565Peter DaviesTrombonist. + +For the classical musician, please see [a=Peter Davies (3)].Needs Votehttps://www.linkedin.com/in/peter-davies-1b280667/http://www.trombone-usa.com/davies_peter_bio.htmhttps://www.imdb.com/name/nm2470225/Pete DaviesPeter DavisLondon Festival OrchestraLondon Classical Players + +573567Jonathan StrangeBritish classical violinist, active from 1970s.Needs VoteJohnathan StrangeJonathon StrangeJonathon StraqngeJonothan StrangeRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe Orchestra Of St. John'sThe Thames Chamber OrchestraThe Strange Quartet + +573568Helen KeenHelen KeenHelen Keen is a flautist born in Bromley, in 1956. She studied languages at Cambridge University, and was a member of the National Youth Orchestra from 1975 to 1977, before deciding to make music her career after being awarded a scholarship to Guildhall School of Music and Drama (which she attended from 1978 to 1979). She is a founding member of the Endymion Ensemble, and has performed with the Royal Philharmonic Orchestra, the London Mozart Players, the Orchestra of St. John’s and New London Orchestra. Helen has also appeared regularly with the London Sinfonietta, London Winds and the Nash Ensemble. As a session musician, Keen has played flute, piccolo, alto and bass flute and a range of ethnic instruments on a variety of film scores, including Over the Hedge, The Wind That Shakes the Barley, Volver, and Casino Royale.Needs Votehttps://rateyourmusic.com/artist/helen-keen/https://www.imdb.com/name/nm1676975/Royal Philharmonic OrchestraThe London OrchestraCapricorn (14)Ambache Chamber EnsembleMichaelangelo Chamber OrchestraHortus Ensemble + +573569Owen SladeBritish classical tuba player, and Professor of Tuba. Born in 1963 in Birmingham, England, UK. +He studied at the [l290263]. In 1986, he became a member of the [a=London Philharmonic Orchestra]. In 1997, he was appointed to the professorial staff of the RCM. Member of the [a=London Brass].Needs Votehttps://web.archive.org/web/20080509165434/http://www.owenslade.co.uk/https://www.rcm.ac.uk/Brass/professors/details/?id=01408https://www.imdb.com/name/nm1315871/https://www2.bfi.org.uk/films-tv-people/4ce2bcd4d69fbhttps://vgmdb.net/artist/13348London Symphony OrchestraLondon Philharmonic OrchestraLondon BrassRoyal Philharmonic OrchestraLondon Metropolitan OrchestraThe Fine Arts Brass EnsembleSongbook Brass EnsembleOrchestre de GrandeurThe Pale Blue Orchestra + +573571Sue BohlingSue BohlingPrincipal Cor Anglais and 2nd Oboe of the [a=London Philharmonic Orchestra].Needs Votehttp://www.suebohlingcases.co.uk/index.phpSue BöhlingSusan BohlingLondon Philharmonic Orchestra + +573572Richard Skinner (2)Classical woodwind / bassoon player.Needs Votehttps://www.imdb.com/name/nm2494979/The London Session OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-Fields + +573573Catherine BradshawBritish viola playerNeeds VoteCathy BradshawThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of London + +573621Iridium (5)Kirk WhettonHard Dance DJ & Producer based in Grantham, UK. Founder and label manager for [l=High Drive Recordings]. +Correcthttp://www.iridium-music.co.uk/http://www.myspace.com/xiridiumxhttp://www.facebook.com/pages/Iridium/32270928802?sk=wallhttp://soundcloud.com/iridium_musicIridumKirk WhettonSabre SawSouthern Sun (2) + +573647Pierre PorteNeeds Votehttps://films.discogs.com/credit/473874-pierre-porteP. PorteP.PortePorteピエール・ポルトPeter KeeneMayordomPierre Porte Et Son Grand Orchestre + +573702SaukkiNiilo Sauvo Pellervo PuhtilaOne of Sauvo Puhtila's pseudonyms.Needs VoteSauvo PuhtilaMerjaSolja TuuliVeikko VallasP. L. SaarinenPekka SaartoA. OjapuuTimjamiTikka (2)Pekka PeltoJukka TeräS. Salla + +573704Harry BergströmHarry Lennart Yrjö BergströmFinnish pianist, composer and conductor, born April 4, 1910 in Tampere, Finland: died on November 12, 1989 in Helsinki, Finland. He founded, and played in several popular Finnish bands and orchestras including [a=Metro-Tytöt] and [a=Kipparikvartetti]. He also composed music for numerous Finnish films. + +He used several pseudonyms: Gerald Beach, Harold G. Burgess, Leonard Fleuvemont, Sointu Karikas, Lenny, Jorge Monterio, Walther Coli and Tintti-Kalle. + +The composer [a=Matti Bergström] is his son, and his brother Rainer Bergström is a violinist. +Needs VoteBergströmBergström HarryBergstrømBerströmH. BergsrömH. BergströmH. BergstrømH.BergströmHarri BergströmL. FleuvemontLeonard FleuvemontSointu KarikasGerald BeachWalther Coli (2)Harold G. BurgessTintti-KalleFred Kiias OrchestraHarry Bergströmin OrkesteriRytmin Swing-TrioIloiset SoittoniekatHarry Bergströmin KvintettiHarry Bergströmin FilmiorkesteriHarry Bergströmin YhtyeHarry Bergströmin Swing-TrioHarry Bergströmin JousikvintettiHarry Bergströmin Trio + +573746Alan Jay LernerAmerican prolific lyricist and composer. +Born: 31st August 1918, New York City, NY - died: 14th June 1986, Manhattan, NY. +He made a lot of jazz standards with Frederick Loewe. Their first Broadway success was the 1947 musical fantasy "Brigadoon" which was translated to film in 1954. Lerner adapted work for the screen, and earned two Oscars as the screenplay writer for "An American In Paris" (1951) and "Gigi" (1958), and a Grammy for "On a Clear Day You Can See Forever". + +([b]Not to be confused with [a=Al Lerner]: composer, conductor and a long time pianist in [a=Harry James (2)] related orchestras; or [a=Sammy Lerner], songwriter for American and British musical theatre and film.[/b])Needs Votehttps://en.wikipedia.org/wiki/Alan_Jay_Lernerhttps://www.imdb.com/name/nm0503585/https://www.britannica.com/biography/Alan-Jay-LernerA -J. LernerA LernerA. -J. LernerA. I. LernerA. J. LearnerA. J. LernerA. Jay LernerA. JaylernerA. LernerA. R. LernerA. T. LernerA. lernerA.-J. LernerA.G. LernerA.J. LernerA.J. LonerA.J., LernerA.J.LernerA.J.ラーナーA.Jay LernerA.L. LernerA.LernerAJ LernerAl LernerAlain Jay LernerAlan Day LernerAlan J LernerAlan J. LarnerAlan J. LernerAlan J.LernerAlan Jan LernerAlan Jay LennerAlan Jay LerenerAlan Jay LerrerAlan JaylernerAlan Joy LarnarAlan LernerAllan J. LernerAllan Jay LernerAllan LernerAllen J. LernerAllen J. LerneyAllen Jay LernerAllen LernerJ. LernerJayJay LernerJay-LernerL. JayL. LernerLearnerLemerLenerLennerLerLernerА. Дж. ЛернерЛернерאלאן ג'אי לרנרLerner & Loewe + +574009René ZossoRené Zosso (15 April 1935 — 31 July 2020) was a Swiss vielle player (hurdy gurdy) and vocalist specialized in medieval music.Needs Votehttp://www.musiqueabourdon.ch/R. ZossoRene ZossoRenée ZossoZossoClemencic ConsortHespèrion XX + +574185Tommy Lopez, Sr.Tomás LópezPuerto Rican born Latin music percussionist (mainly congas), based in New York, USA, and retired from music industry in the 1980s, generally appears as Tommy Lopez, he is also known as Tommy "Bacum" Lopez or "Mano de Hierro", (1931 - 10 Mar. 2008), he is the father of [a1651864]Needs Votehttp://www.herencialatina.com/Tommy_Lopez/Tommy.htmhttps://www.congahead.com/legacy/On_The_Scene/tommylopez07/index.htmlDon LopezLopezTommy "Bacum" LopezTommy LopezTommy LópezLatin Jazz QuintetEddie Palmieri And His OrchestraStan Kenton And His OrchestraThe Alegre All StarsTito Rodriguez & His OrchestraAfrocuban BoysCharlie Palmieri And His Charanga "La Duboney"Zoot Sims And His OrchestraOrquesta Tipica IdealArt Farmer And His OrchestraThe Kenny Burrell OctetEddie Palmieri And His Conjunto "La Perfecta"Vicentico Valdes Y Su Orquesta + +574372Bart ArensBart ArensDutch radio DJ (Lisse, March 2, 1978) who started as producer. Started to work in 2003 for Dutch national radio station 3FM. Currently works at NPO Radio 2.Needs Votehttp://www.bartarens.comhttps://twitter.com/BartRadio2B. ArendsB. ArensB.ArendsB.ArensBart Arendsb. arensClub CaviarLiquid DJ TeamMass MediumDJ AlphaH.I.P. + +574682Sian McInallySiân McInallyClassical violinistNeeds VoteSiân McInallyRoyal Philharmonic Orchestra + +574914Adolph GreenAmerican lyricist and playwright, born December 2, 1914 in The Bronx, New York, USA, died October 24, 2002 in New York City, New York, USA. He was married to [a=Allyn Ann McLerie] from 1945 to 1953. His third wife was [a=Phyllis Newman], they were married from 1960 until his death. + +He is best known for his contributions to Broadway musicals and Hollywood movies together with [url=http://www.discogs.com/artist/Betty+Comden]Betty Comden[/url]. + +He charted as a songwriter ten times in the U.S. and U.K. between 1956 and 2011, all with Betty Comden & Jule Styne as co-writers. In the U.K., he reached #9 with "The Party's Over" by Lonnie Donegan in 1962. In the U.S., his highest charted song was "Dance Only with Me" by Perry Como in 1958; it reached #19. He also co-wrote "Just in Time" by Tony Bennett, which charted to #46 in 1956.Needs Votehttps://en.wikipedia.org/wiki/Adolph_Greenhttps://www.imdb.com/name/nm0337582/https://adp.library.ucsb.edu/index.php/mastertalent/detail/318790/Green_AdolphA GreenA. GreenA. GreeneA. GrenA.GreenA: GreenAdam GreenAddph GreenAdolf GreenAdolp GreenAdolphAdolphe GreenAl GreenCreemG. GreenGreeenGreenGreen A.Green-GreeneJ. GreenА. ГринГринBetty Comden And Adolph GreenThe Revuers + +574915Betty ComdenElizabeth CohenAmerican songwriter, author and actress +Born: 3 May 1917 in New York City, NY, USA +Died: 23 November 2006 in the New York Presbyterian Hospital, Manhattan, NY, USA + +She was one-half of the musical-comedy duo Comden and Green, Betty Comden provided lyrics, libretti, and screenplays to some of the most beloved and successful Hollywood musicals and Broadway shows of the mid-20th century. Her writing partnership with [a=Adolph Green] lasted for six decades. She wrote the Broadway stage scores for "Wonderful Town" (which garnered a Tony award from the Broadway League and the American Theatre Wing in 1953), "Peter Pan", and "Do Re Mi". + +She charted as a songwriter ten times in the U.S. and U.K. between 1956 and 2011, all with Adolph Green & Jule Styne as co-writers. In the U.K., she reached #9 with "The Party's Over" by Lonnie Donegan in 1962. In the U.S., her highest charted song was "Dance Only with Me" by Perry Como in 1958; it reached #19. She also co-wrote "Just in Time" by Tony Bennett, which charted to #46 in 1956. She was inducted into the Songwriters Hall of Fame in 1980. +Needs Votehttps://en.wikipedia.org/wiki/Betty_Comdenhttps://www.imdb.com/name/nm0173679/https://adp.library.ucsb.edu/names/309294B ComdenB. CamdenB. ComdemB. ComdenB. ComdonB. ComoenB. OomdenB., ComdenB.ComdenBernsteinBette ComdenBetty CamdenBetty CombenBetty ComdinBetty ComdonCamdenCombdenComdenComden B.ComdonComptonCondemCondenCondonGomdenБ. КалденКомденКомдэнP. CondenBetty Comden And Adolph GreenThe Revuers + +575045Fritz WunderlichFriedrich Karl Otto WunderlichGerman tenor. + +He was born 26 September 1930 in Kusel, Germany and died 17 September 1966 in Heidelberg, Germany. + +Needs Votehttp://www.fritz-wunderlich-ges.com/https://de.wikipedia.org/wiki/Fritz_WunderlichF. WunderlichF. Wunderlich, TenorFr. WunderlichWunderlichФриц Вундерлихフリッツ・ヴンダーリッヒWerner S. Braun + +575046Rita StreichRita StreichGerman coloratura and soubrette soprano, born 18 December 1920 in Barnaul, Russian Empire, died 20 March 1987 in Vienna, Austria.Needs Votehttps://en.wikipedia.org/wiki/Rita_Streichhttp://www.steffi-line.de/archiv_text/nost_buehne2/03st_streich.htmPepi Pleiniger (Mannequin): Rita StreichR. StreichRita Streich, SopranStreichР. ШтрайхРита Штрайхリタ・シュトライヒ + +575271Howard GreenfieldUS Songwriter, March 15, 1936 – March 4, 1986, most successful from 1950s-1970s. Born in Brooklyn, NY, he is best known for his writing collaborations with [a=Neil Sedaka] and [a=Jack Keller]. Hits include "Breaking Up Is Hard To Do", "Oh Carol!", "Love Will Keep Us Together" and "Is This The Way To Amarillo". Mr. Greenfield was inducted into the Songwriters Hall of Fame in 1991.Needs Votehttps://www.songhall.org/profile/Howard_Greenfieldhttp://en.wikipedia.org/wiki/Howard_GreenfieldBreenfield HowardFieldsG. GreenfieldGarfieldGeenfieldGreanfieldGreenGreen FieldGreenFieldGreenawayGreenfeldGreenfielGreenfieldGreenfield HowardGreenfield, HGreenfield, HowardGreenfield-GGreenfieldsGreenfielsGreenfildGreenfiledGreenhillGreensfieldGreensieldGreenwoodGreerfieldGreeufieldGrenfieldGrennfieldGrensfieldGrienfeldH GreenfieldH GrenfieldH' GreenfieldH. FrentieldH. GeenfieldH. GreenefieldH. GreenfeildH. GreenfeldH. GreenfieldH. GreenfieldsH. GreenfielsH. GreengilldH. GreensieldH. GrienfildH. グリンフィールドH. グリーンフィールドH.Green FieldH.GreenfieldHaward GreenfieldHoward - GreenfieldHoward GeenfieldHoward GreenHoward GreenburgHoward GreeneHoward GreeneldHoward GreenfielHoward GreenfieldsHoward GreenfliedHoward GreensfieldHoward GrenfildHoward GrennfieldHoward-GreenfieldHowie GreenfieldJ. GreenfieldM. GreenfieldN. GreenfieldO. GreenfieldT. GreenfieldГ. Гринфильдハワード・グリーンフィールドGreenfield & SedakaBuchanan and Greenfield + +575479Gordon PolkGordon Leroy Polk.American singer, actor, percussionist, and later ordained minister. Needs Votehttp://www.findagrave.com/memorial/7302908/gordon-leroy-polkhttp://www.sutor.org/GoldStandard/AlbumPages/AlbumsSet01/GordonPolk.html (website no longer active)Gorden PolkHarry James And His OrchestraThe Town Criers (5) + +575480Bill ChallisWilliam H. Challis.American jazz arranger and composer. + +Born : July 08, 1904 in Wilkes Barre, Pennsylvania. +Died : October 04, 1994 in Luzerne, Pennsylvania. +Needs Votehttps://adp.library.ucsb.edu/names/108795B. ChallisChallisH.W. ChallisW. H. ChallisW.H ChallisW.H. ChallisWilliam ChallisWilliam H. ChallisWilliam H. Challis.Paul Whiteman And His OrchestraBill Challis Orchestra + +575554Angelina RéauxAmerican soprano vocalist, born in Houston, Texas. Trained as an actress and a classical singer, she is a noted interpreter of the music of [a=Kurt Weill].CorrectAngelina ReauxRéaux + +575721Véronique MarcelFrench violinist.CorrectVéronique Marcel-PapillonVéronique MarcelleVéronique Papillon MarcelOrchestre National De L'Opéra De Paris + +575764Joshua BellJoshua David BellAmerican violinist, and conductor. +Born December 6, 1967 in Bloomington, Indiana, USA.Needs Votehttps://en.wikipedia.org/wiki/Joshua_Bellhttps://www.joshuabell.com/https://web.archive.org/web/20031004091354/https://www.sonyclassical.com/artists/bell/https://www.sonyclassical.com/artists/artist-details/joshua-bell-1https://www.youtube.com/user/joshuabellmusichttps://www.twitter.com/JoshuaBellMusichttps://www.facebook.com/joshuabellviolinist/https://www.instagram.com/joshuabellmusic/BellJ. Bellジョシュア・ベル約夏貝爾約夏.貝爾The Academy Of St. Martin-in-the-Fields + +575890Duncan RiddellDuncan RiddellClassical violinist. Former leader of the [a835739] and the [a271875].Needs VoteDuncan RidellLondon Philharmonic OrchestraRoyal Philharmonic OrchestraBournemouth Symphony Orchestra + +575947Michael PriceAmerican songwriter Michael Price, aka [a=Harvey Price] as he was initially credited. Later credits appear as Michael Price, which the artist prefers. Best known as songwriting partner of [a=Dan Walsh], together the duo wrote numerous songs together, including many hits for [a323533], the duo credit "Temptation Eyes" as their favorite. A compilation CD "Temptation Eyes: Price and Walsh Songbook" was released in 2006 on the [l=Rev-Ola] label. +Needs VoteH. PriceHarley PriceM PriceM. PriceM. PriceM. PrinceM.PriceMichael Alan PriceMicheal PriceMichel PriceMike PriceP. PricePricePrice M. WalshPrinceHarvey PriceThe MotleysPrice & Walsh + +576013Spencer Williams (2)Spencer WilliamsAmerican jazz and popular music composer, pianist, vocalist born October 14, 1889 in New Orleans, Louisiana and died July 14, 1965 in Flushing, New York. Worked with Fats Waller, Benny Carter, Lonnie Johnson, Teddy Bunn and others.Needs Votehttp://en.wikipedia.org/wiki/Spencer_Williamshttp://www.allmusic.com/artist/p138553http://www.riverwalkjazz.org/jazznotes/spencerwilliams/https://www.songhall.org/profile/Spencer_Williamshttps://adp.library.ucsb.edu/names/102863(Spencer) WilliamsA. WilliamsApencer WilliamsC WilliamsC. G. S. WilliamsC. WilliamsCl. WilliamsClarence WilliamsE. WilliamsF. WilliamsG. WilliamsGrahamJ. WilliamsP. WilliamsPencer WilliamsS WilliamsS, WilliamsS. WIlliamsS. WiliamsS. WillamsS. WilliamS. William'sS. WilliamsS. WilliansS. WillisS. ウィリアムズS.M. WilliamsS.SpencerS.WIlliamsS.WilamsS.WilliamsSp. & A. WilliamsSp. A. WilliamsSp. WiliamsSp. WilliamsSpemcer WilliamsSpence WilliamsSpencerSpencer &Spencer & WilliamsSpencer - WilliamsSpencer / WilliamsSpencer VilliamsSpencer W.Spencer WiliamsSpencer WilliamSpencer WilliamesSpencer WilliamnsSpencer WmsSpencer – WilliamsSpencer, WilliamsSpencer-WilliamsSpencer/WilliamsSpenser WilliamsStencer - WilliamsSteve WilliamsV. WilliamsW SpencerW.W. SpencerW. WilliamsWIlliamsWiilaimsWiliamsWillaimsWillamsWilliamWilliam SpencerWilliamsWilliams , SpenzerWilliams - WilliamsWilliams Sp.Williams SpencerWilliams, SpencerWilliams-SpencerWilliams-WilliamsWilliams/SpencerWilliamsonWilliansWillinsWillliamswilliamsС. ВильямсС. УильямсС. УйлямсУильямсFreddy Johnson & His OrchestraClarence And Spencer Williams + +576026David ZinmanAmerican conductor and artistic director, born 10 July 1936 in New York, USA. [a8551878] chief conductor (1995–2014).Needs Votehttps://web.archive.org/web/20200820042538/http://www.davidzinman.org/https://www.lindamarks.co.uk/davidzinmanhttps://www.facebook.com/davidzinmanmusiceducationhttps://x.com/DavidZinmanhttps://www.youtube.com/user/davidzinmanmusichttps://en.wikipedia.org/wiki/David_ZinmanD. ZinmanDave ZinmanDavid FinmanDavid ZihmanDavid ZimmanDavid ZinmannZinmanД. ЗинманДавид ЦинманДэвид Цинманデヴィット・ジンマンデヴィッド・ジンマン + +576325Jonathan ByersJonathan ByersIrish cellist born in Belfast and graduated from the Royal Academy of Music, London in 2002 before going on to complete a 2 year postgraduate course. Needs Votehttps://www.badkequartet.co.uk/jonathan-byers/Johnny ByersJonny ByersJonny ByresGabrieli PlayersThe Badke QuartetLondon Contemporary OrchestraIrish Baroque OrchestraMarylebone CamerataThe English ConcertThe MozartistsBenedetti Baroque Orchestra + +576350Forrest BuchtelForrest Lawrence Buchtel, Jr.Retired American trumpet and flugelhorn player. +Born about 1939 in Evanston, Illinois, USA.Needs Votehttps://www.linkedin.com/in/forrest-buchtel-5b51a337/http://www.jorgenand.se/bst/bst_stor.html#buchtelhttps://waitehumphreysfamily.com/getperson.php?personID=I522239&tree=Master1https://www.ancestry.com/1940-census/usa/Illinois/Forrest-Lawrence-Buchtel_4w4mkchttps://www.trumpetherald.com/forum/viewtopic.php?p=1153849https://es.wikipedia.org/wiki/Forrest_BuchtelBuchtelF. BuchtelF. L. BuchtelForest BuchtelForest BuchtellForrest BuchtellForrest ButchtelForrest L. BuchtelForrest L. BuchtellForrest LutchellBlood, Sweat And TearsWoody Herman And His OrchestraJaco Pastorius Big BandWoody Herman And The Thundering Herd + +576420William PurvisAmerican conductor and French horn player, born 1948 in Western Pennsylvania, USA.CorrectPurvisWilliam W. PurvisOrchestra Of St. Luke'sSpeculum MusicaeOrpheus Chamber OrchestraMozzafiatoNew York New Music EnsembleThe Prism OrchestraNew York Woodwind QuintetSmithsonian Chamber OrchestraThe Chamber Music Society Of Lincoln CenterAmadeus WindsSt. Luke's Chamber EnsembleBrewer Chamber OrchestraThe Liberty Tree Wind PlayersNew World Chamber Ensemble + +576552Léo ChauliacLéon Louis Marius ChauliacFrench jazz pianist, born 6 February 1913 in Marseille; died 27 October 1977 in Paris. Worked extensively with Charles Trenet. In 1961, he arranged and conducted Luxembourg's winning Eurovision entry, 'Nous les amoureux' by Jean-Claude Pascal.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/03/leo-chauliac.htmlhttps://adp.library.ucsb.edu/names/356840ChauliacChaultacJ. ChauliacL. ChauliacL. ChaulliacL.ChauliacL.L. ChauliacLeo ChauliacLeon ChauliacLeon ChaullacLeon LouisLeon Louis Marius ChauliacLéo ChaulacLéo ChaulliacLéo ChouliacLéon CauliacLéon ChauliacLéon ChaulliacLéon L. M. ChauliacLéon Louis Marius ChauliacMarius LouisLee Wilson (5)Quintette Du Hot Club De FranceAlix Combelle Et Son OrchestreLéo Chauliac Et Son OrchestreDjango's MusicNoel Chiboust Et Son OrchestreThe Air Transport Command BandEnsemble Lasry-ChauliacLéo Chauliac Et Son EnsembleLéo Chauliac Et Ses RythmesAll Star Français 1950Claude Laurence Et Son OrchestreMarcel Bianchi Et Les Cinq BoogiesQuintette Léo ChauliacLéo Chauliac Et Ses SolistesLéo Chauliac Et Ses Limonaros + +576602Lennart NordSwedish classical tubistNeeds VoteLennartSveriges Radios SymfoniorkesterKungliga HovkapelletStockholm Chamber BrassDas Ludwigsburger BlechbläserquintettOktetten KronanKungliga Livgardets Dragoners Trumpetarkår + +576630Roger PierreFrench comic actor, born August 30, 1923 in Paris, France, died January 23, 2010 in Paris, France. +CorrectPierrePierre RogerR. PierraR. PierreRoger-PierreRoger Pierre Et Jean-Marc ThibaultLes Grosses Têtes + +576808Richard HarwoodBritish cellist, born 8 August 1979 in Portsmouth, England, UK.Needs Votehttp://www.richardharwood.com/https://www.youtube.com/c/RichardHarwoodCellistRichard HardwoodRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraThe London Recording OrchestraMarylebone CamerataI Musicanti (3) + +576809Gavin HorsleyBritish bass vocalistNeeds VoteLondon Voices + +576810Pieter SchoemanSouth African violinist and conductor.Needs VoteLondon Philharmonic Orchestra + +576913Louise HoganClassical string instrumentalistNeeds VoteDirty Pretty StringsI FagioliniThe King's ConsortNew Dutch AcademyThe English ConcertRetrospect EnsembleThe MozartistsBenedetti Baroque Orchestra + +577004Alan DeVeritchViola player.Needs VoteA. DeVeritchA. DeVertichA. deVeritchAlan B. De VeritchAlan B. DeVeritchAlan B. deVertichAlan De VentchAlan De VeritchAlan De VertichAlan De YeritchAlan DeVaritchAlan DeVerichAlan DeVertitchAlan DeVreitchAlan DeueritchAlan DeverichAlan DeveritchAlan de VeritchAllan DeVeritchAllan DeveritchAllen De VeritchDe Veritch Alan B.Los Angeles Philharmonic OrchestraAn Die MusikThe Miraflores Quartet + +577006Mary Louise ZeyenMary Louise Zeyen (1926 - 14 March 2013) was an American cellist and cello teacher. She was the sister of [a2445433].Needs VoteLouise Mary ZeyenLouise ZeyenMary L. ZeyenMary ZeyenZeyen MaryLos Angeles Philharmonic Orchestra + +577010Nan O'ByrneAmerican songwriter and composerCorrectByrneM. O'ByrneN O'BryrneN O'ByrneN. O' ByrneN. O'BrienN. O'BryneN. O'ByrneN. O'Byrne.N. ObyrneN.O'ByrneN.O. 'ByrneNan ByrneNan O ByrneNan O'BryneNan O'BurnO'BryneO'ByrneO'byrneO. ByrneObyrne + +577101Bengt HallbergSwedish jazz pianist, accordion player, composer and arranger, born September 13, 1932 in Göteborg, Sweden, died July 02, 2013 in Uppsala, Sweden. + +At 13 he wrote his first jazz arrangement. He recorded with [a794883], [a30486], [a259082] and [a17546] early in his career and performed (for many years) with [a1371065]. Composed for film and television productions. + +He married the soprano singer [a2496438] in 1955, though the couple later divorced.Needs Votehttps://www.theguardian.com/music/2013/aug/07/bengt-hallberghttps://www.allaboutjazz.com/musicians/bengt-hallberg/https://www.imdb.com/name/nm0356303/http://en.wikipedia.org/wiki/Bengt_Hallberghttps://sv.wikipedia.org/wiki/Bengt_HallbergB HallbergB HallebergB. HallbergB.HallbergBengt HalbergBengt HalibergBert HallbergHallbergベングト・ハルバーグBengt LaxeauRudolph MuleBengt Göte BorgStan Getz QuartetStan Getz QuintetThe Swedish All StarsTeddy Greys OrkesterBengt Hallberg TrioRadiojazzgruppenBengt Hallberg QuartetBengt Hallbergs OrkesterArne Domnérus SextettKenneth Fagerlunds OrkesterLars Gullin SeptetLars Gullin QuartetHarry Arnold & His Swedish Radio Studio OrchestraKenneth Fagerlunds KvintettTrio Con TrombaAnders Burmans KvintettKenneth Fagerlunds TrioGösta Theselius And All StarsOve Linds SextettOve Lind QuartetArne Domnérus KvartettBengt Hallberg And His Swedish All StarsLeonard Feather's Swinging SwedesÅke Persson And His ComboJimmy Raney All StarsBengt Hallberg EnsembleBengt Hallbergs SextettThe Favourite Soloists 1951Swedish Swing SocietyRolf Ericsons OrkesterBengt Hallberg/Red Mitchell DuoRolf Billberg-Hacke Björksten QuintetBengt Hallberg And His Quintet + +577163Susan PalmaSusan Palma-NidelPrincipal flutist of the [b]American Composers Orchestra[/b] and [b]Speculum Musicae[/b]. Since 1973 Ms. Palma-Nidel has been the flutist of the [b]North Country Chamber Players[/b].Needs Votehttp://www.susanpalmanidel.com/https://www.instagram.com/susanpalmanidel/https://www.youtube.com/channel/UC7OTpkuYDeEZRObNDX-9ajASusan L. PalmaSusan Palma NidelSusan Palma-NidelSusan Palma-NidelAmerican Composers OrchestraSpeculum MusicaeOrpheus Chamber Orchestra + +577646Kenny HingKenneth Allen HingJazz saxophonist, clarinetist and flutist. b October 25, 1935 in Portland, OR, d. 19 February 2019, Tigard, OR +Needs VoteKen HingKenneth A. "Kenny" HingKenneth HingKenny HinoKenny KingCount Basie OrchestraThe Tommy Vig OrchestraBuck Clayton And His Swing Band + +577647Bob OjedaAmerican trumpet player, composer and arranger. Born 1 Sep 1941 in Austin, TX, United States. Died on 26 Mar 2020 in Elmhurst, IL, United StatesNeeds Votehttp://www.bobojedamusic.com/index.htmlhttps://en.wikipedia.org/wiki/Bob_Ojeda_(musician)Bob O'jedaBob WojadaBobby OjedaOjedaRobert "Bob" OjedaRobert OjedaCount Basie OrchestraLes Hooper Big BandSeventh Avenue (4)Grover Mitchell's New Blue Devils + +577649Dennis MackrelAmerican drummer, conductor, composer and arranger, born 3 April 1962 in Omaha, Nebraska, USANeeds Votehttp://dennismackrelmusic.com/D. MackrelDenis MackrelDennis MackarelDennis MackrellMackrelMackrel, D.Count Basie OrchestraJazz Orchestra Of The ConcertgebouwThe American Jazz OrchestraMaria Schneider OrchestraThe Frank Wess OrchestraBill Charlap TrioUnlv Jazz EnsembleDizzy Gillespie All-Star Big BandGrover Mitchell's New Blue DevilsThe Carla Bley Big BandBuck Clayton And His Swing BandThe Inside Out Jazz CollectiveHarry Allen QuartetThe Randy Sandke QuartetEsbjerg / Jefsen 4-tetThe Michael Moriarty QuintetMarvin Stamm/Mike Holober QuartetThe Dizzy Gillespie™ Alumni All-Star Big BandCologne Jazz Quartet + +577650Clarence BanksAmerican jazz trombone player, born in Englewood, NJ. He started playing trombone professionally in high school and after graduating from Fairleigh Dickinson University with a BA in music education, he went on to recorded with Slide Hampton and his World of Trombones. He has worked with artists such as Dizzy Gillespie, Frank Sinatra, Aretha Franklin, James Brown, the Four Tops, and the Temptations. + +Currently, he is a member of the Count Basie Orchestra, and was the last musician to join the band while Mr. Basie was still alive. +Needs VoteClarence L. BanksCount Basie OrchestraLabamba's Big BandNancie Banks Orchestra + +577808Tullio SerafinTullio SerafinTullio Serafin (September 1, 1878 - February 2, 1968) was an Italian conductor of opera. During his career, he conducted more than 240 operas. He is also considered as discoverer and patron of operatic star [a290601].Needs Votehttps://www.imdb.com/name/nm0784790/?ref_=fn_al_nm_1https://en.wikipedia.org/wiki/Tullio_SerafinJullio SerafinM⁰ Tullio SerafinSerafinT. SerafinT. SerafinoT.SerafinTulio SerafinTullio SefafinTullio SerafiniTullio SertaenTullo SerafinТ. СерафинТуллио Серафинトゥリオ・セラフィン賽拉芬 + +577812Umberto GiordanoUmberto Menotti Maria GiordanoItalian composer (* 28 August 1867 in Foggia, Italy; † 12 November 1948 in Milan, Italy). +Needs Votehttp://en.wikipedia.org/wiki/Umberto_Giordanohttps://operone.de/komponist/giordano.htmlhttps://adp.library.ucsb.edu/names/102526A. ĐordanoDjordanoFlotowGIordanoGiardanoGiodanaGiodanoGiordaniGiordanoGiordano, UmbertoGirodanoGordanoLeoncavalloU. GiordanoU. DžordanasU. GiordanoU.GiordanoUmbero GiordanoUmberto GiordanaV. GiordanoДжиорданоДжорданоУ. ГиорданоУ. ДжиорданоУ. ДжорданоУ.ДжорданоУмб. ДжорданоУмберто Джорданоウンベルト・ジョルダーノジョルダーノ + +577854Trevor Williams (2)Trevor James WilliamsTrevor Williams (born 10 February 1929, London, England – died 11 May 2007) was a British violinist and professor at the Royal Academy of Music and at North Carolina University.Needs Votehttps://en.wikipedia.org/wiki/Trevor_Williams_(violinist)T. WilliamsT.WilliamsTrevor Williams And His StringquartetThe London Chamber OrchestraAeolian String QuartetBath Festival OrchestraHaffner String Quartet + +578204Christoph NiemannGerman bassist (classical / jazz), born 1953 in Berlin, GDR.Needs Votehttp://www.deutscheoperberlin.de/de_DE/ensemble/christoph-niemann.43093#FEZ (4)Rundfunk-Sinfonieorchester BerlinOrchester Der Deutschen Oper BerlinMacky Gäbler QuartettJazz-Werkstatt-OrchesterBigBand Deutsche Oper BerlinDuo Tedesco BerlinTriologic + +578492Kazimierz KordPolish conductor. Born on November 18, 1930 in Kraków, died in April 2021.Needs Votehttps://en.wikipedia.org/wiki/Kazimierz_Kordhttps://pl.wikipedia.org/wiki/Kazimierz_KordK. KordK.KordKamzmierz KordKasimierz KordKasimir KordKaszimierz KordKaziemierz KordKazimerz KordKazimier KordKazimierez KordKazimiers KordKazmierz KordKaźimierz KordKordКазимеж КордКордカジミエシュ・コードSinfonieorchester Des SüdwestfunksOrkiestra Symfoniczna Filharmonii Narodowej + +578524Guy Fletcher (2)Mervyn Guy FletcherBritish producer, songwriter, musician born 21 April 1944 in Saint Albans, Hertfordshire, England, UK. Known for his successful collaborations with [a=Doug Flett] with whom he partnered in [l2322067]. + +Father of [a=Justin Fletcher (2)]. Brother of [a=Ted Fletcher] and brother-in-law of [a=Barbara Fletcher]. Uncle of Ted & Barbara's son [a=Guy Fletcher].Needs Votehttp://www.guyfletcher.com/https://en.wikipedia.org/wiki/Guy_Fletcher_(songwriter)FletcherFletcher, G.FletecherFletoherFletscherG FletcherG. FlecherG. FletcherG. FletscherG.FletcherGuyGuy FlechterGuy FletcherGuy FletchersGuy FletzherM. G. FletcherM. Guy FletcherM.G. FletcherMervyn Guy FletcherГ. ФлечерKit HillRogue (4)Fletcher & FlettBrother SusanThe CameosThe Fletchers + +578719Ludwig GüttlerGerman trumpet and corno da caccia virtuoso, conductor and musicologist, born 13 June 1943 in Sosa, Germany. +Officer (OBE) - Order of the British Empire. +Needs Votehttp://www.guettler.com/https://de.wikipedia.org/wiki/Ludwig_GüttlerGüttlerL. GüttlerLudwig GuttlerLüdwig GüttlerProf. Ludwig GüttlerЛ. ГюттлерЛюдвиг ГюттлерNeues Bachisches Collegium Musicum LeipzigDresdner PhilharmonieVirtuosi SaxoniaeLeipziger Bach-CollegiumTrompetenensemble Ludwig GüttlerBlechbläserensemble Ludwig Güttler + +578724Michael EckholdtGerman classical violinistNeeds VoteStaatskapelle Dresden + +578727Robert SchumannRobert Alexander SchumannBorn: 1810-06-08 (Zwickau, Kingdom of Saxony) At present Zwickau, Germany. +Died: 1856-07-29 (Bonn, Rhine Province, Prussia) At present Endenich, Bonn, Germany. +German composer and influential music critic. +He is widely regarded as one of the greatest composers of the Romantic era. He left the study of law, intending to pursue a career as a virtuoso pianist. +Married to [a=Clara Schumann].Needs Votehttps://www.schumann-portal.dehttps://en.wikipedia.org/wiki/Robert_Schumannhttps://www.famouscomposers.net/robert-schumannhttps://www.britannica.com/biography/Robert-Schumannhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101855/Schumann_RobertA. SchumannB. SchumannE. SchumannEkert (Robert Schumann Pseudonym)F. SchumannFranz SchumannH. SchumannKirill KondrashinLisztM. SchumannP. ШуманP.ШуманаR SchumannR, SchumannR. SChumannR. SchuhmannR. SchulmanR. SchumanR. SchumannR. Schumann)R. SchumannasR. ScumannR. ShcumannR. ShumanR. ShumannR. ŠubertasR. ŠumanR. ŠumanasR. ŠūmanisR. ŠūmansR. シューマンR.. SchumannR.A. SchumannR.SchumannR.SchumannmR.ShumannR.シューマンR: SchumannRob. SchumannRobertRobert (Alexander) SchumannRobert A. SchumannRobert Alexander SchumannRobert SchuhmannRobert SchumanRobert Schumann AlexanderRobert SchummanRobert ShumannRoberto SchumannRoberts ŠūmanisRobt. SchumannR・シューマンSchubertSchuhmannSchumanSchumannSchumann (Robert Alexander)Schumann R.Schumann RobertSchumann Robert AlexanderSchumann'sSchumann, R.Schumann, RobertSchumannnShumanShumannschumΣούμανВ. ШуманР. ШуманР. ШуманР. ШуманаР.ШуманРоберт Александр ШуманРоберт ШуманРоберта АлександерШуманШуман Р.Шуман Роберт АлександрШуманаШуманнШуманъシューマンロべルト・アレクサンダー・シューマンロバート・シューマンロベルト・シューマンロベルト・シューマンローベルト・シューマン修曼舒曼 + +578728Eckart HauptGerman flutist and professor at the Dresdner Musikhochschule. He was born 1945 in Zittau, Germany.Needs Votehttp://www.eckart-haupt.de/Eckardt HauptEckhardt HauptEckhart HauptStaatskapelle DresdenDresdner BarocksolistenDresdner PhilharmonieVirtuosi SaxoniaeKammerorchester Carl Philipp Emanuel Bach + +578730Marie-Claire AlainMarie-Claire AlainFrench organist and organ teacher, born 10 August 1926 in Saint-Germain-en-Laye, France, died 26 February 2013. +Daughter of composer/organist [a1399843], sister of musicologist [a986213] and composer/organist [a1075900].Needs Votehttps://en.wikipedia.org/wiki/Marie-Claire_Alainhttps://www.bach-cantatas.com/Bio/Alain-Marie-Claire.htmhttps://www.allmusic.com/artist/marie-claire-alain-mn0000045429/biographyAlainM. C. AlainM. Cl. AlainM.-C. AlainM.-C. AlainM.C. AlainMaire-Claire AlainMarie - Claire AlainMarie Claire AlainМари Клер Аланマリー=クレール・アランマリー=クレール・アランOrchestra Del Teatro Comunale Di BolognaI Solisti VenetiOrchestre De Chambre Jean-François Paillard + +578734Maurice AndréMaurice AndréWorld-renowned and influential French classical trumpeter. Best known for his recordings of Baroque works done in the 1960s and 1970s, he has released over 300 recordings to date. +(born: May 21th, 1933 in Alès, France - died: February 25th, 2012 in Bayonne, France) + +Maurice André was born in Alés, close to the mining area of the Cevennes in 1933. He became a miner at the age of fourteen and began studying the trumpet and made very rapid progress.While still in the first year at the [url=https://www.discogs.com/label/1014340-Conservatoire-National-Sup%C3%A9rieur-De-Musique-Et-De-Danse-De-Paris]Conservatoire National de Musique[/url] in Paris he was awarded the Honorary First Prize for the Horn. In the following year he obtained the First Prize for the Trumpet. Maurice André later received the First Prize in the Munich International Competitions, entering upon a amusical career which took him to Germany where he was very warmly received. He travelled to England and Scandinavia and afterwards to North and South America. He has since travelled throughout the world. His early orchestral posts were with the [a448007] (1953-1960), the [a=Orchestre Radio - Symphonique De Paris]/[a=Orchestre Philharmonique De Radio France] (1953-1960/1960-1962), and the [a3348123] (1962-1967). + +He was appointed professor at the Conservatoire National Supérieur in Paris in 1967. The long series of works that Maurice André has recorded for [l=Erato] are by 17th & 18th century composers. Modern composers also wrote works with him in mind, having been struck by the remarkable mastery of his instrument and his impeccable style and ability. He has received many Prix du Disque in France. In Germany, the Berlin Schallplattenpreis was awarded to him, a tribute to the esteem with which he is held in that country. + +Harry Halbreich has written: "[i]Maurice André incarnates the trumpet! There is an indissoluble link between the rugged golden red appearance of this happy, thickset southerner who sprang from within a mine to a glorious future at lightning speed. At the age of 36 he receives invitations to play from every corner of the globe. The ease with which he plays and his legendary virtuosity are perfectly matched with his wide musical knowledge. His trumpet sings as delicately as a violin note. He has acquired a repertoire which had the great composers of the past had the honour of meeting him, would have been more extensive than it is. His ability is astonishing since he is quite capable of matching up to the acrobatc demands of the Hummel Concerto. He is just as much at ease when playing the classical repertoire as he is when confrontened with a modern work.[/i]" + +Father of [a1952580], [a5253751], and [a4858269]. Older brother of [a3412950].Needs Votehttp://www.maurice-andre.com/http://www.maurice-andre.fr/https://web.archive.org/web/20110822190715/http://abel.hive.no/trumpet/andre/https://web.archive.org/web/20220813115401/http://ojtrumpet.net/andre/https://en.wikipedia.org/wiki/Maurice_Andr%C3%A9https://www.britannica.com/biography/Maurice-Andrehttps://www.feenotes.com/database/artists/andre-maurice-21st-may-1933-25th-february-2012/https://musicianbio.org/maurice-andre/https://www.famousbirthdays.com/people/maurice-andre.htmlhttps://www.pinterest.com/bagtarap/maurice-andre/https://www.grammy.com/grammys/artists/maurice-andre/123https://www.theguardian.com/music/2012/feb/29/maurice-andreAndreAndréAndré MauriceM. AndreM. AndréMauriceMaurice AndreMaurice Andre'Maurice AndreéMaurice André Sa TrompetteMaurice André Sa Trompette Et Les Grandes OrguesMaurice André, Sa TrompetteMaurice AndréeMaurice AndrēTrompetaTrumpet VoluntaryМ. АндреМ.АндреМорис Андреモーリス・アンドレOrchestra Del Teatro Comunale Di BolognaOrchestre Des Concerts LamoureuxPhilharmonia OrchestraStuttgarter KammerorchesterRadio-Symphonie-Orchester BerlinMünchener Bach-OrchesterOrchestre De Chambre Jean-François PaillardEnsemble Orchestral De ParisOrchestre Philharmonique De Radio FranceOrchestre Du Théâtre National De L'Opéra-ComiqueOrchestre Radio - Symphonique De ParisMaurice André And His Trumpet ConsortMaurice André Et Son OrchestrePaillard Ensemble D'Instruments À Vent Et Percussions + +578736Peter DammPeter DammGerman horn player (1937-2021)Needs Votehttp://www.hornistpeterdamm.de/,https://www.deutschlandfunk.de/sternstunden-hornkonzerte-von-schumann-und-strauss-100.html,https://www.freiepresse.de/vogtland/oberes-vogtland/musik-professor-schenkt-museum-in-markneukirchen-historisches-waldhorn-artikel12407901#google_vignetteDammПетер ДамStaatskapelle DresdenKammerorchester BerlinGewandhaus-Hornquartett + +578737Staatskapelle DresdenSächsische Staatskapelle DresdenOrchestra was founded 1548 by [a=Johann Walter] on behalf of Maurice, elector of Saxony. +Residing at the [l517389] in Dresden, Germany. + +Contact: +Sächsische Staatsoper Dresden +Orchesterdirektion +Theaterplatz 2 +01067 Dresden +kapelle@semperoper.deNeeds Votehttps://www.staatskapelle-dresden.de/https://www.facebook.com/staatskapelle.dresden/https://www.instagram.com/staatskapelledresdenhttps://x.com/StaatskapelleDDhttps://en.wikipedia.org/wiki/Staatskapelle_DresdenBläserquartett Der Staatskapelle DresdenBläserquintett der Staatskapelle DresdenBläsersextett Der Staatskapelle DresdenCapela De Stat Din DresdaChapelle d'Etat de DresdeDas Sächsische StaatsorchesterDas sächsische StaatsorchesterDie Dresdener StaatskapelleDie Dresdner StaatskapelleDie Staatskapelle DresdenDie Sächsische Staatskapelle DresdenDrazd'ansky Státní OrchestrDresdenDresden StaatkapelleDresden StaatskapelleDresden Staatskapelle OrchestraDresden State BandDresden State Opera OrchestraDresden State OrchestraDresden State Symphony OrchestraDresden Symphony OrchestraDresdener StaatskapelleDresdenin StaatkappelleDresdenski Državni OrkestarDresdesn State OrchestraDresdner StaatskapelleDrážďanský Státní OrchestrDržavni Orkestar, DrezdenKammerharmonie De DresdeLeden Van De Staatskapelle DresdenMembers Of Dresden State OrchestraMembers Of The Dresden State OrchestraMembers Of The Staatskapelle DresdenMembers of the Dresden State OrchestraMembers of the Staatskapelle DresdenMembres De La Staatskapelle De DresdeMiembros De La Capilla De DresdeMiembros De La Staatskapelle De DresdeMitglieder Der Staatskapelle DresdenMitglieder Der Sächsischen StaatskapelleMitglieder der Dresdner StaatskapelleMitglieder der Staatskapelle DresdenMitglieder der Sächsischen StaatskapelleOrch. Dell'Opera Di Stato Di DresdaOrch. Della Staatskapelle Di DresdaOrchester Der Dresdener StaatsoperOrchester Der Staatsoper DresdenOrchester Der Sächs. Staatsoper, DresdenOrchester der Staatsoper DresdenOrchester der Sächsischen Staatskapelle DresdenOrchester der Sächsischen Staatsoper DresdenOrchestraOrchestra Dell'Opera Di Stato Di DresdaOrchestra Della Staatskapelle Di DresdaOrchestra Di Stato Di DresdaOrchestra Di Stato SassoneOrchestra Di Stato Sassone Di DresdaOrchestra Di Stato di DresdaOrchestra Of The Dresden StateOrchestra Of The Dresden State OperaOrchestra Of The Saxon State Opera, DresdenOrchestra Staatskapelle DresdenOrchestra di Stato di DresdaOrchestre D'État De DresdeOrchestre D'État De La SaxeOrchestre De Chambre De DresdeOrchestre De L'État De SaxeOrchestre De La Staatskapelle De DresdeOrchestre De La Staatskapelle de DresdeOrchestre Du Staatskapelle De DresdeOrchestre National De DresdeOrchestre National DresdeOrchestre National de DresdeOrchestre Staatskapelle De DresdeOrchestre Symphonique De DresdeOrchestre de l'Opéra de DresdeOrkest Van De Dresdener Staats OperaOrkiestra Państwowa W DreźnieOrquesta De La Opera Del Estado De DresdeOrquesta De La Staatskapelle De DresdeOrquesta Del Estado (Dresde)Orquesta Del Estado De DresdeOrquesta Del Estado De DresdenOrquesta Del Estado De Sajonia, DresdeOrquesta Del Estado de DresdeOrquesta Estatal De DresdeOrquesta Estatal De DresdenOrquesta Estatal de DresdeOrquesta Estatal de DresdenOrquesta Nacional de DresdeOrquesta del Estado de DresdeOrquesta del Estado de Sajonia de DresdeOrquesta del estado de DresdeOrquestra Del Estado De Sajonia De DresdeOrquestra Do Estado Da SaxóniaOrquestra Do Estado De DresdenOrquestra Estadual Da SaxôniaOrquestra Estadual De DresdaOrquestra Estadual De DresdenOrquestra Estatal De DresdenPaństwowa Orkiestra DrezdeńskaPaństwowa Orkiestra W DreźniePhilharmonische Orchester DresdenSachsische StaatskapelleSachsische Staatskapelle De DresdeSachsische Staatskapelle DresdenSachsische Staatskapelle, DresdenSachsisches StaatsopernorchesterSaský Státní Orchestr V DrážďanechSaxon State Opera OrchestraSaxon State OrchestraSaxon State Orchestra DresdenSaxon State Orchestra Of DresdenSaxon State Orchestra of DresdenSaxon State Orchestra, DresdenSaxon State OrchetraSaxon State Theatre OrchestraSaxonian State OrchestraSaxonian State Orchestra DresdenSaxony State OrchestraStaatskap. DresdenStaatskapel DresdenStaatskapelleStaatskapelle De DresdeStaatskapelle De DresdenStaatskapelle De DrèsdeStaatskapelle Di DresdaStaatskapelle DresdeStaatskapelle Dresden OrchestraStaatskapelle de DresdeStaatskapelle din DresdaStaatskapelle, DresdenStaatskappelle DresdenStaatsopernorchesterStaatsorkest DresdenState OrchestraState Orchestra DresdenStátní Orchestr DrážďanyS¨chsische Staatskapelle DresdenSächsiche StaatskapelleSächsiche Staatskapelle DresdenSächsische StaatkapelleSächsische StaatskapelleSächsische Staatskapelle DresdenSächsische Staatskapelle, DresdenSächsische StattskapelleSächsischen StaatskapelleThe Dresden StaatskapelleThe Dresden State OperaThe Dresden State Opera Orch.The Dresden State Opera OrchestraThe Dresden State OrchestraThe Dresden State Symphony OrchestraThe Dresden Symphony OrchestraThe Saxon State OrchestraThe Saxon State Orchestra DresdenThe Saxon State Orchestra, DresdenThe Staatskapelle DresdenThe State Orchestra DresdenThe Sächsische Staatskapelle DresdenUlbricht-Quartett Der Staatskapelle DresdenWinds Of Staatskapelle DresdenГородская Капелла ДрезденаГосударственная Капелла B ДрезденeДрезденская Государственная КапеллаДрезденская государственная капеллаДрезденский Государственный ОркестрОркестр Дрезденской осударственной КапеллыСаксонская Государственная КапеллаСаксонская государственная капеллаシュターツカペレドレスデンシュターツカペレ・ドレスデンシュターツカペレ・ドレスデンドレスデン・シュターツカベレドレスデン・シュターツカペレドレスデン国立管弦楽団ドレスデン・シュターツカぺレHans Werner HenzeBernhard LangKarl BöhmRichard WagnerFritz ReinerJan Dismas ZelenkaWolfgang RihmHerbert BlomstedtRudolf KempeMichael EckholdtEckart HauptPeter DammWerner ZeibigPeter GlatteJoachim BischofCarl Maria von WeberCarlo FarinaGeorg WilleRudolf UlbrichJohann Adolf HasseWillibald RothFranz KonwitschnyAnton SpielerOtmar SuitnerCarl Friedrich AbelMartin TurnovskýHans OttoRaphael AlpermannHerbert CollumGiuseppe SinopoliTilman BüningLovro Von MatacicKurt SandauJohann Joachim QuantzAntonio LottiHans VonkSylvius Leopold WeissChristine SchornsheimPierre-Gabriel BuffardinChristian LangerKurt SanderlingMarkus HötzelChristian Funke (2)Johann David HeinichenJoachim UlbrichtRoland StraumerBrigitte GabschVolker DietzschHeinrich SchützJohannes Walter (2)Joachim ZindlerClemens DillnerKurt MahnManfred ZeumerIstvan VinczeHeinz-Dieter RichterThomas KäpplerGünter KlierIsabel MundryHans HombschKlaus SchweterGerhard EßbachJohann WalterArndt SchöneWilfried GärtnerManfred WeiseAlfred SchindlerFrancesco Maria VeraciniFritz BuschVincenzo AlbriciUlrich PhilippAdrian BleyerJoseph KeilberthJutta ZoffJohann Georg PisendelPeter ThiemeAndreas LorenzFerdinando PaerGünther KarpinskiHeinz HerrmannRudolf HaaseHelmut KlotzFritz RuckerManfred ScherzerRebecca SaundersHornquartett Der Staatskapelle DresdenBernd Hengst (2)Günther MüllerMichael EckoldtSiegfried BüchelWolfgang KlierPeter LohseFrank OtherMichael FrenzelManfred KrauseFriedemann JähnigHartmut SchergautMichael SchöneDieter BuschnerImmanuel LucchesiJohann Gottlieb NaumannEdmund SchuëckerHans-Joachim ScheitzbachHelmut BrannyJan VoglerRolf SchindlerJens-Jörg BeckerKai VoglerFabio LuisiJohann Paul Von WesthoffJohannes Maria StaudReinhard UlbrichtHans KästnerErik ReikeBernhard MühlbachSebastian RömischErnst-Ludwig HammerWerner JaroslawskiNicolaus Adam StrungkBodo KunthBernd HauboldJulius RönnebeckPeter BrunsWolfram JustAndreas PriebstFranz Anton SchubertPeter MirringGerhard PluskwikFriedwart DittmannPeter SchikoraMax StrubMoritz HauptmannKarl ElmendorffJens-Peter ErbeJan Damen (2)Wolfgang BülowWolfgang LiebscherGerhard NeumerkelThomas MeiningKristian SchwertnerJohann Christoph SchulzeMarkus StrauchCéline MoinetJochen UbbelohdeCarlo PallavicinoLuke TurrellMatthias NeubertGünter FriedrichFriedrich MilatzSteffen WeiseRalf Dietze (2)Annika ThielNorbert AngerHarald Winkler (5)Gerhard WoschnyJohann Gottlob HarrerKlaus Florian VogtFriedrich DotzauerAnselm TelleHeinz HeinischWerner BeyerAlfons OrpkyRalf-Carsten BrömselSusanne BrannyChristian RolleJulius RietzLera AuerbachBernd SchoberHorst TitscherKarol LipińskiPeter Christoph HänselMathias SchmutzlerEgbert EsterlThomas Eberhardt (2)Henrik Wahlgren (2)Johann Jakob WaltherCarl Gottlieb ReißigerHeinz LohanErich MarkwartHorst WiednerErich MühlbachWerner Schulz (2)Uwe VoigtLars ZobelGerd GranerAndreas LangoschSiegfried SchneiderJürgen UmbreitGuido UlfigVolker Stegmann (2)Jürgen MayBernhard RoseFrancesco MorlacchiFriedrich August KummerKarl SchütteAlfred TolksdorfGünter SchaffrathTino PattieraThomas GroscheJens MetznerUwe KroggelReinhard KraußBruno WeinmeisterGiovanni Alberto RistoriJohannes FriemelDieter PansaKlaus PietzonkaWolfgang HolzhäuserFlorian Richter (4)Juliane BöckingJohanna MittagHans-Werner LiemenAndreas WylezolArtur MeyerFriedrich FrankeMichael Neuhaus (3)Antonio ScandelloMatthias WollongCornelius HermannBlechbläser Der Staatskapelle DresdenChristopher FranziusCornelius HerrmannPhilipp ZellerHorst SchönwälderMarie-Annick CaronAnton Bernhard FürstenauHardy WenzelSebastian HerbergJohann-Wilhelm FurchheimMechthild von RysselWinfried Berger (2)Volker HanemannJoachim HuschkeSidsel Garm NielsenFrank BehsingVioloncello-Quartett Der Staatskapelle DresdenConstantin Christian DedekindRobert OberaignerJörg HassenrückStephan PätzoldMartin JungnickelUlrike ScobelConstantin HartwigJan SeifertMax ZimolongEdgar ManyakGünter Müller (4)Fred WeicheMartin FraustadtHarald HeimAnja KraußSimon KalbhennBruno Knauer (2)Astrid von BrückRobert LisZoltán MácsaiRogier MichaelRobert Witt (2)Lukas SteppJörg KettmannMartina GrothMatthias Meißner (2)Jörg FaßmannUlrich MilatzAlexander ErnstTorsten HoppePeter Becher (2)Andreas KißlingBernhard KuryCarl-Magnus HellingZsuzsanna Schmidt-AntalHelmut Fuchs (2)Johanna FuchsBläserquintett Der Staatskapelle DresdenHans WapplerRobert LangbeinTibor GyengeMarcello EnnaFederico KasikStefan FritzenChristian DollfußGaetano D'EspinosaJoachim HansWolfram GroßeJohann Christoph SchmidtLisa LisztaHannes SchirlitzBernward GrunerTom HöhnerbachAndreas BörtitzReimond PüschelDavid HarloffEberhard KaiserMichael GoldammerAnya MuminovichAnnette ThiemFranz Schubert (3)Paige KearlWieland HeinzeYuki Manuela JankeStanko MadicDagmar Spengler-SüßmuthRăzvan PopescuJanos EcseghyPaul Blödner + +578738Werner ZeibigGerman contrabassist, born 1939.CorrectStaatskapelle DresdenDas Orchester Der Staatsoper BerlinVirtuosi Saxoniae + +578745Peter GlattePeter Glatte (*June 16, 1936 - ✝July 30, 2008) was a German classical violinist.Needs VoteP. GlatteStaatskapelle Dresden + +578890Andrew Clark (3)Classical hornist. +He studied at the Guildhall School of Music and Drama in London with horn teachers [a857608], [a557325], and [a688088]. He graduated in 1987 and was appointed by Sir [a926716] as principal horn of the [a926722] in 1990. +He currently plays principal horn with the Orchestra of the Age of Enlightenment and the Amsterdam Baroque Orchestra and has been professor of natural horn at the Royal Academy of Music in London since 1993.Needs Votehttps://web.archive.org/web/20210325064702/http://www.naturallyhorns.co.uk/Andrew ClarkeRoyal Philharmonic OrchestraNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe Mike Gibbs OrchestraThe King's ConsortEuropean Brandenburg EnsembleThe English ConcertVictoria Baroque Players + +579162Pee Wee HuntWalter Gerhardt HuntJazz trombonist, vocalist and band leader. +Interested in music from an early age, at Ohio State University while majoring in electrical engineering Hunt switched from banjo to trombone. +With [a338450] in 1928, and a member & featured trombonist of The [url=https://en.wikipedia.org/wiki/Casa_Loma_Orchestra]Casa Loma Orchestra[/url] in 1928. Leaving them in 1943 to work as a Hollywood radio disc jockey before joining the Merchant Marine near the end of World War II. Upon his return to the West Coast in 1946, his successes include 1948's 3 million seller "Twelfth Street Rag". +Born May 10, 1907, Mt. Healthy, Ohio. +Died June 22, 1979, Plymouth, Massachusetts, at age 72, after a long illness. +Needs Votehttps://en.wikipedia.org/wiki/Pee_Wee_Hunthttps://adp.library.ucsb.edu/names/106359"Pee Wee Hunt""Pee Wee Hunt" Mus 2/c, USMS"Pee Wee""Pee Wee" Hunt'Pee Wee' HuntHuntP. W. HuntPee WeePee Wee HantPee Wee Hunt And His OrchestraPee Wee Hunt Und Seine OrchesterPee-Wee HuntPeeWee HuntWalter "Pee Wee" HuntWalter "Pee-Wee" HuntWalter HuntCasa Loma OrchestraJean Goldkette And His OrchestraPee Wee Hunt And His OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm KingsPee Wee Hunt's Jazz BandPee Wee Hunt And His Dixieland Band + +579373Sylvain CambrelingSylvain CambrelingFrench conductor, born 2nd July 1948 in Amiens.Needs Votehttps://www.sylvaincambreling.com/https://en.wikipedia.org/wiki/Sylvain_CambrelingCambrelingS. CambrelingSilvain CambrelingSinfonieorchester Des SüdwestfunksKlangforum Wien + +579746Carl Carter (3)American jazz pianist. + +Born : April 12, 1931 in Youngstown, Ohio. +Died : September 20, 1996 in Cleveland, Ohio. + +"Ace" Carter worked with Count Basie, Charlie Parker, +Dizzy Gillespie, Sonny Stitt, George Benson, and others.Needs VoteCarl "Ace" CarterCount Basie Orchestra + +579747Mike Williams (6)Born July 30, 1957 in Shreveport, Louisiana + +Mike Williams is an American jazz and big band trumpeter. He is most noted as the lead trumpeter for the Count Basie Orchestra for more than 21 years. As a member of the Basie Band, he has performed in all 50 states and 40 countries with such notable names as Dizzy Gillespie, Billy Eckstine, Frank Sinatra, Ella Fitzgerald, Sarah Vaughan, Tony Bennett and Diane Schuur. + +He also performs and records with other noted jazz groups, including Charles Tolliver Big Band and has played trumpet for several years with the 156th Army Band. When off the road, Mike teaches privately and performs as guest soloist and clinician with universities and high schools across the nation.Needs Votehttp://mikewilliamstrumpet.com/index.htmlhttp://en.wikipedia.org/wiki/Mike_Williams_%28trumpeter%29Michael P. "Mike" WilliamsMichael P. WilliamsMichael WilliamsCount Basie Orchestra1:00 O'Clock Lab Band + +579748Carmen BradfordAmerican jazz singer, born 19. July 1960, in Austin, Texas + +She is the daughter of trumpeter/ composer [a=Bobby Bradford] and vocalist/composer Melba Joyce. Her grandfather Melvin Moore sang with Lucky Millender and Dizzy Gillespie’s Big Band in the 1940’s, and sang with the Ink Spots. Carmen was discovered and hired by William “Count” Basie, and was the featured vocalist in the legendary Count Basie Orchestra for nine years. +Needs Votehttps://carmenbradford.com/Carmen Mary BradfordCount Basie Orchestra + +580144Nigel Thomas (2)Classical timpanist/percussionist, composer, producer and Professor of Timpani. +He was appointed timpanist with the [a=European Community Youth Orchestra]. He attended the [l290263] (1978-1981). In 1981, he became the principal percussionist of the [a=London Philharmonic Orchestra], a position he held until 1988. In 1988, he took up the same role with the [a=London Symphony Orchestra]. Then, he re-joined the LPO in 1990 and stayed with them until 1992. In 2003, he returned to the LSO as Principal Timpani. Professor of Timpani at both [l305416] and the [l1379071]. He created [a=Quiet City] and was drummer/collaborator with [a=The Blue Nile] for many years, recording three albums and undertaking many live performances with the band.Needs Votehttp://www.feenotes.com/database/artists/thomas-nigelhttp://www.linkedin.com/in/nigel-thomas-682a687ahttp://lso.co.uk/orchestra/players/timpani-and-percussion.htmlhttp://musicacademy.org/big-profiles/nigel-thomashttp://www.trinitylaban.ac.uk/study/teaching-staff/nigel-thomasN.ThomasNigel "Beaver" ThomasThomasQuiet CityLondon Symphony OrchestraLondon Philharmonic OrchestraEuropean Community Youth Orchestra + +580166Julian Lloyd WebberBritish solo cellist, conductor, and broadcaster, born 14 April 1951. He is the second son of composer [a2773261] and the younger brother of composer [a84839].Needs Votehttp://www.julianlloydwebber.com/https://en.wikipedia.org/wiki/Julian_Lloyd_Webberhttps://www.imdb.com/name/nm0515909/J. Lloyd WebberJulianJulian Lloyd-WebberJulian Lloyd-WeberJulian-Lloyd WebberLloyd WebberWebberジュリアン・ロイド ウェバージュリアン・ロイド・ウェバーClassical Relief For HaitiOasis (13) + +580172Lucie SkeapingLucie FinchLucie Skeaping (neé Finch) is a British singer, instrumentalist and broadcaster. She mainly plays period instruments like lute and viol, but she also plays violin. She works as a presenter for Radio 3. + +She's married to [a=Roderick Skeaping], and they play together in several ensembles, including "Musical Mystery Tour", an educational show for children about the history of music. Sister-in-law of [a=Adam Skeaping]. +Needs Votehttp://www.lucieskeaping.co.ukhttp://www.bbc.co.uk/radio3/presenters/lucie_skeaping.shtmlLucie FinchLucy SkeapingThe Campiello BandThe Burning BushThe City WaitesMartin Best ConsortSneak's Noyse + +580177Roger SmalleyRoger SmalleyBritish composer and pianist, born in Swinton near Manchester on July 26, 1943; died August 18, 2015.Needs Votehttp://www.rogersmalley.com/Rodger SmalleySmalleyIntermodulationThe Academy Of St. Martin-in-the-Fields + +580349Martin SpannerClassical oboist, fl. 1977-1993CorrectSpannerMünchener Bach-Orchester + +580684Elgar HowarthEnglish conductor, composer and trumpeter, born 4 November 1935 at Cannock, Staffordshire, England, UK. Died January 2025.Needs Votehttp://en.wikipedia.org/wiki/Elgar_Howarthhttps://www.imdb.com/name/nm1850139/E. HowarthE.H.E.HowarthEdgard HowarthElga HowarthElgar HorvathElger HowarthHowarthエルガー・ハワースW. Hogarth LearFires Of LondonPhilip Jones Brass EnsembleWestminster Brass EnsembleThe Philip Jones Quartet + +581138Roy HarteRoy S. HartsteinAmerican jazz drummer, producer, and record label owner. +Born 27 May 1924 New York City, USA. +Died 26 October 2003 Burbank, California, USA. +He and jazz producer [a255946] founded [l=Pacific Jazz Records] in 1952. +He and bassist [a312554] formed their own record company, [l82366], in 1954 and he went on to produce as well. +He was part of The Hometown Jamboree that ran on radio.Needs Votehttps://en.wikipedia.org/wiki/Roy_Hartehttps://jazzresearch.com/roy-harte/https://jazzresearch.com/pacific-jazz-78-45-singles/http://ctsimages.com/pages/archives/harte_roy.htmlhttps://www.imdb.com/name/nm14095330/https://www.imdb.com/name/nm3313742/https://www.hillbilly-music.com/programs/story/index.php?prog=150https://adp.library.ucsb.edu/names/320290HarteR. HartBobby Sherwood And His OrchestraIke Carpenter And His OrchestraBud Shank - Shorty Rogers QuintetGravity Adjusters Expansion BandThe Bud Shank QuintetLaurindo Almeida QuartetJimmy Wyble TrioHerbie Harper QuintetThe John Banister TrioMilton Rogers And His OrchestraHarry Babasin QuintetArnold Ross TrioHerbie Harper QuartetNappy Lamare And His Strawhat Seven + +581287Eduard MörikeEduard Friedrich MörikeGerman romantic poet (born 8 September 1804 in Ludwigsburg, Germany – died 4 June 1875 in Stuttgart, Germany). + +[b]DO NOT CONFUSE[/b] with his grandnephew, the conductor [a=Eduard Mörike (2)] (1877-1929). + +A clergyman by training, Mörike became an important novelist and poet, best-known for the novel "Maler Nolten" (1832), his poem collection "Gedichte" (1838, last enlarged in 1867), and the novella "Mozart auf der Reise nach Prag" (1855). Written in simple, unaffected German, many of his poems were set to music and some became folk songs, for example, "Es schlägt eine Nachtigall," "Wie heißt König Ringangs Töchterlein," "Früh, wenn die Hähne kräh'n." Particularly well-known are the melodies composer [a=Hugo Wolf] created for 53 of Mörike's poems ("Mörike-Lieder, 1888). +Needs Votehttp://en.wikipedia.org/wiki/Eduard_M%C3%B6rikehttps://www.volksliederarchiv.de/?s=M%C3%B6rikehttps://adp.library.ucsb.edu/names/101884E. MörikeE. MērikeE. MőrikeEd. MörikeEdouard MörikeEduard Friedrich MörikeEduard MorikeEduard MörickeEduart MörickeEdward MörikeFriedrich MörikeMoerikeMorickeMorikeMörickeMörikeMörilmЭ. МëрикеЭ. МерикеЭ. Мёрике + +581288Nikolaus LenauNikolaus Franz Niembsch - Edler von StrehlenauHungarian-Austrian poet. + +He was born 13 August 1802 in Csatád, Hungary (today Romania) and died 22 August 1850 in Oberdöbling (today Vienna), Austria.Needs Votehttps://en.wikipedia.org/wiki/Nikolaus_Lenauhttps://adp.library.ucsb.edu/names/102083LenauN. LenauNicolaus LenauNicolaus von LenauNikolas LenauNikolaus Von LenauNikolaus von LenauЛенауН. Ленау + +581291Joseph Von EichendorffJoseph Karl Benedikt Freiherr von EichendorffGerman poet and novelist of the later German romantic school, born 10 March 1788 Schloss Lubowitz/Ratibor, Upper Silesia, Poland and died 26 November 1857 in Neisse, Poland. +Needs Votehttp://en.wikipedia.org/wiki/Joseph_Freiherr_von_Eichendorffhttps://adp.library.ucsb.edu/names/103132Baron Joseph Von EichendorffEichendorfEichendorffJ. EichendorffJ. F. Von EichendorfJ. F. Von EichendorffJ. F. v. EichendorffJ. Fr. von EichendorffJ. Freiherr Von EichendorffJ. Freiherr v. EichendorfJ. Freiherr v. EichendorffJ. Freiherr von EichendorffJ. Freiherr von EichenforffJ. Frh. V. EichendorffJ. Frh. v. EichendorffJ. Frhr. V. EichendorffJ. V EichendorffJ. V. EIchendorffJ. V. EichendorfJ. V. EichendorffJ. Vo. EichendorffJ. Von EichendorfJ. Von EichendorffJ. v. EichendorffJ. v. EichendorfJ. v. EichendorffJ. v. Eichendorff (1788-1857)J. v. EichendroffJ. von EichdorffJ. von EichendorffJ. von. EichendorfJ.V. EichendorffJ.V.EichendorffJ.v. EichendorffJ.v.EichendorffJohann Freiherr Von EichendorffJohann v. EichendorffJohann von EichendorffJos. Freih. V. EichendorffJos. Freiherr v. EichendorffJos. Frh. v. EichendorffJos. Frh. von EichendorffJos. V. EichendorffJos. v. EichendorffJos. von EichendorffJosef EichendorffJosef Freiher von EichendorffJosef Freiherr Von EichendorffJosef Freiherr v. EichendorfJosef Freiherr von EichendorffJosef Kavrl Benedikt von EichendorffJosef V. EichendorffJosef Von EichendorffJosef v. EichendorffJosef von EichendorffJosej Von EichendorfJoseph EichendorffJoseph Freiheit von EichendorffJoseph Freiherr V. EichendorffJoseph Freiherr Von EichenJoseph Freiherr Von EichendorffJoseph Freiherr Von EichendroffJoseph Freiherr v. EichendorffJoseph Freiherr von EichendorffJoseph Freihher Von EichendorffJoseph Frh. V. EichendorffJoseph Frh. Von EichendorffJoseph Frhr. v. EichendorffJoseph Karl Benedikt Freiherr Von EichendorffJoseph Karl Benedikt Freiherr von EichendorffJoseph Karl Benedikt Von EichendorffJoseph Karl Benedikt von EichendorffJoseph V. EichendorffJoseph Von EichendorfJoseph v. EichendorffJoseph von EichendorfJoseph von EichendorffJoseph, Baron Von EichendorffJospeh V. EichendorffTheodor Von EichendorffV EichendorffV. EichendorffV. EichendorfV. EichendorffVon Eichendorffv. Eichendorffvon EichendorffИ. ЭйхендорфЙ. ЭйхендорфЙ. фон АйхендорфЙозеф ЭйхендорфЮ. Эйхендорффヨーゼフ・フォン・アイヒェンドルフ + +581384Andrew McGavinBritish horn player. +Former member of [a=London Symphony Orchestra] (1948-1954). He played 2nd Horn in the [a=Philharmonia Orchestra]. +Brother of [a=Eric McGavin].Needs VoteA. McGavinA.McGavinAndrew MacGavinAndrew Mc GavinAndy McGavinAndy McgavinM. McGavinЭндрю МакгейвинLondon Symphony OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe Laurie Johnson OrchestraThe David Lindup Big BandSinfonia Of LondonThe London Brass Conference + +582273Åke PerssonÅke PerssonSwedish trombonist, born February 25, 1932, Hässleholm, Sweden, died February 5, 1975, Stockholm, Sweden. +Åke Persson worked steadily in Europe during his prime years and occasionally guested with American jazzmen who were on tour. On February 5th, 1975, Åke was found dead in his car at the bottom of the Djurgården canal. +Correcthttps://en.wikipedia.org/wiki/Åke_PerssonA. PersonA. PerssonA.PerssonAake PersonAake PerssonAke PersonAke PerssonAkke PerssonPerssonSven-Åke PerssonÅ. PerssonÅke PehrssonÅke PershonÅke PersonPeter Herbolzheimer Rhythm Combination & BrassQuincy Jones And His OrchestraClarke-Boland Big BandDizzy Gillespie Big BandThe Swedish All StarsThe Kenny Clarke - Francy Boland SextetHarry Arnolds OrkesterFestival Big BandThe Galactic Light OrchestraThe Band (7)Simon Brehms KvintettLars Gullin SeptetHarry Arnold & His Swedish Radio Studio OrchestraBengt-Arne Wallins OrkesterStan Getz And His Swedish JazzmenLars Gullin OctetGösta Theselius And All StarsThe Quincy Jones Big BandArne Söderlunds OrkesterNDR-Jazz-Workshop-BandOliver Nelson And The "Berlin Dreamband"Bengt Hallberg And His Swedish All StarsÅke Persson And His ComboHacke Björksten's All Star SextetArne Domnérus DixiesixBengt-Arne Wallin & His TentetBengt Hallberg EnsembleRolf Blomquist And His BandThe Favourite Soloists 1951Dompans Lilla BataljonHacke Björksten Åke Persson QuintetJazz At The CavalcadeWalter Larssons Dixieland-EnsembleSlide Hampton - Ake Persson QuintetJon Hendricks - Johnny Griffin GroupRosolino-Persson SextetTime Travellers (5)Carl-Henrik Norins All Star BandRolf Blomquist Sextet + +582425Dorothy ParkerDorothy RothschildAmerican writer and poet. +b. 22 August 1893, Long Branch, New Jersey, USA. +d. 7 June 1967, New York, New York, USA. + +Marriages: +Edwin Pond Parker II (1917-1928); Alan Campbell (1934-1947); Alan Campbell (1950-1963) +Needs Votehttp://en.wikipedia.org/wiki/Dorothy_Parkerhttps://adp.library.ucsb.edu/names/102093D ParkerD, ParkerD. ParkerD.ParkerDorothy ParckerDorothy Parker b. Dorothy RotschilldJ. ParkerParkerparkerדורותי פרקרDorothy Rothschild + +582646Jimmy WalterBenjamin Lazare WalterFrench pianist, composer, and arranger. Born 1930, died september 20th 2012. Father of [a=Phil Walter] and Sophie WalterNeeds Votehttps://all-conductors-of-eurovision.blogspot.com/1971/11/jimmy-walter.htmlB. WalterBenjamin Lazare WalterBenjamin WalterI. WalterJ WalterJ. WalterJ.WalterLazare WalterWalteWalterWalter Jimmyj. walterВальтерWally HamiltonBenjamin WalterBurt BlakeyMarcel SchuhBebo BaldaJimmy Walter Et Son EnsembleJimmy Walter Et Son OrchestreJimmy Walter Et Ses MadisonnistesJimmy Walter And His Sextet + +582790Rocky WhiteQuentin WhiteAmerican jazz drummer, born November 3, 1952 in San Mares, Texas. +Played with [a=Duke Ellington]'s orchestra 1973-1974, continued to play intermittently with the band under the direction of [a=Mercer Ellington].Needs Vote"Rocky" Quinten WhiteDuke Ellington And His Orchestra + +582795Vince PrudenteAmerican trombonist, pianist, arranger and composer. +He has played with [a=Duke Ellington], [a=Lionel Hampton], and [a=Woody Herman]. +Needs Votehttp://simple.wikipedia.org/wiki/Vince_PrudenteVicenteVincent PrudenteVincent Prudente Jr.Vincent Prudente, Jr.Vincente PrudenteVincente Prudente Jr.Vincente Prudente, Jr.Woody Herman And His OrchestraDuke Ellington And His OrchestraWoody Herman And The Thundering Herd + +582798Harold MinerveCuban-born jazz alto saxophonist and flautist, worked with Ida Cox, The Buddy Johnson Orchestra, Clarence Love, Ray Charles, Duke Ellington, Mercer Ellington, Ernie Fields and others. +Born: January 3, 1922 in Havana, Cuba. +Died: June 4, 1992 in New York City, New York.Needs Vote"Geezil" MinerveGeezell MinerveGeezil MinerveHarold "Geezil" MinerveHarold 'Geezil' MinerveHarold Geezel MinervaHarold MinervaMinerveMirold MinervaDuke Ellington And His OrchestraBuddy Johnson And His OrchestraLucky Millinder And His OrchestraThe Duke Ellington OrchestraErnie Fields Orchestra + +582803Lloyd MichelsLloyd Michael BergmanLloyd Michael Bergman, known to his friends and colleagues as Lloyd Michels. Lloyd was born with asthma. At two-and-a-half, a severe asthma attack nearly killed him. His doctor ordered that he play the trumpet. This radically improved his lung health, and controlled his asthma. At age five, he began studying with John Fabrizio. At nine, he became a student of William Vacchiano, principal trumpet with the New York Philharmonic. (Later, Lloyd himself became a student associate with the Philharmonic.) At 11, he studied with master teacher Dr. Roy Stevens, a proponent of Bill Costello’s method. In 1961, Michels played on Si Zentner’s hit recording of “Up a Lazy River.” + +In 1965, he followed Bill Chase to Woody Herman’s band, where he played lead and became road manager. Returning to New York, he played lead in Clark Terry’s band. Clark nicknamed him “Karate Chops,” and introduced him to Thad Jones. (Thad then recommended him to Quincy Jones, who picked him to play lead on his Grammy-winning album “Walking In Space.”) Clark also recommended Lloyd to Duke Ellington, who hired him frequently over the years. This led to a lead trumpet role in the onstage band for the Broadway show “Sophisticated Ladies.” (Lloyd also played in the Broadway production of “Jesus Christ, Superstar” and the Off Broadway production of “Sgt. Pepper’s Lonely Hearts Club Band on the Road” at the Beacon Theatre.) + +Lloyd served as contractor and lead trumpet for the band Hines, Hines and Dad. Later, he helped contract for the Westbury Music Fair Orchestra, where he also played lead trumpet. + +In 1974, he created Mistura, a seven-member brass group. His Mistura recordings have not been officially released in the U.S. although “The Flasher” has appeared on the Internet. (That recording was a number-one hit in the U.K.) Then, in 1975 he contracted the Big Band Machine for Buddy Rich. + +Lloyd also served on the Local 802 theater committee in the late 1960s.Needs Votehttps://www.local802afm.org/allegro/articles/born-to-play-trumpet-my-memories-of-lloyd-michels/L. MichaelsL. MichelsLloyd "Hi-note" MichelsLloyd (Hi-Note) MichelsLloyd MichaelsLloyd MichelLloyd Michels MisturaMichaelsMichelsWoody Herman And His OrchestraDuke Ellington And His OrchestraThe Jazz Composer's OrchestraLee Konitz Big BandThe Phoenix AuthorityMistura (2)The Ernie Wilkins OrchestraChelsea BeigeWoody Herman And The Swingin' HerdCollins-Shepley Galaxy + +582806Al RichmondHorn player.CorrectA. RichmondAl RichmanAlbert RIchmondAlbert RichmanAlbert RichmondDizzy Gillespie And His Orchestra + +582942Friedrich HollaenderFriedrich HolländerGerman composer, born 18 October 1896 in London, England, UK, died 18 January 1976 in Munich, Germany, son of [a=Victor Hollaender]; father of [a1056144]. + +After studying in Berlin, he composed music for productions by [a=Max Reinhardt] and became involved in cabaret and wrote music for the film Der Blaue Engel (The Blue Angel), directed by [a=Josef von Sternberg], featuring [a=Marlene Dietrich] and [a=Emil Jannings]. +He left Nazi Germany and emigrated to the United States of America where he wrote the music for over a hundred films, including Destry Rides Again, A Foreign Affair, and Sabrina. Many of his songs were made famous by Marlene Dietrich. He can be seen as the piano accompanist in A Foreign Affair. He received four Academy Award nominations for composition.Needs Votehttps://www.frederickhollandermusic.com/https://en.wikipedia.org/wiki/Friedrich_Hollaenderhttps://www.imdb.com/name/nm0006130/https://adp.library.ucsb.edu/names/104699E. HolländerF HollanderF. HollaendeF. HollaenderF. HollandeF. HollanderF. HollandrF. HollanenderF. HolleanderF. HollenderF. HolländerF.HollaenderF.HollanderF.K. HollanderFedrick HollanderFr. HollaenderFr. HollanderFr. HolländerFr. HollånderFred HollaenderFred HollanderFrederich HollaenderFrederich HollanderFrederickFrederick HallanderFrederick HollaenderFrederick HollandeFrederick HollanderFrederick HollenderFrederick K. HollanderFrederiick HollanderFrederik HollanderFredrich HollaenderFredrich HollanderFredrich HollenderFredrick HollanderFredrik HollanderFried. HollaenderFriederich HollaenderFriederich HollanderFriederich HolländerFriedr. HollaenderFriedr. HollanderFriedr. HolländerFriedrich HollanderFriedrich Hollander And His OrchestraFriedrich HolläenderFriedrich HolländerFriedrich HöllanderFriedrick HollaenderFriedrick HollanderFritz HollanderFritz HolländerH. HollanderHallanderHolianderHollaenderHollaender FriedrichHollandeHollanderHolleander AlbertHolländerHöllanderHöllander F.K. F. HollanderS. HollaenderПремедиФ. ГоландерФ. ГолландерФ. ГоллендерФ. ХолландерLouis Armstrong And His OrchestraWeintraubs SyncopatorsFriedrich Holländer Und Seine Jazz-SymphonikerDie Kleine Freiheit + +582970Werner Richard HeymannWerner Richard HeymannGerman conductor and composer, born 14 February 1896 in Königsberg, East Prussia, Germany (today Kaliningrad, Russia), died 30 May 1961 in Munich, Germany.Needs Votehttps://www.heymann-musik.de/https://en.wikipedia.org/wiki/Werner_R._Heymannhttps://adp.library.ucsb.edu/names/109659B. HeymannE. HeymannH. H. HeymannH. HeymannH. R. HeymannH.H. HeymannHaymannHeijmanHeilmannHeimannHermannHeymanHeymannHeymann & WernerHeymann / WernerHeymann Werner RichardHeymann, W. R.Heymann-WernerHymannL. R. HeymannMeymannMr. HeymannR. HeymanR. HeymannR. Heymann - WernerR. Heymann WernerR. Heymann- WernerR. Heymann-WernerR. W. HeymannRichard HeymannRichard Werner HeymannRichert-HeymannVerner-HeymanW R HeymannW-R. HeymannW. R. HeymannW. - R. HeymannW. HeymanW. HeymannW. R HeymannW. R. HeymannW. R. GejmanW. R. HeymanW. R. HeymannW. R. Heymann*W. R. ReymanW. R. WeymannW. Richert-HeymannW.-R. HeeymannW.-R. HeymannW.E. HeymanW.H. HeymanW.R HeymannW.R. HemannW.R. HesemannW.R. HeymanW.R. HeymannW.R.HeymanW.R.HeymannWR.HeymannWarner-R. HeymanWerber R. HeymmanWernerWerner & R. HeymannWerner - HeymanWerner HeymanWerner HeymannWerner R. HeimannWerner R. HeymanWerner R. HeymannWerner R.HeymannWerner Rich. HeymannWerner Richard HaymannWerner Richard HeimannWerner Richard HeymanWerner Richard. HeymannWerner Richard/HeymannWerner-HeymannWerner-R. HeymannWerner-Richard HeymannWr.HeymannW・ハイマンВ. ГейманВ. Р. ГейманаВернер Рихард ХайманНейманХейманハイマンヴェルナー・ハイマン + +582978Franz DoelleGerman composer and conductor, born 9 November 1883 in Mönchengladbach, Germany, died 15 March 1965 in Leverkusen, Germany +Needs Votehttps://adp.library.ucsb.edu/names/312438DelisDelleDoeleDoelerDoellaDoelleDoelle FranzDoelle, FranzDoellerDoleDoëlleDölleDœlleF DoelleF. DoeleF. DoellF. DoelleF. DoelliF. DolleF. DolleyF. DoëlleF. DölleF. DœlleF.DoelleF.DoëlleFr. DoelleFrancis DoelleFrank DoelleFrans DoelleFranz DeelleFranz DölleNoelleW. Doelleデーレフランツ・デーレ + +582992Egon MorbitzerGerman violinist, born 6 February 1927 and died 14 March 1989. He was concertmaster of the [a833446] from 1951 to 1989 and is still listed as an honorable member of the orchestra.Needs VoteEgen MorbitzerEgon MorbicerProfessor Egon MorbitzerStaatskapelle BerlinStreichquartett der Deutschen Staatsoper Berlin + +582999Rudolf-Günter LooseGerman lyricist, born 5 February 1927 in Berlin, Germany, died 3 October 2013. He was active since 1955.CorrectB. LooseB.G. LooseC. LooseCooseF. GidoG LooseG. LoeseG. LohseG. LooseG. LoosoG. LosseG.LooseGuenter LooseGunter LooseGunther - LooseGunther LooseGûnther LooseGünterGünter - LooseGünter LooseGünter Rudolf LooseGünter-LooseGünther LooseGünther LoseH. G. LooseH. LooseL. GuntherL. LooseLohseLoosLooseLoose GLoose GünterLoose GüntherLoose Rudolf GünterLoose, GuenterLoose, Rudolf GünterLoose, Rudolf-GünterLooselLooserLorseLosseLosserR. G. LohseR. G. LooseR. G: LooseR. Günter LooseR. LooseR.-G. LooseR.G. LooseRudolf - LooseRudolf Gunter LooseRudolf Gunther LooseRudolf Günter LooseRudolf LooseT. Günter LooseT. Günther LooseT. LooseГеротР. Гюнтер ЛоозеРудольф Гюнтер ЛоозеルーズPeter Berling + +583052Fred WeyrichAlfred WeyrichGerman producer and songwriter, born 25 August 1921 in Tauberbischofsheim, Germany, died 30 December 1999 in Ammersee, Germany. Father of [a=Pit Weyrich].Needs Votehttp://de.wikipedia.org/wiki/Fred_Weyrichhttps://memorymagazin.de/w/tony_wellerAlfred WeyrichEwyrichF. WayrichF. WeirichF. WeydrichF. WeyhrichF. WeyrichF. WeyrickF.WeyrichFr. WeyrichFred MeyrichFred WeydrichFred WeylichFred Weyrich U. ChorFred Weyrich U. Gesangs-QuartettFred Weyrich Und Gesangs-QuartettM. PlessasReyrichWeirichWeyrichWeyrich FredWeyrich, F.Ф. ВейнрихPeter MaueFred Und Rolf + +583074Dick PerryWind musician, commonly credited as trumpeter, but also as saxophonist.Needs VoteRichard PerrySergeant Dick PerrySergeant Richard PerrySy Oliver And His Orchestra + +583281Joel SmirnoffClassical violinist.Needs VoteBoston Symphony OrchestraJuilliard String QuartetCollage New Music + +583502Haven GillespieJames Haven Lamont GillespieAmerican composer and lyricist, born 6 February 1888 in Covington, Kentucky, USA, died 14 March 1975 in Las Vegas, Nevada, USA. Inducted into the Songwriters Hall of Fame in 1972. +Needs Votehttps://www.songhall.org/profile/Haven_Gillespiehttp://en.wikipedia.org/wiki/Haven_Gillespiehttps://adp.library.ucsb.edu/names/106488A. GillespieB. GillespieC. GillespieD. GillepsieD. GillespieD.GillespieG. GillespieGIllespieGellespieGilespieGillGillepsiGillepsieGillepsie IIGillescieGillespieGillespie H.Gillespie HavenGillespie, H.Gillespie, HavenGillespie/HavenGillespipeGillespyGilley HavenGilliespieGillispieGillspieGuillespieH GillespieH. GilespieH. GilisspieH. GillepieH. GillepsiH. GillepsieH. GillepspieH. GillespiH. GillespieH. GillespielH. GilliespieH. GillispieH. GiloespieH. GollespieH. GuillespieH.DžilespiH.GillesbieH.GillespiH.GillespieHaren GillespieHarlan GillespieHavan GillespieHavenHaven - GillespieHaven GillaspieHaven GillepsieHaven GillespiHaven Gillespie IIHaven GillespielHaven GillespiesHaven GillespleHaven GillespsieHaven GillestieHaven GilliespieHaven GillispieHaven, GillespieHaven-Dizzy GillespieHaven-GillespieHaven/GillespieHavin GillespieHavor GillespieHazen GillespieHeavenHeaven GillespieHeaven Gillespie IIHelen GillespieHenri GillespieHenry GillespieJ. GillespieJaven G. LlespieM. GillespieM.GillespieSmith-GillespieU. GillespieWarren GillespieГилеспиХ. ГилепсиХ. Гиллеспиヘブン・ギレスビーヘブン・ギレスピー + +583503Dick Smith (3)Richard Bernhard SmithPennsylvania-born Dick Smith (September 29, 1901 - September 28, 1935) wrote the lyrics to the popular song Winter Wonderland, which was composed by [a=Felix Bernard].Needs Votehttps://en.wikipedia.org/wiki/Richard_Bernhard_Smithhttps://susquehannavalley.blogspot.com/2019/12/winter-wonderland-was-written-by.htmlhttps://adp.library.ucsb.edu/names/114083A. SmithB. Richard SmithB. SmithBernardBernard SmitsBernhard SmithC.C. SmithD SmithD. K. K. SmithD. K. SmithD. SMithD. SmithD.SmithDickDick R. SmithDick SmitDick Smith aka Richard SmithDix SmithF. SmithH. SmithPick SmithR B SmithR SmithR. B. D. SmithR. B. SmithR. SmithR.B. SmithR.SmithRicharcd B. SmithRichard B SmithRichard B. Dick SmithRichard B. SmithRichard B., SmithRichard B.Dick SmithRichard Bernhard SmithRichard D. SmithRichard S. SmithRichard SmithRobert B. SmithRobert SmithSmithSmith DickSmith, RichardSmityР.Б. СмитRichard Bernhard Smith + +583504Felix BernardFelix William BernhardtAmerican conductor, pianist and composer of popular music. + +Born: April 28, 1897 in New York City, NY. +Died: October 20, 1944 in Los Angeles, California. + +His writing credits include the popular songs "Winter Wonderland" (with lyricist Richard B. Smith ([a=Dick Smith (3)]) and "Dardanella."Needs Votehttps://en.wikipedia.org/wiki/Felix_Bernardhttps://www.imdb.com/name/nm0076220/https://adp.library.ucsb.edu/names/108732A. BernardB. FelixBarnardBenardBernaodBernardBernard FelixBernard, FelixBernaudBernhardBernhard F.BregmanE. BernhardF BernardF. BarnardF. BerardF. BerhardF. BernanF. BernardF. BernardiF. BernardoF. BernareF. BernhardF. bernardF.BenrardF.BernardFekix BernardFeli & BernardFelicks BernardFelixFelix BarnardFelix BenardFelix BernardtFelix BernhardFelix BernhardtFelix BrownFeliz BernardFelux BernardFeuzFélix BernardJ. BernhardtRernardS. BernardVernardW. BemardБернарФ. Бернардバーナード + +583506J. Fred CootsJohn Frederick CootsAmerican songwriter, born May 2, 1897 in Brooklyn, New York, USA, died April 8, 1985 in New York City, New York, USA. He wrote over 700 songs, including his biggest hit "Santa Claus Is Comin' to Town." +Needs Votehttp://en.wikipedia.org/wiki/John_Frederick_Cootshttps://adp.library.ucsb.edu/names/106489C. CootsC. VotsCatsCoatesCoatsCocksCodsCookCookeCooksCoolCooleCoolsCoorsCoostCootCooteCootesCootfCootsCoots - FredCoots FredCoots Fred J.Coots J FredCoots J.Coots J. FredCoots, John FrederickCostsCotsCoutsCouttsF .J. CootsF CootsF J CootsF. CoatsF. CooksF. CooteF. CootesF. CootsF. CotesF. F. CootsF. HootsF. J. CootsF. KutsF.CootsF.F. CootsF.J. CootesF.J. CootsF.J.CootsF.KutsFJ CootsFed. J. CootsFredFred CoatesFred CoatsFred CoodsFred CookeFred CootFred CootsFred CosstFred CotsFred CoutsFred J CootsFred J. CoatsFred J. CootsFred S. CootsFred-CootsFred. CootsFrederick J. CootesFreed - CootsFreed CootsFreed-CootsG. Fred CootsGootsH.F. CootesI Fred, CootsI. F. CootsJ CootsJ F CootsJ Fred CootsJ-F. CootsJ. F. CootsJ. CoatsJ. CoolsJ. CootesJ. CootsJ. E. CootsJ. F, CootsJ. F. CootJ. F. CooteJ. F. CootsJ. F. GootsJ. F.CootsJ. FcootsJ. Fr. CootsJ. Fred CarterJ. Fred CoatsJ. Fred CookeJ. Fred CoorsJ. Fred CootJ. Fred CooteJ. Fred CootesJ. Fred CottsJ. Fred GootsJ. Fred. CootsJ. Fred/CootsJ. FredcootsJ. Fredd CootsJ. Frederick CootsJ. Freed CootsJ. FreedcootsJ. K. CootsJ. K.CootsJ. LootsJ. S. CootsJ. Tred CootsJ.-F. CootsJ.CoolsJ.CootsJ.F. ClootsJ.F. CoatesJ.F. CoatsJ.F. CoodsJ.F. CoostJ.F. CootesJ.F. CootsJ.F. CotsJ.F. CowlsJ.F. KootsJ.F.CootsJ.F.クーツJ.Fred CootsJ.K. CootsJ.S. CootsJF CoatsJF CootsJay Fred CootsJoe Fred CootsJohnJohn CootsJohn F. CootsJohn Fred CootsJohn FrederickJohn Frederick CootsJohn Frederik CootsJohn Fredrick CootsJs CootsK CootsKFrederik John CootsKootsL. CootsL. F. CootsLoostLootsM.J. Fred CootsS. CootsT. F. CootsT. Fred CootsTootsДж.Ф. КутсФ. Кутсクーツコーツジェー・フレッド・クーツフレッド・クーツ + +583802Carl SigmanCarl SigmanAmerican lyricist and songwriter, born on September 24, 1909 in Brooklyn, NY, United States, died on September 26, 2000 in Manhasset, Long Island, NY, United States. Although Sigman wrote many song melodies, he was primarily a lyricist who collaborated with songwriters such as Bob Hilliard, Bob Russell, Jimmy van Heusen, and Duke Ellington. + +Needs Votehttp://en.wikipedia.org/wiki/Carl_Sigmanhttps://adp.library.ucsb.edu/names/103873B. SigmanBarl SigmanC SigmanC SigmansC ZiegmannC, SigmanC. CigmanC. FigmanC. SIgmanC. SegmanC. SiegmanC. SiegmannC. SigmaC. SigmamC. SigmanC. SigmannC. SigmansC. SigmonC. SigmondC. SigmundC. SignamC. SignanC. SimanC. StigmanC. ZiegmannC.SigmanC.SigmannC.V. SigmanCar SigmanCari SigmanCarlCarl FigmanCarl SegmanCarl SicmanCarl SiegmanCarl SiegmannCarl SifmanCarl SiganCarl SigmaCarl Sigman-IciniCarl SigmandCarl SigmannCarl SigmonCarl SigmundCarl SimonCarl SingmanCarl SiomanCarl SixmanCarl StigmanCarlSigmanCarlos SigmanCarol SigmanCarr SigmanCart SigmanEigmanFigmanG SigmondG SigmundG. SigmanG. SigmondG. SigmundG.SigmondGigmanGimbelGismanK. SeigmanK. SiegmanK. SigmanK. SygmenKarl SiegmanKarl SigmanL. & C. SigmanLigmanM. SigmanN. Karl SigmanP. SigmanRayburnSS. CarlS. SigmanSIgmanScarnicciSegmanSegmonSeigmanSeligmanSidgemanSidmanSiegmanSiegmannSiegmansSiemanSigmaSigmanSigman CarlSigman, C.Sigman, CarlSigmannSigmann KarlSigmansSigmarSigmonSigmondSigmondoSigmunSigmundSignamSignanSignmanSimanSingmanSismanSismonStigmanStillmansigmanК. СигманК. СигмэнС. ЛигманС. СигменСигманСигменシグマン + +583803Jacques PrévertJacques André Marie PrévertFrench poet and screenwriter. +Brother of the Director and screenwriter [A=Pierre Prévert] +Born: 4 February 1900 in Neuilly-sur-Seine, France. +Died: 11 April 1977 in Omonville-la-Petite, France. +Correcthttp://xtream.online.fr/Prevert/indexeng.htmlhttp://en.wikipedia.org/wiki/Jacques_Préverthttps://adp.library.ucsb.edu/names/102352A. PrevertA.PrevertAndre PrevertAndre PrévertAndré Jacques PrevertH. PrevertIrevertJ .PrévertJ PrevertJ, PrevertJ. PrévertJ. A. PrevertJ. A. PrévertJ. PevertJ. Pre'vertJ. PreveitJ. PreventJ. PreverJ. PrevertJ. PrevetJ. PrevértJ. PrezertJ. PrèvertJ. PréventJ. PrévertJ. PrévetJ.A. PrevertJ.A.M PrevertJ.A.M. PrevertJ.PrevertJ.PrévertJack PrevertJackques PrevertJacque Andres M. PrevertJacque PrevertJacquesJacques Andre M. PrevertJacques Andre MarieJacques Andre Marie PrevertJacques Andre Marie PrévertJacques Andres M. PrevertJacques Andres PrevertJacques Andrew M. PreveatJacques André Marie PrévertJacques GrevertJacques PrebertJacques PrevertJacques PrevértJacques PrèvertJacques PréveritJacquese PrévertJagues PrevertJakoms Zsák PrenertJaques PrevertJaques PrévertJasques PreventJasques PrevertJasques TrevertJoseph PrevertL. PrevertOrevertPPervartPervertPevertPievertPraevertPrevartPreventPrevent JjaquesPreverPreversPrevertPrevert Jacques Andre MariePreveryPrevestPrevetPrevostPrevretPrevértPrewertPrivertProvertPrèvertPréventPrévertPrévert J.PrévestT. PrévertZhak Preveracques Andre M. Prevertwg. J. PrevertaŽ. PreverŽ. PreverasŽ. PrevērsŽ. Ž. PreverŽak PreverŽakas PreverasΖακ ΠερβέρΖακ ΠρεβέρЖ. ПреверЖак ПреверПреверז׳אק פרוורジャック・プレヴェールプレヴェール + +583867Nicholson (2)Carl NicholsonTrance / Tech Trance moniker used by UK Hard House / Hard Trance DJ & producer Carl Nicholson since 2013. +Contact: nicholson@nicholsonworld.net / djcarlnicholson@hotmail.comNeeds Votehttp://www.nicholsonworld.net/http://www.facebook.com/NicholsonHardTrancehttp://twitter.com/carlnicholsonhttp://myspace.com/carlnicholsonhttp://soundcloud.com/nicholsonofficialhttp://open.spotify.com/artist/7ak5W5CiG11tI24HVUJlqwCarl Nicholson + +583932Gary LevinsonRussian violinist born in St. Petersburg. In 1977, he immigrated to the United States and joined the New York Philharmonic in 1988. He left the orchestra in 2002 and became concertmaster for the [a832934]. Today, he is also musical director of the [a4732485].Needs Votehttp://www.glevinson.com/https://www.facebook.com/gary.levinsonhttps://twitter.com/glevinsonhttps://www.youtube.com/channel/UCL3YY9RvdyY755cacmeHe4gGarry LevinsonNew York PhilharmonicDallas Symphony Orchestra + +583935Lisa KimLisa Eunsoo KimAmerican classical violinist born in Raleigh, North Carolina. She joined the New York Philharmonic in September 1994. Previously she played with the Grant Park Orchestra.Needs Votehttps://nyphil.org/about-us/artists/lisa-kimhttps://rateyourmusic.com/artist/lisa-kim/Lisa E. KimLisa Eunsoo KimLisa G KimLisa G. KimLisa Gi-Hae KimLisa Gihae KimNew York PhilharmonicAkron Symphony OrchestraNew York Chamber ConsortGrant Park OrchestraAvatar StringsStone Hill Strings + +584027Bill DillardWilliam Dillard.American jazz trumpeter and singer. + +Born : July 20, 1911 in Philadelphia, Pennsylvania. +Died : January 16, 1995 in Manhattan, New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Bill_Dillardhttps://www.allmusic.com/artist/bill-dillard-mn0001201990/biographyhttps://adp.library.ucsb.edu/names/109422B. DillardBill DilardFrank DillardBenny Carter And His OrchestraColeman Hawkins And His OrchestraSpike Hughes And His Negro OrchestraDickie Wells And His OrchestraTeddy Hill OrchestraClarence Williams' Jazz KingsTeddy Hill And His NBC Orchestra + +584035Richard "Dick" FullbrightRichard W. FulbrightAmerican jazz bassist and tuba player, born 1901 in Paris, Texas, died November 17, 1962 in New York City, New York.Needs Votehttps://www.allmusic.com/artist/richard-dick-fullbright-mn0001661770https://adp.library.ucsb.edu/names/111983https://adp.library.ucsb.edu/names/316652Dick FulbrightDick FullbrightR. FullbrightRichard Dick FullbrightRichard FulbrightRichard FullbrightRoss De Luxe SyncopatersFrankie Newton And His Uptown SerenadersClarence Williams And His OrchestraDickie Wells And His OrchestraTeddy Hill OrchestraClarence Williams' Jazz KingsJimmy Johnson And His OrchestraTeddy Hill And His NBC OrchestraWillie "The Lion" Smith & His Orchestra + +584037Max BlancSaxophonist and flutistNeeds VoteM. BlancMax BlanxQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreDjango's MusicPhilippe Brun And His Swing BandNoel Chiboust Et Son OrchestreHubert Rostaing - Aimé Barelli Et Leur OrchestreDjango Reinhardt Et Son OrchestreRichard Blareau Et Son OrchestreLe Jazz De ParisAlex Renard Et Son OrchestreFred Adison Et Son OrchestreThe Hot Club Swing StarsCharles Hary Et Son OrchestreArmand Molinetti Et Son OrchestreLe Septuor Jazz De Paris + +584049Jean StorneDouble bassist.Needs VoteJ. StorneJean StormJean StormeStorneQuintette Du Hot Club De FranceEddie Barclay Et Son OrchestreDany Kane Et Son EnsembleMichel Warlop Et Son OrchestreLouis Richardet Et Son EnsembleDjango Reinhardt Et Son OrchestreJerry Mengo Et Son OrchestreLouis Richard-Day's Accordion Swing QuartetteAndré Ekyan Et Son SwingtetteJerry Mengo Et Ses Solistes Du Jazz De Paris + +584051Bill BeasonWilliam Beason.American jazz drummer. + +Born : March 06, 1908 in Louisville, Kentucky. +Died : August 15, 1988 in New York City. +Needs Votehttps://en.wikipedia.org/wiki/Bill_Beasonhttps://adp.library.ucsb.edu/names/110397B. BeasonBeasonBilly BeasonJohn Kirby And His OrchestraChick Webb And His OrchestraElla Fitzgerald And Her Famous OrchestraDon Redman And His OrchestraDickie Wells And His OrchestraTeddy Hill OrchestraClarence Williams' Jazz KingsJimmy Johnson And His OrchestraTeddy Hill And His NBC OrchestraPutney Dandridge And His OrchestraBuster Bailey's Six + +584452Dennis NodayTrumpet player. +Big band leaderNeeds VoteD. NodayDennis ModayNodayStan Kenton And His OrchestraStan Kenton Alumni BandThe Mike Vax Big BandThe Dennis Noday Orchestra + +584834Joachim BischofClassical cellist.CorrectBischofStaatskapelle DresdenVirtuosi SaxoniaeDresdner Kammersolisten + +585336Joe LipmanJoseph P. LippmanAmerican jazz pianist, composer and bandleader. +Born April 23, 1915 in Boston, Massachusetts, USA. +Died January 21, 2007 (aged 91) in Los Angeles, California, USA. +He began playing music at the age of seven. His musical career was over five decades long, having started at age 19, quitting college after two weeks to join the Benny Goodman orchestra in 1934 and writing for television, films, and Broadway in the 1980s. He played piano and arranged for Goodman. He composed and arranged for Bunny Berigan, Jimmy Dorsey, Sarah Vaughan, Charlie Parker and worked as staff arranger in television for Perry Como and the television variety program [i]Hollywood Palace[/i]. Lipman was hired to write arrangements for Perry Como's first album, [i]So Smooth[/i], the beginning of a long, successful collaboration (including 8 albums together). Lipman worked on Como's staff from 1957 to 1962 for Perry Como's Kraft Music Hall. +Just a couple among numerous of his best known arrangements include "Home for the Holidays" by Perry Como and "I Can’t Get Started" by Bunny Berigan, one of the most famous recordings of the band era, which hit #10 on the U.S. charts in 1938. +He won an Academy Award for Best Music, Score of a Musical Picture for [i]Hello Dolly![/i] and was nominated for two Emmy Awards--for Individual Achievements In Music - Arranging in 1966 and Outstanding Achievement in Music Direction in 1980.Needs Votehttps://en.wikipedia.org/wiki/Joe_Lipmanhttp://worldcat.org/identities/lccn-no2001055091/https://www.allmusic.com/artist/joe-lipman-mn0001657796/creditshttps://www.imdb.com/name/nm0513515/https://www.rodny.cz/?id=a585336https://adp.library.ucsb.edu/names/111604AJ. LipmanJ. LippmanJoe LipmannJoe LippmanJoe LippmannJoseph LipmanLipmanLippmanДж. ЛиппманДжо ЛипманС. ЛипманBunny Berigan & His OrchestraArtie Shaw And His OrchestraCharlie Parker And His OrchestraJimmy Dorsey And His OrchestraBenny Goodman And His OrchestraJoe Lipman & His OrchestraBunny Berigan And His MenArtie Shaw And His StringsBill Staffon And His Orchestra + +585430Lew DavisBritish jazz trombonist (born August 04, 1903 in London, England - died November 24, 1986 in London, England). + +Not to be confused with the American composer and bandleader [a=Lew Davies].Needs VoteDavisLew DaviesJack Hylton And His OrchestraBenny Carter And His OrchestraAmbrose & His OrchestraLew Stone And His BandLew Stone & The Monseigneur BandSavoy Hotel OrpheansJack Harris & His OrchestraRonnie Munro & His OrchestraLouis de Vries And His Rhythm BoysLew Davis Trombone Trio + +585579Stomu Yamash'ta山下勉 (Yamashita Tsutomu)Japanese percussionist, keyboardist, composer, and experimental artist, probably best known for his work leading the jazz-rock fusion group Go, which released three albums in 1976-77. + +Born March 15, 1947 in Kyoto, he studied at the Kyoto Academy of Music and made his solo concert debut at the age of 16. From 1964-1969 he studied in the United States with both jazz and classical musicians. His earliest releases were interpretations of classical music or neo-classical pieces written especially for him. His 1971 album "Red Buddha" is an avant-garde all percussion solo work which has been repeatedly reissued. + +Beginning in 1972 Yamash'ta began recording jazz-rock fusion albums blended with Japanese traditional influences. He released "Floating Music" (1972) with a short-lived band called [a=Come To The Edge]. In 1973 he formed [a=Stomu Yamash'ta's East Wind], a band which included keyboardist [a=Brian Gascoigne], guitarist [a=Gary Boyle], and bassist [a=Hugh Hopper]. This group released two albums, "Freedom Is Frightening" (1973) and the soundtrack "One By One" (1974). Gascoigne and Boyle also played on his next album, "Raindog" (1975), with vocals by [a=Murray Head] and [a=Maxine Nightingale]. Next came [a=Stomu Yamashta's Go], a fusion super group including [a=Steve Winwood], [a=Al Di Meola], [a=Klaus Schulze], and [a=Michael Shrieve]. + +After a brief retirement at a Buddhist temple Yamash'ta returned to classical concert halls and began recording ambient music with Japanese influences. His "Iroha" series included a disc dedicated to musical interpretations of each of the ancient elements (earth, wind, water, fire). He also recorded the soundtrack album "Tempest" (1982). The only album from this period to receive worldwide release and distribution was "Sea and Sky" (1985). During the 1990s he released a three volume CD series, "Solar Dream", and began a new series called "Listen To the Future" in 2001.Needs Votehttp://www.furious.com/perfect/stomuyamashta.htmlhttp://ja-jp.facebook.com/pages/Stomu-Yamashta/104057829629519https://en.wikipedia.org/wiki/Stomu_Yamashtahttps://www.rockzirkus.de/blog/2020/06/stomu-yamashta-trifft-steve-winwood/https://ja.wikipedia.org/wiki/%E3%83%84%E3%83%88%E3%83%A0%E3%83%BB%E3%83%A4%E3%83%9E%E3%82%B7%E3%82%BFhttps://www.music-info-net.com/pro/ayers-rock/2610048_nippon-rock-stomu-yamash-ta-go-jp-xxhttps://www.allmusic.com/artist/stomu-yamashta-mn0000622185https://www.progarchives.com/artist.asp?id=2959Mind Music In Stomu Yamash'taS. Yamash'taS. ヤマシタStomu YamashitaStomu YamashtaTsutomu YamashitaYamash'taYamashtaツトム ヤマシタツトムヤマシタツトム・ヤマシタStomu Yamashta's GoCome To The EdgeStomu Yamash'ta's East WindStomu Yamash'ta's Red Buddha TheatreYamash'ta & The Horizon + +585657Gerhard SchröderFrench Horn and Horn player.Needs VoteRadio-Symphonie-Orchester BerlinSebon-Quintett + +585663Paul ThiessenGerman violinist.CorrectBamberger Symphoniker + +585734Nancy Allen (2)Nancy AllenAmerican harpist, born in 1954 in Carmel, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Nancy_Allen_(harpist)AllenNancy AllenNew York PhilharmonicOrpheus Chamber Orchestra + +585918Adrian LevineViolinistNeeds VoteAdrian LevinEnglish Chamber OrchestraGemini LondonMichaelangelo Chamber Orchestra + +586444Dick TwardzikRichard Henryk TwardzikAmerican jazz pianist and composer +Born April 30, 1931 in Danvers, near Boston, MA +Died October 21, 1955 in Paris, France +Debuted at 14, performed with Serge Chaloff and studied with his piano teacher mother, Madame (Margaret) Chaloff. Also played with Herb Pomeroy, Charlie Mariano, Charlie Parker, Sonny Stitt and others. Solo performances and recordings in 1954. In 1955, with Chet Baker on a European tour; died from a heroin overdose in a Paris hotel.Needs VoteD. TwardzikDick TwardzickR. TwardzickR. TwardzikRichard "Dick" TwardzikRichard TwardzickRichard TwardzikTwardzickTwardzikChet Baker QuartetDick Twardzik TrioThe Serge Chaloff Orchestra + +586595Todd CerneyTodd David CerneyAmerican singer/songwriter, composer, guitarist, producer and mixing engineer, born Aug. 8, 1953 in Detroit, Michigan, USA, died Mar. 14, 2011 in Nashville, Tennessee, USA.Needs Votehttp://www.toddcerney.com/http://www.myspace.com/toddcerneycomCerneyT. CarneyT. CerneyT. GerneyTod CerneyTodd CarneyTodd CernyTodd David CerneyNashville Mandolin Ensemble + +586602Bill LaBountyWilliam LaBountyAmerican singer / songwriter and musician. He's known to have collaborated with [a347735] on some songs. LaBounty is married to [a740411]. + +'William La Bounty' per BMI.Needs Votehttp://www.billlabounty.com/https://www.westcoast.dk/artists/l/bill-labounty/http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=190744&subid=1https://en.wikipedia.org/wiki/Bill_LaBountyB. La BountyB. LaBonteB. LaBountyB. LabountyB.La BountyB.LaBountyBill BountyBill La BountyBill LaBontyBill LabountyBilly La BountyBilly LaBountyDill LaBountyLa BountyLaBountyLabountyLe Bountyビル・ラバウンティFat Chance (3) + +586629Virginie BuscailFrench violinistNeeds Votehttps://www.facebook.com/virginie.buscail.5Orchestre De MassyOrchestre Philharmonique De Radio FranceTrio George Sand + +586634Aurélia Souvignet-KowalskiFrench violistNeeds VoteAurélia KowalskyAurélia Souvignet KowalskiAurélia Souvigné KowalskiSouvignet AuréliaOrchestre Philharmonique De Radio FranceAntigone Quartet + +587098J. Alfred TannerJohan Alfred "Affu" TannerBorn on March 16, 1884 in Artjärvi, Finland. A Finnish lyricist and couplet singer. + +Died on May 27, 1927 in Rautalampi, Finland. +Needs Votehttps://adp.library.ucsb.edu/names/209998A. TannerA.J. TannerA.TannerAlf. TannerAlfred J. TannerAlfred TannerI. TannerJ. Alfr. TannerJ. A. TannerJ. Aflr. TannerJ. Alf TannerJ. Alf. TannerJ. Alfr. TannerJ. Alfr.TannerJ. Alfrd. TannerJ. TannerJ.A. TannerJ.A.TannerJ.Alfred TannerJ.TannerJohan Alfred TannerTannerJ. Alfred Tanner Ystävineen + +587115Pierre DelanoëPierre Charles Marcel Napoléon LeroyerFrench lyricist, born 16 December 1918 in Paris, France and died 27 December 2006 in Paris, France. +He penned hundreds of songs during his career, sung by many of the most popular singers of "variété française": [a=Gilbert Bécaud], [a=Michel Sardou], [a=Dalida], [a=Joe Dassin], [a=Michel Polnareff] or [a=Nana Mouskouri] amongst many others. He also translated many of [a=Petula Clark]'s English songs into French.Needs Votehttp://en.wikipedia.org/wiki/Pierre_Delanoëhttps://adp.library.ucsb.edu/names/363116A. DelanoeA. DelanoëB. DelanoëBelanoeC. P. DelanoC. P. DelanoeC. P. LeroyerC.P. DelanoC.P. DelanoeC.T. DelanoC.T.DelanoD. DelanoëD.DelanoëDalanoDalanoeDalanoëDe La NoeDe La NouDe La NoèDe La NoéDe La NoëDe LanceDe LanoeDe LanoéDe LanoëDe la NouDe la NoéDe la NoëDeLanceDeLandeDeLanoDeLanoeDealanoeDealnoeDebonceDecandeDelDel AnowaDelaNoeDelabceDeladeDelahoeDelamoeDelanauDelanceDelancheDelancoDelandeDelandoDelandèDelandéDelaneDelangeDelannoyDelannoéDelanoDelanocDelanoeDelanoe P.Delanoe PierreDelanoe, P.Delanoe/DelanoeDelanoiDelanoieDelanorDelanosDelanoxDelanoèDelanoéDelanoêDelanoëDelanoë P.DelanoлDelanoёDelanseDelanséDelanèDelanöeDelaoneDelaoéDelaundeDelauoDelaureDellanoeDelnoëDenaloeDeneloeDolanoeDélanoeDëlanoeEelanoeF. DelanoF. DelanoeF. DelanoëG. DelanoëJ. DelanoeJ. DelanoëLanoeLasarLelangeM. N. LeroyerMarcelMarcel DelanosNoeO. DelanoeP .DelanoéP De La NoéP DelanoeP DelanoéP DelanoëP. DelanoeP. DelanoëP. de la NoëP. DalamoeP. DalanceP. DalanoeP. De La NoeP. De La NolP. De La NoéP. De La NoëP. De La NöeP. De LanceP. De LancéP. De LandéP. De LanoeP. De LanoéP. De LanoëP. De la NoeP. De la NoëP. DeLanceP. DeLandeP. DeLanoeP. DealnoeP. DeanceP. Del AnoeP. Dela NoeP. DelaméP. DelananoëP. DelanaoëP. DelanceP. DelancéP. DelandeP. DelandéP. DelangeP. DelannoéP. DelannoëP. DelanoP. DelanoeP. DelanoiP. DelanoieP. DelanoirP. DelanosP. DelanoèP. DelanoéP. DelanoêP. DelanoëP. DelanoëeP. DelanoёP. DelanéP. DelanöeP. DelanöéP. DelanœP. DelaonëP. DelaveP. DelawdeP. DelawoeP. DelenoP. DelenoéP. DellanoeP. DellanoieP. DellanoëP. DelnoëP. DelnöeP. DeloneP. DelonnetP. DelonoeP. DemanoëP. DenaloëP. DilanoeP. DolanoeP. DélanoéP. GelanøP. LanoëP. LelanoeP. LeroyerP. MartinP. OelanoeP. Pierre DelanoëP. TelanoeP. de La NoéP. de La NoëP. de LanoeP. de LanoëP. de la NoeP. de la NoéP. de la NoêP. de la NoëP. de la NöeP..DelanoeP.De La NoëP.DelanceP.DelanoeP.DelanoèP.DelanoéP.DelanoëP.DelanöeP.PelanoeP.de la NoeP.de la NoéP.de la NoëPelanoePete DelanoePi. DelanoëPier De La NoePier DelanoePierrePierre DalnoePierre De La NoePierre De La NoéPierre De La NoëPierre De LanoePierre De LanoéPierre De LanoëPierre De la NoëPierre DeLanoePierre Dela NoePierre DelancePierre DelandePierre DelandéPierre DelanePierre DelangePierre DelanoPierre DelanoePierre DelanonePierre DelanoèPierre DelanoéPierre DelanöePierre DelenoëPierre DelonoePierre DemanoëPierre DélanoaPierre LeRoyePierre LelangePierre LeroyerPierre de LanoePierre de LanoëPierre de la NoePierre de la NoéPierre de la NoëPierreo DellanoePierrre DelandePîerre DelanoeT. DelanoeT. DelonoeV. Buggyde Lanoede la Delanoéde la Noede la Noëp. Delanoep. delanoëДеланоаДеланоэДелануаДеланцаЖ. ДелануаН. ДеланоеНоэП. Де-Ла-НоеП. ДеланзП. ДеланоП. ДеланоеП. Деланое = P. DelanoeП. Деланэפ. דלנופ. דלנויפייר דלנואהピエール・ドラノエPierre Leroyer + +587167Andrew DavisSir Andrew Francis Davis CBEBritish conductor and organist. +Born: 2nd February 1944 Ashridge, Hertfordshire, UK. +Died: 20th April 2024 Chicago, Illinois, USA. +Musical director of the Glyndebourne Festival from 1988 to 2000, chief conductor of the [a=BBC Symphony Orchestra] from 1989 - 2000 (the second longest tenure of the post after [a=Sir Adrian Boult]) and Music Director of [a4618521] from 2000 -2021. +Appointed CBE in 1992 and knighted in 1999. Husband of soprano [a=Gianna Rolandi] who died in 2021.Needs Votehttps://www.sirandrewdavis.com/https://en.wikipedia.org/wiki/Andrew_Davis_(conductor) https://www.imdb.com/name/nm0204164/A DavisAndrew Davis, ConductorDavisS DavisSir A. DavisSir Andrew DaviesSir Andrew DavisЭндрю Дависアンドリュー・デイヴィスEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-Fields + +587330Sabine BretschneiderClassical violinist.Needs VoteDR SymfoniOrkestret + +588110Clarence AndersonAmerican jazz pianist. Died in the mid-1960s in Chicago, Illinois, USA.Correct"Sleepy" AndersonAndersonClarence "Sleepy" AndersonClarence 'Sleepy' AndersonClarence (Sleepy) AndersonS. AndersonSleepy AndersonQuincy Jones And His OrchestraSonny Stitt QuartetGene Ammons And His Band + +588115Sid BassAmerican songwriter and orchestra leader. +A&R executive and producer at [l46437], [l176671] and [l895]. + +Born January 22, 1913 in New York City, New York, USA. +Died June 19, 1993 in Putney, Vermont, USA. +Bass majored in music at the New York University. He spent three years in the Army Air Corps where he led several musical combos from the piano, playing hospital wards, radio shows, and officer events.Needs Votehttp://jerseyboysblog.com/the-sherry-50th-celebration-continues-who-is-sid-bass/6295#.Y3qx7ZrMLrchttps://www.spaceagepop.com/bass.htmhttps://fromthevaults-boppinbob.blogspot.com/2014/01/sid-bass-born.htmlhttps://adp.library.ucsb.edu/names/106422BassS. BassSid Bass And His OrchestraSid Bass QuintetSid Bass BandSid Bass And His Orchestra and ChorusSid Bass Chorus + +588622Ilan VolkovOrchestral conductor, born September 8, 1976 in Tel Aviv, Israel. +He was appointed Young Conductor in Association to the Northern Sinfonia at the age of nineteen. In 1997 he became Principal Conductor of the London Philharmonic Youth Orchestra and two years later was invited by Seiji Ozawa to join the [a395913] as Assistant Conductor. He was Chief Conductor of the [a835546] from 2003 to September 2009, subsequently becoming Principal Guest Conductor. In January 2011, the [a867852] named Volkov as its 9th chief conductor and music director. With jazz musician [a317396] he is also one of the guiding forces behind [l366115], a performance venue in Tel Aviv that brings together differing musical genres +He has a daughter with his partner, pianist/singer/composer [a1597378].Needs Votehttps://en.wikipedia.org/wiki/Ilan_Volkovhttps://www.naxos.com/person/Ilan_Volkov/31450.htmVolkovאילן וולקובBoston Symphony OrchestraBBC Scottish Symphony OrchestraIceland Symphony Orchestra + +588656Elisabeth PallasFrench violinist.Needs VoteE. PallasElizabeth PallasÉlisabeth PalasÉlisabeth PallasLes EnfoirésOrchestre National De L'Opéra De ParisParis Symphonic Orchestra + +588657Françoise GneriFrench viola playerNeeds Votehttp://fgneri.com/F. GneriF. GneryF. GnériFrancoise GneriFrançoise GneryFrançoise GnériOrchestre De ParisLes Archets De Paris + +589190Clare HayesClare HayesViolinist.Needs Votehttps://www.resonusclassics.com/clare-hayesClaire HayesCity Of London SinfoniaThe Emperor String QuartetLondon Mozart PlayersThe London Scratch OrchestraThe New Blood OrchestraMichaelangelo Chamber Orchestra + +589191Fiona BondsClassical viola player from the UKNeeds Votehttps://www.facebook.com/fiona.bondsCity Of London SinfoniaThe Emperor String QuartetThe London Telefilmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Scratch OrchestraThe New Blood Orchestra + +589192William SchofieldWilliam SchofieldCellist.Needs Votehttps://www.imdb.com/name/nm0774556/SchofieldWill SchoffieldWill SchofieldWill schofieldCity Of London SinfoniaThe Emperor String QuartetThe Michael Nyman BandThe Michael Nyman OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Scratch OrchestraThe New Blood Orchestra + +589715Edward Holland, Jr.Edward J. Holland, Jr.American Soul/Funk songwriter and producer +As singer, he was an early [l1723] artist who recorded minor hit singles. +Part of the acclaimed 1960-70's US songwriting/production team +with his brother [a=Brian Holland] and [a=Lamont Dozier], known as [a=Holland-Dozier-Holland]. + +Born: 30 October 1939 in Detroit, MichiganNeeds Votehttp://en.wikipedia.org/wiki/Eddie_Hollandhttps://www.imdb.com/name/nm0390595/https://eu.detroitnews.com/story/news/local/detroit-city/2017/12/06/motown-great-eddie-holland-penniless-tax-bill/108383710/B. HollandB. Holland, Jr.D. HollandE HollandE. & B. HollandE. HolandE. HollandE. Holland Jr.E. Holland JnrE. Holland Jnr.E. Holland JrE. Holland Jr.E. Holland JuniorE. Holland,E. Holland, Jnr.E. Holland, Jr.E. HollandsE. HowardE. J. HollandE.HollandE.J. HollandEdddie HollandEddei HollandEddie HollandEddie HolandEddie HollandEddie Holland & GroupEddie Holland JrEddie Holland Jr.Eddie Holland, Jr.Eddie J Holland JrEddie J. HollandEddie Jr. HollandEddie hollandEdie HollandEdward HollancEdward HollandEdward Holland JnrEdward Holland Jnr.Edward Holland JrEdward Holland Jr.Edward Holland, Jnr.Edward Holland, JrEdward J HollandEdward J Jr HollandEdward J. HollandEdward J. Holland Jr.Edward J. Holland, Jr.Edward J.HollandEdward J.Holland Jr.Edward James Holland Jr.Edward Jr HollandEdward Jr. HollandEdward Jr.HollandEdwards Holland, JrEdwards J. Holland Jr.Edwie HollandF. Holland, Jr.G. HollandG.HollandHallardHolandHolladHollanHollandHolland EdwardHolland JrHolland Jr.Holland, E Jr, Holland, EHolland, Jr.HowardJ. HollandJerome HollandJr.N. HollandT. HollandollandДж. ЕдуардДж. ЭдуардИ. ХоландBriant HollandHolland-Dozier-Holland + +589878Annemone HaaseAnnemone HaaseGerman actress, born 13 November 1930 in Breslau, Germany (today Wrocław, Poland).Correcthttp://de.wikipedia.org/wiki/Annemone_HaaseA. Haase + +589890Felix SchröderGerman classical keyboard instrumentalistNeeds VoteF. SchröderFelix SchroederSchröderSchröederRadio-Symphonie-Orchester Berlin + +589903Pekka HelasvuoPekka HelasvuoBorn 1948. A Finnish violinist and conductor.CorrectHelasvuoペッカ・ヘラスヴオ + +589906Toivo KärkiToivo Pietari Johannes KärkiFinnish composer, musician, pianist, producer and arranger, born December 3, 1915 in Pirkkala, Finland; died April 30, 1992 in Helsinki, Finland. He worked very often with lyricist [a=Reino Helismaa]. + +About 1400 of his compositions has been recorded, many of them several times in different versions. He also composed music for films, plays and radio. + +Like many other Finnish composers and lyricists, he also had a bunch of pseudonyms: Kari Aava, Antonio Brave, C. Kaparov, Vesa Lehti, Matti Metsä, Martti Ounamo, Pedro De Punta, Sulo Sointu, Karl Stein, W. Stone, Markku Tienoja, Esko Tuulimäki, Vasara and Orvokki Itä. Some of the pseudonyms have been used by both Kärki and Helismaa, but in different occasions. +Needs Votehttp://www.toivokarki.netIoivo KarkiKärkiKärki ToivoKärki Toivo Pietari JohannesM. OunamoT KärkiT, KärkiT. KarkiT. KárkiT. KärkiT. KärriT.KärkiToivi KärkiToivo KarkiToivo Kärk.Toivo Kärki OToivo-tonttuTopi KärkiTorvo Karkit. KärkiТ. КаркиC. KaparowMartti OunamoKari AavaPedro De PuntaAntonio BraveRainer KiskoKarl SteinW. StoneEsko TuulimäkiMatti MetsäOrvokki Itä (2)Ramblers-OrkesteriRytmin Swing-YhtyeToivo Kärjen YhtyeToivo Kärjen Sekstetti + +590071Petra LeipertGerman soprano vocalist, born in 1956 in Wilkau-Haßlau, GDR.Needs VoteRundfunkchor BerlinRundfunk-Kinderchor Berlin + +590139Catherine BonnevayNeeds VoteCatherineCatherine BonnevoyCatherine WelchCocktail ChicLes FléchettesLes OP'4Chance (19) + +590464Seppo TukiainenSeppo Kalevi Mikael TukiainenBorn on June 28, 1939 in Helsinki, Finland. A Finnish violinist who started his professional career in the early 1970s. Died on August 16, 2022 in Helsinki, Finland.Needs VoteFinlandia QuartetThe Sibelius Academy Quartet + +590470Matti KoskialaMatti KoskialaFinnish drummer and percussionist. Born on March 22, 1941 in Helsinki, Finland and died on July 24, 2025 in Helsinki, Finland.Needs VoteKoskialaHeikki Sarmanto SextetOrkesteri OivaKardemumman Orkesteri Ja KuoroSuomi-VPK-OrkesteriJohanna Almark With Friends"Menneiltä Ajoilta" Studioyhtye + +590880Eugene PistilliEugene Thomas PistilliEugene "Gene" Pistilli +American Country, Rock and Soul songwriter and composer. + +Born: 1916 in Hoboken, New Jersey +Dead: December 26, 2017 in Fairview, New JerseyNeeds Votehttps://twitter.com/ginobafongoolE PistilleE. PistelliE. PistilleE. PistilliE.PistilliEugene PistiliG. PastilliG. PistiliG. PistilleG. PistilliGeneGene PastilliGene PiscilliGene PistelliGene PistilliGene PistillliPiscilliPispilliPistillePistilliThe Manhattan TransferUncle LouieBuchanan Brothers (2)Cashman, Pistilli & WestChips & Company + +590926Juhani TapaninenJuhani TapaninenFinnish bassoonist. Born on April 14, 1935. He played in the Finnish Radio Symphony Orchestra from 1960 to 1995 (Principal bassoonist in 1979-1995).Needs VoteRadion SinfoniaorkesteriSavonlinnan Oopperajuhlaorkesteri + +591040Seppo PeltolaFinnish trombonist.Needs Vote"Emppu" PeltolaEmppu PeltolaSeppo "Emppu" PeltolaSeppo PpeltolaNunnu Big BandThe Otto Donner Element All StarsBackmanin OrkesteriThe ChlorophylliesSoitinyhtye LiisaOlli Hämeen OrkesteriRadion TanssiorkesteriSyntikaatin Kuoro Ja OrkesteriThe Vostok All-Stars + +591085Ilpo KallioIlpo KallioA Finnish jazz and session drummer. Born on February 6th, 1937. Dead on May 22th, 2021.Needs VoteI.KallioPori Big BandErik Lindström SextetBackmanin OrkesteriThe ChlorophylliesPentti Lasasen Studio-orkesteriJanatuisen JatsiyhtyeSoitinyhtye LiisaOlli Hämeen OrkesteriJazz Society Big BandValto Laitinen TrioRadion TanssiorkesteriSeppo Rannikko Big BandSyntikaatin Kuoro Ja OrkesteriKauko Partion OrkesteriSäälimättömätThe Vostok All-StarsHeikki Laurilan Mandoliiniyhtye + +591103Svante HenrysonSvante Jon HenrysonSwedish composer, cellist, electric bassist and double bassist, active within jazz, classical music, and hard rock. +He was born October 22, 1963 in Stockholm, Sweden. + +Recorded and toured with Yngwie Malmsteen between 1989 and 1992. +Needs Votehttp://www.henryson.net/http://www.myspace.com/svantehenrysonhttps://sv.wikipedia.org/wiki/Svante_HenrysonHenrysonSvante HenryssonSvente HenryssonMagnetic North OrchestraOslo Filharmoniske OrkesterDet Norske KammerorkesterGlory (7)Krister Jonsson DeluxeO/ModerntKarolina Almgren Projekt + +591525Christina KingPlays viola in the San Francisco Symphony Orchestra since 1996. Originally from Newport Beach, CA.Needs VoteSan Francisco Symphony + +591865Jeannine WagnerVocalist and choir leader.Needs VoteJeanine WagnerJeanne WagnerThe Roger Wagner ChoraleHollywood Film Chorale + +591970Anne TrémouletAnne-Elsa TrémouletFrench violinist.Needs VoteAnne Elsa TremouletAnne TremouletAnne-Elsa TremouletAnne-Elsa TrémouletOrchestre De ParisOrchestre De Chambre Pelléas + +592183Jouni HeinonenJouni HeinonenA Finnish violinist.CorrectJouni Heinosen Jousiryhmä + +592184Aito LeppänenAito Ilmari LeppänenFinnish violist. Born on April 29, 1927 and died on September 9, 1988.Needs Vote + +592185Rauno SalminenFinnish violinist.Needs Vote + +592186Ahti PilviAhti PilviBorn 24.6.1918, dead 11.11.2013. Long-time finnish musician (trombone, viola)Needs Vote + +592188Seppo KeurulainenSeppo KeurulainenBorn on September 16, 1945. A Finnish guitarist. + +Died on February 4, 1981. +Needs VoteS. KeurulainenSeppo "Sepi" KeurulainenSeppo "Sepi" KeurulaiseenPepe & ParadiseThe BeatmakersThe Islanders (5)The Roosters (3)JormasJim & The BeatmakersEero & The Boys + +592215Olivier BriantFrench classical violinistNeeds Votehttps://www.suonare.fr/Olivier BriandLe Concert SpirituelEnsemble Suonare E CantareLes PassionsLes Ombres (3)Le Concert Étranger + +592228Jaakko SaloJaakko Elias SaloBorn February 22, 1930 in Viipuri (in Karelian Isthmus, back then a part of Finland, nowadays belongs to Russia). Jaakko Salo was a Finnish producer, composer, conductor and arranger. He worked for [l=Scandia] since 1950's and had a great influence on the development of Finnish schlager. He was also one of the founding members of UIT (Uusi Iloinen Teatteri), and was their revue writer, arranger and conductor from 1979 to 2002. + +Jaakko Salo is also known for composing the music for the films of [a=Spede Pasanen], especially the theme for Uuno Turhapuro -films. + +He used a pseudonym Elias Metsä. + +Died June 13, 2002 in Helsinki, Finland. +Needs VoteJ .SaloJ SaloJ. S.J. SaloJ. SalonJ.SaloJaako SaloJacko SaaloJakko SaloK. SaloSaloSalo Jaakkoヤーコ・サローElias MetsäJaakko Salon OrkesteriJaakko Salon YhtyeJaakko Salon KvartettiJaakko Salon KvintettiJaakko Salon TV-yhtyeJaakko Salon PelimanniyhtyeHeikki Laurilan MandoliiniyhtyeOld House Sextet + +592250Heikki LaurilaHeikki Risto Ylermi LaurilaFinnish guitar player. Born on May 15, 1934 in Kouvola, Finland and died on February 9, 2021 in Nice, France. He worked as a studio musician on more than 7,000 recorded songs, more than anyone else in the Finnish music history. His career spanned from 1940s until 2000, when he retired and never played guitar again.Needs VoteH LaurilaH. LaurilaH.LaurilaH.laurilaHeikki "Hetta" LaurilaLaurilaSenor Heikki LaurilaErik Lindström SextetBackmanin OrkesteriThe ChlorophylliesValastonesJanatuisen JatsiyhtyeNeljä PenniäHeikki Laurila TrioJazz Society Big BandHeikki Laurila With Studio OrchestraSuomi-VPK-OrkesteriRadion TanssiorkesteriSyntikaatin Kuoro Ja OrkesteriKauko Partion OrkesteriSäälimättömätAron AnimaalitRautalanka OyThe Vostok All-StarsThe ModangosHeikki Laurilan Mandoliiniyhtye + +592252Erik LindströmErik Wilhelm LindströmFinnish composer, conductor and musician (bass, vibraphone, piano), born 29 May 1922 in Helsinki, Finland. He started his musical career in the early 1940s and was active until he died 27 August 2015 at the age of 93. From 1965 Lindström worked primarily as a record producer. Son of [a13383762]Needs VoteE LindströmE. LindstionE. LindstonE. LindstromE. LindstromeE. LindströmE. W. LindstroemE.LindströmE.W. LindströmEric LindstormErik LindströnErik Wilhelm LindströmErki LindströmLars LindströmLindstromLindstrrömLindströmLindström ErikLindstöme. linndströmЭ. ЛиндстромЭ. ЛёндстремEtienne LafarreP. NasevaErik Lindström SextetRytmin Swing-YhtyeMatti Viljasen KvintettiBengt Hallberg QuartetScandia All-StarsErik Lindströmin OrkesteriJanatuisen JatsiyhtyeFenno Jazz BandOnni Gideonin KvintettiOssi Malinen OctetErik Lindström AwardeesErik Lindströmin RytmiryhmäErik Lindström QuintetSoitinyhtye "Lahjattomat"Teuvo Suojärvi QuartetMatti Viljasen Trio + +592253Raimo RoihaRaimo Juhani RoihaFinnish pianist and composer who worked as a studio musician for a long time since the 1950s, born 28 January 1936, died 16 June 1991.Needs VoteR RoihaR. RoihaR.RoihaRoihaErik Lindström SextetBackmanin OrkesteriThe ChlorophylliesThe Spike Dope FivePentti Lasasen Studio-orkesteriSoitinyhtye LiisaOlli Hämeen OrkesteriThe Vostok All-StarsHappy Jazz TrioSeurasaaren PelimannitSolistiyhtye Humina + +592339Paavo LampinenPaavo LampinenFinnish clarinet player born on December 4, 1930 in Kerava, Finland and died on January 25, 2022 in Kerava, Finland.Needs Vote + +592947Pascale MeleyFrench violinist.CorrectOrchestre De Paris + +593439Sam LewisSamuel M. LevineAmerican singer and lyricist. + +Born: 25 October 1885 in New York City, New York, USA. +Died: 22 November 1959 in New York City, New York, USA (aged 74). + +Lewis began his music career by singing in cafes throughout New York City, and began writing songs in 1912. He wrote numerous songs, and collaborated with other song writers, most frequently with [a=Joe Young (3)], but also with [a=Harry Warren (2)], [a=J. Fred Coots], [a=Victor Young], [a=Peter De Rose], and [a=Harry Akst], among others. + +Some of the most well-known songs he (co-)wrote include: "For All We Know", "Dinah", "Gloomy Sunday", and "Just Friends". +Needs Votehttp://www.songwritershalloffame.org/exhibits/C95https://en.wikipedia.org/wiki/Sam_M._Lewishttps://adp.library.ucsb.edu/names/109114C. LewisC.S. LewisCharles LewisD. M. LewisD.M. LewisDam LewisH. LewisIewisJ. LewisJoe LewisKlennerL.L. David LewisL. M. LewisLevisLewinsLewisLewis &Lewis Samuel MLewis, Samuel M.LewsLiwisLooseLouisLouis Samuel M.M. LewisM. S. LewisM. Samuel LewisMorgan LewisS LewinS LewisS, LewisS, M, LewisS. E. LewisS. H. LewisS. L. LewisS. LewisS. LouisS. M. LewisS. M. LewisS. N. LewisS. W. LewisS.H. LewisS.L. LewisS.LewisS.M. LewisS.M. LouisS.M.LewisSM LewisSam M. LewisSam E. LewisSam H. LewisSam K. LewisSam L. LewisSam LouisSam LowisSam M LeisSam M LewisSam M. LeisSam M. LevisSam M. LewiSam M. LewisSam M. LouisSam M.LewisSam M.lewisSam W. LewisSam. M. LewisSamual LewisSamuel H. LewisSamuel L. LewisSamuel LewisSamuel MSamuel M LewisSamuel M. LewisSamuel M. :ewisSamuel M. LevineSamuel M. LewisSamuel S. LewisSamuel-LewisSan LewisSlewisSm M. LewisStan LewisW. Sam M. Lewis\LewislewisЛьюисМ. ЛьюисС. Льюис + +593477Gyula DalloGyula DallóGyula Dalló (18 August 1934 - 30 October 2019) was a Hungarian harpist. Honorable member of [a833446].Needs VoteGyula DallóGyulla DallóStaatskapelle BerlinOrchester der Bayreuther Festspiele + +593493Malcolm JohnstonBritish classical violist and educator. Born in Aberdeen, Scotland, UK. +He studied at the [l742849] and the [l527847]. He spent some time in the United States in the 1990s, where he became a member of [a=The Amernet Quartet] for four years. In 1996, he returned to England and became the Sub-Principal Violist with the [a=London Symphony Orchestra]. He holds the position of Professorial Staff-Viola at [l1379071].Needs Votehttps://www.feenotes.com/database/artists/johnston-malcolm/https://lso.co.uk/orchestra/players/strings.html#Violashttps://lso.shorthandstories.com/lso-discovery-20-nov/index.htmlhttps://www.trinitylaban.ac.uk/study/teaching-staff/malcolm-johnston/https://www.imdb.com/name/nm8488614/https://vgmdb.net/artist/22956Malcom JohnstonLondon Symphony OrchestraThe Amernet QuartetEuropean CamerataFalk Quartet + +593553Georges AberGeorges Pierre Jules PoubennecFrench singer-songwriter. +Born: July 17, 1930 (Brest, France) - Died: March 16, 2012 (Plougastel, France). +In 1962, his interpreter's career is not in date. +He becomes the lyricist of idols (Richard Anthony, Dalida, Petula Clark, Sheila, ...) +Needs Votehttps://en.wikipedia.org/wiki/Georges_Aberhttps://fr.wikipedia.org/wiki/Georges_AberAbarAberAber G.AbertAbnerAderAlbertArberC. AberG AberG. AbberG. AbelG. AberG. AberbeG. AberrG. AbertG. AderG. AgerG. AlbertG. LaberG.AbarG.AberGaberGeo. AberGeorg AberGeorge AberGeorges AbertJ. AberJules Poubennec Georges PierrePoubennecЖ. АберGeorges Poubennec + +593627Larry CollinsLawrence Albert CollinsLarry Collins (October 4, 1944, in Tulsa, Oklahoma - January 5, 2024, at Henry Mayo Newhall Hospital, Santa Clarita, California) was an American musician, best known for his use of a double-neck Mosrite guitar, like his mentor, [a=Joe Maphis]. He was an accomplished guitarist by age 10, and in the late 1950s, he and his older sister [a=Lorrie Collins] formed the rockabilly duo [a=The Collins Kids]. + +Larry Collins went on to write and produce hits for many well-known country music stars, though he is probably best known for co-writing "Delta Dawn." +Needs Votehttps://en.wikipedia.org/wiki/Larry_Collins_(guitarist)https://www.imdb.com/name/nm1648581/CollinCollinsJ. Larry CollinsL. ColinsL. CollingsL. CollinsLarryLarry CollingsLarry Collins ReidLawrence "Larry" CollinsLawrence A. CollinsLawrence CollinsLawrence, CollinsLeonard CollinsM. J. CollinsM.J. CollinsThe Collins Kids + +593883Kalevi NyqvistKalevi NyqvistBorn April 6th, 1936 in Asikkala, Finland. A Finnish accordionist, composer, lyricist and arranger. Died 2018.Needs VoteK. NybergK. NygvistK. NyqvistK.NyqvistKalevi NygvistNyqvistJanatuisen JatsiyhtyeKalevi Nyqvistin YhtyeKalevi Nyqvistin Orkesteri + +593940Léo PetitLéo (Léon Désiré) PetitFrench jazz guitarist, arranger and composer, 22 September 1923 in Haubourdin, Hauts-de-France – 10 February 2017 in Levallois-Perret, Île-de-France. +French studio session man; one the first guitar player in Paris to play with a Fender in the fifties. Petit came from the Jazz scene, and he backed almost all the French singers from Johnny Hallyday to Gilbert Becaud or Françoise Hardy.Needs Votehttps://fr.wikipedia.org/wiki/L%C3%A9o_Petit; Léo Petit Et Sa Guitare Et Ses CopainsL. PetitL.PetitLeo PetitLeo Petit E Il Suo ComplessoLéo Petit Et Sa Guitare Et Ses CopainsWilliam StanrayMichael HingtonJimmy Walter Et Son EnsembleAlain Goraguer Et Son OrchestreAimé Barelli Et Son OrchestreOrchestre Jo MoutetLéo Petit Et Son OrchestreLéo Petit, Ses Guitares, Ses Rythmes Et Ses ChœursJoe Doolittle And His BoysLes Guitares Du DiableHenry Cording And His Original Rock And Roll BoysJam Session N° 5Stephane Grappelly QuintetLéo Petit, Ses Guitares Et Ses Cro-Magnon BoysLéo Petit, Ses Guitares Et Ses RythmesLéo Petit Ses Guitares Électriques Et Ses CopainsFormation Jacques Denjean + +594308Sándor FerenczySándor Ferenczy (born February 12, 1906, in Hungary – died September 15, 1993, in Hamburg, Germany) was a director and writer of radio plays, best known for his extensive work in children’s and youth radio drama. + +Ferenczy wrote and adapted numerous radio plays, particularly fairy tale adaptations during the 1950s. He also created modern and original stories, such as "Peter und das Zauberklavier" (1959), "Die Gentlemen bitten zur Kasse" (1966/1968), and "Der Wal im Wasserturm" (1974). His productions were known for their creativity, strong storytelling, and engaging musical elements, making them enduring favorites among German-speaking audiences. + +Beginning in 2006, efforts were made to restore and re-release many of Ferenczy's original recordings on CD, introducing a new generation to his influential body of work. + +Sándor Ferenczy passed away at the age of 87 and was laid to rest at Ohlsdorf Cemetery in Hamburg.Needs Votehttp://de.wikipedia.org/wiki/S%C3%A1ndor_Ferenczyhttps://www.sueddeutsche.de/kultur/neuauflage-holla-die-waldhexe-1.3896916FerenczyS. FerenczySandor FerencySandor Ferenczy + +594428Aaron ThompsonEarly jazz trombonist.Needs VoteA. ThompsonAaron C. ThompsonThompsonThe Red Onion Jazz BabiesClarence Williams' Blue Five + +594578Jonathan HillBritish violin player.Needs Votehttps://www.jonathanhillofficial.com/Jon HillJonathon HillUrban Soul OrchestraRoyal Philharmonic OrchestraThe Outatime OrchestraThe Planets (4) + +594579Jane AtkinsBritish classical viola player.Needs VoteThe London Telefilmonic OrchestraLondon SinfoniettaScottish EnsembleThe Gaudier EnsembleThe Orchestra Of St. John'sGreenwich String Quartet + +594583Elizabeth BradleyClassical Double Bass & Violone player.Needs Votehttps://uk.linkedin.com/in/elizabeth-bradley-8b57a052Elisabeth BradleyLiz BradleyOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersHanover BandThe MozartistsThe Music CollectionCostanzi Consort + +594588Peter CollyerClassical viola player.Needs Votehttps://www.linkedin.com/in/peter-collyer-167926118/Peter ColyerRoyal Philharmonic OrchestraOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe English ConcertThe Music CollectionLondon Handel Players + +594589Clare ThompsonClare ThompsonBritish violinist and violin teacher. +Prize-winning student at the [l527847]. Principal 2nd chair of the [a415725]. No.3 First Violin of the [a=Philharmonia Orchestra]. Longstanding professor at [l1379071]. She has been appointed to the Junior Department of the Royal Academy of Music where she was made an Associate of the Royal Academy of Music (ARAM) in recognition of her services to music.Needs Votehttps://twitter.com/claretviolin?lang=enhttps://www.trinitylaban.ac.uk/study/teaching-staff/clare-thompson/https://www.ram.ac.uk/staff/clare-thompsonhttps://www.benedettifoundation.org/tutor/clare-thompsonhttps://www.imdb.com/name/nm2375112/Claire ThompsonEnglish Chamber OrchestraPhilharmonia OrchestraThe Serenata Of LondonPrometheus Ensemble (3) + +594658Helen PatersonBritish classical violinist and violist. Born in Hampshire (or in Pembrokeshire, Wales), England, UK. +She studied violin & viola at [l305416]. For about five years she was Principal Second Violin in the [a=Philarmonia Orchestra]. When she left the PO, she joined [a=The Academy Of St. Martin-in-the-Fields]. Violist in the [b]St. Paul's Quartet[/b].Needs Votehttps://www.facebook.com/helen.paterson.754https://www.asmf.org/musician-profiles/https://stpaulsquartet.com/biographies-2/helen-paterson/https://www.imdb.com/name/nm0665493/H. PatersonHelen PattersonGavin Bryars EnsemblePhilharmonia OrchestraThe Michael Nyman OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Scratch OrchestraMarylebone CamerataThe Fibonacci Sequence + +594992David GimenezDavid Giménez RiveraDJ and A&R from Barcelona (Spain). He worked for the companies Blanco Y Negro Music & Tempo Music. Aka "David Con G".Needs Votehttps://www.facebook.com/davidcongoficialhttps://soundcloud.com/davidgimenezhttps://www.mixcloud.com/DavidGimenezDavidConG/D. GimenezD. GiménezD. JiménezDavid "Con G"David Con GDavid Gimenez 'Con G'David Gimenez (Con G)David GimÉnezDavid GiménezDavid Giménez "Con G"David Giménez "con G"David Giménez 'Con G'David Giménez con GThe Question (2)BonustrackDavid Con GQuestion MarkSolar SystemClub Corporation2 Without MoneyClub Star + +595046Franz GruberFranz Xaver GruberAustrian teacher, organist and composer, born 25 November 1787 in Unterweitzberg in Hochburg-Ach, Austrian Empire and died 7 June 1863 in Hallein, Austrian Empire. + +He composed the music to "Stille Nacht" ("Silent Night, Holy Night").Needs Votehttps://en.wikipedia.org/wiki/Franz_Xaver_Gruberhttps://www.imdb.com/name/nm0345045/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102006/Gruber_Franz_XaverAnto GruberBruberC. Franz GruberCruberDe Franz GruberDe GrüberE. GruberE. X. GruberF GruberF GrüberF, GruberF. BruberF. GraberF. GrubelF. GruberF. GrubergF. GruberisF. GrubersF. GrubertF. GruderF. GrueberF. GrúberF. GrüberF. GrūbersF. GuberF. J. GruberF. K. GruberF. R. GruberF. S. GruberF. Von GruberF. X. CruberF. X. GerberF. X. GruberF. X. GrüberF. Xavier GruberF. グルーバーF.GruberF.GrubersF.GrüberF.GrūbersF.K. GruberisF.R. GruberF.X. CruberF.X. GrubberF.X. GruberF.X.GruberF.X.グルーバーFR GruberFX GruberFerdinand GruberFerry GruberFr GruberFr. GruberFr. GruberisFr. GrueberFr. GrüberFr. GrūbersFr. K. GruberFr. X. GruberFr.GruberFr.X. GruberFranc GruberFranc Ksaver GruberFrancis Xavier GruberFranciszek X.GruberFranck GruberFrank GruberFrank Xaver GruberFrans GruberFrantišek Xaver GruberFrantišek Xavier GruberFrantz GruberFrantz Xavier GruberFranx GruberFranx GurberFranx Xaver GruberFranzFranz Chaver GruberFranz CruberFranz GoberFranz GrubberFranz GrubeFranz Gruber (1818)Franz Gruber-MahrFranz GrubergFranz GrubertFranz GrubnerFranz GrueberFranz GruerFranz GruterFranz GrübberFranz GrüberFranz GuberFranz HuberFranz X GruberFranz X. GruberFranz Xaber GruberFranz XaverFranz Xaver GruberFranz Xaver Gruber (1787 - 1863)Franz Xaver GrüberFranz Xaver HuberFranz XavierFranz Xavier GruberFranz Xavier GrüberFranz, GruberFranz-GimberFranz-GruberFranz-Xaver GruberFranz-Xavier GruberG. GruberG.XaverGoubertGreber F.GreuberGrubeGrubelGruberGruber - G. LangGruber F.Gruber FranzGruber Franz XaverGruber arr. BatemanGruber, FGruber, Fr.Gruber, Franz XaverGruberfr.GrubertGruderGruerGrïeberGrüberGuberGurberH. GruberHans GrüberHans Xaver GruberHans-Xaver GruberJ. GruberJosef GruberJosip GruberK. GruberL. GruberMarksMax GruberOrganisten Franz GruberP. GruberPfarrer GruberR. GruberS. GrüberSchulmerich CarillonT. GruberTrad.X. GruberXaver GruberXavier Franz GruberГруберМ. ГруберФ. ГруберФ. К. ГруберФ.ГруберФранц ГруберФранц Ксавьер Груберグルーバーフランツ・クサーヴァー・グルーバー + +595478Václav NeumannVáclav NeumannCzech conductor, violinist and violist. Born October 29, 1920 in Prague (former Czechoslovakia), died September 2, 1995 in Vienna, Austria. Co-founder and 1st violin (1945–1947) of the [a=Smetana Quartet], principal conductor of [a=The Czech Philharmonic Orchestra] 1968–1990.Needs Votehttps://en.wikipedia.org/wiki/V%C3%A1clav_Neumannhttps://www.naxos.com/person/Vaclav_Neumann_40322/40322.htmNeumannNárodní Umělec Václav NeumannV NeumannV. .NeumannV. NeumanV. NeumannVACLAV NEUMANNVaclav NeumanVaclav NeumannVáclavV•NeumannВ. НейманВацлав НейманВацлав НейманнВацлав Нойманヴァッツラフ・ノイマンヴァーツラフ・ノイマンヴァーツラフ・ノイマンThe Prague Symphony OrchestraThe Czech Philharmonic OrchestraSmetana Quartet + +595616Billy TowneLyricistCorrectB TowneB. TownB. TowneB.TowneLarueTewneTonneTownTowneW. TowneБ. Тоун + +595653Frankie DunlopFrancis DunlopAmerican jazz drummer +Best known for his four-year stint with [a=Thelonious Monk] in the early 1960s. He retired in 1984. + +Born December 6, 1928 in Buffalo, New York, died July 7, 2014 in Englewood, New Jersey +Needs Votehttp://jonmccaslinjazzdrummer.blogspot.com/2010/01/frankie-dunlop.htmlhttp://en.wikipedia.org/wiki/Frankie_Dunlophttp://www.hughdenman.com/blog/wp-content/uploads/2008/12/frankiedunlop_imeanyou_analysis.pdfhttps://jazzbuffalo.org/2020/09/06/frankie-dunlop-monks-drummer-part-1/DunlopF. DunlopFrank DunlopFrankie DanlopFrankie DunlapФренки Данлопフランキー・ダンロップThe Thelonious Monk QuartetThe Thelonious Monk QuintetMaynard Ferguson & His OrchestraWilbur Ware QuintetFrankie Dunlop & His OrchestraLionel Hampton & His Giants Of JazzThe Herman Foster TrioJoe Zawinul TrioMoe Koffman's Main Stemmers + +595767Jim McNeelyAmerican Grammy-award-winning jazz composer, arranger, and pianist. +Born May 18, 1949 in Chicago, Illinois, USA. +Died September 26, 2025 in New York, New York, USA.Correcthttp://www.jim-mcneely.com/http://en.wikipedia.org/wiki/Jim_McNeelyhttps://www.imdb.com/name/nm11505293/J. McNeelyJames McNeelyJim MacNeelyJim Mc NeelyJim McNeeleyMcNeelyStan Getz QuartetTed Curson & CompanyRufus Reid TrioBob Mintzer Big BandJohn McNeil QuintetThe Phil Woods QuintetJim McNeely TrioMel Lewis QuintetThe Vanguard Jazz OrchestraThomas Fryland QuartetJim McNeely QuintetPhil Woods' Little Big BandFriends Of Bob LarkJim McNeely TentetEd Neumeister QuintetLouis Smith QuartetMike Richmond QuartetThe Randy Sandke QuintetThe Bob Lark • Phil Woods QuintetBucyrus Erie + +595768Geoff KeezerGeoffrey KeezerAmerican jazz pianist, born November 20, 1970 in Eau Claire, Wisconsin, USA + + +Needs Votehttp://www.geoffreykeezer.com/https://geoffkeezer.bandcamp.com/G. KeezerGKGeoffreyGeoffrey KeezerGreoffrey KeezerKeezerジェフ・キーザーThe Jazz MessengersArt Blakey & The Jazz MessengersRay Brown TrioArt Farmer QuintetChristian McBride BandThe New Sound QuartetDMP Big BandMessage (9)Geoffrey Keezer / Peter Sprague BandRonnie Cuber QuartetThe Bob Belden EnsembleGeoff Keezer TrioJoe Locke / Geoffrey Keezer GroupThe Contemporary Piano EnsembleFabio Morgera QuintetStorms / NocturnesRalph Peterson & The Messenger Legacy + +596086Emanuel BoydNeeds VoteBoydE. BoydE. Mano BoydEmanuel "Manny" BoydEmanuel (Mano) BoydEmanuel Boyd (Mano)Manny BoydManny BoydCount Basie OrchestraArt Blakey & The Jazz MessengersEddie And The MovementsJaki Byard And The Apollo Stompers + +596332Neil Reid (2)American jazz trombonist, born January 16, 1912 in Arkansas. + +Reid was a member of [a750213], then joined [a284746]. After World War II, he moved to California and started his own construction company.Needs Votehttp://www.allmusic.com/artist/neil-reid-p745002/biographyLyman "Neal" ReidNeal ReidNeal RiedReidWoody Herman And His OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersIsham Jones OrchestraWoody Herman BandThe Band That Plays The Blues + +596692Hae Young HamHae-Young HamSouth Korean violinist born in Seoul. She came to the United States in 1977 and joined the New York Symphonic in 1986.Needs VoteHae Yung HamHae-Young HamHae-Yung HamNew York PhilharmonicNew York Philharmonic Ensembles + +596694Rebecca YoungAmerican violist born in Perth Amboy, New Jersey. She joined the New York Philharmonic in 1986.Needs Votehttps://nyphil.org/about-us/artists/rebecca-youngBecky YoungRebecca H. YoungRebecca Young SchatzRebecca. H. YoungNew York PhilharmonicStone Hill Strings + +596754Malou ReneUS songwriter. [a=Joe René]'s wife.Needs VoteJ. "Malou" RenéM ReneM. ReneM. RenéM. RoneM.ReneMalau ReneMallou ReneMalouMalou RenMalou RenéMalou-ReneR. MalouRenReneRene MalouReneeRenéReveRobertsRome + +597142Steve Davis (7)Stephen K. DavisJazz trombone player, born April 14, 1967 in Worcester, MA, USA +His distinctive sound on the slide trombone gave Steve Davis the opportunity to start his career in the mid-1980s with legendary [a=Art Blakey], with whom he played until 1990. He has worked also with [a=Chick Corea], [a=Avishai Cohen] and led his own group and his own productions. +Needs Votehttp://www.stevedavis.info/https://stevedavistrombone.bandcamp.com/https://stevedavissmoke.bandcamp.com/https://en.wikipedia.org/wiki/Steve_Davis_(trombonist)http://repertoire.bmi.com/Catalog.aspx?detail=writerid&keyid=83158&subid=0&page=1&fromrow=1&torow=25DavisS. DavisSt. DavisSteve DavisStevie Dסטיב דייויסArt Blakey & The Jazz MessengersThe New Jazz Composers OctetSlide Hampton And The World Of TrombonesOne For All (3)Jackie McLean SeptetChristian McBride Big BandDizzy Gillespie All-Star Big BandJohn Fedchock New York Big BandJackie McLean & The MacBandJimmy Heath Big BandConrad Herwig QuintetJohn Swana SextetSteve Davis SextetSteve Davis QuintetJoe Farnsworth SextetPeter Bernstein QuintetThe Earl MacDonald 6Steve Davis QuartetDavid Hazeltine QuintetMike Dirubbo QuintetJimmy Greene SextetJoe Chambers Moving Pictures OrchestraThe Spanish Heart BandCory Weeds QuintetCory Weeds Little Big BandJoshua Bruneau SeptetJim Rotondi SextetWJ3 All-StarsAdam Shulman SeptetMike LeDonne's Big BandRon Carter's Great Big BandThe Explorers QuintetThe Harlem Groove Band + +597589Leonard HawkinsAmerican jazz trumpeterNeeds VoteBilly Eckstine And His OrchestraDexter Gordon QuintetPete Brown's Brooklyn Blue BlowersEddie Safranski's All StarsTommy Turk And His Orchestra + +597641Ira SchusterIra SchusterAmerican songwriter & pianist. +Born October 13, 1889 in New York City, New York, USA. +Died October 10, 1946 in New York City, New York, USA. +Brother of [a=Joe Schuster]. +Schuster worked as a pianist at various publishing companies on Tin Pan Alley in the early 20th century. He was also known as John Siras. +Best known for the swing number "In a Shanty in Old Shanty Town". Ran his own publishing company ([l2572618], [l1258419]). He was inducted into the Songwriters Hall of Fame. +Ira's son, Wally Schuster, worked for the UA Music Group for over 30 years, including as VP & Creative Head of the Publishing Group.Needs Votehttps://en.wikipedia.org/wiki/Ira_Schusterhttps://www.imdb.com/name/nm0776844/https://adp.library.ucsb.edu/names/110337B. SchusterI SchusterI. SchusterI. ShusterIra ShusterIracusterIrasJ. SchusterJohn SirasSchusterSchuster IraScusterShousterShusterSirasT. SchusterJohn Siras + +597705Jim Walker (3)James "Jim" Walker is an American flutist and educator. He is the former Principal Flute of the Los Angeles Philharmonic, and the founder of the jazz quartet Free Flight. Since 1984, he has focused most of his attention on jazz performance and flute pedagogy. Walker was raised in Greenville, Kentucky and graduated from Central City High School in Central City, Kentucky.Needs Votehttps://www.jimwalkerflute.com/https://www.facebook.com/Jim-Walker-146073145460616/J. WalkerJames R. WalkerJames WalkerJim R. WalkerJimmy WalkerWalkerWalker James R.Walker, JamesThe NPG OrchestraFree FlightPatrick Williams And His OrchestraLos Angeles Philharmonic OrchestraThe Bob Belden Ensemble + +598074Kai HyttinenKai Ahti Rainer HyttinenBorn January 7, 1947 in Mikkeli, Finland. A Finnish singer and actor.Needs VoteK. HyttinenK.HyttinenKai Hyttinen JKCKaitsuPeter West (4)Kuju (4)Kerstin SlagermanKivikasvotFantastic Four (3) + +598084Jukka KuoppamäkiBorn September 1, 1942 in Helsinki, Finland. Finnish singer, songwriter and priest of The Christian Community. He currently lives in Dortmund, Germany with his family. + +His grandmother's brother was [a=Mikael Nyberg], who was a son of [a=Zacharias Topelius]'s daughter. + +His brother was [a=Mikko Kuoppamäki]. + +His daughters are [a=Anna Kuoppamäki] (singer, actress) and [a=Inka] (singer, actress).Needs Votehttps://www.jukkakuoppamaki.net/https://en.wikipedia.org/wiki/Jukka_Kuoppam%C3%A4kihttps://fi.wikipedia.org/wiki/Jukka_Kuoppam%C3%A4kiJ KuoppamäkiJ, KuoppamäkiJ. KuopamakiJ. KuopamiakėJ. KuopamiokėJ. KuopamäkiJ. KuoppamakiJ. KuoppamäkiJ. Kuoppamäki-W.J.KuopamaekiJ.KuopamiakėJ.KuoppamäkiJohn Mountain (2)JukkaJukka KuopamakiJukka KuoppamakiKuopavėkisKuoppamakiKuoppamäkiKuoppamäki Jukkaユッカ・クオパマキReijo KurkiAntti AhoJokeriLee Robinson (8)Modeno-PiattiPasi KuikkaKukonpojatNeloset + +598091Tapio RautavaaraKaj Tapio RautavaaraFinnish singer, composer, lyricist, athlete and actor, born March 8, 1915 in Pirkkala, Finland; died in an accident September 25, 1979 in Vantaa, Finland. + +Tapio Rautavaara was one of the most beloved singers in Finland, and he recorded 310 songs during his career. He worked often together with [a=Esa Pakarinen], [a=Reino Helismaa] and [a=Toivo Kärki]. + +He was also a successful athlete: he won the gold medal in the javelin at the 1948 Summer Olympics in London, and he was also a member of the winning team representing Finland in the Archery World Championships of 1958. + +He also acted in over 20 films. +Needs VoteRautavaaraRautavaara TapioT. RautavaaraT.RantanenT.RautavaaraT.RautavaraTapani RautavaaraTapsaTapsa RautavaaraDallapéTapio Rautavaara ja yhtye + +598246Alan FreedAlbert James FreedBorn: December 15, 1921, Johnstown, Pennsylvania, USA +Died: January 20, 1965, Palm Springs, California, USA + +Legendary rock-and-roll DJ who is often credited with the term "Rock-and-Roll," though he didn't actually coin it. + +Many of the top African-American performers of the first generation of rock and roll (such as [a=Bo Diddley], [a=Little Richard] and [a=Chuck Berry]) salute Alan Freed for his pioneering attitude in breaking down racial barriers among the youth of 1950s America. His career was destroyed by the payola scandal that hit the broadcasting industry in the early 1960s. + +Inducted into Rock And Roll Hall of Fame in 1986 (Non-Performer). + +Wife was [a13496242]. +Needs Votehttp://www.alanfreed.com/http://en.wikipedia.org/wiki/Alan_FreedA FreedA, FreedA. FreedA. FeedA. FredA. FreddA. FreedA.FreedAl SreedAllan FreedAllen FreedAllen-FreedF. FreedFrattoFredFred AllanFreeFreedReedAl Lance (2)The Alan Freed OrchestraAlan Freed's Rock 'N RollersAlan Freed & His Rock 'n' Roll Band"Hal And Al"The Alan Freed Rock 'N' Roll OrchestraThe Alan Freed Band + +598601Benjamin BrittenEdward Benjamin BrittenBritish composer, conductor, and pianist. +Born: November 22, 1913, in Lowestoft, UK - died: December 04, 1976, in Aldeburgh, UK. +He showed talent from an early age, and first came to public attention with the a cappella choral work [i]A Boy Was Born[/i] in 1934. With the premiere of his opera [i]Peter Grimes[/i] in 1945, he leapt to international fame. For the next fifteen years he devoted much of his compositional attention to writing operas, establishing him as one of the leading 20th century figures in this genre. Britten's interests as a composer were wide-ranging; he produced important music in such varied genres as orchestral, choral, solo vocal (much of it written for the tenor Peter Pears), chamber and instrumental, as well as film music. He also took a great interest in writing music for children and amateur performers, and was a fine pianist and conductor. + +One of Britten's most important works, [i]The War Requiem[/i] was completed 20 December 1961, and first performed 30 May 1962. Britten received many prizes and honors, including becoming a Companion of Honour in 1952, and a member of the Order of Merit in 1965.Needs Votehttps://en.wikipedia.org/wiki/Benjamin_Brittenhttps://brittenpears.org/https://www.its.caltech.edu/~tan/Britten/britbio.htmlhttps://www.famouscomposers.net/benjamin-brittenhttps://www.britannica.com/biography/Benjamin-Brittenhttps://www.treccani.it/enciclopedia/benjamin-britten/(Edward) Benjamin (Lord Britten Of Aldeburgh) BrittenB BrittenB. BritenasB. BritnB. BrittehB. BrittenB. BrittonB.B.B.BrittenB.ブリトンBendžamin BritnBeniamin BrittenBenj. BrittenBenjamin Britten (Lord Britten Of Aldeburgh)Benjamin E. BrittenBenjamin, Lord BrittenBenžamins BritensBrittainBrittenBritten B.Britten, BenjaminBritten, Benjamin (Lord Britten of Aldeburgh)BritttenE. B. BrittenEdward Benjamin BrittenH. BrittenSir Benjamin BrittenΜπένταμιν ΜπρίττενΜπέντζαμιν ΜπρίττενБ. БриттенБ. БритънБ. БритэнБ.БриттенБ.Бриттен.Бенджамен БриттенБенджамин БритенБенджамин БриттенБенджамин БритънБенжамен БритънБенџамин БритнБритенБриттенБритънבנג'מין בריטןبينجامين بريتينブリテンベンジャミン・ブリッテンベンジャミン・ブリテンThe English Opera Group + +598659Gil CogginsAlvin Gilbert CogginsAmerican jazz pianist (born Harlem, NYC, August 23, 1928 – died, New York City, February 15, 2004). Styles: Bop, Hard Bop.Needs Votehttps://vassavussa.com/http://www.artsjournal.com/rifftides/2007/10/gil_coggins.htmlhttp://en.wikipedia.org/wiki/Gil_Cogginshttps://musicians.allaboutjazz.com/gilcogginshttps://www.allmusic.com/artist/gil-coggins-mn0000663928/biographyhttp://smallsrecords.com/coggins-bltn.htmhttps://gilcoggins.com/"Gil" Coggins"Gil" GogginsG. CogginsG.CogginsGil GogginsGil GoggirsГил КоггинсThe Miles Davis SextetLester Young QuintetSonny Rollins QuintetThe Ray Draper QuintetJackie McLean SextetGil Coggins Trio + +598828Thomas IngamellsThomas IngamellsUK hard house producer.Needs Vote Tom IngamellsIngamelisT. IngamellisT. IngamellsT.IngamellsThomas IngamellThomas Ingamells A.K.A IngoThomas IngermellsTom IngamellsTom Ingamells,IngoIngo StarNeutron TomThe Phat ControllerGuy OctaneTom's ProjectAvis Van RentalGravity TrappDigital CowboyZeuszTom StaarAngo TamarinCaddyshackTurbulance SystemmOat (6) + +599034Joe Evans (3)Joseph James EvansUS jazz alto and baritone saxophonist from the Swing era. Later became producer/songwriter/label owner ([l=Cee-Jay Record Co.], [l=Carnival Records]). +Born in Pensacola, Florida, October 7, 1916 - Died in Richmond, Virginia of renal disease on January 17, 2014. +Worked with The [a=Manhattans] in the 60's.Needs Votehttps://www.soul-source.co.uk/articles/news-soul/joe-evans-of-carnival-records-obituary-r2836/http://www.press.uillinois.edu/wordpress/jazz-saxophonist-and-uip-author-joe-evans-1916-2014/EvansJ. EvansJ. Evans, Jr.J. J. EvansJ.EvansJo EvansJoseph EvansJoseph J. EvansLionel Hampton And His OrchestraAndy Kirk And His OrchestraClaude Hopkins And His BandLionel Hampton & His Big Band + +599217Dave MaddenDavid Hawley MaddenAmerican jazz saxophonist, played with Woody Herman, Jerry Gray, Stan Kenton and others +Born May 12, 1924 in Elkhart, Indiana, died June 10, 2006 in San Francisco, CaliforniaNeeds VoteDave MaddernDavid HawleyHarry James And His OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman BandWoody Herman And His Third HerdThe Tom Talbert Jazz Orchestra + +599247Morey FeldAmerican jazz drummer. +Born : August 15, 1915 in Cleveland, Ohio. +Died : March 28, 1971 in Denver, Colorado. + +Morey worked with : Ben Pollack (1936), Benny Goodman (1943-1945), +Eddie Condon (1946), Ella Fitzgerald, Slam Stewart, Billy Taylor, Wild Bill Davison, Bobby Hackett, Billy Butterfield, Sarah Vaughan, Stan Getz, Bobby Sherwood, Bernie Leighton, Peanuts Hucko and others. +Needs Votehttps://en.wikipedia.org/wiki/Morey_Feldhttps://www.allmusic.com/artist/morey-feld-mn0000598679/biographyhttps://adp.library.ucsb.edu/names/314958FeldM. FeldThe Benny Goodman QuintetWill Bradley And His OrchestraBud Freeman's Summa Cum Laude OrchestraBenny Goodman And His OrchestraSlam Stewart QuintetTony Mottola FourThe Bobby Hackett SextetBuddy Weed SeptetMorey Feld's Straight-Ahead SixThe Bill Davison SixHarry Lookofsky SeptetBilly Taylor's Big Four (2) + +599272Maurice James SimonAmerican jazz tenor and baritone saxophonist +Born March 26, 1929, Houston, TX. +Died August 6, 2019Needs Votehttps://adp.library.ucsb.edu/names/355592https://en.wikipedia.org/wiki/Maurice_James_SimonM. SimonMarice SimonMaurice J. SimonMaurice SimonMaurice SimonsSimonGerald Wilson OrchestraThe Casual-AiresJoe Morris OrchestraMaurice Simon And The Pie MenRussell Jacquet And His All StarsWilbert Baranco OrchestraChuck Thomas & His All Stars + +599385Joe CallowayJazz bassistNeeds VoteJoe CallawayJoe GallawayStan Getz QuartetStan Getz Quintet + +599488Serge BaudoSerge BaudoFrench conductor, born 16 July 1927 in Marseille, France.Needs Votehttps://en.wikipedia.org/wiki/Serge_Baudohttps://www.bach-cantatas.com/Bio/Baudo-Serge.htmhttps://www.naxos.com/person/Serge_Baudo/48120.htmBaudoOrquestra Sob A Direção De Serge BaudoS. BaudoS. BeaudoС. БодоСерж БаудоСерж Бодоセルジュ・ボードセルジユ・ボード + +599576Coleman Hawkins And His All Star Jam BandCorrectColeman HawkinsColeman Hawkins & His All Star "Jam" BandColeman Hawkins & His All Star Jam BandColeman Hawkins & His All Stars Jam BandColeman Hawkins & His All-Star "Jam" BandColeman Hawkins & His All-Star Jam BandColeman Hawkins All Star BandColeman Hawkins All Star Jam BandColeman Hawkins All StarJam BandColeman Hawkins All StarsColeman Hawkins And His All Star "Jam" BandColeman Hawkins And His All Star BandColeman Hawkins And His All Star Jazz BandColeman Hawkins And His All StarsColeman Hawkins And His All Stars Jam BandColeman Hawkins And His All-Star "Jam" BandColeman Hawkins And His All-Star Jam BandColeman Hawkins And His All-StarsColeman Hawkins And His All-Stars Jam BandHawkins All Star Jam BandColeman HawkinsDjango ReinhardtBenny CarterStéphane GrappelliAlix CombelleEugène d'HellemmesAndré EkyanTommy Benford + +599630Chuck LampkinAmerican jazz drummer. +He worked with : Sarah Vaughan, Duke Ellington, Count Basie, Eddie "Lockjaw" Davis, Eddie Harris, Rex Stewart, Lalo Schifrin and Dizzy Gillespie. +Upon retiring from music he became one of the first African-American news anchormen in the U.S. + +Born : circa, 1925 - . +Died : February 10, 2003 in New Brunswick, New Jersey. +Needs Votehttps://en.wikipedia.org/wiki/Chuck_LampkinCharles LampkinDizzy Gillespie And His OrchestraDizzy Gillespie Big BandDizzy Gillespie Quintet + +600371Count Basie SextetCorrectBandBasie SextetCount Basie & His SextetCount Basie And His SextetMembers Of The Basie BandSextetThe Count Basie SextetBuddy RichCount BasieClark TerryGene RameyLester YoungJo JonesWardell GrayWalter PageFreddie GreenGus JohnsonJoe NewmanPaul QuinichetteShad CollinsJimmy Lewis (2)Buddy DeFranco + +600898Bruce JohnstoneUS based jazz saxophonist and flutist. Born Sept. 1st, 1943 in Wellington, New Zealand.Needs Votehttps://en.wikipedia.org/wiki/Bruce_Johnstone_(musician)B. J. JohnstoneB. JohnstoneBruce JohnsonBruce JohnstonJohnstoneWoody Herman And His OrchestraNew York MaryWoody Herman BandWoody Herman And The Thundering HerdRay Price QuartetThe Brian Smith - Bruce Johnstone Quintet + +601109John Jackson (7)US jazz alto saxophonist and clarinet player from the swing-era. + +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/204865/Jackson_JohnJohnny JacksonBilly Eckstine And His OrchestraCootie Williams And His OrchestraJay McShann And His Orchestra + +601251Tom van der GeerTom van der GeerCorrectT v. d. GeerT v.d. GeerT. V. D. GeerT. V.D. GeerT. V/d GeerT. Van der GeerT. v. d. GeerT. v.d GeerT. v.d. GeerT. v/d GeerT. van der GeerT. vd GeerT.V.D. GeerT.v.d. GeerT.v.d.GeerT.v/d GeerTV.D. GeerTom V /D GeerTom V/D GeerTom VD GeerTom v.d. GeerTom v/d GeerTv.d.GeerTvd Geert. v.d. geerClub CaviarLiquid DJ TeamMass MediumDJ AlphaH.I.P. + +601626Michel PelayNeeds VoteI. PelayM . PelayM. PalayM. PelayM. PeleyM. PeléM. PolayM.PelayMichel Albert Louis PeLayMichel PELAYMichel PeleMichel PeleyMichel PellayP PelayP. PelayPe LoyPeLoyPelayPeloyMichel PaleyMichel PerryLe Système CrapoutchikJean-Pierre Et Les Rebelles + +601673Michel JourdanMichel Eugène JourdanFrench songwriter. +Born: August 10, 1934 in Nice, France. +Dead: September 29, 2025 in Couiza, France. +He wrote his first songs in 1961 for [a7141334] and [a1624915].Needs VoteA. JourdanF. JourdanJ. JourdanJordanJordonJoudanJourdainJourdanJourdan MichelleJourdan, Eugene MichelJourdan, M.Jourdan, Michael EugeneJourdonL. JourdanM JourdanM. DourdanM. GourdanM. JopurdanM. JordanM. JoudanM. JourdainM. JourdanM. JourdantM. JourdonM. JourdánM. JournalM. JoyrdanM. SourdanM. SourdonM.J JourdanM.J. JourdanM.JourdanM: JourdanMi. JourdanMichael E. JourdanMichael Eugene JordanMichael Eugene JourdanMichael JondonMichael JourdanMicheal JourdanMichel E. JourdanMichel Eugene JourdanMichel Eugene JourdonMichel Eugène JourdanMichel Eugène JourdonMichel JordanMichel JourdansMichel JourdonMichele Eugene JourdanMichele JourdanMichelle JourdanN. JourdanN.JourdanR. Jourdanמישל ג'ורדןמישל ג׳ורדן + +601710Harry Warren (2)Salvatore Antonio GuaragnaItalian-American songwriter (born Dec. 24, 1893 in Brooklyn, New York - died Sep. 22, 1981 in Los Angeles, California). + +During his life he (co-)wrote several #1 hit songs, numerous film and Broadway tunes, and even 3 Academy Award winners ("Lullaby of Broadway" in 1935, "You'll Never Know" in 1943 and "On the Atchison, Topeka and the Santa Fe" in 1945). + +Inducted into the Songwriters Hall of Fame in 1971. Notable co-writers were: [a=Al Dubin] and [a=Mack Gordon].Needs Votehttps://en.wikipedia.org/wiki/Harry_Warrenhttps://www.britannica.com/biography/Harry-Warren-American-artisthttps://www.songhall.org/profile/Harry_Warrenhttps://www.imdb.com/name/nm0912851/https://adp.library.ucsb.edu/names/103142A. WarrenA.WarrenB. WarrenD. WarrenD.WarrenEarrenG. WarrenH .WarrenH WarrenH, WarrenH,. WarrenH. WarrenH. AllenH. HarrenH. WanerH. WarenH. WarranH. WarremH. WarrenH. WarrennH. WarrnH. WorrenH. YarrenH. warrenH. ワーレンH.WarrenHa. WarrenHarmy WarrenHarri WarrenHarryHarry HarrenHarry WardenHarry WarenHarry WarennHarry WarnerHarry WarreHarry Warren b. Salvatore GuaragnaHarry Warren, B. Salvatore GuaragnaHarry Warren, b Salvatore Antonio GuaragnaHarry WarrinHarry WaughHarvey WarrenHary WarrenHenry WarrenHuw WarrenH・ウォーレンII.WarrenJ WarremJ. WarrenJ.WarrenM. WarrenMack WarrenMarrenMarry WarrenN. WarrenP.H. WarrenPalmerS. WarnerW. HarryW. WarrenWaerenWallenWallerWalrrenWaraenWardenWarenWarnWarnerWarranWarre nWarrebWarrehWarrellWarremWarrenWarren - GuaragnaWarren HWarren H.Warren HarryWarren, H.Warren, HarryWarren, HenryWarrinWarrneWarrrenWarsenWrren HarryWyrrenwarrenΧ. ΓουώρενВарренГ. ВаренГ. УорренГ. УотрренГарри УорренД. УорренУорренХ. Уорренהארי וורןהרי וורןワーレン + +601813Carl Ulrich BlecherCarl-Ulrich Paul BlecherGerman Schlager lyricist and former president of Deutscher Textdichter-Verband. Also worked as a dentist. + +Born on January 23, 1914 in Berlin-Charlottenburg, died on March 9, 1977 in Berlin-SteglitzNeeds VoteBecherBiecherBlecherBlecher Carl UlrichBlecher Carl-UlrichBlecher, Carl-UlrichBlecher, K.BlechesBlechnerBlechner Carl UlrichBlechoBleckerBleicherBlicherBlocherBlöecherC U BlecherC U. BlecherC-U BlecherC. - U. BlecherC. BlecherC. BlechnerC. U. BlecherC. U. BleckerC. U.BlecherC. Ulrich BlecherC. V. BlecherC. W. BlecherC. u. BlecherC. v. BlecherC.-U. BlecherC.A. BlecherC.U BlecberC.U. BlecherC.U. BlechnerC.U. BleckerC.U.BlecherC.U.BlechnerC.V. BlecherC.W. BlecherCarl BlecherCarl U. BlecherCarl Ullrich BlecherCarl Ulrich BlechaCarl-U. BlecherCarl-Ulrich BlecherCarl-Ulruch BlecherFletcherH. U. BlecherK-U. BlecherK. H. BlecherK. U. BlecherK.-U. BlecherK.U. BlecherKarl Ulrich BlecherKarl-Ulrich BlecherO. U. BlecherT. BlecherU. BecherU. BlacherU. BlecherUlrich BlecherК. БлехерКарл Ульрих БлехерЦ. БлахерЦ. У. Блexeр + +602298Alfred PisukeSwedish violin player. +Born October 3, 1926 in Estonia — died April 7, 2009 in Bromma, Sweden.Needs VoteSveriges Radios SymfoniorkesterThorsten Sjögrens KvintettSixten Strömvalls Stråkkvintett + +602300Inge LindstedtSwedish violin player.Needs VoteSveriges Radios Symfoniorkester + +602308Åke OlofssonJohan Åke OlofssonSwedish classical cellist and cello teacher. Born December 18, 1924 in Sveg, Jämtland, Sweden and died September 17, 2023. +He studied at the [l419723]. Concertmaster in [a1301913] (1950-1954), member of [a=Stockholms Filharmoniska Orkester] (1954-1958). Solo cellist in [a=Sveriges Radios Symfoniorkester] (1958-1986) and concertmaster from 1968.Needs Votehttps://open.spotify.com/artist/1pKKhxrxF7qPs6R6xGWRFShttps://music.apple.com/us/artist/ake-olofsson/330472869http://sv.wikipedia.org/wiki/%C3%85ke_Olofsson_%28musiker%29Ake OlofssonSveriges Radios SymfoniorkesterStockholms Filharmoniska OrkesterHelsingborgs SymfoniorkesterDisco MackanNationalmusei KammarorkesterHans Busch EnsembleHans Buschs TrioSaulescokvartetten + +602324Krzysztof ZdrzalkaSwedish violinist.Needs VoteKryztof ZdrzalkaKrzysztof ZorzalkaZdrzalka KrzysztofSveriges Radios Symfoniorkester + +602330Håkan RoosSwedish violist.Needs VoteSveriges Radios SymfoniorkesterKungliga HovkapelletDrottningholms BarockensembleStockholm SinfoniettaNyklassikerna + +602336Hans-Göran EketorpSwedish cellist/violoncellist.Needs VoteSveriges Radios Symfoniorkester + +602351Lars StegenbergAlf Lars Ove StegenbergSwedish violinist, born 24 November 1945. +First violin in [a=Sveriges Radios Symfoniorkester] and [b]S:t Tomas Symfoniorkester[/b].Needs Votehttp://arkiv.mitti.se/2006/06/vasterort/MIVT16A20060206VBV1.pdfLasse StegenbergSveriges Radios SymfoniorkesterDisco MackanNationalmusei Kammarorkester + +602352Gunnar MicholsSwedish session violinist.Needs Votehttps://open.spotify.com/artist/5wcM8zixGn1NqQvjMK63QKGunnar MickelsGunnar MickolsSveriges Radios SymfoniorkesterDisco Mackan + +602354Bertil OrsinSwedish classical violinist (primarily), arranger and concert master. born October 29, 1936 in Malmö, died March 4, 1995 in Lidingö.Needs Votehttps://open.spotify.com/artist/2PAeYKihT1iAAqgPDYgqiohttps://music.apple.com/ru/artist/bertil-orsin/331035566?l=enSveriges Radios SymfoniorkesterDrottningholms BarockensembleIvan Renlidens OrkesterDisco MackanNationalmusei Kammarorkester + +602356Sixten StrömvallSwedish violinist, born 16 January 1922 in Norrköping, died 18 December 2018. +He may appear as [b]Sixten Strömwall[/b].Needs VoteSixten StrömwallSveriges Radios SymfoniorkesterDisco MackanSixten Strömvalls Stråkkvintett + +602364Harry TeikeKnut Bror Harry TeikeSwedish violinist. +Born 15 July 1923, Mölltorp, Sweden - Died 4 November 1989, Hägersten, Sweden.Needs VoteSveriges Radios SymfoniorkesterDisco Mackan + +602626Stephen TeesStephen TeesFormer principal viola of the [b]City of London Sinfonia[/b].Needs VoteS. TeesSteve TeesCity Of London SinfoniaThe Martyn Ford OrchestraAnn Morfee StringsThe Richard Hickox OrchestraMichaelangelo Chamber OrchestraString Quartet (5) + +602829Jennifer KummerJennifer Dugle KummerFrench hornist, based in Nashville, Tennessee, USA. +Married to [a=Stephen Kummer]Needs Votehttps://www.xobrass.com/artists/jennifer-kummerJKJennifer D KummerJennifer KrummerJennifer KumerJennifer KummeJennifer DugleThe Nashville String MachineThe Memphis SymphonySaint Louis Symphony OrchestraNashville Symphony OrchestraThe Jeff Steinberg OrchestraHonolulu SymphonyNashville Studio OrchestraMr. Jack Daniel's Original Silver Cornet BandGrant Park OrchestraNashville Opera OrchestraNashville Brass Ensemble + +602873Monica AspelundMonica AspelundA Finnish singer. Born on July 16, 1946 in Vaasa, Finland. Sister of [a=Ami Aspelund]. +Needs Votehttps://en.wikipedia.org/wiki/Monica_AspelundAspelundM AspelundM. AspelundM.AspelundMonikaMonika AspelundМ. АспелундМоника АспелундLasaset + +602875Veikko LaviToivo Veikko "Vepa" LaviBorn April 23, 1912 in Kotka, Finland. A Finnish singer, songwriter and author. He used also the pseudonyms Olavi Valo as a lyricist and Kai von Ämberg as a composer (song "Torpan Kohdalla"). + +Died May 22, 1996 in Hamina, Finland. +Needs VoteLaviV. LaviV. laviV.LaviKai von ÄmbergMiehet yhdessä + +603388Joe Thomas (6)Joseph Thomas, Jr.American jazz saxophonist, bassist, vocal coach ([a=The Beavers (10)], [a=The Ravens (2)]), producer, arranger and songwriter active in New York, NY. Often co-wrote songs with [a=Howard Biggs], such as "I'm Gonna Sit Right Down And Cry Over You". Often associated with the publisher [l=Raleigh Music]. Started playing in the 1920s for [a=Jelly Roll Morton], gave up to become a vocal coach in the 1940s. Later became an A&R executive for [l=Decca] and [l=RCA Victor], beginning his prolific songwriting career. May have produced and played bass on early 50s [l=Victor] recordings of [a=Arthur "Big Boy" Crudup]. Also known as a recording artist/bandleader Joey Thomas. Brother of [a=Walter Thomas]. Born: 23 December 1908, Muskogee, Oklahoma, USA - Died: 15 April 1997, New York City, New York, USA + +[b]Not to be confused with Jimmie Lunceford Orchestra saxophonist [a=Joe Thomas (3)].[/b]Needs Votehttps://en.wikipedia.org/wiki/Joe_Thomas_(alto_saxophonist)https://www.allmusic.com/artist/joe-thomas-mn0001306734/biographyhttps://secondhandsongs.com/artist/74032http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=341849&subid=0http://www.uncamarvy.com/Beavers/beavers.htmlCornbread ThomasJ ThomasJ. RaleighJ. ThomasJ.ThomasJo ThomasJoe "Cornbread" ThomasJoey ThomasJoseph ThomasPeppeThomasThomas BiggsThomas [Uncredited]Thomas, JJack AllenRay George (2)Jelly Roll Morton's Red Hot PeppersJelly Roll Morton And His OrchestraJoey Thomas And His OrchestraJoey Thomas & His Band + +603389John GummoeJohn Claude GummoeLead vocalist of the 1960's band The Cascades, who had their biggest hit with a song called "Rhythm Of The Rain", which was written by this artist. + Born Aug.2, 1938 in Cleveland, Ohio. +Needs Votehttp://www.rhythmoftherain.com/bio.htmlCommoeCummoeFred GumoeFummoeGGammoeGemmoeGemmolGummaeGummceGummdeGummeeGummelGummerGummocGummoeGummoe / John C.GummolGunmoeGunnoeI. GummoeJ GummoeJ. C. GummoeJ. CummoeJ. GumeeJ. GummerJ. GummoaJ. GummoeJ. GummogJ. GummolJ. GummorJ. GummosJ. GummœJ. GunmoeJ.C. GummoeJ.GummoeJack GummoeJean Claude GummoeJhon GummoeJoe GummoeJohan GummoeJohn C GummoeJohn C. GummoeJohn Claude GummoeJohn Claude GunmoeJohn CummoeJohn G. GummoeJohn GrummoeJohn GummaeJohn GummceJohn GummosJohn GummueJohn GummœJohn GunmoeJohn GunmoreJohn-GammoeJohn. C. GummoeJohnny ParrisJon Claude GummoeThe Cascades (2)Kentucky ExpressJohnny Garrett And The Rising SignsPoets In MotionTwo Bits (2)Johnny Parris & Co. + +603682The Milt Jackson QuartetCorrectMilt JacksonMilt Jackson Modern Jazz QuartetMilt Jackson QuartetMilt Jackson's QuartetThe MJQThe Milt Jackson Quartet [Uncredited]The QuartetHorace SilverMilt JacksonKenny ClarkeConnie KayRay BrownPercy HeathPaul Chambers (3)Hank JonesJohn Lewis (2) + +603723Ian RowbothamClassical viola player. +He has been playing the violin since he was eight and switched to the viola at 17.Needs VoteLondon Symphony Orchestra + +603733Helen CooperViolinist.Needs VoteBBC Symphony Orchestra + +603734Dominic O'DellClassical violoncellist.Needs VoteDomonic O DellCollegium Musicum 90Concerto CaledoniaGabrieli PlayersThe English Concert + +603736Tommie ConnorThomas Patrick ConnorBritish songwriter, born 16 November 1904 in London, England; died 28 November 1993. He is credited with several hit songs over his long career. Most notable among these was "I Saw Mommy Kissing Santa Claus," which was recorded by many artists and is among the top-25 Christmas songs.Needs Votehttps://en.wikipedia.org/wiki/Tommie_Connorhttps://adp.library.ucsb.edu/names/114459Catherine McCarthyCommorConnerConnersConnirConnoerConnolConnorConnor TommieConnor, TommieConnorsConorCoonerF. ConnonF. ConnorJ. ConnorO' ConnorO'ConnorPatrick ConnorPatrick Connor ThomasT ConnorT. ConnerT. ConnersT. ConnetT. ConnolT. ConnorT. ConnorsT. O'ConnorT.ConnerT.ConnorTammie ConnorsThomas ConnerThomas ConnorThomas ConorThomas P. ConnorThomas Patrick ConnorThomas Patrick CooperTimmie ConnorTommie ConnerTommie ConnersTommie ConnorsTommie ConnosTommy ConnerTommy ConnersTommy ConnorTommy CornerTommy P. ConnorTommye ConnerTomy ConnorTonnie Connorコーナー + +603846Bill PembertonWilliam McLane PembertonAmerican jazz bassist, born March 5, 1918 in New York City, died December 13, 1984 in the same city. +Worked with Frankie Newton 1941-1945, Herman Chittison 1945-1947, Mercer Ellington and Eddie Barefield 1946 and Billy Kyle 1948. Later performed and recorded with Art Tatum and Fletcher Henderson. With Earl Hines 1966-1969, JPJ Quartet 1969-1975, Panama Francis 1979-1983.Needs Votehttps://adp.library.ucsb.edu/names/337014Bill PembersonW. PembertonWilliam Bill PembertonWoody Herman And His OrchestraEarl Hines And His OrchestraEarl Hines And His QuartetWoody Herman And The Thundering HerdThe Fletcher Henderson All StarsPanama Francis And The Savoy SultansVic Dickenson QuartetThe JPJ QuartetMercer Ellington Octet + +603854Robert DrasninRobert Jackson DrasninAmerican composer and jazz reed player (alto and tenor sax, clarinet, flute), born November 17, 1927, Charleston, West Virginia, USA, died May 13, 2015, Tarzana, California, USA. +Drasnin played and recorded with the big bands of [a=Les Brown] 1950, [a=Alvino Rey] 1953, [a=Tommy Dorsey] 1953, [a=Ken Hanna] 1953-1954, and [a=Frank Capp] 1960, and with [a=Red Norvo]'s Quintet in 1956-1958. +He wrote the scores for many television series including [i]The Twilight Zone[/i], [i]The Man From U.N.C.L.E.[/i], [i]Mission: Impossible[/i], [i]Lost In Space[/i] and others. 2008 inductee of West Virginia Music Hall of Fame.Needs Votehttps://en.wikipedia.org/wiki/Robert_Drasninhttps://www.wvmusichalloffame.com/hof_drasnin.htmlBob DrasminBob DrasninBobby DrasninDrasninR. DrasninSkip Heller's Hot SevenThe Frankie Capp Percussion GroupSkinnay Ennis And His OrchestraRed Norvo QuintetRonny Lang Saxtet + +604171Rodgers & HartComposer [a=Richard Rodgers] and lyricist [a=Lorenz Hart] were a songwriting duo from New York, New York. Active from 1919 to 1943, they wrote an incredible amount of musical comedies for movie and theatre. Among their best known songs are [i]Blue Moon[/i], [i]My Funny Valentine[/i] and [i]The Lady Is A Tramp[/i]. + +When Lorenz Hart died in 1943, Richard Rodgers teamed up with [a253375] to form [a284099].Needs Votehttps://en.wikipedia.org/wiki/Rodgers_and_Harthttps://www.ibdb.com/broadway-production/rodgers-hart-3747https://www.encyclopedia.com/media/encyclopedias-almanacs-transcripts-and-maps/rodgers-and-hart- Rodgers-Hart-Rodgers-C. Hart / R. RodgersC.C.D. RodgersD. Rogers - L. HartD.Rogers-L.HartDick Rodgers - Larry HartDodgers - HartE.Rodgers-L.HartH. RodgersH. Rodgers - L. HartH. Rodgers, L. HartHard-RodgersHarold Rodgers, Lorenz HartHartHart & HartHart & RodgersHart & RogersHart - Lorenz - Rodgers - RichardHart - Richard RodgersHart - RodgersHart - RogersHart -RodgersHart / RedgersHart / RidgersHart / RodgersHart / RodgesHart / RogersHart Et RodgersHart Lorenz / Richard RodgersHart Lorenz, Richard RodgersHart Lorenz, Rodgers RichardHart Lorenz/Rodgers RichardHart Lorenz; Rodgers RichardHart RodgersHart RogersHart and RodgersHart et RodgersHart y RodgersHart | RodgersHart – RodgersHart — RodgersHart&RodgersHart, L./ Rodgers, R.Hart, L./Rodgers, R.Hart, Richard RodgersHart, RodgersHart, RogerHart, RogersHart- RodgersHart- RogersHart-Richard RodgersHart-RobertsHart-RodgerHart-RodgersHart-RodgesHart-RogersHart-RosgersHart. RodgersHart/ RodgersHart/RodgersHart/RogersHart; RodgersHarts - RodgersHartz / RodgersHart—RodgersHart★RodgersHeart , RodgersHeart-RodgersI. Hart - R. RodgersI. Hart, R. RogersJ Hart/R RodgersL Hart - R RodgersL Hart - R. RodgersL Hart / R RodgersL Hart-R RodgersL Hart/R RodgersL. HartL. Hart & R. RodgersL. Hart & R. RogersL. Hart - R. RodgersL. Hart - R. Rodgers.L. Hart - R. RogersL. Hart - R.- RodgersL. Hart - R.RodgersL. Hart - RodersL. Hart - RodgersL. Hart -R. RodgersL. Hart / R. RodgersL. Hart / R. RogerL. Hart / R. RogersL. Hart / R. rodgersL. Hart / RodgersL. Hart And R. RodgersL. Hart And R. RogersL. Hart I R. RodgersL. Hart R. RodgersL. Hart – R. RodgersL. Hart – R. RogersL. Hart –R. RodgersL. Hart, B. RodgersL. Hart, R. RodgersL. Hart, R. RogersL. Hart, Richard RodgersL. Hart- -R. RodgersL. Hart- R. RodgersL. Hart- R. RogersL. Hart--R. RodgersL. Hart-R RogersL. Hart-R. RodgersL. Hart-R. RogersL. Hart-R.RodgersL. Hart-RodgersL. Hart-RogersL. Hart/ R. RodgersL. Hart/P. RodgersL. Hart/R. RodgersL. Hart/R. Rodgers.R.L. Hart/R. RogersL. Hart/R.RodgersL. Hart; R. RodgersL. Hartz & R. RogersL. Hartz, R. RodgersL. Hart~R. RodgersL. Hart–R. RodgersL. Hart—R. RodgersL. Hert, R. RodgersL. Rodgers - L. HartL. Rodgers / L. HartL. Rodgers / R. RodgersL. Rodgers L. HartL. Rodgers, L. HartL. Rodgers-L. HartL. Rodgers-R. HartL. Rodgers/L. HartL.Hart & R.RodgersL.Hart - R. RodgersL.Hart - R.RodgersL.Hart / R. RodgersL.Hart / R.RodgersL.Hart,R.RodgersL.Hart-R. RodgersL.Hart-R. RogersL.Hart-R.RodgersL.Hart/R. RodgersL.Hart/R.RodgersLionel Hart, Richard RodgersLoenz Hart, Richard RodgersLorens Hart-Richard RodgersLorentz Hart - Richard RodgersLorentz Hart / Richard RodgersLorentz Hart, Richard RodgersLorentz Hart-Richard RodgersLorenz - Hart - R. RodgersLorenz HartLorenz Hart & Richard RidgersLorenz Hart & Richard RodgersLorenz Hart & Richard RogdersLorenz Hart & Richard RogersLorenz Hart - R. RodgersLorenz Hart - Richard RodgerLorenz Hart - Richard RodgersLorenz Hart - Richard RogersLorenz Hart -Richard RodgersLorenz Hart / R. RodgersLorenz Hart / Richard HartLorenz Hart / Richard RodgeresLorenz Hart / Richard RodgersLorenz Hart / Richard RogersLorenz Hart And Richard RodgersLorenz Hart And Richard RogersLorenz Hart Et RodgersLorenz Hart R. RodgersLorenz Hart Richard RodgersLorenz Hart Richard RogersLorenz Hart and Richard RodgersLorenz Hart ‒ Richard RodgersLorenz Hart – Richard RodgersLorenz Hart ⎯ Richard RodgersLorenz Hart, R. RodgersLorenz Hart, R. RogersLorenz Hart, Richard RodgersLorenz Hart, Richard RodgesLorenz Hart, Richard RogersLorenz Hart,Richard RodgersLorenz Hart- Richard RodgersLorenz Hart-R. RodgersLorenz Hart-Richard A. RodgersLorenz Hart-Richard RedgersLorenz Hart-Richard RodgersLorenz Hart-Richard RogersLorenz Hart. Richard RodgersLorenz Hart/R. RodgersLorenz Hart/Richard RodgersLorenz Hart/Richard RogersLorenz Hasrt - Richard RodgersLorenz Heart/Richard RodgersLorenz M. Hart / Richard C. RdogersLorenz Milton Hart, Richard Charles RodgersLorenz, HartLorenz-Hart-R. RodgersLorenze Hart And Richard RodgersLorenze Hart, Richard RodgersLorenze Hart-Richard RodgersLorenze Hart-Richard RogersLorenzo Hart, Richard RogersLorenzo Hart-Richard RodgersLorenzo Hart/Richard RodgersLorenzy Hart-Richard RodgersLornez Hart, Richard RodgersLotrenz Hart And Richard RodgersMarksPaul Lorenz Hart/Richard RodgersR Rodgers & L HartR Rodgers - L HartR Rodgers / L HartR Rodgers, L HartR Rodgers, L. HartR Rodgers-L HartR Rodgers/L HartR Rogers, L HartR Rogers/L HartR&HR, Rodgers - L. HartR, Rodgers, L. HartR- Rodgers & L. HartR. & H.R. & HartR. HartR. Hart, R. RodgersR. Richard - L. HartR. Richards-L. HartR. Richards-L.HartR. Rodfers/L. HartR. Rodger & L. HartR. Rodger - L. HartR. Rodger, L. HartR. Rodger-L. HeartR. Rodger/L. HartR. RodgersR. Rodgers & L. HartR. Rodgers - L. HartR. Rodgers - L HartR. Rodgers - L, HartR. Rodgers - L- HartR. Rodgers - L. ArtR. Rodgers - L. HartR. Rodgers - Lorenz HartR. Rodgers - R. HartR. Rodgers - W. HartR. Rodgers -L. HartR. Rodgers / HartR. Rodgers / I. HartR. Rodgers / L. HartR. Rodgers / L.. HartR. Rodgers / L.HartR. Rodgers / Lorenz HartR. Rodgers / R. HartR. Rodgers /L. HartR. Rodgers And L. HartR. Rodgers E L. HartR. Rodgers HartR. Rodgers L. HartR. Rodgers Lorenz HartR. Rodgers and L. HartR. Rodgers y L. HartR. Rodgers – L. HartR. Rodgers — L. HartR. Rodgers, - L. HartR. Rodgers, HartR. Rodgers, L HartR. Rodgers, L, HartR. Rodgers, L. HartR. Rodgers, L. HeartR. Rodgers, L.HartR. Rodgers,L. HartR. Rodgers- L. HartR. Rodgers-C. HartR. Rodgers-HartR. Rodgers-L HartR. Rodgers-L- HartR. Rodgers-L. HartR. Rodgers-L.HartR. Rodgers-Lorenz HartR. Rodgers/ HartR. Rodgers/ L. HartR. Rodgers/H. HartR. Rodgers/HartR. Rodgers/K. HartR. Rodgers/L. HartR. Rodgers/L. HartzR. Rodgers/L. HeartR. Rodgers/L.HartR. Rodgers/Lorenz HartR. Rodgers/M. HartR. Rodgers; L. HartR. Rodgers—L. HartR. Rogders/L. HartR. RogersR. Rogers & C. HartR. Rogers & H. LorenzR. Rogers & L. HartR. Rogers - L. HartR. Rogers - L. HeartR. Rogers / HartR. Rogers / L. HartR. Rogers And L. HartR. Rogers E L. HartR. Rogers, L. HartR. Rogers-HartR. Rogers-L. HartR. Rogers-L. HeartR. Rogers/L. HartR.RodersR.Rodgers & L. HartR.Rodgers & L.HartR.Rodgers - L. HartR.Rodgers - L.HartR.Rodgers / L. HartR.Rodgers / L.HartR.Rodgers, L.HartR.Rodgers, R. HartR.Rodgers-L. HartR.Rodgers-L.HartR.Rodgers/ L.HartR.Rodgers/L HartR.Rodgers/L. HartR.Rodgers/L.HartR.Rodgers=L.HartR.Rodhers, L. HartR.Rogers - L.HartR.Rogers L. HartR.Rogers, L.HartR.Rogers-L. HartR.Rogers/L.HartRIchard Rodgers-Lorenz HartRIchard Rodgers/Lorenz HartRcihard Rodgers-Lorenz HartRdogers-HartRicahrd Rodgers - Lorenz HartRicahrd Rodgers, Lorenz HartRicard Rodgers & L. HartRicard Rodgers and Lorenz HartRicard Rodgers/Lorez HartRicchard Rodgers And Lorenz HartRich.Rodgers-HardRichar Rodgers - Lorens HartRichard Rodgers-Lorenz HartRichard & Lorenz HartRichard / Lorenz HartRichard Charles Rodgers & Lorenz Milton HartRichard Charles Rodgers - Lorenz Milton HartRichard Charles Rodgers, Lorenz Milton HartRichard Charles Rodgers-Lorenz Milton HartRichard Charles Rodgers/Lorenz Milton HartRichard HartRichard Rdgers-Lorenz HartRichard Ridgers / Lorenz HartRichard Roders/Lorenz HartRichard RodgerRichard Rodger & HartRichard Rodger - Lorenz HartRichard Rodger, Lorenz HartRichard Rodger-Lorenz HartRichard Rodger/Lorenz HartRichard Rodgerd, Lorenz HartRichard Rodgeres-Lorenz HartRichard RodgersRichard Rodgers & HartRichard Rodgers & Lorentz HartRichard Rodgers & Lorenz HartRichard Rodgers & Lorenz hartRichard Rodgers & LorenzHartRichard Rodgers & Lorenzo HartRichard Rodgers + Lorenz HartRichard Rodgers , Larry HartRichard Rodgers , Lorenz HartRichard Rodgers - Lorenz HartRichard Rodgers - L. HartRichard Rodgers - Larry HartRichard Rodgers - Laurenz HartRichard Rodgers - Lawrenz HartRichard Rodgers - Lorens HartRichard Rodgers - Lorentz HartRichard Rodgers - Lorenz HArtRichard Rodgers - Lorenz HartRichard Rodgers - Lorenzo HartRichard Rodgers - Lornez HartRichard Rodgers -Lorenz HartRichard Rodgers -Lorenz Hart HartRichard Rodgers / Lionel HartRichard Rodgers / Lorens HartRichard Rodgers / Lorentz HartRichard Rodgers / Lorenz HartRichard Rodgers /Lorenz HartRichard Rodgers And Lorenz HartRichard Rodgers And Lorenzo HartRichard Rodgers Et Lorenz HartRichard Rodgers Lorenz HartRichard Rodgers and Lorentz HartRichard Rodgers and Lorenz HartRichard Rodgers and Lorenz Hart,Richard Rodgers ~ Lorenz HartRichard Rodgers – HartRichard Rodgers – Lorenz HartRichard Rodgers • Lorenz HartRichard Rodgers, L. HartRichard Rodgers, Larenz HartRichard Rodgers, Lawrence HartRichard Rodgers, Lionel HartRichard Rodgers, Lorenez HartRichard Rodgers, Lorentz HartRichard Rodgers, Lorenz HartRichard Rodgers, Lorenz, HartRichard Rodgers, Lorenze HartRichard Rodgers,Lorenz HartRichard Rodgers- Lorenz HartRichard Rodgers-Jerome HartRichard Rodgers-L. HartRichard Rodgers-Laurenz HartRichard Rodgers-Lawrence HartRichard Rodgers-Lionel HartRichard Rodgers-Lorenz HardRichard Rodgers-Lorenz HarsRichard Rodgers-Lorenz HartRichard Rodgers-Lorenz Hart*Richard Rodgers-Lorenz hartRichard Rodgers-LorenzHartRichard Rodgers-Lorenzo HartRichard Rodgers. Lorenz & HartRichard Rodgers. Lorenz HartRichard Rodgers/ Lorens HartRichard Rodgers/ Lorenz HartRichard Rodgers/HartRichard Rodgers/Laurenz HartRichard Rodgers/Lawrence HartRichard Rodgers/Lonrenz HartRichard Rodgers/Lorens Lorenz HartRichard Rodgers/Lorentz HartRichard Rodgers/Lorenz HartRichard Rodgers/Lorenz HatRichard Rodgers/Lorez HartRichard Rodgers/Lorrenz HartRichard Rodgers; Lorenz HartRichard Rodgers;Lorenz HartRichard Rodgers=Lorenz HartRichard Rodgerse - Lorenz HartRichard Rodgers‒Lorenz HartRichard Rodgers–Lorenz HartRichard Rodgers—Lorenz HartRichard Rodges - Lorenz HartRichard Rogers & Larry HartRichard Rogers & Lorenz HartRichard Rogers , Lorenz HartRichard Rogers - L. HartRichard Rogers - Lorentz HartRichard Rogers - Lorenz HartRichard Rogers - Moss HartRichard Rogers / Lawrence HartRichard Rogers / Lorenz HartRichard Rogers And Lorenz HartRichard Rogers And Lorenzo HartRichard Rogers Lorenz HartRichard Rogers and Lorentz HartRichard Rogers and Lorenz HartRichard Rogers, L. HartRichard Rogers, Lawrence HartRichard Rogers, Loren HartRichard Rogers, Lorens HartRichard Rogers, Lorenz HartRichard Rogers, Lorenzo HartRichard Rogers, Lorez HartRichard Rogers-L. HartRichard Rogers-Lorenz HartRichard Rogers/ Lorenz HartRichard Rogers/ Lorez HartRichard Rogers/HartRichard Rogers/Laurenz HartRichard Rogers/Lorenz HartRichard Rogers/Lorenzo HartRichard Rogers—Lorenz HartRichard Roggers-Lorenz HartRichard Ropdgers - Lorenz HartRichard, LorenzRichards Rodgers - Lorenz HartRichards Rodgers, Lorenz HartRichards Rodgers-Lorenz HartRichars Rodgers - Lorenz HartRichatd Rodgers-Lorenz HartRichrad Rodgers / Lorenz HartRichrd Rodgers - Lorenz HartRichrd Rodgers / Lorenz HartRidgers - HartRidgers, HartRochard Rodgers - Lorenz HartRodbergs/HartRoders & HartRoders / HartRodger - HartRodger / HartRodger And HartRodger, HartRodger-HartRodger-IjardRodger/HartRodgersRodgers & HartsRodgers & HeartRodgers + HartRodgers , HartRodgers - BartRodgers - HartRodgers - HartsRodgers - HeartRodgers - HurtRodgers - L. HartRodgers -HartRodgers . HartRodgers / HartRodgers / HeartRodgers / Lorenz HartRodgers /HartRodgers ; HartRodgers And HartRodgers And Hart'sRodgers E HartRodgers Et HartRodgers H,artRodgers HartRodgers R./Heart L.Rodgers Y HartRodgers _ HartRodgers and HartRodgers y HartRodgers | HartRodgers · HartRodgers – HartRodgers • HartRodgers ∙ HartRodgers&HartRodgers(HartRodgers, HartRodgers, Lorenz HartRodgers, MartRodgers, Richard / Hart, LorentzRodgers,HartRodgers- HartRodgers--HartRodgers-HarRodgers-HardRodgers-HartRodgers-HartsRodgers-HeartRodgers-HortRodgers-HurtRodgers-L.HartRodgers-Lorenz HartRodgers. HartRodgers.-HartRodgers.HartRodgers/ HartRodgers/HartRodgers/HeartRodgers/HertRodgers/HuntRodgers/L. HartRodgers/artRodgers: HartRodgers; HartRodgers;HartRodgers;Hart;Rodgersn HartRodgers–HartRodgers—HartRodgers—HeartRodgers―HartRodgerts, HartRodger’s-HartRodges - HartRodges, HartRodges-HertRodgess HartRodhers-HartRodzers - HartRoge's - HartRoger & HartRoger & HartsRoger - HartRoger And HartRoger HarsRoger – HartRoger-HartRogersRogers & HartRogers & LorenzRogers - HartRogers - HeartRogers - L. HartRogers -HartRogers / HarrisRogers / HartRogers /HartRogers And HartRogers And HeartRogers Et HartRogers HartRogers and HartRogers — HartRogers • HartRogers' HartRogers, HartRogers, L. HartRogers- HartRogers-HartRogers-HeartRogers/HartRogers/HeartRogers; HartRogers–HartRogerts and HartRoichaard Rodgers / Lorenz HartRoidgers-HartRoodgers-HartRosgers/HartS. Rogers/L.Hartl hart / r rodgersРоджерс - ХартРоджерс, Хартロジャース・ハートロジャース~ハートLorenz HartRichard Rodgers + +604396Symphonie-Orchester Des Bayerischen RundfunksGerman radio symphony orchestra from Bavaria. +The [i]Symphonie-Orchester Des Bayerischen Rundfunks[/i] (Bavarian Radio Symphony Orchestra) is affiliated to the [a639838] (Bavarian Broadcasting). It was founded in 1949. + +Please use [a8204727] when credited as such or similar. + +Principal conductors: +• [a842238] (1949 to 1960) +• [a842888] (1961 to 1979) +• [a835518] (1983 to 1992) +• [a415720] (1993 to 2003) +• [a846281] (2003 to 2019) +• [a490290] (signed to start in 2023)Needs Votehttps://www.br-so.de/https://en.wikipedia.org/wiki/Bavarian_Radio_Symphony_OrchestraA Bajor Rádio Énekkara És Szimfonikus ZenekaraA Bajor Rádió Szimfonikus ZenekaraBR SymphonieorchesterBR Symphonieorchester MünchenBROBRSOBRSO MünchenBavaria Rundfunk OrchesterBavarian Broadcasting OrchestraBavarian Broadcasting Symphony OrchestraBavarian RSOBavarian Radio Munich Symphony OrchestraBavarian Radio Orch.Bavarian Radio OrchestraBavarian Radio SYmphony OrchestraBavarian Radio Symhpony OrchestraBavarian Radio SymphonyBavarian Radio Symphony OrchestraBavarian Radio Symphony Chorus & OrchestraBavarian Radio Symphony Orch.Bavarian Radio Symphony OrchestraBavarian Radio Symphony Orchestra & ChorusBavarian Radio Symphony OrchestrasBavarian Radio Symphony OrhestraBavarian Rundfunk SymphonieorchesterBavarian State OrchestraBavarian State Radio OrchestraBavarian Symphony OrchestraBavarian radio Symphony OrchestraBaverian Radio Symphony OrchestraBay. RundfunkorchesterBayer. Rundfunkorch.Bayer. RundfunkorchesterBayerin Radion SinfoniaorkesteriBayerische Rundfunk - SymphonieorchesterBayerische RundfunkorchesterBayerische Rundfunks SymfoniorkesterBayerischen RundfunksBayerischen Rundfunks Symphony OrchestraBayerischer Rundfunks SymfoniorkesterBayerisches Radio Symphonie OrchesterBayerisches RundfunkorchesterBayerisches Sinfonie-OrchesterBayerisches Symphonie-OrchesterBayerisches SymphonieorchesterBayern Radio Symphony OrchestraBayerns RadiosymfonikerBayerns RadiosymfonikerBayerska Radions OrkesterBayerska Radions SymfoniorkesterBayr. Rundfunk-OrchesterBayr. RundfunkorchesterBayrerisches SymphonieorchesterBayreuth Radio Symphony OrchestraBayrisches Rundfunk-Sinfonie-OrchesterBayrisches Symphonie-OrchesterBeiers Radio Symfonie OrkestBeiers Radio-Symfonie-OrkestBeiers Radio-SymfonieorkestBläser Des Symphonieorchester des Bayerischen RundfunksBläsersolisten Des Symphonieorchesters Des Bayerischen RundfunksChoeur Et Orchestre Symphonique De La Radio BavaroiseChoir & Symphonieorchester Des Bayerischen RundfunksChor Und Orchester Des Bayerischen RundfunksChor Und Sinfonie-Orchester Des Bayerischen RundfunksChor Und Symphonie-Orchester Des Bayerischen RundfunksChor Und Symphonieorchester Des Bayerischen RundfunksChor, Solisten Und Symphonieorchester Des Bayerischen RundfunksChorus and Symphony Orchestra of the Bavarian RadioCoro E Orquestra Sinfônica Da Rádio BávaraDas Bayerische RundfunkorchesterDas Bayerische Symphonie-OrchesterDas Bayerische Symphonie-Orchester,Das Bayerische SymphonieorchesterDas Bayrische RundfunkorchesterDas Bayrische Sinfonie-OrchesterDas Bayrische Symphonie-OrchesterDas Große Orchester Des Bayerischen RundfunksDas Große Orchester Des Bayrischen RundfunksDas Orch. d. Bayr. RundfunksDas Orchester Des Bayerischen RundfunksDas Rundfunkorchester Des Bayerischen RundfunkDas Rundfunkorchester Des Bayerischen RundfunksDas Sinfonie Orchester Des Bayerischen RundfunksDas Sinfonie-Orchester Des Bayerischen RundfunksDas Sinfonieorchester Des BRDas Sinfonieorchester Des Bayerischen RundfunksDas Symphonie-Orchester Des Bayerischen RundfunksDas Symphonie-Orchester Des Bayrischen Rundfunks, MünchenDas Symphonie-Orchester des Bayrischen Rundfunks, MünchenDas Symphonieorchester Des Bayerischen RundfunksDas Symphony-Orchester Des Bayerischen Rundfunks (München)Des Symphonie-Orchester Des Bayerischen Rundfunks, MünchenDet Bayerske RadiosymfoniorkesterDet Bayriske RadiosymfoniorkesterEnsemble Instrumental Orchestre Symphonique De La Radio BavaroiseL'Orchestra Sinfonica Della Radio BavareseL'Orchestre Symphonique De La Radio Bavaroise, MunichLa Salle QuartetMembers Of The Bavarian Radio Symphony OrchestraMiembros De La Orquesta Sinfonica De La Radio De BavariaMitglieder Des Symphonieorchester Des Bayerischen RundfunksMitglieder Des Orchesters Des Bayerischen RundfunksMitglieder Des Sinfonie-Orchesters Des Bayerischen RundfunksMunich Radio SymphonyMunich Radio Symphony OrchestraMunich,Münchener Symphonie-OrchesterMünchner Rundfunk-TanzorchesterMünchner RundfunkorchesterO. Sinfónica De Radio MunichO.S. de la Radiodifusión BávaraOrch. Bayerischen RundfunkOrch. Bayerischer RundfunkOrch. D. Bayerischen RundfunksOrch. D. Bayrischen RundfunksOrch. Symph. De La Radio BavaroiseOrch. Symphonique De La Radio BavaroiseOrchesta de la Radio de MunichOrchesterOrchester Bayrische RundfunkOrchester D. Bayerischen RundfunksOrchester Der Bayerischer RundfunkOrchester Des BROrchester Des Bayerischen RundfunksOrchester Des Bayerischen Rundfunks MünchenOrchester Des Bayrischen RundfunksOrchester des Bayerischen RundfunksOrchester des Bayrischen RundfunksOrchestraOrchestra Della Radio BavareseOrchestra Della Radio Bavarese Di MonacoOrchestra Della Radio Di MonacoOrchestra Di Stato BavareseOrchestra Filarmonica Della Radio BavareseOrchestra Of Bavarian RadioOrchestra Of Radio BavariaOrchestra Of The Bavarian BroadcastingOrchestra Of The Bavarian Broadcasting ServiceOrchestra Of The Bavarian RadioOrchestra Of The Bavarian Radio MunichOrchestra Of The Bayerischer RundfunkOrchestra Of The Bayrischen Rundfunk MunichOrchestra Of The Bayrischen Rundfunks, MunichOrchestra Of The Bayrischer Rundfunk - MunichOrchestra Radio Di MonacoOrchestra SInfonica Del Bayerischer RundfunkOrchestra SinfonicaOrchestra Sinfonica Della Radio BavareseOrchestra Sinfonica Della Radio Bavarese Di MonacoOrchestra Sinfonica Della Radio Bavarese di MonacoOrchestra Sinfonica Della Radio Di MonacoOrchestra Sinfonica del Bayerischen RundfunksOrchestra of The Bavarian RadioOrchestra sinfonica della radio BavareseOrchestreOrchestre De La Radio BavaroiseOrchestre De La Radio De MunichOrchestre De La Radiodiffusion BavaroiseOrchestre Philharmonique de la Radio BavaroiseOrchestre Radio-Symphonique De MunichOrchestre SymphoniqueOrchestre Symphonique BavaroisOrchestre Symphonique De Bavière, MunichOrchestre Symphonique De La Radio BavaroiseOrchestre Symphonique De La Radio Bavaroise MunichOrchestre Symphonique De La Radio Bavaroise, MunichOrchestre Symphonique De La Radio Diffusion BavaroiseOrchestre Symphonique De La Radiodiffusion BavaroiseOrchestre Symphonique De La Radiodiffusion Nationale BavaroiseOrchestre Symphonique De MunichOrchestre Symphonique De la Radio BavaroiseOrchestre Symphonique De la Radio Bavaroise, MunichOrchestre Symphonique de BavièreOrchestre Symphonique de la Radio BavaroiseOrchestre Symphonique de la Radio Bavaroise MunichOrchestre Symphonique de la Radiodiffusion BavaroiseOrchestre Symphonique de la Radiodiffusion Bavaroise (Orchestre de la Radio BavaroiseOrchestre de la Radiodiffusion BavaroiseOrkest Beierse OmroepOrkest Van De Bayerische RundfunkOrkest Van De Beierse RadioOrquesta De BavieraOrquesta De La Radio BávaraOrquesta De La Radio De BavieraOrquesta De La Radio De MunichOrquesta De La Radio Sinfónica De BavieraOrquesta De La Radiodifusión BávaraOrquesta De La Radiodifusión De BavieraOrquesta De Radio BavieraOrquesta Sinfonica Bayerischen RundfunksOrquesta Sinfonica De BavieraOrquesta Sinfonica De La Radio De BavieraOrquesta Sinfonica De La "Bayerischen Rundfunks"Orquesta Sinfonica De La Radio De BavieraOrquesta Sinfonica De La Radio BavaraOrquesta Sinfonica De La Radio DeOrquesta Sinfonica De La Radio De BavieraOrquesta Sinfonica De La Radiodifusion BabaraOrquesta Sinfonica De La Radiodifusion BavaraOrquesta Sinfonica De La Radiodifusión BávaraOrquesta Sinfonica De La Radiodifusión De BavieraOrquesta Sinfonica De MunichOrquesta Sinfonica de la Radiodifusion BavaraOrquesta Sinfónica BavariaOrquesta Sinfónica De La Radio BávaraOrquesta Sinfónica De La Radio De BavieraOrquesta Sinfónica De La Radiodifusión BavaraOrquesta Sinfónica De La Radiodifusión BávaraOrquesta Sinfónica De La Radiodifusión De BavieraOrquesta Sinfónica De La Radiodiusión De BavieraOrquesta Sinfónica De Radio BavieraOrquesta Sinfónica de BavieraOrquesta Sinfónica de Radio MunichOrquesta Sinfónica de Radiodifusión BavaraOrquesta Sinfónica de la Radio BávaraOrquesta Sinfónica de la Radio de BavariaOrquesta Sinfónica de la Radio de BavieraOrquesta Sinfónica de la Radiodifusión BávaraOrquesta Sinfónico De Radio BavieraOrquesta sinfónica de Radio MunichOrquestra Da Rádio BávaraOrquestra Sinfonica Da BavieraOrquestra Sinfonica de Radio Da BavariaOrquestra Sinfónica Da Rádio BávaraOrquestra Sinfônica Da Rádio BávaraOrquestra Sinfônica Da Rádio Da BavieraOrquestra Sinfônica da Rádio BávaraRadio Sinfonieorchester MünchenRadio Symphonieorchester Des Bayerischen RundfunksRadio-Sinfonie-Orchester MünchenRundfunk-Sinfonie-Orchester, MünchenRundfunkorchester Des Bayerischen RundfunksRundfunksinfonieorchester Des Bayerischen RundfunksSO Bayerin RundfunkSO des Bayerischen RundfunksSOBRSimfonijski Orkestar Bavarskog RadijaSinf--Orch. d. Bayer. Rundf.Sinf. Orch. Des Baeyr. Rundf.Sinf.-Orch. D. Bayer. RundfunksSinfonia-Orchester Des Bayerischen RundfunksSinfonica Della Radio BavareseSinfonie - Orchester Des Bayerischen RundfunksSinfonie Orchester Der Bayerischen RundfunksSinfonie Orchester Des Bayerischen RundfunksSinfonie Orchester Des Süddeutsche Rudfunks Des Bayerischen RundfunksSinfonie-Orch. D. Bayer. RundfunksSinfonie-Orchester Des BayerischenSinfonie-Orchester Des Bayerischen RundfunksSinfonie-Orchester Des Bayrischen RundfunksSinfonie-Orchester des Bayerischen RundfunksSinfonie-Orchester des Bayrischen RundfunksSinfonieorch. D. Bayer. RundfunksSinfonieorch. d. Bayer. RundfunksSinfonieorchester Des Bayerischen RundfunkSinfonieorchester Des Bayerischen RundfunksSinfonieorchester Des Bayerischen Rundfunks MünchenSinfonieorchester Des Bayerischen Rundfunks, MünchenSinfonieorchester Des Bayerischen. Rundfunks.Sinfonieorchester Des Bayrischen RundfunksSinfonieorchester Des Bayrischen Rundfunks MünchenSinfonieorchester des Bayerischen RundfunksSinfonieorchester des Bayerischen Rundfunks, MünchenSinfónica De La Radio De BavieraSinphonie-Orchester Des Bayerischen RundfunksSolistas, Coros Y Orquesta Sinfonica De La Radio De BavieraSouth German ConsortiStreicher Des Sinfonie-Orchesters Des Bayerischen RundfunksSymfonia Orkest Van De Baierse RadioSymfonie Orchester Des Bayerischen RundfunksSymfonie Orkest Van De Beierse RadioSymfonie-Orkest Van De Beierse RadioSymfonieorkest Van De Beierse OmroepSymhonieorchester Des Bayerischen RundfunksSymph. Orch. Des Bayerischen Rundfunks, MünchenSymphoieorchester Des Bayerischen RundfunksSymphonic Orchestra Of Bavarian Broadcasting StationSymphonie Orch. Des Bayerischen RundfunksSymphonie OrchesterSymphonie Orchester Des Bayerischen RundfunksSymphonie Orchester des Bayerischen RundfunksSymphonie Orkest Van De Bayerische Rundfunk, MünchenSymphonie Orkest van de Bayerische Rundfunk, MünchenSymphonie-Symphonie-OrchesterSymphonie-Orchester Der Bayerischen RundfunkSymphonie-Orchester Des BRSymphonie-Orchester Des Bayer. RundfunksSymphonie-Orchester Des Bayerischen RundfunkSymphonie-Orchester Des Bayerischen Rundfunks = Bavarian Radio Symphony Orchestra,Symphonie-Orchester Des Bayerischen Rundfunks MünchenSymphonie-Orchester Des Bayerischen Rundfunks, MünchenSymphonie-Orchester Des Bayerischer RundfunksSymphonie-Orchester Des Bayrischen RundfunksSymphonie-Orchester Des BrSymphonie-Orchester des Bayerischen RundfunksSymphonie-Orchester des Bayerischen Rundfunks, MünchenSymphonie-Orkest Van De Beierse RadioSymphonie0rchester Des Bayerischen RundfunksSymphonieOrchester Des Bayerischen RundfunksSymphonieorchesterSymphonieorchester Bayerischen RFSymphonieorchester Bayerischen RundfunksSymphonieorchester Dee Bayerischen RundfunksSymphonieorchester Des BRSymphonieorchester Des Bayer RundfunksSymphonieorchester Des Bayer. RundfunksSymphonieorchester Des Bayerichen RundfunksSymphonieorchester Des BayerischenSymphonieorchester Des Bayerischen RundfunkSymphonieorchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen Rundfunks, MünchenSymphonieorchester Des Bayerischen RunfunksSymphonieorchester Des Bayerischer RundfunkSymphonieorchester Des Bayerishchen RundfunksSymphonieorchester Des Bayerschen RundfunksSymphonieorchester Des Bayrischen RundfunksSymphonieorchester Des BrSymphonieorchester Des bayrischen RundfunksSymphonieorchester des Bayerischen RundfunksSymphonieorchester des Bayerischen Rundfunks a.o.Symphonieorchester des Bayrischen RundfunksSymphonieorchestrer Des Bayerischen RundfunksSymphonieorkest Van De Beierse RadioSymphonierchester Des Bayerischen RundfunksSymphonies-Orchester Des Bayerischen RundfunksSymphonisches Orchester Des Bayerischen RundfunksSymphonySymphony OrchestraSymphony Orchestra Of Bavarian RadioSymphony Orchestra Of Bavarian State RadioSymphony Orchestra Of Bayerischen RundfunksSymphony Orchestra Of The Bavarian RadioSymphony Orchestra Of The Bavarian Radio MunichSymphony Orchestra Of The Bavarian Radio, MunichSymphony Orchestra Of The Bavarian State RadioSymphony Orchestra Of The Bayerischer RundfunkSymphony Orchestra of the Bavarian RadioSymphony Orchestra of the Bavarian Radio, MunichSymphony Orchestra of the Bayerischer RundfunkSymphony-Orchester Des Bayerischen RundfunksSymphonyorchester des Bayerischen RundfunksSynfonie Orchester Des Bayerischen RundfunksSynfonie-Orchester Des Bayerischen RundfunksThe Bavarian Radio OrchestraThe Bavarian Radio SymphonyThe Bavarian Radio Symphony ChorusThe Bavarian Radio Symphony OrchestraThe Bavarian Radio Symphony Orchestra And ChorusThe Bavarian Radio Symphony Orchestra, MunichThe Bavarian Symphony OrchestraThe Symphony Orchestra Of "Bayerischen Rundfunks"The Symphony Orchestra Of Bayerischen RundfunksThe Symphony Orchestra Of The Bayerischer RundfunkUnd Symphonie-Orchester Des Bayerischen RundfunksWinds Of The Bavarian Radio Symphony OrchestraΣυμφωνική Ορχήστρα Της Βαυαρικής ΡαδιοφωνίαςОркестр Баварского РадиоСимфонический Оркестр Баварского РадиоСимфонический Оркестр Баварского Радио п/у Х. Вонкаバイエルン放送交響楽団Rodrigo ReichelUrsula HolligerEduard BrunnerNicolaus Richter de VroeErnie QuelleAttila BaloghKurt RedelStefan SchilliHorst HuberReinhold Johannes BuhlErnö SebestyenMax BraunRudolf KoeckertJosef MerzOskar RiedlTobias VogelmannBernd HerberRainer SeidelMathias SchesslGeorg SchmidClaude RippasJan KoetsierFrancois LeleuxBen HamesAndreas RöhnFranz HögerWill SandersEberhard MarschallUlf RodenhäuserWolfgang LäubinHannes LäubinHanno SimonsAndrea KarpinskiDaniel NodelKlaus RenkHermann MenninghausIrena GrafenauerWerner Thomas-MifuneJürgen Weber (2)Radoslaw SzulcWilhelm GrimmKarl-Heinz SteffensJan MischlichFrank ReineckeChandler GoettingThomas RuhKurt Christian StierErich Keller (2)Bernhard GmelinSebastian KlingerAndrás AdorjánFranz SchesslWilhelm SchnellerLeonhard SeifertKarl KolbingerGeorg RetyiHerbert DuftWalter NothasEmma SchiedHeather CottrellWilly BeckGustav MeyerJohannes RitzkowskyBernhard WalterKurt KalmusFergus McWilliamAlbrecht WeiglerMichael Stern (4)Erich SichermannHenrik WieseHeinrich BraunAlexander Von PuttkamerWilli BauerKarl HertelKarl BobzienKarl BenzingerWilli KneißlGerhard SeitzWen-Sinn YangXavier de MaistreHans WiesbeckElisabeth PolyzoidesMarkus SteckelerEric TerwilligerKlaus Becker (2)Philippe BouclyNorbert DausackerUrsula KepserJean RieberMarco PostinghelChristiane HörrFriedemann WinklhoferFlorian SonnleitnerSatu VänskäHeinrich ZieheBruno SchneiderRobert FailerKarl-Heinz BenzingerHans Herbert WinkelSebastian LadwigWalter Stangl (2)Werner BinderAntonio SpillerPhilipp StubenrauchDaisuke MogiHelmut VeihelmannBranimir SlokarSusanne SonntagErez OferChrista JardineReinhold HelbichRalf SpringmannJoachim OlszewskiErnst GiehlKlaus Winkler (2)Anton BarachovskyAchim Von LorneManfred SchweigerWalter ReichardtMartin Heinze (2)Raymond CurfsKirsty HiltonBettina FaissDieter SalewskiAntonius SchröderWolfgang PieskRamón Ortega QueroThomas HorchChrista ZecherleKlaus-Peter WeraniKurt Richter (6)Barton WeberAlfons HartensteinEmil BuchnerFriedrich Wührer (2)Michael ChristiansLothar ZirkelbachKarsten HeymannJoseph BastianSusanna PietschJosef WiendlFelix EckertRudolf Joachim KoeckertUlrich BodePeter RiehmLukas Maria KuenJohanna PichlmairGuido MarggranderGünther Weber (3)Olaf KlamandUwe SchrodiOscar LysyJürgen BesigStefan TrauerEdmund PuslWladimir HaagMarie-Lise SchüpbachCelina BäumerAdelheid BöckhelerLudwig Ebner (2)Elmar BilligChristoph EßLothar UlrichMarkus RhotenDavid van Dijk (3)Herbert Zimmermann (5)Leopold LercherKey-Thomas MärklVera BaurStefan ArzbergerStephan HoeverMichael Friedrich (6)Marije GrevinkFranz ScheuererHubert AumereHansjörg ProfanterEmily HoileKarl SteinbergerTobias SteymansHelmut Schneider (2)Carsten DuffinFrançois BastianKarl Richter (5)Ilona Then-BerghWies de BoevéTobias EinsiedlerManfred HoppertAndrea KimNatalie SchwaabeMatthias SimonsCsaba WagnerIvanna TernayRichard Meyer (5)Reto KuppelAnne SchoenholtzLionel CottetElisabeth BischoffWerner BoozGiovanni MennaKorbinian AltenbergerHans HölzlNikolaus GlasslVladimir HaasLudwig SchesslKurt BartlJosef HeidenreichJosef Listl (2)Toni Fischer (2)Bruno LenzGünther SüssmayrKarl HennMartin AngererGábor TarköviDaniel FusterKai MoserChristopher CorbettAlexandra Scott (2)Thomas KiechleJosef MärklHarry AtkinsonWerner MittelbachWen Xiao ZhengChristoph Schmidt (7)Jaka StadlerMitglieder Des Symphonie-Orchesters Des Bayerischen RundfunksAlice Maria WeberMichael RuppelAlbrecht RiehleAnne Solveig WeberAndreas MuckVéronique BastianDaniela JungElisabeth BuchnerMagdalena HoffmannWulf SchaefferPiotr StefaniakAnja KreynackeThomas Reif (2)Teja AndresenBenedikt SchneiderSavitri GrierAmelie BöckhelerGerhard StarkeNaomi ShahamStefan Tischler (2)Samuel LutzkerPascal DeuberJulita SmoleńStefanie RauDavid Alonso (7)Stefan Reuter (4)Michael DöringerChristian VasileBläser Des Symphonie-Orchester Des Bayerischen RundfunksJosé Trigo (2)Marlene PschorrWilly StuhlfauthErnst Richard SchliephakeGerman TcakulovErnst DörflingerLukas GassnerJesús Villa OrdoñezLukas Richter (4)Till SchulerMelanie RothmanJosef SteinhäuslerUbald Schneider (2) + +604471Ruben SanderseDutch viola playerNeeds VoteRuben SandersRubens SanderseIves EnsembleNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +604472Job Ter HaarDutch cellist.Needs Votehttp://www.jobterhaar.com/Ives EnsembleMusica Ad RhenumVan Swieten TrioVan Swieten SocietyTrio Uccellini + +604473Josje Ter HaarDutch classical violinist, born 1961 in Schiedam.Needs VoteIves EnsembleNieuw Sinfonietta AmsterdamDas Neue EnsembleRadio Filharmonisch OrkestRadio Kamer FilharmonieLudwig Orchestra + +604631Jeanne LoriodJeanne LoriodBorn 13 July 1928, Houilles; died 3 August 2001, Juan-les-Pins, France. +French player of Ondes Martenot. Sister of [a=Yvonne Loriod], pianist and wife of [a=Olivier Messiaen], whose "Turangalîla Symphony" Jeanne Loriod recorded six times. +She was the leading exponent of the ondes Martenot, invented in the 1920es by Maurice Martenot. She played with the most famous orchestras and conductors around the world, premiering more than 100 works by [a=André Jolivet], [a=Arthur Honegger] or [a=Jacques Charpentier] to name but a few. +The ondes martenot became famous for a wide audience through two scores by [a=Maurice Jarre], "Lawrence of Arabia" and "Mad Max". +In 1974 she founded an ensemble of 2, 4, 6 or 12 ondes Martenot players, called the Sextuor Jeanne Loriod. +Shortly before she died, she was to perform with the British band Radiohead. +CorrectJ. LoriodJeanne LoriotMadame Jeanne LoriodSextuor Jeanne Loriod + +604810Andrzej DąbrowskiAndrzej DąbrowskiAndrzej Dąbrowski (born April 13, 1938 in Vilnius, Lithuania) - a Polish musician, singer, jazz vocalist, percussionist, composer, photographer and race car driver (the Polish runner auto racing in 1957). +He was the drummer for the leading Polish jazz groups, including Andrzej Kurylewicz (1958-1961), Jan Ptaszyn Wroblewski (1961-1966), as well as Krzysztof Komeda, Jerzy Milian, Włodzimierz Nahorny, Krzysztof Sadowski and Michał Urbaniak. Collaborated, amongst others, Urszula Dudziak, Adam Makowicz, Jerzy Matuszkiewicz, Janusz Muniak, Tomasz Stańko.Needs Votehttp://www.andrzej-dabrowski.pl/https://pl.wikipedia.org/wiki/Andrzej_D%C4%85browski_(piosenkarz)https://bibliotekapiosenki.pl/osoby/Dabrowski_AndrzejA. DabrovskiA. DabrowskiA. DombrovskisA. DqbrowskiA. DąbrowskiA.DąbrowskiAndrej DabrowskiAndrew DabrowAndrew DobrowskyAndrzej DabrowkiAndrzej DabrowskiDąbrowskiА. ДомбровскиА. ДомбровскийАнджей ДомбровскийAndrzej Kurylewicz QuintetStan Getz QuartetPolish Jazz QuartetTowarzystwo Nostalgiczne SwingulansThe Andrzej Trzaskowski QuintetJan Ptaszyn Wróblewski QuartetAndrzej Kurylewicz QuartetThe Kurylewicz TrioWojciech Karolak TrioMichael Urbaniak's OrchestraThe Wreckers (3)Andrzej Kurylewicz Group + +605286Robert HardawayRobert Benson HardawayAmerican jazz tenor saxophonist and flutist, born Milwaukee, Wisconsin, 1 May 1928 +Raised in North Hollywood, CaliforniaNeeds VoteB. HardawayBob HardawayHardawayRob HardawayRobert B. HardawayWoody Herman And His OrchestraRay Anthony & His OrchestraThe Clayton-Hamilton Jazz OrchestraBob Florence Big BandKen Hanna And His OrchestraDick Grove Big BandWoody Herman BandWoody Herman And The Fourth HerdThe Bob Florence Limited EditionBob Hardaway's GroupSteve Spiegl Big BandBob Enevoldsen QuintetRoger Neumann's Rather Large BandThe Tom Talbert Jazz OrchestraWoody Herman And The Swingin' Herd (2)The Sax Maniacs (3) + +605318Rod DevonshireNeeds VoteDevonshireR. DevonshireBush Babies + +605580Adelhard RoidingerAdelhard RoidingerAustrian musician and composer playing double bass, electronics but active in computer graphics as well. Also working as an university educator in graphics and music. Born November 28, 1941 in Windischgarsten, Austria; died 22. April 2022 in Wien, AustriaNeeds Votehttp://www.adelhardroidinger.com/A. RoidingerHardy RoitlingerRoidingerGil Evans And His OrchestraAkira Sakata TrioTone Janša KvartetHans Koller Free SoundChristoph Spendel GroupHeinz Sauer QuartetEuropean Jazz EnsembleErich Kleinschuster SextettNew Jazz EnsembleEuropean Jazz ConsensusInternational Jazz ConsensusDr. Neuwirth-TrioYosuke Yamashita–Adelhard Roidinger Duo + +605814Shep ShepherdBerisford ShepherdAmerican jazz musician (January 19, 1917, Honduras - November 25, 2018). +(his name is sometimes misspelled as "Shop Shepherd" in discographies.) + +He first worked as a drummer, but also played vibraphone and xylophone. Later changed to play trombone. +He is most famous for co-writing [a=Bill Doggett]'s prime hit "Honky Tonk". + +Musicians Shepherd has worked with include [a=Patti Page], [a=Lionel Hampton], [a=Lena Horne], [a=Ward Singers], [a=Earl Bostic], [a=Buck Clayton], [a=Odetta] and [a=Artie Shaw].Needs Votehttps://en.wikipedia.org/wiki/Shep_Shepherdhttps://adp.library.ucsb.edu/names/343457"Shep" Shepard"Shep" Shepherd"Shep" SheppardB. SheperdBeresford ShepherdBeresford, ShepherdBerisford "Shep" ShepherdBerisford 'Shep' ShepherdBerisford Shep ShepardBerisford SheperdBerisford ShepherdBerisford/ShepherdBill ShepardBill ShepherdS, SheperdS. ShepardS. ShephardS. ShepheardS. ShepherdS. SheppardS.ShepardS.ShepherdSchephardShape SheppardShep HerdShep ShepardShep SheperdShep ShephardShep ShepherShep SheppardShep SheppherdShepardShepartSheperSheperdShephaerdShephardShepherShepherdShepherd ShepShephereSheppardShepperdSheppherdSherpherdShop ShepherdWilliam ShephardArtie Shaw And His OrchestraEarl Bostic And His OrchestraBill Doggett TrioBill Doggett QuintetEarl Bostic Quartet + +605858Layng Martine Jr.American songwriter (mostly known for the 1974 hit Rub It In), father of [a=Layng Martine] and [a=Tucker Martine]Needs Votehttp://en.wikipedia.org/wiki/Layng_Martine_Jr.L Martine JrL. Marine Jr.L. MartinL. Martin JrL. Martin Jr.L. Martin, J. KeenedyL. MartineL. Martine JRL. Martine JnrL. Martine Jnr.L. Martine JrL. Martine Jr.L. Martine JuniorL. Martine ml.L. Martine, Jnr.L. Martine, JrL. Martine, Jr.L. Martine,Jr.L. Martinez JR.L. Martyne, Jr.L.Martine,Jr.Lagyn Martine Jr.Lang MartineLang Martine Jr.Lange Martine Jr.Larry Martine Jnr.Larry Martine JrLarry Martine Jr.Laung Martine Jr.Laying MartineLayne MartineLayne Martine Jr.Layng Martin JrLayng Martin, Jr.Layng MartineLayng Martine JnrLayng Martine Jnr.Layng Martine JrLayng Martine, JR.Layng Martine, JrLayng Martine, Jr.Layng Martine,Jr.Layng Martyne, Jr.Laynge MartineLeonard MartinMaritine Jr.MartinMartin JrMartineMartine Jnr.Martine JrMartine Jr.Martine Layng.JrMartine, Jr.Professor Morrison's Lollipop + +606746Richard WistreichFormer classical bass vocalist and instrumentalist, now a teacher and writer.Needs Votehttps://www.bach-cantatas.com/Bio/Wistreich-Richard.htmR. WistreichR.M.R.W.RWRichard WindstreichRed ByrdThe English Concert ChoirTaverner ChoirThe Consort Of MusickeThe Schütz Choir Of LondonChoeurs Du Festival D'Aix-En-ProvenceLondon Pro Musica + +606891Carys LaneClassical soprano vocalist +She combines a career of solo and consort singing. She has made many recordings with ensembles such as The Tallis Scholars, The Gabrieli Consort, The Clerks and The Cardinall’s Musick. She is also a vocal coach for the Choir of Merton College, Oxford.Needs Votehttps://www.bach-cantatas.com/Bio/Lane-Carys.htmCarrys LaneCarys Anne-LaneCarys-Anne LaneGabrieli ConsortOxford CamerataThe Tallis ScholarsThe SixteenOrchestra Of The RenaissanceI FagioliniSchola Cantorum of OxfordThe Clerks' GroupThe Cardinall's MusickSeicentoTenebrae (10) + +607246Edward HeymanEdward HeymanAmerican musician and lyricist (14 March 1907 in New York — 16 October 1981 in Jalisco, Mexico). He had an early start on his career writing college musicals, after college he started working with a number of experienced musicians in New York, like Victor Young, Dana Suesse and Johnny Green. He contributed songs to film scores including That Girl From Paris, Curly Top, Kissing Bandit, Delightfully Dangerous and Northwest Outpost. +His biggest hit is his composition "Body and Soul", written in 1930. +Heyman was an ASCAP writer and inducted into the Songwriters Hall of Fame in 1975.Needs Votehttps://en.wikipedia.org/wiki/Edward_Heymanhttps://www.imdb.com/name/nm0382269/https://adp.library.ucsb.edu/names/105411Adward HeymanB. HeymanBody And SoulC. HeymanC. HeymenD. HeymanDanaE HeymanE, HeymanE. EymanE. HaeymanE. HaymanE. HaymandE. HaymenE. HeaymanE. HeeymanE. HegmanE. HeimanE. HeimannE. HermanE. HeyenE. HeymanE. HeymannE. HeymansE. HeymenE. HeymerE. HeywardE. HoymanE. HymanE.HeymanE.MeymanE.Y. HeymanEd HaymanEd HeymanEd. HeymanEddie HaymanEddie HegmanEddie HeymanEddie HeymannEddy HeymanEdgar HeymanEdmond HeymanEdw. HeymanEdwardEdward HaymanEdward HelmanEdward HermanEdward HetmanEdward HeymannEdward HeymansEdward HeymonEdward HeywardEdward HighlandEdward HymanEdward HyymanEdward ManEdwards HeymanErnest HeymanEward HeymanEymanF. HeymanF.HeymanG. HeymanGreen-HeymanH. HeymanH.EimanHaimanHaymanHaymannHaymenHaymonHeimanHeimannHemanHermanHerymanHetmanHeumanHewmanHeyamnHeyhmanHeymanHeyman EdwardHeyman, EHeyman, EddieHeymannHeymansHeymenHeymonHeynmanHeyrnanHeywardHeywoodHymanKaymanLeymanMeymanS. HeymanW. HeymanW.R. HeymanYeymane heymanД. ХьюменХейман + +607336Koen LievensClassical cellistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +607478Mike PriceUS jazz trumpeter and composer from the Chicago area. In the late 1960s Price toured and recorded with major big bands including those of Stan Kenton and Buddy Rich. Price was also an original member of the Toshiko Akiyoshi – Lew Tabackin Big Band in Los Angeles and performed on all of the band's Grammy-nominated recordings of the 1970s and early 1980s.Needs Votehttps://en.wikipedia.org/wiki/Mike_Price_(jazz_trumpeter)Michael PricePriceToshiko Akiyoshi-Lew Tabackin Big BandYoshihiko Katori Jazz OrchestraStan Kenton And His OrchestraBuddy Rich Big BandJazz In The ClassroomThe John "Terry" Tirabasso Orchestra + +607564Carla AntounCarla AntounCellist, born in Lebanon. Carla received her musical training at the Music Academy in Beyrouth and at the Conservatoire de musique du Québec in Montreal where she graduated with a first prize in the cello class of Dorothy Bégin in 1984. From 1987 to 1991, she worked with professor Tobiass Kuhne at the Academy of Music in Vienna. +Carla has appeared as soloist with chamber music ensembles and as a member of various orchestras in Canada, Austria and Japan. She was also a laureate of the Orchestre symphonique de Québec Competition in 1986. From 1990 to 1994, she was a faculty member of the Université du Québec à Trois-Rivières.Needs VoteCarla AntonLes Violons du RoyAppassionataOrchestre Symphonique De Laval + +607931Tiny TimbrellHilmer J. TimbrellHilmer J. Timbrell (January 15, 1917 – May 7, 1992) was a Canadian-born session musician and master guitarist. + +Hilmer J. "Tiny" Timbrell was born in Canada but moved to Los Angeles, California, to pursue his career in music. For a time, he sold guitars at Fife & Nichols, a Hollywood musical instrument store located at the corner of Sunset & Vine inside Wallach's Music City. +A "first call" guitarist at Warner Brothers Studios, in the late 1940s Timbrell appeared in several motion pictures playing as part of a band. His reputation was such that he was hired to play guitar on recording sessions for singing stars such as Doris Day, Billy Vaughn & His Orchestra, Rosemary Clooney, Bing Crosby, Harry James, and pop and country music artists such as Ricky Nelson and Marty Robbins. +Perhaps most significantly in his career, Timbrell played rhythm guitar for Elvis Presley, first at Radio Recorders studios in Los Angeles for the making of the soundtrack for the film, Loving You and later on numerous other soundtracks for Presley films. + +In 1943 Timbrell married Margaret Ellen Scott. They had two children: Gail and Jay. Gail married and had three children: Roger, Nancy, and Steven. Steven followed his grandfather into the entertainment industry. He works as a Local 1 stagehand in New York City. +In his later years, Tiny Timbrell worked as Los Angeles district sales representative for Chicago Musical Instrument Co, later named Norlin Music Corp., which at the time owned many instrument brands, including Gibson and Epiphone guitars. + +Tiny Timbrell died in 1992 at the age of seventy-five.Needs Votehttps://en.wikipedia.org/wiki/Tiny_Timbrellhttp://www.imdb.com/name/nm0863569/http://www.allmusic.com/artist/tiny-timbrell-mn0000662428"Tiny" TimbrellElmer J. TimbrellH. J. TimbrellH.J. TimbrellHilmer "Tiny" TimbrellHilmer 'Tiny' TimbrellHilmer J Tiny TimbrellHilmer J. "Tiny" TimbrellHilmer J. TimbrellHilmer TimbrellHilmer TrimbrellTiny "Tiny" TimbrellTiny TembrellTiny TimbroughHarry James And His OrchestraThe 50 Guitars Of Tommy GarrettHarry James & His Music Makers + +607938Ray SiegelPlays the tuba and upright double bassCorrectRay SeigelRay SiegalSiegel RayGerry Mulligan TentetteMilt Bernhart Brass Ensemble + +608013Sofia GentileClassical violist and violinistNeeds VoteSophia GentileOrchestre symphonique de Montréal + +608016Julie TriquetCanadian classical violinist. +In 1982, she was awarded the first prize at the Orchestre Symphonique de Montréal Competition. In 1988, she was named first violin in the Arthur-Leblanc Quartet. From 1993 to 1998, she served as co-solo violin with [a882764]. In September 2011, she was appointed solo violin designate with the ensemble [a2839318].Needs Votehttp://imusici.com/les-musiciens/#triquetLes Violons du RoyLa PietàI Musici De MontréalQuatuor Arthur-LeblancQuatuor Québec + +608482Giora Feidman Argentinian-Jewish clarinetist, born March 26, 1936 in Buenos Aires. +He specializes in Klezmer music. He was a member of the Israel Philharmonic Orchestra for over 20 years. +He is married to [a1891304].Needs Votehttps://www.giorafeidman-online.com/en-gb/biographyhttp://en.wikipedia.org/wiki/Giora_Feidmanhttps://web.archive.org/web/20160320084738/http://www.giorafeidman-online.com/en/Ensemble Giora FeidmanFeidmanG. FeidmanGiora Feidman & EnsembleGiora Feldman ZenekaraGuiora FeidmanIgal FaydmanMaestro Giora FeidmanYiddish Soul Gloria Feidmanגיורא פיידמןIsrael Philharmonic OrchestraThe Feidman TrioFeidman QuartetThe Giora Feidman Jazz-ExperienceGiora Feidman & Friends + +609460Mark VolkertAmerican violinist. Has played in the San Francisco Symphony since 1972 and currently plays first violin.Needs Votehttps://www.sfsymphony.org/Data/Event-Data/Artists/V/Mark-VolkertMark C. VolkertSan Francisco SymphonyThe Volkert-Walther String Trio + +609895James RuppDrummerNeeds VoteJim RuppWoody Herman And His OrchestraThe O-Zone Percussion GroupThe Woody Herman Big BandCleveland Jazz OrchestraPaul Ferguson Jazz OrchestraThe Woody Herman Orchestra + +610159Paul JewellNeeds VoteJewelJewellP. JewelP.JewellPaul JewelBush Babies + +610799Radio-Sinfonieorchester StuttgartRadio-Sinfonieorchester Stuttgart des SWRThe Radio-Sinfonieorchester Stuttgart (RSO) was affiliated to the Southwest Broadcasting Company [l244785] (SWR). It was founded in 1945 as Kleines Symphonie-Orchester Stuttgart and appeared under different names over the years, as [b]Radio-Sinfonieorchester Stuttgart[/b] (with slight variations, see chronology below) between 1975 and 2016. Chief conductors were [a840069], [a835735], [a843912], [a868929], [a926716] and [a4408888]. +In 2016/17 the orchestra was merged with the [a3279527] to form the [a7756215]. + +Name changes: +1945: Kleines Symphonie-Orchester von Radio Stuttgart +1946: Großes Orchester von Radio Stuttgart +1949: Sinfonieorchester von Radio Stuttgart +1949: [a1370727] +1959: [a3853150] +1975: [a610799] +1998: [a610799], SWR Radio-Sinfonieorchester Stuttgart +2001: [a610799], Radio-Sinfonieorchester Stuttgart des SWR +2016: [a7756215]Needs Votehttps://www.swr.de/swrkultur/musik-klassik/symphonieorchester/index.htmlhttps://de.wikipedia.org/wiki/Radio-Sinfonieorchester_Stuttgart_des_SWRhttps://en.wikipedia.org/wiki/Stuttgart_Radio_Symphony_OrchestraChor Und Orchester Des Reichssenders StuttgartConjunto Coral Y Sinfónico De StuttgartDas Radio-Orchester StuttgartDas Radio-SymphonieorchesterDas Radio-Symphonieorchester ´Das Radioorchester StuttgartDas Sinfonie Orchester Des Stuttgarter RundfunksInstrumentalisten Von Radio StuttgartMembers Of Radio Symphony Orchestra StuttgartMembers Of Radio Symphony Orchestra, StuttgartMembers Of The Radio Symphony Orchestra StuttgartMembers Of The Radio Symphony Orchestra, StuttgartMembers Of The Radio-Sinfonieorchester StuttgartMembers Of The Radio-Sinfonieorchester Stuttgart des SWRMembres De L'Orchestre Symphonique De La SWR De StuttgartMembres • Mitglieder Radio-Sinfonieorchester StuttgartMitglieder Des Radio-Sinfonieorchester StuttgartMitglieder Des Radio-Sinfonieorchesters StuttgartMitglieder Des Radio-Sinfonieorchesters Stuttgart Des SWRMitglieder Radio-Symph.-Orchester StuttgartMitglieder des Radio-Sinfonieorchesters Stuttgart des SWRMitglieder des Radiosinfonieorchesters StuttgartOpernensemble Des Radio-Sinfonieorchesters StuttgartOrchester Des Reichssenders StuttgartOrchester Des Senders StuttgartOrchester Des Stuttgarter RundfunksOrchester des Senders StuttgartOrchester des Stuttgarter RundfunksOrchestra Of The German RadioOrchestra Of The Sudwestfunk Radio StuttgartOrchestra Simfonică A Radiodifuziunii Din StuttgartOrchestra Simfonică Radio StuttgartOrchestra Sinfonica Della Radio Di StoccardaOrchestra Sinfonica Di Radio StoccardaOrchestra simfonică Radio StuttgartOrchestre De La Radio De StuttgartOrchestre Radio-Symphonique De StuttgartOrchestre Symphonique De La Radio D''Allemagne Du SudOrchestre Symphonique De La Radio De StuttgartOrchestre Symphonique De La S.D.R., StuttgartOrchestre Symphonique de la Radio de StuttgartOrq. Sinfónica de la Radio de StuttgartOrquesta Sinfónica De La Radio De StuttgartOrquesta Sinfónica de la Radio de StuttgartR.S.O. StuttgartRSORSO StuttgartRSO-StuttgartRadio Orchester StuttgartRadio Sinfonie Orchester StuttgartRadio Sinfonie-Orchester, StuttgartRadio Sinfonieorchester StuttgartRadio Stuttgart Symphony OrchestraRadio Symphonie Orchester StuttgartRadio Symphonieorchester StuttgartRadio Symphonierorchester StuttgartRadio Symphony Orchestra Of The SüdwestfunkRadio Symphony Orchestra StuttgartRadio Symphony Orchestra, StuttgartRadio Symphony StuttgartRadio-Orchester StuttgartRadio-Sinfonie OrchesterRadio-Sinfonie Orchester StuttgartRadio-Sinfonie Orchester Stuttgart Des SWRRadio-Sinfonie- Orchester StuttgartRadio-Sinfonie-Orchester StuttgartRadio-Sinfonieorch. StuttgartRadio-Sinfonieorchester Stgt.Radio-Sinfonieorchester Stuttgart Des SWRRadio-Sinfonieorchester Stuttgart Des SwrRadio-Sinfonieorchester Stuttgart des SWFRadio-Sinfonieorchester Stuttgart des SWRRadio-Sinfonieorchester, StuttgartRadio-Sinfonierorchester Stuttgart Des SWRRadio-Symphonie-Orchester StuttgartRadio-Symphonieorchester StuttgartRadio-Symphony-Orchestra StuttgartRadio-Synfonieorchester StuttgartRadioorchester StuttgartRadiosinfonieorchester StuttgartRadiosymphonic Orchestra Of StuttgartRadiosymphony Orchestra StuttgartRso Stuttgart Des SwrRundfunk Sinfonie Orchester StuttgartRundfunk-Orchester, StuttgartRundfunk-Sinfonie-Orchester StuttgartRundfunk-Symphony OrchestraRundfunksinfonieorchester StuttgartS.D.R. Symphony Orchestra, StuttgartSDR Symphony OrchestraSWE Stuttgart Radio Symphony OrchestraSWR Radio Symphony Orchestra StuttgartSWR Radio-Sinfonieorchester StuttgartSWR SinfonieorchesterSWR Stuttgart RSOSWR Stuttgart Radio Symphony OrchestraSWR Symphony Orchestra StuttgartSinfonica Della Radio Di StoccardaSinfonie-Orchester Des Süddeutschen RundfunksSinfonieorchester StuttgartSinfonieorchester Stuttgart Des SWRSouth German Radio Symphony OrchestraSouth German Radio, StuttgartSouthwest German RadioSouthwest German Radio (SWF) OrchestraSouthwest German Radio Orchestra, Baden-BadenSouthwest German Radio Symphony OrchestraStreicher Des Radio-Sinfonieorchesters Stuttgart Des SWRStreicher des RSO StuttgartStrings Of Radio Symphony Orchestra, StuttgartStuffgart Radio OrchestraStuggart Radio Symphony OrchestraStuttgard Radio OrchestraStuttgard Radio Symphony OrchestraStuttgart RSOStuttgart Radio OrchestraStuttgart Radio Sinfonie OrchesterStuttgart Radio Sym. Orch.Stuttgart Radio SymfoniorkesterStuttgart Radio SymphonyStuttgart Radio Symphony OrchestraStuttgart Radio Symphony Orchestra & ChorusStuttgart Radio Symphony Orchestra with Members of the Radio ChorusStuttgart Rundfunk Sinfonie-OrchesterStuttgart Rundfunk SinfonieorchesterStuttgart Symphony OrchestraStuttgart radio Symphony OrchestraStuttgarter Radio Symphony OrchestraStuttgarter RundfunksorchesterStuttgarti Rádió Szimfonikus ZenekaraStuttgartin Radion SinfoniaorkesteriStuttgartin Radion SinfonikotStuttgarts RadiosymfonikerSymphonie Orchester Des SDR StuttgartSüdfunk UnterhaltungsorchesterSüdfunk-UnterhaltungsorchesterThe Radio Orch. of StuttgartThe Radio Orchestra Of SudwestfunkThe South German Radio OrchestraThe Stuttgart Symphonic StringsThe Stuttgart Symphony OrchestraUnterhaltungsorchester Des Süddeutschen RundfunksWind Ensemble Of The Southwest Broadcasting Orchestra, Baden-BadenΣυμφωνική Ορχήστρα Της Ραδιοφωνίας Της ΣτουτγάρδηςΣυμφωνική Ορχήστρα Της ΣτουτγάρδηςΣυμφωνική Ορχήστρα Του Ραδιοφώνου Της ΣτουτγάρδηςСимфонический Оркестр Штутгартского РадиоСимфонический оркестр Штутгартского радиоСимфонический оркестр радио Штутгартаシュトゥットガルト放送交響楽団Sinfonie-Orchester Des Süddeutschen RundfunksThe Lansdowne Light OrchestraSüdfunk-SinfonieorchesterDietmar SchwalkeMonika Hölszky-WiedemannSergiu CelibidacheKarlheinz HalderChristian HedrichOtto ArminHans KalafuszHermann BaumannKarl Friedrich MessMartin RosenthalDirk AltmannGaby Pas-Van RietMila GeorgievaPeter RijkxAnsgar SchneiderHanspeter WeberJohannes RitzkowskyFriedrich MildeWilly FreivogelMichael Rosenberg (2)Harald MatjacicTobias Unger (2)Ada GoslingEmily KörnerStefan KnoteJoachim BänschJānis LielbārdisRobert KetteChristof SkupinFranz BachFrank Szathmáry-FilipitschRaymond WarnierMichael RieberRolf OscherNatalie CheeRennie YamahataSebastian ManzAnnette SchützJosef WeissteinerHelmut ReimannRudolf GleißnerLibor SimaRenié YamahataWolfgang GaagGottfried HahnHorst StrohfeldtRalph SabowKarl-Theo AdlerDietmar UllrichMargret HummelFlorian MetzgerAlbert BoesenThomas HammesWolfgang WipflerGunter TeuffelAnne MarckardtWilli ForsterJürgen Wirth (2)Georg ter VoertRudolf KönigAnne AngererEduardo CalzadaRyutaro HeiHanno DönnewegThomas FlenderChristian NașMichael HsuWolfgang DüthornDirk HegemannUlrike HofmannPaul PesthyHendrik Then-BerghBarbara WeiskeFionn BockemühlPhillip RoyHarald PaulJakob LustigDietmar BoeckTatjana RuhlandPhilippe TondreThomas BilowitzkiEkkehart KleinbubAxel SchwesigIngrid Philippi-SeyfferAlina AbelMarin SmesnoiArvid Christoph DornCarl-Magnus HellingAstrid StutzkeFrederik StockStefan BornscheuerInsa Andrea FritscheSylvia SchniedersGesa Jenne-DönnewegAndreas Kraft (2)Helke BierTeresa JansenMonika Renner-AuersFelix von TippelskirchSilke Meyer-EggenPeter Lauer (4)Christina SingerAndreas RitzingerChristoph Schmidt (7)SooEun LeeSüdwestrundfunk + +610802Eduard BrunnerEduard Brunner (born 14 July 1939, Basel, Switzerland – died 27 April 2017, Munich, Germany) was a Swiss classical clarinetist.Correcthttp://en.wikipedia.org/wiki/Eduard_Brunnerhttp://www.hfm.saarland.de/profs/brunner.htmBrunnerE. BrunerЭдуард БрунерЭдуард Бруннерエドゥアルト・ブルンナーSymphonie-Orchester Des Bayerischen RundfunksBremer Philharmonisches Staatsorchester + +611218Jean GuiraudFrench pianist, keyboardist, singer-songwriter, musical director and arranger.Needs Votehttps://fr.linkedin.com/in/jean-charles-guiraud-b11955176https://www.facebook.com/jeancharles.guiraud.5/aboutJ. GuiraudHarold OelkeGrand Orchestre De L'OlympiaDaniel Janin Et Son OrchestreJean Guiraud Et Son Orchestre + +612029Beverley JonesBritish double bass player, born in Malden, England, UK, raised in Billingshurst, West Sussex, England, UK.Correcthttps://www.linkedin.com/in/beverley-jones-2a555b20/https://maslink.co.uk/client-directory?client=JONEB1&instrument=DOUBL1https://www.imdb.com/name/nm4004080/Bev JonesBeverleyBeverly JonesLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraEnglish Chamber OrchestraBBC Scottish Symphony OrchestraOrchestre National Du Capitole De ToulouseBritten SinfoniaThe Planets (4)BBC National Orchestra Of WalesEnglish Classical Players + +612287Tove HalbakkenTove Halbakken ResellNorwegian violinist, born 1953 in Elverum, Norway.Needs VoteTove Halbakken ResellOslo Filharmoniske OrkesterFamilien Halbakken + +612494Zoe ColmanViolinist.Needs VoteHallé OrchestraUp North Session Orchestra + +612651Walter DonaldsonBorn: 15 February 1893 in Brooklyn, New York, USA. +Died: 15 July 1947 in Santa Monica, California, USA. + +Walter Donaldson was a prolific American songwriter, producing many hit songs of the 1910s and 1920s, several written with lyricist [a=Gus Kahn]. In 1929 Donaldson moved to Hollywood and worked composing and arranging music for motion pictures. + +Inducted in the Songwriters Hall Of Fame in 1970. +Needs Votehttps://en.wikipedia.org/wiki/Walter_Donaldson_(songwriter)https://www.songhall.org/profile/Walter_Donaldsonhttps://adp.library.ucsb.edu/names/106121AlfordD. DonaldsonDanaldsonDanalsonDanielsDoaldsonDoanldsonDoladsonDona AtsonDonadlsonDonaldDonald SonDonaldonDonaldsDonaldsenDonaldsohnDonaldsonDonaldson W.Donaldson WalterDonaldson, WalterDonaldson-ShawDonaldsonwDonaldssohnDonaldssonDonalsonDonladsonGus DonaldsonK. W. DonaldsonKonaldsonL. DonaldsonL. W. DonaldsonMcDonaldRichard DonaldsonS. DonaldsonV. DonaldsonV.DonaldsonValter DonaldsonW DonaldsonW, DonaldsonW. DonaldsonW. DonaldonW. DonaldsenW. DonaldsonW. DonaldssonW. DonalsonW. DondaldsonW.DonaldsonWalker DonaldsonWalt DonaldsonWalt. DonaldsonWalterWalter / DonaldsonWalter DolansonWalter DonaldonWalter DonalsonWalter DoualdsonWalter J DonaldsonWalter JohnWalter-DonaldsonWalter/DonaldsonWalther DonaldsenWalther DonaldsonWalther-DonaldssonWhiting DonaldsonWm. DonaldsondВ. ДональдсонДид ДональдДональдсонДондсонУ. ДоналдсонУ. ДональдсонУолтер Дональдсонウェルター・ドナルドソンウォルター・ドナルドソンドナルドソン + +613198Bob HammerHoward Robert HammerAmerican jazz pianist and arranger, born March 3, 1930 in IndianapolisNeeds Votehttp://en.wikipedia.org/wiki/Bob_HammerB. HammerB. HammesHammerHoward "Bob" HammerR. HammerRobert HammerCharles Mingus Jazz WorkshopHenry "Red" Allen And His OrchestraThe Pampas QuartetFull Circle Jazz Ensemble + +613245Cally GageCally GageFormer Hard Dance Music DJ & producer from Peterborough, UK. +Label manager of [l=N-Gaged Recordings] and co-owner of [l=HARD (2)] alongside husband [a=Andy Whitby]. +On January 18, 2016 Cally Gage announced her retirement from the Hard Dance Music scene. +Her last ever appearance was at Tidy 21 Weekender (May 21-22-23, 2016) +Contact: cally@callygage.co.ukNeeds Votehttps://soundcloud.com/callygagehttps://myspace.com/djcallygagehttps://twitter.com/CallyGagehttps://web.archive.org/web/20141218160415/http://callygage.co.uk/https://web.archive.org/web/20140517080125/http://callymix.com/https://web.archive.org/web/20201101122427/https://about.me/callygageC. GageC.GageCally CageMonday Never Comes + +613247Matt LeeMatthew LeeHard Dance / Hardcore DJ & producer from Northampton, UK. +Contact: lee@uaagency.co.ukNeeds Votehttp://www.djgammer.com/https://www.facebook.com/DJGammerFanshttps://soundcloud.com/djgammerhttps://myspace.com/djgammerhttps://twitter.com/DJGammerhttps://www.youtube.com/user/DJGammerUKhttps://www.instagram.com/djgammer/https://djgammer.myshopify.com/LeeM LeeM. LeeM.LeeMattew LeeMatthew GammerMatthew LeeMatthew LewGammerReality (7)Muttley (2)Future SocietyThe A.M.D.A.GomurplsU MadLego PornstarsGeezy (5)M. Dick/N?Dougal & GammerDarkside (7)United In DanceCobalt & HefferSDGThe Saints (6)November (4)RobbingThe Entity (8)Club Generation (2)Gammer & FriendsGamridye + +613328Rusty JonesIsham Russell Jones IIAmerican jazz drummer +born 13 April 1932 in Cedar Rapids, Iowa, USA +died 9 December 2015, Chicago, Illinois, USA + +Rusty Jones was Chicago-based. Great-nephew and godson of [a=Isham Jones]Needs Votehttps://en.wikipedia.org/wiki/Rusty_Jones_%28musician%29Isham Russell (Rusty) Jones IIRustyРасти ДжонсGeorge Shearing TrioQuartescenceGeorge Shearing Quintet + AmigosMarc Pompe QuartetRich Corpolongo TrioGeorge Shearing's SextetPatrick Noland GroupThe Bradley Young Trio + +613980Betty GlamannAmerican jazz harpist, born May 21, 1923, Wellington, Kansas, USA, died 3 September 1990.Needs VoteBetty GlammanGlamannThe Smith-Glamann QuintetteOscar Pettiford Orchestra + +614077Bruno MartinezBruno Martinez (1963, Maubeuge, Belgium) is a Belgian clarinet player. + +First bass clarinet solo player since 1992 at "Orchestre national de l’Opéra de Paris", Martinez previously performed under Pierre Boulez, Seiji Ozawa, Charles Dutoit, Kurt Sanderling, Myung Wung Chung, Armin Jordan, Georges Prêtre, James Conlon, Gennady Rozhdestvensky, Witold Lutoslawski, Yehudi Menuhin, Valery Gergiev and many others. + +He also performed contemporary works with [a=TM+], "2E2M", "Musique vivante" or "Ensemble Intercontemporain". +Martinez worked on a regular basis for film music and as a skillful session clarinet player. +Needs VoteOrchestre National De L'Opéra De ParisParis Symphonic Orchestra + +614341Isham JonesIsham Edgar JonesAmerican bandleader, saxophonist, bassist, and songwriter. He was inducted into the Songwriters Hall of Fame in 1970. + +Born: 31 January 1894 in Coalton, Ohio, USA. +Died: 19 October 1956 in Hollywood, Florida, USA (aged 62). +Needs Votehttp://en.wikipedia.org/wiki/Isham_Joneshttps://www.songhall.org/profile/Isham_Joneshttps://adp.library.ucsb.edu/names/103286E. JonesH. L. StevensI JonesI. JonesI. JohnesI. JoneI. JonesI. JoneswrI.JonesIfham JonesIshamIsham - JonesIsham Edgar JonesIsham HonesIsham JamesIsham JohnesIsham JohnsonIsham JoneIsham YonesIsham, JonesIshan JonesIshlam JonesJ. JonesJamesJemesJohn Cyril LyonsJohnesJohnsJonesL. JonesM. JonesQuincy JonesR. JonesS. JonesShawn JonesT. JonesА. ДжонсДжонсИ. ДжонсIsham Jones Orchestra + +614342Vernon DukeVladimir Aleksandrovich DukelskyRussian-American composer and songwriter (born: 10 October 1903 in Prafianovo, Pskov Governate, Russian Empire; died: 16 January 1969 in Santa Monica, California, USA (aged 65). + +Born Vladimir Dukelsky, he grew up in Kiev and showed remarkable musical talent at an early age; he was admitted to the Kiev Conservatory when he was only eleven years old. At the Conservatory, he studied with the composer [a717288], and one of his contemporaries there was the young [a847818]. Duke was inducted into the Songwriters Hall of Fame in 1970. + +His family fled Russia in 1919 at the outbreak of the Russian Revolution and spent eighteen months in Constantinople. In 1921, the Dukelsky family obtained United States visas and emigrated to New York. Vladimir became friends with [a261293], who suggested that he Americanize his name to Vernon Duke. He used his pen name for popular music and used his given name when writing classical music or Russian poetry (until 1955, when he dropped the name Dukelsky). + +He moved to Paris in 1924 and wrote classical music (as Dukelsky) for Ballet Russes and also composed his [i]First Symphony[/i] (1928). He became close friends with composer [a621694] as well as [a1397208] and [a195292]. He also traveled to London and contributed to musical comedies (as Vernon Duke). + +In 1929, he returned to New York and began writing for Broadway, partnering with [a573556] to write his first pop hit "April in Paris." Duke's songs "April In Paris" (1932), "Autumn In New York" (1934), "I Like The Likes Of You" (1934), "Water Under the Bridge" (1934), and "I Can't Get Started" (1936), were hits of the 1930s. + +Dukelsky became a US citizen in 1936 (some sources say 1939) and took Vernon Duke as his legal name. During World War II, he served in the US Coast Guard, where he wrote the score for a Coast Guard revue, "Tars And Spars", starring the young and then-unknown [a1484822]. + +After the war, his career lulled, and he lived in France, eventually settling in California in 1948. By 1955, he dropped the name Dukelsky, and from then on both his classical and popular compositions were credited to Vernon Duke. In that same year, he published an autobiography, "Passport To Paris", and in 1957 he married singer Kay McCracken. + +Vernon Duke died during an operation for lung cancer in Santa Monica, California on 16 January 1969.Needs Votehttps://en.wikipedia.org/wiki/Vernon_Dukehttps://www.songhall.org/profile/Vernon_Dukehttps://www.naxos.com/person/Vernon_Duke/17193.htmhttps://www.ibdb.com/broadway-cast-staff/vernon-duke-8943https://adp.library.ucsb.edu/index.php/mastertalent/detail/102913/Duke_VernonBernon DukeD. VernonDUkeDukeDuke / GebelingDuke VernonDuke, VernonDuke-VernonDuke/GebelingDuke/VernonDukesDukieDulceDuneH. DukeKay DukeNerron-DukeR. DukeU. DukeV DukeV, DukeV. DukeV. DikeV. DukeV. DukoV. DulzV. DunkeV. DykeV.DukeV.Von DukeV; DukeVenon DukeVernan DukeVernonVernon - DukVernon - DukeVernon / DukeVernon DikeVernon DuckVernon Duke, b. Vladimir DukelskyVernon DukesVernon DuksVernon, DukeVernon-DuckVernon-DukeVernon/DukeVeron DukeVèrnon DukeW. DukeWernon DukeY. Dukev. DukeВ. ДюкВернон ДюкVladimir Dukelsky + +614367Martin CarpentierCanadian clarinetist & hornistNeeds VoteNouvel Ensemble ModerneLes Violons du RoyOrchestre Métropolitain du Grand MontréalL'orchestre De Chambre De MontréalPentaèdre + +615542Ralph BlaneRalph Uriah HunseckerAmerican composer, lyricist and performer, born 26 July 1914 in Broken Arrow, Oklahoma, USA, died 13 November 1995 in Broken Arrow, Oklahoma, USA. +Inducted into Songwriters Hall of Fame in 1983.Needs Votehttps://en.wikipedia.org/wiki/Ralph_Blanehttps://www.imdb.com/name/nm0087433/https://www.songhall.org/profile/Ralph_Blanehttps://adp.library.ucsb.edu/names/104518B. BlanaB. BlaneBaineBalbeBlainBlaineBlameBlancBlancheBlaneBlane RalphBlane, RalphBlansBlanzBlareBlaseHal BlaneIslandsJames BlaineKaneLaneM. BlaneMartinR BlancR BlanceR BlaneR. BlainR. BlaineR. BlakeR. BlameR. BlancR. BlaneR. BlanetR. BlaveR.BlaineR.BlakeR.BlaneRalf BlaneRalp BlaneRalph BaineRalph BlainRalph BlaineRalph BlameRalph BlancRalph Blane (N.C.)Ralph BlanierRalph BlumeRalph LaneΡ. BlaneБланеР. Блейн + +615543Stephen FosterStephen Collins FosterAmerican composer born July 4, 1826 in Lawrenceville, Pennsylvania and died January 13, 1864 in New York City, known as "the father of American music", primarily for his parlour and minstrel music during the Romantic period. He has been identified as "the most famous songwriter of the nineteenth century". +He wrote more than 200 songs such as "Oh! Susanna", "Camptown Races", "Old Folks at Home", "Swanee River", "Hard Times Come Again No More", "My Old Kentucky Home", "Old Black Joe", "Jeanie with the Light Brown Hair", and "Beautiful Dreamer" and many remain popular Today. +Inducted into the Songwriters Hall of Fame in 1970.Needs Votehttps://en.wikipedia.org/wiki/Stephen_Fosterhttp://www.pitt.edu/~amerimus/foster.htmhttps://www.britannica.com/biography/Stephen-Fosterhttps://www.pdmusic.org/stephen-collins-foster/http://www.stephen-foster-songs.de/https://www.songhall.org/profile/Stephen_Fosterhttps://adp.library.ucsb.edu/names/101961C. FosterCollins-FosterF. FosterF. StephenForsterFosterFostrOliverS FosterS. C. ForsterS. C. FosterS. Collins FosterS. Collins-FosterS. ForsterS. FosterS. G. FosterS.C FosterS.C. ForsterS.C. FosterS.C.FosterS.F. FosterS.FosterSt C. FosterSt. C. FosterSt. ForsterSt. FosterStefan C. FosterStefan FosterSteph. FosterStephan FosterStephen C FosterStephen C. ForsterStephen C. FosterStephen Collin FosterStephen CollinsStephen Collins FosterStephen Collins FosterStephen Collins FosStephen Earl FosterStephen ForsterStephen Foster CollinsStephen Foster P.DStephen Foster P.D.Stephen G. FosterStephencStephens Collins FosterStephens FosterStept. FosterSteve FosterSteven C. FosterSteven Collins FosterSteven FosterStéphen FosterS・フォスターTradicionalTraditionalTraditionnelС. ФостерСтивен ФостерФостерスティーブン・コリンズ・フォスターフォスター + +615544Hugh MartinEdward Hugh MartinHugh Martin (August 11, 1914 – March 11, 2011) was an American musical theatre and film composer, arranger, vocal coach, and playwright. He is best known for his score for the classic 1944 MGM musical [i]Meet Me In St. Louis[/i]. [a=Ralph Blane] was Martin's songwriting partner for most of his work, and the two recorded an album of their best songs entitled "Martin and Blane Sing Martin and Blane" with [a=Ralph Burns And His Orchestra] in 1956. Throughout his career, Martin remained active as a performer, most memorably as [a=Judy Garland]'s accompanist when she first played the Palace, and as [a=Eddie Fisher]'s accompanist at London's Palladium. + +Hugh Martin was inducted into the Songwriters Hall of Fame in 1983 and is a member of the Alabama Music Hall of Fame.Needs Votehttps://hughmartin.com/https://www.facebook.com/HughMartinJrhttps://en.wikipedia.org/wiki/Hugh_Martinhttps://www.britannica.com/biography/Hugh-Martinhttps://www.imdb.com/name/nm0552399/https://www.songhall.org/profile/Hugh_Martinhttps://adp.library.ucsb.edu/names/105222B. MartinBlaneBlane MartinEdward Hugh MartinH MartinH, MartinH. MartinH. MartinH. MartonH. MatinH.MartinHigh MartinHug MartinHugh E. MartinHugh Edward MartinHugo MartinHune MartinM HughM. HughM. MartinM.HughMarrinMartinMartin HughMartin, HughMartonMartínN.MartinR. BlaneRalph BlaneΗ. MartinМартинХ. Мартин + +615760Jan Willem Van Der HamDutch bassoonist and baritone saxophonist, born 4 April 1958.Needs Votehttps://janwillemvanderham.wixsite.com/janwillemvanderhamhttps://janwillemvanderham.bandcamp.com/https://www.linkedin.com/in/jan-willem-van-der-ham-30566728/https://rateyourmusic.com/artist/jan_willem_van_der_hamJ.W. van der HamJan Willem Van Den HamJanWillem Van Der HamJanwillem v.d. HamVan der HamIves EnsembleEd De Vos TrioNieuw Sinfonietta AmsterdamJ.C. Tans + RocketsHoketusOrkest Amsterdam DramaSean Bergin's Song MobSean Bergin and M.O.B.Nieuw Artis OrchestraJoost Buis & AstronotesTrio ContinuoBik Bent BraamAmmerlaans OctetAmmerlaans SeptetNative Aliens EnsembleCorrie van Binsbergen BandOwlman (3)Mixing Memory And Desire + +616575Turk Van LakeVanig Rupen HovsepianAmerican jazz guitarist, arranger and composer + +Born: 15 June 1918 in Boston, Massachusetts, USA +Died: 1 September 2002 in Staten Island, New York, USANeeds Votehttps://adp.library.ucsb.edu/names/210473https://en.wikipedia.org/wiki/Turk_Van_LakeT. Van LakeT. VanLakeTurkTurk Van LeeTurk van LakeVan LakeVanigVanig HovsepianCharlie Barnet And His OrchestraTerry Gibbs And His OrchestraThe Nat Pierce Orchestra + +616853Arthur Schwartzborn: November 25, 1900, Brooklyn, New York (USA). +died: September 3, 1984, Kintnersville, Pennsylvania (USA). + + >> Please use [a=Schwartz & Dietz] when credited with [a=Howard Dietz] << +Arthur Schwartz was an American composer and film producer. While studying legal studies at New York University and postgraduate studies at Columbia University he supported himself by playing piano. After quitting the law profession for good in 1928, Schwartz devoted himself entirely to songwriting. Acquaintances like [a=Lorenz Hart] and [a=George Gershwin] encouraged him to continue composing and in 1928, he met [a=Howard Dietz], the lyricist with whom he produced his most successful material. + +Inducted into the Songwriters Hall of Fame in 1972. In 1990 he received the ASCAP Award for Most Performed Feature Film Standard "That's Entertainment" from [i]The Band Wagon[/i]. + +Schwartz is the author of the booklet "Fascinating George; Geroge Gershwin" included with the RCA Victor LM-6033 two-LP set "The Serious Gershwin・Morton Gould".Needs Votehttps://en.wikipedia.org/wiki/Arthur_Schwartzhttps://www.songhall.org/profile/Arthur_Schwartzhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105428/Schwartz_Arthurhttps://www.imdb.com/name/nm0777150/https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/schwartz-arthurA SchwartzA. SchuartzA. SchwaltzA. SchwartzA. SchwarzA. ShartzA. SschwartzA. SwartzA. シュワルツA.SchwartsA.SchwartzArthur SchwartaArthur SuhwartzArthur SwartzArtur SchwartzAuthor SchwartzD. SchwartzHarry SchwartzHoward SchwartzM. SchwarzSCHWARTZ ARTHURSchartzSchawartzScheartzSchwartaSchwartsSchwartzSchwartz, ArthurSchwarzSchwarzzScwartzShwartzSuchwartzА. ШварцАртур Шварцアーサー・シュワルツSchwartz & Dietz + +616990John Stevens (3)American jazz saxophonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +617116Giles FarnabyEnglish composer and keyboardist, c. 1563 – November 1640.Needs Votehttps://en.wikipedia.org/wiki/Giles_Farnabyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102638/Farnaby_GilesC. FarnabyFarnabyFarnsbyG FarnabyG. FarnabyGiles BarnabyGilles FarnabyД. ФарнабиД. ФарнебиДж. Фарнеби + +617133Leopold StokowskiLeopold Anthony StokowskiBritish-born American conductor of Polish and Irish descent (born 18 April 1882 in London, England, UK and died 13 September 1977 in Nether Wallop, Hampshire, England, UK). Married to pianist [a2194763] (1911-1923, divorce). + +One of the leading conductors of the early and mid-20th century, he is best known for his long association with the Philadelphia Orchestra and his appearance in the Disney film Fantasia. Stokowski was music director of the [a=Cincinnati Symphony Orchestra], [a=the Philadelphia Orchestra], the [a=NBC Symphony Orchestra], [a=The New York Philharmonic Orchestra], the [a=Houston Symphony Orchestra], the [a=Symphony of the Air] and many others. He was also the founder of [a=the All-American Youth Orchestra], the [a=New York City Symphony Orchestra], [a=the Hollywood Bowl Symphony Orchestra] and [a=the American Symphony Orchestra]. Stokowski conducted the music for and appeared in several Hollywood films, most notably Disney's Fantasia, and was a lifelong champion of contemporary composers, giving many premieres of new music during his 60-year conducting career. Stokowski, who made his official conducting debut in 1909, appeared in public for the last time in 1975 but continued making recordings until June 1977, a few months before his death at the age of 95.Needs Votehttps://www.stokowski.org/https://stokowski.tripod.com/https://en.wikipedia.org/wiki/Leopold_Stokowskihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102771/Stokowski_LeopoldL. StokowskiL. StokowskyL. SztokovszkijL.StokowskiLeopold StokovskiLeopold StokowskyLeopoldo StokowskiLeopoldo StokowskyLéopold StokowskiLéopold StokowskyM. Leopold StokowskyM. Léopold StokowskiM. Léopold StokowskyM.o L. StokowskiM.o Leopold StokowskiM.o Leopoldo StokowskiM.o StokowskiMaestro L. StokowskiMo. Leopoldo StokowskiMr. StokowskiStokovskiStokovskyStokowskStokowskiStokowski (Leopold?)Stokowski, L.StokowskyЛ. СтоковскийЛеопольд СтоковскийСтоковскийלאופולד סטוקובסקיストコフスキーレオポルド・ストコフスキーThe Philadelphia OrchestraNBC Symphony OrchestraNew York PhilharmonicThe American Symphony OrchestraCincinnati Symphony OrchestraThe Hollywood Bowl Symphony OrchestraHouston Symphony OrchestraNew York City Symphony OrchestraSymphony Of The AirLeopold Stokowski And His Symphony OrchestraThe All-American Youth Orchestra + +617253Boudleaux BryantDiadorius Boudleaux BryantAmerican songwriter, born 13 February 1920 in Shellman, Georgia, USA and died 26 June 1987 in Gatlinburg, Tennessee, USA. He was married to [a=Felice Bryant]. Nashville Songwriters Hall of Fame (1972). Georgia Music Hall of Fame (1982). Atlanta Country Music Hall of Fame (1985). Inducted into the Songwriters Hall of Fame in 1986. +Needs Votehttps://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=100&Main_Search_Text=Boudleaux+Bryant&Search_Type=bmihttp://en.wikipedia.org/wiki/Boudleaux_Bryanthttps://www.songhall.org/profile/boudleaux_bryanthttps://adp.library.ucsb.edu/names/356091*. BryantB BriantB BryantB. BoudleauxB. Boudleaux / B. BryantB. BrantB. BriantB. BryanB. BryandB. BryantB. Bryant RagosoB. BrylantB. ByrantB. ブラィアンB.A. BryantB.BryantBardleaux, BryantBaudleaux BryantBeaudaleauxBodleaux BryantBoedleaux BryantBondleaux BryantBood BryantBordeaux BryantBordeaux/BryantBordeleaux BryantBordleaus BryantBordleaux BryantBorleaux BryantBou Dreaux BryantBoubleaux BryantBoud Leaux BryantBoudLeAux BryantBoudaeuleuax BryantBoudeaux BryantBoudeaux, BryantBoudelauxBoudelaux - BryantBoudelaux / BryantBoudelaux BryantBoudelaux-BryantBoudelaux/BryantBoudeleau BryantBoudeleaux BryantBoudeleaux/BryantBoudlcaux BryantBoudleau BryantBoudleauxBoudleaux - BryandBoudleaux - BryantBoudleaux / B. BryantBoudleaux / BryantBoudleaux BriantBoudleaux BryanBoudleaux ByrantBoudleaux bryantBoudleaux, BryantBoudleaux-B. BryantBoudleaux-BriantBoudleaux-BryantBoudleaux/BruantBoudleaux/BryantBoudleaux/ByrantBoudleaux; BryantBoudleux BryantBoudlezux BryantBoudlleaux BryantBoudobaux BryantBouldeaux BryantBouldeaux/BryantBoulden - BryantBouleaux BryantBouleaux-BryantBoulleau BryantBourdelaux/BryantBourdeleaux BryantBourdleaux BryantBouvleaux BryantBriantBryanBryandBryand/BoudleauxBryantBryant / BoudleauxBryant B.Bryant BoubleauxBryant BoudeleauxBryant BoudleauxBryant DougleausBryant, BBryant, BoudleauxBryant-Boudleaux-Acct-1Bryant/BoudleauxBrynautBryntBudleaux BryantByantD. BryantD. R. BryantF. BryantJ. BryantL. BryantP. BryantR. BryantW.M. Boudleaux BryantБ. Брайантブードロー・ブライントBoudleaux & Felice Bryant + +617404Chor Des Bayerischen RundfunksNeeds Votehttps://www.br-chor.com/https://de.wikipedia.org/wiki/Chor_des_Bayerischen_RundfunksAnd ChorusBavaria ChorBavaria Radio ChorusBavaria-ChorBavarian RadioBavarian Radio ChoirBavarian Radio ChorusBavarian Radio Chorus / Chor Des Bayerischen RundfunksBavarian Radio ChrorusBavarian Radio Symphony ChoirBavarian Radio Symphony ChorusBavarian Radio Sympony ChorusBavarian State Radio ChoirBavarian State Radio ChorusBay Rund SingersBayerischen RundfunkchorBayerischen RundfunksBayerischer Rundfunk ChorusBayerischer RundfunkchorBayerska Radions KörBayerska Radions Kör Och SymfoniorkesterBayrischer Rundfunk ChorBayrischer RundfunkchorChoeurChoeur De La Radio BavaroiseChoeur De La Radio Diffusion BavaroiseChoeur De La Radiodiffusion BavaroiseChoeur Et Orchestre Symphonique De La Radio BavaroiseChoeur Symphonique de la Radio BavaroiseChoeur de Radiodiffusion BavaroiseChoeur de la Radiodiffusion BavaroiseChoeursChoeurs De La Radio BavaroiseChoeurs De La Radio Diffusion BavaroiseChoeurs De La Radiodiffusion BavaroiseChoeurs de la Radiodiffusion BavaroiseChoirChoir Of The Bavarian Broadcasting ServiceChoir Of The Bavarian RadioChoir Of The Bayerischer RundfunkChorChor D. Bayerischen RundfunksChor D. Bayr. RundfunksChor De La Radio Diffusion BavaroiseChor Der Französischen RundfunksChor Des BRChor Des Bayerischen RundfunkChor Des Bayerischen Rundfunks (Damen)Chor Des Bayerischen Rundfunks MünchenChor Des Bayrischen RundfunksChor Des Westdeutschen RundfunksChor UndChor Und Bläser Des Bayerischen RundfunksChor Und Orchester Des Bayerischen RundfunksChor des BRChor des Bayerischen RundfunksChor des Bayrischen RundfunksChor des Westdeutschen RundfunksChor-ChormitgliederChorusChorus Of Bavarian RadioChorus Of Bayerischer RundfunkChorus Of Bayrischer RundfunksChorus Of The Bavarian Broadcasting StationChorus Of The Bavarian RadioChorus Of The Bayerischer RundfunkChorus Of The Muncher RundfunkorchesterChorus of Bayerischen Rundfunk, MünchenChorus of the Bavarian RadioChöre Des Bayerischen RadioChöre Des Bayerischen RundfunksChöre des Bayerischen RundfunksChöre des Bayerischen, Norddeutschen Und Westdeutschen RadioChœurChœur & Orchestre de la Radio BavaroiseChœur De La Radio BavaroiseChœur De La Radiodiffusion BavaroiseChœur Symphonique De La Radio BavaroiseChœur de la Radio BavaroiseChœursChœurs De Bass De La Radio BavaroiseChœurs De La Radio BavaroiseChœurs De La Radiodiffusion BavaroiseChœurs Du Bayerischer Rundfunk, MunichChœurs Symphonique De La Radiodiffusion BavaroiseChœurs de la Radio BavaroiseCoroCoro De La Radio BávaraCoro De La Radio De BavieraCoro De La Radiodifusion BavaraCoro De La Radiodifusión BavaraCoro De La Radiodifusión BávaraCoro De La Radiodifusión De BavieraCoro De La Radiodiusión De BavieraCoro De La Radiofusion De BavieraCoro Del Bayerischer RundfunkCoro Della Radio BavareseCoro Radio Di MonacoCoro Sinfonica De La Radio De BavieraCoro de La Radiodifusión BávaraCoro de la Radiodifusión BávaraCoros De Radio BavieraDamen Aus Dem Chor Des Bayerischen RundfunksDamen aus dem Chor des Bayerischen RundfunksDer ChorDer Chor D. Bayerischen RundfunksDer Chor Des Bayerischen RundfunksDer Chor Des Bayerischen Rundfunks (München)Der Chor Des Bayrischen RundfunksDer Chor des Bayerischen RundfunksDerChor d.Bayerischen RundfunksEin Gemischter ChorFrauenchor Des Bayerischen RundfunksHet Koor Van De Beierse RadioKoorKoor Van De Beierse RadioMitglieder Des Chores Des Bayerischen RundfunksMitglieder Des Männerchores Des Bayerischen RundfunksMitglieder Des Männerchors Des Bayerischen RundfunksMunich Radio ChorusMännerchor Des Bayerischen RundfunksMünchner RundfunkchorRadio BR ChoirRundfunkchor Des Bayerischen RundfunksSoli Et Chœur De La Radio BavaroiseSoli, ChorSolistas, CorosSolistas, Coros De La Radio De BavieraSolistas, Coros De La Radio De BavieraSänger des Bayerischen Rundfunk ChorsThe Bavarian Radio ChorusThe Bavarian Radio Symphony ChorusZbor Bavarskog RadijaХорХор Баварского РадиоХор Мюнхенского Радиохор Баварского радиоバイエルン放送合唱団Merit OstermannAndreas HirtreiterThomas HambergerJosef SchmidhuberGeorg BaumgartnerBernhard SchneiderHildegard WiedemannPaul Hansen (2)Peter LikaTheodor NicolaiIrmgard LampartErika RüggebergPeter SchrannerJosef WeberHans-Peter RauscherKarl KreileWolfgang KloseHeinrich WeberAnton RosnerPriska EserTheresa BlankJulia FalkMatthias EttmayrAndreas MoglJutta NeumannMarion RambausekGudrun GreindlAlbert GassnerBarbara FleckensteinGabriele WeinfurterIsolde MitternachtClaudia UlbrichMichael MantajDavid StinglHilke BrosiusSimona BrüninghausHanne WeberGisela UhlmannTheodor WeimerSabine StaudingerAtsuko SuzukiLorenz Fehenberger (2)Andreas BurkhartMichaela KnabUrsula MannKarin HautermannMasako GodaIsabella StettnerAndrew Meyer (2)Barbara Schmidt-GadenBarbara Müller (7)Werner RollenmüllerKerstin RosenfeldtMareike BraunTimo JanzenAnna-Maria PaliiDiana Fischer (2)Margit PennartzMonika SchelhornSonja PhilippinMoon Yung OhNikolaus PfannkuchQ-Won HanTaro Takagi (3)Patricia Wagner (3)Esther ValentinChristof Hartkopf + +617407Barbro EricsonBarbro Helene Augusta Ericson HederénSwedish operatic mezzo-soprano and contralto and hovsångare (royal court singer), born 2 April 1930 in Halmstad, Sweden. + +Engagement as soloist at the Kungliga Operan (Royal Swedish Opera) in Stockholm from 1958.Needs Votehttps://sv.wikipedia.org/wiki/Barbro_EricsonB. EricsonBabro EricsonBarbra EricsonBarbro EricksonEricsonБарбро Эриксон + +618212André MoisanCanadian clarinetist & saxophonistNeeds Votehttp://www.andremoisan.com/André MoïsanOrchestre symphonique de MontréalQuatuor MoisanTexas State University Clarinet Choir + +619193Mathias LöhleinMatthias LöhleinGerman classical violinist.Needs VoteMünchner Philharmoniker + +619226Mikael SjögrenSwedish classical cellist, born in 1959.Needs VoteM. SjögrenMikael SjogrenMikael SjorgrenSveriges Radios SymfoniorkesterSnykoStockholm SinfoniettaKungliga FilharmonikernaLysellkvartetten + +619227Ulrika EdströmSwedish classical cellistNeeds VoteSveriges Radios SymfoniorkesterSnyko + +619231Torbjörn BernhardssonSwedish violinist.Needs VoteThombjörn BernhardssonTorbjorn BernhandssonTorbjorn BernhardssonTorbjörn BernardssonTorbjørn BernhardssonStockholm Session StringsSveriges Radios SymfoniorkesterSnykoDrottningholms Barockensemble + +619319Bill CharlapWilliam Morrison CharlapAmerican jazz pianist born October 15, 1966 in New York City, USA. +He is the son of composer [a1008930] and singer [a1792949]. Married to jazz pianist [a353860].Needs Votehttps://en.wikipedia.org/wiki/Bill_Charlaphttps://de.wikipedia.org/wiki/Bill_Charlaphttps://www.wikidata.org/wiki/Q862007B. CharlapCharlapGerry Mulligan QuartetThe Joe Roccisano OrchestraThe Blue Note 7The Phil Woods QuintetBill Charlap TrioJon Burr QuartetNew York TrioThe Jon Gordon QuartetSean Smith QuartetHarry Allen QuartetJon Gordon SextetConrad Herwig QuartetThe Randy Sandke QuartetJon Gordon QuintetRonnie Bedford QuartetThe European Jazz Piano TrioGary Smulyan And Brass + +619589Etienne PéclardÉtienne PéclardFrench cellist.Needs Votehttp://fr.wikipedia.org/wiki/%C3%89tienne_P%C3%A9clardEtienne PeclardPeclardÉtienne PéclardOrchestre National De FranceOrchestre De ParisOrchestre National Bordeaux AquitainePop Instrumental De FranceQuatuor Alain MogliaTrio Sartory + +619886Jack SegalJohn Edward SegalJack Segal (October 19, 1918 in Minnesota – February 10, 2005 in Tarzana, Los Angeles, California) was a composer of popular American songs.Needs Votehttp://en.wikipedia.org/wiki/Jack_Segalhttps://adp.library.ucsb.edu/names/358801J SegalJ. BegalJ. CegalJ. O SegalJ. O. SegalJ. SeagalJ. SegalJ. SegelJ. SiegalJ.C.SegalJ.O. SegalJ.P. SegalJ.SegaJ.SegalJack D. SegalJack O. SegalJack O. Segal*Jack SeagalJack SegallJack SeigelJack SiegalJack SiegelJackie SegalJohn Edward SegalLegalSealSeegalSegalSegallSegatSegelSegolSiegelZet Segalj segalДж. Сегал + +620105Antonio Amurri(Ancona, June 28, 1925 - Rome, Dec. 18, 1992) was an Italian writer and lyricist. +Grandfather of actress's [a476008].Needs Votehttps://it.wikipedia.org/wiki/Antonio_Amurrihttps://www.imdb.com/name/nm0025482/?ref_=nv_sr_srsg_0A AmurriA. AmuriA. AmurraA. AmurriA. AmurrúA. AntonioA. ArmurriA. CamurriA. MurriA.AmurriAmauriAmaurriAmmurriAmorriAmuriAmurrAmurriAmurrioAnurriArmurriArmurri A.ArumiC. アムリMuniMurriNamurriO. AmurriT. AmurriT.AmurriLiverpool (7)Dolittle (2) + +620106Bruno CanforaBruno Canfora (Born November 6,1924 in Milan, passed away August 6, 2017 in Tavernelle, Perugia) was an Italian composer, conductor, and arranger. He studied piano at an early age, then oboe at the Giuseppe Verdi Conservatory in Milano. During World War II, he played with his group in Trieste. After the war, he moved to Turin, becoming conductor of the Castellino Danze Orchestra. Besides having composed scores for television programs and films, Canfora is known for his work in pop music, particularly for his collaboration with Mina. He also composed songs for Rita Pavone, Ornella Vanoni, Shirley Bassey ('This is my life'), and the Kessler Twins. Resident conductor at RAI Television for decades, Canfora was the musical director of the 1961 San Remo Song Festival and the 1991 Eurovision Song Contest. Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1991/05/bruno-canfora.htmlhttps://it.wikipedia.org/wiki/Bruno_Canforahttps://www.imdb.com/name/nm0133949/?ref_=nv_sr_1?ref_=nv_sr_1A. CanforaB CanforaB. CamforaB. CamfordB. CanforB. CanforaB. CanfordB. CanforeB. CanforiB. CanfornaB. ConforaB. CánforaB.CanforaBruno CanfonaBruno CantorBruno CánforaCamfaraCamforaCanforaCanfordCanforraCanforsCanforáCanoraCansaraCantoraCanvoraConforaCouforaCánforaD. CanforaM. Bruno CanforaM.o B. CanforaN. NewellКанфораブルーノ・カンフォラJ. RoversolBruno Canfora E Il Suo ComplessoBruno Canfora E La Sua Orchestra + +620153Ira NepusIra NepusTrombonist who has performed with Benny Carter, Gerald Wilson, Clayton Hamilton Jazz Orchestra, Natalie Cole, Woody Herman, Lionel Hampton, Bob Crosby, World's Greatest Jazz Band, Harry James, Herbie Hancock, Frank Sinatra, George Benson, Cab Calloway, Dizzy Gillespie, Phil Woods, Tom Scott, Ray Charles, Sammy Davis Jr., Neil Diamond, Henry Mancini, Dionne Warwick, Ella Fitzgerald, Peggy Lee, Nancy Wilson, Lou Rawls, Diana Krall, and Nelson Riddle, among others.Needs Votehttps://www.iranepus.com/https://web.archive.org/web/20220309000952/http://iranepusmusic.com/a1.htmlGuy NepusI. NepusIraIra Guy NepusIra NapisIra NedusIra NpusIva NepusNepusLemuriaWoody Herman And His OrchestraThe Clayton-Hamilton Jazz OrchestraThe Hollywood TrombonesWoody Herman And The Thundering HerdThe Matt Catingub Big BandL.A. 6Scott Whitfield Jazz Orchestra West + +620186Fritz KreislerAustrian-born American violinist and composer, born February 2, 1875 in Vienna, Austria, died January 29, 1962 in New York, NY, USA. +One of the most famous violinists of his day, Kreisler is noted for his sweet tone and expressive phrasing. Like many great violinists of his generation, he produced a characteristic sound, which was immediately recognizable as his own.Needs Votehttps://en.wikipedia.org/wiki/Fritz_Kreislerhttps://musiklexikon.ac.at/ml/musik_K/Kreisler_Brueder.xmlhttps://www.britannica.com/biography/Fritz-Kreislerhttps://www.bach-cantatas.com/Bio/Kreisler-Fritz.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103033/Kreisler_FritzChryslerF KreislerF. KlajslerF. KrajslerF. KreisierF. KreislerF. KreislerisF. KreislersF. KrieslerF. KrteislerF. KveislerF.KreislerF.クライスラーFR. KreislerFr. KreislerFr.KreislerFreislerFriedrich KreislerFrits KreislerFritz KreisslerKeislerKraislerKreislerKreisler (Violin)Kreisler FritzKreisler, FritzKreisnerKrieslerKrüslerMonsieur F. Kreislerv. KreislerКрайслерКрейслерФ. КрайслерФ. КрейслерФ. КрейслераФ. КрейцерФ.КрейслерФрицФриц КрайслерФриц КрајслерФриц Крейслерф. Крейслерクライスラーフリッツ・クライスラーフリッツ・クライスラー克莱斯勒克萊斯勒The Kreisler String Quartet + +620661Carl ZellerCarl Adam Johann Nepomuk ZellerAustrian composer and politician, born June 19, 1842 in Sankt Peter in der Au, Austria, died August 17, 1898 in Baden bei Wien, Austria.Needs Votehttp://www.carlzeller.at/https://adp.library.ucsb.edu/names/116364https://de.wikipedia.org/wiki/Carl_ZellerC. ZellerCarl Friedrich ZellerCh. ZellerJ. ZellerK ZellerK. ZellerK.C. ZellerK.ZellerKarl ZellarKarl ZellerKarlas CelerisLied C. ZellerZelherZellZelleZellerК. ЦелерК. ЦеллерК. ЦеллераК.ЦеллерaЦеллерЦеллераDie Wiener Sängerknaben + +620726Carl Maria von WeberCarl Maria Friedrich Ernst von WeberBorn November 18 or 19, 1786, in Eutin, Prince-Bishopric of Lübeck (now Eutin, Germany), died June 5, 1826 in London, Great Britain. +German composer, conductor, pianist, guitarist and critic, and was one of the first significant composers of the Romantic school.Needs Votehttps://www.weber-gesamtausgabe.de/https://en.wikipedia.org/wiki/Carl_Maria_von_Weberhttps://www.britannica.com/biography/Carl-Maria-von-Weberhttps://www.naxos.com/person/Carl_Maria_von_Weber/22404.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102543/Weber_Carl_Maria_von(von) Weber, Carl MariaC. M v. WeberC. M. V. WeberC. M. Van WeberC. M. VeberC. M. Von WeberC. M. WeberC. M. de WeberC. M. v. WeberC. M. von WeberC. Maria V. WeberC. Maria v. WeberC. Maria von WeberC. Mv. WeberC. Von WeberC. W. WeberC. WeberC. von WeberC.- M. Von WeberC.M von WeberC.M. V. WeberC.M. Von WeberC.M. WeberC.M. v. WebberC.M. v. WeberC.M. von WaeberC.M. von WeberC.M. von weberC.M. vonWeberC.M.F.E. von WeberC.M.V. WeberC.M.Von WeberC.M.WeberC.M.v. WeberC.M.v.WeberC.M.von WeberCar Maria von WeberCarl M. Von WeberCarl M. WeberCarl M. v. WeberCarl M. von WeberCarl Maria Friedrich Ernst von WeberCarl Maria Friedrich von WeberCarl Maria V. WeberCarl Maria Von WeberCarl Maria WeberCarl Maria v. WeberCarl Maria von NeserCarl MariaV. WeberCarl Mª WeberCarl Mª von WeberCarl WeberCarl von WeberCarl-Maria Von WeberCarl-Maria von WeberCarlo Maria WeberCarlo Maria von WeberG. M. de WeberK. M. VeberK. M. VeberisK. M. Von WeberK. M. VēbersK. M. WeberK. M. v. WeberK. M. von WeberK. VeberisK. WeberK. ВеберK.M. V. WeberK.M. Von WeberK.M. VēbersK.M. WeberK.M.Von WeberKarl Maria Von WeberKarl Maria WeberKarl Maria v. WeberKarl Maria von WeberKarl Marija VeberKarl WeberKarl-Maria von WeberKārlis Marija VēbersM. WeberM. von WeberMaria Von Weber C.Maria von Weber C.V. WeberVon WebberVon WeberVonWeberWebberWeberWeber C. M. v.Weber C.M.Weber C.M. VonWeber C.M.V.Weber Carla Maria VonWeber, C. M.Weber, C.M. vonWeber, Carl MariaWebertWebwev. Webervon WeberΒέμπερВ. М. ВеберВеберК. ВеберК. М. ВеберК. М. фон ВеберК.-М. ВеберК.М. ВеберКарл Мария Фон ВеберКарл Мария фон ВеберКарл Марија ВеберКарл-Мария Фон ВеберウェーバーStaatskapelle Dresden + +620727Horst KunzeSound engineer and producer for recordings of classical music, for [l47734] and other label productions.Needs Votehttps://www.ioco.de/interview-bernd-runge-musikregisseur-beim-label-eterna-ioco/H. KunzeHornst KunzeKorst Kunze + +620734Hans Leo HaßlerHans Leo Haßler von RoseneckGerman composer and organist of the late Renaissance / early Baroque era, * 25 Oc­to­ber 1564 in Nürnberg, † 08 June 1612 in Frankfurt am Main.Needs Votehttps://en.wikipedia.org/wiki/Hans_Leo_Hasslerhttps://www.britannica.com/biography/Hans-Leo-Hasslerhttps://www.bach-cantatas.com/Lib/Hassler.htmhttps://www.deutsche-biographie.de/sfz70024.htmlhttps://gemeinden.erzbistum-koeln.de/stifts-chor-bonn/service/komponisten/Hassler.htmlhttps://adp.library.ucsb.edu/names/102870H. HasslerH. L. HaslerH. L. HaslerisH. L. HassierH. L. HasslerH. L. HaßlerH.-L. HasslerH.L HasslerH.L. HasslerH.L. HaßlerH.L.HasslerHand Leo HasslerHanns Leo HasslerHans HasslerHans L. HaßlerHans LeoHans Leo HaslerHans Leo HasserHans Leo HasslerHans Leo Hassler (1564-1612)Hans Leo Hassler, 1601Hans Leo HasslserHans Leo HässlerHans Leo Von HaslerHans Leo Von HasslerHans Léo HaslerHans Léo HasslerHans-Leo HasslerHans-Leo HaßlerHans-Léo HasslerHanss Leo HasslerHaslerHassierHasslerHaßlerHässlerJ. Leo HasslerJ.L. HasslerJoh. F. HaslerJoh. L. HasslerL. HaslerL. HasslerLeo HaslerLeo HasslerLéo HasslerLéon HasslerЛ. ГасслерХ. Л. ХаслерХ. Л. ХасслерХ. ХасслерХанс Лео Хасслерהנס ליאו אסלר + +620814Jim LeeJames Joseph LeeAmerican songwriter and producer, born February 5, 1937 in Oklahoma City. Credited, as both, for the 1962 hit-single "[m=118337]". Owner of [l=Indigo Records (4)].Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=197941&subid=0http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=197949&subid=0F. RobertsonG. LeeJ LeeJ. DeeJ. LeaJ. LeeJ. LeoJ.LeeJames Joseph LeeJames LeeJerry LeeJimJim Joe LeeJim-LeeJimmy Joe LeeJimmy LeeJin Lee-VerL JimL. JimLeaLeeLee James JosephLee, JimLee/JimS. LeeSheridan Lee + +620928Chick BoothCredited as drummerNeeds VoteDavid Booth (2)Earl Hines And His Orchestra + +620939Eddie ChambleeEdwin Leon ChambleeAmerican jazz and blues saxophonist and clarinetist, born 24 February 1920 in Atlanta, Georgia, USA and died 1 May 1999 in New York, USA. Married to [a=Dinah Washington] from 1957 to 1959.Needs VoteChambleeE. ChambleeE.ChambleeEddie ChambleEddie Chamblee And His Rhythm And Blues BandEddie ChamblesEdward ChambleeThe Rockin' And Walkin' Rhythm Of Eddie ChambleeThe Rocking And Wailing Rhythm Of Eddy ChambleeLionel Hampton And His OrchestraLionel Hampton And His SextetThe Harlem Blues & Jazz BandLionel Hampton & His Giants Of JazzEddie Chamblee And OrchestraEddie Chamblee And The BandEddie Chamblee ComboDick Davis Sextette + +621302Jean-Michel BériatFrench singer and songwriterCorrectBeriatBeriotBériatJ M BeriatJ-M BériatJ-M. BeriatJ-M. BériatJ-Michel BériatJ. BeriatJ. BériatJ. M. BeriatJ. M. BériatJ. MIchel BériatJ. Michel BeriatJ. Michel BériatJ.-M BeriatJ.-M BériatJ.-M. BeriatJ.-M. BériatJ.-M.BériatJ.-Michel BeriatJ.-Michel BériatJ.BeriatJ.M BeriatJ.M. BeiratJ.M. BeriaJ.M. BeriatJ.M. BeriotJ.M. BerriatJ.M. BériatJ.M.BeriatJ.M.BériatJ.Michel BériatJM BeriatJM BériatJM. BeiratJM. BeriatJM. BériatJean - Michel BériatJean M. BarriatJean Miche BeriatJean Michel BeriatJean Michel BerriatJean Michel BériatJean-Michael BeriatJean-MichelJean-Michel BeriatJean-Michel BerriatJean-Michel BérriatM. BeriatM. BériatMichel BeriatS.-M. Beriat + +621694Sergei ProkofievSergei Sergeyevich Prokofiev (Russian: Сергей Сергеевич Прокофьев, romanized: Sergey Sergeyevich Prokofiev)Russian and Soviet composer, pianist, conductor and music writer. +Born: April 23, 1891 (Sontsovka, Ekaterinoslav Province, Russian Empire) At present Sontsivka, Ukraine, +Died: March 05, 1953 (Moscow, USSR) At present Moscow, Russian Federation. + +He mastered numerous musical genres and came to be admired as one of the greatest composers of the 20th century. +Alternative transliterations of his name include Sergey, Sergej or Serge, and Prokofief, Prokofieff or Prokofiew.Needs Votehttps://web.archive.org/web/20230823150042/http://www.sprkfv.net/https://en.wikipedia.org/wiki/Sergei_Prokofievhttps://imslp.org/wiki/Category:Prokofiev,_Sergeyhttps://www.britannica.com/biography/Sergey-Prokofievhttps://www.imdb.com/name/nm0006241/https://www.naxos.com/person/Sergey_Prokofiev_20990/20990.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102698/Prokofiev_SergeyC. ПрокофьевOrchestre du Théâtre BolchoiPokofjevProfokievProkfievProkifievProkof'evProkofevProkoffiefProkoffieffProkoffievProkofiefProkofieffProkofieff S.Prokofieff, S. S.Prokofieff, S.S.ProkofievProkofiev SergeiProkofiev, SergeiProkofiev, SergejProkofiev, SergeyProkofiewProkofjefProkofjeffProkofjevProkofjewProkofjievProkofjiewProkofleffProkokievProkotievProkove'evProkovfievProkoviefProkovieffProkovievProkoviewProkovoffProkófievS ProkofievS, ProkofieffS. Prokof'evS. ProkofevS. ProkoffiefS. ProkofieffS. ProkofievS. Prokofiev = С. ПрокофьевS. ProkofiewS. ProkofijevS. ProkofiëfS. ProkofjevS. ProkofjevasS. ProkofjevsS. ProkofjewS. ProkofyevS. ProkoieffS. ProkoviefS. ProkovievS. S. ProkofievS. S. ProkofiewS. S. ProkofjevS.ProkofieffS.ProkofievS.Prokofiev = С.ПрокофьевS.ProkofyevS.Prokov'evS.S. PrkofievS.S. ProkofievS.S.ProkofievS.プロコフィエフSegei ProkofievSerge ProkofieffSerge ProkofievSerge ProkoffieffSerge ProkofiefSerge ProkofieffSerge ProkofievSerge ProkofiewSerge ProkofjefSerge ProkofjeffSerge ProkofjevSerge ProkofjewSerge ProkovieffSerge ProkovievSerge S. ProkofieffSerge S. ProkofievSerge S. ProkofiewSergeY ProkofievSergei ProfofievSergei Prokof'evSergei ProkofiefSergei ProkofieffSergei ProkofieftfSergei Prokofiev, Jr.Sergei ProkofievffSergei ProkofiewSergei ProkofijewSergei ProkofjefSergei ProkofjevSergei ProkofjewSergei ProkofjiewSergei ProkovieffSergei ProkovievSergei ProkovjevSergei S. ProkofievSergei S. ProkofiewSergei Sergeevich Prokof'evSergei Sergeevich ProkofievSergei Sergeievich ProkofievSergei Sergeievitch ProkofieffSergei Sergeievitch ProkofievSergei Sergejewitsch ProkofjewSergei Sergeyevich ProkofievSergei Serguelevitch ProkofiefSergei Sergueyevich ProkofievSergei TaneïevSergeij ProkofiewSergeij ProkofjevSergeij ProkofjewSergej ProfokjevSergej Prokof'evSergej ProkofevSergej ProkofieffSergej ProkofievSergej ProkofiewSergej ProkofijevSergej ProkofjevSergej ProkofjewSergej ProkofjiewSergej ProkovievSergej ProkoviewSergej ProkovjevSergej ProkowjewSergej S. ProkofevSergej S. ProkoffiewSergej S. ProkofievSergej S. ProkofiewSergej S. ProkofjevSergej S. ProkofjewSergej S.ProkofjevSergej Sergeevic ProkofievSergej Sergejevič ProkofjevSergej Sergejovič ProkofievSergej. S. ProkofiewSergejs ProkofjevsSergejus ProkofjevasSerges ProkofieffSergey (Sergeyevich) ProkofievSergey ProkofieffSergey ProkofievSergey ProkofiewSergey ProkofyevSergey ProkovievSergey Sergeevich ProkofievSergey Sergeyevich ProkofievSergeï ProkofievSergeï ProkofjewSerghei ProkofievSergheij ProkofievSergheri ProkofievSergie ProkofievSergiej ProkofiewSergio ProkofiefSergio ProkofieffSergio ProkofievSergio ProkovievSergiusz ProkofiewSergue ProkofievSerguei ProkofievSerguei ProkovievSerguei ProkófievSerguei Sergueievitch ProkofievSergueï ProkofieffSergueï ProkofievSergueï ProkovievSerguéi ProkófievSiergiej ProkofiewSz. ProkofievSèrgi ProkofievSérgio ProkofiefΣέργιος ΠροκόφιεφΣεργκέι ΠροκόφιεφПрокофиевПрокофьевС .ПрокофьевС. ПРОКОФЬЕВС. ПроковьевС. Прокоф'євС. ПрокофевС. ПрокофиевС. ПрокофйевС. ПрокофьевС. Прокофьев.С. ПрокофьевaС. ПрокофјевС. С. ПрокофьевС.ПрокофьевС.С. ПрокофьевСС ПрокофьевСергей ПрокофиевСергей ПрокофьевСергей Сергеевич ПрокофьевСергеј Прокофјевס. פרוקופיבסרגי פרוקופייבפרוקופובפרוקרובייבسيرج بروكوفييڤセルゲイ・プロコフィエフセルゲイ・プロコフィエフプロコフィエフ普罗科菲耶夫 + +621741Birgit MeyerClassical vocalist.CorrectBirgit E. MeyerChamber Choir of Europe + +621761Clio GouldClio Gould1st Violin of the [b]London Sinfonietta[/b] and Artistic Director of the [b]BT Scottish Ensemble[/b]. Sister of [a1587272].Needs Votehttps://en.wikipedia.org/wiki/Clio_GouldC GouldRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraLondon SinfoniettaThe BT Scottish EnsembleThe Valve Bone Woe EnsembleThe Pale Blue OrchestraThe Oculus Ensemble + +621802Bill SwindellWilliam J. SwindellAmerican jazz and blues saxophonist, married to [a4303021]. CorrectB. SwindellSwindellLucky Millinder And His Orchestra + +622065Burton LaneBurton LevyAmerican composer and lyricist. +Born: February 2, 1912 in New York City, New York +Died: January 5, 1997 in New York City, New York + +He was known for his Broadway musicals, [i]Finian's Rainbow[/i] (1947) and [i]On a Clear Day You Can See Forever[/i] (1965). Lane mainly wrote music for films, writing for more than 30 movies. His best-known songs include "Old Devil Moon," "How Are Things in Glocca Morra?", "Too Late Now," "How About You?", and the title song from "On a Clear Day." He is one of the few American composers to have proved equally adept and successful in writing for both Broadway and motion pictures. + +Lane is credited with discovering the 11-year-old Frances Gumm ([a=Judy Garland]). He caught her sisters' act at the Paramount theater in Hollywood. The sisters, Susie and Mary Jane, brought on their younger sister, Frances, who sang "Zing Went the Strings of My Heart". Lane immediately called Jack Robbins, head of the music department at MGM, and told her he'd just heard a great new talent. + +Inducted into the Songwriter's Hall of Fame in 1975.Needs Votehttps://en.wikipedia.org/wiki/Burton_Lanehttps://www.songhall.org/profile/Burton_Lanehttps://www.imdb.com/name/nm0485263/https://adp.library.ucsb.edu/names/104446B LaneB. BlaneB. LaineB. LaneB. LangB. LatreB.BlaneB.ILaneB.LaneBarton LaneBerten LaneBurt LaneBurto LaneBurtonBurton & LaneBurton - LaneBurton LandBurton Lane, b Morris Hyman KushnerBurton LangBurton, LaneBurton-LaneBurton/LaneBurtonL-aneD. LaneH. LaineH. LaneL. BurtonL.BurtonLainLaineLanLan HarburtLandLaneLane BertonLane BurtonLane, BurtonLangeLayneLeneLoneRalph BurtonЛейн + +622341Gloria SklerovGloria Jean SklerovAmerican songwriter, record producer and music arranger. +She has been a professional songwriter for over 25 years. +She has had songs cut by many top artists including [a=Kenny Rogers], [a=Cher], [a=Kim Carnes] and [a=Jeffrey Osborne]. She has won numerous Emmys and BMI awards. +She charted fifteen times between 1970 and 1993. She had a #1 song with "I Just Fall in Love Again" by Anne Murray in 1979 (co-written by Stephen Dorff, Larry Herbstritt, and Harry Lloyd). He also hit #2 with "I Believe I'm Gonna Love You" by Frank Sinatra in 1975 (co-written by Harry Lloyd). Needs Votehttps://www.weddingmusiccentral.com/about-ushttps://www.imdb.com/name/nm3710297/https://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Gloria+Sklerov+jean&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=bmiD. SklerovG SklerovG. SkerlovG. SkieranG. SkkranG. SkleranG. SklerevG. SklerofG. SkleroffG. SkleronG. SklerovG. SkleroyG. SklevorG.SklerovGloria EkrerovGloria J. SklerovGloria SkelerovGloria SkerlovGloria SkleronGloria SklerooGloria SklerowGloria SkleroyM. SklerovMsklerovSkelrovSkerlovSkierovSklernSklerodSklerouSklerovSklerowSkleroySklervoДж. СклеровДж.Склеров + +622492Claude DeMetriusClaude DemetriusBorn Aug. 3, 1916. Died May 1, 1988. He was born in Bath, Maine. He was an African-American songwriter.Needs Votehttps://adp.library.ucsb.edu/names/359768Big ClaudeC DeMetriusC DemetriusC DemitriusC. De MetriousC. De MetriusC. De MetruisC. De NitriusC. De. MetruisC. DeMetrisC. DeMetriusC. DeMetruisC. DeMetrusC. DementriusC. DemerriusC. DemetriesC. DemetriusC. DemetruisC. DemitrisC. DemitriusC. DemmerruisC. L. DemetriusC. MetriusC. de MetriusC. de MetruisC. deMetriusC.De MetriusC.DemetriusC.deMetriusC.デミトリュウスClaud De MetriusClaud DeMetriusClaud DemetruisClaude De MatriusClaude De MentriusClaude De MetrisClaude De MetriusClaude De MetruisClaude De MeturisClaude DeMetruisClaude DeMotriusClaude DemetriousClaude DemetriusClaude DemetruisClaude DemitriusClaude DemitruisClaude MetruisClaude MétriusClaude de MetriusClaude de MetruisClaude de MitriusClaude de MétriusClaude-DeMetruisClaude/MetroisClauden De MetruisClauden DeMetruisClude DemetriusClyde DemetriusD eMetriusD. DemetriusDalmeriusDeDe MeitriusDe MetrisDe MetriusDe Metrius ClaudeDe Metrius, ClaudeDe MetruisDe MettriusDe MetuisDe MitriusDe-MetriusDe-MetruisDeMertiusDeMeteriusDeMetriesDeMetrisDeMetriuDeMetriuisDeMetriusDeMetruisDeMitriusDelietruisDemertriusDemetriiusDemetriousDemetrisDemetriueDemetriusDemetrius, CDemetruisDemetrusDemitriousDemitriusDemétriusDenetrinsDetriusDetruisDimitriusDmetrusDometriusDunetriusG. DemetriusMetriusS. Demetriusde Meteriusde Metriusde Metrius / Claudede MetruisdeMetrius + +622528Per HammarströmSwedish classical violinistCorrectPer HammarstromSveriges Radios Symfoniorkester + +622613Robert WolinskyAmerican harpsichord and keyboard player.Needs Votehttps://www.oslmusic.org/bios/robert-wolinsky/Orchestra Of St. Luke'sOrpheus Chamber OrchestraSt. Luke's Chamber Ensemble + +622614Mitsuru TsubotaViolinist. Member of the [b]St. Luke's Chamber Ensemble[/b] since 1989. Co-founder and Principal Violin of the [b]Strathmere Ensemble[/b]. Ms. Tsubota performed with [url=https://www.discogs.com/artist/The+Tokyo+Symphony+Orchestra]the Tokyo Symphony Orchestra[/url], [b]Hiroshima Symphony Orchestra[/b] (in 1983) and [b]Primavera String Quartet[/b]. She also has served as a concertmaster of Westchester Oratorio Society's choral-orchestral performances.Needs VoteAmerican Composers OrchestraOrchestra Of St. Luke'sSt. Luke's Chamber Ensemble + +622616Dennis GodburnAmerican classical bassoon, dulcian and recorder player; born 6 February 1949 and died 10 May 2011.Needs VoteGodburnOrchestra Of St. Luke'sOrpheus Chamber OrchestraMozzafiatoThe Waverly ConsortSmithsonian Chamber OrchestraBoston BaroqueThe Bach EnsembleThe New York Renaissance BandAmadeus WindsSt. Luke's Chamber EnsembleBrewer Chamber OrchestraBoston Early Music Festival OrchestraThe Smithsonian Chamber Players + +622617Myron LutzkeClassical cellist. + +Principal cello of the [a526576]Needs Votehttps://www.oslmusic.org/bios/myron-lutzke/https://www.linkedin.com/in/myron-lutzke-bb297212/Myron LutskeOrchestra Of St. Luke'sSmithsonian Chamber OrchestraThe Handel & Haydn Society Of BostonThe Bach EnsembleThe Loma Mar QuartetSt. Luke's Chamber EnsembleThe Aulos EnsembleBrewer Chamber OrchestraThe Mozartean PlayersTheatre Of Early MusicBoston Early Music Festival OrchestraThe New City EnsembleRutgers Musica Raritana + +622618Krista Bennion FeeneyAmerican classical violinist, born in Menlo Park, California.Needs Votehttp://www.fournations.org/feeney.htmKrist Bennion FeeneyKrista BennionKrista FeeneyOrchestra Of St. Luke'sThe Loma Mar QuartetSteve Kuhn With StringsSt. Luke's Chamber EnsembleThe Four Nations EnsembleThe Hanoverian Ensemble + +622619Louise SchulmanAmerican viola and violin player from New York City. Co-principal violist and co-founding member of NYC based ensemble [a526576]. She is performing on a variety of early stringed instruments including baroque viola and violin, vielle, cittern, viola d’amore and viols.Needs VoteLouise ShelmanLouise ShulmanLuise SchelmanOrchestra Of St. Luke'sThe Waverly ConsortThe Long Island Chamber Ensemble of New YorkSt. Luke's Chamber EnsembleBrewer Chamber Orchestra + +622972Vline BuggyThis pseudonym has been used by two French songwriters, producers and siblings: [b]Evelyne[/b] and [b]Liliane[/b], who are daughters of [a=Géo Koger]. +- Evelyne Yvonne Konyn: born September 28, 1926 - died April 14, 1962. +- Liliane Konyn: born May 2, 1929. +After Evelyne died, Liliane continued to use the pseudonym alone and has written ≃150 songs for [a=Claude François], ≃90 songs for [a=Hugues Aufray] and more for a lot of other artists. One of her songs won the Eurovision song contest in 1973: "[m=119680]".Needs Votehttps://fr.wikipedia.org/wiki/Vline_BuggyB. BuggyB. VlineBoogyeBuffyBuggiBugguyBuggyBuggy VlineBuguyBugyBиrиE. BuggyEvelyne Koger - Vline BuggyF. BuggyG. BuggyJ. BuggyJ. V. BugjM. BuggyOline-BuggyR. AlainS. BuggySuggyU. BuggyUline - BuggyUline BuggyV BuggyV. BuggyV. BaggyV. BoggyV. BuddyV. BuggV. BugguV. BugguyV. BuggyV. BugyV. LinebuggyV.BuggyVilne BuggyVine BuggyVine-BuggyVl. BuggyVlime BuggyVlin / BuggyVlin BuggyVlin-BuggyVlina BuggyVlinc - BuggyVlineVline & BuggyVline - BuggyVline - BuggylVline / BuggyVline BuggiVline BugglVline BugyVline Et BuggyVline et BuggyVline, BuggyVline-BuggyVline.Buggy.Vline/BuggyVlino BuggyVlione & BuggyVlyne BuggyVlyne Et BuggyVlynn BuggyWline BuggyY. Buggyv. buggyv.buggyLiliane ChevallierLiliane KonynWinnie Peg + +623105Mack GordonMorris GittlerAmerican composer and lyricist, especially of songs for the stage and film. + +Born: 21 June 1904, Warsaw, Russian Empire (now Poland). +Died: 28 February 1959 in New York City, New York, USA (aged 54). + +He was nominated for the best original song Oscar nine times, including six consecutive years between 1940 and 1945, and won the award once, for "You'll Never Know", which has proved amongst his most enduring and remains popular in films and television commercials. "At Last" is perhaps his most famous song today. + +Gordon was born in Warsaw and moved to New York City as a child. He appeared as a vaudeville actor and singer in the late 1920s and early 1930s but his songwriting talents were always paramount. He formed a partnership with English pianist [a=Harry Revel] that lasted throughout the 1930s. In the 1940s he worked with a string of other composers including [a=Harry Warren (2)]. +Needs Votehttp://en.wikipedia.org/wiki/Mack_Gordonhttp://www.imdb.com/name/nm0330418https://films.discogs.com/credit/334772-mack-gordonhttps://adp.library.ucsb.edu/names/105071CondonCordonCordon MackD. MackG. MachG. MackGardenGirdonGodronGoldGordGordanGordenGorden MackGordeonGordnGordonGordon MGordon MackGordon ·Gordon, MGordon, M.Gordon, MackGordonRevelGrdonH. GordonHarry GordonI. GordonJ. GordonJack GordonJordanJordonKordonM GardonM GordonM. GordonM. GordanM. GordenM. GordonM. GordorM. JordanM.GordenM.GordonM> GordonMGordonMa GordonMac GordonMacGordonMackMack GordenMack GordnerMack GorgonMack, GordonMackgordonMackmnonMark GordMark GordonMark GoroonMat GordonMatt GordonMax GordonMax GormanMc GordenMc GordonMcGordanMcGordeonMcGordonMorganMr GordanN. GordonNick GordonPalmerR. GordonT. GordonT. M. GordonT. M.GordenT.M. GordonT.M.GordonW. GordonW. MackWarren GordonГордонМ. Гордон + +623150Rozemarie HeggenRozemarie HeggenRozemarie Heggen studied double bass at the conservatories of Maastricht, Amsterdam and The Hague. During her studies she has been the solo bassist of the National Youth Orchestra of the Netherlands and the Jeunnesses Musicales Worldorchestra. +She has been working as a free-lance musician in all the main orchestras, chamber orchestras and contemporary music groups in the Netherlands, such as The Royal Concertgebouw Orchestra, Nieuw Sinfonietta Amsterdam, Asko/Schonberg Ensemble. +Nowadays she is mainly working as a performer of contemporary music and as an improvising musician. She has been a member of experimental groups like the Maarten Altena Ensemble, The Electric Aardvark and Het Nieuw Ensemble. +Needs VoteHeggenRosemarie HeggenRozemarieRozemaryThe ExNieuw Sinfonietta Amsterdam + +623169V DubsCorrectV-Dubs + +623276Raymond TuniaJazz pianistNeeds Votehttps://adp.library.ucsb.edu/names/347959Ray TuniaRay TunioTuniaLucky Millinder And His Orchestra + +623293Felix Mendelssohn-BartholdyJakob Ludwig Felix Mendelssohn BartholdyBorn February 3, 1809 in Hamburg, died November 4, 1847 in Leipzig. German composer, pianist, organist and conductor of the early Romantic period. Mendelssohn's compositions include symphonies, concertos, piano music and chamber music. + +At nine Mendelssohn made his public debut as a pianist, at ten he attended the Berlin Singakademie. +Very precocious and industrious composer, between 1820 and 1824 he had already written numerous works. +He made numerous trips at home and abroad, in 1829 he stayed for the first time in London, gaining praise as a piano concert player and as an author. +In the same year, in Berlin he reproduced [a95537]'s St.Matthew Passion, removing it from oblivion. In 1835 he moved to Leipzig concert director of the [a522210], actively contributing to city life. also in Leipzig, in 1842, he founded a music conservatory. +Mendelssohn died suddenly, suffering from apoplexy at the age of thirty-eight. +His sister [a1092642] contributed six compositions to the first two songbooks published under his name (Op. 8 Nos. 2/3/12, Op. 9 Nos. 7/10/12). +Grandson of philosopher [a4595780].Needs Votehttps://en.wikipedia.org/wiki/Felix_Mendelssohnhttps://www.famouscomposers.net/felix-mendelssohnhttps://www.wikiwand.com/de/Felix_Mendelssohn_Bartholdyhttps://www.britannica.com/biography/Felix-Mendelssohnhttps://www.biography.com/musician/felix-mendelssohnhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102614/Mendelssohn-Bartholdy_Felixhttps://www.allmusic.com/artist/felix-mendelssohn-mn0000155453B. MendelsonB. MendelssohnB.F. MendelssohnBartholdyBartholdy MendelssohnBartholdy, Felix MendelssohnBeethovenF B MendelssohnF MendelssohnF Mendelssohn / BartholdyF- Mendels.-BartholdyF. MendelssohnF. Mendelssohn BartholdyF. Mendelssohn-BartholdyF. B. MendelssohnF. BartholdyF. M. BartholdF. M. BartholdyF. Medelssohn-BartholdyF. MendelhssonF. MendelsohnF. Mendelsohn BartholdyF. Mendelsohn BartoldyF. Mendelsohn-BartholdyF. MendelsonF. Mendelson - BartoldiF. Mendelson BartholdyF. Mendelson-BartholdyF. MendelsonasF. Mendelsonas-BartoldisF. MendelsonsF. Mendelsons-BartoldiF. Mendelss-Barth.F. MendelsshonF. MendelssohnF. Mendelssohn - BartholdyF. Mendelssohn - BartoldiF. Mendelssohn B.F. Mendelssohn BartholdiF. Mendelssohn BartholdyF. Mendelssohn-B.F. Mendelssohn-Bartholdv.F. Mendelssohn-BartholdyF. Mendelssohn-BartoldyF. MendelssonF. Mendelsson-BartholdyF. MendlesshonF. von Mendelssohn-BartholdyF. МеndelssohnF.B. MendelssohnF.M. BartholdyF.MendelsohnF.MendelssohnF.Mendelssohn BartholdyF.Mendelssohn-BartholdyF.メンデルスゾーンFElix Mendelssohn BartholdyFM BartholdyFeliks MendelsonFeliks MendelssohnFeliks Mendelssohn BartholdyFeliks Mendelssohn-BartholdyFeliksas MendelsonasFelis Mendelssohn-BartholdyFelixFelix B. MendelssohnFelix Bartholdy MendelssohnFelix Bartholy MendelssohnFelix J. L. Mendelssohn-BartholdyFelix J.L. Mendelssohn BartholdyFelix M. BartholdyFelix M.-BartholdyFelix Medelssohn BartholdFelix Medelssohn BartholdyFelix Mendellsohn BartholdiFelix MendelsohnFelix Mendelsohn BartholdyFelix Mendelsohn-BartholdyFelix MendelsonFelix MendelsshonFelix MendelssohFelix MendelssohmFelix MendelssohnFelix Mendelssohn - BartholdyFelix Mendelssohn B.Felix Mendelssohn BartholdFelix Mendelssohn BartholdiFelix Mendelssohn BartholdyFelix Mendelssohn BartholfyFelix Mendelssohn BartoldiFelix Mendelssohn BartoldyFelix Mendelssohn – BartholdyFelix Mendelssohn 
BartholdyFelix Mendelssohn-Felix Mendelssohn-BartoldiFelix Mendelssohn-BartoldyFelix Mendelssohn/BartholdyFelix MendelssonFelix Mendelsson-BartholdyFelix MenderlssohnFelix MendessohnFelix MendlessohnFelix MendolssohnFelix MenelddohnFelix MenhelsonFelix MenselssohnFelix Menselssohn-BartholdyFelix mendelssohnFelix-Mendelssohn-BartholdyFeliz MendelssohnFr. MendelssohnFr. Mendelssohn-BartholdyFriedrich Mendelssohn-BartholdyFélix MendelssohnFélix Mendelssohn BartholdyFélix Mendelssohn-BartholdyFélix MendelssonFélix MendessohnFēlikss Mendelsons-BartoldiFēlikss MendelszonsJ. L .F. Mendelssohn-BartholdyJ. L. F. MendelssohnJ.L. Mendelssohn-BartholdyJ.L.F. Mendelssohn-BartholdyJacob Ludwig Felix MendelssohnJakob Ludwig Felix MendelssohnJakob Ludwig Felix Mendelssohn BartholdyJakob Ludwig Felix Mendelssohn-BartholdyJohan Felix MendelssohnMENDELSSOHNMandelsonMandelssohnMedelsohnMedelssohnMehndelssohnMemdelsohnMend.-Barth.MendehlsonMendehlssonMendellsohnMendellsonMendelshonnMendelsohnMendelsohn BartholdyMendelsohn, F.Mendelsohn-BartholdyMendelsohn-Bartholdy, F.MendelsonMendelsoohnMendelssdohnMendelsshonMendelssohMendelssohmMendelssohnMendelssohn - BartholdyMendelssohn / BartholdyMendelssohn BartholdyMendelssohn Bartholdy Felix JLMendelssohn Bartholdy, FelixMendelssohn BartoldyMendelssohn F.Mendelssohn FelixMendelssohn, F.Mendelssohn, FelixMendelssohn-Barth.Mendelssohn-BartholdiMendelssohn-BartholdyMendelssohn-Bartholdy FelixMendelssohn-Bartholdy, FelixMendelssohn-BartoldyMendelssohn/BartholdyMendelssonMendelsson - Bartholdy, FelixMendelsson BartholdyMendelsson-BartholdyMendelssöhnMendeshwneMendhelssonMendlessohnMendlssohnMèndelssohnelix Mendelssohn Bartholdyv. MendelsohnΜέντελσονМенделсонМендельсонМендельсон БартольдиМендельсон Ф.Мендельсон ФеликсМендельсон-БартольдиМендельсонъ-БартольдиФ. MeндeльсoнФ. МедельсонФ. МенделсонФ. МендельсонФ. Мендельсон БартольдиФ. Мендельсон-БартольдiФ. Мендельсон-БартольдиФ.МендельсонФеликс МедельсонФеликс МендельсонФеликс Мендельсон - БартольдиФеликс Мендельсон-БартольдиФеликс Мендельсон-Бфртольдиמנדלסוןפליקס מנדלסוןمندلسونフェリックス・メンデルスゾーンフェリックス・メンデルスゾーン = Felix Mendelssohnフェリックス・メンデルスゾーン=バルトルディフェリックス・メンデルスゾーンメンテルスゾンメンデルスゾ-ンメンデルスゾーンメンデルゾーンメンデレスゾーンヤコブ・ルートヴィッヒ・フェリックス・メンデルスゾーン・バルトルディヤーコブ・ルードヴィヒ・フェリックス・メンデルスゾーン孟德爾遜孟德爾頌曼德爾遜费里克斯·门德尔松门德尔松멘델스존 + +623692Michel BarreMichel BarréFrench trumpet player.Needs VoteM. BarréMichel BarréOrchestre Des Concerts LamoureuxBekummernisQuintette Magnifica + +623880Delmar "Mighty Mouth" EvansDelmar Lamont EvansCorrectD. EvansD.EvansDelmarDelmar EvansDelmar Lamont EvansEvansMighty Mouth EvansThe MouthThe Johnny Otis ShowSnatch And The PoontangsDelmar And Carla + +623979Lou StallmanLouis StallmanAmerican songwriter and producer from New York. +Born April 2, 1934. Died September 3, 2022. +Stallman charted as a songwriter thirty times in the U.S. between 1956-1982. His first hit came with "Treasure of Love" by Clyde McPhatter in 1956--it hit #15 overall and #1 on the R&B chart. At the time, Stallman was a 22-year-old cafeteria worker at the Manhattan Beach Air Force Station Exchange in New York. In 1956, he had no plans to leave his job. But soon enough, becoming a professional songwriter took over as artists such as Rosemary Clooney and Dion & the Belmonts recorded his songs. A new hit song came the next year with "Round and Round" by Perry Como, which hit #1 overall. His next biggest hit came with "It's Gonna Take a Miracle" by Deniece Williams in 1982--it was a crossover hit, hitting #10 overall, # 6 adult contemporary, and #1 R&B.Needs Votehttps://publicaffairs-sme.com/FamilyServingFamily/2022/10/14/flashbackfriday-the-associate-who-wrote-the-yankees-theme-song-and-more/A. StahlmanA. StallmanDavid StollakJ. StallmanL StallmanL. StalimanL. StallmanL. StallmenL.StallmanLo StallmanLou StahlmanLou StallmannLou StalmanLou StillmanRou StallmanS. StallmanStahlmanStallamnStallmanStallmannStalmanStellmanStillmanStilmanStollmanJoyce (35)Lou Stallman's WorldThe Group Therapists + +624196Arjan TienDutch violinist, violist and conductor. Currently Artistic Director & Chief Conductor of [a992349] / Marineband of the Royal Netherlands Navy.Needs Votehttp://www.arjantien.comhttps://www.facebook.com/arjantienconductorhttps://www.linkedin.com/in/arjan-tien-75304552/Major Arjan TienNieuw Sinfonietta Amsterdam + +624461Black & White (8)Italian project.CorrectLuca Antolini DJAndrea MontorsiRiccardo Tesini + +624538James MallinsonRecord producer, born in 1943, died Aug 24th, 2018. +He spent twelve years with the [l5320] Record Company and became a freelance classical producer in 1984. +He won his first Grammy in 1979, when he was named Classical Producer of the Year. From 2000 to 2018, he produced all releases for the [l94618] label. +Needs Votehttp://en.wikipedia.org/wiki/James_Mallinsonhttps://lso.co.uk/more/news/1031-obituary-james-mallinson-1943-2018.htmlJames Mallison + +624588AnnibaleAnnibale Giannarelliborn in Sassalbo province of Massa Carrara, Tuscany, Italy 9 may 1948Needs VoteAnnibale With I Cantori Moderni Di AlessandroniGianpiero MurattiGino GenettiGino GinettiDavid King (46)Annibale GiannarelliI Cantori Moderni di Alessandroni + +624608Celia CraigClassical oboist and cor anglais player.Needs VoteBBC Symphony OrchestraAdelaide Symphony Orchestra + +624615Shelagh SutherlandBritish pianist and harpsichord player. Also credited with synthesizer.Needs VoteLondon Philharmonic OrchestraLondon SinfoniettaAngell Piano Trio + +624749Helmut KochGerman conductor and chorus master (* 05 April 1908 in Barmen, German Empire; † 26 January 1975 in Berlin, German Democratic Republic). + +[b]For the German oboist please use [a=Helmut Koch (2)][/b] +Needs Votehttps://de.wikipedia.org/wiki/Helmut_Koch_(Musiker)https://www.bundesstiftung-aufarbeitung.de/de/recherche/kataloge-datenbanken/biographische-datenbanken/helmut-kochhttps://rsb4you.de/helmut-koch/H. KochHelmuth KochKochNationalpreisträger Helmut KochNationalpreisträger Prof. Helmut KochProf. Helmut KochГ. КохГельмут Кохヘルムート・コッホKammerorchester Berlin + +624819Cindy WalkerCindy WalkerUS songwriter. For having written over 650 songs, she was considered the greatest living songwriter of country music. She also was a singer and dancer. +Born July 20, 1918 in Mart, Texas +Died March 23, 2006 in Mexia, Texas. +For the backing vocalist appearing on country releases please use [a4520740]. +Needs Votehttps://www.countrymusichalloffame.org/hall-of-fame/cindy-walkerhttp://nashvillesongwritersfoundation.com/Site/inductee?entry_id=3223http://performingsongwriter.com/cindy-walker/http://en.wikipedia.org/wiki/Cindy_Walkerhttps://www.imdb.com/name/nm0907631/https://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=100&Main_Search_Text=Walker+Cindy&Search_Type=allhttps://adp.library.ucsb.edu/names/107390A. WalkerAndy WalkerB. WalkerC WalkerC, WalkerC. WalkerC. C. WalkerC. WalherC. WalkerC.WalkerCincy WalkerCindi WalkerCindy NaikerCindy WlakerCindy-WalkerCindy/WalkerClint WalkerG. WalkerJ. WalkerSindy WalkerW.WakerWalherWalkerWalker CindyWalker-CindyWalter CindyWh. WalkerWolkerУокерУолкерTexas Jim Lewis And His Lone Star Cowboys + +624847Herb PomeroyIrving Herbert Pomeroy III.American jazz trumpeter, flugelhornist, composer and teacher + +Born : April 15, 1930 in Gloucester, Massachusetts. +Died : August 11, 2007 in Boston, Massachusetts. +Needs VoteH. PomeroyH.PomeroyPomeroyThe Charlie Parker All-StarsThe Gary McFarland OrchestraJazz In The ClassroomThe Herb Pomeroy OrchestraOrchestra U.S.A.The Bostonian FriendsThe Serge Chaloff SextetHerb Pomery Large EnsembleRick Stepton SextetCharlie Mariano QuintetHerb Pomeroy And His StablematesThe Herb Pomeroy TrioThe Serge Chaloff Orchestra + +624848Boots MussulliEnrico (Henry) William MussulliAmerican jazz saxophonist (alto, baritone), born November 18, 1915, Milford, Massachusetts, died September 23, 1967, Norfolk, Massachusetts, USA. He is the brother of [a=Ben Mussulli]. + +Nicknames: "The Music Man from Milford,” “Mr. Jazz,” and the “Little Big Man” or "Boots". +Needs Votehttps://en.wikipedia.org/wiki/Boots_Mussullihttps://www.jazzhistorydatabase.com/content/musicians/mussulli_boots/bio.phphttps://www.allmusic.com/artist/boots-mussulli-mn0000983127/biographyhttps://news.allaboutjazz.com/boots-mussulli-mables-fablehttps://adp.library.ucsb.edu/names/333145"Boots" MussilliB. MussulliBootsBoots MussilliBoots MussuliBoots-MussulliBots MussulliBrooks MusselliH. MussulliH. MussulliniHenry "Boots" MussulliHenry (Boots) MussulliHenry MussulliMusselliMussulliMussulloStan Kenton And His OrchestraVido Musso And His OrchestraCharlie Ventura And His OrchestraThe Charlie Ventura SeptetThe Herb Pomeroy OrchestraThe Boots Mussulli QuartetThe Serge Chaloff Sextet + +624922Robert Burns (4)Scottish poet and lyricist, born 25 January 1759 in Alloway, Ayrshire, Scotland, died 21 July 1796 in Dumfries, Scotland.Needs Votehttp://www.robertburns.org/http://en.wikipedia.org/wiki/Robert_Burnshttps://adp.library.ucsb.edu/names/102250Bobby BurnsBurneBurnsHicksJ. BurnsP DR BurnsR. BrunsR. BurnsR. BurnsasR.BurnsRabbie BurnsRichard BurnsRob BurnsRob. BurnsRobbRobbie BurnsRobert BurnRobert Burns WilsonRobert BurusTrad.Trad. Robert BurnsР. БернсР. БёрнсР.БернсР.БёрисРоберт БернсРоберт БёрнсРоберта Бернса + +625259Gene AustinLemeul Eugene LucasAmerican singer and songwriter, he is considered to have been the first "crooner". +Born: June 24, 1900 in Gainesville, Texas, United States Died: January 24, 1972 in Palm Springs, California, United States. He was married to actress/singer/songwriter [a4686814]. + +After performing off and on in local taverns and in vaudeville since he was a teenager, Austin first had success as a songwriter. His 1924 song "How Come You Do Me Like You Do?" (written with his vaudeville partner, [a=Roy Bergere]) became a hit for [a=Marion Harris]. In April of that same year, [l=Vocalion] hired Austin to lend his voice anonymously to several recordings by [a=George Reneau], and by September, Austin and Reneau performed duets for [l=Edison Records]. In January 1925, another one of his songs, "When My Sugar Walks Down the Street" (written with [a=Jimmy McHugh] while both worked as staff writers for [l=Mills Music]) launched Austin's recording career with [l=Victor], when he was asked to perform it in a duet with singer [a=Aileen Stanley]. As early as the next month, Austin was again in the [l=Victor] studio for a number of solo recordings. + +Austin's soft, clear, and laid-back tenor voice was a good fit for the electronic recording technology introduced in early 1925 and made him one of the originators of the "crooner" style of singing (along with other singers of the time like "Ukuele Ike" [a=Cliff Edwards], [a=Art Gillham], [a=Nick Lucas], [a=Johnny Marvin], and [a=Rudy Vallee]). Soon, he became immensely popular. His 1927 recording of "My Blue Heaven", in particular, sold more than 5 million copies. After the depression hit and reduced record sales, Austin switched to radio. From 1932-1934 he had his own radio show performing in a trio with with bassist [a=Candy Candido] and guitarist [a=Otto Heimal] (a.k.a. "Coco"). He also performed in several movies. + +In 1978, Gene Austin was posthumously awarded a Grammy Hall of Fame Award for his 1928 recording of "My Blue Heaven". In 2005, his 1926 recording of "Bye, Bye, Blackbird" received the same honor. + +Needs Votehttps://en.wikipedia.org/wiki/Gene_Austinhttps://www.shsu.edu/~lis_fwh/book/roots_of_rock/support/crooner/Austin2.htmhttps://www.imdb.com/name/nm0042386/https://adp.library.ucsb.edu/names/104682"Uncle" GeneAugustinAustinG AustinG. AustinG. AusitnG. AustinG. StoneG.AustinGene / AshtonGene AustenBill Collins (16)George Hobson (2) + +625261Chauncey GrahamSaxophonist and trombonistNeeds VoteFats Waller & His Rhythm + +625570Don Johnson (2)US trumpeter who worked with [a=Johnny Otis].Needs VoteD. JohnsonDonald JohnsonJohnsonJohnny Otis And His OrchestraThe Don Johnson OrchestraChuck Carter Big BandThe Terry Myers Orchestra + +625642Anton StinglGerman classical guitarist, lute / mandolin player and composer (* 25 January 1908 in Konstanz, German Empire; † 06 April 2000 in Freiburg im Breisgau, Germany).Needs Votehttp://www.anton-stingl.de/https://de.wikipedia.org/wiki/Anton_StinglA. StinglA. StringlA..StinglAnton StringlM. A. StinglM. A.StinglProf. Anton Stinglアントン・スタングルWürttembergisches Kammerorchester + +625651Philip LangridgePhilip Gordon LangridgeEnglish tenor. He was born 16 December 1939 in Hawkhurst, Kent, England, UK and died 5 March 2010. Was married to [a838409]. Father of [a11455565].Needs Votehttps://www.theguardian.com/music/2010/mar/07/philip-langridge-obituaryLandgridgeLangridgeP. LangridgePhilip Landridgeフィリップ・ラングリッジThe Purcell Consort Of Voices + +625900Michael HelmrathGerman oboist and conductor (born 15 April 1954).Needs Votehttp://www.helmrath.de/Welcome.htmlhttp://www.helmrath.de/Willkommen.htmlhttps://en.wikipedia.org/wiki/Michael_HelmrathMünchner PhilharmonikerThe New Folk EnsembleBundesjugendorchester + +625930Harry MelnikoffViolinist.Needs Votehttps://www.allmusic.com/artist/harry-melnikoff-mn0001751374H. MelnikoffHarold MelnikoffHarry MeinikoffHarry MilnikoffCharlie Parker With StringsAl Cohn And His Orchestra + +626175Orchestre National De FranceFrench orchestra originally founded January 18 of 1934 and run by French broadcasting service [l=Radio France], operating under this name since 1974. + +Associated to the French public broadcasting operator, this orchestra has been known under different names since its creation: +• 1944-1964 - Named "Orchestre national de la radiodiffusion-télévision française" or "[a=Orchestre National De La R.T.F.]" or "Orchestre national de la radiodiffusion française", conducted by [a=Manuel Rosenthal] (1944-1947), [a=Roger Desormiere] (1947-1951), [a=Maurice Le Roux] (1960-1964). + +• 1964-1974 - Renamed "Orchestre national de l'office de la radiodiffusion-télévision française", "Orchestre national de France" or "[a=Orchestre National De L'ORTF]", conducted by [a=Maurice Le Roux] 1964-1967), [a=Jean Martinon] (1968-1973), [a=Sergiu Celibidache] (1973-1974). + +• 1974 - Renamed "Orchestre national de Radio France" or "Orchestre national de France", conducted by [a=Lorin Maazel] (1987-1991), [a=Charles Dutoit] (1991-2001), [a=Kurt Masur] (2002-2008), [a=Daniele Gatti] (2008-).Needs Votehttps://en.wikipedia.org/wiki/Orchestre_National_de_Francehttps://www.maisondelaradio.fr/concerts-classiques/orchestre-national-de-francehttps://www.facebook.com/orchestrenationaldefrance/"Orchestre National", Paris"Orchestre National", Paris , DasChamber Orchestra Of Radio Diffusion FrançaiseChamber Orchestra Of The French Radio & TelevisionChamber Orchestra Of The O.R.T.FChamber Orchestra Of The O.R.T.F.Coros Y Orquesta Nacional De FranciaDas "Orchestre National" ParisDas "Orchestre National", ParisDas Französische National Sinfonie-OrchesterDas Orchestre National ParisDas Orchestre National, ParisDas «Orchestre National», ParisDe La Radio Télévision FrançaiseDen Fransk Nationalradios SymfoniorkesterDen Franske Nationalradios SymfoniorkesterEnsemble Instrumental De L'Orchestre National De FranceFrance National Radio Symphony Orchestra, TheFranska Nationalradions OrkesterFranska Nationalradions Orkester, ParisFranz. National SinfonieorchesterFranzosisches National-symphonie OrchesterFranzösisches National-Symphonie OrchesterFrench National OrchestraFrench National Orchestra ParisFrench National Radio & Television OrchestraFrench National Radio And Television OrchestraFrench National Radio Broadcasting OrchestraFrench National Radio Diffusion OrchestraFrench National Radio OrchestraFrench National Radio Orchestra & ChorusFrench National Radio Orchestra (Eight Cellos)French National Radio Orchestra (O.R.T.F.)French National Radio Orchestra (Paris)French National Radio Orchestra, TheFrench National Radio and Television OrchestraFrench National Radio-Television OrchestraFrench National Radion OrchestraFrench National Symphony OrchestraFrench National Symphony Orchestra, TheFrench Natl. Radio Orch.French Radio & Television OrchestraFrench Radio & Television Philharmonic OrchestraFrench Radio National OperaFrench Radio National OrchestraFrench Radio National Symphony OrchestraFrench Radio OrchestraFrench Radio PhilharmonicJeanne-Marie Darré, Orchestre National De La Radiodiffusion FrançaiseL' Orchestre National De FranceL'Ensemble National De FranceL'ORFT (Paris)L'Orchestre De La Radio-Télévision FrancaiseL'Orchestre De La Radiodiffusion FrancaiseL'Orchestre De La Radiodiffusion FrançaiseL'Orchestre Et Le Choeurs De La Radiodiffusion FrançaiseL'Orchestre Lyrique De L'Office De Radiodiffusion-Télévision FrançaiseL'Orchestre NationalL'Orchestre National De FranceL'Orchestre National De L'ORTF, ParisL'Orchestre National De La R.T.F.L'Orchestre National De La RTFL'Orchestre National De La Radiodiffusion FrancaiseL'Orchestre National De La Radiodiffusion FrançaiseL'Orchestre National O.R.T.F.L'Orchestre National de la R.T.F.L'Orchestre National de la Radiodiffusion FrancaiseL'Orchestre National de la Radiodiffusion FrançaisL'Orchestre National de la Radiodiffusion FrançaiseL'Orchestre National, ParisL'Orchestre Nationale De FranceL'Orchestre Radiodiffusion FrancaiseL'Orchestre Symphonique NationaleL'ensemble Instrumental de France*L'orchestre National De La R.T.F.Matrise Et Orchestre De Chambre De L'O.R.T.F.Members Of The French National Radiodiffusioin OrchestraMembers Of The Orchestre National De FranceNacionalni Orkestar Francuske Radio TelevizijeNational Choir & Orchestra Of FranceNational De La Radiodiffusion Television FrancaiseNational OrchestraNational Orchestra (ORTF)National Orchestra Of FranceNational Orchestra Of French RadioNational Orchestra Of The French BroadcastingNational Orchestra Of The French RadioNational Orchestra Of The French Radio And TelevisionNational Orchestra Of The French Radio And Television Service (O.R.T.F.)National Orchestra Of The O.R.T.F.National Orchestra of the O.R.T.F.National Radio OrchestraNational Symphony OrchestraNational, ParisNationalorchester des Französischen RundfunksNouvel Orchestre Philharmonic De Radio FranceNouvel Orchestre Symphonique De FranceO.R.T.F National Orchestra, ParisO.R.T.F. National OrchestraO.R.T.F. Symphony OrchestraONRF Orchestra ParisORTFORTF OrchestraOrch. National De La Radiodiffusion FrançaiseOrch. National De La Rdf.Orch. National Et Choeurs De La Radiodiffusion FrançaiseOrchester National De La R.D.F.Orchester der Radiodiffusion FrancaisOrchestraOrchestra Della Radiotelevisione FranceseOrchestra NationalOrchestra National De FranceOrchestra National De L'O.R.T.F.Orchestra National De La R.T.F.Orchestra National De La Radiodiffusion FrancaiseOrchestra National De La Radiodiffusion FrançaiseOrchestra National, ParisOrchestra Nationale De FranceOrchestra Nationale Della Radio Televisione FranceseOrchestra Nazionale Della Radio FranceseOrchestra Nazionale Della Radio Televisione FranceseOrchestra Nazionale Di ParigiOrchestra Nazionale della Radiotelevisione FranceseOrchestra Națională a Radiodifuziunii FrancezeOrchestra Of Radiodiffusion FrançaiseOrchestra Of The French National RadioOrchestra Radio-Symphonic De Paris Of The Radio Orchestra L'Orchestre Radiodiffusion FrançaiseOrchestra Simfonică ORTFOrchestra Symphonique Choeurs De ParisOrchestra Symphonique FrancaisOrchestra națională a Radioteleviziunii FrancezeOrchestra națională a Radioteleviziunii francezeOrchestra of French RadioOrchestre De La Radiodiffusion FrançaiseOrchestre National De L'O.R.T.F.Orchestre De Chambre De L'O.R.T.F.Orchestre De Chambre De L'ORTFOrchestre De Chambre De La R.T.F.Orchestre De Chambre De La RadioOrchestre De Chambre Le L'O.R.T.F.Orchestre De FranceOrchestre De L' ORTFOrchestre De La Radiodiffusion FrancaiseOrchestre De La Radiodiffusion FrançaiseOrchestre Du Theatre National De OperaOrchestre Lyrique De L'ORTFOrchestre NationalOrchestre National De La RTFOrchestre National De La Radiodiffusion FrançaiseOrchestre National De I'O.R.T.F.Orchestre National De L' O.R.T.F.Orchestre National De L'O.R.T. F.Orchestre National De L'O.R.T.FOrchestre National De L'O.R.T.F.Orchestre National De L'ORTFOrchestre National De L'ORTF, ParisOrchestre National De L'Office De Radiodiffusion-Television FrançaiseOrchestre National De L'Office De Radiodiffusion-Télévision FrançaiseOrchestre National De L'Office De Radiodiffusion-Télévision Française (ORTF)Orchestre National De L'Office De Radioffusion-Television FrançaiseOrchestre National De L'OrtfOrchestre National De L'Ortf, ParisOrchestre National De La Radiodiffusion FrançaiseOrchestre National De La FranceOrchestre National De La O.R.T.F.Orchestre National De La ORTFOrchestre National De La R.D.FOrchestre National De La R.D.F.Orchestre National De La R.T.FOrchestre National De La R.T.F.Orchestre National De La R.T.F. ParisOrchestre National De La RDFOrchestre National De La RTFOrchestre National De La RTF, ParisOrchestre National De La Radio-Diffusion-Télévision Française, ParisOrchestre National De La Radio-television Française (RFT)Orchestre National De La RadiodiffusionOrchestre National De La Radiodiffusion FrancaisOrchestre National De La Radiodiffusion FrancaiseOrchestre National De La Radiodiffusion FranceOrchestre National De La Radiodiffusion Franc̦aiseOrchestre National De La Radiodiffusion FrançaiseOrchestre National De La Radiodiffusion Française,Orchestre National De La Radiodiffusion Television FrancaiseOrchestre National De La Radiodiffusion Television FrançaiseOrchestre National De La Radiodiffusion Television Française ParisOrchestre National De La Radiodiffusion Television Française, ParisOrchestre National De La Radiodiffusion Télévision FrançaiseOrchestre National De La Radiodiffusion-Television FrancaiseOrchestre National De La Radiodiffusion-Télévision Francaise, ParisOrchestre National De La Radiodiffusion-Télévision FrançaiseOrchestre National De La Radiodiffusion-Télévision Française ParisOrchestre National De La Radiodifusion FrançaiseOrchestre National De La Radiodifusion Française*Orchestre National De La Radioffusion FrancaiseOrchestre National De La Radioffusion FrançaiseOrchestre National De La Radiofiffusion FrancaiseOrchestre National De La radiodiffusion-Télévision FrançaiseOrchestre National De Orchestre National De L'O.R.T.F.Orchestre National De Radio FranceOrchestre National De Radiodiffusion FrançaiseOrchestre National De l'O.R.T.FOrchestre National De l'O.R.T.F.Orchestre National De l'ORTFOrchestre National De l'ORTF*Orchestre National De la R.T.FOrchestre National De la Radiodiffusion FranceOrchestre National De la Radiodiffusion FrançaiseOrchestre National De la Radiodiffusion-Télévision FrançaiseOrchestre National De la Radiofusion FrançaiseOrchestre National Des FranceOrchestre National Et Choeurs De L'O.R.T.F.Orchestre National Et Choeurs De La Radiodiffusion FrançaiseOrchestre National Et Les Choeurs De La Radiodiffusion FrançaiseOrchestre National ParisOrchestre National PhilharmoniqueOrchestre National de FranceOrchestre National de L'O.R.T.F.Orchestre National de L'O.R.T.F..Orchestre National de l'O.R.T.F.Orchestre National de l'O.r.t.f.Orchestre National de l'ORFFOrchestre National de l'ORTF, ParisOrchestre National de la ORTFOrchestre National de la R.D.F.Orchestre National de la R.T.F.Orchestre National de la RDFOrchestre National de la RTFOrchestre National de la RTF, ParisOrchestre National de la Radio-Télévision FrançaiseOrchestre National de la RadiodiffusionOrchestre National de la Radiodiffusion - Télévision FrançaiseOrchestre National de la Radiodiffusion - Télévision Française ParisOrchestre National de la Radiodiffusion - Télévision Française, ParisOrchestre National de la Radiodiffusion FrancaisOrchestre National de la Radiodiffusion FrancaiseOrchestre National de la Radiodiffusion FranceOrchestre National de la Radiodiffusion Franc̦aiseOrchestre National de la Radiodiffusion FrançaiseOrchestre National de la Radiodiffusion Télévision FrancaiseOrchestre National de la Radiodiffusion Télévision FrançaiseOrchestre National de la Radiodiffusion françaiseOrchestre National de la Radiodiffusion-Télévision FrançaiseOrchestre National de la Radiodifusion FrancaiseOrchestre National de l’O.R.T.F.Orchestre National de l’Office de Radiodiffusion-Television FrançaiseOrchestre National et Chœurs de l'O. R. T. F.Orchestre National, Choeurs Et Maitrise De La R.T.F.Orchestre National, ParisOrchestre NationaleOrchestre Nationale De FranceOrchestre Nationale De L'ORTFOrchestre Nationale De La Radiodiffusion Et Télévision Française De ParisOrchestre Nationale De La Radiodiffusion FrançaiseOrchestre Nationale de l'ORTF, ParisOrchestre ORTF, ParisOrchestre PhilharmoniqueOrchestre Philharmonique De FranceOrchestre Philharmonique De L'O.R.T.F.Orchestre Philharmonique De L'Office De La Radiodiffusion-Television FrancaiseOrchestre Philharmonique De L'Office De Radiodiffusion Television FrançaiseOrchestre Philharmonique De L’O.R.T.F.Orchestre Philharmonique De L’ORTF De ParisOrchestre Philharmonique De Radio FranceOrchestre Philharmonique De l’ORTFOrchestre Philharmonique Et Choeurs De Radio FranceOrchestre Philharmonique de L'O.R.T.F.Orchestre Philharmonique de Radio FranceOrchestre Philharmonique de l'O.R.T.FOrchestre Philharmonique de l'O.R.T.F.Orchestre Radio National De FranceOrchestre Radio SymphoniqueOrchestre Radio Symphonique De ParisOrchestre Radio-Lyrique de la RTFOrchestre Radio-Symphonique De ParisOrchestre Radiolyrique Et Chœurs De La RTFOrchestre Symphonique Choeurs De ParisOrchestre Symphonique NationaleOrchestre Symphonique Nationale, ParisOrchestre Symphonique de FranceOrchestre de Chambre de la R.T.FOrchestre de Chambre de la RTF,Orchestre de la Radiodiffusion FrancaiseOrchestre de la Radiodiffusion FrançaiseOrchestre national de la RTFOrkest van de Franse Nationale RadioOrquesta De La Radiodifusión FrancesaOrquesta Nacional De FranciaOrquesta Nacional De L'O.R.T.F.Orquesta Nacional De La R. F.Orquesta Nacional De La R.T.FOrquesta Nacional De La Radio De FranciaOrquesta Nacional De La Radio FrancesaOrquesta Nacional De La Radiodifusion FrancesaOrquesta Nacional De La Radiodifusión FrancesaOrquesta Nacional De La Radiodufusion FrancesaOrquesta Nacional De ParísOrquesta Nacional Y Coro De La Radiodifusión FrancesaOrquesta Nacional de FranciaOrquesta Nacional de La Radiodifusión francesaOrquesta Nacional de ParísOrquesta Nacional de la O.R.T.F.Orquesta Nacional de la RTV FrancesaOrquesta Nacional de la Radio de FranciaOrquesta Nacional de la Radiodifusion FrancesaOrquesta Nacional de la Radiodifusión FrancesaOrquesta National De FranciaOrquesta Philharmonia De ParisOrquesta Sinfónica Nacional De FranciaOrquesta Sinfónica de la Radio-television FrancesaOrquesta nacional de FranciaOrquestra Dell RTFOrquestra Nacional Da FrançaOrquestra Nacional Da Radiodiffusão FrancesaOrquestra Nacional Da Radiodifusão FrancesaOrquestra Nacional Da Radiofusão FrancesaOrquestra Nacional De FrançaOrquestra Nacional da Radiofusão FrancesaOrquetsa Sinfonica Nacional De FrancaParis National OrchestraParis National SymphonyParis Philharmonia OrchestraParis Philharmonique OrchestraParis Radio OrchestraParis' NationalorkesterPhilharmonic Orchestra Of Radio O.R.T.F.Philharmonic Orchestra Of The O.R.T.F.Ranskan KansallisorkesteriRanskan Radion KansallisorkesteriSolistes De L'Orchestre National De FranceSolistes De L’Orchestre National De FranceSoloists Of The National Orchestra Of FranceSoloists Of The Orchestre National De FranceSoloists Of The Orchestre National De La Radiodiffusion FrançaiseSymphony Orchestra De FranceThe "Orchestre National" ParisThe "Orchestre National", ParisThe "Orchestrre National," ParisThe French National OrchestraThe French National Radio OrchestraThe French National Symphony OrchestraThe Orchestra National De L'office De Radiodiffusion Television FrançaiseThe Orchestra National De La RadioDiffusion FrancaiseThe Orchestre National De FranceThe Orchestre National de la Radiodiffusion FrancaiseThe Orchestre National, ParisThe String Ensemble Of The Orchestre National, ParisThe “Orchestre National“, ParisThe “Orchestre National” ParisНациональный Оркестр Французского РадиоНациональный Оркестр Французского Радио И ТелевиденияНациональный Оркестр Французского Радио и ТелевиденияОркестр Французского Радиоフランス国立放送局管弦楽団フランス国立放送管弦楽団フランス国立管弦楽団Orchestre National De L'ORTFOrchestre National De La R.T.F.Florent JodeletNathalie ChabotBertrand CerveraGhislaine BenabdallahCatherine BourgeatEtienne PéclardMartial AyelaJérôme MarchandMarc MarderSergiu CelibidachePhilippe PierlotJacques Mercier (3)Bernard CazauranMaurice BourgueBernard NeuranterOlivier DevaureDavid GeringasHuguette DreyfusRaphaël PerraudMichel CantinDavid GuerrierPaul RadaisNora CismondiClaudine GarçonPaul TailleferJean DupinJacques LecointreJean-Luc BourréEmma SavouretLyodoh KanekoDaniele GattiPatrick GalloisBertrand GrenatLaurent Manaud-PallasChristine JaboulayElisabeth GlabBernard BaletHélène ZulkeJoseph PonticelliNicolas PacheMarc Olivier De NattesStéphane HenochBrigitte AngelisMichel MoraguèsStéphane LogerotMichel DouvrainSarah NemtanuPascal MoraguèsEmmanuel CurtFrançois CagnonConstantin BobescoRoland PidouxAndré SennedatJean-Louis SajotLaure VavasseurFlorent CarrièreFrançois ChristinJean-Paul QuennessonMarc JaermannFrançois GottrauxYves DemarleVincent LeonardGilles RancitelliDidier BenettiHervé JoulainPhilippe HanonMarc BauerSabine ToutainPhilippe PouvereauLaurent DeckerCarlos DourthéRichard SiegelPierre VavasseurBenjamin EstienneOana Unc-MarchandCaroline RitchotNicolas VaslierFranz MichelEmmanuel Petit (3)Jean-Marie PoupelinKhoi Nam Nguyen HuuRaymond GlatardThomas GarocheJessica Bessac-CaronPascal SaumonMaria ChirokoliyskaNicolas BöneNancy AndelfingerYoung-Eun KooAllan SwietonJi-Hwan Park SongSophie TerrierSilvia CaredduLuc HéryMichel BenetAndré ChpelitchPhilippe HaicheHector BurganEmmanuel Blanc (2)Elisabeth KisselGaëtan BironDominique DesjardinsLaurence Del VescovoAdeliya ChamrinaEdouard SaboJulien DugersGrégoire MéaMarlène RivièrePatrick Messina (2)Renaud Guy-RousseauJean-Philippe NavrezÉmilie GastaudClaire MorandRégis PoulainFlorence BinderSébastien LarrèreMathilde LebertFrançois DesforgesCorentin BordelotCarlos Brito-FerreiraDavid Rivière (2)Teodor ComanIngrid LormandAlexandre WormsVenâncio Rodrigues Dos Santos NetoGuillaume JehlJean-Marc VoltaMuriel GallienPierre-André LeclercqFrançois Merville (2)Didier BoginoFrançoise VerhaegheGrégoire BlinJean-Edmond BacquetJean-Olivier BacquetJean PinceminJocelyn WillemHubert de VillelePatrice KirchhoffCyril BouffyesseAgnès QuennessonBertrand WalterHélène Bouflet-CantinSumiko Hama-PrévostVéronique CastegnaroJosiane RaoulXavier GuilloteauAurélienne BraunerLouise DesjardinsChristelle PochetAndrei KavalinskiYou Jung HanDominique Brunet (5) + +626633Suzanne FlowersClassical vocalist (soprano).Needs VoteSusan FlowersSusanne FlowersSingcircleThe Monteverdi ChoirPro Cantione AntiquaThe Schütz Choir Of LondonCoro Della Radio Televisione Della Svizzera Italiana + +626990Gérard BourgeoisGérard Robert Edouard BourgeoisFrench songwriter born June 17, 1936 and died July 8, 2016.CorrectBaurgeoisBorgeoisBougeoisBoureoisBourgedis GerardBourgeoisBourgeois GerardBourgeosBourgeoysBourgoisBourgoiseBurgeoisD. GerardDe BourgeoisG BourgeoisG BourgoisG. BourfeoisG. BourgeoisG. BourgeouisG. BourgoisG. BourjoisG. BurgeoisG.BourgeoisG.BourgeoiseG; BourgeoisGeorges BourgeoisGerard BougeolsGerard BourgeoisGerard BourgesisGerard Robert BourgeoisGèrard BurgeoisGérard BourgoisJ. BourgeoisR. BourgeoisR. BurgeoisS. BeaugeoisЖ. БуржоаЖ. Буржуаר. בורז'ואהGérard CépaRiviere et Bourgeois + +626993Jean-Max RivièreFrench songwriter born 19 October 1937 in Paris. Died on 15 November 2025 in Royan, Charente-Maritime. +Needs Votehttp://fr.wikipedia.org/wiki/Jean-Max_Rivi%C3%A8rehttps://www.imdb.com/name/nm2312199/De RiviereDeRiviereJ -M RivièreJ M RiviereJ M RivièreJ-M RivièreJ-M- RivièreJ-M. RivièreJ. - M. RiviereJ. - M. RivièreJ. -M. RivièreJ. -M. RivèreJ. M. RiviereJ. M. RivièreJ. M. RioiereJ. M. RiviereJ. M. RivieréJ. M. RivièereJ. M. RivièreJ. M. RiviéreJ. M. RivèreJ. Max RiviereJ. Max RivièreJ. RiviereJ. RivièreJ. RiviéreJ.- M. RiviereJ.-M. RiviereJ.-M. RivièreJ.-M. RiviéreJ.-M.RivièreJ.H. RivièreJ.M RivièreJ.M. RivièreJ.M. BourgeoisJ.M. RivereJ.M. RiviereJ.M. RivièreJ.M. RiviéreJ.M.RiviereJ.M.RivièreJM RiviereJM. RivièreJean Marie RiviereJean Max RiviereJean Max RivieroJean Max RivièreJean May RiviereJean-Max RiviereJean-Max RiviéreM. RivièreM. RiviéreM. RivéreMax RivièreReviereRiviereRivièreRivière Jean MaxRiviéreRivèreЖ. М. РивьерФ. ЖерарJean-Max NovrénonRiviere et Bourgeois + +627128Royal Scottish National OrchestraThe Royal Scottish National Orchestra (RSNO) is Scotland's national symphony orchestra. The orchestra has performed full-time since 1950, when it took the name Scottish National Orchestra. It continued to use the name 'Scottish National Orchestra' until 1991 when it briefly used the title Royal Scottish Orchestra before changing to its present name.Needs Votehttps://www.rsno.org.uk/https://en.wikipedia.org/wiki/Royal_Scottish_National_Orchestrahttps://www.facebook.com/royalscottishnationalorchestra/14 Player Ensemble From Scottish National OrchestraOrchestraOrchestre National D'EcosseOrchestre Royal National D'ÉcosseOrquesta Nacional EscocesaRSNORSORoyal Scottish NORoyal Scottish National Orch.Royal Scottish National Symphony OrchestraRoyal Scottish OrchestraScottish National Orch.Scottish National OrchestraSkottilainen Kansallinen OrkesteriThe RSNOThe Royal Scottish NationalThe Royal Scottish National OrchestraThe Scottish National OrchestraКоролевский шотландский национальный оркестрШкотски Краљевски Симфонијски ОркестарШотландский Королевский Национальный ОркестрШотландский королевский национальный оркестрスコティシュ・ナショナル管弦楽団Hugh SeenanAlan DalzielFrank LloydAndrea KuypersTom Smith (4)Corin LongPaul MeddFelix TannerPatrick Hooley (2)Heather NichollBetsy TaylorPeter Lloyd (2)Duff BurnsKaren VaughanEdwin PalingElizabeth BampingHans SwarowskyJosef PacewiczRobert Hughes (3)Nick ReaderJonathan DurrantRoger BrennerTom DunnEmily Davis (2)Adrian ShepherdPaul MarrionLorna RoughKeith MillarJohn Langdon (2)Evelyn RothwellJames Clark (6)Arthur ButterworthDavid Martin (21)Maya IwabuchiRobert PurseLynda CochraneRichard StaggUrsula HeideckerRobert McIntoshMagnus MehtaStuart KnussenPippa TunnellJohn GracieStéphane RancourtJoseph CurrieDavid Hubbard (3)Alfred BrainRuth RowlandsKevin Price (3)Jacqueline SpeirsJohn Harrington (7)Michael Rae (2)Isabel GourdieCharles Floyd (2)Gerard DohertyClare Johnson (2)Barbara PatersonSusan BlasdaleWilliam Paterson (2)Gail DigneyPhilip HoreAlison McIntyreWanda WojtasinskaMartin GibsonAlan StarkAndrew Martin (6)Peter Hunt (4)Claire Dunn (2)Elspeth RoseJeremy Fletcher (2)Gordon Bruce (2)David McClenaghanLyn ArmourJanet RichardsonJohn Clark (22)Marcus PopePauline DowseDavid AmonBryan FreeJohn CushingRhona MackayStephen WestJane Reid (2)Miranda Phythian-AdamsPaul Sutherland (3)Marion Wilson (3)Kenneth BlackwoodAllan Geddes (2)David Inglis (2)Nigel Mason (3)Alastair SinclairHelen BrewChristopher FfoulkesRobert Mitchell (7)John Logan (3)John Grant (13)Julian Roberts (2)Penny DicksonLance Green (2)Michael Rigg (2)Nicola McWhirterWilliam ChandlerCaroline ParryNeil GrayDavid Davidson (7)Katherine WrenGeoffrey ScordiaFiona WestDavid YellandMichael HuntrissRosalin LazaroffIan BuddAngus AndersonRobert Yeomans (2)Xander Van VlietTimothy WaldenKatherine BryanTimothy OrpenJohn WhitenerAdrian Wilson (2)Robert Anderson (18)Susan HendersonAleksei KiseliovDuncan SwindellsSteven CowlingJames MildredJohn AlexandraDavid MundenMichael Lloyd (10)Ian Coulter (2)David Prentice (3)Alison ProcterChristopher Hart (2)Katri HuttunenIan MullinBrian ForshawFrancesca HuntKennedy LeitchDávur Juul MagnussenPeter DykesKatherine MackintoshDuncan Johnstone (2)Sophie LangTamas FejesSally Davis (3)Janet LarssonAnne DunbarJoanne MacDowellJohn PoulterMartin Willis (4)Michael Bennett (18)Olwen KirkhamSheila McGregorHarriet WilsonRachael Lee (2)Alfred FlaszynskiPatrick CurlettPaolo DuttoLuis EisenGunda BaranauskaitéSarah DiggerAlison Murray (2)Andrew McLean (9)Maria TrittingerSusan BuchanAlan MansonSusannah LowdonKirstin DrewMartin Murphy (11)Paul PhilbertLisa RourkeLena ZeliszewskaAnne BünnemanMargarida CastroMark Taylor (88)Craig Anderson (23) + +627275Derek Taylor (3)Horn player and former professor of horn at Royal Academy of Music, London (Fellow since 1980). +Died on January 6th 2021Needs VoteD. TaylorEnglish Chamber OrchestraLes Reed And His OrchestraMike Batt Orchestra + +627442Jean SibeliusJohan Christian Julius SibeliusJean Sibelius was a Finnish composer of the later Romantic period, born December 8, 1865 in Hämeenlinna, Finland; died September 20, 1957 at his home Ainola, Järvenpää, Finland. He is considered the national composer of Finland. + +The core of Sibelius' oeuvre is his set of seven symphonies. In addition to the symphonies, his best-known compositions include "Finlandia", "Valse Triste", the "Karelia Suite" and "The Swan of Tuonela" (one of the four movements of the Lemminkäinen Suite). Other works include pieces inspired by the Kalevala, over 100 songs for voice and piano, incidental music for 13 plays, the opera "Jungfrun i tornet" (The Maiden in the Tower), chamber music, piano music, 21 separate publications of choral music, and Masonic ritual music. + +Sibelius composed prolifically until the mid-1920s. After 1926 he produced no large scale works for the remaining thirty years of his life. In 1931 "Surusoitto" for organ (op. 111b) was written for the funeral of Sibelius's friend and fellow artist [a=Akseli Gallen-Kallela]. It was to be Sibelius's last instrumental work. Although he is reputed to have stopped composing, he did attempt to continue writing, including abortive attempts to compose an eighth symphony. + +Sibelius was married to Aino Sibelius (née Järnefelt). They were married for 65 years, and most of that time they lived at their home Ainola near Lake Tuusula, Järvenpää, Finland. They had six daughters. Nowadays their home serves as a museum and art gallery.Needs Votehttps://www.sibelius.fi/suomi/index.htmlhttps://www.sibeliusseura.fi/https://sibeliussociety.info/https://sibeliusone.com/https://www.facebook.com/sibeliusone/https://www.ainola.fi/https://www.last.fm/music/Jean+Sibeliushttps://en.wikipedia.org/wiki/Jean_Sibeliushttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102395/Sibelius_Jean-シベリウスGiovanni SibeliusI. SibeliusJ SebeliusJ SibeliusJ. J. SibeliusJ. SibelijusJ. SibeliusJ. SibeliussJ. SibéliusJ. シベリウスJ.J. SibeliusJ.SibeliusJ.シベリウスJan SibeliusJans SibeliussJean (Julius Christian) SibeliusJean Julian Christian SibeliusJean Julius Christian SibeliusJean SebeliusJean SibéliusJean SiebeliusJohan (Jean) Christian Julius SibeliusJohan (Jean) Julius Christian SibeliusJohan Julius Christian SibeliusJonas SibelijusParksSebeliusSibeliousSibeliusSibelius JeanSibelius,Sibelius, JeanSibelius, Johan (Jean) Julius ChristianSibelius. JeanSibellusSiberiusSibéiusSibéliusSiebeliusSilesiusSybeliusY. SibeliusСибелиусСибулиусЯ. СибелиусЯ. СібеліусЯ.СибелиусЯн СибелиусЯн Сибелиус*シベリウスジャン・シベリウスジャン・シベリウス西貝遼士西贝柳斯 + +628163Merle KilgoreWyatt Merle KilgoreAmerican songwriter, guitarist, country music entertainer, manager and actor. Born August 9th, 1934 in Chickasha, Oklahoma, USA and raised in Shreveport, Louisiana. Died February 6th, 2005 in Mexico. Cousin of [a7409710]. +Kilgore was perhaps best known for his songwriting and wrote his first number one hit at 18, "More And More", which was recorded by [a=Webb Pierce]. He also wrote the 10-million selling "Wolverton Mountain," which was recorded by [a1028847]. His biggest hit, co-written by [a=June Carter Cash], was [a=Johnny Cash]'s "Ring Of Fire". +In 1964 he was hired, in what turned into a 21 year, as the opening act for [a=Hank Williams Jr.] during which time their friendship blossomed and he took to managing Williams Jnr. +Also an actor and long-time member of the Screen Actors Guild, Kilgore appeared in several films, including "Coal Miner's Daughter", and the Robert Altman film, "Nashville." +In 1993, Kilgore was inducted into the Louisiana Hall of Fame in Lafayette, Louisiana.Needs Votehttp://en.wikipedia.org/wiki/Merle_Kilgorehttps://web.archive.org/web/20010203063100/http://www.merlekilgore.com/https://web.archive.org/web/20061203064322/http://www.merlekilgore.com/Bio.htmGilgoreGilmoreHerle KilgoreHerle KillgoreKil GoreKilgareKilgaveKilgorKilgoreKilgore MerleKilgore Merle WyattKilgore MerlyKilgorle, MerleKilgourKilgroveKillgareKillgoreKilloreKolgoreM GilgoreM KilgoreM KillgorM. GilgoreM. GilmoreM. KilgareM. KilgorM. KilgoreM. KilgoreiM. KilgourM. KillgorM. KillgoreM. KligoreM.KilgoreMark KilgoreMarle KilgoreMerele KilgoreMerie KilgoreMerl KilgoreMerleMerle KilgaraMerle Kilgore & The 4 B'sMerle Kilgore The Tall TexanMerle KilgourMerle KilgroveMerle King GilgoreMerle-KilgoreMerril KillgoreMichael KilgoreMike KilgoreW M KilgoreW. M. KilgoreW.KilgoreWyatt Merle KilgoreКилгорМ. КилгaдМ. КилгоурBig Merle Kilgore (The Boogie King)Merle Kilgore Management + +628234James HollandJames HollandBritish classical percussionist, and author. Born in 1933 in London, England, UK - Died in January 2022. +He studied at the [l680970]. He was a member of [a=The Central Band Of The Royal Air Force] for three years. He played with the [a=London Philharmonic Orchestra] for nearly six years before joining the [a=London Symphony Orchestra] in 1959, serving as Principal Percussion from 1966 to 1972. He left the LSO to become Principal Percussion with the [a=BBC Symphony Orchestra]. In addition, he was for many years percussionist with the [a=London Sinfonietta]. He wrote the books "Percussion" and "Practical Percussion, A Guide to Instruments and their Sources".Needs Votehttps://music.apple.com/us/artist/james-holland/80152206http://www.kettledrummer.com/wp-content/uploads/2014/11/JamesH.pdfhttps://lso.co.uk/more/news/1774-obituary-james-holland-1933-2022.htmlLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraLondon SinfoniettaThe Central Band Of The Royal Air ForceThe Academy Of St. Martin-in-the-FieldsPhilip Jones Brass EnsembleLondon Percussion EnsembleThe English ConcertEnglish Bach Festival Percussion Ensemble + +628264Brian HookerWilliam Brian HookerLyricist, author and educator. + +Born: 2 November, 1880 in New York City, New York, U.S.A. +Died: 28 December, 1946 in New London, Connecticut, U.S.A. +CorrectB. HookerBrian Hooker '02HookerHooker Brian + +628266Rudolf FrimlRudolf FrimlAmerican composer and pianist of Czech origin and U.S. resident since 1906. +Born December 7, 1879 in Prague (Bohemia, former Austro-Hungarian Empire, presently Czech Republic), died November 12, 1972 in Los Angeles, USA. Also known as Charles Rudolf Friml and Roderick Freeman. Father of [a=Rudolf Friml Jr.] and [a=William Friml]. +Student of [a=Antonín Dvořák] at the Prague Conservatory. Brother-in-law of [a=Karel Hašler]. Needs Votehttp://en.wikipedia.org/wiki/Rudolf_Frimlhttp://musicaltheatreguide.com/composers/friml/friml.htmlhttps://adp.library.ucsb.edu/names/102891101 Strings Conducted By Rudolf FrimlC. S. FrimlC.R. FrimlE. FrimlF. FrimlF.FrimiFimlFirmlFlimlFremlFriemelFriemlFrilmFrimFrimalFrimeFrimelFrimiFrimlFriml RudolfFriml, Jr.Friml, RudolfFrimmlFrinlFromiPrimlR FrimiR FrimlR SrynlR. FrimlR. ErimlR. FainlR. FimlR. FrimR. FrimiR. FrimlR. FrimlisR. FrimlliR. FrimlsR. FrimmelR. FrimmlR. FrinlR. FrintR. FritzR. PrimlR. TrimiR. TrimlR.FrimlR.FrimlisRFrimlRobert FrimlRodolf FrimiRud. FrimlRudiopm FrimlRudof FrimlRudolf FainlRudolf FirmlRudolf FrimeRudolf FrimelRudolf FrimiRudolf Friml'sRudolph FainRudolph FainlRudolph FrimiRudolph FrimlRudolph Friml, Jr.Rudoph PrimlР. ФримлР. ФримльР.ФримльФримлФримльThe Friml Orchestra + +628269Irving KahalIrving KahalLyricist, born 5 March 1903 in Houtzdale, Pennsylvania, died 7 February 1942 in New York City. +Kahal is best known for his songwriting collaboration with [a=Sammy Fain] that started in 1926 and lasted until his death in 1942. He was inducted into the Songwriters Hall of Fame in 1970. +Needs Votehttp://en.wikipedia.org/wiki/Irving_Kahalhttps://adp.library.ucsb.edu/names/116675CahalE. KahalErvin KoholF. KahelHahalI KahalI. KahalI. CahnI. KabalI. KahalI. KahlI. KahnI. KanalI. KhalI.K. HallI.KahalIrvin KahalIrvina KahalIrvingIrving - KahalIrving CahalIrving KahanIrving KahelIrving KahlIrving KobalIrving/KahalIrving/KahlIrwin KahalJ. KahalKabalKabelKadalKahaKahaiKahalKahal, IrvingKahallKahelKahillKahlKahlaKahnKaholKamalKanalKayahKhalKobalKohalKohlKoholL. KahalS. KahalT. Kahal + +628584Robert NobleEnglish classical horn and piano (& sometimes other keyboards including the celesta) player. +[b]For the UK keyboard player, composer, arranger and producer, please use [a402174][/b]. +Former longtime member of the [a=London Symphony Orchestra]; as 3rd horn (1955-1968, Principal Horn in 1966), 6th horn & pianist (1968-1985), and pianist (1985-1992).Needs VoteBob NobleR. NobleRobert NobelLondon Symphony Orchestra + +628932Julie-Ann Gillett SmithClassical violinist.CorrectJulie SmithBournemouth Symphony Orchestra + +629035Jamie RitmenJames BroomfieldElectronic dance music DJ, producer, songwriter and engineer from Colchester, Essex, UK +Owner of label, UK Dance Records +Style: mostly Hardstyle +email: jamieritmen@hotmail.co.uk Correcthttp://www.myspace.com/djjamieritmenhttp://soundcloud.com/jamie-ritmenhttp://www.facebook.com/pages/Jamie-Ritmen-Official/144692312257418http://twitter.com/JRitmenJamie RitemanJamie RitmanRitmenJames BroomfieldLegal SubSonic VoxFallout (9)Gridbreaker + +629252James BuckleBritish classical bass trombonist from Swanage, England, UK. +He graduated from [l527847] in July 2015. Former member of the [a=European Union Youth Orchestra]. He has been a member of the [b]European Philharmonic of Switzerland[/b] since its founding in 2015. Principal Bass Trombone of the [a=Philharmonia Orchestra] since 2018. Also member of the [a=Gustav Mahler Jugendorchester].Needs Votehttps://www.facebook.com/james.buckle1https://twitter.com/jamesbuckle2169?lang=enhttps://www.linkedin.com/in/james-buckle-03723b44/https://schoolofeverything.com/teacher/jamesbucklehttps://philharmonia.co.uk/bio/james-buckle/https://wells.cathedral.school/2018/09/17/james-buckle-appointed-principal-bass-trombone-of-the-philharmonia-orchestra/Philharmonia OrchestraEuropean Union Youth OrchestraNational Youth Jazz OrchestraGustav Mahler Jugendorchester + +629441Thelma OwenClassical harp player, and harp teacher. +After her studies, she went on to play with all the major symphony orchestras in London including many years as Principal Harp of the [a=Royal Philharmonic Orchestra].Needs Votehttps://www.youtube.com/channel/UC0zbiXlZMmf3IbKnZH0ENwwhttps://open.spotify.com/artist/2HwCj067ot4y7pDAgA1G3jhttps://music.apple.com/au/artist/thelma-owen/4319506https://northlondonmusicteachers.com/thelma-owen-harp-teacher-north-london-finchley-n3-2deMiss Thelma OwenT. OwenLondon Symphony OrchestraRoyal Philharmonic OrchestraLondon Classical Players + +629452Helena BinneyHelena BinneyCellist Helena Binney studied at the Yehudi Menuhin School, the Royal Northern College of Music, and at the University of McGill in Montreal. She has recorded and broadcast with chamber ensembles and orchestras all over the world. As soloist she has performed concertos in United States and the UK. She plays and tours with the Guildhall String Ensemble, and is principal cello with the Glyndebourne Touring Opera. She also plays in the Mainardi Piano Trio.Needs VoteRoyal Philharmonic OrchestraThe Mike McEvoy Orchestra + +629472Mel StitzelMelville J. Stitzel.German-born, American jazz pianist. +Played with New Orleans Rhythm Kings, Jelly Roll Morton and others. + +Born : January 9, 1902 in Germany. +Died : December 31, 1952 in Chicago. +Needs VoteH. StitzelM. J. StitzelM. SitzelM. StitzeM. StitzelM. StitzlelM. StizelM.SitzelMel StetzelMel StilzelMel StizelMelville J. StitzelMelville StitzelSpitzelStatzelStetzelStitnelStitzelStitzel Melville J.StitzellStitzenStitzerlStitzlerStizelStizzeNew Orleans Rhythm KingsThe Stomp SixThe Bucktown Five + +629535Rumi OgawaClassical percussionist.Needs VoteRumi Ogawa-HelferichEnsemble ModernFreies Bläser- Und SchlagzeugensembleEnsemble Modern Orchestra + +629536Michel ArrignonMichel Arrignon(1948 – 12 March 2025) Michel Arrignon was clarinetist who attended the Paris Conservatory at age 16 and won the 1st Prize for Clarinet and Chamber Music at 18. He joined Pierre Boulez's [a=Ensemble Intercontemporain] at its inception, and played with them for seven years, before joining the National Orchestra of the Paris Opera as a clarinet soloist.Needs Votehttps://fr.wikipedia.org/wiki/Michel_Arrignonhttps://en.wikipedia.org/wiki/Michel_Arrignonhttps://www.imdb.com/name/nm13711626/M. ArrignonМ. АрригнонEnsemble IntercontemporainArchimusicQuatuor Olivier Messiaen + +629545Alain DamiensAlain Damiens (born 1950 in Calais) is a French classical clarinetist.Needs Votehttp://clarinette.chez.com/https://en.wikipedia.org/wiki/Alain_DamiensDamiensEnsemble Intercontemporain + +629546Robert GambillRobert GambillAmerican Tenor Vocalist. He established a successful operatic career as a lyric tenor in the 1980s before shifting to the dramatic tenor repertory in 1995. + +From 1984 to 1987, he was a member of the Zurich Opera. After that he performed regularly at leading opera houses such as the Vienna State Opera, Covent Garden, the Metropolitan Opera, Opéra de Paris, Teatro Colón of Buenos Aires, and major houses of Moscow, Berlin, and elsewhere. +CorrectGambillRobert Gambil + +629700Jean-Loup DabadieFrench literary man (September 27th, 1938, Paris, France; died May 24th, 2020, Paris, France) +Elected into the [i]Académie Française[/i] in April 2008, he was a journalist, novelist, lyricist, playwright, songwriter, screenwriter, stage director and translator.Correcthttp://fr.wikipedia.org/wiki/Jean-Loup_DabadieBabandieDabadieDabadie Jean-LoupDaladieDavadieDe SennevilleDebadieI. SoupJ . P. DabadieJ-L DabadieJ-L. DabadieJ-L. DebadieJ-L. DebadierJ-L.DabadieJ. DabadieJ. DabradieJ. L DabadiaJ. L. DabadieJ. L. DeadieJ. L. DebadieJ. Lou/DabadieJ. Loup DabadieJ. Loup DebadieJ.- L. DabadieJ.-L DabadieJ.-L. DabadiJ.-L. DabadieJ.-L. DabadierJ.-Loup DabadieJ.. DabadieJ.L DabadieJ.L DabadieJ.L. DababieJ.L. DabadieJ.L. DabadiewJ.L. DabadisJ.L. DadabieJ.L. DebadieJ.L.D. BassetJ.L.DabadieJ.Loup DebadieJL DabadieJL. DabadieJean DabadieJean L. Dabadie - BassetJean Lou DabadieJean Loup DabadieJean Loup Dabadie BassetJean-Lou DabadiJean-Lou DabadieJean-Louis DabadieJean-Loup DebadieJean/Loup DabadieK.L. DabadieLabadieLoudabadieLoupdabadieS.L. DabadieЖ. ДэбэдиЖ.-Л. ДабадиЖак Люп Дабадиג'. דאבאדי + +629850Waldo Favre-ChorCorrectChorChor Der Hamburger SoilistenvereinigungChor Der Hamburger Solistenvereinigung Waldo FavreChor Der Solistenvereinigung Waldo FavreChor d. Hamburger Solisten-Vereinigung Waldo FavreChor der Solisten-Vereinigung Waldo FavreChor, Der Hamb. Solisten-Vereinigung Waldo FavreCoro Waldo FavreDas Waldo Favre-EnsembleDer Waldo Favre-ChorDer Waldo Favre-Chor Und OrchesterDer Waldo-Favre ChorDer Waldo-Favre-ChorFaldo Vavre ChorFavre ChorFavre-ChorGr. Chor Der Hamburger Solisten-Vereinigung Waldo FavreGroßer Chor Der Hamburger Solistenvereinigung Waldo FavreGroßer Chor Der Solistenvereinigung Waldo FavreHamburger OperettenchorStudentenchorWaldo Favre ChoirWaldo Favre ChorWaldo Favre-Chor Und OrchesterWaldo Favre-KörenWaldo Favre-OperettenchorWaldo Favre-Tonfilmchor Mit Großem TanzstreichorchesterWaldo Favre-körenWaldo-Favre-ChorWaldo-Favre-OperettenchorWaldo Favre + +629913Dr. Wilfried DaenickeProducer of classical recordings.CorrectDr. W DaenickeDr. W. DaenickeDr. Wilfried DaenikeDr. Wilfried DänickeDr. Wilfried JaenickeDr.W. DaenickeW. DaenickeWilfried DaenickeWilfried DaenikeWilfried Dänicke + +630053André SalvetAndré Michel Charles SalvetFrench lyricist, writer, journalist and poet, born October 20, 1918 in Rivesaltes and died May 23, 2006 in Draguignan.Needs Votehttps://fr.wikipedia.org/wiki/Andr%C3%A9_Salvet. SalvetA SalvetA, SalvetA. M. C. SalvetA. SaluetA. SalvatA. SalverA. SalvertA. SalvetA. Salvet,A. SalvettA. SavetA. salvetA.SalvetA; SalvetAdre SalvetAl SalvetAndre Michel C. SalvetAndre Michel Charles SalvetAndre Michel SalvetAndre SalvetAndré Michel Charles SalvetAndré Michel SalvetB.A. SalvetC.A. Salvet MuchelM SalvetM. SalvetR. SalvetSalabertSalmetSaluetSalvatSalverSalvetSalvet Andre Michel CharlesSalviaSlvetsalvetА. СалвеА. Сальве + +630489Lee RockeyLee Rockey was born in 1926 and passed away in 2002. He became known as a swinging jazz drummer in the mid 40's and moved to New York City in 1953. During his jazz career, he played with Neil Hefty and Herbie Mann among others. Later on he moved to Portland, Oregon, where he spent the rest of his life. In the mid 1970's he did a few electronic multimedia performances with dancers and video. Shortly after this he met up with Ju Suk Reet Meate of [a=Smegma], and guested on several of their recordings over the years.Needs VoteLRLeeLee RockyLeon RockeyHerbie Mann Quartet + +630591Dominik TrávníčekClassical violistNeeds VoteDominik TrávníThe Czech Philharmonic Orchestra + +630655Paul Newton (3)Paul NewtonUK Electronic Dance Music DJ/Producer from Liverpool, England +Styles: Trance | Hard Dance | Hardcore Needs VoteNewtonP NewtonP. NewtonP.NewtonPaul 'Bronze' NewtonDomination (4)NutonNeveSilhouettePoint 456kRock N RollerDefiant Dj's + +630941Michelle TaylorMichelle Taylor-CohenHas worked with the City of Birmingham Symphony Orchestra, Isis Ensemble, European Orchestral Ensemble, New Queen's Hall Orchestra, Sinfonia Viva, Heart of England Orchestra, English Philharmonic Orchestra, Oxford Chamber Orchestra and is leader of the British Philharmonic Concert Orchestra.Correcthttp://www.strictly-strings.co.ukThe British Philharmonic OrchestraCity Of Birmingham Symphony Orchestrasinfonia ViVAThe New Queen's Hall Orchestra + +630952Fredrik NorénSwedish jazz drummer, composer, music producer and band leader, born April 21, 1941, Stockholm, Sweden, died May 16, 2016. + +For trumpet and flugelhorn player please use [a=Fredrik Norén (2)] +Needs Votehttps://en.wikipedia.org/wiki/Fredrik_Nor%C3%A9nhttps://sv.wikipedia.org/wiki/Fredrik_Nor%C3%A9n_(trummis)F. NorénFrederic NorénFrederik NorenFrederyk NorenFredrik NorenNorénStaffan Abeleen QuintetBjörn Alkes KvartettDexter Gordon QuartetSansaraSister Maj's BlouseLennart Åberg 4Fredrik Norén BandAbeléen-Färnlöfs KvintettUlf Lindes KvartettBosse Broberg-Lennart Åbergs KvintettBörje Fredriksson Quintet + +631043Antti HyvärinenKeijo Antti Kalevi HyvärinenA Finnish conductor, composer, arranger and pianist. Born on June 20, 1946 in Kuopio, Finland and died on May 22, 2025 in Helsinki, Finland. + +Pseudonyms: Jean Mures +Needs Votehttps://fi.wikipedia.org/wiki/Antti_Hyv%C3%A4rinen_%28muusikko%29A HyvärinenA. HyvärinenA.. HyvärinenA.HyvärinenHyvärinenJean MuresYstävätAntti Hyvärisen Orkesteri + +631047Paul FagerlundPaul Erik FagerlundA Finnish musician whose main instrument was piano. He worked as an arranger in two major Finnish record companies, Fazer and Levytuottajat, between the mid 1970s and mid 1980s. He arranged a lot of disco records for those companies. + +Born on September 7, 1944 in Kuopio, Finland and died on July 3, 1994 in Helsinki, Finland. +Needs Vote"Ekke" FagerlundE. FagerlundO. FagerlundP FagerlundP. FagerlundP. FgerlundP. fagerlundP.FagerlundPaul "Ekke" FagerlundPaul Fagerlund & Yamaha-UrutRudolf HoltzPaul Fagerlundin Orkesteri + +631315Patricia CalnanBritish violinist. Married to [a307112].Needs Votehttps://www.patriciacalnan.com/The Academy Of St. Martin-in-the-FieldsLyric Quartet + +631367Don RayeDonald MacRae Wilhoite, Jr.American vaudevillian and songwriter, b. March 16, 1909 in Washington, DC – d. Jan. 29, 1985 in Encino, CA. + +Started his career as a dancer, going on to win the "Virginia State Dancing Championship." Wilhoite started work in vaudeville as a "song and dance man" often writing his own songs for his act, where he changed his name to Don Raye. + +In 1935 he started work as a songwriter, collaborating with numerous composers, most notably, [a=Gene DePaul]. Other collaborators included [a=Hughie Prince], [a=Patricia Johnston], [a=Harry James], [a=Freddie Slack], [a=Artie Shaw], [a=Charlie Shavers] and [a=Benny Carter]. + +Inducted into the Songwriters Hall of Fame in 1985.Needs Votehttp://en.wikipedia.org/wiki/Don_Rayehttps://www.imdb.com/name/nm0713098/?ref_=nmbio_bio_nmhttps://www.songhall.org/profile/Don_Rayehttps://adp.library.ucsb.edu/names/106090A. RayeB. RaeB. RayeBayeD .RayeD RayeD. KayeD. PayeD. RatD. RaveD. RayD. RayeD. Raye,D. RayneD. RaysD. RyeD. RėjusD. TayeD. rayeD.RayeD.ReyeDan RayeDaniel RayeDawn RayeDayeDe RayeDeRayeDo RayeDon PageDon RaeDon RageDon RaigDon RateDon RaveDon RayDon Ray'sDon ReyeDon ReyesDon RiceDon RoyeDon RyeDonRayeDonald WilhoiteDone RayeDou RayEayeFayeGene RayeH. JamesH. RayeHayeJ. RayeJohn RayJohn RayeJon RayeKayeLeon RayeM. RayeMacRae WilhoiteO. RayeR. DonR. RayeRachelRaeRageRatRateRaveRavenRayRay DePaulRay, L.RayaRaydenRayeRaye DRaye DepaulRaye DonRaye JohnstonRaye de PaulRaye, DonRayedRayelRayerRayneRaynelRaysReyeRon RayRon RayeRoyeRyeT. Rayede RayeД. РайJoe DoaquesMacRae Wilhoite + +631368Gene DePaulGene Vincent De PaulPianist, composer and arranger, born on 17 June 1919 in New York City, died on 27 February 1988 in Northridge, California. He was inducted to the Songwriters' Hall of Fame in 1985.Needs Votehttps://en.wikipedia.org/wiki/Gene_de_Paulhttps://www.songhall.org/profile/Gene_De_Paulhttps://www.imdb.com/name/nm0210877/https://adp.library.ucsb.edu/names/116527C. De PaulC. DePaulD. DePaulD. PaulDE PaulDe PalDe PallDe PaulDe Paul GeneDe PaullDe PaùlDe RayeDe-PaulDePauDePaulDePauleDePaylDeapaulDene De PaulDepalDepaulDopaulDuPaulG De PaulG DePaulG de PaulG. De PaulG. B. PaulG. D. 'PaulG. D. PaulG. De PaulG. De. PaulG. DePaulG. DepauG. DepaulG. DopaulG. PaulG. da PaulG. de PaulG. dePaulG.D. PaulG.D.PaulG.De PaulG.DePaulG.DepaulG.PaulG.de PaulGeneGene D. PaulGene De PaulGene De PaullGene De'PaulGene De-PaulGene DenPaulGene DepauGene DepaulGene DepawGene DupaulGene PaulGene da PaulGene de PaulGene dePaulGene du PaulGené De PaulGeorge DePaulGune De PaulJ. De PaulJ. DePaulJ. de PaulJ.DePaulJean De PaulJean DePaulJene DePaulLuiz BonfaM Gene de PaulM. Gene De PaulM. Gene de PaulP GeneP. GeneP. de GenePaulPaul DePaul De GenePaul de GeneR. De PaulR. DePaulRaye DepaulRaye de PaulRaze de PaulRichard M. De Paulda Paulde Paulde pauldePaulГ. Де ПаулД. ПаульДе ПаулДе ПолJan Savitt And His Top HattersGene de Paul & Don Raye + +631438Herbert FalkGerman Schlager lyricistNeeds VoteFalkH. FalkH. FolkHerb. FalkM. FalkValkFrank PatterHeinz Gayen + +631586St. John's College ChoirThe Choir of St John's College Cambridge has a tradition of religious music and has sung the daily services in the College Chapel since the 1670s, its origins can be traced to the original foundation of the College in 1511.Needs Votehttps://www.sjcchoir.co.uk/https://en.wikipedia.org/wiki/Choir_of_St_John%27s_College,_CambridgeChoeur Du St John's College, CambridgeChoeur Du St. John's College, CambridgeChoeur de St John's College CambridgeChoir And Organ Of St. John's College, CambridgeChoir Des St. John's College, CambridgeChoir Of Saint John's College, CambridgeChoir Of St John's Collage, CambridgeChoir Of St John's CollegeChoir Of St John's College CambridgeChoir Of St John's College, CambridgeChoir Of St John's College, Cambridge, TheChoir Of St John's College, TheChoir Of St Johns CollageChoir Of St Johns College, Cabridge, TheChoir Of St John’s College, CambridgeChoir Of St Johon’s College, CambridgeChoir Of St. John CollegeChoir Of St. John'sChoir Of St. John's CollegeChoir Of St. John's College CambridgeChoir Of St. John's College Cambridge, TheChoir Of St. John's College, CambridgeChoir Of St. John's College, Cambridge, TheChoir Of St. John's College, TheChoir Of St. Johns College CambridgeChoir Of St. Johns College, CambridgeChoir Of St. John’s College, CambridgeChoir Of St.John's College, CambridgeChoir Of St.Johns College CambridgeChoir Of St.Johns College Cambridge, CambridgeChoir Of St.Johns College Cambridge, TheChoir of St John's College CambridgeChoir of St John's College Of CambridgeChoir of St John's College, CambridgeChoir of St John’s College, CambridgeChoir of St. John's CollegeChoir of St. John's College, CambridgeChor Des St. John's CollegeChor Des St. John's College, CambrdigeChor Des St. John's College, CambridgeChor Des St. Johns College, CambridgeChor Des St.Johns College CambridgeChor Des St.Johns College, CambridgeChor des St. John's College, CambridgeChœur Du Collège Saint-JohnChœur Du St. John's College, CambridgeCollege of St. John's Choir, CambridgeCoro Del St. John's CollegeCoro Del St. John's College, CambridgeCoro Del St. John's College, De CambridgeCoro Do St. John's CollegeCoro de St. John's College, CambridgeCôr Coleg Sant Ioan CaergrawntCôro Do St. John's College, CambridgeDer Chor Des St. Johns College, CambridgeFormer Members And Friends Of The College ChoirGentlemen Of St. John's College, CambridgeKnabenchor Des St. John'a College, CambridgeKnabenchor Des St. John's College, CambridgeSolistas Y Coro Del St. John CollegeSt John's CambridgeSt John's College ChoirSt John's College Choir CambridgeSt John's College Choir, CambridgeSt John's College, CambridgeSt. John's College Cambridge ChoirSt. John's College Choir CambridgeSt. John's College Choir, CambridgeSt. John's College Choir, Cambridge, TheSt. John's College School ChoirSt. John's College, CambridgeSt. John's, Cambridge, ChoirSt. John’s College Choir, CambridgeThe Choir Of Saint John's College CambridgeThe Choir Of Saint John's College, CambridgeThe Choir Of St John'sThe Choir Of St John's CambridgeThe Choir Of St John's CollegeThe Choir Of St John's College CambridgeThe Choir Of St John's College, CambridgeThe Choir Of St John's, CambridgeThe Choir Of St Johns CollegeThe Choir Of St John’s College, CambridgeThe Choir Of St. John's CambridgeThe Choir Of St. John's CollegeThe Choir Of St. John's College , CambridgeThe Choir Of St. John's College CambridgeThe Choir Of St. John's College, CambridgeThe Choir Of St. John's College. CambridgeThe Choir Of St. John's College; CambridgeThe Choir Of St. Johns AcademyThe Choir Of St. Johns College, CambridgeThe Choir Of St. John’s College CambridgeThe Choir Of St.John's College, CambridgeThe Choir Of St.Johns College CambridgeThe Choir Of St.Johns College, CambridgeThe Choir St John's College, CambridgeThe Choir of St John's College, CambridgeThe Choir of St. John's CollegeThe Choir of St. John's College , CambridgeThe Choir of St. John's College CambridgeThe Choir of St. John's College, CambridgeThe Choir of St.John's College, CambridgeZbor St. John Collega (Cambridge)Zbor St. John's Collega (Cambridge)David HillGeorge Guest (2)Lynda RussellIestyn DaviesAndrew RuppNicholas GedgeRoderick EarleSteven HarroldMichael Matthews (3)Michael Turner (9)Ben Cooper (6)Geoffrey SilverAndrew NethsinghaAlan Walker (8)Marcus PolglaseMax JonasDale AdelmannThomas Holmes (3)Richard Griffin (4)David Thomson (4)Jeremy HayterSamuel ThorpAlistair FlutterAndrew McGeachinGraham Walker (9)Mike EntwisleJames TurnbullBenedict PerchJohn HewishMark WhybourneWilliam HamJohan Bergström-AllenBenedict GummerTimothy ParkerRobert Carey (4)Jeremy Huw WilliamsLester LardenoyeGeoffrey ClaphamPeter BirtsGeorge BalfourJoel BranstonAugustus Perkins RayXavier HetheringtonOliver Brown (10)Hamish McLarenKieran BruntSam OladeindeJonathan Hyde (3)Alexander Simpson (2)Oliver El-HolibyGuy Edmund-JonesTom BlackieAlec D'OylyRobert Murray John + +631820Pierre LouisViolin playerNeeds VoteLouis PierreP. LouisPierre Louis Et Les CordesPierre Louis et les cordesÉquipe De Pierre Louis + +631822Jean StoutJean DestouetBorn : April 17, 1933 +Dead : April 10, 2012 +French singer and actorNeeds Votehttp://www.imdb.com/name/nm0832871/https://fr.wikipedia.org/wiki/Jean_Stouthttp://danslombredesstudios.blogspot.comComputer StoutJ. Computer StoutJ. StoutStoutComputerThe Jumping JacquesJack Hendrix Tchikbaams + +632100Joseph MohrJosef Franz MohrAustrian Roman Catholic priest and lyricist, born 11 December 1792 in Salzburg, Holy Roman Empire (today Austria), died 5 December 1848 in Wagrain, Austria. He wrote the lyrics of the Christmas carol 'Stille Nacht' (English: 'Silent Night').Needs Votehttp://www.cyberhymnal.org/bio/m/o/h/mohr_j.htmhttp://en.wikipedia.org/wiki/Josef_Mohrhttps://adp.library.ucsb.edu/names/101861A MohrA. Joseph MohrAbbé J. MohrAbbé MohrF. MohrF. X. MohrF.X. MohrFather Joseph MohrFr. Josef MohrFr. Joseph MohrFranz MohrFranz MuhrGerman Joseph MohrGruberand Joseph MohrHohrI. M. MohrI.M. MohrI.MorsJ F MohrJ MohrJ MuhrJ. MohrJ. F. MohlJ. F. MohrJ. F. MuhrJ. MOhrJ. MahrJ. MehrJ. MohJ. MoheJ. MohrJ. Mohr)J. MoorJ. MooreJ. MorhJ. MorsJ. MuhrJ. MöhrJ.F. MohrJ.F. MuhrJ.F.MohrJ.MohrJ.MorsJos,MohrJos. MohrJosef Franz MohrJosef Franz MuhrJosef MohrJosef Mohr (1818)Josef Mohr FrankzJosef MourJosep MohrJoseph Franz MohrJoseph MahrJoseph MoehrJoseph MohJoseph MoheJoseph MohnJoseph Mohr (1818)Joseph MoorJoseph MorhJoseph MorrJoseph MourJoseph MöhrJosephus Franciscus MohrJospeh MohrJózsef MohrM. MohnMOhrMahrMeherMoherMohlMohnMohorMohrMohr JosMohr JosefMohr JosephMohr, J.Mohr, JosephMokkMoorMorhMorrMuhrMuirMöhrMöhrensNohrPastor Joseph F. MohrPeter De RosePfarradjunkten Joseph Mohr Zu OberndorfRev. Joseph MohrRobert MohrS. MohrW. MohrЁзэф МорЙ. МоорЙозеф Мор + +632254Russ Morgan (2)Russell MorganAmerican musician (piano & trombone), arranger, songwriter, & band leader. +Born: 29 April 1904 in in Scranton, Pennsylvania, USA. +Died: 7 August 1969 in Las Vegas, Nevada, USA (aged 65). +Father of [a=Jack Morgan (2)].Needs Votehttps://web.archive.org/web/20070613152158/http://www.russmorganorchestra.com/russ.htmlhttp://en.wikipedia.org/wiki/Russ_Morganhttps://www.imdb.com/name/nm0605012/https://adp.library.ucsb.edu/names/103685?RMF. MorganMoranMorganMorgan – RussMorgan-MorgenMorranNorganR, MorganR. MorganR.MorganRex MelbourneRuss MorganRuss Morgan And His OrchestraRuss Morgan And His Scranton SevenRuss Morgan And QuartetThe Morgan TrioRuss Morgan And The MorganairesMusic In The Russ Morgan MannerRuss Morgan And His Wolverine BandRuss Morgan And His Velvet Violins + +632474Ron LeonardRonald A. Leonard American cellist, conductor and teacher.Needs Votehttps://en.wikipedia.org/wiki/Ronald_Leonardhttps://www.laphil.com/musicdb/artists/3106/ronald-leonardLeonard RonaldLeonard Ronald AnthonyRonald A. LeonardRonald Anthony LeonardRonald LeonardRonald LeonhardThe Cleveland OrchestraLos Angeles Philharmonic OrchestraVermeer Quartet + +632719Bob HilliardHilliard GoldsmithAmerican lyricist. +Born January 28, 1918, in NYC, New York. +Died February 1, 1971, in Los Angeles, California (aged 53). +Married to composer [a=Jacqueline Hilliard] (née Jacqueline Dalya). +Started to work as a Tin Pan Alley, then Broadway lyricist. He wrote many popular tracks for different artists and also worked on some Hollywood movies, where he is most celebrated as the lyricist for the film score to the animated "[r=1912661]" (1951), with music by [a=Sammy Fain]. +Posthumously inducted into the Songwriters Hall Of Fame in 1983. +For publishing, see: [l565740], [l1909289], [l2327722], [l373297], and [l1372277].Needs Votehttp://www.imdb.com/name/nm0384942https://www.songhall.org/profiles/bob-hilliardhttp://en.wikipedia.org/wiki/Bob_Hilliardhttp://freepianosheetmusicdownload.org/im-late-by-bob-hilliard-free-piano-sheet/https://adp.library.ucsb.edu/names/204572A. HilliardB HillardB HilliardB, HillardB, HilliardB. HilliardB. BilliardB. HIlliardB. HilardB. HiliardB. HililardB. HillardB. HilliarB. HilliardB. HollandB. IlliardB. MillardB. MorisseB.HillardB.HilliardBob HilardBob HiliardBob HillardBob HillierBob HilliordBob HyllardBob MilliardBob VivianBob WilliardBob. HilliardBod HilliardDhilliardG. HilliardH. HilliardHIlliard, BobHelloHildardHilderdHiliardHillanHillandHillarHillardHillaryHilliarHilliardHilliard BobHilliard, B.HilliardsHilliaroHilligardHilllardHillyardHolliardM. GoldM. HilliardR. GilliardR. HilliardRobert HilliardS. FainT HilliardT. HillairdT. HillardT. HilliardБ. ХильярдБрантБрантаХилиардב. הילרד + +632765Willie Harry WilsonSongwriterNeeds VoteH.W. WilsonHarry WilsonW H WilsonW-H. WilsonW. -H. WilsonW. H. WilsonW. WilsonW.-H. WilsonW.H. WIlsonW.H. WilsonW.H.WilsonW.WilsonWillie H. WilsonWillie Harry NilsonWillie WilsonWilly Harry WilsonWilly WilsonWilson + +633158Christian GanschAustrian conductor and senior producer for [l=Deutsche Grammophon]. He was born 1960 in Austria.CorrectGanschMünchner Philharmoniker + +633159Helmut BurkSound engineer and producer for Deutsche Grammophon.Needs Votehttps://en.wikipedia.org/wiki/Helmut_BurkHelmut C. Burk + +633160Jürgen BulgrinSound engineer.CorrectJürgen Bülgrin + +633161Jean-Guihen QueyrasFrench cello player born in Montreal, Canada in 1967.Needs Votehttps://jeanguihenqueyras.com/J-G. QueyrasJ. G. QueyrasJ.G. QueyrasJean Guihen QueyrasJean-Guilhem QueyrasJean-Guilhen QueyrasQueyrasEnsemble IntercontemporainOrchestre Philharmonique De Radio FranceArcanto Quartett + +633162Saschko GawriloffGerman violinist born in Leipzig in 1929. He first had lessons on the violin from his father, who played with the Gewandhaus Orchestra, and later at the Leipzig then Berlin Conservatory. Between 1947 and 1966 he was Konzertmeister in a number of German orchestras. In 1959 he won the Paganini Competition in Genoa and since then has taught at Nurnberg, Detmold, Essen and eventually at the international summer courses for new music in Darmstadt. In 1982 he succeeded Max Rostal as professor of violin at the Cologne Musikhochschule.Needs Votehttps://en.wikipedia.org/wiki/Saschko_GawriloffGawriloffProf. Saschko GawriloffS. GawriloffSachko GavriloffSachko GawriloffSascha GawriloffSaschka GawriloffSaschko GavrilovKammerorchester BerlinDeutsche BachsolistenFrankfurt Chamber Orchestra + +633164Hans-Rudolf MüllerSound engineer who worked for Deutsche Grammophon.Needs VoteH.-R. MüllerHans Rudolf MüllerHans-Rudof MüllerMullerMüllerRudolf Müller + +633303Lisa Catherine CohenWriter, Editor, Lyricist. +Born in Toronto (CND). A two-time-platinum, #1 hit lyricist and an internationally renowned writer. +Complete and CorrectC. CatherineC. CohenCohenL. C. CohenL. Catherine CohenL.-C. CohenL.C. CohenLC CohenLisa Cathérine CohenLisa CohenTammy Hutson + +633388George MotolaGeorge Louis MotolaAmerican producer, songwriter and audio engineer, married with [a=June Page] and was born November 15, 1919 in Hartford, Connecticut and died February 15, 1991 in Los Angeles, CA. +Brother of [a=Buddy Motola]. Southern California based record man who did A&R work for [l315650] & [l92737], then later managed [l7722] in the 1950s. Motola owned small local indie labels [l941422] and [l690674] in the early 1960s, and was an A&R executive for [l315650] in the 1970s.Needs Votehttp://www.rockabilly.nl/references/messages/george_motola.htmG MotolaG, MotolaG. MotolaG. MatolaG. MattolaG. MotalaG. MotolaG. MottolaG.MotolaGeo. MotolaGeorge MatolaGeorge MotalaGeorge MottolaGeorges MotolaMatolaMattolaMettolaMotalaMotolaMotola GeorgeMotola Productions IncorporatedMotoloMottalaMottolaT. Motola + +633477Carl LeachAmerican Jazz trumpet playerNeeds Votehttps://www.ronmiscavigebook.com/those-who-knew-ron-best/carl-leach.htmlC J LeachC. J. LeachStan Kenton And His Orchestra + +633755Mark LevyClassical violin and viol player from the UK. + +For the American drummers, please see either [a=Mark Levy (2)] or [a=Mark Levy (8)] +For the folk/blues singer and guitarist, please see [a=Mark A. Levy].Needs VoteThe Dufay CollectiveNew London ConsortThe Breck Road String EnsembleConcordiaThe King's ConsortEnsemble CordariaTheatre Of Early MusicThe Cambridge Musick + +634013The Miles Davis QuartetCorrectMiles Davis QuartetКвартет М. ДэвисаКвартет Майлса ДэвисаMiles DavisHorace SilverArt BlakeyKenny ClarkeMax RoachPercy HeathRed GarlandOscar Pettiford"Philly" Joe JonesPaul Chambers (3)Art TaylorJohn Lewis (2) + +634318Chick BullockCharles BullockVocalist. +Born: September 16, 1898 +Died: September 15, 1981 + +Popular singer of vocal refrains in jazz and dance band records, most prolific during the 1930s. His voice is heard on over 500 tunes recorded primarily for the American Record Corporation conglomeration of labels (e.g. Melotone, Perfect, Banner, Oriole, Romeo). + +Bullock was mostly a freelance vocalist, who sang with various backing orchestras on hundreds of sessions, including some by Duke Ellington, Luis Russell, Cab Calloway, Bunny Berigan, Bill Coleman, Jack Teagarden, Tommy Dorsey, Jimmy Dorsey, Joe Venuti, and Eddie Lang. + +He rarely performed live, due to a disfiguring eye disease. His recording career ended in the 1940s, whereupon he moved to California and took up real estate.Needs Votehttp://en.wikipedia.org/wiki/Chick_Bullockhttps://adp.library.ucsb.edu/names/110440'Chick' BullockBullockC. BullockChiquito BulloChiquito BulloFred. SnowChick Bullock & His Levee LoungersChick Bullock And His Orchestra + +634320Dick RobertsonBorn July 3, 1903 in New York +Died 1979 +American jazz and popular music singer. From 1928 recorded prolifically with leaders such as [a=Ben Pollack] (1928), [a=Nat Shilkret and the Victor Orchestra] (1929), [a=Red Nichols] (1929-1932), [a=Duke Ellington] and [a=Andy Kirk] (1930), [a=Benny Goodman] and [a=Fletcher Henderson] (1931) and [a=Clarence Williams] (1934). He also recorded as leader of studio bands. +From mid-1940s concentrated on writing songs of his own.Needs Votehttps://en.wikipedia.org/wiki/Dick_Robertson_(songwriter)https://adp.library.ucsb.edu/names/107135"Dick" RobertsonD RobertsonD. RobersonD. RobertsonD.RobertsonDRDale RobertsonDick RobertsDick RogersRichard "Dick" RobertsonRick RobertsonRobersonRoberstonRobertsonRobinsonEd CarrollDonald KingBob Dixon (3)Bob Dickson (2)Chester LeightonDan Parker (9)Bobby DixEubie Blake And His OrchestraDick Robertson And His OrchestraDick Robertson And His CollegiansDick Robertson And The American Four + +634324Arthur WhetselArthur Parker WhetselAmerican jazz trumpet player (born February 22, 1905 in Punta Gorda, Florida - died January 1, 1940 in New York City, New York) + +After losing his father at age 1, Whetsel grew up in Los Angeles, CA. At age 8, he took up the cornet. When he was a teenager, his family moved to Washington, DC, where he performed with local bands, eventually joining [a=Duke Ellington And His Washingtonians]. He played on the band's first test recording for Victor, which they made under the name Snowden's Novelty Orchestra on July 26, 1923 in New York City. He left the band later that same year, however, to study medicine. + +Whetsel returned to Ellington in 1928, while the band was under contract at the "Cotton Club" in Harlem. This allowed him to perform on some of the most iconic recordings of the Ellington Band (e.g., "Black Beauty," "Black And Tan Fantasy," and "Mood Indigo"). In 1938, Whetsel began displaying erratic behavior during a concert and needed to be replaced with trumpeter [a=Wallace Jones]. Diagnosed with an inoperable brain tumor, he spent the last two years of his life confined at the Central Islip State Hospital in Suffolk County, New York. + +Whetsel is praised for his trumpet's "broad, open tone of ample depth and sonority" and "the elegant, soft quality of his muted play". He used a pair of wooden "Solotone" conical mutes, one glued inside the other, to achieve his trademark "haunting, ethereal sound when muted" (Steven Lasker). + +Whetsel was featured with [a=Duke Ellington] in the 1929 short film "Black And Tan Fantasy".Needs Votehttps://www.findagrave.com/memorial/84806941/arthur-p-whetselhttps://en.wikipedia.org/wiki/Arthur_Whetselhttp://tdwaw.ellingtonweb.ca/TDWAW.htmlhttp://tdwaw.ellingtonweb.ca/DEMS/DEMS-02-2b-200208-200211,pts5-22.htmlA. WhetselA. WhetsolAWArhur WhetsolArthur WetsolArthur WhestsolArthur WhetsolArthur WhetsonArthur WhetzelArthur WhtesonArtie WhetsolWheiselWhetselWhetsolWhetzelDuke Ellington And His OrchestraThe Whoopee MakersDuke Ellington And His Cotton Club OrchestraThe Harlem FootwarmersThe Jungle Band (2)The Georgia SyncopatorsThe Memphis Hot ShotsThe Harlem Music MastersDuke Ellington's Philadelphia Melodians + +634411Ronald MillerRonald Norman Miller né GouldUS-American songwriter and producer. Born on October 5, 1932, Chicago, IL. Died on July 23, 2007, Los Angeles, CA. Started out as a [l=Motown]'s only white staff songwriter, penning hits for [a=Stevie Wonder]. His biggest hits include "For Once In My Life", "Heaven Help Us All", "Touch Me In The Morning", "I've Never Been To Me" "A Place In The Sun" and "If I Could". Born Ronald Norman Gould but took his step-father's surname. Often associated to [a=Bryan Wells] & [a=Eddie Holland]. + +For the composer/guitarist associated to [a=Don Covay], see [a=Ronald Miller (3)]. +For the funk/disco composer/producer/engineer see [a=Ron Dean Miller]. +For the rhythm&blues songwriter associated to [a=Lee Porter], see [a=Ron Miller (14)]. + + + +Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=233388&subid=0http://en.wikipedia.org/wiki/Ron_Miller_%28songwriter%29http://www.guardian.co.uk/news/2007/aug/23/guardianobituaries.obituaries1B. MillerD. MillerMIllerMilerMilesMillerMiller RMiller RonMillesMillorMimllerMirrorMullerN.R. MillerNorman Ronald MillerR MillerR N MillerR. & D. MillerR. HillerR. MillarR. MillerR. MitlerR. N. MillerR. millerR.MillerR.N. MillerRN. MillerRoland MillerRon MillerRon MIllerRon MilerRon MillerRon Norman MillerRon-MillerRonald Alonzo MillerRonald Dean MillerRonald L. MillerRonald M.Ronald M. MillerRonald MilerRonald MillarRonald MillsRonald N MillerRonald N. MillerRonald Norman MillerRonnie MillerRop MillerRou MillerWilliamsМиллерР. Миллер + +634503Irene ScruggsAmerican vaudeville blues singer and songwriter, who made recordings for OKeh, Victor, Paramount and Gennett 1924-1930, backed with musicians such as Blind Blake, King Oliver, and Little Brother Montgomery. She retired from music in the mid-1930s and reportedly settled in Paris, France, in the mid-1950s, and then in Germany in the 1970s. +She was the mother of actress Baby Scruggs. + +Born: December 7, 1901 in Mississippi. +Died: (Probably) July 20, 1981 in Germany. + +Needs Votehttps://en.wikipedia.org/wiki/Irene_Scruggshttps://adp.library.ucsb.edu/names/107426"Chocolate Brown" Irene ScruggsI. ScruggsScruggsChocolate BrownDixie NolanLittle Sister (15) + +634879Sam SimmonsJazz tenor saxophonist, clarinetist, piano and organ player, born c. 1915 in Charleston, South Carolina. +Worked with [a=Fats Waller] and [a=Hot Lips Page] before joining [a=Al Cooper And His Savoy Sultans] in 1939. With [a=Ella Fitzgerald]'s orchestra 1940-1941, formed own band in Hawaii in 1945, then own band at Pershing Lounge in Chicago from 1946. Ran own restaurant in Chicago during 1960s, playing piano and organ,Needs VoteSam "Lonnie" SimmonsSamuel "Lonnie" SimmonsSamuel SimmonsSamuel SimonsLonnie Simmons (2)Fats Waller & His RhythmElla Fitzgerald And Her Famous OrchestraHot Lips Page And His Band + +634882Floyd BradyFloyd Maurice BradyAmerican jazz trombonist, nickname "Stumpy", born August 4, 1910 in South Brownsville, Pennsylvania. +Needs Votehttp://www.swingfm.asso.fr/html/biographies/trombones/Brady%20Floyd.htmFloyd "Stump" BradyFloyd "Stumpy" BradyTeddy Wilson And His OrchestraLucky Millinder And His OrchestraZack Whyte & His Chocolate Beau Brummels + +634883Jimmy ArcheyJames H. ArcheyAmerican jazz trombonist. + +b. October 12, 1902 (Norfolk, VA, USA) +d. November 16, 1967 (Amityville, NY, USA) +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Archeyhttps://adp.library.ucsb.edu/names/106802ArcheyJ. ArcheyJames ArcherJames ArcheyJamey ArcheyJim ArcheyKing Oliver & His Dixie SyncopatorsLouis Armstrong And His OrchestraSidney Bechet And His Blue Note Jazz MenKing Oliver's Jazz BandThomas Morris And His Seven Hot BabiesBenny Carter And His OrchestraKing Oliver & His OrchestraLuis Russell And His OrchestraElla Fitzgerald And Her Famous OrchestraDan Burley And His Skiffle BoysMichel Attenoux Et Son OrchestreBob Wilber And His BandMuggsy Spanier And His All StarsGeorge Wettling's Jazz BandSidney Bechet & His Hot SixGeorge Wettling's All StarsThe All Star StompersEarl Hines And His BandMorris's Hot BabiesJimmy Archey's Hot SixThe Bill Davison SixBob Wilber And His Jazz BandThe "This Is Jazz" All-StarsJimmy Archey's BandEarl Hines / Muggsy Spanier All StarsJimmy Archey's Crescent City Delegates Of Pleasure + +634884John TrueheartAmerican jazz banjoist and guitarist from the swing era (born c.1900, Baltimore, Maryland, USA, died 1949, New York City, New York, USA). + +Needs Votehttps://www.allmusic.com/artist/john-trueheart-mn0000230413/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/110692/Trueheart_Johnhttps://rateyourmusic.com/artist/john_trueheartEddie John TrueheartJ. TrueheartJohn TruehartLouis Armstrong And His OrchestraTeddy Wilson And His OrchestraChick Webb And His OrchestraElla Fitzgerald And Her Savoy EightElla Fitzgerald And Her Famous OrchestraPutney Dandridge And His OrchestraThe Jungle Band (3) + +634885Pete Brown And His BandCorrectPete Brown & His BandPete Brown & His Jump BandPete Brown And His Jump BandPete Brown BandPete Brown's BandDizzy GillespieSammy PriceJimmy HamiltonPete Brown (2)Charlie DraytonRoy Nathan + +634886Charlie BealCharles Herbert BealAmerican jazz pianist. +Born 14 September 1908 in Redlands, California . +Died 31 July 1991 in San Diego, California. + +Played freelance in Los Angeles before joining [a=Les Hite And His Orchestra] in 1930. 1931 he moved to Chicago. He played solo at the Grand Terasse and was in the bands of [a=Earl Hines], [a=Carroll Dickerson], [a=Jimmie Noone], [a=Erskine Tate] and [a=Frankie Jaxon]. 1933 to 1934 he accompanied [a=Louis Armstrong]. Forty-plus years later he was still performing, this time with his own group: [a=Charlie Beal And His Racquet Club 5-Tette].Needs Votehttp://en.wikipedia.org/wiki/Charlie_Bealhttps://wikimili.com/en/Charlie_BealBealC. BealCh. BealSealLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraLouis Armstrong And His Dixieland SevenLes Hite And His OrchestraBuster Bailey And His Seven Chocolate DandiesCharlie Beal And His Racquet Club 5-Tette + +634887Floyd Smith (2)American jazz guitarist and bassist. +Born : January 25, 1917 in St. Louis, Missouri. +Died : March 29,1982 in Indianapolis, Indiana. + +Floyd started his career in 1929 with Dewey Jackson. He later played with : "Jeter-Pillars Orchestra", "The Sunset Royal Orchestra", Eddie Johnson's Crackerjacks", "Andy Kirk's Band", "Brown Skin Models", Bill Doggett, Hank Marr, Wild Bill Davis, Horace Henderson, Johnny "Hammond" Smith and others. +Correcthttp://jasobrecht.com/floyd-smith-1930s-1940s-jazz-guitar-wild-bill-davis-jamming-django/https://en.wikipedia.org/wiki/Floyd_Smith_(musician)F. SmithFloyd Guitar SmithFloyd SmithSmithTed SmithBill Doggett ComboAndy Kirk And His Clouds Of JoyMildred Bailey And Her Oxford GreysChris Columbo QuintetWild Bill Davis TrioSix Men And A GirlEarl Hines Swingtette + +634888Lovie AustinCora CalhounAmerican pianist, session musician, composer, arranger and bandleader. +Born 19 September 1887, Chattanooga, Tennessee, USA. +Died 10 July 1972, Chicago, Illinois, USA. + +Austin studied music at college and university in Nashville, Tennessee and moved to perform in Chicago in 1923. She was the 'life n' soul' of her vaudeville bands when seated at the piano stool, creating a big impression on a pre-teen [a59405]. As Williams' career took off with the TOBA* circuit shows, so had Austin's. Austin both wrote and arranged many numbers, often while performing at the same time, and backed and recorded with other female artists such as [a307316], [a307217], [a307423] and [a265678]. + +1923 Austin formed her own band, the "Blues Serenaders" and also sessioned for Paramount. Artists who sessioned in Austin's 'Serenaders' line-ups at recordings included [a307207], [a307425], [a307300], [a326810] and [a1052897]. + +Later in her career Austin was musical director of TOBA shows in Chicago's jazz hot-spot, The Monogram Theater at 3453 South State Street. She remained there for twenty years then, after the war, became the pianist at Penthouse Studios for Jimmy Payne's Dancing School. + +*TOBA is an acronym for the "Theater Owners' Booking Association". +Needs Votehttp://www.redhotjazz.com/austin.htmlhttps://adp.library.ucsb.edu/names/104856AstinAustinAustin LovieCora "Lovie" AustinL. AustinL. AutsinLoire AustinLouie AustinLove AustinLovie-AustinLovie Austin's Blues Serenaders + +634889Kaiser MarshallJoseph MarshallUS-American jazz drummer, born 11 June 1902 Savannah, Georgia, died 3 January 1948 in New York City, New York, USA. +He played in Boston with [a=Charlie Dixon]. In the early 1920s he moved to New York playing with [a=Ralph Jones (6)], [a=Fletcher Henderson], [a=Louis Armstrong], [a=Duke Ellington], [a=Jack Teagarden], [a=McKinney's Cotton Pickers], [a=Cab Calloway], [a=Sidney Bechet], [a=Benny Carter], [a=Lionel Hampton] and othersNeeds Votehttps://en.wikipedia.org/wiki/Kaiser_Marshallhttps://www.dailygreen.it/kaiser-marshall-linventore-dellhigh-hat/https://www.allmusic.com/artist/joseph-kaiser-marshall-mn0001204434/biographyhttps://dbpedia.org/page/Kaiser_Marshallhttps://adp.library.ucsb.edu/names/111092"Kaiser" MarshallJoe "Kaiser" MarshallJoseph "Kaiser" MarshallJoseph Kaiser MarshallJoseph « Kaiser » MarshallJoseph «Kaiser» MarshallK. MarshallKaiser MarshalKaiser Marshall (?)MarshallMcKinney's Cotton PickersLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraLouis Armstrong And His All-StarsThe Dixie StompersWingy Manone & His OrchestraThe Louisiana StompersThe Mezzrow-Bechet QuintetFats Waller And His BuddiesPerry Bradford Jazz PhoolsHenry "Red" Allen And His OrchestraIda Cox And Her Five Blue SpellsEarl Randolph's OrchestraLucille Hegamin And Her Blue Flame SyncopatorsFletcher Henderson's CollegiansClara Smith And Her Jazz BandFletcher Henderson And His Club Alabam OrchestraHarris Blues And Jazz SevenAlbury's Blue And Jazz Seven + +634891Roy NathanAmerican Jazz drummer CorrectR. NathanRay NathanPete Brown And His Band + +634895Harry HullBassist and brass bass player.Needs Vote? Harry HullHarry HallMamie Smith And Her Jazz HoundsJohnny Dunn's Original Jazz HoundsJohnny Dunn And His Jazz BandJohnny Dunn And His Band + +634896Lovie Austin's Blues SerenadersNeeds VoteAustin's SerenadersLove Austin And Her Blues SerenadersLove Austin and Her Blues SerenadersLove Austin's SerenadersLovie Austin & Her Blue SerenadersLovie Austin & Her Blues SerenadersLovie Austin & Her SerenadersLovie Austin And Her BluesLovie Austin And Her Blues SerenadersLovie Austin And Her SerenadersLovie Austin And SerenadersLovie Austin Blues SerenadersLovie Austin's And Her Blues SerenadersLovie Austin's SerenadersLovie Austins Blues SerenadersBobby's RevelersThe Hot Dogs (9)Johnny St. CyrTommy LadnierPreston JacksonJohnny DoddsJimmy O'BryantLovie AustinDarnell HowardW.E. BurtonEustern WoodforkJimmy Cobb (2)Bob ShoffnerCharles Harris (4)Junie Cobb + +634898Lee Collins (2)Leeds CollinsAmerican jazz and blues trumpeter, cornettist and bandleader +Born 17 October 1901 in New Orleans, Louisiana. +Died: 3 July 1960 in Chicago, Illinois. + +In the 1910s he played in New Orleans with [a=Louis Armstrong], [a=Papa Celestin] and [a=Zutty Singleton]. 1924 he moved to Chicago and replaced [a=Louis Armstrong] in [a=King Oliver's Creole Jazz Band], In the 1930 he played with [a=Dave Peyton], [a=The Chicago Ramblers], [a=Johnny Dodds] and others. After 1945 he let his own band including gigs with [a=Chippie Hill] (1946), [a=Kid Ory] (1948), and [a=Art Hodes] (1950-51). With [a=Mezz Mezzrow] he toured Europe in 1951 and 1954 and played 1953 with [a=Joe Sullivan] in California. In the mid-1950s he retired due to illness. Needs Votehttps://en.wikipedia.org/wiki/Lee_Collins_(musician)https://jaz.fandom.com/wiki/Lee_Collinshttps://musicrising.tulane.edu/discover/people/lee-collins/https://www.allmusic.com/artist/lee-collins-mn0000815852/biographyhttps://adp.library.ucsb.edu/names/105929... CollinsCollinsL. CollinsKing Oliver's Creole Jazz BandJones & Collins Astoria Hot EightMezz Mezzrow And His OrchestraJelly Roll Morton's Kings Of JazzLittle Brother Montgomery Quintet + +634910John McConnellAmerican trombone player known to have worked with [a31615], [a258701], [a306411] and [a307323].Needs VoteJohn "Rocks" McConnellJohn Mc ConnellLeon "Choo" BerryMcConnellFletcher Henderson And His OrchestraRoy Eldridge And His OrchestraBenny Carter And His OrchestraElla Fitzgerald And Her Famous Orchestra + +634987Mort DixonMort Dixon (born on March 2, 1892 in New York City, New York, died March 23, 1956 Bronxville, New York) was an American lyricist. Dixon began writing songs in the early 1920s, and was active into the 1930s. His chief composer collaborators were [a=Ray Henderson], [a=Harry Warren (2)], [a=Harry Woods (2)] and [a=Allie Wrubel]. Dixon wrote lyrics to such songs as "Bye Bye Blackbird", "You're My Everything", "That Old Gang of Mine", "If I Had a Girl Like You", "Just Like a Butterfly that’s Caught in the Rain", "Marching Along Together" and "The Lady in Red", just to mention a few. + +He never collaborated with [a=Willie Dixon]. "M. Dixon" credits for "I Just Wanna Make Love To You" are probably incorrect credits for [a=Marie Dixon].Needs Votehttp://songwritershalloffame.org/exhibits/C86http://en.wikipedia.org/wiki/Mort_Dixonhttp://www.allmusic.com/artist/mort-dixon-mn0000159844https://adp.library.ucsb.edu/names/105888DIxonDIxon M.DicksonDiconDisonDixesDixoDixonDixon & DixonDixon M.Dixon MortDixsonDoxonM DixonM. DIxonM. DicksonM. DisonM. DixionM. DixonM. DixsonM. SixonM.DixonMart DixonMortMort DicksonMortimer DixonMortimer DixonMorton DixonR. DixonT.D.M. DixonW. DixonW. M. DixoniМ. Диксон + +634988Joe Young (3)Joseph Charles YoungJoe Young (born July 4, 1889 in New York City, New York, USA; died April 21, 1939, New York City) was an American lyricist. Young was most active from 1911 through the late-1930s. He often collaborated with [a=Sam Lewis]. + +He began his career as a singer for music publishing firms in New York and during World War I he toured in Europe as an entertainer for US Troops. + +He wrote the lyrics to "You're My Everything" (music by [a=Mort Dixon] and [a=Harry Warren (2)], which is from the musical "The Laugh Parade". He has written lyrics to the songs "Dinah", "I’m Gonna Sit Right Down and Write Myself a Letter" and "I’m Sitting on Top of the World", just to mention a few. + +Died on April 21, 1939 in New York City, New York, USA. +At [url=https://www.ascap.com/Home/ace-title-search/index.aspx]ASCAP[/url] he is denoted Joseph Young IPI Number 33409211 +Correcthttp://songwritershalloffame.org/exhibits/C96https://www.ascap.com/Home/ace-title-search/index.aspxhttps://en.wikipedia.org/wiki/Joe_Young_(lyricist)https://alchetron.com/Joe-Young-(lyricist)-982935-WDeYoungG. YoungI. YoungJ YongJ YoungJ. E. YoungJ. JoungJ. YongJ. YounJ. YoungJ. Young.J. YoungeJ.W. YoungJ.Widow-YoungJ.YoungJeo YoungJoe J. YoungJoe Widow YoungJoe YoungJoe Young SungJos YoungJos. YoungJoseph David YoungJoseph W. YoungJoseph Widow YoungJoseph YoungJospeh YoungJoungJow YoungJoë YoungK. YoungL. YoungLoe YoungNed YoungP. YoungRobert YoungT. YoungToungYYoiungYongYouYoujngYounYoungYoung JYoung JoeYoung, J.Young, JoeYoung, JosephYoungeYoungerYountYungД. ЯнгДж. ЯнгДжо ЯнгЯнг + +635056Paul HartmannPaul Wilhelm Constantin HartmannGerman actor and voice actor. Born on January 8, 1889 in Fürth, Germany and died on June 30, 1977 in Munich, Germany.Needs VoteHartmannP. HartmannEnsemble Des Wiener Burgtheaters + +635057Mark LotharLothar HundertmarkGerman composer, born 23 May 1902 in Berlin, Germany, died 6 April 1985 in Munich, Germany.CorrectLotharLothatM. Lothar + +635059Käthe GoldKatharina Stephanie GoldAustrian actress and voice actor, born on February 11, 1907 in Vienna, Austria-Hungary and died on October 11, 1997 in Vienna, Austria.Needs Votehttps://de.wikipedia.org/wiki/Käthe_GoldEnsemble Des Wiener Burgtheaters + +635140Will MeiselAugust Wilhelm MeiselGerman dancer and composer, born 17 September 1897 in Rixdorf, Berlin; died 29 April 1967 in Müllheim, Germany. Father of [a=Peter Meisel] and [a=Thomas Meisel].Needs Votehttp://www.meiselmusik.de/https://adp.library.ucsb.edu/names/106104MeiselMeisel, WillMeislW. MeiselW.MeiselWiil MeiselWill MeisellWill. MuselWille MeiselWilli MeiselWillsWilly Meisel + +635153Hans Fritz BeckmannHans Fritz BeckmannGerman songwriter and screenwriter, born 6 January 1909 in Berlin, Germany and died 15 April 1975 in Munich, Germany. +Needs Votehttps://adp.library.ucsb.edu/names/101229https://adp.library.ucsb.edu/names/359992BackmannBechmannBeckamannBeckmanBeckmannBeckmann H. F.Beckmann Hans FritzBeckmann, Hans FritzBeekmannBockmannF. BeckmannFritz BeckmannFritz HansFritz, HansG. F. BeckmannH F BeckmannH. BeckmanH. BeckmannH. F BeckmannH. F, BeckmannH. F. BeckmannH. F. BeckmanH. F. BeckmannH. F. BeekmannH. F. BockmannH. F. EeckmannH. Fr. BeckmannH. Fritz BeckmannH. J. BeckmannH. R. BeckmannH. S. BeckmannH.-F. BeckmannH.F. BeackmanH.F. BeckmanH.F. BeckmannH.F. BockmannH.F.BeckmannHanns Fritz BeckmannHansHans BeckmanHans BeckmannHans F. BeckmannHans Fitz BeckmannHans Friedrich BeckmannHans Frits BeckmanHans FritzHans Fritz BeckmanHans Fritz EeckmannHans-Fritz BeckmannHanz BeckmannHeinz BeckmannR. BeckmankГ. Бeкмaнa + +635561Mike PetrilloCorrectC. PetrilloC.PetrilloCaesarM. M. PetrilloM. PetrilloM.PetrilloPetrillo + +635865Freek FonteinFreek D. FonteinDutch techno, trance and hard house DJ and producer and real estate agent.Needs Votehttp://www.freekfontein.nl/D. FonteinF. FaberF. FontainF. FonteinF.D FonteinF.D. FonteinF.D.FonteinF.FonteinFonteijnFonteinFreek FontijnThe FreakSeraqueThe FreakOrganic SubstanceExo (2)AnticPerfect PhaseThose 2Direct DriveInterstate 69DelusionThe Freak & Mac ZimmsFree Spirit (24) + +635962Chauncey WelschTrombone player. Uncle to the Grammy winner engineer [a=Elliot Scheiner]. + +Born: May 13, 1927 in New York, NY +Died: May 25, 2008, in Los Angeles, CA + +Session trombone player for over 50 yearsNeeds Votehttps://de.wikipedia.org/wiki/Chauncey_Welschhttps://www.imdb.com/name/nm0920500/https://adp.library.ucsb.edu/names/350424C. WelschChancey WelschChancy WelschChaucey WelschChauncey WelchChauncey WelshChauncy WelchChauncy WelschChauncy WelshQuincy Jones And His OrchestraAndy Kirk And His Clouds Of JoyJimmy Dorsey And His OrchestraCharlie Barnet And His OrchestraElliot Lawrence And His OrchestraCootie Williams And His OrchestraBenny Goodman And His OrchestraPatrick Williams And His OrchestraManny Albam And His Jazz GreatsTony Fruscella SeptetJoe Reisman And His OrchestraBilly Byers And His OrchestraTerry Gibbs And His OrchestraUrbie Green And His OrchestraBob Florence Big BandHenry Jerome And His OrchestraThe Hollywood TrombonesThe Bob Florence Limited EditionManny Albam And His OrchestraOrizaba And His OrchestraPeanuts Hucko And His OrchestraJoe Newman And His OrchestraVic Schoen And His All Star BandUrbie Green And Twenty Of The "World's Greatest" + +635996Modesto Briseno (2)American saxophonist and clarinet player, father of [a557876] +Born June 8 1938 in Fort Worth TX. +Died December 2 1965 in San Jose, Santa Clara Co CANeeds Votehttps://www.youtube.com/watch?v=atQL_Bt-ZY8Modesto BresenoModesto BrisanoModesto BrisenioHarry James And His OrchestraChamber Jazz SextetTeddy Edwards Octet + +635997Fred DuttonUS-American bassoon player and bassistNeeds VoteDuttonF. DuttonFreddie DuttonFreddy DuttonFrederic DuttonFrederic M. DuttonFrederick DuttonThe Dave Brubeck QuartetChamber Jazz SextetLos Angeles Philharmonic Orchestra + +636002Walter BoldenWalter Lee BoldenJazz drummer +Born 17.12.1925 in Hartford, Connecticut, died 07.02.2002 from cancer, in New York City +Discovered by [a=Stan Getz] in 1950 +He relocated in New York where he recorded with [a=Stan Getz] and [a=Gerry Mulligan]. +He gave up performing in the early 60's until the early 70's, but became the director of music for Project Create in Harlem between 1973-5, and also worked on the Jazzmobile. +Needs Votehttps://de.wikipedia.org/wiki/Walter_Boldenhttp://www.jazzhouse.org/gone/lastpost2.php3?edit=1013866148BoldenW. BoldenWal BoldenWalt BoldenWalter BoldinWalter Lee BoldenJunior Mance TrioThe George Shearing QuintetStan Getz QuartetStan Getz QuintetHenri Renaud BandThe Walter Bishop, Jr. TrioWes Montgomery All-StarsGerry Mulligan New Stars + +636007Emily MitchellClassical harp playerNeeds VoteEmily MitchelEmily Mitchell SoloffEmily Mitchell SoloffGil Evans And His OrchestraPond Life (2)The Pond Life Orchestra + +636075Don BaldwinBassist.CorrectDonald BaldwinToshiko Akiyoshi-Lew Tabackin Big BandHarry James And His Orchestra + +636119Dave Williams (7)David Curley WilliamsCo-wrote the song "Whole Lotta Shakin' Goin On" with [a622490]Needs VoteC WilliamsC. WilliamsCurley WilliamsCurlie WilliamsCurly WIlliamsCurly WilliamsD WilliamsD. "Curly" WilliamsD. C. WilliamsD. WilliamD. WilliamsD.C. WilliamsD.WilliamsDanny DavidDaveDave "Curlee" WilliamsDave "Curly" WilliamsDave 'Curlee' WilliamsDave 'Curly' WilliamsDave (Curly) WilliamsDave Curlee WilliamsDave Curley WilliamsDave Curly WilliamsDavidDavid "Curlee" WilliamsDavid C WilliamsDavid Curlee WillamsDavid Curlee WilliamsDavid Curly WilliamsDavid WilliamsDavid Williams (7)David/WilliamsDavis WilliamsDe WilliamsDon WilliamsG. M. WilliamsJ. WilliamsS. David-WilliamsS. WilliamsT. WilliamsW. DavidW.D. CurleeWiliamsWilliamWilliam DaveWilliam DavidWilliam-DavidWilliamsWilliams - DavidWilliams / DavidWilliams DavidWilliams David CurleeWilliams, DavidWilliams-DavidWilliams/CurleeWilliams/DavidУильямс + +636144Linton GarnerLinton S. GarnerAmerican jazz pianist and arranger, born March 25, 1915 in Greensboro, North Carolina, died March 6, 2003 in Vancouver, British Columbia, Canada. +Brother of [a=Erroll Garner]. +He played with Fletcher Henderson, Billy Eckstine, Earl Coleman, Fats Navarro, Babs Gonzales and others.Needs Votehttps://adp.library.ucsb.edu/names/358901GarnerL. GarnerL.GarnerLinton Garner & All StarsLinton S. GarnerFats Navarro QuintetBilly Eckstine And His OrchestraBabs Gonzales And His OrchestraEbony In Rythem + +636147Walter FullerWalter "Rosetta" FullerAmerican jazz trumpeter and vocalist (* February 15, 1910 in Dyersburg, Tennessee; † April 20, 2003 in San Diego, California). + +[b]NOTE: This is NOT Walter Gilbert "Gil" Fuller, the jazz arranger, who often went under the name [a=Gil Fuller] and co-wrote "Manteca."[/b] +Needs Votehttp://en.wikipedia.org/wiki/Walter_Fullerhttp://www.allmusic.com/artist/p78214/biographyFullerW. FullerLionel Hampton And His OrchestraEarl Hines And His OrchestraJim Mundy And His Swing Club SevenWalter Fuller's Club Royale Band + +636148Ray AbramsRaymond AbramsonUS American tenor saxophonist, born January 23, 1920 in New York, USA, died 6 July 1992 in Brooklyn, USA. +Brother of [a=Lee Abrams]. +Needs Votehttps://en.wikipedia.org/wiki/Ray_Abrams_(musician)https://adp.library.ucsb.edu/names/300232AbramsRay AbrahamsRay AbramsonDizzy Gillespie And His OrchestraDizzy Gillespie Big BandColeman Hawkins And His OrchestraDon Redman And His OrchestraHot Lips Page And His OrchestraKenny Clarke And His 52nd Street BoysPete Brown's Brooklyn Blue BlowersDizzy Gillespie's Cool Jazz StarsRay Abrams Sextet + +636384Robert Wells (2)Robert LevinsonAmerican songwriter, composer, script writer and television producer. +Born October 15, 1922 in Raymond, Washington, USA. +Died September 23, 1998 in Santa Monica, California, USA. +He was married to singer/actress [a1115495] from 1949 until her death in 1990. +Best known for co-writing "The Christmas Song" (also known as "Chestnuts Roasting on an Open Fire") with [a=Mel Tormé]. +He has charted, and continues to chart, 51 times so far in the U.S. and U.K. from 1946 to 2022. Forty of those times have come from "The Christmas Song", including hitting #3 (its highest charting) in the U.S. in 1946 by The King Cole Trio. He charted with "Mobile" by Ray Burns with Eirc Jupp & His Orchestra in 1955 in the U.K., notching in at #4 (co-written by David Holt) .Needs Votehttps://en.wikipedia.org/wiki/Robert_Wells_(songwriter)https://adp.library.ucsb.edu/names/359266B. LevinsonB. WellsB.WellsBellBob WellBob WellesBob WellsHenry Robert WellsJ. WellsJehromJohn WellsLevinsonO&NeillO. WellsR WellsR. LevinsonR. WellR. WellesR. WellsR. WillsR.R.WellsR.WellsRichard WellsRob WellsRobert LevinsonRobert WallsRobert WellRobert WillisRobt. WellsRoger WellsWIllsWeilWelkWellWellesWellsWells*Wells, RobertWllsР. УэллсJehromRobert Levinson (2) + +636430Gary GeldGary Geld (born October 18, 1935 in Paterson, New Jersey, USA) is an American composer, songwriter, author, publisher and producer. One of the most known songs he wrote is "Sealed with a Kiss", which he co-wrote with [a=Peter Udell].CorrectC. GaldC. GeldD. GeldG GeldG GoldG, GeldG.G. GaldG. GeidG. GelaG. GeldG. GelpG. GlenG. GoldG. GueldG. ゲルドG.GeldGaldGarry GeldGary - GeldGary ColdGary GaldGary GelpGary GeltGary GledGary GoldGary ReidGelbGeldGeld, GGeld, G.Geld,GGellGeorge GeldGerdGerry GeldGery GeldGigeldGledGoldGuillK. GeldP. CelaP. GeldR. GeldГелдГэри ГельдДжелд + +636503Peck MorrisonJohn A. MorrisonAmerican jazz bassist. +Born: September 11, 1919 in Lancaster, Pennsylvania. +Died: February 25, 1988 in New York. + +Needs Votehttps://adp.library.ucsb.edu/names/332684"Peck" Morrison'Peck' MorrisonJo "Peck" MorrisonJohn "Peck "MorrisonJohn "Peck" MorrisonJohn A. "Peck" MorrisonJohn MorrisonP. MorrisonPack MorrisonPeck MorrisPeck MorrissonPeek MorrisonDuke Ellington And His OrchestraGerry Mulligan And His SextetThe Dave Bailey SextetLou Donaldson QuintetThe Jay And Kai QuintetJohnny Coles QuartetDuke Ellington All Star Road BandMulligan ManiaBross Townsend QuintetJohnny Letman Quintet + +636540Skeeter BestClifton BestAmerican jazz guitarist. +Clifton "Skeeter" Best played in Philadelphia from 1935 to 1940. In 1940 he joined [a=Earl Hines]'s orchestra, playing with him until he joined the U.S. Navy in 1942. +After the war he played with a long list of artists, including Bill Johnson from 1945 to 1949, [a=Oscar Pettiford] in 1951 and 1952, & he formed his own trio in the 1950s. An acclaimed session with [a=Ray Charles] & [a=Milt Jackson] in 1957 called Soul Brothers was followed in 1958 by recording with [a=Mercer Ellington]. He also recorded with [a=Harry Belafonte], Etta Jones, Nellie Lutcher, [a=Milt Hinton], Osie Johnson, Paul Quinichette, [a=Jimmy Rushing], [a=Sonny Stitt], [a=Lucky Thompson] and Sir Charles Thompson. Later in his life he taught in New York City. +Born : November 20, 1914 in Kinston, North Carolina. +Died : May 27, 1985 in New York City, New York. +Correcthttp://en.wikipedia.org/wiki/Skeeter_Besthttps://adp.library.ucsb.edu/names/304206"Skeeter" BestBestC. (Skeeter) BestC. BestClifford BestClifton "Skeeter" BestClifton 'Skeeter' BestClifton BestClifton Skeeter BestErskine Hawkins And His OrchestraEarl Hines And His OrchestraPaul Quinichette QuintetMilt Jackson SextetThe Modern Jazz Sextet + +636767Oliver KnussenStuart Oliver KnussenBritish composer and conductor. Son of [a=Stuart Knussen] +Born: 12th June 1952, Glasgow, Scotland. +Died: 9th July 2018, Snape, England.Needs Votehttps://en.wikipedia.org/wiki/Oliver_KnussenKnussenO. KnussenO.K.オリヴァー・ナッセン + +636835Stephen McGuinnessStephen Michael McGuinnessNeeds VoteMc GuinessMc GuinnessMcGuinessMcGuinnesMcGuinnessMcguinnessS McGuinessS McGuinnessS. Mc GuinnessS. McGuinessS. McGuinnesS. McGuinnessS. McguinessS. McguinnessS.McGuinessS.McGuinnessSephen McGuinnessStephan McGuinnessStephen McGuinessSteve Mc GuinessSteve McGuinessSteve McGuinneSteve McGuinnessSteve McguinessSteve McguinnessSteven McGuinessStevie McGuinessSteve MacThe MoomaloidsThe Mac ProjectJMACRhythm MastersUp & DownThe Dub MastersRhythmatic JunkiesThe Street PreacherzBlue LagoonDisco DubbersR.M. ProjectThe DrumbumsAficionadosMaltese MassiveNew Age FunkstasThe SquadiesMasters Of RhythmThe Controllers (3)3rd DimensionThe ShowLingua FrancaGo > ZoR & SK3 (2)Rhythm RobbersAtrium (3)Kudos (5)The Mutator + +636888Buddy McCluskeyHoward Dean McCluskeyArgentinian singer, composer (b. 1935). +Also translated to Spanish numerous English lyrics (ABBA, Roberto Carlos...), many of them along with his wife, Mary as [a=Buddy & Mary McCluskey]. +Son of orchestra director Don Dean ([a=Donald Dean McCluskey]), and brother of [a=Alex McCluskey] with whom he created the vocal quartet Los Mac Ke Macs in the 1950s. +Also brother of [a=Donald McCluskey]. + +Needs VoteB. M. McCluskeyB. MC CluskeyB. McCluskeyB. McCluskleyB. McCluskyB. McluskeyB.M. McCluskeyBuddyBuddy DeanBuddy M. Mc.CluskeyBuddy M. McCluskeyBuddy Mary Mac CluskeyBuddy Mary McCluskeyHoward Dean McCluskeyBuddy & Mary McCluskeyBuddy McCluskey Y Su OrquestaLos Mac Ke Macs + +636892Mary McCluskeyMary McCluskeyArgentinean writer, wife of [a636888].Needs VoteM. McCluskeyM. McCuskeyM.McCluskeyMary M.McCluskeyMcKluskeyBuddy & Mary McCluskey + +637266Richard LynnAustralian double bassist.Needs VoteLynnSydney Symphony Orchestra + +637270Richard KerrRichard Buchanan KerrBritish Composer, Songwriter +Born: 14 December 1944, United Kingdom +Died: 11 December 2023, United Kingdom + +Richard Kerr, a renowned British composer and songwriter, emerged as a significant figure in the music world through his collaboration with American lyricist Will Jennings. Together, they crafted some of the most memorable hits of the 1970s and 1980s. Kerr's journey in music began in the late 1960s and early 1970s, a period marked by his work with artists like Peter Green, Don Partridge, and Scott English. His partnership with English led to the creation of "Brandy," which, when rebranded as "Mandy" and performed by Barry Manilow, soared to worldwide fame. +Kerr's impact on the music industry was not limited to his songwriting. He also explored his talents as a solo artist, releasing three albums between 1976 and 1982, which showcased his versatility and depth as a musician. His work encompassed a range of styles, appealing to a broad audience and earning him critical acclaim. +His contributions extended beyond his solo work, as he was instrumental in shaping the careers of other artists. The songs he wrote were performed by a variety of influential musicians, including Dionne Warwick and Helen Reddy. Kerr's ability to blend poetic lyricism with captivating melodies made his compositions timeless classics. His songs garnered multiple Grammy Award nominations and sold over 40 million records worldwide. Needs Votehttps://en.wikipedia.org/wiki/Richard_Kerr_(songwriter)https://www.imdb.com/name/nm1002418/BuchananBuchanan KerrK. RichardsKarrKen RichardsKerrR KerrR, KerrR. Buchanan-KerrR. CerrR. KeerR. KernR. KerrR.B. KerrR.KerrRichardRichard B KerrRichard Buchanan KerrRichard CerrRichard HerrRichard KeenRichard KeerRichard Kern + +637324Erick van RijswickErick van RijswickElectronic dance music producer / DJ from Venlo, Netherlands. +Born May 5th 1977 +Styles include: Acid | Hard Trance | Hardstyle | Techno | Tekno | Trance | RaveCorrecthttps://erickdewit.bandcamp.comhttp://linktr.ee/erickdewithttp://soundcloud.com/acid-burnhttp://facebook.com/erickdewit1http://www.youtube.com/user/erickdewit?feature=watchhttp://www.mixcloud.com/erickdewithttp://www.twitch.tv/erickdewitErick de WitThe Sixth Sense (3) + +637472Juha VainioJuha Harri VainioBorn: May 10th 1938, Kotka, Finland +Died: Oct 29th 1990, Gryon, Switzerland + +Juha "Watt" Vainio, nicknamed "Junnu", was a Finnish singer, songwriter and translator of song lyrics. He is best known as a witty lyricist, but has also composed and performed numerous evergreen songs. Like many other Finnish songwriters, Vainio also used several pseudonyms during his career: Junnu Kaihomieli, Jorma Koski, Ilkka Lähde, Mirja Lähde, Kirsi Sunila and Heikki Ilmari. + +Father of [a697331] +Needs VoteJ . VainioJ VainioJ, VainioJ. BainioJ. VainicJ. VainioJ. VainoJ. WainioJ. vVainioJ. vainioJ.VainioJ: VainioJuhaJuha "Watt" VainioJuha 'Watt' VainioJuha VainoJuha VanioJuha Watt VainioJuha ”Watt” VainioJuhaVainioJunnuJunnu VainioMirja LähdeVainioVainio Juhaj. VainioЮ. ВайниоJunnu KaihomieliKirsi SunilaJorma KoskiMirja LähdeAito VainioIlkka LähdeJuha "Watt" Vainio Ja Hänen Sarjaan Kytketty, Sähkötarkastuslaitoksen Hyväksymä Orkesterinsa + +638065Emily Van EveraEmily van EveraSoprano vocalist. Born in northern Minnesota, Emily learned piano, flute, guitar, and period wind instruments alongside her more informal, core enjoyment of singing. Her love of early vocal repertoires led her to London, where she began to freelance with ensembles such as the Taverner Consort, the Hilliard Ensemble, Gothic Voices and Sequentia. She lives with her family in Oxfordshire, and revisits the northern US several times a year. She has appeared solo with many ensembles both live and in the studio.Needs Votehttp://www.emilyvanevera.com/E.V.E.EVEEmily Von EveraVan Everaエミリー・ファン・エヴェラ에밀리 반 에베라Taverner ChoirTaverner ConsortCirca 1500The Musicians Of Swanne Alley + +638130Marty SymesMartin SymesAmerican lyricist. +Born: 30 April 1904 in Brooklyn, New York City, New York, USA. +Died: 19 June 1953 in Forest Hills, New York, USA (aged 49). + +Known for: [i]It's The Talk Of The Town[/i] co-written with [a=Jerry Livingston] (aka [a3328610]) & [a736351].Needs Votehttps://en.wikipedia.org/wiki/Marty_Symeshttps://adp.library.ucsb.edu/names/112580A. SymesJ. SymesJymesM SymesM. SaymesM. SimesM. SimmsM. SimsM. SymersM. SymesM. SynesM.SymesM: SimesMarly SymesMartin SymesMarty SimesMarty SymsMarty SynesMary SymesSimesSimsStymesSykesSymeSymensSymerSymesSymsSynesSyniesSyntes + +638167Manny KurtzEmanuel KurtzAmerican songwriter born November 15, 1911 in Brooklyn, NY and died December 6, 1984 in San Francisco, CA. +He wrote the lyrics for over 250 songs. He's charted in the U.S. 34 times--first in 1936 and last in 2000. He had a #1 song in the U.S. in 1945 with "My Dreams Are Getting Better All the Time" by Les Brown and His Orchestra (co-written by Vic Mizzy). The song also reached #3 that same year by Johnny Long and His Orchestra as well as by the Phil Moore Four.Needs Votehttp://en.wikipedia.org/wiki/Manny_Kurtzhttps://www.jazzstandards.com/biographies/biography_68.htmCurtisCurtzE. KurtzEmanuel KurtzEmanuel-KurtEmanuel/KurtG. KurtzHartKortzKurtsKurtzKurtz MannyKurzKurztKutzM KurtzM. CurtisM. KartzM. KurizM. KurtM. KurterM. KurtzM. KuttzM.KartzM.KurtzMann KurtzMann, KurtzMannie KurtzMannny KurtzManny CurtisManny KurterManny KurtsManny KurzManny KutzMillsR. KurtzMann Curtis + +638174Alexander HillWilliam Alexander HillAmerican jazz pianist, composer, and arranger. + +b. April 19, 1906 (North Little Rock, AR, USA) +d. February 1, 1937 (North Little Rock, AR, USA) +Needs Votehttp://www.redhotjazz.com/alexhill.htmlhttp://id.loc.gov/authorities/names/n85034822.htmlhttps://adp.library.ucsb.edu/names/104820A. HillA. MillAlex HillAlex, HillAlex. HillAlexHillAlexanderAlexander HillsB. HillHIllHaleHillHillsR. HillW. HillJimmie Noone's Apex Club OrchestraEddie Condon And His OrchestraMezz Mezzrow And His OrchestraThe Paramount All StarsAlex Hill And His OrchestraDown Home BoysAlex Hill And His Hollywood SepiansHokum TrioYazoo All StarsState Street Stompers + +638182Jimmy Johnson (7)James L. JohnsonAmerican jazz bass player born in Charleston, MO, died June 16, 1993 in Culver City, California at the age of 72. Often worked with bandleader / trombonist [a=Jim Beebe].Needs Votehttp://articles.chicagotribune.com/1993-06-18/news/9306180184_1_dixieland-jazz-bass-player-army-bandJ. JohnsonFats Navarro QuintetThe TreniersTerry Gibbs SextetEarl Coleman And His All StarsBrew Moore And His Playboys + +638538Robert Craig WrightRobert Craig WrightRobert "Bob" Craig Wright (September 25, 1914, Daytona Beach, Florida, USA – July 27, 2005, Miami, Florida, USA) was an American composer and lyricist. + +Wright collaborated with [a=George Forrest] for more than 70 years - frequently adapting classical composers’ music, to create some 2,000 songs featured in 16 stage musicals, 18 revues, and 58 movies, as well as a number of cabaret acts. Among their best-known musicals were "Song of Norway" (1944), the Tony Award-winning "Kismet" (1953), and "Grand Hotel" (1989). + +Wright and Forrest's most known songs include "The Donkey Serenade" (from "The Firefly", with composer [a=Herbert Stothart], based on a theme by [a=Rudolf Friml]), "Always and Always" (from "Mannequin") and "It's a Blue World" (from "Music in My Heart").Needs Votehttps://en.wikipedia.org/wiki/Robert_Wright_(musical_writer)https://adp.library.ucsb.edu/index.php/mastertalent/detail/103695/Wright_Roberthttps://www.imdb.com/name/nm0942243/B. WridhtB. WrightB.WrightBob WhiteBob WrightBob WriteBrightC. RobertC. WrightC.R. WrightCraig WrightJ.WrightK. WrightK. Wright [sic]R, WrightR. C. WrightR. KingR. WhiteR. WirhtR. WrighR. WrightR.C. WrightR.C.B. WrightR.C.B.WrightR.WrightRay WrichRichard WrightRightRob. WrightRober WrightRobert WrightRobert C. WrightRobert CraigRobert Craig Bob WrightRobert R. WrightRobert WRightRobert WrightRobt. WrightWhiteWhrightWightWrightWright; ForrestWrighyWrigttightwright + +638539George ForrestGeorge Forrest Chichester, Jr.George "Chet" Forrest (born July 31, 1915 in Brooklyn, New York, USA - died 10 October 1999 in Miami, Florida, USA) was an American composer and lyricist. + +Forrest collaborated with his partner [a=Robert Craig Wright] for more than 70 years - frequently adapting classical composers’ music, to create some 2,000 songs featured in 16 stage musicals, 18 revues, and 58 movies, as well as a number of cabaret acts. Among their best-known musicals were "Song of Norway" (1944), the Tony Award-winning "Kismet" (1953), and "Grand Hotel" (1989). + +Wright and Forrest's most known songs include "The Donkey Serenade" (from "The Firefly", with composer [a=Herbert Stothart], based on a theme by [a=Rudolf Friml]), "Always and Always" (from "Mannequin") and "It's a Blue World" (from "Music in My Heart"). +Needs Votehttps://en.wikipedia.org/wiki/George_Forrest_(author)https://adp.library.ucsb.edu/index.php/mastertalent/detail/103697/Forrest_Georgehttps://www.ibdb.com/broadway-cast-staff/george-forrest-11679C. ForrestC. ForresterC.ForrestChet ForestChet ForrestD. ForrestForestFornayForrefpForrerstForrestForrest+ForrestsForretsForstierFosterFurrestG .ForrestG, ForrestG. FORRESTG. ForestG. ForreG. ForrestG. Forrest.G. ForretsG. RorrestG. WrightG.C. ForrestG.C.ForrestG.ForrestG: ForrestGeo ForrestGeo. ForrestGeorge "Chet" ForrestGeorge 'Chet' ForrestGeorge Chet ForrestGeorge ForestGeorge FosterGeorges ForestRobert WrightW. ForestW. ForrestБ. Форрест + +638584George Stewart (2)Peter George StewartCorrectG StewartG. StewartG.StewartP. G. StewartP.G. StewartP.StewartPG StewartPeter George StewartPeter StewartStewartStewart, Peter GeorgePaterson (4)Kissing The PinkAscendant MastersLuxiaHill & Stewart + +638716Charles WesleyCharles Wesley18 December 1707 - 29 March 1788 + +A leader of the Methodist movement. Wrote over 6000 hymns. +He was the brother of [a=John Wesley (4)]. He was the father of organist/composers [a=Samuel Wesley] and [a=Charles Wesley Junior], and grandfather of [a=Samuel Sebastian Wesley]. + +For the musical composer Charles Wesley, please use [a=Charles Wesley Junior] +Needs Votehttp://en.wikipedia.org/wiki/Charles_Wesleyhttp://www.cyberhymnal.org/bio/w/e/s/wesley_c.htmhttps://adp.library.ucsb.edu/names/101872C WesleyC. WesleyC. Wesley 1856C. Wesley Et. Al.C.WesleyC.s WesleyCh. WesleyCharlesCharles WeslelCharles Wesley (1707-1788)Charles Wesley (and others)Charles Wesley Et Al.Charles Wesley et al.Charles WessleyChas. WesleyG. WesleyJ. WesleyJohn WesleyS. WesleyWesleyWesley, C.WeslyЧ.Уэсли + +638732Adolphe C. AdamAdolphe-Charles AdamBorn: 24 July 1803 in Paris, France. +Died: 3 May 1856 in Paris, France. + +French composer and music critic. Writer of "Cantique de Noël", better known as "Minuit, chrétiens" ("O Holy Night") and "Giselle" ballet music. +His father is the French Alsatian composer [a4398510].Needs Votehttps://en.wikipedia.org/wiki/Adolphe_Adamhttps://fr.wikipedia.org/wiki/Adolphe_Adamhttps://www.britannica.com/biography/Adolphe-Adamhttps://adp.library.ucsb.edu/names/102788A AdamA C AdamA, AdamA. AdamA. AdamA. AdamsA. AdolpheA. AdānsA. AzamA. C. AdamA. C. AdamsA. Ch. AdamA. Charles AdamA. ÄdamA.-C. AdamA.. AdamA.AdamA.AdamsA.AdolpheA.C AdamA.C. AdamA.C.AdamA.Ch. AdamA.D. AdamA.アダンADAMAd AdamAd. AdamAd. AdamsAd.AdamAdamAdam AdolpheAdam, A.Adam, AdolpheAdamsAdlophe AdamAdoldhe AdamAdolf AdamAdolf Charles AdamAdolfe AdamAdolph AdamAdolph AdamsAdolph C. AdamAdolph Ch. AdamAdolph Charles AdamAdolphe AdamAdolphe AdamAdolphe Adam CharlesAdolphe Adam:Adolphe AdamantAdolphe AdamiAdolphe AdamsAdolphe AdanAdolphe C AdamAdolphe C. AdamsAdolphe Ch. AdamAdolphe Charles AdamAdolphe-Charles AdaAdolphe-Charles AdamAdolphe. AdamAdolphi AdamAdoph AdamAf AdamAldolphe AdamAlphonse AdamC. A. AdamC. AdamC.A.AdamCharlesCharles AdamCharles Adolphe AdamCharls Adolphe AdamD'AdamDe Adolphe Adam (1803-1856)K. AdamO. AdamTraditionalWarren AdamА. -Ш. АданА. АданА. Ш. АданАдольф АдамАдольф АданАдольф Шарль Аданアダムアダン + +638736Edmund SearsEdmund Hamilton Sears6 April 1810 - 14 January 1876 + +American Unitarian parish minister, author, and hymn-writer. +Needs Votehttp://www.cyberhymnal.org/bio/s/e/sears_eh.htmhttp://en.wikipedia.org/wiki/Edmund_Searshttps://adp.library.ucsb.edu/names/106230E H SearsE. H. SearsE. Hamilton SearsE. M. SearsE. SearsE.H. SearsE.H. SpearsE.H.SīrsE.M. SearsE.SearsEH SearsEd H. SearsEd. H. SearsEdmond H. SearsEdmond SearsEdmun H. SearsEdmund A. SearsEdmund H. SearEdmund H. SearsEdmund H.SearsEdmund Hamilton SearsEdward H. SearsEdward Hamilton SearsEdward Hamiltron SearsEdwin H. SearsHamilton SearsHamilton Sears, EdmundRev. E. Hamilton SearsRev. Edmond-Hamilton GearsRev. Edmund H. SearsRev. Edmund Hamilton SearsRev. Edmund SearsRev. Edward Hamilton SearsRev. SearsReverend Edmund Hamilton SearsSears + +638920Jimmy HendersonAmerican jazz trombonist and bandleader. + +[b]Do not confuse this artist with songwriter best known for "I Miss You So" [a=Jimmie Henderson].[/b] + +Worked with: Hal McIntyre, Jimmy and Tommy Dorsey, Lawrence Welk and others. +Born: May 20, 1921 in Wichita Falls, Texas. +Died: June 10, 1998 in New York City, New York.Needs VoteJ. HendersonJim HendersonTommy Dorsey And His OrchestraThe Glenn Miller OrchestraThe Dorsey Brothers OrchestraJimmy Henderson Orchestra + +639218Claude LemesleClaude Jacques Raoul LemesleFrench lyricist, born 12 October 1945 in Paris, France.Needs VoteC LemesleC- LemesleC. J. R. LemesleC. LamesleC. Le MesleC. LemealeC. LemefleC. LemelC. LemelseC. LemesC. LemesieC. LemesisC. LemeskC. LemesleC. LemeslesC. LemesliC. LemeslleC. LemeslyC. LemesmeC. LemesteC. LemezleC. LemseleC. LemsleC. LerresteC. LesmesleC. Lesmesle, J. RaoulC. LmesleC. lemesleC.-L. LemesleC.J. LemesleC.L. Le MesieC.LemeseleC.LemesleC: LemesleCL. LemesieCL. LemesleCl LemeslCl LemesleCl. LemesieCl. LemesleCl.LemesleClaudeClaude DemesleClaude Jacques RaoulClaude Jacques Raoul LemesleClaude LemelleClaude LemeslyClaude LemesteD. LenesisG. LemesleL.CemesleLe MesleLe MessieLeMesleLemelLemesieLemesleLemesle C.Lemesle, C.Lemesle, ClaudeLemesle, Claude Jacques RaouLemeslyLemesteLenesteLesmesleLimesleRaoul Jacques Claude LemesleRemesleS. LemesleЖ. ЛемесльК. ЛемельК. ЛемесльЛемельЛемесиJeff ToothLe Petit Conservatoire De La Chanson + +639405Daniel RaabeGerman cellist.Needs VoteEnsemble ModernOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerLudwig String Quartet + +639419Gerdur GunnarsdóttirGerður GunnarsdóttirViolinist.Needs Votehttp://www.caput.is/site.php?lang=isl&&mat=21&&c=Ger%F0ur%20Gunnarsd%F3ttirG. GunnarsdóttirGerdur GunnarsdottirGerður GunnarsdóttirGunnarsdóttirThe Caput EnsembleEnsemble ModernEnsemble Modern OrchestraStarvinsky OrkestarKonzerthausorchester BerlinSequenza String OrchestraGerdur Gunnarsdóttir String QuartetSusanne Paul's Move Quartet + +639452Rufus JonesAmerican jazz drummer. + +Born : May 27, 1936 in Charleston, South Carolina. +Died : April 25, 1990 in Las Vegas, Nevada. + +Played with : Lionel Hampton (1954), Henry "Red" Allen, Maynard Ferguson (1959-1963), with his own band (1963-1964), Count Basie (1964-1966), Duke Ellington (1966-1970) and others. +Nickname : "Speedy". +Needs VoteDr. Rufus "Speedy" JonesJonesRJoRufus "Speedy" JonesRufus "Speedy"JonesRufus Speedy JonesWoody Herman And His OrchestraDuke Ellington And His OrchestraBuddy Johnson And His OrchestraWoody Herman And The Swingin' HerdMaynard Ferguson & His OrchestraLionel Hampton & His Big Band + +639453Billy MackelJohn William MackelAmerican jazz guitar player. + +Born : December 28, 1910 in Baltimore, Maryland. +Died : May 05, 1986 in Baltimore, Maryland. +Needs Votehttps://en.wikipedia.org/wiki/Billy_Mackelhttps://adp.library.ucsb.edu/names/328870B. MackelB. MackellBernie MackieBill MackelBillie MackelBilly MackellJock MackelJohn MackelMackelMackellW. MackelW. MackellWilliam "Billy" MackelWilliam MackelWilliam MackellWilliam MacketWilliam McKelWm MackelWm. MackellLionel Hampton And His OrchestraLionel Hampton And His SeptetLionel Hampton And His QuartetLionel Hampton And His All-Star Alumni Big BandLionel Hampton And His SextetLionel Hampton And His Paris All StarsLionel Hampton & His Giants Of JazzLionel Hampton TrioHerbie Fields Swingsters + +639454Peter BadieAmerican jazz and rhythm and blues bassist. + +Born: May 17, 1925 in New Orleans, Louisiana. +Died: April 15, 2023 +Played with: Zoot Sims, Dizzy Gillespie, Lionel Hampton, Fats Domino, Lloyd Price, Big Joe Turner, Charles Brown (pianist), Hank Crawford, Sam Cooke and many others.Needs Votehttps://en.wikipedia.org/wiki/Peter_BadiePete BadiePeter "Chuck" BadiePeter Badie, Jr.Peter BradiePeter SadieChuck BadieLionel Hampton And His OrchestraLionel Hampton And His QuartetA.F.O. Studio ComboAFO Executives + +639455Jay PetersAmerican jazz saxophonist.Needs Votehttps://www.allmusic.com/artist/jay-peters-mn0001625192Jay J. PetersJay PeterLionel Hampton And His OrchestraLionel Hampton & His Big BandGene Shaw Sextet + +639459Jay DennisAmerican alto sax and trombone player.Needs VoteDennisJay DennisonWoody Herman And His OrchestraWoody Herman And His Third Herd + +639469Ed MullensEdward MullensAmerican jazz trumpeter +Born : May 11, 1916 in Mayhew, Mississippi +Died : April 07, 1977 in Bronx, New York + +Edward "Moon" Mullens worked with [a=Benny Carter], [a=Cab Calloway], [a=Lionel Hampton], [a=Duke Ellington], [a=Louis Armstrong], [a=Billie Holiday], [a=Johnny Hodges] among others + + +Needs Votehttps://en.wikipedia.org/wiki/Moon_MullensE. MullensEd "Moon" MullensEd MullinsEd. MullensEd. MullinsEddie "Moon" MullensEddie MullenEddie MullensEddie MullinsEddy MullensEddy MullinsEdward MullenEdward MullensMoon MullensMullenMullensMullinsDuke Ellington And His OrchestraLouis Armstrong And His OrchestraLionel Hampton And His OrchestraBenny Carter And His OrchestraLionel Hampton And His SextetSam Price And His Texas BlusiciansHot Lips Page And His Band + +639480Paul DanielPaul Daniel CBEEnglish conductor, born 5 July 1958 in Birmingham, England. +As a boy, he sang in the [a844251], where he received musical training. He studied music at King's College, Cambridge and went on to learn conducting at the Guildhall School of Music and Drama in London, where his teachers included [a397616] and Sir [a727253]. +In 1982, he received a position on the musical staff of the English National Opera, remaining there until 1987. From 1987 to 1990, he was music director of Opera Factory. From 1990 to 1997, he was Musical Director of Opera North and Principal Conductor of the [a840014]. He became Music Director of the English National Opera in September 1997 and resigned in 2005. He became Guest Conductor of the [a493826] in April 2006, then Principal Conductor in January 2009. In July 2012, the [a1112265] announced the appointment of Daniel as its next Music Director, effective with the 2013-2014 season. Since 2013 principal conductor of [a6370736]. +He has two daughters from his past marriage to soprano [a835223], which ended in divorce.Needs Votehttps://en.wikipedia.org/wiki/Paul_Danielhttps://www.naxos.com/person/Paul_Daniel/31546.htmDanielWest Australian Symphony OrchestraEnglish Northern PhilharmoniaOrchestre National Bordeaux AquitaineReal Filharmonía De Galicia + +639751Ruby GlazeSome records by [a=Blind Willie McTell] on Victor and Bluebird carried the artist credit "Ruby Glaze-Hot Shot Willie". + +"It appears possible that Ruby Glaze is a pseudonym for [a=Kate McTell], white Hot Shot Willie is definitely a pseudonym [...] for Blind Willie McTell." (Blues and gospel records 1890-1943 (1997), p. 302).Needs VoteGazeGlazeRuby Gaze + +639752Hot Shot WillieWillie Samuel McTier (or McTear)Pseudonym used by Blind Willie McTell when collaborating with Ruby Glaze on Victor and Bluebird Records.CorrectBlind Willie McTellBlind SammieGeorgia BillGuitar SammieBarrelhouse Sammy + +639838Bayerischer RundfunkBayerischer Rundfunk is the public broadcasting authority for the German "Land" (State) of "Bayern" (Bavaria).Needs Votehttp://www.br-online.deBRBR (Bavarian Radio)BR Bayerischer RundfunkBR Bayerisches FernsehenBR MünchenBavarian BroadcastBavarian Broadcasting CompanyBavarian RadioBavarian Radio (Bayerischer Rundfunk)Bavarian Radio Co.Bavarian Radio Symphony OrchestraBayerische RundfunkBayerische Rundfunk BR-Klassik / Redaktion JazzBayerischen RundfunkBayerischen Rundfunk MünchenBayerischen RundfunksBayerischer Rundfunk - BR FrankenBayerischer Rundfunk MünchenBayerischer Rundfunk, MünchenBayerischer Rundfunk/Studio FrankenBayerischer RunkfunkBayrischen RundfunkBayrischer RundfunkDes Bayerischen RundfunksRadioreportage Bayerischer RundfunkReportageThe Bavarian RadioMartin WöhrPeter Urban (2)Helmut RohmBayerischer Rundfunk / Hörspiel und MedienkunstBR-Klassik + +639930Forbes HendersonClassical guitarist (but also charango/tiple/banjo/oud/saz/lute player). Member of the [b]Duo Napolitano[/b] alongside [a=Nigel Woodhouse].Needs Votehttps://www.facebook.com/forbes.henderson.31https://www.linkedin.com/in/forbes-henderson-97273116/?originalSubdomain=ukhttps://www.youtube.com/user/forbsieworbsiehttps://www.reverbnation.com/artist/video/5289291https://www.imdb.com/name/nm2048690/https://www2.bfi.org.uk/films-tv-people/4ce2bd73723b1F. HendersonHendersonLondon Symphony OrchestraPhilharmonia OrchestraIncantation (2)Dick Bakker Orchestra + +639945Eino LeinoArmas Einar Leopold LönnbohmEino Leino (born on July 6, 1878 in Paltamo, Finland) was a Finnish poet and author. He was also a translator, for example he translated [a=Dante Alighieri]'s Divine Comedy into Finnish. He also worked as a journalist. Brother of [a2938314]. + +Died on January 10, 1926 in Tuusula, Finland.Needs Votehttp://en.wikipedia.org/wiki/Eino_Leinohttps://adp.library.ucsb.edu/names/102256E. LeinoE.LeinoEino KeinoLeinoP. Leino + +639960Bronislaw GimpelBronisław GimpelBorn January 29, 1911 in [url=https://en.wikipedia.org/wiki/Lviv]Lviv[/url], died May 1, 1979 in Los Angeles, [b]CA[/b]. Polish-American violinist and pedagogue of Jewish origin. +Brother of pianist [a957680].Needs Votehttps://en.wikipedia.org/wiki/Bronislav_Gimpelhttps://pl.wikipedia.org/wiki/Bronis%C5%82aw_Gimpelhttps://culture.pl/pl/tworca/bronislaw-gimpelhttps://www.naxos.com/person/Bronislaw_Gimpel/4896.htmB. GimpelBronislav GimpelBronisław GimpelGimpelHronislaw GimpelБронислав ГимпельCharlie Parker With StringsThe Mannes Gimpel Silva TrioKwintet Warszawski + +639962Wolfgang KöhlerGerman jazz pianist, born 15 October 1960 in Hofgeismar, Germany.Needs Votehttps://de.wikipedia.org/wiki/Wolfgang_K%C3%B6hler_(Pianist)W. KöhlerWolfgang KoehlerRIAS Big BandRIAS TanzorchesterAllan Praskin - Wolfgang Köhler QuartetJust Friends (7)Rolf von Nordenskjöld OrchestraWolfgang Köhler TrioAllan Praskin Quintet + +639963Frank BrieffAmerican viola player, born 19 April 1912, died 22 November 2005.Needs Votehttps://www.bach-cantatas.com/Bio/Brieff-Frank.htmF. BrieffFrank BriefFrank Brieff, ConductorFrank BriettFrank FrieffФрэнк Брейфф弗兰克·布里夫Charlie Parker And His OrchestraCharlie Parker With StringsGuilet String Quartet + +639975Don GoldieDonald Elliott GoldfieldAmerican jazz trumpeter. +Born : February 05.1930 in Newark, New Jersey. +Died : November 10, 1995 in Miami, Florida. (Suicide) + +Don played with : Jack Teagarden, Ralph Burns, Neal Hefti, Earl Hines, Gene Krupa, Joe Mooney, Buddy Rich, Jackie Gleason and others. +His father was Harry "Goldie" Goldfield a jazz trumpeter. +Needs Votehttps://en.wikipedia.org/wiki/Don_Goldiehttps://www.findagrave.com/memorial/227139232/don-goldieDon Goldie & His TrumpetDon Goldie And His TrumpetGoldieBilly FranklinPaul Whiteman And His OrchestraBuddy Rich & His BuddiesThe Lords Of DixielandDon Goldie And OrchestraThe Don Goldie Band + +639976Gérard GustinGérard Maurice GustinFrench pianist, composer and orchestra leader. +Born in 1930, died in 1994. +Father of singer [a=G.G. Junior]Needs Votehttps://fr.wikipedia.org/wiki/G%C3%A9rard_GustinC. GustinG. GustainG. GustinG. GustínG. JustinG. M. GustinG.GustinGeorge GustinGerald Gerard GustinGerald GustinGerardGerard GoustinGerard GustinGustinGustin G.GustínGérard GustenJ. GustinJustinPanasStuiniBill WichitaPerez PilarHubert ClavecinDick PattonChet Baker QuartetStephane Grappelli QuartetTrio Gérard GustinEsperanza Gustino et son orchestreQuartette Gérard GustinDick Patton' SextetteOrchestra Gérard GustinMonsieur Hubert Clavecin Et Ses RythmesModern Gustin TrioDick Patton Et Son OrchestreGérard Gustin Et Son Ensemble + +640306John BelloAmerican trumpet player, died 2011.Needs Votehttps://www.allmusic.com/artist/john-bello-mn0001748267/creditsJohn BellJohn BellowJohn P. BelloJohnny BelloQuincy Jones And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraLucky Millinder And His OrchestraUrbie Green And His OrchestraWoody Herman And His Third HerdGeorge Williams And His OrchestraThe Quincy Jones Big Band + +640399Euphonic SessionsNeeds VoteEuphony (2)Lee HaslamGuy Mearns + +640418Fabio PianigianiNeeds Votehttps://www.fabiopianigiani.it/F. PianigianiF.PianigianiFabio Pianigiani NaradamuniP. FabioPianiPianiganiPianigianiPianiginiPlanigianiFabioelisaAir AmericaDancing Madly Backwards + +640637Akiko TarumotoClassical violinistNeeds VoteAkiko TarumutoAkiko TuramotoAniko TarumotoLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +640665George & Ira GershwinAmerican songwriting duo who created some of the most memorable songs of the 20th century. Lyricist Ira Gershwin, December 6, 1896 – August 17, 1983, who collaborated with his younger brother, composer George Gershwin, September 26, 1898 – July 11, 1937. Needs Votehttp://www.gershwin.com/!. Gershwin-G.Gershwin- I. Gershwin - G. Gershwin --I. & G. Gershwin--I. Gershwin - G. Gershwin--I. Gershwin-G. Gershwin-C. & I. GershwinD. & I. GershwinG & GershwinG & I GerschwinG & I GerscwinG & I GershwinG & I GerswhinG & I GerswinG & I. GerhswinG & I. GershwinG & I.GerschwinG & I.GershwinG & J GershwinG &I GershwinG + I. GershwinG .& I. GershwinG And I GershwinG Gershwin - I GershwinG Gershwin / I GershwinG Gershwin / I GerswhinG Gershwin I GershwinG Gershwin – I GershwinG Gershwin, I GershwinG Gershwin/I GershwinG Gershwin/I. GershwinG Och I GershwinG& I GershwinG&I GerschwinG&I GershwinG&I. GershwinG&I.GershwinG+i. GershwinG, & I. GershwinG, Gershwin-I. GershwinG- Gershwin - I. GershwinG-Gershwin-I.GershwinG-I. GershwinG. & . GershwinG. & I . GershwinG. & I GershwinG. & I. GerhswinG. & I. GershinwG. & I. GershwinG. & I. Gershwin, b. J. & I. GershovitzG. & I. GerswhinG. & I. GerswinG. & I. GerwshwinG. & I. GreshwinG. & I.-GershwinG. & I.GershwinG. & I: GershwinG. & Ir. GershwinG. & Ira GershwinG. & J. GershwinG. & L. GershwinG. & T. GershwinG. &. I. GershwinG. &I. GershwinG. + A. GershwinG. + I. GershwinG. + I.GershwinG. + J. GershwinG. - I. GershwinG. And I . GershwinG. And I. GershwinG. And L. GershwinG. E I. GershwinG. E. I. GershwinG. Et GershwinG. Et I. GershwinG. George / I. GershwinG. George, I. GershwinG. George/I. GershwinG. Gerhwin, I. GershwinG. Gerschwin - I. GerschwinG. Gerschwin / I. GerschwinG. Gerschwin / Ira GerschwinG. Gerschwin, I. GerschwinG. Gershein / I. GershwinG. Gershwi, I. GershwinG. Gershwi/ I. GershwinG. GershwinG. Gershwin & I. GerschwinG. Gershwin & I. GershwinG. Gershwin & Ira GershwinG. Gershwin , I. GershwinG. Gershwin - I GershwinG. Gershwin - I. GershwinG. Gershwin - Ira GershwinG. Gershwin - J. GershwinG. Gershwin - i. GershwinG. Gershwin -I. GershwinG. Gershwin / I. GerschwinG. Gershwin / I. GershwinG. Gershwin / I.GershwinG. Gershwin / I/ GershwinG. Gershwin / Ira GershwinG. Gershwin / J. GershwinG. Gershwin /I. GershwinG. Gershwin ; I. GershwinG. Gershwin And I. GershwinG. Gershwin E I. GershwinG. Gershwin Et I. GershwinG. Gershwin I. GershwinG. Gershwin – I. GershwinG. Gershwin — I. GershwinG. Gershwin, I GershwinG. Gershwin, I. GerschwinG. Gershwin, I. GershwinG. Gershwin, I. Gershwin*G. Gershwin, I. GerswhinG. Gershwin, I. GerswinG. Gershwin, I.. GershwinG. Gershwin, I.GershwinG. Gershwin, Ira GershwinG. Gershwin- I. GershwinG. Gershwin-I GershwinG. Gershwin-I. GerhswinG. Gershwin-I. GershwinG. Gershwin-I. GerswhinG. Gershwin-I. GerswinG. Gershwin-I.GershwinG. Gershwin-Ira GershwinG. Gershwin. I. GershwinG. Gershwin., I. GershwinG. Gershwin.I. GershwinG. Gershwin/ I. GershwinG. Gershwin/I. GerhswinG. Gershwin/I. GershwinG. Gershwin/I. GerswhinG. Gershwin/I.GershwinG. Gershwin/Ira GershwinG. Gershwin/Ira. GershwinG. Gershwin; I. GershwinG. Gershwin‒I. GershwinG. Gershwin–I. GershwinG. Gershwin—I. GershwinG. Gershwyn - I. GershwynG. Gerswhin, I. GershwinG. Gerswhin-I. GershwinG. Gerwhin - I. GershwinG. Girshwin, I. GirshwinG. Greshwin- I. GershwinG. I I. GershwinG. I. GershwinG. U. I. GershwinG. U. J. G. GershwinG. U. J. GershwinG. Und I. GershwinG. Y I. GershwinG. and I. GershwinG. and J. GershwinG. e I. GershwinG. e. I. GershwinG. en I GershwinG. et I. GershwinG. et Ira GershwinG. i I. GershwinG. o. I. GershwinG. og I. GershwinG. u. I. GershwinG. und I. GershwinG. y I. GershwinG. y I. GerswinG. | I. GershwinG. Ü I. GershwinG.& I. GHershwinG.& I. GershwinG.& I.GerschwinG.& I.GershwinG.&.I. GershwinG.&I. GershwinG.&I.GershwinG.+I. GershwinG.+I.GershwinG.-I. GershwinG..& I. GershwinG./I. GershwinG./L. GershwinG.Gershiwn-I.GershwinG.Gershwi/I.GershwinG.Gershwim / I.GershwinG.Gershwin - I. GershwinG.Gershwin - I.GershwinG.Gershwin - Ira GershwinG.Gershwin / I. GershwinG.Gershwin / I.GershwinG.Gershwin /I.GershwinG.Gershwin I. GershwinG.Gershwin, I. GershwinG.Gershwin, I.GershwinG.Gershwin,I.GershwinG.Gershwin-I. GershwinG.Gershwin-I. GerswhinG.Gershwin-I.GershwinG.Gershwin-I.GreshwinG.Gershwin-L.GershwinG.Gershwin.-I.GershwinG.Gershwin/GershwinG.Gershwin/I. GershwinG.Gershwin/I.GershwinG.Gerwin-I.GerswinG.I. GershwinG.und I. GershwinG/I GershwinG: & I. GershwinGEorge Gershwin-Ira GershwinGand. I - GershwinGand/GershwinGeo & Ira GerschwinGeo & Ira GershwinGeo Et Ira GershwinGeo. & I. GershwinGeo. & Ira GershwinGeo. - & Ira GershwinGeo. And Ira GershwinGeo. Et Ira GershwinGeo. Gershwin - Ira GershwinGeo. Gershwin,. Ira GershwinGeo. Gershwin-Ira GershwinGeo.& Ira GershwinGeo.&IraGershwinGeoge Gershwin/Ira GershwinGeoreg Gershwin, Ira GershwinGeorege Gershwin / Ira GershwinGeorg & Ira GershvinGeorg Gershwin / Ira GershwinGeorg, Ira, GershwinGeorge & GershwinGeorge & I. GershwinGeorge & Ira G. RshwinGeorge & Ira GarshwinGeorge & Ira GerhswinGeorge & Ira GerschwinGeorge & Ira Gershwin [uncredited]George & Ira Gershwin, b. Jacob And Israel GershovitzGeorge & Ira GerswinGeorge & Ira GreshwinGeorge + Ira GershwinGeorge - GershwinGeorge - I. GershwinGeorge - Ira GershwinGeorge / Ira GershwinGeorge And Ira GershwinGeorge And Ira Gershwin, B. Jacob And Israel GershovitzGeorge And Ira GershwnGeorge And Ira GerswhinGeorge And Ira GerswinGeorge And Ira GeshwinGeorge Ans Ira GershwinGeorge E Ira GershwinGeorge Et Ira GershwinGeorge GErshwin - Ira GershwinGeorge Garswin / Ira GershwinGeorge Gerhswin - Ira GershwinGeorge Gerhswin-Ira GershwinGeorge Gerhwin-Ira GershwinGeorge Gerschwin / Ira GerschwinGeorge Gershein, Ira GershwinGeorge Gershin & Ira GershwinGeorge Gershin; Ira GershwinGeorge Gershiwm / Ira George GershiwmGeorge Gershiwn Ira GershwinGeorge Gershiwn/Ira GershwinGeorge GershwinGeorge Gershwin & Ira GershwinGeorge Gershwin & Ira GerswinGeorge Gershwin , Ira GershwinGeorge Gershwin - Ira GershwinGeorge Gershwin - Ira GerswhinGeorge Gershwin - rIra GershwinGeorge Gershwin / Ira GershwinGeorge Gershwin /Ira GershwinGeorge Gershwin = Ira GershwinGeorge Gershwin And Ira GershwinGeorge Gershwin E Ira GershwinGeorge Gershwin Et Ira GershwinGeorge Gershwin I Ira GershwinGeorge Gershwin IRA GershwinGeorge Gershwin Ira GershwinGeorge Gershwin and Ira GershwinGeorge Gershwin – Ira GershwinGeorge Gershwin, I. GershwinGeorge Gershwin, Ira GershwinGeorge Gershwin, Ira GerswhwinGeorge Gershwin, Ira GesrhwinGeorge Gershwin,Ira GershwinGeorge Gershwin- Ira GershwinGeorge Gershwin-Ira GershwiGeorge Gershwin-Ira GershwinGeorge Gershwin/I. GershwinGeorge Gershwin/Ira GershwinGeorge Gershwin/Ira GerswinGeorge Gershwin/ira GershwinGeorge Gershwin; Ira GershwinGeorge Gershwin‒Ira GershwinGeorge Gershwin–Ira GershwinGeorge Gerswhin - Ira GershwinGeorge Gerswin - Ira GershwinGeorge Gerswin / Ira GershwinGeorge Gerswin / Ira GerswinGeorge Gerwhin / Ira GershwinGeorge Gishwin, Ira GershwinGeorge I Ira GershwinGeorge Och Ira GershwinGeorge Und Ira GershwinGeorge and Ira GershwinGeorge e Ira GershwinGeorge e Ira GrtswinGeorge et Ira GershwinGeorge u. Ira GershwinGeorge É. I. GershwinGeorge És Ira GershwinGeorge Și Ira GershwinGeorge – Ira GershwinGeorge&Ira GershwinGeorge, Ira GershwinGeorge-GershwinGeorge-Ira GershwinGeorge/GershwinGeorge/Ira GershwinGeorge/Ira GerswhinGeorgeGershwin-Ira GershwinGeorges Gershwin - Ira GershwinGeorge—Ira GershwinGeorhe Gershwin & Ira GershwinGerhswin, GershwinGerhwinGerhwin & GershwinGeroge & Ira GershwinGeroge And Ira GershwinGeroge Gershwin & Ira GershwinGeroge Gershwin / Ira GershwinGeroge Gershwin And Ira GershwinGeroge Gershwin, Ira GershwinGerschwinGerschwin / GerschwinGerschwin BrothersGerschwin/GerschwinGerschwin/GershwinGershein-GershwinGershinGershweinGershwein / GershwinGershwinGershwin & GershwinGershwin - G. GershwinGershwin - GershwinGershwin - I. GershwinGershwin - Ira GershwinGershwin / GershwinGershwin / Gershwin /Gershwin / I. GershwinGershwin ; GershwinGershwin And GershwinGershwin Bros.Gershwin BrothersGershwin G. & I.Gershwin George, Gershwin IraGershwin George/Gershwin IraGershwin George; Gershwin IraGershwin GershwinGershwin I & GGershwin I. , Gershwin G.Gershwin I. - Gershwin G.Gershwin I./Gershwin G.Gershwin I/Gershwin GGershwin and GershwinGershwin | GershwinGershwin – GershwinGershwin& GershwinGershwin, G. GershwinGershwin, Geo. & IraGershwin, George & IraGershwin, George/Gershwin, IraGershwin, GershwinGershwin, GerswhinGershwin, GerswinGershwin, I. GershwinGershwin, I.GershwinGershwin, Ira and GeorgeGershwin,GershinGershwin,GershwinGershwin- GershwinGershwin--GershwinGershwin-GershwinGershwin-GreenGershwin-I. GershwinGershwin-I.GershwinGershwin. GershwinGershwin/ GershwinGershwin/GeershwinGershwin/GerschwinGershwin/GershwinGershwin/GerswhinGershwin; GershwinGershwin\GershwinGershwingGershwinsGershwin–GershwinGershwin—GershwinGershwin★GershwinGerswhinGerswinGerswin,GershwinGerswin-GershwinGerswin-GerswinGerswin/GershwinGg. Gershwin-Ira GershwinGirshwinGoerge Gershwin / Ira GershwinHeorge Gershwin-Ira GershwinI & G GershwinI & G. GershwinI Gershwin - G. GershwinI Gershwin, G GershwinI Gershwin, G. GershwinI Gershwin-G. GershwinI Gershwin/G. GershwinI&G GerschwinI, & G, GershwinI, Gershwin - G. GershwinI. & A. GershwinI. & C. GershwinI. & E. GershwinI. & G GerswhinI. & G. GerhswinI. & G. GerschwinI. & G. GerscwinI. & G. GershwinI. & G.GershwinI. & George GershwinI. & H. GershwinI. &. G. GershwinI. + G. GershwinI. - G. GershwinI. And A. GershwinI. And G. GershwinI. And George GershwinI. And GershwinI. E G. GershwinI. Et G. GershwinI. G. GershwinI. George - G. GershwinI. Gerschwin-G. GerschwinI. GershwinI. Gershwin & G. GershwinI. Gershwin - G. GershwinI. Gershwin - G.GershwinI. Gershwin - George GershwinI. Gershwin - I. GershwinI. Gershwin -G. GershwinI. Gershwin / G GershwinI. Gershwin / G. GershwinI. Gershwin /G. GershwinI. Gershwin G. GershwinI. Gershwin – G- GershwinI. Gershwin – G. GershwinI. Gershwin, G. GershwinI. Gershwin- G. GershwinI. Gershwin-.G. GershwinI. Gershwin-G GershwinI. Gershwin-G, GershwinI. Gershwin-G. GershwinI. Gershwin-G.GershwinI. Gershwin-George GershwinI. Gershwin/G. GeorgeI. Gershwin/G. GershwinI. Gershwin/G: GershwinI. Gershwin; G. GershwinI. Gershwin–G. GershwinI. Gershwin—G. GershwinI. Gershwin•G. GershwinI. Gersshwin-G. GershwinI. Gerswhin - G. GershwinI. Gerswin/G. GershwinI. Gherswhin_G. GerswhinI. Greshwin-G. GreshwinI. U. G. GershwinI. Y G. GershwinI. and G. GershwinI. e G. GershwinI. et G. GershwinI. u. G. GershwinI. y G. GershwinI. y G. GerswinI.& G. GershwinI.& G.GershwinI.&G. GershwinI.+ G. GershwinI.-G. GershwinI.G. GershwinI.Gershin-G.GershwinI.Gershwin - G. GershwinI.Gershwin - G.GerschwinI.Gershwin, G.GershwinI.Gershwin-G. GershwinI.Gershwin-G.GershwinI.Gershwin/G. GershwinI.Gershwin/G.GershwinI.Gerwin-G.GershwinI.et G. GershwinI.u.G. GershwinI.u.G.GershwinIra & G. GershwinIra & Geo GershwinIra & Geo. GershwinIra & George GerschwinIra & George GershinIra & George GershwinIra & George GerswinIra + George GershwinIra / George GershwinIra And G. GershwinIra And Geo GershwinIra And Geo. GershwinIra And George GershwinIra And Georges GershwinIra E George GershwinIra En George GershwinIra Et George GershwinIra Et Georges GerswhingIra Gereshwin-George GershwinIra Gershin - George GershwinIra Gershwi-George GershwinIra GershwinIra Gershwin & Georg GershwinIra Gershwin & George GershwinIra Gershwin - G. GershwinIra Gershwin - George GershwinIra Gershwin - GershwinIra Gershwin / George GarshwinIra Gershwin / George GershwinIra Gershwin / Georges GershwinIra Gershwin /George GershwinIra Gershwin And George GershwinIra Gershwin George GershwinIra Gershwin, George GershwinIra Gershwin-Geo. GershwinIra Gershwin-GeorgeIra Gershwin-George GershwinIra Gershwin-Geroge GershwinIra Gershwin/ George GershwinIra Gershwin/George GerhwinIra Gershwin/George GershwinIra Gershwin/George GerswinIra Gershwin–George GershwinIra Gerswin-George GershwinIra Gerswin/George GerswinIra Geshwin-George GershwinIra Y George GershwinIra and George GershwinIra y G. GershwinIra y George GershwinIra&George GershwinIra, George GershwinIra-George GershwinIra-Gershwin-George GershwinIra/George GershwinIran Gershwin-George GershwinJ. & G. GershwinThe Brothers GershwinThe GershwinsThe Gershwnsgeorge Gershwin - Ira Gershwini. & G. GershwinАйра и Джордж ГершвинГершуинД. и А. ГершвиныДжордж и Айра Гершвинג'ורג' ואיירה גרשוויןGeorge GershwinIra Gershwin + +641304Henry SouthallAmerican jazz trombone player, born August 25, 1931 in Richmond, Virginia. +Worked with [a=Stan Kenton] 1958 and 1962-1966.Needs VoteHarry SouthallWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Thundering Herd + +641305Tom BorasAmerican jazz saxophonist and clarinetist, died 12 March 2003Needs VoteThomas BorasThomas BorazWoody Herman And His OrchestraAl Porcino Big BandDave Stahl BandWoody Herman And The Thundering Herd1:00 O'Clock Lab Band + +641495Vittorio MontiItalian composer, violinist and conductor most famous for [i]Csárdás[/i], written around 1904. + +Born - 6 January 1868 +Died - 20 June 1922 +Needs Votehttps://adp.library.ucsb.edu/names/103227https://portal.dnb.de/opac/showFullRecord?currentResultId=Vittorio+and+Monti%26any&currentPosition=1A. MontiB. MontiE. MontyF. MontiK. MontyMintiMomtiMonteMonteiMontiMonti V.Monti, V.MontyV MontiV. MontiV. MondiV. MontiV. MontisV. MontyV.MontiV.モンティVictor MontiVictorio MonteiVictorio MontiVictório MontiVincent MontiVitori MontiVitt. MontiVittorie MontiVittorioVittorio E. MontiVottorio MontiW. MontiW.MontiWittorio MontiВ. МонтиВ.МонтиВитторио МонтиМонтиМонти ВитториоМонтіСонтиФ. Монтиו. מונטיモンティヴィットリオ・モンティヴィットーリオ・モンティ蒙蒂 + +641764Jacques HourdeauxJacques Serge Désiré HourdeauxNeeds Votehttps://www.partitions-accordeon.com/artiste/Jacques+HourdeauxG. HourdeauxHourdeauHourdeauxHourdeaux JacquesJ. HordeauxJ. HourdeauxJ. HourdrauxJ.HourdeauxRourdeaux + +642080Roy TurkRoy Kenneth TurkAmerican songwriter, born September 20, 1892 in New York City, New York, USA, died November 30, 1934 in Hollywood, California, USA.Needs Votehttp://en.wikipedia.org/wiki/Roy_Turkhttp://www.songwritershalloffame.org/exhibits/C44https://adp.library.ucsb.edu/names/108801A. TurkB. TurkE. TurkFred TurkHurkLurkR E TurkR TurkR. PorkR. RurkR. TarkR. TurkR. TurrR. TvrdR. TürkR.TurkRay TurkRo. TurkRoy - TurkRoy RukRoy TürkRoy/TurkRoyturkT. TurkT.TurkTarkTinkTirkTiurkTorkToy TurkTruckTuckTukTurkTurk RoyTurk, R.Turk-RichmondTurk.TurkeTurkoTurnTürkW. Roy TurkР. ТаркТаркТурк + +642330Les EmmersonRobert Leslie EmmersonCanadian singer, songwriter, guitarist, and producer. +(17 September 1944 – 10 December 2021) Needs Votehttps://en.wikipedia.org/wiki/Les_Emmersonhttps://www.imdb.com/name/nm2419584/DurstEmersonEmmersomEmmersonL. EmersonL. EmmersonLemon-McCaffreyLes EmersonR. EmmersonRobert Les EmmersonemmersonFive Man Electrical BandThe Staccatos (3)Lemon-McCaffreyThe Smart Set (2) + +642505Ellen HargisAmerican classical soprano vocalistCorrectwww.ellenhargis.comhttp://www.youtube.com/user/EllenHargisE. HargisEllen L. HargisЭлен ХаргисTheatre Of VoicesSequentia (2)The Harp ConsortThe Newberry ConsortBoston Early Music Festival Chorus + +642842Red RichardsCharles Coleridge RichardsAmerican jazz pianist, born 19 October 1912 in New York City, USA, died 12 March 1998 in Scarsdale, NY, USA.Needs VoteCharles "Red" RichardsCharles 'Red' RichardsCharles ‘Red’ RichardsR. RichardsRed Richards QuintetRichardsMezz Mezzrow And His OrchestraTab Smith OrchestraThe Saints & SinnersThe Vic Dickenson Quintet"Big Chief" Russell Moore And His OrchestraThe Fletcher Henderson All StarsPanama Francis And The Savoy SultansOriginal Camellia Jazz BandRed Richards QuartetSedric-Clayton SextetMezz Mezzrow-Buck Clayton Orchestra + +643011Jimmy Lee MooreJames Lee MooreA Miami-based funk/soul bassist and guitarist. He began his career in Ohio where he worked as the bassist of [a=James Brown] for 19 years. + +For the jazz bassist, please see [a=Jimmy Moore].Needs Votehttp://stringpuller.net/http://www.myspace.com/stringpuller2008http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=238378&subid=1J. MooreJimmy MooreMooreThe Jungle BandThe G.A.'s + +643018Billy RossUS saxophone, clarinet and flute player born on April 12, 1948 in Brooklyn, NY. Based in Hollywood, Florida. Among his many credits are record dates with James Brown, Millie Jackson, Jermaine Jackson, Julio Iglesias, Duffy Jackson, and Melton Mustafa; tours with Marvin Gaye, Michel Legrand, Frank Sinatra, and Mel Tormé; and club engagements with Tony Bennett, Sammy Davis, Jr., Lou Rawls, and Nancy Wilson. For the past nine years, Ross has been a member of the house band of Sabado Gigante, a Spanish-language variety show filmed at Univision in Miami and viewed by 140 million people worldwide.Needs Votehttps://concord.com/artist/billy-ross/Bill RossWilliam J. RossTito Puente Jr. & The Latin RhythmWoody Herman And His OrchestraJaco Pastorius Big BandThe Ross-Levine BandThe Woody Herman Big BandWoody Herman And The Thundering HerdThe Woody Herman OrchestraMelton Mustafa Orchestra + +643272Liz ParkerElizabeth ParkerUK classical cellist. + +[b]Please do not confuse with BBC Radiophonic Workshop member [a346595][/b].Needs Votehttp://www.maslink.co.uk/cvs/cellos/parker%28elizabeth%29.htmlhttps://www.imdb.com/name/nm10248275/Elizabeth ParkerLondon Symphony OrchestraViolet WiresSinfonia 21 + +643273Abigail BrownBritish violinist. +She studied violin and voice at the Royal Northern College of Music and has worked as both a modern and baroque/early violinist.Needs VoteElectra StringsViolet WiresKreisler String OrchestraOrchestre Révolutionnaire Et RomantiqueThe English Concert + +643484Howard Dietzb. September 8, 1896, New York City, New York (USA). +d. July 30, 1983, NYC, New York (USA) of Parkinson's Disease. + +>> Please use [a=Schwartz & Dietz] when credited alongside [a=Arthur Schwartz] << +Howard Dietz was an American publicist, lyricist, and librettist. He served as publicist/director of advertising for Samuel Goldwyn Productions and later MGM and is often credited with creating Leo the Lion, its lion mascot, and choosing their slogan Ars Gratia Artis. He wrote the lyrics for more than 500 songs mostly in collaboration with composer [a=Arthur Schwartz]. Dietz was the director of ASCAP from 1959 to 1961, and wrote an autobiography, "Dancing in the Dark" in 1974. + +Inducted into the Songwriters Hall of Fame in 1972. In 1990 he received the ASCAP Award for Most Performed Feature Film Standard "That's Entertainment" from [i]The Band Wagon[/i].Needs Votehttps://en.wikipedia.org/wiki/Howard_Dietzhttps://www.britannica.com/money/Howard-Dietzhttps://www.songhall.org/profile/Howard_Dietzhttps://www.imdb.com/name/nm0226336/https://adp.library.ucsb.edu/index.php/mastertalent/detail/104923/Dietz_HowardD. HowardDIETZ HOWARDDavidDeitzDietzDietz HowardH, DietzH. DeitsH. DeitzH. DietzHaward DietzHowardHoward DeitzHoward DietsHoward DiezHoward DistaSchwartz & Dietz + +643485Marc BlitzsteinMarcus Samuel BlitzsteinAmerican composer (born March 2, 1905, Philadelphia, Pennsylvania - died January 22, 1964, Fort-de-France, Martinique). +Known for writing the English lyrics for "Mack The Knife," "Pirate Jenny," and the rest of Brecht and Weill's The Threepenny Opera, and their Rise and Fall of the City of Mahagonny. Composer of the leftist musical The Cradle Will Rock (1937, dir. Orson Welles), suppressed by the U.S. Works Progress Administration, Blitzstein was blacklisted in Hollywood through the 1950s. Openly gay, he was murdered by three sailors on a visit to Martinique in 1964. +Needs Votehttp://marc-blitzstein.org/http://marcblitzstein.com/https://en.wikipedia.org/wiki/Marc_BlitzsteinB. BlitzsteinBeitzsteinBiltsteinBiltzenBiltzsteinBlintzsteinBlitsteinBlitzateinBlitzeinBlitzesteinBlitzsteinBlitzsteingBlitzstienBlitzteiBlitzteinBlizsteinButzsteinM. BlitysteinM. BlitzensteinM. BlitzsteinM. BlitzstinM. BlitzteinM.BlitzsteinMac BlitzsteinMarc BitzsteinMarc BlitsteinMarc BlittzsteinMarc BlitzenMarcus Samuel BlitzsteinMare BlitzsteinMark BlitzsteinMaupray BlitzsteinN. BlitzsteinWeillБлицштейнМ. Блитцштейн + +643500Allan RobertsAllan RobertsAmerican songwriter, born 12 March 1905 in Brooklyn, USA, died 14 January 1966 in Los Angeles, USA. + +Most prolific songwriter, began his career in 1935 by writing for musicals. In 1944 he teamed up with [a643633] and together they penned a string of songs, o.a.: "You Always Hurt the One You Love", "Into Each Life Some Rain Must Fall" and "That Ole Devil Called Love". After Doris stepped back in 1947, he collaborated with [a705546] and wrote for Broadway shows. Together with [a712354] he co-wrote the hit song "To Know You (Is To Love You)". +He died in a hospital after a heart attack, age 61. +Needs Votehttps://www.imdb.com/name/nm0730814/?ref_=fn_al_nm_3https://en.wikipedia.org/wiki/Allan_Roberts_(songwriter)https://adp.library.ucsb.edu/names/109395A RobertsA RobertsA. RobbertsA. RobersA. RobertA. RobertoA. RobertsA. RomertsA.RobertsA; RobertsAl RobertsAlan RoberrtsAlan RobertsAllan RobertAllen RobertsHoward A. RobertsJ. RobertsL. RobertsNorbertsO. RobertsR. AlanR. RobertsROBERTSRobbertsRoberrtsRoberstRobertRobertsRoberts AlanRoberts AllanRobertsonאלן רוברטס + +643633Doris FisherDoris Fisher (born May 2, 1915, New York City, New York, USA – died January 15, 2003, Los Angeles, California, USA) was an American singer and songwriter. She wrote several hit songs in the 1940's such as "Angelina", "Into Each Life Some Rain Must Fall" and "That Ole Devil Called Love". Fisher frequently collaborated with lyricist [a643500]. Daughter of [a570720], sister of [a796058] and [a736972].Needs Votehttp://en.wikipedia.org/wiki/Doris_Fisher_(singer)https://www.ascap.com/repertory#ace/writer/10303952/FISHER%20DORIShttps://www.imdb.com/name/nm0279463/?ref_=nv_sr_srsg_0D FisherD. D. FisherD. FischerD. FisherD. FishetD.D. FisherD.FisherD; FisherDevilliDoria Doris FisherDoria FisherDorie FisherDorisDoris FischerDorish FisherDorothy FisherDorris FisherF. FisherFISHERFIsherFicherFischerFiserFishedFisherFisher DoliaFisher, D.Fisher-DevilliM. FisherR. Fisherd. FisherΡόμπερ Φίσσερדוריס פישרPenny Wise (3) + +643634Bill DeesWilliam Marvin DeesAmerican musician and songwriter, born 24 January 1939 in Borger, Texas, died 24 October 2012 in Mountain Home, Arkansas. He enjoyed a successful career in the Nashville music scene as a singer, songwriter and entertainer, traveling the world performing. Bill's music included the No. 1 hits "Oh, Pretty Woman" and "It's Over" recorded by [a=Roy Orbison], and his songs were also recorded by artists as diverse as Loretta Lynn, Dinah Shore, Johnny Cash, The Germs, The Newbeats, Glen Campbell, Al Green and Van Halen. Correcthttps://web.archive.org/web/20070515032029/http://www.billdees.com:80/biography.phphttps://www.legacy.com/obituaries/baxterbulletin/obituary.aspx?n=william-dees&pid=160774357http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=405357&subid=0http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=1606912&subid=0A.C. WilliamsB. DeesB. DeeB. DeesB. DessB.DeesBeesBill BeesBill DeedsBill DisBilly DeesDeedsDeeoDeersDeesDees BillDees BillsDees WilliamDeeseDeezDeosDesDessG DeesG. DeesG.DeesR. DeesW DeesW. DeesW. DerbW. M. DeerW.DeesWilliam DeesWilliam Dees a/k/a Bill DeesWilliam M. DeesWilliam Marvin DeesWilliam ReesWilliamsWilliams Dees + +643840Steve O'BradyCorrect + +643847Amp AttackDuo from UK devoted to Hard House, Acid House and Rave music.Needs Votehttp://www.ampattack.net/http://www.facebook.com/ampattackCamp AttackNeil JacksonMichael Franklin (3) + +643849Scott Fo-ShawScott Harris ForshawHard Dance DJ & producer from Leeds, UK. +Started producing Deep / Progressive / House in 2013 under his real name [a=Scott Forshaw].Needs Votehttp://web.archive.org/web/20100929220224/http://www.scottfoshaw.com/http://myspace.com/scottfoshawhttp://soundcloud.com/scott-fo-shawScot Fo ShawScott Fo ShawScott ForshawScott FoshawScott ForshawHausjackerRuff Club + +643897Johnny Moore (2)John Dudley MooreRhythm and blues guitarist and vocalist (born 20 October 1906, Austin, Texas - died 6 January 1969, Los Angeles, California). Best known as founder of the vocal and instrumental group [a=Johnny Moore's Three Blazers] with [a=Charles Brown] and [a=Eddie Williams (3)]. +Brother of [a=Oscar Moore] who played in the Three Blazers from 1947 to the mid-1950s. +He is credited with composing famous songs such as "Merry Christmas Baby" and "Drifting Blues" (although, this has been disputed by Charles Brown, who claimed to be the composer). +Needs Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=34845086&affiliation=BMI&keyid=238428&keyname=MOORE+JOHNNY+DUDLEYhttp://www.rockabilly.nl/references/messages/johnny_moore.htmhttps://adp.library.ucsb.edu/names/332386J MooreJ. Dudley MooreJ. MooreJ. NorreJ.D. MooreJ.MooreJD. MooreJohn Dudley MooreJohn Jeffrey MooreJohn MooreJohnnyJohnny Dudley MooreJohnny Dudley MoreJohnny MooreJohnny Moore And The BlazersJohnny Moore Orch.K. MooreMoonMoorMooreMoore (Moore JMoore Johnny DudleyMoore, JohnnyMoore, Johnny DudleyMoureJohnny Moore's Three BlazersJohnny Moore And His New BlazersJohnny Moore's Orchestra + +643902Rene BlochAmerican saxophonist, flutist, composer, arranger, and orchestra leader (born 1925). + +Bloch grew up in Los Angeles and graduated from Jefferson High School. He played as an alto saxophonist in swing bands and later in Latin jazz bands. Bloch was an important member of the band of pianist Johnny Otis in 1945 and in the mid-1950s of [a=Perez Prado And His Orchestra]. + +At the end of the 1950s, Bloch began directing his own combos.Needs Votehttps://salsabravave.blogspot.com/2009/10/rene-bloch-mr-latin-1962.htmlhttps://oac.cdlib.org/search?group=Items;idT=UCb109678631http://www.spaceagepop.com/bloch.htmR. BlochRene BlockRené BlochRené BlockHarry James And His OrchestraRene Bloch And His OrchestraCharlie Barnet And His OrchestraPerez Prado And His OrchestraRené And His Pachanga OrchestraRené Bloch And His Big Latin Band + +643957Fred ClarkSaxophonist.Needs VoteClarkClarkeF. ClarkF. ClarkeFreddie ClarkFreddie ClarkeFreddy ClarkJohnny Otis And His OrchestraWillie Mabon And His Combo + +644068Philip GreenPhilip Harry GreenPhilip Green was born in 1911 and died late in 1982 in Dublin, following a long illness. He started to learn the piano at the age of seven and began his professional career playing in various orchestras at the age of eighteen. He directed and played piano and harpsichord on 78s with many leading bands as well as lesser-known ensembles. For several years he was a 'house arranger/conductor' at Decca. From the mid-1940s onwards he was responsible for more than 150 film scores and numerous radio and television music recordings.Needs Votehttps://web.archive.org/web/20160308072026/http://robertfarnonsociety.org.uk/index.php/legends/philip-greenhttps://adp.library.ucsb.edu/names/352892F. GreenGreenGreen Harry PhilipGreen/PhilipGreeneOrchestra Conducted By Philip GreenP, GreenP. GreenPh. GreenPhil GreenPhilip Green And Pops Concert OrchestraPhilipe GreenPhilipp GreenPhilippe GreenPhillip GreenJose BelmonteThe Pilgrim (5)Philip Green And His OrchestraJoe Paradise And His MusicPhil Green And His RhythmPhilip Green And His Mayfair OrchestraPhilip Green And His Basin Street BandPhil Green And His Cuban CaballerosPhil Green's Dixieland BandPhilip Green And His Rhythm On ReedsPhil Green & His Swing On Strings + +644236Dominic SeldisDouble bass player, born in 1971 in Bury St. Edmunds, Suffolk, England.Needs Votehttp://dominicseldis.com/Dominiq SeldisConcertgebouworkestBBC National Orchestra Of WalesEuropean Soloists Ensemble + +644338Aarno RaninenAarno Erik RaninenFinnish singer, composer, arranger and musician (piano, accordion, violin, cello). Born on April 17, 1944 in Kotka, Finland; died September 2, 2014 in Tuusula, Finland.Needs VoteA, RaninenA. RaninenA. RaminenA. RaninenA.RaninenAarno LaurilaArno RaninenP. RaninenRaninenRoninenА. РаниненА. РаппиненJouni PohjolaGeorge RomainAarno Ranisen OrkesteriAarno Ranisen YhtyeThe SmokingsSyntikaatin Kuoro Ja OrkesteriAron AnimaalitAarno Ranisen Orkesteri Ja Kuoro + +644384Walter TramplerGerman viola and viola d'amore player, also a teacher (Munich, August 25, 1915 – Port Joli, Nova Scotia, Canada, September 27, 1997).Needs Votehttp://en.wikipedia.org/wiki/Walter_TramplerTramplerW. TramplerWalter H. TramplerWalther Tramplerワルター・トランプラーBoston Symphony OrchestraDas Strub-QuartettThe Chamber Music Society Of Lincoln CenterYale QuartetNew Music String QuartetCamerata BarilocheChamber Music NorthwestFritz Reiner And His Orchestra + +644434Jesse StoneJesse Albert StoneAmerican songwriter, pianist, arranger, and vocalist. He helped found Atlantic Records, writing and arranging many of the labels early hits. Stone was born in Atchison, Kansas but lived Kansas City as a boy and would return there as leader of Jesse Stone and His Blues Serenaders which included Coleman Hawkins. When the Kansas City scene began to diminish, Stone moved to New York where he and Herb Abramson met Ahmet Ertegun and started Atlantic Records. +Born: 16 November 1901 (Atchison, Kansas, USA) +Died: 1 April 1999 (Altamonte Springs, Florida, USA) +Married to singer [a=Evelyn McGee Stone]. + +Inducted into Rock & Roll Hall of Fame in 2010 (Non-Performer). +Inducted into Songwriters Hall of Fame in 2010. +Needs Votehttp://en.wikipedia.org/wiki/Jesse_Stonehttp://rockhall.com/inductees/jesse-stone/"Jesse Stone"AlbertG. StoneGess StoneJ C Calhoun' StoneJ StoneJ. A. StoneJ. JonesJ. StomeJ. StoneJ. StonesJ. stoneJ.-A. StoneJ.A. StoneJ.C. Calhoun' StoneJ.StoneJane StoneJasse StoneJene StoneJese StoneJesmetJess A. StoneJess StoneJessa StoneJesse "Charles Calhoun" StoneJesse 'Charles Calhoun' StoneJesse - StoneJesse / A. StoneJesse A. StoneJesse Albert StoneJesse JonesJesse-StoneJesse/ A. StoneJessee A. StoneJessie "Charles Calhoun" StoneJessie StoneJonesJosse EstoeJule StoneStoneStone / JesseStone, JesseStone/JesseY StoneY. StoneYesse StoneCharles CalhounJesse Stone OrchestraChuck Calhoun & His Atlantic All-StarsJesse Stone And His Blue SerenadersJesse Stone & His BandGeorge E. Lee And His OrchestraCharles Calhoun OrchestraJesse Stone And His HouserockersJesse Stone & The PebblesJesse Stone's Orchestra And Chorus + +644541Heinz BuchholzWerner Müller* 08 August, 1920 in Berlin, Germany. +† 28 December, 1998 in Cologne, Germany. +Needs VoteBuchholtzBuchholzBucholzH. BuchholtzH. BuchholzH. BucholzH.BuchholzHans BuchholzHeinz BuchholdHeinz BüchholzM. Heinz BuchholzRicardo SantosWerner MüllerRené Ullmer + +644692Михаил МатусовскийМихаил Львович Матусовский Mikhail Lvovich Matusovsky +Soviet poet and lyricist. +Born: July 23, 1915, Luhansk, Russia (now Ukraine) +Died: July 16, 1990, Moscow, USSR +Needs Votehttps://ru.wikipedia.org/wiki/Матусовский,_Михаил_ЛьвовичA. MatussovskiCurtisE. MatusovskisH. MatoussovskiH. MatusowskyM. KatusovskyM. Lvovich MatusovskyM. MaloussovskyM. MatasovskijM. MatousovksiM. MatousovskiM. MatousovskiyM. MatousseskiM. MatoussewskiM. MatoussovskiM. MatoussovskyM. MatoussowskiM. MatusevskiM. MatusouskyM. MatusovaskyM. MatusovdkyM. MatusovkijM. MatusovoskyM. MatusovskiM. MatusovskiiM. MatusovskijM. MatusovskisM. MatusovskiyM. MatusovskovoM. MatusovskyM. MatusovskyjM. MatusowskiM. MatussovskiM. MatussovskyM. MatussowskiM. MatussowskijM. MatuszovszkijM. マトゥーソフスキーM.MatusovskiM.MatusovskyM.MatusowskiMatousovskiMatousseskiMatoussouskiMatoussovskiMatoussovskyMattusowskiMattussouskiMatu SovskijMatusevskiMatusouskyMatusoveskyMatusovoskiMatusovoskyMatusovskiMatusovskijMatusovskij MikhailMatusovskyMatusowskiMatusowskijMatusowskyMatusskovskyMichael MatusowskiMichael MatussowskiMichail Lwowitsch MatussowskiMichail MatusovskijMichaił MatusowskiMichel MatoussouskiMichel MatoussovskiMichel MatoussovskyMichel MatoussowskiMihail MatusovskiMihail MatusovskyMikhail L. MatusovskijMikhail Lvovich MatusovskijMikhail Lvovich MatusovskyMikhail MatousovskiMikhail MatoussovskiMikhail MatusovkyMikhail MatusovskiMikhail MatusovskijMikhail MatusovskiyMikhail MatusovskyMikhail MatussovskyMotoussovkiN. MatusovskijS. MatusovoskySedoi M. MatusovskySlavieff Seboy MatusovskyV. MatousovskiW. MatusowskyА. МатусовскийЛ. МатусовскийМ. МatusovskyМ. МаtusovskyМ. МатусовскийМ. МатусовсккийМ. МатусовскогоМ.Л. МатусовскийМ.МатусовскийМатусовскиМатусовскийМатусовский М.Мих. МатусовскийМихаил Матусовски米·马都索夫斯基 + +644985Theodore RatzerAmerican cellist, born 18 April 1899 and died 27 December 1989.Needs VoteChicago Symphony Orchestra + +645043Jimmy RowserJames Edward RowserAmerican jazz bassist. +Born: April 18, 1926 in Philadelphia, Pennsylvania. +Died: June 24, 2004 in Teaneck, New Jersey.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_RowserJames E. RowserJames RowserJimmie RowserRowserジミー・ロウザーJunior Mance TrioThe Ray Bryant ComboIllinois Jacquet And His OrchestraMaynard Ferguson & His OrchestraHerb Ellis And The All-Stars + +645086Gail WilliamsAmerican horn player and brass pedagogue.Needs VoteGail M. WilliamsGail Maria WilliamsGail Williams & FriendsChicago Symphony OrchestraSummit BrassThe Chicago Chamber MusiciansChicago Chamber Musicians Brass Quintet + +645092Samuel ThaviuViolinist, born 1910, died 1 July 2000 in Evanston, Illinois. + +Member of the Chicago Symphony Orchestra 1934-1937. He then became concertmaster and soloist at several orchestras - the Kansas City Philharmonic and the Baltimore and Cleveland symphonies - before moving to the Pittsburgh Symphony, where he served for 20 years under [A=Fritz Reiner] and later [a=William Steinberg]. While in Pittsburgh, he served as conductor of the Carnegie Mellon Orchestra. +Needs VoteSam ThaviuSam ThavivSamuel ThavinThe Cleveland OrchestraChicago Symphony OrchestraBaltimore Symphony OrchestraPittsburgh Symphony Orchestra + +645323Richard CoburnAuthor, Singer +Born Ipswich, Mass., June 8, 1886 +Died Phelan, Calif., Oct. 27,1952 + +pseudonym of Frank Reginald DeLong; Mostly used for writing credits, most notably Whispering, first published 1920 +Songwriter for revue "Fancies". Needs Votehttps://en.wikipedia.org/wiki/Whispering_(song)AicloburnCabumCobernCobornCobournCobumCobunCoburenCoburnCoburn RichardCobwinDick CoburnGoburnKoburnR CoburnR. CaburnR. CoburnR. CoburneR. H. CoburnR.CoburnRic. CoburnRichard H. CoburnRichard SoburnV. Coburn + +645324Vincent RoseVincenzo CacioppoVincent Rose (born Vincenzo Cacioppo on June 13, 1880 in Palermo, Sicily, Italy - died May 20, 1944 in Rockville Center, New York, USA) was an Italian-born musician (piano, violin), composer and band leader. He moved to the US at the age of 17. + +He collaborated with lyricists [a=Larry Stock], [a=Jack Meskill], [a=Al Lewis], [a=Raymond Klages], [a=James Cavanaugh] and [a=Buddy G. De Sylva]. His most known compositions include "Blueberry Hill", "Whispering", "Linger Awhile" and "Avalon". +Needs Votehttps://www.songhall.org/profile/Vincent_Rosehttps://www.imdb.com/name/nm0741728/bio?ref_=nm_ov_bio_smhttps://www.imagesmusicales.be/search/composer/Vincent-Rose/236/ShowImages/8/Submit/https://adp.library.ucsb.edu/names/111264B. RoseB.RoseBilly RoseDe RozaJ. RoseL. RoseMoseO. RosePoorR. VincentRopeRoseRose VincentRose, VRoselRosieRossRoséRoweRóseV .RoseV RoseV. RhodesV. RosV. RosaV. RoseV. RossV.RoseVictor RoseVinc RoseVinc. RoseVincentVincent LewisVincent RossVincent/RoseVincente RoseVincet RoseW. RoseWincent Rosev. RoseРоузVincent Rose And His Orchestra + +645325John SchonbergerAmerican songwriter and violinist, best known for co-writing the song "Whispering" with lyricist & brother [a1001585] (as originally credited in 1920). + +(Later when the copyright was renewed, according to John Schonberger, the lyrics were not written by Malvin Schonberger but rather [a645323] was credited as the lyricist, and [a645324] was added as co-composer). +July 22, 1920, original copyright: Lyrics by Malvin Schonberger, music by John Schonberger; © July 22, 1920; 2nd copy July 27, 1920, Class E 486556. +June 11, 1924 copyright: Lyrics by Malvin Schonberger, music by John Schonberger; © June 11, 1924--July 8, 1924. +July 22, 1947, renewal attributes the music to John Schonberger and the lyrics to Malvin Schonberger. +July 27, 1947, renewal attributes the music to John Schonberger and Vincent Rose and the lyrics to Richard Coburn. + +The song charted twice in the 1960s. According to Allmusic, there have been over 700 versions of the song.Needs Votehttps://www.imdb.com/name/nm1176540/https://en.wikipedia.org/wiki/Whispering_(song)https://adp.library.ucsb.edu/names/108111A. SchonbergerBergerChambergerJ. C. SchonbergerJ. S. SchonbergerJ. SchoenbergerJ. SchonbegerJ. SchonbergerJ. SchoonbergerJ. SchönbergerJ. SconbergerJ.SchonbergJ.SchonbergerJ.SconbergerJoh. SchonbergerJohn SchoenbergerJohn SchombergerJohn SchonbergJohn SchonburgerJohn SchönbergerJohn ShonbergerM & J SchonbergerM. & J. SchanbergerM. & J. SchonbergerM. SchonbergerM. ShonbergerMarvin SchonebergerSchanbergerSchenbergerSchinbergerSchnbergerSchoenbergSchoenbergerSchombergSchombergerSchon BergerSchonbergSchonbergenSchonbergerSchonberger JohnSchonbergierSchonbeyerSchonburgerSchonebergerSchonerbergSchouburgerSchroederSchronbergerSchunbergerSchönbergSchönbergerSchöneberger JohannSchønbergerShoenbergerShonbergerShonburgerДж. ШенбергерДж. Шонбергер + +645820Liuh-Wen TingClassical violist. An active performer of diverse musical genres, Liuh-Wen Ting was a recipient of the Lincoln Center Chamber Music Society award, a member of the Meridian String Quartet, and has collaborated with, among others, the Manhattan String quartet, Orchestra of St. Luke’s, Cassatt String Quartet, Ensemble l’art pour l’art, singer/song writer Fredo Viola, and most recently the renowned Persian vocalist Shahram Nazeri, with sold-out performances in major concert halls throughout North America. She has recorded solo and chamber works for Capstone, Albany, Pogus, Tsadik and Mode records, and has been featured internationally at Ostrava New Music Days, Etnafest, Prague Spring, Warsaw Autumn, and Primavera en la Habana music festivals.Needs Votehttps://liuhwenting.com/Liu-Wien TingLiuh Wen TingLiuhwen TingTing Liuh-WenAmerican Composers OrchestraOrchestra Of St. Luke'sMeridian String QuartetNew York City StringsWestchester PhilharmonicThe North/South Chamber OrchestraSon Sonora String QuartetKings Highway String Quartet + +645836Barbara BelleBelle Einhorn NewmanAmerican pianist and songwriter, theatrical manager, talent manager and producer +Born November 22, 1922 in Brooklyn, New York, USA. +Married music publisher [a=Lee Newman (3)] (1951-). +Belle received a Bachelor of Arts degree from New York University in 1944. +In August of 1943, Anita Rothblum and Belle Einhorn began to register unpublished song copyrights together. In 1945 they finally got some of them published by Tin Pan Alley firms. They then came up with their pen names--[a=Anita Leonard] and Barbara Belle. Later, after having a couple of their songs published and co-credited to Louis Prima, Belle became his assistant, songwriter, secretary and general manager. +In 1947 Belle became the youngest female ASCAP member ever (at the time), was composer/lyricist for Louis Armstrong, Lucky Millinder and the McFarland Twins, 1950. +She was manager for Louis Prima, Keely Smith, Gene Williams, Buddy Rich and Fran Warren. +In juvenile court, she met Fran Warren and the two became good childhood friends--they met later as adults and Belle became her manager. She ran the "Barbara Belle Associates" management company. When Keely Smith divorced Louis Prima and left the band in 1961, Belle left with her, becoming her manager. She, her husband and company also managed the Nilsson Twins, Michael Chain, Jimmy Griffin and others. +Belle wrote songs for the musical "Jersey Boys".Needs Votehttps://composers-classical-music.com/b/BelleBarbara.htmhttps://www.ibdb.com/broadway-cast-staff/barbara-belle-497169B. BellB. BelleB.BellBarbara BellBeeleBeileBellBellaBelle + +645837Stan RhodesStanley Wayne RhodesAmerican Jazz Songwriter. + +Born: May 5, 1924 in Washington +Died: June 28, 1984 in Union City, New JerseyNeeds Votehttps://it.findagrave.com/memorial/189517511/stanley-wayne-rhodeshttps://adp.library.ucsb.edu/names/359228RhodesRoseS. RhodesS.RhodesStanley RhodesStanley Wayne RhodesWayne Rhodes + +645840Anita LeonardAnita (Rothblum) Leonard NyeAmerican pianist, composer and lyricist. Aka Anita Nye aka Louis & Anita. +Born 1922 Anita Rothblum. Married to comic actor [a1315461] (1940-2005, his death). +Best known for co-writing the song "A Sunday Kind Of Love" with [a=Barbara Belle]--the song has charted five times in the U.S. Between 1947-1988. +In August of 1943, Anita and Belle Einhorn began to register unpublished song copyrights together. In 1945 they finally got some of them published by Tin Pan Alley firms. They then came up with their pen names--Anita Leonard and Barbara Belle. Leonard's other collaborations included Evelyn Caroll, Chocky Fair (Charles B. Fair), and Marshall Barer. +She was on the "It's Your Bet" TV game show and "It Takes Two" TV show in 1969 with her husband.Needs Votehttps://en.wikipedia.org/wiki/A_Sunday_Kind_of_Lovehttps://www.imdb.com/name/nm8200475/https://www.findagrave.com/memorial/162558217/anita-nyeA. LeonardA.LeonardAnita Leonard NeyeAnita Leonard NyeAnita NyeLeonardLeonard NyeLeonardsNye + +646017Gillian FindlayClassical violinist, and Professor of Violin. +Former member of the [a=London Symphony Orchestra] (1980-1989). Member of [a=Tzigane Piano Trio]. Professor of Violin at the [l680970].Needs Votehttps://www.linkedin.com/in/gillian-findlay-18702638/https://www.imdb.com/name/nm1178464/https://www2.bfi.org.uk/films-tv-people/4ce2bc45289f6https://vgmdb.net/artist/19948G. FindlayGill FindlayLondon Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraThe Michael Nyman BandColin Towns Mask OrchestraTzigane Piano Trio + +646392Pierre ChevalFrench violin and viola playerNeeds VoteP. ChevalOrchestre National De L'Opéra De ParisLe Trio D'Archets De Paris + +646519Yvonne BenschopClassical alto vocalist.Needs VoteNederlands Kamerkoor + +646524Donald PalmaAmerican double bassist. Founding member of [a837570].Needs VoteDon PalmaDonald "Don" PalmaMr. PalmaSpeculum MusicaeLos Angeles Philharmonic OrchestraOrpheus Chamber OrchestraThe Group For Contemporary MusicMembers Of The Manhattan String Quartet + +646527Barbara BordenSoprano vocalist. + +Needs VoteB. BordenThe Tallis ScholarsNederlands Kamerkoor + +646532Tannie WillemstijnThe Dutch soprano, Tannie Willemstijn, studied at the conservatories of Rotterdam and Den Haag, finishing her studies in 1984CorrectTanny WillemsteinNederlands Kamerkoor + +646537Ananda GoudClassical contralto vocalistCorrectNederlands Kamerkoor + +646563The New World PhilharmonicNeeds Votehttps://www.imdb.com/name/nm4209418/"New World" Philharmonic OrchestraNew World PhilharmoniaNew World PhilharmonicNew World Philharmonic OrchestrNew World Philharmonic OrchestraOrquesta New World PhilharmonicThe New Philharmonich OrchestraThe New World Philharmonic Orchestra + +646860RIAS-KammerchorRIAS KammerchorChoir founded in 1948 as vocal ensemble by the RIAS (Radio In the American Sector) Berlin. For recordings of "lighter" music the choir appeared as [a842581]. +Leaders were: +1948–1954: [a2044382] +1954–1972: [a646865] +1972–1986: [a837343] +1987–2003: [a881713] +2003–2006: [a878386] +2007–2015: [a1316922] +since 2017/18: [a5127736]Correcthttps://www.rias-kammerchor.de/https://en.wikipedia.org/wiki/RIAS_KammerchorAugmented RIAS Male ChoirBerlin RIAS Chamber ChoirBerlin Radio Chamber ChoirBerlin Radio ChoirBerlin Radio ChorusBerlin Symphony ChoirChoeur RIASChoeur RIAS De BerlinChoeur RIAS de BerlinChoeur de Chambre RiasChoeur de la Radio de BerlinChoeursChoeurs De Chambre De Radio-BerlinChoeurs RIAS- RSO BerlinChoirChorChor Des Rias BerlinChor Radio BerlinChorusChorus Of Radio BerlinChorus of Radio BerlinChorus, BerlinChœr De Chambre RIASChœur De Femmes Du RiasChœur RIASChœur Radio-SymphoniqueChœur Radio-Symphonique De BerlinChœursChœurs De Chambre RIASChœurs R.I.A.S.Chœurs de Radio BerlinCoro Da Camera RIASCoro Da Camera RiasCoro De Camara RIASCoro De Cámara RIASCoro De Câmara Da Rádio De BerlimCoro De Câmara RIASCoro De La Camara De La Radio RIASCoro Della RIASCoro Infantil RIASCoro da camera RIASCoro de Câmara RIASCorul De Cameră RIASCœur De Chambre RIASDamen Des RIAS KammerchorsDamen des RIAS KammerchorsDer Große RIAS-KammerchorDer Große Rias-KammerchorDer RIAS KammerchorDer RIAS-ChorDer RIAS-KammerchorDer RIAS-Kammerchor BerlinDer Rias KemmerchorDer Rias-KammerchorDer Verstärkte RIAS-KammerchorFrauenstimmen Des RIAS-KammerchoresFrauenstimmen Des RIAS-KammerchorsGrand ChoeurGroßer RIAS-KammerchorKammerchorKomorní Sbor RIASMembers Of The RIAS KammerchorMembers Of The RIAS-KammerchorMembers Of The Rias KammerchorMembers of RIAS-KammerchorMembers of the RIAS KammerchorMiembros Del Coro De Cámara RIASMitglieder Des RIAS-KammerchoresMitglieder des RIAS-KammerchorsMännerchor Des RIAS-KammerchorsRIASRIAS ChamberRIAS Chamber ChoirRIAS Chamber ChorusRIAS Chamer ChorusRIAS ChorRIAS ChorusRIAS KamarakórusRIAS KammerchoirRIAS KammerchorRIAS Kammerchor (RIAS Chorus)RIAS Kammerchor BerlinRIAS Kammerchor, BerlinRIAS Kammerchor/RIAS Chamber ChoirRIAS Male ChoirRIAS Symphony ChorusRIAS Symphony Chorus, BerlinRIAS kamerkorisRIAS-Chamber ChoirRIAS-ChorRIAS-Coro De CámaraRIAS-KamarakórusRIAS-KamarikuoroRIAS-KamerkoorRIAS-Kammerchor BerlinRIAS-Kammerchor, BerlinRIAS-KammerchoresRIAS-Motetten-ChorRIAS-MotettenchorRIAS/Chamber ChoirRKCRias Chamber ChoirRias Chamber ChorusRias ChorusRias KammerchorRias Kammerchor, BerlinRias-KamerkoorRias-KammerchorRias-Kammerchor BerlinRundfunkchorSoloists; Berlin Radio Chamber ChoirThe Rias ChorusThe Rias KammerchorVerstarkter RIAS-KammerchorVerstärkter ChorVerstärkter Männerchor Des RIAS KammerchorsVerstärkter RIAS-KammerchorWomen's Voices Of The RIAS Chamber ChoirКамерный Хор RIASКамерный Хор Берлинского Радио (RIAS)Камерный хор RIASКамерный хор Берлинского радио (RIAS)Камерный хор радиокомпании РИАСКамерный хор радиостанции РИАСRIAS-ChorDer Günther-Arndt-ChorSimon WallfischGünther ArndtSibylla RubensMaria Cristina KiehrUwe GronostayDaniel ReussMarcus CreedMatthias GoerneAxel KöhlerNorbert KlesseMatthias LutzeStephanie PetitlaurentFranz-Josef SeligMarkus SchuckSusanne LangnerClaudia TürpeKai RoterbergJoachim BuhrmannChristian MückeJanusz GregorowiczClemens HeidrichSabine Nürmberger-GembaczkaBärbel KaiserJudith SchmidtHildegard WiedemannKristin FossStephan GählerAndrea EffmertMadalena De FariaInès VillanuevaPaul MayrKlaus ThiemRudolf PreckwinkelAnette LöschVolker ArndtMarie-Luise WilkeNathalie SiebertWerner MatuschFriedemann KörnerChristine BohnenkampWolfgang EblingFriedemann KlosUlrike BartschChristina KaiserReinhold BeitenAndrew RedmondFriedemann HechtWaltraud HeinrichJörg GottschickHans-Christoph RademannAndreas Werner (5)Annette Schneider (2)Elisabeth RaveJörg GensleinTobias SchäferMichael AlberHerbert FroitzheimStuart KinsellaThilo BuschJohannes SchendelDagmar WietschorkeIngolf SeidelJohannes WeisserSimone Alex-KummerFranziska MarkowitschHannelore StarkeClaudia BuhrmannRegina JakobiSteffen BarkawitzAnja SchumacherErich BrockhausWilhelm FüchslRoswith Kehr-von MonkiewitschUlrike AndersenStefan DrexlmeierMarianne SchumannJens Winkelmann (2)Horst-Heiner BlößIris Anna DeckertGudrun BarthUrsula KraemerDorte KüstersRoland HartmannJohannes NiebischJohanna WinkelHelena PoczykowskaSimon Robinson (8)Mi-Young KimBarbara HöflingTobias MäthgerFriederike BüttnerVolker NietzkeAnja PetersenClaudia EhmannJason SteigerwaltUrsula ThurmairWiebke LehmkuhlKatharina HohlfeldMasashi TsujiMonika ZöllkauChristine Herrmann-WewerJutta PotthoffIsabel JantschekColine DutilleulStephanie MöllerHildegard RützelIngolf HorenburgRamona Castillo OsunaMargret GiglingerFabienne WeißSarah KrispinSibylla Maria LöbbertChristina RoterbergMinsub HongJohanna KnauthFelix Rumpf (2)Jonathan de la Paz ZaensKarola HausburgJulienne MbodjéEsther TschimpkeKatharina HeiligtagMarcel RaschkeViktoria WilsonShimon YoshidaAnna SchaumlöffelAna Carolina CouthinoCarmen CallejasJi Yoon (2)Anna PadalkoBruno MeichsnerJohannes D. SchendelJohannes Schwarz (5)Agata SzmukMichelle BaumManuel NickertMax BörnerKatharina Hohlfeld-RedmondMaria PujadesSophia Linden + +646865Günther ArndtGünther Arndt (April 1, 1907 - December 25, 1976) was a German choral conductor and radio producer, leader of the RIAS-Kammerchor from 1954 to 1972.Correcthttp://www.bach-cantatas.com/Bio/Arndt-Gunther.htmG. ArndtGuenther ArndtGunther ArndtGünter Arndtギュンター・アルントRIAS-KammerchorRIAS KnabenchorDer Günther-Arndt-ChorDas Günther-Arndt-Orchester + +646866Gerhard Schmidt-GadenGerman conductor, chorus master and vocal pedagogue, born 19 June 1937 in Karlsbad, Germany (today Karlovy Vary, Czech Republic).Needs Votehttps://en.wikipedia.org/wiki/Gerhard_Schmidt-GadenG. Schmid-GadenG. Schmidt-GadenGehrard SchmidtGerh. Schmidt-GadenGerhard Schmid-GadenGerhard SchmidtGerhard Schmidt GadenGerhard Schmidt-GardenGerhard Schmidt-SadenGerhardt SchmidtGerhardt Schmidt-GadenGerry SchmidtGregor Schmidt-GadenH. Schmidt-GadenHelmut Schmidt-GadenProf. Gerhard Schmidt-GadenProfessor Gerhard Schmidt-GadenSchmidt-GadenГерхард Шмидт-ГаденTölzer Knabenchor + +646868Wolfgang Meyer (2)German classical organ and harpsichord player.Needs VoteMeyerMeyer = マイヤーW. MeyerWilhelm MayerWolfg. MeyerWolfgang MayerBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinSchola Cantorum BasiliensisConsortium Musicum (2) + +647072Philippe Labrojournalist, senior reporter, radio director (RTL), television producer, writer, dialogist, director and songwriter (born August 27, 1936 in Montauban, ✝died June 4, 2025 in Paris at the age of 88)Needs VoteLabroP. LabroPh. LabroФ. ЛэброуPhilippe Christian + +647136Manou RoblinFrench singer and songwriter, born in 1944.Needs VoteM. RobbliaM. RobblinM. RoblinM. RoublinManon RoblinManouManou - RoblinManou RollinManou-RobbinManu RoblinMonique Hortense RoblinMonique RoblinRobin M.RoblinRoblin Manou + +647193Harold Arlen & Johnny MercerSongwriting duo, teaming up in 1941. Together they authored many popular songs.Correct-Mercer-Arlen-Alan - MercerAlen-MercerAllenAllen - MercerAllen, MercerAlren/MercerAmen/MercerArden/MercerArkeb-MercerArlan - MercerArlan / MercerArlan, MercerArle, MercerArle-MercerArlenArlen & MercerArlen , MercerArlen - KoehlerArlen - MercenArlen - MercerArlen / MercerArlen And MercerArlen H., Mercer J.Arlen Harold & John MercerArlen Howard, Johnny MercerArlen MercerArlen and MercerArlen y MercerArlen – MercerArlen, KoehlerArlen, MarcerArlen, MercerArlen,MercerArlen-MarcerArlen-MercerArlen-MereerArlen-RotterArlen/ MercerArlen/MercerArlen: MercerArlen; MercerArlene, MercerArlen–MercerArler - MercerArler-MercerArlin, MercerH Arlen, J MercerH. Allen & J. MercerH. Arien/J. MercerH. Arland - J. MercerH. Arlen & J. MercerH. Arlen & J. MercherH. Arlen & J.MercerH. Arlen - H. MercerH. Arlen - J. H. MercerH. Arlen - J. MercerH. Arlen - J.H. MercerH. Arlen / J. MercerH. Arlen / J.H. MercerH. Arlen J. MercerH. Arlen and J. MercerH. Arlen, J. H. MercerH. Arlen, J. MercerH. Arlen, J.H. MercerH. Arlen- J. MercerH. Arlen-J. H. MercerH. Arlen-J. MercerH. Arlen-J.H. MercerH. Arlen-J.MercerH. Arlen/J. H. MercerH. Arlen/J. MercerH. Arlen/J.H. MercerH. Arlen/J.MercerH. Harlen - J. H. MercerH. Harlen, J.H. MercerH. Harlen- J. H. MercerH. Harlen-J. MercerH. Mercer/H. ArlenH.Arlen & J. MercerH.Arlen , J. MercerH.Arlen - J. MercerH.Arlen, J.MercerH.Arlen-J-MercerH.Arlen-J.MercerH.Arlen/J.MercerHaorld Arlen - John MercerHarald Arlen & Johnny MercerHarald Arlen - Johnny MercerHarald Arlen/Johnny MercerHarlem & MercerHarlen-MercerHaroal Arlen, Johnny MercerHarold Arden-Johnny MercerHarold Arien & Johnny MercerHarold Arien, Johnny MercerHarold ArlenHarold Arlen & J. MercerHarold Arlen & John H. MercerHarold Arlen & John Herndon "Johnny" MercerHarold Arlen & John MercerHarold Arlen & Johnny MercerHarold Arlen - Johnny MercerHarold Arlen * Johnny MercerHarold Arlen + Johnny MercerHarold Arlen - John H. MercerHarold Arlen - John MercerHarold Arlen - Johnny MercerHarold Arlen - Jonny MercerHarold Arlen / J. MercerHarold Arlen / John H. MercerHarold Arlen / John Herndon MercerHarold Arlen / John M. MercerHarold Arlen / John MercerHarold Arlen / Johnny MercerHarold Arlen / Jonny MercerHarold Arlen / MercerHarold Arlen And John H. MercerHarold Arlen And Johnny MercerHarold Arlen John H. MercerHarold Arlen and Johnny MercerHarold Arlen e Johnny MercerHarold Arlen y J. MercerHarold Arlen – Johnny MercerHarold Arlen, J. MercerHarold Arlen, John H. MercerHarold Arlen, John MercerHarold Arlen, Johnny MercerHarold Arlen, MercerHarold Arlen-John H. MercerHarold Arlen-John Herndon "Johnny" MercerHarold Arlen-Johnny MercerHarold Arlen-Jonhhy MercerHarold Arlen/J. MercerHarold Arlen/John M. MercerHarold Arlen/John MercerHarold Arlen/Johnny MercerHarold Arlen; Johnny MercerHarold Arlen_Johnny MercerHarold Harlen-Johnny MercerI. Arlen/J. MercerJ, Mercer / H. ArlenJ. Arlen, J. MercerJ. Mercer & H. ArlenJ. Mercer - ArlenJ. Mercer - H. ArlanJ. Mercer - H. ArlenJ. Mercer - Harold ArlenJ. Mercer / H. ArlenJ. Mercer / R. ArlenJ. Mercer ; H. ArlenJ. Mercer H. ArlenJ. Mercer H.ArlenJ. Mercer, H. ArlenJ. Mercer, H. ArleneJ. Mercer-H. ArlenJ. Mercer/H. ArlenJ. Mercer/H. HarlenJ. Mercer/H.ArlenJ.Merce-H.ArlenJ.Mercer - H.ArlenJ.Mercer, H.ArlenJ.Mercer-H.ArlenJ.Mercer/H.ArlenJohn H. Mercer / Harold ArlenJohn H. Mercer, Harold ArlenJohn M. Mercer, Harold ArlenJohn Mercer, Harold ArlenJohn Mercer/Harold ArlenJohnmny Mercer-Harold ArlenJohnny Mercer & Arold ArlemJohnny Mercer & Harlod ArlenJohnny Mercer & Harold ArlenJohnny Mercer & Howard ArlenJohnny Mercer - Harold ArlenJohnny Mercer - Harold Arlen,Johnny Mercer / HarlenJohnny Mercer / Harold ArlenJohnny Mercer / Richard ArlenJohnny Mercer And Harold ArlenJohnny Mercer Harold ArlenJohnny Mercer, Harold ArlenJohnny Mercer,Harold ArlenJohnny Mercer-Harold ArlenJohnny Mercer-Harold MercerJohnny Mercer-Harry WarrenJohnny Mercer/Harold ArlenJonny Mercer, Harold ArlenKoehler - ArlenM. Arlen / J. MercerMascot - ArlonMercen Et ArienMercerMercer & AllenMercer & ArlenMercer + ArlenMercer , ArlenMercer - AllenMercer - ArienMercer - ArlenMercer - ArlonMercer - WarrenMercer -ArlenMercer / AllenMercer / ArienMercer / ArlenMercer ArlenMercer ~ ArlenMercer, AllenMercer, ArlenMercer, H. ArlenMercer, HarlenMercer--ArlenMercer-AllenMercer-AlllenMercer-ArienMercer-ArlenMercer-HarlenMercer/ ArlenMercer/AllenMercer/ArienMercer/ArlenMercer/ArlendMercer/ArleneMercer/H. ArlenMercer; ArlenMercer—ArlenR. Arlen, J. MercerR. Arlen, J.H. MercerWarren & MercerWarren - MercerWarren MercerWarren-MercerJohnny MercerHyman Arluck + +647326Eleanor SloanClassical violin and rebec player.Needs VoteEleanor SlaonEleanor SloaneThe Early Music Consort Of LondonThe Academy Of Ancient MusicThe Consort Of MusickeMusica ReservataThe Music PartyLes MenestrelsThe English Concert + +647404Constanze BackesGerman Soprano vocalist.Needs VoteBackesGabrieli ConsortThe Monteverdi ChoirEnsemble »Alte Musik Dresden«Balthasar-Neumann-ChorLa Capella DucaleLa Sfera Armoniosa + +647526Antoni WitAntoni Wit (born 1944, Kraków) is a Polish conductor. He is the present musical director of the Warsaw Philharmonic Orchestra, he has recorded over 90 albums, most of them for the Naxos label, and specializes in the works of Polish composers.Needs Votehttps://en.wikipedia.org/wiki/Antoni_WitA. WitAntoni WittAntonio WitConductorWitАнтони Витアントニ・ヴィットアントニ・ヴィトアントニー・ヴィットOrkiestra Symfoniczna Filharmonii NarodowejOrquesta Pablo SarasateOrquesta Sinfónica de Navarra + +647974Neil HutchinsonClassical music sound engineer for Decca. Founded [l759019] with [a848521].Needs VoteN. Hutchinson + +647976Frankie JaxonFrank Devera JacksonAfrican American vaudeville singer, female impersonator, stage designer and comedian, born 3 March 1897 in Montgomery, Alabama, died 15 May 1953.Needs Votehttps://adp.library.ucsb.edu/names/204852https://adp.library.ucsb.edu/names/110354https://en.wikipedia.org/wiki/Frankie_JaxonF. JaxonFrank JaxonFrankie "Half Pint" JacksonFrankie "Half Pint" JaxonFrankie "Half-Pint" JaxonFrankie 'Half Pint' JacksonFrankie 'Half Pint' JaxonFrankie 'Half-Pint' JaxonFrankie (Half Pint) JaxonFrankie (Half-Pint) JaxonFrankie Half Pint JaxonFrankie Half-Pint JaxonFrankie Halfpint JaxonFrankie JacksonFrankie Jaxon (The Black Hill Billies)Frankie “Half-Pint” JaxonHalf Pint JaxonHalf/JacksonJacksonJasonJaxonJaxoreJelly Roll HunterThe Black Hill BilliesTampa Red And His Hokum Jug BandCotton Top Mountain Sanctified SingersBill Johnson's Louisiana Jug BandFrankie Jaxon And His Hot Shots"Banjo Ikey" Robinson And His Bull Fiddle BandPrince Budda And His BoysPunches Delegates Of PleasureThe Black Hill Billies + +647979Jimmy BlytheJames Louis BlytheJazz/blues pianist from Chicago. + +Born May 1901 in South Keene, Kentucky. +Died June 1931 in Chicago, Illinois, from meningitis. + +He recorded dozens of piano rolls in the early 1920s and began cutting records in 1924. +He appeared on hundred of small group recording sessions for Vocalion, Paramount and Champion. +Needs Votehttp://www.redhotjazz.com/blythe.htmlhttp://ragpiano.com/comps/jblythe.shtmlhttp://en.wikipedia.org/wiki/Jimmy_Blythehttps://adp.library.ucsb.edu/names/103209BlithBlyhteBlyteBlythBlytheJ BlytheJ. BlytheJames "Jimmy" BlytheJames BlytheJimmie BlytheJimmy BlyteJimmy BlythJimmy Blythe TrioДж. БлайтWillie Woods (3)Duke OwensChicago FootwarmersState Street RamblersJimmy Bertrand's Washboard WizardsBlythe's Washboard BandJimmy Blythe And His RagamuffinsBlythe's Washboard RagamuffinsThe Hokum Boys (3)Dixie-Land ThumpersJimmy Blythe's OwlsJimmy Blythe's Washboard WizardsDixie FourJunie C. Cobb And His Grains Of CornThe Midnight RoundersBlythe And ClarkRobinson's Knights Of RestBlythe's Sinful FiveBirmingham BluetetteBlythe's Blue BoysJimmy O'Bryant's Famous Original Washboard BandJimmy O'Bryant's Washboard BandBlythe & Burton + +647984Jasper TaylorJasper Taylor (January 1, 1894, Texarkana, Arkansas – November 7, 1964, Chicago) was an early Jazz percussionist. He left his home Texas as a teenager in 1912 playing drums with Young Buffalo Bill's Wild West show and continued in show business playing in minstrel shows and in theatre pit bands. In 1913 he was in Memphis playing drums, xylophone and washboard in W.C. Handy's Orchestra of Memphis and with Jelly Roll Morton. In 1917 he relocated to Chicago and played in Clarence Jones' Orchestra. He joined the military during World War I and served in France with the 365th Infantry Band. The 365th Infantry were nicknamed the "Buffalo Soldiers," the enlisted personnel were almost entirely African-American soldiers from Texas and Oklahoma. Returning to America after the war he found work with Will Marion Cook and with W.C. Handy in New York. In the early 1920s he returned to Chicago and worked and recorded with a variety of artists throughout the decade including Dave Peyton, Fess Williams, Clarence Williams, Tiny Parham, Jimmy O'Bryant and Freddie Keppard. During the Depression he was forced to leave the music business and he worked as a shoe repairman. In the 1940s he resumed his music career and played with a variety of artists in the Chicago area including Punch Miller, Natty Dominique and Lil Hardin-Armstrong. He died in 1964 in Chicago. Needs VoteJ. TaylorJaspar TaylorTaylorReuben "River" Reeves & His River BoysFreddie Keppard's Jazz CardinalsJimmy Blythe And His RagamuffinsJelly Roll Morton And His OrchestraDixie Washboard BandBirmingham BluetetteJasper Taylor's State Street BoysBlue Grass Foot WarmersJimmy O'Bryant's Famous Original Washboard BandJimmy O'Bryant's Washboard BandJoe Jordan's Ten Sharps & FlatsJasper Taylor's 'Original Washboard Band' + +647996Will Johnson (2)William K. JohnsonAmerican banjoist, guitarist and singer, born 1905 in Lexington, Kentucky; died August 13, 1955 in Lexington, Kentucky in a house fire. Active in the music scene in and around Louisville, in 1926 he moved to New York with the Dixie Ramblers. Played also with George Howe (1926-1927) and [a=Luis Russell] (1927-1932). During this era he also made recordings with [a=King Oliver], [a=Henry "Red" Allen] and [a=Jack Purvis]. From 1933 to 34 he played with Fess Williams. After working as a freelance, he stopped playing and returned to Lexington. + +Not to be confused with bassist [a=Bill Johnson (4)], who also occasionally played banjo and guitar. +Needs Votehttps://www.allmusic.com/artist/bill-johnson-mn0001283709/biographyhttps://en.wikipedia.org/wiki/Bill_Johnson_(banjoist)https://adp.library.ucsb.edu/names/100886B. JohnsonBill JohnsonW. JohnsonWill JohbnsonWilliam JohnsonKing Oliver & His Dixie SyncopatorsLouis Armstrong And His OrchestraKing Oliver & His OrchestraLuis Russell And His OrchestraFats Waller And His BuddiesHenry "Red" Allen And His OrchestraJack Purvis And His Orchestra + +648050Maurice DruonMaurice Druon de Reyniacb : April 23, 1918 in Paris (France) +d : April 14, 2009 in Paris (France) +French novelist, member of the Académie Française and politician. +He's mostly known as the co-writer (with his uncle [a=Joseph Kessel]), of the lyrics of "Le chant des partisans", an anthem by the French Resistance during the Second World War. +CorrectDruonH. DruonM. DruonM. DronM. DruhonM. DruonM.DruonMaurice DronMaurice DruanMaurice Druon De ReyniacMaurice DruondR. Maurice DМ. ДрюонМорис Дрюон + +648052Michel EmerMichel Benjamin RosensteinFrench chanson songwriter and jazz pianist, born 19 June 1906 in St. Petersburg, Russian Empire, died 23 November 1984 in Paris, France.Needs Votehttps://fr.wikipedia.org/wiki/Michel_Emerhttps://adp.library.ucsb.edu/names/100313EderElmerEmaEmarEmerEmer M.Emer MichelEmer, MichelEmmerEmorEnerErnerEymerHemerKreemersL. EmerM. EmerM. EimerM. EinerM. EmerM. EmmerM. EnerM. ErmerM. EsnerM. Michel EmerM.EmerMichael EmerMichel Emer Et Ses RythmesMichel EmorMichel EymerMichel F.S.O EmerMichel ÉmerRosensteinÉmerМ. Эмерמישל אמרMicheline Day Et Son Quatuor SwingAndré Ekyan Et Son Orchestre JazzL'Orchestre Du Theatre DaunouMichel Emer Et Son OrchestreGrégor Et Ses GrégoriensOrchestra Angelo Rossi + +648208Benny JacksonBlues banjo and guitar playerNeeds VoteB. JacksonThe Chocolate DandiesOliver Cobb's Rhythm KingsEddie Johnson's Crackerjacks + +648212Claude HopkinsClaude Driskett HopkinsAmerican jazz pianist and bandleader, born August 24, 1903 in Alexandria, Virginia, died February 19, 1984 in New York City, New York. +In his big band played musicians such as [a=Ovie Alston], [a=Fernando Arbello], [a=Edmond Hall], [a=Bobby Sands]. +Needs Votehttps://en.wikipedia.org/wiki/Claude_Hopkinshttps://adp.library.ucsb.edu/names/104238C. HopkinsClaud HopkinsClaude "Hop" HopkinsHop HopkinsHopkinsClaude Hopkins And His OrchestraThe Claude Hopkins BandBuster Bailey QuartetHerb Hall QuartetVic Dickenson QuartetClaude Hopkins All StarsCozy Cole's Big SevenClaude Hopkins QuartetClaude Hopkins SwingstersClaude Hopkins And His Roseland Orchestra + +648217Ted BarnettBig band alto saxophonistNeeds VoteBarnetBarnettT. BarnettTed BarnetLucky Millinder And His OrchestraJimmy Mundy Orchestra + +648218J.C. JohnsonJay Cee JohnsonPianist and singer/songwriter born September 14, 1896 in Chicago and died February 27, 1981 in New York City. +Needs Votehttp://www.travlinthemusical.com/JChttp://en.wikipedia.org/wiki/J._C._Johnsonhttps://www.ascap.com/repertory#ace/writer/15415025/JOHNSON%20J%20Chttps://adp.library.ucsb.edu/names/102868Bill JohnsonC. JohnsonF. JohnsonHohnsonJ C JohnsonJ. C. JohnsonJ. G. JohnsonJ. JohnsonJ.-C. JohnsonJ.C JacksonJ.C. "Jimmy" JohnsonJ.C. 'Jimmy' JohnsonJ.C.JohnsonJ.G. JohnsonJC JohnsonJames C. JohnsonJames JohnsonJames P. JohnsonJay C. JohnsonJay Cee JohnsonJimmy JohnsonJohnsonJohnsondfJohnssonJohnstonHarry BurkeHarry Roberts (4)James Crawford (13)Blind Willie Dunn & His Gin Bottle FourJ. C. Johnson And His Five Hot SparksFeathers And FrogsWabash Trio + +648227Wesley WilsonWesley Wilsonb. October 1, 1893 in Jacksonville, Florida +d. October 10, 1958 in Cape May Court House, New Jersey + +Pianist, organist, songwriter and composer Wesley Wilson wrote about 400 songs, many of them with his wife [a1693175] ([a341494]). In the 1920s and 30s they worked with artists including [a307323], [a38201], [a288268], and the Mezz Mezzrow-Sidney Bechet Quintet, as well as performing at musical comedies, vaudeville, travelling minstrel shows and revues. +Needs Votehttps://en.wikipedia.org/wiki/Wesley_Wilsonhttps://adp.library.ucsb.edu/names/107225"Kid Sox" Wesley Wilson"Kid Wesley Wilson"Kid" Wesley Wilson"Sox" Wilson'Kid' Wesley 'Sox' Wilson'Kid' Wesley WilsonC. WilsonFox WilsonKid "Wesley" WilsonKid 'Sox' WilsonKid Wesley WilsonKid Wesley Wilson (Socks Wilson)Kid Wesley WisonKid WilsonN. WilsonS. WilsonSox WilsonW. "Socks" WilsonW. "Sox" WilsonW. S. WilsonW. WilsonW.S. WilsonWesleyWesley "Fox" WilsonWesley "Kid Sox" WilsonWesley "Socks" WilsonWesley "Son" WilsonWesley "Sox" WilsonWesley 'Socks' WilsonWesley 'Sox' WilsonWesley - WilsonWesley <Sox> WilsonWesley A WilsonWesley A. WilsonWesley Sox WilsonWesley »Sox« WilsonWesley, WilsonWessley "Sox" WilsonWilsonWilson/Pigmeat PeteSocks WilsonThe Mezzrow-Bechet QuintetGrant & WilsonHunter And JenkinsThe New Orleans Wild Cats + +648251Katherine K. DavisKatherine Kennicott DavisAmerican composer, pianist, & composer of famous Christmas carol "Carol Of The Drum (The Little Drummer Boy)". +Born June 25, 1892 in St. Joseph, Missouri, USA. +Died April 20, 1980 in Littleton, Massachusetts, USA. +Davis was also a teacher. She taught at Wellesley and in private schools in Philadelphia and Concord, and was a freelance editor and arranger. +[a=Harry Simeone] & [a=Henry Onorati] added lyrics & title to her composition, including "The Little Drummer Boy" title.Needs Votehttp://en.wikipedia.org/wiki/Katherine_Kennicott_Davishttps://www.imdb.com/name/nm0204936/C. DavisC.DavisCatherine - K. DavisCatherine DavisCatherine K. DavisCatherine, DavisDavidDaviesDavisDavis K. K.Davis Katherine K.Davis, Katherine D.Davis, Katherine K.DevesDiansiF. DavidFatherine K. DavisGary DavisK DaviesK K DavisK. Da isK. DavidK. DaviesK. DavisK. K. DarisK. K. DavidK. K. DavisK. ´DavisK.DavisK.K. DarisK.K. DavisK.K.DavisK.K.Deivisa (Katherine K. Davis)KK DavisKK. DavisKaterine DavisKatherie K. DavisKatherineKatherine D. DavisKatherine DaviesKatherine DavisKatherine K DavisKatherine K. DavidKatherine K. DaviesKatherine K.DavisKatherine Kenicott DavisKatherine Kennicot DaviesKatherine Kennicot DavisKatherine KennicottKatherine Kennicott DavisKathrine K. DavisKathryn DavisKathryn K. DaviesKay DavisRoz DavisU. Davis + +648314Robert MahuRobert H. MahuNeeds VoteMahuMahu, R.Mahu, RobertMahumManuMhuR MahuR. MahuR.MahuRobert H. MahuRobert Mahu as Human ResourceSaxdanceHuman ResourceSource CodeTerragonThe Point (2)Tribal ForceThe FirstNiso OmegaCriminal Investigation DepartmentGlowing Sounds Of Darkness + +648363Brian ShortBritish musician (1948 – 2014).Needs Votehttps://jazzrocksoul.com/artists/brian-short/B. ShortB.ShortBriam ShortShortBlack Cat BonesMamelang + +648378Alain TrudelAlain TrudelTrombonist, conductor, composer, arranger and educator born in 1966 in Montreal, Canada.Needs Votehttp://www.alaintrudel.com/A. TrudelTrudelNouvel Ensemble ModerneLes Violons du RoyFiati Virtuosi + +648575Efraim LogreiraPercussionistNeeds VoteEfrain LogreiraStan Kenton And His Orchestra + +648617Orbit1Sam GonzalezOrbit1 (Sam Gonzalez) has achieved international success with a multitude of hardcore releases on various labels across the globe including tracks featured on Hardcore Heaven, Hardcore Underground, Bonkers 17, Drift:Trance and even on Konami's DDR. + +In the last 12 months alone, Sam has been making waves and turning heads in on the world-wide scale with his hyper-active rave monsters, attracting attention from Seduction, Brisk, Al Storm, Mark Breeze, Robbie Long, Dj Weaver, Compulsion, Sunrize, Reese, D-lyte, Stormtrooper, Flyin, Dj Lord, Dj Uplift & D-ice & Reality amongst many others. + +In 2007, Sam launched his DJ career by jumping right into the deep end, embarking on a global tour, headlining events over the UK, Canada and in the USA, infecting his unique sounds and energetic and approach to hardcore ravers far and wide. + +July 2008 saw the biggest step yet, Sam relocating his studio to UK to further push the boundaries once again now in the home of Hardcore. Continuing on his legacy of catchy riffs, quick-fire sampling, out-of-this-world effects and thumping floor killers, Orbit1 combines an electric atmosphere and fresh sounds to devastating effect for one hell of an experience not to be missed!! +Needs Votehttp://www.myspace.com/orbit1djhttp://futurenoize.com/http://warpedscience.com/Orbit 1The AcolyteSam GonzalezMitosisBRK3Audiofreq + +648840Shepstone & DibbensEuropop duoNeeds VoteDibbens - ShepstoneDibbens / ShepstoneDibbens/ShepstoneM. Shepstone - P. DibbensM. Shepstone - P.J. DibbensM. Shepstone / P. DibbensM. Shepstone, P. DibbensM. Shepstone-P. DibbensM. Shepstone-P.J. DibbensM. Shepstone/P. DibbensM. Shepstone/P. J. DibbensM. Shepstone/P.J. DibbensM. Stepstone-P. DibbensMichael Shepstone / Peter DibbensMichael Shepstone, Peter DibbensMike Shepstone & Peter DibbensMike Shepstone / Paul J. DibbensMike Shepstone / Peter DibbensMike Shepstone And P. DibbensMike Shepstone And Peter DibbensMike Shepstone, Peter DibbensP. Dibbens - M. ShepstoneP. Dibbens / ShepstoneP. Dibbens/ShepstoneP. J. Dibbens - M. ShepstonePeter Dibbens & Michael ShepstonePeter Dibbens - Michaël ShopstoneShebstone-DibbensShepstone - DibbensShepstone - GibbensShepstone - P. DibbensShepstone / DibbensShepstone And DebbensShepstone And DibbensShepstone DibbensShepstone Et DibbensShepstone, DibbensShepstone-DibbensShepstone/DibbensShepstone/E. DibbensShettone, DibbensStepstoneStepstone/DibbensШипстоун - ДиббенсШипстоун — ДиббенсШипстоун, ДиббенсMike ShepstonePeter Dibbens + +648975Felix TannerFelix TannerBritish violist.Needs VoteF. TannerThe Heritage OrchestraRoyal Scottish National OrchestraScottish Chamber OrchestraRed Skies String SectionBrodowski String QuartetMarylebone Camerata + +648998Mary KingBritish classical mezzo-soprano vocalist, teacher, broadcaster and writer.Needs Votehttp://www.marykingvoice.co.uk/Electric PhoenixThe Clerkes Of Oxenford + +648999Brian EtheridgeBritish bass vocalist, fl. 1960-70sNeeds VoteBrian EthridgeEtheridgeLondon VoicesThe Academy Of Ancient MusicPro Cantione AntiquaThe Baccholian Singers Of LondonThe London Early Music Group + +649392Tommy BenfordThomas P. BenfordAmerican jazz drummer, born April 19, 1905 in Charleston, West Virginia, died March 24, 1994 in Mount Vernon, New York State. +Brother of [a=Bill Benford]. +Needs Votehttp://en.wikipedia.org/wiki/Tommy_Benfordhttps://adp.library.ucsb.edu/names/107110T. BedfordT. BenfordTom BenfordTommy BenfortColeman Hawkins All Star BandJelly Roll Morton's Red Hot PeppersAndré Ekyan Et Son EnsembleColeman Hawkins And His All Star Jam BandBob Wilber And His BandRex Stewart And His Dixieland Jazz BandAndré Ekyan Et Son Orchestre JazzWillie Lewis And His Negro BandThe Harlem Blues & Jazz BandLouis Bacon Et Son OrchestreCharlie Skeete And His OrchestraOliver "Rev." Mesheux's Blue SixThe Marty Grosz | Dick Wellstood QuintetFrank "Big Boy" Goodie Et Son OrchestreBob Wilber And His Jazz BandEddie South & His QuintetJimmy Archey's BandMart Gross And The Cellar Boys + +649494Giulio CacciniGiulio CacciniBorn in Rome, 8 October 1551 – died in Florence, 10 December 1618. + +Italian composer, teacher, singer, instrumentalist and writer of the late Renaissance and early Baroque eras. He was one of the founders of the genre of opera, and one of the most influential creators of the new Baroque style. He was also the father of the composer [a=Francesca Caccini] and the singer Settimia Caccini. + +Also known as "Romano" Caccini.Needs Votehttps://en.wikipedia.org/wiki/Giulio_Caccinihttps://www.britannica.com/biography/Giulio-Caccinihttps://www.treccani.it/enciclopedia/caccini-giulio-detto-giulio-romano/https://www.allmusic.com/artist/giulio-caccini-mn0000987574/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102550/Caccini_GiulioC. CacciniCacciniCaccini G.Caccini, GiulioCassiniD. CacciniD. KacciniD. KačiniDž. KačiniDž. KačinisDžulio KačīniDžūlio KačīniG CacciniG. CacciniG. KačiniG.CacciniGiuliano CacciniGiulio (Romano) CacciniGiulio Caccini Detto RomanoGiulio RomanoGiulio Romolo CacciniGiullio CacciniGuilio CacciniGulio CacciniJ. CacciniJuli CacciniKacciniKačīniД. КаччиниД. КаччініД.КаччиниДж. КассиниДж. КачиниДж. КаччиниДж.КаччиниДжулио КаччиниДжуліо КаччиніДжуліо КаччініКачиниカッチーニ卡契尼 + +649578Daniel ZalayProducer and engineer for classical releases.CorrectD. ZalayDaniel Zaley + +649582Kent NaganoKent NaganoKent Nagano (born 22 November 1951 in Berkeley, California) is an orchestra conductor of Japanese descent. Married to [a1567733]. Father of [a5640490]. +From 1989 to 1998 he was a conductor for the [url=http://www.discogs.com/artist/Orchestre+De+L%27Op%C3%A9ra+De+Lyon]Opera Orchestra of Lyon[/url]. In September 2006, he was named music director for the [url=http://www.discogs.com/artist/Orchestre+Symphonique+De+Montréal]Montreal Symphony Orchestra[/url] and replaced [a=Zubin Mehta] as musical director of the Bayerische Staatsoper.Needs Votehttps://www.kentnagano.com/https://en.wikipedia.org/wiki/Kent_NaganoK. NaganoMusical Director Kent NaganoNaganoКент Наганоケント・ナガノOrchestre symphonique de Montréal + +649584Orchestre De L'Opéra De LyonNeeds Votehttps://www.opera-lyon.com/fr/lopera-de-lyon/les-artistes/lorchestreL'Opéra De LyonLes Solistes De L'Opéra National De LyonLyon National Opera OrchestraLyon Opera OrchestraLyons Opera Chorus & OrchestraOpera De LyonOpéra De LyonOpéra de Lyon OrchestraOrchester Der Oper LyonOrchester Der Opéra National De LyonOrchestra De L'Opera De LyonOrchestra De L'Opéra National De LyonOrchestra Of The Lyon OperaOrchestra Of The Opera De LyonOrchestra Of The Opera National De LyonOrchestra Of The Opéra De LyonOrchestra Of The Opéra National De LyonOrchestra Of The Opéra de LyonOrchestra de l'Opéra de LyonOrchestreOrchestre De L'Opera De LyonOrchestre De L'Opera National De LyonOrchestre De L'Opèra De LyonOrchestre De L'Opéra LyonOrchestre De L'Opéra National De LyonOrchestre De l'Opéra National De LyonOrchestre Du Théatre National De L'Opera De LyonOrchestre National De L'Opéra De LyonOrchestre National De LyonOrchestre National de LyonOrchestre Of The Opéra De LyonOrchestre de L'Opéra de LyonOrchestre de l'Opera du LyonOrchestre de l'Opéra National de LyonOrchestre de l'Opéra de LyonOrquesta De La Ópera Nacional De LyonSoloists Of The Opéra National de LyonThe Orchestra Of The Opéra De Lyonorchestra de L'opera National de LyonОркестар Националне Опере Из ЛионаОркестр Лионской Национальной ОперыOrchestre De LyonOrchestre National De LyonJohn Eliot GardinerJean-Philippe CochenetKarol MiczkaFrederic TardyJean-Michel BertelliFrederic BardonChristophe RoldanJean RaffardSergio MenozziCorinne ContardoKeiko HashiguchiJulien Weber (3)Gilles CottinFabien BrunonDominique DelbartEric Le ChartierThierry CassardPierre CruchonCarlo ColomboRichard LasnetJean-Baptiste MagnonHenrik KringAlessandro ViottiJacek PiwkowskiPascal SavignonAlexis LahensCédric LaggiaFrançois MontmayeurRaphaëlle RubioCorentin AubryJørgen SkadhaugeAyako OyaPhilippe DesorsNicolas GourbeixLaurence KetelsSandrine Pastor-CavalierOpéra National De Lyon + +649585Dietrich HenschelGerman bass and baritone vocalist, born 1967 in Berlin, Germany.Needs Votehttps://www.dietrichhenschel.com/https://www.facebook.com/dietrichhenschel/https://www.instagram.com/didibaritone/https://www.youtube.com/channel/UCXXIufQkuMuMYHHdFsd4tfQhttps://en.wikipedia.org/wiki/Dietrich_HenschelDieter HenschelHenschelCollegium Vocale + +649589Stephan FlockGerman classical music producer and sound engineer, works at [a1110370].Needs VoteStefan FlockStephen FlockEmil Berliner Studios + +649871LuxiaLuxia are: +Jon Kingsley Hall +Peter George Stewart (George Stewart 2) +Steve Hill +Mat CookNeeds VoteJon Kingsley HallGeorge Stewart (2) + +650078Leroy KirklandLeroy Edward KirklandAmerican jazz and R&B guitar player, composer, conductor and arranger (born on February 10, 1906 in Columbia, SC - died on April 6, 1988 in New York, NY). +Manager of [a=Ruby And The Romantics].Needs Votehttps://en.wikipedia.org/wiki/Leroy_Kirklandhttps://adp.library.ucsb.edu/names/205422D. KirklandI. KierklandKIrklandKiklandKirkalndKirklanKirklandKirkland, LeroyKirklendKirkwoodKirlandKriklandL KirklandL. KirklandL.KirklandLe Roy KirklandLeRoy KirklandLenny KirklandLeroy KirlandLeroy KrklandLeroy LirklandLoeroy KirklandPercy KirklandS. KirklandЛ. КёрклендClaude CloudErskine Hawkins And His OrchestraCootie Williams And His OrchestraThe Leroy Kirkland OrchestraLeroy Kirkland's BandLeroy Kirkland's Hi-FlyersLeroy Kirkland's Rock-Chas + +650250Jérôme NaulaisFrench trombonist, born in 1951.Needs Votehttps://en.wikipedia.org/wiki/J%C3%A9r%C3%B4me_Naulaishttps://www.naxos.com/person/Jerome_Naulais/28116.htmGlamiasJ. NaulaisJerome NaulaisJerome NaulayJerôme NaulaisJérome NaulaisJérome NaulayJérôme MaulaisNaulaisEnsemble IntercontemporainTrombone Force 5 + +650343Ronnie MathewsRonnie MathewsAmerican jazz pianist, born December 2, 1935 in New York City, NY, USA, died June 28, 2008 in Brooklyn, New York City, NY, USA (pancreatic cancer)Needs Votehttp://en.wikipedia.org/wiki/Ronnie_MathewsMathewsMatthewsR. MathewsR. MatthewsRon MathewsRon MatthewsRonald MathewsRonald MatthewsRonnie MatthewRonnie MatthewsRonnie MattheysRonny Mathewsロニー・マシューズArt Blakey & The Jazz MessengersRoy Hargrove QuintetBill Hardman QuintetMax Roach QuintetLouis Hayes - Woody Shaw QuintetDexter Gordon QuartetFreddie Hubbard QuintetThe Johnny Griffin QuartetClark Terry And His Jolly GiantsThe Woody Shaw Concert EnsembleSam Jones QuintetDave Turner QuartetCharlie Persip's Jazz StatesmenThe Junior Cook QuintetJimmy Cobb QuartetDon Sickler QuintetPratt Brothers Big BandThe Clifford Jordan Big BandRonnie Mathews TrioThe Jazz Tribe (2)Louis Hayes SextetJoe Chambers & Trio DejaizSterling Place All-StarsLouis Hayes / Junior Cook QuintetGenerations (7)Yoshio Suzuki Trio + +650367Ah Ling NeuJapanese born and Brooklyn based viola player of Chinese origin.Needs VoteAh-Ling NeuAh-ling NeuSan Francisco SymphonyEos OrchestraWestchester PhilharmonicThe Fairfield OrchestraCassatt String QuartetArcana OrchestraThe North/South Chamber Orchestra + +650368JudiyabaAmerican cellist.Needs VoteJudyabaSan Francisco Symphony + +650370Dan SmileyDan Nobuhiko SmileyAmerican violinist, born in 1955. He's the son of [a1885872] and the brother of [a1166076].Needs VoteDan M. SmileyDan N. SmileySan Francisco SymphonyOakland Symphony OrchestraArch Ensemble + +650601The Early Music Consort Of LondonThe Early Music Consort of London was founded by [a=Christopher Hogwood] and [a=David Munrow] in 1967 and disbanded in 1976 following Munrow's death. It produced many influential collections of early music, typical of which was The Art of the Netherlands issued as a three-record set in 1976.Correcthttps://en.wikipedia.org/wiki/Early_Music_ConsortChoir of The Early Music Consort Of LondonConsort Of LondonEarly Music ConsortEarly Music Consort Of LondonEarly Music Consort of LondonLondon Early Music ConsortLondon Early Music GroupMembers Of The Early Music Consort Of LondonMembers Of The The Early Music Consort Of LondonThe Consort Of LondonThe Early Music ConcertThe Early Music ConsortThe Early Music Consort of LondonThe London Early Music Ensembleロンドン古楽コンソートAdam SkeapingSimon StandageJames TylerAlan LumsdenColin SheenDavid MunrowGeorge MalcolmEleanor SloanRoderick SkeapingChristopher HogwoodOliver BrookesGillian Reid (2)Jane RyanDavid CorkhillTrevor Jones (4)Michael Laird (2)Desmond DupréNigel NorthMartyn HillLeigh NixonBarry QuinnRoger BrennerMartin Nicholls (2)Iaan WilsonPolly WaterfieldRobert Spencer (2)Mary RemnantJohn Turner (5)Peter GoodwinDavid Johnson (15)Roger GrovesDennis NesbittGraham WhitingDavid PugsleyElizabeth PageValerie ButtsJohn Donaldson (5) + +650623John Wright (4)John WrightUK Hardcore producer and DJ.Needs VoteJ. WrightWrightDJ JFXAl Twisted & DJ JFXThe Hoover JocksUndergroove (5) + +650729Jacques LanzmannFrench songwriter (4 May 1927, Bois-Colombes - 21 June 2006, Paris). +He is the author of more than 150 songs, including several for French singer [a228109], and also adapted the lyrics of the [url=http://www.discogs.com/Various-Hair-Version-Originale-Fran%C3%A7aise/master/324058]French version of the musical Hair[/url].Correcthttp://fr.wikipedia.org/wiki/Jacques_Lanzmannhttp://jacqueslanzmann.typepad.frC. LanzmannJ LanzmannJ. HanzmannJ. LangmannJ. LanzemanJ. LanzemannJ. LanzmanJ. LanzmannJ. LanzmaurJ. LanzmourJ. LauzmannJ.LanzmannJLanzmannJacques LanzamJacques LanzemannJacques LanzmanJacqués LanzmanJaques LanzmanJaques LanzmannL. LanzmanLansmanLansmannLanzemanLanzmanLanzmannT. LanzmanTanzmannז'אק לנצמןז'אק לנצנן + +651142Annette BikViolin player and teacher, born in 1962, 1982 - 1987 member of the Hagen Quartett, 1988 - 1993 member of the Chamber Orchestra of Europe, since 1989 member of the Klangforum Wien.Needs Votehttps://www.academie-villecroze.com/en/young-talents/participants/speakers/annette-bikA. BikKlangforum WienHagen QuartettConcentus Musicus WienThe Chamber Orchestra Of EuropeKlangforum Wien String QuartetTetras Streichquartett + +651143Sophie SchafleitnerAustrian violinist and teacher, born 1974 in Salzburg, since 1997 member of the Klangforum Wien.Needs Votehttps://en.klangforum.at/ensemble/sophie-schafleitnerSofie SchafleitnerSophie SchaffleitnerKlangforum WienConcentus Musicus Wien + +651190DJ Space RavenNicolas PerrotteyNicolas Perrottey is a Hardtrance producer and DJ from France, producing countless projects and artists such as [a=DJ Space Raven], [a=Lochness DJ Team], [a=Katsuria Sailiku], [a=One Tree Hill], [a=Traxxus], [a=Andoria] and many more... + +Nicolas has also remixed artists such as [a=Jennifer Paige], [a=Ayumi Hamasaki], [a=DJ Shog], [a=Joop], [a=Dumonde], [a=Steve Hill], [a=Dream Dance Alliance], [a=P.H.A.T.T.], [a=Pierre Pienaar], [a=Wavetraxx], [a=Cascada], [a=Soulcry], [a=Lisaya], [a=Thomas Petersen], [a=DJ Sakin], [a=Nish], [a=DJ Gollum], [a=Liz Kay], [a=Star Trooper (2)] etc... + +Nicolas also operates as the technical brain behind the Swiss hard trance project [a=S.H.O.K.K.] together with [a=DJ Giotto]. + +His latest and current works include productions and remixes for the world's biggest labels such as [l=Warner Bros. Records]/[l=Maverick], [l=Sony BMG Music Entertainment], [l=7th Sense Records], [l=High Contrast], [l=Cuepoint Records], [l=Zooland Records], [l=Nukleuz], [l=Masif] and many many others... +Needs Votehttp://www.myspace.com/djspaceravenhttp://www.facebook.com/pages/DJ-Space-Raven-Nolita-Raven-Kleekamp-Official/262164137149760DJ SpaceRavenDJ SpaceravenRavenSpace RavenDr. ZornKlass-XLemon DriveNicolas PerrotteyOne Tree HillTraxxusAlphanovusKatsuria SailikuAndoriaKaemonNolitaBravenus + +651649Ceele BurkeCecil Louis BurkeBanjoist, guitarist, and vocalist, born in Los Angeles, CaliforniaNeeds VoteBurkeC. BurkeCeelle BurkeCele BurkeCelle BurkeLouis Armstrong And His Sebastian New Cotton OrchestraFats Waller & His RhythmLouis Armstrong And His OrchestraRex Stewart And His OrchestraRex Stewart And His 52nd Street StompersCeele Burke & His OrchestraLeon Elkin's OrchestraCeele Burke And His MusicCeelle Burke Sextet + +651654Franz JacksonFranz R. JacksonAmerican jazz saxophonist, clarinetist and bandleader. +Born : November 01, 1912 in Rock Island, Illinois. +Died : May 06, 2008 in Niles, Michigan. + +Played with : [a=Cassino Simpson], [a=Roy Eldridge], [a=Ben Webster], [a=Fats Waller], [a=Earl Hines] (and many others) and in his own groups.Needs Votehttp://www.franzjackson.com/index2.htmlhttps://www.theguardian.com/music/2008/jul/22/jazz.usahttps://adp.library.ucsb.edu/names/204853https://adp.library.ucsb.edu/names/107209F. JacksonFrank JacksonJacksonJackson, F.Marc SmierciakFletcher Henderson And His OrchestraEarl Hines And His OrchestraRoy Eldridge And His OrchestraFranz Jackson And His Original Jass All-StarsFranz Jackson And The Jazz EntertainersThe State Street RamblersLaura Rucker And Her Swing BoysFranz Jackson And His Jacksonians + +651809Ian RathboneViolin and viola player.CorrectThe Academy Of St. Martin-in-the-FieldsThe Euphonic String EnsembleBritten SinfoniaThe New Blood OrchestraShakti StringsThe Chamber Orchestra Of LondonColin Currie Group + +651811Darrell KokClassical violinist.CorrectDarrellKokThe Academy Of St. Martin-in-the-FieldsThe Euphonic String Ensemble + +652074Dark Vision MediaMixing, production, synth programming, sound design, and remixing. Run by [a455960]. Formed in 1998. Located originally in New York but relocated to Los Angeles, California, US. +Label profile: [l15748]Needs Votehttp://darkvisionmedia.comhttps://www.facebook.com/darkvisionmediahttps://twitter.com/darkvisionmediahttps://darkvisionmedia.bandcamp.comDarkVisionMediaDarkvisionmediaChristopher JonNurvC. Delgatto + +652321Julia TomCellist. Born and raised in California, Julia Tom received a Bachelor’s Degree cum laude in English Literature at Harvard University while studying at the Juilliard School of Music. Julia has spent her life immersing herself in new cultures, seeking ways to promote the musical language that unites across all borders.Needs Votehttps://juliatom.comConcertgebouworkestPhilharmonic Orchestra Of Europe + +652331Florian HoheiselGerman cellist.Needs VoteOrchester der Bayreuther FestspieleEssener PhilharmonikerFutur Jesus & The Electric Lucifer + +652908Matthew WellsBritish classical trumpeter.Needs VoteLa SerenissimaOrchestra Of The Age Of Enlightenment + +653198Eva GruesserConcertmaster of the [b]American Composers Orchestra[/b] since 2000. Eva Gruesser performed with a number of orchestras and ensembles, including the [b]Israel Philharmonic Orchestra[/b] (from 1976 to 1976), [url=http://www.discogs.com/artist/Sydney+Symphony+Orchestra%2C+The]Sydney Symphony Orchestra[/url], [url=http://www.discogs.com/artist/Brooklyn+Philharmonic+Orchestra%2C+The]Brooklyn Philharmonic Orchestra[/url], [b]BBC Scottish Symphony Orchestra[/b], [b]Lark Quartet[/b] (1st Violin from 1988 to 1996) and [b]Da Capo Chamber Players[/b] (from 1997 to 2001). She also was a founding member of the [b]Ensemble Modern[/b].CorrectEva GreusserEva GrüsserEnsemble ModernAmerican Composers OrchestraIsrael Philharmonic OrchestraThe Lark Quartet + +653490Esa KamuA Finnish violist.Needs VoteKamuRadion SinfoniaorkesteriFinlandia QuartetKari Rydman YhtyeineenMaté-Quartett + +653500Olavi RignellCorrect + +653513Salme Joki-LötjönenCorrect + +653524Heikki RautasaloHeikki RautasaloFinnish cellist. Born on December 21, 1942 in Jämsänkoski, Finland and died on January 22, 2009 in Helsinki, Finland.Needs VoteХейкки РаутасалоRadion SinfoniaorkesteriFinlandia QuartetKari Rydman Yhtyeineen + +653535Esa-Pekka SalonenEsa-Pekka SalonenEsa-Pekka Salonen (born June 30th, 1958, in Helsinki, Finland) is a Finnish conductor and composer. He was Principal Conductor and Artistic Advisor of the [a=Philharmonia Orchestra] in London (2008-2017), Conductor Laureate of the [a=Los Angeles Philharmonic Orchestra] and Composer-In-Residence at the New York Philharmonic. He was the Musical Director of the [a446472] from 2020, and in early 2024 announced that he will resign after the 2024-25 season. + +He studied horn and composition at the Sibelius Academy in Helsinki, and conducting with [a=Jorma Panula]. One of his classmates was the composer [a=Magnus Lindberg] with whom Salonen formed the groups [i]Korvat auki[/i] and [i]Toimii[/i]. Later on Salonen studied with the composers [a=Franco Donatoni], [a=Niccolò Castiglioni] and [a=Einojuhani Rautavaara]. + +His first conducting experience was in 1979 with the [a=Finnish Radio Symphony Orchestra]. In 1983, he replaced an indisposed [a=Michael Tilson Thomas] to conduct a performance of Mahler's Symphony No. 3 with the Philharmonia Orchestra at very short notice, and it launched his career as a conductor. He was the Principal Guest Conductor of the Philharmonia from 1985 to 1994. + +Salonen was Chief Conductor of the Swedish Radio Symphony Orchestra from 1985-1995. He made his debut with the Los Angeles Philharmonic in 1984, becoming the orchestra's tenth Music Director. + +He is married to violinist [a=Jane Price] and they have three children. They reside in Los Angeles, California.Needs Votehttps://www.esapekkasalonen.com/https://www.facebook.com/esapekkasalonen/https://twitter.com/esapekkasalonenhttps://en.wikipedia.org/wiki/Esa-Pekka_Salonenhttps://www.britannica.com/biography/Esa-Pekka-Salonenhttps://www.bach-cantatas.com/Bio/Salonen-Esa-Pekka.htmhttps://www.imdb.com/name/nm0758947/https://www.sfchronicle.com/entertainment/article/esa-pekka-salonen-sf-symphony-sheku-kanneh-mason-19507925.phpE-P SalonenE. P. SalonenE. SalonenE.-P. SalonenEsa Pekka SalonenEsa-Pckka SalonenEsa-Pekka SaloselleSalonenSan Francisco Symphonyエサ=ペッカ・サロネンエサ=ペッカ・サロネン沙隆尼 + +653548Pekka NissiläPekka NissiläBorn 1954. A Finnish musician who has recently worked more as a producer, music teacher and music journalist.Needs VoteP. NissiläBluesshakers + +653557Pertti KiriPertti KiriA Finnish violinist.Correct + +653582Juhani HomanenFinnish violinist.Correct + +653589Pentti PalmuCorrectPertti Palmu + +653807Merrill OsmondMerrill Davis OsmondMerrill Osmond (born April 30, 1953) is an American singer, bassist, songwriter, and producer. He is best known for being the lead vocalist and bassist of the family music group The Osmonds and The Osmond Brothers, as well as an occasional solo artist.Needs Votehttp://www.merrillosmond.com/https://en.wikipedia.org/wiki/Merrill_Osmondhttps://www.imdb.com/name/nm0652123/A. MerrilM OsmondM. D. OsmondM. OsmondM. WayneM.D. OsmondM.OsmondM.l OsmondMe. OsmondMerill OsmondMerr. OsmondMerril OsmondMerrillMerrill Davis OsmondMerryll OsmondOsmondOsmond M.The Osmonds + +654439Jimmy ShermanJames Benjamin ShermanAmerican jazz pianist and arranger, born August 17, 1908 in Williamsport, Pennsylvania, died October 11, 1975 in Philadelphia. Co-writer of "Lover Man". +Played with Alphonse Trent, Al Sears, Stuff Smith, Lil Armstrong, Putney Dandridge and others. From 1938 to 1952 Sherman worked as an accompaninst and arranger for vocal group [a=The Charioteers].Needs Votehttps://en.wikipedia.org/wiki/Jimmy_ShermanHermanI. ShermanJ ShermanJ, ShermanJ. ShermanJ. SermanJ. ShemanJ. ShermanJ. ShumanJ.ShermanJames "Jimmy" ShermanJames HermanJames Jimmy ShermanJames ShermanJames ShermannJames shermanJi. ShermanJim ShermanJim ShermesJimmy SheridanJimmy ShørmanJimmy SirmanJohn ShermanShemanShermanSherman JamesSherwinSherwoodshermanBillie Holiday And Her OrchestraStuff Smith And His Onyx Club BoysMildred Bailey And Her OrchestraThe CharioteersPutney Dandridge And His OrchestraJimmy Sherman Orchestra + +654440Roger RamirezRoger J. RamirezJazz pianist and organist, best-remembered as the composer of "Lover Man", born 15 September 1913 in San Juan, Puerto Rico, died 11 January 1994 in Queens, New York, USA. +Needs Votehttp://en.wikipedia.org/wiki/Roger_Ramirezhttps://adp.library.ucsb.edu/names/116583https://adp.library.ucsb.edu/names/339104"Ram" Ramines"Ram" Ramires"Ram" Ramirez"Ram" Ramírez'Ram' RaminesA. RamirezB.R. RamirezD. RamirezJ. RamirezKamirezMamirezR RamirezR, RamirezR. "Ram" RamirezR. 'Ram' RaminesR. (Ram) RamirezR. J. RamirezR. R. RamirezR. Ram RamireR. Ram RamirezR. RamerezR. RameriezR. RamiresR. RamirezR. RamirezeR. RamírezR. RemirezR.J. RamirezR.J.RamirezR.R. RamirezR.RaminezR.RamirezRairezRamRam RamierzRam RamirezRam RamsirezRam RamírezRam RemirezRamerezRamerizRamierzRamiezRaminezRamiregRamiresRamirezRamirez/RamRamirez/RogerRamirizRampirezRamírezRanirezRhamirezRmirezRodger "Ram" RamirezRodger RamirezRog RamirezRogerRoger "Ram" RamirezRoger "Ram" RamipezRoger "Ram" RamireRoger "Ram" RamirezRoger 'Ram' RamirezRoger ("Ram") RamirezRoger (Ram) RamirezRoger J. "Ram" RamirezRoger J. RamirezRoger RamRoger Ram RamirezRoger RamerizRoger RamiresRoger RamirexRoger “Ram” RamirezRoger, RamirezRogers - RamirezRomerisT. RamiresРамирезJohn Kirby And His OrchestraElla Fitzgerald And Her Famous OrchestraThe Ike Quebec Swing SevenThe Ike Quebec QuintetThe Harlem Blues & Jazz BandIke Quebec SwingtetWillie Bryant And His OrchestraBooty Wood And His AllstarsPutney Dandridge And His OrchestraThe Ram Ramirez Trio"Ram" Ramirez And His Orchestra + +654451Ludwig HerzerLudwig HerzlAustrian opera librettist, born 18 March 1872 in Vienna, Austria and died 17 April 1939 in St. Gallen, Switzerland.Needs Votehttp://de.wikipedia.org/wiki/Ludwig_Herzerhttps://adp.library.ucsb.edu/names/103762Dr. L. HerzerF. HerzerH. LudwigHarzerHerserHerzHerzepHerzerHerzer LudwigHerzer, LudwigI. HerzerL. HerzerL.HerzerLudw. HerzerLudwig HerzuW. Ludwig Herzervon Ludwig + +654453Emmerich KálmánImre KoppsteinHungarian operetta composer, born 24 October 1882 in Siófok, Hungary and died 30 October 1953 in Paris, France. Father of [a=Charles Kálmán].Needs Votehttp://en.wikipedia.org/wiki/Emmerich_K%C3%A1lm%C3%A1nhttps://adp.library.ucsb.edu/names/102417CalmanCálmanE KálmánE. KálmánE. KalmanE. KalmannE. KalmànE. KalmánE. KalnE. KlammE. KàlmanE. KàlmànE. KálmanE. KálmànE. KálmánE. KálmánnE.I. KalmanE.KalmanE.KalmannE.KalmánE.KálmánEkalmanEm. KalmanEm. KalmannEm. KálmánEm.KálmánEmeric KalmanEmeric KálmánEmerich KalmanEmerich KálmanEmerich KálmánEmerich kálmánEmm. KalmanEmmerich - KalmanEmmerich KalmanEmmerich KalmannEmmerich KalmànEmmerich KalmánEmmerich KamanEmmerich KálmanEmmerich KálmannEmmerich KálmànEmmerich KálmánnEmmerich KälmanEmmerich/KalmanEmmerick KalmanEmmericks KalmannEmmerico KalmanF. KálmánHálmannI. KalmanI. KalmanasI. KálmánI. KālmānsI.KalmanasI.KalmanoI.KálmánImre (Emmerich) KálmánImre KalmanImre KalmánImre KálmánImrė KalmanasJ. KalmanJ. KalmannJ. KálmánK. ImreK. IreKalmanKalmannKalmerKalmnKalmànKalmánKalmár ImreKamanKlamanKomponistKàlmànKálmanKálmannKálmànKálmánKálmán IKálmán I.Kálmán ImreKálmán imreKálmánnKálmár I.KälmanR. KalmanSalmanv. KálmánΕ. ΚαλμάνІ. КальманЕ. КальманЕмерих КалманИ. КальманИ.КальманИмре КалманИмре КальманКалманКальманЭ. КальманЭ. Кальманаカールマン + +654775Caroline BayetClassical violinist Caroline Bayet, born in Belgium in 1979, studied at the Royal Conservatory of Brussels in the class of Adam Kornischewsky.Needs VoteCollegium VocaleQuatuor ThaïsNorthernlightLe Banquet CélesteMillenium Orchestra + +654834Horst NeumannGerman chorusmaster and conductor, born 1 August 1934 in Böhmisch-Leipa, Germany (today Česká Lípa, Czech Republic) and died 22 August 2013 in Leipzig, Germany.Needs Votehttps://myspace.com/horstneumannchorusmasterhttps://de.wikipedia.org/wiki/Horst_Neumann_(Dirigent)H. NeumannNeumannRundfunkchor LeipzigInstrumentalgruppe Horst Neumann + +654835Matthias ClaudiusMatthias ClaudiusGerman poet also known under his pseudonym 'Asmus'. + +He was born 15 August 1740 in Reinfeld, Germany and died 21 January 1815 in Hamburg, Germany. +One of his poems "Wir pflügen und wir streuen", which [a2109292] translated and became the song "We Plough the Fields and Scatter"--it was added to a new church hymnal in 1861, along with some other translations from German. It has become a favorite harvest hymn in modern churches. +A great-grandchild is [a1960536].Needs Votehttp://en.wikipedia.org/wiki/Matthias_Claudiushttps://adp.library.ucsb.edu/names/102137https://adp.library.ucsb.edu/names/359218ClaudiusClaudius MatthiasClaudius, MatthiasM ClaudiusM. ClaidiusM. ClaudioM. ClaudiusM. KlaudiusM.ClaudiusMathias ClaudiusMatth. ClaudiusMatthaus ClaudiusMattias ClaudiusМ. Клаудиусマティアス・クラウディウス + +654970Charles HumelHubert MeloneFrench singer and composer born 1903, died1971.Needs VoteC. HumelCH. HumelCh. HumelCharles HumbelCharles HummelG. HummelHumelHummelUmelCharles Humel Et Son Quintette + +655086Jack FeiermanAmerican jazz trumpet playerNeeds VoteFeiermanJ. FeiermanJack FeiemanJack FeirmanCount Basie OrchestraJohn Fahey & His OrchestraDick Grove Big BandSteve Spiegl Big BandThe John Fick Southern California Jazz CompanyThe Steve Huffsteter Big Band + +655221Isaac WattsEnglish minister, hymn-writer, theologian, and logician (17 Ju­ly 1674 - 25 No­vem­ber 1748). He wrote 750 hymns, and is known as the "Father of English Hymnody". +Needs Votehttp://www.cyberhymnal.org/bio/w/a/t/watts_i.htmhttp://en.wikipedia.org/wiki/Isaac_Wattshttps://adp.library.ucsb.edu/names/102065Doc. WattsDr. Isaac WattsDr. WattsF. WattsH. WattsI WattsI. WattsI.WattsIsaac WaltIsaac WattIsaac Watts (Public Domain)Isac WattsIsacc WattsIssac WattaIssac WattsJonesWattaWatts + +655246Ben NationNew-Zealand classical cellist.Needs VoteBergen Filharmoniske Orkester + +655618John RostillJohn Henry RostillBritish songwriter and bassist, born 16 June 1942 in Birmingham, England, UK and died 26 November 1973 in Radlett, Hertfordshire, England, UK.Needs Votehttps://en.wikipedia.org/wiki/John_Rostillhttps://www.mynewsmag.co.uk/john-rostill-remembering-bassist-on-50th-anniversary-of-his-death/J RostillJ. RastillJ. RostellJ. RostilJ. RostillJ.RostillJoe RostillJohnJohn Henry RostillJohn RostellJohn RostilJohnBruceP. J. RostillRastellRastillRistillRostellRostilRostillRostill J.Rostill John HenryRostilleW. RostillThe Shadows + +655640Abraham 'Boomie' RichmanAbraham Samuel RichmanAmerican jazz saxophonist (tenor), clarinetist, bass clarinetist, flutist and piccolo player. +Born April 02, 1922 in Brockton, Massachusetts. +Died March 22, 2016 in Boynton Beach, Florida at the age of 94. + +"Boomie" played with : Muggsy Spanier, Les Elgart, George Paxton, Tommy Dorsey, Benny Goodman, Frank Sinatra, Nat King Cole, Ella Fitzgerald, Lena Horne, Sammy Davis, Rosemary Clooney, Tony Bennett, Peggy Lee and others. +Needs Votehttps://en.wikipedia.org/wiki/Boomie_Richmanhttps://adp.library.ucsb.edu/names/106892"Boomie Richman"Boomie" Richman"Boomie" Richmond'Boomie Richman'Boomie' RichmanA. RichmanAbe RichmanAbe RichmondAbraham "Boomie" RichmondAbraham (Boomie) RichmanAbraham RichmanAbraham RichmondB. RichmanB.RichmanBommie RichmanBommie RichmondBoomie RichlandBoomie RichmanBoomie Richman*Boomie RichmannBoomie RichmonBoomie RichmondBoomie RickmanBoomie' RichmanBoomy RichmanBoomy RichmondRichmanBoomy RichardsMad Milt SummerblouseTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenCootie Williams And His OrchestraBenny Goodman And His OrchestraJoe Reisman And His OrchestraGeorge Paxton & His OrchestraPee Wee Erwin And His Dixieland All-StarsMuggsy Spanier And His All StarsAll Star Alumni OrchestraHenry Jerome And His OrchestraVic Schoen And His All Star BandEdgar Sampson And His OrchestraStewart - Williams & Co.Ben Homer & His OrchestraStan Rubin And His Tigertown Orchestra + +655746Johnny Dodds' Black Bottom StompersJazz group, formed in Chicago in 1927 to record for Brunswick and Vocalion. Led by [a=Johnny Dodds].Needs VoteBottom StompersJ. Dodds' Black Bottom St'persJohnny Dodd's Black Bottom StompersJohnny Dodds And Black Bottom StompersJohnny Dodds And His Black Bottom StompersJohnny Dodds Black Bottom OrchestraJohnny Dodds Black Bottom StompersThe Black Bottom StompersジョニードッズブラックボトムストンパーズLouis ArmstrongBarney BigardJohnny DoddsCharlie AlexanderBaby DoddsBud ScottGerald ReevesGeorge Mitchell (3)Reuben ReevesRoy Palmer + +655748George Mitchell (3)American jazz cornetist and clarinetist, active in the 1920s. + +b. March 8, 1899 (Louisville, KY, USA) +d. May 22, 1972 (Chicago, IL, USA) + +He went to Chicago in 1919 and played with jazz musicians recently arrived from New Orleans. +Needs Votehttps://en.wikipedia.org/wiki/George_Mitchell_%28jazz_musician%29https://www.allmusic.com/artist/george-mitchell-mn0001861702/creditshttps://adp.library.ucsb.edu/names/109899G. MitchellG.MitchellGeo. MitchellGeorge BrownGeorge MitchelMitchellNew Orleans WanderersJelly Roll Morton's Red Hot PeppersJimmie Noone's Apex Club OrchestraEarl Hines And His OrchestraDoc Cook And His 14 Doctors Of SyncopationJohnny Dodds' Black Bottom StompersNew Orleans BootblacksFrankie Jaxon And His Hot ShotsLil Hardin Armstrong And Her OrchestraRussell's Hot SixDixie Rhythm Kings + +655749Frank MelroseFranklyn Taft MelroseAmerican jazz pianist, violinist and bandleader. +Recorded with Junie and Jimmie Cobb, Johnny Dodds, Jimmy Bertrand, Beale Street Washboard Band, Windy Rhythm Kings, Kansas City Tin Roof Stompers, Cellar Boys and as a leader. + +Born November 26, 1907 in Sumner, Illinois, USA. +Died September 01, 1941 in Chicago, Illinois, USA. + +Brother of [a584077] and [a891082]. For publishing, see: [l719638] and [l1604155].Needs Votehttps://en.wikipedia.org/wiki/Frank_Melrosehttp://www.redhotjazz.com/frankmelrose.htmlhttps://syncopatedtimes.com/frank-melrose-1907-1941/http://www.doctorjazz.co.uk/page18.htmlhttps://adp.library.ucsb.edu/names/100159F. MelroseFranck MelroseKansas City Frank MelroseMelroseMelrossBroadway RastusKansas City FrankBeale Street Washboard BandThe Cellar BoysThomas' DevilsKansas City Tin Roof StompersE. C. Cobb And His Corn-EatersKansas City Frank & His FootwarmersBud Jacobson's Jungle Kings + +655828Jimmy BeaumontJames BeaumontJimmy Beaumont (born on October 21, 1940 - died on October 7, 2017, McKeesport, Pennsylvania, USA) was an American singer and songwriter. He was the lead singer for the doo-wop group [a383381].Needs VoteBaumontBeamontBeaumontBeaumont James LJ. BeamontJ. BeaumondJ. BeaumontJ.BeaumontJames BeaumontJim BeaumontJimie BeaumontJimmie BeaumontJimmy Beaumont Of The SkylinersThe Skyliners + +656381June Watson WilliamsJune Williams KerenhappuchSongwriter (BMI IPI #: 202806800), associated with [a=Midnight Star] and [a=Bo Watson].Needs Votehttps://repertoire.bmi.com/Search/Catalog?num=7KTM4OKiU59yPNcRguJVDg%253d%253d&cae=IfdUg01HOMeteCJcE27xvA%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Midas%20Touch%22%2C%22Sub_Search_Text%22%3A%22watson%22%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3A%22Writer%2FComposer%22%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A20%2C%22Page_Number%22%3A1%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3A%22WILLIAMS%20KERENHAPPUCH%20JUNE%22%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22Ip_Address%22%3Anull%2C%22Pwa_Indicator%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dJ. W. WilliamsJ. WatsonJ. Watson WilliamsJ. WilliamsJune WatsonJune Watson/WilliamsJune WilliamsWadson / WilliamsWadson/WilliamsWatsonWatson / WilliamsWatson WilliamsWatson-WilliamsWatson/WilliamsWilliamsWilliams - Juno WatsonWilliams June Watson + +656620The Roger Wagner ChoraleAmerican chorus founded in 1947 by [a=Roger Wagner], originally under the name of the Los Angeles Concert Chorale.Needs Votehttps://www.facebook.com/TheRogerWagnerChorale/https://web.archive.org/web/20170516061816/http://therogerwagnerchorale.com/https://en.wikipedia.org/wiki/Roger_Wagner_Choralehttps://www.bach-cantatas.com/Bio/Wagner-Chorale.htmhttps://www.imdb.com/name/nm1133460/https://musicbrainz.org/artist/176a8191-39af-4046-9b0e-555541f897d8ChoraleChorale Roger WagnerCoral Roger WagnerEl Coro Roger WagnerFemale ChorusFemale Chorus SoloistsLa Coral Roger WagnerMembers Of The Roger Wagner ChoraleOrchestra & The Roger Wagner ChoraleRoger Vagner ChoraleRoger WagnerRoger Wagner Cho.Roger Wagner ChorRoger Wagner ChoraleRoger Wagner ChorusRoger-Wagner-ChorThe ChoraleThe Roger Wagner ChorusThe Women's Voices Of The Roger Wagner ChoraleWomen's Voices Of The Roger Wagner ChoraleWomen’s Voices Of The Roger Wagner Choraleロジェー・ワーグナー合唱団Ivan GallardoElin CarlsonJeannine WagnerFrank AlpersRoger WagnerPaul SalamunovichLeanna BrandSteve AmersonSusan MillsJudith SiirilaNancy GassnerSalli TerriBob SmartMiles RamsayNicole Baker (2)Tina McConnellLynda Sue Marks-GuarnieriJoan Ellis (2)Daniel PlasterAlyss Olivia SannerCarver CosseyJanet KorsmeyerSusan MontgomeryEli VillanuevaMonika BrucknerSandra BeckwithRisa LarsonHayden BlanchardTony KaticsAl OliveriJerry Jones (9)David Baumgarten (2)Aleta BraxtonRobert Johnson (50)Marjorie Jones (3) + +656621Frank AlpersWilliam Francis “Frank” AlpersAmerican televangelist and baritone singer. +Born April 10, 1924 in Los Angeles, California, USA. +Died February 12, 2006 (aged 81) in Prescott, Arizona, USA. +He was involved with the World Prophetic Ministry owned by [a5566315]. The organization was located in Colton, California and had the telecasts "The King is Coming", "What's Your Question", and the "Teaching the Bible" radio broadcast from 1976-1987. Alpers won the award for Best Male Vocalist from the National Evangelical Film Foundation in 1972.Needs Votehttps://prabook.com/web/w.frank.alpers/464815https://www.findagrave.com/memorial/16568270/william_francis_alpersF. AlpersThe Roger Wagner ChoraleThe Haven Of Rest QuartetThe Ralph Carmichael SingersThe Laymen SingersThe Frank Alpers Trio + +656799Roger Bobo(June 8, 1938, Los Angeles, California – February 12, 2023, Oaxaca, Mexico) American brass instrument player, teacher, and conductor who commissioned the first ever contrabass trumpet, designed by George Strucel. The contrabass trumpet is now owned by Bobo's ex-student [a8422929]. + +He spent twenty five years with the [a835190] and had close associations with [a538821], [a833560], and [a224329] during those years. + +Bobo lived in Japan and taught at the [l966578] in Tokyo.Needs Votehttp://www.rogerbobo.comhttp://en.wikipedia.org/wiki/Roger_BoboBobo RogerRobert BoboConcertgebouworkestLos Angeles Philharmonic OrchestraRochester Philharmonic OrchestraThe Los Angeles Brass QuintetThe Horn Club Of Los Angeles + +656806Marcia Van DykeAmerican violinist and actress, born 26 March 1922 and died 11 November 2002.Needs VoteM. Van DykeM.Van DykeMarcia E. Van DykeMarcia Van DyckMarcia VanDykeMareia Van DykeMarsha Van DykeSan Francisco SymphonyMilt Jackson & Strings + +657000Harold DicterowAmerican violinist, born 19 October 1919 in New York, New York and died 1 December 2000 in Simi Valley, California. He was the father of [a341812].Needs VoteHal DicterowHarold DickrowHarold DickterowHarold J. DicterowSan Francisco SymphonyLos Angeles Philharmonic Orchestra + +657017Janice JarrettCorrectJ. JarrettJanice JarretJarrettДжанис ДжарреттSteve Reich And Musicians + +657082Richard DehrRichard James DehrAmerican singer and songwriter, born 22 April 1913, Chicago, IL. Died October 8, 1989, Los Angeles, CANeeds Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=86741&subid=0https://www.celebsagewiki.com/rich-dehrBehrD.D. RichardDahrDearDehDeherDehiDehoDehrDehr, RichardDehtDelrDenrDerDerkDerrDherDohrErik DehrGehrR DehrR- DehrR. BehrR. DebrR. DehnR. DehrR. DemrR. DerrR. DherR.DehrRichRich - DehrRich DehrRich-DehrRich. DehrRich.DehrRichDehrRichard DeherRick DehrRicki DehrT. DehrdehrДеерР. ДерデールTerry Gilkyson And The Easy RidersThe Easy Riders + +657226Patrick BeaugiraudClassical oboist.Needs VotePatrick BeaugirardPatrick BeaugireaudCollegium VocaleLe Parlement De MusiqueThe Amsterdam Baroque OrchestraLa Petite BandeLes Talens LyriquesLe Concert D'AstréeLes Musiciens Du LouvreEnsemble Baroque De LimogesCafé ZimmermannRicercar ConsortBach Collegium JapanIl Complesso BaroccoLe Cercle De L'HarmonieGli Angeli GenèveLe Banquet Céleste + +657271Bob NolanClarence Robert NoblesCanadian country singer and songwriter, born 13 April 1908 in Winnipeg, Manitoba, Canada, died 16 June 1980 in Newport Beach, California, USA.Needs Votehttps://adp.library.ucsb.edu/names/110074B. NolanB. NolenB.NolanBob NolandBob RolanDolanKnowlandNolamNolanNolandR. NolanRob NolanRobert NolanНоуленThe Sons Of The PioneersRudy Sooter's Ranchmen + +657340Eddie DelangeEdgar DeLangeAmerican band leader and lyricist. + +Born January 15, 1904, in Long Island City, Queens, New York; died July 15, 1949, in Los Angeles, California (age 45). + +Became well known in the 1930s for his collaboration with [a=Will Hudson] in the Hudson-DeLange Orchestra, a collaboration that produced "Moonglow," one of the songs of the day. + +He also worked with [a=Jimmy Van Heusen] producing a string of hits, and at one stage between 1937 and 1939, there was at least one DeLange song on radio's "Your Hit Parade." He then moved to Hollywood and wrote songs for a number of hit movies. + +He was inducted into the Songwriters Hall Of Fame in 1989.Needs Votehttp://www.eddiedelange.comhttps://www.songhall.org/profile/Eddie_De_Langehttps://en.wikipedia.org/wiki/Eddie_DeLangehttps://adp.library.ucsb.edu/names/106965A. DeLangeAlter de LangeBalangeD LangeD. LangeDeDe LamngeDe LanceDe LangDe LangeDe Lange / EdgarDe Lange Edgar EddieDe LangerDe LangheDe LanoeDe LongDe LongeDe LoungeDe langeDe-LangeDe.LangeDeLanceDeLandeDeLaneDeLangDeLangeDeLange Edgar EddieDeLangerDel LangeDelageDelanceDelandeDelaneyDelangDelangeDelangesDelanteDelongeDemaugeDenungDeward De LangeDie De LangeDolangeE De LangeE DeLangeE. D. LangE. D. LangeE. De LangE. De LangeE. De LargeE. DeLandE. DeLangE. DeLangeE. DelangE. DelangeE. DemaugeE. E. De LangeE. LangeE. de LangE. de LangeE. de. LangeE. deLangeE.D. LangeE.D. LlangeE.D.LangeE.De LangeE.DeLangE.DeLangeE.DelangeE.de LangeEddey De LangeEddic De LangeEddie D. LangeEddie DLangeEddie De LanageEddie De LanceEddie De LangEddie De LangeEddie De langeEddie DeLangEddie DeLangeEddie DelangEddie DelangemEddie DelangieEddie DelongeEddie Dev LangeEddie E. LangeEddie de LangEddie de LangeEddio De LangeEddy De LangeEddy DeLangeEddy DelangeEddy Ed LangeEddy de LangeEdey DelangeEdgarEdgar D. LangeEdgar De La LangeEdgar De LangeEdgar De LargeEdgar De LongeEdgar DeLangeEdgar DelangEdgar DelangeEdgar Eddie De LangeEdgar Eddie DeLangeEdgar Eddie DelangEdgar Eddie DelangeEdgar LangeEdgar de LangeEdger DelangeEdie De LangeEdward De LangeEdward DeLangeEdward DelangeEssie De LangeG. de LangeLaneLangLangeLe LangedLangede Langede Langerde LongdeLangdeLangeДе ЛанжДеланжHudson-DeLange OrchestraEddie DeLange And His OrchestraEddie Delange And His Eight Screwballs + +658106David FlemingVisual artist from the 70'sNeeds VoteDave FlemingGribbitt! + +658354Hardcore MasifSteve Hill, Alf Bamford, Jon Langford, Gareth West, Guy Mearns & Darren JonesCollective of Hard trance producers. This is their Hardcore alias.CorrectHardcore Masif DJ'sMasif DJ'sSteve HillJon LangfordAlf BamfordRobert FrancisDanceforzeJason Lau + +658861Kazumi Yasui安井 一美 (Yasui Kazumi)Kazumi Yasui (安井 かずみ, Yasui Kazumi). Japanese lyricist, translator of poetry and essayist. Nickname ズズ (Zuzu). Wife of [a=Kazuhiko Kato]. Born January 12, 1939 in Yokohama; died March 17, 1994, of lung cancer, aged 55. Needs Votehttps://ja.wikipedia.org/wiki/%E5%AE%89%E4%BA%95%E3%81%8B%E3%81%9A%E3%81%BFK. YasuiK.YasuiKasumiKazumiKazumi YassuiY. YasuiYasuiZuzuК. ЯсуиЯсуси安いかずみ安井 かすみ安井 かずみ安井かすみ安井かずみ安井かづみ安井かズみ安井一美Kazumi Minami + +659232Andrea Lo VecchioAndrea Lo VecchioItalian singer, songwriter and musician, born 7 October 1942 in Milan. +Dead in Rome 17.02.2021 +He entered the history of Italian light music as the author of hits like [i]Luci a San Siro[/i] for Roberto Vecchioni, [i]E poi...[/i] for Mina, [i]Rumore[/i] for Raffaella Carrà and [i]Help me[/i] for Dik Dik.Needs Votehttp://it.wikipedia.org/wiki/Andrea_Lo_Vecchiohttps://films.discogs.com/credit/293139-andrea-lo-vecchiohttps://www.imdb.com/name/nm0516267/?ref_=nv_sr_srsg_0https://www.facebook.com/Andrea-Lo-Vecchio-Fan-Club-Ufficiale-142905425758231/?fref=nfA Lo VecchioA LovecchioA lo VecchioA. Lo VecchioA. CovecchioA. Ke VecchioA. L. VecchioA. La VacchioA. Lo VecchioA. Lo Vecchio*A. Lo VecchioniA. Lo VecchoA. Lo VecehioA. Lo VechioA. Lo vecchioA. Lo. VecchioA. LoVecchioA. LocecchioA. LovecchioA. LoveccioA. VecchioA. lo VecchioA.L. VecchioA.Lo VecchioA.LovecchioA.VecchioAil VecchioAli VecchioAndrea CovecchioAndrea LovecchioAndrea LoveccoAndrea VecchioAndrea lo VecchioArmando Lo VecchioD. Lo VecchioE. Lo VecchioL. Lo VecchioLo JecchioLo LecchioLo VecchioLo Vecchio AndraLo VechioLo VekioLo-VecchioLo. VecchioLoVecchioLocecchioLovecchioVecchioVecchioniVeccioVeochioЛо ВеккиоI Piccoli StregoniProibito + +659398Phil Moore (2)American composer, pianist and orchestra leader. +Born February 20, 1918, Portland, Oregon, USA. Died May 13, 1987, Los Angeles, California, USA. Father of [a=Phil Moore III]. +At a very young age he became a gifted pianist. After University he began to play with numerous West Coast bands in the Jazz scene. He invented the ‘block chord’ technique that was later modified and popularized by [a=Milt Buckner] and [a=George Shearing]. He appeared in movies and founded his own combo [a=Phil Moore Four]. After hiring by MGM he was in charge of the studio orchestras. He has composed, arranged and sung much famous show tunes and film scores. "Shoo Shoo Baby" is one of them. Worked, a.o. with [a=Frank Sinatra], [a=Marilyn Monroe] and [a=Lena Horne].Needs Votehttp://en.wikipedia.org/wiki/Phil_Moore_%28jazz_musician%29https://alchetron.com/Phil-Moore-(jazz-musician)https://blogs.iu.edu/bfca/2022/05/25/phil-moore-seven-careers-in-one-great-lifetime-composer-arranger-songwriter-conductor-instrumentalist-coach-producer/https://adp.library.ucsb.edu/names/337501MooreMoore. PhilMoreP. MooreP.MoorePh. MoorePhil MoonePhil Moore At The PianoPhil Moore ConductingPhil Moore En Zijn OrkestPhil Moore's MusicPhil MorePhil. MoorePhil Moore And His OrchestraThe Phil Moore Four + +659464Franz GeroldingerA classical trombone player (born 1966, Oberösterreich, Austria).Needs VoteKlangforum WienBühnenorchester Der Wiener Staatsoper + +659469Vera FischerClassical flutist.Needs Votehttps://en.klangforum.at/ensemble/vera-fischerV. FischerVerena FischerKlangforum WienMusica Antiqua KölnColette & RoseTarallucce + +659812York De SouzaJamaica born Jazz Pianist active in the 1930s in France and 1940s in Great Britain.Needs VoteDe SotaDe SousaThe Yorke de Souza TrioYorke De SousaYorke De SouzaBenny Carter And His Orchestra + +659814Gus DeloofAugust DeloofBelgian jazz trumpeter, composer and bandleader, born September 26, 1909 in Brussels, Belgium, died January 18, 1976 in the same city. +Needs VoteAuguste "Gus" DeloofAuguste DeloofDe LoofDeloofG. DelooG. DeloofG. DeloufGusGus DeLoofGus DejoofGus DeloofGus Deloof & His BandGus Deloof And His Music From The "Victory Club" BrusselsGus Deloof Et Son OrchestreQuintette Du Hot Club De FrancePhilippe Brun And His Swing BandRay Ventura Et Ses CollégiensViseur-Deloof SextetFud Candrix Et Son OrchestreGus Deloof Und Sein OrchesterRadioliansFud Candrix And The Swing-SeptettGus Deloof And His MusicGus Deloof And His Racketeers + +659817Josse BreyereJoseph Gerard BreyreBelgian artist (songwriter/trombonist), born in Malmédy on November 25, 1902.Needs VoteBreyere J.J. BreyreJos BreyereJosse BreyreJosse BreyèreJoysse BreyereJoe BreyreQuintette Du Hot Club De FrancePhilippe Brun And His Swing BandRay Ventura Et Ses CollégiensPhilippe Brun Et Son OrchestreCharlie & His OrchestraFud Candrix Et Son OrchestreRadioliansErnst Van 't Hoff En Zijn Orkest + +659821André CornilleFrench trumpet playerNeeds VoteAndre CornilleAndrew CornilleCornilleG. CornilleQuintette Du Hot Club De FrancePhilippe Brun And His Swing BandRichard Blareau Et Son OrchestreJacques Hélian Et Son OrchestreLe Septuor Jazz De Paris + +659823Philippe Brun "Jam Band"CorrectPhilippe Brun "Jam" BandPhilippe Brun & His Jam BandPhilippe Brun 'Jam' BandPhilippe Brun And His "Jam" BandPhilippe Brun And His Jam BandPhilippe Brun Et Son "Jam-Band"Philippe Brun Jam BandPhilippe Brun et son Jam BandPhilippe Brun's Jam BandDjango ReinhardtStéphane GrappelliMichel WarlopAlix CombelleLouis VolaCharlie LewisPhilippe BrunMaurice ChaillouMarceau SarbibCharles Delaunay + +659831Fletcher AllenFletcher Bedford AllenAmerican jazz saxophonist, clarinetist, composer and arranger. + + +Born : July 26, 1905 in La Crosse, Wisconsin, USA. +Died : August 05, 1995 in New York City, New York, USA. +Needs Votehttps://adp.library.ucsb.edu/names/300977AllanAllenF. AllenF.AllenFletcher - AllenBenny Carter And His OrchestraFletcher Allen And His OrchestraFreddy Taylor And His OrchestraFreddy Taylor And His Swing Men From HarlemLouis Armstrong And His Hot Harlem Band + +659833Guy PaquinetGuy Patrick PaquinetFrench jazz trombonist, born October 13, 1903 in Tours, France, died January 5, 1981 in La Selle sur le Bied, France. +His sons [a=André Paquinet] and [a=Michel Paquinet] also musicians. +Needs Votehttps://adp.library.ucsb.edu/names/370113G. PaquinetGuy "Patrick" PaquinetGuy PacquinetPaquinetPatrickQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreDjango's MusicFestival SwingPhilippe Brun And His Swing BandRay Ventura Et Ses CollégiensHubert Rostaing Et Son OrchestreRaymond Legrand Et Son OrchestreMichel Warlop Et Son OrchestreAlix Combelle And His Swing BandDjango Reinhardt Et Son Orchestre Du Boeuf Sur Le ToitPatrick & Son Orchestre De DanseRay Ventura Et Son OrchestreGuy Paquinet Et Son OrchestreLe Jazz Du Poste Parisien + +659837Bertie KingJamaican alto and tenor saxophonist, clarinetist and flutist, born June 19, 1912 in Colón, Panama, died in the 1980s, probably in New York. +King moved to England in 1935 where he played with Leslie Thompson and Ken "Snake Hips" Johnson in the Emperors of Jazz (1936-1937), performed and recorded with [a=Benny Carter] in Hague and Paris (1937-1938), recorded in London with [a=Una Mae Carlisle] (1938) and Johnson (1938, 1940). He led own band in London in 1943 and again in late 1940s. From 1951 to 1956 he made recordings of West Indian music.Needs Votehttps://en.wikipedia.org/wiki/Bertie_KingBernie KingBertie LingKingBenny Carter And His OrchestraDan Williams & His OrchestraBertie King's Royal JamaicansBertie King Jazz Band + +659839Len HarrisonJazz bassist. b. 1912, d. 1977Needs VoteL. HarrisonL. HarrissonFats Waller & His RhythmBenny Carter And His OrchestraThe Washboard Serenaders + +659953Jeffrey TateJeffrey Philip TateSir Jeffrey Tate, CBE (born 28 April 1943, Salisbury, Wiltshire, England – died 2 June 2017, Bergamo, Lombardy, Italy) was an English conductor.Needs Votehttps://en.wikipedia.org/wiki/Jeffrey_TateJ. TateJeffery TateJeffry TateSir Jeffrey TateTateジェフリー・テイトKammerorchester Berlin + +660067Vlad WeverberghBelgian clarinetistNeeds Votehttp://www.vlad.be/Mahler Chamber OrchestraVlad's Big BiteTrio DorNew Art TrioTerra Nova Collective + +660069Jean-Pierre DassonvilleClassical hornistNeeds VoteOrchestre Des Champs ElyséesOrchestre Du Théâtre Royal De La MonnaieLes Agrémens + +660090Judy ParkerJudy Marie ParkerSongwriter, collaborator with husband [a=Bob Gaudio].Needs VoteJ ParkerJ. ParkerJ.ParkerJ;ParkerJudi ParkerJudy M. ParkerJudy Marie ParkerParkerParker J.Parker JudyParker Judy M. Marie + +660407Harold BemkoAmerican cellist.Needs VoteHBHarold BemkeHarold BenkoHarold G. BemkoHarold Gregory BemkoHarrold BenkoHarrold Benko (HB)Tommy Dorsey And His OrchestraThe Abnuceals Emuukha Electric OrchestraThe Wrecking Crew (6) + +660411Lucio QuarantottoItalian composer, songwriter (Venice, Sept. 30, 1957 - † by committing suicide, Mestre, July 31, 2012). Many his songs are becoming famous thanks by Italian and foreign artists. He's known mainly for having written [i]"Con Te Partirò" (Time To Say Goodbye)[/i], performed by [a=Andrea Bocelli]. +Needs Votehttp://www.lucioquarantotto.it/http://it.wikipedia.org/wiki/Lucio_Quarantotto. QuarantottoA. QuarantottoA. QuavarantottoI. QuarantottoL QuarantottoL. QarantotoL. QuaranlottoL. QuaranotottoL. QuarantoL. QuarantotottoL. QuarantottoL. QuatantottoL.QuarantinoL.QuarantotaL.QuarantottoLuca QuarantottoLuciano QuarantottoLucio 48Lucio QuarantottLucio QuorantottoLucio48QaurantottoQuanantotto LucioQuarantetteQuarantonttoQuarantotoQuarantottoQuarantotto L.Quarantotto LucioQuarontotto LucioVan QuarantottoКуарантоттоЛучио Кварантото + +661007Alison KellyViolinist.Needs VoteAllison KellyLondon Classical PlayersSonia Slany String And Wind EnsembleMichaelangelo Chamber OrchestraDocklands Sinfonietta + +661057Vambola KrigulEstonian percussionist, born April 12, 1981 in Tallinn.Needs VoteKrigulEstonian National Symphony OrchestraHeinavankerEnsemble U: + +661120Tom AdairThomas Montgomery AdairAmerican songwriter, composer, and screenwriter. + +Born: 1913-06-15 (Newton, Kansas). +Died: 1988-05-14 (Honolulu, Hawaii). + +Inducted into Songwriters Hall of Fame in 2010.Needs Votehttps://en.wikipedia.org/wiki/Tom_Adairhttps://www.imdb.com/name/nm0010480/https://www.songhall.org/profile/tom_adairhttps://disney.fandom.com/wiki/Tom_Adairhttps://www.feenotes.com/database/composers/adair-tom-15th-june-1913-24th-may-1988/https://adp.library.ucsb.edu/names/100093A. ThomasAdaiAdainAdairAdaireAdarAdariAddairAddirAdfairM. AdairMontgomery-AdairT AdairT. A. MontgomeryT. AdainT. AdairT. AdiarT. AfairT. M. AdairT. M. Adair,T.AdaiT.AdairT.M. AdairT.M.AdairThomasThomas AdairThomas AdaireThomas M AdairThomas M. "Tom" AdairThomas M. AdairThomas Montgomery AdairThomas Montgomery AdaisTom AdiarTom AdirTom M. AdairTom Montgomery-AdairTony AdairАдейрТ. Адейр + +661389Carlo FarinaCarlo Farina born at Mantua (ca. 1600 – July 1639) was an Italian composer, conductor and violinist of the Early Baroque era.Needs Votehttp://en.wikipedia.org/wiki/Carlo_FarinaC. FarinaCarlo Farina MantovanoFarinaStaatskapelle Dresden + +661417Sunny SkylarSelig Sidney ShaftelAmerican composer, singer, lyricist, and music publisher. +Born October 11, 1913 in Brooklyn, New York, USA. +Died February 2, 2009 in Las Vegas, Nevada, USA. +Brother of one of his collaborators, songwriter [a1551586]. +As a singer, he appeared with a number of big bands, including those led by [a=Ben Bernie], [a=Paul Whiteman], [a=Abe Lyman], and [a=Vincent Lopez (2)]. After the end of the big band era, he continued to sing in nightclubs and theaters until he abandoned his singing career for good in 1952. As executive and publisher, he worked for [l1114702]. According to ASCAP, Skylar wrote more than 300 songs across the span of his career. He retired from songwriting in the early '70s and settled in Las Vegas, where he remained for the rest of his life. Inducted into Songwriters Hall of Fame in 2010.Needs Votehttps://shayskylar.com/sunnyskylarhttp://en.wikipedia.org/wiki/Sunny_Skylarhttp://www.allmusic.com/artist/skylar-p306300http://www.imdb.com/name/nm0805048/https://www.songhall.org/profile/sunny_skylarhttps://adp.library.ucsb.edu/names/344111https://adp.library.ucsb.edu/names/344113AsylarF. KylarF.KylarS SkylarS, SkylarS. KylarS. SkilarS. SkylarS. SkylarkS. SkylerS. SkytarS. SyklarS. SylarS.SkylarS.SkylarkSammy SkylarSanny-SkylarrSchuylerShylarShylerSklarSklyarSkularSkuylarSkylaSkylaeSkylarSkylar SunnySkylarkSkylavSkylerSkylneSkylorSkylor, SunnySlylarSonny SchuylerSonny SkylarSonny SkylerSonny SylarSunnySunny SkylaSunny SkylarkSunny SkylerSyklarSylarЛ. СпайлерСкиларスカイラーMichael VaughnSelig ShaftelSonny SchuylerThe Laughing Boy (4)Margarite AlmedaLeslie SaundersWoody Herman And His OrchestraThe Band That Plays The BluesSunny & Honey + +661418Ben Weisman (2)Benjamin WeismanAmerican songwriter (16 November 1921, Providence, Rhode Island, USA - 20 May 2007, Los Angeles, California, USA). +Prolific songwriter who wrote more songs for [a=Elvis Presley] than any other composer (some 57 in total), often working with [a=Fred Wise]. +A classically trained pianist, Weisman studied at Juilliard before entering the world of Tin Pan Alley, collaborating with various professional songwriters. Under contract with Julian and Jean Aberbach's [l265895], Weisman wrote songs for Elvis Presley, mainly for his movies and relocated to Los Angeles. +His songs have been performed by many artists, including [a=The Beatles], [a=Bobby Vee], [a=Dusty Springfield] and [a=Barbra Streisand]. +Needs Votehttp://en.wikipedia.org/wiki/Ben_Weismanhttps://www.theguardian.com/news/2007/may/24/guardianobituaries.obituariesB WeismanB WeissmanB. E. WeismanB. WaismnuB. WeisemanB. WeismamB. WeismanB. Weisman)B. WeismannB. WeissmanB. WeissmannB. WelsmanB. WiesemanB. WisemanB. WisemannB.WeismanB.WeissmanBan WaismanBan WeismanBar WeismannBebjamin WeismanBen E. WeismanBen WeigmanBen WeisBen WeismanBen WeismannBen WeismowBen WeissmanBen WisemanBenajmin WeismanBenjamin WeismanBennie WeismanBernie WeismanBernie WeissmanD. WeismanD. WisemanNeismanPen WeismanPhil SpringerSwisemanW. WeismanWaismanWeigmanWeimanWeinmenWeisemanWeishanWeismaWeismanWeisman B.Weisman BenWeisman, BWeisman,BWeisman. BWeismannWeismenWeissmanWelsmanWesimanWiesmanWilliamsWiseWisemanWisemannWismanWismannベン・ワイズマン本杰明·怀斯曼Robert St. ClairAl HillWise & Weisman + +661425Jack YellenJack Selig Yellen (Jacek Jeleń)Jewish-American lyricist and screenwriter, best remembered for his collaborations with [a661419] (July 6, 1892 - April 17, 1991). + +Born in Poland, Yellen emigrated with his family to the United States when he was five years old. He grew up in Buffalo, New York and began writing songs in high school. After graduating from the University of Michigan in 1913, he became a reporter, continuing to write songs on the side. + +Yellen's first collaborator on a song was [a886272], with whom he wrote Dixie songs including "Alabama Jubilee," "Are You From Dixie?," and "All Aboard for Dixieland." He is best remembered for his collaboration with composer Milton Ager. They entered the music publishing business as part-owners of the Ager-Yellen-Bernstein Music Company. Yellen also worked with many other composers such as [a290093], [a739933], [a677510], and [a301975]. + +Yellen wrote the lyrics to more than 200 popular songs of the early 20th century. Two of his most recognized songs, still popular in the 21st century, are "Happy Days Are Here Again" and "Ain't She Sweet." Yellen was on the board of ASCAP from 1951 to 1969. He was inducted into the Songwriters Hall of Fame in 1972 and the Buffalo Music Hall of Fame in 1996. + +He died in Concord, New York, aged 98. +Needs Votehttps://www.songhall.org/profile/Jack_Yellenhttp://www.allmusic.com/artist/jack-yellen-p140311http://en.wikipedia.org/wiki/Jack_Yellenhttp://www.imdb.com/name/nm0947386/https://adp.library.ucsb.edu/names/105070"J"AllanEllenH. YellenI. YellenIllenJ. JellenJ. MeuenJ. TellenJ. YallenJ. YeklenJ. YellanJ. YellelJ. YellenJ. YellewJ. YellienJ. YellinJ. YellonJ. YellowJ. YoungJ.YellenJackJack JellenJack JellinJack KellenJack Selig YellenJack TellenJack VellenJack YelJack YellanJack Yellen (uncredited)Jack YellerJack YellewJack YellinJack YellonJack YillenJack, YellenJelenJellenLew YellenQuellenSam YellinTellenTollenVellenWm Jack MellonY. JackYack YellenYeilinYeldonYelemYelenYellanYelleanYellehYellemYellenYellen JackYellen, JackYellerYellernYellersYellinYellonYellowYetlenYllenЙелленג'ק ילן + +661483Pat LongoAmerican jazz saxophonist, band leader and producer. See also company [l=Pat Longo]. +Needs Votehttp://patlongomusic.com/Patrick Joseph LongoHarry James And His OrchestraHarry James And His Big BandPat Longo And His Super Big BandPat Longo And His Hollywood Jazz Band + +661922Michael NiesemannMusician engaged in a wide array of musical activities ranging from baroque music on historic instruments (oboe and recorder) to jazz and avant-garde on the saxophone and on contemporary oboe.Needs VoteM. NiesemannMichael NiessemanNiesemannThe English Baroque SoloistsThe Academy Of Ancient MusicMusica Antiqua KölnConcerto KölnIl Concertino KölnLondon Jazz Composers OrchestraSérie BCappella ColoniensisNachtmusiqueBlue Shroud BandEnsemble RhapsodyOrchester Damals Und Heute + +662015Jack RennerEngineer and founder (together with [a=Robert Woods (2)]) of [l=Telarc] Records. +Born 13 April 1935; died 20 June 2019.CorrectJack L. Renner + +662168Ralph Vaughan WilliamsRalph Vaughan WilliamsBorn: 1872-10-12 (Down Ampney, United Kingdom) +Died: August 26, 1958 (Hanover Terrace, London, United Kingdom) + +Ralph Vaughan Williams OM was an English composer. +He was a friend of [a=Gustav Holst] who studied with [a=Max Bruch]; known particularly for "The Lark Ascending," written during WWI.Needs Votehttps://rvwsociety.com/https://vaughanwilliamsfoundation.org/https://en.wikipedia.org/wiki/Ralph_Vaughan_Williamshttps://www.britannica.com/biography/Ralph-Vaughan-Williamshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102609/Vaughan_Williams_RalphCarols By Ralph Vaughan WilliamsDr. R Vaughan WilliamsDr. R. Vaughan WilliamsJ. Vaughan WilliamsP. Vaughan WilliamsR V WilliamsR V-WilliamsR Vaughan WilliamsR. V. W.R. V. WilliamsR. Vaug. WilliamsR. Vaughan WilliamsR. Vaughan Williams, O.M.R. Vaughan-WilliamsR. Vaughn WilliamsR. Vaughn-WilliamsR. W. Vaughan WilliamsR. W. WilliamsR. WilliamsR.V. WilliamsR.V.W.R.V.WilliamsR.Vaughan WilliamsR.Vaughn WilliamsR.W.V.RVWRWVRalph V WilliamsRalph V. WilliamsRalph Vaugham WilliamsRalph Vaughan-WilliamsRalph Vaughn WilliamsRalph Vaugn WilliamsRalph WilliamsRaphe Vaughan WilliamsRobert Vaughan WilliamsSir Ralph Vaughan WilliamsThe ComposerV WilliamsV. WilliamsVaugham WilliamsVaughanVaughan - WilliamsVaughan WIlliamsVaughan WiliamsVaughan WilliamsVaughan Williams R.Vaughan Williams, RalphVaughan WilliasVaughan williamsVaughan-WilliamsVaughan-Williams R.Vaughan-Williams RalphVaughan/WilliamsVaughn WilliamVaughn WilliamsVaughn-WilliamsVon WilliamsVoughan WilliamsWilliamsВоан-УильямсР. Воан Уильямсウイリアムスレイフ・ヴォーン・ウィリアムズレイフ・ヴォーン・ウィリアムズヴォーン=ウィリアムスヴォーン=ウィリアムズヴォーン・ウィリアムスヴォーン・ウィリアムズ佛漢 · 威廉士 + +662263Larry WeissLaurence WeissAmerican singer/songwriter, born March 25, 1941 in Newark, New Jersey. +Wrote "Rhinestone Cowboy". + +IPI # +00032675194 +00041608111Needs Votehttp://www.rhinestonecowboy.com/https://airplaydirect.com/music/LarryWeiss/https://www.imdb.com/name/nm0919069/https://isni.org/isni/0000000120300279https://www.whosampled.com/Larry-Weiss/https://secondhandsongs.com/artist/6228https://rateyourmusic.com/artist/larry_weiss/https://www.last.fm/music/Larry+Weiss/+wikihttps://open.spotify.com/artist/3F1K7HEN17beHEBfHmbg2Ihttps://genius.com/artists/Larry-weisshttps://www.allmusic.com/artist/mn0000133970https://www.youtube.com/channel/UCRGGxJsSnTL7VTkHdl_pxKQhttp://viaf.org/viaf/86906058https://www.wikidata.org/wiki/Q16105815http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&authority_id=XX1158499http://catalogue.bnf.fr/ark:/12148/cb147801612http://id.loc.gov/authorities/names/n86820794https://en.wikipedia.org/wiki/Larry_WeissB. WeissBarry WeissD. WeissE. WeissI. WeissL WeissL. I. WeissL. WeissL. WeißL. WiessL. WissL.WeiseL.WeissLarry WeiseLarry WiersLarry WiesLarry WiessLarry, WeissLaurence WeidsLaurence WeissLaurence-WeissLawrenceLawrence WeissLawrence/WeissWeisWeissWeiss / LaurenceWeiss / LawrenceWeiss L.Weiss [uncredited]Weiss, LWeiss, LarryWeisseWelssWhiteЛ. ВайсTen Broken Hearts + +662507Dudley BrooksAmerican jazz pianist, arranger and composer. + +Born : December 22, 1913 in Los Angeles, California. +Died : July 17, 1989 in Los Angeles, California. + +Dudley worked with : Charlie Christian, Duke Ellington, Lionel Hampton, Benny Goodman, Stuff Smith, Count Basie (as arranger), Patti Page (as arranger), Elvis Presley and others. +Needs Votehttps://en.wikipedia.org/wiki/Dudley_Brookshttps://adp.library.ucsb.edu/names/201121BrooksBrooks DudleyBrooks, DBrooks, DudleyBudley BrooksD. A. BrooksD. BrooksD. Brooks.D.A. BrooksDudley "Duke" BrooksDudley A. BrooksDudley BrookDuke BrooksД. БруксДадли БруксBenny Goodman SextetThe Duke's MenStuff Smith QuartetSonny Greer And The Duke's MenRed Callender TrioJack McVea Quintet + +662608Zacharias TopeliusZacharias (Zachris, Sakari) TopeliusFinnish writer, poet, journalist and professor at the University of Helsinki. Although Topelius published almost all of his literary work in Swedish, he also produced the libretto for the first Finnish-language opera, Kaarle Kuninkaan Metsästys (King Charles's Hunt), which was composed by [a=Fredrik Pacius]. + +Born: 14 January 1818 at Kuddnäs Farm near Uusikaarlepyy, Grand Duchy of Finland, Russian Empire [now Finland] +Died: 12 March 1898 in Sipoo, Grand Duchy of Finland, Russian Empire [now Finland] +Needs Votehttp://dickens.fi/topelius.htmlhttp://www.sipoo.fi/topelius/https://adp.library.ucsb.edu/names/1026683. ТопелиусS. TopeliusS.TopeliusSakari TobeliusSakari TopelioSakari TopeliusTopeliusTopelius SakariTopelius ZachariasZ TopeliusZ- TopeliusZ. TopeliusZ. TopeliusZ. TopéliusZ.TopeliusZ: TopeliusZach. TopeliusZacharias Z.Zacharis TopeliusZachris ToepeliusZachris TopeliusZackarias Topeliusz. TopeliusЗ. ТопелиусЗахариас Топелиус + +662689James Wright (2)Tenor saxophonist.Needs VoteLouis Jordan And His Tympany Five + +662752Gilles ThibautLucien ThibautFrench lyricist, born 21 September 1927 in Paris, died 8 August 2000 in La Hauteville (Yvelines). +During the 1950's, he played trumpet in jazz bands (including his own orchestra). From 1965, he started writing lyrics to songs recorded by [a=Johnny Hallyday], [a=Claude François], [a=France Gall], [a=Sylvie Vartan], [a=Michel Sardou], ...Needs Votehttp://fr.wikipedia.org/wiki/Gilles_Thibauthttp://www.ifccom.ch/reperes/jazz_0865.htmlA. ThibautAntoine Marie Lucien ThibautB. ThibautC. ThibautF. R ThibaultF. R. ThibautG ThibaultG ThibautG,ThibanxG. THibautG. ThibantG. ThibanxG. ThibauG. ThibaudG. ThibaultG. ThibaultoG. ThibautG. Thibaut.G. ThibauthG. ThibautnG. ThibauttG. ThibauxG. ThibeaultG. ThibiautG. ThiboutG. ThilbaultG. ThilbautG. ThilibaultG. ThimbaultG. ThébaultG. TribaultG. TribautG.ThibaultG.ThibautG.ThibauxG.TibaultG.thibautG; ThibautGi. ThibautGil ThibaudGil ThibaultGil ThibautGiles ThibaultGiles ThibautGille ThibaultGillesGilles / ThibautGilles ThibaudGilles ThibaultGilles ThiebautGilles-ThibautGillies ThibaultGillis ThibaultGrilles ThibautGuilles ThibautG・ThibautH. ThibautJ. ThibaultJ. ThibautJilles ThibaultJilles ThibautL. ThibaultL. ThibautL.M.A. ThibautLuciel ThibaupLucien Marie AntoineLucien Marie Antoine ThibautLucien Marie Antoione ThibautLucien Marie ThibautLucien TbibautLucien ThibaultLucien ThibautM. ThibautT. GillesT. ThibaultThbaultThbautThibalutThibaudThibaulThibauldThibaultThibaurtThibautThibaut GillesThibaut LucienThibauthThibautiThibautlThibeaultThibotThiboultThiboutThidaultThidautThieauThimbautThisbaultTibauldTibaultTibautTribaultTribautל. טיבאוLucien ThibaudClaude Luter Et Son OrchestreMichel Attenoux Et Son OrchestreGilles Thibaut Et Son OrchestreAndré Réwéliotty Et Son Orchestre + +662757Eddy MarnayEdmond David BacriFrench Algerian-born songwriter (18 December 1920 in Alger – 4 January 2003 in Paris). +Brother of [a451560], founder of [l381117]. +He wrote more than 4000 songs, including works for [a=Édith Piaf] and [a=Céline Dion].Needs Votehttp://www.eddymarnay.com/https://en.wikipedia.org/wiki/Eddy_Marnayhttps://adp.library.ucsb.edu/names/356038A. MarnayA. MarniB.MarnayC. MarnayE MarnayE, MarnayE. MArnayE. MaenayE. MagentaE. MamayE. ManayE. ManrayE. MarmayE. MarmeyE. MarnayE. MarnetE. MarneyE. MarnyE. MarrayE. MerayE. MornayE. marnayE.MarnayE.MarneE.MarneyE.MornayE.ddy MarnayE.marnayE.nMarnayE/MarnayEd MarnayEd. BarnayEd. MarnayEd. MarneyEddie HarvayEddie MarnayEddie MarneyEddy MamaiEddy MamayEddy MarneyEddy MarnyEddy MaroayEddy MornayEdmond MarnayG. MarnayH. MarnayL. MarnayLegrandM. MarnayMamayMarmayMarmeyMarnaxyMarnayMarnay EMarnay E.MarneayMarneyMarnyMurrayR. MarnaiR. MarnayS. MarnayVarneyЕ. МарнеЕ. МарнейИ. МарнейМарлейЭ. МарнзЭ. МарнэЭдди МарнейEdmond BacriLes Bass' Harmonistes + +662796Josette DaydéCredited as singer.Needs Votehttps://adp.library.ucsb.edu/names/368577DaydeDaydéJosette DaydeQuintette Du Hot Club De France + +662797Francis LucaJazz bassistNeeds VoteF. LucaFrancis LucasLuca FrancisQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreNoel Chiboust Et Son OrchestreHubert Rostaing - Aimé Barelli Et Leur OrchestreMichel Warlop Et Son Septuor À Cordes + +662849Walter KolloWalter Elimar KollodzieyskiGerman composer of operettas and popular songs, conductor and music publisher, born 28 January 1878 in Neidenburg, East Prussia, German Empire (today Nidzica, Poland) and died 30 September 1940 in Berlin, Germany. Father of [a=Willi Kollo], grandfather of [a=René Kollo] and great-grandfather of [a=Nathalie Kollo].Needs Votehttps://en.wikipedia.org/wiki/Walter_Kollohttps://de.wikipedia.org/wiki/Walter_Kollohttp://www.kollo.com/kollographie/walter-kollo/1/https://adp.library.ucsb.edu/names/105634ColloE. KolloKalloKolloKollo, WalterW. KolbW. KolleW. KolloW.KolloWalt. KolloWalterWalther KolloВ. КоллоКолло + +662982William ArmonWilliam Henry Armon-TilleyUK classical violinist. +Former member of the [a=London Symphony Orchestra] (1949-1954) and leader of the [a=BBC Concert Orchestra].Needs Votehttps://open.spotify.com/artist/4XLflnNBHCbxo6W2IHiV5thttps://music.apple.com/us/artist/william-armon/1478658520Bill ArmonW. ArhonW. ArmonWilliam ArmonnLondon Symphony OrchestraThe Little Orchestra Of LondonThe Starcoast OrchestraBBC Concert Orchestra + +663003Kenneth GordonAmerican violinist born January 31, 1930. He joined the New York Phiharmonic in 1961, in 1969 he became assistant concertmaster. He retired in 2007.Needs VoteGordon Kenneth L.Ken GordonKenneth L. GordonNew York Philharmonic + +663178Joachim FuchsbergerGerman actor and television host, aka "Blacky". Born 11 March 1927 in Stuttgart, Germany - died 11 September 2014 in Grünwald, Germany. +Father of [a=Thomas Fuchsberger]. In 1951 he married the pop singer [a=Gitta Lind]. After two and a half years, the couple divorced and he married in 1954 the actress Gundula Korte, daughter of Robert Kothe. +Correcthttp://en.wikipedia.org/wiki/Joachim_FuchsbergerBlacky FuchsbergerF. FuchsbergerFuchsbegerFuchsbergerFuchsberger, JoachimFuchslergerJ. FuchsbergerJ. FussbergerJ. RuchsbergerJ.FuchsbergerJoachin FuchasbergenФуксбергер + +663502Reynaldo HahnVenezuelan, naturalised French, composer, conductor, music critic and diarist, born 9 August 1874 in Caracas, Venezuela and died 28 January 1947 in Paris, France.Needs Votehttp://reynaldo-hahn.net/https://www.facebook.com/association.reynaldo.hahn/https://en.wikipedia.org/wiki/Reynaldo_Hahnhttps://adp.library.ucsb.edu/names/102983HahnHahn, R.M. Reynaldo HahnR HahnR. HahnR. Halm.R.HahnRaynaldo HahnRenaldo Hahnle Maitre Reynaldo HahnГанР. АнР. Хаанアーン莱诺尔多·汉 + +663588Pascale GagnonCanadian classical violinistNeeds VoteLes Violons du RoyEnsemble De La Société De musique Contemporaine Du Québec + +664077Cees van SchaikViolinist and concertmaster.Needs VoteCees Van SchaikCess van SchaikOrchester Der Deutschen Oper Berlin + +664211Joe Williams (5)US jazz bassist active in New York City area. + +Do NOT confuse with the rhythm & blues bassist [a=Joe Williams (23)] +Needs VoteEddie Condon And His All-StarsThe Bobby Hackett Quartet + +664226Bruno LibertBruno André H. LibertBelgian songwriter, flutist and keyboard player.Needs Votehttps://eservices.sabam.be/pls/apex/f?p=1050:1::::RP::B. LibertBrunoLibertBruno Sinclair (2)Esperanto (5)The Samo RedsThe Convention (2)Continental Breakfast (3) + +664352Wanda HutchinsonSoul - disco singer. + +Born on b. 17.12.1951, Chicago, Illinois, U.S.A. +Sister of [a=Sheila Hutchinson-Whitt] and [a=Jeanette Hawes].Needs Votehttps://www.instagram.com/wandalvaughn/http://wisdomloveandvision.com/meet-the-team/HutchinsonM. HutchingsonW. HutchingsonW. HutchinsonWandaWanda VaughnMs. PlutoThe EmotionsCompton Gospel Singers + +664548Larry StockLawrence RosenstockAmerican songwriter. Born: 1896. Died: 4 May 1984. +He was posthumously inducted in the Songwriters Hall Of Fame in 1998. +He co-wrote Fats Domino's hit with [a638185] "Blueberry Hill", Dean Martin's hit "You're Nobody till Somebody Loves You", "Morning Side of the Mountain", and Doris Day's "You Won't Be Satisfied (Until You Break My Heart)". Owned [l250125] and [l282638], [l981294] and [l962543] with [a638185]. +Needs Votehttps://en.wikipedia.org/wiki/Larry_Stockhttps://adp.library.ucsb.edu/names/108188A. StockDtockHarry StockJerry StockL StockL. ScottL. StackL. StocitL. StockL. StorkL. StoulL. StozkL.L. StockL.LawrenceL.StockLaron StockLarry LawrenceLarry Lawrence StockLarry StackLarry StocLarry StorchLarry StoulLarrystockLary StockLawrence Larry StockLawrence StockR.StockS. LarrySlockStackStaekStickStockStock, LStock-StoekStookStoscStuckСток + +664662Marguerite MonnotMarguerite Angèle MonnotFrench composer and songwriter, born 28 May 1903 in Decize, Nièvre, France and died 12 October 1961 in Paris, France. Best known for having written many songs performed by [a=Edith Piaf].Needs Votehttp://en.wikipedia.org/wiki/Marguerite_Monnothttps://www.imdb.com/name/nm0598378/https://adp.library.ucsb.edu/names/116647C. MonnotDonnotE. MonnotF. MonnotH. MonnorH. MonnotL. MonnotM MonitM MonnotM. MonodM. A. MonnotM. M. AngeleM. MannotM. MannottM. MargueriteM. Mon otM. MonetM. MonnatM. MonneM. MonnetM. MonnoM. MonnodM. MonnontM. MonnorM. MonnotM. MonntM. MonodM. MonotM. MounotM. MoñnotsM. モノーM.A. MonnotM.MennotM.MongotM.MonmotM.MonnorM.MonnotM.MonotMaguerite MannotMannotMannottMarg MonnetMarg. MannotMarg. MonnetMarg. MonnotMarg.MonnotMargaMonnotMargaret MonnotMargarite MonnotMargueri MonnotMarguerit MonnotMarguerita MonnotMarguerite A. MonnotMarguerite Angela MonnotMarguerite Angele MannotMarguerite Angele MonnotMarguerite BonnotMarguerite M. MonnotMarguerite MannetMarguerite MannotMarguerite MinnotMarguerite MonnatMarguerite MonnetMarguerite MonnodMarguerite MonnonMarguerite MonnorMarguerite MonodMarguerite MonotMarguerite MounotMarguerite, MonnotMarguerite-MonnotMargueritte A. MonnotMargueritte Angele MonnotMargueritte Angele MannotMargueritte Angele MonnotMargueritte MannonMargueritte MonnotMarguertite Angele MonnotMarguérite MonnotMarlverite MonnetMarquerite MonnotMauguerite MonnotMennotMerg. MonnotMonatMoneetMonetMonnatMonnetMonnoMonnodMonnonMonnontMonnopMonnorMonnotMonnot Margueritte AngeleMonnot, M.Monnot, Marguerite AngeleMonnot, Margueritte AngeleMonnot,M.Monnot/Margueritte/AngelMonnotProducerMonnoteMonnottMonnotteMonnoxMonodMonootMonotMonrotMoonotMounnot MargueriteMounotN. MonotR. MonnotМ. МонноМ. МоноМанеМанотМаргарита МонноМаргарита МоноМоноМуноמרגרט מונומרגריט מונוマルグリット・モノーモノーMarguerite Monnot Et Son Ensemble + +664669Thilo & EvantiHardstyle duo from The Hague, The Netherlands. +Composed of [a=Thilo] (aka Thilo Spaans) & [a=Evanti] (aka Vincent van Elburg). +On April 6, 2013 they posted a message on their Facebook page announcing they would cease their collaboration after almost a decade working together.Needs Votehttp://web.archive.org/web/20121116090225/http://www.thilo-evanti.com/http://www.facebook.com/ThiloEvantiThilo + EvantiThilo And EvantiThilo&EvantiVincent van ElburgThilo Spaans + +664753Susie EdwardsSusie EdwardsAmerican vaudeville and blues singer, born Susie Hawthorn (born 1896 in Pensacola, Florida, USA, died December, 5, 1963 in Chicago). +She exclusively performed in the husband and wife team [a=Butterbeans & Susie], making recordings between 1924 and 1960.Needs VoteEdwardsS. EdwardsSusieButterbeans & Susie + +664766Huey LongAmerican jazz guitarist and banjoist. + +Born: 25th April 1904 Sealy, Texas, USA +Died: 10th June 2009 Houston, Texas, USA + +Got his first break in 1925 playing banjo for The Frank Davis Louisiana Jazz Band alongside [a=Punch Miller]. Switched to guitar playing for [a=Texas Guinan] in 1933 after which he recorded with [a=Richard M. Jones]. Played with Earl Hines And His Orchestra in the era when it boasted [a=Charlie Parker] and [a=Dizzy Gillespie].Needs Votehttp://www.venushairhouston.com/huey.htmlhttps://en.wikipedia.org/wiki/Huey_Long_(singer)https://adp.library.ucsb.edu/names/327882Fletcher Henderson And His OrchestraThe Ink SpotsEarl Hines And His OrchestraEddie Davis And His BeboppersLil Armstrong And Her Swing Band + +665004Bobby AlessiGuitarist and singer from New York. Twin brother of [a541134]Needs Votehttps://www.facebook.com/bobby.alessi.3https://www.youtube.com/user/bobbyalessiAlessiB AlessiB. AlessiBob AlessiBobbyBobby AllessiR. AlessiAlessiCountry GentlemenBarnaby ByeThe Look (9) + +665067Pierre CourPierre Louis LemaireFrench songwriter, born on April 5th, 1916 in Brunoy in Seine-et-Oise, died 1997.Needs Votehttps://en.wikipedia.org/wiki/Pierre_CourA. CourCarrCoerCorrCouerCountCourCour P.Cour PierreCour, PierreCour;CourdCourlCourtCowrCurJ. CourL. Pierre CourLamaireLourO. CourP CourP, CourP- CourP. CourP. CoeurP. CoudeP. CounrP. CourP. CoureP. CourtP. Court.P. LemaireP. PourP.CourP: CourPalPierre CoeurPierre Cour "Le Régisseur Albert"Pierre CourtPierre LemairePierre Louis LemairePierre-CourPierre/CoupPièrre CourR. CourT. CourП. КурPierre LemaireLe Régisseur AlbertPeter Loversun + +665298Anthony CamdenAnthony John CamdenBritish classical woodwind instrumentalist (oboe & cor anglais). Born 26 April 1938 in London, England, UK - Died 7 March 2006. +He studied at the [l290263] and, while there, he formed the [b]Camden Wind Quintet[/b] with his brother [a=Kerry Camden] and four other wind instrumentalists who included the flautist [a=James Galway]. After graduation, he became Principal Oboe for the [a=Northern Sinfonia] Orchestra (1960-1964) which he followed with the same position in the [a=City Of Birmingham Symphony Orchestra] (1964-1968). In 1968, he became a member of the [a=London Symphony Orchestra] and he would stay with them for twenty years (1968-1988) both as Principal Oboe (1972-1988) and Chairman of the Board (1975-1987). He was a co-founder & solo oboist of [a=The London Virtuosi] in 1972 with [a=John Georgiadis]. In 1988 he left the LSO and moved to Australia as the Provost and Director of the [url=https://www.discogs.com/label/442353-The-Queensland-Con]Queensland Conservatium[/url]. Staying in the field of musical education he became Dean of Music at the Hong Kong Academy of Performing Arts. +In 1993, He married his second wife, [a=Lilly Li]. Son of [a=Archie Camden] and [url=https://www.discogs.com/artist/7796392-Jan-Kerrison]Joyce Camden[/url].Needs Votehttps://www.youtube.com/channel/UC0IWImyLFSg3mZ__RFcl0jQhttps://open.spotify.com/artist/1iNHrIYKqHXQONIKKClI73https://music.apple.com/us/artist/anthony-camden/3325379https://en.wikipedia.org/wiki/Anthony_Camdenhttps://www.feenotes.com/database/artists/camden-anthony-john-26th-april-1938-7th-march-2006/https://www.musiciansgallery.com/tribute/camden/anthony.htmlhttps://www.thetimes.co.uk/article/anthony-camden-tfx95gh9fh3https://www.theguardian.com/news/2006/apr/11/guardianobituaries.artsobituarieshttps://www.playbill.com/article/anthony-camden-london-symphony-oboist-and-administrator-dies-at-68A. CamdenAnthony CamronCamdenЕнтони КамденLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraLondon Wind OrchestraNorthern SinfoniaThe London VirtuosiThe Wind Virtuosi Of England + +665647KaskaraManuel OchoaCuban singer recording mostly in Los Angeles (USA) in the 50's and 60'sNeeds VoteKaskara BerlinKaskara SaxonKásskaraManuel OchoaJack CostanzoRené Touzet And His Orchestra + +665650Ted Nash (2)Theodore Malcolm NashAmerican swing reedman (clarinet, sax, flute ...), born October 31, 1922, in Somerville, Massachusetts (USA), died May 12, 2011, in Carmel, California (USA); he is probably best known for his association with [a=Les Brown]. +He was active from the 1940s to the 1980s. +He must NOT be confused with his nephew, [a=Ted Nash] (born in 1959), who is also a jazz saxophone player (but more hard bop / post bop and avant-garde than swing). +Ted Nash's brother is trombonist [a=Dick Nash], father of the younger Ted Nash. +Needs Votehttps://en.wikipedia.org/wiki/Ted_Nash_(saxophonist,_born_1922)https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/2453958f96c59d1dd47c6c48290252d2a2064b/biographyhttps://adp.library.ucsb.edu/names/108052NashRed NashT. NashTed HashTeddy NashTheodore M. "Ted" NashTheodore M. 'Ted' NashTheodore NashWoody Herman And His OrchestraBilly May And His OrchestraThe Swinging Bon VivantsWingy Manone & His OrchestraLes Brown And His OrchestraRussell Garcia And His OrchestraHenry Mancini And His OrchestraIke Carpenter And His OrchestraPete Rugolo OrchestraThe Abnuceals Emuukha Electric OrchestraGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraJerry Gray And His OrchestraWoody Herman And The Las Vegas HerdDennis Farnon And His OrchestraWoody Herman And His Third HerdTed Nash And His OrchestraHarry Carney's Big EightSoundstage All-StarsPete Candoli SeptetConrad Gozzo And His OrchestraJoe Thomas' Big SixJimmy Jones' Big EightTed Nash QuintetRay Rasch And The Pipers 10Frank Wess Nonet + +665814Polydor Tanz-OrchesterGerman dance and entertainment orchestra associated with label [l1610].Needs Vote"Polydor" Tanz Orchester"Polydor" Tanz Orchester Mit Refraingesang"Polydor" Tanz-Orchester"Polydor"-Tanz-Orchester"Polydor"-TanzorchesterOrchestre De Bal Champêtre "Polydor"Polydor Tanz-Orchester Mit Solo- Und QuartettgesangPolydor TanzorchesterPolydor Tanzorchester Mit Solo- Und QuartettgesangPolydor Unterhaltungs-OrchesterPolydor-Tanz-OrchesterPolydor-TanzorchesterPolydor-Unterhaltungs- Und TanzorchesterШтатный оркестр "Polydor"„Polydor“ Orchester + +666089Kurt SchwertsikKurt SchwertsikAustrian contemporary composer and horn player. + +He was born 25 June 1935 in Vienna, Austria. +Needs Votehttp://en.wikipedia.org/wiki/Kurt_Schwertsikhttps://books.discogs.com/credit/775488-kurt-schwertsikK. SchwertsikSchwertsikVienna Symphonic Orchestra ProjectWiener SymphonikerTonkünstler Orchestra + +666090Georg NothdorfGeorg Nothdorf (born 9 April 1934) is a German double bassist. +Needs Votehttp://www.con-basso.de/G. NothdorfStädtisches Orchester WuppertalCollegium Con BassoNDR SinfonieorchesterStädtisches Orchester Trier + +666092Adam BauerCorrect + +666093Brigitte SylvestreBrigitte SylvestreHarpistNeeds VoteBrigitte Deshais du Portail-SylvestreEnsemble Musique VivanteEnsemble Musica Negativa + +666094Armin RosinGerman trombonist and trumpeter, born 1939Needs Votehttp://www.armin-rosin.comhttps://de.wikipedia.org/wiki/Armin_RosinRosinBamberger SymphonikerBachcollegium Stuttgart + +666095Gérard RuymenClassical violist.Needs VoteGerard RuymenStross-Quartett + +666096Robert TucciRobert Tucci (born 1940) is American tuba player. Now based in Bavaria, Germany.Needs VoteRoberto TucciHugo Strasser Und Sein TanzorchesterBayerisches StaatsorchesterBuffalo Philharmonic OrchestraOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerThe Louisville OrchestraThe United States Army Field BandOrchester Des Staatstheaters KasselRudy's Ragtime-ClubThe Workshop GangPittsburgh Youth Symphony Orchestra + +666097Schüler Der Hauptschule Peter-Griess-Strasse, Köln-FlittardCorrectChildren from the Hauptschule Peter-Griess-Strasse, Köln-FlittardSchüler Der "Hauptschule Peter-Griess-Strasse", Köln-Flittard + +666098Silvio ForetićCorrectForetićSilvio Foretic + +666360Boyd AtkinsAmerican jazz and blues saxophonist, born c. 1900 in Paducah, Kentucky, died after 1960 in Chicago, Illinois. + +Worked with Fate Marable, Dewey Jackson, Earl Hines, Carroll Dickerson, Louis Armstrong, Elmore James, Magic Sam, and others. +Best known as composer of "Heebie Jeebies," recorded by [a=Louis Armstrong] in 1926.Needs Votehttps://en.wikipedia.org/wiki/Boyd_Atkinshttps://en.wikipedia.org/wiki/Heebie_Jeebies_%28composition%29https://adp.library.ucsb.edu/names/113094ArkinsAtkinsB. AtkinsB.AtkinsBoys AtkinsEtkinsLouis Armstrong & His Hot SevenLouis Armstrong And His Stompers + +666443Chris ParkesChristopher Michael William ParkesBritish hornist, born on January 30, 1981 in Doncaster, South Yorkshire, England. + + +Needs VoteChristopher ParkesParkesLondon Philharmonic OrchestraSveriges Radios Symfoniorkester + +666449Chris VandersparClassical cellist. +Member of the [b]Vanderspar String Trio[/b] with his siblings [a=Edward Vanderspar] and Fiona.Needs Votehttp://www.roh.org.uk/people/christopher-vandersparChristopher VandersparLondon Metropolitan OrchestraOrchestra Of The Royal Opera House, Covent GardenThe London Cello SoundPleeth Cello Octet + +666508August MessthalerProf. August MeßthalerBass vocalist and music professor (* 03 July 1920; † 03 March 2011 in Stuttgart, Germany).Needs Votehttps://www.bach-cantatas.com/Bio/Messthaler-August.htmA. MessthalerAugust MeßtalerAugust MeßthalerMessthalerMeßthalerА. Мессталер + +666918Perry MarionCredited as jazz saxophonist.Needs VoteDuke Ellington And His Orchestra + +668141Victoria PikeVictoria (Pike) Randazzo American songwriter (mostly lyricist). Married to [a107783] (divorced 1977). +Born 1943. Mother of [a=Elisa Randazzo]. BMI IPI #40554114, #40554212. +Pike co-wrote numerous songs (mostly with Randzaoo) including the hits [i]Rain in My Heart[/i] by Frank Sinatra, [i]Yesterday Has Gone[/i] by Little Anthony & the Imperials, and [i]I'm Five Years Ahead of My Time[/i] by The Third Bardo (co-written with Rusty Evans). +Between 1966-1996, Pike had 14 songs hit the charts in the U.S. and 2 in the U.K. (all but one with her husband Randazzo). Tops among these were [i]Yesterday Has Gone[/i] by Cupid's Inspiration (#4 UK, 1968), [i]Rain in My Heart[/i] by Frank Sinatra (#63, #3 AC 1968, US) and [i]It Feels So Good to Be Loved So Bad[/i] by The Manhattans (#66, #6 R&B, 1977). All of those were written with Randazoo, with the last one also with Roger Joyce.Needs Votehttps://nl.wikipedia.org/wiki/Victoria_PikePikeSpikeV. PiceV. PickeV. PikaV. PikeV. PikkeV. PikéV.PikeVargus PikeVicki PikeVicky PikeViktoria PikeВ. Пейк + +668292Jeremy Williams (2)Hong Kong based British classical violinist, violin educator, Lecturer, and Music & Artistic Director. +[b]Not to be confused with the US violinist [a=Jeremy Williams (13)][/b]. +He studied at the [l305416] (1978-1982). He began his career as a violinist with the [a=London Symphony Orchestra]. In addition, he played regularly with [a=The Academy of St. Martin-in-the-Fields] and the [a=London Sinfonietta]. In 1983, he was invited to become a member of [a=The Delmé String Quartet]. He later joined [a=The Nash Ensemble], the [a=York Piano Trio], and formed the [a=Beethoven String Trio Of London] in 1990. In 1998, he was appointed Principal Viola with the [a=Hong Kong Philharmonic Orchestra], serving the orchestra between September 1998 and July 2002, and taught at the Hong Kong Academy for Performing Arts. He became a member of [a=The Australian String Quartet] (09/2002-05/2009) and in 2009 was appointed Lecturer in Chamber Music and Director of Strings at the [l267141] (05/2009-01/2014). He was first violinist with the [b]Diemen Quartet[/b] (09/2012-12/2013) whilst resident in Tasmania. He relocated to Hong Kong in 2015 dedicating himself to education, conducting the [b]Yew Chung International School Orchestra[/b]. He has been Artistic Director of the [b]Hong Kong Camerata Strings[/b] since January 2016 and Music Director of Yew Chung Education Foundation since January 2019. +Married to the classical violinist Yuen Yum San Williams.Needs Votehttps://hk.linkedin.com/in/jeremy-williams-2785a129https://hksl.org/non-hksl-musicians/jeremy-williams/https://www.melbarecordings.com.au/artist/australian-string-quartet-0https://musicbrainz.org/artist/95b99041-2d51-4c7a-98f0-029dda436e10https://www.imdb.com/name/nm2377074/London Symphony OrchestraLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiqueThe Nash EnsembleThe Delmé String QuartetOrchestra Of The Age Of EnlightenmentBeethoven String Trio Of LondonHong Kong Philharmonic OrchestraThe Australian String QuartetMichaelangelo Chamber OrchestraYork Piano TrioGrainger Quartet + +668547Lawrence DickensLawrence Emmett DickensLawrence "Slim" Dickens +American Funk/Soul bass player. +In the 1970s member of the [a=Willie Hutch] backing band.Needs Votehttps://repertoire.bmi.com/Search/Catalog?num=ujRP%252bTeLTaRDcAikPQHxNw%253d%253d&cae=%252bIH%252fFJF1fDL6AmWNotygXw%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Go%20For%20What%20You%20Know%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Catalog%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A1%2C%22Part_Type%22%3A%22WriterList%22%2C%22Part_Id%22%3A%222Wg8he%252b4gydk1Yy2IrMWKQ%253d%253d%22%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3A%22Title%22%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dDickensL. DickensLaurence DickensLawrence Emmett DickensLawrence Slim DickensSlim (45)The Johnny Otis ShowThe Outlaw Blues Band + +668694Jean-Paul-Egide MartiniJohann Paul Aegidius Schwarzendorf[b]Do not confuse with Italian baroque composer [a1724827].[/b] + +Jean Paul Égide Martini, born 1741-08-31 and died 1816-02-10, was a composer of classical music. He is best known today for the vocal romance "Plaisir d'Amour," on which the 1961 Elvis Presley standard "Can't Help Falling in Love" is based. + +Martini was born Johann Paul Aegidius Schwarzendorf in Freystadt, Bavaria, Germany. He adopted the family name Martini after moving to France as a young man. Sometimes he used his aliases Martini Il Tedesco and Giovanni Martini, which has resulted in a confusion with Giovanni Battista Martini, particularly with regard to the composition of Plaisir d'Amour.Needs Votehttps://de.wikipedia.org/wiki/Jean-Paul-%C3%89gide_Martinihttps://adp.library.ucsb.edu/names/105467A. Poul Jeam MartinB. MartiniBozi MartiniDozi MartiniF. MartiniG. -P. MartiniG. B. MartiniG. D. MartiniG. MartiniG. P. MartiniG.B. MartiniGiovanni MartiniGiovanni Martini (Il Tedesco)Giovanni P. MartiniGiovanni PaoloGiovanni Paolo MartiniGiovanni Paolo Martini (Il Tedesco)Giovanni Paolo Martini (il Tedesco)Gustav B. MartiniI. P. MartiniI. T. MartiniJ. MartinJ. MartiniJ. P. MartiniJ. P. Aegidius MartiniJ. P. E. MartiniJ. P. Egide MartiniJ. P. MartinJ. P. MartiniJ. Paul Egide MartiniJ.-P. MartiniJ.-P. Martini- T. AkiyoshiJ.MartiniJ.P MartiniJ.P. MartiniJ.P. Aegidius MartiniJ.P. Egide MartiniJ.P. MartinJ.P. MartiniJ.P.A. MartiniJ.P.E. MartiniJ.P.MartiniJ.P.É.MartiniJP.MartiniJan-Paul Egide MartiniJean MartinJean MartiniJean P. MartiniJean Paul Egide MartiniJean Paul Egide Martini (Il Tedesco)Jean Paul Egide Martini Il TedescoJean Paul MartiniJean Paul Égide MartiniJean-Paul Egide MartiniJean-Paul MartiniJean-Paul-Egide Martini Dit SchwarzkopfJean-Paul-MartiniJean-Paul-Égide MartiniJohann MartiniJohann Paul Aegidius MartinJohann Paul Aegidius MartiniJohann Paul Aegidus MartiniJohann Paul MartiniJohannes Paul MartiniM. GiovanniM. MarineM. MartineMartinMartinaMartine di TedescoMartinetMartiniMartini 1741-1816Martini Di TedescoMartini Il TedescoMartini J.Martini J. P.Martini il TedescoMartini, G.Martini, J.P. EgideMartini. P. D.MortiniNartini Il TedescoP. MartiniPadre MartiniR. J. MartiniR. MartiniR.J. MartiniR.J.MartiniT. MartiniTedescoŽan Pols MartīniДж. Б. МартиниЖ. МартиниЖ. П. МартиниЖан-Пиер МартиниМартиниП. Мартиниמרטיניジャン=ポール・マルティーニマルティーニ瑪廸尼Johann Paul Aegidius Schwartzendorf + +668946Carol WebbClassical violinist who has played in the New York Philharmonic from 1977 to 2016. She is married to [a315732]. +When she started in the violin section of the New York Philharmonic, she became the first female violinist of the orchestra.Needs Votehttps://nyphil.org/about-us/artists/carol-webbCarol Bebb-SortommeCarol SortommeCarol Webb SortommeCarol Webb-SortommeCarol Webb SortommeNew York PhilharmonicThe Long Island Chamber Ensemble of New YorkLong Island Youth Orchestra + +669268Elmer SnowdenElmer Chester SnowdenAmerican jazz banjoist, guitarist and bandleader, born October 9, 1900, Baltimore, Maryland, USA, died May 14, 1973, Philadelphia, Pennsylvania, USA. +He was the original bandleader of [a370233] and worked with [a145257] and [a758216]. + + + +Needs Votehttps://en.wikipedia.org/wiki/Elmer_Snowdenhttps://adp.library.ucsb.edu/names/107244E. SnowdenElmer SnowdonSnowdenBessie Smith And Her BandThe Jungle Town StompersElmer Snowden SextetThe Elmer Snowden QuartetThe Three Jolly MinersChoo Choo JazzersThe Sepia SerenadersKansas City Five (2)Booker's Dixie Jazz BandElmer Snowden & His Small's Paradise OrchestraJasper Davis & His OrchestraElmer Snowden TrioMusical StevedoresThree Monkey ChasersRocky Mountain TrioThree Hot EskimosTexas Trio (3)Slim Jackson TrioThree Black Diamonds + +669404John GordonJazz trombonist (May 30, 1939 - November 27, 2003)Needs Votehttps://johngordon.bandcamp.com/J. GordonJohn B. GordonJohn Bernhard Gordonジョン・ゴードンLionel Hampton And His OrchestraLionel Hampton And His All-Star Alumni Big BandThe Ernie Wilkins OrchestraLionel Hampton & His Big BandClark Terry Big BandNancie Banks OrchestraJohn Gordon's Trombones Unlimited + +669730Stanley DruckerStanley Drucker (February 4, 1929, Brooklyn, New York - December 19, 2022) was a classical clarinet player. He was married to [a2320861]. +He was the former principal clarinetist of the [a327356], which he became in 1960 under [a299702]. He joined the orchestra in 1948 and retired in 2009. +The Guiness Book Of Records lists him as the clarinetist with the longest career in an orchestra. During his active time, he performed more than 10,000 concerts in more than 60 countries. +Needs Votehttps://en.wikipedia.org/wiki/Stanley_Druckerhttp://www.wka-clarinet.org/Drucker60.htmhttps://www.imdb.com/name/nm1089567/DruckerNew York PhilharmonicBuffalo Philharmonic OrchestraIndianapolis Symphony OrchestraArs Nova (13) + +669733Elias CarmenAmerican bassoonist, born 1912 in New York, New York and died fol­low­ing an auto acci­dent on Decem­ber 21, 1973.CorrectEli CarmenNBC Symphony OrchestraThe Cleveland OrchestraMinneapolis Symphony OrchestraNew York City Ballet OrchestraNew York City Opera Orchestra + +669735Walter RosenbergerPercussionistNeeds VoteW. E. RosenbergerW. RosenbergerWalter E. RosenbergerWalter M. RosenbergerNew York PhilharmonicSauter-Finegan OrchestraThe All Star Percussion EnsembleThe Percussion Section + +669738Morris LangAmerican classical percussionist, educator and drum builder born in New York City. He played percussion for the New York Philharmonic from 1955 to 1996. Later, he instructed percussion in New York. +He passed away in July 2021.Needs Votehttp://www.langpercussion.com/Morris A. LangMorris LanzNew York PhilharmonicArs Nova (13) + +669783Martial AyelaMartial Adolphe AyelaAlgerian band leader, guitarist, composer and teacher +Born March 2nd, 1922 in Alger / Died January 26, 2011 in Nîmes (Gard), France + +Studied at the Institution Saint-Charles and Beaux-Arts d'Alger +At 16 years old, was hired at "Coq d'Or" in Oran, a big brewery-music-hall then in Casablanca as a singer on guitar +Began his career as a guitarist in André Faruggia orchestra at the Aletti Hotel, France before WWII +After WWII, founded a orchestra of nine musicians and after an audition, was hired as Conductor of Variety Orchestra of Radio France +Settled in Paris and in 1970's moved to Nimes as a teacherCorrecthttps://www.hussein-dey.com/dossiers/martial.htmA. MartialAyalaAyelaAyela Martial AdolpheG. AyalaJelaM. AyalaM. AyelaMartial Adolphe AyelaMartial AyalaMartial AyélaW. AyelaאיילהOrchestre National De FranceMartial Ayela et son Orchestre + +669983Ildefonso SanchezNeeds VoteIldefonso (Poncho) SanchezPoncho SanchezWoody Herman And His OrchestraJazz On The Latin Side AllstarsThe Woody Herman Big BandPoncho Sanchez Latin Jazz Band + +670045Bohumil KotmelCzech classical violinist.Needs VoteB. KotmelBohumeil KotmelThe Czech Philharmonic OrchestraPro Arte Antiqua PrahaCzech Philharmonic SextetBohuslav Martinů Piano Quartet + +670130Buster SmithHenry Franklin "Buster" SmithUS alto saxophonist, clarinetist, and arranger from the Swing era (b. Ellis County, Texas, 26 Aug. 1904; d. 10 Aug. 1991); formative factor in [a=Charlie Parker]'s early years in Kansas City. + +Needs Votehttp://kcjazzlark.blogspot.nl/2010/12/importance-of-buster-smith-and-lucilles.htmlhttps://en.wikipedia.org/wiki/Buster_Smithhttps://adp.library.ucsb.edu/names/209552B. SmithH. B. SmithHarry "Buster" SmithHenry " Buster" SmithHenry "Buster" SmithHenry SmithProf. Buster SmithSmithCount Basie OrchestraDon Redman And His OrchestraEddie Durham & His BandWalter Page's Blue DevilsPete Johnson & His Boogie Woogie BoysBuster Smith & OrchestraBuster Smith And His Heat WavesHot Lips Page And His Band + +670372Carla BosHarp player from the NetherlandsNeeds Votehttp://www.carlabos.nl/Remix EnsembleNieuw Sinfonietta AmsterdamSpinvis Ensemble + +670543Julie LandsmanAmerican classical horn player from New York City. She served as principal horn player with the MET Opera Orchestra from 1985-2010.Needs Votehttps://www.julielandsman.com/https://en.wikipedia.org/wiki/Julie_Landsmanhttps://www.bard.edu/academics/faculty/details/?id=2138Orpheus Chamber OrchestraHouston Symphony OrchestraThe Metropolitan Opera House OrchestraGreenleaf Chamber PlayersMetropolitan Opera Brass + +670552John KeatsJohn KeatsBorn: October 31, 1795, Finsbury Pavement, London, England +Died: February, 23, 1821, Rome, Italy + +English romantic poet. +Needs Votehttps://en.wikipedia.org/wiki/John_KeatsJ. KeatsJ.KeatsKeatsW.B. KeatsДж. КитсДжон КітсКитс + +670668Mischa MaiskyLatvian cellist, born 10 January 1948 in Riga.Needs Votehttps://www.deutschegrammophon.com/en/composers/mischamaisky/biographyhttps://en.wikipedia.org/wiki/Mischa_Maiskyhttps://www.facebook.com/mischamaiskycello/M. MaiskyM. マイスキーMaiskijMaiskyMicha MaiskyMischaMisha MaiskyMiša MaiskijМиша Майскийミッシャ・マイスキーミッシャ・マイスキーミーシャ・マイスキー + +670887Cécile CaulierFrench author/composer/singer.Correcthttp://cecile.caulier.free.fr/C CaulierC. CaulierC. CaultierCauliarCaulierCecile CaulierCécile CaullierCécille CaulierG. CaulierК. КольерBernadette Faucher + +671074Fred LaceyAmerican jazz guitarist and composer. Mentor of [a1118146]. Spent some time in prison in the 1950s where he met [a264872]. His most famous composition "Theme For Ernie" was dedicated to [a327018]. +Muslim name [a=Nasir Barakaat].Needs VoteF. LaceyF. LacyF.LaceyFred LacyFred LoupFreddie LaceyFreddy LaceyLaceyФред ЛэйсиNasir BarakaatThe Lester Young SextetLester Young And His Band + +671327François CouperinFrançois CouperinFrench Baroque composer, organist and harpsichordist, born 1668-11-10, Paris, France, died 1733-09-11, ibid. +He was known as Couperin le Grand ("Couperin the Great") to distinguish him from other members of the musically talented Couperin family.Needs Votehttps://en.wikipedia.org/wiki/Fran%C3%A7ois_Couperinhttps://www.britannica.com/biography/Francois-Couperin-French-composer-1668-1733https://adp.library.ucsb.edu/index.php/mastertalent/detail/101853/Couperin_FrancoisCoperinCouperiCouperinCouperin 'Le Grand'Couperin F.Couperin Le GrandCouperin, "Le Grand"Couperin, FrancescCouperin, FrançoisCouperin-Le-GrandCovperin Le GrandF CouperinF. CouperinF. Couperin "Le Grand"F. Couperin Le GrandF. KuperēnsF. Kupren / F. CouperinF.CouperinF.クープランFR. Couperin Le GrandFr. CouperinFr. Couperin Le GrandFr.库普兰Frances CouperinFrancis CouperinFrancoais CouperinFrancois CauperinFrancois CouperinFrancois Couperin Le GrandFrancois CouprínFrancois ÇouperinFransoa KuprenFrançoisFrançois 'Le Grand' CouperinFrançois (Le Grand) CouperinFrançois CauperinFrançois Couperin "Le Grand"François Couperin 'Le Grand'François Couperin 'Le Grande'François Couperin (Le Grand)François Couperin Dit "Le Grand"François Couperin Le GrandFrançois Couperin [Le Grand]François Couperin el GrandeFrançois Couperin le GrandFrançois Couperin le grandFrançois Couperin «Le Grand»François Couperin “ Le Grand ”François Couperin, "Le Grand"François Couperin, Le GrandFrançois Couperin-Le-GrandFrançois Couperin-le-GrandFrançois Le Grand CouperinFrançoise CouperinFrançoise Couperin Le GrandMonsieur CouperinMr CouperinMr. CouperinКуперенФ. КуйеревФ. КуперенФ. КуперенаФ. КуперинФ.КуперенФрансуа Куперенクープランフランソワ・クープラン庫布蘭 + +671328Jean-Philippe RameauJean-Philippe RameauJean-Philippe Rameau was one of the most important French composers and music theorists of the 18th century (born: 1683-09-25, Dijon, France); died: 1764-09-12, Paris, France).Needs Votehttp://jp.rameau.free.fr/https://en.wikipedia.org/wiki/Jean-Philippe_Rameauhttps://www.treccani.it/enciclopedia/jean-philippe-rameau/https://www.britannica.com/biography/Jean-Philippe-Rameauhttps://www.naxos.com/person/Jean_Philippe_Rameau/21006.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101856/Rameau_Jean-Philippehttps://www.baroquemusic.org/biorameau.htmlIean Philippe RameauJ P RameauJ-P RameauJ-P. RameauJ-P.RameauJ-Ph. RameauJ. -P. RameauJ. -Ph. RameauJ. F. RameauJ. P. RameauJ. Ph RameauJ. Ph. RameauJ. Ph. Rameau (1733)J. RameauJ.-P. RameauJ.-P.RameauJ.-Ph RameauJ.-Ph. RameauJ.-Ph.-RameauJ.-Ph.RameauJ.-Philippe RameauJ.P RameauJ.P. RameauJ.P.RameauJ.Ph. RameauJ.Ph.RameauJ.ph.RameauJP RameauJean -Philippe RameauJean Ph. RameauJean Philipp RameauJean Philippe RameauJean Phillipe RameauJean Philliph RameauJean Phillippe RameaJean Phillippe RameauJean-Ph. RameauJean-Phillipe RameauJean-Phillippe RameauJean•Philippe RameauM. RameauM.RameauMonsieur RameauPH. RameauPh. RameauPhilippe RameauRameanRameauRameau J. Ph.Rameau Jean-PhilippeRameau,Rameau, Jean-PhilippeRameuŽ. F. RamoЖ. РамоЖ. Ф. РамоЖ.-Ф. РамоЖ.Ф. РамоЖ.Ф.РамоЖан Филип РамоЖан Филипп РамоЖан Філіп РамоЖан-Филип РамоЖан-Филипп РамоРамоジャン-フィリップ・ラモージャン=フィリップ・ラモージャン=フィラップ・ラモーラモー + +671331Agnès MellonFrench soprano vocalistNeeds Votehttp://www.agnesmellon.com/http://www.bach-cantatas.com/Bio/Mellon-Agnes.htmA. MellonAgnes MellonMellonLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleEnsemble Clément JanequinRicercar Consort + +671762Amanda SmithClassical violinistNeeds VoteThe Academy Of St. Martin-in-the-FieldsLondon Festival OrchestraThe Chamber Orchestra Of London + +671764Ildiko AllenSoprano vocalistNeeds Votehttp://www.ildikoallen.com/Metro VoicesLondon VoicesThe SixteenThe King's ConsortTenebrae (10)Retrospect Ensemble + +671765Alexandra GibsonEnglish mezzo-sopranoNeeds Votehttp://www.bach-cantatas.com/Bio/Gibson-Alexandra.htmA. GibsonAlex GibsonGabrieli ConsortMetro VoicesThe Choir Of The King's ConsortLondon Voices + +671766Stephen OrtonBritish classical cellist, and cello tutor. Born in Ripon, Yorkshire, England, UK. +He studied at [l305416]. He has been Principal Cello with the [a=Bournemouth Sinfonietta] and the [a=City Of London Sinfonia] and was also a member of [a=The Delmé String Quartet] for ten years. In 1985, he became Principal Cello with [a=The Academy of St. Martin-in-the-Fields]. Also a member of the [a=Academy Of St. Martin-in-the-Fields Chamber Ensemble]. In 2013, he joined the [a=Chilingirian String Quartet]. Cello tutor at the [l920971].Needs Votehttps://www.facebook.com/stephen.orton.144https://open.spotify.com/artist/2w1qJFTedEbP2LkDTpj9JThttps://music.apple.com/us/artist/stephen-orton/4356694http://chilingirianquartet.co.uk/biographies/https://www.westdean.org.uk/study/tutors/stephen-ortonhttps://www.vaco.org.uk/copy-of-david-routledge-violinhttps://nexushall.chanel.com/en/artists/stephen_orton/S. OrtonSteve OrtonSteven Ortonスティーヴン・オートンThe London Session OrchestraCity Of London SinfoniaEnglish Chamber OrchestraBournemouth SinfoniettaPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsChilingirian String QuartetThe Delmé String QuartetThe Steve Gray OrchestraAcademy Of St. Martin-in-the-Fields Chamber EnsemblePleeth Cello OctetThe Pro Arte Piano Quartet (2) + +671768David Cohen (2)David CohenBelgian cellist, and Professor of Cello. Born in 1980 in Tournai, Belgium. +He studied at [l305416]. He made his solo debut with the [a=Belgian National Orchestra] at the age of nine. In March 2001, at the age of 20, he was appointed Principal Cello of the [a=Philharmonia Orchestra], becoming the youngest ever Principal Cello in history. Principal Cello of the [a=London Symphony Orchestra] since 2021. Artistic Director of the Melchoir Ensemble. Professor of Cello at the Conservatoire Royal de Musique de Mons in Belgium since 2000 and at the [l1379071] in London. +He was married to the late American violinist [a=Corinne Chapelle].Needs Votehttps://davidcohen.be/https://www.facebook.com/David-Cohen-128783981445/https://twitter.com/davidcohen007?lang=enhttps://www.instagram.com/davidcohenmusician/https://www.youtube.com/user/dodick007https://www.playwithapro.com/live/david-cohen/https://en.wikipedia.org/wiki/David_Cohen_(cellist)https://www.owenwhitemanagement.com/artist/david-cohen/?doing_wp_cron=1643313268.0675089359283447265625https://crosseyedpianist.com/2013/06/12/meet-the-artist-david-cohen-cellist/https://lso.co.uk/orchestra/players/strings.html#Celloshttps://www.trinitylaban.ac.uk/study/teaching-staff/david-cohen/https://www.imdb.com/name/nm5125437/London Symphony OrchestraPhilharmonia OrchestraThe Chamber Orchestra Of LondonBelgian National Orchestra + +671770Takane FunatsuJapanese classical violinist. +She studied at [l305416]. She has performed as a soloist with many orchestras. She was Co-Leader in the [a=Scottish Chamber Orchestra] from 1997 to 2000, and a member of [a=Ensemble Zellig] in Paris between 2000 and 2003.Needs Votehttps://takanefunatsu.com/index.php/en/home/https://www.facebook.com/people/Takane-Funatsu/100005352317946/https://yso.org.uk/history/biographies/takene-funatsu/London Symphony OrchestraScottish Chamber OrchestraEnsemble ZelligOrchestre Mondial Des Jeunesses MusicalesApollo Chamber OrchestraKodály Philharmonic Orchestra + +671790Brian CaddBrian George CaddAustralian pianist, keyboardist, producer and singer/songwriter, also known as Brian Caine, born November 29, 1946 in Perth, Western Australia who has performed as a member of [url=http://www.discogs.com/artist/Groop%2C+The+(3)]The Groop[/url], [url=http://www.discogs.com/artist/Axiom+(14)]Axiom[/url], [url=http://www.discogs.com/artist/Flying+Burrito+Bros%2C+The]Flying Burrito Brothers[/url] and solo. In March 1998 he took over as CEO of [l=Streetwise Music Group] in Brisbane, eventually becoming a co-owner.Needs Votehttp://www.briancadd.com/http://www.milesago.com/artists/cadd.htmhttp://www.howlspace.com.au/en2/caddbrian/caddbrian.htmhttp://hem.passagen.se/honga/database/c/caddbrian.htmlhttp://www.myspace.com/briancaddhttps://en.wikipedia.org/wiki/Brian_Caddhttps://www.allmusic.com/artist/brian-cadd-mn0000523296https://historyofaussiemusic.blogspot.com/search/label/Brian%20CaddB CaddB. CaddB.CaddBrain CaddBrian CoddBrian G. CaddBrian-CaddCaddCaineThe Flying Burrito BrosThe Groop (3)Blazing SaladsAxiom (14)The Bootleg Family BandThe Jackson Kings + +672025Oliver BoekhoornOboe player, arranger and photographer.Needs Votehttp://www.oliverboekhoorn.com/Olivier BoekhoornMad Cows SingNieuw Sinfonietta AmsterdamThe Rembrandt OrchestraCalefax Reed Quintet + +672476Jono AllenJonathan AllenNeeds VoteJonathan Allen + +672642René VáchaClassical violistNeeds VoteRene VachaThe Czech Philharmonic Orchestra + +673139Richard WhitingRichard Armstrong WhitingAmerican songwriter and composer, born 12 November 1891 in Peoria, Illinois, USA and died 10 February 1938 in Beverly Hills, California, USA. Inducted into Songwriters Hall of Fame in 1970. Father of [a=Margaret Whiting] and [a=Barbara Whiting (2)], and grandfather of [a=Richard Whiting Smith]. Brother-in-law of [a=Margaret Young (3)].Needs Votehttp://en.wikipedia.org/wiki/Richard_A._Whitinghttps://www.songhall.org/profile/Richard_Whitinghttps://www.imdb.com/name/nm0926028/https://web.archive.org/web/20220322213055/https://richardawhiting.com/index.htmhttps://travsd.wordpress.com/2022/11/12/on-some-other-whitings-and-others-of-vaudeville/https://www.facebook.com/myidealmusic/https://www.songhall.org/profiles/richard-whitinghttps://www.margaretwhiting.com/richardwhiting.htmhttps://adp.library.ucsb.edu/names/104978A. A. WhitingA. RichA. WhitingA. Whiting RichardD. WhitingDick WhitingE. A. WhitingE. WhitingE.A. WhitingG. WhitingH. A. WhitingH. WhitingJ. WhitingK. WhitingR A WhitingR WhitingR,WhitingR. A WhitingR. A. WhipingR. A. WhitingR. A. WhitlingR. A. WipingR. A: WhitingR. Al. WhitingR. H. WhitingR. WaitingR. WhitingR. Whiting, Richard A. WhitingR. WhitlingR. WhitneyR. WhittingR. WithingR.-A. WhitingR.A. WhipingR.A. WhitingR.A.WhitingR.H. WhitingR.WhitingRicard A. WhitingRicard WhitingRich A. WhitingRich WhitingRich. A WhitingRich. A. WhitingRich. WhitingRichad A WhitingRichad WhitingRichard A. WhitingRichard & A. WhitingRichard - WhitingRichard A . WhitingRichard A WhitingRichard A. WhitingRichard A. EhitingRichard A. WhitingRichard A. WhitlingRichard A.WhitingRichard E. WhitingRichard J. WhitingRichard R. WhitingRichard S. WhitingRichard W. WhitingRichard WhitningRichard a. WhitingRichard, WhitingRobert WhitingRobin WhitingW. WhitingWaitingWhilingWhintingWhipingWhiteyWhithingWhitinWhitingWhiting R.A.WhitlingWhitneyWhitngWhitnigWhittingWhittingsWithingWitingУайтинг + +673555Kal MannKalman CohenAmerican lyricist and producer (Philadelphia, Pennsylvania, May 6, 1917 - ✝ Pompano Beach, Florida, November 28, 2001). His most known songs include [i]Butterfly[/i], [i]Teddy Bear[/i], [i]Limbo Rock[/i], [i]Wild One[/i], [i]The Cha-Cha-Cha[/i], [i]Fabulous[/i], [i]Let's Twist Again[/i], which won the Grammy for best Pop Song of the year. Some songs such as "Limbo Rock" were credited under the pseudonym of [a870778]. This enabled him to be affiliated with both ASCAP and BMI. Founder with [a=Bernie Lowe] of the [l=Cameo Parkway] Records in 1956, creating a team, even with [a=Dave Appell], of prolific and successful songwriters.Needs Votehttps://en.wikipedia.org/wiki/Kal_MannAppellBilly MannC. MannCal MannCal MannsCal/MannCalmannCarl MannCohenCohen KalmanG. MannK MannK. JannK. ManK. MannK.MainK.MannKai MannKal - MannKal ManKal-M.Kal-MannKall HannKall MannKallmanKalmanKalmannKalomannKarl ManKarl MannKaye-MannM.ManMannMann / KaiMann KalMann, HMann, KalMann,KManneMannsMaunPalmannSheldonК. МаннКал МаннМэннカル・マンJon Sheldon + +674540Lou BaxterAndrew Whitson GriffithBlues Songwriter, who is best known for providing the lyrics to "Merry Christmas, Baby" (though this is noted to be in a bit of dispute). Needs Votehttps://www.smithsonianmag.com/arts-culture/who-wrote-merry-christmas-baby-180965207/BacterBaxterBaxter LBaxter, LouL. BasterL. BaxterL.BaxterLeo BaxterLex BaxterLou BexterM. Baxter + +674606Luke O'ReillyCorrectThe London Oratory Junior Choir + +675014Gareth HulseBritish classical oboist and cor anglais player.Needs Votehttps://londonsinfonietta.org.uk/players/gareth-hulseThe London Session OrchestraLondon Philharmonic OrchestraLondon SinfoniettaLondon Metropolitan OrchestraThe Nash EnsembleLondon Mozart PlayersNorthern SinfoniaBBC Concert OrchestraLondon Winds + +675015John OrfordJohn OrfordBassoon player.Needs Votehttps://en.wikipedia.org/wiki/John_OrfordBBC Symphony OrchestraBournemouth SinfoniettaLondon SinfoniettaLondon Wind OrchestraCornucopia EnsembleThe Military Ensemble Of London + +675017Enno SenftEnno SenftPrincipal double bass with the [a434336] and [url=http://www.discogs.com/artist/848261-Chamber-Orchestra-Of-Europe-The]Chamber Orchestra Of Europe[/url].Needs VoteEnno SeftLondon Symphony OrchestraLondon SinfoniettaThe Chamber Orchestra Of EuropeEuropean Union Youth Orchestra + +675023Simon GuntonTrombonistNeeds VoteThe London OrchestraLondon Classical PlayersGabrieli Players + +675024Ian HardwickIan HardwickClassical woodwind instrumentalist (oboe and cor anglais), and Professor of Oboe. +After studying at the [l290263], he was appointed Principal Oboe of [a=The English National Opera Orchestra] in 1987, a position he held for five years, before joining the [a=London Philharmonic Orchestra] as Principal Oboe in 1991. Professor of Oboe at the [l527847].Correcthttps://open.spotify.com/artist/3hm1N9xIXQLouFDQ8TYWyGhttps://music.apple.com/us/artist/ian-hardwick/264990347https://www.lpo.org.uk/oboe/ian-hardwick.htmlhttps://www.ram.ac.uk/people/ian-hardwickLondon Philharmonic OrchestraLondon Classical PlayersThe English National Opera Orchestra + +675026Fiona RitchiePercussionist.Needs VoteLondon SinfoniettaEnsemble Q + +675032David HockingsDavid HockingsPrincipal Percussion with the [b]BBC Symphony Orchestra[/b].CorrectBBC Symphony OrchestraLondon Sinfonietta + +675033Sam WaltonClassical percussionist/timpanist, and Professor of Percussion. +He studied timpani and percussion at the [l527847], where he received the Queen's Commendation award for the most outstanding student. After graduation he freelanced for 15 years. He has appeared regularly as a percussionist and timpanist with many of the UK’s top orchestras, as orchestral, chamber & solo recitalist and with his duo partner [a=Colin Currie]. Principal Percussion in [a=The John Wilson Orchestra], Co-Principal Percussion in the [a=London Symphony Orchestra] since 2012 and a member of [a=Between The Notes], [a=Colin Currie Group] & the [b]Colin Currie Quartet[/b]. He has performed on many movie & television soundtracks. Professor of Percussion at the [l290263] & the Royal Academy of Music, and percussion tutor for the [a=European Union Youth Orchestra].Needs Votehttps://www.acousticpercussion.com/home/about-us/signature-artists/sam-walton/https://www.percworks.co.uk/samwaltonhttps://lso.co.uk/orchestra/players/timpani-and-percussion.htmlhttps://www.rcm.ac.uk/percussion/professors/details/?id=02930https://www.ram.ac.uk/people/sam-waltonLondon Symphony OrchestraBBC Symphony OrchestraBetween The NotesThe John Wilson OrchestraLSO Percussion EnsembleColin Currie Group + +675266Jacob GadeJacob Thune Hansen GadeDanish composer, conductor, and violinist (born 29 November 1879 in Vejle, Denmark and died 20 February 1963 in Assens, Denmark). + +Gade is best known as the composer of the 1925 tango "Jalousie" (Tango Tzigane), i.e., "Jealousy" (Gypsy Tango).Needs Votehttps://www.tangojalousie.dk/https://en.wikipedia.org/wiki/Jacob_Gadehttps://www.imdb.com/name/nm0300540/https://adp.library.ucsb.edu/index.php/mastertalent/detail/109568/Gade_JacobCadeF. GadeFadeFrancesco GadeFrancisco GadeG. JacobGabeGadGad.GadeGade JacobGade Y.Gade-JacobGadelGadesGadéGardeGladeGodeGradeH. GadeJ GadeJ. CadeJ. GadeJ. GadéJ. GardeJ. GateJ. GladeJ. GradeJ. JadeJ.GadeJack GadeJackob GadeJacob - GadeJacob CadeJacob GabeJacob GaderJacob GadesJacob GladeJacob JabeJacob JadeJacob Thune Hansen GadeJacob-GadeJacobe GadeJacobi GadeJacobo GadeJacobo GadéJadeJakob GadeJakub GadeJalob GadeM. GadeN. GadeNiels W,GadeR. GadeY. Gadej. GadeГадеГадэГейдЖ. ГадеФ. ГадеЯ. ГадеЯ. ГадэガーデMaurice RibotLeon Bonnard + +675270Nathaniel ShilkretNaftule SchüldkrautAmerican conductor and composer (b. December 25, 1889 New York, NY – d. February 18, 1982 Franklin Square, NY, USA). + +Former classical clarinetist with New York Philharmonic, played in John Philip Sousa's and other concert bands; served as Victor's Director of Light Music from 1915-1935, and led orchestral accompaniment for many Victor artists during these years and on occasion also later. In late 1935, he moved to Hollywood, where he contributed music scores and musical direction for a number of studios between 1935 and 1946. Movies that he worked on include [i]Mary of Scotland[/i] (1936), [i]Swing Time[/i] (1936), [i]The Plough and the Stars[/i] and [i]Shall We Dance?[/i] (1937), and several Laurel and Hardy films. From 1946 through the mid-1950s, he made short films for RKO-Pathé.Needs Votehttps://en.wikipedia.org/wiki/Nathaniel_Shilkrethttps://fromthevaults-boppinbob.blogspot.com/2013/12/nat-shilkret-born-25-december-1899.htmlhttps://adp.library.ucsb.edu/names/105692A. ShilkretFahilkitHathaniel ShildretM.o Nathaniel ShilkretN ShilkretN. FilkretN. IppolitoN. SchildkretN. SchilkretN. ShildretN. ShilkertN. ShilkratN. ShilkredN. ShilkretN.ShilkretN.ShrilkretN: ShilkretNat SchilkretNat ShikretNat ShilkertNat ShilkretNat ShillkritNat. ShilkrekNat. ShilkretNatanie ShilkretNath ShilkretNath'l ShilkretNath, ShilkretNath. SchilkretNath. ShilkretNathanielNathaniel SchilkretNathaniel ShielkretNathaniel ShilbretNathaniel ShilkerNathaniel ShilkertNathaniel ShilkretsNathaniel ShirlkertNathaniel SilkretNethaniel / ShilkretSchilkretShikertShikretShilbretShildkretShilfretShilkertShilketShilkraftShilkratShilkredShilkretShilkrettShirkretSilhutSkilkertSkilkretΣίλκρετCharles HillgrenVictor Symphony OrchestraAll Star OrchestraNathaniel Shilkret And His OrchestraShilking OrchestraVictor Salon OrchestraNat Shilkret And The Victor OrchestraOrquesta Internacional (3) + +675732Leon ComegysJames Leon ComegysAmerican jazz trombonist + + +Born : 7 June 1917 in Maryland +Died : 15 January 1994 in New York City +Needs VoteComegysEdward Lee ComegysEdwards Lee ComegysJames ComegysJames L. ComegysL. ComegysLear ComegysLear CornegysLeon ComegeeLeon ComegeysLeon ComengysLeon CormengeLeon CormengesLeon CormongesLeon CornegysLéon ComegeysCount Basie OrchestraDizzy Gillespie And His OrchestraDizzy Gillespie Big BandLes Hite And His OrchestraLouis Jordan And His OrchestraMax Roach Septet + +675733Franklin SkeeteAmerican jazz bassist.Needs VoteFrank SkeetFrank SkeeteFrank SkeetsFranklin SkeetesFranklin SkeetsFranklyn SkeetFranklyn SkeeteFred SkeeteThe Charlie Parker QuartetDon Byas QuartetMax Roach QuartetWynton Kelly TrioMax Roach SeptetLester Young All-Stars Quintet + +676367Bela DrahosBéla DrahosClassical flautist and conductor, born 14 April 1955 in Kaposvár, Hungary. Native form of name is Drahos Béla.Needs Votehttps://en.wikipedia.org/wiki/B%C3%A9la_Drahoshttps://www.naxos.com/person/Bela_Drahos_31561/31561.htmB. DrahosBela DramosBella DrahosBelá DrahosBèla DrahosBéla DrahosBéla DranosDrahosDrahos BélaConcentus HungaricusLiszt Ferenc Chamber OrchestraAustro-Hungarian Haydn OrchestraBläserquintett Des Ungarischen Rundfunks + +676443Bill FrazierJazz alto saxophonist with Billy EckstineNeeds VoteBilly FrazierDizzy Gillespie And His OrchestraBilly Eckstine And His Orchestra + +677510Ray HendersonRaymond Brostb. December 1, 1896 in Buffalo, NY, USA +d. December 31, 1970 in Greenwich, CT, USA + +Ray Henderson was a pianist and an American composer. In 1925, Henderson became one third of the songwriting team with lyricists [a=Lew Brown] and [a=Buddy G. De Sylva]. [a=DeSylva, Brown and Henderson] became one of the top Tin Pan Alley songwriters of the era. + +Inducted into Songwriters Hall of Fame in 1970. +Needs Votehttp://en.wikipedia.org/wiki/Ray_Hendersonhttps://www.songhall.org/profile/Ray_Hendersonhttps://adp.library.ucsb.edu/names/102807AndersonBay HendersonChick HendersonD. HendersonDulienF. HendersonG. HendersonGordon HendersonH. HendersonH. RayHandersonHenderHenderonHendersenHendersnHendersomHendersonHenderson R.Henderson RayHenderson, Inc.Henderson,RHenderssonHenersonHerdersonHerndersonHindersonHohnstonHondersonJ. HendersonJ. Raymond HendersonK. HendersonLew HendersonR . HendersonR HendersonR. AndersonR. HandersonR. Hender-sonR. HendersaonR. HendersenR. HendersonR. HenderssonR. HenersonR. hendersonR.AndersonR.HendersonR.HenderssonRay AndersonRay HandersonRay HedndersonRay HenderssonRay HindersonRay-HendersonRaymong HendersonRoy HendersonRy HendersonS. HendersonY. HendersonР. ХендерсонРэй ХендерсонХендерсенХендерсонRaymond BrostDeSylva, Brown and Henderson + +678075Ray SimsAmerican jazz trombonist, brother of Zoot Sims, worked with Anita O'Day, Benny Goodman, Harry James, Les Brown and others +Born January 18, 1921 in Wichita, KansasNeeds Votehttps://adp.library.ucsb.edu/names/209474Ray SimmsRaymond "Ray" SimsRaymond 'Ray' SimsRaymond SimsSimsHarry James And His OrchestraLes Brown And His Band Of RenownLes Brown And His OrchestraDave Pell OctetJerry Gray And His OrchestraRay Sims With StringsDave Pell EnsembleThe Tom Talbert Jazz Orchestra + +678078Steve PerlowSaxophonist (baritone).CorrectPerlowStephen PerlowBuddy Rich And His OrchestraStan Kenton And His Orchestra + +678255Vincent van ElburgVincent van ElburgNeeds VoteE.V. ElburgV. E van ElburgV. Van ElburgV. van ElburgV.E. Van ElburgV.E. van ElburgV.Van ElburgVE. Van EloureEvantiEvan ForrestSpectrum (36)Thilo & Evanti + +678256Thilo SpaansThilo SpaansCorrectT. SpaansT.SpaansThiloThilo & Evanti + +678604Tauno VirtanenFinnish trumpeter and photographer. Needs VoteTauno O. VirtanenThe Otto Donner TreatmentJani Uhleniuksen Uusrahvaanomainen OrkesteriRadion TanssiorkesteriKauko Partion OrkesteriSäälimättömät + +678665Drew SalpertoNeeds VoteChet Baker Quartet + +678694Juha NikulainenFinnish producer.Needs Vote + +678882Kim LaskowskiAmerican bassoonist born in Brooklyn, NY who has played in the New York Philharmonic since 2003.Needs Votehttps://www.msmnyc.edu/faculty/kim-laskowski/Kim LackowskiKim LaskowskyNew York PhilharmonicMusic AmiciOpera House Ensemble + +678968Oswald Van OlmenClassical woodwind player, born 1941 in Belgium.Needs VoteVan OlmenLa Petite Bande + +679016Camillo BargoniCorrectBargohiBargoniBergoniBorgoniC, BargoniC. BarganiC. BargonC. BargoniC.BargoniCamilo BargoniCarlo BargoniG. BargoniM. C. BargoniБаргониЦ. Баргони + +679017Paul SiegelGerman songwriter and producer. +[b]For the US video producer, please use: [a1846158][/b]Needs VoteP. SiegelPaul SiegalPaulo SiegelSiegalSiegel + +679108Robbie PattonBritish singer/songwriter. + +English singer/songwriter Robbie Patton received his break when he toured as a special guest of Fleetwood Mac in 1979 when that act was one of the hottest acts in the music world. The association proved to be even more beneficial when Patton recorded his 1981 release Distant Shores. + +Not only did Mac keyboardist Christine McVie play keyboards and produce the record, but guitarist Lindsey Buckingham added guitar to the track “Don’t Give It Up.” While the album wasn’t a smash success, petering out in the lower reaches of the chart, “Don’t Give It Up” was released as a single and climbed into the Top 30 during the late summer. + +He followed Distant Shores with another McVie-produced release, Orders From Headquarters, which was released the following year. This time, Stevie Nicks provided her vocals, performing a duet with Patton on the single “Smiling Islands.” Neither the album nor single was able to achieve the same level of success, however, with Orders From Headquarters not even managing to chart. + +The failure of his solo release was tempered, though, with the performance of Fleetwood Mac’s “Hold Me,” which Patton wrote with McVie for the album Mirage. During the ’80s and ’90s, Patton wrote songs that appeared on albums by Jonathan Cain and Santana.Needs Votehttp://www.bluedesert.dk/robbiepatton.htmlPattonR, PattonR. PattonR.PattonRobby PattonRobert Patten + +679291Martin HaskellSound engineer. + +Martin Haskell studied art in the late 60s and went on to graduate in film and TV production in the early 70s. He joined Decca Records’ West Hampstead Studio complex as a trainee balance engineer in 1973 and left in 1980, having gained extensive experience recording Decca’s diverse artist roster, from The Edmundo Ros Orchestra to the Punks via Thin Lizzie and the Consort of Musicke. He spent the early 80s as a freelance pop engineer/producer but moved into classical music recording after the birth of his first child, as “the hours were more civilised”. + +This same period saw the beginnings of digital recording and the compact disc and Martin gained valuable experience in the dark arts of digital mastering working alongside Ben Turner and other pioneers at Finesplice. He also found himself drawn into the restoration of vintage recordings by Kevin Daly, an ex-Decca colleague, who had launched the Living Era label for fledgling British independent record company ASV. In the 90s he became ASV’s chief engineer, recording and mastering much of its output as well as remastering 78 rpm records for the now very successful Living Era. He continued to work for ASV until its virtual demise under the ownership of Universal. + +Martin has received numerous accolades and awards for his work over the years and he continues to record award-winning albums with some of the finest British classical musicians. He continues to work in audio restoration, mastering a very broad range of music for CD. +Needs Votehttp://www.charm.rhul.ac.uk/about/staff/p5_18.htmlMartinMartin HaskelMartin HasbeenMartin Hasgone + +679681Glynne AdamsNew Zealander (most likely from Auckland) classical violist & violinist, conductor, and Professor of Violin. Active 1951-1983. +Formerly Principal Viola with the [a=New Zealand Symphony Orchestra] and the [a=London Symphony Orchestra] (1967-1968). In 1979 he moved to Adelaide as senior lecturer in viola studies, and head of String Studies at Adelaide College of Arts and Education. Professor of Viola & Viola at the [l2045059]. +Uncle of [a=Miranda Adams].Needs Votehttps://natlib.govt.nz/records/22361413Glyn AdamsGlynn AdamsLondon Symphony OrchestraNew Zealand Symphony Orchestra + +679801Jörg WinklerGerman violist, born in East Berlin, GDR/DDR (German Democratic Republic). Jörg Winkler has been the first viola of the [a=Orchestra Del Maggio Musicale Fiorentino] since 2003, and was a founding member of the [a=Mahler Chamber Orchestra]. At the invitation of Claudio Abbado, he collaborated with the [a=Lucerne Festival Orchestra]. Winkler has played as a viola soloist with ensembles such as the [a=Münchner Philharmoniker], the [a=London Philharmonic Orchestra] and the [a=Camerata Academica Salzburg]. He is often invited to play and hold masterclasses in Italy and Europe.Needs Votehttps://www.oficinaocm.com/musicisti/jorg-winkler-viola/?lang=enJoerg WinklerMünchner PhilharmonikerLondon Philharmonic OrchestraMahler Chamber OrchestraStaatskapelle BerlinCamerata Academica SalzburgLucerne Festival OrchestraOrchestra Del Maggio Musicale Fiorentino + +679802Matthias BäckerGerman oboist, English hornist and Professor of Oboe at the Hochschule für Musik Franz Liszt Weimar, born 1971 in Schwerin, GDR.Needs Votehttps://de.wikipedia.org/wiki/Matthias_B%C3%A4cker_(Musiker)Berliner SymphonikerOrchester Des Nationaltheaters MannheimMahler Chamber OrchestraOrchester Der Deutschen Oper BerlinCamerata Academica SalzburgGustav Mahler Jugendorchester + +679803Adele BitterGerman cellist.Needs VoteAdele Schneider-BitterEnsemble ModernDeutsches Symphonie-Orchester BerlinGustav Mahler JugendorchesterAdamello Quartett + +679804Hartmut SchillGerman violinist.Needs VoteOrchester der Bayreuther FestspieleRobert-Schumann-PhilharmonieRobert-Schumann-Quartett + +680012Felice BryantMatilda Genevieve ScadutoAmerican songwriter, born 7 August 1925 in Milwaukee, Wisconsin, USA and died 22 April 2003. She was married to [a=Boudleaux Bryant]. Nashville Songwriters Hall of Fame (1972), Atlanta Country Music Hall of Fame (1985). Inducted into Songwriters Hall of Fame in 1986. +Needs Votehttps://www.songhall.org/profile/Felice_Bryanthttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=100&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Felice+Bryant&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=bmihttps://adp.library.ucsb.edu/names/356602BryantBryant FeliceByantF BryantF.F. BreyantF. BriantF. BryantF. ByrantF. ブラィアンF.BryantFelicce BryantFeliceFelice, BryantFelice-BryantFelice/BryantFelix BryantSelice BryantBoudleaux & Felice Bryant + +680802Ian Wilson (6)Clarinetist and recorder player. + +Head of Woodwind at Eton College, the principal recorder professor at the Guildhall School of Music & Drama and visiting recorder specialist at the North East of Scotland Music School in his hometown of Aberdeen.Needs Votehttps://www.gsmd.ac.uk/staff/professor-ian-wilson-bmus-pgdipmus-lgsm-fheahttps://x.com/iewilsonThe SixteenRetrospect EnsembleThe Flautadors Recorder Quartet + +680946Al SpieldockJazz drummer, married to [a299941]Needs VoteAl SpeildockAl SpiedlockAl SpiedockLionel Hampton And His Orchestra + +681091Jesse BelvinJesse Lorenzo BelvinBorn: December 15, 1932, San Antonio, Texas. +Died: February 6, 1960, Fairhope, Arkansas. + +Rhythm and blues singer who charted with the song "You Cheated" during his tenure with the group The Shields. His career was tragically cut short in 1960 when he and his wife, [a=Jo Ann Belvin], were killed in a head-on car accident in Little Rock, Arkansas. + +Brother of [a590353]. +Needs Votehttp://en.wikipedia.org/wiki/Jesse_Belvinhttps://adp.library.ucsb.edu/names/303781http://www.electricearl.com/dws/belvin.html(The Late) Jesse BelvinBel inBelarisBelvinBelvin, BBelvin, JBelvin/BelvinBlevinBluinJ BelvinJ. BeldinJ. BeluinJ. BelvinJ. BelvinsJ. BelwinJ. BevinJ.J. BelvinJ.L. BelvinJ.L.BelvinJesseJesse BeldinJesse BelvenJesse Belvin & GroupJesse Belvin (Bud Harper)Jesse BlevinJesse L BelvinJesse L. BelvinJessi BelvinJessieJessie BelvinJessie L. BelvinCurley Williams (2)The ShieldsThe CliquesJesse And MarvinThe Fellows (6)The Saxons (9)J. & J. BelvinJesse Belvin & GroupThe Sheiks (15) + +681785Laurence AllalahLaurence Allalah-AlirolClassical cellist (10 February 1968).Needs VoteL. AllalahLaurence AlallahLaurence Allalah-Al-IrolLaurence AlirolLes EnfoirésOrchestre De ParisQuatuor De MinuitOrchestre National De Montpellier + +681925Andres MeringuitoJazz trumpeterNeeds VoteAndres Meringuito (Fats Ford)Andrew Ford (3)Fats FordAndrés MerenguitoDuke Ellington And His Orchestra + +681995Rachel Roberts (2)British classical violist, chamber musician and music educator. Born in Huddersfield, West Yorkshire, England. +She attended [l871972], [l305416] & [l459222]. She became principal viola of [a=The Manchester Camerata] when she was about twenty years old. Other groups with whom she has worked include the [a=Dante Quartet], the [a=Fitzwilliam String Quartet], [a=The London Chamber Orchestra], the [a=London Conchord Ensemble], [a=The Michael Nyman Orchestra], the [a=Philharmonia Orchestra] of London, the Philharmonia String Trio, and the Razumovsky Ensemble. In May 2000, she became Principal Viola of the [a=Philharmonia Orchestra], a position she held until 2010. Professor of Viola at the Guildhall School of Music & Drama.Needs Votehttp://www.rachelrobertsviola.com/https://www.facebook.com/rachelrobertsviola/https://twitter.com/rachelrjrvla?lang=enhttps://www.linkedin.com/in/rachelrobertsviola/?originalSubdomain=ukhttps://open.spotify.com/artist/1kO1prL8GSAOJYecFt0pzwhttps://www.feenotes.com/database/artists/roberts-rachel/https://maslink.co.uk/client-directory?client=ROBER4&teacher=1&teacher=40&cv=1https://www.gsmd.ac.uk/music/staff/teaching_staff/department/1-department-of-strings-harp-and-guitar/28-rachel-roberts/RobertsRoyal Philharmonic OrchestraLondon Metropolitan OrchestraPhilharmonia OrchestraThe Michael Nyman OrchestraFitzwilliam String QuartetThe Manchester CamerataDante QuartetLondon Conchord Ensemble + +682453Larry MoreyLarry Morey (1905-1971) was an American lyricist, most known for writing "Whistle While You Work", "Heigh Ho" and "Someday My Prince Will Come".Needs Votehttp://en.wikipedia.org/wiki/Larry_Moreyhttps://www.findagrave.com/memorial/55392635/larry-moreyhttps://www.imdb.com/name/nm0604392/?ref_=nv_sr_srsg_0https://adp.library.ucsb.edu/names/110484L MoreyL MorleyL, MoreyL. L. MoreyL. LoreyL. MareyL. MoeryL. MorersL. MoretL. MoreyL. MorleyL. MorreyL. MorryL.MoreyLarey MoreyLarrey MoreyLarry LoreyLarry MareyLarry MorayLarry MorleyLarry MoroyLarry MorreyLary MoreyMakeyMareyMereyMooreMorayMorelyMorenMoreyMorey LMorey, LMorezMorleyMorreyMoveyЛ. МореЛери МориМори + +682663Goffin And KingGerry Goffin (lyricist) and Carole King (composer) were a prolific husband and wife songwriting team throughout the 1960s, writing many hits such as "Will You Still Love Me Tomorrow?", "Some Kind of Wonderful", "Pleasant Valley Sunday", "Up on the Roof", and other songs that have since become pop standards. The duo worked in the Brill Building writing songs together up until their separation and divorce in 1968, after which King embarked on her own successful solo career and Goffin collaborated with other composers. + +Honors: +1987: Songwriters Hall of Fame +1990: Rock & Roll Hall of FameNeeds Votehttps://en.wikipedia.org/wiki/List_of_songs_with_lyrics_by_Gerry_GoffinBoffin KingC King - G GoffinC King - G. GoffinC King, G GoffinC King/G. GoffinC. Goffin - C. KinaC. Goffin - C. KingC. Goffin / C. KingC. Goffin C. KingC. Goffin, C. KingC. Goffin-C. KingC. Goffin/C. KingC. Goffin/KingC. Goffin; C. KingC. KingC. King & G. GoffenC. King & G. GoffinC. King & GoffinC. King & J. GoffinC. King , G. GoffinC. King - G. CoffinC. King - G. GeoffinC. King - G. GoffinC. King - G. GogginC. King - G.GoffinC. King - J. CossinC. King - J. GoffinC. King -G. GoffinC. King / G GoffinC. King / G. GoffenC. King / G. GoffinC. King / J. GoffinC. King / J. GossinC. King And G. GoffinC. King Et G. GoffinC. King y GoffinC. King, C. GoffinC. King, G, GoffinC. King, G. CoffinC. King, G. GiffinC. King, G. GoffinC. King, G. GossinC. King, G.GoffinC. King, Gerry GoffinC. King, J. GoeffinC. King, J. GoffinC. King- G. GoffinC. King-G. GeffinC. King-G. GoffenC. King-G. GoffinC. King-G.GoffenC. King-G.GoffinC. King-J, GoffinC. King-J. GoeffinC. King-J. GoffinC. King-J. KingC. King/ G. GoffinC. King/G. CoffinC. King/G. GoffinC. King/G. GogginC. King/G. GossinC. King/G.GoffinC. King/GoffinC. King/J. GoffinC. King/J. GossinC.King / G.GoffinC.King, G.GoffinC.King-G. GoffinC.King-G.GoffinC.King/G.GoffinCK/GoffinCarol King & Gerry GoffinCarol King & Jerry GoffinCarol King & Jerry GossinCarol King - Gerrry-GoffinCarol King - Gerry GoffinCarol King - GoffinCarol King - Jerry GoffinCarol King / Gerry GoffinCarol King / Jerry GoffinCarol King And Gerry GoffinCarol King, G. GaffinCarol King, Gerald GoffinCarol King, Gerry GoffinCarol King, Jerry GoffinCarol King-Gerald GoffinCarol King-Gerry GoffinCarol King-Jarry GoffinCarol King-Jerry CoffinCarol King-Jerry GoffinCarol King/Gerry Gerry GoffinCarol King/Gerry GoffinCarol King/Gerry GofinCarol King/Gerry GottinCarol King/Jerry GoffinCarole Goffin & Gerry KingCarole Goffin, Gerry GoffinCarole Goffin/Carole KingCarole KingCarole King & Gerald CoffinCarole King & Gerald GoffinCarole King & Gerold GoffinCarole King & Gerry GoffinCarole King & Jerry CoffinCarole King & Jerry GoffinCarole King , GerryGoffinCarole King - G. GoffinCarole King - Gary GoffinCarole King - Gerald GoffinCarole King - Gerry GoffinCarole King - GoffinCarole King - J. GoffinCarole King - Jerry GoffinCarole King / Gerald GoffinCarole King / Gerry CoffinCarole King / Gerry GoffinCarole King / Gerry GofinCarole King / Jerry GoffinCarole King And Gerald GoffinCarole King And Gerold GoffinCarole King And Gerry GoffinCarole King And Jerry GoffinCarole King Larkey, Gerald GoffinCarole King Larkey/Gerry GoffinCarole King Und Gerry GoffinCarole King y Gerry GoffinCarole King · Gerry GoffinCarole King – Gerry GoffinCarole King+Gerry GoffinCarole King, G. GoffinCarole King, Gary GoffinCarole King, Gerald GoffinCarole King, Gerry CoffinCarole King, Gerry GoffinCarole King, GoffinCarole King, J. GoffinCarole King, Jerry GoffenCarole King, Jerry GoffinCarole King,Gerry GoffinCarole King- Gerry GoffinCarole King--Gerry GoffinCarole King-G. GoffinCarole King-Gerald GoffinCarole King-Gerry GoffinCarole King-GoffinCarole King-Jerry GoffinCarole King/ Gerry GoffinCarole King/ Jerry GoffinCarole King/G. GoffinCarole King/Gerald CoffinCarole King/Gerald GoffinCarole King/Gerry GoffinCarole King/Gerry GottinCarole King/Jerry GoffinCarole.King - Jerry.GoffinCarolie King/Jerry GoffinCaroline King, Gerry GoffinCaroll King & Gary GoffinCoffin & KingCoffin - KingCoffin, KingCoffin-KingCoffin/KingCottin/KingD. Goffin Et C. KingD. Goffin, C. KingD. Goffin/C. KingG .Goffin / C. KingG GoffinG Goffin & C KingG Goffin & C. KingG Goffin - C. KingG Goffin / C KingG Goffin / C. KingG Goffin And C KingG Goffin, C KingG Goffin-C KingG Goffin/ C KingG Goffin/ C. KingG Goffin/C KingG. Coffin & C. KingG. Coffin - C. KingG. Coffin / C. KingG. Coffin, C. KingG. Coffin-C. KingG. Coffin/C. KingG. Gaffia / C. KingG. Gaffin-C. KingG. Geoffin/C. KingG. Gerald, C. KingG. Goffen, C. KingG. Goffen/C. KingG. Gofffin - C. KingG. GoffinG. Goffin & C. KingG. Goffin & C.KingG. Goffin & Carole KingG. Goffin , C. KingG. Goffin - C KingG. Goffin - C. KingG. Goffin - C.KingG. Goffin - Ca. KingG. Goffin - Carole KingG. Goffin - CokingG. Goffin -C. KingG. Goffin / C. KingG. Goffin / Carole KingG. Goffin / G. KingG. Goffin And C. KingG. Goffin And Carole KingG. Goffin C. KingG. Goffin Et C. KingG. Goffin Und C. KingG. Goffin Y C. KingG. Goffin et C. KingG. Goffin y C. KingG. Goffin – C. KingG. Goffin, C. KingG. Goffin, C.KingG. Goffin, Carole KingG. Goffin-C- KingG. Goffin-C. GoffinG. Goffin-C. KingG. Goffin-C.KingG. Goffin-Carole KingG. Goffin-K. KingG. Goffin-KingG. Goffin/ C. KingG. Goffin/C KingG. Goffin/C. KinG. Goffin/C. KingG. Goffin/C.KingG. Goffin–C. KingG. Goffin—C. KingG. Goffin—C.KingG. Goggin - C. KingG. Gossin - C. KingG. Gossin Et C. KingG. Gossin-C. KingG. Gotton - C. KingG. Groffin / C. KingG. Groffin/C. KingG. KingG. Offend C. KingG.Coffin & C.KingG.Coffin/C.KingG.Goffin - C. KingG.Goffin / C. KingG.Goffin / C.KingG.Goffin, C.KingG.Goffin-C. KingG.Goffin-C.KingG.Goffin/C. KingG.Goffin/C.KingG.Goffin/G.KingGarry Coffin/Carol KingGarry Goffin & Carole KingGarry Goffin / Carole KingGarry Goffin-Carole KingGarry Goffin/Carole KingGary Goffin - Caroll KingGary Goffin And Carole KingGary Goffin Carole KingGary Goffin and Carole KingGary Goffin, Carole KingGary Goffin-C. KingGary Goffin-Carole KingGary Goffin/Carole KingGauffin-KingGeffen & KingGeffen/KingGelfin, KindGeoffinGeoffin-KingGeorge Goffin & Carole KingGerald Coffin And Carole KingGerald Goffin & Carole GoffinGerald Goffin & Carole KingGerald Goffin - Carole KingGerald Goffin / Carol KingGerald Goffin / Carole KingGerald Goffin / Carole King LarkeyGerald Goffin And Carole KingGerald Goffin Carole KingGerald Goffin and Carole KingGerald Goffin, Carol King LarkeyGerald Goffin, Carole KIngGerald Goffin, Carole KingGerald Goffin, Carole King LarkeyGerald Goffin- Carol KingGerald Goffin-Carol KingGerald Goffin-Carole GoffinGerald Goffin-Carole KingGerald Goffin. Carole KingGerald Goffin/Carol KingGerald Goffin/Carole KingGerald Goffin/Carole King LarkeyGerald Goffin; Carole KingGerald Gosin-Carol King GosinGerald GriffinGerlad Goffin, Carole KingGerrald Goffin And Carole KingGerrt Goffin / Carole KingGerry Coffin - Carol KingGerry Coffin - Carole KingGerry Coffin / Carole KingGerry Coffin – Carole KingGerry Coffin, Carole KingGerry Coffin, Charlie KingGerry Coffin-Carol KingGerry Coffin-Carole KingGerry Coffin/Carole KingGerry Gaffin/Carole KingGerry Goffan-Carole KingGerry Goffen, Carole KingGerry GoffinGerry Goffin & Carol KingGerry Goffin & Carole KingGerry Goffin - C. KingGerry Goffin - Carloe KingGerry Goffin - Carlole KingGerry Goffin - Carol KingGerry Goffin - Carole KingGerry Goffin - Carolyn KingGerry Goffin - Karoline KingGerry Goffin / Carol KingGerry Goffin / Carole KingGerry Goffin And Carol KingGerry Goffin And Carole KingGerry Goffin Carole KingGerry Goffin Et Carole KingGerry Goffin Und Carole KingGerry Goffin and Carole KingGerry Goffin y Carole KingGerry Goffin, C. KingGerry Goffin, Carol KingGerry Goffin, Carole KingGerry Goffin, KingGerry Goffin- Carol KingGerry Goffin- Carole KingGerry Goffin-C. KingGerry Goffin-Carale KingGerry Goffin-Carol KingGerry Goffin-Carola KingGerry Goffin-Carole KIngGerry Goffin-Carole KingGerry Goffin-KingGerry Goffin/ Carole KingGerry Goffin/Buffin KingGerry Goffin/Carol KingGerry Goffin/CaroleGerry Goffin/Carole EversGerry Goffin/Carole KingGerry Goffin/KingGerry Goffin–Carole KingGerry Goffin/Carole KingGerry Gofin & Carole KingGerry Gofin, Carol KingGerry Gofin-Carole KingGerry Gofn-Carole KingGerry Gossin - Carole KingGerry Gossin / Carole KingGerry Gossin-Carole KingGerry Guffin-Carole KingGerry-Goffin, Carole-KingGerry-Groffin-KarelGoddin/KingGoettin-KingGoff/KingGoffen-KingGoffen/KingGofffin/KingGoffi/KingGoffinGoffin & KingGoffin - C. KingGoffin - Carole KingGoffin - GoffinGoffin - KingGoffin - King -Goffin - KinngGoffin -- KingGoffin -KingGoffin / Carole KingGoffin / KingGoffin Et KingGoffin Gerald, King CaroleGoffin KingGoffin KingsGoffin Y KingGoffin y KingGoffin – KingGoffin', KingGoffin'KingGoffin, C. KingGoffin, Carol KingGoffin, G./King, C.Goffin, G/King, CGoffin, G/King, KGoffin, Gerald/King, CaroleGoffin, Gerry , Carole KingGoffin, Gerry, King, CaroleGoffin, Gerry/King, CarolGoffin, KindGoffin, KingGoffin, King Gerry Goffin / Carole KingGoffin, Limited KingGoffin,G/King,CGoffin,KingGoffin- KingGoffin--KingGoffin-C. KingGoffin-CaroleGoffin-KIngGoffin-KingGoffin. KingGoffin/ KingGoffin/C. KingGoffin/KIngGoffin/KengGoffin/KingGoffin/KingsGoffin:KingGoffin; KingGoffina/KingGoffing - KingGoffing / KingGoffing, KingGoffing-KingGoffing/KingGoffini/KingGoffino-KingGoffin·KingGoffin–KingGoffin—KingGoffman/KingGoffrin-KingGofin - KingGofin/KingGoggin KingGolfin / KingGolfin/KingGolfing-KingGolfing/KingGoofin - E. KingGoofin'/KingGordon-KingGorffin/KingGosin/KlsogwellGossin King AldonGossin-KingGossin/KingGossing & KingGraffin, KingGriffin / KingGroffin-KingJ. Coffin - C. KingJ. GoffinJ. Goffin & C. KingJ. Goffin - C. KingJ. Goffin - Carol KingJ. Goffin / C. KingJ. Goffin / Carole KingJ. Goffin, C. KingJ. Goffin, KingJ. Goffin-C. KingJ. Goffin-L. KingJ. Goffin/C. KingJ. Goffin/KingJ. KingJ.Goffin/C. KingJerry Coffin - Carole KingJerry Goffin & Carol KingJerry Goffin & Carole KingJerry Goffin & Carone KingJerry Goffin - Carol KingJerry Goffin - Carole KingJerry Goffin / Carole KingJerry Goffin Et Carole KingJerry Goffin, C. KingJerry Goffin, Carol KingJerry Goffin, Carole KingJerry Goffin-Carl KingJerry Goffin-Carol KingJerry Goffin-Carole KingJerry Goffin/C.KingJerry Goffin/Carol KingJerry Goffin/Carole KingJerry Hoffin / Carole KingKingKing & GoffinKing - BoffinKing - CoffinKing - GoeffinKing - GoffinKing - GoffingKing -GoffinKing / CoffinKing / GoffinKing / Jerry GoffinKing And GoffinKing CoffinKing GoffinKing Y GoffinKing _ GoffinKing et GoffinKing y CoffinKing y GoffinKing, C/Goffin, GKing, Carole / Goffin, GeraldKing, GoffenKing, GoffinKing-CoffinKing-GoeffinKing-GoffinKing-GossimKing-OffinKing/CoffinKing/GeoffKing/GoffenKing/GoffinKing/GofiinKing; GoffinM. Goffin - C. KingO. Goslin, C. KingR. Goffin & KingR. Goffin / Carole KingR. Goffin Et KingR. Goffin, KingR. Goffin/KingS. Goffin / C. KingT. Goffin - C. KingT. Goffin-C. Kingגופין - קינגקרול קינג / ג׳. גופיןGerry GoffinCarole King + +683065Clifford "Snags" JonesAmerican jazz drummer. + +Born : 1900 in New Orleans, Louisiana. +Died : January 31, 1947 in Chicago, Illinois. + +"Snags" worked with Buddy Petit, Jack Carey, Papa Celestin, A. J. Piron, King Oliver, Louis Armstrong, Richard M. Jones (blues singer), Darnell Howard, Bunk Johnson. +Recorded with : Junie C. Cobb, Jimmy Wade, "The Dixie Four", "State Street Ramblers", Preston Jackson, Punch Miller.Needs Vote"Snag" JonesCliff "Snags" JonesCliff JonesClifford "Snag" JonesClifford "Snaggs" JonesClifford JonesState Street RamblersArthur Sims And His Creole Roof OrchestraStarks Hot Five + +683122James WhitneyBig band trombonistNeeds VoteJ. WhitneyLouis Armstrong And His Orchestra + +683130Elmer WilliamsElmer (or) Elbert Williams.American jazz tenor saxophonist, clarinetist and arranger, born July 27, 1916 in Tuscaloosa, Alabama, died February 28, 1994 in New York City, New York. +"Skippy" Williams played with Chester Clark Band (1933), Toledo Frank Terry Orchestra (1934), with an his own band (1936), [a253011] (1939), [a648212], [a307187], [a256012], [a401548], [a145257], [a311059], Bob Chester, Fletcher Henderson, Chick Webb, Tommy Reynolds, led his own band for a year and in 1940s in Florida with his own small combo. In the late 1950s moved to New York and continued playing (1973 in the Ellington Band during its last Carnegie Hall concert). +Needs Votehttps://en.wikipedia.org/wiki/Elmer_Williams_(saxophonist)https://www.allmusic.com/artist/elmer-skippy-williams-mn0001521580/biographyhttps://adp.library.ucsb.edu/names/113999https://adp.library.ucsb.edu/names/113569E. WilliamsElbert "Skippy" WilliamsElbert Skippy WilliamsElbert WilliamsElmer "Skippy" WilliamsElmer "Tone" WilliamsElmer 'Skippy' WilliamsElmer Skippy WilliamsS. WilliamsSkip WilliamsSkippy WIlliamsSkippy WilliamsWilliamsWilliams RandallShafek KareemDuke Ellington And His OrchestraLouis Armstrong And His OrchestraFletcher Henderson And His OrchestraChick Webb And His OrchestraLucky Millinder And His OrchestraJimmy Mundy OrchestraThe Jungle Band (3) + +683177Italo GrecoItalo Nicola GrecoItalian producer, composer, arranger and musician (Sezze, June 1, 1934 – Grottaferrata, October 14, 2012) also known with the alias [a888606].Needs Votehttp://it.wikipedia.org/wiki/Lilli_GrecoG. GrécoGrecoGreco Italo NicolaH. GrecoI GrecoI. GreccoI. GrecoI. N. GrecoI.GrecoI.N GrecoI.N. GrecoItalo "Lili" GrecoItalo "Lilli" GrecoItalo "Lilly" GrecoItalo (Lilli) GrecoItalo Lilli GrecoItalo Nicola GrecoItalo Nicolo GrecoItalo « Lilli » GrecoItalo «Lilli» GrecoItalo “Lilli” GrecoLili GrecoM. GrecoMo. Italo GrecoN. GrecoN. Greco ItaloNicola GrecoNicola Greco ItaloNicola Italo GrecoLilli GrecoGroolyItalo Greco Orchestra + +683292Richard HickoxRichard Sidney HickoxEnglish conductor of choral, orchestral and operatic music +Born: 5th March 1948 Stokenchurch, Buckinghamshire, England, UK +Died: 23rd November 2008 Swansea, Wales, UK +Married to [a=Pamela Helen Stephen].Needs Votehttps://en.wikipedia.org/wiki/Richard_Hickoxhttps://www.bach-cantatas.com/Bio/Hickox-Richard.htmHickokHickoxR. HickoxRichard HickcxRichard Hickox From Chandosヒコックスリチャード・ヒコックスThe Richard Hickox SingersThe Richard Hickox Orchestra + +683570Buddy WoodsonWilliam WoodsonJazz bassist.CorrectBuddy WoodsRobert "Buddy" WoodsonWilliam "Buddy" WoodsonGerald Wilson OrchestraThe Calvin Jackson Quartet + +683885Anneliese RothenbergerGerman operatic soprano, born 19 June 1926 in Mannheim, Germany and died 24 May 2010 in Münsterlingen, Switzerland. +Needs Votehttps://en.wikipedia.org/wiki/Anneliese_Rothenbergerhttps://www.imdb.com/name/nm0745154/A. RothenbergerAnnel. RothenbergerAnneliesse RothenbergerAnnelise RothenbergerMonika LucaRothenbergerアンネリーゼ ローテンベルガー + +683941Geraldine WaltherGeraldine Lamboley Walther American viola player, principal viola of the San Francisco Symphony Orchestra for almost 30 years, from 1976 to 2005. Member of the Takács Quartet from 2005 to 2020. +Needs Votehttps://en.wikipedia.org/wiki/Geraldine_WaltherSan Francisco SymphonyBaltimore Symphony OrchestraTakács QuartetPittsburgh Symphony OrchestraThe Volkert-Walther String Trio + +683943Anthony CironeAmerican percussionist and composer.Needs Votehttp://www.anthonyjcirone.com/Anthony J. CironeSan Francisco Symphony + +684253Magne AmdahlNorwegian composer and pianist, born 6 June 1942Needs VoteOslo Filharmoniske Orkester + +684601InverseCorey Soljan[a=Inverse] The alias of Corey Soljan when writing and producing in the genre of UK Hardcore. Corey Soljan went on to produce Hardstyle originally under the alias, [a=Bioweapon] & Hard Trance under the alias of [a=BRK3]. Shortly after he started [a=Code Black] where he continues to produce Hardstyle. +Needs Votehttps://www.codeblackmedia.nlhttps://www.facebook.com/codeblackmediahttps://www.instagram.com/codeblackmediahttps://www.youtube.com/codeblackmediaCorey SoljanCode BlackBRK3Bioweapon + +685142James BoydClassical violist.Needs Votehttps://twitter.com/jbjbjbjbjbhttps://www.hyperion-records.co.uk/a.asp?a=A781The London Telefilmonic OrchestraLondon SinfoniettaThe Michael Nyman BandThe English Baroque SoloistsThe Raphael EnsembleThe London Haydn QuartetArcangeloSinfonia Of London Chamber Ensemble + +685341Pat RosaliaPatricia Aurora Olivia RosaliaAmerican Jazz singer. + +died on July 19, 2011 at the age of 67.Needs VotePatThe Manhattan Transfer + +685589Giuseppe CassiaGiuseppe CassiaItalian lyricist, composer and musical producer also known as Pino Cassia (Siracusa, June 12, 1920 – Rome, August 15, 1982).CorrectAssiaC. GiuseppeCasaCasiaCaslaCasseaCassiaCassicCassioCasssiaG. CassiaG. CassioG. CassisG. GassiaG.CassiaG.Cassia-GG.cassiaGassiaGuiseppe CassiaP. CassiaP.CassiaP.CassisКассиаキャシアWallupCatraDa Vinci Cassia + +685691Little Jack LittleJohn LeonardJack Little (also Little Jack Little, born May 30, 1899 in London, UK, died April 9, 1956 in Hollywood, Florida) was a British-born American composer, singer, pianist, actor and songwriter. + +His compositions include "Jealous", "I Promise You", "A Shanty in Old Shanty Town" and "You're a Heavenly Thing". + +For the American country and bluegrass musician see [a710683]. +For the Australian narrator see [a3618307]. +Needs Votehttp://www.bigbandlibrary.com/littlejacklittle.htmlhttp://en.wikipedia.org/wiki/Little_Jack_Littlehttps://adp.library.ucsb.edu/names/108414https://adp.library.ucsb.edu/names/327665"Little" Jack LittleJ. LittleJ. LittlwJack LittleJackie LittleL. J. LittleL. Jack LittleL.J. LittleLittleLittle JackLittle, JackЛ. ЛитлLittle Jack Little And His Orchestra + +685692Dave OppenheimAmerican songwriter, author, & librettist. Born September 16, 1889 in Dubuque, Iowa, USA. Died December 5, 1961. + +[b]For clarinetist & producer, see [a=David Oppenheim][/b]. + +Best known for song "Hold Me", which he co-wrote with [a597641] and [a685691].The song has been covered over 100 times and has charted six times in the U.S. & once in the U.K., with its highest charting U.S. #3 coming in 1933 by The Hotel Commodore Orchestra. His other top song came in 1931 with "It's the Girl" by Boswell Sisters (co-written by [a=Abel Baer]). Overall, he charted ten times as a songwriter between 1931-1981. +Oppenheim wrote music for shows in London, Broadway, and for films, including the 1944 [i]Lady Let’s Dance[/i]. He also played semi-professional football.Needs Votehttps://www.imdb.com/name/nm0649152/https://castalbums.org/people/Dave-Oppenheim/118346https://adp.library.ucsb.edu/index.php/mastertalent/detail/112100/Oppenheim_DaveD. OpenheimD. OppeinheimD. OppenheimDavid OppenheimDavid OppenheimerLittle Dave OppenheimLittle OppenheimOpenehimerOpenheimOpenhiemOppenheimOppenheimerOppenheinOppenhiem + +686179Peter PöppelClassical bass vocalist.Needs VoteCollegium Vocale + +686224Ondrej KamešClassical violistNeeds VoteKameš OndrejOnd Ej KamešOndřej KamešThe Czech Philharmonic Orchestra + +686675Joe RandazzoTrombone playerNeeds VoteStan Kenton And His OrchestraAl Porcino Big BandNational Jazz EnsembleNorth Texas State University Concert BandUniversity Of North Texas Neophonic OrchestraFrank Perowsky Jazz Orchestra1:00 O'Clock Lab BandCecilia Coleman Big Band + +686722André JourdanFrench jazz drummer. Recorded between 1941 and 1955. Accompanied [a258422] in a live recording at [l288520] on October 19, 1955. +b.: August 18, 1920 in Valenciennes, France +d.: July 2, 1954 in Madrid, Spain (suicide)Needs Votehttps://djangonewquintettclarinet.wordpress.com/2016/08/19/andre-jourdan/https://data.bnf.fr/fr/14028522/andre_jourdan/A. JourdanAndre JouranAndre JourdanAndre JourdonAndy JourdanSidney Bechet And His OrchestraQuintette Du Hot Club De FranceDjango's MusicHubert Rostaing Et Son OrchestreAimé Barelli Et Son OrchestreLe Quartette Swing Emile CarraraAndré Reweliotty Et Son OrchestreJacques Hélian Et Son OrchestreJam Session N° 5Hubert Rostaing Trio + +686723Jacques MartinonFrench jazz drummer. born 1925, died 2011Needs Votehttps://djangonewquintettclarinet.wordpress.com/2016/10/05/jacques-martinon/J. MartinonJacques MartisonQuintette Du Hot Club De FranceDjango Reinhardt Et Son Orchestre + +686731Joseph SwetchinViolinist.Needs VoteBartel De SwetshinBartel de SwetshinJosef SwetschinJoseph SwetschinSwetchinSwetschinQuintette Du Hot Club De France + +686732Paul BartelViolinist.Needs VoteBartelP. BartelQuintette Du Hot Club De France + +686904Garbo (5)Nicholas GarbettNeeds VoteNicholas Garbett + +687184Members Of The Wiener PhilharmonikerCorrectMembers Of The OrchestraMembers Of The Vienna PhilharmonicMembers Of The Vienna Philharmonic OrchestraMiembros De La Orquesta Filarmonica De VienaMiembros De La Orquesta Filarmónica De VienaMitglieder Der Wiener Philharmonikerembers of Vienna PhilharmonicWiener Philharmoniker + +687293Christian BergqvistSwedish violinist at [a380036]. +He has a soloist diploma at KMH - Royal Academy of Music, graduation year 1984.Needs VoteChristian BergkvistChristian Bergkvist StringsChristian BergquistChristian BerqvistChristian BregqvistStockholm Session StringsSveriges Radios SymfoniorkesterSnykoUnga Musiker + +687403Robert Johnson (9)Robert JohnsonRobert Johnson (c. 1583 – c. 1634) was an English composer and lutenist of the late Tudor and early Jacobean eras. He is sometimes called "Robert Johnson II" to distinguish him from an earlier Scottish composer. + +For the earlier (circa 1500-1560) Scottish priest and composer please use [a=Robert Johnson (23)]. +Needs Votehttps://en.wikipedia.org/wiki/Robert_Johnson_(English_composer)J. (?) JohnsonJohnsonJohnson RobertJohnson, Robert (?)R, JohnsonR. JohnsonR.JohnsonRob. JohnsonRobert Johnson (?)Robert Johnson II + +687506Dallas BartleyDallas Emmet BartleyAmerican jazz bassist. +Played with : Earl Hines, Cab Callowy, Duke Ellington, Louis Jordan (Tympany Five), Dinah Washington, Ray Charles and others. + +Born : September 15, 1916 in Cave Springs, Missouri. +Died : November 22, 1979 in Springfield, Missouri. + +Dallas Bartley began his musical career at the Riverside Inn restaurant in Ozark, Missouri during the mid 1930's. + +Dallas started playing the violin, guitar and piano as a young man, but because Springfield had no music programs for the black community his parents would take him to Tulsa, Oklahoma where he learned the string bass. + +After 30 years on the road with some of the biggest bands of the era he would move back to Springfield, Missouri in 1969. +Needs Votehttps://adp.library.ucsb.edu/names/303311BarclayBarfleyBarleyBarrleyBartleyBatleyD BartleyD. BartleyD.BartleyDallas BartkeyDallas BartlayDiggs BarclayJordan Dallas BartleyWallas BartleyLouis Jordan And His Tympany FiveDallas Bartley & His Smalltown BoysRoy Milton & His Solid SendersCamille Howard And Her TrioThe Dallas Bartley Orchestra + +687681Gregory BemkoUS cello player. Born February 7, 1916 in New York City, died May 27, 2006. Founder of the Lake San Marcos Chamber MusicCorrecthttps://www.legacy.com/obituaries/sandiegouniontribune/obituary.aspx?page=lifestory&pid=18186467Stan Kenton And His Orchestra + +688034Julius PatzakJulius Patzak (9 April 1898 – 26 January 1974) was an Austrian tenor distinguished in operatic and concert work.Correcthttp://en.wikipedia.org/wiki/Julius_PatzakJ. PatzakJul. PatzakJulius PatrakJulius PatzacJulius Patzak With OrchestraJulius Patzak, National Theatre MunichPatzakЮ. ПатцакЮлиус ПатцакJulius Patzak Mit Schrammel-Quartett + +688042Franz von SuppéFrancesco Ezechiele Ermenegildo Suppè DemelliFranz von Suppé (April 18, 1819 – May 21, 1895) was a Austro-Hungarian composer and conductor of the Romantic period, notable for his four dozen operettas.Needs Votehttp://en.wikipedia.org/wiki/Franz_von_Supp%C3%A9https://www.allmusic.com/artist/franz-von-supp%C3%A9-mn0001511502https://adp.library.ucsb.edu/names/103228Dr. V. SuppéF Von SuppeF. De SuppéF. SupeF. SuppeF. SuppèF. SuppéF. U. SuppèF. V. SuppeF. V. SuppéF. Von SuppeF. Von SuppéF. ZuppeF. v. SuppeF. v. SuppéF. von SuppeF. von SuppèF. von SuppéF.SuppeF.SuppéF.V SuppéF.V. SuppeF.V. SuppéF.V.SuppéF.v. SuppéF.v.SuppeF.v.SuppéFr v. SuppéFr von SuppéFr. SuppeFr. SuppéFr. V. SuppéFr. Van SuppeFr. Von SuppeFr. Von SuppéFr. v. SuppeFr. v. SuppeéFr. v. SuppéFr. von SuppeFr. von SuppéFrancesco SuppeFrans von SuppeFrans von SuppéFrantz Von SuppéFranz (von) SuppéFranz SuppeFranz SuppéFranz V. SuppeFranz V. SuppéFranz Von SupeFranz Von SuppeFranz Von SuppieFranz Von SuppéFranz v. SuppeFranz v. SuppèFranz v. SuppéFranz von SuppeFranz von SuppèFranz, SuppéJ. Von SuppéOvertSuffeSupeSuppeSuppe F.Suppe Franz VonSuppe'SuppiSuppèSuppéSuppé Franz vonSuppé, R. VonSupéV. SuppeV. SuppéV.SuppéVan SuppeVon SuppeVon Suppe'Von SuppèVon SuppéVon-SuppéVonSuppefranz V. Suppév. Suppév. Suppev. Suppév.Suppèv.Suppévon Suppvon Suppevon Suppèvon Suppévon-SuppéЗуппеСуппеФ. ЗуппеФ. фон ЗуппеФ.Зуппеスッペズッペフランツ・フォン・スッペ + +688087Robert RetallickAustralian classical violinist. Born in 1935 in Sydney, Australia - Died in October 2021. +He first learned the piano before taking up the violin. He studied at the Sydney Conservatorium of Music and was a member of the first [a=Sydney Youth Orchestra] and later the [a=Sydney Symphony Orchestra]. He then studied in the Netherlands and played in the [a5519749], moving to London in the early 1960s and working as a freelance musician. In 1964 he was engaged to play with the [a=London Symphony Orchestra] on the first World Tour. He was offered a permanent position and joined three years later as a member of the First Violin section from 1967 to 2001, when he retired.Needs Votehttps://lso.co.uk/more/news/1741-obituaries-robert-retallick-duff-burns-norman-archibald.htmlR. Retallickロバート・レテリックLondon Symphony OrchestraSydney Symphony OrchestraSydney Youth OrchestraLondon Symphony Orchestra StringsUtrechts Symfonie Orkest + +688088Anthony ChidellBritish classical hornist, horn mouthpieces designer, and Professor of Horn. +He studied at the [l527847]. He then became a member of the [a=Philip Jones Brass Ensemble]. Former Second Horn of the [a=London Philharmonic Orchestra] (11/1963-01/1971), the [a=London Symphony Orchestra] (01/1971-04/1984), the [a=English Chamber Orchestra] (04/1984-1990), and [a=The English National Opera Orchestra] (1990-2007). Professor of Horn at [l305416].Needs Votehttps://www.linkedin.com/in/tony-chidell-5156373a/?originalSubdomain=ukhttps://open.spotify.com/artist/7F7ln14iwL5cmMO2ks8fbQhttps://music.apple.com/cm/artist/anthony-chidell/1260671273https://www.feenotes.com/database/artists/chidell-anthony/https://www.calarecords.com/files/GIO/biogs.htmhttps://www.imdb.com/name/nm1274247/A. ChidellTony ChidellLondon Symphony OrchestraEnglish Chamber OrchestraLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsPhilip Jones Brass EnsembleThe Academy Of Ancient MusicThe King's ConsortLocke Brass ConsortThe Wind Virtuosi Of EnglandThe English National Opera OrchestraThe English ConcertThe London Horn Sound + +688089William SumptonClassical violist. +Former longtime member of the [a=London Symphony Orchestra] (1954-1996).Needs VoteW. SumptonLondon Symphony Orchestra + +688090Ray Adams (2)Raymond AdamsClassical cellist. +Former longtime member of the [a=London Symphony Orchestra] (Sub-principal Cello, 1969-2006).Needs VoteR. AdamsRaymond Adamsレイ・アダムスLondon Symphony OrchestraLondon Symphony Orchestra Strings + +688091James Brown (10)British classical woodwind instrumentalist (oboe and cor anglais/English horn), and Professor of Oboe. Born April 12 1929 - Died October 8 in 2012 at age 83. +His recording career was most active during the 1960s and 1970s. Professor of Oboe at the [l290263] (1964-1995). + +[b]Not to be confused with the British French Horn[/b] (brass instrument) [b]player [a=James W. Brown (2)][/b] who, at least once, appeared on the same LP on which James Brown (10) played oboe (the "W." may have been a one-off use of the letter to distinguish the two players).Needs VoteJames BrownEnglish Chamber OrchestraLondon Wind SoloistsBath Festival OrchestraThe Thames Chamber OrchestraLondon Bach Ensemble + +688092Jack LongBritish classical cellist. +Former longtime Sub-Principal Cello of the [a=London Symphony Orchestra] (1958-1983).Needs Votehttps://www.linkedin.com/in/jack-long-48521767/J. LongLondon Symphony OrchestraPhilharmonia Orchestra + +688093Patrick Hooley (2)British classical viola player. Also known as [b]Paddy Hooley[/b]. Born 7 July 1937 in Chesterfield, Derbyshire, England, UK - Died 7 May 2005 in Somerset, England, UK. +He joined the [a=National Youth Orchestra Of Great Britain], and trained as a musician at the [l290263]. As a violist, he worked throughout his life with various leading British orchestras, starting with the [a=Royal Scottish National Orchestra], and continuing with the [a=London Symphony Orchestra] (1966-1988), [a=Orchestra Of The Royal Opera House, Covent Garden], and [a=The English National Opera Orchestra]. +He married [a=Sylvia Knussen] in 1958 (to about 1970). Father of [a=Martin Hooley].Needs Votehttps://www.wikitree.com/wiki/Hooley-83P. Hooleyパトリック・フーリーLondon Symphony OrchestraRoyal Scottish National OrchestraOrchestra Of The Royal Opera House, Covent GardenNational Youth Orchestra Of Great BritainThe English National Opera Orchestra + +688094Norman ArchibaldEnglish classical trumpeter, cornet player, and teacher. Died 29 June 2021. +He was a member of the [a=London Symphony Orchestra] (1965-1980). After appearing on the soundtracks of the first two 'Star Wars' films as an LSO member, he went on to record numerous soundtracks and original cast recordings as a freelance player.Needs Votehttps://www.feenotes.com/database/artists/archibald-norman/https://lso.co.uk/more/news/1741-obituaries-robert-retallick-duff-burns-norman-archibald.htmlN. ArchibaldNormand ArchibaldLondon Symphony OrchestraPhilip Jones Brass Ensemble + +688095Samuel ArtisClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1956-1992). + +Could be the same as [a=Sam Artiss].Needs VoteS. ArtisSam Artisサミュエル・アーティスLondon Symphony Orchestra + +688096Roger LordClassical oboist. Born in 1924 - Died 19 June 2014. +He studied at the [l290263] (1942-1943 & 1946-1947). After leaving the RCM, he played in [a=The Midland Radio Orchestra] until 1949, and followed this with two years with the [a=London Philharmonic Orchestra]. He was a member of the [a=Prometheus Ensemble] and [a=Musica Da Camera]. Former Principal Oboe with the [a=London Symphony Orchestra] (1953-1986). +He was married to [a=Madeleine Dring] (first wife, died in 1977).Needs Votehttps://open.spotify.com/artist/2x8wp7eEysFh6fo7Zwyg0Uhttps://music.apple.com/us/artist/roger-lord/1416127505https://lso.co.uk/more/news/111-roger-lord.htmlhttps://www.the-paulmccartney-project.com/artist/roger-lord/https://www.imdb.com/name/nm10137253/R. LordRobert LordLondon Symphony OrchestraLondon Philharmonic OrchestraFrank Cordell OrchestraThe Academy Of St. Martin-in-the-FieldsThe Midland Radio OrchestraThe London StringsVirtuoso Chamber EnsemblePrometheus EnsembleMusica Da CameraLondon Baroque EnsembleThe Wind Virtuosi Of EnglandLondon Symphony Orchestra Chamber Ensemble + +688097Donald StewartDonald A. StewartBritish classical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1956-1983).Needs VoteD. StewartLondon Symphony Orchestra + +688099Arthur GriffithsArthur Bowen GriffithsClassical double bassist. +Former longtime member of the [a=London Symphony Orchestra] (1948-1989); Principal Double Bass in 1957 and Sub-Principal Double Bass from 1966 through to 1987.Needs VoteA. GriffithsLondon Symphony Orchestra + +688100Eric CuthbertsonBritish classical violist. +Former longtime member of the [a=London Symphony Orchestra] (1949-1980).Needs VoteE. CuthbertsonEric CutherbertsonLondon Symphony OrchestraThe BBC Dance Orchestra + +688103David CrippsBritish horn player, conductor, and teacher (passed away on 22 June 2024). +He began playing the horn at the age of fourteen and was quickly accepted into the [a=National Youth Orchestra Of Great Britain]. What followed was an impressive array of positions in British orchestras: the [a=BBC National Orchestra Of Wales]; [a=Hallé Orchestra] (7 years); [a=New Philharmonia Orchestra] (2 years); and the [a=London Symphony Orchestra] (1970-1983) as Principal Horn. Music Director and Conductor of the [b]Verde Valley Sinfonietta[/b]. Conductor of the [a=Northern Arizona Symphony Orchestra]. Former Professor of Horn.Needs Votehttps://www.lso.co.uk/obituary-david-cripps/https://web.archive.org/web/20070302224653/http://www.2scompany.org/cripps.htmhttps://www.prescottpops.com/david-cripps/https://www.imdb.com/name/nm10718692/D. CrippsD.CrippsDavid CrippDavid KrippsLondon Symphony OrchestraHallé OrchestraNew Philharmonia OrchestraNational Youth Orchestra Of Great BritainLondon Wind OrchestraBBC National Orchestra Of Wales + +688104Robin BrightmanFreelance professional classical violinist. +He studied at [l305416]. He was a member of the 1st violin section of the [a=London Symphony Orchestra] (1977-2009). Leader of the [b]Maidstone Symphony Orchestra[/b]. + +Probably the same as [a=Robert Brightman].Needs Votehttps://www.facebook.com/robin.brightman.7/https://www.linkedin.com/in/robin-brightman-15972b27/?originalSubdomain=ukhttps://encoremusicians.com/Robin-Brightmanhttp://mso.org.uk/2013/leader.htmhttps://www.imdb.com/name/nm11745179/https://vgmdb.net/artist/14243R. BrightmanLondon Symphony Orchestra + +688108Robert BourtonClassical bassoonist. +Former Principal Bassoon of the [a=City Of Birmingham Symphony Orchestra] and longtime Principal Bassoon of the [a=London Symphony Orchestra] (1970-2007).Needs Votehttps://open.spotify.com/artist/5FejI07BnqFAnIIJHd3eIphttps://music.apple.com/br/artist/robert-bourton/265290417?l=enhttps://www.imdb.com/name/nm14170293/R. BourtonRobert BouRobert BoughtonLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraLondon Wind Orchestra + +688109Pashanko DimitroffClassical double bass player. +Former member of the [a=London Symphony Orchestra] (1959-1988).Needs VoteP. DimitroffLondon Symphony Orchestra + +688110Denis WickDenis WickBritish classical trombonist, conductor, author, Professor of Trombone, and mouthpiece & mute developer. Born 1 June 1931 in Braintree, Essex – died 12 February 2025. +[b]For the English bass vocalist, please use [a837654][/b]. +Age 10, he played with the [b]Chelmsford Salvation Army Band[/b] until the age of 15 and soon joined the [b]Luton Brass Band[/b]. He then studied at the [l527847] (1949-1952). He became Principal Trombone of the [a=City Of Birmingham Symphony Orchestra] in 1952, leaving in 1957 to join the [a=London Symphony Orchestra] (05/1957-04/1988) also as Principal Trombone, achieving the longest principal seat in the orchestra's history. He has also been a member of the [a=London Sinfonietta] and, for a short period, the [a=Philip Jones Brass Ensemble]. Professor of Trombone initially at [l305416] (1967-1976) and subsequently at the Royal Academy of Music (2000-2010). Founder of Denis Wick Products Ltd. +Father of [a=Stephen Wick]. +Denis Wick was Britain's most influential orchestral trombonist in the middle of the 20th century. It was his position as principal trombone of the London Symphony Orchestra for which he is most revered. + +Needs Votehttps://www.deniswick.com/about/https://www.facebook.com/DenisWickUSAhttps://twitter.com/deniswickusahttps://www.linkedin.com/in/denis-wick-7479957/?originalSubdomain=ukhttps://www.youtube.com/channel/UCQdcBN721UCcVGIKiUCAX2Qhttps://open.spotify.com/artist/5PcUirOQRDWjfJUmCAyYiMhttps://music.apple.com/br/artist/denis-wick/251269091?l=enhttps://en.wikipedia.org/wiki/Denis_Wickhttps://www.imdb.com/name/nm10718688/https://www.feenotes.com/database/artists/wick-denis-1931-present/https://web.archive.org/web/20050831182354/http://www.ita-web.org/about/dwick.asphttps://www.trombone.net/denis-wick/https://www.dansr.com/wick/resources/who-is-denis-wickD. WickDenis WicksDennis WickDennis WicksLondon Symphony OrchestraLondon SinfoniettaCity Of Birmingham Symphony OrchestraPhilip Jones Brass EnsembleBournemouth Symphony Orchestra + +688111David HumeClassical viola player. +He studied at [l305416], [l531375], and [l869714]. Former member of the [a=London Symphony Orchestra] (1977-1993). Resident Luthier to the [l290263] for 17 years. Owner of 'David Hume Amati Violins' workshop (restorer & repairer) & shop in Wellington, New Zealand.Needs Votehttps://www.facebook.com/dhumeamativiolins/https://www.facebook.com/ianlyonstributepage/posts/luthier-david-hume-has-recently-moved-to-new-zealand-with-his-family-and-has-est/742216942653344/https://44thinternationalviolacongr2017a.sched.com/david_hume.1wupajqtD. HumeHumeLondon Symphony Orchestra + +688112William LangBritish classical trumpeter & cornettist, and tutor. Born in 1919 in Hollin Well, Norland, West Yorkshire, England, UK - Died 14 December 2006. +Former Assistant Principal Trumpet in [a=The Black Dyke Mills Band] (1938-1941, 1946-December 1950, 1952-1954), and the [b]West Riding Orchestra[/b] (1951-1952). He later briefly joined the [a=BBC Northern Symphony Orchestra]. In 1953, he joined the [a=Hallé Orchestra], firstly as 3rd Trumpet then as Principal Trumpet, where he stayed until 1961. Principal Trumpet with the [a=London Symphony Orchestra] (1962-1987).Needs Votehttps://www.4barsrest.com/articles/2020/1914.asphttps://www.blackdykeband.co.uk/profiles/william-willie-lang-principal-cornet-1938-1941-1946-1950-1952-1954/W. A. LangW. LangWillie LangLondon Symphony OrchestraThe Black Dyke Mills BandHallé OrchestraLondon Wind OrchestraBBC Northern Symphony Orchestra + +688113Kurt-Hans GoedickeGerman classical percussionist & timpanist, and Professor of Timpani. Born 17 February 1935 in Berlin, Germany. +Former Principal Timpani with [a6504478] (ten years), and the [a=London Symphony Orchestra] (1964-2000). +He was Professor of Timpani at [l305416] (two years), [l527847] (1993). Head of Timpani and Percussion at the Royal Academy of Music (1994-2000). Senior Professor of Timpani at the Royal Academy of Music (2000-2004).Needs Votehttps://www.rcs.ac.uk/staff/goedicke_kurt_hans/K-H. GoedickeKurt GoedicheKurt GoedickeKurtahans GoedickeLondon Symphony OrchestraRTÉ Symphony Orchestra + +688115Gerald NewsonNew Zealander classical and jazz double bassist. Born in 1943 in Christchurch, New Zealand. +Former longtime member of the [a=London Symphony Orchestra] (1968-2008). Prior to moving to London in 1967, he was a member of the [a=New Zealand Symphony Orchestra]. He retired in December 2008.Needs Votehttp://www.gallerystrings.com/customers/barbe.htmhttps://music.metason.net/artistinfo?name=Gerald%20NewsonG. NewsonGerald NewsomeGerlad NewsonGerry NewsonLondon Symphony OrchestraNew Zealand Symphony OrchestraThe Barry Markwick Trio + +688116Francis NolanBritish classical piccolo (primarily) & flute player, and Professor of Piccolo. Born in 1949. +He studied at the [l459222]. He was Principal Piccolo with the [a=Hallé Orchestra] (1968-1970) before moving to the [a=BBC Symphony Orchestra] (1970-73). He took up the position of Principal Piccolo with the [a=London Symphony Orchestra] in 1975, a position he held until 1999. Professor of Piccolo at [l305416].Needs Votehttps://www.dwsolo.com/flutehistory/halleflutes/Francis%20Nolan.htmF. NolanFrank NolanLondon Symphony OrchestraBBC Symphony OrchestraHallé OrchestraThe Military Ensemble Of London + +688117Richard Taylor (2)Richard Mervyn TaylorFlute & recorder player, and Professor of Flute. Born in 1930 in Wimbledon, London, England, UK - Died 11 August 2014 in Worthing, West Essex, England, UK. +He studied at [l305416] and the [l290263]. He spent a year in [a=The Sadlers Wells Opera Orchestra] before being invited to join the [a=London Symphony Orchestra] in 1957, and was at that time its youngest member. He spent 28 years in the London Symphony Orchestra, and during this time was also a flute professor at the Guildhall School of Music and Drama. He was Co-Principal Flute for his last 15 years in the LSO. He left the Orchestra in 1983 to concentrate on chamber work and teaching. He retired in 1995. +He was brother of [a=Christopher Taylor (2)].Needs Votehttps://lso.co.uk/more/news/270-richard-taylor.htmlDick TaylorR. TaylorLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe London VirtuosiTaylor Recorder ConsortApollo OrchestraBath Festival OrchestraThe Sadlers Wells Opera Orchestra + +688118John MarsonBritish classical harpist. Born 19 September 1932 in Derby, Derbyshire, England, UK - Died 4 February 2007. +He studied at the [l290263]. In 1958, while still a student, began his professional career with the [a=Carl Rosa Opera Company]. A week after leaving college he joined the [a=London Symphony Orchestra] as Principal Harp for two years, before embarking on two decades of freelance work, during which he played solos, chamber music and concerti, worked with all the London orchestras and spent much time in recording studios. He played in many outstanding feature films including the original 'Star Wars'. In 1982 he was appointed Principal Harp of the BBC Symphony Orchestra, and subsequently resumed his freelance career.Needs Votehttps://open.spotify.com/artist/1mUYvbTw2FIDMWITUlbsRXhttps://music.apple.com/us/artist/john-marson/342046760https://broadbent-dunn.com/biographies/marson-john/https://www.theguardian.com/news/2007/may/31/guardianobituaries.obituaries2J. MarsonJ. marsonLondon Symphony OrchestraBBC Symphony OrchestraEnglish Chamber OrchestraJohnny Scott And His OrchestraThe Gordon Rose OrchestraCarl Rosa Opera Company + +688119Brian Clarke (3)Classical viola player. +Former longtime Co-Principal Viola with the [a=London Symphony Orchestra] (1970-1999).Needs VoteB. ClarkeBrian Clarkブライアン・クラークLondon Symphony OrchestraGibson String Quartet + +688120Francis SaundersFrancis SaundersClassical cellist. +Former longtime member of the [a=London Symphony Orchestra] (1970-2007).Needs VoteF. SaundersLondon Symphony OrchestraAlouda Quartet + +688121Dennis GainesClassical violinist. +Former member of the [a=London Symphony Orchestra] (1966-1988).Needs VoteD. GainesLondon Symphony OrchestraThe Armada Orchestra + +688122Michael Mitchell (3)Classical viola player. +Former member of the [a=London Symphony Orchestra] (1953-1987).Needs VoteM. MitchellLondon Symphony OrchestraPhilharmonia Orchestra + +688123Warwick HillWarwick HillBritish classical violinist. Born in Barnsley, England, UK. +Former Principal Second Violin and Second Violin of the [a=London Symphony Orchestra] (1966-2004).Needs VoteW. Hillワーウィック・ヒルLondon Symphony Orchestra + +688124Jack SteadmanJack William SteadmanBritish classical violinist, violin professor, examiner, and author. Born in 1920 - Died 3 September 2014 in Cornwall, South West England, UK. +After World War II, he took a 'refresher course' at the [l290263]. Former longtime member of the [a=London Symphony Orchestra] (1947-1981). After joining the LSO, he was soon voted onto the Board of Directors and at the age of 39 years became Chairman, a post he held for several years. He taught at the Royal College of Music. He was an examiner for the Associated Board of the Royal Schools of Music. He wrote the book 'Violin Scales and Arpeggios Book I Grades 1-5'. + +[b]For the guitarist and pianist of the English indie rock band [a=Bombay Bicycle Club], please see [a=Jack Steadman (2)][/b].Needs Votehttps://lso.co.uk/more/news/271-jack-steadman.htmlhttps://issuu.com/royalcollegeofmusic/docs/rcm_upbeat_magazine_-_autumn_2014__/221, 2J. SteadmanLondon Symphony Orchestra + +688125Ray NorthcottRaymond NorthcottClassical percussionist. +He began his musical career at the age of seven as a drummer with the [a2777432] . At 15, he was the first percussionist ever invited to join the [a=National Youth Orchestra Of Great Britain]. When he was conscripted into the Royal Air Force, aged 18, he became a member of [a546443], which he played with for six years. Former member of the [a=London Symphony Orchestra] (1962-2003; Sub-Principal Percussion in 1962).Needs Votehttps://www.watfordobserver.co.uk/news/5777719.ray-drums-up-aninterest-in-music/https://drummerszone.com/artists/ray-northcott/13357/profile/R. NorthcottRaymond NorthcottLondon Symphony OrchestraThe Central Band Of The Royal Air ForceNational Youth Orchestra Of Great BritainLondon Wind OrchestraInternational Staff Band Of The Salvation Army + +688126David Williams (8)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1972-1990). + +[b]Not to be confused with the British violinist [a=Dave Williams][/b] (active from mid-1990s).Needs VoteD. WilliamsLondon Symphony Orchestra + +688127Thomas StorerClassical cellist. +Former member of the [a=London Symphony Orchestra] (1954-1978).Needs VoteT. StorerLondon Symphony Orchestra + +688128Peter Francis (2)Classical bassoon / contra bassoon player. Born in 1927, he passed away on January 25, 2014. +Member of the [a=London Symphony Orchestra]'s Bassoon section from 1963 to 1992 becoming Principal Contra Bassoon in 1970. He served as a Director on The London Symphony Orchestra's Board from 1977 to 1980.Needs Votehttps://lso.co.uk/more/news/113-peter-francis.htmlP. FrancisLondon Symphony OrchestraThe Wind Virtuosi Of England + +688129Sydney ColterClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1953-1989).Needs VoteS. ColterSidney ColterSydney CloterLondon Symphony Orchestra + +688130David LlewellynClassical violinist. +Former member of the 2nd violin section of the [a=London Symphony Orchestra] (1976-1981).Needs VoteD. LlewellynLondon Symphony Orchestra + +688131Brian GaultonClassical violinist. +Former member of the [a=London Symphony Orchestra] (1967-1982).Needs VoteB. GaultonLondon Symphony Orchestra + +688132James QuaifeClassical French horn player. +Former member of the [a=London Symphony Orchestra] (1958-1982).Needs Votehttps://www.imdb.com/name/nm10718694/J. QuaifeLondon Symphony OrchestraLondon Wind OrchestraBath Festival Orchestra + +688134Renata Scheffel-SteinClassical harpist and tutor. +Former Principal Harp of the [a=London Symphony Orchestra] (1969-1983).Needs Votehttps://open.spotify.com/artist/26HHQHN73hPcK6nkmghj9Zhttps://music.apple.com/us/artist/renata-scheffel-stein/151154779https://www.last.fm/music/Renata+Scheffel-SteinR. Scheffel-SteinRenata Schefel-SteinRenata ScheffelsteinRenate Scheffel-SteinLondon Symphony OrchestraPhilharmonia Orchestra + +688135Eric CreesBritish classical trombonist, conductor, arranger, composer, teacher & Professor of Trombone, and juror. Born in 1952 in London, England, UK. +He studied at the [l305416] and while there he began working with the [a=Philip Jones Brass Ensemble], who he would stay with for many years. He further studied composition at the [l=University of Surrey]. After leaving the University, he joined the [a=London Symphony Orchestra] in 1973 and after seven years became their Co-Principal Trombone, in which position he would stay for the next 20 years until 2000. In September 2000, he was appointed Section Principal Trombone of the [a=Orchestra Of The Royal Opera House, Covent Garden] and became their Director of [url=https://www.discogs.com/artist/10151059-Royal-Opera-House-Brass-Soloists]Brass Soloists[/url]. In 2011, he formed [a=The Symphonic Brass Of London], and became its Artistic Director. Professor of Trombone at The Guildhall School of Music & Drama.Needs Votehttp://www.ericcrees.co.uk/https://open.spotify.com/artist/03D3ujxWdmzpW9haRINkM8https://music.apple.com/us/artist/eric-crees/73238494https://en.wikipedia.org/wiki/Eric_Creeshttps://www.feenotes.com/database/artists/crees-eric-1952-present/https://www.imdb.com/name/nm8585044/CreesE. CreesEdward CreesEric CreeseEric CressProfessor Eric CreesLondon Symphony OrchestraLondon BrassLondon SinfoniettaPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenLondon Wind OrchestraSixteen Trombones Of Seven London OrchestrasLondon Symphony Orchestra BrassThe Symphonic Brass Of LondonRoyal Opera House Brass Soloists + +688136Maurice MeulienFrench retired classical cellist. +He was principal cellist with the [url=https://www.discogs.com/artist/6546288-Radio-Eireann-Symphony-Orchestra]RÉSO[/url] from 1950 to 1966. Principal Cello in [a=Ulster Orchestra] (1970-1971) before joining the [a=London Symphony Orchestra] as Co-Principal Cello (1971-1981).Needs Votehttps://stillslibrary.rte.ie/indexplus/image/1023/022.htmlM. MeulienM. MuelienLondon Symphony OrchestraUlster OrchestraRadio Eireann Symphony Orchestra + +688137Clive GillinsonClive Daniel GillinsonBritish cellist and arts administrator. Born 7 March 1946, in Bangalore, Karnataka, India. +He played in the [a=National Youth Orchestra Of Great Britain]. He studied at the [l527847]. After his studies, he became a member of the [a=New Philharmonia Orchestra]. He joined the [a=London Symphony Orchestra] in 1970 and was elected to the Board of Directors of the self-governing orchestra in 1976, also serving as Finance Director. In 1985 he was asked by the Board to become Managing Director of the LSO, a position he held until 2005, when he left for [l=Carnegie Hall] to become Executive and Arts Director (in July 2005). +He was appointed a CBE (Commander of the Order of the British Empire) in 1999.Needs Votehttps://en.wikipedia.org/wiki/Clive_Gillinsonhttps://www.carnegiehall.org/About/Press/Clive-Gillinson-Biographyhttps://www.ieseinsight.com/doc.aspx?id=2200&ar=20https://sites.google.com/site/youtubesymphonyorchestra/Home/online-press-kit/clive-gillisonC. GillinsonG. GillinsonLondon Symphony OrchestraNew Philharmonia OrchestraNational Youth Orchestra Of Great BritainDenny Laine's Electric String Band + +688138John Cooper (4)Classical double bassist. +Former member of the [a=London Symphony Orchestra] (1965-1988).Needs VoteJ. CooperLondon Symphony Orchestra + +688139John Fletcher (2)John FletcherFrench horn initially, and tuba player & teacher. Born in 1941 in Leeds, UK - Died October 1987. +In 1964, he went to London and went to work for the [a=BBC Symphony Orchestra] as Principal Tuba. He remained with them for two years and left to become a member of the [a=London Symphony Orchestra] as Principal Tuba for twenty years (1968-1987) and the [a=Philip Jones Brass Ensemble], who he remained with until 1986. +In 1967, he married the mezzo-soprano [a=Margaret Cable].Needs Votehttps://en.wikipedia.org/wiki/John_Fletcher_(tubist)https://www.feenotes.com/database/artists/fletcher-john-fletch-1941-october-1987/https://www.facebook.com/groups/58131164250/J. FletcherLondon Symphony OrchestraBBC Symphony OrchestraPhilip Jones Brass EnsembleNational Youth Orchestra Of Great BritainLondon Wind OrchestraWestminster Brass Ensemble + +688140Neville TaweelAustralian classical violinist and conductor. +Former Joint Leader of the [a=London Symphony Orchestra] (1976-1977).Needs VoteN. TaweelNeville TaweeiNeville TawellLondon Symphony OrchestraRoyal Philharmonic Orchestra + +688143Robert ClarkClassical violin player. +Former member of [a212726] (1973-1998). + +Possibly the same as [a=Robert Haydon Clark].Needs VoteR. Clarkロバート・クラークLondon Symphony OrchestraThe Martyn Ford Orchestra + +688144Ronald MooreClassical clarinet / Eb clarinet player. +Former Principal Eb Clarinet with the [a=London Symphony Orchestra] (1951-1989).Needs VoteR. MooreLondon Symphony OrchestraLondon Wind OrchestraLondon Wind SoloistsLondon Brass Solists + +688145Geoffrey CreeseClassical violinist, violin teacher, and juror. +Former longtime member of the [a=London Symphony Orchestra] (1965-1996).Needs VoteG. CreeseLondon Symphony Orchestra + +688146Lowry SandersClassical flautist and piccolo player and teacher of piccolo. +Former longtime Principal Flute and Piccolo of the [a=London Symphony Orchestra] (1948-1988). He taught at the [l680970].Needs VoteL. SandersLondon Symphony Orchestra + +688147John Butterworth (2)Classical hornist (French Horn player).Needs VoteJ. ButterworthLondon Symphony OrchestraAthena Ensemble + +688148Thomas SwiftThomas Albert SwiftClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1965-1992). + +[b]For the sound engineer please use [a388234] & ANV[/b].Needs VoteT. SwiftThom SwiftTom SwiftLondon Symphony Orchestra + +688149Thomas CookClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1939-1981).Needs VoteT. CookLondon Symphony Orchestra + +688151Douglas CummingsBritish classical cellist, and Professor of Cello. Born October 5, 1946 in London, England, UK - Died May 14, 2014 in London, England, UK (aged 67). +He studied at the [l527847]. At the age of 22, he was apponted Principal Cello of the [a=London Symphony Orchestra] in 1969, the youngest Principal the orchestra had appointed to that date, and held the post for 24 years, until 1993. He also served as a member of the LSO Board of Directors (1979-1982). After his departure from the LSO, Cummings taught at the Royal Academy of Music, the [l925143] and the Oundle School. He was a founder member of [url=https://www.discogs.com/artist/1583984-The-London-Virtuosi]The London Virtuosi[/url] Chamber Ensemble. He was also a founder member of the [b]Cummings String Quartet[/b] together with his sister [a=Diana Cummings]. +Son of the violist [a=Keith Cummings] and brother of the violinist [a=Julian Cummings].Needs Votehttps://en.wikipedia.org/wiki/Douglas_Cummingshttps://lso.co.uk/more/news/112-douglas-cummings.htmlhttps://www2.bfi.org.uk/films-tv-people/4ce2bb2047dbehttps://www.slippedisc.com/2014/05/sad-news-of-londons-cello-man/https://www.thestrad.com/british-cellist-douglas-cummings-has-died-aged-67/1170.articlehttps://music.apple.com/fm/artist/douglas-cummings/6765745https://open.spotify.com/artist/3wlbIruuvXzOxEtqBgpwQYhttps://www.imdb.com/name/nm7457948/D. CummingsDavid CummingsDenise CummingsDougie CummingsLondon Symphony OrchestraThe London Virtuosi + +688152Keith GlossopClassical cellist. +Former member of the [a212726] (1988-2011).Needs Votehttps://www.feenotes.com/database/artists/glossop-keith/K. GlossopLondon Symphony Orchestra + +688153Patrick VermontClassical violist. +Former longtime member of the [a=London Symphony Orchestra] (1954-1989).Needs VoteP. VermontLondon Symphony Orchestra + +688154Graham WarrenBritish classical hornist. Originally from London, England, UK. +Former member of the [a=Hallé Orchestra] (3rd, 1968-1971), [a=Orchestra Of The Royal Opera House, Covent Garden] (3rd, 1971-1972), [a=New Philharmonia Orchestra] (3rd, 1973-1975), the [a=London Symphony Orchestra] (5th, 1975-1979), [a=Scottish Opera Orchestra] (2nd, 1980-1982), and the [a=BBC Concert Orchestra] (1992-2003). He freelanced between 1982-1992.Needs Votehttps://www.facebook.com/graham.warren.184https://www.imdb.com/name/nm9048244/?ref_=ttfc_fc_cl_t26G. WarrenLondon Symphony OrchestraHallé OrchestraNew Philharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenBBC Concert OrchestraThe Whispering Wind BandScottish Opera Orchestra + +688156Frank MathisonBritish classical trombonist/bass trombonist. Born ca 1928 in Huddersfield, West Yorkshire, England, UK. +He first played cornet in the [a=Lindley Band]. He started playing G Trombone at 19 during National Service in the Army. He later joined the [a=City Of Birmingham Symphony Orchestra], where he stayed for thirteen years. Former longtime Principal Bass Trombone of the [a=London Symphony Orchestra] (1963-1993). He also played with [b]The Delphos Ensemble[/b] and the [b]Friendly Band[/b], where his son Peter is Principal Trombone. He retired at the age of 93.Needs Votehttps://www.yorkshirepost.co.uk/news/people/brass-musician-retires-after-74-years-playing-trombone-3268741https://www.pressreader.com/uk/halifax-courier/20210701/281994675471115https://www.4barsrest.com/news/46760/4br-monday-interview-with-frank-mathisonF. MathisonLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraLindley Band + +688157William KrasnikAustralian viola player. +Former member of the [a=London Symphony Orchestra] (1962-1981), serving as Sub-Principal Viola from 1966 until 1975.Needs VoteW. KrasnikWiliam KrasnikLondon Symphony Orchestra + +688492Fritz RotterFritz RotterAustrian author and composer, born 3 March 1900 in Vienna, Austria, died 11 April 1984 in Ascona, Switzerland +Needs Votehttp://de.wikipedia.org/wiki/Fritz_Rotterhttps://adp.library.ucsb.edu/names/105843E. RotterF RotterF. PotterF. RocterF. RoterF. RotherF. Rotte'F. RotterF. RutterF.RotterFr. RotteFr. RotterFritzFritz RitterFritz RottenFritz RotteoFritz RottersFritz TrotterH. RothaHeinz RotterKuckuckM. HermarM. RothaMairOtterP. RitterP. RotterPotterR. RotterR. ErwinRatterRetterReuterRitterRoetterRoller, FritzRolterRopperRoteerRoterRothaRotha RotterRotherRotienRottRottaRottarRotterRotter - RothaRotter F.Rotter FritzRotter, FritzRotter-RothaRr. RotterV. RotterrotterФ. РоттерM. RothaPeter KuckuckErnst SchottFriedrich Günther + +688602Warren HarryWarren Philip HarryBritish songwriter and performer. +Born 1953 in Aylesbury, Buckinghamshire. + +Do NOT confuse with US songwriter [a=Harry Warren (2)]. +Needs Votehttps://en.wikipedia.org/wiki/Warren_HarryH. WarrenHarryP. HarrywarrenW. HarryWarren Bacall + +688672Ralph OsborneTrumpet player. + +[b]For the engineer use [a469147][/b]Needs VoteRalph OsbornHarry James And His OrchestraSupersaxHarry James & His Music MakersBob Jung And His Orchestra + +688716Radio-Symphonie-Orchester BerlinFor recording years 1946–1956 please use [b][a833698][/b] +For recording years 1956–1993 please use [b]Radio-Symphonie-Orchester Berlin[/b] +This orchestra was founded as [a833698] in West-Berlin in 1946. It was affiliated the American broadcasting station [l270438] (Rundfunk im amerikanischen Sektor / Radio in the American Sector). In 1956 the name was changed to Radio-Symphonie-Orchester Berlin. After the German reunion the name changed again to [a462180] in 1993. This was done to prevent mix-ups with the East-Berlin based [a796211]. +Principal conductors: +[a833697] (1948–1954 and 1959–1963) +[a415720] (1964–1975) +[a784121] (1982–1989) +[a832915] (1989–2000)Needs Votehttps://www.dso-berlin.de/https://en.wikipedia.org/wiki/Deutsches_Symphonie-Orchester_BerlinBerliinin Radion SinfoniaorkesteriBerlijns Radio Symfonie OrkestBerlijns Radio-Symfonie-OrkestBerlin Philharmonkier, Radio Symphonie-OrchesterBerlin Radio Chorus And OrchestraBerlin Radio Concert OrchestraBerlin Radio OrchestaBerlin Radio OrchesterBerlin Radio OrchestraBerlin Radio Symphany OrchestraBerlin Radio Symphonie OrchestraBerlin Radio SymphonieorchesterBerlin Radio SymphonyBerlin Radio Symphony & ChoirBerlin Radio Symphony OrchesterBerlin Radio Symphony OrchestraBerlin Radio Symphony Orchestra (RIAS)Berlin Radio Symphony Orchestra (West Berlin)Berlin Radion SymphonyBerlin Symphonic OrchestraBerlin Symphony OrchestraBerlin Symphony Orchestra And ChoirBerline Radio Symphony OrchestraBerliner Radio-Symphonie-OrchesterBerlini Rádió Szimfonikus ZenekaraBerlini Rádió Szinfónikus ZenekaraBerlinradions SymfoniorkesterBerlins RadiosymfonikerBerlins RadiosymfoniorkesterBerlinski Radio OrkestarBerlínský Rozhlasový Symfonický OrchestrBerlīnes Radio Simfoniskais OrķestrisBerlīnes Radio simfoniskais orķestrisChoeurs Et Orchestre Symphonique De La Radio De BerlinChorus & Orch. Of Radio BerlinChorus & Orchestra Of Radio BerlinChorus And Orchestra Of Radio BerlinChorus and Orchestra of Radio BerlinChœr Et Orchestre Symphonique De Radio BerlinChœur Et Orchestre De Radio-BerlinCoro De La Orquesta De La Radio De BerlínCoro Della Radio di BerlinoCoro E Orchestra Della Radio Di BerlinoCoros y Orquesta Sinfónica de la Radio de BerlínDas Große Rundfunk-Symphonie-Orchester, BerlinDas Große SFB OrchesterDas RIAS OrchesterDas Radio-Symphonie-Orchester BerlinDeutsche Symphonie-Orchester BerlinDeutsches Symphonie Orchester BerlinDeutsches Symphonie-Orchester BerlinDeutsches-Symphonie-Orchester BerlinDeutsches-Symphonie-Orchester Berlin (RSO)German Festival Symphony OrchestraGrande Orquestra Da Rádio AlemãHet Groot Omroeporkest Van Radio BerlijnKoor & Orkest Van De Berlijnse RadioMitglieder Des Radio Symphonie-Orchester BerlinMitglieder Des Radio Symphonie-Orchesters BerlinMitglieder Des Radio-Symohonie-Orchesters BerlinMitglieder Des Radio-Symphonie-Orchester BerlinMitglieder Des Radio-Symphonie-Orchesters BerlinMitglieder Des Radio-Symphonieorchesters BerlinMitglieder des RSO BerlinMitglieder des Radio-Symphonie-Orchesters BerlinO. S. R. de BerlínO.S. De La Radio De BerlinO.S.R. De BerlinO.S.R. De BerlínOrch, Sinf. Della Radio Di BerlinoOrchester Des "Sender Freies Berlin"Orchester Des Radio BerlinOrchester Von Radio BerlinOrchester des Senders BerlinOrchestra Della Radio Di BerlinoOrchestra Della Radio di BerlinoOrchestra Of Radio BerlinOrchestra Of The Berlin RadioOrchestra Of The German State Opera, BerlinOrchestra Sender Freies BerlinOrchestra Simfonică Radio Din BerlinOrchestra Simfonică Radio-BerlinOrchestra Sinfonica DI Radio BerlinoOrchestra Sinfonica Della Radio Di BerlinoOrchestra Sinfonica Della Radio di BerlinoOrchestra Sinfonica Di BerlinoOrchestra Sinfonica Di Radio BerlinoOrchestra Sinfonica della Radio di BerlinoOrchestra Sinfonica della Radio di Berlino (RSO)Orchestra of Radio BerlinOrchestra simfonică Radio-BerlinOrchestra sinfonica della radio di BerlinoOrchestreOrchestre De La Radio De BerlinOrchestre De Radio-BerlinOrchestre De la radio De BerlinOrchestre Radio Symphonique De BerlinOrchestre Radio Symphonique De Berlin R.S.OOrchestre Radio Symphonique de BerlinOrchestre Radio-Symphonique De BerlinOrchestre Radio-Symphonique De Berlin (RSO)Orchestre Radio-Symphonique de BerlinOrchestre Radio-symphonique De BerlinOrchestre Symphonique De BerlinOrchestre Symphonique De La Radio BerlinoiseOrchestre Symphonique De La Radio De BerlinOrchestre Symphonique De La Radio De BerlínOrchestre Symphonique De La Radiodiffusion De BerlinOrchestre Symphonique De Radio BerlinOrchestre Symphonique De Radio-BerlinOrchestre Symphonique de Radio BerlinOrchestre Symphonique de Radio Berlin (RSO)Orchestre Symphonique de Radio-BerlinOrchestre Symphonique de la Radio BerlinOrchestre Symphonique de la Radio de BerlinOrchestre Symphonique de la Radiodiffusion De BerlinOrchestre Symphonique de la Radiodiffusion de BerlinOrchestre de Radio BerlinOrchestre de la Radio de BerlinOrchestre-Radio Symphonique De BerlinOrchestré Symphonique De La Radio De BerlinOrq. Radio-Sinfonica De BerlinOrq. Sinf. Radio BerlinOrq. Sinf. Radio BerlínOrq. Sinf. Rádio BerlimOrq. Sinf. de Radio BerlínOrq. Sinfônica Da Rádio De BerlimOrquesta De La Radio BerlínOrquesta De La Radio De BerlínOrquesta De Radio BerlinOrquesta Filarmónica de Radio BerlínOrquesta Filarmónica y Coro de Radio BerlínOrquesta RSO De BerlinOrquesta Radio Sinfónica De BerlínOrquesta Sinfonica De La Radio De BerlinOrquesta Sinfonica De La Radio De La Radio De BerlinOrquesta Sinfonica De Radio BerlinOrquesta Sinfonica de Radio BerlinOrquesta Sinfonica de la Radio de BerlinOrquesta Sinfónica De BerlinOrquesta Sinfónica De BerlínOrquesta Sinfónica De La Radio De BerlinOrquesta Sinfónica De La Radio De Berlin (Sender Freies Berlin)Orquesta Sinfónica De La Radio De BerlínOrquesta Sinfónica De R. BerlínOrquesta Sinfónica De Radio BerlinOrquesta Sinfónica De Radio BerlínOrquesta Sinfónica De Radio De BerlínOrquesta Sinfónica De Radio-BerlínOrquesta Sinfónica RIAS De BerlinOrquesta Sinfónica RIAS de BerlínOrquesta Sinfónica Radio BerlínOrquesta Sinfónica de AlemaniaOrquesta Sinfónica de R. BerlínOrquesta Sinfónica de Radio BerlínOrquesta Sinfónica de la RIAS de BerlínOrquesta Sinfónica de la Radio De BerlínOrquesta Sinfónica de la Radio de BerlinOrquesta Sinfónica de la Radio de BerlínOrquesta de la Radio de BerlinOrquesta de la Radio de BerlínOrquestra Filarmônica Da Rádio De BerlimOrquestra Sinfonica Da Radio De BerlinOrquestra Sinfonica Da Radio de BerlimOrquestra Sinfonica De La Radio De BerlinOrquestra Sinfónica Da Rádio De BerlimOrquestra Sinfônica Da Radio De BerlimOrquestra Sinfônica Da Radio De BerlinOrquestra Sinfônica Da Radio de BerlimOrquestra Sinfônica Da Ràdio BerlimOrquestra Sinfônica Da Rádio BerlimOrquestra Sinfônica Da Rádio De BerlimOrquestra Sinfônica Da Rádio de BerlimOrquestra Sinfônica Da Rádio de HamburgoOrquestra Sinfônica da Radio de BerlimOrquestra Sinfônica da Rádio BerlimOrquestra Sinfônica da Rádio de BerlimOrquestra Sinfônica da Rádio de BerlinOrquestra Sinfônica da Rádio de berlimOrquestra Sinfônica de BerlimOrquestra Sinfônica de Radio de HamburgoR.S.O.R.S.O. BerlinR.S.O., BerlinRIAS OrchestraRIAS SinfonieorchesterRIAS Sinfonieorhester BerlinRIAS Symphonic OrchestraRIAS Symphonie-Orchester BerlinRIAS Symphony OrchestraRIAS Symphony Orchestra BerlinRIAS Symphony Orchestra, BerlinRIAS Symponie-Orchester BerlinRIAS-Sinfonietta BerlinRSORSO BerlinRSO BerlinerRSO BerlinoRSO di BerlinoRSO, BerlínRSO-BerlinRSOBRadio Berlin Symphonic OrchestraRadio Berlin Symphony OrchestraRadio Orchestra BerlinRadio Shymponie Orchester De BerlínRadio Sinfonie Orchester (RSO) BerlinRadio Sinfonie Orchester BerlinRadio Sinfonie Orchestra, BerlinRadio Sinfonieorchester BerlinRadio Symfonie Orchester BelinRadio SymphonieRadio Symphonie OrchesterRadio Symphonie Orchester BerlinRadio Symphonie Orchester Berlin And ChorusRadio Symphonie Orchester WienRadio Symphonie Orchester, BerlinRadio Symphonie Orchestra BerlinRadio Symphonie-Orchester BerlinRadio Symphonie-Orchester, BerlinRadio Symphonie-Orhcester BerlinRadio Symphonieorchester BerlinRadio Symphony OrchestraRadio Symphony Orchestra - BerlinRadio Symphony Orchestra BerlinRadio Symphony Orchestra Of BelinRadio Symphony Orchestra Of BerlinRadio Symphony Orchestra Of berlinRadio Symphony Orchestra of BerlinRadio Symphony Orchestra, BerlinRadio-Orchester BerlinRadio-Sinfonia-Orchester BerlinRadio-Sinfonie Orchester BerlinRadio-Sinfonie-OrchesterRadio-Sinfonie-Orchester BerlinRadio-SinfonieorchesterRadio-Sinfonieorchester BerlinRadio-Sinfonieorchester, BerlinRadio-Symphonic-Orchester BerlinRadio-Symphonie BerlinRadio-Symphonie Orchester BerlinRadio-Symphonie Orchester, BerlinRadio-Symphonie-OrchesterRadio-Symphonie-Orchester Berlin RSORadio-Symphonie-Orchester Berlin Und ChorRadio-Symphonie-Orchester, BerlinRadio-Symphonie-Orchester, BerlínRadio-Symphonie-Orchester-BerlinRadio-Symphonieorchester BerlinRadio-Symphony Orchestra, BerlinRadio-Symphony-Orchester BerlinRadio-Symphony-Orchestra BerlinRadiosymphonie-Orchester BerlinRadiosymphonieorchester BerlinRado-Sinfonie-Orchester BerlinRaido-Symphony Orchestra Of BerlinRias-Sinfonietta BerlinRso BerlinRundfunk Sinfonie Orchester BerlinRundfunk-Orchester-BerlinRundfunk-Sinfonie-Orchester BerlinRundfunk-Sinfonieorchester BerlinRundfunk-Symphonie-Orchester BerlinS.O.B. Symphony Orchestra BerlinSFB BerlinSextuor D'instruments à Vents de Radio BerlinSimfonijski Orkestar Berlinskog RadijaSinf. Radio BerlinoSinfonica De La Radio De BerlinSinfonica de Radio BerlinSinfonica de la Radio BerlinSinfonie-Orchester Radio BerlinSinfónica De Radio BerlinSolisten Des Radio-Sinfonie-Ochesters BerlinSolistes de la RTV, BerlinStreicher Des Radio Symphonie Orchesters BerlinStreicher Des Radio-Symphonie Orchester BerlinStrings Of Symphony Orchesra Of Radio BerlinSymph. Orch. Of Radio BerlinSymphonie OrchesterSymphonie Orchester BerlinSymphonie Orchestra Of Radio BerlinSymphonie-Orchester BerlinSymphonie-Orchester Radio BerlinSymphonieorchester Des Berliner RundfunksSymphonieorchester Des Senders BerlinSymphonieorchester Radio BerlinSymphony Orch. Of Radio BerlinSymphony OrchestraSymphony Orchestra Of Berlin RadioSymphony Orchestra Of Radio BerlinSymphony Orchestra Of Radio LeipzigSymphony Orchestra Radio BerlinSymphony Orchestra of Radio BerlinSymphony Orchestra, Radio BerlinThe Berlin Radio Chorus And Symphony OrchestraThe Berlin Radio Concert OrchestraThe Berlin Radio SymphonyThe Berlin Radio Symphony OrchestraThe Berlin Symphony OrchestraThe Berliner Radio OrchestraThe East Berlin Radio OrchestraThe Orchestra of Sender Freies BerlinThe RIAS OrchestraThe RIAS Sinfonietta, BerlinThe Radio Orchestra Of BerlinThe Radio Orchestra of BerlinThe Radio Symphony Orchestra Of BerlinThe Rias OrchestraThe Rundfunk OrchestraThe Symphony Orchestra Of Radio BerlinThe Symphony Orchestra Of Radio-BerlinThe Symphony Orchestra of BerlinVeliki Orkestar Nemačkog RadijaVeliki orkastar Nemačkog radijaWest Berlin Radio Symphony OrchestraБерлинский симфонический оркестр радиоНемецкий симфонический оркестр БерлинаОрк. Под Упр. Ф. ФричаяОркестр Берлинского РадиоСимф. Орк. Берлинского РадиоСимфонический Oркестр Берлинского PадиоСимфонический Оркестр RIASСимфонический Оркестр Берлинского РадиоСимфонический Оркестр Берлинского Радио (Западный Берлин)Симфонический Оркестр Западно-Берлинского РадиоСимфонический оркестр Берлинского радиоベルリン放送交響楽団Deutsches Symphonie-Orchester BerlinRIAS Symphonie-Orchester BerlinHans LemkeOlaf OttMaurice AndréGerhard SchröderFelix SchröderWolfgang Meyer (2)André LardrotRoger BourdinGünther PassinRolf-Julius KochWinfried RotzollConnie GantswegLeonard HokansonGerhart HetzelKurt BlankSiegfried GahlbeckKoji ToyodaEgon MelziarekFrithjof FestHerbert NeumannGeorg DondererGünter ZornRainer MehneGeorg LohmannHeidrun GanzKarl-Bernhard SebonWolfgang NestleRadovan VlatkovićManfred PreisJohann NowakThomas Turner (4)Rudolf GleißnerChristoph WynekenRené ForestHeinz OrtlebManfred RotzollSiegfried HäuslerJörg FadleAgnes MalichVladlen Chernomor + +688801Scott TempleClassical hornistNeeds VoteOrchestra Of St. Luke'sThe Philly Groove Orchestra + +688929Berit SemNorwegian violinist, born 1955 in Sandefjord, Norway.CorrectOslo Filharmoniske Orkester + +688976Jay JohnsonJay W. JohnsonAmerican executive in advertising in the '40s as profession. Did write several lyrics for songs too. +Most famous for co-writing "Blue Christmas" with [a717185].Needs VoteDž.DžonsonsJ JohnsonJ, JohnsonJ. JohnsonJ. JohnsonsJ. JohnssonJ. W. JohnsonJ. Y. JohnstoneJ.JohnsonJ.T. JohnsonJ.W. JohnsonJay Jay JohnsonJay JohnstonJay JohsonJay W JohnsonJay W. JohnsonJay W.JohnsonJihnsonJohnsonJohnson JayJohnson, JayJohnson, Jay WJohnson, Jay W.Johnstonjohnsonジョンソン + +689213Barney Williams (2)Luther DixonSinger, songwriter, producer and guitarist. +Best Know as [a398237]. + +Born: August 7, 1931 in Jacksonville, Florida +Died: October 22, 2009 in Jacksonville, Florida +Needs VoteB WilliamsB. WiliamsB. WilliamsBarneyH. WilliamsM. WilliamsWIlliamsWiliamsWillamsWilliamWilliamsWilliams (USA) BarneyWillimsLuther Dixon + +689564Charles StrouseCharles StrouseCharles Strouse (born June 7, 1928; died May 15, 2025) was a three-time Tony Award-winning American composer and lyricist who often collaborated with lyricist [a=Lee Adams (2)]. +See also [l=Charles Strouse], [l=Charles Strouse Inc], and [l=Charles Strouse Publication].Needs Votehttp://www.charlesstrouse.com/https://en.wikipedia.org/wiki/Charles_Strousehttps://www.imdb.com/name/nm0835190/C. H. StrouseC. SrouseC. StauseC. StouseC. StrauseC. StraussC. StroiseC. StrousC. StrouseC. StrouseeC. StrousseC.StrouseCh. StrouseCh.StrouseChales StronseCharlesCharles Louis StrouseCharles R. AdamsCharles StouseCharles StrauseCharles StraussCharles StronseCharles StroufeCharles StrousseCharlie StrouseChr. StrouseChs. StrouseLee StrouseO. StrouseR. StrouseRussell StraussS. StrouseSaint RousseSt. RousseSthouseStoneStouseStrausStrauseStraussStreuseStronseStrousStrouseStrouse CharlesStroussStrousseStruseV. Strouse-Morrisצ'רלס שטראוסストラウス + +689566Gerald NelsonGerald Hiett NelsonUS songwriter who frequently worked with [a=Fred Burch] & [a=Chuck Taylor (3)]. Born in Paducah, Kentucky on September 17, 1935. Died 17 August 2012.Correcthttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=100&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Nelson+Gerald+Hiett&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allE. G. NelsonG. H. NelsonG. NelsonGattonGene NelsonGerald H. NelsonGerald WeismanGetald NelsonJ. NelsonNelsonNelson Gerald HiettNelson, ENelsonnThe Casuals (7)The Escorts (14)The Country Gentlemen (18)Gerald Nelson Orchestra And Chorus + +689721Antonio CaggianoItalian classical percussionist.Correcthttps://web.archive.org/web/20180427151503/http://www.arsludi.eu/antonio-caggiano/https://www.chigiana.org/en/antonio-caggiano/A. CaggianoCaggianoArs LudiOrchestra dell'Accademia Nazionale di Santa CeciliaRumble Quintet + +689952Adrenaline Dept.Norwegian Hard Dance duo, composed of Thomas Madsen (later known as [a=Tom Moroca]) & Fredrik Pettersen +Fredrik left the project around 2009-2010, returned in early 2018 and finally left in September 2019. +Contact: mail@adrenaline-dept.comNeeds Votehttp://adrenaline-dept.com/http://web.archive.org/web/20080526132816/http://www.adrenaline-dept.com/http://www.facebook.com/AdrenalineDepthttp://www.instagram.com/adrenaline_dept/http://twitter.com/adrenalinedepthttp://myspace.com/adrenalinedepthttp://www.mixcloud.com/AdrenalineDept/http://soundcloud.com/adrenaline-depthttp://open.spotify.com/artist/6k8V4aO6XdBz7FYAKxX1GdAdrenaline DeptThomas MadsenFredrik Pettersen + +689966Pierre GrilletCorrectGilletGlilletGrilletGrillet PierreP GrilletP. A. GrilletP. GrilleP. GrilletP.A. GrilletP.GrilletR.Grillet + +690124Benny de WeilleJazz clarinetist, flute and saxophone player, as well as orchestra leader, arranger and composer, born 6 March 1915 in Lübeck, Germany; died 17 December 1977 on Sylt, Germany.Needs Votehttps://de.wikipedia.org/wiki/Benny_de_Weillehttps://adp.library.ucsb.edu/names/311552Any De WeilleB, De WeilleB. De WeileB. De WeilleB. DeVilleB. WeilleB. de WeilleB. deWeilleBenny - de WeillBenny De WeilleBenny WeilleBenny de WeileBernard de WeilleDe WeileDe WeilleDe WilleWeillede Weilede Weillede WilledeWeilleMichael LannerBenny de Weille Und Seine SolistenHorst Winter Mit Seinem OrchesterCharlie & His OrchestraBenny De Weille Mit Seinem OrchesterBenny De Weille Mit Kleiner Tanz-StreichbesetzungBenny De Weille-SwingtettBenny De Weille QuartettBenny De Weille Mit Dem Polydor-TanzorchesterBenny De Weille Mit Seinem Bar-TrioBenny de Weille SextettChor Benny De Weille + +690577Per Sæmund BjørkumNorwegian violinist, born 1970 in Oslo, Norway.CorrectOslo Filharmoniske Orkester + +690854Hal HopperHarold Stevens HopperBorn: November 11, 1912 in Oklahoma City, Oklahoma. +Died: November 2, 1970 in Sylmar, California.Needs Votehttps://www.imdb.com/name/nm0394404/https://adp.library.ucsb.edu/names/357832https://en.wikipedia.org/wiki/Hal_HopperA.HopperAdair HoppeH. HooperH. HopperH.HopperHalHal HooperHarold HopperHarold S. "Hal" HopperHarold S. HopperHarperHooperHopperThe Pied PipersThe Three Rhythm KingsThe Hal Hoppers + +690895Johan KrarupClassical cellist.Needs VoteDR SymfoniOrkestret + +691506William SchiöpffeDanish jazz drummer, born 1926, died 1981Needs VoteSchiöpffeWiliam SchiöpffeWilliam SchioffeWilliam SchiopffeWilliam SchioppfeWilliam SchiöpfeWilliam SchiöppfeWilliam SchiøpffeWilliam SchiøppfeWilliam ShiöpffeWlliiam SchioepffeThe Bud Powell TrioDon Byas QuartetStan Getz QuartetJørgen Ryg QuartetThe Erik Moseholm GroupArne Domnérus OrkesterLars Gullin SextetIb Glindemann And His OrchestraStan Getz And His Swedish JazzmenMax Brüel QuartetErik Moseholm OctetMax Brüel All StarsMax Brüel/Jørgen Ryg QuartetWilliam Schiöpffe & His BandThe Cool ScandinaviansThe European All StarsThe Brew Moore QuartetBengt Hallberg And His Swedish All StarsAtli Bjørn TrioGullin - Billberg QuintetBent Schjærff TrioRolf Billberg QuintetVan Prince And OrchestraStudio 52:s HusbandThe All Star Danish Rhythm SectionDanish BrewJonny Campbell SextetPoul Godske Trio + +691665Heitor Villa-LobosHeitor Villa-LobosBrazilian composer, conductor, cellist, and classical guitarist. +Born March 5, 1887 in Rio de Janeiro, Brazil. +Died November 17, 1959 (aged 72) in Rio de Janeiro, Brazil. +He's been described as "the single most significant creative figure in 20th-century Brazilian art music". Villa-Lobos wrote numerous orchestral, chamber, instrumental and vocal works and is one of the best-known South American composer of all times. +Early in life, he learned to play the cello, clarinet, and classical guitar. [He also appears as Hector Villalobos]Needs Votehttps://museuvillalobos.museus.gov.br/https://en.wikipedia.org/wiki/Heitor_Villa-Loboshttps://www.britannica.com/biography/Heitor-Villa-Loboshttps://www.bach-cantatas.com/Lib/Villa-Lobos-Heitor.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102678/Villa-Lobos_Heitorhttp://www.laurindoalmeida.com/villa-lobos.htmhttps://www.imdb.com/name/nm0897660/A. Vila LobosE. Villa-LobosEightle Villa-LobosEitor Vila-LobosH Villa-LobosH Villa-lobosH. V. LobosH. VIllalobosH. VillaH. Villa - LobosH. Villa LobosH. Villa, LobosH. Villa-LabosH. Villa-LobosH. Villa-LôbosH. Villa/L. ObosH. VillalobosH. W. LobosH.Villa LobosH.Villa-LobosHector Villa LobosHector Villa-LobosHector Villa-lobosHector VillalobosHeitar Villa-LobosHeiter Villa LobosHeitor De Villa LobosHeitor Vila-LobosHeitor VillaHeitor Villa - LobosHeitor Villa LobosHeitor Villa LôbosHeitor Villa – LobosHeitor Villa-LobsHeitor Villa-LôbosHeitor Villa-LõbosHeitor VillalobosHeitor-Villa-LobosHeitor. Villa-LobosHeltor Villa-LobosHertor Villa-LobosHeïtor Villa-LobosHietor Villa-LobosHéctor Villa-LobosHéctor VillalobosHéitor Villa LobosHéitor Villa-LobosHéitor de Villa LobosIsaías SavioJ. VillalobosLauroLobosM. VillalobosNicholasV. LobosV. LobozV.-LobosVila LobosVila-LobosVillaVilla - LabosVilla - LobosVilla / LobosVilla LebesVilla LobosVilla LôbosVilla-LoBosVilla-LobocVilla-LobosVilla-Lobos H.Villa-Lobos HeitorVilla-Lobos, HeitorVilla-LobsVilla-LoposVilla-LôbosVilla-lobosVilla. LobosVilla/LobosVillalobosВ. ЛобосВила ЛобосВилла ЛобосВилла-ЛобосВилла-Лобос Э.Вилло-ЛобосГ. Вилла ЛобосЕ. Вілла-ЛобосЭ. Вила ЛобосЭ. Вила-ЛобосЭ. Вилла ЛобосЭ. Вилла-ЛобосЭ. Вилла-ЛобосаЭ. Вилла-лобосЭ.Вила ЛобосЭ.Вилла-ЛобосЭйтор Вила ЛобосЭйтор Вила-ЛобосЭйтор Вилла-Лобосהייטור וילה-לובוסווילה לובוסヴィラ=ロボスヴィラ・ロボスヴィラ=ロボス魏亞 - 羅伯士 + +692087Ado BroodboomDutch jazz trumpet player +Born 14 November 1922 in Amsterdam +Died 18 Juli 2019 in Amsterdam + +He was active from 1937 to circa 1980. He performed in the [a=Orkest Piet van Dijk]. With his own orchestra he toured Sweden under the name Ado Moreno. He played in [a=The Ramblers], [a=Boy's Big Band] and the [a=VARA-Dansorkest]. Broodboom made records with [a=Herbie Mann], [a=Wessel Ilcken], [a=Ger van Leeuwen], [a=The Ramblers] and [a=Boy's Big Band], among others.Needs Votehttps://www.jazzhelden.nl/action/front/portrait?biography=&name=Ado+Broodboom&index=0The RamblersThe Wessel Ilcken ComboThe Rhythme All StarsBoy Edgar Big BandOrkest Wim KuylenburgJack Sels Sextet + +692093Tinus BruynSaxophonist and clarinetistNeeds VoteT. BruynTinus BruijnTinus BruinTinus BrujinThe RamblersBoy's Big BandDick Willebrandts En Zijn OrkestErnst Van 't Hoff En Zijn OrkestBoy Edgar Big BandThe Red And Brown Brothers + +692662Rufus WagnerTrombone playerNeeds VoteCount Basie Orchestra + +692737Dupree BoltonDupree Ira Lewis BoltonJazz trumpeter, born 1920s in Oklahoma City, Oklahoma. +Played in [a=Buddy Johnson]'s orchestra in 1944, joined [a=Benny Carter]'s big band in 1945, disappeared form music scene in 1946 due to drug abuse, re-emerged in 1959, recording with [a=Harold Land], disappeared again, worked with [a=Curtis Amy] in 1962-1963, with [a=Bobby Hutcherson] in 1967, followed by prison sentences resulting in an absence of 15 years. +"His few recordings reveal Bolton to have been a brilliant and stylish player; a mysterious figure, his reputation has, if anything, been enhanced by his tormented private life and obsessive personal secrecy." (Chris Sheridan, The New Grove dictionary of jazz, 1988)Needs Votehttps://en.wikipedia.org/wiki/Dupree_Boltonhttp://www.jazzarcheology.com/artists/dupree_bolton.pdfhttp://ktru.org/jazz-tuesday-harold-land-dupree-boltonhttps://adp.library.ucsb.edu/names/304949BoltonLewis BoltonLewis DupreeBenny Carter And His Orchestra + +693019Joe RiggsBig band alto saxophone player.CorrectJoe G. RiggsHarry James And His Orchestra + +693025George IrishAmerican jazz saxophonist and clarinetist, born 1910 in Panama, died 24 November 1959 in Boston, Massachusetts +Irish was raised in Boston, played in [a=Blanche Calloway]'s orchestra summer 1938, joined joined [a=Teddy Wilson] 1939, with [a=Benny Carter] 1940-1941, then with [a=Fletcher Henderson] 1941-1942. Briefly with [a=Don Redman] 1943,then formed own band. Moved back to Boston to teach at the Academy of Music in Arlington, a position he held until his death.Needs VoteTeddy Wilson And His OrchestraBenny Carter And His Orchestra + +693027Johnny Russell(June 4, 1909, Charlotte, North Carolina - July 26, 1991, New York City) was an American jazz tenor saxophonist. Needs Votehttps://en.wikipedia.org/wiki/Johnny_Russell_(saxophonist)https://www.jazzarcheology.com/johnny-russell/J. RussellJohnny RusselMezz Mezzrow And His OrchestraWillie Lewis And His Negro BandWillie Bryant And His OrchestraPutney Dandridge And His Orchestra + +693030Floyd O'BrienFloyd O'Brien (born May 7, 1904, Chicago, Illinois, USA - died November 26, 1968, Chicago, Illinois, USA) was an American jazz trombonist. He worked with many bands including: [a3417204] (1920's), [a3359130] (1920's), [a736274] (1920's), Thelma Terry (1920's), [a4900284] (1920's), [a3422693], [a269802], [a1310192], [a325858] (1933), [a253482] (1930's), [a258687] (1930's), Mike Durso (1933-’34), [a173523] (1935-’39), [a258689] (1939-’40), [a309965] (1940's), [a330702] (1940's), [a301372] (1940's), [a269603] (1940's), [a313010] (1940's), [a270026] (1950's), [a910054] (1950's), [a335580] (1950s) and others. Recorded as a leader once in 1945. +Needs Votehttp://en.wikipedia.org/wiki/Floyd_O%27Brienhttp://www.allmusic.com/artist/floyd-obrien-mn0001753498/biographyhttps://adp.library.ucsb.edu/names/100201F. O'BrienFloyd O'BrianFlyod O'ErienO'BrienO'BrineFats Waller & His RhythmThe Chocolate DandiesEddie Condon And His OrchestraMezz Mezzrow And His OrchestraGeorge Wettling's Chicago Rhythm KingsBob Crosby And His OrchestraWingy Manone's Dixieland BandFloyd O'Brien's State Street Seven + +693032Karl GeorgeKarl Curtis George American swing trumpeter, born 6 April 1913 in St. Louis, died in 1978. +Needs Votehttps://en.wikipedia.org/wiki/Karl_Georgehttps://www.allmusic.com/artist/karl-george-mn0001209586/biographyhttps://adp.library.ucsb.edu/names/317459C. GeorgeCarl GeorgeGeorgeK. GeorgeCount Basie OrchestraLionel Hampton And His OrchestraStan Kenton And His OrchestraTeddy Wilson And His OrchestraBenny Carter And His OrchestraBob Mosely & All StarsLucky Thompson's All StarsWilbert Baranco OrchestraWilbert Baranco And His Rhythm BombardiersJoe Lutcher's Jump BandKarl George OctetSlim Gaillard And His BoogiereenersGeorge's Dukes And DuchessThe Wilbert Baranco Quintet + +693033Ernest Hill (2)American jazz bassist. + +b. March 14, 1900 (Pittsburgh, PA, USA) +d. September 16, 1964 (New York City, NY, USA) + +Worked with [a=Claude Hopkins] (1924-28) and, in the late '20s, [a=Josephine Baker], [a=LeRoy Smith (2)], and Charlie Skeete. During the '30s he played [a=Chick Webb], [a=Benny Carter] ('31, '33-'34), [a=Willie Bryant] ('35), [a=Spike Hughes] ('35), and [a=Benny Carter] ('35). Played again with Claude Hopkins sporadically ('41-44), [a=Zutty Singleton] & [a=Louis Armstrong] ('43), and [a=Cliff Jackson] ('44). Later worked with [a=Bill Coleman (2)], [a=Frank "Big Boy" Goudie], and [a=Happy Caldwell], and was a delegate for AFM, NYC. +Needs VoteErnest "Ball" HillErnest "Bass " HillErnest "Bass" HillErnest 'Bass' HillErnest ("Bass") HillErnest (Bass) HillErnest Bass HillErnest MillErnest „Bass" HillErnst HillThe Chocolate DandiesWillie Bryant And His OrchestraPutney Dandridge And His OrchestraHot Lips Page TrioPunch Miller Jazzband + +693035Glyn PaqueAmerican alto saxophonist and clarinetist +Born 29 August 1906 in Poplar Bluff, Missouri, USA +Died 29 August 1953 in Basel, Switzerland (heart attack). + +He was the uncle of [a=Bert Curry]. Paque moved to New York in 1926, with [a=The Missourians] in 1928-1929, toured with [a=King Oliver] 1930, with [a=Willie Bryant] 1934-1937, with Bobby Martin's Orchestra to Europe in 1937, when Martin returned to USA in 1939, Paque led the band, renamed The Cotton Club Serenaders. Settled in Switzerland. +Needs VoteG. PacqueGlen PaqueGlyn PacqueGlyn PiqueGlynn PacqueKing Oliver & His OrchestraHenry "Red" Allen And His OrchestraWillie Bryant And His OrchestraFred Böhler And His BandEddie Brunner And His BandDave Nelson And The King's MenFred Böhler QuartetFred Böhler-QuintettDave's Harlem HighlightsFred Böhler Sextet + +693036Stan HasselgardSten Åke Henry HasselgårdSwedish jazz clarinetist. Hasselgård got his clarinet of his step father when he has 16 and joined [a=Royal Swingers] during high school. In 1945 he started to work for [a=Arthur Österwall] and played in Artur Österwalls Kvinett and [a=Arthur Österwalls Orkester]. In 1946 he was part of [a=Simon Brehms Kvintett] but later that year he return to finish his studies. After he had graduated in May 1947, Hasselgård left Sweden for New York to study journalism. He continued to play jazz under the alias [a=Stan Hasselgard]. His career suddenly ended at the age of 26 in a car accident outside Decatur, Illinois, November 23, 1948. + +Born : October 04, 1922 in Sundsvall, Sweden. +Died : November 23, 1948 outside in Decatur, Illinois in a car accident. Needs VoteAke "Stan" HasselgardHasselgardS. HasselgardÅke "Stan" HasselgårdÅke HasselgårdBenny Goodman SeptetStan Hasselgard And His All Star SixJackie Mills Quintet + +693037Mel ZelnickAmerican jazz drummer, born 28 September 1924 in Harlem, New York, USA, died 21 February 2008 in Mayer, Arizona, USA.Needs VoteM. ZelnickBenny Goodman SeptetBenny Goodman & FriendsThe Lenny Hambro QuintetEddie Bert QuintetJohn Plonsky Quintet + +693038Coleman Hawkins' All American FourNeeds VoteColeman Hawkin's All American FourColeman Hawkins All American FourColeman Hawkins' All-American FourColeman Hawkins' All-American-FourColeman Hawkins' Swing FourThe All American FourColeman Hawkins QuartetColeman HawkinsTeddy WilsonJohn KirbySidney Catlett + +693171Leonard HindellClassical bassoonist who was a member of The Metropolitan Opera from 1964 to 1972 then the New York Philharmonic from 1972 to 2005.Needs Votehttps://steinhardt.nyu.edu/people/leonard-hindellNew York PhilharmonicThe Metropolitan Opera House Orchestra + +693593Oskar MerikantoFrans Oskar MerikantoFinnish musician, composer and conductor, born as Frans Oskar Mattsson on August 5, 1868 in Helsinki, Grand Duchy of Finland, Russian Empire; died on February 17, 1924 in Oitti, Finland. + +Father of composer [a3200846].Needs Votehttps://en.wikipedia.org/wiki/Oskar_Merikantohttps://fi.wikipedia.org/wiki/Oskar_Merikantohttps://adp.library.ucsb.edu/names/104709MerikanteMerikantoMerkantoO MerikantoO, MerikantoO. MerikantO. MerikantoO.MerikantoOscar MerikantoOskari MerikantoО. Мерикантоメリカント + +693693Clarence HallAmerican early jazz and R&B reeds player (saxophones, clarinet). + +Born : February 19, 1903 in New Orleans, Louisiana. +Died : September 29, 1969 in New Orleans, Louisiana. +Needs Votehttps://www.allmusic.com/artist/clarence-hall-mn0000130502/creditsOriginal Tuxedo Jazz OrchestraDave Bartholomew And His Orchestra + +693834J. Russel RobinsonJoseph Russel RobinsonAmerican ragtime and dixieland jazz pianist and songwriter . +Born : July 08, 1892 in Indianapolis, Indiana. +Died : September 30, 1963 in Palmade, California. + +Worked with : "The Original Dixieland Jazz Band", Annette Hanshaw, Lucille Hegamin, Lizzie Miles and Marion Harris.Needs Votehttp://en.wikipedia.org/wiki/J._Russel_Robinsonhttps://adp.library.ucsb.edu/names/106805https://adp.library.ucsb.edu/names/340506B. RusselC. RobinsonD. RobinsonI. R. RobinsonJ R RobinsonJ Russel RobinsonJ Russell RobinsonJ. C. RobinsonJ. M. RobinsonJ. R. RobinsonJ. R.RobinsonJ. RobinsonJ. Russe'l RobinsonJ. RusselJ. Russel, RobinsonJ. Russel-RobinsonJ. Russel/RobinsonJ. RussellJ. Russell RobinsonJ.R. RobinsonJ.R. RobisonJ.R.RobinsonJ.Russel RobinsonJR RobinsonJames Russel RobinsonJay RobinsonJohn Russel RobinsonR J RusselR. RobinsonR.R. RobinsonR.RobinsonRobbinsRobbinsonRobinRobinsRobinsonRobinson J. RusselRobinson J. RussellRobinson, RusselRobinssonRobisionRobisonRobonsonRusselRussel J. RobinsonRussel RobinsonRussel RobisonRussel RobnsonRussel, RobinsonRussel-RobinsonRussel/J.RobinsonRussellRussell J. RobinsonRussell RobinsonRussell-RobinsonRussell/RobinsonRüssel J. RobinsonS. Russell RobinsonYoungrobinsonРобинсонJoe HooverOriginal Dixieland Jazz BandPalace TrioBernard And RobinsonWiedoeft-Wadsworth QuartetThe Dixie Stars + +693898Robert MoselyRobert Henry Mosely, Jr.US rhythm & blues singer & songwriter, mostly known for writing "Sha-La-La". +Member of Mayme & Robert. +Sometimes credited as "Mosley". Often associated to the publisher [l=Winneton Music Corp.] and the songwriter [a=Mayme Watts]. +[b]Do not confuse[/b] with producer, songwriter [a=Ronald Moseley] or the jazz pianist [a=Bob Mosley (2)].Needs VoteB. MoseleyBob MoselyBob MosleyBobby MoseleyFrank MoseleyFrank MoselyJr. MosleyMaselyMasseyMesleyMoseleyMoselyMosheMosleMoslejMosleyMoslyP. MosleyR MoseleyR MoselyR MosleyR. MoseleyR. MoselyR. MosleyRobert MoseleyRobert MosleyモズレーCarlyle DundeeMayme & RobertRobert Mosely Orch. + +694124Hans SchaafHans SchaafDJ and electronic music producer based in Berlin, Germany.Needs Votehttps://www.facebook.com/hans.schaaf.75H. SchaafHansHonestyHonestyHoney DropSlopeFrequenzyAndre ZimmaCalyx MasteringGelée RoyaleSuparaw + +694647Alfred Lord TennysonAlfred Tennyson, 1st Baron TennysonEnglish poet, born August 5, 1809 in Somersby, Lincolnshire, died October 6, 1892 in Lurgashall, Sussex, England. He was often regarded as the chief representative of the Victorian age in poetry. Tennyson succeeded Wordsworth as Poet Laureate in 1850. +Needs Votehttps://en.wikipedia.org/wiki/Alfred,_Lord_Tennysonhttps://adp.library.ucsb.edu/names/102627A TennysonA. L. TennysonA. Lord TennisonA. Lord TennysonA. TennysonAl TennysonAlfred L. TennysonAlfred Lord Tennyson (1843)Alfred Lord Tennyson 1843Alfred Loyd TennisonAlfred TennysonAlfred, Lord TennysonAlred TennysonLord Alfred TennysonLord TennysonTennysonА. ТеннисонА.ТеннисонТеннисон + +694695Nicolaus Richter de VroeNicolaus Richter de VroeGerman violinist and composer born in 1955 in Halle an der Saale.Needs Votehttps://web.archive.org/web/20220519075231/http://www.nicolaus-richter-de-vroe.kulturserver.de/https://en.wikipedia.org/wiki/Nicolaus_Richter_de_Vroehttps://de.wikipedia.org/wiki/Nicolaus_Richter_de_Vroehttps://www.sadk.de/mitglieder/klasse-musik/richter-de-vroe-nikolausN. Richter de VroeN.R.de VroeNico Richter de VroeRichter de VroeSymphonie-Orchester Des Bayerischen RundfunksKeller-Schulze-Werkstattorchester + +694863Philip JonesBritish classical trumpet player and educator. Born March 12, 1928 in Bath, Somerset, England - Died January 17, 2000. +He founded the [a835731] in 1951 which played either as a ten-piece orchestra for larger halls or as a quintet [a748640] and was Principal Trumpet for six different London orchestras during his career ([a855061] (1951-1955), [a153980] (1956-1959), [a=Philharmonia Orchestra] (1960-1963), [a271875] (1964-1965), [a=New Philharmonia Orchestra] (1965-1966), [a289522] (1967-1971)). He was Director of the School of Wind and Percussion at the [l459222] in Manchester (1975-1977) and held the same post from 1983-1988 at [l305416] in London. In 1988 he was appointed Principal of [l532187] where he remained until 1994. +He was awarded an Order of the British Empire in 1977 and the Commander of the Order of British Empire in 1986. +Nephew of [a=Roy Copestake].Needs Votehttps://en.wikipedia.org/wiki/Philip_Jones_(musician)https://www.bach-cantatas.com/Bio/Jones-Philip.htmhttps://www.imdb.com/name/nm0429031/https://www.feenotes.com/database/artists/jones-philip-12th-march-1928-17th-january-2000/https://www.stjohnswoodmemories.org.uk/content/arts/music-musicians/philip_jones_cbe_1928_-_2000https://www.theguardian.com/news/2000/jan/19/guardianobituaries1https://www.nytimes.com/2000/02/07/arts/philip-jones-71-trumpeter-and-music-educator-in-britain.htmlhttps://www.latimes.com/archives/la-xpm-2000-jan-28-mn-58631-story.htmlhttps://www.famousbirthdays.com/people/philip-jones.htmlJonesP JonesP. J.P. JonesPhil JonesPhilip Jones EnsembleLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraPhilip Jones Brass QuintetPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenMelos Ensemble Of LondonWestminster Brass EnsemblePhilip Jones Wind EnsembleGlyndebourne Festival OrchestraLondon Baroque EnsembleThe Philip Jones Quartet + +694904Tadd Dameron QuintetCorrectThe Tadd Dameron QuintetKenny ClarkeTadd DameronCurly RussellAllen EagerRudy Williams + +695530Michael CarrMaurice Alfred CohenBritish composer and songwriter (b. 11th March 1905 - d. 16th September 1968). He is best remembered for the song "South of the Border (Down Mexico Way)", written with [a=Jimmy Kennedy] for the 1939 film of the same name.Needs Votehttp://en.wikipedia.org/wiki/Michael_Carr_(composer)https://www.ascap.com/repertory#ace/writer/5308816/CARR%20MICHAELhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=54757&subid=0https://adp.library.ucsb.edu/names/112469A. CarrBeresfordC. MichealCaeeCafrCahnCallCarCardCarrCarr M.Carr, MichaelCarr.CarreyCarryCatrCoxF. CarrH. CarrK. CarrKarrKenny CarrKorrM CarrM. CarM. CarrM. CartM. LarrM. carrM.CarrMarion CarrMicael CarrMich CarrMich. CareMich. CarrMichaelMichael - CarrMichael CareMichael GarrMichaël CarrMicheal CarrMichel CarrMickey CarrMike CarrM・カーN. CarrS. CarrМ. Каррdos PasosRick JasonCy Chalmers + +695549Allyson R. KhentEdna LewisAmerican songwriter. +Charted as a songwriter six times between 1958-1986, all but one between 1958-60. Her top charted song was "Sixteen Candles" by The Crests, which hit #2 (#4 R&B) in 1958 (co-written by Luther Dixon).Needs Votehttps://www.ibdb.com/broadway-cast-staff/allyson-khent-497208A, KhentA. B. KhentA. KhentA. KwentA. R. KentA. R. KhentA.KhentA.R. KhentAllison R. KhentAllyson - KhentAllyson HentAllyson KentAllyson KhentAllyson R KhentAllyson R. KentAllyson/R. KehntK. HentKentKhentKhent, A. RKnentKwentUhendEdna Lewis + +695872Saul ChaplinSaul KaplanAmerican composer and musical director (b. February 19, 1912, Brooklyn, New York – d. November 15, 1997).Needs Votehttp://en.wikipedia.org/wiki/Saul_Chaplinhttps://adp.library.ucsb.edu/names/106979C. ChaplinCaplanCaplinChalpinChamplinChanplinChapelinChapinChaplainChaplanChaplinChaplin SChaplin SaulChaplin, SaulChaplin-ChapmanChapplinChaptlinCharlapCharles ChaplinKaplanPaul ChaplinS ChaplinS. CaplinS. ChaplainS. ChaplanS. ChaplinS. ChapllinS. ChapmanS. HarburgS.ChaplinSaul ChapinSaul ChapmanSaul I. ChaplinSaül ChaplinSaūl ChaplinSchplinSir C. ChaplinSol CapianSol CaplanSol ChaplinSoul ChaplinС. ЧаплинЧаплинס. צ׳פליןCahn-Chaplin Orchestra + +695874Sholom SecundaShloyme Abramovich SekundaAmerican composer of Ukrainian-Jewish descent, born 4 September 1894 (O.S. 23 August 1894) in Aleksandriya, Kherson Governorate, Russian Empire, now Oleksandriia, Kirovohrad Oblast, Ukraine, died 13 June 1974 in New York City, New York, USA. He was father of lyricist and songwriter [a975353].Needs Votehttp://en.wikipedia.org/wiki/Sholom_Secundahttps://adp.library.ucsb.edu/names/103725C. SecundaJ. Sholom SecundaJ. Sholon SecundaN. SecundaS SecundaS. H. SekundaS. LecundaS. S. SecundaS. SacundaS. SecondaS. SecoundaS. SecuncaS. SecundaS. Secunda e.a.S. SegundaS.SecundaS.SolomSalom SegundaSamuel SecundaSchalom SekundaSchlomo SecundaScholem SecundaScholem/SecundaScholom - SecundaScholom SecundaScholom – SecundaScholom/SecundaScundaSecindaSeconaSecondaSecudaSecudnaSecundSecundaSecunda - SholomSecunda SSecunda ShalonSecunda SholomSecunda, SholomSecunda, Sholom SholemSecundoSecundsSegundaSekundaSh. SecundSh. SecundaShalim SecundaShalom SecundaSheldon SecundaShlomo SecundaShloyme SekundaSholem SecundaSholem Sholom SecundaSholen - SecundaSholomSholom - SegundaSholom SecondaSholom SecoundaSholom Sholem SecundaSholom, SecundaSholon / SecundaSholon SecundaSholum SecundaSholum/SecundaSocundaSoholom SecundaSolom SecundaSucundaSucundsSz. SekundasecundaН. СекундаС. СекундаС. ШоломСекундаСоломон СекундаШ. СекундаШ.СекундаШолом Секундаש. סקונדהשלום סקונדה + +695876Jacob JacobsYakov YakubovitshHungarian-born Yiddish theater and vaudeville director, producer, lyricist, songwriter, coupletist, character actor, and comic +born 1 January 1890 in Risk, Hungary +died 14 October 1977 in New York City, New York, USA + +His family emigrated to the United States in 1904.Needs Votehttp://en.wikipedia.org/wiki/Jacob_Jacobshttp://www.imdb.com/name/nm0414440/http://www.radioswissjazz.ch/de/musikdatenbank/musiker/18865e57a27694880721407d3bb90aa73131f/biographyJ JacobsJ. JacobsJ. JocobsJ.JacobsJ.JakobsJaakobsJacobJacob JacobJacobsJacobs JJacobs JacobsJacobs, JacobJakobsJcobsJim JacobsSecundaT. JacobsT. Jacobs, JacobЯ. Якобсי. יעקובס + +696028Geoffrey ParsonsGeoffrey Claremont ParsonsEnglish lyricist, famous for song "Smile". + +[b] For Australian classical pianist, use [a900975][/b]. + +Born 7 January 1910. +Died 22 December 1987 in Eastbourne, East Sussex, England, UK. +Parsons worked at the Peter Maurice Music Company run by [a=James Phillips (3)] (aka [a=John Turner (2)]). The company specialized in adapting songs originally in foreign languages into the English language. Phillips would usually assign a song to Parsons and when the latter was finished, suggest some changes. +Most famous for writing the lyrics for "Smile", a song that is generally associated with the Charlie Chaplin. +Needs Votehttp://en.wikipedia.org/wiki/Geoffrey_Parsons_(lyricist)https://www.imdb.com/name/nm0663824/bio/C. G. ParsonsC. ParsonsC.G. ParsonsClaremount-PearsonsF. ParsonsG ParsonsG. C. ParsonsG. ParonsG. ParsonG. ParsonsG. PersonsG.C. ParsonsG.ParsonsG.PersonsGP ClarmontGe. ParsonsGeffrey Claremont ParsonsGeoff ParsonGeoff ParsonsGeoffery ParsonsGeoffrei ParsonsGeoffreyGeoffrey C ParsonsGeoffrey C. ParsonsGeoffrey ClaremontGeoffrey Claremont ParsonsGeoffrey Clarmont ParsonsGeoffrey ParsonGeoffrey PasonsGeoffrey PersonsGeoffroy ParsonsGeoffry ParsonsGeofrey ParsonsGoeffrey ParsonsJ ParsonsJ. ParsonsParsensParsonParsonsParsons G.Parsons Geoffrey ClaremontParsons, G.Parsons, J.PasonsPattersonPearsonPersonsPorsanaT. Parsonsparsonsジェフリー・パーソンズJohn Sexton (2) + +696030John Turner (2)James John Turner PhillipsPseudonym used by the English lyricist James Phillips who also ran the Peter Maurice Music Co. Ltd.Needs Votehttps://en.wikipedia.org/wiki/John_Turner_(lyricist)https://savethemusic.com/artist/john-turner/J TurnerJ, TurnerJ. J. TurnerJ. TURNERJ. TannerJ. TunerJ. TurnerJ.D. TurnerJ.TurnerJJ TurnerJames John Turner PhilipsJames John Turner PhillipsJoe TurnerJohnJohn D. TurnerJohn T. James PhillipsJohn T. PhillipsJohn TurneJon TurnerK. TurnerPhillipsT. TurnerThurnerTuirnerTunerTurmerTurnerTurner, JTurnorJames Phillips (3)Arthur Price (2) + +696134Julius RudelAmerican conductor, born 6 March 1921 in Vienna, Austria, died 26 June 2014 in New York, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Julius_Rudelhttps://www.imdb.com/name/nm0748701/F1 to F3J. RudelRudelЮлиус Рудель + +696140Friedrich ZellCamillo WalzelGerman librettist and theatre director, born 11 February 1829 in Magdeburg, Germany and died 17 March 1895 in Vienna, Austria. +Correcthttp://en.wikipedia.org/wiki/Camillo_WalzelCamillo ZellF. ZellF.ZellFr. ZellKarl ZellR. ZellZellCamillo Walzel + +696141Paul KneplerAustrian composer, born 29 October 1879 in Vienna, Austrian-Hungarian Empire and died 17 December 1967 in Vienna, Austria. +Father of [a6738855]. +Needs Votehttps://adp.library.ucsb.edu/names/205458KeplerKepplerKneblerKneipherKneplerKnepler-WelleminskyKnepplerKnieplerKnoplerP. KneblerP. KnepflerP. KneplerP. KrieplerP. KueplerP.KneplerPaolo KneplerPaul KneipherPaula KneplerR. Knepler + +696143Salomon Hermann MosenthalSalomon Hermann Ritter von Mosenthal(German writer and poet, born 14 January 1821 in Kassel, Germany, died 17 February 1877 in Vienna, Austria.Needs Votehttp://en.wikipedia.org/wiki/Salomon_Hermann_MosenthalH. C. MosenthalH. MosenthalH. S. MosenthalH.S. MosenthalH.S.MosenthalHermann S. MosenthalHermann Salomon MosenthalHermann Von MosenthalHermann von MosenthalMosenthalS. H. MosenthalS.H. MosenthalSalomon Hermann Ritter von MosenthalSolomon Hermann MosenthalVon Mosenthal + +696150Franz MarszalekConductor and composer, born 2 August 1900 in Breslau, Silesia, German Empire, (currently Wrocław, Poland), died 28 October 1975 in Köln, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Franz_MarszalekChorChor, Gesamtleitung Franz MarszalekF. MarszalekF.MarschalekFrank MarszalekFranz ManszalekFranz Marszalek Gemischte Chor Und Groß. Operettenorch.Franz Marszalek Gemischter Chor Und Groß. Operettenorch.Franz MarzalekGemischter Chor Und Großes Operettenorchester Ges.-Ltg. Franz MarszalekGrosses Operetten-OrchesterGroßes Operetten-OrchesterGroßes Orchester, Dirigent: Franz MarszalekMarszalekMarzalekStort OperetteorkesterМарцалекФ. МаршалекOrchester Franz MarszalekWDR Rundfunkorchester Köln + +696151Ernst SteffanAustrian composer, librettist and conductor, born 22 January 1896 in Vienna, Austria, died 26 September 1967 in Berlin, Germany.Needs Votehttp://de.wikipedia.org/wiki/Ernst_Steffanhttps://adp.library.ucsb.edu/names/105647E. StaffanE. SteffanE. SteffenErnst StefanErnst SteffenStaffanSteffanSteffen + +696159Eberhard StorchGerman Schlager songwriter (12 July 1905 - 19 March 1978), who wrote his first music for movies in the 1930's. After being captured in WWII, he returned to his profession starting from 1946. He wrote various Schlager songs until the end of the 1960's. Needs VoteE. StorchE. Storch-CorsoE. StorckE. StrochE.StorchEb. StorchEberh. StorchEberhard - StorchEberhard/StorchR. SterchS. StorchSotrchSterchStorchStorch EverhardStorch, EberhardStorchsStorhStroch + +696162Giuseppe GiacosaGiuseppe GiacosaItalian poet, playwright and librettist, born 21 October 1847 in Colleretto Giacosa, Italy and died 1 September 1906 in Colleretto Giacosa, Italy.Needs Votehttp://en.wikipedia.org/wiki/Giuseppe_Giacosahttps://adp.library.ucsb.edu/names/102753BiacosaCiacosaG- GiacosaG. GiacosaG. GiacosalG. GiacosoG. IllicaGiacomo GiacosaGiacosaGiacosa-IllicaGiacoseGiacosiGiacossaGiacossoGiascosaGiocosaGuiseppe GiacosaGuiseppe GiacossaIllica & GiacosaД. ДжакозаДж. Джакоза + +696168Roberto BenziItalian conductor. He was born on 12 December 1937 in Marseille, France. +He was married to [a=Jane Rhodes].Needs Votehttp://www.robertobenzi.com/https://en.wikipedia.org/wiki/Roberto_BenziBenzaBenziRoberto Benciロベルト・ベンツィロヴェルト・ベンツィ + +696171Werner HollwegGerman operatic tenor and director. He was born 13 September 1936 in Solingen, Germany and died 1 January 2007 in Freiburg/Breisgau, Germany.CorrectHollwegW. HollwegВернер Холльвегヴェルナー・ホルヴェーク = Werner Hollweg + +696188Orchester Der Wiener Staatsoper[i]Name variants: Das Wiener Staatsopernorchester; Vienna State Opera Orchestra; Orchestra of the Vienna State Opera[/i] +Orchestra of the [l=Wiener Staatsoper]. + +For the chorus, use: [a855072]; "[i]Orchester Der Wiener Staatsoper In Der Volksoper[/i]" indicates the orchestra during the period of the post-war rebuilding of the [l=Wiener Staatsoper]; for "Das Kammerorchester Der Wiener Staatsoper" and it's translations, use [a3980152].Needs Votehttps://www.wiener-staatsoper.at/ensemble/orchester/A Bécsi Operaház ZenekaraA Bécsi Állami Operaház ZenekaraBečki Operski OrkestarBécsi OperazenekarBécsi Állami Operaház ZenekaraChamber Orchestra Of The Vienna State Academy Of MusicChamber Orchestra Of The Vienna State OperaChoir & Orchestra Den Wiener StaatsoperD. Wiener StaatsopernorchesterDas Große Wiener OpernorchesterDas Orchester Der Staatsoper WienDas Orchester Der Staatsoper Wien In Der VolksoperDas Orchester Der Wiener StaatsoperDas Orchester Der Wiener Staatsoper In Der VolksoperDas Orchester der Staatsoper WienDas Orchester der Wiener StaatsoperDas Orchester der Wiener Staatsoper in der VolksoperDas Staatsopernorchester WienDas Wiener Staatsopern-OrchesterDas Wiener StaatsopernorchesterDe L'Opéra De VienneDer Wiener StaatsoperGran Orquesta De La StaatsoperGran Orquesta De VienaGran Orquesta de VienaGrand Orchestre De VienneGrand Orchestre ViennoisGrand Symphony OrchestraGrande Orchestra Di ViennaHet Weens Staatsopera OrkestKammerorchester Der Wiener StaatsoperKammerorchester Der Wiener Staatsoper In Der VolksoperL'Orchestra Dell'Opera Di Stato Di ViennaL'Orchestre De L'Opera D'Etat De VienneL'Orchestre De L'Opéra De VienneL'Orchestre de L'Opéra D'ÉtatLa Orquesta De La Ópera Del Estado De VienaLa Orquesta de la Opera de VienaLa Orquesta de la Opera del Estado de VienaLe Grand Orchestre De VienneLe Grand Orchestre ViennoisMembers Of The Vienna State OperaMembers Of The Vienna State Opera OrchestraMiembros De La Orquesta De La Ópera De VienaMitgl. D. Orchesters D. Staatsoper WienMitglieder Des Orchesters Der Staatsoper WienMitglieder Des Orchesters Der Wiener StaatsoperMitglieder Des Wiener StaatsopernorchestersN. O. Symphonie-Orchester WienOpera De VienaOpera De VienneOpera Der Wiener VolksoperOpera Nacional de VienaOpéra De VienneOrch. D. Wiener StaatsoperOrch. D. Wr. Staatsoper (I. D. Volksoper)Orch. De L'Opéra D'Etat De VienneOrch. De L'Opéra De VienneOrch. Dell'Opera Di Stato Di ViennaOrch. Dell'Opera Di ViennaOrch. Der Wiener StaatsoperOrch. Der Wiener Staatsoper In Der VolksoperOrch. Wiener OperOrch. Wiener Oper.Orch. dell'Opera di Stato di ViennaOrchesterOrchester D. Wiener StaatsoperOrchester Der Oper Der Stadt WienOrchester Der StaatsoperOrchester Der Staatsoper (In Der Volksoper) WienOrchester Der Staatsoper WienOrchester Der Staatsoper Wien In Der VolksoperOrchester Der Staatsoper, WienOrchester Der Wiener OperOrchester Der Wiener OperaOrchester Der Wiener Staatoper In Der VolksoperOrchester Der Wiener Staatsoper (In Der Volksoper)Orchester Der Wiener Staatsoper (Volksoper)Orchester Der Wiener Staatsoper I. D. VolksoperOrchester Der Wiener Staatsoper In Der VolksoperOrchester Der Wiener Staatsoper i.d. VolksoperOrchester Der Wiener Staatsoper in der VolksoperOrchester Der Wiener Straatsoper In Der VolksoperOrchester Der Wiener VolksoperOrchester Der Wiener Volksoper (Staatsoper)Orchester Der Wiener Volksoper In Der StaatsoperOrchester Der Wiener Volksoper In Der Wiener StaatsoperOrchester Der Wr. StaatsoperOrchester Der Wr. Staatsoper In Der VolksoperOrchester Des Opernhauses Der Stadt WienOrchester Des Opernhauses WienOrchester Of The Vienna Stat OperaOrchester de Wiener StaatsoperOrchester der Staatsoper WienOrchester der Staatsoper Wien in der VolksoperOrchester der Staatsoper, WienOrchester der Wiener StaatsoperOrchester der Wiener Staatsoper In Der VolksoperOrchester der Wiener Staatsoper in der VolksoperOrchester der Wiener VolksoperOrchestr Vídenské Státní OperyOrchestr Vídeňské Statní OperyOrchestr Vídeňské Státní OperyOrchestraOrchestra Dell'Opera Di Stato ViennaOrchestra Of The Vienna State OperaOrchestra De L'Opera De VienneOrchestra De L'Opera de VienneOrchestra De L'Opéra De VienneOrchestra De La Opera De VienaOrchestra De La Ópera De VienaOrchestra Del'Opera Di Stato Di ViennaOrchestra Dell' Opera Di Stato Di ViennaOrchestra Dell' Opera di Stato di ViennaOrchestra Dell'Opera DI Stato DI ViennaOrchestra Dell'Opera Di StatoOrchestra Dell'Opera Di Stato Di ViennaOrchestra Dell'Opera Di Stato Di Vienna Della VolksoperOrchestra Dell'Opera Di Stato Di Vienna Nella VolksoperOrchestra Dell'Opera Di Stato Die ViennaOrchestra Dell'Opera Di Stato ViennaOrchestra Dell'Opera Di ViennaOrchestra Dell'Opera Di stato Di ViennaOrchestra Dell'Opera di Stato di ViennaOrchestra Dell'opera Di Stato Di ViennaOrchestra Dell'opera Di Stato Di Vienna Della VolksoperOrchestra Dell'opera Di Stato Di Vienna Nella VolksoperOrchestra Dell'opera di Stato di ViennaOrchestra Della Staatsoper Di ViennaOrchestra Della Staatsopern Di ViennaOrchestra Di Stato Dell'Opera Di ViennaOrchestra Di Stato Dell'opera Di ViennaOrchestra E Coro Del Teatro Dell'Opera di Stato di VienaOrchestra Of The Opera Of ViennaOrchestra Of The Staatliches Wiener VolksopernOrchestra Of The Staatsoper, ViennaOrchestra Of The The Vienna National OperaOrchestra Of The Viena State OperaOrchestra Of The Vienna National OperaOrchestra Of The Vienna OperaOrchestra Of The Vienna StaatsoperOrchestra Of The Vienna State OperaOrchestra Of The Vienna State OperahouseOrchestra Of The Vienna State OrchestraOrchestra Of The Vienne State OperaOrchestra Of The Viennese OperaOrchestra Of The Wiener StaatsoperOrchestra Of The Wiener State OperaOrchestra Of Vienna Opera HouseOrchestra Of Vienna State OperaOrchestra Of the Vienna State OperaOrchestra Opera Di StatoOrchestra Opera ViennaOrchestra Operei De Stat Din VienaOrchestra Operei de stat din VienaOrchestra SinfonicaOrchestra Sinfonica Dell'Opera Di Stato Di ViennaOrchestra Sinfonica Di Stato Di ViennaOrchestra dell' Opera di Stato di ViennaOrchestra dell'Opera Di Stato Di ViennaOrchestra dell'Opera Di Stato Di Vienna (Nella Volksoper)Orchestra dell'Opera di Stato di VienaOrchestra dell'Opera di Stato di ViennaOrchestra dell'Opera di ViennaOrchestra of The Vienna State OperaOrchestra of Vienna State OperaOrchestra of the Vienna Opera StateOrchestra of the Vienna State OperaOrchestra of the Viennese Popular OperaOrchestreOrchestre D'Etat De VienneOrchestre De L'Opéra De VienneOrchestre De L'Opera D'État De VienneOrchestre De L'Opera De VienneOrchestre De L'Opera National Populaire De VienneOrchestre De L'Opéra D'Etat De VienneOrchestre De L'Opéra D'Etat de VienneOrchestre De L'Opéra D'ÉtatOrchestre De L'Opéra D'État De VienneOrchestre De L'Opéra De ViennaOrchestre De L'Opéra De VienneOrchestre De L'Opéra National De VienneOrchestre De L'Opéra de VienneOrchestre De L'opera De VienneOrchestre De L'opéra D'Etat De VienneOrchestre De L'opéra D'État De VienneOrchestre De L'opéra D'état De VienneOrchestre De L'opéra De VienneOrchestre De L’Opera De VienneOrchestre De L’Opéra De VienneOrchestre De L’Opéra D’État De VienneOrchestre De VienneOrchestre De l'Opéra De VienneOrchestre De l’Opera d’Etat De VienneOrchestre De l’Opéra De VienneOrchestre Dell'Opera di Stato di ViennaOrchestre Du Festival De VienneOrchestre Du Staatsoper De VienneOrchestre Du Volksoper, VienneOrchestre National De L'Opéra De VienneOrchestre National De L'Opera De VienneOrchestre National De L'Opéra De VienneOrchestre National De L'Opéra National De VienneOrchestre National De VienneOrchestre National de VienneOrchestre National de l'Opera de VienneOrchestre National de l'Opéra de VienneOrchestre Opera De VienneOrchestre Philarmonique De L'Opéra De VienneOrchestre Symphonique D'AutricheOrchestre Symphonique De L'Opera De VienneOrchestre Symphonique De L'opéra National De VienneOrchestre Symphonique De L'opéra National de VienneOrchestre Symphonique De VienneOrchestre Symphonique de L'opéra de VienneOrchestre Symphonique de VienneOrchestre Viennais De L'OperaOrchestre Viennois De L'OpéraOrchestre d'Etat De VienneOrchestre de L'Opera de VienneOrchestre de L'Opéra De VienneOrchestre de L'Opéra de VienneOrchestre de L'opera D'etat de VienneOrchestre de L'opera de VienneOrchestre de L'opéra de VienneOrchestre de L´Opéra de VienneOrchestre de l'Opera de VienneOrchestre de l'Opéra d'Etat De VienneOrchestre de l'Opéra d'État de VienneOrchestre de l'Opéra de VienneOrchestre dell'Opera di Stato di ViennaOrchestre du Wiener StaatsoperOrkest Van De Weense OperaOrkest Van De Weense Staats-OperaOrkest Van De Weense StaatsoperaOrkest Van De Wiener StaatsoperOrkest Weense StaatsoperaOrkest van de Staatsopera van WenenOrkest van de Weense StaatsoperaOrkestar Bečke "Statsopere"Orkestar Bečke Državne OpereOrkestar Bečke OpereOrkiestra Opery WiedeńskiejOrq. de la Ópera del Estado de VienaOrquestaOrquesta De La Opera De VienaOrquesta De La Opera Del Estado De VienaOrquesta De La Opera De La Ciudad De VienaOrquesta De La Opera De VienaOrquesta De La Opera Del Estado De VienaOrquesta De La Opera Del Estado De VieneOrquesta De La Opera Del Estado Del VienaOrquesta De La Opera Nacional De VienaOrquesta De La Staatsoper De VienaOrquesta De La Wiener StaatsoperOrquesta De La Ópera De VienaOrquesta De La Ópera Del Estado De VienaOrquesta De La Ópera Estatal De VienaOrquesta De La Ópera Nacional De VienaOrquesta De Viena StaatsoperOrquesta De la Opera Nacional De ViennaOrquesta De Ópera Estadual De VienaOrquesta Del Estado De La Opera De VienaOrquesta Del Estado De La Opera De VienaOrquesta Del Estado De La Ópera De VienaOrquesta Del Estado De VienaOrquesta FilarmonicaOrquesta Filarmonica De La Opera Del Estado De VienaOrquesta Filarmonica De VienaOrquesta Nacional De La Opera De VienaOrquesta Sinfonica De La Opera Del Estado De VienaOrquesta Sinfonica De VienaOrquesta SinfónicaOrquesta Sinfónica de la Ópera del Estado De VienaOrquesta Vienna State OperaOrquesta Wiener StaatsoperOrquesta de la Opera Del Estado de VienaOrquesta de la Opera Nacional de VienaOrquesta de la Opera Popular de VienaOrquesta de la Opera de VienaOrquesta de la Opera de la Ciudad de VienaOrquesta de la Opera del Estado de VienaOrquesta de la Ópera de VienaOrquestra Da Opera Estadual De VienaOrquestra Da Opera Estatal Da VienaOrquestra Da Opera Estatal De VienaOrquestra Da Ópera De VienaOrquestra Da Ópera Estadual De VienaOrquestra Da Ópera Estatal De VienaOrquestra Da Ópera Nacional De VienaOrquestra Da Ópera de VienaOrquestra De La Opera De VienaOrquestra De La Ópera De VienaOrquestra Estatal Da Ópera De VienaPhilharmonic Orchestra Of The Vienna OperaSinf. Orch. StaatsoperSinfonieorchester WienStaatliches Wiener Volksopern-OrchesterStaatsoper WienStaatsopern-OrchesterStaatsopernorchester Di ViennaStaatsopernorchester WienState Opera ViennaStatsoperaens Orkester, WienStreicher Des Staatsopernorchester In Der VolksoperString Orchestra Of The Vienna State OperaSymphony Orchestra Of The Austrian State SymphonyThe Austrian State Symphony OrchestraThe Great Symphonic Brass And Strings Orchestra Of The Vienna State OperaThe Great Symphony Orchestra Of The Vienna OperaThe Great Symphony Orchestra of the Vienna OperaThe Orchester Der StaatsoperThe OrchestraThe Orchestra Of The Vienna State OperaThe Orchestra Of The Vienna State Opera (Volksoper)The Orchestra of The Vienna State OperaThe Philharmonic Orchestra Of The Vienna OperaThe Vienna National Opera OrchestraThe Vienna OperaThe Vienna Opera OrchestraThe Vienna OrchestraThe Vienna State OperaThe Vienna State Opera OrchesrtaThe Vienna State Opera OrchestraThe Vienna State Opera Orchestra (Volksoper)The Vienna State Opera Orchestra = ウィーン国立歌劇場管弦楽団The Vienna State OrchestraThe Vienna State PhilharmonicThe Vienna State Symphony OrchestraThe Vienna Volksoper OrchestraThe Vienne State Symphony OrchestraV.S.O.O.VSO OrchestraViena OrchestraViena State Opera OrchestraViennaVienna Festival OrchestraVienna National Opera OrchestraVienna Opera OrchestraVienna Opera Orchestra And ChorusVienna Opera-House OrchestraVienna Orchestre de l'Opéra de VienneVienna S.O. OrchestraVienna StaatsoperVienna Staatsoper OrchestraVienna Staatsoper Orchestra And PrincipalsVienna StaatsorchesterVienna State OperaVienna State Opera And ChorusVienna State Opera And OrchestraVienna State Opera CompanyVienna State Opera Orch.Vienna State Opera OrchesterVienna State Opera OrchestraVienna State Opera Orchestra (Volksoper)Vienna State Opera Orchestra And ChorusVienna State Opera OrchestrasVienna State OrchestraVienna State Orchestra & ChorusVienna State PhilharmoniaVienna State Symphony OrchestraVienna State opera OrchestraVienna Symphony OrchestraVienna Volksoper OrchestraVienneVienne Festival OrchestraViennese StringsVolksoper Wien OrchestraVídeňští SymfonikovéWeens Opera OrkestWeens Staats Opera OrchestraWeens Staatsopera OrkestWeens StaatsoperaorkestWeense Staatsopera OrkestWi. StaatsopernorchesterWien OrchesterWien OrchestraWien Statsoperas OrkesterWiener Festspiel-OrchesterWiener Oper OrchesterWiener Opern-OrchesterWiener OpernorchesterWiener PhilharmonikerWiener Staats OperWiener Staats Opern OrchesterWiener StaatsoperWiener Staatsoper OchesterWiener Staatsoper OrchesterWiener Staatsoper OrchestraWiener Staatsoper Symphonie OrchesterWiener Staatsopern-OrchesterWiener StaatsopernorchesterWiener Staatsopernorchester (In Der Volksoper)Wiener Staatsopernorchester In Der VolksoperWiener StaatsoperorchesterWiener StaatsorchesterWiener Statsoperaens OrkesterWiener Statsoperas OrkesterWienerstaatsopera OrkestWienerstadtsoper OrkestraWienin Valtionoopp. Ork.Wienin Valtionoopperan Ork.Wienin Valtionoopperan OrkesteriWiens Stadsopera-Orkesterthe Vienna State Opera OrchestraÖsterreichisches Sinfonieorchester WienÖsterreichisches Symphonie-Orchester, WienВенский Оперный ОркестрОркестр Венского Гос. Театра ОперыОркестр Венской Государственной ОперыОркестр Венской ОперыСимфонический Оркестр Венской Оперыウィーン・オペラ・オーケストラウィーン国立歌劇場ウィーン国立歌劇場管弦楽団ウィーン歌劇場管弦楽器ウィーン歌劇場管弦楽団Alois PoschRobert TucciWilli BoskovskyFritz FaltlWolfgang SchusterRobert ScheiweinJohannes WildnerErnst OttensamerHans SwarowskyThomas FheodoroffWalter WellerKarl Heinz SchützHelene KenyeriRoland AltmannHerbert MayrGerhard MarschnerMartin KubikAnna LelkesCharlotte BalzereitJosef SpindlerOtto StrasserJosef NeboisGerhart HetzelFriedrich DolezalManfred HoneckDietfried GürtlerWerner HinkRené ClemencicAlfred PlanyavskyWolfgang PoduschkaAdalbert SkocicAlfred PrinzPeter GötzelGottfried MartinWolfgang Schulz (3)Günter HögnerRainer KüchlWerner TrippWalter SingerHelmut WeisRichard HarandRoland BergerHerbert ManhartHans-Peter OchsenhoferHelmut WobischHelmut DemmerHans GanschMeinhart NiedermayrHans TschedemnigJoseph BraunsteinJulie PallocHeinrich KollWalter LehmayerFranz BartolomeyMichael WerbaLars Michael StranskyMichael BladererGerhard StradnerKlaus ZaunerKarl Maria TitzeGottfried BoisitsGerhard TotzauerGünter LorenzAlbert LinderJosef KondorWerner ReselHarald HörthRainer HoneckEckhard SeifertPeter WächterWilhelm HübnerWillibald JanezicClemens HellsbergEduard LaryszEduard BicanJosef HadrabaThomas HajekWolfgang TomböckJosef NiedermayrOtto RühmHans BergerEdward KudlakChristof HuebnerKarl ProhaskaFranz OpalenskyRudolf HanzlJosef VelebaOthmar BergerThomas JöbstlWolfgang KoblitzRonald JanezicStepan TurnovskyWolfgang VladarMartin GabrielAlexander ÖhlbergerAndreas WieserRobert Nagy (3)Dieter FluryMartin LembergKarl MayrhoferGünter SeifertTamás VargaMark GaalHorst HajekWalter BarylliGünter FederselPéter SomodariVolkhard SteudeErich SchagerlAlfons EggerReinhold SieglFriedrich PfeifferDaniela IvanovaBläser Des Orchesters Der Wiener StaatsoperErich Graf (2)Anneleen LenaertsJosef HellJosef PombergerRichard HochrainerRaphael FliederShkëlzen DoliRené StaarDaniel OttensamerTibor KováčThilo FechnerÖdön RáczWolfgang StrasserKarl StumpfKarl StierhofBurkhard KräutlerFranz SöllnerGeorge EskdaleJohannes TomboeckHubert KollerKarl RosnerRonald PisarkiewiczJosef Hell (2)Norbert TäublMilan SagatEwald WinklerHelmut ZehetnerHans Peter SchuhLaszlo BarkiReinhard DürrerFranz ZamazalSebastian HeeschReinhard ÖhlbergerUrsula WexMartin ZalodekElmar LandererDietmar KüblböckOtto BrucknerLudwig DobronyGerhardt ZatchekThe Great Symphonic Brass And String Orchestra Of The Vienna State OperaHugo BurghauserAndreas GroßbauerRoland HorvathWolfgang PlankHelmuth PufflerReinhard ReppAlfred AltenburgerKarl ÖhlbergerManfred KuhnManfred GeyrhalterAdelheid Blovsky-MillerWilliam McElheneyPhilipp MattheisRichard KrotschakHorst Berger (2)Carl JohannisHans HindlerHubert KroisamerLeopold KainzAnton StrakaChristoph GiglerDavid PennetzdorferRaimund LissyGottfried von FreibergWilhelm KrauseHerbert FrauhaufGerhard IbererAntonia SchreiberThe Brass Ensemble of The Vienna State Opera OrchestraBühnenorchester Der Wiener StaatsoperWilfried HedenborgDominik SchnaittBenedikt DinkhauserSebastian BruHolger GrohBernhard Naoki HedenborgMatthias SchornJosef ReifHubert JelinekChristoph KonczJun KellerRobert BauerstatterRudolf NekvasilSolistenensemble Der Wiener StaatsoperBenjamin SchmidingerMartin Unger (2)Manuel Huber (3)Martin KlimekKlaus PeisteinerAugust PioroOtto SchiederJosef LevoraFranz SchlafOliver MadasWolfgang Singer (2)Bruno HartlErwin KellnerElisabeth Charlotte GabrielHans Kraus (4)Andrea GötschWalter Auer (2)Adela FrasineanuWolfgang GürtlerChristian FrohnGünther SzkokanFritz LeitermeyerWolfgang BreinschmidRudolf SchmidingerErich Kaufmann (3)Gerhard Kaufmann (2)Sophie DervauxJörgen FogBernhard BiberauerTobias LeaJosé Maria BlumenscheinWalter BlovskyWolfgang Tomböck (2)Hans HanakHerbert MaderthanerLara KusztrichHarald KrumpöckDaniel FroschauerKarin Teresa BonelliGeorg StrakaKirill KobantschenkoRoland BaarBarnaba PoprawskiHeinz HankeMartina MiedlMaxim BrilinskyFranz SamohylErhard LitschauerKelton KochVictor PolatschekHelmut SkalarChristoph Wimmer (2) + +696192Thomas MoserAmerican operatic tenor, born 27 May 1945 in Richmond, Virginia, USA.CorrectMoserT. Moser + +696200John Alldis ChoirBritish choral ensemble founded in 1962 by [a=John Alldis].Needs Votehttps://en.wikipedia.org/wiki/John_AlldisAlldis ChoirChoeur John AldisChoeur John AlldisChorChorusChœur John AlldisChœurs John AlldisCoro John AldissCoro John AlldisCoro: John AlldisDer John Aldis ChorI citadini cinesiI cittadini cinesiI fedeliI giocatoriI venditoriJ. Alldis ChoirJohn Al dissJohn Aldis ChoirJohn Aldis ChorJohn Aldiss ChoirJohn Alldis Choir, LondonJohn Alldis Choir, TheJohn Alldis ChorJohn Alldis ChorusJohn Alldis SingersJohn Alldis-ChorJohn Alldis-KoretJohn Alldiss ChoirJohn-Alldis-ChoirLes Chœurs John AlldisThe John Aldis ChoirThe John Alldis ChoirThe John Alldis SingersThe John Allis ChoirХор Џон АлдисХор Джон АлдисХор Джона Оллдисаジョン・オールディス合唱団John LubbockJohn AlldisHugh Davies (3)Members Of The John Alldis ChoirMale Voices Of The John Alldis Choir + +696206Friedrich von FlotowFriedrich von FlotowGerman classical composer, born 27 April 1812 in Teutendorf, Mecklenburg died 24 January 1883 in Darmstadt. +Von Flotow is mostly remembered for his opera [i]Martha[/i].Needs Votehttp://en.wikipedia.org/wiki/Friedrich_von_Flotowhttps://adp.library.ucsb.edu/names/104273Baron von FlotowDe FlotowF. De FlotowF. FlotovF. FlotovasF. FlotowF. Freiherr von FlowtowF. V. FlotowF. Von FlotowF. Von Flotow/FriedrichF. Von SlotowF. de FlotowF. v. FlotowF. von FlotowF.F.von FlotowF.FlotowF.v. FlotowFederico FlotowFletowFlotovFlotowFlotow F.FlowotFlowtowFr. FlotowFr. V. FlotowFr. Von FlotowFr. v. FlotowFr. von FlotowFriederich FlotowFriedr. v. FlotowFriedr. von FlotowFriedrichFriedrich Adolf Ferdinand, Freiherr von FlotowFriedrich FlotowFriedrich FlotwFriedrich Freiherr von FlotowFriedrich Frieherr von FlotowFriedrich V. FlotowFriedrich Von FlotowFriedrich v. FlotowFrotowGustave von FlowtowV. FlotowVan FlotowVon Flotowv. Flotowvon Flotowvon Flotow, FriedrichФ. ФлотовФ. фон ФлотовФ.фон ФлотовФлотов„Martha“-Flotow浮羅托 + +696211Otto NicolaiCarl Otto Ehrenfried NicolaiGerman composer and conductor, born 9th June, 1810, in Königsberg, East Prussia (now Kaliningrad, Russia) - died 11th May, 1849, in Berlin, Germany.Needs Votehttp://en.wikipedia.org/wiki/Carl_Otto_Nicolaihttps://adp.library.ucsb.edu/names/102655C. NicoliniCarl Otto Ehrenfried NicolaiCarl Otto NicolaiCarlo Otto NicolaiKarl Otto NicolaiNicholaiNicolaINicolaiNicolai OttoNicolaïNicoliniNikolaiNoicolaiO. NicolaiO. NicoliniO. NikolO. NikolaiO. NikolajO.NicolaiOtto NicolaïOtto NikolaiOttor NicolaiНиколаиО. НиколаиОтто Николаиニコライ + +696215Nicolai GeddaHarry Gustaf Nikolai Lindberg, later GäddaSwedish operatic tenor and hovsångare (royal court singer), born 11 July 1925 in Stockholm, Sweden, died 8 January 2017 in Tolochenaz, Switzerland. + +He was involved in all the major opera houses in the world, including La Scala in Milan, Covent Garden in London, the Metropolitan in New York and the Paris Opera. In recent years he toured Russia and was greeted by standing ovations. He mastered six languages more or less fluently. In addition to his engagements at the various opera houses, he sang in churches all over Sweden. His biography has been translated into both English and German.Needs Votehttp://en.wikipedia.org/wiki/Nicolai_Geddahttps://sv.wikipedia.org/wiki/Nicolai_Geddahttp://kkre-23.narod.ru/gedda.htmGeddaGedda*GeggaN. GeddaNicholai GeddaNicola GeddaNicolai GeddáNicolaj GeddaNicolaÏ GeddaNicolaï GeddaNicolaĩ GeddaNicolaϊ GeddaNicolaї GeddaNikolai GeddaNikolay GeddaNikolaï GeddaН. ГеддаНиколай ГеддаНиколай Джедаニコライ・ゲッダ + +696220Franco CorelliItalian operatic tenor. He was born 8 April 1921 in Ancona, Italy and died 29 October 2003 in Milan, Italy.Needs Votehttps://en.wikipedia.org/wiki/Franco_CorelliCorelliF. CorelliF.CorelliFranko KoreliФранко КорелиФранко Корелли + +696221Kurt RobitschekAustrian theatre director, born 23 August 1890 in Prague, Austria Hungary (today Czech Republic), died 16 December 1950 in New York, New York, USA.Needs Votehttp://de.wikipedia.org/wiki/Kurt_Robitschekhttps://adp.library.ucsb.edu/names/116967K. KobitschekK. RobitchekK. RobitscheckK. RobitschekKarl RobitschekKurt RobischekKurt RobitcheckKurt RobitscheckRobitcheckRobitchekRobitscheckRobitschekRoleitschekRubitschek + +696225Wiener SymphonikerIn English, The Vienna Symphony Orchestra. Orchestra based in Vienna, Austria, which has been active since 1900. Has its own label, [l699426]. + +Wiener Concertverein Orchester is founded by Ferdinand Löwe in 1900. +February 11, 1903, at Wiener Musikverein, to perform the premiered of Symphony No. 9 by [a479037] conductor Ferdinand Löwe. +1913, Based in the Vienna Konzerthaus. +1919, Merged with the [a1208567]. +1933, Current name adopted. + +Main Conductor + +Ferdinand Löwe (1900 - 1925) +[a839640] (1927 - 1930 - as director of the Gesellschaft der Musikfreunde) +Oswald Kabasta (1934 - 1938) +[a864674] (1946 - 1948) +[a283122] (1948 - 1960 - as director of the Gesellschaft der Musikfreunde) +[a517158] (1960 - 1970) +[a832942] (1970 - 1973 - Artistic Advisor) +[a833560] (1973 - 1976) +[a696257] (1976 - 1978) +[a283125] (1980 - 1982) +[a839412] (1982 - 1986) +[a868929] (1986 - 1991 - Principal Guest Conductor) +[a880957] (1991 - 1996) +[a832688] (1997 - 2005) +[a1632526] (2005 - 2013) +Philippe Jordan (2014 - ) + +Possibly the same: [a1111131], [a4214120]Needs Votehttps://www.wienersymphoniker.at/https://en.wikipedia.org/wiki/Vienna_Symphony"Vienna" Symphonie OrchesterBecsi FilharmonokusokBečki Simfoniski Ork.Bečki SimfoničariBečki simfoničariBécsi Szimfonikus ZenekarBécsi SzimfonikusokBécsi Szimfónikusok ZenekaraDas Neue Wiener Symphonische OrchesterDas Oesterreichische Symphonie-Orchester, WienDas Wiener Sinfonie OrchesterDas Wiener Symphonie-OrchesterDas Wiener Symphonische OrchesterDas Österreichische Symhonie-Orchester, WienDas Österreichische Symphonie Orchester, WienDas Österreichische Symphonie-Orchester WienDas Österreichische Symphonie-Orchester, WienDe VienneDe Wiener Symphoniker - The Vienna Symphony Orch.Der Wiener SymphonikerDie Wiener SymphonikerDie "Wiener Symphoniker"Die Wien. Symph.Die Wiener SmyphonikerDie Wiener SymphonikerDie Wiener SynphonikerEin Wiener Symphonisches OrchesterEnsemble Mit Chor Die Wiener SymphonikerFilarmónica De VienaGran Orquesta Sinfonica De La Opera De VienaGrand Orchestre ViennoisGrande Orchestra Sinfonica VienneseGrande Orquestra De ViennaGrosses Wiener Symphonisches Orchester & ChorGroßes Symphonie Orchester WienInstrumental Ensemble Of The Vienna Symphony OrchestraKammerorchester Solisten Der Wiener SymphonikerL'Orchestre Symphonique De VienneL'orchestre Symphonique De VienneLa Orquesta Sinfonica De Viena • WSOLa Orquesta Sinfónica de Viena WSOLe Grand Orchestre Symphonique De VienneLeden Van De Wiener SymphonikerLondon Symphony OrchestraLos Sinfonicos Di VienaMembers Of The Vienna SymphonyMembers Of The Vienna Symphony OrchestraMembers Of Vienna SymphonyMembers of the Vienna Symphony OrchestraMembres De L'Orchestre Symphonique De VienneMembri Dell'Orchestra Sinfinica di ViennaMembri Dell'Orchestra Sinfonica Di ViennaMembri Della Wiener SymphonikerMiembros De La Orquesta Sinfónica De VienaMitglieder Der Wiener SymphonikerMitglieder der Wiener SymphonikerNiederösterreichisches TonkünstlerorchesterOrch. Sinf. Di ViennaOrch. Sinf. di ViennaOrch. Sinfonica Di ViennaOrch. Sinfonica di ViennaOrchester Der Gesellschaft Der Musikfreunde In WienOrchester Der Wiener MusikgeselischaftOrchester Der Wiener MusikgesellschaftOrchester Der Wiener SymphonikerOrchester der Gesellschaft der Musikfreunde in WienOrchestr Vídeňské Státní OperyOrchestra "Wiener Symphoniker"Orchestra Dei Wiener SymphonikerOrchestra Della Konzerthaus Di ViennaOrchestra National de ViennaOrchestra Of The Vienna MusikvereinOrchestra Of The Vienna SymphonikerOrchestra Of ViennaOrchestra SInfonica di ViennaOrchestra Sinfonica AustriacaOrchestra Sinfonica DI ViennaOrchestra Sinfonica DI Vienna Con CoroOrchestra Sinfonica Di ViennaOrchestra Sinfonica VienneseOrchestra Sinfonica di ViennaOrchestra Wiener SymphonikerOrchestra of the Vienna MusikvereinOrchestre De Chambre Les Solistes De L'Orchestre Symphonique De VienneOrchestre National De VienneOrchestre National de VienneOrchestre Philharmonique de VienneOrchestre Symhonique De VienneOrchestre Symohonique de VienneOrchestre SymphoniqueOrchestre Symphonique "Pro Musica" VienneOrchestre Symphonique De VienneOrchestre Symphonique AutrichienOrchestre Symphonique De L'Opéra National De VienneOrchestre Symphonique De La Ville De VienneOrchestre Symphonique De VienneOrchestre Symphonique De Vienne (Mitglieder Der Wiener Symphoniker)Orchestre Symphonique De ViennoisOrchestre Symphonique Du VienneOrchestre Symphonique ViennoisOrchestre Symphonique de VIenneOrchestre Symphonique de VienneOrchestre Synphonique de VienneOrchestre Wiener SymphonikerOrchestre de VienneOrchestre symphonique de VienneOrkiestra WiedeńskaOrq. Sinf. de VienaOrq. Sinfónica De VienaOrq. Sinfônica de VienaOrqesta Sinfonica De VienaOrquesta Clásica De VienaOrquesta Del Estado De VienaOrquesta Filarmonica De VienaOrquesta Simphonica de VienaOrquesta Sinfonica De VienaOrquesta Sinfonica De Viena • WSOOrquesta Sinfonica De Viena,Orquesta Sinfonica VienesaOrquesta Sinfonica de VienaOrquesta Sinfónica De VienaOrquesta Sinfónica De Viena* Wiener SymphonikerOrquesta Sinfónica Del Estado De VienaOrquesta Sinfónica VienesaOrquesta Sinfónica de AustriaOrquesta Sinfónica de VienaOrquestra Do Estado De VienaOrquestra Sinfonica De VienaOrquestra Sinfonica De VienaOrquestra Sinfonica De ViennaOrquestra Sinfonica VienenseOrquestra Sinfonica de VienaOrquestra Sinfonicas De VienaOrquestra Sinfónica De VienaOrquestra Sinfônica De VienaOrquestra Sinfônica De ViennaOrquestra Sinfônica de VienaOrquestra Sinfônica de ViennaPro Musica Symphony Orchestra, ViennaPro Musica Symphony ViennaSinfonica De VienaSinfónica De VienaSinfônica De VienaSolisten Der Wiener SymphonikerSolistes, Choeurs et Orchestre Symphonique De VienneStreicher Der Wiener SymphonikerStreicher Des Wiener SymphonieorchestersSymphonie OrchesterSymphonie Orchester WienSymphony OrchestraSymphony Orchestra Of ViennaSymphony Orchestra, ViennaThe "Wiener Symphoniker"The ''Wiener Symphoniker''The 'Wiener Symphoniker'The Austrian Symphony OrchestraThe Members Of The Vienna Symphonic OrchestraThe Symphony Orchestra Of The Viennese Symphonic SocietyThe Vienna Symphony OrchestraThe Vienna Festival OrchestraThe Vienna Simphony OrchestraThe Vienna State Opera OrchestraThe Vienna State Symphony OrchestraThe Vienna StringsThe Vienna Symphonic OrcestraThe Vienna Symphonic OrchestraThe Vienna Symphonic Society OrchestraThe Vienna SymphonyThe Vienna Symphony OrchestraThe Vienna Symphony OrchstraThe Vienna symphony orchestraThe Viennese Symphonic OrchestraThe Wiener Symphonic OrchestraThe Wiener SymphonikerThe Wienna Symphony OrchestraThe ‘Wiener Symphoniker’The “Wiener Symphoniker”Veliki Operski Orkestar I HorVenna Symphony OrchestraVidensti SymfonikoveViennaVienna New Symphony Orchestra, TheVienna Opera OrchestraVienna OrchestraVienna Philarmonic OrchestraVienna Philharmonia OrchestraVienna Philharmonic OrchestraVienna Pro MusicVienna Pro MusicaVienna SOVienna State Opera ChorusVienna State Opera OrchestraVienna State OrchestraVienna State Symphony OrchestraVienna Sym. Orch.Vienna SymphonicVienna Symphonic OrchestraVienna Symphonie OrchestraVienna SymphonyVienna Symphony (Pro Musica)Vienna Symphony Orch.Vienna Symphony OrchestraVienna Symphony Orchestra ('Wiener Symphoniker')Vienna Symphony Orchestra And ChorusVienna Symphony Orchestra „Wiener Symphoniker”Vienna Symphony Orchestra*Vienna Symphony Orchestra,Vienna Symphony Orchestra, TheVienna Symphony StringsVienna symphony OrchestraVienna symphony orchestraViennese Symphonic OrchestraViennese Symphonic Orchestra with SoloistsViennese SymphonistsViennese Symphony OrchestraViennese Symphony Orchestra,Vídenští SymfonikovéVídeňští SymfonikovéWeens Symfonie OrkestWeens Symphonie OrkestWeens SymphonieorkestWeiner Symphoniker OrchestraWiemar SymphonikerWien Symfoni-OrkesterWien SymfoniorkesterWienerWiener Konzerthaus OrchesterWiener SimphonikerWiener Simphoniker OrchesterWiener Sinfonie-OrchesterWiener SinfonikerWiener SoloistsWiener Staatsymphonie OrchesterWiener SymfonikerneWiener SymphWiener Symph.Wiener Symphon. OrchesterWiener Symphonic OrchesterWiener Symphonic OrchestraWiener Symphonie OrchesterWiener Symphonie OrchestraWiener Symphonie-OrchesterWiener SymphonieorchesterWiener SymphonikernWiener SymphonikerneWiener Symphonische OrchesterWiener Symphonisches Orch.Wiener Symphonisches OrchesterWiener Symphony OrchesterWiener Tonkünstler OrchesterWiener Tonkünstler-OrchesterWienersymfonikerneWienin SinfoniaorkesteriWienin SinfoniaorkesteriaWienin SinfonikotWienna Symphony OrchestraWiens SymfoniorkesterWiens Symfoniske OrkesterWinds And Percussion Of The Vienna Symphony OrchestraWr. Symphonie Orchesterorchestre Symphonique de ViennevIENNA sYMPHONY oRCHESTRAΣυμφωνική Ορχήστρα Της ΒιέννηςБольшой Симфонический Оркестр Венской ОперыВенский Cиmфонический ОркестрВенский Cимфонический ОркестрВенский Симфонический ОркестрВенский Филармонический ОркестрВенский симфонический оркестрОркестр Венских СимфониковОркестр Венской филармонииСимфонический Оркестр ВеныСимфонијски Оркестарウィーン・シンフォニー・オーケストラウィーン・ステート・オペラ・オーケストラ&ウィーン・アカデミー・コーラスウィーン交響楽団維也納交响樂團維也納交響樂團비엔나 심포니 오케스트라American Recording Society OrchestraGennadi RozhdestvenskyWalter SchulzKurt SchwertsikRobert TucciFlip PhilippPrimož ZalaznikVladimir FedoseyevThomas KakuskaHans SwarowskyFlorian ZwiauerKarl Heinz SchützMichael BuchmannMartin SieghartOtto FleischmannJürg SchaeftleinHermann SchoberEduard HruzaJosef De SordiKurt HammerKurt TheinerWalter PfeifferPeter SchoberwalterHelmut MitterLeopold StastnyKarl HöffingerRichard RudolfErich HöbarthJosef LehnfeldSiegfried FührlingerStefan PlottFriedrich MiksovskyErnst KnavaOskar RothensteinerMikis Michaelides (2)Günter PichlerKlaus MaetzlKarl KrumpöckHermann EbnerAndrew AckermanRobert Wolf (2)Hector McDonaldHerwig TacheziDieter SeilerKarl SteiningerPeter SpitzlFriedrich GablerAlois BrandhoferHorst KüblböckMichael DittrichAnton KamperHerbert WeissbergGünter ThomasbergerWerner FleischmannIvan DimitrovMichael BladererHans PöttlerRobert FreundPaul TrimmelAlfred RoséWolfgang OberkoglerPeter StepanekHelmut AscherlHermann RohrerKurt LetofskyKarl PilssLeo CermakErnst Hoffmann (2)Peter KattManfred TacheziErhard WetzerAdelheid MillerKentaroYoshiiArmin KaufmannClaire DolbyFerdinand SvatekFirmin PirkerHans BergerJan PospichalAlois SchlorMichael VladarJohannes FliederOtmar GaiswinklerFriedrich GeyerhoferGerhard BreuerFranzmichael FischerMaximilian DobrovichMartin LehnfeldHerbert WegrichtVladimir HaklikMartin KerschbaumWiener KammermusikerTomislav ŠestakPeter Schreiber (2)Richard MotzRoman BernhartChristian BlaslChristoph StradnerAndreas PokornyHeinrich BrucknerDorice KöstenbergerNicolas GeremusWolfgang TraunerWolfgang AichingerGyörgy BognarMichael SchnitzlerGottfried JusthWalter PflügerHelmut KinatederWerner BuchmannDetlev GrevesmühlMartin EdelmannStefanie GanschMaria GrünPaul RabeckAurora Irina Zodieru-LucaWalther SchulzJaroslav ObodaHans-Joachim TinnefeldSzékely AttilaGeorg SumpikMarcel DickErnst MühlbacherHermann EistererRudolf HuberPeter RoczekFriedrich WächterReinhard WieserKurt WeidenholzerMartin OrtnerLaszlo BarkiKurt MelzerElisabeth BayerKlaus SchaffererDaniele DamianoRichard StrablFranz MoschnerFritz HillerElmar EisnerChristian RoscheckGottfried MayerWolfgang KuttnerEdwin ProchartSiegfried KüblböckRichard GallerGerhard KanzianGerald PachingerAlexandra UhligSilvia CaredduErnst KobauGergely SugárJosef NiederhammerRichard KrotschakStefan PöchhackerVera ReigersbergAnton StrakaPatrick De RitisRudolf LindnerOskar MoserElena KodinRoxana DuraErnst WeissensteinerWolfgang PfistermüllerKarl Brugger (2)Martin KabasMariam Margaryan-PetkovaDalibor KarvayWilfried GottwaldEric KushnerWolfgang SchuchbaurHerbert StiglitzSiegfried BernsteinThorwald AlmassyRainer HornekPeter SiakalaHelmut Lackinger (2)Raphael LeoneEugen HodosiWalter SeitingerEberhard ZwölferWolfgang Kühn (3)Karl WirtherleWerner LillAndreas SohmManfred HeinelTimon HornigHermann KlugChristian BirnbaumUlrich SchönauerGeorg HaselböckFriedrich LetzHyewon LimHeinz GrünbergReinhard HofbauerMarkus ObmannChristian Schulz (9)Wolfgang Singer (2)Rainer KüblböckWalter VoglmayrDominika FalgerElżbieta SzymańskaErwin KlambauerMichael Vogt (7)Stefan AchenbachAnton SorokowLibor MeislAlexander NeubauerMartin RienerFranz Winkler (2)Karl TrötzmüllerNatalia BinkowskaPeter MarschatLeopold BuchmannFerdinand BreyerAlexander BurggasserGeorg SonnleitnerHans HanakWolfgang ZimmerlVolker KempfIvaylo IordanovZsófia MészárosBarbora ValečkováArmin Berger (3)Thomas MachtingerPeter DorfmayrRomed WieserMatthias HoneckNikolaus Singhania + +696227Adolf DallapozzaAustrian tenor, born 14 March 1940 in Bolzano, Italy.Needs Votehttp://en.wikipedia.org/wiki/Adolf_DallapozzaA. DallapozzaAdolfo DallapozzaAdolph DallapozzaDallapozzaDalla-PozzaAdolf Dallapozza und Ensemble + +696232Otto HarbachOtto Abels HauerbachAn American lyricist and librettist, known best for his work on musical comedies. Otto Harbach was born in Salt Lake City, Utah on August 18, 1873. He collaborated with many of the greatest American musical writers of the early 20th century, including [a=George Gershwin], [a=Jerome Kern], and [a=Oscar Hammerstein II]. He was a charter member of ASCAP and served as the organization's President from 1950-1953. Harbach died in New York City on January 24, 1963. + +Inducted into the Songwriter's Hall of Fame in 1970. +Needs Votehttp://en.wikipedia.org/wiki/Otto_Harbachhttps://www.songhall.org/profile/Otto_Harbachhttps://adp.library.ucsb.edu/names/108695A. HarbachArbachC. HarbockD. A. HarbachD. HarbachD. HarbackD.HarbachHabackHabrachHarachHarbachHarbach OttoHarbach, Otto A.HarbachsHarbackHarbarghHarbashHarbchHarbechHarbeckHarbockHarbuchHarbuckHarburgHardackHardbachtHarmachHarmsHarrachHartbachHauerbachHazbachHerbachHorbachHrabachL HarbachL. HarbachMarbachO HarbachO HarbarghO HauvachO. A. HarbachO. BarbachO. GarbachO. H. HarbachO. HaibachO. HarachO. HarbachO. HarbackO. HarbahO. HarbarghO. HarbashO. HarbcahO. HarbochO. HartbachO. HaubachO. HerbachO. HorbachO. HoubachO. MarbachO. WarbachO.A. HarbachO.HarbacKO.HarbachOtto A HarbachOtto A. HarbachOtto Abel HarbachOtto H. HarbachOtto Harbach IIOtto HarbackOtto HarbarchOtto HarbochOtto HarbokOtto HardbachOtto HauerbachOtto HerbachOtto MarbachOtto MarsachХарбах + +696236Ralf WeikertAustrian conductor, born 10 November 1940 in Sankt Florian, Austria. +Mozarteumorchester Salzburg conductor from 1981–1984.Needs Votehttps://en.wikipedia.org/wiki/Ralf_Weikerthttps://www.hilbert.de/en/artists/conductor/ralf-weikert/R.WeikertRalk WeikertDas Mozarteum Orchester Salzburg + +696237Fritz Löhner-BedaBedřich LöwyAustrian librettist and songwriter, born June 24, 1883 in Wildenschwert, Bohemia, Austria-Hungary (now Ústí nad Orlicí in the Czech Republic), died December 4, 1942 in Auschwitz, Upper Silesia, Germany (now Oświęcim in Poland). + +Born Bedřich Löwy in a small town in Bohemia, Löhner -Beda grew up in Vienna, where his family moved in 1888. In 1896, they officially changed their name to Löhner, and Bedřich became Friedrich. + +Löhner-Beda studied law at the University of Vienna, graduating with a Doctor of Law (Dr. iur.) degree in 1905. For a while, he worked as a lawyer in a Viennese law office. By 1910, however, he had turned to free-lance writing full-time, publishing satires, sketches, poems, and songs. Many appeared under the pseudonym Beda, the short form of his Czech first name, Bedřich. + +In 1910, Löhner-Beda also wrote the librettos for several popular operettas by [a=Leo Ascher]. In 1915, he and composer [a=Artur Marcell Werau] enjoyed success with a patriotic march couplet, "Rosa, wir fahr'n nach Lodz", that celebrates the contribution of the Austrian 30.5cm mortar, Rosa, to the Battle of Lodz. As "Theo, wir fahr'n nach Lodz" (with a revised text by [a=Klaus Munro]), the song became an international hit for [a=Vicky Leandros] in 1974. + +In the 1920s and 1930s, Löhner-Beda became one of the most popular writers of German Schlager. His many hits include "Ausgerechnet Bananen!" (the German lyrics for "Yes! We Have No Bananas") (1923), "Ich hab’ mein Herz in Heidelberg verloren" (1925, operetta 1927), "Drunt’ in der Lobau" (1930), "Oh, Donna Clara" (1930), and "Du schwarzer Zigeuner" (1931). + +As a librettist for operettas, Löhner-Beda became world-famous with "Das Land des Lächelns" (1929, music by Franz Lehár). Recorded by [a=Richard Tauber], two of the songs, "Immer nur Lächeln" and "Dein ist mein ganzes Herz", became international hits. Other collaborations with Lehár resulted in "Der Sterngucker" (1916), "Friederike" (1928), "Schön ist die Welt" (1930), and "Giuditta" (1934). + +For another series of hit operettas, Löhner-Beda collaborated with [a=Alfred Grünwald] and composer [a=Paul Abraham]: "Viktoria und ihr Husar" (1930), "Die Blume von Hawaii" (1931), "Ball im Savoy" (1932), and "Märchen im Grand-Hotel" (1934). + +As a prominent Jew, Löhner-Beda was arrested one or two days after Austria's [i]Anschluss[/i] with Germany in March 1938. He was imprisoned in a series of concentration camps, first at Dachau, then Buchenwald, where he and [a=Hermann Leopoldi] co-wrote the "Buchenwaldlied" (1938). In October 1942, he was transported to the Auschwitz death camp in German-occupied Poland where he was forced to work in the IG Farben's Buna-Werk. When IG Farben directors complained at an inspection that he wasn't working hard enough, a Kapo beat him to death on December 4, 1942.Needs Votehttp://www.virtualvienna.net/jewish_vienna/modules.php?name=News&file=article&sid=12http://holocaustmusic.ort.org/places/camps/central-europe/buchenwald/lhner-bedafritz/https://www.operetten-lexikon.info/?menu=205&lang=1https://de.wikipedia.org/wiki/Fritz_L%C3%B6hner-Bedahttps://www.buchenwald.de/geschichte/biografien/ltg-ausstellung/fritz-loehner-bedahttps://adp.library.ucsb.edu/names/103764B.B. F. LoehnerB. F. LöhnerB. LoehnerBed LoehnerBedaBeda - LöhnerBeda / Fritz LöhnerBeda / LohnerBeda Fritz LoehnerBeda Fritz LöhnerBeda LoehnerBeda LohnerBeda LöhnerBeda, LöhnerBeda, LöhnerBeda-LöhnerBeda/LöhnerBedarBederBendaBetaBredaBédaDr. F. BedaDr. F. Löhner-BedaDr. Fr. Löhner-BedaDr. Fritz BedaDr. Fritz LöhnerDr. Fritz Löhner-BedaDr. LohnerDr. LöhnerDr. Löhner-BedaE. Partos Loehner Y BedaF. BedaF. Beda - LöhnerF. Beda/F. LoehnerF. L. BedaF. LehhnerF. LehnerF. LeohnerF. LoehnerF. Loehner BedaF. LohnerF. Löehner-BedaF. Löhmer-BedaF. LöhneF. LöhnerF. Löhner, BedaF. Löhner-BedaF. Löhner/BedaF. LøhnerF. LühnerF. R. Beda LöhnerF.LöhnerF.Löhner-BedaFirtz LoehnerFr. LöhnerFr. Löhner-BedaFriedrich Löhner-BedaFritzFritz BedaFritz Beda LöhnerFritz Beda-LöhnerFritz LoehhnerFritz LoehnerFritz Loehner-BedaFritz LohmerFritz LohnerFritz Lohner BedaFritz Lohner-BedaFritz Löhne-BedaFritz LöhnerFriz LöhnerL. FritzLernerLerner-BedaLoehnerLoehner FritzLoehner-BedaLoehner-Beda, FritzLohmer, BedaLohnerLohner-BedaLonherLöbnerLöherLöhmerLöhnerLöhner - BedaLöhner / BedaLöhner BedaLöhner BeldaLöhner, BedaLöhner, F.Löhner, FritzLöhner-BedaLöhner-Beda, FritzLöhner-BredaLöhner-SteinLöhner/BedaLöhnertLöhnert, F.LönerP. BedaRetaV. BedaVon Bedav. Bedavon Bedavon Bredavon bedaУль-Беда + +696238Willi BoskovskyWilli BoskovskyAustrian violinist and conductor. + +He was born 16 June 1909 in Vienna, Austria and died 21 April 1991 in Visp, Switzerland. +Needs Votehttp://en.wikipedia.org/wiki/Willi_Boskovskyhttp://de.wikipedia.org/wiki/Willi_BoskovskyBilly BoskovskyBoskovskiBoskovskyBroskowskiProf. Willi BoskovskyProf. Willy BoskovskyVili BoskovskiW. BoskovskyW. BoskowskyWill BoskovskyWilli BoshovskyWilli BoskovksyWilli BoskovskiWilli BoskowskiWilli BoskowskyWilli BroskovskyWillie BoskovskyWilly BoskovskyWilly BoskowskiWilly BoskowskyWilly BosovskyВилли БосковскиВилли Босковскийウィリー・ボスコフスキーOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Philharmonisches StreichquartettThe Boskovsky EnsembleWiener OktettSolistenensemble Der Wiener StaatsoperThe Boskovsky Quintette + +696240Luigi IllicaLuigi IllicaItalian essayist, playwright, and prolific librettist for various composers. Born 9 May 1857 in Castell'Arquato (near Piacenza), Emilia-Romagna, Italy - Died 16 December 1919 in Colombarone (near Pesaro), Marche, Italy. +He is best known for his collaborations with [a=Giacomo Puccini]. Needs Votehttps://www.youtube.com/channel/UCA6Z7LpTNzdGae_9e4OiOhA/abouthttps://open.spotify.com/artist/73CDXEQrq6gMXKV9CiBm4Ghttps://music.apple.com/us/artist/luigi-illica/5164288http://en.wikipedia.org/wiki/Luigi_Illicahttps://www.encyclopedia.com/arts/educational-magazines/illica-luigi-1857-1919http://www.roh.org.uk/people/luigi-illicahttps://www.geni.com/people/Luigi-Illica/6000000156418832835https://www.astro.com/astro-databank/Illica,_Luigihttps://www.imdb.com/name/nm0407794/https://adp.library.ucsb.edu/names/102754& Luigi Illica. IllicaGiacosaI. LuigiIlicaIlliIllicaIllica & GiacosaIlliceJllicaL. I.L. IllicaL.IllicaLuigi EllecaLuigi IlicaLuigiti IllicaЛ. ИлликаЛ. Иллики + +696242Eugène ScribeAugustin Eugène ScribeFrench dramatist and librettist. Born 24 December 1791 in Paris, France and died 20 February 1861 in Paris, France.Needs VoteEnglish: http://en.wikipedia.org/wiki/Eug%C3%A8ne_ScribeFrench: http://fr.wikipedia.org/wiki/Eug%C3%A8ne_Scribehttps://adp.library.ucsb.edu/names/102276& ScribeA. E. ScribeAugustin Eugène ScribeAugustin-Eugene ScribeE. ScribeEugen ScribeEugene ScribeM. ScribeScibeScribeScribe &Э. СкрибаЭ.Скриб + +696247Richard GenéeFranz Friedrich Richard GenéePrussian born Austrian librettist, playwright and composer, he co-wrote the libretto to [a=Johann Strauss Jr.]'s operetta "Die Fledermaus". +Born February 7, 1823 in Danzig, Pomerania, Germany (now Gdansk, Pomorskie, Poland). +Died June 15, 1895 in Baden, Lower Austria, Austria.Needs Votehttp://en.wikipedia.org/wiki/Richard_Gen%C3%A9ehttps://adp.library.ucsb.edu/names/102910GeneGeneeGeneéGenèeGenéGenéeR. GeneeR. GeneéR. GenéR. GenéeR. GéneeR. ŽeneR.GenéeR.ゲネRich. GenéeRichard GeneeRichard Genée, after Meilhac & HalévyР. Жене + +696253Francisco AraizaMexican operatic tenor, born 4 October 1950 in Mexico City.Correcthttp://www.francisco-araiza.ch/AraizaF. AraizaF.AraizaФрансиско АраисаФрансиско Арайса + +696256Hans MoltkauGerman conductor and composer, born 30 July 1911 Magdeburg, Germany and died 24 May 1994 in Rottach-Egern, Germany.CorrectH. MoltkauHans MolthauMoltkauHans Moltkau Orchestra + +696260James Levine (2)James Lawrence LevineAmerican conductor and classical pianist. +[a1411686] Music Director (1973-2016), then Music Director Emeritus (2016-2017), [a261451] Music Director (1999-2004) and [a395913] Music Director (2004-2011). + +Born June 23, 1943 Cincinnati, Ohio, USA. +Died March 9, 2021 Palm Springs, California, USA (aged 77).Needs Votehttps://en.wikipedia.org/wiki/James_Levinehttps://www.kennedy-center.org/artists/l/la-ln/james-levine/https://www.metopera.org/user-information/memorial/james-levine/https://web.archive.org/web/20031009102859/https://www.sonyclassical.com/artists/levine/https://www.arts.gov/honors/opera/james-levinehttps://www.imdb.com/name/nm0505824/J. LevineJ. LévineJames LevinJames LevineJames S. LevineLevindLevineДжеймс ЛевайнДжеймс Левинジェイムス・レヴァインジェイムズ・レヴァインジェームズ・レヴァインMünchner PhilharmonikerBoston Symphony OrchestraThe Metropolitan Opera House OrchestraThe Cleveland Piano Trio + +696264Carl MillöckerCarl Joseph MillöckerAustrian composer of operettas and conductor, born 29 April 1842, in Vienna, died 31 December 1899 in Baden, Austria.Needs Votehttps://adp.library.ucsb.edu/names/103544https://en.wikipedia.org/wiki/Carl_MillöckerC. MillockerC. MilloeckerC. MillöckerC. MilöckerC.MillöckerCarl MillockerCarl MilloeckerCarl Millöcker Mit KlavierCarl MillöckersK. MiliokerisK. MillöckerKarl MillockerKarl MilloeckerKarl MillöckerKarl MiloeckerMackebenMillockerMilloeckerMillröckerMillöcherMillöckerMillökerMilöckerMinockerNillockerК. МиллекерК. МиллёкерМиллекерМиллекеръ + +696267Symphonie-Orchester GraunkeGerman symphony orchestra founded in 1945 by [a1234289] and led by him until 1989, it was then renamed to [a898459]. + +The orchestra may have been founded as [a4385090], as the earlier releases with Graunke as conductor are credited to this orchestra.Needs Votehttps://adp.library.ucsb.edu/names/326030Bavaria Symphonie-Orchester, MünchenBavarian Symphony OrchestraDAs Symphonie-Orchester GraunkeDas Orchester GraunkeDas Orchester Kurt GraunkeDas Sinfonie-Orchester GraunkeDas Sinfonie-Orchester Kurt GraunkeDas Symphonie Orchester GraunkeDas Symphonie-Orch. GraunkeDas Symphonie-Orchester GraunkeDas Symphonie-Orchester Kurt GraunkeDas Symphonie-Orchestra GraunkeDas Symphonieorchester GraunkeDas Symphonieorchester Kurt GraunkeDas Symphonieorchester Kurt Graunke, MunchenDas Symphonieorchester Kurt Graunke, MünchenDie Musiker Des Symphonie-Orchesters GraunkeDie Solisten Des Symphonie-Orchesters GraunkeFilmorchester K. GraunkeFilmorchester Kurt GraunkeGraunkeGraunke OrchestraGraunke Symphonie OrchesterGraunke Symphony OrchestraGraunke Symphony Orchestra (Munich)Graunke-OrchesterGraunke-SinfoniaorkesteriGraunke-Symphony OrchestraGraunken Sinfoniaork.Große Sreicherbesetzung Des Symphonieorchesters GraunkeGroßes OperettenorchesterHet Radio- En T.V. Orkest Kurt GraunkeKurt GraunkeKurt Graunke Mit Seinem SymphonieorchesterKurt Graunke Symphony OrchestraKurt Graunke Und Sein OrchesterKurt Graunke With His Symphony OrchestraKurt-Graunke-Sinfonie-OrchesterKör Och Symphonie-Orchester GraunkeL'Orchestre Symphonique GraunkeMembers Of The Graunke Symphony OrchestraMitglieder Des Orchesters K. GraunkeMitglieder Des Orchesters Kurt GraunkeMitglieder Des Symphonie-Orchesters GraunkeMitglieder Des Symphonieorchester GraunkeMitglieder Des Symphonieorchesters GraunkeMitglieder des Symphonie-Orchester GraunkeMitglieder des Symphonie-Orchesters GraunkeMusiker Des Symphonie-Orchesters GraunkeMünchner Sternsinger Orchester Kurt GraunkeOrchesterOrchester GraunkeOrchester Kurt GraunkeOrchester Kurt GraumkeOrchester Kurt GraunckeOrchester Kurt GraunkeOrchestra Kurt GraunkeOrchestra Simfonică GraunkeOrchestra simfonică GraunkeOrchestra simfonică „Graunke” din MünchenOrchestra: Kurt GraunkeOrchestralOrchestre Symphonique GraunkeOrkestar Kurt GraunkeOrquesta Sinfónica GraunkeOrquesta Sinfónica Graunke De MunichOrquesta Sinfónica de Camara GraunkeOrquestra Sinfonica GraunkeOrquestra Sinfônica Graunke De MuniqueSimfonijski Orkestar GraunkeSinf. Orch. GraunkeSinf.-Orchester GraunkeSinfonic-Orchester Graunke, MunichSinfonie Orchester GraunkeSinfonie Orchester Graunke MunichSinfonie Orchester Kurt GraunkeSinfonie Orchestra Graunke MunichSinfonie-Orchester GraunkeSinfonie-Orchester Graunke, MunichSinfonie-Orchester Kurt GraunkeSinfonieorchester GraunkeSinfonieorchester Kurt GraunkeSinphonie Orchester GraunkeSinphonieorchester GraunkeSolisten Des Symphonie Orchesters GraunkeStreichergruppe Kurt GraunkeSymfonie Orkest GraunkeSymph. Orch. GraunkeSymph.-Orch. GraunkeSymphonie Orch. GraunkeSymphonie Orchester GraukeSymphonie Orchester GraunkeSymphonie Orchester Graunke MunichSymphonie Orchestra GraunkeSymphonie-Orchester Kurt GraunkeSymphonie-Orchester Kurt Graunke, MünchenSymphonie-Orchester-GraunkeSymphonieorchester GraunkeSymphonieorchester Kurt GraunkeSymphonieorchester Kurt Graunke, MünchenSymphony Orchester GraunkeSymphony OrchestraSymphony Orchestra Graunche Of MunichSymphony Orchestra GraunkeSymphony Orchestra Graunke Of MunichSymphony Orchestra Graunke, TheSymphony-Orchester GraunkeSymphony-Orchestra GraunkeThe Grand Film OrchestraThe Granke Symphony OrchestraThe Graunke Orchestra Of MunichThe Graunke Orchestra, MunichThe Graunke Symphony OrchestraThe Graunke Symphony Orchestra (Munich)The Graunke Symphony Orchestra Of MunichThe Symphonic Orchestra Graunke Of MunichThe Symphonie Orchester GraunkeThe Symphonie-Orchester GraunkeThe Symphony Orchestra Graunke Of MunichСимфонический Оркестр ГраункеСимфонијски Оркестар ГраункеKurt GraunkeWalter Schwarz (6)The String Quartet From The Graunke Orchestra Of Munich + +696861William JohnsonWilliam Luther JohnsonAmerican alto saxophonist, clarinetist, arranger and songwriter, also known as Bill Johnson. Born September 30, 1912 in Jacksonville, Florida; died July 5, 1960 in New York, USA. Johnson played with [a=Erskine Hawkins], [a=Jabbo Smith], Baron Lee and [a=Tiny Bradshaw]. Also known for writing Tuxedo Junction with Hawkins. He left Hawkins' band in 1943, and founded [a=Bill Johnson & His Musical Notes] in the mid 1940s. +[b]Do NOT confuse with[/b] trumpeter [a=Bobby Johnson (27)] who also played in [a=Erskine Hawkins And His Orchestra] or trombonist [a=Bill Johnson] of [a=Count Basie Orchestra]. +For the gospel songwriter, see [a=William Johnson (20)]. +Needs Votehttps://adp.library.ucsb.edu/names/113646https://en.wikipedia.org/wiki/Bill_Johnson_(reed_player)B. JohnsonBill JohnsonJ. WilliamJohnsonJohnson, WilliamJohnsonnJohnssonJohnstonJohsonJonsonShonionV. DžonsonasW, JohnsonW. JohnsohnW. JohnsonW.JohnsonW.M. JohnsonWM. JohnsonWilliam "Bill" JohnsonWilliam JohnsohnWilliam JohnssonWilliam Luther JohnsonWilliams "Bill" JohnsonWm. JohnsonУ. ДжонсонErskine Hawkins And His OrchestraBill Johnson & His Musical NotesErskine Hawkins And His 'Bama State CollegiansBill Johnson & His Stir CatsThe Bill Johnson QuintetBill Johnson Orchestra + +697091Andrew WiddopCorrectWidWid & Ben + +697344Åshild Breie NyhusNorwegian viola player, born 27 January 1975 in Oslo, Norway.Needs VoteAshild Breie NyhusÅÅshild B. NyhusÅshild NyhusOslo Filharmoniske OrkesterSven Nyhus KvintettSven Nyhus Sekstett + +697562Jim BootheJames Ross BootheAmerican songwriter of 'Jingle Bell Rock', born 14 May 1917 in Sweetwater, Texas, USA, died 30 December 1976 in New York City, New York, USA.CorrectBoctheBoothBootheBootherJ R BootheJ. BooteJ. BoothJ. BootheJ. BootherJ. BotheJ. BrotheJ. R. BootheJ. Ross BootheJ.BootheJ.R BootheJ.R. BootheJames BoothJames BootheJames BothJames R. BoothJames R. BootheJames Roos BootheJames Ross BoothJames Ross BootheJames Ross-BootheJames Roth BootheJim BoothJim Boothsjames ross boothe + +697563Henry OnoratiHenry V. OnoratiAmerican composer and writer, co-wrote, with [a=Harry Simeone] & [a=Katherine K. Davis] the classic 'The Little Drummer Boy'. Onorati was also a music executive. +Born January 25, 1912 in Pennsylvania, USA. +Died March 2, 1993 in Boca Raton, Florida, USA. +Davis composed, Onorati wrote the lyrics and Simeone added the title to "The Little Drummer Boy". +In 1958, Onorati became head of the [l161616] label.Needs Votehttps://www.imdb.com/name/nm0648838/A. OnoratiAnarateDavid OnoratiDuoratiH OnoratiH. AnoratiH. HonoratiH. OnaratiH. OnartiH. OndratiH. OneattH. OneratiH. OnerattH. OnoatiH. OnorateH. OnoratiH. OnorattieH. OnratiH. OrnatiH. OronatiH. V. OnoratiH. VincentH.OnaratiH.OneratiH.OnoratiH.V. OnoratiHV OnaratiHarry MoratiHarry OnaratiHarry OnarteHarry OnoratiHenri OnoratiHenryHenry OnaratiHenry OnartiHenry OneratiHenry OnoratioHenry OnoratoHenry OnorattiHenry OnorattieHenry OnoratyHenry OnorayiHenry OnorratiHenry OronatiHenry V OnoratiHenry V, OnoratiHenry V. OnoratiHenry V. OronatiHonoratiJ. OnoratiMoratiOnaratiOnartiOncratiOndratiOndriatiOneratiOnerattOniratiOnoartiOnohrOnorOnorapiOnoratOnorateOnoratiOnorati H.V.Onorati HenryOnorati, HenryOnorati, Henry V.OnoratieOnoratioOnoratisOnorattOnorattiOnorlanOnovatiOonaratiOratiOrnoratiOronatiOroratOuvratiP. Onorati + +697938Timo LindströmTimo LindströmFinnish musician and producer who also worked in many record companies. Born on March 14, 1948 in Helsinki, Finland and died on August 12, 2022. Needs VoteMr. LindströmTimppaTimppa LindströmThe Esquires (2)The Islanders (5)Jim Pembroke & The Pems + +698031Kauko KäyhköKauko KäyhköFinnish singer, musician and actor, born April 15, 1916 in St. Petersburg, Russia; died April 8, 1983 in Espoo, Finland. +Husband of [a3893148]. + +He used several pseudonyms: Eräs Erkki, Vanhempi; Justeeri, Kake, Karri K., Kirsi K., Peacock Paul, Pöllö, Raikko R. (also used by Elbe Häkkinen), Vanha-Vaari. + +Needs VoteK. KäyhköK.KäyhköKauko K.Kavo KäyhköKayhkoKäuko KayhköKäyhköKäyhkö KaukoK. KirsiJusteeriK. RaikkoErkki EräsPeacock PaulKarri K.Vanha VaariKipparikvartettiDallapéKippari KvintettiKauko Käyhkö Ja MieskvartettiKauko Käyhkö Ja Orkesteri + +698040Georg MalmsténGeorg MalmsténGeorg Malmstén was a very popular Finnish singer, conductor, musician and composer, born June 27, 1902 in Helsinki, Finland; died May 25, 1981 in Helsinki, Finland. + +Malmstén's first recording came out in 1929, and during his career he made the total of 842 recordings. He recorded and composed songs of different styles, including music for films and children. Like many other Finnish songwriters, he also had several pseudonyms, such as Jori-Setä, Jorkka, Kille Kiljunen, Jori Malmsten ja Matti Reima. + +Beside his musical career, he also starred in several films, and also directed one, called "Pikku Myyjätär". + +His brother [a=Eugen Malmstén], his sister [a=Greta Pitkänen] and his daughter [a=Ragni Malmstén] were also popular artists. +Needs Votehttps://adp.library.ucsb.edu/names/355443AgeG MalmstenG MalmsténG, MalmsténG. MaimsténG. MalmetsG. MalmstenG. MalmstènG. MalmsténG.MalmstenG.MalmstènG.MalmsténGeorgGeorg MalmsteenGeorg MalmstenGeorg MalmstènGeorg Malmstén (Matti Reima)Georg MalstenGeorge MalmstenGeorge MalmsténGeorge MalmstënGerog MalmstenJ. MalmstenJ. MalmsténJori MalmstenMalmstenMalmsten GeorgMalmsten, GeorgMalmsténMatti Reima (Georg Malmstén)Г. МалмстенMatti ReimaJori-SetäJorkkaKille KiljunenGeorg Malmstén Ja LapsikuoroJori-Setä Ja LapsetGeorg Malmstén Ja Orkesteri + +698042Henry TheelHenry TheelBorn November 14th, 1917 in Helsinki, Finland. +Died December 19th, 1989 in Helsinki, Finland. + +A Finnish schlager singer who was very famous in the late 1940s and continued his career until the late 1980s. +Needs VoteH. TheelHeikki HoviHenry Theel Ja Laulu-trio + +698043Jorma IkävalkoJorma IkävalkoJorma Ikävalko (1918-1987) was a Finnish actor, comedian and singer.CorrectIkävalkoJ. IkävalkoJ.Ikävalko + +698076Eddie Brown (3)Jazz bassistNeeds VoteErroll Garner Trio + +698077George De HartJazz drummerNeeds VoteG. HartGeorge DeHartGeorge DehartGeorge de HartErroll Garner TrioThe Bill Jennings - Leo Parker Quintet + +698563Frank Slay Jnr.Frank Conley Slay Jr.American songwriter, A&R director, record producer and record label owner. + +Born: July 8, 1930 in Dallas, Texas +Died: September 30, 2017 in San Diego, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Frank_Slayhttps://adp.library.ucsb.edu/names/352584BlayF, C. Slay, JrF. C. ClayF. C. SlayF. C. Slay Jnr.F. C. Slay Jr.F. C. Slay, JrF. C. Slay, Jr.F. C. SlyF. C. jun. SlayF. Salay Jr.F. ScayF. ShayF. SlayF. Slay Jnr.F. Slay JrF. Slay Jr.F. Slay, Jr.F. StayF.C. LayF.C. SlayF.C. Slay JrF.C. Slay Jr.F.C. Slay,Jr.F.C.SlayF.C.Slay.Jr.F.SlayFlayFranck C. Slam Jr.Franck C. SlayFranck SlayFrand Slay Jr.Frand Slay, Jr.Frank C Slay Jr.Frank C Slay, Jr.Frank C. Jr SlayFrank C. Jr. SlayFrank C. Jun. SlayFrank C. Salay Jr.Frank C. SalyFrank C. Saly J:rFrank C. Saly Jnr.Frank C. SlayFrank C. Slay JnrFrank C. Slay Jnr.Frank C. Slay JrFrank C. Slay Jr.Frank C. Slay jrFrank C. Slay, Jnr.Frank C. Slay, JrFrank C. Slay, Jr.Frank G. Slay Jr.Frank JnrFrank Jr. - SlytFrank S. SlayFrank Slag Jr.Frank Slag jr.Frank SlayFrank Slay JnrFrank Slay JrFrank Slay Jr.Frank Slay, Jr.Frank SloyFrank StayFrank Stay,Jr.ShaySlaaySlam-Jr.SlarySlaySlay J:rSlay JnrSlay Jnr.Slay JrSlay Jr.Slay jr.Slay, Inr.Slay, Jr.Slay, jr.Slay,JnrSlay/CreweSlyStayFrank Slay And His OrchestraFrank Slay, His Orchestra And ChorusFrank Slay & His "New Orleans Band"Slay & Crewe + +698921Richard GerminaroSongwriter, arranger, art director, designer (design concept) and photographer. San Diego, California. + +Also see [l=Germinaro Associates].Correcthttps://www.facebook.com/RGerminaro/https://www.linkedin.com/in/richie-germinaro-87451a8/es-es?trk=people-guest_people_search-cardhttps://web.archive.org/web/20160203014057/http://www.logo-doctor.net/GerminarioGerminaroR. GeminaroR. GermanaroR. GerminaroRichard GarminaroRichard GermanaroRichard Germinario + +699197Roger Wolfe KahnRoger Wolff KahnAmerican jazz and popular musician, composer, and bandleader. +Born October 19, 1907, Morristown, New Jersey, USA. +Died July 12, 1962, New York City, New York, USA. +Married to actress/singer [a2753808] (1931-1933, divorce) and nephew of [a1731750]. +He could play eighteen instruments but was best known for the saxophone, violin, drums, piano and banjo. +In 1923, his father, Otto Kahn, a wealthy multi-millionaire banker, indulged his son’s passion for music and bought the Arthur Lange Orchestra. His son then became the conductor of it. By the time he reached nineteen, he had eleven orchestras that played in resorts and hotels from Newport, Rhode Island to Florida. In the mid-1930s he gave up his orchestra and became a test pilot for Grumman Aviation. He tested many of the fighter planes used by American fliers in World War II.Needs Votehttp://en.wikipedia.org/wiki/Roger_Wolfe_Kahnhttps://www.imdb.com/name/nm0434914/https://adp.library.ucsb.edu/names/111150CahnCohnG. KahnHahnKahanKahnKahn-R. WolfKalmKhanR KahnR. CahnR. KahmR. KahnR. N. KahnR. W. KahnR. W. KalmR. W. KhanR. WolfeR. Wolfe KahnR. Wolfe KaknR. WolfekahnR.KahnR.W. KahnR.W.KahnRahnRoger KahnRoger W. KahnRoger Wolf KahnRoger WolfeRoger Wolfe RahnRoger WolfekahnRoger Wolff KahnRoger Wolff KhanW. CahnW. KahnWolfeWolfe KahnWolfe-KahnВольфе-КанР.КанRoger Wolfe Kahn And His Orchestra + +699201Wilbur SchwandtWilbur Clyde SchwandtAmerican songwriter. +Born in Manitowoc, Wisconsin, USA, on June 28, 1904, died in Miami, Florida, USA, on July 23, 1998. +Most notably as co-author of 'Dream A Little Dream Of Me'.Needs Votehttps://en.wikipedia.org/wiki/Wilbur_Schwandthttp://www.imdb.com/name/nm1062914/bio?ref_=nm_ov_bio_smhttps://adp.library.ucsb.edu/names/108358E. SchwandtE. SchwantN. SchwandtSahwandtSchawandtSchwaandt, WilburSchwanSchwandtSchwannSchwantSchwardtSchwartSchwendtSchwndtSchwondtSehwantSwandtW SchwandtW. SchandtW. SchewendtW. SchuantW. SchwandtW. SchwantW. SchwardtW. SchwartW. SchwartzW. SchwendtW. SwhwandtW.SchwandtW.SchwantW.SchwendtWalter SchwandtWalter SchwantWilber SchwandtWilbour SchwandtWilbur Clyde SchwandtWilbur SchandtWilbur SchwantWilbur SchwardtWilbur SchwendtWilbur ScwandtWilbur ShawanotWilbure SchwandtWilly SchwandtВ. Швантווילבור שוונדטשוואנדטשוונדטDon SwanDon Swan And His Orchestra + +699205Fabian AndreFabian AndreAmerican composer, songwriter, conductor and arranger. +Born 8 January 1910 in La Crosse, Wisconsin, USA and died 30 March 1960 in Mexico City, Mexico. +Most notably as co-author of 'Dream A Little Dream Of Me'. +Needs Votehttp://www.imdb.com/name/nm0028144/?ref_=nmbio_bio_nmhttps://en.wikipedia.org/wiki/Fabian_Andrehttps://adp.library.ucsb.edu/names/111405A. FabianAndraeAndreAndre FabianAndre, FabianAndreaAndreeAndree FabianAndresAndres FabianAndrewAndréAndré FabianAndréeAudreeF AndreF AndreeF. AndréF. AdreF. AndreF. AndreeF. AndresF. AndréF. AndréeF. AudreeF.AndreF.AndreeF.AndremFabian AndreeFabian AndrèFabian AndréFabien AndreFabin AndreFandreeFavian AndreFerry AndreeP. AndreP. AndreeФ. Андреאנדרהאנדרייפביאן אנדרהFabian Andre And His OrchestraFabian Andre Octet + +699210Fred E. AhlertFrederick Emil AhlertAmerican composer and songwriter (19 September 1892 in New York City, NY, USA – 20 October 1953 in New York City, NY, USA). + +His sons were [a=Richard Ahlert], [a=Arnold Ahlert], and Frederick Emil Ahlert, Jr. + +Ahlert most frequently collaborated with lyricist [a=Roy Turk], but he also wrote with others including [a=Joe Young (3)] and [a=Edgar Leslie]. +His songs have been recorded by numerous artists, including [a=Louis Armstrong], [a=Nat King Cole], [a=Ella Fitzgerald], [a=Frank Sinatra], and [a=Fats Waller]. + +Inducted into Songwriters Hall of Fame in 1970. +Needs Votehttp://www.fredahlertmusic.com/http://www.songwritershalloffame.org/exhibits/C34http://www.allmusic.com/artist/fred-e-ahlert-p50719http://www.naxos.com/person/Fred_Ahlert/20101.htmhttp://www.imdb.com/name/nm0013997/http://en.wikipedia.org/wiki/Fred_Ahlerthttps://www.ascap.com/repertory#ace/writer/298325/AHLERT%20FRED%20Ehttps://adp.library.ucsb.edu/names/109784AhertAhlectAhleilAhlerAhlerdtAhlertAhlert FredAhlert, F.AhlettAhlretAhqertAlbertAlertAlheitAlherAlhertArcherD. AhlertE. AhlertE. AhlertE. AlhertEhlertF AhlertF E AhlertF. AhlerF. AhlersF. AhlertF. AhlredF. AlbertF. AlhertF. ArlhertF. E. AhlertF. E. AlbertF. E. AlertF. E. AlhertF.. AhlertF.AhlertF.E. AhlerF.E. AhlertF.E. AlbertF.E. AlhertF.E.AhlertF.E.ArlertFE AhlertFr. AhlertFr. E. AhlertFrank AhlertFred AhlertFred A AhlertFred A. AhlertFred AhleertFred AhlenFred AhlerFred AhlerdFred AhlertFred AlertFred AlhertFred E AhlertFred E. AhlfeltFred E. AhmertFred E. AibertFred E. AlhertFred E. AllertsFred E.AhlertFred EhlertFred H. AhlertFred H. AlertFred. AhlertFreddie E. AhlertHallertJ. AhlertLertR. AhlertRoy AhlertTurk AhlertАлертФ. АлертФ. Аллерт + +699322Léo PollLeib Polnareff (Лейб Польнарев)Songwriter born in 1899 in Odessa (Ukraine). Died in Créteil (France) at 29 november 1988. +Father of [url=http://www.discogs.com/artist/Michel+Polnareff]Michel Polnareff[/url]. +Needs Votehttp://fr.wikipedia.org/wiki/L%C3%A9o_PollL. PollL. PollL. PolnareffL. PòllL. PöllL.PollLeo PolLeo PollLeo PolnafeffLeopolLéo FollLéo PaulLéo PolLéo PoliLéo PolnareffLéo-PollLéopollPolPollPolnareffLéo Poll Et Son Orchestre + +699327Maurice VandairMaurice VanderhaeghenFrench songwriter and composer. +Born: 4th june 1905 in Tournan-en-Brie, France +Died: 5th december 1982 in Marseille, France + +[b]Please don't mix up with jazz pianist [a280724].[/b] +Needs Votehttps://adp.library.ucsb.edu/names/102831M VandairM. VandairM. Van DairM. VanclairM. VandairM. VanderM. VandiarM. VandoirM. VaudairM. VendainM. WandairM.VandairM.VaudairMaurice Van DairMaurice VandauMichel VandairVaderhaeghenVaindarVanclairVandairVandair MauriceVandaireVanderVaudairVendairVendèreVraskffМ. ВондерМ. ВонцерMaurice Vanderhaeghen + +699733Etienne LarratClassical cellistNeeds VoteOrchestre De Chambre De Toulouse + +699734Vincent GervaisClassical violistNeeds VoteOrchestre De Chambre De Toulouse + +699735Patrick LapèneClassical violinistNeeds VotePatrick LapeneOrchestre De Chambre De Toulouse + +699791Tommy Brown (3)Thomas Francis BrownBritish session drummer and composer/arranger. +Born February 21, 1940 in London and died July 19, 1978. +In the 60s he worked in France with [a=Mick Jones (2)] (from [a=Foreigner]).Needs VoteBrowBrownBrown T.BrowneR. BrownT BrownT- BrownT. BrownT. BowmT. BrownT. Tommy BrownT.BowmT.BrownTH. BrownTeddy BrawnTerry BrownTh. BrownThomas BrownThomas F. BrowneThomas Francis BrownTommieTommie BrownTommie BrowneTommyTommy BrownTomy BrownThomas F. BrowneNimrod (5)Nero And The GladiatorsThe BlackburdsThe J. & B.State Of Micky & Tommy + +700438Raul CitaRaoul J. CitaUS vocalist, songwriter +Born 11 February, 1928, Newark, NJ, United States - Died 13 December, 2014Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=63637&subid=0CedarCetaCitaR CitaR. CitaR. J. CitaR.J. CitaRaoul - J. CitaRaoul CitaRaoul J. CitaRaul J. CitaRoaul CitaRoual CitaRoual J. CitaRoul J. CitaThe HarptonesRoy And Gloria + +700443The King's College Choir Of CambridgeThe Choir Of King's College, CambridgeCreated by King Henry VI, who founded King's College, Cambridge, in 1441, to provide daily singing in his Chapel, which remains the main task of the choir to this day.Needs Votehttps://www.kings.cam.ac.uk/choir/https://x.com/ChoirOfKingsCamhttps://en.wikipedia.org/wiki/Choir_of_King%27s_College,_CambridgeBoys Of King's College Choir, CambridgeBoys Of King’S College ChoirBoys Of The King's College Choir Of CambridgeCambridge King's College ChoirChoeur Du King's College De CambridgeChoeur Du King's College de CambridgeChoeur Du King's College, CambridgeChoeur du King's College de CambridgeChoir Of King's College, CambridgeChoir Des King's College, CambridgeChoir King's College, CambridgeChoir OF King's College, CambridgeChoir Of King's College, CambridgeChoir Of King's CollegeChoir Of King's College CambridgeChoir Of King's College Chapel, CambridgeChoir Of King's College Choir, CambridgeChoir Of King's College, CambridgeChoir Of King's College, Cambridge UniversityChoir Of King's College, Cambridge.Choir Of King's College, CamebridgeChoir Of King's College,CambridgeChoir Of Kings College CambridgeChoir Of Kings College, CambridgeChoir Of Kings College, CambrigdeChoir Of Kings' College, CambridgeChoir Of Kings's College CambridgeChoir Of King’s College CambridgeChoir Of King’s College, CambridgeChoir Of Kong's College, CambridgeChoir Of The King's College, CambridgeChoir Of The Kings College, CambridgeChoir of King's College CambridgeChoir of King's CollegeChoir of King's College CambridgeChoir of King's College, CambridgeChoir of Kings College, CambridgeChoir of King’s College Choir, CambridgeChoirs Of King's College, CambridgeChor Des King's College, CambridgeChœur Du "King's College, Cambridge"Chœur Du King's Colledge CambridgeChœur Du King's College De CambridgeChœur Du King's College, CambridgeChœurs Du King's CollegeChœurs Du King's College CambridgeChœurs Du King's College De CambridgeCollegium RegaleCoro Del King's College (Cambridge)Coro Del King's College CambridgeCoro Del King's College De CambridgeCoro Del King's College, CambridgeCoro Del king's College, CambridgeCoro del King's CollegeCoro del King's College, CambridgeDer Chor Des King's College, CambridgeDer Chor Des Kings College, CambridgeHeavenly VoicesKing'sKing's CollegeKing's College (Cambridge) Boys' ChoirKing's College Boys' ChoirKing's College CambridgeKing's College Chapel ChoirKing's College Chapel Choir Of CambridgeKing's College ChiorKing's College ChoirKing's College Choir - CambridgeKing's College Choir CambridgeKing's College Choir Cambridge, Male VoicesKing's College Choir Of CambridgeKing's College Choir • CambridgeKing's College Choir, CambridgeKing's College, CambridgeKing`s College Choir, CambridgeKings College CambridgeKings College Cambridge ChoirKings College ChoirKings College Choir CambridgeKings College Choir Of CambridgeKings College Choir on CambridgeKings' College Choir, CambridgeKing‘s College Choir, CambridgeKing’s College ChoirKing’s College Choir, CambridgeLe Chœur Du King's College, CambridgeMännerstimmen Des King's College Choir, CambridgeSolistes - Chœurs Du King's College De CambridgeThe Choir Of King's College, CambridgeThe Cambridge ChoirThe Choir King's College, CambridgeThe Choir Of King's College, CambridgeThe Choir Of King's CollegeThe Choir Of King's College CambridgeThe Choir Of King's College Chapel, CambridgeThe Choir Of King's College Choir Of CambridgeThe Choir Of King's College, CambridgeThe Choir Of King's College, Cambridge, ChoirThe Choir Of King's College,CambridgeThe Choir Of Kings College, CambridgeThe Choir Of King’s College CambridgeThe Choir Of The King's College, CambridgeThe Choir of King's CollegeThe Choir of King's College CambridgeThe Choir of King's College, CambridgeThe Choir of Kings College CambridgeThe Choir of King´s College, CambridgeThe Choirof King's College, CambridgeThe Choristers Of King's CollegeThe Coir Of King's College, CambridgeThe King's College Chapel Choir, CambridgeThe King's College ChoirThe King's College Choir CambridgeThe King's College Choir, CambridgeThe King's MenVozes Masculinas Do King's College Choir, Cambridgechoir Of King's College, CambridgeÇhoir of King's College, CambridgeХор Королевского Колледжа В Кембриджеキングズ・カレッジ合唱団ケンブリッジ・キングズ・カレッジ合唱団캠브리지 킹스 칼리지 합창단킹스 칼리지 소년합창단Andrew MarrinerCharles Daniels (2)Gerald FinleyChristopher PurvesDavid CordierMeurig BowenMatthew Best (2)David AllsoppEdward SaklatvalaJames Clark (6)Michael PearceDaniel SladdenPeter WinnJoseph CrouchRobin TysonJulian GodleeRichard Cross (2)Peter FoggittNicholas Morris (2)Peter Knapp (2)Simon Channing (2)Edward Price (2)Thomas Rose (2)John Robb (3)John McMunnBenjamin WilliamsonRupert Reid (2)Simon Williams (15)Rupert JohnstonJames CrookesMarcus BodyJohn McFadzeanJason McCaldinChristopher LipscombJesse BillettPeter Lindsay (2)Timothy IstedJoseph Adams (4) + +700518Red LaneHollis Rudolph De LaughterAmerican songwriter and guitarist +Red Lane, was inducted into the Nashville Songwriters Hall of Fame in 1993 +Born February 9, 1939 in Bogalusa, Louisiana. +Died July 1 2015 of cancer in Nashville, Tennessee | Age 76 Correcthttps://en.wikipedia.org/wiki/Red_Lanehttps://nashvillesongwritersfoundation.com/Site/inductee?entry_id=2080http://www.tributes.com/obituary/show/Red-Lane-102636518https://repertoire.bmi.com/Search/Search?Main_Search_Text=Rudolph%20De%20Laughter%20Hollis&Main_Search=Writer%2FComposer&Search_Type=all&View_Count=100&Page_Number=0Hollis "Red" LaneHollis R. 'Red Lane' DeLaughterHollis Rudolph DeLaughterLaneLayneR LaneR. LaneR. LansR.LaneRed LameRonnie LaneHollis Delaughter + +701291John TunnellBritish classical violinist and orchestra violin section leader. Born 1936 in Stockton-on-Tees, Durham, England - Died in September 1988. +He studied at the [l527847]. After many years as leader of various Chamber Music groups, the establishment of the [a=Tunnell Trio] with his sister, [a=Susan Tunnell] (piano), and brother, [a=Charles Tunnell] (cello), and a long association with the [a=English Chamber Orchestra], he was invited in 1974 to come to Scotland to lead the newly formed [a=Scottish Chamber Orchestra]. +He was appointed O.B.E. +Father of the cellist [a=Jonathan Tunnell], and the harpist [a=Philippa Tunnell].Needs Votehttps://collmagazine.visitcoll.co.uk/article.php?ID=391English Chamber OrchestraScottish Chamber OrchestraTunnell Piano QuartetTunnell Trio + +701412Benoît LoiselleCanadian classical cellistNeeds VoteBenoit LoiselleLes Violons du RoyTrio Hochelaga + +701818Alida SchatAlida SchatDutch violinist. Currently concertmaster of the [a=Metropole Orchestra]. +Needs Votehttps://alidaschat.com/https://www.linkedin.com/in/alida-schat/Alida SchattAlida SehatMetropole OrchestraThe Amsterdam Baroque OrchestraNieuw Sinfonietta AmsterdamMusica Ad RhenumLes Musiciens Du LouvreEastPark StringsIrish Baroque OrchestraRenoir EnsembleThe Amsterdam String Quartet + +702743Ciaran McCabeBritish classical violinistCorrecthttps://twitter.com/ciaranmccabeThe London Chamber OrchestraMarylebone Camerata + +702877H. Eugene GiffordHarold Eugene Gifford.American jazz banjoist, guitarist, and arranger, born 31 May 1908 in Americus, Georgia, died 12 November 1970 in Memphis, USA. +Gifford played with Bob Foster, Lloyd Williams, Watson’s Bell Hops, Blue Steele (as guitarist), Henry Cato’s Vanities Orchestra (1928), Jean Goldkette's Orange Blossoms/Casa Loma Orchestra (1929-1939, as arranger, guitarist and banjoist) and others. +In 2000, a sample of the 1931 Casa Loma Orchestra recording of his composition "White Jazz" was used for [r2567526]. +Needs Votehttps://adp.library.ucsb.edu/names/110276CliffordE. GiffordE. H. GiffordE.GiffordEugene GiffordG. GiffordGeie GiffordGene CliffordGene GiffordGerne GiffordGiffardGiffordGliffordH E GiffordH Eugene GiffordH. E. GiffordH. GiffordH. GiffordsH.E. GiffordH.E.ギフォードHarold Eugene GiffordGlen Gray & The Casa Loma OrchestraO.K. Rhythm KingsGene Gifford And His Orchestra + +703268Manuel RosenthalManuel Rosenthal (* 18. Juni 1904 in Paris; † 5. Juni 2003) was a French composer and conductor. He studied with, among others, [a=Maurice Ravel].Needs Votehttps://adp.library.ucsb.edu/names/362785https://en.wikipedia.org/w/index.php?title=Manuel_Rosenthal&oldid=1306764815M. RosenhalM. RosenthalM.RosenthalManuel RosentalManuel RozentalMaurice RosenthalRosenthalマニュエル・ロザンタールマヌエル・ローゼンタール = Manuel Rosenthal + +703269Orchestre Philharmonique De Monte-CarloMain orchestra of the Monaco principality, it was founded in 1856 under the name 'Orchestre du Nouveau Cercle des Étrangers', then renamed 'Orchestre National de l’Opéra de Monte-Carlo' in 1953 and finally 'Orchestre Philharmonique de Monte-Carlo' (often abbreviated as OPMC) in 1980.Needs Votehttps://www.opmc.mc/https://soundcloud.com/opmc-classicshttps://twitter.com/montecarlo_orchhttps://en.wikipedia.org/wiki/Monte-Carlo_Philharmonic_OrchestraFilarmonica Di MonacoL'Orchestre Philharmonique De Monte-CarloMCPOMonte Carlo National OrchestraMonte Carlo Opera OrchestraMonte Carlo OrchestraMonte Carlo Philarmonic OrchestraMonte Carlo PhilharmonicMonte Carlo Philharmonic OrchestraMonte Carlo Philharmonic Orchestra = Orchestre Philharmonique De Monte-CarloMonte-Carlo Opera OrchcestraMonte-Carlo Opera OrchestraMonte-Carlo Philharmonic OrchestraOrchestraOrchestra Filarmonica Di MonacoOrchestra Filarmonica Di MontecarloOrchestra Of Monte CarloOrchestra Philharmonique De Monte CarloOrchestra Philharmonique de Monte CarloOrchestra Philharmonque De MonteOrchestre Philarmonique De Monte CarloOrchestre Philarmonique de Monte-CarloOrchestre Philharmonique De BerlinOrchestre Philharmonique De Monte CarloOrchestre Philharmonique de L'Opera de Monte CarloOrchestre Philharmonique de Monte CarloOrchestre Philharmonique de Monte-CarloOrq. Fil. Monte CarloOrquesta Filarmónica de MontecarloOrquesta Sinfónica De MontecarloPhilharmonic Orchestra Of Monte CarloPhilharmonic Orchestra Of Monto-CarloPhilharmonic Orchestra of Monte CarloQuatuor & Orchestre Philharmonique De Monte-CarloThe Monte Carlo National Orchestraモンテカルロ・フィルハーモニー管弦楽団モンテカルロ国立歌劇場管弦楽団モンテ・カルロ・フィルハーモニー管弦楽団Orchestre National De L'Opéra De Monte-CarloLawrence FosterThierry AmadiAlain PetitclercPeter SzütsJean-Max ClémentFrançois CagnonCyrille MercierKatalin LukácsSidney WeissIlyoung ChaeAnne MaugueThierry VeraJean-Marc JourdinFrédéric GheorghiuJean-Louis DedieuBertrand FreyssenedeCharles LockieLiza KerobThomas BouzyPierrette GuimasValérie KunzMartin LefevreHuang MitchellLudovic MilhetJean-Christophe GarziaDavid LefèvreJean-Yves MonierSamuel TupinCarlos Brito-FerreiraMatthieu PetitjeanFranck LavogezJenny BoulangerLaetitia AbrahamRaphaelle TruchotGérald RollandArthur Menrath + +703271Orchestre De La Société Des Concerts Du Conservatoire[b][i]Not to be confused with [a4373132][/i][/b] +The first French symphonic orchestra, active between 1828-1967. From 1967, the orchestra continues as [a=Orchestre De Paris]. + +Administered by the philharmonic association of the Paris Conservatoire, the orchestra consisted of professors of the Conservatoire and their pupils. It was formed by François-Antoine Habeneck in pioneering fashion, aiming to present Beethoven's symphonies, but over time it became more conservative in its programming. + +Its long existence kept the tradition of playing taught at the Conservatoire prominent in French musical life. The orchestra occupied the center-stage of French musical life throughout the 19th and most of the 20th centuries. A major tour of the USA took place in 1918, appearing in 52 cities. Later that year it made the first of its many recordings. + +In 1967, financial difficulties, along with irregular work for the players and poor pay led to a decision by the French government to form a new orchestra. Following auditions chaired by Charles Munch, 108 musicians were chosen (of whom 50 were from the Paris Conservatoire Orchestra) for the newly created Orchestre de Paris, which gave its first concert on 14 November 1967 at the Théâtre des Champs-Élysées. + +Premieres given by the orchestra include Berlioz's Symphonie "Fantastique", Saint-Saëns's Cello Concerto No. 1, and Franck's Symphony. + +[i]The chief conductors of the orchestra were:[/i] +François-Antoine Habeneck 1828–1848 +Narcisse Girard 1848–1860 +Théophile Tilmant 1860–1863 +François George-Hainl 1863–1872 +Édouard Deldevez 1872–1885 +Jules Garcin 1885–1892 +[a1822934] 1892–1901 +[a3606154] 1901–1908 +[a1813204] 1908–1919 +[a1269379] 1919–1938 +[a406273] 1938–1946 +[a895152] 1946–1960. +No Principal Conductor was appointed during the orchestra's final years 1960–1967. + +Needs Votehttp://hector.ucdavis.edu/sdc/http://fr.wikipedia.org/wiki/Orchestre_de_la_Soci%C3%A9t%C3%A9_des_concerts_du_Conservatoirehttps://adp.library.ucsb.edu/names/103968Charles Munch OrchestraChoeurs Et Orchestre De La Société Des Concerts Du ConservatoireChœurs Et Orchestre De La Société Des Concerts Du ConservatoireConcert OrchestreConcerts Du Conservatoire De ParisConcerts Du Conservatoire OrchestraConservatoire OrchesterConservatoire Orchester, ParisConservatoire Orchestre ParisConservatoire Society OrchestraConservatoire-OrchesterConservatoire-Orchester ParisConservatoire-Orchester, ParisConservatoire-Orchestra, ParisConservatoryConservatory Orchestra, ParisD'OrchestreD'Orchestre ParisDas Conservatoire-Orchester ParisEnsemble de Solistes de L'Orchestre De La Société Des Concerts Du ConservatoireGrand Orchestre Symphonique Des Premiere Prix Du ConservatoireHet Parijs' Conservatorium OrkestI'Orchestre ConservatolreL' Orchestre De La Société Des Concerts Du ConservatoireL' Orchestre De La Société Des Concerts Du Conservatoire De ParisL' Orchestre De La Société Des Concerts Du Conservatoire de ParisL'Orchestra De La Societe Des ConservatoireL'Orchestra De La Société Concerts Du Conservatoire De ParisL'Orchestre Da la Société Des Concerts Du Conservatoire De ParisL'Orchestre Da la Société Des Concerts Du Conservatoire de ParisL'Orchestre De La Conservatoire De ParisL'Orchestre De La Societe Des Concerts Du ConservatoireL'Orchestre De La Societe Des Concerts Du Conservatoire De ParisL'Orchestre De La Societe Des Concerts Du Conservatoire de ParisL'Orchestre De La Societé De Concerts Du ConservatoireL'Orchestre De La Societé Des Concerts Du ConservatoireL'Orchestre De La Societé Des Concerts Du Conservatoire De ParisL'Orchestre De La Sociéte Des Concerts Du Conservatoire De ParisL'Orchestre De La Société Concerts Du Conservatoire De ParisL'Orchestre De La Société Des Concerts De Conservatoire De ParisL'Orchestre De La Société Des Concerts Du ConservatoireL'Orchestre De La Société Des Concerts Du Conservatoire (Paris)L'Orchestre De La Société Des Concerts Du Conservatoire De ParisL'Orchestre De La Société Des Concerts Du Conservatoire Du ParisL'Orchestre De La Société Des Concerts Du Conservatoire ParisL'Orchestre De La Société Des Concerts Du Conservatoire de ParisL'Orchestre De la Societe Des Concerts Du Convervatoire De ParisL'Orchestre Des ConcertsL'Orchestre de la Societe Des Concerts Du Conservatoire de ParisL'Orchestre de la Société des Concerts du Conservatoire de ParisL'orchestre De La Societe Des Concerts Du Conservatoire De ParisL'orchestre De La Société Des Concerts Du ConservatoireL'orchestre De La Société Des Concerts Du Conservatoire De ParisLa Orchestra De La Sociedad De Conciertos Del Conservatorio De ParisLa Orchestra de la Sociedad de Conciertos del Conservatorio de ParisLa Orquesta De La Sociedad De Conciertos Del Conservatorio De ParísLa Societe Des Concerts Du ConservatoireLa Société Des Concerts Du ConcervatoireLa Société Des Concerts Du ConservatoireL’ Orchestre De La Société Des Concerts Du ConservatoireL’Orchestre De La Société Du Conservatoire De ParisL’orchestre De La Société Des Concerts Du Conservatoire De ParisMedlemmar Ur Paris KonservatorieorkesterMembers Of The Paris Conservatory OrchestraOrcehstre De La Société Des Concerts Du ConservatoireOrch. ConservatoireOrch. De La Sté. Des Concerts Du ConservatoireOrch. Del Conservatorio Di ParigiOrchester Der "Concerts De Paris"Orchester Des Conservatoire ParisOrchester Des Conservatoire de ParisOrchestr Pařížské KonzervatořeOrchestr Společnosti Koncertů KonzervatořeOrchestraOrchestra De La Sociedad De Concertos Del Conservatorio de ParisOrchestra De La Societe Des Concerts Du ConservatoireOrchestra De La Société Des Concerts Du ConservatoireOrchestra Dei Concerti Di ParigiOrchestra Del Conservatorio DI ParigiOrchestra Del Conservatorio Di ParigiOrchestra Della "Société Des Concerts Du Conservatoire"Orchestra Della Societa Del Concerti Sinfonici Di ParigiOrchestra Della Società Concerti Del Conservatorio Di ParigiOrchestra Della Società Dei Concerti Del ConservatorioOrchestra Della Società Dei Concerti Del Conservatorio Di ParigiOrchestra Della Società Dei Concerti Del Conservatorio di ParigiOrchestra Della Società Dei Concerti Sinfonici Di ParigiOrchestra Della Società Dei Concerti Sinfonici di ParigiOrchestra Della Société Des Concerts Du ConservatoireOrchestra OSCC ParisOrchestra Of "Société Des Concerts Du Conservatoire"Orchestra Of The "Concerts De Paris"Orchestra Of The Concerts De ParisOrchestra Of The Concerts Of ParisOrchestra Of The Paris ConservatoryOrchestra Of The Societe Des Concerts Du ConservatoireOrchestra Of The Society Of Symphony Concerts Of ParisOrchestra Societății De Concerte A Conservatorului Din ParisOrchestra del Conservatorio di ParigiOrchestra del conservatorio di ParigiOrchestre De La Societe Des Concerts Du ConservatoireOrchestre de la Société Des Concerts Du Conservatoire De ParisOrchestre De La Societe Des Concerts Du Concervatoire De ParisOrchestre De La Societe Des Concerts Du ConservatoireOrchestre De La Societe Des Concerts Du Conservatoire ParisOrchestre De La Societe Des Concerts Du Conservatoire, ParisOrchestre De La Societè Des Concerts Du ConservatoireOrchestre De La Societé Des Concerts Du ConcervatoireOrchestre De La Societé Des Concerts Du ConservatoireOrchestre De La Societé Des Concerts Du Conservatoire (Paris)Orchestre De La Societé Des Concerts Du Conservatoire ParisOrchestre De La Sociéte Des Concerts Du ConservatoireOrchestre De La Sociéte Des Concerts Du Conservatoire ParisOrchestre De La Société Des ConcertesOrchestre De La Société Des ConcertsOrchestre De La Société Des Concerts De La Conservatoire ParisOrchestre De La Société Des Concerts De ParisOrchestre De La Société Des Concerts Du ConcervatoireOrchestre De La Société Des Concerts Du ConservatoireOrchestre De La Société Des Concerts Du Conservatoire (Paris)Orchestre De La Société Des Concerts Du Conservatoire De ParisOrchestre De La Société Des Concerts Du Conservatoire ParisOrchestre De La Société Des Concerts Du Conservatoire de ParisOrchestre De La Société Des Concerts Du Conservatoire, ParisOrchestre De La Société Des Concerts Du Symphoniques De ParisOrchestre De La Société Des Concerts Symphonique De ParisOrchestre De La Société Des Concerts Symphoniques De ParisOrchestre De La Société Du ConservatoireOrchestre De La Société Du Conservatoire, ParisOrchestre De La Société des Concerts du Conservatoire ParisOrchestre De La Sté Des Concerts Du Conservatoire De ParisOrchestre Des Concerts De ParisOrchestre Des Concerts Du ConservatoireOrchestre Des Concerts Du Conservatoire De ParisOrchestre Du ConservatoireOrchestre Du Conservatoire De ParisOrchestre Du Conservatoire de ParisOrchestre Et Chœurs De La Société Des Concerts Du ConservatoireOrchestre Of ParisOrchestre Société Concerts ConservatoireOrchestre Sociétés Des Concerts Du ConservatoireOrchestre Sté Du ConservatoireOrchestre SymphoniqueOrchestre de Ia Société des Concerts du ConservatoireOrchestre de la Conservatoire, ParisOrchestre de la Societe des Concerts du Conservatoire ParisOrchestre de la Societé Des Concerts Du Conservatoire de ParisOrchestre de la Société Des Concerts Du Conservatoire ParisOrchestre de la Société des Concerts de la Conservatoire ParisOrchestre de la Société des Concerts du ConservatoireOrchestre de la Société des Concerts du Conservatoire ParisOrchestre de la Société des Concerts du Conservatoire de ParisOrchestre del la Société du Conservatorie de ParisOrkestar Pariškog KonzervatorijaOrquesta De Conciertos De ParísOrquesta De La Sociedad De Conciertos Del ConservatorioOrquesta De La Sociedad De Conciertos Del Conservatorio De ParisOrquesta De La Sociedad De Conciertos Del Conservatorio De ParísOrquesta De La Sociedad De Conciertos Sinfónicos De ParísOrquesta De La Sociedad De Concietos Del Conservatorio De ParisOrquesta De La Sociedad Sinfónica De Conciertos De ParisOrquesta De La Society Of Symphony Concerts De ParísOrquesta Del Concervatorio De ParisOrquesta Del Conservatorio De ParisOrquesta Del Conservatorio De ParísOrquesta Del Conservatorio de ParisOrquesta Del Conservatorio de ParísOrquesta Del Estado De La Opera De VienaOrquesta Radio Sinfonica de ParisOrquesta Sinfónica del Conservatorio De ParisOrquesta de la Sociedad De Conciertos Del Conservatorio De ParísOrquesta de la Sociedad de COnciertos del Conservatiorio de ParisOrquesta de la Sociedad de Conciertos Del Conservatoire de ParisOrquesta de la Sociedad de Conciertos del Conservatorio de ParisOrquesta del conservatorio de ParísOrquestra Da Sociedade De Concertos Do Conservatorio De ParisOrquestra Da Sociedade De Concêrtos Do Conservatório De ParisOrquestra Da Sociedade Dos Concêrtos Sinfônicos De ParisPCOPariisin Konserttiyhdistyksen OrkesteriParijs Conservatorium OrkestParijs' Conservatorium OrkestParijs' ConservatoriumOrkestParisParis Concervatoire OrchestraParis Cons. Orch.Paris Conservatiore Orchestra, TheParis ConservatoireParis Conservatoire OchestraParis Conservatoire Orch.Paris Conservatoire OrchestrParis Conservatoire OrchestraParis Conservatoire OrchestreParis Conservatoire OrchestrsParis Conservatorie OrchestraParis Conservatory Orch.Paris Conservatory OrchestraParis Corvatoire OrchestraParis KonservatorieorchestraParis KonservatorieorkesterParis Symphony OrchestraPariser Conservatoire OrchesterPariser Conservatoire-OrchesterPariški Konzervatorijski OrkestarRoyal Philharmonic OrchestraSochiete Des Concerts Du Conservatoire de ParisSociedad De Concierto Del ConservatorioSociedad De Conciertos Del ConservatorioSociedad De Conciertos Sinfónicos De ParisSociedad De Conciertos Sinfónicos De ParísSociete Des Concerts Du ConservatoireSociete Des Concerts OrchestraSocieté Des Concerts Du ConservatoireSociéte Des Concerts Du ConservatoireSociété Des ConcertsSociété Des Concerts Du ConservatoireSociété Des Concerts Du Conservatoire De ParisSociété Des Concerts Du Conservatoire Du ParisSociété Des Concerts Du Conservatoire Orchestra, ParisSociété Des Concerts Du Conservatoire ParisSociété Des Concerts Symphoniques De ParisSociété Des Concerts Symphoniques de ParisSociété Des concerts Du ConservatoireSociété des Concerts du ConservatoireSocété Des Concerts Du ConservatoireSolistes De L'Orchestre Des Concerts LamoureuxSoloistes De L'Orchestre Des Concerts LamoureuxSymphony OrchestraThe "Concerts De Paris" OrchestraThe Conservatoire Concert OrchestraThe Orchestra Of The Society Of Concerts Of The Conservatory Of ParisThe Orchestre De La Societe Des Concerts Du Conservatoire De ParisThe Orchestre De La Société Des Concerts Du Conservatoire, ParisThe Paris Concert OrchestraThe Paris Conservatoire OrcherstraThe Paris Conservatoire OrchestraThe Paris Conservatory Orchestrael Conservatorio Di ParigiОркестр Концертов Парижской КонсерваторииОркестр Общества "Концерты Консерватории" (Париж)Оркестр Общества «Концерты Консерватории» (Париж)Оркестр Общества Концертов Парижской КонсерваториОркестр Парижской КонсерваторииОркестр общества «Концерты Консерватории»パリ音楽院管弦楽団巴黎音樂院管弦樂團Seine Symphony OrchestraCharles MunchChristian FerrasAndré CluytensAlbert WolffPhilippe Gaubert (2)Roger AlbinPierre NeriniMarcel MoyseAndré MessagerClaude-Paul TaffanelPierre SimonChœurs Du Conservatoire De ParisDenise Chirat-ComtetGeorges MartyFrançois EtienneMarc SchaefferGeorges GilletSolistes De La Société Des Concerts Du Conservatoire De ParisGeneviève LeSecq + +703272Louis AuriacombeFrench conductor. He was born 22 February 1917 in Pau, France and died 3 December 1982 in Toulouse, France.CorrectAuriacombeLouis Auriocombeルイ・オーリアコンブ + +703539Arcangelo CorelliArcangelo CorelliBorn: 1653-02-17 (Fusignano, Italy). +Died: 1713-01-08 (Rome, Italy). + +Arcangelo Corelli was an Italian violinist and composer of the Baroque era.Needs Votehttps://en.wikipedia.org/wiki/Arcangelo_Corellihttps://www.treccani.it/enciclopedia/arcangelo-corelli/https://www.britannica.com/biography/Arcangelo-Corellihttps://www.bach-cantatas.com/Lib/Corelli-Arcangelo.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102373/Corelli_ArcangeloA CorelliA, CorelliA. CorelliA. CorrelliA. KorelisA. KorelliA. KorellyA. コレリA.CorelliA.コレルリAngelo CorelliAntonio CorelliArcandelo CorelliArcangello CorelliArchangelo CorelliArchangelo QorelliCoreliCorelliCorelli A.CorelliaCorelluiCorrelliG. CorelliА. КОРЕЛЛИА. КореллиА. КоррелиА.КореллиАрканджело КореллиАрканджело КорелліКореллиコレッリコレルリ + +703599Thomas HambergerBass baritone from Bayreuth, Germany.Correcthttp://www.bassbariton.deChor Des Bayerischen Rundfunks + +703748Johnny BraggJohn Henry BraggJohnny Bragg (born February 26, 1925, North Nashville, Tennessee, USA - died September 1, 2004, Madison, Tennessee, USA) was a R&B singer/songwriter. He was a member of [a506847] and began his musical career whilst imprisoned at the Tennessee State Penitentiary in Nashville. He was convicted at the age of 17 on six charges of rape. His sentence was commuted in 1959.Needs Votehttp://doo-wop.blogg.org/themes-_prisonaires-222423.htmlBragBragaBraggBragg JohnnyBragoBroggBroggsGreggJ .BraggJ, BraggJ. BraggJ. BragsJ. BreggJ.BragJ.BraggJohn Henry BraggJohnny BragJohnny BragsJohny Bragsジョニー・ブラックThe PrisonairesThe Marigolds (3)The Solotones + +703959Peter BamberClassical tenor.Needs Votehttps://www.imdb.com/name/nm0051399/Peter BamboThe Ambrosian SingersThe Academy Of Ancient Music + +703960David BevanBritish composer and bass vocalist, born in 1951. He was educated at Westminster Cathedral Choir School and Downside from where he won an open scholarship to The Queen's College, Oxford. In 1997 he gained the B Mus degree in composition from Oxford University. He died on 27 November 2021.Needs Votehttps://www.linkedin.com/in/bevandgr/The Consort Of Musicke + +703973Lindsay BensonBass vocalist, UKNeeds Votehttps://www.imdb.com/name/nm0072565/Lindsey BensonThe Ambrosian SingersSwingle IIThe Square Pegs + +703997Sidney ArodinSidney J. ArnondinAmerican jazz clarinetist, saxophonist and composer. + +Born : March 29, 1901 in Westwego, Louisiana. +Died : February 06, 1948 in New Orleans, Louisiana. +Needs Votehttp://en.wikipedia.org/wiki/Sidney_Arodinhttps://www.allmusic.com/artist/sidney-arodin-mn0000033513https://www.imdb.com/name/nm1409803/https://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/135685dba810cc3a2fcf76f6e992cc3b331d6/discographyhttps://adp.library.ucsb.edu/names/110395AaradinAaradonAarodinAordinArdoinAredinArodanArodinArodin, SidneyArodineArondinAroudinArroinF. ArodinJ. ArodinS. ArodinS. ArodynS. ArondinS.ArodinS.y ArodinSid ArodinSid BrodinSidney ArondinSidney FrodinSidney GrodinSidney-ArodinSrodinSydney ArodinWingy Manone & His OrchestraJones & Collins Astoria Hot EightLouis Prima & His New Orleans GangNew Orleans Jazz BandOriginal New Orleans Jazz Band + +704140Min YangChinese classical violinist and Professor of Violin. Born in Beijing, People's Republic of China. +She graduated from the [l459222]. She worked with the [a=BBC Philharmonic] Orchestra after she finished her studies. Three years later, she was appointed as Assistant Concert Master with the [a=Royal Liverpool Philharmonic Orchestra]. She held the No.4 position in the first violins in the [a=London Symphony Orchestra] for five years (1998-2002). She has left the LSO to tour with her piano trio - the [b]MinTrio[/b]. Professor of Violin at the China Conservatory of Music, Head of Chamber Music and Orchestra Studies, and 2nd Violin in [b]The China Quartet[/b]. Needs Votehttps://www.minyangonline.com/London Symphony OrchestraBBC PhilharmonicRoyal Liverpool Philharmonic Orchestra + +704150New Philharmonia OrchestraBritish philharmonic orchestra based in London, originally founded by [a=Walter Legge] as [a=Philharmonia Orchestra] in 1945. +The New Philharmonia Orchestra came into being in March 1964, when Walter Legge decided that the Philharmonia Orchestra was to be disbanded. The musicians decided that they would not be disbanded, took matters into their own hands, elected a governing body, added 'New' to the title and carried on, first up with [a=Otto Klemperer] conducting [a=Ludwig van Beethoven]'s "Choral Symphony". They regained the Philharmonia name in 1977. +Please consider also: +- [a=Members Of The New Philharmonia Orchestra] +- [a=New Philharmonia Chamber Orchestra] +- [a=Strings Of The New Philharmonia Orchestra] + +[b]For recordings before 1964 and/or after 1977, please use [a=Philharmonia Orchestra][/b]. +[b]When used fictitiously (conducted by [a=Alfred Scholz] or one of his aliases), please use: [a=New Philharmonia Orchestra (2)][/b].Needs Votehttps://philharmonia.co.uk/https://www.youtube.com/channel/UCKzx92ZqX1PKYTC-FC-CZRQhttps://soundcloud.com/new-philharmonia-orchestrahttps://en.wikipedia.org/wiki/Philharmonia_Orchestra#1964%E2%80%931977:_New_Philharmoniahttps://musicianbio.org/new-philharmonia-orchestra/"New Philharmonia" Orchestra"New Philharmonic" Orchestra(New) Philharmonia OrchestraDas Neue Philharmonia OrchesterDas Neue Philharmonia Orchester LondonDas Neue Philharmonie Orchester LondonEdvard GriegEnsemble Du Nouvel Orchestre PhilharmoniqueLa Nueva Orquesta FilarmoniaLa Nueva Orquesta FilarmoníaLa Nueva Orquesta PhilharmoniaLe Nouvel Orchestre PhilharmoniqueLondon New Philharmonia OrchestraNPONeue Philharmonie Orchester LondonNeues Philharmonia Orchester LondonNeues Philharmonia OrchestraNeues Phlharmonia Orchester LondonNew London PhilharmoniaNew OrchestraNew Phil. OrchestraNew PhilarmoniaNew Philarmonia OrchestraNew Philh. Orch.New PhilharmoniaNew Philharmonia Di LondraNew Philharmonia Of LondonNew Philharmonia Orch.New Philharmonia OrchesterNew Philharmonia Orchestra De LondresNew Philharmonia Orchestra LondonNew Philharmonia Orchestra Of LondonNew Philharmonia Orchestra of LondonNew Philharmonia Orchestra, LondonNew Philharmonia Orchestra, TheNew Philharmonia OrchestrasNew Philharmonia Orchestras LondonNew Philharmonia Wind EnsembleNew Philharmonia ZenekaraNew Philharmonia, LondresNew Philharmonic OrchestraNew Philharmonic Orchestra LondonNew Philharmonic Orchestra, LondenNew Philharmonic Orchestra, LondonNew Philharmonica OrchestraNew Philharmonie OrchestraNew SymphonyNew York Philharmonic OrchestraNouvel Orchestre PhilharmoniqueNouvel Orchestre Philharmonique De LondresNouvel Orchestre Philharmonique de LondresNouvelle Orchestre PhilharmoniaNova Orquestra FilarmônicaNova Orquestra PhilharmoniaNovi Filharmonijski OrkestarNový Filharmonický OrchestrNueva Orchestra PhilharmoniaNueva Orquesta FilarmoniaNueva Orquesta Filarmonia de LondresNueva Orquesta FilarmoníaNueva Orquesta Filarmónica De LondresNueva Orquesta PhilarmoniaNueva Orquesta PhilharmoniaNuova Orchestra Philharmonia Di LondraNuova Orchestra SinfonicaOrchesta New PhilharmoniaOrchestraOrchestra LondonOrchestra New PhilharmoniaOrchestra New Philharmonia di LondraOrchestra Nuova PhilharmoniaOrchestra PhilharmoniaOrchestre New PhilharmoniaOrcquesta New PhilharmoniaOrkestar New Philharmonia LondonOrq. New PhilarmoniaOrq. New PhilharmoniaOrquesta "New Philharmonia"Orquesta New Phiilarmonia, LondresOrquesta New PhilharmoniaOrquesta New Philharmonia De LondresOrquesta New Philharmonia, LondresOrquesta New Philharmonía, De LondresOrquesta Nueva FilarmoniaOrquesta Nueva Filarmonia De LondresOrquesta Nueva FilarmoníaOrquesta PhilharmoniaOrquesta Philharmonia De LondresOrquestra New PhilharmoniaOrquestra Nova FilharmònicaPhilharmonia OrchestraRimsky-KorsakovSao Paulo Symphony orchestraTh New Philharmonia OrchestraThe NewThe New Philhamonia OrchestraThe New PhilharmoniaThe New Philharmonia Orch.The New Philharmonia OrchestraThe New Philharmonia Orchestra LondonThe New Philharmonia Orchestra Of LondonThe New Philharmonia Orchestra, LondonThe New Philharmonic OrchestraThe New Philharmonica OrchestraThe New Philharmonie OrchestraThe Vienna Philharmonic OrchestraUusi Filharmoninen OrkesteriUusi Philharmoninen OrkesteriЛондонский Новый Филармонический ОркестрЛондонский Оркестр "Нью Филармония"Лондонский Оркестр «Нью Филармония»Новый Филармонический ОркестрОркестр "Нью Филармония"Оркестр "Нью-Филармония" (Лондон)Оркестр "Нью-Филармония", ЛондонОркестр «Нью Филармония»Оркестр «Нью-Филармония»Оркестр «Нью-Филармония» (Лондон)Оркестр «Нью–филармония»Оркестр „Нью-Филармония“ニューフィルハーモニア管弦楽団ニュー・フィルハーモニア管弦楽団Philharmonia OrchestraPhilharmonia Promenade OrchestraThe Festival OrchestraBernard PartridgeGeorge RobertsonAlan CivilJohn WilbrahamRay PremruHugh BeanSidney SutcliffeEdward WalkerDesmond BradleyMichael Thompson (2)Otto KlempererDavid CrippsClive GillinsonGraham WarrenPhilip JonesLeslie PearsonNeil TarltonMichael WinfieldRaymond ClarkVernon ElliottJames ChristieHerbert DownesArthur DavisonHarold LesterGareth Morris (2)Gordon HuntBernard Walton (2)Emanuel HurwitzCsaba ErdélyiMichael Harris (6)Denis BlythGeorge CrozierNicholas BuschMichael Skinner (2)Arthur Wilson (3)John Jenkins (6)Gerald DruckerJack Mackintosh (2)Andrew Wickens (2)Ifan WilliamsKenneth Moore (6)Gerald Brinnen + +704263Jefimija BrajovicJefimija BrajovićClassical violinist, born 1975 in Belgrade, Yugoslavia (now Serbia).CorrectMünchner PhilharmonikerPhilharmonisches Staatsorchester HamburgFrankfurter Opern- Und Museumsorchester + +704264Hubert PistlGerman horn player, born 1969 in Passau, Germany.Needs VoteHubert PilstlMünchner PhilharmonikerOrchester der Bayreuther FestspieleBayerisches LandesjugendorchesterBach, Blech & Blues + +704634George CrawfordClassical violinistNeeds VoteGabrieli PlayersThe Mozartists + +704635Natasha KraemerClassical cello player. +In 2005, she successfully completed two years of post-graduate studies in the Early Music Department at The Royal Academy of Music, where she studied the Baroque cello with Jenny Ward Clarke. +She is now principal cellist with The Sweelinck Ensemble and Saraband Consort, and also performs regularly with several orchestras and chamber groups including The Gabrieli Players, English Concert, The Sixteen, Hanover Band, English Baroque Soloists and Classical Opera Company.Needs Votehttp://www.thefrolick.com/Natasha.htmlGabrieli ConsortThe English Baroque SoloistsHanover BandL'Avventura LondonThe English ConcertThe MozartistsVan Diemen's BandGenesis Baroque + +704780Johnny MartelJazz trumpet player.Needs Votehttps://www.allmusic.com/artist/johnny-martel-mn0000203270/creditsJohn MartelJohn MartellJohnny MartellCharlie Barnet And His OrchestraBenny Goodman And His Orchestra + +705281Harry Brooks (2)American jazz pianist, composer and songwriter, born 20 September 1895 in Homestead, PA, USA; died 22 June 1970, Teaneck, NJ, USA. Often collaborated with [a=Fats Waller] and lyricist [a=Andy Razaf], with whom he wrote "Ain't Misbehavin'". + +Also with Razaf and Waller, Brooks scored the Broadway shows "Snapshots of 1921" and "Connie's Hot Chocolates". +Needs Votehttp://en.wikipedia.org/wiki/Harry_Brooks_%28composer%29https://adp.library.ucsb.edu/names/105536B. BrooksBooksBrocksBroksBroocksBrookBrookeBrookesBrooksBrooks HarryD. BrooksH BrooksH. BlackH. BooksH. BrookH. BrooksH. O.BrooksH.BrooksHarry BrookHarry BrookesHarry O. BrooksHarvey D. BrooksHarvey O. BrookesHarvey O. BrooksHenry BrooksHl. BrooksJ. BrooksS. BrooksNoble Sissle And His OrchestraNoble Sissle SwingstersLeroy Smith And His OrchestraThe Red Devils (4) + +705819Samuel CytronAmerican violinistNeeds VoteSam CyrtronSam CytronSamuel 'Sam' CytronSamuel D. CytronHarry James And His OrchestraBenny Goodman With Strings + +706103Karl FarkasAustrian actor and cabaret artist, born 28 October 1893 in Vienna, Austria-Hungary and died 16 May 1971 in Vienna, Austria.Needs Votehttps://adp.library.ucsb.edu/names/359646https://en.wikipedia.org/wiki/Karl_FarkasCarl FarkasFarkasK. FarasK. Farkas + +706108Johnny WellsJazz drummer, born c. 1905 in Kentucky, died November 25, 1965 in New York. +After performing as a singer, comedian and dancer at the Apex Club in Chicago, he joined [a=Jimmie Noone's Apex Club Orchestra] as a drummer, making several recordings with the band. He continued to work with Noone into the 1930s and then moved to New York, where he played and recorded with [a=Joe Sullivan] in 1939-1940.Needs Votehttps://www.allmusic.com/artist/johnny-wells-mn0001786819/biographyJ. WellsJohnny WellWellsJimmie Noone's Apex Club OrchestraJoe Sullivan And His Café Society OrchestraJoe Sullivan Band + +706110Lawson BufordJazz tuba player from the Golden Age of Jazz.Needs Votehttps://www.allmusic.com/artist/lawson-buford-mn0001213031/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/306121/Buford_LawsonBufordL. BufordL. BurfordLawson BuffordLawson BurfordKing Oliver & His Dixie SyncopatorsJimmie Noone's Apex Club OrchestraKing Oliver & His OrchestraElgar's Creole OrchestraJabbo Smith And His Rhythm Aces + +706173Jason HorowitzAmerican violinist.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraMünchener Kammerorchester + +706285Billy AustinWilliam Williams AustinAmerican musician and songwriter best known for his work with [a253475], with whom he co-wrote the 1944 #2 hit "Is You Is Or Is You Ain't My Baby?". Austin was recorded with [url=https://www.discogs.com/artist/253475-Louis-Jordan]Jordan[/url] ensembles as a pianist. + +For the country songwriter active in Nashville, TN, see [a=Bill Austin (6)].Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&keyid=13716&subid=0&page=2&fromrow=26&torow=50AustinAustin WilliamsAustin, BillyAustonB AustinB. AUstinB. AustinB.AustinBill AustinD. AustinW. AustinWilliam AustinLouis Jordan And His Tympany Five + +706286Sammy MyselsSammy MyselsUS songwriter, born 17 November 1906 in Pittsburgh, Pennsylvania, USA, died in 5 February 1974 in Los Angeles, California. + +Brother of [a816048] and [a1248700] (who wrote I Want You, I Need You, I Love You for [a=Elvis Presley]!)Needs Votehttps://www.familysearch.org/search/record/results?q.givenName=sammy&q.surname=mysels&q.birthLikePlace=Pittsburg%2C%20pa&q.birthLikeDate.from=1906&q.birthLikeDate.to=1906&q.deathLikeDate.from=1974&q.deathLikeDate.to=1974&count=20&offset=0&m.defaultFacets=on&m.queryRequireDefault=on&m.facetNestCollectionInCategory=onBilly MyselsMack MyselsMeyselsMiselsMyfelfMysblsMyseisMyselMyselfMyselsS MyselsS. MyseisS. MyselsS.MyselsSammy MeyselsSammy MysellsSommy Mysels + +706385Paul DresserJohann Paul Dresser, Jr.American songwriter of the late 19th century and early 20th century. Born April 22, 1857; died January 31, 1906.Needs Votehttp://en.wikipedia.org/wiki/Paul_Dresserhttps://adp.library.ucsb.edu/names/108958BresserDreserDressarDresserG. Paul DresserP. DreeserP. DresserP. PresserP.DresserPaul DressorTheodore DresserP. Würck + +707463Dean & WeatherspoonSongwriting-production team comprised of James Dean and William Weatherspoon, active at Motown in the late '60sNeeds VoteDeanDean & W. WeatherspoonDean - WeatherspoonDean / WeatherspoonDean And WeatherspoonDean and WeatherspoonDean, WeatherpoonDean, WeatherspoonDean, WitherspoonDean-WeatherspoonDean-WitherspoonDean-Wm. WeatherspoonDean/WeatherspoonDean–WeatherspoonDean—WetherspoonJ Dean-W WeatherspoonJ Dean/W WeatherspoonJ, Dean, W. WitherspoonJ. DeanJ. Dean & W. WeatherspoonJ. Dean & Wm. WeatherspoonJ. Dean & Wm. WitherspoonJ. Dean , W. WeatherspoonJ. Dean - W. WeatherspoonJ. Dean - Wm WeatherspoonJ. Dean - Wm. WeatherspoonJ. Dean / W. WeatherspoonJ. Dean / W. WitherspoonJ. Dean / Wm. WeatherspoonJ. Dean /W. WeatherspoonJ. Dean And Wm. WeatherspoonJ. Dean and Wm. WeatherspoonJ. Dean, W. WeatherspoonJ. Dean, Wm. WeatherspoonJ. Dean-M. JohnsonJ. Dean-Wm. WeatherspoonJ. Dean-Wm. WitherspoonJ. Dean/W. WeatherspoonJ. Dean/W.H. WeatherspoonJ.Dean, W.WeatherspoonJ.Dean/W.WeatherspoonJ.R. Dean-W. WeatherspoonJL Dean-Wm. WeatherspoonJames Anyhony Dean / Wm. WeatherspoonJames Deam And William Henry WitherspoonJames Dean & William WeatherspoonJames Dean - William WeatherspoonJames Dean / William WeatherspoonJames Dean / William WheaterspoonJames Dean And William Henry WeatherspoonJames Dean And William WeatherspoonJames Dean WeatherspoonJames Dean and William WeatherspoonJames Dean • William WeatherspoonJames Dean, William WeatherspoonJames Dean, William WitherspoonJames Dean-William WeatherspoonJames Dean/William Henry WeatherspoonJames Dean/William WeatherspoonJimmy DeanJimmy Dean - William WeatherspoonJimmy Dean / William WeatherspoonJimmy Dean, William WeatherspoonJimmy Dean/William Henry WeatherspoonW. WeatherspoonW. Weatherspoon & J. DeanW. Weatherspoon / J. DeanW. Weatherspoon, J. DeanW. Weatherspoon-J. DeenW. Weatherspoon/J. DeanW. Witherspoon, J. DeanWeatherspoonWeatherspoon, DeanWeatherspoon-DeanWeatherspoon-Dean-WeatherspoonWeatherspoon/DeanWilliam Henry WeatherspoonWilliam Henry Weatherspoon & James DeanWilliam Henry Weatherspoon And James DeanWilliam Weatherspoon & James DeanWilliam Weatherspoon / James DeanWilliam Weatherspoon And James DeanWilliam Weatherspoon, James DeanWilliam Weatherspoon-James DeanWilliam Weatherspoon/James DeanWm. Weatherspoon & J. DeanWm. Weatherspoon And J. DeanWm. Weatherspoon, J. DeanWm. Weatherspoon-J. DeanWilliam WeatherspoonJames Dean (3) + +707622Shari SheeleySharon Kathleen Sheeley[b]Born[/b] 4 April 1940, Laguna Beach, Los Angeles, California +[b]Died[/b] 17 May 2002, Sherman Oaks Hospital Medical Center, Los Angeles, California + +[b]Sheeley[/b] was a highly accomplished songwriter who helped pave the way for female lyricists to gain recognition in the industry during the 1960's. + +In 1958, the same year she was introduced to [a=Eddie Cochran] by ex-boyfriend [a=Phil Everly], 18 year-old [b]Sheeley[/b] wrote "Poor Little Fool". Recorded by [a=Ricky Nelson (2)] it went to No 1 in the States and launched her songwriting career. + +Cochran also had a hit that year with "Summertime Blues" and the couple became soulmates, with [b]Sheeley[/b] going on to write hits for the likes of [a=Johnny Burnette] and [a=Ritchie Valens], her demos aided by Cochran's technical skills and some mentoring from [a=Jerry Capeheart]. She also co-wrote "Somethin' Else" with Eddie's brother [a=Bob Cochran]. [b]Sheeley[/b] & Eddie Cochran were engaged in 1960, the same year that Cochran toured the UK with [a=Gene Vincent]. [b]Sheeley[/b] met up with Cochran in the UK and they celebrated her 20th birthday. On Sunday 17th April - the day following the tour- Cochran, Vincent and [b]Sheeley[/b] were on their way to the airport, to return to the United States, in the back seat of a hire-car. The vehicle crashed. Cochran died from his injuries and Vincent and [b]Sheeley[/b] were seriously injured. + +[b]Sheeley[/b] recovered her health and continued writing songs, also partnering up with [a=Jackie DeShannon]. She penned hits for Brenda Lee, The Crickets, The Fleetwoods, The Searchers, and later hits for James Marcus Smith (whom she renamed PJ Proby), Glen Campbell, Leon Russell, Herb Alpert, and others. + +Married briefly to 'Shindig' frontman Jimmy O'Neil, [b]Sheeley[/b] was honoured by "Sharon Sheeley: Songwriter", a tribute album in 2000 featuring stars for whom she had written. On 12 May 2002 she suffered a cerebral hemorrhage, aged 62, and died shortly after. +Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=312071&subid=3http://www.rockabillyhall.com/SharonSheeley1.htmlhttp://en.wikipedia.org/wiki/Sharon_Sheeleyhttp://www.eddiecochran.info/Biography/Dark_Lonely_Street.htmCh. SheeleyEd SheeleyEd. SheeleyS SheeleyS. K. SheelyS. SheeleyS. SheelyS. SheleyS. SkeeleyS.K. SheeleyS.SheeleyS.SkeeleyS.シェーリーSaron SheelyShari K. SheeleyShari SheelyShari ShelleySharik SheeleySharin SheeleySharion SheeleySharon DheeleySharon K. SheeleySharon K. SheelySharon SheeleySharon SheelySharon ShelleySharon/SheeleySharri SheeleyShealeySheeleSheeleeySheeleySheeley ShariSheeley Shari KSheeley,SSheeley/SharonSheelySheleeSheleyShelleyShellySneeley + +707877Ray McNamaraUS drummer & percusionist.Needs Votehttps://raymcnamara.com/https://www.gonbops.com/artists/ray-mcnamara/https://www.linkedin.com/in/ray-mcnamara-30013b11/R. McNamaraRaymond T. McNamaraLos Angeles Philharmonic OrchestraCalArts African EnsembleCalypso Pirates + +708128Mack JohnsonMcKinley Johnson Jr.Trumpet player. Johnson attended Phoenix Technical School and played trumpet for the school band. After high school, he went on tour with the band of [a136158]. After a stint in the U. S. Air Force, he started a career as studio and touring musician. +Born: July 21, 1931 in Bogalusa, LA +Died: May 25, 2013 in Phoenix, AZCorrecthttps://www.facebook.com/mackjohnsontrumpetM. JohnsonMac JohnsonMarc JohnsonMcKinley "Mack" JohnsonMcKinley JohnsonMckinley JohnsonN. JohnsonIke Turner's Kings Of RhythmThe James Brown BandJohnny Otis And His OrchestraThe Family VibesThe Mack Johnson Combo + +708247Ray Miller And His OrchestraPopular 1920's dance band led by drummer [a=Ray Miller (4)] that recorded first for [l=Columbia] between 1922 and 1923, a few sides for [l=Gennett] in 1922, and then exclusively for [l=Brunswick] between 1923 and 1930. + +On October 17, 1924, the orchestra became the first jazz band to play at the White House, when they performed together with singer [a=Al Jolson] at a campaign rally for President Calvin Coolidge.Needs Votehttps://adp.library.ucsb.edu/names/339313https://syncopatedtimes.com/ray-millers-orchestra/https://www.vjm.biz/white_house.pdfRay Miller & His OrchestraRay Miller And His Brunswick OrchestraRay Miller And His HotelRay Miller And His Hotel Gibson OrchestraRay Miller And His Orch.Ray Miller Orch.Ray Miller OrchestraRay Miller's Novelty OrchestraRay Miller's OrchestraThe Ray Miller OrchestraThe GeorgiansFrank Guarente And His OrchestraChicago Blues Dance OrchestraRegal Novelty OrchestraMuggsy SpanierJules CassardLeon KaplanAl CarsellaDick TeelaArt GronwaldLyle SmithJim CannonPaul Lyman (2)Lloyd WallenMax ConnettBill PaleyJules FasthoffBilly Richards (2)Earl OliverRay Miller (4)Bernard DalyDanny Yates (2)Maurice MorseLlyod WallenBob Jones (50) + +708256California RamblersRecording group, used for a changing group of studio musicians of between nine and 14 musicians led by [a=Ed Kirkeby]. They made hundreds of recordings for many different labels 1921-1937. +Three of the members of the band, [a269598], [a299282], and [a229639], would go on to front big bands.Needs Votehttps://en.wikipedia.org/wiki/The_California_Ramblershttps://adp.library.ucsb.edu/names/110586Bar Harbor Society Orch.California Ramblers OrchCalifornia Ramblers OrchestraCalifornian RamblersOrch. California RamblersThe California RamblersThe Californian RamblersHal Kemp And His OrchestraFred Rich And His OrchestraThe BostoniansBroadway NitelitesBen Selvin & His OrchestraEddie Thomas' CollegiansNew Orleans Jazz BandGolden Gate OrchestraCloverdale Country Club OrchestraTed Wallace & His OrchestraThe HarmoniansThe Bar Harbor Society OrchestraThe Vagabonds (6)Joseph Samuels' Jazz BandLou Gold And His OrchestraMills Musical ClownsThe McAlpineersEd Parker And His OrchestraCarolina Club OrchestraThe Columbia Photo PlayersFrisco SyncopatorsEd Loyd & His OrchestraWally Edwards & His OrchestraThe Goofus FiveUniversity SixBroadway Music MastersErnie Golden And His OrchestraBuddy Campbell & His OrchestraThe Dixie PlayersSam Lanin & His OrchestraNathan Glantz And His OrchestraRialto Dance OrchestraMax Terr And His OrchestraDale's Dance OrchestraJack Pettis And His BandThe Columbians (3)Dick Cherwin & His OrchestraBaltimore Society OrchestraLa Palina BroadcastersChicago RedheadsHarry Barth's MississippiansJoseph Samuels' OrchestraElite Dance OrchestraJack Marshall's OrchestraPaul Sanderson And His OrchestraClub Wigwam OrchestraMoana OrchestraThe SaxopatorsAtlanta MerrymakersLouis Katzman's Dance OrchestraDan Crawford's SyncopatorsRex King And His SovereignsPalace Garden OrchestraBob Willard's OrchestraThe Golden Gate SerenadersGeorgia Moonlight SerenadersLloyd Hall And His OrchestraBuddy Fields And His OrchestraLouis Katzman And His OrchestraBrown's Dixieland OrchestraParamount Novelty OrchestraParamount Jazz Band (2)Jazzazza Jazz BandCalifornia WanderersCarolina CollegiansTed Raph And His OrchestraAl Epps & His Hotel Astor OrchestraThe Goofus WashboardsLos Toreros MúsicosThe Dixie Boys (3)St. Louis Low DownsThe California VagabondsJoe Ryan & His OrchestraCarolina VagabondsThe Broadway StrollersLos Angeles Dance OrchestraAl Dollar & His Ten CentsCliff Roberts' Dance OrchestraSI Higgins And His SodbustersOstend Society OrchestraParamount Dance Orchestra (3)Tommy DorseyRed NicholsPete PumiglioJimmy DorseyArnold BrilhartIrving BrodskyAdrian RolliniStan kingSam WeissGene TraxlerChris Griffin (3)Jack RussinAbe LincolnFud LivingstonEd KirkebyHenry SternSid StoneburnCliff WestonBrick FleagleFred FallensbyBobby Davis (4)Sylvester AholaJack PowersWilliam Henry MooreFelix GiobbeWilliam KeyesJack MaiselHerb WinfieldTony Sacco (3)Chelsea QuealeyMike Michaels (3)Bill Moore (9)Lloyd "Ole" OlsenFreddy CusickJoe LaFaroFrank CushArthur HandHerb WeilTommy FellineRoy JohnstonSam RubySpiegle WillcoxChuck CampbellEd StannardBill White (19)Reg HarringtonBunny DrownEddie LappeIvan JohnstonBob FallonLarry Lloyd (2)Jimmy Wilson (35)Lew White (2)Ted Black (3)Al King (16) + +708420Chris SayersProducer of classical recordings.Correct + +708476Lou CarterAmerican jazz pianist and composer. + +Born: 15 September 1918 in Newark, New Jersey, USA. +Died: 25 September 2005 in Bloomfield, New Jersey, USA.Needs Votehttps://de.wikipedia.org/wiki/Lou_CarterBob CarterCarterCaterH. CarterJ. CarterJohn CarterL. CarterL.CarterLouis CarterJimmy Dorsey And His OrchestraThe Soft Winds (2) + +708507Oscar DennardAmerican jazz pianist. + +Born : about 1928, St. Petersburg, Florida. +Died : 1960 in Cairo, Egypt. + +Highly regarded by his contemporaries but unrecognized otherwise, Dennard was known for his virtuoso technique and harmonic ideas. Recruited by Lionel Hampton with whose orchestra he mainly worked as pianist in the 1950`s. Recorded a handful of small group sides before his untimely death overseas.Needs Votehttps://idreessuliemanquartetftoscardennard.bandcamp.com/O. DenardLionel Hampton And His OrchestraIdrees Sulieman QuartetLionel Hampton GroupLionel Hampton All Stars + +708557Nick MassiNicholas MaciociNick Massi (b.September 19, 1927, Newark, New Jersey, USA – d.December 24, 2000, West Orange, New Jersey, USA) was an American bass singer and bass guitarist for [a121112]. Massi left the band in 1965.Needs Votehttp://www.nickmassiart.com/https://en.wikipedia.org/wiki/Nick_MassiMaciociMasiMassiN. MassiNick MaciociNick MasiThe Four SeasonsThe Wonder Who?The Hollywood Playboys + +708817Ray DraperRaymond Allen DraperAmerican hard bop tuba player +Born August 03, 1940 in New York City, New York, died November 01, 1982 in New York City, New York + + +Ray played with : +Jackie McLean (1956-'57), Donald Byrd, John Coltrane (1958), Max Roach (1958-'59), Don Cherry (early 1960s), Horace Tapscott, Archie Shepp, Brother Jack McDuff. +Recorded four albums as a leader : +Tuba Sounds (1957, Prestige Rec.) +The Ray Draper Quintet Featuring John Coltrane (1957, New Jazz Rec.) +A Tuba Jazz (1958, Jubilee Rec.) +Red Beans and Rice (1968, Epic Rec.). +He was killed in 1982 for robbery by a gang youth.Needs Votehttps://en.wikipedia.org/wiki/Ray_Draper"Spareribs" Ray DraperDraperR. DraperThe Sonny Criss OrchestraMax Roach QuintetRed Beans & RiceThe Ray Draper QuintetJackie McLean Sextet + +708879John HoffmanTrumpet player.Needs VoteJ. HoffmanJohn HThe Glenn Miller OrchestraWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdThe Woody Herman Big BandJulian Lee Orchestra + +709138Karl-August NaeglerKarl August NäglerGerman recording engineer, joining the company [l=Deutsche Grammophon] in 1971 after qualifying as Tonmeister (balance engineer). He was born 1944. +Between 1980 and 2001 he was nominated for 13 Grammy awards and won 6.Needs VoteCarl August NaeglerK.A. NaeglerKarl August NaeglerKarl-August Naegelerカール=アウグスト•ネーグラーカール=アウグスト・ネーグラーカール・アウグスト・ネーグラー + +709231Mike ShepstoneMichael James Roger ShepstoneNeeds VoteM ShepstoneM. ChepstoneM. J. R. ShepstoneM. M. ChepstoneM. ShepstoneM. SheptoneM. ShopstoneM. SpepstoneM. StepstoneM.J. R. ShepstoneM.J.R. ShepstoneM.M. CepstoneM.ShepstoneMichael James ShepstoneMichael ShepstoneMichael StepstoneMichaël ShepstoneMikeMike ShepstonMike ShepstoweMike Stone (12)ShepstoneShepstowShepstone & DibbensThe RokesEquipe 84Les & Kim + +709700Derk LottmanClassical violinistNeeds VoteD. LottmanT.D. LottmanNieuw Sinfonietta AmsterdamNederlands Philharmonisch Orkest (2) + +709762Paul KordaPaul KunstlerEnglish songwriter, musician, producer and actor born in 1948, Singapore, Malaysia. Son of [a=Tibor Kunstler] and Shirley Lenner. +Died on 11th of March 2020, at Ealing Hospital, LondonNeeds Votehttps://en.wikipedia.org/wiki/Paul_KordaCordaKordaP. KordaP.KordaPaulPaul KorbaDada (12)"Hair" Original London Cast + +710380George PalermoViolinist, died 1995. + +Member of the Indianapolis Symphony Orchestra 1938 - 1940, the Chicago Symphony Orchestra 1943 - 1944, later joined Chicago's WGN Orchestra. + +George Palermo is the father of [a=Phillip Palermo]. +Needs VoteGeorge PalarmoChicago Symphony Orchestra + +710652Karl GarvinKarl R. GarvinNashville-based Jazz trumpet player active from the 1940s - 1970s. Brother of saxophone / clarinet player [a1066759].Needs Votehttps://www.nashvillescene.com/arts-culture/article/13001809/bookshttps://www.allmusic.com/artist/karl-garvin-mn0001764782https://books.google.com/books?id=8za1hY2NSbwC&pg=PA140&lpg=PA140&dq=%22Karl+Garvin%22+nashville+trumpet&source=bl&ots=btq5LSI5Ms&sig=ACfU3U0hTbxZFJFgRI764SmP6Lvjnbehsg&hl=en&sa=X&ved=2ahUKEwiGu-2X-vPiAhWR9Z4KHfgFCEAQ6AEwDnoECAkQAQ#v=onepage&q=%22Karl%20Garvin%22%20nashville%20trumpet&f=falseC. GarvinCarl GarvinCarl R. GarvinGarvinKarl R. GarvinJack Teagarden And His Orchestra + +710658Carson RobisonCarson Jay RobisonAmerican country singer and songwriter, well known for his collaborations with [a=Vernon Dalhart]. An early and important country music performer, he worked with [a1049210] for many years. + +b. 4 August, 1890 (Oswego, KS, USA) +d. 24 March, 1957 (Pleasant Valley, NY, USA)Needs Votehttps://en.wikipedia.org/wiki/Carson_Robisonhttp://www.rocky-52.net/chanteursr/robison_c.htmhttps://www.findagrave.com/memorial/33772983/carson-jay-robison?_gl=1*193wvzt*_ga*MjAzNjcwNzIzMC4xNjYwMzIwMTU1*_ga_4QT8FMEX30*MTY2MDY1NTE4OS4yLjEuMTY2MDY1NTM5MS4whttps://adp.library.ucsb.edu/names/106785Arson - RobisonArson-RobinsonArson-RobisonC. J. RobinsonC. J. RobisonC. RobinsC. RobinsonC. RobisonC.J. RobinsonC.J. RobisonC.J.RobinsonC.RobinsonCarbisonCarsonCarson & RobbinsonCarson - J. RobinsonCarson - J. RobisonCarson - RobinsonCarson - V. RobisonCarson / J. RobisonCarson / RobinsonCarson A. RobisonCarson B. RobisonCarson Et J. RobinsonCarson I. RobisonCarson J RobinsonCarson J RobisonCarson J.Carson J. RobisonCarson J. RobinsonCarson J. RobisonCarson RobinCarson RobinsonCarson Robinson And His Old TimersCarson S. RobisonCarson, J. RobisonCarson, RobinsonCarson, RobisonCarson-J. RobinsonCarson-RobinsonCarson-RobisonCarson/J. RobinsonCarson/J. RobisonCarson/J.RobisonCarson/RobinsonCarson/RobisonCarsony RobisonCarsson - J. RobinsonCarsson / RobinsonCaton-RobinsonErtsonGarson J. RobinsonGarson/J. RobisonJ. C. RobinsonJ. Carson RobinsonJ. M. RobinsonJ. RobinsonJ. Robinson CarsonJ. RobisonRobbinsonRobertsonRobinsonRobinson - CarsonRobinson - J CarsonRobinson/CarsonRobinssonRobisonRobison Carson JRobsonRoy GarsonUnknownMaggie AndrewsJoe BillingsCharlie WellsVernon Dalhart And Carson RobisonBud BirminghamBill Barrett (3)Carlos B. McAfeeHarry "Rocky" WilsonSookie HobbsClaude SamuelsEd FaberCal CarsonFrank RobesonTravelin' Jim SmithBob Andrews (6)Evans and ClarkRobert LeavittCarson Robison TrioCarson Robison And His BuckaroosCarson Robison And His PioneersVernon Dalhart And Carson RobisonCarson Robison And His Pleasant Valley BoysCarson Robison And His Old TimersCarson Robison's MadcapsDizzy TrioCarson Robison Male TrioBlack Brothers (7)Turney BrothersThe Carson Robison OrchestraVernon Dalhart TrioCarson Robison's Kansas Jack-Rabbits + +710669Cliff FriendAmerican composer, lyricist and pianist. + +Born: October 01, 1893 in Cincinnati, Ohio. +Died: June 27, 1974 in Las Vegas, Nevada. + +Cliff Friend was one of the most prolific and sought after songwriters on Tin Pan Alley during the 1920's and 30's. Friend co-wrote several hits including "Lovesick Blues", "My Blackbirds Are Bluebirds Now" and "The Merry-Go-Round Broke Down", also known as the theme song to the Looney Tunes cartoon series.Needs Votehttps://en.wikipedia.org/wiki/Cliff_Friendhttps://www.imdb.com/name/nm0295522/https://www.naxos.com/person/Cliff_Friend/20561.htmhttps://adp.library.ucsb.edu/names/105837A. FriendC FriendC. FriendC. FriendsC.FriendCiff FriendClif FriendCliff - FriendCliff FriendsCliff-FriendCliff/FriendCliffe FriendClifford FriendFrankFreindFrendFriandFriedFrienFriendFriend CliffFriend, CliffFriendsFrienoFrieud + +710685Fred CarterTrombonist. + +For the US country songwriter/producer/guitarist, see [a=Fred Carter, Jr.].Needs VoteStan Kenton And His Orchestra + +710699Steve Nelson (4)Steve Edward NelsonSongwriter, born 24 November 1907 in New York City, died 13 November 1981. Started as a Tin Pan Alley songwriter in 1929, later mostly composed country songs. He is best known as co-writer of "Bouquet Of Roses" (1948) with [a632719], "Peter Cottontail" and "Frosty The Snowman" (1950) with [a780983]. Son of [a=Ed Nelson (2)], brother of [a=Ed Nelson Jr.].Needs Votehttps://www.ascap.com/repertory#ace/writer/22184614/NELSON%20STEVEhttps://adp.library.ucsb.edu/names/100108https://nashvillesongwritersfoundation.com/Site/inductee?entry_id=1840A. S. NelsonMn. Steve NelsonNelseonNelsonNelson S.Nelson SteveNelson/NelsonNelssonNilssonS NelsonS. MelsonS. NelsonS. NelsonasS. NelssonS. NesonS.NelsonSt. NelsonSteven Nelson + +710734Melvin EndsleyAmerican musician, singer and songwriter, born January 30, 1934 in Drasco, Arkansas – died August 16, 2004 in Drasco, Arkansas. Inducted into the Arkansas Entertainers Hall of Fame (1998). Member of the KWKH Louisiana Hayride. Best known for writing "Singing the blues".Needs Votehttps://tims.blackcat.nl/messages/melvin_endsley.htmhttps://en.wikipedia.org/wiki/Melvin_Endsleyhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=104338&subid=0https://www.hillbilly-music.com/artists/story/index.php?id=11174http://countrydiscoghraphy2.blogspot.com/2016/01/melvin-endsley.htmlB. EndsleyEadsleyEndesleyEndleyEndlsleyEndsleyEndsley - MelvinEndsley-MelvinEndsley/MelvinEndsloyEndslyEngsleyEnsleyEudsleyGndsleyHeaxleyM EndsleyM. AndsleyM. EdnsleyM. EdsleyM. EmcesleyM. EndlseyM. EndslayM. EndsleyM. EnsleyM. EnvsleyM. HendsleyM.EndsleyMalvinMalvin EndsleyMalwin EndsleyMark EndsleyMelvin - EndsleyMelvin AndslyMelvin EadsleyMelvin EndlseyMelvin EndslayMelvin EnsleyMelvin, EadsleyMelvin, EndsleyMelvin-EndsleyMelvis EndsbyMelvis EndsleyMervin EndsleyN. EndsleyN.EndsleyМельвин Эдсли + +710823Sidney ClareAmerican comedian, dancer and composer. + +Born 15 August 1892 in New York City, New York, USA. +Died 29 August 1972 in Los Angeles, California, USA. +Inducted into the Songwriters Hall of Fame in 1970. +Popular songs he wrote/co-wrote include " Weep No More, My Mammy" (with Sidney D. Mitchell & Lew Pollack), "Please Don't Talk About Me When I'm Gone" (co-written by Sam H. Stept), "On the Good Ship Lollipop" (co-written by Richard A. Whiting), "Me and the Boy Friend" (co-written by James V. Monaco) and " I'd Climb the Highest Mountain (If I Knew I'd Find You)" (co-written by Lew Brown).Needs Votehttps://en.wikipedia.org/wiki/Sidney_Clarehttps://www.imdb.com/name/nm0163280/https://www.songhall.org/profile/Sidney_Clarehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105224/Clare_Sidney?Matrix_page=11https://adp.library.ucsb.edu/names/105224B. ClaireB. LaneC.C. ClaireC. ClareC. SidneyCaire SidneyCalre SidneyClairClaireClaire SidneyClaraClarcClareClare SidneyClaresClarkeClarsClaseClearJ. ClareJohnny ClareM. ClareS ClareS, ClareS. ClaireS. ClareS. ClarkS. ClarkeS.ClareSid ClareSidneySidney ClaireSidney ClarkSidney ClarkeSydney ClaireSydney Clare + +711106Valery GergievValery Abisalovich Gergiev (Russian: Валерий Абисалович Гергиев; Ossetian: Гергиты Абисалы фырт Валери, romanized: Gergity Abisaly fyrt Valeri)Russian conductor. Born 2 May 1953 in Moscow, Soviet Union. +He studied at the [url=https://www.discogs.com/label/1513139-St-Petersburg-Conservatory]Leningrad Conservatory[/url]. His debut as a conductor at the [l351112] came on 12 January 1978. In 1988, he was appointed Music Director of the Mariinsky Theatre, and, in 1996, he became its Artistic and General Director (leading the orchestra and opera and ballet companies). Principal conductor of [a1886097] (1988-present), [a1024263] (1995-2008), [a262940] (2006 to 2015), [a261451] (2015 to 2022). He served as principal guest conductor of [a1411686] from 1997 to 2008. Contracts and positions terminated in March 2022 by [a261451], [a1024263], [a841593], and [a754974]. +Brother of [a=Larissa Gergieva].Needs Votehttp://www.valery-gergiev.ru/en/https://www.facebook.com/valery.gergievhttps://twitter.com/valerygergiev?lang=enhttps://www.instagram.com/v_gergiev/https://soundcloud.com/valery-gergievhttps://en.wikipedia.org/wiki/Valery_Gergievhttps://musicianbio.org/valery-gergiev/https://www.famousbirthdays.com/people/valery-gergiev.htmlhttps://www.imdb.com/name/nm1089813/https://www.mariinsky.ru/company/conductors/gergiev/GergievGergjevV. GergievV.GergievValeri GerghiyevValeri GergievValeri GergijevValerie GergejewValerij GergejewValerij GergievValerij GergijevValery GegrievValery GergjevValéry GergievValéry Gergiev*W. GeorgijewW. GergijewВ. ГергиевВалерий ГергиевГергиевワレリー・ゲルギエフLondon Symphony OrchestraMünchner PhilharmonikerRoyal Philharmonic OrchestraRotterdams Philharmonisch OrkestOrchestra Of The Mariinsky Theatre + +711322Matti JurvaLennart Mathias Jurva né Lennart JurvanenFinnish singer, songwriter, musician and entertainer, born on April 29, 1898 in Helsinki; died on September 16, 1943 in Helsinki. +Needs Votehttps://adp.library.ucsb.edu/names/100957J. MaleJurvaM. JurvaM.JurvaМатти ЮрваErkki SalamaMatti Jurva Ystävineen + +711355Antero PäiväläinenJarkko Matti Antero PäiväläinenA Finnish drummer, producer and promoter. He worked in Finnish record company Discophon in the 1970s and [l=Polarvox Oy] in the 1980s. Born on May 19, 1944 in Hämeenlinna, Finland.Needs Vote"ANDE" Päiväläinen"Ande""Ande" PäiväläinenA. PäifviäA. PäiväläinenAndeAnde PäiväläinenAntero "Ande" PäiväläinenAnton PäifviäPäiväläinenThe Strangers (2)Pepe & ParadiseThe Esquires (2)FrankiesThe Islanders (5)The New Strangers (2) + +711357Walter RaeValto TynniläCorrectN. RaeRaeV. RaeValter RaeW RaeW, RaeW. RaeW.RaeWalther RaeWaltter RaeValto TynniläOla AllanVale Tynys + +711370Steven RickardsClassical countertenor, born 19 May 1955.Needs Votehttp://www.stevenrickards.com/RickardsTheatre Of VoicesChanticleerThe Smithsonian Chamber Chorus + +711658Tillman FranksTillman Ben Franks, Sr.September 20, 1920 - October 26, 2006 Honored with the Shreveport Walk of Stars (2003) An American bassist and songwriter and the manager for a number of country music artists including Johnny Horton, David Houston, Webb Pierce, Claude King, and the Carlisles. Born Stamps, Arkansas.Needs Votehttp://www.tillmanfranks.com/http://www.myspace.com/tillmanfrankshttp://www.hillbilly-music.com/https://en.wikipedia.orghttps://adp.library.ucsb.edu/names/357376"Franks"FrankFrank TilmanFranksFranks - TillmanFranks TillmanI. FrankT FranksT, FranksT. F. FrankT. FranksT. Franks.Tellman FranksTillma FranksTillmanTillman B. FranksTillman FrankTillman Franks, Jr.Tillman-FranksTillman/FrancisTillnan FranksTilman FranksТ. ФрэнкTillman Franks SingersTillman Franks And His Rainbow BoysTillman Franks Orchestra + +711770Ian HoneymanTenor vocalist.CorrectHoneymanI. HoneymanJan HoneymanIl FondamentoRed ByrdThe Harp ConsortThe Clerkes Of Oxenford + +711873Chris BarrettBritish sound engineer. + +Recordist at [l890708], expertise Pro Tools operator and score editor within film scoring.Needs Votehttps://www.airstudios.com/chris-barrett/https://www.imdb.com/name/nm1223253/Chris "Monkey Rage" BarrettChris "The Cutlass" BarrettChris BarettChris BarnettChris BarrattChris Barret + +712217Arthur FuhrmannArthur Heinrich FuhrmannGerman-born conductor and musician who moved to Finland in 1955 and lived there until his death. Born on March 11, 1930 in Hannover, Germany. Died on February 5, 2013 in Helsinki, Finland. Needs VoteA FuhrmanA FuhrmannA. FormanA. FuhrmanA. FuhrmannA. FurmanA.FuhrmanA.FuhrmannA.FurmanArthur FuhrmanArthur FurmanF. ArthurFuhrmanFuhrmannFuhrmann ArthurJoht. Arthur FuhrmannF. ArthurA. AjomiesArthur Fuhrmannin OrkesteriArthur Fuhrmannin Yhtye + +712500Seiji Ozawa小澤 征爾 (おざわ せいじ Ozawa Seiji)Japanese conductor +Co-founder of the [a1092483] (1984) and founder of [a2532384] (1990). + +Born September 1, 1935 in Fenytien, Manchukuo (under rule of Imperial Japan; now Shenyang, China) +Died February 6, 2024 in Tokyo, Japan (aged 88) + +Ozawa was a noted advocate of 20th century classical music and highly acclaimed for his interpretations of Romantic oeuvres. +Father of [a=Seira Ozawa]Needs Votehttps://en.wikipedia.org/wiki/Seiji_Ozawahttps://www.britannica.com/biography/Seiji-Ozawahttps://web.archive.org/web/20031002201935/https://www.sonyclassical.com/artists/ozawa/https://www.deutschegrammophon.com/en/artists/seijiozawa/news/seiji-ozawa-passes-away-at-88-272039https://www.imdb.com/name/nm0654724/OsawaOzawaS. OzawaSeija OzawaSeiki OzawaSeji OzawaSenji OzawaΣεϊζι ΟζαουαСеиђи ОзаваСейджи Озава小沢 征爾小沢 征爾 = Seiji Ozawa小沢征爾小澤 征爾小澤 征爾 = Seiji Ozawa小澤征爾小澤征爾 = Seiji Ozawa + +712701Michael Baker (6)Michael BakerTimpani playerNeeds VoteRoyal Philharmonic Orchestra + +712722Kurt StiehlerGerman classical violinist, born 1910 and died 1981.Needs VoteProf. Kurt StiehlerGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +713001Geoff MorrowGeoffrey Stanton MorrowPart of the songwriting and production team [a4844029] with [a=Chris Arnold (2)] and [a=David Martin (8)]. +Also publisher [l=Geoff Morrow Music], b.16 May 1942, London, England. +Has written top 10 hits for [a=Billy Fury] and [a=Dave Dee]Needs Votehttps://en.wikipedia.org/wiki/Geoff_MorrowC. MorrowG, MorrowG. MarrowG. MorrowGeoffGeoff NorrowGeoffrey MorrowGeoffrey Stanton MorrowJ. MorrowJeoff MorrowMorrowДжефф МорроуButterscotch (2)Arnold, Martin And Morrow + +713004Hal BlairHarold Keller BrownAmerican songwriter, born November 26, 1915 in Kansas City, Missouri and died February 2, 2001 in Biggs, California.Needs Votehttp://www.nashvillesongwritersfoundation.com/a-c/hal-blair.aspxhttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Hal+Blair&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=bmiBalirBlaerBlaiBlaierBlairBlair, HBlair, HalBlaireBlareH BlairH. BlainH. BlairH. BlareH.BlairHail BlairHal BlaineHall BlairJ. BlairJohn BlairM. BlairR. Blair + +713461Guro AsheimClassical violinistNeeds VoteGuro AasheimOslo Filharmoniske OrkesterKringkastingsorkestretCikada Ensemble + +713519The SixteenVocal and instrumental ensemble founded in 1979. The Sixteen perform early English polyphony, masterpieces of the Renaissance and a diversity of 20th century music. + +The choir is occasionally accompanied by period instrument ensemble. +From 1992, instrumentalists working with The Sixteen were sometimes credited as [a2768019]. Around 1997, the name was changed to [a1952333]. Since about the end of 2008, non-choral performers have not been credited as an entity independent from The Sixteen. Accompanists associated with The Sixteen are currently (2020) listed on The Sixteen's website separately from the vocalists but do not have a collective name. + +The Sixteen's conductor and founder, [a729552], has directed the group throughout Europe, America and the Far East, gaining a distinguished reputation through a variety of projects and over seventy recordings.Needs Votehttps://thesixteen.com/https://web.archive.org/web/20080616074719fw_/http://www.the-sixteen.org.uk/about_us/the_sixteen.htmhttps://web.archive.org/web/20030216220818/http://www.thesixteen.com/https://www.facebook.com/thesixteenchoir/https://www.instagram.com/thesixteenchoir/https://x.com/TheSixteenhttps://www.youtube.com/user/16choir/Choeur "The Sixteen"FlechterPrincipals From The SixteenSoloists From The SixteenSoloists Of The SixteenThe Sixteen ChoirThe Sixteen Choir & OrchestraThe Sixteen Choir And OrchestraThe Sixteen Choir and OrchestraThe Sixteen Chorus And OrchestraThe Sixteen KamaraegyüttesThe Sixteen Orchestraザ・シックスティーンJeremy BuddNigel ShortStephen SaundersPaul NiemanWilliam KnightUtako IkedaBen DaviesDavid WoodcockRobin JeffreyRichard CampbellTessa BonnerKim PorterMatthew VineJoe WaltersRobert HowesTom RaskinPatricia ForbesCrispian Steele-PerkinsJulia WhiteMicaela HaslamDavid CleggAndrea MorrisJulia DoyleAlex AshworthJulia CooperCarys LaneIldiko AllenIan Wilson (6)Grace DavidsonAndrew OllesonChristopher RoyallJames HollidayBen RayfieldSam EvansAdrian LoweSimon BerridgeJulian EmpettCharlotte MobbsHarry ChristophersMark DobellIan AitkenheadCharles GibbsDavid RoyIan Watson (2)Henrietta WayneSophie BarberKirsty HopkinsJames Bowman (2)Mark PadmoreRobert Jones (3)Thomas RandleWilliam O'SullivanMartin Kelly (3)Michael ChanceNancy ArgentaJohn ChimesRobert MacdonaldHoward MilnerNicola JenkinValerie DarkePaul NicholsonAlastair RossMiles GoldingMary SeersLynne DawsonAnnette IsserlisJane NormanNeil MacKenzieAndrew Watts (2)Sophia McKennaJulie Miller (2)Rachel BeckettLucinda HoughtonWilliam MissinMark CaudleImogen Seth-SmithPauline SmithWilliam ThorpSusan SheppardIan PartridgeAnthony RobsonWalter ReiterNicolas RobertsonCatherine LathamEllen O'DellNicholas LogieCatherine FordPhilip NewtonSimon BirchallHelen OrslerCharles FullbrookRebecca MilesRoy MowattAmanda McNamaraCaroline TrevorCatherine DenleySally DunkleyDavid Miller (7)Deborah Miles-JohnsonChristopher PurvesJeremy WhiteHenry WickhamBenjamin OdomMatthew BrightLynda RussellTimothy Jones (2)Libby CrabtreeMartin Lawrence (3)John Mark AinsleyPhilip DaggettFiona ClarkeSophie DanemanRoger CleverdonRuth DeanMichael BundyPaul Agnew (2)Lisa BeckleySarah SextonStephen Jones (7)Andrew CarwoodRebecca OutramRobert Evans (2)Alison GoughTimothy KraemerAndrew Giles (2)James Ellis (3)Wilfried SwansbouroughJane CoeMark Peterson (3)Laurence CummingsHelen GrovesElizabeth CraggJeremy WestAngharad GruffyddCatherine DuboscReiko IchisePenny VickersFrancis SteeleMichael George (3)James GilchristRobin BlazeJonathan ArnoldJan WaltersMichael LeesJulie CooperFrances KellyRoger MontgomeryKatie PringleSusan AddisonDavid BlackadderPaula BottEligio QuinteiroSimon Wall (2)Theresa CaudleSarah ConnollyBarnaby RobsonJeremy WardPeter FenderMatthew DixonSimon Jones (10)Daniel CollinsKatarina BengtsonPhilip CaveSteven HarroldAbigail NewmanKeith McGowanMatthew LongRobert QuinneyJoseph CrouchJulian StockerGeorge PooleyDavid Martin (22)Stuart Young (2)Robin TysonNoel RainbirdCherry ForbesWilliam PurefoyWilliam UnwinAlexandra BellamyPeter BuckokeEamonn DouganAlison HillPeter HaywardRobin BardaChristopher HodgesSimon BurchallPeter BurrowsMarc Ashley CooperSally Jackson (2)David BrookerTim Lyons (4)Jean PatersonJimmy Holliday (2)Rachel HelliwellHilary StockDaniel EdgarPhilip DaleCecilia OsmondElin Manahan ThomasJohn HutchinsRuth MasseyKatie HellerPhilip LawsonCelia HarperChristine GarrattWilliam BalkwillKaty HillZoe ShevlinJan SpencerAlison SmartStefanie HeichelheimEmma AlterClaire DuffHuw DanielBen Davies (5)Matthew BrookRebecca Jones (4)Christopher PigramRobert FarleyMartha McLorinanEmily White (4)Frances Jackson (2)William GauntClaire SansomAlexandra KidgellJoseph WaltersHannah McLaughlinHannah TibellAndrea Jones (2)Anneke ScottClare PenkeyClaire Mera-NelsonSarah MoffattBenjamin BaylSiona SpillettAllison Hill (2)Nicola-Jane KempRosemary HattrellLawrence Whitehead (2)Edward McMullanRory McCleeryEmilia MortonKirsten LinderAngus McPheeJoshua CooterRuth ProvostCamilla HarrisHugo HymasJonathan HanleyAmy Carson (2)Daniel Weitz (2)Sarah Humphries (2)Rebecca LeggettNathan Harrison (3)Helen Roberts (5)Jane Campbell (2)Gavin KibbleTom Castle (4)Benjamin Vonberg-ClarkElisabeth Paul (2)Jonathan Rees (4) + +713679Rainer MaillardGerman recording engineer (Tonmeister) and producer of classical recordings, born 30 November 1960 in Berlin. He works at [a1110370], and teaches in Detmold.CorrectEBS RMR. MaillardRMRM*Rainer Maillard (MBS)Rainer MaillartReiner Maillardライナー・メイラールドEmil Berliner Studios + +713851Ulf Peder OlrogUlf Peder Thorvaldsson OlrogSwedish ethnology-researcher, program manager on [l29162], artist and composer +27. Feb. 1919 - 13. Feb. 1972Needs Votehttps://sv.wikipedia.org/wiki/Ulf_Peder_OlrogO. P. OlrogOlrogOrlogP OlrogP. OlrogPeder OlrogU P OlrogU-P OlrogU-P. OlrogU. OlrogU. P OlrogU. P. OlrogU. P. OrlogU. P. UlrogU.P OlrogU.P. OlrogU.P. OrlogUP OlrogUlf OlrogUlf P. OlrogUlf P. OrlogUlf P.OlrogUlf Peder OldrogUlf Peder OlrofUlf Peter OlrogUlf-Peder OlrogUlf. P. Olrog + +714002Morgan LewisWilliam Morgan LewisAmerican composer, writer, director and choreographer (1906 - 1968), known for his song "How High the Moon" with [a714004].Correcthttps://en.wikipedia.org/wiki/Morgan_Lewis_(songwriter)https://www.allmusic.com/artist/morgan-lewis-mn0000501474https://pl.rateyourmusic.com/artist/morgan_lewis/credits/https://www.imdb.com/name/nm1200498/https://adp.library.ucsb.edu/names/100275DewisH. LewisHamiltonJ. LewisL. MorganLevisLewisLewis Jnr.Lewis Jr.Lewis MorganLewis jr.Lewis, Jr.Lewis. Jr.LouisM .LewisM LevisM LewisM. LewisM. Lewis.M. MewisM.LewisMarilyn LewisMorganMorgan - LewisMorgan / LewisMorgan LouisMorgan LuisMorgan, LewisMorgan-LewisMorgan/LewisMorgen LewisN. LewisNorman LewisW. K. LewisW. LewisW. Lewis, Jr.W. M. LewisW. M. Lewis Jr.W. M. Lewis, Jr.W. MorganW. Morgan LewisW.M. LewisWilliam LewisWilliam Lewis JrWilliam Lewis Jr.William Lewis, Jr.William M Lewis Jr.William M. Jr. LewisWilliam M. LewisWilliam M. Lewis Jr.William M. Lewis, Jr.William Morgan LewisWilliams M. LewisWm M. LewisWm M. Lewis, Jr.Wm. Lewis Jr.Wm. Lewis, Jr.Wm. M. LewisЛьюисМ. ЛьюисУ. М. Льюис + +714004Nancy HamiltonAmerican lyricist, writer, actress, film director and producer, born July 27, 1908 in Sewickley, Pennsylvania and died February 18, 1985 in New York City, New York.Needs Votehttp://www.jazzbiographies.com/Biography.aspx?ID=48http://www.imdb.com/name/nm0358071/http://asteria.fivecolleges.edu/findaids/sophiasmith/mnsss476_bioghist.htmlhttps://en.wikipedia.org/wiki/Nancy_Hamiltonhttps://adp.library.ucsb.edu/names/100276HamiltonHamilton.HamptonJ.HamiltonL. HamiltonLewisM. HamiltonN HamiltonN HamptonN. HamiltonN. HammiltonN. HamptonN.HamiltonNamey HamiltonNancy HamptonNancy LewisNanoy HamiltonWalter HamiltonН. Хэмилтон + +714652Melvin TaxCredited as saxophone and flute playerNeeds VoteMel TaxTaxSy Oliver And His OrchestraWalter Legawiec & The Polka Kings + +714667Freddie WebsterAmerican jazz trumpeter, born 8 June 1916 in Cleveland, USA, died 1 April 1947 in Chicago, US +Important voice in the formulation of bebop. A big influence on his peers Miles Davis and Dizzy Gillespie before his death at the age of 30. +Needs Votehttp://www.jazzdocumentation.ch/mario/marioindex.htmlF. WebsterFred WebsterFreddy WebsterWebsterJimmie Lunceford And His OrchestraLouis Jordan And His Tympany FiveBilly Eckstine And His OrchestraEarl Hines And His OrchestraLucky Millinder And His OrchestraBenny Carter And His OrchestraDeLuxe All Star BandFrank Socolow's Duke Quintet + +714720Wolfe GilbertLouis Wolfe GilbertA Russian-born American songwriter. +Born August 31, 1886, Odessa, Russian Empire, died: July 12, 1970, Los Angeles, California, USA + +Gilbert began his career touring with John L. Sullivan and singing in a quartet at small Coney Island café called "College Inn", where he was discovered by English producer Albert Decourville. Decourville brought him to London as part of The Ragtime Octet. Gilbert's first songwriting success came in 1912 when F. A. Mills Music Publishers published his song Waiting For the Robert E. Lee (melody by composer Lewis F. Muir). + +Gilbert moved to Hollywood in 1915, and began writing for film, television, and radio (including the Eddie Cantor show). Gilbert wrote the theme lyrics for the popular children's Television Western Hopalong Cassidy, which first aired in 1949 on NBC. He was an innovator in his field, having been one of the first songwriters to begin publishing and promoting a catalog of his own works. He served as the director of ASCAP from 1941 to 1944, and was inducted into the Songwriters Hall of Fame in 1970.Needs Votehttp://en.wikipedia.org/wiki/L._Wolfe_Gilberthttps://www.imdb.com/name/nm0318140/?ref_=nv_sr_srsg_1https://adp.library.ucsb.edu/names/108737Al Wolfe - GilbertB. DarcyC. WolfeC. Wolfe-GilbertC.W. GilbertC.Wolfe GilbertD.W. GilbertE. Albert GilbertE. W. GilbertE. W. GilbertFilbertG. L. WolfeG. WolfeG.L. WolfeG.L.WolfeG.WolfeGIlbertGibertGiilbertGilbdertGilberGilbergGilbertGilbert I. WolfeGilbert L WolfeGilbert L. WolfeGilbert WolfeGilbert, L. WolfeGilbert, WolfeGilbert-WolfeGilbert/L. WolfeGilbertsGillbertGillertGilvertGlibertGolbertGuilbertI. GilbertI. W. GilbertJ. G. GilbertJ. GilbertJ. Wolfe GilbertJoe GilbertL GilbertL W GilbertL W Gilbert-ML Wolfe GilbertL. G. WolfeL. GilbertL. GuilbertL. W. GibertL. W. GilbertL. Walfe GilbertL. Wolf GilbertL. Wolf-GilbertL. WolfeL. Wolfe - GilbertL. Wolfe / GilbertL. Wolfe GibertL. Wolfe GilberL. Wolfe GilbertL. Wolfe Gilbert-L. Wolfe GilbetL. Wolfe GilvertL. Wolfe GlbertL. Wolfe, GilbertL. Wolfe- GilbertL. Wolfe-GilbertL. Wolfe/GilbertL. Wolfo GilbertL. Wolse GilbertL. Wolse-GilbertL.GilbertL.W. GilbertL.W. WolfeL.W.GilbertL.Walfe GilbertL.Wolfe GilbertLW GilbertLouis Wolfe GilbertR. GilbertS. Wolfe GilbertSilbertW. GibertW. GilbertW. L. GilbertW.GilbertW.L. GilbertW.L.GilbertWolf GilbertWolf-GilbertWolfeWolfe - GilbertWolfe / GilbertWolfe L. GilbertWolfe, GilbertWolfe-GilbertWolfe/GilbertWolffWoolfe-GilbertZ. GilbertВ. ДжильберВольф-ДжильбертДжильбертЛ. Вольф-ДжильбертЛ. ХильбертХилбернLouis Gilbert + +715021FlarupThomas FlarupDanish DJ and owner of the Future Club organization including [l=Future Club Records]. + +Flarup, from Denmark, has been playing as club-DJ since 1997 where the passion for the harder styles inspired him starting playing progressive, hard and upfront into the millennium. + +Flarup appear in line-up together with artists as Blutonium Boy, DJ Neo, Showtek, Headhunterz, Donkey Rollers, Technoboy, Zany, Dana, Deepack, Tatanka, Zatox, Max. B. Grant, Cosmic Gate, Scot Project, Bas&Ram, Talla2XLC, Marcel Woods, DJ Dean, Jesselyn, Jowan and many more. + +Flarup has also earlier been presented at LoveParade (1.000.000 guests), G-Move Parade in Kiel, Germany (100.000 guests), Tunnel Club and Tunnel events (Hamburg), Airbeat One Festival, Germany (15.000 guests), Mega Trance ..03 in Copenhagen (15.000 guests), Xstatic – Scandinavia.. Leading Harder Dance Music Event (5000 guests), FutureClub (DK) and nearly all events and Festivals in Denmark such as: Hangarfestival (5.000 guests), Mainstage at Karneval, Aalborg (20.000 guests), DHB Mainstage (20.000 guests) and much more. + +On August 23, 2009 the ownership of the Hardstyle label [l=Blutonium Media International] was given to Flarup from Blutonium Boy ([a=Dirk Adamiak]) who has announced his retirement. +Correcthttp://djflarup.dk/http://www.myspace.com/djflarupThomas Flarup + +715246Pierre-André DoussetFrench songwriterCorrectA. DoussetAndre P. DoussetAndré DoussetDouccetDoucetDousetDousserDoussetP A DoussetP A. DoussetP-A DoussetP-André DoussetP. A. DoussetP. A. - DoussetP. A. DoucetP. A. DoussetP. Andre DoussetP. André DoucetP. André DoussetP. DoucetP. DoussetP.- A. DoussetP.-A DoussetP.-A. DoucetP.-A. DoussetP.-André DoussetP.A DoussetP.A. DoucetP.A. DousselP.A. DoussetP.A.DoussetP.DoussetP.Q. DoussetPA DoussetPh.-A. DoussetPierre André DoussetPierre-Andre Maurice DoussetPierre-André DoucetPierre-André/DoussetП. А. Дуссе + +715301Richard AddinsellRichard Stewart AddinsellBritish composer. + +Born: January 13, 1904 in London, U.K. +Died: November 14, 1977 in Brighton, U.K.Needs Votehttps://en.wikipedia.org/wiki/Richard_Addinsellhttps://www.imdb.com/name/nm0005941/AddinselAddinsellAdensellAdinselAdinsellD. AddinsellEddinsellGeorge AddinsellJ. AddinsellM. GordonR AddinsellR. AddinsellR. AddinselR. AddinsellR. AddinselliR. AddinsollR. AddnsellR.S. AddinsellRaddinsellRiccardo AddinselRichar AddinsellRichard AddinselRichard S. AddinsellRichard Stewart Addinsellアディンセル阿汀塞尔 + +715403Helen DeutschAmerican screenwriter, journalist and songwriter. +Born in New York City (21 March 1906 - 15 March 1992). +Deutsch graduated from Barnard College. She was managing a theater and writing theater reviews before she dip her foot into screenwriting. She wrote over 20 screenplays in her day including co-writing "National Velvet" (1944) (a film which was nominated for four and won 3 Academy Awards), "King Solomon's Mines" (1950), "The Unsinkable Molly Brown" (1964) (which was nominated for six and won five Academy Awards), and "Valley of the Dolls" (1967). +Her chief musical collaborators included Jay Livingston, Bronislaw Kaper, and Bernard Green.Needs Votehttp://en.wikipedia.org/wiki/Helen_Deutschhttps://www.imdb.com/name/nm0222079/A. DeutschDeuschDeutchDeutschDeutsch, HDeutscheDeutshDuetschEllen DutchH. DeutchH. DeutschH. DuetschH.DeutschHelen DeutchHelen H. DeutschHelene DeutschHeleu DeusescheK. DeutschP. KaperR. DeutschДойч + +715404Bronislaw KaperBronisław KaperBronisław Kaper (February 5, 1902 – April 26, 1983) was a Polish film composer who scored films and musical theater in Germany, France, and the USA. +The American immigration authorities misspelled his name as Bronislau Kaper. +He was also variously credited as Bronislaw Kapper, Benjamin Kapper, and Edward Kane.Needs Votehttps://en.wikipedia.org/wiki/Bronis%C5%82aw_Kaperhttps://www.imdb.com/name/nm0006147/https://adp.library.ucsb.edu/names/102422B KaperB. CaperB. CoperB. KaparB. KaperB. KapperB. KasperB. KatterB. KoperB. LaperB. koperB.KaferB.KaperBernie CaperBernie CapperBlonislaw KaperBob KaperBonislaw KaperBorislau KaperBorislav KaperBornislav KaperBornislaw KappereBr. KaperBranislau KaperBranislaus CaperBranislav KaperBranislaw CaperBranislaw KaperBranislow KaperBraunislav KaperBrenislaw KaperBrodislau KaperBromislaw KuperBronilau/KaperBronilawKaperBronis Lau KaperBronisbau KaperBronisian KaperBronisla KaperBronislam KaperBronislan KaperBronislas KaperBronislau - KaperBronislau - KapirBronislau HaperBronislau KaperBronislau KasperBronislau LaperBronislau/KaperBronislaus KaperBronislav KaperBronislav KapersBronislav KapperBronislav-KaperBronislawBronislaw / KaperBronislaw CaperBronislaw KapeBronislaw KapperBronislaw KasperBronislaw-KaperBronislaw/KaperBronislo KaperBronislow KaperBronisław KaperBronsiaus KaperBronsilau KaperBronsilaw KaperBronsislau KaperBronslau KaperBronslau KaperBronslav KaperBrorislaw KaperBrosnilau KaperBrounislau KaperCaperDr. B. KaperDr. Bronislaw KaperDr. KaperDr. P. KaperDr. R. KaperE. KaperHaperK.K. BronislauK. BronislawKAPERKaderKaparKapelKaperKaper BKaper BronislauKaper BronislawKaper, BKaper, BronislauKaper-BronislavKaper-BronsilauKaperiKapersKaplerKapnerKapperKarperKasperKepirKoperKuperLaparP. KaperRaperRogerWalter Bronislaw KaperWilly KaperkapperБ. КаперБ. КейперКаперКаперсКейперКейфордКепърКэперЮ. Капера + +715919Александр ПушкинАлександр Сергеевич ПушкинGreat Russian poet, novelist and playwright, often considered as one of the greatest Russian poets and the founder of modern literature in Russia. +Born: June 6, 1799 (May 26 O.S.), Moscow, Russian Empire +Died: February 10 (January 29 O.S.), 1837, Saint-Petersburg, Russian Empire +Needs Votehttp://pushkin-art.ruhttp://www.aleksandrpushkin.net.ruhttp://ru.wikipedia.org/wiki/%D0%9F%D1%83%D1%88%D0%BA%D0%B8%D0%BD,_%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B0%D0%BD%D0%B4%D1%80_%D0%A1%D0%B5%D1%80%D0%B3%D0%B5%D0%B5%D0%B2%D0%B8%D1%87http://en.wikipedia.org/wiki/Alexander_Pushkinhttps://adp.library.ucsb.edu/names/102739A. PoesjkinA. PouchkineA. PoushkinA. PuschkinA. PushkinA. PuskinA. PuszkinA. PuŝkinA. PuškinA. PuškinasA. PuškinsA. S. PuschkinA. S. PushinA. S. PushkinA. S. PuszkinA. S. PuškinA. S. PuškinaA. S. PușkinA. Sz. PuskinA.PuškinasA.PuškinsA.S. PouchkineA.S. PushkinA.S. PuszkinA.S. PuškinA.S. PușkinA.S.PushkinA.S.PuškinAleksandar PuškinAleksander PouchkineAleksander PushkinAleksander PuszkinAleksandr PuschkinAleksandr PushkinAleksandr PuškinAleksandr S. PuškinAleksandr Sergeevič PuškinAleksandr Sergeeviđ PuškinAleksandr Sergeyevich PushkinAleksandras Sergejevičius PuškinasAleksandre PuşkinAleksandrs PushkinAleksandrs PuškinsAlekszandr PuskinAlekszandr Szergejevics PuskinAlex PushkinAlexander PoesjkinAlexander PuschkinAlexander PushkinAlexander S. PuschkinAlexander Sergeevich PushkinAlexander Sergejevič PuškinAlexander Sergejewitsch PuschkinAlexander Sergejwitsch PuschkinAlexander Sergeyevich PushkinAlexandr PushkinAlexandr PuskinAlexandr PuškinAlexandr S. PuškinAlexandr Sergejevič PuškinAlexandre PouchkineAlexandre PushkinAlexey PushkinPouchinePouchkinePoushkinPuschkinPushkinPuskinPuškinPușkinΑλ. ΠούσκινА. ПушкинА. PushkinА. ПушкинА. ПушкинаА. С. ПушкинА.ПушкинА.С. ПушкинА.С.ПушкинАлександр Сергеевич ПушкинАлександър ПушкинО. ПушкінОлександр ПушкінПушкинПушкин А. С.С. Пушкинאלכסנדר פושקיןアレキサンドル・プーシキン普希金 + +716084Nikolaus HarnoncourtJohann Nikolaus, Graf de La Fontaine und d'Harnoncourt-UnverzagtAustrian conductor, cello and viol player, born in Berlin, Germany, December 6th, 1929, died in St. Georgen im Attergau, Austria, March 5th, 2016. +In 1953 he founded with his wife [a=Alice Harnoncourt] the [a=Concentus Musicus Wien] as a specialist ensemble for the performance on authentic instruments of baroque and classical music. +From 1971 to 1990 he recorded, together with [a=Gustav Leonhardt], all Bach's sacred cantatas. +Since 1970 he has worked as conductor with most of the great European orchestras and many renowned soloists, both in the opera house and the concert hall. +His recording activities include the operas, the oratorios and the symphonic works of the 18th and 19th century (such as Beethoven's, Schumann's and Schubert's complete symphonies).Needs Votehttps://www.harnoncourt.info/https://styriarte.com/https://en.wikipedia.org/wiki/Nikolaus_Harnoncourthttps://www.imdb.com/name/nm0363704/HarnoncourtN. HarnoncourtNIkolas HarnoncourtNicholas HarnoncourtNicholaus HarnoncourtNicolas HarnoncourtNicolaus HarnoncourtNikolaus D'HarnoncourtNikolaus d'HarnoncourtНиколаус Харнонкуртニコラウス・アーノンクールニコラウス・アーノンクールニコラウス・アーノンクールConcentus Musicus WienThe Chamber Orchestra Of EuropeConsort Of ViolsLeonhardt Baroque Ensemble + +716127Horacio FerrerUruguayan poet, broadcaster, reciter and tango lyricist, born 2 June 1933 in Montevideo, Uruguay, died December 21, 2014. +From 1968 to 1972 was part of a composer-writer duplet with [a=Astor Piazzolla]Needs Votehttps://en.wikipedia.org/wiki/Horacio_FerrerFerrerFerrer HoracioH. FerrerH.FerrerHoracia FerrerHoracio Arturo FerrerHorácio FerrerM. FerrerOracio FerrerAstor Piazzolla Y Su Orquesta + +716128Héctor De RosasHéctor Ángel González PadillaArgentinian tango singer +(Buenos Aires, 2 Oct.1931 - 26 Jul.2015) +Needs VoteDe RosasHector De RosaHector De RosasHector RosasHéctor De RosaHéctor de RosasAstor Piazzolla Y Su OrquestaAstor Piazzolla Y Su Quinteto + +716138Amelita BaltarMaría Amelia BaltarArgentine tango singer, born 24 September 1940 in Buenos Aires, Argentina. +Singer in [a=Astor Piazzolla Y Su Orquesta] from 1968 to 1972 +Needs VoteBaltarAstor Piazzolla Y Su OrquestaAstor Piazzolla Y Su Quinteto + +716139Cacho TiraoOscar Emilio TiraoArgentinian guitarist and composer +has played with [a162564] +(5 Apr.1941 - 30 May 2007) +Needs Votehttp://elpais.com/diario/2007/06/04/agenda/1180908006_850215.htmlC. TiraoCacho TiradoCh. TiraoOscar "Cacho" TiraoOscar (Cacho) TiraoOscar Emilio TiraoOsher YoredК. ТираоSONNY BOY (7)Astor Piazzolla Y Su OrquestaAstor Piazzolla Y Su Quinteto + +716243Catherine BullockCatherine Bullock-BukkøyBritish violinist and viola player, born 1975 in Weodil, UK. +Principal violist in the Oslo Philharmonic Orchestra and has been guest principal viola in several other orchestras, including the Philharmonia Orchestra.Needs Votehttps://ofo.no/en/musicians/viola/catherine-bullockBullockCatherine Jane BullockCathrin BullockCathrine BullocCathrine BullockOslo Filharmoniske OrkesterThe Roff Ensemble + +716244Eileen SiegelAmerican violinist, born 1963 in Evanston, USA, based in Oslo, NorwayCorrectEileen SieglOslo Filharmoniske OrkesterBorealis (3) + +716249Daniel DalnokiNorwegian violinist, born 1965 in Halden, Norway.Needs VoteDaniel DalnoskiOslo Filharmoniske Orkester + +716250Jørn HalbakkenNorwegian violinist, born 1956 in Oslo, Norway.Needs VoteJorn HalbakkenJørnJørn HallbakkenJørn HaltbakkenOslo Filharmoniske OrkesterØsterdalsmusikkFamilien Halbakken + +716430Dave DreyerDave Dreyer was a composer and pianist. +Born September 22, 1894, Brooklyn, New York (USA), died March 2, 1967, New York City, New York (USA) + +In his early career, he worked as a pianist with vaudeville greats such as [a=Al Jolson] and [a=Sophie Tucker]. In 1923 he worked for the Irving Berlin Music Company as a staff pianist where he stayed until the late 1940’s. From 1929 to 1940, he worked for film studios, contributing songs to scores and eventually became the head of the music department of RKO Radio. In 1947, Dreyer left Irving Berlin Music Company and started his own publishing firm, [l=Biltmore Music Corp.] + +He was inducted into the Songwriters Hall of Fame in 1970. +Needs Votehttp://en.wikipedia.org/wiki/Dave_Dreyerhttp://songwritershalloffame.org/exhibits/C258https://adp.library.ucsb.edu/names/108736A. DreyerBreyerBryerD, DreyerD. DeyerD. DreyerD. DryerD.DreyerDave BreyerDave DrayerDave DryerDavid DreyerDereyerDeyerDrayerDregerDreierDreterDreyerDreyer DaveDreyer, D.DreyersDryerDwyerFreyerMeyerRoseДрейер + +716432Will HarrisSongwriter/Lyricist , b. New York, 14 March, 1900 - d. Chicago, 14 December, 1967. +Most famous composition: "Sweet Sue, Just You".Needs VoteH. WillHarriesHarrisHarris Will, Jr.HarrysJ Will HarrisJ. HarrisJ. W. HarrisTed HarrisW HarrisW J HarrisW. HarrisW. J. HarrisW. Y. HarrisW.HarrisW.J. HarrisWiil J HarrisWil J. HarrisWill J HarrisWill J. HarrisWilliam J. Harris + +716812Franck GéraldGérald André BieselAlso known as "Frank Gérald". French songwriter and composer. +Born: 1928 in in Paris, France. - Died: 5 August 2015 in Paris, France (aged 87). +He began his career in the 1950s as duettist with [a=Pierre Delanoë]. "He was the discreet pen of famous works". He did work for numerous famous French singers like [a=Michel Polnareff], [a=Françoise Hardy], [a=Sylvie Vartan], [a=Brigitte Bardot], et al. +Needs Votehttp://fr.wikipedia.org/wiki/Franck_Géraldhttps://adp.library.ucsb.edu/names/369643https://adp.library.ucsb.edu/names/101582D. GéraldF GeraldF GéraldF. BeraldF. BoraldF. G.raldF. GeralaF. GeraldF. GeralsF. GeranldF. GerardF. GerarldF. GergldF. GerraldF. GeuldF. GèraldF. GéraldF. Gérald.F. GérardF. GérarldF. geraldF. géraldF. ŽerārsF.GeralaF.GeraldF.GéraldFm GeraldFr. GeraldFr. GéraldFr; GéraldFranckFranck GeraldFranck GérardFranck GérarldFrank GeraldFrank GeraltFrank GerarldFrank GéraldFrank GérardG. FranckG. FrankG. GeraldG. GéraldGearldGeradGeraldGerald FrankGerardGerarldGraldGèraldGéraldGérald FranckGérald FrankGérardGérard FrankJ. GeraldJ. GéraldP. GeraldS. Géraldf. géraldЖералоЖеральдФ. ЖеральдФр. ДжералдGérald Biesel + +716866Edwin van de WitteEdwin van de WitteNeeds VoteE. V/d WitteE. Van De WitteE. Van de WitteE. WitteE. van de WitteE. van der WitteE.V/D WitteEdwin V /d WitteEdwin V/D WitteEdwin V/d WitteEdwin Vah De WitteEdwin Van Der WitteEdwin v.d. WitteHeaven's CryStimulatorX-istenzEquipe RevezEnermaticBeyond UnrealFurious (5)Jupiter (11)SilkandStones + +717127Jacques PlanteFrench lyricist and publisher (° Paris, August 14, 1920 - † Paris, July 16, 2003). +Managed [l290787].Needs Votehttp://fr.wikipedia.org/wiki/Jacques_Plante_%28parolier%29http://www.secondhandsongs.com/artist/12816https://adp.library.ucsb.edu/names/354331C. PlanteF. PlanteG. PlanteI. PlauteI.PlanteJ PlanteJ PlantesJ, PlanteJ. PlanteJ. BlanteJ. PLanteJ. PianteJ. PlampeJ. PlanJ. PlaneJ. PlantJ. PlanteJ. PlantesJ. PlantèJ. PlantéJ. PlateJ. PlauneJ. PlinteJ. planteJ.PlanteJacquesJacques PlantéJacques PlateJacques PlauteJacques del PlanteJaques PlanteJaques PlantéJasquesP. PlantePantePlantPlantaPlantePlante / JacquesPlante J.PlantèPlantéPlatePlauteT. PlanteЖ. ПлантЖак ПлантПлантプラントラリュHarold JeffriesWilliam David (4)Les Bass' Harmonistes + +717185Billy HayesAmerican composer, author and guitarist. +Born on February 17, 1906 in New York City, NY – died on August 12, 1993 in Brooklyn, NY. +He joined ASCAP in 1948, and his chief musical collaborators included [a688976] and [a727192]. His most known composition is "Blue Christmas". Also co-wrote "Tomorrow's Just Another Day To Cry" with [a=Rosalie Allen]. Often associated with the publisher [l=R.F.D. Music]. Contact man for Dawn Music +[b]Not to be confused with US composer [a=Billy Hays] (1920/30s) or US Nashville country songwriter [a=Bill Hayes (14)][/b]. +Needs Votehttps://www.ascap.com/repertory#/ace/writer/13638010/HAYES%20BILLYhttps://adp.library.ucsb.edu/names/356860B. HanesB. HayesB. HaysB. HeiessB.HaijersB.HayesBill HayesBillie HayesBilly HaynesBilly HaysD. HayesDilliy HayesHarveyHayesHayes BillHayes, BillHayes, BillyHaysHeyesHill HayesJ. HayesLee Hayeshayesヘイズ + +717326William Chatterton Dix14 June 1837 - 9 Sep­tem­ber 1898 + +English hymn-writer. +Needs Votehttp://www.cyberhymnal.org/bio/d/i/dix_wc.htmhttp://en.wikipedia.org/wiki/William_Chatterton_Dixhttps://adp.library.ucsb.edu/names/359985ChattertonChatterton DixDixN.C.Dix.Old English AirV.K.DikssW. C. DixW. ChattertonW. Chatterton DixW. DixW.C. DixW.C.DixWC DixWill C. DixWilliam C DixWilliam C. DixWilliam ChattertonWilliam Chetterton DixWilliam DixWilliam G. DixWilliams C. DixWm. C. DixWm. Dix + +717366Jared SacksSound engineer and producer of classical music recordings, he runs [l107289] since 1990.Correcthttp://www.channelclassics.com/C Jared SacksC. Jarec SacksC. Jared SachsC. Jared SacksC. Jared sacksC.Jared SacksJared C. SacksJared SachsJarred Sacks + +717492Pekka Juhani HannikainenPekka Juhani HannikainenBorn on December 9, 1854 in Nurmes, Finland. A Finnish composer and choir leader. He founded [a=Ylioppilaskunnan Laulajat]. + +Died on September 13, 1924 in Helsinki, Finland. +Needs Votehttps://adp.library.ucsb.edu/names/102959HannikainenJuhani HannikainenP J HannikainenP. HannikainenP. J . HannikainenP. J HannikainenP. J. HannikainenP.J. HannikainenP.J.HannikainenPJ HannikainenPekka Hannikainen + +717949Noel RegneyLeon SchliengerFrench-born American songwriter & World War II veteran. +Born August 19, 1920 in Strasbourg, Bas-Rhin, France. +Died November 25, 2002 in Brewster, New York, USA. +Married to [a928374] (aka [a701637]) (aka [a1667841]) (1951-1973, divorce). +Composed the Christmas standard "Do You Hear What I Hear?" with his then-wife Gloria in 1962. +Regney was drafted into the Nazi army despite being a Frenchman. He soon deserted and joined a group of French resistance fighters and became a double agent working for the French.Needs Votehttp://en.wikipedia.org/wiki/No%C3%ABl_Regneyhttps://www.imdb.com/name/nm0716682/http://www.naturegeezer.com/2016/09/noel-regney-gloria-shayne-they-heard.htmlM. RegneyN RegencyN RegneyN, RegneyN. RebueyN. RegencyN. RegeneyN. RegenyN. RegneN. RegneyN. ReigneyN. RigneyN.RegneN.RegneyNeal RegneyNoelNoel RegeneyNoel RegniyNoel RegnyNoel RezneyNoël RegneyNöel RegneyRegencyRegeney NoelRegneyRegney NoelRegnieNoel Regney And His Orchestra + +717998Patricia JohnstonSongwriter - Born in St. Louis, Missouri on October 24, 1922, died November 24, 1953 in New York City of complications from polio. She co-wrote the lyrics for the popular song and jazz standard "I'll Remember April". She was previously married to Bela Zuckmann-Bizony and Jason Evers. + +When adding submissions, please consider the various profiles for [url=https://www.discogs.com/search/?q=patricia+johnson&type=artist&strict=true]Patricia Johnson[/url], not to mention [url=https://www.discogs.com/search?q=pat+johnson&type=artist&strict=true]Pat Johnson[/url], and even [url=https://www.discogs.com/search/?q=patricia+johnston&type=artist&strict=true]Patricia Johnston[/url] and [url=https://www.discogs.com/search?q=pat+johnston&type=artist&strict=true]Pat Johnston[/url].Needs Votehttps://www.imdb.com/name/nm0426804/De JohnstonF. JohnstonJ. PatriciaJohnsonJohnstonJohnstoneJohntsonJohsonJolsonP JohnstonP. JohnsonP. JohnstonP. JonstonP.JohnsohP.JohnsonP.JohnstonP: JohnsonPat JohnsonPat JohnstonPat JohnstonePat JonhstonPatricia JohnsonPatricia Johnstone + +718437Max WilcoxMax George WilcoxPianist, conductor, teacher, recording engineer and producer. +Born on Dec. 27, 1928, in Kalamazoo, Mich., USA. +Died on Jan. 20, 2017, in Seattle. Wash., USA. +Wilcox joined RCA Victor Red Seal in 1958, and was responsible for the recordings of [a=Arthur Rubinstein] from 1959 until Rubinstein's retirement in 1976. His recordings have won seventeen Grammy Awards.CorrectM. W.M.W. + +718732Iain Sutherland (2)CorrectIain Sutherland & His OrchestraIain Sutherland And His OrchestraSutherland + +718768Stephen RosserClassical tenor.Needs VotePomeriumVoices Of AscensionManhattan Vocal Ensemble + +718775Jeffrey JohnsonSinger - educator - voice instructor - theatre artist - chant practitionerCorrecthttp://pomerium.us/oldsite/Bios.htmlJeff JohnsonJohnsonPomeriumLionheart (9)Voices Of Ascension + +718805King GuionAmerican jazz saxophonist (tenor), clarinetist and bass +clarinetist. + +Born : May 19, 1907 in San Francisco, California. +Died : February 07, 1973 in New York City, New York. + +Earl King Guion worked among others with Paul Whiteman and Freddie Slack.Needs Vote"King" GuionDuionGionGuionK. GuionKingKing-GuionHarry James And His OrchestraPaul Whiteman And His OrchestraKing Guion And His OrchestraThe King Guion Quintet + +719156Alan KayAmerican clarinetist, born in Rochester, NYNeeds VoteAl KayAlan R. KayOrpheus Chamber OrchestraPerspectives EnsembleWindscapeThe Washington Square Ensemble + +719157Sheryl HenzeAmerican flutistNeeds VoteSheryle HenzeOrchestra Of St. Luke'sWestchester PhilharmonicThe Boehm QuintetteFlute Force + +719163Tim CobbTimothy CobbAmerican double bassist, born 28 March 1964 in Albany, New York, USA.Needs VoteTimothy B. CobbTimothy CobbNew York PhilharmonicChicago Symphony Orchestra + +719167Marji DanilowDouble bass player from the USA.Needs VoteMargie DanilowSpeculum MusicaeOrpheus Chamber OrchestraMozzafiatoL'ArchibudelliThe Metropolitan Opera House OrchestraNew York City Ballet OrchestraSmithsonian Chamber OrchestraGreenleaf Chamber Players + +719240Frode BergFrode Ågedal BergNorwegian bassist and mastering engineer, born October 24th, 1971 in Oslo, Norway. He runs the studio [l=Your Sound Mastering, Spikkestad].Needs VoteBergFrode Ågedal BergOslo Filharmoniske OrkesterHelge Lien TrioKnut Værnes TrioKnut Værnes GroupAnders Thorén QuartetMichael Bloch TrioErik Smith TrioCrazy Energy Jazz QuartetEH3 (2) + +719354Darragh MorganClassical violinist, born 1974 in Belfast.Needs Votehttp://www.darraghmorgan.com/http://en.wikipedia.org/wiki/Darragh_Morganhttps://soundcloud.com/darraghmorganhttps://x.com/MorganDarragh?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5EauthorMillennia StringsThe Smith QuartetOrchestra Of The Age Of EnlightenmentFidelio TrioTopologiesEkkozone + +719356Jenny KingViolinist.Needs VoteBBC Symphony OrchestraMillennia Strings + +719357Wouter RaubenheimerClassical violistNeeds VoteThe Chamber Orchestra Of EuropeTable Bay String QuartetStavanger Symfoniorkester1B1 + +719434Stanley GoodallStanley GoodallSound engineer (mainly on classical recordings) who worked at [l269986] and at [l=Symphony Hall, Boston] +General duties and disc cutting (1949-1960), assistant recording engineer (1960-1970), senior recording engineer (1970-1994). Responsible for cutting the first Decca stereo release. + +At Decca, the engineer who made a cut was identified by a letter at the end of the matrix number. Goodall was E. When entering a lacquer cutting credit derived from the runouts please use the appropriate alias [a=E (24)].Needs Vote& Stanley GoodallS. GoodallStan GoodallE (24) + +719758Lenny Lee GoldsmithLeonard Lee GoldsmithKeyboardist - Singer +Father of [a1658797] musicians [a2816199] and [a848047]. Father-in-law of [a124763].Needs VoteGoldsmithGoldsteinL. GoldsmithL. L. GoldsmithL. LeeL.L. GoldsmithL.LeeLeeLen GoldsmithLennie GoldsmithLennie Lee GoldsmithLenny GoldsmithLenny LeeSweathogStoneground + +719828Philippe CouvertClassical violinistNeeds VoteLa Grande Ecurié Et La Chambre Du RoyLes Talens LyriquesLes Musiciens Du LouvreEnsemble europeen William Byrd + +719910Tex SatterwhiteCollen Gray SatterwhiteAmerican jazz trombonist.Needs VoteCollen Gray "Tex" SatterwhiteCollen SatterwhiteLen Satter WhiteSatterwhikSatterwhiteSatterwhitleStatterwhiteT. SatterwhiteT. SatterwhitleT.SatterwhiteTex SatterwaiteTommy Dorsey And His Orchestra + +720007Wolfgang HoferWolfgang Johannes HoferAustrian singer, composer and songwriter born February 17, 1950 in Linz.Needs Votehttps://de.wikipedia.org/wiki/Wolfgang_Hoferhttp://www.was-wurde-aus.at/70_wolfgang.htmHoferHofer WolfgangHofer, WolfgangHoverR. HoferT. W. HoferW. HoferW. HofferW. HofnerWolfgangWolfgang HaferWoolfgangJohn Yard + +720534Allaudin MathieuWilliam Allaudin MathieuAmerican pianist, trumpeter, composer, author, and teacher currently living in Sebastopol, California. + +In the 1960s, he spent several years as an arranger and composer for the Stan Kenton and Duke Ellington Orchestras. During this time, he was also a founder and the musical director for the Second City Theater in Chicago, and later musical director for the Committee Theater in San Francisco. + +He founded The Sufi Choir, a group devoted to the teachings of [a=Samuel L. Lewis]. He directed the group during its existence from 1969 until 1982. In the 1970s, he served on the faculties of the [l=San Francisco Conservatory of Music] and [l=Mills College]. + +Since the early 1980s, he has been releasing piano works and other solo and ensemble recordings. He is the owner of the label [l=Cold Mountain Music], and has authored 4 books on music theory and expression.Needs Votehttp://www.coldmountainmusic.comhttp://en.wikipedia.org/wiki/W._A._MathieuA. MathieuAlaudin MathieuAllauddinAllauddin MathieuAllauddin William MathieuAllaudinAllaudin William MathieuW. A. MathieuW.A. MathieuWilliam Allaudin MathieuWilliam MathieuBill MathieuStan Kenton And His OrchestraThe Sufi ChoirThe Second City + +720580Herbert LawsonAmerican composer, lyricist and saxophonist. +Known for writing "Anytime" aka "Any Time" aka "Any Time You're Feeling Lonely)", which has been covered over 200 times. It was first copywritten in 1921 and then again in 1948, 1952 (6 arrangements), and again in 1968. He has few other songwriting credits. +The song hit #1 (#17 overall) in the U.S. country charts by Eddy Arnold in 1948, when the copyrights came up for renewal. It charted again later in 1948 by Foy Willing and His Riders of the Purple Sage, this time at #14 country. In 1951, Eddie Fisher charted it to its highest #2 overall; Patsy Cline, 1969, #73 country; and The Osmond Brothers, 1985, #54 country.Needs Votehttps://www.imdb.com/name/nm4307317/https://en.wikipedia.org/wiki/Anytime_(1921_song)F.H. LawsonH Happy LawsonH, LawsonH. "Happy" LawsonH. B. LawsonH. H. LawsonH. H. LowsonH. Happy LawsonH. Happy/LawsonH. LawsonH.H. LawsonHappy LawsonHappy Lawson & His Blue UkeHappy Lawson & His Blue Uke.Happy Lawson And His Blue UkeHapy LawsonHebert Happy LawsonHerbert "Happy" LawsonHerbert "Happy" LawsonHerbert "Hoppy" LawsonHerbert 'Happy' LawsonHerbert (Happy) LawsonHerbert Happy - H. LawsonHerbert Happy H. LawsonHerbert Happy LawsonHerbert Happy LowsonHubert "Happy" LawsonLawsonMr. & Mrs. Happy LawsonArtie Shaw And His Orchestra + +720856James ArkatovAmerican cellist and photographer, born 1920 in Odessa, Russia.Needs VoteJames 'Jim' ArkatovJames A. ArkatovJim ArkatoffJim ArkatovSan Francisco SymphonyPittsburgh Symphony OrchestraIndianapolis Symphony Orchestra + +720861James ThatcherA British-Canadian-American French horn player.Needs Votehttps://jamesthatcherhorn.wordpress.com/https://en.wikipedia.org/wiki/James_Thatcher_(musician)https://www.imdb.com/name/nm0857125/James W ThatcherJames W. ThatcherJim ThatcharJim ThatcherJimThatcherThatcher James W.Thatcher, James WThe London Session OrchestraLondon Symphony OrchestraLos Angeles Philharmonic OrchestraThe Clayton-Hamilton Jazz OrchestraPasadena Chamber OrchestraHollywood Studios Woodwinds Quintet + +720869Larry FordJazz trumpeterNeeds VoteLawerence FordLawrence FordToshiko Akiyoshi-Lew Tabackin Big BandLes Brown And His Band Of RenownWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe Bob Florence Limited EditionUniversity Of North Texas Neophonic Orchestra1:00 O'Clock Lab Band + +720870George HydeFrench horn playerNeeds VoteGeorge W. HydeGerald Wilson OrchestraThe Horn Club Of Los AngelesHoyt Curtin Orchestra And Chorus + +720876Allen VizzuttiAllen C. VizzuttiTrumpeter and composer, born 13 September 1952 in Missoula, Montana, USA. Alumnus of [l635848]. +Married to [a4307756].Needs Votehttp://www.vizzutti.com/A. VizzutiA. VizzuttiAl VissuttiAl VizuttiAl VizzutiAl VizzuttiAl. VizzuttiAlan VizuttiAlan VizzuttiAlen VizzuttiAll VizzuttiAllan VizzuttiAllen C. VizzuttiAllen C. VuzzuttiAllen VizuttiAllen VizzutiVizzuttiWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdEastman Brass QuintetWoody Herman BandWoody Herman And The Thundering HerdTen Of The BestSoli Chamber Ensemble + +720880Hal EspinosaAmerican jazz trumpet playerNeeds VoteHal EspinozaWoody Herman And His OrchestraWoody Herman And The Swingin' HerdDick Grove Big BandGerald Wilson Orchestra of The 80'sSteve Spiegl Big BandRoger Neumann's Rather Large BandBill Tole And His OrchestraThe Los Angeles City College Jazz Band + +720884Roy MainRoy MainRoy Main is a native of Los Angeles, California. His career as a freelance studio trombonist spans virtually every form of live and recorded professional music performance. Main has performed at all of the major television and film studios and has played with many orchestras and bands including Nelson Riddle, Henry Mancini, Michel Legrand, Bill Conti, Les Brown and Harry James.Needs VoteRoy G. MainHarry James And His OrchestraLes Brown And His Band Of RenownThe Hollywood TrombonesThe George Stone Big Band + +721453Al RinkerAlton RinkerAmerican jazz singer and composer. +Born : December 20, 1907 in Tekoa, Washington State. +Died : June 11, 1982 in Burbank, California. + +Began performing as a partner with [a=Bing Crosby] in 1925 and the two singers formed [a=The Rhythm Boys], which singer/songwriter/pianist [a=Harry Barris] later joined. Barris wrote the songs Mississippi Mud, I Surrender, Dear, and Wrap Your Troubles in Dream among others. The singing trio worked with [a=Paul Whiteman And His Orchestra] in Los Angeles until Crosby dissolved the group to go solo, recording both with Whiteman and on their own with Barris on piano. The Rhythm Boys were filmed for the Paul Whiteman movie 'The King of Jazz' (1930) singing [i] Mississippi Mud, So the Bluebirds and the Blackbirds Got Together, I'm a Fisherman, Bench in the Park, and Happy Feet[/i]. After the breakup, they reunited only once, to appear together on the "Paul Whiteman Presents" radio broadcast on July 4, 1943. + +In 1952, a song for which Rinker wrote the lyrics, [i] You Can't Do Wrong Doin' Right[/i], appeared in the film Push-Button Kitty and in the television series 'The Many Loves of Dobie Gillis'. He also wrote the song [i] Ev'rybody Wants to Be a Cat [/i] for the Disney cartoon children's movie The AristoCats (1970).Needs Votehttps://en.wikipedia.org/wiki/Al_RinkerA RinkerA. RInkerA. RinkerA. RunkerA.RinkerA: RinkerAl RinkaAlrinkerAlton RinkerPinkerRinkerRinkertThe Rhythm BoysPaul Whiteman And His OrchestraPaul Whiteman's Rhythm BoysAl Rinker Trio + +721517Red PrysockWilburt PrysockBorn Feb. 2, 1926 in Greensboro, North Carolina, USA. +Died July 19, 1993 in Chicago, Illinois, USA. + +[a721517], the brother of singer [a253605], was a hard-driving RnB tenor saxophonist. He played with [a320611], and also backed up his brother. Red recorded for [l94227] & [l39357].Needs Vote"Red" PrysockPrysockR. PrysockRed PrysokRed PsysockRed RrysockSylvester "Red" PrysockWilbert "Red" PrysockWilbert 'Red' PrysockWilbur "Red" PrysockWilbur 'Red' PrysockWilburt "Red" PrysockWilburt PrysockTiny Grimes QuintetRed Prysock And His OrchestraDoc Bagby's OrchestraRed Prysock And His Rock And RollersRed Prysock And His House Rockers + +722007Vinnie TannoVincent J. NepolitanTrumpet playerNeeds VoteTannoVinney TannoVinnie TanoVinny TanoStan Kenton And His OrchestraThe KentoniansThe Lon Norman Sextet + +722717Robert FrancisRobert FrancisHardcore DJ & producer from Sydney, Australia. +Contact: weaver@djweaver.com.auNeeds Votehttp://www.djweaver.com.au/http://www.facebook.com/djweaverhttp://myspace.com/djweaverhttp://soundcloud.com/djweaverhttp://open.spotify.com/artist/5VjIurP1GxiyS5A0yRHiyWhttp://www.twitch.tv/djweaverofficialhttp://www.youtube.com/djweaverFrancisR FrancisR. FrancisR.FrancisRob FrancisRoberto FrancisDJ WeaverDanceforzeHardforzeBass CrusadersBobby Neon (2)Project BassHardcore MasifRe Active & FlexHardforze & Friends + +722802Ralph BernetFrench composer and lyricist, born July 5,1927 in Marseille, France, died September 23, 2017. +also nicknamed RafflesNeeds Votehttp://fr.wikipedia.org/wiki/Ralph_BernetB. BernetB. RalphBarnesBarnetBenetBennetBerBerettaBerneBernerBernetBernet R.Bernet RalfBernet RalphBernet, RalphBernettBernettiBernotG. BernetP. BernetR BernetR, BernetR. BernetR. BarnetR. BechetR. BenetR. BennetR. BernatR. BerneR. BernelR. BernertR. BernetR. BernetasR. BernetiR. BernettR. BernotR. BerntR. BevnetR. BrernetR. VernetR.BernetR.BernettR.h BernetRafflesRaffles BernetRalf BernetRalh BernnetRalp BernetRalphRalph BennetRalph BernettRalph BernstRalph TernetRalph, Le JoueurRalphe BernetRelandБернетР. БернеР. БернетР. БернэХ. Берне + +723407Geoffrey GoddardEnglish musician and songwriter (better known as Geoff Goddard). +Born 19 November 1937 in Reading, Berkshire, UK. +Died 15 May 2000 (aged 62) in Berkshire, England. +Worked extensively with [a=Joe Meek] for [l=R.G.M. Sound] in early 1960's, including several top 10 hits. +Goddard recorded four singles as solo artist, produced by Meek.Needs Votehttp://en.wikipedia.org/wiki/Geoff_Goddardhttps://fromthevaults-boppinbob.blogspot.com/2019/11/geoff-goddard-born-19-november-1937.htmlhttps://www.findagrave.com/memorial/25544973/geoffrey-goddardhttps://www.rocknroll-schallplatten-forum.de/topic.php?t=6292B. GoddardG. GeoffreyG. GodarG. GodardG. GoddardG. GoddaroG. GoddartG.GodardG.GoddardGeoeffrey GoddardGeoff GoddardGeoffrey GoddarGeoffrey GoddareGeoffrey-GoddardGeoffroy GoddardGobbardGodardGoddarGoddarcGoddardGoddartGoddavelGodfdardGoodardJ. GoddardP. Goddardゴダード + +723648Eino GrönEino Joel GrönFinnish American singer. + +Born on January 31, 1939 in Reposaari, Finland.Needs Votehttps://www.einogron.fihttps://en.wikipedia.org/wiki/Eino_Gr%C3%B6nEGEikkaEino GröhnMatit Ja MaijatKööriEino Grönin YhtyeEino Grön Orkestereineen + +724038Lars SjöstenLars SjöstenSwedish jazz pianist, born 7 May 1941 in Oskarshamn, died 19 October 2011 + +During the 1960s, Sjösten often played at the Gyllene Cirkeln restaurant in Stockholm. He played with international greats such as Ben Webster, Dexter Gordon, Art Farmer and Stan Getz, as well as with the Swedish tenor saxophonist Bernt Rosengren.Needs Votehttp://de.wikipedia.org/wiki/Lars_Sjöstenhttps://sv.wikipedia.org/wiki/Lars_Sj%C3%B6stenL SjöstenL. SjöstenLars SjostenLars SjøstenLasse SjöstenLasse SjøstenSjöstenЛарс ШёстенStan Getz QuartetDexter Gordon QuintetEje Thelins KvintettDexter Gordon QuartetBenny Bailey QuintetLars Sjösten TrioLars Sjösten QuartetLars Sjösten OctetJazz IncorporatedAnders Lindskogs KvartettDexter Gordon - Benny Bailey QuintetLars Sjöstens KvintettThorgeir Stubø QuintetEmanons StorbandEje Thelins KvartettSture Nordin SextetBörje Fredriksson QuartetLennart Jonsson-Lars Sjösten Quartet + +724039Roman DylagRoman DylągPolish jazz bassist, born 22 February 1938 in Kraków, Poland, died July 24, 2023 in Sweden. Brother of [a1751110].Needs Votehttps://pl.wikipedia.org/wiki/Roman_Dyl%C4%85gDylagDylągG. DylagR. DylagR. DylągRDRamon DylagRoman "Gucio" DylagRoman "Gucio" DylągRoman DylacRoman DylakRoman DylągР. ДилонгKomeda QuintetStan Getz QuartetMichal Urbaniak's GroupHarry Arnolds OrkesterRoby Weber QuartetNils Lindberg's OrchestraEje Thelins KvintettGugge Hedrenius Big Blues BandTrio KomedyEddie Lockjaw Davis QuartetDRS Big BandSwingtet Jerzego MatuszkiewiczaAndrzej Kurylewicz QuartetRemo Rau ProjectSmile (22)Remy Filipovitch TrioThe Kurylewicz TrioWojciech Karolak TrioMilcho Leviev TrioJ.M. Rhythm FourGabriela Tanner Jazz QuintettThe Wreckers (3)Andrzej Kurylewicz GroupEje Thelin TrioAlex Felix Jazz ClubLothar Löffler Und Sein EnsembleBörje Fredriksson QuartetPeacock Party Band + +724065Sam Turner (2)Sam “Seguito” Turner is a percussionist from New York City, having performed with the likes of Machito, Charles Mingus, Frank Sinatra, James Brown, Dexter Brown, Freddie Hubbard and Don Pullen.Needs VoteSam "Seguito" TurnerSammy TurnerSamuel "Seguito" TurnerSamuel (Seguito) TurnerThe Har-You Percussion GroupLionel Hampton And His OrchestraRumba Club + +724088Ron TijhuisOboe and English horn player.CorrectRon TyhuisCombattimento Consort AmsterdamRotterdams Philharmonisch Orkest + +724097Terje TønnesenNorwegian classical violinist and conductor, born February 27th, 1955 in Oslo, Norway.Needs VoteDir. Terje TønnesenT. TonnesenTerje TonnesenTerje TønesenTerje TønnsenTønnesenOslo Filharmoniske Orkester + +724145Walt YoderWalter YoderAmerican jazz bassist (from the swing-era). +Born April 21, 1914 in Hutchinson, Kansas. +Died December 03 (or) 02, 1978 in Los Angeles, California. + +Walt played with the bands of [a622508], [a229639], [a299282], [a614341], [a357512], [a632254], [a527956], [a239399], [a269598] and others. +He was member of the founding co-operative for [a284746], which was founded without having a backer. + Needs Votehttps://en.wikipedia.org/wiki/Walt_Yoderhttps://www.imdb.com/name/nm2399738/https://adp.library.ucsb.edu/names/351754"Walt" YoderW. YoderWalter YoderWoody Herman And His OrchestraWoody Herman And His WoodchoppersIsham Jones OrchestraWoody Herman's Four ChipsBen Pollack And His Pick-A-Rib BoysIsham Jones' JuniorsWoody Herman & The Second HerdThe Band That Plays The Blues + +724146Beverly JenkinsBeverly (Freeman) (Mahr) JenkinsAmerican singer in the orchestra of [a326469]. +Born: 2 February 1914 in Bristow, Oklahoma, USA. +Died: December 1996. Sister of [a=Judy Freeland]. +She is credited as Beverly Mahr in 1953 on the [i]Seven Dreams LP (Decca DL 9011)[/i]. She married Jenkins, and they had a son. In 1964, Beverly Jenkins recorded an album for Impulse! entitled [i]Gordon Jenkins Presents My Wife The Blues Singer[/i]. +Prior to Jenkins, she was married to songwriter [a=Herman Carl "Curley" Mahr] (m. 1937) Her name then is sometimes misspelled "Maher".Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/329056/Mahr_BeverlyBeverly MahrBeverly FreelandGordon Jenkins And His OrchestraGordon Jenkins and his Orchestra and ChorusBeverly And Her Boy FriendsKay Thompson And Her Rhythm Singers + +724556Michael Davis (5)Classical violinist and concert master (1944-2025). +Former Leader with the [a=London Symphony Orchestra] (1979-1987). + +For the American violinist of the same name, ex-member of [a=The Louisville Orchestra], please use [a=Michael Davis (60)]Needs VoteDavisM. DavisMichael D. DavisMichael DaviesMichael DavisMichael Davis, His Violin And OrchestraMike Davisマイケル・デイヴィスPro Arte OrchestraLondon Symphony OrchestraRoyal Philharmonic OrchestraHallé Orchestra + +725036Yūzō Toyama外山雄三Japanese conductor and composer, born 10 May 1931 in Ushigome-ku, Tokio. Died 11 July 2023.Needs Votehttps://ja.wikipedia.org/wiki/%E5%A4%96%E5%B1%B1%E9%9B%84%E4%B8%89https://en.wikipedia.org/wiki/Yuzo_Toyamahttps://www.imdb.com/name/nm7240762/https://theviolinchannel.com/composer-yuzo-toyama-has-died-aged-92/ToyamaY. ToyamaYushi ToyamaYuso ToyamaYuzo ToyamaYūzo ToyamaЮдзо Тойама外山 雄三外山雄三NHK Symphony Orchestra + +725132Risto FredrikssonRisto FredrikssonFinnish cellist born on June 5, 1941.Needs VoteRisto FredriksonSuhonen Quartet + +725134Jorma RahkonenJorma Kalevi RahkonenFinnish violinist and concertmaster, born 18 July 1939 in Viipuri (Vyborg, in Karelian Isthmus, back then a part of Finland, nowadays belongs to Russia) and died on November 22, 2020 in Hyvinkää, Finland.Needs VoteRadion SinfoniaorkesteriVoces Intimae QuartetEspoo-kvartetti + +725136Olavi PälliOlavi Tapio PälliFinnish violinist. Born on August 4, 1939 in Ylivieska and died on February 5, 2002 in Helsinki. Former concertmaster of Finnish Radio Symphony Orchestra.Needs VoteRadion SinfoniaorkesteriFinlandia Quartet + +725137Keijo AulanneCorrect + +725143Wanda WilkomirskaJolanta Wanda Rakowska née WiłkomirskaBorn January 11, 1929 Warszawa, died May 1, 2018 there. Polish violinist and pedagogue. +Sister of composer and conductor [a=Józef Wiłkomirski], and half-sister of cellist [a=Kazimierz Wiłkomirski] and pianist [a=Maria Wiłkomirska]. Wanda plays 1734 Pietro Guarneri violin. Graduated from the Łódź Academy of Music in 1947 after studying with [a=Irena Dubiska]. Wilkomirska continued her education at the [l=Liszt Ferenc Music Academy, Budapest] under the guidance of [a=Ede Zathureczky], graduating in 1950. + +The musician started her career in Paris and subsequently received an invitation from [a=Henryk Szeryng] to study with him. Wanda won the second prize at the International Johann Sebastian Bach Competition (1950) in Leipzig. After preparation studies and recitals with [a=Tadeusz Wroński], Wanda Wiłkomirska played [a=Karol Szymanowski]'s [i]Concerto No. 1[/i] at the Henryk Wieniawski Violin Competition (1952) in Poznań, sharing the second prize with [a=Yulian Sitkovetsky]; [a=Igor Oistrach] won the first prize. + +In 1955, Wanda Wiłkomirska performed at the inauguration of the renovated [l=Concert Hall Of The Warsaw National Philharmonic], appearing with [a=The National Warsaw Philharmonic Orchestra] conducted by [a=Witold Rowicki]. She joined the ensemble as a principal soloist and gave many performances around the world. During the sixties and seventies, Wanda had been touring extensively and gave about 100 concerts per year on average. The renowned impresario [a=Sol Hurok] organized her tours in the United States and Canada, and Wiłkomirska appeared on stage in over 50 countries since. + +She gave almost 40 concerts in Australia in 1969, winning a huge acclaim and receiving further proposals from leading Australian orchestras. In 1973, Wilkomirska (accompanied by [a=Geoffrey Parsons (2)] became the first violinist to perform a solo recital at the newly built [l=Sydney Opera House]. Wanda also played [a=Benjamin Britten]'s [i]Violin Concerto[/i] at the inauguration of the [l=Barbican] Hall in London in 1976. + +In 1982, during the martial law period in Poland, Wanda Wiłkomirska decided not to return home at the end of the European tour and accepted a professor's position at the Mannheim University of Music and Performing Arts in Germany. + +She settled in Australia in 1999 and joined the faculty at the [l=Sydney Conservatorium of Music] and started teaching at the Australian National Academy of Music in Melbourne in 2001. The artist actively participates in European musical life and routinely travels between continents with concerts, master classes, and competitions. + +She had been performing in a family [a=Wiłkomirski Trio] (with Maria on piano and Kazimierz on cello), as well as with [a=Krystian Zimerman], [a=Daniel Barenboim], [a=Gidon Kremer], [a=Martha Argerich], [a=Kim Kashkashian] and [a=Mischa Maisky]. Wilkomirska premiered works by [a=Tadeusz Baird], [a=Krzysztof Penderecki], [a=Grażyna Bacewicz], [a=Augustyn Bloch], [a=Zbigniew Bargielski], [a=Zbigniew Bujarski], [a=Roman Maciejewski], [a=Włodzimierz Kotoński] and other prominent contemporary composers from Poland. She received two Polish State Awards for promoting Polish music to the international audience.Needs Votehttps://en.wikipedia.org/wiki/Wanda_Wiłkomirskahttp://www.wandawilkomirska.comW. WilkomirskaW. WiłkomirskaWanda WiłkomirskaWilkomirskaOrkiestra Symfoniczna Filharmonii NarodowejWiłkomirski Trio + +725151Malin William-OlssonSwedish classical violinistNeeds VoteMalin William Olsson stlSveriges Radios SymfoniorkesterSelest + +726070Eric LacroutsÉric LacroutsFrench classical violinist, born in 1976. He plays on a 1835 Jean-Baptiste Vuillaume violin, with a Christian Barthe bow.Needs Votehttp://festivalolt.com/biographie-de-eric-lacrouts-violon/E. LacrouisEric LacrouisEric LacroutzErick LacroutsÉric LacroutsOrchestre National De L'Opéra De ParisQuatuor PsophosParis Mozart Orchestra + +726072Cyrille LacroutsCyrille LacroutsFrench cellist.Correcthttps://www.orchestrevictorhugo.fr/artistes/cyrille-lacrouts/Cyril LacroustCyril LacroutsOrchestre National De L'Opéra De Paris + +726073Estelle VillotteEstelle VillotteFrench violist.Needs VoteEstelle VilotteOrchestre De ParisEuropean Union Youth OrchestraTraffic QuintetParis Symphonic Orchestra + +726529Sue MonksBritish classical cellistNeeds VoteSusan MonksBBC Symphony OrchestraThe London Telefilmonic OrchestraLondon Classical PlayersMistry String QuartetThe London Cello Sound + +726533Phillip BainbridgeClassical trumpet and flugelhorn player.Needs Votehttps://www.linkedin.com/in/phillip-bainbridge-47290a61/https://www.blackadderbaroquebrass.co.uk/playersPhil BainbridgePhilip BainbridgeNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicMusica Antiqua KölnCollegium Musicum 90The King's ConsortThe London Gabrieli Brass EnsembleThe Mozartists + +726825Sir Philip SidneySir Philip Sidney (30 November 1554 – 17 October 1586) was an English poet, courtier, scholar, and soldier.Needs Votehttps://en.wikipedia.org/wiki/Philip_SidneyPhilip SidneySidneySir Philip SydneySir Philip Sydney StottSir Phillip Sidney + +727243Jozsef HarsJózsef HársHorn player, born 1976 in Sümeg, Hungary. Studied in Germany, and since 2006 he has been a member of [a=Radion Sinfoniaorkesteri] in Helsinki, Finland.Needs VoteHársJózsef HársEnsemble ModernRadion SinfoniaorkesteriQuartetto Bosso + +727254Roberto SzidonBrazilian classical pianist, based in Germany (born September 12th, 1941 in Porto Alegre, Brazil - died December 21st, 2011 in Düsseldorf, Germany).Needs Votehttp://en.wikipedia.org/wiki/Roberto_SzidonRobert SzidonRobert ZidonSzidonРоберт Зидонロベルト・シドン + +727331Tony PowersHoward Stanley PurisAmerican songwriter, recording artist, music video artist, and actor from New York, NY. He was responsible for writing or co-writing the hit songs "Remember Then", "Why Do Lovers Break Each Other's Heart", "98.6", "Lazy Day", and many others including "We're The Banana Splits", the Kiss song "Odyssey", and Powers' own "Don't Nobody Move (This is a Heist)". +Born 1938.Needs Votehttp://www.tonypowersmusic.com/home.htmlhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=274339&subid=0https://en.wikipedia.org/wiki/Tony_PowersG FishoffPowerPowersPowershearnPöwersT PowersT. PowerT. PowersT. T. PowersT.PowersTony PowelsTony Power + +727951Ulrik NeumannHans Ulrik NeumannDanish guitarist, vocalist, actor and composer, born on October 23, 1918 in Copenhagen, Denmark, died on June 28, 1994 in Malmö, Skåne län, Sweden. +Married to Stina Sorbon. Brother of [a=Gerda Neumann], father of [a1728996] and [a3474522]. +Needs Votehttps://da.wikipedia.org/wiki/Ulrik_Neumannhttp://www.imdb.com/name/nm0627136/H U NeumannH. U. NeumannHans Ulrik NeumannNeumannU. NeumanU. NeumannU.NeumannUlrich NeumanUlrich NeumannUlrikUlrik NeumanThe Swe-DanesSvend Asmussens Orkester3 X NeumannGerda Og Ulrik NeumannKai Ewans Og Hans OrkesterArthur Young And His Danish Friends + +728357Joep TerweyBassoonist from The Netherlands.Needs Votehttps://www.linkedin.com/in/joep-terwey-90782617/J. TerweyJoep TerwayJoep TerweijJoop TerweyNederlands Blazers EnsembleEnsemble Musica NegativaConcertgebouworkest + +728358Iman SoetemanDutch conductor and hornist, born March 25, 1935 in Amsterdam.Needs VoteI. SoetemanIman SoetermanIman SoetmanWillem Breuker KollektiefNederlands Blazers EnsembleDanzi KwintetNetherlands Chamber Orchestra + +728360Karl SchoutenKarl-Heinz Martin SchoutenClassical violist. b. 1919 Mönchengladbach, Germany d. 2006 Amsterdam, Netherlands.Needs Votehttp://vgkco.nl/index.php?page=portrettengallerijdetail&offset=&personId=211English translation: https://translate.google.com/translate?hl=en&sl=nl&tl=en&u=http%3A%2F%2Fvgkco.nl%2Findex.php%3Fpage%3Dportrettengallerijdetail%26offset%3D%26personId%3D211K. SchoutenKarel SchoutenConcertgebouworkestDas Hekster-Quartett + +729278Daniel HeinzerDaniel HeinzerNeeds VoteD. HeinzerD. HeizerD.HeinzerDJ NatronFlutlicht + +729424Ray SimmonsRaymond SimmonsTrumpet player.Needs VoteRaymond SimmonsRoyal Philharmonic OrchestraLocke Brass ConsortThe London Symphony Brass Ensemble + +729541Grace DavidsonBritish sopranoNeeds Votehttps://gracedavidsonsoprano.com/G. DavidsonMetro VoicesThe Cambridge SingersLondon VoicesThe SixteenPolyphonyEx Cathedra Chamber ChoirEnsemble Plus UltraThe Eric Whitacre SingersGli Angeli GenèveTenebrae (10)Alamire + +729542Andrew OllesonTreble (Boy Soprano)/CountertenorNeeds VoteThe SixteenThe Choir Of Christ Church Cathedral + +729543Christopher RoyallEnglish classical alto / countertenor vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Royall-Christopher.htmhttps://www.imdb.com/name/nm1811337/C. RoyallChristopher RoyalChristophers RoyallThe SixteenThe Monteverdi ChoirDeller ConsortThe English Concert ChoirEnsemble europeen William Byrd + +729544James HollidayBaritone vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Holliday-James.htmThe SixteenLaudibus + +729545Ben RayfieldBenjamin RayfieldTenor vocalist and ProducerNeeds Votehttp://www.rayfieldartists.com/biography.htmlGabrieli ConsortThe Sixteen + +729546Sam EvansSamuel EvansTenor, Baritone and Bass vocalistNeeds VoteS. EvansThe Cambridge SingersThe SixteenThe Monteverdi ChoirChoral Scholars of King's College, Cambridge + +729547Adrian LoweEnglish tenorCorrecthttp://www.adrianlowe.com/The Sixteen + +729548Simon BerridgeClassical vocalist (tenor).Needs Votehttps://www.bach-cantatas.com/Bio/Berridge-Simon.htmhttps://thesixteen.com/team/simon-berridge/https://www.imdb.com/name/nm7661142/Simon BarridgeThe Tallis ScholarsThe SixteenLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleOrchestra Of The RenaissanceThe English Concert ChoirTaverner ChoirEnsemble Vocal Européen De La Chapelle Royale + +729549Julian EmpettBritish baritone vocalist, he is a graduate of King's College London.Needs Votehttp://web.archive.org/web/20190712024039/http://www.julianempett.com/The SixteenThe Choir Of Westminster AbbeyTenebrae (10) + +729551Charlotte MobbsClassical soprano.Needs Votehttps://www.charlottemobbs.com/The Cambridge SingersThe SixteenThe Monteverdi ChoirI FagioliniLaudibusRetrospect Ensemble + +729552Harry Christophersb. December 26, 1953 - Goudhurst, Kent, England + +English conductor; founder of [a=The Sixteen]. Artistic Director of [a1706049]. +Needs Votehttps://en.wikipedia.org/wiki/Harry_Christophershttps://thesixteen.com/ChristophersHarry Christopherハリー・クリストファーズThe SixteenThe Clerkes Of Oxenford + +729553Mark DobellBritish tenor vocalist, originally from Tunbridge Wells in Kent.Needs Votehttps://www.bach-cantatas.com/Bio/Dobell-Mark.htmhttps://web.archive.org/web/20200325092933/http://www.orlandoconsort.com:80/mark_biog.htmMark Dobell [England]The Tallis ScholarsThe SixteenOrlando ConsortI FagioliniPolyphonyLaudibusTenebrae (10) + +729554Ian AitkenheadClassical countertenor / alto vocalist.Needs Votehttps://www.facebook.com/ian.aitkenheadhttps://thesixteen.com/team/ian-aitkenhead/https://www.bach-cantatas.com/Bio/Aitkenhead-Ian.htmIan AitkinheadThe Choir Of The King's ConsortThe SixteenPolyphonyArmonico ConsortRetrospect Ensemble + +730004Hugo von HofmannsthalHugo Laurenz August Hofmann von HofmannsthalBorn: 1874-02-01 (Landstraße, Vienna, Austria) +Died: July 15, 1929 (Liesing, Vienna, Austria) + +Hugo Laurenz August Hofmann von Hofmannsthal was an Austrian prodigy, a novelist, librettist, poet, dramatist, narrator, and essayist.Needs Votehttp://en.wikipedia.org/wiki/Hugo_von_Hofmannsthalhttp://www.hofmannsthal-von-hugo.com/http://www.treccani.it/enciclopedia/hugo-von-hofmannsthal/https://www.britannica.com/biography/Hugo-von-HofmannsthalH. A. H. Von HoffmannstalH. Von HofmannsthalH. v. HofmannsthalH. von HofmannsthalHoffmannsthalHoffmanstahlHofmannsthalHugo Von HoffmannstalHugo v. HofmannsthalHugo von HoffmannsthalHugo von HofmansthalVon HoffmannstalVon Hofmannsthalv. Hofmannsthalvon HofmannsthalГ. Гофманстальה. פון הופמנטלפ. פון הופמנטל + +730210Tony FrankJean LaulhéFrench photographer, born in 1945. He has worked for the French agency [a=Sygma (2)] and the famous 70s magazine "Salut les copains".Needs Votehttp://www.tonyfrank.fr/FrankStephane Tony FrankT. FranckT. FrankT.FranckT.FrankToni FrankTony FranckTony Frank (Sygma)Tony Frank - SygmaTony Frank - s.l.c.Tony Frank S.L.C.J.-P. Laulhé + +730811Karen KaderavekClassical cellist.Needs VoteKaren KadaravakMusica Antiqua KölnBoston BaroqueThe Handel & Haydn Society Of BostonTheatre Of Early MusicOrchestre Baroque De Montreal + +730827Véronique GensFrench classical Soprano & Mezzo-soprano vocalist, born 19 April 1966 in Orléans, France.Needs Votehttps://www.veroniquegens.com/https://www.facebook.com/V%C3%A9ronique-Gens-28427568637/https://en.wikipedia.org/wiki/V%C3%A9ronique_GensGensV. GensVeronique GensВероника Генцヴェロニク・ジャンスLes Arts FlorissantsIl Seminario MusicaleLa Grande Ecurié Et La Chambre Du RoyLes Talens LyriquesEnsemble Vocal Sagittarius + +730828Mahler Chamber OrchestraThe Mahler Chamber Orchestra (MCO) is a professional touring German chamber orchestra founded in 1997 by former members of the Gustav Mahler Youth Orchestra, with support from [a=Claudio Abbado]; it is based in Berlin.Needs Votehttps://mahlerchamber.com/https://www.facebook.com/MahlerChamberOrchestrahttps://x.com/Mahler_Chamberhttps://www.instagram.com/mahlerchamberorchestrahttps://www.youtube.com/user/MCOmediaMahler COClaudio AbbadoChristophe MorinFlorent BremondJoel HunterAlasdair MalloyDelphine TissotYannick DondelingerVlad WeverberghJörg WinklerMatthias BäckerJulia-Maria KretzNatalie CaronMichiel CommandeurMartin PiechottaValentin GarvieMihály KaszásRiikka SundqvistMay KunstovnyDmitri BabanovVerena WehlingJaan BossierMette TjærbyChristopher DickenRaphael BellMiwa RossoLaurent LefèvreGuilhaume SantanaDaniel DoddsStefano MarcocchiSusanne LercheBéatrice MutheletKaroline SchickStefano GuarinoAnita MazzantiniEmma SchiedMichael Cunningham (2)Geoffroy SchiedHenja SemmlerMeesun HongNaoko OgiharaUlrich BiersackMarkus DäunertCindy AlbrachtNaomi PetersAntonello ManacordaIsabelle BrinerFritz PahlmannChiara SantiMarkus BruggaierChiara TonelliBernhard OstertagKatarzyna ZawalskaPhilipp von SteinaeckerGianfranco DiniPaolo BorsarelliSerguei GalaktionovKonstantin PfizAkemi UchidaHeather CottrellGianluca SaveriMatthew TruscottAndreas KleinYlvali ZilliacusAntoaneta EmanuilovaRick StotijnAnnette Zu CastellJohn Timothy SummersEoin AndersenHong Sung HyuckJeroen BerwaertsErdey PéterMizuho YoshiiClaudio EstayRaymond CurfsKirsty HiltonDaniel BlendulfHolly RandallNikolaus KneserJohannes LörstadMark Templeton (2)Hildegard NiebuhrEduardo CalzadaHasko KrögerJúlia GállegoJosé Vicente CastelloLuca FranzettiJohannes RostamoOlivier Patey (2)Andrey GodikHayk KhachatryanNitzan LasterSonja StarkeAnna PuigRizumu SugishitaBenjamin NewtonMark Hampson (2)Florian Kirner (2)Paco VarochAlexandra Scott (2)Stefan FaludiJohane Gonzalez SeijasPaulien HolthuisSebastian PoschBurak MarlaliChristian MiglioranzaIgor CaiazzaSusanne LinderGaël GandinoBenoît SavinJohnathan RandallÖzgür UluçinarChristian HeubesJanka RyfLia PrevitaliNicola BruzzoFrank-Michael GuthmannJosé Maria BlumenscheinAnna Matz (2)Stephanie BaubinRodrigo Moro MartínJonathan WegloopMoritz Ferdinand WeigertVicente AlberolaMatthew SadlerNanni MalmAlexandra Preucil + +730832Daniel HardingDaniel John HardingBritish conductor, born 31 August 1975 in Oxford, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Daniel_Hardinghttps://www.bach-cantatas.com/Bio/Harding-Daniel.htmhttps://askonasholt.com/artist/daniel-hardingD. HardingHardingダニエル・ハーディングダニエル・ハーディング + +730834Michael Collins (3)(born 27 January 1962) is a British classical clarinetist and conductor.Needs Votehttp://www.michael-collins.co.uk/https://www.michaelcollinsmusic.com/https://en.wikipedia.org/wiki/Michael_Collins_(clarinetist)https://www.imdb.com/name/nm7545712/CollinsMichael CollindMichael CollinsLondon SinfoniettaThe Nash EnsembleSvenska KammarorkesternMichael Collins And FriendsLondon Winds + +731424Karlheinz MayerKarlheinz-Bernd MayerKarlheinz Mayer is a German violist.Needs VoteOrchester Des Nationaltheaters MannheimKurpfälzisches Kammerorchester MannheimPhilharmonisches Orchester Freiburg + +731586Paul Silver (2)American violist, born in Cleveland, Ohio.Needs VoteDetroit Symphony OrchestraSaint Louis Symphony OrchestraRochester Philharmonic OrchestraPittsburgh Symphony OrchestraPittsburgh Sinfonietta + +731706John Williams (14)John Overton WilliamsAmerican saxophonist, clarinetist and composer, born April 13, 1905 in Memphis, Tennessee, died November 24, 1996 in Columbus, Ohio. +Williams played lead alto and baritone saxophonist with the [a=Andy Kirk And His Clouds Of Joy], and wrote many of the pieces the band recorded. His first wife, the pianist and composer [a=Mary Lou Williams], was also a band member. Williams left the Kirk band in 1939 and began playing saxophone with [a=Cootie Williams] in 1942. He is best remembered for his 1930 composition "Froggy Bottom", part of the score for the Robert Altman film "Kansas City". +Needs Votehttps://en.wikipedia.org/wiki/John_Overton_Williamshttps://peoplepill.com/people/john-williams-4John "Bearcat" WilliamsJohn "Jazz" WilliamsJohn T. WilliamsJohn WilliamsWilliamsAndy Kirk And His Clouds Of JoyEarl Hines And His OrchestraCootie Williams And His OrchestraJohn Williams' Memphis StompersJeanette's Synco JazzersJohn Williams' Synco JazzersJohn Williams' Orchestra + +731944Olga GrossClassical pianist and harpistNeeds VoteOrchestre symphonique de Montréal + +731950Marianne DugalClassical violinistNeeds VoteMarie-Anne DugalOrchestre symphonique de MontréalMontreal Chamber Players + +732049Ernie SmallAmerican jazz baritone saxophonistNeeds VoteErnest SmallHarry James And His OrchestraThe Thelonious Monk Orchestra + +732053Mann And WeilAmerican songwriter duo, made up of Barry Mann and Cynthia Weil, who have been responsible for a multitude of pop hits since the early 1960s .Needs Votehttp://www.mann-weil.com/https://twitter.com/mannweilB Mann - C. WellB Mann / C WeilB Mann And C. WeilB Mann, C WeilB Mann, C WellB Mann-C. WeilB Mann/C WeilB, Mann, C. WeilB. Boun-S. WeillB. Main/C. WeilB. Man - C. WeilB. Man / C. WeilB. Man, C. WeilB. Man-C. WeilB. MannB. Mann & C. WeilB. Mann & C. WeillB. Mann , C. WeilB. Mann , C. WellB. Mann - C WeilB. Mann - C WeillB. Mann - C. WeilB. Mann - C. WeillB. Mann - C. WellB. Mann - C. WheilB. Mann - C.WeilB. Mann - Cynthia WeilB. Mann - WeilB. Mann / C. WeilB. Mann / C. WeillB. Mann / C. WeinB. Mann / C. WellB. Mann / Cynthia WeilB. Mann And C. WeilB. Mann C. WeilB. Mann Et C. WeilB. Mann Y C. WeilB. Mann et WeilB. Mann y C. WeilB. Mann · C. WeilB. Mann – C. WeilB. Mann — C. WeilB. Mann, C. WeilB. Mann, C. WeillB. Mann, C. WeinB. Mann, C. WellB. Mann, CynthiaB. Mann, Cynthia WeilB. Mann- C. WeilB. Mann-C WeilB. Mann-C, WeilB. Mann-C. WeilB. Mann-C. Weil.B. Mann-C. WeillB. Mann-C. WellB. Mann-C.WeilB. Mann-C.WeillB. Mann-CynthiaB. Mann-Cynthia WeilB. Mann-K. WeilB. Mann-S. C. WeilB. Mann-WeilB. Mann. - C. WeilB. Mann. C. WeilB. Mann/ C. WeilB. Mann/ Cynthia WeilB. Mann/C. WeilB. Mann/C. WeillB. Mann/C. WellB. Mann/C. WielB. Mann/C. WilB. Mann/C.WeilB. Mann/Cynthia WeilB. Mann/G. WeilB. Mann/WeilB. Mann; C. WeilB. Mann; C. WellB. Mann–C. WeilB. Mann–C.WeilB. Munn / C. WeilB.Man/C. WeilB.MannB.Mann - C.WeilB.Mann - WeilB.Mann -C.WeilB.Mann / C. WeilB.Mann, C.WeilB.Mann, C.WellB.Mann-C.WeilB.Mann-C.WeillB.Mann-Cynthia WeilB.Mann/C. WeilB.Mann/C.WeilB.Mann/C.WeillB.Mann/C.WellsB.jr.Mann, C.WeilBann, VeilBarrie Man / Cynthia WeilBarrie Mann / Cynthia WeilBarrty Mann/Cynthia WeilBarry Bann - Synthia WeillBarry Bann/Cynthia WeilBarry Man & Cynthia WeilBarry Man / Cynthia WeilBarry Man And Cynthia WeilBarry Man-Cynthia WeilBarry Man/Cynthia WeilBarry Mann & Cynthia WeilBarry Mann & Cynthia WeillBarry Mann & Cyntia WeilBarry Mann & Synthia WeilBarry Mann (Cynthia Weil)Barry Mann , Cynthia WeilBarry Mann - C. WeilBarry Mann - Cynthia WeilBarry Mann - Cynthia WeillBarry Mann - Cynthia-WeillBarry Mann - Cyntia WeilBarry Mann - Cythia WeilBarry Mann - WeilBarry Mann -Cynthia WeilBarry Mann / Cynthia WeilBarry Mann / Cynthia WeillBarry Mann / Cynthia WellBarry Mann / Cynthis WeilBarry Mann / Cyntia WeilBarry Mann And Cynthia WeilBarry Mann And Cynthia WeillBarry Mann Cynthia WeilBarry Mann and Cynthia WeillBarry Mann et C. WeilBarry Mann y Cynthia WeilBarry Mann, C. WeilBarry Mann, Cynitha WeilBarry Mann, Cynthia WeilBarry Mann, Cynthia Weil, Cynthia WeillBarry Mann, Cynthia WeillBarry Mann, Cynthia WellBarry Mann, Cyntia WeilBarry Mann, Synthia WeilBarry Mann,Cynthia WeilBarry Mann-C. WeilBarry Mann-Cunthia WeilBarry Mann-Cynthia WeilBarry Mann-Cynthia WeildBarry Mann-Cynthia WeillBarry Mann-Cynthia WellBarry Mann-Cynthia WileBarry Mann-Cynthias WeilBarry Mann-Cynthir WeillBarry Mann/ Cynthia WeilBarry Mann/ Cynthia WeillBarry Mann/C. WeilBarry Mann/C. WeillBarry Mann/Cinthia WeilBarry Mann/Cnythia WeilBarry Mann/Cyntha WellBarry Mann/Cynthia WeilBarry Mann/Cynthia Weil,Barry Mann/Cynthia WeillBarry Mann/Cynthia WellBarry Mann/Cynthie WeilBarry Manny/Cynthia WeilBarry Mann–Cynthia WeilBarryMann - Cynthia WeilBarryMann/Cynthia WeilBarrymann & WeilBary Mann - Cynthia WeilBary Mann-Cynthia WeilBerry Bann, Synthia WeillBerry Mann, Cynthia WeilBerry Mann-Cynthia WeilBilly Mann / Cynthia WeilC Weil, B MannC Weil, B.MannC. MannC. Mann - C. WeilC. Mann/C. WeilC. WeilC. Weil & B. MannC. Weil - B. MannC. Weil - N. MannC. Weil / B. MannC. Weil et B. MannC. Weil, B. MannC. Weil- B. MannC. Weil-B. MannC. Weil/ B. MannC. Weil/B. ManC. Weil/B. MannC. Weil/B.MannC. WeillC. Weill - B. MannC. Weill, B. MannC. Weill-B. MannC. Weill/B. MannC. Wiel/ B. MannC.B. Mann-C. WeillC.WeilC.Weil-B.MannC.Weil/B. MannC.Weil/B.MannCnythia Weil And Barry MannCyntha Well/Barry MannCynthia MannCynthia Neil, Barry MannCynthia Weil & Barry MannCynthia Weil - Barry MannCynthia Weil / Barry MannCynthia Weil /Barry MannCynthia Weil And Barry MannCynthia Weil Et Barry MannCynthia Weil, Barry MannCynthia Weil- Barry MannCynthia Weil-Barry MannCynthia Weil/ Barry MannCynthia Weil/Barry ManCynthia Weil/Barry MannCynthia Weill & Barry MannCynthia Weill / Barry MannCynthia Weill And Barry MannCynthia Weill, Barry MannCynthia Weill/Barry MannCynthia Well / Barry MannCynthia Well And Barry MannCynthia Wil / Barry MannCyntia Weil,Barry MannCyntia Weil/Barry MamCythia Weil/Barry MannD. Mann - C. WeilD. Mann, C. WeilG. Weil - B. MannG. Weil / B. MannH. Mann - C. WeilH. Mann / C. WeilH. Mann/C. WeilHannM.M. Mann / C. WeillM. WeilMain, WeilMain/WeilMan & WeilMan - WeilMan / WeilMan WeilMan WellMan-Barry-Cynthia WeilMan-WeilMan/WeilMan/WiellMan\WeilMannMann & WeilMann & WellMann & WillMann - C. WeilMann - Cynthia WeilMann - VeilMann - WeilMann - WeillMann - WellMann - WielMann -WeilMann / C. WeilMann / WeilMann / WeillMann / WellMann / WilMann /WeilMann And WeillMann B., Weil C.Mann WeilMann WeillMann WellMann WileMann WillMann Y WeilMann _ WeilMann y WeilMann – WeilMann — WeilMann&WellMann, & WeilMann, B./Weil, C.Mann, B/Weil, CMann, Barry / Weil, CynthiaMann, Barry Weil, CynthiaMann, WeilMann, WeillMann, WellMann, WielMann, WillMann,B/Weil,CMann,WeilMann- WeilMann-C. WeilMann-WeilMann-WeillMann-WellMann-WheilMann-WielMann/ WeilMann/ WeillMann/C. WeilMann/C. WeillMann/NeilMann/WeiMann/WeiIMann/WeilMann/WeillMann/WeirMann/WellMann/WellsMann/WielMann:WeillMann; WeilMann; WeillMann?WellMann–WeilMann—WeilR. Mann, C. WeilR. W. Mann-WeillWail - ManWail - MannWail, MannWeilWeil & MannWeil - B. MannWeil - ManWeil - MannWeil / Barry MannWeil / Cynthia-MannWeil / K. MannWeil / ManWeil / MannWeil And ManWeil Cynthia / Mann BarryWeil and MannWeil, MannWeil-Barry MannWeil-MahnWeil-ManWeil-MannWeil/ MannWeil/MannWeil/Mann K.Weil/WinnWeil; MannWeile - MannWeillWeill - MannWeill / MannWeill, MannWeill-MannWeill/MannWeil–MannWeil—MannWekll/MannWell-MannWell/MannWheelWiel - MannWiel/MannWield-MasonBarry MannCynthia Weil + +732178Michel HéronNeeds VoteH. HeronH. HéronHeronHéronM. HeronM. HéronM. MeronM.HeronM.HéronMichel HeronHéron Et Béru + +732209Avery ParrishJames Avery Parrish American jazz pianist and composer, born 24 January 1917 in Birmingham, Alabama, died 10 December 1959 in New York, USA.Needs Votehttps://adp.library.ucsb.edu/names/109800A ParrishA, ParrishA. ParishA. ParrishAbery ParrishAveri ParrishAverr ParrishAverry ParrishAvery ParishAvery, ParrishP. AveryParishParrishErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State CollegiansAvery Parrish And Orchestra + +732223Manon HeijneManon HeijneSoprano VocalistNeeds VoteManon HeyneEnsemble 88Nederlands Kamerkoor + +732244Boris MüllerBoris MüllerPercussionist, born in 1963 in Haslach, Germany.Needs VoteEnsemble ModernSchlagquartett KölnEnsemble AisthesisEnsemble Modern OrchestraEnsemble Ascolta + +732482Alban BergAlban Maria Johannes BergAustrian composer of the Second Viennese School. +Born February 9, 1885 in Vienna. +Died December 24, 1935 ibid.Needs Votehttps://en.wikipedia.org/wiki/Alban_Berghttps://de.wikipedia.org/wiki/Alban_Berghttps://www.bach-cantatas.com/Lib/Berg-Alban.htmhttps://www.treccani.it/enciclopedia/alban-berg/https://www.britannica.com/biography/Alban-BergA. BergAlan BergAlban Maria Johannes BergAlfred BergAllan BergBergBerg, AlbanА. БергАлбан БергБергベルクペルク + +732491Peter StewartClassical bass / baritone vocalist and keyboard player From New YorkNeeds Votehttp://www.gvo.org/bio/peter-stewarthttp://pomerium.us/?page_id=13The Philip Glass EnsemblePomeriumMusica SacraThe Waverly ConsortVoices Of Ascension + +732706Charles FordClassical cellist. +Former member of the [a=London Symphony Orchestra] (1959-1962).Needs VoteC. FordC.FordCharlie FordLondon Symphony OrchestraThe Armada OrchestraThe Alan Tew OrchestraVic Lewis And His Orchestra + +732722Eli HudsonEli Hudson born Elijah Rennison HudsonBritish flute & piccolo player, conductor, arranger, and teacher. Born in 1877 in Kegness, Lincolnshire, England, UK as Elijah Rennison Hudson, but he changed his name officially by deed poll in 1905 - Died 18 January 1919. +He enjoyed great success as an orchestral flute player but had a parallel career as a music hall artist. Hudson is best known today as a sensational piccolo virtuoso. +He graduated from the [l290263] in 1889. He, his wife (the Welsh soprano [a=Eleanor Jones Hudson], whom he married in 1899) and his sister, [url=https://www.discogs.com/artist/6433375-Mdlle-Elgar]Winifred[/url], formed a trio, [a=Olga, Elgar And Eli Hudson], where Eleanor used the stage name Olga and Winifred called herself Elgar (after their friend, the composer [a=Sir Edward Elgar]). During the pre-war period, they travelled around the country topping the bill with their music hall act. He worked with the [a=London Symphony Orchestra] (Guest Principal Flute in 1904 and after the war), the [a=Queen's Hall Orchestra], [a=The New Symphony Orchestra Of London] (co-founder and Principal Flute), as well as the [b]Crystal Palace Orchestra[/b]. He taught at the Royal Military School, Kneller Hall.Needs Votehttps://lso.co.uk/more/blog/306-the-lso-in-world-war-i-eli-hudson.htmlhttps://www.robertbigio.com/hudson.htmhttps://www.dwsolo.com/flutehistory/rudallcarte/Eli%20Hudson.htmhttp://www.musicweb-international.com/classrev/2017/Apr/Piccolo_soloists_Scott.pdfhttps://www.flickriver.com/photos/webrarian/51301600612/https://astreetnearyou.org/person/384394/Second-Lieutenant-Elijah-Rennison-HudsonMonsieur HudsonMr Eli HudsonMr. Eli HudsonAlbert RennisonLondon Symphony OrchestraThe New Symphony Orchestra Of LondonThe Peerless OrchestraThe Black Diamonds BandOlga, Elgar And Eli HudsonRenard QuartetQueen's Hall Orchestra + +732725Edwin HinchcliffeEdwin W. HinchcliffeClassical bassoonist. +He was a founding member of the [a=London Symphony Orchestra] (1904-1909).Needs VoteE. W. HinchcliffE. W. HinchcliffeErnest HinchcliffeLondon Symphony OrchestraThe Peerless Orchestra + +732727Gilbert BartonGilbert S. BartonEnglish classical flutist. Born in 1876. +Former member of the [a=London Symphony Orchestra] (1928-1939), and Principal Flute with [a=The New Symphony Orchestra Of London].Needs VoteG. BartonLondon Symphony OrchestraThe New Symphony Orchestra Of LondonThe Peerless Orchestra + +732761Eddie King (2)Jazz drummer.CorrectFred Van Eps TrioMorris's Hot Babies + +732770Clement BaroneClement John BaroneAmerican flutist, born March 8, 1877 in Italy – died April 13, 1934 in Philadelphia, Pennsylvania, USANeeds Votehttps://adp.library.ucsb.edu/names/109242https://flutealmanac.com/clemente-barone-flautista-dimenticato/https://www.familysearch.org/ark:/61903/3:1:33SQ-G1V9-SL3https://www.findagrave.com/memorial/141333813/clemente-john-baroneBaroneC. BaroneClément BaroneFlute Obbligato Clement BaroneM. Clément BaroneThe Philadelphia OrchestraVictor Symphony OrchestraNeapolitan Trio + +732775Jesse StampBritish classical trombonist, and Professor of Trombone. Born in 1885 - Died in 1932. +He studied and graduated at the Manchester Royal College of Music (1904-1907). He joined the [a=London Symphony Orchestra] in 1909 and was made Principal Trombone in 1911. He was on the board of directors for the 1923-24 season and left the orchestra in 1928. He was a founder member of the [a=BBC Symphony Orchestra] in 1930. He was Professor of Trombone at the [l527847] from 1925 until his death.Needs Votehttps://musicmcrww1.wordpress.com/category/orchestral-musicians/StampLondon Symphony OrchestraBBC Symphony OrchestraThe Peerless OrchestraJack Hylton's Jazz BandQueen's Dance Orchestra + +732778Fred Van EpsFred Van EpsThis remarkable banjoist was born in Somerville, New Jersey on December 30, 1878. On his father's side, he was a descendant of early Dutch settlers in New York's Mohawk Valley. His mother's lineage began in America with the emigration in the 1600s of a man named Hansen from Bergen, Norway. His name was erroneously given as "Van Epps" at the turn of the century by Edison's company. In the early 1920's, he began the making of his Van Eps Recording Model Banjo and received custom orders. The June 1921 issue of Talking Machine World states, "A new instrument firm to be known as the Van Eps-Burr Corp. has been formed under the laws of the State of New York with a capital of $50,000. The incorporators are H.H. McClaskey [Burr], M.T. Kirkeby and F. Van Eps." The Van Eps Recording Banjo was modeled after the one he used in his recording and concert work. It had an aluminum resonator with a sound hole in the head, which was made of calfskin. He spent much time marketing and promoting the banjo, which remained on the market until around 1930. By then electric recording had become nearly universal and the loud volume produced by his model was no longer necessary. + +Despite competition from such accomplished banjoists as [url=http://www.discogs.com/artist/Vess+L.+Ossman]Ossman[/url], Ruby Brooks (a member of the vaudeville team of Brooks and Denton), and the banjo duo of Cullen and [url=http://www.discogs.com/artist/Arthur+Collins]Collins[/url], Van Eps' cylinders sold well. He supplemented his income by teaching and playing with local orchestras. Edison company literature often gives his name as Van Epps. In 1900, a New York City musical instrument dealer, John A. Haley, reprinted a letter by the banjoist which endorsed Haley's products and he signed the letter "Fred F.Van Epps, Banjoist. Studio, 60 Westervelt Avenue." + +Though Van Eps made his last 78 rpm records for Grey Gull in 1927, he continued to give banjo lessons during the 1930s. In the 30 years Van Eps had already been recording, he had managed to produce hundreds of individual titles that may well number over a thousand issues. + +According to Heier and Lotz's The Banjo on Record: A Bio-Discography, the instrument was falling out of favor with the general public and he eventually could no longer earn a living as a musician. In the 1950s he attempted a recording comback. In the April 1952 issue of Hobbies, Walsh announced, "Mr. Van Eps,...whose address is R.D. 2, Plainfield, New Jersey, has made a new album of six recordings, which he is issuing under the 'Five String Banjo' label. Accompaniments are by his son, Robert, a brilliant pianist....If this album meets with the success it deserves he undoubtedly will issue others. Meanwhile, he has a large business, manufacturing radio equipment at Plainfield." The recordings were made in 1950, followed by more. Heier and Lotz state, "In 1956 Fred Van Eps recorded an LP...that was issued on his own '5 String Banjo' label." This recording made his 59-year recording activity one of the longest in history. Although in sheer technical terms Van Eps surpassed Ossman -- Van Eps could play 14 notes in a second -- many ragtime fanciers preferred the crude muscularity of Ossman's performances. Van Eps also never approached the harmonic complexity of his younger contemporary Harry Reser, and unlike Reser had no interest in sinking into the texture of a jazz band, preferring to work primarily as a soloist. + +Van Eps died in Burbank, California on November 22, 1960, at the age of 85. +Needs Votehttp://en.wikipedia.org/wiki/Fred_Van_Epshttps://adp.library.ucsb.edu/names/106558F. Van EpsFred Van EppsFred Van Eps With OrchestraFred Van Eps with orchestraFrederick Van Eps, JuniorJoe BriggsVan EppsVan EpsVan Eps FredDanny Lewis (14)Fred Van Eps TrioVan Eps' Banjo OrchestraUniversity SixVan Eps QuartetVan Eps Specialty Four + +732980Richard CheethamSackbut player. +He has played sackbut with most of Europe's leading early music ensembles, and in particular with [a=Jordi Savall]'s [a=Hespèrion XX]. He also played trombone with the [a=Chamber Orchestra Of Europe] for twelve years. +Needs VoteCheethamR. CheethamNew London ConsortThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicHesperion XXThe Chamber Orchestra Of EuropeLa Capella Reial De CatalunyaOrchestra Of The RenaissanceLa Petite BandeGabrieli PlayersThe King's ConsortBaroque Brass Of LondonHis Majestys Sagbutts And CornettsLondon Pro Musica + +733175Elisabeth ArnbergSwedish classical violistNeeds VoteEliasabeth Arnberg RanmoElisabeth Arnberg RammoElisabeth Arnberg RanmoElisabeth Arnberg-RanmoStockholm Session StringsSveriges Radios SymfoniorkesterSnykoKungliga Hovkapellet + +733232Franca EvangelistiFranca Evangelisti (Roma, April 6, 1935) is an Italian singer and lyricist.Correcthttp://it.wikipedia.org/wiki/Franca_EvangelistiE.EvangelistiEvangelistEvangelistaEvangelisteEvangelistiEvangelisti, F.F .EvangelistiF. EvangelistiF. EvangelisF. EvangelistaF. EvangelistiF.EvangelistiFranka EvangelistiMiLady (4)Evy Angeli + +733259Jan AllanJan Bertil AllanSwedish jazz trumpeter, pianist and composer, born November 7, 1934 in Falun, Sweden. +Jan started as a pianist, switched to the trumpet and started playing with Carl-Henrik Norin at Nalen. Soon he was active in the circle around Lars Gullin, Arne Domnérus, Bengt-Arne Wallin and Jan Johansson. He received the Golden Record for his first solo album "Jan Allan - 70". Formed the chamber jazz trio [a=Trio Con Tromba] with Bengt Hallberg and Georg Riedel, and later a trio with Rune Gustafson and Georg Riedel.Needs Votehttp://www.allaboutjazz.com/php/musician.php?id=18851https://sv.wikipedia.org/wiki/Jan_Allanhttp://more.jazzimariefred.se/event/sweet-jazz-duo-jan-allan/AllanJ. AllanJAJan Allan & His Sweet TrumpetJan AllenThe Swedish All StarsNils Lindberg's OrchestraRadiojazzgruppenJan Allans OrkesterSven-Eric Dahlbergs KvintettGugge Hedrenius Big Blues BandJan Allan QuartetLars Gullin QuintetCarl-Henrik Norins OrkesterSaxes GaloreTrio Con TrombaPer Husby OrchestraThe Village Band (3)Jan Allan QuintetArne Domnérus KvintettAlmstedt-Lind SextettenAnders Bromander EnsembleLundin Danemo KvintettNils Lindberg QuintetNils Lindberg SextetNorsk/Svensk Cool Sextet + +733262Svein H. MartinsenSvein Harald MartinsenSwedish violinist, born on 19 September 1960.Needs VoteSvein H MartinsenSvein H. MartinssonSvein H.MartinsenSvein Harald MartinsenSvein MartinsenSvein MartinssenSvein-Harald MartinsenSven H. MartinsenSven H. MartinssenSven H. MartinssonSven M. MartinsenSveyn H MartinesenSwein H. MartinsenStockholm Session StringsSveriges Radios SymfoniorkesterSnyko + +733264Ulf ForsbergUlf ForsbergSwedish violinist. + +He studied the violin at Stockholm’s Music Academy with the Bulgarian violinist Emil Kamiralov. + +In addition to his performances with the [a848261], which he joined in 1991, he is also a member of the Swedish Radio Symphony Orchestra, which he led in the 1990’s under the direction of conductor Daniel Harding. He has toured all around the world with the orchestra and prestigious artists including Esa-Pekka Salonen and Anne-Sofie von Otter. + +Ulf Forsberg also enjoys performing in chamber ensembles and formerly was the leader of the Stockholm Chamber Orchestra. He has taken part in various chamber music projects, including recordings, with Anne-Sofie von Otter.Needs VoteStockholm Session StringsSveriges Radios SymfoniorkesterSnykoThe Chamber Orchestra Of Europe + +733768Marty BloomM.L. BlumenthalAmerican songwriter. b. Chicago 9 Nov 1893.Correcthttps://www.allmusic.com/artist/marty-bloom-mn0001218166/biographyB. BloomBloemBlomBloomBoomBrownM. BloomM.-B.Martin BloomMarty BlumJelly Roll Morton's Red Hot Peppers + +733816Marie-José SchrijnerDutch violin playerNeeds VoteMarie Jose SchrijnerNieuw Sinfonietta AmsterdamRotterdams Philharmonisch OrkestAmsterdam Sinfonietta + +733858Fud LivingstonJoseph Anthony LivingstonAmerican jazz saxophonist, clarinetist, arranger and composer. +Born : April 10, 1906 in Charleston, South Carolina. +Died : March 25, 1957 in New York City, New York. + + +Fud worked with Ben Pollack, "California Ramblers", Jean Goldkette, Nat Shilkret, Don Voorhees, Jan Garber, Joe Venuti, Red Nichols, Miff Mole, he wrote arrangements for Frankie Trumbauer and Bix Beiderbecke. +Played also in the bands of Benny Goodman, Glenn Miller, Jimmy McPartland, Bud Freeman, Fred Elizalde, Bob Zurke, Pinky Tomlin, Jimmy Dorsey and others. +Needs Votehttps://adp.library.ucsb.edu/names/110541"Fud" LivingstonF LivingstonF. LivingstonF. LivingstoneFred LevingtonFred LivingstonFred LivingstoneFredd LivingstoneFud LivingstoneFud LivingtonFudd LivingstonJ. A. LivingstonJ.A. LivingstonJ.LivingstoneJoe LivingstoneJoseph "Fud" LivingstonJoseph (Fud) LivinstonJoseph A LivingstoneJoseph A. LivingstonJoseph Anthony "Fud" LivingstonJoseph LivingstonJoseph LivingtonLinvingstoneLivingstonLivingston*LivingstoneLivingtonLouis Armstrong And His OrchestraFrankie Trumbauer And His OrchestraBoyd Senter & His SenterpedesJimmy Dorsey And His OrchestraCalifornia RamblersMiff Mole's MolersThe Charleston ChasersJoe Venuti And His New YorkersBen Pollack And His CaliforniansEarl Baker And His Friends + +734188Tom AustinCorrectAustinT. AustinT.AustinThomas AustinTommy AustinThe Royal TeensTom Austin & His Healeys + +734491Giovanni Battista PergolesiGiovanni Battista PergolesiItalian Baroque violin player, organist & composer. Born January 4, 1710 in Jesi (Ancona) Italy, died March 16 or 17, 1736 in Pozzuoli (Napoli) Italy. +Pergolesi composed serious and comic operas, interludes, oratories, cantatas, sacred music, instrumental music, but it was "La serva padrona" and "Stabat Mater" that ensured him undying fame. +"La serva padrona" is the masterpiece of comic theater, which later became the model of this musical genre, later followed by musicians such as Mozart and Rossini.Needs Votehttps://en.wikipedia.org/wiki/Giovanni_Battista_Pergolesihttps://www.britannica.com/biography/Giovanni-Battista-Pergolesihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102483/Pergolesi_Giovanni_Battista,PergolesiB. PergolesiD. PergolezisD.B.PergolesiDjovani Batista PergolezeDz. B. PergoleziDz. B.PergoleziDž. B. PergoleziDž. PergolezisDž.B. PergoleziDžovanni Batista PergoleziG .P. PergolesiG B PergolesiG. B PergolesiG. B. PergoleseG. B. PergolesiG. B. Pergolesi, Giovanni B. PergolesiG. B. PergoleziG. BattistaG. Battista PergolesiG. Bta. PergolesiG. P. PergolesiG. PergoleseG. PergolesiG. PergolezisG. PergolèseG.-B. PergoleseG.-B. PergolesiG.B. PergoleseG.B. PergolesiG.B. PergolezeG.B.PergolesiG.P. PergolesiG.PergolesiGiambattista PergolesiGianBattista PergolesiGianbatista PergolesiGianbattista PergolesiGiouanni Battista PergolesiGiov. Batt. PergoleseGiov. Batt. PergolesiGiovan Battista PergolesiGiovan PergolesiGiovan-Battista PergoleseGiovanne Batista PergolesiGiovanne Battista PergolesiGiovanni B. PergoleseGiovanni B. PergolesiGiovanni B. PergolèseGiovanni Baptista PergolesiGiovanni Batista PergolesiGiovanni Batt. PergolesiGiovanni Battesta PergolesiGiovanni BattistaGiovanni Battista PergalesiGiovanni Battista PergoleseGiovanni Battista PergolèseGiovanni PergoleseGiovanni PergolesiGiovanni PergolèseGiovanni-Battista PergoleseGiovanni-Battista PergolesiGiovanni-Battista PergolèseGiovannia Battista PergolesiGiovnni Battista PergolesiIselogrepJ. B. PergolesiJ. B. PergoléseJ. P. PergoleseJ. PergolesiJ.-B. PergolèseJ.B. PergoleseJ.B. PergolesiJ.B. PergolèseJean Baptiste PergoleseJean Baptiste PergolèseJean Battista PergolesiJean-Baptiste PergolèsePERGOLESIPergeolesiPergolePergolesPergolesePergolese G. B.Pergolese G.B.PergolesiPergolesi Giovanni BattistaPergolesi J.B.Pergolesi, G.B.Pergolesi, Giovanni B.Pergolesi, Giovanni BattistaPergolesi?PergolessiPergolezePergolisiPergolèsePergosesiĜovani PergoleziЃ. Б. ПетролезиБ. ПерголезиД. Б. ПерголезиД. ПерголезиДж. Б. ПерголезиДж. ПерголезиДж. ПерголезіДж.Б. ПерголезиДж.ПерголезиДжованни Батиста ПерголезиДжованни Баттиста ПерголезиПерголезиПерголезъПерчолезіジョバンニ・バッティスタ・ペルゴレージジョヴァンニ・バッティスタ・ペルゴレージペルゴレーシペルゴレージ + +735033David Mann (3)David FreedmanAmerican songwriter, and piano player. (born October 3, 1916, Philadelphia, Pennsylvania, USA - died March 1, 2002, New York City, New York, USA) + +CAE/IPI# :49609651Needs Votehttps://en.wikipedia.org/wiki/David_Mann_(songwriter)https://www.ascap.com/repertory#/ace/writer/49609651/MANN%20DAVID%20Ahttps://adp.library.ucsb.edu/names/329302Cpl. Dave MannD MannD, MannD. A. MannD. ManD. MannD. MasonD.A. MannD.MannDave A. MannDave ManDave MannDave MasonDavid A MannDavid A, MannDavid A. "Dave" MannDavid A. MannDavid ManDavid MannDavid Mann (Freedman)E. MannG. MannK. MannManMannMasonMurray MannCharlie Spivak And His OrchestraJimmy Dorsey And His OrchestraDavid Mann And His Orchestra + +735186Mark Brady (2)Mark William BradyNeeds VoteBardyBradyBrady, M.BreadyM BradyM. BradyM.BradyDJ BreezeMark BreezeStatik (9)DimenzionsDNA & BreezeNasty BoyzInfextiousFutureworldBo & LukeDJ Breeze & Mickey Skeedale69 (2)Sonic State (2)The Underground ConnectionStyles & Breeze4 Rising StarsBreeze & ModulateSBPMMagikstar (2) + +735195Ute GrewelGerman double bsssist, born in 1963.CorrectTonhalle-Orchester Zürich + +735199Esther PitschenEsther Pitschen AmekchouneSwiss flute player, born in 1961. She was a member of the [a8551878] from 1991 to 2022.Needs VoteTonhalle-Orchester Zürich + +735216Kristy ConrauCellist. Moved to Sydney, Australia in 2003. +Needs Votehttps://www.sydneysymphony.com/musicians/kristy-conrauChristie ConrauSydney Symphony OrchestraAustralian Youth Orchestra + +735323Victor von HalemGerman operatic bass. Using the pseudonym Sven Martin he recorded some Singles together with the German composer [a=Peter Thomas]. +(26 March 1940 – 28 May 2022)Needs Votehttps://de.wikipedia.org/wiki/Victor_von_Halemhttps://en.wikipedia.org/wiki/Victor_von_Halemhttps://www.imdb.com/name/nm0902362/HalemV. Von HalemVictor van HalemVon Halemvon HalemSven Martin (3) + +735380Will QuadfliegFriedrich Wilhelm QuadfliegGerman actor. + +He was born 15 September 1914 in Oberhausen, Germany and died 27 November 2003 in Osterholz-Scharmbeck, Germany. + +Father of [a=Christian Quadflieg] +Needs Votehttp://en.wikipedia.org/wiki/Will_QuadfliegQuadfliegEnsemble Des Wiener Burgtheaters + +736281Lodewijk De BoerLodewijk Maria LichtveldLodewijk de Boer was a Dutch actor and (film score) composer. Born on 11 February 1937 in The Netherlands. Died on 4 June 2004 in Amsterdam, The Netherlands.Needs Votehttp://www.imdb.com/name/nm0091310/https://theaterencyclopedie.nl/wiki/Lodewijk_de_BoerL. De BoerLodevijk De BoerLodewijk de BoerLodewyck de BoerLodewyk De BoerWillem Breuker KollektiefLeonhardt-ConsortWillem Breuker Orchestra + +736526Tjamke RoelofsClassical violinist.Needs VoteTjarnke RoelofsThe Amsterdam Baroque OrchestraMondriaan StringsOrchestra Of The 18th CenturyOrkest Amsterdam Drama + +736534Elisabeth SmaltDutch violist. She has been a member of Oxalys, the Prisma string trio, the Nepomuk Fortepiano Quintet, and was a founder member of the Zephyr Quartet Amsterdam. She has given Dutch premières of viola works by Radulescu, Tenney, Harrison, Denyer, Hirs and Partch.Needs Votehttp://www.elisabethsmalt.nl/elisabeth_smalt/home.htmlElizabeth SmaltAsko EnsembleThe Barton WorkshopNieuw Sinfonietta AmsterdamMusica Ad RhenumTrio ScordaturaNepomuk Fortepiano QuintetZephyr QuartetOxalysVan Swieten SocietyLuna String QuartetScordatura EnsembleOsmosis (24) + +736604Bruno RiguttoFrench pianist, composer and conductor, born August 12, 1945 in Charenton.Needs Votehttps://en.wikipedia.org/wiki/Bruno_Riguttohttps://apartemusic.com/en/artiste-details/bruno-rigutto-2025-01-20-14-51Riguttoブルーノ・リグット + +736605Yuri AhronovitchЮрий Михайлович АрановичSoviet-Israeli conductor and music teacher. +Born: May 13, 1932 Leningrad (now Saint Petersburg), USSR +Died: October 31, 2002, Köln, Germany + +Principal conductor of: +[a1414732] (1964-72) +[a866649] (1975-86) +[a939901](1982-87)Needs Votehttp://www.yuriahronovitch.com/https://ru.wikipedia.org/wiki/Аранович,_Юрий_МихайловичAhronovitchAronovichIouri AranovitchJ. AranowitschJuri AranowitschJurij AhronowitschJurij AranowitschY. AhronovitchY. AranovichY. AronovitchYuri AhronovichYuri AhronovitschYuri AhronovitsjYuri AhronowitchYuri AhronowitschYuri AhronvitchYuri AranovichYuri AranovitchYuri AronovichYury AhronovitchЮ. АрановичЮрий АрановичЮрий АроновичГосударственный Симфонический Оркестр Министерства Культуры СССР + +736606Orchestre National De L'Opéra De Monte-CarloMonegasque orchestra from the principality of Monaco, Monte-Carlo, founded in 1856.Needs Votehttps://www.opmc.mc/https://soundcloud.com/opmc-classicshttps://twitter.com/montecarlo_orchhttps://en.wikipedia.org/wiki/Monte-Carlo_Philharmonic_OrchestraA Monte Carlo-i Nemzeti Opera ZenekaraChorus And Orchestra Of The Monte Carlo National OperaChorus And Orchestra Of The Monte-Carlo OperaChorus/Orchestra Of The Monte Carlo National OperaChœur Et Orchestre National De L'Opéra De Monte-CarloChœur National De L'Opéra De Monté-CarloChœurs & Orchestre De L'Opéra De Monte-CarloChœurs Et Orchestre National De L'Opéra De Monte-CarloCralo National Opera OrchestraDe L'Opéra De Monte CarloGrand Orchestre D'OpéraL' Orchestre National De L'Opera De Monte CarloL'Orchestra National De L'Opera De Monte-CarloL'Orchestra National De L'Opéra De Monte-CarloL'Orchestre NationalL'Orchestre National De L'Opera De Monte CarloL'Orchestre National De L'Opera Monte CarloL'Orchestre National De L'Opéra De Monte CarloL'Orchestre National De L'Opéra De Monte-CarloL'Orchestre National De L'Opéra De Monte-Carlo AuL'Orchestre National De l'Opera De Monte-CarloL’Orchestre National de l’Opéra de Monte-CarloMembers Of The Gothenburg Symphony OrchestraMonte Carlo National Opera OrchestraMonte Carlo National Orch.Monte Carlo National OrchestraMonte Carlo OperaMonte Carlo Opera ChorusMonte Carlo Opera House OrchestraMonte Carlo Opera Orch.Monte Carlo Opera OrchestraMonte Carlo OrchestraMonte-Carlo National Opera OrchestraMonte-Carlo National Opéra OrchestraMonte-Carlo National OrchestraMonte-Carlo Opera OrchesterMonte-Carlo Opera OrchestraMontecarlo National Opera OrchestraMontecarlo National OrchestraMontecarlo OrchestraNational De L'Opera De Monte CarloNational De L'Opéra De Monte-CarloNational Opera Orchester Of Monte CarloNational Opera Orchestra Of Monte-CarloNational Opera Orchestra Of Monte CarloNational Opera Orchestra of Monte-CarloNational Opera Orchestra, Monte CarloNational Orchestra Of The Monte Carlo OperaNational Orchestra Of The Monte Carlo Opera, De AlmeidaNational Orchestra Of The Monte-Carlo OperaNational Orchestra Of The Opera, Monte CarloNational Orchestra of Monte-Carlo OperaNational Orchestra of the Monte Carlo OperaNational Orchestra of the Monte-Carlo OperaNationales Opernorchester Monte CarloNationalorchester Der Oper Monte CarloNationalorchester Der Oper Monte-CarloNationalorchester der Oper Monte CarloO. N. De La Ópera De MontecarloOpera Orchestra Of Monte CarloOpera Orkest Monte CarloOperni Orkestar - Monte CarloOperni Orkestar Monte-CarloOpéra De Monte-CarloOrch. Naz. Dell'Opera Di Monte-CarloOrchester Der Nationaloper Monte CarloOrchester Der Nationaloper Monte-CarloOrchester Der Oper Monte CarloOrchester Der Oper Von Monte CarloOrchester Der Staatsoper Monte CarloOrchester Der Staatsoper Monte-CarloOrchester der Nationaloper Monte CarloOrchestrA Nationale Dell'Opera Di Monte CarloOrchestraOrchestra Dell'Opera Di MontecarloOrchestra Dell'opera Di MontecarloOrchestra MontecarloOrchestra National De L'Opera De Monte-CarloOrchestra National De L'Opéra De Monte CarloOrchestra National De Monte-CarloOrchestra Nazionale Dell'Opera Di Monte CarloOrchestra Nazionale Dell'Opera Di Monte-CarloOrchestra Nazionale Dell'Opera Di MontecarloOrchestra Nazionale Dell'opera Di Monte CarloOrchestra Nazionale Dell'opera Di MontecarloOrchestra Nazionale Di Monte CarloOrchestra Nazionale dell'Opera di Monte CarloOrchestra Of The Monte Carlo OperaOrchestra Of The National Opera Of Monte CarloOrchestra Opera Monte CarloOrchestre De L'Opéra De Monte CarloOrchestre De L'Opéra De Monte-CarloOrchestre National De L'Opera De Monte CarloOrchestre National De L'Opera De Monte-CarloOrchestre National De L'Opéra De Monte CarloOrchestre National De L'Opéra De Monte CarloOrchestre National De L'Opéra De MontecarloOrchestre National De L'Opéra De Monté-CarloOrchestre National De L'Opéra Monte CarloOrchestre National De L'opera De Monte CarloOrchestre National De Monte CarloOrchestre National De Monte-CarloOrchestre National Et Chœurs De L'Opéra De Monte-CarloOrchestre National de L'Opera de Monte-CarloOrchestre National de Monte-CarloOrchestre National de l'Opera de Monte CarloOrchestre National de l’Opéra de Monte-CarloOrchestre Nationale De L'Opera De Monte-CarloOrchestre Tzigane De Monte CarloOrkest Van De Opera Van Monte CarloOrkest v/d Nationale Opera van Monte-CarloOrkestar Državne Opere Iz Monte - CarlaOrkestar Državne Opere Iz MontekarlaOrq. Fil. Monte CarloOrquestaOrquesta De La Opera De MontecarloOrquesta De La Ópera De MontecarloOrquesta De La Ópera De Montecarlo Dirigido PorOrquesta De La Ópera de MontecarloOrquesta Filarmónica De MontecarloOrquesta Nacional De L'Opera De Monte-CarloOrquesta Nacional De La Opera De Monte CarloOrquesta Nacional De La Opera De Monte-CarloOrquesta Nacional De La Opera De MontecarloOrquesta Nacional De La Opera de Monte-CarloOrquesta Nacional De La Opera de MontecarloOrquesta Nacional De La Ópera De Monte-CarloOrquesta Nacional De La Ópera De MontecarloOrquesta Nacional De La Ópera de MontecarloOrquesta Nacional De Monte-CarloOrquesta Nacional de La Opera De Monte-CarloOrquesta Nacional de la Opera de Monte CarloOrquesta Nacional de la Opera de MontecarloOrquesta Nacional de la Ópera de MontecarloOrquesta National De La Opera De Monte CarloOrquesta de La Opera de Monte-CarloOrquesta de La Opera de MontecarloOrquestra Da Ópera De Monte CarloOrquestra Nacional Da Ópera De Monte CarloOrquestra Nacional Da Ópera De MontecarloOrquestra Nacional Da Ópera Du MontecarloOrquestra Nacional De Opera De Monte CaloRichard BonyngeThe Monte Carlo National OrchestraThe Monte Carlo Opera OrchestraThe Monte-Carlo National Opera OrchestraThe Monte-Carlo National OrchestraThe Monte-Carlo OperaThe Monte-Carlo Opera OrchestraThe National Orchestra Of The Monte Carlo OperaThe Orchestre National De L'Opéra De Monte-CarloUn Groupe De SolistesOrchestre National De L'Opéra De Monte-CarloНациональный Оперный Оркестр Монте-КарлоНациональный Оркестр Оперы Монте-КарлоОркестр Национальной Оперы Монте-Карлоモンテカルロ国立歌劇場管弓玄楽団モンテカルロ国立歌劇場管弦楽団モンテ・カルロ国立歌劇場管弦楽団Orchestre Philharmonique De Monte-CarloRoger AlbinLeo PanasevichGeorges MoleuxAugusto VismaraRiccardo DonatiHaydn BeckJean-Claude Tassiers + +736970Leah WorthLyricist, best known for the song Meaning of the Blues. Often credited as Lee Worth.Needs VoteL. WorthL.WorthLea WorthLee WorthWorthЛ. Уорт + +736976Herbert MagidsonHerbert Adolph MagidsonAmerican songwriter, inducted into the Songwriters Hall of Fame in 1980. +Born: 7th January 1906, Braddock, Pennsylvania. +Died: 2nd January 1986, Beverly Hills, CaliforniaNeeds Votehttps://www.songhall.org/profile/Herb_Magidsonhttps://en.wikipedia.org/wiki/Herb_Magidsonhttps://www.imdb.com/name/nm0536054/https://adp.library.ucsb.edu/names/108738Bernie MagidsonGerb MagidsonH MagidsonH. MadigsonH. MadisonH. MagdisonH. MagidonH. MagidsonH. MagidssonH. MagiosonH. MagldsonH. MigidsonH.MagidsonHarb MagidsonHaro MagidsonHer MagidsonHerbHerb MagidsonHerb - MagidsonHerb A. MagidsonHerb MadgidsonHerb MadigsonHerb MadisonHerb MagdisonHerb MagidonHerb MagidsonHerb. MagidsonHerbert Adolph MagidsonHerbert MagdisonHerbert MagidonHerbery MagidsonHerd MagidsonHubert MagidsonJ. MagidsonJagidsonMadgidsonMadgisonMadigsonMadisonMagdisonMagdsonMagideonMagidisonMagidonMagidsenMagidsonMagirsonMagisonMagldonMagnussonMasgidsonMigidsonMogedsonMugesonГ. МэджидсонМеджисонХ. Меджисон + +736979Chauncey GrayAmerican composer, songwriter, conductor and pianist, born 5 January 1904, died 10 January 1984.Needs Votehttps://adp.library.ucsb.edu/names/100416C GrayC, GrayC. CrayC. GrayC. GreyC.GreyCh. GrayChauncey GreyChauncy GrayChaunoey GrayGaryGeayGragGravyGrayGrayBennettGreyGroyL. GrayL. GreyThe El Morocco OrchestraUniversity SixChauncey Gray And His Orchestra + +736986Leif Arne PedersenLeif Arne Tangen PedersenNorwegian clarinetist and conductor, born 1964 in Porsgrunn, Norway. +Studied under [a1332038] in Copenahgen, and [a424586] in Chicago.Needs VoteLeif Arne Tangen PedersenLeif-Arne PedersenOslo Filharmoniske OrkesterBorealis (3)Oslo Philharmonic Chamber Group + +737101Steinar HannevoldNeeds VoteSteinar HanevoldBergen TreblåsekvintettBergen Filharmoniske OrkesterBergen Woodwind Quintet + +737430Hans Bernhard BätzingSound engineer and producer for recordings of classical music.CorrectBernard BätzingBernhard BätzingHans Bernard BätzingHans-Bernard BätzingHans-Bernhard BetzingHans-Bernhard Bätzing + +737489Ron MyersTrombone player.Needs VoteDon MyersMyersR. MyersRoland MyersRon MeyersRonald MyersRoy MyersWoody Herman And His OrchestraThe Don Ellis OrchestraWoody Herman And The Swingin' Herd + +737501Vince DiazTrombonistCorrectVincent DiazHarry James And His OrchestraBuddy Rich Big BandThe Mike Barone Big Band + +737563Roger WagnerRoger Francis WagnerFrench-American choral conductor born on January 16, 1914 in Le Puy, France and died on September 17, 1992 in Dijon, France.Needs Votehttps://en.wikipedia.org/wiki/Roger_Wagnerhttps://www.bach-cantatas.com/Bio/Wagner-Roger.htmConductorDr. Roger WagnerR. WagnerWagnerWagner-SmithThe Roger Wagner ChoraleThe Roger Wagner Chamber Orchestra + +737925Karol SzymanowskiKarol Maciej SzymanowskiBorn October 3, 1882 in [url=https://pl.wikipedia.org/wiki/Tymoszówka]Tymoszówka[/url], died March 29, 1937 in [url=https://pl.wikipedia.org/wiki/Lozanna]Lausanne[/url]. Polish composer, pianist, teacher and writer. He belonged to the group of composers of [url=https://pl.wikipedia.org/wiki/Młoda_Polska]Młoda Polska[/url].Needs Votehttps://en.wikipedia.org/wiki/Karol_Szymanowskihttps://en.wikipedia.org/wiki/Karol_SzymanowskiChimanovskyK. ShimanovskyK. SzymanovskiK. SzymanowkiK. SzymanowskiK. SzymanowskyK. ŠimanovskisK.SzymanoskiK.SzymanowskiKarolKarol Maciej SzymanowskiKarol SzymanovskiKarol SzymanovskyKarol SzymanowskyMaciejewskiSymanowskiSzimanowskiSzymanovskiSzymanovskySzymanowkiSzymanowskiSzymanowski, KarolSzymanowski:SzymanowskyК. ШимановскиК. ШимановскийКароль Шимановскийカロル・シマノフスキシマノフスキ + +738279Helena Wood (2)Classical soloist & chamber violinist, and orchestra leader. +She attended the [l290263] (1997-2001). As a soloist, she has performed with such orchestras as the [a=BBC Philharmonic], [a=London Mozart Players], [a883811] and [a=English Sinfonia]. She has guest led many orchestras such as the BBC Philharmonic Orchestra, [a=BBC Scottish Symphony Orchestra], [a=The Royal Philharmonic Orchestra], Stuttgart Chamber Orchestra, [a=Iceland Symphony Orchestra], [a=Scottish Chamber Orchestra] and [a=The Cape Town Opera Company]. For four years, she was Principal Violin at [a=The English National Opera Orchestra]. Former Concertmaster of the [a=RTÉ National Symphony Orchestra] (06/2013-06/2018). + + + Needs Votehttp://helenawood.com/https://www.facebook.com/travellingleader/http://finalnotemagazine.com/articles/helena-wood/https://maslink.co.uk/client-directory?client=WOODH1&instrument=VIOLI1https://music.apple.com/mv/artist/helena-woods/1353490110London Symphony OrchestraThe English National Opera OrchestraRTÉ National Symphony Orchestra + +738282Adrian Smith (3)Viola player.Needs VoteBBC Symphony OrchestraMillennia StringsThe Millennia Ensemble + +738377Lawrence WellerClassical vocalist.CorrectPomerium + +738471Matteo ChiossoSongwriterNeeds VoteChiossoChiosso, MatteoM. CeiossoM. ChiossoM.ChiossoLeo ChiossoRoxy Bob + +738659Ralph SchécrounNeeds VoteR. SchecrounRalph SchecrounRaph ScheckrounRaph SchecrounRaph SchekrounRaph SchécrounRaphaël "Raph" SchecrounErrol ParkerQuintette Du Hot Club De FranceThe Errol Parker ExperienceErrol Parker TrioKenny Clarke And His 52nd Street BoysThe Errol Parker TentetRaph Schekroun Et Son Quintette + +739166Chris Arnold (2)Christian Charles ArnoldPart of the production team [a4844029] with [a=David Martin (8)] and [a=Geoff Morrow].Needs VoteArnoldC. ArnolC. ArnoldCh. ArnoldChrisChris ArnoldChristian ArnoldКрис АрнольдButterscotch (2)Arnold, Martin And Morrow + +739208Harry BarrisAmerican jazz singer, pianist and songwriter. +Born November 24, 1905 in New York City, New York, USA. +Died December 13, 1962 in Burbank, California, USA. + +Harry was a member of the “Rhythm Boys” (with Al Rinker and Bing Crosby). +Married to singer [a=Loyce Whiteman] (1931-1946); father of singer/actress [a=Marti Barris].Needs Votehttp://www.allmusic.com/artist/barris-p54605http://en.wikipedia.org/wiki/Harry_Barrishttp://www.imdb.com/name/nm0057574/http://www.parabrisas.com/d_barrish.phphttps://adp.library.ucsb.edu/names/109560B. BarrisB. HarrisBarisBarnesBarnsBarrieBarrifBarrisBarrishBarristerBarrsBarry - HarrisBatesBerrisBorrisC. BarrisDorrisE.W. BarrisH BarrisH. BarrisH. BarrisH. BarsisH. BerrisH. HarrisH.BarrisH.バリスHappy Harry BarrisHarrisHarris BarrisHarry BarisHarry BarnsHarry BarrieHarry BarriesHarry BarristHarry BerrisHarry BurrisHarry HarrisHrry BarrisJ. BarrisJohnny BarrisR. BarrisRoy BarrisХ. БаррисThe Rhythm BoysFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraPaul Whiteman's Rhythm BoysPaul Ash & His Orchestra + +739303Peter WilhouskyPeter J. WilhouskyAmerican chorus master and arranger. Best known for writing the English lyrics to "Carol of the Bells" and his arrangement of "The Battle Hymn of the Republic".Needs Votehttps://en.wikipedia.org/wiki/Peter_Wilhouskyhttp://www.carpatho-rusyn.org/fame/wilho.htmJ. WilhouskyManoonkinP. J. WilhouskyP. WilhouskiP. WilhouskyP.J. WilhouskyPete WilhouskyPeter J WilhouskyPeter J. WilhouskeyPeter J. WilhouskyPeter J. WilhovskyPeter J. WilhowskyWilhonskyWilhouskeyWilhouskyWilhouskypeterWilhovskyWilhowskyWillhouskyWilshoushkyWilshousky + +739316Jeff CastlemanJeffry Alan CastlemanAmerican jazz bassist, born January 27, 1946, in Los Angeles, California. + +Active late 1960s to 1980s, known for working with Duke Ellington (1967 to 1969), Frank Sinatra, Bob Hope, Don Ho. Relocated to Brooklyn Park, Minnesota, in late 1980s to run family business, then worked at Schmitt Music in Minnetonka, Minnesota. Now retired. +Needs Votehttps://www.linkedin.com/in/jeff-castleman-09b8a4140Jeff CastelmanJeffry CastlemanJerry CastlemanДжефф КаслменDuke Ellington And His Orchestra + +739322Money JohnsonHarold JohnsonAmerican jazz trumpeter + +February 23, 1918, Tyler, Texas - March 28, 1978, New York CityNeeds Votehttps://en.wikipedia.org/wiki/Money_Johnsonhttps://www.allmusic.com/artist/money-johnson-mn0001638086/biographyHarold "Money" JohnsonМани ДжонсонHarold Johnson (2)Duke Ellington And His OrchestraThe Cliff Smalls Septet + +739327Harold Johnson (2)Harold Johnson.American jazz trumpeter and singer. + +Born : February 23, 1918 in Tyler, Texas. +Died : March 28, 1978 in New York City, New York. + +Harold worked with : Charlie Christian, Henry Bridges, Nat Towles, Horace Henderson, Bob Dorsey, Count Basie, Cootie Williams, Lucky Millinder, Bull Moose Jackson, Louis Jordan, Lucky Thompson, Sy Oliver, Buddy Johnson, Cozy Cole, Mercer Ellington, Little Esther, Panama Francis, King Curtis, Earl Hines and others. +Nickname : "Money".Needs VoteHal "Money" JohnsonHarold "Money" JohnsonHarold "Money" Johnson (2)Harold "Mooney" JohnsonHarold 'Money' JohnsonHarold (Money) JohnsonHarold JohnsonHarold Money JohnsonJohnsonMoney JohnsonArtie Shaw And His OrchestraLucky Millinder And His OrchestraLouis Jordan And His OrchestraLucky Thompson And His Lucky Seven + +739331Rosamund PlummerAustralian flutistNeeds VoteSydney Symphony OrchestraThe Palm Court Orchestra (2) + +739362Lou SingerPercussionist and drummer + +[b] >> For the songwriter, use [a=Louis C. Singer] << [/b]Needs VoteL. SingerLouis "Lou" SingerLouis 'Lou' SingerLouis SingeLouis SingerSingerWoody Herman And His OrchestraArtie Shaw And His OrchestraErroll Garner TrioHenry Mancini And His OrchestraLouie Bellson OrchestraRalph Carmichael OrchestraJohnny Richards And His OrchestraBobby Christian And His OrchestraSi Zentner & His Dance BandThe Rhythm Maniacs (3)Dom Frontiere Octet + +739468Henrik BlixtSwedish bassoonistNeeds VoteSveriges Radios SymfoniorkesterAmadékvintettenThe Amadé Quintet + +739484Susan ShumwayViolinist and violistNeeds VoteMikel Rouse Broken ConsortOrchestra Of St. Luke's + +739929Jimmy FontanaEnrico SbriccoliItalian actor, songwriter and singer born on 13 Nov 1934 in Camerino and died on 11 Sept 2013 in Sacrofano, Rome. + +He was "discovered" by Peppino D'intino, leader of the "Roman New Orleans Jazz Band", he made his debut in a show for the Carnival of Tivoli. Then he gave a series of recitals in nightclubs in Geneva and, upon returning to Italy, got his first record deal. +Needs Votehttps://www.imdb.com/name/nm0284921/?ref_=nv_sr_srsg_0https://it.wikipedia.org/wiki/Jimmy_FontanaD. FontanaEnrico SbriccoliF. FontanaFantanaFonatanaFontanaFontana J.Fontana JimmyFontana,JFontanapesFontaneFontanoFontansFontonoFortanaFotanaG. FontanaI. FontanaJ FontanaJ. FontanaJ. FontanáJ. FonyanaJ. MontanJ. Von TamaJ. フォンターナJ.FontanaJimmi FontanaJimmyJimmy Fontana (aka Enrico Sbriccoli)Jimmy Fontana GrecoJimy FontanaL. FontanaSontanaД. ФонтанаФонтанФонтанаジミー・フォンタナEnrico Sbriccoli + +739931Boudleaux & Felice BryantBoth were inducted into Songwriters Hall of Fame in 1986.Needs Votehttps://en.wikipedia.org/wiki/Felice_and_Boudleaux_BryantB & F BryantB & F. BryantB + F BryantB + S. BryantB And F BryantB Bryant / F BryantB Bryant/F BryantB Bryant/F. BryantB Et F. BryantB&F BoudleauxB&F BryantB+F BryantB, & F. BryantB- Bryant-F. BryantB. & F BryantB. & F. BrayantB. & F. BryantB. & F.BryantB. & M. BryantB. &F. BryantB. + F. BryantB. And F. BryantB. Boudleaux & F. BryantB. Boudleaux/F. BryantB. BrianB. Bruyant, F. BryantB. BryantB. Bryant & F. BryantB. Bryant & Felice BryantB. Bryant , F. BryantB. Bryant - F. BryantB. Bryant - Felice BryantB. Bryant -F. BryantB. Bryant / F. BryantB. Bryant And F. BryantB. Bryant F, BryantB. Bryant – F. BryantB. Bryant – Felice BryantB. Bryant, D. BryantB. Bryant, F. BryantB. Bryant- F. BryantB. Bryant-F. BryantB. Bryant-F.BryantB. Bryant-Felice BryantB. Bryant/ F. BryantB. Bryant/F BryantB. Bryant/F. BryantB. Bryant; F. BryantB. Byrant/ F. ByrantB. E F. BryantB. F .BryantB. F. BryantB. I F. BryantB. U. F. BryantB. Und F. BryantB. Y F. BryantB. Z. F. BryantB. and F. BryantB. u. F. BoyantB. u. F. BryantB. y F. BryantB.& F. BryantB.&F. BryantB.Bryant & F.BryantB.Bryant / F.BryantB.Bryant, F.BryantB.Bryant-F.BryantB.Bryant/F.BryantB.F BryantB.F. BriantB.F. BryantBeaudaleaux, FeliceBojdleavx Bryant-Felice BryantBondlean-BryantBood & Felice BryantBordeaux/BryantBordleaux & BryantBordleaux Bryant-Filice BryantBoud Leaux & Felix BryantBoudeaux/BryantBoudelaux And Felice BryantBoudelaux BryantBoudelaux-BryantBoudeleaus & F. BryantBoudeleaux & Felice BryantBoudeleaux - BryantBoudeleaux And Felice BryantBoudeleaux Bryant / Felix BryantBoudeleaux Bryant/Felice BryantBoudeleaux Bryant/Felix BryantBoudeleaux-BryantBoudeleaux/BryantBoudleau & FeliceBoudleau And Felice BryantBoudleau Und Felice BryantBoudleauxBoudleaux & BryantBoudleaux & Celis BryantBoudleaux & F. BryantBoudleaux & FeliceBoudleaux - B. FeliceBoudleaux - BriantBoudleaux - BryantBoudleaux - F BryantBoudleaux - F. BryantBoudleaux - Felice BryantBoudleaux / BryantBoudleaux / F. BryantBoudleaux / Felice BryantBoudleaux And F. BryantBoudleaux And Felice BryantBoudleaux Bryan / Felice BryantBoudleaux BryantBoudleaux Bryant & FeliceBoudleaux Bryant & Felice BryantBoudleaux Bryant & Felice Bryant,Boudleaux Bryant - F. BryantBoudleaux Bryant - Felice BryantBoudleaux Bryant / Felice BryanBoudleaux Bryant / Felice BryantBoudleaux Bryant ; Felice BryantBoudleaux Bryant And Felice BryantBoudleaux Bryant Et Felice BryantBoudleaux Bryant Et Félice BryantBoudleaux Bryant and Felice BryantBoudleaux Bryant, Felice BryantBoudleaux Bryant,Felice BryantBoudleaux Bryant-Felice BryantBoudleaux Bryant/Elice BryantBoudleaux Bryant/Felice BryantBoudleaux Bryant/Felix BryantBoudleaux Bryant; Felice BryantBoudleaux E Felice BryantBoudleaux Felice BryantBoudleaux Und Felice BryantBoudleaux and Felice BryantBoudleaux et Felice BryantBoudleaux n' Felice BryantBoudleaux u. Felice BryantBoudleaux y Felice BryantBoudleaux — BryantBoudleaux, BryantBoudleaux, F. BryantBoudleaux, FeliceBoudleaux, Felice BryantBoudleaux-BryantBoudleaux-Bryant-F. BryantBoudleaux-Cecile BryantBoudleaux-F. BryantBoudleaux-Felice BryantBoudleaux/ BryantBoudleaux/ Felice BryantBoudleaux/BryantBoudleaux/F. BryantBoudleaux/Felice BryantBoudleaux/Felice BryanyBoudleauy-BryantBoudleavy, BryantBoudleax Bryant/Felix BryantBoudleax-BryantBoudleux - Bryant - Félice BryantBoudleux Bryant-Felice BryantBoudlewaux Bryant/Felice BryantBoudlexBoudlex/Bryant/BryantBoudreaux And Felice BryantBoudreaux Bryant / Felice BryantBoudreaux Bryant, Felice BryantBould Le Jeaux/F. BryantBouldleaux - Felice BryantBoundleaus Gryant/Felica BryantBourdleaux & Felice BryantBoyant-BrayantBoyant-T. BrayantBoydleaux Bryant - Felice BryantBriantBriant - Boudleaux - FeliceBryan - BryanBryan-BryanBryantBryant & BryantBryant & LeauxBryant - BoudeleauxBryant - Boudleaux / Bryant - FeliceBryant - BryantBryant / BryantBryant And BryantBryant And Felice BryantBryant Boudleaux / Bryant FeliceBryant Boudleaux/BryantBryant, BryantBryant, Felice / Bryant, BoudeleauxBryant, Felice/Bryant, BoudleauxBryant-BoudeleauxBryant-BryantBryant/ BryantBryant/BoudeleauxBryant/BoudleauxBryant/BoudleuxBryant/BryantBryant/Bryant/BryantBryant/Felice/Bryant/BoudeleauxBryant/Felice/Bryant/BoudleauxBryant; BryantBryantBoudleaux/BryantBryantsByrant ByrantByrant-ByrantD & F BryantD. And F. BryantD. Bryant/F. BryantDoudleaux & Felice BryantE. & F. BryantF & B BryantF & B. BryantF & D BryantF Bryant / B BryantF Bryant/B BryantF&B BryantF&B. BryantF-Bryant-B. BryantF. & B. BoudleauxF. & B. BriantF. & B. BryantF. & B. ByantF. &. B. BryantF. + B. BryantF. + B.BryantF. And B. BryantF. B. BryantF. Boudleaux - BryantF. Boudleaux-BryantF. Bryan/B. BryantF. Bryand - B. BryandF. Bryand / B. BryandF. BryantF. Bryant & B. BryantF. Bryant - B. BryantF. Bryant - D. BryantF. Bryant / B. BryantF. Bryant / F. BryantF. Bryant And B. BryantF. Bryant And R. BryantF. Bryant B. BryantF. Bryant, B BrayntF. Bryant, B. BryantF. Bryant, BoudleouxF. Bryant, P. BryantF. Bryant- B. BryantF. Bryant-B. BryantF. Bryant-B.BryantF. Bryant/B. BryantF. Bryant/B. BryntF. Bryant/B.BryantF. Bryant—B. BryantF. Bryrant, B. BryantF. E B. BryantF. Felice, B. BryantF. Fryant-B. BryantF. RyantF. U. B. BryantF. Und B. BryantF. Y B. BryantF. and B. BryantF. e B. BryantF. en B. BryantF. et B. BryantF. og B. BryantF. u. B. BryantF. y B. BryantF.& B. BryantF.B. BryantF.Bryant -B.BryantF.Bryant-B.BryantF.Bryant/B.BryantF/B. BryantFelice & B. BryantFelice & Beauleau BryantFelice & Bodleaux BryantFelice & Bordleaux BryantFelice & Boudelaux BrantFelice & Boudelaux BryantFelice & Boudeleau BryantFelice & Boudeleaux BryantFelice & BoudelouxFelice & Boudeloux BryantFelice & Boudieaux BryantFelice & BoudleauxFelice & Boudleaux BryantFelice & Boudleux BryantFelice & Boudloux BryantFelice - Boudleaux BryantFelice - BryantFelice - Bryant - BoudleautFelice / Beaudeleaux / BryantFelice / Boudleaux BryantFelice / BryantFelice A Boudleaux BryantFelice And Beaudeleaux BrownFelice And Boudeloux BryantFelice And Boudleaux BryantFelice And Boudleaux ByrantFelice Boudleaux - BryantFelice BryantFelice Bryant & BoudeleauxFelice Bryant & BoudleauxFelice Bryant & Boudleaux BryantFelice Bryant - Boudleaux BryantFelice Bryant - Boudleux BryantFelice Bryant / Boudleaux BryantFelice Bryant / Bourdeaux BryantFelice Bryant And Boudleaux BryantFelice Bryant, Bordleaux BryantFelice Bryant, Boudeleaux BryantFelice Bryant, Boudleaux BryantFelice Bryant- Boudleaux BryantFelice Bryant-Boudleaux BryantFelice Bryant/ Boudleaux BryantFelice Bryant/Boudeleaux BryantFelice Bryant/Boudleaux BryantFelice Bryant–Boudleaux BryantFelice Byrant - Boudleaux ByrantFelice Et Boudleaux BryantFelice Und Boudleaux BryantFelice a Bodleaux BryantFelice and Boudeaux BratFelice and Boudleaux BryantFelice and Bouldleaux BryantFelice&Boudleaux BryantFelice, Bodleaux BryantFelice-BoudleauxFelice-Boudleaux BryantFelice-Boudleaux-BryantFelice-BryantFelice; Boudleaux; BryantFelice; Boudleux BryantFelicia And Boudleaux BryantFelix & Boudleaux BryantFelix Bryant / Boudleoux BryantFelix Bryant E Boudleaux BryantFelix Bryant/Boudleaux BryantFelix-B. BryantG. Bryant / F. BryantLouis/BryantM. & F. BryantM. BryantP&B BryantSelice-BoudleauxThe BryantsVoudeax / Felix / BryanBoudleaux BryantFelice Bryant + +739933Lew PollackLew Pollack (1895 – 1946) was an American song composer from New York City. He wrote music for a few popular songs, such as 'Charmaine' and 'Diane' with [a=Erno Rapee], 'My Yiddishe Momme' with [a=Jack Yellen], and a number of standards, including children's song 'Go In and Out The Window' and 'That's a Plenty' for Dixieland orchestras. Pollack also worked with [a=Paul Francis Webster], [a=Sidney Clare], and [a=Ned Washington]. In 1970, the composer was inducted to the Songwriters Hall of Fame.Needs Votehttp://en.wikipedia.org/wiki/Lew_Pollackhttps://www.songhall.org/profile/Lew_Pollackhttps://adp.library.ucsb.edu/names/105680B. PollacB. PollackB. PollakBen PollacBen PollackCoelackEd. RoseI. PollackJ. PollackJack PollackL . PollakL PollackL. E. W. PollackL. PolackL. PollachL. PollackL. PollakL. PolloL. PollockL.PollackL.PollakLaw PollackLee PollackLen PollackLeo PollackLes PollackLev PolackLev PollackLev/PollackLew - PollackLew . PollackLew PolackLew PollakLew PollockLew-PollackLew. PollackLez PollackLou PollackLow PollachLéo PollackPallackPaollackPoelackPolachPolackPolakPollacPollachPollackPollack L.Pollack, LewPolladePollakPollak, LewPollandPollockЛью Поллакל. פולקLouis Leazer + +740086Aale TynniAale Maria Tynni-HaavioBorn on October 1913 in Venjoki, Kolppana of Ingria, Russia. A Finnish poet and translator, who edited and translated into Finnish a comprehensive anthology of European poetry ranging from the Middle Ages to the present day. Her own poems, written in rhyme, explored such general themes as love, human relations, and conflicts in life. She was married to a fellow poet [a=Martti Haavio]. + +Died on October 21, 1997 in Helsinki, Finland. +Needs VoteA. TynniAale Tynni-HaavioTynni + +740102Jeremy MetcalfeViolinist.Needs VoteRoyal Philharmonic OrchestraLondon Mozart PlayersThe Orchestra Of St. John's + +740149Thomas TallisEnglish composer of the Renaissance period (1505 – 23 November 1585). + +Tallis flourished as a church musician in 16th century England and is considered among the best of its earliest composers. Tallis has been said to be one of the most important composers of his time and is honored for his original voice in English musicianship. His style encompassed the simple Reformation service music and the great Continental polyphonic schools whose influence he was largely responsible for introducing into English music. Tallis wrote Latin church music and also contributed to the reformed English liturgy, in some cases adapting earlier Latin compositions. One of his most remarkable achievements is the 40-voice "Spem in alium." His setting of the Latin Holy Week liturgy Lamentations represents his work at its height. The composer’s name is widely known through the metrical psalm tune generally called ‘Tallis’s Canon’, a setting of God, grant we grace. + +Needs Votehttps://en.wikipedia.org/wiki/Thomas_Tallishttps://www.britannica.com/biography/Thomas-Tallishttps://www.naxos.com/person/Thomas_Tallis/23862.htmhttps://www.medieval.org/emfaq/composers/tallis.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101904/Tallis_ThomasT. TallisT.TallisTallisTh. ThallisThomas Thalisタリストマス・タリストーマス・タリス + +740361Ed LeddyEdward Leddy.American jazz trumpeter. +Born in Westwood, New Jersey. + +Ed played (and recorded) with : Charlie Parker, Stan Kenton, Pete Rugolo, Richie Kamuca, Maynard Ferguson, Don Fagerquist, Johnny Mandel, Bill Holman and others. +Needs VoteEdward LeddyLeddyStan Kenton And His OrchestraMarty Paich OrchestraThe Orchestra (4)Don Fagerquist OctetJoe Timer And His OrchestraMed Flory OrchestraThe Mel Lewis SeptetRichie Kamuca Bill Holman Octet + +740363Don KellyUS Trombone PlayerNeeds VoteDon KelleyStan Kenton And His OrchestraSam Donahue And His OrchestraJohnny Richards And His Orchestra + +740366Phil GilbertTrumpet player.Needs VotePhillips GilbertHarry James And His OrchestraStan Kenton And His OrchestraRussell Garcia And His OrchestraTerry Gibbs And His Orchestra + +740424Henry VizcarraArt Director & Designer. +Former (retired) creative director of 30sixty Advertising+Design. +Needs VoteH. VizcarraHanry VizcarraHenry VizcaraGribbitt! + +740510Katie KadarauchAmerican violist.Needs VoteKatherine KadarauchSan Francisco SymphonyJanaki String Trio + +740598Kunihiko Murai村井邦彦 (Murai Kunihiko)Japanese composer and producer. Born March 4, 1945 in Tokyo. +He began by writing for Group Sounds bands in the 1960s, and later was the producer behind Yellow Magic Orchestra. +Co-founder of the [l37570] label. +Frequently credited as Kuni Murai. +Claude DulanNeeds Votehttp://www.kunimurai.com/https://ja.wikipedia.org/wiki/%E6%9D%91%E4%BA%95%E9%82%A6%E5%BD%A6K. MuraiK. Murai.K.MuraiK0 MuraiKinihiko MuraiKuni HinataKuni MuraiKunio MuraiMurai KunihikoК. Мураи村井 邦彦村井 邦彦村井邦彦 + +740603Kunihiko Suzuki鈴木邦彦Japanese songwriter and pianist, born March 1, 1938 in Tokyo, Japan.Needs Votehttp://www.bellmusic.co.jphttps://ja.wikipedia.org/wiki/鈴木邦彦_(作曲家)K. MuraiK. SusukiK. SuzukiK.SuzukiKunihiko Suzuki & The JokersSuzuki村井邦彦鈴木 邦彦鈴木 邦彦鈴木国彦鈴木邦彥鈴木邦彦鈴木邦彦(作詞セミナー)Kunihiko Suzuki & His Beat Pops MenKunihiko Suzuki & MexicansKunihiko Suzuki & The VenusKunihiko Suzuki & The Jokers鈴木邦彦と彼の楽団K. Suzuki & His All Stars + +740965Kent LarsenKent Warren LarsenAmerican jazz trombonist and singer. Worked with Stan Kenton and Alvino Rey. +Born 1932 Died November 1979 in Los Angeles, California. +Married to singer/arranger/songwriter [a1517855] (1965-1975).Needs VoteK. LarsenKent LarsonLarsenLarsonStan Kenton And His OrchestraRussell Garcia And His Orchestra + +740966Clive AckerTuba PlayerNeeds VoteStan Kenton And His Orchestra + +740967Jerry McKenzieAmerican jazz drummer + +Jerry McKenzie I played with Stan Kenton only from June 1957 to 1959 (quote M. Sparke, p. 157 "This is an Orchestra). Credited as drummer on the Newport July 1957 CD "Stomping At Newport" (Pablo). First CAPITOL session October 8, 1957 for ´the LP "Rendevous With Kenton" (T and ST 932) ----> Sparke / Venudor "The Capitol Sessions" p. 126. + +The Kenton Orchestra had 2 different drummers with the same name. +- first "Jerry McKenzie" +- follower "Jerry Lestock" (original name) later renamed as ----> Jerry McKenzie. After divorce of his parents he took the maiden name of his mother. + +Jerry 'Lestock' McKenzie is NOT an ANV but a different artist. +So all credits have been splitted for the correct persons. + +For both drummers bio and birthdays needed. + + +Read more at http://www.toledoblade.com/frontpage/2001/03/16/Jazz-drummer-Stan-Kenton-paved-my-way.html#vdxwOG2PxVBdpbB5.99 +Needs VoteMcKenzieLes Brown And His Band Of RenownStan Kenton And His OrchestraPat Longo And His Super Big BandThe Zip-CodesBill Tole And His Orchestra + +740968Sanford SkinnerTrumpet playerNeeds VoteSandford SkinnerSkinner SanfordStan Kenton And His OrchestraVisby Big BandClaude Gordon And His Orchestra + +740969Peter ChivilyAmerican jazz bassist.CorrectChivilyP. ChivilyPete ChivillyPete ChivilyStan Kenton And His OrchestraThe Richard Maltby Octet + +741301Michael DenneMichael Lawrence DenneBritish singer - songwriter - composer + +He has collaborated closely with [a=Ken Gold] for a string of hits in the soul - funk - pop scene of the 70's - 80's. +Needs VoteDaneDanneDeaneDeeneDeneDennDenneDenne MickeyDenne, MichaelDennelL. DenneLawrence Michael DenneM .DenneM DanneM DenneM. BenneM. CenneM. DanneM. DeanM. DeeneM. DenneM. DennelM. L. DenneM.DenneMichael DanneMichael DeeneMichael DennerMichael DonneMichael Lawrence DenneMichael Lawrence DennyMichel DenneMick DenneMickey DeaneMickey DeeneMickey DenneMicky DeanMicky DeaneMicky DeneMicky DenneMike DenneMikey DenneMilk DenneNick DenneThe Illusive Dream + +741876Simon Grant (4)Classical bass vocalistNeeds VoteGrantSimon GrantGabrieli ConsortMetro VoicesElectric PhoenixThe Stephen Hill SingersNew London ConsortLondon VoicesLes Arts FlorissantsTaverner ChoirI FagioliniThe Consort Of MusickeWestbrook Music TheatreTenebrae (10) + +741903Magnus LanningJohan Magnus LanningSwedish classical cellist, born on 25 November 1964.Needs VoteMagnus LenningSveriges Radios Symfoniorkester + +742027Georg WilleGerman cellist (1869 - 1948), was member of the "Cello Quartet Dresden" and "Kapelle der Staatsoper Dresden" in the 1920sNeeds Votehttps://en.wikipedia.org/wiki/Georg_WilleGewandhausorchester LeipzigStaatskapelle DresdenGewandhaus-Quartett Leipzig + +743191J.J. Johnson's BoppersCorrectJ. J. Johnson Be-BoppersJ.J. Johnson's Be'Bopper'sJ.J. Johnson's BeboppersJay Jay JohnsonJay Jay Johnson BoppersJay Jay Johnson's Be BoppersJay Jay Johnson's Be-BoppersJay Jay Johnson's BeBoppersJay Jay Johnson's BeboppersJay Jay Johnson's Bop QuintetJay Jay Johnson's BoppersJay Jay Jonhson's Be-BoppersJay-Jay Johnson BoppersBud PowellSonny StittSonny RollinsMax RoachGene RameyJ.J. JohnsonKenny DorhamLeonard GaskinJohn Lewis (2)Nelson BoydCecil PayneShadow Wilson + +743194Clarence WillardUS jazz trumpeter in the swing-era. He was part of the line-up of late [a750213] and in 1936, he joined [a239399] in building up a co-operative for founding [a284746]. + +Needs Votehttps://www.allmusic.com/artist/clarence-willard-mn0000927274/creditsWoody Herman And His OrchestraClaude Thornhill And His OrchestraIsham Jones OrchestraThe Band That Plays The Blues + +743196Barney Kessel's All StarsCorrectBarney Kessel All StarsBarney Kessel And His All StarsBarney Kessel's AllstarsBarney Kessel’s AllstarsBarney KesselDodo MarmarosaMorris RaymanHerb StewardJohnny White (6)Lou Fromm + +743199Benjamin LundyAmerican jazz saxophonistNeeds VoteBen LundyTadd Dameron And His OrchestraTadd Dameron's Big Ten + +743200Johnny White (6)Credited as jazz vibraphone player.Needs VoteJ. WhiteJohnny WhiteWhiteBenny Goodman And His OrchestraBarney Kessel's All StarsJohnny White QuartetJohnny White His Vibraphone Chorus & OrchestraJohnny White Orchestra + +743202Henry Tucker GreenAmerican jazz, R&B and doo-wop drummerNeeds Votehttps://www.allmusic.com/artist/henry-tucker-green-mn0001864051GreenH. GreenH. T. GreenH. TuckerHarry GreenHenry "Tucker" GreenHenry 'Tucker' GreenHenry GreenHenry TuckerTucker GreenХенри Таккер Грин”Tucker”Steve Gibson's Red CapsGerald Wilson OrchestraHelen Humes And Her All-StarsDon Byas QuartetLester Young And His BandThe TreniersGene Gilbeaux OrchestraThe Trenier TwinsSteve Gibson And The Original Red CapsRomaine Brown And His Romaines + +743205Gene SargentAmerican jazz guitarist, joined [a284746] in 1943.Needs VoteG. SargentSargentWoody Herman And His OrchestraWoody Herman's Four ChipsWoody Herman & The Second HerdThe Band That Plays The Blues + +743207Marjorie HyamsVibraphonist, pianist and drummer, born August 9,1920 in New York. She died on June 14th, 2012 in Monrovia, California of renal failure. +She recorded with [a=Flip Phillips] in 1944 and was a soloist with [a=Woody Herman] 1944-1945 before leading her own trio in 1945-1948. She also recorded with [a=Mary Lou Williams] in 1946. In February 1949 she began working with [a=George Shearing] and stayed with him until she married and retired from music in 1950.Needs Votehttps://en.wikipedia.org/wiki/Margie_Hyamshttps://guides.lib.fsu.edu/c.php?g=353115&p=2383500https://adp.library.ucsb.edu/names/322305HyamsM. HyamsMajorie HyamsMarge HyamsMargie HyamsMargie Hyams EricssonMargorie HyamsMargy HyamsMarjorie HymansMarjorie MyamsMarjory HinesWoody Herman And His OrchestraThe George Shearing QuintetWoody Herman & The HerdWoody Herman And His WoodchoppersThe V-Disc All StarsMary Lou Williams Girl StarsFlip Phillips FliptetVanderbilt All Stars + +743209Tasso HarrisAmerican trombonistNeeds VoteGene Krupa And His OrchestraClaude Thornhill And His OrchestraSam Donahue And His OrchestraSam Donahue Navy Band + +743210Sonny BermanSaul BermanAmerican jazz trumpeter. + +Born: April 21, 1925 in New Haven, Connecticut. +Died: January 16, 1947, in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Sonny_Bermanhttps://www.allmusic.com/artist/sonny-berman-mn0000043619/biographyhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/55638187b7f15657ba00d29f930baab2eef56/biography"Sonny" BermanBermanS. BermanS.BermanSaul "Sonny" BermanHarry James And His OrchestraWoody Herman And His OrchestraMetronome All StarsWoody Herman & The HerdWoody Herman And His WoodchoppersGeorgie Auld And His OrchestraSonny Berman's Big EightBill Harris Big EightLouis Prima And His Gleeby Rhythm Orchestra + +743211Ollie WilsonOliver WilsonAmerican trombonistNeeds Votehttps://www.allmusic.com/artist/ollie-wilson-mn0000095425/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/351207/Wilson_Oliver_Olliehttps://www.radioswissjazz.ch/en/music-database/musician/56203898c3b7bfc55e35bcd6dc67bc91080bc/discographyO. C. WilsonOlie WilsonOliver C. WilsonOliver WilsonOlli WilsonWilsonWoody Herman And His OrchestraArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraElliot Lawrence And His OrchestraIke Carpenter And His OrchestraThe Tom Talbert Jazz OrchestraGerry Mulligan New StarsWoody Herman & The Second Herd + +743217Woody Herman And His WoodchoppersA selection of musicians from [a284746] and [a661482], which first originated shortly in 1938 for some recording. In 1946 it was built by musicians of the first Herd. The Woodchoppers were a parallel band project not directly bound to the Herds and mainly put together for recording purposes. +The Woodchoppers were a similar project as the earlier [a2994646] and were simply a generic name for any small band within the Woody Herman band organization.CorrectThe WoodchoppersThe Woody Herman WoodchoppersWoodchoppersWoody Herman & His WoodchoppersWoody Herman & The WoodchoppersWoody Herman & WoodchoppersWoody Herman And The WoodchoppersWoody Herman WoodchoppersWoody Herman y sus WoodchoppersWoody Herman's WoodchoppersCandidoMilt JacksonNeal HeftiWoody HermanRed MitchellBilly BauerUrbie GreenDon LamondTony AlessShelly ManneJimmy RowlesBill PerkinsJoe MondragonFlip PhillipsJose MangualChubby JacksonConte CandoliRalph BurnsDave McKennaDave BarbourCarl FontanaRed NorvoShorty RogersBill HarrisDave ToughArt MardiganWill BradleyFrank CarlsonChuck WayneNat PierceArno MarshSam StaffDoug MettomeNeil Reid (2)Walt YoderMarjorie HyamsSonny BermanJoe BishopEd KieferSonny IgoeHy WhiteTommy LinehanCappy LewisRed WoottenMuriel Lane + +743218Fred OtisJazz pianistNeeds Votehttps://www.allmusic.com/artist/fred-otis-mn0000095911OtisWoody Herman And His OrchestraDan Terry And His OrchestraWoody Herman & The Second Herd + +743219Jeff MortonJazz drummerNeeds VoteJ. MortonThe Lee Konitz QuartetLennie Tristano QuintetLennie Tristano QuartetLee Konitz QuintetThe Ted Brown SextetWarne Marsh Quintet + +743222Dave Van KriedtDavid Van KriedtAmerican jazz saxophonist and composer, born June 19, 1922, died September 29, 1994. Father to [a=Larry Van Kriedt] composed, arranged played and recorded with such giants as [a=Dave Brubeck] and [a=Paul Desmond] and [a=Stan Kenton]Needs VoteDave KriedtDavid Van KreidtDavid Van KriedtDavid van KriedtKriedtVan Kriedtvan KriedtStan Kenton And His OrchestraDave Brubeck QuintetThe Dave Brubeck OctetThe Paul Desmond QuintetHubert Fol & His Be-Bop Minstrels + +743240Milt Jackson And His All StarsCorrectMilt Jackson & His All StarsMilt Jackson All Stars + +743304Jacques NoureddineJacques NoureddineFrench saxophonist, who was a soloist in the [url=http://www.discogs.com/artist/Orchestre+National+Du+Capitole+De+Toulouse]Toulouse Orchestre du Capitole[/url]. +Father of [a870023].Needs VoteJ. NoureddineJ. NourredineJacques MoureddineJacques NouredineJacques NourredineJacques NourrédineNourredineEnsemble Musique VivanteJacques Denjean Et Son OrchestreOrchestre National Du Capitole De ToulouseBig Jullien And His All StarArsène Hic Et Son Orchestre D'Empoisonneurs Diplômés + +743309Jean-Jacques GaudonJean-Jacques GaudonClassical trumpet playerNeeds VoteJean-Jacques GaudronEnsemble IntercontemporainEnsemble Musique Vivante + +743310Paul MinckPaul MinckHorn player.CorrectP. MinckPaul MinkEnsemble IntercontemporainEnsemble Musique Vivante + +743312Yves PoucelClassical oboe player.CorrectY. PoucelEnsemble Musique VivanteLa Grande Ecurie Et La Chambre Du Roy + +743317Guy ArnaudGuy ArnaudClassical clarinetist.Needs VoteGuy ArnardEnsemble IntercontemporainEnsemble Musique Vivante + +743704John DowlandEnglish, possibly Irish-born composer, singer and lutenist (1563 – buried February 20, 1626). + +Dowland went to Paris in 1580 where he was in service to the ambassador to the French court. After having travelled through Germany and Italy, he worked at the court of Christian IV of Denmark (1598-1606). He returned to England in 1606 and in 1612 secured a post as one of James I's lutenists. +Most of Dowland's music is for his own instrument, the lute. It includes several books of solo lute works, lute songs (for one voice and lute), part-songs with lute accompaniment, and several pieces for viol consort with lute. +His best known works are the lute song "Flow My Tears" and his instrumental work," Lachrimae or Seaven Teares Figured in Seaven Passionate Pavans", a set of seven pieces for five viols and lute, each based on "Flow My Tears."Needs Votehttps://en.wikipedia.org/wiki/John_Dowlandhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102658/Dowland_JohnD. DowlandDowlandDowland J.Dowland JohnDownlandI. DowlandJ DowlandJ. DawlandJ. DowlandJ. DownlandJ.DowlandJane DowlandJohn DawlandJohn Dowland And His ContemporariesJohn Dowland?Johnn DowlandД. ДоулендДж. ДаулендДж. ДоулендДжон ДоулэндДоулендジョン・ダウランドダウランド + +743705Josquin Des PrésJosquin LebloitteJosquin Des Prés ( +Born: c. 1450/1455, in the County of Hainaut (i.e. the present-day Belgium) Died: 1521-08-27 (Condé-sur-l'Escaut, France) (also Josquin des Prez, Desprez, Des Prez, etc), and often referred to simply as Josquin, was a Hainaut composer of the Franco-Flemish School of Polyphony. +Josquin (derived from the Flemish "Josken") was renowned as a singer, composer and educator. Characteristic of his music are the great transparency and the tight structure, in which the music closely matches the text. In the chanson, in the mid-15th century, he was the main exponent of a new style in which the techniques of canon and counterpoint were applied to secular songs. +He has been called the most important composer of the entire Renaissance and worked mainly in France and Italy.Needs Votehttps://en.wikipedia.org/wiki/Josquin_des_Prezhttps://www.medieval.org/emfaq/composers/josquin.htmlhttp://www.hoasm.org/IVA/DesPrez.htmlhttps://www.britannica.com/biography/Josquin-des-Prezhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102656/Josquin_des_PrezAttrib. Josquin DesprezDe PrezDeprezDes PresDes PrezDes PrèsDes PrésDesprezJ Des PresJ. DepresJ. Des PresJ. Des PrezJ. Des PrèsJ. Des PrésJ. DesbrezJ. DespresJ. DesprezJ. DesprézJ. de PrèsJ. des PresJ. des PrèsJ. des PrèzJ. des PrésJ.D. PrésJ.Des PresJ.DesprèsJoaquim DesprezJoaquin De PresJoaquin De PrezJoaquin Des PresJoaquin Des PrezJoaquin DesprezJoaquin DesprèsJoaquin des PrezJoaquin des PrésJosequin DesprezJoskin De PrezJosqion DesprezJosquim DesprésJosquinJosquin (Aetrib.)Josquin D'AscanioJosquin DascanioJosquin De PresJosquin De PrezJosquin DepresJosquin DeprezJosquin DeprèsJosquin Des PeresJosquin Des PresJosquin Des PrezJosquin Des Prez (?)Josquin Des PrèsJosquin Des Prés (1450-1521)Josquin Des PrézJosquin Des prezJosquin DesPrezJosquin DespresJosquin DesprezJosquin Desprez?Josquin DesprèsJosquin DesprésJosquin DesprézJosquin DezprezJosquin D’AscanioJosquin Lebloitte Dit Des PrezJosquin de PresJosquin de PrezJosquin de PrésJosquin des PresJosquin des PrezJosquin des PrèsJosquin des PrésJosquin des PrézJosquin dés PrésPresTillskriven Josquin Des PrezYosquin Desprezde Presdes PresДасканьо (Жоскен Депре)Ж. ДепреЖоскен Де ПреЖоскен ДепреЖоскин Депреジョスカン・デ・プレ + +743753Barry RoseBarry Michael RoseBritish choir trainer and organist. He is best remembered for conducting the choir of St Paul's Cathedral at the wedding of Charles, Prince of Wales (Charles Philip Arthur George Windsor) and Diana, Princess of Wales. Original owner of the [l71335] label.Needs Votehttp://barryrose.co.uk/https://en.wikipedia.org/wiki/Barry_RoseB. RoseDr Barry RoseDr. Barry RoseMr Barry RoseRose + +743787Henry LauHenry LauMusic producer & DJ / Vinyl Cutting Engineer at Calyx Mastering, Berlin +CorrectH. LauH.LauHLHLAHenreeHenry LHenry 3000Ghetto HenryCalyx MasteringTriad (7)Henry L & Ingo SängerPhyzikal Flex + +743959Franz von SchoberFranz Adolf Friedrich Schober, since 1801 von SchoberAustrian poet, librettist, lithographer, actor in Breslau and Legationsrat in Weimar. + +He was born 17 May 1796 in Torup Castle at Malmø, Sweden and died 13 September 1882 in Dresden, Germany. +Needs Votehttps://adp.library.ucsb.edu/names/359259A. v. SchoberAdolf Friedrich von SchoberF. SchoberF. v. SchoberF. von SchoberF. von SchobertFr. Von SchoberFr. v. SchoberFr. von SchoberFranz Ritter von SchoberFranz SchoberFranz V. SchoberSchoberSchobertSchorerShoberV. Schoberv. Schobervon SchoberФ. Шобер + +743981Ernie QuelleErnst-August QuelleGerman composer, arranger, pianist, keyboardist, conductor and producer, born December 7th, 1931 in Herford, Germany, passed away November 25th, 2022. From 1950-56 training as a concert pianist at the NWD Music Academy in Detmold with [a870852]. Afterwards he became a pianist in [a460404]. Afterwards he worked as a permanent freelancer (pianist, composer and arranger) for Bayerischer Rundfunk (BR) in Munich. +Needs Votehttps://de.wikipedia.org/wiki/Ernst_August_QuelleE A QuelleE. A. QuelleE. QuelleE.A. QuelleErni Quelle Und Seine SolistenErnie Quelle And His "Multi-Piano"Ernie-A. QuelleErnstErnst A QuelleErnst A. QuelleErnst August QuelleErnst QuelleErnst-August QuelleErnst_August QuelleQuelleErnst ArnoBob StanwayEnrico SonoBob "Ernie" FarmerErnst August QuelleBarnabas Von Géczy Und Sein OrchesterOrchester Addy FlorSymphonie-Orchester Des Bayerischen RundfunksBob Stanway & His Dixie FingersErnie Quelle And His MusicOrchester und Chor Ernst August QuelleErnst Arno And His OrchestraOrchester Ernie QuelleThe Piano QuartetErni Quelle Und Seine Solisten + +744296Ira WestleyAmerican upright bassist and tuba playerCorrectHarry James And His OrchestraHarry James And His Big Band + +744404DanceforzeRobert FrancisNeeds VoteDJ WeaverRobert FrancisHardforzeBass CrusadersBobby Neon (2)Project BassHardcore MasifRe Active & FlexHardforze & Friends + +744651Thomas HoferClassical violinist. + +[For the engineer, see [a=Thomas Hofer (2)]].Needs Votehttps://www.linkedin.com/in/thomas-hofer-7a352a136/T. HöferThomas HöferEnsemble ModernPellegrini-QuartettMainzer KammerorchesterEnsemble Modern OrchestraTrioCoriolis + +744723Semyon BychkovСемён БычковRussian-born conductor, residing in France. He was born 30 November 1952 in Leningrad (now Saint Petersburg, Russia). Married to [a532436]. +He has been the chief conductor and artistic director of [a435555] since 2017.Needs Votehttps://web.archive.org/web/20230524154225/https://semyonbychkov.com/https://en.wikipedia.org/wiki/Semyon_Bychkov_(conductor)https://www.britannica.com/biography/Semyon-BychkovBychkovSemyon BechovSeymon Bychkovセミヨン・ビシュコフThe Czech Philharmonic Orchestra + +744724Orchestre De ParisThe Orchestre de Paris is an orchestra founded in 1967 as the continuation of the first French symphonic orchestra, the [a703271] (1828-1967). For chorus use [a1052826]. +Since September 2006, the orchestra in based at the Salle Pleyel in Paris and have 119 appointed musicians. +Christoph Eschenbach took its musical direction in September 2000. +Orchestre de Paris is often miscredited as Orchestre national de Paris. +Main musical directors: + • Charles Munch (1967–1968) + • Herbert von Karajan (musical advisor, 1969–1971) + • Sir Georg Solti (1972–1975) + • Daniel Barenboim (1975–1989) + • Semyon Bychkov (1989–1998) + • Christoph von Dohnányi (artistic advisor, 1998–2000) + • Christoph Eschenbach (2000–2010) + • Paavo Järvi (2010–present)Needs Votehttps://www.orchestredeparis.com/https://www.facebook.com/OrchestredeParishttps://x.com/OrchestreParishttps://www.youtube.com/user/orchestredeparishttps://www.instagram.com/orchestredeparishttps://en.wikipedia.org/wiki/Orchestre_de_ParisChœur Et Orchestre De ParisDas Orchestre De ParisDas Orchestre de ParisEnsemble De Solistes De L'Orchestre De ParisEnsemble Orchestre De L'Orchestre De ParisEnsemble de Chambre de l'Orchestre de ParisFrench National OrchestrtaGrand Orchestra ParisL'Orchestra de ParisL'Orchestre De ParisL'Orchestre Symphonique De ParisL'Orchestre de ParisLa Orquesta Sinfonica De ParisLe Grand Orchestre De ParisLe Grand Orchestre Symphonique De ParisLes Solistes De L'Orchestre De ParisLes Solistes De ParisLes Solistes de L'Orchestre de ParisMembers Of The Orchestre De ParisNational Orchestra ParisNárodní orchestr PařížOrch Sym. de ParisOrchestra National, ParisOrchestra Of ParisOrchestra Of The "Concerts De Paris"OrchestreOrchestre De La Société Des Concerts Du Conservatoire De ParisOrchestre De La Société Des Concerts Du Conservatoire de ParisOrchestre De Paris (Société Des Concerts Du Conservatoire)Orchestre De Paris, TheOrchestre Le Paris Symphonic OrchestraOrchestre National De ParisOrchestre National ParisOrchestre National, ParisOrchestre ParisienOrchestre Symphonique De ParisOrchestre de ParisOrquesta Concerts De ParísOrquesta De ParisOrquesta De ParísOrquesta Nacional De ParisOrquesta Nacional De ParísOrquesta Sinfonica De ParisOrquesta Sinfónica de ParisOrquesta de ParisOrquesta de ParísOrquestra Nacional De ParisOrquestra Nacional de ParisOrquestra Sinfônica De ParisParis Conservatoire OrchestraParis OrchestraParis Philharmonic OrchestraParis Philharmonic Orchestra & ChoirParis Philharmonic Orchestra, TheParis S.O.Paris Symphony OrchestraPariški OrkestarPariški OrkestromPariškim OrkestromSociété Des Concerts Du ConservatoireSolister, Kör Och Orchestre De ParisSoloists Of Paris OrchestraThe Orchestra Of ParisThe Orchestra of ParisThe Orchestre De ParisThe Paris Conservatoire OrchestraThe Paris OrchestraThe Paris Symphony Orchestral'Orchestre De La Société Des Concerts Du Conservatoire De ParisΗ Συμφωνική Ορχήστρα Τών ΠαρισίωνОркестр ПарижаПаpижский ОркестрПаpижский Симф. ОркестрПаpижский Симфонический ОркестрПарижский ОркестрПарижский Симфонический ОркестрПарижский симфонический оркестрСолисты Парижского Оркестраاوركستىرا باريسパリ管パリ管弦楽団Christophe GuiotFlorent BremondElsa BenabdallahFabien BoudotDavid BracciniCharles MunchFrançoise GneriAnne TrémouletPascale MeleyEtienne PéclardLaurence AllalahEstelle VillotteMichel DebostChristoph von DohnányiChristoph EschenbachAndré CazaletEtienne PfenderAna Bela ChavesJacques ChambonStanislas KuchinskiIgor BoranianRichard SchmouclerJean-Pierre WallezClaude GironJérôme RouillardThomas DuranLuben YordanoffJean DupouyEiichi ChijiiwaMaï Ngo PhuongGilles HenryNicolas CarlesPhilippe BerrodMaud AyatsMyron BloomMarcel LagorcePhilippe NoharetThomas HengelbrockJacques RémyJoseph PonticelliChristian BrièreGiorgio MandolesiSandrine VautrinJoëlle CousinPhilippe BaletPascal MoraguèsCédric VinatierGuillaume Cottet-DumoulinFrédéric PeyratCaroline VernayAndré SennedatBenjamin BerliozVincent PasquierDavid GaillardAndrei IarcaCécile GouiranPierre SimonJean-Michel VinitLionel BordYves DemarleBernard SchirrerAlexandre GattetStéphane LabeyrieNicolas KrügerMarie-Pierre ChavarocheGuy BesnardRomy BischoffVincent LucasMarie-Christine WitterkoerArnaud LeroyEmmanuel GauguéEfim BoicoAlain Denis (3)Alain MehayePhilippe-Olivier DevauxRichard SiegelJonathan ReithLaurent BourdonAngélique LoyerStéphane GourvatMarie PoulangesMathias LopezEric SammutHikaru SatoJoseph AndréBruno TombaJeanine TétardPhilippe AïcheOrchestre National de Paris (section cuivres et bois)Delphine BironMichel BenetAndré ChpelitchGaëlle BissonAnaïs BenoitAntonin André-RequenaCamille BasléNicolas MartynciowAnne-Sophie CorrionMarc TrénelGildas PradoNathalie LamoureuxFrançois Michel (2)Bastien PelatVicens PratsOlivier DerbesseFlorence DelepineNicolas DrabicRaphael JacobUlysse VigreuxPhilippe DalmassoMaya KochCélestin GuérinJean-Claude VelinEric Picard (2)Marie LeclercqLola DescoursFrédéric MellardiFlore-Anne BrosseauNicolas PeyratBenoît De BarsonyFlorian WallezRémi GrouillerAnne-Sophie Le Rol + +744730Jonny HarrisCorrect + +745013Juliette KangJuliette KangClassical violinist, born in Edmonton, Canada. + Juliette Kang currently serves as First Associate Concertmaster of [url=http://www.discogs.com/artist/Philadelphia+Orchestra%2C+The]The Philadelphia Orchestra[/url]. She previouosly was a member of [url=http://www.discogs.com/artist/Metropolitan+Opera%2C+The]The Metropolitan Opera Orchestra[/url] (2001-2003). Prior to that, she was with the Kennedy Center Opera Orchestra (1999-2000). +Needs Votehttp://www.philorch.org/bios.php?page=kangjulietthttps://en.wikipedia.org/wiki/Juliette_KangThe Philadelphia OrchestraBoston Symphony OrchestraThe Metropolitan Opera + +745084Tineke de JongViolin player from The NetherlandsNeeds Votewww.tinekedejong.comThe Beau HunksLinks (7)Ludwig OrchestraMidday MoonCorrie van Binsbergen BandRara Avis (12) + +745088Peter BruntDutch violinist and violistNeeds VoteNieuw Sinfonietta AmsterdamEbony BandOsiris TrioMichael Collins And Friends + +745092Eelco BeinemaCello player.Needs VoteThe Beau HunksNieuw Sinfonietta AmsterdamRotterdams Philharmonisch Orkest + +745095Ilona de GrootDutch violin playerNeeds VoteThe Beau HunksNieuw Sinfonietta Amsterdam + +745254Chi Chi NwanokuClassical double bass player.Needs Votehttps://en.wikipedia.org/wiki/Chi-chi_NwanokuChi Chi Nwanoku OBEChi chi NwanokuChi-Chi NwanokuChi-Chi Nwanoku MbeChi-chi NwanokuChi-chi Nwanoku CBEChi-chi Nwanoku OBEOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentLondon Classical PlayersHausmusik (2)The English ConcertChineke! OrchestraQueen Charlotte's Global Orchestra + +745256Charles GibbsClassical bass vocalist, born in Bristol.Needs Votehttps://www.bach-cantatas.com/Bio/Gibbs-Charles.htmGabrieli ConsortThe Scholars Baroque EnsembleThe Cambridge SingersBBC SingersThe SixteenThe Monteverdi ChoirOrchestra Of The RenaissanceI FagioliniPolyphony + +745262Angus SmithTenor vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Smith-Angus.htmhttps://web.archive.org/web/20220528155242/http://www.orlandoconsort.com/angus_biog.htmAgnus SmithSmithGabrieli ConsortThe Choir Of The King's ConsortThe Cambridge SingersThe Tallis ScholarsSingcircleHuelgas-EnsembleLa Chapelle RoyaleThe Monteverdi ChoirOrlando ConsortRed ByrdThe English Concert ChoirTaverner ConsortThe Consort Of MusickeThe Schütz Choir Of LondonRetrospect Ensemble + +745297Rachel GutekRachel J. GutekRachel Gutek is an art director and graphic designer for the music and entertainment industry. Based in Los Angeles, California, she has designed CD packages for EMI Music and Rhino Entertainment, among many others, and has won a Grammy for Art Direction in Music Packaging and been nominated for the award four times.Needs Votehttp://www.guppyart.com/R. GutekRachael GutekRachel Gutek@guppyart + +745408Sophia ReuterSophia Reuter (born 1971 in Dresden) is a German classical violist. She's the daughter of [a1710017] and the granddaughter of [a4285798].Needs VoteStaatskapelle BerlinPhilharmonisches Staatsorchester HamburgDuisburger PhilharmonikerPhilharmonic Orchestra Of EuropeTrio LiricoTharice Virtuosi + +745413David Martin (8)[b]Do NOT confuse with Canadian songwriter, performer [a=David C. Martin][/b] +David Martin has sold over 26 million records around the world in a career spanning over 40 years. Part of the songwriting/production team of [a4844029] with [a=Chris Arnold (2)] and [a=Geoff Morrow]. For over 15 years, David and his two partners had an enormous amount of success writing songs for the likes of Cliff Richard, Elvis Presley and Cilla Black. + +In 1978 David formed a record company partnership, [l=Hippodrome Records], with famous nightclub owner Peter Stringfellow. Over the next three years he wrote and produced for Edwin Starr and Dusty Springfield. + +In 1982 David amicably split with his two songwriting partners and took to the road and toured the world as lead vocalist for the James Last Orchestra. + +His most recent projects include stage musicals including an adaptation of "Great Expectations" and "Christmas Angel", both due in 2009. +Needs Votehttp://www.bespoke-songs.com/about_david.phpD. MartinDave MartinDavidDavid C. MartinDavid MarbinDavid MartinDavis MartinMartinMartínSeth Martin (2)David Lee MartinOrchester James LastButterscotch (2)Arnold, Martin And Morrow + +745437Boris RicklemanBoris RickelmanCellist. +Principal Cello of the [a=London Philharmonic Orchestra], and [a=The Boyd Neel Orchestra]/[a=Philomusica Of London].CorrectBoris RickelmanBorris RicklemanLondon Philharmonic OrchestraPhilomusica Of LondonThe Boyd Neel Orchestra + +746605Spector, Greenwich & BarryNeeds Vote(Jeff Barry) Phil Spector, Ellie GreenwichBarry - Greenwich - SpectorBarry - Spector - GreenwichBarry / Greenwich / SpectorBarry / Greenwich / Spector,Barry / Spector / GreenwhichBarry / Spector / GreenwichBarry / Spector / Greenwich &Barry Aspector & GreenwichBarry Greenwich / Phil SpectorBarry Greenwich SpectorBarry Greenwich-SpectorBarry Greenwich/Phil SpectorBarry Jeff / Greenwich Ellie / Spector PhilipBarry Spector GreenwichBarry, Greenwich & SpectorBarry, Greenwich and SpectorBarry, Greenwich, SpectorBarry, Jeff / Greenwich, Ellie / Spector, PhillipBarry, Spector, GreenwichBarry-Greenwich & SpectorBarry-Greenwich--SpectorBarry-Greenwich-SpectorBarry-Greenwich-SpectorsBarry-Grenwich-SpectorBarry-Spector-GreenwichBarry/ Greenvich/ SpectorBarry/ Greenwood/SpectorBarry/Greenwhich/SpectorBarry/GreenwichBarry/Greenwich/SpectorBarry/Greenwich/SpringerBarry/Spector/GreenwichBarryGreenwich/SpectorBerry, Greenwich, SpectorBerry-Spector-GreenwichBerry/Greenwich/SpectorE. Greenwich & Jil Barry & Phil SpectorE. Greenwich - J. Barry - P. SpectorE. Greenwich - J. Barry - R. SpectorE. Greenwich - J. Barry - T. SpectorE. Greenwich - J.Barry - P. SpectorE. Greenwich / J. Barry / P. SpectorE. Greenwich / P. Spector / J. BarryE. Greenwich /J. Barry/P. SpectorE. Greenwich Et J. Barry Et P. SpectorE. Greenwich – J. Barry – P. SpectorE. Greenwich, J. Barry, P. SpecterE. Greenwich, J. Barry, P. SpectorE. Greenwich, J. Berry, P. SpectorE. Greenwich-J. Barry-P. SpectorE. Greenwich-J. Barry-P.SpectorE. Greenwich-J. Barry-Phil SpectorE. Greenwich-P. Spector-J. BarryE. Greenwich/J. Barry/P. SpectorE. Greenwich/P. Spector/J. BarryE. Spector/J. Barry/E. GreenwhichElie Greenwich & Jeff Barry & Phil SpectorElie Greenwich & Jil Barry & Phil SpectorElie Greenwich Et Jil Barry Et Phil SpectorElie Greenwich et Jil Barry et Phil SpectorElie Greenwich, Jil Barry, Phil SpectorEllie Creenwich, Jeff Barry & Philip SpectorEllie Greenweck/Jeff Barry/Phil SpectorEllie Greenwich & Jil Barry & Phil SpectorEllie Greenwich - Jeff Barry - Phil SpectorEllie Greenwich / Jeff Barry / Phil SpectorEllie Greenwich / Phil Spector / Jeff BarryEllie Greenwich / Phil Spector / John BarryEllie Greenwich, J. Barry, Phil SpectorEllie Greenwich, Jeff Barry & Phil SpectorEllie Greenwich, Jeff Barry And Phil SpectorEllie Greenwich, Jeff Barry, And Phil SpectorEllie Greenwich, Jeff Barry, Phil SpectorEllie Greenwich, Jeff Barry, Philip SpectorEllie Greenwich, Jeff Brry, Phil SpectorEllie Greenwich, Phil Spector And Jeff BarryEllie Greenwich, Phil Spector, Jeff BarryEllie Greenwich,Jeff Barry,Phil SpectorEllie Greenwich/Jeff Barry/Phil SpectorEllie Greenwich/Phil Spector/J. BarryEllie Greenwich/Phil Spector/Jeff BarryEllie Grennwich/J. Barry/Phil SpectorF. Spector / Greenwich / BarryF. Spector, B. Greenwich, J. BarryF. Spector-E. Greenwich-J. BarryGreenich - Barry - SpectorGreenwhich - Barry - SpectorGreenwhich, Barry, SpectorGreenwich - Barry - SpectorGreenwich - Berry - SpectorGreenwich - Spector - BarryGreenwich - Spector - Jeff BarryGreenwich / Barry / SpectorGreenwich / Barry / SpencerGreenwich / Spector / BarryGreenwich Spector BarryGreenwich, Barry, SpectorGreenwich, Barry, SprectorGreenwich, Barry-SpectorGreenwich, Spector, BarryGreenwich-Barry-SpectorGreenwich-Spector-BarryGreenwich/Barry/SpectorGreenwich/Barry/SpectreGreenwich/Berry/SpectorGreenwich/Spector/BarryGreenwicht/Spector/BerryGreenwich–Barry–SpectorGrrenwich / Spector / BarryJ Barry / E Greenwich / P SpectorJ Barry/ E Greenwich/P SpectorJ. Barry - E. Greenwich - Dh. SpectorJ. Barry - E. Greenwich - P. SpectorJ. Barry - E. Greenwich - SpectorJ. Barry - L. Greenwich - P. EspectorJ. Barry - L. Greenwich - P. SpectorJ. Barry - P. Spector - E. GreenwichJ. Barry - P. Spector - F. GreenwichJ. Barry / E. Greenwich / P. SpectorJ. Barry / E. Greenwich / Ph. SpectorJ. Barry / P. Spector / E. GreenwichJ. Barry / Spector / GreenwichJ. Barry, E. Greenwich & P. SpectorJ. Barry, E. Greenwich Und P. SpectorJ. Barry, E. Greenwich, P. SpecktorJ. Barry, E. Greenwich, P. SpectorJ. Barry, E. Greenwich, Ph. SpectorJ. Barry, E. Greewich, Phil SpectorJ. Barry, L. Greenwich, P. SpectorJ. Barry, P. Spector, E. GreenwichJ. Barry-E / P. Specter / GreenwichJ. Barry-E. Greenwich-P SpectorJ. Barry-E. Greenwich-P. SpectorJ. Barry-E. Greewich-P. SpectorJ. Barry-P. Spector-E. GreenwichJ. Barry-P. Spector-E. Greenwich &J. Barry-Ph. Spector-E. GreenwichJ. Barry/E. Greenwich/ Ph. SpectorJ. Barry/E. Greenwich/P. SpectorJ. Barry/E. Greenwich/Ph. SpectorJ. Barry/E. Grennwich/B. SpectorJ. Barry/E.Greenwich/P.SpectorJ. Barry/L. Greenich/P. SpectorJ. Barry/P. Spector/E. GreenwichJ. Barry/Spector/GreenwichJ. Berry / E. Greenwich / P. SpectorJ. Berry/P.Spector/E.GreenwichJ.Barry-E.Greenwich-P.SpectorJ.Barry/E.Greenwich/H.P.SpectorJ.Barry/E.Greenwich/P.SpectorJ.Barry/E.Greenwich/Ph.SpectorJ.Barry/P.Spector/,E.GreenwichJeff Barr, Ellie Greewich, Phil SpectorJeff Barry - Ellie Greenwich - Phil SpectorJeff Barry - Phil Spector - Ellie GreenwichJeff Barry / E. Greenwich / Phil SpectorJeff Barry / Ellie Greenwich / Phil SpectorJeff Barry / Ellie Greenwich / Philip SpectorJeff Barry / Phil Spector / Ellie GreenwichJeff Barry / Spector / GreenwichJeff Barry : Ellie Greenwich : Phil SpectorJeff Barry | Ellie Greenwich | Phil SpectorJeff Barry, Elle Greenwhich, Phillip SpectorJeff Barry, Elle Greenwich & Phil SpectorJeff Barry, Elle Greenwich, Phillip SpectorJeff Barry, Elli Greenwich, And Philip SpectorJeff Barry, Ellie Greenwhich, Phil SpectorJeff Barry, Ellie Greenwich & And Phil SpectorJeff Barry, Ellie Greenwich & Phil SpectorJeff Barry, Ellie Greenwich And Phil SpectorJeff Barry, Ellie Greenwich, And Phil SpectorJeff Barry, Ellie Greenwich, Phil SpectorJeff Barry, Ellie Greenwich, Philip SpectorJeff Barry, Phil Spector, Ellie GreenwichJeff Barry-E. Greenwich-P. SpectorJeff Barry-E. Greenwich-Phil SpectorJeff Barry-Ellie Greenwich-Phil SpectorJeff Barry-Ellie Greenwich-Phillip SpectorJeff Barry-Ellie Greenwich-Phillips SpectorJeff Barry-Phil Spector-Ellie GreenwachJeff Barry-Phil Spector-Ellie GreenwichJeff Barry/Ellie Greenwich/Phil SpectorJeff Barry/Ellie Greenwich/Philip SpectorJeff Barry/Ellie Greenwich/Phillip SpectorJeff Barry/Ellie Greenwish/Phil SpectorJeff Barry/Elly Greenwich/Philip SpectorJeff Barry/Phil Spector/Ellie GreenwichJeff Barry/Phil Spector/Ellie GrenwichJeff Barry/Spector/GreenwichJeff Berry, Ellie Greenwich & Phil SpectorJeff Berry, Ellie Greenwich And Phil SpectorJerry Barry-Ellie Greenwich-Phil SpectorP Spector / J Barry / E GreenwichP- Spector - J. Barry - E. GreenwichP. Spector - B. GreenwichP. Spector - E. Greenwich - J. BarryP. Spector - E. Greenwich - J.BarryP. Spector - E. Greenwich -J. BarryP. Spector - E. Greenwich / J. BarryP. Spector - E. Greenwich, J. BarryP. Spector - Ellie Greenwich - J. BerryP. Spector - H. Greenwich - J. BarryP. Spector - J, Barry - E GreenvichP. Spector - J. Barry - E. Gree wichP. Spector - J. Barry - E. GreenwichP. Spector - J. Barry / Ellie GreenwichP. Spector - J. Berry - E. GreenwichP. Spector - J. Darry- N. GreenwichP. Spector - J.Barry - E. GreenwichP. Spector - R. E. Greenwich - J. BarryP. Spector - R.E. Greenwich - J. BarryP. Spector / E. Greenwich / J. BarryP. Spector / H. Greenwich / J. BarryP. Spector / J. Barry / E. GreenwichP. Spector / J. Barry / N. GreenwichP. Spector / J. Barry/ E. GreenwichP. Spector / J. Berry / E. GreenwichP. Spector E. Greenwich J. BarryP. Spector, B. Greenwich, J. BarryP. Spector, Barry - GreenwichP. Spector, E. Green, Wich & Jeff BarryP. Spector, E. Greenwich & J. BarryP. Spector, E. Greenwich & Jeff BarryP. Spector, E. Greenwich, J BarryP. Spector, E. Greenwich, J. BarryP. Spector, E. Greenwich, J. BerryP. Spector, J. Barry & E. GreenwichP. Spector, J. Barry - E. GreenwichP. Spector, J. Barry, E. GreenwichP. Spector, N. Greenwich, J. BarryP. Spector-E. Geenwich-J. BarryP. Spector-E. Greenwhich-J. BarryP. Spector-E. Greenwich-J. BarryP. Spector-E. Greenwich-J.BarryP. Spector-E.Greenwich-J. BarryP. Spector-J. Barry- E. GreenwichP. Spector-J. Barry-B. GreenwichP. Spector-J. Barry-E. GreenwichP. Spector-J. Berry-E. GreenwichP. Spector-J.Barry-E. GreenwichP. Spector-R. E. Greenwich-J. BarryP. Spector/ E. Greenwich/ J. BarryP. Spector/E. Greenwich /J. BarryP. Spector/E. Greenwich/J. BarryP. Spector/E. Grenwich/J. BarryP. Spector/E.Greenwich/BarryP. Spector/E.Greenwich/J. BarryP. Spector/J. Barry-E. GreenwichP. Spector/J. Barry/ E. GreenwichP. Spector/J. Barry/E. GreenwichP. Spector/J. Barry/E.GreenwichP. Spector/J. Barry/N. GreenwichP. Spector/J. Barry/W. GreenwichP. Spector/J. Berry/E. GreenwichP. Spector/J.Barry/E. GreenwichP. Spector/R. E. Greenwich/J. BarryP. Spector–Greenwich–BarryP.Spector / E. Greenwich / J.BarryP.Spector / E.Greenwich / J. BarryP.Spector / J. Barry - E.GreenwichP.Spector / J.Barry / E.GreenwichP.Spector, J.Barry, E.GreenwichP.Spector,E.Greenwich,J.BarryP.Spector-E.Greenwich-J.BarryP.Spector-J.Barry-E.GreenwichP.Spector/J. Barry/E.GreenwichP.Spector/J.Barry/E.GreenwichP.Spector/J.Barry/N.GreenwichP.Spector/J.Berry/E.GreenwichPHIL SPECTOR - Jeff Barry - Ellie GreenwichPh. Spector, J. Barry, E. GreenwichPh. Spector/E. Greenwich/J. BarryPh. Spector/J. Barry/E. GreenwichPh. Spector/T. Barry/E. GreenwichPhil Spector & Barry GreenwhichPhil Spector - E. Greenwich - J. BerryPhil Spector - Ellie Greenwich - Jeff BarryPhil Spector - J.B. GreenwichPhil Spector - Jeff Barry & Ellie GreenwichPhil Spector - Jeff Barry - C. GreenwichPhil Spector - Jeff Barry - Ellie GreenwichPhil Spector / Ellie Greenwich / Jeff BarPhil Spector / Ellie Greenwich / Jeff BarryPhil Spector / Jeff Barry / Ellie GreenwichPhil Spector, E. Greenwich Et J. BarryPhil Spector, Elle Greenwich, Jeff BarryPhil Spector, Ellie Greenwich & Jeff BarryPhil Spector, Ellie Greenwich & Jeff BerryPhil Spector, Ellie Greenwich And Jeff BarryPhil Spector, Ellie Greenwich, And Jeff BarryPhil Spector, Ellie Greenwich, Jeff BarryPhil Spector, Elliegreenwich, Jeff BarryPhil Spector, Jeff Barry & Eleanor GreenwichPhil Spector, Jeff Barry & Ellie GreenwichPhil Spector, Jeff Barry & Elly GreenwichPhil Spector, Jeff Barry And Ellie GreenwichPhil Spector, Jeff Barry, & Ellie GreenwichPhil Spector, Jeff Barry, And Ellie GreenwichPhil Spector, Jeff Barry, Eleanor GreenwichPhil Spector, Jeff Barry, Ellie GreenwichPhil Spector, Jeff Barry, and Ellie GreenwichPhil Spector-E. Greenwich-Jeff BarryPhil Spector-Ellie Greenwich-Jeff BarryPhil Spector-Greenwich-BarryPhil Spector-J. Barry-Ellie GreenwichPhil Spector-Jeff Barry-Ellie GreenwichPhil Spector-Jeff Barry-Ellie Greenwich &Phil Spector-Jeff Barry-Elloe GreenwichPhil Spector-Jeff Barry-Elly GreenwichPhil Spector/ Jeff Barry/ Ellie GreenwichPhil Spector/Barry/GreenwichPhil Spector/E. Greenwich/J. BarryPhil Spector/Ellen Greenwich/Jeff BarryPhil Spector/Ellie Greenwich/Jeff BarryPhil Spector/J.Barry/Ellie GreenwichPhil Spector/Jeff Barry/Elli GreenwichPhil Spector/Jeff Barry/Ellie GreenwhichPhil Spector/Jeff Barry/Ellie GreenwichPhil Spectre, Ellie Greenwich, Jeff BarryPhilip Spector / Ellie Greenwich / Jeff BarryPhilip Spector, Ellie Greenwich And Jeff BarryPhilip Spector, Ellie Greenwich, Jeff BarryPhilip Spector/Jeff Barry/ Ellie GreenwichPhilip Spector/Jeff Barry/Ellie GreenwichPhill Spector, Ellis Greenwich, Jeff BarryPhillip Spector, Ellie Greenwich & Jeff BarryPhillip Spector, Ellie Greenwich, Jeff BarryPhillip Spector, Jeff Barry, Ellie GreenwichPhillip Spector/Jeff Barry/Don GreenwichPhillip Spector/Jeff Barry/Ellie GreenwichPhl Spector - Ellie Greenwich - Jeff BarryP・Spector, E・Greenwich & J・BarryR. Spector - E. Greenwich - J. BarrySpecor/Greenwich/BarrySpectar/Green/BarrySpecter, Barry, GreenwichSpecter, Greenwich, BarrySpecter/Barry/GreenwichSpector & Barry & GreenwichSpector - B. Greenwich - G. BarrySpector - Barry - GreenSpector - Barry - GreenwichSpector - Barry GreenwichSpector - Berry - GreenwichSpector - Breenwich - BarrySpector - E. Greenwich - J BarrySpector - E. Greenwich - J. BarrySpector - E. Greenwich - J. BarySpector - Greenwich - BarrySpector - Greenwich/BarrySpector - Greewich - BarrySpector / Barry / GreenwichSpector / E. Greenwich / J. BarrySpector / Greenich / BarrySpector / Greenwich / BarrySpector / Greenwich, BarrySpector / Greewich / BarrySpector / Grenwich / BarrySpector Barry GreenwichSpector Greenwich BarrySpector Phillip, Barry Jeff, Greenwich EllieSpector – Barry – GreenwichSpector – Greenvich – BarrySpector, Barry GreenwichSpector, Barry GrennichSpector, Barry y GreenwichSpector, Barry, GreeenwichSpector, Barry, GreenwichSpector, Breenwich, BarrySpector, Greenwich Y BarrySpector, Greenwich, & BarrySpector, Greenwich, BarrySpector, Greenwich, BerrySpector, Greevsich, BarrySpector, Grenich & BarrySpector, Phil/Barry, Jeff/Greenwich, EllieSpector,Barry-Greenwich-BarrySpector,P/Greenwich,J/Barry,JSpector- Greenwich - BarrySpector-Barne-GreenwichSpector-Barry-GreeenwichSpector-Barry-GreenwichSpector-Barry-Greenwich,Spector-Berry-GreenwichSpector-E. Greenwich- J.BarrySpector-Greenwich -Barry-Spector-Greenwich- BarrySpector-Greenwich-BarrySpector-Greenwich-J. BarrySpector-Greenwich/BarrySpector-Grenwich-BarrySpector-J. Barry-E. GreenwichSpector. Greenwich, BarrySpector/ Barry/ GreenwichSpector/ Greenwich/ BarrySpector/Barry/ GreenwichSpector/Barry/GreeenwichSpector/Barry/GreenwichSpector/Berry/GreenwichSpector/Geenwich/BarrySpector/Greenwich /BarrySpector/Greenwich/BarrySpector/Greenwich/BerrySpector/Greenwick/BarrySpector/Greewich/BarrySpector–Greenwich–BarrySpectre/Barry/GreenwichSpeeter - Greenwich - BarrySpencer/Greenwich/BarryPhil SpectorJeff BarryEllie Greenwich + +746653Mark-Anthony TurnageMark-Anthony TurnageBritish composer. + +Born: 10 June 1960 in Corringham, Essex, England, UK. + +Mark-Anthony Turnage CBE has composed numerous orchestral and chamber works, and three full-length operas. In Autumn 2005, he was appointed the Royal College Of Music's "Research Fellow In Composition", while in 2015 he was appointed a Commander of the Order of the British Empire (CBE) for his services to music. +Needs Votehttp://en.wikipedia.org/wiki/Mark-Anthony_Turnagehttp://www.boosey.com/pages/cr/composer/composer_main.asp?composerid=16405Mark Anthony TurnageTurnageTurnage, Mark-Anthony + +746657Paul SchoenfieldPaul SchoenfieldAmerican composer and pianist (born January 24, 1947, in Detroit, Michigan and died April 29, 2024, in Jerusalem, Israel).Needs Votehttps://web.archive.org/web/20210516224824/http://www.paulschoenfield.org/https://en.wikipedia.org/wiki/Paul_SchoenfieldDr. Paul SchoenfieldSchoenfield + +746951Sonny Boy WilliamsonJohn Lee Curtis Williamson(NOTE: Not to be confused with [A=Sonny Boy Williamson (2)] (Aleck "Rice" Miller), who recorded for Trumpet in 1951-1954, and for Checker/Chess from 1955. This artist also made recordings in Europe, some accompanied by blues rock groups [a=The Animals] and [a=The Yardbirds].) + +American blues harmonica player, singer and songwriter. +Born: 30 March 1914, Jackson, Tennessee, USA, +Died: 1 June 1948, Chicago, Illinois, USA + +Often referred to as "the father of modern blues harp". He recorded for Bluebird and Victor 1937-1947. Already during his lifetime [a=Sonny Boy Williamson (2)] (aka [a=Rice Miller]) was performing in the South as Sonny Boy Williamson, but as far as is known John Lee Williamson never contested this appropriation of his name. +His popular songs, original or adapted, include "Good Morning, School Girl", "Sugar Mama", "Early in the Morning", and "Stop Breaking Down". +John Lee Williamson died in a street mugging on Chicago's notorious South Side. +He was buried at his birthplace, at the former site of The Blairs Chapel Church, south-west of Jackson.Needs Votehttps://en.wikipedia.org/wiki/Sonny_Boy_Williamson_Ihttps://adp.library.ucsb.edu/names/116388"Sonny Boy" Williamson(John Lee) Sonny Boy WilliamsonJ. L. WilliamsonJ. Lee WilliamsonJ. WilliamsJ. WilliamsonJ.L. "Sonny Boy" WilliamsonJ.L. WIlliamsonJ.L. WilliamsonJo. L. WilliamsonJoe Lee WilliamsonJohn "Sonny Boy" WilliamsonJohn Lee "Sonny Boy "WilliamsonJohn Lee "Sonny Boy Williamson"John Lee "Sonny Boy" WIlliamsonJohn Lee "Sonny Boy" WillamsonJohn Lee "Sonny Boy" WilliamsonJohn Lee "Sonny Boy" Williamson,John Lee "Sonny Boy' WilliamsonJohn Lee 'Sonny Boy' WilliamsonJohn Lee (Sonny Boy) WilliamsonJohn Lee Curtis WilliamsonJohn Lee Sonny Boy WilliamsonJohn Lee WiiliamsonJohn Lee WilliamsJohn Lee WilliamsonJohn Lee Williamson "Sonny Boy"John Lee Williamson - "Sonny Boy I"John Lee Williamson IJohn Lee Williamson aka Sonny Boy Williamson IJohn Leel WilliamsonJohn WilliamsonJohnny Lee WilliamsLee "Sonny Boy" WilliamsonLove-LevelS. B. WilliamsonS. Boy WilliamsonS. WilliamsonS.B WilliamsonS.B. WillamsonS.B. WilliamsonS.B.WilliamsonSonny Boy (John Lee) WilliamsonSonny Boy I (John Lee Williamson)Sonny Boy WilliamsSonny Boy Williamson 1Sonny Boy Williamson ISonny Boy Williamson I (John Lee Curtis)Sonny Boy Williamson I.Sonny Boy Williamson I. (John Lee)Sonny Boy Williamson IISonny Boy Williamson No. 1Sonny WilliamsonSunny Boy WilliamsSunny Boy WilliamsonWiliamsonWillamsonWilliamsWilliamsonWilliamson IWilliamson John LeeWilliamson S.B.Willie WilliamsonУильямсонSib (8) + +747074David Weiss (3)A musical saw player. He also played the oboe and English horn. Passed away on 24 May 2014. +Former principal oboe of [a835190] (1973-2003).Needs VoteDave WeissWeissLos Angeles Philharmonic Orchestra + +747123George OrendorffGeorge Robert OrendorffTrumpeter. +b. 18 March 1906, Atlanta, GA +d. June 1984, Los Angeles, CA +Originally a guitar player and school mate of [a884594], [a334067] and [a136133] at Wendell Phillips High School, he became a prominent jazz trumpet soloist on the 1920s Chicago scene. After a tour with the " Helen Dewey Show", he settled in Los Angeles and subsequently played with [a2800068], [a307389] and [a38201]. After his army service during WWII, he became a post officer and an official in the American Federation of Musicians, but also recorded on the West Coast Jazz and Rhythm and Blues scene and continued to play with [a307389].Needs Votehttps://adp.library.ucsb.edu/names/112502George OrendorfGeorge OvendorfGeorges OrendorffRichard OrendorfLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraPaul Howard's Quality SerenadersLes Hite And His OrchestraReb's Legion Club Forty-Fives + +747124Alvin BurroughsAmerican jazz drummer. + + +Born : November 21, 1911 in Mobile, Alabama. +Died : August 01, 1950 in Chicago, Illinois. +Needs Votehttps://en.wikipedia.org/wiki/Alvin_Burroughshttps://www.allmusic.com/artist/alvin-burroughs-mn0000744996/biographyhttps://adp.library.ucsb.edu/names/107189A. BurroughsAl BurroughsAllan BurroughsAlvin "Mouse" BurroughsAlvin BoroughsAlvin BurroughAlvin «Mouse» BurroughsAlvis BurroughsEarl Hines And His OrchestraWalter Page's Blue DevilsBill Harris SeptetSession SixHenry Allen Sextet + +747125Gus EvansJazz alto saxophonistNeeds Votehttps://www.allmusic.com/artist/gus-evans-mn0001308337/creditsEvansH. EvansLionel Hampton And His OrchestraGerald Wilson OrchestraRussell Jacquet And His Yellow Jackets + +747126Harry SloanUS jazz trombonist from the swing-era. + +Needs VoteHenry SloanSloanLionel Hampton And His Orchestra + +747127Lamar Wright (2)Lammar Wright, Jr.American jazz trumpeter (born September 28, 1927 in Kansas City, Missouri died July 08, 1983 in Los Angeles, California). +Not to be confused with his father [a307206] (1907-1973), also a jazz trumpeter. He is the brother of the trumpeter [a312518]. +He played with Lionel Hampton (1943-1946), Dizzy Gillespie (1947), Charlie Barnet among others, and recorded with R&B's stars as "The Coasters" and Otis Redding ('50s & '60s). +Needs VoteL. WrightLamar Wright JnrLamar Wright JrLamar Wright Jr.Lamar Wright, JrLamar Wright, Jr.Lammar WrightLammar Wright Jr.Lammar Wright, Jr.Lasmar Wright, Jr.Lionel Hampton And His OrchestraThe International Jazz Group + +747128Roy McCoyRoy L. McCoy.American jazz (and early rhythm and blues) trumpeter, singer and bandleader. +Played with : Lionel Hampton, Louis Armstrong, Billie Holiday, Cab Calloway, Earl Bostic, Arnett Cobb, Flip Wilson, Harry Belafonte, "The Drifters", "The Coasters" and others. +Nickname : "Tanglefoot". + +Born : 1920 in Stanton, Virginia. +Died : January 29, 2001 in Baltimore, Maryland. +Needs VoteMcCoyLionel Hampton And His Orchestra + +747130Bill Perkins (2)Guitarist and banjo playerNeeds VoteWilliam PerkinsLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLes Hite And His OrchestraReb's Legion Club Forty-Fives + +747131Al HayesAlvin Cooper Hayse.American jazz trombonist. +Hayes played with Snookum Russell & Kelly Martin, "McKinney's Cotton Pickers", Lionel Hampton, Milt Buckner, Gigi Gryce, Clifford Brown, Stan Kenton and others. + +Born : April 07, 1921 in Detroit, Michigan. +Died : May, 1982 in Michigan. +Needs VoteA. HayesAl HaynesAl HayseAl HaysseAlvin HayesAlvin HayseHayesHayseLionel Hampton And His OrchestraLionel Hampton And His Paris All StarsHerbie Fields Swingsters + +747132Charles Harris (2)Charles Pervis Harris American jazz double-bassist, known as Charlie Harris, who played with Nat "King Cole" for 13 years. He previously worked with Lionel Hampton. + +Born 9 January 1916 in Alexandria, Virginia, and raised in Baltimore, Maryland, Harris died 9 September 2003 at Bon Secours Hospital in Baltimore.Needs Votehttps://www.theguardian.com/news/2003/nov/01/guardianobituaries.artsobituarieshttps://www.latimes.com/archives/la-xpm-2003-sep-16-me-passings16.2-story.htmlC HarrisC. HarrisCh. HarrisCharles "Chico" HarrisCharles HarvisCharles P. HarrisCharlie HarrisChas. HarrisHarrisChico TenelliLionel Hampton And His OrchestraThe Nat King Cole TrioLionel Hampton And His SeptetLionel Hampton And His QuartetHerbie Fields Swingsters + +747135Vernon PorterJake Vernon Haven PorterJazz trumpeter and record producer (August 3, 1916, Oakland, California – March 25, 1993, Los Angeles). + +For the jazz/jazz-funk bassist, see [a=Vernon Porter (2)]. +Needs Votehttp://en.wikipedia.org/wiki/Jake_PorterHavenJack "Vernon" PorterJack 'Vernon' PorterPorterV. HavenVernon "Jake" PorterVernon H. PorterVernon Jake PorterJake PorterVernon HavenLionel Hampton And His OrchestraEddie Beal And His Sextet + +747136Luther "Sonny" CravenLuther CravenUS jazz trombonist from the swing-era. + +Needs Votehttps://www.allmusic.com/artist/luther-sonny-craven-mn0001898128"Sonny" CravenLuthen "Sonny" CravenLuther "Sonny" GravenLuther CravenLuther GravenLuther Sonny CraventLutter GravenSonnie CravenSonny CravenSonny DravenLouis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong And His OrchestraLionel Hampton And His OrchestraLes Hite And His OrchestraSonny Clay's Plantation Orchestra + +747137Vernon KingAmerican jazz and blues bassist.Needs VoteV. KingLionel Hampton And His OrchestraLionel Hampton And His SeptetEarl Bostic And His OrchestraLionel Hampton And His SextetSam Price And His Texas BlusiciansEarl Bostic QuartetSnub Mosley And His OrchestraAll Star Sextet + +747139Fred BeckettFrederick Lee BeckettJazz trombonist, born January 23, 1917 in Nellerton, Mississippi, died January 30, 1946 in St. Louis (tuberculosis). +He played in various bands in the Midwest, including those led by [a=Buster Smith], (1937-1938), [a=Tommy Douglas] (1937-1939), and [a=Harlan Leonard]. Beckett is best known as a member of [a=Lionel Hampton]'s big band 1940-1944.Needs Votehttps://en.wikipedia.org/wiki/Fred_Becketthttps://www.allmusic.com/artist/fred-beckett-mn0001793389/biographyhttp://www.trombone-usa.com/beckett_fred_bio.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/303604/Beckett_FredFreddy BackettFreddy BeckettLionel Hampton And His OrchestraHarlan Leonard And His Rockets + +747140Vernon AlleyVernon Creede AlleyAmerican jazz bassist (double bass and electric bass guitar), born May 26, 1915 in Winnemucca, NV. +Alley performed and recorded with [a=Lionel Hampton] 1940-1942 and [a=Count Basie] 1942-1943. After World War II settled in San Francisco, leading bands and acted as host of radio and TV programs. He also recorded with [a=Jack Sheedy] 1949, [a=Nick Esposito (2)] 1949, [a=Flip Phillips] 1952, [a=Charlie Mariano] 1953, [a=Jimmy Witherspoon] 1959, and [a=Ralph Sutton (2)] 1959.Needs Votehttps://en.wikipedia.org/wiki/Vernon_Alleyhttps://www.allmusic.com/artist/vernon-alley-mn0001203861/biographyhttps://adp.library.ucsb.edu/names/301022Count Basie OrchestraLionel Hampton And His OrchestraLionel Hampton And His SeptetThe Ralph Sutton QuartetCharlie Mariano SextetJack Sheedy's Jazz BandNick Esposito BoptetteVernon Alley QuartetSnookum Russell And His Orchestra + +747141Joe Morris (2)Joseph Lee MorrisAmerican jazz and rhythm & blues trumpet player, born March 2, 1922, died November 7, 1958. +Joe Morris started his career in jazz, but is mostly known as the leader of the R&B-oriented Joe Morris Orchestra, the unofficial house band for Atlantic in the early to mid-1950's. Several future Atlantic stars passed through this orchestra's ranks, including [a=Ray Charles] and [a=Lowell Fulson]. +Morris wrote "Anytime, Any Place, Anywhere" for Atlantic and put the new record company on the map when it soared to number one on the R&B charts. +Needs Votehttp://en.wikipedia.org/wiki/Joe_Morris_(trumpeter)https://adp.library.ucsb.edu/names/110292B. MorrisCharles Joseph MorrisJ. MarrisJ. MorrisJoeJoe MorrisJoesph MorrisJoseph MorrisL. MorrisMorrisSan Adus MorrisТернерLionel Hampton And His OrchestraLionel Hampton And His SeptetJoe Morris OrchestraLionel Hampton And His SextetJoe Morris Blues Cavalcade + +747142Dave PageDavid PageAmerican jazz trumpeter, vocalistNeeds VoteDavid PagePageLionel Hampton And His OrchestraArnett Cobb & His OrchestraChicago Hot FiveHot Lips Page And His Band + +747145Ted SinclairAmerican jazz bassist.Needs VoteSinclairTed SinclaireTeddy SinclairLionel Hampton And His OrchestraWingy Carpenter And The Wingies + +747147Andrew PennAmerican jazz trombonist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/337038/Penn_Andrew_Andyhttps://www.allmusic.com/artist/andrew-penn-mn0001708253/creditsAndy PennPennLionel Hampton And His OrchestraErskine Hawkins And His Orchestra + +747206Graham EllisTrombonist and tuba playerCorrectHarry James And His OrchestraStan Kenton And His Orchestra + +747829Robin O'NeillRobin O'NeillBritish bassoonist, conductor, orchestrator, arranger, educator, and music director. +He was Principal Bassoonist with the [a=National Youth Orchestra Of Great Britain] before studying at the [l305416] (1978-1980). Wilst at the GSMD, he was Principal Bassoonist with the [a863063]. Former Principal of [a=Endymion Ensemble]. Founder member of and Principal with [a=The Chamber Orchestra Of Europe]. He then joined the [a=English Chamber Orchestra] before being invited to join the [a=Philharmonia Orchestra] as Principal Bassoonist. Member of [a=London Winds] and [a=The Gaudier Ensemble]. Principal Conductor and a member of the artistic committee of the [a4202852], L'Aquila, Italy. He has been Professor of Bassoon at the Guildhall School of Music & Drama and the [l=Royal Academy of Music]. He has conducted many orchestras worldwide. Music director of the music theatre ensemble The Motion Group.Needs Votehttps://www.facebook.com/robinoneillconductor/https://www.instagram.com/robin_oneill_conductor/https://www.linkedin.com/in/robin-o-neill-6460b569/?originalSubdomain=ukhttps://www.philharmonia.co.uk/orchestra/players/13841/robin_oneillhttps://www.endymion.org.uk/about/robin-oneill/https://www.ram.ac.uk/people/robin-oneillhttps://www.feenotes.com/database/artists/o-neill-robin/https://robertgravesoratorio.co.uk/the-event/the-cool-web/robin-oneill-conductor/http://contratiger.com/wind.phphttps://nospr.org.pl/en/kalendarz/artysci/robin-oneillhttps://www.hyperion-records.co.uk/a.asp?a=A484https://www.orchestradacameradellasardegna.it/robin-oneill/Rob O'NeillRobin O'NeilEnglish Chamber OrchestraPhilharmonia OrchestraThe Chamber Orchestra Of EuropeNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraSvenska KammarorkesternWind Soloists Of The Chamber Orchestra Of EuropeMichael Collins And FriendsWilliam Bennett And FriendsLondon MusiciThe Gaudier EnsembleEndymion EnsembleLondon WindsOrchestra Città Aperta + +747830Heather NichollClarinetist.Needs VoteHeather NicollRoyal Scottish National Orchestra + +747833David PyattDavid John PyattBritish classical horn player, and Professor of H. Born 26 September 1973 in Watford, England, UK. +Former Principal Horn of the [a=National Youth Orchestra Of Great Britain], the [a=BBC National Orchestra Of Wales], and the [a=London Symphony Orchestra] (1998-2012). He joined the [a=London Philharmonic Orchestra] as Joint Principal Horn in 2012. In 2019, he was appointed Principal Horn of the [a=Orchestra Of The Royal Opera House, Covent Garden]. Professor of Horn at the [l527847] and [l305416].Needs Votehttps://www.youtube.com/channel/UCOTWSEKKdMSRJi0s6OuJpoghttps://open.spotify.com/artist/07nBWv96nhHqM65w2iw8G8https://music.apple.com/us/artist/david-pyatt/998930https://en.wikipedia.org/wiki/David_Pyatthttps://www.feenotes.com/database/artists/pyatt-david-26th-september-1973-present/http://watfordphilharmonic.co.uk/wp2019_B/david-pyatt-patron/https://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/111-david-pyatt/https://www.naxos.com/person/David_Pyatt/38340.htmhttps://www.imdb.com/name/nm2737264/https://www2.bfi.org.uk/films-tv-people/4ce2bc27ccb80PyattLondon Symphony OrchestraLondon Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenNational Youth Orchestra Of Great BritainBBC National Orchestra Of Wales + +747840Jacob HeringmanAmerican-born lutenist, since 1987 based in the UK.Needs Votehttp://www.heringman.com/HeringmanJacob HerringmanThe Dufay CollectiveNew London ConsortThe Parley Of InstrumentsMusica Antiqua Of LondonVirelai (2)AlamireTheatre Of Early MusicLa Grande ChapelleTheatre Of The AyreMusicians Of Shakespeare's GlobeArmonia Concertada + +747841Mike HextMichael HextTrombonist.Needs Votehttp://www.mikehext.co.uk/Michael HextLondon Philharmonic OrchestraLondon BrassHallé OrchestraLondon Metropolitan OrchestraFires Of LondonPhilip Jones Brass Ensemble + +747842Chris BaronPercussionistNeeds VoteBaronChristopher BaronGabrieli ConsortThe Jazz Percussion QuintetDeirdre Cartwright GroupAll Bluff & Porterage + +747848Roger HarveyRoger HarveyBritish trombonist, composer, music arranger, professor, and author. +He studied at Oxford and London Universities and his trombone career began with the [a=Hallé Orchestra], staying with them for six years, before he joined the [a=Philip Jones Brass Ensemble] as Principal Trombone in 1981 (he played with them until their last concert in 1986). On Philip's retirement he acted as Director to the successor group, [a=London Brass]. For five years he was Principal Trombone and Director of [a=The Academy of St. Martin-in-the-Fields] since 1985. He became freelance musician in 1991 working as Guest Principal with all the major London Orchestras. He was appointed Co-Principal Trombone of the [a=BBC Symphony Orchestra] in 2000. +As a teacher he spent 5 years as Professor of trombone at the [a=Royal Northern College Of Music] and 4 years as trombone tutor at the Junior [url=https://www.discogs.com/label/305416-The-Guildhall-School-Of-Music-Drama]Guildhall School of Music[/url]. He was Professor of Trombone at [l=Trinity College Of Music, London]. Tenor Trombone professor at the [l290263].Needs Votehttps://open.spotify.com/artist/75N02Ykac9JPFQlS5BlgKhhttps://www.feenotes.com/database/artists/harvey-roger-1949-present/https://www.rcm.ac.uk/brass/professors/details/?id=02884https://www.brasswindpublications.co.uk/acatalog/Harvey.htmlHarveyR HarveyR. HarveyBBC Symphony OrchestraLondon BrassHallé OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsPhilip Jones Brass EnsembleBaroque Brass Of London + +747906Rudolf UlbrichRudolf UlbrichGerman violinist and founder of the [a913346].CorrectStaatskapelle DresdenUlbrich-Quartett + +747908Bernhard RichterAustrian drummer and percussionist. Needs VoteGustav Mahler JugendorchesterORF Radio-Symphonieorchester WienStefan Heckel Group + +747997William WrzesienWilliam George WrzesienWilliam "Bill" George Wrzesien (June 3, 1931 — January 24, 2020) was an American classical clarinetist. From Polish descent, Bill taught at the New England Conservatory for over 40 years, from 1966 to 2007. He served as department chair for 28 of these years, both as a woodwinds faculty chair and NEC Preparatory woodwinds faculty chair. During his time at NEC, he completed a Bachelor of Music, Master of Music, and Artist Diploma from the school. + +Bill was principal clarinetist of the Boston Lyric Opera Orchestra and the Boston Ballet Orchestra. He was a founding member of the Boston Music Viva Contemporary Music Ensemble, and performed as a soloist and chamber music player at major concert venues and festivals including Tanglewood, Marlboro, Lincoln Center, Kennedy Center, the Library of Congress, the Arnold Schoenberg Institute at USC, ISCM World Music Days, Jeunesses Musicales Berlin, Brucknerfest, Edinburgh, and Holland Festivals. Throughout his career, he also served as principal clarinetist with the Handel & Haydn Society, the Opera Company of Boston Orchestra, the Boston Classical Orchestra, and the Boston Pops Esplanade Orchestra. He also served on the faculty of Boston Conservatory, University of Massachusetts/Lowell, and Longy School of Music.Needs Votehttps://necmusic.edu/former-faculty/william-wrzesienhttps://clarinet.org/remembering-william-wrzesien/Bill WrzesienW. WrzesienWilliam WrzesianBoston Symphony Chamber PlayersThe Boston Musica Viva + +748001Fenwick SmithFenwick Smith (died July 2017, aged 69) was a classical flautist and educator. He played with the [a395913] from 1978 until 2006.Needs VoteJ. F. S.J. Fenwick SmithSmithBoston Symphony Orchestra + +748011H. HoffmannViola player.Needs VoteGürzenich-Orchester Kölner Philharmoniker + +748032Radio-Tango-Orchester HamburgRadio Tango Orchestra HamburgNeeds VoteOrchestra Di Tanghi Della Radio Di AmburgoRadio Tango Orchestra, HamburgRadio-Tango OrkesterRadio-Tango-OrchesterRadio-Tango-Orchester, HamburgRadio-Tango-Orchester-HamburgRadio-Tango-OrkesterRadio-Tango-Orkester HamburgRadio-Tangoorchester, HamburgTango OrchesterTango-Orchester + +748109Alan StepanskyAmerican cellist and teacher. He joined the New York Philharmonis in 1989 and stayed until 1999.Needs Votehttps://www.alanstepansky.com/https://de.wikipedia.org/wiki/Alan_Stepanskyhttps://www.imdb.com/name/nm0826813/Alan J. StepanskyAlan StepasnkyAllan StepanskyAllen StepanskyStepanskyNew York PhilharmonicBoston Pops OrchestraNew York Chamber ConsortAvatar StringsStone Hill Strings + +748167Ernst VerchGerman songwriter and radio presenter (1917 - 1974). He worked at [l270438].Needs VoteE. VerchFerchVerchVerch E.VerohVershЭ. Ферх + +748336Charles BlenzigAmerican jazz pianistNeeds Votehttp://www.charlesblenzig.com/BlenzigC. BlenzigGil Evans And His OrchestraPush (14)The Michael Treni Big BandNew York City SoundscapeThe George Bouchard Group + +748430Beth GutermanViola player.Needs VoteBeth Guterman ChuSaint Louis Symphony OrchestraIris Chamber OrchestraZangiacomo + +748477Борис МокроусовБорис Андреевич Мокроусов Boris Andreyevich Mokrousov +Soviet composer +Born: February 27 (14 O.S.), 1909, Nizhny Novgorod +Died: March 27, 1968, Moscow +Needs Votehttps://ru.wikipedia.org/wiki/Мокроусов,_Борис_АндреевичA. MobrousovA. MokrousovA. NenotveramaisB. A. MokrousovB. MakrousovB. MakrousowB. MokrooussovB. MokrousovB. MokrousovaB. MokrousovasB. MokrousovsB. MokrousowB. MokroussovB. MokroussowB. MokrusovB. MokurousovB. MukrousowB. MukroussovB.B. MokrousowB.MokrousovBoris M. MokrousovBoris MokrousovBoris MokroussovBorys MakrousowBorys MokrousowMakrousovMakroussovMocrooussofMokrousovMokrousov Boris AndreevichMokrousowMokroussovMokrusovV. MokrousovБ. МакроусовБ. МокраусоваБ. МокроусовБ. МокроусоваБ.МокроусовГ. МокроусовМокроусовМокроусов Борис АндреевичЮ. Мокроусовבוריס א' מוקרואסובボリス・モクロウソフボリス・モクロソフモクロウソフ + +748479Василий Соловьев-СедойВасилий Павлович Соловьёвaka Василий Павлович Соловьёв-Седой, Vasilyi Pavlovich Soloviev-Sedoy +Soviet composer, People's Artist of the USSR (1967). One of the most important songwriters in Soviet Union / Russia 20th century. +Born: April 25, 1907, Saint Petersburg, Russian Empire +Died: December 2, 1979, Leningrad, USSRNeeds Votehttps://ru.wikipedia.org/wiki/Соловьёв-Седой,_Василий_Павлович(В. Соловьев-СедоB. Slaviev-SodoiB. Solorjev-SedoiB. SoloveivB. SolovievB. Soloviev - SedoïB. Soloviev / SedoiB. Soloviev SodcïB. Soloviev-SodoiB. Soloviev-SodoïB. Solovieï-SiedoïB. SoloviovB. Соловьев-СедойB.Soloviev - SodoïBasile Solovien-SodoïBasile Soloviev SodoïBasile Soloviev-SedoiBasile Soloviev-SodoiJ.P. Solovjev - SedojM. Solovjev, SedoiS. SedoiS. SedojS. SedojusS. SedoïS. SolovjevS. SolovjievSaławiow-SiedogoSedoiSedoi / V. P. SolovievSedoi / V.P. SolovievSedoi / V.P.SolovievSedoi-V. SolovjevSedojSedoj SolovevSedoj SolovjievSedoj V. SolovevSedovSedov SolovjevSedoySedoy / W. SolovieffSedoy-SolovievSedoïSeloviev-SedoySjedov-SolovjevSloviev-SedoySlovjev-SedoiSobolievSodoiSodoi, B. SolovievSolajow-SedojSolejev/SedoiSolejew / SedoiSolevievsedaiSolevjev-SedoySolivievSolobiev - SedoiSolobjew-SedoySolodouiewSolojevSolojev SedoySolojev, SedoiSolojev-SedoiSolojev-SepoiSolojev/SedoiSolojewSolojew-SedoiSolojew-SedoySolojew/SedoySolojow-SedoiSolokief, SadofSolov'yov-Sedoy, Vasily PavlovichSoloveiv-SedoiSoloveiv-SedoïSoloveiv-SodoiSolovevSolovev SedojSolovev-SedoiSolovev-SedojSolovev-Sedoj Vasilij PavlovicSolovev-SejojSolovev/SedojSolovieb-SedoiSolovieb-SedoïSolovieffSolovieff - SedoySolovieff / SedoySolovieff – SedoySolovieff, SedoySolovieff-SedojSolovieff-SedoySolovieff-SedoïSolovieff-SodoySolovieff/SedoySolovieff–SedoySolovieiev SedoiSolovieuSolovieu, SedoySolovieu-SadoySolovieu-SedoiSolovieu-SedoySolovieu/SedoySolovieu; SedoySolovievSoloviev - SdoiSoloviev - SedoiSoloviev - SedoySoloviev - SedoïSoloviev - SodoiSoloviev - SodoïSoloviev -SedoiSoloviev / SedoySoloviev / SédovSoloviev SedoiSoloviev SedovSoloviev SedoySoloviev SodoiSoloviev SodoySoloviev, SedoySoloviev, SedoïSoloviev-SedaiSoloviev-SeddvSoloviev-SeddySoloviev-SedeiSoloviev-SedoiSoloviev-Sedoi VasiliSoloviev-SedojSoloviev-SedouSoloviev-SedovSoloviev-SedoySoloviev-SedoïSoloviev-SodoiSoloviev-SodolSoloviev-SodoïSoloviev-V. SedoiSoloviev/SedoiSoloviev/SodoiSoloviev/SodoïSolovievsedaiSoloviewSoloview-SedoySoloviov - SedoiSoloviov - SedovSoloviov / SedoiSoloviov SedoïSoloviov-SedoiSoloviov-SedojSoloviov/SedoiSoloviov/SedoïSoloviow-SedoiSoloviv And SedoySoloviv and SedoySolovjed-SedoiSolovjevSolovjev - SedoiSolovjev - SedolSolovjev - SedovSolovjev / SedoiSolovjev / SedojSolovjev / SjedojSolovjev SèdojSolovjev-SedaSolovjev-SedoiSolovjev-SedojSolovjev-SedolSolovjev-SedovSolovjev/SedoySolovjev/SjedojSolovjev–SedoySolovjew/SedoySolovjov-SedoiSolovjov-Sedoi, VasiliSolovyev - SedoySolovyev-SedoiSolovyev-SedoySolovyev-Sedoy MatusovskiySolovyov SedoiSolovyov-SedoiSolovyov-SedoySolowiew-SedoiSolowiow-SiedojSolowjewSolowjew - SedoySolowjew / SedoiSolowjew / SedoySolowjew E SedovSolowjew SedoySolowjew-SedoiSolowjew-SedojSolowjew-SedoySolowjew/SedoiSolowjew/SedoySolowjow - SedoySolowjow-SedoiSolowjow-SedojSoloy Ey - SedojSoloyev-S. V. PavlovicSoloyev-SedoSoloyev-SedojSolviev - SedoiSolvyev-SedoiSołowiow - SiedojSołowiow SiedojSołowiow-SiedejSołowiow-SiedojSołowiow-Siedoj WasylSsodol, SsolojoffSsolowjoff-SsedoiSzolowjoff-SsedoiSòloviov SedoiV. Ssolovyov-SedoiV. P. SoloiovV. P. Soloviev-SedoiV. P. Soloviov-SedoiV. P. SolovjovV. P. Solovjov - SedojV. P. Solovjov-SedojV. Pavlovich Solovev SedoiV. S. SolovjovV. SedoiV. SedojV. SedoyV. SjedojV. Soboljev-SedoiV. SokovlovV. Solodjev–SedoiV. Solojev - SedoiV. Solojev-SedoiV. SolovevV. Solovev - Sedoi Vasilij PavlovicV. Solovev-SedoiV. Solovev-SedojV. SolovievV. Soloviev - SedoiV. Soloviev - SedoyV. Soloviev SedoyV. Soloviev, SedoiV. Soloviev-DesoiyV. Soloviev-SadoyV. Soloviev-SedoiV. Soloviev-SedoiyV. Soloviev-SedojV. Soloviev-SedolV. Soloviev-SedoyV. Soloviev-SedoïV. Soloviev/SedoiV. Soloviev—SedojV. Soloviev―SedojV. Soloview/SedoiV. SoloviovV. Soloviov - SedoiV. Soloviov-SedoiV. Soloviov-SedoyV. Soloviov/SedoiV. SolovjevV. Solovjev - SedoiV. Solovjev - SedojV. Solovjev - SedoliV. Solovjev / SedajV. Solovjev SedojV. Solovjev-SedoiV. Solovjev-SedojV. Solovjev-SedolV. Solovjev-SedoyV. Solovjev-SidoiV. Solovjev/SedoiV. Solovjeva/SedogoV. Solovjev–SedoiV. SolovjovV. Solovjov - SedojV. Solovjov / SedojV. Solovjov-SedoiV. Solovjov-SedojV. Solovjov-SědojV. Solovjovas-SedojusV. Solovjovs-SedojsV. Solovlovs- SedovsV. Solovyev - SedoyV. Solovyev-SedoiV. Solovyev-SedoyV. SolovyovV. Solovyov - SedoiV. Solovyov-SedoV. Solovyov-SedoiV. Solovyov-SedoyV. Solovyov-sedoiV. Solovyov/SedoiV. Solovyóv SedoyV. Solovëv-SedojV. Soloyov-SedyV. SolvierV. SolvievV. Solviev-SedoyV. Sovoljev-SedoiV. Szolovjov-SzedojV.P.Solovjev-SědojV.Solojev-SedoiV.Soloviev-SedoiV.Solovjev-SedoiV.Solovjev/SedolV.Solovjovas-SedojusV.Solovyev-SedoyVasil SedojVasil Solo'ev-SedojVasil Solojev-SedoiVasil Soloviev-SedoiVasil Solovjev SedoiVasil Solovjev-SedoiVasil Solovjov-SedoiVasil Solovjov-SedolVasili P. Soloviov-SedoiVasili Soloviev-SedoiVasili SoloviovVasili Solovjev-SedoiVasili Solovjev-SedojVasili Solovjov-SedoiVasilij Pavlovic Solovev-SetojVasilij Pavlovich Solovev SedojVasilij Pavlovich Solovev-SedoiVasilij Pavlovič-ŠedojVasilij Sedoj-SolovevVasilij Solojev-SedojVasilij Solov'ev-SedojVasilij Solovev-SedoVasilij Solovev-SedojVasilij Soloviev-SedoiVasilij Solovjev SedojVasilij Solovjev-SedoiVasilij Solovjev-SedojVasilij Solovjov-SedoiVasilij Solovjov-SedojVasilij Solovjov-SedoyVasilij Solovëv-SedojVasilij Soloyev - SedojVasilij Szolovjev-SzedojVasilijsolovev - SedojVasiliy Soloviev-SedoyVasilj Solovev-SedoiVasilj Solovev-SedojVasily Soloev-SedoyVasily SolovievVasily Soloviev-SedoyVasily Soloviev-SedoïVasily Solovyov SedoiVasily Solovyov-SedoiVasily Solovyov-SedoyVasilyi Pavlovich Soloviev-SedoyVasilyi Soloviev-SedoyVassili Solowjew-SeiojeVassili - Solowjew - SeiojèVassili Solovien-SedoiVassili SolovievVassili Soloviev And Sedoi M. MatusovskyVassili Soloviev-SedoiVassili Soloviev-SedoyVassili Soloviov-SedoïVassili-Soloviev-SedoyVassili-Soloview-SedaiVassili-Solowjew-SeiojèVassilisoloviev-SedocVassilji Solovjev-SedojVassily Solovieff-SedoyVassily SolovievVassily Solovyov-SedoïVaszilij Pavlovics Szolovjov-SzedojVaszilij Szolovjov SzedojVaszilij Szolovjov-SzedojVladimir SjedovVladimir Soloviev-SedoyV・ソロヴィ・セドイW. SiedowiW. SolojewW. Solojow-SedoiW. SolovieffW. Solovieff, SedoyW. Solovieff/Rewas L. SedoyW. Solovieff/SedoyW. Solowiew-SedoiW. Solowiew-SjedojW. Solowijov - SedoyW. Solowjew-SedoiW. Solowjew-SedojW. Solowjow-SedoiW. Solowjow-SedojW. Sołowiow-SiedoiW. Sołowiow-SiedojW. Sołowiow-SiedowW. Sołowjow-SiedojW. Sołowłow-SiedojW. Ssolowjew-SsedojW. Ssolowjoff-SsedoiW.P. Solowjew-SedojW.P.S. Vieff-SedoyW.Solovjev SedojW.Sotowiow-SiedojWasilij Sołowiow-SiedojWasilij Sołowjow-SiedojWassili Solovieff-SedojWassili Solovieff-SedoyWassili Solowjew - SedojWassili Solowjew-SedoiWassili Solowjow-SedoiWassili Solowjow-SedojWassili Solowjow-SedoyWassilij Solowjew-SedoyWassily P. Solowjew-SedojWasyl Sołowiow - SiedojWasyl Sołowiow-SiedojY. ソロヴィヨフ=セドイВ Соловьев СедойВ Соловьев-СедойВ. П. Соловьев-СедойВ. П. Соловьев-Седой.В. СедогоВ. СедойВ. Солвьев-СедойВ. Соловйов-СедойВ. СоловьевВ. Соловьев - СедойВ. Соловьев- СедойВ. Соловьев-СедогВ. Соловьев-СедогоВ. Соловьев-СедойВ. Соловьева-СедогоВ. Соловьов-СедойВ. Соловьёв-СедойВ.П. Соловьев-СедойВ.Соловьев-СедогоВ.Соловьев-СедойВ.Соловьевa-СедогоВ/ Соловьев-СедойВасилий Павлович Соловьёв-СедойВасилий Соловьёв-СедойС.-СедойСедогоСоловйов-Сєдой В.П.Соловьев-СедойСоловьева-СедогоСоловьов-Седойоперетта В.Соловьева-Седогоואסילי סוליביוב־סדויוסילי פבלוביץ' סולוביוב-סדויソロビエフ ~ セドイソロビエフ・セドイ瓦·索洛维约夫·谢多伊 + +748966Robert Woods (2)Producer and founder (together with [a=Jack Renner]) of [l=Telarc] Records.CorrectBob WoodsRob WoordsTelarc Records + +749188Karl VibachGerman actor, voice actor and director. He was born on September 14, 1928 in Paderborn, Germany and died on June 10, 1987 in Lübeck, Germany.CorrectK. VibachK. ViebachKarl ViebachVibachVibach, KarlViebach + +749261Joe AtkinsonAmerican sound engineer. Was chief mastering engineer at [l=Atlantic Studios] in New York City before moving to [l=Motown]'s [l=Hitsville USA Studios, Detroit] around 1968. Later worked for CBS Television. Needs VoteJA + +749721Wilbur Bascomb Sr.Wilbur Odell BascombAmerican jazz trumpeter (born May 16, 1916 in Birmingham, USA - died Dec 25, 1972 in New York, USA). +Not to be confused with his son [a=Wilbur Bascomb] Jr., jazz-funk bassist. +Needs Votehttp://home.earthlink.net/~v1tiger/Dudbascomb.htmlhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/246227364da61b9bf66563d855e5e440ec17ad/discographyhttps://www.allmusic.com/artist/wilbur-bascomb-sr-mn0001601902https://musicbrainz.org/artist/e5905d83-f750-40ef-9bd0-98e0a8fec7e5/relationshipshttps://music.metason.net/artistinfo?name=Dud%20BascombDub BascombWibur BascomWilber "Dad" BascombWilber "Dub" BascombWilber "Dud" BascombWilber BascombWilbur "Dud" BascombWilbur 'Dud' BascombWilbur BascomWilbur BascombWilbur BascombeWilbur BuscombeWilbur Dud BascombDud BascombDuke Ellington And His OrchestraErskine Hawkins And His OrchestraThe Buddy Tate Celebrity Club OrchestraErskine Hawkins And His 'Bama State CollegiansDud Bascomb and Orchestra + +750454David CeruttiAmerican violist.Needs VoteDavid CercuttiDavid CerrutiDavid CerruttiOrchestra Of St. Luke'sOrpheus Chamber OrchestraThe Metropolitan Opera House OrchestraSmithsonian Chamber OrchestraSmithson String QuartetHiraga Strings + +750456Carl AlbachAmerican trumpeter.Needs Votehttps://oslmusic.org/bios/carl-albach/The American Symphony OrchestraOrchestra Of St. Luke'sOrpheus Chamber OrchestraRiverside Symphony + +750469Yurika MokAmerican classical violin player.CorrectSaint Louis Symphony OrchestraThe Metropolitan Opera House Orchestra + +750510Sander ScheurwaterSander ScheurwaterDutch Happy Hardcore producer.Needs Votehttp://nl.wikipedia.org/wiki/Sander_Scheurwaterhttp://de.wikipedia.org/wiki/Sander_ScheurwaterS. ScheurwaterS.ScheurwaterScheurwaterDe MosselmanHuman Resource + +750641Gail Kruvand-MoyeGail Kruvand-MoyeClassical Bassist + +Assistant Principal Bass in the [b]New York City Opera Orchestra[/b]. Former Principal Bass of the [b]St. Louis Symphony Orchestra[/b]. Member of the [b]New York Philomusica Chamber Ensemble[/b].Needs VoteGail KruvandGail Kruvand MoyeGail KruvaneGayle KruvandThe Brooklyn Philharmonic OrchestraAmerican Composers OrchestraSaint Louis Symphony OrchestraThe Prism OrchestraThe Azure Ensemble + +751504Sarah ChangYoung Joo ChangAmerican classical violinist of Korean heritage, born in Philadelphia in 1980. Chang was an archetypal child prodigy, accepted into the Juilliard School at the age of 5, making her debut with [a327356] at 8 and recording her first album aged 10. Chang was Gramophone magazine's 'Young Artist of the Year' in 1993 and has received the Avery Fisher Prize and the Hollywood Bowl's Hall of Fame award.Needs Votehttp://sarahchang.com/Cara ChangChangサラ・チャンNew York PhilharmonicOrpheus Chamber Orchestra + +751505Thomas HampsonThomas HampsonUS American baritone / bass opera singer, also acclaimed for his lieder repertoire, born June 28, 1955, in Elkhart, Indiana.Needs Votehttp://www.hampsong.com/https://en.wikipedia.org/wiki/Thomas_HampsonHampsonTHThomas Hapsonトーマス・ハンプソン + +751516Franco CosacchiCorrectF. CosacchiI Cantori Moderni di Alessandroni + +751941Erno RapeeErnö RapéeHungarian-American conductor, composer, pianist & author. +Born 4 June 1891 in Budapest, Hungary. +Died 26 June 1945 in New York City, New York, USA. +Best known works: "[i]Charmaine[/i]" (1920's) and "[i]Diane[/i]" (1930's), successfully performed by [a=The Bachelors] in 1960's. +Rapee was the musical director with various theatres in New York. He was the chief conductor of the Radio City Symphony Orchestra from 1932-1945, whose music was also heard by millions over the air on the radio program [i]Radio City Music Hall of the Air[/i]. He was under contract with Twentieth Century Fox and was musical director on over 30 films. +He was also the author of the [i]Encyclopaedia of Music for Pictures[/i], [i]Motion Picture Moods for Pianists and Organists[/i] and other books.Needs Votehttp://en.wikipedia.org/wiki/Ern%C3%B6_Rap%C3%A9ehttps://www.imdb.com/name/nm0006248/https://adp.library.ucsb.edu/names/110168ArapeeE RapeeE. PapeeE. RapeeE. RaperE. RapeéE. RappeE. RappeeE. RappéeE. RapéE. RapéeE. RapééE. RoppéE.RapeeErne RapeeErno - RapeeErno RafreErno RapeErno RapecErno RapeéErno RappeErno RappeeErno RapéErno RapéeErno, RapeeErnoe RapeeErnoropperErnö RapeeErnö RapeéErnö RappeeErnö RappéeErnö RapéePepéePopeeRapeRapecRapeeRapee ErnoRapeelRapelRaperRapeèRapeéRapgeRapleRappRappeRappeeRapperRappeyRappéRappéeRapreRapèeRapéeRapééRateeRepieRepéeRupesРапсErno RopeeErno Rapee's OrchestraErno Rapee Concert Orchestra + +752202Thom RotellaGuitarist, producer, composer, has performed or recorded with a wide variety of well-known artists both in jazz and mainstream pop music.Needs Votehttp://www.thomrotella.comhttps://www.allmusic.com/artist/thom-rotella-mn0000497618https://www.jazzmusicarchives.com/artist/thom-rotellahttps://www.vintageguitar.com/52432/thom-rotella/https://www.youtube.com/@thomrotella2946T. RotellaThom "Clu" RotellaThom RotellThomas RotellaTom KatellaTom RotellaTommy RotellaThom Rotella BandPorcupine (4)Thom Rotella 4-tet + +752214Vexi SalmiVeikko Olavi SalmiFinnish producer and lyricist, born September 21, 1942 in Hämeenlinna, died September 8, 2020 in Helsinki, Finland + +Vexi Salmi wrote his first songs with his childhood friend Antti Hammarberg, also known as [a=Irwin Goodman], under the pseudonym [a=Emil von Retee]. In the 1960s, due to the success of the songs, Salmi started to both write original lyrics and translate lyrics to Finnish. During his career he has participated in the writing of over 5000 songs, and about 2500 of them have been recorded. + +Pseudonyms: Bertil Berg, Bill Black, Lars Luode, Leo Länsi, Antero Ollikainen, P.A., Irja Tähde, Pasi Penttilä, Rudolf van Pornoff, Emil Retee/Emil von Retee (he added "von" to the name after writing the lyrics to the 100th song with Irwin Goodman in 1971). +Needs Votehttps://fi.wikipedia.org/wiki/Vexi_Salmihttps://en.wikipedia.org/wiki/Vexi_SalmiEmil ReteeSaimiSalmiSalmi V.Salmi VeikkoSalmi VexiV SalmiV. SakmiV. SalmiV.SalmiVeikko Olavi SalmiVeikko SalmiVeksi SalmiWeksi Salmiv. SalmiEmil von ReteeAntero OllikainenLeo LänsiIrja TähdeP. PenttiläBill Black (14)Rudolf Van PornoffPA (16)Tattarainen + +752232The Asylum SeekersNeeds VoteAsylum SeekersThe Asylm SeekersOrgan DonorsThe NumbskullsDJ DestinyNew WaveRave 2 The Grave + +752350Robert AtchisonRobert AtchisonBritish classical violinistNeeds Votehttp://www.robertatchison.com/Bob AtchinsonBob AtchisonThe Academy Of St. Martin-in-the-FieldsOrmesby EnsembleLondon Piano Trio + +752366Robert PayneAmerican trombonist, raised in San Diego, California, USANeeds VoteBob PaynePayneR. PayneRobert W. PayneRobert Warren PayneHarry James And His OrchestraLes Brown And His Band Of RenownLouie Bellson Big BandPat Longo And His Super Big BandThe Hollywood TrombonesThe Louie Bellson Drum ExplosionAlf Clausen Jazz OrchestraSteve Spiegl Big BandBuddy Childers Big BandBrad Steinwehe Jazz Orchestra + +752427Teddy SommerTheodore "Ted" Sommer American jazz drummer, percussionist and vibraphonist +Born June 16, 1924 in Bronx New York, USA, died November 5, 2017 (age of 93) +He performed and recorded with countless major recording artists including Solomon Burke, Ray Charles, Ted Mazio, Bette Midler, Wilson Pickett, Frank Sinatra, Rita Moreno, Lena Horne, Tony Bennett, Sammy Davis Jr., Tito Puente, Dick Hyman, Buddy Rich, Count Basie and many others. He was featured on the film scores of four Woody Allen films including [i]Sweet and Lowdown[/i] (1999).Needs Votehttps://www.imdb.com/name/nm0814000/SomerSommerSommersTed SomersTed SommerTed SommersTed SomnerTed StommerTed SummerTeddy SomerTeddy SomersTeddy SommersTeddy SummersTeo SommerTerry SommersOrville O. SirisWoody Herman And His OrchestraTerry Snyder And The All StarsLos AdmiradoresTed Sommer QuartetGeorge Russell OrchestraZoot Sims And His OrchestraWoody Herman And His Third HerdDick Hyman GroupTed Mazio Percussion GroupThe BrassmatesThe Three Deuces MusiciansThe Angelo Di Pippo Quartet + +752428Stanley WebbAmerican saxophonist, flutist, clarinetist and oboist. +Father of [a277950].Needs VoteS. WebbStan WebbStan Webb, JrStan Webb, Jr.Stanley G. WebbСтэн Уэббスタン・ウエブEnoch Light And The Light BrigadeHugo Montenegro And His OrchestraDizzy Gillespie And His OrchestraArtie Shaw And His OrchestraCharlie Parker And His OrchestraRaymond Scott And His OrchestraCootie Williams And His OrchestraThe Command All-StarsTerry Snyder And The All StarsCharlie Parker With StringsJoe Reisman And His OrchestraLos AdmiradoresBuddy Morrow And His OrchestraAl Caiola And His OrchestraJim Tyler OrchestraUrbie Green And His OrchestraHenry Jerome And His OrchestraThe Grand Award All StarsArt Farmer And His OrchestraBuddy Weed SeptetTony Mottola And His All-Stars + +752896Ronnie GubertiniJazz drummerNeeds VoteR. GubbertiniRonald GubbertiniBenny Carter And His OrchestraThe Savoy OrpheansHugo Rignold QuintetThe Sylvians + +752912David Martin (10)US jazz pianist -sometimes credited as Dave Martin- who enjoyed a long career as an accompanist, sometimes leading his own band. He spent most of the '30s with a crowd of expatriate jazzmen overseas including violinist [a=Eddie South], but much of his career was spent in New York City. Martin played cello as well as piano. He did some recording with the cello in the early part of his career but most of Martin's studio dates were on the piano. Martin's best-known composition is "Easy Does It". +Born: October 05, 1907 - Died: May 04, 1975 +Needs Votehttp://www.answers.com/topic/dave-martin-10https://www.ibdb.com/broadway-cast-staff/david-martin-12111Dave MartinMartinThe Jonah Jones QuartetAlix Combelle Et Son OrchestreSy Oliver And His OrchestraDave Martin And MenDave Martin & His TrioEddie South & His QuintetDavid Martin QuartetGinny Simms And Her OrchestraSol Yaged And His QuartetSol Yaged And His TrioThe David Martin Reunion Quintet + +752914Erik FrederiksenErik Feldskov FrederiksenDanish jazz drummer, bandleader and actor. + +Originally trained as portrait photographer but after receiving lessons as drummer he started playing with differenet bands and became professional musician in 1935. Played with (a.o.) Kai Ewans Big Band, Svend Asmussen and Peter Rasmussen's Orchestra. + +Later he pursued an acting career with minor roles on theater and in the movies. He had his own band which he toured with in Europe between 1955 and 1965. Towards the end of his life he was the leader of the house-orchestra at Hotel d'Angleterre in Copenhagen. + +Born: November 4, 1914 in Copenhagen. +Died: August 31, 1986.Needs Votehttp://www.danskefilm.dk/skuespiller/308.htmlhttps://www.the-discographer.dk/kapelmestre/frederik-disko.pdf>>Frederik<<E FrederiksenE. FrederiksenErik FrederiksonErik FredricksenErik FredriksenFrederikFrederiksenFredriksenFrederik (12)Svend Asmussen And His Unmelancholy DanesSvend Asmussen SextetSvend Asmussens OrkesterLeo Mathisens OrkesterLeo Mathisens BandSvend Asmussens KvartetKai Ewans Og Hans OrkesterAll Danish StarbandPoul Olsen SextetPeter Rasmussens Kvintet"Frederik" Og Hans OrkesterSvend Asmussens KvintetThe Kordt Sisters Med Swingtet + +752916Jack LlewelynJohn LlewellynBritish jazz guitarist, b. Aug. 23, 1914 in Liverpool, UK, d. Oct. 9, 1988. +Most famous nowadays for his 1946 recording session with [a253481] and [a267089], he had a long and prolific carrer as touring and session musician. +Son of banjoist David John (“Jack”) Llewellyn (1888 – 1961). +Needs VoteJ. LlwellynJack LlewelinJack LlewellynJack LlewlynStephane Grappelli And His QuartetQuintette Du Hot Club De FranceThe Malcolm Lockyer OrchestraSydney Lipton And His Grosvenor House BandHatchett's SwingtetteDennis Wilson Trio + +752928Dick SlevinEarly jazz kazoo player from St. LouisNeeds VoteDick SelvinSlevinThe Mound City Blue BlowersMcKenzie's Candy Kids + +752929Jean "Matlo" Ferret Pierre Jean FerretPioneering gypsy jazz guitarist. Born 1 December 1918. Died 24 January 1989. + +At 14, he plays the banjo at dances before being hired by [a799317]. He switches to guitar and becomes the accompanist of [a255535]. In 1941, he joins [a4065782] In 1942, he founded a quartet with [a1001538], then a sextet in 1943. He was the accompanist of [a156406], then [a287785], then [a604563]. + +His notoriety came from his interpretation of gypsy waltzes and his four-beat swing waltzes. + +Younger brother of [a365245] and [a567576]. Cousin of [a1027263]. Father of [a641874] and [a359928].Needs Vote"Matlo" FerretFerretJ. FerretJ. P. FerretJean "Matelo" FerretJean "Matelot" FerretJean FerretJean FerréJean Matelo FerretJean «Matelo» FerretJean «Matlo» FerretM. FerretMateloMatelo FerretMatelo FerréMatelotMatelot FerreMatelot FerretMatelot FerréMatlowP. FerretP. M. FerretP.J. FerretPierre "Matlow" FerretPierre-Jean "Matelo" FerretPierre-Jean "Matelot" FerretMichel Warlop Et Son Septuor A CordesQuintette Du Hot Club De FranceOrchestre Musette "Swing Royal"Michel Warlop Et Son OrchestreGus Viseur Et Son EnsembleGus Viseur Et Son OrchestreGus Viseur's MusicJean Ferret Et Son SixtetteMatelot Ferret Et Son EnsembleSarane Ferret Et Le Swing Quintette De ParisLe Trio FerretJean "Matelot" Ferret & Son Ensemble Guitare-BoogieAndré Ekyan Et Son SwingtetteMatelot Ferret Et Son QuartetteLes Manouches De ParisMatelo Ferret TrioEnsemble Matelo Ferret + +753300Lynne ShermanSinger. + +Was married to [a=Milton Ebbins]. + +Needs VoteCount Basie Orchestra + +753316Sam RandViolinistNeeds VoteSamuel RandCharlie Parker With Strings + +753318Sid HarrisViolinist.Needs VoteS. HarrisS. TarrisSidney HarrisNeal Hefti's Orchestra + +753322Manny FidlerViolinist.Needs VoteMFManny FiddlerManny Fiddler (MF)Neal Hefti's Orchestra + +753333Dave UchitelAmerican violistNeeds VoteDUDavid UchitelDavid Uchitel (DU)Davis UchitelFavid UchitelUchitelVavid UchitelTommy Dorsey And His OrchestraHarry James And His OrchestraCharlie Parker With StringsGeorge Wallington And His Strings + +753336Charlie Parker With StringsCorrectC.Parker With StringsCharlie ParkerCharlie Parker & StringsCharlie Parker And StringsCharlie Parker And The StringsCharlie Parker With Strings (Strings & Big Band)CandidoBuddy RichCharlie ParkerTommy PotterRay BrownOscar PetersonBernie PrivinRoy HaynesAl HaigDanny BankWalter Bishop, Jr.Don LamondFlip PhillipsFreddie GreenMaurice BrownStan WebbArt RyersonArt DrelingerBernie LeightonLou McGarityBill HarrisJimmy MaxwellLou SteinTom MaceBob HaggartMurray WilliamsWill BradleyToots MondelloSam CaplanChris Griffin (3)Mitch MillerHank RossHarry TerrillCarl PooleBart VarsalonaJack ZaydeMax HollanderStan FreemanMilt LomaskMyor RosenJoseph SingerHarry MelnikoffBronislaw GimpelFrank BrieffStanley WebbSam RandDave UchitelZelly SmirnoffWallace McManusSylvan ShulmanStan KarpeniaTed BlumeVerlye MillsFrank Miller (3)Walter YostEdwin C. BrownHoward KayIsadore Zir + +753341Zelly SmirnoffViolinist.Needs VoteKelly SmirnoffS. SmirnoffSmirnoffZiggy SmirnoffColeman Hawkins And His OrchestraNeal Hefti's OrchestraCharlie Parker With Strings + +753342Bobby WoodlenGeorge Robert WoodlenAmerican Jazz and Latin Music trumpet player and composer. + +Born: December 4, 1913 in Baltimore, Maryland +Dead: August 3, 1998 in Gloucester County, VirginiaNeeds Votehttps://books.google.it/books?id=TH_wj7WCaNsC&pg=PA159&lpg=PA159&dq=George+Robert+Woodlen+trumpet&source=bl&ots=IRFEEL9gJg&sig=ACfU3U04F7FGxADc1Mnu_1_OcbEcO67bBA&hl=it&sa=X&ved=2ahUKEwjGwqCt6Mn0AhWRQvEDHaJmCjcQ6AF6BAgUEAM#v=onepage&q=George%20Robert%20Woodlen%20trumpet&f=falseB WoodlenB. WollenB. WoodlanB. WoodlandB. WoodlenBob WoodlenBobby WoodienBobby WoodlanBobby WoodlandBobby Woodlen's Harlem MamboBobby WoodlinG. WoodlandGeorge Robert WoodlenGeorge WoodlenRobert WoodlenWeedlenWoodlanWoodlandWoodlenWoodlesWoodlinWoodlonBobby MaderaMachito And His OrchestraCharlie Parker And His OrchestraBenny Carter And His OrchestraTito Puente And His Orchestra + +753344Sonny SaladCredited as jazz saxophonist.Needs VoteHarold SaladNeal Hefti's Orchestra + +753345Fred RuzillaViolist.Needs VoteFred RuziliaNeal Hefti's Orchestra + +753347Wallace McManusCredited as harp player.Needs VoteMcManusWallace McManuaCharlie Parker With Strings + +753353Sylvan ShulmanAmerican violinist & conductor. +Born c.1912. Brother of cellist [a=Alan Shulman].Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106798/Shulman_SylvanS. SchulmanS. ShulmanShulmanSylvan SchulmanSylvan Shulman's Mood Rhythms OrchestraSylvan ShulmannSylvia ShulmanCharlie Parker With StringsThe Stuyvesant String QuartetNew Friends Of RhythmSylvan Shulman And His OrchestraKreiner String Quartet + +753357Stan KarpeniaCredited as violinist.Needs VoteKarpeniaStank KarpeniaCharlie Parker With Strings + +753360Ted BlumeCredited as vioilinist.Needs VoteBlumeTed BloomTeddy BlumeGene Krupa And His OrchestraCharlie Parker With Strings + +753365Diego IborraDiego "Mofeta" Iborra (b. February 4, 1919 in Camajuaní, Cuba - d. July 27, 2008 in Miami, Florida, USA) was a jazz percussionist.Needs VoteDiega IbarraDiego IbarraTadd Dameron And His OrchestraNeal Hefti's OrchestraOrquesta Riverside + +753366Joe BenaventiCellist.Needs VoteJohn BenaventiNeal Hefti's Orchestra + +753374Chino PozoFrancisco PozoCuban drummer and percussionist (b. October 4, 1915, Havana - d. April 28, 1980, New York City). "Pozo claimed to be the cousin of [a=Chano Pozo], though this has been disputed" (Wikipedia)Needs Votehttp://en.wikipedia.org/wiki/Chino_Pozohttps://adp.library.ucsb.edu/names/208124C. PogoChano PozoChico PozoFrancisco "Chino" PozoFrancisco (Chino) PozoFrancisco PozoPozoDizzy Gillespie And His OrchestraTito Rodriguez & His OrchestraTadd Dameron Septet + +753376Paquito DavillaCredited as trumpeter.Needs VoteP. DavilaPaquito DavilaPaquito DevilaFrank DavillaMachito And His Orchestra + +753381Jerome DarrAmerican jazz guitarist, born 21 December 1910 in Baltimore, USA, died 29 October 1986 in Brooklyn, New York City, USA.Needs Votehttps://adp.library.ucsb.edu/names/310938J. DarrJérôme DarrThe Charlie Parker QuintetThe Washboard SerenadersPaul Quinichette QuartetMarlowe Morris TrioPaul Quinichette All-Stars + +753385Nat NathansonViolist.Needs VoteNathansonNeal Hefti's Orchestra + +753388Leslie JohnakinsAmerican saxophonist. Born October 1, 1911, died October 4, 2005.Needs Votehttps://www.jazzwax.com/2016/09/leslie-johnakins-latin-bari.htmlhttps://de.wikipedia.org/wiki/Leslie_JohnakinsJahnakinJohnakinsL. JohnakinsLelie JohnankinsLes JohanikansLes JohnakinsLesie JohnakinsLesley JohnakinLeslie JohnakingsLeslie JohnhakinsMachito And His OrchestraBillie Holiday And Her OrchestraMachito & His Afro-CubansTaylor's Dixie OrchestraAndy Gibson And His OrchestraMachito And His Salsa Big Band + +753394Ray WetzelAmerican jazz trumpeter, born September 22, 1924 in Parkersburg, West Virginia, died August 17, 1951 in Sedgwick, Colorado ( killed in a car crash). +Worked with Woody Herman, Stan Kenton, Vido Musso, Neal Hefti, Charlie Barnet, Maynard Ferguson,Doc Severinsen, Rolf Ericson and others. +Married [a=Bonnie Wetzel] in 1949. + + +Needs Votehttps://en.wikipedia.org/wiki/Ray_Wetzelhttps://adp.library.ucsb.edu/names/210918R. WetzelR. WetzleR. WitzelR.WetzelRay "Nimrod" WetzelRay WatzelRay WeitzelRay WetzellRay WhetzelRay WitzelTay WetzelWeltzelWetzeWetzelWoody Herman And His OrchestraMetronome All StarsStan Kenton And His OrchestraTeddy Powell And His OrchestraNeal Hefti's OrchestraWoody Herman & The HerdVido Musso And His OrchestraVanderbilt StarsThe Band That Plays The BluesThe Poll Cats + +753550Ben Thomas (3)Benjamin ThomasHard trance artistNeeds VoteBenWid & Ben + +753579Mel LeeDrummer.Needs VoteGerald Wilson OrchestraHarold Land QuintetGerald Wilson Orchestra of The 90's + +753893Thomas GaugerClassical percussionist.CorrectT. GaugerTom GaugerBoston Symphony OrchestraAmerican Percussion Society + +754014Marlis TimpmanClassical violinist.Needs VoteMarlis TimpmannEstonian National Symphony OrchestraEstonian Festival Orchestra + +754113Kenneth MooreAmerican bassoonist (primarily), clarinetist, arranger, conductor, and Professor of Bassoon at [l275380] (1959-1987). +During the World War II, he was a clarinetist in [a6504076] and later played in various Navy bands and ensembles. He conducted many small (mostly wind) ensembles and the [a784714] and [a5001744] at various times during his tenure at Oberlin. +Also avid sailor and bicycling enthusiast. +Born in 1924 in Harrisburg, Pennsylvania, USA - Died March 27, 2012 in The British Virgin Islands. +Needs Votehttps://www.dailyregister.com/article/20120417/news/304179941http://www.bostonrecords.com/kenneth-moore-1/The Cleveland OrchestraOberlin College Conservatory OrchestraHouston Symphony OrchestraThe New Orleans Philharmonic-Symphony OrchestraOberlin Chamber OrchestraThe Band Of The Army Air Corps + +754182Milt YanerMilton YanerAmerican jazz saxophonist, clarinetist and flutist player. + +Born : February 11, 1911 in South Bend, Indiana. +Died : July, 1985 in Henderson, Nevada. + +Yaner played with Jack Chapman's Orchestra, Isham Jones, Ray Noble, Richard Himber, Benny Goodman, Jimmy Dorsey, Raymond Scott, Frank Sinatra, Perry Como, among others.Needs VoteM. YanerM. YanierMilt YanierMilt YannerMilter YanerMilton YanerYanerEnoch Light And The Light BrigadeLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraRay Noble And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraThe Command All-StarsLos AdmiradoresThe Charleston City All-StarsAll Star Alumni OrchestraLou Stein And His OctetEdgar Sampson And His OrchestraHarold Austin's New YorkersAdrian's Ramblers + +754527Joe RockJoseph Vincent RockSongwriter, ASCAP IPI# 26342406. Collaborated with [a=The Skyliners] in 1958, writing "Since I Don't Have You". Managed [a=The Skyliners]; and [a=The Jaggerz]. Born on May 16, 1936 in Pittsburgh, PA; died on April 4, 2000 in Memphis, TN of complications following open heart surgery. Needs Votehttps://www.ascap.com/repertory#ace/writer/26342406/ROCK JOSEPH Vhttps://www.ascap.com/repertory#/ace/writer/26342406/ROCK%20JOSEPH%20VFlockJ RockJ. RochJ. RockJ.RockJoseph RockJoseph RoickJoseph V. RockJosephRockRockRock Jos.Deborah Losak + +754781Andy LittlewoodAndy LittlewoodSongwriter/Producer/VocalistCorrecthttp://www.andylittlewood.com/#http://www.myspace.com/andylittlewoodhttp://www.myspace.com/andylittlewoodmusicA LittlewoodA, LittlewoodA. LittlewoodA.LittlewoodAndrew LittlewoodAndyAndy LAndy L.LittlewoodAngel EyezThe Hardcore Hit SquadIndie-Go Blue + +754894ConcertgebouworkestThe Koninklijk Concertgebouworkest (or Royal Concertgebouw Orchestra) is one of Europe's most famous symphony orchestras. Founded in 1888 in Amsterdam, Netherlands, it was granted its royal status in 1988. +[l302250] own label. [l860292] used for ℗ and ©. [l290290] orchestra concert hall. Acronym KCO. +[b][i]Chief conductors:[/i][/b] +[a2038343] (1888–1895) +[a1015420] (1895–1945) +[a867946] (1945–1959) +[a842238] (1961-1963; co-chief conductor with Bernard Haitink) +[a832917] (1961–1988) +[a784121] (1988–2004) +[a846281] (2004–2015) +[a1089596] (2016–2018) +Needs Votehttps://www.concertgebouworkest.nlhttps://www.facebook.com/Concertgebouworkest/https://www.instagram.com/Concertgebouworkesthttps://x.com/ConcertgbOrkesthttps://en.wikipedia.org/wiki/Royal_Concertgebouw_Orchestrahttps://www.youtube.com/Concertgebouworkesthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102367/Concertgebouworkest"Concert Hall" OrkestAmsterdam ConcertgebouwAmsterdam Concertgebouw Orch.Amsterdam Concertgebouw OrchestraAmsterdam Concertgebouw OrkesterAmsterdam Concertgebouw-OrchesterAmsterdam Philharmonic OrchestraAmsterdam-Concertgebouw OrchesterAmsterdamer Concertgebouw-OrchesterAmsterdamsch Concertgebouw OrkestAmsterdamské FilharmonieBrass And Strings Of The Royal Concertgebouw OrchestraBrass Of The Royal Concertgebouw OrchestraCOAConcert-Gebouw-Orch. AmsterdamConcert-Gebouw-Orchester AmsterdamConcertGebouw Orchestra, AmsterdamConcertbegouw OrchestraConcertgebou OrkesterConcertgebouwConcertgebouw - Orchester, AmsterdamConcertgebouw AmsterdamConcertgebouw Amsterdam OrchesterConcertgebouw Chamber OrchestraConcertgebouw D'AmsterdamConcertgebouw De AmsterdamConcertgebouw Or. Of AmsterdamConcertgebouw OrchConcertgebouw Orch.Concertgebouw Orch. AmsterdamConcertgebouw Orch. Of AmsterdamConcertgebouw OrchesterConcertgebouw Orchester = Concertgebouw Orchestra, AmsterdamConcertgebouw Orchester AmsterdamConcertgebouw Orchester, AmsterdamConcertgebouw OrchestraConcertgebouw Orchestra AmsterdamConcertgebouw Orchestra D' AmsterdamConcertgebouw Orchestra De AmsterdãConcertgebouw Orchestra Of AmsterdamConcertgebouw Orchestra Of AmsterdamaConcertgebouw Orchestra de AmsterdãConcertgebouw Orchestra of AmsterdamConcertgebouw Orchestra*Concertgebouw Orchestra,Concertgebouw Orchestra, AmsterdamConcertgebouw Orchestra, AMsterdamConcertgebouw Orchestra, AmsterdamConcertgebouw Orchestra. AmsterdamConcertgebouw OrkestConcertgebouw Orkest AmsterdamConcertgebouw OrkesterConcertgebouw Orkester AmsterdamConcertgebouw Orkester, AmsterdamConcertgebouw Orkestra, AmsterdamConcertgebouw OrkestretConcertgebouw Orkestret (Amsterdam)Concertgebouw d'AmsterdamConcertgebouw ▪ Orchester AmsterdamConcertgebouw-Orch. AmsterdamConcertgebouw-OrchesterConcertgebouw-Orchester = Concertgebouw Orchestra, AmsterdamConcertgebouw-Orchester AmsterdamConcertgebouw-Orchester, AmsterdamConcertgebouw-Orchester, Amsterdam / Solisten Und ChöreConcertgebouw-Orchester, Amsterdam*Concertgebouw-OrchestraConcertgebouw-Orchestra AmsterdamConcertgebouw-Orchestra, AmsterdamConcertgebouw-OrkestConcertgebouw-Orkest AmsterdamConcertgebouw-Orkest, AmsterdamConcertgebouw-Orkester AmsterdamConcertgebouw-Orkester, AmsterdamConcertgebouw-OrkesternConcertgebouw-orchester AmsterdamConcertgebouw-orchester, AmsterdamConcertgebouworchester, AmsterdamConcertgebouworchestraConcertgebouworchestra AmsterdamConcertgebouworchestra, AmsterdamConcertgebouworkest AmsterdamConcertgebouworkest OrchestraConcertgebouworkest Orchestra of AmsterdamConcertgebouworkest Orchestra, AmsterdamConcertgebouworkest, AmsterdamConcertgebouworkestret, AmsterdamConcertgebow OrchestraConcetgebouw OrchestraConzert-Gebouw OrchesterConzert-Gebouw-Orchester AmsterdamConzertgebouw-Orchester, AmsterdamDas Concertgebouw Orchester, AmsterdamDas Concertgebouw OrchesterDas Concertgebouw Orchester AmsterdamDas Concertgebouw Orchester, AmsterdamDas Concertgebouw- Orchester, AmsterdamDas Concertgebouw-OrchesterDas Concertgebouw-Orchester (Amsterdam)Das Concertgebouw-Orchester AmsterdamDas Concertgebouw-Orchester, AmsterdamDas Concertgebouw-Orchester, AmsterdamDas Concertgebouw-OrchestraDas Concertgebouw-orchester, AmsterdamHet Concertgebouw OrkestHet Concertgebouw Orkest AmsterdamHet Concertgebouw Orkest, AmsterdamHet Concertgebouw-OrkestHet ConcertgebouworkestHet Concertgebouworkest AmsterdamHet Koninklijk ConcertgebouwHet Koninklijk ConcertgebouworkestHis Concertgebouw OrchestraKon. ConcertgebouworkestKonbinklijk ConcertgebouworkestKoncertgebau Orkestar Iz AmsterdamaKoncertgebau Orkestar, AmsterdamKoncertgebau-OrkestarKoncertgebau-Orkestar AmsterdamKoncertgebouw-Orchester AmsterdamKoninklijk Concertgebouw OrkestKoninklijk ConcertgebouworkestKoninklijk Concertgebouworkest AmsterdamKoninlijk ConcertgebouworkestKonzertgebouw OrchesterKonzertgebouw Orchester, AmsterdamKonzertgebouw Orchester-AmsterdamKonzertgebouw-OrchesterKonzertgebouw-Orchester AmsterdamKonzertgebouw-Orchester, AmsterdamKönigliches Concertgebouw Orchester, AmsterdamL'Orchestre Du ConcertgebouwL'orchestre Du Concertgebouw D'AmsterdamLa Concertgebouw De AmsterdamLa Orquesta Concertgebouw De AmsterdamLa Orquesta Del Concertgebouw De AmsterdamLe Célèbre Orchestre Des Concertgebouw D'AmsterdamLeden van het ConcertgebouworkestMembers Of The Amsterdam Concertgebouw OrchestraMembers Of The Concertgebouw OrchestraMembers Of The Concertgebouw Orchestra, AmsterdamMembers Of The ConcertgebouworkestMembers Of The Royal Concertgebouw OrchestraMembers of the Amsterdam Concertgebouw OrchestraMembers of the Royal Concertgebouw OrchestraOrch. Concertgebouw Di AmsterdamOrch. Del Concertgebouw Di AmsterdamOrch. Royal Du ConcertgebouwOrchesta Del Concertgebouw De AmsterdamOrchesta Di Concertgebow Di AmsterdamOrchester D. Amsterdamer KonzertgebäudesOrchestr Amsterodamské FilharmonieOrchestraOrchestra "Concertgebouw" din AmsterdamOrchestra ConcertgebouwOrchestra Concertgebouw Din AmsterdamOrchestra Dei Concertgebouw Di AmsterdamOrchestra Del ConcertgebouwOrchestra Del Concertgebouw DI AmsterdamOrchestra Del Concertgebouw Di AmsterdamOrchestra Del Concertgebouw di AmsterdamOrchestra Konzertgebouworkest Di AmsterdamOrchestra Of The Royal ConcertgebouwOrchestra del Concertgebouw di AmsterdamOrchestra of the Royal ConcertgebouwOrchestreOrchestre De Concertgebouw D'AmsterdamOrchestre Del Concertgebouw Di AmsterdamOrchestre Du Concertgebouw D'AmsterdamOrchestre Du Concertebouw d'AmsterdamOrchestre Du ConcertgebouwOrchestre Du Concertgebouw AmsterdamOrchestre Du Concertgebouw D' AmsterdamOrchestre Du Concertgebouw D'AmsterdamOrchestre Du Concertgebouw D'amsterdamOrchestre Du Concertgebouw D'msterdamOrchestre Du Concertgebouw D`AmsterdamOrchestre Du Concertgebouw D’AmsterdamOrchestre Du Concertgebouw d' AmsterdamOrchestre Du Concertgebouw d'AmsterdamOrchestre Du Concertgebouw, AmsterdamOrchestre Du Concertgebow AmsterdamOrchestre Du concertgebouw D'AmsterdamOrchestre Royal Du ConcertgebouwOrchestre Royal Du Concertgebouw D'AmsterdamOrchestre Royal Du Concertgebouw d'AmsterdamOrchestre Royal du ConcertgebouwOrchestre Royal du Concertgebouw d'AmsterdamOrchestre du ConcertgebouwOrchestre du Concertgebouw D'AmsterdamOrchestre du Concertgebouw d'AmsterdamOrchestre du Concertgebouw d'Amsterdam*Orchestre du Concertgebouw d'AsterdamOrchestre du Concertgebouw d’AmsterdamOrq. Del Concertgebouw De AmsterdamOrqestra Do Concertgebouw De AmsterdamOrquesta Concertgebouw De AmsterdamOrquesta Concertgebouw, De AmsterdamOrquesta De Concertgebouw De AmsterdamOrquesta De Concertgebouw, De AmsterdamOrquesta De Conciertos De AmsterdamOrquesta Del "Concertgebouw", De AmsterdamOrquesta Del Concertbouw De AmsterdamOrquesta Del ConcertgebouwOrquesta Del Concertgebouw (Amsterdam)Orquesta Del Concertgebouw De AmstedramOrquesta Del Concertgebouw De AmsterdamOrquesta Del Concertgebouw De Amsterdam*Orquesta Del Concertgebouw De ÁmsterdamOrquesta Del Concertgebouw Orchestra (Amsterdam)Orquesta Del Concertgebouw de AmsterdamOrquesta Del Concertgebouw e AmsterdamOrquesta Del Concertgebouw, AmsterdamOrquesta Del Concertgebouw, De AmsterdamOrquesta Del Concertgebouw, De AmsterdanOrquesta Del Concertgebow De AmsterdamOrquesta Del Real Concertgebouw De AmsterdamOrquesta Del Royal ConcertgebouwOrquesta Do ConcertgebouwOrquesta Do Concertgebouw De AmsterdamOrquesta Real Del Concertgebouw De AmsterdamOrquesta de Conciertos de AmsterdamOrquesta del ConcertgebouwOrquesta del Concertgebouw (Amsterdam)Orquesta del Concertgebouw de AmsterdamOrquesta del Concertgebouw de ÁmsterdamOrquestra Concertgebouw De AmsterdãOrquestra Concertgebouw de AmsterdãOrquestra De Concertgebouw De AmsterdamOrquestra De Concertgebouw, AmsterdãoOrquestra Del Concertgebouw De AmsterdamOrquestra Do ConcertgebouwOrquestra Do Concertgebouw - AmsterdamOrquestra Do Concertgebouw AmsterdamOrquestra Do Concertgebouw D'AmsterdamOrquestra Do Concertgebouw De AmsterdamOrquestra Do Concertgebouw De AmsterdãoOrquestra Do Concertgebouw, AmsterdamOrquestra Do Concertgebouw, AmsterdãoOrquestra de Concertgebouw AmsterdãoOrquestra do Concertgebouw De AmsterdamPercussion Group From The Amsterdam Concertgebouw OrchestraRCGORCORCOAReal Orquesta De ConcertgebouwReal Orquesta Del ConcertgebouwReal Orquesta Del Concertgebouw, AmsterdamReal orquesta Del ConcertgebouwRoll Concertgebouw OrchestraRoyal Concergebouw OrchestraRoyal Concert gebouw OrchestraRoyal ConcertgebouwRoyal Concertgebouw OrchesRoyal Concertgebouw OrchesterRoyal Concertgebouw Orchester, AmsterdamRoyal Concertgebouw Orchestera, AmsterdamRoyal Concertgebouw OrchestraRoyal Concertgebouw Orchestra AmsterdamRoyal Concertgebouw Orchestra Of AmsterdamRoyal Concertgebouw Orchestra,Royal Concertgebouw Orchestra, AmsterdamRoyal Concertgebouw Orchestra, Amsterdam,Royal Concertgebouw Orchestra, TheRoyal Concertgebouw OrkestRoyal ConcertgebouworchestraRoyal Concertgebow OrchestraRoyal Concertgehouw Orchestra AmsterdamRoyal Concertogebouw OrchestraRoyal Koncertgebouw Orchestra AmsterdamRoyal concertgebouw OrchestraRoyal concertgebouw OrkestSolistenensemble des Concertgebouw Orchestra AmsterdamSoloists Of The Royal Concertgebouw OrchestraString Section Of The Concertgebouw OrchestraSymphony OrchestraThe Amsterdam Concertgebouw OrchestraThe ConcertgebouwThe Concertgebouw - Orchestra (Amsterdam)The Concertgebouw Or. Of AmsterdamThe Concertgebouw Orch. Of AmsterdamThe Concertgebouw OrcherstraThe Concertgebouw OrchestraThe Concertgebouw Orchestra of AmsterdamThe Concertgebouw Orchestra (Amsterdam)The Concertgebouw Orchestra / AmsterdamThe Concertgebouw Orchestra AmsterdamThe Concertgebouw Orchestra Of AmsterdamThe Concertgebouw Orchestra of AmesterdamThe Concertgebouw Orchestra of AmsterdamThe Concertgebouw Orchestra, AmsterdamThe Concertgebouw-Orchester AmsterdamThe Concertgebouw-OrchestraThe Concertgebouw-Orchestra (Amsterdam)The Concertgebouw-Orchestra AmsterdamThe Concertgebouw-Orchestra, AmsterdamThe Concertgebow Orchestra AmsterdamThe Concertgebrew OrchestraThe Royal Concertgbouw Orchestra Of AmsterdamThe Royal Concertgbouw Orchestra of AmsterdamThe Royal ConcertgebouwThe Royal Concertgebouw OrchestraThe Royal Concertgebouw Orchestra Of AmsterdamThe Royal Concertgebouw Orchestra, AmsterdamV Concertgebouw Orchestra, Amsterdamconcertgebouw Orchestra, AmsterdamАмстердамский Оркестр "Концертгебау"Амстердамский Симфонический Оркестр "Concertgebouw"Амстердамский Симфонический Оркестр «Concertgebouw»Амстердамский оркестр "Консертгебау"Королевский Оркестр КонцертгебоуОркестр «Концертгебау»Оркестр Под Упр. В. Менгельбергаアムステルダム·コンセルトへボウ管弦楽団アムステルダム・コセルトヘボウ管弦楽団アムステルダム・コンセルトヘボウ管弦楽団アムステルダム・コンセルト・管弦楽団アムステルダム・ロイヤル・コンセルトヘボウ管弦コンセルトヘボウ管弦楽団ロイヤル・ケンセルトヘボウ管弦楽団ロイヤル・コンセルトヘボウ管弦楽団ロイヤル・コンセルトヘボウ管弦楽団王立アムステルダム・コンセルトヘボウ管弦楽団De Lagerwieder Kontra PuntersPeter MasseursPeter PrommelMaaike AartsEdo de WaartJane PiperDominic SeldisJulia TomRoger BoboJoep TerweyKarl SchoutenJacques ZoonJaap van ZwedenEugen JochumMariss JansonsJan HarshagenBernard BartelinkVesko EschkenazyEduard van BeinumHubert BarwahserJeroen WoudstraJacob SlagterRonald KartenJacco GroenendijkConcertgebouw Chamber OrchestraBrian PollardAnner BylsmaAlexei OgrintchoukGustavo NúñezEmily BeynonHenk RubinghHan de VriesJan KoetsierLiviu PrunaruNick WoudKarel BoeschotenGeorge PietersonNico SchippersJohan KrachtConcertgebouw ChorusWillem MengelbergGuus DralDaniele GattiJacques MeertensHerman KrebbersJacob KrachmalnickGuus JeukendrupRuud WelleDaniel EsserMichael GielerMarijke Smit SibingaTheo OlofJean DecroosCarel van Leeuwen BoomkampGert Jan LeuverinkJanny Van WeringLeo Van Der LekJo JudaJacques HoltmanGodfried HoogeveenFred NijenhuisDijck KosterFrederick EdelenCarlo RavelliRuth VisserBert LangenkampJean RaffardLeo OostdamHåkan EhrénJan KouwenhovenEdith van MoergastelGerda OckersJaap van der VlietBorika Van Den BoorenHaakon StotijnWillem KesDolf BettelheimCees van der KraanAlexander KerrHenk GuldemondHerman RiekenJasper de WaalRob DirksenMaartje-Maria den HerderJörgen van RijenJos De LangeJosé Luis Sogorb JoverJoris Van Den Berg (2)Michael WatermanHein WiedijkMarleen AsbergAnna De Vey MestdaghNicoline AltGijs BethsJeroen QuintJan Damen (2)Klaas BoonHenriette LuytjesHasso van der WestenSharon St. OngeBart ClaessensRaymond MunnecomPerry HoogendijkHans AltingFrederik BoitsKen HakiiPeter SteinmannMartin SchippersMarinus KomstTatjana VassiljevaHani SongMartina ForniLouis ZimmermannFons VerspaandonkChristian van EggelenJan HulstMarc Daniel Van BiemenGregor HorschSanta VižineSjaan OomenSamuel BrillUrsula SchochKeiko IwataMiroslav PetkovPaul Peter SpieringRoland KrämerArthur OomensBenedikt EnzlerJohan van IerselRoland KofloffHerre HalbertsmaLaurens WoudenbergAlbert FransellaKaty WoolleyOlivier Patey (2)Giuliano SommerhalderKersten McCallMirte de KokSanne HunfeldMarijn MijndersCaroline StrumphlerPaulien WeierinkPetra Van Der HeideJeroen BalYoko KanamaruArno PitersHonorine SchaefferVincent CortvrintBenjamin PeledCalogero PalermoAnneleen SchuitemakerAlfred IndigIvan PodyomovJunko Naito (2)Simon Van HolenMirelys Morgan VerdeciaSylvia HuangPierre-Emmanuel de MaistreOlivier Thiery (2)Miriam Olga Pastor BurgosDennis NottenChamber Music Society of AmsterdamTomoko KuritaKirsti GoedhartSaeko OgumaAndrea CellacchiChris van BalenJoanna WestersDavide LattuadaAlexandre BatyJérôme FruchartNienke van RijnTjeerd TopValentina SvyatlovskayaMark BraafhartClément PeignéSimen FegranOmar TomasoniLéo GenetCoraline GroenLeonie BotMarietta FeltkampNicholas SchwartzEva Smit (2)Tomohiro AndoJae-Won Lee (2)Alessandro Di GiacomoCaspar HorschVilém Kijonka (2)Christian Hacker (3)Julie Moulin (2) + +754953James SommervilleCanadian horn player and conductor.Needs VoteBoston Symphony OrchestraThe Chamber Orchestra Of EuropeToronto Symphony OrchestraOrchestre symphonique de MontréalBoston Symphony Chamber PlayersSymphony Nova ScotiaI Musici De Montréal + +754954Gerhard TuretschekGerhard TuretschekOboe player and teacher at the Vienna Music School and in Graz. Played in Austria's most important Orchestras and Ensembles. + +He was born 1943 in Vienna, Austria. +Needs VoteG, TuretschekG. TuretschekGerhard TuretscheckTuretschekWiener PhilharmonikerWiener BläsersolistenBläservereinigung Der Wiener PhilharmonikerAustro-Hungarian Haydn OrchestraEnsemble Eduard Melkus + +754955Clemens HagenClassical cellist, born 3 July 1966 in Salzburg, Austria. He comes from a musical family, began to learn the cello at the age of six, and plays an instrument made by [a=Antonio Stradivari], dating from 1698.Needs Votehttps://de.wikipedia.org/wiki/Clemens_HagenHagenHagen QuartettKremerata Musica + +754956Volker AltmannGerman hornist and teacher of chamber music for wind instruments at the Universität für Musik und darstellende Kunst Graz. He was born 1943 in Jena, Germany and is the brother of [a917610].Needs Votehttp://volker.altmann.at/V. AltmannVolker AltmanWiener PhilharmonikerWiener BläsersolistenCamerata Academica SalzburgBläservereinigung Der Wiener PhilharmonikerMOB Art & Tone Art EnsembleWiener Mozart-Bläser + +754957Hagen QuartettAustrian string quartet founded in 1981 and based in Salzburg.Needs Votehttps://en.wikipedia.org/wiki/Hagen_QuartetHagen QuartetHagen-QuartettHagenkvintettenMembers Of The Hagen QuartetMitglieder Des Hagen QuartettQuatuor HagenThe Hagen QuartetVerdiハーゲン弦楽四重奏団Annette BikClemens HagenRainer SchmidtLukas HagenVeronika HagenAngelika Hagen + +754958Matthew WilkieMatthew WilkiePrincipal Bassoon of the [b]Sydney Symphony Orchestra[/b] and [b]Chamber Orchestra of Europe[/b].Needs VoteWilkieCamerata Academica SalzburgThe Chamber Orchestra Of EuropeSydney Symphony Orchestra + +754959Rainer SchmidtGerman violinist and music professor, born in 1964.CorrectHagen QuartettRavinia TrioBundesjugendorchester + +754960Henry MeyerHenry W. MeyerGerman-born American violinist, born 1923 in Dresden, Germany and died 18 December 2006 in Cincinnati, Ohio, USA.Needs Votehttps://de.wikipedia.org/wiki/Henry_Meyer_(Musiker)Heinz MeyerHenry Mayer mit seinem Tanzorchester und ChoirHenry W. MeyerMeyerヘンリー・メイヤーLasalle Quartet + +754961Jack KirsteinJack Kirstein (15 February 1921 - 4 August 1996) was an American cellist. A member of the [a754978] from 1955 to 1975.Needs Voteジャック・カースティンLasalle Quartet + +754962Peter KamnitzerPeter Kamnitzer (born November 27, 1922, Berlin, Germany - died February 23, 2016, Israel) was a German-born American violist. He emigrated to the United States in 1941 and was a member of the [a754978] from 1947 until his retirement in 1988.Needs VotePeter Kamnitzペーター・カムニッツァーLasalle QuartetSan Antonio Symphony Orchestra + +754963Fritz FaltlAustrian bassoon player, born 15 June 1941 in Vienna, Austria.Needs VoteFaltlFriedrich FaltlOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenWiener KammerensembleHofmusikkapelle WienEnsemble Eduard MelkusWiener Oktett + +754965Walter LevinErnst Walter LevinWalter Levin (born December 6, 1924, Berlin, Germany – died August 4, 2017, Chicago, Illinois, USA) was a German-born American violinist and educator. In 1947 he founded the [a754978] for which he served as first violin.Needs Votehttps://en.wikipedia.org/wiki/Walter_Levinhttps://de.wikipedia.org/wiki/Walter_LevinWalter Levineウォルター・レヴィンLasalle Quartet + +754967Lukas HagenLukas Johannes HagenAustrian classical violinist and pedagogue, born May 8, 1962 in Salzburg. He's the brother of [a754955], [a754970] and [a4352059].Needs VoteLukasHagen QuartettThe Chamber Orchestra Of Europe + +754968Peter SchmidlAustrian clarinetist, born 10 January 1941 in Olomouc. Czech Republic. +Died 1 February 2025.Needs Votehttps://en.wikipedia.org/wiki/Peter_Schmidlhttps://www.imdb.com/name/nm6016375/Schmidlペーター・シュミードルWiener PhilharmonikerWiener BläsersolistenEnsemble Eduard MelkusWiener OktettWiener Ring EnsembleNew Vienna Octet + +754970Veronika HagenAustrian classical violist, born May 5, 1963 in Salzburg.Needs Votehttps://en.wikipedia.org/wiki/Veronika_Hagenhttps://de.wikipedia.org/wiki/Veronika_HagenHagenHagen QuartettKremerata Musica + +754971Richard HosfordBritish clarinetist, born in Dorset.Needs VoteLondon Philharmonic OrchestraBBC Symphony OrchestraThe Chamber Orchestra Of EuropeThe Nash EnsembleThe Gaudier EnsembleLondon Conchord Ensemble + +754974Wiener PhilharmonikerThe Vienna Philharmonic Orchestra was founded on March 28, 1842, by [a=Otto Nicolai] (Carl Otto Ehrenfried Nicolai), the German composer. +Regarded as one of the world's leading orchestras, its members are recruited from [a696188]. +See also [a17208040].Needs Votehttps://www.wienerphilharmoniker.at/en/https://en.wikipedia.org/wiki/Vienna_Philharmonichttps://www.sonyclassical.com/artists/artist-details/wiener-philharmoniker-1https://www.imdb.com/name/nm1168453/https://www.imdb.com/search/title/?companies=co0056253https://www.x.com/Vienna_Philhttps://www.facebook.com/ViennaPhilharmonichttps://www.instagram.com/viennaphilharmonic/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103095/Wiener_PhilharmonikerBečka Filhar.Bečka FilharmonijaBečki FilharmoničarBečki FilharmoničariBläservereinigung der Wiener PhilharmonikerBécsi FilharmonikusokCoro E Orchestra Della Filarmonica Di ViennaCuerdas de VienaDas Grosse Philharmonische Orchester WienDas Wiener Philharmonische OrchesterDe Wiener PhilharmonikerDie WIener PhilharmonikerDie Wiener PhilharmonikerFilarmonica De VienaFilarmonica Di ViennaFilarmonica Din VienaFilarmonica de VienaFilarmonica di ViennaFilarmónica De VienaFilarmónica de VienaFilarmônica De VienaFilharmoników WiedenskichGrand Orchestre Philharmonique De VienneHet Philharmonia OrkestKammerorchester Der Wiener PhilharmonikerL'Orchestra Filarmonica Di ViennaL'Orchestra Filarmonica di ViennaL'Orchestra Filharmonica Di ViennaL'Orchestre Philharmonique De VienneL'Orchestre Philharmonique de VienneL'orchestre Philharmonique de VienneLa Orquesta Filarmonica De VienaLa Orquesta Filarmonica VienaLa Orquesta Filarmónica De VienaLa Orquesta Filarmónica de VienaLas Cuerdas De VienaLeden Van De Wiener PhilharmonikerLeden der Wiener PhilharmonikerMembers Of The Vienna PhilharmonicMembers Of The Vienna Philharmonic OrchestraMembers Of The Vienna Philharmonic Orchestra = ウィーン・フィルハーモニー管弦楽団員Members Of Vienna Philharmonic OrchestraMiembros De La Orquesta Filarmonica De VienaMitglieder Der Wiener PhilharmonikerMitglieder der Wiener PhilharmonikerNew Philharmonic Orchestra Of ViennaOFVOchestra Sinfonica Di ViennaOrch. Fil. Di ViennaOrch. Filarm. Di ViennaOrch. Filarmonica Di ViennaOrch. Phil. De VienneOrch. Philharmonique De VienneOrchesta Filarmónica De VienaOrchester Der Wiener PhilharmonikerOrchestr Vídeňské Státní OperyOrchestraOrchestra Filarmonica Di ViennaOrchestra Dei Wiener PhilharmonikerOrchestra Filarmonia Di ViennaOrchestra Filarmonica Di ViennaOrchestra Filarmonica di ViennaOrchestra Filarmonicii Din VienaOrchestra Filarmonică Din VienaOrchestra Filharmonica di ViennaOrchestra Of The Vienna PhilharmonicOrchestra Of The Vienna State OperaOrchestra Philharmonica Di ViennaOrchestra Sinfonica Di ViennaOrchestra Sinfonica di ViennaOrchestra Wiener PhilharmonikerOrchestra dei Wiener PhilharmonikerOrchestra of ViennaOrchestra „Filarmonică“ Din VienaOrchestra „Filarmonică“ din VienaOrchestre D'État De VienneOrchestre De VienneOrchestre National De VienneOrchestre National Philharmonique De VienneOrchestre National de VienneOrchestre Philarmonique De VienneOrchestre Philarmonique de VienneOrchestre Philarmonique de vienneOrchestre Philh. De VienneOrchestre Philhamonique De VienneOrchestre Philharmonique De VienneOrchestre Philharmonique VienneOrchestre Philharmonique de VienneOrchestre Symphonique De VienneOrchestre philharmonique de VienneOrchestre philharmonique de vienneOrchestres Philharmoniques De VienneOrchestré Philharmonique de VienneOrkestar Beckim FilharmonicaraOrkestar Bečke FilharmonijeOrkestar Bečke Filharmonije I Zbor Bečke OpereOrkestrom Bečke FilharmonijeOrq. Filarmónica De VienaOrquerste Philarmoniqe De VienneOrquesta De La Filarmonica De VienaOrquesta De La Filarmonica de VienaOrquesta Filarmonica De VienaOrquesta Filarmonica De Viena = Vienna Philharmonic OrchestraOrquesta Filarmonica VienaOrquesta Filarmonica de VienaOrquesta Filarmonica de vienaOrquesta Filarmoníca De VienaOrquesta Filarmónia de Vienna = Wiener PhilharmonikerOrquesta Filarmónica De VIenaOrquesta Filarmónica De VienaOrquesta Filarmónica De Viena*Orquesta Filarmónica de VienaOrquesta Filarmóníca De VienaOrquesta Filharmonica de VienaOrquesta Filármonica De VienaOrquesta Sinfonica De VienaOrquesta Sinfonica de VienaOrquesta Sinfónica De VienaOrquesta Sinfónica de VienaOrquestra Concerto De VienaOrquestra Filamônica De ViennaOrquestra Filarmonica De VienaOrquestra Filarmonica de VienaOrquestra Filarmónica De VienaOrquestra Filarmónica de VienaOrquestra Filarmônica De LondresOrquestra Filarmônica De VienaOrquestra Filarmônica NacionalOrquestra Filarmônica de VienaOrquestre Philarmonique De ViennePhilarmonique de ViennePhilharmonia OrchestraPhilharmonia Orchestra, ViennaPhilharmonicPhilharmonic OrchestraPhilharmonic Orchestra Of ViennaPhilharmonic Orchestra ViennaPhilharmonicaPhilharmonie De ViennePhilharmonikerPhilharmonique De VienneThe V.P.O.The Vienna OrchestraThe Vienna Phil. Orch.The Vienna Philahrmonic OrchestraThe Vienna Philarmonic Orch.The Vienna Philarmonic OrchestraThe Vienna Philhamonic OrchestraThe Vienna PhilharmoniaThe Vienna Philharmonia OrchestraThe Vienna PhilharmonicThe Vienna Philharmonic (Wiener Philharmoniker)The Vienna Philharmonic OrchThe Vienna Philharmonic Orch.The Vienna Philharmonic OrchestraThe Vienna Philharmonic Orchestra (Members)The Vienna Philharmonic Orchestra And ChorusThe Vienna Philharmonic Orchestra.The Vienna Philharmonica OrchestraThe Vienna Philharmonics Symphony OrchestraThe Vienna Philharominc OrchestraThe Vienna Phlharmonic OrchestraThe Vienna State PhilharmonicThe Wiener PhilharmonikerThe Wienna PhilharmonicV.P.O.VIenna Philharmonic OrchestraVPOVeliki Bečki Filharmonijski OrkestarVenna PhilharmonicViener PhilharmonikerViennaVienna OrchestraVienna POVienna Phil OrchVienna Phil.Vienna Phil. OrchestraVienna PhilarmonicVienna Philarmonic OrchestraVienna Philhamonic OrchestraVienna Philhaomonic OrchestraVienna Philharminc OrchestraVienna Philharmoic OrchestraVienna PhilharmoniVienna PhilharmoniaVienna Philharmonia OrchestraVienna PhilharmonicVienna Philharmonic OrchestraVienna Philharmonic - Wiener PhilharmonikerVienna Philharmonic = Wiener PhilharmonikerVienna Philharmonic Choir & OrchestraVienna Philharmonic OperaVienna Philharmonic OrcestraVienna Philharmonic Orch.Vienna Philharmonic OrchestraVienna Philharmonic Orchestra And ChorusVienna Philharmonic Orchestra · Wiener PhilharmonikerVienna Philharmonic Orchestra*Vienna Philharmonic Orchestra,Vienna Philharmonic Orchestra, TheVienna Philharmonic OrchestrraVienna Philharmonic OrhestraVienna Philharmonic Wind GroupVienna Philharmonic orchestraVienna Philharmonic · Wiener PhilharmonikerVienna Philharmonic/Wiener PhilharmonikerVienna Philharmonica OrchestraVienna Philharmonie OrchestraVienna PhilharmonikVienna Philharmonio OrchestraVienna Philharmusic OrchestraVienna Philharmusica OrchestraVienna State Phil. Orch.Vienna State PhilharmoniaVienna Symphony OrchestraVienne Philarmonic OrchestraVienne Philharmonic OrchestraVídeňské PhilharmonieVídeňští FilharmonikovéVídeňští filharmonikovéWPWPOWeens Filharmonisch OrkestWeens Philharmonisch OrkestWeiner PhilharmonikerWien Filharmoniske OrkesterWiener Concert-OrchesterWiener FilharmonikerneWiener Konzert-OrchesterWiener Orch.Wiener Phil.Wiener PhilarmonikerWiener Philh.Wiener Philhar. OrchesterWiener Philharm. OrchesterWiener PhilharmoniaWiener PhilharmonicWiener Philharmonic OrchestraWiener PhilharmonieWiener Philharmonie-OrchesterWiener PhilharmonierWiener PhilharmonikaWiener Philharmoniker = Orquesta Filarmónica de VienaWiener Philharmoniker = Vienna PhilharmonicWiener Philharmoniker OrchestraWiener Philharmoniker · Filarmonica De VienaWiener Philharmoniker · Vienna PhilharmonicWiener Philharmoniker • Vienna PhilharmonicWiener PhilharmonikernWiener Philharmonisch. OrchesterWiener Philharmonische OrchesterWiener Philharmonisches OrchesterWiener Royal Philarmonic OrchestraWiens Filharmoniska OrkesterWiens Filharmoniske OrkesterWr. PhilharmonikerYhe Vienna Philharmonic Orchestral’Orchestre Philharmonique Du VienneΦιλαρμονική Ορχήστρα ΒιέννηςΦιλαρμονική Ορχήστρα Της ΒιέννηςБечка ФилхармонијаВенская ФилармонияВенский Филармонический Оркестр П. МонтэВенский Филарм. Орк.Венский Филарм. ОркестрВенский Филармонический Орк.Венский Филармонический ОркестрВенский Филармонический Оркестр (?)Венский Филармонический Оркестр П. МонтэВенский Филармонический орк.Венский Филармонический оркестрВенский Филармоничнский ОркестрВенский филармонический оркестрОркестр Венской ФилармонииОркестр Венской ФилармрнииОркестр П/у Г. КнаппертсбушаОркестр, Хор И Солисты Венской Филармонииウィーフィル・フィルハーモニー管弦楽団ウィーン•フィルハーモニー管弦楽団ウィーン・フィルウィーン・フィルハーモニック管弦團ウィーン・フィルハーモニック管弦楽団ウィーン・フィルハーモニーウィーン・フィルハーモニー管弦楽団ウィーン・フィルハーモーニー管弦楽団ウィーン交響楽団ウィーン歌劇場管弦楽団ウィーン・フィルハーモニー管弦楽団ウイーン・フィルハーモニー管弦楽団ウイーン・フィルハーモニー管弦楽団維也納愛樂管絃樂團비엔나 필하모닉 오케스트라Danube Symphony OrchestraClaudio AbbadoAlois PoschRobert TucciMembers Of The Wiener PhilharmonikerWilli BoskovskyGerhard TuretschekVolker AltmannFritz FaltlPeter SchmidlWolfgang SchusterRobert ScheiweinJohannes WildnerErnst OttensamerWerner KrennAlexander WundererThomas FheodoroffWalter WellerKarl Heinz SchützKurt PrihodaRoland AltmannWolfgang HerzerHerbert MayrGerhard MarschnerMartin KubikAnna LelkesCharlotte BalzereitWilhelm MerglMarie WolfCharly GaudriotHans FischerKarl GruberGottfried HechtlJohann KrumpNikolaus HübnerGünther BreitenbachRudolf ScholzOtto StrasserRudolf StrengGerhart HetzelJosef StaarErich BinderFriedrich DolezalMario BeyerManfred HoneckDietfried GürtlerWerner HinkCamillo WanausekAlfred PlanyavskyWolfgang PoduschkaRudolf JoselAdalbert SkocicAlfred PrinzPaul GuggenbergerPeter GötzelGottfried MartinWolfgang Schulz (3)Günter HögnerRainer KüchlWerner TrippJosef MolnarWalter SingerHelmut WeisAlfred StaarLudwig BeinlRichard HarandRoland BergerHerbert ManhartDietmar ZemanHans-Peter OchsenhoferHelmut WobischGünter PichlerKlaus MaetzlHarald KautzkyEmanuel BrabecJosef SivoBläservereinigung Der Wiener PhilharmonikerHugo RiesenfeldHans GanschMeinhart NiedermayrPeter PechaFriedrich GablerErich WeisAnton KamperLeopold WlachPaul FürstAlfred BoskovskyAnton FietzHeinrich KollWalter LehmayerFranz BartolomeyMichael WerbaLars Michael StranskyMichael BladererAlfred DutkaDaniel GaedeKlaus ZaunerFranz KvardaKarl Maria TitzeAlfred RoséGottfried BoisitsWolfgang RühmCamillo OehlbergerGünter LorenzChristian CubaschJosef KondorWerner ReselHarald HörthRainer HoneckEckhard SeifertPeter WächterWilhelm HübnerWillibald JanezicClemens HellsbergManfred TacheziEduard LaryszEduard BicanJosef HadrabaThomas HajekWolfgang TomböckJosef NiedermayrOtto RühmOtto NitschRudolf JettelHans BergerFelix EyleXavier de MaistreWolfgang KlosWilfried RehmJan PospichalEdward KudlakChristof HuebnerHerbert SzaboRudolf HanzlJosef VelebaPhilipp MatheisOthmar BergerThomas JöbstlWolfgang KoblitzRonald JanezicStepan TurnovskyWolfgang VladarMartin GabrielAlexander ÖhlbergerAndreas WieserRobert Nagy (3)Dieter FluryMartin LembergKarl StieglerIan BousfieldKarl MayrhoferGünter SeifertTamás VargaMark GaalHorst HajekWalter BarylliFranz BartosekHans KameschLudwig StreicherGünter FederselPéter SomodariVolkhard SteudeErich SchagerlAlfons EggerReinhold SieglHugo KreislerFriedrich PfeifferDaniela IvanovaGustav SwobodaErich Graf (2)Anneleen LenaertsJosef HellJosef PombergerRichard HochrainerRaphael FliederGerald SchubertFerdinand StanglerShkëlzen DoliRené StaarDaniel OttensamerTibor KováčThilo FechnerÖdön RáczAdolf HollerWolfgang StrasserFranz Koch (4)Karl StumpfKarl StierhofBurkhard KräutlerFranz SöllnerJohannes TomboeckKarl JeitlerKarl RosnerRonald PisarkiewiczJosef Hell (2)Norbert TäublMilan SagatErnst PamperlFerenc MihalyEwald WinklerHelmut ZehetnerHans Peter SchuhHans ReznicekReinhard DürrerFranz ZamazalSebastian HeeschReinhard ÖhlbergerHans GartnerHerbert ReznicekUrsula WexMartin ZalodekElmar LandererDietmar KüblböckRobert BuschekClemens HorakHugo BurghauserAndreas GroßbauerRoland HorvathWolfgang PlankHelmuth PufflerReinhard ReppAlfred AltenburgerSigismund BachrichGustav Schuster (2)Karl ÖhlbergerManfred KuhnManfred GeyrhalterWilliam McElheneyRichard KrotschakHorst Berger (2)Hans HadamowskyCarl JohannisHans HindlerHubert KroisamerLeopold KainzAnton StrakaChristoph GiglerDavid PennetzdorferRaimund LissyGottfried von FreibergWilhelm KrauseHerbert FrauhaufGerhard IbererAntonia SchreiberJosef LacknerWilfried HedenborgDominik SchnaittBenedikt DinkhauserSebastian BruHolger GrohBernhard Naoki HedenborgMatthias SchornThomas Lechner (2)Josef ReifHubert JelinekChristoph KonczJun KellerRobert BauerstatterRudolf NekvasilAry van LeeuwenAlfred SpilarBenjamin SchmidingerMartin Unger (2)Manuel Huber (3)Martin KlimekKlaus PeisteinerSiegfried RumpoldAugust PioroOtto SchiederJosef LevoraFranz SchlafOliver MadasWolfgang Singer (2)Bruno HartlAndrea GötschWalter Auer (2)Adela FrasineanuWolfgang GürtlerChristian FrohnMartin RienerGünther SzkokanFritz LeitermeyerWolfgang BreinschmidRudolf SchmidingerManfred HeckingErich Kaufmann (3)Gerhard Kaufmann (2)Sophie DervauxJörgen FogBernhard BiberauerTobias LeaJosé Maria BlumenscheinWalter BlovskyWolfgang Tomböck (2)Hans HanakHerbert MaderthanerLara KusztrichHarald KrumpöckDaniel FroschauerKarin Teresa BonelliGeorg StrakaKirill KobantschenkoRoland BaarBarnaba PoprawskiHeinz HankeMaxim BrilinskyErhard LitschauerKelton KochMoritz KässmayerVictor PolatschekHelmut SkalarJosef Koller (3)Christoph Wimmer (2)Jacques van Lier (2)Jaques Van Lier (2)Sebastian Breit + +754978Lasalle QuartetLaSalle QuartetAmerican string quartet (1946-1988) founded in Cincinnati, Ohio by [a754965]. The correct form of the name is LaSalle Quartet (see Wikipedia page) + +The LaSalle's name is attributed to an apartment on LaSalle Street in Manhattan, where some of its members lived during the quartet's inception. The quartet played on a donated set of Amati instruments. + +Members: +Walter Levin, (first) violin +[a754960], (second) violin +[a754962], viola +Richard Kapuscinski, cello (1946-1955) +[a754961], cello (1955-1975) +[a1039457], cello (1975-1988)Needs Votehttps://en.wikipedia.org/wiki/LaSalle_QuartetCuarteto LasalleKvarteto LasalleLa Salle QuartetLa-Salle-QuartettLaSalle KwartetLaSalle QuartetLaSalle Quartet, CincinnattiLaSalle QuartettLaSalle Quartett, CincinnattiLaSalle String QuartetLaSalle-QuartetLaSalle-QuartettLasalle QuartettLasalle String QuartetLasalle-QuartetLasalle-QuartettQuartetto LaSalleQuatuor LaSalleQuatuor LasalleThe Lasalle String Quartetラサール弦楽四重奏団La Salle QuartetHenry MeyerJack KirsteinPeter KamnitzerWalter LevinLee Fiser + +754979Douglas BoydBritish classical oboist and conductor, born 1959 in Glasgow, Scotland. +He studied oboe with [a883767] at the Royal Academy of Music in London, and with [a866632] in Paris. He co-founded [a848261] in 1981 and was its principal oboist until 2002. +In 2006, he ceased performing on the oboe to focus full-time on his conducting career. He held the positions of Music Director of [a1950039] (2001-2011), Principal Guest Conductor of [a366821] (2008-2011), Artistic Partner of [a841440] (2004-2009) and Principal Guest Conductor of [a318371]. +He is currently Principal Conductor of [a1487836] (since the 2009-2010 season) and was also named Artistic Director of Garsington Opera in November 2012.Needs Votehttp://www.douglasboyd.co.ukhttp://en.wikipedia.org/wiki/Douglas_BoydBoydCity Of London SinfoniaThe Colorado Symphony OrchestraThe Saint Paul Chamber OrchestraThe Chamber Orchestra Of EuropeThe Gaudier EnsembleThe Manchester CamerataMusikkollegium Winterthur + +754980Jacques ZoonJacques ZoonDutch flutist and instrument maker, born 1961 in Heiloo, North Holland.Needs Votehttp://nl.wikipedia.org/wiki/Jacques_Zoonhttp://en.wikipedia.org/wiki/Jacques_ZoonSjaak ZoonZoonBoston Symphony OrchestraConcertgebouworkestThe Chamber Orchestra Of EuropeResidentie OrkestOrchestra MozartBerliner Barock Solisten + +755018Diane ClarkBritish classical bassistNeeds VoteDiane ClarkeThe BT Scottish EnsembleThe Academy Of St. Martin-in-the-FieldsScottish EnsembleThe Manchester Camerata + +755034Kate BirchallViolinist.Needs VoteLondon Philharmonic Orchestra + +755035Betsy TaylorBritish cellistNeeds Votehttp://www.betsytaylor.co.uk/Royal Scottish National Orchestra + +755037Bérénice LavigneFrench classical and session violinist.Needs VoteNouvel Ensemble Instrumental Du Conservatoire National Supérieur De ParisLes Musiciens Du LouvreLe Cercle De L'Harmonie + +755040Christopher GeorgeBritish violinistCorrectChris GeorgeScottish Chamber Orchestra + +755046Mary MartinMary Virginia MartinAmerican actress and singer. +Married to [a1054526] (1940-1973, his death), mother of [a829625]. +She received the Donaldson Award and the New York Film Critics Circle Award in 1943 for "One Touch of Venus". In 1955 she received a Tony for "Peter Pan", in 1956 she received an Emmy for appearing in the same role on television. She also received Tony Awards for "South Pacific" and "The Sound of Music". She was honored for her career achievements by the John F. Kennedy Center for the Performing Arts in Washington, D.C., in 1989. + +Born: December 1, 1913 in Weatherford, Texas. +Died: November 3, 1990 in Rancho Mirage, California (aged 76, from colorectal cancer).Needs Votehttps://en.wikipedia.org/wiki/Mary_Martinhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/206334/Martin_Mary& ChildrenM. MartinMartinMaryMary Martin & ChildrenMary Martin With Glee ClubMary Martin, ChildrenMary Martin, Theodore Bikel, ChildrenMary MatinWoody Herman And His OrchestraThe Sound Of Music Original Broadway CastThe Band That Plays The Blues + +755047Philip DawsonDouble bassistNeeds VoteLondon Philharmonic Orchestra + +755052Robbie Jacobs (2)Classical cellist.CorrectThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90 + +755055Max SpiersMaxwell SpiersBritish cor anglais (primarily) and oboe player and Professor. +He studied at the [l290263]. After a year with the [b]National Orchestra of Malta[/b], he returned to the UK and, in February 2001, was appointed principal cor anglais with the [a=Royal Ballet Sinfonia], a position he still holds. Member of the Professorial staff in [l1379071].Needs Votehttps://www.linkedin.com/in/maxwell-spiers-40a35824/https://www.trinitylaban.ac.uk/study/teaching-staff/maxwell-spiers/Maxwell SpiersLondon Symphony OrchestraRoyal Ballet Sinfonia + +755058Benjamin NabarroClassical violinist, born in Nottingham, England.Needs Votehttp://www.benjaminnabarro.co.ukhttps://twitter.com/benjaminnabarrohttp://ensemble360.co.uk/biographies/benjamin-nabarro-violin/Ben NabarroBen NabarrowBenjamin NabbarroEnglish Chamber OrchestraLondon Metropolitan OrchestraThe Nash EnsembleLeonore Piano TrioEnsemble 360London Bridge EnsembleThe Roff Ensemble + +755059Andrew Harwood-WhiteTrombonist and sackbutist.Needs Votehttps://wells.cathedral.school/staff/andrew-harwood-white-trombone-teacher/Andy Harwood-WhiteThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe King's Consort + +755250Terry LayneSaxophonist & flute player.CorrectLayneT. LayneTerence Thomas LayneThe Jeff Lorber FusionStan Kenton And His OrchestraDave Barduhn Big Band + +755352Dario Rossetti BonellClassical guitarist.Needs Votehttps://www.imdb.com/name/nm3300414/Dario Rosetti-BonellDario Rossetti-BonelDario Rossetti-BonellDarío Rossetti-BonellThe Day Goes + +755695Nick BrignolaNicholas Thomas Brignola.American jazz saxophonist (baritone, tenor, soprano, alto, bass sax, saxello) player. + +Born : July 17, 1936 in Troy, New York. +Died : February 08, 2002 in Albany, New York. +Needs Votehttps://en.wikipedia.org/wiki/Nick_BrignolaBrignolaNicholas BrignolaWoody Herman And His OrchestraTed Curson & CompanyWoody Herman And The Swingin' HerdJazz In The ClassroomMingus Big BandThe Nick Brignola SextetDoug Sertl's Uptown ExpressTed Curson QuartetNick Brignola QuintetSal Salvador QuintetNick Brignola QuartetSal Salvador SextetSal Salvador And His OrchestraTed Curson–Nick Brignola QuintetPhil Woods' Little Big BandDoug Sertl Big BandReese Markewich QuintetThree Baritone Saxophone Band + +755901Remo BiondiRemo Biondi.American jazz guitarist, mandolinist and bassist. +Played with : "Blanche Jaros Orchestra", [a=Wingy Manone], [a=Bud Freeman], [a=Joe Marsala], [a=Gene Krupa], [a=Eddie Condon], [a=Pat Boone] (pop) and others. + +Born : July 05, 1905 in Cicero, Illinois. +Died : January 28, 1981 in Chicago, Illinois. +Needs Votehttp://www.allmusic.com/artist/ray-biondi-mn0000772218http://speakeasy.jazzcorner.com/speakeasyarchive/thread.php?forumid=5137http://www.answers.com/topic/ray-biondihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/108940/Biondi_RemoBiancoBiandiBiandoBiondiBioniBlancoBoinoiBondiOrchestra Remo BiondiR. BilondiR. BiondiR.BiondiRay BiendiRay BiondiRemo "Ray" BiondiRemo Biondi And His OrchestraRemo Biondi QuartetRemo BiondoRemo BióndiRemu BiondiRay BiondiWoody Herman And His OrchestraGene Krupa And His OrchestraLeonard Feather All StarsRemo Biondi EnsembleJoe Marsala And His ChicagoansAll Star Jam BandWoody Herman BandWoody Herman And The Fourth HerdChubby Jackson's Big BandWoody Herman And The Swingin' Herd (2)Remo Biondi Orchestra + +755907Charles LevelCharles Edmond Gaston LeveelFrench singer, composer, author, born 1934 - died october 2015. +He has written around 1000 songs and 300 soundtracks. His most famous hit (3 millions of 7") is "[i]La Bonne Du Curé[/i]" sung by [a=AnnIe Cordy].CorrectC LevelC. LevalC. LeveC. LevelC.LevelCH. LevelCh. LeveiCh. LevelCh.LevalCh.LevelCh;LevelCharles Edmond LeveelCharles EvlelCharles LeveelCharles LevinCharles RevelCharlie LevelClaude LevelG. LevelLevelRevelШ. ЛевелLes Grosses TêtesCharlie Level Et Les Carnaval's + +755976Wim PoppinkWillem Pieter Poppink Dutch jazz saxophonist, clarinettist, singer and songwriter +b The Hague, 20th June 1903 +d The Hague, 23rd January 1965 +Member of [b]The Ramblers[/b] from 1928 to 1958.Needs Votehttps://www.last.fm/music/Wim+poppink/+wikihttps://www.ultratop.be/nl/showperson.asp?name=Wim+W.P.+PoppinkPoppinkW. Pop-PinkW. PoppickW. PoppingW. PoppinkW. PottinkWilliam PoppinkWim PoppinWim W.P. PoppinkB. PanzaThe Ramblers + +755979Erik FranssenLammy van den Houtb.: 1914 +d.: 1990 + +Dutch lyricist and singer from Tilburg, the Netherlands.Needs VoteE. FransenE. FransseE. FranssenE. FranssensEric FranssenErich FrassenFransenFranssenFranssensJ. HenzonLeo CampsLammy Van Den Hout + +756002Pierre WijnnobelPierre Jean Carel WijnnobelBassist, trombonist, bandleader, arranger and songwriter, born 5 August 1916 in Leiden, Netherlands, died 9 January 2010 in Amsterdam, Netherlands.CorrectP. WijnnobelP. WijnobelP. WynnobelP. WynobelP.WijnnobelPerre-WijnnobelPierre Van WijnnobelPierre WijnobelPierre WynnobelR. WijnnobelT. WijnnöbelWijnnobelWijnobelWynnobelThe RamblersOrkest o.l.v. Pierre Wijnnobel + +756072Alan BernsteinAlan Kenneth BernsteinSongwriter.CorrectA BernsteinA. BernsteinA. BernstienA. BersteinA. K. BernsteinA. KennethA. Kenneth / BernsteinA. Kenneth BernsteinA.BernsteinA.Kenneth BernsteinAl. BernsteinAl.BernsteinAlan BurnsteinAllan BernsteinAllen BernsteinBernsteinBurnsteinK. Bernsteinアラン・バースタイン + +756893Susan PomerantzAmerican songwriter.Needs Votehttps://pomerrantsmusic.com/https://www.linkedin.com/in/susan-pomerantz-7b901a21/PomerantzS. PomerantsS. PomerantzS. PomeranzSue PomerantzSue PomeranzeSusan Pomerantzová + +756988Ullrich HauptUllrich HauptGerman actor and director. + +He was born 10 October 1915 in Chicago, Illinois, USA and died 22 November 1991 in Munich, Germany. +CorrectUlrich Haupt + +757229John Vaughan (2)John David VaughanUK hard house/trance DJ/producer, artist and label manager. + He also runs Phoenix Uprising, Platinum and Boscaland labels and has his own studio in Wales that he shared with his recording partner, [a=shane morris].Needs Votehttp://www.myspace.com/jonthedentistJ. VaughanJ. VaughnJ.VaughanJ.VaughnJohn D. VaughanJohn David VaughanJon VaughanJon VaughnJon VonVaughanJon The DentistThe DentistMadelyNovocaine 2001OD1DJ FreshtraxNet AddictJohan SvensonNigmaJon NovacaneBillabongThe Dentist From BoscalandKyotoUnderground Cyber MovementHelix 360Jon NovacaineGreen CardRetro-gramsSilo (2)Novacane (2)Kinetic (12)The Disciples Of HardcoreJon E BoyThe Omen (8)Jon VoornJohnny BoscalandIn Space We DanceCationThe Men From Del BoscaBaby Doc & The DentistSola NovaThe Tekno ClanH.I.M.Edge & DentistHyperspaceBarabas & OD1Jon The Dentist & Ollie JayePandora's BoxBoscalandBoscanese Hedgehogs Fall To EarthHiroshimaBleep & BoosterMonsoon (2)The Annihilator2XLGestaltPyrotechModulation (2)The NightbreedHigh School Drop-OutsThe EmphasisPFM (2)Deep Space (3)The Boscaland Experience + +757355Jerry VivinoAmerican saxophonistNeeds Votehttp://www.jerryvivino.com/J. VivinoJerry VevinoJerry Vivino Jr.Jerry Vivino, Jr.The Miami HornsLabamba's Big BandVivino Brothers Blues BandThe Bob Smith BandThe Late Night Horns (2)Jerry Vivino Quartet + +757477Caroline BanksNeeds VoteCarolinecarolineCaz MechanicSeafood + +757737Tim KennedyJazz drummerNeeds VoteBilly Eckstine And His OrchestraAl Killian And His OrchestraSonny Criss Sextet + +757740Percy BriceAmerican jazz drummer. + +Born : March 25, 1923 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/305559Percy BruceBilly Taylor TrioThe George Shearing QuintetBenny Carter And His OrchestraLucky Thompson And His Lucky SevenOscar Pettiford And His Jazz GroupsMachito's Rhythm SectionThe New Oscar Pettiford SextetThe Ray Rivera Septet + +758109Willy RexWillem Carel Munnik Artist, composer and lyricist from Amsterdam. +Son of Willem Munnik, also a songwriter in his day. +Father of [a=Ellis Rex (2)] +Amsterdam, The Netherlands, 18 May 1916 – therein 1 May 1974,Needs VoteRexW. BexW. RexW.Rex + +758890Perry BradfordJohn Henry BradfordAmerican jazz singer, pianist and composer, born 14 February 1893 in Montgomery, Alabama; died 20 April 1970 in New York City, USA.Needs Votehttps://en.wikipedia.org/wiki/Perry_Bradfordhttps://adp.library.ucsb.edu/names/106081BardfordBradfordBradfortBrafordJ.P. JohnsonP. BradfordP. SmithPerry "Mule" BradfordJohn Henry (6)John Perry (28)Perry Bradford Jazz PhoolsPerry Bradford's Mean FourPerry Bradford's Jazz HoundsPerry Bradford And His GangJohnson's Jazzers + +759093Sybille BinderAustrian actress, voice actor and dubbing speaker. Born on January 5, 1895 in Vienna, Austria and died on June 30, 1962 in Düsseldorf, Germany.Correct + +759094Hansgeorg LaubenthalHannsgeorg LaubenthalGerman actor and singer, born 12 June 1911 in Cologne, Germany and died died 13 July 1971 in Steinbach, Germany.CorrectLaubenthal + +759095Rudolf TherkatzRudolf Karl Josef TherkatzGerman actor and voice actor. Born on August 16, 1908 in Cologne, Germany and died on December 16, 1961 in Düsseldorf, Germany.Needs Votehttps://dewiki.de/Lexikon/Rudolf_Therkatzhttps://de.wikipedia.org/wiki/Rudolf_Therkatzhttps://www.imdb.com/name/nm0857596/ + +759096Paul MaletzkiGerman actor and voice actor.Correct + +759098Piet ClausenGerman actor and voice actor.Correct + +759099Maria AlexGerman actress and voice actor.Correct + +759101Max EckardMax Eckard HassGerman actor, voice actor and dubbing speaker. He was born on October 25, 1914 in Kiel, Germany and died on December 6, 1998.Correct + +759102Siegfried SiegertGerman actor and voice actor.Correct + +759103Kurt WeitkampKurt Julius Hermann WeitkampGerman actor and voice actor. Born on December 28, 1914.Correct + +759104Gerhard GeislerGerman actor, voice actor and dubbing speaker. Born on October 21, 1907 and died on September 22, 1977.Needs VoteEnsemble Des Wiener Burgtheaters + +759105Walter CzaschkeGerman actor and voice actor. Born on March 28, 1926 in Münster, Germany.Correct + +759553Flip PhilippFriedrich Philipp-PesendorferVibraphone player +Born in 1969 in Oberwart (Austria) +Principal Percussionist of the Vienna Symphony Orchestra since 1990 +Needs Votehttp://www.flip-philipp.at/"Flip" Philipp PesendorferFlipFlip FilippFlip FillipFlip PhilipFlip PhillipFlip PhillippPhilip FlipPhilipp PesendorferPhillip FlipVienna Art OrchestraWiener SymphonikerWet CookiesFlip Philipp - Ed Partyka DectetMc HacekGHO OrchestraFlip Philipp - Ed Partyka OctetFlip Philipp/Klemens Marktl ConstellationJam Music Lab All-Stars + +759652Marty PanzerMartin PanzerSongwriter & Lyricist.Correcthttp://www.martypanzer.com/https://www.uclaextension.edu/pages/InstructorBio.aspx?instid=1114BanzerM PanzerM. PanzeM. PanzerM.PanzerMartin PanzerMarty PancerMarty PanzaMarty PanzeMorty PanzerPanzerPazerPonzer + +759690Peggy FarinaMargaret Santiglia[b]Northern soul - pop singer[/b] + +Born 04.05.1944 in New Jersey. +Started as a northern soul singer in the 60's. +Needs VoteFarinaFarinoP FarinaP. FarinaP. FerinaP.FarinaSarinaPeggy SantigliaTiffany Michel + +759868Martin RoscoeMartin RoscoeBritish pianist with an extensive background as concerto soloist, recitalist and chamber musician, born August 3, 1952 in Halton, Cheshire, England.Needs Votehttp://www.martinroscoe.co.ukhttp://en.wikipedia.org/wiki/Martin_Roscoehttps://twitter.com/MartinRoscoe1RoscoeThe Music Group Of Manchester + +759908Judith EngelGerman actress, soprano vocalist. Born November 15, 1969 in Potsdam, GDR (now Germany).Needs Votehttps://de.wikipedia.org/wiki/Judith_EngelRundfunkchor Berlin + +760109Michael Brown (10)Michael David LookofskyMichael Brown (born April 25, 1949, New York City, New York, USA – died March 19, 2015, Englewood, New Jersey, USA) was an American keyboardist-songwriter. He was a member and principal songwriter of pop group [a228850]. Son of jazz violinist [a135849].Needs Votehttps://en.wikipedia.org/wiki/Michael_Brown_(rock_musician)https://www.vintagevinylnews.com/2015/03/passings-michael-brown-of-left-banke.htmlBrownErrol BrownM BrownM, BrownM. BrowM. BrownM.BrownMD BrownMike BrownMikel BrownN. BrownMichael LookofskyThe Left Banke + +760791Danny DillHorace Eldred DillAmerican country singer and songwriter, born 19 September 1924 in Clarksburg, Tennessee and died 23 October 2008 in Davidson County, Tennessee. +Inducted into the Nashville Songwriters Hall of Fame (1975) and a member of the WSM Grand Ole Opry. A Duo act called Annie Lou and Danny. Often associated with the publisher [l=Cedarwood] / [l=Cedarwood Music]. Was married to [a10885033]. Needs Votehttp://rcs-discography.com/rcs/artist.php?key=dill1000http://nashvillesongwritersfoundation.com/Site/inductee?entry_id=4081http://www.hillbilly-music.comhttps://en.wikipedia.org/wiki/Danny_Dillhttps://adp.library.ucsb.edu/names/357891DD DillD HillD TillisD, DillD.D. BennyD. DannyD. DennyD. DillD. DullD. HillD. TillisD.DennyD.DillDIllDan DillDannyDanny DelDanny DellDanny DielDanny DilloDanny HillDanny TillDellDennyDenny DillDillDill DDill,DillsH. DillHillO. DillTillis + +760946Noah GellerClassical violinistNeeds VoteThe Philadelphia OrchestraSeattle Symphony OrchestraMetropolis EnsembleThe Kansas City Symphony + +761118Johan HalvorsenNorwegian composer, conductor and violinist (15 March 1864 – 4 December 1935).Needs Votehttp://en.wikipedia.org/wiki/Johan_Halvorsenhttps://adp.library.ucsb.edu/names/103479HalversonHalvorsenHalvorsen, JohanHalvorsonJ. HalvorsenJoh. HalvorsenJohan August HalvorsenJohan HalvorsonJohann HalvorsenJohannes HalvorsenBergen Filharmoniske Orkester + +761119Ole BullOle Bornemann Bullb. February 5, 1810 +d. August 17, 1880 + +World famous Norwegian violinist and romantic composer.Needs Votehttp://en.wikipedia.org/wiki/Ole_Bullhttps://adp.library.ucsb.edu/names/103054BullCharles MackerrasO. BullOle Bornemann BullBergen Filharmoniske Orkester + +761266Alexander SuvorovAlexander SuvorovContemporary musician from Russia. He mainly plaus percussion instruments.Needs VoteAleksandr SuvorovAlexandr SuvorovА. СуворовАлександр СуворовPekarsky Percussion EnsembleRussian National OrchestraMoscow Contemporary Music Ensemble + +761638Richard EleginoRichard M. EleginoViola player.Needs Votehttps://www.laphil.com/musicdb/artists/1641/richard-eleginoRichard M. EleginoLos Angeles Philharmonic Orchestra + +761942John Marshall (7)John MarshallAmerican jazz trumpeter born on May 22, 1952 in Wantagh, Town of Hampstead, New York; died May 21, 2025. + +Marshall played professionally in New York for 21 years. The list of modern jazz musicians with whom he played during that time includes names as diverse as [a=Benny Goodman] and [a=Ornette Coleman]. John's career began in rhythm 'n' blues bands, salsa groups and the free jazz scene. + +In the late seventies and early eighties he recorded and toured with the bands of [a=Buddy Rich], [a=Lionel Hampton] and [a=Mel Lewis]. With Mel's band he was a featured soloist for many years at the Village Vanguard. His engaging solo style also enlivened the bands of [a=Gerry Mulligan], Afro-Cuban jazz pioneer [a=Mario Bauzá], [a=Toshiko Akiyoshi] and [a=Buck Clayton]. + +In 1988 he toured the USA and Europe with [a=Dizzy Gillespie]'s Big Band. During the same time he was a sought-after studio musician in New York‘s very competitive recording scene. In the late eighties Marshall formed the jazz quintet "The Bopera House" with the reknowned tenorist [a=Ralph Lalama]. The group performed in NY, up and down the east-coast, and recorded three highly-acclaimed albums. + +Since 1992, Marshall has lived in Cologne, Germany, where he is one of the most important soloists of [a=WDR Big Band Köln]. He was a member of the WDR Big Band from 1992 until 2017. His European quintet with Dutch tenor legend, [a=Ferdinand Povel], has appeared all over Germany, as well as in Belgium, Holland, Austria and Switzerland. However, Marshall has not turned his back on New York. He returns there every year for appearances and recordings. +Needs Votehttp://www.marshallbop.com/J. MarshallJohn MarshalJohn T. MarshallJon KarshalJon MarshalJon MarshallMarshallRIAS Big BandLionel Hampton And His OrchestraWDR Big Band KölnAl Porcino Big BandJohn Marshall QuintetThe Killer ForceThe Metropolitan Bopera HouseThe Killer Force BandJohn Marshall | Ferdinand Povel QuartetErik Doelman 7tetThe RIAS Big Band BrassLena Bloch QuintetJoachim Schoenecker Sextet + +762076Dan ForneroAmerican trumpeter, born in Kenosha, Wisconsin, based in Los Angeles, CaliforniaNeeds Votehttp://www.danfornero.com/Dan ForenoDan FornaroDan FornedoDaniel ForneoDaniel ForneroDaniel FornetroDaniel FurneroDaniel R. ForneroDavid ForneroDon ForneroBrian Setzer OrchestraWoody Herman And His OrchestraThe Phil Collins Big BandThe Heart Attack HornsVine Street HornsThe Woody Herman Big BandThe Big 2 HornsThe Gary Urwin Jazz OrchestraDave Slonaker Big BandAllen Carter Big BandDowntown HornsThe Dennis Dreith BandRich Willey's Boptism Big BandRich Willey's Boptism Funk Band1:00 O'Clock Lab BandLos Angeles Trumpet Ensemble + +762355Stanislaw SkrowaczewskiStanisław SkrowaczewskiStanislaw Skrowaczewski (born October 3, 1923, Lwów, Poland (now Lviv, Ukraine) – died February 21, 2017, St. Louis Park, Minnesota, USA) was a Polish-born American composer and conductor. + +He was already a well-known conductor and composer in his native Poland and throughout Europe before he made his US debut in 1958, conducting [a547971] at the invitation of [a547969]. He was music director of the [a973130] from 1960 to 1979. He regularly lead major ensembles in Vienna, Berlin, Paris, London, Rome, Munich, and other European cities, and made frequent appearances with the most prestigious American orchestras, including those of Boston, Cleveland, and Philadelphia. + +In 1968, he made his [url=https://www.discogs.com/label/365596-Salzburger-Festspiele]Salzburg Festival[/url] debut with the [a754974]. That same year, at the request of the late United Nations Secretary-General [a5052604], he led the Minnesota Orchestra in a special concert in [l523105], commemorating the 20th anniversary of Human Rights Day. His debut at [a837548] followed two years later, when he conducted performances of [url=https://www.discogs.com/artist/95546-Wolfgang-Amadeus-Mozart]Mozart[/url]'s "The Magic Flute" at the [l520557] and also on a national tour. + +Among his acclaimed compositions is the "Concerto for Clarinet and Orchestra", premiered by the Minnesota Orchestra under Skrowaczewski's own baton on April 1981.Needs Votehttps://en.wikipedia.org/wiki/Stanis%C5%82aw_Skrowaczewskihttps://www.bach-cantatas.com/Bio/Skrowaczewski-Stanislaw.htmhttps://www.imdb.com/name/nm0804891/S. SkrowaczewskiS. スクロヴァチェフスキSkrowacewskiSkrowaczewskiSkrowazcewskiStanilav SkrowaczewskiStanislas SkrowaczewskiStanislav SkrowaczewskiStanislaw SkrowackzewskiStanislaw SkrowaczevskiStanislaw SkrowazewskiStanisław Skrowaczewskiスタニスラフ・スクロヴァチェフスキースタニスロー・スクロワチェフスキー + +762401Andy SanesiDrummer and percussionist, Brooklyn/ USNeeds VoteMissing PersonsPrelapseNo LindsayLionfishGoodbye Girl FridayThe Nick Hexum Quintet + +762644Jos CleberJozef "Jos" CleberDutch trombonist, violinist, conductor, composer, arranger, and producer. + +Born June 2, 1916 in Maastricht, Netherlands. +Died May 21, 1999 (aged 82) in Hilversum, Netherlands.Needs Votehttps://en.wikipedia.org/wiki/Jozef_CleberCieberCleberDeberI. CleberJ. CleberJ. ClebèrJoe CleberJos ClebèrJos. CleberJoseph CleberOrkest o.l.v. Jos CleberThe RamblersOrkest o.l.v. Jos CleberJos Cleber And His OrchestraJos Cleber And His Cosmopolitain OrchestraDe Decca-MelodiansKoor o.l.v. Jos Cleber + +762646Kees BruynDutch jazz tenor saxophonistNeeds VoteBruijnBruynC. BruinC. BruynC. BrynC. M. BruijnC. W. BruijnC.M. BruijnC.M. BruynCees BruynCor BruynK. BruinK. BruynKees BruijnKees BruinKees BrujinKees BrunjnThe RamblersDick Willebrandts En Zijn OrkestOrkest o.l.v. Ger van LeeuwenDe BlauwbaardjesOrkest o.l.v. Kees BruynThe Red And Brown BrothersThe SongsingersHet Kwartet Ger Van Leeuwen + +762680Joseph SilversteinAmerican violinist and conductor, (b. March 21, 1932, Detroit, Michigan – d. November 22, 2015, Boston, Massachusetts).Needs Votehttps://en.wikipedia.org/wiki/Joseph_SilversteinJ. SilversteinSilversteinThe Philadelphia OrchestraBoston Symphony OrchestraHouston Symphony OrchestraDenver Symphony OrchestraBoston Symphony Chamber Players + +762941Øyvind HageTrombonist.Needs VoteBergen Filharmoniske OrkesterBergen Big BandGreåker MusikkorpsDag Arnesen 13-tett + +763037Tim Morrison (2)Trumpet player, formerly the principal trumpet of the Boston Pops Orchestra.Needs Votehttps://www.imdb.com/name/nm0607330/https://myspace.com/tmorrproductionsMorrison, TimThimothy MorrisonTimothy G MorrisonTimothy G. MorrisonTimothy MorrisonBoston Pops OrchestraBoston Symphony OrchestraPatrick Williams And His OrchestraThe Uptown Dues Band + +763306Julia-Maria KretzGerman violinist, born 1980 in Berlin. +She performs on a violin by Joseph Nicola Gagliano, Naples, ca. 1791.Needs Votehttp://www.mahler-chamber.de/nc/en/about-the-mco/mco-musicians/members-singleview/name/julia-maria-kretz.htmlhttp://www.spectrumconcerts.com/index.php?id=7&L=1&tx_kbshop_pi1[v]=6J.-M. KretzJulia Maria KretzMahler Chamber OrchestraSpectrum Concerts BerlinThe Zilliacus Quartet + +763419Howard Smith (4)Howard Harold Smith.American jazz pianist. +Born : October 19, 1910 in Ardmore, Oklahoma. +Died : Unknown. + +Howard Smith recorded with Adrian Rollini, Red Norvo, Woody Herman, Ray Noble, Tommy Dorsey, Lena Horne, Jack Teagarden, Glenn Miller, among others. +Needs VoteH. SmithHSHarold SmithHoward SmithHoward Smith (HS)SmithTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenGlenn Miller And His OrchestraAdrian Rollini And His OrchestraIsham Jones' Juniors + +763785Bob LeiningerRobert H. LeiningerAmerican bassist and educator, first in jazz, subsequently principal bass player of the [a=The Pittsburgh Symphony Orchestra] (b. Richmond Hill, May 11, 1916 - d. Oct. 24, 2003).Needs VoteB. LeiningerBob LeinigerBob LenningerRobert LeiningerLennie Tristano TrioCharlie Ventura/Bill Harris Quintet + +763801Tormod DalenNorwegian cellist & violist.Needs Votehttp://www.norway.org.uk/norwayandcountry/culture/music/Reputed-baroque-cellist-to-Brighton/#.Uq2o9-KGdK0Tormud DalenLe Concert SpirituelGabrieli PlayersNew Dutch AcademyLes Ambassadeurs (6)Trønderkvartetten + +763815Clyde ReasingerJazz trumpeter, born January 31, 1927 in Dubois, Pennsylvania, USANeeds Votehttp://www.radioswissjazz.ch/de/musikdatenbank/musiker/228138b1239e5437dd522c625bdd157403a576/discographyC. ReasingerClyde ResingerClyder ReasingerGil Evans And His OrchestraHarry James And His OrchestraShorty Rogers And His OrchestraOliver Nelson And His OrchestraHarry James And His Big BandHenry Jerome And His OrchestraThe Quincy Jones Big Band + +763816Bill SchallenWilliam SchallenbergerAmerican Big band Trombonist and occasional vocalist. +Born c.1918 Died 2002 (84 years of age). +Bill studied music at New York University, playing in orchestras at night while attending school. He joined the Van Alexander band in 1938 and, from 1939-1942, played and sang with Alvino Rey and the King Sisters. During World War II he led the Fighting Coast Guard Band, a 20-piece orchestra which included many members of the Rey band. The played at official events in Washington, D.C., cut V-disks and presented a weekly radio show for two years over the Blue Network. He then served on a transport ship, entertaining troops being carried to the Pacific theatre. Back in New York after the war, he joined the Tommy Dorsey Orchestra. +He was also a studio musician and worked in television from its early days. He was a member of the band of the Dave Garroway Show. Later, while a staff musician at NBC, he played the Steve Allen Show, the Merv Griffin Show, the Johnny Carson Show, and others. He played with Skitch Henderson, and was with him when he recorded the first stereo album for NBC. He worked in a number of Broadway shows, including many Harold Prince shows, and appeared in motion pictures with several of the bands he worked with. He retired professionally in 1987.Needs VoteB. SchallenBill SchollenWilliam SchallenTommy Dorsey And His OrchestraAlvino Rey And His OrchestraVan Alexander And His Swingtime Band + +764226James StaglianoAmerican horn (french horn) player and session musician. He was born 7th January 1912 in Italy. Emigrated with his family to the USa in 1920 and died 11th April 1987 in Boynton Beach, Florida. He was married to [a4059803].Needs Votehttps://www.hornsociety.org/ihs-people/honoraries?view=article&id=67:james-stagliano-1912-1987&catid=26Giacomo StaglianoJ. StaglianoJames StaglioneBoston Symphony OrchestraDetroit Symphony OrchestraThe Cleveland OrchestraSaint Louis Symphony OrchestraBoston Symphony Chamber Players + +764227Ed KusbyStudio trombonist, active from the late 1930s.Needs VoteEd KuskyEddie CusbyEddie KuczborskiEddie KusbyEddie Kusby (Kusczborski)Edward "Eddie Kusby" KuczborskiEdward "Eddy Kusby" KuczborskiEdward K. KusbyEdward KuczborskiEdward Kuczborski 'Ed' KusbyEdward KusbyKusbyHarry James And His OrchestraBilly May And His OrchestraArtie Shaw And His OrchestraHal Kemp And His OrchestraEddie Miller And His OrchestraBobby Christian And His OrchestraNeely Plumb's Orchestra + +764230Don PaladinoTrumpet playerNeeds VoteDon PalidingDon PalidinoDon PalladinoHarry James And His OrchestraLes Brown And His Band Of RenownStan Kenton And His OrchestraArtie Shaw And His OrchestraPete Rugolo OrchestraHot Rod Rumble Orchestra + +764232Morton FriedmanJazz saxophonistNeeds VoteMort FriedmanMorton B. FriedmanHarry James And His OrchestraArtie Shaw And His OrchestraLou Bring And His Orchestra + +764233Maurice PerlmutterAmerican violistNeeds VoteHarry James And His OrchestraBenny Goodman With Strings + +764234Dick Jones (3)Jazz PianistNeeds VoteD. JonesDJDick JonesDick Jones (DJ)JonesRichard JonesTommy Dorsey And His OrchestraTommy Dorsey And His Clambake Seven + +764235David SterkinAmerican viola playerNeeds VoteDave SherkinDave SterkinDavid H. SterkinDavid H. SterkingDavid SternkinHarry James And His OrchestraGordon Jenkins And His OrchestraHarry James & His Music MakersFrank Sinatra And His OrchestraBenny Goodman With Strings + +764239Don RaffellDonald Howard RaffellAmerican saxophonist, born 26 April 1919 in Washington D.C., USA, died 24 March 2003 in Sherman Oaks, California, USA.Needs Votehttps://en.wikipedia.org/wiki/Don_RaffellDen RaffelDon RaeffelDon RafelDon RafellDon RaffelDon RoffellDon RuffellDonald 'Don' RaffellDonald RaeffelDonald RaeffellDonald RaffaelDonald RaffaellDonald RaffellDonald RuffelDonald RuffellHerbie StewardLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsArtie Shaw And His OrchestraCharlie Spivak And His OrchestraGerald Wilson OrchestraSonny Burke And His OrchestraHarry Betts & His Orchestra + +764240Sonny RussoSanto J. "Sonny" RussoAmerican jazz trombonist. +Born March 20, 1929 in New York. +Died March 23, 2013 in Portland, Oregon (aged 84). + +Russo's father and grandfather were both horn players and he was playing with his father’s band from the time he was 15. He was a graduate from the Manhattan School of Music, where he earned his Master’s Degree. +Russo was principally a sideman and soloist in big bands. He played with Pearl Bailey and became a fixture in Quincy Jones’ orchestra. He also played with Grover Washington, Jr., Van McCoy, Eddie Kendricks, Frank Sinatra and many, many more. He played with the orchestras of Artie Shaw, Dorsey Brothers, Sam Donohue, Neal Hefti, Stan Kenton and Sauter-Finegan.Needs Votehttps://www.feenotes.com/database/artists/russo-santo-j-sonny-20th-march-1929-23rd-march-2013/https://en.wikipedia.org/wiki/Sonny_Russohttps://adp.library.ucsb.edu/names/341634C. RussoRussoS. RussoSanto RusoSanto RussoSantos RussoSonny O'RussoArtie Shaw And His OrchestraBenny Goodman And His OrchestraSauter-Finegan OrchestraLarry Sonn OrchestraThe Hotel OrchestraDick Collins And His OrchestraThe Sons Of Sauter-FineganDon Redman All StarsJim Timmens And His Swinging BrassStewart - Williams & Co.Urbie Green And Twenty Of The "World's Greatest" + +764241Dick NivesonRichard E. NivisonAmerican jazz bassist. 1917-2002Needs VoteDick NiversonDick NivisonArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraBuddy Morrow And His OrchestraTeddy Charles Quartet + +764242Gene DiNoviEugene Salvatore Patrick DinoviJazz pianist, composer, singer, b Brooklyn, 26 May 1928. In the mid 40's, while still in his teens, he began recording as a sideman with leaders like Lester Young, Benny Goodman and Artie Shaw. In the 50's he also was a popular accompanist for singers like Peggy Lee, Tony Bennett, Lena Horne and Carmen McRae, to name some. +Settled in Toronto, Canada in 1972. +Needs Votehttp://www.thecanadianencyclopedia.com/index.cfm?PgNm=TCE&Params=U1ARTU0000969Di NoviDiNoviDinoviEugene De NoviEugene Di NoviEugene DiNoviEugene di NoviG. Di NoviG. DiNoviG. DinoviG.DinoviGene De NoviGene DeNoviGene DenoviGene Di NoviGene Di NovilGene de NoviGene di NoviGino Di NoviInner DialogueLester Young QuartetBenny Goodman SeptetChubby Jackson's OrchestraThe Gene DiNovi TrioBrew Moore And His PlayboysGene Dinovi's Generations Trio + +764244Alex LawViolinistNeeds VoteAlex JawStan Kenton And His OrchestraArtie Shaw And His Orchestra + +764246Fred GoernerCellistNeeds VoteF. GoernerFred GroenerHarry James And His OrchestraArtie Shaw And His OrchestraFrank Sinatra And His Orchestra + +764249Victor FordTrumpet playerNeeds VoteVic FordArtie Shaw And His Orchestra + +764252Mischa RussellMischa Edward RussellViolinist, active in many big band, arranger, and bandleader. +Born February 22, 1901 Died April 1982. +He began with Paul Whiteman's Orchestra. He conducted the orchestra behind many Dorothy Shay songs including the original recording of the song "Feudin' and Fightin'", cut on August 26, 1946. He played on the TV show The Lawrence Welk Show from 1962–1964.Needs Votehttps://www.allmusic.com/artist/mischa-russell-mn0000454327/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100136/Russell_Mischa?Matrix_page=100000Micha RusselMike RussellMischa Edward RussellMischa RusselMiscla RussellMisha Edward RussellMisha RussellRussellHarry James And His OrchestraFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraBenny Goodman And His OrchestraGordon Jenkins And His OrchestraHarry James & His Music MakersLou Bring And His OrchestraHoagy Carmichael And His PalsJohnny Richards And His OrchestraBen Webster With Strings + +764253Cy BernardAmerican cellist.Needs VoteCy BernhardCyril BernardCyril BernhardHarry James And His OrchestraBenny Goodman And His OrchestraHarry James & His Music MakersJohnny Richards And His OrchestraBenny Goodman With Strings + +764254Carl LoefflerTrombonistNeeds VoteCarl LoefflenCarl LofflerCarl M. LoefflerCarle LofflerWingy Manone & His OrchestraHal Kemp And His OrchestraSkinnay Ennis And His OrchestraUniversity Six + +764255Harold LewisAmerican jazz flutist and reeds player.Needs VoteWoody Herman And His Orchestra + +764256Stanley SpiegelmanViola playerCorrectStan SpiegelmanStanley 'Stan' SpiegelmanStanley SpeiglemanStanley SpieglemanHarry James And His OrchestraArtie Shaw And His Orchestra + +764259Irv KlugerIrving KlugerAmerican jazz drummer and vibraphonist, born 9 July 1921 in New York, died 28 February 2006. + +Needs Votehttp://www.jessicamarciel.com/irv/https://adp.library.ucsb.edu/names/325517I. GlugerIrv KluderIrving KlugerKlugerArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraDizzy Gillespie SextetVic Schoen And His OrchestraFrank Socolow's Duke QuintetDave Pell OctetMilt Bernhart And His OrchestraMilt Bernhart Brass Ensemble + +764260Porky CohenZalman CohenAmerican jazz trombonist. +Born: June 2, 1924, Springfield, Massachusetts +Died: April 14, 2004 Providence, Rhode Island +Trombonist who enjoyed a long and varied career, capped off by performing with the Grammy-winning Room Full Of Blues from 1981-1987.Needs Vote"Porkey" Cohen"Porky" CohenP. CohenPorky CohanPorky CohnProky CohenZolman CohenZolman Martin CohenArtie Shaw And His OrchestraCharlie Barnet And His OrchestraBoyd Raeburn And His OrchestraRoomful Of BluesThe SixThe Roomful Of Blues HornsThe Roomful Of Blues Horn SectionPee Wee Russell Sextet + +764262Arthur KaftonCellist.Needs VoteArthur KraftonBenny Goodman And His Orchestra + +764265Olcott VailAmerican violinist.Needs VoteOlcett WailOlcott WailHarry James And His OrchestraHarry James & His Music MakersFrank Sinatra And His OrchestraOlcott Vail Trio + +764266Kathryn ThompsonAmerican harpistCorrectKatherine ThompsonKathryn Garrett-ThompsonKathryn M. ThompsonKathryn M. Thompson PenneyM. Kathryn ThompsonGordon Jenkins And His Orchestra + +764269Sam FreedAmerican violinist and viola player.Needs VoteSam Freed Jr.Sam Freed, Jr.Samuel FreedSamuel Freed Jr.Samuel Freed, JrSamuel Freed, Jr.San FreedHarry James And His OrchestraHarry James & His Music MakersFrank Sinatra And His Orchestra + +764270Harold LawsonJazz saxophonist.Needs VoteHal LawsonHarold "Happy" LawsonArtie Shaw And His OrchestraPaul Weston And His Orchestra + +764271Freddy ZitoJazz trombonist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/352153/Zito_Freddyhttps://www.allmusic.com/artist/freddie-zito-mn0001698233/creditshttps://dl.mospace.umsystem.edu/umkc/islandora/object/umkc%3A4851F. ZitoFred ZItoFred ZitoFred ZitowFreddie ZitoFreddie ZItoFreddie Zitofred zitoStan Kenton And His OrchestraArtie Shaw And His OrchestraBoyd Raeburn And His OrchestraLucky Millinder And His OrchestraElliot Lawrence And His OrchestraThe Elliot Lawrence Band + +764273Nicholas PisaniViolinist.Needs VoteNicholas 'Nick' PisaniNicholas PisariNick PasaniNick PisanNick PisaniNick PissaniNick PissariNicolas PisaniHarry James And His OrchestraCharlie Barnet And His OrchestraRay Noble And His OrchestraRuss Morgan And His OrchestraHarry James & His Music MakersFrank Sinatra And His Orchestra + +764274Walter EdelsteinWalter Edelstein.American jazz violinist, violist and composer. + +Born : February 23, 1903 in Brooklyn, New York. +Died : February 06, 1992 in Thousand Oaks, California. + +Walter played with "CBS Radio Orchestra", "Hartman String +Quartet", Jack Teagarden, Ethel Waters, Bunny Berigan, +Victor Young, Smith Ballew, Paul Whiteman, "NBC Orchestra". +Subsequently played on recording sessions for Bing Crosby, +Frank Sinatra, Nat King Cole, Gordon Jenkins, Billy +Eckstine, Dizzy Gillespie, Ella Fitzgerald, Roy Rogers, +Louis Prima, Peggy Lee and June Christy.CorrectWalt EdelsteinWalter 'Edit' EdelsteinWalter 'Walt' EdelsteinWalter EdensteinHarry James And His OrchestraGordon Jenkins And His OrchestraJohnny Richards And His Orchestra + +764275Gil BarriosGilbert BarriosJazz pianist. Born 1928Needs VoteArtie Shaw And His Gramercy FiveArtie Shaw And His OrchestraVido Musso Sextet + +764335Eugene FieldsJazz guitarist. Active in New York City from 1936 to 1950.Needs VoteTeddy Wilson And His OrchestraColeman Hawkins And His OrchestraEddie South & His OrchestraJimmy Johnson And His OrchestraEmmett Matthews And His OrchestraThe Ellis Larkins OrchestraLee Norman TrioEddie South's Quintet + +764780Tony ColucciEarly jazz banjo and guitar player. +b.: 1905Needs VoteAnthony ColucciAntony ColucciT. ColucciTonny CollucciTony "Toots" ColucciTony CarlucciTony ColluccaTony CollucciTony ColuccaTony ColuccioRoger Wolfe Kahn And His OrchestraDr Henry Levine's Barefooted Dixieland PhilharmonicThe Charleston ChasersNBC's Chamber Music Society Of Lower Basin StreetRed Nichols And His OrchestraOriginal Indiana FiveSam Lanin And His Dance OrchestraNew Friends Of RhythmBrad Gowans And His New York NineFrank Farrell And His Greenwich Village Inn OrchestraLarry Abbott And His Orchestra + +764782Miff MoleIrving Milfred MoleAmerican jazz trombonist and bandleader. +born 11 March 1898 in Roosevelt, New York, USA +died 29 April 1961 in New York City, New York, USA + +He played with many orchestras and artists including [a4302301]'s Orchestra , [a342496] (1922), [a925208], [a699197], [a1208281], [a3279360], [a269598], [a282067], [a229639], [a299946], among others, and was a leader of his own groups. +He composed e.g. "Slippin' Around", "There'll Come a Time (Wait and See)" with [a=Wingy Manone], "Hangover" with [a=Red Nichols], "Worryin' The Life Out Of Me" with [a=Frank Signorelli] and [a=Bob Russell] and "Miff's Blues". +Needs Votehttp://www.redhotjazz.com/mmm.htmlhttps://en.wikipedia.org/wiki/Miff_Molehttp://www.radioswissjazz.ch/en/music-database/musician/41873441ef1f86241f4a88e2e05f7e3b14add/biographyhttps://adp.library.ucsb.edu/names/109173"Miff" MoleIrving Milfred "Miff" MoleM. MoleMiff MoeMiff Mole & His Little MolersMiff Mole And His Little MolersMilf Mole And His Dixieland BandMoleFrankie Trumbauer And His OrchestraRed And Miff's StompersThe Original Memphis FiveEddie Condon And His OrchestraMuggsy Spanier And His RagtimersEddie Condon And His BandMiff Mole's MolersLadd's Black AcesIrving Mills And His Hotsy Totsy GangSioux City SixThe Charleston ChasersYank Lawson's Jazz BandMax Kaminsky And His Windy City SixThe Tennessee TootersThe HottentotsBailey's Lucky SevenDixieland At Jazz Ltd.Lanin's Arkansaw TravelersMax Kaminsky And His Dixieland BandThe Arkansas TravellersThe Black DominoesJam Session At CommodoreThe Wolverines (5) + +764784Annette HanshawCatherine Annette HanshawAmerican jazz singer. +Born October 18th, 1901 in New York, New York, USA. +Died March 13th, 1985 in New York, New York, USA. +Hanshaw was one of the most popular radio stars of the late 1920s and early 1930s. In her ten-year recording career, she recorded about 250 sides. +Most of her records end with her saying in a cheery voice "That's all!" +In addition to her own name, Hanshaw used many aliases, including: Miss Annette, Ethel Bingham, Dot Dare, Gay Ellis, Marion Lee, Leila Sandford, Janet Shaw, Patsy Young.Needs Votehttps://web.archive.org/web/20050209084055/https://annettehanshaw.com/http://en.wikipedia.org/wiki/Annette_Hanshawhttps://www.imdb.com/name/nm3498099/https://syncopatedtimes.com/annette-hanshaw-1901-1985/https://adp.library.ucsb.edu/names/105498A. HanshawAnette HanshawAnnetteAnnette Hanshaw Con OrchestraHanshawMiss Annette HanshawDot DareGay EllisPatsy YoungLeila SandfordEthel BinghamAnnette Hanshaw And Her Sizzling SyncopatorsAnnette Hanshaw And Her Boys + +764785Larry AbbottEarly jazz reeds playerNeeds Votehttps://adp.library.ucsb.edu/names/109827AbbottLASix Jumping JacksBroadway Bell-HopsVincent Lopez And His OrchestraBen Selvin & His OrchestraHerb Wiedoeft's Cinderella Roof OrchestraSam Lanin & His OrchestraHarry Archer And His OrchestraFrank Farrell And His Greenwich Village Inn OrchestraHarry Reser's SyncopatorsJohnny Sylvester & His PlaymatesThe Tuxedo OrchestraLarry Abbott And His OrchestraJohnny Sylvester & His OrchestraThe Four Musical Minstrels + +764787Jimmy LytellJames SarrapedeAmerican jazz alto saxophonist and clarinetist +Born: December 01, 1904 in New York City, New York +Died: November 28, 1972 in Kings Point, New York +Worked with Cliff "Ukelele Ike" Edwards, Annette Hanshaw, Savannah Churchill, Maxine Sullivan, Lee Wiley, The Original Memphis Five, Billy Butterfield, Mildred Bailey, The Cotton Pickers, Alberta Hunter, The Red Heads, Leona Williams, Red Nichols, Ray Henderson, Bobby Hackett, Frank Sinatra, Una Mae Carlisle, Ladd's Black Aces, among others.Needs Votehttps://adp.library.ucsb.edu/names/109741I. LytellJ. LytellJames LytellJim LytellJimmie LytellJimmy LystellLystellLytelLytellClaude Thornhill And His OrchestraThe Original Memphis FiveLadd's Black AcesErskine Butterfield And His Blue BoysThe Broadway SyncopatersBailey's Lucky SevenJimmy Lytell And His OrchestraNubian FiveJimmy Lytell And His All Star SevenThe Three BarbersSavannah Churchill And Her All Star SevenJohnny Sylvester & His PlaymatesJohnny Sylvester & His Orchestra + +764792Phil NapoleonFilippo NapoliAmerican jazz trumpeter and bandleader. + +Trumpet player that led The Original Memphis Five, a band that helped popularize Dixieland Jazz in the 1920's. He is the uncle of the pianists [a262141] and [a325861]. + +Phil Napoleon (2 September 1901 – 1 October 1990) was a classically trained trumpet player, but he turned his back the concert hall and formed The Original Memphis Five with pianist Frank Signorelli in 1917. The band was one of the most popular and prolific outfits of the 1920’s and featured the trombone playing of Miff Mole. + +The Original Memphis Five broke up in 1928 and Phil began making his living as a studio musician until 1937 when he formed his own orchestra, but it didn’t go anywhere and he soon returned to session and studio work. + +In 1946 he got a call from Jimmy Dorsey who was in desperate need of a trumpet player, due to the draft. He joined him in L.A. You can see him in the band in the movie ‘Four Jills And a Jeep”. He stayed with Dorsey until 1947. He the came back to New York and worked as a studio musician at NBC until 1950. + +He re-formed the The Original Memphis Five and played at Nick’s in New York City for the next six years. In 1956 Phil moved to Miami, Florida and opened his own club called Napoleon’s Retreat where he continued to lead a band. Phil Napoleon died on September 13th, 1990, at his home in North Miami. He was 89 years of age. +Needs Votehttps://en.wikipedia.org/wiki/Phil_NapoleonNapoleonNapoléonP. NapoleonPh. NapoleonPhil Napoleon And His Memphis FiveBoyd Senter & His SenterpedesNapoleon's EmperorsJack Pettis & His PetsPhil Napoleon & His OrchestraJimmy Dorsey And His OrchestraThe Original Memphis FiveMiff Mole's MolersLadd's Black AcesPhil Napoleon And His Memphis FiveThe Dorsey Brothers OrchestraIrving Mills And His Hotsy Totsy GangThe Charleston ChasersThe Broadway SyncopatersBailey's Lucky SevenNubian FivePhil Napoleon & His Dixieland BandThe New Orleans Black BirdsThe Savannah SixPhil Napoleon’s Emperors Of Jazz + +764793George BohnJazz saxophonistNeeds VoteG. BohnGeorge "Gigi" BohnGeorge 'Gigi' BohnBunny Berigan & His OrchestraJan Savitt And His Top HattersCharlie Barnet And His OrchestraTeddy Powell And His OrchestraHudson-DeLange Orchestra + +765352William ByrdWilliam ByrdEnglish madrigalist and composer, born c.1539/40 or 1543 in Lincoln, Lincolnshire, died July 1623, 04 Stondon Massey, Essex. +This 'Father of Musicke' is considered the greatest of the Virginal composers, and has arguably had more influence on the development of English music than any other composer.Needs Votehttps://en.wikipedia.org/wiki/William_Byrdhttps://www.britannica.com/biography/William-Byrdhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102005/Byrd_WilliamAnonymous (William Byrd)BirdByrdByrd W.ByrdeMr. ByrdeTw. ByrdV. BerdasW ByrdW. BirdW. ByrdW.ByrdWilliam BirdWilliam Byrd (1591)William Byrd (Ca.1540-1623)William Byrd?William ByrdeWillian ByrdWm ByrdWm. ByrdWylliam ByrdВ. БердВільям БердУ. БердУ. БэрдУ. БёрдУильям Бердウィリアム・バードエドワード・ヒギンボトムバード + +766100Joey VJoey MarshallTechno/Trance DJ & producer from Milton Keynes, UK. +Founded his own digital label [l=V Breed] in 2010. +Correcthttp://www.joeyv.co.uk/http://www.myspace.com/djjoeyvhttp://www.facebook.com/OfficialJoeyVhttp://twitter.com/OfficialJoeyVhttp://soundcloud.com/Official_Joey_Vhttp://www.youtube.com/JoeyV1985DJ Joey VJoey MarshallJoseph Mara + +766138Seger EllisSeger Pillot EllisAmerican jazz pianist, singer, composer, bandleader and occasional actor. +Born July 4, 1904 in Houston, Texas. +Died on September 29, 1995 (91 years of age). +He was married to singer [a307267]. +He was a pianist and singer in vaudeville and in night clubs, and made many records. Ellis' first recording career ended in 1931. In the late 1930s he returned with a big band of his own, known as his "Choirs of Brass Orchestra" with himself conducting and often singing vocals. The band also featured his wife as a vocalist. Later in his career, Ellis focused more on songwriting, although he continued to record sporadically as well as playing the piano. +He charted five times with his orchestra and four times as a songwriter. His orchestra's top charted songs were "When You're Smiling" in 1928 which rose to #4, and "Please Come Out of Your Dream" in 1939, which landed at #7. As a songwriter his top hit was "11:60 P.M." by Harry James and His Orchestra (co-written with James and Don George); the song made it to #8 in 1945. His song "You're All I Want for Christmas" (co-written with Glen Moore) charted three times in 1948-9; by Frankie Laine, Frank Gallager, and again by Frankie Lane the next year when it was re-released for Christmas.Needs Votehttp://en.wikipedia.org/wiki/Seger_Ellishttp://ragpiano.com/comps/sellis.shtmlhttps://www.imdb.com/name/nm0255083/Arthur StaigerBakerBud BlueD. EllisE. SegarE. SegerEbbisEllisR. EllisS, EllisS. EllisSegaSegar EllisSegerSeger Ellis Con Los Tampa Blue ArtistasTampa Blue PianistThe Tampa Blue Ensemble And Their SingerFrankie Trumbauer And His OrchestraSeger Ellis And His Choirs Of Brass OrchestraSeger Ellis And His Orchestra + +767013Brooks BowmanComposer of the jazz standard "East of the Sun (and West of the Moon)". + +B: October 21, 1913 +D: October 17, 1937 +Needs Votehttp://en.wikipedia.org/wiki/Brooks_Bowmanhttp://highlandscurrent.com/2013/11/06/1937-garrison-accident-claimed-composers-life/https://adp.library.ucsb.edu/names/108162B BowmanB. BowmanB. RowmanB.BowmanBowlandBowmanBowman - BrookBowman - BrooksBowman / BrookBowman BrooksBowman-BrookBowman-BrooksBowman/BrooksBowmenBrocks BowmanBrook BowmanBrookes/BowmanBrooks & BowmanBrooks - BowmanBrooks - BrowmanBrooks - RowmanBrooks / BowmanBrooks B BowmanBrooks B. BowmanBrooks BosmanBrooks BowanBrooks RowmanBrooks – BowmanBrooks, BowmanBrooks-B. BowmanBrooks-BowmanBrooks-BrowmanBrooks. BowmanBrooks/BowmanBrooks; BowmanBrowmanE. Bowman - S. BrooksPrinceton Triangle Club + +767110Malcolm TaylorAmerican jazz trombonistCorrectMTlrDuke Ellington And His Orchestra + +767606Stephanie FongAmerican violist.Needs VoteBoston Symphony OrchestraSan Francisco Symphony + +767643Gottfried Heinrich StölzelGottfried Heinrich StölzelProlific German Baroque composer (13 January 1690, Grünstädtel, Germany – 27 November 1749, Gotha, Germany). + +Stölzel studied at Leipzig University from 1707 to 1710, where he joined the Collegium Musicum, which had been headed by [a=Georg Philipp Telemann] before Stölzel's arrival at the University. For the next several years, he traveled across Europe, studying, teaching and composing in Breslau, Halle, Venice (where he met [a=Antonio Vivaldi]), Rome, Florence, Prague, Bayreuth, and Gera. During this time, he refused several offers of permanent employment. +In 1718, he moved to Gotha, where he remained for the rest of his life. He worked for the dukes Frederick II and Frederick III of Saxe-Gotha-Altenburg, composing a cantata each week. In 1730, he was appointed as the Kapellmeister of the court at Gotha. +[a=Johann Sebastian Bach] was said to have great respect for Stölzel. Bach's familiarity with Stölzel's music may account for the use J.S. Bach made of it in the little exercise books he created, first for his son Wilhelm Friedemann and later for his second wife Anna Magdalena. +Stölzel was one of the most prolific composers of his time. Besides numerous orchestral and chamber music pieces he wrote no less than 18 musical dramatic works, several oratorios and fairs, 12 complete cantatas, motets, and at least seven passions plus numerous secular cantatas. Most of Stölzel's music and manuscripts have been lost or destroyed, and it is estimated that only about half of his output still exists. The largest number of his works have been preserved in the castle archives Sondershausen.Needs Votehttps://en.wikipedia.org/wiki/Gottfried_Heinrich_St%C3%B6lzelhttps://www.bach-cantatas.com/Lib/Stolzel-Gottfried-Heinrich.htmhttps://web.archive.org/web/20170629173107/http://www.stoelzel.net/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103433/Stolzel_Gottfried_Heinrich?Gottfried Heinrich StölzelG. H. StoelzelG. H. StolzelG. H. StölzelG. Heinrich StölzelG.H. StoelzelG.H. StolzelG.H. StölzelG.H.StolzelGH StolzelGottfied Heinrich StölzelGottfried F. StoelzelGottfried H. StolzelGottfried H. StölzelGottfried Heinrich StoelzelGottfried Heinrich StolzelGottfried Henrich StölzelGottfried StoelzelGottfried StolzelGottfried StölzelGottfried-Heinrich StolzelGottfried-Heinrich StölzelH. StoelzelH. StolzelHeinrich StoelzelHeinrich StolzelHeinrich StölzelHeinrich StœlzelJohann Heinrich StölzelStoelzelStoezelStolzelStolzerStõlzelStölzelStölzel ?Stölzlゴットフリート・ハインリヒ・シュテルツェルシュテルツェル + +767788Aaron CoplandAaron CoplandAmerican composer. +Born November 14, 1900, in Brooklyn, New York, NY. +Died December 2, 1990, in North Tarrytown (now Sleepy Hollow), NY (aged 90). + +From the 1960s onward, Copland's activities turned more from composing to conducting. He became a frequent guest conductor of orchestras in the US and the UK and made a series of recordings of his music, primarily for [l93330].Needs Votehttps://en.wikipedia.org/wiki/Aaron_Coplandhttps://www.aaroncopland.com/https://www.loc.gov/collections/aaron-copland/about-this-collection/https://web.archive.org/web/20030804121536/https://www.sonyclassical.com/artists/copland/https://www.imdb.com/name/nm0178716/https://www.x.com/TheAaronCoplandhttps://www.facebook.com/AaronCoplandComposer/https://www.instagram.com/TheRealAaronCopland/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102466/Copland_AaronA CoplandA. CopelandA. CoplandA.CopelandA.CoplandAAron CoplandAaron CopelandAaron CoplaneAaron CoplondAron CoplandArron CopelandArron CoplandC. AronoCopelandCoplanCoplandCopland, A.Copland, AaronCopland:Warren CoplandА. КоплендАарон КоплендКопленд + +767935Chris BevanViolinistNeeds VoteChristopher BevanEnglish Chamber OrchestraThe Strange Quartet + +767943Steven Wright (5)Violist born in Oxford. He studied music at the Royal Academy of Music in London with Gwynne Edwards and later continued his studies with Frederick Grinke and David Takeno. He is a founder member of the Chamber Orchestra of Europe. He has appeared as principal with many of the UK’s leading orchestras, as well as being a soloist and has been a member of the Orchestra of the Royal Opera House, Covent Garden. Stephen now lives in Sydney Australia, working as a freelance musician in his new home city and Europe, enjoying the variety of his repertoire, from shows, film scores and pop music, to performing with some of the major orchestras and ensembles in the UK and Australia.Needs Votehttps://www.coeurope.org/member/stephen-wright/Stephen WrightSteve WrightThe Chamber Orchestra Of Europe + +767948Roger BenedictBritish-Australian conductor, classical violist (soloist, orchestral player & chamber musician), teacher, music director, writer, editor, and arranger. +He studied at the [l459222], where he also was Professor (1997-2002). From 1991 to 2000 he was First Principal Viola in the [a=Philharmonia Orchestra], London, and following that the same position in the [a=Sydney Symphony Orchestra]. Frequent guest conductor with the Sydney Symphony Orchestra, he has also been invited to appear as a conductor with other orchestras in Australasia such as the [a=Adelaide Symphony Orchestra] and [a=Tasmanian Symphony Orchestra], and in the UK with the [a=Southbank Sinfonia]. Associate Professor at [l314524]. Chief conductor at the [l482780] and Music Director of [a1754559].Needs Votehttp://rogerbenedict.com/https://www.linkedin.com/in/roger-benedict-61a92917a/?originalSubdomain=auhttps://open.spotify.com/artist/2j7o8tWgHTt4hCGdZaetarhttps://www.ayo.com.au/content/roger-benedict/gk1vsp?permcode=gk1vsphttps://www.sydney.edu.au/music/about/our-people/academic-staff/roger-benedict.htmlhttps://windsorfestival.com/profile/roger-benedicthttps://music4viola.info/benedict?l=enhttps://www.melbarecordings.com.au/artist/roger-benedictRogerBenedictPhilharmonia OrchestraSydney Symphony OrchestraRoyal Liverpool Philharmonic OrchestraThe Philharmonia Soloists + +768091Ernö OlahErnö OlahViolinist born 11 June 1948 in Budapest, Hungary.Needs VoteE. OlahE. OlâhErno OlaErno OlahErno Olah String EnsembleErnoh OlahErnö OlaErnöc Olahエルノ・オラAmsterdams Philharmonisch TrioMalando SeptetOrkest Via Nova + +768347Voltaire (5)François-Marie ArouetFrench writer, historian and philosopher, born 21 November 1694 in Paris, France, died 30 May 1778 in Paris, France.Needs Votehttp://en.wikipedia.org/wiki/VoltaireFrancois Marie VoltaireFrançois Marie Arouet De VoltaireFrançois-Marie de VoltaireVoltaireВольтер + +768601Peter EllefsonPeter EllefsonTrombonist Peter Ellefson joined the faculty of Indiana University in August 2002. Since his arrival in Bloomington, Mr. Ellefson has performed with the Indianapolis Symphony, the Chicago Symphony, the New York Philharmonic and the New York Philharmonic Brass Quintet.Needs Votehttp://www.peterellefson.com/Peter_Ellefson/Peter_Ellefson_-_Home.htmlEllefsonChicago Symphony OrchestraChicago Trombone Consort + +768643Claude Carrère Claude Léon François AyotFrench producer, born December 21, 1930, in Clermont-Ferrand, died April 9, 2014, in Paris. +Carrère started as an independent producer and soon had very big success with [a=Sheila (5)] in 1962. In 1967 he launched an own record company [l=Disques Carrere]. In the 1970s an own distribution followed. + +Not to be mistaken for [a=Claude Carrière], liner notes writer for jazz releases.Needs Votehttp://fr.wikipedia.org/wiki/Claude_Carr%C3%A8reC. CarrèreC. CarreC. CarrereC. CarreroC. CarrièreC. CarrèreC. Carrère-PetitC. CarréreC. ChirateC. carrèreC.CarrereC.CarrèreC.L. CarrereC; CarrèreCCCL. CarrèreCarereCarièreCarrEreCarreraCarrereCarreroCarrièreCarrreCarrèreCarrère ClaudeCarrèrreCarréreCarrêreCl CarrereCl CarrèreCl Et CarrèreCl. CarereCl. CarrareCl. CarrereCl. Carre’reCl. CarrèreCl.CarrereCl.CarrèreClaude CarrereCouviereD. CarrereE. CarrèreE. CarréreE.CarrèreG. CarrereG.CarrereКаррерPaul RacerCarrère et Plait + +768859Mahlon ClarkAmerican jazz clarinetist and saxophonist. +Born March 07, 1923 in Portsmouth, Virginia. +Died September 20, 2007 in Van Nuys, California. +Married to singers [a893218] (1945-1967) (divorced) followed by [a1233564] (1967-1981) (divorced) of the Lennon Sisters. + +Played with Dean Hudson, Ray McKinley, Will Bradley, Lawrence Welk, Frank Sinatra and others. He had a background in vaudeville before becoming a musician at the age of sixteen. Known for playing the clarinet solo of 'Baby Elephant Walk' (composed by Henry Mancini featured in the John Wayne movie [i]Hatari![/i] (1962).Needs Votehttps://en.wikipedia.org/wiki/Mahlon_Clarkhttps://www.imdb.com/name/nm2798607/https://adp.library.ucsb.edu/names/113921ClarkEl Muchacho (3)Mahlon B. ClarkMahlon ClarkeMailman ClardeMaylon ClarkEl Muchacho (3)Woody Herman And His OrchestraMembers Of The Benny Goodman OrchestraMahlon Clark Sextette + +768866Geert De VosGeert De VosGeert is bass trombonist with "Belgian Brass", a brass ensemble that consists of 10 of the most prominent brass players and 2 percussionists of Belgium. As a soloist Geert is active in all kind of orchestras.Needs Votehttp://website.geertdevos.net/Geert DevosOrchestre Du Théâtre Royal De La MonnaieThe Bone Project + +769459Loren Paul CaplinCorrect + +769655Micky DCorrect + +769839Pino CalviGiuseppe Franco CalviPino Calvi was a composer, pianist and conductor, born 1930 in Voghera and died 1989 in Palazzina di Castana. he participated himself at the Sanremo Festival in 1957 with his composition Un sogno di cristallo, 1962 with L'ombrellone and in 1963 with Non sapevo. He conducted the orchestra at the festivals of 1963, 1964 and 1966. Calvi composed numerous soundtracks of Italian movies and for the Italian TV station RAI.Needs Votehttps://en.wikipedia.org/wiki/Pino_Calvihttps://it.wikipedia.org/wiki/Pino_Calvihttps://www.imdb.com/name/nm0130873/https://myspace.com/pinocalvitributepageCaleiCalvertCalviCalvi PinoD. CalviDi CalviG. CalviM.tro Pino CalviM° CalviP. CalviP. ClaviP.CalviPino ClaviPino ClawiКальвиJ. BasfortPino Calvi E La Sua OrchestraPino Calvi E Il Suo QuartettoPino Calvi E Il Suo Complesso + +772042Jérôme MarchandViolinistNeeds VoteJ. MarchandJérome MarchandOrchestre National De FranceZ QuartettQuatuor Phillips + +772145Kerry ChaterKerry Michael ChaterCanadian singer / songwriter, pop bassist / guitarist and author. Born August 7, 1945 in Vancouver, British Columbia; died February 4, 2022. He was married to [a1664685].Needs Votehttps://www.westcoast.dk/artists/c/kerry-chater/http://www.chatersongs.com/kerrysbio.htmlhttps://en.wikipedia.org/wiki/Kerry_Chaterhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=60651&subid=3http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=2086986&subid=3CharterChaterK ChaterK,ChaterK. CatherK. CharterK. ChaterK. ChatterK.ChaterK.M. ChaterKenny ChatterKerrie ChaterKerry CharterKerry ChatersKerry ChatterKerry ShaferKerry ShaterShaterShatterT. ChaterTerry Chaderケリー・チェイターGary Puckett & The Union Gap + +772490Luciano BerettaItalian songwriter (Milan, 1st of January, 1928 - Caprino Veronese, Jan. 11, 1994). He was also a lyricist, singer and dancer. As author he wrote about 1.000 songs.Needs Votehttps://www.imdb.com/name/nm0073642/?ref_=nv_sr_srsg_0https://it.wikipedia.org/wiki/Luciano_BerettaB. LucianoBapettaBarcitaBarettaBaretteBarlettaBepettaBerattaBerbettaBereppaBeretaBerettBerettaBeretta,LBeretteBerettiBerretaBerrettaBerttaBetettaBettettaBigazziBorettaBorrettaBrettaD. BerettaDerettaDi 'BerettaDi BerettaEl BerettaErettaFuscoHuciano BerettaL BarettaL BerettaL. BerettaL. BarettaL. BeretaL. BeretiL. BeretrtaL. BerettaL. BerettoL. BerottaL. BerretaL. BerrettaL. BrettaL. Di BerettaL.BerettaLucianoPerettaPerretaR. BerettaVerettaZapponiБеретаБереттаЛ. БереттаベレッタCaperdoni + +772749Oett "Sax" MallardOett M. Mallard.American jazz and blues reed player (alto/tenor sax, clarinet), born September 2, 1915 in Chicago, Illinois, died August 29, 1986 in the same city. +Under his own name, Mallard recorded for Aristocrat in 1947, Checker in 1951-1952, and Mercury in 1952. +He accompanied numerous Chicago artists, such as Eddie Boyd, Earl Hooker, Rosetta Howard, Sunnyland Slim, Tampa Red, and Andrew Tibbs. +Needs Votehttps://adp.library.ucsb.edu/names/355351"Sax" MallardDell MallardMallardO. MallardOeth "Sax" MallardOett M. MallardS. MallardSax MallarSax MallardSax RallardDuke Ellington And His OrchestraAl Smith OrchestraRoosevelt Sykes And His Original HoneydrippersThe Chicago All StarsJump Jackson And His BandThe Sax Mallard SextetSax Mallard's ComboBig Bill Broonzy & His Big Little OrchestraSax Mallard & His Orchestra + +773286Barry CastleBritish horn player.Needs VoteRoyal Philharmonic OrchestraThe David Lindup Big BandMike Batt Orchestra + +773466Teppo TuominenFinnish cellist.Needs Vote + +773467Pentti NevalainenPentti Heikki NevalainenA Finnish violinist. Born on May 22, 1933 in Tampere, Finland and died on July 20, 2020 in Helsinki, Finland.Needs VoteNewskyPentti " Newsky " NevalainenPentti "Newski" NevalainenPentti "Newsky" NevalainenPentti H. NevalainenPentti Newsky Nevalainen + +773470Antero KasperAntero KasperFinnish french horn player, born 17 May 1929 in Helsinki, Finland, died 19 February 2010 in Helsinki, Finland. CorrectOlli Hämeen Orkesteri + +773547Juan Lucas AisembergArgentine / Italian violist, born in 1967 in Budapest, Hungary. +Son of [a773544].Needs Votehttp://www.deutscheoperberlin.de/de_DE/ensemble/juan-lucas-aisemberg.22826#http://www.afmberlin.de/en-gb/manolis-vlitakisJuan-Lucas AisembergNovi Tango 6Orchester Der Deutschen Oper BerlinTrio Novi TangoQuintet Of The Deutsches Kammerorchester BerlinVibratanghissimoSwonderful Orchestra + +773618Nick WortersNicholas WortersEnglish classical double bass player. +He studied at the [l527847]. Former longtime Sub-Principal Double Bass of the [a=London Symphony Orchestra] (1987-2015).Needs Votehttps://www.mandy.com/aa/voice-artist/nic-wortershttps://www.feenotes.com/database/artists/worters-nicholas/Nicholas WortersLondon Symphony OrchestraThe Martyn Ford OrchestraThe New Symphonia + +773624Liz ButlerElizabeth ButlerViolist.Needs VoteElizabeth ButlerRoyal Philharmonic Orchestra + +773631Jonathan KahanClassical violinist.Needs VoteNew London ConsortThe Academy Of Ancient MusicLondon Classical PlayersHanover Band + +773771Cathy MetzViolinist.Needs VoteCath MetzCatherine MetzKathy MetzThe Heart StringsOrpheus Chamber Orchestra + +773874Carlos GarcíaCarlos Juan Pedro García EcheverryArgentine pianist, composer, arranger and orchestra leader (1914-2006), he has led the "Orquesta del Tango de la Ciudad de Buenos Aires"Needs Votehttps://www.todotango.com/creadores/ficha/936/Carlos-GarciaC. GarcíaCarlos GarciaCarlos Garcia Y Su OrquestaCarlos Juan Pedro GarcíaGarcia EtcheverryCarlos Garcia Y Su Gran Orquesta TipicaOrquesta Del Tango De Buenos AiresHawaiian Serenaders (4)Carlos García Y Su Orquesta TípicaOrquesta Sincopa Y RitmoCarlos Garcia & Tango All Stars + +773999Hans DullaertDutch horn playerNeeds VoteSchönberg EnsembleNieuw Sinfonietta Amsterdam + +774257Art KoenigAmerican jazz bassist.Needs VoteA. KoenigArt KoeningArthur KoenigWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +774302Edward H. TarrEdward Hankins TarrEdward Tarr was an American wind instrument player (born June 15,1936 in Norwich, Connecticut, USA – died March 26, 2020).Needs Votehttp://www.tarr-online.de/https://web.archive.org/web/20220125204844/https://www.edward-tarr.com/https://en.wikipedia.org/wiki/Edward_Tarrhttps://www.bach-cantatas.com/Bio/Tarr-Edward.htmE. H. TarrE. TarrE. W. TarrE.H. TarrEdward H TarrEdward H. Tarr And Ensemble Of Antique InstrumentsEdward TarrTarrTrumpetensemle Edward H. TarrKölner Ensemble Für Neue MusikMünchener Bach-OrchesterCappella Musicale Di S. Petronio Di BolognaConcentus Musicus WienCollegium AureumLiszt Ferenc Chamber OrchestraCapella SavariaThe Edward Tarr Brass EnsembleArchiv Produktion Instrumental EnsembleEnsemble Instrumental De LausanneDie Fanfare Der PoesieInstrumentalensemble Hans-Martin LindeBaroque Trumpet and Trombone Group + +774481Louis DevosBelgian conductor and tenor, born 15 June 1926 in Brussels, Belgium and died 22 January 2015 in Brussels, Belgium.Correcthttp://www.bach-cantatas.com/Bio/Devos-Louis.htmDevosL. DevosLouis De Vos + +774482Robert KohnenRobert KohnenBelgian harpsichordist and organist (born June 2, 1932 in St. Vith, Belgium - died December 26, 2019 in Dilbeek, Belgium), playing baroque repertoire but also avant-garde music.Needs VoteKohnenR. KohnenMusiques NouvellesIl FondamentoLa Petite BandeRicercar ConsortAlarius-EnsembleThe Kuijken Ensemble + +774483Janine RubinlichtJanine Rubinlicht (1932 — 1989) was a classical violinist.Needs VoteJ. RubinlichtJanine RubenlichtJeanine RubinlichtJeannine RubinlichtRubinlichtMusiques NouvellesLa Chapelle RoyaleConcentus Musicus WienLa Petite BandeMusica PolyphonicaAlarius-Ensemble + +774485Jules BastinJules Bastin (18 March 1933 – 2 December 1996) was a Belgian operatic bass.Correcthttp://en.wikipedia.org/wiki/Jules_BastinBastinJ. BastinJules Bastin, Don Alfonso + +774594Erik RalskeAmerican classical horn player. Hornist for the New York Symphonic from 1993 to 2011.Needs VoteEric RalskeNew York PhilharmonicThe Metropolitan Opera House Orchestra + +774848Rude De LucaAmerican jazz trombonist. + +[b]For screenwriter/actor, see [a=Rudy De Luca].[/b]Needs VoteRudy De LucaRudy De LuccaRudy DeLucaRudy deLucaGeorgie Auld And His Orchestra + +774849Tracy AllenAmerican jazz trombonist.Needs VoteGeorgie Auld And His Orchestra + +774850Gerald Valentine (2)Gerald Graham ValentineAmerican jazz trombonist and arranger. Born on September 13, 1914 in Chicago - died in October 1983.Correcthttps://en.wikipedia.org/wiki/Jerry_Valentinehttps://adp.library.ucsb.edu/names/357314G. ValentineGerald "Gerry" ValentineGerald "Jerry" ValentineGerald VelentineGerry ValentineJ. ValentineJerry ValentinJerry ValentineVaentineValentineVeletineBilly Eckstine And His OrchestraEarl Hines And His Orchestra + +774851Shorty McConnellMaurice McConnellJazz trumpet player from the 1940s-50sNeeds VoteMaurice "Shorty" McConnellMaurice McConnellMaurice McDonnellMcConnellS. McConnellShorts McConnellShorty Mc ConnellShorty McConnelShorty McDonnellBilly Eckstine And His OrchestraEarl Hines And His OrchestraDeLuxe All Star BandThe Lester Young SextetLester Young And His Band + +774852Ed CunninghamJazz bassistNeeds VoteEddie CunninghamTeddy Powell And His OrchestraGeorgie Auld And His OrchestraSam Donahue And His Orchestra + +774853Barry Ulanov And His All Star Metronome JazzmenCorrectBarry Ulanov & His All Star Metronome JazzmenBarry Ulanov & His Metronome All-StarsBarry Ulanov And His All-Star Metronome JazzmenBarry Ulanov's All-StarsBuddy RichCharlie ParkerTommy PotterLennie TristanoFats NavarroBarry Ulanov + +774854Georgie Auld And His OrchestraNeeds VoteAuldGeorge Auld & Orch.George Auld And His OrchestraGeorgie Aud's OrchestraGeorgie AuldGeorgie Auld & His Orch.Georgie Auld & His OrchestraGeorgie Auld & Orch.Georgie Auld & OrchestraGeorgie Auld And OrchestraGeorgie Auld Et Son OrchestreGeorgie Auld His Tenor Sax And His OrchestraGeorgie Auld OrchestraGeorgie Auld U. OrchesterGeorgie Auld's OrchestraGeorgie Auld, His Magic Ténor Sax And OrchestraL'orchestre De Georgie AuldThe George Auld OrchestraThe Georgie Auld OrchGeorgie Auld And His Rockin' RhythmMaynard FergusonChuck GentryNeal HeftiBarney KesselWilbur SchwartzHank FreemanArnold RossAlvin StollerBabe RussinAl CohnJimmy RowlesJoe MondragonBilly ByersDave BarbourFrank RosolinoGeorgie AuldConrad GozzoRay LinnManny KleinSerge ChaloffTommy PedersonSkeets HerfurtAl HendricksonGeorge ArusHenry AdlerAl AvolaBob KitsisChuck PetersonTony PastorRalph HawkinsSi ZentnerGeorge SchwartzMorris RaymanPete TerryJoe ComfortJohn Anderson (2)Manny AlbamJohn RotellaTed Nash (2)Sonny BermanRude De LucaTracy AllenEd CunninghamSam ZittmanMike DatzWilliam Parker (2)Gene ZanoniArt HouseGus DixonIrv CottlerClint NeagleyLou FrommJack SchwartzKarl KiffeJohn AltwergerIrving RothNorman FayeMusky RuffoJerry DornHoward TerryJoe MegroHarry BissJack EagleRon Perry (3)Nelson ShelladayBuddy Christian (2)Red SchepsBob Lord (2)Mike DatzenkoHarry PalsingerDick HorvathRoger Smith (35)Joe PellicaneManny Fox (2) + +774855Tony Scott And His Down Beat Club SeptetCorrectTony Scott And His Down Beat SeptetTony Scott And His SeptetTony Scott SeptetSarah VaughanDizzy GillespieTony Scott (2)Gene RameyBen WebsterJimmy Jones (3)Trummy YoungEddie Nicholson + +774857John MalachiAmerican jazz pianist. +born in Red Springs, North Carolina on September 6, 1919, and grew up in Durham, North Carolina. +Died February 11, 1987 (aged 67) Washington, D.C., U.S.Needs Votehttps://en.wikipedia.org/wiki/John_Malachihttps://adp.library.ucsb.edu/names/329118James P. JohnsonMalachiBilly Eckstine And His OrchestraSarah Vaughan And Her TrioLouis Jordan And His Orchestra + +774859Connie WainwrightJazz guitarist in Billy Eckstine's bandNeeds Votehttps://adp.library.ucsb.edu/names/112222Conie WainwrightBilly Eckstine And His OrchestraDeLuxe All Star BandJimmy Mundy OrchestraHot Lips Page And His Band + +774865Nat JaffeNathaniel JaffeAmerican swing jazz pianist, born January 1, 1918 in New York City, New York, USA, died August 5, 1945 in the same city. +Jaffe played with [a884197], [a270028], [a348955], [a33589], [a38201], [a301372], [a8284] and others. He was married to singer [a2483144].Needs Votehttps://en.wikipedia.org/wiki/Nat_Jaffehttps://adp.library.ucsb.edu/names/111516JaffeN. JaffeNat JaffeeNat JeffNat JeffeNathaniel JaffeLouis Armstrong And His OrchestraJack Teagarden And His OrchestraCharlie Barnet And His OrchestraNat Jaffe TrioCharlie Barnet And His Rhythm MakersThe V-Disc JumpersVanderbilt All Stars + +774866Marion "Boonie" HazelTrompet player.Needs VoteBoomie HazelBoonie HazelMarion HazelMaron HazelMarvin HazelRonnie HazelBilly Eckstine And His OrchestraRoy Eldridge And His Orchestra + +774867Sam ZittmanNeeds VoteGeorgie Auld And His Orchestra + +774875Mike DatzJazz trombonistNeeds VoteMichael DatzMickey DatzMike DatzenkoGeorgie Auld And His Orchestra + +774876Hal MitchellRhythm & blues and jazz trumpet player and bandleader, who recorded for Manor in 1944 and 1947, and for Debut in 1953. +He also recorded with Louis Jordan in 1949, and with Lucky Millinder in 1952.Needs VoteLynneMitchellLouis Jordan And His Tympany FiveHal Mitchell FourHal Mitchell And His OrchestraHal Mitchell And the Mad Men + +774877Ed BurkeEdward BurkeAmerican jazz trombonist, born January 13, 1909 in Fulton, MO. + +For [a52835]'s visual director please use [a3774880]. + +For the vintage jazz recordings producer / engineer please use [a4294271].Needs Votehttps://en.wikipedia.org/wiki/Ed_Burke_(musician)BurkeEdward "Ed" BurkeEdward BurkeBuddy Johnson And His OrchestraEarl Hines And His OrchestraCootie Williams And His OrchestraFrankie Franko & His LouisianiansWalter Barnes Royal Creolians + +774879William Parker (2)US drummerNeeds VoteGeorgie Auld And His OrchestraGeorge Treadwell Orchestra + +774881Lou PrisbyJazz Saxophonist.CorrectL. PrisbyLouis PrisbyTommy Dorsey And His OrchestraArtie Shaw And His Orchestra + +774883Alfred "Chippy" OutcaltJames Alfred OutcaltAmerican jazz trombonist, usually going by the name Alfred but occasionally using his first name, James. His nickname was variously given as Chippy, Chips or Chippie.Needs Vote"Chippy" OutcaltA. OutcaltAl OutcaltAlfred "Chippy" OurcaltAlfred "Chips" OutcaltAlfred OutcaltChipe OutcaultChippie OutcaltChippy OutcaltChips OutcaltChops OutcaltHarold OutcaltJames "Chips" OutcaltOutcaultLionel Hampton And His OrchestraBilly Eckstine And His OrchestraHal Singer SextetGene Ammons And His BandSavoy Dictators + +774884Gene ZanoniJazz saxophonistNeeds VoteGeorge ZanoniTeddy Powell And His OrchestraGeorgie Auld And His Orchestra + +774885Jimmy Smith (5)Jazz bassist, Jimmy Smith could also played bassoon, baritone sax, tuba, and contrabass. +Formerly a house player at the Cotton Club from the '20s and '30s he's mostly known as part of many [a=Cab Calloway] rhythm sections. +Needs VoteJemmy SmithCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraThe Missourians + +774887Jesse DrakesAmerican jazz trumpet player. +Born : October 22, 1924 in New York City, New York. +Died : May 01, 2010 in New York City, New York + +Jesse played with : "Al Cooper's Savoy Sultan", Cab Calloway, Sid Catlett, J.C. Heard, Eddie Heywood, Lester Young, Deke Watson, Sarah Vaughan, Harry Belafonte, Gene Ammons, Sonny Stitt, Louie Bellson, Duke Ellington and others. + +Needs VoteJess DrakesJesse DrakeJessie DrakeJessie DrakesLouis Drakeジェシー・ドレイクスThe Lester Young SextetLester Young And His BandLester Young QuintetLester Young And His OrchestraLester Young All-Stars Quintet + +774888Clarence BreretonJazz trumpet player, nicknamed "Minnow", born 1909 in Baltimore, Maryland, died 1954 in New York. +Played with [a=Noble Sissle] 1932-1938, and with [a=John Kirby] in 1946.Needs VoteC. BreretonNoble Sissle And His OrchestraNoble Sissle SwingstersBuster Bailey's Six + +774889Art HouseAmerican jazz trumpeter.Needs VoteGeorgie Auld And His Orchestra + +774890Gus DixonTrombonist of the Swing EraNeeds Votehttps://www.allmusic.com/artist/gus-dixon-mn0001702724/creditsGus DicksonAugustino IschiaArtie Shaw And His OrchestraGeorgie Auld And His Orchestra + +775038Dante PanzutiDante Panzuti.Italian songwriter, composer, producer and liner notes author. Brother of [a932491]. + +Born June 8th, 1921 in Pietra Ligure, Italy. +Died June 5th, 2012 in Milan, Italy. + +He co-founded [l=Play Records (17)].Needs Votehttps://it.wikipedia.org/wiki/DanpaA. PanzutiD. PanzutiD.PanzutiDampaDanpaDante PadhyeDante PazutiPanzutiPanzuti / DanpaPanzuttiV. PanzutiダンバーDanpaGirot + +775647Don EhrlichViola player. After a year as Principal Viola in the Toledo Symphony, he came to the San Francisco Symphony in 1972, where he was promoted to Assistant Principal Viola. He retired from the Symphony in 2006 after 34 years.Needs VoteDon A. EhrlichDonald EhrlichSan Francisco SymphonyAurora String QuartetThe Stanford String Quartet + +775649Virginia BakerVirginia Voigtlander BakerAmerican violinist, born 1922 and died in November 2014.Needs VoteSan Francisco SymphonyThe Glendale Symphony OrchestraKansas City PhilharmonicThe San Francisco Masters Of Melody + +775650Zaven MelikianAmerican violinist, originally from Serbia. Died 6 February 2024.Needs VoteSan Francisco SymphonySan Francisco Opera Orchestra + +775657Jeremy MerrillJeremy John MerrillAmerican horn player, born 1932 in San Mateo, California and died 6 June 2013 in Larkspur, California.Needs VoteJeremy J. MerrillSan Francisco SymphonySan Francisco Opera Orchestra + +775665Verne SellinAmerica violinist and conductor, born 5 May 1921 and died 10 January 2001.Needs VoteSan Francisco Symphony + +775666Nancy EllisViola player.Needs VoteNancy R. EllisSan Francisco SymphonyThe Caledonia Soul Orchestra + +775858Paul SextonUK based freelance print and broadcast journalist, he has been writing about music since 1977 when he started his career at Record Mirror. He has contributed to various publications including Billboard in the USA. + +His work in radio began as an interviewer and writer for the syndicated weekly British show Rock Over London, for which he soon became producer and presenter throughout the 1990s.Needs Votehttps://www.rocksbackpages.com/Library/Writer/paul-sexton + +775872Anthea CoxFlutist.Needs VoteRoyal Philharmonic Orchestra + +775992Евгений ЕвтушенкоЕвгений Александрович Гангнус (English: Yevgeny Aleksandrovich Gangnus)Евгений Евтушенко (English: Yevgeny Yevtushenko; born July 18, 1933, Zima, East-Siberian Krai (now Irkutsk Oblast), USSR - died 1 April 2017, Tulsa, Oklahoma, USA) was a Soviet and Russian poet, writer, director, screenwriter and actor. + +His name can also be transliterated as Evgenij Aleksandrovič Evtušenko, Jewgeni Jewtuschenko or Evgueni Evtouchenko, among others. Needs Votehttp://www.evtushenko.net/http://ru.wikipedia.org/wiki/Евтушенко,_Евгений_Александровичhttp://en.wikipedia.org/wiki/Yevgeny_Yevtushenkohttp://www.kirjasto.sci.fi/jevtusen.htmE. EvituscenkoE. EvtouchenkoE. EvtuschenkoE. EvtushenkoE. EvtušenkoE. JevtuschenkoE. JevtušenkaE. JevtušenkoE. JewtuszenkoE. YevtushenkoE.EvtushenkoEugeni EutushenkoEugeni EvtushenkoEugène EvtouchenkoEutuchenkoEvgeni EvtuckenkoEvgeni EvtushenkoEvgenii EvtushenkoEvgenij EvtuscenkoEvgenij EvtusenkoEvgeniy EvtushenkoEvgeniy YevtushenkoEvgenni YevtushenkoEvgenui EvtouchenkoEvgeny EvtushenkoEvgheni EvtușenkoEvgueni EvtouchenkoEvgueni EvtuchenkoEvguénï EvtouchenkoEvtoutchenkoEvtuscenkoEvtusenkoEvtushenkoJ. JevfushenkoJ. JevtusenkoJ. JevtushenkoJ. JevtušenkaJ. JevtušenkoJ. JevtušenskoJ. JewtuschenkoJevgeni JevtusenkoJevgeni JevtushenkoJevgeni JevtušenkoJevgenij JevtusenkoJevgenij JevtushenkoJevgenij JevtusjenkoJevgenij JevtušenkoJevgenij JevtysunkoJevgenyij JevtusenkoJevtuschenkoJevtusenkoJevtushenkoJevtušenkoJewgeni JewtoschenkoJewgeni JewtuschenkoJewgenij JewtuschenkoJewtuschenkoY. YevtushenkoYe. YevtushenkoYegveny YevtushenkoYevgen YevtushenkoYevgeni YevtushenkoYevgenii YevtushenkoYevgeny Aleksandrovich YevtushenkoYevgeny YevtoushenkoYevgeny YevtuschenkoYevgeny YevtusekoYevgeny YevtushenkoYevtushenkoΓεβγκένη ΓιεφτουσένκοΓιεφτουσένκοЕ. ЕвтушенкоЕ.ЕвтушенкоЕв. ЕвтушенкоЕвг ЕвтушенкоЕвг. ЕвтушенкоЕвтушенкоЕвтушенко Е. А.יבגני אלכסנדרייביץ' יבטושנקויבגני יבטושנקו + +776650Maurizio Ben OmarItalian classical percussionist who also studied piano and compositionNeeds VoteEuropa GalanteEnsemble Di Percussioni NaqqaraEnsemble OggimusicaEmpty Words Percussion Ensemble + +776653Carlo De MartiniClassical violin & viola instrumentalistNeeds Votehttp://www.carlodemartini.itC. De MartiniDe MartiniMartiniStormy SixMacchina MaccheronicaIl Giardino ArmonicoEnsemble "Concerto"La Gaia ScienzaIl QuartettoneOrchestra Aglàia + +776656Anahi CarfiClassical violinistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +776660Marco ScanoClassical cellist.Needs VoteOrchestra Del Teatro Alla ScalaOrchestra Di Padova E Del VenetoQuintetto BoccheriniCuarteto BrahmsCarme, Società Italiana di Musica da Camera + +776661Amilcare PonchielliAmilcare Ponchielli (August 31, 1834 – January 16, 1886) was an Italian composer, mainly of operas. He won a scholarship at the age of nine to study music at the Milan Conservatory, writing his first symphony by the time he was ten years old. Two years after leaving the conservatory he wrote his first opera.Needs Votehttps://en.wikipedia.org/wiki/Amilcare_Ponchiellihttps://www.britannica.com/biography/Amilcare-Ponchiellihttps://adp.library.ucsb.edu/names/104065A PonchielliA. PoncelliA. PonchieliA. PonchiellA. PonchielleA. PonchielliA. PonchinelliA. PonchíelliA. PoncieliA. PoncielloA. PonkieliA. PonkielliA. PonkjelisA. PonschielliA.PonchielliAlmicare PonchielliAmicare PonchielliAmil Care PonchielleAmilcar PonchielliAmilcare PoncchielliAmilcare PonchieliAmilcare PonchiellaAmilcare PoncielliAmilcaro PonchiolliAmilchare PonchielliBelliniG. PonchielliL. PonchielliPochielliPoncbielliPoncheilliPonchelliPonchieliPonchiellePonchielleiPonchielliPonchielli A.Ponchielli, AmilcarePonchilelliPonchinelliPoncielliPonicelli, AmilcarePonichelliPonichielliPonkielliPonkijeliPucinettiPuncinettiА. ПонкиелиА. ПонкиеллиА. ПонкьеллиА. ПонхиеллиА.ПонкьелиАм. ПонкиелиПонкiеллиПонкиелиПонкиеллиПонкинеллиПонкьеллиסונקיליポンキエルリ + +776674Ovidio DanziItalian classical bassoonistNeeds VoteO. DanziOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla ScalaCarme, Società Italiana di Musica da Camera + +776678Glauco CambursanoItalian classical wind instrumentalistNeeds VoteG. CambursanoOrchestra Del Teatro Alla ScalaI Solisti Di Milano + +776690Giuseppe BodanzaItalian classical wind instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Di MilanoI Solisti Del Teatro Alla ScalaCarme, Società Italiana di Musica da Camera + +776851David OhanianFrench horn player.Needs VoteDave OhanianDavid ObanianBoston Symphony OrchestraThe Canadian BrassThe Transatlantic Horn Quartet + +776852Rolf SmedvigRolf Thorstein SmedvigRolf Smedvig (born September 23, 1952, Seattle, Washington, USA – died April 27, 2015, West Stockbridge, Massachusetts, USA) was an American trumpeter and founder of [a776863]. He served as the principal trumpet of the [a395913] from 1979 until he left in 1981. During his career as a soloist and chamber musician he gave approximately 100 concert appearances each year and visited over 35 countries.Needs Votehttp://www.allmusic.com/artist/rolf-smedvig-mn0000690333http://www.cami.com/?webid=404http://www.answers.com/topic/rolf-smedvig-classical-musicianhttps://en.wikipedia.org/wiki/Rolf_SmedvigR. SmedvigSmedvigBoston Symphony OrchestraThe Empire Brass QuintetBoston Symphony Chamber Players + +776858Norman BolterNorman Howard BolterAmerican trombonist and composer who joined the Boston Symphony in 1975 at age 20. Former principal trombonist of the Boston Pops.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +777168Emmanuel PadieuClassical hornistNeeds VoteE. PadieuЕммануел ПадьоЕммануэль ПадьоIl Seminario MusicaleLes Talens Lyriques + +777285Birgitte ØlandClassical cellist.Needs VoteBirgitte OlandDR SymfoniOrkestretAros Quartet + +777458Sexteto MayorCorrectSexeteto MayorSexteto "Mayos"Sexteto MajorSexteto Mayor OrchestraThe Sexteto MayorThe Sexteto Mayor OrchestraMario AbramovichLuis StazoKicho DiazEduardo WalczakOscar PalermoOsvaldo AulicinoJosé LibertellaReynaldo Nichele + +777471Néstor MarconiNéstor Eude MarconiArgentinian bandoneon player, arranger and composer (b. 1945). He started in the 60s on José Basso's orchestra and later with Enrique Mario Francini y Su Sexteto. In the 70s he founded 'Vanguatrio' with Héctor Console and Horacio Valente. Also formed 'Nuevo Quinteto Real'.Needs Votehttps://es.wikipedia.org/wiki/N%C3%A9stor_MarconiMarconiN. MarconiNestor E. MarconiNestor MarconeNestor MarconiNéstor E. MarconiNéstor Marconi TrioJosé Basso Y Su Orquesta TípicaNéstor Marconi QuintetEnrique Mario Francini y Su SextetoVanguatrioNuevo Quinteto RealNestor Marconi QuartetOcteto De Buenos AiresOrquesta Metropolitana Del Tango + +777536David RoyDavid RoyClassical tenor vocalist. + +For the A&R man, see [a=David Roy (2)]. +For the indie pop guitarist and songwriter, see [a=David Roy (3)].Correcthttps://www.imdb.com/name/nm7664160/The English Chamber ChoirThe SixteenThe Monteverdi ChoirParnassus Ensemble of London + +777784Laszlo VargaHungarian-American classical cellist, born 13 December 1924: died 11 December 2014 +He was educated at the Franz Liszt Royal Academy of Music in Budapest, studying with Adolf Schiffer and [a=Leó Weiner]. For eleven years he was principal cellist with the New York Philharmonic, performing under both [a=Dimitri Mitropoulos] and [a=Leonard Bernstein].Needs Votehttp://en.wikipedia.org/wiki/Laszlo_Varga_%28cellist%29László VargaVargaラスズロ・ヴァルガNew York PhilharmonicBudapest Symphony OrchestraThe Galimir TrioCanadian String Quartet + +777937Manfred StoppacherManfred Alois StoppacherAustrian trumpet player, composer and bandleader, born 29 April 1941 in Althofen, Austria.Needs Votehttp://www.vso.or.atManfred StoppachierManfred StoppackerStoppacherStoppy MarkusRIAS TanzorchesterTeddy Ehrenreich Big BandOliver Nelson And The "Berlin Dreamband"Original Swingtime Big BandTed Evans And His BigbandBig Band SüdOrchester Manfred Stoppacher + +777941Addy FeuersteinAdam FeuersteinGerman composer, arranger and multi-instrumentalist (flute, saxophone, vibraphone, accordion, organ), born May 30th, 1927 in Mannheim, Germany.Needs Votehttps://riasbigband-berlin.de/bilder/A. FeuersteinA.FeuersteinAdam "Adi" FeuersteinAddi FeuersteinAddie FeuersteinAdi FeuersteinAdi FeuerstienAdidas FeuersteinAdie FeuersteinFeuersteinMarc VanessaRIAS TanzorchesterGünter-Noris-QuintettThe 18th Century CorporationWolfgang Lauth SeptettOliver Nelson And The "Berlin Dreamband"Siegfried Schwab & Trio + +777994Judith PacquierFascinated by Italian music of the early 17th century, and after studying recorder, analysis and music history, Judith Pacquier very quickly devoted herself to her favourite instrument: the cornet à bouquin. She followed the teaching of William Dongois and Jean-Pierre Canihac, whose class she joined at the CNSMD in Lyon to obtain her DNESM in 2001. In 2008, she co-founded the ensemble [a=Les Traversées Baroques] with [a=Etienne Meyer] and acts as Direction Artistique.Needs VoteLe Concert D'AstréeEnsemble ElymaLes Sacqueboutiers De ToulouseDoulce MémoireLa Chapelle RhénaneCappella MediterraneaLe Concert BriséLes Traversées BaroquesTrinitatis KammerorkesterEnsemble Altapunta + +778002Robert VanryneClassical trumpeter and period instrument trumpet maker + +Born in Hertfordshire 1963 +Finalist at the age of fifteen in the BBC Young Musician of the Year competition +Studied trumpet at the Royal College of Music with Michael Laird. + +Robert Vanryne recorded previously unrecorded pieces for early chromatic trumpet, +including works composed for various types of valve-trumpet, keyed-trumpet and cornet. +Robert Vanryne recorded on historical instruments, either built or renovated in his own workshop.Needs VoteRobert Van RyneRobert VanrijneRobert VanrynRobert van RyneVan RyneVanryneOrchestre Révolutionnaire Et RomantiqueCollegium VocaleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Lautten CompagneyBarocktrompeten Ensemble BerlinGabrieli PlayersDe Nederlandse BachverenigingJohann Rosenmüller EnsembleCapella Thuringia + +778285Wayne BarringtonWayne R. BarringtonAmerican horn player, born 13 April 1924 in Schenectady, New York and died 23 July 2011 in Austin, Texas.Needs VoteW. BarringtonLos Angeles Philharmonic OrchestraChicago Symphony OrchestraPittsburgh Symphony OrchestraSan Antonio Symphony Orchestra + +778412Nat KipnerNathan KipnerAustralian producer, songwriter, label executive, publishing company owner. +Born October 2, 1924 in Dayton, Ohio, USA. Died December 1, 2009 in USA (aged 86). +Father of producer [a=Steve Kipner]. + +Best known as the owner of Australian label [l=Spin] who released many [a=Bee Gees] recordings in that territory. He is also known as the co-songwriter of "You Deserve a Break Today" for McDonald's, which was the song "We're Together" (written by [a=Al Ham], [a=Kevin Gavin] and [a=Sid Woloshin]). "We're Together" was first released by The Hillside Singers in 1971.Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=185955&subid=0http://www.billboard.com/biz/articles/news/global/1261998/bee-gees-former-label-boss-nat-kipner-dieshttp://www.milesago.com/Mainbody.htmJ. KipnerKipenerKipnerKipperKippnerKitnerM. KipnerN KiplerN KipnerN. KilpnerN. KipherN. KipnerN. KipperN. KnipnerN.KipnerNathan KipnerNatt Kipnerナット・キプナー + +778532Polish National Radio Symphony OrchestraNarodowa Orkiestra Symfoniczna Polskiego RadiaPolish National Radio Symphony Orchestra, founded in 1935, and based in Katowice since 1945. Please use this profile if you're not sure which name variant to choose. + +Name changes: +1935 - July 31, 1947: [a=Orkiestra Symfoniczna Polskiego Radia] (Polish Radio Symphony Orchestra) +August 1, 1947: [a=Wielka Orkiestra Symfoniczna Polskiego Radia], or WOSPR (Polish Radio Grand Symphony Orchestra) +March 7, 1953: [a=Wielka Orkiestra Symfoniczna Polskiego Radia W Stalinogrodzie] (Polish Radio Grand Symphony Orchestra in Stalinogród) +December 20, 1956: [a=Wielka Orkiestra Symfoniczna Polskiego Radia], or WOSPR (Grand Symphony Orchestra of Polish Radio) +September 1, 1968: [a=Wielka Orkiestra Symfoniczna Polskiego Radia I Telewizji], or WOSPRiTV (Grand Symphony Orchestra of Polish Radio and Television) +January 1, 1994: [a=Wielka Orkiestra Symfoniczna Polskiego Radia W Katowicach], or WOSPR (Grand Symphony Orchestra of Polish Radio in Katowice) +February 1, 1999: [a=Narodowa Orkiestra Symfoniczna Polskiego Radia], or NOSPR (Polish National Radio Symphony Orchestra)Needs Votehttps://nospr.org.pl/https://www.facebook.com/NarodowaOrkiestraSymfonicznaPolskiegoRadia/https://www.youtube.com/channel/UCOTYTsf82BCm09n3qUg7XHAhttps://x.com/nospr_officialhttps://www.instagram.com/nospr/Katowice Radio Symphony OrchestraNationaal Symfonie-Orkest Van De Poolse RadioNationaal Symfonie-orkest van de Poolse RadioNational Polish Radio Symphony OrchestraNational-Sinfonie-Orchester Des Polnischen RundfunksNationales Polnisches Radio-Symphonie OrchesterNationales Rundfunk-Sinfonieorchester PolenOrchestra Sinfonica Della Radio PolaccaOrchestre De La Radio PolonaiseOrquestra Sinfónica De Rádio Nacional PolacaPolish NRSOPolish National OrchestraPolish National RSOPolish National Radio OrchestraPolish National Radio SOPolish National Radio Symphony Orchestra (Katowice)Polish National Radio Symphony Orchestra In KatowicePolish National Radio Symphony Orchestra, KatowicePolish National SymphonyPolish National Symphony OrchestraPolish Radio National Symphony OrchestraPolish Radio Grand Symphony OrchestraPolish Radio National SymphonyPolish Radio National Symphony OrchestraPolish Radio OrchestraPolish Radio Symphony OrchestraPolish Radio Symphony Orchestra Of KatowicePolska Radions SymfoniorkesterPools Nationaal Radio-SymfonieorkestSinfonie-Orchester Des Polnischen RundfunksWielka Orkiestra Symfoniczna Polskiego Radia I TelewizjiWielka Orkiestra Symfoniczna Polskiego Radia W KatowicachNarodowa Orkiestra Symfoniczna Polskiego RadiaWielka Orkiestra Symfoniczna Polskiego RadiaWielka Orkiestra Symfoniczna Polskiego Radia W StalinogrodzieOrkiestra Symfoniczna Polskiego RadiaAleksander TesarczykKrzysztof FiedukiewiczMariusz ZiętekŁukasz ZimnikBoguslaw PstraśMagdalena ZiętekMaria GrochowskaJan ZegalskiJan HawryszkówPiotr PołanieckiKrzysztof JaguszewskiZdzisław StolarczykArkadiusz AdamskiPiotr SzalszaStanislaw DziewiorMarek BarańskiMichał MazurkiewiczMichał PaliwodaWiesław GrochowskiAntoni AdamusDamian WalentekZbigniew KaletaAdrian TicmanRudolf BrudnyJoanna DziewiorRafal Zambrzycki-PayneMarek Romanowski (2)Zygmunt HalamskiAdam KrzeszowiecMax ZimolongTadeusz TomaszewskiJan KotulaDariusz KorczKarol GajdaTomasz ŻymłaLukasz BeblotCezary RembiszKrzysztof FirlusAgnieszka PodłuckaDamian LipieńAntoni SmołkaNatalia Kurzac-KotulaŁukasz FrantBartosz PacanDorota CieślińskaDorota PaliwodaJacek SiemekKrystyna KowalskaLucyna FiedukiewiczMałgorzata OtrembaKarolina StalmachowskaMaksymilian LipieńAdam GajdoszAntoni Nowina-KonopkaJoanna SzafraniecTeresa Mercik-SzopaMichał Kowalczyk (3)Jakub Urbańczyk (2)Agnieszka HałuzoBeata RaszewskaJoanna TesarczykAleksander MazanekGrzegorz WitekDaniel KerdelewiczAleksander DaszkiewiczPiotr TarcholikRoland Orlik + +778582John ConstableJohn ConstableEnglish keyboard player and professor, born in London. Principal pianist of the [a=London Sinfonietta] since its formation, and principal harpsichordist of [a=The Academy Of St. Martin-in-the-Fields]. + +For the visual artist, see [a=John Constable (2)]. For the painter, see [a=John Constable (3)].Needs Votehttps://www.rcm.ac.uk/vocal/operaprofessors/details/?id=01237https://www.londonsinfonietta.org.uk/players/john-constablehttps://www.naxos.com/Bio/Person/John_Constable/3229https://www.imdb.com/name/nm0175974/ConstableConstable, JohnJ. ConstableJon ConstableLondon Symphony OrchestraEnglish Chamber OrchestraLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsLondon Symphony Orchestra Strings + +779075DJ ClownyNeeds VoteClownyClownyTekneek (8)Clowny & Reminisce + +779517Jan BengtsonJan Stig Olof Bengtson (Born as Bengtsson)Swedish flautist based in Stockholm, born on March 12, 1963 in Gävle Staffan, Gävle, Gästrikland. + +Jan Bengtson is classically educated and has won several awards at international solo competitions. He masters a variety of instruments, with flute as his main instrument. He has been employed by [a=Kungliga Filharmonikerna] since 1989 and was also the first soloist in the Royal Court Chapel in 1997-1919. Since 1997 he has also worked as a flute teacher at [l419723]. + +Jan Bengtson is raised in a musician family. His father [a3419785] was solo flautist in [a=Kungliga Hovkapellet], his mother [a2852490] is soprano singer and vocalist and more, and his sister is [a1183156]. + +For the rock guitarist and vocalist, see [a=Jan Bengtsson (2)].Needs Votehttp://www.kanx.se/https://sv.wikipedia.org/wiki/Jan_Bengtsonhttps://www.facebook.com/jan.bengtsonhttps://www.imdb.com/name/nm3276212/J. BengtssonJan BengtssonJan BentsonJan BentssonJanne BengtssonGöteborgs SymfonikerBenny Anderssons OrkesterUmeå Symphony OrchestraKungliga FilharmonikernaSvenska Lyxorkestern + +779571Joe BishopAmerican jazz multi-instrumentalist (piano, trumpet, tuba, flugelhorn, mellophone) and songwriter. +Born November 27, 1907 in Monticello, Arkansas. Died May 12, 1976 in Houston, Texas. +Bishop's compositions include "Midnight Blue", "Woodchopper's Ball" and "Blue Prelude". +Bishop began on the piano as a child before learning the trumpet and tuba. He played tuba with Al Katz's Kittens, switching to the flugelhorn with Austin Wylie (1930) and [a750213] (1931-36). He played tuba for [a284746], which he co-founded with the co-operative including some other Isham Jones Orchestra members after Jones retiring in 1936. +Though he had a brief career, Bishop was the first significant soloist on the flugelhorn in jazz history, 20 years before Clark Terry and Art Farmer. +Other compositions include "Blue Flame", "Jealousy", "Blue Evening", "Out of Space", "Blue Lament", "New Orleans Twist", "The Cobra and the Flute", "Is Love That Way?", "Blues Upstairs and Downstairs", "Gotta Get to St. Joe", "Be Not Discouraged", "Ain't It Just Too Bad?" and "Indian Boogie Woogie".Needs Votehttp://en.wikipedia.org/wiki/Joe_Bishophttps://www.radioswissjazz.ch/en/music-database/musician/18872d0f2050fff3004f17a26834400e5e588/titleshttps://www.allmusic.com/artist/joe-bishop-mn0000118242/creditshttps://www.imdb.com/name/nm0084085/https://adp.library.ucsb.edu/names/108488B. BishopBischopBishopJ. BishopJ. BrishopJ.BishopJohn BishopJoseph BishopJoé BishopJ・ビショップД. БишопWoody Herman And His OrchestraWoody Herman And His WoodchoppersIsham Jones OrchestraThe Band That Plays The Blues + +779780Roderick SkeapingRoderick Skeaping is an English musician, composer, arranger and musical director. He mainly plays stringed instruments, such as violin and viola da gamba. +He's married to [a=Lucie Skeaping], with whom he also works in "Musical Mystery Tour", a group for children about the history of music. +Son of [a1042880] and brother of [a293803].Needs Votehttp://www.roddyskeaping.comRod SkeapingRod SkeepingRodddy SkeapingRoddie SkeapingRoddy SkeapingRoddy SkeepingRoderick SpeapingRoderik SkeapingRodey Skeapingロデリック・スキーピングKeith Tippett's ArkCentipede (3)The Campiello BandThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicDeller ConsortHamburger Bläserkreis Für Alte MusikThe Burning BushThe City WaitesMusica ReservataMartin Best ConsortL'Estro ArmonicoThe London Early Music GroupEnglish Consort Of ViolsSneak's Noyse + +779781Christopher HogwoodChristopher Jarvis Haley HogwoodBorn 10th September 1941 Nottingham, England; died 24th September 2014, Cambridge, England. +English conductor, harpsichordist, writer and musicologist. Co-founder with [a517156] of [a650601] (1967-1976). After Munrow's death, Hogwood founded [a837442], serving as Music Director from 1973-2006. He was Artistic Director of [a1706049] from 1986 to 2001. +Awarded Commander of the British Empire (CBE) by Queen Elizabeth II in 1989.Needs Votehttps://hogwood.org/https://en.wikipedia.org/wiki/Christopher_HogwoodC. HogwoodCh. HogwoodChris HogwoodGeorge Frideric HandelHogwoodКристофер Хогвудクリストファー・ホグウッドホグウッドThe RoundtableThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicMusica ReservataThe Academy Of Ancient Music Chamber EnsembleLinde-Consort + +779815Buggy BrauneBurkhart BrauneGerman jazz pianist born in 1964 in Kiel, based in Hamburg.Needs Votehttp://www.swinging-hamburg.de/band.php?id=00001246"Buggy" BrauneB. BrauneBrauneBurkard BrauneBurkhard BrauneEnsemble ModernTim Rodig 5Lorenz Hargassner QuartetJonas Schoen SextetJonas Schoen QuartettBuggy Braune QuintettSunset TrioBjörn Lücker Aquarian Jazz EnsembleRalph Reichert QuartetFlorian Poser GroupCreative Music Ensemble HamburgBuggy Braune QuartettKonstantin Herleinsberger QuintetBach Jazz QuartetMartin Wind/Buggy Braune Quintet + +779927Lennon-McCartney[a=John Lennon] and [a=Paul McCartney] wrote and published approximately 180 songs together, as a credited partnership, between 1962 and 1969. + +Lennon and McCartney wrote both the lyrics and music to these songs, differing from the common partnerships of that era which would split the composition and lyricist duties. As well, although every song is jointly credited, many of these songs were actually composed by only one of the two authors. + +A writing partnership since they were teenagers, McCartney and Lennon struck an agreement early into their budding career that every song they wrote would be jointly credited, no matter the actual author, splitting the royalties down the middle. + +Much of the [a=Lennon-McCartney] partnership's output was recorded and released by artists other than [a=The Beatles]. In addition, many, if not most, of their songs have been subsequently covered by many other artists.Needs Votehttps://en.wikipedia.org/wiki/Lennon%E2%80%93McCartneyCannon/CartneyCartney Et LennonCartney/LennonDž. Lenonas - P. MakartnisDž. Lenonas, P. MakartnisDž. Lenonas-P. MakartnisDž. Lenons, P. MakartnijsDž.Lenons/P.MakartnijsDžons Lenons & Pauls MakartnijsG. Lennon And P. McCarthneyG. Lennon And P. McCartneyG. Lennon – P. McCarthneyJ Lennon - P McCartneyJ Lennon / P McCartneyJ Lennon And P McCartneyJ Lennon, P McCartneyJ Lennon-McCartneyJ Lennon-P McCartneyJ Lennon-P. McCartneyJ Lennon/P MacCartneyJ Lennon/P McCartneyJ Lennon/P. McCartneyJ, Lennon - P. Mc CartneyJ, Lennon - P. McCartneyJ, Lennon, P. McCartneyJ- Lennon - P. Mc CartneyJ. Lemmon, P. McCartneyJ. Lemmon/P. McCartneyJ. Lemon-P. McCartyJ. Lenin; P. McCartneyJ. Lennan-P. McCartneyJ. Lennen, P. McCartneyJ. Lennnon & P. McCartneyJ. Lennon & F. Mc CartneyJ. Lennon & McCartneyJ. Lennon & P. MaCartneyJ. Lennon & P. Mac CartneyJ. Lennon & P. Mc CartneyJ. Lennon & P. Mc'CartneyJ. Lennon & P. McCarneyJ. Lennon & P. McCartneyJ. Lennon & P. McartneyJ. Lennon & Paul McCartneyJ. Lennon & Paul MccartneyJ. Lennon + CartneyJ. Lennon + P. McCartneyJ. Lennon , P. McCartneyJ. Lennon - M. McCartneyJ. Lennon - Mc CartneyJ. Lennon - Mc. CartneyJ. Lennon - McCartneyJ. Lennon - P McCartneyJ. Lennon - P. M. CartneyJ. Lennon - P. MC CartneyJ. Lennon - P. Mac CartneyJ. Lennon - P. Mac-CartneyJ. Lennon - P. MacCarthneyJ. Lennon - P. MacCartneyJ. Lennon - P. Mc CartheyJ. Lennon - P. Mc CartneyJ. Lennon - P. Mc. CartneyJ. Lennon - P. Mc.CartneyJ. Lennon - P. McCarneyJ. Lennon - P. McCarteyJ. Lennon - P. McCarthyJ. Lennon - P. McCartmeyJ. Lennon - P. McCartneyJ. Lennon - P. McCartnreyJ. Lennon - P. McCartoneyJ. Lennon - P.M. CartneyJ. Lennon - P.Mc CartneyJ. Lennon - P.McCartneyJ. Lennon - P.MccartneyJ. Lennon - Paul McCartneyJ. Lennon -Mc CartneyJ. Lennon -P. McCartneyJ. Lennon -Paul McCartneyJ. Lennon / J. McCartneyJ. Lennon / Mc CartneyJ. Lennon / P, Mc CartneyJ. Lennon / P. CartneyJ. Lennon / P. MC CartneyJ. Lennon / P. Mac CartneyJ. Lennon / P. MacCartneyJ. Lennon / P. Mc CartneyJ. Lennon / P. Mc.CartneyJ. Lennon / P. Mc.cartneyJ. Lennon / P. McCartneyJ. Lennon / P. MccartneyJ. Lennon / Paul McCartneyJ. Lennon /P. McCartneyJ. Lennon /P.McCartneyJ. Lennon And P. McCarneyJ. Lennon And P. McCartneyJ. Lennon Et Mac CartneyJ. Lennon Et P. Mc CartneyJ. Lennon Et P. McCartneyJ. Lennon P. Mac-CartneyJ. Lennon P. Mc CartneyJ. Lennon P. McCartneyJ. Lennon P. MccartneyJ. Lennon P.McCartneyJ. Lennon Y P MccartneyJ. Lennon Y P. McCartneyJ. Lennon Y P. McCartneyeJ. Lennon and P. McCartneyJ. Lennon et P. Mac CartneyJ. Lennon y McCartneyJ. Lennon y P. McCarneyJ. Lennon y P. McCartneyJ. Lennon y P. McCartney,J. Lennon y P. McartneyJ. Lennon · P. McCartneyJ. Lennon – P. M. CartneyJ. Lennon – P. McCartneyJ. Lennon – Paul McCartneyJ. Lennon — P. McCartneyJ. Lennon, - P. McCartneyJ. Lennon, M. McCartneyJ. Lennon, Mc CartneyJ. Lennon, McCartneyJ. Lennon, P McCartneyJ. Lennon, P, McCartneyJ. Lennon, P. Mac CartneyJ. Lennon, P. MacCartneyJ. Lennon, P. Mc CartneyJ. Lennon, P. Mc. CartneyJ. Lennon, P. McCarneyJ. Lennon, P. McCartneyJ. Lennon, P. McCartney - J. Lennon, P. McCartneyJ. Lennon, P. McCatneyJ. Lennon, P. McartneyJ. Lennon, P. MccartneyJ. Lennon, P.-M. CartneyJ. Lennon, P.McCartneyJ. Lennon, Paul McCartneyJ. Lennon, Paul/McCartneyJ. Lennon,P. McCartneyJ. Lennon- McCartneyJ. Lennon- P. Mc CartneJ. Lennon- P. Mc CartneyJ. Lennon- P. McCartneyJ. Lennon- P. McartneyJ. Lennon--P. McCartneyJ. Lennon-Mac CartneyJ. Lennon-MacCartneyJ. Lennon-Mc CartneyJ. Lennon-Mc.CartneyJ. Lennon-McCartneyJ. Lennon-P McCartneyJ. Lennon-P, McCartneyJ. Lennon-P. M CartneyJ. Lennon-P. Mac CartneyJ. Lennon-P. MacCarneyJ. Lennon-P. MacCartneyJ. Lennon-P. Mc CartneyJ. Lennon-P. Mc. CartneyJ. Lennon-P. Mc.ArtneyJ. Lennon-P. McCarnteyJ. Lennon-P. McCarteneyJ. Lennon-P. McCartenyJ. Lennon-P. McCarteyJ. Lennon-P. McCartneyJ. Lennon-P. McCartneyneyJ. Lennon-P. McCartnyJ. Lennon-P. McCartyJ. Lennon-P. McCatrneyJ. Lennon-P. McKartneyJ. Lennon-P. MccartneyJ. Lennon-P.-M. CartneyJ. Lennon-P.M.CartmeyJ. Lennon-P.Mc CartneyJ. Lennon-P.McCartneyJ. Lennon-P.McCartnyJ. Lennon-Paul McCartneyJ. Lennon-p. McCartneyJ. Lennon. P. McCartneyJ. Lennon./P. McCartneyJ. Lennon/ P. Mc CartneyJ. Lennon/ P. McCartneyJ. Lennon//P. McCartneyJ. Lennon/G. McCartneyJ. Lennon/Mc CartneyJ. Lennon/Mc. CartneyJ. Lennon/McCartneyJ. Lennon/P, McCartneyJ. Lennon/P- McCartneyJ. Lennon/P. CartneyJ. Lennon/P. Mac CartneyJ. Lennon/P. MacCartneyJ. Lennon/P. Mc CartneyJ. Lennon/P. Mc. CartneyJ. Lennon/P. Mc.ArtneyJ. Lennon/P. Mc.CartneyJ. Lennon/P. McCarneyJ. Lennon/P. McCarthyJ. Lennon/P. McCartneyJ. Lennon/P. MccartneyJ. Lennon/P. PcCartneyJ. Lennon/P.M,CartneyJ. Lennon/P.MacCartneyJ. Lennon/P.McCartneyJ. Lennon/PMcCartneyJ. Lennon/Paul Mc CartneyJ. Lennon/Paul McCartneyJ. Lennon/Y. OnoJ. Lennon; P. McCartneyJ. Lennone-P. McCartneyJ. Lennon–P. McCartneyJ. Lennon—P. Mc CartneyJ. Lennon—P. McCartneyJ. Lennor-P. McCartneiJ. Lenon - Mc. ArtneyJ. Lenon - P. McCartneyJ. Lenon / P. Mc CartneyJ. Lenon / P. McCartneyJ. Lenon Ir P. Mc CartneyJ. Lenon, P. McCartneyJ. Lenon-Mc. CartneeyJ. Lenon-McCartneyJ. Lenon-P. MacCartneyJ. Lenon-P. McCarteyJ. Lenon-P. McCartneyJ. Lenon-Paul McCartneyJ. Lenon/P. Mc CartneyJ. Lenonn-P. McCartneyJ. Lesson-P. McCartneyJ. W. Lennon, P. J. McCartneyJ. W. Lennon-P. J. McCartneyJ. Winston Lennon/P. James McCartneyJ. lennon / P. McCartneyJ. レノン ~ P. マッカートニーJ. レノン, P. マッカートニーJ. レノン=P. マッカートニーJ.Lennon & P. McCartneyJ.Lennon & P.McCartneyJ.Lennon , P.McCartneyJ.Lennon - P. McCartneyJ.Lennon - P.McCartneyJ.Lennon -P.McCartneyJ.Lennon / McCartneyJ.Lennon / P. Mc CartneyJ.Lennon / P. Mc cartneyJ.Lennon / P. McCartneyJ.Lennon / P.M.CartneyJ.Lennon / P.McCartneyJ.Lennon P.Mc CartneyJ.Lennon P.McCarthyJ.Lennon P.McCartneyJ.Lennon, P. Mc CartneyJ.Lennon, P. McCartneyJ.Lennon, P.Mc CartneyJ.Lennon, P.McCartneyJ.Lennon,P.McCartneyJ.Lennon-Mc CartneyJ.Lennon-P. McCarneyJ.Lennon-P. McCartneyJ.Lennon-P.MacCartneyJ.Lennon-P.Mc CartneyJ.Lennon-P.Mc.CartneyJ.Lennon-P.McCarthyJ.Lennon-P.McCartneyJ.Lennon-P.MccartneyJ.Lennon.P. McCarthyJ.Lennon/ P.McCartneyJ.Lennon/McCartneyJ.Lennon/P. McCartneyJ.Lennon/P.Mc CartneyJ.Lennon/P.Mc.CartneyJ.Lennon/P.McCarneyJ.Lennon/P.McCartneyJ.Lennon/Paul Mc CartneyJ.Lennon/Paul McCartneyJ.W. Lennon - P.J. McCartneyJ.W. Lennon / P.J. McCartneyJ.W. Lennon, P. McCartneyJ.W. Lennon, P.J. McCartneyJ.W. Lennon-P.J. McCartneyJ.レノン & P.マッカートニーJ.レノン&P.マッカートニーJack Lennon-Paul McCartneyJames Paul McCartney-Johnson Winston LennonJean Lénon / Paul Mac CartneyJhon Lennon & Paul McCartneyJj. Lennon - P. McCartneyJoJohn Lennon-Paul McCartneyJoan Lennon-Paul McCartneyJogn Lennon And Paul McCartneyJohan Lennon & Paul McCartneyJohn + PaulJohn And PaulJohn En PaulJohn Hennon-Paul Mac CartneyJohn Lannon - Paul MMeCartneyJohn Lannon - Paul McCartneyJohn Lannon - Paul MeCartneyJohn Lendon - Paul McCartneyJohn Lenion - Paul MeCartneyJohn Lennen Paul McCartneyJohn Lenneon, Paul McCartneyJohn Lennnon & Paul McCartneyJohn Lennnon And PaulMcCartneyJohn Lennnon, Paul McCartneyJohn Lennnon-Paul McCartneyJohn Lennnon/Paul McCartneyJohn Lennnon/PaulMcCartneyJohn Lenno & Paul McCartneyJohn Lennon & Mc CartneyJohn Lennon & McCartneyJohn Lennon & Paul MaCartneyJohn Lennon & Paul Mc CartneyJohn Lennon & Paul Mc. CartneyJohn Lennon & Paul McCartneyJohn Lennon & Paul McCartonyJohn Lennon & Paul MccartneyJohn Lennon & Poul McCartneyJohn Lennon & aul McCartneyJohn Lennon (PRS) And Paul McCartney (PRS)John Lennon + Paul McCartneyJohn Lennon , James Paul McCartneyJohn Lennon , Paul McCartneyJohn Lennon - Andrew Mc CartneyJohn Lennon - Mc CartneyJohn Lennon - McCartneyJohn Lennon - P. McCartneyJohn Lennon - Paul James Mc CartneyJohn Lennon - Paul Mac CartneyJohn Lennon - Paul MacCarthneyJohn Lennon - Paul Mc CartneyJohn Lennon - Paul Mc-CartneyJohn Lennon - Paul Mc. CartneyJohn Lennon - Paul McCarneyJohn Lennon - Paul McCartheyJohn Lennon - Paul McCartneyJohn Lennon - Paul McCartnyJohn Lennon - Paul McCrtneyJohn Lennon - Paul MccartneyJohn Lennon - Paul MecarneyJohn Lennon - PaulMcCartneyJohn Lennon - Paùl Mc CartneyJohn Lennon -- Paul McCartneyJohn Lennon -Paul McCartneyJohn Lennon / Mc CartneyJohn Lennon / McCartneyJohn Lennon / Paul James McCartneyJohn Lennon / Paul Mac CartneyJohn Lennon / Paul Mc CartneyJohn Lennon / Paul Mc. CartneyJohn Lennon / Paul McCartenyJohn Lennon / Paul McCartneyJohn Lennon / Paul MccartneyJohn Lennon / Paul Winston McCartneyJohn Lennon /Paul McCartneyJohn Lennon A Paul McCartneyJohn Lennon And James Paul McCartneyJohn Lennon And Paul Mc CartneyJohn Lennon And Paul McCarneyJohn Lennon And Paul McCartheyJohn Lennon And Paul McCarthyJohn Lennon And Paul McCartneyJohn Lennon And Paul McartneyJohn Lennon And Paul MccartneyJohn Lennon E Paul McCartneyJohn Lennon Et Paul Mc CartneyJohn Lennon Et Paul McCartneyJohn Lennon In Paul McCartneyJohn Lennon Ja Paul McCartneyJohn Lennon Og Paul McCartneyJohn Lennon Og Poul McCartneyJohn Lennon Paul McCartnayJohn Lennon Paul McCartneyJohn Lennon Paul McCatnoyJohn Lennon Und Paul McCartneyJohn Lennon Y Paul McCartneyJohn Lennon an Paul McCartneyJohn Lennon and Pau McCartneyJohn Lennon and Paul McCartneyJohn Lennon and or Paul McCartneyJohn Lennon e Paul McCartneyJohn Lennon en Paul McCartneyJohn Lennon et Paul Mc CartneyJohn Lennon et Paul McCartneyJohn Lennon og Paul McCartneyJohn Lennon u. Paul McCartneyJohn Lennon und Paul McCartneyJohn Lennon y Paul McCartneyJohn Lennon | Paul McCartneyJohn Lennon · Paul McCartneyJohn Lennon És Paul McCartneyJohn Lennon – Paul Mc CartneyJohn Lennon – Paul McCartneyJohn Lennon — Paul McCartneyJohn Lennon • Paul McCartneyJohn Lennon&Paul McCartneyJohn Lennon*Paul McCartneyJohn Lennon, Mc CartneyJohn Lennon, McCartneyJohn Lennon, P. McCartneyJohn Lennon, Paul James McCartneyJohn Lennon, Paul MCartneyJohn Lennon, Paul MaCartneyJohn Lennon, Paul MacCartneyJohn Lennon, Paul Mc CartneyJohn Lennon, Paul McCarneyJohn Lennon, Paul McCartneyJohn Lennon, Paul McCartneyrtneyJohn Lennon, Paul MccartneyJohn Lennon,Paul McCartneyJohn Lennon- Paul McCartneyJohn Lennon-Mc CartneyJohn Lennon-McCarteneyJohn Lennon-McCartneyJohn Lennon-P. Mc CartneyJohn Lennon-P. McCartneyJohn Lennon-P.Mc CartneyJohn Lennon-Pauk McCartneyJohn Lennon-Paul James McCartneyJohn Lennon-Paul MCartneyJohn Lennon-Paul Mac CarteyJohn Lennon-Paul Mac CartneyJohn Lennon-Paul MacCarthyJohn Lennon-Paul MacCartneyJohn Lennon-Paul MacartneyJohn Lennon-Paul Mc CartneyJohn Lennon-Paul McACartneyJohn Lennon-Paul McCarneyJohn Lennon-Paul McCartnetJohn Lennon-Paul McCartneyJohn Lennon-Paul McCartnyJohn Lennon-Paul McarthyJohn Lennon-Paul MccartneyJohn Lennon-Paull McCartneyJohn Lennon-Poul McCartenyJohn Lennon. Paul Mc CartneyJohn Lennon. Paul McCartneyJohn Lennon/ Paul Mc CartneyJohn Lennon/ Paul McCartneyJohn Lennon/McCartneyJohn Lennon/P. McCartneyJohn Lennon/Paul James McCartneyJohn Lennon/Paul Mac CartneyJohn Lennon/Paul Mc CartneyJohn Lennon/Paul Mc.CartneyJohn Lennon/Paul McCArtneyJohn Lennon/Paul McCarneyJohn Lennon/Paul McCartenyJohn Lennon/Paul McCartneyJohn Lennon/Paul McCartnryJohn Lennon/Paul McartneyJohn Lennon/Paul MccartneyJohn Lennon/PaulMcCartneyJohn Lennon; Paul McCartheyJohn Lennon; Paul McCartneyJohn Lennon;Paul McCartneyJohn Lennone-P. McCartneyJohn Lennon–Paul Mc CartneyJohn Lennon–Paul McCartneyJohn Lennon—Paul McCartneyJohn Lennon•Paul McCartneyJohn Lennon・Paul McCartneyJohn Lennon/Paul McCartneyJohn Lennor - Paul McCartneiJohn Lenon - Paul McCartneyJohn Lenon / Paul McCartneyJohn Lenon And Paul Mc CartneyJohn Lenon E Paul McCartneyJohn Lenon, Paul McCartneyJohn Lenon-Paul McCartneyJohn Lenonn E Paul McCartneyJohn Lernnon And Paul McCartneyJohn London Paul McCartneyJohn Lonnen - Paul McCarkneyJohn Lonnon - Paul McCartneyJohn W. Lennon - Paul J. McCartneyJohn W. Lennon-Paul J. McCartneyJohn W. Lennon/Paul J. McCartneyJohn Winston Lennon & Paul James McCartneyJohn Winston Lennon & Paul McCartneyJohn Winston Lennon - James Paul McCartneyJohn Winston Lennon - Paul James McCartneyJohn Winston Lennon / Paul James Mc CartneyJohn Winston Lennon / Paul James McCartneyJohn Winston Lennon And James Paul McCartneyJohn Winston Lennon, James Paul McCartneyJohn Winston Lennon, McCartney Paul JamesJohn Winston Lennon, Paul James McCartneyJohn Winston Lennon, Paul McCartneyJohn Winston Lennon-Paul James McCartneyJohn Winston Lennon/Paul James McCartneyJohn Winston Lennon/Paul McCartneyJohn Winston Lennon; Paul James McCartneyJohn With PaulJohn Y Paul McCarneyJohn lennon, Paul McCartneyJohn, PaulJohn, With PaulJohn/PaulJohnLennon & Paul McCartneyJohnLennon / Paul McCartneyJohnLennon, Paul McCartneyJohnLennon/Paul McCartneyJohne Lennon/Paul McCartneyJohnn Lennon-Paul McCartneyJon Lennon / Paul McCartneyJon Lennon And Paul McCartneyJon Lennon/Paul McCartneyJonh Lennon-Paul Mc CartneyJonhn Lennon / Paul McCartneyJonn Lennon - Paul McCartneyK. Lennon-P. Mc. CartneyK. Richards / M. JaggerL. & MacarneyL. ; McCartneyL. Lennon & P. McCartneyL. Lennon - P. McCartneyL. Lennon-P. McCartneyL. MC.L. Mc.L. McCarthyL. McCartneyL. McCartney / J. LennonL. StonL.-Mc.L.-McC.L.Mc CartneyL.McCartneyLannon/Ma CartneyLemmon-CarthyLemmon/Mc CartneyLemon, McCarthyLemon-CartneyLemon-McCartneyLemon-Mike HartneyLemon/ Mc CartneyLen-McLendon-McCartneyLennen - Mc CartneyLennen - Mc. CartneyLennen - McCartneyLennen-McCartneyLenneon-McCartneyLennln/McCartneyLennnon & McCartneyLennnon / McCartneyLennnon/McCartneyLenno - Mc CartneyLenno, McCartneyLenno/McCartneyLennom - McCartneyLennonLennon & MC CartneyLennon & MaCartneyLennon & Mac CartneyLennon & MacCarneyLennon & MacCartneyLennon & MacCartonyLennon & Mc CarneyLennon & Mc CartneyLennon & Mc CartyLennon & Mc. CartneyLennon & McCartheyLennon & McCartneyLennon & McCartney*Lennon & McCartyLennon & McartneyLennon & MccartneyLennon * McCartneyLennon + Mc CartneyLennon + McCartneyLennon , McCartneyLennon ,McCartneyLennon - CartneyLennon - CcCartneyLennon - M. CartneyLennon - MC CartneyLennon - MCartneyLennon - Mac CartneyLennon - MacCartneyLennon - Mc ArtneyLennon - Mc CartneyLennon - Mc MartneyLennon - Mc-CartneyLennon - Mc. CartneyLennon - Mc.CartneyLennon - McCarneyLennon - McCarthyLennon - McCartleyLennon - McCartnayLennon - McCartneyLennon - McCartnyLennon - McaCrtneyLennon - MccartneyLennon - Me CartneyLennon - MocartneyLennon - P. M. CartheyLennon - P. Mc CartneyLennon - Paul McCartneyLennon -McCartneyLennon / M. CartneyLennon / MCLennon / MaCartneyLennon / Mac CartneyLennon / MacCartneyLennon / Mc CarthyLennon / Mc CartnayLennon / Mc CartneyLennon / Mc cartneyLennon / Mc. CartneyLennon / Mc.CartneyLennon / McArtneyLennon / McCartneyLennon / McCartney [Uncredited]Lennon / MccarthyLennon / P. McCartneyLennon / Paul Mc CartneyLennon / Paul McCartneyLennon /Mc CartneyLennon : McCartneyLennon ; McCartneyLennon And -McCartneyLennon And Mac CartneyLennon And Mc CartneyLennon And McCartheyLennon And McCartneyLennon E MacCartneyLennon E McCartneyLennon Et Mac CartneyLennon Et Mc CartneyLennon Et McCartneyLennon I McCartneyLennon J / McCartney PLennon John Winston / McCartney Paul JamesLennon John Winston, Mc Cartney Paul JamesLennon John Winston/McCartney Paul JonesLennon John, McCartney PaulLennon John, Paul MaccartneyLennon John/McCartney PaulLennon MC CLennon Mac CartneyLennon Mac.Lennon MacCartneyLennon Mc CarthneyLennon Mc CartnerLennon Mc CartneyLennon Mc. CartneyLennon Mc.CartneyLennon McCarneyLennon McCartneyLennon MecartneyLennon Og McCartneyLennon Paul Mc. CartneyLennon U. McCartneyLennon Y Mc CartneyLennon Y Mc. CartneyLennon Y McCartneyLennon and MacCartneyLennon and Mc CartneyLennon and McCartneyLennon e Mc CartneyLennon e McCartneyLennon et Mc CartneyLennon et McCartneyLennon y Mc CartneyLennon y McCartneyLennon | McCartneyLennon · McCartneyLennon ‒ McCartneyLennon – Mc. CartneyLennon – McCartneyLennon — McCartneyLennon † MСCartneyLennon • Mc CartneyLennon • McCartneyLennon ─ Mc CartneyLennon&Mc CartneyLennon&McCartneyLennon(McCartneyLennon+McCartneyLennon, CartneyLennon, J./McCartney, P.Lennon, John - McCartney, PaulLennon, John / McCartney, PaulLennon, John W / McCartney, PaulLennon, John Winston / McCartney, Paul JamesLennon, John Winston-McCartney, Paul JamesLennon, John Winston/McCartney, Paul JamesLennon, John/McCartney Paul JamesLennon, M CartneyLennon, Mac CartneyLennon, MacCartneyLennon, Mc CarthyLennon, Mc CartneyLennon, Mc. CartneyLennon, McArtneyLennon, McCarneyLennon, McCartenyLennon, McCarthyLennon, McCartneyLennon, McCartnyLennon, MccartneyLennon, P. M. CartheyLennon, P. M. CartneyLennon, P. Mc CartneyLennon, P. Mc. CartneyLennon, Paul McCartneyLennon, Winston, McCartney, JamesLennon,Mac CartneyLennon,McCartneyLennon- / McCartneyLennon- Mc CartneyLennon- McCartneyLennon--McCartneyLennon-/McCartneyLennon-CartheyLennon-CarthneyLennon-CartneyLennon-MAcCartneyLennon-MAᶜCartneyLennon-MCartneyLennon-MaCartonyLennon-Mac CarneyLennon-Mac CartneyLennon-MacCartneyLennon-MacGartneyLennon-McLennon-Mc ArtneyLennon-Mc CartneyLennon-Mc CartnyLennon-Mc'CarthneyLennon-Mc.Lennon-Mc. CartheiLennon-Mc. CartnejLennon-Mc. CartneyLennon-Mc.CartneyLennon-McArtneyLennon-McCarneyLennon-McCarrtneyLennon-McCarteeyLennon-McCartheyLennon-McCarthneyLennon-McCarthnyLennon-McCarthyLennon-McCartyLennon-McCortneyLennon-McGartneyLennon-MccartneyLennon-P. M. CartheyLennon-P. Mc CartneyLennon-P. McCartneyLennon-P. My CartneyLennon-Paul McCartneyLennon-cCartneyLennon. Mc CartneyLennon. McCartneyLennon.McCartneyLennon/ Mc CartneyLennon/ McCartneyLennon/-McCartneyLennon/CartneyLennon/Lennon/McCartneyLennon/M CartneyLennon/M. CartneyLennon/MCCartneyLennon/MCartneyLennon/MaCartneyLennon/Mac CartneyLennon/MacCarthnyLennon/MacCartneyLennon/MacartneyLennon/Mc CarneyLennon/Mc CartneyLennon/Mc. CartneyLennon/Mc. CartnyLennon/Mc.CartneyLennon/McCar tneyLennon/McCarneyLennon/McCarteyLennon/McCarthneyLennon/McCarthyLennon/McCartnLennon/McCartneLennon/McCartneyLennon/McCartney]Lennon/McCartney©Lennon/McCartnyLennon/McartneyLennon/MccartneyLennon/MyCartneyLennon/Paul McCartneyLennon/cCartneyLennon0McCartneyLennon: McCartneyLennon; McCartneyLennon;McCartneyLennonMcCartneyLennon\McCartneyLennonm McCartneyLennons, MakartnijsLennon–Mc CartneyLennon–Mc. CartneyLennon–McCartneyLennon—Mc. CartneyLennon—McCartneyLennor & McCartneyLennox-MeartneyLenon & Mc CartneyLenon & McCartneyLenon - Mac CartneyLenon - McCartneyLenon / Mac CartneyLenon Mc. ArtneyLenon McArneyLenon McCarneyLenon McCartnyLenon y McCartneyLenon, McCartneyLenon, Me CartneyLenon, MekKartniLenon-Mac CartneyLenon-Mc CartneyLenon-McArtneyLenon-McCartneyLenon-McGartneyLenon/Mc CartnyLenon/McCartneyLenonn-McCartneyLenord-McCartneyLenox McCartneyLeon-McnnCartneyLohn Lennon/Paul McCartneyM. Cartney & LennonM. Mc Cartney/J. LennonMC Cartney, LennonMCartney & LennonMac C. LennonMac Carney - LennonMac Cartney & J. LennonMac Cartney - J. LennonMac Cartney - LennonMac Cartney / J. LennonMac Cartney, J. LennonMac. C. LennonMacCartney - LennonMacCartney P / Lennon JMacartney - LennonMaclin-UnartMc Carthney/LennonMc Cartney & J. LennonMc Cartney - LennonMc Cartney - LenonMc Cartney Et LennonMc Cartney LennonMc Cartney et LennonMc Cartney — J. LennonMc Cartney, John LennonMc Cartney, LennonMc Cartney-J. LennonMc Cartney-LennonMc Cartney/LennonMc-Cartney-LennonMc. Cartey et LennonMc. CartneyMc. Cartney & LennonMc. Cartney - LennonMc. Cartney / J. LennonMc. Cartney- LennonMc. Cartney-J. LennonMc. Cartney-LennonMc. Cartny / J. LennonMc. Cartny/J. LennonMc.Cartney - LennonMc.Cartney Und John LennonMc.Cartney/J. LennonMcCarney-LennonMcCarteny/LennonMcCarthy-LennonMcCarthy/LennonMcCartneyMcCartney & J. LennonMcCartney & LennonMcCartney - J. LennonMcCartney - LennonMcCartney / LennonMcCartney And LennonMcCartney Et J. LennonMcCartney Et LennonMcCartney I LennonMcCartney LennonMcCartney Or LennonMcCartney P / Lennon JMcCartney P / Lennon. JMcCartney P., Lennon J.McCartney Y LennonMcCartney et LennonMcCartney y LennonMcCartney, LennonMcCartney--LennonMcCartney-J. LennonMcCartney-LennonMcCartney/ LennonMcCartney/J. LennonMcCartney/LennonMcCartney/Lennon-McCartneyMcCartney–LennonMcCartney—LennonMcartney-LennonNennon - McCartneyNennon-McCartneyNenon-McCarteyNenon-McCartneyP Mc Cartney / J LennonP McCartney, J LennonP McCartney-J LennonP McCartney-J. LennonP McCartney/J LennonP. IMcCartney - J. LennonP. Lennon - P. McCartneyP. Lennon-P. McCartneyP. MC Cartney/J. LennonP. MCartney-J. LennonP. Mac Cartney / J. LennonP. Mac Cartney J. LennonP. Mac Cartney-J. LennonP. MacCartney - J. LennonP. Mc CartneyP. Mc Cartney & J. LennonP. Mc Cartney - J. LennonP. Mc Cartney / J. LenonP. Mc Cartney / J.LennonP. Mc Cartney — J. LennonP. Mc Cartney-J. LennonP. Mc Cartney-J.LennonP. Mc Cartney/J. LennonP. McCartney & J. LennonP. McCartney - J. LennonP. McCartney - J. Lennon-P. McCartney - John LennonP. McCartney / J. LennonP. McCartney / J.LennonP. McCartney / John LennonP. McCartney And J. LennonP. McCartney J. LennonP. McCartney – J. LennonP. McCartney, J. LennonP. McCartney, John LennonP. McCartney- J. LennonP. McCartney-J. LennoP. McCartney-J. LennonP. McCartney-J.LennonP. McCartney/ J. LennonP. McCartney/J. LennonP. McCartney/J.LennonP. McCartney/John LennonP. Mcartney-J. LennonP.M. Cartney - J. LennonP.MC.Cartney/John LennonP.Maccartney-J.LennonP.McArtney/J.LennonP.McCartney-J. LennonP.McCartney-J.LennonP.McCartney/J LennonP.McCartney/J.LennonPaul J. McCartney & John W. LennonPaul James McCartney & John Winston LennonPaul James McCartney; John Winston LennonPaul Lennon-John McCartneyPaul Mac Cartney - Joan LennonPaul Mac Cartney - John LennonPaul Mac Cartney - LennonPaul Mac Cartney / John LennonPaul Mac Cartney, John LennonPaul MacCartney & John LennonPaul MacCartney-John LennonPaul Mc Cartney - John LennonPaul Mc Cartney / John LennonPaul Mc Cartney, John LennonPaul Mc Cartney/ LennonPaul Mc Cartney/John LennonPaul McCarthy-John LennonPaul McCartney & John LennonPaul McCartney + John LennonPaul McCartney , John LennonPaul McCartney - John LennonPaul McCartney / John LennonPaul McCartney And John LennonPaul McCartney I John LennonPaul McCartney John LennonPaul McCartney – John LennonPaul McCartney, John LennonPaul McCartney, LennonPaul McCartney-John LennonPaul McCartney/ John LennonPaul McCartney/John LennonPaul McCartney/JohnLennonPaul McCartney; John LennonPaul McCratney/ John LennonPaul With - JohnPaul, With JohnPiscartney LennonThe Beatlesjohn Lennon, Paul McCartneylennon-McCartneylennon/McCartneyД. Леннон , П. МаккартниД. Леннон - П. МаккартниД. Леннон И П. МаккартниД. Леннон и П. МаккартниД. Леннон, П. МаккартниД. Леннон-П. МаккартниД. Леннон; П. МаккартниДж. Леннон & П. МаккартниДж. Леннон - П. МаккартниДж. Леннон И П. МаккартниДж. Леннон П. МаккартниДж. Леннон и П. МаккартнейДж. Леннон и П. МаккартниДж. Леннон — П. МаккартниДж. Леннон, П. МаккартнейДж. Леннон, П. МаккартниДж. Леннон, П. МккартниДж. Леннон-П. МаккартниДж. Леннон/П. МаккартниДж. ЛенонДж. Ленон, П. М. КартниДж.Леннон - П.МаккартниДж.Леннон и П.МаккартниДжон Леннон — Пол МакКартниДжон Леннон, Пол МаккартниДжон Леннон/Пол МаккартниЛенион — МаккартнейЛеннонЛеннон — МаккартниЛеннон, МаккартниЛеннон, СартиЛеннон-МаккартейЛеннон-МаккартниЛеннон-П. МаккартниЛеннон/МаккартниЛенън — МаккартниЛенън-КартниЛенън-Мак КартниЛенън-МакатниЛенън-МаккартниЛенэн Мак КартниЛенэн-Мак КартниП. МаккартниП. Маккартни - Дж. ЛеннонП. Маккартни И Дж. ЛеннонП.М.Картниג'. לנון-פ. מקרטניג'ון לנון / פול מקרטניג'ון לנון ופול מקארטניג'ון לנון ופול מקרטניג'ון לנון – פול מקארטניג'ון לנון, פול מקרטניג'ון לנון-אריק איינשטייןג'ון לנון-פול מקרטניג'ון לנון/פול מקרטניג׳ון לנון, פול מקרטנילנון - מק'קרתנילנון ומקרטנילנון מקרטנילנון-מאק קארטנילנון-מקרטנילנון/מקרטנימקרטני, לנוןפול מקרטני וג'ון לנוןפול קורטנייジョン・レノン ポール・マッカートニージョン・レノン, ポール・マッカートニージョン・レノン/ポール・マッカートニージョン・レノン、ポール・マッカートニーレノン & マッカートニーレノン = マッカートニーレノン&マッカートニーレノン, マッカートニーレノン,マッカートニーPaul McCartneyJohn Lennon + +780020Deluxe All StarsCorrect + +780225Lawrence GrangerAmerican cellist, born in 1952 and died in June 2009 in San Francisco, California.Needs VoteLarry GrangerSan Francisco SymphonyOakland Symphony Orchestra + +780241John Hamilton (6)American jazz trumpeter. + +Born : March 08, 1911 in St. Louis, Missouri. +Died : August 15, 1947 in St. Louis, Missouri (probably). + +Worked with Chick Webb, Kaiser Marshall (1935), Fats Waller (1938-1942), Eddie South (1943). +Needs Votehttps://adp.library.ucsb.edu/names/100802"Bugs" HamiltonBugs HamiltonHamiltonJ. HamiltonJohn " Bugs" HamiltonJohn "Bugs" HamiltonJohn HamiltonFats Waller & His RhythmRoy Eldridge And His Orchestra + +780341Mårten LarssonErik Mårten LarssonSwedish classical oboist and music teacher, living in Fjugesta, born on 2 November 1960. +He studied at Musikhögskolan in Stockholm. +He teaches oboe at the University of Stage and Music in Gothenburg.Needs VoteRoyal Stockholm Philharmonic OrchestraGöteborgs SymfonikerStockholm SinfoniettaGageego!Camerata Roman + +780345Ingalill HillerudIngalill Elisabet HillerudSwedish classical contra-bassist from Stockholm, born on November 4, 1963.Needs VoteInga-Lill HillerudSveriges Radios Symfoniorkester + +780400Henri WoodeWilliam Henri WoodeUS-American composer, lyricist, arranger and singer born 25 September 1909, died 31 May 1994.Needs Votehttps://adp.library.ucsb.edu/names/113846D. WoodH WoodeH. WoodeH. WoodH. WoodeH. WoodsH.WoodH.WoodeHarry WoodeHenis-WoodeHenri MooreHenri NewtonHenri Teddy Bill WoodHenri William WoodeHenri WoodHenri WoodelHenri WoodsHenry J. WoodHenry WoodHenry WoodeHenry WoodipHenry WoodlipHenry WordeHeri WoodeM. WoodeMoodeP. WoodsSir Henry Joseph WoodW. H. WoodeW. Henri WoodeW. WoodeW.H. WoodeW.H. WoodsW.M. WoodW.WoodeWilliam - WoodsWilliam Henri WoodeWilliam Henri WoodsWilliam Henry WoodeWilliam WoodeWilliam-Henri-WoodeWm. WoodeWodsWoodWoodeWoodieWoodsД. Вуд + +780795Leslie PearsonLeslie PearsonBritish pianist, harpsichordist, organist, composer, and arranger. Born in 1931 in Cheadle, Cheshire, England, UK. +He won an open scholarship to [url=https://www.discogs.com/label/1379071-Trinity-Laban-Conservatoire-of-Music-and-Dance]Trinity College of Music[/url] as an organist in 1949. He has played with all the London Orchestras, including [a=New Philharmonia Orchestra]/[a=Philharmonia Orchestra], the [a=Royal Philharmonic Orchestra], and the [a=English Chamber Orchestra]. He was editor/arranger for [l330854] in London (1987-1993).Needs Votehttps://www.youtube.com/channel/UCoouSka3Z8UMBXk-orLjQbwhttps://open.spotify.com/artist/0vgwnEgt7fQ6Gni8yixpCihttps://music.apple.com/gb/artist/leslie-pearson/4326374https://www.bach-cantatas.com/Bio/Pearson-Leslie.htmhttp://composers-classical-music.com/p/PearsonLeslie.htmhttps://www.brasswindpublications.co.uk/acatalog/Pearson.htmlhttps://www.imdb.com/name/nm0669320/L. PearsonL. ピアソンLes PearsonLesley PearsonLeslie PearsonsPearsonPearson, LeslieЛесли Пирсонレスリー・ピアソンLondon Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsThe Kingsway Symphony OrchestraThe Virtuosi Of EnglandAccademia MonteverdianaThe Thamesis Trio Of London + +780939Helena FrankmarHelena Birgitta FrankmarSwedish classical violinist from Gothenburg, born September 1, 1964.Needs VoteGöteborgs SymfonikerGageego! + +780983Jack RollinsWalter Engle RollinsAmerican musician from Keyser, West Virginia born September 15, 1906, died January 1, 1973. +Along with [a=Steve Nelson (4)], he co-wrote "Here Comes Peter Cottontail" in 1949 and "Frosty the Snowman" in 1950. He also co-wrote many country songs for artists such as [a=Hank Snow], [a357982] and [a520366]. + +Inducted, 2011, West Virginia Music Hall of Fame. Needs Votehttp://en.wikipedia.org/wiki/Walter_E._Rollinshttps://www.wvmusichalloffame.com/hof_rollins.htmlhttps://adp.library.ucsb.edu/names/357108HollinsJ RollinsJ RowlinsJ. K. RollinsJ. PollinsJ. RawlingsJ. RolinsJ. RollingJ. RollingsJ. RollinoJ. RollinsJ. RowlandsJ.K. RollinsJ.RollinsJack CollinsJack K. RollinsJack KollinsJack NelsonJack RawlinsJack RobbinsJack RollinJack RollingJack RollingsRawlinsRollinRollingsRollinsRollins W.Steve "Jack" RollinsSteve RollinsW. E. RollinsW. RollinsW.E. RollinsW.RollinsWalter "Jack" RollinsWalter E "Jack" RolinsWalter E RollinsWalter E. RollinWalter E. RollinsWalter Jack RollinsWalter RollinsWalters Rollins + +781122Jutta MorgensternGerman violinist and concertmaster, active in Norway.Needs VoteBit 20 EnsembleNieuw Sinfonietta AmsterdamBergen Filharmoniske Orkester + +781123Ilze KlavaLatvian classical violist.Needs VoteIlze KļavaBergen Filharmoniske Orkester + +781186Earle HagenEarle Harry Hagen American composer and songwriter. +Born on July 9, 1919 in Chicago, Illinois. +Died on May 26, 2008 (age of 88) in Rancho Mirage, California. +Hagen teamed up with fellow 20th Century Fox orchestrator [a806761] in 1953 to create the Spencer-Hagen Orchestra. Spencer and Earle scored many early sitcoms and other television shows. He is the whistler heard in the theme music on [i]The Andy Griffith Show[/i] (1960). He composed music for more than 3,000 TV-show episodes and TV movies. He played with top bands of the swing era, and wrote one of the first textbooks on composing for movies. +Hagen charted four times in the U.S. as a songwriter between 1959-1985. His song "Harlem Nocturne" charted three of those times, twice by The Viscounts (#17 R&B, #52 overall, 1959 and (#39, 1965) (co-written by [a793495]). In 1985, "The Andy Griffith Theme" was adapted into "Gordy's Groove (Mayberry Mix)" by Choice M.C.'s, hitting #20 on the R&B chart (co-written by Fresh Gordon (as Gordon Pickett) & Herbert W. Spencer). +Hagen was inducted into the Television Academy Hall of Fame in 2011.Needs Votehttps://web.archive.org/web/20211130153644/http://www.earlehagen.net/https://en.wikipedia.org/wiki/Earle_Hagenhttps://www.imdb.com/name/nm0006120/https://variety.com/2019/music/news/composer-earle-hagen-legacy-1203262101/https://adp.library.ucsb.edu/names/106170https://web.archive.org/web/20160210000601/https://earlehagen.net/AgenAllerAlterE HaganE HagenE. H. HagenE. HaagenE. HaganE. HagenE. ハーゲンE.HagenEHEarl EaganEarl H. HagenEarl HaganEarl HagenEarl Hagen (EH)Earl HagerEarl HargenEarle - HagenEarle AgenEarle H HagenEarle H. HagenEarle HaganEarle Hagen OrchestraEarle HalenEarle HoganEarle HogenErle HagenH. HagenHaganHagarHagenHagen EarleHagensHaggenHazenHearl HagenHearle HagenHoganS. HagenИ. ХёгенсХагенЭ. ХагенTommy Dorsey And His OrchestraEarle Hagen And His OrchestraThe Spencer-Hagen Orchestra + +781534George CatesAmerican arranger, conductor and songwriter +Born October 19, 1911 in New York, USA – died May 10, 2002 in Los Angeles, California, USANeeds Votehttps:adp.library.ucsb.edunames201713Bob CatesC, CatesC. CatesC. GatesCarrollCatesCatzChatasG CatesG. CateG. CatesG. GatesG. Gates.G.CatesGatesGeo. CatesGeorge Cates And His OrchestraGeorge Cates And The Out Of SpacersGeorge Cates Out Of SpacersGeorge Cates' Out Of SpacersGeorge GatesGeorges CatesGeorges GatesGroge CatesJeorge Catesジョージ・ケイツ楽団George Cates And His OrchestraGeorge Cates And His Chorus And Orchestra + +782238Ian Watson (2)English conductor, organist, harpsichordist and pianist.Needs Votehttps://www.beethoven-project.com/https://www.bach-cantatas.com/Bio/Watson-Ian.htmhttps://handelandhaydn.org/about/musicians/orchestra-and-chorus/ian-watson/D. WatsonEnglish Chamber OrchestraThe SixteenThe English Baroque SoloistsThe Chamber Orchestra Of EuropeCollegium Musicum 90The Handel & Haydn Society Of Boston + +782379Darnell HowardAmerican jazz clarinetist, alto saxophonist, and violinist. +Played with : Charlie Elgard, James P. Johnson, "Singing Syncopators", Carroll Dickerson, King Oliver, Erskine Tate, Jimmy Wade, Dave Peyton, Jerome Carrington, Earl Hines and others. + +Born : July 25, 1895 in Chicago, Illinois. +Died : September 02, 1966 in San Francisco, California. +Needs Votehttps://adp.library.ucsb.edu/names/204690D. HowardHowardR. HowardKing Oliver & His Dixie SyncopatorsJelly Roll Morton's Red Hot PeppersLuis Russell's Heebie Jeebie StompersEarl Hines And His OrchestraKid Ory And His Creole Jazz BandState Street RamblersLovie Austin's Blues SerenadersEarl Hines' Dixieland BandMuggsy Spanier And His All StarsElgar's Creole OrchestraMemphis Night HawksKing Oliver's Savannah SyncopatorsDon Ewell QuartetEarl Hines And His BandDarnell Howard's Frisco FootwarmersEarl Hines / Muggsy Spanier All Stars + +782381George BaquetGeorge F. BaquetAmerican jazz clarinetist and saxophone player, born 1883 in New Orleans, Louisiana, died January 14, 1949 in Philadelphia, Pennsylvania. +Brother of [a=Achille Baquet]. +With [a=Freddie Keppard], Baquet went to Los Angeles in 1914, and in 1917 he settled in Philadelphia. He recorded with [a=Jelly Roll Morton] in 1929.Needs Votehttps://adp.library.ucsb.edu/names/114971Concert With George BaquetGeorge BacquetJelly Roll Morton's Red Hot PeppersJelly Roll Morton And His OrchestraGeorge Baquet's Swingsters + +782382Walter BriscoeTrombonistNeeds VoteBriscoeJelly Roll Morton's Red Hot Peppers + +782386Andrew HilaireAndrew Henry HilaireAmerican jazz drummer, probably best known for his work with [a=Jelly Roll Morton]. + +b. February 1, 1899 (New Orleans, LA, USA) +d. August 3, 1935 (Chicago, IL, USA) +Needs Votehttps://adp.library.ucsb.edu/names/114235A. HilaireA.HilaireAndrew HillaireHilaireJelly Roll Morton's Red Hot PeppersDoc Cook And His 14 Doctors Of SyncopationCook's Dreamland Orchestra + +782388Bass MooreWilliam MooreSousaphonist and tuba player from the Golden Age of Jazz.Needs Vote"Bass" MooreB. MooreBill MooreWiliam "Bass" MooreWilliam "Bass" MooreWilliam "Bass" Moore*William MooreWilliam Moore (20)King Oliver & His Dixie SyncopatorsKing Oliver & His OrchestraOllie Powers' Harmony SyncopatorsJasper Davis & His Orchestra + +782389Barney AlexanderBanjoistNeeds VoteBarneyJelly Roll Morton's Red Hot PeppersJelly Roll Morton And His Orchestra + +782393Bill BenfordAmerican jazz bassist and tuba player, born 1902 in Charleston, West Virginia, died around 1970. +Brother of [a=Tommy Benford].Needs VoteB. BenfordBill BendfordJelly Roll Morton's Red Hot PeppersThomas Morris And His Seven Hot BabiesThe Plantation Orchestra + +782397Geechie FieldsJulius Fields.American jazz trombonist. +Born : 1904. +Died : Date unknown. + +"Geechie" worked with : Earle Howard (1926), Charlie Skeete, Bill Benford (1920s), Jelly Roll Morton, Clarence Williams, James P. Johnson and others.Needs Votehttps://adp.library.ucsb.edu/names/107108C. FieldsFieldsG. FieldsGeechy FieldsGeechy FiledsGreechie FieldsJulius "Geechie" FieldsJulius "Geechy" FieldsJelly Roll Morton's Red Hot PeppersThomas Morris And His Seven Hot BabiesClarence Williams' Jazz KingsJelly Roll Morton's Quartet + +782399Ward PinkettWilliam Ward PinkettAmerican jazz trumpeter. + +Born: April 29, 1906 in Newport News, Virginia. +Died: March 15, 1937 in New York City, New York. +Needs Votehttps://adp.library.ucsb.edu/names/107107Marc PinkettPinkettW. PikettW. PinkettWard PickettWilliam "Ward" PinkettJelly Roll Morton's Red Hot PeppersClarence Williams' Jazz KingsJimmy Johnson And His OrchestraJoe Steele And His OrchestraThe Little RamblersThe Jungle Band (3) + +782401William LawsJazz drummerNeeds VoteAlexanderWilliam LabsJelly Roll Morton's Red Hot PeppersJelly Roll Morton And His Orchestra + +782405Howard HillUS jazz guitarist from the swing-era. + +Needs VoteH. HillNoble Sissle And His Orchestra + +782408William CatoWilliam G. KatoAmerican jazz trombonistNeeds Votehttps://www.allmusic.com/artist/william-cato-mn0001737225Bill CatoWilliam G. KatoWilliam KatoColeman Hawkins And His OrchestraJelly Roll Morton And His OrchestraColeman Hawkins Big Band + +782409Harry PratherEarly jazz tubaist and bassist, born 1906 in Cuthbert, Georgia. +Began playing tuba in c. 1920, recorded with [a=Jelly Roll Morton] in 1929 and with [a=Taylor's Dixie Orchestra] 1931, changed to bass in 1933, moved to Chicago, worked with [a=Punch Miller] and [a=Albert Wynn], then to New York in 1937. Played with [a=Sidney Bechet], [a=Frank Newton], and others. With Leon Abbey's Orchestra in 1941 and from 1945. Freelanced in Canada early 1950s, then regularly in group backing [a=The Ink Spots].Needs VoteTaylor's Dixie OrchestraJelly Roll Morton And His OrchestraSkeets Tolbert And His Gentlemen Of Swing + +782410Ernest BullockUS jazz musician. For the composer use [a=Sir Ernest Bullock].Needs VoteBullockErnie BullockErnie Bullock (?)Jelly Roll Morton's Red Hot Peppers + +782412Stump EvansPaul Anderson Evans.American jazz saxophonist (alto, tenor, baritone and C melody saxophone) player. +Born : October 18, 1904 in Lawrence, Kansas. +Died : August 28, 1928 in Douglas, Kansas. (Tuberculosis) + +"Stump" played with : [a309984] ("King Oliver's Original Creole Orchestra"), [a309976], [a307207] and [a1409386]. +Needs Votehttps://en.wikipedia.org/wiki/Stump_Evanshttps://www.allmusic.com/artist/stump-evans-mn0001765514/biographyhttps://adp.library.ucsb.edu/names/111688"Stomp" Evans"Stump" EvansEvansPaul "Stump" EvansPaul 'Stump' EvansPaul A. "Stump" EvansS. EvansStamp EvansStomp EvansStump JohnsonKing Oliver & His Dixie SyncopatorsKing Oliver's Creole Jazz BandJelly Roll Morton's Red Hot PeppersKing Oliver's Jazz BandWades Moulin Rouge Orch.Louis Armstrong And His StompersBernie Young's Creole Jazz BandNew Orleans Creoles + +782413Clarence BlackViolinistNeeds VoteJelly Roll Morton's Red Hot PeppersRichard Jones And His Jazz WizardsClarence Black And His Savoy Trio + +783053Jimmy GoldenJazz pianistCorrectGoldenJ. GoldenBilly Eckstine And His OrchestraPaul Quinichette Quintet + +783054Walter KnoxJazz trombonistNeeds VoteBilly Eckstine And His Orchestra + +783055Richard EllingtonJazz pianistNeeds VoteRichard "Duke" EllingtonBilly Eckstine And His Orchestra + +783056Warren BrackenJazz pianist & vocalistNeeds VoteBrackenBilly Eckstine And His Orchestra + +783057John CobbsAlto saxophonistNeeds VoteBilly Eckstine And His Orchestra + +783058Bob "Junior" WilliamsJazz alto saxophonistNeeds VoteBob WilliamsBobbie WilliamsJunior WilliamsBilly Eckstine And His Orchestra + +783060Arthur SammonsJazz tenor saxophonistNeeds VoteArt SammonsArthur SammonsArthur SimmonsBilly Eckstine And His Orchestra + +783061Bill McMahonJazz bassistNeeds VoteBilly Eckstine And His Orchestra + +783062Josh JacksonJosh JacksonTenor Saxophone player.Needs VoteJ. JacksonJack JacksonJacksonJoshua "Josh" JacksonJoshua JacksonJosuah JacksonLouis Jordan And His Tympany FiveBilly Eckstine And His OrchestraLouis Jordan And His Orchestra + +783244Meyer SlivkaMeyer Benjamin SlivkaAmerican timpanist and percussionist, born 8 April 1923 in Mishawaka, Indiana and died 26 December 2012 in Seattle, Washington. Father of [a8695126]Needs VoteSan Francisco SymphonySeattle Symphony Orchestra + +783300Lennie MartinRinaldo R. MarinoAmerican pianist, arranger, producer, and label owner. Founded the Pittsburgh, Pennsylvania labels [l=World Artists Records], [l=Calico], and [l=Robbee] with partner [a1312726]. Also launched the label [l=Alanna] with producer [a=Bill Lawrence (11)] in the late 50s. + +Martin began in the recording business when he founded the [l1794870] Record label in 1955. In 1958 Martin, [a1312726], and attorney Al Capozzi founded the [l=Calico] Records label, with their first release, [a383381]’s classic hit “[m=537502]” issued in 1959. Martin's arrangement introduced string accompaniment to Rock and R&B music and influenced [a190767]’s “Wall of Sound”. “Since I Don’t Have You” became one of the top ten songs of 1959 reaching number 3 on the Billboard Top 100 chart. In 1960, Guarino and Martin founded the Robbee Record Label, which was named in honor Martin's youngest son, Robert. In 1963, Guarino and Martin teamed together again to form the new label “World Records”, which was later renamed to World Artist Records. World Artists released “A Summer Song” the second Chad & Jeremy single in August of 1964, which reached number 7 on the Billboard Hot 100, and was Chad and Jeremy’s biggest US hit. + +Born December 20, 1916, died September 2, 1963.Needs Votehttps://sites.google.com/site/pittsburghmusichistory/pittsburgh-music-story/managers-and-promoters/lennie-martin-lou-guarinoL. MartinLennieLenny MartinMartinMartin LennieRinaldo MarinoLenny Martin And The Orchestra + +783302Janet VogelJanet F. Vogel-RappAmerican doo-wop singer. She was born June 10th, 1941 in Pittsburgh, Pennsylvania. She died February 21st, 1980 in her garage in Pittsburgh, under her home from carbon monoxide poisoning at the age of 37. +Needs VoteJ, VagenJ. BogelJ. VogelJanetJanet Deane - VogelJanet Deane-VogelJanet YogelVogelYogel Janet FJanet Vogel-RappJanet DeaneThe Skyliners + +783307Joseph VerscharenJoseph William VerscharenJoseph Verscharen (born August 30, 1940, Pittsburgh, Pennsylvania, USA - died November 3, 2007, Atlanta, Georgia, USA) was an American singer and songwriter. He sang baritone with the doo-wop group [a383381] from 1958 until he left in 1975.Needs VoteJ. VerharenJ. VerscharenJ. VerscharnJ. VerscharonJ. VerschatenJ. VerscheranJ.VerscharenJoe VerScharenJoe VerscharenVan ScharnenVerscharenVerscharen Joseph WVersharenThe Skyliners + +783326Gary Klein (2)Tenor saxophone playerNeeds VoteGary KleinKleinWoody Herman And His OrchestraWoody Herman And The Swingin' HerdDick Meldonian And His Orchestra + +783597Peter Bowman (2)Oboist. + +At age twenty, Mr. Bowman won the principal oboe position of Montréal Symphony Orchestra, where he played for six seasons. He taught at McGill University, and performed with McGill Chamber Orchestra and the Canadian Broadcasting Orchestra. Mr. Bowman joined the Saint Louis Symphony as Principal Oboist in September of 1977, and has appeared numerous times as a soloist in the Saint Louis Symphony orchestral and chamber music subscription series. In 1971 Mr. Bowman received the Albert Spaulding Award as the most outstanding instrumentalist at the Berkshire Music Festival at Tanglewood, Massachusetts. That same year, he was invited by Leonard Bernstein to perform in the world premiere of the composer’s theater piece Mass at the opening of the Kennedy Center in Washington, D.C., and to perform as soloist in the United States premiere of Bruno Maderna’s Concerto for Oboe and Orchestra at the Berkshire Music Festival. Mr. Bowman also performed with the Boston Symphony Orchestra, Boston Opera Company, Boston Ballet Company and Boston Pops. Mr. Bowman has performed as soloist and led master classes throughout the United States, Canada and Japan. He served as principal teacher, guest lecturer and recording artist at the Banff Center of Fine Arts (Canada) from 1981-1995, during which time he co-founded the Festival Wind Soloists. For seven seasons, Mr. Bowman participated in the Affinis Music Festival in Tokyo and Iida City in Japan, coaching the finest young professional Japanese musicians and performing as guest principal oboist with the New Japan Philharmonic. Other engagements include performances as guest oboist of the Boston Chamber Music Society, the Chicago Symphony Chamber Players and the Chicago Chamber Music Society. In 2002, Mr. Bowman performed and toured as guest principal oboist with the Los Angeles Philharmonic on a tour of European music festivals. Joan Tower’s Island Prelude for Strings and Oboe was written for Peter Bowman. He performed the premiere performance and subsequently recorded it with the Saint Louis Symphony. His chamber and orchestral recordings can be heard on labels such as RCA, Sony Classics, BMG, Telarc, EMI, Reprise, Summit Records, DG, New World Records and many others.CorrectSaint Louis Symphony Orchestra + +784052Eric VillemineyFrench classical cellist and cello professor, born in 1971. +Founder and member of the [a=Trio Werther] in 1993. In 1996, he joined [a=Orchestre De L'Association Des Concerts Pasdeloup]. He joined the [a=Philharmonia Orchestra] in 2009.Needs Votehttps://philharmonia.co.uk/bio/eric-villeminey/http://www.teatroverdisalerno.it/static/default/Eric-Villeminey-672.aspxhttps://www.theatreonline.com/Artiste/Eric-Villeminey/4579https://festival-serre-de-cary-potet.com/portfolio-item/eric-villeminey-violoncelle/Eric VillemeneyEric VilleminezPhilharmonia OrchestraOrchestre De L'Association Des Concerts PasdeloupEnsemble Des ÉquilibresTrio WertherPhilharmonia Chamber Players + +784405Toby TylerAmerican jazz trombonist and composer.Needs VoteT. TylerTobee TylerTyersTylerWoody Herman And His OrchestraThe Band That Plays The Blues + +784693RadiokörenRadiokören[b]Radiokören[/b] [i](Swedish Radio Choir)[/i] is a professional classical vocal ensemble, established in 1925 and funded by [l=Sveriges Radio]. The choir consists of 32 singers, currently led by conductor [a=Peter Dijkstra]. Since 1979, Radiokören is based at [l=Berwaldhallen] in Stockholm. In 2010, [i][l=Gramophone Magazine][/i] featured Radiokören in a special article, picked by an international jury as one of 20 world's best choirs. + +[b]Radiokören Conductors[/b] +[a=Einar Ralf] & Axel Nylander (1925–52) +[a=Eric Ericson] (1952–82) +[a=Anders Öhrwall] (1982–85) +[a=Gustaf Sjökvist] (1986–94) +[a=Tõnu Kaljuste] (1995–2001) +[a=Stefan Parkman] (2002–05) +[a=Peter Dijkstra] – since 2007Needs Votehttps://www.radiokoren.se/https://en.wikipedia.org/wiki/Swedish_Radio_ChoirChoeur De La Radio SuedoiseChoirChören Des Schwedischen RundfunksChœur De La Radio SuédoiseDamkör Ur RadiokörenDer Rundfunkchor StockholmDer Stockholmer RundfunkchorDet Svenske RadiokorDet svenske RadiokorLadies Of The Swedish Radio ChoirLadies Of The Swedish Radio ChorusMedlemmar Ur RadiokörenMembers Of The Stockholm Radio Orchestra ChorusMembers Of The Swedish Radio ChoirMembers of the Swedish Radio Symphony OrchestraRadio ChoirRadio Choir StockholmRadio Symphony ChorusRadiokören = Swedish Radio ChoirRadiokören Och En KammarorkesterRadiokören StockholmRadiokören, StockholmRadiomanskörenRundfunkchor StockholmRundfunkchor StockollmSchwedische RundfunkchorSchwedischer RundfinkchorSchwedischer RundfunkchorStockholm Radio ChoirStockholm Radio ChorusStockholmer RundfunkchorSveriges RadiokorSveriges Radioskören, StockholmSweden Radio ChorusSwedish Radio Chamber ChoirSwedish Radio ChoirSwedish Radio ChorusThe Radio ChorusThe Swedish Radio ChoirThe Swedish Radio ChorusUr RadiokörenWomen's Choir From The Swedish Radio ChoirWomen's Voices Of Sweden Radio ChorusWomens Choir From The Swedish Radio ChoirХор Шведского Радиоスウェーデン室内合唱団スウェーデン放送合唱団Anna ZanderDavid WijkmanEva WedinMartin ÅsanderSofia NiklassonStaffan Lindberg (2)Joakim SchusterNiklas EngquistLove EnströmLars Johansson BrissmanMarika ScheeleMarie AlexisElin LannemyrJohan PejlerLisa CarliothMagnus WennerbergIngrid RådholmJaanika KuusikAnna GracaMaria LundellUlla Sjöblom (2)Christiane HöjlundTove Nilsson (2)Mathias BrorsonFredrik Mattsson (3)Roland FaustIda ZackrissonInger Kindlund-StarkRickard CollinElin SkorupGustav NorlanderHélène KimbladUlrika Kyhle-HäggBengt Eklund (5)Jenny Ohlson AkreGunnar Sundberg (4)Magnus Ahlström (3)Mattias LilliehornKarl SöderströmKathrin LorenzenFredrik Mattson + +784712Stephen GeberAmerican cellist, born in 1942. He's married to [a3464184].CorrectBoston Symphony OrchestraThe Cleveland Orchestra + +784717Bernard KadinoffAmerican violist, born 1921 in New York, New York and died in 1987.CorrectNBC Symphony OrchestraBoston Symphony Orchestra + +784719Max WinderMax Gilles WinderAmerican violinist, born 1926 in Paris, France and died 1991 in Boston, Massachusetts Needs VoteBoston Pops OrchestraBoston Symphony OrchestraThe Cleveland Orchestra + +784739Thomas StevensAmerican trumpet player, composer, arranger, and orchestrator, born in Atascadero, California, July 29, 1938. He was principal trumpet with the Los Angeles Philharmonic Orchestra from 1972 to 1999, and a founding member of the Los Angeles Brass Quintet.Needs VoteThomas M. StevensThomas StephensTom StevensDallas Symphony OrchestraLos Angeles Philharmonic OrchestraThe Los Angeles Brass QuintetThe Horn Club Of Los Angeles + +784748Barbara BogatinClassical cellist + +Member of the [a=San Francisco Symphony] OrchestraNeeds VoteBarara BogaskinBarara BogatinBarbara B. BogatinSan Francisco SymphonyAston Magna + +784750Nancy ElanClassical violinist.Needs VoteLondon Philharmonic OrchestraOrchestra Of The Age Of EnlightenmentLondon Classical PlayersHanover Band + +785839Lee GainesOtho Lee GainesAmerican singer, songwriter and the founder of the Delta Rhythm Boys, a jazz and pop vocal group, born 21 April 1914, Houston, Mississippi, USA, died 15 July 1987, Helsinki, Finland. + +He wrote the lyrics for "Take the "A" Train" and "Just A-Sittin' and A-Rockin'", two jazz standards by [a258464]. + +Gaines was married to [a6347570], a calypso singer and former Cotton Club dancer.Needs Votehttps://en.wikipedia.org/wiki/Lee_GainesC. GainesCainesG. O. LeeGainesGaines, L.GainsGalnesGanesI. GainesJainesL, GainesL. GainesL. GainsL.GainesL.O. GainesLarry GainesLarry GainsLeeLee GainsLee GianesLee Otho GainesLeonard GainesO. L. GainesO.L. GainesOtheo Gaines LeeOtho Lee GainesЛ. Гэйнсリー・ゲインリー・ゲインズThe Delta Rhythm BoysThe Deltas + +786022Pierre SakaPierre SakalakisFrench author and composer, he was also a radio host +Born : November 21, 1921 (Sartrouville) +Died : July 23, 2010 +Needs Votehttps://fr.wikipedia.org/wiki/Pierre_Sakahttps://adp.library.ucsb.edu/names/356725A. SakaChakalakisP SakaP. SacaP. SakaP. SakalakisP. SakeP. SokaP. SukaP. sakaP.SakaPaul SakaPierre SakalakisSakaSakalakisП. СакоJean-Michel Crétois + +786032Long ChrisChristian BlondieauLong Chris (born 26 January 1942, Paris, France) is a French rock and folk lyricist and singer.Needs Votehttps://fr.wikipedia.org/wiki/Long_ChrisChrisChris LongL. ChrisL. ChrissL.ChrisUn Beatnik ChanteChristian BlondiauLong Chris Et Les Daltons + +786081Charlie StampsBanjo player and composer. +He co-wrote "Swinging the Swing" with pianist [a=Earres Prince].Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/209758/Stamps_CharlieCharles StampesCharles StampsCharley StampsStampsCab Calloway And His OrchestraThe MissouriansHarry's Happy Four + +786082Earres PrinceEarres Martin Prince.American jazz pianist and composer. +Born: September 26, 1896 in Jackson, Missouri. +Died: April 23, 1957 in New York City, New York. + +Earres played with Cab Calloway, Jean Calloway, Harry Dial and Lawrence Lucie, among others.Needs Votehttps://www.thehidehoblog.com/blog/2008/04/earres-prince-the-pianist-cab-never-appreciatedhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/208162/Prince_EarresEaress PrinceEarl PrinceEarras PrinceEarres M. PrincePrinceCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraThe MissouriansHarry Dial And His BlusiciansHarry's Happy Four + +786084William BlueWilliam Thornton BlueAmerican jazz saxophonist (alto) and clarinetist. + +Born : January 31, 1902 in Cape Girardeau, Missouri. +Died : April 1968 in Trenton, New Jersey. + +Played with : 'Doc' Cheatham, Charlie Creath, Dewey Jackson, "Andrew Preer's Cotton Club Orchestra", Noble Sissle, "The Missourians", Cab Calloway and others.Needs Votehttps://en.wikipedia.org/wiki/William_Thornton_Bluehttps://adp.library.ucsb.edu/names/115680Thornton BlueWilliam (Thornton) BlueWilliam ThorntonWilliam Thornton BlueWilliam Thorton BlueWilliam-Thornton BlueWilliam-Thorton BlueWm Thorton BlueWm. BlueCab Calloway And His OrchestraLouis Armstrong And His OrchestraAndy Preer And The Cotton Club OrchestraCharles Creath's Jazz-O-ManiacsThe MissouriansDewey Jackson's Peacock Orchestra + +786085Reuben ReevesAmerican jazz trumpeter, born October 25, 1905 in Evansville, Indiana, died September 1975 in New York. +Worked with [a=Erskine Tate] 1926-1928 and [a=Dave Peyton] 1927-1930 in Chicago, joined [a=Cab Calloway] in New York, returned to Chicago to lead own groups 1933-1935. From late 1930 until end of World War II played with and led army bands, then worked with [a=Harry Dial]. Ceased to work full-time in music 1952.Needs Votehttps://en.wikipedia.org/wiki/Reuben_Reeveshttps://adp.library.ucsb.edu/names/110953ReevesReuben "River" ReevesRuben ReevesCab Calloway And His OrchestraReuben "River" Reeves & His River BoysJohnny Dodds' Black Bottom Stompers + +786106Ted RomersaAmerican saxophonist in the swing era.Needs VoteErnest T. "Ted" RomersaStan Kenton And His Orchestra + +786425Ion IvanoviciJovan IvanovićIon Ivanovici (alternatively Iosif Ivanovici, Josef Ivanovici, baptised as Jovan Ivanović) was a Romanian military band leader and composer. + +Born 1845 in Timişoara, Austria-Hungary. +Died September 28, 1902 in Bucharest, Romania. + +Orphaned early on, Ivanovici learned to play the flute while still a child. In 1858, at age 13, he joined the 6th Line Regiment in Galați, Romania, as a military musician. There the bandmaster, Alois Redl, discovered his talent and taught him the clarinet. Promoted to sergeant major and transferred to the 2nd Roşiori Regiment in Iaşi, then the capital of Moldova, Ivanovici studied harmony, orchestration, and conducting under that regiment's bandmaster, Emil Lehr, then a well-known musician, from 1874 to 1879. Thanks to Lehr, who also conducted the orchestra of the National Theater of Iași, Ivanovici also became familiar with the musical repertory of contemporary Romanian theater. In addition, Lehr introduced him to his first musical publisher, Constantin Gebauer from Bucharest. + +In 1879, Ivanovici was appointed chief of music of the National Guard in Galați. Soon, he switched posts again to become chief of music of the 6th Line Regiment in Galați (1880-1894), then of the 11th Regiment Siret in Galați (1894-1895). With these last two bands, he began to tour all over Romania. In 1895, he was appointed Inspector General of Military Music, a position that he held until his death in 1902. + +Ivanovici wrote more than 350 pieces, not just marches, but also waltzes, polkas, mazurkas, and quadrilles that his bands performed at open-air concerts, at weddings or at large balls. His most famous song is the waltz "Danube Waves" (a.k.a. Donauwellen Walzer or Valurile Dunării), written around 1880. In 1946, [a=Saul Chaplin] adapted this waltz as "The Anniversary Song" for the movie "The Jolson Story." + +Other works include the "Carol I March" (dedicated to the King of Romania), the "Carmen Sylva" waltz (dedicated to Queen Elisabeth of Romania), the waltz "Romanian Heart" (op. 51), the waltz "La vie du Bucarest," the polka-mazurka "Souvenire de Sinaia," the quadrille "Souvenir de Brăila," the polka-mazurka "Souvenire de Lacul Sărat." At the 1889 World Exhibition in Paris, Ivanovici won the prize for the best march with a slow march entitled "Alexandre Marche" and was inspired to write the polka "Souvenir de l'Exposition."Needs Votehttp://en.wikipedia.org/wiki/Iosif_Ivanovicihttps://www.johann-strauss.org.uk/composers-a-m.php?id=131https://intapi.sciendo.com/pdf/10.2478/ajm-2022-0013https://biblioteca-digitala.ro/reviste/Acta-Moldaviae-Meridionalis/dl.asp?filename=25-Acta-Moldaviae-Meridionalis-XXV-XXVII-vol-2-2004-2006.pdf (pages 388-393, in Romanian with English abstract)https://adp.library.ucsb.edu/names/105617I. IvanoviciI. IvaniviciI. IvanovichiI. IvanoviciI. IvanovitchI. IvanovitsI. IvanovićI. IvanowiciI. IwanoviciI. JvanoviciI. ivanoviciI.IvanoviciI.イヴァノヴィッチIavoniciInovichIoan IvanoviciIon IovanoviciIon IvanovicIon IvanovicciIosef IvanoviciIosif IvanovicIosif IvanoviciIovan IovanoviciIvamoviciIvan IvanoviciIvan IvanovitsIvan IvanovićIvan OviciIvaniniciIvanociIvanociciIvanovicIvanovicciIvanovichIvanovichiIvanoviciIvanovitchIvanoviçiIvanovičeIvanovičiIvanowitschIvo IvanovicIwan IvanocichIwan IvanoviciIwanoviciJ IvanoviciJ. IvahoviciJ. IvannoviciJ. IvanoviaJ. IvanovicJ. IvanoviceJ. IvanovichiJ. IvanoviciJ. IvanovitchJ. JvanoviciJ. P. IvanoviciJ.IvanoviciJIvanoviciJan IvanoviciJanovicJohann IvanoviciJosef (Iosif) IvanoviciJosef IvanoviciJoseph IvanoviciJosif IvanoviciJosif IvanovićJvanovicJvanoviciLosif IvanoviciM. IvanovicciR. IvanoviciV. Ivanovicii. Ivanoviciv. IvanoviciИ. ИвановичИ. ИвановичиИвановичИвановичиИон ИвановичИосиф ИвановичイバノビチイバノビッチイヴァノヴィチイヴァノヴィッチИосиф Иванович + +786558Louis ColomboSaxophonist, known for its collaboration with Bobby Hackett.Needs Votehttp://www.allmusic.com/artist/louis-colombo-mn0002461614Bobby Hackett And His Orchestra + +786723Lucien MorisseLucien TrzesmienskiFrench songwriter (9 March 1929 in Paris - 11 September 1970 in Paris), chief executive officer of [l=Europe 1] and [l=Disc'Az].Correcthttp://fr.wikipedia.org/wiki/Lucien_MorisseJ.L. MorisseJean-Lucien MorisseL. MauriceL. MoriseL. MorisseL. MorissseL. MorrisL. MorrisseL. MousseL.M.L.MorisseLucienLucien Jean MorisseLucien MaurisseMaurisseMorisseMorriceMorriseMorrisseMousse + +786752Lawrence BurganBassist.Needs VoteL. BurganLawrence BurgenLionel Hampton And His Orchestra + +787136Frances TurnerOriginally a composer and Baroque violinist, Frances spent 17 years touring and recording with the leading UK Baroque orchestras and ensembles. At the same time she gradually trained as a complementary health practitioner, setting up the Frances Turner Clinic in 1990.Needs Votehttp://www.francesturner.org/aboutFrancis TrunerFrancis TurnerThe Scholars Baroque EnsembleThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentGabrieli PlayersBrandenburg ConsortThe Purcell BandEx Cathedra Baroque OrchestraThe English ConcertThe Amati Ensemble + +787138Henrietta WayneClassical violinist.Needs Votehttps://thesixteen.com/team/henrietta-wayne/The Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentGabrieli PlayersRaglan Baroque PlayersBrandenburg ConsortThe Purcell BandThe Music PartyThe Amati EnsembleKontrabande + +787376Herschel Burke GilbertAmerican violist, orchestrator, musical supervisor, & composer of film & TV scores. +Born April 20, 1918, Milwaukee, Wisconsin, USA. +Died June 8, 2003, Los Angeles, California, USA. +In 1974, he founded [l=Laurel Records] (aka [l=Laurel Record]), as an outlet for classical chamber music and jazz, featuring mainly American composers. +He was in Hollywood between 1944 and 1958, variously under contract with Columbia, United Artists and 20th Century Fox as arranger/music director. His most productive spell was between 1952 and 1954, when he became the first person to receive Oscar nominations for the categories of Original Score, Song and Musical Adaptation in the course of three successive years.Needs Votehttps://en.wikipedia.org/wiki/Herschel_Burke_Gilberthttps://www.imdb.com/name/nm0318074/Amos BurkeB. GilbertBurkeGilbertGilbert Herschel BurkeH. B. GilbertH. Burke GilbertH. GilbertH.B. GilbertHerochel, Burke, GilbertHerschel B. GilbertHerschel Burk GilbertHerschel BurkeHerschel Burke-GilbertHerschel Burt GilbertHerschel GilbertHerschell, Burke, GilbertHerschel—GilbertHershall GilbertHershel GilbertHarry James And His OrchestraHarry James & His Music Makers + +787405Susanne DegerforsCello playerNeeds Votehttps://www.linkedin.com/in/susanne-degerfors-7795a717Susanna DegerforsSusanne DegeforsSusanne DegenforsSusanne DegersforsI CompaniNieuw Sinfonietta AmsterdamMondriaan StringsOrkest Amsterdam DramaTrytten StringsEastPark StringsHolland Symfonia + +787956Billy GriggsJazz bass player from Boston, MA.Needs VoteThe Charlie Parker All-Stars + +788254Morris StoloffMorris W. StoloffAmerican violinist and composer. +Born 1 August 1898 in Philadelphia, Pennsylvania, USA. +Died 16 April 1980 (age of 91) in Woodland Hills, Los Angeles, California, USA. +He was a child prodigy on the violin. He toured the U.S. at age 16, later became first violinist with the Los Angeles Philharmonic Orchestra. In 1928, took position of concert master of the Paramount studio orchestra. Composer of film music and classical works for violin. +He worked as a music director at Columbia Pictures from 1936 to 1962. +Among his best known compositions were "Loves of a Gypsy" and "A Song to Remember".Needs Votehttp://en.wikipedia.org/wiki/Morris_Stoloffhttps://adp.library.ucsb.edu/names/209853https://www.imdb.com/name/nm0006304/https://www.allmusic.com/artist/morris-stoloff-mn0000496092M. StoloffM. ストロフM.StoloffMaurice StoloffMoris StoloffMoris StoroffMorris / StoloffMorris J. StoloffMorris Stoloff With The Warner Bros. OrchestraMorris StolooffMorris W. StoloffStoloffWith Orchestra Directed by Morris StoloffWith Orchestra and Male Chorus, Directed by Morris StoloffLos Angeles Philharmonic OrchestraMorris Stoloff And His Orchestra + +788605Peter HalmiPeter Halmi (18 June 1933 - 22 June 2017) was a Hungarian born violinist, conductor and music professor.Needs VoteBoston Symphony OrchestraFrankfurter Opern- Und MuseumsorchesterKarolyi-QuartettThe Feld String Quartet + +788677Mark DavidBritish trumpeter. Born in Cornwall, England, UK. +His professional career began as Principal Trumpet at [a=Opera North] (September 1987 - March 1989) and continued at the [a=Bournemouth Symphony Orchestra] (March 1989 - July 1990) before he moved to the [a=Philharmonia Orchestra] in July 1990, holding the Principal Trumpet position until December 2011. Principal Trumpet of [a832962] since August 2010. Member of [a=The Nash Ensemble]. Artistic Director and Head of Brass at the [l527847] since September 2011.Needs Votehttps://twitter.com/skiingtrumpeter?lang=enhttps://www.linkedin.com/in/mark-david-05726538/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/david-mark/https://europe.yamaha.com/en/artists/m/mark-david.htmlhttps://www.playwithapro.com/live/Mark-David/https://www.ram.ac.uk/people/mark-david#:~:text=Principal%20Trumpet%20in%20the%20Philharmonia,member%20of%20the%20Nash%20Ensemble.&text=He%20has%20also%20recently%20appeared,Fields%20in%20London%20and%20Europe.https://www.maspalomastrumpetfest.com/profesores/mark-david/?lang=enhttps://www.dublinbrassweek.com/mark-david.htmlhttps://www.hyperion-records.co.uk/a.asp?a=A218Philharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsBournemouth Symphony OrchestraThe Nash EnsembleOpera NorthThe Philharmonia Soloists + +789036Larry HerbstrittLarry W. HerbstrittAmerican songwriter, arranger and producer. +Born July 4, 1950 in Coudersport, Pennsylvania. +He charted seven times between 1977 and 1990. He had a #1 song with "I Just Fall in Love Again" by Anne Murray in 1979 (co-written by Stephen Dorff, Harry Lloyd, and Gloria Sklerov).Correcthttp://www.myspace.com/lastrittHerbstittHerbstreitHerbstrittL HerbstrittL. HerbstrippL. HerbstrittL. HerbtrittL. HerstrittL.HerbstrittLarry B. HerbstrittLarry HerbstriffLarry HerstrittLarry W HerbstrittLarry W. HerbstrittStrittOllie & The Go-Go's + +789068Max MandelCanadian violist born in 1975.Needs Votehttps://x.com/maxtmandelhttps://www.helicon.org/artists/max-mandelMax MandellThe Silk Road EnsembleFLUX QuartetOrchestra Of The Age Of EnlightenmentThe Handel & Haydn Society Of BostonThe Knights (10)Metro String Quartet + +789173Pauli SalonenPauli Tapio SalonenFinnish lyricist, born on June 12, 1927 in Heinola, Finland.CorrectP SalonenP. SalonenP.SalonenPa-SaPauli SavolainenSalonen + +789408Alan Prosser (2)Alan ProsserNeeds VoteA. ProsserProsserChiller ProductionsThe Riggler12 Inch ThumpersSophies MenSophie's Boys12 Inch Groovers + +789409Adrian WraggAdrian WraggNeeds VoteA. WraggAndrew WraggRagWraggWraggy12 Inch ThumpersSophies MenSophie's Boys12 Inch Groovers + +789569Tuula ValkamaTuula Orvokki ValkamaA Finnish lyricist. Born on June 20, 1937 in Helsinki, Finland and died on December 31, 2018 in Helsinki, Finland. She has both written original lyrics and translated lyrics into Finnish. She has used a pseudonym "Nepis".Needs VoteT ValkamaT. ValkamaT.ValkamaT.valkamaValkamaValkama TuulaNepis + +789570Kerttu MustonenKerttu MustonenFinnish lyricist, born March 21, 1891 in Nurmes; died May 21, 1959 in Helsinki. + +She used a pseudonym "Vuokko" (only on Liisa pien'). +CorrectA. MustonenK MustonenK. MustonenK.MustonenMustonenMustonen KerttuJouko KukkonenVuokko (2) + +789575Martti JäppiläMartti Kristian JäppiläFinnish composer, accordionist and conductor, born on October 7, 1900 in Helsinki; died on March 22, 1967 in Helsinki. One of the founders of [a=Dallapé]. + +Used pseudonyms: M. (Martti) Maja +Needs VoteJappilaJäppiläM JäppiläM. JappilaM. JäppiläM.JäppiläM.K.JäppiläMartti Kristian JäppiläMasa JäppiläMatti JäppiläMartti MajaK. Koski (2)Ville VesakkoDallapéMasan Harmonikkaorkesteri + +789692Angie HarleyNeeds VoteBergen Filharmoniske Orkester + +789693Anders RensvikNorwegian viola player, born 1973.Needs VoteOslo Filharmoniske OrkesterEnsemble ErnstBergen Chamber EnsembleTelemark Chamber Orchestra + +789724Barry GriffithsBritish classical violinist and concertmaster, born 20 May 1939; died 17 September 2020.Needs Votehttps://www.independent.co.uk/news/obituaries/barry-griffiths-violinist-musician-obituary-english-national-opera-b1762316.htmlhttps://en.wikipedia.org/wiki/Barry_Griffiths_(violinist)Barry GriffithRoyal Philharmonic OrchestraBBC Northern Symphony OrchestraThe English National Opera Orchestra + +789776Anne Sofie Von OtterAnne Sofie von OtterSwedish mezzo-soprano (soprano) opera singer, concert recitalist and hovsångare (royal court singer), born 9 May 1955 in Stockholm. + +She grew up in Stockholm, Bonn and London and studied at the Stockholm Academy of Music and the Guildhall School of Music and Drama in London.Needs Votehttps://www.annesofievonotter.com/https://www.facebook.com/annesofievonotterhttps://en.wikipedia.org/wiki/Anne_Sofie_von_Otterhttps://sv.wikipedia.org/wiki/Anne_Sofie_von_Otterhttps://www.imdb.com/name/nm0653141/A. S. Von OtterA.S. Von OtterA.S. von OtterAnn Sofie Von OtterAnn Sophie Von OtterAnn-Sofie Von OtterAnn-Sofie von OtterAnne Sofie OtterAnne Sofie von OtterAnne Sophie Von OtterAnne Sophie von OtterAnne-Sofie Von OtterAnne-Sofie von OtterAnne-Sophie Von OtterOtterSophie Von OtterVon Ottervon OtterАнне Софи Фон Оттерアンネ・ソフィー・フォン・オッターAdolf Fredriks BachkörStockholm Bach Choir + +789915Robin Williams (2)Robin WilliamsBritish oboist, born in West Bromwich, UK. +Attended Wells Cathedral School, studying oboe. From 1981-1985 he studied at the Royal Northern College of Music. +After graduating, he became concert soloist with the Heidelberg Kammerorchester, the Wiener Solisten, the Johann Strauss Sinfonietta and the Musikkollegium Zurich. +Then became Principal Oboe with the Espoo City Chamber Orchestra and the Espoo Wind Quintet in Finland. +Worked with the Niederrheinische Sinfoniker of Krefeld from 1990 to 1992. +Since 1992 he is Principal Oboe with the Scottish Chamber Orchestra (SCO). +Needs Votehttp://sco.test.poptel.org.uk/concerts/artistinfo.aspx?aid=232Robin WilliamsScottish Chamber OrchestraHeidelberger KammerorchesterScottish Chamber Orchestra Wind Soloists + +790060Dean FoleyHorn player.Needs VoteRoyal Philharmonic OrchestraThe Steve Martland BandGabrieli Players + +790169Bobby WeinsteinRobert WeinsteinAmerican songwriter, singer, and music industry executive. +Author of many hit songs, mostly co-written with [a107783], including "Goin' Out Of My Head", "It's Gonna Take A Miracle", and "I'm On The Outside (Looking In)". Inducted to the Songwriters Hall of Fame, with Randazzo, in 2007. + +Born: July 16, 1939 in Brooklyn, New York +Died: March 16, 2022Needs Votehttp://www.bobbyweinstein.comhttp://www.songwritershalloffame.org/exhibits/C356http://en.wikipedia.org/wiki/Bobby_Weinsteinhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=364751&subid=2https://www.imdb.com/name/nm0918425/B WeinsteinB. WainsteinB. WeinsheinB. WeinsteinB. WeinstenB. WeinstinB. WeinterB. WeisteinB.WeinsteinBob WeinsteinBob WeisteinBobby WeinstedLaytonNeinsteinR. WeinsteinR.WeinsteinRobert WeinsteinWeansteinWebsteinWeimsteinWeinspeinWeinsteinWeinstein BobbyWeinstenWeinsteniWeinstienWeintsteinWeisteinWeistein PaterWensteinWiensteinWinsteinБ. ВайнштейнBobby WildingRobert Wilding (2)The New Order (2)The Legends (8)Weinstein & StrollJoyce (35) + +790864Georges BoulangerGeorge PantaziRomanian violinist, conductor and composer, April 18, 1893 – June 3, 1958.Needs Votehttps://en.wikipedia.org/wiki/Georges_Boulanger_%28violinist%29http://www.classicalarchives.com/composer/32019.htmlhttps://adp.library.ucsb.edu/names/107778B. BoulangerBailangerBolanderBolangerBollingerBoolangeBoulagerBoulanderBoulangerBoulanger GeorgesBoulanger, GBoulangierBoulargerBoulingerBoulongerBulangerC BoulangerC. BoulangerDoulangerG BoulangerG BoulangerG. BolangerG. BoulanderG. BoulangeG. BoulangerG. BulangerG.BoulangerGeo BoulangerGeorg BoulangerGeorg BoulangierGeorge BoulangerGeorger BoulangerGeorges Boulanger, Violin-VirtuoseGoulangerJ BoulangerJ. BolangerJ. BoulangerJ.BoulangerM. BoulangerГеорг БуланжерGeorges Boulanger And His OrchestraGeorges Boulanger Und Sein EnsembleBoulanger-Trio + +790953Eddy Owens (2)Blues songwriter and pianist. Active in the 1950s.Needs VoteC. H. E. OwensCHE OwensCh. E. OwensE. OwensEd OwensEddy H. OwensH. E. OwensH. Eddy OwensH. OwensH.E. OwensHenry OwensHorrace Eddy OwensOwensOwens Horace EddyJohnny Otis And His Orchestra + +791377Lauri JauhiainenLauri Kustaa JauhiainenBorn on July 13, 1925 in Pielavesi, Finland. A Finnish composer, lyricist, translator and writer. + +He used pseudonyms Poika Peltonen, Tarmo Ponsi, Jauhis, K Laurick and B. Jauhert (together with Erkki Ertama). + +Died on October 4, 2003 in Helsinki, Finland. +Needs VoteJ. JauhiainenJ. JauhikainenJauhiainenJauhiainen LauriL. JauhiainenL.JauhiainenLauriPoika PeltonenU. JauhiainenU.Jauhiainenl. JauhiainenTarmo PonsiOlavi PakuPoika PeltonenVottonenK. Laurick + +791589Manny ThalerAmerican jazz saxophonist (baritone and alto) and bassoon player. +Born : December 31, 1917 in New York City (The Bronx), New York. +Died : October 20, 2009 in Sun City, Arizona. + +Worked with Glenn Miller, Tex Beneke, Mel Tormé, Artie Shaw, Charlie Parker, Tommy Dorsey and others.Needs VoteMannie ThaelerMannie ThalerPfc Manny ThalerМэнни ТэйлерThe Glenn Miller OrchestraCharlie Parker And His OrchestraGlenn Miller And The Army Air Force BandAll Star Alumni OrchestraBobby Byrne And His Orchestra + +791643Rauno LehtinenRauno Väinämö LehtinenBorn April 7, 1932 in Tampere, Finland. Died May 1, 2006 in Helsinki, Finland. A Finnish musician (saxophone, piano, organ, mandolin, violin, bass etc.), composer, arranger, conductor, singer and producer. + +He is probably most remembered from his hit "Letkis" in the 1960's, which has been recorded in over 90 countries all over the world. Also in Eurovision Song Contest in 1973, [a=Marion (9)] performed his composition "Tom Tom Tom", which remained the most successful Finnish entry in the contest until [a=Lordi]'s victory in 2006. + +He used the pseudonyms L. Väinämö, L. Rawski, V. Reko and V. Title. + +Died May 1, 2006 in Helsinki, Finland.Needs VoteL Väinämö-Rauno LehtinenLaithimenLaithinenLalthinenLathinenLehtinenLethinenLethinnenR LehtonenR. LechteneinR. LechtinenR. LehtinenR. LehtnenR. LethinenR. LethtinenR.LehtinenR.レーティネンRaneRaonu LehtinenRaum LehtinenRaune LehtinenRaunoRauno LehtunenRauno V. LehtinenRauns Lehtinenr. LehtinenМ. ЛехтененР. Лехтиненר. לטינןレーティネンAnton LetkissL. VäinämöV. RekoStig RaunoL. RawskiBackmanin OrkesteriThe ChlorophylliesRauno Lehtisen OrkesteriJani Uhleniuksen Uusrahvaanomainen OrkesteriSoitinyhtye LiisaNeljä PenniäMieskuoro "Varsovan Laulu"The Finnish Letkiss All-StarsSoitinyhtye "Lahjattomat"Syntikaatin Kuoro Ja OrkesteriKauko Partion OrkesteriSäälimättömätAron AnimaalitRautalanka OyThe Vostok All-StarsThe ModangosRauno Lehtisen Kuoro + +791675Ernie ShepardErnest Jr. Shepard.American jazz double bassist. + +Born : July 19, 1916 in Beaumont, Texas. +Died : November 23, 1965 in Hamburg, Germany. + +Among others he performed with Duke Ellington, Earl Coleman, Paul Gonsalves, Johnny Hodges, Annie Ross, Bill Wharton, Billy Strayhorn, Vic Dickenson, Quincy Jones, Gene Ammons, Sonny Stitt, Mary Ann McCall and Thomas Christian. +Needs Votehttps://en.wikipedia.org/wiki/Ernie_ShepardE. ShepardErnest Shepard Jr.Ernie Shepard Jr.Ernie ShephardErnie ShepherdErnie SheppardShepardShepherdDuke Ellington And His OrchestraSonny Stitt BandEddie Heywood And His OrchestraBuddy Banks SextetGene Ammons And His BandAl Killian Sextet + +791681Gary FrommerAmerican jazz drummer, born 23 February 1935 in Los Angeles, USA, died 6 May 2005 in Anchorage, USA.Needs VoteArt Pepper QuartetTerry Gibbs Quartet + +791731Sid JacobsonSidney JacobsonAmerican comic book writer and editor. +He was managing editor and editor in chief for [l778952] ([i]Casper the Friendly Ghost, Richie Rich, Hot Stuff the Little Devil[/i] and [i]Wendy the Good Little Witch[/i]). +In the 1950s and 1960s, while working at Harvey Comics, Jacobson wrote songs for such pop acts as Frankie Avalon ([i]A Boy Without a Girl[/i]), Earl Grant ([i](At) The End (of a Rainbow)[/i]), Dion and the Belmonts, and Johnny Mathis, despite the fact that Jacobson did not read music. + +Born: October 20, 1929 in Brooklyn, New York +Died: July 23, 2022 in San Mateo, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Sid_JacobsonJackobsonJacksonJacobsenJacobsonJacobson SidJaconsonS JacobsonS. JacobsonS. JacobsenS. JacobsonS. JaconsonSid JacksonSid JacobsenSid JacosenSid JacosonSidney JacobsonSyd JacobsonYacobsonThe Group Therapists + +792431Ringela RiemkeGerman cellist.Needs VoteRiemkeKammerensemble Neue Musik BerlinRundfunk-Sinfonieorchester Berlin + +792461Friedemann WerzlauFriedemann WerzlauGerman drummer and percussionistCorrecthpw panta rheiKammerakademie Potsdam + +792470Steffen TastGerman violinist and conductor.Needs VoteSteffan TastKammerensemble Neue Musik BerlinRundfunk-Sinfonieorchester Berlin + +792603Hans Reinhard BiereGerman classical violinistCorrectH.R. BiereWDR Sinfonieorchester KölnOrchester der Bayreuther Festspiele + +792870Freddy JeffersonJazz pianistCorrectFred JeffersonFreddie JeffersonFrederick Jeffersonフレディ・ジェファーソンLester Young And His BandGene Sedric & His OrchestraSkeets Tolbert And His Gentlemen Of SwingStuff Smith Sextet + +792902James DahlJazz trombonistNeeds VoteDahlJim DahlJimmie DahlWoody Herman And His OrchestraElliot Lawrence And His OrchestraManny Albam And His Jazz GreatsThe Nat Pierce OrchestraJohnny Richards And His OrchestraLarry Sonn OrchestraWoody Herman And The Fourth HerdGeorge Williams And His OrchestraHal Schaefer And His OrchestraChubby Jackson's Big BandSpecs Powell & Co. + +793064Georg Philipp TelemannGeorg Philipp TelemannGerman Baroque composer and multi-instrumentalist, born 14 March 1681, Magdeburg, Electorate of Brandenburg (now Germany), died 25 June 1767, Hamburg, Roman Empire, (now Germany). + +Telemann was one of the most prolific composers in history and was considered by his contemporaries to be one of the leading German composers of the time. He was compared favorably both to his friend [a=Johann Sebastian Bach], who made him the Godfather and namesake of his son [a=Carl Philipp Emanuel Bach], and to [a=Georg Friedrich Händel], whom Telemann also knew personally. Telemann's music incorporates several national styles: French, Italian, and Polish. He remained at the forefront of all new musical tendencies and his music is an important link between the late Baroque and early Classical styles. + +As a child he showed considerable musical talent, mastering the violin, flute, zither and keyboard by the age of ten and composing an opera (Sigismundus, on a text by Postel). His family did not approve of his involvement in music, and upon his mother's insistence, he entered the University of Leipzig to study law in 1701. + +Within a year of his arrival in Leipzig he founded the student Collegium Musicum with which he gave public concerts (and which Bach was later to direct), wrote operatic works for the Leipzig Theater, and in 1703 became musical director of the Leipzig Opera and was appointed organist at the Neue Kirche in 1704. Needless to say, he dropped the study of law and pursued his career in music. + +Telemann held important positions in Leipzig, Żary, Eisenach, and Frankfurt before settling in Hamburg in 1721, where he became musical director of the city's five main churches. Throughout his life he composed a year's worth of cantatas for regular church services and 78 services for special occasions totaling 1,043 cantatas, 40 operas, 600-700 orchestral suites, 44 passions, along with numerous concerti, sonatas and chamber music for various instrumental combinations.Needs Votehttps://en.wikipedia.org/wiki/Georg_Philipp_Telemannhttps://www.bach-cantatas.com/Lib/Telemann-Georg-Philipp.htmhttps://www.baroquemusic.org/biotelemann.htmlhttps://www.naxos.com/person/Georg_Philipp_Telemann/23879.htmhttps://www.britannica.com/biography/Georg-Philipp-Telemannhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102562/Telemann_Georg_PhilippC. P. TelemannC.-Ph. TelemannFriedrich TelemannG P TelemannG Ph TelemannG. F. TelemanG. F. TelemanasG. F. TelemannG. P. TelemanG. P. TelemannG. P.TelemannG. PH. TelemannG. Ph. TelemanG. Ph. TelemannG. Ph.TelemannG. Ph: TelemannG. Phil. TelemannG. Philipp TelemannG. TelemannG.-F. TelemannG.-P. TelemannG.-Ph. TelemannG.F. TelemanG.F. TelemannG.F. ThelemanG.P TelemannG.P. TelemanG.P. TelemannG.P. TellemanG.P.H. TelemannG.P.TelemannG.P.テレマンG.PH. TelemannG.Ph. TelemannG.Ph.TelemanG.Ph.TelemannG.Ph.泰里曼Georg Fhilipp TelemannGeorg Frederick TelemannGeorg Friedrich TelemannGeorg P. TelemannGeorg Ph. TelemanGeorg Ph. TelemannGeorg Phil. TelemannGeorg Philip TelemannGeorg Philippe TelemannGeorg Phillip TelemanGeorg Phillip TelemannGeorg Phillipe TelemannGeorg Phillipp TelemannGeorg TelemannGeorg-Ph. TelemannGeorg-Philip TelemannGeorg-Philipp TelemannGeorg. P. TelemannGeorg. Philipp TelemannGeorge P. TelemannGeorge Ph. TelemannGeorge Philip TelemannGeorge Philipp TelemannGeorge Philippe TelemannGeorge Phillip TelemannGeorge Phillipp TelemannGeorges Philippe TelemannGeorges-Philippe TelemannGeorges-Phillippe TelemanGeorges-Phillippe TelemannGg. Ph. TelemannGg. Phil. TelemannGiorgio Filippo TelemannJ. PH. TelemanJ. Ph. TelemannJ.-Phi. TelemannJ.Ph. TelemannP. TelemannP.PH. TelemannPh TelemannPhilipp TelemannSignor TelemannSteinmetzTELEMANNTelemanTelemannTelemann G. P.Telemann G.F.Telemann G.P.Telemann Georg PhilippTelemann, G. Ph.Telemann, Georg PhilippTelemann:TellemannTélémannΤέλεμανГ. ТелеманГ. Ф. ГендельГ. Ф. ТелеманГ. Ф. ТелеманаГ.Ф. ТелеманГ.Ф.ТелеманГеорг Филипп ТелеманГеорг Фрідріх ТелеманТелеманФ. Телеманゲオルク・フィリップ・テレマンテレマン + +793065Armand CavallaroPercussionistNeeds VoteA. CavalaroA. CavallaroFrançois Rauber Et Son OrchestreGrand Orchestre De L'OlympiaClyde Borly Et Ses PercussionsStephane Grappelli QuartetJoss Baselli Quartet + +793125Christopher TyeEnglish composer and organist (c. 1505 – c. 1572).Needs Votehttps://en.wikipedia.org/wiki/Christopher_Tyehttps://www.britannica.com/biography/Christopher-Tyehttps://adp.library.ucsb.edu/names/102482C. TyeCh. TyeChr. TyeCr. TyeDr. Christopher TyeDr. TyeTyeTye a.o.Tyle + +793453Aaron IzenhallTrumpeter with [a=Louis Jordan], but also with [a=Louis Armstrong] and [a=Ella Fitzgerald]CorrectA. IzenhallLouis Jordan And His Tympany FiveLouis Jordan And His Orchestra + +793458Arnold ThomasPianistNeeds VoteArnold "Tommy" ThomasLouis Jordan And His Tympany Five + +793468Vic LourieCredited as drummer and percussionistNeeds VoteLouis Jordan And His Tympany Five + +793470Henry TurnerHenry B. TurnerAmerican jazz double bass player +born 28 June 1904 in Quincy, Florida +died 26 July 1980 in New York.Needs VoteLouis Jordan And His Tympany FiveSidney Bechet And His OrchestraClaude Hopkins And His OrchestraJoe Sullivan And His Café Society OrchestraJoe Sullivan Band + +793479Courtney Williams (2)Nathaniel Courtney WilliamsUS American tumpeter, also active as a composer. He recorded with [a253482] in 1938, with [a=Louis Jordan] from 1938 to 1940 and in 1944, with [a1811659] in 1942, with [a624918] in 1943 and 1957 and with [a846453] in 1946. +Born: March 29, 1916 in Asbury Park, NJ +Died: February 4, 1999. +Needs VoteC. WilliamsCourtney WilliamsNathaniel Courtney WilliamsWilliamsLouis Jordan And His Tympany FiveBuddy Johnson & His BandLouie Jordon's Elks Rendevouz Band + +793481Leonard GrahamIdrees Sulieman (née Leonard Graham)Leonard Graham (born August 7, 1923, St. Petersburg, Florida, USA - died July 28, 2002, St. Petersburg, Florida, USA) was an American jazz trumpeter who played on [a145256]'s debut on [l281], along with [a264621], [a556973], [a251776] and [a29977]. Also played with such greats as [a145263] and [a23755]. He changed his name to [a264620] after his conversion to Islam. +Needs Votehttps://en.wikipedia.org/wiki/Idrees_SuliemanL. GrahamLeonard Graham (Idress Sulieman)Leonard Graham [Idress Sulieman]Léonard GrahamIdrees SuliemanLouis Jordan And His Tympany FiveBill De Arango Sextet + +793488Alex Mitchell (4)US jazz/blues drummer from the swing-era. + +Needs Vote"Razz" MitchellAlex "Razz" MitchelAlex "Razz" MitchellAlex 'Razz' MitchellRazz MitchellLouis Jordan And His Tympany FiveAl Cooper And His Savoy Sultans + +793492James Jackson (5)James "Ham" Jackson was an American jazz/jump blues/jive guitarist, active mainly in the 1940-1950s.Needs VoteHam JacksonJames "Ham" JacksonJames 'Ham' JacksonLittle Ham (Ham Jackson)Roosevelt James "Ham" JacksonLouis Jordan And His Tympany FiveThe Loumell Morgan TrioNora And Delle And Their Ham Trio + +793502Bill JenningsAmerican jazz guitarist. Bill started out with his twin brother, Albert Jennings, in a trio called, The Three Spades. He later worked with Louis Jordan (and his Tympany Five), Wild Bill Davis (Trio), Jack McDuff, Willis "Gator" Jackson, Bill Doggett, Louis Armstrong, Chris Powell And His Five Blue Flames, Hot Lips Page and others. He was described in the title of one of his compilations as "The Architect Of Soul Jazz". + +Born: September 12, 1919 in Indianapolis, Indiana +Died: November 29, 1978 in Indianapolis, Indiana (age 59)Needs Votehttps://en.wikipedia.org/wiki/Bill_Jennings_(guitarist)https://adp.library.ucsb.edu/names/110688B. JenningsBillJellingsJenningsW. JenningsW. L. JenningsWild Bill JenningsWilliam "Bill" JenningsLouis Jordan And His Tympany FiveLouis Jordan And His OrchestraWillis Jackson QuintetStuff Smith QuartetChris Powell And The Five Blue FlamesWild Bill Davis TrioBill Jennings QuartetBill Jennings QuintetThe Bill Jennings - Leo Parker QuintetThe Three Spades + +793508Yack TaylorFemale jazz and blues singer and songwriter, who recorded for Decca 1940-1941, partly as vocalist with orchestras led by [a=Louis Jordan], [a=Skeets Tolbert] and [a=Sammy Price].Needs VoteJack TaylorTaylorSam Price And His Texas Blusicians + +793509Freddie SimonLue Freddie SimonAfrican-American jazz saxophone player, mainly tenor. Active from 1944. Born 1920, he studied music at Prairie View and Alabama State colleges. Simon died Nov. 2, 1973 aged 53 after a brief illness in Los Angeles.Needs Votehttp://www.allmusic.com/artist/freddie-simon-mn0000184130F. SimonFred SimonFreddie SimonsFreddy SimonLu Freddie SimonLue Freddie SimonSimonSimonsLionel Hampton And His OrchestraLouis Jordan And His Tympany FiveWilbert Baranco And His Rhythm BombardiersChuck Thomas & His All StarsFreddie Simon OrchestraFreddie Simons Quintette + +793510Stafford SimonUS jazz tenor saxophonist and clarinetist, nickname "Pazuza", born 1908, died 1960 in New York. +Played with [a=Willie Bryant] (1938), [a=Ollie Shepard] (1939-1940), [a=Louis Jordan] (1940-1941), [a=Benny Carter] (1940), [a=Shad Collins] , [a=Lucky Millinder] (1941-1942) and others. During 1940s-1950s led own small band, died on bandstand at the Savannah Club, Greenwich Village.Needs Votehttps://en.wikipedia.org/wiki/Stafford_SimonP. SimonPazuza SimonPazuzza SimonPazzuza SimonPizza SimonS SimonS. SimonSimonSimon StaffordStafford "Pazuza" SimonStafford "Pazuzza" SimonStafford "Pazzuza" SimonStafford 'Pazurra' SimonStafford SmithLouis Jordan And His Tympany FiveLucky Millinder And His OrchestraBenny Carter And His OrchestraRex Stewart And His Orchestra + +793523Carl HoganCarl Al Hogan(October 15, 1917 – July 8, 1977) Jive / Rhythm and Blues / Jazz guitarist and bassist. Early on, Carl played with The Jeter-Pillars Orchestra and George Hudson's Orchestra. He later joined Louis Jordan And His Tympany Five as a temporary bassist, but eventually became the guitarist for the group in 1945 until his departure in 1949.Needs VoteA. HoganC. HoganCarl HogenCarl HorganHoganHogenLouis Jordan And His Tympany Five + +793582Kathrin PfeifferClassical alto/mezzo-soprano vocalistNeeds VoteNederlands Kamerkoor + +793583Georg SchwarkGerman tubist and trumpeter, born 1952 in Oderberg, GDRNeeds VoteG. SchwarkSchwarkAhava RabaRundfunk-Sinfonieorchester BerlinHannes Zerbe BlechbandWenzel & BandBarbara Thalheim Ensemble + +793628Tiana LemnitzLuise Albertine LemnitzTiana Lemnitz, born October 26, 1897 in Metz, German Empire and died February 5, 1994 in Berlin, was a German lyric opera soprano. She sang at opera houses in Aachen, Hanover and at the Berlin State Opera. Lemnitz recorded for Deutsche Grammophon/Polydor (1934-1937, 1951), HMV/Electrola (1937-1948) and Telefunken (1951).Needs Votehttps://de.wikipedia.org/wiki/Tiana_Lemnitzhttp://en.wikipedia.org/wiki/Tiana_LemnitzLemnitzTania LemnitzТиана Лемнитц + +793630Johann Adolf HasseJohann Adolph Hasse (baptised 25 March 1699 – 16 December 1783) was an 18th-century German composer, singer and teacher of music. Immensely popular in his time, Hasse was best known for his prolific operatic output, though he also composed a considerable quantity of sacred music.Needs Votehttp://en.wikipedia.org/wiki/Johann_Adolph_Hassehttps://adp.library.ucsb.edu/names/102778A. HasseAdolfo HasseAdolph HasseGiovanni Adolfo HasseHasseJ. A. HasseJ. H. HasseJ.-A. HasseJ.A. HasseJ.A.HasseJan Adolf HasseJoh. A. HasseJoh. Adolf HasseJohan Adolph HasseJohann - Adolf HasseJohann A. HasseJohann Adolf HesseJohann Adolph HassJohann Adolph HasseJohann Adolph-HasseJohann HasseJohann-Adolf HasseSignor Hasseヨハン=アドルフ・ハッセJhohann-Adolf HasseStaatskapelle Dresden + +793635Willibald RothGerman violinist and music professor.CorrectStaatskapelle Dresden + +793741The V-Disc All StarsRecording based studio band, which was set up for different V-disc recordings in variable line-up.Needs VoteHer V-Disc FriendsHer V-Disc MenHis V-Disc All StarsHis V-Disc All-StarsHis V-Disc VolunteersHis V-DiscattersMerry "V-Disc" MenSpecial ServersThe All-Star Jam BandThe V Disc JumpersThe V-Disc All Star OrchestraThe V-Disc All-Star OrchestraThe V-Disc All-StarsThe V-Disc JumpersThe V-Disc VolunteersThe V-Discs All StarsThe VDisc All StarsV Disc All StarsV Disc All Stars Jam SessionV Disc BandV Disc DixielandersV Disc FriendsV Disc JumpersV-DISC All Star Jam SessionV-DISC All StarsV-Disc All Star Jam SessionV-Disc All StarsV-Disc All-Star Jam SessionV-Disc All-StarsV-Disc BoysV-Disc DixielandersV-Disc FriendsV-Disc GangV-Disc JammersV-Disc JumpersV-Disc Little Jazz BandV-Disc MenV-Disc Merry MenV-Disc Night OwlsV-Disc Play BoysV-Disc Speed DemonsV-Disc VeteransV-Disc VolunteersV-Discersthe V-Disc All StarsWoody HermanDon ByasHerb EllisBen WebsterBilly BauerFlip PhillipsCharlie ShaversChubby JacksonRalph BurnsSpecs PowellTrummy YoungBill HarrisErnie CaceresJohnny BlowersBob HaggartMarjorie HyamsBill Clifton (2) + +794025Nicky BaxterNicola Tait BaxterCellist and cello teacher.CorrectNicki BaxterNicola BaxterThe Academy Of St. Martin-in-the-FieldsFitzwilliam String Quartet + +794234Martin CharninMartin Jay CharninAmerican lyricist, writer, performer, and theater director. +Born November 24, 1934 in New York City, New York, USA. +Died July 7, 2019 (age of 84) in White Plains, New York, USA. +Married to actress [a2496139] (1958 - 1961, divorced). +Married to actress [a4351922] (2006 - 2019, his death). +He began his theatrical career as a performer, appearing as one of the Jets in the original production of West Side Story. Charnin's best-known work is as lyricist for the hit musical [i]Annie[/i] for which he won the 1977 Tony Award for Best Original Score.Needs Votehttp://en.wikipedia.org/wiki/Martin_Charninhttp://www.filmreference.com/film/10/Martin-Charnin.htmlhttps://www.imdb.com/name/nm0153377/https://www.ibdb.com/broadway-cast-staff/martin-charnin-7570AtarninChaminCharinCharminCharmnCharninCharnin MartinM. CarninM. ChaminM. ChaninM. CharmanM. CharmimM. CharminM. CharnimM. CharninM. GarninM.CharninMartin CharminMartin/CharninMarty Charninמרטין צ'ארין"West Side Story" Original Broadway Cast, The Jets + +794664Máté PéterMáté PéterMáté Péter (1947–1984) was a famous Hungarian singer, pianist, songwriter, and composer. His longtime collaborator was [a1022315], who wrote the lyrics to many of his most popular songs. Máté gained international recognition in 1979, when [a282391] recorded a French version of his song “Elmegyek,” released under the title [m125626]. He released four studio albums during his lifetime and appeared on numerous compilations. He was also a consummate arranger and an exceptional pianist. +Please note that Máté is his family name; in standard Western order, his name is Péter Máté.Needs Votehttp://en.wikipedia.org/wiki/Péter_Mátéhttp://matepeter.atw.hu/M. PeterMate PeterMate PéterMatèMáthé P.Máthé PéterMátéMáté P.P. MateP. MaterP. MatéP. MátéPeterPeter MatePeter MatèPeter MatéPeter MátéPéter MatéPéter MátéPétér MátéП. МатеП. МатэПетер Матэ + +794879Al Haig SextetCorrectSextetsTommy PotterAl HaigAllen EagerKai WindingCharlie PerryJimmy Raney + +794881Gunnar JohnsonGunnar Einar JohnsonSwedish jazz bassist. +Born December 19, 1924 in Gothenburg, Sweden — died March 30, 2004 in Ekerö, Stockholm, Sweden. +He accompanied, among others, [a577101] and [a276014], as well as [a30486] during his visit to Sweden. He is the younger brother of [a5066011]. +Needs Votehttps://sv.wikipedia.org/wiki/Gunnar_JohnsonG JohnsonG. JohnsonGunar JohnsonGunnar JohnssonGunnar Johnsson OrkGunnar JonssonGunner JohnsonStan Getz QuartetStan Getz QuintetThe Swedish All StarsJan Johanssons TrioBengt Hallberg TrioRune Öfwerman TrioGunnar Johnsons KvintettKenneth Fagerlunds OrkesterGösta Theselius And All StarsÅke Persson And His ComboEkerö Royal Jazz + +794882Kai's Krazy CatsCorrectKai's Krazy KatsStan GetzShelly ManneKai WindingShorty RogersIggy ShevakShorty Allen + +794883Lars GullinLars Gunnar Victor GullinSwedish jazz baritone saxophone player, composer and occasional pianist +Born May 4, 1928, Sanda, Gotland, died May 17, 1976, Vissefjärda + +Married to Berit Gullin (second wife) and father to [a=Gabriella Gullin] and [a=Peter Gullin]. Then married to [a=Mailis Gullin] (third wife) and father to [a=Poulina Gullin].Needs Votehttp://www.gullin.net/http://en.wikipedia.org/wiki/Lars_GullinGullinL GullinL. GullinL.GullinLars GullenLasse GullinStan Getz QuintetThe Swedish All StarsSeymour Österwalls OrkesterJack Norén QuartetLars Gullin SeptetLars Gullin QuartetBasso-Valdambrini OctetLars Gullin QuintetLars Gullin SextetStan Getz And His Swedish JazzmenThe Swedish Modern Jazz GroupLars Gullin OctetGunnar Svenssons SeptettGösta Theselius And All StarsNils Lindberg SeptetArchie Shepp/Lars Gullin QuintetThe Four Tenor BrothersLars Gullin GroupQuintetto Franco CerriSestetto Franco CerriBengt Hallberg And His Swedish All StarsGullin - Billberg QuintetRolf Billberg QuintetKettil Ohlssons KvintettBengt Hallberg EnsembleBengt Hallbergs SextettThe Favourite Soloists 1951Lee Konitz SeptetLars Gullin And His BandRolf Ericsons OrkesterReinhold Svenssons OrkesterCarl-Henrik Norins All Star Band + +794885Shorty AllenPhilip William AlleluiaAmerican Jazz bop pianist, vibraphonist, songwriter & bandleader. +Born April 26, 1924 in New Jersey, Vineland, New York, USA. +Died April 6, 2011 (age of 86) in New York Brooklyn, USA. +Best known as the composer of the music to the pop song "The Rock and Roll Waltz", a huge hit for Kay Starr in 1956 (hitting #1 in both the U.S. & the U.K.). One of Allen's frequent collaborators, including on that song, was [a699214]. +In 1944, Allen played with Stan Getz in a band formed by John Benson Brooks at the Howard Theater in Washington. In the late 1940s to early 1950s he was in his own Arcadia Ballroom band with trombonist Kai Winding and as pianist he accompanied Ella Fitzgerald. In 1952 he played vibraphone on a Leslie Uggams session. +In addition to using his real name, he used the aliases Shorty Allen, Phil Allen, William Allen and William S. Allen.Needs Votehttps://composers-classical-music.com/a/AlleluiaPhilipW-AllenShorty.htmhttps://www.rocknroll-schallplatten-forum.de/topic.php?t=19742A. ShortyAllenS. AllenSh. AllenShorty AllanWilliam Allen & Orch.William S. Allenショーティ・アレンPhillip AlleluiaKai's Krazy CatsRandy Brooks and his orchestraKai Winding's New Jazz GroupShorty Allen QuintetShorty Allen And The Inspirations + +794889Jack NorenJack NorénUS American-Swedish Jazz drummer and vocalist born in Chicago, Illinois. He has Swedish parents and is best known for his work in Sweden (October 19, 1929, Chicago - March 17, 1990, Chicago). + +He played with Gene Ammons and others in the middle of the 1940s before moving with his family to Sweden in 1946. In Sweden he eventually spent time touring and/or recording with Thore Jederby (1948-50), Seymour Österwall (1949), Arne Domnérus & Rolf Ericson (1950-52), and Lars Gullin (1951-53). He played with Swedish musicians and ensembles such as Reinhold Svensson (1949), Gösta Törner (1949), Swede Starband (1950), Expressens Elitorkester (1950, 1952), Leonard Feather's Swinging Swedes (1951) Bengt Hallberg (1952), Putte Wickman (1952), Åke Persson, and the Scandia All Stars (1953). +Noren's reputation in Sweden was such that he was frequently called upon by visiting American musicians, such as James Moody (1949, 1951), Charlie Parker (1950), Zoot Sims (1950), Stan Getz (1951), Lee Konitz (1951), Clifford Brown (1953), and George Wallington (1953). + +In 1954 Noren returned to Chicago, playing with Eddie Higgins (1958) and Marty Rubenstein (1959-60). In 1960 he went once more to Sweden, playing with Monica Zetterlund (1960) and Nisse Sandström; he also recorded with the radio band of Harry Arnold. After moving back to the United States a few years later, his career dips into obscurity.Needs Votehttp://en.wikipedia.org/wiki/Jack_Norenhttp://www.jazzinchicago.org/educates/journal/articles/about-jack-norenhttp://www.imdb.com/name/nm0636423/maindetailsJ. NorènJ. NorénJ.NorenJack NorènJack NorénJack NörenNorenNorénTeddy Wilson TrioStan Getz QuartetStan Getz QuintetJames Moody QuintetThe Swedish All StarsThore Jederbys OrkesterSeymour Österwalls OrkesterJames Moody QuartetJack Norén QuartetSwinging SwedesSam Samsons OrkesterLars Gullin QuartetHarry Arnold & His Swedish Radio Studio OrchestraToots Thielemans QuartetLars Gullin QuintetThore Swaneruds OrkesterGunnar Svenssons SeptettArne Domnérus KvartettJames Moody & His Swedish CrownsThe Eddie Higgins TrioLeonard Feather's Swinging SwedesÅke Persson And His ComboMarty Rubenstein Jazz QuintetCharlie Parker And His Swedish All StarsRolf Blomquist And His BandBengt Hallbergs SextettThe Favourite Soloists 1951Johan Adolfssons SextettRolf Ericsons OrkesterBob Laine QuartetRolf Blomquist Sextet + +794891Terry Gibbs New Jazz PiratesCorrect + +795177Peta BartlettClassical alto singer.Needs VoteThe Ambrosian Singers + +795180Leslie FysonBritish tenor vocalist, fl. 1947-1978.Needs Votehttps://www.bach-cantatas.com/Bio/Fyson-Leslie.htmCesce FyfsonLesley FysonLeslie FysönThe Ambrosian SingersAccademia MonteverdianaThe Ambrosian Consort + +795188Michael PearnClassical vocalist (tenor)Needs Votehttps://www.imdb.com/de/name/nm5443647/The Ambrosian Singers + +795215Peter Lloyd (2)Classical flautist, and Professor of Flute. Born September 9, 1931 in Dorset; died April 15, 2018. +He studied at the [l290263]. Former Principal Flute with the [a=London Symphony Orchestra] (1967-1987). He held principal flute positions in the [a=Royal Scottish National Orchestra], [a=Hallé Orchestra], and [a=BBC Northern Symphony Orchestra] (2nd Flute) before joining the LSO in 1967. He was a member of [a=The Barry Tuckwell Wind Quintet], [a=The London Virtuosi] and the [b]English Taskin Players[/b]. He taught in Scotland, [l305416], [l1054504] and at the [l459222] in Manchester (1993-?).Needs Votehttps://www.facebook.com/profile.php?id=100068666854228http://www.larrykrantz.com/plloyd.htmlhttps://robertbigio.com/lloyd.htmhttps://www.nfaonline.org/about/achievement-awards/peter-lloydhttps://lso.co.uk/more/news/918-obituary-peter-lloyd-1931-2018.htmlPeter LloydLondon Symphony OrchestraHallé OrchestraRoyal Scottish National OrchestraRadio Leicester Big BandThe London VirtuosiBBC Northern Symphony OrchestraYambu (2)The Royal Philharmonic EnsembleThe Barry Tuckwell Wind Quintet + +795659Steve Jordan (3)American jazz guitarist. +Born : January 15, 1919 in New York City, New York. +Died : September 13, 1993 in Alexandria, Virginia. + +Steve worked with : "Will Bradley Orchestra" (1939-'41), Artie Shaw(1941-1942), Teddy Powell, Bob Chester, Freddie Slack, "Glen Gray's Casa Loma Orchestra", Stan Kenton (1947), Jimmy Dorsey, Boyd Raeburn, Gene Krupa, Mel Powell, Vic Dickenson, Sir Charles Thompson, Buck Clayton, Ruby Braff, Benny Goodman, Wild Bill Davison, Clancy Hayes, Buddy Tate, Helen Ward (1979), Ed Polcer and others. +Needs Votehttps://en.wikipedia.org/wiki/Steve_Jordan_(guitarist)https://adp.library.ucsb.edu/names/324093JordanStephen Philip "Steve" JordanSteve JordenSteve JordonSteve P. JordanBuck Clayton And His OrchestraBoyd Raeburn And His OrchestraWill Bradley And His OrchestraThe Mel Powell SeptetThe Gene Krupa SextetRuby Braff OctetVic Dickenson SeptetMel Powell & His All-StarsJimmy Dorsey, His Orchestra & ChorusRuby Braff's All-StarsRuby Braff Quartet + +795804Jack Green (4)Jazz trombonist, brother of [a260723]. Entered the Woody Herman band in 1952 together with his brother.Needs VoteWoody Herman And His OrchestraBilly Butterfield And His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +796093James CavanaughAmerican songwriter and author. +Born October 29, 1892 in New York City, New York, USA. +Died August 18, 1967 in New York City, New York, USA. +Best known for songs "Mississippi Mud" (1927, made popular by Bing Crosby), "Crosstown" (1940, co-written with John Redmond), and "The Gaucho Serenade" (title track of the soundtrack to the Gene Autry 1940 movie Gaucho Serenade). Other popular songs of his include "I Like Mountain Music", "You're Nobody 'til Somebody Loves You" and "Christmas in Killarney". +Early in his career, Cavanaugh was a writer in vaudeville.Needs Votehttps://en.wikipedia.org/wiki/James_Cavanaugh_(songwriter)https://www.imdb.com/name/nm1084590/https://www.grainger.de/music/composers/cavanaughja.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/111747/Cavanaugh_JamesAranoughCaanaughCanvanaughCauanaughCavabaughCavamoughCavanaghCavanauCavanaugCavanaughCavanaugh, JamesCavannaughCavanoughCavanuaghCavanughCavaroughCavavaughCavenaughCavenoughJ. Anthony CavanaughJ. CabamauchJ. CavanaugaJ. CavanaughJ. CavanoughJ. CavanuaghJ. J. CavanaughJ. KavanaughJ.CavanaughJ.J. CavanaughJames C. CavanaughJames CavanaghJames CavannaughJames CavanoughJames J. KavanaughJames Jimmy CavanaughJames KavanaughJimmy CavanaughKavanaughKavanugh + +796211Rundfunk-Sinfonieorchester BerlinThe [b]Rundfunk-Sinfonieorchester Berlin[/b] (RSB) was founded in October of 1923. After 1945 it was based in East Berlin (GDR) under the public broadcasting station [l269033]. It is not to be confused with the West German [a688716] (a.k.a. [a833698], now [a462180]). + +Principal conductors: [a4431570] (1924–26), [a=Bruno Seidler-Winkler] (1926–32), [a=Eugen Jochum] (1932–34), [a=Sergiu Celibidache] (1945–46), [a1183591] (1953–56), [a=Heinz Rögner] (1973–93), [a=Rafael Frühbeck De Burgos] (1994–2000), [a=Marek Janowski] (2002–2015), [a1733924] (since 2017).Correcthttps://www.rsb-online.de/https://en.wikipedia.org/wiki/Berlin_Radio_Symphony_OrchestraBRSOBerliinin Radio-orkesteriBerlijns Radio-Symfonie-OrkestBerlijns Radio-Symphonie-OrkestBerlin Broadcast Orch.Berlin Broadcasting OrchestraBerlin Funk OrchestraBerlin Funk-OrchesterBerlin Radio Orch.Berlin Radio OrchestraBerlin Radio Orchestra (GDR)Berlin Radio Symphony OrcherstraBerlin Radio Symphony OrchesterBerlin Radio Symphony OrchestraBerlin Radio Symphony Orchestra (GDR)Berlin Radio Symphony Orchestra (RDA)Berlin Radios SymfoniorkesterBerlin Redfunk Symphony OrchestraBerlin Reichsender OrchestraBerlin Rudfunk Symphony OrchestraBerlin Rundfunk Symphony OrchestraBerlin Rundfunk-sinfonie-orchesterBerlin Symphony OrchestraBerliner Funk-OrchesterBerliner FunkorchesterBerliner Rundfunk Sinfonie OrchesterBerliner Rundfunk Sinfonie-OrchesterBerliner Rundfunk SinfonieorchesterBerliner Rundfunk Symphonie OrchesterBerliner Rundfunk- Sinfonie-OrchesterBerliner Rundfunk-OrchesterBerliner Rundfunk-Sinfonie OrchesterBerliner Rundfunk-Sinfonie-OrchesterBerliner Rundfunk-Sinfonie-Orchester*Berliner Rundfunk-Sinfonie-o´OrchesterBerliner Rundfunk-SinfonieorchesterBerliner Rundfunk-Sinfonieorchester BerlinBerliner Rundfunk-Symphonie OrchesterBerliner Rundfunk-Symphonie-OrchesterBerliner Rundfunk-Symphonie-Orchester,Berliner Rundfunk-SymphonieorchesterBerliner Rundfunk-SymphonikerBerliner RundfunkorchesterBerliner Rundfunksinfonie-OrchesterBerliner RundfunksymphonieorchesterBerliner Rundunk-Sinfonie-OrchesterBerliner Sinfonie-OrchesterBerliner Symphonieorchester RundfunksBerliner-Rundfunk Sinfonie-OrchesterBerliner-Rundfunk-Sinfonie-OrchesterBerlins RadiosymfonikerBläsergruppe D. Rundf.-Sinf.-Orchesters BerlinBläserquintett Des Berliner RundfunksChoeur De La Radio De BerlinChor Und Orchester Des Berliner RundfunksDas Berliner Rundfunk Sinfonie OrchesterDas Berliner Rundfunk-Simfonie-OrchesterDas Berliner Rundfunk-Sinfonie-OrchesterEast Berlin Rundfunk OrchestraEin Berliner Symphonisches OrchesterGDR Broadcasting Symphony OrchestraGrosses Berliner RundfunkorchesterGroßes Berliner Rundfunk OrchesterGroßes Berliner Rundfunk-OrchesterGroßes Berliner Rundfunk-Sinfonie-OrchesterGroßes Orchester Des Berliner RundfunksGroßes Orchester des Berliner RundfunkGroßes Orchester des Berliner RundfunksGroßes Orchester des Berliner RunfunksGroßes Rundfunk-Sinfonie-Orchester BerlinGroßes Rundfunk-Sinfonieorchester BerlinGroßes Rundfunksinfonie-Orchester BerlinHantzschk-Quartett Des Rundfunk-Sinfonieorchesters BerlinHet Groot Omroeporkest Van Radio BerlijnHet Groot Omroeporkest Van Radio BerlinInstrumentalgruppe Aus Mitgliedern Des Rundfunk-Sinfonie-Orchesters BerlinKammerorchester des Berliner Rundfunk-Sinfonie-OrchestersLawrence FosterMembers Of The Berlin Radio Symphony OrchestraMembers Of The Rundfunk-Sinfonieorchester BerlinMitgleider Des Rundfunk-Sinfonie-Orchesters BerlinMitglieder Des Berlin Rundfunk-Sinfonie-OrchestersMitglieder Des Berliner Rundfunk-Sinfonie-OrchesterMitglieder Des Berliner Rundfunk-Sinfonie-OrchestersMitglieder Des Berliner Rundfunk-SinfonieorchestersMitglieder Des Rundfund-Sinfonieorchesters BerlinMitglieder Des Rundfunk-Sinfonie-Orchesters BerlinMitglieder Des Rundfunk-SinfonieorchestersMitglieder Des Rundfunk-Sinfonieorchesters BerlinMitglieder des Berliner Rundfunk-Sinfonie-OrchestersMitglieder des Berliner-Rundfunk-Sinfonie-OrchestersMitglieder des Rundfunk-Sinfonie-Orchesters BerlinMitglieder des Rundfunk-Sinfonieorchesters BerlinMusiker des Rundfunk-Sinfonie-Orchesters BerlinO.S.R. De BerlinOrchester Des Berliner RundfunksOrchester der Berliner FunkstundeOrchester des Berliner RundfunksOrchestraOrchestra Della Radio Di BerlinoOrchestra Radio BerlinOrchestra Radiodifiziunii din BerlinOrchestra Radiodifuziunii din R.D.G.Orchestra Simfonică A Radiodifuziunii Din Berlin (R.D.G.)Orchestra Sinfonica Della Radio Di BerlinoOrchestra Sinfonica Di Radio BerlinoOrchestra Sinfonica Di RundfunkOrchestra Sinfonica della Radio di BerlinoOrchestra simfonică a Radiodifuziunii din BerlinOrchestre De Radio-BerlinOrchestre Radio-BerlinOrchestre Radio-Symphonique De Berlin (Rso)Orchestre Radio-Symphonique de BerlinOrchestre Symphonique De BerlinOrchestre Symphonique De La Radio De BerlinOrchestre Symphonique de la Radio de BerlinOrchestre de la Radio de BerlinOrkiestra Radia BerlińskiegoOrkiestra Symfoniczna Radia BerlińskiegoOrq. Sinf. de BerlínOrq. Sinfónica De BerlinOrq. Sinfônica da Rádio de BerlimOrquesta Radio Sinfonía de AlemaniaOrquesta Sinfonica De La Radio De BerlinOrquesta Sinfonica De Radio BerlinOrquesta Sinfónica De BerlínOrquesta Sinfónica De La Radio De BerlínOrquesta Sinfónica de Radio BerlínOrquestra Filarmônica da Rádio de BerlimOrquestra Sinfónica da Rádio de Berlim (R.D.A.)Orquestra Sinfônica Da Rádio De BerlimOrquestra Sinfônica Da Rádio de BerlimOrquestra Sinfônica da Rádio de BerlimRIAS Unlerhaltungsorchester, BerlinRS BerlinRSBRSO BerlinRSOBRadio Sinfonieorchester BerlinRadio Sinfonieorchester Berlin 1945Radio Symphonie Orchester, BerlinRadio Symphony Orchestra BerlinRadio Symphony Orchestra From Berlin - G.D.R.Radio Symphony Orchestra of BerlinRadio-Sinfonieorchester BerlinRadio-Symphonie-Orchester BerlinRias Sinfonieorchester, BerlinRso BerlinRund.-Sinf.-Orch. BerlinRundfunk - Simfonie - Orchester BerlinRundfunk OrchestraRundfunk Orchestra And Choir To The EndRundfunk Sinfonie OrchesterRundfunk Sinfonie Orchester BerlinRundfunk Sinfonie-Orchester BerlinRundfunk Sinfonieorchester BerlinRundfunk Sinphonie-Orchester BerlinRundfunk Symphony OrchestraRundfunk Symphony Orchestra & ChoirRundfunk Symphony Orchestra BerlinRundfunk-Orchester BerlinRundfunk-Sinfonie Orchester BerlinRundfunk-Sinfonie Orchester, BerlinRundfunk-Sinfonie-OrchesterRundfunk-Sinfonie-Orchester BerlinRundfunk-Sinfonie-Orchester, BerlinRundfunk-Sinfonie-Orchester-BerlinRundfunk-Sinfonie-orchester BerlinRundfunk-SinfonieorchesterRundfunk-Sinfonieorchester Berlin (RSB)Rundfunk-Sinfonieorchester Berlin {RSB}Rundfunk-Sinfonieorchester BerlínRundfunk-Sonfonie-Orchester BerlinRundfunk-Symphonie-Orchester BerlinRundfunk-Symphonieorchester BerlinRundfunk-Symphony-Orchestrer BerlinRundfunk0 Sinfonie Orchester BerlinRundfunkorchester BerlinRundfunksinfonieorchester BerlinSinfonie-Orchester BerlinSinfonie-Orchester Berlin Des Staatlichen Rundfunkkommitee'sSinfonie-Orchester Des Berliner RundfunksSinfonieorchester Radio BerlinSolisten Des Radio-Sinfonie-Orchesters BerlinSolisten Des Rundfunk-Sinfonieorchesters BerlinStreichorchester BerlinSymfonický Orchester Berlínskeho RozhlasuSymphonic Orchestra of Berlin Radio Broadcasting CorporationSymphonie-Orchester Des Berliner RundfunksSymphonieorchesterSymphonieorchester Des Bayerischen RundfunksSymphonieorchester Des Berliner RundfunksSymphony Orchestra Of Radio BerlinSymphony Orchestra of Radio BerlinThe Berlin Radio Concert OrchestraThe Berlin Radio OrchestraThe East Berlin Radio OrchestraThe East Berlin Rundfunk And OrchestraThe Rundfunk OrchestaThe Rundfunk OrchestraThe Rundfunk Orchestra & ChoirThe Rundfunk Orchestra And ChoirThe Symphony Orchestra Of Radio BerlinWielki Chór I Orkiestra Symfoniczna Radia BerlińskiegoОркестр Берлинского РадиоСимфонический Оркестр Берлинского РадиоСимфонический Оркестр Берлинского РадиовещанияСимфонический оркестр Берлинского радио Rundfunkベルリン放送交響楽団ベルリン放送合唱団ベルリン放送管弦楽団David HausdorfRainer GäblerChristian BardManfred BaierAdolf Fritz GuhlChristoph NiemannRingela RiemkeSteffen TastGeorg SchwarkFlorian DörpholzHans-Werner WätzigHelmut OertelSergiu CelibidacheBettina SitteUlrich KieferStephan MaiPhilipp BeckertSigurd BraunsAndreas KippPauline SachseRafael Frühbeck De BurgosWilfried StrehleRoland MünchWilli KrugGustav SchmahlLars RanchDavid DropVolkmar WeicheRainer WoltersFranz WiteckiHeinz GurschGünter Keil (2)Kurt ScharmacherFritz GräfeFritz KlaußenerOtto PischkitlNeela De FonsekaManfred DierkesPetra SauerwaldHeinz KirchnerHartmut FriedrichGernot SüßmuthHans-Jakob EschenburgHans Schmidt (3)Martin EßmannRick StotijnPeter ScheitzJörg LehmannJens-Peter ErbeMatthew McDonaldHans-Joachim KehrMarkus StrauchKarola ElßnerAlexander Voigt (2)Thomas HerzogOliver Link (2)Christiane SilberGeorg SchwärskyRodrigo BauzáErez OferMichael Kern (5)Frank TackmannJörg NiemandTobias SchwedaArndt WahlichFrank StephanHorst PietschUwe HoljewilkenGeorg BogeHermann WeicheAndreas LangoschJoachim Scholz (2)Peter Zimmermann (4)Clara DentMarkus SchreiterGaby BastianAndreas Neufeld (2)Clemens KönigstedtUlf-Dieter SchaaffNadine ContiniRudolf DöblerGudrun VoglerJuliane FärberFranziska DrechselGerd QuellmelzKatrin ScheitzbachPhilipp ZellerKarl LangeNhassim GazaleJoachim HuschkeBodo PrzesdzingFabian NeckermannAndreas WillwohlJörg BreuningerDavid Nebel (2)Karl-Heinz DeutscherEdgar ManyakMaria PflügerKonstanze von GutzeitFlorian GrubeSung Kwon YouPatrik HoferIris AhrensJózsef VörösGernot AdrionBernhard KuryRichard PolleArvid Christoph DornKrzysztof PolonekFranziska DallmannNicola BruzzoKosuke YoshikawaAnna MorgunowaMisa YamadaKarin KynastMaximilian SimonSylvia PetzoldAnne-Kathrin SeidelBrigitte DraganovMaciej BuczkowskiJuliane ManyakPeter Albrecht (4)Alejandro RegueiraClaudia BeyerAlexey DoubovikovChristoph Korn (2)Axel BuschmannSilke UhligHannes HölzlAnne MentzenMaud EdenwaldIngo KlinkhammerGeorg SonnleitnerAnne FeltzHermann Wömmel-StützerDániel EmberAnia BaraSimone GruppeMartin KühnerJoachim HantzschkAndreas WeigleStefanie RauFelix HetzelElizaveta B. ZolotovaEmilia MarkowskiMarina BondasSusanne BehrensSusanne HerzogEnrico PalascinoPeter Pfeifer (5)Rudolf Uschmann + +796342John DonneJohn DonneEnglish poet and preacher. + +He was born 22 January 1572 in London, England, UK and died 31 March 1631 in London, England, UK. +Needs Votehttp://en.wikipedia.org/wiki/John_Donne?John DonneDonneDonnieDr. DonneJ. DonneJOHN DONNEДжон Доннジョン・ダン + +796455Lucy FurLucy GoldbergUK electronic dance music DJ / producer from London, England +Style: Hard HouseCorrecthttp://soundcloud.com/dj-lucy-furhttp://www.facebook.com/djlucyfur.xxhttp://www.youtube.com/user/LucyFurToolboxDJFurL. FurLucyfurLucy Goldberg + +796588Clare HoffmanBritish classical freelance violinist and violist. +She graduated from [l305416]. Former member of the [a=Camerata Academica Salzburg].Needs Votehttps://www.linkedin.com/in/clare-hoffman-239a1069/?originalSubdomain=ukhttp://www.morgensternsdiaryservice.com/WebProfile/hoffman_c_2294.shtmlClaire HoffmanLondon Symphony OrchestraCamerata Academica SalzburgThe Chamber Orchestra Of Europe + +796590Sue BriscoeClassical violinistNeeds VoteS. BriscoeSusan BriscoeEnglish Chamber OrchestraThe Academy Of Ancient MusicMichaelangelo Chamber Orchestra + +796591Roberto SorrentinoCellist.Needs Votehttps://www.rpo.co.uk/orchestra-players/199-cellos/739-roberto-sorrentinoRobbie Sorrentinoロバート・ソレンティーノRoyal Philharmonic OrchestraThe Sorrentino String Quartet + +796592Elizabeth WexlerElizabeth WexlerBritish classical violinist.Correcthttp://www.coeurope.org/the-orchestra/members-of-the-orchestra/members-biographies/25Elizabet WexlerLondon SinfoniettaThe Chamber Orchestra Of EuropeThe Nash EnsembleThe Raphael Ensemble + +796594Tamsy KanerTamsy KanerCellist.Needs VoteTamsey KanerTamsy KaynerBBC Symphony OrchestraRoyal Philharmonic OrchestraThe London Cello Sound + +796598Sophie BarberBritish classical violin player.Needs VoteThe SixteenOrchestra Of The Age Of EnlightenmentBarbican Piano TrioThe Mozartists + +796599Andrew FullerAndrew FullerCello player.Needs Votehttps://www.linkedin.com/in/andrew-fuller-859ab118/Royal Philharmonic OrchestraThe London Cello SoundThe Primrose Piano Quartet + +796602Joely KoosJoely KoosCello player.Needs VoteCity Of London SinfoniaThe London Chamber Orchestra + +796604Ruth FunnellClassical violinistCorrectRuth FunnelCity Of London Sinfonia + +796607Neil TarltonNeil TarltonBritish classical (orchestral and chamber) double bass player, professor, transcriber and author, born in July 1952. +He studied at the [l459222]. Before becoming a full-time student, he was a member of the [a=National Youth Orchestra Of Great Britain]. After leaving college, he freelanced, eventually settling with the [a=New Philharmonia Orchestra] (for orchestral work) and [a=Philomusica Of London] (for chamber orchestra playing). Between 1976 and 1979, he held the Principal chair of the [a1606903] after which, he returned to London and the [a=Philharmonia Orchestra]. In 1981, he was a founding member of [a=London Musici] and the short-lived [a=The London Double Bass Ensemble]. In the late 1980s, he begun teaching at the [l290263] eventually becoming Professor of Double Bass. In 1990, he succeeded [a=Gerald Drucker] as Principal Double Bass of the Philharmonia Orchestra. Member of the [b]Corinthian Chamber Orchestra[/b] and the [b]Cerddorfa Dinas Powys Orchestra[/b]. He holds a teaching post at the [l1379071].Needs Votehttps://www.facebook.com/Neil-Tarlton-145501528890966/https://find-and-update.company-information.service.gov.uk/officers/u4vbllxANmnNstNCXZhljt0sU-k/appointmentshttps://www.bloomberg.com/profile/person/1965720https://www.feenotes.com/database/artists/tarlton-neil/http://www.corinthianorchestra.org.uk/content/neil-tarlton-double-basshttp://www.cdpo.org.uk/https://www.trinitylaban.ac.uk/study/teaching-staff/neil-tarltonhttps://www.rcm.ac.uk/strings/professors/details/?id=01665Philharmonia OrchestraNew Philharmonia OrchestraPhilomusica Of LondonNational Youth Orchestra Of Great BritainBBC Welsh Symphony OrchestraThe London Double Bass EnsembleLondon MusiciThe Philharmonia Soloists + +796925Chris FordeUS label owner ([l=Tuxedo Records (3)]) +Needs VoteC. FordeChris FordéFordForde + +798133Don FerraraAmerican jazz trumpeter +Played with : Jerry Wald, Georgie Auld, Gene Roland, Charlie Parker, Chubby Jackson, Woody Herman, Lee Konitz, Gerry Mulligan, Lenny Tristano, Lester Young and others. + +Born : March 10, 1928 in Brooklyn, New York City, New York +Died : January 18, 2011 in (near) San Diego, California +Needs Votehttps://nds.wikipedia.org/wiki/Don_FerraraD. FerraraDon FarraroDon FeraraDon FerraroDon FerrarraDon FerreraFerraraWoody Herman And His OrchestraGerry Mulligan & The Concert Jazz BandGerry Mulligan And His SextetUrbie Green And His OrchestraChubby Jackson's OrchestraWoody Herman And His Third HerdMulligan Mania + +798251John "Shifty" HenryJohn Willie HenryBorn in the 1920's in Edna, Texas, USA. +Died November 30, 1958, in Los Angeles, California, USA. + +Jazz/blues musician and composer active in the Los Angeles area in the 1940's and 1950's. +Needs Votehttp://www.batesmeyer.com/shiftyhenryhttp://www.imdb.com/name/nm1248348/bio.S. HenryH. J. WillieHenriHenri ShifteHenryHenry ShiftsJ. HenryJ. S. HenryJ.S. HenryJohn HenryJohn S. HenryJohn Shifty HenryJohn Willie "Shifty" HenryJohn Willie HenryJohn « Shifty » HenryS. HenriS. HenryShifte HenriShifti HenryShiftyShifty HenryBilly Eckstine And His OrchestraThe TreniersGene Gilbeaux OrchestraJohn "Shifty" Henry & His All StarsShifty Henry And His BandShifty Henry & His Stars Of SwingShifty Henry And His "Flashes"Sonny Criss Sextet + +798284Charles Williams (7)Drummer and occasional singer from New Orleans, Louisiana, USA. +Born February 12, 1935 in New Orleans. Died due to Paget's disease, May 10th, 1986 in New York City.Needs Vote4-1 - 4-2Ch. WilliamsCharles "Drumsky" WilliamsCharles "Hungry" WilliamsCharles 'Hungry" WilliamsCharles 'Hungry' WilliamsCharles ‟Hungry” WilliamsCharlie MillerCharlie WilliamsWilliamsLeo Parker's All StarsDave Bartholomew And His Orchestra + +798677Riva StarrStefano MieleItalian DJ and producer, now based in London, UK. He is the founder of [l=Snatch! Records] (2010), home to his distinctive take on house and tech-house, and the house-focused sub-label [l=Brock Wild (2)] (launched in 2017). In November 2025, he introduced the Nu-Disco / Indie Dance imprint [l=OpenEye], created as a platform for more eclectic, melodic, and leftfield club sounds. +Needs Votehttp://www.rivastarr.comhttp://www.facebook.com/rivastarrhttp://www.soundcloud.com/rivastarrhttp://www.twitter.com/rivastarrhttp://www.youtube.com/mrrivastarrhttps://www.instagram.com/rivastarrRivaRiva StarRivastarrMadoxStefano MieleGenghis ClanEl PochoSoul Speech + +799182Mike Smith (16)Michael George SmithSinger, songwriter, keyboardist, and producer, born 6th December 1943, in London, England. Died 28th February 2008, in Aylesbury, England. + +Smith joined [a=The Dave Clark Five] in 1960, as lead singer and keyboardist. Since that group disbanded in 1970, he had been active as a producer (for [a=Shirley Bassey], [a=Michael Ball] and others), and as composer and performer of jingles, and commercials. + +He formed "Mike Smith's Rock Engine" in the early 2000s. +Needs Votehttp://en.wikipedia.org/wiki/Mike_Smith_%28Dave_Clark_Five%29ClarkClark SmithM SmithM. SMithM. SmithM.SmithMichael SmithMikeMike SmithSmithSmithvSmtihT. SmithThe Dave Clark FiveRoger Glover and GuestsDave Clark & FriendsSmith & D'AboWizard's Convention + +799231Audio HedzRichard BrownFormer Hard Dance / Hard House DJ & producer based in Derbyshire, UK. +Launched digital label [l=Audio Hedz Recordings] (2012-2017) and its sublabel [l=OMPTraxx] (2013-2014). +Produces & mixes Trance as ReDrive (since 2015) and as Richard Tanselli (since 2018).Needs Votewww.audiohedz.com/http://hearthis.at/audiohedz/http://soundcloud.com/audiohedzhttp://www.youtube.com/AudioHedzAudio HeadzAudio HedsAudioHedzAudiohedzThe Audio HeadzThe Audio HedzReDriveRichard TanselliRichard Tanzer (2)Intra & Spherix + +799267Tom BerryTom BerryHard House DJ & producer from Birmingham, UK. +Founded his own digital label [l=3 Phase Records]. +Contact: tom@3phaserecords.com +Needs Votehttps://open.spotify.com/artist/1GD6hgAWA21F1iKz2cUIiJhttps://www.facebook.com/TomBerry3Phase/https://www.soundcloud.com/tomberrydjhttps://www.instagram.com/tomberry_3phase/https://www.youtube.com/channel/UCTqfBFjdZH-M_MkGwsfEdlQBerryTB ProjectM.O.T + +799348Lars Kristian BrynildsenLars Kristian Holm BrynildsenDied in Bergen, Norway on August 17th, 2005.Needs VoteLars Kr. Holm BrynhildsenLars Kristian BrynhildsenLars Kristian Holm BrynildsenBergen TreblåsekvintettBergen Filharmoniske OrkesterDragefjellets MusikkorpsBergen Woodwind Quintet + +799354Oddmund ØklandClassical bassoonist.Needs VoteOddmundOddmund ÖklandoddmundBit 20 EnsembleBergen TreblåsekvintettGöteborgs SymfonikerBergen Filharmoniske Orkester + +799355Ilene ChanonHornistNeeds VoteBergen TreblåsekvintettBergen Filharmoniske OrkesterBergen Woodwind Quintet + +799688Johanna SjunnessonJohanna Viktoria SjunnessonSwedish cellist, born September 9, 1974 in Emmislöv. + +She studied at Ingesund Folk High School and at the Royal College of Music in Stockholm for Elemér Lavotha. The studies ended with a soloist diploma concert in 1997 with the Royal Philharmonic Orchestra in Stockholm. The large scholarship abroad from the Academy of Music and other awards led to most studies abroad.Needs Votehttps://sv.wikipedia.org/wiki/Johanna_SjunnessonJohanna SjunnesonStockholm Session StringsSveriges Radios SymfoniorkesterThe Tämmel Quartet + +799744Nicolas PerrotteyNicolas PerrotteyHardtrance producer and DJ better known as [a=DJ Space Raven].Needs Votehttp://www.myspace.com/djspaceravenhttp://www.myspace.com/shokkyhttp://www.myspace.com/nolita303N. PerrotteyNicolasNicolas PerrooeyNicolas Perrottey "Space Raven"Nicolas PerrottyDr. ZornKlass-XLemon DriveDJ Space RavenOne Tree HillTraxxusAlphanovusKatsuria SailikuAndoriaKaemonNolitaBravenusS.H.O.K.K.Zorneus DJ TeamLochness DJ TeamThe Zorneus ProjectSpaceshokkersCloud 7 (2)Mason TylerSonic AcousticsNeuroma Seroma + +800146Sully (4)Joseph O'SullivanNeeds Votehttp://www.facebook.com/pages/S-U-L-L-Y/223843501055894http://soundcloud.com/s-u-l-l-yS-U-L-L-YS.U.L.L.YS.U.L.L.Y.Joseph O'SullivanLuna LightGiuseppe Sullano + +800153Pilar OcañaPilar Ocaña TorregrosaSpanish classical violinist.Needs VotePilar Ocaña TorregrosaOrquesta Sinfónica de RTVE + +800681Pee Wee TinneyWilliam TinneyCredited as guitarist.Needs VoteBill "Pee Wee" TinneyBill TinneyWilliam "Pee Wee" TinneyWilliam TinneyBab's Three Bips And A BopCootie Williams And His OrchestraThe Jive Bombers + +800999Juventino RosasJosé Juventino Policarpo Rosas CadenasMexican composer, violinist and band leader. +Born January 25th, 1868 in Santa Cruz de Galeana, Guanajuato, Mexico. Died June 9th,1894 in Surgidero de Batabanó, Cuba.Needs Votehttp://en.wikipedia.org/wiki/Juventino_Rosashttps://adp.library.ucsb.edu/names/105618C. RosasG. RosasHosasInventino 4 RosasJ. RosaJ. RosasJ. Rosas-JuventinoJ. RosesJ. RossasJ. RozasJ.RosasJohann RosasJorge RosasJurentino RosasJuv. RosasJuvenito RosasJuvenlino RosasJuventina RosasJuventine RosasJuventine RosesJuventino RosaJuventino de RosasJuventinos RosasJuvention RosasJuvenuto RosasK. RosasL. RosasR. JuventinoReaasRosaRosasRosas JuventinoRosas, J.RossRossarRozasS. RosasU. RosasV. RosasY. Rosasv. RosasИ. РозасРозасХ. РозасХ. РосасЮ. РозасЮ. РосасЮвентіно Розасローザス + +801098Leo McConvilleAmerican jazz trumpeter. born December 10, 1900 in Baltimore, Maryland, died February 1968 in the same city. +From 1914 played with bands in the Baltimore area, professionally with [a=Louisiana Five] in 1919. In early 1920s joined [a=Jean Goldkette], worked with [a=Paul Specht] before joining [a=Roger Wolfe Kahn]. From 1928-1931 mainly with [a=Donald Voorhees], but also extensive radio and studio work until mid-1930s, when he moved to Reistertown, Maryland, to become a chicken farmer. Continued to play with locals bands in late 1930s-1940s, long spells with a=Bob Craig Band and a=Bob Iula's Orchestra.Needs Votehttps://adp.library.ucsb.edu/names/111352Leo ConvilleLeo McConVilleLoe McConvilleMcConvilleRed Nichols And His Five PenniesRoger Wolfe Kahn And His OrchestraEddie Lang's OrchestraMiff Mole's MolersThe Dorsey Brothers OrchestraCornell And His OrchestraThe Charleston ChasersJoe Venuti And His New YorkersAlabama Red PeppersFrank Farrell And His Greenwich Village Inn OrchestraSam Cole & His Corn HuskersKolster Dance Orchestra + +801252Joseph O'SullivanJoseph O'SullivanNeeds VoteJ. O'SullivanJ.O'SullivanJoseph O SullivanSully (4)Luna LightGiuseppe SullanoShock:Force + +801584Ernst Hermann MeyerGerman composer, born 8 December 1905 in Berlin, Germany, died 8 October 1988 in Berlin, GDR. Honorable member of [a833446].CorrectE. H. MeyerE. Herman MeyerE. MayerE.H. MeyerE.H.MeyerErnst H. MeyerErnst Herrmann MeyerErnst MeyerErnst-Hermann MeyerMeyerNationalpreisträger Prof. Dr. Dr. H. C. Ernst Hermann MeyerЭ. Г. МайерЭ. МайерЭрнст Герман МайерЭрнст МейерЭрнст-Герман МайерStaatskapelle Berlin + +801774Tom Parr (2)Correcthttp://www.myspace.com/tomparrT. ParrT.ParrTomTom ParTomParrDigital Groove (2) + +801815Ragnar HeyerdahlNorwegian violinist, born 1960 i Bærum, Norway.Needs VoteRagnar HeyerdalOslo Filharmoniske OrkesterBent Erlandsen's CafeensembleØvrevoll SpelemannslagSturm Und Drang (9) + +801933Margie SingletonMargaret Louise Singleton née EbeyAmerican country music singer and songwriter, born 12 October 1935 in Coushatta, LA. Mother of [a3073791] and [a4422473], spouse of [a801936] and former spouse of [a293081] (divorced).Needs Votehttp://www.margiesingletonmusic.com/https://en.wikipedia.org/wiki/Margie_Singletonhttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=317091&subid=1A. SingletonCh. SingletonD. SingletonF. SingletonH. SingletonM M SingletonM SingletonM. SingeltonM. SingletonM. SinletonMargaret SingletonMarge SingletonSingeltonSingletonСинглетонThe Merry Melody SingersAl & MargieMargie Singleton Singers + +801983Lucy WaterhouseBritish violin player and teacher. Born in London, England, UK. +She studied at [l305416]. After college, she lived for three years in Norway where she played chamber music, then with [a=Den Norske Operas Orkester] and the [a=Oslo Filharmoniske Orkester]. Back in London, she enjoyed a varied freelace career. Founder of the London-based tango quintet [b]Tango Volcano[/b] in 2001. Member of the [b]Almagro Ensemble[/b]. Orchestral leader of the [b]Highbury Opera Theatre[/b]. Teacher at the [l1379071] since September 2017. +Daughter of [a=William Waterhouse] and sister of [a=Graham Waterhouse] & [a=Celia Waterhouse].Needs Votehttps://www.facebook.com/lucyw365https://www.linkedin.com/in/lucy-waterhouse-5ab288154/?originalSubdomain=ukhttps://www.highburyoperatheatre.com/who-we-are-1/honorary-members/lucy-waterhouse/http://almagroensemble.com/musicians/https://www.trinitylaban.ac.uk/study/music/junior-trinity/junior-trinity-teachers/lucy-waterhouse/http://www.ncmc.org.uk/the-staff.htmlPhilharmonia OrchestraThe Academy Of Ancient MusicCollegium Musicum 90European Union Youth OrchestraOslo Filharmoniske OrkesterSonia Slany String And Wind EnsembleDen Norske Operas OrkesterThe Mozartists + +801984Enrico AlvaresEnrico AlvaresViolinist.Needs VoteThe Academy Of St. Martin-in-the-FieldsEuropean Union Youth OrchestraEnsemble Modern Orchestra + +801989Natalie CaronClassical cellistCorrectMahler Chamber Orchestra + +801993Chie PetersChié PetersViolinist.Needs Votehttp://www.deutscheoperberlin.de/de_DE/ensemble/chie-peters.18098#Chié PetersOrchester Der Deutschen Oper BerlinEuropean Union Youth OrchestraQuintet Of The Deutsches Kammerorchester BerlinSwonderful Orchestra + +801997Michelle BruilMichelle BruilClassical violist, born in Rotterdam, Netherlands. +She graduated from the [l527847]. She was no 4 Viola with the [a=Royal Philharmonic Orchestra] for five years. Member of the [b]enSEmble26[/b].Needs Votehttps://www.ensemble26.com/team/michelle-bruilhttps://vgmdb.net/artist/22826London Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraEuropean Union Youth OrchestraUnited Strings Of Europe + +802137Zorán SztevanovityZoran Stevanović / Зоран СтевановићBorn March 4, 1942 in Belgrade, then Kingdom of Yougoslavia +He moved to Hungary in 1948 with his parents who were on a diplomatic mission +Hungarian guitarist, singer and composerNeeds Votehttp://www.zoran.huStevanovity ZoránStevánovity ZoránSz. ZoránSztevanotvity ZoránSztevanovity ZSztevanovity Z.Sztevanovity ZoránSztevenovity ZoránSztevánovity Z.Sztevánovity ZoránZ. SztevanovityZoran SztevanovityZoránZorán SztévánovityMetro (17)Taurus Ex-T: 25-75-82Mindannyian + +802448Ramon BandaLatin-jazz drummer/percussionist, raised in the Los Angeles area into a musical Mexican family. + +Brother of bassist [a=Tony Banda]. + +Needs VoteRamone BandaRaymon BandaRaymond BandaWoody Herman And His OrchestraJazz On The Latin Side AllstarsThe Woody Herman Big BandThe Mort Weiss QuartetGilbert Castellanos Quintet + +802533Wolfgang SchusterAustrian orchestral percussionist, born 30 August 1942 in Vienna, Austria. He's the son of [a4469728].CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler Orchestra + +802779Kathy TheilSoprano vocalistCorrectThe Western WindPomeriumSchola AntiquaVoices Of Ascension + +802832Silas BrownNew York City area producer, engineer, and mastering engineer specializing in classical and jazz recordings. + +Owner of [l307751]Correcthttps://legacysound.net/Sila Brown + +803057Paul ShipperAmerican Bass vocalist and classical guitar instrumentalistNeeds Votehttps://artekearlymusic.org/about/artists/paul-shipper/PomeriumEx UmbrisEl Mundo (2) + +803942Steven BrettSteven BrettUK Electronic dance music producer from the Wirral, Cheshire, England. +Styles: Hard DanceNeeds Votehttps://www.facebook.com/klubfillerukhttps://soundcloud.com/klubfillermusichttps://myspace.com/klubfillerukhttps://twitter.com/klubfillerhttps://www.youtube.com/user/klubfillerhttps://www.instagram.com/klubfiller/BretBrettS BrettS. BrettS.BrettSte BrettSteve BrettStevie B (2)The InsiderKlubfillerThe Beast!OutsiderzUnited DJsRock N RollerDefiant Dj'sPrime Time Players + +804010Lukáš ValášekClassical violistNeeds VoteThe Czech Philharmonic Orchestra + +804411James Thompson (4)James Thompson is currently Professor of Trumpet at the renowned Eastman School of Music. He came to this position after having played Principal Trumpet in the Atlanta and Montreal Symphony Orchestras. + +He has performed as soloist with orchestras in North and South America as well as Europe. He has made recital tours of Asia, North and South America as well as most of Europe. + +Since joining the faculty of the Eastman School he has performed as guest Principal Trumpet with orchestras that include the New York Philharmonic, the Los Angeles Philharmonic, as well as the Baltimore, Seattle, and Boston Symphonys. + +Mr. Thompson can be heard on CDs with the Montreal and Atlanta Symphonys, as well as solo and chamber projects. His recordings of the Shoshtakovitch Concerto #1 for Piano, Trumpet and Strings and Mahler Symphony #5 were Stereo Review’s records of the Month. +Needs Votehttp://www.jamesthompsonmusic.com/James ThomsonAtlanta Symphony OrchestraOrchestre symphonique de MontréalEastman School Of MusicThe Mount Royal Brass Quintet + +804789Jesper LundgaardJesper LundgaardDanish jazz bassist, bandleader and composer, born 12 June 1954 in Hillerød, Denmark.Needs Votehttp://jesperlundgaard.com/https://en.wikipedia.org/wiki/Jesper_LundgaardJ. LundgaardJasper LudgaardJasper LundgaardJesper LundgaardtJesper LundgardJesper LundgårdJesper LungaardLesper LundgaardLundgaardJan Lundgren TrioTommy Flanagan TrioChet Baker QuartetFini Høstrup TrioTango OrkestretBob Rockwell QuartetTeddy Wilson TrioPaul Bley TrioJens Winther GroupAlex Riel TrioRed Holloway QuartetThad Jones / Mel Lewis OrchestraLotte Anker Mette Petersen QuartetWarne Marsh QuartetTeddy Edwards QuartetJimmy Raney QuartetThe Thomas Clausen TrioBent Jædig QuartetDuke Jordan TrioBernt Rosengren QuartetHorace Parlan TrioDuke Jordan QuartetJohn McNeil QuartetJesper Thilo QuintetDoug Raney QuartetBenny Bailey QuintetLundgaard, Fischer, Riel & Rockwell QuartetTomas Franck QuartetJørgen Emborg SeptetLars Møller QuartetAlex Riel QuartetDoug Raney QuintetBoulou Ferré TrioTorben Hertz TrioKansas City StompersEddie Lockjaw Davis QuartetErnie Wilkins Almost Big BandBoulou Ferré QuartetJørgen Emborg QuartetKirk Lightsey TrioHorace Parlan QuintetArne Astrup And His All StarsNicolai Gromin TrioAllan Botschinsky QuintetJørgen Svare Jazz QuartetJoe Bonner QuartetNikolaj Gromin & Jesper Lundgaard DuoDoug Raney TrioThomas Fryland QuartetThad Jones QuartetThe Benny Carter QuartetThad Jones EclipseDoug Raney SextetJesper Lundgaard TrioSvend Asmussen QuartetNiels Jørgen Steen's A-TeamSøren Lee TrioFini Høstrup QuartetFrank Foster QuartetPoul Godske / Lars Blach SwingtetEgon Denu/Bent Jædig QuintetDialog (8)John McNeil TrioThomas Fryland QuintetBernt Rosengren QuintetCarsten Dahl TrioMarkku Johansson & FriendsValdemarskJesper Thilo/Clark Terry QuintetBob Rockwell TrioChristina Dahl QuartetKurt Larsen QuartetNikolaj Hess TrioAlex Riel Lutz Büchner QuartetRepertory QuartetChristina Dahl TrioPoul Godske QuintetThe Jazzpar All Star NonetAlex Riel Special QuartetThe Danish Jazz QuartetOle Stolle Og Hans StudiegruppeBotschinsky/Jædig QuintetJordan/Jædig Quartet + +804818Emil WaldteufelCharles Émile Lévy WaldteufelBorn 9 December 1837 in Strasbourg, France and died 12 February 1915 in Paris, France + +Alsatian (French) pianist, conductor and composer of dance and concert music.Needs Votehttps://en.wikipedia.org/wiki/%C3%89mile_Waldteufelhttps://www.britannica.com/biography/Emil-Waldteufelhttps://adp.library.ucsb.edu/names/103389C. E. WaldteufelCharles Emile WaldteufelCharles WaldteufelE WaldteufelE, WaldteufelE. ValteufelE. WadteufelE. WaldE. WaldtejfelE. WaldteufelE. WaldteufeldE. WaldteufellE. WandteufelE.WaldteufelE.ワルトトイフェルEm. WaldteufelEmil Charles WaldteufelEmil WaldtuefelEmil von WaldteufelEmile Charles WaldteufelEmile WaldizufelEmile WaldtenfelEmile WaldteufelEmile WaldteufeldEmilio WaldteufelEmilè WaldteufelEmīls ValdteifelsÉmile WaldteufelFE WaldteufelValdteufelWaauthelfeelWadteufelWaldeteufelWaldeufelWaldtenfeWaldtenfelWaldteufelWaldteufel Ch.E.Waldteufel, EmilWaldteufel/First Piano QuartetWaldteufellWaldteuferWaldteuffelWaldteuffenWaldteuflaWaldteufulWaldteuful EmileWaldtevferWaldtuefelWalfteufelWaltcufelWaltdeufelWalteufelWandteufelWauldteufelÉ. WaldteufelÉmil WaldteufelÉmile WaldteufelВальдтейфельВальдтейфеляЕмиль ВальдтейфельЭ. ВалдтейфельЭ. ВальдетйфельЭ. ВальдтейфейльЭ. ВальдтейфельЭмиль Вальдтейфельエミール・ワルトトイフェルワイトトイフェルワルトトイフィルワルトトイフェル + +804927Art CapehartTrumpet player.Needs VoteArthur CapehartFat Larry's BandAndy Kirk And His Clouds Of JoyAndy Kirk And His Orchestra + +805059Russell JacquetRussell Jacquet (born December 4, 1917, Saint Martinville, Louisiana, USA - died February 28, 1990, Los Angeles, California, USA) was an American jazz trumpeter. He was the elder brother of tenor saxophonist [a257114] with whom he worked with for many years.Needs Votehttp://en.wikipedia.org/wiki/Russell_Jacquethttps://adp.library.ucsb.edu/names/355711H. CokerJacquetR. JacquetRuss JacquetRussell Jacquet's Yellow JacketsIllinois Jacquet And His OrchestraIllinois Jacquet SextetIllinois Jacquet And His All StarsBill Moore's Lucky Seven BandRussell Jacquet And His All StarsRussell Jacquet & His OrchestraRussell Jacquet And His Bopper BandRussell Jacquet And His Yellow Jackets + +805282Матвей БлантерМатвей Исаакович Блантер Soviet composer. Active as a composer until 1975. +Born: February 10 (January 28 O.S.) 1903, Pochep, Chernigov Governorate (now Bryansk Oblast), Russian Empire +Died: September 27, 1990, Moscow, USSR +Correcthttp://ru.wikipedia.org/wiki/%D0%91%D0%BB%D0%B0%D0%BD%D1%82%D0%B5%D1%80,_%D0%9C%D0%B0%D1%82%D0%B2%D0%B5%D0%B9_%D0%98%D1%81%D0%B0%D0%B0%D0%BA%D0%BE%D0%B2%D0%B8%D1%87BlanterBlanter Matvej IsaakovichBlanteraBlanterisBlantezBlantjerBlantnerBlantyerBłanterI. BlanterM .BlanterM. A. BlanterM. BlanerM. BlanterM. Blanter-IsakovskyM. BlanteraM. BlanterisM. BlantnerM. BlantyerM. BlantérM. BlantěrM. BlatnerM. BłanterM. BłantierM. BłatnerM. I. BlanterM. I. BlantěrM. IsaakovichM. J. BlantnerM. БлантерM. ブランテルM.BlanterM.BlantersM.BłatnerM.I. BlanterM.IsaakovichMatjev BlanterMatjew Issaakowitsch BlantnerMatvei BlanterMatvei Isaakovich BlanterMatvei Isaakovich Blanter (Матвей Исаакович Блантер)Matvej BlanterMatvej BlantnerMatvej BlantyerMatvej BlantěrMatvej Isaakovich BlanterMatvej Isaakowich BlanterMatvej Iszaakovics BlantyerMatvey BlanterMatvey BlatnerMatvěj BlanterMatvěj BlantěrMatvěj Isaakovič BlantěrMatwei BlanterMatwej BlanterMatwej Issaakowitsch BlanterMatwej J. BlanterMatwey BlanterMatwiej BlanterMatwiej BłanterMikhail BlanterN. BlatnerQuardabassiБлантерМ. BlanterМ. БландерМ. БлантерМ. БлантераМ. И. БлантерМ.БлантерМ.БлантерaМ.И. БлантерМатвея Блантераבלנטרמ. בלנטרמאטוואי בלנטרブランテルブランテールブランデルマトウェイ・ブランテルマトヴェイプランテルマトヴェイ・ブランテルГосударственный Джаз-Оркестр СССР + +805347Benjamin LeungBenjamin LeungCanadian Hard House, Trance & House DJ, producer & engineer.Needs Votehttp://www.benjaminleungmusic.com/https://myspace.com/benjaminleunghttps://www.facebook.com/benjaminleungsomnahttps://www.facebook.com/benjaminleungmusic/https://soundcloud.com/benjaminleungB. LeungB.LeungBen LeungRodi StyleSomna (2)Leung & WanTech Fu Crew + +805567Earl WalkerAmerican jazz drummer.Needs VoteEarl "Fox" WalkerEarl "The Fox" WalkerEarl The Fox WalkerWalkerLionel Hampton And His OrchestraGene Morris And His Hamptones + +805609Felice RomaniGiuseppe Felice RomaniItalian poet and scholar of literature and mythology , born 31 January 1788 in Genoa, Italy, died 28 February 1865 in Moneglia, Italy.Needs Votehttps://en.wikipedia.org/wiki/Felice_Romanihttps://adp.library.ucsb.edu/names/367460F. RomainF. RomaniFelice RomanoFelici RomaniGiuseppe Felice RomaniRomaniRomani, after ScribeФ. РоманиФеличе Романи + +805611Joseph CanteloubeMarie-Joseph Canteloube de MalaretFrench composer, musicologist and author, born 21 October 1879 in Annonay, France, died 4 November 1957 in Grigny, France.Needs Votehttps://en.wikipedia.org/wiki/Joseph_Canteloubehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/360092/Canteloube_Josephhttps://www.britannica.com/biography/Joseph-CanteloubeCantaloubeCanteloubeCanteloube.J CanteloubeJ. CantaloubeJ. CanteloubeJ.CanteloubeJoseph CantaloubeJoseph Canteloube de MalaretJoseph CanteloubesJoseph Malaret de CanteloubeJoseph-Marie CanteloubeMarie Joseph CanteloubeMarie-Joesph Canteloube De MalaretMarie-Joseph CanteloubeMarie-Joseph Canteloube De MalaretMarie-Joseph Canteloube de MalaretЖ. Кантелубエリジウム + +805878Charles Hubert Hastings ParryCharles Hubert Hastings ParryEnglish composer, teacher and historian of music. He was born 27 February 1848 in Bournemouth, Dorset, England, UK and died 7 October 1918 in Knight's Croft, Rustington, Sussex, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Hubert_Parryhttps://www.britannica.com/biography/Hubert-Hastings-Parryhttps://adp.library.ucsb.edu/names/102157C H H ParryC Hubert H ParryC Hubert ParryC ParryC, Hubert H. ParryC. H. H. ParryC. H. ParryC. HubertC. Hubert And H. ParryC. Hubert H. ParryC. Hubert ParryC. ParryC.H. H.ParryC.H. Hastings ParryC.H. ParryC.H.H. ParryC.H.H.ParryC.Hubert ParryC.ParryCHH ParryCh. H. ParryCh. Hubert - H. ParryCharles H H ParryCharles H. H. ParryCharles H. H. PerryCharles H. ParryCharles HubertCharles Hubert H ParryCharles Hubert H. ParryCharles Hubert Hastings-ParryCharles Hubert ParryCharles ParryDr. H. ParryH. ParryH.ParryHubert BarryHubert H. ParryHubert ParryParryPerrySir C Hubert H ParrySir C Hubert ParrySir C. H. H. ParrySir C. Hubert H. ParrySir C. Hubert ParrySir C. Hubert PerrySir C.H.H. ParrySir CHH ParrySir Charles H. H. ParrySir Charles H.H. ParrySir Charles Hubert H ParrySir Charles Hubert H. ParrySir Charles Hubert Hastings ParrySir Charles Hubert ParrySir Charles ParrySir Hubert H ParrySir Hubert ParrySir. Hubert Parry + +806272Laura HamiltonAmerican violinist, born in 1959.Needs VoteChicago Symphony OrchestraThe Metropolitan Opera House OrchestraNew Jersey Symphony OrchestraAmerican Baroque Orchestra + +806377Jack King (3)Albert KingAmerican songwriter, composer (especially of film scores), pianist and singer. He composed "How Am I To Know?" in 1929. +Born: May 6, 1903. +Died: October 26, 1943.Needs Votehttps://www.imdb.com/name/nm1131568/J. KingJ.KingKingKing Jack + +806436Slovak Radio Symphony OrchestraSymfonický orchester Slovenského rozhlasuSlovak symphony orchestra, established in 1929. Also known as “SOSR”, previously also “Symfonický orchestr Československého rozhlasu Bratislava”, as well as many more name variations. + +Related entity: [a=Slovak Radio Symphony Choir].Needs Votehttps://en.wikipedia.org/wiki/Slovak_Radio_Symphony_Orchestrahttps://sosr.rtvs.sk/sk/uvodhttps://www.naxos.com/Bio/Person/CSR_Symphony_Orchestra,_Bratislava/46147https://www.naxos.com/Bio/Person/Slovak_Radio_Symphony_Orchestra/46403https://www.naxos.com/Bio/OrchestraEnsemble/Slovak_Radio_Symphony_Orchestra/46403Bratislava Radio OrchestraBratislava Radio SOBratislava Radio Symphonic OrchestraBratislava Radio Symphonie OrchesterBratislava Radio Symphony OrchestraBratislava Radio Symphony OrxchestraBratislava Slovak Radio Symphony OrchestraBratislava Symphony OrchestraBratislavos Radijo Simfoninis OrkestrasC.S.R. Symphony OrchestraCRS Symphony Orchestra (Bratislava)CSR OrchestraCSR Radio Symphony OrchestraCSR SOCSR SymfoniorkesterCSR Symph. OrchestraCSR SymphonyCSR Symphony (Bratislava)CSR Symphony Orch.CSR Symphony OrchestraCSR Symphony Orchestra (Bratislava)CSR Symphony Orchestra BratislavaCSR Symphony Orchestra, BratislavaCSR Symphony Orchstra (Bratislava)CSSR Symphony OrchestraCSSR Symphony Orchestra (Bratislava)Chamber Orchestra Of The Slovak Radio Symphony OrchestraChoir Of The Bratislava State OperaChor und Orchester des Slowenischen RundfunksCzech Radio Symphony OrchestraCzech Radio Symphony Orchestra (Bratislava)Czech Radio Symphony Orchestra Of PragueCzech-Slovak Radio Symphony OrchestraCzech-Slovak Radio Symphony Orchestra (Bratislava)Czecho-Slovak OrchestraCzecho-Slovak RSOCzecho-Slovak RSO (Bratislava)Czecho-Slovak Rad. Symp. Orch.Czecho-Slovak Radio SOCzecho-Slovak Radio Symphony (Bratislava)Czecho-Slovak Radio Symphony Orch.Czecho-Slovak Radio Symphony Orch. (Bratislava)Czecho-Slovak Radio Symphony OrchestraCzecho-Slovak Radio Symphony Orchestra (Bratislava)Czecho-Slovak Radio Symphony Orchestra Of BratislaveCzecho-Slovak Radio Symphony Orchestra, BratislavaCzecho-Slovak State Philharmonic Orchestra (Bratislava)Czecho-Slovak State Radio Symphony OrchestraCzecho-Slovak Symphony Orchestra (Bratislava)Czecho-slovak Radio Symphony Orchestra (Bratislava)Czechoslovak Radio Symphony OrchestraCzechoslovak Radio Symphony Orchestra (Bratislava)Czechoslovak Radio Symphony Orchestra In BratislavaCzechoslovak Radio Symphony Orchestra, BratislavaCzechs-Slovak Radio Symphony OrchestraDas Grosse Rundfunkorchester BratislavaDas Grosse Symphonie Orchester Des Tschechoslowakischen Rundfunks BratislavaDas Grosse Symphonie-Orchester Des Tschechoslowakischen Rundfunks BratislavaDas Slowakische Radio-Sinfonieorchester BratislavaDen Slovakiske Radios SymfoniorkesterDer Symphonische Orchester des Slowakischen RundfunksHet Symfonie-orkest Van De Slovaakse RadioL'Ensemble De Radio BratislavaMembers Of The Slovak Radio Symphony OrchestraNovi Slovački Radijski Simfonijski OrkestarO. Sinfónica De BratislavaOrchester Radio BratislavaOrchestraOrchestra (Bratislava)Orchestra Filarmonica Di Stato Della Radio CecoslovaccaOrchestra Sinfonica Della CSROrchestra Sinfonica Della CSR Di BratislavaOrchestra Sinfonica Della Radio Cecoslovacca (Bratislava)Orchestra Sinfonica della CSROrchestra Slovak Radio SymphonyOrchestra e Coro della Radio SlovaccaOrchestre De Chambre De La Radio Bratislava Quatuor Et Sextet - Orchestre Symphonique De La Radio SlovaqueOrchestre De La Radio BratislavaOrchestre Radio-Symphonique De BratislavaOrchestre Radiosymphonique De BratislavaOrchestre Symphonique De La Radio BratislavaOrchestre Symphonique De La Radio De BratislavaOrchestre Symphonique De La Radio SlovaqueOrchestre Symphonique De La Radio Slovaque BratislavaOrchestre Symphonique De La Radio Tchèque De BratislavaOrchestre Symphonique De La Radio TchécoslovaqueOrchestre Symphonique De Radio BratislavaOrchestre Symphonique De Radio SlovaquieOrchestre Symphonique Radio SlovaquieOrchestre Symphonique de la Radio BratislavaOrchestre Symphonique de la Radio SlovaqueOrkest Van De Slovaakse RadioOrkestarOrquesta Sinfonica De La Radio De BratislavaOrquesta Sinfíonica De La Radio EslovacaOrquesta Sinfónica De La Radio EslovacaOrquesta Sinfónica De Radio BratislavaOrquesta Sinfónica de BratislavaOrquesta Sinfónica de Radio BratislavaOrquesta Sinfónica de la Radio ChecoslovacaOrquesta Sinfónica de la Radio de BratislavaOrquestra Filarmónica da Rádio de BratislavaOrquestra Filarmônica De Radio BratislaveOrquestra Simfònica de la Ràdio EslovacaOrquestra Sinfónica Da Rádio ChecoslovacaOrquestra Sinfónica Da Rádio De BratislavaOrquestra Sinfónica Da Rádio De Bratislava (Eslováquia)Orquestra Sinfónica De Radio BratislavaOrquestra Sinfónica de la Radio de BratislavaRadio BRatislava Symphony OrchestraRadio Brastlava Symphony OrchestraRadio Bratislava OrchestraRadio Bratislava Symphonic OrchestraRadio Bratislava SymphonyRadio Bratislava Symphony OrchRadio Bratislava Symphony OrchestraRadio Bratislave Symphony OrchestraRadio OrchestraRadio Symphonie-Orchester BratislavaRadio Symphonieorchester BratislavaRadio Symphony - Orchestra BratislavaRadio Symphony OrchestraRadio Symphony Orchestra BratislavaRadio Symphony Orchestra LjubljanaRadio Symphony Orchestra Of SlovakiaRadio-Sinfonie-Orchester BratislavaRadio-Sinfonie-Orchester, BratislavaRadio-Sinfonieorchester BratislavaRadiosinfonie Orchester BRATISLAWA Slowakischer RundfunkRadiosinfonieorchester BratislavaRadiosymphonieorchester BratislavaRadiosymphonieorchester BratislawaRozhlasový Symfonický Orchestr BratislavaRundfunk-Sinfonieorchester BratislavaRundfunk-Symphonieorchester BratislavaSOSRSOSR BratislavaSOČRSOČR V BratislaveSimfonijski Orkestar Radio BratislaveSinfonieorchester Des Slowakischen RundfunksSinfonieorchester Des Tschechoslowakischen Rundfunks BratislavaSinfónica De Radio BratislavaSinfónica de Radio BratislavaSlokvakisk Radios SymfoniorkesterSlovak Broadcast OrchestraSlovak National Radio OrchestraSlovak Philharmonic OrchestraSlovak R.S.OSlovak RSOSlovak RSO (Bratislava)Slovak Radio And Television Symphony OrchestraSlovak Radio OSSlovak Radio OperaSlovak Radio OrchestraSlovak Radio Orchestra, BratislavaSlovak Radio Philharmonic Orchestra (Bratislava)Slovak Radio SOSlovak Radio Symphonic OrchestraSlovak Radio Symphonie Orchester BratislavaSlovak Radio SymphonySlovak Radio Symphony Orchestra (Bratislava)Slovak Radio Symphony Orchestra BratislavaSlovak Radio Symphony Orchestra LjubljanaSlovak Radio Symphony Orchestra Of BratislavaSlovak Radio Symphony Orchestra of BratislavaSlovak Radio Symphony Orchestra, BratislavaSlovak Radio Symphony Orchestra, TheSlovak State OperaSlovak State Radio OrchestraSlovak State Radio Symphony OrchestraSlovak State Radio Symphony Orchestra (Bratislava)Slovak Symphony OrchestraSlovak Symphony Orchestra BratislavaSlovakian Radion SinfoniaorkesteriSlovakiets Radio SymfoniorkesterSlovakiets RadiosymfoniorkesterSlovakisches RadiosinfonieorchesterSlovakisk Radio SymfoniorkesterSlovakisk Radios SymfoniorkesterSlovakiska RSOSlovakiska Radions SOSlovakiska Radions SymfoniorkesterSlovakiska Radios SymfoniorkesterSlovakiska RadiosymfoniorkesternSlovakiske RadiosymfoniorkesterSlovački Radijski Simfonijski OrkestarSlovački Radijski Simfonijski Orkestar, BratislavaSlovenská FilharmóniaSlow. Radio Sinfonie OrchesterSlowaaks Philharmonisch OrkestSlowakisches Philharmonisches OrchesterSlowakisches Radio Sinfonie OrchesterSlowakisches Radio Sinfonie Orchester BratislavaSlowakisches Radio Symphonie Orchester BratislavaSlowakisches Radio SymphonieoSlowakisches Radio-Sinfonie-OrchesterSlowakisches Radio-SinfonieorchesterSlowakisches Radio-Sinfonieorchester BratislavaSlowakisches Radio-Sinfonieorchester PreßburgSlowakisches Radio-SymphonieorchesterSlowakisches Radio-Symphonieorchester BratislavaSlowakisches RadioSinfonie-OrchesterSlowakisches Rundfunk-Symphonie-OrchesterSlowakisches Rundfunkorchester BratislawaSláčikový Orchester Československého Rozhlasu V BratislaveSláčikový Orchester Čs. Rozhlasu V BratislaveSolistenSolisten Und Orchester Radio BratislavaSymf. Orch. Čs. Rozhl. V BratislaveSymf. Orch. Čs. Rozhlasu V BratislaveSymfonicky Orchester Cs. Rozhlasu V. BratislaveSymfonicky Orchester Cs. Rozhlasu v. BratislaveSymfonický Orch. Bratislavského RozhlasuSymfonický Orch. Čs. Rozhlasu V BratislaveSymfonický OrchesterSymfonický Orchester Bratislavského RozhlasuSymfonický Orchester Slovenského RozhlasuSymfonický Orchester Slovenského Rozhlasu V BratislaveSymfonický Orchester Slovenského rozhlasuSymfonický Orchester Československého Rozhlasu V BratislaveSymfonický Orchester Čs. RozhlasuSymfonický Orchester Čs. Rozhlasu BratislavaSymfonický Orchester Čs. Rozhlasu V BratislavaSymfonický Orchester Čs. Rozhlasu V BratislaveSymfonický Orchester Čs. Rozhlasu V. BratislaveSymfonický Orchester Čs. rozhlasu V BratislaveSymfonický Orchestr Bratislavského RozhlasuSymfonický Orchestr Rádia BratislavaSymfonický Orchestr Slovenského RozhlasuSymfonický Orchestr Slovenského Rozhlasu BratislavaSymfonický Orchestr Československého Rozhlasu BratislavaSymfonický Orchestr Čs. RozhlasuSymfonický Orchestr Čs. Rozhlasu BratislavaSymfonický Orchestr Čs. Rozhlasu V BratislavěSymfonický Rozhlasový Orchestr BratislavaSymfonický Rozhlasový Orchestr BratislavaSymfonický orchester Slovenského rozhlasuSymfonický orchester Československého rozhlasu v BratislaveSymfonický orchester Čs. rozhlasu BratislavaSymfonický orchester Čs. rozhlasu v BratislaveSymfonický orchestr Československého rozhlasu BratislavaSymfonický orchestr Čs. rozhlasuSymfonie-Orkest Van Radio BratislavaSymfonie-orkest Slovaakse RadioSymfonieorkest BratislavaSymfonieorkest Radio BratislavaSymfonieorkest Slovaakse RadioSymfonisch Orkest Van Radio SlowakijeSymgonický Orchester Čs. Rozhlasu V BratislaveSymphonie Orchester Radio BratislavaSymphonie-Orchester Des Slovakischen RundfunksSymphonie-Orchester Des Slowakischen RundfunksSymphonie-Orchester Des Tschechoslowakischen Rundfunks BratislavaSymphonieorchester BratislavaSymphonieorchester Des Slowenischen RundfunksSymphonieorchester Radio BratislavaSymphonieorchester Radio BratislawaSymphonieorchester des Slovakischen Rundfunks BratislavaSymphonisches Orchester Des Rundfunks Von BratislavaSynphonic Orchestra Of Bratislava RadioTchechoslowakisches Radio-SinfonieorchesterThe CSR Symphony OrchestraThe Czech Radio Symphony OrchestraThe Czecho-Slovak Radio Symphony OrchestraThe Czechoslovak Radio Symphony OrchestraThe Czechoslovak Radio Symphony Orchestra (Bratislava)The Radio Bratislava Symphony OrchestraThe Radio Symphony Orchestra BratislavaThe Slovak Radio OrchestraThe Slovak Radio Symphony OrchestraThe Slovak Radio Symphony Orchestra Of BratislavaThe Slovak Radio Symphony Orchestra of BratislavaThe Slovakia Radio SymphonyThe Slowakische Radio Symphony OrchestraThe Symphonic Orchestra Of The Slovak RadioTjeckiska Radions SymfoniorkesterTjeckoslovakiska RadiosymfoniorkesternTschecheslowakisches Radio-SinfonieorchesterTschecheslowakisches radio-SinfonieorchesterTschechisches Radio Symphonie OrchesterTschechisches Symphonieorchester PragTschechoslow. Radio Sinfonie OrchesterTschechoslowakisches Radio-Sinfonie-OrchesterTschechoslowakisches Radio-SinfonieorchesterTschechoslowakisches Rundfunk Sinfonie OrchesterTsekkoslovakian Radion SinfoniaorkesteriTsjecho-Slowaaks Radio Symfonie OrkestTsjecho-Slowaaks Radio Symphony OrchestraČehoslovački Radijski Simfonijski OrkestarČehoslovački Radijski Simfonijski Orkestar, BratislavaČekoslovakijos Radijo Simfoninis OrkestrasОркестр Братиславского радиоСимфонический Oркестр Pадио БратиславыСимфонический Оркестр Словацкого Радиоスロヴァキア国立放送交響楽団捷克電台交響樂團Robert StankovskyOliver DohnanyiOndrej LenárdVictor SimciskoBystrík RežuchaOtakar TrhlíkĽudovít RajterCharles Olivieri-MunroeKrešimir BaranovićLadislav SlovákAladár MóžiMária Trevor DúhováTibor FrešoVáclav JiráčekPeter ValentovičFrantišek DykMário KošíkFrantišek BábušekRichard Týnsky + +806702Geoffrey MitchellCountertenor vocalist and choral conductor.Needs Votehttps://en.wikipedia.org/wiki/Geoffrey_Mitchell_(conductor)The Geoffrey Mitchell ChoirPro Cantione Antiqua + +806896Philipp CieslewiczGerman pianist, former treble & today alto vocalist born in Munich, based in Berlin.Needs VotePhilip CieslewiczTölzer KnabenchorCappella AmsterdamCK+10Trio CEGVocalensemble Rastatt + +806977Lorenzo HoldenTenor saxophone player.Needs VoteHoldenL. HoldenLorenzo HoldernessJohnny Otis And His OrchestraLittle Esther & The Blue NotesLorenzo Holden's OrchestraThe Lorenzo Holden TrioThe Musicrafters + +807313Lennart DehnSwedish producer for recordings of classical music from Gothenburg. Born February 3, 1944.Needs Vote + +807449Miff Mole's MolersPseudonym used by Red Nichols and his Five Pennies when recording for the Okeh Company in the 1920s. + +Also used for a later (1937) big band session released on Brunswick & Vocalion.Needs VoteMiff Mole & His Little MolersMiff Mole & His MolersMiff Mole And His Little Moler'sMiff Mole And His Little MolersMiff Mole And His MolersMiff Mole And His OrchestraMiff Mole And Hiss Little MolersMiff Mole Et Son OrchestreMiff Mole and His Little MolersMiff Mole and His MolersMiff Mole and His OrchestraMiff Mole and his Little MolersMiff Mole's & His MolersMiff Mole's (Little) MolersMiff Mole's Little MolersRed Nichols And His Five PenniesThe CaptivatorsThe Six HottentotsThe Red HeadsGilbert Marsh's OrchestraBabe RussinRed NicholsDick McDonoughJimmy DorseyEddie LangAdrian RolliniStan kingArthur SchuttJoe TartoCarl KressFud LivingstonMiff MolePhil NapoleonLeo McConvilleTommy Felline + +807541Stacey KitsonStacey KitsonSinger, songwriter and live performer based in London, UK.Needs Votehttp://www.staceykitson.co.uk/http://soundcloud.com/stace-1http://www.myspace.com/stacevocalsS. KitsonS.KitsonStaceStaceyStacy Kitson + +807992Alan GauvinReed player and member of [a=Ten Wheel Drive]. + +Needs VoteAlan T. GauvinAlan Vu GauvinGauvinWoody Herman And His OrchestraTen Wheel DriveThe Tony Corbiscello Big BandWoody Herman And The Thundering HerdPratt Brothers Big BandThe Killer ForceRich Shemaria Jazz Orchestra + +808099Brian ParsonsTenor vocalist.Needs VoteThe Monteverdi ChoirThe Academy Of Ancient Music + +808100Bernard DelétréBass & Baritone vocalist.Needs VoteB. DeletréB. DelétréBernard DeleréBernard DeletreBernard DeletréDeletréDelétréLes Arts Florissants + +808104Jeremy BirchallBass vocalist. +He was member of the early 70s psych-folk cult band Oberon (7). Needs Votehttps://www.jeremybirchall.co.uk/https://divineartrecords.com/artist/jeremy-birchall/Bernie BirchallJeremyJeremy (Bernie) BirchallThe Demon BarbersThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirPolyphonyThe Holst SingersThe Choir Of The Temple ChurchThe Schütz Choir Of LondonOberon (7)Voices From SomewhereYantra (7) + +808788Charlie Parker's New StarsNeeds Major ChangesCharlie Parker All StarsCharlie Parker New StarsHis New StarsCharlie ParkerBarney KesselDon LamondRed CallenderDodo MarmarosaWardell GrayHoward McGhee + +809064Stephan MeierClassical percussionist and composer.Needs Votehttps://www.bcmg.org.uk/stephan-meierhttps://de.wikipedia.org/wiki/Stephan_Meierhttps://professionals.klassik.com/karriere/details.cfm?ID=1522Ensemble ModernAsko EnsembleDas Neue EnsembleXenakis EnsembleEnsemble S + +809356Gian Andrea LodoviciProducer and recording supervisor of classical releases.CorrectAndrea LodoviciGianandrea Lodovici + +809711Al RuzickaOrgan and keyboard player.Needs VoteA BuzickaA RuzickaA. RuzichaA. RuzickaAl RazickaAl RuzichaRuzichaRuzickaRuzikaThe Four SeasonsThe Bad Boys (4)Tommy Vann And The Professionals + +809856Eugene OrmandyJenö BlauHungarian-American conductor and violinist +Born November 18, 1899 in Budapest, Hungary +Died March 12, 1985 in Philadelphia, Pennsylvania, USA (aged 85). + +Ormandy is best known for his longstanding post as the conductor of [a=The Philadelphia Orchestra]. He also developed what came to be known as the "Philadelphia Sound," emphasizing lush string sonorities and, often, legato phrasing and rounded tone. + +Ormandy, born Jenö Blau, began his musical career at an early age. He could identify symphonies at the age of 3 and could play the violin by the age of 4. When he was 5, he became a pupil at the Royal Academy of Music in Budapest (now the Franz Liszt Academy of Music). He studied with [a=Jenő Hubay] and began his conducting career with the [a=Symphonisches Blüthner-Orchester Berlin] (Blüthner Orchestra). + +He moved to the United States in 1921 (taking citizenship in 1927). Around this time he changed his name to "Eugene Ormandy," "Eugene" being the equivalent of the Hungarian "Jenő." Accounts differ on the origin of "Ormandy"; it may have either been his own middle name at birth, or his mother's. In the 1920s, Ormandy worked in New York as a conductor and in 1930 made his first appearance in Philadelphia with [a=The Robin Hood Dell Orchestra Of Philadelphia]. When [a=Arturo Toscanini] was too ill to conduct the Philadelphia Orchestra in 1931, Ormandy was asked to sit in. This led to Ormandy's first major appointment as a conductor in Minneapolis. + +From 1931 to 1936 Ormandy served as Music Director of [a=Minneapolis Symphony Orchestra] (now the [a=Minnesota Orchestra]). During his time in Minnesota, [l=RCA Victor] contracted the orchestra and recordings were made from 1934-1935. Several premiere recordings were made in Minneapolis, including [a=Zoltán Kodály]'s Háry János Suite and [a=Arnold Schoenberg]’s Verklärte Nacht. + +In 1936, Eugene Ormandy began his 44-year long tenure with [a=The Philadelphia Orchestra] when he became associate conductor under [a=Leopold Stokowski]. In 1938, he was promoted to permanent conductor. Ormandy was a quick learner of scores, often conducting from memory and without a baton. He developed an amazing ensemble rapport and personally hired every one of the 104 musicians who played under his baton. + +As music director, Ormandy conducted from 100 to 180 concerts each year in Philadelphia. He led the Philadelphia Orchestra on several national and international tours, including a 1955 tour of Finland, where Ormandy and Orchestra members visited the elderly composer [a=Jean Sibelius] and in 1973, they became the first American symphony orchestra in the People's Republic of China. Ormandy and the orchestra recorded extensively for Columbia and RCA, especially during the stereo LP era. Ormandy retired as conductor in Philadelphia at the end of the 1979-1980 season (whereupon he was named Conductor Laureate). + +Ormandy was always a knowledgeable, well-prepared conductor, but he was most comfortable with Romantic and post-Romantic music; especially noteworthy were his performances and recordings of [a=Richard strauss] and [a=Sergei Vasilyevich Rachmaninoff]. He led the first performances of many works by American composers and, in 1948 he led the Philadelphia Orchestra in the first symphony concert broadcast on American TV. + +Ormandy's awards include: The Presidential Medal of Freedom, presented by Richard M. Nixon in 1970; The Ditson Conductor's Award for championing American music in 1977; Appointment by Queen Elizabeth II as an honorary Knight of the British Empire in 1976; and he was awarded the Kennedy Center Honors in 1982. + +He was the brother of [a=Martin Ormandy].Needs Votehttps://en.wikipedia.org/wiki/Eugene_Ormandyhttps://www.britannica.com/biography/Eugene-Ormandyhttps://web.archive.org/web/20030827001121/https://www.sonyclassical.com/artists/ormandy/https://www.sonyclassical.com/artists/artist-details/eugene-ormandyhttps://www.bach-cantatas.com/Bio/Ormandy-Eugene.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102894/Ormandy_EugeneDr. Eugene OrmandyE. OrmandyEugen OrmandyEugene OrmandEugene OrmandiEugene Ormandy, ConductorEugene OrmanyEugenio OrmandyEugène OrmandyEugéne OrmandyEuģene OrmandyOrmandyOrmandy, E.Ormándy J.Ormándy JenőЕ. ОрмандиФиладельфийский ОркестрЮ. ОрмандиЮджин Ормандиיוג'ין אורמנדיオーマンディユージン・オーマンディ奧曼第尤金奧曼迪Orchestra Viennese Di Eugene + +810423Andy NaylorAndy NaylorAndy first hit the decks back in 1996 teaching himself to mix with D&B and jump up jungle.. + +In 1997 he had found the infamous Midlands club Passion, as well as Sundissential @ Pulse. + +Being on the best dancefloors at the birth of the hard house scene has given Andy an enviable insight into musical tastes and structuring DJ sets to truly get the club in a party mood. + +By 1998/99 Andy was a regular on the HH circuit hand secured his first major residency at the mighty Sheffield club INSOMNIACZ playing at every venue they opened at! + +Along with a monthly residency at the legendary Leicester night FORBIDDEN. + +Now, after a 15 year break Andy has returned to pick up where he left off. +Already sealing the only residency for the OFFICIAL PULSE reunion parties in Birmingham. + +Andy’s all set to once again tear up dance floors across the UK with his electric style of high energy, bassline driven, often euphoric and always memorable sets… + +Current residencies: +OFFICIAL PULSE reunion parties in Birmingham. +SUNDISSENTIAL LIVE STREAMS +Keeping Hard House Alive LIVE STREAMS +Global Hard House LIVE STREAMS + +With tracks previously released on the famous 12 inch THUMPERS label as well as Vicious Circle Recordings, Andy has already returned to the studio to bring about his own distinctive sound to the ears of discerning HH fans. + +UK wide guest and headliner sets including: + +Smile, Vauxhall, London +MILK, London +Fully charged, The Fez club, Hull +Aftersessential, Birmingham +The Glass House, Leeds +Burton for Certain, Burton on Trent +Fidget, Junction 5, Coventry +The Adelphi, Sheffield. +Nocturnal, Leicester +Official PULSE reunion, Birmingham +Uprising, NCPM +Sunday School, Birmingham +Recycle. Hidden +4play, Soho +Air, Birmingham +Sanctuary, Birmingham +Chemical, Weavers +Headcharge, The Arches, Sheffield +Needs Votehttps://m.mixcloud.com/andynaylor/https://www.facebook.com/andy.naylor.7311352Riffmik + +810424Jaap van ZwedenConductor and violinist, born 12 December 1960 in Amsterdam, Netherlands.Needs Votehttp://en.wikipedia.org/wiki/Jaap_van_ZwedenJaap V. ZwedenJaap van ZwedenV. Zwedenvan ZwedenConcertgebouworkestDallas Symphony OrchestraResidentie OrkestRoyal Flemish PhilharmonicRadio Filharmonisch Orkest + +810491Rocco CarbonaraItalian classical clarinetistNeeds VoteOrchestra Di Padova E Del VenetoTrio Dell'Arcimboldo + +811395David James (13)British countertenor & alto vocalist born 1956 in England.Needs Votehttps://www.bach-cantatas.com/Bio/James-David.htmDavid JamesJamesДэвид ДжеймсThe Hilliard EnsembleLarge Chamber EnsembleThe London Early Music Group + +811565Andrew WedmanCanadian sound engineer, mainly for classical productions. + +Received training as a recording technician at the Academy of Music in Detmold. After completing internships at WDR and with the Norwegian broadcasting service, he worked at Sonopress (now Arvato Replication) in Gütersloh and at Deutsche Grammophon in Hannover. His duties there involved post-production of operas and symphony concerts. In the late 1980s as a freelancer for Deutsche Grammophon, worked in New York and at Abbey Road Studios in London. He returned to Hannover, and Deutsche Grammophon (later Universal Music), where he got a permanent contract. When Universal Music closed down the site, Arvato in Gütersloh became his new home.Needs VoteAndrew A. WedmanAndrew Wedmann + +811736Matt GardnerCorrectM.Gardner + +811757Эдуард КолмановскийЭдуард Савельевич КолмановскийSoviet and Russian composer. USSR People's Artist (1991) +Born: January 9, 1923, Mogilev, USSR (now Belarus) +Died: July 27, 1994, Moscow, Russia +Needs Votehttps://ru.wikipedia.org/wiki/Колмановский,_Эдуард_Савельевичhttp://e-kolmanovski.narod.ru/B. KolmanovskyE KolmanovskiE KolmanovskyE. KalmanovskiyE. KalmanovskyE. KolmanovskiE. KolmanovskiiE. KolmanovskijE. KolmanovskisE. KolmanovskujE. KolmanovskyE. KolmanowskiE. KolmanowskiiE. KolmanowskyE. KolomanovskyE. KomanovskiiE. KołmanowskiE.KolmanovskyEduard KalmanowskiEduard KolmanovkyEduard KolmanovskiEduard KolmanovskijEduard KolmanovskyEduard KolmanowskiEdvard KolmanovskiJ. KolmanovskiKalmanovskyKolmakovskiKolmanevskyKolmanovskiKolmanovskijKolmanovskyKolmanowskiKolmonovskyS. KalmanowskiS. KolmakovskiS. KolmanovskiT. KolmanovskyЄ. КолмановськийЕ. КолмановскиЕ. КолмановськийЕв. КолмановскиЕд. КолмановскиЗ. КолмановскийКолмановскиКолмановскийКолмановскогоМ. КолмановскийЭ. КалмановскийЭ. КолмановскийЭ. КолмановскогоЭ. КоломановскийЭ. КоммановЭ.КолмановскийЭдуард Колмановскийאדוארד קולמונובסקיאדוארד קולמנובסקיאדוארד קלמנובסקי + +811760Андрей ПетровАндрей Павлович ПетровAndrey Pavlovich Petrov was a Soviet and Russian composer. People's Artist of USSR (1980). +Born: September 2, 1930, Leningrad, USSR +Died: February 15, 2006, Saint Petersburg, Russia +Needs Votehttp://en.wikipedia.org/wiki/Andrey_Petrovhttps://ru.wikipedia.org/wiki/Петров,_Андрей_ПавловичA PetrovA. P. PetrovA. PetrovA. PetrovaA. PietrowA. PétrovA. ПетровA.PetrovAndrei Pavlovich PetrovAndrei PetrovAndrej PetrovAndrej PetrovaAndrej PetrowAndrey PetrovPetrovPetrowPétrovV. PetrovА. П. ПетровА. ПетровА. ПетроваА.П. ПетровА.ПетровАндрей Павлович ПетровАндрій ПетровБ. ПетровМ. ПетровПетровПетров А.Петров А. П. + +812391Thomas HowellThomas Howell is a French horn player. He was a member of the [a837562] from 1971 to 1991.Needs VoteTom HowellChicago Symphony OrchestraThe Contemporary Chamber Players Of The University Of Chicago + +812453Irv CottlerIrving CottlerDrummer +Born: 13 February 1918, New York City, New York +Died: 8 August 1989, Rancho Mirage, California +Needs Votehttp://www.spaceagepop.com/cottler.htmhttps://adp.library.ucsb.edu/names/309979Irv CotlerIrv CotterIrv KottlerIrv. CottlerIrvin CottlerIrving CottlerIrving CutlerIrving Gottlerアーヴィング・コットラーPaul Smith QuartetWoody Herman And His OrchestraBilly May And His OrchestraClaude Thornhill And His OrchestraLes Brown And His OrchestraRed Norvo And His OrchestraThe SurfmenGeorgie Auld And His OrchestraL'Ensemble Instrumental Des IlesWoody Herman And The Swingin' HerdLes Cinq ModernesJerry Gray And His OrchestraThe Paul Smith TrioAndré Previn QuartetThe Bill Miller SextetFrank Sinatra And SextetMilt Bernhart Brass Ensemble + +812456Walter Martin (3)Drummer, notably with Louis Jordan's band.Needs VoteLouis Jordan And His Tympany FiveLouie Jordon's Elks Rendevouz Band + +812459Joe Morris (3)Joseph Christopher Columbus MorrisAmerican jazz drummer, born June 17, 1902 in Greenville, North Carolina, USA, died August 20, 2002 in New Jersey, USA.Needs VoteC. MorrisChris ColumbusChristopher Columbus "Joe Morris"J. MorrisJoe "Chris Columbo" MorrisJoe Morris (Chris Columbus)Joe Morris (Christopher Columbus)Joe MorrissJoseph MorrissMorrisChris ColumboChristopher Columbus (3)Louis Jordan And His Tympany Five + +812656Kirsty HopkinsEnglish classical soprano vocalistNeeds Votehttps://www.kirstyhopkins.com/https://www.facebook.com/kirsty.hopkins.71https://x.com/kirstyjhopkinshttps://instagram.com/kirstyjhopkins/Kirsty HopkinGabrieli ConsortThe Choir Of The King's ConsortThe Cambridge SingersThe SixteenPolyphonyThe Rodolfus ChoirThe Eric Whitacre SingersTenebrae (10)Alamire + +812925Pirmin GrehlGerman flautist, born in 1977.Needs VoteGrehlPrimin GrehlKol SimchaKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinChantily Quintet + +812929Florian DörpholzGerman trumpeter, born 31 December 1978 in Karlsruhe, Germany.CorrectRundfunk-Sinfonieorchester BerlinGenesis Brass + +812938Ronith MuesClassical harpist, born in 1982 in Munich, Germany.Needs VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinBundesjugendorchesterHorenstein Ensemble + +812959Ruth RogersRuth RogersBritish classical violinist. Born in 1979 in London, England. +She graduated from the [l290263] in 2001. From 2008 until 2012 she was the co-leader of the [a=Bournemouth Symphony Orchestra]. In March 2015, she was appointed as one of the Leaders of the [a=London Mozart Players]. Member of the [b]Iuventus String Quartet[/b] and the [url=https://www.discogs.com/artist/9056941-Aquinas-Trio]Aquinas Piano Trio[/url]. As well as the orchestras/ensembles listed below, she has performed concertos with The City of Oxford Orchestra, [a=Britten Sinfonia], [a=City Of London Sinfonia], [url=https://www.discogs.com/artist/4858081-The-New-London-Soloists-Ensemble]The New London Soloists Orchestra[/url] and [a=The London Strings].Needs Votehttps://www.ruthrogers.net/https://maslink.co.uk/client-directory?client=ROGER1&instrument=VIOLI1https://www.imdb.com/name/nm11409360/London Symphony OrchestraCity Of London SinfoniaHallé OrchestraPhilharmonia OrchestraBritten-Pears OrchestraBournemouth Symphony OrchestraLondon Mozart PlayersAquinas TrioThe Tate Ensemble + +813407Lou StonebridgeNeeds VoteD. StonebridgeL. Stone BridgeL. StoneBridgeL. StonebridgeL.S. BridgeLouLou Stone BridgeStonebridgeThe Glass MenagerieMcGuinness FlintPaladinGrisby DykeThe Dance Band (2)Stonebridge McGuinness + +813472Walt MeskellWalter Edward MeskellSongwriter - producer and guitaristNeeds Votehttp://en.wikipedia.org/wiki/Walter_MeskellMaskellMeskelMeskellMeslellMuskelW. HeskellW. MeskellW. MeskillW.E. MeskellW.MeskellW.MeskillWalt MaskellWalt MescalWalt WeskellWalter Edward MeskellWalter MeskelWalter MeskellWeskellThe Corporate Body + +813704Chris Richards (3)Christopher RichardsClassical clarinetist, and Professor of Clarinet. +He studied at [l305416]. After his studies, he was appointed principal clarinet with the [a=Northern Sinfonia], and, in 2010, he became Principal Clarinet with the [a=London Symphony Orchestra]. Also, a regular member of [a=The John Wilson Orchestra]. Professor of Clarinet at the [l527847].Needs Votehttps://open.spotify.com/artist/3xnPsbGlTHqHM3hfz3O4mthttps://lso.co.uk/orchestra/players/woodwind.htmlhttps://www.frem.ro/en/artists/guest-artists/chris-richards/https://www.ram.ac.uk/people/christopher-richardshttps://www.hyperion-records.co.uk/a.asp?a=A6502Christopher RichardsLondon Symphony OrchestraNorthern SinfoniaThe John Wilson OrchestraLSO Wind Ensemble + +813771Alexander ScriabinAlexander Nikolayevich Scriabin (Russian: Александр Николаевич Скрябин, scientific transliteration: Aleksandr Nikolaevič Skrjabin)Born: 6 January 1872 [O.S. 25 December 1871] in Moscow, Russia +Died: 27 April [O.S. 14 April], 1915, in Moscow, Russia + +[b]Alexander Scriabin[/b] was a Russian composer and pianist. +For publication of his works in the West, he employed the French rendering of his name, [i]Alexandre[/i] (or just [i]A.[/i]) [i]Scriabine[/i].Needs Votehttps://www.scriabin-association.com/https://scriabinsociety.com/https://en.wikipedia.org/wiki/Alexander_Scriabinhttps://www.britannica.com/biography/Aleksandr-Scriabinhttps://www.naxos.com/person/Alexander_Scriabin/24840.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102851/Scriabin_Aleksandr_NikolayevichA SkrjabinA. N. ScriabinA. N. ScrjabinA. N. SkriabinA. N. SkrjabinA. ScriabinA. ScriabineA. SkriabinA. SkriabinasA. SkrjabinA. SkryabinA.N. ScriabinA.N. SkrjabinA.ScriabinAleksandar SkrjabinAleksander ScriabinAleksander SkriabinAleksander SkrjabinAleksandr Nikolaevich SkrjabinAleksandr Nikolaeviĉ SkrjabinAleksandr Nikolaevič SkrjabinAleksandr Nikolajewitsch SkrjabinAleksandr Nikolayevich ScriabinAleksandr ScriabinAleksandr ScrjabinAleksandr SkriabinAleksandr SkrjabinAleksandr SkryabinAlexandar SkrjabinAlexander N SkriabinAlexander N. ScriabinAlexander N. ScriabineAlexander N. ScriablnAlexander N. ScrjabinAlexander N. SkriabinAlexander N. SkrjabinAlexander Nikolaevič ScriabinAlexander Nikolaievich ScriabinAlexander Nikolaievich SkriabinAlexander Nikolaievici SkriabinAlexander Nikolaievitch ScriabinAlexander Nikolajevič SkrjabinAlexander Nikolajewitsch SkrjabinAlexander Nikolayevich ScriabinAlexander Nikolayevich SkryabinAlexander Nikolayevitch ScriabinAlexander Nikolayevitch SkryabinAlexander Nikolaïevitch ScriabineAlexander SckryabinAlexander ScriabineAlexander ScrjabinAlexander ScryabinAlexander SkriabinAlexander SkrjabinAlexander SkryabinAlexandr N. SkrjabinAlexandr Nikolaevic SkrjabinAlexandr Nikolajevič SkrjabinAlexandr Nikolayevich ScriabinAlexandr ScriabinAlexandr SkrjabinAlexandr SkryabinAlexandre N. ScriabineAlexandre Nicolaievitch ScriabineAlexandre Nicolaïevitch ScriabineAlexandre ScriabinAlexandre ScriabineAlexandre SkryabinAlexndr SkrjabinAlexsandr SkrjabinN. Alexander SkrijabinScriabanScriabinScriabin*Scriabin, AlexanderScriabin, AlexandrScriabin, AlexandreScriabineScriabine A.Scriabine, A.ScriabiniScrjabinScryabinSkriabinSkriabinaSkrijabinSkrjabinSkrjabin, A. N.Skrjabin, A.N.SkryabinscrА. Н. СкрябинА. СкрябинА.Н. СкрябинА.СкрябинАл. СкрябинАлександр СкрябинОлександр СкрябінС. СкрябинСкрябинアレクサンドル・スクリャービンアレクサンドル・スクリャービンスクリャービン + +813877Chris EmersonAustralian violist, based in the UK since 1999.Correcthttp://homepage.ntlworld.com/bootyful/arioso/ariosobiogs.htmC. EmersonFourplay (2)Hallé Orchestra + +814045Leonard WareLeonard W. WareAmerican jazz guitarist and composer. + +Born : December 28, 1909 in Richmond, Virginia. +Died : March 30, 1974 in Bronx, New York City, New York. +Needs VoteL. WareL.WareLeon WareLeonard, WareWaeWareWare, LeonardSidney Bechet And His OrchestraPete Johnson's All-StarsBuddy Johnson & His BandLeonard Ware Trio + +814048Jimmy RichardsonJazz - blues bassist. +Born on 4 January 1914 +Died on 3 May 1988 in Denver, U.S. +[b]Do not confuse with the british jazz bassist [a=Jim Richardson][/b]Correcthttp://myweb.clemson.edu/~campber/saunders.htmlJames RichardsonPaul Quinichette QuintetRed Saunders & His Orchestra + +814488Benny SluchinClassical trombone player.Needs Votehttps://aicf.org/artist/benny-sluchin/Benny SlushinEnsemble Intercontemporain + +814963Gina ZagniItalian classical violist. +Former member of the [a=London Symphony Orchestra] (1993-2010).Needs Votehttps://www.facebook.com/gina.zagnihttps://www.feenotes.com/database/artists/zagni-gina/London Symphony OrchestraOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Da Camera Di Santa Cecilia + +814964Louise ShackeltonBritish classical violinist. Born in Yorkshire, England, UK but raised in the United States. +Her first professional jobs were as a violinist with the [a=Florida Symphony Orchestra] and [a=The Hartford Symphony Orchestra]. In 1994/5 she relocated to the United Kingdom after [a=Sir Simon Rattle] awarded her the position of Co-Principal Second Violin with the [a=City Of Birmingham Symphony Orchestra]. She moved on in 2001 when she became a violinist with the [a=London Symphony Orchestra] where she was on the Board as a Player Director (2003-2007). +Married to [a=David Miliband].Needs Votehttps://www.linkedin.com/in/louise-shackelton-b1918182/https://www.feenotes.com/database/artists/shackelton-louise/https://musicacademy.org/big-profiles/louise-shackelton-2/https://www.esm.rochester.edu/alumni/weekend/news_84_85/https://lso.co.uk/orchestra/players/strings.htmlLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraFlorida Symphony OrchestraThe Hartford Symphony OrchestraThe Eastman-Dryden Orchestra + +814965Stephen RowlinsonRetired British classical violinist. Originally from Norwich, England, UK. +He studied at the [l290263]. From there, he went on to the [a=Royal Philharmonic Orchestra]. Former longtime member of the [a=London Symphony Orchestra] (1983-2010).Needs Votehttps://www.feenotes.com/database/artists/rowlinson-stephen/https://www.eveningnews24.co.uk/news/22384485.top-class-performer/Steve RowlinsonLondon Symphony OrchestraThe Martyn Ford OrchestraRoyal Philharmonic OrchestraLondon Classical Players + +814967Richard BlaydenBritish classical violinist. Born near Southampton, England, UK. +He studied at the [l459222] and the [l527847]. He was a member ofthe [a=London Symphony Orchestra] (1999-2017), first violinist with [a=The Academy Of St. Martin-in-the-Fields] and [a=London Mozart Players]. In March 2016, he joined [a=The English National Opera Orchestra] as Sub-Leader.Needs Votehttps://www.facebook.com/richard.blayden.7/https://www.linkedin.com/in/richard-blayden-1934b5232/https://open.spotify.com/artist/746KXEDGbfyKxDo53zyouZhttps://music.apple.com/us/artist/richard-blayden/1494665379https://www.feenotes.com/database/artists/blayden-richard/https://www.eno.org/artists/richard-blayden/https://www.englishsinfonia.org.uk/meet-the-orchestrahttps://www.imdb.com/name/nm8488597/Richard BlaydonLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiqueLondon Mozart PlayersEnglish SinfoniaThe English National Opera Orchestra + +814969Sylvain VasseurSylvain VasseurClassical violinist. +He joined the [a=European Union Youth Orchestra] in 1978. Co-founder of [a=The Chamber Orchestra Of Europe]. He joined the [a=BBC Symphony Orchestra], and the [a=English Chamber Orchestra]. In 1983, he joined the [a=London Philharmonic Orchestra] and stayed with them for seven years. In 1992, he became a member of the First Violins section of the [a=London Symphony Orchestra]. +Needs Votehttps://www.feenotes.com/database/artists/vasseur-sylvain/https://lso.co.uk/orchestra/players/strings.html#First_violinshttps://www.imdb.com/name/nm3276001/London Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraEnglish Chamber OrchestraThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraWorld Orchestra For PeaceLondon Musici + +814972Jonathan WelchClassical viola player; retired from the [a212726] in 2018 after 33 years.Needs Votehttp://www.morgensternsdiaryservice.com/WebProfile/welch_j_8620.shtmlhttps://www.feenotes.com/database/artists/welch-jonathan/https://vgmdb.net/artist/22951London Symphony OrchestraLondon Symphony Orchestra Strings + +814974Norman ClarkeClassical violinist. +Former member of the [a=London Symphony Orchestra] (1978-2008).Needs VoteNormal ClarkeLondon Symphony OrchestraLondon Symphony Orchestra Strings + +814975Evgeny GrachЕвгений ГрачSoviet/Russian classical violinist, and violin teacher. Born in 1959 in Moscow, USSR. +He studied at the [l589988] (1977-1982). In 1981, he became Leader of [a805613] and from 1991 to 1996 led the [a5599734]. He was Principal Second Violin of the [a=London Symphony Orchestra] (1997-2013). +Son of [a=Eduard Grach] and [a=Alla Maloletkova]Needs Votehttps://open.spotify.com/artist/10pX9E6EXrLXkNHoPP4Xylhttps://music.apple.com/us/artist/eugene-grach/426601263https://www.feenotes.com/database/artists/grach-evgeny-1959-present/E. Grach Jr.Eugeni GratchEvgeni GrachLondon Symphony OrchestraThe Moscow Symphony OrchestraLondon Symphony Orchestra StringsOrquestra Simfónica De Barcelona + +814976Nicholas WrightBritish classical violinist. +He studied at the [l290263]. Former Sub-Principal First Violin of the [a=London Symphony Orchestra] (2003-2012). Concertmaster of the [a345340].Needs Votehttps://www.feenotes.com/database/artists/wright-nicholas/https://www.vancouversymphony.ca/artist/nicholas-wright/https://vgmdb.net/artist/22810Nick WrightLondon Symphony OrchestraVancouver Symphony Orchestra + +814977Robert Turner (2)Robert TurnerClassical violist and viola teacher. +He studied at the [l527847]. Before joining the [a=London Symphony Orchestra] in 1994, he held positions in the [a=BBC Symphony Orchestra], the [a=Royal Philharmonic Orchestra], and the [b]Vuillaume String Quartet[/b]. He has taught at both Junior and Senior departments of the [l290263] as well as at [l305416].Needs Votehttps://www.facebook.com/robert.turner.35728466https://www.feenotes.com/database/artists/turner-robert/https://lso.co.uk/orchestra/players/strings.html#Violashttps://www.gsmd.ac.uk/robert-turnerLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraLSO String Ensemble + +814979Nicholas GethinNicholas GethinClassical cellist and teacher. +Former member of [a=The English National Opera Orchestra] and the [a=London Symphony Orchestra] (1985-2006). Teacher at Hereford Cathedral School.Needs VoteNick GethinLondon Symphony OrchestraThe English National Opera Orchestra + +814980Duff BurnsDuff BurnsBritish classical viola player. Born in 1940 in Glasgow, Scotland, UK - Died in July 2021. +He studied the violin at the [l742849] and subsequently at the [l957772]. On his return to Scotland, he changed to the viola and took up a position with the [a=Royal Scottish National Orchestra] becoming Principal Viola in 1964. In 1968, he moved to the [b]BBC Scottish Radio Orchestra[/b] before moving to the Principal Viola desk of the [a=BBC Scottish Symphony Orchestra]. In 1980, the year of the BBC Orchestra strike, he decided to move to London and joined the [a=London Symphony Orchestra] in 1981. He became a full member in 1984 and retired in 2005.Needs VoteLondon Symphony OrchestraRoyal Scottish National OrchestraBBC Scottish Symphony OrchestraLondon Symphony Orchestra Strings + +814981Matthew GardnerMatthew Charles GardnerBritish classical violinist. +He studied at the [l290263]. Member of the [a=London Symphony Orchestra] since 1996.Needs Votehttps://lso.co.uk/orchestra/players/strings.html#Second_violinshttps://www.feenotes.com/database/artists/gardner-matthew/https://www.instagram.com/matthewcgardner/Matthew Charles GardnerMatthew Charles GarnerLondon Symphony OrchestraLondon Symphony Orchestra Chamber Ensemble + +814982Noel BradshawNoël BradshawRetired classical cellist. +He graduated from [l305416] in 1978 and went on to become a member of the [a=London Symphony Orchestra]. He retired on 10 April 2022.Needs Votehttps://www.feenotes.com/database/artists/bradshaw-noel/https://www.imdb.com/name/nm8490534/London Symphony OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLSO String Ensemble + +814983Ian RhodesClassical violinist. +Former longtime member of the [a212726] (1991-7/5/2017). He retired after 7 May 2017 orchestra's concert.Needs Votehttps://www.feenotes.com/database/artists/rhodes-ian/London Symphony OrchestraRoyal Philharmonic OrchestraThe Monteverdi Choir + +814984David BallesterosSpanish classical violinist, and Professor of Violin. Born in Tenerife, Canary Islands, Spain. +Member of the 2nd violin section of the [a=London Symphony Orchestra] since 2000. Co-Leader of the [b]bandArt[/b] chamber orchestra. Professor of Violin at [l305416].Needs Votehttps://www.linkedin.com/in/david-ballesteros-50097043/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/ballesteros-david/https://lso.co.uk/orchestra/players/strings.html#Second_violinshttps://www.fbbva.es/microsites/fbbvaaeos/pdf/david_ballesteros/bio_david_ballesteros.pdfhttps://www.elsauzal.es/actividad/david-ballesteros-de-la-orquesta-sinfonica-de-tenerife-en-el-sauzal/https://vgmdb.net/artist/22818London Symphony Orchestra + +814985Ian McDonoughIan McDonoughAustralian classical violinist. Originally from Victoria, Australia. Passed away 26 December 2019. +Former Sub-Principal Second Violin with the [a=London Symphony Orchestra] (1982-2004). Retired in 2004.Needs Votehttps://lso.co.uk/more/news/1407-obituary-dec-2019.htmlイアン・マクドソーLondon Symphony OrchestraAustralian Youth Orchestra + +814986Harriet RayfieldClassical violinist. +She studied at the [l527847]. Whilst there, she formed the [b]Hellier String Quartet[/b], which remained together for eight years. She has freelanced for all the major ensembles and orchestras in the UK, becoming a member of the [a=London Symphony Orchestra] in 1995. LSO Board Member and Orchestra Committee Member (Vice-Chair).Needs Votehttps://www.feenotes.com/database/artists/rayfield-harriet/https://lso.co.uk/orchestra/players/strings.html#First_violinshttps://www.imdb.com/name/nm8488536/London Symphony Orchestra + +814988Tiberiu ButaClassical violinistCorrecthttps://twitter.com/carpathicusHallé OrchestraThe John Wilson Orchestra + +814989Colin RenwickClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (08/1978-02/2021). +Husband of [a=Caroline O'Neill].Needs Votehttps://www.facebook.com/colin.renwick.906https://www.feenotes.com/database/artists/renwick-colin/https://lso.co.uk/whats-on/alwaysplaying/read/1640-farewell-to-colin-renwick.htmlColinLondon Symphony Orchestra + +814990Tammy SeViolin playerNeeds VoteBBC Symphony Orchestra + +814991Nicole Wilson (2)British professional classical violinist, film/TV orchestra session fixer, professor of violin, radio/TV concert presenter, journalist, and CD producer. +She studied at [l871972] (1990-1992) and the [l527847] (1992-1997). A founder member of the [a=Tippett Quartet]. First violin of the [a=London Symphony Orchestra] (March 1998 - December 2007). Principal second violin of [a3380330] (August 2008 - December 2013). Professor of Violin at the Royal Academy Of Music since June 2014.Needs Votehttps://www.linkedin.com/in/nicole-wilson-69879487/?originalSubdomain=ukhttps://www.musicalorbit.com/abouthttps://www.ram.ac.uk/people/nicole-wilsonhttps://chethamsschoolofmusic.com/alumni/nicole-wilson/https://www.ellevatenetwork.com/member-spotlights/212https://encoremusicians.com/blog/musical-orbit/https://www.classicfm.com/artists/english-national-opera/news/back-desk-interview-nicole-wilson/https://interlude.hk/musical-orbit/https://music.metason.net/artistinfo?name=Nicole%20Wilson%20%282%29https://vgmdb.net/artist/22954London Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsEnglish SinfoniaTippett QuartetThe English National Opera Orchestra + +814992Michael HumphreyClassical violinist. +Former member of the [a=London Symphony Orchestra] (1982-2011).Needs Votehttps://www.feenotes.com/database/artists/humphrey-michael/Michael Humphriesマイケル・ハムフリーLondon Symphony Orchestra + +814993David Jackson (5)British classical percussionist. Born in 1970 in Burton upon Trent, Staffordshire, England, UK. +He studied timpani & percussion at the [l290263] (1989-1992). Sub-Principal Percussion of the [a=London Symphony Orchestra] since 1996. LSO Board Member and Orchestra Committee Member (Vice-Chair).Needs Votehttps://www.facebook.com/profile.php?id=786130437https://twitter.com/dpjackson1https://www.facebook.com/OrchestreDesJeunesDeLaMediterranee/photos/pb.179835852047859.-2207520000.1529283691./1939830972714996/?type=3https://lso.co.uk/orchestra/players/timpani-and-percussion.htmlhttps://www.hyperion-records.co.uk/a.asp?a=A6522Dave JacksonLondon Symphony OrchestraThe Chamber Orchestra Of EuropeNational Youth Orchestra Of Great BritainYoung Musicians Symphony OrchestraLSO Percussion Ensemble + +814994Carmine LauriCarmine LauriMaltese classical violinist. Born in 1971 in Paola, Malta. +He studied at the [l527847]. Co-leader of the First violins of the [a=London Symphony Orchestra] since 1997. Concertmaster of the [a=Oxford Philomusica] since October 2009. +Needs Votehttps://twitter.com/maltesefiddlerhttps://www.linkedin.com/in/carmine-lauri-837129a1/https://www.youtube.com/channel/UCSjN-U6aBNiJ3g4VgFV7GqAhttps://www.feenotes.com/database/artists/lauri-carmine-1971-present/https://huofamilyfoundation.org/news/in-conversation-with/in-conversation-with-carmine-lauri-co-leader-of-the-london-symphony-orchestras-first-violins/https://artsmalta.org/carmine-lauri-violinisthttps://lso.co.uk/orchestra/players/strings.htmlhttps://oxfordphil.com/musicians/https://divineartrecords.com/artist/carmine-lauri/https://www.imdb.com/name/nm2086267/https://www2.bfi.org.uk/films-tv-people/4ce2bd06bd7c3Carmine LaurieLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Symphony Orchestra StringsOxford Philomusica + +814995Hilary JonesBritish classical cellist. Born in Barking, East London, England, UK. +She studied at the [l527847]. Former member of the [a=BBC Symphony Orchestra]. She joined the [a=London Symphony Orchestra] as an Associate Member in July 1985. She became a Full Member in 1992. She retired on 13 December 2020.Needs Votehttps://www.facebook.com/hilary.jones.522https://www.feenotes.com/database/artists/jones-hilary/https://lso.co.uk/whats-on/alwaysplaying/read/1618-wishing-a-fond-farewell-to-cellist-hilary-jones.htmlLondon Symphony OrchestraBBC Symphony OrchestraLondon Symphony Orchestra Strings + +814996Jorg HammannJörg HammannGerman classical violinist. Born in Ludwigshafen am Rhein +He was contracted by the [a=Oslo Filharmoniske Orkester] for two years in 1996. He joined the [a=London Philharmonic Orchestra] in 1998 before moving to the [a=London Symphony Orchestra] (2002-Jul 2018). He joined the [a=Frankfurter Opern- Und Museumsorchester] as leader of the second violins in the 2017/18 season.Needs Votehttps://www.facebook.com/jorg.hammann.98https://www.linkedin.com/in/jorg-hammann-77144897/?originalSubdomain=dehttps://www.feenotes.com/database/artists/hammann-jorg/https://oper-frankfurt.de/en/ensemble-guest-artists-opera-team/ensemble/?detail=1008https://www.imdb.com/name/nm8488534/https://vgmdb.net/artist/14244Jörg HammannLondon Symphony OrchestraLondon Philharmonic OrchestraOslo Filharmoniske OrkesterFrankfurter Opern- Und Museumsorchester + +814997Elisabeth VarlowElizabeth VarlowBritish classical viola player, profoundly deaf since the age of 18. Born in Birmingham, West Midlands, England, UK. +She studied at the [l290263]. Former member of the [a=London Symphony Orchestra] (1994-2005). Sub-Principal Viola of the [a=Royal Philharmonic Orchestra].Needs Votehttps://twitter.com/lizvarlowhttps://www.linkedin.com/in/liz-varlow-453000192/?originalSubdomain=ukhttps://www.oreilly.com/library/view/out-of-our/9780857087416/c05.xhtmlhttps://jessiesfund.org.uk/about-us/Liz VarlowLondon Symphony OrchestraRoyal Philharmonic OrchestraThe London Scratch Orchestra + +815001Belinda McFarlaneAustralian classical violinist, director, mentor, educator, and facilitator. Born in Adelaide, South Australia, Australia. +She joined the [a=Australian Youth Orchestra] in 1984 becoming Leader in 1988. In 1991, she became 2nd violin of the [a=London Symphony Orchestra]. Member of the [a=Australian World Orchestra] and the [b]Fiorini Piano Trio[/b]. Chamber music tutor at [l305416]. +She was married to [a=Nigel Gomm].Needs Votehttps://www.facebook.com/belinda.mcfarlane.14https://www.instagram.com/bindi.mcfarlane/?hl=enhttps://www.linkedin.com/in/belinda-mcfarlane-84a83226/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/mcfarlane-belinda/https://www.ayo.com.au/content/belinda-mcfarlane/gjhneh?permcode=gjhnehhttps://lso.co.uk/orchestra/players/strings.html#Second_violinshttps://www.australianworldorchestra.com.au/1131-belinda-mcfarlane/https://www.gsmd.ac.uk/youth_adult_learning/junior_guildhall/staff/department/23-string-teaching-staff/1217-belinda-mcfarlane/https://classical.aeyons.com/artists/detail/Belinda_McFarlanehttps://www.abc.net.au/classic/programs/duet/duet/13345868https://vgmdb.net/artist/22819London Symphony OrchestraAustralian Youth OrchestraLSO String EnsembleAustralian World OrchestraApollo Chamber Orchestra + +815003Ginette DecuyperBelgian classical violinist. +She studied at the [l1677461]. Member of the 1st violin section of the [a=London Symphony Orchestra] since 1994, and LSO on Tour's resident blogger in French. She became a director of the [b]Arch Sinfonia[/b] in 2015.Needs Votehttps://www.facebook.com/ginette.decuyperhttps://www.linkedin.com/in/ginette-decuyper-52819a71/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/decuyper-ginette/https://lso.co.uk/orchestra/players/strings.html#First_violinshttps://lsoontour.wordpress.com/about-the-bloggers/Ginette DecupyerLondon Symphony Orchestra + +815004Maxine KwokMaxine Kwok-AdamsBritish classical violinist. Born in London, England, UK. +She began her professional orchestral career touring with [a=Det Norske Kammerorkester] and [a832962] whilst still a first year student at the [l527847]. She successfully auditioned for a place on the [a=London Symphony Orchestra] string experience scheme whilst at the RAM and became a permanent member of the 1st violins in 2001 after graduating with an ARAM and a 1st class honours degree.Needs Votehttps://www.maxinekwok.co.uk/https://www.instagram.com/maxinekwok/https://www.youtube.com/channel/UCxZu6tGlaZogUYxKQQ2XlGAhttps://www.beyondborders.org.uk/maxine-kwokhttps://lso.co.uk/orchestra/players/strings.html/#First_violinsMaxine Kwok-AdamsLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsDet Norske Kammerorkester + +815005Claire ParfittBritish classical violinist, and tutor. Born in Cardiff, Wales, UK. +She studied at the [l527847] and the [l957772]. Former member of the [b]Essex Youth Orchestra[/b] (1979). 1st violin of the [a=London Symphony Orchestra] since 1988. +Wife of [a=David Archer].Needs Votehttps://www.linkedin.com/in/claire-parfitt-b01720ab/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/parfitt-claire/https://lso.co.uk/orchestra/players/strings.htmlLondon Symphony OrchestraLSO String Ensemble + +815006Sarah QuinnIrish classical violinist. Born in Dublin, Ireland. +She studied at the [l290263]. She joined the [a=London Symphony Orchestra] in 1998, serving as Sub-Principal 2nd violin and has also served as a Director on the Board of the LSO.Needs Votehttps://twitter.com/sazquinnhttps://www.linkedin.com/in/sarah-quinn-8873b288/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/quinn-sarah/https://musicacademy.org/big-profiles/sarah-quinn/https://lso.co.uk/orchestra/players/strings.html#Second_violinshttps://vgmdb.net/artist/22817London Symphony OrchestraAbsolute Zero (3) + +815007Gillianne HaddowScottish-born classical violist. +She studied at the [l742849]. Gillianne Haddow currently serves as co-principal viola for the [a212726], after joining the orchestra in 1999. She previously was Principal Viola with the [a603108], a post she held for ten years. +Needs Votehttps://www.facebook.com/gillianne.haddowhttps://twitter.com/haddstonhttps://www.feenotes.com/database/artists/haddow-gillianne/https://lso.co.uk/orchestra/players/strings.html#Violashttps://www.imdb.com/name/nm8488613/Giliane HaddowLondon Symphony OrchestraThe BT Scottish Ensemble + +815008Nigel BroadbentRetired British classical violinist. Born in 1952 in Newent, Gloucestershire, England, UK. +He attended the [l527847]. Sub-Principal Violin in [a212726] from April 1979 to 21 December 2017. He, along with [a=Marjorie Dunn], founded [l=Broadbent & Dunn Ltd] in 1990.Needs Votehttps://www.nigelenprovence.com/https://www.facebook.com/nigel.broadbent/https://twitter.com/nigelviolinhttps://www.instagram.com/nigelviolin/?hl=enhttps://www.linkedin.com/in/nigel-broadbent-a2149112/?originalSubdomain=ukhttps://broadbent-dunn.com/biographies/broadbent-nigel/#:~:text=Composers%20and%20Arrangers-,Broadbent%2C%20Nigel,Broadbent%20%26%20Dunn%20Limited%20in%201990.https://www.feenotes.com/database/artists/broadbent-nigel-1952-present/https://www.imdb.com/name/nm0110360/ナイジェル・ブロードベントLondon Symphony OrchestraLondon Symphony Orchestra Strings + +815009Paul SilverthorneEnglish classical violist and Professor of Viola. Born 1951 in Cheshire, England, UK. +He attended the [l527847] (1967-1972). He has been Principal Viola of the [a=London Sinfonietta] since 1988 and was Joint Principal Viola for the [a=London Symphony Orchestra] (January 1991-October 2015). After leaving the LSO, he spent three years as Professor of Viola at the School of Music at Soochow University in Suzhou, China (December 2015-July 2018) before returning to London to resume his teaching at the Royal Academy of Music (1992-December 2015 & September 2018-?) and his position in the London Sinfonietta.Needs Votehttp://en.wikipedia.org/wiki/Paul_Silverthornehttp://www.paulsilverthorne.comhttps://www.londonsinfonietta.org.uk/players/paul-silverthornehttps://www.ram.ac.uk/people/paul-silverthornehttps://www.resonusclassics.com/collections/paul-silverthorne-violahttps://www.moderecords.com/profiles/paulsilverthorne/https://www.hyperion-records.co.uk/a.asp?a=A3658https://www.feenotes.com/database/artists/silverthorne-paul-1951-present/https://www.soundcloud.com/paul-silverthornehttps://music.apple.com/us/artist/paul-silverthorne/6596397https://open.spotify.com/playlist/7AzLJtAcvpasLlLHknpPuc?si=jPx3AYoTQjaaHCNUfjadRg&nd=1https://www.youtube.com/channel/UCRFRAFDgGbvDBDESRVd3J8Ahttps://www.facebook.com/paul.silverthorne.35https://www.linkedin.com/in/paul-silverthorne-81a99937/London Symphony OrchestraLondon SinfoniettaLondon Symphony Orchestra StringsCapricorn (14) + +815010Karen VaughanClassical harpist and teacher of harp. +She studied at the [l527847]. Karen Vaughan was a founding member of the [a=Scottish Chamber Orchestra], often appearing as concerto soloist, and for six years she was principal harpist of the [a=Royal Scottish National Orchestra]. She held the position of co-principal harp in the [a=London Symphony Orchestra] from 1984 to 2014. She taught at the [l742849] from 1999 to 2008. Head of Harp at the Royal Academy of Music since 2004.Needs Votehttps://www.facebook.com/people/Karen-Vaughan/100013004352943/https://www.feenotes.com/database/artists/vaughan-karen/http://www.harpmasters.com/index.php?option=com_content&task=view&id=91&Itemid=132&lang=iso-8859-1https://www.ram.ac.uk/people/karen-vaughanKaren VaughnLondon Symphony OrchestraRoyal Scottish National OrchestraOrchestre Révolutionnaire Et RomantiqueScottish Chamber Orchestra + +815011Regina BeukesSouth African classical violist. +In 1981, she toured Taiwan as Concertmaster of the [b]Harmonia Juventia[/b]. She led the [a454290] on a tour culminating in a concert at [l=Carnegie Hall]. She then studied at the [l477743] (1984-1989). She was appointed Principal Violin of [a=The Cape Town Symphony Orchestra] in 1990, and, in 1992, she became Concertmaster in the same orchestra until 1995. In 1994 she toured several times with [a=The Chamber Orchestra Of Europe]. In 1996, she was appointed solo second violinist of the [a=London Philharmonic Orchestra], a position she held until 2002. In 2003, she was appointed Principal 2nd Violin with the [a=London Symphony Orchestra]; she left the LSO in 2017. Leader of the [b]Barbican Quartet[/b] and Principal Viola in [a3001241].Needs Votehttps://www.facebook.com/gina.beukes.5https://www.linkedin.com/in/gina-beukes-3420b213/?originalSubdomain=behttps://www.feenotes.com/database/artists/beukes-regina/https://arte-amanti.be/artists/gina-beukes/#english-versionGina BeukesLondon Symphony OrchestraLondon Philharmonic OrchestraCincinnati Philharmonia OrchestraThe Chamber Orchestra Of EuropeThe Cape Town Symphony OrchestraOrkest Koninklijk Ballet Van Vlaanderen + +815076Johnny MeeksJohnny T. MeeksRockabilly guitarist and bass player +b. Sept. 16, 1937 +d. Jul. 30, 2016Needs Votehttps://www.emersonfuneralhome.com/obituary/3262301J MeeksJ. MeaksJ. MeatesJ. MecksJ. MeeksJohn MeeksJohnny Thomas MeeksMecksMeekeMeeksMeeks JohnnyMyersThe ChampsGene Vincent & His Blue CapsThe Strangers (5)The Blue CapsThe Detours (11) + +815405Bobby KnightRobert M. KnightTrombonist who has worked with the Nat King Cole Band, Stan Kenton, and Jack Nimitz among many others.Needs VoteB. KnightBob KnightKnightRobert KnightRobert M. KnightStan Kenton And His OrchestraGerald Wilson OrchestraBobby Knight's Great American Trombone CompanyThe Gerald Wilson Big Band + +815648Yannis RogerClassical violinistNeeds Votehttps://www.linkedin.com/in/yannis-roger-b138491a/?originalSubdomain=frLe Concert SpirituelLa Simphonie Du MaraisCapriccio StravaganteLa RêveuseMillenium OrchestraLe Consort + +816180Dan AnderssonDaniel AnderssonSwedish poet and songwriter. + +Born on April 6, 1888 in Skattlösberg, Dalarna, Sweden. +Died on September 16, 1920 in Stockholm, Sweden.Needs Votehttp://en.wikipedia.org/wiki/Dan_Anderssonhttp://dansallskapet.hemsida24.se/https://global.britannica.com/biography/Dan-Anderssonhttps://adp.library.ucsb.edu/names/102454A. AnderssonAnderssonD AnderssonD. AndersonD. AnderssonDan AndersonDan Anersson + +816449Ann Christin WardBritt Ann Christin Wingård WardSwedish classical violist, born November 14, 1968.Needs VoteAnn-Christin WardAnnChristin WardSveriges Radios Symfoniorkester + +816459Paul McGinleyAmerican saxophonist and clarinetistNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And The Thundering HerdChicago Jazz OrchestraNeophonic Jazz Orchestra + +816643Julio CésarJulio Guiu ClaraSpanish composer (d. 1990), especially arranger for British/French/Italian melodic songs since the late 1950s. +Founder of the Spanish publishing company [l=Ediciones Musicales Clipper's] (1952). +Father of Julio Guiu Arbeloa. Grandfather of Julio Guiu Marquina. + +For the Cuban salsa composer, see [a=Julio César Fonseca]. +Correcthttps://www.newswire.com/press-release/new-york-based-music-publisher-big-house-publishing-1084785https://www.northstarmedia.com/partner/MTU0LTNhMjBhNQ/CesarCésarJ. CesarJ. CésarJ.CesarJulio CesarХ. СесарJulio Guiu Clara + +816646Wallace HuffAmerican Jazz trombonist and songwriter.Needs VoteW. HoffW. HuffRoy Porter Sound MachineJohnny Otis And His OrchestraBuddy Banks Sextet + +816649Edwin PleasantsSaxophonist.Needs VoteE. PleasantsEd PleasanceEdwin PleasantJohnny Otis And His OrchestraSunrize (6) + +816701Otto BergViola playerNeeds VoteOslo Filharmoniske OrkesterMonn-Kvartetten + +816994Henkka NiemistöKarl Henrik NiemistöFinnish mastering engineerNeeds Votehttps://henkkaniemisto.com/https://www.facebook.com/henkkaniemistomastering/Dj Henkka NiemistöH. NiemistöH.NiemistöHenkkaHenkka NiemestöHenkka NieminenHenkka NiemistoHenkka NiemistäHenri NiemistöHenrik NiemistöMr. Henkka NiemistöPress Twice + +817541Ike CarpenterIsaac Monroe CarpenterAmerican jazz pianist and bandleader. + +Born : March 11, 1920 in Durham, North Carolina. +Died : November 17, 1998 Durham, North CarolinaNeeds Votehttps://en.wikipedia.org/wiki/Isaac_M._%22Ike%22_CarpenterCarpenterRichard CarpenterBoyd Raeburn And His OrchestraIke Carpenter And His Orchestra + +817818Paul DennikerComposer, songwriter, lyricist. Born: London, England, 30 May 1897 - Came to U.S. in 1919 - d. ???Needs Votehttps://adp.library.ucsb.edu/names/114008DelikerDenikerDennickerDennikenDennikerDenniker P.DenniverDonikerDonnikerEennikerKennikerP. DenikerP. DennekerP. DennickerP. DennikeP. DennikerP.DennikerPaul BennikerPaul DinnikerPaul KennikerPaul RennikerRennikerTed Delaney + +817901Boyd "Red" RossiterJazz trombonistNeeds VoteBoyd "Red" RosserRed RosserRed RossiterJelly Roll Morton's Red Hot PeppersJelly Roll Morton And His Orchestra + +817903J. Wright SmithViolinistNeeds VoteJ.SmithWalter WrightWright SmithJelly Roll Morton's Red Hot PeppersClarence M. Jones Wonder Orchestra + +818188Henk KnöpsOboist.Needs VoteH. KnopsH. KnöpsHenk KnopsRadio Kamerorkest + +818328Bob CarletonRobert Louis CarletonBorn: November 8, 1894 or 1896, Missouri, USA +Died: July 13, 1956, Burbank, CA, USA + +An American pianist and composer of popular music. +Owner of [l=Recording Company of Los Angeles] also known as [l=RECOLA] + +Carleton was quite prolific as a songwriter--for example, in 1948 he copyright 100 songs and over 500 overall. His surname is often misspelled as "Carlton."Needs Votehttp://en.wikipedia.org/wiki/Bob_Carletonhttps://adp.library.ucsb.edu/names/109913B. CarletonB. CarltonB. CaroltonB. CharletonB. CharltonB.CarletonB.CaroltonBob CarledonBob CarlstonBob CarltonBob CharletonBob CharltonCapletonCareltonCarletonCarltonR. CarletonR. CarltonR. L. CarletonR.L. CarletonRobert CarletonRobert CarltonБ. Чарлтон + +818637Michiel CommandeurDutch violinist, born 1970 in Amsterdam, Netherlands.Needs VoteMahler Chamber OrchestraThe Mondriaan QuartetOrkest Amsterdam DramaParadise Regained OrchestraLudwig Orchestra + +819519Armand CanforaArmand Ferdinand Antoine CanforaFrench composer, born in 1921, died in 1973. Also credited with surname [b]Confora[/b].Needs VoteA CanforaA. CanforaA. CamforaA. CandoraA. CanforA. CanforaA. CanfordA. CanforsA. CanfouraA. CasanovaA. ConfaraA. ConforaA. CánforaA. canforaA.CanforaA.ConforaArmand CanfforaArmand Canfora Et Sa Grande Formation,Armand ConforaArmand FerdinandArmand Ferdinand Antoine CanforaArmand Ferdinand CanforaArmando CanforaB. CanforaB. ConforaCafornaCanforaCanfora, ArmandConaraConforaCánforaKanforaM. CanforaКанфораAl BlakinsAl BlackinsCarlos Rubio (3)Bryan DeesonAvila BonaventeArmand TrianonArmand Canfora Et Son Orchestre + +819662Franz VölkerGerman dramatic tenor vocalist (* 31 March 1899 in Neu-Isenburg, German Empire; † 05 December 1965 in Darmstadt, Germany). +Needs Votehttp://en.wikipedia.org/wiki/Franz_V%C3%B6lkerhttps://de.wikipedia.org/wiki/Franz_V%C3%B6lkerhttps://www.stadtpost.de/stadtpost-neu-isenburg/ausstellung-gedenkt-neu-isenburger-tenor-franz-voelker-id2774.htmlFr. VölkerFrank VolkerFranz VoelkerFranz VolkerFranz Völker IIFranz Völker IIIFranz Völker Mit OrchesterbegleitungFranz Völker, Mit OrchesterbegleitungFranz Völker, Of The Opera Frankfurt O. M.Franz Völker, OpernhausFranz Völker, Opernhaus Frankfurt A. M. Mit OrchesterbegleitungFranz Völker, Opernhaus Frankfurt a.M.Franz Völker, Tenor Of The Opera Frankfurt O. M.Franz Völker, Tenor, Staatsoper BerlinFranz Völker, mit OrchesterbegleitungVölker + +819729Karl KomzákKarel Komzák IIBorn November 8, 1850 in Prague, Bohemia, died April 23, 1905 in Baden near Wien, Austria. + +Czech-Austrian composer, conductor and bandmaster, son of [a7145682] (1823-1893) who was also a composer. +His son was [a7143628] (1878-1924). +To his best known compositions belong: +Waltzes: Bad'ner Mad'ln, An der schönen, grünen Naranta, Fideles Wien +Marches: 84er Regimentsmarsch, Erzherzog-Albrecht-Marsch, Vindobona-Marsch +Galops: Sturmgalopp +Volksoper: Edelweiss + + +Needs Votehttp://en.wikipedia.org/wiki/Karel_Komz%C3%A1k_IIhttps://www.naxos.com/mainsite/blurbs_reviews.asp?item_code=8.225327&catNum=225327&filetype=About%20this%20Recording&language=Englishhttps://adp.library.ucsb.edu/names/104115https://www.schwanzer.at/84er-regimentskapelle/geschichte/C. ComckakC. KomczakC. KomzakC. KomzákC.KomzakCarl KomczakCarl KomzakCarl KomzákComckakE. KomsakH. KomzákK. KamzakK. KomcakK. KomzackK. KomzakK. Komzak Jr.K. Komzak, JrK. KomzákK. Komzák Jr.KamzakKarel KomzackKarel KomzakKarel KomzákKarel Komzák (junior)Karel Komzák (senior)Karel Komzák IIKarel Komzák Jr.Karl KomczakKarl KomzakKarl Komzak (Sohn)Karl Komzak SohnKarl Komzak, Sen.Karl KomzàkKarl Komzák IIKarl Komzák SohnKarl Komzák, VaterKarl KomzâkKomacakKomcakKomczakKomczákKomzackKomzakKomzak KarlKomzàkKomzákKomzák Jr.Komzák-DopplerKonzakKoruska + +819841Robert KatscherRobert KatscherAustrian composer and lyricist, born 20 May 1894 in Vienna, Austria, died 23 February 1942 in Hollywood, Los Angeles, California, USA + +He first studied law to continue his familly tradition. Soon afterwards he started to get into Arts Academy and wrote lots of Wienerlied, schlager, twist but also classical music. In 1938 he was one of most famous Austrian musicians. As a jew, he had to leave the country and went to the US. There he was the first refugee who got accepted to be a member of ASCAP. He died in 1942 in Hollywood, where he did some (mostly) uncredited film soundtracks before. +Needs Votehttps://adp.library.ucsb.edu/names/111554. KatscherA. KatscherCatcherCatscherD. KatscherDr Robert KatscherDr. KatscherDr. R. KatscherDr. Rob. KatscherDr. Robert KatcherDr. Robert KatscherHarry KatscherKarsherKatcherKateherKatscheKatscherKatscher,KatschnerKatshcerKatsherKatsnerKatsrcheKetscherKratscherKätscherR. KatcherR. KatschR. KatscherR. KatschnerR. KlatscherR. KotscherR. KötscherRatscherRichard KatscherRob. KatscherRobert KatcherRobert KatsckerRudolf KatscherР. Катшер + +820401Константин ВаншенкинКонстантин Яковлевич ВаншенкинSoviet and Russian poet +December 17, 1925, Moscow - December 15, 2012, Moscow +Married to [a1117510]Needs Votehttps://ru.wikipedia.org/wiki/Ваншенкин,_Константин_ЯковлевичC. VanchenkineE. VanshenkinK. VanchenkineK. VanschenkinK. VanshenkinK. VanšenkinK. VanšenkinasK. VapchenkinK. VashenkinK. WanschenkinKonstantin VanshenkinVanshenkinVanstcienkinVashenkinWanschenkinВаншенкинК. ВаншенкiнК. ВаншенкинК. ВаншенкинаК. ВаншенкінК.ВаншекинК.ВаншенкинК.И. ВаншенкинС. Ваншенкинקונסטנטין ואנשנקין + +820836Theo Uden MasmanDirk Theodoor Uden MasmanDutch bandleader in the 1930s. Born March 15, 1901 in Cirebon, Cirebon City, West Java, Indonesia, died January 27, 1965 at the age of 63 in The Hague, South Holland, Netherlands Needs VoteMasmanTheo MasmanTheo Uden Masman's RamblersThéo Ucken MasmanThéo Uden MasmanUden MasmanThe RamblersHet Dansorkest + +821285Riccardo Del FraRiccardo Del Fra, born in Rome in 1956, is a multi-talented musician: a double bass player, arranger, and composer. Riccardo del Fra played alongside Chet Baker for nine years both in Europe and Japan on tours, for the radio and for the television; a collaboration which led to the recording of twelve albums, videos and the movie Chet’s Romance directed by Bertrand Fèvre. At the beginning of the 1980s Riccardo Del Fra settled in Paris where he joined a very active rhythm section with the pianist Alain Jean-Marie and the drummer Al Levitt, while at the same time continuing to play with Chet Baker and the pianist Michel Graillier. In the 1990s the trombone player and composer Bob Brookmeyer, whose composition classes Del Fra had taken in Cologne, invited him to join his quartet. They toured together and recorded the CD Paris Suite (which won the Prix de l’Académie du Jazz in 1994). In September 2004 Riccardo Del Fra was named head of the department of Jazz and Improvised Music at the Conservatoire National Supérieur de Musique et de Danse de Paris. In 2003, Riccardo del Fra was named Chevalier de l’Ordre des Arts et des Lettres by the Minister of Culture and Communication.Needs Votehttp://www.riccardodelfra.net/http://fr.wikipedia.org/wiki/Riccardo_Del_FraDel FraR Del FraR. Dal FràR. Del FraRicardo Del FraRicardo del FraRiccardo Dal FràRiccardo Del FràRidardo Del FraChet Baker QuartetManuel Rocheman TrioGianni Basso QuartetChet Baker TrioRémi Charmasson SouthernersNoga & QuartetClaudio Fasoli Jazz GroupCharles Loos TrioPhilippe Briand TrioHervé Sellin TrioMariano/Josephs/Del Fra/Breuer QuartetBob Brookmeyer New QuartetInsieme (2) + +821667Astrid LindellSwedish classical cellist. + +She is since 2002 member of Sveriges Radio's symphony orchestra. Alongside the orchestra, Astrid is active as a chamber musician in many contexts, e.g. in a string quartet with members from the SRSO. Astrid regularly makes recordings for SR, a couple of years ago, among other things, from a concert in Studio 2 in Radiohuset in Stockholm, where she performed an entire chamber music program by the composer Sven-David Sandström. She has been dedicated to several compositions by Sandström, e.g. a work for solo cello. + +Astrid has participated in several festivals and chamber music series in Sweden, e.g. Music at Slott och Herresäten, Lyckå chamber music festival, Bengt Forsberg's chamber music series in Allhelgonnakyrkan, Chamber unplugged in Studio 2, etc. She has also played chamber music abroad in e.g. Concertgebouw in Amsterdam. + +As a soloist, Astrid has performed with i.a. The Royal Philharmonic Orchestra. + +The studies at the Royal Academy of Music in Stockholm ended with a soloist diploma and then continued master's studies in NY, USA at the Eastman School of Music. The studies were made possible with the help of scholarships from the Royal Academy of Music, the Sweden-Amerikastiftelsen, the Guido Vecchi scholarship for young string musicians, etc.Needs VoteSveriges Radios Symfoniorkester + +822410Giovanni Pierluigi da PalestrinaGiovanni Pierluigi Da PalestrinaItalian composer of the Renaissance (born in Palestrina, near Rome, between February 3 1525 and February 2 1526; died in Rome, February 2, 1594), the most famous 16th-century representative of the Roman School of musical composition. +Palestrina had a vast influence on the development of Roman Catholic church music, and his work can be seen as a summation of Renaissance polyphony. He left hundreds of compositions, including 104 masses, 68 offertories, more than 300 motets, at least 72 hymns, 35 magnificats, 11 litanies, 4 or 5 sets of lamentations etc., at least 140 madrigals and 9 organ ricercari.Needs Votehttps://en.wikipedia.org/wiki/Giovanni_Pierluigi_da_Palestrinahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102104/Palestrina_Giovanni_Pierluigi_daBible, PalestrinaC. P. da PalestrinaC.P. PalestrinaDa PalestrinaDzh. PalestrinaDž. P. da PalestrīnaDž. PalestrinaG P Da PalestrinaG P da PalestrinaG. B. PalestrinaG. Da PalestrinaG. De PalestrinaG. P da PalestrinaG. P. Da PalestrinaG. P. PalestrinaG. P. da PalestrinaG. P. da PalestriniG. P. de PalestrinaG. P.L. da PalestrinaG. PalestinaG. PalestrinaG. Pierluigi Da PalestrinaG. Pierluigi da PalestrinaG. da PalestrinaG.-P. PalestrinaG.L. Da PalestrinaG.P. Da PalestrinaG.P. PalestrinaG.P. da PalestrinaG.P. de PalestrinaG.P.da PalestrinaG.Pierluigi Da PalestrinaGP PalestrinaGian Pierluigi PalestrinaGio. Pierluigi da PalestrinaGiobanni Pierluigi PalestrinaGionanni PalestrinaGiov. P. Da PalestrinaGiov. Pierluigi da PalestrinaGiovanna da PalestrinaGiovanni Battista Pierluigi da PalestrinaGiovanni Da PalestrinaGiovanni Di PalestrinaGiovanni Luigi Da PalestrinaGiovanni P. Da PalestrinaGiovanni P. Luigi Da PalestrinaGiovanni P. PalestrinaGiovanni P. da PalestrinaGiovanni PalestrinaGiovanni Perl. da PalestrinaGiovanni Perluigi Da PalestrinaGiovanni Perluigi da PalestrinaGiovanni Pier Luigi Da PalestrinaGiovanni Pier Luigi da PalestrinaGiovanni Pierluiga da PalestrinaGiovanni PierluigiGiovanni Pierluigi Da PalestrinaGiovanni Pierluigi De PalestrinaGiovanni Pierluigi PalestrinaGiovanni da PalestrinaGiovanni-Pierluigi da PalestrinaGiovannia Pierluigi Da PalestrinaGiovannin Pierluigi Da PalestrinaGiowanni Pierluigi da PalestrinaGiuseppe Pierluigi da PalestrinaJ. P. Da PalestrinaJ. P. PalestrinaJ. PalestrinaJ.-P. De PalestrinaJ.P. da PalestrinaJo. Petraloysius Praenestinus - G. P. da PalestrinaJuan Pierluigi da PalestinaP. Da PalestrinaP. L. Da PalestrinaP. L. PalestrinaP. L. da PalestrinaP.L. Da PalestrinaP.L. da PalestrinaPALESTRINAPalestrinaPalestrina - Giovanni PierluigiPalestrina, Giovani PierluigiPalestrinoPatestrinaPelestrinaPier Luigi Da PalestrinaPierluigiPierluigi Da PalestrinaPierluigi Da PalestrinaPierluigi da PalestrinaPierluigi de PalestrinaPierluigi di Palestrinada Palestrinade PalestrinaЂовани Перлуиђи да ПалестринаГ. П. да ПалестринаД. ПалестринаДж. П. Да ПалестринаДж. П. да ПалестринаДж. ПалестринаП. ПалестринаПалестринаジョヴァンニ・ピエルルイジ・ダ・パレストリーナパレストリーナ + +822473Leoš JanáčekLeoš Eugen JanáčekCzech composer, musical theorist, folklorist, music writer and teacher. Born July 3, 1854 in Hukvaldy, Moravia (former Austrian Empire), died August 12, 1928 in Ostrava (former Czechoslovakia). He was inspired by Moravian and all Slavic folk music to create an original, modern musical style. Until 1895 he devoted himself mainly to folkloristic research and his early musical output was influenced by contemporaries such as Antonín Dvořák. His later, mature works incorporate his earlier studies of national folk music in a modern, original synthesis. Janáček’s later works include the symphonic poem Sinfonietta, the oratorial Glagolitic Mass, the rhapsody Taras Bulba, string quartets, other chamber works and many original operas.Needs Votehttps://www.janacek-nadace.cz/https://www.leosjanacek.eu/https://en.wikipedia.org/wiki/Leo%C5%A1_Jan%C3%A1%C4%8Dekhttps://www.britannica.com/biography/Leos-Janacekhttps://www.imdb.com/name/nm0418443/JanacekJanacek L.JanacékJanačekJanàcekJanàčekJanácekJanáĉekJanáčekJánačekL JanáčekL. JanacekL. JanacèkL. JanačekL. JanačekasL. JanácekL. JanáčekL.JanacekLeon JandcekLeos JanacekLeos JanacerLeos JanačekLeos JancekLeos JanàčekLeos JanácekLeos JanácêkLeos JanáčekLeos JanéčekLeos JánacekLeoś JanáčekLeoš JanacekLeoš JanatchekLeoš JanačekLeoš JanácekLeós JanacekLeós JanácekLeós JanáčekLeóš JanáčekLéos JanacekLéos JanàcekLéoš JanáčekSkladatelЛ. ЯначекЛ. ЯнечекЛеош Яначекヤナーチェクレオシュ・ヤナーチェクレオシュ・ヤナーチェク + +822796Véronique PotvinVéronique PotvinViolist, from Québec, CanadaNeeds VoteVeronique PotuinOrchestre symphonique de Montréal + +823061Carl SchurichtCarl Adolph SchurichtGerman conductor, born July 3, 1880, in Danzig, Kingdom of Prussia (now Gdańsk, Poland) into a family of organ builders, died January 7, 1967, in Corseaux-sur-Vevey, Switzerland. He is most famous for his works with the [a=Wiener Philharmoniker] (Vienna Philharmonic) and the [a=Berliner Philharmoniker] (Berlin Philharmonic).Needs Votehttp://carlschuricht.com/Schuricht.htmhttps://en.wikipedia.org/wiki/Carl_SchurichtC. SchurichtGeneralmusikdirektor Carl SchurichtGeneralní Hud. Ředitel C. SchurichtK. SchurichtKarl SchurichtSchurichtΚαρλ ΣούριχτКарл ШУрихтКарл Шурихтカール・シューリヒト + +823325Michio Yamagami山上路夫(Yamagami Michio)Japanese lyricist. Born August 2, 1936. Son of [a=東辰三] (Azuma Tatsumi).Needs Votehttps://ja.wikipedia.org/wiki/%E5%B1%B1%E4%B8%8A%E8%B7%AF%E5%A4%ABM. YamagamiM. YamakamiM.YamagamiMichio YamakamiMitio YamanoeYagamaniYamagama MichioYamagamiYamagami Michio山上 路夫山上路夫 + +823328Brant TaylorCellistCorrecthttps://cso.org/about/performers/cso-musicians/strings/cello/brant-taylor/BrantSaint Louis Symphony OrchestraChicago Symphony OrchestraNew World Symphony OrchestraThe Chicago Chamber MusiciansEverest String Quartet + +823475Wilhelm StrienzWilhelm Georg StrienzGerman operatic bass vocalist, born September 02, 1900 in Stuttgart, German Empire, died May 10, 1987 in Frankfurt am Main, Germany.Needs Votehttps://de.wikipedia.org/wiki/Wilhelm_Strienzhttps://www.leo-bw.de/detail/-/Detail/details/PERSON/kgl_biographien/11731885X/Strienz+Wilhelm+Georghttps://adp.library.ucsb.edu/names/103953StienzW. StriensW. StrienzWilh. StrienzWilhelm Strienz Mit OrchesterWilhelm Strienz Mit Begleitorchester + +824330Liz SwainElizabeth SwainBritish soprano vocalist.Needs Votehttp://lizswain.co.uk/Elizabeth SwainThe Heritage OrchestraLondon Voices + +824432Francesco ZetaFrancesco ArgeseItalian hardstyle DJ and producer from Torino. He started DJ career in 1999 at club called Gallery.Correcthttp://www.francescozetadj.com/https://www.facebook.com/francescozetadjhttp://www.youtube.com/FrancescoZetaDjhttp://twitter.com/FrancescoZetaDjF. ZetaFrancesco ZZedZetaThe ClawFrancesco ArgeseSub-Zero (4)Brain ExciterSmoke (41)F. ZetaKetno + +825268Elton John & Bernie TaupinCorrect'E. John/B. TaupinB Taupin - E JohnB. John - B. TaupinB. Taupain, Elton JohnB. Taupin & E. JohnB. Taupin - E. JohnB. Taupin - Elton JohnB. Taupin / E. JohnB. Taupin / E. John)B. Taupin / Elton JohnB. Taupin, E. JohnB. Taupin-E. JohnB. Taupin-Elton JohnB. Taupin/ E. JohnB. Taupin/E. JohnB. Taupin/Elton JohnB. Turpin, Elton JohnB. taupin / E. JohnB.Taupin & E.JohnB.Taupin - E.JohnB.Taupin-E. JohnB.Torbin/E.JohnBenie Taupin / Elton JohnBernard JP Taupin/Elton JohnBernard Taupin / Elton JohnBernard Taupin, Elton JohnBernie Taupin & Elton JohnBernie Taupin - Elton JohnBernie Taupin / Elton JohnBernie Taupin / Sir Elthon JohnBernie Taupin And Elton JohnBernie Taupin And John EltonBernie Taupin and Elton JohnBernie Taupin, Elton JohnBernie Taupin-Elton JohnBernie Taupin/Elton JohnBernie-Taupin-Elton JohnE John & B. TaupinE John - B TaupinE John / B TaupinE John B TaupinE John, B TaupinE John-B. TaupinE John/B TaupinE John/B. TaupinE John/TaupinE Jonh/TaupinE, John-B. TaupinE- John, B. TaupinE. / B. TaupinE. JohnE. John & B. TaupinE. John & R. TaupinE. John + B. TaupinE. John , B. TaupinE. John - B- TaupinE. John - B. TaubinE. John - B. TaupinE. John - B.TaupinE. John - J. TaupinE. John - TaupinE. John -B. TaupinE. John / B. TaupinE. John / B. ToupinE. John / B.TaupinE. John / TaupinE. John : B. TaupinE. John And B. TaupinE. John B. TaupinE. John Y B. TaupinE. John y B. TaupinE. John | B. TaupinE. John, B. TapinE. John, B. TarpinE. John, B. TaupinE. John, B. TaurpinE. John, B.TaupinE. John, Bernie TaupinE. John, TaupinE. John- B. TaupinE. John-B TaupinE. John-B, TaupinE. John-B. TaubinE. John-B. TaupilE. John-B. TaupinE. John-B. TauponE. John-B.TaupinE. John-Bernie TaupinE. John-LaupinE. John-P. TaupinE. John-TaupinE. John. B.TaupinE. John/ B. TaupinE. John/ Bernie TaupinE. John/B. TaubinE. John/B. TaupinE. John/B. ToupinE. John/B.TaupinE. John/E. TaupinE. John/TaubinE. John/TaupinE. John; B. TaupinE. Johns / B. TaupinE.John & B.TaupinE.John , B.TaupinE.John - B. TaupinE.John - B.TaupinE.John / B. TaupinE.John / B.TaupinE.John, B.TaupinE.John,B.TaupinE.John-B. TaupinE.John-B.TaupinE.John/ B.TaupinE.John/B. TaupinE.John/B.TaupinE.John/TaupinEJ And BTEJ And BT.El. John / B. TaupinElton & BernieElton / TaupinElton And Bernie TaupinElton Hohn/TaupinElton Jhon/TaupinElton John & B. TaupinElton John & Bernard J.P. TaupinElton John & Bernard TaupinElton John & Bernie TampinElton John & TaupinElton John + Bernie TaupinElton John - B. TaupinElton John - Bernard TaupinElton John - Bernie TaubinElton John - Bernie TaupinElton John - Bernie ToupinElton John - TaupinElton John -Bernie TaupinElton John / B TaupinElton John / B. TaupinElton John / Bernard J.P. TaupinElton John / Bernard TaupinElton John / Bernie TaupinElton John / Bernier TaupinElton John / TaupinElton John /Bernie TaupinElton John /TaupinElton John And B. TaupinElton John And Bernard TaupinElton John And Bernie TaupinElton John And TaupinElton John Bernie TaupinElton John Und Bernie TaupinElton John Y Bernie TaupinElton John and Bernie TaupinElton John and TaupinElton John – Bernie TaupinElton John • Berhard TaupinElton John • Bernie TaupinElton John, B. TaupinElton John, B.TaupinElton John, Bene TaupinElton John, Bernard J.P. TaupinElton John, Bernard TaupinElton John, Bernie TaupinElton John, J. TaupinElton John, TaupinElton John- Bernie TaupinElton John-B. TaupinElton John-B.TaupinElton John-Bernie TaubeElton John-Bernie TaupinElton John-BernieTaupinElton John-Bernier TaupinElton John-Berrie TaupinElton John-J. TaupinElton John-TaubinElton John-TaupinElton John. Bernie TaupinElton John/ B. TaupinElton John/ B.TaupinElton John/ Bernie TaupinElton John/ TaupinElton John/B. TaubinElton John/B. TaupinElton John/B.TaupinElton John/Bemie TaupinElton John/Bernie MaupinElton John/Bernie PautinElton John/Bernie TaubinElton John/Bernie TaupinElton John/Bernie Taupin/Davey JohnstoneElton John/Bernie TurpinElton John/TaupinElton John/TrabonElton John/TuapinElton John/bernie TaupinElton John–B. TaupinElton John–Bernie TaupinElton/John/TaupinElton/TaupinHarle,John CroftonJ. Elton / B. TaupinJ. TaupinJ.Elton/B.TaupinJohn & TaupinJohn - TaupinJohn -TaupinJohn / TaupinJohn /TaupinJohn And TaupinJohn E. / Taupin B.John E., Taupin B.John E./Taupin B.John Elton / Taupin Bernard J PJohn Elton, Bernie TaupinJohn TaupinJohn Y TaupinJohn, B. TaupinJohn, E., Taupin, B.John, TapinJohn, TaupinJohn-TaubinJohn-TaupinJohn-TraudinJohn. TaupinJohn/ TaupinJohn/AubinJohn/TapinJohn/TaupinJohn/TopinJohn; TaupinJohn–TaupinJones/TaupinJonh/TaupinReggae Dwight & Toots TaupinReggae Dwight And Toots TaupinTampin/JohnTaupinTaupin & Elton JohnTaupin & JohnTaupin - E. JohnTaupin - E.JohnTaupin - JohnTaupin / JohnTaupin, E. JohnTaupin, Elton JohnTaupin, JohnTaupin-E. EltonTaupin-JohnTaupin/JohnW. John - TaupinДжон/ТопенЭ. Джон - Б. ТопинЭ. Джон – Б. ТопинЭ. Джон — Б. Топинג׳והן, טאופיןAnn Orson & Carte BlancheElton JohnBernie Taupin + +825850Tiny ParhamHartzell Strathdene ParhamTiny Parham (born 25 February 1900, Winnipeg, Manitoba, Canada - died 4 April 1943, Milwaukee, Wisconsin, USA) was a Canadian-born American early blues pianist and arranger. + +Parham was born in Canada and grew up in Kansas City, USA. Starting with vaudeville, he moved to Chicago in 1925, where he led several small bands, worked as an arranger and talent scout at Paramount Records, and played organ and piano in theatres. Under the name of [a=Tiny Parham And His Musicians] he cut 38 sides for [l=Victor] between 1928 and 1930. In the 1930's he continued to lead and tour with his own bands. He died in a dressing room in Milwaukee during a show in 1943. + +Needs Votehttp://www.redhotjazz.com/tiny.htmlhttps://en.wikipedia.org/wiki/Tiny_Parhamhttps://adp.library.ucsb.edu/names/105315"Tiny" ParhamH. S. ParnhamH. S. “Tiny” ParhamH.S. ParhamHartzell "Tiny" ParhamHartzell Strathdene "Tiny" ParhamParhamParnhamParthamS. ParhamStrathdene ParhamT. ParhamT. PermiganTiny And His PianoTiny ParnhamHartzell ParhamTiny Parham And His MusiciansParham-Pickett Apollo SyncopatorsJunie Cobb's Hometown BandJasper Taylor's State Street BoysTiny Parham And His "Forty" FiveKing Brady's Clarinet BandTiny Parham's Four AcesTiny Parham Washboard Band + +825851Ed KirkebyWallace Theodore KirkebyBorn October 10,1891, Brooklyn NY +Died June 12,1978, Mineola, NY + +Managed California Ramblers in 1921, Formed C.R. Publishing in 1922, +Replaced Phil Ponce as manager of Fats Waller in 1938. +Wrote lyrics for many Fats Waller songs and photographed him extensively. +Managed the Deep River Boys from 1944 into the mid-1960sNeeds Votehttp://newarkwww.rutgers.edu/IJS/collections/WallaceTheodoreEdKirkeby.pdfhttps://www.allmusic.com/artist/mn0000791758http://www.imdb.com/name/nm2046761/https://en.wikipedia.org/wiki/Ed_Kirkebyhttps://secondhandsongs.com/artist/86811https://adp.library.ucsb.edu/names/110664"Ed" KirkebyCirkebyE. KirkebyE. KirkeryEd. KirkebyKirkbyKirkebyW. T. (Ed) KirkebyW. T. Ed KirkebyW. T. KirkebyW.T. "Ed" KirkebyWallace T. (Ed.) KirkebyTed WallaceEddie Kirk (2)Ed Lloyd (2)California RamblersTed Wallace & His Campus BoysTed Wallace & His OrchestraThe Vagabonds (6)The Little RamblersVarsity EightTed Wallace And His Swing KingsEd Loyd & His OrchestraThe Goofus FiveEd Kirkeby & ChorusEd Lloyd & His Rhythm BoysEddie Lloyd & His Singing BoysEddie Kirkeby's Orchestra + +825955Jimmy MooreJazz bassist. + +For the funk bassist (who played with [a=James Brown]), please use [a=Jimmy Lee Moore]. +For the photographer, please use [a=Jimmy Moore (2)].Needs VoteJames MooreLouis Armstrong And His Orchestra + +826055Edward Ross (2)English tenor vocalist, specialising in Baroque and Early Music. Born in London, England, UK.Needs Votehttps://monteverdi.co.uk/soloists/edward-rossThe London Oratory School ScholaThe Monteverdi Choir + +826559Yves AllégretYves AllégretFrench director, born 13 October 1907 in Asnières-sur-Seine, France, died 31 January 1987 in Paris, France. + +Married to [a=Simone Signoret] from 1943 to 1950 and father of [a=Catherine Allegret]. +CorrectY. AllégretYves Allegret + +826706Michel CeruttiPercussionist.CorrectM. CeruttiMichel CerrutiMichel CerruttiEnsemble Intercontemporain + +826708Maryvonne Le DizesMaryvonne Le DizèsFrench violinist, and educator, born 25 June 1940 – died August 2024. + +She studied at the 'Conservatoire National de Musique' in Paris, where she was best in class for violin and chamber music. In 1962, she won the 'Grand Prix Niccolò Paganini' being the first female artist to be awarded the prize. In 1983, she was awarded the 'American Music Prize' - the first female and first person from outside the USA to receive the award. Additionally, she won the French 'Grand Prix SACEM' in 1987. + +From 1977, she taught at the [url=https://www.discogs.com/label/1001204-Centre-Culturel-De-Boulogne-Billancourt]Conservatoire Boulogne-Billancourt[/url]. Since 1978, she was a member of [l320694].Needs Votehttps://en.wikipedia.org/wiki/Maryvonne_Le_Diz%C3%A8sM. Le DizèsM.Le DizèsMaryonne Le Dizès-RichardMaryvonne Le Dizes-RichardMaryvonne Le DizèsMaryvonne Le Dizès-RichardMaryvonne LedizèsMaryvonne le Dizès-RichardEnsemble Intercontemporain + +826709Jean-Marie LamotheClassical bassoon playerNeeds VoteJean-Marie LanotheEnsemble IntercontemporainOrchestre National Bordeaux Aquitaine + +826710Daniel CiampoliniPercussionist.Needs Votehttp://www.danielciampolini.com/Daniel ChampoliniEnsemble IntercontemporainEnsemble AlternanceFederal (4)Denis Levaillant Music Ensemble + +826711Alain NeveuxClassical pianist.Needs VoteAlain NeveuEnsemble IntercontemporainTrio Novalis + +826714Jens McManamaHorn player.CorrectJean Mac ManamaJens Mac ManamaJens Mac NamanaJens Mc ManamaEnsemble Intercontemporain + +826715Jacques DeleplancqueClassical hornist.Needs Votehttps://www.hans-hoyer.com/artist/jacques-deleplancque/Jacques DelaplancqueEnsemble IntercontemporainOrchestre National Du Capitole De Toulouse + +826716Didier PateauDidier PateauClassical oboe player.Needs Votehttp://www.ensembleinter.com/soloists.php?soloist=96Didier PlateauEnsemble Intercontemporain + +826719Frédéric StochlDouble bass player.CorrectFrederic StochlFrédéric StohlFrédéric StrochlStochlEnsemble Intercontemporain + +826720Sophie CherrierClassical flutist.CorrectCherrierEnsemble Intercontemporain + +826721Antoine CureAntoine CuréClassical trumpet player. +(born in Bar-Le-Duc, France in 1951) +has been student and teacher (1988 to 2018) at the Conservatoire de Paris. +solo trumpeter in the Ensemble Contemporain conducted by Pierre Boulez from 1981 to 2012.Needs Votehttps://fr.wikipedia.org/wiki/Antoine_Cur%C3%A9Antoine CuréEnsemble IntercontemporainEnsemble 2E2M + +826722Jacques GhestemClassical violinist.Needs VoteJ. GestemJack GestemJacques GesthemJacques GhesteinJacques GhesternJacques GhesthemŽak Gestemジャック・ゲスタンジャック・ゲステム格斯德姆Ensemble IntercontemporainQuatuor ParreninEnsemble Musique VivanteOrquestra Petrobras Sinfonica + +826723Lawrence BeauregardLawrence Michael "Larry" BeauregardCanadian flautist (October 14, 1956 – September 4, 1985)Needs Votehttp://en.wikipedia.org/wiki/Larry_BeauregardLaurence BeauregardEnsemble Intercontemporain + +826724Charles André LinaleViolinist +Died in November 2003 +Needs VoteCharles - André LinaleCharles-André LinaleEnsemble IntercontemporainOrpheus String Quartet + +826725Laszlo HadadyLászló HadadyHungarian clarinet and English horn player, born 1956 in Békésszentandrás.Needs VoteHadadyLazlo HadadyLàszlò HadadyLászló HadadyEnsemble IntercontemporainDenis Levaillant Music EnsembleThe Weiner-Szasz Chamber Orchestra + +826824Friedemann ErbenGerman cellist, born in 1931 and died in 1983. He's the father of [a2692156].Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-KammermusikvereinigungGewandhaus-Quartett LeipzigHändel Festspiel-Orchester Halle + +826827Dietmar HallmannGerman violist and emeritus professor, born 5 April 1935 in Breslau, Germany (today Wrocław, Poland). He the father of [a3201723].Needs VoteDieter HallmannDietmar Hallmanディトマー・ハルマンBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-KammermusikvereinigungGewandhaus-Quartett Leipzig + +826828Amadeus WebersinkeGerman pianist, organist and music professor, born 1. November 1920 in Broumov, now Czech Republic and died 15 May 2005 in Dresden, Germany.Needs Votehttps://en.wikipedia.org/wiki/Amadeus_Webersinkehttps://www.deutschlandfunkkultur.de/pianisten-in-der-ddr-folge-1-4-hugo-steurer-und-amadeus.3780.de.html?dram:article_id=460570A. VeberzinkeA. VēberzinkeA. WebersinkeAmadeus VeberzinkeAmadeus VeverzinkeWebersinkeА. ВеберзинкеАмадеус ВеберзинкеАмадеус ВеберзинкеBeethoven-Trio + +826830Gerhard BosseGerman violinist and conductor, born 1922 in Wurzen near Leipzig, Germany and died 1 February 2012 in Takatsuki, Japan.Needs VoteBosseG. BosseGerhard Bosse, ViolinГерхард БоссеBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-KammermusikvereinigungGewandhaus-Quartett LeipzigHändel Festspiel-Orchester Halle + +826832Konrad SiebachKonrad SiebarthKonrad Siebach (* 9 October 1912 in Pausa as Konrad Spitzbarth; † 22 September 1995 in Leipzig) was a German double bassist and double bass teacher.Needs Votehttps://de.wikipedia.org/wiki/Konrad_SiebachKonrad SiebackGewandhausorchester LeipzigGewandhaus-Kammermusikvereinigung + +826839Franz KonwitschnyGerman conductor and violist, born 14 August 1901 in Fulnek, Moravia (today Czech Republic) and died 28 July 1962 during a concert tour in Belgrade, Yugoslavia (today Serbia). He is the father of German opera director [a=Peter Konwitschny].Needs Votehttp://en.wikipedia.org/wiki/Franz_KonwitschnyDirection Franz KonwitschnyF. KonvichnyF. KonwitschnyFr. KonwitschnyFrantz KonwitschnyFranz KonwitchnyFranz von KonwitschnyGMD Franz KonwitschnyGeneralmusikdirektor Franz KonwitschnyGeneralmusikdirektor Professor Franz KonwitschnyKonwitschnyProf. F. KonwitschnyProf. Franz KonwitschnyФ. КонвичныФ. КонвичныйФранц КонвичниФранц Конвичныйフランツ・コンヴィチュニーStaatskapelle Dresden + +826840Horst SteinHorst Walter SteinGerman conductor [* 02 May 1928 in Elberfeld (today Wuppertal), German Empire; † 27 July 2008 in Vandœuvres, Switzerland].Needs Votehttps://en.wikipedia.org/wiki/Horst_Steinhttps://de.wikipedia.org/wiki/Horst_SteinGeneralmusikdirektor Horst SteinH. SteinH.SteinLeon LarueStaatskapellmstr. Horst SteinSteinシュタインホルスト・シュタインBamberger Symphoniker + +826841Werner WolfGerman sound engineer for [l7703].Needs VoteWOWo + +827129Warren DavisWarren W. DavisAmerican vocalist. Born March 1, 1939. Died April 17, 2016.Needs Votehttps://www.findagrave.com/memorial/162172427/warren-w.-davisDavidDaviesDavisM. DavisW. DavisWarren/DaviesThe Monotones + +827130George MaloneGeorge Walter MaloneAmerican singer and songwriter. Born January 5, 1940. Died October 5, 2007.Needs Votehttps://www.findagrave.com/memorial/22154127/george-maloneG MaloneG. MaloneGeorge Walter MaloneJ. MaloneMaloneMaloneyMarloweThe Monotones + +827132Charles PatrickCharles Howard PatrickLead singer & songwriter. +September 11, 1938 - September 11, 2020 + +Brother of [a2624430]Needs VoteC. PatrickC. PatrikPatricPatrickPeacockThe Monotones + +827661Rod RodriguezNicholas 'Nick' Goodwin 'Rod' RodriguezCuban-born jazz pianist, born September 10, 1906 in Havana, Cuba. +Rodriguez worked as an ensemble pianist with Jelly Roll Morton in 1929-1930. He performed and recorded with Benny Carter (1932-1933) and Don Redman (1938-1943). In the 1950s and 1960s he taught piano and played with Johnny Coles (1953), Louis Armstrong (1961) and Doc Cheatham (mid-1960s).Needs Vote"Rod" RodriguezRed RodriguezRod RodgriguezRodriguezRed RodriguezNicholas RodriguezJelly Roll Morton's Red Hot PeppersSpike Hughes And His Negro Orchestra + +828374Bruno Seidler-WinklerKarl Ludwig Bruno Seidler-WinklerGerman conductor, pianist and arranger, born 18 July 1880 in Berlin, Germany and died 19 October 1960 in Berlin, Germany. + +First chief conductor of the [a=Rundfunk-Sinfonieorchester Berlin] (from 1926 to 1932). +Needs Votehttp://de.wikipedia.org/wiki/Bruno_Seidler-Winklerhttps://adp.library.ucsb.edu/names/103707B. Seidler - WinklerB. Seidler-WinklerB. WinklerB.S. WinklerBr. Seidler-WinklerBruno Seidel-WinklerKapellm. Seidler WinklerKapellm. Seidler-WinklerKapellm. Seidler-Winkler, MünchenKapellmeister Bruno Seidler-WinklerKapellmeister Seidler-WinklerKapellmeister Seidler-Winkler, BerlinSeidlerSeidler WinklerSeidler-WinklerVasa PrihodaWinklerБ. Зейдлеръ ВинклеръБ. Зейдлеръ-ВикклерБ. Зейдлеръ-ВинклерБ. Зейдлеръ-ВинклеръБруно Зайдлер-ВинклерБруно Зейдлер-ВинклеръВ. Зейдлеръ-ВинклеръЗейдлеръ-ВинклерЗейдлеръ-ВинклераAlbert MüllerAlfred HelmCarl GrunowAlbert Morrison (2)Charles Green (23)Signor Francisco (2)Orchester Bruno Seidler-WinklerBlasorchester B. WinklerGrammophon-TrioKlein Ensemble o.l.v Seidler-Winkler + +828587Helmut MüllerClassical bassoonist.CorrectHelmuth MüllerBläserquintett Des Südwestfunks, Baden-BadenSüdwestdeutsches Kammerorchester + +828589Karl ArnoldClassical hornist. +father of [a1316688]Needs VoteK. ArnoldK. Arnold, HornBläserquintett Des Südwestfunks, Baden-BadenSüdwestdeutsches KammerorchesterKammermusik-Ensemble Baden-BadenOrchester Des 35. Deutschen Bachfestes + +828591Kraft-Thorwald DillooClassical flautist.Needs VoteK. T. DillooKarft-Thorwald DilooKraft Thorwald DilloKraft Thorwald DillooKraft Thorwald DilooKraft-Thorwald DilloKraft-Thorwald DilooBläserquintett Des Südwestfunks, Baden-BadenSüdwestdeutsches Kammerorchester + +829342Bill Hicks (2)Trumpet player + +Do not confuse with [a=Billy Hicks]Needs Votehttps://www.facebook.com/bill.hicks.92560William HicksHarry James And His OrchestraThe California State University, Northridge Jazz EnsembleHarry James And His Big BandThe Los Angeles City College Jazz Band + +829343Nelson HindsAmerican trombonistNeeds VoteWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdWoody Herman And The Thundering HerdFred Hess Big BandThe H2 Big Band + +829355Jim DanielsTrombone player.Needs VoteJ. DanieleWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdThe Tony Gairo-Gary Rissmiller Jazz OrchestraWoody Herman BandWoody Herman And The Thundering HerdThe Rob Stoneback Big Band + +829363Doug PurvianceDouglas PurvianceBorn in Turner Station, Maryland, on July 18, 1952 +Baltimore-born trombonist who moved to New York City and played bass trombone for the musical CATS for its entire eighteen year run on Broadway. He has worked with Stan Kenton, Robin Eubanks, Rich Perry, Renee Rosnes, Thad Jones, Alan Yankee, Dick Shearer, Roy Reynolds, Terry Layne, Mike Egan, and many others.Needs VoteDon PurvianceDoug PurvioneDouglas PervianceDouglas PurvianceLuv You Madly OrchestraStan Kenton And His OrchestraThe Carnegie Hall Jazz BandAfro-Latin Jazz OrchestraSam Rivers' Rivbea All-star OrchestraSlide Hampton And The World Of TrombonesThe Frank Wess OrchestraChristian McBride Big BandBill Warfield Big BandThe Vanguard Jazz OrchestraDizzy Gillespie All-Star Big BandJimmy Heath Big BandRobin Eubanks Mass Line Big BandBill Kirchner NonetChico & Rita New York BandGary Smulyan And BrassMike LeDonne's Big BandRon Carter's Great Big BandThe Dizzy Gillespie™ Alumni All-Star Big Band + +829379Pat CoilPatrick Cullen CoilNashville-based keyboard player, pianist and composerNeeds VoteP. CoilPat CollPat QualPatric C. CoilPatrick CoilRecoil (5)Woody Herman And His OrchestraWoody Herman & The New Thundering HerdThe Johnny Griffin QuartetWoody Herman BandErnie Watts QuartetWoody Herman And The Thundering HerdThe Lou Fischer Rehearsal BandNashville Jazz OrchestraThe Bob Draga Sextet & OrchestraThe Northwest Prevailing WindsJava Jazz (2)Pat Coil SextetToshi Clinch Big BandhighTIME (2)Mike Steinel Quintet1:00 O'Clock Lab BandMultiplayer Big Band + +829393Mike Ross (4)Michael RossMike Ross is a bass and tuba player, born 1946 in the state of Texas, USA, living in Portugal since 1976 + +Around 1970 bass player in the North Texas State University Lab Band +Graduated from the North Texas State University with a bachelor's degree in Music Theory +May 1974 - June 1975 bassist with the Stan Kenton Orchestra +1979 to 1985 tuba player with the Orquestra Sinfónica da RDP +1985 to 2012 Professor at the Conservatório Regional de Ponta Delgada, Azores, Portugal (subjects: musical education and contrabass), retired in 2012 + +[i]Collaborations:[/i] +Orquestra Clássica Francisco de Lacerda +Orquestra de Câmara de Ponta Delgada +Local musicians like [a3798161] and [a2048850] + +[i]Member:[/i] +Only Jazz QuartetNeeds VoteMichael RossStan Kenton And His OrchestraThe North Texas State University Lab BandOrquestra Sinfónica da RDPNorth Texas State University Concert Band1:00 O'Clock Lab Band + +829406Clay JenkinsAmerican jazz trumpeter +Born October 04, 1964 in Lubbock, TexasNeeds VoteC. JenkinsClay Jenkin'sCray JenkinsHarry James And His OrchestraThe Clayton-Hamilton Jazz OrchestraEastman Faculty Jazz QuartetSteve Houghton QuintetJim Widner Big BandDave Slonaker Big BandJohn La Barbera Big BandThe Bill Cunliffe SextetUniversity Of North Texas All-Star Alumni BandKim Richmond / Clay Jenkins EnsembleThe Jazz SurgeThe Bill Perkins Big BandKim Richmond Concert Jazz OrchestraStephen Guerra Big BandThe Joe La Barbera QuintetL.A. 6Mark Masters' Jazz OrchestraTrio EastDon Aliquo / Clay Jenkins QuintetThe Clay Jenkins QuartetAHA! QuintetCharles Pillow Large EnsembleAlan Ferber Bigband4 (13)1:00 O'Clock Lab BandNorthtet + +829429Dave ZeaglerJazz trumpeterNeeds VoteStan Kenton And His Orchestra1:00 O'Clock Lab Band + +829439Steve CamposTrumpet player. +performed with Stan Kenton, Woody Herman, Dr. John, Big Brother and the Holding Co., Boz Scaggs, Rosemary Clooney, Ray Brown's Big Band, Dave Eshelman's Jazz Garden, Full Faith and Credit, Rudy Salvini, and various other acts and bands.Needs VoteS. CamposStephen Anthony CampesStephen Anthony CamposSteven CamposStan Kenton And His OrchestraDave Eshelman's Jazz Garden Big BandNew Oakland Jazz OrchestraBlack Market Jazz Orchestra + +829528Primož ZalaznikClassical cellistNeeds VoteWiener SymphonikerFiasco (4)Simfonični Orkester RTV Slovenija + +829980Joaquín TurinaJoaquín Turina Pérez Spanish composer and pianist. +Born: December 9, 1882, Seville, Spain. +Died: January 14, 1949, Madrid, Spain.Needs Votehttp://www.joaquinturina.com/https://en.wikipedia.org/wiki/Joaqu%C3%ADn_Turinahttps://es.wikipedia.org/wiki/Joaqu%C3%ADn_Turinahttps://adp.library.ucsb.edu/names/103185J. Pérez TurinaJ. TurinaJ.TurinaJoachim TurinaJoachin TurinJoachin TurinaJoachín TurinaJoacquin TurinaJoaquIn TurinaJoaquim TurinaJoaquin TurinJoaquin TurinaJoaquin TuriñaJoaquín Perez TurinaJoaquín Turina PérezJuaquin TurinaTurinaTurina y Perez, JoaquinX. ТуринаИ. ТуринаХ. ТуринаХоакин Турина + +829982Alonso MudarraAlonso Mudarra[b]Born:[/b] c.1510 +[b]Died:[/b] April 1, 1580, Seville, Spain +Spanish composer, guitarist and vihuelist of the Renaissance. +CorrectA. De MudarraA. MudaraA. MudarraA. Mudarra (1546)A. de MudarraA.MudarraAffonson MudarraAlfonso De MudarraAlfonso MudarraAlfonso de MudarraAlonsio MudarraAlonsoAlonso De MudaraAlonso De MudarraAlonso MudurraAlonso de MudaraAlonso de MudarraAlonzo de MudarraAlsonso MudarraDe MudarraMudarraMudarra ⑵MuderraMundarraАлонсо Мударра + +830091Elmer SchoebelElmer SchoebelAmerican vaudeville and jazz pianist, composer and arranger born 8th September 1896, East St. Louis, Illinois, USA and died 14th December 1970, Saint Petersburg, Florida. + +Schoebel began his career tinkling the ivories to silent movies in Illinois. He then performed in variety and vaudeville in the early 1900s, becoming a member of various jazz bands and arranger for the Melrose Publishing House. + +A few of his compositions have become popular jazz standards over the years, such as "Bugle Call Rag" and "Nobody's Sweetheart Now". +Needs Votehttp://en.wikipedia.org/wiki/Elmer_Schoebelhttps://adp.library.ucsb.edu/names/104737Almer / SchoebelChoebelE SchaebelE SchoebelE. SchoebelE. SchoebellE. SchoenbelE. ShoebelE.SchoebelElmar SchoebelElmer - SchoebelElmer SchobelElmer Schoebel (N.C.)Elmer SchoebelsElmer SchoeberElmer SchoebleElmer SchöbelElmer ShoebelFroebleOmer SchoebelR. SchoebelS. ElmerSchachelSchaebelSchebelSchobbelSchobelSchoebalSchoebelSchoebel/ElmerSchoebellSchoebelsSchoeberSchoecleSchoelbelSchoelberScholberlSchorbelSchovelSchrebelSchroebelSchœbelScwoebelShoebelShoedelWillemetzШобельNew Orleans Rhythm KingsOriginal Memphis Melody BoysElmer Schoebel And His Friars Society OrchestraMidway Garden Orchestra + +830118Bruno CoquatrixFrench composer, conductor, instrumentist, born in Ronchin, Nord on August 5th, 1910 - died in Paris on April 1st, 1979 , buried in the famous Père Lachaise Cemetery. +He was owner of l'Olympia in Paris. +He was the mayor of Cabourg (Calvados) from 1971, until his death. +For half a century Coquatrix played a very influential role in the development of French chanson and variety theatre. +As manager of the 'Olympia' in Paris he succeeded to make it into one of the most famous music halls within Europe, promoting artists such as Georges Brassens, Gilbert Bécaud, Johnny Hallyday, Dalida, Édith Piaf, Yves Montand but also The Beatles in 1964.Needs Votehttp://en.wikipedia.org/wiki/Bruno_Coquatrixhttp://fr.wikipedia.org/wiki/Bruno_Coquatrixhttps://www.imdb.com/name/nm0178954/?ref_=nv_sr_srsg_0https://adp.library.ucsb.edu/names/360277A. CoquatrixB CoquatrixB, CoquatrixB. CaquatrixB. CoguatrixB. CoquatrixB. CozuatrixB.CoquatrixBert CoquatrixBruno Andre CoquatrixBruno André CoquatrixBruno CoduatruxBruno CoquartrixBruno CoquatrizCoQuatrixCogatrixCoouatrixCoquadrixCoquatriCoquatrixCoquatrix, B.M. Bruno CoquatrixP. CoquatrixQoquatrixR. CoquatrixБ. КатакриксБ. КокатриксGrand Orchestre De L'OlympiaOrchestre Bruno CoquatrixBruno Coquatrix Et Son Orchestre + +830168Jean RodorPierre Philippe Jean CoulonFrench author and singer +Born : April 26, 1881 (Sète) +Died : 1967 (Paris)Needs Votehttps://fr.wikipedia.org/wiki/Jean_Rodorhttps://adp.library.ucsb.edu/names/356648J. RedorJ. RoderJ. RodoeJ. RodorJ. Rodor,J. RoedorJ. rodorJ.RodorJean RoderJoseph RodorR. RodorRodaRoderRodorRodor J.S. RodorV. RodorЖ. РодуаJean Coulon + +830187Albert LasryAlbert Abraham LasryFrench pianist, orchestra leader and composerNeeds VoteA. A. LasryA. FlasryA. LafriA. LafryA. LagryA. LahsryA. LarsyA. LasnyA. LasriA. LasryA. LassryA. LastryA. レスリーA.A. LasryA.B. LasryA.LasryA.LasyAlb. LasryAlbert A. LasryAlbert Abraham LasryAlbert IasryAlbert LagryAlbert LarryAlbert LarsyAlbert LasnyAlberto LasryG. GershwinL. AlbertLarsy Albert AbrahamLasnyLasriLasryLasry, A.Lasry, AlbertLasrzyR. LasryPeter JerryJosé ZeinoAlbert Lasry Et Son OrchestreEnsemble Lasry-Chauliac + +830192Guy FavereauNeeds Votehttp://data.bnf.fr/fr/atelier/14838861/guy_favereau/C. FavereauFaverauFavereauFaverennG FavereauG. FavereauG. FavereuG. FaverlauG. FavreauG.FavereauGuy FavreauGuy Saureau + +830193Rudi RevilRudolph Henri WeilFrench songwriter, musician born in Strasbourg on May 19, 1916 and deceased on June, 1983.Needs Votehttps://adp.library.ucsb.edu/names/367835A. RevilDevilF. RevilJ. RevilPrevilR. ReuilR. RevilR. RévilR.RevilRenilRevelRevilRevillRuddy RevilRudi ReuilRudi RevelRudi ReviRudi RevillRudi RevilleRudi RévilRudi-RevilRudil RevilRudolf RevilRudolf RévilRudy RevilRudy RévilRévilRévil RudiRêvilRudolphe Henri WeilRudy Revil Et Son Orchestre + +830195Warren BarkerWarren Elbert BarkerAmerican composer, arranger and conductor for motion pictures and television. In his early stage, he also played reeds, e.g. with Woody Herman in Los Angeles in 1947. Attended University of California at Los Angeles and later studied composition with [a885845] and [a1223398]. +Born: April 16, 1923, Oakland, California - Died: August 3, 2006, Greenville, South Carolina +Often appears mis-credited as "Warren Baker". +Needs Votehttps://en.wikipedia.org/wiki/Warren_Barkerhttps://www.barnhouse.com/composer/warren-barker/https://www.imdb.com/name/nm0055005/https://www.allmusic.com/artist/warren-barker-mn0000194805/Arr. Warren BarkerBakerBarkerW. BarkerW. BarterW.BarkerWaarren BakerWaren BarkerWarren BakerWarren Barker, His Orchestra and ChorusWarren E. BarkerWarren N. BarkerWoody Herman And His OrchestraWarren Barker And His Orchestra + +830229Clarence Williams And His OrchestraNeeds VoteBandClarence And His OrchestraClarence WIlliams OrchestraClarence William's OrchestraClarence Williams & His Orch.Clarence Williams & His OrchestraClarence Williams & Orch.Clarence Williams And His OrchClarence Williams And His Orch.Clarence Williams And OrchestraClarence Williams BandClarence Williams OrchClarence Williams Orch.Clarence Williams OrchestraClarence Williams' BoysClarence Williams' Orch.Clarence Williams' OrchestraClarence Williams' OrchestreClarence Williams’ OrchestraOrchestre Clarence WilliamsThe Clarence Williams OrchestraEva Taylor And Her Boy FriendsLouis JordanRussell ProcopeBenny WatersFloyd CaseyEd AllenCecil ScottEd CuffeeCyrus St. ClairArville HarrisClarence WilliamsWillie "The Lion" SmithKing OliverJames Price JohnsonJimmy McLinRichard "Dick" FullbrightAlberto SocarrasLeroy Harris (2) + +830463Mario DelagardeUS upright bass/bass player & songwriter. +Often associated with [a=Rick Darnell].Needs VoteDe LagardeDeLa GardeDeLagardeDeLardeDeLogardeDelagardeDelegardeDelgardeDelgradeM DeLagardeM. De LagardeM. DeLagardeM. DelagardeM. DelargardeM. DelegardeM. DelegordeM. de LagardeMario De LaquardeMario DeLagardeMario DelegardeJohnny Otis And His OrchestraLittle Esther & The Blue Notes + +831046Tom McGuinnessThomas John Christopher McGuinnessBritish rock guitarist and bassist. Born Wimbledon, London, England 2 December 1941.Needs Votehttps://en.wikipedia.org/wiki/Tom_McGuinness_(musician)Mc GuinnessMc. GuinnessMcGuinessMcGuinissMcGuinnesMcGuinnessMcguinnessMeT. Mac GuinnessT. MacGuinnessT. Mc GuinessT. Mc GuinnessT. McGuinessT. McGuinnessT.J.C. McGuinnessT.M. GuinnessT.McGuinessThomas John Christ McGuinnessThomas McGuinnesTomTom Mac GuinessTom Mac GuinnessTom Mc. GuinessTom McGuinessTom McGuinnesManfred MannMcGuinness FlintCasey Jones And His EngineersThe Blues BandThe ManfredsStonebridge McGuinnessLyle McGuinness Band + +831254Bob Harris (3)SaxophonistCorrectJohnny Otis And His Orchestra + +831274Quinn WilsonQuinn Brown Wilson.American jazz bassist and tuba player. +Born : December 26, 1908 in Chicago, Illinois. +Died : June 14, 1978 in Evanston, Illinois. + +Quinn played with : [a825850], [a3935310], [a309976] (1927), [a1409386] (1928-'31), [a307237] (1929), [a257353] (1931-1939). +In the 1940s he began playing electric bass and started recording R&B and blues musicians, including : [a505220] and [a94557]. + + +Needs Votehttps://en.wikipedia.org/wiki/Quinn_Wilsonhttps://www.allmusic.com/artist/quinn-wilson-mn0000861991/biographyhttps://adp.library.ucsb.edu/names/114234Q. WilsonQuin WilsonQuinn B. WilsonQuinn R. WilsonQuinn, WilsonQuinn-WilsonWilsonJelly Roll Morton's Red Hot PeppersEarl Hines And His OrchestraKing Oliver & His OrchestraTiny Parham And His MusiciansFranz Jackson And His Original Jass All-StarsRichard Jones And His Jazz WizardsThe Apex All-StarsJim Mundy And His Swing Club Seven + +831276Paul Barnes (2)Paul BarnesAmerican jazz saxophonist and clarinetist player, nicknamed "Polo", November 22, 1901 in New Orleans , Louisiana, died April 13, 1981 in the same city. +Brother of [a=Emile Barnes]. +Needs Votehttps://en.wikipedia.org/wiki/Polo_BarnesBarnesP. BarnesPaul "Polo" BarnesPaul 'Polo' BarnesPaul BarnesPolo BarnesKing Oliver & His Dixie SyncopatorsJelly Roll Morton's Red Hot PeppersOriginal Tuxedo Jazz OrchestraJelly Roll Morton And His OrchestraPaul Barnes And His Polo PlayersChief John Brunious And His Mahogany Hall Stompers + +831560Alexa ZirbelClassical oboistNeeds VoteOrchestre symphonique de Montréal + +832013Jacques TysFrench oboist.Needs VoteOrchestre National De L'Opéra De ParisLes Musiciens De L'Opera, Paris + +832565A. G. GodleyJazz drummer, born Oct. 17, 1903 in Fort Smith, Arkansas, died February 1973 in Seattle. +Godley joined [a=Alphonso Trent]'s band at Muskogee, Oklahoma, in 1924 and, apart from short engagements with [a=Walter Page] (1929) and [a=Fate Marable] (1931), stayed with it until 1933. In 194-1941he recorded with small groups led by [a=Leo "Snub" Mosley], [a=Hot Lips Page], [a=Big Joe Turner] and [a=Pete Johnson]. +Godley's nickname in Trent's band was Ananias Garibaldi; this has sometimes erroneously been cited as his given name.Needs Votehttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-2000170300A. G. GoodleyA.G. GodleyA.G. GoodleyHot Lips Page And His OrchestraBig Joe Turner And His Fly CatsPete Johnson's BandGeorge E. Lee And His OrchestraAlphonso Trent And His OrchestraHot Lips Page And His BandSnub Mosley And His Orchestra + +832655Barbara HendricksBarbara HendricksAmerican-born Swedish operatic soprano, concert singer and human rights activist, born 20 November 1948 in Stephens, Arkansas, USA.Needs Votehttp://www.barbarahendricks.com/https://en.wikipedia.org/wiki/Barbara_Hendrickshttps://sv.wikipedia.org/wiki/Barbara_Hendrickshttps://www.bach-cantatas.com/Bio/Hendricks-Barbara.htmhttps://www.imdb.com/name/nm0376706/B. HendricksBarbara HendrickxHendricksバーバラ・ヘンドリックスBarbara Hendricks & Her Blues Band + +832661César FranckCésar Auguste Jean Guillaume Hubert FranckA Belgian composer, pianist, organist, and music teacher. +Born: 1822-12-10 (Liège, United Kingdom of the Netherlands) At present Liège, Belgium. +Died: 1890-11-08 (Paris, France).Needs Votehttps://en.wikipedia.org/wiki/C%C3%A9sar_Franckhttp://www.classical.net/music/comp.lst/franck.phphttps://www.britannica.com/biography/Cesar-Franckhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102595/Franck_CsarC FranckC FrankC. A. FranckC. A. FrankC. A. J. FranckC. FrancC. FranckC. FrancksC. FrankC. FrankasC. FrankckC. FranksC.A. FranckC.FranckC.FranksC.フランクCaesar FranckCe'sar FranckCesar A. FranckCesar FranchCesar FranckCesar FrankCesar-Auguste FranckCezar FrankCäsar FranckCæsar FranckCèsar FranchCèsar FranckCéasar FranckCécar FranckCésar Auguste FranckCésar Franck (P.D.)César Franck 1822-1890César FrankCésar-Auguste FranckCésar-Auguste FrankCésar-Auguste-Jean-Guillaume-Hubert FranckCézar FranckCêsar FranckCēsar FranckFrancFranckFranck C.Franck CésarFranck, CésarFrancsFrankFrank Cesar AugusteFrenkS. FranckS. FrankS. FrankasS.FranckSezārs FranksSēzars FranksΦρανκС. ФранкС.ФранкСезар ФранкСезарь ФранкФранкЦ. ФранкЦ. Франк (1822-1890)Цезар Франкセザール・フランクフランク法朗克 + +832688Vladimir FedoseyevВладимир Иванович ФедосеевSoviet / Russian conductor, People's Artist of USSR (1980). +Born: August 5, 1932, Leningrad, USSR +Conductor: +1957-1974 - [a1278118] +since 1974 - 1991 [a838295] +1997-2005 - [a696225] +1991-present - [a6012187]Needs Votehttp://en.wikipedia.org/wiki/Vladimir_Fedoseyevhttp://www.pittsburghsymphony.org/pghsymph.nsf/bios/Vladimir+FedoseyevDr. Wladimir FedosejewFedoseyevFedosseievFedosseyevMaestro Vladimir FedoseyevV. FedosejevV. FedoseyevV. FedossejewV. FédosséievViladimir FedoseevVladimir FedoseevVladimir FedoseievVladimir FedosejevVladimir FedosejewVladimir FedosevVladimir FedosseevVladimir FedosseiefVladimir FedosseievVladimir FedosseyevVladimir FedosseïevVladimir VedosseevVladimír FedosejevVlagyimir FedoszejevW. FedossejewW.FedosejewWladimir FedosejewWladimir FedossejewΒλαντιμίρ ΦεντοσέγιεφВ. ФедоеевВ. ФедосеевВ. ФедосєєвВ.ФедосеевВл. ФедосеевВладимир Иванович ФедосеевВладимир Федосеевウラジミール・フェドセーエフウラジーミル・フェドセーエフフェドセーエフWiener SymphonikerБольшой Симфонический Оркестр Всесоюзного РадиоОркестр Народных Инструментов Всесоюзного РадиоАнсамбль Народных Инструментов Под Управлением В. ФедосееваTchaikovsky Symphony Orchestra + +832737Joosep KõrvitsClassical cellistNeeds VoteEstonian National Symphony Orchestra + +832768Gianandrea NosedaItalian conductor, born 1964 in Milan, Italy.Needs Votehttp://www.gianandreanoseda.comhttps://it.wikipedia.org/wiki/Gianandrea_NosedaG. NosedaNosedaジャナンドレア・ノセダ + +832770Francesco CileaItalian composer and music pedagogue. He was born 23 July 1866 in Palmi, Italy and died 20 November 1950 in Varazze, Italy.Correcthttp://en.wikipedia.org/wiki/Francesco_Cileahttps://adp.library.ucsb.edu/names/102911A. ČileaCILEACileaCilea, FrancescoCilesCileáCiliaCilèaCiléaF CileaF. CeliaF. CilcaF. CileaF. CilleaF. CilèaF. CiléaF. ČileaFrancesco CilèaFrancesco CiléaFrancesko CilèaFranceso CilèaFrancisco CileaFranco CileaФ. ЧiлеаФ. ЧилеаФ. ЧілеаЧилеаЧілеаЧіліаチレア + +832899Walter KlienWalter KlienAustrian pianist (* November 27, 1928, in Graz, Austria; † February 10, 1991 in Vienna, Austria). +He is renowned for his recordings of the complete solo piano works and piano concertos of Mozart.Needs Votehttp://en.wikipedia.org/wiki/Walter_Klienhttps://www.musiklexikon.ac.at/ml/musik_K/Klien_Walter.xmlKlienW. KlienWalterWalter Kleinワルター・クリエン + +832900Wolfgang SchneiderhanWolfgang Eduard SchneiderhanAustrian violinist, born May 28th, 1915 in Vienna, where he died on May 18th, 2002. +In 1956 he founded the [a=Festival Strings Lucerne] with [a=Rudolf Baumgartner]. He was married to [a=Irmgard Seefried]. +Please don't confuse with [a3857213] who was Wolfgang Schneiderhan's older brother.Needs Votehttp://en.wikipedia.org/wiki/Wolfgang_Schneiderhan_%28violinist%29SchneiderhahnSchneiderhanW. SchheiderhanW. SchneiderhanW. SchneiderhannWOLFI (Schneiderhan)Wolfgang ScheiderhahnWolfgang ScheiderhanWolfi (Schneiderhan)Wolfi SchneiderhanВ. ШнайдерханВольфганг ШнейдерханDas Schneiderhan-QuartettEdwin Fischer Trio + +832905Martha ArgerichMaría Martha ArgerichBorn: 5 June 1941 in Buenos Aires, Argentina + +Argentine pianist [b]Martha Argerich[/b] is widely regarded as one of the greatest masters of the instrument of the late XX century. She was born in Buenos Aires to the family of Catalonian descendants and Jewish immigrants from the Russian Empire. Martha started playing the piano at the age of three and began her studies with Vincenzo Scaramuzza two years later. In 1949, an eight-year-old Argerich gave her debut concert. + +In 1955, Argerichs moved to Austria, so Martha began her studies with [a=Friedrich Gulda]. This opportunity was provided by [a=Juan Domingo Perón], the President of Argentina, who appointed her parents to diplomatic posts at the Argentinian Embassy in Vienna. Martha Argerich later studied with [a=Stefan Askenase] and had been coached briefly by [a=Madeleine Lipatti], [a=Abbey Simon], and [a=Nikita Magaloff]. + +At the age of sixteen, she won both Geneva International Music Competition and Ferruccio Busoni International Competition within three weeks of each other in 1957. Martha rose to international fame after winning the 7th International Chopin Piano Competition in Warsaw in 1965, at the age of 24, also debuting in the United States the same year. + +Argerich has been actively promoting younger pianists, both through her annual Argerich Music Festival and by appearing on a jury at various international competitions. When [a=Ivo Pogorelich] dropped out the third round of the International Chopin Piano Competition in 1980 in Warsaw, Argerich proclaimed him a genius and left the jury in protest. Some of her notable protégés include [a=Gabriela Montero], [a=Mauricio Vallina], [a=Sergio Tiempo], and [a=Christopher Falzone]. + +Since the 1980s, she has prioritized collaborative performance, frequently appearing with artists including pianist [a=Nelson Freire], cellist [a=Mischa Maisky], and violinist [a=Gidon Kremer]. + +Martha was married three times, to a Chinese composer and conductor Robert Chen (1963–1964), Swiss composer [a=Charles Dutoit] (1969–1973), and an American pianist [a=Stephen Bishop-Kovacevich] (the 1970s). She has a daughter from each husband: violist [a=Lida Chen], a journalist [a=Annie Dutoit], and a film director and photographer [a=Stéphanie Argerich].Needs Votehttps://web.archive.org/web/20120416185536/http://www.rsi.ch/argerich/https://www.facebook.com/profile.php?id=100044456858427https://www.britannica.com/biography/Martha-Argerichhttps://en.wikipedia.org/wiki/Martha_ArgerichArgerichM. ArgerichMartha AgerichМарта АргерихМарта Аргеричマルタ・アルゲリッチマルタ・アルゲリッチMartha Argerich And Friends + +832915Vladimir AshkenazyVladimir Davidovich Ashkenazy (Russian: Влади́мир Дави́дович Ашкена́зи, Vladimir Davidovich Ashkenazi)Russian-born Icelandic conductor and pianist, born 6 July 1937 in Gorky, Soviet Union (now Nizhny Novgorod, Russia). He has been a citizen of Iceland, the home of his wife Þórunn, since 1972. Father of [a=Dimitri Ashkenazy] and [a=Vovka Ashkenazy].Needs Votehttps://www.vladimirashkenazy.com/https://en.wikipedia.org/wiki/Vladimir_Ashkenazyhttps://philharmonia.co.uk/who-we-are/titled-artists/vladimir-ashkenazy/https://glatkistan.com/2019/05/09/vladimir-ashkenazy-1937/AshkenazyV. A.V. AshkenaziV. AshkenazyV. AskenaziV. AškenaziVladimirVladimir AschkenasyVladimir AsheknazyVladimir AshkenaziVladimir AskenaziVladimir AskenazyVladimir AskernaziVladimir AskénaziVladimir AszkenaziVladimir AškenaziVladimir AškenazijVladmir AshkenazyVładimir AshkenaziWladimir AschkenasiWladimir AschkenasyWladimir AschkenazyWladimir AshkenasyWladimir AshkenazyWladimir AszkenaziWładimir AshkenazyWładimir AszkenaziВ. АшкеназиВ. Д. АшкеназиВладимир Ашкеназиولادیمیر اشکنازیアジュケナージウラディーミル・アシュケナージヴラディーミル・アシュケナージヴラディーミル・アシュケナージRoyal Philharmonic OrchestraThe Czech Philharmonic OrchestraNHK Symphony Orchestra + +832916Robert ScheiweinAustrian cellist, born 26 May 1935 in Vienna, Austria and died 29 July 2011 in Vienna, Austria.CorrectR. ScheiweinR. ScheiweinOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterWeller-Quartett + +832917Bernard HaitinkBernard Johan Herman HaitinkDutch conductor and violinist. +Born: 4th March 1929 Amsterdam, Netherlands. +Died: 21st October 2021 London, England. +Chief conductor of the [a754894] from 1961 to 1988. Principal Conductor of the [a271875] from 1967 to 1979, Music Director of [a2644078] from 1978 to 1988 and Music Director of [a855061] from 1987 to 2002.Needs Votehttps://nl.wikipedia.org/wiki/Bernard_Haitinkhttps://en.wikipedia.org/wiki/Bernard_Haitinkhttps://www.concertgebouworkest.nl/en/bernard-haitinkhttps://401dutchdivas.nl/conductors/430-bernard-haitink-2.html?format=html&lang=enhttps://www.imdb.com/name/nm0354411/B. HaitinkBernard HaitingBernard Haitink KBEBernard Johan Herman HaitinkBernard MaitinkBernhard HaitinkHaitinkБ. ХайтингБ. ХайтинкБернард Хайтинкべナルト・ハイティンクハイティンクベルトルト・ハイティンベルナルト·ハイティンクベルナルト・ハイティンクベルナルト・ハイティングベルナルド・ハイティンクThe Chamber Orchestra Of Europe + +832924Alfred BrendelAlfred BrendelAlfred Brendel was an Austrian classical pianist, born January 5, 1931 in Vizmberk, Czechoslovakia (now Loučná nad Desnou, Czech Republic), and grew up in Zagreb, Yugoslavia (now Croatia), and Graz, Austria. He died June 17, 2025 in London, UK. He studied with [a922635] among others, and was mainly an interpreter of German speaking, classical composers ([a=Wolfgang Amadeus Mozart], [a=Joseph Haydn], [a=Franz Schubert], [a=Ludwig van Beethoven], [a=Franz Liszt], [a=Johannes Brahms]...). Father of [a1503786] and [a2417234].Needs Votehttps://www.thetimes.com/uk/obituaries/article/alfred-brendel-obituary-legendary-pianist-and-composer-7rll6ln3zhttps://www.alfredbrendel.com/https://en.wikipedia.org/wiki/Alfred_Brendelhttps://www.britannica.com/biography/Alfred-Brendelhttps://www.bach-cantatas.com/Bio/Brendel-Alfred.htmhttps://www.imdb.com/name/nm2732670/A. BrendelAlfred Brendel, PianoAlfred BrendlBrendelАлфред БрендлАльфред Брендель + +832926Günter WandGerman conductor, born 7 January 1912 in Elberfeld (today Wuppertal), Germany and died 12 February 2002 in Ulmiz, Switzerland.Needs Votehttps://en.wikipedia.org/wiki/G%C3%BCnter_Wandhttps://de.wikipedia.org/wiki/G%C3%BCnter_WandG. WandGuenter WandGuinter WandGunter WandWandWand, Günterギュンター・ヴァントGürzenich-Orchester Kölner PhilharmonikerNDR Sinfonieorchester + +832951Sir Charles MackerrasAlan Charles Maclaurin Mackerras AC CH CBEAmerican-born Australian conductor. + +Born November 17, 1925 in Schenectady, New York, USA +Died July 14, 2010 in London, England, UK + +He was long associated with the English and Welsh National Opera, and was the first Australian chief conductor of the Sydney Symphony Orchestra. He was an authority on the operas of Janáček and a renowned Czech classical music specialist. He was knighted in 1979.Needs Votehttps://en.wikipedia.org/wiki/Charles_Mackerrashttps://www.charlesmackerras.com/https://web.archive.org/web/20090225100028/https://www.philharmonia.co.uk/thephilharmoniaorchestra/sircharlesmackerras/https://web.archive.org/web/20031009113009/https://www.sonyclassical.com/artists/mackerras/https://web.archive.org/web/20070705084026/https://www.classicstoday.com/features/f1_0200.asphttps://www.bach-cantatas.com/Bio/Mackerras-Charles.htmhttps://www.theguardian.com/music/2010/jul/15/sir-charles-mackerras-obituaryhttps://www.imdb.com/name/nm0533431/C MackerrasC. MackerrasCh. MackerrasCharles Mac KerrasCharles MacKerrasCharles MackerasCharles MackerrasCharles McKerrasM. MackerrasMackerasMackerrasSir C. MackerrasSir Ch. MackerrasSir Charles MackarrasSir Charles Mackerras CBESir MackerrasSir. Charles MckerrasŠarl Makerasチャールズ・マッケラスRoyal Philharmonic Orchestra + +832962The Academy Of St. Martin-in-the-FieldsThe Academy of St Martin in the Fields (= ASMF) was founded in 1959 by [a=Sir Neville Marriner] and a group of London's leading orchestral players. Originally formed as a small conductorless string group, it spearheaded the 1960’s Baroque revival, and recorded and performed a rapidly expanding range of repertoire. +For chorus credits use [a835740].Needs Votehttps://www.asmf.orghttps://www.bach-cantatas.com/Bio/ASMF.htmhttps://en.wikipedia.org/wiki/Academy_of_St_Martin_in_the_FieldsASMFASMIFAcadamy Of St Martin-In-The-FieldsAcadamy Of St. Martin-In-The-FieldsAcadamy Of St. Martin-in-the-FieldsAcademia De ST. Martin-In-The-FieldsAcademia De St. Martin In The FieldsAcademia De St. Martin-In-The-FieldsAcademia De St. Martin-in-the-FieldsAcademia St. Martin In The FieldsAcademia de St. Martin-In-The-FieldsAcademia de St. Martin-in-the-FieldsAcademyAcademy Of St. Martin-in-the-FieldsAcademy And Chorus Of St Martin In The FieldsAcademy And Chorus Of St-Martin-in-the-FieldsAcademy And Chorus Of St. Martin In The FieldsAcademy O St. Martin-In-The FieldsAcademy Of St. Martin In The FieldsAcademy Of S. Martin In The FieldsAcademy Of Saint Martin In The FieldAcademy Of Saint Martin In The FieldsAcademy Of Saint Martin In the FieldsAcademy Of Saint Martin in the FieldsAcademy Of Saint Martin-In-The-FieldsAcademy Of Saint Martin-in-the-FieldsAcademy Of Saint-Martin-In-The-FieldsAcademy Of Saint-Martin-in-the-FieldsAcademy Of Sant Martin In The FieldsAcademy Of St Martin in the FieldsAcademy Of St Martin-In-The-FieldsAcademy Of St Martin In The FieldsAcademy Of St Martin In The Fields Wind EnsembleAcademy Of St Martin In The Fields*Academy Of St Martin In The FieldsAcademy Of St Martin In The FieldsAcademy Of St Martin In The FiieldsAcademy Of St Martin In The FiledsAcademy Of St Martin In the FieldsAcademy Of St Martin In-The-FieldsAcademy Of St Martin in The FieldsAcademy Of St Martin in the FieldsAcademy Of St Martin-In-The FieldsAcademy Of St Martin-In-The-FieldsAcademy Of St Martin-In-The-Fields OrchestraAcademy Of St Martin-In-the-FieldsAcademy Of St Martin-in-the FieldsAcademy Of St Martin-in-the-FieldsAcademy Of St Martin-in-the-fieldsAcademy Of St Martins-in-the-FieldsAcademy Of St-Martin-In-The FieldsAcademy Of St-Martin-In-The-FieldsAcademy Of St-Martin-in-the-FieldsAcademy Of St. Marin in the FieldsAcademy Of St. Marin-In-The-FieldsAcademy Of St. MartinAcademy Of St. Martin - In - The - FieldsAcademy Of St. Martin - in - the - FieldsAcademy Of St. Martin -In The Fields ChorusAcademy Of St. Martin In The FieldAcademy Of St. Martin In The FieldsAcademy Of St. Martin In The Fields Wind EnsembleAcademy Of St. Martin In the FieldsAcademy Of St. Martin In-the-FieldsAcademy Of St. Martin On The FieldsAcademy Of St. Martin in the FieldAcademy Of St. Martin in the FieldsAcademy Of St. Martin's In The FieldsAcademy Of St. Martin's-In-The-FieldsAcademy Of St. Martin-In The FieldsAcademy Of St. Martin-In-The FieldsAcademy Of St. Martin-In-The-FieldAcademy Of St. Martin-In-The-FieldsAcademy Of St. Martin-In-The-Fields OrchestraAcademy Of St. Martin-In-The-FierldsAcademy Of St. Martin-In-the-FieldsAcademy Of St. Martin-in-the FieldsAcademy Of St. Martin-in-the Fields OrchestraAcademy Of St. Martin-in-the-FieldAcademy Of St. Martin-in-the-FieldsAcademy Of St. Martin-in-the-Fields OrchAcademy Of St. Martin-in-the-Fields Orch.Academy Of St. Martin-in-the-Fields OrchestraAcademy Of St. Martin-in-the-Fields, LondonAcademy Of St. Martin-in-the-FieldsThe Academy Of St. Martin-in-the-FieldsAcademy Of St. Martin-in-the-fieldAcademy Of St. Martin-in-the-fieldsAcademy Of St. Martini In The FieldsAcademy Of St. Martinin The FieldsAcademy Of St. Martins In The FieldAcademy Of St. Martins-In-The-FieldsAcademy Of St. Martin~In~The~FieldsAcademy Of St. Martin~in~the~FieldsAcademy Of St. Martin·In·The·FieldsAcademy Of St. Martin·in·the·FieldsAcademy Of St. Martyn In The FieldsAcademy Of St.-Martin-In-The-FieldsAcademy Of St.-Martin-in-the-FieldsAcademy Of St.Martin In The FieldsAcademy Of St.Martin-In-The-FieldsAcademy Of St.Martin-in-the-FieldsAcademy Of St.Martin~In~The~FieldsAcademy Of St.Martin~in~the~FieldsAcademy Of. St. Martin-in-the-FieldsAcademy Saint Martin In The FieldsAcademy St. Martin In-The-FieldsAcademy St. Martin In-the-FieldsAcademy St. Martin-In-The-FieldsAcademy St. Martin-in-the FieldsAcademy St. Martin-in-the-FieldsAcademy St. Martins In The FieldsAcademy and Chorus of St Martin-in-the-FieldsAcademy of Saint Martin in the FieldsAcademy of Saint Martin-in-the-FieldsAcademy of St Martin In The FieldsAcademy of St Martin in the FieldsAcademy of St Martin in the Fields*Academy of St Martin-in-the-FieldsAcademy of St Martin-in-the-fieldsAcademy of St. Martin In The FieldsAcademy of St. Martin in The FieldsAcademy of St. Martin in the FieldAcademy of St. Martin in the FieldsAcademy of St. Martin in the Fields OrchestraAcademy of St. Martin-In-The-FieldsAcademy of St. Martin-in-ihe-FieldsAcademy of St. Martin-in-the FieldsAcademy of St. Martin-in-the-FieldAcademy of St. Martin-in-the-FieldsAcademy of St. Martin·in·the·FieldsAcademy of St. Martin•in•the•FieldsAcademy of St.Martin-in-the-FieldsAcadémie De Saint-Martin-des-ChampsAcadémie Of Saint-Martin In The FieldsAcadémie Of St. Martin-in-the-FieldsAcadémy Of Saint Martin In The FieldsAkademy Of St Martin In The FieldsAsmifChamber EnsembleChor Und Orchester der Academy Of St. Martin in the FieldsChorus & Academy Of Saint Martin-In-The-FieldsChorus And Orchestra Of The Academy Of St. Martin-in-the-FieldsChœur & Academy Of St. Martin In The FieldsDe Weergaloze Academy Of St. Martin-in-the-FieldsEnsemble De Chambre De L'Academy Of St. Martin-in-the-FieldsEnsemble De The Academy Of St. Martin In The FieldsLa Academia De St. Martin-in-the-FieldsMembers Of The Academy Of St. Martin-in-the-FieldsMiembros De La Academy Of St Martin-In-The-FieldsMitglieder Der Academy Of St. Martin In The FieldsMitglieder der Academy Of St. Martin-in-the-FieldsOrchester Academy Of St. Martin-in-the-FieldsOrchestraOrchestra De Cameră „Academy Of St. Martin In The Fields”Orchestra St. Martin-in-the-FieldsOrchestra of the Academy of St Martin in the FieldsOrchestreOrchestre De L'Académie Saint-Martin-In-The-FieldsOrchestre De L'Acedemie Saint-Martin-in the-FieldsOrquesta Academy Of St. Martin-in-the-FieldsOrquesta De La Academia De San Martín En Los CamposOrquesta De La Academia De St. Martin-In-the-FieldsOrquestra Da Academia De Saint Martin-In-The-FieldsSt Martin In The FieldsSt. Martin's AcademySt. Martin-in-the-FieldsSt. Martin-in-the-Fields AcademyStrings Of The Academy Of St. Martin-in-the-FieldsThe AcademyThe Academy And Academy Chorus Of St. Martin In The FieldsThe Academy And Chorus Of St Martin-in-the-FieldsThe Academy And Chorus Of St. Martin-In-The-FieldsThe Academy And Chorus Of St. Martin-in-the-FieldsThe Academy Of Saint Martin In The FieldsThe Academy Of Saint Martin-in-the-FieldsThe Academy Of Saint-Martin In The FieldsThe Academy Of Saint-Martin-In-The-FieldsThe Academy Of St Martin In The FieldsThe Academy Of St Martin In The Fields Chamber EnsembleThe Academy Of St Martin in the FieldsThe Academy Of St Martin-In-The-FieldsThe Academy Of St Martin-in-the-FieldsThe Academy Of St-Martin In The FieldsThe Academy Of St-Martin-In-The-FieldsThe Academy Of St-Martin-in-the-FieldsThe Academy Of St. Martin In The FieldsThe Academy Of St. Martin In The Fields ChorusThe Academy Of St. Martin in The Fields,The Academy Of St. Martin in the FieldsThe Academy Of St. Martin's In The FieldsThe Academy Of St. Martin-In-The-Field Orchestra And ChorusThe Academy Of St. Martin-In-The-FieldsThe Academy Of St. Martin-in-the-FieldThe Academy Of St. Martins In The FieldsThe Academy Of St.Martin In The FieldsThe Academy Of St.Martin-in-the-FieldsThe Academy Saint-Martin-In-The-FieldsThe Academy Saint-Martin-in-the-FieldsThe Academy and Chorus Of St. Martin-in-the-FieldsThe Academy of Saint Martin-in-the-FieldsThe Academy of St Martin In The FieldsThe Academy of St Martin in the FieldsThe Academy of St. Martin-in-the-FieldsThe OrchestraThe Orchestra Of The Academy Of St. Martin In The FieldsThe Orchestra and Choir of The Academy Of St Martin in the Fieldsmy Of St Martin in the FieldsАкадемия Св. МартинаАкадемия Св. Мартина В ПоляхАкадемия Святого Мартина В ПоляхАкадемия Святого Мартина в поляхАнглийский камерный оркестр "Академия Святого Мартина в полях"Камерный Оркестр Academy Of St. Martin-in-the-FieldsКамерный Оркестр Академии Св. МартинаОркестар Академије St. Martin-in-the-FieldsОркестр "Академия Св. Мартина В Полях"Оркестр "Академия Св. Мартина-В-Полях"Оркестр "Академия Св. Мартина-в-Полях"Оркестр "Академия св. Мартина-В-Полях"Оркестр «Академия Св. Мартина В Полях»Оркестр «Академия Св. Мартина-В-Полях»Оркестр Академии Св. Мартина-в-поляхОркестр Академии св.Мартина в поляхОркестр Академия Св. Мартина-в-ПоляхОркестр Церкви Св. МартинаОркесть «Академиа Св. Мартина-В-Полях»Хор Церкви Св. Мартинаアカデミー・オブ・セント・マーティン・イン・ザ・フィールズアカデミー室内管弦楽団アカデミー・オブ・セント・マーティン・イン・ザ・フィールズネヴィル・マリナー指揮Francis GrierSimon PrestonJack BrymerChris LaurenceLeon BoschJulian TearTristan FryGavin McNaughtonChris Cowie (2)Jonathan TunnellJeremy MorrisRoger Smith (3)Simon FergusonJohn WilbrahamTrevor ConnahSkaila KangaMike De SaullesMartin LovedayBob SmissenRoger GarlandElspeth CoweyDavid WoodcockRoy GillardJames TylerIona BrownNick BarrKlaus ThunemannAndrew ShulmanElizabeth EdwardsEdward HobartDouglas MacKieMartin BurgessSusan KnightPaul MosbyDave Stewart (2)Susan BradshawRachel BoltDavid AlbermanJosephine KnightRobert SalterRichard StudtLynda HoughtonJohn HeleyCecil JamesAndrew MarrinerMatthew SouterTimothy GrantJudith HerbertNaomi ButterworthDavid MunrowHarvey De SouzaGeorge MalcolmViktoria MullovaCatherine MorganMichael Chapman (4)Alan LovedayRaymond KeenlysideAndrew McGeeJonathan StrangeRichard Skinner (2)Catherine BradshawJoshua BellRoger SmalleyAndrew DavisFiona BondsWilliam SchofieldHelen PatersonJames HollandPatricia CalnanIan RathboneDarrell KokJeremy Williams (2)Amanda SmithStephen OrtonAnthony ChidellRoger LordRichard Taylor (2)Roger HarveyRobert AtchisonDiane ClarkJohn ConstableRoderick SkeapingChristopher HogwoodLeslie PearsonMark DavidNicky BaxterEnrico AlvaresRichard BlaydenNicole Wilson (2)Carmine LauriMaxine KwokNicholas KraemerNeil Black (3)Carmel KaineRonald ThomasMargaret MajorWilliam O'SullivanSir Neville MarrinerAnthony RooleyWilliam Bennett (3)Graham CracknellFelix WarnockRaymond LeppardHenryk SzeryngAnthony Howard (2)Sylvia RosenbergRoger BirnstinglThomas GoffBarry TuckwellDiana CummingsJohn Gray (7)David Gray (6)Hugh MaguireMalcolm LatchemDenis VigayMichael Laird (2)Don SmithersThurston DartColin TilneyOsian EllisDesmond DupréGranville JonesPhilip LedgerStephen CleoburyAntony PayJennifer Ward ClarkeMark ButlerAlastair BlaydenGerald RuddockKathryn SaundersKenneth SillitoTimothy Brown (2)Martin GattRichard West (3)Graeme McKeanMats LidströmRobert Spencer (2)John Turner (5)Laszlo HeltaySusan DentKenneth HeathTimothy Jones (3)Kenneth SkeapingClaude MonteuxHale HambletonCelia NicklinRebecca LowJennifer GodsonBriony ShawClaire MilesMiranda PlayfairBarry DavisPaul MarrionStephen StirlingElisabeth SelinMichala PetriJan SchmolckSimon Smith (6)Stephen ShinglesGraham SheenJohn Langdon (2)Eleanor MathiesonMichael Cox (3)Matthew Ward (3)Colin HortonPaul Davies (8)Anna Maria CotogniJaime MartínAndrew LucasPauls EzergalisElizabeth LaytonWilliam HoughtonSusan LeadbetterFederico AgostiniJohn ChurchillGerald JarvisMaurice HassonBrian RunnettTerence WeilJo ColeJacqueline HartleyMartin HumbeyLucy GouldJulia BarkerHelena SmartRebecca Scott (2)Stuart KnussenCharmian GaddTimothy BoultonNicholas Thompson (2)Michael Murray (6)Gabrielle PainterRobin KennardAnthony JenkinsThomas Martin (5)Judith BusbridgeJohn SteerJulian FarrellDuncan Ferguson (2)Alan CuckstonMichael MeeksFiona BrettMiya IchinoseSimon StreatfeildNicholas Cox (2)Lenore SmithRaymund KosterJulian Baker (4)Joanna HenselColin Sauer (2)Marilyn TaylorJessica O'LearyMichael Evans (12)Trevor WyePatricia LyndenNorman Nelson (3)Ian Hampton (2)Cara BerridgeLorna McGheeWinona FifieldNia HarriesRachel IngletonRicardo ZwietischAmanda TrueloveErnest Scott (2)Eric Pritchard (2)Markus Van HornNicolas KraemerKatie StillmanTomo KellerAlicja ŚmietanaTom LesselsPeter SulskiRaja HalderAlexandros KoustasCathy Elliott (2)James Burke (9)Tom BlomfieldDavid TakenoEmily HultmarkLaura JellicoeMilena SimovicKenneth Essex (2) + +832988Panama FrancisDavid Albert FrancisAmerican swing jazz drummer, born 21 December 1918 in Miami, Florida, died 13 November 2001 in Orlando, Florida, USA. David "Panama" Francis, legendary drummer noted for a career remarkable for its longevity—dating from Harlem jazz spots of the 1930's to Hollywood movie sets of the 1990's.Needs Votehttps://en.wikipedia.org/wiki/Panama_Francishttps://adp.library.ucsb.edu/names/316094https://www.allaboutjazz.com/musicians/panama-francis/"Panama" FrancisD. FrancisD.A. FrancisDave "Panama" FrancisDave 'Panama' FrancisDave (Panama) FrancisDave FrancisDavid "Panama" FrancisDavid ''Panama' FrancisDavid 'Panama' FrancisDavid A. "Panama" FrancisDavid A. 'Panama' FrancisDavid FrancisDavid Panama FrancisFrancisMorris Panama FrancisP. FrancisPanamaPanama FrankParama FrancisWoody Herman And His OrchestraLucky Millinder And His OrchestraRoy Eldridge And His OrchestraLionel Hampton And His All-Star Alumni Big BandThe Panama Francis' BandThe Woody Herman Big BandWoody Herman And His Third HerdPanama Francis And His OrchestraEmmett Berry SextetPanama Francis And The Savoy SultansJohnny Letman QuartetArnett Cobb Tiny Grimes QuintetFranz Jackson And His JacksoniansThe Eddie Barefield SextetPanama Francis QuintetBeulah Bryant's Thin MenPanama Francis And His Dixie Don JuansPanama Francis All StarsPanama Francis Blues BandJohnny Letman Quintet + +832989Bruno WalterBruno Schlesinger-WalterGerman-born pianist, composer, and conductor. + +Born September 15, 1876 in Berlin, Germany. +Died February 17, 1962, Beverly Hills, California, USA (aged 85). + +He moved to Austria, then France, then settled in the US in 1939. +He has led such orchestras as Vienna State Opera, Bavarian State Opera, Deutschen Oper Berlin, Gewandhausorchester Leipzig, Chicago Symphony Orchestra, Los Angeles Philharmonic Orchestra, ... He also collaborated closely with Gustav Mahler, and was friend with German writer Thomas Mann.Needs Votehttps://en.wikipedia.org/wiki/Bruno_Walterhttps://web.archive.org/web/*/https://www.bwdiscography.com/https://web.archive.org/web/*/https://www.bwdiscography.net/https://web.archive.org/web/20031003012010/https://www.sonyclassical.com/artists/walter/https://www.sonyclassical.com/artists/artist-details/bruno-walterhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/101978/Walter_BrunoB. ValterisB. WalterB.WalterBr. WalterD. WalterDr. Bruno WalterDr. WalterGeneralmusikdirector Bruno WalterM. Bruno WalterWalterWalter BrunoБ. ВальтерБруно Вальтерブルーノ・ワルターワルターBritish Symphony Orchestra (2) + +832992Evgeni SvetlanovЕвгений Фёдорович Светланов (Anglicised: Evgeny Fedorovich Svetlanov)Soviet / Russian conductor, composer and pianist. People's Artist of USSR (1968). Hero of Socialist Labor (1986). Lenin Prize (1972) and the USSR State Prize (1983). +Born: 6 September 1928, Moscow, USSR +Died: 3 May 2002, Moscow, Russia +Transliteration in Cyrillic - [i]Евгений Светланов[/i] +Principal conductor & artistic director of: +[a1351876] (1963-65 principal conductor) +[a805380] (1965-2000 principal conductor & artistic director) +[a970420] (1992-2000 principal conductor) +First wife Larisa Avdeeva = [a1737779] (1925-2013), opera singer, People's Artist of the RSFSR. Son Andrey (born 1956). +Second wife [a2042870] (Nikolaeva) (died September 18, 2019) - pianist, teacher, journalist.Needs Votehttps://en.wikipedia.org/wiki/Yevgeny_Svetlanovhttps://www.svetlanov-evgeny.com/E. SvetlanovE. SwietłanowE. СветлановE.SvetlanovEugen SvetlanovEugene SvetlanovEugeniy SvetlanofEugeny SvetlanovEvgenii SvetlanovEvgenii SvetlanowEvgenij SvetlanovEvgeny SvetlanovEvgheni SvetlanovEvguenei SvetlanovEvgueni SvetlanovEvgueny SvetlanovEvguéni SvetlanovEvguéni SvétlanovEvguény SvetlanovI. SwetlanowIgor SwetlanowJ. SvetlanovJ. SwetlanovJ. SwetlanowJ. SzvetlánovJevgeni SvetlanovJevgenij SvetlanovJevgenij SvjetlanovJevgenij SvětlanovJevgeny SvetlanovJevgenyij SzvetlanovJevghjenij SvjetlanovJewgeni SvetlanovJewgeni SwetlanowJewgeni SwtlanowJewgenii SwetlanowJewgenij Fedorowitsch SwetlanowJewgenij SvetlanovJewgenij SvetlanowJewgenij SwetlanovJewgenij SwetlanowJewgeny SvetlanovJewgeny SwetlanowSvetlanovSwetlanowY. SvetlanovYe. SvetlanovYeugeni SvetlanovYeugeny SvetlanovYevegi SvetlanovYevgeni SvetlanovYevgeni Svetlanov = Евгений СветлановYevgeni SwetlanowYevgeny SvetlanovYevgeny SvetlatlovYevgeny SvietlanovYevgni SvetlanovYevgueny SvetlanovYvgeny SvetlanovЈевгениј СветлановЕ. СветлановЕ. Ф. СветлановЕ.СветлановЕ.Ф.СветлановЕвг.СветлановЕвгений СветлановЕвгений Фёдорович СветлановЕвегений СветлановК. ЗандерлингСветлановエフゲニー・スヴェトラーノフSveriges Radios SymfoniorkesterRussian State Symphony OrchestraResidentie OrkestBolshoi Theatre OrchestraBolshoi Theatre + +833014Michel CorbozMichel Jules CorbozSwiss conductor, born on February 14, 1934 in Marsens, Switzerland, died on September 2, 2021 in Glion, Switzerland, aged 87.Needs Votehttps://de.wikipedia.org/wiki/Michel_Corbozhttps://en.wikipedia.org/wiki/Michel_Corbozhttps://www.imdb.com/name/nm0179277/CorbozM. CorbozMichael Corbozミシェル・コルボEnsemble Vocal De Lausanne + +833027Horacio GutiérrezCuban-American classical pianist, born 28 August 1948 in Havanna, Cuba.CorrectGuiterrezHoracio GutierrezHoratio GutierresГ. ГутьерресГорацио Гутьеррес + +833031Hélène GrimaudFrench classical pianist, born November 7th, 1969, in Aix-en-Provence, France. +At the age of 21, she settled down in Tallahassee, Florida. +Co-founder with the photographer John Henry Fair of the Wolf Conservation Center in South Salem, NY. +She lives now in Berlin and in Switzerland.Needs Votehttp://helenegrimaud.free.fr/http://www.helenegrimaud.com/https://www.facebook.com/helenegrimaudhttps://www.instagram.com/helene.grimaud/https://en.wikipedia.org/wiki/Hélène_GrimaudGrimaudHelene Grimaudエレーヌ・グリモーエレーヌ・グリモー + +833038Evgeny MravinskyЕвгений Александрович Мравинский(in English: Yevgeny Aleksandrovich Mravinsky) +Renowned Russian conductor of the Soviet era, and a nephew of soprano Yevgeniya Mravina. From 1938 until 1988 he was principal conductor of the [a343871]. +Born: June 4 (May 22 O.S.), 1903, Saint Petersburg +Died: January 19, 1988, Leningrad +His name can also be transliterated as Evgenij Mravinskij or Jewgeni Mrawinski, among others. +Needs Votehttp://www.mravinsky.org/http://ru.wikipedia.org/wiki/Мравинский,_Евгений_Александровичhttp://en.wikipedia.org/wiki/Yevgeny_MravinskyE. A. MravinskyE. MavrinskyE. MravinskiE. MravinskisE. MravinskyE. MrawinskiE. MrawinskyE. МravinskyE.A. MravinskyE.MravinskyEugen MavrinskyEugen MravinskyEugen MrawinskyEugene Alexandrovitch MravinskyEugene MravinskiEugene MravinskyEugene MrawinskijEugene MrawinskyEugeni MravinskiEugène MravinskiEugène MravinskyEvgeni MravinskiEvgeni MravinskyEvgenij MravinskyEvghenij MravinskijEvghenyij MravinskijEvgueni MravinskiEvgueni MravinskyEvgueni MravnksiEvgueny MravinskyEvguéni MravinskiEvgveni MravinskyEvgény MravinskiEwgenij MrawinskijF. MravinskiF. MravinskyJ. A. MravinskijJ. MravinskijJ. MravinskisJ. MrawinskiJe. MravinskyJevgeni MravinskyJevgenij MravinsijJevgenij MravinskijJevgenil MravinskiJevgeny MravinskyJevgeny MrawinskyJevgenyij MravinszkijJevginij MravinskijJewgeni MrawinskiJewgenij MravinskijJewgenij MravinskyJewgenij MrawinskiJewgenij MrawinskijJewgenij MrawinskyJewgenil MravinskiJewgenil MravinskyJewgenil MrawinskiJewgenil MrawinskyJewgeniy MrawinskiyJewgeny MrawinskiJewgeny MrawinskyMravinskiMravinskyMravinsky, EvgenyMravinszkijMrawinskijMrawinskyY. MravinskyYe. MravinskyYeugeni MravinskiYeugeni MravinskyYeugeny MravinskyYevgeni MravinskyYevgeni MravinskyYevgeny Alexandrovich MravinskyYevgeny MravinskYevgeny MravinskiYevgeny MravinskyYewgenij MrawinskijЕ. MravinskyЕ. MrawinskiЕ. А. МравинскийЕ. МrawinskiЕ. МравинскийЕвгений Александрович МравинскийЕвгений МравинскийМравинскийLeningrad Philharmonic Orchestra + +833068Igor OistrachИгорь Давидович ОйстрахIgor Davidovich Oistrakh (Oistrach) (April 27, 1931, Odessa, USSR - August 14, 2021, Moscow, Russia). Soviet and Russian violinist, conductor and teacher. Honored Artist of the RSFSR (1968), People's Artist of the RSFSR (1978), People's Artist of the USSR (1989). Son of [a834646].Needs Votehttps://en.wikipedia.org/wiki/Igor_Oistrakhhttps://ru.wikipedia.org/wiki/Ойстрах,_Игорь_Давидовичhttps://100philharmonia.spb.ru/persons/19164/https://www.belcanto.ru/oistrakh_igor.htmlhttps://ruspanteon.ru/ojstrah-igor-davidovich/https://www.kino-teatr.ru/kino/acter/m/star/266964/bio/I.I. OistrachI. OistrakhI. OjstrachI. OjsztrahIgorIgor Davidovič OistrachIgor OistraKhIgor OistrachovéIgor OistrakhIgor OjstrachIgor OjsztrahIgor OystrajIgor OïstrakhOistrachOistrakhИ. ОйстрахИ.ОйстрахИгорьИгорь Ойстрахイーゴリ・オイストラフ依齊·奧依斯特拉哈Igor Oistrakh Trio + +833070Hilde Rössel-MajdanHildegard Rössel-MajdanAustrian Contralto, Alto and Mezzo-soprano vocalist +b: January 21, 1921 in Moosbierbaum, Austria, +d: December 15, 2010 in Vienna, Austria. +Needs Votehttp://www.bach-cantatas.com/Bio/Rossl-Majdan-Hilde.htmhttps://de.wikipedia.org/wiki/Hilde_Rössel-MajdanH. Rössel-MajdanH. Rössi-MajdanH. Rössl-MajdanH.Rössel-MajdanHilda Rösslová-MajdanováHilde Roessel-MajdanHilde RoesslHilde Roessl-MajdanHilde Rossel-MajdanHilde Rossel-NajdanHilde Rossi-MajdanHilde Rossl-MajdanHilde RösselHilde Rössel - MajdanHilde Rössel MajdanHilde Rössel-MadjdanHilde Rössi-MadjanHilde Rössl-MadjanHilde Rössl-MajdanHilde Rößl-MajdanHildegard Roessel-MadjdanHildegard Roessel-MajdanHildegard Roessl-MajdanHildegard Rossel-MajdanHildegard Rossl-MajdanHildegard Rössel-MajdanHildegard Rössl MajdanHildegard Rössl-MajdanHildegarde Kessel MajdanHildegarde Rossel-MajdanHildegarde Rösl-MajdanHildegarde Rössel-MajdanHilede Rossl-MajdanHinde Rössel-MajdanRoessel-MajdanRossel-MajdanRösl-MajdanRössel-MajdanRössl-MadjanХильда Рёссл-МайданCast Of 'Der Rosenkavalier', Torino, 22 February 1957Singers Of 'Der Rosenkavalier', Torino, 22 February 1957 + +833071Walter BerryWalter BerryAustrian bass & baritone vocalist. Born 8 April 1929 in Vienna, Austria, where he died on 27 October 2000. Former spouse of [a=Christa Ludwig] and father of [a=Marc Berry].Needs Votehttp://en.wikipedia.org/wiki/Walter_Berry_%28bass-baritone%29https://de.wikipedia.org/wiki/Walter_Berryhttp://www.omm.de/feuilleton/henschel-walter-berry.htmlBerryBerry*W. BerryW.BerryWalter BarryWalther BerryВальтер БерриУолтер Берриワルター・ベリーWiener Akademie Kammerchor + +833073Waldemar KmenttAustrian operatic tenor, born 2 February 1929 in Vienna, Austria and died 21 January 2015 in Vienna, Austria.Correcthttp://www.bach-cantatas.com/Bio/Kmentt-Waldemar.htmhttp://en.wikipedia.org/wiki/Waldemar_KmenttK. KmenttKmenntKmenttValdemar KmentW. KmenttW.KmenttWald. KmenttWaldemar KmenntWaldemar KmentWaldemar Kmentt Mit ChorWaldemar KrenttWalderman KmenttWaldermar KmenttВ. КментВальдемар Кменттワルデマール・クメントWiener Akademie Kammerchor + +833074Otto GerdesGerman conductor and producer. He was born 20 January 1920 in Cologne, Germany and died 15 June 1989. +Married to [a1043545].Needs Votehttp://en.wikipedia.org/wiki/Otto_GerdesGerdesΌττο ΓκέρντεςОтто Гердесオットー・ゲルビス + +833075Wiener SingvereinSingverein der Gesellschaft der Musikfreunde in WienThe Vienna Singverein (Wiener Singverein) is the concert choir of the [l323680]. Needs Votehttp://www.singverein.at/"Der Singverein Der Gesellschaft Der Musikfreunde", Wien'Der Singverein Der Gesellschaft Der Musikfreunde' ViennaAgrupación Coral De VienaAmici Della MusicaAsociacion Coral De VienaAsociación Coral De VienaAsociación De Cantores De Amigos De La Musica, De VienaAsociación De Cantores De La Sociedad De Los Amigos De La Música De VienaBécsi FiúkórusCantores De VienaCantores De VienoCantores de VienaCheorude la Société des Amis de la musique de VienneCheours Du "Singverein" De BerlinChoers Du Singverein De VienneChoeur Du "Singverein" De VienneChoeur SingvereinChoeur Wiener SingvereinChoeur du Singverein de VienneChoeurs De La Société Des Amis De La MusiqueChoeurs Du "Singverein" De VienneChoeurs Du Singverein De VienneChoeurs Du Singverein Du VienneChoeurs Du Singverein de VienneChoeurs Singverein De VienneChoeurs Symphonique De VienneChoeurs de la Société symphonique de VienneChoir Of The Vienna Society Of Friends Of MusicChor D. Singver. D. Ges. D. MusikfreundeChor Der Gesellschaft Der Musikfreunde WienChor Der Gesellschaft Der Musikfreunde, WienChor Der Gesellschaft Für Musikfreunde, WienChor Der Wiener SingakademieChor der Musikfreunde WienChor der Wiener SingakademieChoral Society Of The Friends Of Music, ViennaChoral Society of the Friends of Music, ViennaChorusChorus And Orchestra Of The Society Of The Friends Of Music, ViennaChorus Gesellschaft Der Musikfreunde, ViennaChorus Of The Gesellschaft Der Musikfreunde, ViennaChorus Of The Society Of Friends Of Music In ViennaChorus Of The Society Of The Friends Of MusicChorus Of The Society Of The Friends Of Music In ViennaChorus Of The Society Of The Friends Of Music, ViennaChorus Of The Vienna SingvereinChorus Of Vienna SingvereinChorus ViennensisChorus of the Society of Friends of Music, ViennaChœur De La Société Des Amis De La Musique De VienneChœur Des Chanteurs Tchèques, PragueChœur Du "Singverein" De VienneChœur Du SingvereinChœur Du Singverein De VienneChœur Singverein Der Gesellschaft Der Musikfreunde, VienneChœur Symphonique De VienneChœur des Amis de la Musique de VienneChœur du Singverein de VienneChœurs De La Société Des Amis De La Musique De VienneChœurs Du "Singverein" De VienneChœurs Du Singverein De VienneChœurs Du Singverein de VienneChœurs Du Wiener SingvereinChœurs Du “ Singverein ” De VienneChœurs du Singverein de VienneCoral de la Agrupación "Amigos de la Música"CoroCoro Del Singverein De VienaCoro Della Società Degli Amici Della Musica Di ViennaCoro Della Società Degli Amici Della Musica di ViennaCoro SingvereinCoro Singverein DI ViennaCoro Singverein De VienaCoro Singverein Di ViennaCoro Singverein di ViennaCoro Vienna SingvereinDamenchor Des Wiener SingvereinDer Chor Der Gesellschaft Der Musikfreunde WienDer Chor Der Gesellschaft Der Musikfreunde, WienDer Chor der Gesellschaft der Musikfreunde, WienDer Chor der Gesellschaft für MusikfreundeDer Singverein Der Gesellschaft Der MusikfreundeDer Singverein Der Gesellschaft Der Musikfreunde In WienDer Singverein Der Gesellschaft Der Musikfreunde, ViennaDer Singverein Der Gesellschaft Der Musikfreunde, WienDer Wiener SingvereinDie Wiener SingvereinFrauenchor Des Wiener SingvereinFrauenchor des Wiener SingvereinFrauenchor des Wiener SingvereinsGesellschaft Der Musikfreunde, ViennaLa Asociacion De Cantores Amigos De La Musica, De VienaLa Asociacion De Cantores De Amigos De La Musica, De VienaLes Chanteurs De VienneLes Chanteurs de VienneMännerchor Des Wiener SingvereinMännerchöre des Singvereins der Gesellschaft der Musikfreunde, WienNiños Cantores De VienaSingverein ChoirSingverein ChorusSingverein De VienaSingverein De VienneSingverein Der Ges. Der MusikfreundeSingverein Der Gesellschaft Der Musik Freunde In WienSingverein Der Gesellschaft Der Musikfeunde WienSingverein Der Gesellschaft Der Musikfreude, WienSingverein Der Gesellschaft Der MusikfreundeSingverein Der Gesellschaft Der Musikfreunde In WienSingverein Der Gesellschaft Der Musikfreunde WienSingverein Der Gesellschaft Der Musikfreunde, ViennaSingverein Der Gesellschaft Der Musikfreunde, WeinSingverein Der Gesellschaft Der Musikfreunde, WienSingverein Der Gesellschaft Für MusikfreundeSingverein Der MusikfreundeSingverein Des Geselschaft Der Musikfreuden In WeinSingverein der Gesellschaft der Musikfreunde in WienSingverein der Gesellschaft der Musikfreunde, WienSingveren Der Gesellschaft Der Musikfreunde WienSingverien Der MusikfreundeSmall Choir Of "Der Singverein Der Gesellschaft Der Musikfreunde", ViennaSociedad Coral De VienaSociedad Coral de VienaSociedade Coral Do ViennaSociety Of Friends Of Music, ViennaSociety Of The Friends Of Music, ViennaSociety of the Friends of Music, ViennaSociété des chœurs de VienneThe Chorus Of The Gesellschaft Der Musikfreunde, ViennaThe Chorus Of The Society Of Friends Of Music In ViennaThe Friends Of Music, ViennaThe Singverein Der Gesellschaft Der Musik-Freunde, ViennaThe Singverein Der Gesellschaft Der MusikfreundeThe Singverein Der Gesellschaft Der Musikfreunde, ViennaVienna Choral SocietyVienna MusikvereinVienna Musikverein ChoirVienna SigvereinVienna SingersVienna SingvereinVienna Singverein ChorusVídeňský Pěvecký SborWiener Singverein Der Gesellschaft Der MusikfreundeWiener Singverein's Men ChorusWiener Singwerein (Singverein Der Gesellschaft Der Musikfreunde Wien)Women's Chorus Of The Vienna Singvereinウィーン楽友協会合唱団Singverein Der Gesellschaft Der MusikfreundeChristoph WigelbeyerChristof Mörtl + +833076Gundula JanowitzAustrian lyric soprano vocalist, born August 2, 1937 in Berlin, Germany.Needs Votehttps://en.wikipedia.org/wiki/Gundula_Janowitzhttps://de.wikipedia.org/wiki/Gundula_Janowitzhttp://www.bach-cantatas.com/Bio/Janowitz-Gundula.htmhttps://www.imdb.com/name/nm0417916/G. JanowitzG.JanowitzGandula JanowitzGundula Janowitz, SopranJanovitzJanowitzJaonowitzГундула Яновицグンドゥラ・ヤノヴィッツ = Gundula Janowitz + +833078Otto Ernst WohlertProducer and recording supervisor for classical releases. +Manager of the [l143563].Needs VoteErnst WohlertOtto E. WohlertOtto Enst WohlertOtto Ernst WohlerOtto-Ernst Wohlert + +833084James ChambersHornist, born in Trenton, NJ, died 1989. Member of the New York Philharmonic Orchestra from 1969 to his retirement in 1986. He started his career with the Philadelphia Orchestra at age 17.Needs Votehttps://www.nytimes.com/1989/01/03/obituaries/james-chambers-68-former-orchestra-hornist.htmlJ. ChambersJim Chambersジェームス・チェンバースThe Philadelphia OrchestraNew York Philharmonic + +833087Ernst KovacicErnst KovacicAustrian violinist and conductor, born 12 April 1943 in Kapfenberg, Austria.Needs Votehttps://ernstkovacic.com/Ensemble ModernKlangforum WienStuttgarter KammerorchesterCamerata Academica SalzburgCamerata BernDeutsche Kammerphilharmonie BremenZebra Trio + +833097Luigi BoccheriniRidolfo Luigi BoccheriniBorn: 1743-02-19 (Lucca, Italy) +Died: 1805-05-28 (Madrid, Spain) + +Luigi Boccherini was an Italian composer and cellist of the Classical era whose music retained a courtly and galante style even while he matured somewhat apart from the major European musical centers. Boccherini is best known for a four-minute minuet (a dance) from his String Quintet in E, Op. 11, No. 5 (G 275), an all-time classic. Needs Votehttps://www.luigiboccherini.org/https://www.luigi-boccherini.org/https://en.wikipedia.org/wiki/Luigi_Boccherinihttps://www.britannica.com/biography/Luigi-Boccherinihttps://www.klassika.info/Komponisten/Boccherini/index.htmlhttps://www.treccani.it/enciclopedia/luigi-boccherini/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102529/Boccherini_Luigihttps://www.allmusic.com/artist/luigi-boccherini-mn0000182453BaccheriniBoccariniBocceriniBoccerininBoccheriniBoccherini L.Boccherini, LuigiBocchheriniBocchinniBocchiriniBocheriniBockeriniBokeriniBokkeriniE. BoccheriniL BoccheriniL. BaccheriniL. BeccheriniL. BocceriniL. BoccheeriniL. BoccheriniL. BocheriniL. BokeriniL. BokerinisL.BoccheriniL.BocheriniL.BochheriniL.BokerinisL.BokkeriniLuidgi BocheriniLuigi BecheriniLuigi BobbheriniLuigi Boccherini (P.D.)Luigi BocheriniLuigi BochheriniM. BocheriniRidolfo Luigi BoccheriniboccheriniΜποκκερίνιБокеринниБоккериниЛ. БокериниЛ. БоккериниЛуиджи БокериниЛуиджи БоккериниЛуиджи Родольфо Боккериниボッケリーニポッケリーニ色格里尼鮑凱里尼鲍凱里尼 + +833099Anton SpielerVioloncello player from Germany.Needs VoteStaatskapelle Dresden + +833108Otmar SuitnerAustrian conductor. He was born 16 May 1922 in Innsbruck, Austria and died 8 January 2010 in Berlin, Germany and is still listed as honorable member of [a833446].Needs Votehttps://de.wikipedia.org/wiki/Otmar_Suitnerhttps://en.wikipedia.org/wiki/Otmar_Suitnerhttps://www.allmusic.com/artist/otmar-suitner-mn0002200843/biographyhttps://www.independent.co.uk/news/obituaries/otmar-suitner-conductor-who-was-the-last-surviving-product-of-germany-s-kapellmeister-tradition-1903928.htmlhttps://www.gramophone.co.uk/classical-music-news/article/conductor-otmar-suitner-has-died-aged-87O. SuitnerOthmar SuitnerOtmar SaitnerOtmar SuiterSuitnerОтмар ЗюйтнерОтмар Сюитнерオトマール・スウィトナーオトマール・スウィトナーStaatskapelle DresdenStaatskapelle Berlin + +833125Marie-Claire JametFrench classical harpist, born in Reims (France) on 27 November 1933. +Daughter of [a=Pierre Jamet (2)]Needs VoteJametM. C. JametMarie Claire JametMarie-Claire Jamet-LardéMarie-Claire Jarnetマリ=クレール・ジャメマリー=クレール・ジャメEnsemble IntercontemporainQuintette Marie-Claire Jamet + +833128Jean MartinonJean MartinonFrench conductor and composer, born January 10, 1910, in Lyon, died March 1, 1976, in Paris. +Studied with [a860230] (composition), [a406273] , [a910130] (orchestral conducting), and [a891595] (harmony). He graduated in 1928 with a first prize for violin and worked before the war especially as a composer. Then started his career as a conductor and guest conductor. He was the conductor of [a448007] from 1951 to 1957.Needs Votehttp://en.wikipedia.org/wiki/Jean_Martinonhttp://cso.org/uploadedFiles/8_about/History_-_Rosenthal_archives/Jean_Martinon.pdfJ. MartinonMartinonЖ. Мартинонジャン・マルティノジャン・マルティノンOrchestre Des Concerts LamoureuxResidentie Orkest + +833155Carlos KleiberKarl Ludwig KleiberGerman-born Austrian conductor. He was born 3 July 1930 in Berlin, Germany and died 13 July 2004 in Konjšica, Slovenia.Needs Votehttps://en.wikipedia.org/wiki/Carlos_KleiberC. KleiberKleiberΚάρλος ΚλάιμπερКарлос КлайберКарлос Клейберカルロス•クライバーカルロス・クライバー + +833159Gilbert JohnsonClassical trumpet player, born in 1927 and died 8 September 2002.Needs VoteGil JohnsonThe Philadelphia OrchestraPhiladelphia Brass EnsembleThe Torchy Jones Brass Quintet + +833161Helmuth FroschauerHelmuth Froschauer (born 22 September 1933, Vienna, Austria - died 18 August 2019) was an Austrian conductor and chorus master. From 1953 to 1965, he directed one of the choirs of [a=Die Wiener Sängerknaben]. From 1992 onwards, he had a leading position with the [a495010] and [a1047947] of the [a918239] in Köln (Cologne). + +Needs Votehttps://de.wikipedia.org/wiki/Helmuth_Froschauer_(Dirigent)https://www1.wdr.de/radio/wdr5/sendungen/erlebtegeschichten/froschauerhelmut102.htmlFroschauerH. ForschauerH. FroschauerHellmuth FroschauerHelmut FroschauerHelmut ProschauerHelmuth FrohschauerHelmuth ProschauerГельмут ФрошауэрХельмут Фрошауэрヘルムート・フロシャウアーヘルムート・フロシャウアーDie Wiener SängerknabenChorus Viennensis + +833162Anna Tomowa-SintowAnna Tomowa-SintowBulgarian soprano born on September 22, 1941 in Stara Zagora, Bulgaria.Correcthttp://www.tomowa-sintow.com/http://www.bach-cantatas.com/Bio/Tomowa-Sintow-Anna.htmA. Tomowa-SintowAna Tomova-SintovaAnna TomovaAnna Tomova-SintovAnna Tomova-SintowAnna TomowaAnna Tomowa SintowAnna Tomowa SintowaAnna Tomowa-SintovAnna-Tomowa SintowTomova-SintovTomova-SintowTomowa-SintowАна Томова-СинтоваАнна Томова - СинтоваАнна Томова-Синтоваアンナ・トモワ・シントウアンナ・トモワ=シントウアンナ・トモワ=シントウ + +833163José van DamJoseph, Baron Van DammeBelgian bass / baritone vocalist, born on August 25, 1940 in Brussels, Belgium.Needs Votehttps://en.wikipedia.org/wiki/José_van_DamJ. V DamJ. Van DamJ. van DamJ.Van DamJose Van DamJose van DamJosé Van DamJosé VandamJosé van DammJosé van DammeJosé von DamVan Damvan DamЖозе Ван ДамХозе Ван Дамジョゼ・ヴァン・ダムジョゼ・ヴァン・ダムホセ・ファン・ダムホセ・ヴァン・ダムヨセ・ファン・ダム + +833164Agnes BaltsaGreek mezzo-soprano, alto & contralto vocalist, born 19 November 1944 in Lefkas.Needs VoteA. BaltsaA.BaltsaAgnes Baltsa ( Laura )Agnès BaltsaBaltsaΑγνή ΜπάλτσαАгнес Бальтсаアグネス・バルツァアグネス・バルツア + +833165Reinhold SchmidAustrian chorus master, composer and pedagogue (* 19 November 1902 in Berndorf, Lower Austria; † 17 October 1980 in Vienna, Austria).Needs Votehttp://de.wikipedia.org/wiki/Reinhold_Schmidhttps://www.musiklexikon.ac.at/ml/musik_S/Schmid_Reinhold.xmlDr. Reinhold SchmidR. SchmidR. SchmittR.SchmidReinhald SchmidReinhold SchmidtReinhold SchmittRheinhold SchmidSchmidラインホルト・シュミット + +833167Elisabeth SchwarzkopfOlga Maria Elisabeth Friederike SchwarzkopfSoprano Vocalist, born in Jarotschin in the province of Posen in Prussia, German Empire, on 09 December 1915. +She died in her sleep during the night of 2–3 August 2006 at her home in the village of Schruns, in Vorarlberg, Western Austria, aged 90. +She married [a=Walter Legge] on 19 October 1953.Needs Votehttps://en.wikipedia.org/wiki/Elisabeth_Schwarzkopfhttps://www.bach-cantatas.com/Bio/Schwarzkopf-Elisabeth.htmhttps://austria-forum.org/af/AustriaWiki/Elisabeth_Schwarzkopfhttps://www.imdb.com/name/nm0777695/Dame Elisabeth SchwarzkopfE. SchwarzkopfE.SchwarzkopfElisabete SchwarzkopfElisabeth SchwartzkopfElizabeth SchwarzkopfMme. SchwarzkopfSchwarzkopfSchwarzkopf*Елизабет ШварцкопфЭ. ШварцкопфЭ. ШвацкопфЭлизабет Шварцкопфエリザベート・シュワルツコップエリーザベト・シュヴァルツコップシュワルツコップ + +833168Dietrich Fischer-DieskauAlbert Dietrich Fischer-DieskauGerman lyric baritone & bass vocalist and conductor, born 28 May 1925 in Berlin, Germany, died 18 May 2012 in Berg, Germany. Brother of [a1748680]. +He was married to [a=Irmgard Poppen] from 1949 to her death in 1963. Their children were [a6872947], [a7020661], and [a2251450]. He subsequently married [a=Ruth Leuwerik] from 1965 to their divorce in 1967 and Christina Pugel-Schule from 1968 to their divorce in 1975. He was survived by his fourth wife [a=Iulia Várady], whom he married in 1977. + +His granddaughter is a German-French pianist [a11031467]. + +Needs Votehttp://www.mwolf.de/start.htmlhttps://en.wikipedia.org/wiki/Dietrich_Fischer-Dieskauhttps://www.theguardian.com/music/2012/may/18/dietrich-fischer-dieskau1-6, 1-13, 1-16, 1-21 to 1-25, 2-3, 2-5 to -D. Fischer-DieskauDieskauDietrich FischerDietrich Fischer - DieskauDietrich Fischer DieskauDietrich Fischer-DiekauDietrich Fischer-Dieskau (baryton)Dietrich Fisher DieskauDietrich-Fischer DieskauDietrich-Fischer-DieskauDietrisch Fischer-DieskauDitrih Fišer-DiskauFischerFischer DieskauFischer--DieskauFischer-DieskauFischer-Dieskau*Ντήτριχ Φίσερ-ΝτήσκαουΦίσερ-ΝτήσκαουД. Фишер-ДискауДитрих ФишерДитрих Фишер-ДискауДитрих Фишер-дискауディートリッヒ•フィッシャー=ディースカウディートリッヒ・フィッシャー=ディースカウディートリッヒ・フィッシャー=ディースカウディートリヒ・フィッシャー=ディースカウディートリヒ・フィッシャー=ディースカウ + +833169Philharmonia ChorusThe Philharmonia Chorus was founded in 1957 by Walter Legge and took the same name as the Orchestra with which it was formed to sing: The [a454293]. +In 1964, Legge disbanded the orchestra who reformed itself as a body governed by its players, called the [a704150]; The Chorus followed suit: [a1079561]. +In 1977, the orchestra decided to resume its original name and the chorus also went back to first principles.Needs Votehttps://www.philharmoniachorus.co.uk/& ChorusChoeur PhilharmoniaChoeursChoirChorChor Der Londoner PhilharmoniaChor LondonChorusChorus LondonChœurChœur PhilharmoniaChœursCoroCoro De La PhilarmoniaCoro Della Philharmonia Di LondraCoro FilarmoniaCoro PhilharmoniaCoro Philharmonia De LondresCoro Philharmonia Di LondraCoro Philharmonia di LondraCoro Philharmonia, LondresCorosCoros FilarmoniaCoros PhilharmoniaCoros Philharmonia De LondresCôro PhilharmoniaDer Philharmonia ChorDer Philharmonia Chor LondonDer Philharmonia Chor, LondonDie Männer Des Philharmonia Chores LondonDie Männer des Philharmonia Chores LondonFilharmonický SborFilharmonijski ZborHet Philharmonia KoorKoorKörLadies Of The Philharmonia ChorusLondon Philharmonia ChorusPhil. ChorPhilharmoniaPhilharmonia ChoeursPhilharmonia ChoirPhilharmonia Choir LondonPhilharmonia ChorPhilharmonia Chor LondonPhilharmonia Chor, LondonPhilharmonia ChoralePhilharmonia Chorus (Mens' Voices)Philharmonia Chorus (Men’s Voices)Philharmonia Chorus LondonPhilharmonia Chorus, LondonPhilharmonia ChœursPhilharmonia CoroPhilharmonia KoorPhilharmonia KórusPhilharmonia London ChorPhilharmonia Orchestra And ChorusPhilharmonia-Chor LondonPhilharmoniachorPhilharmonic SingersThe Philharmonia ChoeursThe Philharmonia ChoirThe Philharmonia ChorThe Philharmonia ChorusThe Philharmonia Chorus, LondonThe Philharmonia ChœursThe Philharmonic ChorusThe Philharmonica ChorusWomen Of The Philharmonia ChorusZbor PhilharmoniaΧορωδία ΦιλαρμόνιαЛондонский Хор "Филaрмония"Хор "Филармония"Хор «Филармония»ニューフィルハーモニア合唱団フィルハーモニア合唱団David HillTom Phillips (3)Women's Voices Of The Philharmonia ChorusLadies Of The Philharmonic Chorus + +833173Wilhelm PitzWilhelm PitzGerman chorus master, born 25 August 1897 in Breinig (now Stolberg), Germany; died 21 November 1973 in Aachen, Germany.Correcthttp://de.wikipedia.org/wiki/Wilhelm_PitzChordirektor Wilh. PitzChorus MasterPitzW. PitzWilhem PitzWilliam PitzΒίλχελμ ΠιτςВильгельм Питц + +833174Churchbells Of GothenburgCorrect + +833175Gothenburg Symphony ChorusGöteborgs symfoniska körSwedish choir founded, as 'Göteborgs konserthuskör' (Gothenburg Concert Hall Choir), by [a6845491] in 1917. + +Stenhammar was a driving force in the turn of the century's choir life in Gothenburg and the choir members came largely from the Elsa Stenhammar Choir and the choir school she founded in 1916 on behalf of the Gothenburg Orchestra Association. [a6845491] became the choir's first rehearsal and on December 8, 1917, the choir 'Göteborgs konserthuskör' (Gothenburg Concert Hall Choir) debuted with Beethoven's Choir Fantasy with [a6845491]'s cousin [a1136139] as pianist. She led the choir until 1935 when she resigned after a conflict with the orchestra association's conductor [a4433963]. + +The choir was later transformed into a non-profit association, but the choirmaster is employed by [a1015406]. + +[b]Gothenburg Symphony Vocal Ensemble (GSVE)[/b] was formed in 2016 and consists of twelve professional singers. The ensemble acts in two capacities, as part of the Gothenburg Symphony Choir in large symphonic works performed together with [a1015406], and as a group in its own right under the direction of [a5171052], since 2023.Needs Votehttps://www.koren.se/https://www.facebook.com/GoteborgsSymfoniskaKorhttps://www.gso.se/en/gothenburg-symphony-orchestra/choirs-ensembles/gothenburg-symphony-choir/https://sv.wikipedia.org/wiki/Göteborgs_symfoniska_körhttps://www.gso.se/en/gothenburg-symphony-orchestra/choirs-ensembles/gothenburg-symphony-vocal-ensemble/Choeurs Symphonique De GoteborgChorusGothenburg Symphonic ChoirGothenburg Symphony Male ChorusGothenburg Symphony Vocal EnsembleGöteborgs KonserthuskörGöteborgs SinfonikerGöteborgs Symfoniska KörMen's Voices Of The Gothenburg Symphony ChorusNational Orchestra Of SwedenOrquestra Sinfónica De GotemburgoThe Gothenburg Concert Hall ChoirWomen's Voices Of The Gothenburg Symphony Chorus + +833176Gothenburg Artillery DivisionCorrect + +833177Torgny SporsénSwedish opera singer.Needs VoteTorgny SporsenGöteborgs Kammarkör + +833178Gothenburg Symphony Brass BandSwedish symphonic brass band Gothenburg.Needs VoteGothenburg Symphony Brass QuintetGothenburg Symphony Orchestra + +833179Neeme JärviEstonian-American conductor, born June 7, 1937. Father of [a=Paavo Järvi] and [a=Kristjan Järvi]. Nominated for Spellemannprisen (Norwegian Grammy) for best classical album of 2013 with "Svendsen - Orchestral Works vol. 3", released with Bergen Philharmonic Orchestra and [a=Marianne Thorsen].Needs Votehttps://web.archive.org/web/20190104195956/http://www.neemejarvi.ee/https://www.facebook.com/NeemeJarviConductor/https://en.wikipedia.org/wiki/Neeme_J%C3%A4rviJaarviJarviJärviN. IarviN. JarviN. JärviN. YarviNeeme JaerviNeeme JarviNeeme JarwiNeeme JärvNeemeJarviNeemi JärviNeheme JärviNeimi JarviNeimye YarvyNemme JärviNesme JarviNesme JarwiNicolaï IarvidNicolaï LarvidNääme JarviН. ЯрвиНаэме ЯрвиНееме ЯрвиНеме ЈарвиНеэме ЯрвиНиэме ЯрвиНээме Ярвиネーメ・ヤルヴィResidentie Orkest + +833183David ZauderAmerican trumpet player, born 1928 in Krakow, Poland and died 16 April 2013 in Pine, Colorado.CorrectThe Cleveland Orchestra + +833198Johannes OckeghemJohannes Ockeghem (or Okeghem, Ogkegum, Okchem, Hocquegam, Ockegham)Composer (born c. 1410, Saint-Ghislain, Belgium - died February 6, 1497, Tours, France). Important composer in the early Renaissance period who belonged to the second generation of the Franco-Flemish School. The most important classical composer between [a=Guillaume Dufay] and [a=Josquin des Prés].Needs Votehttps://en.wikipedia.org/wiki/Johannes_Ockeghemhttps://swap.stanford.edu/20090621104145/http://library.ferris.edu/scott/ockeghem.htmlhttps://imslp.org/wiki/Category:Ockeghem,_Johanneshttps://www.allmusic.com/artist/johannes-ockeghem-mn0001204852http://www.hoasm.org/IIID/Ockeghem.htmlhttps://www.britannica.com/biography/Jean-de-Ockeghemhttp://www.medieval.org/emfaq/composers/ockeghem.htmlIohannes OckeghemJ. OckeghemJan OckeghemJan van OckeghemJean D'OckeghemJean De OckeghemJean OckeghemJean de OckeghemJehan OckeghemJoannes OckeghemJoh. OckeghemJohan OckeghemJohannes OckegemJohannes OkeghemJohn OckeghemOckeghemOkeghem + +833205Charles BrettCharles Michael BrettCharles Brett (October 27, 1941 in Maidenhead, England - June 24, 2025) was an English countertenor.Needs Votehttps://www.charlesbrett.com/BrettC. BrettThe Hilliard EnsembleCollegium VocalePro Cantione AntiquaThe Medieval Ensemble of LondonThe Amaryllis Consort + +833207Thibault De ChampagneTeobaldo I de NavarraTheobald I (French: Thibaut, Spanish: Teobaldo, often referred to as Thibaut de Navarre and Thibaut de Champagne) (30 May 1201 – 8 July 1253), also called the Troubadour and the Posthumous, was Count of Champagne (as Theobald IV) from birth and King of Navarre from 1234. He initiated the Barons' Crusade, was famous as a trouvère, and was the first Frenchman to rule Navarre.Needs Votehttps://en.wikipedia.org/wiki/Theobald_I_of_NavarreThibaud De ChampagneThibaud Le ChansonnierThibaud de ChampagneThibault De Champagne, Roi de NavarreThibault IV De ChampagneThibault de ChampagneThibault de Champagne, Roi de NavarreThibaut De ChampagneThibaut De ChampaigneThibaut IV de ChampagneThibaut de ChampagneThibaut de Champagne, Roi de NavarreThibaut de ChampaigneTibault De ChampagneThibault IV, Roi De NavarreTeobaldo I + +833208James BladesEnglish classical percussionist, Professor of Percussion, and author. Born 9 September 1901 in Peterborough, Cambridgeshire, England, UK - Died 19 May 1999 in Cheam, Surrey, England, UK. +His most famous and widely heard performances were the sound of the drum playing "V-for-Victory" in Morse code, the introduction to the [l=BBC] broadcasts made to the European Resistance during World War II. He also provided the sound, but not the image, of the [url=https://www.discogs.com/artist/5827398-J-Arthur-Rank-Organisation-Ltd]Rank Organization[/url]'s 'Gongman', who introduced films for many years. +He spent most of the 1920s working at a movie theater, creating sound effects for silent movies - gunshots, thunderstorms - and playing in dance bands around Britain. In 1932, he joined the [b]London Film Society Orchestra[/b]. Former member of the [a=London Symphony Orchestra] (1939-?). As a chamber musician, he played with the [a=Melos Ensemble Of London] and the [a=English Chamber Orchestra]. He retired from public performances in 1971. In 1954, he was appointed Professor of Percussion at the [l527847]. Author of the 1970 book 'Percussion Instruments and Their History'. +In 1972, he was awarded the Order of the British Empire (OBE). +He married the pianist [a=Joan Goossens] in 1948.Needs Votehttps://open.spotify.com/artist/2DUOQ4rDWgCd7aW9JY2opmhttps://music.apple.com/us/artist/james-blades/35406162https://en.wikipedia.org/wiki/James_Bladeshttps://www.feenotes.com/database/artists/blades-james-9th-september-1901-19th-may-1999/https://www.pas.org/about/hall-of-fame/james-bladeshttps://archiveshub.jisc.ac.uk/search/archives/3678f489-2ca4-3f32-bc1d-73610fced2d8https://www.ram.ac.uk/museum/collections/performers/james-blades-collectionhttps://www.astro.com/astro-databank/Blades,_Jameshttps://www.theguardian.com/news/1999/may/29/guardianobituarieshttps://www.independent.co.uk/arts-entertainment/obituary-james-blades-1095585.htmlhttps://www.mishalov.com/Blades.htmlhttps://www.nytimes.com/1999/05/25/arts/james-blades-is-dead-at-97-a-percussionist-for-victory.htmlhttps://www.imdb.com/name/nm1633584/https://www2.bfi.org.uk/films-tv-people/4ce2b9fde3ba0Jimmy BladesLondon Symphony OrchestraAmbrose & His OrchestraEnglish Chamber OrchestraMelos Ensemble Of LondonThe English Opera GroupLeslie Bridgewater Orchestra + +833212Oliver BrookesClassical string instrumentalist + trumpeter.Needs VoteThe Early Music Consort Of LondonThe Academy Of Ancient MusicThe London Early Music Group + +833213Nigel Rogers (2)English tenor, conductor and teacher +Born: 21st March 1935 Wellington, Shropshire, England +Died: 19th January 2022 +Co-founder of [a=Studio Der Frühen Musik] in 1960 with [a=Thomas Binkley], [a=Andrea von Ramm] and [a=Sterling Jones (2)] and founded [a=Ensemble Chiaroscuro] in 1979. +Professor of classical singing at the Royal College of Music in London from 1978 - 2000.Needs Votehttp://en.wikipedia.org/wiki/Nigel_Rogershttp://www.bach-cantatas.com/Bio/Rogers-Nigel.htmN. RogersNigels RogersRogersStudio Der Frühen MusikEnsemble Chiaroscuro + +833214Gillian Reid (2)Classical harp, psaltery and percussion artistNeeds VoteGillian RiedGillian RiedThe Early Music Consort Of London + +833215Gaucelm FaiditMedieval [b]troubadour[/b], born c 1170 in Uzerche, in the Limousin (France), died c 1202.Needs VoteGaucelem FaiditGaucelm FaichitGaucelm FayditGaulcem Faidit + +833217James Bowman (2)James Thomas BowmanEnglish countertenor +Born: 6th November 1941 Oxford, England +Died: 27th March 2023 Redhill, England +James Bowman was one of the pillars of the historically informed early music revival, and made hundreds of recordings of the music of Monteverdi, Purcell, Handel, Bach, Vivaldi, and numerous other early composers. +His career started as a boy chorister at Ely Cathedral, and later, as a countertenor, as an Academic Clerk at New College Oxford, where he read history. He also sang in the Choir of Christ Church. In 1967, he was chosen by Benjamin Britten to sing the part of Oberon in A Midsummer Night’s Dream, and was asked to perform at the opening of the new Queen Elizabeth Hall on the South Bank.Needs Votehttp://www.users.globalnet.co.uk/~pattle/bowman/http://en.wikipedia.org/wiki/James_Bowman_(countertenor)https://www.imdb.com/name/nm0101329/BowmanJ. Bowmanジェイムズ・ボウマンThe Choir Of The King's ConsortThe SixteenThe Monteverdi ChoirPro Cantione AntiquaThe King's Consort + +833231Rafael DruianRafael DruianRussian violinist and conductor, born c. 1922 in Vologda, Russia and died 6 September 2002 in Philadelphia, Pennsylvania, USA.Needs VoteDruianRafeal DruianRaphael DruianNew York PhilharmonicThe Cleveland OrchestraDallas Symphony OrchestraMinneapolis Symphony Orchestra + +833235Frederick DeliusFrederick Albert Theodore DeliusEnglish composer, born in Bradford on January 29, 1862, died June 10, 1934, in Grez-sur-Loing.Needs Votehttp://www.delius.org.uk/http://www.classical.net/music/comp.lst/delius.htmlhttp://en.wikipedia.org/wiki/Frederick_Deliushttps://adp.library.ucsb.edu/names/360508DeliusF. DeliusFr. DeliusFrederic DeliusFrederik DeliusДелиусФ. ДелиусФредерик Делиусディーリアス + +833306P. MustapääMartti HaavioNeeds VoteMustapääP.MustapääMartti Haavio + +833315Bedřich SmetanaBedřich SmetanaBedřich Smetana (pronounced [ˈbɛdr̝ɪx ˈsmɛtana]; 2 March 1824 - 12 May 1884) was a Czech composer. He is best known for his symphonic poem Vltava (better known as The Moldau), the second in a cycle of six which he entitled Má vlast (My Country), and for his opera Prodaná nevěsta (The Bartered Bride). + +Smetana was the son of a brewer in Litomyšl in Bohemia, then part of the Austrian Empire. He studied piano and violin from an early age, and played in an amateur string quartet with other members of his family. Smetana attended a high school in Pilsen from 1840-1843. He studied music in Prague, despite initial resistance from his father. He secured a post as music master to a noble family, and in 1848 received funds from Franz Liszt to establish his own music school. + +September 1855 marked the death of his second child, his beloved four-year-old daughter Bedřiška. When his third child died nine months later, he committed himself to composition, producing the Piano Trio in G minor. This piece is full of sadness and despair, making use of phrases that are cut short, possibly in resemblance to his daughter's own life. + +In 1856, Smetana moved to Gothenburg, Sweden, where he taught, conducted and gave chamber music recitals. In 1863, back in Prague, he opened a new school of music dedicated to promoting specifically Czech music. By 1874 he had become deaf from syphilis, but he continued to compose; Má vlast was written after his deafness had developed. Smetana also suffered from tinnitus, which caused him to hear a continuous, maddening high note which he described as the "shrill whistle of a first inversion chord of A-flat in the highest register of the piccolo". + +From 1875 he lived in small village of Jabkenice. + +His string quartet in E minor, Z mého života (From My Life, composed in 1876), the first of only two quartets, is an autobiographical work. The final movement is punctuated by a piercing high E in the first violin which, Smetana explained, represents the devastating effects of his tinnitus. He may also be hinting at this personal misfortune with the piccolo scoring in Má vlast. In 1883 Smetana, due to further progressive neurological effects of his illness, became insane, and was taken to a mental hospital in Prague, where he died the following year. He is interred in the Vyšehrad cemetery in Prague. + +Smetana was the first composer to write music that was specifically Czech in character. Many of his operas are based on Czech themes and myths, the best known being the comedy The Bartered Bride (1866). He used many Czech dance rhythms and his melodies sometimes resemble folk songs. He was a great influence on Antonín Dvořák, who similarly used Czech themes in his works.Needs Votehttps://en.wikipedia.org/wiki/Bed%C5%99ich_Smetanahttps://www.britannica.com/biography/Bedrich-Smetanahttps://www.imdb.com/name/nm0806845/https://www.klassika.info/Komponisten/Smetana/index.htmlhttps://adp.library.ucsb.edu/names/102111B SmetanaB. SmentanaB. SmetanaB.SmetanaBeDRich SmetanaBed Ich SmetanaBed_ich SmetanaBederich SmetanaBedric SmetanaBedrich (Friedrich) SmetanaBedrich Friedrich SmetanaBedrich SmaetanaBedrich SmetanaBedričs SmetanaBedrych SmetanaBedrích SmetanaBedřich (Friedrich) SmetanaBedřicha SmetanyBedřih SmetanaBedřích SmetanaBedžih SmetanaBeidrich SmetanaBeďrich SmetanaBiedrich SmetanaBrederich SmetanaBredrich SmetanaE. SmetanaF. SmetanaFederico SmetanaFr. SmetanaFrederick SmetanaFreidrich SmetanaFriederich SmetanaFriedr. SmetanaFriedrich (Bedrich) SmetanaFriedrich (Bedřich) SmetanaFriedrich SemetanaFriedrich SmetanaFriedrich SmetannaFriedrich SmétanaFriedrich V. SmetanaFriedrich Von SmetanaFriedrich v. SmetanaFriedřich SmetanaFrierich SmetanaFrédéric SmetanaP.D.R. SmetanaSmentanaSmetanaSmetana B.Smetana BedrichSmetana Bedrich FriedrichSmetana FriedrichSmetana, BedrichSmetana, F.SmetanySmetenaSmethanaSmetnaSmettanaSmietanaSmétanaSumetanaΣμέταναБ, СметанаБ. СметанаБ.СметанаБедржих СметанаБерджих СметанаБеџих СметанаСметанаСметаныスメタナベドジフ・スメタナ史密塔納 + +833317John PritchardJohn Michael PritchardBritish conductor, born 5 February 1921 in London, England, UK and died 5 December 1989 in Daly City, California, USA. + +Commander (CBE) - Order of the British Empire. +Needs Votehttps://en.wikipedia.org/wiki/John_Pritchard_(conductor)J. PritchardPritchardSir John PritchardДжон Притчардジョン・プリッチャード + +833326Peter Anders (2)German operatic tenor who sang a wide range of parts in the German, Italian, and French repertories, born July 1, 1908 in Essen, died September 10, 1954 in Hamburg.Needs Votehttp://en.wikipedia.org/wiki/Peter_Anders_%28tenor%29AndersP. AnderP. AndersPeter AndersPeter Anders v. Nationaltheater, MünchenPeter Anders, TenorPeter Anders, vom Nationaltheater, MünchenП. АндерсПетер Андерс + +833383Václav TalichVáclav Hugo TalichCzech conductor and violinist. Born 28 May 1883 in Kroměříž (former Austro-Hungarian Empire), died 16 March 1961 in Beroun (former Czechoslovakia). +Uncle of [a1965282] and grand-uncle of [a1025049]. +Chief Conductor of [a=Stockholms Konsertförenings Orkester] from 1926 to 1936. + +[b][u]Series[/u][/b] +[l568575] ([l21873]) +[l942654] ([l21873]) +[l553067] ([l43720]) +[l565439] ([l21873]) +[l329996] ([l21873]) +[l2059138] ([l213761]) + +[b][u]Titles were recorded multiple times[/u][/b] (all w/ [a435555])! +[a833315] : [b]Má Vlast, cyklus symfonických básní[/b] - My Country +• 1929 - [m=1719908] +• 1939 (live) - [r=3088529] +• 1941 - [m=750385] +• 1954 - [m=395837] + +[a268272] : [b]VIII. symfonie G dur op. 88[/b] ([i]originally Symphony no. 4[/i]) +• 1935 - [m=750405] +• 1951 - [m=802660] +[a268272] : [b]IX. symfonie e moll op. 95 Z Nového světa[/b] - From The New World ([i]originally Symphony no. 5[/i]) +• 1941 - [r=3655608] +• 1949 - [r=16547010] +• 1954 (live) - [m=231953] +[a268272] : [b]Slovanské tance pro orchestr op. 46 a op. 72[/b] - Slavonic Dances +• 1936 - [m=1818458] +• 1939 (live) - [r=3088529] +• 1950 - [m=412666] +[a268272] : [b]Karneval op. 92, koncertní předehra[/b] - Carnival +• 1936 - +• 1952 - +• 1953 - +[a268272] : [b]Vodník op. 107, symfonická báseň[/b] - The Water Goblin +• 1949 - +• 1954 (live) - [r=3579015] +[a268272] : [b]Polednice op. 108, symfonická báseň[/b] - The Midday Witch +• 1951 - +• 1954 (live) - [r=4633531] +[a268272] : [b]Holoubek op. 110, symfonická báseň[/b] - The Wild Dove +• 1951 - +• 1954 (live) - [r=3579015] + +[a1120029] : [b]Serenáda Es dur pro smyčcové nástroje op. 6[/b] - Serenade +• 1938 - [r=4649874] +• 1951 - [m=637693] +[a1120029] : [b]Pohádka op. 16, suita z hudby k Zeyerově hře Radúz a Mahulena[/b] - Fairy-Tale +• 1940 - +• 1949 -Needs Votehttps://en.wikipedia.org/wiki/V%C3%A1clav_Talichhttps://www.supraphon.com/artists/1228-vaclav-talich-conductorDr. Václav TalichNárodní Umělec Václav TalichProf. Václav TalichTalichV. TalichV. TallichVaclav TalichVáclav∘TalichVáclav◦TalichВацлав Талихヴァーツラフ・ターリッヒThe Czech Philharmonic OrchestraCzech Chamber OrchestraSlovak Philharmonic OrchestraPrague Radio Symphony OrchestraStockholms Konsertförenings Orkester + +833403Klaus SchwenkeKlaus Schwenke (born 1938) is a German violist, viola da gamba player and Music Professor. + +Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester Leipzig + +833405Thekla WaldbaurGerman wind instrumentalist, born 3 February 1925 and died 13 October 2012.Needs VoteThekla WaldbauerBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigCapella LipsiensisKammerorchester BerlinCapella Fidicinia + +833408Eva KästnerGerman flutist and recorder player.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigKammerorchester Berlin + +833409Gerhard FladeClassical oboistNeeds VoteGewandhausorchester Leipzig + +833412Bernd JäcklinGerman Violist.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigCapella Fidicinia + +833413Hans-Ludwig MörchenGerman oboist.Needs VoteHans-Ludwig MoerchenHans-Lüdwig MörchenBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigLeipziger Bach-Collegium + +833415Klaus HebeckerGerman classical violinistNeeds VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigHebecker-Streichquartett + +833416Werner SeltmannWerner Seltmann (born August 27, 1930 in Leipzig) is a German bassoonist.Needs Votehttps://de.wikipedia.org/wiki/Werner_SeltmannBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-Kammermusikvereinigung + +833417Siegfried PankGerman violoncellist and viola da gamba player, born 25 March 1936 in Salzwedel, Germany.Needs VotePankSiesfried PankGewandhausorchester LeipzigThomanerchorAkademie Für Alte Musik BerlinKammerorchester BerlinNeues Bachisches Collegium Musicum LeipzigBachcollegium StuttgartCapella FidiciniaSaito Kinen OrchestraLeipziger Bach-CollegiumEnsemble »Alte Musik Dresden«Rameau-TrioCappella Sagittariana DresdenSolistengemeinschaft Der Berliner Bach Akademie + +833418Siegfried ArnoldClassical cellistNeeds VoteGewandhausorchester Leipzig + +833419Peter Fischer (3)German oboist, born 4 December 1925 in Leipzig, Germany and died 3 December 2004 in Leipzig, Germany.Needs VoteP. FischerPeter FischerPeter FisherBachorchester des Gewandhauses zu LeipzigGewandhausorchester Leipzig + +833422Matthias EisenbergGerman organist, harpsichordist and church musician, formerly [l385926] organist. He was born January 15, 1956 in Dresden, German Democratic Republic. Matthias Eisenberg was awarded the honorary title of professor.Needs Votehttp://www.matthias-eisenberg.de/https://de.wikipedia.org/wiki/Matthias_Eisenberghttps://www.lr-online.de/lausitz/cottbus/begnadeter-organist-und-ueberzeugter-querdenker_aid-3132946EisenbergGewandhausorganist Matthias EisenbergM. EisenbergMathias EisenbergNotre-Dame La Daurade Basilica, ToulouseDresdner KreuzchorSudwestfunkorchester Baden-BadenTrompetenensemble Joachim Schäfer + +833423Lothar MaxGerman cellist.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester Leipzig + +833424Volker MetzViola player.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +833425Waldemar SchieberWaldemar Schieber (born May 13, 1927 in Doberschau, Lower Silesia (now Dobroszów) near Chojnow; † 21. November 2023) was a German horn player and former teacher at the Felix Mendelssohn Bartholdy Academy of Music in Leipzig. +From 1956 - 1992 member of the Leipzig Gewandhaus Orchestra, 1962 - 1992 as solo horn player.Needs Votehttps://de.wikipedia.org/wiki/Waldemar_SchieberBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-KammermusikvereinigungDas Gewandhaus-Bläserquintett + +833426Heinz HörtzschGerman flutist.Needs VoteHeinz HörtschHeinz HörzschBachorchester des Gewandhauses zu LeipzigGewandhausorchester Leipzig + +833435Colin CurrieBritish percussionist, committed to the development of new repertoire for percussion in its widest form, including orchestral, solo and chamber music.Needs Votehttps://www.colincurrie.comColin Currie Group + +833446Staatskapelle BerlinGerman orchestra founded in 1570 as court orchestra by Prince-Elector Joachim II of Brandenburg. The Staatskapelle Berlin is the orchestra of the Berlin State Opera (Opernhaus Unter den Linden). + +Founded as the "Kurfürstliche Hofkapelle" (Electoral Court Ensemble), it became the "Königliche Kapelle" (Royal Ensemble) in 1701, the [a6220168] (State Opera Orchestra) in 1919, the [a6806797] (State Orchestra) in 1934, the [a6172367] (Prussian State Orchestra) in 1944, and finally the "Staatskapelle Berlin" from 1945. It was the leading orchestra in East Berlin, firmly under German Democratic Republic government rule. In 1989, the members of the orchestra presented to the government a petition demanding the reorganization of the Staatskapelle as an independent, democratically run organization. This became part of the widespread public pressure that within months caused the collapse of the German communist state and the reunification of Germany. + +Music Directors: +[a4662949] (1759-1775) +[a593459] (1775-1794 - Hofkapellmeister) +[a1051072] (1816-1820) +[a1416941] (1820-1841) +[a488362] (1842-1846) +[a696211] (1848-1849) +[a1396722] (1871-18- Hofkapellmeister) +Joseph Sucher (1888-1899 - conductor of Hofkapelle and Lindenoper) +[a1162975] (1891-1898) +[a108439] (1898-1913 - Principal Hofkapellmeister; continued to conduct symphonic concerts until 1920) +[a1268205] (1906-1913 - Hofkapellmeister; 1913-1920 - Generalmusikdirektor) +[a1053170] (1923-1934 - Generalmusikdirektor) +[a882724] (1935-1936 - Generalmusikdirektor) +[a283122] (1938-1945 - Generalmusikdirektor) +[a1092492] (1948-1951) +[a1053170] (1954-1955) +[a826839] (1955-1962) +[a833108] (1964-1990) +[a424576] (1992-Present)Needs Votehttps://www.staatskapelle-berlin.dehttps://www.bach-cantatas.com/Bio/Staatskapelle-Berlin.htm#google_vignettehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103300/Staatskapelle_Berlin"State Orchestra" De BerlinBallet Of Berlin State OperaBayerisches StaatskapelleBerlin EnsembleBerlin OperaBerlin Opera OrchestraBerlin Philharmonic OrchestraBerlin StaatskapelleBerlin Staatskapelle OrchestraBerlin StaatsoperBerlin StaatsopernorchesterBerlin State Oper OrchestraBerlin State OperaBerlin State Opera Co.Berlin State Opera House OrchestraBerlin State Opera Orch.Berlin State Opera OrchestraBerlin State Opera Orchestra And ChoirBerlin State Orch.Berlin State OrchestraBerlin Symphony OrchestraBerliner StaatskapelleBerliner Staatskapelle OrchestraBerliner Staatskapelle*Berliner Staatskapelle, DieBerliner StaatsopernkapelleBerliner StaatsopernorchesterBlasorchester Der Staatskapelle BerlinChœurs Et Orchestre De L'Opéra D'État De BerlinConcert OrchestraDer Berliner StaatskapelleDer Berliner StaatsopernkapelleDer Staatskapelle BerlinDeutsche Staatskapelle BerlinDeutschen Staatsoper BerlinDie Staatskapelle BerlinFull Chorus And Orchestra Of The State Opera House BerlinGerman Democratic Republic State Symphony OrchestraGran OrquestaGrand Orchestre Symphonique De L'Opéra de BerlinGrand Symphony OrchestraGrossem Symphonie-OrchesterGrosses MilitärorchesterGrosses OrchesterGrosses Salon-OrchesterGrosses SalonorchesterGrosses SinfonieorchesterGroß. Symphonie-OrchesterGroßem Streich-Orchester (Mitglieder Der Staatskapelle, Berlin)Großem Symphonie-OrchesterGroßem Symphonie-Orchester (Mitglieder D. Staatskapelle, Berlin)Großes Orchester (Mitglieder Der Staatskapelle Berlin)Großes Sinfonie-OrchesterGroßes Symphonie-OrchesterGroßes Symphonie-Orchester (Mitglieder Der Staatskapelle, Berlin)Kammermusikvereinigung Der Deutschen Staatsoper BerlinKammerorchester Der Staatskapelle BerlinKammerorchester Staatskapelle BerlinKammerorchester der Staatskapelle BerlinKapelle Der Staatsoper BerlinKonzert OrchesterKonzert-OrchesterLa Orquesta De Opera Del Estado De BerlinLa Orquesta De Opera del Estado De BerlinMembers Of The Staatskapelle BerlinMitgl. D. Staatskap. BerlinMitgl. D. Staatskapelle, BerlinMitgl. Der Kapelle Der Staatsoper BerlinMitgl. Der Kapelle Der Staatsoper, BerlinMitgl. d. Orchesters d. Staatsoper, BerlinMitglieder D. Staatskapelle BerlinMitglieder D. Staatskapelle, BerlinMitglieder Der Ehem. Staatskapelle BerlinMitglieder Der Kapelle Der Staatsoper BerlinMitglieder Der Staatskapelle BerlinMitglieder Der Staatskapelle, BerlinMitglieder Des Orchesters Der Staatsoper, BerlinMitglieder Des Staatsopern-OrchestersMitglieder d. Staatskapelle, BerlinMitglieder der Staatskapelle BerlinMitglieder der Staatskapelle, BerlinMitglieder des Orchesters der Staatsoper BerlinMr. Hatherley ClarkeNemački Državni Orkestar I HorNuova Orchestra SinfonicaOrch. Of The Berlin State OperaOrchesterOrchester Der Berliner StaatsoperOrchester Der Deutschen Staatsoper BerlinOrchester Der Staatskapelle BerlinOrchester Der Staatsoper BerlinOrchester Mitglieder Der Staatskapelle BerlinOrchester der Deutschen Staatsoper BerlinOrchester der Staatskapelle BerlinOrchesterbegleitungOrchestraOrchestra Della Cappella Di Stato PrussianaOrchestra Di Stato Di BerlinoOrchestra Of The Berlin Opera HouseOrchestra Of The Berlin State OperaOrchestra Of The Berliner HofoperOrchestra Of The City Of BerlinOrchestra Of The Deutche Oper, BerlinOrchestra Of The Deutsche Oper, BerlinOrchestra Of The German Opera, BerlinOrchestra Of The German State OperaOrchestra Of The German State Opera BerlinOrchestra Of The German State Opera, BerlinOrchestra Of The State Opera HouseOrchestra Of The State Opera House, BerlinOrchestra Of The State Opera, BerlinOrchestra of the Berlin State OperaOrchestra of the State Opera, BerlinOrchestre D'Etat De BerlinOrchestre De L'Opera D'Etat De BerlinOrchestre De L'Opera National De BerlinOrchestre De L'Opéra D'Etat De BerlinOrchestre De L'Opéra D'État De BerlinOrchestre De La Staatskapelle De BerlinOrchestre De La Staatskappelle De BerlinOrchestre De L’Opéra D’Etat De BerlinOrchestre d'Etat de BerlinOrchestre de L'Opéra D'Etat de BerlinOrchestre de l'Opéra d'Etat de BerlinOrchestre de l'Opéra d'Etat de Berlin*Orquesta De La Ópera Del Estado, BerlínOrquesta Del Estado De BerlínOrquesta del Estado de BerlinOrquestra Da Ópera Alemã De BerlimPhilharmonic OrchestraPreussische StaatskapellePreussische Staatskapelle BerlinPreußischen StaatskapelleProff. D'Orch. Del Teatro D'Opera Di Stato, BerlinoStaatskapelle Berlin Und ChorStaatskapelle Berlin Und OrgelStaatskapelle De BerlinStaatskapelle De BerlínStaatskapelle,BerlinStaatsopernkapelle BerlinState Opera BerlinState Opera OrchestraState Opera Orchestra, BerlinState OrchestraState Orchestra BerlinState Orchestra, BerlinStattskapelle BerlinStor SymfoniorkesterStreichquartett Der Deutschen Staatsoper BerlinStreichquartettt Der Staatskapelle BerlinStátní Orchestr BerlínSymphonie-Orchester (Mitglieder Der Staatskapelle, Berlin)Teatro D'Opera Di Stato, BerlinoThe Berlin State Opera House OrchestraThe Berlin State Opera OrchestraThe Berlin State OrchestraThe Orchestra Of The German Opera BerlinThe Orchestra Of The State Opera House Of BerlinThe Orchestra Of The State Opera House, BerlinThe Staatskapelle BerlinThe State Opera Orchestra BerlinThe State Opera Orchestra, BerlinThe State Orchestra Of BerlinThe State-Opera-Chorus, BerlinThe State-Opera-Orchestra, Berlindes Orchesters der StaatsoperБерлинская Государственная КапеллаБерлинская Государственная Капелла Под Управлением Зигфрида КурцаГос. Симфонический Оркестр Германской Демократической РеспубликиГосударственный Симфонический Оркестр ГДРГосударственный Симфонический Оркестр Германской Демократической РеспубликиОркОрк.ベルリン・シュターツカペレDas Orchester Der Staatsoper BerlinMathis FischerReiner SüßMatthias WilkeDietrich SchmuhlEgon MorbitzerGyula DalloJörg WinklerSophia ReuterErnst Hermann MeyerOtmar SuitnerMatthias WinklerFrank HeintzeAndreas AigmüllerKlaus PetersIb HausmannOskar MichallikHans-Jürgen KrumstrohChristian BatzdorfWalter KlierAndreas LorenzAndreas GregerFritz WesenigkChristian Wagner (4)Siegfried BorriesGerald KulinnaMarkus BruggaierRobert DrägerSebastian WeigleSennu LaineSarah Willis (2)Heinz TietjenHans BergerAlfred LipkaWolf-Dieter BatzdorfMathias BaierKarl-Heinz SchröterBernd Müller (7)Max StrubJoost KeizerUnolf WäntigRalf ZankRudolf SchulzLothar FriedrichEgbert SchimmelpfennigJoachim KlierHarald Winkler (5)Thorsten RosenbuschChristian TromplerUlrike BassengeStephen Fitzpatrick (2)Leo SiberskiWalter Müller (5)Roland KuntzeFelix WildeThomas Keller (4)Bernhard GüntherDora WagnerMichael NellessenThomas SelditzJohanna HelmStanislava StoykovaKarl ReitzWolfram BrandlAlf MoserSandra TancibudekAndré WitzmannMichael Engel (3)Rüdiger ThalSusanne SchergautNabil ShehataHans AdomeitLutz Steiner (2)Victor BrunsStefan Schulz (4)Werner ThärichenKarl LangeFelix SchwartzKatarina MalzewRudolf DemanEmil KornsandAxel GrünerThomas Beyer (2)Gregor WittRichard KlemmRainer AuerbachChristoph AnackerJee-Hye BaeManfred Herzog (4)Axel WilczokJussef EisaCsaba WagnerDorothee GurskiThomas Otto (4)Martin FraustadtJiyoon LeeHartmut SchuldtDavid Delgado (7)Laura VolkweinMartin BarthYulia DeynekaMatthias GlanderKaspar LoyalJean-Claude VelinThomas KiechleFilipe AlvesJoachim ElserYunna WeberSebastian PoschBurak MarlaliFrank DemmlerIgnacio Garcia (4)Claudia Stein (2)Petra SchwiegerAlexander Kovalev (3)Claire Sojung HenkelIsa Von WedemeyerNikolaus PopaTeresa BeldiOtto Tolonen (2)Tonio HenkelYuki Manuela JankeMichael SalmBertrand Chatenet (2)Cristina Gómez GodoyTobias Sturm (2)Thomas JordansIngo ReuterCellists Of The Staatskapelle BerlinUlrike EschenburgDominic OelzeSusanne DabelsWilli Rosenthal (2) + +833448Chris ColumboJoseph Christoffer Columbus MorrisJoseph Christoffer Columbus Morris, better known as Crazy Chris Columbo, was an American jazz drummer, born June 17, 1902 in Greenville, North Carolina, USA, died August 20, 2002 in New Jersey, USA. Prior to a stroke which partially paralyzed him in 1993, Columbo was the oldest working musician in Atlantic City. + +Columbo got his first professional gig playing with Fletcher Henderson in 1921. Between the 1920s and the 1960s, he played at most of the city's nightclubs, and lead the Club Harlem orchestra for 34 years until 1978, when the club shut its doors. Thereafter, Columbo's band went on to perform at practically every Atlantic City casino hotel. At the time of his stroke, he was playing regularly at the Showboat. + +Columbo has worked, recorded, and toured with such luminaries as Duke Ellington, Dizzy Gillespie, Louis Jordan, Louis Armstrong and Ella Fitzgerald. + +Columbo was the father of drummer [a321928]. +Needs Votehttp://en.wikipedia.org/wiki/Chris_Columbohttps://adp.library.ucsb.edu/names/100118(Chris Columbus)C. ColumbusChris "Joe Morris" ColumbusChris ColomboChris ColombusChris ColumbusChris Columbus (Joe Morris)Chris ColumoChristopher ColumbusChristopher Columbus "Joe Morris"ColomboColumboColumbusJoseph Chris Columbo MorrisJoseph Chris Columbus MorrisJoe Morris (3)Christopher Columbus (3)Louis Jordan And His Tympany FiveLouis Jordan And His OrchestraChris Columbo QuintetWild Bill Davis TrioChris Columbo & His BandChristopher Columbus And His Swing Crew + +833452Radu LupuRadu LupuRomanian pianist and composer. +Born 30th November 1945 in Galaţi, Romania. +Died 17th April 2022 in Lausanne, Switzerland.Correcthttps://en.wikipedia.org/wiki/Radu_Lupuhttps://www.imdb.com/name/nm3741894/LupuR. LupuR.Lupuラドゥ・ルプー + +833454Friedrich von MatthissonFriedrich von MatthissonGerman poet, born 23 January 1761 in Hohendodeleben near Magdeburg, Germany, died 12 March 1831 in Wörlitz near Dessau, Germany.Needs Votehttps://adp.library.ucsb.edu/names/111800F. MatthissonF. v. MatthisonF. v. MatthissonF. von MatthissonFr. V. MatthissonFr. v. MatthissonFriedr. v. MatthissonFriedrich MatthisonFriedrich MatthissonFriedrich von MathissonFriedrich von MatthisonMatthisonMatthissonVon Matthison + +833455Paul HeysePaul Johann Ludwig von HeyseGerman author, born 15 March 1830 in Berlin, Germany and died 2 April 1914 in Munich, Germany. He was awarded with the Nobel Prize in Literature in 1910.Needs Votehttps://en.wikipedia.org/wiki/Paul_Heysehttps://adp.library.ucsb.edu/names/102965& Paul HeyseHeyseP. HeiseP. HeynsP. HeysePaul HeisePaul von HeyseП. Хейзе + +833495Gundula AndersSoprano vocalist from Germany.Needs Votehttp://www.gundula-anders.de/AndersCollegium VocaleLa Chapelle RoyaleBalthasar-Neumann-ChorLa Capella DucaleMusica FiataDeutscher KammerchorCoro Della Radio Televisione Della Svizzera ItalianaSuper LibrumEnsemble ChanterelleCarissimi-Consort München + +833503Barbara ValentinEngineer and producer, mainly for classical releases.CorrectB. ValentinBarabara Valentin + +833547Wilma LippWilma LippAustrian operatic soprano, * 26 April 1925 in Vienna, Austria-Hungary, † 26 January 2019 in Inning am Ammersee, Bavaria, Germany. +She was particularly associated with Mozart roles, especially [i]Konstanze[/i] in [i]Die Entführung aus dem Serail[/i] and the [i]Queen of the Night[/i] in [i]Die Zauberflöte[/i].Needs Votehttps://en.wikipedia.org/wiki/Wilma_Lipphttps://www.musiklexikon.ac.at/ml/musik_L/Lipp_Wilma.xmlhttps://www.br-klassik.de/aktuell/news-kritik/wilma-lipp-gestorben-sopranistin-100.htmlKammersängerin Wilma LippLippVilma LippW. LippWilmaWilma LippováВилма Лип + +833549Hilde GüdenHulda Julia GeiringerAustrian soprano (* 15 September 1917 in Vienna, Austro-Hungary; † 17 September 1988 in Klosterneuburg, Lower Austria).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_G/Gueden_Hilde.xmlhttps://en.wikipedia.org/wiki/Hilde_G%C3%BCdenGudenGuedenGüdenH. GuedenH. GüdenHielde GuedenHilda GuedenHilde CüdenHilde GeudenHilde GudenHilde GuedenHilde GuerenHilde Güden Mit ChorHilde GüedenHilde QuedenХ. ГюденХильда ГюденХильде Гюденヒルデ・ギューデン + +833554Christa LudwigChrista LudwigGerman mezzo-soprano +Born: 16th March 1928 Berlin, Germany +Died: 24th April 2021 Klosterneuburg, Austria +Known both for her opera performances and her singing of Lieder. Her career spanned from the late 1940s until the early 1990s, debuting at the Vienna State Opera in 1955 and remaining for over 30 years. Former spouse of [a=Walter Berry] and mother of [a=Wolfgang Berry].Needs Votehttp://www.cantabile-subito.de/Mezzo-Sopranos/Ludwig__Christa/hauptteil_ludwig__christa.htmlhttp://en.wikipedia.org/wiki/Christa_Ludwighttps://de.wikipedia.org/wiki/Christa_LudwigC. LudwigCh. LudwigLudigLudwigLudwig*Mme. LudwigΚρίστα ΛούντβιχΛούντβιχКриста Людвигクリスタル・ルートヴィヒクリスタ・ルートウィッヒクリスタ・ルートヴィヒクリスタ・ルードウィッヒクリスタ・ルードヴィッヒルートヴィッヒ + +833556Emanuel SchikanederJohann Joseph SchickenederGerman impresario, dramatist, actor, singer and composer (born 9 September 1751 in Straubing, Germany - died 21 September 1812 in Vienna, Austria). +He was the librettist of [a=Wolfgang Amadeus Mozart]'s opera The Magic Flute and the builder of the Theater an der Wien. +Needs Votehttp://en.wikipedia.org/wiki/Emanuel_SchikanederE SchikanederE. J. SchikanederE. SchikanederE.SchikanederEmanual SchikanederEmanuel Johann Jos. SchikanederEmanuel Johann Josef SchikanederEmanuel ScehikanederEmanuel Schikaneder (?)Emanuel SchiknederEmanuel ShikanederEmmanuel SchikanederEmmanuel SchilkanederJ. E. SchikanederJ.E. SchikanederJohann Emanuel SchikanederSchickanederSchikanederSchinakederЭ. ШиканедерЭммануэль ШиканедерRegensburger Domspatzen + +833560Carlo Maria GiuliniCarlo Maria GiuliniItalian conductor, and violist. +Born May 9, 1914 in Barletta, Italy. +Died June 14, 2005 in Brescia, Italy (aged 91). +Studied violin, viola and composition at the Accademia di Santa Cecilia in Rome, then went on to study conducting with [a359260] in Siena and made his debut as conductor in 1944. +He became director of the Rome Radio Orchestra in 1946, founded the Radio Orchestra of Milan in 1950, and conducted at the La Scala, Milan, for the first time in 1952. He became principal conductor of the Rome Opera in 1955. He made his debut at the Royal Opera House, Covent Garden, in 1958 directing Verdi's Don Carlos in the production by Luchino Visconti. Since, he toured extensively, working in Japan and the U.S.A. and establishing lasting connections to the Chicago Symphony, the Los Angeles Philharmonic, and the Vienna Symphony Orchestra. Needs Votehttps://en.wikipedia.org/wiki/Carlo_Maria_Giulinihttps://www.britannica.com/biography/Carlo-Maria-Giulinihttp://mapage.noos.fr/giulini/https://www.warnerclassics.com/artist/carlo-maria-giulinihttps://web.archive.org/web/20031016222102/https://www.sonyclassical.com/artists/giulini/https://www.bach-cantatas.com/Bio/Giulini-Carlo-Maria.htmC. M. GiuliniC. Maria GiuliniC.M. GiuliniC.M.GiuliniC.Maria GiuliniCarlo M. GiuliniCarlo Maria GiulianiCarlo Maria GiuniCarlo Mario GiuliniCarlo María GiuliniCarlo María GuiliniCarlo-Maria GiuliniCarlo-María GiuliniCarlos Maria GiuliniGiuliniGuiliniMaria GiuliniMaria GuiliniКарло Мариа ДжулиниКарло Мария Джулиниカルロ・マリア・ジュリーニカルロ・マリア・ジュリーニジュリーニ + +833561Klaus ScheibeRecording engineer for [l7703] at [l463701]. Active ca. 1964-1989Needs VoteKlans ScheibeKlaus R. ScheibeSCHSCHESchクラウス•シャイベクラウス・シャイベ + +833562Günther BreestClassical music production leader & recording supervisor working for [l=Deutsche Grammophon] from 1971 until 1988. In 1988 he went from Deutsche Grammophon to become president of [l=CBS Masterworks], which he renamed to [l=Sony Classical] in 1990. He resigned from this position early in January 1995. + +After Günther Breest moved to CBS Masterworks, he became very competitive towards his former employer, Deutsche Grammophon. He moved the repertory headquarters from New York to Hamburg, where DG was also based. He succeeded to secure the rights for the video archive of [a=Herbert von Karajan], which were long expected to go to Deutsche Grammophon. Breest persuaded several artists to move from DG to CBS Masterworks, for instance [a=Vladimir Horowitz] and [a=Claudio Abado].Needs Votehttps://www.nytimes.com/1995/01/05/arts/sony-classical-confirms-resignation-of-its-president.htmlGuenther BreestGunter BreestGunther BreestGünter BreestGünther Brestギュンター・ブレーストギュンター・ブレーストギュンダー・ブレースト + +833563Gernot Von SchultzendorffGernot von SchultzendorffGerman sound engineer and recording producer of classical releases.Needs VoteGernot von SchultzendoffGernot von Schultzendorff + +833579Ambroise ThomasCharles Louis Ambroise ThomasAmbroise Thomas (Metz 5 August 1811 - Paris, 12 February 1896) was a French opera composer, best-known for his operas Mignon (1866) and Hamlet (1868, after Shakespeare) and as director of the Conservatoire de Paris from 1871-1896.Needs Votehttp://en.wikipedia.org/wiki/Ambroise_Thomashttps://adp.library.ucsb.edu/names/104369A. Goving ThomasA. ThomasA. TomaA. ТомаA.ThomasA.トーマAmb. ThomasAmbrois ThomasAmbroise Charles Louis ThomasC. L. ThomasCh. L. AmbroiseCh. L. Ambroise ThomasCh. ThomasCharles L. A. ThomasCharles L.A. ThomasCharles Louis Ambroise ThomasCharles Louis Ambrose ThomasCharles Luis Ambroise ThomasCharles-Louis-Ambroise ThomasCharles-Louis-Ambroise-ThomasD'Ambroise ThomasThomaThomasThomas A.Thomas AmboiseThomas AmbroiseThomas, AmbroiseThomsTomasА. ТомаА.ТомаТомТомаТомасトーマ + +833580Christopher HironsClassical violin player.Needs VoteChris HironsHironsКристофер ХиронзThe Academy Of Ancient MusicL'Estro ArmonicoGeorge Malcolm Piano Trio + +833667Brigitte FassbaenderGerman opera mezzo-soprano and theatre director. She was born 3 July 1939 in Berlin, Germany and is the daughter of [a=Willy Domgraf-Faßbaender]Needs VoteB. FassbaenderBirgitte FassbaenderBrigitte FassbinderBrigitte FassdaenderBrigitte FaßbaenderFassbaenderMme FassbaenderБригитте Фассбендерブリギッテ•ファスベンダー + +833686Bamberger SymphonikerBamberger Symphoniker - Bayerische StaatsphilharmonieFormed in 1946 from among the former members of the German Philharmonic of Prague, who were among the refugees of World War II. +Full name: Bamberger Symphoniker - Bayerische Staatsphilharmonie + +Principal conductors: +• [a1092492] (1950 to 1968) +• [a842238] (1971 to 1973) +• [a838929] (1973) +• [a863122] (1978 to 1983) +• [a826840] (1985 to 1996) +• [a688698] (2000 to 2016) +• [a2071912] (since 2016) + +Not to be confused with the fictitious [a4194648].Needs Votehttps://www.bamberger-symphoniker.de/https://www.facebook.com/bambergersymphoniker/https://www.instagram.com/bambergsymphony/https://x.com/bambergsymphonyhttps://www.youtube.com/channel/UC4sz_Evu102KsBVXEoJi8Lwhttps://en.wikipedia.org/wiki/Bamberg_Symphonyhttps://www.bach-cantatas.com/Bio/Bamberger-Symphoniker.htmBambeg SymphonyBamber SymphonyBamber Symphony OrchestraBamberg Symphony OrchestraBamberg S.O.Bamberg Sym.Bamberg Sym. Orch.Bamberg SymphonicBamberg Symphonic OrchestraBamberg Symphonie OrchestraBamberg Symphonie OrkestBamberg SymphoniesBamberg SymphonikerBamberg SymphonyBamberg Symphony ChorusBamberg Symphony OrchesterBamberg Symphony OrchestraBamberg Symphony Orchestra And ChorusBamberg Symphony Orchestra and ChorusBamberger DuoBamberger Sinfonie OrchesterBamberger SinfonieorchesterBamberger SinfonikerBamberger Symfoniker OrkesterBamberger SymfonikerneBamberger Symph.Bamberger Symph. Orch.Bamberger Symphonic OrchestraBamberger Symphonie-OrchesterBamberger SymphonieorchesterBamberger SymphonieorkestBamberger Symphoniker - Bayerische StaatsphilharmonieBamberger Symphoniker – Bayerische StaatsphilharmonieBamberger Symphoniker, BambergBamberger SymphonikerneBamberger SymphonyBamberger Symphony Big BandBamberger Symphony OrchestraBamberger TrioBambergi SzimfonikusokBambergs Symfoniska OrkesterBambergs Symphonie OrkestBamberški SimfonikiBamberški SimfoničariBamburg Philharmonic OrchestraBamburg SymphonyBamburg Symphony OrchestraBanberg Symphony OrchestraBayerische StaatsphilharmonieBemberg Symphony OrchestraBig Band Der Bamberger SymphonikerBig Band Of Bamberger SymphonikerBläservereinigung Der Bamberger SymphonikerChor Und Orchester Der Bamberger SymphonikerChor und Orchester der Bamberger SymphonikerDas Bamberger Symphonie-OrchesterDie Bamberger SymphonikerGroßes Opernorchester Und ChorHet Bamberg Symphonie OrkestHet Symphonieorkest Van BambergLondon Festival OrchestraMembers Of The Bamberg SymphonyMembers Of The Bamberg Symphony OrchestraMitglieder Der Bamberger SymphonikerMitglieder der Bamberger SymphonikerOrch. Sinf. Di BambergOrch. Sinfonica Di BambergOrchester Der Bamberger SymphonikerOrchester der Bamberger SymphonikerOrchestra BambergerOrchestra Simfonica Di BambergOrchestra Simfonica Din BambergOrchestra Simfonică Din BambergOrchestra Simfonică din BambergOrchestra Sinfonica DI BambergOrchestra Sinfonica Di BambergOrchestra Sinfonica Di BambergaOrchestra Sinfonica Di BamburgOrchestra Sinfonica Die BambergOrchestra Sinfonica di BambergOrchestra Sinfonica di BambergaOrchestra Sonfonia Di BambergOrchestra simfonică din BambergOrchestre De BambergOrchestre Philarmonique De BambergOrchestre Philharmonique De BambergOrchestre Simphonique de BambergOrchestre Symphonique De BambergOrchestre Symphonique de BambergOrchestre symphonique de BambergOrq. Sinf. De BamburgOrquesta Sinfonica De BambergOrquesta Sinfonica de BambergOrquesta Sinfónica De BambergOrquesta Sinfónica De BambergerOrquesta Sinfónica de BambergOrquestra De Sinfonica BambergOrquestra Sinfónica de BambergOrquestra Sinfônica De BambergOrquestra Sinfônica de BambergPhilharmonic Orchestra BambergPhilharmonisches Orchester BambergSinfonica De BambergSinfonica Di BambergaSinfonie-OrchesterSinfónica De BambergSinfónica de BambergSinfônica BambergerSymfonisch Orkest Van BambergSymphonic Orch. BambergSymphonic Orchestra BambergSymphonic Orchestra BambergerSymphonisches OrchesterSymphonisches Orchester BambergSymphony Orchestra BambergThe Bamberg SymphonyThe Bamberg Symphony Orch.The Bamberg Symphony OrchestraThe Bamberg Symphony Orchestra*The Bamberger SymphonikerThe Bamberger SymphonyThe Bamberger Symphony OrchestraThe Bamberger Symphpony Orchestrabamberg symphony orchestraБамбергский Симфонический ОркестрХор Бамбергского Симфонического ОркестраХор И Бамбергский Симфонический Оркестрバンベルク交響楽団バンベルク交響楽団 = Bamberger Symphonikerバンベルグ・シンフォニー・オーケストラバンベルグ・フィルハーモニック・オーケストラバンベルグ交響楽団Albrecht MayerKarl RichterPaul ThiessenArmin RosinHorst SteinOtto BüchnerMilan TurkovicDag JensenGünther PfitzenmaierKlaus SchliesserSusanna KleinWolfgang RingsJonas BylundAlexander BarantschikMarie Luise NeuneckerRudolf KoeckertJosef MerzOskar RiedlMiloš Petrović (2)Wilhelm KlepperWalter ForchertGustavo NúñezLutz RandowWilli BuchnerEberhard MarschallNorbert SchmittHerbert BlendingerKlaus RenkClifford LantaffWilfried LaatzElisabeth KulenkampffDavid PuntoHans MelzerFranz BergerSabine LierUlrich BiersackFritz PahlmannVolker HensiekKarl DörrValery GradowWilli BauerElisabeth KufferathTill WeserPeter SesterhennCarl LentheBarbara BodeGeorg KlütschWolfgang TeschnerGunther PohlRadek BaborákPeter KallenseeGeorg KekeisenHelman JungMichael HamannHans HäubleinWolfgang KonradHristo KostadinovHermann DechantUlrich Von WrochemClaus KleinGeorg MeerweinUlrich KircheisLudmila MusterWolfgang BognerRichard SteuartDaisuke MogiDaniela KochHolger BronnerWolfgang GaagRobert ReitbergerKlaus GreinerJoachim MeyerManfred SchweigerDietmar UllrichPeter Christoph HänselLajos KraxnerChamber Ensemble Of The Bamberg Symphony OrchestraVladislav MarkovicSamuel SeidenbergHeiko TriebenerGerhard CanzlerKarl-Heinz ZögerErnesto MampaeyMichael HöltzelAndreas HartogsSzabolcs ZempléniSwantje VesperEmil BuchnerManon StassenTakaya UrakawaMaximilian OberroitherAngelos KritikosOtto Winter (2)Hasko KrögerPaul HennevoglVladislav PopyalkovskyJosef NiederhammerMarkus MesterPeter Rosenberg (4)Günther ForstmaierThomas Forstner (2)Hartmut FesterlingBerthold OpowerStreichquintett Der Bamberger SymphonikerChristoph EßHarald OrlovskyStefan LüghausenJueyoung YangHans BärIndrek LeivategijaAndrey GodikRie KoyamaMátyás NémethGeorg HopperdizelRudolf BenzNorbert KandlbinderWind Group Of The Bamberg SymphonyIvanna TernayKristian KatzenbergerAchim MelzerQuinten de RoosUli WittelerIlian GarnetzBig Band & Chorus of the Bamberg Symphony OrchestraMatthias RanftLois LandsverkAnton WeigertRobert CürlisStanisław PajakMechthild SchlaudWen Xiao ZhengWolfram HauserAnne Solveig WeberSophie SchülerSara AstoreVerena ObermayerRosmarie Schmid-MünsterLeonhard EbertSávio De La Corte + +833687Ferdinand LeitnerGerman conductor, born March 4, 1912 in Berlin, died June 3, 1996 in Zürich.Needs Votehttp://www.bach-cantatas.com/Bio/Leitner-Ferdinand.htmF. LeitnerFerd. LeitnerFerdinand LeknerFred LeitnerLeitnerФердинанд ЛайтнерФердинанд Ляйтнер페르디난트 라이트너Residentie Orkest + +833697Ferenc FricsayHungarian conductor, born 9 August 1914, Budapest – died 20 February 1963, Basel (Switzerland). +He made his first appearance as a conductor at age 15. +He became musical director of the RIAS Symphony Orchestra [a833698] in Germany in 1949, and of the [a839411] in 1954. From 1956 to 1958 he was music director of the Bavarian State Opera [a451535] (1956–1958). +From the 1950s until his death, he recorded for the [l7703] record label. +Fricsay was known for his interpretations of the music of Mozart and Beethoven, as well as that of his teacher Béla Bartók. His 1958 recording of Beethoven's Symphony No. 9 is featured in the movie A Clockwork Orange.Needs Votehttp://www.ferenc-fricsay.net/http://fricsay.net/http://fricsay.ch/https://en.wikipedia.org/wiki/Ferenc_Fricsayhttps://www.deutschegrammophon.com/en/artists/ferenc-fricsayDirigent: Ferenc FricsayF. FricsayFerenc FricsagFerenc FriscayFerence FricsayFerenz FricsayFricsayFricsay FerencFriscayФ. ФричайФеренц Фричайフェレンツ・フリッチャイ + +833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-OrchesterFor recording years 1946–1956 please use [b]RIAS Symphonie-Orchester Berlin[/b] +For recording years 1956–1993 please use [b][a688716][/b] +This radio orchestra was founded in West-Berlin in 1946. It was affiliated the American broadcasting station [l270438] (Rundfunk im amerikanischen Sektor / Radio in the American Sector). In 1956 the name was changed to [a688716]. After the German reunion the name changed again to [a462180] in 1993. This was done to prevent mix-ups with the East-Berlin based [a796211].Needs Votehttps://www.dso-berlin.dehttps://en.wikipedia.org/wiki/Deutsches_Symphonie-Orchester_BerlinBerlin RIAS OrchestraBerlin RIAS SymphonyBerlin RIAS Symphony Orch.Berlin RIAS Symphony OrchestraBerlin Radio OrchestraBerlin Radio Symphony OrchestraBerlin Radio Symphony Orchestra (RIAS)Berlin Rias OrchestraBerlin Rias SymphonyBerlin Symphony OrchestraBerliner Radio-SymphonieorchesterBerliner Radiosinfonie-OrchesterBerliner RadiosinfonieorchesterBerliner Symphonisches OrchesterChorus And Orchestra Of Radio BerlinChorus And Symphony Orchestra Radio BerlinDas Orchester Des RIAS BerlinDas RIAS Sinfonie-OrchesterDas RIAS Symphonie-OrchesterDas RIAS Symphonie-Orchester BerlinDas RIAS-OrchesterDas RIAS-Orchester Mit Großem ChorDas RIAS-Sinfonie-OrchesterDas RIAS-SinfonieorchesterDas RIAS-Sinfonieorchester BerlinDas RIAS-Symphonie-Orch.Das RIAS-Symphonie-OrchesterDas RIAS-Symphonie-Orchester BerlinDas Radio-Symphonie-Orchester BerlinDas Rias-OrchesterDas-RIAS Sinfonie-OrchesterGlieMitglieder Des RIAS-Symphonie-OrchestersMitglieder Des Radio-Symphonieorchesters BerlinOrch. Radio-Symphonique De BerlinOrch. Symphonique Du RiasOrchesterOrchester Des RIAS, BerlinOrchestraOrchestra Della Rias Di BerlinoOrchestra Of Radio BerlinOrchestra Of The RIAS BerlinOrchestra RIAS BerlinoOrchestra RIAS Di BerlinoOrchestra RIAS di BerlinoOrchestra Sinfonica Della RIAS Di BerlinoOrchestra Sinfonica Della Rias Di BerlinoOrchestra Sinfonica Della Rias di BerlinoOrchestra Sinfonica RIASOrchestra Sinfonica RIAS Di BerlinoOrchestra Sinfonica Rias Di BerlinoOrchestra Sinfonica della RIASOrchestra Sinfonica della RIAS di BerlinoOrchestra of Radio BerlinOrchestre Radio Symphonique De BerlinOrchestre Radio-Symphonique De BerlinOrchestre Radio-Symphonique RIAS De BerlinOrchestre Radio-Symphonique de BerlinOrchestre Symphonique De La Radio De BerlinOrchestre Symphonique De Radio-BerlinOrchestre Symphonique De RiasOrchestre Symphonique Du RIAS De BerlinOrchestre Symphonique Du Rias BerlinOrchestre Symphonique Du Rias, BerlinOrchestre Symphonique R.I.A.S. De BerlinOrchestre Symphonique RIASOrchestre Symphonique RIAS De BerlinOrchestre Symphonique RIAS de BerlinOrchestre Symphonique RIAS, BerlinOrchestre Symphonique Rias De BerlinOrchestre Symphonique Rias, BerlinOrchestre Symphonique de Radio-BerlinOrchestre Symphonique de la RIAS de BerlinOrchestre de Radio BerlinOrchestre du RIAS de BerlinOrkestar RIAS BerlinOrq. Sinf. De La RIASOrquesta De Las R.I.A.S.Orquesta Sinfonica De La Radio De BerlinOrquesta Sinfonica De La Rias, BerlinOrquesta Sinfonica De Las Rias BerlinOrquesta Sinfonica RIAS De BerlinOrquesta Sinfonica RiasOrquesta Sinfónica De BerlinOrquesta Sinfónica RIAS De BerlinOrquesta Sinfónica RIAS De BerlínOrquesta Sinfónica RIAS de BerlinOrquesta Sinfónica RIAS de BerlínOrquesta Sinfónica de Radio BerlinOrquestra Sinfonica RIAS De BerlinPIAS Symphony Orch.R.I.A.S. Symphony OrchestraR.I.A.S. Symphony Orchestra Of BerlinR.I.A.S. Symphony Orchestra, BerlinRIAS BerlinRIAS Berlin Symphony OrchestraRIAS Orch.RIAS OrchesterRIAS Orchester BerlinRIAS Orchester Berlin And ChoirRIAS OrchestraRIAS Orchestra Of BerlinRIAS S. O.RIAS Sinfonie OrchesterRIAS Sinfonie Orchester BerlinRIAS Sinfonie-OrchesterRIAS Sinfonie-Orchester BerlinRIAS SinfonieorchesterRIAS Sinfonieorchester BerlinRIAS SinfoniettaRIAS Sinfonietta BerlinRIAS Symfonieorkesterony OrchestraRIAS SymfoniorchesterRIAS Symfoniorkester BerlinRIAS Symfoniorkester, BerlinRIAS Symph.RIAS Symphonic Orchestra BerlinRIAS Symphonie OrchesterRIAS Symphonie Orchester BerlinRIAS Symphonie OrchestraRIAS Symphonie-Orch. BerlinRIAS Symphonie-OrchesterRIAS Symphonie-Orchester, BerlinRIAS Symphonie-OrchestraRIAS Symphonie-Orkest BerlijnRIAS SymphonieorchesterRIAS Symphonieorchester BerlinRIAS Symphonieorchester, BerlinRIAS SymphonyRIAS Symphony OrchesterRIAS Symphony Orchester, BerlinRIAS Symphony OrchestraRIAS Symphony Orchestra BerlinRIAS Symphony Orchestra and ChorusRIAS Symphony Orchestra, BerlinRIAS Symphony-Orchestra BerlinRIAS Symphony-Orchestra, BerlinRIAS UnlerhaltungsorchesterRIAS Unterhaltungs-OrchesterRIAS de BerlinRIAS-BerlinRIAS-OrchesterRIAS-Orchester BerlinRIAS-Sinfonie-OrchesterRIAS-Sinfonie-Orchester BerlinRIAS-SinfonieorchesterRIAS-Sinfonieorchester BerlinRIAS-Symphonie Orchester, BerlinRIAS-Symphonie-Berlin OrchesterRIAS-Symphonie-OrchesterRIAS-Symphonie-Orchester BerlinRIAS-Symphonie-Orchester, BerlinRIAS-Symphonie-OrchestrerRIAS-Symphonieorchester BerlinRIAS-UnterhaltungsorchesterRSORSO BerlinRSO-BerlinRadio Symphony Orchestra BerlinRadio Symphony Orchestra Of BerlinRadio-Symphonie-OrchesterRadio-Symphonie-Orchester BerlinRias BerlinRias OrchestraRias Sinfonie-OrchesterRias SinfoniettaRias Symphonie-OrchesterRias Symphonie-Orchester, BerlinRias Symphony OrchestraRias Symphony Orchestra And Chorus, BerlinRias Symphony Orchestra BerlinRias Symphony Orchestra Of BerlinRias Symphony Orchestra, BerlinRias UnterhaltungsorchesterRias-Sinfonieorchester BerlinRias-Symphonie-Orchester BerlinSinfonia Della RIAS Di BerlinoSinfonica Della RIAS Di BerlinoSinfonie Orchester BerlinSinfonie-Orchester BerlinSinfonie-Orchester Radio BerlinSoloists, Chorus And Orchestra of Radio BerlinSymph. Orch. Of Radio BerlinSymphonieorchester Des RIAS BerlinSymphony Of The RIASSymphony Orch. Of Radio BerlinSymphony Orch. of Radio BerlinSymphony Orchestra Of Radio BerlinSymphony Orchestra Of The RIASSymphony Orchestra RIAS BerlinSymphony Orchestra Radio BerlinSymphony Orchestra Rias BerlinSymphony Orchestra of Radio BerlinSymphony Orchestra, BerlinThe Berlin Radio Symphony OrchestraThe R.I.A.S. Symphony OrchestraThe RIAS OrchestraThe RIAS Symphony OrchestraThe RIAS Symphony Orchestra BerlinThe RIAS Symphony Orchestra, BerlinThe Radio Symphony Orchestra Of BerlinThe Rias Symphony OrchestraThe Rias-Symphony Orchestraorchestra sinfonica RIAS BerlinoОрк. Под Упр. Ф. ФричаяОркестрОркестр RIASОркестр Под Управлением Ф. ФричаяDeutsches Symphonie-Orchester BerlinRadio-Symphonie-Orchester BerlinWerner BerndsenHeinrich GeuserAlfred MalecekKarl-Heinz Duse-UteschRudolf Schulz + +833710Mischa ElmanMischa Elman was Russian-born American violinist (Odessa 1892-1967). He frequently collaborated with pianist [a2045607].Needs Votehttps://en.wikipedia.org/wiki/Mischa_Elmanhttps://adp.library.ucsb.edu/names/104527ElmanM. ElmanM. Mischa ElmannMicha ElmanMischa Elman, ViolinМ. ЭльманМиша ЭльманМиша ЭльманъElman String Quartet + +833722John Eliot GardinerJohn Eliot Gardiner (born 20 April 1943, Fontmell Magna, Dorset, England) is an English conductor, most famous for his interpretations of baroque music on period instruments. He formed the [a=The Monteverdi Choir] in 1964 and 4 years later [a1639402], with whose members he founded [a=The English Baroque Soloists] in 1978. In 1989, he formed a new period instrument orchestra to perform the classical and romantic repertoire, the [a=Orchestre Révolutionnaire Et Romantique]. +Gardiner was married to violinist [a836744] from 1981 until 1997. In 2001, he married [a3396182]. +In 2024, Gardiner stepped down as leader and artistic director of the Monteverdi Choir and Orchestra (which includes the choir, the English Baroque Soloists, and the Orchestre Révolutionnaire et Romantique).Needs Votehttps://en.wikipedia.org/wiki/John_Eliot_Gardinerhttps://www.bach-cantatas.com/Bio/Gardiner-John-Eliot.htmEliot GardinerGadinerGardinerGardnerJ. E. GardinerJ. Eliot GardinerJ.-E. GardinerJ.E. GardinerJohn EliotJohn Eliot Gardiner, ConductorJohn Eliot GardnerJohn Elliot GardnerJohn GardinerJohn-Eliot GardinerSir Eliot GardinerSir John Eliot GardinerДжон Элиот ГардинерЭ.Гардинерジョン・エリオット・ガーディナーOrchestre De L'Opéra De LyonOrchestre Révolutionnaire Et RomantiqueThe Monteverdi ChoirThe English Baroque SoloistsNDR Sinfonieorchester + +833723Everett PorterSound engineer and producer on classical releases.CorrectEverett Porter, Polyhymnia International + +833756Irene MaasGerman sopranoNeeds VoteChor der Deutschen Oper Berlin + +833767Ludwig RellstabHeinrich Friedrich Ludwig RellstabBorn : April 13, 1799 (in Berlin) +Died : November 27, 1860 (in Berlin) + +Rellstab was a German Poet and Music Critic, son of [a6611828] +Needs Votehttps://en.wikipedia.org/wiki/Ludwig_RellstabF. RellstabH. F. L. RellstabL. RellstabL. RelstabL. RelštabsRellRellholzRellstabRellstarЛ. РельштабЛ. РельштабаЛ.РельштабЛюдвиг Рельштабלודוויג רלשטאבルードヴィッヒ・レルシュターブ + +833770Michel SchwalbéFrench classical violinist and educator (* 27 October 1919 in Radom, Poland; † 08 October 2012 in Berlin, Germany). +From 1957 to 1986, he was concert master of the [a260744].Needs Votehttps://en.wikipedia.org/wiki/Michel_Schwalb%C3%A9https://www.berliner-philharmoniker.de/titelgeschichten/20192020/michel-schwalbe/M. SchwalbéMichael SchwabeMichael SchwalbeMichael SchwalbéMichel SchawalbéMichel SchwalbeMichèl SchwalbéSchwalbéΜισέλ Σβαλμπέミシェル・シュヴァルベミシェル・シュヴァルヴェBerliner PhilharmonikerL'Orchestre De La Suisse RomandeOrchestre De Lyon + +833777Maria João PiresMaria João Alexandre Barbosa Pires[b]Maria João Pires[/b] (born July 23, 1944, in Lisbon, Portugal) is a Portuguese classical pianist, widely regarded as one of the leading interpreters of the repertoire of the 18th and 19th centuries.Needs Votehttps://www.mariajoaopires.com/https://en.wikipedia.org/wiki/Maria_Jo%C3%A3o_Pireshttps://es.wikipedia.org/wiki/Maria_Jo%C3%A3o_Pireshttps://pt.wikipedia.org/wiki/Maria_Jo%C3%A3o_PiresJoao Pires-NöthM. João PiresM.J. PiresMaria Joao PiresMaria Joâo PiresMaria-Joao PiresMaria-João PiresPiresマリア・ジョアオ・ピリスマリア・ジョアン・ピリスマリア=ジョアオ・ピリスマリア・ジョアン・ピリス + +833787Eberhard WächterEberhard WächterAustrian baritone or bass singer born on July 9, 1929 in Vienna, Austria and died on March 29, 1992 in Vienna, Austria.Needs Votehttp://en.wikipedia.org/wiki/Eberhard_W%C3%A4chter_%28baritone%29http://www.bach-cantatas.com/Bio/Wachter-Eberhard.htmE. WächterEberhardEberhard WachterEberhard WaechterEberhard WăchterElberhard WächterMessr. WaechterMessr. WächterWachterWaecherWaechterWächteWächterΈμπερχαρντ ΒαίχτερΒαίχτερЭ. ВехтерЭберхард Вехтер + +833792Roland BaderGerman conductor, born August 24, 1938 in Wangen. +He studied at the Stuttgart Musikhochschule.Correcthttp://de.wikipedia.org/wiki/Roland_Baderhttp://www.bach-cantatas.com/Bio/Bader-Roland.htmDomkapellmeister Roland BaderR. BaderРоланд Бадерローラント・バーダー + +833794Ivo PogorelichIvo PogorelićIvo Pogorelić (Serbian: Иво Погорелић) (born 20 October 1958 in Belgrade, Serbia, FPR Yugoslavia) is a Croatian pianist. +He went to Moscow at age 12 to study the piano. After winning a number of first prizes he became renown for not winning the first prize at the 1980 Chopin Competition in Warszawa and getting into a well-publicised row with the jury. He set up a foundation to assist young promising (then) Yugoslav artists to study abroad. The Ivo Pogorelich Festival was first held in Bad Wörishofen (Bavaria) in 1989, offering young artists the chance to appear alongside accomplished international colleagues.Needs Votehttps://ivopogorelich.com/portfolio/homehttp://en.wikipedia.org/wiki/Ivo_PogorelichIvo PogorelicIvo PogorelićIvo PogoreličPogorelichИ. ПогореличИво ПогореличИво Погорелићイーヴォ・ポゴレリチ + +833821Ugo BenelliItalian operatic tenor, born 20 January 1935 in Genoa, Italy. + +CorrectBenelli + +833824Paolo MontarsoloItalian operatic bass, born 16 March 1925 in Portici, Italy and died 31 August 2006 in Rome, Italy.CorrectBasilioMontarsoloP. MontarsoloPaolo MontarsolaPaulo MontarsoloПаоло Монтарсоло + +833827Giovanni FoianiItalian operatic bass, born 13 April 1929.CorrectFioaniFoianiG. FoianiGiovani FoianiД. ФойаниДжованни ФойаниДжованни Фояни + +833835Gérard CausséGérard CausséGérard Caussé, born in Toulouse, France, in 1948, is a viola player specialising in its use as a solo instrument. He gave the first performance of the [i]Ainsi La Nuit Quartet[/i] by Henri Dutilleux, and has over thirty-five recordings to his name. Caussé is holder of the Banco Bilbao Vizcaya Argentaria Chair of Viola at the Escuela Superior de Música Reina Sofía.Needs Votehttps://en.wikipedia.org/wiki/G%C3%A9rard_Causs%C3%A9CausséGerard CausseGerard CausseeGerard CausséGérard CausseGérard Gausseジェラール・コーセEnsemble IntercontemporainQuatuor ParreninArs Antiqua De ParisQuatuor Via NovaQuatuor Capriccio + +833837Michel DebostFrench flautist, born 20 January 1934 in Paris, France. He studied under [a=Gaston Crunelle] and [a=Marcel Moyse], and has won major international competitions. He served as principal flautist in the [a=Orchestre de Paris], and replaced [a=Jean-Pierre Rampal] as flute professor at the [url=https://www.discogs.com/label/1014340]Conservatoire de la Musique, Paris[/url]. He lives in the United States with his wife [a=Kathleen Chastain], also a flautist.Needs Votehttps://en.wikipedia.org/wiki/Michel_Debosthttps://www2.oberlin.edu/faculty/mdebost/https://alchetron.com/Michel-DebostDebostM. DebostMichel DebosteМишель ДебоМишель Дебостミシェル・デボストミシェル・ドボストOrchestre De ParisOrchestre De Chambre De ToulouseSecolo Barocco Ensemble InstrumentalEnsemble Instrumental Sylvie Spycket + +833839John WetherhillClassical bassoonistCorrectJohn WetherillEnsemble IntercontemporainIndianapolis Symphony Orchestra + +833840Lynn HarrellAmerican classical cellist, born 30 January 1944 in New York City, New York, United States; died 27 April 2020. +He was married to [a622752].Needs Votehttp://www.lynnharrell.com/https://en.wikipedia.org/wiki/Lynn_HarrellHarrellLyn HarellLynne HarrellThe Cleveland OrchestraMarlboro Festival OrchestraThe Cleveland Piano Trio + +833843Alain MarionFrench classical flautist (Marseille, 25 December 1938 – Seoul, South Korea, 16 August 1998).Needs Votehttps://en.wikipedia.org/wiki/Alain_MarionMarionアラン・マリオンOrchestre De Chambre Jean-François PaillardCollegium Musicum De ParisValois Instrumental EnsembleEnsemble Instrumental De France + +833849Marc MarderClassical contrabass player and composer, he is professor in Paris.Needs Votehttp://www.marcmarder.com/M. MarderMark MarderEnsemble IntercontemporainOrchestre National De FranceMarlboro Festival OrchestraSeigen Ono Ensemble + +833850Sylvie GazeauSylvie GazeauBorn in Nice, on January 30, 1950, Sylvie Gazeau is a violinist who studied at the Conservatoire Nationale of Nice in France. She won the Premier Prix de Violin of the Conservatoire National Superieur du Musique de Paris in 1965, and the Premier Prix de Musique de Chambre in 1967. Gazaeau spent many years as the first violinist of the Melos Ensemble of London, and as a violin soloist for the Ensemble Intercontemporain in Paris. Since 1985, she has served as a professor of violin and chamber music at the Paris Conservatory of Music/CNSMDP.Needs VoteGazeauEnsemble IntercontemporainI Solisti Delle Settimane Musicali Internazionali di Napoli + +833851Pinchas ZukermanIsraeli-American violinist, viola player, conductor, and pedagogue +Born July 16, 1948 in Tel Aviv, Israel. +Appointed Music Director of Canada’s National Arts Centre Orchestra in 1998.Needs Votehttps://en.wikipedia.org/wiki/Pinchas_Zukermanhttps://www.sonyclassical.com/artists/artist-details/pinchas-zukerman-2https://www.bach-cantatas.com/Bio/Zukerman-Pinchas.htmhttps://www.imdb.com/name/nm0958529/P. ZukermanPinchas ZuckermanPinchas ZukrmanPinchaz ZukermanZuchermanZukermanZukermannПинкас ЦукерманПинхас Цукерманズーカーマンピンカス・ズーカーマン儲克曼National Arts Centre Orchestra + +833877Mark PadmoreClassical tenor (born in London, 8 March 1961).Needs Votehttps://web.archive.org/web/20240813134452/http://www.markpadmore.com/https://www.maxinerobertson.com/artists/mark-padmore/https://en.wikipedia.org/wiki/Mark_Padmorehttps://www.bach-cantatas.com/Bio/Padmore-Mark.htmM. PadmoreMarc PadmorePadmoreThe Hilliard EnsembleThe Cambridge SingersThe Tallis ScholarsThe SixteenLes Arts FlorissantsThe English Concert ChoirTaverner ChoirThe Consort Of MusickeThe Schütz Choir Of LondonEnsemble Vocal Européen De La Chapelle Royale + +833878David BeavanClassical [b]bass vocalist[/b] and [b]musical director[/b] of the Harborough Singers.CorrectA CockneyHarry*The Ambrosian SingersThe Hilliard EnsembleThe English Chamber ChoirThe English Concert ChoirPro Cantione AntiquaSwingle IIConsort Of Voices + +833879Ashley StaffordClassical countertenor and former treble vocalistNeeds VoteA. StaffordA.StaffordStaffordThe Hilliard EnsembleThe Tallis ScholarsHuelgas-EnsembleThe Monteverdi ChoirThe English Concert ChoirPro Cantione Antiqua + +833887Chor Der Staatsoper BerlinGerman operatic choir. +It belongs to the "Staatsoper unter den Linden" ([l295449]), the Berlin opera, which was formerly in the GDR-part of Berlin. During the time of the GDR, the choir was also called "Chor Der Deutschen Staatsoper Berlin". + +The similarly named "Deutsche Oper Berlin" is located in the Western part of Berlin and also has a choir, which can be found at: [a850906].Correcthttp://www.staatsoper-berlin.orgBerlijns Staatsopera KoorBerlin State OperaBerlin State Opera ChoirBerlin State Opera ChorusBerlin State Opera House ChorusBerlin State OrchestraChoeur De L'Opéra D'Etat De BerlinChoeur de L'Opéra de BerlinChoeursChoeurs De L'Opéra D'Etat De BerlinChoeurs De L'Opéra De BerlinChoeurs De L'Opéra National De BerlinChoeurs De L’Opéra D’Etat de BerlinChoeurs de l'Opéra de BerlinChoirChoir Of The State Opera House, BerlinChoir Of The State-Opera-House, BerlinChorChor D. Staatsoper BerlinChor Der Berliner StaatoperChor Der Berliner StaatsoperChor Der Deutchen Staatsoper BerlinChor Der Deutsche Staatsoper BerlinChor Der Deutschen StaatsoperChor Der Deutschen Oper BerlinChor Der Deutschen StaaatsoperChor Der Deutschen StaatsoperChor Der Deutschen Staatsoper BerlinChor Der Deutschen Staatsopser BerlinChor Der Deutschesn Staatsoper BerlinChor Der StaatsoperChor Der Staatsoper Berlin Und OrchesterChor Der Staatsoper Unter Den LindenChor Der Staatsoper, BerlinChor Des Orchesters Der Staatsoper, BerlinChor Deutschen Staatsoper BerlinChor d. StaatsoperChor d. Staatsoper, BerlinChor der Deutsch.Staatsoper BerlinChor der Deutschen Staatsoper BerlinChor der deutschen Staatsoper BerlinChor-Chor-Mitgl. D. Staats-Oper, BerlinChor-Mitgl. Der Staatsoper BerlinChor-Mitglieder Der Staatsoper BerlinChormitglieder Der Staatsoper BerlinChorusChorus Berlin State OperaChorus Of Deutsche Staatsoper Unter Den LindenChorus Of German State Opera, BerlinChorus Of State Opera House, BerlinChorus Of The Berlin StaatsoperChorus Of The Berlin State OperaChorus Of The Deutsche Staatsoper BerlinChorus Of The German Opera HouseChorus Of The German State OperaChorus Of The German State Opera, BerlinChorus Of The Municipal Opera, BerlinChorus Of The Staatsoper, BerlinChorus Of The State Opera HouseChorus Of The State Opera House, BerlinChorus Of The State Opera, BerlinChorus of the German State Opera, BerlinChorus of the State Opera, BerlinChœur De L'Opéra De BerlinChœur de L'Opera D'etat BerlinChœur du Staatsoper unter den LindenChœursChœurs De L'Opera D'Etat De BerlinCoroCoro De La Opera Del Estado De BerlínCoro De La Ópera De BerlínCoro Dell' Opera Di BerlinoCoro Dell'Opera Di StatoCoro Dell'Opera Municipale Di BerlinoCoro Dell'Opera di Stato di BerlinoCôro Da Ópera Estadual De BerlimDer Chor Der Deutschen Staatsoper BerlinDer Chor Der Staatsoper BerlinDer Deutschen Staatsoper BerlinDer Staatsoper BerlinFemale Chorus Of The Berlin State OperaFrauenchor (Mitgl. d. Staatsoper, Bln.)Frauenchor Der Staatsoper, BerlinGemischter Chor (Mitglieder Der Staatsoper Berlin)Gemischter Chor Mit Mitgliedern Der Kapelle Der Staatsoper BerlinGerman State Opera ChorusKnabenchor Der Deutschen Staatsoper BerlinKnabenchor Der Staatsoper BerlinKonzertchor Der Staatsoper Unter Den LindenKoor van de Duitse StaatsoperaLes Chœurs De L'Opéra De BerlinMembers Of The Berlin State Opera ChorusMitgl. D. Chores. D. Staatsoper, BerlinMitgl. D. Staatsoper BerlinMitgl. Des Chores Der Staatsoper BerlinMitgl. d. Chores d. Staatsoper, BerlinMitglieder Der Deutschen Staatsoper BerlinMitglieder Der Staatsoper BerlinMitglieder Der Staatsopern-ChorsMitglieder Des ChoresMitglieder Des Chores Der Staatsoper BerlinMitglieder Des Chores Der Staatsoper, BerlinMitglieder Des Chors Der Staatsoper BerlinMitglieder Des Chors Der Staatsoper BerlinMitglieder Des Staatsopern-Chores, BerlinMitglieder Des Staatsopern-ChorsMitglieder Des StaatsopernchoresMitglieder Des Staatsopernchores Der Staatsoper, BerlinMitglieder d. Staatsoper BerlinMitglieder der Deutschen Staatsoper BerlinMitglieder der Staatsoper BerlinMitglieder des StaatsoperchoresMänner Chor Der Staatsoper BerlinMänner-ChorMännerchorMännerchor Der Deutschen Oper BerlinMännerchor Der Deutschen Staatsoper BerlinMännerchor Der Staatsoper BerlinMännerchor Mit Mitgliedern Der Kapelle Der Staatsoper, BerlinMännerchor der Deutschen Staatsoper BerlinOper Chor Der Staatsoper BerlinSbor Německé Státní Opery, BerlínSolisten und ChorStaatsoper BerlinStaatsoperchor BerlinStaatsopernchorStaatsopernchor BerlinState Opera BerlinState Opera Choir BerlinState Opera ChorusState Opera Chorus with Soprano and OrchestraState Opera Chorus, BerlinThe Berlin State Opera ChorusThe Chorus of the Berlin State OperaThe State Opera ChorusThe State Opera House ChorusVerstärkter Chor der Deutsche Staatsoper BerlinWomen's Chorus Of The Staatsoper, BerlinХорХор Берлинской Городской ОперыХор Берлинской Государственной ОперыХор Берлинской ОперыChor Der Königlichen Hofoper BerlinMotoki Kinoshita (2)Herrenchor Des Chors Der Deutschen Oper Berlin + +833891Waltraud MeierWaltraud MeierGerman mezzo-soprano vocalist, born 9 January 1956 in Würzburg, Germany. +She is particularly known for her Wagnerian roles as Kundry, Isolde, Ortrud, Venus, Fricka, and Sieglinde, but has also had success in the French and Italian repertoire appearing as Eboli, Amneris, Carmen, and Santuzza. She resides in Munich.Needs Votehttps://www.waltraud-meier.com/https://en.wikipedia.org/wiki/Waltraud_MeierJanet BakerMeierヴァルトラウト・マイヤーヴァルトラウド・マイヤー + +833904Guillaume DufayGuillaume Dufay (or Du Fay, Du Fayt)French composer and music theorist of the late Middle Ages / Early Renaissance (born c. 1400, Cambrai (or maybe Bersele or Chimay), France - died November 27, 1474, Cambrai, France). Central figure in the Burgundian School. + +The life and music of Guillaume Dufay are among the most difficult to circumscribe for major Renaissance composers. One point of clarity is that Dufay was considered by far the leading composer of his day, a musician of almost unparalleled eminence, and one of the most famous men of his generation. Dufay's large and varied musical output, its extent only now coming into focus in some cases, acted to define the new musical style of the early-to-mid-fifteenth century and with it the course of Western music into the High Renaissance. Dufay's influence over musical composition was complete and permanent, affecting every genre and sphere. The singularity of his eminence can best be compared to that of [a=Ludwig Van Beethoven] or perhaps [a=Guillaume de Machaut], but in fact Dufay had the broader contemporary reputation.Needs Votehttps://en.wikipedia.org/wiki/Guillaume_Du_Fayhttps://www.britannica.com/biography/Guillaume-Dufayhttps://www.medieval.org/emfaq/composers/dufay.html? DufayDu FayDufayDufay G.Faux DufayG. DufaiG. DufayGuilaume DufayGuillaume Du FayGuillaume DuFayGuillaume DufaiGuillaume DufaÿGuillaune DufayGuilleaume DufayGuillelmi DufayGuillermus DufayGulielmus DufayГ. ДюфаиГийом Дюфаи + +833949Walter FryeEnglish composer of the early Renaissance (d. 1474?).Correcthttp://en.wikipedia.org/wiki/Walter_FryeFryeW. Frye + +833961Patrizia VaccariItalian soprano vocalistNeeds VotePatrizia "Patty" VaccariVaccariCappella Musicale Di S. Petronio Di BolognaLa Capella Reial De CatalunyaCoro Del Centro Di Musica Antica Di PadovaEnsemble Arte-MusicaFortuna EnsembleCappella ArtemisiaEnsemble Cantimbanco + +833964Enrico CasazzaItalian classical violinist.Needs Votehttp://www.enricocasazza.com/Casazza E.E. CasazzaEuropa GalanteConcerto ItalianoIl Complesso BaroccoAlessandro Stradella ConsortLa Magnifica ComunitàEnsemble Barocco Sans SouciLe Musiche NoveLe Concert de la LogeLa Follia Barocca + +833965Antonio AbeteAntonio AbeteBass vocalist who has made appearances at the Donizetti in Bergamo, the Grande in Brescia, the Sociale of Como, the Cremona Ponchielli, the Tokyo Globe, and the Turin Teatro Regio.Needs VoteA. AbeteAbeteAntonio AbetteCappella Musicale Di S. Petronio Di BolognaLes Arts FlorissantsConcerto VocaleLa Capella Reial De CatalunyaConcerto ItalianoI Febi ArmoniciAuser MusiciCoro Della Radio Televisione Della Svizzera ItalianaIl Complesso BaroccoSacro & Profano + +833967Roberta GiuaClassical soporano vocalistNeeds VoteConcerto Delle Dame Di FerraraCoro Della Radio Televisione Della Svizzera ItalianaOficina Musicum + +833970Guillaume de MachautGuillaume de Machaut (or Machault)Medieval French poet and composer (born c. 1300, Reims, France - died April 1377, France).Needs Votehttps://en.wikipedia.org/wiki/Guillaume_de_Machauthttps://www.britannica.com/biography/Guillaume-de-Machauthttp://www.medieval.org/emfaq/composers/machaut.htmlhttps://adp.library.ucsb.edu/names/101939G de MachautG. De MachaultG. De MachautG. MachautG. de MachaultG. de MachautG. de MachoutG. de MashautG. de MauchautG.d. MachautGuillame de MachaultGuillame de MachautGuillamue MachautGuillaume De MachaultGuillaume De MachautGuillaume MachautGuillaume de MachaultGuillaume de Machaut IGuillaume de MarchanuGuillaume de MarchaudGuillaume de Mascandio MachautGuillaune de MachautGulliame De MachaudMachaultMachautГ. МашоГийом Де Машоგიომ მაშო + +834007Wolfram GraulSound engineer and producer for recordings of classical music.CorrectGraulW. GraulWilhelm Meister No.8Wolfram Graul-Kern + +834017Robert Jones (3)British conductor & singer. Founding Member of [a=The Tallis Scholars]. Works with the [a=Gabrieli Consort] and the [a=Orlando Consort].Needs Votehttp://www.stbrides.com/music/music-staff.phpR. JonesRobert Harre-JonesThe SixteenThe English Concert Choir + +834019Daniel NormanClassical tenor vocalistNeeds VoteDan NormanNormanMagnificatThe English Concert ChoirPolyphonyWestminster Cathedral ChoirThe Brabant Ensemble + +834022Simon Wills (2)Simon WillsClassical trombonist, composer, librettist, and Professor of Trombone. +He was a lutenist and continuo player, switching to the trombone after a hand injury. After a spell in the [l1097410], he joined first [a1821141] and then the [a=London Symphony Orchestra] (1988-1990) and for 14 years was also Principal Trombone of [a=The Chamber Orchestra Of Europe]. He has been a member of the [a=Endymion Ensemble] since the beginning. Professor of Trombone at [l305416] since 1986.Needs Votehttp://www.simon-wills.co.uk/https://www.facebook.com/simon.wills.121https://open.spotify.com/artist/4H7yG67mor0R066BxW8ceAhttps://music.apple.com/us/artist/simon-wills/301231350https://www.endymion.org.uk/about/simon-wills-trombone/https://www.havantorchestras.org.uk/compfeb12.phphttps://www.gsmd.ac.uk/staff/professor-simon-wills-fgs-ba-arcmhttps://www.brasswindpublications.co.uk/acatalog/Wills.htmlLondon Symphony OrchestraLondon SinfoniettaThe Chamber Orchestra Of EuropeThe Welsh National Opera OrchestraEndymion Ensemble + +834047Le Concert SpirituelFrench instrumental & vocal ensemble Formed in 1987. Founder & director is [a=Hervé Niquet]. + +LE CONCERT SPIRITUEL +42 rue du Louvre 75 001 Paris +Tel (33) 01 40 26 11 31 +Fax (33) 01 40 13 91 35 +info@concertspirituel.comNeeds Votehttp://concertspirituel.com/https://en.wikipedia.org/wiki/Le_Concert_SpirituelA Concert Spirituel ÉnekegyüttesChoeur Du Concert SpirituelChoeur Et Orchestre Du Concert SpirituelChoeur du Concert SpirituelChœur Du Concert SpirituelChœur Et Orchestre Le Concert SpirituelLe Concert Spirituel Orchestra & Chorusル・コンセール・スピリチュエルOlivier BriantTormod DalenYannis RogerHervé NiquetPatrick Cohën-AkenineHilary MetzgerJocelyn DaubigneyDominique VisseVincent BouchotPeter HarveyMarie-Liesse BarauAlain GervreauStefan LegéeFrançois PolyAndrea MionAnnabelle LuisGilles RapinSally Bruce-PayneLuc MarchalAnne-Marie JacquinRyland AngelMarianne MullerJean-Pierre NicolasSophie CerfFrançois CharruyerEdmond HurtraitSophie JolisFrançois FauchéFlorence StroesserBertrand DuboisPaul WillenbrockAlice PierotNicolas AndréEva GodardJulie MondorFranck PoitrineauFabien DornicFrère Jean-Christophe ClairLaurent StewartGeoffroy BuffièreJean-Louis GeorgelMarc BusnelArnaud MarzoratiJulie HasslerRomain ChampionMatthew White (6)Jean-Charles DenisLaurent BourdeauxCaroline DelumeLaurent David (2)Thi Lien TruongSerge GoubioudGrégoire Fohet-DuminilPierre CorbelBenoît PorcherotNicolas MaireNathalie FontaineBéatrice GobinVincent BlanchardStéphane TambyMatthieu HeimBenjamin ChénierHélène RicherElisabeth GeigerMélanie FlahautJean-Pierre GarciaJérémie PapasergioGraham NicholsonChristel BoironGuillaume OlryHéloïse GaillardChantal SantonDavid WitczakEdwige ParatArnaud RaffarinLaurent Le ChenadecLaura PudwellElsa FrankMarie LenormandYuka SaïtoSalomé HallerFrançoise RojatDaniel CabenaIsabelle SchmittDidier BoutureMarie-Pierre WattiezJoël LahensMichelle TellierAgathe BoudetMarie GriffetCaroline MarçotStéphan DudermelRandol RodriguezViolaine Le ChenadecMarie RouquiéIsabelle CornélisGésine MeyerSamantha MontgomeryKatherine WatsonCharles BarbierAlain PégeotJean-François MadeufKrzysztof LewandowskiMyriam CambrelingSara EganLuc DevanneGuy DuvergetÉric De FontenayFrédéric BourdinBérengère MaillardElisabeth PassotFrançois Saint-YvesPierre-Yves MadeufNathalie PetibonIgino ConforziHélène GuilmetteHélène HouzelAnaïs RamageGuillaume CuillerMarie-Louise DuthoitNadia LavoyerRomain BocklerYann RollandFrédéric BétousGabriel JublinThomas DoliéAnne ChevallerauCyrille GrenotFrédéric AlbouAurélien DelagePhilippe CanguilhemSolenne GuilbertSonia Tedla ChebreabAlice HabellionGauthier FenoyAkiko TodaRichard BirenEdouard HazebrouckEric ChopinZachary WilderJudith DepoutotLucia NigohossianAlice KamenezkyAlice GlaieTiphaine CoquempotCyrille DuboisPhilippe GenestierTassis ChristoyannisMarie KalinineMarie-Amélie ClémentLucie LacostePaul-Henry VilaGuy LathurazErwin ArosLaurent MadeufAmine HadefBrigitte QuentinMartial PauliatJérôme PrincéChristophe BaskaJean-Luc HoBenoît DescampsEva ZaïcikDanaé MonniéJérémie DelvertPauline LeroyNils De DinechinTimothy N. JohnsonGwenaëlle CleminoPierre PernyEugénie de MeyPascal RichardinBenjamin LescoatMarion MallevaesClément DebieuvreMarianne BylooMatthieu CamilleriAude FenoyAna MeloMarc ScaramozzinoJean-Baptiste AlcouffeKoji Yoda (2)Simon BaillyJustin BonnetJordann MoreauSamuel GuibalXavier MiquelLaurent SauronMarie FavierGabriel-Ange BrussonJean-François LungJulia BeaumierAlexandre BaldoDamien FerranteEmmanuelle LaineMartin CandelaFrançois HéraudJérôme Collet (2)Marguerite HumberArmelle MarqMarie SerriVlad CrosmanBrice Claviez-HombergVirgile PellerinLeonardo Ortega (2)Cédric MeyerMichael Smith (119)Etienne GarreauAntoine Strub + +834048Hervé NiquetBass vocalist and conductor. +He is the founder of the orchestra [a=La Nouvele Sinfonie].Needs Votehttps://en.wikipedia.org/wiki/Herv%C3%A9_NiquetHerve NiquetHervé NiguetNiquetエルヴェ・ニケLe Concert SpirituelLes Arts FlorissantsLa Chapelle RoyaleLa Nouvele Sinfonie + +834050Jean-Baptiste LullyJean-Baptiste Lully (born Giovanni Battista di Lulli)French composer from the Baroque era. +Born November 28, 1632, Florence, Italy - died March 22, 1687, Paris, France. +His eldest son is [a=Louis Lully]. Another one of his descendant is [a2225647]. +Needs Votehttp://sitelully.free.fr/https://en.wikipedia.org/wiki/Jean-Baptiste_Lullyhttps://www.britannica.com/biography/Jean-Baptiste-Lullyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102411/Lully_Jean_BaptisteDe LulliEan Baptiste LullyG. B. LulliG. B. LullyG.B. LulliGiambattista LulliGiovanni Battista LulliJ-B LullyJ-B. LullyJ. B LullyJ. B. LulliJ. B. LullyJ. Baptiste LullyJ. LullyJ.-B. LulliJ.-B. LullyJ.-B.LullyJ.-Baptiste LullyJ.B LullyJ.B. LulliJ.B. LullyJ.B.LullyJB LullyJean B. LullyJean Baptist LullyJean Baptiste LullyJean-Baptiste LulliJean-Paptiste LullyL. B. LullyLulliLulli-MolièreLullyM. De LullyM. de LullyMonsieur De LullyMr. de LullyЖ. Б. ЛюллиЖ. ЛюллиЖ.Б. ЛюллиЛюлиリュリ + +834051Pierre FournierPierre FournierPierre Fournier (June 24, 1906 – January 8, 1986) was a French cellist who was called the "aristocrat of cellists," on account of his elegant musicianship and majestic sound. + +[b]For the photographer, please use [a=Pierre Fournier (2)].[/b] + +He was born in Paris, the son of a French Army general. His mother taught him to play the piano, but he had a mild case of polio as a child and lost dexterity in his feet and legs. Having difficulties with the piano pedals, he turned to the cello. + +He graduated from the Paris Conservatory at 17, in 1923. He was hailed as "the cellist of the future" and won praise for his virtuosity and bowing technique. He became well known when he played with the Edouard Colonne Orchestra in 1925. He began touring all over Europe. He played with all the great musicians of the time, and recorded the complete chamber music of Brahms and Schubert for the BBC on acetates. However, these deteriorated before the recordings could be transferred to a more durable medium. + +Fournier taught at the École Normale de Musique in Paris and the Paris Conservatory from 1937 to 1949. He made his first tour of the United States in 1948 and played to great acclaim in New York and Boston. + +From 1956 on, he made his home in Switzerland, although he never relinquished his French citizenship. In 1963, he was made a member of the French Legion of Honor. + +He continued performing until two years before his death at the age of 79. He also continued to teach privately at his home in Geneva: the British cellist Julian Lloyd Webber was among his pupils. + +His son Jean-Pierre became a pianist performing under the name of [a946553]. +Needs VoteFournierM. P. FournierM. Pierre FournierP. FournierП. ФурньеПьер Фурньеピエール・フルニエFestival Strings LucerneKrettly Quartet + +834067Krisztina LakiKrisztina Laki or Krisztina LákiHungarian soprano (born 1944 in Budapest).Correcthttp://www.krisztinalaki.com/index.htmlK. LakiKristina LakiKrisztina LakyKrisztina LákiLakiLáki + +834073Karl RidderbuschGerman Bass vocalist, born 29 May 1932 in Recklinghausen, Germany and died 21 June 1997 in Wels, Austria.Needs Votehttp://www.bach-cantatas.com/Bio/Ridderbusch-Karl.htmhttp://en.wikipedia.org/wiki/Karl_RidderbuschCarl RidderbuschK. RidderbuschRidderbuschКарл Риддербушカール・リッダーブッシュ + +834088Philippe HerreweghePhilippe HerrewegheBelgian conductor, born May 2, 1947, principally known as conductor of [a=Johann Sebastian Bach]'s works. + +In 1970 he founded the [a=Collegium Vocale] Ghent. In 1977 he founded another ensemble in Paris, [a=La Chapelle Royale], followed by the Ensemble Vocale Européen, specialized in Renaissance polyphony, and the [a=Orchestre Des Champs Elysées], founded in 1991 and specialized in the repertoire of the romantic and pre-romantic era on original instruments. + +As a guest conductor, Philippe Herreweghe has conducted a number of famous orchestras including the Concertgebouw Orchestra, Amsterdam, the Stavanger Symphony Orchestra, the Rotterdam Philharmonic, the Dutch Broadcasting Orchestra, the Mahler Chamber Orchestra, the Berlin and Vienna Philharmonic, and the Royal Flemish Philharmonic.Needs Votehttps://en.wikipedia.org/wiki/Philippe_Herreweghehttps://www.bach-cantatas.com/Bio/Herreweghe-Philippe.htmDr. Philippe HerrewegheFilip HerrewegheHerrewegheP. HerreweghePh. HerreweghePhilippe Herrwegheフィリップ・ヘレヴェッヘOrchestre Des Champs ElyséesCollegium VocaleLa Chapelle Royale + +834090Ian BostridgeIan Charles BostridgeBritish tenor, born 25 December 1964 in London, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Ian_BostridgeBostridgeИан Бостриджイアン・ボストリッジ + +834092Franz Xaver SüssmayrFranz Xaver SüßmayrFranz Xaver Süßmayr (* July 22, 1766 in Schwanenstadt, Upper Austria; † 17 September 1803 in Vienna) was an Austrian composer.Needs Votehttps://de.wikipedia.org/wiki/Franz_Xaver_S%C3%BC%C3%9Fmayrhttps://www.astrum.si/Si-SussF. X. SussmayrF. X. SüßmayrF. X.SüssmayrF.X. SüssmayerF.X. SüssmayrF.X. SüßmayrFranz SüssmayerFranz SüssmayrFranz SüßmayrFranz XaverFranz Xaver SüssmayerFranz Xaver SüßmayerFranz Xaver SüßmayrFranz Zaver SüßmayrSuessmayrSussmayerSussmayrSüssmayerSüssmayrSüßmayrXaver Süssmayr + +834094Sibylla RubensGerman classical soprano.Needs Votehttp://sibyllarubens.com/RubensSybilla RubensRIAS-KammerchorThe Amsterdam Baroque ChoirBarockorchester L'Arpa Festante + +834101Max BruchMax Christian Friedrich BruchGerman Romantic composer and conductor, born 6 January 1838 in Cologne, and died 2 October 1920 in Berlin, German Empire.Needs Votehttps://en.wikipedia.org/wiki/Max_Bruchhttps://www.deutsche-biographie.de/sfz39107.htmlhttps://www.rheinische-geschichte.lvr.de/Persoenlichkeiten/max-bruch/DE-2086/lido/5cbecc67e20e32.14882136https://adp.library.ucsb.edu/index.php/mastertalent/detail/103331/Bruch_MaxBruchBruch M.Bruch MaxBruhM BruchM. BruchM. BruchasM. BruhM. БрухM.BruchMakss BruhsMax Bruch (1838-1920)Max Friedrich BruchБрухМ. БрухМ.БрухМакс Брухブルックブルッフマックス・ブルッフマックス・ブルッフ + +834122Moritz MoszkowskiBorn August 23, 1854 in [url=https://en.wikipedia.org/wiki/Wrocław]Wrocław[/url], died March 4, 1925 in Paris. German composer and pianist of Polish-Jewish descent. +Also known as Maurycy Moszkowski.Needs Votehttps://en.wikipedia.org/wiki/Moritz_Moszkowskihttps://www.britannica.com/biography/Moritz-Moszkowskihttps://www.naxos.com/person/Moritz_Moszkowski/24649.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103263/Moszkowski_MoritzM. MoshkovskyM. MoskovskyM. MoskowskiM. MoskowskyM. MoszkovskiM. MoszkowkiM. MoszkowskiM. MoszkowskyM. MoszokowskiM. MoškovskisM.MoszkowskyMaurice MoszkowskiMaurycy MoszkowskiMoritz (Maurycy) MoszkowskiMoritz MoskowskiMoritz MoskowskyMoritz MoszkovskiMoritz MoszkowskyMoritz MoßkowskiMoskovskiMoskowskiMoskowskyMoszkovskiMoszkovskyMoszkowskiMoszkowskyMoszkowszkiMoszowskyMozkowskyMozskowskiМ. МошковскийМосковскагоМошковскийモシュコフスキーモーリッツ・モシュコフスキ + +834157Roger DelmotteFrench classical trumpet player, born 20 September, 1925 in Roubaix.Needs Votehttps://en.wikipedia.org/wiki/Roger_Delmottehttps://fr.wikipedia.org/wiki/Roger_DelmotteDelmotteR. DelmotteR. DemotteOrchestre National De L'Opéra De ParisOrchestre Des Cento SoliEnsemble De Cuivres Gabriel MassonOrchestre de Chambre Fernand OubradousEnsemble Moderne De ParisEnsemble De Cuivres Du Théâtre National De L'Opéra De Paris + +834226Saint Louis Symphony OrchestraFounded in 1880 by Joseph Otten as the St. Louis Choral Society, the St. Louis Symphony Orchestra is the second-oldest symphony orchestra in the United States, preceded only by the New York Philharmonic.Needs Votehttps://www.slso.org/https://www.facebook.com/saintlouissymphonyhttps://x.com/slsohttps://www.youtube.com/user/saintlouissymphonyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100037/St._Louis_Symphony_OrchestraMembers Of Saint Louis Symphony Woodwind QuintetMembers Of The Saint Louis Symphony OrchestraMembers Of The St. Louis Symphony OrchestraOrchestraOrchestra Sinfonica Di Saint LouisOrchestre De Saint LouisOrchestre De Saint-LouisOrchestre Symphonique De St. LouisOrchestre Symphonique De Saint LouisOrchestre Symphonique De Saint-LouisOrchestre Symphonique De St LouisOrchestre Symphonique De St-LouisOrchestre Symphonique De St. LouisOrchestre Symphonique de St. LouisOrquesta Sinfonica De Saint LouisOrquesta Sinfonica De San LuisOrquesta Sinfonica de San LuisOrquesta Sinfonica de St. LouisOrquesta Sinfónica De Saint LouisOrquesta Sinfónica De Saint-LouisOrquesta Sinfónica de Saint LouisOrquestra Sinfônica De Saint LouisOrquestra Sinfônica De St. LouisOrquestra Sinfônica de St. LouisS. Louis Symphony OrchestraSaint LouisSaint Louis OrchestraSaint Louis SymphonySaint Louis Symphony Chorus & OrchestraSaint Louis Symphony OrchSaint Louis Symphony Orchestra & ChorusSaint Louis Symphony Orchestra And ChorusSaint Louis Symphony Orchestra ChorusSaint Louis Symphony Orchestra, TheSaint-Louis Symphony OrchestraSimfonicni Orkester St. LouisaSimfonijski Orkestar St. LouisaSimfonični Orkester S. LouisaSimfónični Orkester St. LouisaSinfonisches Orchester Saint LouisSt Louis Symphony OrchestraSt Louis Symphony Orchestra, TheSt. Louis SOSt. Louis SymphonySt. Louis Symphony OrchestaSt. Louis Symphony OrchestraSt. Louis Symphony Orchestra MembersSt. Louis Symphony Orchestra, TheThe Saint Louis Symphony OrchestraThe St. Louis SymphonyThe St. Louis Symphony OrchestraОркестар Из Сен ЛуисаСимфонический Оркестр Сент-Луисаセントルイス交響楽団セント・ルイス交響楽団Schuyler Symphony OrchestraLinda MossAlvin ScoreDouglas DavisRichard SherRich O'DonnellBarbara Herr OrlandLeonard SlatkinJennifer KummerPaul Silver (2)Beth GutermanYurika MokGail Kruvand-MoyeJames StaglianoPeter Bowman (2)Brant TaylorLazar GosmanVladimir GolschmannAnne FagerburgGene PokornyFlorin ParvulescuShannon WoodMarilyn ParkIsabel TrautweinJohn KasicaGeorge SilfiesHelen Kim (2)Yuan TungJohn KormanSusan SlaughterAlvin McCallXi ZhangAlfred GenoveseJohn ZirbelThomas A. DummFrances TietovJacques IsraelievitchJohn Sant'AmbrogioBarbara LibermanNurit Bar-JosefKevin CobbIrene BreslawSeymour RosenfeldStephen BalderstonJelena DirksMark Sparks (2)Kauko KahilaChristian WoehrSteve Freeman (4)Scott Andrews (4)Peter Henderson (3)Jonathan ReycraftEllen DePasqualeMichel GusikoffAndrew CuneoJisun YangSamuel KraussJan GippoDaniel Lee (5)Gerard PaganoShawn WeilMelissa BrooksElizabeth DziekonskiGregory RoosaCatherine LehrTina WardManuel Ramos (5)Ling Ling GuanDarwyn AppleTakaoki SugitaniCarolyn WhiteShannon Farrell WilliamsRichard Holmes (4)Warren GoldbergSarah HoganJames Meyer (2)Sébastien GingrasDavid Kim (3)Wendy Plank RosenLeonid GotmanEmily HoAndrew GottJoo KimJooyeon KongSusan GordonCharlene ClarkJenny Lind JonesJoshua MaccluerChris TantilloJohn Macfarlane (2)Kristin AhlstromErik HarrisHeidi Harris (2)Christopher CarsonAlison HarneyThomas Stubbs (2)Stephen LangeNicolae Bica (2)Justin BerrieDana Edson MyersJames CzyzewskiCarolyn BanhamKyle LombardHaruka WatanabeRonald MoberlyAngie SmartHiroko YoshidaGerald FlemingerDonald Martin (2)Kathleen MattisErin SchreiberFelicia FolandRichard BrewerJennifer NitchmanEva KozmaCeleste GoldenMorris JacobRobert Silverman (3)Silvian IticoviciJessica ValeriDiana HaskellLisa ChongTimothy MyersMichael WalkBjorn RanheimJames WehrmanJonathan VinocourThomas DrakeDeborah BloomBarbara OrlandLynn HagueDavid HalenBradford BuckleyMichael Sanders (7)Asako KubokiAndrea KaplanDavid DerisoMike ChenPhilip RossLawrence StriebyGeorge BerryTod BowermasterKen KulosaLorraine Glass-HarrisOscar ZimmermanAnn ChoomackEdward OrmondMelvyn JerniganAlbert TiptonRoger KazaJacob Berg (2)William James (6)Rebecca Boyer HallCaroline SchaferTimothy ZavadilThomas JöstleinMichelle DuskeyDi ShiEva SternJessica ChengAnn Fink (2)Alan Stewart (4)Allegra LillyAndrew Thompson (15)Elizabeth ChungAnna Spina (2)Melody Lee (2)Davin RubiczCecilia BelcherXiaoxiao QiangJulia ErdmannKarin BliznikJames Moffitt (3)Marissa RegniLois WannRoland PandolfiGary Smith (37)Eugene EspinoAmanda Stewart (3)Andrea JarrettTzuying HuangJeffrey StrongChristopher Dwyer (2)Stacy SimpsonJessica BlackwellRobert Coleman (7)Roger GrossheiderBeverly SchieblerYin XiongTage LarsenJohn McGrossoJoseph KleemanMarc Gordon (5)Julie Thayer (2)Peter Otto (5)Brendan Fitzgerald (5)Elisa BarstonDana LawsonRoger Davenport (4)Aleck BelcherRobert LauverJonathan RandazzoGeorge Goad (2)William GebhardtXiomara MassJane CarlSteven Franklin (3)Leonid Plashinov-JohnsonRichard MuehlmannJanice Coleman (2)Janice Smith (7)Frances TiRoland PandolThomas Parkes (3)Lee GronemeyerMargaret SalomonSusan KierWilliam Martin (18)Eiko KataokaHelen ShklarJohn Lippi (2)Judith RiedigerM. Louise GrossheiderIlya FinkMasayoshi KataokaSavely SchusterLouis Kampouris (2)Robert Mottl (2)Mindy H. Park + +834229Christoph von DohnányiGerman-born conductor, born 8 September 1929 in Berlin, died 6 September 2025 in Munich. +Chief Conductor of [a653372] (1964-1970). General Music Director of the [a4419998] (1968-1977). Opera Director of [a3010101] in 1972. Intendant & Music Director at the [a941854] (1972-1984). Music Director Designate (1982-1984) & Sixth Music Director of [a547971], succeeding [a415720], becoming Music Director Laureate in 2002. Principal Guest Conductor (1994-1997) & Principal Conductor (1997-2008) of the [a=Philharmonia Orchestra], becoming Honorary Conductor for Life in 2008. Music Adviser & Principal Guest Conductor of the [a=Orchestre De Paris] (1998-2000). Chief Conductor of [a3103680] (2004-2010). In 2013, he was awarded an Honorary Doctorate by the [l527847]. +Brother of [a=Klaus von Dohnanyi]; father of [a=Justus von Dohnányi] (from his first marriage); grandson of [a1116811]; nephew of [a=Dietrich Bonhoeffer]. He was married to [a=Anja Silja] (second wife; divorced).Needs Votehttps://christophvondohnanyi.com/https://www.facebook.com/ChristophvonDohnanyihttps://x.com/CvDohnanyi85https://www.instagram.com/christophvondohnanyi/https://en.wikipedia.org/wiki/Christoph_von_Dohn%C3%A1nyihttps://www.imdb.com/name/nm0970593/https://www.bach-cantatas.com/Bio/Dohnanyi-Christoph.htmhttps://www.britannica.com/biography/Christoph-von-Dohnanyihttps://philharmonia.co.uk/who-we-are/titled-artists/christoph-von-dohnanyi/https://cso.org/about/performers/conductors/christoph-von-dohnanyi/https://nyphil.org/about-us/artists/christoph-von-dohnanyihttps://www.laphil.com/musicdb/artists/1502/christoph-von-dohnanyihttps://www.harrisonparrott.com/artists/christoph-von-dohnanyihttps://musicianbio.org/christoph-von-dohnanyi/https://www.geni.com/people/Christoph-von-Dohn%C3%A1nyi/6000000025770478310Chr. v. DohnányiChristoph DohnanyiChristoph V. DohnanyiChristoph V. DohnányiChristoph Von DohnanyChristoph Von DohnanyiChristoph Von DohnányiChristoph v. DohnanyiChristoph v. DohnányiChristoph van DohnáyiChristoph von DohnanyChristoph von DohnanyiChristoph von DohnànyiChristoph von Dohnányi, Music DirectorChristopher Von DohnányChristopher von DohnányDohnanyiDohnányiKristof DohnanjiV. DohnányiVon Dohnányivon Dohnányiクリストフ・フォン・ドホナーニPhilharmonia OrchestraThe Cleveland OrchestraWDR Sinfonieorchester KölnOrchestre De ParisThomanerchorOrchester Der Staatsoper HamburgFrankfurter Opern- Und MuseumsorchesterNDR SinfonieorchesterOrchester Der Städtischen Bühnen Frankfurt + +834233NovacaineDarren WardCorrectDarren Ward + +834240Sara MingardoItalian classical vocalist (contralto, alto, mezzo-soprano), born 1961 in Venice. +Needs Votehttp://www.bach-cantatas.com/Bio/Mingardo-Sara.htmhttps://en.wikipedia.org/wiki/Sara_MingardoMingardoS. MingardoThe Monteverdi ChoirConcerto Italiano + +834243Christopher AlderEditing & recording engineer, recording producer & executive producer for the German classical label [l=Deutsche Grammophon] since 1980.Needs Votehttp://www.chris-alder.com/Chr. AlderChris AlderChris Alder (EuroArts)Christopher Adlerクリストファー•オールダー + +834244Reinhard LagemannGerman sound engineer.CorrectReinhard Lagemann (Deutsche Grammophon) + +834287Klaus BehrensSound engineer, mainly for Deutsche Grammophon.CorrectKlauss Behrensクラウス・ベーレンス + +834311Louis-Nicolas ClérambaultFrench organist and composer (Paris, December 19, 1676 - October 26, 1749).Needs Votehttp://en.wikipedia.org/wiki/Louis-Nicolas_Clérambaulthttps://adp.library.ucsb.edu/names/102496ClarembaultClerambaultClérambaultClérambault, L.N.ClérembaultL N ClérambaultL. ClerambaultL. N. ClérambaultL. N. ClérembaultL.-N. ClerambaultL.-N. ClérambaultL.-N.ClérambaultL.ClérambaultL.N. ClerambaultL.N. ClérambaultL.N.ClerambaultLouis ClerambaultLouis ClérambaultLouis N. ClérambaultLouis Nicholas ClerambaultLouis Nicolas ClerambaultLouis Nicolas ClérambaultLouis-Nicholas ClérambaultLouis-Nicolas ClerambaultLuois-Nicolas ClérambaultMr ClérambaultN. ClerambaultN. ClérambaultNicolas ClerambaultNicolas ClèrambaultNicolas ClérambaultNicolas Louis ClérambaultЛ. КлерамбоЛ. Н. Клерамбоクレランボールイ=ニコラ・クレランボー + +834313Patrick Cohën-AkenineFrench violinist and conductor born in 1966, creator and leader of Les Folies Françoises.Needs VotePatrick CohenPatrick Cohen-AkeninePatrick Cohen-AkheninePatrick Cohen-AkénineLe Concert SpirituelIl Seminario MusicaleLes Talens LyriquesLes Folies FrançoisesLa Simphonie Du MaraisHarmonia NovaEnsemble Suonare E Cantare + +834316Hilary MetzgerClassical cellistNeeds VoteLe Concert SpirituelOrchestre Des Champs ElyséesAnima EternaLes Talens LyriquesThe Yale CellosTrio Salomé + +834317Claude MauryBelgian hornist & producer, born in 1956.Needs VoteC. MauryOrchestre Des Champs ElyséesCollegium VocaleIl FondamentoLa Petite BandeLes Musiciens Du LouvreLa StagioneOctophorosTafelmusik Baroque OrchestraBach Collegium JapanOrchestra Of The 18th CenturyRicercar AcademyLe Cercle De L'HarmonieOpera FuocoEnsemble CristoforiBiedermeier Quintet + +834318Blandine RannouFrench harpsichordist and organist (born 1966). +Needs VoteB. RannouIl Seminario MusicaleLes Talens LyriquesLes Basses RéuniesLes Dominos + +834319Jocelyn DaubigneyFrench classical wind instrumentalist born 1964 in Paris.Needs VoteDaubigneyLe Concert SpirituelLes Talens LyriquesLes Folies FrançoisesLe Concert D'Astrée + +834325Benedetto FerrariItalian composer, particularly of opera, librettist and theorbo player, c. 1603 – 1681.Needs Votehttp://en.wikipedia.org/wiki/Benedetto_Ferrarihttps://adp.library.ucsb.edu/names/315175B. FerrariBenedetto Ferrari Della TiorbaFerrari + +834327Sylvie MoquetFrench violin and viola da gamba instrumentalist. + +She has been studying the viola da gamba with Arianne Maurette first and then with Jordi Savall, with whom she graduated as a soloist at the Schola Cantorum in Basel in January 1983 and continued her training with Wieland Kuijken. +Needs Votehttps://www.aeolus-music.com/ae_en/Artists/Sylvie-MoquetCylvie MoquetLes WitchesConcerto SoaveLes Arts FlorissantsIl Seminario MusicaleEnsemble Baroque De NiceCapriccio StravaganteLe Poème HarmoniqueEnsemble BourrasqueDa Pacem (2)Les Temps PrésentsEnsemble Baroque Du Festival D'Aix-en-Provence + +834329Maria Cristina KiehrMaría Cristina KiehrMaría Cristina Kiehr (born in Tandil, Argentina) is a soprano vocalist associated with Baroque music. After receiving her early musical training in Argentina, she moved in 1983 to Europe and studied under René Jacobs at the Schola Cantorum Basiliensis, specializing in the Baroque repertoire. + +Her recording of "Maddalena ai Piedi di Cristo" with [a=René Jacobs] won a Grammy award in 1997.[3] + +Her voice is especially suited to performing the work of neglected Italian female composers of the Early Baroque such as Barbara Strozzi and Francesca Caccini. Though she is known as a champion of little known works and composers, she is also sought after for her interpretations of Henry Purcell and Claudio Monteverdi. Needs VoteKiehrM-C. KiehrM. C. KiehrM.-C. KiehrM.C. KiehrMaria C. KiehrMaria Christina KiehrMaria-Cristina KiehrMariá Christina KiehrMaría Cristina KiehrМария Кристина КирRIAS-KammerchorConcerto SoaveLa Chapelle RoyaleConcerto VocaleEnsemble ElymaCantus CöllnLa ColombinaEnsemble DaedalusLe Miroir De MusiqueAbendmusiken BaselEnsemble Ludwig SenflArmonia Concertada + +834330Girolamo FrescobaldiGirolamo Alessandro FrescobaldiOne of the most important composers of harpsichord and organ music of the late Renaissance and early Baroque (born September 9, 1583, Ferrara, Italy - died March 1, 1643, Rome, Italy).Needs Votehttps://girolamofrescobaldi.com/https://www.britannica.com/biography/Girolamo-Frescobaldihttps://www.bach-cantatas.com/Lib/Frescobaldi-Girolamo.htmhttps://en.wikipedia.org/wiki/Girolamo_Frescobaldihttps://www.imdb.com/name/nm1523177/https://adp.library.ucsb.edu/names/102608C. FrescobaldiD. FrescobaldiDž. FreskobaldiDž. FreskobaldisFescobaldiFrecobaldiFrescoFrescobaldiFrescobaldi GiralamoFrescobaldi, GirolamoFrescoboldiG FrescobaldiG. FescobaldiG. FrescobaldG. FrescobaldiG.FrescobaldiGarolamo FrescobaldiGerolamo FrescobaldiGiancarlo FrescobaldiGiralamo Frescobaldi FerrarensisGirlamo FrescobaldiGirol. FrescobaldiGirolamo Alessandro FrescobaldiGirolamo FrescabaldiGirolamo Frescobaldi FerrarensisGiromalo FrescobaldiGironamo FrescobaldiJeronimo FrescobaldiД. ФрескобальдиДж. ФРЕСКОБАЛЬДИДж. ФрескобальдиДжироламо ФрескобальдиДжіроламо Фрескобальді + +834333Mara GalassiMara Galassi (born in Milan in 1956) is a harpist, musicologist and recording artist specializing in the music for Early harps, including Gothic, Renaissance, and Baroque, in particular double (cross-strung) and triple harps of the Renaissance and Baroque eras, as well as Classical era single-action pedal harps.Needs Votehttp://maragalassi.org/Maara GalassiConcerto SoaveConcerto KölnFreiburger BarockorchesterConcerto ItalianoEnsemble ElymaEnsemble "Concerto"I Febi ArmoniciArcadia (6)Il Complesso BaroccoEnsemble DaedalusOrchestra Barocca della Civica Scuola di Musica di Milano + +834388Nicholas KraemerClassical harpsichordist and conductor.Needs Votehttps://en.wikipedia.org/wiki/Nicholas_Kraemerhttp://www.caroline-phillips.co.uk/artists/conductor/nicholas-kraemer/KraemerN. CraemerN. KraemerNicholaes KraemerNicholas KramerNikolas KraemerCity Of London SinfoniaThe Academy Of St. Martin-in-the-FieldsThe English Baroque SoloistsRaglan Baroque PlayersThe Monteverdi OrchestraThe London Early Music GroupTheatre Of Early Music + +834389Neil Black (3)Neil Cathcart BlackNeil Black, OBE (born May 28, 1932, Birmingham, England – died August 14, 2016) was an English oboist. In 1956–57 Black studied the oboe with [a1970882]. He held the post of principal oboe in four London orchestras. From 1958 to 1960 he was principal oboist of [a271875]. Later in his career, he was the principal oboist of [a832962], the [a415725], the [a861944] and he was also a frequent soloist with various other chamber orchestras. From 1960 to 1970 Black was a professor at the Royal Academy of Music, London. He later taught at the Guildhall School of Music and Drama.Needs Votehttp://en.wikipedia.org/wiki/Neil_BlackNeal BlackNeil BlackNiel BlackLondon Philharmonic OrchestraEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsPhilomusica Of LondonLondon Mozart PlayersThe Thames Chamber OrchestraLondon Wind Trio + +834391Tess MillerClassical oboist. + +[b]Not to be confused with the Australian soprano vocalist [a=Tessa Miller][/b].Needs VoteTessa MillerEnglish Chamber OrchestraThe Academy Of Ancient Music + +834392Carmel KaineAustralian classical violinist (1937-2013)Needs Votehttps://en.wikipedia.org/wiki/Carmel_KaineCarmel CaineKarmel CaineThe Academy Of St. Martin-in-the-FieldsQuartet Of London + +834394Ronald ThomasAustralian classical violinist and session musician. Originally from Kulin, Western Australia, he moved to Britain and went on to play with the London Symphony Orchestra, the London Philharmonic Orchestra, the English Chamber Orchestra, the Academy of St Martin-In-The-Fields, the Bournemouth Chamber Orchestra and many more including Australia. He worked as a session musician with the Beatles and on major Hollywood scores. He is now re-settled in Perth, Western Australia. + +For the US cellist, see [a=Ronald Thomas (7)]Needs VoteDirectorRon ThomasThe Academy Of St. Martin-in-the-Fields + +834450Ib DirkovDanish trumpeter, born in 1948.CorrectAalborg Symfoniorkester + +834464Carl Friedrich AbelGerman composer and viola da gamba player. He was born 22 December 1723 in Köthen, Anhalt (now Germany) and died 20 June 1787 in London, England. He was the younger brother of [a=Leopold August Abel]. +When [a=Johann Christian Bach] arrived in London in 1762, they became friends. +Abel and Bach also befriended the young [a=Wolfgang Amadeus Mozart] when he visited London.Needs Votehttp://en.wikipedia.org/wiki/Carl_Friedrich_Abelhttps://www.britannica.com/biography/Carl-Friedrich-Abelhttps://katalog.dnb.de/EN/resource.html?hit=1&key=all&t=Carl_Friedrich_Abel&sp=auth&v=plist&th=180&tk=694D102397C1C966767A77639B6CA5E64C3C1BB3&sortA=bez&sortD=-dat&pr=0AbelC F AbelC. F. AbelC.F. AbelCarl AbelCarl Freidr. AbelCarl-Friedrich AbelK. F. AbelK. Fr. AbelK.F. AbelK.F.AbelKarl Friadrich AbelKarl Friederich AbelKarl Friedrich AbelК. Ф. АбельStaatskapelle Dresden + +834469Josef VlachJosef VlachCzech violinist, concert master, conductor. + +Born June 8, 1922 in Ratiměřice (former Czechoslovakia), died October 1988 in former Czechoslovakia. Father of [a=Jana Vlachová] and [a=Dana Vlachová]. +Needs Votehttp://www.cko.cz/josefvlach.htmlhttp://cs.wikipedia.org/wiki/Josef_VlachJ. FlachJ. VlachJ.VlachJoseph VlachVlachΓιόζεφ ΦλαχИ. ВлахИозеф ВлахЙозеф ВлахThe Czech Philharmonic OrchestraVlach QuartetCzech Chamber OrchestraBohuslav Martinů Piano Quartet + +834489Derek SimpsonDerek Simpson (29 March 1928 – 22 June 2007) was an English classical cellist and cello teacher.Needs Votehttps://en.wikipedia.org/wiki/Derek_Simpson_(cellist)D. SimpsonDereck SimpsonSimpsonデレク・シンプソンThe London Chamber OrchestraAeolian String QuartetThe London Jazz OrchestraBath Festival Orchestra + +834491Margaret MajorClassical viola player.Needs VoteThe Academy Of St. Martin-in-the-FieldsAeolian String QuartetNetherlands Chamber OrchestraBath Festival Orchestra + +834518Zuzana RůžičkováZuzana Kalabisová née RůžičkováCzech harpsichordist and pianist. + +Born January 14, 1927 in Plzeň (former Czechoslovakia); died September 27, 2017 in Prague, Czech Republic. + +She was married to Czech composer [a=Viktor Kalabis] (1923–2006), who wrote some works for her, among them the Concerto for Piano and Orchestra No. 1 (1954, his wedding gift) and the Canonic Inventions for Harpsichord (1962). +She signed a contract with the [l=Erato] label to record the complete keyboard works of [a=Johann Sebastian Bach]. +With Czech conductor [a=Václav Neumann] she founded the [a=Prague Chamber Soloists], and with Czech violinist [a=Josef Suk] formed a duo which continued to perform for 37 years. Needs Votehttp://www.jsebestyen.org/ruzickovahttp://en.wikipedia.org/wiki/Zuzana_R%C5%AF%C5%BEi%C4%8Dkov%C3%A1http://www.zizkov.cz/clanek.asp?id=464Prof. Zuzana RůžičkováSusannah RůžičkováZ. RuzickovaZ. RůžičkováZusana RůžičkováZuzana RuzickovaZuzana RucickovaZuzana RuzickovaZuzana RuzickováZuzana RuzičkováZuzana RužičkovaZuzana RužičkováZuzanna RuzickovaЗ. РужичковаЗузана Ружичковаズザナ・ルージチコヴァ + +834522Enrique BatizEnrique Bátiz CampbellMexican conductor and pianist +Born May 4, 1942 +Died March 30, 2025Needs Votehttps://en.wikipedia.org/wiki/Enrique_B%C3%A1tizhttps://es.wikipedia.org/wiki/Enrique_B%C3%A1tizhttps://www.imdb.com/name/nm3856287/BatizBátizConductorEnrique BatzEnrique BàtizEnrique Bàtiz,Enrique BátizЭнрике БатизЭнрике БатисOrquesta Filarmónica de la Ciudad de MéxicoOrquesta Sinfónica Del Estado De México + +834528Franco FerraraFranco FerraraItalian conductor, composer, violinist and keyboardist, born in July 4th, 1911 in Palermo, Italy. Died September 7th, 1985 in Firenze, Italy. + +He began his studies in his home town at the age of five, immediately showing a surprising talent. Still a teenager graduated in violin, piano, organ and composition at the Conservatory of Bologna. He was a pupil in their respective branches of M° Consolini, Ivaldi, Belletti, Nordio.Needs Votehttps://en.wikipedia.org/wiki/Franco_Ferrarahttps://www.imdb.com/name/nm0273974/F. FerraraF. FerrarisFerraraFerrarisFranko FerraraG. Ferraraフランコ・フェラーラFranco FalcoOrchestra dell'Accademia Nazionale di Santa CeciliaFranco Ferrara & His Orchestra + +834533Michael GrebanierMichael Peter GrebanierClassical cellist, born April 26, 1937 in New York. Died December 19, 2019 in California. He played in the San Francisco Symphony from 1977 until his death.Needs Votehttps://www.naumburg.org/naumburg-winners/michael-grebanierSan Francisco SymphonyThe Cleveland OrchestraPittsburgh Symphony OrchestraAurora String Quartet + +834537Hans-Peter SchweigmannGerman recording engineer [Balance Engineer, Tonmeister] for classical music who has mainly worked for [l7703].Needs VoteH.-P. SchweigmannH.P. SchweigmannHans Peter SchweigmannHeinz-Peter SchweigmannPeter SchweigmannSCHWSchwSchweigmannハンス=ペーター・シュヴァイクマンハンス=ペーター・シュヴァイクマン + +834577Mstislav RostropovichMstislav Leopoldovich RostropovichМстислав Леопольдович Ростропович / Mstislav Leopol'dovič Rostropovič. +Born: March 27, 1927, Baku, Azerbaijan. +Died: April 27, 2007, Moscow, Russia. +Russian cellist and conductor, married to the soprano [a=Galina Vishnevskaya]. Widely considered to be one of the greatest cellists of the 20th century.Needs Votehttps://en.wikipedia.org/wiki/Mstislav_Rostropovichhttps://www.britannica.com/biography/Mstislav-RostropovichL. M. RostropovichL. Mstislav RostropovichM. L. RostropovichM. L. RostropowitschM. RastropovichM. RostropovichM. Rostropovich-CelloM. RostropovitchM. RostropovičiusM. RostropowitschM. RosztropovicsM. RoztropowiczM.RostropovichMatislav RostropovichMistislaw RostropowitschMistlaw RostropowitschMsitislav RostropovichMsitslaw RostropowitschMstislav Leopoldovich RostropovichMstislav RastropovichMstislav RostropovicMstislav RostropovitchMstislav RostropovitschMstislav RostropovitsjMstislav RostropovičMstislav RostropowitschMstislaw RostropovichMstislaw RostropovischMstislaw RostropovitchMstislaw RostropovitsjMstislaw RostropowitchMstislaw RostropowitschMstislaw RostropowitsjMstislaw RostropwitschMstsislav RostropovitchMsztyszlav RosztropovicsMtislav RostropovichRastropovichRattleRostropovichRostropovitchRostropovičRostropowiczRostropowitschSviatoslav RostropovichΡοστροπόβιτςМ. Л. РостроповичМ. РастроповичМ. РостроповичМстисла́в Ростропо́вичМстислав РастроповичМстислав РостороповичМстислав РостроповичРостропович М. Л.ムスティスフラフ・ロストロポーヴィッチムスティスラフ・ロストロポーヴィチムスティスラフ・ロストロポーヴィッチロストロポーヴィチBorodin String Quartet + +834578Sviatoslav RichterSviatoslav Teofilovich Richter (Russian: Святослав Теофилович Рихтер, romanized: Sviatoslav Teofilovich Rikhter)Born: 20 March [O.S. 7 March] 1915 in Zhytomyr, Volhynian Governorate, Russian Empire (modern-day Ukraine) +Died: 1 August 1997 in Moscow, Russia (aged 82) + +[b]Sviatoslav Richter[/b] was a Soviet pianist and widely recognized as one of the greatest pianists of the 20th century. He was well known for the depth of his interpretations, virtuoso technique and vast repertoire.Needs Votehttp://www.sviatoslavrichter.ruhttps://www.svrichter.com/https://www.therichteracolyte.org/index.htmlhttps://en.wikipedia.org/wiki/Sviatoslav_Richterhttps://ru.wikipedia.org/wiki/%D0%A0%D0%B8%D1%85%D1%82%D0%B5%D1%80,_%D0%A1%D0%B2%D1%8F%D1%82%D0%BE%D1%81%D0%BB%D0%B0%D0%B2_%D0%A2%D0%B5%D0%BE%D1%84%D0%B8%D0%BB%D0%BE%D0%B2%D0%B8%D1%87https://web.archive.org/web/20180718015137/http://www.trovar.com/str/discs/index.htmlhttps://www.imdb.com/name/nm0725364/RichterRichter, SviatoslavRijterS RikhterS. RichterS. RichterisS. RihterS. RikhterS.RichterStanislav RikhterSvatjoslav RichterSviatislav RichterSviatislov RichterSviatoslav RijterSviatoslav Teofilovich RichterSvitoslav RichterSvjatloslav RichterSvjatoslav RicheterSvjatoslav RichterSvjatoslav RihterSvjatoslav Teofilovič RichterSvjatoslaw RichterSvjiatoslav RichterSvyatoslav RichterSvyatoslav RikhterSwiatoslaw RichterSwjatoslav RichterSwjatoslaw RichterSz. RichterSz. RihterSzvjatoszlav RichterŚwiatosław RichterРихтерС. РiхтерС. РихтерС. Т. РихтерС.РихтерС.Т. РихтерСвятослaв РихтерСвятослав РихтерСвятослав РихтерСвятослав рихтерスヴャトスラフ・リヒテル + +834611Anne-Sophie MutterAnne-Sophie MutterGerman violinist, born June 29, 1963, in Rheinfelden/Germany. +Renowned concert performer, she began her international career at a young age with the support of [a283122]. +In addition to the romantic repertoire, she has specialized in modern and contemporary music. +Married to [a224329] (2002-2006).Needs Votehttps://www.anne-sophie-mutter.de/https://www.facebook.com/annesophiemutterhttps://www.instagram.com/anne_sophie_mutterhttps://www.youtube.com/@anne_sophie_mutter/videoshttps://en.wikipedia.org/wiki/Anne-Sophie_MutterA. MutterA.-S. MutterA.S. MutterAnna-Sofie MutterAnne Sofie MutterAnne Sophie MutterAnne-SophieAnne-Sophie M.Mutterアンネ=ゾフィー・ムターアンネ=ゾフィー・ムターアンネ=ゾフィー・ムター安妮·素菲·穆特尔 + +834612Yevgeny KissinYevgeniy Igorevich KisinYevgeniy Igorevich Kisin = Евге́ний И́горевич Ки́син = יעווגעני קיסין +Russian-born classical pianist, composer, and former child prodigy. An Israeli citizen since 2013. +Born October 10, 1971 in Moscow, Russia, USSR.Needs Votehttps://en.wikipedia.org/wiki/Evgeny_Kissinhttps://ru.wikipedia.org/wiki/Кисин,_Евгений_Игоревичhttps://www.kissin.org/https://www.imgartists.com/roster/evgeny-kissin/https://web.archive.org/web/20031004121641/https://www.sonyclassical.com/artists/kissin/https://www.sonyclassical.com/artists/artist-details/evgeny-kissinhttps://www.facebook.com/pianistkissin/https://www.instagram.com/evgenykissinofficial/E. KissinEvgenI KissinEvgeni KisinEvgeni KissinEvgenij KissinEvgeny KissinEvgueni KissinJewgenij KissinKissinKissin, EvgenyYevgeni KissinYevgeny KisinYvgeny KissinЈевгениј КисинЕ. КисинЕвге́ний Ки́синЕвгений КИСИНЕвгений Кисинエフゲニー・キーシン + +834636Hans WeberHans Weber (3 May 1930 - 7 March 2020) was a German producer and recording supervisor for the label [l=Deutsche Grammophon] from 1958 to 1995.Needs VoteH. WeberWeberハンス•ヴェーバーハンスヴェーバーハンス・ウェーバーハンス・ヴェーバーハンス・ヴェーヴァー + +834641Münchener Bach-OrchesterThe Munich Bach Orchestra is a German classical ensemble founded by [a517153] after his founding of [a931425] in 1954.Needs Votehttps://www.muenchener-bachchor.de/orchester/https://www.facebook.com/muenchenerbachorchester/https://en.wikipedia.org/wiki/M%C3%BCnchener_Bach-Orchester-OrchesterBach Orchestra Of MunichBach-OrchesterBach-OrchestraCoro E Orquestra Bach De MuniqueDas Münchener Bach-OrchesterDas Münchner Bach-OrchesterMBOMembers Of Münchener Bach-OrchesterMnichovsky Bachuv OrchesterMnichovský Bachův OrchestrMunchener Bach OrchesterMunchener OrchesterMunich Bach - Soloist OrchestraMunich Bach ChorusMunich Bach OrchesterMunich Bach OrchestraMunich Bach-OrchestraMunich Bach-Soloist OrchestraMunich-Bach Orchestra And ChorusMunich-Back OrchestraMúnchener Bach OrkestMünchener Bach Orch.Münchener Bach OrchesterMünchener Bach OrkestMünchener Bach-Chor & Bach-OrchesterMünchener Bach-Chor und -OrchesterMünchener Bach-OrchestraMünchener Bach-OrkestMünchener Bach-orkestMünchener BachorchesterMünchener BachorkestMünchener OrchesterMünchens Bach-OrchesterMünchens Bach-OrkesterMünchens BachorkesterMünchner Bach-OrchesterMünchner BachorchesterMünich Bach OrchestraOrch.Bach Di MonacoOrchesterOrchestraOrchestra Bach Di MonacoOrchestra Bach di MonacoOrchestreOrchestre Bach De MunichOrchestre Bach De MünichOrchestre Bach de MunichOrkesterOrq. Bach De MuniqueOrquesta "Bach" De MunichOrquesta "Bach", De MunichOrquesta Bach De MunichOrquesta Bach De MúnichOrquesta Bach de MunichOrquesta Bach, MunichOrquesta De Bach, De Munich,Orquestra Bach De MuniqueThe Munich Bach OrchestraThe Munich Bach SoloistsThe Munich Bach-OrchestraАнс. Им. И. С. БахаМюнхенский Бах-ОркестрМюнхенский Баховский ОркестрМюнхенский Баховский оркестрОркестроркестрミュンヘン・バッハ管弦楽団Aurèle NicoletJohn WilbrahamFritz SonnleitnerJürgen PeterRobert EliscuMaurice AndréMartin SpannerEdward H. TarrEdgar ShannOtto BüchnerJohannes Fink (2)Hans-Martin LindePierre ThibaudFranz OrtnerPeter-Lukas GrafWinfried GrabeClaude RippasHansheinz SchneebergerEkkehard TietzeHedwig BilgramHermann BaumannFranz Eder (2)Günther HöllerGerhart HetzelIngo SinnhofferWerner MeyendorfPaul MeisenHansjörg SchellenbergerFritz HenkerMathias Holm (2)Fritz KiskaltPaul LachenmeierChandler GoettingGernot WollElmar SchloterManfred ClementManfred KletteElfriede SingheiserKurt Christian StierJean-Pierre MathezHorst Schneider (2)Konrad HampeKarl KolbingerHerbert DuftWalter NothasChristoph Brandt - LindbaumBernhard GedigaKurt HausmannNorbert HauptmannOswald UhlWilly BeckWilhelm OppermannLudwig KiblböckKurt EngertGustav MeyerKurt GuntnerWilli BauerConrad SteinmannRudolf GallWolfgang NestleIwona FüttererUlrike SchottWalther TheurerWolfgang HaagWalter Stangl (2)Walter GötzWalter ReichardtAndreas SchwinnKonrad HamkeChrista ZecherleKurt Richter (6)Lothar ZirkelbachFritz OrtnerOtto Hausmann (2)Annegret SchaubValentin Härtl + +834645Edgar ShannSwiss classical wind instrument player, born 1919 in Zurich, Switzerland and died in 1984.Needs VoteShannMünchener Bach-OrchesterOrchestre De Chambre De LausanneConcerto Amsterdam + +834646David OistrachДавид Фёдорович ОйстрахDavid Fyodorovich Oistrakh, father of [a=Igor Oistrach], was born 17 [30] September 1908 in Odessa, Russian Empire; passed away 24 October 1974 in Amsterdam, Netherlands. +Renowned Soviet classical violinist, violist and conductor.Needs Votehttps://web.archive.org/web/20240414044306/http://oistrakh.ru/https://ru.wikipedia.org/wiki/%D0%9E%D0%B9%D1%81%D1%82%D1%80%D0%B0%D1%85,_%D0%94%D0%B0%D0%B2%D0%B8%D0%B4_%D0%A4%D1%91%D0%B4%D0%BE%D1%80%D0%BE%D0%B2%D0%B8%D1%87https://www.belcanto.ru/oistrah.htmlhttps://www.mosconsv.ru/ru/person/126114https://www.kino-teatr.ru/kino/acter/m/star/266963/bio/https://en.wikipedia.org/wiki/David_Oistrakhhttps://www.britannica.com/biography/David-Oistrakhhttps://web.archive.org/web/20200612170930/http://trmsolutions.co.kr:80/music/Oistrakh/discography-oistrakh.htmD OistrakhD.D. OistrachD. OistrachasD. OistrajD. OistrakhD. OjstrachD. OjstrahD. OjsztrahD. OystrakhD.F.OistrakhD.OistrakhDavidDavid F. OistrachDavid Fjodorovič OjstrachDavid Fjororovič OjstrachDavid OistpakhDavid OistraKhDavid OistrachovéDavid OistrackDavid OistrahDavid OistrahhDavid OistrahkDavid OistrajDavid OistrakDavid OistrakhDavid Oistrakh = Давид ОйстрахDavid Oistrakh,David OistraschDavid OistraсhDavid OistrkahDavid OjstrachDavid OjstrahDavid OjstrakhDavid OjsztrahDavid OsitrakhDavid OstrakhDavid OystrajDavid OystrakhDavid OïstrachDavid OïstrakhDavid OïustrakhDavid OĩstrachDavidas OistrachasDawid OistrachDawid OjstrachOistrachOistrakhOistrakh, DavidOïstrachOïstrakhProf. David OistrachД. ОйстрахД. Ф. ОйстрахД.ОйстрахД.Ф.ОйстрахДaвид ОйстрахДАВИД ОЙСТРАХДавидДавид ОйстрахДавид ОЙстрахДавид ОйсрахДавид ОйстахДавид ОйстрахДавид Ойстрах (Скрипка)Давид Фёдорович ОйстрахДавид ойстрахИгорь ОйстрахК. Зандерлингダヴィッド・オイストラフダヴィド・オイストラッフダヴィド・オイストラフダヴィード・オイストラッフ大衞·奧依斯特拉哈David Oistrakh TrioDavid Oistrach Quartett + +834647Otto BüchnerGerman violinist, born 10 September 1924 and died 28 September 2008 in Munich, Germany.Needs VoteBüchnerOtto BuchnerOtto BuechnerProf. Otto BüchnerProfessor Otto BuchnerProfessor Otto BüchnerKammerorchester Des Saarländischen Rundfunks, SaarbrückenBamberger SymphonikerMünchener Bach-OrchesterNürnberger Kammermusikkreis"In Dulci Jubilo" EnsembleMünchner Streichquartett + +834703Roland de LassusRoland de Lassus (also Orlandus Lassus, Orlando di Lasso, Orlande de Lassus, or Roland Delattre)Franco-Flemish composer of the late Renaissance (born 1532, Mons, Belgium (Hainaut) - died June 14, 1594, Munich, Germany). Lassus is today considered the chief representative of the mature polyphonic style of the Franco-Flemish school, and one of the three most famous and influential musicians in Europe at the end of the 16th century (along with [a=Giovanni Pierluigi da Palestrina] and [a1364371]).Needs Votehttps://en.wikipedia.org/wiki/Orlande_de_Lassushttps://www.bach-cantatas.com/Lib/Lasso-Orlando.htmhttps://www.britannica.com/biography/Orlando-di-Lassohttps://www.encyclopedia.com/humanities/encyclopedias-almanacs-transcripts-and-maps/lasso-orlando-di-ca-1530-1594-flemish-composerhttps://www.naxos.com/Bio/Person/Orland_di_Lasso/29828https://adp.library.ucsb.edu/index.php/mastertalent/detail/103114/Lasso_Orlando_di?LassusDe LassusDi LassoDi LassusDiLassoDilassoLassoLasso O.LassusO d. LassusO. De LassusO. Di LassoO. LassoO. LassusO. de LassusO. di LassoO.Di LassoO.LassusO.de LassusO.di LassoOlande di LassusOlando di LassoOralnde di LassoOralndo di LassoOrande de LassusOrl. LassusOrl. d. LassoOrland Di LassoOrlandas Di LasasOrlande Da LassusOrlande De LassusOrlande Di LassoOrlande de LassusOrlande de LassvsOrlande di LassoOrlandi Di LassoOrlandi LassiOrlandi di LassoOrlandoOrlando De LassoOrlando De LassusOrlando Di LassiaOrlando Di LassoOrlando Di Lasso (1532-1594)Orlando Di Lasso (2)Orlando Di Lasso (Ca. 1532-1594)Orlando Di Lasso (Lassus)Orlando Di Lasso [Lassus]Orlando Di LasstoOrlando Di LassusOrlando Di LossoOrlando DiLassoOrlando DilassoOrlando LassoOrlando LassusOrlando de LassoOrlando de LassusOrlando di LaasoOrlando di LassiOrlando di LassoOrlando di LassusOrlando di Lassus, Ecclesiastes IIIOrlando die LassoOrlandos LassusOrlandus De LassusOrlandus LasssusOrlandus LassusOrlandus di LassoOrlano di LassoOrolando de LassusR de LassusR. De LassusR. LassusR. de LassusR. di LassoR. di LassusR.De LassusRoland De LassusRoland LassusRolandi Di LassoRolando Di LassoRolando di LassoRolland de Lassusde Lassusdi Lassodi LassusdiLassoЛассоО. Ди ЛасоО. Ди ЛассоО. ЛассоО. ди ЛассоОрл. ди ЛасоОрландо Ди ЛасоОрландо Ди ЛассоОрландо ди ЛасоОрландо ди ЛассоОрландо ді Лассо + +834711Jacques ArcadeltJacques Arcadelt (also Jacob Arcadelt) (1505 – 14 October 1568) was a Franco-Flemish composer of the Renaissance, active in both Italy and France. He was one of the most famous of the early composers of madrigals. +Needs Votehttps://en.wikipedia.org/wiki/Jacques_Arcadelthttps://www.britannica.com/biography/Jacques-Arcadelthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/104096/Arcadelt_JacobArcadeltArcadelt JacobArcadetArchadeltAreadeltG. ArcadeltI. ArcadeltIacques ArcadeltJ. ArcadeltJ. ArcádeltJ. ArkadeltsJ.ArcadeltJacob ArcadeltJacob ArcadletJacobi ArcadeltJacobus ArcadeltJacques ArcaldetJacques ArchadeltJakob ArcadeltJakob ArkadeltJaques ArcadeltJaques ArcadetLacques ArchadeltЯ. АркадельтЯкоб Аркадельт + +834713Stanislaw WislockiStanisław WisłockiPolish composer, conductor and pianist, born 7 July 1921 in Rzeszów, and died 31 May 1998 in Warsaw.Needs VoteS. WislockiS. WisłockiSt. WislockiStanislav WislockiStanislav WislotzkiStanislaw WisłockiStanisław WislockiStanisław WisłockiWislockiWisłockiС. ВислоцкиС. ВислоцкийСтанислав Вислоцкий + +834839Walter GrimmerSwiss cellist.Needs Votehttps://www.waltergrimmer.eu/Berner StreichquartettArion Trio + +834970Alix VerzierClassical cello player.Needs VoteLes Arts FlorissantsLe Concert Des nations + +834971Martha Moore (2)Classical violinist and violist.Needs VoteMarta MooreMarthe MooreLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleEnsemble 415Les Talens LyriquesLe Concert D'AstréeLa Simphonie Du MaraisCapriccio StravaganteLes PaladinsFiori Musicali + +834972Sandrine PiauFrench classical soprano, born 5 June 1965 in Issy-les-Moulineaux +Needs Votehttps://en.wikipedia.org/wiki/Sandrine_Piauhttps://www.sandrinepiau.com/PiauS. Piauサンドリーヌ・ピオーLes Arts FlorissantsLa Chapelle RoyaleGli Angeli GenèveEnsemble Contraste + +834973Catherine ArnouxClassical string instrumentalistNeeds VoteCollegium Vocale + +834999Vincenzo Di DonatoClassical tenor vocalistNeeds Votehttps://www.facebook.com/vincenzo.donato.5Di DonatoIl RuggieroL'Homme ArméCantica SymphoniaCoro Della Radio Televisione Della Svizzera ItalianaOdhecaton (2)Templum MusicaeConcerto RomanoWorld Chamber Choir + +835005Cristina CalzolariSoprano/alto vocalistNeeds VoteConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaMelodi CantoresFantazyasEnsemble Il Cantar Novo + +835009Sergio ForestiClassical bass - baritone vocalist (born 1968 - Modena, Italy). +Needs VoteForestiCappella Musicale Di S. Petronio Di BolognaConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaLa RisonanzaSchleswig-Holstein Festival Chor LübeckEnsemble Mare NostrumLa ReverdieOdhecaton (2)La Sfera Armoniosa + +835010Renzo BezClassical countertenor vocalistNeeds VoteCappella Musicale Di S. Petronio Di BolognaCoro Della Radio Televisione Della Svizzera Italiana + +835043Reinhild SchmidtSound engineer and producer for [l=Deutsche Grammophon].CorrectReinhilt Schmidtラインハルト•シュミットラインヒルト•シュミットラインヒルト・シュミットラインヒルト・シュミット + +835044Michel GlotzFrench producer of classical music. He died 15 February 2010 at the age of 79 in Paris, France.CorrectMichael GlotzMichet Glotzミシェル・グロッツミシェル・グロッツミッシェル・グロッツ + +835045Joseph JoachimJoseph JoachimHungarian violinist, conductor, composer and teacher, born June 28, 1831, in Kittsee near Bratislava (Preßburg), Moson, Hungary (nowadays divided between Burgenland, Austria, and Slovakia). + +Being considered a child prodigy, he came into contact with leading Romantic composers of his time at an early age. From 1839 on he was a protégé of [url=http://www.discogs.com/artist/Felix+Mendelssohn-Bartholdy]Felix Mendelssohn[/url], and in 1848 joint the circle around [a=Franz Liszt] in Weimar, Germany. + +After leaving the New German School movement behind him, breaking with Liszt, he moved to Hanover and became acquainted with [a=Robert Schumann], [a=Clara Schumann] and [a=Johannes Brahms]. + +In 1866, he moved to Berlin, where he became founding director of the Royal Academy of Music. On August 15, 1907, in Berlin, he died of actinomycosis. + +Grandfather of [a=Irène Joachim]Needs Votehttps://en.wikipedia.org/wiki/Joseph_Joachimhttps://www.naxos.com/person/Joseph_Joachim/23984.htmhttps://www.nndb.com/people/463/000105148/https://www.britannica.com/biography/Joseph-Joachimhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103104/Joachim_JosephDe JoachimJ. JoachimJ. JoachimasJ.JoachimJoachimJoaquimJos. JoachimJosef JoachimJosef JoachomJoseph JoacimJozeph JoachimJozsef JoachimJószef (Joseph) JoachimJózsef JoachimProf. Dr. Joseph JoachimИ. ИоахимИ.ИоахимЙ. ИоахимЙожеф ИоахимЙозеф Иоахимヨアヒムヨーゼフ・ヨアヒム + +835054Edwin PalingClassical violinist, he was a member, then leader, of the Royal Scottish National Orchestra from 1973 to 2007, and now is Head of Strings at the Conservatorium of Music of the University of Tasmania.Needs VoteRoyal Scottish National OrchestraBournemouth Symphony Orchestra + +835057René SchirrerClassical bass / baritone vocalistNeeds VoteR. SchirrerSchirrerLes Arts FlorissantsLa Chapelle Rhénane + +835059Michel LaplénieFrench classical baritone / tenor vocalist and conductor.Needs Votehttps://fr.wikipedia.org/wiki/Michel_Lapl%C3%A9niehttps://www.bach-cantatas.com/Bio/Laplenie-Michel.htmM. LaplénieMichel LaplenieLes Arts FlorissantsEnsemble Clément JanequinEnsemble Vocal Sagittarius + +835060Les Arts FlorissantsVocal and instrumental ensemble dedicated to the performance of the baroque music on original instruments. Formed in 1979 by [a=William Christie]. It took its name from a short opera by [a571862].Needs Votehttps://www.arts-florissants.org/https://www.facebook.com/lesartsflorissants/https://en.wikipedia.org/wiki/Les_Arts_Florissants_(ensemble)"Les Arts Florissants"Choeur & Orchestre Des Arts FlorissantChoeur et Orchestre Des Arts FlorissantsChorus And Orchestra Of Les Arts FlorissantsChœur & Orchestre Les Arts FlorissantsChœur Des Arts FlorissantsChœur Et Orchestre Les Arts FlorissantsEnsemble "Les Arts Florissants"Ensemble Instrumental Les Arts FlorissantsEnsemble Vocal Et Instrumental "Les Arts Florissants"Ensemble Vocal Et Instrumental Les Arts FlorissantsLes Arts Florissants & ChoeurOrchestre Les Arts Florissantsレザール・フロリサンWilliam ChristieJean-François GardeilBertrand CuillerRichard CampbellClaire MichèleDonatienne Michel-DansacPatricia ForbesElizabeth KennyAndreas SchollAgnès MellonSimon BerridgeVéronique GensSimon Grant (4)Bernard DelétréMark PadmoreAntonio AbeteHervé NiquetSylvie MoquetAlix VerzierMartha Moore (2)Sandrine PiauRené SchirrerMichel LaplénieDominique VisseJill FeldmanMarie-Claude VallinFrits VanhulleTaka KitazatoUdbhava Wilson-MeyerSteve DugardinJonathan CablePeter Van BoxelaerePhilippe MiqueuSusan Williams (2)Anne MopinMichel HenryRyo TerakadoChristine Angot (2)Myriam GeversHoward CrookGérard LesneGalina ZinchenkoKate Van Orden (2)Clemens NußbaumerWilliam HuntJames GhigiPauline SmithSusan SheppardAnne-Marie LaslaBruno CocsetJacques BonaHugo ReyneRhoda PatrickHiro KurosakiChristophe RoussetDirk VermeulenWalter ReiterHendrike Ter BruggeAlain GervreauVéronique MéjeanOdile EdouardWalter Van HauweKees BoekeDonna BrownAndrew Lawrence-KingMarie Knight (2)Nigel NorthJohn HollowayDouglas NasrawiErin HeadleyStephen StubbsHoward BeachFrançois FernandezKonrad JunghänelVincent DarrasMarie BoyerJean-Paul FouchécourtGilles RagonArlette SteyerGuillemette LaurensSophie DanemanDavid Simpson (2)Nicola WemyssPaul Agnew (2)Michel RenardNicolas RivenqNicolas CavallierFrançois BazolaIsabelle DesrochersPatricia PetibonPierre HantaïJane CoeBrigitte PeloteCarys Lloyd RobertsAnha BölkowAnne PichardSheena WolstencroftViolaine LucasValérie PicardAnne CambierSylviane PitourMhairi LawsonSimon RickardMarie-Ange PetitChristophe OliveAnne WeberFrançoise RivallandElena AndreyevCatherine GirardJean-Yves RavouxNadine DavinRuth WeberGuya MartininiJean-Marie PuissantMarcial MoreirasDeryck Huw WebbSébastien MarqPaul CarliozDavid Le MonnierGeoffrey BurgessLaurent CollobertJean-Xavier CombarieuSimon HeyerickChristian MoreauxPaolo TognonJonathan RubinJean-François GayRichard DuguayMichèle SauvéRoberto CrisafulliLaurence CummingsGeorge WillmsPer Olov LindekeJean-Marc MoryBruno RenholdEmmanuel BalssaDidier RebuffetFrançois PiolinoGilles RapinBruno-Karl BoësFrédéric GondotCharles ToetMarc VallonMarc MinkowskiKenneth WeissGaelle MechalyChristophe CoinOlivier SchneebelliClaude WassmerAnne-Marie JacquinAnne LelongIsabelle SauvageotLisa LyonsEmilia BenjaminMichel PuissantJoseph CornwellElisabeth MatiffaPierre HamonMarianne MullerJean-Pierre NicolasJonathan ArnoldAriane MauretteGisèle DubonJean-Paul BonnevalleEric GuillerminFabrice ChomienneOlivier LallouetteJérôme CorreasSuzan CantrickRichard MyronPhilippe Pierlot (2)Mihoko KimuraMonique ZanettiEric BellocqNathalie StutzmannBenoît WeegerSophie DemouresPaul-Alexandre DuboisHélène D'YvoireThérèse KipferPascale HaagPhilippe CantorJean-Luc ThonnerieuxChristophe Robert (2)Hager HananaJosep BenetLaurent BajouFrançois FauchéAntoine SicotFrank de BruineCharles ZebleyDavid MingsGustavo ZarbaJean-Michel ForestSophie Marin-DegorFlorence MalgoireRobert ClaireSigrid LeeAntoine LadretteNoémi RimeBrian FeehanFrédéric CoubesEdouard DenoyelleCécile Le BihanBertrand DuboisBenoît ThivelCaroline De CorbiacMarie-Louise MarmingPaul HaddadFrédéric Martin (2)Ariette KasbergenMichel MurgierSylvie ColasChristopher De VilliersJoël ClémentBéatrice MalleretAlain BrumeauChristophe Le PaludierJean-Claude SarragossePaul WillenbrockSerge SaïttaValérie MasciaAnne-Marie TauzinTorbjörn KöhlDominique FavatCatherine BignaletRichard Taylor (8)Joseph CarverMaryseult WieczorekMiriam AllanRuth UngerMaia SilbersteinDaniela Del MonacoAlain Petit (2)Kaori UemuraRobert MealyDaniel Taylor (3)Emmanuelle GalEva GodardKevin MallonPaul Van Der LindenPhilippe SuzanneMichael DupreeStephan MaciejewskiDamien GuffroyLaurent SlaarsYvon RepérantRené MazeAdrian Brand (2)Arnaud MarzoratiJean-François LombardVincent Lièvre-PicardBertrand ChuberreMélodie RuvioDaniel CuillerIsabel SerranoJacques MaillardUlrike NeukammLisa GrodinVirginia PattieEtienne LestringantJay BernfeldFernand BernadiBernhardt JunghänelHendrik-Jan WolfertJoël SuhubietteSolange AñorgaNicolas MaireBertrand BontouxValérie RioKatalin KárolyiMike FentrossBernadette CharbonnierAnn MonningtonMartha Greese VallonNathan BergKasia ElsnerVirginie ThomasFlorian CarréUlrike BruttDamien LaunayAbigail GrahamMireille CardozGregory ReinhartNorbert KunstGraham NicholsonArtur StefanowiczEdward GrintMutsumi OtsuSean ClaytonBruno Le LevreurValérie BalssaBéatrice Martin (2)Rebecca OckendenNicole DubrovitchVincent de KortChristiane Lagny-DetrezAlain GolvenDavid BowesMichel PonsIsabelle VillevieilleAnne Crabbe-PulciniCathy MissikaOlivier GalDaniel Spector (2)Frédéric LairPeter PietersEdouard AudouyPierre-Yvan GalMasao Takeda (2)Daniel BonnardotChristophe MazeaudFrédéric Marie (2)Philippe Choquet (2)Michèle TellierCyril AuvityBenoît ArnouldNanja BreedijkBernard LoonenTami TromanMachiko UenoDenis MatonFabian SchofrinThibaut LenaertsCatherine DussautAlain TrétoutClaire BruaJean DautremayDenis Léger-MilhauJean-Paul BurgosJonathan Cohen (7)Joël LahensLucia PeraltaAnja BölkowPier Luigi FabrettiCrispin WardEric VignauNicolas PouyanneSimon GrowcottRachael Quinlan-YatesNicola HaystonRussell TheodoreMichael DollendorfPatrick FoucherYuki TerakadoJorien Van TuinenGarry Clarke (2)Soledad CardosoJeffrey ThompsonAlan WoodhouseRoselyne Tessier-LemoineAnne-Catherine VinayCassandra HarveyArmand GavriilidèsSophie DecaudaveineMichael Loughlin-SmithPierre KuzorMaurizio RossanoJeanette Wilson-BestThomas DunfordVictor ApostleLucile RichardotMarcio Soares-HolandaRachael BeeslyHannah MorrisonLorraine HuntJean-François MadeufMaud GnidzazJonathan SellsSusanne Scholz (2)Emmanuel VigneronPauline LacambraSatomi WatanabeAurélien HonoréArmand GavrillidèsMarie-Louise DuthoitNoam KriegerYann RollandChristophe GautierRichard Walz (2)Christine KyprieLea DesandreEdouard HazebrouckBrigitte CrépinZachary WilderCarlo VistoliOlivier Dubois (3)Cyril Bernhard (2)Cyril CostanzoMathilde OrtscheidtAdrien CarréSophie de BardonnècheRomain DavazoglouMarie van RhijnAnicet CastelEmmanuel RescheRoldán Barnabé-CarriónMyriam BullozLeila ZlassiJustin BonnetAlice GregorioJulien NeyerSayaka ShinodaMaud Caille-ArmengaudMichael Greenberg (7)Nicolas Kuntzelmann + +835061Dominique VisseFrench countertenor. Studied the organ and flute before meeting the countertenor [a=Alfred Deller] in 1976 and becoming his pupil. +In 1978 Dominique Visse founded the [a=Ensemble Clément Janequin], recording French polyphonic chansons of the 16th Century. The following year he became one of the founding members of [a=Les Arts Florissants]. +Though he has sung mainly the baroque and early repertoire with famous conductors such as René Jacobs, Philippe Herreweghe, Ton Koopman or William Christie among others, he doesn't limit himself to this repertoire. He has also performed in operas by Offenbach, Poulenc, Berio or Dusapin. +Needs Votehttp://www.dominique-visse.com/VisseLe Concert SpirituelLes Arts FlorissantsEnsemble Clément JanequinL'ArpeggiataAkadêmia + +835062Jill FeldmanAmerican-born soprano classical vocalist.Needs Votehttp://www.o-livemusic.com/jill/index.htmFeldmanJ. FeldmanJill FeldmannSequentia (2)Les Arts FlorissantsMala Punica + +835063Günter HermannsGerman engineer who worked for [l=Deutsche Grammophon] and [a283122] since approx. the 1960's.Needs Votehttps://orchestergraben.com/karajan-oder-die-macht-des-klangs/GHGuenter HermannGuenter HermannsGunter HermannsGunther HermannGunther HermannsGuntherHermannsGünter Friedrich HermannsGünter HermaednnsGünter HermansGünter HerrmannsGünter-HermannsGünter·HermannsGünther HermannsGüter HermannsGüther HermannsHRHrΓκύντερ ΧέρμαννςГ. Хермансギュンターヘルマンスギュンター・ヘルマンスギュンター・ヘルマンスギュンダー・ヘルマンス + +835064Hans HirschGerman producer and production manager / executive producer at [l=Deutsche Grammophon]. He worked at [l=Deutsche Grammophon] from 1954 to 1985.Needs VoteD.ハンス・ヒルシュDr Hans HirschDr Hans HirshDr. Hans HIrschDr. Hans HirchDr. Hans HirschDr. Hans HirshDr. ハンス•ヒルシュDr. ハンス・ヒルシュDr.ハンス・ヒルシュProf. Dr. Hans HirschΔρ. Χανς Χιρς + +835070Bohuslav MartinůBohuslav MartinůCzech composer of modernist classical music, born December 8, 1890 in Polička, Austria-Hungary (now Czech Republic), died August 28, 1959, Liestal, Switzerland. +He wrote almost 400 opuses, including six symphonies, 15 operas, 14 ballet scores and a large body of orchestral, chamber, vocal and instrumental works. In the 1930s he experimented with expressionism and constructivism, and became an admirer of current European technical developments. He also adopted jazz idioms. Of the post-war avant-garde styles, neo-classicism influenced him the most. He continued to use Bohemian and Moravian folk melodies throughout his oeuvre, usually nursery rhymes. He emigrated to the United States in 1941, fleeing the German invasion of France. Although as a composer he was successful in America, receiving many commissions, he became homesick for Czechoslovakia. He never returned to his native country, and he died in Switzerland. + +In 1962, [a=Komorní Orchestr Bohuslava Martinů] was named after the composer, with a permission of his widow Charlotte Martinů. The renowned Philharmonic Orchestra from Zlín was also renamed as [url=https://www.discogs.com/artist/1510460]Bohuslav Martinů Czech Philharmonic Orchestra[/url] in the early 1989.Needs Votehttps://www.martinu.cz/https://en.wikipedia.org/wiki/Bohuslav_Martin%C5%AFhttps://www.britannica.com/biography/Bohuslav-Martinuhttps://www.naxos.com/person/Bohuslav_Martinu/24608.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/367770/Martin_BohuslavB. MartinuB. MartinúB. MartinůB.MartinůBohuslav MartinuBohuslav MartinùBohuslav MartinúBohuslavs MartinuBohuslaw MartinuMartinMartinuMartinùMartinúMartinůMartinů, BohuslavБ. МартинуБогулав МартинуБогуслав МартинуБогуслав МартінуМартинуマルティヌーThe Czech Philharmonic Orchestra + +835073Josef SukJosef SukCzech violinist. +Born August 8, 1929 in Prague (former Czechoslovakia), died July 6, 2011 in Prague. +Grandson of composer [a=Josef Suk (2)], great-grandson of composer [a=Antonín Dvořák]. Founder of the [a=Suk Chamber Orchestra] in 1974, which he led until 2000.Needs Votehttps://en.wikipedia.org/wiki/Josef_Suk_%28violinist%29https://www.bach-cantatas.com/Bio/Suk-Josef.htm#google_vignettehttps://www.allmusic.com/artist/josef-suk-mn0001664235J. .SukJ. SukJ.SukJosef Suk jr.Josef Suk ml.Josef ŠukJosepf SùkJoseph SukSUKSukSuk J.Иозеф СукЙозеф Сукヨセフ・スークヨゼフ・スークThe Prague Symphony OrchestraSmetana QuartetSuk TrioSuk Chamber Orchestra + +835080Karin SchmeerKarin Schmeer-RundelGerman harp player.Needs Votehttp://karin-rundel.de/Karin Schmeer-RundelEnsemble ModernEnsemble Modern Orchestra + +835090János FerencsikFerencsik JánosHungarian conductor. He was born 18 January 1907 in Budapest, Austria-Hungary (now Hungary) and died 12 June 1984 in Budapest, Hungary.Needs Votehttp://en.wikipedia.org/wiki/J%C3%A1nos_FerencsikFerencsikFerencsik J.Ferencsik JánosFerencsik JénosFerencsik, JanosJ. FerencsikJ.FerencsikJanor FerencsicJanos FerencsikJanos FerenscikJanos RerencsikJános FerenčsikJános FérencsikЙанош ФеренчикЯнош ФеренцикЯнош Ференчикヤーノシュ・フェレンチク + +835100Jiří MihuleJiří MihuleCzech oboist.CorrectJ. MihuleJiri MihuleJirí MihuleJiři Mihuleイジー・ミフルThe Czech Philharmonic OrchestraArs Rediviva Ensemble + +835102Jiří VálekJiří VálekCzech classical and jazz flutist, composer, educator. +Born June 4, 1940 in Olomouc (former Czechoslovakia). +[i]Note: not to be confused with composer [a=Jiří Válek (2)] (1923–2005).[/i]Needs Votehttps://www.last.fm/music/Ji%C5%99%C3%AD+V%C3%A1lekJ. VálekJ.VálekJiri ValekJiri VálekJirí VàlekJirí Válekイジー・ヴァーレクThe Czech Philharmonic OrchestraVáclav Zahradník Big BandArs Rediviva EnsembleKonstelace Josefa VobrubyKarel Růžička + 9 + +835104František HermanFrantišek HermanCzech bassoonist. +Born 10 April 1942 in Náchod (former Protectorate of Bohemia and Moravia). +Member of [a=The Czech Philharmonic Orchestra] since 1967, soloist since 1986. +Founder of [a=Collegium Musicum Pragense]. +Needs Votehttp://www.hamu.cz/katedry/katedra-dechovych-nastroju/frantisek-herman-fagothttp://cs.wikipedia.org/wiki/František_HermanF. HermanFrantisek HermanFrantišek HermannFrantišek HeřmanФ. ГерманThe Czech Philharmonic OrchestraSlovak Chamber OrchestraCollegium Musicum PragenseArs Rediviva EnsembleSolistes Européens LuxembourgMunclinger Wood Wind Quartet + +835112Karel AnčerlKarel Ančerl (April 11, 1908 - July 3, 1973) was a Czech conductor, respected for his performances of contemporary music and interpretations of Czech classical music. His recordings with Czech Philharmonic Orchestra acquired many international awards (Golden Harmony, Grand Prix du disque).Needs Votehttp://www.karel-ancerl.com/https://www.karel-ancerl.jp/https://www.supraphon.com/artists/1227-karel-ancerl-conductorhttps://en.wikipedia.org/wiki/Karel_An%C4%8DerlAncerlAnčerlCarl AncerlK. ANčerlK. AncerlK. AnčerlKarel AncelelKarel AncerlKarel AncěrlKarel ArcerlKark AncerlKarl AncerlKarl AnçerlKarl AnčerlKarol AncerlLtg. Karel AnčerlRidi Karel AncerlRidi Karel AnčerlАнчерл КарелК. АнчерлКарел АнчерлКарела АнчерлаКарл Анчерлカレル・アンチェルカレル・アンチェルThe Czech Philharmonic Orchestra + +835113Václav SmetáčekVáclav SmetáčekCzech conductor, chorus master, composer, oboist, musicologist, educator. +Born September 30, 1906 in Brno (former Austro-Hungarian Empire), died February 18, 1986 in Prague (former Czechoslovakia). +Founder and member of the [a=Prague Wind Quintet], for whom he also arranged and composed. Member of the Czech Philharmonic Orchestra 1930–1933. From 1934 to 1943, he worked for the Czech Radio as conductor and editor, after 1945 as pedagogue at the Prague Conservatory and Academy of Performing Arts. Conductor and promoter of the Prague Symphony Orchestra (FOK) from the 1930s until 1972. +Correcthttp://cs.wikipedia.org/wiki/V%C3%A1clav_Smet%C3%A1%C4%8Dekhttp://www.ceskyhudebnislovnik.cz/slovnik/index.php?option=com_mdictionary&action=record_detail&id=1839Dr V. SmetáčekDr Václav SmetáčekDr. V SmetacekDr. V. SmetacekDr. V. SmetačekDr. V. SmetáčekDr. Vaclav SmetacekDr. Vaclav SmetačekDr. Václav SmetácekDr. Václav SmetáčekNár. Umělec V. SmetáčekSmetacekSmetáčekV SmetáčekV, SmetáčekV. SmetacekV. SmetačekV. SmetáčekVaclav SmetacekVaclav SmetačekVaclav SmetácekVaclav SmetáčekVaclav SmètacekVáclav SmetacekVáclav SmetácekZasloužilý Umělec Václav SmetáčekВ. СметачекВаслав СметачекВацлав Сметачекヴァーツラフ・スメターチェックThe Prague Symphony OrchestraThe Czech Philharmonic OrchestraPrague Wind Quintet + +835128Mikhail Ivanovich GlinkaМихаил Иванович ГлинкаMikhail Glinka (May 20 [June 1], 1804, Novospasskoye, Smolensk Governorate – February 15, 1857, Berlin) – Russian composer.Needs Votehttps://ru.wikipedia.org/wiki/%D0%93%D0%BB%D0%B8%D0%BD%D0%BA%D0%B0,_%D0%9C%D0%B8%D1%85%D0%B0%D0%B8%D0%BB_%D0%98%D0%B2%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%87http://stpetersburg-guide.com/people/glinka.shtmlhttp://en.wikipedia.org/wiki/Mikhail_Glinkahttps://adp.library.ucsb.edu/names/102820F. GlinkaGlikaGlinkaGlinka M.I.Glinka MichailGlinka, MikhailGlinka, Mikhail IvanovichI. GlinkaIvanoviciM GlinkaM. GlinkaM. GlynkaM. GļinkaM. I. GlinkaM. Iv. GlinkaM. J. GlinkaM. ГлинкаM. ГлинкиM.GlinkaM.I. GlinkaM.I.GlinkaM.S. GlinkaM.ГлинкиMachail GlinkaMicail I. GlinkaMich. GlinkaMichael GlinkMichael GlinkaMichael I. GlinkaMichael Ivanovic GlinkaMichael Ivanovich GlinkaMichael Ivanovitch GlinkaMichael Ivanovitsch GlinkaMichael Iwanowitsch GlinkaMichael Iwanowitsh GlinkaMichael Iwanowotsch GlinkaMichael J. GlinkaMichael J.GlinkaMichail GlinkaMichail GlinnkaMichail I. GlinkaMichail Ivanovic GlinkaMichail Ivanovich GlinkaMichail Ivanovič GlinkaMichail Iwanowitsch GlinkaMichaił GlinkaMichaił I. GlinkaMichal Ivanovič GlinkaMichaël GlinkaMichał GlinkaMihail GlinkaMihail I. GlinkaMihail Ivanovici GlinkaMihail Ivanović GlinkaMihail Ivanovič GlinkaMijail GlinkaMikael GlinkaMikail GlinkaMikail Ivanovic GlinkaMikhael GlinkaMikhail GlinkaMikhail I GlinkaMikhail I. GlinkaMikhail I.GlinkaMikhail IGlinkaMikhail Ivanovic GlinkaMikhail Ivanovitch GlinkaMikhail Iwanovitsch GlinkaMikhail Iwanowitsch GlinkaMikhal GlinkaMikhal Ivanovich GlinkaMikhaïl GlinkaMikhaïl Ivanovich GlinkaMikhaïl Ivanovitch GlinkaSergej Iwanowitsch TanejewΜιχαήλ ΓκλίνκαГлинкaГлинкаГлинка M.Глинка Михаил ИвановичГлинкиИ. ГлинкаМ. ГлинкaМ. ГлинкаМ. Глинка и др.М. ГлинкиМ. ГлінкаМ. И. ГлинкаМ.GlinkaМ.ГлинкаМ.ГлинкиМ.И. ГлинкаМ.И.ГлинкаМихаил ГлинкаМихаил Иванович ГлинкаМихайло ГлінкаОркестр ГАБТ СССРФ. Глинкаグリンカミハイル・グリンカ + +835187Martin TurnovskýCzech conductor, born 29 Sept. 1928 in Prague; died 19 May 2021 in Vienna. +Permanent conductor of the State Philharmonic Orchestra in Brno. Also appointed chief conductor of the Radio Symphony Orchestra Plzen (1963–66), at the Saxonian Staatskapelle and State Opera, Semperoper (1966–68), at the Norwegian State Opera Oslo (1975–80), at the Opera in Bonn (1979–83). +Leader conductor of the Prague Symphonic Orchestra (1992–96). +Needs Votehttps://en.wikipedia.org/wiki/Martin_Turnovskýhttp://www.bach-cantatas.com/Bio/Turnovsky-Martin.htmhttp://www.baronartists.com/turnovsky.htmM. TurnovskýMartin TurnovkiMartin TurnovskiMartin TurnovskyMartin TurnowskyTurnovskýМартин ТурновскийThe Prague Symphony OrchestraStaatskapelle Dresden + +835190Los Angeles Philharmonic OrchestraAmerican orchestra based in Los Angeles, California. Founded in 1919. Now residing at the [l=Walt Disney Concert Hall]. + +Please use [a=Members Of The Los Angeles Philharmonic Orchestra] when credited as such. + +Music Directors: +Walter Henry Rothwell (1919-1927) +[a4073678] (1927-1929) +[a539131] (1929-1933) +[a517165] (1933-1939) +[a946948] (1943-1956) +[a867946] (1956-1959) +[a538821] (1962-1978) +[a833560] (1978-1984) +[a224329] (1985-1989) +[a653535] (1992-2009) +[a1057191] (2009-present)Needs Votehttps://en.wikipedia.org/wiki/Los_Angeles_Philharmonichttps://www.laphil.com/https://web.archive.org/web/20030804114538/https://www.sonyclassical.com/artists/la_philharmonic/https://www.bach-cantatas.com/Bio/LAPO.htmhttps://www.imdb.com/name/nm3594888/https://www.youtube.com/channel/UCoLoZgxkPgkiD--8zrHAbwghttps://www.x.com/laphilhttps://www.facebook.com/LAPhil/https://www.instagram.com/laphil/Alfred WallensteinFilarmonica De Los AngelesFilarmónica De Los ÁngelesFilharmonijski Orkestar - Los AngelesGran Orquesta De Los AngelesHollywood Bowl "Pops" OrchestraL'Orchestre Philharmonique De Los AngelesL'orchestre Philharmonique De Los AngelesL. A. Philharmonic OrchestraL.A. PhilharmonicL.A. Philharmonic OrchestraLA Phil.LA PhilharmonicLAPOLa Filarmónica de LALa Orquesta Filarmónica de Los ÁngelesLos Angele PhilharmonicLos Angeles Filharmoniske OrkesterLos Angeles OrchestraLos Angeles POLos Angeles Phil.Los Angeles Phil. Orch.Los Angeles PhilarmonicLos Angeles PhilharmoniaLos Angeles PhilharmonicLos Angeles Philharmonic Orch.Los Angeles Philharmonic Orchestra And ChorusLos Angeles Philharmonic Orchestra Trumpet SectionLos Angeles Philharmonic Orchestra,Los Angeles Philharmonic Orchestra, TheLos Angeles Philharmonic Trumpet SectionLos Angeles Philharmonic, TheLos Angeles Strings EmsambleLos Angeles Strings EnsambleLos Angeles Symphonie OrchestraLos Angelesin FilharmonikotMaster Camerata OrchestraMembers Of The Los Angeles PhilharmonicMembers Of The Los Angeles Philharmonic OrchestraMembres De L'Orchestre Philharmonique De Los AngelesMitglieder Des Los Angeles Philharmonic OrchestraOrchestraOrchestra Di Filarmonica Los AngelesOrchestra Filarmonica di Los AngelesOrchestre Philarmonique De Los AngelesOrchestre Philharmonique De Los AngelesOrchestre Philharmonique De Los AngelèsOrchestre Philharmonique Los AngelesOrchestre Philharmonique de Los AngelesOrchestre Philharmonique de los AngelesOrkestar Filharmonije Los AngelosOrquesta Filarmonica De Los AngelesOrquesta Filarmonica de Los AngelesOrquesta Filarmoníca De Los AngelesOrquesta Filarmónica Los ÁngelesOrquesta Filarmónica De Los AngelesOrquesta Filarmónica De Los ÁngelesOrquesta Filarmónica de Los AngelesOrquesta Filarmónica de Los ÁngelesOrquesta Fillarmónica De Los AngelesOrquesta Fuilarmónica de Los AngelesOrquestra Filarmónica De Los AngelesOrquestra Filarmónica de Los AngelesOrquestra Filarmônica De Los AngelesOrquestra Filarmônica de Los AngelesPhilharmonia OrchestraPhilharmonic Orchestra Of Los AngelesPhilharmonique De Los AngelesPhilharmonisches Orchester Los AngelesSoloists and Members of The Los Angeles Philharmonic OrchestraThe Los Angeles PhilharmonicThe Los Angeles Philharmonic OrchestraThe Los Angeles Philharmonic Orchestra (*Strings)The Philharmonia OrchestraThe Philharmonic Of Los AngelesThe Philharmonic Orchestra Of Los AngelesΦιλαρμονική Ορχήστρα Του Λος ΆντζελεςОрк. Под Упр. А. ВалленстайнаОркестр П/у А. ВалленстайнаОркестр п/у А. Валленстайнаارکستر فیلارمونیک لس آنجلسگروه فلارمونيک لس انجلسロサンゼルス・フィルハーモニー管弦楽団ロサンゼルス・フィルハーモニー管弦楽団ロスアンジェルス・フィルハーモニー로스앤젤레스 필하모니 오케스트라Nathan ColeLuis ConteBruce DukovLouise Di TullioKarie PrescottEvan WilsonMichael LarcoRobert La MarchinaGlenn DicterowDavid FrisinaKurt ReherAssa DroriGloria LumDaniel RothmullerDavid GarrettBrent SamuelBarry GoldJoseph DitullioAndrew ShulmanAlex AcuñaBarry SocherZita CarnoEdith MarkmanFranklyn D'AntonioAbe LuboffJohn HayhurstOtto KlempererViktoria MullovaLeonard SlatkinAlan DeVeritchMary Louise ZeyenJim Walker (3)Ron LeonardFred DuttonAkiko TarumotoDonald PalmaRoger BoboHarold DicterowRay McNamaraJames ThatcherDavid Weiss (3)Richard EleginoWayne BarringtonThomas StevensMorris StoloffMark BaranovWilliam LaneRobert CowartLos Angeles Philharmonic New Music GroupSidney HarthNorman PearsonGene PokornyPatricia KindelAlfred WallensteinMinyoung ChangSarah JacksonOscar MezaDoriot Anthony DwyerJoseph PereiraJoshua RanzCarrie DennisHaldan MartinsonLawrence SonderlingMilton E. NadelMitchell PetersPeter RofeMia Barcia-ColomboRufus OlivierGuido LamellRobert MarstellerBrian DrakeAmnon LevyMichele GregoJulie FevesMitchell NewmanJerome GordonLou Anne NeillStanley ChaloupkaShibley BoyesRochelle AbramsonFrederick TinsleyMark KashperMartin ChalifourCarolyn HoveLyndon TaylorHerbert AusmanMeredith A. SnowYun TangMichele ZukovskyDennis TremblyRalph SauerByron PeeblesSteven WitserJames Miller (6)Elizabeth BakerBen LulichBert GassmanChristopher HanulikEmmanuel CeyssonEvan KuhlmannCamille AvellanoBing WangBeverly LeBeckPerry DreimanRichard LeshinAnne Diener GilesJohn SchiavoTamara ChernyakJohn BartholomewWilliam TorelloJack CousinAlfred BrainJonathan KarolyLelie ResnickBen UlleryWendell HossJascha VeissiGregory RoosaAdolph WeissGeorge DrexlerSidney WeissAndrew Bain (4)Dale Hikawa-SilvermanDale BreidenthalNitzan HarozDana HansenTao NiChristopher StillMischa LefkowitzSerge OskotskyIngrid ChunJudith MassLeticia Oaks StrongKristine WhitsonEthan BearmanElise ShopeMinor L. WetzelAnne Marie GabrieleJohn LoftonJoanne Pearce MartinVarty ManouelianPaul Stein (2)Ariana GhezMonica KaenzigRobert Vijay GuptaIngrid HutmanRaynor CarrollJohnny Lee (16)Michael Myers (9)David Allen MooreBen HongElizabeth Cook-ShenWhitney CrockettStacy WetzelJames BaborSuli XueDavid Howard (8)Robert deMaineNickolai KurganovJames WiltShawn MouserJason LippmannMichele BovyerChao Hua-JinEric OverholtThomas Hooten (2)Hui LiuCatherine Ransom KarolyMarion Arthur KuszykJin-Shan DaiRoland LeonhardRoland MoritzBurt HaraMathieu Dufour (2)Benjamin PicardHitomi ObaJanet Ferguson (2)Sarah BachBenjamin LashBoris AllakhverdyanStephane BeaulacAndrew Peebles (2)Gabriela Peña-KimMichelle TsengBrian Johnson (42)Teng Li (2)Andrew LowyDana LawsonDenis BouriakovDahae KimDavid RejanoEduardo Meneses (2)Ben SolomonowTom HootenAlex Garcia (12)Michael YoshimiWesley SumpterPaul RadkeJeff Strong (5)Jordan KoranskyJustin WooRebecca RealeShelley BovyerTianyun JiaStephen CusterPeter Stumpf (2)Irving Manning (2)Anthony LindenElyse Lauzon + +835213Josef ChuchroJosef ChuchroCzech classical cellist and educator. Born July 3, 1931 in Prague (former Czechoslovakia), died August 19, 2009 in Prague, Czech Republic. Soloist of [a=The Czech Philharmonic Orchestra] since 1961.Correcthttp://www.ceskyhudebnislovnik.cz/slovnik/index.php?option=com_mdictionary&action=record_detail&id=3988ChuchroJ. ChuchroJoseph ChuchraИ. ХухроИозеф ХухроИосеф ХухроThe Czech Philharmonic OrchestraSuk Trio + +835268Thomas RandleClassical tenor vocalistCorrectThe Sixteen + +835339Haji AhkbaNeeds VoteHaji AhkbarHaji AkbarHaji AkhbaHodgy AkbarGeorge DickersonThe Jungle Band + +835350Adrian LeaperEnglish conductor, born 1953.Needs Votehttp://en.wikipedia.org/wiki/Adrian_LeaperAdrian LeaprerLeaper艾德里安.利珀Orquesta Sinfónica de RTVE + +835378Stephan SchellmannGerman recording engineer (Tonmeister) for classical music; co-founder of [l521126].Correcthttp://www.tritonus.de/S. SchellmannSchellmannSt. SchellmannStefan SchellmannStephan SchellbaumStephan SchellmanStephan Schellmann (Tritonus)Stephen SchellmanSteven Schellmanシュテファン・シェルマンシュテファン・シェルマンTritonus (8) + +835380Jos van ImmerseelJos van ImmerseelBelgian pianist, harpsichordist, and conductor. Founder of the [a=Anima Eterna] ensemble. +Born November 9, 1945 in Antwerp, Belgium.Needs Votehttps://en.wikipedia.org/wiki/Jos_Van_Immerseelhttps://web.archive.org/web/20031002180904/https://www.sonyclassical.com/artists/immerseel/https://www.outhere-music.com/en/artists/jos-van-immerseelhttps://www.bach-cantatas.com/Bio/Immerseel-Jos.htmImmerseelJ. Van ImmerseelJ. van ImmerseelJos Van ImmerseelVan Immerseelvan ImmerseelAnima EternaCollegium AureumOrchestra Of The Age Of EnlightenmentRicercar Consort + +835393Warren DeckAmerican tuba player & producer. Tuba principal of the New York Philharmonic from 1979 to 2003.Needs VoteNew York PhilharmonicHouston Symphony OrchestraNew York Trumpet Ensemble + +835413Manoug ParikianBritish violinist and violin teacher, born 15 September 1920 in Mersin, Turkey to Armenian parents, and died 24 December 1987 in Oxford, England, Great Britain. +He studied at the [url=https://www.discogs.com/label/1379071-Trinity-Laban-Conservatoire-of-Music-and-Dance]Trinity College of Music[/url] (1936-1939). He led the [a=Royal Liverpool Philharmonic Orchestra] (1947-1948), [a=Philharmonia Orchestra] (Joint Leader 1st Violin, 1949-1957), [a=The English Opera Group] (1949-1951), and the [a=Yorkshire Sinfonia] (1976-1978). Prior to his career as a soloist he also was a concertmaster of the [a=London Philharmonic Orchestra]. He served as Musical Director of [a=The Manchester Camerata] from 1980 to 1984. Teacher of Violin at the [l527847] and the [l290263]. +Father of [a=Step Parikian]. Uncle of [a=Levon Chilingirian].Correcthttps://en.wikipedia.org/wiki/Manoug_Parikianhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/parikian-manoughttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-0000020903https://naxosdirect.com/items/manoug-parikian-concertos-and-sonatas-517102https://id.loc.gov/authorities/names/n82105357.htmlhttps://www.latimes.com/archives/la-xpm-1987-12-25-mn-20823-story.htmlhttps://www.imdb.com/name/nm0661496/https://www2.bfi.org.uk/films-tv-people/4ce2b9fde3019M. ParikianManoug ParikanManoug-ParikianManouk ParikianParikianLondon Philharmonic OrchestraPhilharmonia OrchestraMelos Ensemble Of LondonRoyal Liverpool Philharmonic OrchestraThe English Opera GroupPhilharmonia String QuartetYorkshire Sinfonia + +835476Marie-Claude VallinClassical soprano & mezzo-soprano vocalist.Needs VoteM. Cl. VallinMarie Claude VallinGroupe Vocal De FranceLes Arts FlorissantsHuelgas-EnsembleA Sei VociEnsemble Vocal De NantesEnsemble Musica NovaEnsemble La FeniceAkadêmia + +835478Christine KyprianidesClassical cello and viol player.Needs VoteChristina KyprianidesChristina KyprienidesKristina KyprianidesKristina KyprienidesMarie-Christine KyprienidesHuelgas-EnsembleMusica Antiqua KölnLes AdieuxConsortium AntiquumChursächsische PhilharmonieGanassi-Consort + +835481Harry Van BerneDutch classical tenor.Needs Votehttps://www.jhvb.nl/BerneHarry van BerneVan Bernevan BerneHuelgas-EnsembleLa Chapelle RoyaleCappella AmsterdamGesualdo Consort AmsterdamNederlands KamerkoorVocal Ensemble QuinkCapella De La TorreMovimento (4) + +835482Harry van der KampClassical vocalist (bass).Needs VoteH. v. der KampHarry Van De KampHarry Van Der KampHarry Van der KampHarry van de KampHarry van der KampVan Der KampVan der Kampvan Der Kampvan der KampHuelgas-EnsembleCollegium VocaleCappella AmsterdamThe Harp ConsortChoeur de Chambre de NamurWeser-RenaissanceGesualdo Consort AmsterdamLa Capella DucaleNederlands KamerkoorRheinische KantoreiCappella AugustanaVlaams Radio KoorTirami Su (2)Pluto EnsembleMovimento (4) + +835486Bart CoenRecorder player.Needs VoteB. CoenHuelgas-EnsembleCollegium VocaleConcerto VocaleLa Petite BandeIl GardellinoCurrendeGli Angeli GenèveLa Grande ChapellePer FlautoRomanesque + +835487Pascal BertinFrench alto/countertenor vocalist. + +For the compilator/coordinator working for [l=Les Inrockuptibles], please use [a=Pascal Bertin (2)]. +Needs VoteBertinP. BertinConcerto SoaveHuelgas-EnsembleEnsemble Gilles BinchoisLa Chapelle RoyaleThe Academy Of Ancient MusicIl FondamentoLa Capella Reial De CatalunyaDe Nederlandse BachverenigingEnsemble Clément JanequinL'ArpeggiataCantus CöllnBach Collegium JapanEnsemble DaedalusFons MusicaeGli Angeli GenèveIl Teatro ArmonicoAkadêmiaDelitiæ Musicae + +835493Arnold MarinissenDutch percussionist and composer.Needs Votehttp://www.arnoldmarinissen.com/MarinissenIves EnsembleSchlagquartett KölnNieuw Sinfonietta AmsterdamBakin ZubF.C. JongbloedEnsemble SLunapark (5) + +835502Wim van GervenChorus Master of Nederlands Kamerkoor, died in 2008.Needs VoteNederlands Kamerkoor + +835518Sir Colin DavisColin Rex DavisBritish conductor. + +Born: 25 September 1927 in Weybridge, England, UK. +Died: 14 April 2013 in London, England, UK (aged 85). + +Sir Colin Rex Davis CH CBE was an English conductor and was particularly noted for his advocacy of the music of [a=Hector Berlioz] and of [a=Sir Michael Tippett]. In 1960, he was appointed chief conductor of [a=Sadler's Wells Opera Company], a post he held until 1965. After he left Sadler's Wells, and being passed over as principal conductor of the [a=London Symphony Orchestra], he was named chief conductor of the [a=BBC Symphony Orchestra], effective September 1967, serving the orchestra until 1976. From 1971 to 1986, he was principal conductor of the [a855061]. In 1977, he became the first English conductor to appear at Bayreuth. From 1983 to 1993, he was chief conductor of the [a604396]. In 1995, he was appointed principal conductor of the [a=London Symphony Orchestra]; Davis was the longest-serving principal conductor in the history of the LSO, holding the post from 1995 until 2006, after which the orchestra appointed him its President. +Amongst many awards and honours, he was made Commander of the Order of the British Empire (CBE) in 1965, knighted in 1980, and appointed to the Order of the Companions of Honour (CH) in 2001. +He is the father of conductor Joseph Wolfe.Needs Votehttps://www.bach-cantatas.com/Bio/Davis-Colin.htmhttps://en.wikipedia.org/wiki/Colin_Davishttps://www.imdb.com/name/nm0204392/C DavisC. DavisC.DavisColin DaviesColin DavisColin davisColinDavisColing DavisCollin DavidCollin DavisConducted ByDavisSir Colin Daviessir Colin DavisКолин ДейвисСэр Колин Дэвисコリン・デイヴィスサー・コリン・ディヴィスサー・コリン・デイヴィス + +835519Josef GreindlGerman operatic bass singer, (born 23 December 1912 in Munich - 16 April 1993 in Vienna, Austria).Needs Votehttp://en.wikipedia.org/wiki/Josef_GreindlGreindlJ. GreindlJ. GriendlJosef GreidlJosef GreindelJoseph GreindlJozef GreindlЙозеф ГрейндельЙозеф Грейндль + +835520Elisabeth HöngenGerman mezzo-soprano and alto vocalist, born 7 December 1906 in Gevelsberg, Germany and died 6 August 1997 in Vienna, Austria.Needs Votehttps://de.wikipedia.org/wiki/Elisabeth_HöngenE. HoengenE. HöngenE.HöngenElisabeth HoengenElisabeth HongenElisebeth HoengenElizabeth HoengenElizabeth HongenElizabeth HöngenHoengenHongenHöngenЭ. Хёнгенエリザベート・ヘンゲンエリーザベト・ヘンゲンハンス・ホップWiener Staatsopernchor + +835526PérotinMagister Perotinus MagnusPérotin was the most important composer of the Notre-Dame school of Paris, where he started to give form to the polyphonic style. + +Born: c. 1155, France +Died: c. 1230, FranceCorrecthttps://en.wikipedia.org/wiki/P%C3%A9rotin?PérotinMagister PerotinusMagister Perotinus MagnusMaster PerotinusPerotinPerotin (?)Perotin Le GrandPerotin MagnusPerotinoPerotinusPerotinus MagisterPerotinus MagnusPerotinus?Perutinus MagnusPérotin "The Great"Pérotin (Attribué À)Pérotin Le GrandPérotin-Le-GrandПеротинПеротин Великий + +835529LéoninLéonin (or Leoninus, Leonius, Leo)[b]Born:[/b] c. 1150, France (?) +[b]Died:[/b] c. 1201 or 1210, France (?) +Probably French, Léonin is the first known significant composer of polyphonic organum. He probably lived and worked in Paris at the Notre-Dame Cathedral, and was the earliest member of the Notre-Dame school of polyphony who is known by name. +Needs Votehttps://en.wikipedia.org/wiki/L%C3%A9oninLeoninLeoninusLeoninus (Leonin)Leoninus And ColleaguesLéonin (?)Léonin?Magister LeoninusMagisters Leoninus + +835548Stephen GunzenhauserAmerican conductor (b. April 8, 1942), educated at New York, Oberlin, Salzburg Mozarteum, New England Conservatory and Cologne State Conservatory.Needs Votehttps://en.wikipedia.org/wiki/Stephen_GunzenhauserGunzenhauserS. GunzenhauserSt. GunzenhauserStephan GunzenhauerStephan GunzenhauserStephen GunzenhauseCapella Istropolitana + +835562René CharRené CharFrench 20th century poet, born 14 June 1907 in L'Isle-sur-la-Sorgue, Vaucluse, France and died 19 February 1988 in Paris, France. +The composer [a=Pierre Boulez] wrote three settings of Char's poetry, "Le Soleil Des Eaux", "Le Visage Nuptial", and "Le Marteau Sans Maître". +Correcthttp://de.wikipedia.org/wiki/Ren%C3%A9_CharR. CharR. ChartRene CharRene' Char + +835567Arthur GleghornBritish flute & piccolo player. Born 1906 - Died 1980. +Member of the [a=London Philharmonic Orchestra] in the 1930s, the [a=London Symphony Orchestra] (1933-1936) and then Principal of the [a=Philharmonia Orchestra] on its formation in 1945. He moved to Los Angeles, California in 1948 and in 1950 he joined the [a289567] as Principal Flute. He also was Principal Flute with [a838447] for over 20 years. He retired in 1973.Needs Votehttps://open.spotify.com/artist/7iZ1pbwjnCCv3qAUMCilokhttps://music.apple.com/us/artist/arthur-gleghorn/350261927https://za.pinterest.com/pin/516014069800279466/https://www.imdb.com/name/nm9940027/A. GleghornArthur CleghornGleghornLondon Symphony OrchestraLondon Philharmonic OrchestraMGM Studio OrchestraHenry Mancini And His OrchestraPhilharmonia OrchestraThe Hollywood Bowl Symphony Orchestra + +835589Marceau SarbibCredited as jazz bassist.Needs VoteSarbibAlix Combelle Et Son OrchestrePhilippe Brun "Jam Band"Alix Combelle And His Swing Band + +835622Jan DepuydtBelgian Bass vocalist.Needs VoteCollegium VocaleGents Madrigaalkoor + +835623Michiyo KondoClassical violinist.Needs VoteMichio KondoMichyo KondoMychio KondoCollegium VocaleIl FondamentoLa Petite BandeLes Talens LyriquesRicercar ConsortLa Stravaganza KölnIl GardellinoLes AgrémensScherzi MusicaliI Gemelli (2)Redherring Baroque Ensemble + +835624Herman StindersClassical organist.Needs VoteHans Hermann StinderHerman StinderHermann StindersOrchestre Des Champs ElyséesCollegium VocaleCurrendeHathor ConsortLa Grande ChapellePer Flauto + +835626Catherine PatriaszMezzo-soprano vocalist Needs VoteCatherina PatriaszCathérine PatriaszPatriaszCollegium VocaleNederlands Kamerkoor + +835627Koen LaukensBelgian tenor vocalist.Needs VoteCollegium Vocale + +835628Diane MooreClassical violinist.Needs VoteCollegium VocaleThe Academy Of Ancient MusicCollegium Musicum 90Les Talens LyriquesHanover BandLondon Early OperaThe English Concert + +835629Christoph DobmeierBass vocalist.CorrectChristophe DobmeierCollegium VocaleLa Petite Bande + +835630Ellen Van HamClassical soprano.CorrectHuelgas-EnsembleCollegium VocaleLa Chapelle Royale + +835631Annelies CoeneSoprano vocalist.Needs VoteCollegium VocaleLa Chapelle RoyaleLa Petite BandeCappella PratensisCurrendeCorona Coloniensis + +835632Frits VanhulleBass vocalist.CorrectFrits Van HulleFrits VanhülleFrits van HulleFritz VanhulleLes Arts FlorissantsCollegium VocaleLa Chapelle Royale + +835633William O'SullivanClassical trumpeter.Needs VoteWill O'SullivanLondon BrassBournemouth SinfoniettaThe SixteenThe Academy Of St. Martin-in-the-FieldsCollegium VocaleThe Amsterdam Baroque OrchestraCollegium Musicum 90Hanover BandBaroque Brass Of LondonThe English National Opera Orchestra + +835634Lut Van De VeldeBelgian soprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Velde-Lut.htmLut van der VeldeCollegium VocaleThe Amsterdam Baroque Choir + +835635Taka KitazatoJapanese multiple early classical instrumentalist.Needs VoteTaka KitasatoOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque OrchestraLe Concert Des nationsLa Petite BandeRicercar ConsortBach Collegium JapanIl GardellinoRicercar AcademyEnsemble ExplorationsAlba Musica Kyo + +835636Beat DuddeckAlto vocalist.Needs VoteCollegium VocaleCappella AmsterdamCapella AngelicaBremer Barock ConsortWeser-RenaissanceBalthasar-Neumann-ChorLa Capella DucaleRheinische KantoreiOrlando Di Lasso EnsembleLa Grande ChapelleLa Chapelle RhénaneJohann Rosenmüller EnsembleCapella ThuringiaCantus ThuringiaNeue Innsbrucker HofkapelleGli Scarlattisti + +835637Ageet ZweistraClassical cello player.Needs VoteAgeet SweistraOrchestre Des Champs ElyséesCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque OrchestraLes Musiciens Du LouvreRicercar ConsortIl GardellinoGli Angeli GenèveLe Banquet CélesteQuatuor Turner + +835638Florian DeuterClassical violinist and conductor. +Born 1965 in Mülheim an der Ruhr, Germany.Needs Votehttp://de.wikipedia.org/wiki/Florian_Deuterhttp://www.feenotes.com/db/artists/d/deuterflorian.phpCollegium VocaleThe Amsterdam Baroque OrchestraMusica Antiqua KölnMusica Ad RhenumGabrieli PlayersCapriccio StravaganteEnsemble 1700Le Musiche NoveHarmonie UniverselleCordArteInvocation (6) + +835639Udbhava Wilson-MeyerClassical viola player.CorrectUdbhava Wilson MeyerLes Arts FlorissantsCollegium Vocale + +835641Hans Hermann JansenTenor vocalist.CorrectCollegium Vocale + +835643Steve DugardinBelgian alto & countertenor vocalist. Born 9 August 1964 in Ostend, Belgium.Needs VoteSteven DugardinLes Arts FlorissantsHuelgas-EnsembleCollegium VocaleLa Chapelle RoyaleIl FondamentoCapilla FlamencaCurrendeRedherring Baroque Ensemble + +835644Harm-Jan SchwittersClassical CellistNeeds VoteHarm Jan SchwietersHarm Jan SchwittersHarm-Jam SchwittersHarmen Jan SchwittersSchwittersOrchestre Des Champs ElyséesCollegium VocaleLa Chapelle Royale + +835646Christoph PrégardienChristoph PrégardienGerman tenor, born on 18 January 1956 in Limburg an der Lahn. Sings the sacred and the lieder repertoire from the 17th to the 20th century.Needs Votehttps://www.pregardien.com/C. PregardienC. PrégardienCh. PrégardienChr. PrégardienChristophChristoph PregardienChristophe PregardienChristophe PrégardienPregardienPrégardienPrégeardien + +835647Jonathan CableJonathan Cable (born 1948) is an American-French classical double bass and viol player.Needs Votehttps://jonathancable.netLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleMusica Antiqua KölnEnsemble Clément JanequinEnsemble Vocal Européen De La Chapelle Royale + +835648Joost Van Der LindenJoost van der LindenTenor vocalist.Needs VoteThe Gents (2)Collegium VocaleThe Amsterdam Baroque ChoirKoor Van De Nederlandse Bachvereniging + +835649Marcel PonseeleBelgian classical oboist born in 1957 in Kortrijk. Cofounder of Enemble [a=Il Gardellino] +Marcel Ponseele was born in 1957 in Kortrijk (Belgium). He studied modern oboe and chamber music at the conservatories of Bruges, Brussels and Ghent. Afterwards he began to study the baroque oboe. In 1981 he won a prize at the "Musica Antiqua" competition in Bruges. At the same time he played regularly with "La Petite Bande", "The Amsterdam Baroque Orchestra", the "Chapelle Royale" and he is a founder member of the "Orchestra des Champs-Elysées" under the direction of Philippe Herreweghe. In addition he directs the "Harmonie des Champs-Elysées", with which he has given many concerts and made many recordings. +As well as all these activities he and his brother build oboes based on 18th Century models. +Needs Votehttps://web.archive.org/web/20021008083406/http://www.accent-records.com:80/PONSEELE.HTMLM. PonseeleMarcel Ponseele-WelvaertOrchestre Des Champs ElyséesCollegium VocaleLa Chapelle RoyaleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicEnsemble 415Le Concert Des nationsLa Petite BandeLes Musiciens Du LouvreOctophorosRicercar ConsortBach Collegium JapanIl GardellinoRicercar AcademyEnsemble ExplorationsGli Angeli GenèveEuropean Brandenburg EnsembleLa CacciaNorthernlightA Nocte TemporisRedherring Baroque Ensemble + +835650Collegium VocaleThe Collegium Vocale Ghent was founded in 1970 on the initiative of [a=Philippe Herreweghe]. It was one of the first ensembles to use the new ideas about baroque practice in vocal music. Its repertoire ranges from Renaissance polyphony, Classical and Romantic oratorios to contemporary music. Most often, it is accompanied by the baroque orchestra of Collegium Vocale Ghent or the [a=Orchestre des Champs Elysées].Needs Votehttps://www.collegiumvocale.com/Choer Et Orchestre Du Collegium Vocale GentChoeur Et Orchestre Du Collegium VocaleChoeur Et Orchestre Du Collegium Vocale Gent Et De La Chapelle RoyaleChoeurs De La Chapelle Royale Et Du Collegium VocaleChoeurs Du Collegium Vocale Gent Et De La Chapelle RoyaleChoir & Orchestra Of The Collegium Vocale GentChoir Of Collegium Vocale GentChoir Of Collegium Vocale GhentChoir Of Collegium Vocale, GhentChoir of Collegium Vocale GentChorus & Orchestra Of Collegium Vocale, GhentChorus & Orchestra of Collegium Vocale, GhentChorus And Orchestra Of Collegium VacaleChorus And Orchestra Of Collegium VocaleChorus And Orchestra Of Collegium Vocale GhentChorus And Orchestra Of Collegium Vocale, GhentChorus And Orchestra Of The Collegium VocaleChorus Of Collegium Vocale, GhentChœur & Orchestre Du Collegium Vocale De GandChœur Et Orchestre Du Collegium VocaleChœur Et Orchestre Du Collegium Vocale GentChœurs Du Collegium Vocale GentCollegium Vocale De GandCollegium Vocale GentCollegium Vocale Gent & OrchesterCollegium Vocale GhentCollegium Vocale, GandCollegium Vocale, GentCollegium Vocale, GhentCollegium Vocale, gentCollegium Vocals GentCollegum Vocale GentCoro E Orchestra Collegium Vocale Di GandGhent Collegium VocaleKoor En Orkest Collegium VocaleOrchestra Of Collegium Vocale, GhentOrchestre Du Collegium VocaleOrchestre du Collegium Vocaleコレギウム・ヴォカーレ・ゲントMarianne PousseurManuel WarwitzTessa BonnerWilliam KendallMark Bennett (2)Crispian Steele-PerkinsDavid StaffKai WesselDietrich HenschelCaroline BayetPatrick BeaugiraudAgnès MellonPeter PöppelSimon BerridgeRobert VanryneCharles BrettGundula AndersPhilippe HerrewegheClaude MauryMartha Moore (2)Catherine ArnouxHarry van der KampBart CoenJan DepuydtMichiyo KondoHerman StindersCatherine PatriaszKoen LaukensDiane MooreChristoph DobmeierEllen Van HamAnnelies CoeneFrits VanhulleWilliam O'SullivanLut Van De VeldeTaka KitazatoBeat DuddeckAgeet ZweistraFlorian DeuterUdbhava Wilson-MeyerHans Hermann JansenSteve DugardinHarm-Jan SchwittersJonathan CableJoost Van Der LindenMarcel PonseeleAndreas PreussMarilyn BoenauJan De WinneMartin Van Der ZeijstPeter Van BoxelaereBetty Van Den BergheStephen KeavyRobert DiggensPieter CoeneBenedict HoffnungDominique VerkinderenPaul Van Den BergheKoen DieltiensPhilippe MiqueuMartin Kelly (3)Leif BengtssonVeronica ScheppingJames Taylor (5)André CatsSusan Williams (2)Adrian ChamorroRobert Van Der VinnePaul LindenauerDaniel DeuterAndreas GerhardusAnne MopinPhilippe Van IsackerRyo TerakadoDelphine CollotChristine Angot (2)Ulrik LoensBrigitte VerkinderenRaphaël BoulayRik JacobsLéon PetréCaroline PelonVincent BouchotJean ChambouxGalina ZinchenkoKate Van Orden (2)Tobias SchadePatrizia KwellaJohannette ZomerRené SteurHans WijersOtto BouwknegtMargaret FaultlessFoskien KooistraSebastiaan Van VuchtAnn VanlanckerSimon SchoutenOlivier DumaitJob BoswinkelHildegard van OverstraetenSimen van MechelenCatherine FordMiriam ShalinskyStefan LegéeMargreet BongersPeppie WiersmaDeirdre DowlingJoanna GambleAnnette GeigerWim BecuMargaret UrquhartMarten BoekenRainer ZipperlingBenoit HallerDan Martin (5)Adrian PeacockJoost SwinkelsMatthias LutzeMaximilian SchmittJérôme HantaïPierre HantaïMarie-Ange PetitFrançoise RivallandNadine DavinGuya MartininiPer Olov LindekeNicholas PapBruce DickeyCharles ToetPeter De GrootWim Ten HaveRoland KunzAlexander Schneider (2)Patrick BeuckelsRenaud MachartMarc HantaïPiotr OlechFranz-Josef SeligDavid BlackadderBenoît WeegerBrigitte Le BaronClaire GiardelliSetske MostaertThérèse KipferDietlind MayerGhislaine WautersLex VosKris VerhelstJean-Luc ThonnerieuxSusan Hamilton (2)Alessandro MocciaChristophe Robert (2)Markus SchuckHager HananaRené VeenAttilio MotzoRoberto AneddaMeike AugustinPaul HörmannVincent MalgrangeGerhard HölzleWerner GüraJames MunroVeronika SkuplikBrigitte ClémentLeenke De LegeMieke WoutersDanielle EtienneSirkka-Liisa KaakinenElisabeth HermansGiorgio OppoSabine PuhlmannWarren Trevelyan-JonesBart VandewegeLotte VisserCatherine PuigCorrado MasoniSimone MandersGoedele DebelderEnrico TeddeDominik WörnerMira GlodeanuLisinka De Vries-SchuringVirginie DescharmesFlorian MehltretterChristian MückeChristiane VosselerRaphael VosselerStephan GählerBart DemuytAlayne LesliePaul De ClerckFrank de BruineTeunis van der ZwartHarry RiesDavid MunderlohTrudy Van Der WulpMarinette TroostHenning VossDavid Gould (5)Yann MirielTim DowlingBrian FeehanKaat De CockFrédéric Martin (2)Jasu MoisioDorothee MieldsPiet DombrechtPaulien KostenseWilke Te BrummelstroeteSimone VlegelsBernadette BouthoornJacques GomezMarion Van ZonneveldStephane LeysKris DeweerdtMarc Van DaeleLieve MonbaliuDiane VerdoodtAnnemie MonbaliuJos BekkerAndré BerkvensStephan VriesIngrid WaageLudwig Van GijsegemFrits HofsteengeAnne-Marie RogiestPascal GeayHans Jörg MammelMiriam AllanChristine MoranGuy FerberMarnix De CatChristine BuschVerena SommerMargot OitzingerDaniel Taylor (3)Steven HarroldThierry PeteauLotta SuvantoPeter KooijMarkus MärklLaurent StewartDiego MontesEdith Saint MardJean-Charles FerreiraStephan MaciejewskiCorinne TalibartAnnette Schneider (2)Nicolas BauchauHugues PrimardEmmanuelle HalimiGyslaine WaelchliMarion LarigaudrieAndreas GislerElisabeth BelgranoLaurent BruniSandra RaoulxCécile PilorgerRené MazeDirk SnellingsLiam FennellyAlex PotterJuliet FraserSusan EitrichMaria KöpckeChristopher WatsonGunther VandevenStephan MacleodMélodie RuvioDaniel CuillerMalcolm Bennett (2)Uwe Czyborra-SchröderEdwige CardoenJosé PizarroCécile KempenaersMatthew White (6)Yoshitaka OgasawaraAndreas Weller (2)Friedemann BüttnerKathrin TrögerUwe Schulze (2)Benedict HymasSarah Van MolJoël SuhubietteJimmy Holliday (2)Thierry MaederAino HildebrandtTom De VaereHermann OswaldRoberto Fernandez de LarrinoaDamien GuillonTimothée OudinotHana BlažíkováJan KobowMarcel KetelsTore Tom DenysLouise WaymanZoë BrownFrédérick HaasFriedhelm MayThomas HobbsHendrik-Jan HoutsmaZbigniew PilchFrank AnepoolEdzard BurchardsHiltrud HampeTami TromanJulien DebordesBernd FröhlichKoen Van StadeBénédicte PernetMurni SuwetjaMarieke BoucheTobias HungerMaarten van WeverwijkLisa DomnischClaire McInerneyAndreas StriederHans LatourMarjan SmitZsuzsi TóthWilhelm SchwinghammerDorothee MerkelFlorian Schmitt (4)Matthias JahrmärkerAnne-Kristin ZschunkeAlain de RudderYeree SuhIvonne FuchsRafael PalaciosMartijn De Graaf BierbrauwerVasijlka JezovšekPeter Paul HoutmortelsPatrick LaureisLydia HubertLaurent GasparVincent LesageStefan DrexlmeierPaul Van LoeyChristophe SamMarleen VertommenJan ZwerverGabriel BaniaThomas BaetéAndrea InghiscianoBaltazar ZunigaAleksandra LewandowskaGriet De GeyterMaude GrattonElisabeth RappGudrun KöllnerStefan Schmidt (17)Inge ClerixNiek IdemaRomina LischkaClaire McIntyreKorneel BernoletJan Van HoeckeBaptiste LopezErks Jan DekkerAlice FoccroulleAnnelies BrantsRobin TritschlerAnne FreitagBarbora KabátkováKeiko Kinoshita (2)Kai-Rouven SeegerJames Hall (11)Yves Van HandenhoveJoachim HöchbauerSören RichterPolien KostenzePeter DeenenMihiko KimuraAdriaan De KosterBart UvynChiyuki OkamuraJulián MillánSusanna FairbairnIrene KleinEmilie De VoghtMagdalena PodkoscielnaElias BenitoCarla BabelegotoSofia GvirtsGeorg FingerLucia NapoliPhilipp KavenSylvie De PauwThomas KöllMaria RocaFrancesca BoncompagniHannah ElyKristen WitmerTobias KnausLuca CervoniSebastian MyrusPeter Di ToroBart CypersAmine HadefOwen WillettsLore Agusti GarmediaBenjamin GlaubitzAurélie FranckBerend EijkhoutMargreet RietveldFelix Rumpf (2)Mieke van LarenMarlen HerzogHitoshi TamadaRoswitha SchmelzlTiina ZahnUrsula EbnerMeng HanPaul BialekTomáŝ Laijtkep + +835652Andreas PreussClassical violinist. +Andreas Preuss has gained an excellent worldwide reputation as restorer, consultant and expert for the authentification of rare violins and bows. Needs Votehttp://preuss.jp/index-e.htmlAndreas PreußOrchestre Des Champs ElyséesCollegium VocaleCapella Agostino SteffaniLa StagioneRicercar ConsortAuser Musici + +835653Marilyn BoenauClassical wind instrumentalist (bassoonist).Needs Votehttps://www.linkedin.com/in/marilyn-boenau-065111b/https://handelandhaydn.org/about/musicians/orchestra-and-chorus/marilyn-boenau/Collegium VocalePhilharmonia Baroque OrchestraBoston BaroqueThe Handel & Haydn Society Of BostonMusica PacificaTempesta Di Mare + +835655Jan De WinneJan de WinneClassical flutist. +Also as liner notes author, producer and instrument builder.Needs Votehttp://www.ilgardellino.be/%5CJan-De-Winne.aspx?Lg=ENOrchestre Des Champs ElyséesCollegium VocaleLa Chapelle RoyaleIl GardellinoL'Armonia SonoraGli Angeli GenèveKölner AkademieLa Divina Armonia + +835656Martin Van Der ZeijstAlto/countertenor vocalist.CorrectMaarten Van Der ZeijstMartin Van De ZeijstMartin van Der ZeystMartin van der ZeystCollegium VocaleLa Chapelle RoyaleLa Petite BandeKammerchor StuttgartNederlands KamerkoorCorona Coloniensis + +835657Peter Van BoxelaereClassical violin and viola player.Needs VotePeter Van BoxelaerPeter Von BoxeleareLes Arts FlorissantsAnima EternaCollegium VocaleLa Chapelle RoyaleIl Seminario MusicaleDe Nederlandse BachverenigingTafelmusik Baroque OrchestraApotheosis (8) + +835658Betty Van Den BergheAlto vocalist.Needs VoteBetty van der BergheCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque ChoirCapella Ricercar + +835659Stephen KeavyClassical trumpeter.Needs VoteKeavyStephen KeaveySteve KeavySteven KeaveyNew London ConsortThe Parley Of InstrumentsCollegium VocaleLa Chapelle RoyaleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicLondon Classical PlayersHanover BandBaroque Brass Of LondonDas Kleine KonzertLondon Handel OrchestraL'Estro ArmonicoThe English Concert + +835660Robert DiggensClassical violinist.CorrectCollegium Vocale + +835661Pieter CoeneBelgian bass vocalist born in Gent.Needs Votehttp://www.bach-cantatas.com/Bio/Coene-Pieter.htmhttps://www.facebook.com/pieter.coene.3Collegium VocaleLa Chapelle RoyaleLa Petite BandeChoeur de Chambre de NamurPsallentesCorona Coloniensis + +835662Benedict HoffnungBenedict HoffnungBritish classical percussionist & principal timpani player, choral director, conductor, music director, and Professor of Timpani. +Founding member of the [a=Hanover Band]. Timpanist with the [a=London Mozart Players] and [a=The Academy Of Ancient Music]. He regularly joins the [a=London Symphony Orchestra]. Conductor of [a=The St. Cecilia Chorus] and of his own original instrument orchestra the [b]Rinaldo Consort[/b] & [b]Rinaldo Choir[/b]. Professor of Baroque Timpani Studies at the [l=Royal Academy Of Music], London. Founder and Music Director of the [b]Wotton Concert Series[/b]. +Son of [a=Gerard Hoffnung] & [a=Annetta Hoffnung].Needs Votehttps://www.benhoffnung.co.uk/https://www.facebook.com/ben.hoffnunghttps://mobile.twitter.com/benhoffnunghttps://www.linkedin.com/in/benedict-hoffnung-43694478/https://thehanoverband.com/beethoven-250-meet-the-musicians-ben-hoffnung-timpani/https://www.londonmozartplayers.com/ben-hoffnung/https://aam.co.uk/benedict-hoffnung/https://www.ram.ac.uk/people/benedict-hoffnungBen HoffnungGabrieli ConsortLondon Symphony OrchestraCollegium VocaleThe Academy Of Ancient MusicLondon Mozart PlayersLondon Classical PlayersHanover BandLocke Brass ConsortThe Symphony Of Harmony And InventionOrchestra Of The SixteenThe English Concert + +835663Dominique VerkinderenSoprano vocalist.CorrectCollegium VocaleLa Chapelle Royale + +835664Paul Van Den BergheBass vocalist.CorrectPaulus Van Den BergheCollegium VocaleLa Chapelle RoyaleLa Petite Bande + +835730Sir William WaltonWilliam Turner WaltonEnglish composer and arranger. His best-known works include Façade, the cantata Belshazzar's Feast, the Viola Concerto, the First Symphony, and the British coronation anthems Crown Imperial and Orb and Sceptre. + +Born on March 29, 1902 in Oldham, Lancashire, England and died on March 8, 1983 in Ischia, Italy.Needs Votehttps://www.waltontrust.org/https://en.wikipedia.org/wiki/William_Waltonhttps://www.imdb.com/name/nm0006338/https://www.britannica.com/biography/William-Waltonhttps://www.bach-cantatas.com/Bio/Walton-William.htmJ.WaltonJohn WaltonSir WaltonSir William Walton (O.U.P.)Sir William Walton O.M.Sir William Walton OMSir William Walton, O.M.Sir Wm. WaltonW WaltonW. WaltonW.WaltonWaltonWilliam (Turner) WaltonWilliam T. WaltonWilliam Turner WaltonWilliam WaldonWilliam WaltonWilliams WaltonWillilam WaltonWm. WaltonВилиам Волтонサー・ウィリアム・ウォルトン + +835731Philip Jones Brass EnsembleFormed by trumpeter [a694863] in 1951, PJBE was one of the first modern classical brass ensembles. The group started as a quartet drawn from musicians of the [url=http://www.discogs.com/artist/Orchestra+Of+The+Royal+Opera+House%2C+Covent+Garden]Covent Garden Opera House Orchestra[/url], later the ensemble performed either as a ten-piece or as a quintet [a748640]. In 1986, Philip Jones announced his retirement, and on June 8 the same year, PJBE played their last public performance. + +[b]First line-up:[/b] +Philip Jones - trumpet (1st) +Roy Copestake - trumpet (2nd) +Charles Gregory - horn +Evan Watkin - trombone + +[b]Last line-up:[/b] +Philip Jones - trumpet +Rod Franks - trumpet +Nigel Gomm - trumpet +Joseph Atkins - trumpet +Roger Harvey - trombone +Christopher Mowat - trombone +David Purser - trombone +Raymond Premru - bass trombone +John Fletcher - tuba +Needs Votehttps://en.wikipedia.org/wiki/Philip_Jones_Brass_EnsembleConjunto De Metal De Philip JonesConjunto De Metales Philip JonesEnsemble De Cuivres Philip JonesMember Of The Philip Jones Brass EnsembleMembers Of The Philip Jones Brass EnsemblePhilip JonesPhilip Jones - BläserensemblePhilip Jones Bläser-EnsemblePhilip Jones BläserensemblePhilip Jones Brass Ensemble, ThePhilip Jones EnsemblePhilip Jones-Bläser-EnsemblePhilip Jones-BläserensemblePhilip Jones-Brass-EnsemblePhilip Jones: Brass EnsemblePhilipp Jones Brass EnsemblePhilipp Jones Brass Ensemble U.A.The Philip Jones Brass EnsembleThe Philip Jones EnsembleThe Phillip Jones Brass Ensembleフィリップ・ジョーンズ・アンサンブルフィリップ・ジョーンズ・ブラス・アンサンブルフィリップ・ジョーンズ金管合奏団Paul ArchibaldStephen SaundersJim Buck JrJohn WilbrahamRay PremruMaurice MurphyJohn PigneguyGary KettelFrank LloydDave Stewart (2)James Watson (2)Steve HendersonCrispian Steele-PerkinsDavid PurserColin SheenElgar HowarthJames HollandAnthony ChidellNorman ArchibaldDenis WickEric CreesJohn Fletcher (2)Philip JonesMike HextRoger HarveyDavid CorkhillMichael Laird (2)Anthony HalsteadJohn Wallace (4)Sidney EllisonHoward SnellPatrick HarrildNigel GommLindsay ShillingJames Anderson (6)Christian RutherfordDerek James (2)Roger BrennerRoy CopestakeFrank RycroftJohn IvesonMichael Skinner (2)Arthur Wilson (3)John Miller (14)Ray Brown (8)Anthony RandallIfor JamesRod FranksWilliam HoughtonPeter Harvey (2)John Jenkins (6)Peter ReeveHarold NashTimothy HawesLawrence Evans (2)Patrick GarveyDavid Moore (32)James HandyCharles Gregory (7)James Buck (3) + +835732Barry WordsworthBarry WordsworthBritish conductor, born February 20, 1948, in Worcester Park, Surrey, England. He is Music Director and Principal Conductor of the Brighton Philharmonic Orchestra, and also Principal Conductor of the [a263416].Needs Votehttps://en.wikipedia.org/wiki/Barry_Wordsworthhttp://www.bbc.co.uk/orchestras/concertorchestra/about_us/barrywordsworth.shtmlhttp://www.brightonphil.org.uk/performers/wordsworth.htmlB. WordsworthBarry WoldsworthBarry WordswothBarry WordworthWordsworthБари УърдсуъртБарри Вордсвортバリー・ワーズワース + +835733Della JonesWelsh mezzo-soprano vocalist, born 13 April, 1946 in Tonna, near Neath, Wales.Correcthttp://en.wikipedia.org/wiki/Della_JonesDelle JonesJones + +835735Sir Neville MarrinerNeville MarrinerBritish conductor, violinist, and professor (born April 15, 1924, Lincoln, England and died October 2, 2016). +He studied at the [l290263] and [l1014340]. While a student, he joined the [a=London Symphony Orchestra] (in 1941). He was briefly a music teacher at [l873500]. In 1948, he became a professor of the Royal College of Music. In 1948 or 1949, he took up the position of second violinist of the [b]Martin String Quartet[/b], continuing to play with the quartet for 13 years. Founder of the [b]Virtuoso String Trio[/b]. Marriner joined [a=The Jacobean Ensemble] in 1951. He played the violin in two London orchestras: the [a=Philharmonia Orchestra] (1952-?), and the London Symphony Orchestra (LSO) as principal second violin (1954–69). In 1958, he founded [a=The Academy Of St. Martin-in-the-Fields] (being its conductor and lead violin in early 1960s, before focusing to conducting), and his partnership with them is the most recorded of any orchestra and conductor. Marriner was the founder and first music director of [a=The Los Angeles Chamber Orchestra], from 1969 to 1978. From 1979 to 1986, he was music director of the [a=Minnesota Orchestra]. He was principal conductor of the [url=https://www.discogs.com/artist/301263-Radio-Sinfonie-Orchester-Frankfurt]Stuttgart Radio Symphony Orchestra[/url] from 1986 to 1989. +Marriner was appointed a Commander of the Order of the British Empire (CBE) in 1979. He was created a Knight Bachelor in 1985. In the 2015 Queen's Birthday Honours, he was appointed a Member of the Order of the Companions of Honour (CH). He was appointed an officer of the French Ordre des Arts et des Lettres. +Father of [a=Andrew Marriner] (from his first marriage with cellist, and later antiquarian bookseller, Diana Carbutt).Needs Votehttps://www.asmf.org/sir-neville-marriner/https://www.britannica.com/biography/Neville-Marrinerhttps://en.wikipedia.org/wiki/Neville_Marrinerhttps://www.feenotes.com/database/artists/marriner-sir-neville-15th-april-1924-2nd-october-2016/https://www.scena.org/lsm/sm5-9/neville-en.htmhttps://www.musicianguide.com/biographies/1608001151/Neville-Marriner.htmlhttps://www.bach-cantatas.com/Bio/Marriner-Neville.htmhttps://www.deccaclassics.com/en/artists/sirnevillemarriner/biographyhttps://www.naxos.com/person/Neville_Marriner_17744/17744.htmhttps://www.theguardian.com/music/2016/oct/02/sir-neville-marriner-obituaryhttps://www.bbc.com/news/entertainment-arts-37535272https://www.nytimes.com/2016/10/03/arts/music/neville-marriner-prolific-musician-and-acclaimed-conductor-dies-at-92.htmlhttps://www.grammy.com/grammys/artists/neville-marriner/11943https://www.imdb.com/name/nm0550165/https://www.classicfm.com/artists/sir-neville-marriner/guides/life-in-pictures/MarinerMarrinerN MarrinerN. MarrinerNevile MarrinerNevill MarrinerNeville MarinerNeville MarrinerNevillle MarrinerSir N. MarrinerSir Nevile MarrinerSir Neville M.Sir Neville MarinerSir Neville MarlinerН. МарринерНевил МаринерНевилл МаринерНевилл МарринерНевилл МэрринерНэвилл МарринерСэр Н. МарринерСэр Невилл МаринерСэр Невилл МарринерСэр Невилл МэрринерСэр Нэвилл МерринерСэр Нэвилль МарринерСэр. Н. Марринерсэр Невилл Марринерサー・ネビル・マリナーサー・ネヴィル・マリナーサー・ネヴィル・マリナーネビル・マリナーネヴィル・マリナーLondon Symphony OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsDeller ConsortThe London StringsBaroque String EnsembleThe Jacobean Ensemble + +835739Bournemouth Symphony OrchestraEnglish orchestra, founded in 1893 and originally based in Bournemouth, Dorset, England, UK.Needs Votehttps://bsolive.com/https://en.wikipedia.org/wiki/Bournemouth_Symphony_Orchestrahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/360669/Bournemouth_Municipal_OrchestraB.S.O.BSOBournemouth SOBournemouth Sinfonietta OrchestraBournemouth SymphonyBournemouth Symphony BrassBournemouth Symphony Orch.Bournemouth Symphony Orchestra Brass EnsembleBournemouthin SinfoniaorkesteriBournemouthin SinfoniaorkesteriaBournmouth Symphony OrchestraOrchestraOrquesta Sinfónica De BournemothOrquesta Sinfónica De BournemouthOrquesta Sinfónica de BournemouthThe Bournemouth Symphony OrchestraBournemouth Municipal OrchestraPhil BoydenDavid HillJacqui PenfoldDavid NolanBrendan O'Brien (2)Jeff BryantDuncan RiddellJulie-Ann Gillett SmithDenis WickMark DavidRuth RogersEdwin PalingAndrew LittonHugh MaguireDaniel JemisonJamie PullmanAnthony HalsteadAlan Sinclair (3)John Williams (18)Arthur DavisonGareth Davies (5)David ArcherTimothy Brown (2)Mary SamuelPenny DriverPeter WaldenKaren Jones (3)Christine MessiterRoger FoxwellBarry DavisPaul RinghamStephen StirlingKevin Smith (8)Anna PyneGerald JarvisKevin RundellPhilip Borg-WheelerMichael Turner (9)John HurseyKaren LeachRobb TooleyChristopher MagnusKeith Wood (4)Jesper SvedbergColin ParisRodney SeniorLaura KernohanJoseph KoosFelix KokJeffrey Brown (2)Robert GrowcottJoseph CurrieEvan WatkinAndrew BarclayKevin PritchardEd LockwoodPeter TurnbullRobert Harris (7)William Prince (3)Walter HanesworthAlan DanceyPeter WithamSonia DanceyGeoffrey PrenticeEva MalmbomAndrew Smith (30)Kenneth Smith (6)Ian Thompson (13)Christopher AvisonMorfan EdwardsTom BeerAmyn MerchantEluned PierceHolly RandallTimothy WaldenMalcolm Warne-HollandPatrick DingleColin VerrallJohn FulkerJosephine BarnesMolly KirbyBarry GlynnSheila WhitmoreIan Harvey (4)Jacqueline GushCedric MorganTimothy ColmanDenis WisePeter Hastings (2)Laurence BeersAlfred JuppMichael FroudRichard WillettsLyndon Thomas (2)Leslie MuskMalcolm PfaffAlison MyersWilliam HuddartBernadette HumeEric ButtEric Joseph (2)Helen ReynoldsJudith RodmellCaroline BerthoudHubert DownsBarrington LatchemAlan CutterRaymond CarpenterDonald Macdonald (4)Anthony Godwin (2)Donald FroudDavid Johnson (42)Graham BeazleyWilliam HallettGraham CooteSidney ToddChristopher Gale (2)John Butterworth (3)Daphne MaxwellSusan Smith (6)Alwyn GreenLaurence GrayCharles BarnesAoife FroudAndrew Clunies-RossWilliam Kitchen (3)Julia BrocklehurstValentine AbazaGillian KayeBrian ForeshawCharles ThorgilsonIan PillowRobert Colman (2)Sally Brown (4)Marilyn DownsJeffrey PlentyGeorge FolprechtPeter Baird (2)John Braddock (2)Stefan ReveszDavid SheanEugene Lee (4)Andy CresciAlex WideAuriol EvansEdward Kay (4)Helen Cox (4)Sophie CameronNorman HallamAnna BastowPeter BussereauMartyn Jones (4)Ifan WilliamsAdam Szabo (2)Douglas Morris (3) + +835740Chorus Of St Martin In The FieldsChorus found in 1975.Needs Votehttp://www.bach-cantatas.com/Bio/ASMF.htmASMF ChorusAcademy And Chorus Of St Martin-In-The-FieldsAcademy And Chorus Of St. Martin In The FieldsAcademy And Chorus Of St. Martin-In-The-FieldsAcademy ChoirAcademy ChorusAcademy Chorus - Academy Of St Martin In The FieldsAcademy Chorus Of St Martin In The FieldsAcademy Chorus Of St. Martin In The FieldsAcademy Chorus Of St. Martin-in-the-FieldsAcademy Chorus of Saint Martin in the FieldsAcademy Chorus of St. Martin in the FieldsAcademy Of Chorus Of St. Martin-in-the-FieldsAcademy Of St Martin In The FieldsAcademy Of St Martin In The Fields ChorusAcademy Of St Martin-In-The-Fields ChorusAcademy Of St Martin-in-the-Fields ChorusAcademy Of St. Martin In The FieldsAcademy Of St. Martin In The Fields ChorusAcademy Of St. Martin-in-the-Fields ChorusAcademy of St. Martin In The Fields ChorusCantata Choir Of St. Martin-in-the-FieldsChoir Of St. Martin-In-The-FieldsChor Academy Of St. Martin-in-the-FieldsChoral Scholars Of St Martin In The FieldsChoral Scholars Of St Martin-in-the-FieldsChorusChorus Of St. Martin-in-the-FieldsChorus Of Academy Of St Martin In The FieldsChorus Of St Martin-In-The FieldsChorus Of St Martin-In-The-FieldsChorus Of St Martin-in-the-FieldsChorus Of St. Martin In The FieldsChorus Of St. Martin-In-The-FieldsChorus Of St. Martin-in-the-FieldsChorus Of St. Martin-in-the-fieldsChorus Of The Academy Of St. Martin In The FieldsChorus of St. Martin-in-The FieldsChorus of St. Martin-in-The-FieldsChorus of St. Martin-in-the-FieldsChœurs De L'AcademyChœurs De L'Académie De St Martin In The FieldsCoroCoro De St Martin In The FieldsCoro de St. Martin In The FieldsSt. Martin In The Fields ChorusThe Academy ChorusThe Academy Of St. Martin In The Fields ChorusThe Academy Of St. Martin-in-the-Fields ChorusThe Academy of St Martin in the Fields ChorusThe Choir Of St. Martin-In-The-FieldsThe Choir Of St. Martin-in-the-FieldsThe Chorus Of The Academy Of St. Martin In The FieldsThe St Martin In The Fields Chorusアカデミー室内合唱団Dawn UpshawKurt MollAnn MurrayJohn AlerEthna Robinson + +835801Robby HellynDouble bassistNeeds VoteGolden Symphonic OrchestraI FiamminghiOrchestre Du Théâtre Royal De La Monnaie + +835861Koen DieltiensRecorder player.Needs VoteHuelgas-EnsembleCollegium VocaleConcerto VocaleGli Angeli GenèveCapriola Di Gioia + +835862Philippe MiqueuClassical bassoonist.Needs VoteLes Arts FlorissantsCollegium VocaleLa Petite BandeLes Talens LyriquesLes Folies FrançoisesLe Concert D'AstréeGli Angeli GenèveCappella MediterraneaLe Concert UniverselLa Tempesta Basel + +835864Martin Kelly (3)Classical viola player.Needs Votehttps://oae.co.uk/people/martin-kelly/The Scholars Baroque EnsembleNew London ConsortThe SixteenCollegium VocaleThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe King's ConsortThe Academy Of Ancient Music Chamber Ensemble + +835865Leif BengtssonClassical trumpeter.CorrectOrchestre Des Champs ElyséesCollegium Vocale + +835866Veronica ScheppingClassical violinist.Needs VoteVeronika ScheppingCollegium VocaleConcerto KölnLa StagioneBalthasar-Neumann-EnsembleLa Stravaganza Köln + +835867James Taylor (5)American classical tenor (born 1966 in Dallas), known for singing the Evangelist in works of [a=Johann Sebastian Bach].Correcthttp://en.wikipedia.org/wiki/James_Taylor_(tenor)http://www.bach-cantatas.com/Bio/Taylor-James.htmJ. TaylorJames TaylorTaylorCollegium Vocale + +835869André CatsClassical tenor.Needs VoteAndre CatsCollegium VocaleCappella PratensisWeser-Renaissance + +835871Susan Williams (2)Classical trumpeter.Needs VoteSusan WiliamsLes Arts FlorissantsCollegium VocaleMusica Antiqua KölnCombattimento Consort AmsterdamAustralian Brandenburg OrchestraCantus CöllnWeser-RenaissanceLa Stravaganza KölnBatzdorfer HofkapelleHandel's CompanyClarini Trumpet ConsortEuropäisches Hanse-Ensemble + +835872Adrian ChamorroClassical violinist and conductor. +Born into a family of musicians, Adrian Chamorro began studying violin at the age of four years in Bogotá, his hometown. Five years later he made his first recital for the National Television of Colombia.Needs Votehttp://adrianchamorro.com/Orchestre Des Champs ElyséesCollegium VocaleLa Chapelle RoyaleLe Concert Des nationsLes Talens LyriquesLes Musiciens Du LouvreEnsemble Baroque De LimogesRicercar ConsortThe Mullova EnsembleQuatuor Turner + +835873Robert Van Der VinneBass vocalist.Needs VoteRobert van der WinneCollegium VocaleCappella Amsterdam + +835874Paul LindenauerClassical violinist and viola playerNeeds VoteAnima EternaCollegium VocaleConcerto KölnLa Stravaganza KölnCappella ColoniensisBashed Potatoes + +835875Daniel DeuterClassical violinist.Needs VoteDaniel M. DeuterCollegium VocaleAkademie Für Alte Musik BerlinMusica Antiqua KölnCantus CöllnEnsemble »Alte Musik Dresden«Capella Regia MusicalisBatzdorfer HofkapelleTelemann-Kammerorchester MichaelsteinNeue Hofkapelle MünchenAnima Mea (2)CordArteOrchester Des Gymnasiums Essen-Werden + +835876Andreas GerhardusGerman classical viola player.Needs VoteCollegium VocaleMusica Antiqua KölnLa StagioneCappella ColoniensisEnsemble AgoraNova StravaganzaPleyel Quartett KölnConcerto Con Anima + +835920Andrew CornallProducer and record company executive. Worked as recording/senior/executive producer ([l=Decca], 1974–2001), vice president +A&R ([l=EMI Classics]) and consultant artistic director ([a=Royal Liverpool Philharmonic Orchestra]).Needs VoteAndrey CornallЭндрю Корнелл + +835926Robert KöblerGerman classical keyboard instrumentalist +Born 21 February 1912 in Waldsassen, Bavaria, Germany, died 07 September 1970 in Leipzig, Germany.Needs Votehttp://www.bach-cantatas.com/Bio/Kobler-Robert.htmhttps://de.wikipedia.org/wiki/Robert_K%C3%B6blerKöblerKöhlerRobert KeblerKammerorchester Berlin + +835968Gabriel BacquierGabriel Augustin Raymond Théodore Louis BacquierFrench operatic baritone +Born: 17th May 1924 Béziers, France +Died: 13th May 2020 Lestre, Normandy, FranceCorrecthttp://en.wikipedia.org/wiki/Gabriel_BacquierBacquierBaquierG. BacquierGabriël BacquierГабриэль Бакье + +835971Michèle CommandFrench classical soprano vocalist, b. nov 27, 1946.Needs Votehttps://fr.wikipedia.org/wiki/Mich%C3%A8le_CommandCommandM. CommandM.CommandMichele CommandMichelle Command + +835977Jean-Yves ThibaudetFrench pianist, born 7 September 1961 in Lyon, France.Needs Votehttps://www.jeanyvesthibaudet.com/https://www.facebook.com/thibaudethttps://www.youtube.com/channel/UClxLOvBj-5D4MacUjmejZzgJ. ThibaudetJean Yves ThibaudetJean- Yves ThibaudetJean-Yves ThibautThibaudetジャン=イヴ・ティボーデ + +836005Hans OttoGerman organist and harpsichordist (* 29 September 1922 in Leipzig, German Empire; † 28 October 1996 in Freiberg / Sachsen, Germany). +Needs Votehttps://de.wikipedia.org/wiki/Hans_Otto_(Organist)http://www.bach-cantatas.com/Bio/Otto-Hans.htmH. OttoHans OtoOttoStaatskapelle DresdenThomanerchor + +836010Eberhard HinzGerman sound engineer and recording producer.CorrectE. HinzEberhard Hinx + +836012Eberhard GeigerEberhard Geiger (*1936 ?) is a German musicologist and long-time music director and classical music producer of the GDR – record label [l47734]. +For a long time, it was also mistakenly referred to as [a572956].Needs Votehttps://scharwenkahaus.de/bericht/2023/11/7670/E. GeigerEberhard GeigeEberhard Geiger, BerlinEberhard GeilerEberhard Geiler (VEB Deutsche Schallplatten)Eberhard Geiler + +836049Roy GoodmanEnglish conductor and violinist, born 26 January 1951. + +He is specialised in the performance and direction of early music. He became internationally famous as the 12-year-old boy treble soloist in the March 1963 recording of Allegri's Miserere with the Choir of King's College, Cambridge, under David Willcocks. + +He is the current director of the [a1330642] and the founder of [a=The Parley Of Instruments] in 1979.Needs Votehttp://www.roygoodman.com/https://en.wikipedia.org/wiki/Roy_GoodmanGoodmanR. GoodmanRoy P. GoodmanРой ГудманThe Parley Of InstrumentsLa Chapelle RoyaleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicThe King's ConsortBrandenburg ConsortLondon Handel OrchestraThe English Concert + +836050Anne MopinSoprano vocalist.CorrectLes Arts FlorissantsCollegium VocaleLa Chapelle Royale + +836051Philippe Van IsackerTenor vocalist.CorrectPhilip Van IsackerPhilip van IsackerCollegium Vocale + +836052Michel HenryClassical oboist.CorrectHenri MichelHenryM. HenryMichael HenryLes Arts FlorissantsLa Chapelle RoyaleThe Amsterdam Baroque OrchestraLes Musiciens Du LouvreCafé Zimmermann + +836053Nicolette MoonenClassical violin and viola player.Needs Votehttps://www.facebook.com/profile.php?id=1807711030Nicolette MoonanNew London ConsortLa Chapelle RoyaleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90La Petite BandeOrchestra Of The Age Of EnlightenmentConcerto CaledoniaBrandenburg ConsortEx Cathedra Baroque OrchestraThe Music CollectionThe Bach Players + +836054Ryo TerakadoBolivian-born Japanese violinist and conductor, born in 1961.Needs VoteRyo TeraokadoRyo TerekadoRyo Terrakado寺神戸亮Les Arts FlorissantsCollegium VocaleLa Chapelle RoyaleLa Petite BandeRicercar ConsortBach Collegium JapanIl GardellinoLe Concert FrançaisLes MuffattiOrchestra Barocca ItalianaPer FlautoI Gemelli (2)Musica FavolaRedherring Baroque EnsembleTokyo Baroque Trio + +836055Delphine CollotSoprano vocalist.Needs VoteD. CollotCollegium VocaleLa Chapelle RoyaleA Sei VociEnsemble Jacques Moderne + +836056Christine Angot (2)Classical viola & viol instrumentalistNeeds VoteLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleIl Seminario MusicaleConcerto KölnEnsemble 415Le Concert D'AstréeLes Musiciens Du LouvreRicercar ConsortCantus Cölln + +836057Myriam GeversClassical violinist.Needs VoteLes Arts FlorissantsLa Chapelle RoyaleLa Petite BandeLes Talens LyriquesLes Musiciens Du LouvreCapriccio StravaganteLes PassionsMusica Favola + +836058Ulrik LoensTenor vocalist.CorrectCollegium Vocale + +836059Jonathan ImpettClassical trombone & trumpet instrumentalistNeeds VoteImpettJohn ImpettNew London ConsortCircuit (8)La Chapelle RoyaleThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicGabrieli PlayersOrchestra Of The 18th CenturyApartment House + +836060Brigitte VerkinderenSoprano vocalist.CorrectBrigette VerkinderenCollegium VocaleLa Chapelle Royale + +836061Raphaël BoulayTenor vocalist.Needs VoteR. BoulayRafael BoulayRaphael BoulayEnsemble Gilles BinchoisCollegium VocaleLa Chapelle RoyaleMaîtrise De Notre-Dame De ParisDiabolus In MusicaAlla Francesca + +836062Rik JacobsAlto vocalist.CorrectCollegium Vocale + +836063Howard CrookHoward Crook (15 June 1947 in Rutherford, New Jersey, USA - 27 August 2024) was an American lyric tenor.Needs VoteCrookH. CrookHoward A. Crookハワード・クルックPomeriumThe Ineluctable ModalityLes Arts FlorissantsLa Chapelle RoyaleRheinische KantoreiBoston Early Music Festival Chorus + +836064Léon PetréClassical trumpeter.CorrectLeon PétréCollegium VocaleLa Chapelle Royale + +836065Gérard LesneFrench countertenor and conductor (born July 15, 1956 in Montmorency, France). Founder of the Italian baroque music ensemble [a=Il Seminario Musicale] in 1985. + +Gérard Lesne's initial vocation was jazz and rock singer, but in 1979 the Belgian tenor [a=Zeger Vandersteene] introduced him to the Austrian musician and musicologist [a=René Clemencic], a pioneer of work in the medieval repertoire, and at age 23, Lesne began touring with the [a=Clemencic Consort] (an ensemble dedicated to ancient music and founded by René Clemencic in 1957). + +From 1984 to 1990 he sang with [a=Les Arts Florissants] under the founder [a=William Christie], delving mainly into French Baroque repertory. In 1985 Lesne founded [a=Il Seminario Musicale] and explored Italian Baroque music and made many recordings. + +From 1988 to 1992 Lesne sang with [a=Philippe Herreweghe] and his ensembles [a=La Chapelle Royale] and [a=Collegium Vocale] Gent. + +Since 1993 Lesne has given vocal classes at the Royaumont Abbey in France, and throughout the 1990s and into the new century remained active on the concert scene, particularly with [a=Il Seminario Musicale]. +Needs Votehttps://www.allmusic.com/artist/g%C3%A9rard-lesne-mn0000154925/biographyhttp://www.bach-cantatas.com/Bio/Lesne-Gerard.htmhttps://web.archive.org/web/20090909065921/http://www.royaumont.com/fondation_abbaye/biographies_in_english.1118.0.htmlhttps://en.wikipedia.org/wiki/G%C3%A9rard_LesneG. LesneGerard LesneLesneジェラール・レーヌHuman? (2)Les Arts FlorissantsIl Seminario MusicaleClemencic ConsortEnsemble OrganumEnsemble Clément JanequinMa Banlieue FlasqueAlia Musica + +836066Caroline PelonSoprano.Needs Voteカロリーヌ・ペロンCollegium VocaleEnsemble Jacques ModerneAkadêmiaL'Amoroso + +836067Vincent BouchotVincent Bouchot (born 1966 in Toulouse) is a French Tenor vocalist, composer and musicologist.Needs VoteLe Concert SpirituelCollegium VocaleLa Chapelle RoyaleEnsemble Clément JanequinLudus ModalisLe Parnasse FrançaisEnsemble DedalusLa RéveuseEnsemble europeen William ByrdLes Traversées BaroquesLes Meslanges + +836069Peter HarveyClassical vocalist (bass).Needs Votehttp://www.peterharvey.com/HarveyP. Harveyピーター・ハーヴェイGabrieli ConsortThe Choir Of The King's ConsortThe Tallis ScholarsLe Concert SpirituelThe Monteverdi ChoirTaverner ChoirChor & Orchester Der J.S. Bach Stiftung St. Gallen + +836071Jean ChambouxClassical percussionist.CorrectCollegium VocaleLa Chapelle Royale + +836072Galina ZinchenkoGalina ZinchenkoClassical viola player.Needs VoteLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleConcerto VocaleLe Concert Des nationsLa Petite BandeLes Talens LyriquesCapriccio StravaganteOpera FuocoIsland (33) + +836081Bill Martin & Phil Coulter[b]Note:[/b] Please make sure it is not a Publishing credit; [l344103]CorrectB Martin And P CoulterB Martin/P CoulterB. Marin, P. CoulterB. Marti - P. CoulterB. MartinB. Martin & P. CoulterB. Martin & P. CoultierB. Martin & Ph. CoulterB. Martin - CoulterB. Martin - M. CoultexB. Martin - P. CoulterB. Martin - P. CoucterB. Martin - P. CoulteerB. Martin - P. CoulterB. Martin - P. CoutlerB. Martin - Ph. CoulterB. Martin - Phil CoulterB. Martin / P. CoulteerB. Martin / P. CoulterB. Martin / P.M. CoulterB. Martin / Ph. CoulterB. Martin / Phil CoulterB. Martin And P. CoulterB. Martin Et Ph. CoulterB. Martin Et Phil CouterB. Martin I Ph. CoulterB. Martin P. CoulterB. Martin Y P. CoulterB. Martin Y Ph. CoulterB. Martin et Ph. CoulterB. Martin i P. CoulterB. Martin y P. CoulterB. Martin y Ph. CoulterB. Martin, B. CoulterB. Martin, P. CoulterB. Martin, P.CoulterB. Martin, Phil CoulterB. Martin-P. CoulterB. Martin-P.CoulterB. Martin-Ph. CoulterB. Martin-Phil CoulterB. Martin/ P. CoulterB. Martin/ P. CoulterB. Martin/CoulterB. Martin/P. CoulterB. Martin/P. CoultierB. Martin/P.CoulterB. Martin/Ph. CoulterB. Martin/Phil CoulterB. Martin/Phil CourterB. Martinon - P. CoulterB. Martion - P. CoulterB. Martion / P. CoulterB. Martion-P. CoulterB. Martín - P. CoulterB.Martin & P. CoulterB.Martin / P. CoulterB.Martin, P.CoulterB.Martin-P.CoulterB.Martin/P. CoulterB.Martin/P.CoulterB.l Martin et P. CoulterBell / CoulterBill Coulter-Phil MartinBill MartinBill Martin - P. CoulterBill Martin - Phil - CoulterBill Martin - Phil CoucterBill Martin - Phil CoulterBill Martin - Phil CoultiBill Martin - Phil CoultierBill Martin - Philip CoulterBill Martin - Phill CoulterBill Martin / P CoutterBill Martin / Phil CoulterBill Martin / Philip CoulterBill Martin And Phil CoulterBill Martin And Philip CoulterBill Martin Et Phil CounterBill Martin Y Phil CoulterBill Martin and Phil CoulterBill Martin et Phil CoulterBill Martin in Association with Phil CoulterBill Martin y Phil CoulterBill Martin, Phil CoulterBill Martin, Phil CounterBill Martin, Philip Michael CoulterBill Martin, Phill CoulterBill Martin, Phillip Michael CoulterBill Martin, Thil CoulterBill Martin,Phil CoulterBill Martin-CoulterBill Martin-Phil CoucterBill Martin-Phil CoulterBill Martin-Philip CoulterBill Martin/ Phil CoulterBill Martin/Phil CoulterBill Martin/Philip CouterBill Martins - Phil CoulterBilly Martin/CoulterBilly Martin/Phil CoulterColter - MartinColter-MartinCoulterCoulter - MartinCoulter / MartinCoulter And MartinCoulter MartinCoulter y MartinCoulter, MartinCoulter-MartinCoulter/MacPhersonCoulter/MartinCoulter; MartinCounter/MartinM. CoulterMaetin - CoulterMaetin/CoulterMarntin/CoulterMartinMartin & CoulterMartin , CoulterMartin - CoulderMartin - CoulterMartin - CulterMartin -CoulterMartin / ColterMartin / CoulderMartin / CoulterMartin / CoutlerMartin /CoulterMartin And CoulterMartin Bill, Philip CoulterMartin CorlterMartin CoulterMartin CoultonMartin Et CoulterMartin Y CoulterMartin y CoulterMartin – CoulterMartin,Martin, CoulterMartin, CourterMartin, P. CoulterMartin-CoulderMartin-CoulterMartin-Coulter Marching BandMartin/ CoulterMartin/BoulterMartin/CaulterMartin/CoulderMartin/CoulterMartin/Coulter/MartinMartin/CoultierMartin/CourterMartin; CoulterMartin–CoulterMartion-CoulterMartínMarvin — CoulterMarvin-CoulterMason-CoulterP Coulter / B. MartinP. CoulterP. Coulter - B. MartinP. Coulter / B. MartinP. Coulter / Bill MartinP. Coulter, B. MartinP. Coulter-B. MartinP. Coulter-Bill MartinP. Coulter/B. MartinP. Coulter/W. MacPhersonP. Coulter/W. MartinP. Michael/B. MartinP.Coulter-B.MartinP.M. Coulter, B. MartinPh. Coulter / B. MartínPh. Coulter, B. MartinPh. Coulter/B. MartinPhil CoulterPhil Coulter & Bill MartinPhil Coulter / Bill MartinPhil Coulter In Ass. With Bill MartinPhil Coulter In Assoc. With Bill MartinPhil Coulter In Association With Bill MartinPhil Coulter Y Bill MartinPhil Coulter in association with Bill MartinPhil Coulter, B. MartinPhil Coulter, Bill MartinPhil Coulter-Bill MartinPhil Coulter/Bill MartinPhilip Coulter / Bill MartinPhilip Coulter And Bill MartinPhilip Coulter, Bill MartinPhilip Coulter/Bill MartinWilliam Martin / Philip Michael CoulterБ. Мартин — Ф. КультерМартин, КонитърPhil CoulterBill Martin + +836084Frank Peter ZimmermannGerman violinist, born 27 February 1965 in Duisburg, Germany. + +Born in Duisburg, Germany, Frank Peter Zimmermann started playing the violin when he was five years old, giving his first concert with orchestra at the age of ten. Since finishing his studies with Valery Gradov, Saschko Gawriloff and Herman Krebbers in 1983, he has performed with major orchestras all over the world, collaborating with the world’s most renowned conductors. His many concert engagements take him to important concert venues and international music festivals in Europe, the United States, Japan, South America and Australia. + +Frank Peter Zimmermann is also a keen chamber musician and recitalist. His interpretations of the classical, romantic and 20th-century repertoire have been received with great critical and public acclaim. His regular recital partners are the pianists Piotr Anderszewski, Enrico Pace and Emanuel Ax. Together with the viola player Antoine Tamestit and cellist Christian Poltéra he is a member of the Trio Zimmermann. This ensemble has performed in Amsterdam, Brussels, Cologne, London, Lyon, Milan, Munich, Paris and Vienna, as well as during the festivals in Salzburg and Edinburgh, and has released acclaimed discs of Mozart and Beethoven on BIS. + +Frank Peter Zimmermann was awarded the Premio del Accademia Musicale Chigiana, Siena in 1990. In April 1994 he received the Rheinischer Musikpreis and in October 2002 the Musikpreis of the city of Duisburg. In 2008 he received the Bundesverdienstkreuz 1. Klasse der Bundesrepublik Deutschland. He plays a Stradivarius from 1711, which once belonged to Fritz Kreisler, and which is kindly sponsored by Portigon AG.Needs Votehttps://en.wikipedia.org/wiki/Frank_Peter_Zimmermannhttps://bis.se/performers/zimmermann-frank-peter/https://www.bach-cantatas.com/Bio/Zimmermann-Frank-Peter.htmF. P. ZimmermannFrank P. ZimmermannFrank-Peter ZimmermanFrank-Peter ZimmermannP. ZimmermannPeter ZimmermannZimmermannTrio ZimmermannBerliner Barock Solisten + +836085David Atherton (2)English conductor, born 3 January 1944.CorrectAtherton + +836086Kate Van Orden (2)Classical bassoon & dulcian instrumentalist and Liner Notes author.Needs VoteLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleOrchestra Of The RenaissanceTafelmusik Baroque OrchestraLes Voix Humaines + +836104Jane RyanBritish classical viol player. Married to English tenor [a=Gerald English] from 1954-1974. Needs VoteThe Early Music Consort Of LondonThe Academy Of Ancient MusicThe Julian Bream ConsortThe Consort Of MusickeThe London VirtuosiThe Jaye ConsortEnglish Consort Of Viols + +836105Wieland KuijkenWieland KuijkenBelgian cellist and gambist (born 1938), known for playing baroque music on authentic instruments. Brother of the violinist [a=Sigiswald Kuijken] and of the flautist [a=Barthold Kuijken]. +Wieland Kuijken was born in Dilbeek near Brussels.When he was 14 the family moved to artistically active Bruges. A year later Wieland Kuijken left school and began his musical studies: cello and piano.He completed his studies at the Brussels Conservatoire, when he took his performers examination in 1962. In parallel with his Conservatoire studies he interested himself more and more with earlier music and its instruments. At the age of 18 he began to teach himself the viola da gamba. +His musical career started with the Alarius Enemble (1959-1972). At the same time he showed a great interest in avantgarde music. He became internationally known through many concerts and recordings with his brothers Sigiswald and Barthold, Gustav Leonhardt, Frans Brüggen and Alfred Deller. Since 1970 he has taught at the Conservatoires in Brussels and The Hague. In addition to these activities he regularly gives international summer masterclasses (Innsbruck etc.) +Needs Votehttps://web.archive.org/web/20021008090205/http://www.accent-records.com:80/WKUIJKEN.HTMLKuijkenW. KuijkenWieland Kuykenヴィーランド・クイケンMusiques NouvellesHesperion XXConcerto VocaleCollegium AureumLa Petite BandeRicercare-Ensemble Für Alte Musik, ZürichKuijkensAlarius-EnsembleKuijken QuartetThe Kuijken EnsembleEnsemble Polyphonies + +836114Catherine MackintoshEnglish classical violinist and violist (born May 6, 1947 in London, England). +Needs Votehttp://www.catherinemackintosh.comC. MackintoshCatharine MackintoshCatherine MacIntoshCatherine MacintoshКэтрин МакинтошThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe Julian Bream ConsortLondon Classical PlayersThe Consort Of MusickeThe Purcell QuartetThe King's ConsortMusica ReservataL'Estro ArmonicoEnglish Consort Of ViolsThe Music PartyDuo Amadè + +836115Emma KirkbyCaroline Emma KirkbyEnglish soprano singer, born February 26, 1949, and one of the world's most renowned early music specialists. Former wife of conductor [a875353]. Was also linked to British lutenist [a836116], with whom she made many recordings.Needs Votehttp://www.emmakirkby.comhttps://www.facebook.com/emma.kirkby.sopranohttps://en.wikipedia.org/wiki/Emma_KirkbyDame Emma KirkbyE. KirkbyEmma KirbyKirkbyЭмма КеркбиThe Monteverdi ChoirThe Academy Of Ancient MusicThe Consort Of MusickeThe King's Consort + +836116Anthony RooleyBritish lute & theorbo instrumentalist, long associated with the singer [a836115]. Founder & artistic director of [A=The Consort Of Musicke].Needs Votehttps://en.wikipedia.org/wiki/Anthony_RooleyA. RooleyRooleyアントニー・ルーリーThe Academy Of St. Martin-in-the-FieldsThe Consort Of MusickeMusica Reservata + +836125Maria StaderMaria MolnárHungarian born Swiss lyric soprano, born 5 November 1911 in Budapest, Austria-Hungary, died 27 April 1999 in Zürich, Switzerland. +She was married to [a2550731]. +Needs Votehttps://en.wikipedia.org/wiki/Maria_StaderM. StaderMaria StaderováStaderМ. ШтадерМария Штадерマリア・シュターダー + +836151The Monteverdi ChoirChoir formed in 1963 by [a=John Eliot Gardiner] to explore the Baroque repertoire. Gardiner stepped down in 2024. +The formal name of the organization is Monteverdi Choir and Orchestras, which includes the Choir and [a=The English Baroque Soloists] for the Baroque repertoire, and the [a=Orchestre Révolutionnaire et Romantique] for the Classical and Romantic repertoire. +Needs Votehttps://monteverdi.co.uk/Choeurs MonteverdiChœur MonteverdiCoro MonteverdiCorosCoros MonteverdiMonteverdi ChoirMonteverdi Choir & OrchestraMonteverdi Choir And OrchestraMonteverdi Choir LondonMonteverdi Choir, LondonMonteverdi ChorMonteverdi Chor LondonMonteverdi KoorMonteverdi KórusMonteverdi-ChoirMonteverdi-ChorMonteverdi-Chor, HamburgSoli - Monteverdi ChoirSoli • Monteverdi ChoirSoli, Monteverdi ChoirSoli-Monteverdi ChoirSoli/Monteverdi ChoirSolisten Aus Dem Monteverdi ChoirSolistes, Monteverdi ChoirThe Monteverdi Choir LondonThe Monteverdi SingersThe Monteverdi-ChoirХор MonteverdiХор Монтевердиモンテヴェルディ合唱団Sarah LeonardMichael McCarthyAndrew BusherGerard O'BeirneJenny HillOlive SimpsonLaura CochraneSimon Davies (3)William KendallDavid CleggPaul ElliottAlex AshworthChristopher RobsonKaren WoodhouseSuzanne FlowersConstanze BackesChristopher RoyallSam EvansCharlotte MobbsCharles GibbsAngus SmithDavid RoyBrian ParsonsJeremy BirchallIan RhodesEdward Ross (2)James Bowman (2)John Eliot GardinerAshley StaffordSara MingardoPeter HarveyEmma KirkbyMichael ChanceNancy ArgentaStephen VarcoePatrizia KwellaRobert MacdonaldGill RossHoward MilnerNicola JenkinPhilip PettiforJane FairfieldJulian ClarksonMichael BoswellWynford EvansCarol Hall (2)Richard Baker (5)Stephen Charlesworth (2)Alan BrafieldAndrew MurgatroydMary NicholsCatherine KrollMary SeersLynne DawsonRichard SavageNeil MacKenzieJean KnibbsRachel PlattBrian Gordon (2)Richard Lloyd MorganLucinda HoughtonPatrick CollinWilliam MissinDerek Lee RaginRona EastwoodDonna DeamRuth Holton (2)James OttawayAndrew TusaHans GablerNicolas RobertsonPaul TindallPaul SuttonJonathan Peter KennyPeter NardoneLawrence WallingtonSusan Hemington JonesCharles PottPhilip NewtonClifford ArmstrongGerald FinleyRufus MüllerSimon BirchallNeill ArcherDonna BrownHans Peter BlochwitzLeigh NixonJacqueline ConnellChristopher PurvesAndrew BurdenRichard Wyn-RobertsBenjamin OdomChristopher GreenPaul HarrhyCharles Stewart (2)Colin MairDavid Cole (7)Geoffrey DoltonMatthew BrightWilliam PoolMarilyn TrothJohn-Huw ThomasSimon OberstLyn ParkynsJudith NelsonJohn BowleyNoel MannStephen Roberts (2)Nicholas KeayLynette AlcantaraPaul Agnew (2)Susan Graham (2)Caroline AshtonWilfried SwansbouroughRobert BurtSandra SchulzeAngharad GruffyddGillian FisherPhilip SlaneSarah VivianJoyce JarvisChristopher FosterAndrew WickensElizabeth HarrisonSuzannah ChapplePenny VickersJulian WalkerAndrew King (5)Joseph CornwellJean-Claude OrliacDinah HarrisMark Chambers (3)Jayne WhitakerPrudence RaperTimothy TaylorPaul GrierLynton BlackKatie PringleKaty TanseyTom Phillips (6)Angela KazimierczukPatricia HooperPeter Mitchell (2)Susanna SpicerKaren FodorNatanya HaddaIvan SharpeCaroline FfordeSusanna MurrayShelley Ann EverallJennifer HigginsCaroline StormerShauna BeesleyColin Campbell (3)Belinda YatesRachel WheatleySimon Edwards (3)Frances JellardElaine PearcePaul Bradley (5)Jane ButlerMark Warden (2)Simon Wall (2)Iain RhodesThomas GuthrieWilliam TowersSusan Hamilton (2)Hugh Davies (3)Brindley SherrattDavid Gould (5)John Bowen (2)Charles HumphriesElisabeth PridayJulian PodgerGotthold SchwarzJoanne LunnEmma Preston-DunlopChristopher WatsonPeter DavorenNicholas MulroyPhilip SalmonMatthew VennerPeter ButterfieldAlison HillJennifer Smith (3)Elin Manahan ThomasGareth TresederChristopher DixonElinor CarterJonathan Brown (8)Katy HillZoë BrownKrystian AdamGillian KeithStephan LogesAlan WoodrowFrances BourneAngus Davidson (2)Silvia FrigatoKatharine FugeRobert Murray (6)John Williams (41)James Burton (4)Alison PlacePamela Priestley-SmithGeoffrey DavidsonLucy BallardVernon KirkEsther BrazilEmanuela GalliAndrew McKenzie WicksRupert Reid (2)Peter Harris (13)Hannah MorrisonTom AppletonMeg BragleLawrence DaleRichard Hill (4)Eleanor MeynellEmma WalsheRichard WilberforceSusanna FairbairnRobert Davies (7)Christopher BorrettRory McCleeryGwendolen MartinGraham NealKatie ThomasRory CarverSimon PonsfordJessica CaleCharlotte AshleyGordon WatersonRaffaele PeAndrew Mackenzie-WicksNick Pritchard (2)Martin OxenhamDima Bawab + +836152Anthony Rolfe JohnsonBritish tenor singer, born 5 November 1940 in Tackley, Oxfordshire, England, UK. Died 21 July 2010 in London, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Anthony_Rolfe_JohnsonA. Rolfe JohnsonA. Rolphe-JohnsonAnthony RolfeAnthony Rolfe- JohnsonAnthony Rolfe-JohnsonAntony Rolf-JohnsonAntony Rolfe JohnsonAntony Rolfe- JohnsonAntony Rolfe-JohnsonJohnsonRolfe JohnsonRolfe-JohnsonRolphe JohnsonLawrence DaleThe Holy Trinity School Choral Society + +836153Michael ChanceMichael ChanceEnglish counter-tenor born on March 7, 1955 in Penn Bucks, England.Needs Votehttp://www.michaelchancecountertenor.co.uk/ChanceM. ChanceMichael ChangeMichaël ChanceМайкл ЧансМайкл ШансThe Hilliard EnsembleThe Tallis ScholarsThe SixteenThe Monteverdi ChoirThe Academy Of Ancient MusicThe Consort Of MusickePro Cantione AntiquaKammerchor StuttgartBalthasar-Neumann-ChorMaulbronner KammerchorThe Medieval Ensemble of London + +836154Nancy ArgentaNancy HerbisonCanadian classical soprano, born 17 January 1957 in Nelson, British Columbia, Canada.Needs VoteArgentaN. Argentaナンシー・アージェンタGabrieli ConsortThe SixteenThe Monteverdi ChoirKammerchor StuttgartBach Collegium Japan + +836155Stephen VarcoeStephen Christopher VarcoeBritish classical bass vocalist, born 19 May 1949 in Lostwithiel, Cornwall, England, UK.Needs VoteS. VarcoeS.VarcoeSt. VarcoeStephen MarcoeStephene VarcoeSteven VarcoeVarcoeThe English Chamber ChoirThe Monteverdi ChoirMaulbronner KammerchorYorkshire Bach Choir + +836156The English Baroque SoloistsEnsemble formed in 1978 by [a=John Eliot Gardiner] to perform the 18th century repertoire on period instruments.Needs Votehttps://monteverdi.co.uk/about-us/english-baroque-soloistshttps://en.wikipedia.org/wiki/English_Baroque_Soloistshttps://musicbrainz.org/artist/bae23557-5de4-4510-9234-caea078c34b4Engelse BaroksolistenEnglish Baroque SolistsEnglish Baroque SoloistsThe English Baroc SoloistАнсамбль «Английские Барочные Солисты»イギリス・バロック管弦楽団The Monteverdi OrchestraNicholas ParkerBarry GuyTristan FryStephen SaundersOliver WilsonUtako IkedaAndrew RobertsSimon StandageRobin JeffreyRichard CampbellColin KitchingAlan GeorgeMark Bennett (2)Crispian Steele-PerkinsDavid StaffMarilyn SansomAndrea MorrisMichael Thompson (2)Gary Cooper (2)Robin CanterMarcia CrayfordPeter CollyerMichael NiesemannJames BoydNatasha KraemerPhillip BainbridgeChi Chi NwanokuAndrew Harwood-WhiteRobert VanryneIan Watson (2)Henrietta WayneJohn Eliot GardinerNicholas KraemerMarcel PonseeleStephen KeavyRoy GoodmanNicolette MoonenJohn ChimesGraham CracknellAlison BuryValerie BotwrightJan SchlappElizabeth WilcockValerie DarkeRosemary NaldenPaul NicholsonRachel Brown (2)Alastair RossHildburg WilliamsMiles GoldingJulie LehwalderSusie Carpenter-JacobsAnnette IsserlisJane NormanLisa BeznosiukAndrew Watts (2)Sophia McKennaAngela EastGuy Williams (2)Desmond HeathDavid CorkhillJulie Miller (2)Timothy MasonRachel BeckettAlastair MitchellWilliam HuntRichard GwiltPeter LissauerNicola CleminsonMargaret FaultlessKatherine HartMark CaudleJudith EvansNicola AkeroydRebecca LivermoreRichte van der MeerAnthony RobsonRichard EarleWalter ReiterMaya HomburgerCatherine LathamEllen O'DellNicholas LogieCatherine FordMaurice WhitakerJanet SeeLucy RussellRichard TunnicliffeMalcolm HicksPauline NobesJakob LindbergLorraine WoodHelen OrslerAlison TownleyPavlo BeznosiukMadeleine EastonCharles FullbrookAnthony HalsteadDavid ReichenbergXenia LöfflerHelen VerneyJames Johnstone (3)Roy MowattIona DaviesAmanda McNamaraSilas StandageNona LiddellJohn HollowayDavid WatkinJoan BrickleyBill TurnellMadeline ThornerStephen Jones (7)Paul Goodwin (2)Marion ScottLisa CochraneLucy HowardMark BaigentPolly WaterfieldJohn Turner (5)Reiko IchiseEmilia BenjaminBruce BergSuki TowbSarah Bealby-WrightTimothy MertonChristopher PoffleyAdrian ButterfieldRichard IrelandAlberto GrazziRachel ByrtNiklas EklundMichael Lewin (2)Frances KellyNeil McLaren (2)Lynden CranhamSusan AddisonTimothy LinesRuth AlfordDavid BlackadderAnne SchumannCecelia BruggemeyerPhilip TurbettAnna McDonald (2)Jane GillieTimothy RobertsViola de HoogSusanne RegelNeil BroughMichael Harrison (4)Howard MoodyGabriele CassoneDaniel YeadonAlison McGillivrayGail HennessyJeremy WardKati DebretzeniKatharina ArfkenNicholas McGeganBork-Frithjof SmithRoy HowatColin HortonRachel IsserlisDavid PugsleyMaldwyn DaviesPeter Harvey (2)Carina DruryKatherine McGillivrayMatthew HallsAbigail NewmanAdam WoolfOliver WebberAnneke BoekeSilvia SchweinbergerJane Rogers (2)Robert KendellDavid Bentley (4)Rodolfo RichterMatthew TruscottPeter BuckokeMalcolm ProudJean PatersonMari GiskeMarten RootMolly MarshJohn SteerFanny PaccoudGilles VanssonsTimothy HaywardJane GowerTim Crawford (3)Eduard WeslyJosias RodriguezEmma AlterDebbie Diamond (3)Marc UllrichWilliam Prince (3)Evangelina MascardiLinnhe RobertsonSteven Smith (15)Györgyi FarkasCatherine RimerPiroska BaranyayPaul Sharp (4)Maria Sanchez RamirezJane GordonDeborah DiamondRobert GoodhewJudith KliemanJames EastawayPenelope SpencerFrøde JakobsenHarriet CawoodDeirdre WardUlli EngelKate HellerKate LathamPenny SpencerSimon GabrielDaphna RavidAndrea Jones (2)Alida SchattStella WilkinsonAnneke ScottMichael LeaEmily DuperePamela CresswellMike Harrison (13)Gerard McDonaldAliye CornishBeatrice ScaldiniRichard Thomas (28)Miguel Tantos-SevillanoDavina ClarkeHåkan Wikström (2)Jaime SavanIngrid Lindström (2)Oliver John RuthvenKinga Gáborjáni + +836182Allan BergiusGerman cellist, conductor and former boy soprano (* 02 May 1972 in Munich, Germany).Needs Votehttp://www.allan-bergius.de/https://www.staatsoper.de/biographien/bergius-allanhttps://www.bach-cantatas.com/Bio/Bergius-Alan.htmAlan BergiusSolist des Tölzer KnabenchoresTölzer KnabenchorBayerisches StaatsorchesterCello X 12 + +836184Kurt EquiluzAustrian classical tenor, born 13 June 1929 in Vienna, Austria. Died 20 June 2022. +Father of [a1142840] and [a=Wolfgang Equiluz].Needs Votehttps://de.wikipedia.org/wiki/Kurt_Equiluzhttps://en.wikipedia.org/wiki/Kurt_Equiluzhttps://www.musiklexikon.ac.at/ml/musik_E/Equiluz_Familie.xmlhttps://www.concerto-verlag.de/images/equiluz.pdfhttps://www.imdb.com/name/nm0258566/EquilusEquiluzEquiluz KurtK. EquilusK. EquiluzKurt EquilusKurt EquiluxKurt Equiluz (Staatsoper Wien)К. ЭквилюзWiener Akademie KammerchorDie Wiener SängerknabenKammerchor Walther Von Der VogelweideWiener StaatsopernchorChorus ViennensisDie Colibris + +836185Concentus Musicus WienEnsemble founded in 1953 by [a=Nikolaus Harnoncourt] and [a=Alice Harnoncourt], largely responsible for launching the authentic instrument movement.Needs Votehttps://www.concentusmusicus.com/https://www.facebook.com/concentusmusicus/https://styriarte.com/en/artists/concentus-musicus-wien/https://en.wikipedia.org/wiki/Concentus_Musicus_Wienhttp://www.bach-cantatas.com/Bio/Concentus-Musicus-Wien.htmhttps://www.imdb.com/name/nm2540628/CMWChoir And Orchestra Of The Concentus Musica, ViennaChoir And Orchestra Of The Concentus Musicus Of ViennaChor und Orchester des Concentus Musicus WienConcentus MusicusConcentus Musicus - Ensemble Für Alte MusikConcentus Musicus - Ensemble of Renaissance and Baroque InstrumentsConcentus Musicus De VienneConcentus Musicus Ensemble Für Alte MusikConcentus Musicus Ensemble ViennaConcentus Musicus Of ViennaConcentus Musicus ViennaConcentus Musicus Wien (Mit Originalinstrumenten)Concentus Musicus de VienaConcentus Musicus de VienneConcentus Musicus of ViennaConcentus Musicus, Ensemble Für Alte MusikConcentus Musicus, Ensemble für alte MusikConcentus Musicus, Renaissance and Baroque Music EnsembleConcentus Musicus, VienaConcentus Musicus, ViennaConcentus Musicus, VienneConcentus Musicus, WienConcentus Musicus/WienConcentus Mvsicvs, Ensemble für alte MusikConcentus musicusConcentus musicus WienConcentusmusicusConcentvs Musicvs, Ensemble Für Alte MusikConcentvs Mvsicvs Ensemble Für Alte MusikConcentvs Mvsicvs, Ensemble Für Alte MusikConcentvs Mvsicvs, Ensemble für alte MusikConcertus MusicusDas Concentus Musicus WienRussian Federation Academic Symphony OrchestraThe Concentus MusicThe Concentus MusicusThe Concentus Musicus (Ensemble For Old Music)The Concentus Musicus (Ensemble Of Renaissance And Baroque Instruments)The Concentus Musicus (Ensemble for Old Music)The Concentus Musicus Ensemble Of Renaissance And Baroque InstrumentsThe Concentus Musicus WienVienna Concentus MusiciVienna Concentus MusicusWiener Concentus MusicusОркестр Под Управлением Николаусвウィーン・コンツェントゥス・ムジクスAlison GanglerUli FusseneggerCharlotte GeselbrachtJosef RittAnnette BikSophie SchafleitnerNikolaus HarnoncourtEdward H. TarrJanine RubinlichtChristian BeuseAlison BuryValerie DarkeAndrew Watts (2)Barthold KuijkenSigiswald KuijkenIngrid SeifertMicaela CombertiFriedemann ImmerRudolf LeopoldToyohiko SatohHans-Peter WestermannIngus SchmidtMilan TurkovicMax EngelPaul HailperinDon SmithersGustav LeonhardtHerbert TacheziThomas ZehetmairDavid ReichenbergAndreas LacknerPierre-André TaillardThomas FheodoroffFriedrich HillerDorle SommerRainer JurkiewiczOtto FleischmannJürg SchaeftleinHermann SchoberEduard HruzaRalph BryantJosef De SordiKurt HammerJosef SpindlerWilhelm MerglKurt TheinerWalter PfeifferAlice HarnoncourtAnita MittererPeter SchoberwalterJohann SonnleitnerRobert J. AlcaláHelmut MitterLeopold StastnyMarie WolfSam KegleyMark Peters (2)Karl HöffingerAndrea BischofWouter MöllerMarie LeonhardtRichard RudolfErich HöbarthHans FischerHermann HöbarthKarl GruberWim Ten HaveEugen M. DomboisBernhard Klebel (2)Josef LehnfeldGottfried HechtlSiegfried FührlingerStefan PlottHermann BaumannWalter HolyAlberto GrazziGeorg FischerIrène TroiMary UtigerDane RobertsCharles PutnamErnst KnavaOmar ZoboliTrudy Van Der WulpEleanor FroelichLila BrownChristian GurtnerAndrew JoyAnnelie GahlEva Braun (3)Alfred HertelBarbara KlebelGusta GoldschmidtChristian TacheziEditha FetzChristine BuschGerold KlausMaighread McCrannAndrew AckermanDorothea GuschlbauerMaria KubizekMartin RablNikolaus BrodaPeter Schoberwalter Jun.Edward DeskurGlen BorlingChristian SchneckRobert Wolf (2)Silvia Walch-IbererHector McDonaldHerlinde SchallerHerwig TacheziLynn PascherUrsula KortschakDieter SeilerGordon MurrayMartine BakkerEva-Maria GörresHans PöttlerElli KubizekAndreas WenthGerhard StradnerAlbrecht TrenzHelga TutschekMarcus SchleichWolfgang OberkoglerXavier PuertasHermann RohrerKurt LetofskyGünter SpindlerHerbert WalserErnst Hoffmann (2)Ferdinand SvatekGerhard BräuerFirmin PirkerJosef RohmJosef WallnigAlois SchlorJohannes FliederVeronica KrönerOthmar BergerStepan TurnovskyMartin KerschbaumRichard MotzChristin BuchnerVeronika SchmidtMichael Schmidt-CasdorffSylvie SummerederDorice KöstenbergerKathleen PutnamWolfgang TraunerLisa Autzinger-KubizekWolfgang PfeifferFritz GeyerhoferWolfgang AichingerPeter WaiteGertrud WeinmeisterJacqueline Roscheck-MorardErna GruberElisabeth HarnoncourtKarl JeitlerWolfgang AdlerDietmar KüblböckAnnemarie OrtnerHelmut Berger (4)Alberto Prat-MuntadasWolfgang PlankMarie-Céline LabbéReinhard CzaschHerbert FaltynekIrmgard SeidlGeorg SonnleitnerElisabeth StifterDorothea Schönwiese + +836248Beniamino ReitanoBeniamino ReitanoNeeds VoteB. ReitanoB.ReitanoBeniaminoM ReitanoR. BeniaminoMino ReitanoBenyreyFranco E Mino ReitanoI FisiciI Fratelli ReitanoD.F. e M. Reitano + +836285Dietmar LiebidiCorrect + +836286Klaus StorckGerman cellist, born 11 February 1928 in Berlin, Germany, died 18 March 2011 in Katowice, Poland.Needs Votehttp://de.wikipedia.org/wiki/Klaus_StorckOrquesta Sinfonica De VienaCollegium AureumArchiv Produktion Instrumental EnsembleCamerata Accademica HamburgCollegium St. Emmeram + +836343Ulrike KunzeClassical german violinist. +Born 1971 in Osterburg. +She studied at the Franz Liszt Conservatory in Weimar.Needs VoteAkademie Für Alte Musik BerlinMusica Antiqua KölnDresdner BarockorchesterThe Bouts Ensemble + +836344Matthias WinklerMathias WinklerDouble bass player & producer.Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/mathias-winkler.24528Staatskapelle BerlinAkademie Für Alte Musik Berlin + +836345Ann-Kathrin BrüggemannClassical oboist.Needs VoteAnn-Kathrin BruggemannAkademie Für Alte Musik BerlinConcerto KölnFreiburger BarockorchesterCantus CöllnConcerto Con VoceThe English Concert + +836353Christian-Friedrich DallmannGerman Hornist & Oboist, born 1955 in KarlsburgNeeds VoteChristian DallmannBerliner Sinfonie OrchesterAkademie Für Alte Musik BerlinBerliner OktettDarmstädter HofkapelleBarockorchester Münster + +836354Christian BeuseGerman classical bassoonist.Needs VoteConcentus Musicus WienAkademie Für Alte Musik BerlinLa StagioneLa Stravaganza KölnMusica FiataEnsemble La FeniceEnsemble Ludus VentiWeimarer Barock-EnsembleParthenia BaroqueDas Reicha'sche QuintettCappella Academica FrankfurtEnsemble Badinerie + +836358Raphael AlpermannRaphael AlpermannGerman classical keyboard instrumentalist, born 1960.Needs VoteRaphael AltermannStaatskapelle DresdenAkademie Für Alte Musik BerlinConcerto KölnBerliner Barock SolistenKonzerthaus Kammerorchester BerlinEnsemble Sans Souci BerlinCollegium Der Berliner Philharmoniker + +836360Georg KallweitClassical violinist.Needs VoteAkademie Für Alte Musik BerlinNeues Bachisches Collegium Musicum LeipzigBell'Arte SalzburgAnima Mea (2)Wunderkammer OrchestraOmbra E LuceEnsemble Urban Strings + +836361Clemens NußbaumerClassical viola player.Needs VoteClemens NussbaumerClemens NuszbaumerClemens-Maria NuszbaumerClemens-Maria NuzbaumerLes Arts FlorissantsAkademie Für Alte Musik BerlinAnima Mea (2) + +836362Frank HeintzeBassoon player.Needs Votehttps://www.staatsoper-berlin.de/de/kuenstler/frank-heintze.219/Frank HeintzStaatskapelle BerlinAkademie Für Alte Musik Berlin + +836364Tobias SchadeClassical organist & harpsichordistNeeds VoteCollegium VocaleBatzdorfer HofkapelleVocalconsort BerlinNeue Düsseldorfer Hofmusik + +836365Gudrun EngelhardtClassical violinist.CorrectAkademie Für Alte Musik BerlinConcerto KölnNeue Düsseldorfer HofmusikKölner Akademie + +836379David Thomas (9)David Thomas Lionel MercerEnglish bass vocalist, born on February 26, 1943 in Orpington, Kent, England. +Father of English actress Antonia Thomas.Needs Votehttp://www.bach-cantatas.com/Bio/Thomas-David.htmD. ThomasThomasДейвид ТомасThe Academy Of Ancient MusicThe Consort Of MusickePro Cantione Antiqua + +836380Patrizia Kwella(b. April 26, 1953 - Mansfield, England) Classical vocalist (soprano).Needs VoteKwellaP. KwellaPatricia KwellaCollegium VocaleThe Monteverdi ChoirThe Medieval Ensemble of London + +836389José-Luis GarciaJosé Luis García AsensioSpanish violinist and conductor. +Born January 20, 1944 in Madrid, Spain, and died August 11, 2011. +José was married to [a1659363].Needs Votehttps://es.wikipedia.org/wiki/Jos%C3%A9_Luis_Garc%C3%ADa_Asensiohttps://www.telegraph.co.uk/news/obituaries/8702842/Jose-Luis-Garcia.htmlGarciaJ L GarciaJ. L. GarciaJ.L. GarciaJose GarciaJose GarciáJose Luis GarciaJose Luis García AsensioJose Luiz GarciaJose-Louis GarciaJose-Luis GarciaJosé GarciaJosé L GarciaJosé Luis GarciaJosé Luis Garcia AsensioJosé Luis GarcíaJosé Luis García AsensioJosé Luis García Asensio,José Luiz GarciaJosé Luís AsensioJosé-Luis Garcia AsensioJosé-Luis GarcíaJosé-Luís GarciaJosé-Luís GarciáJosé-Luís GarcíaLuis Garcíaホセ・ルイス・ガルシアEnglish Chamber OrchestraOrquesta Ciudad De MálagaOrchestra Da Camera "Xabier" + +836429Claudio ArrauClaudio Arrau LeónBorn: 6 February 1903 in Chillán, Chile +Died: 9 June 1991 in Mürzzuschlag, Austria + +Chilean pianist [b]Claudio Arrau[/b] was one of the most-renowned performers of the 20th century, and is widely considered one of the greatest pianists of the twentieth century. +Arrau’s father, an eye doctor, died when he was one year old. His mother supported the family by giving piano lessons and must have been gratified when her own son proved to be a child prodigy at the piano. Claudio studied privately in Santiago for two years and then traveled at the expense of the Chilean government to Berlin, where he studied from 1912 to 1918 with [a=Martin Krause (8)], once a student of [a=Franz Liszt]. Arrau’s career began with a Berlin recital in 1914; during the next decade he toured extensively in Europe, South America, and the United States. Between 1924 and 1940 he taught at Julius Stern’s Conservatory in Berlin, and in 1941 he moved permanently to the United States, becoming a naturalized U.S. citizen only in 1979, after the rise of Augusto Pinochet in Chile. Arrau continued his frequent touring past his 80th birthday. + +Arrau focused on the music of Liszt, [a=Johannes Brahms], [a=Frédéric Chopin], [a=Robert Schumann], [a=Claude Debussy], and, above all, [a=Ludwig van Beethoven]. In 1935 he played all the keyboard works of J.S. Bach in a series of 12 concerts. His performances of the complete piano sonatas of Beethoven (there are 32) were broadcast by the British Broadcasting Corporation (BBC). Arrau’s awards are too numerous to mention, and his library of recorded works is enormous. Regarded as one of the least ostentatious of the century’s virtuoso pianists, he developed a classical approach that exhibited an extreme concentration on detail without sacrificing feeling.Needs Votehttps://en.wikipedia.org/wiki/Claudio_Arrauhttps://es.wikipedia.org/wiki/Claudio_Arrauhttps://www.britannica.com/biography/Claudio-Arrauhttps://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/claudio-arrauhttps://www.memoriachilena.gob.cl/602/w3-article-3337.htmlhttps://www.arrauhouse.org/http://arrausite.free.fr/Index.htmlArrauC. ArrauKlaudio ArauК. АррауКлаудио Аррауクラウディオ・アラウ + +836445Jeremiah ClarkeJeremiah ClarkeJeremiah Clarke (c. 1674 – 1 December 1707) was an English baroque composer and organist. + +Thought to have been born in London around 1674, Clarke was a pupil of John Blow at St Paul's Cathedral. He later became organist at the Chapel Royal. "A violent and hopeless passion for a very beautiful lady of a rank superior to his own" caused him to commit suicide. Before shooting himself, he considered hanging and drowning as options, so to decide his fate, he tossed a coin—however the coin landed in the mud on its side. Instead of consoling himself, he chose the third method of death, and performed the deed in the cathedral churchyard." Suicides were not generally granted burial in consecrated ground, but an exception was made for Clarke, who was buried in the crypt of St Paul's Cathedral (though other sources state he was buried in the unconsecrated section of the cathedral churchyard). He was succeeded in his post by William Croft. +Clarke is best remembered for a popular keyboard piece: the Prince of Denmark's March, which is commonly called the Trumpet Voluntary, written circa. 1700. From c. 1878 until the 1940s the work was attributed to Henry Purcell, and was published as Trumpet Voluntary by Henry Purcell in William Sparkes's Short Pieces for the Organ, Book VII, No. 1 (London, Ashdown and Parry). This version came to the attention of Sir Henry J. Wood, who made two orchestral transcriptions of it, both of which were recorded. The recordings further cemented the erroneous notion that the original piece was by Purcell. Clarke's piece is a popular choice for wedding music, and has featured in royal weddings. +The famous Trumpet Tune in D (also incorrectly attributed to Purcell), was taken from the semi-opera The Island Princess which was a joint musical production of Clarke and Daniel Purcell (Henry Purcell's younger brother)—probably leading to the confusion.[ +Needs Votehttp://en.wikipedia.org/wiki/Jeremiah_ClarkeClarkClarkeClarke (trad.)Clarke, J.J ClarkeJ. ClarceJ. ClarckeJ. ClarkJ. ClarkeJ.ClarkeJ.S. ClarkeJ.クラークJeremiach ClarkeJeremiah ClarceJeremiah ClarckeJeremiah ClarkJeremy ClarkeJermiah ClarkeJohn ClarkeJérémiah ClarkeR. ClarkeДЖ. КларкДж. КларкДжеримайа КларкИ. КларкКларкクラーク + +836446John ChimesBritish classical percussionist and timpanist, born in London, England.Needs VoteBBC Symphony OrchestraEnglish Chamber OrchestraLondon SinfoniettaThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe Chamber Orchestra Of Europe + +836447William Bennett (3)William Ingham Brooke BennettBritish flautist and educator. +[b]For the US oboist, please use [a=William Bennett (4)][/b]. +Born: 7th February 1936 London, England +Died: 11th May 2022 London, England +He studied at [l305416]. His professional career started in 1958, when he accepted a position in the [a=BBC Northern Symphony Orchestra]. In 1960 he went to the [a=Sadler's Wells Orchestra] for a year. He was Principal Flute of the [a=London Symphony Orchestra] (1967-1972), [a=The Academy of St. Martin-in-the-Fields], and the [a=English Chamber Orchestra]. After that, he never became a full-time member of an orchestra again. In the 1980s, he was Professor of Flute at the [l976369], and he taught at the [l527847]. He created his own instrument named "flauto di bassetto"; this extends the range of the flute down a minor third. Developed the Cooper scale and Bennett scale with flute makers Elmer Cole and Albert Cooper to tune flutes. +He was made an Order of the British Empire in 1995 for service to music. +His second wife was [a=Michie Bennett] (married in 1981). +Needs Votehttp://www.williambennettflute.com/https://www.facebook.com/wibb.course/https://soundcloud.com/william-bennett-officialhttps://open.spotify.com/artist/1BrKLZxBikUgEn6XEVZmrphttps://music.apple.com/us/artist/william-bennett/4561616http://en.wikipedia.org/wiki/William_Bennett_%28flautist%29https://musicianbio.org/william-bennett/https://go.gale.com/ps/i.do?id=GALE%7CA474041614&sid=googleScholar&v=2.1&it=r&linkaccess=abs&issn=87568667&p=AONE&sw=w&userGroupName=anon%7Ede1ff3afhttps://www.altusflutes.eu/en/musicians/william-bennett.htmlhttps://www.adams-music.com/de/kuenstler/flute_centre/william-bennetthttps://lso.co.uk/more/news/1828-obituary-william-bennett.htmlhttps://flutejournal.com/william-bennett-1936-2022/https://www.theguardian.com/music/2022/may/17/william-bennett-obituaryhttps://www.telegraph.co.uk/obituaries/2022/05/16/william-bennett-dazzling-flautist-whose-repertoire-ranged-handel/https://efc.agency/wibb/https://www.imdb.com/name/nm7553062/BennettMr. William BennettWib BennettWilliam BennetВилијам Бенетウィリアム・ベネットPro Arte OrchestraLondon Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Mozart PlayersThe Kingsway Symphony OrchestraSadler's Wells OrchestraWilliam Bennett And FriendsThe Camarata Contemporary Chamber GroupBBC Northern Symphony OrchestraThe Mabillon TrioThe Dartington EnsembleThe Thames Chamber OrchestraYorkshire Sinfonia + +836448Paul BarrittClassical violinist.Needs VotePaul BarritHallé OrchestraEnglish Chamber OrchestraLondon Classical PlayersDivertimentiThe Romantic Chamber Group Of London + +836509Donald GreigBass & Baritone vocalist.Needs Votehttps://web.archive.org/web/20200325092923/http://www.orlandoconsort.com:80/don_biog.htmDGDon GreigDonald GriegGreigGabrieli ConsortMetro VoicesThe Cambridge SingersThe Stephen Hill SingersLondon VoicesThe Tallis ScholarsOrlando ConsortOrchestra Of The RenaissanceThe English Concert ChoirGothic Voices (2) + +836510Orlando ConsortEnsemble of four singers, formed in 1988 by the Early Music Centre of Great Britain, performing repertoire from the years 1050 to 1500. +Disbanded 2024.Needs Votehttps://en.wikipedia.org/w/index.php?title=Orlando_Consort&oldid=1245201896https://web.archive.org/web/20120902031533/http://www.orlandoconsort.com/group_biog.htmhttps://web.archive.org/web/20230530110207/http://www.orlandoconsort.com/news.htm#:~:text=The%20almost%2Dfinal%20website%20entryOrlando Consort, EnsembleThe Orlando ConsortMark DobellAngus SmithDonald GreigCharles Daniels (2)Robert Harre-JonesAndrew CarwoodMatthew Venner + +836511Charles Daniels (2)Charles DanielsEnglish tenor. +Born in 1960.Needs Votehttp://www.bach-cantatas.com/Bio/Daniels-Charles.htmhttp://www.charles-daniels-society.org.ukhttp://en.wikipedia.org/wiki/Charles_Daniels_(tenor)http://www.hazardchase.co.uk/artists/charles_danielsCDCharles DanielsChrls DanielsDanielsGabrieli ConsortThe Hilliard EnsembleThe Choir Of The King's ConsortThe Tallis ScholarsThe King's College Choir Of CambridgeOrlando ConsortTaverner ChoirDe Nederlandse BachverenigingGothic Voices (2)Gesualdo Consort AmsterdamCappella RomanaLondon Pro MusicaChor & Orchester Der J.S. Bach Stiftung St. GallenLes Voix BaroquesInvocation (6)Pluto EnsembleThe Viadana Collective + +836512Robert Harre-JonesClassical countertenor/alto vocalist.Needs Votehttps://web.archive.org/web/20120705195537/http://www.orlandoconsort.com/old_boys_biog.htmRobert Harre JonesRobert JonesRobert Jones (3)Gabrieli ConsortThe Choir Of The King's ConsortThe Tallis ScholarsOrlando ConsortOrchestra Of The RenaissanceThe English Concert ChoirPro Cantione Antiqua + +836585Josef StraußJosef StraußAugust 20, 1827 - July 22, 1870 +Austrian composer, son of [a=Johann Strauss Sr.] and brother of [a=Johann Strauss Jr.] and [a=Eduard Strauß]. +Needs Votehttps://en.wikipedia.org/wiki/Josef_Strausshttps://adp.library.ucsb.edu/names/102428J StraussJ Strauss IIJ.J. StaussJ. StrausJ. StraussJ. StraußJ. ŠtrausJ. ŠtrausasJ.StraussJ.ph StraussJo StraussJo. StraussJoh. StraussJoh. StraußJohann & Josef StraussJohann StraussJohann Strauss (Sr.)Johann StraußJos StraussJos. StraußJos. StrassJos. StraussJos. StrauusJos. StraußJosefJosef StarussJosef StaussJosef StrassJosef StrausJosef StraussJosef Strauss IIJosef Strauß (Sohn)Josef-StraußJosephJoseph SraussJoseph StraussJoseph Strauss Jr.Joseph Strauss SohnJoseph Strauss hijoJoseph StraußJozef StraussJózef StraussStraussStrauss JosefStrauss, JosefStraußИ. ШтраусИоганн ШтраусИозеф ШтраусЙ. ШтраусЙозеф ШтраусЙозеф Штрауссシュトラウスヨゼフ・シュトラウスヨーゼフ・シュトラウス + +836587Mike HatchMichael James HatchSound engineer, currently working at and owner of [l327770]. +He is married to violinist [a374007].Needs Votehttps://www.instagram.com/mike_hatch_audio/Floating Earth - Mike HatchMichael HatchMike Hatch (Floating Earth Ltd)Mike Hatch (Floating Earth Ltd.)Mike Hatch For Floating EarthMike Hatch, Floating EarthFloating Earth + +836588Andrew LittonAmerican conductor and pianist. He was born 16 May 1959 in New York City, New York, USA.Needs Votehttp://www.andrewlitton.comhttps://twitter.com/maestro59http://en.wikipedia.org/wiki/Andrew_Littonhttp://imgartists.com/artist/andrew_littonhttp://www.hazardchase.co.uk/artists/andrew-litton/A. LittonAndre LittonLittonА. ЛиттонА.Литтонアンドリュー・リットンThe Colorado Symphony OrchestraDallas Symphony OrchestraBournemouth Symphony OrchestraBergen Filharmoniske OrkesterLitton Duo + +836589Carla VistariniItalian lyricist, screenwriter, writer and musician (born in Rome, 1948), she also wrote for the theater, cinema and TV. The father, Franco Silva, was among the "beautiful" actors of the 50s and her sister Patrizia, known by the stage name of [a=Mita Medici], was one of the symbols of the teen-agers of the 60s. For many years she has written songs with the composer [a=Luigi Lopez] forming an artistic partnership which will mark some of the biggest record success of the 70s and 80s.Needs Votehttp://www.carlavistarini.com/https://it.wikipedia.org/wiki/Carla_Vistarinihttps://www.illibraio.it/autori/carla-vistarini/C. VistariniC.VistariniC.VistrariniV. VistariniVistariniК. ВистариниLakyFantasy (13) + +836608Max PommerGerman conductor, chorus master and musicologist (* 09 February 1936 in Leipzig, German Empire).Needs Votehttps://de.wikipedia.org/wiki/Max_Pommer_(Dirigent)https://www.architektur-blicklicht.de/stadt-leipzig-de/leipziger-persoenlichkeiten-max-pommer-dirigent/Max Pommer,Max Pommer, ConductorPommerProf. Dr. Max PommerМакс Поммер + +836654Mark Baranovviolinist trained in the Soviet Union, moved to the U.S. in 1978Needs VoteBaranov MarkМ. БарановМарк БарановLos Angeles Philharmonic Orchestra + +836664Tini MathotDutch harpsichordist, wife of the Dutch conductor [a=Ton Koopman]. +Also chief recording producer and supervisor. +Needs Votehttp://www.bach-cantatas.com/Bio/Mathot-Tini.htmMathotTiny MathotTini Koopman-MathotThe Amsterdam Baroque OrchestraMusica Antiqua AmsterdamAmsterdams Barok Ensemble + +836665Ton KoopmanAntonius Gerhardus Michael KoopmanDutch organist, harpsichordist, conductor and musicologist. + +Born October 2, 1944 in Zwolle, Netherlands. + +In 1979, he founded [a=The Amsterdam Baroque Orchestra], followed in 1992 by [a=The Amsterdam Baroque Choir]. +He has recorded for labels like [l=Erato], [l=Teldec], [l=Sony Classical], [l=Philips] and [l7703] Gesellschaft. In 2003 he created his own record label [l647092], with which he publishes his recordings. +Between 1994 and 2004 he has conducted and recorded all the existing cantatas by [a=Johann Sebastian Bach]. +As a guest conductor, he has worked with many prominent orchestras in Europe, the USA and Japan including the Amsterdam Concertgebouw, the Boston Symphony, the Vienna Symphony, the Deutsches Symphonie Orchester Berlin, the Rotterdam Philharmonic, the Danish Radio Orchestra, the Chicago Symphony, the Tonhalle Orchestra Zurich, the Orchestre Philharmonique de Radio France, the Helsinki Radio Orchestra, the Deutsche Kammerphilharmonie, the Frankfurt Radio Orchestra, the Symphonieorchester des Bayerischen Rundfunks, and the Vienna Symphony Orchestra. He has been principal conductor of the Radio Chamber Orchestra in Holland for 8 years and he is principal guest conductor of the Lausanne Chamber Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Ton_Koopmanhttps://www.tonkoopman.nl/enhttps://web.archive.org/web/20031015004737/https://www.sonyclassical.com/artists/koopman/KoopmanT. KoopmanT. KoopmannTon KoopmannTon KopmanTonKoopmanТ. Коопманトン・コープマンThe Amsterdam Baroque OrchestraHesperion XXMusica Antiqua AmsterdamAmsterdams Barok Ensemble + +836671Eduard StraußEduard Strauss (Vienna, 15 March 1835 - Vienna, 28 December 1916) was an Austrian composer and conductor. +He is the son of [a=Johann Strauss Sr.] and the brother of [a=Johann Strauss Jr.] and [a=Josef Strauß]. + +Do not confuse with his grandson [a840386] (1910-1969). +Needs Votehttps://en.wikipedia.org/wiki/Eduard_Strausshttps://adp.library.ucsb.edu/names/104116E StraussE. StraussE. StraußEd. StraussEdouard StraussEduardEduard SraussEduard StrassEduard StraussEduard Strauss IEduardo StraussEdward StraussEdward Strauss IStraussStrauss E.Strauß, E.Э. ШтраусЭдуард Штраус施特劳斯舞曲 + +836681Antonio Martín Y CollAntonio Martín y Coll(died ca. 1734) +Spanish organist, composer, collector and theorbist of Baroque music. Also credited with religious prefix "Fray". +Needs Votehttp://en.wikipedia.org/wiki/Antonio_Mart%C3%ADn_y_CollA. Martín y CollAntonio MartinAntonio Martin CollAntonio Martin Y CollAntonio Martin i CollAntono M.Y CollFray Antonio Martin Y CollFray Antonio Martín Y CollMartin Y CollMartín & CollMartín Y CollMartín y Coll + +836710Alexander HickeyAlexander Hickey started singing as a chorister at Hereford Cathedral, went up to Christ Church, Oxford as a choral scholar and now regularly sings with professional choirs in and around London. He also has a successful career as a barrister specialising in construction law.Needs VoteAlex HickeyTonus PeregrinusThe Choir Of Christ Church Cathedral + +836714Francis BrettEnglish classical vocalist, born in 1974 and started singing as a Quirister at Winchester College. He was a music scholar at the same school before winning a Choral Scholarship to King's College. He held a permanent position with the Choir of Westminster Abbey before turning fully freelance in January 2010.Needs Votehttp://www.francisbrett.co.ukTonus PeregrinusChapelle Du RoiThe Choir Of Westminster AbbeyThe Amaryllis ConsortThe City Musick + +836715Robert MacdonaldEnglish bass / baritone classical vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Macdonald-Robert.htmRMRob MacdonaldRobert MacDonaldGabrieli ConsortThe Hilliard EnsembleMagnificatThe New College Oxford ChoirThe Choir Of The King's ConsortThe Tallis ScholarsThe SixteenHuelgas-EnsembleThe Monteverdi ChoirThe Choir Of Christ Church CathedralI FagioliniPolyphonyThe Clerks' GroupThe Cardinall's MusickThe Eric Whitacre SingersThe Choir Of Westminster AbbeyChoir Of Hereford CathedralAlamireLes Voix Baroques + +836737Graham CracknellClassical violin player. Married to [a961373].Needs VoteCracknellGraham CraknellThe Academy Of St. Martin-in-the-FieldsThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLondon Classical PlayersHanover BandLondon Handel OrchestraEx Cathedra Baroque OrchestraThe English Concert + +836738Gregor ZielinskyGerman sound engineer (and drummer), born 1957, works for Deutsche Grammophon since 1984, teaches in Hannover.CorrectGregor ZielinksyGregory Zielinsky + +836739Gill RossClassical soprano vocalist.Needs VoteG.RossGillian RossRossGabrieli ConsortThe Monteverdi ChoirConcerto Delle Donne + +836740Howard MilnerHoward Milner (23 February 1953 – 6 March 2011) was a British tenor. He began his musical education as a chorister at Coventry Cathedral.Needs Votehttps://en.wikipedia.org/wiki/Howard_MilnerThe SixteenThe Monteverdi ChoirThe English Concert ChoirThe Consort Of MusickeSwingle II + +836741Alison BuryClassical violinist. +She started playing the baroque violin while a student at the Royal College of Music. After completing her studies there she won a Boise Scholarship to study at the Salzburg Mozarteum with [a843913] and [a716084]. While in Austria she performed and recorded with Concentus Musicus of Vienna. +She is also a founder member and regular leader of the Orchestra of the Age of Enlightenment. For over 20 years, she was leader of the English Baroque Soloists. She also plays with the Raglan Baroque Players and is director of the Sussex Baroque Players. +She is married to oboist [a843402].Needs VoteЭлисон БьюриNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsConcentus Musicus WienThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLa Petite BandeOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersRaglan Baroque PlayersL'École D'OrphéeThe Mozartists + +836742Valerie BotwrightClassical double bassist.Needs VoteValerie BotrightOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicGabrieli PlayersThe Richard Hickox OrchestraThe English Concert + +836743Jan SchlappClassical viola player.Needs VoteJanet SchlappThe Martyn Ford OrchestraNew London ConsortThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLondon Classical PlayersThe Consort Of MusickeThe New SymphoniaThe King's ConsortThe Academy Of Ancient Music Chamber EnsembleThe Richard Hickox OrchestraThe English Concert + +836744Elizabeth WilcockClassical violin player. Married to conductor [a833722] from 1981 until their divorce in 1997.Needs VoteElisabeth WilcockElizabeth WilcoxElizabeth WiltockOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicDas Mozarteum Orchester SalzburgThe English Concert + +836745Nicola JenkinClassical vocalist (soprano).Needs Votehttps://www.bach-cantatas.com/Bio/Jenkin-Nicola.htmhttps://www.imdb.com/name/nm1257473/N. JenkinThe Tallis ScholarsThe SixteenThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirThe Schütz Choir Of LondonChoir Of St. Margaret's, Westminster + +836746Philip PettiforClassical vocalist (tenor).CorrectThe Monteverdi Choir + +836747Jane FairfieldClassical vocalist (soprano).Needs VoteThe Monteverdi Choir + +836748Julian ClarksonJulian Clarkson (born c. 1955) is an English baritone & bass vocalist. + +He is best known for his work with the Monteverdi Choir, singing Bach cantatas. Among his recordings are Weinen, Klagen, Sorgen, Zagen, BWV 12, Ihr werdet weinen und heulen, BWV 103, and Wir müssen durch viel Trübsal, BWV 146. He has also performed with La Chapelle Royale, Les Musiciens du Louvre, the Orchestra of the Age of Enlightenment, Florilegium and has toured with the Amsterdam Baroque Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Julian_ClarksonJ. ClarksonJulian ClarcksonGabrieli ConsortThe Choir Of The King's ConsortThe Monteverdi ChoirThe English Concert ChoirThe Amsterdam Baroque Choir + +836749Michael BoswellClassical bass & tenor vocalistNeeds VoteThe Monteverdi ChoirConspirare + +836750Wynford EvansWelsh tenor vocalist (30 April 1946 – 23 September 2009).Needs Votehttps://en.wikipedia.org/wiki/Wynford_Evanshttp://www.bach-cantatas.com/Bio/Evans-Wynford.htmWinford EvansWyn EvansThe Monteverdi ChoirPro Cantione AntiquaCorydon SingersSt. Clement Dane's ChoraleFortune's Fire + +836751Carol Hall (2)Classical vocalist.CorrectCarole HallCarolyn HallGabrieli ConsortNew London ConsortThe English Chamber ChoirThe Monteverdi ChoirThe English Concert ChoirThe Schütz Choir Of LondonSwingle II + +836752Valerie DarkeClassical oboist.Needs VoteValérie DarkeThe SixteenThe English Baroque SoloistsConcentus Musicus WienLondon BaroqueThe Academy Of Ancient MusicThe Chandos Baroque PlayersThe Music PartyThe English Concert + +836753Rosemary NaldenClassical viola player.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersThe Consort Of MusickeRaglan Baroque PlayersThe English ConcertThe Buskaid Soweto String Project + +836754Richard Baker (5)Classical vocalist (alto).Needs VoteThe Monteverdi ChoirSt. Clement Dane's Chorale + +836755Paul NicholsonClassical keyboard instrumentalist + +For the visual artist, please use [a=Paul Nicholson (2)].Needs Votehttps://www.bach-cantatas.com/Bio/Nicholson-Paul.htmП. НиколсонFretworkNew London ConsortThe Parley Of InstrumentsThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentBrandenburg ConsortThe London VirtuosiThe Locatelli TrioThe Symphony Of Harmony And InventionConviviumThe English ConcertLe Nouveau QuatuorArs Musicae, Mallorca + +836756Rachel Brown (2)Classical Recorder and Traverso Flute instrumentalist (*1975)Needs Votehttps://www.rachelbrownflute.com/https://en.wikipedia.org/wiki/Rachel_Brown_(flautist)https://www.londonhandelplayers.co.uk/rachel-brownhttps://www.rcm.ac.uk/hp/professors/details/?id=01775https://www.trinitylaban.ac.uk/study/teaching-staff/rachel-brown/https://excathedra.co.uk/about-us/meet-the-musicians/rachel-brown-flute/5, 6R. BrownThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentHanover BandThe King's ConsortBrandenburg ConsortQuintEssential Sackbut And Cornett EnsembleLondon Handel OrchestraTheatre Of Early MusicLondon Early OperaThe English ConcertRetrospect EnsembleThe Revolutionary Drawing RoomThe MozartistsLondon Handel Players + +836757Stephen Charlesworth (2)Stephen CharlesworthEnglish bass/baritone vocalist, also known as Larry.CorrectStepeh CharlesworthGabrieli ConsortThe Tallis ScholarsBBC SingersThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirTaverner ConsortGothic Voices (2)The Schütz Choir Of London + +836758Alastair RossClassical organist and harpsichordist. +A former chorister at Christ Church and organ scholar at New College, Oxford, he is principal keyboard player of the Academy of Ancient Music and The Sixteen.Needs Votehttps://www.aam.co.uk/alastair-ross/https://thesixteen.com/team/alastair-ross/A. RossAlistair Rossアラステア・ロスCity Of London SinfoniaThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The RenaissanceCollegium Musicum 90Gabrieli PlayersThe King's ConsortBrandenburg ConsortThe Monteverdi OrchestraThe Richard Hickox OrchestraLondon Handel OrchestraConcerto Delle DonneThe English ConcertCanzona (3) + +836759Alan BrafieldClassical vocalist (bass).CorrectThe Monteverdi Choir + +836760Andrew MurgatroydClassical vocalist (tenor).Needs VoteA. MurgatroydThe Tallis ScholarsBBC SingersThe Monteverdi ChoirThe Choir Of Christ Church Cathedral + +836761Mary NicholsClassical vocalist (soprano & alto).Needs Votehttp://www.bach-cantatas.com/Bio/Nichols-Mary.htmM. NicholsM.N.NicholsThe Tallis ScholarsThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirThe Consort Of MusickeMusica SecretaThe Schütz Choir Of London + +836762Hildburg WilliamsClassical violinist.Needs VoteHilburg WilliamsHildeborg WilliamsOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersThe Richard Hickox Orchestra + +836763Catherine KrollClassical vocalist (soprano).CorrectThe Monteverdi Choir + +836764Miles GoldingMiles Golding (born 1951, Sydney, New South Wales, Australia) is an Australian classical violinist. He was an original member of [a109320] before leaving the band in 1973 to pursue further training in London. Married to soprano [a870697].Needs Votehttp://www.milesgolding.com/https://en.wikipedia.org/wiki/Miles_GoldingSplit EnzNew London ConsortThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersThe King's ConsortBrandenburg ConsortThe Richard Hickox OrchestraLondon Handel OrchestraArmonico ConsortThe English Concert + +836765Julie LehwalderJuliet LehwalderClassical cellist, born c. 1945. Married bassoonist [a837443] in 1975.Needs VoteJuliet LehwalderJuliette LehwalderJuliette LeswalderOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe English Concert + +836766Mary SeersSoprano vocalist.Needs VoteМэри СирсThe Cambridge SingersThe Tallis ScholarsThe SixteenThe Monteverdi ChoirThe Consort Of MusickeThe Schütz Choir Of LondonThe English Concert + +836767Charlotte KrieschProducer for the German label [l89289].Correct + +836768Steven PaulAmerican musicologist, flutist, and record producer, born in Atlanta, Georgia. He joined CBS Masterworks in 1966, from 1978 to 1991 he was A&R executive producer for Deutsche Grammophon, and in 1992 he became A&R vice-president for Sony Classical.CorrectDr Steven E. PaulDr Steven PaulDr. S. PaulDr. Stephen PaulDr. Steve PaulDr. Steven E. PaulDr. Steven PaulDr.Steven PaulDr.スティーヴン・ポールDr.スティーヴン・ポールStefen E. PaulSteven E. Paul + +836769Lynne DawsonEnglish soprano, born 3 June 1956 in York, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Lynne_Dawsonhttps://www.bach-cantatas.com/Bio/Dawson-Lynne.htmDawsonL. Dawsonリン・ドーソンThe Hilliard EnsembleThe SixteenThe Monteverdi ChoirBrandenburg ConsortThe English ConcertThe Friends Of Apollo + +836770Susie Carpenter-JacobsClassical violinist.Needs VoteS. Carpenter-JacobsSusan CarpenterSusan Carpenter JacobsSusan Carpenter-JacobSusan Carpenter-JacobsSusan Carpenter-Jacobs*Susan Carpenter-JonesSusie Carpenter JacobsThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentRaglan Baroque PlayersThe King's ConsortThe Wallfisch BandLondon Handel OrchestraEx Cathedra Baroque OrchestraThe English ConcertThe Friends Of Apollo + +836771Annette IsserlisClassical viola player. Sister of [a380704] and [a1370073], and granddaughter of [a3208197]. Studied at the Royal College of Music, where she now teaches historical performance practice on baroque and classical viola. In addition to being a founding member of the Orchestra of the Age of Enlightenment, she continues to appear as Guest Principal Viola for Sir John Eliot Gardiner’s English Baroque Soloists, and with these and many other ensembles has travelled, recorded and broadcast extensively.Needs Votehttps://www.linkedin.com/in/annette-isserlis-6a6458132/https://oae.co.uk/people/annette-isserlis/https://www.rncm.ac.uk/people/annette-isserlisAnnette IserlisIsserlisNew London ConsortThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersRaglan Baroque PlayersThe King's ConsortThe Chandos Baroque PlayersLondon Handel OrchestraThe English Concert + +836772Richard SavageClassical bass vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Savage-Richard.htmhttps://www.facebook.com/richard.savage.161Gabrieli ConsortThe Choir Of The King's ConsortThe English Chamber ChoirThe Monteverdi ChoirThe English Concert ChoirPolyphonyThe Choir Of The Temple ChurchThe Schütz Choir Of LondonTenebrae (10)Retrospect Ensemble + +836773Jane NormanClassical viola player.Needs Votehttps://www.linkedin.com/in/jane-norman-89b6b637/https://x.com/jnviolinJane JormanThe SixteenThe English Baroque SoloistsThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe King's ConsortFeinstein EnsembleThe English Concert + +836774Lisa BeznosiukEnglish flautist (born August 20, 1956 in Sheffield), specialising in period performance of baroque and classical music on historical flutes. Sister of violinist [a849191].Needs VoteBeznosiukLisa BesnosiukLiz BeznosiukЛ. БезносюкNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLondon Classical PlayersThe English ConcertThe Mozartists + +836775Neil MacKenzieClassical vocalist (tenor) from the UK.Needs Votehttps://www.bach-cantatas.com/Bio/MacKenzie-Neil.htmMackensieNeil MacKenszieNeil MackenzieNeil McKenzieBBC SingersThe SixteenThe Monteverdi ChoirThe English Concert ChoirThe Choir Of Christ Church CathedralThe Consort Of Musicke + +836778Jean KnibbsClassical vocalist (soprano).Needs VoteJ. KnibbsThe Monteverdi ChoirDeller ConsortThe Schütz Choir Of London + +836779Andrew Watts (2)Classical bassoonist. +He is currently principal bassoon with The Orchestra of the Age of Enlightenment.Needs Votehttps://oae.co.uk/people/andrew-watts/A. WattsAndyAndy WattsWattsLa SerenissimaNew London ConsortThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsConcentus Musicus WienThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe Carnival BandThe King's ConsortThe Medieval Ensemble of LondonThe Chandos Baroque PlayersLondon Oboe BandThe Guildhall WaitsClassical WindsClassical OperaThe English Concert + +836780Rachel PlattClassical vocalist (soprano).Needs Votehttps://www.facebook.com/profile.php?id=100010151145645The Tallis ScholarsThe Monteverdi ChoirThe English Concert ChoirTaverner Choir + +836781Sophia McKennaClassical oboist from the UK.Needs VoteSophie McKennaThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe King's ConsortL'Estro ArmonicoThe English Concert + +836782Angela EastClassical string instrumentalistNeeds Votehttp://www.angelaeast.co.uk/The English Baroque SoloistsThe Academy Of Ancient MusicGabrieli PlayersHanover BandRed PriestThe King's ConsortBrandenburg ConsortLondon Handel Orchestra + +836783Guy Williams (2)Classical flute player.Needs VoteGari WilliamsThe English Baroque SoloistsThe Academy Of Ancient MusicHanover BandThe English ConcertOxford Baroque + +836784Brian Gordon (2)Classical vocalist (alto/countertenor).Needs VoteB. GordonThe Monteverdi Choir + +836785Desmond HeathClassical violinist. Born 1927, died 19 Feb 2018.Needs Votehttps://monteverdi.co.uk/news/in-memory-of-desmond-heathDes HeathOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical Players + +836786David CorkhillDavid CorkhillBritish classical chamber musician & orchestral player (timpani & percussion), conductor, composer, and arranger. Born September 29, 1946 in Bebington, England, UK. +In 1970, he became Principal Tympanist in the [a=English Chamber Orchestra] and, in 1976, Principal Percussionist in the [a=Philharmonia Orchestra]. Timpani teacher & Staff Conductor at [l305416] (since 1975) and Assistant Conductor & Chamber Music Co-ordinator of [a=Southbank Sinfonia]. +Grammy Award winning in 1988 (Best Chamber Music Performance of [a304968]'s Sonata For Two Pianos & Percussion).Needs Votehttp://davidcorkhill.com/https://www.linkedin.com/in/david-corkhill-937a638/https://www.gsmd.ac.uk/music/staff/teaching_staff/department/12-department-of-jazz/131-david-corkhill/https://www.southbanksinfonia.co.uk/musicians-profile/10080/david-corkhill/https://www.feenotes.com/database/artists/corkhill-david-29th-september-1946-present/https://www.soundhound.com/?ar=200520726018119603https://divineartrecords.com/artist/david-corkhill/http://www.altopublications.com/compdc.htmlhttps://musicianbio.org/david-corkhill/https://www.imdb.com/name/nm2140217/https://www2.bfi.org.uk/films-tv-people/4ce2bc4915d68https://www.grammy.com/grammys/artists/david-corkhill/1870CorkhillDavid CoakhillEnglish Chamber OrchestraPhilharmonia OrchestraNew London ConsortThe Early Music Consort Of LondonOrchestre Révolutionnaire Et RomantiquePhilip Jones Brass EnsembleThe English Baroque SoloistsThe Academy Of Ancient MusicThe Consort Of MusickeMartin Best ConsortMartin Best Mediaeval EnsembleSouthbank SinfoniaEnglish Bach Festival Percussion Ensemble + +836787Julie Miller (2)Classical violinist.Needs VoteThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicDeller ConsortLondon Classical PlayersLondon Handel Orchestra + +836788Timothy MasonEnglish classical cello player. +Born April 29, 1948; died April 4, 1997.CorrectOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersRaglan Baroque PlayersThe Academy Of Ancient Music Chamber EnsembleThe London Fortepiano TrioCapricorn (14) + +836789Rachel BeckettClassical flute and recorder player.Needs Votehttps://www.linkedin.com/in/rachel-beckett-0951425/https://oae.co.uk/people/rachel-beckett/BeckettRachel BecketThe Parley Of InstrumentsThe SixteenThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentHanover BandL'École D'OrphéeThe Chandos Baroque PlayersThe Symphony Of Harmony And InventionClassical OperaThe English Concert + +836790Richard Lloyd MorganClassical vocalist (bass).CorrectRichard Lloyd-MorganThe Monteverdi Choir + +836791Lucinda HoughtonClassical soprano vocalistNeeds Votehttps://www.linkedin.com/in/lucinda-houghton-1a737218/https://www.bach-cantatas.com/Bio/Houghton-Lucinda.htmThe SixteenThe Monteverdi ChoirThe English Concert ChoirThe Schütz Choir Of London + +836792Patrick CollinClassical vocalist (alto).CorrectThe Monteverdi Choir + +836793Alastair MitchellClassical bassoon & harpsichord instrumentalist.Needs VoteAlastair MitchelAlistair MitchellNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersGabrieli PlayersHanover BandThe King's ConsortL'Estro ArmonicoThe English ConcertThe Bach Players + +836798Walter Hagen-GrollChorus Master for the [a=Chor der Deutschen Oper Berlin] from 1961 until 1984. +Born 15 April 1927 in Chemnitz, Germany; died 3 November 2018 in Salzburg, Austria.Needs Votehttps://de.wikipedia.org/wiki/Walter_Hagen-GrollG. Hagen-GrollGrollW. Hagen-GrollWalter Haagen-GrollWalter Hagen GrollWalter Hagen-KrollВальтер Хаген-Гролльヴァルター・ハーゲン=グロル = Walter Hagen-Grollヴァルター・ハーゲン=グロル + +836874James Morrison (5)Swing-era jazz drummerNeeds VoteJ. MorrisonJames MarrisonJames MorrissonJones MorisonJones MorrisonErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State Collegians + +836884Barthold KuijkenBarthold KuijkenBelgian flautist and recorder player, known for playing baroque music on authentic instruments. Brother of the violinist [a=Sigiswald Kuijken] and of the cello / viol player [a=Wieland Kuijken]. + +Born March 8, 1949 in Dilbeek, BelgiumNeeds Votehttps://en.wikipedia.org/wiki/Barthold_Kuijkenhttps://nl.wikipedia.org/wiki/Barthold_Kuijkenhttps://www.lesvoixhumaines.org/en/barthold-kuijken-en/https://web.archive.org/web/20030803202046/https://www.sonyclassical.com/artists/kuijken/https://www.naxos.com/Bio/Person/Kuijken_Barthold/32445B. KuijkenBart KuijkenBarthold KuykenBartold KuijkenBerthold KuijkenKuijkenKuijken B.KuijkensMusiques NouvellesConcentus Musicus WienCollegium AureumLa Petite BandeThe Kuijken EnsembleEnsemble Polyphonies + +836885Sigiswald KuijkenSigiswald KuijkenBelgian violinist, violist, and conductor (born February 16, 1944), known for playing on authentic instruments. Brother of the flautist [a=Barthold Kuijken] and of the cellist and gambist [a=Wieland Kuijken]. Founder of [a=La Petite Bande].Needs Votehttps://en.wikipedia.org/wiki/Sigiswald_Kuijkenhttps://www.bach-cantatas.com/Bio/Kuijken-Sigiswald.htmKuijkenKuijkensS. KuijkenS. KuikjenSigiswald Kuykenシギスヴァルト・クイケンMusiques NouvellesConcentus Musicus WienCollegium AureumLa Petite BandeOrchestra Of The 18th CenturyBrüggen ConsortKuijkensAlarius-EnsembleKuijken QuartetThe Kuijken EnsembleEnsemble Polyphonies + +836894Charles MedlamEnglish cellist, viol player and conductor. +In 1978, he founded [a=London Baroque] with [a=Ingrid Seifert]. +Needs VoteCharles MedlanCharles MedlenCharls MedlamLondon BaroqueThe Academy Of Ancient MusicMusica Antiqua KölnKees Boeke ConsortThe English ConcertThe Romantic Chamber Group Of London + +836896Ingrid SeifertAustrian violinist, who co-founded [a=London Baroque] with [a=Charles Medlam] in 1978.Needs VoteConcentus Musicus WienLondon BaroqueThe Academy Of Ancient MusicMusica Antiqua KölnThe English Concert + +836897Stephen PrestonClassical flutist. +In 1966, he was a founder of the Galliard Trio with [a=Trevor Pinnock], harpsichord and [a=Anthony Pleeth], cello. +From 1981 to 2001, he worked as a choreographer, principally of historical dance in opera and was director of two dance companies. +More recently, he worked as an advisor on historical performance practices with the New Century Saxophone Quartet on their recording of [a=Johann Sebastian Bach]'s Art of Fugue. +He is engaged in research into developing new techniques and improvisational forms based on birdsong. From this work he has created a new musical language – ecosonics, which can be heard for instance in the [a=BBC Singers] commission "The Soft Complaining Flute", by composer Edward Cowie, written for flute and 6 sopranos. +Needs VotePrestonSt. PrestonLondon BaroqueThe Academy Of Ancient MusicHesperion XXL'École D'OrphéeThe Academy Of Ancient Music Chamber EnsembleThe Music PartyThe English ConcertAutomatic Writing Circle + +836899William HuntWilliam HuntString player (viol, double bass, etc.)Needs VoteBill HuntWill HuntWilliam T. HuntGabrieli ConsortFretworkNew London ConsortThe Parley Of InstrumentsLes Arts FlorissantsThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicI FagioliniTaverner PlayersThe Purcell QuartetThe Medieval Ensemble of LondonDunedin ConsortCamerata Of LondonThe English ConcertThe London Music PlayersBell'Arte AntiquaIn EchoSt John's SinfoniaKontrabande + +836900Richard GwiltScottish baroque violinist, born in Edinburgh. +Since 2005 professor of baroque violin at [l328201].Needs Votehttp://www.gwilt.net/The English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicThe English ConcertKellie ConsortArcomelos + +836901John TollOrganist, harpsichordist and conductor (born October 1 1947 - died May 26 2001). +Co-founder of the trio [a=Romanesca] with lutenist [a=Nigel North] and violinist [A=Andrew Manze]. +Needs VoteJ. TollTollNew London ConsortLondon BaroqueOrchestra Of The Age Of EnlightenmentTaverner PlayersThe Consort Of MusickeRomanescaMusica SecretaBrandenburg ConsortL'École D'OrphéeKees Boeke ConsortThe English Concert + +837024Dick JacobsAmerican musician (saxophone), conductor, arranger, orchestrator and music director. +A&R director for [l39155], [l14624], [l5320] and [l221977]. + +Born: March 29, 1918 in New York City, New York +Died: May 20, 1988 in New York City, New YorkCorrecthttp://en.wikipedia.org/wiki/Dick_Jacobshttps://adp.library.ucsb.edu/names/204876Chorus Dir. By Dick JacobsD. JacobsD.JacobsDick Jacobs And His ChorusDick Jacobs And His Chorus And His OrchestraDick Jacobs And His Chorus And OrchestraDick Jacobs And His OrchestraDick Jacobs His Chorus And OrchestraJacobsディック・ジェイコブズLouis Armstrong And His OrchestraSy Oliver And His OrchestraDick Jacobs OrchestraDick Jacobs And His Skiffle GroupDick Jacobs His Chorus And OrchestraDick Jacobs Chorus + +837034Richard EgarrRichard Egarr (b. 7 August 1963, Lincoln) is a British classical keyboardist and conductor, music director of [a=The Academy Of Ancient Music] (since 2006), co-founder of [b][a=Duo Pleyel][/b] with his wife [a=Alexandra Nepomnyashchaya]. He regularly appears in a duo with violinist [a837036]. + + + +Needs Votehttp://en.wikipedia.org/wiki/Richard_Egarrhttps://www.intermusica.com/artist/Richard-EgarrEgarrR. EgarrNew London ConsortLondon BaroqueThe Academy Of Ancient MusicHis Majestys Sagbutts And CornettsThe Spirit Of GamboDuo PleyelThe Cambridge Musick + +837036Andrew ManzeAndrew ManzeEnglish baroque violinist and conductor, born 14th January 1965, Beckenham. +Among others, he studied with [a=Simon Standage] at the Royal Academy of Music. In 1988 he became first violin of [a=The Amsterdam Baroque Orchestra] under the direction of [a=Ton Koopman]. He was also a member of the ensemble [a=Romanesca] with [a=John Toll] (harpsichord) and [a=Nigel North] (lute). +In 1996, he became associate director of The Academy of Ancient Music, then from 2003 to 2007, he was the director of the baroque orchestra [a=The English Concert], having succeeded the founder, English harpsichordist [a=Trevor Pinnock]. He was principal guest conductor of the [a=Kringkastingsorkestret] (Norwegian Radio Symphony Orchestra) between 2008 and 2011. +In 2006, he became the chief conductor of the [a=Helsingborgs Symfoniorkester] (Helsingborg Symphony Orchestra) and also assumed the role of associate guest conductor of the [a=BBC Scottish Symphony Orchestra] since November 2010. +Manze is also a regular contributor to BBC Radio 3, and one of the presenters of its The Early Music Show.Needs Votehttps://andrewmanze.com/https://en.wikipedia.org/wiki/Andrew_Manzehttps://www.intermusica.co.uk/artist/Andrew-Manzehttps://www.bach-cantatas.com/Bio/Manze-Andrew.htmA. ManzeManzeBBC Scottish Symphony OrchestraThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Taverner PlayersRomanescaKringkastingsorkestretHelsingborgs SymfoniorkesterLa Stravaganza KölnThe English ConcertThe Cambridge Musick + +837037Jaap ter LindenDutch classical cellist, viol player and conductor, born April 10, 1947 in Rotterdam. founder of [a870984].Needs Votehttp://www.jaapterlinden.com/http://en.wikipedia.org/wiki/Jaap_ter_LindenJ. Ter LindenJ. ter LindenJaap Ter LindenJaap Van Ter LindenJaap ter LinderJaap van ter LindenJap Ter LindenJapter Lindenter Kindenter LindenThe Amsterdam Baroque OrchestraMusica Antiqua KölnConcerto VocaleMozart Akademie AmsterdamSyntagma MusicumMusica AmphionCantus CöllnTeatro LiricoAmsterdams Barok EnsembleVan Swieten TrioThe English ConcertEnsemble KaproenLe Trio Royal + +837051Johannette ZomerJohannette ZomerDutch soprano.Needs Votehttp://www.johannettezomer.com/J. ZomerJohanette ZomerJohannette ZomersZomerЙоханетта ЗоммерCollegium VocaleThe Amsterdam Baroque ChoirDe Nederlandse BachverenigingL'ArpeggiataLa PrimaveraGli Angeli Genève + +837062Reinhold BartelGerman operatic tenor and actor. He was born 1 March 1926 in Trier, Germany and died 10 August 1996 in Wiesbaden, Germany.CorrectBartelR. BartelReinhold Bartos + +837063Renate HolmGerman-Austrian soprano. She sang mainly operas and operettas. From 1957, she was a member of the ensemble of the [l7514]. In 1977, [a283122] brought her to the [l613318]. +b.: Aug. 10, 1931 in Berlin, German Empire. +d.: Apr. 21, 2022 in Vienna, Austria.Needs Votehttps://www.facebook.com/KSRenateHolm/https://de.wikipedia.org/wiki/Renate_Holmhttps://en.wikipedia.org/wiki/Renate_Holmhttps://www.imdb.com/name/nm0391556/HolmR. HolmR.HolmRenata HolmRenate Holm With Chorus And OrchestraРенате ХольмРене Холм + +837101Marshall MarcusClassical violin and viola player.Needs VoteMarcusNew London ConsortThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersHanover BandThe King's Consort + +837102René SteurRené SteurBass vocalist.Needs VoteRene SteurCollegium VocaleThe Amsterdam Baroque Choir + +837104Hans WijersDutch classical Bass / Baritone vocalist.Needs VoteCollegium VocaleEgidius KwartetThe Amsterdam Baroque ChoirBalthasar-Neumann-ChorNederlands KamerkoorVocalconsort BerlinHimlische Cantorey + +837107Peter LissauerClassical violin player.Needs Votehttps://peterlissauer.com/Péter LissauerOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCapella SavariaThe Symphony Of Harmony And Invention + +837109Otto BouwknegtTenor vocalist.Needs VoteOtto BouwknechtCollegium VocaleThe Amsterdam Baroque OrchestraCappella AmsterdamEgidius Kwartet + +837110Nicola CleminsonClassical violin & viola player.Needs VoteNichola CleminsonNicky CleminsonNicola CleminsónNicola ClemisonThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicDeller ConsortOrchestra Of The Age Of EnlightenmentThe Consort Of MusickeHanover BandBrandenburg ConsortThe Jaye ConsortThe English Concert + +837111Margaret FaultlessClassical violin player.Needs Votehttp://www.hyperion-records.co.uk/a.asp?a=A1713http://www.ram.ac.uk/find-people?pid=2794Maggie FaultlessMargareth FaultnessCollegium VocaleThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersThe King's ConsortThe London Haydn QuartetThe English ConcertSt John's Sinfonia + +837112Foskien KooistraClassical violinist.Needs VoteCollegium VocaleThe Amsterdam Baroque OrchestraDe Nederlandse Bachvereniging + +837114William MissinEnglish counter-tenor & alto vocalist, studied at New College Oxford and the Royal College of Music.Needs Votehttps://www.bach-cantatas.com/Bio/Missin-William.htmGabrieli ConsortThe New College Oxford ChoirOxford CamerataThe Tallis ScholarsThe SixteenThe Monteverdi ChoirOrchestra Of The RenaissancePolyphonyThe Amsterdam Baroque ChoirThe Clerks' GroupThe Choir Of The Temple Church + +837115Wilbert HazelzetDutch classical flautist, born 20 November, 1948 in Den Haag.Needs Votehttps://www.bach-cantatas.com/Bio/Hazelzet-Wilbert.htmhttps://de.wikipedia.org/wiki/Wilbert_HazelzetWilbert HazeletThe Amsterdam Baroque OrchestraMusica Antiqua KölnSonnerieMusica AmphionCantus CöllnLes AdieuxMusica PolyphonicaCamerata KilkennyEnsemble CristoforiLyra Baroque OrchestraLe Trio Royal + +837116Marc Cooper (3)Classical violinist.Needs VoteMark CooperThe Amsterdam Baroque OrchestraLes Talens LyriquesTaverner PlayersGabrieli PlayersTulipa Consort + +837122Francine Van Der HeijdenDutch soprano, born 1964.Needs Votehttp://www.francinevanderheijden.nlFrancine Van Der HeydenFrancine van der HeydenVan Der HeijdenThe Amsterdam Baroque Orchestra + +837123Annemieke CantorAlto vocalist.Needs Votehttps://www.facebook.com/annemieke.cantorThe Amsterdam Baroque ChoirCoro Della Radio Televisione Della Svizzera Italiana + +837127Caroline StamCaroline StamCaroline Stam is a Dutch soprano who began her singing education at the Amsterdam Sweelinck Conservatory of Music with Erna Spoorenberg, before continuing her studies with Margreet Honig and graduating with honours. She won both the first prize for soprano and the French song prize in the 1995 Grimsby International Competition for singers. Stam has performed in Holland, Germany, France, Spain and Great Britain, and has been soprano soloist in Bach’s complete cantata recordings with [a=Ton Koopman] and his Amsterdam Baroque Orchestra and Choir since its foundation in 1992.Needs VoteThe Amsterdam Baroque ChoirDe Nederlandse BachverenigingMusica Amphion + +837128Peter FrankenbergClassical oboe player.Needs VoteP. FrankenbergPeter FrankenburgCappella Musicale Di S. Petronio Di BolognaThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLa Grande Ecurié Et La Chambre Du RoyWiener AkademieDe Nederlandse BachverenigingCamerata TrajectinaMusica AmphionNetherlands Bach CollegiumTeatro LiricoEnsemble Cristofori + +837129Sue DentClassical horn player.CorrectBBC Symphony OrchestraThe Amsterdam Baroque Orchestra + +837130Jonathan MansonScottish classical cello and viola da gamba player, born in Edinburgh.Needs Votehttp://jonathanmanson.comhttp://en.wikipedia.org/wiki/Jonathan_MansonJ. MansonMansonPhantasm (3)La SerenissimaThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLe Concert D'AstréeConcordiaThe King's ConsortDunedin ConsortThe London Haydn QuartetArcangeloEnsemble MarsyasEuropean Brandenburg EnsembleRetrospect TrioThe English ConcertRetrospect EnsembleEnsemble Guadagni + +837131Klaus MertensKlaus Mertens German classical vocalist (bass-baritone) born 1949 in Kleve. After high school graduation, he studied music and pedagogy, subsequently entering upon a career as a teacher. He received his vocal training from Prof. Else Bischof-Bornes, Jakob Stämpfli, and Peter Massmann, graduating with honors. He has collaborated with renowned conductors such as [a=Frans Brüggen], [a=Philippe Herreweghe], [a=René Jacobs], [a=Ton Koopman], [a=Sigiswald Kuijken], [a=Nikolaus Harnoncourt] and [a=Herbert Blomstedt].Needs Votehttps://www.klausmertens.eu/https://en.wikipedia.org/wiki/Klaus_MertensMertensSelig + +837135Sebastiaan Van VuchtClassical violinist.Needs VoteSebastian Van VuchtSébastien Van VuchtOrchestre Des Champs ElyséesCollegium VocaleThe Amsterdam Baroque OrchestraNieuw Sinfonietta Amsterdam + +837136James GhigiClassical trumpeter.Needs VoteLondon BrassLes Arts FlorissantsThe Amsterdam Baroque OrchestraOrchestra Of The Age Of EnlightenmentThe King's ConsortDas Kleine KonzertThe English Concert + +837137Ann VanlanckerClassical oboist.Needs VoteAnn Van LanckerAnn VanlancherAnne VanlanckerAnneke VanlanckerCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque OrchestraIl FondamentoIl Seminario MusicaleLe Concert Des nationsLa Petite BandeIl GardellinoLa Pastorella + +837138Simon SchoutenChorus master, vocalist and recorder player.Needs VoteCollegium VocaleThe Amsterdam Baroque ChoirIl Giardino Armonico + +837140Jeremy OvendenEnglish classical tenor vocalist. Married to [a2044718]Needs Votehttps://www.jeremyovenden.com/https://www.bach-cantatas.com/Bio/Ovenden-Jeremy.htmhttps://www.hyperion-records.co.uk/a.asp?a=A977J. OvendenOvendenThe Guildford Cathedral ChoirConcerto VocaleThe Amsterdam Baroque Choir + +837297Emmanuel Abdul-RahimEmmanuel Khaliq Abdul-RahimAmerican jazz percussionist, born in Harlem, NYC. Has been living in Denmark since 1977. Changed his name from [a=Juan Amalbert] at some point, probably around 1970. Needs VoteE. AmalbertEmanuel K RahimEmanuel K. RahimEmanuel RahimEmanuel RahinEmmanuel Abdul RahimEmmanuel Khaliq RahimEmmanuel RahimJuan AmalbertArt Blakey & The Jazz MessengersClark Terry And His Jolly Giants + +837343Uwe GronostayUwe Gronostay (born 25th October, 1939, in Hildesheim, Germany - died 29th November, 2008, in Berlin, Germany) was a German choral conductor and composer; he was leader of the [a646860] from 1972 to 1986.Needs Votehttps://en.wikipedia.org/wiki/Uwe_Gronostayhttps://www.imdb.com/name/nm1673790/https://www.bach-cantatas.com/Bio/Gronostay-Uwe.htmŪve GronostajsУве ГроноштайRIAS-Kammerchor + +837386Rinaldo AlessandriniConductor and classical keyboard player. Founder of [a=Concerto Italiano]. Born in Rome in 1960.Correcthttp://en.wikipedia.org/wiki/Rinaldo_AlessandriniAlessandriniR. AlessandriniLa Capella Reial De CatalunyaEuropa GalanteConcerto Italiano + +837431Trevor Jones (4)Multiple string instrument player, died 6 May 2015.Needs VoteTrevor JonesNew London ConsortThe Early Music Consort Of LondonMelbourne Symphony OrchestraThe Parley Of InstrumentsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicHamburger Bläserkreis Für Alte MusikCollegium Musicum 90London Classical PlayersTaverner PlayersThe Consort Of MusickeThe London "Pro Musica" Symphony OrchestraThe King's ConsortThe Salomon QuartetEnglish Consort Of ViolsThe English ConcertThe Music Collection + +837432Michel PiguetSwiss classical oboist, recorder player and conductor (* 1932 in Geneva, Switzerland; † 2004 in Switzerland).Needs Votehttps://muse.jhu.edu/article/183677/pdfM. PiguetMichel PigetPiguetThe Academy Of Ancient MusicEnsemble Baroque De ZurichSchola Cantorum BasiliensisLeonhardt Baroque EnsembleRicercare-Ensemble Für Alte Musik, ZürichConcerto AmsterdamAston MagnaConsortium Musicum (2)Ensemble Instrumental De LausanneOboenensemble Michel PiguetEnsemble Ludwig Senfl + +837433Sabine WeillClassical woodwind player.Needs VoteSabine WeilThe Academy Of Ancient MusicHesperion XXEnsemble ElymaA Sei VociEnsemble Labyrinthes + +837434Richard WebbClassical cello player.Needs VoteRichard Raquish WebbWebbThe Academy Of Ancient MusicThe Consort Of MusickeThe English Concert + +837435Morten WindingProducer for classical releases.Correct + +837437Sarah CunninghamAmerican Viol & Viola da Gamba player.Needs VoteSara E. CunninghamSequentia (2)The Amsterdam Baroque OrchestraThe Academy Of Ancient MusicThe Consort Of MusickeEnsemble Clément JanequinSonnerieBoston CamerataEnsemble Les ElémentsRicercare-Ensemble Für Alte Musik, ZürichCamerata KilkennyVirelai (2)Abendmusik + +837438Martin WindfordClassical horn player.CorrectThe Academy Of Ancient Music + +837439Micaela CombertiClassical violin player, born in London, 28 September 1952, died in London, 14 March 2003. Married to viola and violin player [a274527]. +Needs Votehttps://en.wikipedia.org/wiki/Micaela_Combertihttps://www.theguardian.com/news/2003/mar/14/guardianobituaries.artsobituariesCombertiM. CombertiM. GombertiMica CombertiMica GombertiMicaëla CombertiMichaela CombertiMichela CombertiCentipede (3)New London ConsortConcentus Musicus WienThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90L'École D'OrphéeThe Salomon QuartetEnsemble Eduard MelkusEx Cathedra Baroque OrchestraThe English ConcertRoyal Academy of Music Baroque Orchestra + +837440Katherine HartClassical viola player.Needs VoteCatherine HartKatharine HartThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe King's ConsortThe Richard Hickox OrchestraThe English Concert + +837441Friedemann ImmerGerman classical trumpeter, born in 1948.Needs VoteFriedmann ImmerImmerTrompetenconsort Friedemann ImmerConcentus Musicus WienAkademie Für Alte Musik BerlinThe Academy Of Ancient MusicMusica Antiqua KölnFreiburger BarockorchesterBachcollegium StuttgartLa Petite BandeMainzer KammerorchesterLa StagioneRicercar ConsortCantus CöllnBalthasar-Neumann-EnsembleTrompeten Consort Friedemann ImmerHannoversche HofkapelleConcerto PalatinoBoston BaroqueAston MagnaPygmalionLinde-ConsortJohann Rosenmüller EnsembleKentucky Baroque TrumpetsBarockorchester caterva musica + +837442The Academy Of Ancient MusicPeriod-instrument orchestra founded in 1973 by harpsichordist [a=Christopher Hogwood], based in Cambridge, England. [a=Richard Egarr] became music director in 2006; succeeded in 2021 by [a=Laurence Cummings]Needs Votehttps://www.aam.co.uk/https://en.wikipedia.org/wiki/Academy_of_Ancient_MusicAAMAcademia De Música AntigaAcademy Of Ancient MusicAcademy of Ancient MusicChorus & Orchestra Of The Academy Of Ancient MusicChorus And Orchestra Of The Academy Of Ancient MusicChorus And Orchestra Of The The Academy Of Ancient MusicMembers Of The Academy Of Ancient MusicOrchestra AAMOrchestra Of The Academy Of Ancient MusicThe Academy Of Ancient Music OrchestraThe Academy Of Ancient Music Orchestra & ChorusThe Academy of Ancient MusicThe Academy of Ancient Music & ChorusThe Academy of Ancient Music OrchestraThe Academy of Ancient Music Orchestra & ChorusThe Orchestra Of The Academy Of Ancient MusicАкадемия Старинной МузыкиКамерный Оркестр "Академия Старинной Музыки"エンシェント室内管弦楽団Barry GuyAdam SkeapingPeter McCarthyStephen SaundersStuart DeeksRupert BawdenAlan CivilAnthony PleethSimon StandageMalcolm SmithRogers Covey-CrumpDavid WoodcockAndrew ByrtSarah McMahonRichard CampbellAdrian LaneColin KitchingDave Stewart (2)Francis BainesGeoffrey ShawJohn WillisonDavid CoxRodney NewtonRobert HowesSteve HendersonAlan GeorgeCrispian Steele-PerkinsDavid StaffJohn HeleyMarilyn SansomAndrea MorrisMichael Thompson (2)Paul ElliottRobin CanterAndrew Clark (3)Elizabeth BradleyPeter CollyerEleanor SloanBrian EtheridgeMichael NiesemannAnthony ChidellPeter BamberPhillip BainbridgeRichard CheethamRobbie Jacobs (2)Jonathan KahanRobert VanryneRoderick SkeapingChristopher HogwoodFrances TurnerHenrietta WayneSue BriscoeLucy WaterhouseBrian ParsonsNoel BradshawOliver BrookesChristopher HironsTess MillerPascal BertinDiane MooreMarcel PonseeleStephen KeavyBenedict HoffnungMartin Kelly (3)Roy GoodmanNicolette MoonenJonathan ImpettJane RyanCatherine MackintoshEmma KirkbyMichael ChanceDavid Thomas (9)John ChimesGraham CracknellAlison BuryValerie BotwrightJan SchlappElizabeth WilcockValerie DarkeRosemary NaldenPaul NicholsonRachel Brown (2)Alastair RossHildburg WilliamsMiles GoldingJulie LehwalderSusie Carpenter-JacobsAnnette IsserlisJane NormanLisa BeznosiukAndrew Watts (2)Sophia McKennaAngela EastGuy Williams (2)Desmond HeathDavid CorkhillJulie Miller (2)Timothy MasonRachel BeckettAlastair MitchellCharles MedlamIngrid SeifertStephen PrestonWilliam HuntRichard GwiltRichard EgarrAndrew ManzeMarshall MarcusPeter LissauerNicola CleminsonMargaret FaultlessPeter FrankenbergJonathan MansonTrevor Jones (4)Michel PiguetSabine WeillRichard WebbSarah CunninghamMartin WindfordMicaela CombertiKatherine HartFriedemann ImmerFelix WarnockMark CaudleClare ShanksKu EbbingeImogen Seth-SmithJill SamuelJudith EvansWilliam ThorpNicola AkeroydMatthew BurmanPierre JoubertSusan SheppardJoanna ParkerRebecca LivermorePaula ChateauneufIan PartridgeDanny Bond (2)Christophe RoussetAnthony RobsonRichard EarleWalter ReiterMaya HomburgerEllen O'DellNicholas LogieCatherine FordMaurice WhitakerJanet SeeRichard TunnicliffeMichael Laird (2)Marina AschersonPauline NobesJakob LindbergLorraine WoodRufus MüllerHelen OrslerPavlo BeznosiukAlice EvansCharles FullbrookAnthony HalsteadDavid ReichenbergJaap SchröderChristopher KeyteDavid RoblouHelen VerneyJames Johnstone (3)Melanie StroverRebecca MilesRoy MowattIona DaviesAmanda McNamaraJulia BishopMarie Knight (2)Silas StandageLeon King (2)Nigel NorthDavid Miller (7)Tom FinucaneAntony PayJennifer Ward ClarkeJohn HollowayDavid WatkinElizabeth WallfischJoan BrickleyJudith NelsonSimon Rowland-JonesAnner BylsmaDudley BrightMartin Lawrence (3)Elizabeth Wilson (3)Timothy Brown (2)Duncan DruceEric HoeprichJulian CummingsDavid ChattertonBrian Smith (12)Stephen Jones (7)Paul Goodwin (2)Marion ScottMonica HuggettTimothy KraemerAlison CracknellJames Ellis (3)Jane CoeLisa CochraneNicholas ParleLucy HowardLaurence CummingsMark BaigentDavitt MoroneyMarc DestrubéPenny DriverChristian RutherfordPeter PooleDrew MinterMarc HantaïIaan WilsonPolly WaterfieldJohn Turner (5)Reiko IchiseSuki TowbSusan DentSarah Bealby-WrightPeter GoodwinMichael Harris (6)Robert MaskellChristopher PoffleyAdrian ButterfieldLesley SchatzbergerSiu PeasgoodRachel ByrtAndrew King (5)Julian PikeMichael George (3)Roger MontgomeryGavin EdwardsNeil McLaren (2)Lynden CranhamSusan AddisonAndrew DurbanDavid BlackadderPhilip TurbettChristopher HindRaul DiazKeith PuddySusanne RegelMichael Harrison (4)Sue KinnersleyJudith TarlingBarnaby RobsonAlison McGillivrayMargaret ArchibaldGail HennessyTherese TimoneyJeremy WardColin LawsonFiona DuncanPeter FenderDavid Johnson (15)Frank de BruineBrian SewellElizabeth RandellNicholas McGeganCatherine WeissJane MetcalfeFrances EustaceJane DebenhamSimon Jones (10)Jane ComptonClare SalamanRoy HowatSimon WhistlerColin HortonMichael CopleyAlfredo BernardiniRachel IsserlisKeith MarjoramWilliam CarterDavid PugsleyPaul BoucherLiz MacCarthyPeter Harvey (2)Shirley HopkinsCarina DrurySebastian CombertiTimothy LyonsKirsten KlingelsJane BoothFelicity NotarielloStephen HammerHelen GoughHuw EvansDavid StirlingJoseph CrouchNoel RainbirdJane Rogers (2)Johannes GebauerAnn GriffithsHayley LoweHettie WayneAnthony CatterickThe Academy Of Ancient Music Chamber EnsembleTimothy AmherstDavid Bentley (4)Dawn BakerRodolfo RichterPersephone GibbsJoanna LawrenceGabriel AmherstMatthew TruscottAlexandra BellamyZilla GillmanPeter BuckokeJanet CrouchKatherine SpencerRebecca WexlerSteven ColtriniMarc Ashley CooperJulia CunynghameDavid BrookerCherry Baker (2)Caroline KershawNeal Peres Da CostaJorge Jimenez (2)Lynda SayceHansjürg LangeStephen BullYa-Fei ChuangMartin StancliffeGeorge LawnDavid Jones (21)Marianna SzücsJohn HumphriesJohn SteerElizabeth HuntTimothy HaywardLars Henriksson (2)Zoe ShevlinLara James (2)Keith MariesMartin SonneveldEmma AlterPeter ThorleyEdward ChanceSam KennedyRoderick ShawJudith FalkusKay UsherWilliam Prince (3)Robin StowellStanley King (2)Judith GarsideNeil LunceBenjamin BucktonSophia WilsonPeter Blake (6)Arthur MahlerChristina PoundHelen Brown (2)Robert EhrlichRebecca GoldbergChristopher PigramJosef FrohlichColin WalshBernard Robertson (2)Catherine Jones (2)Peggy GilmoreTimothy HawesPiroska BaranyayJanet TrentJune BainesCassandra L. LuckhardtBojan CicicClaire SansomEmily WorthingtonGarry Clarke (2)Elizabeth McCarthyIwona MuszynskaRobert Evans (8)Alexandre Salles (2)Christel WieheGillian SteelJeremy Gordon (2)Ursula LeveauxCarolyn SpareyJune HardyPhilip Wilby (2)Huw Jenkins (2)Julia KuhnPatrick GarveyJane CawardinePamela CresswellAntje HenselAnthony Van KampenJuliet DaveyAgata DaraškaitėRichard TyackRobert Hope-SimpsonJennifer HelshamMargaret Richards (2)Claudia NorzLeo Duarte (2)Sijie ChenDavid Wright (28)Richard Walz (2)George Clifford (2)James TollJoel Raymond (2)Katherine SharmanElizabeth DoonerElitsa BogdanovaGary BrodieRichard FomisonHugh Cherry (2)Davina ClarkeMagdalena Loth-HillJames O'Toole (4)Robert Ashworth (2)Oliver CaveGeorge Ross (7)Henry TongCaroline ChurchillShelagh ThomsonGabriella JonesAlison RozarioJulia KahnSilje ChenKinga UjaszásziAlan Mitchell (6)Jonathan Rees (4)Rebecca Hammond (3)Beth StoneCharlotte Fairbairn + +837443Felix WarnockClassical bassoonist. Married classical cellist [a836765] in 1975. Joined King’s College in 2014 having previously taught at Royal Academy of Music and Trinity College of Music. He is retired and no longer an active musician.Needs VoteThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicLondon Classical PlayersThe Academy Of Ancient Music Chamber EnsembleThe Albion EnsembleL'Estro ArmonicoThe Music PartyThe English Concert + +837444Mark CaudleClassical cellist and violistNeeds VoteMarc CaudleMark CaudieMark ClaudieThe Parley Of InstrumentsThe SixteenThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicThe Consort Of MusickeRose Consort Of ViolsThe King's ConsortYorkshire Baroque SoloistsLe Nouveau QuatuorInvocation (6)The Gonzaga BandCanzona (3)La Tempesta (2) + +837445Clare ShanksClassical oboist.Needs VoteClaire ShanksShanksThe Parley Of InstrumentsThe Academy Of Ancient MusicDeller ConsortThe King's ConsortBrandenburg ConsortL'Estro ArmonicoThe Music PartyClassical WindsEx Cathedra Baroque OrchestraThe English Concert + +837446Ku EbbingeDutch classical woodwind player (oboe, flute…) (born 1948).Needs VoteK. EbbingeKu EbbingheKue EbbingeLa Chapelle RoyaleThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicFreiburger BarockorchesterDanzi KwintetLa Petite BandeLeonhardt-ConsortOrchestra Of The 18th CenturyEnsemble Philidor + +837453Michel Richard DelalandeMichel-Richard de LalandeFrench baroque composer, violinist and organist under Louis XIV of France (born december 15th, 1657 in Paris, France - died June 18th, 1726 in Versailles, Yvelines, France). +Needs Votehttps://en.wikipedia.org/wiki/Michel_Richard_DelalandeDe La LandeDe LalandeDeLalandeDelalandeDelandeLa LandeLalandeM R DelalandeM-R DelalandeM-R. DelalandeM. R. De LalandeM. R. DelalandeM. R. LalandeM. R. de la LandeM. Richard De La LandeM. Richard De LalandeM. Richard DelalandeM. de LalandeM.-R. De La LandeM.-R. De LalandeM.-R. DelalandeM.-R. de LalandeM.R. De LalandeM.R. DelalandeMichael Richard DelalandeMichael-Richard DelalandeMichel De LalandeMichel DelalandeMichel LalandeMichel Richard De La LandeMichel Richard De LalandeMichel Richard LalandeMichel Richard de La LandeMichel Richard de LalandeMichel Richard de LolandeMichel de LalandeMichel-Richard De La LandeMichel-Richard De LalandeMichel-Richard De LandeMichel-Richard De lalandeMichel-Richard DelalandeMichel-Richard de La LandeMichel-Richard de LalandeMichel-Richard de la LandeMichele de Lalandede LalandedeLalande + +837458Herbert CollumHerbert CollumGerman organist, harpsichordist, composer and conductor. He was born on 18 July 1914 in Leipzig, German Empire, and died on 29 April 1982 in Dresden, German Democratic Republic. Father of [a3431166]. + +Needs Votehttps://de.wikipedia.org/wiki/Herbert_Collumhttps://en.wikipedia.org/wiki/Herbert_Collumhttp://www.reinhardtsgrimma.hiller-musik.de/orgel/orgel/orgelgeschichte10.htmlCollumHerbert Collum An Der Sibermannorgel Zu ReinhardtsgrimmaHerbert CollummГерберт КоллумStaatskapelle DresdenDresdner KreuzchorDresdner Philharmonie + +837495Chor der Staatsoper DresdenGerman choir of the Dresden State Opera ([l517389]), founded 8 October 1817 in consequence to a royal decree of Elector Frederick Augustus III of Saxony.Needs Votehttps://www.semperoper.de/die-semperoper/staatsopernchor-dresden.htmlChoeur De L'Opéra D'Etat De DresdeChoeur Du Staatsoper De DresdeChoeurs Du Staatsoper De DresdeChoeurs de L'Opéra D'Etat DredeChoir of The Dresden State OperaChorChor Der Dredener StaatsoperChor Der Dresdener StaatsoperChor Der Dresdner StaatsoperChor Der Sachsischen Staatsoper DresdenChor Der Staatsoper DresdenChor Der Sächsischen Staatsoper DresdenChor Des Leipziger Rundfunks*Chor Des Staatsoper DresdenChor Staatsoper DresdenChor UndChor der Dresden StaatsoperChor der Dresdener StaatsoperChor der Dresdner StaatsoperChor der Staatsoper u. Staatskapelle Dresden u. SoloistsChor der Sächsischen Staatskapelle DresdenChor der Sächsischen Staatsoper DresdenChorusChorus Of Dresden State OperaChorus Of The Dresden State OperChorus Of The Dresden State OperaChorus Of The Semper Oper, DresdenChorus of the Dresden State OperaChorus of the State Opera, DresdenChœur D'État De La SaxeChœur De L'Opéra D'Etat De DresdeChœur De L'Opéra De DresdeChœur De L'Opéra National De DresdeChœur De l'Opera d'Etat De DresdeChœur de l'Opéra de DresdeChœurs De L'Opéra D'État De Dresde Staatskapelle De DresdeCoro Da Staatsoper De DresdenCoro De La Opera De DresdeCoro Dell'Opera Di Stato Di DresdaCoro Della Sächsische Staatsoper DresdenCoro Di Stato SassoneCoro dell'Opera di Stato di DresdaCoros Del Estado De DresdeCorul Operei De Stat Din DresdaCôro Estadual Da SaxôniaDer Chor Der Staatsoper DresdenDer Chor Der Sächsischen Staatsoper DresdenDer Chor der Staatsoper DresdenDesden StaatskapelleDreden State Opera ChorusDresden State Opera ChoirDresden State Opera ChorusDresden State Opera Chorus Staatskapell DresdenDresden State Orchestra ChorusDresdner Staatsoper -kuoroDresdner StaatsopernchorEnsemble Der Dresdener StaatsoperKoor Van De Staatsoper DresdenKoor van de Dresdener Staats OperaMale Voices Of The Choir Of The Sächsische Staatsoper DresdenMembers Of The Dresden State Opera ChorusMitglieder Des Chores Der Staatsoper DresdenMännerchorMännerchor der Staatsoper DresdenPhilharmonischer Chor DresdenSaxon State ChorusSbor Drážďanské Státní OperySbor Státní Opery V DrážďanechSoloists Of The Dresden State OperettaStaatsoper DresdenStaatsopernchor DresdenStaatsopernchors DresdenState Opera Chorus DresdenSächsischer StaatsopernchorSächsischer Staatsopernchor DesdenSächsischer Staatsopernchor DresdenThe Dresden State OperaThe Dresden State Opera ChorusХор Дрезденского государственного оперного театраFumiko HatayamaGerhart WüstnerErnst HintzeMatthias BeutlichRafael HarnischMirko TumaKatharina FladeHeike LiebmannDominik LichtKonrad UrbanAlexander PinderakAlexander Schafft + +837497Ronald Kinloch AndersonScottish pianist, harpsichordist and producer classical music releases (born 1911 in Edinburgh; died 1984 in London). + +Sometimes credits as: Robert Kinloch Anderson + +From Wikipedia (German): +"Anderson studied in his hometown with Donald Tovey. With a Caird Fellowship, he continued his training at the Royal Conservatory of Music, with Malcolm Sargent (conducting) and Herbert Howells (composition). He also took private lessons with Harold Craxton. + +"In 1933, he joined the conducting class of Clemens Krauss in Salzburg, and in Berlin studied piano with Edwin Fischer, and harpsichord with Wanda Landowska. In 1938, he appeared as soloist with the Scottish Orchestra under George Szell. In the following year, he became a member of the Dartington Hall Chamber Music Group with Robert Masters, violin, Nannie Jamieson, viola and Muriel Taylor, cello. + +"From 1946 to 1963, Anderson taught Music at Trinity College. He also freelanced for EMI and as a member of the Bath Festival Orchestra, with whom he gave a 1958 concert at the Royal Festival Hall. From 1957 to 1963, he was harpsichordist of the Menuhin Festival Orchestra. In 1963, he received a permanent position as a record producer at EMI, where he recorded numerous LPs with figures like John Barbirolli, Adrian Boult and Yehudi Menuhin."Needs Votehttps://de.wikipedia.org/wiki/Ronald_Kinloch_Anderson1 to 3, 9 to 12AndersD. Kinloch AndersonKinloch AndersenKinloch AndersonKinloch-AndersonR. K. AndersonR. Kinloch AndersenR. Kinloch AndersonR.Kinloch AndersonRichard K. AndersonRobert K. AndersonRobert Kinloch AndersonRoland Kinloch AndersonRonald AndersonRonald KinlochRonald Kinloch-AndersonMenuhin Festival OrchestraBath Festival Chamber OrchestraBath Festival OrchestraThe Robert Masters Piano Quartet + +837498Kurt MollKurt Moll (born 11 April 1938, Buir, Germany - died 5 March 2017, Cologne, Germany) was a German bass / baritone vocalist.Needs Votehttps://en.wikipedia.org/wiki/Kurt_MollK. MollMollКурт Молльクルト•モルChorus Of St Martin In The Fields + +837502Zoltan KélémenZoltán KelemenHungarian operatic bass-baritone, born 12 March 1926 in Budapest, Hungary and died 9 May 1979 in Zürich, Switzerland.Needs Votehttps://en.wikipedia.org/wiki/Zolt%C3%A1n_Kelemen_(baritone)KelemenKélémenZ. KelemenZoltan KelemanZoltan KelemenZoltan KéléménZoltán Kelemenテレサ・ストラータス = Zoltan Kélémen + +837504Ruth HesseGerman operatic mezzo-soprano, born 18 September 1936 in Wuppertal, Germany - died 13 July 2024.Correcthttps://en.wikipedia.org/wiki/Ruth_Hessehttps://de.wikipedia.org/wiki/Ruth_Hessehttps://www.imdb.com/name/nm0381582/HesseR. HesseРут Хесс + +837511Orchester der Bayreuther FestspieleDas Bayreuther FestspielorchesterThe Bayreuth Festival Orchestra (Das Bayreuther Festspielorchester) was assembled by [a=Richard Wagner] for the first Bayreuth Festival in 1876. + +For chorus credit use [b][a837515][/b] +If just [a=Bayreuther Festspiele] appears, referring to the choir + orchestra, use that entry.Needs Votehttp://www.bayreuther-festspiele.de/english/performers/festival_orchestra_2008__241.html-orkest1927 Bayreuth Festival Orchestra1951 Bayreuth Festival Orchestra1955 Bayreuth Festival OrchestraBajrajtski Festivalski OrkestarBayeuth Festspiel OrchesterBayrFestp. OrchBayreuthBayreuth 1952Bayreuth 1956Bayreuth 1958Bayreuth Fesival OrchestraBayreuth Fest. Orch.Bayreuth FestivalBayreuth Festival Choir & OrchestraBayreuth Festival ChorusBayreuth Festival Chorus & OrchestraBayreuth Festival Chorus And OrchestraBayreuth Festival OBayreuth Festival OperaBayreuth Festival Orch.Bayreuth Festival OrchestraBayreuth Festival Orchestra & ChorusBayreuth Festival Orchestra / Orchester Der Bayreuther Festspiele / Orchestre Du Festival De BayreuthBayreuth Festival Orchestra And ChorusBayreuth Festival Orchestra/Orchester Der Bayreuther Festspiele/Orchestre Du Festival De BayreuthBayreuth Festival OrchestreBayreuth Festpiele OrchesterBayreuth FestspielBayreuth Festspiele OrchesterBayreuth OrchestraBayreuth Theatre OrchestraBayreuth, 1953Bayreuth-Festspelens Orkester 1928BayreuthOrchBayreuther 1958Bayreuther Festival OrchestraBayreuther FestpieleBayreuther Festpiele OrchesterBayreuther FestspielBayreuther Festspiel-OrchesterBayreuther Festspiel-orkestBayreuther FestspieleBayreuther Festspiele 1958Bayreuther Festspiele 1966Bayreuther Festspiele OrchestraBayreuther FestspielorchesterChoeur Et Orchestre Du Festival De BayreuthChoeur et Orchestre du Festival de BayreuthChorChor & Orchester Der Bayreuther FestspieleChor & Orchester der Bayreuther FestspieleChor Und Orchester Der Bayreuther FestspieleChor und Orchester der Bayreuther FestspieleChœurCoro Y Orquesta Del Festival De BayreuthDas Ensemble Der Bayreuther Festspiele 1960Das Festspiel-Orchester BayreuthDas Festspiele-Orchester BayreuthDas FestspielorchesterDas Festspielorchester BayreuthFestispiel-Orchester BayreuthFestival De Bayreuth 1967Festival Orchestra Of BayreuthFestspiel-Orchester BayreuthFestspiel-Orchester, BayreuthFestspielhaus BayreuthFestspielorchesterFestspielorchester BayreuthL'Orchestre Du Festival De BayreuthMembers Of The Bayreuth Festival Orchestra And ChorusMembers Of The Orchester Der Bayreuther FestspieleMitglieder Des Festspielorchesters BayreuthOchestre Du Festival De BayreuthOrch. D. Bayreuther R. Wagner FestspieleOrchester Der Bayr. FestspieleOrchester Der Bayreuther FestspielOrchester Der Bayreuther FestspieleOrchester Der Bayreuther Festspiele 1951Orchester Der Bayreuther Festspiele 1954Orchester Der Bayreuther Festspiele 1966Orchester Der Bayreuther Festspiele 1971Orchester Der Bayreuther Richard-Wagner-FestspieleOrchester Der Beyreuther FestpieleOrchester Der Bühnenfestspiele BayreuthOrchester Der Festspiele BayreuthOrchester Des Festspielhaus BayreuthOrchester Des Festspielhauses BayreuthOrchester Des Festspielhauses BayreuthOrchester Des Festspielhauses, BayreuthOrchester der Bayreuther Festspiele 1951Orchester der Bayreuther Festspiele 1963Orchester der Bayreuther Festspiele 1966Orchester der Bayreuther Festspiele 1971Orchester der Festspielhauses BayreuthOrchester des Festival von BayreuthOrchester des Festspielhauses BayreuthOrchestr Bayreuthských Slavlostnich HerOrchestr Bayreuthských Slavnostních HerOrchestr Her V BayreuthuOrchestraOrchestra Of The Bayreuth FestivalOrchestra And Chorus of the 1951 Bayreth FestivalOrchestra And Chorus of the 1951 Bayreuth FestivalOrchestra Del Fastival Di BayreuthOrchestra Del Festival Di BayreuthOrchestra Der Bayreuther FestspieleOrchestra E Coro Del Festival di BayreuthOrchestra Festival Di BayreuthOrchestra Festivalului De La BayreuthOrchestra Of The Bayreuth FestivalOrchestra Of The Bayreuth Festival HouseOrchestra Of The Bayreuth FestpielhauseOrchestra Of The Bayreuth FestspielhauseOrchestra del Festival Di BayreuthOrchestra del Festival di BayreuthOrchestra of The Bayreuth FestivalOrchestra of the Bayreuth FestivalOrchestra of the Bayreuth Festival-theatreOrchestreOrchestre Du Festival BayreuthOrchestre Du Festival De BayreuthOrchestre Du Festival De Bayreuth 1966Orchestre Du Festival de BayreuthOrchestre du Festival de BayreuthOrkestar Bajrojtskih Svečanih IgaraOrkester Från Festspielen I BayreuthOrquestaOrquesta De Los Festivales De BayreuthOrquesta De Los Festivales De Bayreuth 1951Orquesta Del Festival De BayreuthOrquesta Del Festival de BayreuthOrquesta Del Teatro De Los FestivalesOrquesta de Bayreuth. Festival 1971Orquesta del Festival de BayreuthOrquestra Do Festival De BayreuthOrquestra Do Festival de BayreuthOrquestra do Festival de BayreuthSolisten Und Orchester Der Festspiele BayreuthStaatskapelle BerlinThe Bayreuth Festival OrchestraThe Bayreuth Festival Orchestra And ChorusThe Beyreuth Festival OrchestraThe Festival OrchestraThe Metropolitan Opera OrchestraThe Orchestra Of The Bayreuth FestivalΟρχήστρα Του Φεστιβάλ Του ΜπάυρόυτОркестр Байрейтского ФестиваляОркестр Байрейтского фестиваляОркестр Театра В Байрейтеバイロイト祝祭管弦楽団Ulrich HornMatthias WeberGerhard SibbingBoris BachmannTakeshi KanazawaRichard MiloneRainer CastillonChristoph MüllerGyula DalloDaniel RaabeFlorian HoheiselHartmut SchillHubert PistlHans Reinhard BiereGerd SeifertRudolf MandalkaKarl-Heinz PassinChristian HedrichKiichiro MamineOzan ÇakarMatthias BenkerGeorg HilserHeinz-Dieter RichterKlaus PetersUlf KlausenitzerJochen PleßJohannes WinklerZdeněk PulecAnikó SzathmaryInga RaabWill SandersLaurent VerneyWilly WaltherArthur HornigJack Martin HändlerAndrea KarpinskiBernhard HartogKarl-Otto HartmannStefan DohrRoland MetzgerKlaus SchochowMatthias RoscherDieter VelteHerbert LangeJan MischlichFritz HenkerThomas RuhKarl Heinrich NiebuhrDietrich ReinholdMichael FrenzelSaskia KwastMartin FladeBernhard KrugMatthias HöferJohannes GmeinderAlbrecht HolderLin YeSven StrunkeitJuraj ČižmarovičJens-Jörg BeckerHans Münch-HollandGottfried LangensteinKlaus StoppelOswald GattermannBruno KlepperHeinz BoshartSebastian RömischChristian PohlThomas SonnenHenrik WieseHans Joachim ZingelAndreas KleinAlexander Von PuttkamerDietmar KellerKurt FörsterHenning RascheMarkus WittgensFranz KleinMathias BaierJosef VelebaDietrich CramerManfred BraunBjörn WestlundThomas RohdeKornelia BrandkampKarl-Heinz Duse-UteschWalter HilgersRobert StarkSiegfried SchäfrichKarl MayrhoferLucas BarrHeinz RadzischewskiFrank Szathmáry-FilipitschWolfgang Ritter (2)Paulus van der MerweMarkus StrauchPascal ThéryMichael Flock-ReisingerSebastian GaedeDorothea HemkenElke BärNorbert AngerArthur KullingHarald Winkler (5)Attila DemusJosef WeissteinerRenate RuscheAlexander Ott (3)Christian TromplerFrauke RossPhilipp StubenrauchJürgen GerlingerAndrew Malcolm (2)Anselm TelleUlrike BassengeStephen Fitzpatrick (2)Matthias KirchnerMichael Kern (5)Rainer VogtHans GelharLeo SiberskiSiegfried GöthelWolfram ArndtTorsten JanickeLudwig UmbreitDetlev GrevesmühlAlfred HinzRené HenriotRoland Heuer (2)Jean BiscigliaHerbert SiebertWerner LuppaRolf GronemannAlbrecht AndersMichael StricharzWolfgang CamphausenGustav KolbeMin KimErwin SchnurGerd HulverscheidtWilfried SchadowEdward ZienkowskiHeinz-Joachim HeimbrockIstván Szentpáli-GavallérOswald KästnerPeter Schulz-WickEwald WittenhorstKlaus GreinerSiegfried KalesseHans-Ernst MeixnerRoland FenebergPeter DobrosmissloffKlaus WundererHartwig HönleWalter MederusRoland KuntzeHans-Wilhelm KufferathBernd HasselJoachim WelzWolfgang Raumann (2)Nothard MüllerHelmut SchützeichelAndré SebaldJürgen DankerKarl-Heinz WeberHorst ZieglerJoachim MittelacherAnne HüttenGabriele BambergerOtmar StrobelLukas BenoErich TrogMichael Pohl (2)Katrin StrobeltChristian Heilmann (2)Andreas SchwinnBernd SchoberUlrich RinderleStephan CürlisFlorian MetzgerAlbert BoesenNorbert PförtschMartin WagemannFrank StephanMatthias KuckuckBernd KünkeleWolfgang TluckAlexander BarthaChristoph StarkeRonald PisarkiewiczSebastian WittiberMatthias RoitherPaolo MendesMichael PeternekXaver Paul ThomaJürgen Wirth (2)Daniel GeissChristoph RombuschJohann LudwigMatthias BrunsDaniel DraganovUlrich PoschnerAndreas Neufeld (2)Michael Engel (3)Nadine ContiniGerd GrötzschelPeter RiehmAndreas WylezolMichael Neuhaus (3)Johannes MirowGudrun HinzeDavid Petersen (2)Mircea MocanitaEberhard WünschTilbert WeigelMatthias WollongSigrid Schenker-ReintzChristopher FranziusJürgen FranzÁngel Jesús GarcíaMatthias DangelmaierEhrhard WetzHorst SchönwälderZoltan PaulichFriedhelm BießeckerJan PasMatthias Perl (2)Hendrik VornhusenJérémy SassanoHendrik Then-BerghGottfried von FreibergChristoph BielefeldStephan SchottstädtFionn BockemühlFriedmann DreßlerJanne Pulkkinen (2)Bertram BanzMatthias GromerStefan ArzbergerMischa MeyerMartin JakobsVolker HanemannMichael Arlt (2)Wolfhard PenczMartin HofmeyerPhillip RoyMichael DurnerCarsten DuffinFrançois BastianJürgen KarwathSteffen SchmidChristian Lampert (2)David BroxMax ZimolongStefan GagelmannDaniel LampertRudolf MetzmacherFred WeicheAnja KraußCécile TêteHartmut SchuldtMichael Lösch (2)Astrid von BrückAnne SchinzFlorian GrubeWaldemar SchwiertzStephan Graf (2)Matthias GlanderMichael Kiefer (2)Almut BeyerHannes BiermannSebastian EybTorsten HoppeSiegfried JungMax HilpertRainer PehrischMichael PeusBernhard KuryJoachim ElserLukas FriederichAndreas Kraft (2)Peter Lauer (4)Robert Ross (18)Juan Pechuan RamirezDaniela Steiner (2)Frank DemmlerPeter Michael BorckAnne-Kathrin SeidelIngo KlinkhammerChristoph Schmidt (7)Vukan MilinWolfram GroßeBeate AanderudMichael SalmCarl WendlingChristian Hofmann-KrugStefan Schmitz (5)Annette Köhler (3)Franz Meiswinkel (2)Marlene PschorrSebastian WagemannWilli Rosenthal (2)Bayreuther Festspiele + +837512Gwyneth JonesDame Gwyneth JonesWelsh soprano, born 7 November 1936 in Pontnewynydd, Wales, UK. +Dame Commander (DBE) - Order of the British Empire.Needs Votehttps://en.wikipedia.org/wiki/Gwyneth_Jones_(soprano)https://www.bach-cantatas.com/Bio/Jones-Gwyneth.htmhttps://www.imdb.com/name/nm0428186/Dame Gwyneth JonesJonesГвинет Джонсギネス・ジョーンズ + +837515Chor der Bayreuther FestspieleFor chorus credit use [b][a837515][/b] +If just [a=Bayreuther Festspiele] appears, referring to the choir + orchestra, use that entry.Needs Votehttp://www.bayreuther-festspiele.de/english/performers/festival_chorus_2008_218.html& Chorus1951 Bayreuth Festival ChorusBayreuth Festival ChBayreuth Festival ChoirBayreuth Festival Choir & OrchestraBayreuth Festival ChorusBayreuth Festival Chorus &Bayreuth Festival Chorus / Chor Der Bayreuther Festspiele / Choeur Du Festival De BayreuthBayreuth Festival Chorus = Chor Der Bayreuther Festspiele/Choeur Du Festival De BayreuthBayreuth Festival Chorus And OrchestraBayreuth Festival Chorus/Chor Der Bayreuther Festspiele/Choeur Du Festival De BayreuthBayreuth Festival OrchestraBayreuth Festspiele ChorBayreuth Theatre ChorusBayreuther Festival ChorusBayreuther Festspiel-ChorBayreuther Festspiel-koorBayreuther FestspielchorBayreuther Festspiele ChoirBayreuther Festspiele ChorusBeyreuth Festival ChorusChoeurChoeur Du Festival De BayreuthChoeur Du Festival de BayreuthChoeur du Festival de BayreuthChoeursChoeurs Du Festival De BayreuthChoir Of The Bayreuth FestivalChoir of the Bayreuth FestivalChorChor & Orchester Der Bayreuther FestspieleChor Der Bayr. FestspieleChor Der Bayreuther FestspielChor Der Bayreuther Festspiele 1971Chor Der Beyreuther FestpieleChor Der Bühnenfestspiele BayreuthChor Der Festspiele BayreuthChor Des Bayreuther Festspielhauses, BayreuthChor Des Festspielhauses BayreuthChor Of The Bayreuth FestivalChor Und Orchester Der Bayreuther FestspieleChor Und Sonderchor Der Bayreuther FestspieleChor der Bayreuther Festspiele 1963Chor der Bayreuther Festspiele 1971Chor des Festspielhauses BayreuthChor und Sonderchor der Bayreuther FestspieleChorusChorus Of The Bayreuth FestivalChorus Of The Bayreuth Festival HouseChorus Of The Bayreuth FestpielhauseChorus Of The Bayreuth FestspielhauseChœur Du Festival De BayreuthChœur du Festival de BayreuthChœursChœurs Du Festival De BayreuthChœurs Du Festival De BayreuthCoroCoro De Los Festivales De BayreuthCoro Del Festival De BayreuthCoro Del Festival Di BayreuthCoro Del Festival de BayreuthCoro Del Teatro De Los FestivalesCoro Do Festival De BayreuthCoro Do Festival de BayreuthCoro Festival Di BayreuthCoro del Festival Di BayreuthCoro del Festival de BayreuthCoros De Los Festivales De Bayreuth 1951Corul Festivalului De La BayreuthDer Bayreuther FestspielchorDer Festspiel-Chor BayreuthDer FestspielchorDer Festspielchor BayreuthFestispiel-Chor BayreuthFestspiel-Chor BayreuthFestspielchor BayreuthFestspielorchor BayreuthHorKör Från Festspielen I BayreuthMuški Hor Festivalski OrkestarSbor Bayreuthských Slavlostnich HerSbor Her V BayreuthuThe Bayreuth Festival ChoirThe Bayreuth Festival ChorusThe Bayreuth Festival Orchestra And ChorusThe ChorusThe Chorus Of The Bayreuth FestivalThe Festival ChoirΧορωδίαΧορωδία Του Φεστιβάλ Του ΜπάυρόυτХорХор Байрейтского ФестиваляХор Байрейтского фестиваляХор Театра В Байрейтеバイロイト祝祭合唱団Richard GatermannGabriele WundererEberhard FriedrichDagmar HesseBayreuther Festspiele + +837523Heinz ZednikAustrian operatic tenor, born 21 February 1940 in Vienna, Austria.Needs Votehttps://de.wikipedia.org/wiki/Heinz_ZednikHeinz ZednickZednik + +837527Teresa BerganzaMaría Teresa BerganzaSpanish opera singer, born 16 March 1935 in Madrid, died in Madrid 13th May, 2022) was one of the foremost mezzo-sopranos of the third quarter of the 20th century. She is most closely associated with the roles of Rossini, Mozart, and Bizet, and admired for her technical virtuosity, musical intelligence and beguiling stage presence. Also on many Spanish zarzuela style recordings. +Mother of the soprano vocalist [a10655104].Needs Votehttp://www.teresaberganza.com/https://es.wikipedia.org/wiki/Teresa_Berganzahttps://en.wikipedia.org/wiki/Teresa_Berganzahttps://www.imdb.com/name/nm0073979/BerganzaMaria Teresa BerganzaMaría Teresa BerganzaRosinaT. BerganzaTeresa BarganzaTereza BerganzaTérésa BerganzaΤερέσα ΜπεργκάνθαТ. БергансаТереза БерганзаТереза БергансаТереза БерганцТереза БерганцаТереса Бергансаテレサ・ベルガンサ + +837528June AndersonGrammy Award-winning American coloratura soprano, born December 30, 1952.Correcthttp://www.june-anderson.com/junea.htmAndersonЏун Андерсон + +837529Mirella FreniMirella FregniItalian operatic soprano. She was born on February 27, 1935 in Modena (Italy), where she died on February 9, 2020. +First married to [a1065329], then, after their divorce, to [a842223].Complete and Correcthttps://www.imdb.com/name/nm0294262/?ref_=fn_al_nm_1https://en.wikipedia.org/wiki/Mirella_Frenihttps://www.encyclopedia.com/people/literature-and-arts/music-popular-and-jazz-biographies/mirella-freniFreniFreni, MirellaM. FreniMirella FregniMirella Freni ( Butterfly )Mirella Freni ( Mimi)Mirelle FreniMirelli FreniМ. ФрениМирелла Френиミレッラ・フレーニミレルラ・フレーニ + +837532Cheryl StuderCheryl StuderUS American soprano opera singer, born October 24, 1955 in Midland, Michigan. She has been appointed professor at the Hochschule für Musik Würzburg, Germany as of October 2003.Needs Votehttps://cherylstuder.com/https://cherylstudermasterclass.com/https://www.facebook.com/CherylStuderMasterClasshttps://en.wikipedia.org/wiki/Cheryl_Studerhttps://www.bach-cantatas.com/Bio/Studer-Cheryl.htmCherryl StuderStuderЧерил Стадер + +837533Giuseppe SinopoliGiuseppe SinopoliItalian conductor and composer who began studying music at the age of twelve, later studying both music and medicine (earning a doctorate), and archaeology in more recent years. Appointed Professor for Contemporary and Electronic Music at the Venice Conservatory in 1972. Has appeared with the Berlin, Vienna and New York Philharmonic Orchestras, the Orchestra of the Deutsche Oper Berlin, the Orchestra dell'Accademia di Santa Cecilia, Rome, London's Philharmonia Orchestra and the Staatskapelle Dresden, among others. + +Born November 2, 1946 in Venice, Italy; died shortly after having a heart failure while conducting Verdi's 'Aida' in Berlin on April 20, 2001. +Needs Votehttp://www.giuseppesinopoli.com/https://en.wikipedia.org/wiki/Giuseppe_Sinopolihttps://www.bach-cantatas.com/Bio/Sinopoli-Giuseppe.htmhttps://giuseppesinopoli.blogspot.com/G. SinopoliGiuseppe SinopuliGuiseppe SinopoliSinopoliДжузеппе Синополиジュゼッペ・シノーポリStaatskapelle DresdenOrchestra dell'Accademia Nazionale di Santa Cecilia + +837534Samuel RameyAmerican operatic bass and baritone vocalist. He was born March 28, 1942 in Colby, Kansas, USA.Needs Votehttp://www.samuelramey.com/RameyS. RameyСэмюэл Рэмиサミュエル・ラミーThe Metropolitan Opera + +837535Jerry HadleyJerry HadleyAmerican operatic tenor, born June 16, 1952 in Princeton, Illinois and died July 18, 2007 in Poughkeepsie, New York.CorrectFreddyHadleyJ. Hadleyジェリー・ハドリー + +837551Hannes KästnerHannes KästnerGerman organ player was born 27.10.1929 in Oetzsch/Germany; died 14.07.1993 in Leipzig/Germany. Member of [a=Thomanerchor] 1940 bis 1948.Needs Votehttps://de.m.wikipedia.org/wiki/Hannes_KästnerH. KastnerH. KästnerHannes KaestnerHannes KastnerHannes KestnerJohannes KästnerKästnerThomasorganist Hannes KästnerХаннес КастнерХаннес КестнерBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigHändel Festspiel-Orchester Halle + +837562Chicago Symphony OrchestraThe Chicago Symphony Orchestra (CSO) is an American orchestra based in Chicago, Illinois. For chorus credit use [a3016490]. +It is one of the five American orchestras commonly referred to as the "Big Five". Founded in 1891, the Symphony makes its home at Orchestra Hall in Chicago and plays a summer season at the Ravinia Festival. The music director is [a=Riccardo Muti], who began his tenure in 2010. + +[b]Music Directors[/b] +[a=Theodore Thomas (4)] 1891–1905 +[a=Frederick Stock] 1905–42 +[a=Désiré Defauw] 1943–47 +[a=Artur Rodzinski] 1947–48 +[a=Rafael Kubelik] 1950–53 +[a=Fritz Reiner] 1953–63 +[a=Jean Martinon] 1963–68 +[a=Irwin Hoffman] 1968–69 +[a=Georg Solti] 1969–91 +[a=Daniel Barenboim] 1991–2006 +[a=Bernard Haitink] 2006–10 +[a=Riccardo Muti] – since 2010 + +[b]Principal Guest Conductors[/b] +[a=Carlo Maria Giulini] (1969–72) +[a=Claudio Abbado] (1982–85) +[a=Georg Solti] (1991–97) – Music Director Laureate +[a=Pierre Boulez] (1995–2006) + +[b]Composers-in-Residence[/b] +[a=John Corigliano] 1987–90 +[a=Shulamit Ran] 1990–97 +[a=Augusta Read Thomas] 1997–2006 +[a=Osvaldo Golijov] 2006–10 +[a=Mark-Anthony Turnage] 2006–10 +[a=Anna Clyne] 2010–15 +[a=Mason Bates] 2010–15 +[a=Samuel Adams] – since 2015 +[a=Elizabeth Ogonek] – since 2015Needs Votehttps://cso.org/https://en.wikipedia.org/wiki/Chicago_Symphony_Orchestrahttps://soundcloud.com/chicagosymphonyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102127/Chicago_Symphony_OrchestraCSOChicagoChicago OrchestraChicago Philharmonic Symphony OrchestraChicago S. O.Chicago S.O.Chicago SOChicago SimphonyChicago Sym. Orch.Chicago SymfoniorkesterChicago Symph.Chicago Symph. Orch.Chicago SymphonChicago Symphonic OrchestraChicago Symphonie OrchesterChicago Symphonie-OrchesterChicago SymphoniesChicago SymphonyChicago Symphony Orch.Chicago Symphony Orchestra And ChorusChicago Symphony Orchestra BrassChicago Symphony-OrchesterChicago SymphoyChicagoer Simfonie-OrchesterChicagoer Symphonie OrchesterChicagoer Symphonie OrchestraChicagoer Symphonie-OrchesterChicagoer SymphonieorchesterChicagoer Symphony-OrchesterChicagoer-Symphonie-OrchesterChicagos SymfoniorkesterChikago Symphony OrchestraDas Chicago Symphony OrchestraGrande Orchestra SinfonicaL'Orchestre Symphonique De ChicagoL'Orchestre Symphonique de ChicagoL'orchestre Symphonique De ChicagoLa Chicago Symphony OrchestraMembers Of Chicago Symphony OrchestraMembers Of The Chicago SymphonyMembers Of The Chicago Symphony SymphonyOchestre Symphonique De ChicagoOrc. Sinf. De ChcagoOrc. Sinf. De ChicagoOrch. De ChicagoOrchestraOrchestra Sinfonica Di ChicagoOrchestra Sinfonica di ChicagoOrchestre De ChicagoOrchestre De Symphonique De ChicagoOrchestre Symph. De ChicagoOrchestre Symphonique De ChicagoOrchestre Symphonique De ChicagoOrchestre Symphonique de ChicagoOrkestar Čikaške FilharmonijeOrq. Sinf. De ChicagoOrq. Sinfónica De ChicagoOrquesta Sinfonica De ChicagoOrquesta Sinfonica de ChicagoOrquesta Sinfónica ChicagoOrquesta Sinfónica De ChicagoOrquesta Sinfónica De IllinoisOrquesta Sinfónica de ChicagoOrquestra Sinfonica De ChicagoOrquestra Sinfónica De ChicagoOrquestra Sinfónica De LondresOrquestra Sinfônica De ChicagoRavinia OrchestraSimfonijski Orkekestar, ChicagoSimfonijski Orkestar, ChicagoSinfonica De ChicagoSinfónica De ChicagoSinfónica de ChicagoSinfônica De ChicagoSymphonic Orchestra ChicagoSymphonie Orchestra ChicagoSymphonie-Orchester ChicagoSymphony Orchestra ChicagoThe Chicago SymphonyThe Chicago Symphony OrchestraČikaskim Simfonijskim OrkestromČikaški Simfonijski OrkestarČikaški simfonijski orkestarΣυμφωνική ΟρχήστραΣυμφωνική Ορχήστρα Του ΣικάγουСимфонический Оркестр Г. ЧикагоСимфонический Оркестр ЧикагоЧикагский Симфонический ОркестрЧикагский Филармонический Орк.Чикагский симфонический оркестрارکستر سمفونی شیکاگوシカゴ交響楽団シカゴ交響樂團Century Symphony OrchestraNathan ColeRichard LottridgeFred SpectorRobert La MarchinaDavid GreenbaumBruce GraingerJoseph GolanWilliam FaldnerLeonard ChausowEdward DruzinskyJerry SabranskyTheodore SilavinPhilip BlumWilliam SchoenFlorence SchwartzFritz ReinerJoseph SciacchitanoSamuel MagadRobert KassingerLarry CombsFranklyn D'AntonioDale ClevengerKarl FruhHarold D. KlatzHerman ClebanoffAkiko TarumotoTheodore RatzerGail WilliamsSamuel ThaviuGeorge PalermoTim CobbPeter EllefsonWayne BarringtonLaura HamiltonThomas HowellBrant TaylorRay StillJanos StarkerFrank KaderabekAdolph HersethSamuel FeinzimerEdgar MuenzerRichard FerrinCharles PiklerFrank FiataroneAdrian Da PratoRobert SwanJoyce NohRichard OldbergSidney HarthMary SauerGene PokornyRoberta FreierVictor AitayMitchell LurieCraig Morris (3)Eugene IzotovDavid Herbert (3)Alfred WallensteinJulius BakerJerry GrossmanFrederick StockHarold SiegelSherman WaltLawrence NeumanFox FehlingQing HouRonald SatkiewiczBaird DodgeKaren DirksKatinka KleijnLee LaneLei HouSusanna DrakeFrank Miller (3)Jorja FleezanisLaurence ThorstenbergPaul Phillips (4)John SwallowOscar ChausowJonathan PegisCarl RacineNorman SchweikertEdwin BarkerJoseph StepanskyJohn WeicherGeorge SchickAllan Graham (2)Irwin FischerEdward MetzengerThomas GleneckeLionel SayersClark BrodyDavid SchraderJennie WagnerCharles VernonGeorge VosburghFrancis AkosMilan YancichEdmund SchuëckerTom Hall (6)Irving IlmerLeonard SorkinGeorge SopkinJacques IsraelievitchFloyd CooleyArthur KrehbielFrank BroukJoseph GuastafesteJoseph Di BelloCharles GeyerCharlie SchuchatStephen LesterOto CarrilloJohn HagstromMark RidenourAlfred FrankensteinLeonard SharrowSheppard LehnhoffNisanne HowellDavid FilermanHarry BrabecYuan Qing YuStuart KnussenSam DenovTauno HannikainenAlex Klein (4)Byron PeeblesDavid Van VactorLi-Kuo ChangStephen BalderstonJohn Sharp (6)Rubén González (2)Samuel GardnerDonald PeckJay FriedmanGlenn DodsonFrank CrisafulliVincent CichowiczArnold JacobsMichael MulcahyDavid McGillCatherine BrubakerMelanie KupchynskyRichard HirschlMihaela IonescuMatthew ComerfordGordon PetersSusan SynnestvedtRussell HershowDavid Taylor (20)David InmonDonald MolineWilhelm MiddelschulteMischa MischakoffOtakar SroubekGary StuckaJames SmelserBlair MiltonMilton PrevesLois SchaeferEdmund KurtzDaniel SaidenbergRachel GoldsteinBurl LaneIsadore ZverowPerry CraftonLoren BrownLawrie BloomChicago Symphony WindsDavid ChickeringHarold NewtonMichael KrasnopolskyGrover SchiltzJohn BartholomewWilliam HectorJohn Bruce YehMark KraemerGina DiBelloCarol BaumMihaly VirizlayWendell HossChicago Symphony StringsErnst FriedlanderCarroll MartinStephen WilliamsonRobert ChenDaniel GingrichKarin UrsinErik HarrisAdolph WeissBarbara FraserRoger ClineJocelyn Davis-BeckHermine GagnéRoyal Johnson (2)Paul Kahn (2)Kimberly Wright (3)Sidney WeissClarke KesslerRichard GraefAlison DaltonPatricia DashAlbert IgolnikovWillard ElliotDonald KossEdward AtkatzHui LiuAlice Lawrence BakerSando ShiaHeidi TurnerCornelius ChiuElla BrakerMaxwell RaimiDiane MuesThomas Wright (4)Eric WicksDaniel OrbachNancy ParkArnold BrostoffMichael HovnanianBradley OplandRichard KanterMichael HenochDavid Griffin (2)William BuchmanLouise Dixon (2)Sarah BullenLynne TurnerWalfrid KujalaJames GilbertsenJames Ross (16)Jerry SirucekGil BreinesDonald Evans (2)Betty LambertWilliam ScarlettAlbert PaysonGregory Smith (4)Raymond NiwaTimothy KentDavid Sanders (6)Renold SchilkeHugh A. CowdenLouis LowensteinChristopher LeubaWilbur SimpsonEdward KleinhammerKaren BasrakMathieu Dufour (2)Philip FarkasDavid Gauger IIBenjamin Wright (3)Cynthia YehVadim KarpinosTage LarsenChristopher Martin (14)Jennifer GunnYukiko Ogura (2)Robert Mayer (8)Dennis MichelWilliam WelterMax PottagWayne BalmerLeonore GlazerDavid Cooper (30)Daniel Armstrong (4)Weijing WangNi MeiJeanette BittarYouming ChenDaniel Katz (3)Kenneth Olsen (5)Scott HostetlerLora SchaeferKozue FunakoshiRong-Yan TangWendy Koons MeirStephanie JeongAlexander HannaYevgeny FaniukMark Almond (3)De Vere MooreSunghee ChoiMatous MichalSimon MichalSo Young BaeSylvia Kim KilcullenAiko Noda (2)Danny Lai (3)Wei-Ting KuoMiles ManerKeith BunckeStefán Ragnar HöskuldssonJerome StowellBeatrice ChenRalph Johnson (17) + +837568Israel Philharmonic Orchestraהתזמורת הפילהרמונית הישראליתThe Israel Philharmonic Orchestra was founded in 1936 as the Palestine Symphony Orchestra by violinist [a2956332]. [a888854] conducted its inaugural concert on 26 December 1936. It is based in Tel Aviv. The orchestra tours the world annually as well as playing concerts throughout Israel. In 1977 [a=Zubin Mehta] was named the IPO’s first Music Director. Mehta retired in 2019, succeeded by [a9170644]. + +[b]Notes for Discogs submitters:[/b] This artist should be used for the full orchestra only. For sections of the orchestra there are: +[a3860848] +[a3860950]Needs Votehttps://en.wikipedia.org/wiki/Israel_Philharmonic_Orchestrahttps://www.ipo.co.il/https://web.archive.org/web/20031018222420/https://www.sonyclassical.com/artists/israel_philharmonic_orchestra/https://www.youtube.com/user/IPOvideoshttps://www.facebook.com/israel.philharmonichttps://www.instagram.com/Israel_Philharmonic/Das Philharmonische Orchester IsraelDas Streichorchester Des Philharmonischen Orchesters IsraelFilarmónica De IsraelIPOIsrael Filharmoniske OrkesterIsrael Philharmonia OrchestraIsrael PhilharmonicIsrael Philharmonic Orchestra & ChorusIsrael Philharmonic Orchestra, The & ChoirsIsrael Symphony OrchestraIsraeli Philharmonic OrchestraIsraelisch Filharmonisch OrkestIsraels Filharmoniska OrkesterIsraël Philarmonic OrchestraIsraël Philharmonic OrchestraIsraëlisch Filharmonisch OrkestIzraeli Filharmonikus ZenekarIzraeli Filharmónikus ZenekarIzraelskom FilharmonijomLa Orquesta Filarmonica De IsraelOrchestra And ChorusOrchestre Philharmonique D'IsraelOrchestre Philharmonique D'IsraëlOrchestre Philharmonique D'israelOrchestre Philharmonique IsraëlOrchestre Philharmonique d'IsraëlOrquesta Filarmonica de IsraelOrquesta Filarmónica De IsraelOrquesta Filarmónica de ISraelOrquesta Filarmónica de IsraelOrquesta Filarmóníca De IsraelOrquesta Y Coro De La Filarmónica De IsraelOrquestra Filarmónica De IsraelOrquestra Filarmônica De IsraelOrquestra Filarmônica de IsraelPhilharmonic Orchestra Of IsraelPhilharmonique D'IsraëlPhilharmonisches Orchester IsraelPhilharmonisches Orchester IsraëlPhilharmonisches Staatsorchester IsraelThe Israel Philarmonic OrchestraThe Israel PhilharmonicThe Israel Philharmonic OrchestraThe Israel Philharmonic Orchestra & ChoirsThe Israel Symphony OrchestraThe Israeli Philharmonic OrchestraZubin Mehta : Israel Philharmonic OrchestraΦιλαρμονική Ορχήστρα Και Χορωδία Του ΙσραήλΦιλαρμονική Ορχήστρα Του ΙσραήλСимфонический оркестр Северного Израиляהזתמורת הפילהרמונית הישראליתהפילהרמוניתהפילהרמונית הישראלית = The Israeli Philarmonic Orchestraהתזמורת הפילהרמוניתהתזמורת הפילהרמונית הא"יהתזמורת הפילהרמונית הישראליתイスラエル・フィルハーモニックイスラエル・フィルハーモニー管弦楽団התזמורת הארצישראליתHadar CohenEli MagenDudu CarmelGiora FeidmanEva GruesserAlberto NegroniGene PokornyGlenn FischthalMerrill GreenbergFelix GalimirLorand FenyvesShmuel HershkoZohar SchondorfDaniel BenyaminiThomas Martin (5)Marco SalvatoriGadi LedermannAri Þór VilhjálmssonPeter SimenauerNitzan KanetyMiriam HartmanIsrael KastorianoPeter MarckMenahem BreuerEfim BoicoJulia RovinskyChaim TaubGenadi Gurevichאסף מעוזNir ComfortyZvi HarellEli EbanKalman LevinRam OrenRobert MosesMarina DormanEmanuel GruberKenneth KrohnVladislav KrasnovLior EitanTamar MelzerIris RegevSharon Cohen (3)Talia Mense KlingGili Radyanטלי שטיינריורם אלפריןמיכאל הרןדרורית פלקZeev SteinbergGuy EshedEric HerzSemion GavrikovDavid Segal (3)Emanuele SilvestriRobert MozesJonathan HadasDalit SegalRoman SpitzerYoni GertnerDmitri Goldermanמריאנה פובולוצקיגילי רדיין-שדהLinor KatzEran ReemyDavid RadzynskiSophie Baird-DanielShalom BardIlya Konovalovמיכל מוסקקיריל מיכנובסקיAlexander StarkBrad AnnisLia PrevitaliBrendan KaneFelix NemirovskyDavid GrunschlagOmri BlauSimon Hoffmann (2)Yuval ShapiroRon SelkaNimrod KlingBoaz MeirovitchZiv SteinYigal MeltzerMatan NoussimovitchSaida Bar-LevTal Ben-ReiUzi ShalevDan MoshayevLotem BeiderGal Nyska + +837570Orpheus Chamber OrchestraAmerican orchestra based in New York City, founded in 1972 by cellist [a=Julian Fifer]. They are known for their collaborative leadership style in which the musicians, not a conductor, interpret the score.Needs Votehttps://orpheusnyc.org/http://en.wikipedia.org/wiki/Orpheus_Chamber_OrchestraMembers Of The Orpheus Chamber OrchestraOrpheusOrpheus Chamber EnsembleOrpheus Chamber Orch.The Orpheus Chamber OrchestraΟρχήστρα Δωματίου OrpheusКамерни Оркестар "Орфеус"Камерный Оркестр "Orpheus"Камерный Оркестр "Орфей"Камерный Оркестр Orpheusオルフェウス室内管弦楽団Benjamin Herman (2)Kim KashkashianMaureen GallagherStephen Taylor (2)Frank MorelliChris GekkerStewart RoseMelissa MeellDov ScheindlinGregg AugustHow Liang-PingJulian FiferRuth WatermanRonnie BauchGuillermo FigueroaJoanna JennerWilliam PurvisSusan PalmaNancy Allen (2)Robert WolinskyDennis GodburnDonald PalmaJulie LandsmanAlan KayMarji DanilowDavid CeruttiCarl AlbachSarah ChangCathy MetzPhilip SetzerPeggy PearsonMaya GunjiJerry GrossmanRichard RoodMartha Caplin-SilvermanJonathan SpitzLiz MannShmuel KatzMary HammannLaura FrautschiMatthew DineWolfgang LäubinHannes LäubinPatrick GalloisEric BartlettAlvin McCallPeter OundjianRandall WolfgangJohn Gibbons (6)Ransom WilsonNaoko TanakaGil ShahamRenee JollesDavid JolleyRobert AtherholtNardo PoyMasao KawasakiSarah Clarke (3)Charles NeidichEriko SatoSteven DibnerEric WyrickJoanna KurkowiczTodd Phillips (4)Sophia KessingerChristof HuebnerDaniel AvshalomovRaymond MaseJames Wilson (14)David Singer (4)Louis HanzlikMarcy RosenAnnabelle HoffmanJenny DouglassRichard Stone (4)Charles McCracken, Jr.Emilie-Anne GendronAdela PeñaDavid Perry (11)Eric Reed (6)Madeline FayetteJames Austin SmithJulia LichtenKyu-Young KimGina CuffariMiho SaegusaJordan FrazierRebecca TroxlerSin-tung ChiuSusan Lang (3)Dana Kelley (2) + +837573Krystian ZimermanKrystian Zimerman[b]Krystian Zimerman[/b] (born December 5, 1956, in Zabrze, Poland) is a Polish concert pianist, conductor and pedagogue. He won first prize at the IX International Chopin Piano Competition in 1975, the youngest winner to that date at the age of 18.Needs Votehttps://www.krystianzimerman.eu/https://pl.wikipedia.org/wiki/Krystian_Zimermanhttps://en.wikipedia.org/wiki/Krystian_Zimermanhttps://culture.pl/pl/tworca/krystian-zimermanhttps://www.imdb.com/name/nm4478081/https://www.deutschegrammophon.com/en/artists/krystian-zimermanK. ZimermanKristian ZimermanKrystion ZimmermanZimermanZimermannクリスチャン・ツィメルマンクリスティアン・ツィマーマンクリスティアン・ツィマーマン + +837575Alexis WeissenbergAlexis WeissenbergBulgarian-born French pianist, born 26 July 1929 in Sofia, Bulgaria, died 8 January 2012 in Lugano, Switzerland.Needs Votehttps://alexisweissenbergarchive.com/A WeissenbergA. WeissenbergAlex WeissenbergAlexis WeissenbergerWeissenbergWiessenbergАлексис Вайсенбергアレクシス・ワイセンベルクベルリン・フィルハーモニー管弦楽団ワイセンベルク(アレクシス)Sigi WeissenbergMister Nobody (4) + +837577Andrei GavrilovAndrej Vladimirovič GavrilovAndrei Vladimirovich Gavrilov ( Russian Андрей Владимирович Гаврилов , scientific transliteration Andrej Vladimirovič Gavrilov ; born September 21,1955 in Moscow ).Needs Votehttps://www.andreigavrilov.comAndre GavrilovAndrei GawrilowAndreij GawrilowAndrej GavrilovAndrej GawrilowAndreï GavrilovAndré GavrilovGavrilovGawrilowА. ГавриловАндрей Гавриловアンドレイ・ガヴリーロフ + +837582Musica Antiqua KölnEnsemble founded by [a=Reinhard Goebel] and fellow students from the Cologne Conservatory, initially devoted to the performance of Baroque chamber and sacred music. In 1983 the ensemble was augmented with additional string and wind players to allow the performance of orchestral music as well. From 1978 to its dissolution at the end of 2006, Musica Antiqua Köln and Reinhard Goebel have been [l=Archiv Produktion] exclusive artists. +Needs VoteMusica Antica KölnMusica Antigua KölnMusica AntiquaMusica Antiqua (Кельн)Musica Antiqua - KölnMusica Antiqua CologneMusica Antiqua KolnMusica Antiqua de CologneMusica Antiqua, ColoniaMusica Antiqua, KölnMusica Antiqua-CologneMusica Antiqua-KölnMusiqua Antiqua De CologneMúsica Antiqua ColoniaΜουσική Αντίκα ΚολονίαςСтаринная Музыка КельнаAlison GanglerKlaus OsterlohJohannes PlatzBenjamin HudsonVera FischerMichael NiesemannPhillip BainbridgeKaren KaderavekChristine KyprianidesFlorian DeuterJonathan CableSusan Williams (2)Daniel DeuterAndreas GerhardusUlrike KunzeCharles MedlamIngrid SeifertJaap ter LindenWilbert HazelzetFriedemann ImmerReinhard GoebelHans-Peter WestermannGerhard PetersJan ReichowCordula BreuerMartin SandhoffJakob LindbergMichael Schneider (2)Ute HartwichMichael NeuhausChristian GoossesKarl KaiserMarkus DeuterKonrad JunghänelPieter DhontAdrian RovatkayJed WentzFranc PolmanEric HoeprichLaura JohnsonMarion VerbruggenAndreas StaierChristoph MayerHarald HoerenSabine BauerBibiane LapointeGudrun HeyensHajo BäßAlmuth BergmeierRandall CookMary UtigerPere RosKarlheinz SteebHenk BoumanMihoko KimuraAdrian BleyerClaudia SteebDorothea WolffKatharina WolffAndrea KellerJürgen FichtnerThomas PietschAndreas SperingWerner EhrhardtJoris van GoethemRaimund NolteAnton SteckHenriette BakkerMarion MoonenDane RobertsPhoebe CarraiCharles PutnamRenée AllenFlorian GeldsetzerMichael DückerWolfgang DeyLex VosBart SpanhoveMarkus MöllenbeckWolfgang Von KessingerSusanne RegelMonika NielenUlrike FischerSherman PlessnerVictoria GunnChristian RiegerSebastian GriewischMarie-Luise GeldsetzerFred GüntherMark MefsutDetmar LeertouwerAlmut GeldsetzerGabriele SteinfeldPaula KibildisRaphael VosselerAnne von HoffMichael McCrawGustavo ZarbaJean-Michel ForestRobert Hill (9)Philipp BosbachKarin BaaschStefan BlonckEckhard LeueAndrew JoyEberhard MaldfeldAnne RöhrigUlrich WedemeierKlaus BundiesManfredo KraemerLéon BerbenLisa Klevit-ZieglerVolker MöllerPhilippe SuzanneGunar LetzborRüdiger LotterAlvaro PintoAndrew Hale (2)Joachim FiedlerChristoph SperingTimothy CroninThierry MaederCynthia RomeoDenton RobertsMaren RiesHannes KotheAriane SpiegelColette HarrisMaurice StegerChen-Ying Lu-RiebutschIsabel SchauHauko WesselKarin GutscheIlya KorolGudrun HöboldStephan SchardtIlka EmmertAndré HenrichEberhard ZummachJulia HuberMichael HamannDiego NadraSaskia FikentscherDavid HendryKlaus-Dieter BrandtRainer JohannsenAnke BöttgerKay ImmerDaniel SpektorClaus KörferRobert FarleyKreeta-Maria KentalaEllen KomorowskyEva BartosRaphael VangAdriana BreukinkFumiharu YoshimineGeorg BörgersGiovanni ZordanKerstin de WittSusanne HochscheidDorothea SeelKatharina HessGilbert Große Boymann + +837583Kenneth GilbertKenneth GilbertCanadian harpsichordist, organist, musicologist and teacher, born in Montreal, on December 16th, 1931. Died 16 April 2020.Needs Votehttp://www.thecanadianencyclopedia.com/index.cfm?PgNm=TCE&Params=U1ARTU0001363https://en.wikipedia.org/wiki/Kenneth_GilbertGilbertK. GilbertKeneth GilbertRicercare-Ensemble Für Alte Musik, ZürichThe English Concert + +837584Shlomo MintzIsraeli violinist, violist and conductor. He was born 30 October 1957 in Moscow, Russia.Needs Votehttps://www.shlomomintzviolin.com/MintzS. Mintzシュロモ・ミンツ + +837585Reinhard GoebelReinhard GoebelGerman violinist and conductor (born 1952 in Siegen, Westfalen, Germany), specialising in early music on authentic instruments. +In 1973 he founded his baroque ensemble [a=Musica Antiqua Köln] that he had led until its dissolution at the end of 2006. +Needs Votehttps://reinhardgoebel.nethttps://de.wikipedia.org/wiki/Reinhard_GoebelGoebelR. GoebelReinard GoebelReinhart GoebelРайнхард ГаубельРайнхард ГебельMusica Antiqua KölnCollegium Aureum + +837588Trevor PinnockTrevor David PinnockEnglish harpsichordist and conductor, born December 16, 1946, Canterbury, England. +In 1966 he was a co-founder with [a=Stephen Preston], flute and [a=Anthony Pleeth], cello, of the Galliard Harpsichord Trio. He toured with and played harpsichord on two recordings by [a=The Academy of St. Martin-in-the-Fields]. +In 1973, Pinnock expanded the trio and thereby founded [a=The English Concert], an ensemble devoted to the performance of music of the 17th and 18th centuries on original instruments. After 30 years as artistic director, Pinnock stepped down in 2003. +In 1989 he founded the Classical Band of New York, which he led in performances of the Classical repertoire from Haydn to Mendelssohn on period instruments until resigning in 1990.Needs Votehttps://en.wikipedia.org/wiki/Trevor_Pinnockhttps://www.trevorpinnock.com/https://www.bach-cantatas.com/Bio/Pinnock-Trevor.htmPinnockT. PinnockТревор Пиннокトレヴァー・ピノックピノックEuropean Brandenburg EnsembleThe English Concert + +837600Gyorgy CziffraCziffra GyörgyHungarian virtuoso pianist. b. November 5, 1921 – January 17, 1994. He was born in Budapest. By the age of five, he was improvising popular show tunes in bars and circuses. He studied at the Franz Liszt Academy, and eventually staged sensational concerts around the world. He always performed with a large leather wristband, as a memento of his years in labour. Cziffra also made a famous transcription of [a=Nikolai Rimsky-Korsakov]'s Flight Of The Bumblebee, written in interlocking octaves. + +In the studio, Cziffra is most known for his dazzling recordings of [a=Franz Liszt]'s virtuoso works. He also recorded many of [a=Frédéric Chopin]'s compositions and those of [a=Robert Schumann]. + +Cziffra died in Senlis, France, 72 years old, from a heart attack resulting from series of complications from lung cancer due to smoking and alcohol. His wife, Soleilka, is of Egyptian origin. His father is György Cziffra Sr., a cimbalom player who played in cabaret halls and restaurants in Paris in the 1910s. His son, György Cziffra, Jr. (died 1981 by setting fire to his own Paris apartment) was a brilliant pianist but chose to be a conductor instead. Cziffra was so affected by his son's death that from that day on he never performed or recorded with an orchestra again. +Correcthttp://en.wikipedia.org/wiki/Georges_Cziffrahttp://pagesperso-orange.fr/fondation.cziffra/Ciffra GyőrgyCziffraCziffra GyörgyG. CziffraGeorg CziffraGeorge CziffraGeorges CiffraGeorges CziffraGeorgy CziffraGeörgy CziffraGy. CziffraGyorges CziffraGyörgy CziffraGyőrgy CiffraGyőrgy CziffraГ.ЦиффраДьердь ЦиффраДьёрдь Циффраジョルジュ・シフラジョルジ・シフラ + +837613Thomas KakuskaClassical violinist and violist, born August 25, 1940 in Vienna, Austria and died July 4, 2005 in Vienna, Austria. Member of the [a=Alban Berg Quartett] from 1981 to 2005Needs Votehttps://en.wikipedia.org/wiki/Thomas_KakuskaKakuskaT. KakuskaWiener SymphonikerAlban Berg QuartettTonkünstler OrchestraEnsemble Eduard MelkusDas Europäische StreichquartettDie Wiener SolistenMitglieder Des Alban Berg Quartett + +837614Valentin ErbenValentin Erben (born 1945 in Pernitz, Austria) is an classical cellist and teacher. Member of the [a=Alban Berg Quartett] from 1970 to 2008 and Professor of Violoncello at the [l1209200] from 1970 to 2013.Needs Votehttp://www.valentin-erben.at/https://en.wikipedia.org/wiki/Valentin_ErbenErbenAlban Berg QuartettLucerne Festival OrchestraMitglieder Des Alban Berg Quartett + +837615Alban Berg QuartettAustrian string quartet, founded in 1970 and disbanded in 2008.Correcthttp://en.wikipedia.org/wiki/Alban_Berg_QuartetABQAlban Berg QuartetAlban Berg Quartett, WienAlban Berg QuartetteAlban Quartet PrestoAlban-Berg QuartettAlban-Berg-QuartettAlban-Berg-QuintettAlben Berg QuartetDas Alban Berg QuartettLe Quatuor Alban BergMembers Of The Alban Berg QuartettMitglieder Des / Members Of The Alban Berg QuartettMitglieder Des Alban Berg QuartettQuatuor Alban BergW. A. Mozartアルバン・ベルク四重奏団Thomas KakuskaValentin ErbenHatto BeyerleGerhard Schulz (2)Günter PichlerKlaus MaetzlIsabel Charisius + +837617Hatto BeyerleGerman classical violist, born 20 June 1933 in Frankfurt, Germany; died 16 October 2023. He was a member of the [a=Alban Berg Quartett] from 1970 to 1981.Needs Votehttps://en.wikipedia.org/wiki/Hatto_Beyerlehttps://de.wikipedia.org/wiki/Hatto_BeyerleHatto BayerleAlban Berg QuartettWiener KammerensembleDie Wiener Solisten + +837618Gerhard Schulz (2)Classical violinist, bon 23 September 1951 in Linz, Austria. +Member of the [a=Alban Berg Quartett] from 1978 to 2008. +Brother of [a=Wolfgang Schulz (3)].Needs Votehttps://en.wikipedia.org/wiki/Gerhard_Schulz_(musician)GerhardAlban Berg QuartettSchulz-Ensemble + +837636Ray StillRay Still (March 12, 1920 – March 12, 2014) was an American classical oboist. He was the principal (first) oboe of the Chicago Symphony Orchestra for 40 years, from 1953–1993.Needs Votehttps://en.wikipedia.org/wiki/Ray_StillRaymond Still OboeStillThomas R. StillChicago Symphony Orchestra + +837656John NobleBritish baritone / bass vocalist, born 2 January 1931 in Southampton, England, UK and died 21 March 2008.Needs Votehttps://en.wikipedia.org/wiki/John_Noble_(baritone)https://www.bach-cantatas.com/Bio/Noble-John.htmhttps://www.theguardian.com/music/2008/jun/21/classicalmusicandopera.obituariesNobleДжон Ноблジョン・ノーブルThe Ambrosian Singers + +837661Helen WattsHelen Josephine WattsBorn: 7th December 1927 Milford Haven, Pembrokeshire, Wales +Died: 7th October 2009 ibid. +Welsh contraltoNeeds Votehttp://www.bach-cantatas.com/Bio/Watts-Helen.htmH. WattsHelen WatssHellen WattsMme WattsWattsХелен Уоттсヘレン・ワッツ + +837673Pablo SorozábalPablo Sorozábal MariezcurrenaSpanish composer and conductor, born 18 September 1897 in San Sebastian (Basque Country) and died 26 December 1988 in Madrid.Needs Votehttps://adp.library.ucsb.edu/names/344647Maestro SorozábalMtro. Pablo SorozábalP. S. AbalP. S. MariezcurrenaP. SolozabalP. SolozábalP. SolzabalP. SorazábalP. SorozabalP. SorozabelP. SorozábalP. SovozabalP.S. AbaP.SorosobalPablo Solozabal MariezkurrenaPablo SolozábalPablo Solozábal MariezcurrenaPablo SorozabalPablo SorozapalPablo Sorozábal MariezcurrenaP・ソルザバルRablo SorozabalSolozabalSolozabal, P.SorozabalSorozaballSorozabelSorozsbalSorozábalSorozábal, P.SotozabalZorosabalソロサーバルBanda Sinfónica Municipal de Madrid + +837674Orchestra Del Teatro Dell'Opera Di RomaThe orchestra of the Rome Opera House, founded in 1880 as a part of Teatro Costanzi (Costanzi Theater). In 1928 the theater was renamed to [l=Teatro Dell'Opera Di Roma] (The Royal Opera House of Rome). With the fall of the monarchy the opera got its current name in 1946. + +The associated chorus is here - [a2129819]Needs Votehttp://www.operaroma.it/complessi_artistici/orchestraA Római Operahás ZenekaraA Római Operaház ZenekaraChor Und Orchester Der Oper RomChor Und Orchester Des Opernhauses RomChorus and Orchestra of the Opera House, RomeCoro e Orchestra del Teatro dell’Opera di RomaCôro E Orquestra Da Ópera De RomaDas Orchester Der Oper RomDas Orchester der Oper RomDel Teatro Dell Opera di RomaDer Römischen OperGrande Orchestra D'Opera ItalianaL'Orchestra Del Teatro Dell'Opera Di RomaL'orchestreL'orchestre De L'opéra De RomeMembers Of The Orchestra Del Teatro Dell'Opera Di RomaMembers Of The Rome OperaMembers Of The Rome Opera OrchestraOper RomOpera Di RomaOpera House Orchestra, RomeOpera House, RomeOpera Orchestra Of RomeOpera Orkest van RomeOpera-orkest van RomeOpéra de RomeOrch.Orch. Del Teatro Dell'Opera - RomaOrch. Del Teatro Dell'Opera Di RomaOrch. Del Teatro Dell'Opera, RomaOrch. Dell'Opera Di RomaOrch. Der Oper RomOrch. Of Teatro Dell'Opera - RomaOrch. Of The Opera House, RomeOrch. Opera RomaOrch. Teatro OperaOrch. Teatro Opera RomaOrch. Teatro Opera di RomaOrch. Teatro dell'Opera di RomaOrchesterOrchester Dell'Opera NeapelOrchester Der Der Römischen OperOrchester Der Grossen Oper RomOrchester Der Grossen Oper, RomOrchester Der Oper In RomOrchester Der Oper RomOrchester Der Oper, RomOrchester Der Opera, RomOrchester Der Römischen OperOrchester Des Opernhauses RomOrchester Des Opernhauses, RomOrchester Des Römischen OpernhausesOrchester Des Tatro Dell' Opera, RomOrchester Des Teatro Dell' Opera, RomOrchester Des Teatro Dell'Opera Di RomaOrchester der Oper RomOrchester der Opera, RomOrchester der Romische OperOrchester der Römischen OperOrchester des Opernhauses RomOrchester des Opernhauses Rom*Orchestr Římské OperyOrchestraOrchestra Of The Opera House, RomeOrchestra "Teatro Opera Roma"Orchestra "Teatro Reale Dell'Opera" - RomaOrchestra & Chorus of the Opera House RomeOrchestra & Coro Del Teatro Dell'Opera Di RomaOrchestra And Chorus Of The Opera House RomeOrchestra And Chorus Of The Opera House, RomeOrchestra And Chorus Of The Rome Opera HouseOrchestra And Chorus Teatro Dell'Opera, RomeOrchestra Del ''Teatro Reale Dell' Opera'' - RomaOrchestra Del Opera Di RomaOrchestra Del Teatro Dell' Opera Di RomaOrchestra Del Teatro Dell'OperaOrchestra Del Teatro Dell'Opera RomaOrchestra Del Teatro Dell'Opera di RomaOrchestra Del Teatro Dell'Opera, RomaOrchestra Del Teatro Dell'Opera-RomaOrchestra Del Teatro Reale Dell'OperaOrchestra Del Teatro Reale Dell'Opera - RomaOrchestra Del Teatro Reale Dell'Opera Di RomaOrchestra Del Teatro Reale Dell'Opera, RomeOrchestra Del Teatro Reale Dell’OperaOrchestra Dell Opera Di RomaOrchestra Dell'Opera Di RomaOrchestra Dell'Opera Lirica Di RomaOrchestra Dell'Opera di RomaOrchestra Dell'opera Di RomaOrchestra Della Cassa Di Opera RomanaOrchestra EOrchestra E Coro Del Teatro Dell'Opera Di RomaOrchestra E Coro Del Tetro Dell'Opera Di RomaOrchestra Of RomeOrchestra Of Rome OperaOrchestra Of Rome Opera HouseOrchestra Of Teatro Dell'Opera Di RomaOrchestra Of Teatro Dell'Opera, RomaOrchestra Of The 'Teatro Dell Opera A Roma'Orchestra Of The 'Teatro dell 'Opera A Roma'Orchestra Of The Opera At RomeOrchestra Of The Opera Di RomaOrchestra Of The Opera House Of RomeOrchestra Of The Opera House RomeOrchestra Of The Opera House, RomaOrchestra Of The Opera House, RomeOrchestra Of The Opera House, Rome*Orchestra Of The Opera House,RomeOrchestra Of The Opera ItalianaOrchestra Of The Rome OperaOrchestra Of The Rome Opera HouseOrchestra Of The Rome Opera House, RomeOrchestra Of The Rome Opera TheatreOrchestra Of The Rome SymphonyOrchestra Of The Royal Opera House RomeOrchestra Of The Royal Opera House, RomaOrchestra Of The Royal Opera House, RomeOrchestra Of The Royal Opera House, Rome,Orchestra Of The Royal Opera Theatre, RomeOrchestra Of The Teatro Dell 'Opera Di RomaOrchestra Of The Teatro Dell 'Opera di RomaOrchestra Of The Teatro Dell' Opera di RomaOrchestra Of The Teatro Dell'Opera Di RomaOrchestra Of The Teatro Dell'Opera RomeOrchestra Of The Teatro Dell'Opera di RomaOrchestra Of The Teatro Dell’Opera di RomaOrchestra Of The Teatro dell'Opera, RomeOrchestra Of Tthe Opera House, RomeOrchestra Of the Rome Opera HouseOrchestra Opera Di RomaOrchestra Sel Teatro Dell' Opera Di RomaOrchestra SinfonicaOrchestra Sinfonica Dell'Opera Lirica Di RomaOrchestra Sinfonica Di RomaOrchestra Sinfonica Of The Rome OperaOrchestra Sinfonica Of the Rome OperaOrchestra Teatro Dell' Opera Di RomaOrchestra Teatro Dell'Opera Di RomaOrchestra del "Teatro Reale dell' Opera"Orchestra del Teatro dell'Opera di RomaOrchestra del Teatro dell'Opera, RomaOrchestra dell'Opera Di RomaOrchestra dell'Opera di RomaOrchestra der Romischen OperOrchestra e Coro del Teatro dell'Opera di RomaOrchestra of the Opera House RomeOrchestra of the Opera House, RomeOrchestra of the Rome OperaOrchestra of the Teatro Dell'Opera Di RomaOrchestra of the Teatro dell'Opera di RomaOrchestra of the opera house, RomeOrchestra, RomeOrchestreOrchestre De L'Opera De RomeOrchestre De L'Opéra De RomeOrchestre De L'Opéra ItalienOrchestre De L'opéra De RomeOrchestre De l'Opéra De RomeOrchestre Del Teatro Dell'Opera Di RomaOrchestre Du Teatro Dell'Opera Di RomaOrchestre Du Théatre De L'Opéra De RomeOrchestre Du Théatre de L'Opéra de RomeOrchestre Du Théâtre De L'Opéra De RomeOrchestre Et Choeurs De L'Opera De RomeOrchestre de L'Opéra de RomeOrchestre de L'opéra de RomeOrchestre de l'Opéra de RomeOrchestre del "Teatro Reale dell' Opera"Orchestre du Teatro dell’Opera di RomaOrchestre of the Opera House, RomeOrchestreDe L'Opéra De RomeOrchestrer Der Römischen OperOrkast Van de Opera Te RomeOrkest Van De Opera In RomeOrkest Van De Opera Te RomeOrkest van de Opera RomeOrkestarOrkestar Lyric OpereOrkestar Rimske OperaOrkestar Rimske OpereOrkestar Rimske opereOrkesterOrq. de la Opera de RomaOrquestaOrquesta De La Opera De RomaOrquesta De La Opera de RomaOrquesta De La Ópera De RomaOrquesta De Opera De RomaOrquesta Del Teatro De La Opera De RomaOrquesta Del Teatro De La Opera Di RomaOrquesta Del Teatro De La Opera, De RomaOrquesta Del Teatro De La Ópera De RomaOrquesta Del Teatro Dell'Opera Di RomaOrquesta Del Teatro de la Opera de RomaOrquesta YOrquesta de la Ópera de RomaOrquesta del Teatro Real de la Ópera de RomaOrquesta del Teatro de la Ópera de RomaOrquestraOrquestra Da Opera De RomaOrquestra Da Opera Dr RomaOrquestra Da Ópera De RomaOrquestra De Ópera Real De RomaOrquestra Del Teatro De La Opera De RomaOrquestra e Coro do "Teatro dell'Opera" RomaOrquestra e Côro Da Ópera de RomaOruestaProff. D'Orch. Del Teatro Dell'Opera Di RomaRoma Opera House OrchestraRoma Opera OrchestraRoma Operas OrkesterRomeRome Lyric Opera OrchestraRome OperaRome Opera Chorus And OrchestraRome Opera HouseRome Opera House Chorus & OrchestraRome Opera House Chorus And OrchestraRome Opera House OperaRome Opera House Orch.Rome Opera House OrchesteaRome Opera House OrchestraRome Opera House Orchestra And ChorusRome Opera House Orchestra and ChorusRome Opera Orch.Rome Opera OrchesrtaRome Opera OrchestraRome Opera Orchestra, TheRome Opera Theater OrchestraRome Opera Theatre OrchestraRome Opera houseRome Operahouse OrchestraRomoperans OrkesterRoms OperaorkesterRooman Filharmoninen OrkesteriRooman Oopperan OrkesteriRoyal Opera HouseRoyal Opera Orchestra, RomeRoyal Rome OperaRoyal Rome Opera HouseTeatro Dell' Opera Di RomaTeatro Dell'OperaTeatro Dell'Opera Di Roma OrchestraTeatro Dell'Opera Oi RomaTeatro Reale Del OperaThe OrchestraThe Orchestra Of The Opera House, RomeThe Orchestra Of The Rome OperaThe Rome Opera House OrchestraThe Rome Opera House Orchestra And ChorusThe Rome Opera OrchestraThe Rome Opera Orchestra`Орк-р Римского Оперного ТеатраОрк. На Римската ОпераОркестр Римской Оперыローマ国立歌劇場管弦楽団ローマ国立歌劇場管弦楽団&合唱団Luigi SilvaGiovanni VigliarAndrea NoferiniGeorge KiszelyEmanuele AntoniucciDomenico PieriniRichard Wheeler (4) + +837701Mark RowlinsonMark Rowlinson is one of Britain’s most experienced bass-baritones, and a much travelled one, having sung in every continent apart from Africa and Antarctica. He has been a soloist in the Henry Wood Proms, at such major concert halls as the Royal Festival Hall, Bridgewater Hall, Concertgebouw, Cité de la Musique and in venues as diverse as the Deutsche Oper, the Alhambra in Granada, Beijing Opera House, King’s College, Cambridge, and the Palacio de Bellas Artes in Mexico.Needs VoteElectronic Vocal Quartet + +837702Susan BullockEnglish soprano, born 9 December 1958 in Cheshire.Needs Votehttps://en.wikipedia.org/wiki/Susan_Bullockhttps://www.harrisonparrott.com/artists/susan-bullockhttps://www.ram.ac.uk/people/susan-bullockСьюзан БуллокThe Ambrosian SingersEnglish Harmony Choir + +837706Yan Pascal TortelierYan Pascal TortelierFrench conductor and violinist, born April 19, 1947 in Paris, France. +Son of [a=Paul Tortelier] and [a1733573] and brother of [a1264904].Needs Votehttps://en.wikipedia.org/wiki/Yan_Pascal_TortelierJan Pascal TortelierJan Pascal-TortelierJan-Pascal TortelierJean Pascal TortelierPascal TortelierTortelierY P TortelierY-P TortelierYan PascalYan-Pacal TortelierYan-Pascal -TortelierYan-Pascal TortelierYann-Pascal TortelierLa Grande Ecurié Et La Chambre Du Roy + +837721Hubert MachnikComposer and guitarist.Correcthttp://www.hmach.com/Ensemble ModernChristoph Reimann Trio + +837875Jordi SavallJordi Savall i BernadetSpanish viol player, conductor, composer, and educator. Born in 1941 in Igualada, Catalonia. +As performer and conductor, he's mostly devoted to Medieval, Renaissance and Baroque music. +He's the founder of many ensembles: +- Period instruments ensemble [a1356055], in 1974 (which became [a970748] in 2001), devoted to early and Baroque music (10th to 18th centuries). +- Medieval-inspired vocal ensemble [a858468], in 1987 +- Period instruments ensemble [a=Le Concert des Nations] in 1989, especialized in music from Baroque to Romanticism (roughly 1600-1850). +Since 1998 he releases his recordings under his own label, [l=Alia Vox]. +He was married to [a=Montserrat Figueras] from 1968 to her death in 2011. They had a daughter, [a=Arianna Savall], and a son, [a=Ferran Savall]. In 2017, he married the Spanish philosopher [a=Maria Bartels].Needs Votehttps://www.alia-vox.com/en/artists/jordi-savall/https://www.facebook.com/JordiSavallOfficialPage/https://en.wikipedia.org/wiki/Jordi_SavallJ. SavallJordi SavalJorge SavallSavallLa Capella Reial De CatalunyaLe Concert Des nationsLa Petite BandeHespèrion XXIHespèrion XXRicercare-Ensemble Für Alte Musik, Zürich + +837877Montserrat FiguerasMontserrat Figueras i GarciaSpanish soprano singer, who specialized in early music. born March 15, 1942 in Barcelona, Catalonia, Spain, died November 23, 2011 in Cerdanyola del Vallès, Catalonia, Spain. She was married to the early musician and conductor [a=Jordi Savall], mother of [a=Arianna Savall] and [a=Ferran Savall]. +Needs Votehttps://www.alia-vox.com/https://en.wikipedia.org/wiki/Montserrat_FiguerasFiguerasM. FiguerasMontserrat SavallHesperion XXLa Capella Reial De CatalunyaHespèrion XXI + +837881Giuseppe TartiniGiuseppe TartiniItalian composer and violinist, born 8 April 1692 in Pirano (now in Slovenia), died 26 February 1770 in Padua, Italy. Needs Votehttps://en.wikipedia.org/wiki/Giuseppe_Tartinihttps://www.britannica.com/biography/Giuseppe-Tartinihttps://www.naxos.com/person/Giuseppe_Tartini/23872.htmhttps://www.treccani.it/enciclopedia/giuseppe-tartini/https://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/giuseppe-tartinihttps://aviolinslife.org/tartinilipinski/https://adp.library.ucsb.edu/names/102738D. TartiniG. TartiniG. タルティーニG.TartiniG.Tartini U.a.Giuseppa TartiniGuiseppe TartiniGuiuseppe TartiniJ. TartiniTarliniTartiniTartini A.Tartini G.TrartiniГ. ТартиниД. ТартиниД. ТартініДж. ТартиниДж.ТартиниДжузеппе ТартиниТартиниジュセッペ・タルティーニ + +837919Larry Douglas (2)Flugelhorn, Trumpet, Piano, Production - Blues,, Jazz - USANeeds VoteL. T. DouglasLarry "Straw" DouglasJohnny Otis And His OrchestraLarry Douglas AlltetLarry Douglas & Jorge Pineda Alltet + +838039Hans-Werner WätzigEast German classical oboistNeeds VoteH.-W. WätzigHans Werner WätzigW. WätzigWerner WätzigRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +838040Kammerorchester BerlinChamber orchestra founded in 1945, the first artistic director was [a624749]. Before the German reunification (1989) the orchestra resided in East Berlin (GDR). +Please do not mix up with the [a3635524] or the fictitious [a1596233]. For "members of" credits, please use [a=Mitglieder Des Kammerorchesters Berlin].Needs Votehttps://web.archive.org/web/20180616231444/http://www.kammerorchesterberlin.de/kammerorchester-berlinhttps://web.archive.org/web/20210615094557/https://www.predanvoigt.com/kammerorchesterberlin,Chamber Orchestra of Radio BerlinBerlin Chamber OrchestraBerlin Radio Chamber OrchestraBerliner Kammer-OrchesterBerliner KammerorchesterChamber Orchestra BerlinChamber Orchestra Of Radio BerlinChamber Orchestra Of The Berlin RadioChamber Orchestra of Radio BerlinChœurs Et Orchestre De Chambre BerlinDas Berliner KammerorchesterDas Kammerorchester BerlinKammerorchester BerliKammerorchester der Staatskapelle BerlinKammerorchestra BerlinMitglieder Des Kammerorchesters BerlinOrchesterOrchestraOrchestra Da Camera Della Radio Di BerlinoOrchestra Da Camera Di BerlinoOrchestra Da Camera di BerlinoOrchestra De Cameră Din BerlinOrchestra De Chambre De BerlinOrchestre De Chambre Bach De BerlinOrchestre De Chambre De BerlinOrchestre De Chambre De Radio BerlinOrchestre De Chambre De Radio-BerlinOrchestre de Chambre De Radio-BerlinOrchestre de Chambre de BerlinOrchestre de Chambre de Radio-BerlinOrquesta De Camara De BerlinOrquesta De Camara De Radio BerlínOrquesta De Cámara De BerlínOrquestra de Câmara de BerlimRadio Berlin Chamber OrchestraRundfunk-Kammerorchester BerlinThe Berlin Chamber OrchestraБерлинский Камерный ОркестрНовый Берлинский Камерный ОркестрНовый Берлинский камерный оркестрベルリン室内管弦楽団Gerhard StempnikWilly SchadeManfred BaierDietrich KnotheDieter ZahnPeter DammHelmut KochSaschko GawriloffJeffrey TateThekla WaldbaurEva KästnerSiegfried PankRobert KöblerHans-Werner WätzigWalter Heinz BernsteinStephan MaiKarl-Heinz PassinHans PischnerWerner TastRoland MünchWilli KrugJohannes Walter (2)Gustav SchmahlKarl SuskeSiegfried GizykiBurkhard GlaetznerWerner StolzeMatthias PfaenderWerner HauptSiegfried LehmannManfred ScherzerFranz WiteckiKurt ScharmacherFritz GräfeOtto PischkitlFritz KlingensteinUwe-Karl KraehnkeHartmut FriedrichHerbert Kraft-KuglerEberhard GrünenthalHerbert AuerbachHugo FrickeHorst Krause (2)Hans-Joachim KehrMarkus StrauchHelmut PietschJosef BittnerGerda Schimmel + +838100The New Princess OrchestraCorrectNew Princess Theater OrchestraNew Princess Theatre OrchestraThe New Princess Theater OrchestraThe New Princess Theatre Orchestra + +838231Paul DombrechtClassical oboist and conductor.Needs VoteDombrechtP. DombrechtPaul DombrechtsPol DombrechtLa Chapelle RoyaleThe Amsterdam Baroque OrchestraIl FondamentoEnsemble 415La Petite BandeOctophorosAmphion Ensemble + +838234Rudolf LeopoldAustrian classical cellist and professor for violoncello, born 1954 in Vienna, Austria.Needs VoteR. LéopoldRudolph Leopoldルドルフ・レオポルドConcentus Musicus WienFranz Schubert Quartet Of ViennaWiener StreichsextettEsterházy Trió + +838235Matthias Moosdorf[b]Matthias Moosdorf[/b] (b. 20 April 1965, Leipzig) is a German classical musician, cellist, music pedagogue, and far-right, ultranationalist politician with close ties to the infamous [i]AfD[/i] ("Alternative für Deutschland") party. In 2007, he co-founded [b][a=Trio Ecco (!)][/b] with his wife, Russian-German pianist [a=Olga Gollej], and clarinetist [a=Karl Leister]. Moosdorf graduated from Leipzig's [url=/label/1167199]University of Music and Theatre[/url] in 1991, trained under [a=Jürnjakob Timm], [a=Wolfgang Weber], and [a=Gerhard Bosse]. He is best known as a founding member of the [b][url=/artist/838239]Leipzig String Quartet[/url][/b], where he played for over 30 years, between 1988 and 2019; presumably, Matthias was fired due to his increasingly extremist political views. He was a principal cellist of the [b][url=/artist/522210]Leipzig Chamber Orchestra[/url][/b] (1991–2001) and a member of [b][a=Trio Ex Aequo][/b] (2006–2014). Moosdorf plays a 1697 [i][a=Andrea Guarneri][/i] violoncello. + +He joined the notorious "Alternative for Germany" in September 2016, rising rapidly to the highest ranks. Matthias contributed to the Party leader's official blog and served as an AfD advisor in the Saxon state parliament. In March 2017, [i]Neue Musikzeitung[/i] columnist [a=Arno Lücker] was among the first in the musical world to expose and condemn Moosdorf's "right-wing populist" antics. Since then, the artist has become extensively associated with the most radical, far-right [i]Der Flügel[/i] ("The Wing") faction within AfD. Moosdorf was the early signatory of the infamous [i]Erklärung 2018[/i] open letter against "illegal mass immigration" in Europe, and, according to [i][l=Die Zeit][/i] reporting in November 2018, spearheaded the Party's campaign against the Global Compact for Migration (GCM) initiative. + +In December 2019, [i]Slippedisc[/i] reporter [a=Norman Lebrecht] wrote that [b][url=/artist/522210]LSQ[/url][/b] fired Moosdorf and announced [a=Peter Bruns] as the Quartet's new cellist. In 2024, Matthias accepted a part-time Honorary Professorship at the [url=/label/2949584]Gnessin Russian Academy of Music[/url] in Moscow, indicating his support of [url=/artist/5755901]Vladimir Putin[/url]'s dictatorship.Needs Votehttps://en.wikipedia.org/wiki/Matthias_Moosdorfhttps://blogs.nmz.de/badblog/2017/03/12/rechtspopulismus-und-klassische-musik-iii-matthias-moosdorf-leipziger-streichquartett/https://www.deutschlandfunk.de/musiker-und-politik-rechtspopulismus-in-der-klassikszene-100.htmlhttps://slippedisc.com/2019/12/exclusive-string-quartet-drops-far-right-cellist/https://www.zeit.de/2018/49/migrationspakt-cdu-parteitag-frank-walter-steinmeier-louise-arbour/komplettansichtGewandhausorchester LeipzigLeipziger StreichquartettEnsemble AvantgardeTrio Ex AequoSolistengemeinschaft Der Berliner Bach AkademieTrio Ecco (!) + +838236Andreas SeidelClassical violinist.Needs VoteGewandhausorchester LeipzigLeipziger StreichquartettEnsemble AvantgardeSolistengemeinschaft Der Berliner Bach Akademie + +838237Ivo BauerIvo Bauer is a German classical violist.Needs VoteGewandhausorchester LeipzigLeipziger StreichquartettEnsemble AvantgardeSolistengemeinschaft Der Berliner Bach Akademie + +838240Christian OckertGerman contrabassist.CorrectGewandhausorchester Leipzig + +838241Tilman BüningTilman Büning (born 1968) is a German classical violinist.Needs VoteTilmann BuningGewandhausorchester LeipzigStaatskapelle DresdenLeipziger StreichquartettLucerne Festival OrchestraSolistengemeinschaft Der Berliner Bach Akademie + +838243Lovro Von MatacicLovro von MatačićCroatian conductor and composer (Sušak, 14 February 1899 – Zagreb, 4 January 1985).Needs Votehttp://en.wikipedia.org/wiki/Lovro_von_Mata%C4%8Di%C4%87https://adp.library.ucsb.edu/names/360435Generalmusikdirektor Lovro von MatacicL. V. MatačićL. V. MatačičL. Von MatacicL.V. MatačićLobro Von MatacicLorvo V. MatacicLovro MatačićLovro MatačičLovro Pl. MatačićLovro Van MatačičLovro Von MataciLovro Von MataćićLovro Von MataĉićLovro Von MatačicLovro Von MatačićLovro Von MatačičLovro pl. MatačićLovro von MatacicLovro von MatacićLovro von MatacičLovro von MatačicLovro von MatačićLovro von MatačičLovro von MaticMatacicMatacićMatačićVon MatacicЛ. МатачичЛ. МатачићЛ. Матачић = MatačićЛ. фон МатачичЛовро Матачић = Ловро МатачићЛовро Фон МатачичЛовро фон Матачичロブロ・フォン・マタチッチロプロ・フォン・マタチッチロヴロ・フォン・マタチッチStaatskapelle DresdenBeogradska Filharmonija + +838244Michael RabinAmerican violinist, born 2 May 1936 in New York City, New York and died 19 January 1972 in New York City, New York.Needs Votehttps://en.wikipedia.org/wiki/Michael_RabinM.RabinMichaël RabinRabin + +838280Imogen Seth-SmithClassical cellist and violist.Needs Votehttps://thesixteen.com/team/imogen-seth-smith/Imogen Seth SmithImogen SmithThe SixteenThe Academy Of Ancient MusicThe King's ConsortThe English Fantasy Consort of ViolsThe Apollo Consort + +838281Jill SamuelClassical violin player.Needs VoteThe Academy Of Ancient MusicHanover BandThe King's ConsortThe Orchestra Of St. John'sClassical OperaThe Mozartists + +838282Pauline SmithClassical violinist from the UK. + +For the flugelhorn/trumpet player, see [a=Pauline Smith (2)].Needs VoteThe SixteenLes Arts FlorissantsLa Simphonie Du MaraisLes Musiciens Du LouvreBrandenburg ConsortThe Symphony Of Harmony And InventionThe English Concert + +838283Judith EvansClassical double bassist.Needs Votehttps://aam.co.uk/judith-evans/Orchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicGabrieli PlayersHanover BandThe Chandos Baroque PlayersCapricorn (14)La Nuova Musica + +838284William ThorpClassical violin player from the UK.Needs VoteBill ThorpThorpWilliam ThorpeThe Scholars Baroque EnsembleThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicCollegium Musicum 90The King's ConsortThe Symphony Of Harmony And InventionThe Extempore String EnsembleClassical OperaThe English ConcertThe MozartistsThe Apollo Consort + +838285Nicola AkeroydClassical viola player.Needs VoteN. AkeroydNicky AckeroydNicky AkeroydNicola AckeroydNicola AckroydNicola AkroydThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90The King's ConsortThe Symphony Of Harmony And Invention + +838286Matthew BurmanFormer classical violinist, since festival artistic director.Needs VoteThe Academy Of Ancient Music + +838287Pierre JoubertClassical violin player.Needs VoteThe Academy Of Ancient MusicCollegium Musicum 90Hanover Band + +838288Rachel PodgerEnglish violinist specialising in the performance of baroque music; born May 1968 in England.Needs Votehttps://en.wikipedia.org/wiki/Rachel_Podgerhttps://www.bach-cantatas.com/Bio/Podger-Rachel.htmhttp://www.rachelpodger.com/PodgerR. PodgerRachel.New London ConsortThe Harp ConsortGabrieli PlayersPalladian EnsembleBrecon Baroque + +838289Susan SheppardBritish classical cellist.Needs VoteSheppardSue ShephardSue ShepherdSue SheppardSusan ShepherdThe SixteenLes Arts FlorissantsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersL'École D'OrphéeThe Symphony Of Harmony And InventionThe Richard Hickox OrchestraThe Thames Chamber Orchestra + +838290Joanna ParkerClassical violin playerNeeds VoteJo ParkerIcebreaker (5)The Academy Of Ancient MusicLondon Classical PlayersConcerto CaledoniaHanover BandOrchestra Of The Golden AgeThe Homemade Orchestra + +838291Rebecca LivermoreClassical violinist.Needs VoteThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentGabrieli PlayersThe King's ConsortDunedin Consort + +838380Mily BalakirevМилий Алексеевич БалакиревRussian composer, pianist, conductor, head of the "Могучая кучка" / "Mighty Handful" / "The Five" +Born: January 2, 1837 (December 21, 1836 O.S.), Nizhny Novgorod, Russian Empire +Died: May 29 (16 O.S.), 1910, Saint Petersburg, Russian Empire + +Best known for his nationalistic compositions and his support of and influence on other composers such as [a999914], [a=Alexander Borodin], [a=César Cui], [a=Modest Mussorgsky], and [a=Nikolai Rimsky-Korsakov]. + + +Needs Votehttps://en.wikipedia.org/wiki/Mily_Balakirevhttps://ru.wikipedia.org/wiki/Балакирев,_Милий_Алексеевичhttps://www.britannica.com/biography/Mily-Balakirevhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102048/Balakirev_Milii_AlekseevichBalakireffBalakirevBalakirev M.Balakirev, MilyBalakirewBalakirievK. BalakirievasM. BalakirevM. A. BalakireffM. A. BalakirevM. A. BalakirewM. BalakireffM. BalakirevM. BalakirevasM. BalakirewM. BalakiryevM. J. BalakirevM. БалакиревM.A. BalakirevM.A. BałakiriewM.BalakirevM.BalakirevasMili A. BalakirewMili Alekseyevich BalakirevMili Alexeevich BalakirevMili Alexei BalakirevMili Alexejewitsch BalakirewMili Alexeyevich BalakirevMili BalakireffMili BalakirevMili BalakirewMili BalakrevMili BałakiriewMilij Alexeevich BalakirevMilij Alexejevič BalakirevMilij Alexeyewitsch BalakirevMilij BalakireffMilij BalakirevMilij BalakirewMilij BalakirjevMiliy BalakirevMily A. BalakirevMily Alekseevich BalakirevMily Alekseyevich BalakirevMily Alekseyvich BalakirevMily Alexandrewitsch BalakirewMily Alexeievich BalakirevMily Alexeievitch BalakirevMily Alexejewitsch BalakirevMily Alexejewitsch BalakirewMily Alexeyevich BalakirevMily Alexeyevitch BalakirevMily BalakerevMily BalakirewMily BalikirevMily-Alexeyevitch BalakirevБалакиревМ. А. БалакиревМ. БалакиревМ. Балакирев = M. BalakirevМ. БалакириевМ. БалакириеваМ.А. БалакиревМ.БалакиревМилий Алексеевич БалакиревМилий Балакирев + +838381Ian Watson (3)Sound engineer at [l759019]Correcthttp://www.listenediting.com/Welcome.htmlhttps://www.linkedin.com/in/ian-watson-6313a520/ + +838401Anton ScharingerAustrian Bass & Baritone vocalist, born in 1961.Needs VoteScharinger + +838405Nahum TateIrish poet, hymnist and lyricist (Dublin, 1652 – 30 July 1715, London).Needs Votehttp://en.wikipedia.org/wiki/Nahum_Tatehttps://adp.library.ucsb.edu/names/101899Mr. Nahum TateN TateN. TateNaham TateNahum Tate & Nicholas Brady: New Version of the Psalms (1696)Natum TateTate + +838407Rachel YakarRachel YakarFrench soprano, born on March 3, 1938 in Lyon, France. Died June 24, 2023.Needs Votehttps://fr.wikipedia.org/wiki/Rachel_Yakarhttps://en.wikipedia.org/wiki/Rachel_Yakarhttps://www.imdb.com/name/nm0945004/R. YakarRachei YakarYakarLa Petite Bande + +838409Ann MurrayIrish Soprano vocalist, born 27 August 1949 in Dublin, Ireland. Was married to [a625651]. Mother of [a11455565].Needs Votehttp://en.wikipedia.org/wiki/Ann_MurrayA. MurrayAnne MurrayMurrayChorus Of St Martin In The Fields + +838431Henrik IbsenHenrik Johan IbsenBorn: March 20, 1838, Skien, Norway +Died: May 23, 1906, Christiania, Norway + +Norwegian dramatic and lyric poet. +Needs Votehttps://en.wikipedia.org/wiki/Henrik_Ibsenhttps://adp.library.ucsb.edu/names/322359G. IbsensH. IbsenH. IbsenasH. IbseniH. IbsensH. イプセンH.IbsenH.J. IbsenHenrik IsbenHenryk IbsenIbsenIsbenΊψενΕρρίκος ΊψενГ. ИбсенГ.Ибсен + +838432Per WingeNeeds Votehttps://adp.library.ucsb.edu/names/103009WingeBergen Filharmoniske Orkester + +838447The Hollywood Bowl Symphony Orchestra[b]Do not confuse with the [a=Hollywood Bowl Orchestra] (est. 1990).[/b] + +The Hollywood Bowl Symphony Orchestra was founded in 1945 by Leopold Stokowski. After two seasons, the orchestra was disbanded. Subsequently, summer orchestral concerts at the Hollywood Bowl were performed by the Los Angeles Philharmonic until 1990. + +On October 17, 1990, the management of the Los Angeles Philharmonic Association (LAPA) led by Ernest Fleischmann (LAPA Executive VP and Managing Director at the time) held a press conference announcing the formation of a second orchestra under its auspices, this time titled "[a=Hollywood Bowl Orchestra]". +Needs Votehttps://en.wikipedia.org/wiki/Hollywood_Bowl_OrchestraBrass Of The Hollywood Bowl Symphony OrchestraCarmen Dragon and The Hollywood Bowl Symphony OrchestraDas Hollywood Bowl Sinfonie OrchesterDas Hollywood Bowl Sinfonie-OrchesterHBOHollywood BowlHollywood Bowl Orch.Hollywood Bowl OrchestraHollywood Bowl Sinfonie OrchesterHollywood Bowl Sinfonie-OrchesterHollywood Bowl Sym. Orch.Hollywood Bowl Sym. OrchestraHollywood Bowl SymphonetteHollywood Bowl SymphonyHollywood Bowl Symphony OrchestraHollywood Bowl Symphony Orchestra*Hollywood Bowl Symphony StringsHollywood Bowl Symphony orchestraHollywood Symphony Bowl OrchestraL'orchestre Symphonique Du Hollywood BowlLa Orquesta Sinfonica Del Hollywood BowlLa Orquesta Sinfónica De Hollywood BowlLa Orquesta Sinfónica Del Hollywood BowlLa Orquesta Sinfónica Hollywood BowlLa Orquesta Sinfónica del Hollywood BowlLe Hollywood Bowl Symphony OrchestraOffenbachOrchestre Symphonique Du Hollywood BowlOrq. Sinfonica De Hollywood BowlOrquesta Simfónica Hollywood BowlOrquesta Sinfonica Del Hollywood BowlOrquesta Sinfónica CapitolOrquesta Sinfónica Del Hollywood BowlOrquesta Sinfónica Hollywood BowlOrquesta Sinfónica del Hollywood BowlThe Hollywood Bowl OrchestraThe Hollywood Bowl Symph. Orch.The Hollywood Bowl Symph. OrchestraThe Hollywood Bowl SymphonyThe Hollywood Bowl Symphony Orch.ハリウッド・ボウル交響楽団ハリウッド・ボール交響楽団Star Symphony OrchestraLeopold StokowskiArthur GleghornRobert MarstellerBrass Of The Hollywood Bowl Symphony Orchestra + +838649Serge CollotFrom wikipedia: +French viola player, born 1923 in Paris, France, and died at the age of 91 in Gerzat on 11 August 2015. + +Collot studied viola at the Conservatoire de Paris with [a=Maurice Vieux], chamber music with [a=Joseph Calvet], and composition with [a2972210] and [a=Arthur Honegger]. He won first prizes in viola (1944) and chamber music (1949). + +Collot was a member of the [a=Quatuor Parrenin], Radiodiffusion Française String Quartet, and the [a=Le Quatuor Bernède]. In 1960 he founded [a=Le Trio À Cordes Français] with violinist [a=Gérard Jarry] and cellist [a=Michel Tournus]. The ensemble performed together for 32 years. From 1957 to 1986 he was Principal Violist with the [a=Orchestre National De L'Opéra De Paris]. + +Collot served as Professor of Viola for twenty years (1969–1989) at the Conservatoire de Paris. An exponent of contemporary music, Collot performed in [a=Pierre Boulez]'s Domaine Musical concerts until 1970, and inspired many compositions for viola including Quatre Duos for viola and piano (1979) by [a=Betsy Jolas] and, in particular, the Sequenza VI for viola solo (1967) by [a=Luciano Berio]. Collot was made a Chevalier of the Légion d'honneur in 1989.Needs Votehttp://en.wikipedia.org/wiki/Serge_CollotM. CollotM. S.CollotS. CollotS. ColotSergé Collotセルジュ・ロコーQuatuor ParreninEnsemble Musique VivanteOrchestre De Chambre De ToulouseOrchestre National De L'Opéra De ParisOrchestre Du Domaine MusicalValois Instrumental EnsembleEnsemble Polyphonique De L'O.R.T.F.Le Quatuor BernèdeOrchestre de Chambre Fernand OubradousLe Trio À Cordes Français + +838839Michael WinfieldBritish Cor Anglais (English horn) and oboe player and teacher. Born 15 November 1930 in Swanick, Derbyshire, England - Died 8 September 2017 in Horsham, West Sussex, England. +He studied at the [url=https://www.discogs.com/label/459222-Royal-Northern-College-Of-Music]Royal Manchester College of Music[/url]. He joined the [a=Hallé Orchestra] on 13 August 1947 as Second Oboe, becoming its First Oboe in 1952. He joined the [a=London Symphony Orchestra] as Cor Anglais/Co-Principal Oboe on 1 June 1960. He left to join the [a=New Philharmonia Orchestra] on 1 June 1968. He became freelance in 1974. He taught at the [l290263].Needs Votehttps://music.apple.com/co/artist/michael-winfield/263330373?l=enhttps://www.howarth.uk.com/acrobat/Michael-Winfield.pdfhttps://lso.co.uk/more/news/748-obituary-michael-winfield-1930-2017.htmlhttps://www.legacy.com/obituaries/name/michael-winfield-obituary?pid=186719800&__cf_chl_captcha_tk__=c4e0d19a5a3595ef39ab4d5d08b2e6d74d22c141-1615633098-0-AfTNq9jl7aX6z5kHdlDM_fXyai4DQgGGIs0mL-InpGbwf4XGHzI6TcxhVjpVQPvd5lPKxHudxZncjsHoglx3ctxhNUXjZ9UF8IJNB_REPS-RLbBHhtEkD2EjGFfXSL0yeiiHemflVK6z9rsnWnbeTOfkqkYacvVSk6qSuRgnJY1I39qz4Opgbm580kzjJREl8YLQfDSY9V8BObUF-KMvdRiuI0W4fzzuCCShgHi5ph8-8AFjp3z0EAoOdW7eNzFAxO6w2oZ1QyoV_5gEMVMf7eddP0KhlqCZQItK8uIgxxNIsDfCUhw_PY4vUf4Ku-ck5LBDta-xqIbqSz2EZIUCzTrYYxjVcuklG7nR992Tq6eY4XMLTn64WqOl9cUIeuhzt7BxFfcftwapE9mg3g3pUg82rxMelMo-WIum2R2wXjoZF3hv44VOCoZ-VMR4bROBBdFst6J28t2xQULMJw2mmmtPlyrj-NfmR-i6O_k-RbIfv9gTEILSGtvic94fIrqLKgeDNdXa_wJzCf1gsQRMKcdAWIXZ-ZBEJT4c8XHAAwfkiUtH9jWddnwVPh85hTzoJ4zmxiyygVxf3QwJo7QLCw9WRRRoNzswH24iZ3gvzB5HIp3oZ4GzQESG3UW9KhWYybne4d7D1KG7GcihEcinkDu_FJZXXxyp3Tzn13T6UmyShttps://slippedisc.com/2017/09/mourning-for-a-revered-beatles-oboist/Michael WindfieldMichael Winfield, Cor Anglais SoloMichaël WinfieldMike WinfieldМайкл УинфилдLondon Symphony OrchestraRoyal Philharmonic OrchestraHallé OrchestraNew Philharmonia OrchestraLondon Wind OrchestraThe Wind Virtuosi Of England + +838950Hans-Ulrich BastinEngineer of classical recordings.CorrectHans Ulrich BastinHans-Ulrich BastienUlrich Bastin + +838951Sid McLauchlanSound engineer and recording producer for classical music.CorrectSid McLauchlan (Deutsche Grammophon)Sid McLaughlan + +838972George Guest (2)George Howell GuestOrganist and choirmaster (born 9 February 1924, Bangor, Wales - died 20 November 2002), leader of the Choir of St John's College, Cambridge, for four decades.Needs Votehttps://en.wikipedia.org/wiki/George_GuestDr. George GuestDr. George H. GuestG. GuestGeorge GuestGeorge Howell GuestGeorges GuestGoerge GuestGuestSt. John's College Choir + +838974Paula ChateauneufLute & theorbo player.Needs VoteChateauneufP.C.English Chamber OrchestraNew London ConsortThe Parley Of InstrumentsThe Academy Of Ancient MusicLe Concert Des nationsOrchestra Of The Age Of EnlightenmentGabrieli PlayersSinfonyeBrandenburg ConsortEnsemble CordariaSpectre De La RoseThe Avison EnsembleThe English Concert + +838975Ian PartridgeIan PartridgeEnglish tenor vocalist, born 12 June 1938 in Wimbeldon, England, UK. Brother of [a861952].Needs Votehttp://en.wikipedia.org/wiki/Ian_PartridgeIan PartrigeJan PartridgePartridgeЯн Партриджイアン・パートリッジThe SixteenThe Academy Of Ancient MusicWestminster Cathedral ChoirPro Cantione AntiquaThe Purcell Consort Of VoicesGolden Age SingersThe Baccholian Singers Of LondonYorkshire Bach Choir + +838984Sheila ArmstrongEnglish soprano, born 13 August 1942 in Ashington, Northumberland, England, UK.CorrectAmstrongArmstrongS. Armstrong + +839002Alda StuuropClassical violinist.Needs VoteAlda StuvropAldo StuuropStuuropLa Petite BandeLeonhardt-ConsortOrchestra Of The 18th CenturyConcerto AmsterdamAlma Musica AmsterdamQuartetto Esterházy + +839006Toyohiko Satoh佐藤豊彦Japanese lutenist and theorbist, born in 1943.Needs Vote佐藤 豊彦佐藤 豊彦Concentus Musicus WienSyntagma MusicumCapilla FlamencaAlma Musica AmsterdamKees Boeke ConsortSour CreamAlba Musica KyoLittle Consort + +839007Danny Bond (2)Classical bassoonist, born 1951 close to New Orleans.Needs VoteBondD. BondDaniel BondDanny BondThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLa Petite BandeOctophorosMusica AmphionChanticleer SinfoniaBach Collegium JapanOrchestra Of The 18th CenturyLe Concert FrançaisEnsemble PhilidorMusica PolyphonicaBaroque OrchestraFiori Musicali + +839009Bruce HaynesBruce Haynes (born April 14, 1942 - died May 17, 2011) was an American and Canadian classical oboist, recorder player, musicologist and specialist in historical performance practice.Needs Votehttp://en.wikipedia.org/wiki/Bruce_HaynesHaynesLa Petite BandePhilharmonia Baroque OrchestraOrchestra Of The 18th CenturyBrüggen ConsortBaroque OrchestraEnsemble Da Sonar + +839080Anna ReynoldsBritish mezzo-soprano and contralto opera singer. She was born 4 October 1931 in Canterbury, Kent, England, UK and died 24 February 2014 in Kasendorf, Germany.Needs Votehttp://www.bach-cantatas.com/Bio/Reynolds-Anna.htmA. ReynoldsAnna ReynoldsováReynoldsアンナ・レイノルズ + +839085London Symphony ChorusLondon Symphony ChorusBritish chorus based in London; associated with the [a=London Symphony Orchestra]. + +The London Symphony Chorus (abbreviated to LSC) is a large symphonic concert choir based in London, UK, consisting of over 150 amateur singers, and is one of the major symphony choruses of the United Kingdom. It was formed in 1966 as the LSO Chorus to complement the work of the London Symphony Orchestra (LSO). The LSC is today an independent self-run organization governed by a council of nine elected representatives. It continues to maintain a close association with the LSO but also takes part in projects with other orchestras and organizations both in the UK and abroad. The LSC performs mainly with the LSO at the Barbican Centre in London as well as appearing at other concert venues around the UK and Europe and regularly at the Avery Fisher Hall, New York. The Chorus's discography consists of over 140 recordings, and many of these recordings feature collaborations with the London Symphony Orchestra. + +c/o Bishopsgate Institute +230 Bishopsgate, LONDON EC2M 4QHNeeds Votehttps://lsc.org.uk/https://en.wikipedia.org/wiki/London_Symphony_ChorusChoeurChoeur De L'Orchestre Symphonique De LondresChoeur De l'Orchestre Symphonique De LondresChoeur Symphonique De LondresChoeur de l'Orchestre Symphonique De LondresChoeursChoeurs De LondresChoeurs De l'Orchestre Symphonique De LondresChoirChorChor Des London Symphony OrchestraChor Des Londoner Symphony OrchestersChorusChorus & SoloistsChorus Of The London Symphony OrchestraChöre Des London Symphony OrchestraChœurChœur Symphonique De LondresChœur de l'Oorchesyre Symphonique de LondresChœursChœurs De L'Orchestre Symphonique De LondresChœurs Du L.S.O.Chœurs de LondresCoroCoro Da Orquestra Sinfônica De LondresCoro De La Orquesta Sinfónica De LondresCoro De La Orquesta Sinfónica de LondresCoro Del Orquesta Sinfonica De LondresCoro Della London Symphony OrchestraCoro London SymphonyCoro Sinfonica de LondresCoro Sinfónica De LondresCoro Sinfónico De LondresCoro de la Orquesta Sinfónica de LondresCorosCoros Sinfónica De LondresCoros de la Orquesta Sinfónica de LondresDer Chor Des Londoner Symphonie-OrchestersGentlemen Of The London Symphony ChorusL. S. O. ChorusL.S.O ChorusL.S.O. ChorusLSCLSO ChorusLadies Of The London Symphony ChorusLondon Symphony Orchestra ChorusLondon S.O. ChorusLondon Symphony ChoirLondon Symphony ChorLondon Symphony Chorus (Men's Voices)London Symphony CoroLondon Symphony KoorLondon Symphony Orcherstra ChorusLondon Symphony Orchestra And ChorusLondon Symphony Orchestra ChorLondon Symphony Orchestra ChorusLondon Symphony Orchestra Chorus, TheLondoner Sinfonie ChorLondoner Sinfonie-ChorLondoner Sinfonie-OrchesterLondoner Symphonie ChorLondoner Symphonie-ChorMembers Of London Symphony ChorusMembers of the London Symphony ChorusSinfónica De LondresSingersSymphony Orchestra ChorusThe ChorusThe Chorus Of The London SymphonyThe Chorus Of The London Symphony OrchestraThe L.S.O. ChorusThe LSO ChorusThe London Symphony ChoirThe London Symphony ChorusThe London Symphony OrchestraThe London Symphony Orchestra ChorusThe London Symphony Orchestra-ChoirchoirЛондонски Симфоничен ХорЛондонский Симфонический ХорХор Лондонского Симфонического Оркестраロンドン・シンフォニー・コーラスロンドン交響合唱団ロンドン交響楽団ロンドン交響楽団合唱団The Ladies Of The London Symphony ChorusJames WarbisRobert Ward (9)Luca KocsmarszkyChris Riley (6)Joaquim BadiaAlex KidneyAndrew Fuller (5)Claire HusseyDamian DayYoko HaradaSimon GoldmanGina BroderickPeter SedgwickLinda Evans (4)Paul AllattSusannah PriedeAlastair MathewsMatt FernandoLis SmithVanessa KnappLiz ReeveMaggie OwenCarole RadfordAoife McInerneyRichard Street (2)Kuan HonGavin BuchanMalcolm Taylor (5)Andy Chan (2)Lucy FeldmanOwen HanmerAmanda FreshwaterJohn Graham (23)Jane MorleyThomas FeaJo Buchan (2)Mikiko RiddAlan RochfordRobert GarbolinskiMaggie DonnellyDavid AldredElisabeth IlesAlison RyanEuchar GravinaCarol CapperDeborah StauntonDenise HoiletteGill O'NeillIsobel HammondJasmine SpencerJoanna Gueritz (3)Laura Catala-UbassyLizzie Webb (2)Marylyn LewinGilly LawsonHelen Palmer (5)Jane Muir (3)Jill Jones (7)Kate Harrison (7)Linda Thomas (9)Lynn EatonRachel Green (8)Bryan HammersleyDan GosselinDaniel Thompson (18)Gordon Thompson (5)Josué Garcia (2)Peter Kellett (2)Richard Tannenbaum (2)Robin Thurston (2)Rocky HirstSimon Backhouse (2)Steve ChevisColin Dunn (3)Davide PrezziErik AzzopardiJoaquim Badia (2)Jude LenierMichael Delany (3)Michael HarmanOliver BurrowsPatrizio GiovannottiPhilipp BoeingSimon Wales + +839089Donald HuntBritish choral conductor and organist, born in Gloucester on July 26, 1930. Died August 4, 2018Needs Votehttps://en.wikipedia.org/wiki/Donald_Hunt_(musician)D. HuntDr Donald HuntDr. Donald HuntDr. Donald Hunt, OBEHuntEnglish Chamber OrchestraThe Donald Hunt Singers + +839231John Ware (3)Trumpet and cornet player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York PhilharmonicNew York Brass Ensemble + +839233John CoriglianoJohn Paul CoriglianoJohn Corigliano is an American composer (classical music), and music teacher. + +Born February 16, 1938 in New York City, New York, USA. + +Son of violinist [a=John Corigliano (2)].Needs Votehttps://en.wikipedia.org/wiki/John_Coriglianohttps://www.britannica.com/biography/John-Coriglianohttps://www.johncorigliano.com/https://www.kennedy-center.org/artists/c/co-cz/john-corigliano/https://web.archive.org/web/20031006091421/https://www.sonyclassical.com/artists/corigliano/https://www.imdb.com/name/nm0179858/CoriglianoJ. CoriglianoJohn Corigliano Jr.John Corigliano, Jr.Дж. Корильяноジョン・コリリャーノ + +839239Raymond SabinskyViolist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteRay Sabinskyレイモンド・ザビンスキーNew York Philharmonic + +839412Christoph EschenbachChristoph Eschenbach [born 20 February 1940 in Breslau, German Empire (now Wrocław, Poland)] is a German pianist and conductor [chief conductor of [a8551878] (1982–1986), of [a3206905] from 2004]Needs Votehttps://christopheschenbach.com/https://en.wikipedia.org/wiki/Christoph_EschenbachC. EschenbachChr. EschenbachChristopf EschenbachChristoph EschembachChristopher EschenbachEschenbachК. ЭшенбахКристоф Эшенбахクリストフ・エッシェンバッハクリスト・エッシェンバッハThe Philadelphia OrchestraOrchestre De ParisHouston Symphony OrchestraNational Symphony OrchestraKonzerthausorchester BerlinNDR SinfonieorchesterOrchester Des Schleswig-Holstein Musik FestivalsTonhalle-Orchester Zürich + +839498Bernard GarfieldBernard Howard GarfieldBernard Garfield (May 27, 1924 – April 29, 2025) was an American classical bassoonist. + +Worked with "New York Woodwind Quintet" (1946-1957), "Little Orchestra Society Of New York", "New York Ballet Orchestra", Philadelphia Woodwind Quintet.Needs Votehttps://en.wikipedia.org/wiki/Bernard_Garfieldhttps://musicbrainz.org/artist/d3c80004-8ba4-435e-843e-225ed028253eB. GarfieldBernard H. GarfieldThe Philadelphia OrchestraPhiladelphia Woodwind QuintetNew York City Ballet OrchestraNew York Woodwind Quintet + +839500Carlton CooleyCarlton Samuel CooleyAmerican viola player, born 15 April 1898 in Milford, New Jersey and died November 1981 in Stockton, New Jersey.Needs VoteCarleton CooleyCooleyThe Philadelphia OrchestraNBC Symphony OrchestraThe Cleveland OrchestraAlexander Schneider String Ensemble + +839504Anthony GigliottiAmerican clarinetist and music teacher, born 13 May 1922, died 3 December 2001. He was the father of [a2266385].CorrectA. GigliottiA.M. GigliottiAnthony GigliuttiAnthony M. GigliottiThe Philadelphia OrchestraPhiladelphia Woodwind Quintet + +839505William SteckVern William SteckAmerican violinist, born 18 February 1934 in Powell, Wyoming and died 13 April 2013 in Alexandria, Virginia.CorrectThe Cleveland OrchestraNational Symphony Orchestra + +839507John De LancieAmerican musician and educator, July 26, 1921 - May 17, 2002, he was principal oboist of the Philadelphia Orchestra, taught at Curtis Institute of Music, and served as its director from 1977 to 1985. + +His son is the actor [a2428092]. +Correcthttp://en.wikipedia.org/wiki/John_de_Lancie_%28oboist%29J. De LancieJ. De lancieJ. de LancieJohn D' LancieJohn DeLancieJohn de LancieJohn deLancieThe Philadelphia OrchestraPhiladelphia Woodwind Quintet + +839508Murray PanitzMurray W. PanitzAmerican flute player, born in 30 August 1925 in New York, New York and died 13 April 1989 in Philadelphia, Pennsylvania.Needs VoteMurray W. PanitzThe Philadelphia OrchestraNew Art Wind Quintet + +839510Mason Jones (2)Frederick Mason JonesAmerican classical horn player, born 1919 in Hamilton, New York and died in February 2009.Needs Votehttps://en.wikipedia.org/wiki/Mason_JonesJonesM. JonesMason Jones, HornМейсон Джоунзメイソン・ジョーンThe Philadelphia OrchestraPhiladelphia Woodwind QuintetPhiladelphia Brass EnsembleThe Torchy Jones Brass Quintet + +839640Wilhelm FurtwänglerGustav Heinrich Ernst Martin Wilhelm FurtwänglerGerman conductor and composer. +Born January 25, 1886 in Berlin, German Empire. Died November 30, 1954 in Baden-Baden, Germany. +Furtwängler is widely regarded as one of the greatest conductors of the 20th century. +He started as titular conductor of [a260744] at the age of 26 from 1922 to 1945, and a second period after second world war since 1952 until he died in 1954. +Also was Kapellmeister of [a522210] from 1922 to 1928 and titular conductor of [a754974] from 1927 to 1930. +He died only three months after his legendary Beethoven performance at the [l1555795] on 22 August 1954 ([m=1059398]).Needs Votehttps://furtwangler.fr/en/https://en.wikipedia.org/wiki/Wilhelm_Furtw%C3%A4nglerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102126/Furtwngler_Wilhelmhttps://lee.classite.com/music/Furtwangler/furtwangler-discography.htmDr. Wilhelm FurtwänglerF. FurtwänglerFurtwaenglerFurtwanglerFurtwänglerFürtwanglerGuglielmo FurtwanglerKomponistenM. Wilhelm FurtwanglerW. FurtwaenglerW. FurtwanglerW. FurtwänglerW. FürtwanglerW.FurtwänglerWilh. FurtwänglerWilhelm FurtwaenglerWilhelm FurtwanglerWilhelm FurtweanglerWilhelm FurtwænglerWilhelm FürtwanglerВ. ФуртвенглерВильгельм ФуртвенглерВильгельм ФуртвэнглерВильгельм ФюртвенглерФуртвенглерفيلهلم فورتفنجلروليام فورتفينجلرウィルヘルム・フルトヴェングラーフルトヴェングラールートヴィヒ・ヴァン・ベートーヴェンヴィルヘルム・フルトヴェングラーヴィルヘルム・フルトヴェングラ- + +839678Helmut OertelGerman classical organistNeeds VoteH. G. OertelH. OertelRundfunk-Sinfonieorchester Berlin + +839679Hans PfitznerHans Erich PfitznerGerman composer and self-described anti-modernist, born 5 May 1869 in Moscow, Russia and died 22 May 1949 in Salzburg, Austria.Needs Votehttps://en.wikipedia.org/wiki/Hans_Pfitznerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102875/Pfitzner_Hanshttps://www.britannica.com/biography/Hans-Pfitznerhttps://mahlerfoundation.org/mahler/contemporaries/hans-pfitzner/https://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/hans-pfitznerH. PfitznerHans Erich PfitznerHans PfitzerHans PftiznerPfitznerPfiznerPftiznerProfessor Dr. Hans Pfitzner + +839696Olaf BärGerman baritone, born 19 December 1957 in Dresden, German Democratic Republic (now Germany).Needs Votehttps://en.wikipedia.org/wiki/Olaf_B%C3%A4rhttps://de.wikipedia.org/wiki/Olaf_B%C3%A4rhttps://www.naxos.com/person/Olaf_Bar/7315.htmhttps://www.bach-cantatas.com/Bio/Bar-Olaf.htmBärO. BaerO. BarOlaf BaerOlaf Barオラフ・ベーアDresdner Kreuzchor + +839704Siegfried LorenzGerman Baritone vocalist, born 30 Aug 1945 in Berlin, Germany; died 24 Aug 2024.Needs Votehttps://de.wikipedia.org/wiki/Siegfried_Lorenz_(S%C3%A4nger)https://en.wikipedia.org/wiki/Siegfried_Lorenz_(baritone)https://www.imdb.com/name/nm1508065/Lorenz + +839875Roger TappingViola player, taught at the New England Conservatory, the Longy School, and The Boston Conservatory. Born 5 February 1960 and died 18 January 2022.Needs VoteJuilliard String QuartetThe Chamber Orchestra Of EuropeThe Allegri String QuartetLondon Mozart PlayersThe Raphael EnsembleTakács QuartetThe Schubert Ensemble Of LondonJeux + +839881Tim HughTimothy HughBritish classical cellist. Born in 1965. +He studied at [l=Yale University] with [a=Aldo Parisot], and later with [a=Anthony Pleeth] and [a=Jacqueline Du Pré] whilst gaining his MA in Medicine and Anthropology at St. John's College, Cambridge. He held the position of Principal Cello in the [a=London Symphony Orchestra] from 1995 to October 2019. He joined the [a=Orchestra Of The Royal Opera House, Covent Garden] in November 2018 (effective from the commencement of the 2019/2020 season) as Joint-Principal Cello. Member of the [b]Trio Balthasar[/b].Needs Votehttps://www.facebook.com/hughcellohttps://twitter.com/Hughcellohttps://www.linkedin.com/in/tim-hugh-9990a590/?originalSubdomain=ukhttps://www.youtube.com/channel/UCrmPe1itDd3nDwLeR0E5mhQ/playlists?app=desktophttps://open.spotify.com/artist/1O6njeMdZ3Jm2lnR9s5lEkhttps://music.apple.com/us/artist/tim-hugh/3072361https://www.feenotes.com/database/artists/hugh-tim/https://musicacademy.org/big-profiles/tim-hugh/https://www.highresaudio.com/en/artist/view/c1079913-f109-4931-aea6-a2eb60dcaeb5/tim-hughhttps://lso.co.uk/more/blog/1357-saying-goodbye-to-tim-hugh.htmlhttps://www.hyperion-records.co.uk/a.asp?a=A757https://web.archive.org/web/20220000000000*/http://www.timhugh.co.ukhttps://ru.wikipedia.org/wiki/%D0%A5%D1%8C%D1%8E,_%D0%A2%D0%B8%D0%BC%D0%BE%D1%82%D0%B8HughTimothy HughТимоти ХьюLondon Symphony OrchestraThe Nash EnsembleOrchestra Of The Royal Opera House, Covent GardenDomus QuartettThe Solomon TrioThe Orchard EnsembleThe Friend - Solomon - Hugh Trio + +839882Lyn FletcherLyn FletcherViolinist. Needs VoteLynn FletcherHallé OrchestraBirmingham Contemporary Music GroupLondon Musici + +839887Iris JudaDutch violinist, married to [a754967].Needs VoteCamerata Academica SalzburgThe Chamber Orchestra Of EuropeHanson String QuartetThe Gaudier Ensemble + +839986Das Orchester Der Staatsoper BerlinAlias of the [a833446].Needs Votehttps://www.staatskapelle-berlin.dehttps://www.bach-cantatas.com/Bio/Staatskapelle-Berlin.htm#google_vignettehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103300/Staatskapelle_BerlinBerliinin Valtionoopperan OrkesteriBerlijns Staatsopera OrkestBerlin Grand Symphony OrchestraBerlin Municipal OrchestraBerlin Opera House OrchestraBerlin Opera OrchestraBerlin StaatsoperBerlin Staatsoper OrchestraBerlin State Oper OrchestraBerlin State OperaBerlin State Opera ChoirBerlin State Opera House Orch.Berlin State Opera House OrchestraBerlin State Opera Orch.Berlin State Opera OrchestraBerlin State OrchestraBerlin Statoperas Ork.Berlin Statsopera Ork.Berline State Opera OrchestraBerliner StaatskapelleBerliner StaatsoperBerliner Staatsopernorch.Berliner StaatsopernorchesterBerlins StatsoperaorkesterBläserchorChor Und Orchester Der Berliner StaatsoperChor und Mitglieder des Orchesters der Staatsoper BerlinChorus & Orchestra Of The State Opera, BerlinDas Berliner StaatsopernorchesterDas Orchester D. Staatsoper BerlinDas Orchester Der Berliner StaatsoperDas Orchester Der Deutschen Staatsoper BerlinDas Orchester Der Staatsoper, BerlinDas StaatsopernorchesterDer StaatsoperDes Orchesters Der StaatsoperDes Orchesters Der Staatsoper, BerlinDeutsche Staatsoper BerlinEnsemble Des Konzerts Der Deutschen Staatsoper BerlinGrand OrchestreGrand Orchestre SymphoniqueGrand Orchestre Symphonique De L'Opéra De BerlinGrand Symphony Orch.Grand Symphony Orchestra Of The Berlin State OperaGrande OrchestraGrande Orchestra Dell'Opera Di Stato Di BerlinoGroße Opern-OrchesterGroßes Opern-OrchesterGroßes Opernorchester BerlinGroßes StaatsopernorchesterGroßes Streich-Orchester Unter Mitwirkung Von Mitgliedern Der Staatsoper, BerlinGroßes Symphonie-Orchester (Mitgl. Des Berliner Staatsopern-Orchesters)Großes Symphonie-Orchester (Mitglieder Der Staatsoper, Berlin)Kammermusikvereinigung Der Deutschen Staatsoper BerlinKammerorchesterKapelle D. Staatsoper, BerlinKapelle Der Staatsoper BerlinKapelle Des Staats-Theaters Opernhaus, BerlinKünstler Der Deutschen Staatsoper BerlinL'Orch. Du "State Opera" De BerlinL'Orchestre De L'Opéra De BerlinL'Orchestre Du "State Opera" De BerlinL'Orchestre Opéra De BerlinMedl. Av Statsoperans Ork. BerlinMedlemmar Av Statsoperaen, BerlinMembers Of Berlin State Opera OrchestraMembers Of State Opera OrchestraMembers Of The State Opera House Orchestra BerlinMembers Of The State Opera House Orchestra, BerlinMembers Of The State Opera Orchestra, BerlinMit OrchesterbegleitungMitgl. D. Kapelle D. Staatsoper BerlinMitgl. D. Kapelle Der Staatsoper, BerlinMitgl. D. Orch. D. Staatsoper, BerlinMitgl. D. Orchesters D. Staatsoper BerlinMitgl. D. Orchesters D. Staatsoper, BerlinMitgl. Der Kapelle Der Staats-Oper BerlinMitgl. Der Kapelle Der Staats-Oper, BerlinMitgl. Der Kapelle Der Staatsoper BerlinMitgl. Der Kapelle Der Staatsoper, BerlinMitgl. Des Berliner Staatsopern-OrchestersMitgl. Des Orchester D. Staatsoper, BerlinMitgl. Des Orchesters D. Staatsoper , BerlinMitgl. Des Orchesters D. Staatsoper, BerlinMitgl. Des Orchesters Der Staatsoper BerlinMitgl. Des Orchesters Der Staatsoper, BerlinMitgl. d. Kapelle der Staatsoper, BerlinMitgl. d. Orch. Der Staatsoper, BerlinMitgl. d. Orch. d. Staatsoper BerlinMitgl. d. Orch. d. Staatsoper, BerlinMitgl. d. Orchesters d. Staatsoper, BerlinMitgl. d. Orchesters d. Staatsoper. BerlinMitgl. der Kapelle der Staatsoper BerlinMitgl. des Orchesters d. Staatsoper, BerlinMitgleider Des Orchester D. Staatsoper, BerlinMitglieder D. Berliner StaatsopernorchestersMitglieder D. Orchesters D. Staatsoper, BerlinMitglieder Der Berliner StaatsoperMitglieder Der Kapelle Der StaatsoperMitglieder Der Kapelle Der Staatsoper BerlinMitglieder Der Kapelle Der Staatsoper, BerlinMitglieder Der Kapelle, BerlinMitglieder Der Staatskapelle, BerlinMitglieder Der Staatsoper BerlinMitglieder Ders Orchesters Der Staatsoper BerlinMitglieder Des Berliner StaatsopernorchestersMitglieder Des Das Orch. Der Staatsoper, BerlinMitglieder Des Orch. Der Staatsoper, BerlinMitglieder Des Orchesters Der StaatsoperMitglieder Des Orchesters Der Staatsoper BerlinMitglieder Des Orchesters Der Staatsoper, BerlinMitglieder Kapelle Der Staatsoper, BerlinMitglieder d. Chores d. Städt. Oper u. d. Orchesters der Staatsoper, BerlinMitglieder d. Orch. d. Staatsoper, BerlinMitglieder derMitglieder der Kapelle der Städtischen Oper, BerlinMitglieder der Staatsoper BerlinMitglieder des Orchesters der Staatsoper, BerlinMitgliedern Der Kapelle Der Staatsoper, BerlinMitgliedern Des Orchesters Der Staatsoper BerlinMitgliedern Des Orchesters Der Staatsoper, BerlinMitwirkung Von Mitgliedern Der Staatsoper, BerlinMtgl. Der Kapelle Der Staatsoper BerlinOpera House OrchestraOpera Orchestra, Berlin-CharlottenburgOpern-Orchester Staatsoper, BerlinOrch. Berlin OperaOrch. D. Städt. Oper, BerlinOrch. Del Teatro D'Opera Di Stato, BerlinoOrch. Dell' Opera Di Stato Di BerlinoOrch. Dell'Opera Di Stato Di BerlinoOrch. Of The State Opera House, BerlinOrch. Of The State-Opera-House, BerlinOrch. Staatsoper BerlinOrch. d. Staatsoper BerlinOrch.D.Staatsoper, BerlinOrcheste De La Opera De BerlinOrchesterOrchester Berliner StaatsoperOrchester D. Berlin StaatsoperOrchester D. Deutschen Staatsoper BerlinOrchester D. Staatsoper BerlinOrchester Der Berliner StaatsoperOrchester Der Deutchen Staatsoper BerlinOrchester Der Deutschen StaatsoperOrchester Der Deutschen Staatsoper BerlinOrchester Der Deutschen Staatsoper, BerlinOrchester Der Staatsioper BerlinOrchester Der StaatsoperOrchester Der Staatsoper - BerlinOrchester Der Staatsoper BerlinOrchester Der Staatsoper Berlin Unter Leitung Des KomponistenOrchester Der Staatsoper BerlingOrchester Der Staatsoper, BerlinOrchester Der Städtischen Oper Berlin-CharlottenburgOrchester Der Städtischen Oper, BerlinOrchester Der. Berliner StaatsoperOrchester Des Deutschen Opernhauses, BerlinOrchester Staatsoper BerlinOrchester d. Staatsoper, BerlinOrchester der Berliner StaaatsoperOrchester der Berliner StaatsoperOrchester der Deutschen Staatsoper BerlinOrchester der StaatsoperOrchester der Staatsoper BerlinOrchester der Staatsoper, BerlinOrchester des Staatsoper, BerlinOrchester-Mitglieder Der Staatsoper BerlinOrchesterbegleitungOrchesters Der Staatsoper, BerlinOrchestr Berlínské Státní OperyOrchestraOrchestra Of Deutsche Staatsoper Unter Den LindenOrchestra Dell ‘Opera Di BerlinoOrchestra Dell' Opera Di BerlinoOrchestra Dell'Opera DI Stato DI BerlinoOrchestra Dell'Opera Di BerlinoOrchestra Dell'Opera Municipale Di BerlinoOrchestra Della Berliner StaatsoperOrchestra Della Staatsoper Di BerlinoOrchestra Di Stato Di BerlinoOrchestra Of Berlin State OperaOrchestra Of The Berlin Municipal OperaOrchestra Of The Berlin StaatsoperOrchestra Of The Berlin State OperaOrchestra Of The Berlin State Opera HouseOrchestra Of The German State OperaOrchestra Of The German State Opera, BerlinOrchestra Of The Municipal Berlin OperaOrchestra Of The Staatsoper BerlinOrchestra Of The Staatsoper, BerlinOrchestra Of The State Opera BerlinOrchestra Of The State Opera HouseOrchestra Of The State Opera House, BerlinOrchestra Of The State Opera, BerlinOrchestra Opera Di Stato Di BerlinoOrchestra Opera Di Stato, BerlinoOrchestra Statale DI BerlinoOrchestra del teatro dell'Opera Di Stato Di BerlinoOrchestra of the Berlin State OperaOrchestreOrchestre D'Etat De L'Opéra De BerlinOrchestre D'État De BerlinOrchestre De L' Opéra National De BerlinOrchestre De L'Opéra D'État De BerlinOrchestre De L'Opéra De BerlinOrchestre De L'Opéra De Berlin-CharlottenburgOrchestre De L'Opéra National De BerlinOrchestre De l'Opera De Berlin-CharlottenburgOrchestre Du Staatsoper De BerlinOrchestre Symphonique De L'Opéra De BerlinOrchestre de L'Opéra D'Etat de BerlinOrchestre de L'Opéra National de BerlinOrchestre de L'Opéra de BerlinOrchestre de l'Opéra d'Etat de BerlinOrchestre du Staastoper de BerlinOrchestre du Staatsoper BerlinOrchestre du Staatsoper de BerlinOrchster Der Staatsoper BerlinOrkest van de Duitse Staatsopera, BerlijnOrkest van de Staatsopera, BerlijnOrkestar Berlinske Državne OpereOrkestra Berlinske OpereOrq. de la Opera de BerlínOrqta. De La Opera Nacional, BerlinOrquesta De La Opera Del Estado De BerlínOrquesta De La Ópera De BerlínOrquesta De La Ópera Del Estado De Berlín Y CoroOrquesta Del Estado De La Opera De BerlinOrquesta de la Ópera de BerlínOrquesta del Estado de BerlínOrquestra Da Ópera Estadual De BerlimPhilharmonic OrchestraProff. D'Orch. Del Teatro Opera Di Stato, BerlinoProff. Orch. Teatro Dell'Opera Di Stato Di BerlinoProff. Orch. Teatro Dell'Opera Di Stato, BerlinoProff. Orch. Teatro Opera di Stato, BerlinoProff. Teatro Dell'Opera Di Stato Di BerlinoStO BerlinStaats-Opera-Orchestra, BerlinStaats-Opera-Orchestre BerlinStaats-Opera-Orchestre, BerlinStaatskapelle BerlinStaatsoperStaatsoper BerlinStaatsoper Orchester, BerlinStaatsoper Orchestra, BerlinStaatsoper, BerlinStaatsopern-OrchesterStaatsopern-Orchester BerlinStaatsopernorchesterStaatsopernorchester BerlinState Opera BerlinState Opera House Orchestra, BerlinState Opera Orch.State Opera OrchestraState Opera Orchestra (Berlin)State Opera Orchestra BerlinState Opera Orchestra, BerlinState Opera, BerlinState-Opera, BerlinStatsoperaens OrkesterStatsoperaens Orkester, BerlinStatsoperan, BerlinTeatro d'Opera di State, BerlinoThe Berlin Philharmonic OrchestraThe Berlin Staatsoper OrchestraThe Berlin State Oper OrchestraThe Berlin State Opera OrchestraThe Berlin State OrchestraThe Berlin State State Opera OrchestraThe Grand Symphony Orch. BerlinThe Grand Symphony Orch., BerlinThe Great Symphonic OrchestraThe Opera Orchestra, Berlin-CharlottenburgThe Orchestra Of The Berlin State OperaThe Orchestra Of The German Opera House, BerlinThe Orchestra Of The German State Opera, BerlinThe Orchestra Of The Staatsoper, BerlinThe Orchestra Of The State Opera House BerlinThe Orchestra Of The State Opera House, BerlinThe State Opera OrchestraThe State Opera Orchestra (Berlin)The State Opera Orchestra BerlinThe State Opera Orchestra Of BerlinThe State Opera Orchestra, BerlinThe State-Opera-Orchestra, BerlinTroupe Et Orchestre De L'Opera National De BerlinTyska Operahusets Orkester, BerlinОркестр Берлинской OперыОркестр Берлинской Городской ОперыОркестр Берлинской Государственной ОперыОркестр Берлинской ОперыОркестр Берлинской городской оперыStaatskapelle BerlinWerner ZeibigFriedrich-Carl ErbenWilfried WinkelmannHans HimmlerArnim OrlamündeWolfgang BernhardtHeinrich GeuserEgon HellrungNothard MüllerWalter SommerfeldMitglieder Des Orchesters Der Staatsoper Berlin + +839988Werner MayerProducer and recording supervisor who worked for [l=Deutsche Grammophon]. + +For the photographer and graphic designer, use [a3256360].CorrectWerner Meyerヴェルナー•マイヤーヴェルナー・マイヤーヴェルナー・マイヤー + +839989Ulrich VetteUlrich Vette was a German sound engineer, mainly for the classical music label [l=Deutsche Grammophon]. After his DGG career, he took up a professorship at the University of Music and Performing Arts in Vienna, Austria, where he succeeded [a625649] as the director of the sound engineering department. He died in September 2024 in Dresden, Germany.Needs VoteUlrich Vetter + +839990Christian ThielemannGerman conductor. Born 1 April 1959 in Berlin. + +Music Director of [a=Orchester Der Deutschen Oper Berlin] (Deutsche Oper Berlin) (1997–2004). +Music Director of [a=Münchner Philharmoniker] (2004–2011). +Chief Conductor of [a=Staatskapelle Dresden] (2012-now).Needs Votehttps://en.wikipedia.org/wiki/Christian_Thielemannhttps://www.bach-cantatas.com/Bio/Thielemann-Christian.htmChr. ThielemannThielemannКристиан Телеманクリスティアン・ティーレマン + +840036Hartmut HaenchenHartmut HaenchenGerman conductor, born 21.03.1943 in Dresden/Germany.Needs Votehttp://www.haenchen.net/https://en.wikipedia.org/wiki/Hartmut_HaenchenH. HaenchenHaenchenHaenichenHarmut HaenkenHartmut HaenkenHartmut HänchenProfessor Hartmut HaenchenХармут ХенхенХартмут ХенхенDresdner Kreuzchor + +840037Kurt SandauGerman trumpeter and solo trumpeter at the [a=Staatskapelle Dresden] from 1970 to 2004.Needs VoteK. SandauSandauК. СандауКурт ЗандауStaatskapelle DresdenNeues Bachisches Collegium Musicum LeipzigVirtuosi SaxoniaeDie BlasewitzerSemper-House BandBlechbläserensemble Ludwig Güttler + +840038Walter Heinz BernsteinWalter Heinz BernsteinGerman harpsichordist and organist, born 25 February 1922 in Leipzig, Germany and died 3 February 2014 in Lindenberg, Germany.Needs VoteBernsteinHeinz BernsteinHeinz Walter BernsteinHeinze BernsteinW. BernsteinWalter BernsteinWalter Heinz-BernsteinWalter-Heinz BernsteinCapella LipsiensisKammerorchester BerlinNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaLeipziger Bach-CollegiumBlasende Music LeipzigPro Arte Antiqua Lipsiensis + +840069Sergiu CelibidacheSergiu CelibidacheRomanian conductor, composer, musical theorist, and teacher, born 11 July [Old Style: 28 June] 1912 - Roman, Romania, died 14 August 1996 - Paris, France. + +He married in 1965 for the rest of his life with [a4497818] they had a son, [a6252643]. + +Principal Conductor of: +[a796211] (1945-1946) +[a260744] (1945-1952) +[a380036] (1965-1971) +[a610799] (1971-1977) +[a626175] (1973-1975) +[a261451] (1979-1996) + +[a2098411] was one of his prominent pupil and assistant.Needs Votehttps://en.wikipedia.org/wiki/Sergiu_Celibidachehttps://www.fundatia-celibidache.com/https://www.imdb.com/name/nm1158614/https://www.celibidache.it/CelibidacheS. CelibidacheSerge Ioan CelebidacheСергију ЧалибодакеСерджи ЦелибидачеBerliner PhilharmonikerMünchner PhilharmonikerSveriges Radios SymfoniorkesterRadio-Sinfonieorchester StuttgartOrchestre National De FranceRundfunk-Sinfonieorchester Berlin + +840070Arthur NikischArthur Nikisch, in Hungarian Nikisch Artúris, was a Hungarian-born conductor and pianist. He was born October 12, 1855 in Mosonszentmiklós, Hungary and died January 23, 1922 in Leipzig, Germany.Needs Votehttps://en.wikipedia.org/wiki/Arthur_Nikischhttps://www.britannica.com/biography/Arthur-Nikischhttps://www.naxos.com/Bio/Person/Arthur_Nikisch/52908Artur NikischDr. Arthur NikischNikischProf. Arthur NikischProfessor Arthur NikischАртур Никиш + +840153Johann Joachim QuantzBorn: 1697-01-30 (Scheden, Germany) +Died: 1773-07-12 (Potsdam, Germany) + +Johann Joachim Quantz was a German flutist, flute maker and Baroque music composer. +Quantz was originally a double bass player and only found his way to the flute when he was 30 years old. On this instrument he became one of the most respected virtuosos of his time. He introduced some important mechanical improvements to the flute, adding a second key and inventing a device to tune the flute. After appearing in all the important musical centers of Europe, Quantz gave a performance to Crown Prince Friedrich (later King of Prussia) in Berlin in 1728 and thereafter became his flute teacher. King Friedrich II then brought Quantz to Berlin and made him chief court musician and court composer. Quantz left about 300 concertos for one or two flutes and about 200 flute pieces, including trio sonatas. He also set odes by the poet Christian Fürchtegott Gellert (1715-1769) to music. + +Needs Votehttp://jjquantz.org/https://en.wikipedia.org/wiki/Johann_Joachim_Quantzhttps://books.discogs.com/credit/752777-johann-joachim-quantzhttps://www.britannica.com/biography/Johann-Joachim-QuantzJ J QuantzJ. J. QuantzJ. QuantzJ.-J. QuantzJ.J. QuantzJ.J.QuantzJoaquim QuantzJoh. Joachim QuantzJohan J. QuantzJohan Joaquin QuantzJohann J. QuantzJohann QuantzJohann-Joachim QuantzJoseph Joachim QuantzQuantzИ. И. КванцИ. КванцИ.И.Кванцヨハン・ヨアヒム・クヴァンツStaatskapelle Dresden + +840160Attila BaloghAttila Balogh was a Hungarian violist and conductor. He passed away in 2000 at the age of 65.Needs VoteBalogh AttilaBerliner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksAmati-Ensemble MünchenAmati-Ensemble Berlin + +840349Walter GiesekingWalter Wilhelm GiesekingGerman pianist and composer, also entomologist, born November 5, 1895, in Lyon, died October 26, 1956, in London.Needs Votehttps://en.wikipedia.org/wiki/Walter_Giesekinghttps://www.britannica.com/biography/Gieseking-Walterhttps://www.naxos.com/Bio/Person/Walter_Gieseking/1213http://trmsolutions.co.kr/music/Gieseking/gieseking-e.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103372/Gieseking_Walterhttps://www.imdb.com/name/nm3223277/B. GizekingasGiesekingW. GiesekindW. GiesekingWalter GeiskingWalter GriesekingВ. ГизекингВалтер ГизекингВальтер ГизекингВальтер Гизенкингウォルター・ギーゼキングワルター・ギーゼキング + +840391Pietro Antonio LocatelliItalian composer and violinist of Baroque period. Born 3 September 1695 in Bergamo, Italy, died 30 March 1764 in Amsterdam, The Netherlands.Needs Votehttp://en.wikipedia.org/wiki/Pietro_LocatelliA. LocatelliAldi LocatelliAntonio LocatelliLocatalliLocateliLocatelliLocatelli P.LocatellyLocatteliLocattelliP. A. LocatelliP. LocatelliP. LokatelliP.A. LocatelliP.LocatelliPierantonio LocatelliPiero Antonio LocatelliPierre LocatelliPietro A. LocatelliPietro LocatelliPietro LocatelloPietro LocattelliП. ЛокателиП. ЛокателлиПьетро Антонио ЛокателлиПьетро Локателли + +840437Sylvia GesztySylvia Maria Ilona WytkowskyHungarian-German opera singer (coloratura soprano), born 28 February 1934 in Budapest, Hungary; died 15 December 2018 in Stuttgart, Germany.Needs Votehttps://de.wikipedia.org/wiki/Sylvia_Gesztyhttp://www.sylviageszty.deGesztyS. GesztySilvia GesztySylvia GeseztyСильвия Гестиシルヴィア・ゲスティGeszty Szilvia + +840438Hanne-Lore KuhseHanne-Lore KuhseEast German operatic soprano (* 28 March 1925 in Schwaan, Germany; † 10 December 1999 in Berlin, Germany).Needs Votehttps://en.wikipedia.org/wiki/Hanne-Lore_Kuhsehttps://de.wikipedia.org/wiki/Hanne-Lore_Kuhsehttps://operalounge.de/features/portraits-interviews/hanne-lore-kuhse-1925-1999-2https://www.svz.de/lokales/artikel/begegnungen-mit-hanne-lore-kuhse-40207642Hanne-Lohre KuhseHannelore KuhseStaatsoper Berlin + +840440Renate HoffRenate Hoff-PeterkeGerman operatic soprano (9 February 1933 - 10 January 2019).Needs VoteHoffРенате Хофф + +840457Laura MirriClassical violinist.Needs VoteLaura MiriAccademia BizantinaConcerto ItalianoVenice Baroque OrchestraAuser MusiciZefiroIl Pomo d'Oro + +840464Marco FrezzatoItalian cellistNeeds VoteAccademia BizantinaLe Concert D'AstréeEnsemble OttocentoAntichi StrumentiEnsemble Claudiana + +840465Antonio LottiAntonio Pasqualin LottiAntonio Lotti (5 January 1667, Venice — 5 January 1740, [i]Ibid.[/i]) was an Italian composer of the Baroque period. + +Note on the portrait: this chalk sketch by composer and painter [a9369196] (1688—1775) contained a handwritten "[i]Antonius Lotti[/i]" inscription on the back; however, it's done in pencil posthumously, and thus cannot be definitively attributed. Many online sources on Antonio Lotti also erroneously include portraits of either Venetian composer [a=Benedetto Marcello] (1686—1739) or Austrian composer [a=Johann Joseph Fux] (ca.1660—1741).Needs Votehttps://en.wikipedia.org/wiki/Antonio_Lottihttps://www.bach-cantatas.com/Lib/Lotti-Antonio.htmhttps://www.ancientgroove.co.uk/lotti/index.htmlhttps://adp.library.ucsb.edu/names/104110A. LottiAntonio Lotti ca. 1667-1740LottiА. ЛоттиАнтонио ЛоттиАнтоніо Лоттіアントニオ・ロッティロッティStaatskapelle Dresden + +840470Dileno BaldinItalian horn player (wind instrumentalist) (born in Padua in 1964).Needs VoteДилено БалдинConcerto KölnEuropa GalanteConcerto ItalianoBalthasar-Neumann-EnsembleVenice Baroque OrchestraEnsemble Barocco Sans SouciZefiro + +840471Ottavio DantoneOttavio DantoneItalian harpsichordist, organist and conductor. Musical director of the [a=Accademia Bizantina] since 1996.Needs Votehttp://www.bach-cantatas.com/Bio/Dantone-Ottavio.htmhttps://en.wikipedia.org/wiki/Ottavio_DantoneDantoneO. DantoneAccademia BizantinaIl Giardino ArmonicoEnsemble Del Riccio + +840473Stefano MontanariClassical violinist.Needs Votehttps://www.stefanomontanari.biz/S. MontanariStephano MontanariAccademia BizantinaConcerto KölnGianluigi Trovesi NonetZefiroL'EstravaganteQuartetto "Joseph Joachim" + +840474Tiziano BagnatiItalian classical lute, guitar and theorbo instrumentalist.Needs VoteAccademia BizantinaEuropa GalanteConcerto ItalianoEnsemble "Concerto"Il Complesso Barocco + +840475Ermes PecchininiClassical hornist & bassoonistNeeds VoteErmes PeccheniniErmes PecchiminiHermes PecchininiAccademia BizantinaL'AstréeEuropa GalanteConcerto ItalianoI BarocchistiIl Complesso BaroccoAcademia Montis RegalisBologna Youth Symphonic OrchestraAntichi StrumentiDivertissement (2) + +840476Nicola Dal MasoClassical double bass and violone player.Needs VoteAccademia BizantinaLe Concert D'AstréeSonatori De La Gioiosa MarcaEnsemble LegrenziCappella AugustanaHarmonices Mundi + +840477Marco CeraOboist Marco Cera studied at the Padua Conservatory of Music (Italy) and at the Musikhochschule der Stadt Basel (Switzerland). In 1996 he was chosen as first oboe for the European Union Baroque Orchestra, with which he performed in Denmark, Portugal, Germany, United Kingdom and South Africa. He regularly collaborates as a soloist with the leading baroque orchestras in Italy and Europe, including Il Giardino Armonico, Concerto Italiano, I Sonatori della Gioiosa Marca, Accademia Bizantina, Cappella della Pieta’ de’ Turchini, Ensemble Zefiro, Europa Galante, I Barocchisti, Les Talens Lyriques, and Academia Montis Regalis, and has worked with conductors Jordi Savall, Gustav Leonhardt, Robert King, Jesper Christensen, Jaap ter Linden, and Barthold Kuijken. His wide discography includes works for Teldec, Opus 111, Chandos, Dynamic, Tactus. Marco moved from Italy to Toronto to play with Tafelmusik from 2000-2002, and rejoined the orchestra in January 2007. In 2010 Marco co-founded the Vesuvius Ensemble, a band dedicated to the performance and preservation of traditional folk music from Naples and Southern Italy. As a multi-instrumentalist, Marco is member of Canada's premier Artic Fusion band, Ensemble Polaris. Needs VoteIl Giardino ArmonicoTafelmusik Baroque OrchestraMontreal BaroqueOrchestra AglàiaEx Silvis Antiqua Musica + +840483Olivier DumaitFrench tenorNeeds Votehttps://www.facebook.com/olivier.dumaitCollegium VocaleChœur De Chambre Accentus + +840489Hans VonkDutch conductor. He was born 18 June 1942 in Amsterdam, The Netherlands and died 29 August 2004 in Amsterdam, The Netherlands.Needs Votehttps://en.wikipedia.org/wiki/Hans_Vonk_(conductor)H. VonkVonkГанс ФонкХанс Вонкハンス・フォンクStaatskapelle DresdenResidentie Orkest + +840538Dimitrij KitaenkoДмитрий Георгиевич КитаенкоRussian conductor, born in 1940. (in English: Dmitrij Georgievich Kitajenko, also Dmitri Kitayenko or Kitaenko). + +Kitajenko was music director of the Moscow Philharmonic Orchestra for 14 years, and has also held principal conductorships with the Bergen Philharmonic Orchestra, the Frankfurt Radio Symphony Orchestra, the Bern Symphony Orchestra, and the Moscow Opera Theater. + +1970-1976 МАМТ имени К. С. Станиславского и Вл. И. Немировича-Данченко (Stanislavski and Nemirovich-Danchenko Moscow Academic Music Theatre) +1976—1990 [url=http://www.discogs.com/artist/Moscow+Philharmonic+Orchestra]Академический симфонический оркестр Московской филармонии[/url] (Moscow Philharmonic Orchestra) +1990—1996 [a=Radio-Sinfonie-Orchester Frankfurt] +1990—1998 [a=Bergen Filharmoniske Orkester] +1990—2004 [a=Berne Symphony Orchestra] +1999—2004 KBS Symphony OrchestraNeeds Votehttps://www.kitajenko.com/https://en.wikipedia.org/wiki/Dmitri_Kitayenkohttps://ru.wikipedia.org/wiki/%D0%9A%D0%B8%D1%82%D0%B0%D0%B5%D0%BD%D0%BA%D0%BE,_%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%B8%D0%B9_%D0%93%D0%B5%D0%BE%D1%80%D0%B3%D0%B8%D0%B5%D0%B2%D0%B8%D1%87D. KitaenkoD. KitayenkoDimitri KitaenkoDimitri KitaienkoDimitri KitajenkoDimitri KitayenkoDimitri KitayienkoDimitri KitaïenkoDimitrij KitajenkoDimitrij KitayenkoDimitry KitaenkoDmitij KitajenkoDmitri KiataenkoDmitri KitaenkoDmitri KitajenkoDmitri KitayenkoDmitri KitaïenkoDmitrij KitaenkoDmitrij KitajenkoDmitry KitaenkoDmitry KitajenkoDomitry KitaenkoKitaenkoKitajenkoKitayenkoKitaïenkoΔημήτρης ΚιταγιένκοΝτιμίτρι ΚιταγιένκοД. КитаенкоДирижер Дмитрий КитаенкоДм. КитаенкоДмитрии КитаенкоДмитрий КитаенкоДмитрий КитанекоКитаенкоRadio-Sinfonie-Orchester FrankfurtMoscow Philharmonic OrchestraBergen Filharmoniske OrkesterBerner Symphonieorchester + +840585Sophie RenshawBritish viola player.Needs VoteEnglish Chamber OrchestraLondon Mozart PlayersScottish Chamber OrchestraOrford String QuartetThe Solid StringsBubbling Under + +840727Anne-Marie LaslaViol player.Needs VoteAnna-Marie LaslaAnne Marie LaslaAnnemarie LaslaLaslaLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleLe Concert D'AstréeEnsemble Clément JanequinA Sei VociCapriccio StravaganteLe Poème HarmoniqueAmarillisEnsemble Guillaume de Machaut de Paris + +840728Philippe PierlotFrench flautist, first flute solo in the Orchestre National de France. He also plays as soloist and in chamber music ensembles. His repertoire is eclectic, ranging from Vivaldi to Varèse and Poulenc. + +For the Belgian music director and viola da gamba player see [a1055481]. +CorrectP. PierlotPierlotOrchestre National De FranceLa Follia + +840729Pascal MonteilhetPascal Monteilhet (1955-2022) was a Lutenist and theorbist Needs VoteP. MonteilheitPascal Monteilhet (Théorbe)Pascal MontheilletIl Seminario MusicaleEuropa GalanteLes Talens LyriquesLa Simphonie Du MaraisLes Musiciens Du LouvreEnsemble Baroque De LimogesRicercar ConsortLes Basses RéuniesLes Veilleurs de NuitLa TurbulenteEnsemble europeen William ByrdLes Libertins + +840730Bruno CocsetCello and viol player.Needs Votehttps://www.facebook.com/bruno.cocsethttps://en.wikipedia.org/wiki/Bruno_Cocsethttps://www.bach-cantatas.com/Bio/Cocset-Bruno.htmB. CocsetB.CocsetBrunoBruno CroscetCocsetLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleLe Concert Des nationsHespèrion XXIEnsemble FitzwilliamEnsemble Baroque De LimogesLes Basses Réunies + +840731Il Seminario MusicaleA baroque music ensemble founded in 1985 by the French countertenor, Gérard Lesne who is also its artistic director.CorrectEnsemble Il Seminario Musicaleイル・セミナリオ・ムジカーレVincent CharbonnierVéronique GensEmmanuel PadieuPatrick Cohën-AkenineBlandine RannouSylvie MoquetPeter Van BoxelaereChristine Angot (2)Gérard LesneAnn VanlanckerAnne-Marie LaslaPascal MonteilhetBruno CocsetJacques BonaPierre BoragnoHugo ReyneJean-Charles AblitzerChristophe RoussetChristopher PurvesSylvia AbramowiczMichel RenardMarie-Ange PetitCatherine GirardSébastien MarqMichèle SauvéClaude WassmerPatrick BeuckelsFabrizio CiprianiMichèle VandenbroucquePierre HamonJean-Pierre NicolasRichard MyronPhilippe Pierlot (2)Sophie WatillonDiane ChmelaBenoît WeegerSophie DemouresHélène D'YvoireThérèse KipferCatherine PuigFlorence MalgoirePaulien KostenseCatherine GreuilletFranck PichonMalcolm BothwellCorrado BolsiBernadette CharbonnierEmmanuel Jacques (2)Daniel DéhaisJacques BlancStéphanie PauletAngélique MauillonJoël LahensXavier Julien-La FerrièreLouis SauvêtreMónica PustilnikMarie-Hélène LandreauJean-François MadeufLu Van AlbadaPatrick Bismuth + +840732Jacques BonaClassical bass & baritone vocalist.Needs VoteJ. BonaLes Arts FlorissantsEnsemble Gilles BinchoisIl Seminario MusicaleLes Petits Chanteurs De Sainte-Croix De NeuillyEnsemble Vocal Guillaume Dufay + +840733Pierre BoragnoRecorder / bagpipes player.Needs VoteEnsemble Gilles BinchoisIl Seminario MusicaleLa Simphonie Du MaraisEnsemble FitzwilliamL'ArpeggiataAlta (3)Les Cris de ParisEnsemble Matheus + +840734Hugo ReyneHugo ReyneFlautist, oboist, conductor and founder of the classical ensemble [a=La Simphonie Du Marais] (born 1961 in Paris, France). +Correcthttp://www.simphonie-du-marais.org/Les Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleLa Simphonie Du MaraisLes Musiciens Du LouvreRicercar ConsortA Sei VociLe Concert Français + +840735Jean-Charles AblitzerFrench classical organist (* 05 August 1946 in Grandvillars, France). +Titular organist of the historical organ of Saint-Christophe’s cathedral in Belfort (France).Needs Votehttps://jeancharlesablitzer.fr/https://en.wikipedia.org/wiki/Jean-Charles_AblitzerIl Seminario Musicale + +840888Paul ClementAmerican classical cellist, member of the New York Philharmonic from 1963 to 1995. +Passed away in December 2002.Needs VoteNew York Philharmonic + +840893Miles Davis-Tadd Dameron QuintetCorrectMiles Davis - Tadd Dameron QuintetMiles Davis / Tadd Dameron QuintetMiles Davis / Todd Dameron QuintetMiles Davis/Tadd Dameron QuintetThe Miles Davis & Tadd Dameron QuintetThe Miles Davis / Tadd Dameron QuintetThe Miles Davis/Tadd Dameron QuintetMiles DavisJames MoodyKenny ClarkeTadd DameronBarney Spieler + +840894Barney SpielerBernard SpielerAmerican jazz bassistNeeds VoteBarney SpieleBarney SpieleryBarney SpillerBernard 'Barney' SpielerBernard SpielerBryan SpielerBenny Goodman And His OrchestraDjango Reinhardt Et Son QuintetteMiles Davis-Tadd Dameron QuintetSam Donahue Navy Band + +841180Hilary StorerBritish classical oboistCorrectBBC Symphony Orchestra + +841237Aleksander TesarczykClassical clarinetistNeeds VotePolish National Radio Symphony Orchestra + +841252Krzysztof FiedukiewiczClassical bassoonist.Needs Votehttps://nospr.org.pl/pl/kalendarz/artysci/krzysztof-fiedukiewiczhttps://pl.wikipedia.org/wiki/Krzysztof_FiedukiewiczPolish National Radio Symphony Orchestra + +841281Mariusz ZiętekPolish hornistNeeds Votehttps://waltornia.pl/biografie/424-mariusz-zietekMariusz ZietekPolish National Radio Symphony Orchestra + +841283Łukasz ZimnikClassical flautist.Needs VotePolish National Radio Symphony Orchestra + +841294Sir Eugene GoossensEugene Aynsley GoossensEnglish conductor and composer. Born 26 May 1893 in Camden Town, London, England, UK and died 13 June 1962 in in Middlesex, England, UK. +Son of [a8240294] and brother of [a=Marie Goossens], [a=Sidonie Goossens], & [a=Leon Goossens].Needs Votehttps://en.wikipedia.org/wiki/Eugene_Aynsley_Goossenshttps://adp.library.ucsb.edu/names/104204A. GoossensE GoossensE. GoossenE. GoossensEugene GoosensEugene GoossenEugene GoossensEugene GossensEugenio GoossensEugène GoosensEugène GoossensGoosensGoossensM. Eugene GoossensM. Eugène GoosensM. Eugène GoossensM.o E. GoossensM.o GoossensMaestro GoossensMo Eugenio GoossensOrchestraSir Eugen GoossensSir Eugene GoosensSir Eugene GoosssensSir Eugenio GoossensSir Eugène GoosensSir Eugène GoossensThe Strings Of The New Symphony Orchestra Of LondonЭжен ГуссенсЮ. ГусенсЮджин ГуссенсGoossens' Orchestra + +841355Jacques IbertJacques François Antoine IbertFrench composer. +b. 15/08/1890 in Paris, France. +d. 05/02/1962 in Paris, France.Needs Votehttp://www.jacquesibert.frhttps://en.wikipedia.org/wiki/Jacques_Iberthttps://adp.library.ucsb.edu/names/102464I. IbertIbbertIbertIbert, JacquesJ IbertJ. IbertJ. IbertJ.IbertJacque IbertJacques François Antoine IbertJacques IlbertJacques-François-Antoine IbertJaques IbertJasques IbertJean IbertM. Jacques IbertŽ. IberasЖ. ИберЖ. ИбераЖ.ИберЖак ИберЖак ИбоИберイベール查·伊贝尔 + +841356Carl NielsenCarl August NielsenDanish conductor, violinist, and composer (9 June 1865 – 3 October 1931).Needs Votehttps://www.carlnielsen.dk/https://en.wikipedia.org/wiki/Carl_Nielsenhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/104104/Nielsen_CarlC NielsenC. NielsenC.NielsenCarl August NielsenCarl NeilsenCarl NielsonComposerNeilsenNielenNielsenNielsen, CarlNielsonК. Нильсенニールセン + +841431Orchester Der Deutschen Oper BerlinOrchestra of the Deutsche Oper Berlin, Germany. It is not to be confused with [a839986] (Orchestra of the German State Opera Berlin, alias [a833446]). Between 1925 to 1961 it was named [a855889]. + +The [l1256364] in Berlin-Charlottenburg is one of three opera houses in Berlin (with the Staatsoper Unter den Linden and the Komische Oper). The opera building was inaugurated in 1912 as Deutsches Opernhaus, renamed in 1925 to Städtische Oper and in 1961 to [l1256364].Needs Votehttps://www.deutscheoperberlin.de/de_DE/home-orchesterhttps://www.facebook.com/DeutscheOperBerlinhttps://twitter.com/deutsche_operhttps://www.instagram.com/deutscheoperberlinhttps://www.youtube.com/user/DeutscheOperBerlinhttps://soundcloud.com/deutsche-oper-berlinhttps://www.flickr.com/photos/deutscheoper/https://www.pinterest.de/deutscheoper/https://issuu.com/deutscheoperberlinhttps://en.wikipedia.org/wiki/Deutsche_Oper_BerlinBerlin Deutche Oper OrchestraBerlin Deutsche Opera OrchestraBerlin Opera And OrchestraBerlin Opera Orch.Berlin Opera OrchestraBerlin Opera Orchestra And ChoirBerlin Opera Orchestra And ChorusBerlin Opera SingersBerlin Opera Singers And OrchestraBerlin Opera and Orch.Berlin Orch.Berlin State OperaBerlin State Opera House OrchestraBerlin State Opera Orch.Berlin State Opera OrchestraBerlin State OrchestraBerlins StatsoperaorkesterBläser U. Streicher Der Deutschen Oper BerlinBläser Und Streicher Der Deutschen Oper, BerlinBrass And Winds Of The Berlin State Opera OrchestraChamber Orchestra Of German Opera House, BerlinChamber Orchestra Of The German Opera HouseChamber Orchestra Of The German Opera House, BerlinCho Und Und Orchester Der Deutschen Staatsoper BerlinChoeur Et Orchestre Du Deutsch Oper de BerlinChor Der Deutschen Staatsoper BerlinChor Und Orchester Der Deutschen Oper BerlinChor Und Orchester Der Deutschen Oper, BerlinChor Und Orchester Der Deutschen Opera BerlinChor Und Orchester Der Städtischen Oper, BerlinChor Und Orchester Deutsche Oper BerlinChor und Orchester Der Deutschen Oper BerlinChor & Orchester Der Deutschen Oper BerlinChorusChorus And Orchestra Of The German OperaChorus And Orchestra Of The German Opera House, BerlinChorus And Orchestra Of The German State Opera, BerlinChorus Of The Deutche Oper, BerlinChorus Of The Deutsche Oper BerlinChorus Of The German Opera, BerlinChrous And Orchestra Of The Deutsche Oper, BerlinChœurs Du Deutsche Oper BerlinCoro Dell'Opera Tedesca Di BerlinoCoro E Orchestra Dell'Opera Di BerlinoCoro E Orquestra Da Ópera De BerlimCoro Y Orquesta De La Opera Alemana, BerlinDas Deutsche Opernorchester BerlinDas Orchester Der Deutschen Oper BerlinDas Orchester der Deutschen Oper BerlinDer Orchester Der Städtischen Oper BerlinDer Städtischen Oper BerlinDet Tyske Operahus' OrkesterDeutsch Oper BerlinDeutsch Oper BerliniDeutsche Oper BerlinDeutsche Oper Chorus And Orchestra BerlinDeutsche Oper Orchester BerlinDeutsche Oper OrchestraDeutsche Oper Orchestra BerlinDeutsche Oper Orchestra Berlin,Deutsche Oper Orchestra, BerlinDeutsche Oper, BerlinDeutsche OperaDeutsche Opera BerlinDeutsche Opera Orchestra, BerlinDeutsche Staatsoper BerlinDeutschen Oper - BerlinDeutschen Oper ORchester BerlinDeutschen Oper Orchester BerlinDeutschen Oper OrchestraDeutschen Oper Orchestra BerlinDeutschen Opernhauses, BerlinDeutscher Oper, BerlinDeutsches Opernorchester BerlinEnsembleFrauenchor Der Oper Berlin Mit OrchesterFrauenchor Und Orchester Der StaatsoperGerman Opera BerlinGerman Opera Chorus BerlinGerman Opera House ChorusGerman Opera House Chorus & Orch.German Opera House OrchestraGerman Opera House Orchestra, BerlinGerman Opera House, BerlinGerman Opera Orchestra Of BerlinGerman Opera Orchestra, BelrinGerman Opera Orchestra, BerlinGerman State Opera BerlinGrand Orchestre Du DeutchlandsenderGrand Orchestre Symphonique (Opéra De Berlin)Grand Orchestre Symphonique De L' Opera De BerlinGrand Orchestre Symphonique De L'Opéra De BerlinGrande Orchestra Sinfonica Di Professori Dell'Opera Di BerlinoGrosses Sinfonie OrchesterGroßes OpernorchesterGroßes Opernorchester BerlinGroßes Symphonie-OrchestersKammerensemble Modern Der Deutschen Oper BerlinKammerorchester Und Streichquartett Aus Mitgliedern Des Orchesters Der Deutschen Oper BerlinKammerorchester und Streichquartett aus Mitgliedern des Orchesters der Deutschen Oper BerlinKoor En Orkest Van De Berlijnse OperaKoor En Orkest Van De Duitse Opera BerlijnL'Opéra National de BerlinL'Orchestre De L'Opéra De BerlinMembers Of The Berlin State Opera OrchestraMembers Of The State Opera Orchestra, BerlinMembres De L'Orchestre De L'Opéra De BerlinMitgl. D. Deutch. Opernhauses, BerlinMitgl. D. Orchesters Der Staatsoper, BerlinMitgl. d. Deutsch. Opernhauses, BerlinMitglieder Der Deutschen Oper BerlinMitglieder Der Kapelle Der Staatsoper, BerlinMitglieder Des Deutschen Opernhauses, BerlinMitglieder Des Orchester Der Staatskapelle Oper-BerlinMitglieder Des Orchesters Der Deutschen Oper BerlinMitglieder Des Orchesters Der Staatsoper BelinMitglieder Des Orchesters Der Staatsoper, BerlinMitglieder aus dem Orchester der Deutschen Oper Berlin (West)Mitglieder des Orchestres der Städt. Oper. BerlinMunicipal Opera Orchestra, BerlinOpera Alemana De BerlinOpera Ochestra, Berlin-CharlottenburgOpera Of The German Opera HouseOpernorchesterOrch.Orch. D. Dtsch. Oper BerlinOrch. De L'Opéra De BerlinOrch. Der Städt. Oper BerlinOrch. d. Deutschen Opernhauses, BerlinOrchesta Of The Deutsche Oper BerlinOrchesterOrchester Chor & Der Deutschen Oper BerlinOrchester D. Deutsch. Opernhauses, BerlinOrchester D. Deutschen Oper BerlinOrchester D. Deutschen Opernhauses, BerlinOrchester Den Städtischen Oper, BerlinOrchester Der Deutschen OperOrchester Der Deutschen Oper, BerlinOrchester Der Deutschen Opernhauses, BerlinOrchester Der Deutschen StaatsopeOrchester Der Deutschen Staatsoper BerlinOrchester Der Dt. Oper BerlinOrchester Der Reichoper BerlinOrchester Der Reichsoper BerlinOrchester Der Staatsoper BerlinOrchester Der Städt. Oper, BerlinOrchester Der Städtischen Oper BerlinOrchester Des Deutschen OpernhausesOrchester Des Deutschen Opernhauses BerlinOrchester Des Deutschen Opernhauses, BerlinOrchester Des Opernhauses, BerlinOrchester Deutsche Oper BerlinOrchester Deutsches Opernhaus, CharlottenburgOrchester Of The Deutsche Oper BerlinOrchester Und Chor Der Deutschen OperOrchester der Deutschen Oper BerlinOrchester der Deutschen Oper, BerlinOrchester der Deutschen Staatsoper BerlinOrchester des Deutschen OpernhausesOrchester des Deutschen Opernhauses BerlinOrchester des Deutschen Opernhauses, BerlinOrchestr Německé Opery V BerlíněOrchestraOrchestra And Chorus Of The Deutsche Oper, BerlinOrchestra And Chorus Of the Deutsche Oper BerlinOrchestra De L'Opéra De BerlinOrchestra Dell'Opera Di Stato Di BerlinoOrchestra Dell'opera Tedesca Di BerlinoOrchestra Della Deutsche Oper BerlinOrchestra Della Deutsche Oper Di BerlinOrchestra Della Deutschen Oper BerlinOrchestra Der Deutschen Oper BerlinOrchestra Deutsche Oper Di BerlinoOrchestra From Deutsche OperOrchestra Of Berlin State OperaOrchestra Of Deutsch Oper, BerlinOrchestra Of Deutsche Opera, BerlinOrchestra Of Deutschen Oper, BerlinOrchestra Of German State Opera, BerlinOrchestra Of The "Deutsches Opernhaus Berlin"Orchestra Of The Berlin Municipal OperaOrchestra Of The Berlin OperaOrchestra Of The Berlin Opera HouseOrchestra Of The Berlin State OperaOrchestra Of The Deusche Oper Of BerlinOrchestra Of The Deutche Oper, BerlinOrchestra Of The Deutsche OperOrchestra Of The Deutsche Oper BerlinOrchestra Of The Deutsche Oper Berlin]Orchestra Of The Deutsche Oper, BelinOrchestra Of The Deutsche Oper, BerlinOrchestra Of The Deutschen Oper BerlinOrchestra Of The Deutschen Oper, BerlinOrchestra Of The German OperaOrchestra Of The German Opera BerlinOrchestra Of The German Opera HouseOrchestra Of The German Opera House, BerlinOrchestra Of The German Opera, BerlinOrchestra Of The German State Opera Of BerlinOrchestra Of The German State Opera, BerlinOrchestra Of The Opera Of BerlinOrchestra Of The State Opera House, BerlinOrchestra Of The State Opera, BerlinOrchestra of Deutsche Oper, BerlinOrchestra of the City Opera, BerlinOrchestra of the Deutsche Oper BerlinOrchestra of the Deutsche Oper, BerlinOrchestra of the Deutschen Oper BerlinOrchestra of the German Opera HouseOrchestra of the German Opera House, BerlinOrchestra of the German Opera, BerlinOrchestra of the German State Opera, BerlinOrchestra of the State Opera, BerlinOrchestra: Deutschen Oper BerlinOrchestras Of The German Opera House, BerlinOrchestre De L Opéra De BerlinOrchestre De L'Opera De BerlinOrchestre De L'Opera National De BerlinOrchestre De L'Opéra Allemand De BerlinOrchestre De L'Opéra De BerlinOrchestre De L'Opéra De Berlin-CharlottenbourgOrchestre De L'Opéra National De BerlinOrchestre De L'Opéra National De Berlin (Solistes)Orchestre De L'opéra Municipal De BerlinOrchestre De L’Opéra De BerlinOrchestre Der Städt-Oper, BerlinOrchestre Du Deutsche Oper De BerlinOrchestre Du Deutschen Oper, BerlinOrchestre Symphonique De L'Opéra de BerlinOrchestre de L'Opéra Municipal de BerlinOrchestre de L'Opéra National de BerlinOrchestre de L'Opéra de BerlinOrchestre de Opera de BerlinOrchestre de l'Opéra Allemande de BerlinOrchestre de l'Opéra d'État de BerlinOrchestre de l'Opéra de BerlinOrchestre de l'opéra de BerlinOrchestre de l’Opéra Allemand de BerlinOrchestre du Reichoper de BerlinOrchestta Of The Deutsche Oper BerlinOrchstra Of The Deutsche Oper BerlinOrkest Der Deutschen Oper BerlinOrkest Deutsche OperOrkest Deutsche Oper BerlinOrkest Van De Berlijne OperaOrkest Van De Berlijnse OperaOrkest Van De Deutsche Oper BerlinOrkest Van De Duitse OperaOrkest Van De Duitse Opera BerlijnOrkest Van De Duitse Opera In BerlijnOrkest Van De Duitse Opera Van BerlijnOrkest Van de Berlijnse OperaOrkest van de Berlijnse OperaOrkestar Nemačke Opere, BerlinOrkesterOrkester Fra Deutsche Oper BerlinOrkester Från Deutsche Oper I BerlinOrquesta De La Deutschen Oper BerlinOrquesta De La Deutschen Oper De BerlinOrquesta De La Opera Alemana De BerlinOrquesta De La Opera Alemana De BerlínOrquesta De La Opera Alemana de BerlinOrquesta De La Opera De BerlinOrquesta De La Opera De BerlínOrquesta De La Opera Del Estado De BerlinOrquesta De La Opera Del Estado De BerlínOrquesta De La Opera Municipal De BerlinOrquesta De La Opera de BerlinOrquesta De La Ópera Alemana De BerlínOrquesta De La Ópera De BerlínOrquesta De La Ópera Del Estado De BerlínOrquesta De Ópera AlemanaOrquesta Del Estado De BerlínOrquesta Del Estado De La Opera BerlinOrquesta de la Opera Alemana de BerlinOrquesta de la Opera de BerlinOrquesta de la Ópera de BerlínOrquestra Da Opera De BerlimOrquestra Da Ópera Alemã De BerlimOrquestra Da Ópera Alemã de BerlimProfessori D'Orchestra Del Teatro Dell'Opera Di Stato Di BerlinoStaatsopera Orkest BerlijnState Opera Orchestra BerlinState Opera Orchestra, BerlinStreicher Der Deutschen Oper BerlinStreicher der Deutschen OperStreichquartett Un Kammerorchester Aus Mitgliedern Des Orchesters Der Deutschen Oper BerlinStreichquartett Und Kammerorchester Aus Mitgliedern Des Orchesters Der Deutschen Oper BerlinString Section Of The Deutsche Oper BerlinString Section Of The Deutsche Oper, BerlinStädtische Oper, BerlinSymphony OrchestraThe Berlin Charlottenburg Opera OrchestraThe Berlin State Opera OrchestraThe Chorus And Orchestra Of The German Opera, BerlinThe Deutsche Oper, BerlinThe German Opera House Orchestra, BerlinThe German Opera Orchestra, BerlinThe German State Opera Orchestra, BerlinThe Opera Orchestra Berlin-CharlottenburgThe OrchestraThe Orchestra And Chorus Of The Berlin Opera CompanyThe Orchestra Of Deutsche Oper, BerlinThe Orchestra Of The Berlin OperaThe Orchestra Of The Berlin Opera CompanyThe Orchestra Of The Berlin State OperaThe Orchestra Of The Deutsches Opernhaus BerlinThe Orchestra Of The German OperaThe Orchestra Of The German Opera (Berlin)The Orchestra Of The State Opera House BerlinThe Orchestra Of The State Opera House, BerlinThe Orchestra of the Berlin State OperaThe Orchestra of the State Opera House, BerlinThe State Opera OrchestraThe State Opera Orchestra BerlinThe State Opera Orchestra, BerlinTyska Operahusets OrkesterTyska Operahusets Orkester, BerlinTyske Statsoperas Orkesterdas orchester der deutschen oper berlinorquesta De La Ópera De BerlínБерлинской Городской ОперыОБРОркестр Берлинской Государственной ОперыОркестр Берлинской Оперыベルリン・ドイツ・オペラ管弦楽団Orchester Des Deutschen OpernhausesOrchester Der Städtischen Oper BerlinMartin SchaalChristoph NiemannCees van SchaikMatthias BäckerJuan Lucas AisembergChie PetersAndrei GridtchoukTomasz TomaszewskiDonald RunniclesKiichiro MamineRafael Frühbeck De BurgosArthur HornigGerhard RapschDieter VelteAnnette ReadHorst SprengerHeinz TietjenHelge BartholomäusRudolf SchulzKonradin GrothGiorgio SilzerRenate RuscheUlrich BerggoldTina KimEric KirchhoffMatthias KirchnerRalf SpringmannDetlev GrevesmühlThomas Berg (7)Joachim WeigertUwe KöllerUlrich Wittke-HußmannNorbert PförtschMartin WagemannGuntram HalderThomas Richter (7)Gerhard GreifGottfried Schmidt-EndersIkki OpitzWolfgang HerzfeldWolfgang GrögerKurt KratzDaniel DraganovThomas RugeRüdiger RuppertJohannes MirowElisabeth GlassStefan JoppienAlexander MeyMatthias Perl (2)Juan Manuel González (2)Sebastian KrolHardy WenzelRainer GreisHerwig OswalderThomas KollikowskiJamie Williams (9)Darja JerabekDavid BroxAnne SchinzMinhee LeeRuben ToméRalf KosubekMichael HusslaJuan Pastor (4)Rachel Helleur-SimcockKrzysztof PolonekJuan Pechuan RamirezEkkehard BeringerDaniela JungMichail-Pavlos SemsisAndre Robles FieldThomas Grote (2)Wolfgang Engel (4)Willi Rosenthal (2) + +841437Lazar GosmanЛазарь ГозманSoviet-American violinist and conductor (* 27 May 1926 in Kiev, Ukraine, Soviet Union; † 08 June 2019 in New York, USA). +In 1977 he emigrated to the United States. +Soon after his arrival, he became concertmaster of the [a834226], professor at the St. Louis College of Music, and artistic director and conductor of the Kammergild Chamber Orchestra of St. Louis, which he founded. +In 1979, he organized the [a841438] from musicians who had left the USSR, with which he actively performed.Needs Votehttp://de.wikipedia.org/wiki/Lazar_Gosmanhttps://theviolinchannel.com/violinist-lazar-gosman-has-died-passed-away/https://www.conservatory.ru/esweb/gozman-lazar-mikhaylovich-1926-posle-1995GozmanL. GosmanL. GozmanLasar GosmanLasar GosmannLaser GosmanLazar GozmanLazare GozmanTchaikovsky Chamber OrchestraЛ. ГозманЛ.ГозманЛазарь ГозманSaint Louis Symphony OrchestraTchaikovsky Chamber OrchestraLeningrad Chamber Orchestra + +841439Jean-Claude MalgoireFrench conductor, oboe player and musicologist (b. 25th November, 1940 in Avignon, France; d. 14th April, 2018)Needs Votehttps://en.wikipedia.org/wiki/Jean-Claude_Malgoirehttps://www.bach-cantatas.com/Bio/Malgoire-Jean-Claude.htmJ-C MalgoireJ-C. MalgoireJ. C. MalgoireJ. C. MalgoireJ.-C. MalgoireJ.-Claude MalgoireJ.C. MalgoireJean Claude MalgoireJean-Claude MalgloireJean-Claude MalgoirJean-Claude MalgorieMalgoireFlorilegium Musicum De ParisLa Grande Ecurie Et La Chambre Du RoyEnsemble D'instruments Anciens (2) + +841441Raymond LeppardRaymond John LeppardRaymond Leppard, CBE (born 11 August 1927, London, England - died 22 October 2019, Indianapolis, Indiana, USA) was an English-American conductor, harpsichordist, composer & editor. In the 1960s, he played a prime role in the rebirth of interest in Baroque music. he was appointed Music Director of the [a=Indianapolis Symphony Orchestra] in 1987 (a position which he held for fourteen years). +In 1973, the Republic of Italy conferred upon him the title of Commendatore della Republica Italiana for services to Italian music. He received an Honorary Degree of a Doctor of Letters by the [l1721007] in 1973. He was appointed a Commander of the Order of the British Empire (CBE) in 1983. He became an American citizen in 2003.Correcthttps://www.youtube.com/channel/UCmuAZLuW077Z6HRNeonWLNwhttps://open.spotify.com/artist/2gmqUxDMYaVWCYfdmjqcT3https://www.last.fm/music/Raymond%20Leppardhttps://en.wikipedia.org/wiki/Raymond_Leppardhttp://www.bach-cantatas.com/Bio/Leppard-Raymond.htmhttps://musicianbio.org/raymond-leppard/https://www.indianapolissymphony.org/profile/raymond-leppard/https://www.gramophone.co.uk/other/article/raymond-leppard-champion-of-baroque-opera-and-so-much-more-has-diedhttps://www.prestomusic.com/classical/articles/2931--obituary-raymond-leppard-1927-2019https://www.npr.org/2019/10/22/771849121/conductor-and-composer-raymond-leppard-a-champion-of-the-old-and-the-new-has-die?t=1633540795443https://www.eamdc.com/news/in-memoriam-raymond-leppard-cbe/https://www.theguardian.com/music/2019/oct/25/raymond-leppard-obituaryhttps://www.thetimes.co.uk/article/raymond-leppard-obituary-7ftktd8dshttps://www.heraldscotland.com/opinion/18007974.obituary-raymond-leppard-conductor-former-principal-guest-conductor-scottish-chamber-orchestra/https://www.nytimes.com/2019/10/22/arts/music/raymond-leppard-dead.htmlhttps://www.imdb.com/name/nm0503370/5LeppardR. LeppardRay LeppardР. ЛеппардРеймънд ЛепърдРејмонд ЛипардレパードLondon Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsBath Festival Orchestra + +841453Julian BreamJulian Alexander BreamBritish guitarist and lutenist. +Born: 15th July 1933 Battersea, London, England. +Died: 14th August 2020 Donhead St. Andrew, Wiltshire, England. +Widely recognized as one of the most important classical guitarists of the 20th century. Many contemporary composers have worked with Bream and dedicated pieces to him, and he has also been successful in renewing popular interest in the Renaissance lute. +Appointed as OBE in 1964 and CBE in 1985.Needs Votehttps://en.wikipedia.org/wiki/Julian_Breamhttp://www.julianbreamguitar.com/https://www.facebook.com/breamguitaristhttps://myspace.com/breamjulianhttps://www.imdb.com/name/nm0106438/BreamJ. BreamJulianJulian BeamJulian Bream, GuitarJulian BreemJulien BreamJulián BreamSir Julian BeamSir Julian BreamThe Julian Bream ConsortJulian Bream & Friends + +841454Sylvius Leopold WeissSylvius Leopold WeißGerman composer and lutenist (born in Breslau, October 12, 1687 - died October 16, 1750). +Brother of [a=Johann Sigismund Weiss].Needs Votehttp://www.slweiss.com/https://en.wikipedia.org/wiki/Sylvius_Leopold_WeissL. S. WeissL. WeissL.S. WeissLeopold Silvius WeissLeopold Sylvius WeissLeopold Sylvus WeissLeopold WeissLeopoldus Silvius WeissS L WeissS. L. WeissS. Leopold WeissS.-L. WeissS.L. WeissS.L. WeißS.L.WeissS.L.WeißSil. Leo. WeissSilvio Leopold WeissSilvio Leopoldo WeissSilvio Leopoldo WeißSilvius L. WeissSilvius Leopold WeisSilvius Leopold WeissSilvius Leopold Weiss (1686-1775)Silvius Leopold WeißSilvius Leopold WiessSilvius-Leopold WeissSylvius L. WeissSylvius Leopald WeissSylvius Leopold WeißSylvius Leopoldus WeissSylvius Léopold WeissSylvius WeissSylvius-Leopold WeissSylvius-Léopold WeissWeissЗильвиус Леопольд ВайсС. Л. ВайсStaatskapelle Dresden + +841455Robert de ViséeRobert de ViséeGuitarist, theorbo and viol player, singer and composer (born ca.1655 – died 1732/33). +He may have studied with Corbetta. About 1680 he became a chamber musician to Louis XIV, in which capacity he often performed at court. In 1709 he was appointed a singer in the royal chamber, and in 1719 he formally became guitar teacher to the king. Rousseau stated that he also played the viol at court. With Francesco Corbetta he was the foremost guitar composer of the French Baroque. Visée's two books of guitar music, "Livre di guittarre dédié au roy" (Paris, 1682) and "Livre de piéces pour la guittarre" (Paris 1686), contain twelve suites between them. He also wrote works for Baroque lute and theorbo. +Needs Votehttp://en.wikipedia.org/wiki/Robert_de_Vis%C3%A9ehttps://www.theaudiodb.com/artist/156197-Robert-de-Vis%C3%A9eDe ViséeDe ViseeDe ViseéDe ViséeDeViseeR. De ViseeR. De ViseéR. De ViséeR. d. ViséeR. de ViseeR. de ViséeR. deViséeRobert De ViseeRobert De ViséeRobert DeviseeRobert de ViseeRobert de ViseéRobert de ViséeRoberto De ViséeRoberto de ViseeRoberto de ViseoRoberto de ViséeViseeViséede Viseede ViséeР. Де ВизеР. де ВизеРоберт де-Визе + +841533Tamás VásáryHungarian pianist, born 11 August 1933 in Debrecen, Hungary.Needs Votehttps://de.wikipedia.org/wiki/Tam%C3%A1s_V%C3%A1s%C3%A1ryT. VasaryT. VàsàryT. VásáryTamas VararyTamas VasaryTamas VàsàryTamas VásáryTamàs VàsàryTamàs VásáryTamás VásaryTàmas VàsàryTámás VásáryVasaryVàsàryVásáryVásáry TamásТамаш Вашариタマーシュ・ヴァーシャリタマーシュ・ヴァーシャーリタマーシュ・ヴィシャーク + +841571Derek Lee RaginAmerican countertenor & alto vocalist, born June 17, 1958 in West Point, New York, USA.Needs Votehttp://www.derekleeragin.net/http://en.wikipedia.org/wiki/Derek_Lee_RaginDereck Lee RaginDerek L. RaginDerek RaginRaginデレク・リー・レイギンThe Monteverdi Choir + +841582Robert MarcellusAmerican clarinetist and teacher, born 1 June 1928 in Omaha, Nebraska and died 31 March 1996 in Evanston, Illinois.Needs Votehttps://en.wikipedia.org/wiki/Robert_MarcellusMarcellusロバート・マルチェレスThe Cleveland OrchestraNational Symphony OrchestraUnited States Air Force Band + +841585Lucien CaillietLucien Cailliet (born May 27, 1891 in Châlons-sur-Marne, France - died January 3, 1985 in Los Angeles, California, USA) was a composer, arranger, conductor and clarinetist. + +His name is often misspelled as "Lucien Caillet" on printed music. +Needs Votehttps://adp.library.ucsb.edu/names/109015https://en.wikipedia.org/wiki/Lucien_CaillietCailletCaillietCallietCalliettDr. Lucien CaillietL. CailletL. CaillietLuchien CaillietLucien CailletLucien CalletLucien CallietカイエThe Philadelphia Orchestra + +841590The Ambrosian Opera ChorusNeeds Votehttps://en.wikipedia.org/wiki/Ambrosian_Singershttps://www.bach-cantatas.com/Bio/Ambrosian-Singers.htmAllAmbrosia Opera ChorusAmbrosian ChorusAmbrosian Light Opera ChorusAmbrosian Opera ChoirAmbrosian Opera ChorosAmbrosian Opera ChorusAmbrosian Opera Chorus & Philharmonia OrchestraAmbrosian Opera Chorus Philharmonia OrchestraAmbrosian Opera Kórus (London)Ambrosian Operas ChorusAmbrosian-oopperakuoroAmbrozijski Operni ZborAngelsBoys / GirlsChoir Of The Accademia Di Santa CeciliaChorChorusChorus Of The Ambrosian OperaChœurs De Ambrosian OperaCompanyCoro Ambrosian OperaCoro Dell'Opera AmbrosianaGirl's ChorusLadies Of The Ambrosian ChorusLos Ambrosian Opera ChorusMembers Of The Ambrosian Opera ChorusMembers of the Ambrosian Opera ChorusMen Of The Ambrosian Opera ChorusMen Of The Ambrosian OrchestraPassengersSailorsSoloists, The Ambrosian Opera ChorusThe Ambrosia Opera ChorusThe Ambrosian ChorusThe Ambrosian Light Opera ChorusThe Ladies Of The Ambrosian ChorusАмброзийский Оперный ХорОперный Хор "Амброзиан"Оперный Хор «Амброзиан»Хор "Амброзиан"Хор «Амброзиан»The Ambrosian SingersJohn McCarthy + +841592Tamara SmirnovaViolinist, born 1958 in Siberia.Needs VoteT. SmirnovaTamara Smirnova SajfarTamara Smirnova ŠajfarTamara Smirnova-ŠajfarBoston Pops OrchestraBoston Symphony OrchestraZagrebačka Filharmonija + +841593Orchestra Del Teatro Alla ScalaEnsemble of the opera house Teatro alla Scala in Milan, Italy, the theatre was inaugurated on 3 August 1778.Needs Votehttps://www.filarmonica.it/https://it.wikipedia.org/wiki/Orchestra_del_Teatro_alla_Scalahttps://adp.library.ucsb.edu/names/103441"La Scala" OrchestraA Milánói Scala ZenekaraArtistes, Choeurs Et Orchestre De La Scala De MilanAvec Les Membres De L'Orchestre Du Théâtre De La Scala, MilanBallet Company And Orchestra Of Teatro Alla ScalaChamber Orchestra - Members Of The Opera, MilanChoeurs De La Scala De MilanChoeurs Et Orchestre de la Scala de MilanChor Der Mailänder OperChor Und Orchester Der Mailänder ScaleChorus And Orchestra Of La Scala, MilanChœurs Et Orchestre Du Théâtre De La Scala, MilanCoro & Orchestra Del Teatro Alla Scala, MilanoCoro E Orchestra Del Teatro Alla ScalaCoro E Orchestra Del Teatro Alla Scala Di MilanoCoro E Orchestra Del Teatro Alla Scala di MilanoCoro Y Orquesta Del Teatro Alla Scala De MilánD'orchestra Del Teatro Alla "Scala"Das Orchester Der Mailänder ScalaDel Teatro Alla Scala di MilanoE Coro Del Teatro Alla ScalaFilarmonica Della ScalaG. Mailänd. Sinfonie-OrchesterGr. Mailänder Symphonie-OrchesterGrand Symphony Orchestra, MilanGrande OrchestraHet Orkest Van De Scala, MilaanL'Ente Autonomo Del Teatro Alla ScalaL'Orchestra Del Teatro Alla ScalaL'Orchestre De La Scala De MilanL'Orchestre Du Théâtre De La ScalaL'Orchestre de la Scala de MilanLa Orquesta De La Scala De MilánLa Orquesta Del Teatro Alla Scala, MilánLa ScalaLa Scala ChorusLa Scala Chorus Of MilanLa Scala EnsembleLa Scala Milan OrchestraLa Scala Opera Company Chorus And OrchestraLa Scala Opera Company OrchestraLa Scala Opera House OrchestraLa Scala Opera House Orchestra, MIlanoLa Scala Opera House Orchestra, MilanLa Scala Opera House, MilaanLa Scala Opera House, MilanLa Scala Opera OrchestraLa Scala Orch.La Scala Orch., MilanLa Scala OrchestraLa Scala Orchestra & ChorusLa Scala Orchestra Of MilanLa Scala Orchestra and ChorusLa Scala Orchestra, MilanLa Scala Ork.La Scala Philharmonic OrchestraLa Scala Symphony OrchestraLa Scala Theater OrchestraLa Scala Theatre OrchestraLa Scala Theatre Orchestra, MilanLa Scala orchestra Of MilanLa Scala-Operans Kör Och OrkesterLa Scala-Orkestern, MilanoLa Scale OrchestraLa ScallaLaScala OrchestraLeden Van Het Scala Orkest Te MilanLeden Van Het Scala Orkest, MilaanLeden van het orkest van de Scala, MilaanLente Autonomo Del Teatro Alla ScalaMailänder ScalaMailänder Scala OrchesterMailänder SymphonikerMembers Of La Scala Orch., MilanMembers Of La Scala OrchestraMembers Of La Scala Orchestra & ChorusMembers Of La Scala Orchestra MilanMembers Of La Scala Orchestra, MilanMembers Of OrchestraMembers Of Orchestra La Scala, MilanMembers Of The La Scala OrchestraMembers Of The La Scala Orchestra, MilanMembers Of The Orchestra Of La Scala, MilanMembers Of The Orchestre Du Theatre de La ScalaMembers Of la Scala Orchestra, MilanMembers of L Scala Orchestra, MilanMembers of La Scala Orch., MilanMembers of La Scala OrchestraMembers of La Scala Orchestra, MilanMembers of Orchestra La Scala, MilanMembers of the La Scala OrchestraMembers of the Orchestra of La Scala, MilanMembres De L'Orchestre De La Scala De MilanMembres De L'Orchestre Du Théâtre De La Scala MilanMembres De l'Orch. De La Scala, MilanMembres de L'orch. de la Scala, MilanMembros Da Orquestra Do Scala De MilãoMembros de la Orquesta De La Scala, MilánMet leden van het Scala-Orkest, MilaanMiembros De La Orquesta De La Scala De MilanMiembros De La Orquesta De La Scala De MilánMiembros De La Orquesta Del Teatro Alla ScalaMiembros de la Orquesta de la Scala de MilánMilan Opera Chamber OrchestraMilan Scala OrchestraMilan Symphony OrchestraMilan Teatro alla Scala OrchestraMilan. Scala OrchestraMilanon La ScalaMitdglieder Des Orchesters Der La Scala, MailandMitgl. D. Orch. Der Mailänder ScalaMitgl. Des Orchesters Der Mailander ScalaMitgl. Des Orchesters Der Scala, MailandMitgl. d. Mailänder ScalaMitgleider Des Orchester Del Mailänder ScalaMitglieder Des Orchesters Der Mailänder ScalaMitglieder Des Orchesters Der ScalaMitglieder Des Orchesters Der Scala, MailandMitglieder d. Orchesters d. Mailander ScalaMitglieder der Mailänder ScalaMitglieder des Orchesters Der Mailänder SaalaMitglieder des Orchesters der Mailander ScalaMitglieder des Orchesters der Mailänder ScalaNuova Orchestra SinfonicaOpera & Chorus of la ScalaOpera Orchestra of MilanOrcehstra Del Teatro Alla Scala, MilanoOrcestraOrcestroOrcestro Del Teatro Alla Scala, MilanoOrch.Orch. D. Teatro Alla Scala MilanoOrch. Del Teatro "La Scala" Di MilanoOrch. Del Teatro Alla "Scala"Orch. Del Teatro Alla ScalaOrch. Del Teatro Alla Scala Di MilanoOrch. Del Teatro Alla Scla Di MilanoOrch. Del Teatro alla ScalaOrch. Della "Scala"Orch. Della ScallaOrch. Du Théâtre De La Scala, MilanOrch. Of La Scala Opera House, MilanOrch. Of La Scala Opera House, Milan,Orch. Of La Scala, MilanOrch. Teatro All ScalaOrch. Teatro Alla ScalaOrch. Teatro Scala - MilanoOrch. del Teatro alla ScalaOrchesta Del Teatro Alla Scala Di MilanoOrchesta Del Teatro De La Scala De MilanOrchesta Der Mailander ScalaOrchesterOrchester Des Teatro Alla ScalaOrchester D. Mailänder ScalaOrchester Del Mailänder ScalaOrchester Del Teatro Alla ScalaOrchester Der Mailander ScalaOrchester Der Mailänder "Scala"Orchester Der Mailänder OperOrchester Der Mailänder ScalaOrchester Der Mainlander ScalaOrchester Der Mällander ScalaOrchester Des Teatro All ScalaOrchester Des Teatro Alla ScalaOrchester Des Teatro Alla Scala MilanoOrchester Teatro Alla Scala MailandOrchester Teatro Alla Scala, MailandOrchester Und Chor Der Mailänder ScalaOrchester der Mailander ScalaOrchester der Mailänder ScalaOrchester der Mäilander ScalaOrchestraOrchestra "Alla Scala"Orchestra &Orchestra & Chorus Of La Scala, MilanOrchestra & Chorus Of La Scala. MilanOrchestra & Coro Del Teatro Alla Sala Di MilanoOrchestra & Coro Del Teatro Alla ScalaOrchestra & Coro Del Teatro Alla Scala Di MilanoOrchestra - teatro alla Scala - MilanoOrchestra Alla ScalaOrchestra Alla Scala Di MilanoOrchestra Alla Scala, MilanoOrchestra AndOrchestra And Chorus Of La Scala Opera HouseOrchestra And Chorus Of La Scala Opera House, MilanOrchestra And Chorus Of La Scala TheatreOrchestra And Chorus Of La Scala, MilanOrchestra And Chorus Of Teatro Alla Scala, MilanOrchestra Completa Della Scala di MilanoOrchestra D'Archi Della Scala Di MilanoOrchestra De La Scala MilanOrchestra De La Scala, MilanOrchestra Del "Teatro Alla Scala"Orchestra Del "Teatro Alla Scala", MilanoOrchestra Del Piccola Scala Di MilanoOrchestra Del Teatro "Alla Scala" Di MilanoOrchestra Del Teatro "La Scala"Orchestra Del Teatro A La Scala Di MilanoOrchestra Del Teatro Ala Scala Di MilanoOrchestra Del Teatro All ScalaOrchestra Del Teatro Alla "ScalaOrchestra Del Teatro Alla "Scala"Orchestra Del Teatro Alla Scala A MilanoOrchestra Del Teatro Alla Scala DI MilanoOrchestra Del Teatro Alla Scala De MilanoOrchestra Del Teatro Alla Scala Di MilanOrchestra Del Teatro Alla Scala Di MilanoOrchestra Del Teatro Alla Scala Di MilianoOrchestra Del Teatro Alla Scala MilanoOrchestra Del Teatro Alla Scala di MilanOrchestra Del Teatro Alla Scala di MilanoOrchestra Del Teatro Alla Scala, MIlanoOrchestra Del Teatro Alla Scala, MilanOrchestra Del Teatro Alla Scala, MilanoOrchestra Del Teatro Alla Scala, MilaonoOrchestra Del Teatro Alla Scala. MilanoOrchestra Del Teatro Alla «Scala»Orchestra Del Teatro De La Scala De MilánOrchestra Del Teatro Della ScalaOrchestra Del Teatro Della Scala Di MilanoOrchestra Del Teatro Della Scala di MilanoOrchestra Del Teatro alla Scala di MilanoOrchestra Del Teatro de la Scala de MilanOrchestra Del Theatro Alla Scala Di MilanoOrchestra Del Theatro Della ScalaOrchestra Della Piccola ScalaOrchestra Della Piccola Scala Di MilanoOrchestra Della Piccola Scala di MilanoOrchestra Della ScalaOrchestra Della Scala Di MilanoOrchestra Della Teatro Alla Scala Di MilanoOrchestra Der Scala MailandOrchestra Des Teatro Alla Scala Di MilanoOrchestra Do Scala De MilaoOrchestra EOrchestra E Coro DelOrchestra E Coro Del Teatro Alla ScalaOrchestra E Coro Del Teatro Alla Scala Di MilanoOrchestra E Coro Del Teatro Alla Scala MilanoOrchestra E Coro Del Teatro Alla Scala di MilanoOrchestra E Coro Del Teatro Alla Scala, MilanOrchestra E Coro Del Teatro Alla Scala, MilanoOrchestra E Coro Del Teatro Alla ScallaOrchestra E Coro Della Scala Di MilanoOrchestra Filarmonica Della ScalaOrchestra La ScalaOrchestra La Scala MilanOrchestra La Scala, MilaOrchestra MilanoOrchestra Of "La Scala"Orchestra Of "Teatro Alla Scala"Orchestra Of LScalaOrchestra Of La ScalaOrchestra Of La Scala Di MilanOrchestra Of La Scala MilanOrchestra Of La Scala MilanoOrchestra Of La Scala Opera HouseOrchestra Of La Scala Opera House MilanOrchestra Of La Scala Opera House, MIlanOrchestra Of La Scala Opera House, MilanOrchestra Of La Scala Opera, MilanOrchestra Of La Scala di MilanoOrchestra Of La Scala, MilanOrchestra Of La Scala, MilanoOrchestra Of La Scala. MilanOrchestra Of La Scalla, MilanOrchestra Of Scala MilanOrchestra Of Teatro Alla ScalaOrchestra Of Teatro Alla Scala Di MilanoOrchestra Of Teatro Alla Scala MilanOrchestra Of Teatro Alla Scala, MilanOrchestra Of Teatro Alla Scala, Milan, TheOrchestra Of Teatro Alla Scalla, MilanOrchestra Of Teatro alla Scala, MilanOrchestra Of The "La Scala" TheatreOrchestra Of The Opera Di MilanoOrchestra Of The Scala Opera House, MilanOrchestra Of The Scala TheatreOrchestra Of The Teatro Alla ScalaOrchestra Of The Teatro Alla Scala Di MilanoOrchestra Of The Teatro Alla Scala, MilanOrchestra Of The Teatro Alla Scala, MilanoOrchestra Of The Teatro alla ScalaOrchestra Of The Teatro alla Scala, MilanOrchestra Of The Theater Of The Scala Of MilanOrchestra Of la ScalaOrchestra Of la Scala MilanOrchestra Of la Scala Opera House, MilanOrchestra Of la Scala, MilanOrchestra Operei „La Scala“ din MilanoOrchestra Operei „Scala“ din MilanoOrchestra Professori Teatro Alla Scala Di MilanoOrchestra Sinfonica Della ScalaOrchestra Sinfonica della ScalaOrchestra Teatro Alla ScalaOrchestra Teatro Alla Scala MilanoOrchestra Teatro ScalaOrchestra Teatro Scala Di MilanoOrchestra and Chorus Of La Scala, MilanOrchestra de la ScalaOrchestra dei professori del Teatro alla ScalaOrchestra del Teatro Alla ScalaOrchestra del Teatro all Scala di MilanoOrchestra del Teatro alla ScalaOrchestra del Teatro alla Scala MilanoOrchestra del Teatro alla Scala de MilánOrchestra del Teatro alla Scala di MilanoOrchestra del Teatro alla Scala, MilanOrchestra del Teatro alla Scala, MilanoOrchestra del Theatro alla Scala Di MilanoOrchestra del Theatro alla Scala di MilanoOrchestra eOrchestra e Coro del Teatro all ScalaOrchestra e Coro del Teatro alla ScalaOrchestra of La ScalaOrchestra of La Scala MilanOrchestra of La Scala Opera House, MilanOrchestra of La Scala Theater, MilanOrchestra of La Scala, MilanOrchestra of Teatro Alla Scala MilanOrchestra of Teatro Alla Scala, MilanOrchestra of Teatro La Scala MilanOrchestra of the Teatro Alla ScalaOrchestra of the Teatro Alla Scala, MilanOrchestra of the Teatro all ScalaOrchestra of the Teatro alla ScalaOrchestra of the Teatro alla Scala, MilanOrchestra sel Teatro alla ScalaOrchestreOrchestre Du Théatre De La Scala De MilanOrchestre De Chambre De Milan (Membres De L'Orchestre Du Théâtre De La Scala De Milan)Orchestre De La ScalaOrchestre De La Scala De MilanOrchestre De La Scala MilanOrchestre De La Scala de MilanOrchestre De La scala De MilanOrchestre De Teatro Alla Scala, MilanOrchestre De Teatro Alla ScallaOrchestre Du Teatro Alla Scala Di MilanoOrchestre Du Teatro Alla Scala, MilanOrchestre Du Teatro Alla ScallaOrchestre Du Theatre De La ScalaOrchestre Du Theatre De La Scala, MilanOrchestre Du Theatre La Scala De MilanOrchestre Du Theatre de La ScalaOrchestre Du Théatre De La Scala, MilanOrchestre Du Théatre De La Scala De MilanOrchestre Du Théatre De La Scala de MilanOrchestre Du Théatre De La Scala, MilanOrchestre Du Théatre De La Scala, Milan*,Orchestre Du Théâre De La ScalaOrchestre Du ThéâtreOrchestre Du Théâtre De La ScalaOrchestre Du Théâtre De La Scala , MilanOrchestre Du Théâtre De La Scala De MilanOrchestre Du Théâtre De La Scala De Milan*Orchestre Du Théâtre De La Scala, MilanOrchestre Du Théâtre De La Scalla De MilanOrchestre Du Théâtre de La Scala, MilanOrchestre Du Théâtre de la Scala de MilanOrchestre Du Théâtre de la Scala, MilanOrchestre Et Choeur Du Théâtre De La ScalaOrchestre Et Choeurs Du Théatre De La Scala, MilanOrchestre Et Chœur Du Théâtre De La Scala, MilanOrchestre Et Chœurs De La Scala De MilanOrchestre Et Chœurs Du Théâtre De La Scala De MilanOrchestre Of La Scala Opera House, MilanOrchestre Symphonique De La Scala De MilanOrchestre de Theatre à la Scala de MilanOrchestre de la ScalaOrchestre de la Scala de MilanOrchestre de la Scala de MilanoOrchestre du Teatro alla ScalaOrchestre du Théâtre de La Scala, MilanOrchestre du Théâtre de la ScalaOrchestre du Théâtre de la Scala de MilanOrchestro Del Teatro Alla ScalaOrchsestra Of La Scala Opera House, MilanOrchstra Of La Scala, Milan, TheOrcquesta Del Teatro Alla Scala de MilanOrkest Van De ScalaOrkest Van De Scala In MilaanOrkest Van De Scala MilaanOrkest Van De Scala Opera MilaanOrkest Van De Scala Opera Te MilaanOrkest Van De Scala Opera, MilaanOrkest Van De Scala, MilaanOrkest van de Scala MilaanOrkestar Milanske ScaleOrkestar Milanske SkaleOrkestrom Milanske ScaleOrkets Scala MilaanOrq. De La Scala, MilanOrq. de La Scala de MilánOrqestra Do Teatro Alla ScalaOrquestaOrquesta Sinfonica Del Teatro De La ScalaOrquesta Amichi Del ScalaOrquesta De La ScalaOrquesta De La Scala De MilanOrquesta De La Scala Di MilanoOrquesta De La Scala de MilánOrquesta De La Scala, MilanOrquesta De La Scala, MilánOrquesta De Teatro De La Scala De MilanOrquesta Del Teatro Alla ScalaOrquesta Del Teatro Alla Scala De MilanOrquesta Del Teatro Alla Scala De MilánOrquesta Del Teatro Alla Scala, MilanOrquesta Del Teatro Alla Scala, MilanoOrquesta Del Teatro Alla Scala, MilánOrquesta Del Teatro Alla ScallaOrquesta Del Teatro De La Escala De MilánOrquesta Del Teatro De La ScalaOrquesta Del Teatro De La Scala De MilanOrquesta Del Teatro De La Scala De MilánOrquesta Del Teatro De La Scala, De MilánOrquesta Del Teatro De La Scala, MilanOrquesta Del Teatro De La Scala, MilánOrquesta Del Teatro La Scala De MilánOrquesta Sinfonica Del Teatro De La EscalaOrquesta Y Coro Del Teatro Alla ScalaOrquesta de Cuerdas de la Scala de MilanoOrquesta de La Scala De MilanOrquesta de La Scala de MilánOrquesta de la Scala de MilanOrquesta de la Scala de MilánOrquesta de la Scala, MilánOrquesta del Teatro Alla Scalla de MilánOrquesta del Teatro De La Scala De MilanOrquesta del Teatro alla ScalaOrquesta del Teatro de La Scala de MilánOrquesta del Teatro de La Scala, MilánOrquesta del Teatro de la Escala, de MilánOrquesta del Teatro de la ScalaOrquesta del Teatro de la Scala de MilánOrquestra Amichi Del ScalaOrquestra De Camara Membros Da Orquestra Do "Scala" De MilãoOrquestra Do Scala De MilãoOrquestra Do Teatro Alla ScalaOrquestra Do Teatro Alla Scala De MilãoOrquestra Do Teatro Alla Scala, De MilãoOrquestra Do Teatro Della ScalaOrquestra Do Teatro Scala De MilãoOrquestra E Coro Do La Scala, MilãoOrquestra E Coro Do Teatro Alla ScalaOrquestra E Coros Do Scala, de MilãoOrquestra E Côro Do "La Scala" MilãoOrquestra E Côro Do Scala De MilãoOrquestra Sinfonica do Scala, De MilãoOркестр Tеатра ла СкалаProfess. D'Orch. Del Teatro Alla ScalaProfessori D'OrchestraProfessori D'Orchestra And Artisti Del Coro Of La ScalaProfessori D'Orchestra Del Teatro Alla ScalaProfessori D'Orchestra Del Teatro Alla “Scala”Professori D'Orchestra EProfessori D'Orchestra E Coro Del Teatro Alla ScalaProfessori D'Orchetra E Coro Del Teatro Alla ScalaProfessori Del Teatro Alla ScalaProfessori D’ Orchestra Del Teatro Alla “Scala"Professori Orchestra "Teatro Scala"Professori Orchestra Teatro Alla ScalaProff. D' Orchestra Del Teatro Alla "Scala"Proff. D' Orchestra Del Teatro Alla ScalaProff. D'Orch Del Teatro "Alla Scala"Proff. D'Orch.Proff. D'Orch. Del Teatro Alla "ScalaProff. D'Orch. Del Teatro Alla ScalaProff. D'Orch. Della "Scala"Proff. D'Orchestra Dal Teatro Alla "Scala"Proff. D'Orchestra Del Teatro Alla "Scala"Proff. D'Orchestra Del Teatro Alla ScalaProff. D'Orchestra Del Teatro Alla “Scala”Proff. D'Orchestra E Coristi Del Teatro Alla ScalaProff. D'Orchestra E Coro Del Teatro Alla "Scala"Proff. D’ Orch. Del Teatro Alla ScalaProff. D’ Orchestra Del Teatro Alla “Scala"Proff. Orch. "Teatro Alla Scala"Proff. Orch. Del Teatro Alla ScalaProff. Orch. Della "Scala"Proff. Orch. Teatro Alla ScalaProff. Orchesra Del Teatro Alla "Scala"Proff. Orchesra Del Teatro Alla "Scala" - MilanoProff. Orchestra Del Teatro Alla ScalaProff. Orchestra Del Teatro Della Scala - MilanoProff. Orchestra Teatro Alla ScalaProff. d' Orch. Del Teatro Alla ScalaProff. d' Orch. Teatro Alla ScalaProff. d'Orch. Del Teatro Alla "Scala"Proff. d'Orch. Del Teatro Alla ScalaProff. d'Orch. Teatro Alla ScalaProff. d'Orchestra Teatro ScalaProff.D'Orch. Del Teatro Alla "Scala"Sbor A Orchestr Milánského Teatro Alla ScalaScaOrchScalaScala Opera Of MilanoScala Operaens OrkesterScala Symphonie OrchesterScala Theater OrchestraSestetto D'Archi Di MilanoSestetto d'archi di MilanoSinfonie-Orchester Des RAI RomSolistas Do Scala de MilãoSoloists And Orchestra Of La ScalaSoloists Of La Scala Opera CompanySoloists Of The La Scala Philharmonic OrchestraSoloists Of The Philharmonic Orchestra Of La ScalaSoloists of the Scala Philharmonic OrchestraSoloists, Chorus & Orchestra of Teatro alla Scala, MilanStaatskapelle BerlinString Orchestra Of La ScalaTeatro AllaTeatro Alla La ScalaTeatro Alla ScalaTeatro Alla Scala Chorus & OrchestraTeatro Alla Scala Di Milano OrchestraTeatro Alla Scala MilanTeatro Alla Scala MilanoTeatro Alla Scala OrchestraTeatro Alla Scala, MilanoThe La Scala OrchestraThe OrchestraThe Orchestra And Chorus Of La ScalaThe Orchestra Of "La Scala", MilanThe Orchestra Of La ScalaThe Orchestra Of La Scala Opera House, MilanThe Orchestra Of La Scala, MilanThe Orchestra Of Teatro Alla Scala, MilanThe Orchestra Of The La Scala Theatre Of MilanThe Orchestra Of The Scala, MilanThe Scala OrchestraThe Scala Orchestra And ChorusTheatro Alla Scala MilanWith Members Of La Scala Orch. Milanand Orchestra of La Scala Opera House, Milan«La Scala» OrchestraΟρχήστρα Teatro Alla ScalaΟρχήστρα Της La Scala Του ΜιλάνουΟρχήστρα Του Θεάτρου Της ΣκάλαςΟρχήστρα Του Θεάτρου Της Σκάλας Του ΜιλάνουΟρχήστρα της La Scala του ΜιλάνουМиланский Театр "Ла Cкала" В МосквеОрк. "Скаля"Орк. Подъ упр. СабаиноОркестр Театра "La Scala"Оркестр "Ла Скала"Оркестр "Скаля"Оркестр Tеатра «Ла Скала»Оркестр Миланского Оперного Театра "Ла Скала"Оркестр Миланского Театра "Ла Скала"Оркестр Миланского Театра «Ла Скала»Оркестр Миланского Тетра "Ла Скала"Оркестр Театра "Ла Скала"Оркестр Театра «Ла Скала»Оркестр Театра Ла СкалаСимфоническiй Оркестръ Въ МиланѣХор И Оркестр Миланского Театра "Ла Скала"Хор И Оркестр Театра "Ла Скала"Хор И Оркестр Театра Ла Скалаミラノ・スカラ座管弦楽団Nigel BlackBruno CaninoUmberto GalliAnahi CarfiMarco ScanoOvidio DanziGlauco CambursanoGiuseppe BodanzaAlberto NegroniEnnio MioriArmando BurattinEnrico GroppoStefano VicentiniRoberto BortoluzziAntonio PocaterraAlfonso GhedinFranco FantiniMario GusellaMarcello TurioBruno SalviFrancesco CatenaAugusto VismaraMichele BerrinoAdolfo StrappoUlrich Von WrochemNazareno CicoriaBenedetto FocarinoAdriano BertozziGenuzio GhettiErnesto DoimoAldo NardoGiovanni BraghirolliFranco ScottoGiacomo PoglianiEzio PederzaniGuido ToschiBattistino BacchettaAlfredo PanciroliBruno CavalloEnzo BertelliEnrico LongariJürgen FranzArrigo GalassiFerruccio De PoliDomenico RighettiSimone BernardiniGilberto CrepaxAlcide CarpanaStefano Monti (2)Renato MusiMario Moretti (4)Miles TurollaPaolo Del Pistoia (2)Carlo CapriataLuigi Del CarmineLuigi GramaticaOreste Canfora (2)Alfonso FededegniAldo GaraviniGiuseppe Rocca (2)Lidia Borri MottolaAlberto MorettiMichelangelo MojoliFrancesco RanzaniAngelo AbruzziDomenico RenzettiRenato Romano (2)Edgardo MacchinizziGianni PorzioGiuseppe VolpatoLuigi GoviMariano FrigoMichele Seccia-pesceVittorio ErniniWalter FalcomerLuigi VecciaWalter CalettiImmanuel RichterRaffaele BracaleStefano CardoEmanuele Pedrani (2)Teatro Alla Scala + +841660Elly AmelingElisabeth Sara AmelingDutch operatic soprano, born 8 February 1933 in Rotterdam, The Netherlands.Needs Votehttps://en.wikipedia.org/wiki/Elly_AmelingAmeligAmelingE. AmelingElli AmelingElly AmellingЭлли Амелингエリー・アメリンク + +841674Helmut WalchaArthur Emil Helmut WalchaGerman organist, harpsichordist and pedagogue born on October 27, 1907 in Leipzig, Germany and died on August 11, 1991 in Frankfurt am Main, Germany. +Needs Votehttps://en.wikipedia.org/wiki/Helmut_WalchaH. WalchaHelmut WachaHelmut Walcha (Organ Of St. Jakobi, Lübeck)Helmut Walcha, Ammer-CembaloWalchaХельмут Вальхаヘルムート・ヴァルハヘルムート・ヴァルヒャ + +841675Dr. Gerd PloebschRecording supervisor and producer for Deutsche Grammophon / Archiv Produktion.CorrectDr Gerd PloebschDr. G. PloebschDr. Gerhard PloebschDr. ゲルト・プレーブシュGerd Ploebsch + +841676Hansjoachim ReiserSound engineer and producer for recordings of classical music.CorrectHans Reisser, NDRHans-Joachim Reiserハンス・ヨアヒム・ライザー + +841735Raymond ClarkRaymond ClarkClassical cellist. +Former Principal Cellist with the [a=Philharmonia Orchestra].Needs Votehttps://open.spotify.com/artist/1M4br57uyD78SH9kgy3Nt3https://music.apple.com/us/artist/raymond-clark/26407030R. ClarkRay ClarkRaymond ClarkeРеймонд КларкPhilharmonia OrchestraNew Philharmonia OrchestraSadler's Wells OrchestraThe London Jazz OrchestraPhilharmonia String QuartetLondon Baroque EnsembleThe Mermaid Singers And Orchestra + +841765Hans-Peter WestermannClassical oboist.Needs Votehttp://www.wespe-oboenmanufaktur.de/H.-P. WestermanHans Peter WestermannPeter WestermannWestermannConcentus Musicus WienMusica Antiqua KölnCollegium AureumFreiburger BarockorchesterLa StagioneIl Giardino ArmonicoCantus CöllnSonatori De La Gioiosa MarcaCamerata KölnCappella ColoniensisMusica FiataDas Kleine KonzertOrchester Der Ludwigsburger SchlossfestspieleLinde-ConsortDas Neue OrchesterNeue Düsseldorfer HofmusikHimlische CantoreyFiori MusicaliDas Reicha'sche Quintett + +841766Jan van ElsackerBelgian classical tenor.Needs VoteJan Van ElsackerVan ElsackerHuelgas-EnsembleLa Petite BandeL'ArpeggiataWeser-RenaissanceCapilla FlamencaCurrendeLe Poème HarmoniqueCorona ColoniensisEnsemble La FeniceVox LuminisBergen BarokkAkadêmiaIl Trionfo Del TempoRedherring Baroque EnsembleEuropäisches Hanse-Ensemble + +841770Rhoda PatrickClassical bassoonist.Needs VoteLes Arts FlorissantsAkademie Für Alte Musik BerlinFreiburger BarockorchesterLa Petite BandeLes Musiciens Du LouvreHannoversche HofkapelleLa Stravaganza KölnOrchestra Of The 18th CenturyCappella ColoniensisEnsemble Il CapriccioFestspielorchester GöttingenGöttinger Barockorchester + +841771Wolfgang NeiningerWolfgang NeiningerClassical violinist, pianist, composer and conductor. +Born 4 February 1926 in Müllheim, Germany and died 30 November 2020 in Rheinfelden, Germany.Needs Votehttps://de.wikipedia.org/wiki/Wolfgang_NeiningerWolfgang NeinigerCollegium AureumSchola Cantorum BasiliensisCappella ColoniensisInstrumentalensemble Hans-Martin LindeKonzertgruppe Der Schola Cantorum Basiliensis + +841774Ruth NielenClassical violinist.Needs VoteRuth NeilenRuth Nielen WagnerRuth Nielen-WagnerRuth Wagner-NielenCollegium AureumDas Strub-QuartettCappella ColoniensisConsortium Musicum (2) + +841776Job BoswinkelBass vocalist.Needs VoteJos BoswinkelHuelgas-EnsembleCollegium VocaleCappella AmsterdamLa Petite BandeHolland Boys ChoirRicercar ConsortGesualdo Consort AmsterdamCurrendeCorona Coloniensis + +841779Gerhard PetersClassical violin and viola player.Needs VoteMusica Antiqua KölnCollegium AureumCappella ColoniensisQuartett Collegium Aureum + +841781Wenzel PrichaClassical percussionist.Needs VoteCappella ColoniensisConsortium Musicum (2) + +841783Ingus SchmidtIngus Schmidt (26 April 1933 - 22 July 2020) was a German classical trumpeter.Needs VoteConcentus Musicus WienCappella ColoniensisArchiv Produktion Instrumental EnsembleNDR Sinfonieorchester + +841784Sylvia BroekaertClassical soprano.CorrectSylvia BroeckaertLa Petite BandeCorona Coloniensis + +841785Hiro KurosakiJapanese-Austrian classical violinist (born 1959). +Needs VoteLes Arts FlorissantsClemencic ConsortCappella ColoniensisFelix-QuartettLa Ritirata + +841787Christophe RoussetChristophe RoussetFrench harpsichordist and conductor, born in Avignon in 1961.Needs Votehttps://web.archive.org/web/20080122022733/http://www.christophe-rousset.com/https://en.wikipedia.org/wiki/Christophe_Roussethttps://www.bach-cantatas.com/Bio/Rousset-Christophe.htmC. RoussetChristoph RoussetRoussetК. РуссеКристофер Розеクリストフ・ルセLes Arts FlorissantsThe Academy Of Ancient MusicIl Seminario MusicaleLes Talens LyriquesCappella ColoniensisTokyo Baroque Trio + +841792Robert BodenröderGerman classical trumpeter.Needs VoteRobby BodenröderRobby BoderroederRobert BodenroderRobert BodenroederCollegium AureumCappella ColoniensisEnsemble Instrumental De Lausanne + +841793Michael RobertsAmerican classical hornist born in Indianapolis, Indiana. He was a member of the [a4549709] from 1980 to 2022. + +For the artist manager, see [a=Michael Roberts (3)]. +For the photographer, see [a=Michael Roberts (6)]. +Needs Votehttps://www.theateraachen.de/de_DE/personen/michael-roberts.119866Mike RobertsConcerto KölnCappella ColoniensisSinfonieorchester AachenScala Köln + +841794Nele MintenClassical contralto / alto vocalistNeeds VoteHuelgas-EnsembleLa Petite BandeCurrendeCapella RicercarCorona Coloniensis + +841796Karlheinz HalderKarl-Heinz HalderClassical trumpeter.Needs VoteCarlheinz HalderKarl Heinz HalderKarl-Heinz HalderRadio-Sinfonieorchester StuttgartBachcollegium StuttgartCappella ColoniensisBundesjugendorchesterGerman Brass + +841797Helmut HuckeHelmut Hucke (12 March 1927 - 6 November 2013) was a German classical oboist and educator.Needs VoteH. HuckeH. HückeHelmuth HuckeHelmutt HuckeHuckeヘルムート・フッケCollegium AureumBachcollegium StuttgartMainzer KammerorchesterSchola Cantorum BasiliensisCappella ColoniensisConsortium Musicum (2)Ensemble Eduard MelkusDie Deutschen BarocksolistenCollegium St. Emmeram + +841802Ibo van IngenTenor.CorrectIbb Van IngenHuelgas-EnsembleLa Petite BandeCurrendeCorona Coloniensis + +841803Carl Philipp Emanuel BachCarl Philipp Emanuel BachBorn: 1714-03-08 (Weimar, Germany). +Died: 1788-12-14 (Hamburg, Germany). + +Carl Philipp Emanuel Bach was a German Classical period musician and composer, the fifth child and second (surviving) son of Johann Sebastian Bach and Maria Barbara Bach. +He was one of the founders of the Classical style, composing in the Rococo and Classical periods. + +Two of his brothers are [a=Wilhelm Friedemann Bach] and [a=Johann Christian Bach].Needs Votehttps://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bachhttps://www.britannica.com/biography/Carl-Philipp-Emanuel-Bachhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102418/Bach_Carl_Philipp_Emanuel(CPhE?) Bach12 to 14BachBach C. Ph. E.Bach C.P.E.Bach C.Ph.E.Bach, C. P.Bach, C. P. E.Bach, C.P.E.Bach, Carl Philipp EmanuelBach, Philipp EmanuelC P E BachC P E BachC Ph Em BachC. BachC. E. E. BachC. F. E. BachC. P E BachC. P. BachC. P. E. BachC. P. Emanuel BachC. PH E. BachC. PH. E BachC. PH. E. BachC. Ph. BachC. Ph. E BachC. Ph. E. BachC. Ph. E. BachC. Ph. Em. BachC. Ph. Emanuel BachC.-P.-E. BachC.-Ph. E. BachC.E. BachC.F.E. BachC.P. E. BachC.P.E BachC.P.E.C.P.E. BachC.P.E. Bach?C.P.E. バッハC.P.E.BachC.PH.E. BachC.Ph. E. BachC.Ph. Emanuel BachC.Ph.E. BachC.Ph.E.BachC.Ph.E.バッハC.Ph.Em. BachC: Ph. E. BachCFE BachCPECPE BachCarl Emanuel BachCarl Emmanuel BachCarl P. BachCarl P. E. BachCarl P.E. BachCarl Ph. E. BachCarl Ph. Em. BachCarl Ph. Emanuel BachCarl Ph.E.BachCarl Ph.Em.BachCarl Ph.Emanuel BachCarl Phil. E. BachCarl Phil. Emanuel BachCarl PhilipCarl Philip Emanuel BachCarl Philip Emmanuel BachCarl Philipp BachCarl Philipp EmanuelCarl Philipp Emmanuel BachCarl Philippe Emanuel BachCarl Philippe Emmanuel BachCarl Phillip E. BachCarl Phillip Emanuel BachCarl Phillip Emmanuel BachCarl Phillipp Em. BachCarl-Philip-Emmanuel BachCarl-Philipp Emanuel BachCarl-Philipp Emmanuel BachCarl-Philipp-Emanuel BachCarl-Philipp-Emmanuel BachCarlo Filippo Emanuele BachCh. P. E. BachCh.Ph.E.BachCharles Philippe-Emanuel BachCharles-Philippe Emmanuel BachChr. BachChristoph Philipp EmmanuelE. BachE.BachEmanuel BachEmmanuel BachF. E. BachF.E. BachJ. C. BachK. F. E. BachasK. P. E. BachK. Ph. E. BachK.-P.-E. BachK.F.E. BachK.F.E. BahsK.P.E BachK.P.E. BachKarl Filip Emanuel BahKarl Phil. Em. BachKarl Philip Emanuel BachKarl Philipp EmanuelKarl Philipp Emanuel BachKarl Philipp Emmanuel BachKarl-Philip-Emmanuel BachKarl-Philipe-Emmanuel BachKarl-Philipp-Emanuel BachKarl-Philipp-Emmanuel BachKarl-Philippe-Emmanuel BachKarls Fīlips Emanuels BahsP. E. BachP.E. BachPh. E. BachPh. Em. BachPh. EmanuelPhil. Em. BachPhilipp Emanuel BachPhillipp Emanuel BachΚ.Φ.Ε. ΜπαχΚαρλ Φιλίπ Εμάνουελ ΜπαχИ. К. Ф. БахК. Ф. БахК. Ф. Э. БахК. Ф. Эмануэль БахК.Ф.Э. БахКарл Филип Емануел БахКарл Филипп Эмануэль БахКарл Филипп Эммануэль БахКарл Філіп Емануїл БахФ. БахФ. Э. БахФ.Э.Бахカール・フィリップ・エマヌエル・バッハThomanerchorBach-Söhne + +841806Jan Stefan WimmerClassical tenor. + +For the classical oboist, please consider [a3317686].Needs VoteJan-Stefan WimmerStefan WimmerLa Chapelle RoyaleLa Petite BandeCorona Coloniensis + +841810Hildegard van OverstraetenClassical soprano.Needs Votehttps://www.facebook.com/hildegarde.vanoverstraetenHildegarde Van OverstraetenHildegarde van OverstraetenCollegium VocaleLa Petite BandeCorona Coloniensis + +841811Simen van MechelenClassical trombonist, sackbutist and countertenor.Needs Votehttp://www.concertopalatino.com/Simen_van_Mechelen.htmlSymen Van MechelenSymen van MechelenHuelgas-EnsembleCollegium VocaleAkademie Für Alte Musik BerlinThe Amsterdam Baroque OrchestraDe Nederlandse BachverenigingL'ArpeggiataWeser-RenaissanceMusica FioritaI BarocchistiConcerto PalatinoMusica FiataCapriccio StravaganteCurrendeOltremontanoLa Cetra Barockorchester BaselLes AgrémensCorona ColoniensisEnsemble La FeniceVox LuminisHathor ConsortEnsemble La FontaineLes Cornets NoirsLa CacciaAkadêmiaInaltoLa Chapelle RhénaneSyntagma AmiciAbendmusiken BaselScorpio CollectiefBachPlusI Gemelli (2)Il Trionfo Del TempoLa ViolettaEuropäisches Hanse-Ensemble + +842011Catherine DesageJeanne Antoinette ParelFrench lyricist.Needs Votehttps://fr.wikipedia.org/wiki/Catherine_DesageC DesageC,DesageC-DesageC. DasageC. DeageC. DesageC. DesagesC. DessageC. DosageC. de LageC.DesageCath-DesageCath. DesageCatherine DessageD. DessageDesageDesage CathrineDesage CathérineDessageSesageС. ДезажJeanne Parel + +842085Kurt RedelKurt RedelGerman flutist and conductor (* 08 October 1918 in Breslau, Silesia, German Empire (today Wrocław, Poland); † 12 February 2013 in Munich, Germany). +Founder of the [a7359430] and the [a873180] (in 1953).Needs Votehttps://en.wikipedia.org/wiki/Kurt_Redelhttp://zeitblatt.com/der-dirigent-kurt-redel/K. RedelKurt RedeKurt RedlKurt RiedelKürt RedelLadislav SlovakProf Kurt RedelRedelК. РедельКурт РеделКурт Редельクルトレーデルクルト・レイデルクルト・レーデルSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De MunichKoeckert-QuartettEnsemble Instrumental De GrenobleThe Collegium Pro Arte + +842132Riccardo MutiRiccardo MutiItalian conductor, born 28.07.1941 in Naples. +He started his mainstream career in 1972 as conductor at the festival [l365596]. Starting from 1973, he was conducting the [l613318], the [a704150], [a27519], the [a754974] and the [a837562]. +From 1986 to 2005, he was director of the [l345209].Needs Votehttps://www.riccardomuti.com/https://www.facebook.com/RiccardoMutiOfficial/https://x.com/MaestroMutihttps://www.youtube.com/user/riccardomutichannelhttps://en.wikipedia.org/wiki/Riccardo_MutiConductsKlempererMutiMuttiR. MutiR.MutiRicardo MutiRicardo MuttiRiccardo MuttiР. МутиРикардо МутиРиккардо Мутиリッカルド・ムーティ + +842134Heinrich SchiffAustrian cellist and conductor (born 18 November 1951 in Gmunden, Austria; died 23 December 2016 in Vienna, Austria).Needs Votehttps://en.wikipedia.org/wiki/Heinrich_SchiffH. SchiffHenrich SchiffSchiff + +842135Maxim ShostakovichМаксим Дмитриевич ШостаковичMaxim Dmitrievich Shostakovich +Soviet / Russian conductor and pianist. Honored Artist of the RSFSR (1978). He is the second child of the Russian composer [a=Dmitri Shostakovich] and Nina Varzar. +Born: May 10, 1938, Leningrad, USSR.Needs Votehttp://en.wikipedia.org/wiki/Maxim_Shostakovichhttps://ru.wikipedia.org/wiki/Шостакович,_Максим_ДмитриевичM. S.M. ShostakovichMaksim ShostakovichMaximMaxim ChostakovitchMaxim SchostakowischMaxim SchostakowitschMaxim ShostakovitchMaxim ShostakowitchMaxim ShostakowitshMaxim ShostakóvichMaxim SjostakovitjMaxim ŠostakovičMaxime ChostakovitchMaxime ShostakovichMaxin SchostakowitschShostakovichShostakovitchМ. SosztakovicsМ. ШостаковичМаксим Шостаковичマキシム・ショスタコーヴィッチБольшой Симфонический Оркестр Всесоюзного РадиоГосударственный Симфонический Оркестр Министерства Культуры СССР + +842210John AlldisJohn AlldisEnglish choral conductor, born 10 August 1929 in London, England, UK, died 20 December 2010.CorrectAldisAlldisChorus Master John AlldisJohn AldisJohn AldissJohn AlidisДжон АлдисДжон ОлдисオールディスJohn Alldis Choir + +842223Nicolai GhiaurovНиколай Георгиев ГяуровBulgarian operatic bass. He was born 13 September 1929 in Velingrad (Велинград), Bulgaria and died 2 June 2004 in Modena, Italy. +2nd husband of [a837529].Complete and Correcthttps://en.wikipedia.org/wiki/Nicolai_Ghiaurovhttp://kkre-23.narod.ru/gyaurov.htmGhiaurovGjaurovN. GhiaurovN. GiaurovNicolai GhiaurowNicolai GjaurovNicolai GuiaurovNicolai GyaurovNicolaj GhiaurovNicolaî GhiaurovNicolaï GhiaurovNikola GhiaurovNikolai GhiaurovNikolai GhiaúrovNikolai Ghiaúrov = Николай ГяуровNikolai GiaurovNikolai GjaurovNikolaj GiaurovН. ГяуровНиколай Гяуров + +842233Henryk SzeryngHenryk SzeryngMexican-Polish violinist, born September 22, 1918, in Żelazowa Wola, Poland, considered "one of the more elegant representatives of a now fading school of Romantic violin" (NYT, March 4, 1988). He became naturalised Mexican citizen in 1946 and died on tour on March 3, 1988, in Kassel, Germany.Needs Votehttp://www.henrykszeryng.nethttps://en.wikipedia.org/wiki/Henryk_Szerynghttps://www.thirteen.org/publicarts/violin/szeryng.htmlH. SzeryngHenrik SzeryngHenryk ScheringHenryk SzeringSzeryngГ. ШерингГенрик ШерингГенрих Шеррингシェリングヘンリック・シェリングThe Academy Of St. Martin-in-the-FieldsSüdwestdeutsches Kammerorchester + +842238Eugen JochumEugen JochumGerman conductor, born 1 November 1902 in Babenhausen, Germany and died 26 March 1987 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Eugen_Jochumhttps://www.britannica.com/biography/Eugen-Jochumhttps://www.bach-cantatas.com/Bio/Jochum-Eugen.htmDirig. Staatskapellmeister Eugen JochumE. JochumE.JochumEugen JochemEugen JochunEugene JochumEugene JochunEugène JochumJochumStaatskapellmeister Eugen JochumЕвгений ИохумОйген ЙохумЭ. ЙохумЭуген Йохумオイゲン·ヨッフム = Eugen Jochumオイゲン・ヨッフムConcertgebouworkest + +842253Peter HurfordPeter John HurfordBritish organist and composer, born 22 November 1930 in Minehead, Somerset; died 3 March 2019.Needs Votehttps://en.wikipedia.org/wiki/Peter_Hurfordhttps://www.bach-cantatas.com/Bio/Hurford-Peter.htmHurfordP. Hurford + +842305Milan TurkovicAustro-Croation bassoonist and conductor, born September 14, 1939 in Zagreb. +He was a member of the Ensemble Wien-Berlin (a woodwind quintet he formed together with principal players of the Berlin and Vienna Philharmonic), the Concentus Musicus of Vienna, and the Chamber Music Society of Lincoln Center in New York. +Needs Votehttp://www.milanturkovic.com/https://en.wikipedia.org/wiki/Milan_Turković_(musician)M. TurkovicMilan TurcovicMilan TurkcovicMilan TurkevicMilan TurkivicMilan TurkovichMilan TurkovićMilan Turkovičミラン・トゥルコヴィッチBamberger SymphonikerConcentus Musicus WienEnsemble Wien-BerlinI Solisti Di PerugiaThe English ConcertWiener Mozart-BläserBerliner Solisten (2)Franz Koglmann Septet + +842307Johann Christian BachJohann Christian BachBorn: 1735-09-05 (Leipzig, Germany) +Died: 1782-01-01 (London, United Kingdom) + +Johann Christian Bach was a composer of the Classical era, the eleventh and youngest son of [a=Johann Sebastian Bach]. +He is sometimes referred to 'the London Bach' or 'the English Bach', due to his time spent living there. He is noted for influencing the concerto style of [a=Wolfgang Amadeus Mozart]. +Befriended with [a=Carl Friedrich Abel] during the time in London. + +Two of his brothers are [a=Wilhelm Friedemann Bach] and [a=Carl Philipp Emanuel Bach]. +Needs Votehttp://en.wikipedia.org/wiki/Johann_Christian_Bachhttps://books.discogs.com/credit/754002-johann-christian-bachhttps://www.britannica.com/biography/Johann-Christian-Bachhttps://adp.library.ucsb.edu/names/102659Attr. J. C. BachBachBach J. Ch.Bach J.Ch.Bach, J.C.Bach, J.Ch.C. BachCh. BachChr. BachChriastian BachChristian BachG. C. BachG.C·BachGiovanni Cristiano BachJ C BachJ-C BachJ. - C. BachJ. C. BachJ. C. F. BachJ. C. H. BachJ. Ch. BachJ. Ch. F. BachJ. Chr. BachJ. Christ. BachJ. ChristianJ. Christian BachJ. S. BachJ.-C. BachJ.-Ch. BachJ.-Chr. BachJ.C.J.C. BachJ.C. BachJ.C.BACHJ.C.BachJ.Ch. BachJ.Ch.BachJ.Chr. BachJ.Chr.BachJC BachJean Chretien BachJean Chrétien BachJean Chétien BachJean-Chretien BachJean-Christien BachJean-Chrétien BachJean-Chrétrien BachJoh. Ch. BachJoh. Chr. BachJoh. Christ. BachJoh. Christian BachJoh.Chr.BachJohan Christiaan BachJohan Christian BachJohann C. BachJohann Ch. BachJohann Chr. BachJohann ChristianJohann Christian Bach (?)Johann Christoph BachJohann Chrétien BachJohann-Christian BachJohann-Christoph BachJohn Chr. BachJohn Christian BachИ. X. БахИ. К. БахИ. Х. БахИ.К. БахИ.Х.БахИоганн Кристиан БахИоганн Христиан БахЙ. Х. БахBach-Söhne + +842308Johann Nepomuk HummelComposer and virtuoso pianist of Austrian origin who was born in Pressburg (present-day Bratislava, Slovakia) (14 November 1778 – 17 October 1837).Needs Votehttps://en.wikipedia.org/wiki/Johann_Nepomuk_Hummelhttps://www.britannica.com/biography/Johann-Nepomuk-Hummelhttps://www.naxos.com/person/Johann_Nepomuk_Hummel/24517.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102642/Hummel_Johann_NepomukHohann HummelHummelHummel, JohannHummel, Johann NepomukHummellJ-N HummelJ. H. HummelJ. HummelJ. N. HummelJ. N.HummelJ. Nepomuk HummelJ.N. HummelJ.N.HummelJan Nepomuk HummelJoh. N. HummelJoh. Nep. HummelJoh. Nepomuk HummelJohan Nepomuk HummelJohann HummelJohann N. HummelJohann Nep. HummelJohann Nepumuk HummelJohann-Nepomuk HummelJán Nepomuk HummelN. HummelNepomuk HummelNéhomuk HummelP. HummelhummelГуммельИ. ГуммельИ. Н. ГуммельИ. ХуммелИ.Н.ГуммельИоган ГуммельИоганн ГуммельЯ. Н. Гуммель + +842309Dag JensenBassoon player, born in Horten, Norway, has played with various international orchestras, since 1997 he is professor at the 'Hochschule für Musik und Theater' in Hannover, Germany.Needs Votehttp://www.dag-jensen.deJensenBamberger SymphonikerEnsemble Villa MusicaDeutsche Bläserphilharmonie (2) + +842310Jan Antonin KozeluchJan Antonín KoželuhCzech composer (14 December 1738, Velvary, presently Czechia – 3 February 1814, Prague, presently Czechia). He was a concert master in St. Vitus Cathedral in Prague for thirty years. His work includes both sacred and concert works, but he wrote also operas. He was the teacher of his (cousin) Leopold Koželuh, whose name was originally also Jan Antonin Koželuh (but who changed his name, in 1773.). His daughter was composer [a=Katharina Kozeluch-Cibbini].Needs Votehttps://en.wikipedia.org/wiki/Jan_Anton%C3%ADn_Ko%C5%BEeluhA. KozeluchJ. A. KoželuhJan Antonin KozeluhJan Antonín KoželuchJan Antonín KoželuhJan Ev. Antonin KozeluhJan Ev. Antonín KoželuhJan KozeluhJean-Antoine KozeluchJean.Antoine KozeluchJohann Anton Jan Antonin KoželuchKozeluchKoželuhА. Кожелух + +842521László CzidraClassical recorder player and conductor, born in 1940.Needs VoteCzidraCzidra LászlóLaszlo CidraLaszlo CzidraCamerata HungaricaLiszt Ferenc Chamber Orchestra + +842642Dirk VermeulenBelgian classical violinist and conductor.Needs Votehttps://www.dirkvermeulen.com/Les Arts FlorissantsConcerto VocalePrima La MusicaOrchestra Of The 18th CenturyKamerorkest SinfoniaVlaams Mobiel Kamerensemble + +842644Richte van der MeerDutch classical cellist.Needs VoteR.v.d. MeerRichte v.d. MeerVan Der Meerリヒテ・ファン・デル・メールThe English Baroque SoloistsThe Amsterdam Baroque OrchestraConcerto VocaleLa Petite BandeDe Nederlandse BachverenigingCamerata Of The 18th CenturyRicercar ConsortMusica AmphionOrchestra Of The 18th CenturyEnsemble PhilidorIl Complesso BaroccoAmsterdams Barok EnsembleEnsemble ExplorationsMusica Polyphonica + +842646Anthony WoodrowClassical string player (viola, viol, double bass...). Born 13 November 1938 England, died 30 April 2016 Arizona.Needs VoteAntony WoodrowNederlands Blazers EnsembleConcerto VocaleLa Petite BandeEbony BandLeonhardt-ConsortOrchestra Of The 18th CenturyConcerto AmsterdamEnsemble Explorations + +842647Ruth HesselingClassical viola player.Needs VoteRuth HesselinghRuth HesslingLa Chapelle RoyaleConcerto VocaleLa Petite BandeLeonhardt-ConsortOrchestra Of The 18th CenturyConcerto AmsterdamAlma Musica AmsterdamMusica Polyphonica + +842648Staas SwierstraClassical violin and viola player.Needs VoteStaas Swierstaスタース・スヴィールストラLa Chapelle RoyaleConcerto VocaleAustralian Brandenburg OrchestraLa Petite BandeLeonhardt-ConsortDe Nederlandse BachverenigingCamerata Of The 18th CenturyMusica AmphionOrchestra Of The 18th CenturyBoccherini QuartetAlma Musica AmsterdamBaroque OrchestraRombouts Quartet + +842713Klaus Stein(possibly fictitious) Violin player.Needs VoteGewandhausorchester LeipzigHebecker-Streichquartett + +842799Stefan SchilliGerman oboist and university lecturer, born 1970 in Offenburg, Germany.Needs Votehttps://de.wikipedia.org/wiki/Stefan_Schillihttps://www.br-so.de/besetzung/stefan-schilli/https://www.moz.ac.at/people.php?p=51173S. SchilliSymphonie-Orchester Des Bayerischen RundfunksStuttgarter KammerorchesterFailoni Chamber Orchestra, BudapestNeue Hofkapelle München + +842822Capella IstropolitanaSlovak chamber orchestra. Founded in 1983 in Bratislava (former Czechoslovakia, presently Slovakia).Needs Votehttps://en.wikipedia.org/wiki/Cappella_Istropolitanahttps://www.cappellaistropolitana.com/https://www.naxos.com/Bio/Person/Capella_Istropolitana/45291Böhmisches StaatsorchesterCapela IstropolitanaCapella IstrapolitanaCapella Istrapolitana Bratislava ChorusCapella IstropoltanaCapella StrapolitanaCapilla IstropolitanaCappella IstropolitanaCappella Istropolitana, BratislavaCappélla IstrapolitanaKammerorchester BratislavaOrchestra IstropolitanaOrchestre À Cordes De La Capella IstropolitanaStreichorchester "Capella Istropolitana"Streichorchester „Capella Istropolitana”The Capella IstropolitanaJaroslav KrčekJiří StivínPeter BaranStephen GunzenhauserBohdan WarchalMiroslav KejmarTakako NishizakiAlexander JablokovBedřich TylšarZdeněk TylšarPéter HamarJozef ZsapkaDaniela RusoQuido HölblingMilan BrunnerGabriela KrčkováJuraj ČižmarovičAnna HölblingováLadislav KyselákLudovít KantaJindřich PazderaAlexander JoblokovEwald DanelJozef PodhoranskýStanislav PalúchJiří Pospíšil (3)Róbert MarečekMarta PetrlikovaZdenek Petrlik + +842824Johannes WildnerAustrian conductor, born 1956 in Mürzzuschlag, Austria.Needs Votehttp://www.johanneswildner.com/Dr. Johannes WildnerJ. WildnerJoh. WildnerJohannes WilderWildnerЙохан ВильднерOrchester Der Wiener StaatsoperWiener PhilharmonikerORF SymphonieorchesterTonkünstler OrchestraJoseph Haydn-Quartett WienWiener Streichersolisten + +842825Bohdan WarchalSlovak violinist and strings producer. +Born 27 January 1930 in Orlová (former Czechoslovakia), died 30 December 2000 in Bratislava, Slovakia. +He was appointed leader of the Slovak Philharmonic Orchestra in Bratislava in 1957 and in 1960 he established the [a=Slovak Chamber Orchestra].Needs Votehttps://www.warchal.com/https://en.wikipedia.org/wiki/Bohdan_WarchalB. VarchalasB. WanchalB. WarchalB. archalBodhan WarchalBogdan WarchalBohdan WarchaBohden WarchalNár. Um. B. WarchalWarchalWarchal B.Б. Варчалボフダン・ヴァルハルCapella IstropolitanaSlovak Chamber OrchestraBohdan Warchal Orchestra + +842826John GeorgiadisJohn Alexander GeorgiadisEnglish conductor and violinist. Born 17 July 1939 in Southend-on-Sea, Essex, England, UK - Died 5 January 2021 in Walmer, Kent, England, UK. +He studied at the [l=Royal Academy of Music]. In the late 1950s, he had been the Concert Leader for Leslie Head and the [a=Kensington Symphony Orchestra]. In 1963, he joined the [a=City Of Birmingham Symphony Orchestra] as Concert Leader. In 1965, he joined the [a=London Symphony Orchestra] as Concert Leader until his first departure in 1973. In 1972, he formed [a=The London Virtuosi] Chamber Ensemble, of which he was the musical director. In 1977, he returned to the London Symphony Orchestra as Concert Leader. In 1987, he joined [a=The Gabrieli String Quartet], where he was the first violinist, until he left in 1990. In 1992 he was approached by the [a=Bangkok Symphony Orchestra], of which in 1994 he became its music director and conductor. +He married the violist and pianist [a=Susan Salter] in 1961; divorced.Needs Votehttp://www.johngeorgiadis.comhttps://www.youtube.com/user/maestrojongeorg?app=desktophttps://open.spotify.com/artist/7eqecmnZFVZA4oPKk3HTBfhttps://music.apple.com/us/artist/john-georgiadis/219196https://en.wikipedia.org/wiki/John_Georgiadishttps://lso.co.uk/more/news/1624-obituary-john-georgiadis-1939-2021.htmlhttps://www.feenotes.com/database/artists/georgiadis-john-1939-present/https://www.telegraph.co.uk/obituaries/2021/01/12/john-georgiadis-star-violinist-former-leader-lso-previn-abbado/https://www.thestrad.com/featured-stories/lso-concertmaster-john-georgiadis-dies-aged-81/11634.articlehttps://www.imdb.com/name/nm0313740/GeorgiadisJ. GeaorgiadisJ. GeorgiadisJohnJohn GeogiadisJohn GeorgiadesJohn GeorgiadiasJohn GergiadisJohn GiorgiadisΓιάννης Γεωργιάδηςジョン・ジョージアディスジョン・ジョージアディス指揮London Symphony OrchestraCity Of Birmingham Symphony OrchestraThe Gabrieli String QuartetThe London VirtuosiKensington Symphony OrchestraThe Georgiadis Ensemble + +842827Miroslav KejmarMiroslav KejmarCzech trumpet player, born 3 July 1941. +[i](Note: not to be confused with Czech percussionist [a=Miroslav Kejmar Jr.])[/i]Needs Votehttp://www.supraphonline.cz/umelec/26-miroslav-kejmarhttp://cs.wikipedia.org/wiki/Miroslav_KejmarKejmarM. KejmarMiroslav Kejmar Sr.Miroslav KojmarMiroslav Krejmarミロスラフ·ケイマルミロスラフ・ケイマルCapella IstropolitanaSlovak Chamber OrchestraFerdinand Havlík OrchestraPrague Brass SoloistsStudiový Orchestr Petr HapkaTen Of The BestBläservereinigung Der Tschechischen PhilharmonieCzech Brass Ensemble + +842832Takako NishizakiTakako Nishizaki is a Japanese violinist. Born April 14, 1944 in Nagoya, Japan. She is married to the [l=Naxos] label owner Klaus Heymann, and teaches violin in Hong Kong.Needs Votehttp://en.wikipedia.org/wiki/Takako_Nishizakihttps://www.tnviolinstudio.com/https://www.instantencore.com/contributor/contributor.aspx?CId=5061196https://www.naxos.com/person/Takako_Nishizaki/552.htmNashizakiNishizakiT. NishizakiTakaka NishizakiTakaki NishizakiTakakoTakako Noshizaki西崎崇子Capella Istropolitana + +842834Robert StankovskyRóbert StankovskýSlovak conductor. + +Born 1964 in Bratislava (former Czechoslovakia). After a childhood he spent in the study of the piano, recorder, oboe and clarinet, turned his attention, at the age of fourteen, to conducting, graduating in this and in piano at the Bratislava Conservatory with the title of the best graduate of the year. Stankovsky is regarded as one of the best conductors of the younger generation in Czechoslovakia. For Marco Polo, Stankovsky has recorded symphonies by Rubinstein and Miaskovksy in addition to orchestra works by Dvořák and Smetana. Needs VoteR. StankovskyRobert StankovskýRobert StankowskyRóbert StankovskyRóbert StankovskýStankovskySlovak Radio Symphony Orchestra + +842876Jorma HynninenJorma Kalervo HynninenBorn April 3rd, 1941 in Leppävirta, Finland. A Finnish bass / baritone opera singer and professor. Father of [a2765673].Needs VoteHynninenJorma Hynninen Ja KuoroJussi + +842888Rafael KubelikRafael Jeroným KubelíkCzech conductor. Born June 29, 1914 in Býchory near Kolín (Bohemia, former Austro-Hungarian Empire, now Czech Republic), died August 11, 1996 in Kastanienbaum LU, Switzerland. Son of Czech violinist and composer [a2209518]. Emigrated in 1948 after the Communist takeover of Czechoslovakia, lived mainly in Switzerland and in the U.S. After the death in 1961 of his first wife, the violinist [url=https://cs.m.wikipedia.org/wiki/Ludmila_Bertlov%C3%A1]Ludmila Bertlová[/url], he married Australian soprano [a1354730] in 1963.Needs Votehttps://en.wikipedia.org/wiki/Rafael_Kubel%C3%ADkhttps://www.naxos.com/person/Rafael_Kubelik/30625.htmhttps://www.britannica.com/biography/Rafael-Kubelikhttps://www.bach-cantatas.com/Bio/Kubelik-Rafael.htmhttps://vagnethierry.fr/kubelik.htmlJ. Rafael KubelikJ. Rafael KubelíkKubelikKubelíkR. KubelikRafael KubelicRafael KubelíkRafaël KubelikRafaẽl KubelikRaphael KubelikRaphel KubelikΡάφαελ ΚούμπελικРафаель КубеликРафаэль Кубеликクーベリックラファエル・クーベリックラファエル・クーベリック / Rafael KubelikThe Czech Philharmonic Orchestra + +842911Christine SchornsheimChristine SchornsheimGerman classical keyboard instrumentalist, born 1959.Needs Votehttp://www.christine-schornsheim.de/C. SchornsheimChristiane SchornsheimChristine SchornheimChristine Schornsheim, Continuo-Orgel / Continuo-CembaloSchornsheimКристина ШорнсхаймStaatskapelle DresdenAkademie Für Alte Musik BerlinNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaSaito Kinen OrchestraKammerorchester Carl Philipp Emanuel BachMünchner Cammer-Music + +842912Bettina SitteGerman violinist, born in Dresden, GDR.CorrectRundfunk-Sinfonieorchester Berlin + +842913Concerto KölnEnsemble founded in 1985 in Cologne, Germany. They play mostly the orchestral and operatic repertory of the 17th and 18th centuries, aiming to observe the historical rules of performance. +Although the ensemble often operates without a conductor (the ensemble's leader or concertmaster being the violinist [a=Werner Ehrhardt]), they often invite guest conductors. +Needs Votehttps://www.concerto-koeln.de/Cologne COCologne ConcertoConcerto CologneConcerto ColóniaKölner ConcertoSchwetzinger SWR FestivalАнсамбль "Concerto Köln"Alison GanglerStefaan VerdegemMercedes RuizMichael NiesemannMara GalassiVeronica ScheppingPaul LindenauerChristine Angot (2)Ann-Kathrin BrüggemannRaphael AlpermannGudrun EngelhardtDileno BaldinStefano MontanariMichael RobertsGerald HambitzerYves BertinPeppie WiersmaCordula BreuerMartin SandhoffMatthias BeltingerNicholas SeloUte HartwichBjörn ColellKristin Von Der GoltzBrian DeanPierre-André TaillardKonrad JunghänelUwe HaaseKate RockettMichael FreimuthEmmanuelle HaïmPaolo TognonMichèle SauvéGilles RapinMartin StadlerHelmut HausbergPiotr OlechChristopher DeppeHajo BäßLuca RonconiAdrian BleyerPablo ValettiClaudia SteebAndrea KellerWerner EhrhardtAnton SteckDane RobertsRenée AllenWolfgang DeyLex VosWolfgang Von KessingerSusanne RegelVeronika SkuplikGabriele SteinfeldRaphael VosselerMichael BoschSibylle HuntgeburthNina DiehlTrudy Van Der WulpGerhart DarmstadtJörg BuschhausDavid MingsGustavo ZarbaKlaus TürkeJean-Michel ForestBettina Schmidt Von AltenstadtMartin WinkelSylvie KrausMichael CarstorffHedwig Van Der LindeHeinz SchwammChrista KittelMaria LindalAntje SabinskiClaudia SchäferAnke VogelsängerWerner MatzkeThomas Müller (4)Lorenzo AlpertChristoph Anselm NollMichael WillensSaskia KwastThibaud RobinneEberhard MaldfeldJan Willem Vis (2)Rainer UllreichKristin LindeGili RinotJulie MondorLisa Klevit-ZieglerVolker MöllerVincent Van BallegooijenDiego MontesMartin MürnerChiharu AbeHartwig GrothRüdiger LotterFurio ZanasiAlessandro PiqueAlessandro De MarchiCynthia RomeoJan KunkelStephan SängerHorst-Peter SteffenMaren RiesAlexander ScherfPeter StelzlAnna Von RaußendorffFranco GallettoMartin EhrhardtAino HildebrandtFrauke PöhlWerner SallerAlmut RuxStefan GawlickPhilippe CastejonAntje EngelBettina Von DomboisJörg SchulteßKatherine CouperShizuko NoiriAlexander PuliaevHannes KotheAriane SpiegelBarbara FerraraKai KöppRoberto Fernandez de LarrinoaGabrielle KancachianJuan KunkelSimon Martyn EllisMarkus Hoffmann (2)Clotilde GuyonKonstantin TimokhineStephan Sieben (2)Graham NicholsonAttilio CremonesiToni Salar-VerdúEberhard ZummachNikolaus WalchHelen MacDougallWanda VisserCorinna Hildebrand-MalcolmHans-Martin RuxUlrike SchaarGabriele NußbergerJan SchultszKeal CouperKristin DeekenDaniela LiebBernhard RainerRainer JohannsenKarl-Ernst SchröderMischa GreullUwe MaibaumJoachim HeldJean-Baptiste LapierreJürg AllemannPier Luigi FabrettiNicolau de FigueiredoBernd EhrhardtSusanne WahmhoffFiona StevensKurt HolzerHeide RosenzweigAntje KellerEsther Van Der EijkUli HübnerAlessandro DenabianHenrike PetteStefan Schmidt (17)Marianne RørholmJoelle PerdaensAndreas Nowak (2)Raphael VangMartin FritzBenoît LaurentTal CanettiJohannes EsserElina Eriksson (2)Rodrigo GutiérrezDaniel SchäbeLidewei De SterckMarzena MichałowskaMassimiliano Toni + +842914Gerald HambitzerGerald HambitzerHarpsichordist.Needs VoteGerhard HambitzerConcerto KölnIl Concertino KölnEnsemble Vintage Köln + +842915Christian PetzoldGerman composer and organist (Weißig near Königstein, 15 March 1677 – Dresden, 25 May 1733). He travelled through Paris and Italy but was active primarily in Dresden. He achieved a high reputation during his lifetime, but only few of his works survive. The best-known of his compositions is the Minuet in G major which was previously (and still is incorrectly) attributed to [a=Johann Sebastian Bach].Needs Votehttp://en.wikipedia.org/wiki/Christian_Petzoldhttps://de.wikipedia.org/wiki/Christian_Petzold_(Komponist)C. PetzoldCh. PetzoldChr. PetzoldChristian PezoldPetzoldPezold + +842917Ulrich KieferGerman viola playerCorrectRundfunk-Sinfonieorchester BerlinAkademie Für Alte Musik BerlinDresdner Barockorchester + +842918Stephan MaiStephan Mai (born 1953) is a German classical violinist.Needs VoteStefan MaiRundfunk-Sinfonieorchester BerlinAkademie Für Alte Musik BerlinKammerorchester BerlinNeues Bachisches Collegium Musicum Leipzig + +842982Alphonse PicouAlphonse Floristan PicouAmerican jazz clarinetist, singer and composer. + +Born : October 19, 1878 in New Orleans, Louisiana. +Died : February 04, 1961 in New Orleans, Louisiana. + + +He played with many other local musicians and bands, including Buddy Bolden, Joe Oliver, Bouboul Fortunea Augustat, Bouboul Valentin, Oscar DuConge, Manuel Perez, Freddie Keppard, Bunk Johnson, the Excelsior Brass Band and the Olympia Brass Band. +Needs Votehttp://en.wikipedia.org/wiki/Alphonse_Picouhttps://adp.library.ucsb.edu/names/109666A. PiconA. PicouAlfons PicouPicardPiconPicouStompOriginal Tuxedo Jazz OrchestraKid Rena's Delta Jazz BandThe Paddock Jazz Band + +843011Lee DeanLee DeanCorrectDeanCunaro & DeanLee Dean & Dominique + +843012R. LeiteritzRonald LeiteritzCorrectSuccargoDJ Jeffrey & De-Leit + +843013Jose CunaroJose CunaroCorrectCunaroCunaro & Dean + +843014J. FokkensWillebrordus J. J. Jeffrey FokkensNeeds VoteB. FokkensJ.FokkensDJ JeffreySuccargoDJ Jeffrey & De-Leit + +843127Alexander GibsonSir Alexander Drummond Gibson was a Scottish conductor and opera intendant. Born 11 February 1926 in Motherwell, North Lanarkshire, Scotland, UK and died 14 January 1995. +He was the longest serving principal conductor of the Scottish National Orchestra. Founder of Scottish Opera in 1962, and was music director until 1986.Needs Votehttps://en.wikipedia.org/wiki/Alexander_Gibson_(conductor)A. GibsonA.GibsonAlexandre GibsonGibsonM.GibsonSir Alan GibsonSir Alex GibsonSir Alexander GibsonА. ГибсонАлександр Гибсонсэр Александр Гибсонアレクサンダー・ギプソン + +843305Ernst OttensamerErnst Ottensamer (5 October 1955 in Wallern an der Trattnach, Austria - 22 July 2017) was an Austrian classical clarinetist. Father of [a3241108] and [a2427713], both of whom are clarinetists.Needs Votehttps://en.wikipedia.org/wiki/Ernst_OttensamerOttensamerOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläserensembleWiener Virtuosen + +843323Nicholas WardNicholas WardViolinist, conductor. Former leader of the [b]City of London Sinfonia[/b].Needs VoteN. WardNick WardNicolas WardWardCity Of London SinfoniaRoyal Philharmonic OrchestraOxford CamerataNorthern Chamber OrchestraMelos Ensemble Of LondonSteve Beresford His Piano & OrchestraRedcliffe Ensemble + +843354Trumpeters Of The Royal Military School Of MusicNeeds VoteCeremonial Trumpeters Of The Royal Military School Of MusicFanfare Trumpeters Of The Royal Military School Of MusicFanfare Trumpeters Of The Royal Military School Of Music, Kneller HallFanfare Trumpeters of The Royal Military School Of MusicKneller HallKneller Hall Fanfare TrumpetersKneller Hall TrumpetersLes Trompettes De La Royal Military School Of Music, Kneller HallLes Trompettes Du Conservatoire Militaire RoyalSix Trumpets, Six Trombones And Four Percussion Of The Royal Military School Of MusicThe Fanfare Trumpets Of The Royal Military School Of MusicThe Kneller Hall TrumpeteersThe Kneller Hall TrumpetersThe Massed Trumpeters of the Royal Military School of Music, Kneller Hall, BullockThe Royal Military School Of MusicThe Trumpeters Of Kneller HallThe Trumpeters Of Kneller Hall, Royal Military School Of MusicThe Trumpeters Of The Royal Military School Of MusicThe Trumpeters Of The Royal Military School Of Music, Kneller HallThe Trumpeters of the Royal Military School of Music, Kneller HallThe Trumpets Of The Royal Military School Of MusicTrombe Della Royal Military School Of Music, Kneller HallTrompeter Der The Royal Military School Of MusicTrompeteros De La Royal Military School Of Music, Kneller HallTrompettes Du Royal Military School Of Music, Kneller HallTrompettes Du Royal Military School of Music, Kneller HallTrubači Královské Vojenské Hudební Školy, Kneller HallTrumpeters Of Kneller HallTrumpeters Of The Royal Military School Of Music, Kneller HallTrumpets Of The Royal Military School Of MusicMichael Pyne (2)Robert RignoldGeorge E. EvansThe Band Of The Royal Military School Of Music + +843395Patrick RussillChorus Master of The London Oratory Junior ChoirCorrectПатрик Руссил + +843396Anthony RobsonClassical Oboe + Mandolin player, born in North Yorkshire, UK.Needs Votehttps://www.bach-cantatas.com/Bio/Robson-Anthony.htmA. RobsonRobsonGabrieli ConsortThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentTaverner PlayersHanover BandThe King's ConsortClassical OperaThe English Concert + +843397Rona EastwoodClassical soprano vocalist.CorrectNew London Chamber ChoirThe Monteverdi Choir + +843398Donna DeamClassical soprano vocalist.Needs VoteThe Cambridge SingersThe Monteverdi ChoirThe Schütz Choir Of LondonConcerto Delle Donne + +843399Ann MonoyiosAmerican soprano, born 28 October 1949 in Middletown, Connecticut.Correcthttp://www.annmonoyios.com/A. MonoyiosAnn Sease MonoyiosAnne MonoyiosMonoyiosPomerium + +843400Ruth Holton (2)Classical vocalist (soprano).Needs VoteHoltonThe Cambridge SingersThe Tallis ScholarsThe Monteverdi ChoirA Sei Voci + +843401James OttawayJames Ottaway is an English operatic bass vocalist and educator.Needs VoteThe Monteverdi ChoirThe English Concert Choir + +843402Richard EarleClassical oboist.Needs Votehttp://www.oboeclassics.com/MozartOboe.htmEarleRichardRichard C. EarleOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe King's ConsortLondon Oboe BandEuropean Brandenburg EnsembleSarasa Ensemble + +843403Andrew TusaEnglish tenor vocalist.Needs VoteGabrieli ConsortThe Monteverdi ChoirThe English Concert ChoirI FagioliniGothic Voices (2) + +843404Sorelle MartinezChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +843405Hans GablerClassical bass vocalist.CorrectThe Monteverdi Choir + +843406Walter ReiterWalter ReiterClassical violinist born in England, UK.Needs Votehttps://www.walterreiter.co.uk/ReiterThe SixteenLes Arts FlorissantsThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Accademia DanielGabrieli PlayersThe King's ConsortEnsemble CordariaThe Symphony Of Harmony And InventionMonteverdi Ensemble AmsterdamThe English Concert + +843407Nicolas RobertsonClassical tenor vocalist, born March 2, 1954 in Birmingham, England, died in November 2023 in Lisbon, Portugal.Needs Votehttps://www.facebook.com/nicolas.robertson.16/https://www.bach-cantatas.com/Bio/Robertson-Nicholas.htmNicholas RobertsonThe Hilliard EnsembleThe Tallis ScholarsThe SixteenThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirThe Schütz Choir Of LondonEnsemble europeen William ByrdThe Friends Of Apollo + +843408Maya HomburgerSwiss classical violinist, born in Zürich, wife of [a212300], they run [l107723].Needs Votehttps://mayarecordings.com/maya_homburgerHomburgerM. HomburgerMaja HomburgerMaya HombergerOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicCamerata BernCollegium Musicum 90The Glasgow Improvisers OrchestraThe Dowland ProjectThe Chandos Baroque PlayersCamerata KilkennyThe English ConcertBlue Shroud BandDaniel Schmidt & OrchestrionFriends Of Barry Guy + +843409Cornelia La ViaChoir vocalistNeeds VoteThe London Oratory Junior Choir + +843410Paul TindallTenor vocalist.Needs VoteThe Choir Of The King's ConsortThe Monteverdi ChoirThe Academy Of Ancient Music ChorusThe English Concert Choir + +843411Catherine LathamClassical oboe and recorder player.Needs Votehttps://www.feenotes.com/database/artists/latham-catherine/C. LathamGabrieli ConsortNew London ConsortThe SixteenThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentThe King's ConsortDunedin ConsortThe Chandos Baroque PlayersLondon Oboe BandThe English Concert + +843412Ellen O'DellClassical violinist.Needs Votehttps://www.linkedin.com/in/ellen-o-dell-16367846/https://thesixteen.com/team/ellen-odell/Elen O'DellThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersThe Avison EnsembleClassical OperaThe MozartistsThe Harmonious Society Of Tickle-Fiddle Gentlemen + +843413Nicholas LogieClassical viola player.Needs VoteThe SixteenChilingirian String QuartetThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentEnsemble I + +843414Paul SuttonClassical tenor vocalist.Needs VoteThe Cambridge SingersThe Monteverdi Choir + +843416Christopher McCarthyYouth choir memberNeeds VoteThe London Oratory Junior Choir + +843417Beth O'ReillyClassical vocalistNeeds VoteThe London Oratory Junior Choir + +843418Jonathan Peter KennyClassical countertenor vocalist.Needs VoteJonathan KennyJonathan P. KennyGabrieli ConsortThe Monteverdi ChoirThe English Concert Choir + +843419Eamonn StackChoir vocalistNeeds VoteThe London Oratory Junior Choir + +843420Sophia MartinezCorrectThe London Oratory Junior Choir + +843421Danielle WilliamsChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +843422Kate O'ReillyChoir vocalistNeeds VoteThe London Oratory Junior Choir + +843423Catherine FordBritish classical violinist.Needs VoteThe SixteenOrchestre Révolutionnaire Et RomantiqueCollegium VocaleThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentHanover Band + +843424Jonathan HobanCorrectThe London Oratory Junior Choir + +843425Peter NardoneClassical alto/countertenor vocalist, organist and conductor.Needs Votehttps://en.wikipedia.org/wiki/Peter_Nardone#Organist_&_ConductorGabrieli ConsortThe Choir Of The King's ConsortThe Tallis ScholarsThe Monteverdi Choir + +843426Julia ManningCorrectThe London Oratory Junior Choir + +843427Lawrence WallingtonBritish classical bass vocalistNeeds Votehttps://www.facebook.com/lawrence.wallington/https://www.bach-cantatas.com/Bio/Wallington-Lawrence.htmhttps://www.imdb.com/name/nm6611934/WallingtonThe Ambrosian SingersMetro VoicesLondon VoicesThe Monteverdi ChoirThe English Concert ChoirThe Choir Of Westminster AbbeyTenebrae (10) + +843428Sarah McAdamChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +843429Maurice WhitakerClassical violinist.Needs VoteThe Scholars Baroque EnsembleOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe King's ConsortThe English Concert + +843430Susan Hemington JonesClassical soprano vocalist.CorrectHemington JonesSusan Hemington-JonesSusan Hemmington JonesGabrieli ConsortThe Monteverdi ChoirThe English Concert Choir + +843431Silvia MontelloChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +843432Charles PottClassical vocalist (baritone/bass).Needs VoteGabrieli ConsortMetro VoicesThe Choir Of The King's ConsortThe Cambridge SingersThe Monteverdi ChoirPolyphonyRetrospect EnsembleEnglish Harmony Choir + +843433Barbara BonneyAmerican soprano vocalist, born April 14, 1956 - Montclair, New Jersey. + +Barbara Bonney is a member of the Swedish Royal Academy of Music. She has previously been married to [a914678] and now lives in Salzburg, where she holds a professorship at the Mozarteum. + +Since 2006, after 27 years on the world opera and concert stages, Barbara Bonney has performed to a more limited extent than before.Needs Votehttp://www.bach-cantatas.com/Bio/Bonney-Barbara.htmhttps://en.wikipedia.org/wiki/Barbara_BonneyB. BonneyBonneyバーバラ・ボニー芭芭拉・邦妮 + +843434Philip NewtonBritish classical countertenor & alto vocalist.Needs VoteThe Guildford Cathedral ChoirThe SixteenThe Monteverdi ChoirThe English Concert Choir + +843435Edward BruggemeyerFormer Choirister (vocalist) and today ViolinistNeeds VoteEd BruggemeyerThe London Oratory Junior Choir + +843436Janet SeeClassical flautist. Studied at The Royal Conservatory in The Hague, Holland, and holds a degree from The Oberlin Conservatory of Music.Needs Votehttps://www.janetsee.comOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicPhilharmonia Baroque OrchestraThe San Francisco Baroque EnsembleKōtèkan + +843437Emma MurphyClassical recorder player & former Choirister (vocalist)Needs Votehttps://www.emmamurphyrecorders.org/The London Oratory Junior ChoirThe King's ConsortDa Camera (3)IncantatiSprezzatura + +843438Emma O'NeillCorrectThe London Oratory Junior Choir + +843439Clifford ArmstrongTenor vocalist.Needs VoteThe Monteverdi Choir + +843440Lucy RussellGermany-born classical violinist based in London, UKNeeds Votehttps://www.facebook.com/LucyRussellViolin/https://lucyrussell.co.uk/about/New London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsConcerto CaledoniaFitzwilliam String QuartetThe King's ConsortThe Music PartyClassical OperaRetrospect Ensemble + +843441The London Oratory Junior ChoirBritish classical chorale chorus, formed in 1973.Correcthttp://charlescole.com/london-oratory-junior-choir/Chorale de LondresCoro Juvenil Oratorio De LondresLondon Oratory Junior ChoirMembers Of The London Oratory Junior ChoirThe London Oratory ChoirThe London Oratory School ChoirThe Oratory Junior ChoirМолодежный Хор Лондонской ОраторииLuke O'ReillySorelle MartinezCornelia La ViaChristopher McCarthyBeth O'ReillyEamonn StackSophia MartinezDanielle WilliamsKate O'ReillyJonathan HobanJulia ManningSarah McAdamSilvia MontelloEdward BruggemeyerEmma MurphyEmma O'NeillVictoria HobanEmma ChesterIsabella RadcliffeChristina de LupisEmilia O'ConnorSara MaraniFrancesca RussillWilliam McDonnellBrendan StackJames Clerkin + +843442Richard TunnicliffeClassical cello and viol player.Needs Votehttp://www.fretwork.co.uk/who/biography/index/id/4#page=Richard-TunnicliffeTunnicliffeР. ТанниклайфFretworkNew London ConsortThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentRaglan Baroque PlayersBeethoven String Trio Of LondonThe Locatelli TrioConviviumBaroque String QuartetThe Avison EnsembleThe English ConcertTheatre Of The Ayre + +843443Victoria HobanClassical vocalistNeeds VoteThe London Oratory Junior Choir + +843503Per SaloDanish pianist, born in 1962 in Copenhagen.Needs VoteThe Danish Horn TrioDR SymfoniOrkestretDuo Åstrand/Salo + +843530Monique HaasFrench classical pianist, born 20 October 1909 in Paris, France and died 9 June 1987 in Paris, France. She was married to [a=Marcel Mihalovici].Correcthttp://en.wikipedia.org/wiki/Monique_HaasHaasHassM. Haasモニク・アース + +843639Anthony Howard (2)English classical violinist. +Former member of the [a=London Symphony Orchestra] (1954-1955).Needs VoteLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Bach OrchestraBath Festival Chamber OrchestraBath Festival OrchestraLondon Bach Ensemble + +843640Sylvia RosenbergClassical violinist.Needs VoteThe Academy Of St. Martin-in-the-Fields + +843641Roger BirnstinglBritish retired classical bassoonist and Professor of Bassoon. Born in 1932 in England, UK. +He studied at the [l290263]. He has served as Principal Bassoonist of the [a=London Philharmonic Orchestra] (1956–1958), the [a=Royal Philharmonic Orchestra] (1961–1964) and the [a=London Symphony Orchestra] (1964–1977). He later served as Principal Bassoonist with [a=L'Orchestre De La Suisse Romande] until his retirement in 1997. Professor of Bassoon at the [l1841287].Needs Votehttps://www.facebook.com/people/Roger-Birnstingl/100005572069223/https://www.linkedin.com/in/roger-roger-birnstingl-61a59268/?originalSubdomain=ukhttps://www.youtube.com/channel/UCTSltWxQplFR-cMXYdz22Aghttps://open.spotify.com/artist/2RlBBsVPg0wvZk7JqZdvnShttps://music.apple.com/us/artist/roger-birnstingl/256633948http://en.wikipedia.org/wiki/Roger_Birnstinglhttps://bdrs.org.uk/about-us/honorary-presidents/Riger BirnstinglRoger BirnstingleLondon Symphony OrchestraL'Orchestre De La Suisse RomandeLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Harpsichord EnsembleLondon Wind SoloistsThe Music Group Of LondonSwiss Chamber PlayersThe Wind Virtuosi Of EnglandThe Ensemble Of St. JamesLondon Wind TrioLondon Brass Solists + +843642Thomas GoffThomas Robert Charles Goff[b]Thomas Goff[/b] (16 July 1898, Knaresborough, Yorkshire — 31 March 1975, London) was a British classical keyboard and string instrumentalist, as well as a distinguished maker of harpsichords. +Needs Votehttps://www.baroquemusic.org/goff.htmlEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsBath Festival Orchestra + +843643Barry TuckwellBarry Emmanuel TuckwellAustralian French horn player, conductor and educator at the University of Melbourne after retiring in 1997. +Born: 5th March 1931 Melbourne, Victoria, Australia. +Died: 16th January 2020 Melbourne, Victoria, Australia. +3rd Horn with the [a=Melbourne Symphony Orchestra] (aged 15) and then 5th in the [a=Sydney Symphony Orchestra]. Principal Horn of [a=London Symphony Orchestra] (1955-1967). He founded the [a7658518] in 1982 and was the first president of the International Horn Society from 1970-1976 and again in 1992-1994. Appointed OBE (1965) & Companion of the Order of Australia (1992).Needs Votehttps://en.wikipedia.org/wiki/Barry_TuckwellTuckwellバリー・タックウェルLondon Symphony OrchestraMelbourne Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsSydney Symphony OrchestraBath Festival OrchestraBarry Tuckwell Horn QuartetThe Barry Tuckwell Wind Quintet + +843644Diana CummingsClassical violinist. +She was a founder member of the [b]Cummings String Quartet[/b] together with her brother [a=Douglas Cummings]. +Daughter of the violist [a=Keith Cummings] and sister of the violinist [a=Julian Cummings].Needs VoteD. CummingsThe Academy Of St. Martin-in-the-FieldsCummings String TrioEnglish String Quartet + +843645John Gray (7)John Anthony GrayBritish classical double bass player, violone player, harpsichord player, classical pianist, treble viola da gamba player, double bass teacher and expert on Baroque musique. Born in 1932 in Wolverton (near Rugby), Buckinghamshire, England, UK. +Aged 16, he won a scholarship to the [l527847], where he studied piano and double bass. He then joined the [a=City Of Birmingham Symphony Orchestra] as Sub-Principal Bass. He later joined the [a=London Symphony Orchestra] (1958-1964) becoming Sub-Principal Double Bass (1963-1964). Then, in 1965, he became a founding member of [a=The Academy Of St. Martin-in-the-Fields]; he was Principal Bass, touring around the world and recording with the chamber orchestra. He was a member of the [a=Bath Festival Orchestra]. He was a bouble bass coach at [a=National Youth String Orchestra]. In 1975, he moved to Sydney, Australia where he became Professor of Double Bass at the [l=Sydney Conservatorium Of Music].Needs Votehttps://en.everybodywiki.com/John_Anthony_GrayJ. GrayJ. GreyJohn GreyLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe London StringsBath Festival OrchestraLondon Soloists EnsembleThe Francis Chagrin EnsembleLondon Bach EnsembleThe Soloists of Australia + +843646David Gray (6)Ivan David GrayBritish classical hornist. Originally from London, England, UK, residing in Vancouver, British Columbia, Canada. +Studied at the [l1051396]. Former Principal Horn with the [a=London Symphony Orchestra] (1964-1972). Member of [a=The Newfoundland Symphony Orchestra].Needs Votehttps://www.facebook.com/david.gray.5439087D. GrayIvan David GrayLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe London StringsThe Newfoundland Symphony Orchestra + +843647Hugh MaguireAndrew Hugh Michael MaguireIrish violinist, leader, concertmaster, and conductor. Born 2 August 1926 in Dublin, Ireland – Died 14 June 2013 in Peasenhall, Suffolk, England, UK. +Graduated from the [l527847]. In January 1949, he was in the first violin section of the [a=London Philharmonic Orchestra]. In 1952 he was appointed leader of the [a=Bournemouth Symphony Orchestra], after which he had a short period as sub-leader of the BBC Symphony Orchestra. In 1956, he became leader of the [a=London Symphony Orchestra] until 1961. In 1962, he left the LSO to become principal of the [a=BBC Symphony Orchestra], and held the post until 1967. He helped to found [a=The Academy Of St. Martin-in-the-Fields] with [a=Neville Marriner] in 1959. During the 1960s he led the [a=Cremona String Quartet]. Hugh Maguire helped found the [a5975021] in 1970, which he continued to conduct until 1990. In 1974 he relaunched the [a=Melos Ensemble Of London]. Member and leader of [a=The Allegri String Quartet] from 1968-1976. From 1983 to 1991, he was leader of the [a=Orchestra Of The Royal Opera House, Covent Garden]. +Professor at the Royal Academy of Music, and violin tutor to the [a=National Youth Orchestra Of Great Britain]. Needs Votehttps://dib.cambridge.org/viewReadPage.do?articleId=a10088https://open.spotify.com/artist/1kFkAGRHC5W7BBkeHNKz7ehttps://music.apple.com/us/artist/hugh-maguire/341060http://en.wikipedia.org/wiki/Hugh_Maguire_%28violinist%29https://www.famousbirthdays.com/people/hugh-maguire.htmlhttps://www.thetimes.co.uk/article/hugh-maguire-76zp58z7zbjhttps://www.theguardian.com/music/2013/jul/07/hugh-maguirehttps://www.telegraph.co.uk/news/obituaries/10125653/Hugh-Maguire.htmlhttps://www.independent.co.uk/news/obituaries/hugh-maguire-violinist-who-led-bbc-symphony-orchestra-8744278.htmlhttps://www.irishtimes.com/life-and-style/people/orchestra-leader-and-inspirational-teacher-1.1455552https://www.thestrad.com/irish-violinist-and-pedagogue-hugh-maguire-dies/3126.articlehttps://www.rte.ie/archives/2013/0806/466609-hugh-maguire-and-the-irish-youth-orchestra/http://www.mvdaily.com/articles/m/h/hugh-maguire.htmhttps://stephenjones.blog/2017/04/22/the-late-great-hugh-maguire/https://www.pizzicato.lu/violonist-hugh-maguire-passed-away/http://reed.dur.ac.uk/xtf/view?docId=ead/mus/allegri.xmlH. MaguireHug MaguireHugh McGuireLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsBournemouth Symphony OrchestraThe Allegri String QuartetOrchestra Of The Royal Opera House, Covent GardenThe Virtuosi Of EnglandMelos Ensemble Of LondonThe London StringsCremona String Quartet + +843648Malcolm LatchemBritish violinist.Needs VoteMalcolm LatchamThe Academy Of St. Martin-in-the-FieldsThe London StringsAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +843649Denis VigayBritish classical cellist, and cello teacher. Born in 1926 in Brixton, London, England, UK - Died 27 June 2015. +He studied at the [l527847]. His studies were interrupted by military service. He was part of [a=The Band Of The Corps Of Royal Engineers]. Having completed his studies at the RAM, he joined the [a=London Symphony Orchestra] (1949-1951 & again 1963-1964). He then became Principal Cello of [a=The Sadlers Wells Opera Orchestra]. In 1956, he became Principal Cello of the [a=Royal Liverpool Philharmonic Orchestra]. Returnig to London, he was appointed Principal Cello of the [a=BBC Symphony Orchestra] and then of [a=The Academy Of St. Martin-in-the-Fields]. He taught at the Royal Academy of Music.Needs Votehttps://open.spotify.com/artist/2wZrkMoUVUD3mK0q3N0g3Fhttps://music.apple.com/de/artist/denis-vigay/4571008?l=enhttps://slippedisc.com/2015/07/a-vital-london-cellist-has-died/https://www.classicalmusicdaily.com/articles/v/d/denis-vigay.htmhttps://www.thestrad.com/british-cellist-denis-vigay-has-died-aged-89/1169.articleDennis Vigayデニス・ヴァイゲイLondon Symphony OrchestraBBC Symphony OrchestraEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsRoyal Liverpool Philharmonic OrchestraThe Starcoast OrchestraRobert Farnon And His OrchestraThe Band Of The Corps Of Royal EngineersAcademy Of St. Martin-in-the-Fields Chamber EnsembleThe Sadlers Wells Opera Orchestra + +843651Richard AdeneyBritish flautist and founding member of the [a=Melos Ensemble Of London], born 1920, died 16 December 2010.Needs VoteR. AdeneyRichard AdenayRichard AdencyEnglish Chamber OrchestraMelos Ensemble Of LondonThe English Opera GroupRobert Farnon And His OrchestraLondon Baroque Ensemble + +843654Edward SelwynClassical oboistCorrectEnglish Chamber Orchestra + +843655Peter GraemeGraeme Peter CrumpEnglish classical oboist and academic teacher, also known as [b]'Timmy' Crump[/b]. He was best known as the principal oboist of the [a894398]. Born 1921 - Died 1 March 2012 in Shaftesbury, Dorset, England, UK. +Peter Graeme studied the oboe with [url=https://www.discogs.com/artist/917033-Leon-Goossens]Léon Goossens[/url]. Graeme was the oboist of the [a=Melos Ensemble Of London], founded in 1950, and participated with the group in the premiere of the [m=259525] by [a=Benjamin Britten], conducted by the composer at the [l=Coventry Cathedral] in 1962. Graeme has performed on many recordings with chamber orchestras and chamber groups throughout his career and has worked with Benjamin Britten, [a=Janet Baker], [a=Peter Pears] and many others. +Graeme was a teacher at the [l=Royal Northern College Of Music], among his students was [a=Robin Williams]. +Needs Votehttps://open.spotify.com/artist/2v4u8NRHBuVxUCDtx9pu6lhttps://music.apple.com/us/artist/peter-graeme/123056525http://en.wikipedia.org/wiki/Peter_Graemehttps://www.rcm.ac.uk/about/news/all/petergraeme.aspxhttps://www.thetimes.co.uk/article/peter-graeme-zv38jn2cv0jhttps://www.imdb.com/name/nm7553063/http://www.allmusic.com/artist/peter-graeme-q78712Peter GrahamPeter GreameEnglish Chamber OrchestraPhilharmonia OrchestraPhilomusica Of LondonMelos Ensemble Of LondonApollo OrchestraLeslie Jones And His Orchestra Of LondonThe Wind Virtuosi Of EnglandYorkshire Sinfonia + +843656Raymond CohenRaymond Hyam or Hyam CohenBritish violinist, clarinetist, chamber musician, orchestral leader, teacher. Born 27 July 1919 in Manchester, England - Died 28 January 2011 in London Engand. +He graduated from the [url=https://www.discogs.com/label/459222-Royal-Northern-College-Of-Music]Manchester College of Music[/url]. From the 1930's Cohen was solo violinist who performed in orchestras internationally. He became the youngest ever member of the [a374006], aged 16. He then spent six years in [a4780854]. He was a Professor at the [l290263]. He became leader of the Goldsborough Orchestra (later to become the [a=English Chamber Orchestra]), [a=The Haydn Orchestra], [a=The New Symphony Orchestra Of London] and the [a=Pro Arte Orchestra], and also guest-led most of the UK's leading chamber orchestras as well as the [a=Philharmonia Orchestra], the [a=London Symphony Orchestra] and the [a=BBC Symphony Orchestra]. In 1959, [a=Sir Thomas Beecham] appointed Cohen leader of the [a=Royal Philharmonic Orchestra], a post Cohen held for six years (until 1965). Following his term as RPO leader, Cohen continued a career as a soloist and increased his work in chamber music. +In 1953, Cohen married the pianist [a=Anthya Rael]. They had two children: [a=Gillian Cohen], a violinist, and [a=Robert Cohen], a cellist. Raymond and Robert occasionally gave duo recitals and later on, Anthya joined them to form [a=The Cohen Trio].Needs Votehttps://open.spotify.com/artist/165UGBdEGCj0F8IHjd0QS1https://en.wikipedia.org/wiki/Raymond_Cohenhttps://pronetoviolins.blogspot.com/2009/08/cohen.htmlhttps://www.theguardian.com/music/2011/mar/22/raymond-cohen-obituaryhttps://www.independent.co.uk/news/obituaries/raymond-cohen-violin-virtuoso-celebrated-his-rich-tone-and-sensitive-interpretations-2275656.htmlhttps://www.thestrad.com/british-violinist-and-concertmaster-raymond-cohen-dies-aged-91/1184.articlehttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/8435992/Raymond-Cohen.htmlhttps://www.thetimes.co.uk/article/raymond-cohen-pl33wkj8nz7https://kterrl.wordpress.com/2011/03/30/raymond-cohen-british-violinist-died-he-was-91/https://theirlifewastooshort.blogspot.com/2011/04/raymond-cohen.htmlhttps://hub.americanorchestras.org/2011/03/23/obituary-violinist-raymond-cohen-91/R. CohenRay CohenPro Arte OrchestraLondon Symphony OrchestraThe New Symphony Orchestra Of LondonBBC Symphony OrchestraRoyal Philharmonic OrchestraBen Pollack And His OrchestraHallé OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraLeslie Jones And His Orchestra Of LondonThe Haydn OrchestraThe Nefer EnsembleThe Band of the Royal Corps of SignalsThe Cohen Trio + +843657Michael Laird (2)English classical trumpeter, cornettist and teacher who received his musical education at the Royal College of Music in London. +His first steps in his professional career had him working as a modern trumpeter but after becoming acquainted with Walther Holy in Cologne, Germany he began to perform on the Baroque trumpet.  + +He became highly sought after as a musician and has been heard with numerous ensembles and orchestras including the Philip Jones Brass Ensemble, the Academy of St. Martin in the Fields, the English Chamber Orchestra, The King’s Singers, David Munrow’s Early Music Consort, studio orchestras on the James Bond films, and his own Michael Laird Brass Ensemble among others. + +Amongst popular artists he can be heard backing The Beatles, Sir Elton John, Sir Cliff Richard, Mike Oldfield, The Jam, Grace Slick... + +As a teacher he spent 15 years as a Professor at the Royal College of Music and for 6 years a Professor of Natural Trumpet and Cornetto at the Hochschule, Trottingen, Germany.  Giving many international masterclasses he is currently a Brass Consultant at the Birmingham Conservatoire and Wells Cathedral, England.Needs VoteLairdMike Lairdマイケル・レアドLondon BrassEnglish Chamber OrchestraNew London ConsortThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsPhilip Jones Brass EnsembleThe Academy Of Ancient MusicThe Chamber Orchestra Of EuropeCollegium Musicum 90London Classical PlayersMichael Laird Brass EnsembleBaroque Brass Of LondonLocke Brass ConsortClarion ConsortLondon Schools Symphony OrchestraThe English Concert + +843764Bob HortonRobert H. HortonUS jazz trombonist, born September 8, 1899 in Birmingham, Alabama. +Worked with [a=Sam Wooding] in New York 1922-1924, to South America with [a=Leon Abbey (2)] in 1927, back in USA joined [a=Wilbur De Paris]' orchestra in Philadelphia 1927-1928. With [a=Chick Webb] 1928-1929, toured with Ralph Cooper's Kongo Knights 1932-1933, with [a=Lucky Millinder] 1933-1934, [a=Willie Bryant] 1935-1936, [a=Edgar Hayes] 1937-1940. Worked on and off with [a=Cootie Williams]' big band during the 1940s. Retired from full-time work c. late 1940s.Needs VoteR. H. HortonR.H. HortonRobert "Bob" HortonRobert "Mack" HortonRobert H. HortonRobert HortonCootie Williams And His OrchestraWillie Bryant And His OrchestraEdgar Hayes And His OrchestraThe Jungle Band (3) + +843766Sylvester "Vess" PayneSylvester PayneAmerican jazz drummer.Needs VoteSilvester PayneSylvester "Ves" PayneSylvester PayneVess PayneCootie Williams And His OrchestraCootie Williams Sextet + +843768Alfred MooreJazz bassist.Needs VoteA. MooreLouis Armstrong And His OrchestraBill Doggett's Octet + +843779James Von StreeterTenor saxophonist and band leader, who under his own name recorded for Scoop and Savoy in Los Angeles, California, in 1949. +He also played behind numerous other artists on record, including Johnny Ace, Joe August, Little Esther, Little Richard, Preston Love, Johnny Otis, and Big Mama Thornton.Needs VoteJames "Von" StreeterJames StreeterJames Van StreeterStreeterVon StreeterJohnny Otis And His OrchestraJames Von Streeter & His Wig Poppers + +843780Nelson BryantUS jazz trumpeter from the swing-era. + +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/306010/Bryant_NelsonLucky Millinder And His OrchestraColeman Hawkins And His OrchestraColeman Hawkins Big Band + +843781Sterling MarloweBig band guitaristCorrectSterling MarlowLucky Millinder And His Orchestra + +843782Archie JohnsonUS jazz trumpeter from the swing-era. +Born : December 05, 1906 in Ellisville, Mississippi. +Died : ?. + +Archie worked with : Lucky Millinder, Sister Rosetta Tharpe, Count Basie, Benny Carter, Walter Brown, Billy Butterfield, Blanche Calloway, Willie Bryant, Earl Hines and others.Needs VoteArchie JohnstonArchie JohnstoneJohnsonLucky Millinder And His OrchestraBilly Butterfield And His OrchestraBenny Carter And His Orchestra + +843783Loyal WalkerCredited as trumpet player.Needs VoteJohnny Otis And His Orchestra + +843786Guy KellyEdgar Guy Kelly.American jazz trumpeter. +Played with : Toot Johnson, Oscar Celestin, Kid Howard, Boyd Atkins, Cassino Simpson, Erskine Tate, Dave Peyton, Tiny Parham, Carroll Dickerson, Jimmie Noone, Albert Ammons and others. + +Born : November 22, 1906 in Scotlandville, Louisiana. +Died : February 24, 1940 in Chicago, Illinois. +Needs VoteG. KellyGKKellyOriginal Tuxedo Jazz OrchestraAlbert Ammons And His Rhythm KingsFrankie Jaxon And His Hot ShotsJimmie Noone And His New Orleans Band + +843787Rufus WebsterPianistNeeds VoteBenny Carter And His Orchestra + +843788Leon BeckSaxophonistNeeds VoteL. BeckLeon W. BeckJohnny Otis And His OrchestraJoe Lutcher's Jump Band + +843791Henry WellsHenry James WellsAmerican jazz trombonist and singer, born 1906 in Dallas, Texas. +Worked with [a=Jimmie Lunceford] 1929-1935, [a=Claude Hopkins] 1932, and [a=Cab Calloway]. His association with [a=Andy Kirk] was interrupted by a period where he led his own big band, worked with [a=Gene Krupa] and [a=Teddy Hill] and served in the army. He recorded with [a=Rex Stewart] in 1946 and [a=Sy Oliver] in 1946-1948. In the 1960s he performed in California.Needs Votehttps://en.wikipedia.org/wiki/Henry_Wells_(musician)#:~:text=Henry%20James%20Wells%20(born%201906,starting%20in%20the%20late%201920s.https://www.allmusic.com/artist/henry-wells-mn0000956546/creditsH WellsH. WellsHWHenri WellsT/5 Henry WellsWellesWellsJimmie Lunceford And His OrchestraAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraTrummy Young And The Guys From V-DiscsHenry Wells And His Orchestra + +843795Jap JonesJasper JonesTrombonist, married to [a1009725]Needs VoteJasper "Jap" JonesJasper Jap JonesJohnny Otis And His Orchestra + +843798Edward MorantAfrican American big band and blues trombonist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/332469/Morant_EdwardEd MorantEdward A. MorantEdward MoranLucky Millinder And His Orchestra + +843799Marl YoungMarl Henderson YoungPianist, Arranger, Composer, Record company owner, Union official (Jan. 29, 1917, Bluefield, Virginia - April 29, 2009, Los Angeles). +Born Marl Henderson Young, he was also to be known as Marle Young, Merle Young, and Moral Young. At the age of 5 Youngs' mother moved her 7 children to Chicago, where Marl began playing piano at a young age (1923). In 1933 he joined the Musicians Union and played his first professional job with [a=Milt Hinton] and [a=Scoops Carey]. In the 1930s he played with others including [a=Reuben Reeves] and [a=Baby Dodds]. By the early 1940s he was arranging and directing floor shows at such prominent Chicago clubs as Club DeLisa, El Grotto, New Club Plantation, and The Rhumboogie. It was here that Marl was pianist and arranger in the Rhumboogie Dream Band, whose lineup did briefly feature [a=Charlie Parker], then billed later as [a=Marl Young And His Orchestra]. 1945 Young was drafted and discharged from the US Army, and also becoming a law school graduate. In 1946 Marl was pianist and arranger in the [a=Fletcher Henderson Orchestra] at the Club DeLisa, while during 1946/47 he was running his own record label [l=Sunbeam (4)]. A move to Los Angeles in 1947 saw him as a key player in desegregating L.A. musicians unions. He also worked in TV studios as musical director for Desilu Productions. + +Needs Votehttp://www.jazzdocumentation.ch/mario/marlyoung.pdfhttp://www.latimes.com/local/obituaries/la-me-marl-young3-2009may03-story.htmlM. YoungMark YoungMarl H. YoungYoungMarl Young And His OrchestraMarl Young's Band + +843803Gordon ThomasCredited as jazz trombonist. Recorded series of independent self-produced vocal recordings on his own Samhot Records label. Cited as an example of "outsider music" by radio host Irwin Chusid in the 2000 book "Songs in the Key of Z: The Curious Universe of Outsider Music".Needs Votehttps://en.wikipedia.org/wiki/Gordon_Thomas_(outsider_musician)https://vimeo.com/154216696http://www.gordonthomas.comhttps://gordonthomas.bandcamp.comG. ThomasThomasDizzy Gillespie And His Orchestra + +843805Johnny Hodges And His OrchestraAfter 23 years with Duke Ellington's Orchestra, saxophonist Johnny Cornelius Hodges started his own band in March 1951. The band lasted until September 1955, when Johnny Hodges returned to his place as leader of the Duke's reed section and participated in one of the many revivals of the history of the best big bands in the history of jazz.Needs VoteDuke Ellington And His Famous OrchestraDž. Hodžeso Vadovaujamas OrkestrasHodges OrchestraJ. Hodges' OrchestraJohn Hodges And OrchestraJohnny Hodges E Sua OrquestraJohnny Hodgers & His OrchestraJohnny HodgesJohnny Hodges & His "Orchestra"Johnny Hodges & His Orch.Johnny Hodges & His OrchestraJohnny Hodges & His Orchestra (An Ellington Unit)Johnny Hodges & OrchestraJohnny Hodges And His All-Stars OrchestraJohnny Hodges And His BandJohnny Hodges And His Little BandJohnny Hodges And His Orch.Johnny Hodges And His bandJohnny Hodges And OrchestraJohnny Hodges And Orchestra (An Ellington Unit)Johnny Hodges And Orchestra (An Ellington Unit))Johnny Hodges And The EllingtoniansJohnny Hodges BandJohnny Hodges E La Sua OrchestraJohnny Hodges E Sua OrquestraJohnny Hodges Et His OrchestraJohnny Hodges Et Son His OrchestreJohnny Hodges Et Son OrchestreJohnny Hodges OrchestraJohnny Hodges OrkesterJohnny Hodges With OrchestraJohnny Hodges' OrchestraДжонни Ходжес И Его ОркестрJohn ColtraneDuke EllingtonJohnny WilliamsClark TerryQuentin JacksonRay BrownDon ByasRaymond FolBen WebsterJimmy WoodeRoy EldridgeJohnny HodgesVic DickensonBilly StrayhornSam WoodyardCootie WilliamsLawrence BrownRichie PowellOsie JohnsonWendell MarshallFlip PhillipsRed CallenderJoe MarshallHarry CarneyRay NanceAl McKibbonSonny GreerOtto HardwickFred GuyBarney BigardHayes AlvisHarold BakerAl SearsJimmy HamiltonBilly Taylor Sr.Emmett BerryJ.C. HeardJean EldridgeAl HibblerJimmy BlantonLouis BellsonBabe ClarkBuddy ClarkCall CobbsLloyd Trotman (2)Rudy WilliamsTeddy BrannonArthur ClarkeLeroy LovettNelson WilliamsBarney RichmondAl Walker (2)Leon LaFellRaymond Fal + +843806Hillard BrownAmerican jazz drummer. +Born : May 12, 1913 in Birmingham, Alabama. +Worked with : Ruth Oldham (1934), [a935890] (1935), Tony Fambro (1935), [a4006975] (1935), [a2385675] (1936), [a1409386] (1937), again [a4006975] (1937-'38), [a332600] (1939), [a5076996] (1939), [a825850] (1940-'41), [a636147] (1942), [a1033035] (1943), [a274433] (1943), [a1750857] (1944) and in tour with [a145257] (October 1944), [a311744] (1944), [a257115] (1945), [a687506] (1945).From 1946 until 1954 with his own band in Chicago.Played 1970s with Art Hodes. Needs Votehttps://www.allmusic.com/artist/hillard-brown-mn0001211587https://adp.library.ucsb.edu/index.php/mastertalent/detail/305829/Brown_Hillardhttps://www.alabamamusicoffice.com/artists-a-z/b/424-brown-hillard.htmlHilliard BrownTate McLaughlinDuke Ellington And His Orchestra + +843811Don StovallDonald StovallAmerican jazz saxophonist (alto) +Born: December 12, 1913 in St. Louis, Missouri +Died: November 20, 1970 in New York City, New York +Stovall played with [a=Dewey Jackson], [a=Fate Marable] (on riverboat), [a=Eddie Johnson] (1932-'33), [a=Lil Armstrong], [a=Sammy Price], [a=Snub Mosley], [a=Eddie Durham], [a=Pete Johnson], [a=Cootie Williams], [a=Red Allen], retired from music in 1950. +Needs Votehttps://en.wikipedia.org/wiki/Don_Stovallhttps://adp.library.ucsb.edu/names/345574Don StovalDon StovallsDonald StovallStovallPete Johnson's All-StarsPete Johnson's BandLil Armstrong And Her DixielandersSam Price And His Texas BlusiciansHot Lips Page And His BandSnub Mosley And His OrchestraHenry Allen Sextet + +843814Edward IngeEdward Frederick IngeAmerican jazz clarinetist and arranger, born May 7, 1906 in St. Louis (or) Kansas City, Missouri, died October 8, 1988. +Inge played with George Reynold's Orchestra, Dewey Jackson, Art Sims & His Creole Roof Orchestra, McKinney's Cotton Pickers, Andy Kirk and others. + +Needs Votehttps://en.wikipedia.org/wiki/Edward_Ingehttps://www.allmusic.com/artist/edward-inge-mn0000173225/biographyhttps://adp.library.ucsb.edu/names/113595Ed IngeIngeAndy Kirk And His Clouds Of JoyDon Redman And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraMary Lou Williams And Her Kansas City SevenArthur Sims And His Creole Roof OrchestraBenny Morton And His Orchestra + +843818Wilbert BarancoAmerican jazz pianist, singer and bandleader. + +Born : April 15, 1909 in Baton Rouge, Louisiana. +Died : October, 1983. +Needs Votehttps://en.wikipedia.org/wiki/Wilbert_BarancoBarancoW. BarancoW. BarrancoWilbert Baranco And His OrchestraLucky Thompson's All StarsWilbert Baranco OrchestraWilbert Baranco And His Rhythm BombardiersWilbert Baranco QuartetWilbert Baranco And His TrioThe Wilbert Baranco Quintet + +843819Ernest PurceUS jazz/blues saxophonist from the swing-era. + +Needs VoteEPErenst PurceErnest PuceErnest PureeErnie PurcePurcePureeJimmie Lunceford And His OrchestraLucky Millinder And His Orchestra + +843820Edward SimsSwing jazz trumpet and trombone player.Needs VoteCapE. SimsEd SimmsEd SimsEdward SimmsSimmsErskine Hawkins And His OrchestraEarl Hines And His OrchestraErskine Hawkins And His 'Bama State Collegians + +843821Gerald FosterTrombone player from the 1940s Big Band era, having performed with [a299953] and [a269594] orchestras. Needs VoteCharlie Barnet And His OrchestraFreddie Slack And His Orchestra + +843824Al WichardAlbert Wichard.American jazz (and) blues drummer, singer and bandleader. + +Born : August 15, 1919 in Welbourne, Arkansas. +Died : November 14, 1959 in Los Angeles, California.Needs Vote"Cake" WichardA. WichardAl "Cake" WichardAl "Cake" Wichard TrioAl (Cake) WichardAlbert "Cake" WichardAlbert WichardCake WichardWichardIllinois Jacquet And His OrchestraJay McShann's TrioJay Mcshann And His Jazz-MenAl Wichard & His All Star BandThe Al Wichard Sextette + +843825John PettigrewTrombonistNeeds VoteJ. PettigrewJohnny Otis And His Orchestra + +843827Paul BascombPaul Bascomb.American jazz tenor saxophonist. +born February 12, 1910 in Birmingham, Alabama. +died December 2,1986 in Chicago, Illinois. + +He was the older brother of trumpeter [a=Dud Bascomb]. + +Needs Votehttps://adp.library.ucsb.edu/names/110877"Manhattan" Paul Bascomb'Manhattan' Paul BascombeBarcombBascombP. BascomP. BascombPaul BascomPaul BascombeCount Basie OrchestraErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State CollegiansThe Paul Bascomb BandPaul Bascomb And His OrchestraPaul Bascomb's ComboPaul Bascomb And His All Star Band + +843829Bill McLemoreGuitarist active around 1940.Needs VoteW. McLemoreWilliam McLeMoreWilliam McLemoreWilliam McLenorErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State Collegians + +843831Arthur DennisAmerican baritone and alto saxophonist, whose recorded work is limited to 1945-1947. +Style transitional between Swing and BopNeeds Votehttps://www.allmusic.com/artist/arthur-dennis-mn0001289635A. DennisArthur DenisLouis Armstrong And His OrchestraIllinois Jacquet And His OrchestraIllinois Jacquet And His All StarsRussell Jacquet & His OrchestraRussell Jacquet And His Yellow Jackets + +843833Lee PopeTenor Saxophone player during the 1940s Big Band era. Needs VoteLee PopCootie Williams And His Orchestra + +843837Marcellus GreenJazz trumpeter.Needs VoteM. GreenErskine Hawkins And His OrchestraErskine Hawkins And His 'Bama State Collegians + +843839Flaps DungeeCredited as saxophone player.Needs VoteJohn "Flap" DungeeJohn "Flaps" DungeeJohn "Flop" DungeeJay McShann And His Orchestra + +843840Elmer WarnerJazz guitarist.Needs Votehttps://www.allmusic.com/artist/elmer-warner-mn0001746583/creditsE. WarnerElmer WarmerElmer WarnetLouis Armstrong And His OrchestraBill Doggett's Octet + +843846Leon SpannJazz bassistCorrectBuddy Johnson And His OrchestraLucky Millinder And His Orchestra + +843897Oliver DohnanyiOliver von DohnányiSlovak conductor. + +Born March 2, 1955 in Trenčín, Slovakia (former Czechoslovakia). Needs Votehttps://www.dohnanyi.eu/https://www.linkedin.com/in/oliver-von-dohn%C3%A1nyi-54237524/https://en.wikipedia.org/wiki/Oliver_von_Dohn%C3%A1nyiDohnányiO. DohnanyiO. DohnányO. DohnányiO. v. DohnanyiOliver DohnanijOliver DohnaniyOliver DohnanlyOliver DohnanyOliver DohnányOliver DohnányiOliver V. DohnanyiOliver Von DohananyiOliver Von DohnanyiOliver v. DohnanyiOliver van DohnanyOliver von DohnanyiOliver von DohnayiOliver von DohnányiOlivier DohnaniyOlivier Dohnanyiオリヴァー・フォン・ドナニーSlovak Radio Symphony Orchestra + +843911Camerata Academica SalzburgAustrian professional chamber orchestra based in Salzburg. +Originally founded by [a890414] in 1952 as [b]"Camerata Academica des Mozarteums Salzburg"[/b] with students and teachers of the Mozarteum university. Later the name changed to [b]"Camerata Academica Salzburg"[/b] and nowadays it is called [b]"Camerata Salzburg"[/b]. +[b]Not to be confused with [a901539].[/b]Needs Votehttps://www.camerata.at/https://en.wikipedia.org/wiki/Camerata_SalzburgAcademia SalzburgAcademic SalzburgAcademica SalzburgCamarata AcademicaCamarata Academica Des MozarteumsCamarata Academica Des Salzburger MozarteumsCamarata Academica SalzburgCamareta Academica Del Mozarteum De SalzburgCamera Academics of the Salzburg MozarteumCamerata Academia Des Mozarteums SalzburCamerata Academia Des Mozarteums SalzburgCamerata Academia Des Salzburger MozarteumsCamerata Academia Of The Salzburg MozarteumCamerata Academia SalzburgCamerata AcademicaCamerata Academica Des Mozarteums SalzburgCamerata Academica De SalzbourgCamerata Academica Del Mozarteum De SalzburgCamerata Academica Del Mozarteum De SalzburgoCamerata Academica Del Mozarteum Di Camerata Academica Del Mozarteum Di SalisburgoCamerata Academica Del Mozarteum Di SalisburgoCamerata Academica DesCamerata Academica Des Salzburger MozarteumsCamerata Academica Des Mozarterums SalzburgCamerata Academica Des Mozarteum SalzburgCamerata Academica Des MozarteumsCamerata Academica Des Mozarteums In SalzburgCamerata Academica Des Mozarteums SalzburgCamerata Academica Des Mozarteums SlzburgCamerata Academica Des Mozarteums, SalzburgCamerata Academica Des Mozerteums SalzburgCamerata Academica Des Salsburger MozarteumsCamerata Academica Des Salzburg MozarteumsCamerata Academica Des Salzburg Mozarteums,Camerata Academica Des Salzburger MazarteumsCamerata Academica Des Salzburger MorzarteumsCamerata Academica Des Salzburger MorzateumsCamerata Academica Des Salzburger MozarteumCamerata Academica Des Salzburger MozarteumsCamerata Academica Des Salzburger Mozarteums SalzburgCamerata Academica Des Salzburger MozartoriumsCamerata Academica Des Slazburger MozarteumsCamerata Academica Dez Salzburg MozarteumsCamerata Academica Di SalisburgoCamerata Academica Do Mozarteum De SalzburgCamerata Academica Do Mozarteum De SalzburgoCamerata Academica Du Mozarteum De SalzbourgCamerata Academica Du Mozarteum De Salzbourg*Camerata Academica Du Mozarteum De SalzburgCamerata Academica Du Mozarteum de SalzbourgCamerata Academica Dul Mozarteum De SalzbourgCamerata Academica Fra Mozarteum, SalzburgCamerata Academica Mozarteum De SalzbourgCamerata Academica Mozarteum SalzburgCamerata Academica Mozarteum de SalzbourgCamerata Academica Mozarteum, SalzburgCamerata Academica Mozarteums, SalzburgCamerata Academica Of SalzburgCamerata Academica Of Salzburg MozarteumCamerata Academica Of The Salzburg MozarteumCamerata Academica Of The Mozarteum SalzburgCamerata Academica Of The Mozarteum,SalzburgCamerata Academica Of The Salzburg MozarteumCamerata Academica Of The Salzburger MozarteumCamerata Academica OrchestraCamerata Academica Orchestra Of The Salzburg MozarteumCamerata Academica Salzburg MozarteumCamerata Academica Salzburg OrchestraCamerata Academica Salzburgo OrchestraCamerata Academica Van Het Salzburger MozarteumCamerata Academica del Mozarteum de SalzburgCamerata Academica del Mozarteum de SalzburgoCamerata Academica del Mozarteum di SalisburgoCamerata Academica des MozarteumsCamerata Academica des Mozarteums SalzburgCamerata Academica des Mozarteums, SalzburgCamerata Academica des Salzburger MozarteumsCamerata Academica des Sazburger MozarteumsCamerata Academica do Mozarteum De SalzburgoCamerata Academica du Mozarteum de SalzbourgCamerata Academica of SalzburgCamerata Academica of the Saltzburg MozarteumCamerata Academica of the Salzburg MozarteumCamerata Academica of the Salzburger MozarteumCamerata Academica, Du Mozartum De SalzbourgCamerata Academica, Mozarteum, SalzburgCamerata Academica, SalzburgCamerata Academica, Salzburg MozarteumCamerata Academica, Salzburger MozarteumCamerata Academy Of SalzburgCamerata Académica Del Mozarteum De SalzburgoCamerata Académica Del Mozarteum di SalisburgoCamerata Académica del Mozarteum de SalzburgoCamerata Académica des Salzburger MozarteumsCamerata Académica, SalzburgoCamerata Acadêmica Do Mozarteum De SalzburgCamerata Acadêmica Do Mozarteum De SalzburgoCamerata Accademica Del Mozarteum Di SalisburgoCamerata Accademica Des Mozarteums SalzburgCamerata Accademica Di SalisburgCamerata Accademica Di SalisburgoCamerata Adacemica Des Salzburger MozarteumsCamerata Adacemica Of The Salzburger MozarteumCamerata Adadémica Del Mozarteum De SalzburgoCamerata De SalzbourgCamerata Des Mozarteums Academica SalzburgCamerata Des Mozarteums SalzburgCamerata Du Mozarteum De SalzbourgCamerata SaltzburgCamerata SalzburgCamerata academica SalzburgCamerata academica des Salzburger MozarteumsCamereta Academica Des Mozarteums SalzburgCammarata Academica Orch.Die Camerata Academica Des Mozarteums, SalzburgDie Camerata Academica Des Salzburg MozarteumsDie Camerata Academica Des Salzburger MozarteumsDie Camerata Academica des Salzburger MozarteumsInstrumentalensemble Der Camerata Academica Des Salzburger MozarteumsL'Academie De Chambre De SalzbourgOrch. Camerata Academica De SalzbourgOrchester Camerata Academica Des Mozarteums SalzburgOrchester D. Camerata Academica Des Mozarteums SalzburgOrchester Der Salzburger Camerata AcademicaOrchester der Camerata academica des Mozarteums SalzburgOrchestra De La Camerata Academica Du MozarteumOrchestra De La Camerata Academica Du Mozarteum De SalzburgOrchestra Of The Salzburg Camerata AcademicaOrchestra-Academica SalzburgOrchestre Camerata Academica Du Mozarteum De SalzbourgOrchestre Camerata Academica Du Mozarteum SalzburgOrchestre De La Camerata Academica De SalzbourgOrchestre De La Camerata Academica Du Mozarteum De SalzbourgOrchestre De La Camerata Academica Du Mozarteum Du SalzbourgOrchestre-Sérénade Du Festival De Salzbourg (Camerata Academica)Orquesta De Camara De La Academia Del Mozarteum De SalzburgoSalburg Mozarteum Camarata AcademicaSalzberg Mozarteum Camerata AcademicaSalzburg CamerataSalzburg Camerata AcademicaSalzburg Mozarteum Camerata AcademiaSalzburg Mozarteum Camerata AcademicaSalzburg Mozarteum Camerata Academica SalzburgSalzburg Mozartuem Camerata AcademicaSolistes, Chorus Et Camerata Academica Du Mozarteum De SalzbourgThe Camarata Academia SalzburgThe Camerata Academica Des SalzburgThe Camerata Academica Of The Salzburg MozarteumThe Camerata Academica Of The Salzburger MozarteumThe Camerata Academica OrchestraThe Camerate Academy Of SalzburgThe Serenade-Orchestra Of The Salzburg FestivalΚαμεράτα ΑκαντέμικαЗальцбургский Академический ОркестрЗальцбургский Камерный Оркестр "Камерата Академика"Зальцбургский Оркестр Моцартеума Camerata AcademicaЗальцбургский камерный оркестр "Камерата Академика"Зальцбургский оркестр Моцартеума Camerata AcademicaКамерный оркестр Зальцбургского "Моцартеума" "Camerata Academica"Оркестр Зальцбургского Моцартеума Camerata Academicaザルツブルク・モーツァルテウム・カメラータ・アカデミカHeinz HolligerAurèle NicoletKlaus ThunemannWerner DickelJörg WinklerMatthias BäckerVolker AltmannMatthew WilkieClare HoffmanErnst KovacicIris JudaMathias SchesslBernhard PaumgartnerReinhold MalzerMechiel van den BrinkDane RobertsEnrico GroppoErich HehenbergerMarco LugaresiLila BrownKurt KörnerAnnelie GahlSonja KorakDanka NikolićSilvia SchweinbergerErnst HinreinerWolfgang BergJohannes HinterholzerStefano GuarinoIngeborg StitzFirmian LermerCharlie FischerClaire DolbyJosef RadauerMichael VladarClaudia HofertGünter SeifertRadovan VlatkovićNatalie CheeJosef SterlingerKana MatsuiJohannes GürthRobert KuppelwieserIzso BajuszIngrid SweeneyIngrid HasseSașa BotaFrank ForstHannah PerowneDagny Wenk-WolffDieter SalewskiSusie MészárosGunter TeuffelOskar HagenHeidi LitschauerÁcs GyörgyMichaela GirardiMichael TomasiBenjamin RiviniusAnne Yuuko AkahoshiEduard WimmerKatja LämmermannYoshiko HagiwaraJohannes AuerspergChrista Richter-SteinerDieter AmmererWally HaseBruno SteinschadenGregory AhssWolfgang GaisböckGiovanni GuzzoWolfgang KlinserRizumu SugishitaPaolo BonominiMaria SawerthalWerner Neugebauer (2)Jeremy FindlayWolfgang BreinschmidAlfred BürgschwendtnerYukiko TezukaStephanie BaubinThomas HeissbauerGéza RhombergNanni MalmLaura Urbina + +843912Gianluigi GelmettiGianluigi GelmettiItalian conductor, composer and guitarist. +Born September 11, 1945 in Rome, and died August 11, 2021 in Monte Carlo. +Former chief conductor and artistic director of [a610809].Needs Votehttps://en.wikipedia.org/wiki/Gianluigi_Gelmettihttps://www.imdb.com/name/nm0312482/G. GelmettiG.GelmettiGelmettiGianluiginGelmettiL. GelmettiДжанлуиджи Джельметти + +844065Edgar KrappEdgar Krapp (born June 3, 1947, Bamberg, Bavaria, Germany) is a German organist and Professor for Catholic church music and organ at the Munich Conservatory (Musikhochschule München).Needs Votehttp://www.musikhochschule-muenchen.mhn.de/infos/lehrer/krapp.htmhttps://de.wikipedia.org/wiki/Edgar_KrappE. KrappEdgard KrappKrappRegensburger Domspatzen + +844086Lasse DahlquistLars Erik DahlquistSwedish composer, hit singer and actor, born 14 September 1910 in Örgryte, Gothenburg, died 14 October 1979 on Brännö in Styrsö parish in the municipality of Gothenburg. + +Dahlquist recorded 400 songs in the 1930s using various pseudonyms (Set Lahnge, Sten Aller, Ray Garden, Aron Salmi, Willy Dahl) +Needs Votehttp://www.lassedahlquist.se/https://sv.wikipedia.org/wiki/Lasse_DahlquistDahliqvistDahlquistDahlqvistDalquistL DahlkvistL DahlquistL DahlqvistL. DahlquistL. DahlqvistL. DalquistL. E. DahlquistL. E. DahlqvistL.DahlquistL.DahlqvistLars DahlkvistLars DahlquistLars DahlqvistLars Erik DahlquistLars-Erik DahlquistLasse DahlkvistLasse DahlqvistLasse DalquistLasse DalqvistLasse LahlqvistSten AllerJörgen (4)Set LahngeRay Garden (2)Tre Sang + +844147Friedrich TilegantGerman conductor (* 18 May 1910 in Anderbeck, Oschersleben County, German Empire, † 18 February 1968 in Pforzheim, Germany). +He was the founder and first principal conductor of the [a=Südwestdeutsches Kammerorchester] in Pforzheim.Needs Votehttp://www.pfenz.de/wiki/Friedrich_Tileganthttps://www.swdko-pforzheim.de/orchester/orchesterbiografie/https://rateyourmusic.com/artist/friedrich-tilegantF. TilegantFr. TilegantFreidrich TilegantFriedr. TilegantFriedricht TillegantTilegantSüdwestdeutsches Kammerorchester + +844151Horst HuberClassical percussionistNeeds VoteSymphonie-Orchester Des Bayerischen Rundfunks + +844157Bernart de VentadornBernart de Ventadorn (1130-1140 – 1190-1200), also known as Bernard de Ventadour or Bernat del Ventadorn, was a prominent troubador of the classical age of troubadour poetry.Correcthttp://en.wikipedia.org/wiki/Bernart_de_VentadornB. De VentadourB. de VentadornB. de VentadourB.de VentadornBernar De VentadourBernard De VentadornBernard De VentadourBernard Di VentadornBernard de VentadornBernard de VentadourBernard von VentadornBernartBernart Da VentadornBernart De VentadourBernart V. VentadornBernart de V.Bernart de VentadourBernat De VentadornBernat de VentadornBernatz de VentadornGillebert De BernevilleVentadornVentadourde Ventadorn + +844161Etienne de MeauxEtienne de Meaux +*: fl1250 +†: 1250 +country: FranceNeeds Vote + +844166Max EngelMulti-instrumentalist with main instrument cello, born 1937 in Innsbruck, Austria. He also worked as instrument maker.Needs Votehttp://engelfamilie.com/EngelM. EngelConcentus Musicus WienCollegium AureumIl Giardino ArmonicoDie Engel-FamilieInnsbrucker KammerorchesterDas Mozart-TrioCollegium Pro Musica Innsbruck + +844167Oswald von WolkensteinWolkenstein, poet and singer with his origins in the rural aristocracy of the Southern Thyrol, was born between 1376 and 1378, probably in Pustertal, and died in 1445 in Meran.Needs Votehttps://en.wikipedia.org/wiki/Oswald_von_WolkensteinO. V. WolkensteinO. WolkensteinO. v. WolkensteinO. von WolkensteinO.v. WolkensteinOssiOswaldOswald V. WolkensteinOswald v. WolkensteinOswald van WolkensteinOswald von WolkensteinOswald von Wolkenstein, 1377-1445Oswald von Wolkenstein?Wolkenstein + +844180Johannes Fink (2)Classical cellist and viola da gamba player, born 12 August 1942 in Nuremberg, Germany.Needs VoteJohannes FinckИоханнес ФинкMünchener Bach-OrchesterStudio Der Frühen MusikDeutsche BachsolistenOrchestre De Chambre De LausanneBachcollegium StuttgartArchiv Produktion Instrumental Ensemble + +844181Helga StorckClassical harpist.Needs VoteH. StorckLeonhardt-ConsortUlsamer CollegiumCamerata Accademica Hamburg + +844183Gace BruléFrench trouvère, a native of Champagne (c. 1160 – after 1213).Correcthttp://en.wikipedia.org/wiki/Gace_Brul%C3%A9Gace BrûléGaces Brulles + +844184Guiraut de BornelhGiraut de Bornelh (ca. 1138 – 1215), whose first name is also spelled Guiraut and whose nickname was Borneil(l) or Borneyll, was a troubadour, connected with the castle of the Viscount of Limoges.Needs Votehttp://en.wikipedia.org/wiki/Giraut_de_Bornelhhttps://adp.library.ucsb.edu/names/360355G. De BornèlhG. de BorneilGirau de BornèlhGirautGiraut De BornelhGiraut de BorneilhGiraut de BorneillGiraut de BornelhGiraut de Bornelh, 2. Hälfte 12. Jh.Giraut de BourneillGuirant de BornelhGuiraud De BornèlhGuiraud de BorneilGuiraud de BornelhGuiraud de BornèlhGuiraut De BoernelhGuiraut De BorneilGuiraut De BorneilhGuiraut De BorneillGuiraut De BornelvhGuiraut De BornheilGuiraut De BornèlhGuiraut de BorneilGuiraut de BorneilhGuiraut de BorneillGuirautz de Bornelh + +844185Paul HailperinClassical oboe player.Correcthttp://www.hailperin.com/P. HailperinConcentus Musicus Wien + +844186Comtessa de DiaBeatritz de DiaOccitan medieval trobairitz (female troubadour). +Born c. 1140, died 1175 in Provence. +Correcthttp://en.wikipedia.org/wiki/Beatritz_de_DiaBeatritz De DiaBeatritz de DiaBeatrix De DiaBeatrix de DiaBeatriz De DiaBeatriz De DíaBeatriz de DiaBeatriz de DiáComtesa Beatriz de DiaComtessa Beatritz de DiaComtessa Beatriz De DiaComtessa de DieComtesse de DieCondesa De DiaCondesa de DiaCtesse de DieLa Comptessa De DiaLa Comtessa (Beatritz) de DiaLa Comtessa De DiaLa Comtessa de DiaLa Comtesse De DieLa Comtesse de DieLa Contessa de Dia + +844207Don SmithersDon LeRoy SmithersAmerican classical wind player and music historian, born 17 February 1933.Needs Votehttps://en.wikipedia.org/wiki/Don_SmithersDon L. SmithersEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsConcentus Musicus WienLa Petite BandeNew York Pro MusicaMusica ReservataClarion Consort + +844246Maxence LarrieuMaxence LarrieuFrench Classical flautist (born October 27, 1934 in Marseille). +He began to study flute in 1944, at the Marseille Conservatory with the teacher [a2515325], who was the father of [a379816]. In 1951, he won the first prize at the International Geneva Competition. He played with the Paris Opéra-Comique Orchestra from 1954 to 1966 and then in the Paris Opéra Orchestra until 1978. Alongside these positions, he also was a chamber musician, replacing Jean-Pierre Rampal in the Ensemble Baroque De Paris in 1970 and recording with Orchestre de Chambre Jean-François Paillard.Needs Votehttps://www.maxence-larrieu.fr/https://fr.wikipedia.org/wiki/Maxence_Larrieuhttps://en.wikipedia.org/wiki/Maxence_LarrieuLarrieuM. LarrienM. LarrieuM.LarrieuMaxence Larrieurマクサンス・ラリューKammerorchester Des Saarländischen Rundfunks, SaarbrückenI MusiciOrchestre National De L'Opéra De ParisOrchestre De Chambre Jean-François PaillardEnsemble Baroque De ParisQuatuor Instrumental Maxence LarrieuOrchestre Du Théâtre National De L'Opéra-ComiqueQuintette À Vents Classic + +844248Sir Arthur SullivanSir Arthur Seymour SullivanHe was an English composer (May 13, 1842 – November 22, 1900), of Irish and Italian descent, best known for his operatic collaborations with librettist W. S. Gilbert, including such continually-popular works as H.M.S. Pinafore, The Pirates of Penzance, and The Mikado. Sullivan's artistic output included 23 operas, 13 major orchestral works, eight choral works and oratorios, two ballets, incidental music to several plays, and numerous hymns and other church pieces, songs, parlour ballads, part songs, carols, and piano and chamber pieces.Needs Votehttps://en.wikipedia.org/wiki/Arthur_Sullivanhttps://www.britannica.com/biography/Arthur-Sullivanhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102694/Sullivan_ArthurA S SullivanA SullivanA. S. SullivanA. SullivanA.S. SullivanA.SullivanArthur SullivanArthur S. SullivanArthur Seymor SullivanArthur Seymour SullivalArthur Seymour SullivanArthur SullivanSillivanSir A. SullivanSir Arthur S. SullivanSir Arthur Seymour SullivanSir Arthur Sullivan (P.D.)SulliavanSullivanСулливанGilbert & Sullivan + +844317Daniel StabrawaDaniel StabrawaDaniel Stabrawa, born 1955 in Krakow, has been a member of the [a=Berliner Philharmoniker] from 1983 to 2021 and a concertmaster since 1986.Needs Votehttps://en.wikipedia.org/wiki/Daniel_StabrawaDaniel StrabrawaBerliner PhilharmonikerPhilharmonia Quartett Berlin + +844322Denise MonteilDenise Monteil (30 July 1928 - 7 July 1984) was a French classical soprano/contralto vocalist.Needs VoteD. MonteilD.MonteilMonteil + +844419Werner KrennAustrian tenor and bassoonist, born 21 September 1943 in Vienna, Austria.Needs VoteKreenKrennWerner Kremennヴェルナー・クレン = Werner KrennDie Wiener SängerknabenWiener Philharmoniker + +844441Neil JenkinsEnglish tenor vocalist, born April 9, 1945 in St Leonards-on-Sea, Sussex.Needs Votehttp://www.neiljenkins.com/JenkinsNeill JenkinsDeller ConsortPro Cantione AntiquaSchütz Consort + +844450Thurston DartRobert Thurston DartEnglish harpsichordist, organist and conductor (born September 3, 1921 - died March 6, 1971). +Needs Votehttp://www.bach-cantatas.com/Bio/Dart-Thurston.htmhttps://en.wikipedia.org/wiki/Thurston_DartDartR. Thurston DartT. DartEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsPhilomusica Of LondonThe Boyd Neel String OrchestraThe Jacobean Ensemble + +844451Colin TilneyColin TilneyEnglish-born Canadian harpsichordist and clavichordist, born October 31, 1933, in London, England - died December 17, 2024. He moved to Canada in 1979.Needs Votehttp://www.bach-cantatas.com/Bio/Tilney-Colin.htmhttps://en.wikipedia.org/wiki/Colin_TilneyCollin TilneyTilneyThe Academy Of St. Martin-in-the-FieldsHesperion XXThe London StringsCamerata Accademica HamburgLondon Soloists Ensemble + +844606Gerd AlbrechtGerman conductor, born July 19, 1935 in Essen, died Feb 2nd 2014 in Berlin. [a8551878] chief conductor (1975–1980).Needs Votehttp://www.gerd-albrecht.com/https://en.wikipedia.org/wiki/Gerd_AlbrechtAlbrechtG. AlbrechtThe Czech Philharmonic OrchestraPhilharmonisches Orchester Der Hansestadt LübeckTonhalle-Orchester Zürich + +844616Jacques Mercier (3)French conductor. +Born in Metz, France, 11 Nov.1945. +Conduced several orchestras including: Orchestre national d'Île-de-France, Orchestre philharmonique de Turku (Finland), Orchestre national de Lorraine, London Symphony Orchestra, Orchestre philharmonique de Moscou, Orchestre de la Suisse Romande.Needs Votehttps://fr.wikipedia.org/wiki/Jacques_Mercier_%28chef_d'orchestre%29https://www.imdb.com/name/nm1051984/J. MercierJacques MercierJaques MercierMercierジャック・メルシェLondon Symphony OrchestraOrchestre National De FranceMoscow Philharmonic OrchestraTurku Philharmonic OrchestraPhilharmonie De Lorraine + +844675Carlo GesualdoCarlo Gesualdo da VenosaItalian Renaissance composer, Prince of Venosa and Count of Conza. He was born 8 March 1566 at Venosa, Kingdom of Naples (now in Potenza province, Basilicata region, Italy) and died 8 September 1613 in his family's place of origin, Gesualdo (now in Avellino province, Campania region, Italy).Needs Votehttps://en.wikipedia.org/wiki/Carlo_Gesualdohttps://www.britannica.com/biography/Carlo-Gesualdo-principe-di-Venosa-conte-di-Conzahttps://web.archive.org/web/20140516192024/http://gesualdo.co.uk/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102545/Gesualdo_da_Venosa_CarloC. GesualdoC. Gesualdo Da VenosaC. Gesualdo da VenosaCarlo G. ManuscriptCarlo Gesualdo Da VenosaCarlo Gesualdo De VenosaCarlo Gesualdo Di VenosaCarlo Gesualdo Prince De VenosaCarlo Gesualdo Principe Di VenosaCarlo Gesualdo da VenosaCarlo Gesualdo de VenosaCarlo Gesualdo di VenosaCarlo Gesualdo, Prince De VenosaCarlo Gesualdo, Prince of VenosaCarlo Gesulado Da VenosaCarlos GesualdoD. Carlo GesualdoDa VenosaDon Carlo Di Gesualdo Di VenosaDon Carlo GesualdoDon Carlo Gesualdo 1560 - 1613Don Carlo Gesualdo Da VenosaDon Carlo Gesualdo Di VenosaDon Carlo Gesualdo Di VeuosaDon Carlo Gesualdo Principe Da VenosaDon Carlo Gesualdo Principe Di VenosaDon Carlo Gesualdo di VenosaDon Carlo Gesualdo, Fürst Von VenosaDon Gesualdo Di VenosaDzhesualdo di VenosaG. Da VenosaG. da VenosaG. di VenosaGesualdoGesualdo Da VenosaGesualdo Di VenosaGesualdo Oa VenosaGesualdo Principe da Venosa, CarloGesualdo VenosaGesualdo da VenosaGesualdo di VenosaGesuladoKarlo GesualdoPrince Gesualdo Da VenosaVenosada VenosaДжезуалдо ди ВенозаДжезуальдо Ди ВенозаК. ДжезуальдоК. Джезуальдо Да ВенозаК. Джезуальдо Де ВенозаКарло Джезуальдо Ди Венозаジェズアルド + +844997Byron FulcherByron FulcherBritish classical (alto/tenor) trombone, euphonium, & bass trumpet player, and Professor of Trombone. Born in 1970 in Cornwall, England, UK. +He held the position of Co-Principal Trombone of the [a=Orquesta Sinfónica De Galicia] in the early 1990s, before returning to London to freelance in 1993. He then worked with a wide variety of orchestras and ensembles including [a=The Chamber Orchestra Of Europe], the [a=London Symphony Orchestra], the [a=Royal Philharmonic Orchestra] and the [a=BBC Symphony Orchestra]. Byron became Principal Trombone of the [a=BBC Scottish Symphony Orchestra] in 2000 and moved to the [a=Philharmonia Orchestra] in September 2001 becoming Joint Principal Trombone. Member of the [a=London Brass] since 2003 and the ensemble's librarian. In 2008 he became Principal Trombone of the [a=London Sinfonietta]. Professor of Trombone at the [l290263] and [l633762].Needs Votehttps://www.linkedin.com/in/byron-fulcher-0b58a1144/?originalSubdomain=ukhttps://open.spotify.com/artist/5bOJpKx40SK1hr7TokLsFKhttps://music.apple.com/ca/artist/byron-fulcher/id1144988796https://en.wikipedia.org/wiki/Byron_Fulcherhttps://www.feenotes.com/database/artists/fulcher-byron-1970-present/https://www.londonbrass.net/musicians/byron_fulcher/https://centerstage.conn-selmer.com/artists/byron-fulcherhttps://www.pmf.or.jp/en/artist/orchestra/premium_orch/2019-A33.htmlhttps://maslink.co.uk/client-directory?client=FULCB1&instrument=TROMB2https://web.archive.org/web/20061014164709/http://www.maslink.co.uk/cvs/trombones/fulcher(byron).htmlhttps://philharmonia.co.uk/bio/byron-fulcher/https://londonsinfonietta.org.uk/players/byron-fulcherhttps://www.rcm.ac.uk/Brass/professors/details/?id=01898https://www.brass-academy.co.uk/tutors/byron-fulcher/https://www.imdb.com/name/nm1132294/London Symphony OrchestraBBC Symphony OrchestraLondon BrassRoyal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraBBC Scottish Symphony OrchestraThe Chamber Orchestra Of EuropeOrquesta Sinfónica de GaliciaYoung Musicians Symphony OrchestraLondon Conchord Ensemble + +844998Nick BettsNicholas BettsPrincipal Trumpet of [b]City of London Sinfonia[/b] and Co-principal Trumpet of the [b]London Philharmonic Orchestra[/b].Needs VoteNicholas BettsLondon Philharmonic OrchestraCity Of London Sinfonia + +845007Gareth BradyBritish reeds player, credited with saxophone, clarinet and bass clarinet.Needs VoteBradyLondon SinfoniettaThe London SaxophonicDelta Saxophone Quartet + +845012Elizabeth BampingScottish classical violinist.Needs VoteRoyal Scottish National Orchestra + +845013Peter ManningBritish classical violinist, conductor, and professor of violin. Born 17 July 1956 in Manchester, England, UK. +He graduated from the [l459222]. In 1981, he was appointed as the youngest-ever Professor of Violin at the same College, a post he relinquished in 1983. He was Leader of the [a=London Philharmonic Orchestra] (1983-1986), the [a=Britten Quartet] (founder/leader 1986-1996), & the [a=Royal Philharmonic Orchestra] (1997-2000) and Concertmaster with the [a=Orchestra Of The Royal Opera House, Covent Garden] (2000-2018). Founder of the [b]Manning Camerata[/b]. He was Music Director of [a=Musica Vitae] for three seasons (2008-2011). Artistic Director and Principal Conductor of the [a=Bath Festival Orchestra] since January 2020 and Music Director of the Mozart Kinderorchester, Salzburg since 2016.Needs Votehttps://www.petermanningconductor.com/https://twitter.com/energyconductorhttps://www.instagram.com/petermanningconductor/?hl=enhttps://www.linkedin.com/in/peter-manning-324910b/https://open.spotify.com/artist/2dKUggaNAaOP8fnJ04jraIhttps://music.apple.com/us/artist/peter-manning/28533123https://web.archive.org/web/20180612154248/http://www.manningcamerata.com/https://en.wikipedia.org/wiki/Peter_ManningP. ManningLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenI FiamminghiBritten Quartet + +845047Christian Berg (5)Christian Michael BergNorwegian drummer and percussionist, born 1963 in Graz, Austria and raised in Larvik, Norway.Needs VoteChristian M. BergOslo Filharmoniske OrkesterLillie-AneNeon (41) + +845055Tomas Nilsson (2)Swedish classical percussionistNeeds VoteSveriges Radios Symfoniorkester + +845060Jarle RotevatnNorwegian classical pianist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +845068Per FlemströmSwedish flutist, born 1958 in Uppsala, Sweden.Needs VotePer FlemstrømPer FlenstrømOslo Filharmoniske OrkesterBorealis (3)Oslo Philharmonic Chamber Group + +845151Yves BertinClassical bassoonist.Needs VoteLa Grande Ecurié Et La Chambre Du RoyConcerto KölnEnsemble 415Le Concert Des nationsEnsemble ElymaA Sei VociLa Cetra Barockorchester BaselLa Tempesta Basel + +845152Marie-Liesse BarauClassical viola player.Needs VoteLe Concert SpirituelConcerto SoaveEnsemble 415Les Talens LyriquesLes Musiciens Du LouvreSchola Cantorum Basiliensis + +845154Hendrike Ter BruggeClassical cellist.Needs VoteHendrike TerbruggeLes Arts FlorissantsEnsemble 415La Simphonie Du MaraisEnsemble Jacques ModerneHassler Consort + +845156Enrico GattiItalian classical violinist born in Umbria regionNeeds Votehttp://www.enrico-gatti.com/http://www.glossamusic.com/glossa/artist.aspx?id=21E. GattiEnsemble 415La Petite BandeLes Talens LyriquesEnsemble ElymaRicercar ConsortConcerto PalatinoAccordoneLa Real CámaraEnsemble AuroraAccademia HermansEuropäisches Hanse-Ensemble + +845157Alain GervreauClassical cello & viola player.Needs VoteLe Concert SpirituelLes Arts FlorissantsEnsemble 415Ensemble AuroraEnsemble Concerto di BassiZarabanda (4)Les Sonadori + +845158Miriam ShalinskyCanadian classical Double Bass, Violone and Viol player. She has been living in Germany since 1985.Needs Votehttp://www.thuermchen.de/ENSEMBLE/mitglieder/miriam-shalinsky.htmlMiriam ShallinskyMyriam ShalinskyOrchestre Des Champs ElyséesCollegium VocaleEnsemble 415Freiburger BarockorchesterLa StagioneCantus CöllnConcerto PalatinoCamerata KölnThürmchen EnsembleCollegium 1704Les AgrémensCappella GabettaOpera FuocoOrchester Der J.S. Bach StiftungEuropean Brandenburg EnsembleMannheimer HofkapelleAbendmusiken Basel + +845159Véronique MéjeanClassical violinist.Needs VoteVeronique MejeanVéronica MéjeanLes Arts FlorissantsThe Amsterdam Baroque OrchestraEnsemble 415 + +845160Chiara BanchiniClassical violinist born 1946 in Lugano, Switzerland. Leader of the [a=Ensemble 415].Needs Votehttp://www.bach-cantatas.com/Bio/Banchini-Chiara.htmhttp://en.wikipedia.org/wiki/Chiara_BanchiniBanchiniC. BanchiniCh. BanchiniChiara BanchieriChiara BianchiniLa Chapelle RoyaleHesperion XXIl FondamentoEnsemble 415Schola Cantorum BasiliensisBaroque OrchestraIsabella D'EsteOrchester Der J.S. Bach Stiftung + +845162Odile EdouardOdile Edouard is a French violinist, born May 6, 1966, exerting mainly in the field of historical performance practice. She is professor of baroque violin at the CNSM of Lyon.Needs Votehttps://fr.wikipedia.org/wiki/Odile_EdouardO. EdouardOdile ÉdouardLes WitchesLes Arts FlorissantsEnsemble 415Schola Cantorum BasiliensisConcerto PalatinoLe Poème HarmoniqueEnsemble AuroraGalilei ConsortLes SonadoriEnsemble Variations + +845174Sebastian KrunniesGerman violist, born 1974 in Offenburg, Germany.Needs VoteBerliner PhilharmonikerElissa Lee EnsembleTrio Echnaton + +845238Marco KöstlerMarco KöstlerGerman musician, born 12 March 1973.Needs Votehttps://www.marco-koestler.com/KöstlerMoodoramaTricatel Inc.Regensburger DomspatzenBürgermeistaSchinderhannes (2) + +845358Wolfgang WindgassenTenor opera singer, June 26, 1914 in Annemasse, France – September 8, 1974 in Stuttgart, Germany. + +Married to [a=Lore Wissmann]Needs Votehttp://en.wikipedia.org/wiki/Wolfgang_WindgassenW. WindgassenWindgassenWolfgang WingassenΒιντγκάσσενΒόλφγκανγκ ΒιντγκάσσενВ. ВиндгассенВольфганг Виндгассен + +845360Artur RotherArtur Martin RotherGerman conductor, born 12 October 1885 in Szczecin, Kingdom of Prussia (today Poland), died 22 September 1972 in Aschau im Chiemgau, Germany.Needs VoteA. RotherArthur RoterArthur RotherArtrur RotherGMD Artur RotherGMD Prof. A. RotherGMD Prof. Arthur RotherGMD Prof. Artur RotherGMD Professor Artur RotherGMD. Prof. Arthur RotherGeneralmusikdirektor Arthur RotherGeneralmusikdirektor Artur RotherGeneralmusikdirektor Professor Artur RotherMartin RotherProf. A. RotherProf. Arthur RotherProf. Artur RotherProfesor Artur RotherProfessor Artur RotherRotherА. РотерАртур Ротерアルトゥール・ローターChor Artur RotherOrchester Artur Rother + +845430Mykola LeontovychМикола Дмитрович ЛеонтовичUkrainian composer, choral conductor, and teacher (born December 13 [O.S. December 1], 1877 in Monastyrok, Russian Empire [now Vinnytsia Oblast, Ukraine] – died January 23, 1921 in Markivka, Ukrainian Soviet Republic [later Luhansk Oblast, Ukraine]. + +Mykola Dmytrovych Leontovych (Ukrainian: Микола Дмитрович Леонтович) composed more than 150 pieces, many of them for a cappella chorus, both liturgical songs or songs inspired by Ukrainian folk songs. + +Leontovych's best-known work is his arrangement of "Щедрик" (Shchedryk, 1916), a traditional Ukrainian [i]shchedrivka[/i] or New Year celebration song. The song was first recorded around September 1922 in New York City by the [a=Ukrainian Republic Capella] and released in 1923 on [url=https://www.discogs.com/release/14217979]Brunswick 15034[/url]. The song became a popular Christmas carol in the English-speaking world under the title "Carol of the Bells" with new English lyrics by Ukrainian-American composer [a=Peter Wilhousky] (1936).Needs Votehttps://en.wikipedia.org/wiki/Mykola_Leontovychhttps://adp.library.ucsb.edu/names/103034https://slate.com/news-and-politics/2019/12/carol-bells-shchedryk-ukraine-leontovych.htmlhttps://ua.openlist.wiki/%D0%9B%D0%B5%D0%BE%D0%BD%D1%82%D0%BE%D0%B2%D0%B8%D1%87_%D0%9C%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0_%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%BE%D0%B2%D0%B8%D1%87_(1877)L. LeontovitsLentovichLentovychLeontovichLeontovitchLeontovitshLeontovychLeontowitschM LeontovichM LeontovychM. D. LeontovychM. LeiontovichM. LeonpovichM. LeontouychM. LeontovichM. LeontovitchM. LeontovychM. LeontovyčM. LeontowitschM. LeontowychM.D. LeontovychM.LeontivitschMichael D. LeontovichMikhail LeontovichMikola LeontovichMikola LeontovychMikolay LeontovychMikołaj LeontowiczMykola Cmytrovych LeontovychMykola D. LeontovychMykola Dmytravych LeontorvychMykola Dmytrovich LeontovychMykola Dmytrovych LeontovychMykola LentovichMykola LeontovichMykola LeontovitchMykola LeontowitschMykola LeontowytschMykolo LeontonovichMykolo LeontovichMykolo LeontovychMykolu LeontovichMyloka LeontovychN. LeontovichN. LeontovychN. ĻeontovičsN.LeontovichN.LeontovychNicholas LeontovichNicolai LeontovitchNikolai LeontovichNikolai LeontowitschNikolay LeontovichМ. ЛеонтовичМ. Леонтович = M. LeontovychМ.ЛеонтовичМикола ЛеонтовичН. ЛеонтовичН. Леотович + +845514Ermet PerryErmet V. PerryJazz trumpeter who played with [a=Dizzy Gillespie], [a=Louis Jordan], [a=Sarah Vaughn], [a=Bud Powell], [a=Charlie Parker], [a=Cootie Williams And His Orchestra] and the likes. +Born 1911 or 1912 in Gainesville, Florida, died 20 March 2000 + +Do not confuse with Emmett Berry, a jazz trumpeter from the same eraNeeds Votehttps://de.wikipedia.org/wiki/Ermet_PerryE. V. PerryE. V. PerryE.V. PerryEmit V. PerryEmmet PerryEmmett PerryEmmit PerryErmet BerryErmet V. PerryErmett PerryErmit PerryErmit V. PerryErnest V. PerryЭмметт БерриDizzy Gillespie And His OrchestraDizzy Gillespie Big BandCootie Williams And His OrchestraBenny Goodman And His OrchestraLouis Jordan And His Orchestra + +845518Bill CronkJazz bassistNeeds VoteBilly CronckBilly CronkБилли КронкTommy Dorsey And His OrchestraThe Dorsey Brothers OrchestraJimmy Dorsey, His Orchestra & Chorus + +845613Kristine L MartensKristine Lisedatter MartensNorwegian cellist, born 1976.CorrectKristine MartensOslo Filharmoniske Orkester + +845752Gerd SeifertGerman hornist, born 17 October 1931 in Hamburg; died 28 February 2019 in Berlin.Needs Votehttps://de.wikipedia.org/wiki/Gerd_Seifert_(Musiker)Gerd SeiffertGert SeifertГерд СајфертBerliner PhilharmonikerBlasorchester der Berliner PhilharmonikerOrchester der Bayreuther FestspieleCollegium AureumBayreuther FestspielhornistenPhilharmonisches Oktett BerlinWaldhornquartett der Berliner Philharmoniker + +845753Heinrich HaferlandHeinrich Haferland (12 May 1927 - September 2007) was a German classical viol player and cellist.Needs VoteH. HaferlandRundfunkorchester HannoverCollegium AureumMünchener KammerorchesterBachcollegium StuttgartSüdwestdeutsches KammerorchesterCollegium TerpsichoreBach-Orchester HamburgArchiv Produktion Instrumental EnsembleConsortium Musicum (2)Santini Chamber OrchestraInstrumentalensemble Für Alte MusikInstrumentalensemble Hans-Martin Linde + +845756Ulrich KochGerman viola player, born 14 March 1921 in Braunschweig, Germany and died 7 June 1996 in Tokyo, Japan.Needs VoteKochProf. Ulrich KochProfessor Ulrich KochU. KochUlrich Koch, Violaウルリヒ・コッホSinfonieorchester Des SüdwestfunksStuttgarter KammerorchesterFestival Strings LucerneCollegium AureumSüdwestdeutsches KammerorchesterTrio Bell'ArteBell' Arte Ensemble + +845758Jan ReichowGerman classical violinist and musicologist (born 6 Dec. 1940 in Greifswald – died 2 May 2025 in Solingen). +His work focussed on early music and the musical cultures of Asia and Africa.Needs Votehttp://www.janreichow.de/https://de.wikipedia.org/wiki/Jan_ReichowDr. Jan ReichowMusica Antiqua KölnCollegium AureumLa Petite Bande + +845761Werner NeuhausViolinistNeeds VoteCollegium AureumConsortium Musicum (2)Kölner Streichquartett + +845763Gustav LeonhardtGustav Maria LeonhardtDutch organist, harpsichordist, conductor, and pedagogue. + +Born May 30, 1928 in 's-Graveland, Netherlands. +Died January 16, 2012 in Amsterdam, Netherlands (aged 83). + +Renowned mostly for his Bach interpretations as harpsichordist or with his ensembles, the [a=Leonhardt Baroque Ensemble] and the [a=Leonhardt-Consort]. +In 1967 he was the main actor in the movie "Diary of Anna Magdalena Bach", playing and performing and personifying Johann Sebastian Bach himself. +In 1971 Gustav Leonhardt and [a=Nikolaus Harnoncourt] jointly undertook a project, completed in 1990, to record all Bach’s sacred cantatas.Needs Votehttps://en.wikipedia.org/wiki/Gustav_Leonhardthttps://web.archive.org/web/20120324215459/https://www.rayfieldallied.com/artists/gustav-leonhardt/https://web.archive.org/web/20031009100930/https://www.sonyclassical.com/artists/leonhardt/https://www.bach-cantatas.com/Bio/Leonhardt-Gustav.htmhttps://www.classicalmusicdaily.com/articles/l/g/gustav-leonhardt.htmhttps://www.imdb.com/name/nm0503015/G. LeonhardtG.L.Gustan LeonhardtGustav LeonhardGustav LéonhardtGustav M. LeonhardtGustave LeonhardtLeonhardtГ. ЛеонхардтГустав ЛеонхардтГустав Леохардтグスタフ・レオンハルトConcentus Musicus WienCollegium AureumLeonhardt-ConsortLeonhardt Baroque EnsembleConcerto AmsterdamQuadro AmsterdamDas Leonhardt-Quartett + +845764Erich PenzelGerman classical hornist, born 5 August 1930 in Leipzig, Germany.Needs VoteEric PenzelPenzelCollegium AureumBachcollegium StuttgartSchola Cantorum BasiliensisConsortium Musicum (2) + +845769Hans-Martin LindeGerman flutist, born 24 May 1930 in Iserlohn, Germany, and lives in Basel, Switzerland, since 1957. + +He pursued his musical training at the Musikhochschule Freiburg under Gustav Scheck (flute) and Konrad Lechner (choral conducting and composition). +He taught flute in his native town, were he was also active as a choral conductor. In the meantime, he dedicated himself to the recorder and +the baroque traverso. Thus began a long period of recordings, which he made for the Cologne West German Radio (WDR). +Since 1957, he has taught recorder, traverso and ensemble conducting at the Schola Cantorum Basiliensis. Between 1976 and 1979 he was head of the Basel Conservatory, where he taught choral conducting and conducted the Conservatory choirs. +Since the 1950s, Hans-Martin Linde has had a major influence on the historically informed interpretation of music for the recorder and traverso. He is the author of several performance handbooks, and has published numerous editions and musicological articles. +He has toured the world, both as a teacher and performer, and has recorded extensively. He has been invited to conduct numerous choirs and orchestras for recordings, concerts,operas and music festivals. +Between 1984 and 2000, Hans-Martin Linde conducted the Cappella Coloniensis for the WDR. This pioneering ensemble was the first baroque orchestra to play on historical instruments, and served as a model for subsequent baroque ensembles. + +Source: http://www.hansmartinlinde.chNeeds Votehttp://www.hansmartinlinde.chFlautaH, M. LindeH. M. LindeH. M. LinderH.-M. LindeH.M LindeH.M. LindeHans M. LindeHans Martin LindeHans Martin-LindeHans~Martin LindeLindeProf. Hans-Martin LindeХанс-Мартин ЛиндеMünchener Bach-OrchesterFestival Strings LucerneCollegium AureumSchola Cantorum BasiliensisCollegium TerpsichoreLinde-Consort + +845770Reinhold Johannes BuhlReinhold Johannes BuhlGerman classical cellist (* 30 April 1933 in Mannheim, German Empire; † 06 January 2021 in Marthashofen, Germany).Needs Votehttps://de.wikipedia.org/wiki/Reinhold_Johannes_BuhlJohannes BuhlR. BohlR. J. BuhlReihnold BuhlReinhard BuhlReinhard BühlReinhold BuhlReinhold J. BuhlReinhold Joh. BuhlReinhold Johann BuhlReinhold-Johannes BuhlРайнхард БульSymphonie-Orchester Des Bayerischen RundfunksCollegium AureumStuttgarter SolistenMainzer KammerorchesterMannheimer TrioCollegium TerpsichoreMannheimer Klavierquartett + +845772Rudolf MandalkaRudolf Mandalka is a German cellist and music professor at the [l385944].Needs VoteR. MandalkaRudolph MandalkaOrchester der Bayreuther FestspieleCollegium AureumQuartett Collegium Aureum + +845775Moshe AtzmonMóse GrószbergerIsraeli conductor, born 30 July 1931 in Budapest, Hungary.Needs Votehttps://en.wikipedia.org/wiki/Moshe_AtzmonAtzmonM. AtzmonMosche AtzmonMoshé Atzmonמשה עצמוןモーシェ・アツモンモーゼ・アツモンBasler Sinfonie-OrchesterSydney Symphony OrchestraTokyo Metropolitan Symphony OrchestraAalborg SymfoniorkesterNDR SinfonieorchesterNagoya Philharmonic Orchestra + +845786Pierre ThibaudFrench trumpeter and bandleader, born 22 June 1929 in Proissans, France, died 29 October 2004 in Paris, France.Needs Votehttp://fr.wikipedia.org/wiki/Pierre_ThibaudP. ThibaudP. ThibaultP. ThibautP.ThibaudPierre Thibaud Et Sa TrompettePierre Thibaud Terrific TrumpetPierre ThibautThibaudПьер ТибоLuis Pena Et Son OrchestreEnsemble Musique VivanteMünchener Bach-OrchesterJacques Hélian Et Son OrchestrePierre Thibaud Et Son OrchestreEnsemble De Cuivres Gabriel MassonBenny Bennet Et Son Orchestre De Musique Latine-AmericaineQuintette De Cuivres Ars NovaRaymond Guiot Et Sa Formation SymphoniqueClaudio Bonelli Ses Mandolines Et Son Orchestre + +845919Gerald MooreBritish pianist born 30 July 1899 in Watford, England, UK and died 13 March 1987 in Penn, Buckinghamshire, England, UK. +He learned piano in Canada and then became organist in Toronto. + +For the British jazz pianist (1903 - 1993), please use [a1330755]Needs Votehttps://adp.library.ucsb.edu/names/115753https://en.wikipedia.org/wiki/Gerald_MooreDžerald MurG MooreG. MooreGerald Moore / PianoGérald MooreMooreSir Gerald MooreunknownД. МурДж. МурДжералд МурДжеральд Мурジェラルド・ムーア + +846063Jean TubéryClassical brass player, leader of [a=Ensemble la Fenice].Needs VoteJ. TubéryJean Tuberyジャン・テュベリーHuelgas-EnsembleConcerto VocaleEnsemble FitzwilliamEnsemble Baroque De LimogesIl Giardino ArmonicoCantus CöllnTroubadours Art EnsembleArmonico TributoLes AgrémensEnsemble La FeniceIsabella D'EsteIl Teatro Armonico + +846066Stefan LegéeFrench classical Trombone & Sackbut instrumentalistNeeds Votehttp://stefanlegee.fr/#main-slider-wrapS. LegéeStefan LegeeStefan LégéeStephan LegeeStephan LegéeStephane LegeeStéfan LegéeStéphane LégéeEnsemble Ars NovaLe Concert SpirituelCollegium VocaleConcerto VocaleLe Concert Des nationsLes CyclopesL'ArpeggiataBekummernisLes Sacqueboutiers De ToulouseArmonico TributoPygmalionEnsemble La FeniceCapella De La TorreQuintette MagnificaLe Concert BriséEnsemble Ventosum + +846072Bernard FourtetClassical Sackbut, Serpent and Trombone instrumentalist.Needs VoteThe Amsterdam Baroque OrchestraHesperion XXLa Grande Ecurié Et La Chambre Du RoyLe Concert Des nationsGabrieli PlayersLes Sacqueboutiers De Toulouse + +846158Slovak Chamber OrchestraSlovenský komorný orchester Bohdana WarchalaSlovak chamber orchestra. Established in 1960 within the Slovak Philharmonic Orchestra. Led by [a=Bohdan Warchal] until 2000, and by [a=Ewald Danel] since 2001. +[i]Not to be confused with other Slovak chamber orchestras, like [a=Štátny Komorný Orchester Žilina].[/i]Needs Votehttp://www.filharmonia.sk/slovensky-komorny-orchester/Camerata SlavonicaChamber OrchestraChamber Orchestra Of The Slovak PhilharmonicsChamber Orchestra of the Slovak PhilharmonicsDas Slowakische KammerorchesterInstrumentálna Skupina Slovenskej FilharmónieKammerorchester Der Slowakischen PhilharmonieKammerorchester Der Slowakischen Philharmonie*Kammerorchester der Slowakischen PhilharmonieKomorný Orch. Z Členov Slovenskej FilharmónieKomorný OrchesterKomorný Orchester Slovenskej FilharmónieKomorný Orchester Československého Rozhlasu V BratislaveKomorný Orchester Čs. Rozhlasu V BratislaveKomorný Súbor Slovenskej FilharmónieOrchestra Da Camera Della Filarmonica SlovaccaOrchestra De Cameră SlovacăOrchestre De Chambre De BratislavaOrchestre De Chambre De La Philharmonie SlovaqueOrchestre De Chambre De SlovaquieOrchestre De Chambre SlovaqueOrchestre De Chambre SlováqueOrchestre de Chambre SlovaqueOrquesta De Camara De EslovaquiaOrquesta De Càmara EslovacaOrquesta De Cámara EslovacaOrquesta De Cámara de EslovaquiaOrquesta de Cámara Filarmónica de Slovak.Orquesta de Cámara Sinfónica de SlovkOrquesta de Cámara de Eslovaquia, Bohdan WarchalOrquestra Da Camara EsloveniaOrquestra De Camara EslovacaOrquestra de Camara EslovacaOrquestra de Câmara da EslováquiaPhilharmonia SlavoniaPhilharmonic QuartetSlovak Chamber AssociationSlovak Chamber Orch.Slovak Chamber PlayersSlovak Philharmonic Chamber OrchestraSlovakian Symphonic Chamber OrchestraSlovakian Symphonic ChamberorchestraSlovakijos Kamerinis OrkestrasSlovakisches KammerorchesterSlovakyan Symphonic ChamberorchestraSlovački Komorni OrkestarSlovenký Komorný OrchesterSlovenska KammarensemblenSlovensky Komorný OrchesterSlovenský Komorní OrchestrSlovenský Komorný OrchesterSlovenský Komorný Orchester Bohdana WarchalaSlovenský Komorný Orchester Bordana WarchalaSlovenský Komorný Orchester Camerata SlovacaSlovenský Komorný OrchestrSlovenský Komorý OrchesterSlovenský komorní orchestrSlovenský komorný orchesterSlowaaks KamerorkestSlowak Chamber OrchestraSlowakische KammerorchesterSlowakischer KammerorchesterSlowakischesSlowakisches KammerorchaestraSlowakisches KammerorchesterSlowakisches KammerorchestraSlowakisches Kammerorchkester = Slovak Chamber OrchestraSlowakishes KammerorchesterSláčikové KvartetoSmyčcová SkupinaSoloists, Slovak Chamber OrchestraSowakisches KammerorchesterSłowacka Orkiestra KameralnaThe Slovak Chamber Orchestraスロヴァキア・フィルハーモニック・チェンバー・オーケストラスロヴァキア室内合奏団Bohdan Warchal OrchestraMilan TedlaFrantišek HermanBohdan WarchalMiroslav KejmarGuy TouvronIvan SokolJuraj AlexanderJozef KopelmanZdeněk ŠedivýVlado MallýVáclav MazáčekQuido HölblingVladislav BrunnerAlexander CattarinoIvan SéquardtGabriela KrčkováJiří Krejčí (2)Anna HölblingováJozef HanušovskýViliam ŠárayVojtech SamecVladimir BrunnerJosef KopelmannVladislav Brunner (2)Juraj KlettJosef Hanukowsky + +846180Salvatore AccardoSalvatore AccardoBorn September 26 1941, Torre del Greco, Naples, Italy + +[b]Salvatore Accardo[/b] is considered one of the greatest violin talents of the Italian school of the twentieth century, with a repertoire that ranges from the Baroque to contemporary. Composers such as Salvatore Sciarrino, Franco Donatoni, Astor Piazzolla and Iannis Xenakis have written works for him. + +[b]Accardo[/b] is also a renowned conductor and director of classical works. In 1971 he founded the 'Cremona String Festival' and 'International Music Weeks in Naples' ["Le Settimane Musicali Internazionali a Napoli"]. He was among the founders of the Walter Stauffer Academy in 1986 and also founded the 'Accardo Quartet' (1992) and 'Orchestra da Camera Italiana' [OCI] in 1996. + +A child prodigy, [b]Accardo[/b] grew up in Torre del Greco (to which he was later awarded Honorary Citizenship in 2005) and began his studies under the Neapolitan maestro Luigi D'Ambrosio at the age of eight. At sixteen he was winning attention at Accademia di Siena Chigiana and a year later won the prestigious 'Premio Paganini' international violin competition. At the award ceremony he performed with Paganini's violin, an original Guarneri. + +[b]Accardo[/b] has an affinity with the works of Paganini, being the first to record all six of the Niccolò Paganini Violin Concertos. Notably, some thirty-seven years after his first performance on the instrument at the Paganini award, [b]Accardo[/b] recorded an album of classical and contemporary works in 1995 on Paganini's Guarneri del Gesù 1743 violin, "Il Canonne". [b]Accardo[/b] now owns or has possessed a number of exceptional violins, including Stradivari [ex-Francescatti] 'Hart' (1727), Stradivari [ex-Reynier] (1727), Stradivari [ex-Saint-Exupéry] the 'Firebird' (1718), Stradivari 'Reiffenberg' (1717), Stradivari 'Zahn' (1719), Stradivari 'Dragonetti' (1706), and a Guarneri del Gesù 'Lafont-Siskovsky' (1733). +Needs Votehttp://it.wikipedia.org/wiki/Salvatore_AccardoA. SalvatoreAccardoJ. PeterikS. AccardoΑκάρντοС. АккардоСалваторе АккардоСальваторе Аккардоアッカルドサルヴァトーレ・アッカルド살바토레 아카르도I MusiciI Solisti Delle Settimane Musicali Internazionali di NapoliQuartetto Accardo + +846281Mariss JansonsMariss Ivars Georgs JansonsLatvian conductor. +Born: 14th January 1943 Riga, Latvia. +Died: 30th November 2019 St. Petersburg, Russia. +Chief conductor of the [a754894] from September 2004 to 2015, and of the [a604396] from 2003 until his death.Needs Votehttps://en.wikipedia.org/wiki/Mariss_Jansonshttps://www.britannica.com/biography/Mariss-Jansonshttps://www.bach-cantatas.com/Bio/Jansons-Mariss.htmhttps://www.imdb.com/name/nm2277927/JansonsJanssonsM. JansonsMaris JansonsMaris YansonsMarissMariss JansonMariss JanssonsMariss YansonsМ. ЯнсонсМарис ЈансонсМарис Янсонсマリス・ヤンソンスマリス・ヤンソンスConcertgebouworkest + +846284Osian EllisOsian Gwynn EllisWelsh harpist, composer, and teacher. Born 8 February 1928 in Ffynnongroyw, Flintshire, Wales, UK - Died 5 January 2021 in Afryn, Pwllheli, North Wales, UK. +He studied at the [l527847]. He joined the [a=London Symphony Orchestra] in 1961 and became principal harpist; he continued in this role until his retirement in 1994. He was a founding member of the [a=Melos Ensemble Of London] and also formed the [b]Osian Ellis Harp Ensemble[/b]. Professor of Harp at the Royal Academy of Music (1959-1989). +He was made Commander (CBE) - Order of the British Empire in 1971. + +Father Of [a=Tomos Ellis]Needs Votehttps://www.youtube.com/channel/UCB3tchbYhbvMiALmt8XPBQghttps://open.spotify.com/artist/3dFK1MwgAN0RlfQhYTWtDihttps://music.apple.com/us/artist/osian-ellis/275691https://en.wikipedia.org/wiki/Osian_Ellishttp://www.bach-cantatas.com/Bio/Ellis-Osian.htmhttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-0000008736https://musicianbio.org/osian-ellis/https://www.britishmusicsociety.co.uk/2021/01/obituary-osian-ellis/https://www.gramophone.co.uk/features/article/osian-ellis-a-tribute-to-the-great-welsh-harpisthttps://harpcolumn.com/blog/remembering-osian-ellis-1928-2021/https://cgwm.org.uk/en/2021/osian-ellis-1928-2021/https://lso.co.uk/more/news/1627-obituary-osian-ellis-1928-2021.htmlhttps://brittenpears.org/2021/01/osian-ellis-harpist-1928-2021/https://www.thetimes.co.uk/article/osian-ellis-obituary-h0tlb0n8rhttps://www.theguardian.com/music/2021/feb/03/osian-ellis-obituaryhttps://www.telegraph.co.uk/obituaries/2021/01/15/osian-ellis-harpist-known-association-benjamin-britten-peter/https://nation.cymru/culture/tributes-to-welsh-harp-legend-osian-ellis-who-passed-away-aged-92/https://www.naxos.com/person/Osian_Ellis/188.htmhttps://www.prestomusic.com/classical/articles/3738--obituary-osian-ellis-1928-2021https://sainwales.com/en/artists/osian-ellishttps://www.imdb.com/name/nm1666172/EllisOsian HellisOssian EllisOzian Ellisオシアン・エリスLondon Symphony OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsMelos Ensemble Of LondonThe English Opera GroupPrometheus Ensemble + +846285Klaus TennstedtGerman conductor, born 6 June 1926 in Merseburg, Germany and died 11 January 1998 in Heikendorf near Kiel, Germany.Needs Votehttps://en.wikipedia.org/wiki/Klaus_TennstedtK. TennstedtKlaus T.Tennstedtクラウス・テンシュテットNDR Sinfonieorchester + +846290Jacqueline Du PréJacqueline Mary du Pré, O.B.E.English cellist, born 26 January 1945 in Oxford, England, UK and died 19 October 1987 in London, England, UK. + +She was regarded as one of the greatest cellists of the second half of the twentieth century, her career was cut short by the demyelinating disease multiple sclerosis, which forced her to stop performing at the age of 27. She was married to [a=Daniel Barenboim].Needs Votehttps://web.archive.org/web/20040612060409/http://jacquelinedupre.net/https://en.wikipedia.org/wiki/Jacqueline_du_Pr%C3%A9https://www.britannica.com/biography/Jacqueline-du-PreDu PréJacqueline Du PreJacqueline du PréЖаклин Дю Преジャクリーヌ・デュ・プレ + +846292Wiener Johann Strauss OrchestraWiener Johann Strauss OrchesterThe Wiener Johann Strauss Orchester (Vienna Johann Strauss Orchestra) is an Austrian orchestra based in Vienna, formed under Professor Oskar Goger and the ORF (Austrian Radio) in 1966. Eduard Leopold Strauss, nephew of Johann Strauss III, who carried on the Strauss dynasty musical tradition into the 20th century, was the orchestra's first conductor. + +[b]Please be careful when submitting releases to this profile[/b]. [a=The Vienna Strauss Orchestra] is another very similarly named orchestra, that was used to imitate recordings by the WJSO. All recordings conducted by [a=Joseph Francek], [a=Frank Meyer (5)], [a10848475] and [a=Norbert Neukamp] are NOT recordings by WJSO but by [a=The Vienna Strauss Orchestra].Needs Votehttp://wjso.or.athttps://en.wikipedia.org/wiki/Wiener_Johann_Strauss_OrchesterBécsi Johann Strauss ZenekarBécsi Strauss EgyüttesDas Grosse Wiener Johann Strauss OrchesterDas Große Wiener Strauß-OrchesterDas Neue Wiener Johann Strauss-OrchesterDas Wiener Johann Strauss OrchesterDas Wiener Johann Strauss OrchestraDas Wiener Johann Strauss-OrchesterDas Wiener Johann Strauß OrchesterDas Wiener Johann Strauß-OrchesterDas Wiener Johann-Strauß-OrchesterGroßes Strauss-OrchesterHet Weens Johann Strauss OrkestJohan Strauss Orchestra Of ViennaJohann Strauss OrchestraJohann Strauss Orchestra De VienneJohann Strauss Orchestra Of ViennaJohann Strauss Orchestra Of Vienna*Johann Strauss Orchestra of ViennaJohann Strauß OrchestraL'Orchestra Johann Strauss di ViennaOrchestra Johann StraussOrchestra Johann Strauss Di ViennaOrchestre Johann Strauss De VienneOrchestre Johann Strauss de VienneOrq. Johann Strauss de VienaOrquesta Johann Strauss De VienOrquesta Johann Strauss De VienaOrquesta Johann Strauss HijoOrquesta Johann Strauss de VienaSiens Johann StraussorkesterStrauss Orchestra Of ViennaStrauss-Orchester WienStrauß-Orchester WienThe Johan Strauss Orchestra Of ViennaThe Johann Strauss OrchestraThe Johann Strauss Orchestra Of ViennaThe Johann Strauss Orchestra of ViennaThe Johannstrauss Orchestra Of ViennaThe Strauss Orchestra Of ViennaThe Strauss Orchestra of ViennaThe Vienna Johann Strauss OrchestraThe Vienna Johann Strauß OrchestraVien J. Strauss OrchestraVienna Johan Strauss OrchestraVienna Johann Strauss OrchestraWiener J. Strauss OrchesterWiener Joh, Strauss OrchesterWiener Johann Strauss OrchesterWiener Johann Strauss-OrchesterWiener Johann Strauss-OrchestraWiener Johann Strauß OrchesterWiener Johann Strauß OrchestraWiener Johann Strauß-OrchesterWiener Johann Strauß-OrchestraWiener Johann-Strauss-OrchesterWiener Johann-Strauß-OrchesterWiener Strauss OrchesterWiener Strauss-OrchesterWiener Strauß OrchesterWiener-Johann-Strauss-OrchesterWiens Johann Strauss-OrkesterWiens Johann Strauss-orkesterWiens Johann StraussorkesterВенский Оркестр Иоганна Штраусаウィーン・ヨハン・シュトラウス管弦楽団Otto KuttnerOtto BlechaWolfgang Breinschmid + +846293Stephen HoughStephen Andrew Gill HoughEnglish classical pianist, composer and writer (born 22 November 1961 in Heswall, England, UK) who has dual nationality, British and Australian.Needs Votehttps://stephenhough.com/https://x.com/houghhoughhttps://en.wikipedia.org/wiki/Stephen_HoughHoughStephan HoughСтефен Хоу + +846295John OgdonJohn Andrew Howard OgdonJohn Ogdon (27 January 1937, Manchester, England – 1 August 1989, London, England) was an English pianist and composer.Correcthttp://www.johnogdon.org.uk/http://en.wikipedia.org/wiki/John_OgdonJ. OgdonJohn OgdenOgdonД. ОгдонДж. ОгдонДжон Огдонオグドン(ジョン)ジョン・オグドン + +846296John LanchberyJohn Arthur LanchberyJohn Lanchbery, OBE (born 15 May 1923, London, England, UK - died 27 February 2003, Melbourne, Victoria, Australia) was an English, later Australian, composer and conductor. He served as the Principal Conductor of the Royal Ballet from 1959 to 1972. He was appointed an Officer of the Order of the British Empire (OBE) in 1991. He became an Australian citizen in 2002, making his home in Melbourne, Victoria, Australia. +Needs Votehttps://en.wikipedia.org/wiki/John_LanchberyJ. LanchberyJohn LanchbergJohn LanchberryLachberyLanchberryLanchberyΤζον Λάντσμπεριジョン・ランチベリー + +846301Sir Thomas BeechamThomas BeechamSir Thomas Beecham, 2nd Baronet, CH, born 29 April 1879 in St. Helens, Lancashire, died 8 March 1961 in London, was a British conductor. +He founded the [a=London Philharmonic Orchestra] in 1932 and the [a341104] in 1946. +From the early twentieth century until his death Beecham was a dominant influence on the musical life of Britain. Knighted 1916.Needs Votehttp://en.wikipedia.org/wiki/Thomas_Beechamhttps://www.britannica.com/biography/Sir-Thomas-Beecham-2nd-Baronethttps://www.gramophone.co.uk/other/article/thomas-beecham-the-life-and-legacy-of-the-conductorhttps://www.bach-cantatas.com/Bio/Beecham-Thomas.htmhttps://adp.library.ucsb.edu/names/101895BeechamBeecham, TLtg. Sir Thomas BeechamSir T. BeechamSir T. Beecham, Bart.Sir Thomas BeachamSir Thomas BeechSir Thomas Beecham BartSir Thomas Beecham Bart C.H.Sir Thomas Beecham Bart CHSir Thomas Beecham Bart, C. H.Sir Thomas Beecham Bart, C.H.Sir Thomas Beecham Bart, CHSir Thomas Beecham Bart.Sir Thomas Beecham Bart. C. H.Sir Thomas Beecham Bart. C.H.Sir Thomas Beecham Bart., C.H.Sir Thomas Beecham Bart., CHSir Thomas Beecham Bart.,C.H.Sir Thomas Beecham Bart.C.H.Sir Thomas Beecham Bt., C.H.Sir Thomas Beecham, BART.Sir Thomas Beecham, BartSir Thomas Beecham, Bart CHSir Thomas Beecham, Bart CH.Sir Thomas Beecham, Bart, CSir Thomas Beecham, Bart, C. H.Sir Thomas Beecham, Bart, C.H.Sir Thomas Beecham, Bart.Sir Thomas Beecham, Bart. C. H.Sir Thomas Beecham, Bart. C.H.Sir Thomas Beecham, Bart. CHSir Thomas Beecham, Bart., C. H.Sir Thomas Beecham, Bart., C.H.Sir Thomas Beecham, Bart., CH.Sir Thomas Beecham, Bart.,C.H.Sir Thomas Beecham, Bart.CHSir Thomas Beecham, Bart.CH.Sir Thomas Beecham, Bt., C.H.Sir Thomas Beecham,Bart.Sir Thomas Beecham,Bart., C.H.Sir Thomas Beecham. BartSir Thomas Beecham. Bart.Sir Thomas Beecham. Bart., C. H.Sir. Thomas BeechamT. BeechamT.BeechamThomad BeechamThomas BeechamThomas Beecham, Bart., C.H.Wilhelm FurtwänglerТ. БичемТомас Бичемサー・トーマス・ビーチャムトーマス・ビーチャムLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe Beecham Choral SocietyBeecham Opera CompanyBeecham Symphony Orchestra + +846453Lem DavisLemuel Arthur DavisAmerican swing jazz alto saxophonist, born 22 June 1914 in Tampa, Florida, died 16 January 1970 in New York +Davis was a member of Charlie Brantley's Collegians in Tampa 1937-1938. He then moved to New York, and first recorded with the Harlem Indians led by [a=Harold Boyce] 1941. He first came to prominence in the early to mid-1940s playing with [a=Nat Jaffe], [a=Coleman Hawkins], [a=Eddie Heywood] and [a=Rex Stewart]. After playing with [a=John Kirby] in 1946 he rejoined Heywood. He recorded as a leader in 1945-1946 and again in 1951. During the 1950s and 1960s Davis worked in New York with [a=Buck Clayton] and [a=Teacho Wiltshire] as well as with own bands.Needs Votehttps://en.wikipedia.org/wiki/Lem_Davishttp://www.worldcat.org/identities/lccn-n93-21844/https://www.allmusic.com/artist/lem-davis-mn0001494796https://adp.library.ucsb.edu/names/311126DavidDavisL. DavisLen DavisLon DavisEddie Heywood And His OrchestraMel Powell & His All-StarsErroll Garner All StarsEddie Safranski's All StarsJoe Thomas' Big SixBilly Kyle's Big EightLem Davis Sextette + +846507Jan HarshagenDutch hornist, born in 1960.Needs Votehttps://www.linkedin.com/in/jan-harshagen-29110b3bAsko EnsembleConcertgebouworkestThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraNieuw Sinfonietta AmsterdamValerius EnsembleAmsterdam Philharmonic OrchestraAsko|SchönbergSinfonia Rotterdam + +846510Marieke SchutDutch classical oboist.Needs VoteSchutAsko EnsembleNieuw Sinfonietta AmsterdamAsko|SchönbergThe Stolz Quartet + +846511John Corbett (2)John Corbett is a Scottish clarinetist, soloist with the Philharmonisches Orchester Hagen and co-founder of Duo Imaginaire, born near Edinburgh and currently based in Germany. He studied at the Royal Scottish Academy of Music and Drama in Glasgow and later with Professor [a=Hans Deinzer] at the Music Academy in Hannover. Corbett began his career as a principal clarinet of the [url=https://www.discogs.com/artist/863063]European Community Youth Orchestra[/url] for three years, playing under [a=Claudio Abbado], [a=Herbert von Karajan] and [a=Carlo Maria Giulini]. He also played as a member of [a=Junge Deutsche Philharmonie] (the German Student Orchestra), and later continued performing as an ensemble member and soloist with [a=Ensemble Modern] and [a=MusikFabrik]. He produced concerts and recordings with conductors such as [a=Peter Eötvös], [a=Heinz Holliger], [a=Pierre Boulez], [a=Ernest Bour] and [a=Friedrich Cerha], and played as a guest with [a=Asko Ensemble] (Amsterdam), [a=Ensemble InterContemporain] (Paris) and [a=The Chamber Orchestra of Europe], as well as other prominent new music and contemporary classical ensembles. + +Since 2007, John Corbett has been performing and recording in a duo with harpist [a=Simone Seiler]. They’re trying to develop and establish an unlikely duo of clarinet and harp as a legitimate ensemble, and available repertoire of original works for this combination is rapidly growing with contributions from [a=Frank Zabel], [a=Stefan Heucke], [a=Dietrich Hahne], [a=Jörg Birkenkötter], [a=Martin Christoph Redel], [a=Gordon Kampe], [a=Manfred Stahnke], [a=Andrew Digby], [a=Yasuko Yamaguchi], [a=Kumiko Omura], [a=Matthew Orlovich], [a=Carlos Micháns], [a=James Wishart], [a=Frido ter Beek], [a=Takayuki Rai] and other contemporary composers.Needs VoteEnsemble ModernMusikFabrikJunge Deutsche PhilharmonieEuropean Union Youth OrchestraEnsemble Modern OrchestraPhilharmonisches Orchester HagenDuo Imaginaire + +846514Tjeerd OostendorpDutch tuba player, born 1956. Member of the [a970420] from 1979 to 1989 and [a1112265] from 1989 to 1995. +Needs VoteTJ OosterhuisTseerd OostendorpAsko EnsembleEbony BandResidentie OrkestOrkest De VolhardingOrchestre National Bordeaux AquitaineGijs Hendriks Construction CompanyJan Molenaar's Big BandNorth Sea Jazz TentetAsko|SchönbergGijs Hendriks Quintet + +846515Susanne van ElsSusanne van ElsDutch violinist born 1963. In 2009 she retired as an active musician to become Coordinator Classical Music at the Koninklijke Conservatorium, Den Haag.Needs Votehttp://www.susannevanels.com/Schönberg EnsembleNieuw Sinfonietta Amsterdam + +846516Evert WeidnerClassical oboist.Needs Votehttps://www.linkedin.com/in/evert-weidner-1583a79Schönberg EnsembleNieuw Sinfonietta AmsterdamAsko|Schönberg + +846519Hans WoudenbergDutch cellist, born in 1952. + +Needs Votehttps://www.facebook.com/hans.woudenberg.94Schönberg EnsembleAsko EnsembleNederlands Blazers EnsembleNieuw Sinfonietta AmsterdamSchoenberg QuartetAsko|SchönbergDoelenKwartet + +846523Margreet BongersDutch classical bassoonistNeeds Votehttps://www.linkedin.com/in/margreet-bongers-817b7238https://orkest.nl/nl/musici/18/margreet-bongersMagreet BongersAsko EnsembleNederlands Blazers EnsembleOrchestre Des Champs ElyséesCollegium VocaleThe Amsterdam Baroque OrchestraCombattimento Consort AmsterdamNetherlands Chamber OrchestraNieuw Sinfonietta AmsterdamEbony BandNederlands Philharmonisch Orkest (2)Asko|Schönberg + +846526Wim VosClassical percussionist.Needs VoteEnsemble ModernAsko EnsembleAnumadutchi + +846530Heleen HulstDutch classical violinist.Needs VoteSchönberg EnsembleAsko EnsembleNieuw Sinfonietta AmsterdamOrchestra Of The 18th CenturyNieuw EnsembleNieuw Amsterdams PeilLudwig OrchestraCloud Atlas Ensemble + +846531Peppie WiersmaDutch classical percussionist.Needs Votehttp://www.peppiewiersma.nlPep WiersmaPeppiePeppie WierzmaPeppie WirsmaAsko EnsembleCollegium VocaleConcerto KölnLa Petite BandeNieuw Sinfonietta AmsterdamAusoniaEnsemble SRadio Kamer Filharmonie + +846736Ellen Ruth RoseAmerican violist.Needs Votehttps://music.berkeley.edu/people/ellen-ruth-rose/Ellen RoseEnsemble ModernDallas Symphony OrchestraEmpyrean EnsembleEarplay (2) + +846740Marina AschersonViola player.Needs VoteMarina AsschersonThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentGabrieli PlayersMichaelangelo Chamber OrchestraThe Mozartists + +846741Alban WeslyDutch bassoonist (born 1976 in Amsterdam).Needs Votehttps://www.wesly.eu/Alban WesleyMusikFabrikNieuw Sinfonietta AmsterdamCalefax Reed QuintetDavid Kweksilber Big Band + +846750Alexander ScheirleGerman cellist, based in the USA.Needs VoteBayerische KammerphilharmonieDeutsche Kammerphilharmonie BremenDeutsches Solisten Ensemble + +846970Hans Schmidt-IsserstedtHans Schmidt-IsserstedtGerman conductor, born 5 May 1900 in Berlin, Germany and died 28 May 1973 in Holm, Germany. +Chief Conductor of [a=Stockholms Konsertförenings Orkester], renamed in 1957 [a=Stockholms Konsertförenings Orkester] from 1955 to 1964. +Father of classical music producer [a383803].Needs Votehttp://en.wikipedia.org/wiki/Hans_Schmidt-IsserstedtDr H. Schmidt-IsserstedtDr. H. SchmidtDr. H. Schmidt-IsserstedtDr. Hans Schmidt-IsserstedtDr. Hans Schmitt-IsserstedtDr. Schmidt-IsserstedtH. Schmidt-IsserstedtHans SchmidtHans Schmidt - IsserstedtHans Schmidt IsserstedtHans Schmidt-IsserstadtHans SchmittHans Schmitt-IsserstedtM.° Schmidt IsserstedtSchmidSchmidt - IsserstedtSchmidt-IsserstedtSchmidtt-IsserstedtStaatskapellmeister Dr. H. Schmidt-IsserstedtStaatskapellmeister Dr. Hans IsserstedtStaatskapellmeister Dr. Hans Schmidt - IsserstedtStaatskapellmeister Dr. Hans Schmidt-IsserstedtStaatskapellmeister Dr.Hans Schmidt-IsserstedtХ. Шмидт-ИссерштедтХанс Шмидт-Иссерштедтハンス・シュミット・イッセルシュテットStockholms Filharmoniska OrkesterStockholms Konsertförenings OrkesterNDR Sinfonieorchester + +847110Cord GarbenGerman musician, conductor and producer. He was born 11 February 1943 in Bad Homburg, Germany.Correcthttp://www.cordgarben.de/Cord GabenCord GarberDr. Rudolf WernerGarbenGord GarbenКорд Гарбенコルド・ガルベンコード・ガーベン + +847180Géza AndaGéza AndaSwiss pianist of Hungarian origin, born November 19, 1921, in Budapest, Hungary, died June 14, 1976, in Zürich, Switzerland.Needs Votehttp://www.bach-cantatas.com/Bio/Anda-Geza.htmhttps://geza-anda.ch/de/geza-anda-2/https://en.wikipedia.org/wiki/G%C3%A9za_Andahttps://adp.library.ucsb.edu/names/353171AndaG. AndaGeza AndaMr. AndaГ.АндаГеза Анда + +847368Christian ZachariasGerman pianist and conductor, born 27 April 1950 in Jamshedpur, India.Needs Votehttps://christian-zacharias.com/https://en.wikipedia.org/wiki/Christian_ZachariasC. ZachariasZachariasクリスティアン・ツァハリアス + +847372Jörg FaerberGerman conductor, born June 18, 1929, in Stuttgart. Founded the [a=Württembergisches Kammerorchester] in 1960. +Died September 15, 2022.Needs Votehttp://www.genuit.de/Genuit/Partner/p_Joerg_Faerber.htmhttps://de.wikipedia.org/wiki/J%C3%B6rg_Faerberhttps://en.wikipedia.org/wiki/Jörg_FaerberFaerberFärberJ. FaerberJoerg FaerberJorg FaeberJorg FaerberJurg FaerberJörg FacrberJörg FaeberJörg FaerbergJörg FarberJörg FärberJürg FaerberJӧrg FärberЙ. ФарберЙорг Фарберイェルク・ファルベルイェルク・フェルバーイエルク・フェルバーWürttembergisches Kammerorchester + +847398Jack LathropAmerican jazz vocalist and guitarist. Composer of the song "Helpless" with [a254900]Needs Votehttps://www.revolvy.com/page/Jack-Lathrophttps://adp.library.ucsb.edu/names/111090J. LathropJackJack LathropeJack LathrupJack LatropJack LothrupLathropGlenn Miller And His OrchestraHal McIntyre And His OrchestraJack Lathrop And The Drugstore Cowboys + +847489Garcia NavarroLuis Antonio García NavarroSpanish conductor, born 30 April 1941 in Chiva, Valencia, Spain and died 10 October 2001 in Madrid, Spain. +[a4226024] conductor (1970-1974) +[a1931863] (1979-1981) +[a3245762] conductor (1991-1993) +[a854120] conductor (1997-2001)Needs Votehttps://en.wikipedia.org/wiki/Luis_Antonio_García_NavarroAntonio G. NavarroAntonio Garcia NavarroAntonio García NavarroG. NavarroGarcía NavarroL. A. Garcia-NavarroL.A. Garcia NavarroLuis A. Garcia NavarroLuis A. Garcia-NavarroLuis A. García NavarroLuis A. García-NavarroLuis A. Gracia-NavarroLuis Antonio Garcia NavarroLuis Antonio García NavarroLuis Garcia NavarroLuis Garcia-NavarroLuis GarcíaLuis-Antonio Garcia NavarroLuis-Antonio García NavarroLuís A. García-NavarroNavarroΓκαρθία ΝαβάροOrquesta Sinfónica De MadridOrquestra Sinfónica Do Teatro Nacional De São Carlos, LisboaOrquestra Ciutat De BarcelonaOrquesta de Valencia + +847739David James (15)American jazz trombonist from the swing era. + +CorrectDave JamesDavid "Jelly" JamDavid "Jelly" JamesJelly JamesErskine Hawkins And His OrchestraFess Williams And His Royal Flush OrchestraEdgar Hayes And His Orchestra + +847818Vladimir HorowitzVladimir Samoylovich HorowitzRussian-born American classical pianist and composer. +Born: 1st October 1903 Kiev, Russian Empire. +Died: 5th November 1989 New York City, New York, USA. +Settled in the U.S. in 1939 and became an American citizen in 1944. +Husband of [a=Wanda Toscanini Horowitz] (m. 1933), with whom he had a daughter Sonia (b. 1934 – d. 1975). +During his career, Horowitz retired from public performances four times. Horowitz won 25 Grammy Awards and 5 Grammy Hall of Fame Awards. He was awarded the President's Medal of Freedom.Needs Votehttps://en.wikipedia.org/wiki/Vladimir_Horowitzhttps://www.britannica.com/biography/Vladimir-Horowitzhttps://www.imdb.com/name/nm0395332/https://web.archive.org/web/20140702111417/http://www.vladimirhorowitz.info/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103121/Horowitz_VladimirHorowitzV. HorowitzVladamir HorowitzVladimir HorovitzWladimir HorowitzВ. ГоровицВладимир ГоровитцВладимир Горовицウラディミール・ホロヴィッツウラディーミル・ホロヴィッツホロヴィッツヴラディーミル・ホロヴィッツヴラディーミル・ホロヴィッツ + +848064Raphael HillyerRaphael Hillyer (1914 - 2010) was an American viola soloist and teacher.Needs Votehttps://en.wikipedia.org/wiki/Raphael_HillyerHillyerR. HillyerRalphael HillyerRaphael HillerРафаэль ХиллерBoston Symphony OrchestraJuilliard String QuartetTokyo String QuartetString Nonet + +848161János RollaRolla JánosHungarian violinist and conductor, born 1944. +Leader and founding member of the [a=Liszt Ferenc Chamber Orchestra], artistic director of the ensemble since 1979, since the death of the former leader, [a=Frigyes Sándor]. +Died on Dec.13th 2023 +Needs VoteJ. RollaJanos RollaJonas RollaRolla JánosZanos RollaЯ. РоллаЯнош РоллаЯноша Роллаヤーノシュ・ローラCamerata HungaricaLiszt Ferenc Chamber Orchestra + +848162Péter PongráczHungarian classical oboistNeeds VoteP. PongraczP. PongráczPeter PongraczPongráczPongrácz PéterPéter PongraczPéter PongrácsPéter PongázczLiszt Ferenc Chamber OrchestraMagyar FúvósötösHungarian Wind Quartet + +848163Liszt Ferenc Chamber OrchestraLiszt Ferenc KamarazenekarHungarian chamber orchestra founded in 1963, often credited as Franz Liszt Chamber Orchestra (Kammerorchester), do not mix-up with [a1193754]. +The first artistic director of the ensemble was [a=Frigyes Sándor]. After his death in 1979, [a=János Rolla] continues his work as the concertmaster of the ensemble. +The ensemble consists of 16 strings; a harpsichord soloist can complete the ensemble, as well as wind and other instrumentalists. They rarely use a conductor, playing under the leadership of János Rolla. +Its repertory spans almost the entire history of music from Monteverdi, Bach, Vivaldi, Mozart to the romantics and to the 20th century composers. +Needs Votehttp://www.lfkz.hu/https://www.facebook.com/franzlisztchamberorchestrahttps://www.youtube.com/channel/UCs3b4DZA-cISu4WaHIZD1ggA Liszt Ferenc Zeneművészeti Főiskola ZenekaraBudapest Chamber AcademyBudapest Franz Liszt Chamber OrchestraChamber Orchestra Franz Liszt Of BudapestChamber Orchestra Of The Budapest Academy Of MusicChamber Orchestra Of The F. Liszt ConservatoryFerenc Liszt Chamber OrchestraFrank Liszt Chamber OrchestraFrank Liszt KammarorkesterFrank Liszt KammerorchesterFrank Liszt-KammerorchesterFransz List KammerorchesterFransz-List-KammerorchesterFrantz Liszt Chamber OrchestraFranz List Chamber OrchestraFranz List KammerorchesterFranz Listz Chamber OrchestraFranz Listzt KammerorchesterFranz Liszt - KamariorkesteriFranz Liszt -KamariorkesteriFranz Liszt -kamariorkesteriFranz Liszt COFranz Liszt Chamber EnsembleFranz Liszt Chamber OrchesterFranz Liszt Chamber OrchestraFranz Liszt Chamber Orchestra BudapestFranz Liszt Chamber Orchestra Of BudapestFranz Liszt Chamber Orchestra of BudapestFranz Liszt Chamber Orchestra,Franz Liszt Chamber Orchestra, BudapestFranz Liszt Chamber Orchestra.Franz Liszt Chanber Orchestra, BudapestFranz Liszt KamerorkestFranz Liszt KammarorkesterFranz Liszt KammerorchesterFranz Liszt Kammerorchester BudapestFranz Liszt Kammerorchester, BudapestFranz Liszt-KammerorchesterFranz Lizst KammerorchesterFranz Lizt KammerorchesterFranz-List-KammerorchesterFranz-Liszt Chamber OrchestraFranz-Liszt KammerorchesterFranz-Liszt-Chamber OrchestraFranz-Liszt-KammerorchesterFranz-Liszt-kammerorchesterHet Franz Liszt KamerorkestKammerorchester Ferenc LisztKammerorchester Franz LisztKammerorchester Franz Liszt BudapestKammerorchester Franz Liszt, BudapestLisa Ferene Chamber OrchestraListz Ferenc KamarazenekarLisz Ferenc KamarazenekarLiszt Ferenc KamarazenekarLiszt Chamber OrchestraLiszt Ferenc Chamber Orchestra BudapestLiszt Ferenc Chamber Orchestra, BudapestLiszt Ferenc Chamber Orchestra, Budapest = Liszt Ferenc KamarazenekarLiszt Ferenc KamarazenekarLiszt Ferenc KamerorkestLiszt Ferenc Zeneművészeti Főiskola Hallgatóinak VonószenekaraLiszt Ferenc Zeneművészeti Főiskola KamarazenekaraLiszt Ferenc Zeneművészeti Főiskola ZenekaraLiszt Frenec KamarazenekarOrcherstre De Chambre Ferenc LisztOrcherstre De Chambre Franz Liszt de BudapestOrchestra From Music School, BudapestOrchestra Of The Ferenc Liszt AcademyOrchestra Of The Liszt Ferenc Academy Of MusicOrchestra Of The Liszt Ferenc Music AcademyOrchestra da Camera Franz LisztOrchestra of The Liszt Ferenc Music AcademyOrchestra of the Music School, BudapestOrchestre De Chamber Franz LisztOrchestre De Chamber Franz Liszt De BudapestOrchestre De Chambre Ferenc LisztOrchestre De Chambre Franz LisztOrchestre De Chambre Franz Liszt De BudapestOrchestre De Chambre Liszt FerencOrchestre Dee Chambre Franz Liszt De BudapestOrchestre de Chambre Ferenc LisztOrchestre de Chambre Franz LisztOrchestre de Chambre Franz Liszt de BudapestOrchestre de chambre Franz Liszt de BudapestOrkiestra Kameralna Im. Ferenca LisztaOrkiestra Kameralna Im. Franza LisztaOrquesta de Cámara de Franz LisztOrquestra Of The Ferenc Liszt Academy Of MusicOrquestra de Câmara Ferenc LisztThe Budapest Franz Liszt Chamber OrchestraThe Franz Liszt Chamber OrchestraThe Franz Liszt Chamber Orchestra, BudapestThe Franz Liszt OrchestraThe Hungarian Academy Orchestraliszt Ferenc KamarazenekarΟρχήστρα Δωματίου Φραντς ΛιστКамерный Оркестр Им. Ф. ЛистаКамерный Оркестр Им. Ференца ЛистКамерный Оркестр Им. Ференца ЛистаКамерный Оркестр Ференца ЛистаКамерный оркестр Ференца ЛистаКамерный оркестр им. Ф. ЛистаКамерный оркестр им. Ференца Листаフランツ・リスト室内管弦楽団John Williams (7)József VajdaIsaac SternJean-Pierre RampalPéter FüzesBela DrahosEdward H. TarrLászló CzidraJános RollaPéter PongráczGábor LehotkaMiklós PerényiZoltán TfirstPál KelemenAndrás PistaGyörgy KissLili ÁldorÉva IsépyMária FrankZsuzsa PertisAnna SándorGyörgy LovasPéter HamarKálmán KostyálZsuzsa WeiszMihály VárnagyPéter GazdaMihály KaszásFrigyes SándorCsiba JózsefLaszlo BorsodyKovács LórántJózsef GombaiEmilia CsánkyLászló SomSárközy GergelyLászló HaraHorváth EszterJózsef KissVilmos StadlerIstván BorzaHarsányi ZsoltFerenc TarjániPréda LászlóBo Nilsson (2)Erika SebőkGabriella HegyesiErnő KlepochBéla KovácsGábor Dienes (2)Kjell-Åke Andersson (2)Péter KonrádZaltán SzucuTibor Kiraly (2)Zoltán Molnár (2)Szakály ÁgnesBócsa JózsefOlajos GyörgyZempléni Tamás + +848261The Chamber Orchestra Of EuropeEstablished in 1981, the London (UK)-based COE brings together 60 musicians representing the different European nationalities. +Founder of [l=COE Records].Needs Votehttps://www.coeurope.org/https://www.facebook.com/ChamberOrchestraofEuropehttps://en.wikipedia.org/wiki/Chamber_Orchestra_of_EuropeBläsersolisten des Chamber Orchestra Of EuropeCO of EuropeChamber Orchester Of EuropeChamber OrchestraChamber Orchestra Of EuropeChamber Orchestra Of Europe Wind SoloistsChamber Orchestra Of Europe*Chamber Orchestra of EuropeChœur De Chambre D'EuropeEuroopan KamariorkesteriEuropas KammerorkesterEuropean Chamber OrchestraEuropean Chambre OrchestraKamerorkest Van EuropaL'Orchestre de Chambre d'EuropeOrch. De Chambre De L'EuropeOrchestre De Chambre D'EuropeOrchestre De Chambre De L'EuropeOrchestre De Chambre d'EuropeOrchestre de Chambre D'EuropeOrquesta De Camara De EuropaOrquesta De Cámara De EuropaOrquesta de Cámara de EuropaSoloists From The Chamber Orchestra Of EuropeSoloists Of The Chamber Orchestra Of EuropeWind Soloists Of The Chamber Orchestra Of EuropeЕвропейский Камерный Оркестр Клаудио АббадоКамерный Оркесрт ЕвропыКамерный оркестр Европы п/упр. Клаудио Аббадоヨーロッパ室内管弦楽団Ulrika JanssonNigel BlackAndrew RobertsClaudio AbbadoFiona McCapraCharlotte GeselbrachtDaniel HopeDavid AlbermanPeter OlofssonElizabeth KennyMark Bennett (2)Akiko SuwanaiWerner DickelViktoria MullovaAnnette BikEnno SenftNikolaus HarnoncourtWouter RaubenheimerRichard CheethamUlf ForsbergRobin O'NeillJames SommervilleMatthew WilkieLukas HagenRichard HosfordDouglas BoydJacques ZoonSteven Wright (5)Ian Watson (2)Clare HoffmanElizabeth WexlerSylvain VasseurDavid Jackson (5)Regina BeukesBernard HaitinkSimon Wills (2)John ChimesRoger TappingIris JudaMichael Laird (2)Byron FulcherJan HarshagenPeter Richards (3)András SchiffErin HeadleyWind Soloists Of The Chamber Orchestra Of EuropeChristoph WalderMichel RaisonGaby LesterBryn LewisFrancois LeleuxDorle SommerAlice HarnoncourtChristian RutherfordNina ReddigChristoph MarksEckart RungeSusan DentFredrik PaulssonJane SpiersJonathan Williams (7)Wolfgang LäubinJoe RappaportDane RobertsFlorian GeldsetzerMargarete AdorfStephen StirlingHoward PennyKatrine BuvarpThierry Fischer (2)Diemut PoppenLeslie HatfieldGordan NikolitchElizabeth RandellKevin AbbottHåkan RudnerHenrik BrendstrupChristian EisenbergerNick RodwellTomas DjupsjöbackaChristopher DickenJaime MartínJoan Enric LlunaMaighread McCrannMaria KubizekJames Clark (6)Sally PendleburyYannick Nézet-SéguinMarieke BlankestijnRobert AldwinckleChristopher GuniaMark Pledger (2)Lucy GouldJeremy CornesGérard KorstenRomain GuyotJulian PooreMats ZetterqvistElissa LeeDouglas PatersonTimothy BoultonLorenza BorraniHåkan EhrénNicholas Thompson (2)Jens Bjørn-LarsenDenton RobertsKate GouldRichard Lester (2)Helena RathboneIda Speyer GrønJosine ButerWilliam ConwayStewart EatonKristian BezuidenhoutDavid Sinclair (9)Jasper de WaalCameron SinclairMagdalena MartínezOliver Yates (2)Gert-Inge AnderssonAki SaulièreMartin WalchHans LiviabellaChristiane HörrClaudia HofertFiona BrettSiobhán ArmstrongLily FrancisLuise BuchbergerUlrich KircheisSophie BesanconMartin SpangenbergHenriette ScheyttBirgit KolarSylwia KonopkaJosef SterlingerMarie Lloyd (2)Eline Von EscheGiorgi GvantseladzeMatilda KaulLutz Schumacher (2)Geoffrey PrenticePascal SiffertRachel FrostNicholas EastopStefano MolloKarl FriesendahlSebastian GaedeRiikka RepoCorinne ContardoMatthias DulackElizabeth FyfeVolkhard SteudeGertrud WeinmeisterSarah Bevan-BakerClara Andrada de la CalleFrancis CummingsBenjamin Marquise GilmoreAmanda TrueloveDavid Nissen (2)Leo Phillips (2)Kim Bak DinitzenVesna StankovicHanno De KogelPeter PühnSacha JohnsonChristian GeldsetzerJohn Bradbury (4)Hélène BoulègueKai FrömbgenLuis ZoritaSimone JandlHåkan BjörkmanTimea IvánGeza Stuller + +848263Robert HollDutch operatic Bass & Baritone vocalist, born 10 March 1947 in Rotterdam, The Netherlands.Needs VoteHollR. HollРоберт Холл + +848268Peter Richards (3)British classical hornist, born in 1959 in Buckinghamshire, UK.Needs VotePeter RichardThe Chamber Orchestra Of EuropeThe Albion Ensemble + +848339Orchestra Di Padova E Del VenetoItalian chamber ensemble founded in 1966.Needs Votehttps://www.opvorchestra.it/Chamber Orchestra Of PaduaOrch. Di PadovaOrchestra Da Camera Di PadovaOrchestra Da Camera Di Padova E Del VenetoOrchestra Da Camera di PadovaOrchestra Di Camera Di Padove E Del VenetoOrchestra Di Padova È Del VenetoOrchestra da Camera di PadovaOrchestra da Camera di Padova e del VenetoPadova Chamber OrchestraPadua And Veneto Chamber OrchestraPadua Chamber OrchestraMarco ScanoRocco CarbonaraDanilo MarchelloPaolo BrunelloAligi VoltanLuca LucchettaMario FinottiPietro SerafinSilvina SapereStefano BencivengaAlberto SalomonSimone TieppoMarco BertonaMassimiliano TieppoGianluca BaruffaAlberto MacchiniMario FolenaVictor VecchioniGiada BrozGiancarlo TrimboliKlara LocziIvan MalaspinaCaterina LiberoRiccardo PozzatoRoberto CateriniAlberto PrandinaGonçal ComellasChiara MeneghinelloNicolò DottiFrancesco Di GiovannantonioSimone LonardiFloriano BolzonellaElena MeneghinelloDavide Dal PaosSimone Castiglia + +848406John GraasJohn Jacob GraasAmerican jazz French horn player, composer, and arranger. +Born March 14, 1917 in Dubeque, Iowa. +Died April 13, 1962 in Van Nuys, California. (Heart attack) + +John Graas had a short but busy career on the West Coast, known primarily as one of the first and best French horn players in jazz. +Correcthttps://en.wikipedia.org/wiki/John_Graashttps://fromthevaults-boppinbob.blogspot.com/2024/03/https://adp.library.ucsb.edu/names/203926GraasJ. GraasJ. GrassJ.GraasJohn GrassJohn J. GraasJohn J. GrassaJohnny GraasJohnny GrassJohnny Grossaジョン・グラースThe Glenn Miller OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraClaude Thornhill And His OrchestraHenry Mancini And His OrchestraGerry Mulligan TentetteShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraThe Cleveland OrchestraLeith Stevens & His OrchestraLou Bring And His OrchestraJohnny Richards And His OrchestraWoody Herman And His Third HerdThe John Graas NonetThe Horn Club Of Los AngelesJohn Graas EnsembleJohn Graas QuartetJohn Graas SeptetMilt Bernhart Brass EnsembleLouis Bellson's Just Jazz All StarsJohn Graas Quintet + +848408Paul SarmentoJazz tubist +also Bass CreditNeeds VoteShorty Rogers And His GiantsShorty Rogers And His OrchestraPete Rugolo OrchestraLeith Stevens & His OrchestraMilt Bernhart Brass EnsembleThe Octet (2) + +848409Gene EnglundAmerican jazz bassist & tuba player.Needs Votehttp://www.allmusic.com/artist/gene-englund-p74166/creditsG. EnglundJohn Englundジーン・イングランドWoody Herman And His OrchestraStan Kenton And His OrchestraShorty Rogers And His GiantsShorty Rogers And His OrchestraWoody Herman And His Third HerdDodo Marmarosa Trio + +848468František SlámaFrantišek SlámaCzech cellist. Born November 19, 1923 in Herálec (former Czechoslovakia), died May 5, 2004 in Říčany near Prague (Czech Republic).Needs Votehttps://web.archive.org/web/20180511011010/www.frantisekslama.comhttp://en.wikipedia.org/wiki/František_Sláma_(musician)F. SlamaF. SlámaFrantisek SlamaFrantisek SlámaThe Czech Philharmonic OrchestraArs Rediviva EnsemblePro Arte Antiqua + +848520Christopher LarkinClassical horn player and director of The London Gabrieli Brass Ensemble. He also appears as liner notes author. +For the American opera conductor, see [a7835018]Needs VoteChris LarkinBBC Symphony OrchestraLondon Classical PlayersThe London Gabrieli Brass Ensemble + +848521Jonathan StokesSound engineer. He worked at The Decca Record Company as an audio editor, producer and senior engineer for over ten years, before leaving in November 1997 to found [l759019] with [a647974].Needs VoteJohnathan StokesJon StokesJonathan StokeJonathan Stokes (Classic Sound)Jonathan Stokes(Classic Sound Lab)Jonathon Stokes + +848538Philip SetzerAmerican violinist, born in Cleveland, Ohio, USA.Needs Voteフィリップ・セッツァーOrpheus Chamber OrchestraEmerson String Quartet + +848539Eugene DruckerAmerican violinist, born 17 May 1952 in Coral Gables, Florida. He's married to [a858853].Needs Voteユージン・ドラッカーEmerson String QuartetAndreas Trio + +848540Christiane OelzeGerman lyrical soprano vocalist, born 9 October 1963 in Cologne, Germany.Needs Votehttp://www.christianeoelze.com/OelzeHallenser Madrigalisten + +848542David FinckelAmerican cellist, born December 6, 1951. First American student of [a834577]. +Cellist for the [a848555] from 1979 to 2013. +Married to Taiwanese-American pianist [a1724735] since 1985. The two are co-founders of annual chamber music festival Music@MenloNeeds Votehttp://www.davidfinckelandwuhan.com/Site/home.htmlhttp://en.wikipedia.org/wiki/David_FinckelDavid Finkelデイヴィッド・フィンケルEmerson String Quartet + +848549Lawrence DuttonAmerican violist, born 9 May 1954, he teaches at the State University of New York at Stony Brook, and at the Manhattan School of Music, and is married to [a522271].Needs VoteLarry Duttonローレンス・ダットンEmerson String QuartetLong Island Youth Orchestra + +848554Gerald FinleyCanadian classical bass-baritone vocalist, born 30 January 1960 in Montreal. +He began singing as a chorister in Ottawa, Canada, and, encouraged by his uncle and former organist / Director of Music at Westminster Abbey, Sir [a1787001], he auditioned for [a527161] in 1978 and arrived in England the next year to complete his musical studies at the Royal College of Music, King’s College, Cambridge, and the National Opera Studio. He made his operatic debut in 1984. +He was awarded the 2012 Grammy for Best Opera Recording ([a144310]’s Dr Atomic with the Metropolitan Opera) and won an unprecedented three Classic FM Gramophone Awards for Best Solo Vocal Recording (<a href="/release/3106636">Britten's Songs & Proverbs Of William Blake</a> in 2011, Schumann's Dichterliebe & Other Heine Settings in 2009 and Songs by Samuel Barber in 2008).Needs Votehttp://www.geraldfinley.com/https://www.facebook.com/OfficialGeraldFinleyhttps://twitter.com/@GeraldFinleyhttp://www.geraldfinley.info/http://en.wikipedia.org/wiki/Gerald_FinleyFinleyGerald FinlayGerard FinleyGerlad FinlayThe Cambridge SingersThe King's College Choir Of CambridgeThe Monteverdi ChoirGlyndebourne Festival Chorus + +848555Emerson String QuartetClassical string quartet, founded 1976 at the Juilliard School in Manhattan. + +Viola - Lawrence Dutton +Violin - Philip Setzer +Violin - Eugene Drucker +Cello - David Finckel (until 2013), Paul WatkinsNeeds Votehttp://www.emersonquartet.com/https://en.wikipedia.org/wiki/Emerson_String_QuartetEmerson KvartettenEmerson QuartetQuatuor EmersonThe Emerson String QuartetГудачки Квартет "Емерсон"エマーソン弦楽四重奏団Guillermo FigueroaPhilip SetzerEugene DruckerDavid FinckelLawrence DuttonPaul Watkins (3) + +848560Malcolm HicksMalcolm HicksEnglish conductor, choir master and classical keyboard player. +Musical director and conductor of the Waverley Singers since 1982. +He was assistant master of the music at the Cathedral of Birmingham. +Organist and assistant conductor with major choirs and orchestras. Associate conductor of the London Philharmonic Choir and deputy conductor of the Royal Choral Society. Choir master of several choirs in London, including the London Symphony Chorus and the BBC Singers. +Needs VoteM. HicksThe English Baroque SoloistsThe Monteverdi Orchestra + +848757Rosa DominguezArgentinian soprano vocalistNeeds VoteDominguezDoninguezR. DomínguezRoda DomínguezRosa DomínguezConcerto SoaveConcerto ItalianoSchola Cantorum BasiliensisCoro Della Radio Televisione Della Svizzera ItalianaContinens ParadisiSacro & Profano + +849119Karl-Heinz PassinKarl-Heinz Passin (born 1939) is a German classical flutist and professor for music at the Hochschule für Musik in Leipzig, Germany. +Needs VoteKarl Heinz BassinKarl Heinz PassinKarl Heinz PassionКарл-Хайнц ПассинGewandhausorchester LeipzigOrchester der Bayreuther FestspieleKammerorchester BerlinNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaLeipziger Bach-CollegiumRameau-Trio + +849120Armin ThalheimArmin ThalheimGerman classical keyboard instrumentalistNeeds Votehttp://www.armin-thalheim.de/Capella FidiciniaHändelfestspielorchester Halle + +849122Helmut RuckerClassical flautistNeeds VoteHellmut RuckerHelmut RucherGewandhausorchester Leipzig + +849123Cordula BreuerCordula BreuerFlutist and recorder player.Needs Votehttps://www.linkedin.com/in/cordula-breuer-a841a747/?originalSubdomain=deCordula BräuerMusica Antiqua KölnConcerto KölnDas Kleine KonzertGanassi-Consort + +849124Pierre-Gabriel BuffardinPierre-Gabriel Buffardin (Toulon, 24 Mar 1693—Paris, 13 Jan 1768) was a French flutist, pioneer of the Flûte Traversière in Germany, composer, and flute-maker of the late Baroque period. Born in Provence, Buffardin was a flute soloist at Dresden Hofkapelle, the court orchestra of the Elector of Saxony in Dresden, from 1715 to 1749. He taught flutists [a840153], Pietro Grassi Florio, and [a95537]'s elder brother, Johann Jakob, whom he met in Constantinople circa 1710, accompanying the French Ambassador on a mission. Buffardin's [i]Sonata for Flute[/i] is the only certainly-attributed work. His [i]Concerto à cinq in E minor[/i] was written for his virtuosic student Quantz, who said of Buffardin: "Il ne jouait que des choses rapides: car c'est en cela qu'excellait mon maître." (Translation: "He only played fast pieces; for in that my master excelled.") Buffardin was also involved in making flutes. Later experts attributed some essential technical innovations to Pierre-Gabriel, such as developing a screw cork and experiments with the foot register.Needs Votehttps://en.wikipedia.org/wiki/Pierre-Gabriel_BuffardinBuffardinPiere Gabriel BuffardinPierre Gabriel BuffardinPierre Gabriel Buffardin le filsStaatskapelle Dresden + +849126Martin SandhoffMartin SandhoffClassical flutist.Needs VoteМартин ЗандхофMusica Antiqua KölnConcerto KölnIl Concertino KölnCappella ColoniensisOrchester Der Ludwigsburger SchlossfestspieleMusicaeterna + +849128Neues Bachisches Collegium Musicum LeipzigGerman chamber orchestra from Leipzig founded in 1979. +Needs Votehttps://nbcm.de/(NBCM)Collegium MusicumCollegium Musicum LeipzigLeipzig Bach CollegiumLeipzig New Bach CollegiumLeipzig New Bach Collegium MusicumMusicum LeipzigMusicum Leipzig (NBCM)NBCMNBCM LeipzigNbcmNeue Leipzig Bach Collegium MusicumNeues Bach Collegium MusicumNeues Bach-Collegium-MusicumNeues Bachische Collegium MusicumNeues Bachisches CollegiumNeues Bachisches Collegium LeipzigNeues Bachisches Collegium MusicumNeues Bachisches Collegium Musicum Zu LeipzigNeues Bachisches Collegium Musicum (NBCM)Neues Bachisches Collegium Musicum Leipzig (NBCM)Neues Bachisches Collegium Musicum Leipzig, OrchestraNeues Bachisches Collegium Musicum Zu LeipzigNeues Bachisches Collegium Musicum Zu Leipzig (Mitglieder Des Gewandhausorchesters)Neues Bachisches Collegium Musicum Zu Leipzig*Neues Bachisches Collegium Musicum zu LeipzigNeues Bachisches Collegium MusicumNeues Bachisches Collegium MusicumNeues Bachisches Collegium musicum zu LeipzigNeues Bachisches Collegium musicum zu Leipzig (Mitglieder des Gewandhauses)Neues Bachisches Collegium zu LeipzigNeues Bachisches Collegium, Musicum LeipzigNeues Bachisches KollegiumNeues Bachsches Collegium Musicum LeipzigNew Bach College LeipzigNew Bach Collegium MusicumNew Bach Collegium Music LeipzigNew Bach Collegium MusiciumNew Bach Collegium MusicumNew Bach Collegium Musicum LeipzigNew Bach Collegium Musicum Of LeipzigNew Bach Musical AcademyNew Bach Musicum LeipzigNew Bachisches ColleiumNew Leipzig Bach Colegium MusicumNew Leipzig Bach CollegiumNew Leipzig Bach Collegium MuseumNew Leipzig Bach Collegium MusicumNew Leipzig Collegium MusicumNew Leipzip Bach Collegium MusicumNew Lipzig Bach Collegium MusicumNouveau Leipzig Bach Collegium MusicumOrchestra Collegium MusicumКоллегиум Мюзикум п/у М. ПроммераKnut SönstevoldLudwig GüttlerHans-Ludwig MörchenSiegfried PankGeorg KallweitKurt SandauWalter Heinz BernsteinChristine SchornsheimStephan MaiKarl-Heinz PassinHeinz StiefelKarl SuskeGunar KaltofenRoland RudolphGerhard EßbachGünter HeidrichRoland ZimmerJochen PleßBurkhard GlaetznerWerner LegutkeHeinz MaierEberhard PalmKlaus-Peter GützAchim BeyerThomas ReinhardtWolfgang EspigAxel SchmidtRoald ReineckeGerd SchulzeThomas FritzschKarl MehligRainer HuckeNikolaus GädekeBurkhard Schmidt (2)Armin MännelManfred Uhlig (2)Wolfgang LoebnerHans-Jürgen SchmidtFred Roth (3)Monika TutschkuRobert EhrlichLutz KlepelHeinz HeinischOlaf HallmannHolger LandmannSiegfried HungerJürgen DietzeUwe KleinsorgeEberhard FreibergerMichaela HasseltGerwin BaaschKarl SemschRolf BachmannClemens RögerMatthias Schreiber (2)Wolfgang GränitzGundel Jannemann-FischerWaldemar SchwiertzSusanne WettemannPeter Michael BorckTahlia Petrosian + +849142Jan SchröderJan SchröderGerman classical hornist, born 12. 10. 1942 in Solingen. Died 16.2.2019.Needs Votehttps://de.wikipedia.org/wiki/Jan_SchroederJan SchroderJan SchroederProf. Jan SchroederDeutsche BachsolistenBayreuther FestspielhornistenSüdwestdeutsches KammerorchesterConsortium ClassicumPhilharmonisches Orchester DortmundOrchestra Of The 18th CenturyNDR SinfonieorchesterSüddeutsche Bläsersolisten Profive + +849147Walter Van HauweDutch recorder flute player and music educator. +Born November 16, 1948 in Delft.Needs Votehttp://nl.wikipedia.org/wiki/Walter_van_HauweVan HauweWalter van HauweWalter van HouweLes Arts FlorissantsDeutsche BachsolistenEnsemble Tripla ConcordiaQuadro HotteterreSour CreamLittle Consort + +849150Kees BoekeDutch recorder, cello, and viol player born 1950 in Amsterdam.Needs VoteBoekeLes Arts FlorissantsDeutsche BachsolistenRicercar ConsortCantica SymphoniaBrüggen ConsortQuadro HotteterreKees Boeke ConsortMala PunicaSour CreamLittle Consort + +849151Ernö SebestyenHungarian violinist. Founding member of the Sebestyén Quartet, renamed 1970 as the Kodály Quartet, from 1966 to 1971.Needs VoteE. SebestyenErno SebestyenErnö SebestyénErnö SrbestyEnErnø SebestyenSebestyenSebestyén Ernőエルニョー・シェベシュティエーンSymphonie-Orchester Des Bayerischen RundfunksKodály QuartetDeutsche BachsolistenSebestyén QuartetEsterházy Trió + +849152Ab KosterClassical hornist.Needs Votehttps://www.ab-koster.de/en/https://www.hornsociety.org/ihs-people/honoraries?view=article&id=1383:ab-koster&catid=26:honoraryhttps://web.archive.org/web/20031002181821/https://www.sonyclassical.com/artists/koster/https://www.facebook.com/profile.php?id=100077992511738A. KosterKosterアブ・コスターDeutsche BachsolistenLeonhardt-ConsortL'ArchibudelliTafelmusik Baroque OrchestraOrchestra Of The 18th Century + +849154Günther PfitzenmaierClassical bassoonist.Needs VoteGunter PfitzenmaierGünter PfitzenmaierGünter PfitzenmeierBamberger SymphonikerCollegium AureumDeutsche BachsolistenBachcollegium Stuttgart + +849182Pauline NobesClassical violinist +Pauline Nobes is no stranger to audiences in either her native UK or Germany, where she now lives. She has played with the leading period-instrument orchestras in England.Needs VotePauline NoblesThe Scholars Baroque EnsembleThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersThe King's ConsortDas Neue OrchesterNeue Düsseldorfer HofmusikKölner AkademieThe English ConcertEnsemble Rhapsody + +849183Jakob LindbergJohan Jakob LindbergSwedish lutenist, mainly active in England, born 16 October 1952 in Djursholm. + +He performs as a soloist, in small and large ensembles, and as a conductor for ensembles with instruments in the lute and guitar family. He is known for the very first recording of John Dowland's collected works for solo lute, as well as for many first recordings of works that extend to the Renaissance period.Needs Votehttp://www.musicamano.com/https://sv.wikipedia.org/wiki/Jakob_Lindberg_(musiker)https://en.wikipedia.org/wiki/Jakob_LindbergJ. LindbergJ.L.Jacob LindbergLindbergThe English Baroque SoloistsThe Academy Of Ancient MusicMusica Antiqua KölnLa Grande Ecurié Et La Chambre Du RoyDrottningholms BarockensembleTaverner PlayersThe Consort Of MusickeThe Dowland ConsortThe English Concert + +849185Lorraine WoodClassical oboist.Needs VoteThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersThe King's ConsortThe Chandos Baroque PlayersLondon Oboe BandThe English Concert + +849186Rufus MüllerClassical tenor.Needs Votehttps://rufusmuller.com/MüllerRufus MullerThe Tallis ScholarsThe Monteverdi ChoirThe Academy Of Ancient MusicThe Consort Of MusickeThe Schütz Choir Of LondonWilhelmshavener VokalensembleInvocation (6) + +849187Simon BirchallClassical bass vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Birchall-Simon.htmSBSimon BirchellThe Choir Of The King's ConsortThe Tallis ScholarsBBC SingersThe SixteenThe Monteverdi ChoirThe Academy Of Ancient Music ChorusThe English Concert ChoirThe Choir Of Westminster Abbey + +849188Neill ArcherClassical tenor vocalist, born 31 August 1961.Needs VoteNeil ArcherThe Monteverdi Choir + +849189Helen OrslerClassical violinist from the UK.Needs VoteGabrieli ConsortNew London ConsortThe Parley Of InstrumentsThe SixteenThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentTaverner PlayersThe King's ConsortBrandenburg Consort + +849190Alison TownleyClassical violinist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsBrandenburg ConsortRosamunde String Quartet + +849191Pavlo BeznosiukClassical violinist. Brother of flautist [a836774]. +born: London (UK), 1960, jul 4thNeeds Votehttps://www.bach-cantatas.com/Bio/Beznosiuk-Pavlo.htmBeznosiukPavlo BesnosiukPavlo BesnoziukPavlo BeznoziukPavol BeznosiukNew London ConsortThe Parley Of InstrumentsThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersSonnerieBeethoven String Trio Of LondonThe Purcell BandThe Academy Of Ancient Music Chamber EnsembleBaroque String QuartetHausmusik (2)The Avison EnsembleHausmusik LondonMusicians Of Shakespeare's Globe + +849192Justinus KernerJustinus Andreas Christian Kerner (18 September 1786 – 21 February 1862) was a German poet, practicing physician, and medical writer. + +"Kerner was one of the most inspired poets of the Swabian school. His poems, which largely deal with natural phenomena, are characterized by a deep melancholy and a leaning towards the supernatural, which, however, is balanced by a quaint humour, reminiscent of the Volkslied." — 1911 Encyclopædia Britannica + +Needs Votehttps://adp.library.ucsb.edu/names/102132J. KernerJ. KernersJulius KernerJustinius KernerKernerKornerЮ. Кернер + +849194Friedrich RückertJohann Michael Friedrich RückertGerman poet, translator, and professor of Oriental languages, born 16 May 1788 in Schweinfurt, Germany and died 31 January 1866 in Neuses (today Coburg), Germany. +His poetry was adapted by Romantic lieder composers, notably [a283469], [a578727], and [a239236].Needs Votehttps://en.wikipedia.org/wiki/Friedrich_R%C3%BCckerthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102635/Rckert_FriedrichF. RuckertF. RückertF.RuckertF.RückertFr. RückertFranz RückertFriedr. RückertFriedrich RuckertFriedrich RäckertFriedrich V. RückertRickertRuckertRüchertRückertVon Friedrich RückertWilhelm RückertФ. РюккертФ. Рюккертаフリードリヒ・リュッケルトリュッケルト + +849466Christian LangerGerman percussionist, born 1969 in Borna, GDR.CorrectStaatskapelle DresdenRobert-Schumann-Philharmonie + +849470Tobias HasseltGerman trombonist.Needs VoteGewandhausorchester LeipzigEnsemble Avantgarde + +849674Christian FerrasChristian FerrasFrench violinist, born 17 June 1933 in Le Touquet, France, died 14 September 1982 in Paris, France. +Needs Votehttps://en.wikipedia.org/wiki/Christian_FerrasC. FerrasChr. FerrasFerraoFerrasКристиан Феррасクリスチャン・フェラス克里斯蒂昂·费拉Orchestre De La Société Des Concerts Du Conservatoire + +849690Witold RowickiWitold KałkaPolish conductor, born 26 February 1914 in Taganrog, Russia, died 1 October 1989 in Warsaw, Poland.Needs VoteRowickiV. RovickisVitold RovickiW. RowickiWitold BowickiWitold RowickyВ. РовицкиВ. РовицкийВитольд РовицкиВитольд Ровицкийヴィトールド・ロヴィツキOrkiestra Symfoniczna Filharmonii Narodowej + +849702Wolfgang HofmannGerman violinist, composer and conductor (* 06 September 1922 in Karlsruhe, German Empire; † 19 March 2003 in Mannheim, Germany). +Music Director of the [a882817] ([i]Kurpfalz Chamber Orchestra (Mannheim)[/i]) since 1959, was born the son of a musician in Karlsruhe in 1922. He studied in Leipzig, subsequently beginning his career as a violinist in that city's renowned Gewandhaus Orchestra. After an eight year interruption caused by military service and internment as a prisoner of war he then joined a series of orchestras, advancing to the position of concert master of the Salzburg Mozarteum Orchestra. +The composer Wolfgang Hofmann has emerged from the tradition of Hindemith and Bartók, a process he has described in his book "Golden Mean and Composition", which undertakes the task of describing a new set of principles for organizing musical material. His three movement "Concerto Gregorianico" for trumpet and string orchestra (published by C. F. Peters) is a typical example of the hexaphonic style based on the propotions of the golden mean. As the title states, significant melodic elements have been drawn from Gregorian chant. +Needs Votehttps://de.wikipedia.org/wiki/Wolfgang_Hofmann_(Komponist)https://wolfgang-hofmann-stiftung.de/https://www.hebu-music.com/de/musiker/wolfgang-hofmann.38753/Pro. Wolfgang HofmannProf. Wolfgang HofmannWolfgang HoffmanWolfgang HoffmannKurpfälzisches Kammerorchester MannheimMozarteum QuartettMannheimer Solistenensemble + +849733HilleviVuokko LindströmVuokko Hillevi Suomi, later Lindström. + +Wife of [a=Erik Lindström]. Used pseudonym Hillevi when writing lyrics.Needs Vote"Hillevi"Vuokko Lindström + +849746Peggy PearsonAmerican oboist Peggy Pearson is a winner of the Pope Foundation Award for Outstanding Accomplishment in Music. Lloyd Schwartz, who received the 1994 Pulitzer Prize for Criticism, called her “my favorite living oboist.” Peggy has performed solo, chamber and orchestral music through- out the United States and abroad. She is principal oboist with the Boston Philharmonic and solo oboist with the Boston-based Emmanuel Chamber Orchestra, an organization that has performed all of the cantatas of Johann Sebastian Bach. She is also a member of the Bach Aria Group. According to Richard Dyer of the Boston Globe, “Peggy Pearson has probably played more Bach than any other oboist of her generation; this is music she plays in a state of eloquent grace.” Ms. Pearson was the founding director of, and is oboist with, Winsor Music, Inc., and a founding member of the ensemble La Fenice. +She has toured internationally and recorded extensively with the Orpheus Chamber Orchestra, and has appeared with the Boston Symphony Orchestra, St. Paul Chamber Orchestra, and the Orchestra of St. Luke’s as principal oboist, the Chamber Music Society of Lincoln Center, and Music from Marlboro. In addition to her freelance and chamber music activities, Peggy Pearson has been an active exponent of contemporary music. She was a fellow of the Radcliffe Institute in con- temporary music, and has premiered numerous works, many of which were written specifically for her. +Peggy Pearson has been on the faculties at the Bach Institute (a collaboration between Winsor Music, Emmanuel Music and Oberlin College), Songfest, the Tanglewood Music Center, Boston Conservatory, MIT, U. of Cincinnati Conservatory of Music, Wellesley College, the Composers Conference at Wellesley College, and the Longy School of Music of Bard College.Needs VoteOrpheus Chamber OrchestraQuintet Of The AmericasBoston Philharmonic OrchestraThe Orchestra Of Emmanuel MusicGreenleaf Chamber Players + +849793Kurt SanderlingBorn September 19, 1912 in [url=https://en.wikipedia.org/wiki/Orzysz]Arys[/url], died September 18, 2011 in Berlin. German conductor Jewish origin, he left Germany in 1936, three years after the Nazis came to power, and moved to Stalinꞌs Russia. He relocated to East Germany in 1960. He was permitted to travel to the West, and from 1970, he started recording and giving concerts in the UK and USA. He was awarded the British C.B.E. in 2002. Father of musicians [a1415554], [a838238] and [a914137]. + +Chief conductor of the East German [a=Berliner Sinfonie Orchester], 1960-1977. +Chief conductor of the [a=Staatskapelle Dresden], 1964-1967Needs Votehttps://en.wikipedia.org/wiki/Kurt_SanderlingK. I. SanderlingK. SanderlingK. ZanderlingK. ZardelingK.ZanderlingKurt SanderlinKurt VanderlingKurt ZanderlingNationalpreisträger Kurt SanderlingSanderlingZanderlingЗандерлингК. ZanderlingК. ЗандерленгК. ЗандерлингК. И. ЗандерлингКурт Зандерлингクルト・ザンデルリングStaatskapelle Dresden + +849795Paavo BerglundPaavo Allan Engelbert BerglundFinnish conductor, born April 14, 1929 in Helsinki, Finland; died January 25, 2012 in Helsinki, Finland. + +Cousin of [a=Vesa-Matti Loiri].Needs Votehttps://en.wikipedia.org/wiki/Paavo_Berglundhttps://www.konserthuset.se/en/royal-stockholm-philharmonic-orchestra/the-orchestras-history/paavo-berglund/BerglundPaavlo BerglundPavlo BerglundПааво Берглунд + +849899Myriam GuillaumeClassical violistNeeds VoteCity Of Birmingham Symphony Orchestra + +850106William LaneAmerican French horn player.Needs Votehttps://www.imdb.com/name/nm10609321/Bill LaneLane William E.Lane, WilliamWill LaneWilliam E. LaneBuffalo Philharmonic OrchestraLos Angeles Philharmonic OrchestraThe Bob Belden Ensemble + +850115Robert CowartRobert L. CowartSaxophonist and English Horn soloist, +graduated at Indiana University’s School of Music. + +Died: September 27, 1987 in Los Angeles, California (age 52)Needs Votehttps://www.latimes.com/archives/la-xpm-1987-10-15-mn-13973-story.htmlBob CowartCowartRobert L. CowartDetroit Symphony OrchestraAtlanta Symphony OrchestraLos Angeles Philharmonic OrchestraSymphonic Metamorphosis + +850222Desmond DupréEnglish lutenist and viola da gamba player, born December 19, 1916 in London, England, died August 16, 1974 in Tonbridge, Kent, England. He was known for his recordings of early music with [a=Alfred Deller].Needs Votehttps://en.wikipedia.org/wiki/Desmond_Dupr%C3%A9Desmond Dupreデズモンド・デュプレデモン・デュプレEnglish Chamber OrchestraThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsDeller ConsortPhilomusica Of LondonThe Julian Bream ConsortMusica ReservataBaroque String EnsembleThe Jacobean Ensemble + +850223Granville JonesGranville Delmé JonesClassical violinist and conductor. Died in the late 1960s. +Former leader of the [a212726] (1954-1955). Founder leader of [a893099] in 1962. Also member of the [b]Fleming String Trio[/b], alongside [a=Amaryllis Fleming] & [a=Kenneth Essex].Needs Votehttps://open.spotify.com/artist/2KG44ciaxa3u8W8fGiVqbGhttps://music.apple.com/us/artist/granville-jones/48529307https://myspace.com/granvillejonesviolinhttps://www.the-paulmccartney-project.com/artist/granville-jones/London Symphony OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsPhilomusica Of LondonThe Delmé String QuartetSinfonia Of LondonThe London StringsVic Lewis And His OrchestraThe Boyd Neel Orchestra + +850300Ariane LajoieCanadian violinistNeeds VoteOrchestre symphonique de Montréal + +850347Michelle SetoCanadian classical violinistNeeds VoteMichèle SetoLes Violons du Roy + +850385Vernon HandleyVernon George HandleyBritish conductor, born 11 November 1930 in Enfield, London, England, UK and died 10 September 2008 in Monmouth, Monmouthshire, Wales, UK.Needs Votehttps://www.hyperion-records.co.uk/a.asp?a=A262&name=handleyhttps://en.wikipedia.org/wiki/Vernon_Handleyhttps://www.classicalmusicdaily.com/articles/h/v/vernon-handley.htmConducted byHandleyV. HandleyVerno HanleyVernon HadleyVernon Handley CBEВ. ХендлиВернон ХендлиRoyal Philharmonic Orchestra + +850428Alice EvansAlice EvansAustralian classical violinist born in Perth.Needs Votehttps://englishconcert.co.uk/artist/alice-evans/The Academy Of Ancient MusicAustralian Brandenburg OrchestraOrchestra Of The Age Of EnlightenmentAustralian Chamber OrchestraThe King's ConsortDunedin ConsortIsland (33) + +850446Deirdre DowlingClassical viola player. Originally from Melbourne, Australia, she moved to the Hague in 2001, and then to Paris in 2006Needs Votehttps://fr.linkedin.com/in/deirdre-dowling-707b931b8https://orchestra18c.com/en/musicians/deirdre-dowling/Deidre DowlingDeidre DowningCollegium VocaleThe Amsterdam Baroque OrchestraAustralian Brandenburg OrchestraLes Musiciens Du LouvreDe Nederlandse BachverenigingCafé ZimmermannOrchestra Of The 18th CenturyIl GardellinoScherzi MusicaliHarmonie UniverselleGli Angeli GenèveLe Banquet CélesteVan Diemen's Band + +850447Madeleine EastonMadeleine EastonViolinist.Needs Votehttps://www.australianworldorchestra.com.au/906-madeleine-easton/The English Baroque SoloistsAustralian Brandenburg OrchestraAustralian Youth OrchestraThe Concertante Ensemble of LondonIsland (33) + +850536Thomas MadsenThomas Grue MadsenEDM / Bigroom DJ, producer & studio engineer from Norway. +Previously known from 2004 to 2010 under his Hard Dance Music guise [a=Adrenaline Dept.] (formerly a duo).Needs Votehttp://www.moroca.net/http://www.facebook.com/TomMorocahttp://twitter.com/TomMorocahttp://soundcloud.com/tom-morocaTom MorocaAdrenaline Dept. + +850537Fredrik PettersenFredrik Karl Goeran PettersenHard Dance / Hard Trance producer from Norway. +Originally part of the Hard Dance duo [a=Adrenaline Dept.], he left around 2009-2010, returned in early 2018 and finally left in September 2019.Needs Votehttp://www.facebook.com/fredrik.rabe87Frederik PettersenAdrenaline Dept. + +850538Alessandro TampieriClassical string instrumentalistNeeds VoteA. TampieriAccademia BizantinaL'AstréeL'ArpeggiataIl Giardino ArmonicoEnsemble ArtaserseAcademia Montis RegalisEnsemble La FeniceIl Suonar Parlante Orchestra + +850889Edith MAthisEdith Mathis[i]Note: Following [g=2.5.5], do not use ANV to capitalize her last name to Mathis.[/i] +Swiss operatic soprano (11 February 1938, Lucerne, Switzerland – 9 February 2025, Salzburg, Austria). Internationally renowned for, in particular, her interpretations of the works of Mozart. She was born in Lucerne, and made her operatic debut in 1956. Her first international appearance was in Cologne, 1959. She made frequent appearances at opera houses such as Glyndebourne, the Salzburg Festival, the Deutsche Oper Berlin (of which she was a member), Covent Garden, the Metropolitan Opera, the Vienna State Opera, the Bavarian State Opera and the Opéra de Paris. + +She recorded under many prestigious conductors, including [a=Herbert von Karajan], [a=Leonard Bernstein], [a=Karl Böhm], [a=Rafael Kubelík], [a=Karl Richter], [a=Eugen Jochum], [a=Daniel Barenboim] and [a=Sir Neville Marriner], and is one of the most recorded artists of her time. + +She married conductor [a=Bernhard Klee], with whom she performed and recorded on several occasions. She died on 9 February 2025, two days before her 87th birthday.Needs Votehttps://de.wikipedia.org/wiki/Edith_Mathishttps://en.wikipedia.org/wiki/Edith_Mathishttps://www.turba.at/home/k%C3%BCnstler/edith-mathis-meisterkurse/https://www.bach-cantatas.com/Bio/Mathis-Edith.htmhttps://www.deutschlandfunk.de/die-sopranistin-edith-mathis-lyrischer-liebreiz-100.htmlhttps://www.lucernefestival.ch/de/programm/kuenstlerverzeichnis/edith_mathis/2726https://www.imdb.com/name/nm0558911/E. MathisEdith MathisEdith MatthisMathisЭдит Матисエディット・マティスエディット・マティス = Edith Mathis + +850891Hildegard BehrensHildegard BehrensGerman soprano, born 9 February 1937 in Varel, Germany, died 18 August 2009 in Tokio, Japan.CorrectBehrensHildegarde BehrensThe Metropolitan Opera + +850892Edita GruberovaEdita GruberováSlovak operatic soprano vocalist. +Born December 23, 1946 in Bratislava (former Czechoslovakia), died October 18, 2021 in Zurich, Switzerland. + +Correcthttp://www.gruberova.com/https://en.wikipedia.org/wiki/Edita_Gruberov%C3%A1https://www.bach-cantatas.com/Bio/Gruberova-Edita.htmhttps://www.imdb.com/name/nm0344310/E. GrúberováEdita GruberováEdita GruberovâEdita GrúberováEdith GruberovaEdith GruberováEditha GruberovaGruberovaGruberováエディタ・グルベローヴァ + +850894Chœur de Radio FranceFrench chorus founded in 1947 from [a=Les Chœurs Félix Raugel] (Choeur symphonique) and [a=Les Choeurs Yvonne Gouverné] (Choeur lyrique) and now run by French broadcasting service [l=Radio France]. The associated children's chorus is the [a=Maîtrise De Radio France]. + +1947-1963 - [a=Choeurs de la R.T.F.] (R.T.F. = "Radiodiffusion-Télévision Française"), led by chorus master [a=René Alix] (1947-1963). + +1964-1974 - [a=Chœurs de L'O.R.T.F.] (l'O.R.T.F. = l'office de la radiodiffusion-télévision française), led by chorus master [a=René Alix] (1964-1966) then [a=Marcel Couraud] (1967-1974). + +1975- - Renamed Choeurs/Choeur/Le choeur de Radio France or Radio-France, led by chorus master [a=Marcel Couraud] (1975-1977), [a=Jacques Jouineau] (1977-1986), [a=Michel Tranchant] (1986-1991), François Polgár (1991-2000), [a=Philip White (3)] (2001-2004). +Needs Votehttp://sites.radiofrance.fr/chaines/orchestres/choeur/accueil/A Member Of The ChorusA Member of the ChorusAtelier Des Choeurs de Radio FranceCelles des Chœurs de Radio FranceChoeurChoeur D'hommes De L'O.R.T.F.Choeur D'hommes De L'ORTFChoeur De L'O.R.T.F.Choeur De La RTFChoeur De La RadioChoeur De Radio FranceChoeur NationalChoeur de Radio FranceChoeur de Radio-Télévision FrancaiseChoeur de la RDFChoeur de la RTFChoeursChoeurs De L'O.R.T.FChoeurs De L'O.R.T.F.Choeurs De L'ORTFChoeurs De La R.T.F.Choeurs De La RTFChoeurs De La Radiodiffusion FrancaiseChoeurs De La Radiodiffusion FrançaiseChoeurs De La Radiodiffusion Television FrançaiseChoeurs De La Radiodiffusion Télévision FrançaiseChoeurs De La Radiodiffusion-Télévision FrançaiseChoeurs De Radio FranceChoeurs De Radio France, LesChoeurs De Radio-FranceChoeurs Et Maîtrise De La R.T.F.Choeurs National De L'O.R.T.F.Choeurs O.R.T.F.Choeurs Radio Lyrique De ParisChoeurs de la R.T.F.Choeurs de L’ORTFChoeurs de Radio FranceChoeurs de Radio-FranceChoeurs de l'ORTFChoeurs de la Radiodiffusion Francaise Yvonne GouvernéChoeurs de la Radiodiffusion FrançaiseChoeurs de la Radiodiffusion-Télévision FrançaiseChoirChoir Of Radio France, TheChoir Of Radiodiffusion FrançaiseChoir Of The RTFChoir of Radiodiffusion FrançaiseChoral Ensemble Of The O.R.T.F.ChoraleChorale De La RTFChorale Lyrique De L'ORTFChorale Symphonique De La Radiodiffusion FrançaiseChorale Symphonique De la Radiodiffusion FrançaiseChorusChorus And Children's Chorus Of Radio-FranceChorus Of French RadioChorus Of O.R.T.FChorus Of Radio FranceChorus Of The French National Radio OrchestraChorus Of The ORFTChorus Of The ORTFChorus Of The Radiodiffusion-Télévision FrançaiseChorus of French RadioChorus of the ORTFChorusesChoruses Of French National RadioChœurChœur D'Hommes De Radio FranceChœur D'OratorioChœur D'Oratorio Et Maîtrise De L'ORTFChœur De Femmes De Radio FranceChœur De Femmes Et Maïtrise De La Radiodiffusion FrançaiseChœur De L'O.R.T.F.Chœur De La Radiodiffusion FrançaiseChœur De La Radiodiffusion-Télévision FrançaiseChœur De Radio FranceChœur De Radio-FranceChœur Et Maîtrise De La Radiodiffusion FrançaiseChœur Et Maîtrise De Radio FranceChœur NationalChœur National De La Radiodiffusion FrançaiseChœur d'OratorioChœur d'hommes de Radio-FranceChœur de RTFChœur de Radio-FranceChœur de la R.T.F.Chœur de la Radio-Télévision FrançaiseChœursChœurs & Maîtrise de Radio FranceChœurs D'Enfants De L'O.R.T.F.Chœurs D'OratorioChœurs D'enfants De L'O.R.T.F.Chœurs D'enfants De La Maîtrise De La Radiodiffusion Française de Radio FranceChœurs D'enfants de la Maîtrise de la Radiodiffusion FrançaiseChœurs De L'O.R.T.F.Chœurs De L'ORTFChœurs De La R. T. F.Chœurs De La R.T.F.Chœurs De La RTFChœurs De La Radio-Diffusion FrançaiseChœurs De La Radiodiffusion FrançaiseChœurs De La Radiodiffusion-Television FrancaiseChœurs De La Radiodiffusion-Télévision FrançaiseChœurs De Radio FranceChœurs De Radio-FranceChœurs De l'ORTFChœurs Et Maitrise De Radio FranceChœurs Et Maîtrise De La R.T.F.Chœurs Lyrique De Radio FranceChœurs Lyrique De Radio-FranceChœurs NationalChœurs National De La Radiodiffusion FrançaiseChœurs Nationla De La Radiodiffusion FrançaiseChœurs O.R.T.F.Chœurs R.T.F.Chœurs d'OratorioChœurs de L'O.R.T.F.Chœurs de La R.T.F.Chœurs de Radio FranceChœurs de Radio France, LesChœurs de Radio France, ParisChœurs de Radio-FranceChœurs de l'O.R.T.F.Chœurs de la MaitriseChœurs de la R.T.F.Chœurs de la RTFChœurs de radio-franceChɶurs De Radio-FranceCoro D'OratorioCoro De La O.R.T.FCoro De Radio FranciaCoro Della ORTFCoro Della Radiodiffusione FranceseCoro Femenino De La Radio FrancesaCoro de Radio FranciaCoros YEnsemble Des Choeurs De L'O.R.T.F.Ensemble Des Douze Solistes Des Chœurs De l'ORTFEnsemble Vocal Chœur NationalEnsemble Vocal Des Chœur De Radio-FranceEnsemble Vocal Du Chœur NationalFrench National Radio ChorusFrench National Radio-Television ChorusFrench Natl. Radio ChorusFrench Radio & Television ChorusFrench Radio ChoirFrench Radio ChorusL'Ensemble Des Chœurs De L'O.R.T.F.Le Chœur De Radio FranceLe Chœur de Radio FranceLes Choeurs de Radio FranceLes Chœur de Radio FranceLes Chœurs De Radio FranceLes Chœurs de Radio FranceMembers of Chœur de Radio FranceMen's Chorus Of The O.R.T.F.Mens Chorus Of Radio O.R.T.F.ORTF ChorusOrchestre National De L'ORTFOrchestre National, Choeurs De L'O.R.T.F.Radio France Chamber ChorusRadio France ChorusRundfunk-ChorSbory francouzského rozhlasuSolistes Des Chœurs De L'O.R.T.F.Solistes Des Chœurs De l'ORTFThe Choir Of Radio FranceThe French National Radio Choruschœurs De La RTFХор Французского Радиоフランス国立放送合唱団フランス国立放送局合唱団Solistes Des Choeurs De l'ORTFJacques JouineauPhilip White (3)François PolgárJacques Grimbert + +850899Katia RicciarelliItalian Soprano vocalist, born 16 January 1946 in Rovigo, Italy.Needs Votehttp://www.katiaricciarelli.it/K. RicciardelliK. RicciarelliKatia RiciarelliKatja RicciarellisKatya RicciarelliRicciarelliКатя Риччареллиカーティア・リッチャレッリ + +850906Chor der Deutschen Oper BerlinGerman operatic choir. + +Part of the musical ensemble of the [l1256364]. The opera house was named [l563490] between 1920 and 1934 and between 1945 and 1961 and should not be mixed up with the [a833887], which was named "Chor der Deutschen Staatsoper Berlin" in the period of the GDR.Needs Votehttps://www.deutscheoperberlin.de/de_DE/chor-allgemein-containerhttps://www.facebook.com/chor.der.deutschen.oper.berlinA Berlini Deutsche Oper ÉnekkaraBerliinin Valtionoopperan KuoroBerlin German Opera ChorusBerlin OperaBerlin Opera ChoirBerlin Opera Male ChoirBerlin Operas KorBerlin State Opera ChorusBerlin State Opera House ChorusBerlin State Opera OrchestraBerliner State Opera ChoirChoeurChoeur De L'Opéra De BerlinChoeur Et Orchestre Du Deutsch Oper de BerlinChoeur de Opera de BerlinChoeur de l'Opéra d'État de Berlin,Choeur de l'Opéra de BerlinChoeurs De L'Opera De BerlinChoeurs De L'Opéra D'Etat De BerlinChoeurs De l'Opéra De BerlinChoeurs Du Deutsche Oper, BerlinChoeurs Du Deutsche Opera, BerlinChoeurs du Deutsche Oper BerlinChoirChoir Der Deutschen Oper BerlinChoir Of Deutschen Oper, BerlinChoir Of The Berlin OperaChoir Of The Deutsche OperChoir Of The German Opera BerlinChoir Of The German Opera, BerlinChoir Of The State Opera, BerlinChoirsChorChor D. Deutsch. Opernhauses, BerlinChor D. Deutschen OpernhausesChor D. Dt. Oper BerlinChor Der Berliner StaatsoperChor Der Deutsche Oper BerlinChor Der Deutschen OperChor Der Deutschen Oper Berlin U. A. M.Chor Der Deutschen Oper, BerlinChor Der Deutschen Operhauses, BerlinChor Der Deutschen Staatoper BerlinChor Der Deutschen Staatsoper BerlinChor Der Deutschen Staatsoper Oper BerlinChor Der Dt. Oper BerlinChor Der Oper, BerlinChor Der Staatsoper BerlinChor Der Städt. Oper BerlinChor Der Städtischen Oper BerlinChor Des Deutsch. Opernhauses, BerlinChor Des Deutschen Oper BerlinChor Des Deutschen Operhauses BerlinChor Des Deutschen Opernhauses BerlinChor Des Deutschen Opernhauses, BerlinChor Des Deutschen Opernhauses, BerlinChor Des Opernhauses, BerlinChor Of The Deutsche Oper BerlinChor Und Orchester Der Deutschen Oper BerlinChor der Deutschen OperChor der Deutschen Oper BerlinChor der Deutschen Oper, BerlinChor der Deutschen StaatsoperChor der Deutschen Staatsoper BerlinChor der Dt. Oper BerlinChor der Staatsoper BerlinChor der Städtischen Oper BerlinChor des Deutschen Opernhauses, BerlinChorusChorus Of The der Deutsche Oper, BerlinChorus Of The Berlin OperaChorus Of The Berlin Opera CompanyChorus Of The Berlin State OperaChorus Of The Deutsche OperChorus Of The Deutsche Oper BerlinChorus Of The Deutsche Oper Berlin,Chorus Of The Deutsche Oper, BerlinChorus Of The Deutsche Opera, BerlinChorus Of The Deutschen Oper BerlinChorus Of The Deutschen Oper, BerlinChorus Of The German OperaChorus Of The German Opera (Berlin)Chorus Of The German Opera (West Berlin)Chorus Of The German Opera BerlinChorus Of The German Opera HouseChorus Of The German Opera House, BerlinChorus Of The German Opera, BerlinChorus Of The German State Opera, BerlinChorus Of The Municipal Opera, BerlinChorus Of The State Oper BerlinChorus Of The State Opera, BerlinChorus of Deutsche Oper BerlinChorus of the Deutsche Oper BerlinChorus of the Deutsche Oper, BerlinChorus – Deutschen Oper, BerlinChrous And Orchestra Of The Deutsche Oper, BerlinChöre Der Deutschen OperChœurChœur De L'Opéra Allemand De BerlinChœur De L'Opéra De BerlinChœur De La Deutsche Oper De BerlinChœur Du Deutschen Oper, BerlinChœur de L'Opéra De BerlinChœur de l'Opéra d'Etat de BerlinChœursChœurs De L'Opera De BerlinChœurs De L'Opéra De BerlinChœurs Du Deutsche Oper BerlinChœurs Du DeutscheOper De BerlinChœurs de l'Opéra de BerlinChœurs du Deutsche Oper, BerlinCoroCoro De La ''Deutschen Oper'' De BerlinCoro De La Deutschen Oper De BerlinCoro De La Opera Alemana De BerlinCoro De La Opera Alemana De BerlínCoro De La Opera Alemana de BerlinCoro De La Opera Alemana, BerlinCoro De La Opera De BerlinCoro De La Opera Del Estado De BerlínCoro De La Ópera Alemana De BerlínCoro De La Ópera De BerlínCoro Dell'Opera Tedesca Di BerlinoCoro Della Deutsche Di BerlinoCoro Della Deutsche Oper BerlinCoro Della Deutsche Oper BerlinoCoro Della Deutsche Oper Di BerlinoCoro Della Deutsche Oper, BerlinoCoro Della Deutsche Opera Di BerlinoCoro Della Deutschen Oper BerlinCoro Deutsche OperCoro Deutschen Oper, BerlinoCoro de Deutschen Oper, BerlinCoro de la Opera Alemana de BerlinCoro de la Ópera de BerlínCoros De La Opera Alemana De BerlinCoros De La Ópera De BerlínDamenchor Die Berliner SymphonikerDer Chor D. Deutschen Oper BerlinDer Chor Der Deutschen Oper BerlinDer Chor Der Deutschen Oper, BerlinDer Chor Der Deutschen Staatsoper BerlinDer Chor Der Oper BerlinDer Chor Der Stadtischen Oper BerlinDer Chor Der Städt. Oper BerlinDer Chor Der Städtischen Oper BerlinDer Chor der Deutschen Oper BerlinDer Chorus Of The German Opera, BerlinDer Große Chor Der BerlinerDeutsch Opera ChorusDeutsche Oper BerlinDeutsche Oper ChorusDeutsche Oper Chorus And Orchestra BerlinDeutschen Opernhauses, BerlinDeutscher Opernchor BerlinDie Chöre Der Deutschen Oper BerlinGerman Opera Choir BerlinGerman Opera Chorus BerlinGerman Opera Chorus, BerlinGerman Opera House ChorusGroot Operakoor Van De Berlijnse OperaKoorKoor Der Deutschen Oper BerlinKoor Van De Berlijnse OperaKoor Van De Deutsche Oper BerlinKoor Van De Duitse Opera BerlijnKoor Van De Duitse Opera Te BerlijnKoor Van de Berlijnse OperaKoor van de Berlijnse OperaKor Fra Deutsche Oper BerlinKörMembers Of The Male Cho. Of The German Opera BerlinMit ChorMužský Sbor Německé Opery BerlínOpern-Chor, BerlinOrchestra And Chorus Of The Deutsche Oper, BerlinSbor Německé Opery V BerlíněStaatsopernchoir BerlinState Opera ChorusThe Chorus Of Deutsche Oper, BerlinThe Chorus Of The Berlin OperaThe Chorus Of The Berlin Opera CompanyThe Chorus Of The German OperaThe Chorus of the Berlin Opera CompanyTyska Operahusets KörTyska Operahusets Kör Och Orkester, Berlinand ChoirХор Берлинской Городской ОперыХор Берлинской ОперыХор Немецкой OперыХор Немецкой Оперы (Западный Берлин)ベルリン・ドイツ・オペラ・合唱団ベルリン・ドイツ・オペラ合唱団ベルリン・ドイツ・オペラ合唱団 = Chor der Deutschen Oper BerlinChor Der Städtischen Oper BerlinBarbara KindermannIrene MaasDirk Lorenz + +851135Bob CalilliRobert Joseph CalilliSongwriter. +Co-writer of the song "Walk Away Renee" +Owned [l481404]Needs VoteB CalilliB. BalilliB. CaliliB. CalilliB. CalilyB. CalliliB. GalilliB.CallilliBob CahilliBob CaililliBob CaliliBob CalillyCaliliCalilliCalilli Robert JosephCalliCalliliCallillyR. CalilliR.J. CalilliR.Joseph CalilliRJ CalilliRob CalilliRobert CalilliRobert Joseph Calilli + +851148Daniel JemisonBritish classical bassoonist, and Professor of Bassoon. Born in Bridlington, Yorkshire and the Humber, England, UK. +He studied at the [l1915396]. He was Principal Bassoon with [a3380330], the [a=Royal Philharmonic Orchestra], the [a=Bournemouth Symphony Orchestra] (1999-2003), and Co-Principal Bassoon with [a1930176]. Principal Bassoon of the [a=London Symphony Orchestra] since December 2013. Professor of Bassoon at [l305416].Needs Votehttps://www.facebook.com/daniel.jemison.5https://twitter.com/danjemisonhttps://www.linkedin.com/in/dan-jemison-bb92aa48/?originalSubdomain=ukhttps://open.spotify.com/artist/1M0FuInc9cSFwUki7Fbn08https://music.apple.com/nz/artist/daniel-jemison/1021829476https://three-worlds-records.com/artist/daniel-jemison/https://lso.co.uk/orchestra/players/woodwind.html#Bassoonshttps://www.hymerscollege.co.uk/hymers-100/daniel-jemisonhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/90-daniel-jemison/Dan JemisonLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraBournemouth Symphony OrchestraDeutsche Kammerphilharmonie BremenThe English National Opera Orchestra + +851183Marc FontenoyAlexandre SchwabFrench songwriter, born 1910 in Sarny, Ukraine, emigrated in France circa late1910s/1920 (due to the Russian Revolution). +Died 1980 in Paris.Needs Votehttp://www.auteurscompositeurs.com/index.php?option=com_content&view=article&id=42:marc-fontenoy&catid=13&Itemid=68https://data.bnf.fr/fr/14820608/marc_fontenoy/Fon enoyFontenayFontendyFontenoisFontenouFontenovFontenoyFontenoy M.FonterayH. FontenoyM. FontanogM. FontenayM. FontenoyM. FontenyM. FonyenoyM.FontenoyMarc FontenayMarc FontencyMare FontenoyMark FontenoyRontenoym. fontenoyМ. Фонтенуаマルク・フォントノワGilles TudyAlexandre Schwab + +851241The Nash EnsembleThe Nash Ensemble of LondonUK classical music chamber ensemble founded by [a851239] in 1964 and resident at London’s [l353172]. +It takes its name from architect John Nash's terraces, which surround London's Royal Academy of Music.Needs Votehttp://www.nashensemble.org.ukhttp://en.wikipedia.org/wiki/Nash_Ensemblehttp://home2.btconnect.com/nashensemble/https://www.imdb.com/name/nm1455332/Le Nash EnsembleMembers Of The Nash EnsembleNash EnsembleThe Nash Ensemble Of LondonSimon LimbrickLaura SamuelTristan FryPhilip DukesRoger ChaseJohn PigneguyFrank LloydLucy WakefordPhilippa DaviesRichard WatkinsRebecca GilliverJames Watson (2)Mark Van De WielCorin LongDavid PurserMoray WelshChristopher Van KampenMarcia CrayfordJeremy Williams (2)Gareth HulseMichael Collins (3)Richard HosfordBenjamin NabarroMark DavidElizabeth WexlerTim HughJudith PearceJohn Wallace (4)Ian Brown (4)Duncan McTierBryn LewisCatherine EdwardsLaurence DaviesNick ReaderMichael Harris (6)Annabelle MearePaul Watkins (3)Terry JohnsDenzil FloydMarianne ThorsenBrian WightmanElizabeth LaytonClifford BensonGordon LaingMalin BromanLawrence Power (2)David Adams (9)Adrian BrendelJonathan Stone (4)Ursula LeveauxLeo Phillips (2)Kenneth Essex (2) + +851242Judith PearceClassical flutist, a New York resident since 1985, and former teacher at Princeton University.CorrectThe New Music ConsortFires Of LondonThe Nash EnsembleThe Pierrot Players + +851310Ruggero RaimondiItalian Bass-baritone opera singer. He was born 3 October 1941 in Bologna, Italy.Needs Votehttp://www.zsu.it/rr/index.htmlhttps://en.wikipedia.org/wiki/Ruggero_RaimondiR. RaimondiRaimondiRuggero RaimonidRuggiero RaimondiRugiero RaimondiРуджеро Раймондиルッジェロ・ライモンディルッジェーロ・ライモンディ + +851312Josephine VeaseyBritish mezzo-soprano +Born: 10th July 1930 London, England +Died: 22nd February 2022 +Renowned for Wagner and Berlioz roles.Correcthttp://en.wikipedia.org/wiki/Josephine_Veaseyhttps://www.imdb.com/name/nm0891540/Josephine VeasyJoséphine VeaseyVeaseyДжозефина Визи + +851344Erich KunzAustrian operatic baritone (* 20 May 1909 in Vienna, Austro-Hungary; † 08 September 1995 in Vienna, Austria).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_K/Kunz_Erich.xmlhttps://adp.library.ucsb.edu/names/354632E. KunzE.KuntzErich Kunz Mit SchrammelbegleitungErich Kunz, Bass-BaritoneKammersänger Erich KunzKunzЕрих КунцЭ. КунцWiener Staatsopernchor + +851419Renata ScottoItalian soprano, opera director and academic +Born: 24th February 1934 Savona, Italy +Died: 16th August 2023 Savona, ItalyNeeds Votehttps://it.wikipedia.org/wiki/Renata_Scottohttps://en.wikipedia.org/wiki/Renata_Scottohttps://www.imdb.com/name/nm0780015/R. ScottoR.ScottoRenata ScottRenata Scotto 𝘍𝘢𝘯𝘯𝘺Renata Scotto E DettiRenata ScottováRenata SkotoRenate ScottoRenato ScottoScottoΡενάτα ΣκόττοΣκόττοР. СкотоРената Скоттоレナータ・スコット + +851652Paul SalamunovichAmerican vocalist, choral conductor and educator. +Born June 7, 1927, Redondo Beach, California. +Died April 3, 2014 (86 years of age). +He was the Music Director of the Los Angeles Master Chorale from 1991 to 2001 and its Music Director Emeritus from 2001 until his death in 2014. He served as Director of Music at St. Charles Borromeo Church in North Hollywood, California, for 60 years between 1949 and 2009. +He was acknowledged as an expert in Gregorian chant and has long been recognized for his contributions in the field of sacred music. he received a Grammy nomination for recording of "Lux Aeterna" and other choral works by Morten Lauridsen 1997. +He was one of the quartet of Stan Kenton's vocal group, [i]The Modern Men[/i] who sang on Kenton's album, "Kenton With Voices" in 1957.Needs Votehttps://en.wikipedia.org/wiki/Paul_Salamunovichhttps://www.imdb.com/name/nm0757536/https://www.facebook.com/groups/18236802193/Mr. Paul SalamunovichP. SalamunovichPaul F. SalamunovichPaul SalamunovitchPaul SolamunovichThe Roger Wagner ChoraleThe Modern Men + +852031Douglas WhittakerAustralian classical flautistCorrectLondon Philharmonic OrchestraBBC Symphony Orchestra + +852148Wolfram StrasserWolfram StraßerGerman hornist, born 28 October 1971 in Erlangen, Germany.CorrectWolfram StraßerDresdner SinfonikerGewandhausorchester LeipzigArmonia Ensemble + +852160Markus HötzelGerman tuba player, born 29 December 1971 in Hückeswagen, Germany.Needs VoteStaatskapelle DresdenRundfunk-Sinfonieorchester SaarbrückenBrass PartoutNDR SinfonieorchesterMelton Tuba QuartettNDR Elbphilharmonie Orchester + +852161Lisa OutredAustralian oboist and Cor anglais player. Now based in Germany.CorrectMünchner PhilharmonikerStuttgarter KammerorchesterBruckner Orchestra LinzEssener Philharmoniker + +852178Victor MeisterGerman classical cellistCorrectDresdner Philharmonie + +852179Tilmann BaubkusGerman violistCorrectTilman BaubkusDresdner Philharmonie + +852188Fritz KetschauGerman hornistNeeds VoteDresdner Philharmonie + +852196Henriette-Luise NeubertGerman cellist, born 11 November 1969 in Nordhausen, GDR (today Germany).Needs VoteGewandhausorchester LeipzigLeipziger Klavierquartett + +852202Wolfgang HentrichProf. Wolfgang HentrichGerman violinist, conductor and university lecturer (* 1966 in Radebeul, Germany).Needs Votehttps://www.dresdnerphilharmonie.de/orchester/erste-violinen/wolfgang-hentrichhttps://www.musikschulen.de/dsp/orchester/dirigent/index.htmlhttps://www.beethovenfest.de/de/programm/kuenstler/wolfgang-hentrich/Prof. Wolfgang HentrichDresdner PhilharmonieDeutsche Streicherphilharmonie + +852208Philipp BeckertGerman violinist, born in 1967 in Radebeul, GDR.Needs VoteФилип БекерRundfunk-Sinfonieorchester BerlinDresdner PhilharmonieT.E.C.C. QuartetEast Side Oktett + +852221Steffen GaitzschSteffen Gaitzsch (born 1954) is a German violinist and composer. He was a member of the [a854918] from 1979 to 2020.Needs VoteDresdner Philharmonie + +852344Gerhard HellwigGerman chorus master, conductor and founder of the [a=Schöneberger Sängerknaben], born 17 July 1925 in Berlin, Germany and died 15 January 2011 in Berlin, Germany. He was married to [a=Janis Martin] (divorced).Correcthttp://de.wikipedia.org/wiki/Gerhard_HellwigDirigent Gerhard HellwigG. HeillwigG. HellwigGerh. HellwigGerhart HellwigHellwigSchöneberger Sängerknaben + +852345Gerhard StolzeGerman tenor (October 1, 1926, Dessau – March 11, 1979, Garmisch-Partenkirchen).Correcthttp://en.wikipedia.org/wiki/Gerhard_StolzeG. StoltzG. StolzeGerard StolzeStolzeГ. ШтольцеГерхард Штольце + +852384Paul TortelierPaul TortelierFrench cellist, composer and (later in life) conductor, born 21 March 1914 in Paris, France, died 18 December 1990 in Chaussy, France. Husband of [a6469254] (his second wife). Father of [a=Yan Pascal Tortelier] and [a1264904]. Teacher of [a846290] for seven years.Needs Votehttps://en.wikipedia.org/wiki/Paul_TortelierP. TortelierPaulPaul TotelierTortelierП. ТортельеПоль Тортельеポール・トルトゥリエ + +852386Orchestre De Chambre De ToulouseChamber orchestra based in the French city of Toulouse that was founded in 1953 by Louis Auriacombe. It is comprised of twelve string solists.Correcthttp://www.orchestredechambredetoulouse.fr/Chamber Orchestra Of ToulouseChamber Orchestra of ToulouseGrand Orchestre De Chambre De ToulouseKamerorkest Van ToulouseKamerorkest van ToulouseKammerorchester von ToulouseOrch. De Chambre De ToulouseOrchestre De Chambre National De ToulouseOrchestre De Chambre de ToulouseOrchestre National De Chambre De ToulouseOrchetre de Chambre National de ToulouseOrquesta De Camara De ToulouseOrquesta De Cámara De ToulouseOrquestra de Camera De ToulouseThe Orchestre De Chambre De ToulouseThe Toulouse Chamber OrchestraToulose Chamber OrchestraToulouse Chamber OrchestraToulouse Chamber Orchestra, TheToulouse National Chamber OrchestraToulousen KamariorkesteriToulouses KammarorkesterToulouses KammerorkesterКамерный оркестр г. Тулузыトゥールーズ室内管弦楽団Ivry GitlisEtienne LarratVincent GervaisPatrick LapèneMichel DebostSerge CollotGérard JarryLily LaskineGeorges ArmandAlbert CalvayracGilles ColliardNabi CabestanySabine Tanguy-RheinAnaïs HolzmannAnne GaurierNicolas KononovitchAna SanchezJean CrosGaston AdoleGeorges MichonGilbert VoisinLéon LacourCarlos Vizcaíno GijónAudrey DupontAudran Bournel-BossonJennifer SabiniVirginie ResmanAurelie Fauthous + +852433Herbert TacheziAustrian organist, harpsichordist and composer (* 12 February 1930 in Wiener Neustadt/NÖ, Austria, † 09 December 2016 in Klosterneuburg/NÖ, Austria). +He's the father of [a1476025], [a1957749], and [a1476044] and the brother of [a2296405]. + +Needs Votehttps://www.musiklexikon.ac.at/ml/musik_T/Tachezi_Herbert.xmlhttps://de.wikipedia.org/wiki/Herbert_Tachezihttps://www.mdw.ac.at/797/Herbert TazechiTacheziConcentus Musicus Wien + +852439Erik WinkelmannErik WinkelmannDutch double bass player. +Studied philosophy and music science and got his degree for solo double bass at the Sweelinck Conservatorium Amsterdam. +Needs VoteE. WinkelmanE. WinkelmannErikErik WinkelmanMetropole OrchestraNieuw Sinfonietta Amsterdam + +852508Charles FullbrookCharles FullbrookClassical percussionist.Needs Votehttps://www.feenotes.com/database/artists/fullbrook-charles/Charles FulbrookCharles FullbrokCharles FullbrookeCity Of London SinfoniaEnglish Chamber OrchestraThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe Carnival BandThe King's ConsortRetrospect Ensemble + +852526Ueli WigetUeli Wiget (born in Winterthur, 1957) is a Swiss pianist, harpsichordist and harpist, since 1986 he is a member of the Ensemble Modern, a chair he combines with an international concert career.Needs Votehttps://en.wikipedia.org/wiki/Ueli_WigetUli WigetEnsemble ModernEnsemble Modern Orchestra + +852528Catherine MillikenCatherine MillikenCathy Milliken is an Australian oboist, composer, freelance creative director and educational consultant who currently lives in Berlin. After majoring in piano and oboe in Australia, Catherine moved to Europe and continued her training with [a=Heinz Holliger] and [a=Maurice Bourgue]. She was a founding member of the renowned contemporary music group [a=Ensemble Modern] and collaborated with many prominent composers and conductors, such as [a=Pierre Boulez], [a=Peter Eötvös], [a=Frank Zappa], [a=György Ligeti] and [a=Karlheinz Stockhausen]. + +She has written music for theater, opera, radio, and film projects, commissioned by [a=Staatskapelle Berlin], [a=Das Orchester Des Staatstheaters Darmstadt], [l=ZKM], [l=CCMIX], [l=Deutschlandfunk], [a=Concerto Köln], South Bank Centre London, and the Experimental Electronic Studio of Freiburg. Her [i]Earth Plays[/i] was premiered by the [a=Symphonie-Orchester Des Bayerischen Rundfunks] as a part of [l=Musica Viva (2)] in December of 2015. In collaboration with [a=Dietmar Wiesner] and [a=Hermann Kretzschmar], Cathy established [a=HCD Productions] group. + +Milliken served as a director of the Education Program of [a=Berliner Philharmoniker] from 2005 to 2012. As a distinguished creative director, she has been organizing events in South and North Africa, Japan, and Israel. Cathy is also an honorary member of advisory boards for the German Music Council and [l=Goethe-Institut] and works on the creative team of the Munich Biennale for Music Theatre (2016).Needs Votehttps://www.cathymilliken.com/https://soundcloud.com/cathy-millikenhttps://www.australianmusiccentre.com.au/artist/milliken-cathyCathy MillikenEnsemble ModernHCD ProductionsEnsemble Modern Orchestra + +852529Michael KlierViola player.Needs VoteM. KlierNieuw Sinfonietta AmsterdamMondriaan StringsTrytten StringsEastPark Strings + +852530William FormanAmerican trumpet player, born in 1959 in New York City. He moved to Europe in 1981, where he was principal trumpet with various orchestras, from 1990 to 2001 he was a member of the Frankfurt Ensemble Modern. In 1994 he was appointed Professor for Trumpet at the Academy of Music Hanns Eisler in Berlin.Needs Votehttp://www.williamforman.deWilliam FormannEnsemble ModernEnsemble Modern OrchestraThunder Music Ensemble + +852531Mathias TackeGerman classical violinist, originally from Bremen, from 1983 to 1992 he was a member of the Ensemble Modern, he currently is professor of violin and chamber music at the Northern Illinois University School of Music.Needs VoteEnsemble ModernVermeer QuartetCamerata ChicagoChicago Philharmonic + +852703Arrigo BoitoEnrico Giuseppe Giovanni BoitoItalian composer. +Born: February 24, 1842, Padua, Italy. +Died: June 10, 1918, Milan, Italy.Needs Votehttps://en.wikipedia.org/wiki/Arrigo_Boitohttps://it.wikipedia.org/wiki/Arrigo_Boitohttps://www.britannica.com/biography/Arrigo-Boitohttps://www.bach-cantatas.com/Lib/Boito-Arrigo.htmhttps://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/arrigo-boitohttps://www.imdb.com/name/nm0092435/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102666/Boto_ArrigoA. BoitoA. BoïtoA.BoitoArrigoArrigo Boito ("Tobia Gorrio")Arrigo BoitolArrigo BoltoArrigo BoïtoArrigo BoϊtoArrígo BoitoBoiteBoitoBoitsBoltoBositoBoïtoBoϊtoBoїtoBöitoTobia Gorio (Arrigo Boito)А. БоитоА. БойтоА.БойтоАрриго БойтоБойтБойтоTobia Gorrio + +852709Orchestre National De L'Opéra De ParisOrchestra of the Opéra de Paris (was at Palais Garnier, now Opéra Bastille since 1989, while Palais Garnier remains dedicated to ballet) +For the chorus, please use [a1361024] +Also appears as: Orchestre Du Théâtre National De L'Opéra De Paris >> not to be confused with [a3348123].Needs Votehttps://www.operadeparis.fr/artistes/orchestre-et-choeurs/orchestrehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/354665/Opera_de_Paris_Orchestrehttps://en.wikipedia.org/wiki/Orchestre_de_l'Op%C3%A9ra_national_de_ParisA Párizsi Nagy Opera Ének- És ZenekaraArtistes De L'OpéraArtistes, Chœurs Et Orchestre Du Théâtre National De L'OpéraArtistes, Orchestre De L'OpéraBastille Opera & ChorusChoeur Et Orchestre Philharmonique De ParisChoeur Et Orchestre Philharmonique ParisChoeurs Et Orchestre De L'opéra National De ParisChoeurs Et Orchestre Du Théâtre National De L' OpéraChoeurs Et Orchestre Du Théâtre National De L' Opéra,Choeurs Et Orchestre Du Théâtre National De L'OpéraChoeurs Et Solistes De L'OrchestreChoeurs et Orchestre Du Théâtre National De L'Opéra De ParisChoeurs et Solistes De L'Orchestre Du Théâtre National De L'OpéraChorus & Orchestra Of The Paris OperaChorus & Orchestra Of The Théâtre National De L'Opéra, ParisChorus And Orchestra Of The Paris OperaChorus And Orchestra Of The Theatre National De L'OpéraChorus Of The Paris OperaChœur Et Orchestre De L'Opéra De ParisChœur Et Orchestre Du Théâtre National De L'Opéra De ParisChœursChœurs & Orchestre Du Théâtre National de L’OpéraChœurs Et Orchestre De L'Opéra De ParisChœurs Et Orchestre Du Théatre National De L'OpéraChœurs Et Orchestre Du Théâtre National De L'OpéraChœurs Et Orchestre Du Théâtre National De L'Opéra De ParisChœurs Et Orchestre Du Théâtre National De L'Opéra ParisChœurs Et Orchestre Du Théâtre National De l'Opéra De ParisChœurs Et Solistes De L'Orchestre Du Théâtre National De L'OpéraChœurs Et Solistes De L'Orchestre Du Théâtre National De L'Opéra De ParisChœurs et Solistes De L'Orchestre Du Théâtre National De L'OpéraDas Orchester Des "Théâtre National De L'Opéra" ParisDas Orchester Des "Théâtre National De L'Opéra", ParisDas Orchester Des Theatre National De L'Opera, ParisDas Orchester des Theatre National De L'Opéra, ParisDu Theatre National L'Opera De ParisDu Théatre National L'Opéra De ParisDu Théâtre National De L'OpéraKoor En Orkest Van Het Theatre National Van ParijsL' Orchestre National De L'OpéraL'OpéraL'Orchestra Du Theatre National De L'Opera De ParisL'OrchestreL'Orchestre De L'Opéra De ParisL'Orchestre De Théâtre National De L'Opéra De ParisL'Orchestre Du Theatre National De L'OperaL'Orchestre Du Theatre National De L'Opera De ParisL'Orchestre Du Theatre National De L'Opéra De ParisL'Orchestre Du Théatre National De L'OpéraL'Orchestre Du Théatre National De L'Opéra De ParisL'Orchestre Du Théàtre National De L'Opéra De ParisL'Orchestre Du Théâtre National De L'OpéraL'Orchestre Du Théâtre National De L'Opéra De ParisL'Orchestre Du Théâtre National De L'Opéra, ParisL'Orchestre Du Théâtre National de L'OpéraL'Orchestre Et Les Chœurs De L'Opera National De ParisL'Orchestre National De L'Opéra De ParisL'Orchestre National de L'Opera de ParisL'Orchestre du Théâtre National de l'Opéra, ParisL'orchestre Du Théâtre National De L'Opéra, ParisL'orchestre National De L'OpéraLes Chœurs Et L'Orchestre De L'Opéra De ParisLes Musiciens De L'Orchestre National De L'OpéraLes Solistes De L'Opéra De ParisLes Solistes De L'Orchestre Du Théatre National De L'Opéra De ParisNational Paris Opera OrchestraNational Theatre Orchestra Of The Paris OperaNationaloper ParisOpera Di ParigiOpera Orchestra Of ParisOpéra De ParisOpéra National De ParisOrch. Du Thèâtre National De L'opéra De ParisOrch. National De L'Opéra De ParisOrch. Of The Theatre National De L'Opéra (Paris)Orch. du Théâtre National de l'OpéraOrchesrte De L'Opera National De ParisOrchest Orchestre Du Théâtre National De L'Opéra De ParisOrchester Der National-Oper ParisOrchester Der Nationaloper ParisOrchester Des "Theatre National De L'Opera", ParisOrchester Des "Theatre National De l'Opéra" ParisOrchester Des Theatre National De L'OperaOrchester Des Théâtre National De L' Opéra ParisOrchester Des Théâtre National De L' Opéra, ParisOrchester Des Théâtre National De L'Opéra, ParisOrchester Opéra de ParisOrchester des "Théâtre National de L'Opéra", ParisOrchester des Théâtre National De L'Opéra De ParisOrchestersolisten Des "Théâtre National De L'Opéra", ParisOrchestraOrchestra And Chorus Of The Paris National OperaOrchestra And Chorus Of The Paris OperaOrchestra And Chorus Of The Theatre National De L'Opera ParisOrchestra And Chorus Of The Théâtre National De L'OpéraOrchestra And Chorus Of The Théâtre National De L'opéraOrchestra De L'Opera De Paris, TheOrchestra De L'Opéra De ParisOrchestra De Opera ParisOrchestra Del Teatro Nazionale Dell'Opera Di ParigiOrchestra Del Teatro Nazionale Dell'Opera, ParigiOrchestra Del Teatro Nazionale Dell'opera di ParigiOrchestra Del Théâtre National De L'Opéra Di ParigiOrchestra Dell' Opera Di ParigiOrchestra Dell'Opera De ParisOrchestra Dell'Opera Di ParigiOrchestra Dell'Opera di ParigiOrchestra Dell'Opèra De ParisOrchestra Dell'Opéra de ParisOrchestra Du Theatre National de L'Opera de ParisOrchestra Du Thèâtre National De L'Opéra De ParisOrchestra Du Théatre National De L'OpéraOrchestra Du Théâtre National De L'Opera De ParisOrchestra Du Théâtre National De L'Opéra De ParisOrchestra EOrchestra From The Paris OperaOrchestra Nazionale Di ParigiOrchestra Of The Paris OperaOrchestra Of The National Opera Of ParisOrchestra Of The Opera National De ParisOrchestra Of The Opera, ParisOrchestra Of The Opéra National De ParisOrchestra Of The Opéra Of ParisOrchestra Of The Paris National OperaOrchestra Of The Paris OperaOrchestra Of The Paris Opera, TheOrchestra Of The Paris OpéraOrchestra Of The Theatre National De L'OperaOrchestra Of The Theatre National De L'Opéra ParisOrchestra Of The Théatre National De L'Opéra (Paris)Orchestra Of The Théatre National De L'Opéra ParisOrchestra Of The Théatre National de L'OperaOrchestra Of The Théàtre National De L'Opéra De ParisOrchestra Of The Théàtre National L'Opera de ParisOrchestra Of The Théátre National De L'OpéraOrchestra Of The Théâtre De L'Opéra - ParisOrchestra Of The Théâtre National De L'OperaOrchestra Of The Théâtre National De L'OpéraOrchestra Of The Théâtre National De L'Opéra De ParisOrchestra Of The Théâtre National De L'Opéra, ParisOrchestra Of The Théâtre National De L'opéraOrchestra Of The Théâtre National De l'OpéraOrchestra Of Theatre Nationale De L'Opera ParisOrchestra Of Théâtre National De L'Opéra de ParisOrchestra dell’Opera di ParigiOrchestra du Thèâtre National De L'Opéra De ParisOrchestra du Théatre National de l'Opéra de ParisOrchestra of the National Opera of ParisOrchestra of the Opera of ParisOrchestra of the Paris National OperaOrchestra of the Paris OperaOrchestra of the Théatre National de l'OpéraOrchestra of the Théâtre National de l'Opéra, ParisOrchestra of the Théâtre National de la OpéraOrchestra, Brass Choir And Chorus Of The Théâtre National De L'Opéra, ParisOrchestra, Brass Choir And Chorùs Of Théâtre National De L'Opera. ParisOrchestra, Paris Opera National TheatreOrchestra, Theatre National De L'Opera De ParisOrchestral Soloists From The Paris OperaOrchestreOrchestre Du Théâtre National De L'OpéraOrchestre De L'Opera De ParisOrchestre De L'OpéraOrchestre De L'Opéra De ParisOrchestre De L'Opéra National De ParisOrchestre De L'Opéra National De LyonOrchestre De L'Opéra National De ParisOrchestre De L'Opéra National de ParisOrchestre De L'Opéra Nayional De ParisOrchestre De L'Opéra ParisOrchestre De L’OpéraOrchestre De Théâtre National De L'OperaOrchestre De Théâtre National De L'Opéra De ParisOrchestre Du National De L'Opéra, ParisOrchestre Du Teatre National De L'Opéra De ParisOrchestre Du Theatre National De L'OperaOrchestre Du Theatre National De L'Opera De ParisOrchestre Du Theatre National De L'Opera ParisOrchestre Du Theatre National De L'Opera, ParisOrchestre Du Theatre National De L'OpéraOrchestre Du Theatre National De L'Opéra De ParisOrchestre Du Theatre National De L'Opéra, ParisOrchestre Du Theatre National De L'Opéra-ComiqueOrchestre Du Theatre National De L'operaOrchestre Du Theatre National De L’Opera De ParisOrchestre Du Theatre National de l'OperaOrchestre Du Theatre NationalDe L'Opera De ParisOrchestre Du Theâtre National De L'Opera De ParisOrchestre Du Theâtre National De L'Opéra ParisOrchestre Du Thâtre National De L'Opéra De ParisOrchestre Du Thèátre National De L'Opéra ParisOrchestre Du Théatre National De L'OperaOrchestre Du Théatre National De L'Opera De ParisOrchestre Du Théatre National De L'OpéraOrchestre Du Théatre National De L'Opéra De ParisOrchestre Du Théatre National De L'Opéra de ParisOrchestre Du Théatre National De l'OperaOrchestre Du Théatre National de L'Opera ParisOrchestre Du Théatre National de L'Opéra ParisOrchestre Du Théàtre National De L'OpéraOrchestre Du Théàtre National De L'Opéra De ParisOrchestre Du Théâtre De L'OpéraOrchestre Du Théâtre De L'Opéra De ParisOrchestre Du Théâtre National De L' OpéraOrchestre Du Théâtre National De L' Opéra De ParisOrchestre Du Théâtre National De L' Opéra ParisOrchestre Du Théâtre National De L'OperaOrchestre Du Théâtre National De L'Opera De ParisOrchestre Du Théâtre National De L'Opera, ParisOrchestre Du Théâtre National De L'OpéraOrchestre Du Théâtre National De L'Opéra De ParisOrchestre Du Théâtre National De L'Opéra ParisOrchestre Du Théâtre National De L'Opéra de ParisOrchestre Du Théâtre National De L'Opéra, ParisOrchestre Du Théâtre National De L'operaOrchestre Du Théâtre National De L'opéraOrchestre Du Théâtre National De L'opéra De ParisOrchestre Du Théâtre National De L’OpéraOrchestre Du Théâtre National De L’Opéra De ParisOrchestre Du Théâtre National De ParisOrchestre Du Théâtre National De l'Opéra De ParisOrchestre Du Théâtre National de L'OpéraOrchestre Du Théâtre National de L'Opéra De ParisOrchestre Du Théâtre National de L'Opéra de ParisOrchestre Du Théâtre National de L’Opéra de ParisOrchestre Du Théâtre National de ParisOrchestre Du Théâtre National de l'OpéraOrchestre Du Théâtre National de l'Opéra de ParisOrchestre Du Théâtre National de l´OpéraOrchestre Du Théâtre National de l’Opéra de ParisOrchestre Du Théâtre Nationale De L'Opéra De ParisOrchestre Du Théâtre Nationale De L'Opéra ParisOrchestre Du Thêatre National De L'Opéra De ParisOrchestre Du Téâtre National De L'Opéra De ParisOrchestre DuThéatre National De L'Opera De ParisOrchestre Et Choeur De L'Opéra De ParisOrchestre Et Choeurs Du Théâtre National De L'Opéra De ParisOrchestre Et Choeurs Du Théâtre National De L'Opéra De ParisOrchestre Et Chœur Du Théâtre National De L'OpéraOrchestre Et Chœurs De L'Opéra de ParisOrchestre Et Chœurs Du Théatre National De L'OpéraOrchestre Et Solistes Du Théâtre National De L'Opéra De ParisOrchestre National De L'Opera De ParisOrchestre National De L'OpéraOrchestre National De L'Opéra Di ParigiOrchestre National De L'Opéra ParisOrchestre National Du Theatre De L'Opéra De ParisOrchestre National Du Théatre De L'Opéra De ParisOrchestre National Du Théâtre De L'OpéraOrchestre National Du Théâtre De L'Opéra De ParisOrchestre National Du Théâtre De L'Opéra, ParisOrchestre National Du Théâtre National de L'Opera ParisOrchestre National ParisOrchestre National de ParisOrchestre National du Théâtre National de l'Opera ParisOrchestre Of The Theatre National De L'Opéra, ParisOrchestre Of The Théatre National De L'Opéra, ParisOrchestre Of The Théâtre National De L'Opéra (Paris)Orchestre Of The Théâtre Nationale De L'Opéra, ParisOrchestre Symphonique De L'Opéra De ParisOrchestre Symphonique De L'Opéra NationalOrchestre Théatre National De L'opéra De ParisOrchestre Théâtre National De L'Opéra De ParisOrchestre Théâtre National Opéra De ParisOrchestre de L'Opera National de ParisOrchestre de L'Opera de ParisOrchestre de L'Opéra De ParisOrchestre de L'Opéra National de ParisOrchestre de L'Opéra de ParisOrchestre de L'opéra de ParisOrchestre de L’Opéra National de ParisOrchestre de l'Opera ParisOrchestre de l'Opera, Palais GarnierOrchestre de l'Opéra National de ParisOrchestre de l'Opéra de ParisOrchestre du Theatre National De L'Opéra De ParisOrchestre du Theatre National de l'OperaOrchestre du Theâtre National De L'Opéra ParisOrchestre du Théatre National de l'OperaOrchestre du Théatre National de l'Opera de ParisOrchestre du Théatre National de l'OpéraOrchestre du Théatre National de l'Ópéra de ParisOrchestre du Théâtre National De L'Opéra De ParisOrchestre du Théâtre National de L'OpéraOrchestre du Théâtre National de L'Opéra de ParisOrchestre du Théâtre National de l'Opera ParisOrchestre du Théâtre National de l'OpéraOrchestre du Théâtre National de l'Opéra ParisOrchestre du Théâtre National de l'Opéra de ParisOrchestre du Théâtre National de l'Opéra, ParisOrchestre du Théâtre National de l’Opéra de ParisOrchestre du Théâtre de L'Opéra de ParisOrchestre du Théâtre de l'Opéra de ParisOrchestre du Théâtre national de l'Opéra de ParisOrchestre et Chœurs de L'Opéra De ParisOrchestre, Chœurs du Théâtre National de L'OpéraOrchestre, Fanfare Et Choeurs Du Théâtre National De L'OpéraOrchestre, Fanfares et Chœurs du Théâtre National de L'OpéraOrk. SymfonicznaOrkest Van Het Théatre National De L'Opera Te Parijs'Orkest v.h. Théâtre National de l'Opera De ParisOrkestar National De L'OperaOrkestar Pariske Nacionalne OpereOrkestar Pariške Nacionalne OpereOrkestar Théâtre National De L'OpéraOrquestaOrquesta De La Opera De ParisOrquesta De La Opera De ParísOrquesta De La Ópera De ParisOrquesta Del Teatro De ParisOrquesta Del Teatro Nacional De La Opera De ParisOrquesta Del Teatro Nacional De La Opera, ParisOrquesta Del Teatro Nacional De La ÓperaOrquesta Del Teatro Nacional De La Ópera De ParísOrquesta Del Teatro Nacional de la Opera FrancesaOrquesta Del Teatro Nacional de la Opera, ParísOrquesta Nacional De La Ópera De ParísOrquesta de la Opera Nacional de ParisOrquesta de la Opera de ParisOrquesta del Teatro Nacional de la Ópera, ParísOrquesta del Théâtre National de l'Opéra de ParísP.O.Paris National OperaParis National Opera BalletParis National Opera OrchestraParis OperaParis Opera Chorus & OrchestraParis Opera ComiqueParis Opera National OrchestraParis Opera Orch.Paris Opera OrcheatraParis Opera OrchestraParis Opera Orchestra & ChorusParis Opera Orchestra And ChorusParis Opera Orchestra and ChorusParis Opera Orchestra, TheParis Operas KorParis Opèra OrchestraParis OpéraParis Opéra Chorus & OrchestraParis Opéra OrchestraParis Opéra-Comique OrchestraParis Theatre OrchestraPariser OpernorchesterPro Arte String OrchestraSolistes De L'Orchestre De L'Opéra National De ParisSolistes De L'Orchestre Du Théâtre National De L'Opéra De ParisSolistes, Chœurs Et Orchestre De L'Opéra De ParisSoloists From L'Orchestre De L'Opéra National De ParisSoloists Of The Opéra National De ParisSoloists Of The Orchestre Du Théâtre National De L'Opéra, ParisSoloists of Opéra de ParisSoloists, Chorus And Orchestra Of The Théâtre National De L'OpéraSoloists, Chorus, And Orchestre Du Théâtre National De L'Opéra, ParisSymphonie-OrchesterThe "Orchestre National", ParisThe Opera Orchestra Of ParisThe OrchestraThe Orchestra De L'Opera De ParisThe Orchestra De L'Opéra De ParisThe Orchestra Of Paris National OperaThe Orchestra Of The Paris OperaThe Paris OperaThe Paris Opera OrchestraThe Paris Theatre OrchestraTheatre National De L'Opera, ParisThéatre National De L'Opera De ParisThéâtre National De L'OpéraThéâtre National De L'Opéra Chorus And OrchestraThéâtre National De L'Opéra De ParisThéâtre National De L'Opéra ParisThéâtre National De L'Opéra, ParisThéãtre National De L'OpéraThéãtre National De L'Opéra Parischorus of the Orchestre De ParisНационални Оркестар Из ПаризаОркестр Парижской ОперыХор И Оркестр Парижской Оперыパリオペラ座管弦楽団パリ・オペラ座管弦楽団パリ国立オペラ座管弦楽団パリ国立歌劇場管弦楽団国立歌劇場管弦楽団Orchestre De L'Opéra BastilleChristine LagnielChristophe GuiotYves ChabertYves FavreHubert VarronPaul HadjajeVéronique MarcelElisabeth PallasBruno MartinezPierre ChevalEric LacroutsCyrille LacroutsJacques TysRoger DelmotteSerge CollotMaxence LarrieuDaniel BreszynskiClément GarrecAndré NavarraPierre PierlotNoëlle SantosMichèle DeschampsChristian LormandHelga GudmundsdottirMarie-Hélène ClausseAlain PersiauxLaurent PézièresVincent LaurentLaurent PhilippEtienne TavitianKlodiana SkenderiMathieu RoguéSylvain Le ProvostAlexandre PelovskiHélène Perrat-LaroqueCécile BreyGilbert AudinJeanne Lancien MondonArnaud NuvoloneJérôme VerhaegheCatherine CantinHervé le FlochFrancis AubierCatherine MichelCarole Saint MichelDaniel MarillierAgnes CrepelOlivier GrimoinAlexis DescharmesVladimir DuboisClaude LefebvreFrancois LeleuxBruno KrattliJérôme LefrancBruno FlahouNora CismondiLuc RousselleLudovic BallaStéphane GaraffiMichel BecquetJean François VerdierLaurent VerneyBruno NouvionLouis GuilbertChristophe GrindelPhilippe NoharetThierry HuchinEric Vernier (2)Annie ChallanRené BrissetAnne-Aurore AnstettDiederik SuysMarianne LagardeJean-Louis ForestierJonathan NazetMaurice AllardVanessa JeanDoriane GableJean-Michel LenertFrédéric LaroqueGenevieve SimonotPierre MartelRémi BreyAnne RegnierFrédéric ChatouxNathalie GaudemerJean-Charles MoncieroKarine AtoNicolas CharronPierre NeriniJacques AdnetMagali ButtinAnne ScherrerFrançois HarmelleSophie MaurelLaurent LefèvreFrançois CagnonMaxime TholanceRoland PidouxPhilippe BreasMarc LatarjetJean-Pierre SabouretThibault VieuxRomain GuyotCyril GhestemAurélien SabouretLudovic DutriezAlexis RojanskiAxel SallesJean RaffardPierre LenertJérémy BourréAlain NoëlPierre DumailGaston MarchesiniEric AubierLouis GromerJean-Baptiste LeclèreDamien PetitjeanSylvie SentenacMisha CliquennoisClaude DambrineAlice ErteDavid DefiezFabien WallerandEmmanuel CeyssonGuillaume VarupenneCéline NessiNicolas ValladeFrédéric PotierCatherine Leroy (2)Christian DufourDidier VéritéThierry BarbéAlexandre ChabodFlorence RoussinBenjamin ChareyronPierre TurpinKeiko InoueMichel NguyenPhilippe PoncetSylvie DukaezMarion DesbrueresTatiana UhdeClara StraussFrançois EtienneLudovic TissusHenry MerckelKatarzyna Alemany-EwaldStéphane CaussePhilippe CuperDominique GuérouetJean-Yves SebillotteYue Zhang (2)Helene RoblinPhilippe BaryPierre MoraguèsAlexis DemaillyPierre Gillet (2)Marc GeujonFrançois Bodin (2)Philippe Feret (2)Vincent PenotAmandine DehantGloria GashiJean-Christophe GrallJean-Claude MontacSylvie PerretPascal ClarhautJacques ChirinianJean-François HattonGiorgi KharadzeGuillaume BégniCédric LaroqueMarion DuchesneChristophe VellaLionel PostollecEric WatelleFranck AubinCécile TêteÉmilie BelaudCyrille RoseOlivier RoussetEun-Hee JoeDavid LootloetSabrina MaaroufiGenevieve MeletPhilippe GiorgiIsabelle Pierre (2)Lise MartelTsuey-Ying TaiCarolyn Kalhorn-PeyrinYoori LeePhilippe AudinMarielle CaglioNicolas CambournacTatjana UhdeSolistes de L'Orchestre National de L'Opéra de ParisThomas Lefebvre (4) + +852710Feodor ChaliapinFeodor Ivanovich Chaliapin (February 13, 1873 - April 12, 1938) was a Russian opera singer with a large and expressive bass voice. His son Feodor Chaliapin Jr. was an actor.Needs Votehttp://en.wikipedia.org/wiki/Feodor_Chaliapinhttps://artmusiclounge.files.wordpress.com/2016/03/chaliapin-discography.pdfhttps://adp.library.ucsb.edu/names/101866ChaliapinChaliapineChapliapinF. ChaliapinF. I. ChaliapinF. I. SaljapinF. I. ShaliapinF. I. ShalyapinF. J. ChaliapineF. J. SchaljapinF. SaljapinF. ShalyapinF. ŠaliapinasFedor ChaliapineFedor SchaljapinFeodor ChaliapineFeodor ChaliapineFeodor ChaljapinFeodor Ivanovich ChaliapinFeodor SchaljapinFeodor ShaliapinFeodor ShalyapinFeodor SjaljapinFeodore ChaliapineFiodor ChaliapinFiodor Ivanovich ShalyapinFiodor ScialiapinFiodor ShalyapinFjodor Ivanovič ŠaljapinFjodor SchaljapinFjodor ŠaljapinFyodor ChaliapinFyodor I. ChaliapineFyodor Ivanovich ChaliapinFyodor Ivanovich ChalliapinFyodor ShalyapinFédor ChaliapineFéodor ChaliapineFéodor ChaliappineFëdor ŠalijapinMons. SchaljapinSaljapinSchaliapinSchaljapinTeodoro ChaliapinTeodoro ChaliapineTeodoro SchaliapinTeodoro SchaljapinTh. ChaliapineTheodor ChaliapinTheodor ChaliapineTheodore ChaliapineThéodore ChaliapineThéodore Chaliapine, BasseФ. И. ШаляпинФ. И. ШаляпинъФ. ШаляпинФ. ШаляпинаФ.И. ШаляпинФ.И.ШаляпинФ.ШаляпинФедор Иванович ШаляпинФедор ШаляпинФёдор ШаляпинШаляпинШаляпин Ф. И.Шаляпин Ф.И.ШаляпинъѲиодоръ Шаляпинъ + +852712George de GodzinskyFinnish pianist, composer, and conductor, born in St Petersburg, Russia (1914), died in Espoo, Finland (1994). Born in Russia, De Godzinsky escaped Russia with his family during the Russian revolution, settling down in Finland. He composed operettas, ballets, musicals, orchestral works and music for Finnish films. Conducted TV orchestras. Also an able light-entertainment musician, De Godzinsky conducted Finland's five first Eurovision Song Contest entries (1961-65).Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/06/george-de-godzinsky.htmlhttps://adp.library.ucsb.edu/names/107059D. de GodzinskyDe GodzinskyDe Godzinsky GeorgeDeGodzinskyDeGogzinskyG De GodzinskyG GG. De GodzinskyG. GedzinskyG. GodzinskyG. Godzinsky DeG. GotzinskyG. de CodzinskyG. de GodzinskiG. de GodzinskyG. de.GodzinskyG.de GodzinskyGeorg De GodzinskyGeorg de GodzinskyGeorge De GodzinskyGeorge DeGodzinskyGeorge GodzinskyGeorge de GodzinskyGeorge de Godzinsky & His MusicGeorge de Godzinsky SolisteineenGeorges de GodzinskyGodzinskyGodzinsky GeorgeJørgen Petersende GodzinskyJukka SaloRalf MielkJoe ManderGeorge De Godzinskyn YhtyeGeorge De Godzinskyn OrkesteriGeorge De Godzinsky Ja Hänen SolistiyhtyeensäGeorge De Godzinskyn Suuri Tanssiorkesteri + +852714Rosario BourdonJoseph Charles Rosario BourdonBorn March 6, 1885, Died April 24, 1961. He was a French Canadian cellist, violinist, conductor, arranger and composer.Needs Votehttp://en.wikipedia.org/wiki/Rosario_Bourdonhttps://adp.library.ucsb.edu/names/104771BourdonMr. Rosario BourdonR. BourdonRoberto BourdonRoger BourdonRosano BourdonRossario BourdonР. БурдонъРосарио БурдонThe Philadelphia OrchestraCincinnati Symphony OrchestraVictor Symphony OrchestraVenetian Trio + +852805Raymond DusteAmerican oboist and English horn player.Needs VoteRaymond DustéRaymond DustêSan Francisco SymphonyOakland Symphony OrchestraThe Chamber Orchestra Of Copenhagen + +852987Gábor LehotkaHungarian organist (Vác, 1938 - 2009). He made nearly fifty recordings on the [l=Hungaroton] label.Needs Votehttp://www.lehotkagabor.huG. LahotkaG. LehotkaGabor LehotkaGabor LethokaGabor LéhotkaLehotkaLehotka GáborГабор ЛехоткаLiszt Ferenc Chamber Orchestra + +852992Hans PischnerGerman harpsichordist and musicologist. He was born 20 February 1914 in Breslau, Germany (now Wrocław, Poland). Died 15 October 2016 in Berlin.Needs Votehttps://de.wikipedia.org/wiki/Hans_PischnerH. PischnerГанс ПишнерBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigKammerorchester Berlin + +853228Sven-Olof SandbergSven Olof SandbergSwedish journalist, lyricist, and both a singer for the main stream and for the opera during his life, popularly called SOS, born on 28 December 1905 in Stockholm, died on 20 August 1974 in Danderyd. + +In the later part of his life, Sven-Olof Sandberg was also given the opportunity to perform as a singer in the new TV media of the 1960s in Sweden. He had earlier had several, similar experiences as performer of soundtracks in different Swedish movies. He even tried to start a professional movie career as actor in 1923, but he soon gave up that idea. Sven-Olof Sandberg released his first recording in 1927. + +Sven-Olof Sandberg was married to [a2010226] between 1930 and 1941. From 1941 and until his death in 1974, he was married to [a1977076].Needs Votehttp://www.imdb.com/name/nm0761308/?ref_=fn_al_nm_1https://sok.riksarkivet.se/Sbl/Presentation.aspx?id=6334http://runeberg.org/vemarvem/sthlm62/1161.htmlhttp://sv.wikipedia.org/wiki/Sven-Olof_Sandberghttps://adp.library.ucsb.edu/names/104617DuvanFarbror Sven-OlofOlof SandbergS O SandbergS-O SandbergS-O. SandbergS. O SandbergS. O. S.S. O. SandbergS. O.- SandbergS. SandbergS. SuneS.-O SandbergS.-O. SandbergS.-O.SandbergS.O. SandbergS.O. SandebergS.O.S.S.O.SandbergSO SandbergSOSSOS.SandbergSandströmSvel Olof SandbergSven O. SandbergSven Olaf SandbergSven Olof SandbergSven Olov SandbergSven SandbergSven-Olaf SandbergSven-Olof Sandberg Med Ork.Sven-Olof Sandberg, Orkester & KörSven-Olov SandbergSvend Olof SandbergTom Wilson (13) + +853272John Taylor (15)John H. "Jackie" TaylorJohn H. "Jackie" Taylor, U.S. singer, songwriter.Needs VoteJ. TaylorJack TaylorJackie TaylorLaylorTaylorSharon VanselowThe Skyliners + +853392Pekka HelinPekka HelinFinnish bassist and singer. Born 1951 in Karhula, Finland.Needs VoteHelinP. HelinP.HelinSoulbrother HelinSoittokoneThe Islanders (5)Bamalama + +853477John Tomlinson (2)Sir John Rowland Tomlinson KB CBESir John Tomlinson (born 22 September, 1946 in Lancashire, England) is an English opera singer (bass). + +He studied at the Royal Manchester College of Music and with [a=Otakar Kraus]. He sings regularly with The Royal Opera and English National Opera and has sung with all the major British opera companies. He has also appeared in several festivals around the world, from Berlin to New York and Tokyo. + +In 1993, he won a Grammy Award for Bartok's Cantata Profana. He was made a Commander of the Order of the British Empire (CBE) in 1997 for his services to music and was knighted in the 2005 Queen's Birthday Honours List. +Needs Votehttp://www.johntomlinson.orgJohn TomlinsonSir John TomlinsonTomlinsonДжон Томлинсон + +853844Rodney FriendBritish classical violinist, concertmaster, conductor, pedagogue, and author. Born in 1939 or 1940 in Bradford, West Yorkshire, England, UK. +He studied at the [l527847]. He was Deputy Leader Violin with the [a=London Symphony Orchestra] (1962-1964). In 1964, he became the youngest ever Leader/Concertmaster of the [a=London Philharmonic Orchestra]. In 1975, he was invited by [a=The New York Philharmonic Orchestra] to be their Concertmaster. On his return to London, he became concertmaster of the [a=BBC Symphony Orchestra] and a professor and consultant of violin at the [l290263], where he formed and directed [b]The RCM String Ensemble[/b]. Later, he joined the faculty of the Royal Academy of Music as a Professor of Violin. In 1991, he formed [a=The Solomon Trio]. +He was appointed Member of the Order of the British Empire (MBE) in the 2015 New Year Honours for services to music.Needs Votehttps://www.rodneyfriend.co.uk/https://www.facebook.com/rodneyfriendviolinhttps://www.instagram.com/rodneyfriendviolin/https://www.youtube.com/c/RodneyFriendviolinhttps://music.apple.com/us/artist/rodney-friend/212606485http://en.wikipedia.org/wiki/Rodney_Friendhttps://www.ram.ac.uk/people/rodney-friendhttps://www.bearespublishing.com/rodney-friendhttps://www.imdb.com/name/nm1629995/London Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraNew York PhilharmonicThe Solomon TrioBath Festival Chamber OrchestraBath Festival OrchestraThe Friend - Solomon - Hugh Trio + +853955Ingegerd KierkegaardCarin Ingegerd KierkegaardSwedish classical viola player, born August 20, 1961.Needs VoteIngegerd KiergegardIngegerd KierkegardStockholm Session StringsSveriges Radios SymfoniorkesterKungliga HovkapelletTalekvartetten + +853983Witold LutoslawskiWitold Roman LutosławskiBorn January 25, 1913 in Warszawa, died February 7, 1994 there. Polish pianist, composer and conductor. +Knight of the [url=https://pl.wikipedia.org/wiki/Order_Orła_Białego]Order Orła Białego[/url].Needs Votehttps://www.lutoslawski.org.pl/https://culture.pl/pl/tworca/witold-lutoslawskihttps://pl.wikipedia.org/wiki/Witold_Lutos%C5%82awskihttps://en.wikipedia.org/wiki/Witold_Lutos%C5%82awskihttps://musicbrainz.org/artist/af4c43d3-c0e0-421e-ac64-000329af0435"Derwid" Witold LutosławskiDerwid Czyli Witold LutosławskiLutosawskyLutoslawskiLutoslawski W.LutoslawskyLutosławskiLutosławskyV. LiutoslavskisW LutoslawkyW. LutoslawskiW. LutoslawskyW. LutosławskiW.LutoslawskiWitold LutoslavskiWitold LutoslavskyWitold LutoslawskyWitold LutosllawskiWitold LutosławskiWitold LutosławskyWittold LutoslawskiWtitold LutoslawskiВ. ЛютославскиВ. ЛютославскийВ.ЛютославскийВитольд ЛютославскиВитольд Лютосласкийヴィトルド・ルトスワフスキヴィトルド・ルトスワフスキDerwid + +854011Danny PerriGuitarist, predominantly 1930's-1950's Jazz.Needs Votehttp://www.allmusic.com/artist/danny-perri-mn0000724143/creditsD. PerriDan PemyDan PerriDani PerriDanny PeriDanny PerryDon PerryLouis Armstrong And His OrchestraArtie Shaw And His Gramercy FiveRay Anthony & His OrchestraJack Teagarden And His OrchestraClaude Thornhill And His OrchestraWill Bradley And His OrchestraBuddy Morrow And His OrchestraThe Dixieland All StarsThe Blue FivePat Flowers And His Rhythm + +854085Arturo GuerreroCorrectOrquesta Sinfónica De Madrid + +854088Eduardo MuñozSpanish violinist.Needs VoteOrquesta Sinfónica De Madrid + +854090Zvetlana ArapuCorrectOrquesta Sinfónica De Madrid + +854094Santiago KuschevaztkyCorrectSantiago KuschevatzkyOrquesta Sinfónica De Madrid + +854098Mitchell Sven AnderssonCorrectOrquesta Sinfónica De Madrid + +854099Zograb TatevossianCorrectZograb TatevossyanZograb TatevosyanOrquesta Sinfónica De Madrid + +854100Jan KoziolJan Janusz Koziol GlabInstrument: violinCorrectOrquesta Sinfónica De Madrid + +854104Rafael KhismatulinViolinistNeeds VoteOrquesta Sinfónica De MadridTrío Bellas Artes + +854106Margarita SikoevaClassical violinist.Needs VoteOrquesta Sinfónica De Madrid + +854109Josep GalCorrectOrquesta Sinfónica De Madrid + +854111Hector EscuderoHector Manuel Escudero AguilarHorn PlayerCorrectHéctor EscuderoOrquesta Sinfónica De Madrid + +854113Manuel AscanioSinger and composer of romantic ballads and boleros (b. November 21, 1946) from Guadalajara, Mexico.Needs VoteM. AscanioOrquesta Sinfónica De Madrid + +854116Varghaollah BadieeCorrectOrquesta Sinfónica De Madrid + +854117Paolo CatalanoSpanish violinist. As an Orchestra Professor he has collaborated in various National and International Orchestras under the direction of renowned Masters and since 2003 he regularly collaborates with the Madrid Symphony Orchestra.Needs Votehttps://www.madridsoloists.com/es/la-orquestaP. CatalanoOrquesta Sinfónica De Madrid + +854118Marianna TothCorrectOrquesta Sinfónica De Madrid + +854119Alex RosalesAlexis Alfredo Rosales ChavarriaCorrectOrquesta Sinfónica De Madrid + +854120Orquesta Sinfónica De MadridSpanish orchestra based in Madrid, founded in 1903, this is the oldest private Spanish symphonic orchestra not related with a theatre (Barcelona's Orquesta del Liceo was founded in 1843). It was founded by members from the Sociedad de Conciertos, the first Spanish Orchestra, founded by [a1638146] in 1866. Acronym OSM. +In 1905 they started a collaboration with [a1267374] as conductor. Other conductors have been: [a5222231], [a5368315], [a1172316], [a1241244], [a847489] and [a1437991]. +Since 1965 to 1997 played in [l611159] and recorded to Hispavox label many zarzuelas in late 1960 to mid 1970s. +Since 1997 is related as [a8529480] (holder orchestra) of [l439802]. +[b]Do not confuse with [a2931305].[/b] + +[u][b]List of General Music directors[/b][/u] +Alonso Cordelás (1903–1904) +[a1267374] (1905–1936/39) +[a5368315] (-) +[a1172316] (1940–1945) +[a5222231] (1946–1950) +[a5368315] (1951–1958) +[a1241244] (1958–1977) +- +Luis Antonio [a847489] (1999–2001) +[a1437991] (2002-2010) +[a870703] (2015-)Needs Votehttps://osm.es/https://www.facebook.com/OrquestaSinfonicadeMadrid/https://es.wikipedia.org/wiki/Orquesta_Sinf%C3%B3nica_de_MadridCoro Y Orquesta Sinfónica De MadridDirector:Madrid Symphony OrchestraMadris Symphony OrchestraOrchestraOrchestra Dei Concerti di MadridOrchestra Del Teatro De La ZarzuelaOrchestra Di MadridOrchestra Of MadridOrchestra Of The Teatro RealOrchestra Sinfonica Di MadridOrchestra Sinfonica di MadridOrchestre Symphonique De MadridOrchestre Symphonique De Madrid (Orch. ARBOS)Orchestre Symphonique De Madrid (Orchestre Arbos)Orchestre Symphonique de MadridOrchestre Symphonique de Madrid (Orchestre Arbos)Orq. Sinfonica De MadridOrq. Sinfoniica De MadridOrq. SinfónicaOrq. Sinfónica de MadridOrq. Sinfónica de Madrid.Orquesta Escuela De La Sinfónica De MadridOrquesta SinfonicaOrquesta Sinfonica De MadridOrquesta SinfónicaOrquesta Sinfónica De Madrid "Orquestra Arbós"Orquesta Sinfónica De Madrid (Arbos)Orquesta Sinfónica de MadridOrquesta Sinfónica de Madrid (Orquesta Arbós)Orquesta Sinfónica de Madrid, (Orquesta Arbós)Orquestra Sinfónica De MadridOrquestra Sinfónica Nacional de EspañaSinfónica de MadridString Section Of The Madrid Symphonic OrchestraSymphonic Orchestra Of Comunidad MadridSymphonic Orchestra Of MadridSymphony Orchestra Of MadridTeatro Real MadridThe Madrid Symphonic OrchestraThe Madrid Symphony OrchestraThe Symphonic Orchestra Of MadridИсп. симфон. оркестръOrquesta Titular Del Teatro RealAra MalikianGarcia NavarroArturo GuerreroEduardo MuñozZvetlana ArapuSantiago KuschevaztkyMitchell Sven AnderssonZograb TatevossianJan KoziolRafael KhismatulinMargarita SikoevaJosep GalHector EscuderoManuel AscanioVarghaollah BadieePaolo CatalanoMarianna TothAlex RosalesVictor ArdeleanFernando PuigSergio VacasShoko MuraokaErik EllegiersJohn Paul FriedhoffMichele PrinJan PodaAki HamamotoRicardo KwiatkowskiDragos BalanIvor BoltonHanna Mª AmbrosGrégory LacourEnrique JordáWalter StormontVicente SpiteriEnrique Fernández ArbósGilles LebrunAlejandro GalánDionisio VillalbaJesús López-CobosRuben SimeoDavid TenaEsperanza VelascoLuis Cosme GonzalezAngeles EgeaAndrés MicóAlexander TatnellMarina GonzálezLaurentiu GrigorescuFarhad SohrabíRicardo GarcíaHolger ErnstCayetano CastañoEmilian SzczygielCarmen GuillemEduardo PausáNatalia MargulisSalvador AragóAniela FreySusana CermeñoConrado Del CampoJosé María FrancoSanta Monica MihalacheMaría Antonia RodríguezLorenzo Antonio IoscoJuan PaviaCoro y Orquesta Sinfónica de Madrid + +854121Victor ArdeleanCorrectV. ArdeleanOrquesta Sinfónica De Madrid + +854124Fernando PuigFernando E. PuigClassical HornistNeeds VotePuig RosadoOrquesta Sinfónica De Madrid + +854129Sergio VacasSpanish violin player.Needs VoteOrquesta Sinfónica De Madrid + +854132Shoko MuraokaCorrectOrquesta Sinfónica De Madrid + +854133Erik EllegiersCorrectOrquesta Sinfónica De Madrid + +854134John Paul FriedhoffCorrectPaul FriedhoffOrquesta Sinfónica De Madrid + +854136Michele PrinCorrectOrquesta Sinfónica De Madrid + +854143Jan PodaCorrectOrquesta Sinfónica De Madrid + +854144Aki HamamotoCorrectOrquesta Sinfónica De Madrid + +854146Ricardo KwiatkowskiCorrectOrquesta Sinfónica De Madrid + +854151Dragos BalanRomanian cellist, born in 1980 in Iasi, Romania.CorrectOrquesta Sinfónica De Madrid + +854822Jean-Pascal PostFrench clarinetistNeeds VoteJ-P. PostPascal PostOrchestre Philharmonique De Radio France + +854823Daniel BreszynskiFrench trombonist.CorrectDaniel BreszinskiOrchestre National De L'Opéra De Paris + +854918Dresdner PhilharmonieGerman philharmonic orchestra based in Dresden. It was founded in 1870 as "Gewerbehausorchester".Needs Votehttps://www.dresdnerphilharmonie.de/Bachorchester Der Dresdner PhilharmonieBachorchester der Dresdner PhilharmonieDas Philharmonische Orchester DresdenDas Philharmonische Orchester, DresdenDas Philharmonische Orchester DresdenDas Philharmonische Orchester, DresdenDas Philharmonischer Orchester, DresdenDie Dresdner PhilharmonieDie Instrumentalgruppe Der Dresdner PhilharmonieDredsner PhilharmonieDresden PhilarmonicDresden Philharmonia OrchestraDresden PhilharmonicDresden Philharmonic Chamber OrchestraDresden Philharmonic Orch.Dresden Philharmonic OrchestraDresden Philharmonic Society OrchestraDresden PhilharmonicsDresden PhilharmonieDresdener PhilharmonieDresdener PhilharmonikerDresdener PhilharmonikernDresdenin FilharmonikotDresdenin Filharmoninen OrkesteriDresdens Filharmoniska OrkesterDresdens Filharmoniske OrkesteraDresdenska FilharmonijaDresdner PhilharmonicDresdner Philharmonic OrchestraDresdner Philharmonie OrchestraDresdner Philharmonie-OrchesterDresdner PhilharmonikerDresdner PhilharmonikernDresdner Philharmonisches OrchesterDrezdenska FilharmonijaDrezdenska filharmonijaFilarmonica di DresdaFilarmonica din DresdaFilarmónica De DresdeFilarmônica De DresdaGroßes OperettenorchesterInstrumentalgruppeInstrumentalgruppe Der Dresdner PhilharmonieInstrumentalgruppe der Dresdner PhilharmonieInstrumentalsolisten (Mitglieder Der Dresdner Philharmonie)Instrumentalsolisten Der Dresdner PhilharmonieKammerorchester Der Dresdner PhilharmonieMartin FlämigMembers Of The Dresden PhilharmonieMitglieder Der Dresdner PhilharmonieMitglieder der Dresdner PhilharmonieOrch. Filarmonica Di DresdaOrch. Filarmonica di DresdaOrchester Der Dresdner StaatoperOrchestra Filarmonica DI DresdaOrchestra Filarmonica Di DresdaOrchestra Filarmonica di DresdaOrchestra Filarmonicii Din DresdaOrchestra Filarmonicii din DresdaOrchestra Filarmonică Din DresdaOrchestre National De DresdeOrchestre Philharmonique De DresdeOrchestre Philharmonique De DrésdeOrchestre Symphonique Dresdner PhilharmonieOrkiestra Filharmonii W DreźnieOrq. Filarmônica de DresdeOrquesta Filarmonica De DresdeOrquesta Filarmonica De DresdenOrquesta Filarmónica De DresdeOrquesta Filarmónica de DresdeOrquestra Filarmônica Da Rádio De DresdenOrquestra Filarmônica De DresdeOrquestra Filarmônica De DresdenPhilh. Orchester DresdenPhilharmonic Society DresdenPhilharmonique De DrésdePhilharmonisch Orkest van DresdenPhilharmonische Orchester DresdenPhilharmonische Orchester, DresdenPhilharmonischen Orchester, DresdenPhilharmonischer Orchester, DresdenPhilharmonisches Orchester DresdenRundfunkchor LeipzigStreichquartettThe Dresden Philharmonic OrchestraThe Dresdner Philharmonic OrchestraThe Dresdner PhilharmonieДрезденский Филармонический ОркестрДрезденский филармонический оркестрСимфонический Оркестр Дрезденской ФилармонииСимфонический оркестр Дрезденской филармонииドレスデン・フィルハーモニー管弦楽団Dittmar TrebeljahrMareike ThrunLudwig GüttlerEckart HauptHerbert CollumVictor MeisterTilmann BaubkusFritz KetschauWolfgang HentrichPhilipp BeckertSteffen GaitzschRafael Frühbeck De BurgosJohannes Walter (2)Martin FlämigHeinz StiefelManfred ZeumerGünter KlierMichael Schwarz (2)Manfred BellmannHeinz SchmidtManfred ReicheltKlaus PetersKarl SuskeLothar BöhmSzymon GoldbergGuido TitzeAndreas LorenzHelmut RadatzGerhard HauptmannJürgen PilzWolfgang PeschkeAndreas KuhlmannUndine Röhner-StolleNora KochGerd SchneiderKarl-Heinz BrücknerWolfgang BemmannHelmut NittelMichael SchöneHans-Detlef LöchnerAlexander WillRobert Christian SchusterWilhelm PoseggaNorbert SchusterDieter HärtwigKlaus JoppJörg BrücknerOliver Mills (2)Siegfried SchäfrichJohann Christoph SchulzeGünter SieringBachorchester Der Dresdner PhilharmonieTorsten FrankBruno BorralhinhoKurt JanetzkyRalf-Carsten BrömselErik Wenbo XuKarl-Heinz WeberMathias SchmutzlerEgbert EsterlRuth PetrovitchAnnegret TeichmannUwe VoigtWerner Scholz (2)Steffen Neumann (2)Thomas GroscheDonatus BergemannKarl-Bernhard Von StumpffAlexander PeterGerd GrötzschelGerhard Peter ThielemannThomas BäzHeide SchwarzbachErik KornekMichael SteinkühlerChristian HöcherlGerd QuellmelzPhilipp ZellerCsaba KelemenFriedrich KettschauMatan GilitchenskyWalter HartwichHardy WenzelPeter Conrad (3)Joachim HuschkeStefan LangbeinHeiko MürbeClemens KriegerConstanze SandmannStephan PätzoldYe-Eun ChoiThomas Otto (4)Markus GundermannWalter Auer (2)Fabian DirrJörg KettmannBjörn KadenbachBernhard KuryKrzysztof PolonekStanisław PajakHans-Ludwig RaatzJoachim FrankeJanka RyfRolph SchroederDietmar PesterHeike JanickeBilly Schmidt (5)Răzvan PopescuHorst Förster (2) + +855032Siegmund NimsgernGerman Bass & Baritone vocalist, born 14 January 1940 in Sankt Wendel, Germany. +Died 14 September 2025.Needs Votehttps://de.wikipedia.org/wiki/Siegmund_Nimsgernhttps://en.wikipedia.org/wiki/Siegmund_Nimsgernhttps://www.imdb.com/name/nm0632397/NimsgernS. NimsgernSigmund NimsgernЗигмунд НимсгернLa Petite Bande + +855061Orchestra Of The Royal Opera House, Covent GardenOrchestra of The Royal Opera House, Covent Garden based in London, UK.Correct"Royal Opera House Orchestra, Covent Garden"& Orchestra of the Royal Opera House, Covent GardenA Covent Garden Operaház ZenekaraCG Orch.Choeurs Et Orchestre Du Covent GardenChorus And Orchestra Of The Royal Opera House, Covent GardenChœur Et Orchestre De Covent GardenChœurs Et Orchestre Du Royal Opera House, Covent GardenCovend GardenCovent GardenCovent Garden Opera OrchestraCovent Garden Opera Royal OrchestraCovent Garden OrchestraCovent Garden Royal Opera House OrchestraCovent Gardenin Kuninkaallisen Oopperan OrkesteriCovent Gardenin Kuninkaallisen Oopperatalon OrkesteriCovent Gardenoperans OrkesterDas Orchester Des Koniglichen Opernhauses Covent Garden, LondonDas Orchester Des Königlichen Opernhauses Covent CardenDas Orchester Des Königlichen Opernhauses Covent GardenDas Orchester des Königlichen Opernhauses Covent GardenGeorg SoltiKor og orkester Covent Garden, LondonKuninkaalisen Covent Garden-oopperan OrkesteriKönigliches Opernhaus Covent GardenL'Opéra Royal Covent GardenL'Orchestre De L'Opera Royal De Covent GradenL'Orchestre De L'Opéra Royal De Covent GardenL'orchestra Reale Covent GardenLa Orquesta De La Royal Opera House, Covent GardenLa Royal Opera House Orchestra, Covent GardenMembers Of The Royal Opera House Orchestra, Covent GardenOrch. Covent Garden Di LondraOrch. Del Covent Garden Di LondraOrch. Del Covent Garden, LondraOrch. Della Royal Opera House, Covent GardenOrch. Of The Royal Opera House, Covent GardenOrch. Royal Opera HouseOrch. de Covent GardenOrch., Covent GardenOrchester Covent GardenOrchester Der Covent Garden OperOrchester Des Königlichen Opernhauses Covent GardenOrchester Des Königlichen Opernhauses Covent Garden, LondonOrchester Des Königlichen Opernhauses Covent-Garden, LondonOrchester Des Königlichen Opernhauses, Covent GardenOrchester Des Opernhauses Covent GardenOrchester Des Royal Opera HouseOrchester Des Royal Opera House Covent GardenOrchester Des Royal Opera House Covent Garden LondonOrchester Des Royal Opera House Covent Garden, LondonOrchester Des Royal Opera House, Covent GardenOrchester Des The Royal Opera House, Covent GardenOrchester Kráľovskej Opery Covent GardenOrchester Reale Covent GardenOrchester der Covent Garden Opera, LondonOrchester des Köglichen Opernhauses Covent Garden LondonOrchester des Königlichen Opernhauses Covent GardenOrchester des Königlichen Opernhauses Covent Garden LondonOrchester des Königlichen Opernhauses Covent Garden, LondonOrchester des Königlichen Opernhauses Covent Graden LondonOrchester des Opernhauses Covent GardenOrchester des Opernhauses LondonOrchester des Royal Opera House Covent GardenOrchester des Royal Opera House Covent Garden, LondonOrchester des Royal Opera House, Covent GardenOrchestraOrchestra AndOrchestra And Chorus Of The Royal Opera House, Covent GardenOrchestra Covent GardenOrchestra Covent Garden Di LondraOrchestra Del "Covent Garden" Di LondraOrchestra Del "Covent Garden" di LondraOrchestra Del Covent GardenOrchestra Del Covent Garden Di LondraOrchestra Del Covent Garden Opera HouseOrchestra Del Covent Garden Royal Opera HouseOrchestra Del Covent Garden Royal Opera House Di LondraOrchestra Del Covent Garden, Royal Opera House Di LondraOrchestra Del Royal Covent Garden di LondraOrchestra Del Royal Opera House, Covent Garden, LondraOrchestra Del Teatro Covent Garden De LondraOrchestra Del Teatro Covent Garden Di LondraOrchestra Del Teatro Covent Garden Royal Opera HouseOrchestra Del Teatro Covent Garden di LondraOrchestra Del Theatro Covent Garden Di LondraOrchestra Della Royal Opera HouseOrchestra Della Royal Opera House Covent GardenOrchestra Della Royal Opera House, Covent GardenOrchestra Della Royal Opera House, Covent Garden Di LondraOrchestra Of Covent GardenOrchestra Of Covent Garden, LondonOrchestra Of Royal Opera House, Covent GardenOrchestra Of Royal Opera, Covent GardenOrchestra Of The Covent Garden, LondonOrchestra Of The Opera House, Covent GardenOrchestra Of The Royal House, Covent GardenOrchestra Of The Royal Opera HouseOrchestra Of The Royal Opera House Convent GardenOrchestra Of The Royal Opera House Covent GardenOrchestra Of The Royal Opera House Covent Garden LondonOrchestra Of The Royal Opera House, Convent GardenOrchestra Of The Royal Opera House, Covent Garden OrchestraOrchestra Of The Royal Opera House, Covent Garden, LondonOrchestra Of The Royal Opera House, Covent Garden, TheOrchestra Of The Royal Opera House: Covent GardenOrchestra Of The Royal Opera, Covent GardenOrchestra Of the Royal Opera House Covent GardenOrchestra Reale Covent GardenOrchestra Royal Opera House Covent GardenOrchestra Royal Opera House Di Covent GardenOrchestra Royal Opera House, Covent GardenOrchestra Teatro Covent GardenOrchestra dei Covent GardenOrchestra del Covent GardenOrchestra del Covent Garden Di LondraOrchestra del Royal Opera House, Covent Garden, LondraOrchestra della Royal Opera HouseOrchestra della Royal Opera House Covent GardenOrchestra della Royal Opera House, Covent GardenOrchestra of The Royal Opera House, TheOrchestra of the Royal Opera HouseOrchestra of the Royal Opera House, Covent GardenOrchestra, Covent GardenOrchestra, Royal Opera House, Covent GardenOrchestreOrchestre "Royal Opera House, Covent Garden"Orchestre "The Royal Opera House, Covent Garden"Orchestre De Covent GardenOrchestre De L'Opéra Royal De Covent GardenOrchestre De L'Opéra Royal, Covent GardenOrchestre De L'opéra Royal De Covent GardenOrchestre Des Königlichen Opernhaus Covent GardenOrchestre Du "Covent Garden" De LondresOrchestre Du "Royal Opera House" Covent GardenOrchestre Du "Royal Opera House, Covent Garden"Orchestre Du Covent GardenOrchestre Du Covent Garden Royal Opera HouseOrchestre Du Of The Royal Opera House, Covent GardenOrchestre Du Royal House, Covent Garden, LondresOrchestre Du Royal Opera House Covent GardenOrchestre Du Royal Opera House, Covent GardenOrchestre Du Royal Opera House, Covent Garden, LondresOrchestre Du Royal Opera House. Covent GardenOrchestre Du Royal Opera Jouse, Covent GardenOrchestre de Covent GardenOrchestre de L'Opéra Royal de Covent GardenOrchestre de L'opera Royal de Covent GardenOrchestre du " Royal Opera House, Covent Garden"Orchestre du Covent GardenOrchestre du Covent Garden de LondresOrchestre du Théatre Royal de Covent-GardenOrcquestra Da Royal Opera House, Covent GardenOrkest Van Het Royal Opera House, Covent GardenOrkest Van The Royal OperaOrkest Van The Royal Opera House, Covent GardenOrkest van The Royal Opera House, Covent GardenOrkest van het Royal Opera House Convent GardenOrkestar Kraljevske Operne Kuće, Covent GardenOrkestar Kraljevske opere Covent GardenOrkestar Royal Opera House, Covent GardenOrkester Fra The Royal Opera House, Covent Garden, LondonOrkester Från Kungliga Operan, Covent Garden, LondonOrkester Från Royal Opera House, Covent GardenOrkester Från The Royal Opera House, Covent Garden, LondonOrkester Från The Royla Opera House, Covent GardenOrkester fra Royal Opera House, Covent GardenOrquestaOrquesta De La Royal Opera House, Covent GardenOrquesta De La Royal Opera House, Covent GardenOrquesta De La Opera House Covent GardenOrquesta De La Royal Opera HouseOrquesta De La Royal Opera House Covent GardenOrquesta De La Royal Opera House Covent Garden LondonOrquesta De La Royal Opera House De Covent GardenOrquesta De La Royal Opera House, Convent GardenOrquesta De La Royal Opera House, Covent GardenOrquesta De La Royal Opera House, Covent Garden, LondresOrquesta De La Ópera RealOrquesta De La Ópera Real, Covent GardelOrquesta De La Ópera Real, Covent GardenOrquesta Del Covent GardenOrquesta Del Royal Opera House, Covent GardenOrquesta Del Teatro De La Opera Convent GardenOrquesta Del Teatro De La Ópera Real De Covent GardenOrquesta Del Teatro De La Ópera Real, Covent GardenOrquesta Royal Opera Covent Garden de LondresOrquesta Royal Opera Del Covent GardenOrquesta Royal Opera House Covent GardenOrquesta Royal Opera House, Covent GardenOrquesta Royal Ópera House Covent GardenOrquesta Sinfónica De La Royal Opera House, Covent GardenOrquesta de The Royal Opera House Covent GardenOrquesta de la Royal Opera House, Covent GardenOrquesta del Teatro Real de la Opera Covent GardenOrquestra Da Royal Opera House, Convent GardenOrquestra Da Royal Opera House, Covent GardenOrquestra Da Ópera Real, Covent GardenOrquestra Do Covent GardenOrquestra E Coro Da Royal Opera House, Covent GardenOrquestra da Opera Real Do Covent GardenR.O.H. OrchestraROHCGROHORoyal Opera HouseRoyal Opera House Covent GardenRoyal Opera House Covent Garden OrchestraRoyal Opera House OrchRoyal Opera House Orch., Covent GardenRoyal Opera House OrchestraRoyal Opera House Orchestra , Covent GardenRoyal Opera House Orchestra Covent GardenRoyal Opera House Orchestra, Covenant GardenRoyal Opera House Orchestra, Covent GardenRoyal Opera House Orchestra, Covent Garden, LondonRoyal Opera House Orchestra, Covent Garden, TheRoyal Opera House Orchestra, Covent GardensRoyal Opera House Orchestra, Covert GardenRoyal Opera House Orchestra, TheRoyal Opera House Orchestra,Covent GardenRoyal Opera House, Covent GardenRoyal Opera House, Covent Garden OrchestraRoyal Opera House., Covent GardenRoyal Opera Orch. Convent GardenRoyal Opera Orch. Covent GardenRoyal Opera Orch., Covent GardenRoyal Opera Orch., Covent Garden.Royal Opera Orchester, Covent GardenRoyal Opera Orchester, Covent Garden, LondonRoyal Opera OrchestraRoyal Opera Orchestra (Convent Garden)Royal Opera Orchestra Covent GardenRoyal Opera Orchestra, Covent GardenRoyal Opera Orchestra, Covent GardenRoyal Opera Orchestra, Covent Garden, LondonRoyal Opera Orchestra, Covent HouseRoyal Opera Orchestra, Du Covent GardenRoyal Opera Orchestra, Govent GardenRoyal Opera, Covent GardenThe 'Convent Garden' OrchestraThe Covent Garden Opera OrchestraThe Covent Garden OrchestraThe Opera House OrchestraThe Orch. Of The Royal Opera House, Covent GardenThe OrchestraThe Orchestra Of The Royal Opera HouseThe Orchestra Of The Royal Opera House From The Royal Opera House, Convent GardenThe Orchestra Of The Royal Opera House, Covent GardenThe Orchestra Of The Royal Opera House, Covent GardensThe Orchestra of Royal Opera House Covent GardenThe Orchestra of The Royal Opera HouseThe Orchestra of the Royal Opera HouseThe Royal OperaThe Royal Opera Covent GardenThe Royal Opera House Covent Garden OrchestraThe Royal Opera House Orch., Covent GardenThe Royal Opera House OrchestraThe Royal Opera House Orchestra Covent GardenThe Royal Opera House Orchestra, Convent GardenThe Royal Opera House Orchestra, Covent GardenThe Royal Opera House Orchestra, TheThe Royal Opera House, Covent GardenThe Royal Opera Orch. Covent GardenThe Royal Opera Orch., Covent GardenThe Royal Opera Orchester, Covent GardenThe Royal Opera OrchestraThe Royal Opera Orchestra Covent GardenThe Royal Opera Orchestra Du "Covent Garden"The Royal Opera Orchestra, Covent GardenThe Royal Opera Orchestra, Du Covent GardenThe Soloists Of The Royal Opera House Orchestra, Covent Gardenmembers of the Orchestra Of The Royal Opera House, Covent GardenΟρχήστρα Της Όπερας Του Covent GardenΟρχήστρα Του Royal Opera House, Covent GardenΟρχήστρα Του Κόβεντ ΓκάρντενОркестр Королевской Оперы «Ковент-Гарден»Оркестр Лондонской Королевской Оперы «Ковент-Гарден»Оркестр Лондонской королевской оперы «Ковент-Гарден»Оркестр Театра "Ковент-Гарден"コヴェント・ガーデン王立歌劇場管弦楽団コヴェンド・カーデン王立歌劇場管弦楽団Dudley SimpsonPaul ArchibaldPaul GardhamChris Cowie (2)Margaret TindaleRichard BissillRhydian ShaxsonJim Buck JrJames GalwayBen CruftJulia GirdwoodMalcolm SmithDavid StrangeLucy WakefordDaniel NewellDavid NolanJames Watson (2)Jennifer Brown (3)Richard ClewsAndrew StowellVasko VassilevChris VandersparPatrick Hooley (2)Eric CreesGraham WarrenPhilip JonesDavid PyattTim HughHugh MaguirePeter ManningAnthony Collins (2)Janet CraxtonAlan J. PetersDavid ArcherMarie GoossensSarah BrookeLindsay ShillingDerek James (2)William WaterhouseJonathan DurrantAlexander Murray (2)Kenneth HeathRoy CopestakeTony TunstallMartin FieldSimon HetheringtonMichael Skinner (2)Lucy YendoleAndrea De FlammineisJan SchmolckRussell JordanArthur Wilson (3)Hugh SparrowNick RodwellAmbrose GauntlettEugene CruftAndriy ViytovychGerald JarvisKevin RundellHuw EvansSimon HallettGordon LaingJohn Jenkins (6)Charles Taylor (2)Keith Hartley (3)Margareth CampbellPeter ReeveJudith BusbridgeLeonard DommettSimon Archer (2)Peter Gibbs (2)Rachel GledhillRobert TrumanGeorge IvesPeter SchulmeisterMichael MeeksSimon StreatfeildPaul Draper (3)Alfred BrainTony HoughamRobert HollidayPaul KimberCedric SharpeAubrey MurphyTimothy OrpenMargaret CampbellDavid Jones (38)Charles WoodhouseAmanda TrueloveKatherine Baker (3)Eugene Lee (4)Keith McNicollTom WinthorpeFrederick ThurstonChris Davies (17)Helen CochraneStuart James (9)Simon HorsmanKonstantin BoyarskyClare DuckworthAlfred HobdayBen Thomson (4)Gordon Walker (3)Charles Gregory (7)Duncan Johnstone (2)Daniel Finney (3)Sergey LevitinCarl Wendling + +855063Gianandrea GavazzeniItalian pianist, conductor, composer and musicologist, born 25 July 1909 in Bergamo, Italy and died 5 February 1996 in Bergamo, Italy.Needs Votehttps://it.wikipedia.org/wiki/Gianandrea_GavazzeniDirettore Gianandrea GavazzeniDjanandrea GavaceniG. GavazzeniG.GavazzeniGavazzeniGian Andrea GavazzeniGiandrea GavazzeniGiannadrea GavazzeniГаваззениДж. ГавадзениДж.ГавадзениДжанандреа Гавадзениジャナンドレア・ガヴァッツェーニ + +855065Thomas SchippersAmerican conductor and composer. He was born 9 March 1930 in Portage, Michigan, USA and died 16 December 1977 in New York City, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Thomas_SchippersSchippersT. SchippersTh. SchippersThomas ShippersТомас Шипперсトマス・シッパーズトーマス・シッパーズ + +855066Chorus Of The Royal Opera House, Covent GardenChorus founded in 1946 that is involved in opera productions at the [l335984].Needs Votehttps://www.roh.org.uk/about/the-royal-opera-chorusA Covent Garden Operaház ÉnekCG ChorusChoeurChoeur Du Covent GardenChoeur Du Royal Opera House De Covent GardenChoeur Du Royal Opera House, Covent Garden, LondresChoeurs De L'Opera Royal De Covent GardenChoeurs De L'Opéra Royal De Covent GardenChoeurs Du Royal Opera HouseChoeurs Du Royal Opera House, Covent GardenChoeurs Du Royal Opéra House Covent GardenChoeurs du Covent Garden de LondresChoir Royal Opera House, Covent GardenChorChor Covent GardenChor Der Königlichen Opernhauses Covent Garden, LondonChor Des Königlichen Opernhauses Covent GardenChor Des Königlichen Opernhauses Covent Garden, LondonChor Des Königlichen Opernhauses, Covent GardenChor Des Royal Opera HouseChor Des Royal Opera House Covent GardenChor Des Royal Opera House Covent Garden LondonChor Des Royal Opera House, Covent GardenChor Und Orchester Des Royal Opera House, Covent GardenChor der Covent Garden Opera, LondonChor des Königlichen Opernhauses Covent GardenChor des Königlichen Opernhauses Covent Garden LondonChor des Königlichen Opernhauses Covent Garden, LondonChor des Royal Opera House Covent GardenChor des Royal Opera House Covent Garden, LondonChor des Royal Opera House, Covent GardenChorusChorus And Orchestra Royal Opera House Covent GardenChorus Of Covent GardenChorus Of Covent Garden, LondonChorus Of Royal Opera House, Covent GardenChorus Of Royal Opera, Covent GardenChorus Of The Royal Opera Covent GardenChorus Of The Royal Opera HouseChorus Of The Royal Opera House Covent GardenChorus Of The Royal Opera, Covent GardenChorus Of The Royal Opera, Covent-GardenChorus Royal Opera HouseChorus Royal Opera House, Covent GardenChorus [And Orchestra] Of The Royal Opera House, Covent GardenChorus of the Royal Opera HouseChorus of the Royal Opera House Covent GardenChorus of the Royal Opera House, Covent GardenChorus, Covent HouseChorus, Royal Opera House, Covent GardenChorus: Royal Opera HouseChœurChœur & Orchestre du Royal Opera House, Covent GardenChœur De L'Opéra Royal De Covent GardenChœur Du Covent GardenChœur Du Covent Garden Royal Opera HouseChœur Du Royal Opera House, Covent GardenChœur du Royal Opera House, Covent GardenChœursChœurs De Covent GardenChœurs De L'Opéra Royal De Covent GardenChœurs Du "Royal Opera House" Covent GardenChœurs Du Covent GardenChœurs Du Royal Opera HouseChœurs Du Royal Opera House Covent GardenChœurs Du Royal Opera House, Covent GardenChœurs Du Royal-Opera House Covent GardenCoroCoro Covent Garden Di LondraCoro Da Royal Opera House - Covent GardenCoro De La Opera De LondresCoro De La Roayal Opera House, Covent GardenCoro De La Royal Opera HouseCoro De La Royal Opera House Covent GardenCoro De La Royal Opera House Covent Garden De LondresCoro De La Royal Opera House Covent Garden LondonCoro De La Royal Opera House, Covent GardenCoro De La Royal Ópera House, Covent GardenCoro De La Yoral Opera House Covent GardenCoro De LaRoyal Opera House, Covent GardenCoro Del Covent GardenCoro Del Covent Garden Di LondraCoro Del Covent Garden Opera HouseCoro Del Covent Garden Royal Opera HouseCoro Del Covent Garden Royal Opera House Di LondraCoro Del Covent Garden, Royal Opera House Di LondraCoro Del Royal Opera House, Covent Garden, LondraCoro Del Teatro Alla Scala, MilanoCoro Del Teatro Covent Garden De LondraCoro Del Teatro Covent Garden Di LondraCoro Del Teatro Covent Garden Royal Opera HouseCoro Del Teatro Covent Garden di LondraCoro Del Theatro Covent Garden Di LondraCoro Della Royal Opera HouseCoro Della Royal Opera House Covent GardenCoro Della Royal Opera House, Covent GardenCoro Della Royal Opera House, Covent Garden Di LondraCoro ECoro Of The Royal Opera HouseCoro Royal Opera House Covent GardenCoro Royal Opera House Di Covent GardenCoro Royal Ópera House Covent GardenCoro de la Royal Opera House, Covent GardenCoro del Covent GardenCoro del Royal Opera House, Covent Garden, LondraCoro della Royal Opera HouseCoro della Royal Opera House Covent GardenCoro della Royal Opera House, Covent GardenCoro: Royal Opera HouseCorosCoros De La Opera House Covent GardenCoros De La Royal Opera House, Covent GardenCovent GardenCovent Garden ChorusCovent Garden Opera ChorusCovent Garden Opera Chorus, TheCovent Garden Opera CompanyCovent Garden Opera Company ChorusCovent Garden Royal Opera House ChorusCovent Gardenin Kuninkaallisen Oopperan KuoroCovent Gardenoperans KörD'Oyly Carte Opera Chorus, TheEl Coro De La Royal Opera House, Covent GardenKoor Van The Royal Opera House, Covent GardenKor Fra Royal Opera House, Covent GardenKor Fra The Royal Opera House, Covent Garden, LondonKuninkaallisen Oopperatalon Kuoro, Covent GardenKörKör Från Royal Opera House, Covent GardenKör Från The Royal Opera House, Covent Garden, LondonMembers Of The Royal Opera ChorusROH ChorusRoyal Opera ChorusRoyal Opera Chorus Covent GardenRoyal Opera Chorus, Covent Garden, TheRoyal Opera Chorus, Covent Garden.Royal Opera Chorus, Covent HouseRoyal Opera Chorus, TheRoyal Opera House ChorusRoyal Opera House Chorus, Covent GardenRoyal Opera House Covent Garden ChorusRoyal Opera House, Covent GardenSbor Královské Opery Covent GardenSbor Královské Opery, Covent GardenSection Of The Chorus Of The Royal Opera House Covent GardensTHE ROYAL Chorus Of The Royal Opera HouseThe Chorus Of The Royal Opera Company, Covent GardenThe Chorus Of The Royal Opera House, Covent GardenThe Chorus Of The Royal Opera House, Covent GardensThe Covent Garden ChorusThe Covent Garden Opera ChorusThe D'Oyly Carte Opera ChorusThe Royal Opera ChorusThe Royal Opera Chorus ChorusThe Royal Opera Chorus, Covent GardenThe Royal Opera Extra ChorusThe Royal Opera HouseThe Royal Opera House ChoirThe Royal Opera House ChorusZbor Kraljevske opere Covent GardenZigeunerchorΧορωδίαΧορωδία Του Royal Opera House, Covent GardenХор Королевской Оперы «Ковент-Гарден»Хор Лондонвской королевской оперы «Ковент-Гарден»Хор Лондонской Королевской Оперы «Ковент-Гарден»Хор Театра "Ковент-Гарден"Хор Театра «Ковент-Гарден»コヴェンド・カーデン王立歌劇場合唱団Simon PreeceThomas BarnardFemale Chorus Of The Royal Opera House, Of The Covent GardenKiera LynessElizabeth WeisbergJonathan CoadJonathan Fisher (2)Nigel CliffePaul ParfittMarianne CotterillCari SearleBryan SecombeYvonne BarclayMelissa AlderAndrea HazellDawid KimbergTamsin CoombsLouise ArmitAndrew Sinclair (7)Emily Rowley JonesCharbel MattarLuke Price (3)Eryl RoyleAndrew MacnairNeil Gillespie (3) + +855072Wiener StaatsopernchorThe Vienna State Opera Chorus, founded January 5, 1927. +When performing outside the auspices of the Vienna State Opera please use: [a931243]. +For the orchestra, use: [a696188].Needs Votehttps://kv-stop.jimdofree.com/A Bécsi Operaház ÉnekkaraA Bécsi Állami Opera Kórusa És ZenekaraA Bécsi Állami Operaház ÉnekkaraAgrupación Para Conciertos De La Opera Estatal De VienaAkadamiekammerchorAnd ChorusAsociación De Conciertos De Coro De La Ópera De VienaAsociación De Conciertos Del Coro De La Ópera De VienaAssociation De Concert Du Choeur De L'Opéra D'Etat De VienneAssociation de Concerts Du Chœur de L'Opéra de VienneAustrian Opera ChorusBrautchorBécsi Opera KórusBécsi Staatsoper ÉnekkaraChoers De l'Opéra De VienneChoeurChoeur De L'Opera De VienneChoeur De L'Opéra D'Etat De VienneChoeur De L'Opéra D'État De VienneChoeur De L'Opéra De VienneChoeur De L'opera De VienneChoeur De l'Opéra De VienneChoeur Du Staatsoper, VienneChoeur de L'Opéra D'Etat de VienneChoeur de L'Opéra de VienneChoeur de l'Opéra d'Etat De VienneChoeur de l'Opéra d'Etat de VienneChoeur de l'Opéra de VienneChoeursChoeurs D'Opéra D'Etat De VienneChoeurs De L'Opera De VienneChoeurs De L'Opéra D'Etat De VienneChoeurs De L'Opéra De VienneChoeurs De L'opéra De VienneChoeurs De l'Opera d'État De VienneChoeurs Du Staatsoper De VienneChoeurs d'Opéra d'Etat De VienneChoeurs de L'Opera de VienneChoeurs de L'Opéra D'Etat de VienneChoeurs de L'Opéra de VienneChoeurs de l'Opéra National de VienneChoeurs de l'Opéra de VienneChoeurs du Wiener StaatsoperChoirChoir Der Wiener StaatsoperChoir Of The Vienna OperaChoir Of The Vienna State OperaChoir Of Vienna State OperaChoir Vienna Philharmonic OrchestraChoir Vienna State OperaChoir of the Vienna State OperaChorChor D. Wiener StaatsoperChor De Wiener StaatsoperChor Der JanitscharenChor Der Staats Oper WienChor Der Staatsoper WienChor Der Staatsoper Wien In Der VolksoperChor Der Staatsoper, WienChor Der Weiner StaatsoperChor Der Werner StaatsoperChor Der Wieder StaatsoperChor Der Wien StaatsoperChor Der Wiener PhilharmonikerChor Der Wiener StaatoperChor Der Wiener StaatsoperChor Der Wiener Staatsoper In Der VolksoperChor Der Wiener StaatsopernChor Der Wiener StattsoperChor Der Wiener SymphonikerChor Der Wiener Wiener StaatsoperChor Der Winer StaatsoperChor Des Wiener StaatsoperChor Of The Vienna State OperahouseChor de Wiener StaatsoperChor der Staatsoper WienChor der Wiener StaatsoperChor der Wiener Staatsoper In Der VolksoperChor der Wiener Staatsoper in der VolksoperChor der Wiener StattsoperChor/Choeur/Coro Staatsoper WienChorusChorus AndChorus Der Wiener StaatsoperChorus Of The Staatsoper, ViennaChorus Of The Vienna OperaChorus Of The Vienna StaatsoperChorus Of The Vienna State OperaChorus Of The Vienna State Opera*Chorus Of The Vienna State Opera, TheChorus Of The Vienna State OrchestraChorus Of The Vienne State OperaChorus Of The Wiener StaatsoperChorus Of The vienna State OperaChorus Of Vienna State OperaChorus of The Vienna State OperaChorus of Vienna State OperaChorus of the Vienna State OperaChorus of the Weiner StaatsoperChœurChœur De L'Opera D'Etat De VienneChœur De L'Opéra D'Etat De VienneChœur De L'Opéra D'État De VienneChœur De L'Opéra De VienneChœur De L'Opéra de VienneChœur De L’Opéra De VienneChœur Du Staatsoper De VienneChœur Du Staatsoper VienneChœur Du Staatsoper, VienneChœur Du Stadtoper De VienneChœur Philharmonique De VienneChœur de L'Opéra De VienneChœur de L'Opéra de VienneChœur de l'Opéra d'État de VienneChœur de l'Opéra de VienneChœursChœurs D'Opera De VienneChœurs De L'Opera De VienneChœurs De L'Opéra D'Etat De VienneChœurs De L'Opéra D'État De VienneChœurs De L'Opéra De VienneChœurs De L'Opéra National De VienneChœurs De L'Opéra National de VienneChœurs De L'Opéra de VienneChœurs De L'opéra D'état De VienneChœurs De l’Opéra De VienneChœurs Du Staatsoper De VienneChœurs Du Staatsoper de VienneChœurs Du Stadtoper De VienneChœurs Du Théâtre De L'Opéra De VienneChœurs de L'Opera de VienneChœurs de L'Opéra de VienneChœurs de L'opéra de VienneChœurs de l'Opéra National de ViennChœurs de l'Opéra National de VienneChœurs de l'Opéra d'Etat de VienneChœurs de l'Opéra de VienneChœurs de l’Opéra de VienneCoriCori Dell'Opera Di Stato Di ViennaCoroCoro Dell'Opera Di Stato ViennaCoro Da Ópera De VienaCoro Da Ópera Do Estado De VienaCoro Da Ópera Estadual De VienaCoro Da Ópera Estadual de VienaCoro Da Ópera Popular De VienaCoro Da Ópera de VienaCoro De La Asociación De Conciertos de La Opera Estatal De VienaCoro De La Opera De VienaCoro De La Opera Del EstadoCoro De La Opera Del Estado De VienaCoro De La Opera Del Estado de VienaCoro De La Opera Estatal De VienaCoro De La Opera Estatal de VienaCoro De La Opera Nacional De VienaCoro De La Staatsoper De VienaCoro De La Ópera De VienaCoro De La Ópera Del Estado De VienaCoro De La Ópera Estatal De VienaCoro De La Ópera Nacional De VienaCoro De La Ópera de VienaCoro De Niños De VienaCoro Del Estado De VienaCoro Del Teatro Dell'OperaCoro Del Teatro Dell'Opera Di Stato Di ViennaCoro Dell Opera Di Stato Di ViennaCoro Dell' Opera Di Stato Di ViennaCoro Dell' Opera di Stato di ViennaCoro Dell'Opera Di Stato DI ViennaCoro Dell'Opera Di Stato Di ViennaCoro Dell'Opera Di Stato ViennaCoro Dell'Opera Di ViennaCoro Dell'Opera di Stato di ViennaCoro Dell'opera Di Stato Di ViennaCoro Dell'opera Di ViennaCoro Della Staats-Oper Di ViennaCoro Della Staatsoper Di ViennaCoro Della Staatsoper di ViennaCoro Della Staatsopern Di ViennaCoro Della Wiener StaatsoperCoro Della Wiener Staatsoper,Coro Estatal De La Ópera de VienaCoro Estatal Dell'Opera Di ViennaCoro Maschile Dell'Opera Di Stato Di ViennaCoro da Ópera do Estado de VienaCoro de la Opera Del EstadoCoro de la Opera Nacional de VienaCoro de la Opera de VienaCoro de la Opera del Estado de VienaCoro de la Ópera Estatal de VienaCoro de la Ópera de VienaCoro de la Ópera de ViennaCoro de la Ópera del Estado De VienaCoro dell'Opera Di Stato Di ViennaCoro dell'Opera di Stato di ViennaCoro dell'Opera di ViennaCoro della Staats-Oper di ViennaCoro della Wiener StaatsoperCoro: Staatsoper Di ViennaCorosCoros De La Opera Del Estado De VienaCoros De La Opera Del Estado De ViennaCoros De La Ópera Del Estado De VienaCoros De La Ópera Estatal De VienaCoros De la Opera Del Estado De VienaCoros de la Opera de VienaCorul Operei de stat din VienaDer Chor Der Staatsoper WienDer Chor Der Wieder StaatsoperDer Chor Der Wiener StaatsoperDer Chor der Staatsoper WienDer Chor der Wiener StaatsoperDer Männerchor Der Wiener StaatsoperDer Wiener StaatsopernchoirDer Wiener StaatsopernchorFrauenchor Des Wiener StaatsopernchoresFrauenchor des Wiener StaatsopernchoresHet Koor Van De Wiener StaatsoperHor Bečke Državne OpereIl Coro Della Wiener StaatsoperKonzertvereinigung Wiener StaatsopernchorKonzertvereinigung Wiener Staatsopernchor Orchestre Philharmonique de VienneKoorKoor Van De Weense StaatsoperaKoor Van De Wiener StaatsoperKoor van de Weense StaatsoperaKoret Fra Staatsoper WienLe Chœur de l'Opéra d'ÉtatLe Chœurs De L'Opéra D'ÉtatLes Choeurs De L'Opéra De VienneLes Choeurs de L'Opera de VienneLes Chœurs D'Opéra De VienneLes Chœurs De L'Opéra De VienneLos CorosLos Coros de la Opera de VienaMale ChorusMale Chorus Of The Vienna State OperaMembers Of The Vienna State OperaMembers Of The Vienna State Opera ChoirMiembros Del Coro Masculino De La Ópera De VienaMitglieder Des Chores Der Wiener StaatsoperMitglieder Des Herrenchores Der Staatsoper WienMitglieder Des Herrenchors Der Staatsoper WienMitglieder Des Wiener StaatsopernchoresMitglieder Des Wiener StaatsopernchorsMitglieder des Chores der Wiener StaatsoperMännerchor Der Konzertvereinigung Wiener StaatsopernchorMännerchor der Wiener Staatsoper In Der VolksoperOpera Choir ViennaOpera ChorusOpera Di Stato Di ViennaOpernchöreOrchester der Wiener Staatsoper in der VolksoperOrchestra Dell'opera Di Stato Di ViennaOrchestra Of ThChoruse Vienna State OperaOrchestra Of The Vienna State OperaOrchestra dell'Opera di ViennaOrchestre De L'Opéra De VienneOrchestre De L'opéra D'état De VienneSaatsopernchorSbor Státní Opery VídeňSbor Vídeňšké Státní OperySolisten Der Wiener Staatsoper In Der VolksoperSolistes De L'Opera D'Etat De VienneStaatsoperchorStaatsopernchorState Opera ChorusThe "Wiener Staatsopernchor"The Austrian State Symphony ChorusThe ChorusThe Chorus Of The Vienna State OperaThe Concert Chorus Of The Vienna State OperaThe Vienna Opera ChorusThe Vienna Opera OrchestraThe Vienna State OperaThe Vienna State Opera ChoirThe Vienna State Opera ChorusThe Vienna State Opera ChoursThe Vienna State Opera ChrousThe Vienna State Symphony Opera ChorusVSO ChorusVSOCVienna State Opera ChorusVienna Chamber ChorusVienna ChorusVienna Opera ChoirVienna Opera ChorusVienna Opera OrchestraVienna Philharmonic ChorusVienna Philharmonic OrchestraVienna Philharmonic State Opera ChorusVienna StaatsoperVienna Staatsoper ChorusVienna Staatsoper Men's ChorusVienna State OperaVienna State Opera ChoirVienna State Opera ChorusVienna State Opera Chorus · Wiener StaatsopenchorVienna State Opera Chorus*Vienna State Opera Chorus,Vienna State Opera Chorus, TheVienna State Opera ChorusCAVienna State Opera ChrousVienna State Opera Concert ChorusVienna State Opera OrchestraVienna State Opera, TheVienna Stete Opera ChoirViennea State Opera ChorusWeense StaatsoperaWiener ChorWiener ChovrWiener OperettenchorWiener OpernchorWiener OpernorchesterWiener Philharmoniker ChoirWiener StaatsoperWiener Staatsoper ChorWiener StaatsoperakoorWiener Staatsopern ChorWiener Staatsopern-ChorWiener StaatsopernchorsWiener StaatsopernorchesterWiener Statsoperaens KorWienerstatsoperaens KorWiens StatsoperakörZbor Bečke "Statsopere"Zbor Bečke Državne OpereZbor Bečke OpereZbor Bečke Staatsoperer Chor Der Staatsoper Wienus Of The Vienna State OperaКонцертный Хор Венской Государственной ОперыМужской Хор Венской Государственной ОперыСолисты И Хор Венской Государственной ОперыХорХор Венской Гос. ОперыХор Венской Государственной ОперыХор Венской Оперыウィーン国立歌劇場合唱団Konzertvereinigung Wiener StaatsopernchorElisabeth HöngenKurt EquiluzErich KunzNorbert BalatschErnst DunshirnLeo HeppeHelga SchrammKarl DönchHermann GallosDarrell ParsonsRudolf ReschNikolaus SimkowskyElisabeth KinskyElisabeth LangFriedrich StrackWolfgang Witte (3)Alexander PinderakCharlotte LeitnerDamen Des Wiener StaatsopernchorHans Peter Kammerer + +855073Francesco Molinari-PradelliItalian opera conductor, born 5 July 1911 in Bologna, Italy and died 8 July 1996 in Bologna, Italy.Needs VoteF. M. PradelliF. Molinari PradelliF. Molinari ~ PradelliF. Molinari-PradelliF. MolnariFrancesco Melinari PradelliFrancesco Molinar PradelliFrancesco Molinar i- PradelliFrancesco MolinariFrancesco Molinari - PradelliFrancesco Molinari PradelliFrancesco Molinari Pradelli)Francesco Molinari-PrandelliFranceso Molinari PradelliFrancesso Molinari-PradelliFranco Molinari-PradelliM. PradelliMolinariMolinari - PradelliMolinari PradelliMolinari-PradelliPradelliPrandelliФранческо Молинари-ПраделиФранческо Молинари-ПраделлиOtto Schneider (4) + +855099Anssi KarttunenAnssi KarttunenAnssi Karttunen (born 1960) is a Finnish cellist, now residing in Paris. He was taught by Erkki Rautio, William Pleeth, Jacqueline du Pré and Tibor de Machula, and has given the world premiere of over 80 works for cello as a soloist and chamber musician. Karttunen was the artistic director of the [a=Avanti!] Chamber orchestra between 1994 and 1998, the artistic director of the Helsinki Biennale in 1995 and 1997, and of the Suvisoitto-festival in Porvoo, Finland (1994-1997). He was the principal cellist of the [a=London Sinfonietta] from 1999 to 2005). As a conductor, he has worked with the Los Angeles Philharmonic cello ensemble, and the Gaida Ensemble in Vilnius.Needs Votehttp://www.karttunen.org/https://www.facebook.com/anssikarttunen.cellist/A. KarttunenAnssi KartunnenKarttunenLondon SinfoniettaZebra TrioTrio Hakkila-Helasvuo-Karttunen + +855140John Nelson (5)John Wilton NelsonAmerican conductor, +Born December 6, 1941, San José, Costa Rica. +Died March 31, 2025, ChicagoNeeds Votehttps://www.washingtonpost.com/obituaries/2025/04/08/john-nelson-dead-berlioz-conductor/https://www.gramophone.co.uk/classical%20music%20news/article/john-nelson-conductor-who-won-recording-of-the-year-for-les-troyens-dies-aged-83https://www.indianapolissymphony.org/article/remembering-john-nelson/http://www.bach-cantatas.com/Bio/Nelson-John.htmhttps://en.wikipedia.org/wiki/John_Nelson_(conductor)Nelsonジョン・ネルソン + +855164Franz Welser-MöstFranz Leopold Maria MöstBorn in Linz, Austria, on the 16th of August, 1960, Franz Welser-Möst is a conductor, and the seventh and current music director of [a547971], succeeding [a834229] in 2002. He has also served tenures with the [a271875], the [a2203755], and the [a754974]. +Needs Votehttps://www.welsermoest.com/http://www.clevelandorchestra.com/about/welser-most-bio.aspxhttps://www.facebook.com/franzwelsermoesthttp://de.wikipedia.org/wiki/Franz_Welser-M%C3%B6sthttp://en.wikipedia.org/wiki/Franz_Welser-M%C3%B6sthttps://www.youtube.com/franzwelsermoestFrans Welser-MöstFrans Wesler-MöstFranz MöstFranz Weiser-MöstFranz Welser-MostWelser-Möstフランツ・ウェルザー=メスト + +855167Norbert BalatschAustrian singer, chorus master and professor. +Born March 10, 1928 in Vienna. Died May 6, 2020 in Vienna.Needs Votehttp://en.wikipedia.org/wiki/Norbert_BalatschBalataschBalatschNobert BalatschNorbert BalaschNorbert BalataschNorbert BalatshНорберт Балачノルベルト・パラチュWiener Akademie KammerchorDie Wiener SängerknabenWiener StaatsopernchorDie ColibrisWiener Männergesang-Verein + +855170Piero CappuccilliItalian operatic baritone. He was born 9 November 1929 in Trieste, Italy, and died 12 July 2005 in Trieste, Italy.Correcthttp://en.wikipedia.org/wiki/Piero_CappuccilliCappuccilliP. CappuccilliP.CappuccilliPiero CappucciliPiero CappucilliPiero CapucciliPiero CapuccilliPiero CapucilliП.КаппуччилиПьеро КаппуччилиПьеро Каппуччиллиピエロ・カップッチルリピエロ・カプッチッリ + +855180Harald StrutzClassical trombonistNeeds VoteCollegium AureumHamburger Bläserkreis Für Alte Musik + +855181Hubert GumzClassical keyboardist and wind instrumentalistCorrectHamburger Bläserkreis Für Alte Musik + +855182Hamburger Bläserkreis Für Alte MusikHamburg Brass Ensemble for Early Music +If only members of this ensemble are credited, please use [a8499873].Needs VoteBläserkreis Für Alte MusikBläserkreis Für Alte Musik HamburgBläserkreis Für Alte Musik, HamburgBläservereinigung Für Alte Musik, HamburgComplesso A Fiati Per La Musica Antica Di AmburgoEnsemble De Vents De Musique Ancienne De HambourgEnsemble de Vents De Musique Ancienne De HamburgEnsemble à Vents de HambourgHamburg Wind EnsembleHamburg Wind Ensemble For Early MusicHamburg Wind Ensemble for Early MusicInstrumental-Ensemble Hamburger Bläserkreis Für Alte MusikQuatuor A Vents De HambourgQuatuor À Vent de HambourgRoderick SkeapingTrevor Jones (4)Harald StrutzHubert GumzWalfried KohlertUlrich BrandhoffFritz BrodersenMartin NitzHolger EichhornBernhard GedigaDetlef HaggeHelga WeberEberhard FiedlerMitglieder des Bläserkreises für Alte Musik, Hamburg + +855183Georg RatzingerGerman Roman Catholic priest and musician, born 15 January 1924 in Pleiskirchen, died 1 July 2020 in Regensburg, Germany. He was known for his work as the conductor of the [a=Regensburger Domspatzen] and as brother of [a=Joseph Ratzinger] who was Pope Benedict XVI from 2005 to 2013 and pope emeritus 2013-2022).Needs Votehttps://en.wikipedia.org/wiki/Georg_RatzingerDomkapellmeister Georg RatzingerDomkapellmeister RatzingerG. RatzingerGeorge RatzingerRatzingerUlsamer Collegium + +855185Walfried KohlertClassical trombonistNeeds VoteHamburger Bläserkreis Für Alte MusikArchiv Produktion Instrumental Ensemble + +855186Hans-Georg RennerClassical wood-wind instrumentalist and arranger.Needs VoteH. G. RennerHans Georg RennerCollegium Aureum + +855187Ulrich BrandhoffClassical cornettistCorrectHamburger Bläserkreis Für Alte Musik + +855189Hanns-Martin SchneidtProf. Hanns-Martin SchneidtGerman harpsichordist, organist, conductor and professor (* 06 December 1930 in Kitzingen, German Empire; † 28 May 2018 in Gräfelfing, Bavaria, Germany).Needs Votehttps://en.wikipedia.org/wiki/Hanns-Martin_Schneidthttps://trauer.merkur.de/traueranzeige/hanns-martin-schneidtH. M. SchneidtH.-M. SchneidtHanns Martin ScheidtHanns Martin SchneidtHans Martin SchneidtHans-Martin SchneidtSchneidtХанс Мартин ШнайдтХанс-Мартин Шнайдтハンス=マルティン・シュナイトThomanerchorBach-Orchester BerlinBach-Collegium Berlin + +855190Eduard MelkusAustrian violinist and violist (born on September 1st, 1928 in Baden near Vienna, Lower Austria).Needs Votehttps://www.eduard-melkus.com/https://www.musiklexikon.ac.at/ml/musik_M/Melkus_Eduard.xmlhttps://en.wikipedia.org/wiki/Eduard_Melkushttps://de.wikipedia.org/wiki/Eduard_Melkushttps://www.geschichtewiki.wien.gv.at/Eduard_MelkusE. M.E. MelkusE.MelkusEdouard MelkusMelkusProf. Eduard MelkusЭдуард МелкусCapella Academica WienConsort Of ViolsOrchestre Pro Arte De MunichSchola Cantorum BasiliensisLeonhardt Baroque EnsembleEnsemble Eduard MelkusCamerata Accademica HamburgDas Wiener Barock-TrioTonhalle-Orchester Zürich + +855191Fritz BrodersenGerman classical trombonist.Needs VoteCollegium AureumHamburger Bläserkreis Für Alte Musik + +855217Michael SchopperMichael Schopper (born 28. May 1942) is a German bass-baritone vocalist, he is professor in Frankfurt.CorrectM. SchopperMichaël SchopperSchopperRegensburger Domspatzen + +855218Heinrich Ignaz Franz BiberHeinrich Ignaz Franz von BibernBohemian-Austrian composer, violinist, and gambist (baptised 12 August 1644 – died 3 May 1704). + +His works show a predilection for canonic use and harmonic diapason that pre-date the later Baroque works of [a=Johann Pachelbel] and [a=Johann Sebastian Bach]. + +Biber was one of the most important composers for the violin in the history of the instrument. His technique allowed him to easily reach the 6th and 7th positions, employ multiple stops in intricate polyphonic passages, and explore the various possibilities of scordatura tuning. He also wrote one of the earliest known pieces for solo violin, the monumental passacaglia of the Mystery Sonatas. During Biber's lifetime, his music was known and imitated throughout Europe. In the late 18th century he was named the best violin composer of the 17th century by music historian Charles Burney. In the late 20th century Biber's music, especially the Mystery Sonatas, enjoyed a renaissance. Today, it is widely performed and recorded. + +Born in the small Bohemian town of Wartenberg (Stráž pod Ralskem), Biber worked at Graz and Kroměříž before he illegally left his Kroměříž employer (Prince-Bishop Carl Liechtenstein-Castelcorno) and settled in Salzburg, Austria. +In 1670, he joined the Kapelle at Salzburg, and this is where he remained until his death in 1704. He became director of the Kapelle in 1684 and was ennobled in 1690.Needs Votehttps://en.wikipedia.org/wiki/Heinrich_Ignaz_Franz_Biberhttps://de.wikipedia.org/wiki/Heinrich_Ignaz_Franz_Biberhttp://www.bluntinstrument.org.uk/biber/https://www.naxos.com/person/Heinrich_Ignaz_Franz_von_Biber/24291.htmhttps://www.britannica.com/biography/Heinrich-Biberhttps://www.treccani.it/enciclopedia/biber-heinrich-ignaz-franz-von_%28Enciclopedia-Italiana%29/https://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/heinrich-ignaz-franz-von-biberBibBiberBiber H. I. F.Biber H.I.F.Biber?Franz BiberFranz Ignaz Heinz Maria von BiberH. BiberH. I. BiberH. I. F. BiberH. I. F. BieberH. I. F. Von BiberH. I. Franz BiberH.I. BiberH.I. Franz BiberH.I. Franz von BiberH.I.F. BiberH.I.F. Biber (?)H.I.F. Von BiberH.I.F. von BiberH.I.F.BiberH.I.Franz BiberH.L.BiberHeiinrich BiberHeinrich BiberHeinrich Franz BiberHeinrich Franz Von BiberHeinrich Franz von BiberHeinrich I. BiberHeinrich I. F. BiberHeinrich I. F. Von BiberHeinrich I. F. von BiberHeinrich I. Franz BiberHeinrich I.F. BiberHeinrich I.Fr. BiberHeinrich Ignat. Franciscus BiberHeinrich Ignatius Franciscus BiberHeinrich Ignatius Fransiscus BiberHeinrich Ignatz Franz BiberHeinrich Ignaz BiberHeinrich Ignaz F. BiberHeinrich Ignaz Franciscus BiberHeinrich Ignaz Franz Biber Von BibernHeinrich Ignaz Franz Biber von BibernHeinrich Ignaz Franz Von BiberHeinrich Ignaz Franz von BiberHeinrich Ignaz Franz von BiberHeinrich Ignaz Friedrich Von BiberHeinrich Ignaz Von BiberHeinrich Ignaz von BiberHeinrich Ignaz von BibernHeinrich Ignaz von Franz BiberHeinrich J.F. Von BiberHeinrich Von BiberHeinrich von BiberHeinrich-Ignaz-Franz BiberHeirich Franz BiberHenr. Ignat. Franciscus BiberHenricus I. F. BiberI.H.F. BiberIgnaz FranzIgnaz von BiberJ.F.I. BiberJiří Ignác BiberVon Bibervon Bibervon Bibernvon BieberГ. БиберГ.И.Ф. БиберГенрих БиберГенрих Игнац БиберФ. Бибер + +855219James GriffettJames Griffet was an English tenor / countertenor vocalist (30 April 1939 in Stevenage, Hertfordshire, England - 11 August 2019 in Yorkshire, England).Needs Votehttp://www.bach-cantatas.com/Bio/Griffett-James.htmGriffettJ. GriffettJames GriffetJammes GriffettPro Cantione Antiqua + +855283Martin FouquéProf. Martin FouquéSound engineer and producer. In the 1970s also chief engineer of [l=Teldec-Studio, Berlin], born 06.01.1931 in Berlin, died 20.11.2023 ibid.Needs VoteDr. Martin FouqueFouquéM. FouquéMartin FouqueMartin FouquetProf. Martin FouquéMarc Oster + +855390Robert Taylor (7)Robert Percy TaylorUS disco songwriter, producer, arranger. Often associated to [a=Lee Garrett].Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=338809&subid=0Percy TaylorR. TaylorR. TaylotR.TaylorRobert "Real Rolla" TaylorTaylor + +855434André LardrotAndré Lardrot (born 5 March 1932) is a French classical oboist and teacher.Needs VoteAndre LardrotSinfonieorchester BaselRadio-Symphonie-Orchester BerlinI Solisti VenetiDas Mozarteum Orchester SalzburgZagrebački SolistiUnterhaltungsorchester Beromünster + +855438Guy TouvronGuy Touvron (15 February 1950 - 9 March 2024) was a French classical trumpet player and music teacher.Needs Votehttps://fr.wikipedia.org/wiki/Guy_Touvronhttps://en.wikipedia.org/wiki/Guy_Touvronhttps://www.imdb.com/name/nm8132126/http://www.guy-touvron.fr2, 5G. TouvronG.TouvronGuy TouceonGuy TouveronTouvronトゥーヴロンFestival Strings LucerneSlovak Chamber OrchestraI Solisti VenetiOrchestre De Chambre Jean-François PaillardEnsemble Orchestral De ParisEnsemble Instrumental De FranceTrompetengruppe Guy TouvronEnsemble De Cuivres Guy TouvronOrchestre De Chambre Jean BartheMaurice André And His Trumpet Consort + +855439Klaus SchliesserBassoonistCorrectBamberger Symphoniker + +855443Michael Schneider (2)German flutist, recorder player and conductor, born 1953. +Member of the [a=Camerata Köln] and cooperation with [a=Musica Antiqua Köln]. +Also active as conductor of baroque operas and oratorios. +Founder of the baroque orchestra [a=La Stagione], Frankfurt am Main. +Needs VoteBartoliM. SchneiderM.S. (Camerata Köln)Michael SchneiderSchneiderMusica Antiqua KölnLa StagioneCamerata KölnDas Kleine KonzertCappella Academica Frankfurt + +855579Katherine HagoCatherine HaggoViolinist. +She has been a member of [a=The English National Opera Orchestra] since 2009.Needs Votehttps://twitter.com/cathhaggo?lang=enK. HagoK.HagoRoyal Philharmonic OrchestraThe English National Opera OrchestraYoung Musicians Symphony Orchestra + +855709Engelbert Humperdinck (2)Engelbert HumperdinckGerman Romantic composer, born September 1, 1854, in Siegburg, died September 27, 1921, in Neustrelitz, best known for his operatic works.Needs Votehttps://en.wikipedia.org/wiki/Engelbert_Humperdinck_(composer)https://www.bach-cantatas.com/Lib/Humperdinck-Engelbert.htmhttps://adp.library.ucsb.edu/names/102652E HumperdinckE. HumperdinckEngelbert HumerdinkEngelbert HumperdinckEngelbert Humperdinck (1854 – 1921)Engelbert HumperdinkEnglbert HumperdinckEnglebert HumperdinckF. HumperdinckHumpderdinckHumperdickHumperdinckHumperdinck, EngelbertHumperdinkHumperdink'sM. HumperdinckГумпердинкаЭнгельберт Хампердинкフンパーディンクフンヾーティンク + +855756Bernard BartelinkDutch organist and composer, born 1929 in Enschede, The Netherlands.Needs Votehttp://www.bernardbartelink.nl/B. BartelinkBernhard BartelinkConcertgebouworkest + +855785Johan Ludvig RunebergJohan Ludvig RunebergFinnish-Swedish poet, writer and journalist, born on February 5, 1804 in Pietarsaari, Finland, died on May 6, 1877 in Porvoo, Finland. + +His works are often very patriotic.Needs Votehttp://www.runeberg.nethttps://sv.wikipedia.org/wiki/Johan_Ludvig_Runeberghttps://en.wikipedia.org/wiki/Johan_Ludvig_RunebergJ L RunebergJ L RunebgJ L. RunebergJ-L. RunebergJ. L. RunebergJ. R. RunebergJ. RunebergJ.L. RunebergJ.L.RunebergJohan LudvigJohan Ludwig RunebergJohan RunebergJojan Ludvig RunebergRunebergЙ. Рунеберг + +855890Erna BergerGerman lyric soprano of the coloratura style, born 19 October 1900 in Cossebaude (today part of Dresden), Germany, died 14 June 1990 in Essen, Germany.Needs Votehttp://en.wikipedia.org/wiki/Erna_Bergerhttps://adp.library.ucsb.edu/names/103230BergerE. BergerE. Berger, Soprano, State Opera, BerlinErna Berger Und Großes FilmorchesterKammersängerin Erna BergerЭрна Бергерエルナ・ベルガー + +855927Aleksandra NagórkoProducer and engineer.CorrectAleksandora NagórkoAleksandra NagorkoAleksandra NagònkoAleksandra NagòrkoAlexandra NargòrkoOla Nagórko + +856141Wolfgang LohseProducer and recording supervisor for [l7703].CorrectLohseWolfgang LoseΒόλφγκανγκ Λόζιヴォルフガング・ローゼ + +856226Geir Tore LarsenNorwegian cellist, born 1948 in Fredrikstad, Norway.Needs VoteGeir LarsenOslo Filharmoniske OrkesterMonn-Kvartetten + +856233Michael PraetoriusMichael SchultzeGerman composer, organist and music theorist, born circa 15th February 1571, Creuzburg, Free State Thuringia, today Germany, died 15th February 1621, Wolfenbüttel. +He was one of the most versatile composers of his age, being particularly significant in the development of musical forms based on Protestant hymns. +He is also the author of liturgical music performances & practices - such as his three-volume treatise 'Syntagma Musicum', published between 1614 & 1620. +Praetorius is a Latinized form of his family name of Schultze, adopted from his latter work and familiarity with the Venetian influences in his solo-voice, polychoral, and instrumental compositions.Needs Votehttps://en.wikipedia.org/wiki/Michael_Praetoriushttps://www.britannica.com/biography/Michael-Praetoriushttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102865/Praetorius_MichaelM PraetoriusM, PraetoriusM. PractopiusM. PraeteriusM. PraetoriousM. PraetoriusM. PratoriusM. PreatoriusM. PretoriusM. ProetoriusM. PräetoriusM. PrätoriusM. PrætoriusM. Prætorius*M.P.C.M.PraetoriusM.PretoriusM.PrätoriusM: PraetoriusMich. PraetoriusMich. PrätoriusMich. PrætoriusMichael PraetoricusMichael PraetoriousMichael PraetoriuksenMichael Praetorius (trad.)Michael Praetorius - VulpiusMichael PratoriusMichael PreatoriusMichael PretoriusMichael PräteriusMichael PrätoriusMichael Prätorius 1599Michael PrætoriusMichael VulpiusMichal PraetoriusMichaël PraetoriusMichaël Praetorius CreuzbergensisMichaël PreatoriusMicheal PraetoriusMichel PraetoriusMikael PraetoriusPiaetorius (1571)PlaetoriusPraetiriusPraetoeriusPraetoriasPraetoriousPraetoriusPraetorius (éd.)Praetorius M.Praetorius, M.Praetorius, MichaelPratoriusPreatoriusPretoriusProetoriusPrätoriusPrætoriusSatz: Michael PrätoriusVulpis-PraetoriusМ. ПреториусМихаэль Преториусプレトリウスミヒャエル・プレトリウス + +856238Niels AschehougNorwegian violinist, born 1963 in Oslo, Norway.CorrectOslo Filharmoniske Orkester + +856327Emily MacPhersonBritish violinistNeeds VoteScottish Chamber Orchestra + +856328Jennifer ChristieClassical violinistNeeds VoteRoyal Philharmonic Orchestra + +856333Kate ReadClassical violist.Needs VoteBBC Symphony OrchestraAbsolute Zero (3)The Newfoundland Symphony OrchestraYoung Musicians Symphony Orchestra + +856334Michael AtkinsonClassical cellist.Needs VoteBBC Symphony OrchestraAbsolute Zero (3)Young Musicians Symphony Orchestra + +856337Jamie PullmanClassical violist.Needs VoteJames PullmanMillennia StringsBournemouth Symphony OrchestraAbsolute Zero (3)Young Musicians Symphony Orchestra + +856586Billy Banks (2)William BanksAmerican jazz vocalist (b. Alton, IL, c. 1908; d. Tokyo, 19 Oct. 1967). Head of [a=The Rhythmakers], studio group including Henry "Red" Allen and Fats Waller + +Billy Banks (c. 1908 – October 19, 1967, Tokyo, Japan) was an American jazz singer. Banks is most prominently remembered for being a successful female impersonator on record. + +Banks recorded in 1932 with an all-star, multi-racial jazz lineup made up of Red Allen on trumpet, Pee Wee Russell on clarinet, Tommy Dorsey on trombone, Joe Sullivan on piano, Zutty Singleton on drums, and Fats Waller, also on piano; most of the black musicians were from Luis Russell's retinue, while the white ones had been brought to the studio by producer Irving Mills. The vocals were once thought to have been performed by Una Mae Carlisle, but Banks is the actual vocalist. + +Banks worked with Russell as a showman and vocalist, and later worked with Noble Sissle. He later performed in cabarets under Billy Rose, then toured Europe, Australia, and East Asia in the 1950s. One of his last recordings was done in Denmark in 1954 with Cy Laurie. Late in the 1950s, he relocated to Japan, and died there in Tokyo in 1967. Needs Votehttps://en.wikipedia.org/wiki/Billy_Banks_(singer)https://adp.library.ucsb.edu/names/110396B. BanksBillyBilly BankThe RhythmakersBilly Banks And His Orchestra + +857108Thomas ZehetmairThomas ZehetmairAustrian violinist and conductor, born 23 November 1961 in Salzburg. +In 1994 he founded the [a1676689]. +Husband of [a=Ruth Killius]Needs Votehttps://en.wikipedia.org/wiki/Thomas_Zehetmairhttps://de.wikipedia.org/wiki/Thomas_Zehetmairhttps://www.bach-cantatas.com/Bio/Zehetmair-Thomas.htmZehetmairトーマス・ツェートマイアーConcentus Musicus WienCamerata BernZehetmair QuartettSwiss Chamber Soloists + +857114Jacques JouineauJacques Jouineau (1924) was a French chorus master who conducted [a=Maîtrise De Radio France] and [a=Choeurs De Radio France].Needs VoteJ. JouineauJ. JouinotJacques JouinneauChœur de Radio FranceMaîtrise De Radio France + +857123Jean-Philippe LafontClassical baritone vocalistNeeds VoteJean Philippe LafontJean Philippe LafonteLafontジャン=フィリップ・ラフォンジャン=フィリップ・ラフォント + +857319Herbert BöckAustrian conductor and university lecturer at the [l1554951] (* 1958 in Hollabrunn, Austria).Needs Votehttps://www.uni-mozarteum.at/people.php?p=50127Die Wiener SängerknabenConcentus VocalisChorus Viennensis + +857320Michael GrohotolskyCorrectDie Wiener SängerknabenChorus Viennensis + +857321Concentus VocalisAustrian classical chorus from Vienna founded in 1980 by [a857319].Correcthttp://concentusvocalis.at/Concentus Vocalis WienConcentus Vocals WienConcentus Vocals, WienDamenchor Des Concentus VocalisDer Kammerchor Hollabrunn "Concentus Vocalis"Kammerchor HollabrunnHerbert Böck + +857608Anthony HalsteadBritish classical French horn soloist, conductor, director/harpsichordist, and Professor of Horn. Born 18 June 1945 in Manchester, England, UK. +He has been a leader in the period instrument movement as horn player, harpsichordist, scholar, advisor, and conductor. +He attended the Royal Manchester School of Music studying horn, composition, organ, and piano. After leaving college, he studied harpsichord and conducting. He was briefly 4th Horn with the [a=Bournemouth Symphony Orchestra]. Then Co-Principal & Principal with the [a=London Symphony Orchestra] (1969-1973), Principal with the [a=English Chamber Orchestra] (1972-1986), [a=The Academy Of Ancient Music] (01/1985-06/2008), [a4713045], the [a=Hanover Band], [a=The English Baroque Soloists], the [a=London Classical Players], and the [a=Orchestra Of The Age Of Enlightenment]. In 2011, he founded the [b]Tony Halstead Horn Ensemble[/b]. He taught at [l305416] (1971-1999).Needs Votehttps://www.linkedin.com/in/anthony-halstead-3a476b133/?originalSubdomain=ukhttps://open.spotify.com/artist/2SSWdLQmVLFOZ2tTm2PqHShttps://music.apple.com/us/artist/anthony-halstead/242600http://www.halsteadmusic.co.uk/tony-halsteadhttps://en.wikipedia.org/wiki/Anthony_Halsteadhttps://www.hornsociety.org/ihs-people/honoraries/26-people/honorary/463-halsteadhttps://guild-of-hornplayers.co.uk/ensemble-members/tony-halstead/https://musicianbio.org/anthony-halstead/http://cor.naturel.free.fr/english/menu/horn_players/anthony_halstead.htmhttps://www.musicteachers.co.uk/teacher/01ffddda85d54dff7092https://www.naxos.com/person/Anthony_Halstead_31607/31607.htmT. HallsteadT. HalsteadT.HallsteadTony HallsteadTony HalsteadLondon Symphony OrchestraEnglish Chamber OrchestraThe Parley Of InstrumentsPhilip Jones Brass EnsembleBournemouth Symphony OrchestraThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLondon Classical PlayersLondon Wind OrchestraHanover BandThe King's ConsortThe Academy Of Ancient Music Chamber EnsembleThe English Concert WindsL'Estro ArmonicoHausmusik (2)The English Concert + +857764Christina HögmanAnna Christina Högman SparfSwedish soprano, opera and concert singer, born February 18, 1956. + +She is educated at the Stockholm Academy of Music. She made her debut in 1985 in Pergolesi's Il maestro di musica, at Drottningholmsteatern. She has appeared on many different stages and in many different contexts; oratorios, opera, romances and chamber music. After many years of involvement at the Staatsoper in Hamburg, she has visited stages such as Theater Basel, Tyrolean Landesteater in Innsbruck, Opéra du Rhin in Strasbourg, Opéra National in Montpellier and more. At home in Sweden, she has been seen in opera contexts at Drottningholmsteatern and the Royal Opera in Stockholm, but above all at the Folkoperan, where she has performed in several major roles over the past two decades. + +The opera roles include Elisabetta in Don Carlos, Donna Elvira in Don Giovanni, Countess Almaviva in Figaro's Wedding and Despina in Così fan tutte, Wellgunde in Rhenguldet and Sivan in Jeppe by Sven-David Sandström. She did the title role in Marie Antoinette by Daniel Börtz at the premiere at the Folkoperan in 1998.Needs Votehttp://www.bach-cantatas.com/Bio/Hogman-Christina.htmhttps://sv.wikipedia.org/wiki/Christina_H%C3%B6gmanC. HögmanG. HögmanHögman + +857765Nils-Erik SparfSwedish violinist and viola player, born 1952 in Boda in Dalarna. + +He was educated at the Royal Academy of Music in Stockholm (1965-71) and at the Conservatory of Music in Prague (1972-73). + +He is concertmaster of the [a=Drottningholms Barockensemble] and the [a=Uppsala Kammarorkester].Needs Votehttps://sv.wikipedia.org/wiki/Nils-Erik_SparfN.E. SparfNil-Erik SparfNils-Erol SparfUppsala KammarorkesterDrottningholms BarockensembleUppsala KammarsolisterTango ClásicoDuo Sparf + +857842Libor PešekLibor PešekCzech conductor. +Born: 22 June 1933 in Prague (former Czechoslovakia). +Died: 23 October 2022.Needs Votehttps://cs.wikipedia.org/wiki/Libor_Pe%C5%A1ekhttps://en.wikipedia.org/wiki/Libor_Pe%C5%A1ekhttps://english.radio.cz/libor-pesek-czech-conductor-and-knight-british-empire-8076557https://www.imdb.com/name/nm1398879/L PesekL. PesekL. PešekL.PesekL.ペセLibok PesekLibor BesekLibor PesekLibor PesékLibor PesěkLibor PeŝekLibor PisekLibr PesekLibro PesekLitor PesekPesekPesékPešekЛибор ПасекЛибор ПесекЛибор Пешекリボル・ペシェクリボール・ペシェックKomorní HarmonieKomorní Filharmonie PardubiceSebastian Orchestr + +857909François PolyFrench cellist.Needs VoteLe Concert SpirituelLes Folies Françoises + +858371Renato BrusonItalian operatic baritone, born 13 January 1936.Needs Votehttp://en.wikipedia.org/wiki/Renato_BrusonBrusonR. BrusonRenata BrusonRenato BruzonРенато Брузон + +858372Ghena DimitrovaГена ДимитроваBulgarian operatic soprano, born 6 May 1941 in Beglesch / Plewen, Bulgaria, died 11 June 2005 in Milano, Italy.Needs Votehttps://en.wikipedia.org/wiki/Ghena_DimitrovaDimitrovaG. DimitrovaGena DimitrovaГ. ДимитроваГена Димитрова + +858376Bruno BartolettiBruno BartolettiItalian operatic conductor. + +Born: 10 June 1926 in Sesto Fiorentino, Tuscany, Italy. +Died: 9 June 2013 in Florence, Tuscany, Italy (aged 86). + +Well known as the Principal Conductor for Lyric Opera Of Chicago. +Needs Votehttps://en.wikipedia.org/wiki/Bruno_BartolettiB. BartolettiBartoletti + +858380Victoria De Los AngelesVictoria de los Angeles López GarcíaVictoria de los Ángeles (in Catalan, Victòria dels Àngels) (born November 1, 1923, Barcelona, Spain – died January 15, 2005) was a Spanish Catalan operatic soprano and recitalist.Needs Votehttps://www.victoriadelosangeles.org/https://www.facebook.com/fundvda/https://twitter.com/fundvdahttps://www.youtube.com/channel/UCWGUlf3lT6xRkxB-iwLc_lghttps://www.linkedin.com/company/fundaci%C3%B3-victoria-de-los-%C3%A1ngeles/https://www.instagram.com/fund_victoriadelosangeles/https://en.wikipedia.org/wiki/Victoria_de_los_%C3%81ngeleshttps://es.wikipedia.org/wiki/Victoria_de_los_%C3%81ngeleshttps://www.imdb.com/name/nm1658656/De Los AngelesLos AngelesMiss De Los AngelesThe Fabulous Victoria De Los AngelesV. De Los AngelesV. de Los AngelesVictoriaVictoria De Los ÁngelesVictoria Del Los AngelesVictoria Dels AngelsVictoria Le Los AngelesVictoria de Los AngelesVictoria de Los ÀngelesVictoria de Los ÁngelesVictoria de los AngelesVictoria de los ÀngelesVictoria de los ÁngelesVictòria Dels ÀngelsVictòria Dels ÁngelsVictòria dels ÀngelsVittoria De Los Angelesde Los Angelesde los AngelesВ. Де Лос АнджелесВ. Де Лос АнжелесВ. Де Лос АнхелесВиктория Де Лос АнжелесВиктория Де Лос АнжелосВиктория Де Лос АнхелесВиктория де лос АнжелесВиктория де лос Анхелесヴィクトリア・デ・ロス・アンヘレス + +858387Elise BåtnesNorwegian violinist and conductor. + +Born 1971 in Trondheim, Norway.Needs VoteElise BådnesWDR Sinfonieorchester KölnOslo Filharmoniske OrkesterOslo Philharmonic Chamber GroupTrønderkvartetten + +858438Joanna GambleExecutive producer for the labels [l=Hyperion] and [l=Helios] from 1990 to 1997. She is now an alto vocalist, performing with various opera companies.Correcthttp://uk.linkedin.com/pub/joanna-gamble/4/b37/a68Collegium Vocale + +858441Cappella AmsterdamCappella Amsterdam was established by Jan Boeke in 1970 and has, since 1990, been under the artistic leadership of Daniel Reuss.Needs Votehttps://www.cappellaamsterdam.nl/Capella AmsterdamWilliam KnightPhilipp CieslewiczHarry Van BerneHarry van der KampBeat DuddeckRobert Van Der VinneOtto BouwknegtJob BoswinkelDan Martin (5)Astrid LammersGerhard HölzleSimone MandersStephan GählerKees Jan De KoningBernard WinsemiusKate ClarkStefan BerghammerMaria KöpckeElsbeth GerritsenDorothea JakobRoss BuddieInga SchneiderAngus Van GrevenbroekMichel Poels (2)Marijke van der HarstChristoph DrescherJon EtxabeTilmann KögelJan Hoffmann (4)Valeria MignacoSimon SavoyMaarten Van Der HeijdenGerben HoubaDesirée VerlaanJan DouwesAndrea van BeekDorien LieversGuido GroenlandRachel Thompson (2)Diederik RookerSabine van der HeydenPetra EhrismannLaura LopesMarian DijkhuizenMatija BizjanMartin LogarPierre-Guy le Gall WhiteMieke van LarenMarielle KirkelsBart OenemaChristian van EsMarjo van SomerenSuzanne VerburgZigmārs GrasisLette VosEline WelleTobias Segura PeraltaLaura Rodrigues LopesJohan VermeerJelle Leistra + +858480Pierre Dervaux (2)French conductor, composer and pedagogue. Born 3 January 1917 in Juvisy-sur-Orge, France and died 20 February 1992 in Marseille, France. +Has been the first conductor of the Orchestre National Des Pays De La Loire created in 1971.Needs VoteDervauxGMD Pierre DervauxP. DervauxP.DervauxPierre DervauxPierre DevauxPierre DevreuxП. ДервоПьер Дервоפייר דרוםピェール・デルボウピエール・デルヴォーOrchestre National Des Pays De La Loire + +858575Camerata BernSwiss chamber ensemble, founded in 1963. +Since 2000 its artistic director as been [a=Erich Höbarth].Needs Votehttps://www.cameratabern.ch/https://www.youtube.com/channel/UCIP9w4NiGV34rR6_TkmiwCACamerata De BernaCamerata De BerneCamerata de BernaCamereta BurnCarmerata BernOrchestre De Chambre Camerata BernThe Camerata Of BernHeinz HolligerAurèle NicoletGöran SöllscherThomas DemengaErnst KovacicMaya HomburgerThomas ZehetmairBeat SchneiderErich HöbarthKarel BoeschotenThomas FüriMichael BollinJens LohmannFlorian KellerhalsAnna PfisterCatrin DemengaNicolas PachePatrick GenetLuise PellerinKaren TurpieAndreas ErismannRenée StraubImke FrankFriedemann JähnigJörg Ewald DählerMichael CopleyJost MeierRegula HäuslerRuth KilliusHeinrich ForsterLiisa TamminenMeesun HongIsabelle BrinerChristine RagazChristiane NicoletSophie Arbenz-BraunsteinMartin HumpertRose-Marie van WijnkoopElisabeth HäuslerSusanne MathéStéphanie MeyerAlejandro MettlerSibylla LeuenbergerNathalie VandroogenbroeckKäthi SteuriHyunjong KangMisa StefanovichDaniel HauptmannMassimo PolidoriJonas ErniDaniel Steiner (3)Andreas PreisserMarkus MaibachBettina SartoriusMonika Urbaniak LisikNatalie CheeAnnette DählerAlexander BesaBernd HaagRuggero AllifranchiniMartin MerkerValentina BernardoneSimone RoggenThomas Kaufmann (2)Afanasy ChupinVital Julian FreyMarko MilenkovićLily Higson-SpenceGabriel WernlyChristina Merblum BollschweilerVlad Popescu (5) + +858577Paul SacherSwiss conductor, patron and founder of the [a=Basler Kammerorchester] and the [a6643962] (* April 28, 1906 in Basel, Switzerland; † May 26, 1999 in Basel, Switzerland). Needs Votehttps://www.paul-sacher-stiftung.ch/https://de.wikipedia.org/wiki/Paul_Sacherhttps://en.wikipedia.org/wiki/Paul_SacherDr. h.c. Paul SacherM. Paul SacherPaul SacheSacherПауль Захер + +858578Collegium Musicum ZürichSwiss chamber ensemble founded by [a858577]. Active from 1941 to 1992.CorrectCollegium MusicumCollegium Musicum De ZurichCollegium Musicum Of ZürichCollegium Musicum, CirihCollegium Musicum, ZurichCollegium Musicum, ZürichDirectorOrchestra Of The Collegium MusicumOrchestre Du Collegium Musicum De ZurichOrchestre Du Collegium Musicum De ZürichThe Collegium Musicum ZurichThe Collegium Musicum ZürichThe Collegium Musicum, ZürichThe Zurich Collegium MusicumZurich Collegium MusicumBrenton LangbeinMartin DerungsKathrin GrafRomana Pezzani + +858579David ReichenbergDavid Reichenberg (July 13, 1950, Cedar Falls, Iowa, US - June 10, 1987, London, England) was an American oboist and a highly respected specialist on the baroque oboe.Needs Votehttps://www.wikiwand.com/en/David_Reichenberghttps://en.wikipedia.org/wiki/David_Reichenberghttps://www.findagrave.com/memorial/113250682ReichenbergThe Parley Of InstrumentsThe English Baroque SoloistsConcentus Musicus WienLondon BaroqueThe Academy Of Ancient MusicL'École D'OrphéeThe English Concert + +858633Donn TrennerDonald Richard TrennerAmerican jazz pianist and arranger +Born March 10, 1927 in New Haven, Connecticut, USA, died May 16, 2020 (age 93) in Guilford, Connecticut, USA +Married to singer [a=Helen Carr] (1946-1960, her death) +Married to singer/actress [a=B.J. Ward] (1966-1978, divorced) + +He played with Ted Fio Rito, Buddy Morrow, Charlie Barnet, Jerry Gray, Charlie Parker, Stan Getz, Georgie Auld, Jerry Fielding, Skinnay Ennis, Les Brown, Dick Haymes,Jack Jones, Lena Horne, Nancy Wilson, Oscar Pettiford, Anita O'Day, Tommy Dorsey, Howard McGhee, Francis Faye, Betty Roche, Nelson Riddle, Charles Mingus and Ben Webster.Needs Votehttp://en.wikipedia.org/wiki/Donn_Trennerhttps://www.imdb.com/name/nm1246021/https://web.archive.org/web/20210625044938/http://donntrenner.com/Welcome.htmlD. TrennerDon TrennerDonn Trenner OctetTrennerLes Brown And His Band Of RenownGerry Mulligan QuartetDave Pell OctetDonn Trenner And His OrchestraVic Schoen And His All Star BandDon Fagerquist NonetteRay Sims With StringsRonny Lang SaxtetDonn Trenner Octet + +858834Thomas MorleyThomas Morley (1557 or 1558 – October 1602) was an English composer, theorist, editor and organist of the Renaissance, and the foremost member of the English Madrigal School. He was the most famous composer of secular music in Elizabethan England. He and Robert Johnson are the composers of the only surviving contemporary settings of verse by Shakespeare.Correcthttps://en.wikipedia.org/wiki/Thomas_Morleyhttps://www.elizabethan-era.org.uk/thomas-morley.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102442/Morley_ThomasJohn Mundy (1555-1831)MoreleyMorleyMorley T.Morley Th.T. MorleyT.MorleyTh. MorlayTh. MorleyTh.MorleyThomas MorelyThomas MorlayThomas Morley?Thomas-MorleyТ. МорлейТ. Морли + +858951Ottetto ItalianoCorrectAlberto NegroniDanilo MarchelloPaolo BrunelloLuca MilaniSergio BoniCarrado GiuffrediLuigi SabanelliRino VernizziEttore BongiovanniAngelo PersichilliCorrado GiuffrediGabriele ScrepisLuigi Milani (2) + +858952Alberto NegroniClassical oboist. Born and educated in Bologna, Italy. He studied with [a=Gino Siviero], [a=Harold Gomberg], [a=Lothar Koch], and [a=Milan Turkovic]. Alberto began his orchestral career at a young age, playing Principal Oboe in the [a=Orchestra Del Teatro Comunale Di Bologna] and the [a=Orchestra Sinfonica Abruzzese]. In 1985, chosen by [a=Riccardo Muti], he became Principal Oboist at the [a=Orchestra Del Teatro Alla Scala] and in the [a=Filarmonica Della Scala]. In 1996, he left the Scala, to become Principal Oboist in the [a=Orchestra Del Maggio Musicale Fiorentino]. [a=Zubin Mehta] was his mentor, and great admirer of his playing. Negroni has performed as a soloist in the most famous concert halls: Royal Albert Hall, The Scala, Carnegie Hall. In 2008, invited by Mehta himself, he went on tour with the [a=Israel Philharmonic Orchestra]. + +Alberto still plays with both the [a=Orchestra Del Teatro Alla Scala] and in the [a=Filarmonica Della Scala]. He has recorded for Sony, EMI and Philips.CorrectOrchestra Del Teatro Comunale Di BolognaIsrael Philharmonic OrchestraOrchestra Del Teatro Alla ScalaOttetto ItalianoOrchestra Sinfonica AbruzzeseOrchestra Del Maggio Musicale FiorentinoFilarmonica Della Scala + +858953Danilo MarchelloClassical hornistNeeds VoteMarchelloOrchestra Di Padova E Del VenetoOttetto Italiano + +858954Paolo BrunelloItalian classical oboist + cellistNeeds VotePaollo BrunelloOrchestra Di Padova E Del VenetoOttetto ItalianoEnsemble Legrenzi + +858955Luca MilaniClassical clarinettist.Needs VoteOrchestra Luca MilaniOttetto ItalianoOrchestra Sinfonica Nazionale Della RAI + +858956Sergio BoniNeeds VoteM° Sergio BoniOttetto ItalianoKaos Ensemble + +858958Luigi SabanelliCorrectOttetto Italiano + +858959Rino VernizziItalian classical bassoonist. +(born 15 November 1946, Mezzano Inferiore, Italy)Needs Votehttps://it.wikipedia.org/wiki/Rino_Vernizzihttps://en.wikipedia.org/wiki/Rino_VernizziR. VernizziVernizziOttetto ItalianoOrchestra dell'Accademia Nazionale di Santa CeciliaRino Vernizzi Quartet + +858967Ondrej LenárdSlovak conductor, born September 9, 1942 in Krompachy.Needs Votehttps://en.wikipedia.org/wiki/Ondrej_Len%C3%A1rdAndré LenardAndré LenerdLenArdLenardLenárdLenárd O.O LenardO. LenardO. LenárdO. LénardO.j LenárdOndr LenardOndre LenardOndrei LenardOndrej LenardOndrej Lenard, ConductorOndrej LenaárdOndrej LenàrdOndrej LeonardZasl. Um. O. LenárdА. ЛенардО. ЛенардОндрей ЛенардSlovak Radio Symphony Orchestra + +858995André EmelianoffAmerican classical cellist, born 1942 in New York, New York, and died June 1, 2020.Needs VoteAndre EmelianoffAndre EmilianoffAndre EmilianuffThe Cleveland OrchestraDa Capo Chamber PlayersColumbia String QuartetThe Kapell Trio + +859024Fritz LehanGerman conductor.CorrectLehan + +859030Sabine MeyerGerman classical clarinetist, born 30 March 1959 in Crailsheim, Germany. Sister of [a=Wolfgang Meyer (3)]. She is married to German clarinetist [a=Reiner Wehle].Correcthttps://www.sabine-meyer.com/https://en.wikipedia.org/wiki/Sabine_MeyerS.MeyerSabina MeyerSabineSabine 'Russ' MeyerSebine Meyerザビーヌ・マイヤーザビーネ・マイヤーKremerata MusicaBläserensemble Sabine MeyerBundesjugendorchesterTrio Di Clarone + +859034Wolfgang BaumgartChorus master, repetiteur.Correct + +859035Christfried BickenbachAppears as classical organist and producer +died in July 2006 in the age of 77 yearsNeeds Votehttps://wolgograd.de/pdf/wv_info37.pdfBickenbachBickenbackC. BickenbachCh. BickenbachChr. BickenbachChrisfried BickenbachChristfried BichenbachChristfried BickChristfried BickbachChristfried BickenbackChristfried BickerbachChristian BickenbachChrístfríed BíckenbachCristoph Bickenbach + +859046Victor De SabataVictor de SabataItalian conductor and composer (born April 10, 1892, Trieste, Austro-Hungarian Empire (now Italy) - died December 11, 1967, Santa Margherita Ligure, Liguria, Italy). Grandfather of [a3396182].Needs Votehttp://en.wikipedia.org/wiki/Victor_de_Sabatahttps://www.ricordi.com/en-US/Composers/D/De-Sabata-Victor.aspxDe SabataM.o Victor De SabataV. De SabataV. de SabataVictor De SabateVictor De SabbataVictor SabataVictor de SabataVíctor de Sabatade SabataВиктор Де Сабата + +859081Gene PorterEugene PorterAmerican jazz saxophonist and clarinetist. + +Born : June 07, 1910 in Pocahontas, Mississippi. +Died : February 24, 1993 in California. + +He played with the Clarence Desdunes' Orchestra, [a=Papa Celestin] and [a=Joe Robichaux] +Needs Votehttps://en.wikipedia.org/wiki/Gene_Porterhttps://musicbrainz.org/artist/a79b03c4-10fd-41b7-8f6b-6bb5c12a0d6dE. PorterEugene PorterG. PorterFats Waller & His RhythmBenny Carter And His OrchestraHoward McGhee And His OrchestraLucky Thompson's All StarsCharles Mingus SextetWilbert Baranco OrchestraWilbert Baranco And His Rhythm BombardiersJoseph Robichaux And His New Orleans Rhythm BoysIvie Anderson And Her All StarsWalter Fuller And His Club Royal Quintet + +859087Gene PhillipsEugene Floyd PhillipsAmerican rhythm & blues guitarist and singer, played in his hometown St. Louis in the 1930s, move to Los Angeles in 1942, active there until the early 1950s. "Personal problems forced his career into decline in the '50s." (The Penguin guide to blues recordings (2006), p. 520) + +Born: July 25, 1915 in St. Louis, Missouri. +Died: January 10, 1990 in Lakewood, California.Needs Votehttp://en.wikipedia.org/wiki/Gene_Phillipshttps://www.uncamarvy.com/GenePhillips/genephillips.htmlEarl PhillipsEugene F. PhillipsEugene Floyd "Gene" PhillipsEugene Floyd PhillipsEugene Floyd “Gene” PhillipsEugene PhillipsG. PhillipsGene PhilipsPhillipsBob Mosely & All StarsJoe Liggins OrchestraGene Phillips & His OrchestraGene Phillips & His Rhythm AcesGene Phillips And His Orchestra + +859111Clint NeagleySaxophonistNeeds Votehttps://www.allmusic.com/artist/clint-neagley-mn0000567306/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/207215/Neagley_ClintC. NeagleyC. NedgleyC.R. NeagleyClint NeafleyClint NeaglyClinton NeagleyNagleyNeagleyGene Krupa And His OrchestraBenny Goodman And His OrchestraGeorgie Auld And His OrchestraDan Terry And His OrchestraJesse Price And His Blues BandEddie Miller's Orchestra + +859118Jesse PriceAmerican jazz and rhythm & blues drummer and singer, born Memphis, Tennessee, 1 May, 1909; died Los Angeles, California, 19 April, 1974. +Price recorded with his band for Capitol in Los Angeles in 1946 and 1947, with a few later recordings for Miltone and Ebb. +He also played with Jay McShann 1946-1947 and again in 1966, and accompanied artists such as Pete Johnson, Tiny Kennedy, Elmon Mickle, Hot Lips Page, and Johnny “Guitar” Watson.Needs VoteJ. M. PriceJ. PriceJesseJessie PriceLittle JessePriceElla Fitzgerald And Her Famous OrchestraHot Lips Page And His OrchestraBus Moten & His MenHarlan Leonard And His RocketsJesse Price QuartetJesse Price And His Blues BandJesse Price And His BandJesse Price & His OrchestraRed Norvo's NineJesse Price QuintetJesse Price & His Jump Jivers + +859122Bob PolandJazz saxophonistNeeds VoteB. PolandPalandR. PolandRobert PolandHarry James And His OrchestraBuddy Rich And His OrchestraCharlie Barnet And His OrchestraShep Fields And His New MusicHal McIntyre And His OrchestraBenny Goodman And His OrchestraHarry James & His Music MakersSpike Jones & His Other OrchestraBuddy Rich All StarsThe Louis Bellson OctetBuddy Rich Nonet + +859125Vernon Smith (2)Vernon L. SmithVernon "Geechie" Smith was a trumpeter / vocalist from the Tulsa, Oklahoma, area during the postwar Kansas City Swing period and a photographer during the 70s and 80s. He retired in the 90s.Needs Votehttp://www.wendycarlos.com/photos.htmlSmithVern SmithVernon "Geechie" SmithVernon 'Geechie' SmithVernon L SmithVernon L. SmithGeechie SmithCharlie Barnet And His OrchestraMonroe Tucker And His Orchestra + +859212Hans GrafHans Graf (born 15 February 1949 in Marchtrenk, Austria) is an Austrian conductor. +Titular conductor of Mozarteumorchester Salzburg from 1984 to 1994 and [a4401951] from 1993 to 1996. + +Please use [a12454873] for the Austrian pianist (1928 - 1994). +Needs Votehttps://en.wikipedia.org/wiki/Hans_GrafH. GrafHans Graf, ConductorHanss GrafsГанс ГрафDas Mozarteum Orchester SalzburgOrquesta Sinfónica de Euskadi + +859339Walter Williams (3)Jazz trumpeter + +Appearing in releases of [a=Lionel Hampton], [a=Clifford Brown], [a=Quincy Jones] etc.Needs VoteLionel Hampton And His OrchestraBenny Carter And His OrchestraLes Hite And His OrchestraJimmy Mundy OrchestraClifford Brown Big BandLionel Hampton And His Paris All Stars + +859452Vladimir GolschmannFrench conductor. Born 16 December 1893 in Paris, France and died 1 March 1972 in New York City, New York, USA. +He was the music director of the [a=Saint Louis Symphony Orchestra] from 1931 to 1958.Needs Votehttp://en.wikipedia.org/wiki/Vladimir_GolschmannGolschmannV. GolschmannVladimir GoldschmannVladimir GolschmanVladimir Golschmann, ConductorVladimir GolšmanWladimir GolschmannВ. ГольшманВл. ГольшманColumbia Symphony OrchestraSaint Louis Symphony OrchestraOrquesta Sinfonica De Bilbao + +859780Janos StarkerJános StarkerHungarian-American classical cellist and pedagogue. +Born 5 July 1924 in Budapest, Hungary; died 28 April 2013 in Bloomington, Indiana, USA.Needs Votehttps://www.cello.org/cnc/starker/starker.htmhttps://en.wikipedia.org/wiki/J%C3%A1nos_StarkerJames StarkerJano StarkerJános StarkerJános StárkerStarkerStarker JánosYa. StarkerЯнош Старкерヤーノシュ・シュタルケルChicago Symphony OrchestraRoth String Quartet + +859783Henry BusseHenry Herman BusseJazz trumpeter and composer and bandleader. +Born 19 May 1894 in Magdeburg, Germany. +Died 23. April 1955 in Memphis, TN, USA. +Married to actress [a3296739] (1935-1955, his death). +Busse was a songwriter ("Hot Lips", "Wang Wang Blues"), conductor, composer, and trumpeter in the Paul Whiteman orchestra between 1918-1928. He then formed his own orchestra.Needs Votehttps://en.wikipedia.org/wiki/Henry_Bussehttps://www.findagrave.com/memorial/17875088/henry-bussehttps://www.imdb.com/name/nm0124435/https://syncopatedtimes.com/henry-busse-1894-1955/https://web.archive.org/web/20030924191946/http://nfo.net/usa/b10.htmlhttps://adp.library.ucsb.edu/names/102986BiskBosoBosseBossewBuffeBusseBusseeBussiBussoH. BiskH. BuseeH. BusseJ. H. BussePaul Whiteman And His OrchestraHenry Busse And His OrchestraBusse's BuzzardsThe Virginians (3)Paul Whiteman And His Ambassador Orchestra + +859878Clément GarrecTrumpeter.Needs VoteOrchestre National De L'Opéra De ParisLes Cuivres Français + +860167Adolf LotterCzech composer, arranger, tuba and double bass player. Born in Prague on December 4, 1871 - Died in London in 1942. +Studied at the Prague Conservatoire double bass with [a5608398] or/and Vendelín Sládek and composition with [a268272]. In 1894, he moved to England and settled in London where he lived until his death in 1942. He became an editor and music adviser for [l=Hawkes & Son] (later to become [l=Boosey & Hawkes]) from 1906. As an orchestral bassist, he played throughout Great Britain and was Principal Bass of the [a=Queen's Hall Orchestra]/[a=The New Queen's Hall Orchestra] (1898-1930), [a=London Symphony Orchestra] (1933-1940), [b]Guildford Symphony Orchestra[/b], [a=London String Players] and [a=Glyndebourne Festival Orchestra] (1935-1936). +"The Ragtime Bass Player" is probably his most popular work, composed in 1913.Needs Votehttps://www.youtube.com/channel/UC29TYBdZlTrN3j7PBqYiMHg?app=desktophttps://open.spotify.com/artist/66UN5igapuMsjjPHYL9ylJhttps://music.apple.com/us/artist/adolf-lotter/265560182https://nl.wikipedia.org/wiki/Adolf_Lotterhttps://bassmagazine.online/en/adolf-lotter-the-ragtime-bass-player/https://adp.library.ucsb.edu/names/116942A LotterA. LotterAdolph LotterLotterLondon Symphony OrchestraThe New Queen's Hall OrchestraGlyndebourne Festival OrchestraLondon String PlayersQueen's Hall Orchestra + +860230Albert RousselAlbert Charles Paul Marie RousselAlbert Roussel (born April 5, 1869, Tourcoing, Nord, France - died August 23, 1937, Royan, Charente-Maritime, France) was a French composer. His earlier works were strongly influenced by the impressionism of [a96123] and [a216140], his later works turning more towards neoclassicism.Needs Votehttp://en.wikipedia.org/wiki/Albert_Rousselhttps://adp.library.ucsb.edu/names/103287A-RousselA. RousselA.RousselAlbert Charles Paul Marie RousselAlbert RoussellRousselRoussellА. РуссельАльбер Руссельルーセル + +860231František VajnarFrantišek VajnarCzech conductor and violinist. +Born 15 September 1930 in Strašice (former Czechoslovakia), died 9 December 2012, Prague. + +In 1945-52 he studied violin with Karel Šneberger at the Prague Conservatory. From 1948 he was a pupil of Alois Klíma in the conducting department of the Conservatory (he graduated in 1952). While still a student, he worked as a violinist: he was a member of the orchestra of the National Theatre in Prague (1951-53), after which he concentrated on conducting. In 1953-55 he was conductor of the Army Opera in Prague, 1955-60 conductor of the Musical Theatre in Karlín, 1960-62 conductor of the State Theatre in Ostrava. From 1962 to 1974 he was the head of the opera at the Theatre in Ústí nad Labem, and from 1974 to 1980 he was the conductor of the opera of the National Theatre in Prague. In 1979 he took over the position of chief conductor of the Czechoslovak Radio Symphony Orchestra in Prague from Jaroslav Krombholc (until 1985). At the same time, he was chief conductor of the Chamber and Symphony Orchestra in Örebro, Sweden, in 1980-82, and conductor of the Czech Philharmonic Orchestra in 1982-84. After finishing his work in the radio ensemble, he was the head of the opera in 1985-87 and the conductor of the National Theatre Opera in Prague in 1987-90. From 1991 to 1993 he was chief conductor at the Prague State Opera, and from 1991 to 2001 he was chief conductor of the Hradec Králové Philharmonic Orchestra. +At the same time, he taught at the Prague Conservatory in 1974-75, and from 1975 at the Academy of Performing Arts (in 1997 he was appointed professor of conducting). Important pupils: Vojtěch Spurný, Jiří Štrunc, Stanislav Vavřínek, Norbert Baxa, Jiří Malát, Tomáš Netopil, Marek Štryncl and others. In 1990 he led master classes at The Queen's University of Belfast in Northern Ireland; From 1995 to 2003 he led conducting courses for foreign conductors in Hradec Králové together with Otakar Trhlík. +Vajnar was a member and chairman of professional juries of competitions (he was a member of the Prague Spring Conducting Competition – 1985, 1995 and 2007, chairman – 2000), he was also a member of the jury of the Arturo Toscanini Competition in Parma, Italy – 1987, a member of the jury of the Wiener Internationaler Musik Wettbewerb in Vienna – 1992, a member and twice chairman of the jury of the Antonín Dvořák International Singing Competition in Karlovy Vary – 1997–2000. +František Vajnar has made more than a hundred gramophone recordings for the Supraphon, Panton, EMI, Bluebell OF Schweden labels, etc. (including Bedřich Smetana's The Kiss, Antonín Dvořák's Šelna sedlák, Vitězslav Novák's The Lantern, Josef Bohuslav Foerster's Eva, Jiří Pauer's Zuzana Vojířová, Ivo Jiráska's The Bear and others, as well as symphonic compositions by Emil Hlobil, Eugen Suhoň, Jan Hanuš, Bohuslav Martinů, Vítězslav Novák, Otmar Kvech, Josef Matěj, Zdeněk Šesták, Dmitri Shostakovich, etc. +In 1980 Vajnar was awarded the title of Meritorious Artist; in Rio de Janeiro, where he won a quarter prize and the title of laureate of the conducting competition, his artistic work was awarded the Villa-Lobose Medal in 1974. Vajnar he also received a Supraphon Gold Disc (1978), the Cultural Award of the City of Hradec Králové (1994), etc. +Throughout his artistic career, Vajnar divided his own interest between opera practice and conducting symphonic and chamber ensembles. He has conducted in almost all European countries, in the USA, South America, Japan, Canada, Australia, Singapore. He has conducted concerts of the Czech Philharmonic Orchestra, the Czechoslovak Radio Symphony Orchestra and the Prague Chamber Orchestra several times, as well as performances of the National Theatre Opera as part of the Prague Spring Festival. An important part of Vajnar's artistic work was his work with the ensemble Collegium musicum Pragense, of which he was the artistic director from 1968 until 1993, when the ensemble closed its activities. +Important productions of operas: Smetana's The Bartered Bride at the Sydney Opera (1981, the first ever performance of the work in Australia), where and in Melbourne he also conducted Dvořák's opera Rusalka (1994). In 1989, Vajnar performed Prokofiev's opera Betrothal in a Monastery in Wexford, Ireland; his extraordinarily broad operatic repertoire also included works by Giuseppe Verdi, Giaccomo Puccini, Wolfgang Amadeus Mozart, Richard Wagner, Gioacchino Rossini, George Bizet, Ludwig van Beethoven, Richard Strauss, Pyotr Ilyich Tchaikovsky, Jules Massenet, Modest Petrovich Mussorgsky, Carl Maria von Weber, Karl Amadeus Hartmann (Simplicius Simplicissimus), Benjamin Britten, Maurice Ravel, Hans Werner Henze ( The Country Doctor), Ruggiero Leoncavallo and many other composers, and from the Czech repertoire Vajnar performed the entire operatic works of Bedřich Smetana, Antonín Dvořák, Josef Bohuslav Foerster, Leoš Janáček, as well as operas by Bohuslav Martinů, Eugen Suchoň, Ivo Jirásek, Josef Boháč, Jiří Pauer, Jan Frank Fischer and others.Needs Votehttps://slovnik.ceskyhudebnislovnik.cz/component/mdictionary/?task=record.record_detail&id=5341http://www.naxos.com/person/Frantisek_Vajnar/31900.htmhttp://www.hamu.cz/katedry/katedra-dirigovani/prof-frantisek-vajnarF. VajnarFr. VajnarFrantisek VajnarFrantisek VanjarVajnarZasl. Umělec František VajnarThe Czech Philharmonic OrchestraCollegium Musicum PragenseOrchestr Národního DivadlaPrague Radio Symphony OrchestraFilharmonie Hradec Králové + +860305Jet LoringJeanette NittoliAmerican Female Singer / Song writer. +(b. 6 June 1938, Newark, NJ, USA - d. 9 February 2005, Las Vegas, NV, USA)Needs Votehttps://obits.reviewjournal.com/obituaries/lvrj/obituary.aspx?n=jeanette-nittoli&pid=142003859https://www.youtube.com/watch?v=7DJ5EbQrkaAhttps://www.youtube.com/watch?v=MmUNJGtRF6wA. LoringJ. LoringJet LorringKoningLaringLoeringLonnsLoringAl and JetThe Nite-TronsGeorge Young Revue + +860696Alexander WundererAustrian oboist, orchestra leader and composer, born 11 April 1877 in Vienna, Austria-Hungary (today Austria) and died 29 December 1955 in Austria.CorrectA. WundererWiener PhilharmonikerOrchester Der K. K. Hofoper + +860715Ronald VinkRonald VinkNeeds VoteE. VinkR. VimkR. VinkVinkStimulatorEnermaticBeyond Unreal + +860731Paul van KempenPaul van Kempen (16 May 1893 – 8 December 1955) was a Dutch conductor.Needs Votehttp://en.wikipedia.org/wiki/Paul_van_KempenM.o Dir. Paul Van KempenM.o. Dir. Paul Van KempenP. Van KempenP. van KempenPaul von KempenVan KempenПауль ван Кемпен + +860803André CazaletFrench horn player.Needs VoteA. CazaletAndré CazalmetCazaletSynthesis (6)Orchestre De ParisLes Cuivres Français + +860952Isolde AhlgrimmIsolde AhlgrimmAustrian harpsichordist and pedagogue (* July 31, 1914 in Vienna, Austro-Hungary; † October 11, 1995 in Vienna, Austria).Needs Votehttps://musiklexikon.ac.at/0xc1aa5576_0x0001f676http://www.bach-cantatas.com/Bio/Ahlgrimm-Isolde.htmhttps://en.wikipedia.org/wiki/Isolde_AhlgrimmAhlgrimElisabeth HoengenI. AhlgrimmIzolda AlgrimPhilharmonia Orchestra + +861012Ron BarrowsTrumpet playerNeeds VoteRon BarroosRon BarrowRon BorrowsRonald BarrowsGerald Wilson OrchestraPat Longo And His Hollywood Jazz BandGerald Wilson Orchestra of The 90'sThe Buddy Collette Big Band + +861013Brian O'RourkeJazz pianist.Needs VoteGerald Wilson OrchestraThe Gary Urwin Jazz OrchestraBuddy Childers Big BandThe Carl Fontana - Andy Martin QuintetThe Carl Fontana QuartetThe Carl Fontana - Arno Marsh Quintet + +861270Martin GallingGerman pianist and harpsichordist (* 1935 in Halle, German Empire).Needs Votehttps://en.wikipedia.org/wiki/Martin_GallingM. GallingМартин Галлингマルティン・ギャリングマーチン・ギャリングStuttgarter KammerorchesterBachcollegium StuttgartWürttembergisches KammerorchesterStuttgarter SolistenTrio Bell'ArteSantini Chamber Orchestra + +861274Karlheinz ZöllerGerman flutist and professor, born 24 August 1928 in Höhr-Grenzhausen (Westerwald), Germany and died 29 July 2005 in Berlin, Germany.Needs VoteKalheinz ZöllerKarheinz ZoellerKarl Heinz ZollerKarl Heinz ZöllerKarl ZöllerKarl-Heinz ZollerKarl-Heinz ZöllerKarl-Heinz ZöllnerKarl-heinz ZöllerKarlheins ZoellerKarlheinz ZoellerKarlheinz ZollerKarlheinz ZöllnerZoellerZöllerBerliner PhilharmonikerWDR Sinfonieorchester KölnPhilharmonische Solisten Berlin + +861275Erich GruenbergErich Gruenberg born GrünbergAustrian-born British violinist, teacher, and juror. Born 12 October 1924 in Vienna (then First Austrian Republic) - Died 7 August 2020 in Hampstead Garden Suburb, London, England, UK. +He was concertmaster of the [b]Palestine Broadcasting Service Orchestra[/b] (also known as [b]Palestine Broadcasting Corporation Orchestra[/b]) from 1938 to 1945. In 1946, he moved to London where he lived until his death, becoming a British citizen in 1950. He was Concertmaster of the [a=Stockholms Konsertförenings Orkester] from 1956 to 1958, Violin Leader of the [a=London Symphony Orchestra] from 1962 to 1965, and Leader of the [a=Royal Philharmonic Orchestra] from 1972 to 1976. He taught at [l305416] from 1982 and at the [l=Royal Academy of Music] in London from 1989. He participated as an international music competition juror many times. +In recognition of his services to music he was awarded an OBE in 1994. +He often shared the platform with his pianist daughter [a=Joanna Gruenberg], and with his violinist daughter [a=Tina Gruenberg].Needs Votehttps://www.facebook.com/rememberingErich/https://www.youtube.com/channel/UCl7vcZIobVZRxvZMuiT5J1Ahttps://music.youtube.com/channel/UCl7vcZIobVZRxvZMuiT5J1Ahttps://open.spotify.com/artist/15Wvcb1a83u8LcqPiS31yPhttps://music.apple.com/us/artist/erich-gruenberg/42119436https://en.wikipedia.org/wiki/Erich_Gruenberghttp://pronetoviolins.blogspot.com/2013/09/erich-gruenberg.htmlhttps://windsorfestival.com/profile/erich-gruenberghttps://www.wieniawski.com/erich_gruenberg_eng.htmlhttps://www.thetimes.co.uk/article/erich-gruenberg-obituary-hwvzlg07ghttps://www.independent.co.uk/news/obituaries/erich-gruenberg-dead-violinist-brahms-the-beatles-london-philharmonic-orchestra-a9679516.htmlhttps://www.telegraph.co.uk/obituaries/2020/08/18/erich-gruenberg-violinist-mainstay-london-concert-life-obituary/https://www.thestrad.com/news/the-violinist-erich-gruenberg-has-died/11076.articlehttps://lso.co.uk/more/news/1567-obituary-erich-gruenberg-1924-2020.htmlhttps://www.ram.ac.uk/news/erich-gruenberg-tributehttps://www.oxfordreference.com/view/10.1093/oi/authority.20110803095910273https://www.the-paulmccartney-project.com/artist/erich-gruenberg/Eric GruenbergEric GrünbergErich GrunbergGruenbergLondon Symphony OrchestraRoyal Philharmonic OrchestraStockholms Konsertförenings Orkester + +861276Gervase de PeyerGervase Alan de PeyerBritish clarinettist, conductor, and clarinet teacher. Born 11 April 1926, London, England, UK - Died 4 February 2017. +Towards the end of World War II, he joined [a=The Band Of HM Royal Marines]. He studied at the [l290263]. In 1950, he was a founding member of the [a894398] for which he continued to play until 1974. He served as principal clarinetist of [a=London Symphony Orchestra] from 1956 to 1973. He was a founding member of [a=The Chamber Music Society Of Lincoln Center] in 1969, and played with them for twenty years. In 1992, he founded the [b]Melos Sinfonia of Washington[/b]. In 1999-2000, he was a principal artist at Paxton Hall's Chamber Music Festival in Scotland. For over thirty years, he toured and recorded with the classical pianist [a=Gwenneth Pryor]. In 1959, he began teaching at the [l527847]. +In 1950, he married the cellist Sylvia Southcomb with whom they had a son, [a=Merv de Peyer] and two daughters, [a7820285] & Janine de Peyer. They divorced in 1971, and later that year he married the mezzo-soprano [a=Susan Daniel]. They divorced in 1979.Needs Votehttp://www.gervasedepeyer.com/https://www.facebook.com/gervase.depeyerhttps://www.youtube.com/channel/UCBSlrZepptRNmczcSz1kxlghttps://soundcloud.com/gervase-de-peyerhttps://open.spotify.com/artist/77LIzLu0vVqpJSLd7xQKTUhttps://music.apple.com/us/artist/gervase-de-peyer/711157http://en.wikipedia.org/wiki/Gervase_de_Peyerhttps://www.horniman.ac.uk/agent/agent-9239/https://www.classicalmusicdaily.com/articles/p/g/gervase-de-peyer.htmhttps://www.eatonclarinets.com/gervase.htmlhttps://www.theguardian.com/music/2017/feb/14/gervase-de-peyer-obituaryhttps://www.independent.co.uk/news/obituaries/gervase-de-peyer-obituary-musician-clairnet-a7698976.htmlhttps://www.thetimes.co.uk/article/gervase-de-peyer-ntvfx5tp2https://lso.co.uk/more/news/625-obituary-gervase-de-peyer-1926-2017.htmlhttps://www.imdb.com/name/nm3744603/De PeyerG. de PayerGervaise de PeyerGervaseGervaso De Peyerde PeyerДжервас Де Пеиерジェルヴァース・ドゥ・ペイエLondon Symphony OrchestraLondon SinfoniettaMelos Ensemble Of LondonThe Band Of HM Royal MarinesThe Chamber Music Society Of Lincoln CenterThe Barry Tuckwell Wind QuintetMerger (8) + +861282Jaap SchröderJaap SchröderJaap Schröder, or Jaap Schroeder (born 31 December 1925, Amsterdam, Netherlands - died 1 January 2020, Amsterdam, Netherlands) was a Dutch violinist, conductor, and pedagogue.Needs Votehttp://en.wikipedia.org/wiki/Jaap_Schr%C3%B6derhttp://www.ikanlundu.com/schroederdiscography.htmlJ. SchroederJ. SchröderJaap SchroderJaap SchroederSchroderSchröderThe Academy Of Ancient MusicCapella SavariaSchola Cantorum BasiliensisNetherlands String QuartetSmithsonian Chamber OrchestraConcerto AmsterdamAston MagnaQuadro AmsterdamQuartetto EsterházySmithson String QuartetAtlantis Ensemble (2)Skálholt QuartetThe Atlantis Trio + +861473Martin VantinGerman operatic tenor, born 14 May 1919 in Nuremberg, Germany.CorrectM. VantinMartin FantinМартин Вантин + +861483Cvetka AhlinSlovenian operatic mezzo-soprano, born 28 November 1927 in Ljubljana, Kingdom of Yugoslavia, 30 July 1985 in Hamburg, Germany.Needs Votehttps://en.wikipedia.org/wiki/Cvetka_AhlinC. AhlinSvetka AhlinЦветка Алин + +861484Hans HotterGerman operatic bass-baritone. He was born 19 January 1909 in Offenbach/Main, Germany and died 6 December 2003 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Hans_HotterH. HotterH. Hotter (Kurwenal)Hans HötterHotterX. ХоттерГ. ХоттерГанс ХоттерХанс Хоттерハンス・ホッターホッター + +861487Martti TalvelaMartti Olavi TalvelaFinnish bass vocalist. + +Born: February 4, 1935 - Hittola, Finland +Died: July 22, 1989 – Juva, Finland +Correcthttp://en.wikipedia.org/wiki/Martti_Talvelahttp://www.bach-cantatas.com/Bio/Talvela-Martti.htmM. TalvelaMartti Olavi TalvelaMatti TalvelaTalvelaΜάρττι ΤάλβελαΤάλβελαМартти ТалвелаМартти Тальвела + +861506Georg HörtnagelGeorg Hörtnagel (12 March 1927 in Munich - 1 May 2020) was a German double bass player, conductor and concert promoter. He's the father of [a3677241].Needs VoteG. HoertnagelG. HörtnagelGeorg HoertnagelGeorg HortnagelGeorg Maximilain HörtnagelGeorg Maximiliam HörtnagelGeorg Maximilian HörtnagelGeorg Maximillian HörtnagelGeorge HoertnagelGeorge HortnagelГеорг ХёртнагельBayerisches StaatsorchesterBachcollegium StuttgartKoeckert-QuartettOrchester Des 35. Deutschen BachfestesPaul Angerer EnsembleKönigswiesener Stubenmusik + +861581Fernando CorenaTurkish-Swiss bass / baritone vocalist. He was born 22 December 1916 in Geneva, Switzerland and died 26 November 1984 in Lugano, Switzerland.Needs Votehttps://de.wikipedia.org/wiki/Fernando_CorenaCorenaF. CorenaFernando CoremaFranco CorenaФ. КоренаФернандо Корена + +861648Donna BrownClassical soprano.CorrectBrownD. BrownLes Arts FlorissantsThe Monteverdi Choir + +861649Erdo GrootSound engineer for recordings of classical music.CorrectErdo de Groot + +861690Robert TearRobert TearWelsh tenor and conductor, born 8 March 1939 in Barry, Wales, UK, died 29 March 2011 in London, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Robert_Tearhttps://www.bach-cantatas.com/Bio/Tear-Robert.htmR. TearSir Robert TearTearРоберт ТирDeller Consort + +861716Dr. Fred HamelGerman chemist, musicologist, author and producer of classical recordings, born February 19, 1903 in Paris, France and died December 9, 1957 in Hamburg, Germany. He was the first head of [l89289] and held this position from 1948 to 1957.Needs Votehttps://de.wikipedia.org/wiki/Fred_HamelDr. Alfred HamelFred HamelHamel + +861718Werner GrimmeSound engineer and producer for Deutsche Grammophon classical releases in the 1950s and '60s. + +For the member of Heart Affairs and The Beat Shadows, use [a8148572].Needs VoteGGRGSWerner K. Grimme + +861786Annette GeigerGerman viola playerCorrectAnette GeigerCollegium VocaleAkademie Für Alte Musik BerlinKammerakademie Potsdam + +861787Matthias BeltingerGerman contrabassist.Needs VoteMathias BeltingerAkademie Für Alte Musik BerlinConcerto KölnFreiburger BarockorchesterKammerorchester BaselDeutsche Kammerphilharmonie BremenBundesjugendorchester + +861790Pietro MetastasioPietro MetastasioBorn 03.01 1698 in Rome, Italy. +Died 12.04 1782 in Vienna, Austria. +An Italian poet and librettist, considered the most important writer of opera seria libretti. +Correcthttp://en.wikipedia.org/wiki/Metastasio?Pietro MetastasioMetastaseMetastasioMetastasiosMétastaseP. MetastasioPietro Antonio MetastasioPietro AntonioMetastasioП. Метастазио + +861792Nicholas SeloClassical cellist.Needs VoteNicolas SeloAkademie Für Alte Musik BerlinConcerto KölnLa StagionePiccolo Concerto WienLes AdieuxNeue Düsseldorfer HofmusikMusica Alta RipaDarmstädter HofkapellePleyel Quartett KölnEnsemble RhapsodyContext (17) + +861793Ute HartwichClassical trumpeter with focus on baroque trumpet Needs Votehttp://www.ute-hartwich.de/Ute "Tute" HartwichUte HartwigAkademie Für Alte Musik BerlinMusica Antiqua KölnConcerto KölnLautten CompagneyCantus CöllnAnima Mea (2)Christians At WorkWestfälisches Blechbläser-EnsembleDarmstädter HofkapelleLa Tempesta (2) + +861797Björn ColellGerman classical theorbist and lutenist, born 1964 in Berlin, Germany. +Teacher at Hochschule für Musik Nürnberg.Needs Votehttps://www.hfm-nuernberg.de/hochschule/personenverzeichnis/kontakt-detail/?tx_sicaddress_sicaddress%5Baddress%5D=346&tx_sicaddress_sicaddress%5Baction%5D=show&tx_sicaddress_sicaddress%5Bcontroller%5D=Address&cHash=4cb9097a4dc31da7b1307fd209de117aBjörn CorellAkademie Für Alte Musik BerlinConcerto KölnChorWerk RuhrBerliner Barock SolistenJohann Rosenmüller EnsembleOmbra E Luce + +861800Michael NeuhausClassical double bass playerNeeds VoteAkademie Für Alte Musik BerlinMusica Antiqua KölnNeue Düsseldorfer Hofmusik + +861802Xenia LöfflerXenia LöfflerGerman classical oboistNeeds Votehttp://xenialoeffler.com/Xenia LoefflerThe English Baroque SoloistsAkademie Für Alte Musik BerlinFreiburger BarockorchesterCollegium 1704Batzdorfer HofkapelleArcangeloCapricornus Consort BaselGli Angeli GenèveAmphion BläseroktettDarmstädter Hofkapelle + +861803Martin PiechottaGerman classical percussionist, born in Berlin, Germany.Needs VoteMahler Chamber OrchestraAkademie Für Alte Musik BerlinMünchener KammerorchesterLes Musiciens Du LouvreUnited Continuo EnsembleDas Neue OrchesterHarmonie Universelle + +861843Sigurd BraunsGerman chorus master, born 1944 in Zella-Mehlis, Germany. He was the music director of the [a900925] from 1991 to 2007.Needs VoteRundfunk-Sinfonieorchester BerlinCappella Sagittariana Dresden + +861951Murray PerahiaMurray David Perahia, KBEAmerican concert pianist and conductor. +Born April 19, 1947 in New York City, NY, USA.Needs Votehttps://en.wikipedia.org/wiki/Murray_Perahiahttps://web.archive.org/web/*/https://www.murrayperahia.com/https://web.archive.org/web/20031004142949/https://www.sonyclassical.com/artists/perahia/https://www.sonyclassical.com/artists/artist-details/murray-perahiahttps://www.deutschegrammophon.com/en/artists/murray-perahiaM. PerahiaMurray PirahiaPerahiaPeráhiaペライアマレイ・ペライア普萊亞 + +861953Maxim VengerovViolin virtuoso and conductor, born 20 August 1974 in Novosibirsk, since 2005 he has been Professor at the Royal Academy of Music in London.Needs Votehttps://www.maximvengerov.com/https://en.wikipedia.org/wiki/Maxim_VengerovM. VengerovMaxim VengorovVengerovМаксим Венгеровマキシム・ヴェンゲーロフ + +862050Paul MazzioTrumpeter, living in Portland, OregonNeeds Votehttps://www.paulmazzio.com/MazzioPaulPaul MazziaPmWoody Herman And His OrchestraThe Woody Herman Big BandAlan Jones SextetMark Simon EnsembleThe Lou Fischer Big BandThe 3 Trumpet BandStan Bock Ensemble1:00 O'Clock Lab BandBrad Dutz OktetMark Simon QuintetDutz Higgins Mazzio Three + +862115Sally DrewEngineer for Decca, usually credited as Editor, Tape Editor or Recording Editor which should be credited using the credit Edited By [Tape Editor] etc.Needs Vote + +862396George Brown (5)William Joseph HillGeorge Brown was a pseudonym used by [a616854] (born July 14, 1899, Boston, Massachusetts, USA – died December 24, 1940, Boston, Massachusetts, USA) an American songwriter, violinist, and pianist. Originally credited under the pseudonym of George Brown, purportedly because he didn't want his name reversed to 'Hill Billy'. Perhaps his best known work is "The Glory Of Love" recorded by [a254768] in 1936. Inducted into the Songwriters Hall of Fame in 1970.Needs Votehttp://en.wikipedia.org/wiki/Billy_Hill_(songwriter)http://www.hillbilly-music.com/artists/story/index.php?id=14064http://www.imdb.com/name/nm0384071/https://www.songhall.org/profile/Billy_HillB. BrownBrownBrown (Hill)BrowneE. BrownG. BrownG.BrownGeo BrownGeo. BrownGeorge Brown (Billy Hill)T. BrownГ. БроунД. БраунД. БроунBilly HillColeman Hawkins And His Orchestra + +862514Andrei GridtchoukRussian classical violistNeeds VoteAndrei GridtchukOrchester Der Deutschen Oper Berlin + +862516Vesko EschkenazyBulgarian classical violinist, born in 1970 in Sofia.Needs Votehttps://en.wikipedia.org/wiki/Vesko_EschkenazyV. EschkenazyVesselin EshkenasiVesselin EshkenaziVesselin EshnekasiВеселин ЕшкеназиВеско ЕшкеназиConcertgebouworkestConcertgebouw Chamber OrchestraOsiris TrioSoLaRe Strijktrio + +862518Etienne PfenderFrench violinist.CorrectOrchestre De Paris + +862520Ana Bela ChavesPortuguese viola player, born 1952 in Lisboa. Currently lives in Paris, France.Needs Votehttps://pt.wikipedia.org/wiki/Ana_Bela_ChavesAna BelaAna ChávezAna-Bela ChavesAnabela ChavesOrchestre De ParisOpus EnsembleSirba OctetSegréis de LisboaQuatuor Alain Moglia + +862523Tomasz TomaszewskiPolish violinist, concertmaster, conductor, music educator (b. in Czechowice-Dziedzice).Needs Votehttps://www.akademiasztuki.eu/Product/tomasz-tomaszewski-drhttps://pl.wikipedia.org/wiki/Tomasz_Tomaszewski_(muzyk)http://www.deutscheoperberlin.de/de_DE/ensemble/tomasz-tomaszewski.16973#Orchester Der Deutschen Oper BerlinPolish String Quartet BerlinEuropean Fine Arts Trio + +862530Bernard CazauranBernard CazauranBassist from France.Needs VoteCazauranM. CazauranOrchestre National De FranceSirba Octet + +862698Christopher KeyteClassical Bass & Baritone vocalist, born 1935.Needs Votehttps://aru.ac.uk/graduation-and-alumni/honorary-award-holders2/christopher-keyteKeyteThe Academy Of Ancient MusicPro Cantione AntiquaThe Purcell Consort Of VoicesThe Wilbye Consort + +862724Dick Noel (2)Richard L. NoelUS-American jazz trombonist, born 1926 and died 1989.Needs Votehttps://music.metason.net/artistinfo?name=Dick%20Noel%20%282%29https://adp.library.ucsb.edu/index.php/mastertalent/detail/109603/Noel_DickDick (Bellerose) NoelDick NoelDick NowellRichard L. "Dick" NoelRichard L. 'Dick' NoelRichard L. NoelRichard Leslie NoelRichard NoelTommy Dorsey And His OrchestraHarry James And His OrchestraLes Brown And His Band Of RenownBilly May And His OrchestraLes Brown And His OrchestraBob Crosby And His OrchestraPete Rugolo OrchestraLalo Schifrin & OrchestraThe Frankie Capp Percussion GroupSpike Jones & His Other OrchestraNeal Hefti And His Jazz Pops OrchestraThe Wrecking Crew (6)Dick Noel And The Academy BrassDick Noel's OrchestraJohn Williams And Co. + +862745Porter KilbertAmerican jazz saxophonist, born 10 June 1921 in Baton Rouge, died 23 October 1960 in Chicago, USA.Needs Votehttps://www.findagrave.com/memorial/25684147/porter-kilberthttps://adp.library.ucsb.edu/names/325228KilbertP. KilbertPorter KilberPoter KilbertRobert KilbertQuincy Jones And His OrchestraRoy Eldridge And His OrchestraBenny Carter And His OrchestraColeman Hawkins And His OrchestraRed Saunders & His OrchestraThe Quincy Jones Big BandPaul Gonsalves - Clark Terry QuintetDave Shipp QuintetPorter Kilbert's Orchestra + +862746Lennie JohnsonLeonard JohnsonUS American trumpet player. Served during WW II and started his career after his discharge. Known for his high-note work, he played with [a6634116] at Wally’s Paradise in Boston in the late 1940s. From 1950 on and off trhough 1953 with [a1154538], then with [a624847]. 1959 and early 1960 with [a=Quincy Jones], he rejoined [a624847] in mid-1960. In February 1961, he replaced [a309874] in the [a253011], staying for 8 months. In the 1960s, Johnson freelanced in various Boston-based groups with other former Pomeroy bandmates. In 1968, he was hired as an instructor at Berklee and was finally able to quit his day job as a hospital attendant. Barely 50 years old, he died from cancer. +b.: Oct. 2, 1923 in Boston, MA +d.: Oct. 7, 1973 in Boston, MANeeds Votehttps://www.richardvacca.com/october-7-1973-remembering-lennie-johnson/Lenny JohnsonLeonard JohnsonLonnie JohnsonCount Basie OrchestraThe Nat Pierce OrchestraThe Herb Pomeroy OrchestraThe Quincy Jones Big Band + +862837Hans Peter BlochwitzHans Peter Blochwitz (born 28 September 1949) is a German lyric tenor, who is known internationally in opera and concert, especially for singing parts in Mozart operas. + +Born in Garmisch-Partenkirchen on 28 September 1949, Blochwitz first studied computer science at the Technische Hochschule Darmstadt[2] and holds a Ph.D. He studied singing from 1975 in Mainz with Elisabeth Fellner Köberle and in Frankfurt with Erna Westenberger and Karlheinz Jarius. He appeared in 1978 in Frankfurt as a soloist in Bach's Mass in B minor, and in 1984 as the Evangelist in Bach's St Matthew Passion at the Altenberger Dom. He made his operatic debut in September 1984 as Lenski in Tchaikovsky's Eugen Onegin at the Frankfurt Opera; he subsequently sang in Brussels, Geneva, Hamburg, Milan, and Vienna, especially as a Mozart singer. When Peter Schreier, a lyric tenor himself, conducted his first production of Mozart's Don Giovanni in 1987, he cast Blochwitz as Don Ottavio. In September 1990 Blochwitz made his debut at the Metropolitan Opera in the same role. In 1991 he appeared as Belmonte in Mozart's Die Entführung aus dem Serail at the Salzburg Festival.Needs Votehttps://en.wikipedia.org/wiki/Hans_Peter_Blochwitzhttps://www.bach-cantatas.com/Bio/Blochwitz-Hans-Peter.htmhttps://www.imdb.com/name/nm0088663/BlochwitzHans BlochwitzHans P. BlochwitzHans-Peter BlochwitzHanspeter BlochwitzPeter Blochwitzハンス・ペーター・ブロッホヴィッツThe Monteverdi Choir + +862839Lorenzo da PonteVenetian opera librettist and poet, born 10 March 1749 in Ceneda, in the Republic of Venice (now Vittorio Veneto, Italy) and died 17 August 1838 in New York, USA.Needs Votehttp://en.wikipedia.org/wiki/Lorenzo_Da_Pontehttp://www.schillerinstitute.org/educ/hist/daponte.html?L. da Ponte?Lorenzo da PonteDa PonteDa Ponte?De PonteF. De PonteL. Da PonteL. De PonteL. da PonteL.Da PonteLorenzo Da PonteLorenzo Da Ponte (?)Lorenzo Da Ponte?Lorenzo da Ponte, after BeaumarchaisLorenzo da Ponte?Lorenzo de PontePonteda PonteЛ. Да ПонтеЛ. да ПонтеЛоренцо Да ПонтеЛоренцо да Понтеロレンツォ・ダ・ポンテ + +862842Wim StraesserClassical cellistNeeds VoteRoyal Concertgebouw Orchestra Brass Ensemble + +862885Bob QuibelRobert QuibelJazz double bassist (born October 1930 - died January 2013). +He met Jacques Martin, French humorist, in 1964 and had a long collaboration with him on his TV shows as band leader.Needs VoteQuibelQuilbelR. QuibelR.QuibelRobert QuibelGrand Orchestre De L'OlympiaDaniel Janin Et Son OrchestreLes BarclayJacques Hélian Et Son OrchestreClaude Bolling SextetClaude Bolling TrioBenny Bennet Et Son Orchestre De Musique Latine-AméricaineBob Quibel Et Son Ensemble + +862911Frank FoxFranz FuxAustrian composer and bandmaster ([i]Kapellmeister[/i]) (* 25 July 1909 in Bistritz, Austro-Hungary (now Nová Bystřice, Czech Republic); † 27 November 1965 in Berlin, Germany).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_F/Fox_Frank.xmlhttps://adp.library.ucsb.edu/names/358149F. FoxFoxFr. FoxFrankFrank FoksFrank FoskaFranka FoxaFranz FoxFuxJ. FoksФранк ФоксFrank FuxFrank Fox Tanzorchester + +862913Francisco TárregaFrancisco de Asís Tárrega y EixeaInfluential Spanish composer and guitarist, born November 21, 1852 in Villarreal, Castellón, Spain — died December 15, 1909 in Barcelona, Spain. +Often considered to be the father of modern classical guitar playing. +Needs Votehttp://en.wikipedia.org/wiki/Francisco_T%C3%A1rregahttps://adp.library.ucsb.edu/names/103308E. TarragaEixea TárregaF TárregaF. De TárregaF. TaregaF. TarreagaF. TarregaF. Tarrega DPF. TarrengaF. TarreraF. TarrégaF. TerregaF. TàrregaF. TárregaF. TárrégaF. タレガF.E. TarregaF.TarregaF.タルレガFarregaFr. TarregaFr. TárregaFranc. TarregaFrancesc TarregaFrancesc TárregaFrancesco TarregaFrancesco TarregoFrancesco TárregaFrancisco Eixea TarregaFrancisco Eixea TárregaFrancisco EixeaTárregaFrancisco TaregaFrancisco TarragaFrancisco TarreagaFrancisco TarregaFrancisco Tarrega EixeaFrancisco TarregoFrancisco TarregàFrancisco TarregáFrancisco TarrègaFrancisco TarrégaFrancisco TàrregaFrancisco TárragaFrancisco Tárrega (Y Eixea)Francisco Tárrega E EixeaFrancisco Tárrega EixeaFrancisko TarregaFrancisko TárregaFransisco TarregaFransisco TerregaFransisco TárregaTaregaTarreagaTarredaTarregaTarrega F.TarregoTarreqaTarrégaTerregaTàrregaTárragaTárreagaTárregaTárregoValéry GergievТареггаТаррегаФ. ТаррегаФр. ТаррегаФрансиско ТаррегаФранциско ТарегаФранциско Таррегаタルレガタレガフランシスコ・タルレガ + +863164Aligi VoltanClassical bassoonistNeeds VoteOrchestra Di Padova E Del VenetoL'Astrée + +863165Andrea MionClassical oboist & flautistNeeds VoteLe Concert SpirituelL'AstréeConcerto ItalianoSonatori De La Gioiosa MarcaIl Complesso BaroccoAcademia Montis RegalisArs Antiqua AustriaLa Risonanza + +863209Michael Clark (4)Pianist. Needs Vote + +863220Susanna KleinGerman violinist and educator.Correcthttp://www.susannaklein.com/Bamberger SymphonikerThe Richmond Symphony + +863251André NavarraAndré-Nicolas NavarraAndré Navarra (10 October 1911 in Biarritz, France - 31 July 1988 in Siena, Italy) was a French cellist and cello teacher.Needs Votehttps://en.wikipedia.org/wiki/Andr%C3%A9_Navarrahttps://adp.library.ucsb.edu/names/363155A. NavarraA. NavarreAndre NavaraAndre NavarraM. NavarraNavarraNavarra,А. НаварраАндре НавараАндрэ Наварраアンドレ・ナヴァラOrchestre National De L'Opéra De ParisKrettly QuartetPro Musica Chamber GroupTrio B. B. N. + +863279Ladies Of The London Philharmonic ChoirFemale voices of the [a=London Philharmonic Choir].Needs VoteFemale ChorusLas Voces Femeninas Del Coro De La Filarmónica De LondresThe Ladies Of The London Philharmonic ChoirVoces Femeninas Del London Philharmonic ChoirLondon Philharmonic Choir + +863411Volker MartinSound engineer.Correctフォルカー•マーティン + +863470Kristin Von Der GoltzGerman / Norwegian classical cellist, born 2 May 1966 in Würzburg, Germany. She's the daughter of [a3213680] and [a3231460] and the sister of [a2370869] and [a863477].Needs VoteKirstin Von Der GoltzKristian Von Der GoltzKristian von der GoltzKristin Van Der GoltzKristin von der GoltzAkademie Für Alte Musik BerlinConcerto KölnFreiburger BarockorchesterMünchener KammerorchesterBerliner Barock SolistenLyriarteTrio ViventeFreiburger BarockConsortConcerto MelanteCappella Academica Frankfurt + +863474Beatrix HülsemannClassical violinist.Needs VoteJunge Deutsche PhilharmonieAkademie Für Alte Musik BerlinFreiburger BarockorchesterEnsemble AisthesisEuropean Brandenburg EnsembleThe English Concert + +863475Love PerssonThe “Old Swede“ Love Persson was born in Mora, Sweden. He studied double bass in Göteborg with Ferdinand Lipa and, after his studies, played for half a year at the Göteborg Opera. Following this, he worked for five years in the Symphonic Orchestra Helsingborg.Needs Votehttp://lespassions.ch/cms/en/orchestra/musicians?start=11Anima EternaFreiburger BarockorchesterLes AmbassadeursCapella Agostino SteffaniLa StagioneCantus CöllnDas Kleine KonzertEnsemble ExplorationsLes Passions De L'Ame (2) + +863483Christian GoossesGerman classical viola player.Needs VoteMusica Antiqua KölnFreiburger BarockorchesterCantus CöllnHarmonie UniverselleAppónyi-QuartettSchuppanzigh Quartettkontraste köln + +863486Guido LarischGerman classical cellist.Needs VoteFreiburger BarockorchesterLes Musiciens Du LouvreBalthasar-Neumann-EnsembleDas Kleine KonzertTrio CantabileConcerto Con VoceAppónyi-Quartett + +863487Wolfgang RingsClassical viol player.CorrectBamberger SymphonikerAkademie Für Alte Musik BerlinFreiburger BarockorchesterBalthasar-Neumann-Ensemble + +863490Andrew Lawrence-KingClassical harpist, specialist in early and medieval music, born in Guernsey 3 September 1959. + +He is currently the director of [a863481]. He also is also a conductor who directs from one of several continuo instruments, including harp, organ, harpsichord & psaltery.Needs Votehttps://en.wikipedia.org/wiki/Andrew_Lawrence-Kinghttps://andrewlawrenceking.com/https://about.me/continuohttps://www.theharpconsort.com/alk-bioA. Lawrence KingA. Lawrence-KingAndrew L. KingAndrew Lawrence KingLawrence-KingЭндрю Лоуренс-КингNew London ConsortLes Arts FlorissantsLa Capella Reial De CatalunyaOrchestra Of The RenaissanceThe Harp ConsortCirca 1500Hespèrion XXISonnerieGothic Voices (2)TragicomediaBallo Della Battalia + +863492Brian DeanBrian DeanClassical violinist. Co-principal concertmaster of the [a=Anima Eterna] ensemble.Needs Votehttp://www.briandean.de/Brian_Dean/Home.htmlBrian A. DeanAnima EternaConcerto KölnFreiburger BarockorchesterLa StagioneBalthasar-Neumann-EnsembleLa Stravaganza KölnDas Kleine KonzertLa Grande Chapelle + +864315Bill DaltonWilliam Joseph DaltonGuitarist.Needs VoteB. DaitonB. DaltonDaltonThe Royal Teens + +864316Bill CrandallWilliam CrandallSaxophonist, original member of the Royal Teens. As Buddy Randell, lead singer of the Knickerbockers.CorrectB. CrandallB. CrandellBill CrandellC. RandellCrandallCrandellGrandallWilliam C. Crandall, Jr.William Crandall Jr.Buddy RandellWilliam Crandall Jnr.The KnickerbockersThe Royal TeensRockin' SaintsBlowtorch (3) + +864350Kaia UrbFormer classical soprano vocalist, now a member of Artistic Board of the [a=Estonian Philharmonic Chamber Choir].Needs VoteK. UrbKaia Galina UrbEstonian Philharmonic Chamber ChoirTallinn Baroque Ensemble + +864351Tiit KogermanClassical tenor vocalist.Needs VoteTiit KogermannEstonian Philharmonic Chamber Choir + +864352Aarne TalvikBass vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/automaatmustand-5/Estonian Philharmonic Chamber Choir + +864379Marin MaraisFrench Baroque composer and viol player, born May 31th, 1656 in Paris, France; died August 15th, 1728 in Paris. +He studied composition with [a=Jean-Baptiste Lully] and viol with [a=Jean de Sainte-Colombe].Needs Votehttps://en.wikipedia.org/wiki/Marin_Maraishttps://adp.library.ucsb.edu/index.php/mastertalent/detail/359597/Marais_Marinhttps://www.britannica.com/biography/Marin-MaraisCouperinM. MaraisM. MerasM.MaraisMaraisMarais M.Marais MarinMarinMarin MariasMarisMartin MaraisМ. Мареマレ + +864546John Wallace (4)British trumpeter, composer, conductor, teacher, and author, born 14 April 1949 in Methilhill, Fife, Scotland, UK, died 11 January 2026. + +He studied at the [l1517371] and the [l527847]. He began playing the cornet as a member of the [a=Tullis Russell Mills Band] and went on to the [a=National Youth Orchestra Of Great Britain]. He was a member of numerous ensembles and orchestras that include [a=The London Festival Ballet Orchestra] (2nd Trumpet), the [a=Northern Sinfonia], the [a=Philip Jones Brass Ensemble], the [a=Royal Philharmonic Orchestra], the [a=BBC Scottish Symphony Orchestra], the [a=London Symphony Orchestra] (Principal Trumpet 1975-1976), the [a=New Philharmonia Orchestra]/[a=Philharmonia Orchestra] (Principal Trumpet and vice-Chairman of the Board 1976-1995), and the [a=London Sinfonietta]. He formed [a=The Wallace Collection] in 1986. He was Head of the Brass Faculty at the Royal Academy of Music in London and held the position of Principal of the [l742849]/[l516659] since 2002; he retired in September 2014. He was appointed Honorary Professor of Brass by the [l=University Of St Andrews]. He was awarded an OBE in 1995 and a CBE in 2011.Needs Votehttps://www.feenotes.com/database/artists/wallace-john-1949-present/https://musicianbio.org/john-wallace/https://www.rcs.ac.uk/staff/john-wallace/https://thewallacecollection.world/portfolio/john-wallace-biog/https://www.brassforbeginners.com/pages/john-wallacehttps://en.wikipedia.org/wiki/John_Wallace_(trumpeter)https://www.heraldscotland.com/life_style/arts_ents/15369442.brass-ahead-east-neuk-festival-trumpet-virtuoso-john-wallace-father-shared-brass-band-roots/https://news.st-andrews.ac.uk/archive/universitys-accolade-for-leading-musician/https://nevisensemble.org/2019/10/23/nevis-ensemble-announces-john-wallace-cbe-as-first-ambassador/London Symphony OrchestraRoyal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraBBC Scottish Symphony OrchestraPhilip Jones Brass EnsembleThe Nash EnsembleNational Youth Orchestra Of Great BritainNorthern SinfoniaEquale BrassLysisEnglish Symphony OrchestraLocke Brass ConsortThe London Festival Ballet OrchestraThe Wallace CollectionThe London Trumpet SoundTullis Russell Mills Band + +864614Roger BourdinRoger Jules BourdinFrench flautist and pianist, born 27 January 1923 in Mulhouse, France and died 23 September 1976 in Versailles, France.Needs Votehttp://fr.wikipedia.org/wiki/Roger_Bourdin_(musicien)https://www.ascap.com/repertory#ace/writer/3896972/BOURDIN%20ROGER%20JULESBourdinLoger BourdinR. BourdinРоже Бурденロージェ・ブールダンRed Moore (2)Cuco Chicos et ses BoysAndré Popp Et Son OrchestreOrchestre Des Concerts LamoureuxJimmy Walter Et Son EnsembleRadio-Symphonie-Orchester BerlinKammerorchester Des Saarländischen Rundfunks, SaarbrückenOrchestre De Chambre De VersaillesLuiz El Grande E La Sua Orchestra TipicaRoger Bourdin Et Son OrchestreFreddy Balta Et Son EnsembleHenri Rossotti Et Son OrchestreHenri Leca Et Son Ensemble TypiqueLe Quatuor De Flûtes De Roger BourdinTrio De VersaillesFreddy Alberti Et Son EnsembleEnsemble D'Instruments Anciens Pierre DeveveyRoger Bourdin Et Son EnsembleHenry Leca Et Son OrchestrePhilippe-Gérard Et Son EnsemblePhilippe-Gérard Et Le Brelan D'As + +864616Günther PassinGerman oboist, born 20 May 1937 in Leipzig, Germany and died 18 March 2014 in Austria.Needs Votehttp://www.passin.at.tf/G. PassinGunter PassinGunther PassinGünter PassinRadio-Symphonie-Orchester BerlinBachcollegium StuttgartWürttembergisches KammerorchesterDie Deutschen Bläsersolisten + +864617Rolf-Julius KochGerman classical oboist.Needs VoteRolf Julius KochRadio-Symphonie-Orchester BerlinCamerata Musicale (2)Südwestdeutsche Kammersolisten + +864618Winfried RotzollClassical trumpeterNeeds VoteRadio-Symphonie-Orchester BerlinThe 18th Century Corporation + +864674Hans SwarowskyAustrian conductor. He was born 16 September 1899 in Budapest, Austria-Hungary (now Hungary) and died 10 September 1975 in Salzburg, Austria. + +[b]Please Note:[/b] Recordings attributing Hans Swarowsky as conducting the so-called [b][a730309][/b] ("South German Philharmonic") or the [b][a4194648][/b] ("Bamberg Philharmonic Orchestra") are fake attributions by the producer of budget records [a730304]. In these cases, please use [a6141413] for the credits. + +Hans Swarowsky was the son of a Viennese large-scale industrialist, he studied art history and philosophy at the University of Vienna. From 1920, he studied with Arnold Schönberg and then with Anton Webern in music theory and conducting. After working as a pianist, he worked as a Kapellmeister at the Vienna Volksoper and then at the Stuttgart Opera House. Subsequently, he was the first Kapellmeister and opera conductor conductor at the Reußisches Theater in Gera, before he became a Kapellmeister to the Hamburg State Opera in 1934 and to the Staatsoper in Berlin in 1935. Swarowsky worked at the Zurich Opera House from 1937 to 1940, after reportedly being forced out of his position in Berlin - however, he returned to Germany after this period. At the invitation of Richard Strauss and Clemens Krauss, Swarowsky collaborated on the libretto of the opera Capriccio, and also worked at reanslating numerous older operatic texts into German. + +From 1940 to 1944 he also acted as a dramaturge at the Salzburg Festival. From 1944 until his last concert on 9 January 1945, he worked in occupied Poland, as chief conductor of the Philharmonic Orchestra of the General Government in Krakow. The premiere of Pfitzner's composition "Krakauer Begrüßung" was dedicated to Hans Frank, later hanged by the Allies as a war criminal. + +After the end of the Second World War, Swarowsky, who was at that time in Stuttgart, stood briefly on the "gray list" of the US military government. From 1946 to 1947, he was chief conductor of the Wiener Symphoniker, from 1947 to 1950 director of the Graz Opera. Subsequently, he devoted himself above all to his teaching activities. Many of the most famous conductors of the last decades are from his school, such as Claudio Abbado, Paul Angerer, Rudolf Bibl, Miltiades Caridis, Gabriel Chmura, Jesús López Cobos, Yoram David, Jacques Delacote, Adam and Iván Fischer, James Allen Gähres, Theodor Guschlbauer, Erwin Ortner, Christoph Haas, Raimund Hug, Manfred Huss, Mariss Jansons, Augustin Kubizek, Miguel Gómez Martínez, Zubin Mehta, Roberto Paternostro, Heinrich Schiff, Peter Schneider, Karl Sollak, Mario Venzago, Bruno Weil and Hans Zanotelli. Thanks to his lectures and essays, he remains an authority on questions of interpretation and performance practice. Via the Forschungsprojekt Hans Swarowsky at [l1209200] (link below), his works continue to be researched. + +From 1946 to 1975, he taught conducting at the Viennese Music Academy (lecturer from 1947, professor from 1961), a very successful and influential class internationally. From 1957 to 1959, he was chief director of the [a627128], Edinburgh (as successor of [a2665836]). From 1959, he was the permanent conductor at the Vienna State Opera. He travelled extensively, and made many recordings for radio and commercial release. + +N.B. One of his students, [a730304], issued numerous sound recordings with the so-called [a730309] ("South German Philharmonic"), using the names of various conductors, including Hans Swarowsky. It is likely that hardly any of these recordings were actually conducted by Swarowsky. For these releases, [a6141413] should be credited.Needs Votehttps://en.wikipedia.org/wiki/Hans_Swarowskyhttps://de.wikipedia.org/wiki/Hans_Swarowskyhttps://www.bach-cantatas.com/Bio/Swarowsky-Hans.htmhttps://web.archive.org/web/20050409141518/http://www.h4.dion.ne.jp:80/~hugo.z/hs_disc.htmlhttps://www.mdw.ac.at/imi/?h=swarowsky&PageId=3967ConductorDoctor Hans SwarowskyDr. Hans SwarowskyH. SawarowskyH. SwarowskiH. SwarowskyH. Swarowsky, ConductorHans SarowskyHans SawarowskyHans SwarewskyHans SwarofskyHans SwaroskyHans SwarowksyHans SwarowkyHans SwarowskIHans SwarowskiProf. Hans SawarowskyProf. Hans SwarowskiProf. Hans SwarowskyProf. SwarowskyStaatskapellmstr. H. SwarowskySwarowskyГ. СваровскийГанс СваровскиГанс Сваровскийハンス・スワロウスキーハンス・スワロフスキーRoyal Scottish National OrchestraOrchester Der Wiener StaatsoperWiener SymphonikerWiener Volksopernorchester + +864684Dick ShearerRichard Bruce ShearerAmerican trombonist, born September 21, 1940 in Indianapolis. +Shearer is most known as lead trombonist and music director for the Stan Kenton Orchestra from 1967 until Kenton's death in 1978.CorrectD. ShearerRichard Bruce ShearerRichard SchearerRichard ShearerShearerStan Kenton And His OrchestraMark Masters' Jazz Composers OrchestraStan Kenton Spirits + +864686Bob FaustBig Band/Swing jazz Trumpet and mellophonium player. CorrectRobert FaustStan Kenton And His Orchestra + +864690Dewey TerryDewey Steven Terry[b]Born:[/b] 17th July 1937, Pasadena, CA, USA. +[b]Died:[/b] 11th May 2003, Los Angeles, CA, USA.Needs VoteD TerryD Terry JrD Terry Jr.D Terry jrD. JerryD. Jerry jun.D. TerreyD. TerryD. Terry / Jr.D. Terry Jnr.D. Terry JrD. Terry Jr.D. Terry Jun.D. Terry JuniorD. Terry jr.D. Terry jun.D. Terry, JrD. Terry, Jr.D.TerryD.Terry Jr.D.Terry, Jr.Deway TerryDeweyDewey CHIEF TerryDewey PerryDewey Terry Jnr.Dewey Terry JrDewey Terry Jr.Dewey Terry Jun.Dewey Terry jr.Dewey Terry jun.Dewey Terry, Jr.Dewey, TerryDewy And TerryFerryJ. TerryJerryJerry DaveyJerry, Jr.PerryStevensTerryTerry DeweyTerry JnrTerry Jnr.Terry JrTerry Jr.Terry JuniorTerry jr.Terry, Dewey StevenTerry, JrTerry, Jr.Terry.Torryd. Terry Jr.Don & DeweyThe Squires (15) + +865120Arild JensenNorwegian trombonist, 1926-2018. Employed at Oslo Philharmonic Orchestra from 18 years old in 1944 and until reaching retirement age in 1991, making him the longest ever serving musician of the Oslo Philharmonic.Needs Votehttps://no.wikipedia.org/wiki/Arild_Jensen_(trombonist)The Norwegian Big BandOslo Filharmoniske OrkesterFilharmonisk Selskaps OrkesterFred Thunes' OrkesterWill Arilds Orkester + +865411Ulf HoelscherGerman violinist and music professor at the Hochschule für Musik Karlsruhe, Germany. He was born 17 January 1942 in Kitzingen, Germany.Needs Votehttp://www.ulfhoelscher.de/https://en.wikipedia.org/wiki/Ulf_HoelscherHoelscherU. HoelscherUlf HeolscherUlf HoescherUlf HoeschlerUlf HölscherУльф ХёльшерEnsemble Ulf Hoelscher + +865440Edwin LivingstonAmerican bassist living in Los AngelesNeeds Votehttp://www.edwinlivingston.comhttps://www.facebook.com/edwin.livingston.90Edward LivingstonThe Edwin Livingston GroupDale Fielder QuartetDave Slonaker Big BandHot Buttered RhythmRich Willey's Boptism Big BandJason Lee Bruns Jazz CollectiveBob Meyer's Concept OrchestraLorca Hart Trio + +865497John RojakJohn RojakBass trombonist John Rojak joined the American Brass Quintet in 1991, with which he has been touring internationally, recording, and teaching, including residencies at the Juilliard School in New York and the Aspen Music Festival.Needs VoteJohn D. RojakJohn RojackOrchestra Of St. Luke'sAmerican Brass QuintetThe New York PopsFranklin Kiermyer & JerichoThe American Brass Quintet Brass Band + +865617Frank KaderabekFrank John KaderabekFormer principal trumpet of the Philadelphia Orchestra and educator at the Curtis Institute in Philadelphia. +(1929 – December 28, 2023) Needs Votehttp://en.wikipedia.org/wiki/Frank_KaderabekФ. КадерабекThe Philadelphia OrchestraDetroit Symphony OrchestraChicago Symphony Orchestra + +865618Dmitri AlexeevДмитрий Константинович АлексеевRussian pianist, born 10 August 1947 in Moscow, Russia.Needs Votehttps://en.wikipedia.org/wiki/Dmitri_Alexeev_(pianist)AlexeevD. AlexeyevDimitri AlexeievDmitri AleevevDmitri AlexeievDmitri AlexejevDmitri AlexejewDmitri AlexeyevDmitri AlexeyvDmitrij AleksejevDmitrij AlexejewDmitry AlexeyevД. АлексеевДмитрий АлексеевДмитрий Алексеев + +865654Régine CrespinFrench soprano. She was born 23 February 1927 in Marseille, France and died 5 July 2007 in Paris, France.Needs Votehttps://en.wikipedia.org/wiki/R%C3%A9gine_CrespinCrespinRegine CrespinРегина Креспинレジーヌ・クレスパン + +865659Birgit NilssonMärta Birgit Nilsson Niklasson née SvenssonSwedish dramatic soprano and hovsångare (royal court singer), born 17 May 1918 on a farm at Västra Karup in Skåne, Sweden and died 25 December 2005 at Bjärlöv near Kristianstad in Skåne, Sweden.Needs Votehttp://en.wikipedia.org/wiki/Birgit_Nilssonhttps://sv.wikipedia.org/wiki/Birgit_NilssonB NilssonB. NilssonBirget NilssonBirgitBirgit Märta NilssonBirgit NielssonBirgit NilsonBirgit NilssonováMascagniNillsonNilssonΜπίργκιτ ΝίλσσονΝίλσσονБ. НильсонБ. НильссонБиргит НильсонБиргит НильссонБиргитт Нильссон + +865660Helga DerneschAustrian operatic soprano, born 3 February 1939 in Vienna, Austria.CorrectDerneschH. DerneschHelge DerneschMme Derneschヘルガ・デルネシュ + +865661Lucia PoppLucia PoppováSlovak operatic soprano. She was born 12 November 1939 in Záhorská Ves, Slovakia, and died 16 November 1993 in Munich, Germany.Correcthttp://en.wikipedia.org/wiki/Lucia_Popphttp://www.bach-cantatas.com/Bio/Popp-Lucia.htmL. PoppPoppЛ. ПоппЛючия ПоппПоппルチア・ポップ + +866179Victor SimciskoViktor ŠimčiskoSlovak classical violinist and conductor. +Born 28 September 1946 in former Czchoslovakia. Needs Votehttp://www.szhk.sk/index.php?option=com_content&task=view&id=346&Itemid=115V. SimciskoV. SimliskoV. ŠimčiskoVictor SimciskiVictor ZimziskoVictor ŠimčiskoViktor SimciscoViktor SimciskoViktor SimiciskoViktor SimčiskoViktor ŠimciskoViktor ŠimčiskoVitor SimsciscoSlovak Radio Symphony Orchestra + +866292Ronnie BallRonald BallEnglish jazz pianist, born 22 December 1927 in Birmingham, England; died in October 1984 in New York City, USA.Needs Votehttps://en.wikipedia.org/wiki/Ronnie_BallBallR BallR. BallRonald BallRonne BallThe Lee Konitz QuartetWarne Marsh QuartetBuddy Rich QuartetThe Ted Brown SextetWarne Marsh QuintetRick Jones QuartetRonnie Ball QuartetDizzy Gillespie's Cool Jazz StarsRonnie Ball TrioRonnie Ball Quintet + +866498Peter HindmarshNZ bassist.CorrectHindemarshHindermarshHindermashHindmarshThe Premiers (6) + +866594Christoph PoppenChristoph Poppen (born 9. March 1956 in Münster) is a German conductor and violinist. From 1996 to 2000 he was director of the Hochschule für Musik „Hanns Eisler“ Berlin, now he is professor in Munich. He was the principal conductor of the [a866595] and the [a2248354]. He is married to the soprano [a835269].Needs Votehttp://www.christophpoppen.com/https://en.wikipedia.org/wiki/Christoph_PoppenChristophe PoppenChristopher PoppenPoppenMünchener KammerorchesterBachcollegium StuttgartCherubini-QuartettDetmolder KammerorchesterBundesjugendorchester + +866632Maurice BourgueFrench oboist, composer, and conductor, born 6 November 1939 in Avignon. Died 6 October 2023. +Needs Votehttps://fr.wikipedia.org/wiki/Maurice_Bourguehttps://en.wikipedia.org/wiki/Maurice_Bourguehttps://www.imdb.com/name/nm9313324/https://www.youtube.com/channel/UCapJYNQ-nvUZT_rIuKeivYABourgueM. BourgueMaurice BourguesМорис Бургモーリス・ブルゲモーリス・ブールグOrchestre National De FranceI MusiciFestival Strings LucerneOctuor À Vent Maurice BourgueTrio Maurice BourguePaillard Ensemble D'Instruments À Vent Et Percussions + +866646Alexander Von ZemlinskyAlexander von ZemlinskyAustrian composer and conductor (born October 14, 1871 in Vienna, Austria-Hungary – died March 15, 1942 in Larchmont, New York, NY, USA). + +Zemlinsky studied piano at a young age and played the organ at synagogue. In 1884, at age 13, he was admitted to the Vienna Conservatory where he studied piano, theory, and composition until 1892 under [a=Anton Door], [a=Robert Fuchs], [a=Johann Nepomuk Fuchs], and [a=Anton Bruckner]. + +In 1895, Zemlinsky founded the amateur orchestra Polyhymnia, in which [a=Arnold Schoenberg] played the cello. Both became life-long friends, and Schoenberg married Zemlinsky's sister. + +As a composer, Zemlinsky was influenced by [a=Johannes Brahms], who supported him and recommended his work to music publishers. His first great success came in 1897 with the performance of his "Symphony Nr. 2." In 1900, [a=Gustav Mahler] conducted the premiere of his opera "Es war einmal" (Once Upon a Time) at the Viennese Hofoper. + +In 1906, Zemlinsky became First Conductor at the Viennese Volksoper; in 1907-1908, he conducted at the Hofoper. This was followed by a longer stint at the Deutsches Landestheater in Prague, where he conducted between 1911 and 1927. In 1924, he premiered Schoenberg's "Erwartung" there. Zemlinsky then moved to Berlin to conduct at the Kroll Opera. The rise of the Nazis forced him to return to Austria in 1933 where he focused on composing and only occasionally worked as a guest conductor. In 1938, he and his wife fled via Prague to New York City. In contrast to his friend Schoenberg, however, Zemlinsky failed to catch on in the United States. After a series of strokes that made it impossible for him to continue composing, he died of pneumonia in 1942. + +His performances of [a95546], [a294746] and [a239236] in Prague and Berlin in the 1920s and early 1930s as well as his friendship to [a465983] rendered Zemlinksy during his life-time an important figure of European music in the 20th century. His fame and music, however, were only rediscovered in the 1970s, several decades after his death.Needs Votehttps://www.zemlinsky.at/https://en.wikipedia.org/wiki/Alexander_von_Zemlinskyhttps://www.musiklexikon.ac.at/ml/musik_Z/Zemlinsky_Alexander.xmlhttps://www.britannica.com/biography/Alexander-Zemlinskyhttp://orelfoundation.org/composers/article/alexander_zemlinskyhttps://www.naxos.com/person/Alexander_von_Zemlinsky/26360.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/359009/Zemlinsky_AlexanderA. ZemlinskyA. von ZemlinskyAlexander V. ZemlinskyAlexander ZemlenskyAlexander ZemlinskyAlexander v. ZemlinskyAlexander von ZemlinskyProf. A. ZemlinskýVon ZemlinskyZemlinsky + +866649Gürzenich-Orchester Kölner PhilharmonikerGürzenich-Orchester KölnThe German symphony orchestra [i]Gürzenich-Orchester Köln[/i] was founded in 1827 as "Concert-Gesellschaft" and is based in Cologne. It was named after Cologne's historic [i]Gürzenich[/i] ballroom, where the orchestra began playing their concerts in 1857. Since 1986, the orchestra has been based in the Kölner Philharmonie, as one of the two principal orchestras of the city, together with the [a653372]. It is also the orchestra of the Cologne opera hous (Kölner Oper). +Its musical directors have included [a656454], [a2689479], [a1183591], [a832926], [a866651], and [a1563530], among others. Since 2015, the principal conductor has been [a2042972].Needs Votehttps://www.guerzenich-orchester.de/en/https://en.wikipedia.org/wiki/G%C3%BCrzenich_Orchestra_Colognehttps://de.wikipedia.org/wiki/G%C3%BCrzenich-Orchester_K%C3%B6lnCologne PhilharmonicCologne Philharmonic OrchestraCologne Symphony OrchestraDas Gürzenich Orchester KölnDas Kölner Gürzenich-OrchesterDas Philharmonische Orchester KölnDie Streicher Des Kölner Gürzenich-OrchestersGuerzenich Orchestra Of CologneGuerzenich Orchestra, CologneGuerzenich Symphony Orchestra Of CologneGurzenich Symphony Orchestra Of CologneGurzenich Symphony Orchestra, CologneGurzenich-Orchester KolnGürzenich - Orchester KölnGürzenich OrchesterGürzenich Orchester CologneGürzenich Orchester KölnGürzenich Orchester Kölner PhilhamonikerGürzenich Orchester Kölner PhilharmonikerGürzenich OrchestraGürzenich Orchestra Of CologneGürzenich Orchestra of CologneGürzenich Orchestra, CologneGürzenich Orkestret, KölnGürzenich Symphony Orchestra , CologneGürzenich Symphony Orchestra Of CologneGürzenich-OrchesterGürzenich-Orchester Cologne PhilharmonicGürzenich-Orchester Der Stadt KölnGürzenich-Orchester KölnGürzenich-Orchester KölnerGürzenich-Orchester der Stadt KölnGürzenich-Orchester, KölnGürzenich-Orchesters KölnGürzenich-Sinfonie-OrchesterGürzenich-Sinfonie-Orchester KölnGürzenich-Symphonie-Orchester KölnGürzenichorchester Der Stadt KölnGürzenichorchester KölnKölner Guerznich OrchestraKölner Gürzenich Orch.Kölner Gürzenich OrchestraKölner Gürzenich Orchestra (Montreux)Kölner PhilharmonikerKölner Philharmoniker / Gürzenich-OrchesterKölnerr Güzenich Orch.Mitglieder Des Gürzenich-Orchester, KölnMitglieder Des Gürzenich-OrchestersMitglieder Des Gürzenichorchesters, KölnMitglieder Des Kölner Gürzenich-OrchestersMitglieder des Gürzenichorchesters KölnOrchester Der Kölner Oper (Gürzenich)Orchestra Di ColognaOrchestra Du Gürzenich De CologneOrchestra Of The Gürzenich Of CologneOrchestra Sinfonica Del Gurzenich Di ColoniaOrchestra of the Gürzenich of CologneOrchestreOrchestre D Güzernich De CologneOrchestre De Gürzenich De CologneOrchestre Du GurzenichOrchestre Du Gürzenich De CologneOrchestre Du Gürzenich de CologneOrchestre Du Güzernich De CologneOrchestre Gurzenich De CologneOrchestre Gürzenich De CologneOrchestre Philharmonique De CologneOrchestre Symphonique Du Gurzenich De CologneOrchestre Symphonique Du Gurzenich de CologneOrchestre Symphonique Du Gürzenich De CologneOrchestre Symphonique Du Gürzenich de ColognaOrchestre Symphonique Du Gürzenich de CologneOrchestre Symphonique Du Gürzenich, CologneOrchestre Symphonique Du Gürzenicht De CologneOrchestre du Gürzenich de CologneOrquesta Filarmónica De ColoniaOrquesta Filarmónica de ColoniaOrquesta Gürzenich De ColoniaOrquesta Sinfonica De Colonia Dirigida Por Gunther WandOrquesta Sinfónica De ColoniaOtto AckermannPhilharmonisch Orkest van ColognePhilharmonisches Orchester KölnSymphony Orchestra Of CologneThe Cologne Opera House OrchestraThe Cologne Philharmonic OrchestraThe Gürzenich Orchestra Of CologneThe Gürzenich Symphony OrchestraThe Gürzenich Symphony Orchestra Of CologneGürzenich-Orchester der Stadt KölnVincent RoyerUlrike SchäferOtmar BergerDaniel RaabeH. HoffmannGünter WandJürgen KussmaulFrederick StockIda BielerColin HarrisonBernhard OllUrsula Maria BergDirk OtteGeorge HeimbachHellmut SchneidewindFriederike ZumachJoanna BeckerRainer SchottstädtHerbert LangeSaskia KwastJuraj ČižmarovičFritz PahlmannChristoph BujanowskiCarsten SteinbachEgon HellrungHans Joachim ZingelHenning RascheIkuko HommaMarkus WittgensAndreas JakobsElisabeth PolyzoidesMartina HorejsiAntoaneta EmanuilovaTom Owen (2)Franz KleinDylan NaylorNathalie StreichardtWolfgang SallmonNatalie CheeKlaus LohrerThomas AdamskyMatthias RaczKelly MitropoulouJana AndraschkeHubert CrütsHans GelharTorsten JanickeAndré SebaldKarl-Heinz WeberNathan BraudeStephan CürlisFerenc MihalyGabor JanosiChristoph RombuschMichael ZühlKurt SchäfferJohannes EsserPhilipp ZellerChristoph BaumgartnerJoachim GriesheimerChristian GeldsetzerJ. Baum (2)Maria ScheidAntonia SchreiberMatthias KieferWilliam GriggJohannes SeidlManfred Neumann (2)Jee-Hye BaeJuta Õunapuu-MocanitaGerhard DierigH. RöselerF. Zimmermann (3)J. IppenMarkus LenzingSylvia BorgRose KaufmannDaniel CahenSarah AeschbachDaniel DangendorfJörg SteinbrecherDemetrius PolyzoidesJens KreuterChristopher CorbettKonstantin KrellJohannes SchusterOliver Schwarz (3)Sergej KhvorostukhinHenrik RabienBernhard PietrallaDavid Johnson (94)Christian DollfußGuglielmo Dandolo MarchesiJan BöhmeCarsten LuzFranziska LeubeGerhard ReuberEkkehardt FeldmannMitglieder Des Gürzenich-Orchesters + +866651James ConlonJames ConlonUS conductor, born in 1959 in New York City, graduate and former faculty member of the Juilliard School, well-known for his concertante performances of [url=http://www.discogs.com/artist/Alexander+Von+Zemlinsky]Zemlinsky[/url], [url=http://www.discogs.com/artist/Gustav+Mahler]Mahler[/url] and [url=http://www.discogs.com/artist/Ludwig+van+Beethoven]Beethoven[/url]. Since October 2016 he is the Principal Conductor of [a1642158]Needs Votehttp://www.sonyclassical.com/artists/conlon/bio.htmlhttps://jamesconlon.comhttps://en.wikipedia.org/wiki/James_ConlonConlonJohn Conlon + +866814Andreas KippGerman cellist, born 1975 in Hameln, Germany.Needs VoteRundfunk-Sinfonieorchester BerlinBerliner Cellharmoniker + +866958Christian Funke (2)German violinist, born 18 April 1949 in Dresden, Germany. He was the first concertmaster of the [a522210] from 1979 to 2014.Needs VoteChristian FunkeFunkeGewandhausorchester LeipzigStaatskapelle Dresden + +866962C. MapelAugusto Algueró AlgueróAlias from [a3910944]. Mainly used in adapted lyrics. +In Spanish pronunced similar as French "Je m'appelle".Needs VoteA. MappellAugusto Algueró AlgueróC MapelC. MapellC. MapetC. MappelC. MappellC. MarpelC.MapelCapelCarlo MapelCarlos MapelG. MapelGeraldM. MapelMandelMaoelMapelMapellAlfonso AlpinAugusto Algueró (2) + +867046Beat SchneiderCellist.Needs VoteCamerata BernEuropean Chaos String QuintetDaniel Schmidt & Orchestrion + +867074Jack PettisJohn Barber PettisAmerican jazz saxophonist, clarinetist and songwriter. +Born 10 February 1902, Ehrmandale, Vigo County, Indiana, USA. +Died 24 August 1963, Oklahoma City, Oklahoma, USA. +Pettis was a member of [a=Friar's Society Orchestra], which first recorded in 1922, and was renamed [a=New Orleans Rhythm Kings] in 1923. He joined Ben Bernie's orchestra in 1924, and from 1926 on a number of records as a leader, some issued under pseudonyms. He continued performing into the 1930s. +He was a prolific songwriter (most often composer). His best known composition was "Bugle Call Blues" otherwise known as the "Bugle Call Rag", which was co-written by [a=Billy Meyers (2)] & [a=Elmer Schoebel]) was a hit for Frank Westphal & His Orchestra in 1923, Red Nichols & His Five Pennies in 1927, and The Mills Brothers in 1932.Needs Votehttp://www.jazzage1920s.com/jackpettis/jackpettis.phphttps://www.20sjazz.com/videos/jack-pettishttps://www.imdb.com/name/nm1959692/https://adp.library.ucsb.edu/index.php/mastertalent/detail/110413/Pettis_Jack?Matrix_page=100000J. PellisJ. PettisJ.PettisJ.s PettisJac. PetJack PettitsJeck PettisJohn PettisPaltisPattisPeltisPetisPetitsPette'sPettesPettiesPettisPettitPettyPottitsTettisПелтисNew Orleans Rhythm KingsJack Pettis & His PetsJack Pettis And His OrchestraBen Bernie OrchestraIrving Mills And His Hotsy Totsy GangJack Pettis And His Band + +867083Petr ŠkvorPetr ŠkvorCzech violinist, concertmaster and conductor. +Born 12 March 1948 in Prague (former Czechoslovakia), died 13 October 1993 in Prague. +Needs VoteP. SkvorPeter SkvorPeter ŠkvorPetr KvorSkvorŠkvorThe Czech Philharmonic OrchestraPrague Chamber Orchestra + +867177Alexander JablokovRussian born violinist.Needs Votehttp://www.jablokov.skYablokovCapella IstropolitanaTrio Passionato + +867180Bedřich TylšarBedřich TylšarCzech French horn player.Needs VoteB. TylšarBedrich TylsarBedrich TylšarTylšarTylšar B.Capella IstropolitanaZdeněk A Bedřich Tylšarové + +867203Ermanno Wolf-FerrariErmanno Wolf-FerrariItalian composer, born on 12 January 1876 in Venice, Italy, died on 21 January 1948 in Venice, Italy.Needs Votehttps://www.wolf-ferrari.com/https://en.wikipedia.org/wiki/Ermanno_Wolf-Ferrarihttps://www.britannica.com/biography/Ermanno-Wolf-Ferrarihttps://www.treccani.it/enciclopedia/ermanno-wolf-ferrari_(Enciclopedia-Italiana)/https://adp.library.ucsb.edu/names/103452E. Wolf - FerrariE. Wolf FerrariE. Wolf-FerrariErmanno WolfErmanno Wolf FerrariErmano Wolf FarrariErmano Wolf FerrariErmano Wolf-FarrariErmano Wolf-FerrariFerrariM. Wolf-FerrariManno Wolf FerrariManno Wolf-FerrariV.フェルラーリV・フェルラーリW. FerrariWolf - FerrariWolf FerrariWolf Ferrari, ErmannoWolf-FarrarriWolf-FerraiWolf-FerrariWolf-ferrariWolf/FerrariЭ. Вольф-Феррариボルフ・フェラーリヴォルフ=フェラーリヴォルフ・フェラーリヴォルフ=フェラーリ + +867250Michael KuttnerKuttner MihályMihály Kuttner (9 December 1918 - 10 October 1975) was a classical violinist.Needs VoteKuttnerM. KuttnerMichael KüttnerMihaly KuttnerMihàly KuttnerMihály KuttnerThe Hungarian Quartet + +867251The Hungarian QuartetString quartet founded in 1935 in Budapest and disbanded in 1972. It is separate and distinct from the [a=New Hungarian Quartet] (founded in 1972), though the violist in both groups was the same. + +First violin: Sándor Végh (1935–1937), Zoltán Székely (1937–1972). +Second violin: Péter Szervánsky (1935–1937), Sándor Végh (1937–1940), Alexandre Moszkowsky (1940–1959), Mihaly Kuttner (1959–1972). +Viola: Denes Koromzay (1935–1972). +Violoncello: Vilmos Palotai (?1935-c1956), Gabor Magyar (c1956-1972). +Correcthttp://en.wikipedia.org/wiki/Hungarian_QuartetCuarteto De Cuerdas HúngaroCuarteto HungaroCuarteto HúngaroDas Ungarische QuartettDas Ungarische StreichquartettDas Ungarisches StreichquartettHungarian QuartetHungarian String QuartetLe Quatuor HongroisMembers Of The Hungarian QuartetMembers Of The Hungarian QuintetMembers Of The Hungarian String QuartetMemberst Of The Hungarian String QuartetMitglieder Des Ungarischen StreichquartettsQuartetto UnghereseQuartetto d'Archi UnghereseQuatuor HongroisThe Hungarian String QuartetUngarisches StreichquartettКвартет Имени БетховенаMichael KuttnerGabor MagyarDenes KoromzayZoltan SzekelyAlexandre MoskowskyVilmos Palotai + +867252Gabor MagyarHungarian cello player.Needs VoteG. MagyarGabriel MagyarGàbor MagyarGábor MagyarMagyar GáborThe Budapest Philharmonic OrchestraHungarian State Opera OrchestraThe Hungarian QuartetHaydn Quartet, BudapestNew Haydn Quartet + +867253Denes KoromzayDénes K. KoromzayDénes Koromzay (18 May 1913 - 15 July 2001) was a classical violist.Needs VoteD. KoromzayDenes KeromzayDenes KiromzayDenes KoromsayDenis KoromzayDenès KoromzayDénes KoromzayThe Hungarian QuartetNew Hungarian Quartet + +867254Zoltan SzekelyZoltán SzékelyZoltán Székely (8 December 1903 - 5 Ocobter 2001) was a classical violinist and composer.Needs VoteSzekeliSzekelySzékelySzékely Z.Z. SzekelyZ. SzékelyZoltan ScheckeliZoltan SzékelyZoltàn SzèkelyZoltàn SzékelyZoltán SzekelyZoltán SzékelyZotlán SzekelyThe Hungarian Quartet + +867274Hans GeigerClassical violinist. +He was Principal Second and First Violin with the [a=London Symphony Orchestra] (1963-1976).Needs Votehttps://www.the-paulmccartney-project.com/artist/hans-geiger/https://www.imdb.com/name/nm10135585/H. GeigerH. geigerLondon Symphony OrchestraNational Philharmonic OrchestraPhilharmonia OrchestraThe Virtuosi Of EnglandBath Festival Chamber OrchestraBath Festival OrchestraLondon Soloists Ensemble + +867276Eric BowieClassical violinist. Died in December 2019 in France. +Former member of the First Violin section of the [a=London Symphony Orchestra] (1963-1965).Needs Votehttps://www.the-paulmccartney-project.com/artist/eric-bowie/https://lso.co.uk/more/news/1407-obituary-dec-2019.htmlE. BowieLondon Symphony OrchestraThe Alan Tew OrchestraThe London Jazz Chamber Group + +867277John RonayneJohn Edward Joseph RonayneIrish classical violinist. Born 16 October 1931 in Dublin, Eire - Died 28 June 2009. +In 1948, he joined the [a=Radio Eireann Light Orchestra] as second violin, and in the following year moved to the symphony orchestra. He then moved to London, England where he studied at [l305416]. Former member of the [a=London Symphony Orchestra] (1955-1957). In 1958, he was offered the co-leadership of the [a=Royal Philharmonic Orchestra]. In 1963, he was offered the leadership of the [a6504478]. He then accepted the position of the Leader of the [a540187]. He returned to London and, after a brief spell with the RPO, he decided to join the session world.Needs Votehttps://open.spotify.com/artist/6DoGzjxdhu336wvIgwDUvshttps://music.apple.com/us/artist/john-ronayne/1349721474?l=eshttps://www.irishtimes.com/news/violinist-leader-of-orchestras-and-joyce-devotee-1.702750https://de.wikipedia.org/wiki/John_Ronaynehttps://www.the-paulmccartney-project.com/artist/john-ronayne/J. RonayneJoan RonayneLondon Symphony OrchestraRoyal Philharmonic OrchestraMünchner RundfunkorchesterRadio Eireann Light OrchestraRTÉ Symphony OrchestraRadio Eireann Symphony Orchestra + +867403Gilbert Lopez (2)Gilbert J. LopezSongwriter. + +Please refer to [a=Gil Lopez (2)] for a salsa pianist, composer and arranger.Needs Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&keyid=206568&keyname=LOPEZ+GILBERT+J&CAE=18439480&Affiliation=BMIG. J. LopezG. LopezGelbert LopezGil LopezGilbert J. LopezLopesLopezLopez, GThe Tune Weavers + +867407Margo SylviaSongwriter. She was born April 4th, 1936. She died on October 25th, 1991. Needs Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=30016156&affiliation=BMI&keyid=21904&keyname=SYLVIA+MARGOM. J. SylviaM. SylviaMargo - SylviaMargo LewisMargo SylivaSilviaSylciSylviSylviaSylvia, MMargo LopezThe Tune Weavers + +867462Mark BrandenburgAmerican classical clarinetist.Needs VoteMark C. BrandenburgSan Francisco SymphonyCalifornia Parallèle EnsembleCowell QuintetSan Jose Symphony + +867465Joshua GarrettAmerican horn player.Needs VoteSan Francisco SymphonyCalifornia Parallèle EnsembleCowell Quintet + +867470Roger WiesmeyerAmerican classical oboist. A Nashville native, he began playing piano at age 4 and oboe at age 10.Needs VoteRoger M. WeissmeyerRoger M. WiesmeyerRoger N. WiesmeyerRoger WeismeyerRoger WeissmeyerSan Francisco SymphonyCalifornia Parallèle EnsembleCowell QuintetNashville Symphony OrchestraHonolulu SymphonyALIAS Chamber Ensemble + +867602Ignaz SchnitzerAustrian writer, journalist, translator and librettist, born 4 December 1839 in Ratzersdorf, Austria-Hungary (today part of Bratislava, Slovakia), died 18 June 1921 in Vienna, Austria.CorrectE. SchnitzerI. SchnitzerI. SchnitzlerIgnatz SchnitzerIgnaz SchitznerIgnaz SchnitzlerJ. SchnitzerJ.SchnitzerScheitzerSchitznerSchmitzlerSchnitgerSchnitzerSchnitzlerSchnizler + +867659Donald GrobeDonald Roth GrobeAmerican lyric tenor (* 16 December 1929 in Ottawa, Illinois, USA; † 01 April 1986 in Berlin, Germany).Needs Votehttps://de.wikipedia.org/wiki/Donald_GrobeD. GrobeDaniel GrobDaniel GrobeDonald GropbeGrobeДоналд Гроуб + +867660Erwin WohlfahrtGerman operatic tenor. He was born 13 January 1932 in Nuremberg, Germany and died 28 November 1968 in Hamburg, Germany.Correcthttp://de.wikipedia.org/wiki/Erwin_WohlfahrtErwin WohlfartWohlfahrtΈρβιν Βόλφαρτ + +867711David RoblouConductor, Harpsichordist, Organist, Pianist and Vocal Coach. +Founder Musical Director of Midsummer Opera and since 2000 overall Artistic Director. +Teaches as vocal coach at the Guildhall School of Music and Drama. +Needs VoteDavis RoblouRoblouNew London ConsortThe Academy Of Ancient MusicI FagioliniThe Consort Of Musicke + +867783Pierre-Henri XuerebFrench viola player, born 1959. He studied in Avignon and at the Paris Conservatoire, Julliard School and Boston University. Xuereb was one of the last students of [a=William Primrose]. He spent two years with Ensemble InterContemporain before starting a solo career.Needs Votehttp://www.xuereb-viola.com/Pierre Henri XuerebXuerebEnsemble IntercontemporainLa FolliaEnsemble AlternanceEnsemble Harpeggio + +867824Helen VerneyClassical cellist from the UK.Needs VoteThe Parley Of InstrumentsOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe Symphony Of Harmony And InventionThe London Cello SoundThe English Concert + +867825James Johnstone (3)Harpsichord, Organ & Continuo player.Needs VoteJames JohnstoneThe English Baroque SoloistsThe Academy Of Ancient MusicI FagioliniGabrieli PlayersEx Cathedra Chamber ChoirSonnerieThe King's ConsortI Furiosi Baroque EnsembleHarmonie UniverselleFlorilegiumKontrabande + +867826Melanie StroverClassical violist.Needs VoteEnglish Chamber OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Brandenburg Consort + +867827Rebecca MilesClassical violinist, also plays recorder.Needs Votehttps://www.facebook.com/rebecca.miles.712RebeccaThe SixteenThe Academy Of Ancient MusicGabrieli PlayersThe King's ConsortBrandenburg ConsortArcangeloRetrospect Ensemble + +867828Roy MowattClassical violinist, musicologist, producer and recording supervisor.Needs VoteRow MowattRoy MowarrGabrieli ConsortThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe King's ConsortArcangeloThe English Concert + +867829Iona DaviesClassical violinist.Needs VoteThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentGabrieli PlayersThe King's ConsortBrandenburg ConsortArcangeloClassical OperaThe English Concert + +867830Amanda McNamaraAmanda McNamaraClassical double bass player from the UK.Needs VoteAmanda MacNamaraAmanda MacnamaraNew London ConsortThe Parley Of InstrumentsThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersThe King's ConsortBrandenburg ConsortLondon Handel OrchestraThe English Concert + +867831Julia BishopClassical violinist.Needs VoteThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersRed PriestThe King's ConsortOrchestra Of The Golden AgeThe English ConcertSprezzatura + +867833Marie Knight (2)Classical violinist.Needs VoteMarie KnightsThe Scholars Baroque EnsembleLes Arts FlorissantsThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicThe King's ConsortSpectre De La Rose + +867834Silas StandageClassical organist and harpsichordist.Needs VoteSilas John StandageThe English Baroque SoloistsThe Academy Of Ancient MusicHis Majestys Sagbutts And CornettsPalladian Ensemble + +867946Eduard van BeinumEduard van BeinumDutch conductor. He was born 3 September 1900 in Arnhem, The Netherlands and died 13 April 1959 in Amsterdam, The Netherlands. +Chief conductor of the [a754894] from 1945 to 1959.Needs Votehttps://en.wikipedia.org/wiki/Eduard_van_Beinumhttps://adp.library.ucsb.edu/names/104962/BeinumE. Van BeinumE. van BeinumEd. van BeinumEdouard Van BeinumEdouard van BeinumEduard Van BeinumEduard von BeinumEdward van BeinumVan BeinumVan Beinum ...van BeinumÉduard van Beinumエドゥアルト・ヴァン・ベイヌムConcertgebouworkest + +867975Hyman BressCanadian violinist (* 30 June 1931 in Cape Town, South Africa; † 30 October 1995 in Montreal, Canada). He is known for having recorded the violin concertos of [a835045] and [a944146], probably the first to do so, among many other obscure works. He was the first violinist and founder of the [a4871326] with the Joachim brothers. He became concertmaster, at age 27, of the Montreal Symphony for one season (1958-59) then continued his concertizing career as a soloist, often with major orchestras like the Berlin Philharmonic and the London Symphony and continued playing with the quartet until 1963. In the 1960s, Bress recorded a series of five records for [l20694] entitled The Violin, covering material from the Baroque to the Twentieth Century and included one of his own electronic compositions – the Fantasy for Violin, Piano, and electric tape. In New York, circa 1962, he presented his Fantasy while the score of the piece was being shown on a large screen as it was being played – one of the first instances of a multi-media concert presentation.Needs Votehttps://www.thecanadianencyclopedia.ca/en/article/hyman-bress-emchttp://pronetoviolins.blogspot.com/2011/04/bress.htmlHymen BressOrchestre symphonique de MontréalMontreal String Quartet + +867980Robert MandellRobert Mandell born in New York City, ( August 22, 1929 - April 25, 2020) was an international conductor. While American, he is noted in the United Kingdom for his popular family concerts, young people's concerts, and stage musicals +In 1955, Mandell was appointed the special music assistant to Bernstein for a series of television specials he created for the Ford Foundation's sponsored arts program, Omnibus, on CBS. In 1956, Mandell founded the Ars Nova Ensemble, with whom he began to perform an annual series of concerts at Town Hall and Carnegie Hall in New York City. His Ars Nova 1956 recording of Stravinsky’s L’Histoire du Soldat, one of the earliest to employ stereo technology, has been re-released after 50 years. That same year he was appointed music director of the York Symphony Orchestra in York, Pennsylvania. +In 1957, Bernstein appointed Mandell to become part of the creative team for his newly planned televised Young People's Concerts. In 1958, Mandell was also named music director of the Philadelphia Little Symphony, with whom he performed with both in Philadelphia and New York, and the Westchester Symphony in Westchester County, New York. +Between 1955 and 1967, Mandell was executive music director of the North Shore Music Theatre in Beverly, Massachusetts. Between 1961 and 1968, he recorded over 50 LP discs in London for Readers Digest Records under a variety of pseudonyms, including Eric Hammerstein, Johnny Gibbs, Ray Thomas, Juan Ramirez, Pablo Mendez, Dick Mahi, The Button-Down Brass, The Romantic Saxophones and Strings, and The Collegians. In 1968 Mandell took up residency with his family in England. He concentrated his career initially in musical theater and then on bringing popular classical concerts to a new audience through his "Concerts for the Family" series. +In 1972, Mandell became the music director for the Anthony Newley and Leslie Bricusse musical The Good Old Bad Old Days, which ran for 309 performances at London's Prince of Wales Theatre. In 1973 Mandell became executive music director at the city of Leicester's newly opened Haymarket Theatre, which launched a number of major international revivals of musicals such as Joseph and The Amazing Technicolour Dreamcoat and Cameron Mackintosh’s tour of Oliver!, prior to its London West End opening. From 1974, Mandell designed musical entertainments for the concert hall. +In 1975, Mandell began what became a regular series of guest tenures with The City of Birmingham Symphony Orchestra to promote a new series of "Concerts for the Family" and young people’s concerts. +After acquiring a major classical theatrical and light entertainment music library of over 1,000 orchestrations in 1976 from the estate of the British composer and arranger George Melachrino, Mandell launched a national family concert program conducting a reestablished Melachrino strings and orchestra ensamblee, with whom he toured the UK nationally annually until 2000. In May 2012, Mandell published an extended musical memoir of Bernstein, entitled West Side Maestro.Needs Votehttps://en.wikipedia.org/wiki/Robert_Mandell_(conductor)L. MandellMandellR. MandellRobert MendellJuan Ramirez (2)Eric HammersteinJohnny GibbsThe Button Down BrassCity Of Birmingham Symphony OrchestraWestchester Symphony OrchestraPablo Mendez And His OrchestraRobert Mandell And His OrchestraRobert Mandell, His Orchestra And ChorusRobert Mandell And His Swing BandDick Mahi And His Hawaiian Paradise OrchestraBob Mandell And His WolverinesRobert Mandell ChorusThe Collegians (5)American Little Symphony Of PhiladelphiaArs Nova (13)Leicester Children's ChoirThe Robert Mandell Singers + +867995Jascha HorensteinUkrainian conductor (* 06 May 1898 in Kiev, Russian Empire; † 02 April 1973 in London, United Kingdom).Needs Votehttps://de.wikipedia.org/wiki/Jascha_Horensteinhttp://operalounge.de/cd/diverses-cd/fuer-kenner-unerreichthttps://www.lexm.uni-hamburg.de/object/lexm_lexmperson_00003490https://adp.library.ucsb.edu/names/103795HorensteinJ. HorensteinJacha HorensteinJasch HorensteinJasha Horensteinヤッシャ・ホーレンシュタイン + +868025Ed WingellEdouard WingellCanadian classical bassistNeeds VoteEdouard WingellEdward WingellOrchestre symphonique de Montréal + +868147Leon King (2)Classical violinist and violist.Needs Votehttps://highnotesmusic.org/artists/leon_king/Gabrieli ConsortRoyal Philharmonic OrchestraThe Academy Of Ancient MusicHanover Band + +868164Christian HedrichGerman violist and conductor, born 1939 in Dresden, Germany.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleBachcollegium StuttgartDeutsches StreichtrioKalafusz-Trio + +868234Daniela NuzzoliItalian Classical violinist and mezzo-soprano vocalist.Needs Votehttp://www.danielanuzzoli.com/danielanuzzoli.com/Home.htmlEuropa GalanteIl Giardino ArmonicoBalthasar-Neumann-EnsembleAcademia Montis RegalisEnsemble MatheusIl Pomo d'OroPratella Ensemble + +868235Antonio FantinuoliItalian classical cellist.Needs VoteLe Concert Des nationsEuropa GalanteEnsemble Pian & ForteEnsemble ChiaroscuroAlessandro Stradella ConsortQuartetto Aira + +868236Europa GalanteItalian ensemble formed in 1990 by [a=Fabio Biondi], performing baroque and classical music on original instruments.Correcthttp://www.europagalante.com/Ensemble Europa GalanteEurope GalanteL' Europa GalanteL'Europa GalanteOrchestra Europa GalanteTrio L'Europa Galanteエウローパ・ガランテMaurizio Ben OmarEnrico CasazzaRinaldo AlessandriniDileno BaldinTiziano BagnatiErmes PecchininiPascal MonteilhetDaniela NuzzoliAntonio FantinuoliMaurizio NaddeoFrancesco LatuadaRaffaello NegriSergio CiomeiAndreas AlbertaniLorenzo ColittoGiancarlo PavanFabio BonizzoniRobert Brown (6)Isabella LongoSilvia FalavignaMargreth KöllFabio BiondiSonia MaurerGiovanni ScaramuzzinoCarla MarottaStefano VezzaniFabrizio CiprianiLorenzo CoppolaEttore BelliFrancesca VicariGiangiacomo PinardiElin GabrielssonUgo NastrucciGiorgio MandolesiGili RinotAngelo BartolettiStefano MarcocchiSilvia MondinoLuca GiardiniAndrea RognoniFabio RavasiAlessandro PiquePaola PoncetBrunello GorlaMarco ScorticatiPatxi MonteroErnesto BraucherSilvia RinaldiFrançois De RudderRenata SpottiGuido De VecchiGabriele FolchiAlessandro BaresGiovanni SabbioniLisa FergusonClaudio PinardiFrancisco Jose MonteroMaurice StegerPetr ZejfartCharles RieraDiego MeccaSimone ToniPaola ErdasMarino LagomarsinoMolly MarshHélène Couvert-SuignardRobert Ferrentino BrownFrancois De RudderElisa CitterioBarbara AltobelloRosa SegretoSilvia CantatoreLaura CorollaRoberto BrownSergio PavanRossella BorsoniKrishna NagarajaAlessandro AndrianiPerikli PiteSimone LaghiBarbara PalmaGianluca Mangiarotti + +868237Maurizio NaddeoClassical cellist.Needs VoteM. NaddeoMaurizzio NaddeoNaddeoCappella Musicale Di S. Petronio Di BolognaLa Chapelle RoyaleLe Concert Des nationsEuropa GalanteLes Musiciens Du LouvreConcerto Italiano + +868238Francesco LatuadaClassical viola player.CorrectEuropa Galante + +868240Raffaello NegriClassical violinist.Needs VoteEuropa GalanteAlessandro Stradella ConsortLa Risonanza + +868241Sergio CiomeiItalian harpsichordist, born in 1965 in Genova, Italy.Needs VoteCiomeiSergio CimeiEuropa GalanteIl Giardino ArmonicoI BarocchistiEnsemble Tripla ConcordiaLe Musiche Nove + +868242Andreas AlbertaniClassical viola player.CorrectEuropa Galante + +868243Lorenzo ColittoItalian classical violinist from Rome and founder of Ensemble [a=Archipelago (8)]Needs Votehttps://www.maac.pt/en/artista/lorenzo-colittoEuropa GalanteConcerto ItalianoEnsemble ElymaConcerto PalatinoInsieme Strumentale Di RomaEnzo Pietropaoli Strings ProjectZefiroArchipelago (8)CapellantiquaIl Concerto D'Arianna + +868244Giancarlo PavanClassical double bass player, born in 1960 in Padova, Italy.CorrectEuropa GalanteSonatori De La Gioiosa Marca + +868245Fabio BonizzoniClassical organist and harpsichordist. Founder of the baroque ensemble [a=La Risonanza] in 1995.Needs VoteThe Amsterdam Baroque OrchestraEuropa GalanteLa VenexianaOrchestra AglàiaLa Risonanza + +868246Robert Brown (6)Classical viola player.Needs VoteLe Concert Des nationsEuropa Galante + +868247Isabella LongoClassical violinist and violistNeeds VoteI. LongoEuropa GalanteModo AntiquoConcerto ItalianoIl Complesso BaroccoAlessandro Stradella ConsortLa Magnifica ComunitàLe Musiche NoveArchicembalo Ensemble + +868248Silvia FalavignaClassical violinist.Needs VoteLe Concert Des nationsEuropa GalanteConcerto Italiano + +868256Rosette AndayPiroska AndayHungarian mezzo-soprano, born Dec. 12, 1903 in Budapest, died Dec. 22, 1977 in Vienna.Needs Votehttps://en.wikipedia.org/wiki/Rosette_Andayhttps://adp.library.ucsb.edu/names/104269AndayAnday PiroskaR. AndayR. Anday (Con.)ロゼッテ・アンダイ + +868261Karin BranzellKarin Maria Branzell-EduarsenSwedish operatic contralto and hovsångare (royal court singer), born September 24, 1891 in Stockholm, Sweden and died December 14, 1974 in Altadena, California, USA. + +From 1913 to 1918 she was engaged at the Stockholm Opera, from 1919 to 1934 at the Berlin State Opera and from 1924 to 1944 and 1950 to 1951 at the Metropolitan in New York. She recorded for HMV (Stockholm 1915-1919), Deutsche Grammophon/Polydor (Berlin 1920-1922, 1927-1928), Homocord (Berlin 1924), Brunswick (New York 1924-1928) and Odeon/Parlophon (Berlin 1927-1928).Needs Votehttps://en.wikipedia.org/wiki/Karin_Branzellhttps://sv.wikipedia.org/wiki/Karin_Branzellhttps://de.wikipedia.org/wiki/Karin_Branzellhttps://www.skbl.se/en/article/KarinMariaBranzellhttps://adp.library.ucsb.edu/names/104636BranzellK. BranzellThe Metropolitan Opera + +868262Joseph SchwarzLatvian-German opera baritone, born October 10, 1880 in Riga, Latvia and died November 10, 1926 in Berlin, Germany, of kidney disease. Sang at opera houses in Vienna and Berlin and from 1921 also in the USA. Recorded for Zonophone, Edison, Parlophon and Deutsche Grammophon. +Needs Votehttps://de.wikipedia.org/wiki/Joseph_Schwarz_(Sänger)Josef Schwarz + +868264Frida LeiderFrida Leider (born Berlin, April 18, 1888 - died Berlin, June 4, 1975) was a German opera singer. + +The daughter of a Berlin doctor, Frida Leider was herself studying medicine when she attended a performance of Il Trovatore at the State Opera, Berlin. So deep an impression did Verdi's opera make on her that she determined at once that the operatic and not the operating theatre was to be the scene of her triumphs. After four years study she made her début in her native city, and quickly attracted attention. Her voice was ideal for Wagnerian rôles, and from the time that she first sang Brünnhilde and Isolde, Leider has been recognised as the greatest living exponent of these most difficult rôles. She came to London in 1924, quite unheralded. In a night she had London at her feet. Since then she has been a regular visitor to Bayreuth and Covent Garden, and in 1932 joined the company of the Metropolitan Opera House, New York.Needs Votehttp://www.frida-leider.de/http://en.wikipedia.org/wiki/Frida_Leiderhttps://adp.library.ucsb.edu/names/103849F. LeiderFrieda LeiderLeiderФрида Лайдер + +868271Maria MüllerMaria Reichenauer née MüllerAustrian-German opera singer (soprano), born on January 29, 1889 in Theresienstadt, Austria (now Terezín, Czech Republic), died on March 13, 1958 in Bayreuth, Germany. She sang mainly at opera houses in Berlin, Bayreuth and New York.Needs Votehttps://de.wikipedia.org/wiki/Maria_M%C3%BCller_(S%C3%A4ngerin)M. MüllerMaria MuellerMaria MullerMüllerМария Мюллер + +868298Yves BaudryEngineer.Correct + +868335Emma JohnsonEmma JohnsonBritish clarinetist, born 20 May 1966 in Barnet, Hertfordshire, England + +Needs Votehttp://www.emmajohnson.co.uk/JohnsonEnglish Chamber Orchestra + +868471Mildred Bailey And Her OrchestraCorrectHer OrchestraM. Bailey And Her Orch.Mildred Bailey & Her OrchestraMildred Bailey & Her Orch.Mildred Bailey & Her OrchestraMildred Bailey And Her Orch.Mildred Bailey E La Sua OrchestraMildred Bailey Orch.Mildred Bailey With Her OrchestraMildred Bailey With OrchestraMildred Bailey acc. by OrchestraMildred Bailey e Her Orch.OrchestraTeddy WilsonRoy EldridgeRussell ProcopeBuster BaileyJohn KirbyJo JonesBilly KyleBuck ClaytonCharlie ShaversWalter PageFreddie GreenHank D'AmicoLeon "Chu" BerryZutty SingletonMildred BaileyEdmond HallHerschel EvansHerbie HaymerAllan ReussTeddy ColeDave ToughPete PetersonO'Neil SpencerJohn Collins (2)Truck ParhamScoops CareyJimmy BlakeJimmy ShermanBobby Burns (7) + +868580Los Angeles Philharmonic New Music GroupNeeds Votehttps://www.laphil.com/press/releases/44Members Of The Los Angeles Philharmonic New Music GroupBarry SocherLos Angeles Philharmonic Orchestra + +868607Łukasz DzikowskiClassical oboistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejSinfonia Viva (2) + +868616Adrian JandaBorn 1979 in Dąbrowa Górnicza. Polish clarinetist.Needs VoteSinfonia VarsoviaOrkiestra Symfoniczna Filharmonii NarodowejSinfonietta CracoviaWrocławska Orkiestra Kameralna LeopoldinumGruppo di Tempera + +868752Jon DeakAmerican composer, educator and bassist, born 1943. Former Associate Principal Bassist of [a388185]. +Permanently active there from 1968 to 2009 with some later performances.Needs Votehttps://www.jondeak.com/https://en.wikipedia.org/wiki/Jon_DeakJohn DeakNew York PhilharmonicNew York Philharmonic Ensembles + +868766Jean-Claude BrionClassical clarinetist.Complete and CorrectBrionEnsemble Orchestral De Paris + +868780Klaus HirteGerman operatic baritone, born 28 December 1937 in Berlin, Germany and died 15 August 2002.Needs Votehttps://en.wikipedia.org/wiki/Klaus_HirteHirteK. Hirte + +868824Alan Sinclair (3)Tuba player. Principal tuba, Bournemouth Symphony Orchestra ca. 1971Needs VoteMike Westbrook OrchestraCity Of Birmingham Symphony OrchestraBournemouth Symphony Orchestra + +868890Michel GrisoliaCorrectM. GrisoliaMichel Grizolia + +868929Georges PrêtreGeorges Prêtre (born 14 August 1924, Waziers, Nord, France - died 4 January 2017, Naves, Corrèze, France) was a French conductor. He conducted many of the world's leading orchestras including serving as principal guest conductor of the [a696225] 1986–1991. Prêtre conducted the Vienna New Year's Concert twice, in 2008 and in 2010, the only French conductor to have been appointed this role.Needs Votehttp://en.wikipedia.org/wiki/Georges_Pr%C3%AAtrehttps://www.imdb.com/name/nm0699571/ConductingG. PretreG. PrêtreGeorge PretreGeorge PrêtreGeorges PreteGeorges PretreGeorges PrètreGeorges PréteGeorges PrétreGeorges PrêteGeorges PrêtresPretrePrêtreЖ. ПретрЖорж Претрジョルジュ・プレートルプレートルOrchestre National Du Capitole De Toulouse + +869031György TerebesiHungarian violinist, born 23 July 1932 in Budapest, Hungary.Needs VoteG. TerebesiGeorg TerebesiGyorgi TerebesiGyorgy TerebesiTerebesiジエルジ・テレベジSüdwestdeutsches KammerorchesterHessisches Bach-Collegium + +869035Pierre PierlotPierre PierlotFrench oboist, born 26 April 1921 in Paris, France and died 9 January 2007 in Paris. +He was successively member of several orchestras: Concerts Lamoureux in 1941, Opéra-Comique in 1946 until its closure in 1972, Opéra de Paris until 1981. Alongside these positions, he also was a chamber musician: he founded the Quintette À Vent Français in 1945 and played with it until 1968; in 1952, he also participated in the foundation of the Ensemble Baroque de Paris. Finally, he played in Le Quintette À Vent De Paris from 1984 to 1996.Needs Votehttp://fr.wikipedia.org/wiki/Pierre_Pierlothttp://www.musimem.com/obi-0107-0607.htmhttp://perso.numericable.fr/lesiteduhautbois/pierre_pierlot_110.phpP. PierlotP.PierlotPierlotП. Пьерлоピエール・ピエルロOrchestre Des Concerts LamoureuxKammerorchester Des Saarländischen Rundfunks, SaarbrückenOrchestre National De L'Opéra De ParisI Solisti VenetiOrchestra Of Radio LuxembourgOrchestre De Chambre Jean-François PaillardOrchestre Pro Arte De MunichCollegium Musicum De ParisSüdwestdeutsches KammerorchesterEnsemble Instrumental SinfoniaEnsemble Baroque De ParisEnsemble Instrumental Jean-Marie LeclairQuintette À Vent FrançaisLe Quintette À Vent De ParisOrchestre Du Théâtre National De L'Opéra-ComiqueOrchestre de Chambre Fernand OubradousSociété Des Instruments À VentPaillard Ensemble D'Instruments À Vent Et Percussions + +869036Jacoba MuckelJacoba Hanke-MuckelJacoba Muckel (died in November 2020 at the age of 91) was a German cellist.Needs VoteJackoba MuckelJacoba Hanke-MuckelJacoba Muckel-HankeJacoba MückelJakoba HankeJakoba Hanke-MuckelJakoba MuckeeJakoba MuckelJakoba Muckel-HankeJakoba MuskeeJoakoba HankeBachcollegium StuttgartSüdwestdeutsches Kammerorchester + +869037Jacques ChambonJacques Yves Jean ChambonJacques Chambon (23 May 1931, In Bordeaux - 4 May 1984, in Orange) was a French classical oboist.Needs VoteJ. ChambonJaques ChambonOrchestre De ParisKammerorchester Des Saarländischen Rundfunks, SaarbrückenI Solisti VenetiBachcollegium StuttgartOrchestre De Chambre Jean-François PaillardCollegium Musicum De ParisSüdwestdeutsches KammerorchesterQuatuor Instrumental Maxence LarrieuSecolo Barocco Ensemble InstrumentalPaillard Ensemble D'Instruments À Vent Et Percussions + +869039Hartmut StrebelHartmut Strebel (24 October 1929 - 19 March 2020) was a German classical recorder player, flute player and professor of recorder and flute at the [l316267] from 1958 to 1992. Needs VoteH. StrebelStrebelStuttgarter KammerorchesterBachcollegium StuttgartSüdwestdeutsches KammerorchesterConsortium Musicum (2)Paul Angerer Ensemble + +869040Fritz WernerGerman chorus master, church music director, conductor, organist and composer (* 15 December 1898 in Berlin, German Empire; † 22 December 1977 in Heilbronn, Germany). +Founder of the [a=Heinrich-Schütz-Chor Heilbronn].Needs Votehttps://de.wikipedia.org/wiki/Fritz_Werner_(Komponist)https://stadtarchiv.heilbronn.de/fileadmin/daten/stadtarchiv/online-publikationen/14-fritz-werner-werkverzeichnis.pdfF. WernerHeinrich Schütz Chor, HeilbronnWernerSüdwestdeutsches KammerorchesterHeinrich-Schütz-Chor Heilbronn + +869570Alceo GallieraItalian organist, conductor and composer. He was born 3 May 1910 in Milan, Italy and died 21 April 1996 in Brescia, Italy. +Son of organist and composer [a4771972].Needs Votehttps://en.wikipedia.org/wiki/Alceo_GallieraA. GallieraAlceo Galliera DRMAlceo GallieroAlcéo GallieraAleceo GallieroAleco GallieraGallieraGalliera, A.Альчео Галльераアルチェオ・ガリエラ + +869605Irmgard SeefriedGerman soprano, born 9 October 1919 in Köngetried near Mindelheim, German Empire and died 24 November 1988 in Vienna, Austria. +She was married to [a832900] and is the mother of [a2850362].Needs Votehttp://en.wikipedia.org/wiki/Irmgard_SeefriedI. S.I. SeefriedImgard SeefriedIrmgaard SeefriedIrmgard SeffriedSeeFriedSeefriedИ. ЗеефридИмгард ЗеефридИрмгард ЗеефридИрмгард Зифридイルムガルト・ゼーフリート + +869629Usko KemppiUsko Urho Uljas Kemppi né Usko HurmerintaFinnish composer, musician, lyricist, writer and scriptwriter, born February 12, 1907 in Oripää; died on May 13, 1994 in Espoo. His main work consists of lyrics, theatre plays and film scripts, but he also composed music. + +He used several pseudonyms: U. Kalanti, U. Talka, F. Voitto, Lasse Laurila, Salapuro, Warras, K. Aalto and Kauko Kalle. +Needs Votehttps://adp.library.ucsb.edu/names/116166KemppiKemppi UskoU KemppiU. KemppiU. kemppiU.KemppiV. KemppiV. TalkaV.KemppiU. KalantiUsko HurmerintaKalle KaukoF. VoittoWarrasU. TalkaLasse Laurila (2)L. SarvaA. LappiSalapuroK. Aalto (2) + +869656Friedrich KircheisGerman organist and harpsichordist (* 1940 in Aue, Erzgebirge, German Empire).Needs Votehttps://de.wikipedia.org/wiki/Friedrich_Kircheishttps://sandstein-musik.de/2017/kuenstler/mitwirkende-2017/friedrich-kircheis.htmlKircheisФридрих КирхайсVirtuosi SaxoniaeLeipziger Bach-Collegium + +869796Lazar BermanLazar Naumovich BermanSoviet Russian classical pianist. Born February 26, 1930 and died February 6, 2005.Needs Votehttps://en.wikipedia.org/wiki/Lazar_BermanBermanL. BermanLasar BermanLazar Naumovich BermanLazare BermanLazarij BermanЛ. БерманЛазарь БерманЛазарь берманЛялик Берманベルマン라자르 베르만 + +869815Noëlle SantosFrench viola player.Needs VoteNoelle SantosNoëlle Santos CuperOrchestre National De L'Opéra De ParisLes Archets De Paris + +869956Margreth KöllMargret KöllClassical harp playerNeeds Votehttps://www.margretkoell.com/Margaret KoellMargret KoellMargret KöllDie KnödelAkademie Für Alte Musik BerlinEuropa GalanteEnsemble AccentusIl Giardino ArmonicoMusica Antiqua RomaIl Pomo d'OroLa Chapelle RhénaneLyra EnsembleLa Fonte MusicaNeue Innsbrucker HofkapelleEnsemble Claudiana + +869960Andreas LacknerAndreas LacknerClassical wind instrumentalistNeeds VoteDie KnödelConcentus Musicus WienClemencic ConsortCantus CöllnConcerto PalatinoEnsemble CordiaArmonico TributoArs Antiqua AustriaLa Cetra Barockorchester BaselLe Musiche NoveTrompeten Consort Innsbruck + +869998Michèle DeschampsFrench violinist.Needs VoteM. DeschampsMichel DeschampMichele DeschampsMichèle DechampsMichèle DeschampLes EnfoirésOrchestre National De L'Opéra De ParisLes Archets De ParisParis Symphonic Orchestra + +870000Bernard NeuranterTubistNeeds VoteB. NeuranterOrchestre National De France + +870019Christian LormandClassical string and wind instrumentalistNeeds VoteC. LormandOrchestre National De L'Opéra De ParisOrchestre De Chambre Jean-François PaillardPaillard Ensemble D'Instruments À Vent Et Percussions + +870020Helga GudmundsdottirClassical violist, born in Iceland, lives in Paris, France. +alt. spelling: Helga Gudmunsdottir, Gudmunsottir, GuðmundsdóttirNeeds VoteE. GudmundsdottirE. GudmunsottirHelga GudmunpsdottirHelga GudmunsdottirOrchestre National De L'Opéra De ParisEnsemble International de Paris + +870029Marie-Hélène ClausseFrench violinist.Needs VoteMarie-Helene ClausseOrchestre National De L'Opéra De ParisLes Archets De Paris + +870037Alain PersiauxFrench violinist.CorrectA. PersiauxAlain PersiauOrchestre National De L'Opéra De Paris + +870042Laurent PézièresFrench tuba player.Needs VoteLaurent PeziereLaurent PezièreLaurent PezièresLaurent PézièreOrchestre National De L'Opéra De ParisSerge Luc Quartet + +870590Donald RunniclesDonald Runnicles OBEScottish conductor (born November 16, 1954 in Edinburgh, Scotland). + +General Music Director of the Deutsche Oper Berlin since August 2009 and Chief Conductor of the BBC Scottish Symphony Orchestra since September 2009, he has been Music Director and Principal Conductor of the San Francisco Opera from 1992 to 2009 and Principal Conductor of the Orchestra Of St. Luke's from 2001 to 2007. He is also Music Director of the Grand Teton Music Festival since September 2005, and Principal Guest Conductor of the Atlanta Symphony Orchestra since September 2001.Needs Votehttp://www.donaldrunnicles.orghttp://en.wikipedia.org/wiki/Donald_RunniclesD. RunniclesRunniclesSir Donald RunniclesOrchestra Of St. Luke'sAtlanta Symphony OrchestraBBC Scottish Symphony OrchestraOrchester Der Deutschen Oper BerlinSan Francisco Opera Orchestra + +870665Karl VentulettGerman classical bassoonist.Needs VoteK. VentulettEnsemble ModernOrchester Des Nationaltheaters MannheimFrankfurter Opern- Und Museumsorchester + +870666Etienne GodeyClassical horn player.CorrectEtienne GodetEnsemble Modern + +870667Peter SchlierClassical double bass player.Needs VoteEnsemble ModernEnsemble ResonanzMünchner RundfunkorchesterMünchener KammerorchesterBayerische Kammerphilharmonie + +870668Miriam GöttingClassical viola player.Needs VoteMiriam Askin-GöttingEnsemble ModernEnsemble ResonanzEnsemble Modern OrchestraFour Roses (2)Swonderful Orchestra + +870671Irmela BoßlerClassical flutist.Needs Votehttps://en.wikipedia.org/wiki/Irmela_Bo%C3%9Flerhttps://web.archive.org/web/20221221002620/http://www.irmela-bossler.de/Ensemble ModernEnsemble Modern Orchestra + +870672Jozsef JuhaszJózsef Juhász-AbaClassical tuba player.Needs VoteEnsemble ModernEnsemble Modern OrchestraFrankfurter Opern- Und Museumsorchester + +870673Valentin GarvieValentín GarvieClassical trumpet and trombone player, born in 1973 in Mar del Plata, Argentina. +He was a member of Ensemble Modern from March 2002 until 2018, and played also frequently with the [a=London Sinfonietta] in London. Needs Votehttps://de.wikipedia.org/wiki/Valent%C3%ADn_Garviehttps://valentingarvie.bandcamp.com/GarvieValentín GarviValentín GarvieEnsemble ModernLondon SinfoniettaMusikFabrikMahler Chamber OrchestraUli Schiffelholz QuintetValentin Garvie QuintetFrankfurt ExplorationSebastian Gramss' States Of PlaySaVaSa TrioSlowfox 5 + +870674Carl RosmanWind instrumentalist and conductor, musicologist and liner notes translator, born in England, he studied in Australia and is now based in Köln.Needs Votehttp://web.archive.org/web/20160710134914/http://www.carlrosman.com/https://en.wikipedia.org/wiki/Carl_RosmanEnsemble ModernMusikFabrikElision EnsembleHolland Baroque Society + +870676David HallerClassical percussionist.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/david-hallerEnsemble ModernEnsemble Modern Orchestra + +870677Mechthild SommerClassical viola player.CorrectEnsemble Modern + +870678Pauline SachseClassical viola player.Needs VoteEnsemble ModernRundfunk-Sinfonieorchester BerlinDeutsche Kammerphilharmonie BremenBundesjugendorchesterEisler Quartett + +870679Friederike LatzkoGerman classical viola player, born in 1959.Needs VoteFriedérike LatzkoEnsemble ModernBalthasar-Neumann-EnsembleDeutsche Kammerphilharmonie Bremen + +870680Sherif ElrazzazClassical clarinettist.CorrectEnsemble ModernThaous Ensemble + +870682Michael SiegMichael SiegMichael Sieg is a German classical oboe player. He was a member of the [a3578838] from 1987 to 2019.Needs Votehttp://www.michaelsieg.de/Ensemble ModernBergen Filharmoniske Orkesterhr-Sinfonieorchester + +870683Sava StoianovClassical trumpeter, born March 3, 1976 in Kruchari, Bulgaria. +He was trumpeter for the Academical Symphony Orchestra Sofia (1996/1997) and first solo trumpeter for the National Philharmonic Sofia, the New Symphony Orchestra Sofia and the ensemble "Orchestral" (1998/1999). From October 2001 on he was on probation at the Ensemble Modern and since January 2003 he is a member. +He is also a frequent guest of important German and Bulgarian orchestras, among others Hamburger Symphoniker, Hamburger Staatsoper, Junge Thüringische Philharmonie, Theater Lüneburg, Stuttgarter Oper, Varna Philharmonic and the National Opera Sofia.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/sava-stoianovEnsemble ModernEnsemble Modern OrchestraSaVaSa Trio + +870684Bruno SuysClassical double bass player.Needs Votehttp://www.brunosuys.eu/Ensemble ModernFrankfurter Opern- Und Museumsorchester + +870685Jonas BylundSwedish classical trombone player.Needs VoteEnsemble ModernBamberger SymphonikerZeke VargStockholm Chamber Brass + +870686Jagdish MistryClassical violinist, born in Mumbai, India in 1963. +Between 1986 and 1992, he was the primarius of the Mistry String Quartet. +At the same time, he continued his career as a soloist, performing with a number of orchestras, such as the Oslo Filharmonien, Bergen Filharmoniske Orkester, Toronto Symphony Orchestra, Vienna Symphony Orchestra, the SWR Radio Symphony Orchestra Stuttgart, Philharmonia Orchestra in London and the Royal Scottish National Orchestra. +He has been a member of the Ensemble Modern since 1994. He also regularly performs as a guest concertmaster with various symphony and chamber orchestras in Great Britain and Spain.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/jagdish-mistryEnsemble ModernMistry String QuartetEnsemble Modern Orchestra + +870692Evelyn TubbClassical vocalist (soprano).Needs VoteE. TubbEvelin TubbTubbThe English Concert ChoirTaverner ChoirThe Consort Of MusickeGothic Voices (2)The Earle His ViolsSchola Cantorum BasiliensisKaleidoscope (11)Mayfield Chamber Opera ChorusSprezzatura + +870693Nigel NorthNigel NorthBritish lute and theorbo player.Needs Votehttps://www.nigelnorth.com/N. NorthN.N.NorthNew London ConsortThe Early Music Consort Of LondonThe Parley Of InstrumentsLes Arts FlorissantsLondon BaroqueThe Academy Of Ancient MusicLa Grande Ecurié Et La Chambre Du RoyOrchestra Of The Age Of EnlightenmentThe Consort Of MusickeRomanescaThe Purcell QuartetBrandenburg ConsortLes Voix HumainesThe Praetorius ConsortMontreal BaroqueThe London Early Music GroupEnglish Consort Of ViolsMembers Of The New London ConsortYorkshire Baroque SoloistsThe English Concert + +870694The English Concert ChoirThe Choir of the English Concert (or permutations of that phrase), was formed in 1983 to perform Rameau's Acante et Céphise. It continued assembling as needed for recordings and performances with the group until the mid-1990s, when the decision was made to make it a regular choir on a level with the orchestra, in preparation for their performance of Bach's Mass in B Minor. Needs Votehttp://www.englishconcert.co.uk/biographies/detail.php?ID=1837&sphrase_id=8269ChoirChoir Of The English ConcertChoir of The English ConcertChoir of the English ConcertCoroCoro De The English ConcertEl Coro de Concierto InglésEnglish Concert ChoirThe Choir Of The English ConcertThe English Choir & ConcertMichael McCarthyNigel ShortGerard O'BeirneGordon Jones (2)Harvey BroughDeborah RobertsTessa BonnerSimon Davies (3)Matthew VinePatricia ForbesChristopher RobsonRichard WistreichChristopher RoyallSimon BerridgeAngus SmithJeremy BirchallMark PadmoreDavid BeavanAshley StaffordRobert Jones (3)Daniel NormanDonald GreigRobert Harre-JonesHoward MilnerNicola JenkinJulian ClarksonCarol Hall (2)Stephen Charlesworth (2)Mary NicholsRichard SavageNeil MacKenzieRachel PlattLucinda HoughtonJames OttawayAndrew TusaNicolas RobertsonPaul TindallJonathan Peter KennyLawrence WallingtonSusan Hemington JonesPhilip NewtonSimon BirchallEvelyn TubbCaroline TrevorJohn DudleyGraeme CurrySally DunkleyNeil LuntNicholas ClaptonJohn Milne (2)Leigh NixonJacqueline ConnellTwig HallChristopher PurvesPatrick Ardagh-WalterPhilip DaggettRuth DeanPaul Agnew (2)Alison GoughCaroline AshtonGillian ChedzoyAndrew Giles (2)Wilfried SwansbouroughDavid Lowe (2)Robert BurtSandra SchulzeMark Peterson (3)Joyce JarvisChristopher FosterPenny VickersFrancis SteeleJayne WhitakerRichard Edgar-WilsonPrudence RaperTom Phillips (6)Susanna SpicerShauna BeesleyBelinda YatesKate EckersleyRachel PrattSteven HarroldRachel BevanJulia GoodingNicholas Hadleigh WilsonPenelope VickersAllan ParkesKristine SzulikPeter BurrowsPhilip LawsonJudith EnglishStephen AlderAlan EwingVernon KirkMartin Elliot (2)Ruth GleaveMelanie Marshall (2)Roderick Williams (3)Teresa PerrettMark Petersen (5) + +870695Caroline TrevorClassical alto vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Trevor-Caroline.htmhttps://en.wikipedia.org/wiki/Caroline_TrevorCTCarolyn TrevorMagnificatThe Tallis ScholarsThe SixteenSequentia (2)Red ByrdThe English Concert ChoirTaverner ChoirMusica SecretaThe Schütz Choir Of LondonThe Cardinall's MusickThe Eric Whitacre SingersThe Byrd EnsembleConsortium (8) + +870696John DudleyClassical tenor. + +Not to be confused with the Australian tenor who sang at the Met in the 1940s [a=John Dudley (6)] +or the blues singer [a=John Dudley (2)]. +Needs VoteHuelgas-EnsembleThe English Concert ChoirThe Consort Of MusickeThe Schütz Choir Of London + +870697Catherine DenleyEnglish contralto / mezzo-soprano vocalist, she is married to violinist [a836764].Needs Votehttps://www.bach-cantatas.com/Bio/Denley-Catherine.htmCatherine DenlyDenleyThe Sixteen + +870699Graeme CurryAlto vocalist.CorrectThe Tallis ScholarsLa Chapelle RoyaleThe English Concert Choir + +870700Sally DunkleySoprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Dunkley-Sally.htmhttps://www.imdb.com/name/nm7664156/Gabrieli ConsortMagnificatThe Choir Of The King's ConsortThe Tallis ScholarsThe SixteenThe English Concert ChoirThe Clerkes Of OxenfordThe Schütz Choir Of LondonEnsemble Plus Ultra + +870701Neil LuntTenor vocalist.Needs VoteThe English Concert ChoirThe Schütz Choir Of London + +870702Ingrid AttrotSoprano vocalistNeeds Vote + +870703Ivor BoltonEnglish classical keyboard player (harpsichord), was chief conductor of the Mozarteum Orchester Salzburg. +Since 2015 is the chief conductor of [a854120] and also since 2016/17 of Sinfonieorchester Basel. +Needs Votehttps://ivorbolton.com/https://en.wikipedia.org/wiki/Ivor_Boltonhttps://www.bach-cantatas.com/Bio/Bolton-Ivor.htmBoltonIvor Boltアイヴァー・ボルトンBournemouth SinfoniettaBayerisches StaatsorchesterSinfonieorchester BaselOrquesta Sinfónica De MadridDas Mozarteum Orchester SalzburgSt. James's Baroque PlayersThe English Concert + +870777Roc HillmanRoscoe Vanos HillmanAmerican guitarist, vocalist, songwriter from the swing-era. +Born July 13, 1910 in Arvada, Colorado, USA +Died May 31, 2011 in Santa Monica, California, USA +He got his start early, performing with his father in vaudeville, then as a guitarist in dance orchestras, eventually writing and directing Army shows during World War II. He began writing as a sports reporter for the Denver Post while still in high school. He was educated at the University of Colorado. +He charted five times as a songwriter--four times in 1942 with the same song "My Devotion" (co-written by Jonny Napton). The highest charted release was by Charlie Spivak and His Orchestra, when it reached #2 on the U.S. charts. He also charted in 1943 with "Pushin' Sand" by Kay Kyser and His Orchestra (co-written by George Simmons)--it reached #18. +He was also an author and went on to become a music director for the first TV studio band with KLAC in Hollywood and joined up with NBC Television. He played with Bing Crosby, Fred Astaire, Glen Miller, Tommy Dorsey, Jimmy Dorsey, Louis Armstrong, the Kay Kyser Orchestra, and many others.Needs Votehttps://www.imdb.com/name/nm0385078/H. S. Roc HillmumHillmanHillman, RocHillmannHilmanHimanHllmanR HillmanR. HillmanR. HillmannR. TillmanRocRoc HillmannRoc HilmanRock HillmanRoscoe HilimanRoscoe HillmanT. HillmanJimmy Dorsey And His OrchestraClaude Thornhill And His OrchestraKay Kyser And His OrchestraThe Dorsey Brothers OrchestraDorsey Brothers Vocal Trio + +870792Frans BrüggenFrans BrüggenDutch conductor, recorder player and baroque flutist, born October 30, 1934 in Amsterdam, The Netherlands, died August 13, 2014 in Amsterdam, The Netherlands. He is considered among the foremost experts in the performance of eighteenth century music. At the age of 21 he was appointed professor at the Koninklijk Conservatorium Den Haag and later held position as Erasmus Professor at Harvard University and Regent's Professor at the University of Berkeley, making him one of the youngest musical scholars of the time. +Brother of cellist [a=Albert Brüggen] and uncle of flutist [a=Daniel Brüggen].Needs Votehttps://en.wikipedia.org/wiki/Frans_Br%C3%BCggenhttps://www.bach-cantatas.com/Bio/Bruggen-Frans.htmwww.fransbruggen.comBrüggenF. BruggenF. BrüggenFrans BruggenFranz BruggenFranz BrüggenФранс Брюггенフランス・ブリュッヘンI MusiciLeonhardt-ConsortOrchestra Of The 18th CenturyBrüggen ConsortQuadro AmsterdamEnsemble PhilidorBaroque OrchestraSour Cream + +870853Arpad JooÁrpád JoóHungarian conductor and concert pianist (born June 8, 1948 in Budapest; died July 4, 2014 in SingaporeNeeds Votehttp://en.wikipedia.org/wiki/Arpad_Jo%C3%B3Arpad JoóArpad JóoArpád JooArpád JoóArpád JóoJoó ÁrpádJoó ÁrpádoÁrpad JoóÁrpád JoóÁrpád JoóbÁrpád JóoÁrpádo JoóАрпад ЙооOrquesta Sinfónica de RTVE + +870854Emmy VerheyDutch violinist, born 13 March 1949.Needs Votehttp://www.emmyverhey.nl/http://en.wikipedia.org/wiki/Emmy_VerheyEmi VerhejEmmyЭмми ВерхейЭмми ХервиConcertgebouw Chamber OrchestraUtrechts Stedelijk OrkestCamerata Antonio Lucio + +870910Julia HamariJúlia HamariHungarian Mezzo-soprano Alto and Contralto vocalist. She was born 21 November 1942 in Budapest, Hungary.Needs Votehttps://en.wikipedia.org/wiki/Julia_HamariHamariHamari JúliaJ. HamariJulia HamaryJúlia HamariЮлия Хамари + +870912Josef SchmidhuberGerman chorus master, organist and conductor, born 26 February 1924 in Schönharting, Germany and died 17 July 1990 in Munich, Germany. He was the chorus master of the [a617404] from 1969 to 1981 together with [a1833260].CorrectJ. SchmidhuberJoseph SchmidhuberЙозеф ШмидтхуберЙозеф ШмидхуберChor Des Bayerischen Rundfunks + +870932Radio KamerorkestChamber orchestra that was part of [l321331]. Established in 1945 as the "Omroep Kamerorkest", its first conductor was [a1514389]. In 1958 it changed its name into Radio Kamerorkest. Subsequent conductors were Roelof Krol, Ernest Bour, Ton Koopman and Peter Eötvös, these two sharing the position as of 1994. Koopman eventually was succeeded by Frans Brüggen in 2001. In 2005 the orchestra merged with the [a1053318] which resulted in the creation of the [a5088464].Needs Votehttps://nl.wikipedia.org/wiki/Radio_Kamer_Orkesthttps://www.naxos.com/person/Netherlands_Radio_Chamber_Orchestra/46420.htmhttps://www.bach-cantatas.com/Bio/NRCP.htmChamber Orchestra Of The Netherlands Radio UnionHilversum Radio Chamber OrchestraKammerorchester Von Nederlandse Omroep Stichting, HilversumLeden van het Radio KamerorkestNederlands KamerorkestNederlands Radio Barok EnsembleNederlands Radio KamerorkestNetherlands Radio Chamber OrchestraNetherlands Radio ChorusNetherlands Radio OrchestraNiederländisches Radio Kammerorchester HilversumOmroep KamerorkestRKORadio Chamber OrchestraRadio Chamber Orchestra, HilversumRadio KameorkestRadio Kamer OrkestRadio Kamer Orkest HilversumRadio Kamerorkest, HilversumRadio Kammerorchester HilversumRadio KammerorkestString Section Of The Hilversum Radio Chamber OrchestraThe Netherlands Radio Chamber OrchestraThe Netherlands Radio KamerorkestThe Radio Chamber OrchestraElisabeth PerryPeter PrommelRobert EliscuHenk KnöpsJan SchoonenbergMaike ReisenerRonald HoogeveenMax Werner (2)Jouke Van Der LeestJelte AlthuisFrits WagenvoordeArjan StroopEmi Ohi ResnickTom ReindersGerrit BoonstraBart De VreesNico BrandonMaria Del Mar EscarabajalGyörgy SchweigertSusan BierreEsther MisbeekHessel BumaMarjolijn van der Grinten-Da Silva RosaJudith Vrijma-HasselaarPedja MilosavljevicMichael Müller (19)Kerstin ScholtenJan Roel HamersmaAngela StevensonElfride ZeldenrustHans SmitPeter de Wit (4)Lev FriedmanAstrid AbasMarjolijn OonkJoan MooneyAnnet KarstenCaroline Wagner (2)Carolien van 't HofNorma BrooksCaroline WoltjerLuuk TuinstraMichelle MaresAnneke VreugdenhilDick TeunissenMarjan van de BergMieke van DaelRebecca GrannetiaHenk SwinnenAidan Pendleton + +870984Mozart Akademie AmsterdamThe Mozart Akademie Amsterdam is a chamber orchestra founded in 2000 by its conductor, [a837037].Needs VoteJaap ter Linden + +871112Adolph HersethAdolph Sylvester (Bud) HersethAmerican trumpet player, born July 25, 1921 in Lake Park, Minnesota and died April 13, 2013 in Oak Park, Illinois. He was principal trumpet in the Chicago Symphony Orchestra from 1948 until 2001.Needs Votehttp://en.wikipedia.org/wiki/Adolph_HersethA. HersethAdolf HersethAdolph "Bud" HersethAdolph HersetAdolph S. HersethAldoph HersethChicago Symphony OrchestraThe Chicago Brass Ensemble + +871147Vernon ElliottBritish bassoonist, conductor and composer. Born: 27 July 1912 in Croydon, England - Died: 12 October 1996 in Woodbridge, Suffolk, England. +He won a scholarship to the [l290263], but never graduated, leaving early to become Principal Bassoonist with the rising [a=Bournemouth Municipal Orchestra] in 1937. He was a founder member of the [a=Philharmonia Orchestra], a member of [a=Benjamin Britten]'s [url=https://www.discogs.com/artist/980526-The-English-Opera-Group]English Opera Group[/url] orchestra, and conductor of [a=The Royal Philharmonic Orchestra]. Professor at the [l680970]. He composed the music to the Smallfilms productions of "Noggin the Nog", "The Seal of Neptune", "Pogles' Wood", "Pingwings" and "Clangers".Needs Votehttps://www.youtube.com/channel/UCnlNR-63prv4KzOOun8iMhA/featuredhttps://soundcloud.com/vernonelliotthttps://open.spotify.com/artist/4ghnJojbLxOPNOWdJTvWG3https://music.apple.com/ca/artist/vernon-elliott/94493705https://en.wikipedia.org/wiki/Vernon_Elliotthttps://networthwikibio.org/vernon-elliott-net-worth/https://www.bornglorious.com/person/?pi=15499793https://www.celebsagewiki.com/vernon-elliotthttps://web.archive.org/web/20100927180735/http://www.independent.co.uk/news/obituaries/obituary--vernon-elliott-1354922.htmlhttps://www.independent.co.uk/news/people/obituary-vernon-elliott-1312920.htmlhttps://www.imdb.com/name/nm1384885/bioV. ElliottVernon ElliotPhilharmonia OrchestraNew Philharmonia OrchestraThe Kingsway Symphony OrchestraThe English Opera GroupThe Vernon Elliott EnsembleThe London Wind QuintetBournemouth Municipal OrchestraThe Vernon Elliott Quintet + +871186Annabelle LuisClassical cellist & bass violinistNeeds VoteLe Concert SpirituelLe Concert D'AstréeAmarillisLes Plaisirs Du ParnasseI Gemelli (2)Duo Tartini + +871205Krister Petersson (2)Swedish classical hornistCorrectGöteborgs Symfoniker + +871288Ricardo WeeksSongwriterNeeds VoteR WeeksR. WeeksRicardo D WeeksRicardo D. WeeksWeeksWheels + +871347Robert PuschmannPeter WischmannGerman composer, producer and orchestra leader, Born 14 August 1939 in Mährisch-Schönberg, Germany, died 21 October 2000 in Giessen, Germany.Needs VoteBuschmannFurschmannPuschmanPuschmannPuschmann R.Puschmann RobertPuschmann, RobertPushmanR. PuschamannR. PuschmanR. PuschmannR. PushmanRobert PuschmanOrchester Robert PuschmannMeeting Point (3)Puschmann's Kinder + +871496Netherlands Chamber OrchestraNederlands KamerorkestNeeds Votehttps://orkest.nl/https://www.youtube.com/channel/UC1u7l5hALHqCZugPh5K86FADas Niederländische KammerorchesterDutch Chamber OrchestraHet Nederlands KamerorkestMembers Of The Netherlands Chamber OrchestraNKONederland Chamber OrchestraNederlands Chamber Orchestra · AmsterdamNederlands Kamer OrkestNederlands KamerokestNederlands KamerorkestNetherland's Chamber OrchestraNetherlands Ch. Orch.Netherlands Chamber Orch.Netherlands KamerorkestNetherlands Radio Chamber OrchestraNiederl. KammerorchesterNiederländisches KammerorchesterOrchestra Da Camera OlandeseOrchestra De Cameră Olandeză Din AmsterdamOrchestra de cameră olandeză din AmsterdamOrchestre De Chambre Des Pays Bas.Orchestre De Chambre Des Pays-BasOrchestre De Chambre NeerlandaisOrchestre De Chambre NéerlandaisOrquesta De Camara HolandesaOrquesta De Cámara De HolandaOrquesta De Cámara HolandesaOrquesta Holandesa De CámeraOrquestra De Câmara Dos Países BaixosThe Netherlands Chamber Orchestraオランダ室内管弦楽団Sietse-Jan WeijenbergMaaike AartsIman SoetemanMargaret MajorMargreet BongersHubert BarwahserBeverley LuntSzymon GoldbergRicardo OdnoposoffHerman KrebbersGordan NikolitchRob BouwmeesterHans MeyerHerre-Jan StegengaThom De KlerkAd MaterHeinz WehrleChristel PostmaPiet LentzHans BolHaakon StotijnJan BosTessa BadenhoopAnna Magdalena Den HerderTijmen HuisinghJan Bastiaan NevenSergey ArsenievBerdien VrijlandHerman DraaismaEllen VergunstOlga CaceanovaJeannelotte HertzbergerPeter ElbertseLeon BerendseWillem GrootBenjamin OrenWim KnipEd MaterAnnette ZahnLeo RostalMelissa UsseryLonneke van StraalenRichard Wolfe (4)Bas TreubMarc SpeetjensPhilip DingenenTheun van NieuwburgJochen Neuffer (2) + +871582Roger JoyceRoger Richard JoyceAmerican Soul - Pop songwriter and singer + +Born: June 29, 1943 in New York City, New YorkNeeds Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=15611713&affiliation=ASCAP&keyid=178211&keyname=JOYCE+ROGER+RICHARDJoyceR. JoyceThe New Order (2) + +871873Martyn HillBritish operatic and concert tenor, born on 14 September 1944 in Kent, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Martyn_Hillhttps://www.bach-cantatas.com/Bio/Hill-Martyn.htmHillM. HillMarlyn HillMartin HillThe Early Music Consort Of LondonThe Consort Of Musicke + +871969Christophe GervaisClassical trombone player.CorrectEnsemble Le BanquetOrchestre Des Concerts Lamoureux + +871970Didier MeuDouble bass player, born 1960.Needs Votehttp://www.ensemblesillages.com/Didier-Meu-152Ensemble Le BanquetEnsemble IntercontemporainEnsemble Court-CircuitEnsemble Sillages + +872030Jean-Philippe CollardJean-Philippe CollardFrench pianist, born 27 January 1948 in Mareuil-sur-Ay. plays mostly the romantic (Chopin, Liszt, Schumann) and modern (Fauré, Rachmaninoff, Ravel) repertoire. + +Not to be confused with the Belgian pianist [a=Jean-Philippe Collard-Neven].Needs Votehttps://www.jeanphilippecollard.com/https://en.wikipedia.org/wiki/Jean-Philippe_Collardhttps://data.bnf.fr/en/13892639/jean-philippe_collard/CollardJean Philippe CollardJean-Philipe CollardJen-Philippe Collardコラールジャン=フィリップ・コラール + +872129Otto AckermannSwiss conductor. He was born 5 October 1909 in Bucharest, Romania and died 9 March 1960 in Wabern, Switzerland.Needs Votehttps://en.wikipedia.org/wiki/Otto_Ackermann_(conductor)AckermannO. AckermannOtto AckermanOtto Ackermann, ConductorО. Аккерман + +872440David Miller (7)David Miller was an classical lutenist, theorbist, guitarist and teacher. He passed away in May 2025 at the age of 72.Needs Votehttps://thesixteen.com/team/david-miller/D. MillerNew London ConsortThe SixteenThe Academy Of Ancient MusicI FagioliniTaverner PlayersThe Consort Of MusickeThe King's ConsortBrandenburg ConsortHis Majestys Sagbutts And CornettsThe Symphony Of Harmony And InventionSpectre De La RoseConcerto Delle DonneLa Grande ChapelleThe English ConcertTheatre Of The AyreThe Illyria ConsortFlorilegiumCanzona (3)Ensemble GuadagniKithara (5) + +872550Simon HalseyEnglish conductor, specialized in choir music (born in London, 1958). Halsey has worked with orchestras and choirs all over the world, from 2001 to 2015 was the leader of the [a=Rundfunkchor Berlin]. Since season 2016-2017 he is the Artistic Director of the chorusses of [l340654], in Barcelona, and the Chorus Master of [a900102]. He is a founding member of the choir [a=European Voices] Needs Votehttp://en.wikipedia.org/wiki/Simon_Halseyhttp://www.cbso.co.uk/?page=performers/chorus/halsey.htmlHalseySimon Halsey CBEサイモン・ホールジーEuropean Voices + +872672Steve ShippsStephen Barnett ShippsStephen Shipps (b. 1952) is an American violinist, concertmaster, former music educator, and convicted criminal. He taught at [l=The University Of Michigan] between 1989 and 2019, retiring after multiple accusations of sexual misconduct. In October 2020, Shipps was arrested at his Ann Arbor home on two charges of transporting a minor across state lines to procure sexual activities. In April 2022, Stephen Shipps was sentenced to five years, incarcerated at FCI Elkton prison in Ohio. + +Shipps earned his B.M. and M.M. degrees at Indiana University after studying with [a=Josef Gingold] and further trained with [a=Ivan Galamian] and [a=Sally Thomas (5)] at the Meadowmount School and with [a=Franco Gulli] at Academia Chigiana in Siena, Italy. Steve Shipps began his stage career as a member of [a=The Cleveland Orchestra] and later served as an associate concertmaster of the [a=Dallas Symphony Orchestra] and concertmaster at the [a=Dallas Opera Orchestra], [a=Omaha Symphony Orchestra], and [a=Nebraska Sinfonia]. As a soloist, Shipps performed with symphony orchestras of [url=https://discogs.com/artist/2576208]Indianapolis[/url], [url=https://discogs.com/artist/928199]Seattle[/url], and [url=https://discogs.com/artist/2926177]Ann Arbor[/url], as well as [a=The Piedmont Chamber Orchestra] and [a=Madeira Festival Orchestra]. He recorded on [l=American Gramaphone], [l104267], [l270438], [l72457], [url=https://discogs.com/label/15486]Melodiya[/url]/[l57735], and other international labels. + +Before his infamous tenure at UM, Shipps taught on the faculties of [url=https://discogs.com/label/1874227]UNC School of the Arts[/url] and [l427762] in Canada and gave annual masterclasses at [l730630]. Stephen Shipps established and directed the [i]Cambridge International String Academy[/i] at [url=https://discogs.com/label/563665]Trinity College[/url] in Cambridge, UK.Needs Votehttps://www.justice.gov/usao-edmi/us-v-stephen-shipps-docket-20-cr-20517https://www.thestrad.com/news/violin-professor-sentenced-to-five-years-in-jail/14764.articlehttps://www.detroitnews.com/story/news/local/michigan/2019/03/25/university-of-michigan-violin-professor-stephen-shipps-retires-sexual-misconduct-claims/3268702002/https://slippedisc.com/2018/12/accused-violin-professor-is-made-to-retire/https://www.cbsnews.com/detroit/news/former-um-music-professor-stephen-shipps-gets-prison-on-child-sex-charges/Stephen ShippsSteven ShippsMannheim SteamrollerThe Cleveland OrchestraDallas Symphony OrchestraNebraska SinfoniaDallas Opera OrchestraArbor Piano TrioOmaha Symphony OrchestraAmadeus TrioMeadowmount Trio + +872743Hubert BarwahserGerman, naturalized Dutch, classical flautist, and flute teacher. Born 28 September 1906 in Herzogenrath, Germany - Died 29 April 1985 in Zwolle, The Netherlands. +In 1926, he became a member of the [a838190]. On 1 Juanuary 1936, he was appointed Principal Flute with the [a=Concertgebouworkest], a post he held for 35 years (blocked for playing in 1945 due to his German nationality), until his retirement on1 October 1971. Dutch naturalized by Act on 26 July 1950. He was head teacher at the [l472103], and the [l=Rotterdam Conservatory]. +Needs Votehttps://open.spotify.com/artist/13NJDNAk7zYKyCQo4EoU2Hhttps://music.apple.com/us/artist/hubert-barwahser/42120099http://www.flutepage.de/deutsch/composer/person.php?id=1316&englisch=truehttp://resources.huygens.knaw.nl/bwn1880-2000/lemmata/bwn3/barwahserBarwahserH. BarwasherHubert Barwahser (Flute)ConcertgebouworkestPhilharmonisches Staatsorchester HamburgNetherlands Chamber Orchestra + +872899Ryland DaviesRyland DaviesWelsh tenor and teacher, born 2nd February 1943 Cwm, Ebbw Vale, Wales, UK, died: 5th November 2023. + +Married to [a=Anne Howells] from 1966 to 1981 (divorced). +Later married to [a=Deborah Rees].Needs Votehttp://www.rylanddavies.info/https://en.wikipedia.org/wiki/Ryland_Davieshttps://www.imdb.com/name/nm0203965/DaviesDavisR. DaviesRyland DavisРайленд ДейвисРиленд Девьес + +873178Franz OrtnerClassical double bass playerNeeds VoteF. OrtnerMünchener Bach-OrchesterOrchestre Pro Arte De MunichMusikkollegium WinterthurHeinrich Schütz Kreis MünchenMünchner Nonett"In Dulci Jubilo" Ensemble + +873182Max BraunGerman cellist.Needs VoteMax Azzou BraunSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De MunichDas Keller QuartettMünchner NonettDas Münchner KammertrioKeller Trio + +873183Rudolf ZartnerGerman harpsichordist and organist, born 7 January 1909 in Schönbach, Germany. He died in 1993. +He was the father of [a2010000].Needs Votehttps://kulturportal-west-ost.eu/biographien/zartner-rudolf-2https://colosseum.de/js_albums/zartner-rudolf-und-rose-marie/Prof. Rudolf ZartnerRudolph ZartnerOrchestre Pro Arte De MunichConsortium Musicum (2)Amadeus-Orchester + +873185Adolf ScherbaumGerman trumpeter, conductor and founder of the [a1507723], born 23 August 1909 and died 2 August 2000.Needs Votehttp://www.josef-bayer.de/scherbe/index.htmA. ScherbaumA.ScherbaumAdolph ScherbaumScherbaumPhilharmonisches Staatsorchester HamburgOrchestre Pro Arte De MunichBruckner Orchestra LinzStuttgarter SolistenHamburger KammerorchesterOrchestre De Chambre Paul KuentzHamburger Barock-EnsembleBläserseptett Des Brucknerorchesters Linz + +873273Johann David HeinichenJohann David HeinichenBorn 17 April 1683 - died 16 July 1729. +German Baroque composer and music theorist who brought the musical genius of Venice to the court of the Elector of Saxony, Augustus the Strong (August der Starke), in Dresden. +He attended the Thomasschule in Leipzig (where [a=Johann Sebastian Bach] was later to be teacher) and studied also law. +In 1710, he published the first edition of his major treatise on the thoroughbass. Then he went to Italy where he spent 7 years, mostly in Venice. +In 1717, Heinichen became a colleague of [a=Johann Sebastian Bach] at the court of Prince Leopold of Anhalt-Cöthen, then went on to be Kapellmeister to the Elector of Saxony until his death. +He composed sacred music (12 masses, 2 requiem, 8 magnificat among others), operas, chamber and festival music. +Needs Votehttp://en.wikipedia.org/wiki/Johann_David_HeinichenHeinichenJ. D. HeinichenJ.D. HeinichenJohann HeinichenJohann-David HeinrichenStaatskapelle Dresden + +873294Lothar ZagrosekGerman conductor, born on 13 November 1942 in Otting, Germany.Needs Votehttps://en.wikipedia.org/wiki/Lothar_Zagrosekhttps://de.wikipedia.org/wiki/Lothar_Zagrosekhttps://www.bach-cantatas.com/Bio/Zagrosek-Lothar.htmhttps://www.naxos.com/person/Lothar_Zagrosek/32187.htmLuthar ZagrosekZagrosekRegensburger DomspatzenORF Symphonieorchester + +873309Fabian MenzelClassical oboist and flautistNeeds VoteBachcollegium StuttgartWürttembergisches Kammerorchester + +873346Ferdinand HéroldLouis Joseph Ferdinand HéroldLouis Joseph Ferdinand Hérold, better known as Ferdinand Hérold, was a French operatic composer (January 28, 1791 – January 19, 1833). + +Hérold was born in Paris and was of Alsatian descent. He wrote many pieces for the piano, orchestra, and the ballet. He is best known today for the ballet 'La fille mal gardée' and the overture to the opera 'Zampa.'Needs Votehttp://www.musicologie.org/Biographies/h/herold_ferdinand.htmlhttp://en.wikipedia.org/wiki/Ferdinand_H%C3%A9roldhttp://imslp.org/wiki/Category:H%C3%A9rold,_Ferdinandhttp://www.britannica.com/EBchecked/topic/263614/Ferdinand-Heroldhttp://www.cyberhymnal.org/bio/h/e/r/herold_ljf.htmhttp://www.allmusic.com/artist/ferdinand-h%C3%A9rold-mn0001516371http://www.naxos.com/person/Ferdinand_Herold/22113.htmhttps://adp.library.ucsb.edu/names/103294E. HeroldF. HeroldF. HéroldFerdinand HeroldHaroldHeroldHéroldHérolfJ. F. HeroldJ.HeroldL. F. HéroldL. HeroldL. HéroldL. J. F. HéroldL.-F. HéroldL.J. Ferdinand HéroldL.J.F. HeroldL.J.F. HéroldLouis Ferdinand HéroldLouis HeroldLouis HéroldLouis J. F. HéroldLouis J.F. HéroldLouis Joseph F. HeroldLouis Joseph F. HéroldLouis Joseph Ferdinand HeroldLouis Joseph Ferdinand HéroldLouis Joseph HeroldLouis Joseph HéroldLouis-Ferdinand HeroldLouis-Ferdinand HéroldLouis-Joseph Ferdinand HéroldLouis-Joseph-Ferdinand HeroldLouis-Joseph-Ferdinand HéroldVon HeroldФ. Герольдエロルド + +873725Daniel-Francois-Esprit AuberDaniel-François-Esprit AuberBorn: January 29, 1782, Caen, France +Died: May 12, 1871, Paris, France + +French musical composer. +Needs Votehttp://en.wikipedia.org/wiki/Daniel_Auberhttps://adp.library.ucsb.edu/names/102840AuberAuber, Daniel Francois EspritAuber, Daniel-Francois-EspritAubertCluberD. A. F. AuberD. AuberD. AubertD. F. AuberD. F. E. AuberD.E. AuberD.F. AuberD.F.E. AuberD.M.AuberDaniel AuberDaniel AubertDaniel F. AuberDaniel F. E. AuberDaniel F.E. AuberDaniel Fr. Esprit AuberDaniel Francois AuberDaniel Francois E. AuberDaniel Francois Esprit AuberDaniel François AuberDaniel François Esprit AuberDaniel-Esprit AubertDaniel-Francois AuberDaniel-François AuberDaniel-François-Esprit AuberDaniel-Françoise AuberDaniel-Françoise-Esprit AuberE. AuberFrancois AuberFrançois AuberД. ОберД.-Ф.-Э. ОбэрД.ОберД.ОберaДаниэль ОберДаниэль Франсуа Эспри ОберЖ. ОберОберОберъオーペール + +873760David ChappelDavid E. ChappellClassical violist. +Former member of the [a=London Symphony Orchestra] (1968-1972).Needs VoteDavid * ChappellDavid ChapellDavid ChappellDavid E. ChappelDavid E. ChappellDavid E.ChappellLondon Symphony Orchestra + +873814Pablo de SarasatePablo Martín Melitón de Sarasate y NavascuésSpanish violinist, composer and conductor of the Romantic period, born March 10, 1844 in Pamplona, Spain, died September 20, 1908 in Biarritz, France.Needs Votehttp://web.archive.org/web/20120930075752/http://www.pablosarasate.com/https://en.wikipedia.org/wiki/Pablo_de_Sarasatehttps://www.britannica.com/biography/Pablo-de-Sarasatehttps://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/pablo-de-sarasatehttps://www.naxos.com/person/Pablo_de_Sarasate/21148.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102893/Sarasate_Pablo_deDe SarasateDe Sarasate, PabloDe SarasteFabio De SarasateP. D. SarasataP. De SarasateP. SarasateP. Sarasate Y NavascuesP. SarasatėP. SarasteP. de SarasataP. de SarasateP. de SarasatėP.De SarasateP.SarasateP.de SarasateP.サラサーテPablo De Navascues Y SarasatePablo De SarasatePablo De SarrasatePablo DeSarasatePablo M M ParasatePablo M M SarasatePablo Martin Melitón De Sarasate Y NavascuèzPablo SarasataPablo SarasatePablo SarassatePablo SarastePablo de Navascués y SarasatePablo de SARASATEPablo de SarasatePablo de Sarasate ( 1844-1908 )Pablo de Sarasate y NavascuesPablo de SarastePablo de SarazateSARASATESarasateSarasate Pablo DeSarasate, PabloSarasiteSarasteSarateSaratsateSarsatede SarasatedeSarasateП. Де СарасатеП. Де СарасетеП. СарасатаП. СарасатеП. Сарасате*П. де СарасатеП.СарасатеПабло Де СарасатеПабло СарасатеПабло де СарасатеСаразатеСаразетеСарасатеп. Сарасатеפבלו דה סאראסטサラサーテサン=サーンスパブロ・デ・サラサーテパブロ・デ・サラサーテ萨拉萨蒂薩拉沙泰 + +873906Ivan SokolSlovenian classical organist, educator (Professor) and founder of the International Organ Festival in Slovakia. + +* 15.06.1937 Slovensko, Bratislava +† 02.08.2005 NemeckoNeeds VoteI. SokolIwan SokolSokolSokol, IvanSlovak Chamber Orchestra + +874458Dave RiekenbergDavid RiekenbergAmerican saxophonist and clarinetist. Member of the jazz faculty at Lehigh University.Needs Votehttps://www.facebook.com/dave.riekenberghttps://www.linkedin.com/in/dave-riekenberg-a520a737https://music.cas.lehigh.edu/content/dave-riekenberghttps://www.ibdb.com/broadway-cast-staff/dave-riekenberg-418520https://www.allmusic.com/artist/dave-riekenberg-mn0000637400D. RiekenbergDave ReikenbergDave RickenbergDave RieckenbergDave RiekembergDave RiekenburgDavid ReikenbergDavid RickenbergDavid RieckenbergDavid RiekenbergBlood, Sweat And TearsWoody Herman And His OrchestraDavid Liebman Big BandThe North Texas State University Lab BandKinesis (3)The Ed Palermo Big BandThe Woody Herman Big BandGunnar Mossblad EnsembleBill Warfield Big BandBlack Market Jazz OrchestraThe Lou Fischer Rehearsal BandThe Pete McGuinness Jazz OrchestraTony Kadleck Big BandThe Manhattan Saxophone EnsembleHell's Kitchen Funk Orchestra1:00 O'Clock Lab BandBroadway For Orlando Orchestra + +874477Lorenzo GhielmiItalian classical keyboardist, conductor and musicologist, he teaches in Milano and at the Schola Cantorum Basiliensis.Needs Votehttp://www.bach-cantatas.com/Bio/Ghielmi-Lorenzo.htmL. GhielmiIl Giardino ArmonicoIl GardellinoEnsemble VanitasLa Divina Armonia + +874501Truls MørkTruls Olaf Otterbech MørkNorwegian cello player (* 25 April 1961).Needs Votehttps://en.wikipedia.org/wiki/Truls_M%C3%B8rkhttps://www.harrisonparrott.com/artists/truls-morkMorkMørkT. MørkTruls MonksTruls MorkTruls Otterbech MörkTruls Otterbech MørkTruls Otterbech-MorkTruls Otterbeck Mørkトゥルルス・モルク + +874561André WattsAmerican pianist and Professor at the Jacobs School of Music of Indiana University. Grammy winner in 1964. He was born 20 June 1946 in Nuremberg, Germany. Died July 12, 2023.Needs Votehttps://en.wikipedia.org/wiki/Andr%C3%A9_Wattshttps://www.imdb.com/name/nm2067236/Andre WattsWattsアンドレ・ワッツ + +874562Alexander BrailowskyAlexander BrailowskyBorn: 16 February 1896 (Kiev). +Died: 25 April 1976 (New York City). + +Russian classical pianist who specialized in the works of Chopin. +Needs Votehttp://en.wikipedia.org/wiki/Alexander_Brailowskyhttps://adp.library.ucsb.edu/names/105655A. BrailowskyAlejandro BrailoswkyAlejandro BrailowskyAlexander BrailovskyAlexander BrairovskyAlexander BraïlowskiAlexander BraïlowskyAlexandre BrailowskiAlexandre BrailowskyAlexandre BraïlowskyBrailowskyBraïlowskyPianista Alexander BrailowskyАлександр Брайловскийアレクサンダー・フライロフスキーアレクサンダー・ブライロフスキー + +874639Nicholas ClaptonEnglish alto/countertenor vocalist, teacher and writer, born 16 September 1955.Needs Votehttps://en.wikipedia.org/wiki/Nicholas_ClaptonN. ClaptonThe New College Oxford ChoirThe English Concert ChoirThe Goldberg EnsembleCapela Compostelana + +874820Mike SuterTrombone and tuba player.Needs VoteMike SutterStan Kenton And His OrchestraStan Kenton Alumni BandThe National Slide QuartetRoy Wiegand Jazz OrchestraThe Mike Vax Big BandSlidewerke + +874821Winifred MayesWinifred Winograd MayesWinifred Mayes (23 August 1919 in Washington, D.C - 15 December 2020) was an American cellist and cello teacher. She's the sister of [a2361229] and was married to [a395909].Needs VoteThe Philadelphia OrchestraBoston Symphony Orchestra + +874942Peter SchidlofPeter SchidlofPeter Schidlof was born in Vienna on July 9, 1922. He was a viola player for one of the most celebrated quartets of the 20th century, the Amadeus Quartet, founded in 1947 by him, Siegmund Nissel, Martin Lovett and Norbert Brainin. He died in 1987, which was the event that made the famous strings quartet disband.Needs Votehttps://en.wikipedia.org/wiki/Peter_SchidlofP. SchidlofPeterPeter SchidloffPeter SchlidlofPeter SehidlefSchidlofПетер ШидлофAmadeus-Quartett + +874943Amadeus-QuartettThe Amadeus Quartet (formerly known as the Brainin Quartet) was one of the most famous string quartets of the 20th century. Founded in 1947, the quartet disbanded in 1987 upon the death of Peter Schidlof. May also appear credited as "Amadeus String Quartet" or "Amadeus Quartet". + +Members: +Norbert Brainin - first violin +Siegmund Nissel - second violin +Peter Schidlof - viola +Martin Lovett - celloNeeds Votehttps://en.wikipedia.org/wiki/Amadeus_QuartetAmadeusAmadeus EnsembleAmadeus KvartettenAmadeus KwartetAmadeus QuartetAmadeus QuartettAmadeus String QuartetAmadeus String QuartettAmadeus-QuartetCuarteto AmadeusCuarteto AmedeusDas Amadeus-QuartettLe Quatuor AmadeusLeden Van Het Amadeus StrijkkwartetMembers Of Amadeus QuartetMembers Of The Amadeus QuartetMembers Of The Amadeus String QuartetMembers of the Amadeus QuartetMembers of the Amadeus String QuartetMembres Du Quatuor AmadeusMembri del Quartetto AmadeusMiembros De L'Amadeus String QuartetMitglieder Des Amadeus QuartetMitglieder Des Amadeus Quartet = Members Of The Amadeus Quartet = Members Du Quator Amadeus = Membri Dei Quartetto AmadeusMitglieder Des Amadeus Quartet = Members Of The Amadeus Quartet = Membres Du Quatuor Amadeus = Membri Dei Quartetto AmadeusMitglieder Des Amadeus StreichquartettesMitglieder Des Amadeus StreichquartettsMitglieder Des Amadeus-QuartettsMitglieder Des/Members Of The Amadeus-QuartettMitglieder des Amadeus-QuartettMitglieder des Amadeus-QuartettsQuarteto AmadeusQuartetto AmadeusQuator AmadeusQuatuor A Cordes AmadeusQuatuor AmadeusThe Amadeus QuartetThe Amadeus String QuartetThe Members Of The Amadeus String Quartet«Амадеус»Амадеус КвартетКвартет "Амадей"Квартет «Амадеус»Квартет АмадеусКвартет „Амадеус“아마데우스Peter SchidlofMartin LovettNorbert BraininSiegmund Nissel + +874944Andreas BlauAndreas BlauGerman flute player, born 1949 in Berlin, Germany. Former Principal Flute of the [a260744].Needs VoteBlauBerliner PhilharmonikerDie 14 Berliner Flötisten + +874945Martin LovettMartin LovettMartin Lovett (born 3 March 1927 in London; died 29 April 2020 in London) was a cellist in the famous [a874943], which he formed with [a874947], [a883964], and [a874942] at the age of 19, in 1947.Needs Votehttps://en.wikipedia.org/wiki/Martin_LovettLovettM. LovettMartinMartin LovetMartin LovetteMartín LovettМартин ЛовветМартин ЛоветтAmadeus-Quartett + +874946Wolfgang MitlehnerRecording manager and sound engineer for [l107525].Needs VoteWolfgang MilehnerВ. Митленерヴォルフガング・ミットレーナーヴォルフガング・ミットレーナー + +874947Norbert BraininNorbert BraininJewish born, Norbert Brainin (March 12, 1923 – April 10, 2005), was the first violinist for the renowned Amadeus Quartet (formerly known as the Brainin Quartet), which he formed with fellow strings musicians Siegmund Nissel, Peter Schidlof and Martin Lovett.Needs Votehttps://en.wikipedia.org/wiki/Norbert_BraininBraininN. BraininНорберт БрайнинAmadeus-Quartett + +875349Deborah Miles-JohnsonBritish mezzo-soprano, choral leader, flautist and pianist, born in London, England, UK.Needs Votehttp://www.miles-johnson.co.uk/Debbie Miles-JohnsonDebora MilesDeborah MilesDeborah Miles Johnsonデボラ・マイルズ=ジョンソンThe Tallis ScholarsThe SixteenElectronic Vocal Quartet + +875350Wendy GillespieViol player, violist and teacher, born in New York.Needs VoteWendyy GillespiePhantasm (3)FretworkPomeriumEnsemble Les ElémentsSchola AntiquaThe Waverly ConsortNew York All-State High School OrchestraNota Bene (16)Long Island Youth Orchestra + +875351John Milne (2)Classical bass vocalist.Needs VoteThe English Concert ChoirTaverner ChoirThe Consort Of MusickeThe Schütz Choir Of London + +875352Richard BoothbyViol, Cello and Bass Violin player.Needs VoteFretworkThe BT Scottish EnsembleLondon BaroqueI FagioliniTaverner PlayersThe Purcell QuartetScottish EnsembleIn Echo + +875353Andrew ParrottBritish conductor and chorus master, musicologist (with focus on the 16th and 17th century music), born 10 March 1947. +Also a tenor vocalist, in 1973 he founded the [a=Taverner Choir] and the [a=Taverner Consort].Needs Votehttp://en.wikipedia.org/wiki/Andrew_ParrottA. ParrottAndrew ParottAndrew ParrotAndrow ParrottParrotParrottアンドリュー・パロットElectric PhoenixTaverner ChoirTaverner ConsortTaverner PlayersTaverner Consort, Choir & Players + +875354Ben ParryBen ParryBen Parry is a conductor, composer, arranger, bass vocalist and producer in both classical and light music fields. Married to [a3305643]. +Director of London Voices, Assistant Director of Music at King's College, Cambridge and Artistic Director of National Youth Choirs of Great Britain. +Needs Votehttps://www.benparry.net/https://www.facebook.com/benparrymusic/https://twitter.com/benparrymusichttps://en.wikipedia.org/wiki/Ben_Parry_(musician)https://www.bach-cantatas.com/Bio/Parry-Ben.htmhttps://www.imdb.com/name/nm3028826/B ParryB. ParryB. PerryBen PerryParryThe Swingle SingersLondon VoicesTaverner ChoirTaverner ConsortDunedin ConsortTenebrae (10) + +875355Leigh NixonJohn Leigh NixonClassical tenor vocalist. +He is a Lay Vicar of Westminster Abbey. +Needs VoteJ.L.N.John Leigh NixonJohn NixonThe Hilliard EnsembleThe Tallis ScholarsThe Early Music Consort Of LondonThe Monteverdi ChoirDeller ConsortThe English Concert ChoirTaverner ChoirGothic Voices (2)The Schütz Choir Of LondonThe Choir Of Westminster Abbey + +875357Jacqueline ConnellClassical vocalist (alto).Needs VoteBBC SingersThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirThe Schütz Choir Of London + +875359Bruce Russell (2)Classical Bass / Baritone / Tenor and former Treble (Boy Soprano) vocalist.Needs VoteBruce RussellThe Tallis ScholarsThe King's SingersTaverner ConsortThe Choir Of Christ Church CathedralThe Choir Of St George's Chapel + +875360Robert HornClassical vocalist (tenor)Needs VoteGabrieli ConsortTaverner Choir + +875361Terry Anderson (3)Classical vocalist (alto)CorrectTaverner Choir + +875362Twig HallClassical vocalist (soprano)Needs VoteThe English Concert ChoirTaverner ChoirThe Schütz Choir Of London + +875363Christopher PurvesClassical bass vocalist. +Former choral scholar at King’s College, Cambridge, on leaving university he joined the innovative rock and roll group Harvey and the Wallbangers, before switching to an operatic career.Needs Votehttps://www.facebook.com/christopher.purves.90/https://en.wikipedia.org/wiki/Christopher_Purveshttps://www.bach-cantatas.com/Bio/Purves-Christopher.htmChris PurvesPurvesGabrieli ConsortThe King's College Choir Of CambridgeThe SixteenThe Monteverdi ChoirIl Seminario MusicaleThe English Concert ChoirTaverner ChoirHarvey & The WallbangersInvocation (6) + +875364Peter LongClassical tenor vocalistCorrectThe English Chamber ChoirTaverner ChoirThe Schütz Choir Of London + +875365Patrick Ardagh-WalterClassical vocalist (bass) and music teacher.Needs Votehttps://www.musicteachers.co.uk/user/41d88eb0d5c597971e1e/biographyPatrick A WalterPatrick Ardagh WalkerPatrick Ardagh WalterPatrick Argdagh WalterThe Swingle SingersMetro VoicesLondon VoicesThe English Concert ChoirTaverner ChoirThe Choir Of Christ Church Cathedral + +875366Jeremy WhiteEnglish bass vocalist. +Also credited for language translation.Needs Votehttps://en.wikipedia.org/wiki/Jeremy_White_(bass)The Tallis ScholarsThe SixteenTaverner Choir + +875367Susanna PellEnglish viol player, married to [a747840].Needs Votehttp://www.susannapell.co.uk/index.phpSPSusan PellSusanah PellFretworkNew London ConsortTaverner PlayersRose Consort Of ViolsThe Purcell QuartetCharivari AgréableSpectre De La RoseVirelai (2)Da Camera (3)The Herschel TrioKithara (5) + +875368Taverner ChoirUK choir founded by [a875353] in 1973, the Taverner Choir slowly grew to become the [a5638911]Needs VoteChoirTaverner Choir & PlayersTaverner Choir And PlayersThe Taverner Choirタヴァナー・クワイアMichael McCarthyRogers Covey-CrumpTessa BonnerRichard WistreichEmily Van EveraSimon BerridgeSimon Grant (4)Jeremy BirchallMark PadmorePeter HarveyCharles Daniels (2)Nicola JenkinStephen Charlesworth (2)Mary NicholsRachel PlattNicolas RobertsonEvelyn TubbCaroline TrevorJohn Milne (2)Andrew ParrottBen ParryLeigh NixonJacqueline ConnellRobert HornTerry Anderson (3)Twig HallChristopher PurvesPeter LongPatrick Ardagh-WalterJeremy WhiteChristopher HoganCatherine KingJohn Mark AinsleyPaul Agnew (2)Joyce JarvisPenny VickersNatanya HaddaCaroline StormerRachel WheatleyRachel BevanKristine SzulikCatherine JonesAngus Davidson (2)Alison PlaceDouglas WoottonHaden AndrewsHarriet Johnson (2) + +875369Christopher HoganClassical vocalist (tenor)Needs VoteGabrieli ConsortTaverner Choir + +875495Kiichiro MamineKiichiro Mamine (born 1941 in Tokyo) is a Japanese violinist. Now based in Germany.Needs VoteKi-Ichiro MamimeOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinYomiuri Nippon Symphony OrchestraBach-Collegium BerlinHerzfeld-QuartettSilzer - QuartettPhilharmonische Streichersolisten Berlin + +875497Japan Philharmonic Symphony OrchestraFounded in 1956 by its first conductor [a954623] as the [a1607118], renamed in the 1970s to [a875497].Needs Votehttps://japanphil.or.jp/https://en.wikipedia.org/wiki/Japan_Philharmonic_OrchestraJaapani Filharmooniline OrkesterJapan Philarmonic Symphony OrchestraJapan PhilharmonicJapan Philharmonic OrchestraJapan Philharmonic Symphonic OrchestraJapan Philharmony Symphonic OrchestraJapan Symphony OrchestraThe Japan PhilharmonicThe Japan Philharmonic OrchestraThe Japan Philharmonic SymphonyThe Japan Philharmonic Symphony Orch.The Japan Philharmonic Symphony OrchestraThe New Philharmonia Orchestra日本フィルハーモニー交響楽団Japan Philharmonic OrchestraNobuaki FukukawaKazuko NomiyamaBroadus ErleSayaka ChibaKaoru Namba + +875650Danny SmallDanny C. SmallUS jazz pianist & songwriter often associated with publisher [l=Goday]/[l=Goday Music]. Born in 1928 or 1925 in Chicago, Illinois, and best known for penning "Without Love (There Is Nothing)" sung by [a=Elvis Presley] and [a=Clyde McPhatter]. +[b]Different than songwriter [a=Dally Small] ("I Need A Little Sugar In My Bowl").[/b] +[b]Different than [a=Danny Small (2)] who was already performing in the 1920's while Danny Small was not yet born.[/b]Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=318896&subid=0https://www.1540brewster.com/artists/QxL8LpBp4vJFD SmallD, SmallD. SmallD. SmallsD.SmallD.SmallsDani SmallDanny C. SmallDanny SmallsDanny SnallDany SmallMallO. SmallPorterSmailSmalSmallSmallsDarshan SinghLucky Millinder And His OrchestraThe Danny Small Orchestra + +875846Massimiliano SalmiItalian classical oboist and English horn player. Professor of Music at the University Conservatorio della Svizzera Italiana Lugano. Active in recording since 2003. Co-authored a book on the oboe, "Manuale Dell'Oboe Contemporaneo" (Manual of the Contemporary Oboe) with [a=Andrea Chenna] in 1994.Needs Votehttps://it.linkedin.com/in/massimiliano-salmi-168a9971ContempoartensembleOrchestra Del Maggio Musicale FiorentinoTrio Trilli + +875851Leonardo MatucciItalian classical violinist. He studied at the Fiesole Music School with [a=Antonia Parisi] and [a=Andrea Cappelletti], winning a scholarship from S.I.A.E. in 1992. and in 1993 from Friends of the Music School of Fiesole. He was part of the [a=Italian Youth Orchestra], and attended the chamber music courses of [a=Dario De Rosa] and [a=Renato Zanettovich]. +He attended [a=Ștefan Gheorghiu]'s seminars at the Sion Music Academy and at the Fiesole Music School, where he also attended [a=Norbert Brainin]'s specialization course for violin and [a=Giuseppe Prencipe]'s shoulder violin course. + +After having participated in various chamber ensembles, establishing himself in various national competitions, from 1995 to 1997 he was part of the [a=Quartetto di Fiesole] as second violin, with which he won the first prize in the "Vittorio Gui" International Competition in 1996. From 2000 to 2013 he played with the Orchestra of the Puccini Festival in Torre del Lago. Since 2013, he has been a member of the [a=Orchestra Del Maggio Musicale Fiorentino]. He has been teaching violin at the Fiesole Music School since 1993. He is a member of the Quartetto Del Maggio Musicale Fiorentino, drawn from members of [a=I Cameristi Del Maggio Musicale Fiorentino].CorrectContempoartensembleOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale FiorentinoItalian Youth Orchestra + +876088Stanislas KuchinskiDouble bassist.Needs VoteStanislas KuchinskyOrchestre De ParisLes Trilles Du DiableParis Mozart Orchestra + +876090Jean-Philippe KuzmaFrench violinist, born 30 July 1971.Needs Votehttps://linkedin.com/in/jean-philippe-kuzma-b9382364JP KuzmaJean Philippe KuzmaKuzma Jean PhilippeOrchestre Philharmonique De Radio France + +876092Vincent LaurentFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +876095Olivier DevaureOlivier DevaureFrench classical bass trombonist.Needs VoteOrchestre National De France + +876096Igor BoranianDouble bass player.Needs VoteOrchestre De ParisEnsemble Carpe Diem + +876098Daniel VagnerFrench violist.CorrectVagner DanielVagner DanierOrchestre Philharmonique De Radio FranceOrchestre Colonne + +876099Richard SchmouclerRichard SchmouclerViolinist from France.Needs VoteOrchestre De ParisSirba OctetParis Symphonic Orchestra + +876100Clément SaunierFrench classical trumpeter.Needs VoteEnsemble IntercontemporainParis Brass Quintet + +876102Laurent PhilippClassical violinistNeeds VoteL. PhilipLaurent PhilipLaurent PhilippeLaurent PhillipOrchestre National De L'Opéra De ParisLes Archets De Paris + +876103Etienne TavitianFrench violist.Needs VoteE. TavitianEtienne Julien TavitianEtienne TativianOrchestre National De L'Opéra De ParisLes Archets De Paris + +876104Klodiana SkenderiViolinist.CorrectK. SkenderiKlodiana SkendériLodiana SkenderiOrchestre National De L'Opéra De Paris + +876107Mathieu RoguéFrench cellist.CorrectMathieu RogueMatthieu RogueMatthieu RoguéOrchestre National De L'Opéra De Paris + +876109Anne VilletteFrench violinistNeeds VoteAnne ViletteOrchestre Philharmonique De Radio FranceTraffic Quintet + +876110Sylvain Le ProvostFrench double bassist.Needs VoteSylvain Le ProvotSylvain LeprovostNouvel Ensemble Instrumental Du Conservatoire National Supérieur De ParisOrchestre National De L'Opéra De Paris + +876112Alexandre PelovskiViolinist.CorrectAlexandre PelovskyOrchestre National De L'Opéra De Paris + +876114Hélène Perrat-LaroqueFrench violinist.CorrectHélène LaroqueOrchestre National De L'Opéra De Paris + +876115Cécile BreyFrench violinist.Needs VoteC. BreyOrchestre National De L'Opéra De ParisOrchestre De L'Association Des Concerts PasdeloupQuatuor Wolfmeier + +876117Gilbert AudinFrench bassoon player.Needs VoteAudinジルベール・オダンOrchestre National De L'Opéra De ParisLes Vents FrançaisLes Bassons De L'Opéra + +876120Jeanne Lancien MondonFrench violinist.Needs VoteJeanne LancienJeanne Lancien-MondonJeanne MondonOrchestre National De L'Opéra De ParisLes Archets De Paris + +876121Arnaud NuvoloneFrench violinist. +Concertmaster at the French National Opera Orchestra from Paris. Also Solo violin at the Symphonique Région Centre-Tours Orchestra and at the Pasdeloups Concerts Orchestra. Performs with various chamber music formations too. +In 1998 he founded a string trio, "Triopera". +Needs VoteA. NuvoloneArnaud NuvolineArnaud NuvoloArnaud NuvuloneOrchestre National De L'Opéra De ParisOrchestre De L'Association Des Concerts PasdeloupBekummernis + +876122Jérôme VerhaegheFrench clarinetist.CorrectOrchestre National De L'Opéra De Paris + +876128Catherine CantinFrench flutistNeeds VoteCantinOrchestre National De L'Opéra De ParisParis Symphonic Orchestra + +876377Raymond BloodworthSinger and Songwriter, co-writing many songs with [a533193] in the 1960s. + +b: 18 May 1939 in Milledgeville, Georgia, USA. +d: 18 July 2007 in Macon, Georgia, USA. + +Needs VoteB. BloodworthBlood WorthBloodsworthBloodworthL. Russell BrownR BloodworthR. BloodsworthR. BloodworthR.BloodworthRay BloodworthRaymond L. BloodworthThe Distant Cousins + +876378Selma CraftAmerican songwriter, wife of producer [a240986] with whom the [a=Morton & Selma Craft] credit should be used for songwriting collaborations.Needs Votehttp://books.google.com/books?id=r0ljAAAAIAAJ&pg=PA304&lpg=PA304&dq=Morton+%26+Selma+Craft&source=bl&ots=p0C4fyrTMm&sig=PWewj3Skuyxdk3uqhQSmOg8Di-8&hl=en&sa=X&ei=4yplVKjvHpKMyATjh4LgDg&ved=0CFMQ6AEwCQ#v=onepage&q=Morton%20%26%20Selma%20Craft&f=falseCraftCraft S.S. CraftS. GraftS.CraftSelmaSelmer CraftE. JakubeckEleanor CraftMorton & Selma Craft + +877151John GlaselUS-American jazz trumpet player, born 1930 in New York City, died 8 December 2011 +Represented the professional musicians of New York City as former union president of the American Federation of Musicians Local 802.Needs Votehttps://en.wikipedia.org/wiki/Johnny_GlaselGlaselJohn GlasellJohnny GlaselJohny GlaselДж. ГлезелGil Evans And His OrchestraThe SixBob Wilber's WildcatsChuck Sagle And His OrchestraThe New York Brass QuintetBill Russo And His OrchestraNew York Brass EnsembleThe John Glasel BrasstetDick Meldonian And His Orchestra + +877506Lionel Hampton And His SextetCorrectAn All Star SextetLionel Hampton & His SextetLionel Hampton & His SextetteLionel Hampton And ChorusLionel Hampton And His SextetteLionel Hampton And The BandLionel Hampton Et Son SextetLionel Hampton Et Son SextettLionel Hampton Et Son SextetteLionel Hampton SextetLionel Hampton SextettLionel Hampton SextstLionel Hampton Y Su SextetoLionel Hampton's SextetSestetto Lionel HamptonSextetThe Lionel Hampton SextetThe Lionel Hampton SextettWith His SeptetLionel HamptonMilt BucknerBenoit QuersinArnett CobbRudy RutherfordFred RadcliffePaul RovèreJean-Claude PelletierEddie ChambleeBilly MackelEd MullensVernon KingJoe Morris (2)Albert "June" GardnerGeorge Jones (5) + +877516Guy JohnstonGuy JohnstonCellist, born in 1981, into a family of professional musicians, Guy was a chorister at King's College Cambridge. In '94 he went on to study at Chetham's School of Music and since '99 has studied with Stephen Doane at the Eastman School of Music in Rochester, New York. + +Guy plays a Pellizon cello. +Needs Votehttp://www.imgartists.com/?page=artist&id=167&c=2 + +877517Wim BecuWim BécuBelgian classical [b]trombonist[/b] & [b]sackbutist[/b]. Founder of ensemble [a=Oltremontano]. +Awarded with the Christopher Monk Award 2015 by the Historic Brass Society. + +Wim Becu studied at the Royal conservatories of Antwerp (K. Smits) and The Hague (Charles Toet). In 1980 he began a long-lasting collaboration with the Huelgas Ensemble and Paul Van Nevel. Since 1985 Wim Becu is the regular bass sackbut player of Concerto Palatino. His great passion for the music and his ever-increasing enthusiasm quickly made him one of the most prominent performers in many international ensembles and orchestras. He performs on almost every historical trombone, and his repertoire stretches from the Middle Ages to the Romantic era. For almost a quarter of a century Wim Becu has worked alongside such great names as Philippe Herreweghe, Jos Van Immerseel, René Jacobs, Konrad Junghänel, Ton Koopman, Sigiswald Kuijken, Gustav Leonhardt, Andrew Parrott, Philippe Pierlot, Jordi Savall, Masaaki Suzuki and Bruce Dickey. During this time he has recorded more than 170 CDs. With the founding of Oltremontano in 1993 Wim Becu created his own platform and studio for historic brass instruments. Over recent years he has not only devoted himself to the research and exploration of 16th and 17th century music but has expanded his interest and activities to the development of historical trombones in 19th century repertoire. Wim teaches at various academies in Belgium and at the Musikhochschule in Köln as well as giving master classes. +Source: https://www.concertopalatino.com/wim-becuNeeds Votehttps://web.archive.org/web/*/https://www.concertopalatino.com/Wim_Becu.htmlWim BécuOrchestre Des Champs ElyséesHuelgas-EnsembleCollegium VocaleThe Amsterdam Baroque OrchestraConcerto VocaleLa Capella Reial De CatalunyaRicercar ConsortCantus CöllnTafelmusik Baroque OrchestraBach Collegium JapanConcerto PalatinoLes Sacqueboutiers De ToulouseHis Majestys Sagbutts And CornettsCapilla FlamencaCapriccio StravaganteCurrendeOltremontanoGli Angeli GenèveEnsemble Chelycus + +877520Peter BarleyBritish organist, born in 1969.Correct + +877521Harry BrammaHarry Wakefield BrammaBorn 11 November 1936, Shipley, West Yorkshire. British organist and composer of Anglican church music. He served as Director of the Royal School of Church Music from 1989 to 1998 and as Director of Music at All Saints, Margaret Street, 1989–2004.Needs VoteDr Harry Bramma + +877522Choir Of Worcester CathedralCorrectChoeur De La Cathédrale De WorcesterChoristers Of Worcester CathedralCoro Da Catedral De WorcesterThe Choir Of Worcester CathedralThe Choir of Worcester CathedralThe Worcester Cathedral ChoirTrebles Of Worcester Cathedral ChoirWorcesterWorcester CathedralWorcester Cathedral ChoirWorcester Cathedral Choir, TheWorcester Cathedral ChoristersWorcester Cathedrale ChoirWorcester Catherdral ChoirJohn Davies (32) + +877523Philip LedgerPhilip Stevens LedgerBritish conductor, composer, harpsichordist and organist, born 12 December 1937 in Bexhill, Bexhill-on-Sea, England and died 18 November 2012.Needs Votehttps://en.wikipedia.org/wiki/Philip_LedgerKing's College Chapel, CambridgeLedgerP. LedgerSir Philip LedgerWoodward From Piae Cantionesフィリップ・レッジャーフィリップ・レッドガーThe Academy Of St. Martin-in-the-FieldsThe English Opera Group + +877524Stephen CleoburyStephen John CleoburySir Stephen Cleobury, CBE (born 31 December 1948, Bromley, Kent, England - died 22 November 2019, York, North Yorkshire, England) was an English organist and conductor. +Correcthttp://en.wikipedia.org/wiki/Stephen_Cleoburyhttp://www.stephencleobury.com/https://www.kings.cam.ac.uk/news/2019/sir-stephen-cleobury-1948-2019CleoburyKing's College Chapel, CambridgeMr Stephen CleoburyRichard SuartS CleoburyS. CleoburySir Stephen CleoburyStepehen CleoburyStephen CledburyStephen Creoburyスティーヴン・クレオバリーThe Academy Of St. Martin-in-the-FieldsWestminster Cathedral Choir + +877525Christopher RobinsonChristopher John Robinson (born 1936) is a British conductor and organist.Correcthttp://en.wikipedia.org/wiki/Christopher_Robinson_%28musician%29C RobinsonC. RobinsonDr Christopher Robinson CVO/CBERobinsonWorcester Cathedral + +877526Gregorio AllegriItalian composer of the Roman School (1582 – 17 February 1652), he was also a priest and a singer.Needs Votehttps://en.wikipedia.org/wiki/Gregorio_Allegrihttps://www.naxos.com/person/Gregorio_Allegri/17623.htmAlegriAlgeriAllegriG. AllegriG.AllegriGregorio AllergriGrigorio AllegriGrégorio Allegriアレグリグレゴリオ・アレグリ + +877527Alan Wilson (3)Classical harpsichordist, organist and virginal instrumentalistNeeds VoteA. WilsonThe Consort Of MusickeThe Praetorius Consort + +877563Alexander BarantschikАлександр БаранчикRussian born violinist and concertmaster. Born in 1953 in St. Petersburg, Soviet Union. +After studying at the [l1513139], he performed with various Soviet orchestras, including the [a1065788], before emigrating in 1979 to become Concertmaster of the [url=https://www.discogs.com/artist/833686-Bamberger-Symphoniker]Bamberg Symphony Orchestra[/url]. He was Concertmaster of the [url=https://www.discogs.com/artist/2994787-Radio-Filharmonisch-Orkest]Dutch Radio Philharmonic Orchestra[/url] from 1982 to 2001, and leader of the [a=London Symphony Orchestra] from 1989 to 2001. Concertmaster of the [url=https://www.discogs.com/artist/446472]San Francisco Symphony Orchestra[/url] since September 2001.Needs Votehttps://www.youtube.com/channel/UCBqY752DFaeMi4uKnfgAF1Q/abouthttps://open.spotify.com/artist/51RGoLS8xaGe4sgllvjENLhttps://music.apple.com/ba/artist/alexander-barantschik/377891555https://en.wikipedia.org/wiki/Alexander_Barantschikhttps://www.sfsymphony.org/Data/Event-Data/Artists/B/Alexander-Barantschikhttps://www.sfgate.com/entertainment/article/Sound-check-New-concertmaster-Alexander-2872737.phphttps://360wiki.ru/wiki/Alexander_Barantschikhttps://hmong.ru/wiki/Alexander_Barantschikhttps://www.imdb.com/name/nm2048744/London Symphony OrchestraSan Francisco SymphonyBamberger SymphonikerSt. Petersburg Philharmonic OrchestraLondon Symphony Orchestra StringsRadio Filharmonisch Orkest + +877595Ben JonsonBenjamin JonsonEnglish Renaissance dramatist, poet and actor (Westminster, c. 11 June 1572 – London, 6 August 1637).Needs Votehttp://en.wikipedia.org/wiki/Ben_Jonsonhttps://adp.library.ucsb.edu/names/102766B. JonsonBen JohnsonJohnsonJonsonБ. ДжонсонБен Джонсон + +877614Jean-Pierre WallezFrench violinist and conductor, born March 18, 1939 in Lille.Needs Votehttp://en.wikipedia.org/wiki/Jean-Pierre_WallezDir. Jean-Pierre WallezJ-P WallezJ.-P. WallezJ.P. WallezJean Pierre WallezPierre WallezWallezЖан-Пьер ВаллезOrchestre De ParisCollegium Musicum De ParisEnsemble Orchestral De Paris + +877670Enrico VolontieriClassical bass vocalist and Spinet playerNeeds VoteCoro Del Centro Di Musica Antica Di PadovaEnsemble Euridice + +877746Karel SchoofsOboe player, born 1971.Correcthttp://www.karelschoofs.com/Golden Symphonic OrchestraRotterdams Philharmonisch Orkest + +877776Shirley MintyClassical vocalist (Mezzo-soprano, Contralto).Needs Votehttps://www.bach-cantatas.com/Bio/Minty-Shirley.htmMintyShirly MintyThe Ambrosian SingersAccademia Monteverdiana + +877886Gustaf Fröding22 August 1860 – 8 February 1911) Swedish poet and writer, born in Alster outside Karlstad in Värmland.Needs Votehttps://en.wikipedia.org/wiki/Gustaf_Fr%C3%B6dinghttps://adp.library.ucsb.edu/names/102811FrodingFrödingG FrödingG. FrodlingG. FrödingG.FrödingGustav Fröding + +878141Peter IndPeter Vincent IndEnglish jazz double bassist, producer, engineer, studio owner, author, and painter. +Born: 20th July 1928, Uxbridge, Middlesex, England +Died: 20th August 2021 +Started playing piano but swapped to bass as he felt his piano technique wasn't good enough. Professional bassist from 1947. In 1949, while playing in the ocean liner Queen Mary house band, he first met [a259086], whom he took lessons from now and then, while in New York. He moved to New York City in 1951 and started touring with [a259092] in 1953. From 1956, he owned the [l457143] located in New York City. In 1966, he and his family relocated to the UK. In the 1970s and 1980s he owned the [l130255] jazz label and the London [l277898] until, in 1984, he opened the London nightclub [l=Bass Clef], later known as Blue Note. + +Among the jazz artists he played with are Lee Konitz, Lennie Tristano, [a=Buddy Rich], [a=Warne Marsh], [a=Paul Bley], [a=Kenny Barron], [a=Tommy Flanagan], [a=Mal Waldron] and [a=Jutta Hipp]Needs Votehttp://peterind.co.uk/https://en.wikipedia.org/wiki/Peter_Indhttps://www.imdb.com/name/nm6974923/IndP. IncP. IndPete IndPeter IncPaul Bley TrioThe Lee Konitz QuartetLennie Tristano QuintetLennie Tristano QuartetThe Tony Coe QuintetBuddy DeFranco QuartetBuddy Rich QuartetTommy Whittle QuartetKenny Baker And His BandKeith Smith's Chosen 5Peter Ind SextetTony Barnard TrioWarne Marsh Lee Konitz Quintet + +878310Dietrich BethgeClassical cellist.Needs VoteDietrich BathgeDietrick BethgeEnglish Chamber Orchestra + +878312Robin McGeeBritish classical double bass player and Professor of Double Bass. Born 28 December 1934 in High Wycombe, Buckinghamshire, England, UK - Died 2 November 2004. +He studied piano & cello at the [l527847]. After accepting double bass lessons, he spent six years with the [a=Royal Philharmonic Orchestra]. Former Sub/Co-Principal Double Bass with the [a=London Symphony Orchestra] (1965-1975). He held the position of Principal Double Bass in the [a=London Sinfonietta] for 26 years. Professor of Double Bass at the Royal Academy of Music.Needs Votehttps://open.spotify.com/artist/7Lk6fKUsUwWpAlJ51jTEschttps://music.apple.com/us/artist/robin-mcgee/4325232https://www.the-paulmccartney-project.com/artist/robin-mcgee/https://www.imdb.com/name/nm0569127/https://www2.bfi.org.uk/films-tv-people/4ce2bb0f19fa2McGee R.McGee. RRobin Mac GeeRobin Mc GeeLondon Symphony OrchestraRoyal Philharmonic OrchestraLondon SinfoniettaThe Michael Nyman BandLondon Wind OrchestraThe London Double Bass Ensemble + +878316Dominic MorganClassical contra bassoon & bassoon player, and Professor of Contra Bassoon. +He graduated from the [l459222]. He joined the [a=London Symphony Orchestra] as Principal Contra Bassoon in 1994, after playing for [a=The English National Opera Orchestra] as Sub-Principal Bassoon for nine years. He retired on 15 December 2021. Professor of Contra Bassoon at [l305416].Needs Votehttps://www.linkedin.com/in/dominic-morgan-07282448/https://www.feenotes.com/database/artists/morgan-dominic/https://three-worlds-records.com/artist/dominic-morgan/https://vgmdb.net/artist/22964https://www.gsmd.ac.uk/staff/dominic-morganDominick MorganDomonic MorganLondon Symphony OrchestraRoyal Philharmonic OrchestraThe English National Opera Orchestra + +878386Daniel ReussGerman-Dutch conductor born 1961. +1990 to 1997 - conductor of the [a3675170]. +2003 to 2006 - artistic director / chief conductor of the [a=RIAS-Kammerchor]. +September 2008 to 2013 - artistic director / chief conductor of the [a=Estonian Philharmonic Chamber Choir]. +Since 1990 - director of the [a858441].Needs Votehttps://www.danielreuss.com/https://en.wikipedia.org/wiki/Daniel_ReussD. ReussDaniel ReußEstonian Philharmonic Chamber ChoirRIAS-Kammerchor + +878389René MöllerSound Engineer & Producer for mainly classical productions.Needs VoteRene MoellerRene MollerRene MöllerRené MoellerRené MollerRenée MöllerRéné MöllerBerliner Barock Solisten + +878464Dick ColeAmerican trombonist, b 1909 in Alexandria, VirginiaCorrectStan Kenton And His Orchestra + +878651Cécile OussetCécile OussetBorn: February 23, 1936 (Tarbes, France) + +Cécile Ousset gave her first recital at the age of five. After studying at the Paris Conservatoire with Marcel Ciampi, she graduated with the top prize. She was only 14 years old. + +She won more than one major price at many competitions, including the Van Cliburn, the Busoni and the Queen Elisabeth of Belgium. Ousset developed a highly successful international career. She's popular with British audiences and performed a number of times at the Proms. + +She first played in America in 1984 with the [a=Los Angeles Philharmonic Orchestra] and the [a973130], and has subsequently returned to America regularly to appear with all the principal orchestras, including the [a395913], the [a915941] and the [a388185]. + +Cécile Ousset often adjudicates at major piano competitions, including the Van Cliburn and the Leeds. She gives master classes every summer in Puycelsi. (info dated 2003) + +In December 2006, Ousset retired from public performance due to health problems related to her back. +Needs Votehttp://en.wikipedia.org/wiki/C%C3%A9cile_OussetCecile OussetCécilie OussetCécille OussetOussetСесиль Уссеセシル・ウーセ + +878658George HudsonGeorge Edward Hudson.American jazz trumpeter and bandleader. +Born: March 07, 1910 in Stonewall, Mississippi. +Died: July 10, 1996 in St. Louis, Missouri. + +George worked with (among others) the Sun Ra Arkestra and in his own George Hudson Orchestra (for 43 years).Needs Votehttps://www.allmusic.com/artist/george-hudson-mn0001679991B. GeorgeGeo. HudsonHudsonTeddy Stewart OrchestraThe Sun Ra ArkestraAlphonso Trent And His OrchestraGeorge Hudson And His "Modern" Music + +878824Marie Luise NeuneckerMarie-Luise Neunecker (born 17. July 1955 in Erbes-Büdesheim) is a German horn player, since 1988 she has been professor in Frankfurt, and since 2004 she teaches at the Hochschule für Musik „Hanns Eisler“ in Berlin.Needs Votehttps://de.wikipedia.org/wiki/Marie-Luise_NeuneckerM. L. NeuneckerMarie-Louise NeuneckerMarie-Luise NeuneckerNeuneckerBamberger SymphonikerDie Deutschen Bläsersolisten + +878825Ozan ÇakarGerman-Turkish horn player, born 1978 in Stuttgart, Germany. He's the son of [a3731581].Needs VoteOzan CakarÇakarDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper Am RheinEssener PhilharmonikerQuartetto Bosso + +878831Simon BreyerClassical horn and trumpet player.Needs VoteEnsemble ModernKristiansand Symfoniorkester + +878991David GeringasDovydas GeringasLithuanian cellist and conductor, born in Vilnius, Lithuania, July 29, 1946. Father of [a=Alexander Geringas]. He is married to [a=Tatjana Schatz-Geringas].Needs Votehttps://geringas.de/https://en.wikipedia.org/wiki/David_GeringasD. GeringasDavidDavid HeringasDavidas GeringasGeringasProf. David GeringasД. ГерингасДавид ГерингасOrchestre National De France + +879156The Choir Of Christ Church Cathedral500 year old choir which is part of the Christ Church Cathedral in Oxford. There are 12 men and 16 boys in the Choir along with 2 Organists. The boys are selected for their musical ability and attend Christ Church Cathedral School. Of the men, six are professionals, and six are undergraduates. Needs Votehttps://www.chch.ox.ac.uk/choirs/cathedral-choirBoys Of Christ Church Cathedral OxfordBoys Of Christ Church Cathedral, OxfordBoys of Christ Church Cathedral, OxfordChoir Of Christ Church CathedralChoir Of Christ Church Cathedral (Oxford)Choir Of Christ Church Cathedral OxfordChoir Of Christ Church Cathedral · OxfordChoir Of Christ Church Cathedral, OxfordChoir Of Christchurch Cathedral OxfordChoir Of Christchurch Cathedral, OxfordChor Der Christ Church Cathedral, OxfordChor Der Christuskirche, OxfordChrist Chuch Cathedral ChoirChrist ChurchChrist Church CathedralChrist Church CathedralChrist Church Cathedral ChoirChrist Church Cathedral Choir (Oxford)Christ Church Cathedral Choir OxfordChrist Church Cathedral Choir, OxfordChrist Church Cathedral School ChoirChrist Church ChoirChrist Church Choir, OxfordChrist Church College Choir, OxfordChrist Church Harmonic ChoirCoro De La Catedral Iglesia De Cristo, OxfordCoro De La Christ Church Catedral De OxfordCoro De La Christ Church Cathedral, OxfordCoro De La Iglesia Catedral De Cristo, OxfordFrancis GrierThe Boys Of Christ Church Cathedral Choir, OxfordThe Cathedral Singers Of Christ Church, OxfordThe Choir Of Christ Church Cathedral OxfordThe Choir Of Christ Church Cathedral, OxfordThe Choir of Christ Church Cathedral, OxfordThe Choristers Of Christ Church Cathedral OxfordThe Christ Church Cathedral ChoirThe Christ Church Cathedral Choir (Oxford)The Christ Church Cathedral Choir Of Men And Boys, IndianapolisThe Christ Church Cathedral Choir OxfordThe Christ Church Cathedral Choir, OxfordThe Christ Church Cathedral Choir, Oxford, EnglandThe Christchurch Choir Of 50 VoicesХор Christ Church Cathedral в ОксфордеХор Христовой церкви (Оксфорд)Michael McCarthyMatthew VineAndrew OllesonAlexander HickeyRobert MacdonaldAndrew MurgatroydNeil MacKenzieBruce Russell (2)Patrick Ardagh-WalterHenry WickhamPaul CharrierMatthew BrightAndrew CarwoodDavid Le MonnierMartyn Jones (2)Stephen CarterEdward WickhamRupert MellorDavid Taylor (11)David Skinner (4)Charles HumphriesTimothy BennettDavid TrendellPhilip CavePhilip PooleyTimothy SymonsSebastian Thomson (2)Oliver WinstoneGulliver RalstonEdwin SimpsonStephen Taylor (7)Andy Blyth (2)Hugo JanacekMitchell KeeleyJon StainsbyRupert HarrisRyota SakaiAlastair CareyBen LaxtonJames FlewellenWill DawesJamie BlinkoJulian HartleyPeter Hall (8)Clive LetchfordStuart KinsellaWilliam BalkwillJohn Crowley (2)Richard BrettMichael CockerhamPeter GrittonCharles MindenhallPaul FlightMark Slater (2)Kenneth RolesJames Murray-BrownRory JeffesJeremy KitchenRoger LilleyLaurie MilnerMatthew King (7)Timothy RoweNicholas PondAdrian Harris (3)Jonathan Cooke (7)Andrew SpringEdmund WearingSimon Evans (4)Simon Williamson (2)Matthew Bell (3)Richard Cranmer (2)Paul Martin (38)George HumphreysTobias SheppardDavid Evans (26)Benedict McCareyJulian Wright (5)Luke SchofieldThomas Waller (2)Oliver WingJustin RamellDerrick PurvisJonathan JobJames Weeks (3)Thomas Morris (4)Benjamin Hughes (2)James RidgwayDavid Guest (4)Kieron MaiklemWilliam Smith (28)George GodsalBenjamin FitzgeraldJames GorickMartin IllingworthCiaran O'Keeffe (2)Michael Forbes (4)Michael SpeightPeter Weir (3)Angus McCareyRanjeet GuptaraRichard Perry (6)Christopher O'Donnell (2)Nicholas Barker (2)William BowesDavid MohammedRichard Ford (14)Thomas GentryDuncan HughesTimothy FergusonElias KalivasThomas CuttsJonathan HargreavesNicholas Smith (3)Daniel Collins (5)Clive Driskill-SmithDylan HostetterJohn Schroeder (13)Alexander MasseyCarl Smith (26)Joshua Barton (2)Robert Lewis (43)Roger Hurt (2)Thomas WoodyAndrew DuBoisAndrew WorthBruce White (12)Carl Broemel (2)George Benn (2)Harry CarmackMichael Carter (26)Philip Van DeusenAlan MaysDavid Honoré (2)Michael DuBois (5)Roy Jones (14)Adam CloeBrian FirebaughBrose PartingtonBrown PartingtonDavid BennElliot HostetterJonathan ManningJustin Morris (9)Mark LokerNicholas FennigRyan Marshall (12)Scott ForemanWilliam Ferguson-wagstaffeZachary BartonDaniel Morris (12)Scott FirebaughSean ManterfieldChristopher Byler (2) + +879554Bob Summers (3)Robert SummersAmerican jazz trumpet playerNeeds VoteBob F. SummersBob SummersBobby SummersRobert F. SummersRobert SummersCount Basie OrchestraCount Basie Big BandCarl Burnett QuintetGordon Goodwin's Big Phat BandThe Bill Holman BandLadd McIntosh Big BandBob Summers QuintetGordon Brisker Big BandAlf Clausen Jazz OrchestraRoger Neumann's Rather Large BandThe Buddy Bregman Big BandVic Lewis West Coast All-StarsThe Tom Talbert Jazz OrchestraTom Talbert SeptetThe Los Angeles Jazz OrchestraThe Bill Perkins Big BandAllen Carter Big BandBill Watrous Big BandThe Pete Christlieb & Linda Small Eleven Piece BandMark Masters' Jazz OrchestraMark Masters EnsembleMighty Little Big HornsAvalon CatsLanny Morgan SextetThe SW Santa Ana WindsThe Arno Marsh Quintet + +879626Jeroen WoudstraDutch violinist.CorrectConcertgebouworkestOrkest Amsterdam DramaAlma Quartet + +879794Andreas AigmüllerAndreas AigmüllerGerman timpanist, percussionist and composer, born 1952 in Magdeburg, GDR.Correcthttp://www.aigmueller-music.de/Staatskapelle BerlinDas Mozarteum Orchester SalzburgHans Rempel OrchesterEnsemble Studio 4 + +879796Werner TastGerman classical flautist +Prof. Werner Tast - longtime solo flutist at the Komische Oper Berlin - professor at the Academy of Music "Hanns Eisler" Berlin for flute and chamber music.Needs Votehttps://www.stretta-music.com/author-werner-tast/TastVerner TastW. TastKammerorchester BerlinDie 14 Berliner Flötisten + +880236Yuri SmirnovЮрий Борисович СмирновYuri Smirnov - Soviet pianist.Needs Votehttp://allpianists.ru/smirnov.htmlIouri SmirnovIury SmirnovJ. SzmirnovJurij SmirnowJury SmirnovSmirnovYuri SmirnoffЮ. СмирновЮрий СмирновVienna Brahms Trio + +880285Tugan SokhievТуган Таймуразович СохиевOssetian conductor, born 1977 in Vladikavkaz. +He is director of the [a880293], and principal conductor designate of the [a462180]. +From 2014 to 2022 - Chief Conductor and Music Director of the [l347605] (Moscow).Needs Votehttps://en.wikipedia.org/wiki/Tugan_Sokhievhttps://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D1%85%D0%B8%D0%B5%D0%B2,_%D0%A2%D1%83%D0%B3%D0%B0%D0%BD_%D0%A2%D0%B0%D0%B9%D0%BC%D1%83%D1%80%D0%B0%D0%B7%D0%BE%D0%B2%D0%B8%D1%87Deutsches Symphonie-Orchester BerlinOrchestre National Du Capitole De ToulouseBolshoi Theatre Orchestra + +880293Orchestre National Du Capitole De ToulouseOrchestre National du Capitole de ToulouseFrench orchestra based in Toulouse, founded in 1945, leaders have been [a=André Cluytens], [a=Georges Prêtre] (1951 to 1955), [a=Michel Plasson] (1968 to 2003), and currently [a=Tugan Sokhiev]. +Merged with Orchestre symphonique de Toulouse-Pyrénées in the 1960s + +For the Chorus, use [a3648910]Needs Votehttps://onct.toulouse.fr/https://en.wikipedia.org/wiki/Orchestre_national_du_Capitole_de_ToulouseChoeurs et Orchestre du Capitole de ToulouseChœur & Orchestre du Capitole de ToulouseCity Of Toulouse OrchestraL'Orchestre Du Capitole De ToulouseL'Orchestre National Du Capitole De ToulouseOrchestraOrchestra Du Capitole De ToulouseOrchestra If The Capitol, ToulouseOrchestra Of The Capitole De ToulouseOrchestra Of The Capitole Of ToulouseOrchestra Of The Capitole de ToulouseOrchestra Of The Capitole, ToulouseOrchestra of the Capitole de ToulouseOrchestreOrchestre Du Capitole De ToulouseOrchestre Capitole De ToulouseOrchestre De Capitole De ToulouseOrchestre De Chambre National De ToulouseOrchestre Du CNR De ToulouseOrchestre Du Capitol De ToulouseOrchestre Du CapitoleOrchestre Du Capitole De ToulouseOrchestre Du Capitole Du ToulouseOrchestre Du Capitole ToulouseOrchestre Du Capitole de ToulouseOrchestre Du Théâtre Du Capitole de ToulouseOrchestre National De ToulouseOrchestre National Du Capitole Du ToulouseOrchestre de Capitole de ToulouseOrchestre du Capitale de ToulouseOrchestre du Capitol de ToulouseOrchestre du Capitole de TolouseOrchestre du Capitole de ToulouseOrquesta Del Capitole De ToulouseOrquesta di Capitolio de ToulouseString Ensemble Of The Orchestre National Du Capitole De ToulouseToulouse Capitol Orchestraトゥールーズ・カピトール国立管弦楽団トゥールーズ市立管弦楽団Sébastien PlancadeBeverley JonesJacques NoureddineJacques DeleplancqueGeorges PrêtreTugan SokhievAndré CluytensVincent Cazanave-PinMichel PlassonChristophe ViviesDavid MinettiLionel BelhaceneFrançois Laurent (3)Florence FourcassieJean-Michel PicardGaëlle ThouveninMalcolm StewartFabien DornicFrederic TardyDaniel RossignolBruno DubarryPhilippe TribotStéphane LabeyrieBenoit ChapeauxGaël SeydouxSerge KrichewskyIon GeorgescuIsolde FerenbachLouis SeguinJean-Claude CadrésGilles ApparaillyAline MarciacqPierre Cordier (2)David LocqueneuxSharon RoffmanSarah IancuBenoît HuiAsim DelibegovicGuilhem BoudrantEstelle BartolucciMaïlyss CaïnSandrine TillyDavid LefèvreGabrielle ZaneboniJulie GuédonVincent PouchetFrançois LugueHugo BlacherDamien-Loup VergneJuliette GilKristi GjeziFlorianne TardyLaurent Rossi (2)Fabien MastrantonioAurore DassesseChristophe DewarumezClaude RoubichouJasper MertensLouise OgnoisKei TojoCamille LaurentPierre Gil (2)Léa BirnbaumHaruka Katayama (2) + +880564Dewey BergmanMarvin Dewey BergmanAmerican songwriter, vocal coach, arranger, bandleader. +Born October 4, 1900 in Buffalo, New York, USA. +Died June 1987 in New York City, New York, USA. +Bergman arranged for Guy Lombardo, Gene Krupa and others. Bergman organized & arranged while he had his son lead the [a=Bob Dewey And His Orchestra], the name "Bob Dewey" coming from his son's first name and his. There was no such person as Bob Dewey. +Bergman was a musical director with RCA Victor.Needs Votehttps://www.imdb.com/name/nm0074760/bio/#overviewhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/107180/Bergman_Deweyhttps://adp.library.ucsb.edu/names/107180BerghmanBergmanBergmannD. BergmanDewey Bergman And His TrioDewey BregmanHergmanDon Osborne (2)Jean Goldkette And His OrchestraBob Dewey And His OrchestraDewey Bergman And His OrchestraDewey Bergman And His Trio + +880605Margaret HillisMargaret Eleanor HillisAmerican chorus master, founder and first director of the [a3016490], also leader of the [a683940]. + +Born: October 1, 1921 in Kokomo, Indiana +Died: February 5, 1998 in Evanston, Illinois +Needs Votehttp://en.wikipedia.org/wiki/Margaret_Hillishttp://www.bach-cantatas.com/Bio/Hillis-Margaret.htmHillisM. HillisMargaret Hillsマルガレット・ヒリスマーガレット・ヒリス + +880725Myung-Whun ChungMyung-Whun ChungSouth Korean conductor and pianist, born 22 January 1953 in Seoul, South Korea. +Brother of violinist [a=Kyung-Wha Chung] and cellist [a=Myung-Wha Chung].Needs Votehttps://en.wikipedia.org/wiki/Myung-whun_Chunghttps://www.bach-cantatas.com/Bio/Chung-Myung-Whun.htmChungM.-W. ChungMyung Whang ChungMyung Whun ChungMyung-Whung ChungMyung-whun ChungМюнг Ван ЧунгМюнг Вун ЧунгЧон Мен Хунチョン・ミュンフンチョン・ミョンフンチョン・ミョンフンOrchestra dell'Accademia Nazionale di Santa CeciliaChung Trio + +880769Norman Del MarNorman René Del MarBritish horn player, conductor (specialised in the music of late romantic composers), teacher, and biographer. Born 31 July 1919 in Hampstead, London, England, UK - Died 6 February 1994 in Bushey, Hertfordshire, England, UK. +He studied at the [l290263] and started his career as a horn player. During World War II he saw service as a member of [a=The Central Band Of The Royal Air Force]. He was also a member of the [b]Royal Air Force Symphony Orchestra[/b]. He worked as a composer, and arranger after the war, while conducting an amateur orchestra, which eventually grew into the [a=Chelsea Symphony Orchestra]. He was one of the original members of the [a=Royal Philharmonic Orchestra] in 1946 and made his professional debut as a conductor with the RPO in 1947. In 1949, Del Mar was appointed principal conductor of [a=The English Opera Group], in which post he remained until 1954. He then held chief conducting posts with the [b]Yorkshire Symphony Orchestra[/b] (1954), the [a=BBC Scottish Symphony Orchestra] (1960–1965), [a1015406] (1969-1973), the [b]Chamber Orchestra of the Royal Academy of Music[/b] (1973 - 1977), and the [a=Aarhus Symfoniorkester] (1985–1988, serving also as its Artistic Director). He taught conducting at [l305416] (1953-1960) and at the Royal College of Music (1972-1990). +Commander (CBE) - Order of the British Empire. +Father of [a=Jonathan Del Mar] and [a=Robin Del Mar]. +Needs Votehttps://soundcloud.com/norman-del-mar-officialhttp://en.wikipedia.org/wiki/Norman_Del_Marhttps://musicianbio.org/norman-del-mar/https://play.primephonic.com/artist/norman-del-mar-1919https://www.independent.co.uk/news/people/obituary-norman-del-mar-1392549.htmlhttps://www.heraldscotland.com/news/12685568.norman-del-mar/https://www.nytimes.com/1994/02/08/obituaries/norman-del-mar-74-an-english-conductor.htmlhttps://www.latimes.com/archives/la-xpm-1994-02-14-mn-22734-story.htmlhttps://www.chandos.net/artists/Norman_Del_Mar/17148https://www.prestomusic.com/classical/conductors/4056--norman-del-marhttps://www.faber.co.uk/author/norman-del-mar/https://www.akademibokhandeln.se/bok/richard-strauss/9780571250981/https://www.imdb.com/name/nm0215636/https://www.ibdb.com/broadway-cast-staff/norman-del-mar-109192Del MarNormal Del MarNorman Del MaurNorman DelMardel MarНорман дель Марノーマン・デル・マーRoyal Philharmonic OrchestraPhilharmonia OrchestraThe Central Band Of The Royal Air ForceBBC Scottish Symphony OrchestraThe English Opera GroupGöteborgs SymfonikerAarhus Symfoniorkester + +880941John WilbyeJohn Wilbye (baptized 7 March 1574 in Diss, Norfolk, England – September 1638 in Colchester, Essex, England) was an English madrigal composer.Needs Votehttp://en.wikipedia.org/wiki/John_Wilbyehttp://www.hoasm.org/IVM/Wilbye.htmlhttps://adp.library.ucsb.edu/names/105275J. WilbyeJ.WilbyeJohn WilbieJohn WilbyWilbeWilbye + +880947Thomas WeelkesThomas Weelkes (baptised 25 October 1576 – died 30 November 1623) was an English composer and organist. He became organist of Winchester College in 1598, moving to Chichester Cathedral. His works are chiefly vocal, and include madrigals, anthems and services.Needs Votehttp://en.wikipedia.org/wiki/Thomas_Weelkeshttps://adp.library.ucsb.edu/names/102441T WilkesT. WeelkesTh. WeelkesThomas WeelksWeeklesWeelkes + +880957Rafael Frühbeck De BurgosRafael FrühbeckSpanish conductor and composer, born 15 September 1933 in Burgos, Spain, died 11 June 2014 in Pamplona, Spain. + +- Principal Conductor of [a5389250] (1958-1962) +- Principal Conductor of [a1275956] (1962-1978) +- Musical Conductor (Generalmusikdirektor) of [a4046023] (1966-1971). +- Artistic Director of [a931253] (1974-1976). +- Principal conductor of the [a875118] of Tokyo (1980-1983), of which he was later named honorary conductor. +- Conductor of [a696225] (1991-1997). +- Music director of [a841431] (1992-1997). +- Music director of [a796211] (1994-2000). +- Principal conductor of [a1642158] (2001-2007). +- Music director of [a854918] (2004-2011) +- Principal conductor [a5597960] (2011) +- Creative Director of [a834227] (2011-2013) +He recorded on a number of labels, where his recordings include Felix Mendelssohn's Elijah, the Mozart Requiem, Carl Orff's Carmina Burana, and Georges Bizet's Carmen. +He was known as well for his recording of the complete works of Manuel de Falla and a series of complete zarzuela recordings. +He orchestrated a suite from Isaac Albéniz's Suite española and conducted the New Philharmonia Orchestra in a commercial recording of this arrangement. His work in contemporary music included conducting the world premiere production of Gian Carlo Menotti's opera Goya. He was a member of the Academy of Fine Arts and History Institución Fernán González. +His honours include the 2011 "Conductor of the Year" award from Musical America.Needs Votehttps://en.wikipedia.org/wiki/Rafael_Fr%C3%BChbeck_de_Burgoshttps://www.imdb.com/name/nm0207674/BurgosDe BurgosFrubeck De BurgosFruhbeck De BurgosFrübeck De BurgosFrühbeckFrühbeck De BurgosFrühbeck de BurgosR. Fruhbeck De BurgosR. Frühbeck De BurgosRafael Fruhbeck de BurgosRafael Bruebeck De BurgosRafael Fruebeck De BurgosRafael FruhbeckRafael Fruhbeck De BurgosRafael Fruhbeck de BurgosRafael Frübeck De BurgosRafael Frübeck de BurgosRafael Früberck de BurgosRafael FrühbeckRafael Frühbeck de BurgasRafael Frühbeck de BurgosRafael Prühbeck de BurgosRafaël FruhbeckRafaël Fruhbeck De BurgosRafaël Frühbeck De BurgosRafaël Frühbeck de BurgosRafaẽl Frühbeck De BurgosRaphael Fruhbeck de BurgosRaphael Frühbeck De Burgosde Burgosフリューベック・デ・ブルゴスラファエル・フリューベック・デ・ブルゴスRundfunk-Sinfonieorchester BerlinCincinnati Symphony OrchestraOrchester Der Deutschen Oper BerlinDresdner PhilharmonieYomiuri Nippon Symphony OrchestraOrchestre symphonique de MontréalSociedad Coral De BilbaoOrquesta Nacional De EspañaOrchestra Sinfonica Nazionale Della RAIDüsseldorfer SymphonikerOrquesta Sinfonica De BilbaoDR SymfoniOrkestret + +881437Edith WiensEdith WiensGrammy Award winning soprano singer born 1950-06-09 in Saskatoon, Canada who has worked and collaborated with a great many orchestras and conductors the world over. +Ms. Wiens lives in New York and in Munich with her cellist husband Kai Moser. Needs Votehttp://www.edithwiens.com/Edīte VjenaWiensЭдит Винс + +881441Pierre-André TaillardClassical clarinetist.Needs VoteM. TaillardPierre A. TaillardPierre-Andre TaillardPjērs Andrē TailārsМ. ТэйлардConcentus Musicus WienConcerto KölnHofkapelle StuttgartDie FreitagsakademieEnsemble Le Moment Baroque + +881443Wolfram ChristGerman violist and conductor. He was born 1955 in Hachenburg, Germany.Needs Votehttps://www.wolframchrist.de/ChristVolframs HristsВотльфрам ХристBerliner PhilharmonikerDeutsche BachsolistenLucerne Festival OrchestraOrchestra MozartBerliner Barock SolistenBundesjugendorchesterBerliner Solisten (2) + +881596Gianfranco RussoClassical string instrument playerNeeds VoteGianfranco RusseChominciamento Di GioiaVenice Baroque OrchestraEnsemble SeicentonovecentoOrchestra Barocca ItalianaI Musicali AffettiMusica Antiqua LatinaContrArco Consort + +881671Erkki TargoTenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881672Maret KüüraVocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881673Kalev KeerojaClassical bass vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881674Tiiu OtsingVocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881675Mikk ÜleojaEstonian tenor vocalist and chorus master, born January 2, 1970.Needs VoteEstonian Philharmonic Chamber ChoirVox Clamantis + +881676Tõnu TormisBass vocalist and bass guitarist, also a photographer. +Son of Lea and [a864864], born 1954.Needs Votehttps://et.wikipedia.org/wiki/T%C3%B5nu_TormisT. TormisТ. ТормисEstonian Philharmonic Chamber ChoirMagnetic BandOrnament (6) + +881678Karin SalumäeAlto vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881679Ene SalumäeOrganist, born in 1967 in Kuressaare, Estonia.Needs Votehttps://et.wikipedia.org/wiki/Ene_Salum%C3%A4ehttps://www.emic.ee/ene-salumae-estEne Salumae + +881680Kristiina UnderSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881681Kadri MittVocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881683Eha PärgSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881684Mati TuriMati TuriBorn 20 January 1968, Tartu, Estonia, is an Estonian tenor vocalist.Needs Votehttp://www.erpmusic.com/p_MatiTuri.htmhttp://et.wikipedia.org/wiki/Mati_TuriEstonian Philharmonic Chamber ChoirTallinn Baroque Ensemble + +881685Allan VurmaClassical bass vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881686Toivo KiviTenor vocalist.Needs VoteT. KiviEstonian Philharmonic Chamber Choir + +881687Raili JaansonSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881688Arvo AunTenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881689Evelin SaulVocalistNeeds VoteEstonian Philharmonic Chamber Choir + +881690Kai DarzinšVocalistNeeds VoteKai DarzinsEstonian Philharmonic Chamber Choir + +881691Tõnis TammBass vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881692Ranno LindeBass vocalist.Needs VoteRanno Eduard LindeRanno-Eduard LindeEstonian Philharmonic Chamber Choir + +881693Vilve HepnerClassical soprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +881713Marcus CreedBorn April 19, 1951 in Eastbourne, Sussex (South England), moved to Germany in 1976 and worked as a coach and chorusmaster at the Deutsche Oper Berlin, then as pianist and conductor with various ensembles in Berlin, as leader of the RIAS-Kammerchor from 1987 to 2003. He was appointed artistic director of the [a873298] in 2003. Since 1998, he is also Professor for choral conducting at the Hochschule für Musik Köln.Needs Votehttps://en.wikipedia.org/wiki/Marcus_Creedhttps://www.bach-cantatas.com/Bio/Creed-Marcus.htmM. CreedM.CreedMarkus CreedMarkuss KrīdsMarous CreedMartin CreedМаркус КредМаркус КридRIAS-KammerchorSWR Vokalensemble StuttgartVocalconsort Berlin + +881800Dalton BaldwinDalton Baldwin (born December 19, 1931, Summit, New Jersey, USA – died December 12, 2019) was an American pianist.Needs Votehttps://en.wikipedia.org/wiki/Dalton_BaldwinBaldwinD. BaldwinDalto Baldwinダルトン・ボールウィンダルトン・ボールドウィン + +881979Don Reed (2)American trombone player, best known for his work supporting [a=Stan Kenton].CorrectStan Kenton And His Orchestra + +882018Jon VickersJonathan Stewart VickersCanadian operatic tenor. He was born 29 October 1926 in Prince Albert, Saskatchewan, Canada and died 10 July 2015 in Ontario, Canada.Needs Votehttps://en.wikipedia.org/wiki/Jon_VickersJ. VickersJan VickersJohn VickersJohn Vickers, EtcJon VikersJon WickersVickersД. ВикерсДжон Викерсジョン・ヴィッカース + +882020Nicola RescignoAmerican conductor. He was born 28 May 1916 in New York City, New York, USA and died 4 August 2008 in Viterbo, Italy.Needs Votehttps://en.wikipedia.org/wiki/Nicola_RescignoN. RescignoNicholas RescignoNicola RescienoNicola ResignioNicole RescignoNicolo RescignoRescignoНикола Решиньо + +882024Alfredo KrausAlfredo Kraus TrujilloSpanish operatic tenor, born 24 Nov. 1927 in Las Palmas de Gran Canaria – died 10 Sept. 1999 in Madrid. +Austrian father and Spanish mother. Brother of baritone [a2382016]. Debuted in 1956. +Kraus came to be virtually synonymous with such lyric tenor roles as Werther, Faust, Don Ottavio (Don Giovanni), Nemorino, and Arturo. He was also known for his performances of Spanish music, notably many classics from the zarzuela repertoire, which he continued to perform live on stage in Spain until the end of his career, and many of which he recorded complete for EMI Spain as well as for his own label, [l470601]. + +Needs Votehttps://en.wikipedia.org/wiki/Alfredo_Kraushttps://musicbrainz.org/artist/07c766d0-7734-4574-ad5a-0798ae57ff5dA, KrausA. KrausAlfredo Kraus - FaustAlfredo KraussKrausKraussАльфредо Краус阿佛列多.克勞斯 + +882026Ernest BlancFrench operatic baritone, born 1 November 1923 in Sanary-sur-Mer, France and died 23 December 2010 in Entre-deux-Mers, France.CorrectBlancE. BlancErnst Blanc·Эрнест БланЭрнест БланкЭрнст Блан + +882345Tom FinucaneEnglish classical lutenist. Born 1955. Died August 3, 2002.Needs Votehttps://myspace.com/tomfinucanelute/https://www.last.fm/music/Tom+FinucaneAnthongy WayFinucaneThomas FinucaneNew London ConsortThe Academy Of Ancient MusicThe Consort Of MusickeLondon Pro Musica + +882348Andrew BurdenTenor vocalist.CorrectThe Monteverdi ChoirI Fagiolini + +882350Sarah GroserClassical viol playerNeeds VoteSGThe Consort Of MusickeRose Consort Of ViolsCharivari Agréable + +882352Hannelore De VaereHannelore DevaereBelgian harpist.Needs Votehttps://www.linkedin.com/in/hannelore-devaere-9389a919Hannelore DavaereHannelore DeVaereHannelore DevaereHannelore DvaereHennelore DevaereHuelgas-EnsembleThe Consort Of MusickeGabrieli PlayersEnsemble ElymaCapilla FlamencaThe Rare Fruits CouncilEnsemble DaedalusRomanesqueIl FestinoLux Beata + +882354Risa BrowderClassical violinist.Needs VoteRiza BrowderOrchestre Révolutionnaire Et RomantiqueLondon BaroqueThe Consort Of MusickeThe Taliesin OrchestraThe Purcell BandWashington Bach ConsortEx Cathedra Baroque OrchestraThe English Concert + +882355Henry WickhamTreble / Baritone vocalist.Needs VoteGabrieli ConsortThe New College Oxford ChoirThe SixteenRed ByrdThe Choir Of Christ Church CathedralI FagioliniGothic Voices (2)“West Side Story” 1993 Studio Cast, Voices Cast + +882358Richard Wyn-RobertsBritish countertenor / alto vocalist.Needs VoteRichard Wyn RobertsMagnificatThe Choir Of The King's ConsortThe Monteverdi ChoirI FagioliniRetrospect EnsembleChoir Of St. Margaret's, Westminster + +882717Carl Michael ZiehrerAustrian composer, born 2 May 1843 in Vienna, Austria and died 14 November 1922 in Vienna, Austria.Needs Votehttp://www.ziehrer.at/http://www.planet-vienna.com/Musik/Komponisten/Ziehrer/ziehrer.htmhttp://en.wikipedia.org/wiki/Karl_Michael_Ziehrerhttps://adp.library.ucsb.edu/names/103816C M. ZiehrerC. H. ZiehrerC. M ZiehrerC. M. ZiehrerC. M. ZIehrerC. M. ZicherC. M. ZichrerC. M. ZieherC. M. ZiehrerC. M. Ziehrer*C. M. ZiererC. M.ZiehrerC. ZiehrerC.-M. ZiehrerC.M. ZicherC.M. ZiehrerC.M. ZiehrererC.M.ZiehrerCarl ZiehrerCarl M. ZiehrerCarl Maria ZiehrerCarl ZiehrerCarl-Michael ZiehrerCarl. M. ZiehrerD.M.ZiehrerHofkapellmeister C. M. ZiehrerHofkapellmeister Carl Michael ZiehrerK. M. ZiehrerKarl M. ZiehrerKarl Michael ZiehrerKarl ZiehrerM. ZiehrerStraussZeihrerZieherZiehnerZiehrerZiehrereZiehrrerZiererЗирерК. ЦирерCarl Michael Ziehrer Und Sein Orchester + +882719Emanuel GeibelFranz Emanuel August von GeibelGerman poet and playwright. + +He was born 17 October 1815 in Lübeck, Germany and died 6 April 1884 in Lübeck, Germany. +Needs Votehttps://en.wikipedia.org/wiki/Emanuel_Geibelhttps://adp.library.ucsb.edu/names/104725E. GeibelE. GeidelE. M. GeibelE.GeibelEm. GeibelEmanuel GeibeEmanuel Geibel (After The Spanish)Emanuel GeibleEmanuel GeipelEmanuel Von GeibelEmanuel v. GeibelEmanuel von GeibelEmanuel von GiebelEmmanuel GeibelEmmanuel von GeibelF. GeibelGeibelGeibel, E.Immanuel GeibelVon GeibelW. GeibelЭ ГейбельЭ. ГайбелиЭ. Гайбель + +882721Max GilbertGilbert SmithBritish classical viola player, and teacher. Born 1912 - Died 1993. +Former member of the [a=London Symphony Orchestra] for seven years (1933-1939), being appointed Principal Violin the last two years.Needs VoteM. GilbertLondon Symphony OrchestraPhilharmonia OrchestraAmbrosian Players + +882724Clemens KraussClemens Heinrich KraussAustrian conductor and opera impresario (* 31 March 1893 in Vienna, Austro-Hungary; † 16 May 1954 in Mexico City, Mexico). He was married to [a=Viorica Ursuleac].Needs Votehttp://en.wikipedia.org/wiki/Clemens_Krausshttps://dx.doi.org/10.1553/0x0001d5d8C. KraussCl. KraussClemens CraussClemens KrausClemens KraußClement KraussClémens KraussGMD Prof. Clemens KraußKlemens KrausKlemens KraussKrausKraussProf. Clemens KraußProfessor Clemens KraußК. КраусКлеменс Краусクレメンス・クラウス + +882753Barbara WernerGerman mezzo-soprano, born in Würzburg, Germany.Needs Vote + +882754Jacob SlagterDutch conductor and (French) horn player, born 1958.Correcthttp://www.jacobslagter.com/Jakob SlagterConcertgebouworkestNoord Nederlands OrkestFodor Kwintet + +882755Jens WollenschlägerJens WollenschlägerGerman classical organist.Correcthttp://www.oerge.li/Jens WollenschägerJens Wollensläger + +882756Brandis QuartetBrandis QuartettGerman string quartet is based in Berlin and was founded in 1976.CorrectBrandis Quartet BerlinBrandis QuartettBrandis Quartett BerlinBrandis-QuartetBrandis-Quartet, BerlinBrandis-QuartettBrandis-Quartett BerlinBrandis-Quartett, BerlinCuarteto BrandisThomas BrandisWilfried StrehleWolfgang BoettcherPeter Brem + +882757Lodewijk ColletteDutch producer of classical recordings, music director for the NTR and Nationale Opera / Ballet and member of the Raad Voor Cultuur, Holland's main cultural advisory board to the government.Needs Votehttps://www.linkedin.com/in/lodewijk-collette-5a527b57Lodeweijk ColletteLodewijk ColetteLodewÿk ColetteLodweijk Collette + +882758La Petite BandeClassical Belgian music choir & orchestra, founded in 1972 by [a=Sigiswald Kuijken].Needs Votehttps://www.lapetitebande.be/https://en.wikipedia.org/wiki/La_Petite_BandeChor Und Orkester Der La Petite BandeChœur et Orchestre de la Petite BandeLa Pequeña BandaLa Petite Bande OrchestraLa Petite Bande Orchstra & ChorusLa Petite Bande et. al.Orchestra E Coro La Petite BandePetite Bandeラ・プティット・バンドAndy FawbertCrispian Steele-PerkinsPatrick BeaugiraudOswald Van OlmenRichard CheethamRobert KohnenJanine RubinlichtClaude MauryBart CoenMichiyo KondoChristoph DobmeierAnnelies CoeneTaka KitazatoMarcel PonseeleMartin Van Der ZeijstPieter CoenePaul Van Den BerghePhilippe MiqueuNicolette MoonenRyo TerakadoMyriam GeversGalina ZinchenkoWieland KuijkenAlison BuryBarthold KuijkenSigiswald KuijkenAnn VanlanckerFriedemann ImmerKu EbbingeJordi SavallPaul DombrechtRachel YakarAlda StuuropDanny Bond (2)Bruce HaynesJan van ElsackerRhoda PatrickJob BoswinkelSylvia BroekaertNele MintenIbo van IngenJan Stefan WimmerHildegard van OverstraetenRichte van der MeerAnthony WoodrowRuth HesselingStaas SwierstraDon SmithersEnrico GattiJan ReichowPeppie WiersmaSiegmund NimsgernMarie KuijkenMargaret UrquhartMarten BoekenRainer ZipperlingFrançois FernandezKonrad JunghänelDaniel Schreiber (2)Lucy van DaelPieter DhontWiel PeetersBob van AsperenMarléen ThiersJanneke van der MeerJos KoningsAnner BylsmaDirk SchortemeierMichael SchäfferPierre HantaïCatherine GirardGuya MartininiRoberto CrisafulliEmmanuel BalssaWouter MöllerAntoinette Van Den HomberghFrans R. BerkhoutMarie LeonhardtNicholas PapCharles ToetMarc VallonWim Ten HaveHidemi SuzukiChristophe CoinClaude WassmerMarc HantaïChristian Lange (2)Mihoko KimuraEric MathotGhislaine WautersHenriette BakkerRenée AllenLorenzo CoppolaJames MunroDanielle EtienneMira GlodeanuInka DöringBouke LettingaLidewij ScheifesColin LawsonSayuri YamagataIrmgard SchallerMariëtte HoltropHarry RiesMarianne KweksilberWim RoeradeRichard ListerFlorence MalgoireRobert ClaireMapje KeereweerDonna AgrellMarinette TroostDirk VerelstPierre De BoeckYann MirielSerge SaïttaEmilio MorenoChristophe FeronPiet DombrechtJan HuylebroeckBarbara KonradTanya TomkinsStephane LeysAlfredo BernardiniMaia SilbersteinThibaud RobinneLaura JeppesenKaori UemuraSiebe HenstraΓιάννης ΠαπαγιάννηςNatsumi WakamatsuPaul HerreraOfer FrenkelJane BoothRalph PeinkoferGilbert BezzinaAnette SichelschmidtGunther VandevenPeter MauruschatRené SchifferMika AkihaLuis Otavio SantosGéry CambierEwald DemeyereMaria FriesenhausenLuc BergéHansjürg LangeKlaus RehmArnold MehlIzumi SatohThomas Albert (2)Jens HamannMakoto AkatsuKeiko WatanabeGraham NicholsonMime YamahiroKaori TodaYukiko MurakamiDmitry BadiarovMutsumi OtsuKoji Takahashi (2)Marcus NiedermeyrFulvio BettiniDaniel DéhaisJoseph PettitHelen MacDougallFrank TheunsEmiliano RodolfiMartin SonneveldMichel LecoqDorothea JungmannNorbert LohmannFranz Müller-HeuserKlaus HeiderGiulio D'AlessioKatharina WulfWalter LexuttPeter ThorleyDenis MatonTom DevaereMaarten van WeverwijkAlain De RijckereJean Joo KimSara KuijkenIgor BettensRainer JohannsenJean-Paul BurgosHans LatourMarleen KuijkenMartin VijverJin KimJoël LahensPaul GoddéMarc BarbierPeter Van HeyghenElisabeth HermannsJan Willem Van Der WeyLudy VrijdagPiet Brummer (2)Jef GulinckPaul Van Der BemptUlrich LönsThomas DobmeierXavier Julien-La FerrièrePier Luigi FabrettiYeree SuhBlai JustoVinciane BaudhuinRainer ArndtThomas BaetéBenoit Vanden BemdenBaltazar ZunigaRachael BeeslyMarian MinnenBenoît DouchyAlessandro DenabianFiona PoupardKorneel BernoletSusanne Scholz (2)Ronan KernoaMichel Boulanger (2)Jens Weber (3)Ann CnopBenjamin AlardEva-Maria RöllYifen ChenSien HuybrechtsSören RichterRichard Walz (2)Stefan VockNorbert PflanzerCristobal UrrutiaJérôme PrincéMathieu LouxStephan ScherpeMarrie MooijEve FrançoisAnna GschwendÉdouard CatalanJesse SolwayNatalia ChahinAnne-Katrin SchenckMasanobu TakuraMario SarrechiaXun KimEmmanuel BaissaMarie-Paule Verlinde + +882759Derek HanAmerican classical pianist, born June 27, 1957 in Columbus, OH.CorrectDerek HahnДерек Ан + +882760Mark Brown (4)Bass vocalist, conductor, producer and engineer of classical releases. One of the founders and directors of the early music vocal ensemble [a=Pro Cantione Antiqua].Needs VoteAlber KarschM. BrownMarc BrownPro Cantione Antiqua + +882761Harmen de BoerDutch clarinetist, born 1954.Needs VoteNederlands Blazers EnsembleAmsterdam SinfoniettaFodor KwintetRadio Kamer Filharmonie + +882762Karl LeisterGerman clarinetist, born 15 June 1937 in Wilhelmshaven, Germany.Needs Votehttps://en.wikipedia.org/wiki/Karl_Leisterhttps://biographs.org/karl-leisterLeisterカール・ライスターBerliner PhilharmonikerEnsemble Wien-BerlinPhilharmonische Solisten BerlinBerliner Solisten (2)Trio Ecco (!) + +882763Choeur de Chambre de NamurFounded: 1987 - Namur, Belgium + +It was in 1987 that the "Centre de Chant Choral de la Communauté française de Belgique" (Centre for choral singing of the Belgian French-speaking community) founded the Choeur de Chambre de Namur (= CCN; Namur Chamber Choir, the community's official vocal ensemble). +Different spelling: +Chœur De Chambre De NamurNeeds Votehttps://www.cavema.be/https://www.facebook.com/choeurchambrenamur/Choeur De Chambre De Namur - Les SolistesChoeur Opéra De NamurChorus And Orchestra Of NamurChœur De Chamber De NamurChœur De Chambre De NamurChœur de Chamber de NamurChœur de Chambre De NamurChœur de Chambre de NamurChœur de chambre de NamurLes Choeurs De NamurNamur Chamber ChoirHarry van der KampPieter CoeneMarie KuijkenPaulin BündgenJean-Yves RavouxFlorence RecanzoneLuciana ManciniBenoît GiauxÉric FrançoisCaroline WeynantsVéronique GossetHans Jörg MammelFrère Jean-Christophe ClairNicolas BauchauJean-Yves GuerryArnaud MarzoratiRenaud TripathiFrançois-Nicolas GeslotMélodie RuvioMatteo BellottoAnna SimboliPhilippe FroeligerLuc TerrieuxAmélie RengletMiguel BernalSerge GoubioudBenoît PorcherotNicolas MaireClaude MassozBéatrice GobinHervé MignonMikiko SuzukiThomas van EssenAnne-Hélène MoensAurore BucherVirginie PochonElena PozhidaevaPhilippe FavetteArnaud RaffarinDominique BonnetainCamille PoulMarie-Noëlle de CallataÿBernard CoulonFrançoise BronchainMichel LoncinCarl SansoneSandra PiauBernard DoumainEtienne DebaisieuxFabienne PétrisseChristine LejeuneBernard GuiotDanièle BodsonBernard DemaetFlorence DoyenEls JanssensThierry LequenneJean-Marie MarchalNinka StulemeijerThibaut LenaertsMyriam SossonHelen CassanoRobert BucklandOlivier BertenLionel MeunierBertrand DelvauxPascal GourgandAndreas HallingEls CrommenJonathan SpicherVincent LesageSéverine DelforgeBruno CrabbéVeerle LindemansCécile CotePhilippe CrespinMoshe HaasMarcio Soares-HolandaSalvo VitaleMathilde SevrinJulie CalbeteCecil GalloisFrédéric BourdinStephen CollardelleJavier Jiménez CuevasVinciane SoilleAlice BorcianiTiago MotaCatherine NapoliCyprile MeierYann RollandGabriel JublinLucía Martín CartónLaia FrigoléAnne MaugardRaphaël MasLieve Van LanckerAldo PlatteauJacques DekoninckJulie Vallée GendreLieselot De WildeMarie JennesGrantley McDonaldTiago Oliveira (4)Marine Lafdal-FrancLeandro MarziottePeter De LaurentiisMarc ManodrittaAurélie MoreelsOlivier OpdebeeckCamillo AngaritaTassis ChristoyannisAnne-Fleur InizanAurélie FranckMarcio SoarèsMarie-Paule FaytRiccardo PisaniJérôme VavasseurMatthieu Le LevreurMaxime MelnikEstelle LefortCamille HubertGuillaume HouckePierre DerhetFrederico ProjectoKamil Ben Hsain LachiriPierre BoudevilleCéline RémyAnicet CastelJosquin GestLionel DesmeulesSergio LaduGovaart HachéGrégory DecerfJean BallereauWei Lian HuangGwendoline BlondeelMarc ScaramozzinoJennifer BorghiMarine Chaboud-CrouzazElke Janssens (2)Julie VercauterenAndrea GavagninBarbara MenierSamuel NamotteZoé PireauxJean DelobelMaria Nunez de FatimaMariana MoldaoVincent De SoomerLogan Lopez GonzalezCindy Favre-VictoireFadrique JogobaBénédicte FadeuxSarah VerhoevenAugustin LaudetDamien FerranteMélanie RihouxKenny FerreiraMathieu MontagneFrançois HéraudLucie MinaudierMaud Bessard-MorandasVlad CrosmanArnaud Le DûPauline De LannoyMaría Gil MuñozCaroline de MahieuFlorine GodLouise Thomas (7)Maxence BilliemazVincent Mahiat + +882764Les Violons du RoyCanadian chamber orchestra based in Quebec City.Needs Votehttps://www.violonsduroy.com/Chambristes Des Violons Du RoyLes Violins Du RoyLes Violons du Roy, QuébecMarc GrauwelsCarla AntounJulie TriquetMartin CarpentierAlain TrudelPascale GagnonBenoît LoiselleMichelle SetoBernard LabadieGiselle HerbertGuy CarmichaelWilma HosFarran JamesSteven DannGeneviève BeaudryManon LafranceAndrée AzarBridget MacRaeEric PaetkauLaura WilcoxGuy BernardStéphane LauzonClaudine GiguèreJudith ChamberlandNicole TrotierSylvain BergeronMarie GrenonBernard GuayNancy OehlerRichard ParéJulie CossetteMaurice StegerOlivier ThouinSophie LarivièreGeneviève GilardeauAndré MorinMathieu LussierLise MilletPierre-Alain BouvretteDiane LacelleBenjamin RaymondNoëlla BouchardClaudine St-ArnauldJulia HarguindeyMaud LangloisVéronique VychytilBertrand RobinDominic GirardJean-Louis BlouinPeter ShakletonMarie-Claude PerronNathalie GiguèrePascale GiguèreJean-Michel MaloufAnnie MorrierAngélique DuguayLouis-Pierre BergeronLouis-Philippe MarsolaisJean-Pierre NoiseuxStephanie VialJulie-Anne Ferland-DorletLawrence ChargePierre BéginRaphaël DubéRaphaël McNabneyMarie-Annick CaronKarine RousseauKirsten ZanderIsaac ChalkCaroline Tremblay (2)Marianne BoiesMarjorie TremblayNatalie MichaudCaroline Dubé + +882765Huub ClaessensDutch bass & baritone vocalist, born in Ulestraten, Holland.Needs VoteHubert Claessens + +882768Thomas BrandisGerman violinist, born 23 June 1935 in Hamburg, Germany – died 30 March 2017. Concertmaster of the [a=Berliner Philharmoniker] from 1962 to 1983.Needs Votehttps://en.wikipedia.org/wiki/Thomas_Brandishttps://de.wikipedia.org/wiki/Thomas_BrandisBrandisT. BrandisTh. BrandisTomas BrandisΤόμας ΜπράντιςТомас Брандисトマス・ブランディスBerliner PhilharmonikerBrandis QuartetBach-Orchester HamburgPhilharmonische Solisten BerlinCamerata Instrumentale Der Hamburger Telemann-Gesellschaft + +882769Andreas GlattGerman flutebuilder, engineer, producer and co-founder of the record label [l=Accent], born 10 November 1945 in Cello, Germany and died 4 May 2013 in Brussels, Belgium. He was married to [a898397].CorrectA. Glatt + +882771Herman JeurissenDutch classical hornist.Needs Votehttp://www.hermanjeurissen.nl/H. JeurissenHermann JeurissenHermen JeurissenJeurissenDetmolder Hornquartett + +882772Ulka GonriakCorrect + +882773Pieter van WinkelDutch pianist and founder of the classical music record label [l89052], he is married to pianist [a882804].CorrectWinkelピーター・ヴァン・ウィンケル + +882774Florian ZwiauerClassical violinist.Needs Votehttp://florianzwiauer.com/F. ZwiauerWiener SymphonikerFranz Schubert Quartet Of Vienna + +882775Christof FischesserGerman operatic bass vocalsNeeds Votehttp://www.fischesser.de/ + +882776Yves SaelensBelgian Tenor vocalistNeeds Votehttp://www.yvessaelens.com/SaelensY. Saelens + +882777Vincent StadlmairClassical cellist, born in 1959.CorrectFranz Schubert Quartet Of ViennaAalborg Symfoniorkester + +882778Marie KuijkenBelgian pianist and soprano.Needs VoteLa Petite BandeChoeur de Chambre de Namur + +882779Olga NodelViolinist, born 30 November 1966 in Lviv, Ukraine.Needs VoteKurpfälzisches Kammerorchester MannheimCorda Quartett + +882780Philip DefrancqBelgian tenor vocalistNeeds Vote + +882781Luc DewezBelgian classical cellist.Needs VoteEnsemble PiacevoleTrio Arthur GrumiauxTrio Amati + +882782Bernadette VerhagenDutch classical viola player.Needs Votehttp://www.bernadetteverhagen.nl/nl/home/https://www.linkedin.com/in/violabernadettehttps://nl-nl.facebook.com/bernadette.verhagen.1Asko EnsembleAnima EternaNieuw Sinfonietta AmsterdamDe Nederlandse BachverenigingResidentie OrkestHolland Baroque SocietyAsko|SchönbergLe Nuove MusicheVan Swieten Society + +882784Alexander SchneiderAvrom SznejderAlexander "Sasha" Schneider was a classical violinist and conductor, born October 21, 1908 in Vilna, Lithuania; died February 2, 1993 in New York, USA. +Younger brother of [a1417484], he was married to [a=Geraldine Page] from 1954 to 1957.Needs Votehttp://www.sasha-schneider.com/https://adp.library.ucsb.edu/names/103373https://en.wikipedia.org/wiki/Alexander_SchneiderA. SchneiderAlex SchneiderAlexandre SchneiderSchneiderアレクサンダー・シュナイダーシュナイダーBudapest String QuartetMarlboro Festival OctetPrades Festival OrchestraDumbarton Oaks Chamber OrchestraThe Schneider QuartetAlexander Schneider Chamber EnsembleThe New York QuartetAlexander Schneider String EnsembleAlexander Schneider Quintet + +882785Gil SharonRomanian-born Dutch violinist. In 1971, he won first prize at the International Emily Anderson Violin Competition in London. +Sharon is currently first concertmaster of the Symphony Orchestra of Maastricht and has been guest concertmaster of the Barcelona Symphony Orchestra and the Israel Chamber Orchestra. +He is also the founder of Amati Chamber Orchestra. +Needs Votehttp://fineartsquartet.com/gil-sharonAmati Chamber OrchestraSharon QuartetAmati String TrioAmati Chamber EnsembleThe Fine Arts Quartet + +882787Peter ArtsDutch sound engineer from Rotterdam, owner of Arts Music Recording, specialised in mobile recording.Correcthttp://www.artsmusic.nl/Arts Music Recording + +882788Chamber Choir of EuropeThe Chamber Choir of Europe was founded as the Nordic Chamber Choir by chorus builder Hanno Kreft. Finding its voice under choral conductor [a=Nicol Matt], the Chamber Choir of Europe began to clean up on the concert circuit -- the name "Chamber Choir of Europe" change became permanent in April 2002. Correcthttp://www.chamber-choir-of-europe.de/Chamber Choir Of EuropeChœur De Chambre D'EuropeNordic Chamber ChoirBirgit MeyerDaniel SansDaniel Schreiber (2)Marietta FischesserManfred BittnerEleonore MajerKen GouldChristian SpechtSee-Hyoung ChangAnne-Kathrin HerzogTina ReicheRolf EhlersChristian DahmNatalie KoppPhilip NiederbergerVeronika David JensovskaJoachim RoeslerElke UllrichAlexandra PaulmichlGabriele HierdeisJulian PrégardienHeike HeilmannSandra BernhardtStephan HessTanja BauerMarcus StäblerDan Martin (5)Beate Feuerstein-WeberJörg M. KrauseEibe MöhlmannJoachim HerrmannFelix Schuler-Meybier + +882789Paul Freeman (3)Paul Douglas FreemanPaul Freeman (b. 2 January 1936 in Richmond, VA; d. 22 July 2015 in Victoria, BC, Canada) was an American conductor and composer, former music director and chief conductor of the [a686218]. In 1987, Freeman co-founded [a=Chicago Sinfonietta] and served as a principal conductor and music director until his retirement in 2011.Needs Votehttps://en.wikipedia.org/wiki/Paul_Freeman_(conductor)Dr. Paul FreemanP. FreemanПол ФриманПол Фримен + +882790Antony HodgsonProducer and liner notes on classical recordings.Needs VoteAnthony HodgsonTony Hodgson + +882791Ad VinkEngineer.Needs Vote + +882792André DefossezBelgian producer and engineer of classical recordings. From 1976 to 1993 sound recording engineer of [l210662]. At present chef of [l104833]'s channel Musiq'3.Correcthttps://be.linkedin.com/in/andr%C3%A9-defossez-36a0b632A. DefossezAndre DefossezAndré DeFossezAndré Defosse + +882793Valentina FarcasValentina FarcasSoprano vocalistCorrectValentina Farkaș + +882794Wilfried StrehleGerman violist, born 1947 in Schorndorf, Germany. He was a member of the [a260744] from 1971 to 2013.CorrectBerliner PhilharmonikerRundfunk-Sinfonieorchester BerlinBrandis QuartetPhilharmonisches Oktett Berlin + +882795Thomas PfeifferClassical vocalist (Bass-Baritone).CorrectPfeiffer + +882796Wolfgang BoettcherGerman classical cellist and academic teacher. +Born 30 January 1935 in Berlin, Germany. +Died 24 February 2021 ibid. +Boettcher was principal cellist of the Berlin Philharmonic, and a founding member of The 12 Cellists of the Berlin Philharmonic. From 1976, he was professor at the Hochschule für Musik Berlin. From 1986 to 1992 he was artistic director of the Sommerliche Musiktage Hitzacker chamber music festival.Needs Votehttps://de.wikipedia.org/wiki/Wolfgang_Boettcher_(Musiker)https://en.wikipedia.org/wiki/Wolfgang_BoettcherProf. W. BoetticherW. BoettcherWolfgang BoettchenWolfgang BoetticherWolfgang BöttcherВольфганг БёттхерBerliner PhilharmonikerBrandis QuartetKurpfälzisches Kammerorchester MannheimDie 12 Cellisten Der Berliner PhilharmonikerPhilharmonische Solisten BerlinDas Leonhardt-Quartett + +882799Annemarie KremerDutch operatic soprano.Correcthttp://www.annemariekremer.nl/Kremer + +882800Lothar KochGerman classical oboist, born 1 July 1935, died 16 March 2003.CorrectKochL. KochLothar KockLother KochBerliner PhilharmonikerStuttgarter KammerorchesterPhilharmonische Solisten BerlinCamerata Instrumentale Der Hamburger Telemann-Gesellschaft + +882801Werner van MechelenBelgian Bass & Baritone vocalistNeeds Votehttp://www.wernervanmechelen.eu/Werner Van MechelenIl Fondamento + +882803Pamela HeuvelmansDutch operatic soprano.Correct + +882804Klára WürtzHungarian classical pianist, born 1965 in Budapest. She's specialized in the classical and romantic repertoire.Needs Votehttps://en.wikipedia.org/wiki/Klára_WürtzKlára WurtzKlaviertrio Amsterdam + +882805Reinhard GellerGerman recording engineer, producer and owner of the recording studio "Die Tonaufnahme" in Zellertal, Germany.Needs Votehttp://www.die-tonaufnahme.de/index.htmlhttp://der-audiomaster.de./index.htmlDipl.-Tonmeister Reinhard GellerR. GellerReinhart Geller + +882806Lev MarkizLev MarkizLev Markiz (in Russian: Лев Маркиз) was a Russian conductor and violinist (born 1 Nov 1930 in Moscow; died 4 Apr 2023 in The Hague), who had been living in The Netherlands since 1981. Also known as Lew Markis. Needs Votehttp://nl.wikipedia.org/wiki/Lev_Markizhttp://ru.wikipedia.org/wiki/%D0%9C%D0%B0%D1%80%D0%BA%D0%B8%D0%B7,_%D0%9B%D0%B5%D0%B2_%D0%98%D0%BE%D1%81%D0%B8%D1%84%D0%BE%D0%B2%D0%B8%D1%87https://youtu.be/Vhv7ctmPrOs?si=pPS9tTkzkG5dA90Ihttps://www.svoboda.org/a/umer-emigrirovavshiy-iz-sssr-niderlandskiy-dirizhyor-lev-markiz/32350499.htmlhttps://muzlifemagazine.ru/vse-yeto-bylo-v-drugoy-zhizni/L. MarkizLev MarkiezLew MarkisЛ. МаркизЛ.МаркизЛев МаркизЛев Маркиз, дирижер + +882807Jean-Guy DevienneCorrect + +882808Béatrice CramoixClasscal soprano vocalistNeeds VoteA Sei Voci + +882809Nicol MattGerman conductor, born 1970 in St. Georgen, Germany. Founder of [a=Chamber Choir Of Europe] in 2002.Correcthttp://www.nicolmatt.comMattStuttgarter KammerorchesterAmadeus-Chor + +882811Bernard LabadieCanadian conductor and arranger. He was born 27 March 1963 in Québec, Canada.Needs Votehttps://www.bach-cantatas.com/Bio/Labadie-Bernard.htmhttps://en.wikipedia.org/wiki/Bernard_LabadieB. LabadieLabadieLes Violons du Roy + +882812Daniel SansDaniel SansClassical tenor.Correcthttp://www.daniel-sans.de/SansChamber Choir of Europe + +882813Helge RosenkranzClassical violinist.CorrectH. RosenkranzKlack! Klack!Franz Schubert Quartet Of Vienna + +882814Hartmut PascherClassical viola player.Needs VoteFranz Schubert Quartet Of ViennaEnsemble 20. Jahrhundert + +882815Yuri GandelsmanRussian-born classical violist.Correcthttps://www.music.msu.edu/faculty/profile/yurihttps://katarinagurska.com/profesor/yuri-gandelsman/Yuri GandelmanЮрий ГандельсманAmati Chamber OrchestraThe Fine Arts Quartet + +882816Patrizia BiccirePatrizia BiccirèItalian operatic soprano, born in Porto San Giorgio, Italy.Correcthttp://www.patrizia-biccire.com/Home.htmlBiccirePatricia BiccirePatrizia Bicciré + +882817Kurpfälzisches Kammerorchester MannheimKurpfälzisches KammerorchesterThe Kurpfälzisches Kammerorchester is a German chamber orchestra based in Mannheim. It was founded in 1952 by [a=Eugen Bodart].Needs Votehttps://chamber-orchestra-mannheim.com/Chamber Orchestra MannheimDas Kurpfälzische Kammer-OrchesterDas Kurpfälzische KammerorchesterDas Kürpfälzische KammerorchesterDas Mannheimer Kammer-OrchesterKammerorchester MannheimKammerorchester mannheimKammerphilharmonie MannheimKirpfalz Chamber Orchestra Ludwigshafen MannheimKurpf. KammerorchesterKurpfalz Chamber OrchestraKurpfalz Chamber Orchestra Ludwigshafen MannheimKurpfalz Chamber Orchestra, MannheimKurpfalzisches KammerorchesterKurpfälz KammerorchesterKurpfälz. KammerorchesterKurpfälzer KammerorchesterKurpfälzisches Chamber OrchestraKurpfälzisches KOKurpfälzisches Kammer - OrchesterKurpfälzisches Kammer-OrchesterKurpfälzisches KammerorchesterKurpfälzisches Kammerorchester Ludwigshafen /MannheimKurpfälzisches Kammerorchester Ludwigshafen/MannheimMannheim KammerorchesterMannheim Kurpfälzische Chamber OrchestraMannheimer KammerorchesterOrchestra Da Camera Del PalatinatoOrchestra Da Camera Kurpfälz*Orquesta De Camara Del PalatinadoThe Kurpfalzische Chamber OrchestraThe Kurpfälzische Chamber OrchestraThe Mannheim Chamber OrchestraThe Mannheim Chamber PlayersKarlheinz MayerWolfgang HofmannOlga NodelWolfgang BoettcherSilke AichhornKenji TamiyaOtto SauterFranz WagnermeyerHanno HaagHans-Peter HofmannChristoph Eberle (3)Margit RingleAkemi HasegawaDarius DurczokIzabela Wiza-KochannMarie-Denise HeinenRobert Korn (3)Wolfgang GroschAlexis ScharffNele LamersdorfChristian Schindler (2)Marian GorskiRoland BierwaldDiethard LaxaEdo FlickerEduard SperlingMark Lambert (10)Michael GudkinJaroslaw Balcer + +882818Ronald KartenDutch bassoon player.Needs VoteNederlands Blazers EnsembleConcertgebouworkestNieuw Sinfonietta AmsterdamFodor Kwintet + +882819Martin WöhrGerman sound engineer, from 1968 to 1990 he produced classical recordings for the [a639838], now is responsible for their radio studios.CorrectM. WöhrBayerischer Rundfunk + +882820Eduardo MarturetVenezuelan conductor and composer, born 1953 in Caracas, Venezuela.Needs Votehttp://www.marturet.com/https://en.wikipedia.org/wiki/Eduardo_MarturetChef d'orchestre : Eduardo MarturetE. A. Marturet MachadoE.A. Marturet MachadoE.A./Marturet MachadoЭдуардо Мартурет + +882822Giselle HerbertFrench harpist.Needs VoteGisèlle HerbertHerbertLes Violons du Roy + +882823Jakob HändelProducer, recording supervisor and engineer of classical recordings.Correcthttp://www.classicaudio.de/Jacob HändelJakob HandlJakop Händel + +882824Nieuw Sinfonietta AmsterdamDutch chamber orchestra founded in 1988 with [a882806] as its first artistic director. In 1995 [a1562006] became their concertmaster followed by her appointment as artistic director in 2003. As of that season the orchestra changed its name to [a1152444] and became a conductor-less orchestra, only inviting one if needed for certain projects. + +[b]Note[/b]: [a882824] and [a1152444] are one and the same orchestra linked through the Alias function. When entering releases or credits please use the name as printed on release. +Needs VoteNieuw SinfoniettaNieuw Synfonietta AmsterdamAmsterdam SinfoniettaAndre HeuvelmanPeter MasseursHarrie StarreveldPeter NijsJulia JowettMichiel WeidnerDoris HochscheidPete Saunders (2)Petra GriffioenLiesbeth SteffensErnst GrapperhausGiles FrancisRuben SanderseJosje Ter HaarJan Willem Van Der HamRozemarie HeggenArjan TienCarla BosOliver BoekhoornAlida SchatDerk LottmanMarie-José SchrijnerElisabeth SmaltPeter BruntEelco BeinemaIlona de GrootHans DullaertJutta MorgensternSusanne DegerforsArnold MarinissenSebastiaan Van VuchtJan HarshagenMarieke SchutSusanne van ElsEvert WeidnerHans WoudenbergMargreet BongersHeleen HulstPeppie WiersmaAlban WeslyErik WinkelmannMichael KlierBernadette VerhagenRonald KartenMarja BonFrank SteeghsArvo LeiburAnna McMichaelFranc PolmanDymphna van DooremaalNiko RavenstijnNicky SweeneyMargarete AdorfJan InsingerMarieke De BruijnJacqueline DekkerAlbert BrüggenKoen SchoutenNonna KnuuttilaTanya TomkinsRene OussorenCandida ThompsonEleonore PameijerClaire HuydtsMaarten MostertJos VerspagenMartijn Vink (2)Gertjan LootJelte AlthuisKoenraad HofmanÖrzse AdamKaren Segal (2)Suzanne HuynenEls VreugdenhilFrank De Groot (2)Jasper de WaalChris DuindamFrank Van Den Brink (2)Maarten VeezeNoëlle ProbstLydia ForbesAndré KerverErnest RomboutHebe MensingaDeclan DalyMasha IakovlevaGerard van AndelDerck LittelHerman DraaismaHelma LeenhoutsDaniel RaiskinNicoline van SantenKaren McConemyLiesbeth NiestenFrances ThéAljona TsoiEva MalmbomAnneke HogenstijnBrigitte KraamwinkelClara JamesGuido Müller (2)Liora Ish-HurwitzBarbara CiannameaWalter van EgeraatMarinus KomstEls GoossensMyrte van WesteropJozef SzafranskiHarry VorselenIngrid NissenEllen VergunstNikola VasiljevLisa DomnischSergei DovgalioukFokke van HeelManja SmitsAnne Søe HansenInki VargaKerstin HoelenMirjam MichelJulie Barnes (3)Ward AssmannRalph AllenDiana MorrisDorine SchadeRemko KraamwinkelGerrie RodenhuisJantien KassiesErik SpaepenWendy LimbertieIoana GuenovaEileen McEwanPeter Verduyn LunelMirjam SteymansMichiel EekhofMasha FerschtmanSatu VaananenMarjolein KnavenAlexej PevznerChristian Höfer (2)Arianne In 't VeltNelleke ScholtenErika EngegardIngrid NiessenBaard Winther AndersenEric Peters (9)Roel SternRon de HaasAlexei DiorditsaRichard SoudantOscar RamspekHans ZaalEric van Reenen + +882825Peter-Lukas GrafPeter-Lukas GrafSwiss flutist and conductor, born 5th January 1929 in Zürich. Death announced 4 January 2026. He was taught to play by André Jaunet (Zurich) and in Paris by Marcel Moyse and Roger Cortet. He was awarded first prize as flautist and the Conductor's Diploma at the Concervatoire National de Paris. In 1953, he received first prize as flautist at the International Music Contest in Munich; in 1958, the Bablock Prize of the H. Cohan International Music Awards, London. +From 1951 until 1957 he was solo flautist in the Winterthur City Orchestra; from 1961 until 1966 opera conductor at the City Theatre in Lucerne. Since 1973 ha has taught at the Basel Music Academiy. He has held concerts as soloist and guest conductor throughout Europe, South America, Israel, Australia, and Japan.Needs Votehttp://www.peterlukasgraf.ch/https://de.wikipedia.org/wiki/Peter-Lukas_Grafhttps://en.wikipedia.org/wiki/Peter-Lukas_Grafhttps://moto-perpetuo.com/peter-lukas-graf-dies-swiss-flutist/GrafP.L. GrafP.L.G.Peter LukasPeter Lukas GrafPeter-Lukas Graf, FlöteMünchener Bach-OrchesterBachcollegium StuttgartWinterthur Symphony Orchestra + +882826Peter BremPeter Brem (born 1951 in Munich, Germany) is a classical violinist. He was a member of the [a260744] from 1970 to 2016.Needs VotePeter BrehmPeter BrennBerliner PhilharmonikerBrandis QuartetPhilharmonische Geigen Berlin + +882827Bart van OortDutch classical piano & fortepiano instrumentalist (born June 6, 1959).Needs Votehttp://www.bartvanoort.nl/https://en.wikipedia.org/wiki/Bart_van_OortVan Swieten TrioVan Swieten Society + +882828Florian HeyerickBelgian flutist, harpsichordist and conductor. He was born 31 August 1958 in Gent, Belgium. His is the founder of vocal ensemble [a=Ex Tempore].Needs Votehttp://www.bach-cantatas.com/Bio/Ex-Tempore.htmhttps://de.wikipedia.org/wiki/Florian_HeyerickFlorian HeiryckFlorian HeyercikFlorian HeyerinkFlorian HeyrickEx TemporeRicercar ConsortSteven Verwee En GroepKirchheimer BachConsort + +882829Giorgio MereuCorrect + +882839Sidney EllisonClassical trumpet and cornet player, trumpet teacher, and professor of conducting. +He was a member of the [a=London Symphony Orchestra] (1957-1961) and 4th trumpet in the [a=London Philharmonic Orchestra]. Trumpet teacher and professor of conducting at the [l527847].Needs Votehttps://open.spotify.com/artist/6Y7dq5UcwQKmd3tCL8t9AwLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraPhilip Jones Brass EnsemblePhilomusica Of London + +882840Dennis Clift(British?) trumpet & cornet player, conductor, and educator. +Principal Trumpet with the [a=London Philharmonic Orchestra] (1946-1956) and the [a=London Symphony Orchestra] (1956-1959).Needs Votehttps://music.apple.com/th/artist/dennis-clift/632982204Denis CliftLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraPhilomusica Of LondonBath Festival Chamber OrchestraBath Festival OrchestraLondon Baroque EnsembleLondon Bach Ensemble + +882841Bernard RichardsClassical violoncello (or 'cello, as often abbreviated) player.Needs VoteEnglish Chamber OrchestraPhilomusica Of LondonLondon Harpsichord EnsembleThe Boyd Neel String OrchestraBath Festival OrchestraRichards Piano Quartet + +882842Cecil AronowitzSouth African-born British viola player, and teacher. Born 4 March 1916 in King William's Town, Cape Province, Union of South Africa - Died 7 September 1978 in Ipswich, Suffolk, England, UK. +He studied violin at the [l290263]. After World War II, he switched to the viola and joined the [a=London Symphony Orchestra] (1948-1949). In spring 1949, he joined the violas of the [a=London Philharmonic Orchestra]. In 1950, he co-founded the [a=Melos Ensemble Of London] and was the foup's violist for decades. He played & recorded with [a=The Pro Arte Piano Quartet]. He was the Principal Viola of the [a=Goldsbrough Orchestra]. He also appeared at the Aldeburgh Festival every year from 1949 until his death in 1978. At Aldeburgh, he was a soloist, chamber musician, and leader of the violas in [a=The English Opera Group]. He taught viola and chamber music at the Royal College of Music for 25 years, then, in 1973, he became the first Head of Strings at the newly formed [l=Royal Northern College Of Music] in Manchester. +He was married to the pianist [a=Nicola Grunberg]. +Needs Votehttps://www.youtube.com/channel/UCt9eBGhfyy5y2w0zjG9u6AQhttps://open.spotify.com/artist/01XdKr0ASnvtev6y4AvsY5https://music.apple.com/us/artist/cecil-aronowitz/4561268https://en.wikipedia.org/wiki/Cecil_Aronowitzhttps://musicianbio.org/cecil-aronowitz/https://www.britishviolasociety.co.uk/cecil-aronowitz-reminiscences/https://web.archive.org/web/20080828054447/http://www.imageandmusic.co.uk/cecilaronowitz/biography.htmhttps://www.imdb.com/name/nm7539429/bioAronowitzC. AronowitzCecil AronovitzСесил Ароновицセシル・アロノヴィッツLondon Symphony OrchestraLondon Philharmonic OrchestraEnglish Chamber OrchestraPhilomusica Of LondonMelos Ensemble Of LondonThe English Opera GroupGoldsbrough OrchestraCremona String QuartetBath Festival OrchestraThe Pro Arte Piano Quartet + +882846Carl PiniCarl Pini (2 January 1934 - 17 October 2021) was a British-Australian violinist, conductor and teacher.Needs VoteCaral PiniEnglish Chamber OrchestraPhilharmonia OrchestraLondon String QuartetMelbourne Symphony OrchestraPhilomusica Of LondonAustralian Chamber OrchestraThe Sydney String QuartetLondon Bach EnsembleCarl Pini Quartet + +882847Rosemary GreenBritish violistNeeds VoteEnglish Chamber Orchestra + +882852James ChristieBritish classical cellist. +Former member of the [url=https://www.discogs.com/artist/2099099-Peter-Gibbs-2]Peter Gibbs String Quartet[/url] and the [a=London Symphony Orchestra] (1954-1957).Needs VoteJimmyLondon Symphony OrchestraNew Philharmonia OrchestraNew Philharmonia Chamber OrchestraThe Virtuosi Of England + +882854Peter BeavanClassical cellist.Needs Votehttps://www.the-paulmccartney-project.com/artist/peter-beavan/Philharmonia OrchestraNew Philharmonia Chamber OrchestraAccademia Monteverdiana + +882856Bernard Davis (2)Classical viola player.Needs VoteB. DavisBernhard DavisThe Armada OrchestraPhilharmonia OrchestraNew Philharmonia Chamber OrchestraLondon Harpsichord Ensemble + +882857Norman Jones (2)UK classical cellist. Born in 1921. +He was a member of the [a=London Symphony Orchestra] (1959-1964).Needs Votehttps://www.the-paulmccartney-project.com/artist/norman-jones/N. JonesНорман ДжоунсLondon Symphony OrchestraThe Alan Tew OrchestraNew Philharmonia Chamber OrchestraThe Little Orchestra Of LondonRobert Farnon And His OrchestraLeslie Jones And His Orchestra Of LondonPhilharmonia String QuartetThe Element QuartetMembers Of The Little Orchestra Of London + +882858Herbert DownesHerbert James DownesEnglish viola player. Born: 15th July 1909 Walsall, Staffordshire, England, UK. - Died: 21st December 2004. +In 1940, he moved to the [a=BBC Scottish Symphony Orchestra] in Glasgow and thence to the [a=Royal Liverpool Philharmonic Orchestra], Britain's finest wartime orchestra, as principal viola. Founding member and Principal Viola of the [a=Philharmonia Orchestra]/[a=New Philharmonia Orchestra] from 1945 to 1974. In the 1940s, he was a member of the [a=London Symphony Orchestra]. +Uncle of [a=Andrew Downes (2)].Needs Votehttps://open.spotify.com/artist/1RZRi4TGnKDuTpolMIYMljhttps://music.apple.com/sg/artist/herbert-downes/129308132https://www.andrewdownes.com/Andrew-Downes-Uncle-Violist-Herbert-Downes.htmlhttps://www.theguardian.com/news/2005/jan/26/guardianobituaries.artsobituarieshttps://www.thetimes.co.uk/article/herbert-downes-cfhfk62dsgjHerbert DownsLondon Symphony OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraBBC Scottish Symphony OrchestraNew Philharmonia Chamber OrchestraRoyal Liverpool Philharmonic OrchestraPrometheus EnsemblePhilharmonia String Quartet + +882911Dick ShermanRichard Anthony ShermanJazz trumpeter +b. November 13, 1927 in New York City, NY. +d. October 1974 +Needs VoteD. ShermanD.SherrmanShermanWoody Herman And His OrchestraCharlie Barnet And His OrchestraClaude Thornhill And His OrchestraElliot Lawrence And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdGene Quill And His QuintetGene Quill-Dick Sherman Quintet + +883130Josef PacewiczClassical clarinetist. +Performer for the [a627128] since 1979. +Needs VotePacewiczRoyal Scottish National OrchestraScottish National Orchestra Wind Ensemble + +883257Édouard LaloÉdouard-Victoire-Antoine LaloFrench violinist and composer, born on January 27, 1823, in Lille; died on April 22, 1892 in Paris. +Lalo is appreciated for the richness of his orchestration and for his original melodic invention, supported by a rich harmonic structure of a romantic style. +In his "Symphonie Espagnole" for violin and orchestra, which has become a cornerstone of virtuoso concertism, the melog and popular Iberian rhythms are reinterpreted with undoubted personality and creativity.Needs Votehttps://en.wikipedia.org/wiki/%C3%89douard_Lalohttps://www.britannica.com/biography/Edouard-Victor-Antoine-LaloB.LaloE. LaloEd. LaloEdouard LaloEdouardo LaloEduard LaloEduardo LaloEdward LaloLaioLaloLalo E.Victoire Antoine Édouard LaloVictor Antoine Edouard LaloVictor Antoine Edouard LalóVictor Antoine Édouard LaloÉ. LaloÉ. LalóÉduard LaloÉduard Victor Antoine LaloЭ. ЛалоЭдуар ЛалоЭдуард Лалоאדוארד לאלוエドゥアール・ラロラロ拉羅 + +883315Ernst HaefligerSwiss classical tenor vocalist, born July 6, 1919 in Davos and died March 17, 2007 ibid. +Haefliger studied at the Zürich Conservatory. He studied with [a=Fernando Capri] in Geneva and [a=Julius Patzak] in Vienna. +He had a lengthy and extensive international career and recorded many oratorios and operas. Starting in 1971, he taught at the [i]Staatliche Hochschule für Musik[/i] in Munich, Germany ([l466335] / [l318570]). + +Haefliger died from acute heart failure.Needs Votehttps://en.wikipedia.org/wiki/Ernst_Haefligerhttp://www.bach-cantatas.com/Bio/Haefliger-Ernst.htmhttps://www.br-klassik.de/themen/klassik-entdecken/ernst-haefliger-tenor-geburtstag-100-jahre-portraet-100.htmlhttp://operalounge.de/cd/recitals-lieder/ernst-haefliger-zjum-100E. HaefligerE. HaefligerE. HaeflingerE. HäfligerErnest HäfligerErns HäfligerErnst HäfligerErnst HaeflicherErnst HaeflingerErnst HafligerErnst HaflingerErnst HäffligerErnst HäfligerErnst HæfligerH. HaefligerHaefligerHäfligerЭ. ХефлигерЭ. ХефлингерЭрнст ХефлигерЭрнст ХефлингерЭрнст Хефоигерエルンスト・ヘフリガーエルンスト・ヘーフリガー + +883337Shinichi Suzuki (2)Japanese violinist.CorrectDr. Shinichi SuzukiS. SuzukiSusukiSuzuki + +883373John Williams (18)British classical oboist. Principal oboe, Bournemouth Symphony Orchestra, ca. 1971.Needs VoteMr. John WilliamsBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +883380Arthur DavisonArthur Clifford Percival DavisonCanadian orchestral & chamber violinist and conductor. Born Montreal, Quebec, Canada 25.09.1918 - Died Sutton, England, UK 23.08.1992. +Principal 2nd Violin of the [a=Philharmonia Orchestra] in 1954, he became assistant concertmaster in 1964, then concertmaster later, and served on the board of that self-governing orchestra. He was appointed director of [a2324642] in 1964. Assistant conductor of the [a835739] 1965, and founder & conductor of the [a2324662] in 1966. By 1970, when he was named director of [a=The Virtuosi Of England] (a recording ensemble he founded), he had ceased appearing publicly as a violinist. +In 1971 he became music director and lecturer at the [l421345], and in 1973 he was appointed a governor and lectured at the [l925143]. +In 1974 Davison was appointed CBE for his services to music, and in 1977 he was made a Fellow of the Royal Society of Arts. +Father of [a=Darrell Davison] and [a=Beverley Davison].Needs Votehttps://www.thecanadianencyclopedia.ca/en/article/arthur-davison-emchttps://www.independent.co.uk/news/people/obituary-arthur-davison-1542352.htmlhttps://www.nytimes.com/1992/08/28/obituaries/arthur-davison-conductor-73.htmlhttps://www.latimes.com/archives/la-xpm-1992-08-27-mn-6600-story.htmlA. DavisonDavisonPhilharmonia OrchestraNew Philharmonia OrchestraBournemouth Symphony OrchestraLondon Mozart PlayersThe Virtuosi Of EnglandThe Little Symphony Of LondonNational Youth Orchestra Of Wales + +883513Dickie Wells And His OrchestraCorrectDickie Wells & His OrchestraDickie Wells & OrchestraDickie Wells Et Son OrchestreDickie Wells OrchestraDicky Well Et Son OrchestreDicky Wells & His OrchestraDicky Wells An His OrchestraDicky Wells And His OrchestraDicky Wells BandDicky Wells E La Sua OrchestraDicky Wells Et Son OrchestreTrio of Trumpets By Bill Dillard, Bill Coleman & "Shad" CollinsDjango ReinhardtLester YoungJo JonesFreddie GreenBill Coleman (2)Sam AllenShad CollinsAl HallDickie WellsBill DillardRichard "Dick" FullbrightBill BeasonEllis Larkins + +883566J.C. WilliamsJohn C. Williams Jr.Baritone saxophonist, bassist and clarinetist. Born October 31, 1936 in Orangeburg, SCNeeds VoteJohnny WilliamsJohnny WilliiamsCount Basie Orchestra + +883689Anthony Collins (2)Anthony Vincent Benedictus CollinsBritish violist, conductor, arranger and composer. Born 3 September 1893 in Hastings, East Sussex, England, UK - Died 11 December 1963 in Los Angeles, California, USA. +Aged 17, he joined up with the [a=Hastings Municipal Orchestra]. He studied violin and composition at the [l=Royal College of Music, London]. In 1926, he began his musical career performing as Principal Viola in the [a=London Symphony Orchestra]. For ten years he performed in that orchestra and also in the [a=Orchestra Of The Royal Opera House, Covent Garden]. He resigned these positions in 1936. He moved to the United States in 1939 to conduct orchestras in Los Angeles and New York City as well as composing film music. That same year, he founded the [b]Mozart London Orchestra[/b]. He returned to England in 1945, continuing to conduct the major British orchestras and also compose for British film studios. He retired at the end of the 1950s, returning to Los Angeles, where he died at the age of 70.Needs Votehttps://open.spotify.com/artist/4kIlPTuKTUdnIZDi2G7Kqihttps://music.apple.com/us/artist/anthony-collins/23951937https://en.wikipedia.org/wiki/Anthony_Collins_(composer)https://web.archive.org/web/20120226190357/http://www.classicsonline.com/conductorbio/Anthony_Collins_27125/#http://www.musicweb-international.com/classrev/2021/Sep/Collins-Decca-4841467.htmhttps://www.eloquenceclassics.com/anthony-collins/https://musicianbio.org/anthony-collins/https://www.imdb.com/name/nm0172141/A. CollinsAnthony CollinsCollinsLondon Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenHastings Municipal Orchestra + +883759Padre Antonio SolerAntonio Francisco Javier José Soler i RamosSpanish composer baptised December 3, 1729 in Olot, died December 20, 1783 in El Escorial.Needs Votehttps://www.chateaugris.com/Soler/solerpag.htmhttps://en.wikipedia.org/wiki/Antonio_Solerhttps://www.britannica.com/biography/Antonio-SolerA. Padre SolerA. SolerA. solerA.SolerAntoni SolerAntonio Francisco Javier Jose Soler RamosAntonio SolerAntonio Soler RamosAntonio Soler, PadreAntonio Soler,PadreAntónio SolerF. SolerFrancisco SolerFray Antonio SolerP. A. SolerP. Antoni SolerP. Antonio SolerP. Antonio Soler O.S.H.P. António SolerP. Fr. Antonio SolerP. SolerP.A. SolerP.Antoni SolerPadre A. SolerPadre SolerPater Antonio SolerSolerА. СолерА.СолерАнтонио Солер + +883762Antony PayAntony PayEnglish clarinetist, born 21 February 1945 in London, England, UK.Needs VoteA. PayAnthony PayPayLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe Academy Of Ancient Music Chamber EnsembleHausmusik (2)Academy Of St. Martin-in-the-Fields Chamber EnsembleHausmusik LondonThe Tony Coe Ensemble + +883763Philip WadeEngineer.CorrectP WadeP. WadePhil WadePhillip Wade + +883764Nona LiddellClassical violinist, born June 9, 1927: died April 13, 2017. +In 1950, she married the violinist [a=Ivor McMahon].Needs Votehttps://en.wikipedia.org/wiki/Nona_LiddellNona LidellLondon SinfoniettaThe English Baroque SoloistsThe Monteverdi OrchestraThe London Bach OrchestraRichards Piano QuartetThe London Piano QuartetThe Schiller Trio + +883765Sidonie GoossensBritish harpist. Born 19 October 1899 in Liscard, Cheshire, England, UK - Died 15 December 2004 in Reigate, Surrey, England, UK. +She appeared with the [a=Goossens' Orchestra]. She was a member of the [a=London Symphony Orchestra] as the only female musician (1921-1930). In 1930 she was a founding member of the [a289522], with which she played until her retirement in 1981. +Daughter of [a8240294] and sister of [a=Sir Eugene Goossens], [a=Marie Goossens], & [a=Leon Goossens].Needs Votehttps://www.youtube.com/channel/UC93LumNBtgW-XfdyXbDTEXghttps://open.spotify.com/artist/4n7fjTZ3CueLUlF58Xbk5Whttps://music.apple.com/us/artist/sidonie-goossens/445630215https://en.wikipedia.org/wiki/Sidonie_Goossenshttps://www.theguardian.com/news/2004/dec/16/guardianobituaries.artsobituarieshttps://www.londonremembers.com/subjects/sidonie-goossensM. GoosensMademoiselle GoosensS. GoossensSidonie GoosensLondon Symphony OrchestraBBC Symphony OrchestraGoossens' Orchestra + +883767Janet CraxtonJanet Helen Rosemary CraxtonEnglish oboist. Born 17 May 1929. Died 19 July 1981 in London, England, UK. +Married composer and pianist [a2463454] in 1961. +Created The London Oboe Quartet in 1968.Needs Votehttps://en.wikipedia.org/wiki/Janet_Craxtonhttp://www.oboeclassics.com/Craxton.htmhttp://www.craxtonmemorialtrust.org.uk/html/jcraxton.htmBBC Symphony OrchestraHallé OrchestraLondon SinfoniettaOrchestra Of The Royal Opera House, Covent GardenLondon Mozart PlayersLondon ConcertanteBath Festival OrchestraThe London Oboe Quartet + +883768Howard SnellHoward Dunster SnellBritish trumpeter, arranger, bandleader, conductor, composer, teacher & Professor of Trumpet, and author. Born 21 September 1936 in Wollaston, Northamptonshire, England, UK. +After studying at the [l527847] (1953-1956), he entered professional music as a trumpet player, first with the [a1028602] (1957-1960), and then with the [a212726] (09/1960-08/1976), where he was Principal Trumpet and Chairman of the Orchestra. During this period, he also held the position of Principal Trumpet with the [a=London Sinfonietta]. On leaving the LSO in August 1976, of the next two years he freelanced in the studios, additionally serving as Principal Trumpet of the [a=English Chamber Orchestra]. He terminated his playin career in August 1978. While still in the LSO, he started to develop a career in condunting and, in 1976, he founded [a1622582], of which he was Musical Director eight years. In 1980, he became conductor for what was known as the [a3480448]. Conductor of his own brass band, [a=Howard Snell Brass]. He taught at the [l459222]. From 1998 to 2012, he was appointed a Professor at the Royal Academy of Music. Author of 'The Trumpet - It's Practice and Performance, A Guide for Students' and 'The Art of Practice' books.Needs Votehttps://howardsnell.wordpress.com/https://www.linkedin.com/in/howard-snell-137195141/https://open.spotify.com/artist/1XaEya3KOuR1KvtKSHRcA4https://music.apple.com/ar/artist/howard-snell/79397143?l=enhttps://en.wikipedia.org/wiki/Howard_Snell_(musician)https://www.feenotes.com/database/artists/snell-howard-21st-september-1936-present/https://www.4barsrest.com/articles/2001/art027.asphttps://www.chandos.net/composers/Howard_Snell/711H SnellH. SnellHowand SnellHoward SnelSnellLondon Symphony OrchestraEnglish Chamber OrchestraLondon SinfoniettaPhilip Jones Brass EnsembleSadler's Wells OrchestraThe Wind Virtuosi Of EnglandMembers Of The London Symphony Orchestra + +883770Harold LesterBritish pianist, harpsichordist, organist, continuo player, conductor, and Professor of Harpsichord and Baroque music. Born in London, England, UK. +He studied at the [l680970]. He has been principal pianist with the [a=London Symphony Orchestra] (piano/celeste, 1959-1964), the [a=Royal Philharmonic Orchestra], the [a=New Philharmonia Orchestra], the [a=London Philharmonic Orchestra], and the [a=London Sinfonietta], frequently as a soloist. He has worked extensively in the world of opera as a répétiteur. Professor of Harpsichord and Baroque music at [l=Kingston University].Needs Votehttps://www.linkedin.com/in/harold-lester-34b38533/?originalSubdomain=ukhttp://www.theboldballadiers.co.uk/Business/Infobusiness/Biographies.htm#Haroldhttps://www.naxos.com/person/Harold_Lester/12024.htmLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraLondon SinfoniettaNew Philharmonia OrchestraOriana Concert OrchestraThe Little Orchestra Of LondonMusica ReservataThe Sheba Sound + +883771Jennifer Ward ClarkeBorn June 20, 1935 in [url=https://en.wikipedia.org/wiki/Yateley]Yateley[/url], Hampshire, died March 1, 2015. British cellist. After an early career in contemporary music, she later specialised in baroque music and performances on period instruments. +She studied at the [l290263] and subsequently at the [l1014340]. +She played for a period with the [a=Philharmonia Orchestra] under [a=Otto Klemperer]. Founder member of [a=The Pierrot Players] in 1967 and its successor the [a=Fires Of London], [a=The Music Party] in 1972, [a=The Academy Of Ancient Music] in 1973 and [a=The Salomon Quartet] in 1981. Joined the [a=London Sinfonietta] at it's inception in 1968. That same year, she played in [a=The Steinitz Bach Players]. She later played with [a=The Monteverdi Orchestra], the [a=London Classical Players] and the [a900433]. +From the 1980s she was professor of baroque cello at the [l=Royal Academy Of Music].Needs Votehttps://www.youtube.com/channel/UCfWWRILguu80063ojXVUxGQhttp://thebachplayers.org.uk/news/jenny_ward_clarke_in_conversationhttps://en.wikipedia.org/wiki/Jennifer_Ward_Clarkehttps://www.theguardian.com/music/2015/mar/11/jennifer-ward-clarkehttps://www.telegraph.co.uk/news/obituaries/11473331/Jennifer-Ward-Clarke-cellist-obituary.htmlhttps://www.thestrad.com/obituary-british-cellist-jennifer-ward-clarke/4172.articlehttps://theviolinchannel.com/jennifer-ward-clarke-died-obituary-cello-cellist-baroque-period/https://happyhappybirthday.net/en/age/jennifer-ward-clarke-person_yqsussaaJ. Ward ClarkeJennifer Ward ClarkJennifer Ward-ClarkeJenny Ward ClarkeJenny Ward-ClarkJenny Ward-ClarkeSelward ClarkeWard ClarkeEnglish Chamber OrchestraLondon SinfoniettaPhilharmonia OrchestraThe Parley Of InstrumentsFires Of LondonThe Academy Of St. Martin-in-the-FieldsThe Academy Of Ancient MusicTaverner ConsortOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe Pierrot PlayersTaverner PlayersThe Schütz Choir Of LondonThe Salomon QuartetThe Monteverdi OrchestraApollo OrchestraThe Music PartyThe Steinitz Bach PlayersThe English ConcertThe Music Collection + +883774Marja BonDutch pianist.Needs VoteSchönberg EnsembleNieuw Sinfonietta Amsterdam + +883777Peter KatinPeter Roy KatinPeter Katin (born 14 November 1930, London, England – died 19 March 2015) was a British classical pianist and pedagogue.Needs Votehttp://en.wikipedia.org/wiki/Peter_KatinKatinP. Katin + +883789Karl KaiserGerman classical flautist born in Köln (Germany). He studied at the Music Universities in Cologne and Münster. In parallel, Karl Kaiser also studied theology, philosophy and musicology at the Universities in Bonn and Cologne, but then decided to become a professional musician. Since then, he has made an outstanding name for himself, not only as a soloist, a chamber and orchestral musician in the field of historically informed performance practice, but also as a pedagogue.Needs Votehttp://www.ardinghello.com/en/start.htmlMusica Antiqua KölnFreiburger BarockorchesterLa StagioneCamerata KölnFreiburger BarockConsortMusica Alta RipaThe Age Of PassionsEnsemble FleuryDas Reicha'sche QuintettCappella Academica FrankfurtArdinghello Ensemble + +883952John HollowayBritish baroque violinist and conductor, born 19 July 1948.Correcthttps://en.wikipedia.org/wiki/John_Holloway_(musician)https://books.discogs.com/credit/743263-john-hollowayHollowayJ. HollowayДжон ХоловейLes Arts FlorissantsThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersTaverner PlayersL'École D'OrphéeTragicomediaThe Richard Hickox OrchestraOrchester Der J.S. Bach StiftungJohn Holloway Ensemble + +883953Christopher WellingtonBritish classical violist, music editor, and Professor of Violin. First-ever Principal Viola of the [a=National Youth Orchestra Of Great Britain]. Former Principal Viola of the [a=Philharmonia Orchestra]. He has been a member of the [a=Amici String Quartet], [a=The Music Group Of London], and the string trio [b]Tre Corde[/b]. He edited [a=Sir William Walton]'s "Concerto for Viola and orchestra". He taught at the [l290263] and the [l680970].Needs VoteC. WellingtonChris WellingtonLondon Symphony OrchestraThe Chitinous EnsemblePhilharmonia OrchestraPhilomusica Of LondonNational Youth Orchestra Of Great BritainThe Tilford EnsembleThe London Bach OrchestraThe Music Group Of LondonAmici String QuartetRasumofsky QuartettLondon Bach Ensemble + +883959Olga HegedusOlga Catherine Mary Elizabeth HegedusOlga Hegedus (* October, 18, 1920 in London – ✝ April 22, 2017) was an English cellist who was co-principal of the [a415725].Needs Votehttps://www.thestrad.com/british-cellist-olga-hegedus-has-died-aged-96/1172.articlehttps://en.wikipedia.org/wiki/Olga_HegedusO. HegedusOlga HedgedusOlga HegadusEnglish Chamber OrchestraHaffner String Quartet + +883962Rudolf KoeckertRudolf Josef KoeckertGerman violinist and founder of the [a=Koeckert-Quartett]. He was born 27 June 1913 in Großpriesen, Bohemia, Austria-Hungary (now Velké Březno, Czech Republic) and died 3 September 2005 in Munich, Germany. He was the father of [a4090285].Needs Votehttps://adp.library.ucsb.edu/names/325600KoeckertR. KoeckertRudolf Koeckert senRudolf KöckertRudolph KoeckertРудольф КёккертSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerKoeckert-Quartett + +883964Siegmund NisselBritish violinist of German descent (* 03 January 1922 in Munich, German Empire; † 21 May 2008 in London, England, UK).Needs Votehttps://en.wikipedia.org/wiki/Siegmund_NisselNisselS. NisselSiegmund NiesselSigmund NisselЗигмунд НиссельAmadeus-Quartett + +883966Josef MerzGerman violoncellist.Needs VoteJ. MerzJ.MerzJos. MerzJoseph MerzSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerKoeckert-Quartett + +883967Oskar RiedlGerman violist.Needs VoteO. RiedlOscar RiedlSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerKoeckert-Quartett + +884062Baltimore Symphony OrchestraAmerican symphony orchestra based in Baltimore, Maryland. Founded in 1916. Since the 2007-2008 season lead by Music Director [a=Marin Alsop].Needs Votehttps://en.wikipedia.org/wiki/Baltimore_Symphony_Orchestrahttps://www.bsomusic.org/https://www.youtube.com/user/BSOmusichttps://www.x.com/BaltSymphonyhttps://www.facebook.com/BSOmusic/https://www.instagram.com/BaltSymphony/https://www.linkedin.com/company/baltimore-symphony-orchestra/Baltimora Symphony OrchestraBaltimore S.O.Baltimore SymphonyBaltimore Symphony Orchestra And ChorusBaltimore Symphony Orchestra QuartetOrch. Sinf. di BaltimoraOrchestra Sinfonica Di BaltimoraOrchestra Sinfonica di BaltimoraOrchestre Symphonique De BaltimoreOrquestra Filarmônica de BaltimoreThe Baltimore Symphony OrchestraБалтиморский Симфонический ОркестрWilmer WiseJonathan CarneyEsther MellonSamuel ThaviuGeraldine WaltherFlorin ParvulescuPatricia WeimerLaurence ThorstenbergDoriot Anthony DwyerKatherine NeedlemanChristian ColbergDenise TryonLila BrownAlfred GenoveseCharles VernonLeRoy FenstermacherThomas A. DummSusan WilloughbyWayne RapierIrene BreslawNewton MansfieldKarin Brown (3)Edward PalankerRebecca Nichols (2)Beth GrahamSteve Freeman (4)Jerome PattersonRonald WilkinsonRui DuAndrew EngGeorge OrnerJonathan Jensen (2)Christopher KimberMihaly VirizlayStanley HastyStevens HewittEdward HoffmanElmer SetzerAdrian SemoAaron LaVereNicholas Jones (6)Eric WicksNoah ChavesHampton ChildressDariusz SkoraczewskiAndrew BalioHerbert LightRobert CafaroLulu FullerSteven BartaJoseph SomogyiLachezar KostovMarjorie NealKristin OstlingJessica BlackwellJohn Locke (10)Philip MundsLeonid BerkovichJeremy BucklerJames OlinMadeline AdkinsHarrison MillerBrian PrechtlMichael Rau (3)Nina DeCesareMartha LongLura JohnsonPeter LandgrenEmily SkalaErica GailingMembers Of The Cello Section Of The Baltimore Symphony OrchestraHolgen GjoniAmal GochenourJames FerreeAdam WuBonnie Lake (2)Richard Field (6)Peter MinklerRobert Pierce (8)Yao Guang ZhaiHa Young JungMaria SemesMichael LisickyBoram KangNina LaubeJane MarvineGita LaddGregory MulliganEllen PendletonAbigail KentBruce Moore (11)Mary BissonMary WoehrŁukasz SzyrnerArnold GregorianDavid Sheets (2)Eric Stahl (2)Mark Huang (2)Randall S. CamporaJulie Green (6)Bo LiChang Woo LeeSeth LowWilliam JenkenMarcia KamperLaurie SokoloffDennis Kain (2)Ge TaoDelmar StewartGenia SlutskyJeffrey Stewart (6)Sharon Pineo MyerAndrew WasyluszkoGregory KupersteinJohn Merrill (6)Charles Underwood (6)Colin SorgiIvan StefanovicJames UmberLeonid BriskinQing LiSun Joo ParkOwen Cummings (2) + +884093Melvin AndersonWriter of the [a711723] hit "I Wonder Why" with [a871288].Needs VoteA. AndersonAndersonAnderssonM. AndersonM. Farr + +884101Shirley OwensShirley Owens (born June 10, 1941, in Henderson, North Carolina) was the member of the hit group, [a=The Shirelles]. As well as Owens, The Shirelles consisted of classmates of hers from Passaic High School, New Jersey: [a=Addie Harris], [a=Doris Coley], and [a=Beverly Lee]. However, her strong, distinctive voice meant that Owens was the natural choice for lead singer. + +Owens enjoyed a string of hits with The Shirelles throughout the 1960s. Through marriages, she became Shirley Owens Alston and later, Shirley Alston Reeves. She left The Shirelles in 1975 to begin a solo career, recording under the name [a=Lady Rose (2)]. That same year, she recorded an album entitled With A Little Help From My Friends, after the hit song by [a=Beatles]. + +She was inducted into the Rock 'n' Roll Hall of Fame in 1996 +Needs Votehttps://en.wikipedia.org/wiki/Shirley_OwensB. OwensOwenOwensOwnesS OwensS. OwensS.OwensShirleyShirley A. ReevesShirley Owens (Alston)Lady Rose (2)Shirley AlstonShirley Alston ReevesThe Shirelles + +884113Joe Martin (4)Joseph MartinUS doo wop baritone singer, songwriter. Twin brother of [a=Ralph Martin]Needs VoteJ. MartinMartinThe WillowsThe 5 Willows + +884114Richard Davis (6)Doo wop singer (first tenor)Needs VoteDavisThe WillowsThe 5 Willows + +884120Ralph MartinAmerican jazz pianist and singer (Doo Wop first tenor) +Twin brother of [a884113] + +Born 12-Feb-1935 in Harlem (New York City), NY, U.S.A. +Died 25-Mar-2010 in The Bronx (New York City), NY, U.S.A.Needs VoteMartinR. MartinThe WillowsLouie Bellson OrchestraThe Don Elliott QuintetThe 5 Willows + +884124Barry GolderBarry S. GolderUS songwriter, executive at [l=Main Line Records]Needs VoteB. GolderB. GoldnerB. GoldorB. GoodnerBarry GoldnerBarry S. GolderGarderGardnerGeorge GolderGoldenGolderGoldnerGoulder + +884129Roy CalhounRoyalston CalhounRoy was a member of the doo-wop group ''Lee Andrews and The Hearts''. +Born: December 22, 1937 in Philadelphia, Pennsylvania. +Died: November, 1979 in Philadelphia, Pennsylvania.Needs VoteC.E. CalhounCahounCalhoenCalhounR. CalhounRoyalston CalhounLee Andrews & The Hearts + +884130Edwin CharlesCorrectCarlesCharlesE. Charles + +884343Joachim UlbrichtClassical viola player.Needs VoteJoachim UllbrichtStaatskapelle DresdenUlbrich-QuartettDresdner Kammersolisten + +884345Gerhard RichterGerhard RichterGerman chorus master. Worked with [a=Rundfunkchor Leipzig] from 1978 to 1980 during an interim arrangement. + +For the German painter see [a=Gerhard Richter (3)]. +Needs Voteゲアハルト•リヒターRundfunkchor Leipzig + +884528Margaret UrquhartClassical double bass / Violone instrumentalist.Needs VoteMaggi UrquhartMaggie UrquhartMargaret UrquartMargaret UrquhardtMargareth UrquhartCollegium VocaleThe Amsterdam Baroque OrchestraLa Petite BandeDe Nederlandse BachverenigingRicercar ConsortMusica AmphionOrchestra Of The 18th CenturyDunedin ConsortNetherlands Bach CollegiumLa Grande ChapelleTulipa Consort + +884529Marten BoekenMaarten BoekenClassical violinist and viola player.Needs VoteMarten BoekeMartin BoekenCollegium VocaleIl FondamentoConcerto VocaleLa Petite BandeMusica AmphionOrchestra Of The 18th CenturyOrkest Amsterdam DramaHolland SymfoniaEnsemble Cristofori + +884530Pieter-Jan BelderDutch flutist, harpsichordist and conductor, born in 1966. +He studied recorder with Ricardo Kanji at the Royal Conservatory at the Hague and harpsichord with Bob van Asperen at the Amsterdam Sweelinck Conservatory, where he graduated in 1990 and was member of staff 1990 to 1995. + +In 1997 Belder was awarded the third prize at the Hamburg NDR Music Prize harpsichord competition. In 2000 he was the winner of the Leipzig Bach harpsichord competition. +Needs Votehttp://pieterjanbelder.nlhttps://en.wikipedia.org/wiki/Pieter-Jan_BelderP.J. BelderPieter Jan BelderDe Nederlandse BachverenigingCamerata TrajectinaMusica AmphionOrchestra Of The 18th CenturyRadio Kamer Filharmonie + +884531Rémy BaudetDutch classical [b]violinist[/b], born in The Hague, Netherlands. +Concertmaster of [a1551275] and [a4149836] / [a=Het Gelders Orkest], and conductor of the Resonet Ensemble. +He has taught the violin, chamber music, history and art history at several schools and conservatories. +He is the author of a book on the developmenht of violin playing between 1780 and 1880.Needs VoteMusica AmphionOrchestra Of The 18th CenturyVan Swieten TrioEnsemble CristoforiHet Gelders Orkest + +884544Monty KellyAmerican composer, arranger and conductor. + +Born: 10 June 1910 in Oakland, California +Died: 15 March 1971 in New York City +Needs Votehttps://adp.library.ucsb.edu/names/362160K. MontyKellyL. KellyM. KellyMonte KellyМ. Келли101 StringsPaul Whiteman And His OrchestraMonty Kelly's OrchestraMonty Kelly's Orchestra And Chorus + +884554Riccardo DrigoRiccardo Eugenio DrigoItalian composer of ballet music and Italian opera, a theatrical conductor, and a pianist born June 30, 1846 and died October 1, 1930 in Padua (Padova, Italy). +Drigo is most noted for his long career as kapellmeister and Director of Music of the Imperial Ballet of Saint Petersburg, Russia, for which he composed music for the original works and revivals.Needs Votehttps://en.wikipedia.org/wiki/Riccardo_DrigoBrigo, RiccardoDorigoDrigoDrigotDrioF. DrigoR DrigoR. DrigoR. OrigoRicardo DrigoRiccardo Eugenio DrigoRich. DrigoRichard DrigoRichardo DrigoRichart DrigoДригоР. Дригоドリゴ杜里哥 + +884578Charles La VereCharles LaVere JohnsonBorn: Salina, Kansas, July 18, 1910 +Died: Ramona, California, April 28, 1983 + +Jazz pianist, saxophonist, trombonist, cornetist, accordionist, singer, arranger and composer, educated at the College of Fine Arts and the University of Oklahoma. He had been a member, usually on alto sax, with Herb Cook's Oklahoma Joy Boys, Frank Williams and his Oklahomans, and Etzi Covato before 1929. In the early 1930s he performed in and around Oklahoma City, then went on tour and then came to Chicago in late 1932, leading his own bands and those of Wingy Manone and Jack Teagarden on their first recordings. Going back on tour in the mid-1930s he toured Texas and the midwest with Eddie Neibauer and Dell Coon, and led his own all-star recording group in Chicago (1935) before starting on radio in 1935. Going to Hollywood in 1938, he joined Frank Trumbauer in 1938, then worked in radio and recording studios in Hollywood with Skinnay Ennis, Victor Young, John Scott Trotter and Gordon Jenkins, and accompanied Bob Hope, Bing Crosby, Dick Haymes and other stars into 1950. He sang in the 'Golden Horseshoe Revue' at Disneyland until 1960. + +Joining ASCAP in 1956, his chief musical collaborators were Tom Adair and 'Bonnie Lake', and his popular-song compositions include: "The Blues Have Got Me", "Cuban Boogie Woogie", "It's All In Your Mind", and "Mis'ry & The Blues". +Needs Votehttp://alevy.com/lavere.htmhttp://www.imdb.com/name/nm2228228/biohttps://adp.library.ucsb.edu/names/110022C. La VereC. LaVereC. LavereCharles La Vere ChorusCharles LaVereCharles LavereCharles Lavere And His OrchestraCharles LeVereCharles LeVere And ChorusCharlie La VereCharlie LaVereCharlie LavereCharlie LeVereCharlie LevereChas. LaVereLa VereLa'VereLaVereLaversLeVereLevereJack Teagarden's ChicagoansJack Teagarden And His OrchestraGordon Jenkins And His OrchestraSextette From HungerCharlie Lavere's Chicago Loopers + +884579Bob DorseyRobert DorseyJazz tenor saxophonist and clarinetist, born 10 September 1915 in Lincoln, Nebraska, died 19 February 1965. +CorrectCootie Williams And His OrchestraSir Charles And His All StarsHorace Henderson And His Orchestra + +884580Rostelle ReeseJazz trumpeterCorrectR. ReeseRostel ReeseJimmie Lunceford And His OrchestraEarl Hines And His Orchestra + +884581Skip LaytonPhilip A. LaytonJazz trombonist from the 1940-1950s Big Band era, having performed with [a299946] and [a212786] orchestras.CorrectStan Kenton And His OrchestraPaul Whiteman And His Orchestra + +884584Alvy WestAlvin WeisfeldAlto saxophonist, composer, arranger and bandleader. He worked with [a=Frank Sinatra], [a=Billie Holiday], [a=Anita O’Day] and [a=Mel Tormé]. He composed tunes with [a=Johnny Mercer] and [a=E.Y. Harburg], a.o. He led his own Combo [a=Alvy West And The Little Band] and directed his Orchestra [a=Alvy West And His Orchestra]. + +Alvy West was born on January 1, 1915 in Brooklyn, New York City, New York, USA as Alvin Weisfeld. He died on November 30, 2012 in the USA, 97 years old.CorrectA. WestAlvin WeisfeldWeisfieldWestPaul Whiteman And His OrchestraAlvy West And His OrchestraAlvy West And The Little Band + +884585Mort BullmanAmerican trombonist.Needs VoteM. BullmanMartin H. BullmanMonty BullmanMort BullmanrMortie BullmanMortimer BullmanMorton BullmanMorton H. BullmanMorty BullmanArtie Shaw And His OrchestraSy Oliver And His Orchestra + +884587Bill StegmeyerWilliam John StegmeyerAmerican jazz clarinetist and arranger. +Born 8 October 1916 in Detroit, Michigan. +Died 19 August 1968 in Long Island, New York.Needs Votehttps://adp.library.ucsb.edu/names/209797B. StegmeyerBill StigmeyerBilly StegmeyerStegmeyerWilliam StegmeyerWilliam SteigmeyerWm. StegmeyerLouis Armstrong And His OrchestraGlenn Miller And His OrchestraBob Haggart And His OrchestraBilly Butterfield And His OrchestraJimmy McPartland And His OrchestraYank Lawson And His OrchestraLawson-Haggart SextetBill Stegmeyer And His OrchestraLawson-Haggart Jazz BandYank Lawson's Jazz BandBill Stegmeyer And His Hot Eight + +884593Pat NizzaUS American big band era tenor saxophonistNeeds VotePa NizzaPat NiezzoSy Oliver And His Orchestra + +884594Wallace BishopWallace Henry BishopJazz drummer, born 17 February 1906 in Chicago, Illinois, died 2 May 1986 in Hilversum, NetherlandsNeeds Votehttp://en.wikipedia.org/wiki/Wallace_Bishophttps://adp.library.ucsb.edu/names/113485BishopBishoppJ. BishopW. BishopWalace BishopWallace Henry ("Bish") BishopWallace «Bish» BishopWally BishopWalter BishopEarl Hines And His OrchestraDon Byas QuartetKing Oliver & His OrchestraDon Byas And His OrchestraSam Price TrioBe Bop BoysSonny Stitt All StarsBuck Clayton TrioRichard Jones And His Jazz WizardsLittle Fritz And His FriendsDixie Rhythm KingsThe Don Gais TrioNelson Williams And His RhythmsLittle Fritz TrioOrchestre Henri ChaixEarl "Fatha" Hines All Stars QuintetThe Dixie DandiesBuck Clayton SextetBuck Clayton And His RhythmWally Bishop And His OrchestraJimmie Nooone & His Loones!Trio Albert Nicholas / Wallace Bishop / Fritz TrippelDie Vier MartinosEarl "Fatha" Hines All Stars QuartetEarl "Fatha" Hines TrioWillie "The Lion" Smith's Quartet + +884598Jimmy ShirleyJames Arthur ShirleyAmerican jazz guitarist, born May 31, 1913 in Union, South Carolina, died December 3, 1989 in New York City (Harlem), New York. +Played with J. Frank Terry, Hal Draper, Clarence Profit, Ella Fitzgerald, James P. Johnson, Coleman Hawkins, Herman Chittison, Phil Moore, Buddy Tate, Sidney DeParis, Johnny Guarnieri, Stephane Grappelli and others.Needs Votehttps://adp.library.ucsb.edu/names/343542Arthur ShirleyJ. ShirleyJames ShieleyJames ShirleyJim ShirleyJimmy Arthur ShirleyShirleyArtie Shaw And His OrchestraColeman Hawkins QuintetColeman Hawkins And His OrchestraEdmond Hall's Blue Note JazzmenJames P. Johnson's Blue Note JazzmenPete Johnson's All-StarsEarl Bostic And His OrchestraColeman Hawkins Swing FourPete Johnson And His BandSidney DeParis' Blue Note JazzmenPete Brown's Brooklyn Blue BlowersArt Hodes' Back Room BoysJohn Hardee SextetArt Hodes And His Blue Note JazzmenPat Flowers And His RhythmOliver "Rev." Mesheux's Blue SixThe Ram Ramirez TrioWingy Carpenter And The WingiesEarl Bostic And His SeptetEarl Bostic's Gotham Sextet + +884599Larry NeilLorentz Neill Orenstein.American jazz trumpeter, singer and songwriter. +Born : August 30, 1918 in St. Paul, Minnesota. +Died : February 22, 2006 in Sherman Oaks, California. + +Larry played with : Paul Whiteman, Shep Fields, Joe Reichman, Ray Noble and others.CorrectLarry NealLarry NeillNeillLarry OrensteinPaul Whiteman And His Orchestra + +884602Danny D'AndreaDaniel Glorian D'Andrea.American jazz saxophonist (alto), violinist, vocalist and arranger. + +Born : May 28, 1909 in Altoona, Pennsylvania. +Died : March 19, 1983 in San José, California. + +Danny played with : +Joe Haymes (1932-'33), +Mike Doty (1933), +Ray Noble (as violinist, 1935-'36), +"Casa Loma Orchestra" (1937-'40), +"Paul Whiteman's Orchestra" (Dec. 1940 - Sept. 1942) +and others. CorrectDan D'AndreDan D'AndreaDan D’AndreaDan d'AndreaDanny d'AndreaPaul Whiteman And His OrchestraRay Noble And His OrchestraGlen Gray & The Casa Loma Orchestra + +884607Don WaddiloveWilliam Donald WaddiloveJazz Trumpet player from the 1940-1950s Big Band era, having performed with [a33589] and [a341395].CorrectPaul Whiteman And His Orchestra + +884699Mimi UnimanWife of Philadelphia disc jockey [a=Hy Lit].Needs VoteM UnimanM. UnimanM. WhitmanMimi UnimaUnimanUnuman + +884700Bernice DavisFiancée and later wife of Philaldephia disc jockey [a=Georgie Woods].Needs VoteA. DavisAbbottB DavisB. DavisDavis + +885223Frank BeecherFrancis Eugene Beecher Sr.Frank "Franny" Beecher (born September 29, 1921, Norristown, Pennsylvania, USA - died February 24, 2014, Philadelphia, Pennsylvania, USA) was an American rock and roll and jazz guitarist. He was the lead guitarist for [a282897] from 1954 to 1962, and is best remembered for his innovative guitar solos combining elements of country music and jazz.Needs Votehttp://en.wikipedia.org/wiki/Frank_Beecherhttps://www.imdb.com/name/nm0066322/http://www.onehitwondersthebook.com/?page_id=10823https://adp.library.ucsb.edu/names/303629https://www.findagrave.com/memorial/125636084/francis-eugene-beecherBeecherBeeecherF BeecherF. BeecherF.BeecherFran BeecherFrances BeecherFrancis BeecherFranck BeecherFrannie BeecherFranny BeecherKay BeecherBill Haley And His CometsBenny Goodman And His OrchestraBenny Goodman SeptetThe Kingsmen (2)The Lifeguards (2) + +885383Eddie GradyEddie Grady was a child star drummer. +Grady began playing the drums at five on a Children's Hour. At eight he appeared with Paul Whiteman. By the time he was twelve he was heard with Tommy Dorsey; at thirteen he was signed by Warner Brothers; at seventeen he joined the Armed Forces and was in one of the Glenn Miller Bands. In 1952 he was with Benny Goodman. +Grady moved through many bands before becoming an established studio session drummer. Later formed his orchestra, [a849079].Needs Votehttp://www.splogman.com/splusp/commanders.htmlEd GradyEddie GrayEddy GradyTommy Dorsey And His OrchestraThe CommandersSanto Pecora And His Dixie Land Jazz BandEddie Grady And His QuintetJohnny Guarnieri QuartetEddie Grady Orchestra + +885403Max RegerJohann Baptist Joseph Maximilian RegerGerman composer (late romantic), conductor, pianist, organist, and university lecturer (* 19 March 1873 in Brand, Oberpfalz, German Empire; † 11 May 1916 in Leipzig, German Empire). +Max Reger was a very prolific composer. During his short life, he created more than 1,000 works.Needs Votehttps://en.wikipedia.org/wiki/Max_Regerhttps://www.britannica.com/biography/Max-Regerhttps://www.max-reger-institut.de/en/https://www.bach-cantatas.com/Lib/Reger-Max.htmhttps://www.naxos.com/person/Max_Reger/21016.htmhttps://gemeinden.erzbistum-koeln.de/stifts-chor-bonn/service/komponisten/Reger.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102535/Reger_MaxA. RegerJohann Baptist Joseph Maximilian RegerM RegerM. RegerM. RegersM. RēgersM.RegerMax Reger (1873-1916)Max Reger, op. 76, Nr. 52Max(imilian) RegerRagerRegarRegerReger M.Reger, M.Reger, MaxReger, MaximilianМ. РегерМ.РегерМакс РегерРегер + +885766András SchiffAndrás SchiffHungarian-born British classical pianist, born 21 December 1953 in Budapest, Hungary. He is married to [a=Yuuko Shiokawa].Needs Votehttps://www.instagram.com/sirandrasschiff/https://en.wikipedia.org/wiki/Andr%C3%A1s_SchiffA. SchiffAndras SchiffAndràs SchiffSchiffSchiff AndrásSir András SchiffА. ШиффАндраш Шиффアンドラーシュ・シフThe Chamber Orchestra Of Europe + +885767Hungarian State OrchestraFounded in 1923 as the [a732715]. Later the name was changed to [a=Hungarian National Philharmonic Orchestra] + +For the Hungarian State Opera Orchestra, please use ANV of [a5029052]Needs VoteA Magyar Állami HangversenyzenekartAZ Állami HangversenyzenekartAz Állami HangversenyzenekarAz Állami HangversenyzenekartBudapest State OrchestraBudapest Symphonie OrchestraComplesso Popolare Di Stato UnghereseDas Ungarische StaatsorchesterDet Ungarske StatsorkesterHongaars Philharmonisch OrkestHongaars Staats OrkestHongaars StaatsorkestHungarian Concert OrchestraHungarian National Philharmonic OrchestraHungarian Radio And Television Symphony Orchestra and ChorusHungarian SOHungarian SSOHungarian State Concert OrchestraHungarian State SymphonyHungarian State Symphony OrchestraHungarian State SymphonyOrchestraHungarisches Staatliches KonzertorchesterL'Orchestre De Concert De L'État HongroisL'Orchestre National De HongrieL'Orchestre Symphonique De L'Etat HongroisMacar Devlet OrkestrasıMagyar Allami HangversenyzenekarMagyar Hangversenyzenekar = Hungarian State OrchestraMagyar Állami HangversenyzenekarMagyar Állami HangversenyzenekartMaďarský Štátny Symfonický OrchesterOrch. De L'Etat HongroisOrch. De L'État HongroisOrchester Der Staatsoper BudapestOrchester Der Ungarischen StaatsoperOrchestraOrchestra De Stat Din UngariaOrchestra De Stat MaghiarăOrchestra Di Stato UnghereseOrchestra National HongroisOrchestra Nazionale UnghereseOrchestra Sinfonica Di Stato UnghereseOrchestra Sinfónica Nacional HúngaraOrchestra UnghereseOrchestra di Stato UnghereseOrchestre D'Etat HongroisOrchestre D'Etat Hongrois Et ChœursOrchestre D'État De HongrieOrchestre D'État HongroisOrchestre De L'Etat HongroisOrchestre De L'État HongroisOrchestre National De BudapestOrchestre National De HongrieOrchestre Symphonique De L' Etat HongroisOrchestre Symphonique De L'Etat HongroisOrchestre Symphonique De L'État HongroisOrchestre Symphonique De L’État HongroisOrchestre Symphonique De l'Etat HongroistOrchestre Symphonique HongroisOrchestre Symphonique d'Etat HongroisOrchestre Symphonique de l'Etat HongroisOrchestre Symphonique de l'État HongroisOrchestre d'Etat HongroisOrchestre de L’État HongroisOrquesta Nacional HúngaraOrquestra Do Estado HúngaroOrquestra Sinfónica Do Estado HúngaroOrquestra Sinfónica Nacional HúngaraOrquestra Sinfónica da HungriaOrquestra Sinfónica do Estado HúngaroOrtchestre De L'Etat HongroisSoli - Choeur - Orchestre De BudapestSoli, Chœur Et Orchestre De BudapestStaatliches Konzert-OrchesterStaatliches Konzert-Orchester BudapestStaatliches Orchester BudapestStaatliches Ungarisches SinfonieorchesterStaatliches Ungarisches Symphonie OrchesterStaatliches Ungarisches Symphonie-OrchesterStaatsorchesterState Concert OrchestraState Concert Orchestra, BudapestState Philharmony OrchestraState Symphony OrchestraThe Hungarian State OrchestraThe Hungarian State Symphony OrchestraThe National Hungarian Radio OrchestraUngarische NationalphilharmonieUngarisches NationalorchesterUngarisches NationalphilharmonieUngarisches Staatliches KonzertorchesterUngarisches Staatliches StaatsorchesterUngarisches Staatliches Symphonie-OrchesterUngarisches Staats OrchestraUngarisches Staats-Konzert-OrchesterUngarisches Staats-KonzertorchesterUngarisches StaatsorchesterUngarske StatsorkesternUngerska NationalorkesternUngerska Statens SymfoniorkesterUnkarin Kansallisorkesteril'Orchestre Symphonique de l'État HongraisÁll. HangversenyzenekarÁllami Hangverseny ZenekarÁllami HangversenyenekarÁllami HangversenyzenekarÁllami HangversenyzenekartВенгенский Симфонический ОркестрВенгерский Государственный Концертный ОркестрВенгерский Государственный ОркестрВенгерский Государственный Симфонический ОркестрВенгерский Филармонический ОркестрВенгерский гос. концертный оркестрВенгерский государственный оркестрГосударственный Симфонический ОркестрHungarian National Philharmonic OrchestraFerenc SzucsLászló SzilvásyJudith Várbíró + +885768Annerose SchmidtAnnerose BoeckAnnerose Schmidt (5 October 1936 in Wittenberg, Germany – 10 March 2022) was a German pianist.Needs Votehttp://de.wikipedia.org/wiki/Annerose_SchmidtSchmidtАннерозе Шмидтアンネローゼ・シュミット + +885851Hanna Mª AmbrosHanna Ambros PodulkaViolistCorrectHanna AmbrosOrquesta Sinfónica De Madrid + +885858Theo MullerProducer and writer for classical releases.Needs Vote + +885859Peter Nicholls (3)Producer, Engineer primarily associated with classical recordings. + +Known to have worked at: +[l465399]Needs Vote + +885930Sebastian SteinProducer and engineer for classical releasesCorrectSebastien Stein + +885969Amati Chamber OrchestraDutch chamber orchestra founded in 1992 by the violinist Gil Sharon.Needs Votehttp://www.amati-ensemble.nlAmati EnsembleAmati String OrchestraDechový Orchestr AmatiAmati Chamber EnsembleGil SharonYuri GandelsmanRon Ephrat + +885981Jan Jansen (2)Clarinet player, born 1958 in Dieren, Netherlands.Needs VoteSexteto CanyengueRotterdams Philharmonisch Orkest + +885982Johan SteinmannDutch bassoonist.Needs Votehttps://www.facebook.com/johan.steinmann.1/J. SteinmannJohann Steinmann + +885983Henk de GraafClassical clarinetist.Correct + +885986Jos BuurmanHorn player.Needs VoteI FiamminghiRotterdams Philharmonisch Orkest + +885988Katty HalvarsonCorrect + +885989Martin van de MerweHorn player, born 1957 in Oud-Beijerland, Netherlands.Needs Votehttp://www.martinvandemerwe.comMartin Van Der MerweMartin v/d MerweMartin van der MerweI FiamminghiRotterdams Philharmonisch Orkest + +885991Hans WisseBassoon playerNeeds VoteRotterdams Philharmonisch OrkestHet Brabants Blazersensemble + +886018Malcolm HeeleyRecording engineer.Needs Vote + +886376Miklós PerényiHungarian classical cellist, born January 5, 1948 in Budapest.Correcthttp://en.wikipedia.org/wiki/Mikl%C3%B3s_Per%C3%A9nyiMiklos PerenyMiklos PerenyiMiklos PerenylMiklos PerényiMiklos PérényiNicolas PerényiPerenyiPerényiPerényi MiklósМ. ПереньиМиклош ПерениМиклош ПереньиLiszt Ferenc Chamber Orchestra + +886424John Henry MackayJohn Henry MackayPoet and writer of non-fiction books on political philosophy, mainly supporting individual anarchism. + +Born on 6 February 1864 in Greenock, Scotland, United Kingdom, as son of a German mother and a Scottish father. +He died on 16 May 1933 in Stahnsdorf, near Berlin, Germany. + +Many of his poems had been set to music by prominent composers, as were [a108439], [a465983], and others. +Mackay wrote in German language. When his father died, he was only 2 years old and moved with his mother to Germany. +Needs Votehttp://en.wikipedia.org/wiki/John_Henry_Mackayhttp://www.dadaweb.de/wiki/John_Henry_MackayHenry John MackayJ. H. MackayJ. H. MackyJ.H. MackayJohn H. MackayJohn Henry MacKayMacKayMackayMakayД. Г. Маккей + +886430Antonio SommaItalian playwright and librettist, born 28 August 1809 in Udine, Italy and died 8 August 1864 in Venice, Italy.Needs Votehttp://en.wikipedia.org/wiki/Antonio_SommaA. SommaSommaSommeSommerА. Сомма + +886435Salvatore CammaranoItalian librettist and playwright, born 19 March 1801 in Naples, Italy and died 17 July 1852 in Naples, Italy.Needs Votehttps://adp.library.ucsb.edu/names/102673CamaranoCammaranoCammaronCammeranoCommanareF. CammaronaS CammaranoS. CamarranoS. CammaranoS. CammarantoS.CammaronoSalvadore CammaranoSalvatore CammaroneС. КаммараноСалваторе КамариноСальваторе Каммарано + +886459Kazuko Katagiri片桐和子 (Katagiri Kazuko)Japanese female lyricist, translator, singer. + +For nursery rhyme singer of same family name and first name, see [a8010447].Needs Votehttp://www.mywaynow.com/profile.htmlhttps://ja.wikipedia.org/wiki/%E7%89%87%E6%A1%90%E5%92%8C%E5%AD%90_%28%E4%BD%9C%E8%A9%9E%E5%AE%B6%29K. KatagiriK.KatagiriК. Катагири片桐 和子片桐和子片桐敦子片桐和子 + +886906Eddie BernardEdouard Bernard"Eddie" or "Eddy" Bernard (actually Edouard Bernard, born February 18, 1927, † February 15, 1984) was a French jazz pianist of swing, later modern jazz. +"Eddie" Bernard started playing the piano at the age of five and had classical piano lessons at the age of nine. Early influences were Fats Waller, Earl Hines and Erroll Garner. After the liberation of Paris in 1944, he played with the saxophonist Michel de Villers in the Badinage jazz club; In 1945 he worked with Villers, Hubert Fol and Boris Vian. Then in 1946 Django Reinhardt brought him into his band; At his Blue Star Session on April 16, 1947, when the two tracks "Minor Blues" and "Peche à la Mouche" were recorded, Reinhardt added the piano to his sextet. Bernard then played with Alix Combelle, in 1949 with Sidney Bechet. In 1959 he performed with Claude Luter in Hamburg, in 1965 in Paris with Stuff Smith.Needs VoteBernardE. BernardEddie BarnardEddy - BernardEddy BermordEddy BernardEddie Bernard TrioQuintette Du Hot Club De FranceSidney Bechet And His New Orleans FeetwarmersDjango's MusicDjango Reinhardt Et Son QuintetteDjango Reinhardt Et Son Orchestre Du Boeuf Sur Le ToitStuff Smith QuartetAndré Réwéliotty Et Son OrchestreMarc Laferrière Et Son OrchestreQuartett Eddie BernardMarc Laferrière Et Ses New-Orleans StompersEddie Bernard Big Band + +886911Mowgli JospinMaurice JospinJazz trombone player.Needs Vote"Mowgli" JospinJospin MowgliM. JospinMowgly JospinMezz Mezzrow And His OrchestraClaude Luter Et Son OrchestreClaude Luter Et Ses LorientaisMowgli Jospin And His High Society Jazz Band + +886987Miloš Petrović (2)Miloš PetrovićViolin player from Kragujevac, Serbia.Needs Votehttp://www.petrovicmilos.comProf. Doc. Miloš PetrovićBamberger Symphoniker + +887549Michel LaurentMichel Taïeb Tunisian-born French singer and songwriter. +Born December 25, 1944 in Tunis – died May 5, 2023 in ParisNeeds VoteLaurantLaurentLaurent MLourentM. LaurentM. Laurent - TaïebM. Laurent-TaiebM. LourentM. TaiebM. ローランM.LaurentMichel Laurent - TaïebMichel Laurent/TaiebMichel LeurentMichel LourentMichel TaiebローランAl TaïebMichel Taïeb + +887550Joe BaratiTrombonistNeeds VoteJo BaratiJoe BarattiJoseph BaratiWoody Herman And His OrchestraThe Woody Herman Big BandThe Jazz SurgeStephen Guerra Big BandThe Terry Myers Orchestra + +887610Aldo CeccatoItalian conductor (born 18. February 1934 in Milan).Needs Votehttp://en.wikipedia.org/wiki/Aldo_CeccatoAlco CeccatoCeccatoАлдо ЧекатоАльдо Чеккатоアルド・チェッカートBergen Filharmoniske OrkesterOrquesta Nacional De España + +888189James CannadyJazz guitaristNeeds VoteJ. CannadyJim CannadyJimmie CannadyJimmy CanadyJimmy CannadyLucky Millinder And His OrchestraBenny Carter And His OrchestraThe Ben Webster Quintet + +888190Paul RicciAmerican jazz saxophonist (alto, tenor and baritone) and clarinetist, born April 6, 1914 in New York. +Ricci's many recordings were made mainly with big bands, such as those of [a=Benny Goodman] (1954) and [a=Dizzy Gillespie] (1960).Needs VoteP. RicciPaul J. RicciLouis Armstrong And His OrchestraClaude Thornhill And His OrchestraRuss Morgan And His OrchestraWill Bradley And His OrchestraToots Camarata And His OrchestraThe Charleston City All-StarsYank Lawson And His OrchestraJerry Gray And His OrchestraBrad Gowans And His New York NineWill Bradley and HIs Jazz OctetDeane Kincaide's Band + +888261Douglas NasrawiAmerican classical tenor.CorrectNasrawiLes Arts FlorissantsThe Harp ConsortEnsemble europeen William Byrd + +888262Erin HeadleyErin Headley is an American Lirone, Viol & Viola da gamba instrumentalist, teacher, and director of several early music groups. She teaches at the University of Southampton in England.Needs Votehttps://en.wikipedia.org/wiki/Erin_HeadleyHeadleyLes Arts FlorissantsThe Chamber Orchestra Of EuropeLe Concert D'AstréeThe Consort Of MusickeCirca 1500SonnerieEnsemble Les ElémentsTragicomediaConcerto PalatinoArcangeloLondon Pro MusicaAtalanteBoston Early Music Festival OrchestraTirami Su (2) + +888264Stephen StubbsTheorbist, lutenist, conductor and musical director, born in 1951 in Seattle, since 1981 he has been teaching at the University of the Arts Bremen in Germany. Husband of [a2936367].Needs Votehttps://stephenstubbs.com/https://www.facebook.com/seattlestubbs/https://www.facebook.com/stephen.stubbs.90https://en.wikipedia.org/wiki/Stephen_StubbsS. StubbsStephan StubbsStubbsLes Arts FlorissantsLa Capella Reial De CatalunyaSonnerieTragicomediaConcerto PalatinoThe Dowland ProjectTeatro LiricoMusicalische CompagneyEnsemble Da SonarKees Boeke ConsortMusica Antiqua ProvenceTheatre Of Early MusicBoston Early Music Festival OrchestraFiori MusicaliLes Voix BaroquesPacific Music Works + +888399Tobias VogelmannOboist, born 1973 in Heilbronn, Germany.CorrectSymphonie-Orchester Des Bayerischen Rundfunks + +888401Bernd HerberGerman violinist, born 1951 in Munich, Germany. He was a member of the [a604396] from 1975 to 2016.Needs VoteBayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen Rundfunks + +888402Rainer SeidelRainer SeidelGerman bassoonist. He's born 1954 in Plauen and studied with [a1443567] in Munich. In 1976 he was member of the Weltjugendorchster; from 1977 to 2020 a member of [a604396]. In 1979 he got the 3rd price at the International Musician Contest in Ankona; in 1982 he was bronze medalist at the International Bassoonist Contest in Toulon.Needs VoteR. SeidelSymphonie-Orchester Des Bayerischen RundfunksResidenz Kammerorchester MünchenBach-Collegium MünchenConcertino München + +888407Winfried GrabeViolinist, born 1963 in Munich, Germany.CorrectMünchener Bach-OrchesterAmati-Ensemble München + +888408Mathias SchesslViola player, born 1967 in Munich, Germany. He's the son of [a1443564].CorrectSymphonie-Orchester Des Bayerischen RundfunksCamerata Academica SalzburgTonhalle-Orchester Zürich + +888414Romano GandolfiRomano GandolfiItalian chorus master, born 5 May 1934 in Medesano, Italy and died 18 February 2006 in Medesano, Italy. He was the chorus master of the [a900979] from 1971 to 1983 and [a2521828].Needs VoteGandolfiMaestro Romano GandolfiРомано ГандольфиCoro Del Teatro Alla ScalaCoro Del Teatro De La Zarzuela + +888440Blanche CallowayBlanche Dorothea Jones CallowayJazz singer, bandleader, composer, and disc-jockey. +Born 9 February 9, 1902, in Rochester, New York, U.S.A. +Died December 16, 1978, in Baltimore, Maryland, U.S.A. +Appeared as a disc-jockey on WMBM-AM, in Baltimore, during the 1930s. +She was one of six children (three boys, three girls), one of her younger brothers being [a=Cab Calloway]. Died from breast cancer, aged 76. +Needs Votehttp://en.wikipedia.org/wiki/Blanche_Callowayhttps://adp.library.ucsb.edu/names/109163CallowayReuben "River" Reeves & His River BoysBlanche Calloway And Her Joy BoysBlanche Calloway And Her Orchestra + +888615Louis GanneLouis-Gaston GanneLouis Ganne was a French composer and conductor, who became known in particular with stage works and marches. + +Born: April 5th, 1862 at Buxières-les-Mines, Allier, France +Died: July 13-14th, 1923 at Paris, France +Needs VoteCanneG. L. GanneGaneGanneGannesGannéGunster Louis GanneGustave GanneGustave L. GanneGustave Louis GanneGustave Louis GannéL. CanneL. GanneL. ganneL.GanneLoius GanneLouis G. GanneLouis GannesLouis GaumLouis-GanneLouis-Gaston GanneГанна + +888659David WatkinDavid Watkin (May 8, 1965 in Crowthorne, Berkshire, UK - May 2025) was a Britsh classical cellist, conductor and pedagogue.Needs Votehttps://web.archive.org/web/20220331002327/http://www.davidwatkin.com/https://www.linkedin.com/in/david-watkin-b0218736/https://www.rcs.ac.uk/bio/professor-david-watkin/https://www.bach-cantatas.com/Bio/Watkin-David.htmDavid WatkinsNew London ConsortThe Parley Of InstrumentsOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicScottish Chamber OrchestraThe King's ConsortThe Chandos Baroque PlayersMusica Da CameraEroica QuartetThe English Concert + +888660Howard BeachHoward Beach (born 10 December 1966) is a British harpsichord player and previously a member of baroque group Red Priest. Needs VoteLes Arts FlorissantsMusica Da Camera + +888766Mike Brewer (2)Michael C. BrewerMichael Curtis Brewer (born 1945) is a former British music teacher and choral conductor. He was the founding musical director of the National Youth Choirs of Great Britain and had been Director of Music for Chetham's School of Music in the 1980s and early 1990s. He was appointed an Officer of the Order of the British Empire in 1995, but was stripped of the honour in 2013 following his conviction on five counts of indecent assault against a girl who had been one of his pupils.Needs Votehttps://en.wikipedia.org/wiki/Michael_C._BrewerMichael BrewerMike Brewer OBENational Youth Choir Of Great Britain + +888772National Youth Choir Of Great BritainNational Youth Choir, formerly known as the National Youth Choirs of Great Britain and the British Youth Choir, is a family of choirs for outstanding young singers, and those with outstanding potential, in the United Kingdom. It comprises five choirs for around 900 children and young people between the ages of 9 and 25:Needs Votehttp://www.nationalyouthchoir.org.ukFellows Of The National Youth Choirs Of Great BritainGreat BritainNational Youth ChoirThe National Youth Choir Of Great Britainイギリス・ナショナル・ユース合唱団Mike Brewer (2)Rebekah JonesJoanna GoldsmithNational Youth Choir Fellowship Ensemble + +888776Neil PercyClassical and jazz percussionist. +He attended the [l290263]. Principal Percussionist for the [a=London Symphony Orchestra] since 1990 and Head of Timpani & Percussion at the [l527847] since 2000. +Neil has worked with many composers for film scores, most notably [url=http://www.discogs.com/artist/John+Williams+(4)]John Williams[/url], [a=James Horner] and [a=Patrick Doyle], and with major pop and jazz artists including [a=Herbie Hancock], [a=Elvis Costello], [a=Natalie Cole], [a=Dave Brubeck], [a=Tony Bennett], [a=Luther Vandross] and [a=Vince Mendoza]. +Needs Votehttp://www.neilpercy.com/https://mobile.twitter.com/neilpercylsohttps://www.instagram.com/neilpercy_/?hl=enhttps://www.linkedin.com/in/neil-percy-373b6b98/?originalSubdomain=ukhttps://open.spotify.com/artist/6WEAbfAPnF89kxTzlPvab9https://music.apple.com/us/artist/neil-percy/67801907https://www.feenotes.com/database/artists/percy-neil/https://musicacademy.org/big-profiles/neil-percy/https://lso.co.uk/orchestra/players/timpani-and-percussion.htmlhttps://www.ram.ac.uk/people/neil-percyhttps://www.imdb.com/name/nm5430263/https://vgmdb.net/artist/22967London Symphony OrchestraThe SkirmishersLSO Percussion Ensemble + +888782Jimmy FlynnTenor - Jazz, Popular, Novelty - 1920s USANeeds VoteFlynnJ. FlynnBroadway Bell-Hops + +889053Jeff UusitaloTrombone player.Needs VoteJeff UusilatoJeff UustilloJeffrey Russel UusitalaJeffrey Russell UusitaleStan Kenton And His OrchestraDave Barduhn Big BandBobby Torres EnsembleEzra Weiss Big Band + +889171Boris LivschitzClassical violinist, born in Vilnius, Lithuania.Needs VoteThe Zurich String TrioThe Zurich String QuintetZurich Opera OrchestraTrio Livschitz + +889172Zvi LivschitzViola player.Needs VoteThe Zurich String TrioThe Zurich String QuintetTrio Livschitz + +889174The Zurich String TrioCorrectBoris LivschitzZvi LivschitzMikayel Hakhnazaryan + +889186Dan BurleyDan Burley (November 7, 1907 – October 29, 1962) was an American pianist and journalist. Burley recorded with Leonard Feather and Tiny Grimes in 1945 and with Lionel Hampton in 1946. That same year, he put together Dan Burley & His Skiffle Boys, an ensemble that included Brownie McGhee and his brother Stick as well as Pops Foster among its members. Burley also recorded with Hot Lips Page, Tyree Glenn, and Baby Dodds during the course of his career.Needs Votehttps://adp.library.ucsb.edu/names/110781B. BurlyBurleyD. BurleyD. BurlyDante BurleyMilesPurleySimmsLionel Hampton And His QuartetDan Burley And His Skiffle Boys + +889371Jewell GrantJoe GrantSaxophonist.CorrectJ. GrantJewel GrantJewell L. GrantJoe "Jewell" GrantJoe ”Jewell” GrantQuincy Jones And His OrchestraThe Glenn Miller OrchestraBenny Carter And His OrchestraLucky Thompson's All Stars + +889695Marjukka NenonenCorrect + +889696Ulf HästbackaUlf HästbackaBorn August 5th, 1945 in Teerijärvi, Finland. Died April 22nd, 1991 in Helsinki, Finland. A Finnish violinist.Needs VoteUlf Hästbackan Jousikvartetti + +889697Seppo LintunenNeeds VoteThe Otto Donner Element All Stars + +889698Pentti YlönenCorrect + +889701Pauli GranfeltPauli Henrik GranfeltFinnish musician (violin, trumpet, trombone, guitar, mandolin), arranger and producer, born July 9, 1921 in Helsinki, Finland; died September 23, 2005 in Helsinki, Finland. Son of [a13383807]Needs VoteGranfeltP. GranfeltPaul GranfeltPauli GranfeldPave GranfeltPauli Granfeltin YhtyeBackmanin OrkesteriThe ChlorophylliesJanatuisen JatsiyhtyePave Granfeltin PelimannitPaven PaussiveikotSyntikaatin Kuoro Ja OrkesteriPauli Granfeltin Studio-OrkesteriSolistiyhtye Humina + +889703Erkki InkinenBariton Saxophone & ClarinetNeeds VoteErkki Johan InkinenBig Band PartisaanitErkki Inkisen JousetSeurasaaren Pelimannit + +889704Unto MerjanenCorrect + +889706Wolde JussilaWladimir JussilaA Finnish violinist. Born on November 1. 1912, dead on April 6. 1980.Needs VoteVolde JussilaWolde Jussilan sekstetti & SolistikuoroWolde Jussilan Mustalaisorkesteri + +889710Tauno TiikkainenFinnish violinist.Needs VoteTauno TiikkanenTauno TikkanenTauno Tiikkaisen JousiryhmäBig Band PartisaanitSeurasaaren Pelimannit + +889711Timo VartiainenTimo VartiainenFinnish violinist. Born on April 5, 1938 in Kuopio, Finland and died on July 5, 2017 in Suonenjoki, Finland.Needs VoteTimo I. Vartiainen + +889713Olavi HaapalainenCorrectO. Haapalainen + +889715Gusse RössiGustaf Olavi RössiFinnish jazz saxophonist, born April 28th, 1928 in Turku, Finland; died June 30th, 1997 in Helsinki, Finland.Needs VoteRössiDDT JazzbandScandia All-StarsGusse Rössi QuartetGusse Rössi Quintet + +889717Jaakko SantasaloJaakko Juhani SantasaloFinnish violinist. Born on May 13, 1932 and died on July 23, 2018.Needs Vote + +889836Gabriele Santini (2)Italian conductor, born 20 January 1886 in Perugia, Italy and died 13 November 1964 in Rome, Italy.Needs Votehttps://adp.library.ucsb.edu/names/355163https://it.wikipedia.org/wiki/Gabriele_SantiniG. SantiniG. santiniGabriel SantiniGabriele SantiniGabrieli SantiniGabriella SantiniM.o Gabriele SantiniM° Gabriele SantiniSantiniГ. Сантини + +889925Paul Campbell (5)TrumpeterNeeds VoteCydner CampbellPaul CambellPaul CampellCount Basie OrchestraFats Waller & His RhythmLes Hite And His OrchestraLester & Lee Young's Orchestra + +890065Warren D. SmithWarren Doyle SmithAmerican jazz trombonist, born May 17, 1908 in Middlebourne, West Virginian, USA, died August 28, 1975 in Santa Barbara, California, USA. +Moved with family to Dallas in 1920, where he first worked as a saxophonist. Took up trombone, played in Chicago with [a=Abe Lyman] 1928-1935, toured and recorded with [a=Bob Crosby] 1936-1940. Between 1940 and 1945 performed in Chicago area with [a=Wingy Manone] and others. Then moved to California, working again with Crosby 1945, with [a=Pete Daily] 1947-1949, [a=Lu Watters] 1949-1950, [a=Jess Stacy] 1950 and [a=Nappy Lamare] 1951. Later with [a=Joe Darensbourg] 1957-1960. In the early 1960s joined [a=Red Nichols]. He continued to play in California up to his death.Needs Votehttps://en.wikipedia.org/wiki/Warren_Smith_(jazz_trombonist)http://www.allmusic.com/artist/p9703/biographyhttps://adp.library.ucsb.edu/names/112301SmithSmitty SmithW. SmithWarren SmithWarren Smith (9)Lu Watters And The Yerba Buena Jazz BandBob Crosby And The Bob CatsBob Crosby And His OrchestraPete Daily's Dixieland BandJoe Darensbourg And His Dixie FlyersPete Daily's Rhythm KingsOwen Fallon And His Californians + +890246Emma AmosSinger.Needs VoteThe Ambrosian Singers + +890287Alan J. PetersAlan John PetersBritish classical violinist, producer, and impresario. Died November 2, 2017. +He was a member of the [a=London Philharmonic Orchestra], the [a=Royal Philharmonic Orchestra], the [a=Philharmonia Orchestra] and was leader of the [a=Orchestra Of The Royal Opera House, Covent Garden]. As an independent record producer, he recorded hundreds of music tracks both classical and easy listening. After he retired from performing, he acted as producer for the worlds largest set of recordings with one Orchestra (Royal Philharmonic Orchestra) between 1992 and 1997, recording over 150 albums at [l264641].Needs Votehttp://onemediaip.com/news/sad-farewell-alan-peters/https://www.the-paulmccartney-project.com/artist/alan-john-peters/A. PetersA.PetersAlan J PetersAlan John PetersAlan PetersJ. PetersLondon Philharmonic OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraThe Alan Tew OrchestraOrchestra Of The Royal Opera House, Covent GardenVic Lewis And His OrchestraThe Alan Peters Orchestra And Chorus + +890290Wilhelm KlepperWilhelm Klepper (8 January 1924 - 17 July 2023) was a German violinist and composer. He's the father of [a3073157], [a3062820], [a1759856], and [a3855498].Needs VoteWilliam Klepperウィルヘルム・クレッパーBamberger SymphonikerBamberger KlavierquartettBamberger Dom-Quartett + +890339Samuel FeinzimerViolinist, born 12 January 1912 in Kharkov, Ukraine, died 6 April 1989 in Evanston, Illinois. + +Played viola with the Chicago Symphony Orchestra from 1945 until 1988. +Needs VoteSam FeinzimerChicago Symphony Orchestra + +890345Edgar MuenzerEdgar Muenzer (died July 22, 2016 aged 88) was an American violinist. He served with the [a837562] from 1956 until 2003. Brother of [a=Albert Muenzer]. +Needs VoteChicago Symphony OrchestraChicago Symphony String Quartet + +890346Richard FerrinViolin/viola player, born 1927 in Pratt, Kansas, died 23 April 2008 in Lincolnshire, Illinois. + +Member of the Chicago Symphony Orchestra 1967 - 2006. Before joining that orchestra he served as principal viola of the Seattle Symphony. +Needs VoteRichard R. FerrinRichard Royce FerrinChicago Symphony OrchestraSeattle Symphony Orchestra + +890350Charles PiklerViolinist and violist, he launched his career as a violinist with the Minnesota Orchestra in 1971, later becoming a member of the Cleveland Orchestra (1974 to 1976) and the Rotterdam Philharmonic (1976 to 1978). He joined the Chicago Symphony Orchestra in 1978, and in 1986 was named principal violist. He retired from the Chicago Symphony Orchestra in 2017, but remains an active educator. He also holds a degree in mathematics.Needs Votehttps://charlespikler.comhttps://cso.org/globalassets/about/pr-press-releases/2017-18/cso-principal-viola-charles-pikler-retires.pdfThe Cleveland OrchestraChicago Symphony OrchestraMinnesota OrchestraRotterdams Philharmonisch Orkest + +890351Frank FiataroneFrank FiataroneViolinist, born 22 October 1917, died 27 November 2007. + +Member of the Chicago Symphony Orchestra 1948 - 1996. +Needs VoteChicago Symphony Orchestra + +890352Adrian Da PratoAmerican violinist, born 21 October 1920 in Italy and died 17 March 2015.Needs VoteChicago Symphony Orchestra + +890355Robert SwanViolist. + +Played viola in the Chicago Symphony Orchestra 1972 - 2008. +Needs VoteBob SwanRobert S. SwanSwan RobertsChicago Symphony Orchestra + +890359Joyce NohClassical violinist.Needs VoteJoyce NobChicago Symphony Orchestra + +890360Barbara HaffnerAmerican cellistNeeds VoteThe Philadelphia OrchestraPenn Contemporary PlayersThe Contemporary Chamber Players Of The University Of ChicagoMusica Anima Renaissance ConsortChicago Lyric Opera OrchestraSymphony IIChicago Philharmonic + +890361Richard OldbergRichard S. OldbergRichard Oldberg (21 June 1938 - 27 December 2021) was an American french horn player. He was a member of the [a837562] from 1963 to 1993.Needs VoteRichard Olberg Jr.The Colorado Symphony OrchestraChicago Symphony Orchestra + +890414Bernhard PaumgartnerAustrian conductor, composer, musicologist and educator (* 14 November 1887 in Vienna (Wien), Austro-Hungary; † 27 July 1971 in Salzburg, Austria). +Co-founder and former president of the [l365596]. + +He conducted the Wiener [a1208567] from 1914 to 1917, and became head of the [l326345] from 1917 to 1938. There, he played a major role in the founding of the festival and has also conducted serenade concerts. + +As a composer, Bernhard Paumgartner composed operas, cantatas, songs and choirs. His songs and instrumental chamber music are still played occasionally. In 1922 he published The Taghorn, a collection of works of minstrels. As an author he was known for his biographies about Mozart and Bach. His autobiographical memories also attracted attention. + +After the Anschluss of Austria, Paumgartner was relieved of his duties as director of the Mozarteum by the National Socialists. Paumgartner spent the war years on a research assignment at the University of Vienna, and later in Florence. From 1952, Paumgartner was the founder and director of the Camerata Academica of the Mozarteum Salzburg. He was co-founder of the Association Européenne of the Conservatoire, Académies de Musique et Musikhochschulen. In 1955, he was musical director of the film adaptation of Mozart's Don Juan - Opernfilm (directed by Walter Kolm-Veltée) with the [a696225] and a large ballet. From 1960 to 1971 he was President of the Governing Board of the Salzburg Festival ([l365596]).Needs Votehttp://en.wikipedia.org/wiki/Bernhard_Paumgartnerhttps://de.wikipedia.org/wiki/Bernhard_Paumgartnerhttps://www.musiklexikon.ac.at/ml/musik_P/Paumgartner_Familie.xmlhttps://www.moz.ac.at/Institute%20%26%20Abteilungen%20%26%20Bereiche/Archiv/Biografisches%20Mosaik/Paumgartner%2C%20Bernhard.pdfhttp://www.bernhard-paumgartner.info/https://www.stadt-salzburg.at/stadtarchiv/ehrengraeberbetreuungsgraeber/prof-bernhard-paumgartner/https://wk1.staatsarchiv.at/propaganda-kuenstler-und-kpq/musik/bernhard-paumgartner/index.htmlB. PaumgartnerBaumgartnerBernard PaumgartnerBernh. PaumgartnerBernhard BaumgartnerBernhard Paumgartner, ConductorBernhardt PaumgartnerDirigent: Bernhard PaumgartnerDr. B. PaumgartnerDr. Bernhard PaumgartnerE.W. PaumgartnerHerbert PaumgartnerLtg. Bernhard PaumgartnerP. PaumgartnerPaumgartnerProf. Bernhard PaumgartnerProf. Dr. Bernhard PaumgartnerProfessor Bernhard PaumgartnerБ. ПаумгартнерБернгард Паумгартнерベルンハルト・パウムガルトナーCamerata Academica SalzburgDas Mozarteum Orchester SalzburgTonkünstler Orchestra + +890817Stephen FarrBritish organist. +He studied with Robert Munns and David Sanger in London and Cambridge. He also received tuition from [a1092510] in Haarlem and [a1397704] in Copenhagen. In 1984 he became Organ Scholar of Clare College, Cambridge. Sub-organist posts at Christ Church, Oxford and [l305642] preceded his appointment as Organist and Master of the Choristers of [l291672], a post which he held from 1999 until 2007. +He is currently Director of Music at Corpus Christi College, Cambridge, St Paul's Church Knightsbridge, London and Worcester College, Oxford.Needs Votehttp://stephenfarr.co.ukhttp://en.wikipedia.org/wiki/Stephen_FarrDunedin ConsortContrapunctus (2) + +890850Sandra ZoerOboe playerNeeds Vote + +890867Diede BrantjesClarinetist, born in 1974 in Rotterdam, Netherlands.Needs VoteDiede BrandjesRadio Filharmonisch Orkest + +890868Romke Jan WijmengaDutch hornistNeeds VoteRomke Jan WymengaRotterdams Philharmonisch Orkest + +890869Ad van ZonDutch trumpeter.CorrectRotterdams Philharmonisch Orkest + +890870José ScholteCorrect + +890871Simon WieringaCorrect + +890872Frank SteeghsDutch trumpet player and symphonic wind band conductor.Needs VoteNieuw Sinfonietta Amsterdam + +890873Bas RamselaarBas RamselaarBas Ramselaar was a Dutch classical bass. He was born 1961 in Amersfoort, The Netherlands and died on 2 July 2025 at the age of 64.Needs Votehttps://www.npoklassiek.nl/klassiek/podium/510a98a4-32f6-4d72-ab2c-73de84923361/geleifd-bassolist-bas-ramselaar-overleden-de-bas-die-bas-werdDe Nederlandse BachverenigingMusica AmphionNederlands KamerkoorCappella AugustanaLe Nuove Musiche + +890874Laura RijsewijkCorrect + +890875Randy MaxClassical percussionist.Needs Votehttp://randymax.comI FiamminghiRotterdams Philharmonisch Orkest + +890876Clara de VriesCorrect + +890877Arto HoornwegTrumpeter, born 1957 in Rotterdam, Netherlands.CorrectRotterdams Philharmonisch Orkest + +890878Jacco GroenendijkClassical trumpeterNeeds VoteConcertgebouworkestConcertgebouw Chamber OrchestraRadio Filharmonisch OrkestRadio Kamer Filharmonie + +890887Slovak SinfoniettaŠtátny komorný orchester ŽilinaSlovak chamber orchestra. Also known as “ŠKO Žilina” or “State Chamber Orchestra Žilina”. +[i]Not to be confused with [a=Slovak Chamber Orchestra].[/i]Needs Votehttps://skozilina.sk/https://sk.wikipedia.org/wiki/%C5%A0t%C3%A1tny_komorn%C3%BD_orchester_%C5%BDilinaChamber Orchestra Slovak SinfoniettaSinfonietta SlovacaSlovak Sinfonietta ZilinaSlovak Sinfonietta ŽilinaSlovak Sinfonietta, ŽilinaŠtátny Komorný Orchester Žilina + +890888Taras KrysaUkrainian classical violinist and conductorNeeds VoteThe Las Vegas Philharmonic + +890910Ian Brown (4)Classical pianist and conductor. +His musical life began as a bassoon player, eventually concentrating on the piano when he became pianist-in-residence at Southampton University. He is pianist with The Nash Ensemble since 1978. +Brother of [a=Iona Brown], [a=Timothy Brown (2)] and [a=Sally Brown (4)].Needs Votehttp://www.ianbrownclassical.comBrownI. BrownThe Nash EnsembleOrion TrioThe Villiers Piano Quartet + +890911Hans MeijerClassical oboist.Correct + +890912Simon LawmanProducer for recordings of classical music.Correct + +890913Peter GaasterlandClassical bassoonist, born in 1957.CorrectResidentie Orkest + +890923Elizabeth WallfischElizabeth WallfischAustralian violinist, known as prominent interpreter of baroque and classical repertoire, born January 28, 1952. Wife of [a990481]. Mother of [a483895], [a1342004] and [a941060].Needs Votehttp://www.hyperion-records.co.uk/artist_page.asp?name=wallfischhttp://www.earlymusic.org.uk/Performer's%20Directory/Sua-Wel/elizabethwallfis.htmlE. WallfischElisabeth WallfischWallfischЭ. УоллфишThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersTaverner PlayersRaglan Baroque PlayersL'Orfeo BarockorchesterThe Locatelli TrioConviviumThe Wallfisch Band + +890924Prof. Jakob StämpfliSwiss classical bass vocalist and educator; also worked as recording engineer; born October 26, 1934 in Bern, Switzerland and died 28 September 2014 in Thun, Switzerland.Needs Votehttp://www.bach-cantatas.com/Bio/Stampfli-Jakob.htmJ. StämpfliJacob StaempfliJacob StampfliJacob StämpfliJakob StaempfliJakob StampfliJakob SteampfliJakob StämfliJakob StämpfliJakob Stämpfli, ThunPr Jakob StaempfliPr Jakob StampfliPr. Jakob StaempfliPr. Jakob StampfliPr. Jakob StempfliPr. Jakob StämpfliPr. StaempfliProf. J. StaempfliProf. J. StämpfliProf. Jacob StämpfliProf. Jacob Stämpfli, ThunProf. Jak. StämpfliProf. Jakob StaempfliProf. Jakob Stämpfli, Hünibach-ThunProf. Jakob Stämpfli, ThunProf. Jakob Stämphli, Hünibach-ThunProfesseur Jakob StämpfliProfessor Jakob StämpfliProfessor Jakob Stämpfli, ThunStaempfliStämpfliEnsemble Vocal De Lausanne + +890925Igor OzimSlovenian classical violinist (born 9 May 1931 in Ljubljana, Slovenia; died 23 March 2024).Needs Votehttps://en.wikipedia.org/wiki/Igor_OzimI. OzimArion TrioCollegium Academicum De Genève + +890926Ilse von AlpenheimAustrian pianist (* 11 February 1927 in Innsbruck, Austria). She was married to [a834378].Needs Votehttps://de.wikipedia.org/wiki/Ilse_von_Alpenheimhttps://www.srf.ch/audio/passage/sommer-reprise-ilse-von-alpenheim-grand-old-lady-des-klaviers?id=11339702I. von AlpenheimArion Trio + +890943Jan ScifferClassical cellist.Needs VoteSpiegel String Quartet + +890944Guy PensonClassical keyboard instrumentalistNeeds VoteIl FondamentoI FiamminghiRicercar ConsortIl GardellinoLes AgrémensLa PastorellaLa CacciaEnsemble ClematisSyntagma AmiciArco Baleno EnsembleLes Enemis ConfusLes Clavecins-RéunisRedherring Baroque Ensemble + +890976Collegium Jaroslav TumaCorrectJaroslav Tuma & CollegiumJaroslav Tuma Und CollegiumMatousek,Tuma And CollegiumJaroslav Tůma + +890989Ferdinand ErblichAustrian viola player. + +Born 1946. Died March 28, 2019 in Hilversum, Netherlands. Needs VoteФердинанд ЭрблихOrlando QuartetPárkányi QuartetThomas Christian EnsembleMärkl-QuartettThe Vienna String Quintet + +890990Stefan MetzRomanian cellist, based in The Netherlands.CorrectȘtefan MetzOrlando QuartetOrlando Trio + +890992John Harding (3)ViolinistNeeds VoteJohn HardingOrlando Quartet + +890993Heinz OberdorferViolin player. Needs VoteOrlando QuartetPárkányi Quartet + +890995Rainer ZipperlingClassical cello + viola da Gamba player born in Franfurt/M. +He received his training at the Royal Academy of Music in Den Haag. His teachers were [a836105], [a898403], [a836885], and [a870792]. +Taught at the Frankfurt Academy of Music from 1986.Needs VoteReiner ZipperlingZipperlingCollegium VocaleLa Petite BandeLes Talens LyriquesLa StagioneRicercar ConsortCantus CöllnConcerto PalatinoOrchestra Of The 18th CenturyCamerata KölnCappella ColoniensisLe Concert FrançaisOltremontanoDas Kleine KonzertFons MusicaeConcert SpirituelLes BuffardinsEnsemble Vintage Köln + +890996Jérôme LejeuneFrench violist, producer of classical recordings + liner notes authorNeeds VoteJerome LejeuneJérome LejeuneJérômeMusica AureaEnsemble ClematisEnsemble Mare Nostrum + +890997François FernandezFrench classical violinist (born 22nd February 1960 in Rouen).Needs VoteFrancois Fernandezフランソワ・フェルナンデスLes Arts FlorissantsLa Chapelle RoyaleLa Grande Ecurié Et La Chambre Du RoyLa Petite BandeLes Talens LyriquesRicercar ConsortOrchestra Of The 18th CenturyLes Sacqueboutiers De ToulouseLe Concert FrançaisLes Basses RéuniesBaroque OrchestraEnsemble La FeniceL'Armonia SonoraKuijken QuartetFons MusicaeLes MuffattiThe Kuijken EnsembleEnsemble La Chimera + +891105T. Texas TylerDavid Luke MyrickBorn: June 20, 1916, Mena, Arkansas, USA +Died: January 28, 1972, Springfield, Missouri, USA + +An American country music singer and songwriter primarily known for his 1948 hit, "The Deck of Cards". + +Tyler wrote and recorded "The Deck of Cards" in 1948. The spoken-word hit single, which was his biggest hit, tells the story of a World War II soldier who explains how a deck of playing cards serves him as a Bible, an almanac and a prayer book. He followed that smash with another recitation, the tear-wrenching Mary Jean Shurtz composition "Dad Gave My Dog Away". His popularity resulted in a booking at New York City's Carnegie Hall.Needs Votehttp://en.wikipedia.org/wiki/T._Texas_Tylerhttp://tjscountry.forumotion.com/t2132-t-texas-tyler-discography?highlight=Texas+Tylerhttps://adp.library.ucsb.edu/names/210357"T" Texas Tyler"T" Texas Tyler The Man With A Million Friends"T." Texas TylerG. TylerT TExas TylerT Texas TylerT-Texas TylerT. "Texas" TylerT. T. TylerT. Tex TylerT. Texas / TylerT. Texas TylarT. Texas Tyler "The Man With A Million Friends"T. Texas/TylerT. TylerT.T. TylerT.T.TylerT.Texas TylerTex TylerTexas T. TylerTexas TylerTexas/TylerTylerTyler T TexasW. TylerDavid Luke Myrick + +891200Georg SchmidGerman Viola player (1907-1984)Needs VoteG. SchmidGeorg SchmidtGeorge SchmidProf. Georg SchmidtSymphonie-Orchester Des Bayerischen RundfunksCollegium AureumOrchestre Pro Arte De MunichMainzer KammerorchesterKehr-TrioStross-QuartettMünchner Streichquartett + +891202Susanne LautenbacherGerman violinist and university lecturer (* 19 April 1932 in Augsburg, German Empire - died 15 September 2020). +She is considered a pioneer interpreter of Baroque violin music and taught for many years as Professor for Violin at the Musikhochschule Stuttgart (Stuttgart Conservatory).Needs Votehttp://en.wikipedia.org/wiki/Susanne_Lautenbacherhttps://www.bach-cantatas.com/Bio/Lautenbacher-Susanne.htmLautenbacherS. LautenbacherSusan LautenbacherSusanne LautenbachesSusanne LauttenbacherSusi LautenbacherSuzanne Lautenbacherスザンヌ・ローテンバゥアースザンヌ・ローテンバウアーCollegium AureumBachcollegium StuttgartWürttembergisches KammerorchesterStuttgarter SolistenMainzer KammerorchesterTrio Bell'ArteBell' Arte EnsembleJoachim-Koeckert-QuartettPaul Angerer Ensemble + +891211Jacek KlimkiewiczPolish classical violinist, born in Warsaw.Needs Votehttp://www.jacek-klimkiewicz.eu/Jacek_Klimkiewicz/Biography.htmlSonare QuartetBeethovenQuartett + +891212Hideko KobayashiClassical viola player and pedagogue, born in Tokyo.Needs VoteSonare QuartetBeethovenQuartett + +891213Laurentius BonitzGerman classical violinist (1950–2016). Artistic Director of Bonitz Music Network ([l848112])Needs VoteSonare QuartetThe Panorama QuartetBeethovenQuartett + +891215Fritz NeumeyerGerman cembalist, pianist and composer, born July 2, 1900, died January 16, 1983.Needs Votehttp://de.wikipedia.org/wiki/Fritz_Neumeyerhttps://www.bach-cantatas.com/Bio/Neumeyer-Fritz.htmF. NeumeyerF. NeymeyerFitz NeumeyerFritz NezmeyerNeumeierNeumeyerProf. F. NeumeyerProf. Fritz NeumeyerStaatsorchester StuttgartCollegium AureumCollegium TerpsichoreCappella ColoniensisDie Wiener Solisten + +891221Ruxandra ConstantinoviciClassical violinist.Needs VoteSonare Quartet + +891222Marius NichiteanuRomanian violist, born 3 July 1958 in Nucet, Dâmbovița, Romania and died 5 March 2014 in Hamburg, Germany.Needs VoteSonare QuartetNDR Sinfonieorchester + +891254Ron EphratViolinist, born in Israel.Needs VoteA. EphratAmati Chamber OrchestraSharon QuartetRotterdams Philharmonisch OrkestAmati String TrioAmati Chamber Ensemble + +891255Alexander HülshoffGerman cellist, born in 1969.Needs Votehttp://www.alexander-huelshoff.de/Sharon QuartetAmati String TrioAmati Chamber EnsembleBundesjugendorchesterTrio Bamberg + +891256Rodica CiocoiuViolinistNeeds VoteRodica-Daniela CiocoiuSharon QuartetSinfonieorchester Aachen + +891267Ed SpanjaardEduard Philip SpanjaardDutch pianist and conductor, born 22 December 1948. +He has been the principal conductor of the Nieuw Ensemble since 1982.Correcthttp://www.edspanjaard.nlE. SpanjaardEd. SpanjaardSpanjaardNieuw Ensemble + +891269European SinfoniettaCorrectKathryn Saunders + +891270Miranda van KralingenLiliane Miranda Nicolette van KralingenDutch operatic soprano, born 1960 in Oosterbeek, The Netherlands.Correcthttp://www.mirandavankralingen.nl/MirandaMiranda v. Kralingen + +891277Wilhelm KeitelGerman conductor (* 02 February 1951 in Schwäbisch Hall, Germany). + +[b]Do not confuse with the German field marshal [a2147469][/b] + +. +Needs Votehttp://www.wilhelm-keitel.de/https://de.wikipedia.org/wiki/Wilhelm_Keitel_(Dirigent)W. KeitelВильгельм Кейтель + +891278Marcel ReijansDutch tenor, born 1964.Needs Votehttp://www.marcelreijans.com/Marcel ReyansFrommermann + +891287Caroline VitaleCorrect + +891288Christian TchelebievCorrect + +891289Ezio Maria TisiItalian opera vocalist (baritone).Needs Vote + +891320Klamer Eberhard Karl SchmidtGerman poet and jurist (born 29 December 1746 in Halberstadt - died 8 January 1824 in Halberstadt).Correcthttp://de.wikipedia.org/wiki/Klamer_Eberhard_Karl_SchmidtK. E. K. SchmidtK.E.K. SchmidtKlamer Eberhard Carl SchmidtKlamer SchmidtKlamer-SchmidtSchmidt + +891321Antoine Houdart de la MotteNeeds Votehttps://fr.wikipedia.org/wiki/Antoine_Houdar_de_La_MotteA. H. de la MotteA. Houdart de la MotteA.H. de la MotteAntoine Houdar De La MotteAntoine Houdar De LamotteAntoine HoudartAntonie Houdar De LamotteDe La MotteDe la MotteHoudard de la MotteLamotheLamotteMonsieur De La Mottede la Motte + +891322Ludwig Heinrich Christoph HöltyLudwig Christoph Heinrich HöltyGerman poet. + +He was born 21 December 1748 in Mariensee, Germany and died 1 September 1776 in Hanover, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Ludwig_Christoph_Heinrich_H%C3%B6ltyhttps://adp.library.ucsb.edu/names/116331HoltyHöllyHöltyI. HoltbyL. C. H. HöltyL. Ch. H. HöltyL. Chr. H. HöltyL. Chr.H. HöltyL. H. A. HöltyL. H. C. HöltyL. H. Chr. HöltyL. H. HöltyL. HöltyL.H. Ch. HoltyL.H.A.HöltyL.H.C HöltyL.H.C. HöltyL.HoltyLudwigLudwig Christoph Heinrich HoeltyLudwig Christoph Heinrich HöltyLudwig Christoph HöltyLudwig H. C. HöltyLudwig H. Chr. HöltyLudwig H.C. HöltyLudwig Heinrich HöltyLudwig HoltyLudwig HöltyLudwig-Heinrich-Christian HöltyЛ. Хёльти + +891323Johann Timotheus HermesJohann Timotheus HermesGerman poet and Protestant theologian, born 31 May 1738 in Petznick, Pomerania (today Poland), ded 24 July 1821 in Breslau, Lower Silesia (today Poland).CorrectJ. T. HermesJ. Tim. HermesJ.T. HermesJohann T. Hermes + +891324Ludwig Friedrich LenzCorrectL. F. LenzL.F. Lenz + +891325Christian Felix WeißeGerman writer and pedagogue (Annaberg-Buchholz, 28 January 1726 – Stötteritz, 16 December 1804).Needs Votehttps://en.wikipedia.org/wiki/Christian_Felix_Wei%C3%9FeC. F. WeisseC. F. WeißeC.F. WeisseC.F. WeißeCh. F. WeisseCh. F. WeißeChr. F. WeisseChr. F. WeißeChristian F. WeißeChristian Felix WeisseChristian Friedrich WeisseChristian Friedrich WeißeWeisseWeißeХ. ВейссеХ.Вейссе + +891326Johann Georg JacobiGerman poet (2 September 1740 – 4 January 1814).Correcthttps://en.wikipedia.org/wiki/Johann_Georg_JacobiGeorg JacobiJ. C. JacobiJ. G. JacobiJ.C. JacobiJ.G. JacobiJacobiJohann-Georg JacobJohann-Georg JacobiИ. Якоби + +891327Joseph Franz von RatschkyJoseph Franz Ratschky (born August 21, 1757 in Vienna; † May 31, 1810 in Vienna) was an Austrian writer.Needs Votehttps://de.wikipedia.org/wiki/Joseph_Franz_RatschkyFranz Joseph RatschkyJ.F. von RatschkyJosef Franz von RatschkyJosef von RatschkyRatschkyv. Ratschky + +891328Johann Peter UzJohann Peter UzGerman poet, born 3 October 1720 in Ansbach, Germany, died 12 May 1796 in Ansbach, Germany.Needs VoteJ. P. UzJ.P. UzJoh. Peter UzUz + +891329Johannes Aloys BlumauerAloys Blumauer, occasionally. Alois Blumauer or Johannes Aloisius Blumauer, (born December 21 or 22, 1755 in Steyr; † March 16, 1798 in Vienna) was an Austrian writer during the Enlightenment period. His pseudonyms were A. Auer and Aloys Obermayer.Needs Votehttps://de.wikipedia.org/wiki/Aloys_BlumauerA. BlumauerAlois BlumauerAloys BlumauerBlumauerJ. A. BlumauerJ.A. BlumauerJohannes Alois BlumauerJohannes Alois Blumauer (1755-1798) + +891330Johann Martin MillerLyricistNeeds VoteJ. M. MillerJ. M. MüllerJ.M. MillerJoh. Martin MillerJohannes Martin MillerMiller + +891349Joachim Heinrich CampeGerman author and lyricist, born 29 June 1746, died 22 October 1818.Needs Vote?J. H. Campe?Joachim Heinrich CampeAnon./Poss. Campe?Anon./Poss. Joachim Heinrich Campe?CampeJ. H. CampeJ.H. CampeJoachim H. CompeJoachim Heinrich Campe?Joachim Heinrich von Campe + +891350Friedrich von HagedornGerman poet, born 23 April 1708 in Hamburg, Germany and died 28 October 1754 in Hamburg, Germany.Needs Votehttp://en.wikipedia.org/wiki/Friedrich_von_HagedornF. Von HagedornF. v. HagedornF. von HagedornFriedrich von HagdornHagedornVon Hagedornvon HagedornФ. Фон Хагедорн + +891352Christian Adolf OverbeckGerman lyricist, born 21 August 1755, died 9 March 1821.CorrectA. OverbeckC. A. OverbeckC.A. OverbeckC.A.OverbeckCh. A. OverbeckCh. Ad. OverbeckChr. A. OverbeckChr. Ad. OverbeckChr. Adolf OverbeckChr.A. OverbeckChristian A. OverbeckChristian Adolph OverbeckChristian OverbeckOberbeck, ChristianOverbeck + +891354Gabriele von BaumbergCorrectBaumbergG. v. BaumbergG. von BaumbergGabriele v. BaumbergVon Baumbergvon BaumbergГ. Баумберг + +891355Antoine FerrandCorrectA. FerrandFerrand + +891601Wilhelm Friedemann BachWilhelm Friedemann BachWilhelm Friedemann Bach (November 22, 1710 – July 1, 1784), eldest son of [a=Johann Sebastian Bach], was a German composer and musician who was considerably less influential than his younger brother [a=Carl Philipp Emanuel Bach] due to his troubled personality and erratic career. [a=Johann Christian Bach] is another of his younger brothers, who was also a composer.Needs Votehttps://en.wikipedia.org/wiki/Wilhelm_Friedemann_Bachhttps://de.wikipedia.org/wiki/Wilhelm_Friedemann_Bachhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/353866/Bach_Wilhelm_FriedemannBachBach W.F.F. BachFr. BachFriedeman BachFriedemannFriedemann BachV. F. BachV. F. BahsV.F. BachVilhelm Frideman BahW F BachW. - F. BachW. F. BachW. Fr. BachW. Fri. BachW. FriedemannW. Friedemann BachW. Friedmann BachW.-F. BachW.F BachW.F. BachW.F.BachW.F.バッハW.Fr. BachWFWF BachWilh. Fr. BachWilh. Friedem. BachWilhelm Freidemann BachWilhelm Friedem. BachWilhelm FriedemannWilhelm-Friedemann BachWilhelm-Friedmann BachБахВ. Ф. БахВ.Ф. БахВильгельм Фридеман БахФ. Бахヴィルヘルム・フリーデマン・バッハStadtsingechor HalleBach-Söhne + +892049Janne LouhivuoriJanne LouhivuoriA Finnish musician and producer, born on May 8, 1954 in Helsinki, Finland. Started his professional career in 1973. Son of [a=Heikki Louhivuori].Needs Votehttp://fi.wikipedia.org/wiki/Janne_LouhivuoriJ. LouhivuoriJ. LouhvuoriJanneJanne Verneri LouhivuoriLouhivuoriHerra TimoteiHurriganesThe Islanders (5)Jupu GroupBamalamaHäkäpönttöHerra Heinämäen Lato-OrkesteriHeikki Salo TulipaloRolling Rust + +892553Thomas StacyThomas Jefferson StacyEnglish hornist (b. 15 August 1938 in Little Rock, Arkansas, d. 30 April 2023 in Southampton, New York). He played with the New York Philharmonic from 1972 to 2010. Previously he played with the San Antonio Symphony and the Minnesota Orchestra.Needs Votehttp://www.thomasstacy.comhttps://symphony.org/obituary-thomas-stacy-english-horn-player-at-new-york-philharmonic-and-elsewhere-84/https://www.nytimes.com/2023/05/12/arts/music/thomas-stacy-dead.htmlTom StacyNew York PhilharmonicMinnesota OrchestraSan Antonio Symphony Orchestra + +892574Victor PontinoCellistNeeds VoteV. PontinoAstor Piazzolla Y Su Orquesta + +892575José BragatoJosé Bragato (born 12 October 1915, Udine, Italy – died 18 July 2017) was an Italian-born Argentine cellist, composer, conductor, arranger and musical archivist.Needs Votehttps://en.wikipedia.org/wiki/Jos%C3%A9_BragatoBragatoJ. BragatoJose BragatoJose BragattoJosè BragatoJosé BragattoJosé i. BragatoAstor Piazzolla Y Su Conjunto 9Astor Piazzolla Y Su OrquestaAstor Piazzolla Y Su Nuevo OctetoOrquesta Estable Del Teatro ColónOcteto Buenos AiresOrquesta Osvaldo RequenaCuarteto De Cuerdas Buenos AiresLos Astros Del TangoAstor Piazzolla, Su Bandoneon y Sus CuerdasAstor Piazzolla Y Su Sexteto Tango Nuevo + +892576Nestor PanikViolistNeeds VoteNéstor PanikAstor Piazzolla Y Su Conjunto 9Astor Piazzolla Y Su Orquesta + +892578Kicho DiazEnrique Florencio DíazArgentinian bandoneonist, contrabassist, lyricist, composer (Buenos Aires, 21 Jan.1918 - 5 Oct.1992), Enrique "Kicho" Díaz played with [a162564] and [a777470]. +Brother of [a3115623], violinist, and [url=https://www.discogs.com/artist/3464326-Pepe-Diaz]José Díaz[/url], contrabassist. + +>>> For the Chilean Jazz bassist, please use [a3115634]Needs Votehttps://es.wikipedia.org/wiki/Enrique_%22Kicho%22_D%C3%ADaz"Quicho" DiazEnrique "Kicho" DiazEnrique "Kicho" DíazEnrique DiazEnrique DíazEnrique Kicho DíazKicho DíazQuicho DiazQuicho Díazキーチョ・ディアスSexteto MayorAstor Piazzolla Y Su Conjunto 9Astor Piazzolla Y Su OrquestaQuinteto RealAstor Piazzolla Y Su Nuevo OctetoAstor Piazzolla Y Su QuintetoAníbal Troilo Y Su Orquesta TípicaAstor Piazzolla Y Su Orquesta TípicaAníbal Troilo Y Su Cuarteto + +892581Jaime GosisJaime GosisArgentinian pianist and composer +(Buenos Aires, 15 April 1913 - 26 Feb. 1975) +Needs VoteJ. GosisJame GosisAstor Piazzolla Y Su OrquestaAndre Y Su ConjuntoAstor Piazzolla Y Su Nuevo OctetoAstor Piazzolla Y Su QuintetoLos Astros Del TangoAstor Piazzolla, Su Bandoneon y Sus Cuerdas + +892583Tito BisioArgentinian vibraphone player and percussionist +brother of [a4629813] +uncle of [a777465]Needs VoteAstor Piazzolla Y Su Orquesta + +892585Antonio AgriArgentinian violinist (1939 - 1998) +in 1962 left the Orquesta Sinfónica de Rosario to join [a=Astor Piazzolla]'s first quintet. +In 1998 he won a Grammy award for his release with [a276145] "Alma de Tango (Soul Tango)".Needs VoteA. AgriAgriAntonio AgrioArgiConjunto ElectronicoAstor Piazzolla Y Su Conjunto 9Astor Piazzolla Y Su OrquestaAstor Piazzolla Y Su Nuevo OctetoAstor Piazzolla Y Su QuintetoAstor Piazzolla Y Su Quinteto Tango NuevoOrquesta Estable Del Teatro ColónLeopoldo Federico Y Su Orquesta TípicaAntonio Agri Y Su Conjunto De Arcos + +892587Arturo SchneiderArgentinean flute/sax player.Needs Vote"Aleman" SchneiderA. SchneiderA. SchnelderArturo Eric SchneiderArturo Erick SchneiderArturo SchneriderArturo ScneiderSchneiderConjunto ElectronicoAstor Piazzolla Y Su OrquestaRodolfo Mederos Y Generacion CeroRaul Garello Y Su Gran Orquesta + +892643Ellen PayneClassical violinist.Needs VoteOrchestra Of St. Luke'sEos Orchestra + +892882Sophie ColesBritish violinistCorrectExamples Of TwelvesRoyal Liverpool Philharmonic Orchestra + +893049Hervé le FlochFrench classical ViolinistNeeds VoteHerve Le FlochHerve le FlochHervé Le Floc'hOrchestre National De L'Opéra De ParisLes Solistes De FranceQuatuor Via NovaQuatuor Debussy (2) + +893051Boris ChristoffBoris Christoff (Bulgarian: Борис Христов) (May 18, 1914, Plovdiv, Bulgaria – June 28, 1993, Rome, Italy) was a Bulgarian basso opera singer. +As a young man Boris commenced to study law. Music being his chief hobby, he spent much of his leisure as a member of an amateur male voice choir. His fine voice attracted the attention of a patron of the Arts who sent him to Italy in 1942, were he studied in Rome under the famous baritone Riccardo Stracchiari. Later he went to Salzburg to study the German repertoire and at the end of the war he found himself in a displaced persons' camp. He was successful in returning to Italy and in 1946 he made his first public appearance there as a concert singer. In the autumn of the same year, the chance hearing of a broadcast led to the offer of a contract to record exclusively for "His Master's Voice". Professional operatic engagements soon followed, and by the time he was 30 years of age he had an International reputation as a worthy successor to the great Fedor Chaliapine (see [a852710]), whom he resembles closely both in the superb quality of his voice and in the vividness of his characterisation of the rôles he takes. He is now one of the principal singers at La Scala, Milan, the Metropolitan Opera House, New York, and the Royal Opera, Covent Garden. He also sung at the Edinburgh and other International Music Festivals. Needs Votehttps://borischristoff.com/https://en.wikipedia.org/wiki/Boris_Christoffhttps://www.imdb.com/name/nm1544088/B. ChristoffBoris ChistoffBoris ChristovBoris GhristoffBoris HristovBoris Ignatov HristovChristoffБ. ХристовБ. Христов / Boris ChristoffБорис Игнатов ХристовБорис КристофБорис ХристовБорис Христов / Boris Christoff + +893057Stephen BryantBritish classical violinist, leader of the [a289522]. + +For the American violinist, member of the [a=Seattle Symphony Orchestra], please use [a=Stephen Bryant (5)]Needs Votehttp://www.stephen-bryant.com/Steve BryantBBC Symphony OrchestraRoyal Philharmonic Orchestra + +893098John TruslerClassical violinist.Needs VoteJohn TrusslerCentipede (3)English Chamber OrchestraThe Delmé String QuartetEnglish String QuartetQuartet Of London + +893101Jürgen KussmaulClassical viola player and conductor, born 1944 in Mannheim, Germany. He's the brother of [a1116785] and [a893102].Needs VoteJ. KussmaulJ.KussmaulJurgen KussmaulJürgen KußmaulKussmaulDeutsche BachsolistenGürzenich-Orchester Kölner PhilharmonikerL'ArchibudelliAmsterdam Bach SoloistsThe Richard Laugs Piano QuintetDas Kussmaul-Quartett + +893192Lajos MayerMandolin player.Needs VoteLajos MeyerMayerMayer LajosЛайош МайерBudapest Strings + +893218Imogene LynnImogene Lucille JobeAmerican jazz and pop singer. +Born: September 9, 1922 in Trenton, Missouri. +Died: February 24, 2003 in Lancaster, California. +Married to [a768859] (1945-1967) (divorced). +She sang lead vocals on "Big Boy by Ray" McKinley and His Orchestra, which hit #16 on the U.S. charts in 1943. In 1944 Lynn joined Artie Shaw's band and in 1946 replaced Virginia Rees as lead female vocalist of [a1193177] (1946-7). In 1949, she became a member of The Starlighters (replacing Pauline Byrne).Needs Votehttps://en.wikipedia.org/wiki/Imogene_Lynnhttps://bandchirps.com/artist/imogene-lynn/https://www.imdb.com/name/nm1004634/https://www.allaboutjazz.com/musicians/imogene-lynn/Imoge LynnLynnThe StarlightersArtie Shaw And His OrchestraThe Merry Macs + +893241Camerata WürzburgGerman chamber orchestra founded in 1981 by [a3231460].CorrectCamerata WurzburgAnton Hubert + +893638Orlando QuartetThe Orlando Quartet was a classical music string quartet based in Amsterdam, formed in 1976 and active until 1997. +In 1998, Istvan Parkanyi, Heinz Oberdorfer, Ferdinand Erblich and cellist Michael Müller formed the Parkanyi Quartet. +First violin: +Istvan Parkanyi, of Hungary, (born in Leipzig, Germany), (1976–1984) +John Harding, born in Australia, (1985–1990) +Arvid Engegård, of Norway, (1991–1997) +Second violin: +Heinz Oberdorfer, of Germany +Viola: +Ferdinand Erblich, of Austria +Cello: +Stefan Metz, of Romania +Needs VoteCuarteto OrlandoLe Quatuor OrlandoMembers Of The Orlando QuartetOrlando KwartetPárkányi String QuartetQuatuor OrlandoThe Orlando QuartetThe Orlandon String SectionFerdinand ErblichStefan MetzJohn Harding (3)Heinz OberdorferNobuko ImaiPárkányi István + +893661Iran KosterCorrectI. KosterKosterIren Koster + +893771Sonare QuartetGerman classical string quartet ensemble formed in 1980 in Frankfurt.Needs VoteSonare QuartettSonare Quartett FrankfurtSonare-QuartettEmil KleinJacek KlimkiewiczHideko KobayashiLaurentius BonitzRuxandra ConstantinoviciMarius NichiteanuFrowald EppingerEric PlumettazReiner Schmidt (2)Laurentiu Dinka + +893785Humberto MoralesHumberto López MoralesPuerto Rican drummer, percussionist (congas) and composer. +Brother of [a=Ismael Morales] (aka [a=Esy Morales]) and [a=Noro Morales]. + +He wrote the well-received instruction book [i]Latin American Instruments And How To Play Them[/i] (1954) with his drum teacher and publisher [a313018].Needs Votehttps://en.wikipedia.org/wiki/Humberto_Moraleshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/371065/Morales_HumbertoMoralesSonny Stitt BandNoro Morales & His OrchestraHumberto Morales And His RhythmHumberto Morales And OrchestraHumberto Morales Y Su Mambo De La SelvaHumberto Morales & His Mamboleros + +893786Johnny CostelloTrumpet player and clarinetistNeeds VoteNoro Morales & His OrchestraNappy Lamare And His BandOriginal Indiana FiveBailey's Lucky SevenNappy Lamare And His Strawhat Seven + +893854Wind Soloists Of The Chamber Orchestra Of EuropeCorrectBläsersolisten Des Chamber Orchestra Of EuropeChamber Orchestra Of Europe Wind SoloistsEuropean Chamber Orchestra Wind EnsembleSoloists Of The Chamber Orchestra Of EuropeThe Wind Soloists Of The Chamber Orchestra Of EuropeWind SoloistsRobin O'NeillNick RodwellThe Chamber Orchestra Of Europe + +893898Franz Schubert Quartet Of ViennaFranz Schubert QuartettThe Franz Schubert Quartett was an Austrian string quartet, founded in 1974 by students of the Wiener Musikhochschule in Vienna.Needs Votehttps://de.wikipedia.org/wiki/Franz_Schubert_Quartetthttps://db.musicaustria.at/node/45740Franz Schubert QuartetFranz Schubert QuartettFranz Schubert Quartett Of ViennaFranz Schubert Quartett, WienFranz Schubert-QuartetQuartet Franz SchubertThe Franz Schubert String QuartetКвартет Франца ШубертаКвартет им. Франца ШубертаRudolf LeopoldFlorian ZwiauerVincent StadlmairHelge RosenkranzHartmut PascherThomas RieblMichael GebauerHarvey Thurmer + +893904Concertgebouw Chamber OrchestraNote: for the full orchestra, use [a754894]. + +The Concertgebouw Chamber Orchestra was founded in 1987. Its members come from the ranks of the world famous Royal Concertgebouw Orchestra. Prior to 1987, the Orchestra was known as the [a855758].Needs Votehttps://www.concertgebouwchamberorchestra.com/Amsterdam Concertgebouw Chamber OrchestraCKOConcertgebouw Chamber Orchestra HaarlemConcertgebouw Chamber Orchestra, AmsterdamConcertgebouw KamerorkestConcertgebouw KammerorchesterConcertgebouw OrchestraConvertgebow Chamber OrchestraHet Concertgebouw KamerorkestI Romantici Di AmsterdamNetherlands Concertgebouw Chamber OrchestraOrchestre De Chambre Du ConcertgebouwOrchestre de Chambre Du ConcertgebouwOrquesta De Camara De ConcertgebouwRoyal Concertgebouw Chamber OrchestraRoyal Concertgebouw OrchestraThe Chamber Orchestra of AmsterdamThe Concertgebouw Chamber OrchestraAmsterdams KamerorkestVesko EschkenazyEmmy VerheyJacco GroenendijkAlexei OgrintchoukJohan KrachtFred PotGuus JeukendrupFrans BlanketTony RousMachiko TakahashiJan KouwenhovenRob DirksenMichael WatermanHein WiedijkAnna De Vey MestdaghNicoline AltJeroen QuintHenriette LuytjesFrederik BoitsDerck LittelSergei DovgalioukKeiko IwataPaul Peter SpieringFerdinand HügelRoland KrämerArthur OomensBenedikt EnzlerDouwe ZuidemaRaymond RookHerre HalbertsmaLaura FrenkelMikhail JouravlevHonorine SchaefferEric van der WelIlka van Der PlasIrene KokPhilip DingenenReiko Sijpkens-ShioyamaPeter HoekstraJanke TammingaMarc Aixa SiuranaRuud BastiaanseJan van der VlietPeter SteimannTomoko KuritaKirsti GoedhartTjeerd TopLeonie BotEliška Vondráček HorehleďováLenart ZihRenée KniggeAnastasia FerulevaErik Rojas (3)Xabier BilbaoAlessandro Di GiacomoArthur OrnéeCaspar HorschMarina WatermanConcertgebouworkest + +893999Sharon Williams (2)Classical flutist & piccolo player, and teacher. +She studied at the [l290263]. She joined the [a=London Symphony Orchestra] in 2001 as Principal Piccolo, having also held the position of Principal Piccolo firstly in the [a=Hong Kong Philharmonic Orchestra] and then the [a=Royal Philharmonic Orchestra]. She has taught at [l305416].Needs Votehttps://www.feenotes.com/database/artists/williams-sharon/https://lso.co.uk/orchestra/players/woodwind.html#Flutes_and_piccolohttps://vgmdb.net/artist/22962London Symphony OrchestraRoyal Philharmonic OrchestraHong Kong Philharmonic Orchestra + +894022Arion TrioViolin, piano, celo trioNeeds VoteWalter GrimmerIgor OzimIlse von Alpenheim + +894023Sharon QuartetString quartetNeeds VoteSharon QuartettThe Sharon QuartetGil SharonRon EphratAlexander HülshoffRodica CiocoiuGeorg Haag + +894200Nobuko Imai今井信子 (いまい のぶこ Imai, Nobuko)Japanese violist, born March 18, 1943 in Tokyo, she taught as a professor at the Detmold Academy of Music from 1983 to 2003, and currently teaches at the conservatories of Amsterdam, Geneva and Sion.Needs VoteImaiN. ImaiNoboko ImaïNobuka ImaiNobuko Imaï今井信子Orlando QuartetVermeer QuartetMichelangelo String Quartet + +894398Melos Ensemble Of LondonLondon's Melos Ensemble was founded in 1950 by violist [a882842], clarinetist [a861276], flutist [a843651], and cellist [a1635712]. All its members held positions in notable orchestras and also appeared as soloists. + +It is not to be confused with the Melos Art Ensemble, a more recently formed Italian group. They are also not associated with the [a959375], a Stuttgart-based standard string quartet. + +Please use [a=Mitglieder des Melos-Ensemble] when credited as such or different language derivatives.Needs Votehttp://en.wikipedia.org/wiki/Melos_EnsembleDas Melos EnsembleEnsemble MelosMelos Chamber OrchestraMelos Chamber Orchestra, LondonMelos EnsembleMelos Ensemble LondonMelos Ensemble, LondonMelos EnsemblesMelos KammerorchesterMelos-EnsembletMelosensemblenMelosensemblen, LondonMelosensembletMembers Of Melos Ensemble Of LondonMembers Of The Melos EnsembleMembers Of The Melos Ensemble Of LondonMembers of the Melos Ensemble of LondonMembres Du Melos Ensemble Of LondonMiembros del Melos EnsembleMitglieder Des Melos EnsemblesMitglieder des Melos EnsembleMitglieder des Melos Ensemble LondonMitgliedern Des Melos EnsemblesTHe Melos Ensemble Of LondonThe Melos Chamber OrchestraThe Melos EnsembleThe Melos Ensemble Of LondonThe Melos Ensemble of LondonY Miembros De La Agrupacion Melosメロス・アンサンブルTristan FryDavid Mason (2)Alan HackerJim BuckPhilip JonesJames BladesManoug ParikianNicholas WardHugh MaguireRichard AdeneyPeter GraemeOsian EllisGervase de PeyerCecil AronowitzAdrian BeersEmanuel HurwitzWilliam WaterhouseLamar CrowsonDavid Johnson (15)Jack LeesChristopher Hyde-SmithIvor McMahonEli GorenTerence WeilSara BarringtonCyril PreedyPaul Draper (3)Neill SandersAnthony Jennings (3)Edgar Williams (3)Hilary WilsonAlfred FlaszynskiKenneth Essex (2) + +894582Bernard FoccroulleBelgian keyboard (organ, harpsichord) instrumentalist, composer and opera director (born November 23, 1953 in Liège). +Needs Votehttp://fr.wikipedia.org/wiki/Bernard_FoccroulleBernard FoccrouleBernard FocroulleFoccroulleMusiques NouvellesRicercar ConsortL'Ensemble "Faux Bourdon"Inalto + +895079Ruşen GüneşTurkish viola player, born 17 May 1940 in Ankara, Turkey, died 29 May 2020, LondonNeeds Votehttps://tr.wikipedia.org/wiki/Ru%C5%9Fen_G%C3%BCne%C5%9FD. GunnisR. GunesRusein GunesRusen GunesRusen GuneşRusen GünesRussen GunesRuşen GuneşRüsen GunesEnglish Chamber OrchestraThe London Telefilmonic OrchestraLondon String QuartetDaniele Patucchi OrchestraMichaelangelo Chamber Orchestra + +895092Robert CohenRobert CohenA cellist, conductor and teacher who made his Royal Festival Hall debut at the age of 12. Since 1999, he has been a Visiting Professor at the Royal Academy of Music and is also Professor of Advanced Cello at the Conservatorio della Svizzera Italiana in Lugano. +Son of [a=Raymond Cohen] & [a=Anthya Rael], and brother of [a=Gillian Cohen]. With his parents, they formed [a=The Cohen Trio].Needs Votehttps://www.robertcohen.info/CohenRobert CohjenRobert E CohenThe Fine Arts QuartetThe Cohen Trio + +895108Ann HobsonAnn Hobson PilotAmerican harpist, born on 6 November 1943 in Philadelphia, Pennsylvania.Needs Votehttp://www.annhobsonpilot.com/Ann Hobson PilotBoston Pops OrchestraBoston Symphony OrchestraNational Symphony OrchestraBoston Symphony Chamber Players + +895152André CluytensBelgian-born French conductor, born 26 March 1905 in Antwerpen, Belgium, died 3 June 1967 in Neuilly-sur-Seine, France. +He conducted the [a880293], [a703271] (1940s), [a3348123] (1946-1953), [a833817] (1950s), [a852709] (1960s), [a260744], [a754974], ...Needs Votehttp://en.wikipedia.org/wiki/André_Cluytenshttps://adp.library.ucsb.edu/names/362941A. CluytensAndre CluytensAndré ClutyensCluytensM. A. CluytensА. КлюитенcА. КлюитенсАндре Клюитенсアンドレ・クリュイタンスクリュイタンスBerliner PhilharmonikerOrchestre De La Société Des Concerts Du ConservatoireOrchestre National Du Capitole De ToulouseOrchestre Du Théâtre National De L'Opéra-Comique + +895161Arturo Benedetti MichelangeliItalian classical pianist, born 5 January 1920 in Brescia, Italy and died 12 June 1995 in Lugano, Switzerland. Brother of violinist Umberto Benedetti Michelangeli.Correcthttp://en.wikipedia.org/wiki/Arturo_Benedetti_Michelangelihttp://www.arturobenedettimichelangeli.com/A Benedetti MichelangeliA. B. MichelangeliA. Benedetti MichelangeliA.B. MichelangeliArm. di A. Benedetti MichelangeliArturo Benedetti MichelangliArturo Benedetti-MichelangeliArturo-Benedetti MichelangeliBenedetti MichelangeliBenedetti-MichelangeliMichelangeliА. Бенедетти МикеланджелиАртуро БенедеттиАртуро Бенедетти МикеланджелиАртуро Бенедетти МикельанджелиАртуро Бенедетти Микиланджелиアルトゥーロ・ベネデッティ・ミケランジェリアルトゥーロ・ベネデッティ・ミケランジェリ + +895375Gregor Frenkel FrankDutch actor, writer and presenter +b. March 30, 1929 in München, Germany +d. October 28, 2011 in Badhoevedorp, The Netherlands +Brother of [a=Dimitri Frenkel Frank] +Needs VoteFrankFrank FrenkelFrenkelFrenkel - FrankFrenkel FrankFrenkel-FrankFrenkelfrankG Frenkel FrankG. Frankel FrankG. FrenkelG. Frenkel FrankG. Frenkel-FrankG. Frenkel/FrankGregor G. Frenkel FrankOok Dat Nog! (2) + +895390Gareth Morris (2)Gareth Charles Walter MorrisBritish flutist, professor of flute, and author. Born 13 May 1920 in Clevedon/Somerset, UK - Died 14 February 2007. +Principal flautist of a number of London orchestras including [a=The Boyd Neel Orchestra] before joining the [a=Philharmonia Orchestra] in 1948. He was the principal flautist of this orchestra for 24 years. In 1966 Morris became chairman of the [a=New Philharmonia Orchestra]. He was Professor of the Flute at the [l527847] from 1945 to 1985. +He was best man for [a=Dennis Brain]'s wedding.Needs Votehttps://open.spotify.com/artist/03n4WlKDRxnAxVt5TUElUdhttps://en.wikipedia.org/wiki/Gareth_Morrishttps://www.theguardian.com/news/2007/feb/28/guardianobituaries.obituaries1https://www.telegraph.co.uk/news/obituaries/1545039/Gareth-Morris.htmlhttps://www.thetimes.co.uk/article/gareth-morris-8hr372rmjzchttps://twtext.com/article/1260577671182012430http://robertbigio.com/morris.htmhttps://www.famousbirthdays.com/people/gareth-morris.htmlGareth MorrisGarreth MorrisГарет МоррисГэрет МоррисPhilharmonia OrchestraThe Central Band Of The Royal Air ForceNew Philharmonia OrchestraNew Philharmonia Chamber OrchestraThe Boyd Neel OrchestraDennis Brain Wind EnsemblePrometheus EnsembleThe London Wind QuintetLondon Baroque Ensemble + +895562Roland MünchGerman organist and harpsichordist.Needs VoteR. MünchRoland MunchRoland MümchRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +895563Willi KrugGerman classical trumpeter, born 3 June 1925 in Dankerode, Germany and died 15 July 2000 in Dankerode, Germany.Needs VoteWilly KrugBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +895682Ursula DütschlerClassical harpsichord and pianoforte player. Native of Thun, Switzerland.Needs Votehttps://de.wikipedia.org/wiki/Ursula_D%C3%BCtschlerDuetschlerU. DuetschlerUrsula DeutschlerUrsula DuetschlerУ.Дейтшлер + +895708Martin HaselböckAustrian organist, conductor and composer. He was born 23 November 1954 in Vienna, Austria. +Since 2005 music director of [a6774194]. +Son of [a1565297].Needs Votehttp://www.wienerakademie.at/martin_haselboeckhttp://www.bach-cantatas.com/Bio/Haselbock-Martin.htmhttps://www.musicaangelica.org/about/artists/https://de.wikipedia.org/wiki/Martin_Haselb%C3%B6ckhttps://en.wikipedia.org/wiki/Martin_Haselböckhttps://www.imdb.com/name/nm1389734/HaselböckM. HaselböckMartin HaselbackМартин ХазельбёкWiener AkademieMusica Angelica + +895709Peter SchneyderAustrian bass vocalist, producer, and businessman from Vienna.Needs Vote + +895780Richard EtesonTenor vocalist, among other groups and solo work he sang for 10 years and over 600 concerts with The Swingle Singers until March 2010. Married to [a5304417].Needs Votehttps://www.richardetesonmusic.com/RichardThe Swingle SingersLondon VoicesTonus PeregrinusThe Brabant Ensemble + +895783Christoph WalderHorn player.Needs Votehttps://en.klangforum.at/ensemble/christoph-walderhttps://www.mdw.ac.at/ijh/?PageId=4224Klangforum WienNouvelle CuisineThe Chamber Orchestra Of EuropeHornisten Der Hochschule MozarteumHornensemble Hansjörg Angerer + +895791Christian BindeHorn player.Needs VoteBindeKlangforum WienFreiburger BarockorchesterNova StravaganzaDas Neue OrchesterNeue Düsseldorfer HofmusikCapella LeopoldinaMusicaeternaChursächsische PhilharmonieCompagnia Di PuntoL'Orfeo Bläserensemble + +895795Markus DeuterGerman oboe player, born in 1965 in Mühlheim/Ruhr, Germany.Needs Votehttps://www.feenotes.com/database/artists/deuter-markus-2nd-october1961-present/Marcus DeuterKlangforum WienMusica Antiqua KölnLe Cercle De L'Harmonie + +895797Thomas FheodoroffThomas Fheodoroff (born 1969) is an Austrian classical violinist and professor of violin at the [l1209200].Needs VoteKlangforum WienOrchester Der Wiener StaatsoperWiener PhilharmonikerConcentus Musicus WienWiener AkademieBarockorchester StuttgartHofkapelle Stuttgart + +895999Stephen LaytonEnglish [b]organist[/b] and [b]conductor[/b], born 1966 in Derby. +As a boy he was a chorister in the Choir of Winchester Cathedral. He founded the [a=Polyphony] choir in 1986, whilst organ scholar of King’s College Cambridge. He served as organist and subsequently director of music at [l414417] from 1997 to 2006. His former posts also include chief conductor of the Nederlands Kamerkoor, chief choirmaster of [a=DR VokalEnsemblet]. +He is currently musical director of the Holst Singers (since 1993), director of music at Trinity College, Cambridge (since 2006) and artistic director / principal conductor of the City of London Sinfonia (since the 2010-2011 season).Needs Votehttps://www.stephenlayton.com/https://en.wikipedia.org/wiki/Stephen_LaytonS. LaytonCity Of London SinfoniaWinchester Cathedral ChoirPolyphonyThe Holst SingersNederlands KamerkoorDR Vokalensemblet + +896005Paul CharrierClassical [b]bass[/b] vocalist.CorrectThe Choir Of Christ Church CathedralThe Brabant Ensemble + +896092Teatro Armonico StuttgartCorrect + +896116CalvertronAlex CalverElectro/Techno/House DJ & producer from Bristol, UK.Correcthttp://www.myspace.com/calvertronicahttp://soundcloud.com/calvertronhttp://twitter.com/calvertronC-TronCalvatronCalvertonCalvertron & Co.D-GenerateAlex CalverMax PaneW.M.D.KalvaSkapes (2) + +896126Joe BealJoseph Carleton BealSongwriter, best known for co-writing the popular Christmas song "Jingle Bell Rock" with [a697562].Needs Votehttps://secondhandsongs.com/artist/22033/allBealBealeBellBillBilly Joe BealJ BealJ C BealJ. BealJ. BealeJ. BeallJ. C BealJ. C. BealJ. C. BealeJ. Carlton BealJ. R. BealJ.BealJ.C. BealJoe - BealJoe BealeJoe BeallJoe BellJoel BealJosef Carelton-BealJoseph BealJoseph C. BealJoseph CarletonJoseph Carleton BealJoseph Carleton BealeJoseph Carlton BealJoseph Carlton Beale + +896230Joan BrickleyClassical viola and violin player.Needs VoteThe English Baroque SoloistsThe Academy Of Ancient MusicDeller Consort + +896231Bill TurnellClassical violin player.Needs VoteThe English Baroque Soloists + +896232Benjamin OdomClassical bass vocalist.Needs VoteBen OdomThe SixteenThe Monteverdi Choir + +896233Christopher GreenClassical bass vocalist.CorrectThe Monteverdi Choir + +896234Paul HarrhyClassical tenor vocalist.CorrectThe Monteverdi Choir + +896236Charles Stewart (2)Classical bass vocalist.CorrectCh. StewartThe Monteverdi Choir + +896237Colin MairClassical tenor vocalist.CorrectThe Monteverdi Choir + +896238David Cole (7)Countertenor.CorrectThe Monteverdi Choir + +896239Geoffrey DoltonClassical bass vocalist.CorrectThe Monteverdi Choir + +896241Matthew BrightAlto / Countertenor vocalist.Needs VoteThe Tallis ScholarsThe SixteenThe Monteverdi ChoirThe Choir Of Christ Church Cathedral + +896242William PoolEnglish Classical tenor vocalist, actor, musical theatre performer and teacher.Needs Votehttps://www.chi.ac.uk/people/william-pool/Will PoolWilliam PooleThe Monteverdi Choir + +896243Marilyn TrothClassical soprano vocalist.CorrectM. TrothThe Monteverdi Choir + +896244Madeline ThornerClassical cello player.Needs VoteMadeleine ThornerThe English Baroque Soloists + +896245John-Huw ThomasClassical tenor vocalist.CorrectThe Monteverdi Choir + +896246Simon OberstClassical bass vocalist.CorrectThe Monteverdi Choir + +896247Lyn ParkynsClassical soprano vocalist.CorrectThe Monteverdi Choir + +896249Margaret MarshallMargaret Anne MarshallScottish classical soprano, born 4 January 1949 in Stirling, Scotland, United Kingdom.Needs Votehttps://en.wikipedia.org/wiki/Margaret_Anne_MarshallM. MarshallMarshallマーガレット・マーシャル + +896436Sigfrid Karg-ElertSigfrid Karg-ElertGerman composer, pianist and teacher (* November 21, 1877 in Oberndorf am Neckar, German Empire; † April 09, 1933 in Leipzig, German Empire).Needs Votehttp://www.karg-elert.de/https://en.wikipedia.org/wiki/Sigfrid_Karg-Elerthttps://de.wikipedia.org/wiki/Sigfrid_Karg-Elerthttps://www.britannica.com/biography/Sigfrid-Karg-Elerthttps://www.bach-cantatas.com/Lib/Karg-Elert-Sigfrid.htmhttps://www.naxos.com/person/Sigfrid_Karg_Elert/19416.htmElertKarg - ElertKarg ElertKarg-ElertS Karg-ElertS. Karg-ElertSiegfrid Karg-ElertSiegfried Karg-ElertSigfr. Karg-ElertSigfrid Karg ElertSigfrid Kark-ElertSigfrid Karl-ElertSigfried Karg-ElertZ. Karg-ElertasZigfrīds Kargs-Elerts + +896679Sinfonia Of LondonSinfonia of London is an English session orchestra, founded in 1955 by [a=Muir Mathieson], was re-established in 2018 by British conductor [a=John Wilson (15)] to devote itself, at least initially, to recording projects.Needs Votehttps://sinfoniaoflondon.com/https://www.facebook.com/SinfoniaofLondonhttps://en.wikipedia.org/wiki/Sinfonia_of_LondonDas Sinfonia LondonLondon SinfoniaLondon Sinfonia OrchestraLondon SymphoniaLondoni SinfoniaLondra Sinfonia OrkestrasıOrchestraOrchestra Sinfonia Di LondraOrchestra Sinfonia Of LondonOrchestra Sinfonia di LondraOrchestra Sinfonica Di LondraOrchestra «Sinfonia Di Londra»Orchestre Baroque De LondresOrchestre Symphonique De LondresOrkestar Sinfonia Of LondonOrquesta La Sinfonia De LondresOrquesta Sinfonia De LondresOrquesta Sinfónica de LondresOrquestra Sinfonia Of LondonOrquestra Sinfónica De LondresOrquestra Sinfónica de LondresSinfonia De LondresSinfonia Di LondraSinfonia LondonSinfonia Of London Orch.Sinfonia Of London OrchestraSinfonia de LondresSinfonia di LondraSinfonias Of LondonSinfonica de LondresStrings Of Sinfonia Of LondonThe London SinfoniaThe London Sinfonia GroupThe London Symphony OrchestraThe Sinfonia Of LondonThe Sinfonia Of London OrchestraThe Sinfonia Of London String EnsembleThe Sinfonia of LondonThe Strings Of The Sinfonia Of LondonThe Symphony Of Londonシンフォニア・オブ・ロンドンロンドン・シンフォニアJohn Davies (4)Peter WillisonPatrick HallingEdward WalkerJohn BurdenAndrew McGavinGranville JonesJohn Wilson (15)John HoneymanJames MerrettLeonard HirschEileen GraingerJohn Walton (6)Ben Dawson (3)Gordon Walker (3) + +896717Elisabeth SchumannEmma Elisabeth SchumannElisabeth Schumann (13 June 1888 in Merseburg – 23 April 1952 in New York) was a German lyric soprano who sang in operas, operettas, oratorios and lieder. +She was descended from Henriette Sontag, a famous singer from Beethoven's time. In 1909 she made her debut in Hamburg, Germany. Richard Strauss heard her at the Metropolitan Opera in New York and engaged her for the Vienna State Opera, where she performed from 1919 to 1938. She was married to the conductor and pianist [a1642683], among others. +Elisabeth Schuamann made numerous recordings for the labels Favorite Record (1913), Edison Records (1915), Odeon (1917/1919), Deutsche Grammophon/Polydor (1920–1923) and His Master’s Voice (1926–1949) as well as 3 LPs for Allegro Music (1950).Needs Votehttps://de.wikipedia.org/wiki/Elisabeth_Schumannhttp://en.wikipedia.org/wiki/Elisabeth_Schumannhttps://adp.library.ucsb.edu/names/104097E. SchumannElisabeth ShumannElizabeth SchumannSchumannЭлизабет Шуман + +896858Howard CarpenterHoward Ralph CarpenterAmerican violinist, violist, composer, copyist, author and music professor. Head of the music department at Western Kentucky University from 1965 to 1975. Founding member of [a=The Nashville Strings], Principle Violinist of Nashville Symphony, recording artist in various Nashville studios. Father of [a=John Carpenter], grandfather of [a=Cody Carpenter]. + +Born October 11, 1919 in Natural Bridge, New York. +Died February 21, 2016 in Bowling Green, Kentucky. +Correcthttps://www.wku.edu/music/walloffame/index.php?memberid=5503Howard R. CarpenterHoward Ralph CarpenterThe Nashville StringsRochester Philharmonic OrchestraNashville Symphony Orchestra + +896890Jane RhodesFrench operatic soprano / mezzo-soprano, born 13 March 1929 in Paris, France and died 7 May 2011 in Neuilly-sur-Seine, France. She was married to [a=Roberto Benzi].CorrectRhodesThe Metropolitan Opera + +896995Antonino VottoItalian operatic conductor (30 October 1896 - 9 September 1985). + +Developed an extensive discography with the Teatro alla Scala in Milan during the 1950s, when EMI produced the bulk of its studio recordings featuring Maria Callas. +Needs Votehttp://en.wikipedia.org/wiki/Antonino_VottoA. VottoA.VottoAntonino VotoAntonino VottiAntonio VotoAntonio VottoM.o Antonino VottoVottoΑντονίνο ΒόττοАнтонино ВоттоАнтонио Вотто + +897150Judith NelsonJudith Anne NelsonAmerican soprano (b. September 10, 1939 (Evanston, IL, USA) - d. May 28, 2012 (San Francisco, CA, USA).Needs VoteJ. NelsonNelsonДжудит НелсонThe Hilliard EnsembleThe Monteverdi ChoirThe Academy Of Ancient MusicConcerto VocaleThe Consort Of MusickeThe Bach Ensemble + +897153Konrad JunghänelLutenist, theorbist and conductor.Needs Votehttps://www.konrad-junghaenel.de/https://www.bach-cantatas.com/Bio/Junghanel-Konrad.htmhttps://en.wikipedia.org/wiki/Konrad_Jungh%C3%A4nelJunghänelJünghanelK. JughänelK. JunghänelKonrad JunghaenelKonrad JunghanelLes Arts FlorissantsLa Chapelle RoyaleAkademie Für Alte Musik BerlinMusica Antiqua KölnConcerto VocaleConcerto KölnLa Petite BandeEnsemble Clément JanequinCantus CöllnTafelmusik Baroque OrchestraCamerata Accademica HamburgMusica Canterey BambergCollegium St. EmmeramLe Trio Royal + +897155Andrea Dell'IraItalian classical trumpeter, active since 1999.CorrectOrchestra Del Maggio Musicale Fiorentino + +897273Robert Haydon ClarkBritish classical violinist. +He studied at [l305416] (1965-1969). Former violinist with the [a212726], and conductor of the [a897274]. + +Possibly the same as [a=Robert Clark].Needs Votehttp://www.academyviolins.co.uk/aboutus.htmlhttps://www.linkedin.com/in/robert-clark-709454132/?originalSubdomain=ukhttps://soundcloud.com/roberthaydonclarkhttps://open.spotify.com/artist/4LQLDeltEpoAzRzPjsGc3mhttps://music.apple.com/us/artist/robert-haydon-clark/411949474Robert ClarkeRobert Hadon ClarkRobert Haydon ClarkeLondon Symphony OrchestraConsort Of London + +897377David ButtDavid Butt (7 January 1936 - 18 March 2025) was an English classical flautist. He was the principal flute of the [a289522] from 1960 to 1998.Needs VoteD. ButtBBC Symphony OrchestraThe Military Ensemble Of London + +897484Elton HillLeroy Elton HillArranger and big band trumpeterNeeds VoteE. HillHillLeroy Elton HillRoy Eldridge And His Orchestra + +897507Moises OblagacionNeeds VoteFreedom SoundsGerald Wilson Orchestra + +897736Kalev KuljusClassical oboist, born 18 June 1975 in Tallinn, Estonia.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraNYYD EnsembleNDR SinfonieorchesterEnsemble BluminaNDR Elbphilharmonie OrchesterEstonian Festival Orchestra + +897737Arvo LeiburEstonian classical violinist, born October 17, 1964 in Tartu.Needs VoteEstonian National Symphony OrchestraNieuw Sinfonietta Amsterdam + +897863Anja TilchClassical soprano.Needs VoteAnja TichSchola HeidelbergBalthasar-Neumann-ChorAkadêmia + +897864Benoit HallerBenoît HallerFrench classical tenor vocalist, conductor and founder & director of [a=La Chapelle Rhénane]Needs Votehttp://www.benoithaller.com/Benoît HallerBenîot HallerHallerCollegium VocaleLes PaladinsVoices From SomewhereLa Chapelle Rhénane + +897865Daniel Schreiber (2)German classical tenor vocalist, born in Neustadt an der Weinstraße, Germany.Needs VoteSchreiberLa Petite BandeChamber Choir of EuropeEx TemporeSingphonikerLa Chapelle RhénaneEnsemble OfficiumCapricornus Ensemble StuttgartGli ScarlattistiCapella Spirensis + +897866Marietta FischesserClassical vocalist.CorrectChamber Choir of Europe + +897867Manfred BittnerGerman bass-baritone, born in Weißenburg, Germany.Needs Votehttp://www.manfred-bittner.info/Chamber Choir of EuropeBalthasar-Neumann-EnsembleLa Chapelle RhénaneCapella Spirensis + +897903Anne FagerburgClassical cellistNeeds VoteSaint Louis Symphony Orchestra + +898168Mark ButlerClassical violinist.Needs VoteThe Academy Of St. Martin-in-the-FieldsChilingirian String QuartetMichaelangelo Chamber Orchestra + +898169Levon ChilingirianLevon Chilingirian OBEUK-based violinist, born 28 May 1948 to Armenian parents in Nicosia, Cyprus. +He came to Britain when he was 12 and studied at the Royal College of Music. He co-founded the [a833820] in 1971 with cellist [a626337] and was also one of the first members of The English Concert, playing in their first London concert in 1973. He played with a number of orchestras, including the [url=http://www.discogs.com/artist/Bournemouth+Symphony+Orchestra]Bournemouth Symphony Orchestra[/url], [url=http://www.discogs.com/artist/Philharmonia+Orchestra]Philharmonia Orchestra[/url], [url=http://www.discogs.com/artist/Russian+National+Orchestra]Russian National Orchestra[/url] and [url=http://www.discogs.com/artist/BBC+Philharmonic]BBC Philharmonic[/url]. +Nephew of [a=Manoug Parikian].Needs Votehttp://en.wikipedia.org/wiki/Levon_Chilingirianhttp://www.chilingirianquartet.co.uk/profiles.htm#levonhttp://www.mendelssohnonmull.com/index.php/mommentors2013/11-mendelssohnonmullmentors/36-mendelssohnonmulllevonchilingirian.htmlChilingirian String QuartetThe English Concert + +898170Simon Rowland-JonesClassical viola player.Needs Votehttp://www.simonrowlandjones.co.uk/Rowland-JonesSimon RowlandSimon Rowland JonesChilingirian String QuartetThe Academy Of Ancient MusicThe Music PartyQuartet Of LondonThe Villiers Piano Quartet + +898171Duncan McTierDouble bass player. May also be credited with photography on classical music releases.Needs VoteD. Mc.TierD. McTierDuncan Mc. TierThe Nash EnsembleThe Albion Ensemble + +898391Claude RippasSwiss classical trumpeter and educator, he was professor in Zürich.Needs Votehttp://clauderippas.ch/C. RippasC.RippasCl. RippasClaude RippersMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterBachcollegium StuttgartThe Edward Tarr Brass EnsembleMusikkollegium WinterthurTrio RippasTonhalle-Orchester Zürich + +898392Lucy van DaelDutch classical violinist, born 1946. She was married to [a=Anner Bylsma] (divorced).Needs Votehttps://en.wikipedia.org/wiki/Lucy_van_DaelLucie van DaelVan Daelvan DaelLa Petite BandeLeonhardt-ConsortL'ArchibudelliOrchestra Of The 18th CenturySmithsonian Chamber OrchestraAlma Musica AmsterdamAmsterdams Barok EnsembleBaroque OrchestraBell'Arte Antiqua + +898393Brian PollardClassical bassoonist. Former principal bassoonist of the [a=Concertgebouworkest] Orchestra. + +Father of conductor [a6917480]Needs Votehttp://www.fagotnetwerk.org/wp-content/uploads/DeFagot_201001.pdfhttps://nl.wikipedia.org/wiki/Brian_PollardB. PollardConcertgebouworkestDanzi KwintetConcerto Amsterdam + +898394Wolf ErichsonGerman supervisor, sound engineer, and producer for recordings of classical music (mostly historically informed early music). +Supervised the imprints [l=Das Alte Werk] for [l=Telefunken] and [l=Vivarte] for [l=Sony]. + +Born August 25, 1928 +Died October 18, 2019 in Lectoure, South France (aged 91)Needs Votehttps://web.archive.org/web/20040214141536/https://www.sonyclassical.com/artists/erichson/https://www.rondomagazin.de/artikel.php?artikel_id=1207ErichsonW. ErichsonW.E.Wolfgang Erichsonヴォルフ・エリクソンヴォルフ・エリクソン + +898395Pieter DhontPiet DhontDutch classical oboist born in UtrechtNeeds VoteP. D'HondtP. DhontPiet D'HondtPiet DhontPiet DontPieter DontMusica Antiqua KölnFreiburger BarockorchesterLa Petite BandeLa StagioneCamerata KölnDas Kleine KonzertNachtmusiqueHassler ConsortFiori MusicaliScala Köln + +898396Wiel PeetersDutch violin & viola instrumentalistNeeds VoteWiel PetersWil PeetersLa Petite BandeQuartetto EsterházyMusica Polyphonica + +898397Adelheid GlattAdelheid JunghänelViol player, engineer, producer and co-founder of [l96303]. She was married to [a882769].Needs VoteAdelheidRicercare-Ensemble Für Alte Musik, Zürich + +898398Bob van AsperenDutch conductor, harpsichordist, and organist +Born October 8, 1947 in Amsterdam, NetherlandsNeeds Votehttps://en.wikipedia.org/wiki/Bob_van_Asperenhttps://www.aeolus-music.com/pages/page-asperen-bob-vanhttps://www.piccolaaccademia.org/bob-van-asperen/https://web.archive.org/web/20030803213023/https://www.sonyclassical.com/artists/asperen/https://www.bach-cantatas.com/Bio/Asperen-Bob.htmhttps://www.imdb.com/name/nm0885621/B. v. AsperenBob Van AsperenBob von AsperenVan AsperenLa Petite BandeMelante AmsterdamLeonhardt-ConsortOrchestra Of The 18th CenturyConcerto AmsterdamQuadro HotteterreAlma Musica AmsterdamBaroque Orchestra + +898400Marléen ThiersClassical string instrumentalistNeeds VoteMarlecelloen ThiersMarleen ThiersLa Petite BandeMusica PolyphonicaKuijken Quartet + +898401Janneke van der MeerDutch violinist.Needs VoteAnneke v.d. MeerJ.v.d. MeerJaneke van de MeerJannecke van der MeerJanneke Van Der MerJanneke van de MeerLa Petite BandeSchoenberg QuartetAlma Musica AmsterdamMusica Polyphonica + +898402Jos KoningsClassical hornist.CorrectJ. KoningsThe Amsterdam Baroque OrchestraLa Petite Bande + +898403Anner BylsmaAnner Bylsma (né Anne Bijlsma)Anner Bylsma was a Dutch cellist. He was married to [a=Lucy van Dael] (divorced) and subsequently to [a=Vera Beths]. + +Born February 17, 1934 in The Hague, Netherlands +Died July 25, 2019 in Amsterdam, Netherlands (aged 85)Needs Votehttps://en.wikipedia.org/wiki/Anner_Bylsmahttps://web.archive.org/web/20031001101236/https://www.sonyclassical.com/artists/bylsma/https://www.bach-cantatas.com/Bio/Bylsma-Anner.htmA. BylsmaA.BylsmaAnna BylsmaAnner BijlmaAnner BijlsmaAnner ByjlsmaAnner Bylsma a. o.BylsmaConcertgebouworkestThe Academy Of Ancient MusicCollegium AureumLa Petite BandeL'ArchibudelliOrchestra Of The 18th CenturyConcerto AmsterdamQuadro Amsterdam + +898440John BowleyClassical tenorNeeds VoteBBC SingersThe Monteverdi ChoirTenebrae (10)Electronic Vocal Quartet + +898441Jonathan MortonClassical violinistNeeds Votehttps://scottishensemble.co.uk/musician/jonathan-morton/John MortonJon MortonThe London Telefilmonic OrchestraLondon SinfoniettaScottish EnsembleThe Arc Of Light OrchestraColin Currie GroupSonderling Quartet + +898543Francis AubierFrench classical TrumpeterNeeds VoteOrchestre National De L'Opéra De Paris + +898544Catherine MichelCatherine Michel-LegrandRenowned French harpist who studied harp and piano at the Conservatoire National Supérieur de Paris. She is currently Professor of Harp at the Zürcher Hochschule der Künste.Needs Votehttp://musiktheatertanz.zhdk.ch/common/bio-detail.php?id=2300773&dept=2http://www.harpmasters.com/index.php?option=com_content&task=view&id=41&Itemid=70http://www.napoleon.org/en/magazine/interviews/michel.aspCatherine MitchellMichelOrchestre National De L'Opéra De Paris + +898553Marc DesmonsMarc DesmonsFrench viola player.Needs VoteOrchestre Philharmonique De Radio FranceQuatuor AltairQuatuor GabrielEuropean Camerata + +898570Carole Saint MichelClassical violinistCorrectCarole Saint-MichelCarole St MichelCaroll Saint MichelOrchestre National De L'Opéra De Paris + +898573Michel RaisonClassical clarinetist.Needs Votehttp://www.michelraison.com/The Chamber Orchestra Of Europe + +898577Daniel MarillierFrench double bassist.Needs VoteD. MarillerOrchestre National De L'Opéra De Paris + +898580Serge BollandClassical trombonist.CorrectEnsemble Orchestral De Paris + +898583Agnes CrepelAgnès CrepelFrench violinist.CorrectA. CrepelAgnès CrepelAgnès CrépelOrchestre National De L'Opéra De Paris + +898588Anne Sophie DhenainAnne-Sophie Brioude DhenainFrench violinist.Needs VoteOrchestre Des Concerts Lamoureux + +898590Olivier GrimoinFrench violist.Needs VoteO. GrimoinOlivier GrimoisOrchestre National De L'Opéra De Paris + +898629Anja BittnerGerman operatic soprano.Needs VoteBalthasar-Neumann-ChorVocalconsort BerlinGli Scarlattisti + +898630Gabriele WundererGerman mezzo-soprano / contralto.Needs Votehttps://www.gabriele-wunderer.deChor der Bayreuther Festspiele + +898753Ray BojorquezJazz saxophonist.CorrectRamon BorjorquezGerald Wilson Orchestra + +898755Henry De VegaAlto saxophonistNeeds VoteHenry DeVegaGerald Wilson Orchestra + +898855Gulbenkian OrchestraOrquestra GulbenkianPortuguese orchestra based in Lisbon. +In 1962 the [l52544] (Calouste Gulbenkian Foundation) established a permanent orchestral body, which initially consisted of only twelve pieces (chords and continuo group), originally designated as Gulbenkian Chamber Orchestra. This collective was successively enlarged up to the point where today the Orquestra Gulbenkian (the name it has adopted since 1971) counts upon a permanent body of sixty six instrumentalists. +Needs Votehttps://gulbenkian.pt/musica/en/choir-and-orchestra/https://en.wikipedia.org/wiki/Gulbenkian_OrchestraChamber Orchestra Of LisbonChamber Orchestra Of The Guilbenkian Foundation Of LisbonChamber Orchestra Of The Gulbenkian Foundation Of LisbonChamber Orchestra of the Gulbenkian Foundation of LisbonChoeur Symphonique Et Orchestre De La Fondation Gulbenkian De LisbonneChoeur Symphonique L'Orchestre De La Fondation Gulbenkian De LisbonneChoeur Symphonique et Orchestre de la Fondation Gulbenkian de LisbonneChor & orchester der gulbenkian-stiftung, liissabonChorus & Orchestra Of The Calouste Gulbenkian Foundation, LisboaChorus And Symphony Orchestra Of The Gulpenkian Foundation, LisbonChorus Of The Gulbenkian Foundation Of LisbonChöre Und Orchester Der Gulbenkian Stiftung LissabonChœur Symphonique & Orchestre De La Fondation Gulbenkian De LisbonneChœur Symphonique Et Orchestre De La Fondation Gulbenkian De LisbonneChœurs De La Fondation Gulbenkian De LisbonneFondation Gulbenkian De LisbonneGulbenkian Chamber OrchestraGulbenkian ChoirGulbenkian Choir & OrchestraGulbenkian Choir And OrchestraGulbenkian Foundation Chamber OrchestraGulbenkian Foundation Orchestra, LisbonGulbenkian Orchestra And ChoirGulbenkian Orchestra LisbonGulbenkian Orchestra, LisbonKamerkorkest GulbenkianKamerorkest Gelbenkian StichtingKamerorkest Gulbenkian StichtingKammerorchester Der Gulbenkian Stiftung LissabonL'Orchestre GulbenkianL'orchestre De La Fondation Gulbenkian De LisbonneLe Choeur Symphonique Et L'Orchestre De La Fondation Gulbekian LissabonLisbon Gulbenkian Foundation OrchestraOrch. De Chambre de la Foundation Gulbenkian de LisbonneOrch. Of The Gulbenkian Foundation Of LisbonOrchester Der Gulbenkian Stiftung LissabonOrchestraOrchestra & Coro GulbenkianOrchestra And Choirs Of The Gulbenkian Foundation, LisbonOrchestra Da Camera Della Fondazione Gulbenkian Di LisbonaOrchestra Della Fondazione Gulbenkian Di LisbonaOrchestra GulbenkianOrchestra Of The Gulbenkain Foundation Of LisbonOrchestra Of The Gulbenkian FoundationOrchestra Of The Gulbenkian Foundation Of LisbonOrchestra Of The Gulbenkian Foundation, LisboaOrchestra Of The Gulbenkian Foundation, LisbonOrchestra Of The Gulbenkian OrchestraOrchestra da Camera della Fondazione Gulbenkian di LisbonaOrchestra of The Gulbenkian Foundation of LisbonOrchestra of the Gulbenkian FoundationOrchestra of the Gulbenkian Foundation of LisbonOrchestra, LisbonOrchestreOrchestre Da La Chambre De La Fondation Gulbenkian, LissabonOrchestre De Chambre De La Fondation Gulbenkian De LisbonneOrchestre De Chambre De la Fondation Gulbenkian De LisbonneOrchestre De Gulbenkian De LisbonneOrchestre De La Chambre De La Fondation Gulbenkian de LissaboneOrchestre De La Fondation De LisbonneOrchestre De La Fondation Glubenkian De LisbonneOrchestre De La Fondation Gulbekan De LisbonneOrchestre De La Fondation Gulbekian De LisbonneOrchestre De La Fondation GulbenkianOrchestre De La Fondation Gulbenkian De LisboneOrchestre De La Fondation Gulbenkian De LisbonneOrchestre De La Fondation Gulbenkian, LisbonneOrchestre De La Foundation Gulbenkian De LisbonneOrchestre Et Choeurs De La Fondation Gulbenkian De LisbonneOrchestre Et Chæur De La Fondation GulbenkianOrchestre GulbenkianOrchestre Gulbenkian (Lisbonne)Orchestre Gulbenkian De LisbonneOrchestre Symphonique de la Fondation Gulbenkian de LisabonneOrchestre de Chambre de la Fondation GulbenkianOrchestre de Chambre de la Fondation Gulbenkian de LisbonneOrchestre de Chambre de la GulbenkianOrchestre de la Fondation GulbenkianOrchestre de la Fondation Gulbenkian de LisbonneOrchestre de la Fondation de Gulbenkian de LisbonneOrkest Van De Gulbenkian StichtingOrkest van de Gulbenkian StichtingOrquesta Gulbenkian De LisboaOrquesta de la Fundación GulbenkianOrquestraOrquestra & Coro GulbenkianOrquestra De Câmara GulbenkianOrquestra GulbenkianOrquestra Gulbenkian LisboaOrquestra de Câmara GulbenkianSoli, Choeur & Orchestre Gulbenkian de LisbonneSoli, Chœur Symphonique & Orchestre De La Fondation Gulbenkian De LisbonneSoli, Chɶur Symphonique Et Orchestre De La Fondation Gulbenkian De LisbonneSolisten, Chor Und Orchester Der Gulbenkian-Stiftung, LissabonSolisten, Chöre Und Orchester Der Gulbenkian Stiftung LissabonSolistesSolistes, Choeur Symphonique & Orchestre De La Fondation Glubenkian De LisbonneSolistes, Choeur Symphonique & Orchestre De La Fondation Gulbenkian De LisbonneSolistes, Chœur Symphonique & Orchestre De La Fondation Gulbenkian De LisbonneSymphonic Chorus And Orchestra Of The Gulbenkian Foundation Of LisbonSymphonic Orchestra Of The Gulbenkian Foundation Of LisbonSymphonic Orchestra Of The Gulbenkian Foundation, LisbonThe Gulbenkian OrchestraThe Gulbenkian String And Horn SectionThe Lisbon Gulbenkian Foundation Chamber OrchestraОркестр «Гюльбенкян» Под Управлением Мишеля Свиржевскогоグルベンキアン管弦楽団リスボン・カルスト・グルベンキアン財団管弦楽団Alexandra MendesLawrence FosterAntoine Sibertin-BlancJeremy LakeJorge TeixeiraCecília BrancoAntónio MirandaElena RyabovaPedro PachecoBernard GabelIsabel PimentelAna Beatriz ManzanillaAmílcar GameiroMaria BalbiMario BenzecryFernando SerafimLeonor Braga SantosSamuel BarsegianPedro Ribeiro (3)Otto PereiraMarco Pereira (2)Iva BarbosaRaquel ReisNelson Alves (4)David Burt (3)Jonathan LuxtonKenneth BestCyril DupuyEsther GeorgieDavid LefèvreJoao SearaPedro CanhotoRui Sul GomesVaroujan BartikianOleguer BeltranLaurent Rossi (2)Martin Henneken + +898908Petra LabitzkeGerman operatic soprano, born in Ludwigsburg, Germany.Correcthttp://www.petra-labitzke.de/Labitzke + +898978Leonard SwainJazz bass playerCorrectHeavy SwainLeonard "Heavy" SwainLéonard SwainSwainSwanCootie Williams And His Orchestra + +899267Bläsersolisten Der Deutschen Kammerphilharmonie BremenNeeds VoteBläser Der Deutschen KammerphilharmonieBläsersolisten Der Deutschen KammerphilharmonieWind Soloists Of The Deutsche Kammerphilharmonie BremenOtis KlöberUlrich König (2)Elke Schulze-HöckelmannKilian HeroldVolker TessmannRodrigo BlumenstockUlf-Guido SchäferZia RichterJennifer Mc LeodHiginia ArruéAnne PasemannDeutsche Kammerphilharmonie Bremen + +899270Ferdinand DavidGerman virtuoso violinist and composer (19 June 1810 – 18 July 1873).Correcthttp://en.wikipedia.org/wiki/Ferdinand_David_(musician)DavidF. DavidF.DavidФ. ДавидФ.ДавидФердинанд Давид斐廸南 大衞 + +899271Georg MoosdorfOtto-Georg MoosdorfGerman violinist and conductor, founder of the [a1408086] in 1971.Needs Votehttps://de.wikipedia.org/wiki/Otto-Georg_MoosdorfGeorg MoosdurfGewandhausorchester Leipzig + +899349John Johnson (8)John Johnson (c. 1545 – 1594) was an English lutenist, composer of songs and lute music of the Renaissance period. He was attached to the court of Queen Elizabeth I. He was the father of the lutenist and composer [a687403]. +Needs Votehttps://en.wikipedia.org/wiki/John_Johnson_(composer)J. H. JohnsonJ. JohnsonJohn Johnson, LondonJohn JonsonJohnsonJohnson J.JonsonR. Johnson + +899353John Potter (2)John PotterEnglish tenor vocalist, writer and academic. +He started his career in the 70s in several avant-garde projects ([a=Swingle II], [a=Electric Phoenix], [a=New London Consort]). +After being backing vocalist for [a=Manfred Mann], [a=The Who] and [a=Mike Oldfield] among others, he joined the [a=Hilliard Ensemble] in 1984 (which he left 17 years later). +In 1989 he started the ensemble [a=Red Byrd]. +He is now a teacher in York and coaches several ensembles in Europe and in the USA.Needs Votehttps://www.john-potter.co.uk/J. PotterJPJohn PotterPotterGavin Bryars EnsembleThe Hilliard EnsembleElectric PhoenixNew London ConsortRed ByrdSwingle IIThe Dowland ProjectLondon Pro MusicaThe London Early Music GroupArmonia Concertada + +899504Zdeněk TylšarZdeněk TylšarCzech French horn player and professor (1945–2006).Needs Votehttps://en.wikipedia.org/wiki/Zden%C4%9Bk_Tyl%C5%A1arTylšar Z.Z. TylšarZdenekZdenek TylarZdenek TylsarZdenek TylšarZdenek TyslarZdenek TyšlarZdeněkZdeněk TyšlarPrague Chamber OrchestraSuk Chamber OrchestraCapella IstropolitanaZdeněk A Bedřich Tylšarové + +899541Gerhard NennemannGerman tenor, born 1960 in Ellwangen, Germany.Needs Votehttp://www.gerhardnennemann.com/home/biografie/Basler MadrigalistenCoro Della Radio Televisione Della Svizzera ItalianaModern Sound ChoirTrottoir QuartettMadrigalisti Della RSI + +899552Matthias GoerneGerman operatic bass-baritone, born 1967 in Weimar, German Democratic Republic (today Germany).Needs Votehttp://www.matthiasgoerne.com/GoerneGörneM. GoerneMatthias Görneマティアス · ゲルネ = Matthias GoerneRIAS-Kammerchor + +899562Sabina MacculiSoprano vocalist, from Milano, Italia. +Formerly from Offenbach, Germany.Needs Votehttps://www.facebook.com/sabina.macculi/Sabina Maculli + +899563Lynda RussellEnglish soprano, born 1963 in Birmingham, England, UK.CorrectLinda RussellRussellSt. John's College ChoirThe Sixteen + +899564Coro Del Centro Di Musica Antica Di PadovaCorrectCentro Musica Antica Di PadovaCoro Del Centro Musica Antica Di PadovaPatrizia VaccariEnrico VolontieriAntonio DomenighiniDaniele CarnovichAlessandro GargiuloIlaria Maria CosmaAlessandro MagagninRoberto GonellaViviana GiorgiAlberto MazzoccoLia SerafiniElisabetta TisoBianca SimoneLuigi GariboldiLivio PicottiStefano TuzzatoAugusto BellonAlina MartinelloFlavio TronchinChiara MuraroUlrike WurdakVittorino CiatoPatrizia SartoreRoberto MoroM. Teresa OrlandoHélène KuhnValentino PereraGloria CappellatoMarina BurriRoberto Teatini + +899565Peter MaagErnst Peter Johannes MaagSwiss conductor. He was born May 10, 1919 in St. Gallen, Switzerland and died April 16, 2001 in Verona, Italy. +Has recorded with: +- Orchestre de la Suisse Romande +- London Symphony Orchestra +- Orchestre de la Société des Concerts du Conservatoire +- National Philharmonic Orchestra +- Bavarian Symphony Orchestra +- Berner Symphonie-OrchesterNeeds Votehttp://www.petermaag.org/https://en.wikipedia.org/wiki/Peter_MaagLondon SymphonyMaagP. Maag + +899566Ernesto PalacioPeruvian tenor, born 19 October 1946 in Lima, Peru.Needs Votehttps://en.wikipedia.org/wiki/Ernesto_PalacioE. PalacioE.PalacioPalacio + +899567Caterina Trogu RöhrichClassical soprano vocalistNeeds VoteCaterina TroguTroguI Febi ArmoniciIl Complesso Barocco + +899569Petteri SalomaaJuha Petteri SalomaaBaritone singer, born 1962 in Helsinki, Finland.Needs Votehttp://www.bach-cantatas.com/Bio/Salomaa-Petteri.htmPeteri SalomaaSalomaaChorus And Orchestra Of The Drottningholm Court Theatre + +899570Gloria BanditelliItalian soprano / mezzo-soprano, born 1952 in Assisi, Italy.Needs VoteBanditelliG. BanditelliCappella Musicale Di S. Petronio Di BolognaLa Capella Reial De CatalunyaLe Concert Des nationsLa VenexianaEnsemble Salomone RossiEnsemble La Dafne + +899574Vincent DarrasCountertenor.Needs VoteLes Arts FlorissantsLa Chapelle RoyaleConcerto VocaleAkadêmia + +899591Sylvia AbramowiczRecorder and viol player.Needs Votehttp://millertheatre.com/LearnInteract/ArtistDetails.aspx?artid=320S. AbramowiczSilvia AbramowiczSylvia AbramowitzSylvia Abramowicz-DunfordLes WitchesLe Parlement De MusiqueIl Seminario MusicaleClemencic ConsortEnsemble Clément JanequinA Sei VociEnsemble SpiraleLe Poème HarmoniqueEnsemble A Deux Violes EsgalesLa RéveuseAkadêmiaEnsemble ClematisLes Temps PrésentsLes Meslanges + +899624Claes-Håkan AhnsjöSwedish tenor, born August 1, 1942 - Stockholm, Sweden + +He took a teaching degree in 1966 and then studied singing at the Royal Academy of Music in Stockholm 1966–69. Among his teachers were Erik Saedén, Aksel Schiøtz and Max Lorenz. He made his debut as Tamino in Mozart's The Magic Flute at the Royal Opera in 1969. He was employed at the Royal Opera from 1969–1973 before being engaged at the Bavarian State Opera in Munich in 1973 where he stayed until 1999. He was appointed Kammersänger in Munich in 1977. + +He has performed as a guest on stages and in concert halls in Sweden (including Drottningholm's palace theatre), the rest of Europe, Japan and the USA. The repertoire includes parts in works by, among others, Haydn, Mozart, Rossini, Verdi, Wagner, Hindemith and Berg. Among the roles can be mentioned Idamante in Idomeneo, Count Almaviva in The Barber of Seville, Des Grieux in Manon, David in The Masters in Nuremberg and the title role in Albert Herring. + +Ahnsjö was professor of singing at the Academy of Music in Munich 1996–1997 and opera director at the Royal Opera in Stockholm 2000–2001.Needs Votehttp://www.bach-cantatas.com/Bio/Ahnsjo-Claes.htmhttps://sv.wikipedia.org/wiki/Claes-H%C3%A5kan_Ahnsj%C3%B6AhnsjöClaes AhnsjöClaes H. AhnjoClaes H. AhnsjoClaes H. AhnsjöClaes H. AhnsjöhClaes H. AnhsjöClaes H. AnjoClaes H.AhnsjöClaes Haakan AhnsjöClaes Haaken AhnsjöClaes Hakon AhnsjöClaes-H. AhnsjöClaes-Haakan AhnsjöClaes-Håkon AhnsjöClara Haakan Ahnsjö + +899625Arleen AugerArleen AugérAmerican operatic soprano. She was born 13 September 1939 in South Gate, California, USA and died 10 June 1993 in Leusden, The Netherlands.Needs Votehttp://en.wikipedia.org/wiki/Arleen_AugerA. AugerArien AugérArleen AugèrArleen AugérArlen AugérArlene AugerArlene AugérArléen AugerArléen AuguerAugerAugèrAugérАрлен ОжеАрлин Огэアーリーン・オジェーオージェ(アーリン) + +899626Berliner DomkapelleCorrectDomkapelle Berlin + +899658Dave DonovanAustralian guitarist. Started his career in New Zealand. Popular session guitarist in Australia between 1969 and 1982. Died in Sydney in 2003.Needs VoteDave Donovan QuintetDave Donovan TrioDave DonovonDonovanThe ConvairsDaly-Wilson Big BandSydney Symphony OrchestraThe Swamp SaladDonovan's DruidsMichael Layton's Soul Sounds + +899689Helmut WildhaberAustrian tenor, born 23 August 1944 in Klagenfurt, Austria.Correcthttp://www.musikwildhaber.at/helmut.htmHelmuth WildhaberWildhaberDer Madrigalchor KlagenfurtFamilie Wildhaber + +899690Wiener AkademieNeeds Votehttp://www.wienerakademie.at/Académie De VienneAcadémie Mozart De VienneAkademie ChoirBécsi Akadémia KamarazenekaraVienna Academy ChoirVienna Mozart AcademyWiener AcademieWiener Akad. PhilharmonieWiener Mozart AkademieWiener Mozart-AkademieWiens Mozart-AkademiWiens MozartakademiOrchester Wiener AkademiePeter FrankenbergMartin HaselböckThomas FheodoroffGregor AnthonyTrudy Van Der WulpThomas IndermühlePeter SzütsChristian GurtnerSolistenensemble Der Wiener AkademieHermann EbnerPaul Van Der LindenVeronica KrönerHerbert LindsbergerJürg AllemannKatharina WürzlIstván Kertész (2)Emma Black (2)Ingrid SweeneyHelge StieglerAnnemarie BöschGrazyna Milan + +899691Chorus ViennensisChorus Viennensis was founded in 1952 as a male choir consisting only of former members of [a=Die Wiener Sängerknaben].Correcthttp://www.chorusviennensis.atChorus ViennesisCoros VienesesVienna ChorusFerdinand GrossmannHelmuth FroschauerKurt EquiluzHerbert BöckMichael GrohotolskyGerhard TrackHans GillesbergerJacques VillisechUwe Christian HarrerUwe TheimerMark BittermannAlexander NaderThomas PucheggerMatthias LienerAndreas StockhammerStefan BleiberschnigAseo FriesacherArmin RadlherrAlexander ObranskyClemens GaumannmüllerLukas KarzelMaximilian AngerMichael FlorendoMichael Richter (12)Oskar MaiwaldPhilipp SchöllhornSascha SopperWalter WieserWolfgang MandlerYoon Sang Cho + +899692Adolf HennigCorrectAdolf Henning + +899693Gottfried HornikAustrian classical bass and conductor, born 5 August 1940 in Vienna, Austria.CorrectHornik + +899862Roland StraumerGerman violinist, born 1958 in Dresden, Germany.CorrectStraumerStaatskapelle DresdenVirtuosi SaxoniaeLeipziger Bach-Collegium + +899863Brigitte GabschGerman violinist.Needs VoteStaatskapelle DresdenVirtuosi Saxoniae + +899864Volker DietzschGerman violinist. He was a member of the [a578737] from 1976 to 2017.Needs VoteStaatskapelle DresdenVirtuosi Saxoniae + +899865Virtuosi SaxoniaeGerman chamber orchestra based in Dresden and founded by [a=Ludwig Güttler] in 1985.Correct"Саксонские виртуозы"Die Solisten Der Virtuosie Saxoniae (The Soloists Of The Virtuosi Saxoniae)Virtousi SaxoniaeVituosi SaxoniaeLudwig GüttlerEckart HauptWerner ZeibigJoachim BischofKurt SandauFriedrich KircheisRoland StraumerBrigitte GabschVolker DietzschMonika RostPaul-Gerhard SchmidtHeinz StiefelManfred ZeumerHeinz-Dieter RichterThomas KäpplerGünter KlierMichael-Christfried WinklerMichael Schwarz (2)Roland RudolphUlrich PhilippGuido TitzeHans-Peter StegerPeter ThiemeAndreas LorenzUndine Röhner-StolleGünther MüllerMichael EckoldtSiegfried BüchelWolfgang KlierFrank OtherMichael FrenzelManfred KrauseFriedemann JähnigHartmut SchergautBernd RoseMichael SchöneHans-Detlef LöchnerJens-Jörg BeckerGudrun JahnChristoph SchulzeChristina HauptErik ReikeBernhard MühlbachBernd HauboldWolfram JustFriedwart DittmannBernd SchoberMathias SchmutzlerEgbert EsterlErich MarkwartVolker Stegmann (2)Frank SonnabendHermann SchicketanzPetra Andrejewski-MeiningCsaba KelemenSilke UhligCarlo Schütze + +899899Marius RintzlerRomanian operatic bass, born 14 March 1932 in Bucharest, Romania.CorrectRintzlerМариус Ринцлерマリウス・リンツラー + +900027Catherine KingClassical soprano / mezzo-soprano vocalist, born in Worcestershire, England.Needs Votehttp://catherineking.orgKingGabrieli ConsortNew London ConsortTaverner ChoirGothic Voices (2)Virelai (2) + +900056Jürnjakob TimmGerman cellist (born 14 May 1949 in Neubrandenburg, Germany). Father of [a4117567].Needs VoteJurnjacob TimmJurnjakob TimmJörnjakob TimmJürjacob TimmJürnjacob TimmTimmユルンヤーコブ・ティムGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +900100Joan CaberoClassical tenor and chorus master.Needs VoteLa Capella Reial De CatalunyaSociedad Coral De BilbaoHespèrion XX + +900110Lawrence FosterAmerican conductor, born October 23, 1941, in Los Angeles. + +[a839411] music director (1971-1979) +[a703269] music director (1980–1990) +[a866575] music director (1985-1990) +[a2026589] music director (1988-1992) +[l712125] music director (1990–1998) +[a900097] music director (1994-2002) +[a898855] principal conductor (2002-2013) +[l1015400] music director (2009-2012) +[a5278677] music director (2012-present)Needs Votehttps://en.wikipedia.org/wiki/Lawrence_Fosterhttps://www.harrisonparrott.com/artists/lawrence-fosterFosterL FosterL. Fosterローレンス・フォスターOrchestre Philharmonique De Monte-CarloHouston Symphony OrchestraOrchestre De Chambre De LausanneGulbenkian OrchestraOrquestra Simfònica De Barcelona I Nacional De CatalunyaJerusalem Symphony OrchestraOrchestre Philharmonique De Marseille + +900160Cheryl EneverClassical soprano vocalistNeeds Votehttps://cherylenever.webs.comThe Choir Of The King's ConsortLondon Voices + +900180Margaret PriceWelsh soprano, born 13 April 1941 in Blackwood, Monmouthshire, Wales, UK, died 28 January 2011 in Ceibwr, Wales, UK.Correcthttp://en.wikipedia.org/wiki/Margaret_PriceDame Margaret PriceM. PriceMargareth PricePriceМаргарет Прайсマーガレット•プライス + +900268Johann Eberhard Friedrich SchallCorrectJ. E. F. SchallJ. E. Fr. SchallJ.E.F. SchallSchall + +900291Sam FirmatureAmerican jazz saxophonistNeeds VoteHarry James And His OrchestraWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +900292Jack PercifulAmerican jazz pianist and arranger. + +Born : November 26, 1925 in Moscow, Idaho. +Died : March 13, 2008 in Olympia, Washington State. +Needs VoteJack PercivalJack PersonPercifulHarry James And His OrchestraHarry James & His Music Makers + +900295Terry RosenAmerican jazz guitaristCorrectHarry James And His Orchestra + +900303Sam Conte (2)American trumpeterCorrectHarry James And His Orchestra + +900304Joe CadenaAmerican trombonistNeeds VoteJoesph CadenaHarry James And His OrchestraLes Brown And His Band Of RenownSam Trippe And His OrchestraTerry Gibbs Dream Band + +900305Rob TurkBig band trumpet player.CorrectBob TurkHarry James And His OrchestraBuddy Morrow And His Orchestra + +900306Andrew Ford (3)Jazz trumpeter.Needs VoteA. FordAndres "Fats Ford" MerenguitoAndres FordAndres FordaAndrew "Fats" FordAndrew "Fats" Ford*Andrew Fats FordAndrew FordAndy "Fats" FordAndy FordAndres MeringuitoFats FordAndrés MerenguitoAndres MerenguitoDuke Ellington And His OrchestraLouis Armstrong And His OrchestraLucky Millinder And His OrchestraTerry Gibbs Octet + +900310Bruce MacDonaldJazz pianist.Needs VoteBruce McDonaldMcDonaldHarry James And His OrchestraHarry James & His Music MakersSi Zentner & His Dance Band + +900311Mike ConnTrumpet PlayerCorrectHarry James And His Orchestra + +900378La Grande Ecurie Et La Chambre Du RoyLa Grande Écurie et la Chambre du RoyClassical orchestra / ensemble that performs using period instruments specialized in the Baroque repertoire, conducted by [a=Jean-Claude Malgoire]. Based in Tourcoing, France. Founded in 1966.Needs Votehttps://en.wikipedia.org/wiki/La_Grande_%C3%89curie_et_la_Chambre_du_Royhttps://fr.wikipedia.org/wiki/La_Grande_%C3%89curie_et_la_Chambre_du_Royhttps://www.olyrix.com/artistes/13057/la-grande-ecurie-et-la-chambre-du-royhttps://www.bach-cantatas.com/Bio/Grande-Ecurie.htmGrande Ecurie Et La Chambre Du RoyLa Grande EcurieLa Grande Ecurie & La Chambre Du RoyLa Grande Ecurie & La Chambre du RoyLa Grande Ecurie & la Chambre Du RoyLa Grande Ecurie & la Chambre du RoyLa Grande Ecurie And La Chambre Du RoyLa Grande Ecurie Et La ChambreLa Grande Ecurie Et La Chambre Du RoiLa Grande Ecurie et la Chambre du RoyLa Grande Ecurié Et La Chambre Du RoyLa Grande Et La Chambre Du RoyLa Grande ÉcurieLa Grande Écurie & La Chambre Du RoyLa Grande Écurie Du RoyLa Grande Écurie Et La Chambre Du RoyLa Grande Écurie Et la Chambre Du RoyLa Grande Écurie et La Chambre du RoyLa Grande Écurie et la Chambre du RoyLa Grande écurie Et la Chambre Du RoyLe Grande Ecurie Et La Chambre Du RoyLe Grande Écurie Et La Chambre Du RoyLe Grande Écurie & La Chambre Du RoyLe Grande Écurie Et La Chambre Du RoyLe Grande Écurie Et La Chambre Du Roy,Members Of La Grande Ecurie Et La Chambre Du RoyOrchestre De La Grande Ecurie & La Chambre Du RoyOrchestre La Grande Ecurie Et La Chambre Du RoyTomaso AlbinoniJohn CohenYves PoucelJean-Claude MalgoireAlain MogliaJacques CazauranClaire GiardelliClaude NaveauMichel DenizeRoger BoufferayPierre DegenneDanielle SalzerPierre CasierMichel DelannoyJose Antonio CarrilMarie-Françoise BlochMireille PidouxSimone SéchetPierre SéchetMaurice PruvotJean-Louis OlluGuy BénardYves d'HauEvert-Jan Schuur + +900433Orchestra Of The Age Of EnlightenmentA group of period instrument players formed the OAE as a self-governing ensemble in 1986, and took its name from the historical period in the late 18th century where the core of its repertoire is based. The OAE is a resident orchestra of the Southbank Centre, London and associate orchestra at the Glyndebourne Festival Opera.Needs Votehttps://en.wikipedia.org/wiki/Orchestra_of_the_Age_of_Enlightenmenthttps://www.oae.co.uk/https://www.southbankcentre.co.uk/events/orchestra-of-the-age-of-enlightenment/https://web.archive.org/web/20030803201330/https://www.sonyclassical.com/artists/orchestra_of_the_age_of_enlightenment/https://www.danieladammaltz.com/classicalcake/orchestra-of-the-age-of-enlightenmenthttps://www.bach-cantatas.com/Bio/OAE.htmhttps://www.youtube.com/channel/UCrHICovzXa3ePnfRqUV5wkQhttps://www.youtube.com/user/OrchestraEnlightenhttps://www.facebook.com/orchestraoftheageofenlightenment/https://www.instagram.com/orchestraoftheageenlightenment/Choir And Orchestra Of The Age Of EnlightementMembers Of Orchestra Of The Age Of EnlightenmentMembri Di The Orchestra Of The Age Of EnlightenmentO.A.E.OrchestraOrchestra And Choir Of The Age Of EnlightenmentOrchestra of the Age of EnlightenmentOrchestre De L'Age Des LumièresThe Orchestra Of The Age Of EnlightenmentThe Orchestra Of The Age Of EnlightmentWind Soloists Of The Orchestra Of The Age Of Enlightenmentエイジ・オブ・インライトゥメント管弦楽団Stephen SaundersJudith KleinmanAndrew RobertsMalcolm SmithRichard CampbellColin KitchingCatherine FinnisAlison MartinElizabeth KennyViktoria MullovaAndrew Clark (3)Matthew WellsJeremy Williams (2)Darragh MorganChi Chi NwanokuNancy ElanFrances TurnerHenrietta WayneMax MandelSophie BarberNoel BradshawJos van ImmerseelMartin Kelly (3)Nicolette MoonenCatherine MackintoshAlison BuryJan SchlappPaul NicholsonRachel Brown (2)Julie LehwalderSusie Carpenter-JacobsAnnette IsserlisJane NormanLisa BeznosiukAndrew Watts (2)Sophia McKennaTimothy MasonRachel BeckettJohn TollMarshall MarcusNicola CleminsonMargaret FaultlessJonathan MansonJames GhigiKatherine HartSusan SheppardRebecca LivermorePaula ChateauneufAnthony RobsonRichard EarleCatherine LathamNicholas LogieCatherine FordRichard TunnicliffeMarina AschersonHelen OrslerPavlo BeznosiukAlice EvansCharles FullbrookAnthony HalsteadHelen VerneyRoy MowattIona DaviesNigel NorthAntony PayJennifer Ward ClarkeElizabeth WallfischMartin Lawrence (3)Timothy Brown (2)Brian Smith (12)Marion ScottMonica HuggettLisa CochranePenny DriverTom DunnSusan DentRichard IrelandSimon KodurandRoger MontgomeryGavin EdwardsNeil McLaren (2)Susan AddisonAndrew DurbanTimothy LinesRuth AlfordDavid BlackadderStephen RouseCecelia BruggemeyerPhilip TurbettJennifer GodsonMiranda FulleyloveMichael Harrison (4)Kati DebretzeniElizabeth RandellCatherine WeissColin HortonPaul BoucherSilvia SchweinbergerKirsten KlingelsAdrian BendingHelen GoughCherry ForbesRodolfo RichterMatthew TruscottMalcolm ProudPeter MallinsonPierre DoumengeKatherine SpencerFiona HuggettJanos KeszeiKatharina SpreckelsenDaniel EdgarPaul Sherman (2)Richard Lester (2)Josephine HorderAlina IbragimovaJane GowerNia LewisDebbie Diamond (3)Huw DanielSteven DevineLuise BuchbergerJosef FrohlichCatherine RimerBojan CicicClaire SansomKathryn ParryClaire HoldenKen AisoEmily WorthingtonChristine SticherDeborah DiamondKate HellerJulia KuhnCaroline MaguireKinga UjszásziJan ČižmářDaniel BatesClaudia NorzLeo Duarte (2)Zefira ValovaKatherine SharmanHenry TongDominika Fehér + +900448Oslo Filharmoniske OrkesterThe Filharmoniske Selskap (Philharmonic Society) was formed in 1919 to replace both the Musikforening and the orchestra of the Nationale Theater, and has become Norway’s foremost professional symphony orchestra. In 1980 it changed its name to the Oslo Filharmoniske Orkester - also known as Oslo Filharmonien.Needs Votehttps://ofo.no/https://www.facebook.com/filharmonienBlåsere Fra Oslo Filharmoniske OrkesterFilharmonienFilharmonien I OsloFilharmonien, OsloFilharmoniskFilharmoniske SelskapLa Orquesta Filarmónica De OsloMembers Of Philharmonic Orchestra, OsloMembers Of The Oslo Philharmonic OrchestraMembers Of The Philharmonic Orchestra OsloMembers Of The Philharmonic Orchestra, OsloMembers of the Oslo Philharmonic OrchestraOlso Philharmonic OrchestraOlso Philharmonic Wind SoloistsOrchester Der Philharmonischen Gesellschaft, OsloOrchester der Philharmonischen Gesellschaft OsloOrchestra Filarmonica Di OsloOrchestre Philharmonique D'OsloOrchestre Philharmonique d'OsloOrquesta Filarmonica De OsloOrquesta Filarmónica De OsloOrquesta Filarmónica de OsloOrquestra Filarmónica De OsloOrquestra Filarmônica De OsloOsla Philharmonic OrchestraOslo Filharmoniens Cellister Med SolisterOslo FilharmonikereOslo POOslo Phil.Oslo Philarmonic OrchestraOslo Philhamonic OrchestraOslo Philharminic OrchestraOslo PhilharmonicOslo Philharmonic OrchesterOslo Philharmonic OrchestraOslo Philharmonic Orchestra, TheOslo Philharmonic Symphony OrchestraOslo Philharmonica OrchestraOslo Philhramonic OrchestraOslo-FilharmonienOslo. Filharmoniske OrkesterOslon Filharmoninen OrkesteriPhilharmonic Orchestra, OsloPhilharmonisches Orchester OsloString Section From Filharmonisk Selskaps Orkester, OsloString Section From Oslo Philharmonic OrchestraStrings From Oslo Philharmonic OrchestraStrings From The Oslo Philharmonic OrchestraStrykere Fra FilharmonienStrykere Fra Oslo Filharmoniske OrkesterStrykere Fra Oslo-filharmonienThe Oslo Philarmonic OrchestraThe Oslo Philhamonic OrchestraThe Oslo PhilharmonicThe Oslo Philharmonic Orch.The Oslo Philharmonic OrchestraThe Oslo Philharmonic OrkesteraФилармонический Оркестр Г. ОслоФилармонический Оркестр Г. ОслоFilharmonisk Selskaps OrkesterDorthe DreierVegard JohnsenJan Olav MartinsenAndré PrevinFrode C. CarlsenTom Ottar AndreassenKristin SkjølaasHans Josef GrohKari RavnanBrynjar HoffØyvind FossheimAndré OrvikStig Ove OseSam FormicolaArild SolumHerbert BlomstedtKnut GuettlerPer NyhaugStephen WickSvante HenrysonTove HalbakkenMagne AmdahlBerit SemPer Sæmund BjørkumÅshild Breie NyhusGuro AsheimCatherine BullockEileen SiegelDaniel DalnokiJørn HalbakkenFrode BergTerje TønnesenLeif Arne PedersenAnders RensvikRagnar HeyerdahlLucy WaterhouseJorg HammannOtto BergChristian Berg (5)Per FlemströmKristine L MartensGeir Tore LarsenNiels AschehougElise BåtnesArild JensenDan StyffeJukka-Pekka SarasteOkko KamuOslo Philharmonic Wind SoloistsBjørn SolumOle Morten GimleLouisa TuckCamilla KjøllMinna AlénTorbjørn OttersenArve Moen BergsetJohannes MartensHenninge LandaasThorbjørn LønmoKenneth RylandAnne Britt Sævig ÅrdalHeming ValebjørgJonas HaltiaBård Winther AndersenEirik DevoldTerje MidtgårdPauls EzergalisIngeborg FimreiteCecilia GötestamBogumila Dowlasz-WojcikowskaAlyson ReadGonzalo MorenoTora DugstadElin RøElissa LeeBirgitte VolanRolf Cato RaadeHugo KolbergKatharina HagerHåvard NorangTrond Magne BrekkaHans Morten StenslandInger BesserudhagenPavel Sokolov (2)Erling SunnarvikPer HannisdalIngvill HafskjoldBénédicte RoyerRolf WindingstadAxel SjöstedtDanijel PetrovicTom VissgrenMarit EgenesGlenn Lewis GordonAudun BreenDagny BakkenArne Jørgen ØianPovilas Syrrist-GelgotaSvein SkrettingØivin FjeldstadRonald PisarkiewiczEinar SchøyenCecilia WilderAlison Rayner (2)Matz PettersenFredrik ForsKjetil SandumToril Syrrist-GelgotaTerje VikenFrode AmundsenBaard Winther AndersenMaria FlaateMaria Angelika CarlsenBrynjar KolbergsrudDavid Friedemann StrunckEmil Huckle-KleveTom Klausen (2)Brage SæbøHelen Benson + +900750James KartchnerTrumpet playerCorrectJ. KartchnerJames KartchenerJim KartchnerStan Kenton And His Orchestra + +900808Walter ForchertClassical violinistNeeds Voteヴァルター·フォルヒェルト = Walter ForchertBamberger SymphonikerBachcollegium StuttgartViktor Lukas Consort + +900820Walter WellerWalter WellerWalter Weller was an Austrian conductor and violinist, born 30 November 1939 in Vienna, Austria and died 14 June 2015 in Vienna, Austria. Weller also established and led his own eponymous string quartet from 1958 to 1969.Needs Votehttps://web.archive.org/web/20160628182855/http://www.walter-weller.com/https://en.wikipedia.org/wiki/Walter_Wellerhttps://de.wikipedia.org/wiki/Walter_Wellerhttps://www.bach-cantatas.com/Bio/Weller-Walter.htmWalterWellerВальтер ВеллерOrchester Der Wiener StaatsoperWiener PhilharmonikerWeller-QuartettWiener Konzerthausquartett + +900831Anna McMichaelAustralian born violinist, lived from 1993 to 2010 in the Netherlands.Needs Votehttps://www.annamcmichael.com/https://twitter.com/mcmichaelannaAnna Mc MichaelAnna McMichelMcMichaelM.A.E.Asko EnsembleSplinksNieuw Sinfonietta AmsterdamStrung + +900884Huguette DreyfusHuguette Dreyfus (born November 30, 1928, Mulhouse, Alsace – died May 16, 2016) was a French harpsichordist.Needs Votehttp://en.wikipedia.org/wiki/Huguette_DreyfusDreyfusH. DreyfusH.DreyfusHughette DreyfusХугетте Дрейфусユゲット・ドレイフュスOrchestre National De FranceCollegium Musicum De ParisValois Instrumental EnsembleOrchestre de Chambre Fernand OubradousQuatuor Instrumental De Lutèce + +900971Thierry CaensTrumpeter, born in 1958, Dijon, France.Needs VoteT. CaensTh. CaensLa Camerata De BourgogneEnsemble Orchestral De ParisConcert ArbanTen Of The BestQuintette De Cuivres Jean-Baptiste ArbanLes Cuivres Français + +900975Geoffrey Parsons (2)Geoffrey Penwill Parsons AO OBEAustralian pianist, notable as accompanist to singers & instrumentalists. + +For the English lyricist, use [b][a696028][/b]. + +Born 15 June 1929 In Ashfield, Australia. +Died 26 January 1995 in London, England. +In 1995, following Parsons’ death, the Geoffrey Parsons Award was named in his memory by the Accompanists’ Guild of South Australia, of which Parsons was the founding international patron. The award is one of the few Australian prizes to celebrate and encourage the profession of piano accompaniment. +Needs Votehttp://en.wikipedia.org/wiki/Geoffrey_Parsons_%28pianist%29G. ParsonsParsonsДжеффри Парсонсジェフリー・パーソンズ + +900979Coro Del Teatro Alla ScalaItalian choir from the [l345209], Milan, Italy, founded in 1778.Needs Votehttps://www.teatroallascala.org/en/the-theater/chorus/chorus.htmlhttps://it.wikipedia.org/wiki/Coro_del_Teatro_alla_Scala"La Scala" ChorusA Milánói Scala ÉnekAndAnd Chorus Of La Scala, MilanAssociazione Del Coro Filarmonico Della ScalaCheours Du Théâtre De La Scala, MilanChoers De La Scala De MilanChoeurChoeur De La Scala De MilanChoeur De La Scala de MilanChoeur Du Theatre De La Scala, MilanChoeur Du Théâtre De La Scala De MilanChoeur Du Théâtre De La Scalla De MilanChoeur de la Scala de MilanChoeursChoeurs De La Scala De MilanChoeurs De Teatro Alla ScallaChoeurs Du Teatro Alla ScallaChoeurs Du Theatre De La ScalaChoeurs Du Theatre De La Scala, MilanChoeurs Du Théatre De La Scala de MilanChoeurs Du Théâtre De La ScalaChoeurs Du Théâtre De La Scala De MilanChoeurs Du Théâtre De La Scala, MilanChoeurs Du Théâtre de La Scala, MilanChoeurs Du Théâtre de la Scala de MilanChoeurs Et Orchestre Du Thêatre de la Scala de MilanChoeurs de la Scala de MilanChoirChoir Del Teatro Scala Di MilanoChoir La Scala MilanChoir Of The Scala TheatreChoir of La Scala, MilanChoirsChorChor D. Mailänder ScalaChor Del Teatro Alla Scal, MilanoChor Del Teatro Alla ScalaChor Del Teatro Alla Scala, MilanoChor Der Mailander ScalaChor Der Mailänder ScalaChor Der Mäilander ScalaChor Der Mällander ScalaChor Der Scala, MailandChor Des Mailänder ScalaChor Des Teatro Alla ScalaChor Teatro Alla Scala MailandChor UndChor Und Orchester Der Mailander ScalaChor Und Orchester Der Mailänder ScalaChor der Mailänder ScalaChor.Chorale ScalaChores Der ScalaChoroChoro Del Teatro Alla ScalaChoro Del Teatro Alla Scala, MilanoChorusChorus AndChorus Of "La Scala"Chorus Of La ScalaChorus Of La Scala Chorus, MilanChorus Of La Scala MilanChorus Of La Scala Opera HouseChorus Of La Scala Opera House MilanChorus Of La Scala Opera House, MilanChorus Of La Scala Orchestra, MilanChorus Of La Scala TheatreChorus Of La Scala Theatre, MilanChorus Of La Scala di MilanoChorus Of La Scala, MilanChorus Of La Scala,MilanChorus Of La Scala. MilanChorus Of La Scalla, MilanChorus Of Las Scala, MilanChorus Of Radio ItalianaChorus Of Teatro Alla ScalaChorus Of Teatro Alla Scala MilanChorus Of Teatro Alla Scala Of MilanChorus Of Teatro Alla Scala, MilanChorus Of Teatro Alla Scala, MilanoChorus Of Teatro Alla ScallaChorus Of Teatro Alla Scalla, MilanChorus Of Teatro alla Scala, MilanChorus Of The "La Scala" TheatreChorus Of The La Scala Opera HouseChorus Of The Opera Di MilanoChorus Of The Piccola ScalaChorus Of The Scala Opera House, MilanChorus Of The Teatro Alla ScalaChorus Of The Teatro Alla Scala MilanoChorus Of The Teatro Alla Scala de MilanoChorus Of The Teatro Alla Scala, MilanChorus Of The Teatro Alla Scala, MilanoChorus Of The Teatro alla Scala, MilanChorus Of la ScalaChorus Of la Scala MilanChorus Of la Scala Opera HouseChorus Of la Scala, MilanChorus Selected From The La Scala Of MilanChorus Teatro Alla Scala MilanoChorus and Orchestra of La Scala, MilanChorus of La ScalaChorus of La Scala Opera House, MilanChorus of La Scala Theater, MilanChorus of La Scala, MilanChorus of Teatro alla Scala MilanChorus of the Opera di MilanoChorus of the Teatro Alla Scala, MilanChorus of the Teatro alla Scala, MilanChorus, La Scala, MilanChorus, MilanChoursChrous of La Scala, MilanChœurChœur De La Scala De MilanChœur Du Teatro Alla Scala Di MilanoChœur Du Theatre De La ScalaChœur Du Théatre De La Scala De MilanChœur Du Théâtre De La Scala De MilanChœur de la ScalaChœur de la Scala de MilanChœursChœurs Du Théâtre De La Scala De MilanChœurs Du Théâtre De La Scale , MilanChœurs De La Scala De MilanChœurs Du Teatro Alla Scala, MilanChœurs Du Théatre De La Scala, MilanChœurs Du Théâre De La ScalaChœurs Du Théâtre De La ScalaChœurs Du Théâtre De La Scala De MilanChœurs Du Théâtre De La Scala, MilanChœurs de la Scala de MilanChœurs du Théâtre De La Scala De MilanChœurs du Théâtre de La Scala, MilanChœurs du Théâtre de la Scala de MilanChɶurChɶur Du Theatre De La Scala De MilanCon Coro Completo Della ScalaCoral Del Tetro De La Scala De MilanCoreCore Del Teatro Alla ScalaCore Del Teatro Alla Scala Di MilanoCore Del Teatro Alla Scala, MilanoCori Della ScalaCoristiCoristi D'Orchestra Del Teatro Alla ScalaCoristi Del Teatro Alla "Scala" Di MilanoCoristi Del Teatro Alla ScalaCoristi Del Teatro Alla Scala Di MilanoCoristi Del Teatro La ScalaCoristi Della ScalaCoristi del Teatro alla ScalaCoristi del Teatro alla Scala di MilanoCoristi della ScalaCoroCoro "Alla Scala"Coro Alla ScalaCoro Alla Scala Di MilanoCoro Alla Scala, MilanoCoro De Teatro Alla ScalaCoro Del "Teatro Alla Scala"Coro Del Teatro "Alla Scala" Di MilanoCoro Del Teatro "La Scala" Di MilanoCoro Del Teatro A La Scala Di MilanoCoro Del Teatro Ala Scala Di MilanoCoro Del Teatro Alla Scala , MilanoCoro Del Teatro Alla Scala De MilanoCoro Del Teatro Alla Scala De MilánCoro Del Teatro Alla Scala Di MilanoCoro Del Teatro Alla Scala Di MianoCoro Del Teatro Alla Scala Di MiilanoCoro Del Teatro Alla Scala Di MilanoCoro Del Teatro Alla Scala MilanoCoro Del Teatro Alla Scala di MilanCoro Del Teatro Alla Scala di MilanoCoro Del Teatro Alla Scala, MilanCoro Del Teatro Alla Scala, MilanoCoro Del Teatro Alla Scala, MilánCoro Del Teatro De La EscalaCoro Del Teatro De La Scala De MilanCoro Del Teatro De La Scala De MilánCoro Del Teatro De La Scala De MiánCoro Del Teatro De La Scala, MilanCoro Del Teatro De La Scala, MilánCoro Del Teatro Piccola Scala Di MilanoCoro Del Teatro ScalaCoro Del Teatro de la EscalaCoro Del Teatro de la ScalaCoro Del Theatro Alla Scala Di MilanoCoro Del teatro De La Scala De MilánCoro Dell'Orchestra Del Teatro Alla ScalaCoro Della Piccola Scala Di MilanoCoro Della ScalaCoro Della Scala Di MilanoCoro Delle Teatro Alla Scala Di MilanoCoro Des Teatro Alla Scala Di MilanoCoro Di Membri Del Teatro Alla Scala Di MilanoCoro Di Voci Bianche Del Teatro Alla ScalaCoro Di Voci Bianche Del Teatro Alla Scala Di MilanoCoro Do Teatro Alla ScalaCoro Do Teatro Della ScalaCoro Do Teatro Scala De MilãoCoro ECoro E Orchestra Del Teatro Alla ScalaCoro E Orchestra Del Teatro Alla Scala Di MilanoCoro Filarmonico Della ScalaCoro Polifonico Del Teatro Alla ScalaCoro Polifonico Del Teatro Alla Scala Di MilanoCoro Sinfonico Della "Scala"Coro Sinfonico Della "Scala" Di MilanoCoro Teatro Alla ScalaCoro Teatro Alla Scala MilanoCoro Y Profesores Del Teatro De La Scala, MilánCoro de la Scala de MilanCoro del Teatro Alla ScalaCoro del Teatro Alla Scala di MilanoCoro del Teatro all Scala di MilanoCoro del Teatro alla ScalaCoro del Teatro alla Scala de MilánCoro del Teatro alla Scala di MilanoCoro del Teatro alla Scala, MilanoCoro del Teatro de la Escala, de MilánCoro del Teatro de la ScalaCoro e Orchestra del Theatro alla Scala di MilanoCoros Alla ScalaCoros Del Teatro Alla Scala de MilanCoros de la Scala de MilanCôro Do Scala De MilãoE CoroFull Chorus Of La ScalaFull Chorus Of La Scala, MilanGrande Coro ItalianoHet Koor Van De Scala, MilaanHorHor I Orkestar Milanske SkaleHor Milanske SkaleI Coristi Della ScalaIl Coro Sinfonico della "Scala" di MilanoKoor Scala MilaanKoor Van De ScalaKoor Van De Scala In MilaanKoor Van De Scala MilaanKoor Van De Scala Opera Te MilaanKoor Van De Scala, MilaanKoor van de Scala MilaanLa ScalaLa Scala ChoirLa Scala ChorusLa Scala Chorus Of MilanLa Scala Chorus, MilanLa Scala ChoursLa Scala Milan ChorusLa Scala Opera ChorusLa Scala Opera Company ChorusLa Scala Opera House ChorusLa Scala Theatre Of MilanLa Scale ChoirLaScala ChorusMembers Of ChorusMembers Of Chorus La Scala, MilanMembers Of La Scala ChorusMembers Of La Scala Chorus, MilanMembers Of The ChorusMembers Of The Chorus Of La ScalaMembers Of The Chorus Of La Scala, MilanMembers of Chorus La Scala, MilanMembers of La Scala ChorusMembros Del CoroMembros Del Coro De La Scala, MilánMilan Opera ChorusMilan Teatro alla Scala ChorusMitdglieder Des Chores Der La Scala, MailandMitglieder Des Chores Der Scala, MailandOf La Scala Orchestra, MilanOrchester Der Mailänder ScalaOrchestra Del Teatro Alla Scala Di MilanoOrchestra E CoroOrchestra E Coro DelOrchestra E Coro Del Teatro Alla ScalaOrchestra E Coro Del Teatro Alla Scala Di MilanoOrchestra e Choro del Teatro alla Scala, MilanoOrchestreOrchestre et Chœurs de La Scala de MilanScalaScala ChorusScala Di MilanoScala Koor En -orkestScala MilaanScala Operaens KorTeatro Alla ScalaTeatro Alla Scala Di MilanoTeatro Alla Scala MilanTeatro De La ScalaTeatro La ScalaThe CastThe ChorusThe Chorus Of La Scala, MilanThe Chorus Of Teatro Alla Scala, MilanVittore Veneziani's Großer ChorWomen Of La Scala Chorus, MilanWomen of La Scala Theatre Chorus, MilanXор Tеатра ла СкалаZbor Milanske ScaleZboromchorus of the Teatro alla Scalachœurcoro del Teatro alla Scala di Milano«La Scala» ChorusΧορωδίαΧορωδία Teatro Alla ScalaΧορωδία Της La Scala Του ΜιλάνουΧορωδία Της Piccola Scala Του ΜιλάνουΧορωδία Του Θεάτρου Της ΣκάλαςΧορωδία Του Θεάτρου Της Σκάλας Του ΜιλάνουΧορωδία της La Scala του ΜιλάνουЛа Скала. МиланСолисты "Ла Скала"ХорХор Театра "La Scala"Хор Tеатра «Ла Скала»Хор Миланского Театра "Ла Скала"Хор Миланского Театра «Ла Скала»Хор Театра "Ла СкалаХор Театра "Ла Скала"Хор Театра «Ла Скала»Хор Театра Ла СкалаRomano GandolfiTeatro Alla Scala + +901089Annisteen AllenErnestine Letitia AllenAmerican blues and jazz singer. Born November 11, 1920 in Champaign, IL. Died August 10, 1992 in Harlem, NYC. + +Annisteen Allen started out on her music career i 1945 with songs like "Miss Allen's Blues" and "Love For Sale". After touring with Lucky Millinder, Wynonie Harris and Big John Greer for some time she was signed by Federal in 1951-and started making records with Lucky Millinder's Band. She signed with the parent label King in 1953 before moving on to Capitol in 1954 and touring extensively with The Orioles and Joe Morris. Allen Finally landed a hit in 1955 with "Fujiyama Mama", a number that was also covered by Eileen Barton and Wanda Jackson, among others.Needs Votehttps://en.wikipedia.org/wiki/Annisteen_Allenhttps://adp.library.ucsb.edu/names/300966A. AllenAllanAllenAnisteen AllenAnnastine AllenAnnisteen AlanAnnisteen-AllenAnnistein AllenAnnistine AllenErnestine " Annisteen" AllenErnestine AllenLucky Millinder And His OrchestraAnnisteen Allen & Her Home Town Boys + +901539Das Mozarteum Orchester SalzburgDas Mozarteum Orchester Salzburg[b]Not to be confused with [a843911].[/b] +Founded in 1841, also known as Mozarteumorchester Salzburg and Mozarteum Orchestra Salzburg. + +Principal conductors: +1841–1861: Alois Taux +1861–1868: Hans Schläger +1868–1879: Otto Bach +1880–1908: Joseph Friedrich Hummel +1908–1911: Joseph Reiter +1911–1913: [a7259615] +1913–1917: Franz Ledwinka +1917–1938: [a890414] +1939–1944: [a4665735] +1946: [a951326] +1947–1949: [a1401352] + +1949–1953: [a920106] +1953–1958: [a963375] +1959: [a1401352] +1960–1969: [a2304852] +1969–1981: [a915355] +1981–1984: [a696236] +1984–1994: [a859212] +1994–2004: [a985935] +2004–2016: [a870703] +2017–2024: [a2131010] +2024-present: [a6842189]Needs Votehttps://www.mozarteumorchester.at/https://en.wikipedia.org/wiki/Mozarteum_Orchestra_Salzburg"Salzburg Mozarteum" OrchestraA Salzburgi Mozarteum ZenekarátCamerata Academica Des Salzburger MozarteumsCamerata Academica des Salzburger MozarteumsCamerata PhilharmonicaChoeur Et Orchestre Du Mozarteum Et De La Radio De SalburgDas Grosse Mozarteum-OrchesterDas MozarteumDas Mozarteum OrchesterDas Mozarteum-OrchesterDas Mozarteum-Orchester SalzburgDas MozarteumorchesterDas Mozartteum Orchester SalzburgDas Orchester Des Mozarteums SalzburgDas Salzburger Mozart-OrchesterDas Salzburger Mozarteum OrchesterGrup instrumental din "Mozarteumorchester SalzburgHet Mozarteum Orchester SalzburgMitglieder Des Mozarteum Orchesters SalzburgMitglieder Des Mozarteum SalzburgMitglieder Des Mozarteum-OrchestersMitglieder Des Mozarteum-Orchesters SalzburgMitglieder de Mozarteums OrchestersMitglieder des Mozarteum Orchesters SalzburgMorzateum-OrchesterMozareteum Orchestra Of SalzburgMozart Orchester SalzburgMozart Orchestra SalzburgMozarteum - OrchesterMozarteum - Orchester SalzburgMozarteum De SalzburgMozarteum OrchesterMozarteum Orchester SalzburgMozarteum Orchester, SalzburgMozarteum OrchestraMozarteum Orchestra De SalzbourgMozarteum Orchestra Of SalzburgMozarteum Orchestra SalzburgMozarteum Orchestra of SalzburgMozarteum Orchestra, SalzburgMozarteum OrchestrerMozarteum SalzburgMozarteum Salzburg OrchesterMozarteum de SalzburgoMozarteum-OrchesterMozarteum-Orchester (Salzburg)Mozarteum-Orchester SalzburgMozarteum-Orchester, SalzburgMozarteum-Orchestra SalzburgMozarteumOrchester SalzburgMozarteumorchesterMozarteumorchester SalzburgMozarteumorchestra SalzburgMozarteums Kammarorkester, SalzburgOchestre du Festival de SalzbourgOrchesterOrchester "Mozarteum" SalzburgOrchester Des Mozarteum SalzburgOrchester Des Mozarteums SalzburgOrchester Des Salzburger MozarteumOrchester Des Salzburger MozarteumsOrchester Des Salzburger MozartteumsOrchester Des Salzburger MozartumsOrchester Mozarteum SalzburgOrchester Mozarteum, SalzburgOrchester des Mozarteum SalzburgOrchester des Mozarteum, SalzburgOrchester des Salzburger MozarteumsOrchestraOrchestra "Mozarteum"Orchestra Del Mozarteum Di SalisburgoOrchestra Mozarteum Din SalzburgOrchestra Mozarteum SalzburgOrchestra Of SalzburgOrchestra Of The MozarteumOrchestra Of The Mozarteum SalzbourgOrchestra Of The Mozarteum SalzburgOrchestra Of The Salzburg MozarteumOrchestreOrchestre Du MozarteumOrchestre Du Mozarteum De SalzbourgOrchestre Du Mozarteum De SalzburgOrchestre Du Mozarteum SalzburgOrchestre Du Mozarteum de SalzbourgOrchestre Du Salzburger MozarteumOrchestre Mozart De SalzburgOrchestre du Mozarteum de SalzbourgOrchestreS alzburger MozarteumOrk. MozarteumOrkestar Mozarteum, SalzburgOrquesta Del Mozarteum De SalzbugOrquesta Del Mozarteum De SalzburgoOrquesta Mozarteum De SalzburgoOrquesta SalzbergOrquestra SinfônicaQuartetto Mozarteum Di SalisburgoSaltzburg MozarteumSalzaburg Mozarteum OrchestraSalzbourg Mozarteum OrchestraSalzburg Chamber OrchestraSalzburg Mozart EnsembleSalzburg Mozart OrchestraSalzburg MozarteumSalzburg Mozarteum Chamber OrchestraSalzburg Mozarteum OrchesterSalzburg Mozarteum OrchestraSalzburg Mozarteum Orchestra and ChorusSalzburg Mozarteum OrechstraSalzburg MozartteumSalzburger Mozart - OrchesterSalzburger Mozart OrchesterSalzburger MozarteumSalzburger Mozarteum Choir And OrchestraSalzburger Mozarteum OrchesterSalzburger Mozarteum Orchester SalzburgSalzburger Mozarteum OrchestraSalzburger Mozarteum OrchhesterSalzburger Mozarteum, OrchesterSalzburger Mozarteum, OrchestreSalzburgi Mozarteum ZenekaraSymphony OrchestraThe Mozareteum Orchestra Of SalzburgThe MozarteumThe Mozarteum Orchester SalzburgThe Mozarteum OrchestraThe Mozarteum Orchestra Of SalzburgThe Mozarteum Philamorica OrchestraThe Mozarteum Philarmonica OrchestraThe Mozarteum Philharmonica OrchestraThe Saltzburg Mozarteum OrchestraThe Salzberg Mozarteum OrchestraThe Salzburg Mozart OrchestraThe Salzburg Mozarteum Chamber OrchestraThe Salzburg Mozarteum OrchestraАкадемический Камерный Оркестр "Mozarteum"Зальцбургский оркестр "Моцартеум"Камерный Академический Оркестр г. ЗальцбургаОркестр Г. ЗальцбургОркестр Зальцбургского "Моцартеума"Оркестр Зальцбургского МоцартеумаОркестр Моцартеум, ЗальцбургОркестр зальцбургского Моцартеума”Salsburger Mozarteum” Orchestraザルツプルクモー・ツァルテウム音楽院管弦楽団Ralf WeikertElizabeth WilcockAndré LardrotHans GrafIvor BoltonAndreas AigmüllerBernhard PaumgartnerChristoph ZimperReinhold MalzerLeopold HagerPaul WalterAnnegret SiedelHelmut KlöcklRobert Wagner (4)Ernst MärzendorferHubert SoudantErich HehenbergerJiri PospichalAlfred LetizkyKarlheinz FrankeHeinrich AmmingerMarkus PougetPhilippe DussolEmil SeilerMeinhard von ZallingerRudolf SchingerlinSylvia Van Der LindenKlaus GruberSabine LenzJohannes HinterholzerAlbert LinderGesa HarmsMichael VladarRiccardo MinasiJosef SteinböckMladen BašićWalter NeulistKai RapschRudolf KlepačToshie SugibayashiHerbert LindsbergerHorst HajekJosef SterlingerPaulius SondeckisJoseph SchröcksnadelAlois AignerHans RuderstallerWerner BinderFrank StadlerAndreas SchablasSusanne Müller-HornbachIngrid HasseVladislav MarkovicOskar HagenJosef Schneider (2)Markus TomasiLeonidas BinderisFranz KittlEduard WimmerWolfgang SchlachterKurt BirsakMarkus Hauser (3)Johannes KrallEva RauscherDieter BinnikerRob Van De LaarJean-Pierre FaberJohannes AuerspergOtfried RuprechtChristian Löffler (2)Willem Van HoogstratenChrista Richter-SteinerGabor VadàszDieter AmmererVerena WurzerLaila StorchMonika KammerlanderMartin HebrPaul WiederinBeatrice RentschBruno SteinschadenYoshinori TominagaHans Messner (3)Laura MoinianJosef SmolaMatthias Michael BeckmannBernhard KrabatschBruno HartlMarianne RiehleZoltán MácsaiRoberto González-MonjasBernhard JauchGerhard ProschingerMichael ScharfetterDominik NeunteufelIrina RusuPaul GraenerIsabella UntererWilli SchwaigerRupert BirsakStephan RuhlandPhilipp TutzerAlfred BürgschwendtnerScott Stiles (2)Michael MitterlehnerWolfgang SpitzerHelmut ZangerleKrisztina MegyesiWolfgang NavratilSiegfried MeikThomas HeissbauerGeorg StrakaMilan RadičFerdinand SteinerMoritz PlasseAyako KurokiRiccardo TerzoFlorian SimmaJohanna FurrerMargit Elisabeth TomasiUrsula EgerMargarete KnoglerMaximilian VolbersSamuele BertocciFederica LongoErnst LeitnerJohannes Moritz (2)Barnaba PoprawskiGötz SchleiferManuel DörschCarsten Leonard NeumannElzbieta PokoraEnikö Agnes DomonkosIrene Castiblanco BricenoJohannes BiloRiro MotoyoshiRomana RauscherBrigitta BürgschwendtnerSasha Calin + +901588Gertraud Landwehr-HerrmannClassical soprano vocalistNeeds VoteLandwehr-Herrmann + +901589Susanne JohnsSoprano vocalistNeeds Vote + +901590Hermann FischerGerman classical tenor.Needs Vote + +901591Wilfried FischerDr. phil. Wilfried FischerGerman conductor, musicologist and university lecturer (* 12 August 1938 in Kiel, German Empire; † 11 April 2023).Needs Votehttps://de.wikipedia.org/wiki/Wilfried_Fischerhttps://www.schott-music.com/de/person/index/index/urlkey/wilfried-fischerW. FischerW.F.Hochschulorchester Paderborn + +901687Matthias BenkerClassical viola player.Needs Votehttps://www.linkedin.com/in/matthias-benker-5378043a/https://twitter.com/matthias_benkerMathias Benker-SteinerMathias SteinerMatthias Benker-SteinerOrchester der Bayreuther FestspieleKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinHorenstein Ensemble + +901753Elmer ChambersDallas Elmer Chambers.American jazz trumpeter and cornetist. +Nicknames: "Frog" and "Muffle Jaws" + +Born : 1897 in Bayonne, New Jersey. +Died : 1952 in Jersey City, New Jersey. +Needs Votehttps://en.wikipedia.org/wiki/Elmer_Chambershttps://adp.library.ucsb.edu/names/100812ChambersElmer ChamberFletcher Henderson And His OrchestraClara Smith And Her Jazz TrioClara Smith And Her Jazz BandFletcher Henderson And His Club Alabam OrchestraFletcher Henderson's Jazz Five + +901879Mitglieder Des Gewandhausorchesters LeipzigMembers of the German [a522210]. Needs Votehttps://www.gewandhausorchester.de/Leden Van Het Gewandhaus-orkest LeipzigMembers Of The Gewandhausorchester LeipzigMembers Of The Gewandhausorchesters LeipzigMembres De l’Orchestre du Gewandhaus De LeipzigMembres de L'Orchestre Du Gewandhaus de LeipzigMitglieder Des GewandhausorchestersMusiker Des GewandhausorchestersGewandhausorchester Leipzig + +901880Hertha TöpperHertha TöpperAustrian alto / mezzosoprano vocalist (* 19 April 1924 in Graz, Austria; † 28 March 2020 in Munich, Germany). +She was married to [a=Dr. Franz Mixa] until his death in 1994.Needs Votehttp://en.wikipedia.org/wiki/Hertha_T%C3%B6pperhttps://www.musiklexikon.ac.at/ml/musik_T/Toepper_Hertha.xmlH. TöpperHerta ToepperHerta TopperHerta TöpferHerta TöpperHertha ToepperHertha TopperHertha TœpperHerthe TöpperTöpperГерта ТёпперХерта ТепперХерта Тёппер + +901902Gaby LesterGabrielle LesterEnglish classical violinist and orchestra leader.Needs Votehttps://en.wikipedia.org/wiki/Gabrielle_Lesterhttps://www.imdb.com/name/nm0504451/Gabrielle LesterThe Michael Nyman BandThe Chamber Orchestra Of EuropeBarbican Piano TrioAmbache Chamber EnsembleOrchestra Città Aperta + +902275Johnny Van EpsJazz saxophonistNeeds VoteJ Van EpsJ. Van EppsJ. Van EpsJ. VanepsJohn Van EpsJohn van EpsSonny Van Eps.V. EpsVan EpsTommy Dorsey And His OrchestraJack Teagarden And His OrchestraHal Kemp And His Orchestra + +902278Bobby Van EpsUS jazz pianist from the swing-era. + +Needs VoteB. Van EpsBob Van EppsBob Van EpsBobbie Van EpsBobby Van EppsR. Van EpsRobert Van EpsVan EppsVan EpsJimmy Dorsey And His OrchestraThe Dorsey Brothers OrchestraGeorge Van Eps Ensemble + +902301Leon RoppoloLeon Joseph Roppolo.American jazz clarinetist and songwriter. +Played with : Papa Jack Laine ("Reliance Brass Band"), Paul Mares, George Brunies. + + +Born : March 16, 1902 in Lutcher, Louisiana. +Died : October 05 or 14 (probably) or 15, 1943 in New Orleans, Louisiana. +Needs Votehttps://findagrave.com/cgi-bin/fg.cgi?page=gr&GSvcid=116536&GRid=21695631&https://en.wikipedia.org/wiki/Leon_Roppolohttps://adp.library.ucsb.edu/names/109945https://adp.library.ucsb.edu/names/109946Ben RappoloE. RapolloJ. L. RoppoloJoseph Leon RappoloJoseph Leon RoppoloL RappolloL RappoloL. LappoloL. PoppoloL. RapalloL. RapolloL. RapoloL. RapopoloL. RappolaL. RappoloL. RopolloL. RopoloL. RoppolloL. RoppoloLeon PoppoloLeon RaffoloLeon RapolloLeon RappalloLeon RappolaLeon RappolloLeon RappoloLeon RobbolaLeon RopolloLeon RopploLeon RoppolaLeon RoppolloLeon/RoppoloPoppoloRapalloRapaloRapolaRapolloRapoloRappRappaloRappelRapploRappolaRappoleRappolloRappoloRappolo LeonRobboloRopolloRoppeloRoppolaRoppolloRoppoloRupolloRuppoloРопполоNew Orleans Rhythm KingsOriginal New Orleans Rhythm KingsFriar's Society Orchestra + +902335James "Jiggs" NobleJames A. NobleComposer, arranger & pianist, known to have joined [a284746] as an arranger in 1941. + +For the bass player use [a702513]Needs VoteJ. "Jiggs" NobleJ. A. NobleJ. NobleJ.A. NobleJ.A.NobleJ.NobleJames A NobleJames A. NobleJames Iiggs NobleJames NobleJiggs NobleJigs NobleJimmy "Jiggs" NobleKleiberNobleWoody Herman And His Orchestra + +902489Bobby SherwoodRobert J. Sherwood, Jr.American jazz guitarist, trumpeter, singer, composer and bandleader. +Born May 30, 1914 in Indianapolis, Indiana. Died January 23, 1981 in Auburn, Massachusetts. +His father was a singer and trombone player and his mother was a pianist. They had a vaudeville act called Bob-Gayle Sherwood & Co. Bobby joined the act when he was ten singing , dancing, and playing the banjo. +Husband of [a5511847], and father of [a277577] and [a267740]. He was previously married to [a3217013] (aka [a4842371]) (older sister of [a300045]). He and his wife Phyllis had a successful Las Vegas lounge act in the 1970s. They later divorced. Uncle of [a=Carl Saunders]. +In 1954, Bobby Sherwood had a recording session set up with other musicians at Rudy Van Gelder's studio in Hackensack, NJ but Hurricane Edna hit on the day of the session and only Sherwood made it to the studio, having arrived 20 minutes before the storm. Instead of wasting the expensive studio time, he went ahead and recorded two songs entirely by himself: "Yes Indeed" and "Brown Eyes, Why Are You Blue?" On the picture sleeve for the single featuring those two songs, he's credited for first trumpet, second trumpet, third trumpet, french horn, trombone, piano, guitar, bass, drums, vibraphone, four vocal parts and arrangements. The 45 shows "Vocal by Bobby Sherwood, Bobby Sherwood, Bobby Sherwood, and Bobby Sherwood". +After vaudeville folded, Bobby played in clubs around Los Angeles, and became Bing Crosby's accompanist on records, in the band, in movies, and on radio.Needs Votehttps://en.wikipedia.org/wiki/Bobby_Sherwoodhttps://www.imdb.com/name/nm0792797/https://www.feenotes.com/database/artists/sherwood-bobby-30-may-1914-23-january-1981/https://adp.library.ucsb.edu/names/343508B. SherwoodBob SherwoodBobbie SherwoodSherwoodArtie Shaw And His OrchestraBobby Sherwood And His OrchestraJulia Lee & Her Boy FriendsBobby Sherwood And His Dixieland Band + +902709Marty HarrisAmerican jazz pianist. +Worked with [a=Benny Goodman], [a=Woody Herman], [a=Anita O'Day], [a=Jack Sheldon], [a=Frank Rosolino], [a=Med Flory], [a=Conte Candoli], [a=Teddy Edwards], [a=Bob Cooper], [a=Harry Edison], [a=Diana Ross] and many others. +Born: December 9, 1933 in New Jersey. +Died: October 13, 2011 in Toluca Lake, Los Angeles, California. +Needs VoteMartin HarrisMarty HarrysWoody Herman And His OrchestraTerry Gibbs QuartetWoody Herman And The Swingin' Herd + +902732Simon EadonClassical music engineer. +He worked for [l5320] from 1970 to the closure of the label's recording department in 1997 and now works in the freelance market with recording company Abbas Records. +Occasionally has photography credits.Needs Votehttp://www.abbasrecords.com/personnel.htmhttps://twitter.com/dorsetrecorderSimon EadenSimon EatonSimon Eden + +902966Juraj AlexanderSlovak classical cellist.Needs VoteAlexander J.Alexander JurajJ. AlexanderJurai AlexanderJurai AllexanderJuray AlexanderJurej AlexanderSlovak Chamber OrchestraSlovenské Trio + +902976Alexei OgrintchoukOboe player, born 1978 in Moscow, Russia. Started studying age 9 at the Gnesin School Of Music in Moscow. Needs Votehttp://www.ogrintchouk.com/A. OgrinchukA. OgrintchoukAlexei OrginchukConcertgebouworkestSvenska KammarorkesternConcertgebouw Chamber OrchestraRotterdams Philharmonisch OrkestThe Gnesin Virtuosi Chamber Orchestra + +902977Gustavo NúñezBassoon player, born 15 February 1965 in Montevideo, Uruguay.Needs Votehttps://en.wikipedia.org/wiki/Gustavo_N%C3%BA%C3%B1ezhttps://www.concertgebouworkest.nl/en/orchestra/musicians/gustavo-nunez/https://www.conservatoriumvanamsterdam.nl/en/study/studying-at-the-cva/faculty/classical-music/gustavo-nunez/Gustavo Núñez-RodriquezConcertgebouworkestBamberger SymphonikerEbony BandSimón Bolívar Symphony Orchestra Of Venezuela + +902978Emily BeynonFlautist, born in Swansea, Wales.Needs Votehttp://www.emilybeynon.com/http://en.wikipedia.org/wiki/Emily_BeynonConcertgebouworkestEbony Band + +902979Henk RubinghDutch violinist.CorrectConcertgebouworkestAmsterdam Bach Soloists + +902988Helmut HellerGerman violinist.CorrectBerliner Philharmoniker + +903022Helmut Zacharias Mit Seiner Tanz-BesetzungCorrectHelmut Zacharias & His OrchestraHelmut Zacharias And His OrchestralistenHelmut Zacharias ComboHelmut Zacharias M. S. Großen Tanz-BesetzungHelmut Zacharias M. Sein. Groß. Sinfonischen TanzbesetzungHelmut Zacharias M.S. TanzbesetzungHelmut Zacharias Med OrkesterHelmut Zacharias Med Stort DanseorkesterHelmut Zacharias Mit Grossen Tanz-StreichorchesterHelmut Zacharias Mit Großem Tanz- StreichorchesterHelmut Zacharias Mit Großem Tanz-StreichorchesterHelmut Zacharias Mit Kleiner Tanz-Streich-BesetzungHelmut Zacharias Mit Seinem Grossen Tanz-StreichorchesterHelmut Zacharias Mit Seinem Großen TanzorchesterHelmut Zacharias Mit Seinem Tanz-StreichsolistenHelmut Zacharias Mit Seinem TanzorchesterHelmut Zacharias Mit Seinen Tanz- StreichsolistenHelmut Zacharias Mit Seinen Tanz-StreichsolistenHelmut Zacharias Mit Seinen Verzauberten GeigenHelmut Zacharias Mit Seiner Großen TanzbesetzungHelmut Zacharias Mit Seiner Kleinen TanzbesetzungHelmut Zacharias Mit Seiner Tanz-Besetzung Und BegleitgesangHelmut Zacharias Mit Seiner Tanz-StreichbesetzungHelmut Zacharias Mit Seiner Tanz-StreichorchesterHelmut Zacharias Mit Seiner TanzbesetzungHelmut Zacharias Mit Seiner Tanzbesetzung Und BegleitgesangHelmut Zacharias Og Hans DanseorkesterHelmut Zacharias Og Hans OrkesterHelmut Zacharias U. S. Kleine Tanz-BesetzungHelmut Zacharias Und Seine Tanz-BesetzungHelmut Zacharias Und Seine Tanz-Besetzung*Helmut Zacharias Und Seine Tanz-StreichsolistenHelmut Zacharias mit seiner Tanz-StreichbesetzungHelmut Zacharias, Violine Mit Seinen Tanz-StreichsolistenTanz-Streich-OrchesterHelmut Zacharias + +903073Hansheinz SchneebergerHansheinz SchneebergerHansheinz Schneeberger (16 October 1926 in Bern, Switzerland - 23 October 2019 in Basel, Switzerland) was a Swiss violinist and a music educator.Needs Votehttps://en.wikipedia.org/wiki/Hansheinz_Schneebergerhttps://de.wikipedia.org/wiki/Hansheinz_SchneebergerHans Heinz SchneebergerHans-Heinz SchneebergerKarl-Heinz SchneebergerSchneebergerХансхайнц ШнеебергерMünchener Bach-OrchesterNDR Sinfonieorchester + +903290John MenzanoAmerican bassist, music directorNeeds Votehttp://www.johnmenzano.com/index.htmlhttps://myspace.com/johnmenzano + +903344Fernand BonifayFernand Lucien BonifayFrench composer, born in 1920, died in 1993.Needs VoteA. BonifayB. FernandBonfaBonfayBonifaxBonifayBonifay F.Bonifay FernandBonifayerBoniffayBonifrayBonnifayBonofayE. BonifayF BonifayF. BonifayF. BinifayF. BonfayF. BonifaF. BonifacyF. BonifaxF. BonifayF. BonifeyF. BonitayF. BonnifayF. RonfayF.BonifayFd. BonifayFerdinad BonifrayFerdnand BonifayJ. BonifayM. BonifayM. MariniNonifayP. BonifayP.-F. BonifayR. BonifayS. BonifayRudy CastroBilly Stark Et Son OrchestreRudy Castro Et Son Orchestre + +903357Nicholas HunkaNicholas HunkaClassical Bassoonist and Professor of Bassoon. Died 6 March 2011. +He was appointed Principal Bassoon of the [a=City Of Birmingham Symphony Orchestra]. From there he moved in 1979 to the [a=London Symphony Orchestra] where he remained until his retirement in 2007. He also was the [a=National Youth Orchestra Of Great Britain] bassoon coach. He had been a bassoon tutor at [l=Birmingham Conservatoire] since 2005 and taught at the [l=Royal College Of Music, London].Needs Votehttps://www.bcu.ac.uk/conservatoire/about-us/news/nicholas-hunka-rememberedNicholas HunkeNick HunkeLondon Symphony OrchestraCity Of Birmingham Symphony Orchestra + +903358Claire SmithClaire SmithClassical viola player.Needs VoteClare SmithLondon Symphony Orchestra + +903359Bryn LewisBryn LewisClassical harpist,and Professor of Harp. +Principal Harp with the [a=London Symphony Orchestra] since 1994. Prior to this, he was Principal Harp with the [a=Philharmonia Orchestra], and also played with all the London orchestras, with the [a=European Union Chamber Orchestra] and with the [a=Berliner Philharmoniker]. +He has given masterclasses in London, Rio de Janeiro and Chicago. His own main harp studies were with Jean Bell in Manchester and [a=Renata Scheffel-Stein] in London. +Harp tutor at [l=The Guildhall School Of Music & Drama], London. +Keen cyclist, yogi, cook and traveller. +Needs Votehttps://open.spotify.com/artist/5wq4Ehj4CfT2J7uPHyItP3https://music.apple.com/us/artist/bryn-lewis/4567318https://www.feenotes.com/database/artists/lewis-bryn/https://lso.co.uk/orchestra/players/harp.htmlhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/1-department-of-strings-harp-and-guitar/53-bryn-lewis/#:~:text=Bryn%20Lewis%20is%20Principal%20Harpist,with%20the%20Berlin%20Philharmonic%20Orchestra.https://www.imdb.com/name/nm3935390/London Symphony OrchestraBerliner PhilharmonikerThe Northern Sinfonia StringsLondon SinfoniettaPhilharmonia OrchestraThe Chamber Orchestra Of EuropeThe Nash EnsembleOrquesta De Cadaqués + +903360John LawleyJohn LawleyBritish classical oboist, bass oboist and teacher of oboe. +He studied at the [l527847]. He was then appointed Principal Oboe of [a=The English National Opera Orchestra], where he stayed for 11 years. After this, he was 2nd Oboe of the [a=London Symphony Orchestra] for nearly 35 years (1978-2009). Since retiring from the LSO he has concentrated on his teaching.Needs Votehttps://northlondonmusicteachers.com/john-lawley-oboe-lessons-north-london-finchley-n3-2deLondon Symphony OrchestraLondon Wind OrchestraThe English National Opera Orchestra + +903361Jonathan VaughanJonathan Andrew VaughanBritish classical double bass player and Professor of Double Bass. Born in July 1963 in Chippenham, Wiltshire, England, UK. +He studied at the [l290263] (1982-1986) and [l305416]. Former member (July 1992 - July 2002) & Chairman (July 1999 - July 2002) of the [a=London Symphony Orchestra] and Director of the [a=National Youth Orchestra Of Great Britain] (September 2002 - August 2007). +Senior staff member at [l=The Guildhall School Of Music & Drama], London (Vice-Principal & Director of Music, September 2007 - September 2021, Principal from 2021).Needs Votehttps://www.facebook.com/jonathan.vaughan.9085/https://twitter.com/jonathanvaugha2https://www.linkedin.com/in/jonathan-vaughan-fgs-1b436634/?originalSubdomain=ukhttps://en.wikipedia.org/wiki/Jonathan_Vaughanhttps://www.gsmd.ac.uk/staff/professor-jonathan-vaughanhttps://www.ycat.co.uk/jonathan-vaughanJohnathan VaughanLondon Symphony OrchestraRoyal Philharmonic OrchestraYoung Musicians Symphony Orchestra + +903362James MaynardBritish classical trombone & euphonium player, composer, arranger, and Professor of Brass. Born in Norwich, England, UK. +He attended the [l527847]. Whilst still studying at the RAM, he was appointed as 2nd Trombone of the [a=London Symphony Orchestra], where he also played Euphonium & Bass Trumpet, serving the orchestra from November 1998 to July 2021. He also did stints in the [a=European Union Youth Orchestra] and [a=Young Musicians Symphony Orchestra]. As a composer and arranger, he was commissioned to write a number of original works, including by the London Symphony Orchestra, The Brighton Festival, [a=Onyx Brass], & LSO Discovery. Professor of Brass (Euphonium and Bass Trumpet) at the Royal Academy of Music since 2001.Needs Votehttps://www.jimmaynardmusic.com/https://www.linkedin.com/in/jim-maynard-a996851b8/https://open.spotify.com/artist/6T4kUHIlszpj944ZXR3yNwhttps://www.feenotes.com/database/artists/maynard-james-1977-present/https://lso.co.uk/whats-on/alwaysplaying/read/1634-a-month-in-the-lso-life-february.htmlJim MaynardLondon Symphony OrchestraEuropean Union Youth OrchestraYoung Musicians Symphony Orchestra + +903363Robert Hughes (3)Robert HughesBritish classical trombonist, bass trombonist and teacher. +He studied at the [l527847]. In 1978, he joined the [a835546]. In 1981 he joined the [a627128]. In 1989, he moved to London to join the [a=Philharmonia Orchestra]. At this time he also became bass trombone teacher at the [l=Royal Academy of Music] and Director of the Academy's trombone choir. In 1994, he joined the [a=London Symphony Orchestra]. In 2005, he joined the Royal Birmingham Conservatoire as bass trombone teacher. In 2006 he left the LSO to focus on his teaching and conducting commitments, and accepted the invitation to become President of the British Trombone Society, a position he held until 2010.Needs Votehttps://open.spotify.com/artist/7AY7V7UaeQHnsBeNN00mkmhttps://music.apple.com/us/artist/robert-hughes/137867422https://www.bcu.ac.uk/conservatoire/about-us/birmingham-conservatoire-tutors-and-staff/bob-hugheshttps://www.ram.ac.uk/people/bob-hugheshttps://www.imdb.com/name/nm10718657/?ref_=ttfc_fc_cr1329London Symphony OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraBBC Scottish Symphony OrchestraSixteen Trombones Of Seven London OrchestrasLondon Symphony Orchestra Brass + +903364Christine PendrillChristine PendrillClassical woodwind instrumentalist (cor anglais player mainly, but oboist as well) and professor. +She studied at the [l290263]. While a student, she began to freelance with the [a=New Philharmonia Orchestra]. After several years working with all the major London orchestras, she joined the [a=Philharmonia Orchestra] as Principal Cor Anglais in 1980. Principal Cor Anglais with the [a=London Symphony Orchestra] since 1986. As a member of the London Symphony Orchestra, she was the first woman to be elected to the orchestra's Board of Directors, a role she fulfilled for three years. Professor of Cor Anglais at the Royal College of Music.Needs Votehttps://www.facebook.com/christine.pendrillhttps://www.linkedin.com/in/christine-pendrill-12a215112/?originalSubdomain=ukhttps://www.youtube.com/channel/UCqSvP4YGdvQ4GSZh69QYuFQhttps://music.youtube.com/channel/UCqSvP4YGdvQ4GSZh69QYuFQhttps://open.spotify.com/artist/2A1TJXAGC8dWt0hv0fXeuChttps://music.apple.com/us/artist/christine-pendrill/16311074https://www.feenotes.com/database/artists/pendrill-christine/https://lso.co.uk/orchestra/players/woodwind.htmlhttps://www.rcm.ac.uk/woodwind/professors/details/?id=03051http://www.naxos.com/artistinfo/bio3231.htmhttps://www.imdb.com/name/nm4179286/Christine PendrellLondon Symphony OrchestraThe Duke QuartetPhilharmonia OrchestraYoung Musicians Symphony Orchestra + +903366Tom NorrisThomas NorrisBritish violinist & violist, composer, ensemble leader and songwriter. Born in 1971 in Kent, England, UK. +He graduated from [l305416] in 1994. He then joined the [a=Winnipeg Symphony Orchestra] as Principal Second Violin. Co-Principal Second Violin for the [a=London Symphony Orchestra] since 1998. Leader of the [b]Vuillaume Quartet[/b] and a member of the [a=Puertas Quartet] (formed in 2009) and [b]enSEmble26[/b]. He also manages a solo pop music career. + + +Needs Votehttps://www.facebook.com/people/Official-Tom-Norris-Page/100068917543591/https://www.linkedin.com/in/tom-norris-19918b1b2/?originalSubdomain=ukhttps://soundcloud.com/tom-norrishttps://open.spotify.com/artist/1MfVdSIkF1yaVybqUTMMvjhttps://music.apple.com/us/artist/tom-norris/334242403https://en.wikipedia.org/wiki/Tom_Norris_(musician)https://www.feenotes.com/database/artists/norris-tom-1971-present/http://www.tokafi.com/news/tom-norris-taking-classical-music-edge/https://lso.co.uk/orchestra/players/strings.html/https://www.ensemble26.com/gallery-1?pgid=ky4qovf3-tom-norris_1https://www.imdb.com/name/nm8488595/https://vgmdb.net/artist/22955Thomas NorrisLondon Symphony OrchestraLSO String EnsembleEuropean CamerataWinnipeg Symphony OrchestraPuertas Quartet + +903367Patrick HarrildPatrick HarrildRetired classical tuba player and Professor of Tuba. +He studied at [l305416]. After graduating, he became the principal tuba player for the [a=Royal Philharmonic Orchestra]. Former Principal Tuba of [a262940] (1988-6 April 2017). Professor of Tuba at the [l527847] since 1976, and at the Guildhall School of Music & Drama since 1992. He was brass coach to the [a=National Youth Orchestra Of Great Britain] and member of the Board of Directors of the LSO. +Needs Votehttps://open.spotify.com/artist/2p4a5UCHkH8Ku5w7CEIGf7https://music.apple.com/us/artist/patrick-harrild/265440709https://www.feenotes.com/database/artists/harrild-patrick/https://www.gsmd.ac.uk/staff/patrick-harrildPat HarrildLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilip Jones Brass EnsembleYoung Musicians Symphony Orchestra + +903368Elizabeth PigramElizabeth Pigram née GreavesBritish classical violinist. +She was the ninth woman to join the [a=London Symphony Orchestra] in 1988, and the first ever to be appointed to the Second Violin section (number four chair). She has been an R&F First Violin for the last 30 years, during which time she enjoyed a three-year term on the LSO Board. Leader of the [a=Apollo Chamber Orchestra]. +Needs Votehttps://www.linkedin.com/in/elizabeth-pigram-25a315159/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/pigram-elizabeth/https://lso.co.uk/orchestra/players/strings.html#First_violinsElizabeth Pigram (née Greaves)Elizabeth GreavesLondon Symphony OrchestraApollo Chamber Orchestra + +903370Christopher Thomas (2)British classical percussionist & timpani player, and tutor. Born in Cardiff, Wales, UK. +He studied at the [l527847]. In May 1988, he became Principal Timpani with the [a=Rheinische Philharmonie], where he stayed for four years, before returning to UK in July 1992 to freelance (08/1992-02/2014). In 2010, he was appointed Principal Timpani of the [a=Dublin Philharmonic Orchestra], a position he held for less than a year. Timpani & Percussion teacher of the [a=Royal Oman Symphony Orchestra] (02/2014-10/2019) and the Royal Guard of Oman Military School of Music (since 10/2019).Needs Votehttps://uk.linkedin.com/pub/christopher-thomas/27/9aa/348https://m.facebook.com/ulsteryouthorchestra/photos/a.397841840272401.89318.178244358898818/1075834132473165/?type=3&_ft_=top_level_post_id.1075834132473165%3Atl_objid.1075834132473165%3Athid.178244358898818%3A306061129499414%3A69%3A0%3A1464764399%3A-3674535083062620301&__tn__=EChris ThomasJ. Christopher ThomasLondon Symphony OrchestraRheinische PhilharmonieDublin Philharmonic Orchestra + +903371Nigel GommNigel GommEnglish classical trumpeter, flugelhorn player, and composer. (born: 1959 - died: 30 October 2011). +He graduated from the [l527847] in 1982. He became a member of the [a=Philip Jones Brass Ensemble] in 1984, joined the [a=London Symphony Orchestra] in 1988 (until 2011) and performed with the [a=Michael Nyman Band] in 1996, 1998 and 2002. +He was married to [a=Belinda McFarlane].Needs Votehttps://www.feenotes.com/database/artists/gomm-nigel-1959-30th-october-2011/https://lso.co.uk/more/news/116-nigel-gomm.htmlhttps://www.imdb.com/name/nm0327133/https://vgmdb.net/artist/14127Nigel CommNigel GommeLondon Symphony OrchestraLondon BrassThe Michael Nyman BandPhilip Jones Brass EnsembleLondon Festival OrchestraLondon Symphony Orchestra Brass + +903373Gareth Davies (5)Gareth DaviesBritish classical flautist & piccolo player, Professor of Flute, writer, and presenter. Born in 1971 in Guildford, Surrey, England, UK. +He studied at [l305416]. Shortly after graduating, he was appointed Principal Flute in the [a=Bournemouth Symphony Orchestra] at the age of 23, the youngest principal player in the Orchestra. After five years, in 2000, he was invited to become Principal Flute with the [a=London Symphony Orchestra] where he has remained ever since. Professor of Flute at the [l290263] since 2012.Needs Votehttp://www.garethdaviesonline.com/https://twitter.com/flutelicious?lang=enhttps://www.instagram.com/flutelicious/?hl=enhttp://www.flutecocktail.co.uk/GuestProfile_Gareth.htmlhttps://www.highresaudio.com/en/artist/view/4ada77f8-b74b-483c-953a-9fbc862e8140/gareth-davies-brno-philharmonic-orchestra-mikel-tomshttps://lso.co.uk/orchestra/players/woodwind.html#Flutes_and_piccolohttps://www.rcm.ac.uk/about/news/all/garethdavies.aspxhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/164-gareth-davies/https://www.wmshaynes.com/gareth-davieshttps://www.naxos.com/person/Gareth_Davies/879.htmLondon Symphony OrchestraBournemouth Symphony OrchestraYoung Musicians Symphony Orchestra + +903374Axel BouchauxAxel BouchauxClassical double bass player. +He studied at [l305416]. Former member of the [a=London Symphony Orchestra] (1993-2009). Principal Double Bass with [a=Orchestre Des Champs Elysées].Needs VoteEnsemble IntercontemporainLondon Symphony OrchestraOrchestre Des Champs ElyséesEnsemble Musique ObliqueInsula OrchestraEuropean CamerataLa Petite Symphonie + +903377Tom Goodman (2)Tom GoodmanBritish classical double bass player, and Professor of Double Bass. +He attended the [l459222], where he also taught. He joined the [a=London Symphony Orchestra] shortly after graduating in 2001. During 2011, he briefly accepted the position of Section Principal Double Bass with the [url=https://www.discogs.com/artist/1260606-Northern-Sinfonia]Royal Northern Sinfonia[/url]. Professor of Double Bass at the [l527847].Needs Votehttps://www.linkedin.com/in/tom-goodman-a52050b9/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/goodman-tom/https://lso.co.uk/orchestra/players/strings.html#Double_basseshttps://www.ram.ac.uk/people/tom-goodmanThomas GoodmanLondon Symphony OrchestraNorthern SinfoniaGood Vibrations (4) + +903378Matthew Gibson (2)Matthew GibsonBritish classical double bass player. Born in 1967 in Shropshire, England, UK. +He studied at [l305416]. He joined the double bass section of the [a=London Symphony Orchestra] in 1992.Needs Votehttps://www.feenotes.com/database/artists/gibson-matthew-1967-present/https://lso.co.uk/orchestra/players/strings.html/#Double_basseshttps://www.naxos.com/Bio/Person/Matthew_Gibson/68408Matt GibsonLondon Symphony OrchestraYoung Musicians Symphony Orchestra + +903381Amélie TheurillatAmélie TheurillatClassical viola player.Needs VoteAmelie TheurillatLondon Symphony OrchestraPhilharmonia OrchestraThe John Wilson Orchestra + +903382John StenhouseJohn StenhouseBritish classical clarinetist & bass clarinetist, and professor (1942- 28 August 2016). +He began in the [a=BBC Symphony Orchestra] and [a=The English National Opera Orchestra]. He became a full member of the [a=London Symphony Orchestra] in 1993, becoming Principal Bass Clarinet from 2005. He retired from the Orchestra in 2007. He taught clarinet at the [l=Trinity College Of Music, London]. +Needs Votehttps://lso.co.uk/more/news/583-obituary-john-stenhouse-1942-2016.htmlhttps://john-stenhouse.muchloved.com/Mr John StenhouseLondon Symphony OrchestraBBC Symphony OrchestraPhilharmonia OrchestraLondon Wind OrchestraThe English National Opera OrchestraThe Palm Court Theatre Orchestra"Music Time" Ensemble + +903383Catherine EdwardsCatherine EdwardsClassical pianist, harpsichordist, organist, and celesta player. +She has been the principal keyboard player with [a=The Royal Philharmonic Orchestra] since 1997.Needs Votehttps://open.spotify.com/artist/5yN4M95IfP0KCIXjFDJnIthttps://music.apple.com/us/artist/catherine-edwards/211261079https://issuu.com/londonphilharmonic/docs/25_april_2015_lpo_programme_web/11https://www.hyperion-records.co.uk/a.asp?a=A332http://worldcat.org/identities/lccn-n95002125/https://www.imdb.com/name/nm2602996/https://www2.bfi.org.uk/films-tv-people/4ce2bdbcafa28Catherine EdwardKatherine EdwardsLondon Symphony OrchestraLondon Philharmonic OrchestraCity Of London SinfoniaLondon SinfoniettaCity Of Birmingham Symphony OrchestraThe Nash Ensemble + +903384Alastair BlaydenAlastair BlaydenBritish classical cellist (both chamber musician & orchestral player), and cello professor. +He attended the Britten-Pears School and the [l290263] (1988-1992), from whence he obtained diplomas in performance and teaching. Sub-principal Cello of the [a=London Symphony Orchestra] since 1997. He was a member of the [a=Dante Quartet]. He has performed extensively as a member of [a=The Academy of St. Martin-in-the-Fields]. Professor of Cello at the Royal College of Music since 2002.Needs Votehttps://www.facebook.com/alastair.blaydenhttps://www.linkedin.com/in/alastair-blayden-87544863/https://music.apple.com/us/artist/alastair-blayden/id213744643https://www.feenotes.com/database/artists/blayden-alastair/http://www.fibsonline.co.uk/gallery/detail.php?ImID=8https://lso.co.uk/orchestra/players/strings.htmlhttps://www.rcm.ac.uk/strings/professors/details/?id=01963https://www.imdb.com/name/nm2447739/https://vgmdb.net/artist/22829Alistair BlaydenAlstair BlaydenLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Cello SoundLondon Symphony Orchestra StringsDante QuartetThe Chamber Orchestra Of LondonProspero Ensemble + +903385Lennox MackenzieJames Lennox MackenzieRetired British classical violinist. +He studied at the [l527847]. He was a member of the [a=Arditti Quartet] (1974-1983) and the [a=London Symphony Orchestra] (1977-1980). Former Sub-Leader, First Violin in the LSO (January 1980-19 September 2018) and Chairman of the Board for 16-years - making him the longest-serving chairman in the orchestra's 114-year history. +Needs Votehttps://www.facebook.com/lennox.mackenzie/https://www.feenotes.com/database/artists/mackenzie-lennox/https://theviolinchannel.com/lennox-mackenzie-london-symphony-orchestra-sub-leader-violinist-retires/https://www.thestrad.com/news/london-symphony-orchestra-sub-leader-lennox-mackenzie-retires-after-38-years/8205.articlehttps://www.imdb.com/name/nm4712034/https://vgmdb.net/artist/22952J. Lennox MackenzieLennie MackenzieLennie McKenzieLennox MackensieLennox McKenzieLenny MacKenzieレノックス・マッケンジーLondon Symphony OrchestraThe Martyn Ford OrchestraArditti QuartetLondon Symphony Orchestra StringsLSO String Ensemble + +903386Jonathan LiptonJonathan LiptonAmerican classical horn player and Professor of Horn & Wagner Tuba. Born in New York City, New York, USA. +In 1976, he moved to England and in 1981, he became a member of the [a=Ulster Orchestra]. In 1985, he joined the [a=BBC Welsh Symphony Orchestra]. In 1987, he was appointed 4th horn of the [a=London Symphony Orchestra], holding the position for over 30 years (until 2019) - the longest serving fourth horn in the orchestra's history. During his time with the LSO he was a member of the Board of Directors. +Professor of Horn & Wagner Tuba at [l=The Guildhall School of Music & Drama]. +Needs Votehttps://www.jonathanlipton.net/https://twitter.com/tonoflipshttps://www.feenotes.com/database/artists/lipton-jonathan/https://vgmdb.net/artist/14121Johnathan LiptonLondon Symphony OrchestraUlster OrchestraBBC Welsh Symphony OrchestraThe London Horn Sound + +903387Mary BerginMary BerginClassical cellist. +Former member of the [a212726] (1992-2014).Needs Votehttps://www.feenotes.com/database/artists/bergin-mary/London Symphony OrchestraRoyal Philharmonic Orchestra + +903388Timothy Jones (2)Classical bass vocalist and narrator.Needs VoteJonesTim JonesThe Sixteen + +903390David GoodallDavid GoodallClassical violinist. +Former Second Violin of the [a=London Symphony Orchestra] (1979-2004). +Needs VoteLondon Symphony OrchestraOrchestre Révolutionnaire Et RomantiqueLondon Symphony Orchestra Strings + +903391Gordon HuntGordon HuntEnglish classical oboe player, conductor, and Professor of Oboe (born 1950 in London, England, UK). +[b]For the British jazz clarinettist, please use [a=Gordon Hunt (5)][/b]. +He was Principal Oboe of the [a=New Philharmonia Orchestra]/[a=Philharmonia Orchestra] and [a=The London Chamber Orchestra] and has previously held the same position with the [a271875]. Principal Oboe of the [a=World Orchestra For Peace]. He was Music Director of the Swedish Chamber Winds (1991-1997) and [a=The Danish Chamber Players] (2001-2004). Professor of Oboe at the [l305416].Needs Votehttps://en.wikipedia.org/wiki/Gordon_Hunt_(musician)https://www.feenotes.com/database/artists/hunt-gordon/https://maslink.co.uk/client-directory?client=HUNTG2&https://www.bach-cantatas.com/Bio/Hunt-Gordon.htmhttps://www.gsmd.ac.uk/staff/gordon-hunthttps://www.howarthlondon.com/artists_cpt/gordon-hunt/G. HuntHuntГордон Хантゴードン・ハントLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraThe London Chamber OrchestraNew Philharmonia OrchestraWorld Orchestra For Peace + +903392Peter NorrissClassical viola player. +Former member of the [a=London Symphony Orchestra] (1974-2007); Sub-Principal Viola 1976-1977.Needs VoteP. NorrissPeter Norrisピーター・ノリスLondon Symphony Orchestra + +903393The Ladies Of The London Symphony ChorusCorrectLadies Of The London Symphony ChorusLondon Symphony ChorusWoman ChorusWomen's ChorusLondon Symphony Chorus + +903394Rebecca KozamRebecca KozamClassical oboist & cor anglais player, and oboe tutor. +Needs Votehttps://www.facebook.com/rebecca.kozamLondon Symphony Orchestra + +903396Joyce NixonJoyce NixonClassical violinist. +Former member of the [a212726] as a second violin (1982-2004). +Needs VoteLondon Symphony OrchestraThe London Bach Orchestra + +903397Laurent QuenelleLaurent QuénelleFrench classical violinist and Professor of Violin. Born in 1970 in Sainte-Maure, Aube, France. +He studied at the [l1014340] and [l305416]. In 1995, he founded the [a=European Camerata]. First Violin for the [a=London Symphony Orchestra] since 1996. +Professor of Violin at [l305416]. +Needs Votehttps://www.facebook.com/laurent.quenelle/https://www.linkedin.com/in/laurent-quenelle-2354069/?originalSubdomain=ukhttps://open.spotify.com/artist/5R4KMPYjkx3ovqRlXQWznYhttps://music.apple.com/us/artist/laurent-quenelle/83739956https://www.feenotes.com/database/artists/quenelle-laurent-1970-present/https://lso.co.uk/orchestra/players/strings.html#First_violinshttps://www.gsmd.ac.uk/staff/laurent-quenellehttps://www.imdb.com/name/nm8488535/https://vgmdb.net/artist/22812Laurent QuénelleLondon Symphony OrchestraLondon Symphony Orchestra StringsThe Mullova EnsembleEuropean Soloists EnsembleEuropean Camerata + +903398Gerald RuddockGerald RuddockBritish classical trumpeter, and Professor of Trumpet. +He spent 17 years with the [a=Royal Philharmonic Orchestra] before joining the [a=London Symphony Orchestra] as Sub-Principal Trumpet (1997-2018). Professor of Trumpet at [l305416]. Retired on 24 June 2018.Needs Votehttps://www.linkedin.com/in/gerry-ruddock-716a0764/https://www.feenotes.com/database/artists/ruddock-gerald/https://www.imdb.com/name/nm10718654/https://vgmdb.net/artist/14123Gerry RuddockLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsYoung Musicians Symphony OrchestraLondon Symphony Orchestra Brass + +903399Rachel GoughRachel GoughClassical bassoonist and Professor of Bassoon. +She studied at the [l527847]. During her studies, she was Principal Bassoon in the [a=European Union Youth Orchestra] before becoming Sub-Principal Bassoon with the [a=BBC Symphony Orchestra] (1991-1999). After that, she joined the [a=London Symphony Orchestra] as their principal bassoonist. She served as a Professor of Bassoon at the Royal Academy of Music (1991-1999). +Married to [a=Jaime Martín]. Daughter of [a=Celia Nicklin].Needs Votehttps://www.facebook.com/rachel.gough.5851https://open.spotify.com/artist/6kW9T2FwY2lv1eB9AiUiZlhttps://music.apple.com/us/artist/rachel-gough/250888287https://en.wikipedia.org/wiki/Rachel_Goughhttps://lso.co.uk/orchestra/players/woodwind.html#Bassoonshttps://www.hyperion-records.co.uk/a.asp?a=A6505https://www.imdb.com/name/nm8283760/Raquel GoughLondon Symphony OrchestraBBC Symphony OrchestraEuropean Union Youth OrchestraLondon Symphony Orchestra Chamber EnsembleLSO Wind Ensemble + +903400Dudley BrightClassical trombonist, composer, and Professor of Tenor Trombone. +He studied at [l305416] graduating in 1974. Aged 22, he joined the [a=Hallé Orchestra]. In June 2001, he was appointed Principal Trombone of the [a=London Symphony Orchestra], a position he held until his retirement in June 2018. Prior to that, he held the same position with the [a=Philharmonia Orchestra]. Professor of Tenor Trombone at the [l527847].Needs Votehttps://www.facebook.com/dudley.brighthttps://www.linkedin.com/in/dudley-bright-4308b0174/?originalSubdomain=ukhttps://open.spotify.com/artist/77pNWLDPykWN7c01dhtxhfhttps://music.apple.com/us/artist/dudley-bright/257070330https://en.wikipedia.org/wiki/Dudley_Brighthttps://www.feenotes.com/database/artists/bright-dudley/https://stringfixer.com/nl/Dudley_Brighthttps://www.imdb.com/name/nm3902461/BrightD. BrightLondon Symphony OrchestraLondon BrassHallé OrchestraPhilharmonia OrchestraThe Academy Of Ancient MusicSixteen Trombones Of Seven London OrchestrasLondon Central Fellowship Band Of The Salvation Army + +903404Simon Carrington (2)Simon CarringtonBritish classical percussionist & timpanist, and Professor of Timpani. Born in 1966 in Cambridge, England, UK. +He studied at the [l290263]. He joined the percussion section in the [a=London Symphony Orchestra] in 1991. He became joint principal timpani and percussion in 1995. In 2002 Simon joined the [a=London Philharmonic Orchestra] as principal timpanist. Senior Professor of Timpani at the [l527847].Needs Votehttps://www.hardtketimpani.com/timpanists/simon-carrington/http://www.bachovich.com/artist/146https://lpo.org.uk/people/simon-carrington/https://www.ram.ac.uk/people/simon-carringtonhttps://percusiones.es/profesores-invitados/simon-carrington/London Symphony OrchestraLondon Philharmonic Orchestra + +903405David ArcherDavid ArcherBritish classical trumpeter, flugelhornist and cornetist. +He studied at the [l527847]. +Husband of [a=Claire Parfitt].Needs VoteLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraCity Of London SinfoniaRoyal Philharmonic OrchestraPhilharmonia OrchestraCity Of Birmingham Symphony OrchestraThe Royal Philharmonic Concert OrchestraBournemouth Symphony OrchestraBBC PhilharmonicOrchestra Of The Royal Opera House, Covent GardenBBC Concert OrchestraLondon Symphony Orchestra Brass + +903406John AlleyJohn AlleyBritish classical piano & celesta player. Born in London, England, UK. +He started out singing in [a=The Choir Of Westminster Abbey] (1959-1963) and attended [l305416] (1969-1972). He was a regular keyboard player with the [a=BBC Symphony Orchestra] (1980-2010) and Principal Keyboard of the London Symphony Orchestra (1994-2015). Co-founder of [a=The Deutz Trio] in 1993.Needs Votehttps://www.johnalleypiano.comhttps://www.aureacapra.comhttps://www.linkedin.com/in/john-alley-44330173/?originalSubdomain=ukhttps://open.spotify.com/artist/3hRhfQSrL12SX2s3jtpEMZhttps://music.apple.com/mx/artist/john-alley/3188375?l=enhttps://www.feenotes.com/database/artists/alley-john/http://www.morgensternsdiaryservice.com/WebProfile/alley_j_685.shtmlhttps://www.brasswindpublications.co.uk/acatalog/ArbanBiog.htmlhttps://www.naxos.com/person/John_Alley/38223.htmhttps://www.imdb.com/name/nm3173189/London Symphony OrchestraBBC Symphony OrchestraWestbrook Music TheatreThe Choir Of Westminster AbbeyThe SkirmishersThe Deutz Trio + +903407Rinat IbragimovРенат Ибрагимов = Rinat IbragimovRussian-Tatar classical double bass player, conductor, and Professor of Double Bass. Born on November 5, 1960 in Moscow, USSR - Died on September 2, 2020 in London, England, UK. +He studied at the [l589988]. Between 1983 and 1997 he was the Principal Double Bass of the [a=Bolshoi Theatre Orchestra], the [a=Academy Of Ancient Music Moscow], [a=Moscow Soloists], and [b]The Soloists of the Moscow Philharmonic[/b]. He relocated to London, England in 1995. Former Principal Double Bass of [a262940] (1996-2020). +He was Professor of Double Bass at the [l285011] (1991-1997), [l305416] from 1999, and the [l290263] from 2007. +He was married to [url=https://www.discogs.com/artist/5679973-Lucia-Ibragimova]Lutsia Ibragimova[/url] with whom they had a daughter, [a=Alina Ibragimova]. + +Needs Votehttp://www.ibragimov.co.uk/https://open.spotify.com/artist/6sPsOnNZ3RCyILWhXRGPQ9https://music.apple.com/us/artist/rinat-ibragimov/674642419https://en.wikipedia.org/wiki/Rinat_Ibragimov_(musician)https://www.feenotes.com/database/artists/ibragimov-rinat/https://www.connollymusic.com/stringovation/artists-profile-string-bassist-rinat-ibragimovhttps://www.notreble.com/buzz/2020/09/04/in-memoriam-rinat-ibragimov/https://lso.co.uk/more/news/1572-obituary-rinat-ibragimov-1960-2020.htmlhttps://www.gsmd.ac.uk/about-guildhall/news/obituary-rinat-ibragimov-1960-2020https://www.thestrad.com/playing-hub/rinat-ibragimov-the-lsos-principal-emeritus-double-bass-has-died/11179.articlehttps://www.telegraph.co.uk/obituaries/2020/09/07/rinat-ibragimov-brilliant-russian-born-principal-double-bass/Renat IbraghimovRenat IbragimovРенат ИбрагимовLondon Symphony OrchestraMoscow Philharmonic OrchestraBolshoi Theatre OrchestraАнсамбль камерной музыкиMoscow SoloistsBolshoi Theatre Chamber OrchestraAcademy Of Ancient Music Moscow + +903409Chi-Yu MoChi-Yu MoBiritish classical clarinettist, and Professor of Clarinet. Born 25 November 1970. +He studied at the [l527847] (1995-1996). After graduation, he joined the [a=Royal Liverpool Philharmonic Orchestra] as Principal E flat Clarinet. In 1998, he became Sub-Principal E flat clarinet of the [a=London Symphony Orchestra]; in 2008, he was appointed Principal E Flat Clarinet of the LSO. Professor of E flat Clarinet at the Royal Academy of Music.Needs Votehttps://www.feenotes.com/database/artists/mo-chi-yu-25-november-1970-present/https://celebratingaustralianmusic.com/portfolio-item/chi-yu-mo/https://lso.co.uk/orchestra/players/woodwind.htmlhttps://www.ram.ac.uk/people/chi-yu-mohttps://vgmdb.net/artist/22963London Symphony OrchestraRoyal Liverpool Philharmonic Orchestra + +903476Edwin FinckelEdwin Finckel.American jazz pianist, arranger and composer +Worked as arranger with Boyd Raeburn, Les Brown, Gene Krupa and Buddy Rich and others. +As composer : "Leave Us Leap", Gypsy Mood" and "Starburst". + +Born : December 23, 1917 in Washington, D. C.. +Died : May 13, 2001 in Madison, New Jersey. +Needs Votehttps://adp.library.ucsb.edu/names/369233E. A. FinckelE. FinckelE. FinckleE. FinkelE.A. FinckelEd FinckelEd Finckel (?)Ed FinckleEd FinkelEd FinkleEddie FinckelEddie FinckleEddie FinkleEdwin A. FinckelEdwin A. FinkelEdwin FinckellFinckelFinckel, EdwinFinckellFinckleFincleFinkelFinkleAllen Eager Quartet + +903670Libby CrabtreeClassical soprano vocalist.Needs Votehttps://www.libbycrabtree.org/CrabtreeGabrieli ConsortThe SixteenPolyphonyDunedin ConsortMartin Best Consort + +903672Noel MannClassical vocalist (bass).CorrectThe Monteverdi Choir + +903731Dan StyffeClassical double bass player and music teacher, born 1957 in Dalby, Sweden. He teaches at the Norwegian Academy of Music and at Barratt Due Institute of Music.Needs VoteOslo Filharmoniske OrkesterDet Norske KammerorkesterBorealis (3) + +903755Martin Lawrence (3)Classical hornist.Needs VoteMartin LaurenceThe SixteenThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersHanover BandThe Symphony Of Harmony And InventionArcangeloThe Music PartyThe English Concert + +903787Will BehWill Beh (21 April 1924 - 7 February 2016) was a German classical violinist and Professor of Violin at the [l316267].Needs VoteW. BehWilli BehPro Musica Orchestra StuttgartStuttgarter PhilharmonikerBarchet-QuartettPaul Angerer EnsembleBeethoven-Trio, Stuttgart + +903789Zdeněk MácalCzech conductor. +Born 8 January 1936 in Brno (former Czechoslovakia), died 25 October 2023.Needs Votehttps://cs.wikipedia.org/wiki/Zden%C4%9Bk_M%C3%A1calhttps://en.wikipedia.org/wiki/Zden%C4%9Bk_M%C3%A1calhttps://www.imdb.com/name/nm5337878/MacalMácalZdenek MacalZdenek MakalZdenek MàcalZdenek MácalZdeněk MacalЗденек МацалThe Czech Philharmonic Orchestra + +903967Adrian RovatkayAdrian Rovatkay (born 1964) is a German classical bassoonist and painter. Plays also the dulcian, the renaissance predecessor of the bassoon. +He's the son of [a960914] and [a2215295].Needs VoteMusica Antiqua KölnLautten CompagneyCapella Agostino SteffaniCantus CöllnUnited Continuo EnsembleMusica FiataNova StravaganzaDresdner BarockorchesterLes Cornets NoirsBergen BarokkHimlische CantoreyAkadêmiaMusica Alta RipaLa Festa MusicaleBarockorchester L'ArcoAbendmusiken BaselEnsemble ChelycusKirchheimer Düben ConsortWrocławska Orkiestra Barokowa + +904058Alois MelicharAustrian conductor and composer. He was born 18 April 1896 in Vienna, Austrian-Hungary (now Austria) and died 9 April 1976 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Alois_Melicharhttps://www.deutsche-biographie.de/sfz61409.htmlhttps://www.musiklexikon.ac.at/ml/musik_M/Melichar_Alois.xmlhttps://adp.library.ucsb.edu/names/103339A. MelchiarA. MelicarA. MelichanA. MelicharA. MelicherA. MellicharAlios MelicharAlois MelchiarAlois MelichorAloys MelicharAloys MelicherAloïs MelicharAloïs MélicharArr. Alois MelicharHans MelicharM.o Alois MelicharMaricharMelchiarMelichanMelicharMelichar'MelicherR. Melicharアロイス・メリハリアロイス・メリハル + +904084Elisabeth FlickenschildtElisabeth Ida Marie FlickenschildtGerman actress and voice actor. She was born on March 16, 1905 in Blakenese near Hamburg, Germany and died on October 26, 1977 in Stade, Germany.Needs Votehttps://de.wikipedia.org/wiki/Elisabeth_FlickenschildtElisabeth Flickenschild + +904196Molly Ann LeikinMolly Ann LeikinSongwriter.Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=198970&subid=0A. LeikinAnn LeikinAnn Molly LeikinLeikanLeikenLeikinLeikingLeikonLiekenM A LeikinM-A LeikinM. A. LeikenM. A. LeikinM. A. LeikingM. A. LeiklinM. Ann LeikinM. LeikenM. LeikinM. LelkinM. LikenM.-A. LeikenM.A. LeikenM.A. LeikinM.A. LelkinM.A.LeikenM.A.LeikinM.LiokinMolly - A. LeikinMolly - Ann LeikinMolly / Ann LeikinMolly A. LeikinMolly Ann LeikenMolly LeikinMolly-A. LeikinMolly-Ann LeikenMolly-Ann LeikinMolly-Anne LeikinMolly/Ann LeikinMollyann Leikin + +904276Bill SmileyAmerican jazz trombonistNeeds VoteBillie SmileyWoody Herman And His OrchestraStan Kenton And His OrchestraBuddy Morrow And His OrchestraWoody Herman's Big New HerdWoody Herman And The Swingin' HerdThe Tommy Vig OrchestraSam Trippe And His Orchestra + +904278Frank HugginsAmerican trumpet playerNeeds VoteFrank HigginsFrank RugginsHugginsLes Brown And His Band Of RenownWoody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman's Big New HerdWoody Herman And The Swingin' HerdTerry Gibbs Big Band + +904702Jan SchoonenbergDutch classical violist and conductor, born in 1960.Needs VoteSchönberg EnsembleAsko EnsembleCombattimento Consort AmsterdamRadio KamerorkestResidentie OrkestMondriaan StringsNieuw EnsembleRadio Filharmonisch OrkestNederlands Philharmonisch Orkest (2) + +905685Sidney HarthAmerican violinist and conductor, born 5 October 1925 in Cleveland, Ohio and died 15 February 2011 in Pittsburgh, Pennsylvania. Married to [a14630727].Needs Votehttps://en.wikipedia.org/wiki/Sidney_HarthS.HarthSid HarthaSydney HarthСидней ХартNew York PhilharmonicLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +906347Ian CrockettCorrect + +906348Johnny WilksJohnny WilksRecord company executive at the [l=Kscope] label and others in the [l=Snapper Music] group.Needs VoteJWWilksSaturday Morning Pictures + +906653Rhys WatkinsBritish classical violinist. Born in 1982 in Cardiff, Wales, UK. +He graduated from the [l527847] in 1985. In 1999, he became a member of [a3274880]. He became a member of the First Violin section of the [a=London Symphony Orchestra] in 2009. He and [a=Rowena Calvert] formed [b]The Watkins Duo[/b]. Member of the [a=Artea Quartet].Needs Votehttps://www.feenotes.com/database/artists/watkins-rhys-1982-present/https://lso.co.uk/orchestra/players/strings.html/#First_violinshttps://www.r2violincello.com/https://citymusiclive.co.uk/the-watkins-duo.htmlhttp://www.pgvim.ac.th/musicfestival/2021-artists/https://thelittleboxoffice.com/riverhouse/event/view/9568London Symphony OrchestraSinfonia CymruLSO String EnsembleArtea Quartet + +907451Eduard von BauernfeldEduard von BauernfeldAustrian dramatist, born 13 January 1802 in Vienna and died 9 August 1890 in Vienna, Austria-Hungary. +Needs VoteBauernfeldE. v. BauernfeldE. von BauernfeldEduard BauernfeldVon Bauernfeldvon Bauernfeld + +907452Karl EngelKarl EngelSwiss pianist. + +He was born 1 June 1923 in Birsfelden, Switzerland and died 2 September 2006 in Chernex, Switzerland. +CorrectCarl EngelEngelK. EngelKarl EnglKlavier + +907453Irwin GageIrwin Gage was an American pianist (4 September 1939 in Cleveland, Ohio, USA - 12 April 2018, Zurich, Switzerland).Needs Votehttps://en.wikipedia.org/wiki/Irwin_GageGageI. GageIrwing GageЭрвин Гейджアーウィン・ゲイジ + +907457Adam StorckPhilip Adam StorckGerman educator and historian. +Born 16 October 1780 in Traben-Trarbach, Germany — died 19 April 1822 in Bremen.Needs Votehttps://de.wikipedia.org/wiki/Adam_StorckA. StorchD. Adam StorckP. Adam StorckP.A. StorckStarckStorckStorkStrack + +907578Frédéric MaindiveViolinist. + +Born in 1973. +Correcthttp://www.ensemblenordsud.com/frederic_maindive_violon_alto.htmlFrederic MaindriveFrédéric MaindriveOrchestre Philharmonique De Radio FranceEnsemble Nord-Sud + +907583Vincent Cazanave-PinClassical violistNeeds VoteVincent Cazenave-PinOrchestre National Du Capitole De ToulouseEnsemble Syntonia + +907617Otto ArminCanadian violinist, born 22 May 1943 in Winnipeg, Canada.CorrectOtta ArminThe Cleveland OrchestraRadio-Sinfonieorchester StuttgartHamilton Philharmonic OrchestraPhilharmonisches Staatsorchester HamburgBachcollegium Stuttgart + +907984Paul VerheyFlautist.Needs VoteP. VerheyPaul VerheijNederlands Blazers EnsembleEbony BandAmsterdam Bach SoloistsArdito Wind Quintet + +907989Han de VriesHan Libbe Samuel de VriesDutch oboist, born 31st August 1941 in The Hague.Needs Votehttp://en.wikipedia.org/wiki/Han_de_VriesAnne de VriesDe VriesH. de VriesHans De VriesHans de Vriesde VriesNederlands Blazers EnsembleEnsemble Musica NegativaConcertgebouworkestAlma Musica AmsterdamLinde-Consort + +908380Fredrik PaciusFriedrich PaciusComposer and music teacher, born March 19, 1809 in Hamburg, Germany; died January 8, 1891 in Helsinki, Finland. He is considered as the "father of Finnish music". + +Pacius was born in Germany and worked as a violinist in Stockholm for several years, but lived most of his life in Finland. In 1848 he composed Finland's national anthem "Maamme", based on a poem by [a=Johan Ludvig Runeberg]. Also Estonia's national anthem uses the same composition. + +Found [a3295505] in 1838Needs Votehttp://www.pacius.fihttp://en.wikipedia.org/wiki/Fredrik_Paciushttps://en.wikipedia.org/wiki/Akademiska_S%C3%A5ngf%C3%B6reningenhttps://adp.library.ucsb.edu/names/108875F. PaciusF. PaclusF.PaciusFr. PaciusFrederik PaciusFredric PaciusFriedrich PaciusPaciusPacius FredrikPacius, FredrikPasius + +908743Melanie FeldMelanie FeldOboe player + +Principal Oboe with the [b]Stamford Symphony Orchestra[/b] since 1980.Needs VoteThe Brooklyn Philharmonic OrchestraAmerican Composers OrchestraThe American Symphony OrchestraOrchestra Of St. Luke'sWestchester PhilharmonicMusic AmiciPhilharmonia VirtuosiSt. Luke's Chamber Ensemble + +908940Tielman SusatoTylman Susato (also Tielman) (c. 1500 – 1561) was a Renaissance Flemish composer, instrumentalist and publisher of music in Antwerp.Needs Votehttps://en.wikipedia.org/wiki/Tielman_SusatoBei Tielman SusatoEnsemble Tielman SusatoSammlung Tielman SusatoSusatoSusato T.Susato'sSusato, TilmanT. SusatoT. Susato (1551)T. SusattoT.SusatoTeilman SusatoThielman SusatoTieleman SusatoTielemann SusatoTielman SuastoTielman Susatto (trad.)Tielman SuzatoTielmann SusatoTillman SusatoTillmann SusatoTilman SosatoTilman SusatoTilmann SusatoTyilman SusatoTykman SusatoTylamn SusatoTylman SusatoTylman SuzatoTylmann SusatoТ. СусатоТильман Сузато + +909198Heinrich SchützHeinrich SchützGerman composer and organist of the late Renaissance and early Baroque period, born 8th October 1585 in Köstritz, Germany - died 6th November 1672 in Dresden, Germany. +He is generally regarded as the most important German composer before [a=Johann Sebastian Bach] and often considered to be one of the most important composers of the 17th century along with [a=Claudio Monteverdi].Needs Votehttp://www.heinrich-schuetz-haus.de/http://www.heinrichschuetz.com/https://en.wikipedia.org/wiki/Heinrich_Sch%C3%BCtzhttps://www.britannica.com/biography/Heinrich-Schutzhttps://adp.library.ucsb.edu/names/102978H. SchuetzH. SchultzH. SchutzH. SchützHch. SchützHeindrich SchuetzHeinr. SchützHeinrich E. SchutzHeinrich SchuetzHeinrich SchultzHeinrich SchutzHeinrich SchüetzHeinrich Schütz 1585- 1672Heinrich ShutzHeinrid SchützHenrich SchutzSchuetzSchutzSchützSchültzSchützX. ШютцГ. ШотцГ. ШютцГенрих Шютцシュッツハインリヒ・シュッツStaatskapelle Dresden + +909199Thomas FordThomas Ford (c. 1580 – 17 November 1648) was an English composer, lutenist, viol player and poet. Ford wrote anthems, for three to six voices; four sacred canons; 35 part songs; six fantasias for five parts; and a few other pieces for viols.Correcthttp://en.wikipedia.org/wiki/Thomas_Ford_%28composer%29FordT. FordTh. FordThomas Foord + +909271Ottomar BorwitzkyGerman cellist (born 6 October 1930 in Hamburg; died 29 March 2021), first principal cellist with the Berlin Philharmonic from 1956 to 1993, also teacher at the Karajan-Akademie.Needs Votehttps://de.wikipedia.org/wiki/Ottomar_Borwitzky_(Cellist)BorwitzkyO. BorwitzkyO.BorwitzkyOttmar BorwitzkyOttomar BorowitzkyBerliner PhilharmonikerDie 12 Cellisten Der Berliner Philharmoniker + +909567Kees BoersmaAustralian double bass playerNeeds VoteKees BoesmaSydney Symphony Orchestra + +909596Emmanuelle OphèleClassical flutist.Needs Votehttps://www.ensembleintercontemporain.com/en/soliste/emmanuelle-ophele/Emmanuelle OpheleEmmanuelle Ophèle-GaubertEnsemble Intercontemporain + +909598André TrouttetClarinet player.CorrectAndré TroutteEnsemble Intercontemporain + +909599Florent BoffardClassical pianist.Needs Votehttps://www.florentboffard.com/https://en.wikipedia.org/wiki/Florent_BoffardF. BoffardEnsemble Intercontemporain + +909600Jeanne Marie ConquerJeanne-Marie ConquerViolin player.Needs Votehttps://www.ensembleintercontemporain.com/en/soliste/jeanne-marie-conquer/Jeanne Marie ConquereJeanne Marie ConquerrJeanne-Marie ConquerEnsemble IntercontemporainEnsemble Alternance + +909704Marianne Le MentecClassical harpist.CorrectEnsemble Intercontemporain + +909705Thierry AmadiFrench classical cellistNeeds VoteOrchestre Philharmonique De Monte-CarloEnsemble De Violoncelles De ParisTrio Goldberg + +909707Alexis DescharmesFrench cellist, born 2 March 1977.Needs Votehttp://www.descharmes.com/https://www.facebook.com/alexis.descharmesEnsemble IntercontemporainOrchestre National De L'Opéra De ParisEnsemble De Violoncelles De ParisOrchestre National Bordeaux AquitaineEnsemble Court-CircuitQuatuor Diotima + +909708Frédérique CambrelingHarp player.Needs Votehttp://www.frederique-cambreling.fr/bio_en.htmlCambrelingDominique CambrelingF. CambrelingFrèderique CambrelingEnsemble IntercontemporainIctus (2) + +909709Dimitri VassilakisGreek classical pianist, born in 1967.Needs Votehttps://fr.wikipedia.org/wiki/Dimitri_Vassilakishttps://www.bach-cantatas.com/Bio/Vassilakis-Dimitri.htmhttps://www.ensembleintercontemporain.com/en/soliste/dimitri-vassilakis/Dimitri VassikalisDimitri VassiliakisEnsemble IntercontemporainEnsemble Des Équilibres + +909710Raphaël PerraudCello player.Needs VoteR. PerraudRaphael PerraudOrchestre National De FranceEnsemble De Violoncelles De ParisTraffic Quintet + +909711Claude GironCello player.Needs VoteOrchestre De ParisEnsemble De Violoncelles De ParisSirba OctetEuropean Camerata + +909713Hideki NaganoClassical pianist, born 1968 in Japan. He studied at the Tokyo National University of Fine Arts and Music and at the Paris Conservatoire.Needs Votehttps://en.wikipedia.org/wiki/Hideki_Naganohttps://www.ensembleintercontemporain.com/en/soliste/hideki-nagano/Hidéki NaganoEnsemble Intercontemporain + +909857Charlie SmallTrombone player that grew up at the lower East Side of New York in the 1930's and after High School played in trombonist Tommy Dorsey's band. Later he was hired to NBC New York Television Orchestra where he stayed most of his career. + +In his last working years he made a living playing trombone in various Broadway shows. + +Don't confuse with jazz pianist/musical composer [url=http://www.discogs.com/artist/Charlie+Smalls]Charlie Smalls[/url] +CorrectC. SmallCharles SmallHarry James And His OrchestraVic Schoen And His All Star BandUrbie Green And Twenty Of The "World's Greatest" + +909928Kathryn SaundersClassical horn player. +She studied at [l305416] (1995-2000). 2nd Horn of the [a=Royal Philharmonic Orchestra].Needs Votehttps://maslink.co.uk/client-directory?client=SAUNK1&Kath SaundersKatherine SaundersLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraCity Of Birmingham Symphony OrchestraIrish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsEuropean Union Youth OrchestraEuropean SinfoniettaNorthern SinfoniaBBC National Orchestra Of WalesOrchestre Mondial Des Jeunesses MusicalesEnglish Classical PlayersEuropean CamerataThe London Horn Sound + +909961Giovanni GabrieliGiovanni GabrieliItalian composer and organist (c. 1554/1557 – 12 August 1612). Nephew of [a909193]. + +He was one of the most influential musicians of his time, and represents the culmination of the style of the Venetian School, at the time of the shift from Renaissance to Baroque idioms. +Gabrieli was a leading figure in Renaissance Venetian music. He succeeded his uncle Andrea Gabrieli, an organist at Venice's St. Mark Basilica after his uncle's death in 1586 and retained this position until his own death in 1612. His work as a composer represents the height of musical achievement in Renaissance Venice. + +Gabrieli continued the traditional cori spezzati techniques developed at St. Mark's during the sixteenth century, contrasting different groups of singers and instrumentalists and making use of the spatial effects possible in the great basilica. His eight-part setting of the Jubilate, using double choir and brass, is typical of his style of writing. + +The most widely known of Gabrieli's works is the Sonata pian' e forte, an eight-part composition for two four-part groups of wind instruments included in the Sacrae Symphoniae of 1597, with a number of instrumental Canzoni for between six and sixteen parts. These works, and a quantity of compositions of a similar kind, including Toccatas and Ricercars, have provided an interesting repertoire for modern brass players, although originally they were played by instruments such as the sackbuts (‘the earlier form of trombone’), and the cornetti (‘curved wooden instruments with a cup-shaped mouth-piece’).Needs Votehttps://en.wikipedia.org/wiki/Giovanni_Gabrielihttps://www.naxos.com/person/Giovanni_Gabrieli/27189.htmhttp://www.hoasm.org/IVN/GabrieliGiovanni.htmlG GabrieliG. GabrielG. GabrieliG. Gabrieli:G. GabrielliG.GabrieliGabrieleGabrieliGabrieli G.Gabrieli, GiovanniGabrielliGiovani GabrieliGiovann GabrieliGiovanniGiovanni GabrielliGiovanni HabrieliGivanni GabrieliГ. ГабриелиДж. ГАБРИЕЛИДж. ГабриелиДж. Габриельガブリエリジョヴァンニ・ガブリエリジョヴァンニ・ガブリエーリ + +909998Mark BueckerEngineer and producer of classical recordings.Needs VoteMark BuekerMark BückeMark Bücker + +909999Jean-Philippe CochenetFrench percussionist and hornistNeeds VoteEnsemble IntercontemporainOrchestre De L'Opéra De Lyon + +910000Ghislaine Petit Ghislaine Petit-VoltaHarp player.Needs Votehttps://www.academiesdhiver.com/eng-ghislaine-petit-voltaGhislaine Petit VoltaEnsemble Intercontemporain + +910001Benoît MarinClassical viola player and educator, born 1962.Needs Votehttps://euromusica.com/en/benoit-marin-viola/B. MarinBenoit MarinEnsemble IntercontemporainOrchestre De L'Association Des Concerts PasdeloupOrchestre Philharmonique De Radio France + +910002Alain BillardClarinet player.Needs Votehttps://www.ensembleintercontemporain.com/en/soliste/alain-billard/https://fr.wikipedia.org/wiki/Alain_Billardhttps://multilaterale.fr/fr/membre/alain-billardEnsemble IntercontemporainMultilatérale + +910003Jérôme RouillardHorn player.CorrectEnsemble IntercontemporainOrchestre De Paris + +910004Sarah LouvionClassical flutist.Needs Votehttp://www.sarahlouvion.com/Ensemble IntercontemporainFrankfurter Opern- Und Museumsorchester + +910005Vladimir DuboisHorn player.Needs VoteEnsemble IntercontemporainOrchestre National De L'Opéra De ParisVillette Brass + +910006Stéphane MarcelViola player.CorrectEnsemble Intercontemporain + +910007Marie-Violaine CadoretViolin playerNeeds Votehttps://www.musicalta.com/en/project/marie-violaine-cadoret/Ensemble IntercontemporainL'OrphiCube + +910008Serge ReynierHarp player.CorrectEnsemble Intercontemporain + +910010Christophe DesjardinsFrench viola player, born 1962 in Caen, he died in February 2020.Needs Votehttp://www.christophedesjardins.com/C. DesjardinsEnsemble Intercontemporain + +910011Pascal GalloisFrench bassoonist.Needs Votehttp://www.pascalgallois.com/Ensemble Intercontemporain + +910012Thomas DuranFrench cello player.Needs Votehttps://www.editionshortus.com/artiste_fiche.php?artiste_id=182&langue=enhttps://www.orchestredeparis.com/fr/orchestre/interview/39/thomas-duranThomas DurandEnsemble IntercontemporainOrchestre De ParisEnsemble De Violoncelles De ParisOrchestre National Bordeaux Aquitaine + +910013Claude LefebvreClassical flutist.Needs Votehttp://www.ecolenormalecortot.com/en/enseignants/lefebvre-claude/Claude LefevbreClaude LefèbvreEnsemble IntercontemporainOrchestre National De L'Opéra De Paris + +910014Eric ChalanFrench double bass player.Needs Votehttp://quatuorcaliente.com/en/artists/eric-chalan-en/Éric ChalanEnsemble IntercontemporainNouvel Ensemble Instrumental Du Conservatoire National Supérieur De ParisEnsemble DedalusTango FuturCuarteto Darsena Sur + +910015Stephan WernerDouble bass player.Needs VoteEnsemble IntercontemporainFestival Strings LucerneOrchestre Philharmonique De Strasbourg + +910016Pierre FeylerDouble bass player.Needs Votehttps://www.lmfl.org.uk/teacher/pierre-feyler-double-bass/Feyler PierreP. FeylerPierre FeyllerEnsemble IntercontemporainEnsemble 2E2M + +910017Andreï KarassenkoPercussionist.Needs VoteEnsemble IntercontemporainL'Orchestre National d'Ile De France + +910018Titus OppmannDouble bass player.CorrectEnsemble IntercontemporainTankj + +910019Erwan FagantClassical saxophone player.CorrectEnsemble Intercontemporain + +910020Christian Schneider (5)French Mandolin player (born on April 22, 1934 in Gonesse near Paris). + +He began his musical education at the age of 13 under the direction of [a1154796], an international concert artist and demanding teacher. After a few years of work, Christian Schneider has already developed a technique, a sound, a virtuosity, a sensitivity such that at 16 years old he enters the "Mandoline Orchestre de Paris" founded by [a5694204]. Two years later, at 18, he joined the [a396248], a professional orchestra directed by [a4195044]. Working with [a92243] and the [a212299] was another milestone in his career, but he was also passionate about performing in small groups throughout his career.Needs VoteC. SchneiderEnsemble IntercontemporainEnsemble MatheusEnsemble Instrumental De GrenobleEnsemble Instrumental De FranceEnsemble Instrumental Christian SchneiderClaudio Bonelli Ses Mandolines Et Son Orchestre + +910021Jean-Pierre MoutotClassical trombone player.CorrectEnsemble Intercontemporain + +910022David DewastePercussionist.Needs VoteEnsemble IntercontemporainRicercar Consort + +910023Béatrice GendekViola player.Needs Votehttps://www.imdb.com/name/nm8152423/Ensemble IntercontemporainEnsemble Court-Circuit + +910024Christine SchäferGerman soprano, born May 3, 1965, FrankfurtCorrecthttp://www.christine-schaefer.com/http://en.wikipedia.org/wiki/Christine_Sch%C3%A4ferC. SchäferChristine SchaferSchäferКристина Шафер + +910025Yaël SenamaudFrench-born classical viola player.Needs Votehttps://www.bluestreakensemble.com/yael-senamaud-viola/Yaël SénamaudYaël-Nathalie SenamaudEnsemble IntercontemporainEnsemble 2E2M + +910026Erwan RichardViola player.Needs Votehttps://erwanrichard.com/Ensemble Intercontemporain + +910027Magali MosnierClassical flutist.Needs Votehttps://de.wikipedia.org/wiki/Magali_MosnierMagali Mosnier-KarouiMosnierEnsemble IntercontemporainOrchestre Philharmonique De Radio FranceVariation5 + +910028Jean-Christophe VervoitteClassical horn player, born 1970.Needs Votehttps://www.lucernefestival.ch/en/program/directory-of-artists/jean_christophe_vervoitte/2762https://www.ensembleintercontemporain.com/en/soliste/jean-christophe-vervoitte/Ensemble IntercontemporainEnsemble Court-Circuit + +910029Raphaël ChrétienRaphaël Chrétien (born 17 February 1972 in Paris) is a French classical cellist and music educator.Needs Votehttps://raphaelchretien.com/https://www.facebook.com/raphaelchretiencellisthttps://twitter.com/chretienraphaelhttps://en.wikipedia.org/wiki/Rapha%C3%ABl_Chr%C3%A9tienRaphael ChrétienEnsemble IntercontemporainEnsemble Ars NovaEnsemble Alternance...in Ore mel... + +910031Marie-Thérèse GhirardiClassical guitar player.CorrectEnsemble Intercontemporain + +910032Odile AuboinViola player.Needs Votehttps://www.ensembleintercontemporain.com/en/soliste/odile-aubouin/Ensemble IntercontemporainEnsemble Calliopée + +910054Art HodesArthur W. Hodes.American jazz pianist and bandleader. +He played with Wingy Manone, Joe Marsala, Mezz Mezzrow, Gene Krupa, Muggsy Spanier and others. +In 1941 forming his own band and recorded for Signature, Decca and Black & White records. + +Born : November 14, 1904 in Nikoliev, Russia. +Died : March 04, 1993 in Harvey, Illinois. +Needs Votehttps://en.wikipedia.org/wiki/Art_HodesA. HodesA.HodesArt Hodes Jazz Four... Plus TwoArt HodgesArthur W. "Art" HodesHodesWilliamsА. ХодесSidney Bechet And His Blue Note Jazz MenMezz Mezzrow And His OrchestraArt Hodes' ChicagoansArt Hodes TrioBarney Bigard / Art Hodes All Star StompersArt Hodes' Back Room BoysArt Hodes' Blue FiveArt Hodes And His Blue Note JazzmenArt Hodes' International TrioArt Hodes' Hot FiveArt Hodes' Hot SevenArt Hodes And His OrchestraBaby Dodds' Jazz FourArt Hodes And His GroupArt Hodes And His Blues SerenadersArt Hodes Columbia QuintetThe Kenny Davern TrioChicago Rhythm Kings (3)Mezz Mezzrow TrioBechet-Nicholas Blue Five + +910058Wally GordonJazz drummer.Needs VoteHarry "Wally" GordonWilly GordonCharlie Barnet And His OrchestraSidney Bechet's Jazz Ltd. OrchestraDixieland At Jazz Ltd. + +910066Stubby SebastianJazz double bass player.CorrectSidney Bechet And His New Orleans Feetwarmers + +910069Albert SnaerAlbert Joseph SnaerAmerican jazz trumpeter, born January 29, 1902 in New Orleans, Louisiana, died c. 1962 in California. +Performed and recorded with [a=Dewey Jackson] 1925-1926, moved to New York in 1930, working intermittently with [a=Claude Hopkins] 1932-1941. Ceased to work full-time in music, but played occasionally with [a=Sidney Bechet] (1949) and [a=Frank "Big Boy" Goudie] (early 1960s) and others. Moved to the West Coast in late 1950s.Needs VoteAlbert SnearSnaerSidney Bechet & His Circle SevenClaude Hopkins And His OrchestraSidney Bechet's SevenDewey Jackson's Peacock Orchestra + +910077Ernest Williamson (2)Jazz double bass player.CorrectErnest WilliamsErnest WilliamsonSidney Bechet And His New Orleans Feetwarmers + +910082Gil WhiteJazz saxophone player.CorrectG. WhiteNoble Sissle Swingsters + +910085Don FryeDonald O. Frye.American jazz pianist and vocalist.. + +Born : 1903 in Springfield, Ohio. +Died : February 09, 1981 in New York City, New York. + +"Don" played with Lloyd and Cecil Scott, Freddie Moore (1933-'37), John Kirby (1937), Lucky Millinder (circa 1938-'39), Frankie Newton (1939), Zutty Singleton (1940s). +Recorded with King Oliver (1939 & 1930), Clarence Williams (1934), Edmond Hall (1944), as soloist (1945),Danny Barker (1958), Cecil Scott (1959).Needs Votehttps://adp.library.ucsb.edu/names/100414D. FryeDon O'FryeFryeO' FryeO'FryeKing Oliver & His OrchestraSidney Bechet And His New Orleans FeetwarmersFrankie Newton And His Uptown SerenadersBuster Bailey's Rhythm BustersJerry Kruger & Her Knights Of RhythmEdmond Hall's Swingtet + +910088Don DonaldsonLyman DonaldsonUS jazz pianist, composer, arranger from Cape Cod, MA + +The Sidney Bechet/Fats Waller pianist could be a different person from the composer working with [a=Debbie Morris]/[a=Debby Moore (2)].Needs Votehttps://de.wikipedia.org/wiki/Don_Donaldsonhttps://repertoire.bmi.com/Search/Catalog?num=MXBww7YDgGLPhqRAKNtcAQ%253d%253d&cae=rjATzjUD60So6aA3kMwKJw%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Donaldson%20Don%22%2C%22Sub_Search_Text%22%3A%22%22%2C%22Main_Search%22%3A%22Writer%2FComposer%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A100%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dD. DonaldsonDonaldsonDora DonaldsonL. DonaldsonSidney Bechet And His New Orleans Feetwarmers + +910091Henry GoodwinHenry Clay GoodwinAmerican jazz trumpeter and vocalist, born January 2, 1910 in Columbia, South Carolina, died July 2, 1979 in New York City. +Goodwin worked with Sam Taylor, Claude Hopkins, Paul Wyer, Elmer Snowden, Cliff Jackson, Lucky Millinder, Willie Bryant, Charlie Johnson, Cab Calloway, Sidney Bechet, Mezz Mezzrow, Earl Hines and others. + +Needs VoteGoodwinH. GoodwinSidney Bechet And His New Orleans FeetwarmersBob Wilber And His BandEdgar Hayes And His OrchestraCliff Jackson & His Crazy KatsPat Flowers And His RhythmBob Wilber And His Jazz BandJimmy Archey's Band + +910434Daniel RaguinSound engineer and producer for recordings of classical music.CorrectDaniel HaguinDaniel Raguin (IRCAM) + +910474Kym AmpsBritish soprano, based in Spain.Needs VoteKim AmpsKym AmpfKymp AmpsKynm AmpsThe Scholars Baroque EnsembleThe Schütz Choir Of London + +910587Robert S. RileyRobert Stanley Riley Sr.US producer, songwriter from Nashville, Tennessee, born in 1928. Mostly known for co-penning "Just Walking In The Rain" with his then co-inmate [a=Johnny Bragg] at Tennessee State Prison (Nashville, TN). Promo man for The [a=Manhattans] at one point.Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=288448&subid=2http://www.cocosse-journal.org/2018/06/the-story-of-song-just-walkin-in-rain.htmlB. RileyBob RileyBob Riley, Sr.Bobby RileyR. F. RileyR. RileyR. S. RileyR. S. Riley Sr.R. S. Riley, Sr.R.RileyR.S. RileyR.S. Riley Sr.R.S. Riley, SrR.S. Riley, Sr,R.S. Riley, Sr.R.S.RileyRileRilei Robert FRileyRiley Roberts StanleyRilleyRob't S. Riley, SrRobert G. RileyRobert RileyRobert Riley SrRobert Riley Sr.Robert Riley, Sr.Robert S Riley SrRobert S. RelleyRobert S. Riley Jr.Robert S. Riley Sr.Robert S. Riley, SrRobert S. Riley, Sr.Robert Stanley Riley Snr.Robert Stanley Riley Sr.Robert Stanley/RileyRoberts RileyRoberts S. RileyRobt. RileyRobt. S. RileyS. RileyS.R. Rileyロバート・ライリーThe Prisonaires + +910618Orkiestra Symfoniczna Filharmonii NarodowejOrkiestra Symfoniczna Filharmonii Narodowej w Warszawie[b]For chorus/choir credits use [a=Chór Filharmonii Narodowej][/b]. +The Warsaw Philharmonic was founded in 1901. The creator and first conductor of its orchestra was Emil Młynarski. The outbreak of war in 1939 interrupted its activities, and the Philharmonic Hall was completely destroyed in the conflict. The Orchestra that was formed again in the ruins of Warsaw soon after the war, and changed both its organisational structure and its conductors several times. It was only in 1951 that the Warsaw Philharmonic began to flourish again under Witold Rowicki, who reorganised it and formed its new orchestra. In 1955, the Philharmonic - together with its reconstructed building - was awarded the title of the National Philharmonic. + +Conductors: +(1901–05) [a2273829] +(1906–08) [a1752174] +(1908–09) [url=https://www.discogs.com/artist/1933349-Henryk-Melcer]Henryk Melcer-Szczawiński[/url] +(1909–11) [a2692728] +(1911–14, 1916–18) Zdzisław Birnbaum +(1918–38) Roman Chojnacki +(1938–39) Józef Ozimiński +(1945–46) [a6217568] +(1946–47) [a1129568] +(1947–48) [a3680117] +(1948–49) [a1070272] +(1949–50) [a2110057] +(1950-1955) [a849690] +(1955-1958) [a1331370] +(1958-1977) [a849690] (again) +(1977-2001) [a578492] +(2002-2013) [a647526] +(2013- ) [a1012509]Needs Votehttps://filharmonia.pl/en/o-nas/orchestrahttps://www.facebook.com/FilharmoniaNarodowaWarszawahttps://www.instagram.com/warsawphil/https://x.com/WarsawPhilhttps://www.youtube.com/user/FilharmoniaNarodowahttps://en.wikipedia.org/wiki/Warsaw_National_Philharmonic_OrchestraChoir And Warsaw Philharmonic Symphony OrchestraDas Sinfonie-Orchester Der Nationalen Philharmonie WarschauDas Warschauer National-Philharmonische OrchesterDer Nationalen Philharmonie WarschauFilarmonica Nazionale Di VarsaviaFilharmonia NarodowaHet Nationaal Philharmonisch Orkest Van WarschauHet Philharmonisch Symphonie Orkest Van WarschauL'Orchestre Philharmonique De VarsovieMembers Of The Warsaw Philharmonic OrchestraNarodowa Philharmonic Symphony OrchestraNationaal Philharmonisch Orekst WarschauNationaal Philharmonisch Orkest Van WarschauNational Orchestra Of PolandNational PhilharmoniaNational Philharmonia Orchestra Di VarsaviaNational Philharmonia Orchestra, WarsawNational Philharmonic OrchestraNational Philharmonic Orchestra - WarsawNational Philharmonic Orchestra In WarsawNational Philharmonic Orchestra Of PolandNational Philharmonic Orchestra Of WarsawNational Philharmonic Orchestra Of WarschauNational Philharmonic Orchestra Of WarshawNational Philharmonic Orchestra WarsawNational Philharmonic Orchestra of PolandNational Philharmonic Orchestra – WarsawNational Philharmonic Orchestra, WarsawNational Philharmonic Symphony OrchestraNational Philharmonic Symphony Orchestra In WarsawNational Philharmonic Symphony Orchestra Of WarsawNational Philharmonic Symphony Orchestra, WarsawNational Philharmonic WarsawNational Philharmonie WarschauNational Philharmonie, WarsawNational Symphonie Orchester WarschauNational Symphony Orchestra, WarsawNational Warsaw PhilharmonicNational-Philharmonie WarschauNationale Philharmonie WarschauNationales Philharmonie OrchesterNationales Philharmonisches Orchester WarschauNationales Philharmonisches Orchester, WarschauNationales Philharmonisches Symphonie-Orchester, WarschauNationalfilharmonin I WarszawaNationalphilh. WarschauNationalphilharmonie WarschauNationaslphilharmonie WarschauNationella Symfoniska Orkestern, WarszawaOrch. Symph. De La Philh. NationaleOrch. Symph.De La Philharmonie NationaleOrchester Der National-Philharmonie WarschauOrchester Der Nationalen Philarmonie WarschauOrchester Der Nationalen Philharmonie WarschauOrchester Der Nationalphilharmonie WarschauOrchester Der Warschauer NationalphilharmonieOrchester Der Warschauer PhilharmonieOrchestr Varšavské Národní FilharmonieOrchestraOrchestra Filarmonica Di VarsaviaOrchestra Filarmonica Nazionale Di VarsaviaOrchestra Filarmonicii Naționale Din VarșoviaOrchestra Filarmonică Națională Din VarșoviaOrchestra Of The National PhilharmonicOrchestra Of The National Philharmonic, WarsawOrchestra Philarmonic Of PollandOrchestra Philharmonia Di VarsaviaOrchestra Philharmonia Di WarszawaOrchestra Philharmonia, WarsawOrchestra Philharmonica Sinfonica Nazionale di VarsaviaOrchestra Simfonică A Filarmonicii Din VarșoviaOrchestra Simfonică A Filarmonicii Naţionale Din VarşoviaOrchestra Simfonică A Filarmonicii Naţionale Din VarșoviaOrchestra Simfonică A Filarmonicii Naționale Din VarșoviaOrchestra Sinfonia Della Filarmonica Nazionale Di VarsaviaOrchestra Sinfonica Della Filarmonia Nazionale Di VarsaviaOrchestra Sinfonica Della Filarmonica Nazionale Di VarsaviaOrchestra Sinfonica Della Filharmonica Nazionale Di VarsaviaOrchestra Sinfonica Filarmonica Di VarsaviaOrchestra Sinfonica Filarmonica Nazionale Di VarsaviaOrchestre De La Philharmonie De PologneOrchestre De La Philharmonie Nationale De PologneOrchestre De La Philharmonie Nationale De VarsovieOrchestre Du National Philharmonic De VarsovieOrchestre National De VarsovieOrchestre National Philarmonique Et Symphonique De VarsovieOrchestre National Philharmonique De VarsovieOrchestre Philarmonique De VarsovieOrchestre Philharmonique De PologneOrchestre Philharmonique De VarsovieOrchestre Philharmonique National De PologneOrchestre Philharmonique National De VarsovieOrchestre Philharmonique National De Varsovie, PologneOrchestre Philharmonique National VarsovieOrchestre Philharmonique Symphonique National De VarsovieOrchestre Philharmonique Symphonique National, VarsovieOrchestre Philharmonique de VarsovieOrchestre Symph. De La Philharmonie NationaleOrchestre Symphonique De La Philarmonie Nationale De VarsovieOrchestre Symphonique De La Philharmonie NationaleOrchestre Symphonique De La Philharmonie Nationale De VarsovieOrchestre Symphonique De La Philharmonie VarsovieOrchestre Symphonique De VarsovieOrchestre Symphonique National De VarsovieOrchestre Symphonique National De VarsovieOrchestre Symphonique National de VarsovieOrchestre Symphonique de VarsovieOrchestre Symphonique de la Philharmonie Nationale de Varsovie / Symfonie Orkest van de Nationale Philharmonie, WarschauOrchestre Symphonique de la Philharmonie de VarsovieOrk. Symf. F. N.Orkest Van De Nationale Philharmonie, WarschauOrkiestraOrkiestra F NOrkiestra FNOrkiestra Filharm. Warsz.Orkiestra Filharmoni NarodowejOrkiestra Filharmonii NarodowejOrkiestra Filharmonii Narodowej W WarszawieOrkiestra Filharmonii Narodowej W. WarszawieOrkiestra Filharmonii Narodowejr,Orkiestra Filharmonii WarszawskiejOrkiestra Symf. Filharmonii Narod.Orkiestra Symf. Filharmonii NarodowejOrkiestra SymfonicznaOrkiestra Symfoniczna FNOrkiestra Symfoniczna Filharmonii Narodowej W WarszawieOrkiestra Symfoniczna Filharmonii Narodowej w WarszawieOrkiestra Symfoniczna Filharmonii WarszawskiejOrkiestra Symfoniczna Państwowej Filharmonii W WarszawieOrkiestry SymfonicznejOrquesta De La Filarmónica Nacional De VarsoviaOrquesta Filarmonica De VarsoviaOrquesta Filarmonica-Sinfonica Nacional De VarsoviaOrquesta Filarmónica De VarsoviaOrquesta Filarmónica Nacional De VarsoviaOrquesta Filarmónica Nacional de VarsoviaOrquesta Filarmónica de VarsoviaOrquesta Filarmónica-Sinfónica Nacional De VarsoviaOrquesta Filarmônica De VarsoviaOrquesta Filarmônica De VarsóviaOrquesta Filarmônica National De VarsóviaOrquesta Nacional De VarsoviaOrquesta Nacional Filarmonica-Sinfonica de VarsoviaOrquesta Sinfonica De La Filarmonica Nacional De VarsoviaOrquesta Sinfonica De La Nacional Filarmonica De VarsoviaOrquesta Sinfonica De La Orquesta Filarmónica Nacional, VarsoviaOrquesta Sinfonica Nacional De VarsoviaOrquesta Sinfónica - Filarmónica Nacional De PoloniaOrquesta Sinfónica De La Filarmónica Nacional De VarsoviaOrquesta Sinfónica De La Sociedad Filarmónica De VarsoviaOrquesta Sinfônica Da Filarmônica Nacional De VarsóviaOrquestra Filarmonia Nacional De VarsóviaOrquestra Filarmonica De VarsoviaOrquestra Filarmônica De VarsóviaOrquestra Filarmônica NacionalOrquestra Sinfônica Da Filarmônica Nacional De VarsóviaPhilharmonic Orchestra WarsawPhilharmonic, WarsawPhilharmonie Orchester WarschauPhilharmonie de SilėsiePhilharmonisch Orkest Van WarschauPoland National Warsaw Philharmonic OrchestraPolens Filharmoniska OrkesterPolish National PhilharmonicPolish National Philharmonic OrchestraPolish National Philharmonic Symphony OrchestraPolish National Symphony Orchestra, WarsawPolish National Warsaw Philharmonic OrchestraPolish State POPolish State Philharmonic OrchestraPoolse Nationale FilharmoniePoolse Nationale PhilharmoniePoolse Nationale Philharmonie, WarschauSinfonie-Orchester D. National-Philharmonie WarschauSinfonie-Orchester Der National Philharmonie WarschauSinfonie-Orchester Der National- Philharmonie WarschauSinfonie-Orchester Der National-Philharmonie WarschauSinfonie-Orchester Der National-Philharmonie, WarschauSinfonie-Orchester Der Nationalen Philharmonic WarschauSinfonie-Orchester Der Nationalen Philharmonie WarschauSinfonie-Orchester Der Nationalen Philharmonie Warschau*Sinfonie-Orchester Der Nationalphilharmonie WarschauSinfonie-Orchester Der Warschauer PhilarmonieSinfonie-Orchester der National-Philharmonie WarschauSinfonie-Orchester der Nationalen Philharmonie WarschauSinfonie-Orchester der Philharmonie WarschauSinfonieorchester Der National-Philharmonie, WarschauSinfonieorchester Der Nationalen Philharmonie WarschauSinfonieorchester Der Nationalen Philharmonie, WarschauSymfoniczna Filharmonii Narodowej W WarszawieSymfonie-Orkest Van De Nationale Filharmonie WarschauSymfonie-Orkest Van De Nationale Philharmonie, WarschauSymfonieorkest Van PolenSymhonie-Orchester Der Nationalen Philharmonie WarschauSymphonie -Orchester Der Nationalen Philharmonie WarschauSymphonie-Orchester Der Nationalen Philharmonie WarschauSymphonie-Orchester der Nationalen Philharmonie WarschauSymphonieorchester Der National-Philharmonie WarschauSymphonieorchester Der Nationalen Philharmonie WarschauSymphonieorchester Der Nationalphilharmonie WarschauSymphonisches Orchester Der National - Philharmonie WarschauSymphonisches Orchester Der National-Philharmonie In WarschauSymphonisches Orchester Der National-Philharmonie WarschauSymphonisches Orchester Der National-Philharmonie, WarschauSymphony OrchestraSymphony Orchestra Of National Philharmonia WarsawSymphony Orchestra Of National PhilharmonicSymphony Orchestra Of The National PhilharmonicSymphony Orchestra Of The National Philharmonic WarsawSymphony Orchestra Of The National Philharmonic, WarsawSymphony Orchestra Of The National Philharmonic; WarsawSymphony Orchestra Of Warsaw Nationel PhilharmincSynfonie-Orchester Der National-Philharmonie WarschauThe National Philharmonic Orchestra In WarsawThe National Philharmonic Orchestra Of PolandThe National Philharmonic Orchestra Of WarsawThe National Philharmonic Orchestra, WarsawThe National Symphony Orchestra In WarsawThe National Warsaw Philharmonic OrchestraThe Orchestra Of The National Philharmonic In WarsawThe Polish National Philharmonic OrchestraThe Polish National Symphony Orchestra In WarsawThe Warsaw National PhilharmonicThe Warsaw National Philharmonic OrchestraThe Warsaw National Philharmonic Symphony OrchestraThe Warsaw PhilharmoniaThe Warsaw PhilharmonicThe Warsaw Philharmonic National Orchestra Of PolandThe Warsaw Philharmonic OrchestraThe Warsaw Philharmonic Symphony OrchestraThe Warsaw Philharmonic – National OrchestraThe Warsaw Philharmonic – National Orchestra Of PolandThe Warsaw Philharmusica SymphonyThe Warsaw State Symphony OrchestraThe Warschau PhilharmonicThe Warzaw Symphony OrchestraVarsavia National Philharmonic OrchestraVarsovan Kansallinen FilharmoniaVarsovan Kansalliset FilharmonikotVaršavska Državna FilharmonijaVaršavská FilharmoniaVaršuvos Filharmonijos Simfoninis OrkestrasWarsavas SymfoniorkesterWarsaw Nat. Phil. Symphony Orch.Warsaw National OrchestraWarsaw National Philarmonic OrchestraWarsaw National PhilharmoniaWarsaw National PhilharmonicWarsaw National Philharmonic Choir & OrchestraWarsaw National Philharmonic Orch.Warsaw National Philharmonic OrchersterWarsaw National Philharmonic OrchestraWarsaw National Philharmonic SymphonyWarsaw National Philharmonic Symphony Orch.Warsaw National Philharmonic Symphony OrchestraWarsaw National Symphony OrchestraWarsaw Phil. Orch.Warsaw Philhannonic OrchestraWarsaw Philharmonia OrchestraWarsaw PhilharmonicWarsaw Philharmonic - National Orchestra Of PolandWarsaw Philharmonic - Pilish National OrchestraWarsaw Philharmonic - Polish National OrchestraWarsaw Philharmonic National Orchestra Of PolandWarsaw Philharmonic OrchestraWarsaw Philharmonic SymphonyWarsaw Philharmonic Symphony OrchestraWarsaw Philharmonic The National OrchestraWarsaw Philharmonic The National Orchestra Of PolandWarsaw Polish National Philharmonic Symphony OrchestraWarsaw SymphonyWarsaw Symphony OrchestraWarsawNational Philharmonic Symphony OrchestraWarschauer National PhilharmonieWarschauer National – PhilharmonieWarschauer National-PhilharmonieWarschauer NationalphilharmonieWarschauer PhilharmonieWarschauer Philharmonisches OrchesterWarschauer SinfonieorchesterWarschauer Sinfonieorchester,Warschauer Symphonie OrchesterWarshauer PhilharmonieWarszavas SymfoniorkesterWarszawa Orkiestra SymphonicznaWarszawa-Filharmoniens SymfoniorkesterWielka Orkiestra Symfoniczna Filharmonii WarszawskiejВаршавский Национальный Филармонический ОркестрОркестр Варшавской Национальной ФилармонииОркестр Варшавской ФилармонииОркестр Варшавской национальной филармонииОркестр Нац. ФилармонииСимф. Орк. Варшавской Нац. ФилармонииСимф. Оркестр Нац. Филармонии В ВаршавеСимф. Оркестр Национальной Филармонии В ВаршавеСимфонический Оркестр Варшавской ФилармонииСимфонический Оркестр Национальной Филармонии В ВаршавеСимфонический оркестр Варшавской филармонииポーランド国立・ワルシャワ・フィルハーモニック・オーケストラワルシャワ・フィルハーモニー管弦楽団ワルシャワ国立フィルハーモニー交響楽団ワルシャワ国立フィルハーモニー管弦楽団国立ワルシャワ・フィルハーモニー管弦楽団Jacek UrbaniakKazimierz KordAntoni WitWanda WilkomirskaWitold RowickiŁukasz DzikowskiAdrian JandaJan MaklakiewiczJacek KaspszykRobert PutowskiBogdan LauksWitold RudzińskiPaweł PruszkowskiJan LewtakAndrzej PanufnikMirosław PokrzywińskiBohdan WodiczkoKrzysztof BąkowskiMariusz TonderaJerzy CembrzyńskiMarek BojarskiZygmunt NoskowskiKrzysztof WojtyniakHenryk MelcerWładysław RaczkowskiEmil MłynarskiMariusz NiepiekłoJerzy WołochowiczMariusz MocarskiGrzegorz FitelbergAgnieszka LewandowskaMarek MarczykKrzysztof MalickiAleksandra RojekPaweł GusnarMateusz MarczykThomas MichalakMaciej KostrzewaAndrzej SienkiewiczMichał WiśniowskiMichał KotowskiRobert DudaTomasz JanuchtaMaria MachowskaBarbara WitkowskaFeliks GmitrukJerzy ChudybaGrzegorz GorczycaLeszek WachnikEugenia UmińskaEmilian WerbowskiKrystyna SakowskaKazimierz PiwkowskiGrzegorz SabełUrszula JanikKazimierz AdamskiBogdan ŚnieżawskiGabriel CzopkaAleksandra OharLeon PiwkowskiJerzy KarolakOlgierd StraszyńskiPaweł RybkowskiMagdalena SmoczyńskaAndrzej BudejkoMariusz OczachowskiSeweryn ZapłatyńskiPiotr DomańskiKrzysztof BednarczykDaniel KamińskiMarzena HodyrArkadiusz WiędlakPiotr CegielskiPiotr TadzikTomasz KarwanJustyna BogusiewiczJoanna TrzcionkowskaKarolina JaroszewskaKatarzyna DulMarcin WilińskiUrszula NowakowskaJakub KowalikKatarzyna HenrychGrzegorz GroblewskiGrzegorz OsińskiIzabela HodorMarzena MazurekMichał SzałachGrzegorz GołąbPiotr SapilakKrzysztof SzczepanskiMarek PowidelKrzystof TrzcionkowskiMarian KowalskiKarol KowalAleksander SzebesczykMarcin Mazurek (2)Станислав КортJarosław AugustyniakDorota Woźniak-Mocarska + +910667Hans OrtererGerman military Musician, Conductor and Composer. +Born: 13 January 1948 in Jachenau, Germany. + +[b]Bands Conducted:[/b] +1. [a1299845] (1976–1979) +2. [a910665] (1979-1985) +3. Heeresmusikkorps 5 (Gießen) (1985-1992) +4. [a910674] (1992-1996) +5. [a3354202] (1996-2010) + +Orterer was born in 13 January 1948 in Jachenau, Germany. His father was an organist and former military musician. Attended music high school [a542687]. After graduating from high school in 1967, he initially became an officer in the armored forces before studying conducting at the Cologne University of Music from 1973 to 1976. In 1976 he became a music officer in the [a3837337] in Koblenz. +Orterer was the longest-serving military musician in the German armed forces (Bundeswehr) until the end of his service in 31 January 2010.Needs Votehttps://de.wikipedia.org/wiki/Hans_Ortererhttps://www.hebu-music.com/en/musician/hans-orterer.267/Hauptmann Hans OrtererMajor H. OtererMajor Hans OrtererOberstleutnant Hans OrtererOrterer HansRegensburger DomspatzenHeeresmusikkorps 4Luftwaffenmusikkorps 3Heeresmusikkorps 6, HamburgLuftwaffenmusikkorps 1 + +911589Louis KievmanAmerican violinist, born 1910, died 1990.Needs VoteKievmanKievman LouisL. KievmanLewis KievmanLou KievmanLou KievmannLouis 'Lou' KievmanLouis KeivmanLouis KevmanLouis KieumanLouis KievemanLuois KievmanHarry James And His OrchestraGordon Jenkins And His OrchestraThe Westwood String QuartetThe Da Sallo String QuartetWestwood String Trio + +911677Uwe HaaseClassical trombonist & sackbutistNeeds VoteConcerto KölnDas Neue OrchesterJohann Rosenmüller EnsembleCapella Augusta Guelferbytana + +911780Kammerorchester der Staatskapelle WeimarCorrectDas Thüringische Kammerorchester WeimarOrchestra Da Camera Della Staatskapelle Di WeimarThe Chamber Orchestra Of The Staatskapelle WeimarThüringisches Kammerorchester WeimarTüringisches Kammerorchester WeimarThüringisches Kammerorchester WeimarHannelore Köhler + +911781Johannes Walter (2)Johannes Walter (*May 22, 1937 in Dresden) is a German classical flautist.Needs Votehttps://www.flutepage.de/deutsch/composer//person.php?id=1381https://www.floetist-johannes-walter.de/Johannes WalterWalterヨハネス・ワルターStaatskapelle DresdenKammerorchester BerlinDresdner PhilharmonieDresdner Kammersolisten + +911782Friedemann BätzelFriedemann Bätzel (*January 28, 1929 - ✝January 24, 2025 in Gotha) was a German violinist, conductor and music professor. Former Konzertmeister of the [a701219] and conductor of the [a=Kammerorchester der Staatskapelle Weimar].Needs Votehttps://trauer-in-thueringen.de/traueranzeige/friedemann-baetzelStaatskapelle Weimar + +911933Eddie "Cleanhead" VinsonEddie L. VinsonAmerican alto saxophonist and vocalist. +Started out in [a=Milt Larkin]'s Orchestra, playing with [a=Arnett Cobb] and [a=Illinois Jacquet]. In 1942 he joined [a=Cootie Williams] Orchestra. He led his own bands from 1945, membership including a young [a=John Coltrane]. Recorded as sideman and in own name until a few years before his death. +Born: December 18, 1917, Houston, Texas +Died: July 2, 1988, Los Angeles, CaliforniaNeeds Votehttp://www.allmusic.com/cg/amg.dll?p=amg&sql=11:fzfexqegldte~T1http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=357485&subid=0"Cleanhead" VinsonCleanheadCleanhead VinsonCleanhead-VinsonE VincentE VinsonE. C. VinsonE. VinsonE.C. VinsonE.VinsonEd. VinsonEddieEddie VinsonEddie " Mr Cleanhead " VinsonEddie "Clean Head" VinsonEddie "Clean-Head" VinsonEddie "Cleanhead"Eddie "Mr Cleanhead" VinsonEddie "Mr. Cleanhead" VinsonEddie "Mr. Cleanhead" Vinson And His OrchestraEddie 'Clean Head' VinsonEddie 'Cleanhead' VincentEddie 'Cleanhead' VinsonEddie Clean Head VinsonEddie Cleanhead VinsonEddie L. VinsonEddie VInsonEddie VincentEddie VinconEddie VinsonEddie Vinson CleanheadEddie «Cleanhead» VinsonEddy "Cleanhead" VinsonVincentVinconVinsenVinsonEddie Vinson And His OrchestraCootie Williams And His OrchestraCount Basie 6Muse Allstars + +911965Richard FallAustrian composer and conductor, born 3 April 1882 in Gewitsch, Austria-Hungary (today Jevíčko, Czech Republic) and died probably in early 1945 at concentration camp Auschwitz. Brother of [a=Leo Fall].Needs Votehttp://de.wikipedia.org/wiki/Richard_Fallhttps://adp.library.ucsb.edu/names/109190FallFall, RichardR. FallRich. Fall + +912006Mary SauerMary Sauer is an American pianist, celesta player, organist and harpsichordist. She first played with the [a837562] in 1959 and was a member from 1967 to 2016. Named as principal piano from 2000 to 2016.Needs VoteChicago Symphony Orchestra + +912209Jean-Jacques RidelCorrectJ. J. RibelJ. J. RidelJ. Jacques RidelJ. RidelJ.-J. RidelJ.-Jacques RidelJ.J RidelJ.J. RidelJan RidelJean RidelJ. J. & Beb + +912298Paul HongnePaul HongneFrench bassoon player, born in 1919 and died in 1979. +Interned in Polish camps during World War II, he played with the [a2186548] form 1948 until its disbandment in 1968, co-founded the [a1942244] in 1951 and replaced [a1214379] in the [a1530407] in 1969.Needs VoteHogneHongneP. HogneP. HongeP. HongnePaul HognePaul HongePaul HonguePaul HougnePierre HongneOrchestre De Chambre Jean-François PaillardCollegium Musicum De ParisEnsemble Baroque De ParisQuintette À Vent FrançaisLe Quintette À Vent De ParisEnsemble Orchestral De L'Oiseau-LyreOrchestre De Chambre De Jean-Louis PetitOrchestre de Chambre Fernand OubradousEnsemble A Vent FrancaisPaillard Ensemble D'Instruments À Vent Et Percussions + +912342Rainer KuismaFinnish percussionist and composer, born 1931 in Helsinki. + +He is trained as a percussionist and was employed by Sweden's Radio Symphony Orchestra, where he quickly made himself legendary. + +He has thus played with, among others, the Boston Symphony Orchestra, the Helsinki Radio Symphony Orchestra, the Swedish Radio Symphony Orchestra, the Sendai Philharmonic Orchestra in Japan. He has taught at the Sibelius Academy in Helsinki and the Academy of Music in Stockholm. In his rich production of his own works, the percussion is at the center, as in Etyd (1971), Hommage à Béla Bartók (1973), Improvisations for six percussionists (1981) and Tre Galaxer (1990), also performed at the Royal Festival Hall, London. But there are also solo concerts for puk (1996), bass trombone "Flores pueritiae meae" (1999), double bass "Den gula stolen" (2002) and double bass tuba (2005). His arrangement of Darius Milhaud's Saudades do Brazil was praised by the composer. Aulis Sallinen dedicated his second symphony to him, a work that Kuisma premiered and recorded. When the work was performed in June 1974 during the Musik på Gotland festival, SvD wrote that "Rainer Kuisma made a world-class effort ... a performance, brilliantly nuanced musically and also a dazzling spectacle". His orchestral works have been conducted by, among others, Göran W Nilson, Michael Bartosch, Daniel Harding, Michail Jurowski, Jin Wang and Franz Welser-Möst.Needs Votehttp://www.myspace.com/rainerkuisma + +912384Monika RostMonika RostMonika Rost (born 21 February 1943) is a classical guitarist, lute player and musicologist.Needs Votehttps://de.wikipedia.org/wiki/Monika_Rosthttps://en.wikipedia.org/wiki/Monika_RostMonikaМ. РостDresdner BarocksolistenVirtuosi SaxoniaeCappella Sagittariana Dresden + +912385Martin FlämigGerman church musician, organist, cantor and conductor. + +As the regional church music director of the Evangelical Lutheran Church in Saxony (1948-1960), he founded the Saxon State Church Music School in 1949, the today's Dresden University of Church Music. He became director this school (sometimes mentioned as Dresden School of Church Music). +He took office as cantor ([i]Kreuzkantor[/i]) at the [l293152] from 1971 to 1991 where he led the [a595051] (* 19 August 1913 in Aue, Germany; † 13 January 1998 in Dresden, Germany).Needs Votehttps://de.wikipedia.org/wiki/Martin_Fl%C3%A4mighttp://saebi.isgv.de/biografie/Martin_Fl%C3%A4mig_(1913-1998)https://www.discogs.com/release/12532340-Ernst-Pepping-Martin-Fl%C3%A4mig-Agnes-Giebel-Horst-G%C3%BCnter-TedeumFlämigM. FlämigMartin FlamigProf. Martin FlämigМартин ФламигМартин ФламмингDresdner Philharmonie + +912397Joachim VogtClassical tenor vocalistNeeds VoteRundfunkchor BerlinCapella LipsiensisEnsemble Vokalzeit + +912555David GlazerDavid Glazer (born 1913, Milwaukee, Wisconsin, USA - died March 4, 2001, New York City, New York, USA) was an American clarinetist. He was a member of the [a547971] from 1946 until 1951, member of the [a1518739] from 1951 until his retirement in 1985. Brother of [a1589748]. +Needs VoteD. GlazerDavid GlaserDavid GlazierThe Cleveland OrchestraNew York Woodwind QuintetNew World Chamber Ensemble + +912702Stephen Roberts (2)Stephen Roberts (8 February 1949 - 13 December 2022) was a British classical vocalist (baritone/bass).Needs VoteRobertsStephan RobertsStephen Robert (Baritone)Winchester Cathedral ChoirThe Monteverdi ChoirWestminster Cathedral ChoirPro Cantione Antiqua + +912790John MadridTrumpeter.Needs VoteJohnny MadridToshiko Akiyoshi-Lew Tabackin Big BandHarry James And His OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraSunrize (6)Woody Herman And The Thundering HerdSteve Spiegl Big BandBill Tole And His Orchestra + +912866Bruno GiurannaItalian classical viola player and conductor, born 6 April 1933 in Milano.Needs Votehttp://giuranna.it/https://en.wikipedia.org/wiki/Bruno_GiurannaB. GiurannaGiurannaS. GiurannaI MusiciBeaux Arts TrioTrio Italiano D'ArchiQuartetto Di Roma + +912978Christoph ZimperAustrian clarinetist, born 1986 in Wiener Neustadt, Austria.Needs Votehttps://www.christophzimper.comDas Mozarteum Orchester Salzburg + +912981Bertin ChristelbauerAustrian cellist, born 1 June 1978 in St. Pölten, Austria.Needs VoteBruckner Orchestra Linz + +912997Matthias HinkAustrian violist.Needs VoteBühnenorchester Der Wiener Staatsoper + +913003Karl Heinz SchützKarl-Heinz SchützAustrian flute player, born 1975 in Innsbruck, Austria.Needs Votehttp://www.karlheinzschuetz.com/K.H. SchützKarl-Heinz SchützOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerStuttgarter PhilharmonikerEnsemble Wien-BerlinWiener Ring Ensemble + +913009Erich BuchmannAustrian bassist and ensemble manager, born in Vienna, Austria.Needs VoteBruckner Orchestra LinzJohann Strauß Ensemble Austria + +913017Michael BuchmannAustrian violist.Needs VoteMichi BuchmannWiener SymphonikerAmbassade String Quartet + +913018Helene KenyeriAustrian oboist and music professor, born 8 May 1981.Needs VoteOrchester Der Wiener StaatsoperDivertimento VienneseBlack Page OrchestraTrio Mignon Wien + +913039Nicanor ZabaletaNicanor ZabaletaHarpist, born 7 January 1907 in San Sebastian, Spain, died 31 March 1993 in San Juan, Puerto Rico.Needs Votehttp://en.wikipedia.org/wiki/Nicanor_ZabaletaN. ZabaletaNicanot ZabaletaNikanor ZabaletaZabaletaН. СабалетаНиканор Сабалетаニカノール・サバレタBerliner Philharmoniker + +913189Vicente Sempere GomisSpanish flute player and conductor. +On Orquesta Sinfónica de RTVE in the 70s.Needs VoteVicente SempereOrquesta Sinfónica de RTVE + +913190Vicente Lafuente MaurinSpanish clarinet player. On Orquesta Sinfónica de RTVE in the 70s.Needs VoteOrquesta Sinfónica de RTVE + +913192Juan Luis Jordá AyatsSpanish violin player. Also credited with catalan name "Joan Lluis Jordá". +Needs VoteJ. L. JordaJoan Lluis JordáJona Llluis JordaJuan JordáJuan L. JordaJuan Luis JordaJuan Luis Jorda AyatsJuan Luis JordáJuana JordáOrquesta Sinfónica de RTVETrío MompouCuarteto Español + +913194José Vadillo VadilloSpanish clarinet player. Soloist on Orquesta Sinfónica de RTVE in the 70s.Needs VoteJose VadilloJosé VadilloOrquesta Sinfónica de RTVE + +913209Roy DouglasRichard Roy DouglasBritish composer, arranger and pianist, born 12 December 1907 in Tunbridge Wells and died 23 March 2015. +He was [a=Ralph Vaughan Williams]' musical assistant from 1944 until 1958, and from 1942 to 1972 assistant to [a835730]. +Needs Votehttp://en.wikipedia.org/wiki/Roy_Douglashttp://www.bach-cantatas.com/Lib/Douglas-Roy.htmhttps://adp.library.ucsb.edu/names/362805DouglasR. Douglasダグラスロイ・ダグラス + +913345Joachim ZindlerJoachim ZindlerGerman violist and music professor, born 1934 and died 2004.CorrectJoachim KindlerJoachim ZinderStaatskapelle DresdenUlbrich-Quartett + +913347Clemens DillnerClemens DillnerClemens Dillner (born May 13, 1925 in Greiz-Aubachtal, Germany and died October 19, 1995 in Dresden, Germany) was a German cellist.Needs Votehttps://www.deutsche-digitale-bibliothek.de/item/AN6VGYZRYWA3FUFWINB4GD3QXDUX6A3FStaatskapelle DresdenUlbrich-Quartett + +913348Kurt MahnClassical oboist.CorrectStaatskapelle Dresden + +913656Ruth FunkeClassical hornistCorrectFlorian Ross Brass ProjectNova Stravaganza + +913747Elliot LawrenceElliot Lawrence BrozaAmerican bandleader, pianist, composer, & music director. Born February 14, 1925 in Philadelphia, Pennsylvania; Died July 2, 2021 in New York City, New York. +After music studies at the University of Pennsylvania, Lawrence led a series of dance bands; playing arrangements by Lawrence himself and by Gerry Mulligan and Al Cohn. He also played piano on cool jazz recordings by the Four Brothers and Manny Albam in 1957 and on Woody Herman's recording of Stravinsky's Ebony Concerto in 1958. +In the 1960s, Lawrence began to compose and conduct for TV, films and Broadway. He won 9 Emmy Awards for his musical direction.Needs Votehttps://en.wikipedia.org/wiki/Elliot_Lawrencehttps://www.jazzwax.com/2021/07/elliot-lawrence-1925-2021.htmlhttps://www.imdb.com/name/nm0492747/https://jazzlives.wordpress.com/tag/rosalind-patton/https://adp.library.ucsb.edu/index.php/mastertalent/detail/326732/Lawrence_ElliotE. LawrenceEd LawrenceEd. LawrenceElliot Lawrence And His [SoundFlight] All StarsElliott LawrenceLawrenceWoody Herman And His OrchestraElliot Lawrence And His OrchestraThe Elliot Lawrence BandWoody Herman And The Fourth HerdCool GabrielsThe Zoot Sims Al Cohn Septet + +913758Sonny TruittSumner Clement TruittAmerican jazz trombonist and multi-instrumentalist, born 22 October 1926, died 1 November 1995Needs VoteSonny TruitSumner Clement TruittTruitTruittソニー・トルーイットTony Scott And His OrchestraThe Nat Pierce OrchestraCharlie Mariano SextetThe Jackson-Harris HerdThe Jim Chapin SextetNat Pierce Combo + +913943Jay RobertsJames Martin 'Jay' RobertsAmerican ragtime pianist and composer. Born June 4, 1890 in Oakland, California and died July 28, 1932 in Balboa, Ancon, Panama.Needs Votehttp://www.ragpiano.com/comps/jroberts.shtml#:~:text=James%20Martin%20%22Jay%22%20Roberts&text=Jay%20Roberts%20was%20born%20in,married%20on%20October%2013th%2C%201887.J. RobertsRoberts + +913952Frode SævikClassical violinist.Needs VoteFrode SaevikFrode SævigBergen Filharmoniske Orkester + +913965Whitey MitchellGordon MitchellWhitey Mitchell (born February 22, 1932, in Hackensack, New Jersey, USA - died January 16, 2009, Palm Springs, California, USA) was an American jazz bassist and television writer/producer. He played in the big bands of [a254768], [a258689] and [a258433]. Brother of jazz bassist [a256168]. + +Needs Votehttp://en.wikipedia.org/wiki/Whitey_MitchellGordon "Whitey" MitchellMitchellW. MitchellWhite MitchellPete Rugolo OrchestraBobby Scott TrioThe Gene Krupa QuartetJoe Puma SextetOscar Pettiford OrchestraNew York QuartetThe Joe Puma QuintetWhitey Mitchell SextetteThe Mitchells (3)New York Jazz EnsembleOscar Pettiford Big Band + +914140Robert McDuffieAmerican violinist, born in Macon, Georgia, is a co-founder and artistic director for the Rome Chamber Music Festival in Rome, Italy.Correcthttp://www.robertmcduffie.com/ + +914150Kenneth SillitoEnglish violinist, founder of the the Gabrieli String Quartet, artistic director of the Academy of St. Martin in the Fields.Needs Votehttp://www.asmf.org/html/kenneth-sillito.htmhttp://www.bach-cantatas.com/Bio/Sillito-Kenneth.htmK. SillitoKen SilettoKen SilittoKen SillitoKen SillitoeKen SilltoeKen SitlitoeKenneth SilitoKenneth SilitoeKenneth SillitoeKenneth StillitoeKevin SillitoeM. SillitoNeville MarrinerSillitoКеннет СиллитоEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe Virtuosi Of EnglandThe Gabrieli String QuartetThe Monteverdi OrchestraThe Pro Arte Piano QuartetAcademy Of St. Martin-in-the-Fields Chamber EnsembleWestminster QuartetThe Pro Arte Piano Quartet (2) + +914662Erik HeideSwedish-born Danish violinist.Needs Votehttp://www.dacapo-records.dk/en/artist-erik-heide.aspxGöteborgs SymfonikerOdense SymfoniorkesterCopenhagen PhilTrio Ondine + +914836Ralf PopkenRalf PopkenClassical vocalist & chorus masterNeeds Votehttp://www.omm.de/artists/popken/biographie.htmlPopkenRalph PopkenLa Chapelle RoyaleLa Capella DucaleWilhelmshavener VokalensembleJohann Rosenmüller Ensemble + +914837Arno RaunigArno Argos RaunigArno Raunig (Arno Argos) The Opera singer (Sopranist, Countertenor, Male-soprano), born 14 January 1957 in Klagenfurt, Austria. +Arno Argos Raunig (9 years old) comes to the Vienna Boys' Choir because of the particularly high soprano voice. Now his voice range is D2-E6. With famous conductors such as Herbert von Karajan, Josef Krips, Carlos Kleiber, Nikolaus Harnoncourt or Karl Böhm, Arno Argos Raunig makes his first experiences as a soprano soloist in the Vienna State Opera and the Bavarian State Opera. +Arno Argos Raunig sings at many major opera houses such as the Hamburg State Opera, Semperoper Dresden, Amsterdam Opera, Zurich Opera, Opera in Prague, Rome, Warsaw, Paris, Basel, Darmstadt, Wiesbaden etc. Performances in the largest concert halls such as Musikverein Wien, Philharmonie Berlin , Gasteig Munich, Liederhalle Stuttgart, Glocke Bremen, Konzerthaus Wien, Laeiszhalle Hamburg, Herkulessaal Munich, Paula de la Musica Catalana, Belá Bartók Saal Budapest, Brucknerhaus Linz, J. Kleiberthsaal Bamberg. +With the particularly high soprano voice and the unique timbre Arno Argos Raunig has the possibility of approaching the legendary castrato voices. + +Carrier of the Austrian Cross of Honour for Science and Art (des Österreichischen Ehrenkreuzes für Wissenschaft und Kunst) and the Cross of Great Honour of Carinthia (des Großen Ehrenzeichens des Landes Kärnten). +Needs Votehttp://www.ArnoArgos.com/http://www.arno-raunig.at/http://de.wikipedia.org/wiki/Arno_RaunigArnoArno Argos RaunigRaunig + +914838P. Rufinus WidlCorrectFather Rufinus WildRufinus Widl + +914839Axel KöhlerAxel KöhlerAlto vocalist.Correcthttp://www.axelkoehler.com/Axel KohlerAxel Köhler Solist Der Wiener SängerknabenKöhlerRIAS-KammerchorRheinische Kantorei + +914840John DickieJohn Dickie (born 5 September 1953, in London/UK - died 6 January 2010, in Vienna/Austria) was an opera singer (tenor).CorrectDickie + +914842Dagmar SchellenbergerDagmar SchellenbergerSoprano Vocalist +Artistic Director of [l=Seefestspiele Mörbisch] from 2013-2017. +Needs Votehttp://dagmar-schellenberger.de/Dagmar Schellenberger-ErnstDagmar Schellenberner-ErnstSchellenberger + +914843Ralph EschrigRalph EschrigTenor vocalist born 1959 in Dresden/Germany.CorrectRalph Eschrich + +914907Nathan MilsteinNathan Mironovich MilsteinBorn in Odessa, Russian Empire, - American violinist. January 13, 1904 (O.S. December 31, 1903) - December 21, 1992 + the fourth child of seven, to a middle-class Jewish family with no musical background Milstein’s mother recognized Nathan’s early interest in music and forced her young son to take violin lessons, hoping it would keep him out of trouble. In 1909, Milstein began to study with Odessa’s most prestigious violin teacher, Pyotr Stolyarsky, with whom he studied until the summer of 1914. (One of his fellow students was six-year old David Oistrakh.) When Milstein was 11, Leopold Auer invited him to become one of his students at the St. Petersburg Conservatory. +Needs Votehttps://en.wikipedia.org/wiki/Nathan_Milsteinhttps://www.britannica.com/biography/Nathan-Milstein(arr.)MilsteinN. MilsteinN.ミルシュテインNatan MilsteinNathan Milstein (arr.)Nathan Milstein mit KammerorchesterNathan Milstein, SoloistNathan Milstein, ViolinН. МильштейнНатан Мильштейнナタン・ミルシテインミルシテイン + +915084Michel CantinClassical horn player, born 3 February 1950 in Bruay-en-Artois, France.Needs Votehttps://fr.wikipedia.org/wiki/Michel_CantinOrchestre National De France + +915121Gaston LitaizeGaston Gilbert LitaizeFrench composer, organist and music educator, born 11 August 1909 in Ménil-sur-Belvitte, France, died 5 August 1991 in Bruyères, France. + +Needs VoteG. LitaizeLitaizeガストン・リテーズ + +915122Alain MogliaFrench classical violinist.Needs VoteA. MogliaMogliaLa Grande Ecurie Et La Chambre Du RoyQuatuor Via NovaQuatuor Alain MogliaQuatuor Olivier Messiaen + +915123Luben YordanoffЛюбен ЙордановBulgarian violinist, born in 1926 in Bulgaria, died 4 September 2011 in Chatou, France.Needs VoteL. YordanoffLuben YordanovM. YordanoffRuben YordanoffYordanoffЛюбен Йорданоффルーベン・ヨルダノフOrchestre De ParisLa Grande Ecurié Et La Chambre Du RoyOrchestre Du Domaine MusicalCollegium Musicum De ParisQuatuor De Paris + +915265Paul-Gerhard SchmidtClassical trumpeterNeeds VoteP.-G. SchmidtPaul Gerhard SchmidtPaul-Gerhardt SchmidtSchmidtVirtuosi Saxoniae + +915266Georg HilserGerman trumpeter, born 1947 in Schramberg, Germany.CorrectBerliner PhilharmonikerOrchester Der Beethovenhalle BonnOrchester der Bayreuther FestspieleBlechbläser-Ensemble Der Berliner PhilharmonikerGerman Brass + +915267Heinz StiefelHeinz Stiefel (21 May 1932 - 14 January 2016) was a German classical trumpeter and horn player.Needs VoteH. StiefelStiefelNeues Bachisches Collegium Musicum LeipzigDresdner PhilharmonieVirtuosi SaxoniaeBlechbläserensemble Ludwig Güttler + +915270Ekkehard TietzeGerman organist, harpsichordist and cantor, born 1914 and died 1995.Needs VoteE. TietzeEckehard TietzeEkkehardt TietzeThomanerchorMünchener Bach-Orchester + +915272Manfred ZeumerGerman classical trombonist, born 10 March 1940 in Allstedt, Germany.Needs VoteZeumerStaatskapelle DresdenDresdner PhilharmonieVirtuosi SaxoniaeDie BlasewitzerCappella Sagittariana DresdenBlechbläserensemble Ludwig Güttler + +915325Kate RockettBritish Classical trombone player and executive at [l507939], from september 2022 general director of [a1551275] +Kate Rockett studied trombone at the Royal Academy of Music, London, followed by a specialization in historical performance practice at the Schola Cantorum Basiliensis, followed by a research master’s degree in musicology at the Open University. She has performed around the world with orchestras and ensembles, including Freiburger Barockorchester, The Gabrieli Consort, B’Rock Orchestra, and Concerto Köln. Ten years ago she made the switch to cultural management. For the past six years she worked at the classical record label Pentatone as Artist & Repertoire Manager and Executive Producer. Partly because of her freelance and consultancy work for other organizations, including LUDWIG and the Performing Arts Fund, Kate has a broad view of the cultural sector. +Kate Rockett: “Since its founding more than forty years ago by Frans Brüggen, the Orchestra of the Eighteenth Century has been a highly respected pioneer in historical performance practice and has inspired many other ensembles, both in the Netherlands and abroad. Sieuwert Verster has always stood at the helm; an exceptional track record and a challenge for me to succeed him. The orchestra is a very international collective of passionate and committed musicians. I am delighted to have the opportunity to play the next chapter in the history of to shape the orchestra.”Needs VoteConcerto KölnOrchestra Of The 18th Century + +915330Reinhold MalzerAustrian oboist, born 1959 in Ried, Austria.Needs VoteCamerata Academica SalzburgDas Mozarteum Orchester SalzburgÖsterreichisches Bläseroktett Ensemble Octogon + +915350Josef SladkoAustrian sound engineer.CorrectIng. Josef SladkoIng. Josef Sladko, ORFIng. Sepp SladkoJ. SladkoJosef SlatkoJoseph SladkoSepp Sladko + +915351Wolfgang DanzmayrAustrian sound engineer, composer and conductor, born 5 July 1947 in Vienna, Austria.CorrectWolfgang BanzmayrWolfgang Danzmayer + +915352Marco Coltellini(13 October 1719 – November 1777) was an Italian opera librettist and printer.Needs Votehttp://en.wikipedia.org/wiki/Marco_Coltellinihttp://it.wikipedia.org/wiki/Marco_ColtelliniM. ColtelliniМ. Кольтеллини + +915353Jutta-Renate IhloffGerman operatic soprano, born 1 November 1944. +Sister of schlager singer [a2070546].CorrectIhloffJutta Renate Ihloff + +915354Carlo GoldoniCarlo Osvaldo GoldoniCarlo Osvaldo Goldoni (25 February 1707 – 6 February 1793) was an Italian playwright and librettist from the Republic of Venice. His works include some of Italy's most famous and best-loved plays. Audiences have admired the plays of Goldoni for their ingenious mix of wit and honesty. His plays offered his contemporaries images of themselves, often dramatizing the lives, values, and conflicts of the emerging middle classes. Though he wrote in French and Italian, his plays make rich use of the Venetian language, regional vernacular, and colloquialisms. Goldoni also wrote under the pen name and title "Polisseno Fegeio, Pastor Arcade," which he claimed in his memoirs the "Arcadians of Rome" bestowed on him.Needs VoteC. GoldoniGoldoniΚάρλο ΓκολντόνιК. Гольдони + +915355Leopold HagerLeopold HagerAustrian conductor and harpsichordist, born October 6, 1935, in Salzburg. + +[a901539] conductor from 1969 to 1981.Needs Votehttps://en.wikipedia.org/wiki/Leopold_Hagerhttps://www.ks-gasteig.de/en/hager-biography/769-biographyhttps://www.bach-cantatas.com/Bio/Hager-Leopold.htmHagerL. HagerLeopold HegerLéopold HagerЛеопольд ХагерOrchestra Of Radio LuxembourgDas Mozarteum Orchester SalzburgKammerorchester Der Christuskirche Mainz + +915367Cécile van de SantDutch Mezzo-soprano & Alto vocalistNeeds Votehttp://www.cecilevandesant.com/home.htmlhttp://www.bach-cantatas.com/Bio/Sant-Cecile-van-de.htm + +915368Jed WentzAmerican flutist and conductor, founder of [a=Musica Ad Rhenum]. Born July 01, 1960 in New Brighton, PA, USA.Needs Votehttp://www.jedwentz.com/WentzGabrieli ConsortMusica Antiqua KölnMusica Ad Rhenum + +915369Musica Ad RhenumBaroque ensemble founded in 1992.Correcthttp://musicaadrhenum.jedwentz.com/M. Ad RhenumJob Ter HaarAlida SchatElisabeth SmaltFlorian DeuterJed WentzFranc PolmanMichael BorgstedeMarcello BussiBalázs MátéMarion MoonenLex VosIgor RuhadzeMenno Van DelftErik BosgraafManfredo KraemerPaul Van Der LindenÖrzse AdamFred Jacobs (2)Tis MarangUlrike WildNorbert KunstAyako MatsunagaJane GowerStefano Rossi (2)Joshua CheathamAnneke van HaaftenAnnabelle FerdinandRob DigginsJosine Van Den AkkerDavid RabinovichAnna StarrCassandra L. LuckhardtSara De CorsoDavid Van OoijenMaria Martinez-AyerzaAmy Power + +915370Franc PolmanClassical violinist.Needs VoteFrank PolmanMusica Antiqua KölnNieuw Sinfonietta AmsterdamMusica Ad RhenumLes Musiciens Du LouvreNepomuk Fortepiano QuintetOrchestra Of The 18th CenturyVan Swieten TrioApollo EnsembleSchuppanzigh QuartettVan Swieten SocietyLa Suave MelodiaOsmosis (24)Narratio Quartet + +915371Young-Hee KimCorrectYoung Hee Kim + +915372Erwin WieringaClassical horn player.Needs Votehttps://twitter.com/wieringaerwinAkademie Für Alte Musik BerlinFreiburger BarockorchesterMusica AmphionOrchestra Of The 18th CenturyNetherlands Bach CollegiumNachtmusiqueEnsemble Cristofori + +915373Alexei GrigorevCorrect + +915374Marijje van StralenDutch soprano vocalist.Needs Votehttps://marijjevanstralen.nl/Marije van Stralen + +915375Michael BorgstedeHarpsichordist.Needs VoteMusica Ad RhenumEnsemble Vintage Köln + +915470Leanna BrandLeanna Brand (b. in Bakersfield, California, USA) is an American singer (alto).Needs Votehttp://www.leannabrand.com/www.leannabrand.com/Leanna_Brand.htmlLeana BrandLeana BrandtLeanna Mcclure BrandThe Roger Wagner ChoraleLos Angeles Master ChoraleHollywood Film Chorale + +915478Ishani BhoolaClassical violinist, born and raised in London, U.K. She moved to Chicago in 1997 and to Los Angeles in 2000.Needs Votehttps://www.ishanibhoola.com/Bhoola, IshaniIshana BhoolaIshani HbhoolaIshari BhoolaLondon Philharmonic OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraThe Los Angeles Chamber Orchestra + +915657Thomas Stewart (2)American operatic bass-baritone. He was born 29 July 1928 in San Saba, Texas, USA and died 24 September 2006 in Rockville, Maryland, USA.Correcthttp://en.wikipedia.org/wiki/Thomas_Stewart_%28bass-baritone%29StewartT. StewartTh. StewartThomas StewartТомас Стюарт + +915941National Symphony OrchestraNational Symphony Orchestra of Washington, D.C. +NOTE: This is the US based orchestra. For the UK based one, see [a1486049]. + +Founded in 1931. In 1986, the National Symphony became an artistic affiliate of the John F. Kennedy Center for the Performing Arts, where it has performed a full season of subscription concerts since the Center opened in 1971. The 96-member NSO participates in televised appearances for Capitol Concerts, and local radio broadcasts on Classical WETA 90.9FM. + +The NSO performs approximately 150 concerts each year, including classical and popular concerts at the Kennedy Center, at Wolf Trap in the summer, and on the lawn of the U.S. Capitol. Members give chamber music performances in the Kennedy Center's Terrace Theater and on its Millennium Stage, and at theaters around Washington, D.C. The Orchestra also has a history of touring, both internationally and nationally, in addition to its American Residencies program, which ran from 1992 to 2011. + +The NSO has collaborated with artists as Boyz II Men, Common, Ben Folds, Kendrick Lamar, Nas, Mason Bates, and Bryce Dessner; tabla virtuoso Zakir Hussain; Broadway stars Megan Hilty, Audra MacDonald, Laura Osnes, and Santino Fontana; rock stars the Indigo Girls and Melissa Etheridge, country singer LeAnn Rimes; and jazz pianist Jason Moran. + +Through its Hechinger Commissioning Fund, the NSO has commissioned and premiered more than 60 new works by American composers since the fund's creation in 1983. Since 1934, the NSO has been bringing U.S. and world premieres to Washington, D.C. audiences.Needs Votehttps://en.wikipedia.org/w/index.php?title=National_Symphony_Orchestra&oldid=128213680https://www.kennedy-center.org/nso/home/about/history-and-legacy/history/https://www.facebook.com/National.Symphony/https://adp.library.ucsb.edu/index.php/mastertalent/detail/104306/National_Symphony_Orchestra_Washington_D.CMembers of the National Symphony OrchestraNacionalnim Simfonijskim OrkestromNat. Symph. Orch.National Symphonic Orchestra Of Washington, D.C.National Symphonie-OrchesterNational SymphonyNational Symphony Orchestra & ChorusNational Symphony Orchestra & Chorus Washington D.C.National Symphony Orchestra (Washington, D. C.)National Symphony Orchestra (Washington, D.C.)National Symphony Orchestra De WashingtonNational Symphony Orchestra EnsembleNational Symphony Orchestra Of AmericaNational Symphony Orchestra Of WashingronNational Symphony Orchestra Of WashingtonNational Symphony Orchestra Of Washington D. C.National Symphony Orchestra Of Washington D.C.National Symphony Orchestra Of Washington DCNational Symphony Orchestra Of Washington, D. C.National Symphony Orchestra Of Washington, D.CNational Symphony Orchestra Of Washington, D.C.National Symphony Orchestra WashingtonNational Symphony Orchestra of WashingtonNational Symphony Orchestra of Washington D.C.National Symphony Orchestra of Washington, D.C.National Symphony Orchestra, New YorkNational Symphony Orchestra, WashingtonNational Symphony Orchestra, Washington D. C.National Symphony Orchestra, Washington D.C.National Symphony Orchestra, Washington DCNational Symphony Orchestra, Washington, D.C.National Symphony Orchestra, WashintonNational Symphony WashingtonNational Symphony, Washington, D.C.Nemzeti FilharmonikusNemzeti Szimfonikus ZenekarOrchestre Symphonique De WashingtonOrchestre Symphonique National De WashingtonOrquesta Sinfónica Nacional De WashingtonOrquesta Sinfónica Nacional De Washington, D. C.Orquesta Sinfónica Nacional de Washington D.C.Orquestra Nacional De WashingtonOrquestra Simfónica de NemzetiTh National Symphony OrchestraThe National OrchestraThe National SymphonyThe National Symphony OrchestraThe National Symphony Orchestra (Washington, D. C.)The National Symphony Orchestra (Washington, D.C.)The National Symphony Orchestra Of Washington, D.C.Washington National SymphonyWashington National Symphony OrchestraΕθνική Συμφωνική ΟρχήστραНациональный Оркестр СШАナショナル交響楽団ワシントン・ナショナル交響楽団Globe Symphony OrchestraHarvey WolfeCarole EvansRaymond KoblerLeonard SlatkinChristoph EschenbachWilliam SteckRobert MarcellusAnn HobsonJay WadenpfuhlLambert OrkisDavid TeieLei HouElizabeth BlakesleeMahoko EguchiDavid HardyDoriot Anthony DwyerDavid PremoLoren KittGlenn GarlickJoel FullerRuth WickerViola SmithRobert MarstellerMax HobartLoewi LinLuis BiavaLeo PanasevichLeonard SharrowHector De LeonBernard RobbinsNurit Bar-JosefHarry BrabecFrank Sinatra (2)Neil CourtneyVernon KirkpatrickSylvia MeyerJohn Martin (21)John Mack (2)Abe TorchinskyLewis LipnickWilliam NeilGabriel BartoldDavid Murray (7)Susan HeinemanKenneth HarbisonLuis LeguiaGeralyn CoticoneDennis RoyRoland SmallCraig Mulcahy (2)Leah ArsenaultLarrie HowardSamuel KraussSidney CurtissAttilio De PalmaWanzhen LiElisabeth AdkinsCatharina MeintsDonald E. McComasStevens HewittLisa EmenheiserMarc LifscheyAlbert TiptonMatthew GuilfordJames NickelMargaret GutierrezStanley HoffmanGil BreinesMarissa RegniJohn KrellFranz VlashekJeffrey WeisnerSteven HendricksonCharles WilkinsonAbel PereiraTsuna SakamotoSteven HonigbergJohn Hood (4)Harold Robinson (6)Lisa-Beth LambertAdriana HorneAlexander JacobsenMarjorie NealNancy BittnerGlenn DonnellanRobert OppeltSteve DumaineJeremy BucklerJauvon GilliamHeather LeDoux GreenSteven GrossWoodwinds Section Of The National Symphony OrchestraKathryn MeanyJane Bowyer-StewartEugena ChangLaurel Bennert OhlsonSteven Wilson (16)Paul CiganAaron Goldman (3)Carole BeanNicholas StovallHarrison LinseyDayna HeplerBritton RileyGlen Howard (2)Jamie Roberts (15) + +915970Jerome RothAmerican oboist, born 15 June 1918 in Manhattan, New York and died 12 October 2005 in Ridgefield, Connecticut.Needs VoteJ. RothNew York PhilharmonicNew York Woodwind Quintet + +916039Ray HaganRaymond Thomas HaganAmerican jazz drummer. [b]For author, see [a=Ray Hagen][/b]. + +Hagan played drums with Frank Sinatra for ten years. He played on many of Sinatra's first records in the 1940's, most all the radio shows and toured with him. Hagan played drums for Claude Thornhill, Jimmy Mundy, Jan Savitt, Tommy Pederson, Alison Rey and the AFRS Studio Orchestra, Red Ingle and the Natural Seven and others. He played on numerous hit songs including the #1 "Tim-Tayshun (Temptation)" by Cinderella G. Stump (aka Jo Stafford).CorrectRay HagenRaymond HaganRaymond Thomas HagenRoy HaganWoody Herman And His OrchestraClaude Thornhill And His OrchestraJimmy Mundy OrchestraJan Savitt And His OrchestraFrank Sinatra And His Orchestra + +916040Paul GeilJazz trumpeter.CorrectPaul Earl GeilHarry James And His OrchestraPaul Whiteman And His OrchestraHarry James & His Music MakersBob Chester And His OrchestraDennis Farnon And His Orchestra + +916044Skitch HendersonLyle Russell Cedric HendersonAmerican jazz pianist, composer and conductor. +Father in law of [a3969743] (1989-1992) + +Born 27 January 1918 in Halstad, Minnesota +Died 1 November 2005 in New Milford, Connecticut + +Needs Votehttps://en.wikipedia.org/wiki/Skitch_Hendersonhttps://adp.library.ucsb.edu/names/320786"Skitch" HendersonCedric HendersonChoirHendersonLyle HendersonS. HendersonSkitch HendersenSkitch Henderson His Piano And His OrchestraArtie Shaw And His OrchestraSkitch Henderson & His OrchestraSkitch Henderson And The Tonight Show OrchestraManny Klein's All Stars + +916048Walter MercurioJazz Trombone player.Needs VoteW. MercurioW. MurcurioWMWalt MercurioWalter MecurioWalter Mercurio (WM)Tommy Dorsey And His OrchestraAll Star Alumni Orchestra + +916050Henry SternHenry P. SternEarly jazz bassist, played tuba, bass saxophone and string bass.Needs VoteHank SternHank SternsHenry P. "Hank" SternHenry R. SternKank SternSternPaul Whiteman And His OrchestraSousa's BandCalifornia RamblersFred Rich And His OrchestraThe Dorsey Brothers OrchestraThe Big AcesJoe Venuti And His New YorkersThe Dorsey Brothers And Their New DynamiksBarney Rapp And His Orchestra + +916053Jack RyanJazz and popular music bassist, c1930s-1950s.Correcthttp://www.allmusic.com/artist/jack-ryan-mn0001232690/creditsJ. RyanJack "Red" RyanWingy Manone & His OrchestraJimmy Dorsey And His OrchestraThe Buddy Cole QuartetLouis Prima & His New Orleans GangThe Georgians + +916056Sam RossBig Band era violinist with [a=Tommy Dorsey] and [a=Artie Shaw].Needs VoteRossSRSam Ross (SR)Tommy Dorsey And His OrchestraArtie Shaw And His Orchestra + +916057Bill ShineAmerican jazz saxophonist (Alto)CorrectWilliam ShineTommy Dorsey And His OrchestraWoody Herman And His OrchestraBenny Goodman And His OrchestraWoody Herman & The HerdAlvino Rey And His OrchestraMel Powell And His OrchestraVanderbilt All Stars + +916058Bernard TinterowBernard “Bobby” Tinterow was a Big Band era violinist with [a=Tommy Dorsey] and [a=Artie Shaw]. His name is sometimes misspelled "Tintelow" in discographies. +Born: November 23, 1915 in Galveston County, TX +Died: August 18, 1984 in Houston, TXNeeds VoteBTBernard Tinterow (BT)Bernard TintrowBernie TinterowTommy Dorsey And His OrchestraBobby Tinterow And His Orchestra + +916059Jack KelleherUS jazz bassist from the swing-era. + +Needs Votehttps://www.allmusic.com/artist/jack-kelleher-mn0001714846/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/324935/Kelleher_JackJ. KelleherJohn M. KelleherKelleherTommy Dorsey And His OrchestraMuggsy Spanier And His RagtimersMuggsy Spanier And His Orchestra + +916061Harry SchuchmanJazz reedist from Jersey City. Played saxophones, oboe and English horn. With [a2032203] before joining [a253855]. Friend of [a52833]. +b.: Jan. 18, 1909 in New York +d.: Jan. 24, 1994 in Los Angeles, CA +CorrectH. SchuchmanHaSHarry Schuchman (HaS)Harry SchuchmannHarry SchuckmanHarry SchukmanHarry SchumanHarry SchumannHarry SchurchmanTommy Dorsey And His OrchestraBob Chester And His OrchestraFrank Sinatra And His Orchestra + +916063Bob AlexyRobert J. Alexy.American jazz trumpeter. + +Born : January 10, 1910 in Bethlehem, Pennsylvania. +Died : April 24, 1985 in Bethlehem, Pennsylvania. + +Bob worked with : "Floyd Mills and His Marylanders", "Mal Hallet's Band", "Paul Whiteman Orchestra", "Larry Clinton's Band", "Tommy Dorsey's Orchestra", Jimmy Dorsey and others.Needs VoteBob AlexTommy Dorsey And His OrchestraJimmy Dorsey And His OrchestraFloyd Mills And His Marylanders + +916065Bob Ahern (2)Jazz guitaristCorrecthttps://www.allmusic.com/artist/bob-ahern-mn0001229533/creditsB. AhernBob AherneMetronome All StarsStan Kenton And His OrchestraMetronome All-Star Band + +916066William PritchardAmerican trombonist (swing-era)CorrectBill PritchardBilly PritcchardBilly PritchardW.T. PritchardJimmy Dorsey And His OrchestraFrankie Masters And His OrchestraWill Bradley And His OrchestraBenny Goodman And His OrchestraVic Schoen And His OrchestraGeorge Williams And His OrchestraGene Kardos And His OrchestraReggie Childs And His OrchestraWillie Farmer And His OrchestraTommy "Red" Tompkins And His Orchestra + +916067Ward LayEarly jazz bassist and tuba player.Needs VoteW. LayBoyd Senter & His SenterpedesThe Charleston ChasersEddie Lang-Joe Venuti And Their All Star OrchestraJoe Glover And His Collegians + +916070Artie BakerArthur BakerJazz saxophone player. +Born in Massachusetts. +Died - 25th March 2004, aged 89. +Needs VoteA. BakerArt BakerArthur BakerArtie BackerArtie Shaw And His OrchestraRaymond Scott And His OrchestraCharlie Spivak And His OrchestraSy Oliver And His OrchestraBenny Goodman And His OrchestraLester Lanin And His OrchestraArtie Baker And His Salon Swingtet + +916071Danny VannelliDaniel VannelliAmerican jazz trumpeter and bandleader. Played with: Tommy and Jimmy Dorsey, Frank Sinatra, Peggy Lee, Buddy Rich, Charlie Spivak and in his own band. +Born: August 14, 1912 in Vineland, New Jersey. +Died: October 5, 2002 in Arizona.CorrectD. VannelliDanny VanelliTommy Dorsey And His OrchestraCharlie Spivak And His OrchestraAlvino Rey And His Orchestra + +916073Walter BensonWalter "Benny" BensonAmerican Jazz trombonist. +Born 15 Aug 1914 Chicago, Illinois, USA Died 29 Oct 1964 (aged 50) Los Angeles County, California, USA. +He was married to singer [a1189290].Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/303925/Benson_WalterB. BensonBennie BensonBenny BensonRed BensonWBWalt BensonWalter 'Ben' BensonWalter Benson (WB)Walter R. BensonTommy Dorsey And His OrchestraCharlie Barnet And His OrchestraIke Carpenter And His OrchestraGlen Gray & The Casa Loma Orchestra + +916074Paul WeigandTrombone, Bass TromboneCorrectPaul WeiganStan Kenton And His Orchestra + +916076Pinky SavittPincus SavittAmerican jazz trumpeterCorrectPincus "Pinky" SavittPincus "Pinky" SavittPincus 'Pinky' SavittPincus SavitPincus SavittPingus "Pinky" SavittHarry James And His OrchestraGene Krupa And His OrchestraBuddy Rich And His OrchestraHarry James & His Music Makers + +916077Red SolomonMax Melven "Red" SolomonUS american jazz trumpet player of the Big Band era, appearing with Benny Goodman and Tommy Dorsey. He was a studio recording musician for such artists as Frank Sinatra, Ella Fitzgerald and Louis Armstrong and he appeared on many nationwide live television variety shows of the 1950's, including The Perry Como Show and The Jackie Gleason Show. +Born 1912 in Allegheny, Pittsburgh, PA +Died February 16, 2003 in Pembroke Pines, FL age 90Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/344555/Solomon_Melvin_Red?Matrix_page=100000"Red Solomon""Red" SolomonM. SolomonMarvin "Red" SolomonMelven "Red" SolomonMelven SolomonMelvin "Red" SalomonMelvin "Red" SolomonMelvin SolomonMelvon "Red" SolomonNathan SolomsonRed 'O Mein Papa' SolomonRed SolomanSolomonWill Bradley And His OrchestraSy Oliver And His OrchestraBuddy Morrow And His Orchestra + +916078Mickey ManganoVito ManganoJazz trumpet playerCorrecthttps://www.allmusic.com/artist/mickey-mangano-mn0000175479/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/329264/Mangano_MickeyM. ManganoMickey MangonoVito N. "Micky" ManganoVito ManganoTommy Dorsey And His OrchestraHarry James And His OrchestraWoody Herman And His OrchestraGene Krupa And His OrchestraWoody Herman And The Swingin' HerdGlen Gray & The Casa Loma OrchestraJerry Gray And His Orchestra + +916079Leonard PosnerLeonard Posner.American violinist (classical) and teacher. +Born April 05, 1918 in Philadelphia, Pennsylvania, USA. +Died February 03, 2003 in Austin, Texas, USA. + +Leonard was a concertmaster at "Radio City Music Hall (1944-'47), "Utah Symphony" (1947-'49), "Dallas Symphony" (1950-'54 ; 1959-'89), "NBC Symphony" (1954-'59), "Dallas Opera" during the spring season (1984-'88). +Mostly classical but also played on Buddy Holly singles.Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/341109/Rosner_LeonardL. PosnerLPLenny PosnerLeonard Posner (LP)Lionard PosnerTommy Dorsey And His OrchestraFrank Sinatra And His Orchestra + +916080Nick BonneyAmerican jazz guitaristCorrectHarry James And His OrchestraThe Wrecking Crew (6) + +916081Bunny ShawkerJazz drummerNeeds Vote"Bonnie" Shawker"Bunnie" Shawker"Bunny" Shawker'Bunny' ShawkerBunny ChalkerEdwin "Bunny" ShawkerEdwin (Bunny) ShawkerMorris "Bunny" ShawkerNorris "Bunny" ShawkerNorris 'Bunny' ShawkerNorris ShawkerShawkerNorris ShawkerLes Brown And His Band Of RenownArtie Shaw And His Gramercy FiveBob Haggart And His OrchestraSy Oliver And His OrchestraGordon Jenkins And His OrchestraAlvino Rey And His OrchestraHenry Jerome And His OrchestraThe Blue FiveJulian Dash And His OrchestraStan Rubin And His Tigertown OrchestraJulian Dash Quintet + +916083Sammy ShapiroSammy A. Shapiro SpearAmerican trumpet player (born May 31, 1909 in Brooklyn, New York – died March 11, 1975 in Miami Lakes, Florida) +Later known as [a=Sammy Spear], was the musical director and conductor for all of [a=Jackie Gleason]'s television shows. +[b]DO NOT CONFUSE with the violinist [a=Sam Shapiro (2)].[/b]Correcthttps://www.findagrave.com/memorial/134336111/sammy-spearS. ShapiroSam ShapiroSammy SpearTony Pastor And His OrchestraTed Lewis And His BandVincent Rose And His OrchestraDick McDonough And His OrchestraBenny Goodman And His Music Hall Orchestra + +916085Leonard AtkinsAmerican viola playerCorrectLALennie AtkinsLenny AtkinsLeon AtkinsLeonard 'Leo' AtkinsLeonard Atkins (LA)Tommy Dorsey And His OrchestraHarry James And His OrchestraHarry James & His Music Makers + +916088Billy RowlandWilliam RowlandHonky Tonk piano player, migrated to the U.S. and found work with several big bands in the Swing era (1930s through 1940s). + +Born: 1910, in England. +Died: 1985, in Glen Cove, Long Island, NY. +CorrectBill RowlandHenry "Billy" RowlandW. RowlandW. RowlaniEnoch Light And His OrchestraCozy Cole OrchestraBuddy Morrow And His OrchestraKnuckles O'TooleAuld-Hawkins-Webster SaxtetCharlie Ventura SextetBilly Rowland And His Trio + +916090Morris BercovMorris Louis BercovAmerican woodwind player, pianist, writer and producer. Also went by "Maurice", "Morrie“, "Maurie" and "Morry". Lindblom Technical High School's 1926 yearbook mentions him as saxophonist, clarinetist, composer and pianist and refers to a composition he dedicated to himself in honor of his 16th birthday. Bercov turned professional shortly after and played among others with the [a1770967] in the late 1920s. He worked in NYC in the 1930s. In the 1950s he worked as a studio musician in Los Angeles recording in film soundtrack orchestras as well as with [a=Frank Sinatra] and [a=Louis Armstrong]. He took part in 14 jazz recording sessions between 1927 and 1958. In the 1960s, he collaborated with his son [a262558] ([a6294966]), executive producing garage rock nuggets. +Born January 25, 1910 in Chicago, Illinois, USA. +Died February 17, 1977 in Los Angeles, California, USA.Needs Votehttps://www.imdb.com/name/nm1147832/https://de.wikipedia.org/wiki/Morris_Bercovhttps://findagrave.com/memorial/263275924/morris-louis-bercovM. BercovMaurice BercovMaurie BercovMorrie BercovMorris BercoyMorris BerkovMorry BercovCharles Pierce And His OrchestraHot Rod Rumble OrchestraRay Rasch And The Pipers 10 + +916363Susan TomesClassical pianist.CorrectСьюзан ТомСьюзан ТомесDomus QuartettThe Gaudier EnsembleThe Florestan Trio + +916597Christopher RexCello player.CorrectThe Philadelphia OrchestraAtlanta Symphony Orchestra + +917016Marie GoossensBritish harp player & teacher, and author. Born in 1894 in London, England, UK - Died in 1991 in Dorking, Surrey, England, UK. +She was Principal Harp of the [a855061] (Diaghilev Ballet seasons), [a1905359] (1920-1930), [a271875] (1932-1939), [a212726] (1939-1959), and the [a861944] from 1972. Professor of Harp at the [l290263] (1954-1967). In 1984, she was awarded an OBE. +Daughter of [a8240294] and sister of composer/conductor [a841294], harpist [a883765] and oboist [a917033].Needs Votehttps://www.youtube.com/channel/UCgtXL2UIP8PFa09uPlR3LAghttps://open.spotify.com/artist/6hO65Y9BlZ2Q0kGKxbRpC1https://open.spotify.com/artist/5JMQt0LtPzaE4eU1xgygPUhttps://music.apple.com/us/artist/marie-goossens/35406631http://blueplaquesguy.byethost24.com/content/Goossens_Marie_W14.html?i=1https://www.oxfordreference.com/view/10.1093/oi/authority.20110803095900169https://www.chandos.net/artists/Marie_Goossens/4876https://go.gale.com/ps/anonymous?id=GALE%7CA343156512&sid=googleScholar&v=2.1&it=r&linkaccess=abs&issn=0002869X&p=AONE&sw=whttps://www.londonremembers.com/subjects/marie-goossensM. GoosensM. GoossensMarie GoosensLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenLondon Mozart PlayersThe New Queen's Hall OrchestraLondon Symphony Orchestra Chamber Ensemble + +917023Bernard Walton (2)British classical clarinetist. Born in 1917 - Died 3 June 1972. +He studied at [l290263]. In 1937, he was appointed Principal Clarinet of the [a=London Philharmonic Orchestra]. After the outbreak of Second World War, he and his brothers enlisted in [a=The Band Of The Irish Guards]. After the war, he served as principal clarinetist of the [a=Philharmonia Orchestra] from 1953 to 1964. When [a=Walter Legge] attempted to disband the orchestra in 1964, Walton tried unsuccessfully to dissuade him, and when that failed Walton took the lead in establishing the [a=New Philharmonia Orchestra] as a self-governing body. He served as its first chairman. After leaving the orchestra in April 1966, Walton rejoined the London Philharmonic Orchestra, and devoted more time to chamber music, forming [a=The Music Group Of London]. He also served as Principal Clarinet for the [a=London Symphony Orchestra] (1967-1968). In addition to his work as a performer, Walton was Professor of Clarinet at the Royal College of Music from 1954 until his death. +Brother of [a=Richard Walton] and [a=John Walton (6)].Needs Votehttps://open.spotify.com/artist/2taKdJOfNLuU3ZX89psFE8https://music.apple.com/gb/artist/bernard-walton/151051600https://en.wikipedia.org/wiki/Bernard_Waltonhttps://rharl25.wixsite.com/clarinetcentral-5/bernard-waltonBernhard WaltonLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraThe Band Of The Irish GuardsThe Music Group Of LondonThe London Wind QuintetLondon Baroque EnsemblePhilharmonia Wind Quartet + +917029Robert PlanquetteRobert Plunkett (FR. Robert Planquette; July 31, 1848, Paris - January 28, 1903) was a French composer of operettas, of which the most famous "Carnivalesque bells" and "Rip van Winkle".Needs Votehttps://adp.library.ucsb.edu/names/102660J. PlanquetteJean Robert PlanquettJean Robert PlanquetteJean-Robert PlanquettePianquettePlanguettePlankettoPlanquetPlanquetteR. BlanquetteR. PlanketasR. PlanquetteRob. PlanquetteRobert Jean PlanquetteRobertas PlanketasŽ.R.PlanketasПланкетПланкеттПланкеттaПланкеттъР. ПланкетР. ПланкеттР.Планкетт + +917154HardforzeRobert FrancisElectronic dance music DJ / producer from Sydney, Australia +Styles: Hard Style | Hard Trance +Needs Votehttp://www.djweaver.com.auwww.hardforze.com.auhttp://www.myspace.com/djweaverhttp://www.facebook.com/hardforzehttp://soundcloud.com/hardforzeDJ WeaverRobert FrancisDanceforzeBass CrusadersBobby Neon (2) + +917253Zoltán TfirstClassical violinist.Needs VoteTfirst ZoltánZoltan TfirstCamerata HungaricaLiszt Ferenc Chamber Orchestra + +917255Pál KelemenClassical cellist.Needs VoteKelemen PálCamerata HungaricaLiszt Ferenc Chamber Orchestra + +917256András PistaClassical viola player.CorrectPista AndrásLiszt Ferenc Chamber Orchestra + +917257György KissClassical violinist.CorrectKiss GyörgyLiszt Ferenc Chamber Orchestra + +917259Lili ÁldorClassical violinist.CorrectÁldor LiliLiszt Ferenc Chamber Orchestra + +917260Éva IsépyClassical violinist.CorrectIsépy ÉvaLiszt Ferenc Chamber Orchestra + +917262Mária FrankClassical cellist & violistNeeds VoteFrank MáriaMaria FrankCamerata HungaricaLiszt Ferenc Chamber Orchestra + +917264Zsuzsa PertisHungarian harpsichordist and keyboard player (1943-2007).Needs VotePertis ZsuzsaZsuzsa PertsZsuzsa PèrtisZsuzso PertiuCamerata HungaricaLiszt Ferenc Chamber Orchestra + +917265Anna SándorClassical cellist.CorrectSándor AnnaLiszt Ferenc Chamber Orchestra + +917267György LovasClassical violinist.CorrectLovas GyörgyLiszt Ferenc Chamber Orchestra + +917270Péter HamarClassical violinist.Needs VoteP. HamarPeter HamarCapella IstropolitanaLiszt Ferenc Chamber Orchestra + +917271Kálmán KostyálClassical violinist.CorrectKostyál KálmánLiszt Ferenc Chamber Orchestra + +917272Zsuzsa WeiszClassical violinist.CorrectWeisz ZsuzsaLiszt Ferenc Chamber Orchestra + +917274Mihály VárnagyClassical viola player.CorrectMihály Vár NagyVárnagy MihályLiszt Ferenc Chamber Orchestra + +917277Péter GazdaClassical violinist.CorrectGazdaGazda PéterLiszt Ferenc Chamber Orchestra + +917320Eleonore MajerClassical vocalist.CorrectChamber Choir of Europe + +917321Ken GouldClassical vocalist.CorrectChamber Choir of Europe + +917322Christian SpechtClassical vocalist.CorrectChamber Choir of Europe + +917324See-Hyoung ChangClassical vocalist.CorrectChamber Choir of Europe + +917325Anne-Kathrin HerzogClassical vocalist.CorrectChamber Choir of Europe + +917326Tina ReicheClassical vocalist.CorrectChamber Choir of Europe + +917327Rolf EhlersClassical alto and tenor vocalist.Needs VoteChamber Choir of EuropeBasler MadrigalistenLa Capella DucaleCappella AugustanaVocalconsort BerlinCappella MurensisLa Chapelle RhénaneAbendmusiken BaselDufay EnsembleEnsemble Corund + +917328Christian DahmClassical vocalist.Needs VoteChamber Choir of EuropeKammerchor StuttgartJugendorchester Baden-Baden + +917330Natalie KoppClassical vocalist.CorrectChamber Choir of Europe + +917331Philip NiederbergerGerman classical bass vocalist born at Landau/PfalzNeeds VoteSWR Vokalensemble StuttgartChamber Choir of EuropeCapricornus Ensemble Stuttgart + +917333Veronika David JensovskaClassical vocalist.CorrectChamber Choir of Europe + +917334Joachim RoeslerClassical vocalist.CorrectChamber Choir of Europe + +917335Elke UllrichClassical vocalist.CorrectChamber Choir of Europe + +917336Alexandra PaulmichlClassical mezzo-soprano & alto vocalist.Needs VoteChamber Choir of Europe + +917337Gabriele HierdeisThe German soprano Gabriele Hierdeis studied at the Musikhochschule Frankfurt am Main and received a scholarship from the Studienstiftung des deutschen Volkes (German State Scholarship). In 2001 she was awarded the prestigious Lenzewsky-prize for Lied performance. Needs Votehttp://www.gabrielehierdeis.de/HierdeisChamber Choir of EuropeCantus CöllnMusica Fiorita + +917338Julian PrégardienClassical tenor vocalist.Needs VotePrégardienChamber Choir of EuropeRicercar ConsortPygmalionLa Chapelle RhénaneDufay Ensemble + +917339Heike HeilmannClassical soprano vocalist.Needs Votehttps://www.facebook.com/heike.heilmannhttps://www.bach-cantatas.com/Bio/Heilmann-Heike.htmChamber Choir of EuropeBalthasar-Neumann-ChorGoldberg Vocal Ensemble + +917340Sandra BernhardtClassical soprano vocalist.Needs VoteSandra BernhardDresdner KammerchorChamber Choir of EuropeVocal Concert Dresden + +917341Stephan HessClassical bass vocalist.CorrectChamber Choir of EuropeVokalEnsemble Köln + +917342Tanja BauerClassical vocalist.CorrectChamber Choir of Europe + +917343Marcus StäblerClassical vocalist.CorrectChamber Choir of EuropeKammerchor Stuttgart + +917344Dan Martin (5)Classical tenor & alto vocalist.Needs Votehttps://www.facebook.com/dan.martin.54772728Dresdner KammerchorCollegium VocaleCappella AmsterdamChamber Choir of EuropeRheinische KantoreiVocalconsort Berlin + +917345Beate Feuerstein-WeberClassical vocalist.CorrectChamber Choir of Europe + +917346Jörg M. KrauseClassical tenor.Needs Votehttps://www.singkreis-egg.ch/portrait/solisten/joerg_m_krause.htmlJorg KrauseJörg KrauseChamber Choir of EuropeThe Amsterdam Baroque ChoirBasler MadrigalistenSchweizer KammerchorVokalEnsemble KölnCoro Della Radio Televisione Della Svizzera ItalianaAnton-Webern-Chor Freiburg + +917347Eibe MöhlmannClassical vocalist.CorrectChamber Choir of Europe + +917348Joachim HerrmannClassical vocalist.Needs VoteChamber Choir of EuropeRosenau-Trio + +917375Felix Schuler-MeybierClassical bass vocalist and conductor, born in 1981 in Karlsruhe, Germany.Needs Votehttps://schulermeybier.wordpress.com/Felix MeybierChamber Choir of EuropeKammerchor StuttgartSinger Pur + +917384Marilyn KeithMarilyn Keith Bergman (née Katz)Born: November 10, 1929 in Brooklyn, NY. +Died: January 8, 2022 in Beverly Hills, CA. +Composer and songwriter, and President and Chairman of the Board of ASCAP. She is also the wife of and collaborator with Alan Bergman. +Inducted into Songwriters Hall of Fame in 1980. +Prior to marrying [a=Alan Bergman] in 1958, Marilyn went by the name Keith. +Her two most famous songs co-written prior to her name change are "Yellow Bird" and "Nice 'N Easy".Needs Votehttps://www.imdb.com/name/nm0004750/KeighKeitKeithKeith NarilynKetihKiethLarry KeithM KeithM. KeithM. KeithmM. KeitlM.KeithMarilynMarilyn Keith (Bergman)Marilyn KingN. KeithКейтMarilyn BergmanAlan & Marilyn Bergman + +917606Kurt PrihodaAustrian classical percussionist.CorrectK. PrihodaKarl PrihodaWiener Philharmoniker + +917608Friedrich HillerClassical cellist.CorrectConcentus Musicus Wien + +917610Roland AltmannGerman percussionist and timpanist (21 June 1941 in Jena, Germany - 24 February 2016). He was the brother of [a754956].CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerORF SymphonieorchesterTonkünstler OrchestraMOB Art & Tone Art Ensemble + +917748Iestyn DaviesBritish countertenor vocalist +After graduating in Archaeology and Anthropology from St John’s College, Cambridge, he gained a DipRAM and was awarded ARAM from the Royal Academy of Music, London. Needs Votehttp://www.iestyndavies.com/index.htmlDaviesIestyn DavisLestyn DaviesThe New College Oxford ChoirSt. John's College ChoirThe Choir Of The Temple ChurchLa Nuova MusicaThe English Concert + +918090Guy BonnetFrench songwriter, singer and pianist +Born: 1945 (Avignon) Died: 8 January 2024. +Only French singer to have represented France twice at Eurovision contest. +[Obsolete: www.guybonnet.com]Needs Votehttps://en.wikipedia.org/wiki/Guy_Bonnethttps://fr.wikipedia.org/wiki/Guy_Bonnethttps://www.imdb.com/name/nm0094962/BonnetBonnettG BonnetG. BonnerG. BonnetG. BonnettG. P. BonnetG.BonnetGay BonnetB. & R. Forces + +918107Leopold GodowskyPolish-American virtuoso pianist, composer, and teacher. He was one of the most highly regarded performers of his time. Grandfather of [a=Leopold Godowsky III]. +(February 13, 1870–November 21, 1938) +Needs Votehttp://www.godowsky.com/https://en.wikipedia.org/wiki/Leopold_Godowskyhttps://adp.library.ucsb.edu/names/102653https://www.imdb.com/name/nm3445801/GodowksyGodowskiGodowskyL. GodovskyL. GodowskiL. GodowskyL.GodowskyLeopold GodofskyLeopold GodowskiLèopold GodowskyLéopold GodowskyГодовскийЛ. ГодовскийЛеопольд Годовский + +918108Cécile ChaminadeCécile Louise Stéphanie ChaminadeFrench composer and pianist, born in Paris (August 8, 1857 – April 13, 1944). +Needs Votehttp://en.wikipedia.org/wiki/C%C3%A9cile_Chaminadehttps://adp.library.ucsb.edu/names/103219C. ChaminadeCecile ChaminadeCecile L. S. ChaminadeChamiandeChaminadeCécile Louise ChaminadeS. ChaminadeS. ŠaminadС. ШаминадШаминадシャミナード + +918222Ashley ArbuckleAustralian classical violinist. Born in Perth, Western Australia, Australia. +He graduated from [l336327] in 1964. He became a member of the [a=West Australian Symphony Orchestra] soon after and in 1972 was appointed Associate Concertmaster. March 1974 saw him commence studies in Switzerland and London culminating in him being offered the position of Co-Leader of the [a=Royal Philharmonic Orchestra] (1974-1977). During this time he was a founding member of the [b]Australian Sinfonia of London[/b]. He returned to Perth in 1978, and resumed his position as Co-Leader of the W.A.S.O. In 1981 Ashley was appointed to the position of Co-Leader of the [a=London Symphony Orchestra], remaining in this position until 1990. Returning to Perth, he took up the mantle of W.A.S.O. Concertmaster in late 1990, a position he held until 1999. Concertmaster & Artistic Director of [a5920681] since 2008, and Artistic Director of [b]Western Arts Orchestra[/b] since 2009. +In January 2015, Ashley was awarded the Order of Australia Medal in the National Australia Day Honours List for services to Music and the Arts.Needs Votehttps://www.facebook.com/ashley.arbuckle.58https://www.linkedin.com/in/ashleyarbuckleplays/?originalSubdomain=auhttps://open.spotify.com/artist/3eXRtsJla50SsvzE22f9ZBhttps://music.apple.com/id/artist/ashley-arbuckle/2621661http://www.figjammedia.com.au/mike_nelson/ewExternalFiles/1%20Ashley%20Arbuckle%20Bio.pdfhttps://www.facebook.com/103814648042055/posts/ashley-arbuckle-was-born-and-educated-in-perth-attended-scotch-college-and-learn/124201712670015/https://www.imdb.com/name/nm4258627/アシュレイ・アールブックルLondon Symphony OrchestraRoyal Philharmonic OrchestraWest Australian Symphony Orchestra + +918761Norman PearsonTuba player.Needs Votehttps://en.wikipedia.org/wiki/Norman_Pearson_(musician)Norm PearsonNorma PearsonNorman PearsonsNorman W. PearsonLos Angeles Philharmonic Orchestra + +918769Berislav KlobučarCroatian conductor, born 1924 in Zagreb, Kingdom of Yugoslavia (now Republic of Croatia) and died 13 June 2014 in Vienna, Austria. He was the brother of [a=Anđelko Klobučar].CorrectB. KlobucarB. KlobučarB.KlobucarBereislav KlobucarBerilav KlobucarBerislav KlobucarBerlislav KlobucarBorislav KlobucarKlobucarKlobučarStaatsopernkapellmeister Berislav KlobucarБерислав Клобучар + +918770Georg BaumgartnerGerman operatic vocalist.Needs VoteChor Des Bayerischen Rundfunks + +918924Westminster Cathedral ChoirChoir of the Westminster Cathedral, located in the City of Westminster, London, U.K. + +Since its foundation in 1903 the Westminster Cathedral Choir has occupied a unique and enviable position at the forefront of English church music, not least because of the ground-breaking work of its first Master of Music, Richard Terry.Needs Votehttps://westminstercathedral.org.uk/music/https://x.com/wcchoirhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105349/Westminster_Cathedral_ChoirBoys Of The Choir Of Westminster CathedralBoys Of The Westminster Cathedral ChoirBoys Of Westminster Cathedral ChoirChoir Of The Westminster CathedralChoir Of Westminster CathedralChoir Of Westminster Cathedral, LondonChoir of Westminster CathedralChoristers Of Westminster CathedralChoristers Of Westminster Cathedral ChoirChorus Westminster CathedralChœurs De La Cathédrale De WestminsterCoro De La Catedral De WestminsterCoro de la Catedral de WestminsterKnabenchor Der Westminster KathedraleLa Cathedrale De WestminsterLay Clerks Of Westminster CathedralThe Choir Of Westminister CathedralThe Choir Of Westminster CathedralThe Choir of Westminster CathedralThe Choirmen Of Westminster CathedralThe Choristers Of Westminster CathedralThe Choristers Of Westminster Cathedral, LondonThe Choristers of the Westminster Cathedral ChoirThe Choristers of the Westminster Cathedral Choir uit LondonThe Westminster CathedralThe Westminster Cathedral Boys ChoirThe Westminster Cathedral ChoirThe Westminster ChoirWestminister ChoirWestminster CathedralWestminster Cathedral Boys ChoirWestminster Cathedral Boys' ChoirWestminster Cathedral ChoristersWestminster Choirウェストミンスター大聖堂聖歌隊David HillGeorge MalcolmDaniel NormanIan PartridgeStephen CleoburyStephen Roberts (2)Martin Baker (2)Adrian PeacockJames O'Donnell (2)Michael BundyRobert Evans (2)Keith Roberts (3)Gerald BeattyMatthew Davies (3)David Gould (5)David AllsoppColin MawbyKeith Davis (2)Richard Jones (22)Andrew McKeeAlfred HallettEdward GardnerDomenic SewellAnthony Oliver (3)Francis SheperdMarc Stevens (6)Robert OgdenSean Evans (5)Roderic UnwinDavid Read (4)John HahessyMark Kennedy (8)Stephen RyleAidan OliverKenneth WillesNicholas JardineDante Smith (2)Jonathan SteeleRobin WillesIvor EvansDenis HookerRoy LockePaul Harriman (3)Michael RonayneAnthony AveraryWilfred EatonWilfred PurneyChristopher WindersWildor ThérouxRichard Roberts (11)Clifford ListerPaul Gillham (2)Dominic Walker (2)William DollardTimothy SemkenEdward DickinsonToby BingleyBenedict DollardMichael UsmarNicholas MorrellHugh LydonBenedict DurbinRadon Reynolds (2)Edmund TuttonTimothy LacyTrevor LingHugo Walker (2)Daniel CuccioGregory BrettRichard Anderton (2)Joseph De LaceyMatthew BrowneSteven Lloyd (2)Marcus PathanRichard PoyserJustin Doyle (3)Matthew Carter (4) + +918927John Mark AinsleyEnglish tenor vocalist, born 9 July 1963 in Crewe, Cheshire, England.Needs Votehttps://en.wikipedia.org/wiki/John_Mark_Ainsleyhttps://www.bach-cantatas.com/Bio/Ainsley-John-Mark.htmAinsleyJohn-Marc Ainsleyジョン=マーク・エインズリーNew London ConsortThe SixteenTaverner ChoirGothic Voices (2)The King's Consort + +918928Nicholas KeayTenor vocalist.Needs VoteThe Choir Of The King's ConsortLondon VoicesThe Monteverdi ChoirRetrospect Ensemble + +918929Martin Baker (2)British organist and conductor, currently Master of Music at the [a=Westminster Cathedral Choir] since February 2000. +Born 26 July 1967 in Manchester and educated at Chetham’s School of Music and Downing College, Cambridge, he held positions at Westminster and St Paul’s Cathedrals before being appointed Sub-Organist of Westminster Abbey at the age of twenty-four.Needs Votehttps://en.wikipedia.org/wiki/Martin_Baker_%28organist%29Westminster Cathedral Choir + +918931Adrian PeacockClassical bass vocalist and producer (for the photographer, please use [a2245739]) +He began his musical training as a chorister at Lichfield Cathedral, from where he won a musical scholarship to Wellington College to pursue his studies at the piano, organ and bassoon. He then won a choral scholarship to Guildford Cathedral in conjunction with a place at the University of Surrey, from where he graduated in 1984. He chose to take conducting as his first specialisation, receiving tuition from [a850385]. He conducted the University Symphony Orchestra and Choral Society and re-established the University Chamber Choir. He has sung as a Lay-Clerk at Westminster Cathedral and developed a freelance career singing and recording with the BBC Singers, The Tallis Scholars, and The Scholars Baroque Ensemble. He was Music Director of the Thames Voyces from 1986 to 1989. +He began his production career in 1992, at sessions in Ely Cathedral for the organist [a926341].Needs Votehttps://www.adrianpeacock.com/https://www.bach-cantatas.com/Bio/Peacock-Adrian.htmGabrieli ConsortThe Scholars Baroque EnsembleMetro VoicesLondon VoicesThe Tallis ScholarsThe Guildford Cathedral ChoirBBC SingersCollegium VocaleLa Chapelle RoyalePolyphonyWestminster Cathedral ChoirPro Cantione AntiquaThe Holst SingersThe Choir Of The Temple ChurchChoir Of Lichfield CathedralSeicentoTenebrae (10) + +918932James O'Donnell (2)Born in 1961 in Scotland. + +British Organist and current Master of the Choristers at Westminster Abbey, London, U.K.Needs Votehttps://en.wikipedia.org/wiki/James_O%27Donnell_(organist)J. O'DonnellJames O'DonellJames O'DonnellGabrieli ConsortWestminster Cathedral ChoirThe King's ConsortThe Choir Of Westminster Abbey + +918983Michael SchönheitGerman classical keyboard instrumentalist and chorus master. He's married to [a2896458].Needs Votehttps://de.wikipedia.org/wiki/Michael_Sch%C3%B6nheithttps://en.wikipedia.org/wiki/Michael_Sch%C3%B6nheitGewandhausorchester Leipzig + +919086Gus GustafsonAmerican jazz drummerNeeds VoteGus GustaffsonGus GustafssonGus GustofsonWoody Herman And His OrchestraVirgil Gonsalves SextetWoody Herman BandWoody Herman And The Fourth HerdThe Brew Moore QuartetThe Brew Moore QuintetThe Nat Pierce-Dick Collins NonetWoody Herman And The Swingin' Herd (2) + +919087Virgil GonsalvesVirgil GonsalvesAmerican jazz saxophonist (baritone) and clarinetist. + +Born : September 05, 1931 in Monterey, California. +Needs VoteGonsalvesVirgilVirgil GonsalesBuddy Miles ExpressWoody Herman And His OrchestraPacific Gas & ElectricVirgil Gonsalves SextetWoody Herman And The Swingin' HerdVirgil Gonsalves Big Band + +919090Dr. Andreas HolschneiderProducer for recordings of classical music on the German [l89289] label, he was head of [l89289] from 1970 to 1993, and CEO and president of the [l7703] Gesellschaft. Born 6 April 1931; died 24 September 2019.Needs Votehttps://en.wikipedia.org/wiki/Andreas_HolschneiderA. H.Andreas HolschneiderDr Andreas HolschneiderDr. Andreas HofschneiderDr. Andreas HohlschneiderProf.Dr. Andreas HolschneiderProfessor Dr. Andreas Holschneider + +919145Martin NitzClassical recorder player.Needs VoteHamburger Bläserkreis Für Alte Musik + +919177Elizabeth Wilson (3)Classical violinist and violistNeeds VoteElizabeth S WilsonElizabeth S. WilsonLissy WilsonLizzy WilsonOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicHanover BandBrent Fischer Orchestra + +919182Bernard ReillieClassical violinist. +Former member of the [a=London Symphony Orchestra] (1915-1921) and later Leader of the [a=BBC Variety Orchestra].Needs VoteManuelloBoris Lensky (2)London Symphony OrchestraBBC Variety Orchestra + +919541Fritz HändschkeClassical violistNeeds VoteFritz HaendschkeФриц ХендшкеNew Vienna String QuartetGewandhaus-Quartett LeipzigWiener KonzerthausquartettDas Europäische Streichquartett + +919543Wolfgang HerzerAustrian cellist, born 24 August 1940 in Vienna, Austria.CorrectWiener PhilharmonikerNew Vienna String QuartetThe Vienna Philharmonia QuintetWiener StreichtrioDas Mozart-Trio + +919598Stephen Stewart (3)Viola and violin player.Needs VoteRoyal Philharmonic Orchestra + +919795Hannelore KöhlerHannelore Köhler (1934 - 8 January 2014) was a German organist and harpsichordist. She was married to [a837544]. +Needs VoteKammerorchester der Staatskapelle Weimar + +919883Dirk SchortemeierGerman classical baritone vocalist, conductor, editor and producer (* 07 April 1943 in Gelsenkirchen, German Empire; † 21 August 2015 in Cologne / Köln, Germany). +He worked over 32 years for the [l65815].Needs Votehttps://de.wikipedia.org/wiki/Dirk_Schortemeierhttps://www1.wdr.de/radio/wdr4/ueber-uns/schortemeier100.htmlhttp://www.omm.de/artists/schortemeier-d.htmlD. SchortemeierD. SchortemeyerDirk SchortemeyerMagister Dirk SchortemeierLa Petite BandeOdhecatonDas Salonorchester CöllnKölner Vocal-consort + +920106Paul WalterAustrian conductor (* 28 February 1906 in Vienna (Wien), Austro-Hungary; † 06 June 2000 in Vienna (Wien), Austria). + +He received his first engagement in 1929 as choir director and bandmaster in Opava/CZ, after which he worked at German theaters (Munich-Gladbach [today Mönchengladbach], Erfurt, Trier, Gießen). From 1940 to 1944 he was first Kapel Meiser at the Vienna Volksoper . From 1946 to 1949 worked in Salzburg as an opera director and concert director, and until 1954 he taught at the Mozarteumorchester Salzburg . From 1954 to 1974 he conducted again at the Vienna Volksoper, with which he also went on tour.Needs Votehttps://www.musiklexikon.ac.at/ml/musik_W/Walter_Paul.xmlP. WalterPaul ValterStaatsopernkapellmeister Paul WalterWalterパウル・ワルターDas Mozarteum Orchester SalzburgChor Der Wiener Volksoper + +920909Tom PadveenAmerican jazz trombonistCorrectHarry James And His OrchestraHarry James And His Big Band + +920910Chuck AndersonAmerican jazz trombonist.CorrectChuck Anderson Su Trombón y Su Orq.Chuck Anderson Su Trombón y Su OrquestaHarry James And His OrchestraHarry James And His Big Band + +920911Robert BerrensonAmerican trumpeterCorrectHarry James And His Orchestra + +920916Houghton PetersonAmerican jazz trombonist.CorrectHarry James And His OrchestraHarry James And His Big Band + +921552Joost SwinkelsClassical trombonist.Needs VoteJoost SwinkelHuelgas-EnsembleCollegium VocaleVogelkwartetDe Nederlandse BachverenigingConcerto PalatinoHis Majestys Sagbutts And CornettsCapriccio StravaganteLa Cetra Barockorchester BaselVan Krieken - Kempen SextetEnsemble DaedalusHathor ConsortFreiburger BarockConsortInaltoB'Rock OrchestraAbendmusiken BaselI Gemelli (2)New Collegium + +921595Istvan VinczeIstván VinczeHungarian-German horn player, born 16 September 1944 in Soroksár, Hungary and died 20 January 2014 in Dresden, Germany.Needs VoteIstvan VinceIstván VinczeVinczeStaatskapelle DresdenStaatskapelle WeimarDie BlasewitzerHungarian National Philharmonic OrchestraJenaer PhilharmonieSemper Brass Dresden + +921696Thomas Neumann (3)Thomas Neumann is a German baritone and voice actor.Needs VoteRundfunkchor LeipzigThomanerchor + +922015Alfredo GiacomottiItalian operatic bass-baritone, born 18 October 1933 in Voghera, Italy.Needs VoteA. GiacomottiAlfredo GiacomettiAlfredo GiacommottiΑλφρέντο ΤζιακομόττιАльфредо Джакомотти + +922016Joachim NissSound engineer.CorrectJoachin NissJoáchim Nissヨアヒム•ニス + +922215Paulin BündgenFrench Countertenor / Alto vocalist, born 1977 in Lyon. +He is the founder and director of [a=Ensemble Céladon]Needs Votehttp://www.myspace.com/bundgenpaulinChoeur de Chambre de NamurDoulce MémoireVox LuminisEnsemble ClematisEnsemble CéladonLes Traversées Baroques + +922551Wolfgang GönnenweinGerman conductor, music pedagogue and politician. He was born 29 January 1933 in Schwäbisch Hall, Germany. +Died on 26 July 2015.Needs Votehttp://www.wolfgang-goennenwein.de/https://en.wikipedia.org/wiki/Wolfgang_G%C3%B6nnenweinhttps://www.stuttgarter-zeitung.de/inhalt.nachruf-auf-wolfgang-goennenwein-er-hat-alles-mit-links-gemacht.4d41e77b-0a53-4444-82be-7c1fe2feddd9.htmlGönnenweinW. GonnenweinW. GönnenweinW.GönnenweinWolfgang GonnenweinWolfgang GönneweinWolgang Gönnenweinヴォルフガング・ゲンネンヴァインSüdwestdeutsches KammerorchesterDer Süddeutsche Madrigalchor + +923103Maya GunjiAmerican timpanist and percussionist.CorrectOrchestra Of St. Luke'sOrpheus Chamber Orchestra + +923347Günther OpitzGünter Opitz (2 March 1928 - 21 September 2016) was a German classical hornistNeeds VoteG. OpitzGünter OpitzRundfunk-Sinfonie-Orchester LeipzigHornquartett Des Rundfunk-Sinfonie-Orchester LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +923349Jan KoetsierDutch composer and conductor (August 14, 1911 - April 28, 2006). He was first conductor at the [a754894] in Amsterdam and become later a leading conductor at the [a604396]. +In 1966, he got a professorship for conducting at the [l466335].Needs Votehttp://www.jan-koetsier.de/https://en.wikipedia.org/wiki/Jan_KoetsierJ. KoetsierJan KoestsierKoetsierЯн КуцирSymphonie-Orchester Des Bayerischen RundfunksConcertgebouworkest + +923350György GarayGyörgy Garay (2 December 1909 in Budapest, Hungary - 15 May 1988 in Leipzig, Germany) was a Hungarian violinist. First concertmaster of the [a425124] from 1960 to 1987.Needs VoteGarayGaray Gy.Garay GyörgyГ. ГарайRundfunk-Sinfonie-Orchester Leipzig + +923522Amdi RiisAmdi Egon Riis JønssonDanish cabaret and filmscore composer (1911-1965) composing a number of Danish standards in the the 40's and 50's such as "Kammerat med Solen" (1942), "Et Spil om en Vej" (1943) and "Kys mig godnat" (1948), often in collaboration with lyricist [a=Epe (2)]Needs Votehttp://www.amdiriis.dk/A. RiisRiisAmdi Riis Og Hans StrygerensembleKai Ewans Og Hans Orkester + +924076Ingo MetzmacherGerman conductor, born 10 November 1957 in Hanover, Germany. He has made his name in contemporary music with groups like [a=Ensemble Modern], the Gustav Mahler Youth Orchestra and the Hamburg State Opera. Metzmacher has dedicated himself to mainly performing the music of Twentieth Century composers, he has curated and produced the series "Who is afraid of 20th Century Music?" for Sony Classical and also written a book about this topic.Needs Votehttps://www.ingometzmacher.com/https://en.wikipedia.org/wiki/Ingo_Metzmacher + +924326Marie BoyerClassical mezzo-soprano.CorrectBoyerLes Arts Florissants + +924327Jean-Paul FouchécourtClassical vocalist (tenor).CorrectFouchecourtFouchécourtJ.-P. FouchécourtJ.P. FouchécourtJean Paul FouchécourtJean-Paul FauchécourtJean-Paul FouchecourtJohn-Paul FouchecourtLes Arts FlorissantsLa Chapelle RoyaleEnsemble Clément Janequin + +924331Gilles RagonFrench Tenor & Countertenor vocalistNeeds Votehttp://www.facebook.com/gilles.ragonG. RagonRagonLes Arts FlorissantsHuelgas-EnsembleEnsemble Jacques ModerneEnsemble Amalia + +924332Arlette SteyerFrench classical soprano vocalist.CorrectLes Arts Florissants + +924333Guillemette LaurensFrench operatic mezzo-soprano (born in Fontainebleau, France in 1957).Needs VoteG. LaurensGuillemette LaurenceGuillemette LaurenseLaurensSequentia (2)Les Arts FlorissantsCapriccio StravaganteLe Poème HarmoniqueOpera FuocoAkadêmiaUnda Maris + +924402André CampraCampra AndréFrench composer baptised on December 4, 1660 in Aix-en-Provence, died on June 29, 1744 in Versailles.Needs Votehttps://en.wikipedia.org/wiki/Andr%C3%A9_Camprahttps://www.britannica.com/biography/Andre-Camprahttps://www.klassika.info/Komponisten/Campra/wv_gattung.htmlhttps://adp.library.ucsb.edu/names/103131A. CampraA.CampraAndre CampraAndre KampràAndré CampreCamprCampraアンドレ・カンプラカンプラ + +924404Michel Garcin-MarrouClassical horn player. + +Not to be confused with the French classical producer [a=Michel Garcin].Needs VoteM. Garcin-MarouM. Garcin-MarrouMichel Garcin MarrouMichel Garcin-MarouMichel Garcin-MarrouxMichel Garin-MarouМишель Гарсен-МарруOrchestre Révolutionnaire Et RomantiqueThe Amsterdam Baroque OrchestraLa Grande Ecurié Et La Chambre Du RoyLondon Classical PlayersOctuor À Vent Maurice Bourgue + +924407Michael SchäfferMichael Schäffer (11 November 1937 – 7 September 1978) was a German lutenist. +He was a pioneer in the rediscovery of French Baroque lute works and concertized widely as soloist and with chamber ensembles.Needs Votehttps://en.wikipedia.org/wiki/Michael_Sch%C3%A4ffer_%28lutenist%29Michael SchaeferMichael SchaefferMichael SchaferMichael SchafferMichael SchäferI Solisti VenetiBachcollegium StuttgartOrchestre De Chambre Jean-François PaillardLa Petite BandeUlsamer CollegiumArchiv Produktion Instrumental EnsembleConsortium Musicum (2)Camerata Accademica HamburgEnsemble Instrumental De Lausanne + +924509Heinz-Dieter RichterGerman violinist. He was a member of the [a578737] from 1972 to 2017.Needs VoteHeinz Dieter RichterStaatskapelle DresdenOrchester der Bayreuther FestspieleDresdner BarocksolistenVirtuosi SaxoniaeCappella Sagittariana Dresden + +924651Daniza MastilovicDanica MastilovićSerbian operatic soprano, born 7 November 1933 in Negotin, Serbia. Died 15 July 2023. +Cyrillic: Даница МастиловићNeeds Votehttps://de.wikipedia.org/wiki/Daniza_Mastilovi%C4%87D. MastilovicDanica MastilovicDanica MastilovićDanila Mastilovic + +924652Ingrid StegerGerman operatic mezzo-soprano, born 27 February 1927 in Roding, Germany.Needs Votehttps://oberon481.typepad.com/oberons_grove/2020/04/ingrid-steger.htmlI. Steger + +924653Lilo BrockhausGerman operatic contralto, born 3 May 1942 in Krefeld, Germany.CorrectL. BrockausL. BrockhausLiselotte Brockhaus + +924654Liselotte RebmannGerman operatic soprano, born 8 March 1935 in Stuttgart, Germany and died 8 June 2011.CorrectL. RebmannL. RehmannLieselotte RebmannLiselotte RebmanRebmannリゼロッテ・レープマン = Liselotte Rebmann + +924656Carlotta OrdassyHungarian-American operatic soprano, born 2 May 1921 in Budapest, Hungary and died 11 October 2006 in Cortland, New York, United States.CorrectC. OrdassyThe Metropolitan Opera + +924657Helga JenckelGerman operatic mezzo-soprano.CorrectH. Jenckel + +924870Francis BayFrans BayeztBelgian trombonist and band leader, born in 1914 in Rijkevorsel, died April 25, 2005 in Bonheiden. Played in various big bands and entertainment orchestras in Belgium and the Netherlands before joining Belgian radio and television as an arranger and conductor in 1956. Was the musical director of the Knokke Song Festival for many years, while also being involved in the Eurovision Song Contest as the conductor for nine Belgian entries between 1959 and 1979. Retired from BRT Television in 1980.Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/02/francis-bay-english-version.htmlBayF. BayF. BoyF. LayF.BayFr. BayFrancis Bay And The Big Dance BandFrancis Bay y Su Orquesta De La Feria MundialFrancis LayOrkest O.l.v. Francis BayOrkest o.l.v. Francis BayS. BayJohn Evans (11)Don CatelliRay McKenzie (2)The RamblersFrancis Bay Et Son OrchestreFrancis Bay And His Juke-Box ComboJohn Evans And The Big BandThe Bay Big BandDick Willebrandts En Zijn OrkestDavid Bee And His OrchestraFrancis Bay And His Swinging Cha-Cha OrchestraJan Broekhuis En Zijn OrkestFrancis Bay And The Boone City BlowersFrancis Bay Stereo StringsThe Francis Bay Big BandKoor En Orkest o.l.v. Francis Bay + +924908Helena NilssonSwedish cellist.Needs VoteStockholm Session StringsSveriges Radios SymfoniorkesterTalekvartetten + +925123Guy FouquetNeeds VoteFouquetOrchestre symphonique de Montréal + +925130Philip DaggettClassical tenor vocalist.Needs Votehttps://www.facebook.com/profile.php?id=777312287https://www.linkedin.com/in/phil-daggett-7a876a57/https://www.bach-cantatas.com/Bio/Daggett-Philip.htmGabrieli ConsortThe SixteenThe English Concert ChoirThe Schütz Choir Of LondonYorkshire Bach Choir + +925131Helen TempletonBritish alto vocalistNeeds VoteMetro VoicesLondon Voices + +925132Fiona ClarkeBritish classical soprano singer.Needs Votehttps://www.bach-cantatas.com/Bio/Clarke-Fiona.htmThe Cambridge SingersThe Sixteen + +925134Duncan MacKenzieBritish operatic tenor.Needs Votehttps://www.bach-cantatas.com/Bio/McKenzie-Duncan.htmDuncan MackenzieGabrieli ConsortThe Choir Of The King's Consort + +925135Sophie DanemanClassical soprano, daughter of [a=Paul Daneman].Needs Votehttps://en.wikipedia.org/wiki/Sophie_DanemanDanemanSDThe SixteenLes Arts FlorissantsTheatre Of The Ayre + +925136Roger CleverdonClassical bass vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Cleverdon-Roger.htmThe SixteenThe Choir Of Westminster AbbeySt. Clement Dane's Chorale + +925137Ruth DeanSoprano vocalist from the UK.Needs VoteRuth DennGabrieli ConsortThe Tallis ScholarsThe SixteenThe Academy Of Ancient Music ChorusThe English Concert Choir + +925139Michael BundyBritish classical bass & baritone vocalist.Needs Votehttp://www.michaelrbundy.co.uk/The SixteenWestminster Cathedral Choir + +925140William LockhartClassical percussionist. +Married to [a=Caroline Dearnley].Needs Votehttps://www.brittensinfonia.com/who-we-are/people/william-lockhartBill LockhartBilly LockhartNew London ConsortOrchestre Révolutionnaire Et RomantiqueBritten SinfoniaThe King's ConsortThe English National Opera Orchestra + +925197Harvey BooneAmerican alto saxophonist, born c. 1898 in Newport News, VA, United States, died 1939. +Recorded with [a=Lucille Hegamin] 1921, [a=Fletcher Henderson] 1929, [a=Noble Sissle] 1933-1935 and [a=Don Redman] 1936-1937.Needs Votehttp://www.radioswissjazz.ch/en/music-database/musician/57307fbdcb17c977c2ce1471cce074b47d388/discographyBooneH. BooneFletcher Henderson And His OrchestraNoble Sissle And His OrchestraFletcher Henderson And His Connie's Inn OrchestraConnie's Inn OrchestraHenderson's Roseland Orchestra + +925201Harold McDonaldDrummer active in the 1920's.Needs VoteHal MacDonaldHal McDonaldHarold Mac DonaldHarold MacDonaldHarold Morgan McDonaldFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraPaul Whiteman And His Ambassador Orchestra + +925202Jack RothAmerican jazz drummer and percussionist. Also wrote song lyrics occasionally. +Born : June 24, 1898. +Died : February 12, 1980 in Yonkers, New York. + +Jack played, among others, with "The Original Memphis Five", "Ladd's Black Aces" and "Sam Lanin & His Orchestra".Needs VoteRossRothThe Original Memphis FiveLadd's Black AcesThe Broadway SyncopatersBailey's Lucky SevenNubian Five + +925207Bobby Moore (3)Robert MooreJazz trumpet player, born 1919 in New York City. +Played with [a=Count Basie] in 1937, briefly with [a=Hot Lips Page], [a=Jimmy Mundy] and [a=Benny Carter]. Suffered a nervous breakdown in 1940, was committed to the Mattewan Institution and never returned to professional music.Needs Votehttp://www.jazzarcheology.com/artists/bobby_moore.pdfhttps://www.allmusic.com/artist/bob-moore-mn0001800705https://adp.library.ucsb.edu/index.php/mastertalent/detail/101812/Moore_Bobbyhttp://worldcat.org/identities/lccn-n2015063055/B. MooreBilly MooreMooreCount Basie OrchestraJimmy Mundy OrchestraHot Lips Page And His Band + +925211Charles PanelliCharles W. PanelyEarly jazz trombonist. Born New York City, Jan 6, 1899. Participated in over 100 recordings between 1918 and 1925. Later active as theatre musician in New York until at least the 1940s. Father of [a4444525].Needs Votehttps://www.tapatalk.com/groups/bixography/charles-pavely-t8176.htmlCharlie PanelliPanelyThe Original Memphis FiveLadd's Black AcesOriginal Indiana FiveLouisiana FiveBailey's Lucky SevenNubian Five + +925221Ladd's Black AcesPseudonym on [l=Gennett] for the [a=Original Memphis Five], a New York studio band of the 1920s organized by cornetist [a=Phil Napoleon]. Needs Votehttps://www.google.com/books/edition/Jelly_Roll_Bix_and_Hoagy/H-Mrqo__kooC?hl=en&gbpv=1&dq=%22Aunt+Hagar%27s+Children+Blues%22+%2B+%22Ladd%27s+Black+Aces%22&pg=PA56&printsec=frontcoverThe Original Memphis FiveLanin's Southern SerenadersNubian FiveThe Southland SixCarolina Cotton Pickers (2)The Kentucky Serenaders (3)T.N.T. Rhythm BoysThe Savannah SixKentucky Serenaders (3)Hollywood SyncopatorsKentucky FiveConnorized JazzersWhite Bros. OrchestraAlameda Wonder OrchestraBroadway SevenFrank SignorelliMiff MoleJimmy LytellPhil NapoleonJack RothCharles PanelliSam LaninDoc BehrendsonKen "Goof" Moyer + +925230Hale ByersNeeds VoteHal ByersHale "Pee Wee" ByersPaul Whiteman And His OrchestraThe Virginians (3)Paul Whiteman And His Ambassador Orchestra + +925385Will Davis (2)William E. DavisAmerican jazz pianist/composer born February 17, 1926 in Chicago, Illinois, died March 24, 1984 in Detroit, Michigan. +[b]Do NOT confuse with pianist [a=Wild Bill Davis].[/b] + +Davis was raised in Chicago; his father was a clarinetist. The young man studied music initially with a private teacher in Virginia, then entered the Detroit Conservatory. He began gigging with bandleaders such as Snookum Russell and Paul Bascomb, becoming associated with new jazz directions through performances and recordings with trumpeter Howard McGhee. During the second half of the '40s, Davis was part of a scene of Detroit jazz players including important vibraphonist Milt Jackson, brilliant tenor saxophonist Wardell Gray, and perilously choppy saxophonist Sonny Stitt. Davis' own trio backed out-of-town stars such as Lester Young, Charlie Parker, and Miles Davis, the latter no family relation. While some of his associates were known for dazzling complexity, pianist Davis apparently never missed a chance to insert a funky touch. Later freelanced in New York City during 'the 50s, when he also recorded with Kenny Burrell.Needs Votehttps://en.wikipedia.org/wiki/Will_Davis_(musician)https://www.allmusic.com/artist/will-davis-mn0000684410http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=83219&subid=0Bill DavisW. DavisWill DavisWill Davis TrioLord Nelson And His Boppers + +925394Jean GeoffroyClassical percussionist.Needs Votehttps://jeangeoffroy.wordpress.com/GeoffroyJ. GeoffroyEnsemble Orchestral De ParisEnsemble Court-CircuitTango Futur + +925545George IngramGeorge A. IngramPresident of [l301710]. George has been a Mastering Engineer there for over 40 years. + +Needs Votehttp://nashvillerecordproductionsinc.com/?page_id=161GGAIGEGEOGEO.GIGeoGeo.Geo. IngramGeorge ''Lil G'' IngramGeorge (Lil'G) IngramGeorge (lil'g) IngramGezGiGl + +925622Jerry CrutchfieldJerry Don CrutchfieldAmerican country and pop record producer, songwriter, label executive, publisher and musician. +Brother of [a899987] +In his early career was lead singer of [a6961386] (later [a3313142]) + + +Born August 10, 1934 in Paducah, Kentucky +Died January 11, 2022 in Franklin, TennesseeNeeds Votehttp://en.wikipedia.org/wiki/Jerry_Crutchfieldhttps://www.imdb.com/name/nm5112110/http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=76707&subid=0Jan And Jerryhttps://adp.library.ucsb.edu/names/310296Berry CrutchfieldCratchfieldCruchfieldCrutchfieldF. CrutchfieldJ CrutchfieldJ. CrutchfieldJ. Crutch FieldJ. CrutcherJ. CrutchfieldJ. CrutchsieldJ. CruthfieldJ.CrutchfieldJan CrutchfieldJerry - CrutchfieldJerry ChrutchfieldJerry CruchfieldJerry Crutchfield And OrchestraJerry CrutchsieldJerry D CrutchfieldJerry D. CrutchfieldJerry, CrutchfieldJerry-CrutchfieldJon CrutchfieldKrutchfieldJan And JerryThe Escorts (14)Jerry Crutchfield ComboThe Country Gentlemen (18) + +925929Gene PokornyGene Pokorny (b. 1953) is an American tuba player, the Principal Tuba in the [a=Chicago Symphony Orchestra] since 1989. Previously, he was a member of the [a=Israel Philharmonic Orchestra], [a=Utah Symphony Orchestra], [a=Saint Louis Symphony Orchestra], and [a=Los Angeles Philharmonic Orchestra]. Pokorny studied tuba at the [l=University of Southern California] with [a=Jeffrey Reynolds], [a=Tommy Johnson (2)] and [a=Roger Bobo]. The artist had been annually teaching at USF, as well as lecturing and performing at the Pokorny Seminar at the University of Redlands. In 2009, Gene Pokorny participated in the [l=McGill University]'s Brass Year program. As a researcher, he authored a chapter on orchestral auditions for the [i]Tuba Source Book[/i] published by [l=Indiana University Press], as well as articles for the [i]Tuba Journal[/i] and [i]The Instrumentalist[/i]. + +In addition to playing Hollywood film scores such as [i]Jurassic Park[/i] and [i]The Fugitive[/i], Pokorny has participated in chamber, opera and orchestra festivals worldwide. He assisted Rolling Stones' trombonist, [a=Michael Davis], in the production of the [i]Twenty Minute Warm-Up[/i], and also recorded three solo albums.Needs Votehttp://cso.org/about/performers/chicago-symphony-orchestra/tuba/gene-pokornyhttps://en.wikipedia.org/wiki/Gene_PokornyEugene PokornyGene PokomySaint Louis Symphony OrchestraLos Angeles Philharmonic OrchestraChicago Symphony OrchestraIsrael Philharmonic OrchestraUtah Symphony OrchestraSummit BrassThe Chicago Chamber MusiciansChicago Chamber Musicians Brass Quintet + +925944Sherrill MilnesSherrill Eustace MilnesAmerican operatic baritone, born 10 January 1935 in Downers Grove, Illinois, USA.Correcthttp://en.wikipedia.org/wiki/Sherrill_MilnesAMilnesS. MilnesSheril MilnesSherill MilnesSherrill Milnes ( Barnaba )Шеррилл Милнсシェリル・ミルンズ + +925945Ileana CotrubasIleana CotrubașRomanian opera soprano, born June 9 1939 in Galați, Romania. She retired from singing in 1990Needs Votehttp://en.wikipedia.org/wiki/Ileana_Cotruba%C8%99CortrubasCortubasCotrubasI. CotrubasI.CotrubasIleana CotrubașIleana CotrubusLlena CotrubasVerdissimo - Verdi VokalИляна Контрубасイレアナ・コトルバス + +925971Deborah YorkDeborah YorkBritish soprano vocalist, born November 9, 1964 in Sheffield.Needs Votehttp://en.wikipedia.org/wiki/Deborah_Yorkhttp://www.bach-cantatas.com/Bio/York-Deborah.htmYorkNew London ConsortThe Amsterdam Baroque ChoirThe King's Consort + +926198Dan Reed (2)Daniel ReedAmerican (born in Syosset, Long Island) violinist, and occasional mandolin player. He has participated in the New York Philharmonic Ensembles since 1984, and has worked with the Eliot Feld Ballet, Eric Hawkins Dance Company, Speculum Musicae, and Prospective Encounters with Pierre Boulez. He can be heard on the Nonesuch label in works of Schoenberg, Wuorinen, Martino, and Rhodes. He retired from New York Philharmonic in 2017.Needs Votehttps://www.linkedin.com/in/daniel-reed-70482a7a/https://nyphil.org/about-us/artists/daniel-reedDaniel F. ReedDaniel ReedNew York PhilharmonicNew York Philharmonic Ensembles + +926199Qiang TuChinese-born classical cello player, based in the USA.Needs VoteNew York Philharmonic + +926201Vivek KamathViolist.Needs Votehttps://nyphil.org/about-us/artists/vivek-kamathNew York PhilharmonicMetamorphosen Chamber OrchestraAvatar Strings + +926208Eileen MoonEileen MoonAmerican cellist.Needs Votehttps://www.linkedin.com/in/eileen-moon-47b8855a/Eileen K. MoonIlene MoonNew York Philharmonic + +926325Timothy Brown (2)Classical hornist. +Brother of [a=Iona Brown], [a=Ian Brown (4)] and [a=Sally Brown (4)].Needs VoteBrownTim BrownTimothy BroenBBC Symphony OrchestraThe Parley Of InstrumentsThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiqueBournemouth Symphony OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe King's ConsortAmbache Chamber EnsembleL'Estro ArmonicoAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +926334Lynette AlcantaraLynette AlcántaraAustralian-born mezzo-soprano / alto vocalist, moved to England in 1992, she teaches in Cambridge.Needs Votehttp://www.lynettealcantara.comLynette AlcantraLynette AlcántaraBBC SingersThe Monteverdi Choir + +926336Thomas AdèsThomas AdèsBritish classical composer, pianist, and conductor. + +Born: 1 March 1971 in London, England, UK. +Needs Votehttp://www.thomasades.com/https://en.wikipedia.org/wiki/Thomas_AdèsAdesAdèsThomas Ades + +926713Dmitry SitkovetskyДмитрий Юлианович СитковецкийRussian violinist and conductor, born 27 September 1954 in Baku, Azerbaijan SSR. +Son of [a3458964] and [a836430]Needs Votehttp://www.dmitrysitkovetsky.com/https://en.wikipedia.org/wiki/Dmitry_Sitkovetskyhttps://ru.wikipedia.org/wiki/%D0%A1%D0%B8%D1%82%D0%BA%D0%BE%D0%B2%D0%B5%D1%86%D0%BA%D0%B8%D0%B9,_%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%B8%D0%B9_%D0%AE%D0%BB%D0%B8%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%87https://www.bach-cantatas.com/Bio/Sitkovetsky-Dmitri.htmDimitri SitkovetskiDimitri SitovetskyDimitry SitkovetskyDmitri SitkovetskyDmitry SitkovetzkyDmitry SitkowetskySitkovetskyドミトリ・シトコヴェツキー + +926716Roger NorringtonSir Roger Arthur Carver NorringtonBritish conductor +Born: 16th March 1934 Oxford, England +Died: 18th July 2025 Devon, England +Best known for the revival of early music using period instruments or at least adopting the period style and principles when performing Baroque, Classical and Romantic music. He came to public attention in 1962 with a landmark concert with the Schutz Chorale, which he had just formed along with the amateur Heinrich Schutz Choir. The chorus was relaunched as the [a1194142] in 1972. He also founded the [a926722] in 1978. +Was appointed OBE in 1980, CBE in 1990 and Knight Bachelor in 1997Needs Votehttps://en.wikipedia.org/wiki/Roger_Norringtonhttps://www.bach-cantatas.com/Bio/Norrington-Roger.htmhttps://www.kanzaki.com/norrington/discographyhttps://www.imdb.com/name/nm0635758/NorringtonR. NorringtonSir Rodger NorringtonSir Roger NarringtonSir Roger Norringtonロジャー・ノリントンLondon Classical PlayersThe Schütz Choir Of London + +926717Scottish Chamber OrchestraNeeds Votehttps://www.sco.org.ukhttps://www.facebook.com/scottishchamberorchestra/BBC Scottish Chamber OrchestraLing Scottish ChamberMembers Of Scottish Chamber OrchestraMembers Of The Scottish Chamber OrchestraMusicians Of Scottish Chamber OrchestraOrquesta De Camara EscocesaOrquesta De Cámara EscocesaPrincipals Of The Scottish Chamber OrchestraSCOScottisch Chamber OrchestraScottish COScottish ChamberScottish Chamber Orchestra And ChorusScottish Chamber Orchestra EnsembleScottish Chamber Orchestra Wind SoloistsScottish Chamber Orchestra, TheScottish Champer OrchestraScottish National Chamber OrchestraThe Scottish Chamber OrchestraШотландский камерный оркестрスコットランド室内管弦楽団Donald GillanAlison GreenCarole HowatElin EdwardsTom Smith (4)Rosenna EastFelix TannerTakane FunatsuJohn TunnellChristopher GeorgeRobin Williams (2)Karen VaughanSophie RenshawEmily MacPhersonDavid WatkinEmily Davis (2)Roger MontgomeryStephanie GonleyStephen StirlingClaire SterlingRobert McFallSu-a LeeBernard DochertyRob CollinsonAlison Mitchell (2)James Clark (6)Andriy ViytovychRobert AldwinckleSimon RawsonBrian SchieleRebecca WexlerUrsula Smith (2)Anthony AlcockRuth CrouchPippa TunnellCameron SinclairNiamh MolloyJanet HiltonPeter Franks (2)Peter WhelanPaul Manley (2)Harry JohnstoneLise AferiatJohn Fisher (11)Philip HighamRobin TicciatiGordon BraggPaul Klein (9)Sarah Bevan-BakerClaire DochertyMaximiliano MartinNiamh LyonsShaun HarroldRosie StaniforthAdrian BornetUrsula LeveauxEilidh MartinAnna Jones (2)Victoria SaylesCaroline GardenFiona AlexanderRuth Ellis (3)Charlotte Scott (2)Christopher Robson (2)William Stafford (2)Alec Frank-GemmillSilvia CaredduMaxim EmelyanychevStewart WebsterElisabeth DoonerJune ScottAmira Bedrush-McDonaldRachel Smith (11)Laura CominiLiza JohnsonDuncan Wilson (4)Steve King (34)Andrew Saunders (4)Sarah Nelson (10)Aisling O'DeaNigel Cox (3)Nikita NaumovJesus VillaJamie Shield (2)Colin HysonJake FawcettKate OpenshawAlasdair Kelly (2)Loan CazalHatty HaynesKana KawashimaPeter Campbell-KellyAndré Cebrián + +926718Jukka-Pekka SarasteJukka-Pekka SarasteFinnish conductor and violinist, born April 22nd, 1956 in Heinola, Finland. + +He graduated in violin from the Sibelius Academy in 1978 and then studied conducting with Jorma Panula and Arvid Jansons. He won joint first prize in the Nordic Conductors' Competition in 1981. After being appointed as a violinist in the Finnish Radio Symphony Orchestra, Saraste increasingly appeared as a conductor, and was one of the initiators of the chamber orchestra Avanti! in 1983. He was chief conductor of the Finnish Radio Symphony Orchestra from 1987–2001, and also conducted the Scottish Chamber Orchestra from 1987–1991 and the Toronto Symphony Orchestra from 1994–2001. Since then, he has appeared as a guest conductor with leading orchestras such as the , the New York Philharmonic and other top orchestras. + +Saraste has premiered works by, among others, Magnus Lindberg, Kimmo Hakola, Eero Hämeenniemi, Einojuhani Rautavaara and Jukka Tiensuu and has recorded all symphonies by Jean Sibelius and Carl Nielsen on disc. Since 2006, he has been chief conductor of the Oslo Philharmonic Orchestra.Needs Votehttps://www.jukkapekkasaraste.com/https://en.wikipedia.org/wiki/Jukka-Pekka_Sarastehttps://sv.wikipedia.org/wiki/Jukka-Pekka_Sarastehttps://fi.wikipedia.org/wiki/Jukka-Pekka_SarasteJ.-P. SarasteSarasteユッカ=ペッカ・サラステOslo Filharmoniske Orkester + +926719Eric HeidsieckÉric Heidsieck (born 26 August 1936 in Reims) is a French pianist and composer. From 1980 to 1998 he was a professor at the Conservatoire National Supérieur de Musique (CNSM) in Lyon.Correcthttp://www.ericheidsieck.net/E.E. HeidsieckEricHeidsieckÉric HeidsieckЭ. Хайдсик + +926720James Morris (5)James MorrisAmerican bass-baritone vocalist, born in Baltimore, Maryland, USA.Needs Votehttps://en.wikipedia.org/wiki/James_Morris_(bass-baritone)http://www.fanfaire.com/wagner/morris.htmlJ. MorrisJames MorrisMorrisジェイムズ・モリス + +926722London Classical PlayersFounded by [a=Roger Norrington].Needs Votehttp://en.wikipedia.org/wiki/London_Classical_PlayersThe London Classical Playersロンドン・クラシカル・プレイヤーズロンドン・クラシカル・プレイヤーズBarry GuyNicholas BucknallPeter McCarthyStephen SaundersSimon FergusonColin KitchingCatherine FinnisJohn WillisonRobert HowesMark Bennett (2)David StaffJohn HeleyPeter HansonPeter DaviesAndrew Clark (3)Thelma OwenAlison KellySimon GuntonIan HardwickSue MonksChi Chi NwanokuJonathan KahanNancy ElanStephen RowlinsonStephen KeavyBenedict HoffnungMartin Kelly (3)Catherine MackintoshPaul BarrittGraham CracknellAlison BuryJan SchlappRosemary NaldenHildburg WilliamsMiles GoldingAnnette IsserlisLisa BeznosiukDesmond HeathJulie Miller (2)Timothy MasonAlastair MitchellMarshall MarcusMargaret FaultlessTrevor Jones (4)Katherine HartFelix WarnockSusan SheppardJoanna ParkerMichael Laird (2)Christopher LarkinPauline NobesLorraine WoodPavlo BeznosiukAnthony HalsteadRoy MowattAmanda McNamaraJennifer Ward ClarkeJohn HollowayElizabeth WallfischMartin Lawrence (3)Michel Garcin-MarrouRoger NorringtonSusann WidmerDavid ChattertonBrian Smith (12)Paul Goodwin (2)Timothy KraemerJames Ellis (3)Jane CoeJames Anderson (6)Peter PooleKonrad HüntelerSusan DentMichael Harris (6)Robert MaskellLesley SchatzbergerNeil McLaren (2)Kathryn BurgessSusan AddisonAndrew DurbanJudith TreggorStephen RousePamela MunksChristopher HindMichael Harrison (4)Sue KinnersleyColin WeirElizabeth RandellCatherine WeissSimon WhistlerColin HortonJayne SpencerRachel IsserlisPaul BoucherSebastian CombertiJane BoothPatrick JackmanCherry ForbesTimothy AmherstPeter BuckokeNicholas OrmrodSally Jackson (2)David BrookerClive Brown (3)Ann MonningtonGeorge LawnAnna Holmes (2)Peter ThorleyWilliam Prince (3)Colin CallowHelen Brown (2)Chizuko IshikawaJessica O'LearyNaomi AnnerTheresa PopleJohn PeskettNia HarriesAntonia BakewellJeremy Gordon (2)Catherine RickettsJulia PlautSheila HoldsworthPaul BandaIagoba FanloElisabeth DoonerRoger Clark (5) + +926723Pierre BarbizetPierre BarbizetFrench pianist, born 20 September 1922 in Arica Chile, died 19 January 1990 in Marseille, France.CorrectBarbizetP. Barbizetピエール・バルビゼ + +926725Tallis Chamber ChoirCorrectTallis ChamberThe Tallis Chamber ChoirThomas Tallis Chamber Choirタリス室内合唱団 + +926728Mikhail PletnevМихаил Васильевич ПлетнёвMikhail Pletnev - Russian pianist, conductor and composer, born 14 April 1957 in Arkhangelsk, Soviet Union. After winning first prize and gold medal on the VI International Tchaikovsky Competition in Moscow in 1978, he started touring extensively around the world. Pletnev debuted as a conductor in 1980. He found the [a1032218] (RNO) in 1990, the first non-government-supported orchestra in Russia since 1917, and became its first principal conductor. He lives in Switzerland since 1996, and more recently in Thailand. +His name can be transliterated variously as Mikhail Vasilievich Pletnev in English and Michail Wassiljewitsch Pletnjow in German.Needs Votehttps://en.wikipedia.org/wiki/Mikhail_Pletnevhttps://www.bach-cantatas.com/Bio/Pletnev-Mikhail.htmM. PletnevM. PletniovMichail PletnevMichail PletnjovMichail PletnjowMichail Vasdil'evič PletnevMikhael PletnevMikhail PletnewMikhail PletneyMikhail PletniovMikhail PletnjowMikhail PletnyevMikhail PletnyovMikhail PretnevMikhaïl PletnevPletnevPletnjovPletnyevМ. ПлетневМихаил ПлетнeвМихаил ПлетневМихаил ПлетнёвПлетнёвミハイル・プレトニェフミハイル・プレトニョフミハイル・プレトニョフRussian National Orchestra + +926730François-René DuchâbleFrançois-René DuchâbleFrench pianist, born 22 April 1952 in Paris, France.Needs Votehttps://en.wikipedia.org/wiki/François-René_DuchâbleDuchableDuchâbleF.-R. DuchableF.R. DuchâbleFrancois DuchâbleFrancois René DuchableFrancois-Rene DuchableFrancois-René DuchableFrançois - René DuchableFrançois DuchableFrançois DuchâbleFrançois René DuchableFrançois-René DuchableRené Duchâbleフランソワ・デュシャーブルフランソワ=ルネ・デュシャーブル + +926731Hans TschammerClassical bass vocalist.Needs VoteTschammer + +926929Dean Johnson (3)American jazz bassistNeeds Votehttp://www.deanjohnsonbassist.com/JohnsonGerry Mulligan QuartetKendra Shank QuartetTed Rosenthal TrioThe Richard Shulman GroupKerry Strayer SeptetPassage (8)The N. Glenn Davis QuintetMark Sherman QuartetHayes Greenfield Quartet + +926979Éva MartonHungarian soprano, born June 18, 1943.Correcthttp://www.martoneva.hu/http://en.wikipedia.org/wiki/%C3%89va_MartonEva MartonEvan MartonMartonMarton .Marton EvaMarton ÉvaÉ. Marton + +927180Peter LuitDouble bass player.CorrectRotterdams Philharmonisch Orkest + +927501Melvyn BroilesMelvyn L. BroilesAmerican trumpeter, born in 1929 and died 26 August 2003.Needs Votehttps://trumpetchrisblog.com/mark-gould-and-mel-broiles/BroilesMel BroilesMelvil BroilesMelvin BroilesMelvin BroylesMelvin L. BruilesThe Philadelphia OrchestraThe Metropolitan Opera House OrchestraNew York SinfoniettaNew York Brass Ensemble + +927974Rachael ShockCo-owner of the [l=Shock Records] label.Needs VoteR. ShockRachel ShockShockDJ RachDigital MastersBrain BashersTekno KingsSpeedoShockwave (2)Neo & Barbwire + +928271Giusto CapponeGiusto Cappone (7 March 1919 - 25 April 2005) was an Italian classical violist. Principal Viola for the [a260744] from 1958 to 1984.Needs VoteCapponeG. CapponeДжусто Каппонеジュスト・カッポーネBerliner Philharmoniker + +928276Olimpio PetrossiItalian executive producer at [l94677].Needs VoteO. PetrossiO.PetrossiOlimpioOlimpo PetrossiOlympio PetrossiPetrassiPetrossiOlimpio's Group + +928602Armas JärnefeltEdvard Armas JärnefeltFinnish-Swedish composer, conductor and piano accompanist, born August 14, 1869 in Viborg, Finland, died June 23, 1958 in Stockholm, Sweden. + +He studied with [a1032262] in Helsinki and with [a95536] in Paris. Both Järnefelt and Busoni enjoyed a close relationship with [a627442], who was married to Järnefelt's sister Aino. From 1905 Järnefelt had a long career as conductor at the Royal Swedish Opera in Stockholm, beginning as repetiteur from 1905 to 1911 (he became a Swedish citizen in 1909); conductor 1911-1923 and chief conductor 1923–1933. + +Between 1932 and 1936 Järnefelt was the artistic director and conductor of the Finnish National Opera. He presented, among others, Siegfried and Götterdämmerung from Wagner's Ring cycle, and Parsifal. He was the principal conductor of the Helsinki Philharmonic Orchestra 1942–1943, and also returned to the Royal Swedish Opera as chief conductor from 1938 to 1946.Needs Votehttps://adp.library.ucsb.edu/names/104646https://sv.wikipedia.org/wiki/Armas_J%C3%A4rnefelthttps://en.wikipedia.org/wiki/Armas_J%C3%A4rnefeltA JärnefeltA. JärnefeldA. JärnefeltArmas Edvard JärnefeltArmas JarnefeltArmas JärnefeldArmas JärnefeldtEdvard Armas JärnefeltEdvard JärnefeltEdward Armas JaernefeldtFörsta Hovkapellmästaren Armas JärnefeltFörste Hovkapellmästare Armas JärnefeltJarnefelJarnefeltJarnfeldtJärnefeldtJärnefeltА. ЯрнефельтА. ЯрнфельдЭрнфельдъヤルネフェルトヤーネフェルト + +928771Jack CaveJazz French Horn player.CorrectArtie Shaw And His Orchestra + +928772Dick ShanahanBirth: May 4, 1921, Battle Creek, Michigan, USA +Death: Aug 5, 2012, Sherman Oaks, California, USA + +American jazz drummer. Played drums from some of America's top big bands.CorrectRichard C. 'Dick' ShanahanRichard ShanahanHarry James And His OrchestraCharlie Barnet And His OrchestraLes Brown And His OrchestraJerry Gray And His OrchestraAl Pellegrini Trio + +928774Jack DulongAmerican jazz saxophonistNeeds Votehttps://www.allmusic.com/artist/jack-dulong-mn0001480133https://adp.library.ucsb.edu/index.php/mastertalent/detail/313086/Dulong_JackJack DolongJack Du LongJack DuLongJack DulongJack E. DulongWoody Herman And His OrchestraThe Marty Paich Dek-TetteWoody Herman And His Third HerdThe Marty Paich Octet + +929026Laverne BarkerLong time Kansas City, Missouri area jazz bassist who performed in the Apollo Theater house band in New York in addition to playing with many local artists including George E. Lee, Count Basie and Charlie Parker. Needs VoteL. BarkerLaVere BakerLavern BakerLavern BarkerLaverne BakerArt Blakey & The Jazz MessengersCity Light OrchestraArt Blakey's Band + +929165David Simpson (2)Classical cellist.Needs VoteTM+Ensemble 2E2MLes Arts FlorissantsLa Chapelle RoyaleEnsemble L'ItinéraireEnsemble KaleidocollageLa TempestaQuatuor Atlantis + +929231Herbert MayrAustrian double-bass player, born in Wels, Austria.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Kammerensemble + +929234Gerhard MarschnerGerhard Marschner (born 1984 in Vienna, Austria) is an Austrian violist and Professor at University of music and performing arts in Vienna.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +929237Martin KubikGerman violinist, born 1967 in Düsseldorf, Germany. He was a member of the [a954487] from 1990 to 2010.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerPhilharmonia Schrammeln Wien + +929513Tony CampiseAmerican saxophonist and flutist, born 22 January 1943 in Houston, Texas, USA, died 7 March 2010 in Houston, Texas, USANeeds VoteT. CampiseTony CampisiStan Kenton And His Orchestra3rd Coast Jazz OrchestraThe Tony Campise Quartet + +929640Christoph FranzgroteViolinist.Needs VoteOrchestra Of St. Luke'sThe Metropolitan Opera House Orchestra + +930409Legion (14)Mark KerkhoffAfter several years of experimenting with different darker styles like Drum 'n Bass, Dubstep, IDM and Hardcore, Legion created his own somewhere in between. +Inspired by 80s tv series, horror movies and artist like TOA, Mindustries and Audio to name a few, his main focus is to just make awesome music, defying all genres and leave you begging for more!Needs Votehttps://www.facebook.com/legion.markhttp://soundcloud.com/legionhttp://www.myspace.com/legion.markNeglektCursed Legion + +930728Al CraigAl CraigCredited as jazz drummer. +Born: 3 July 1907, London, Greater London, United Kingdom. +Died: 25 October 1981, Nice, Provence-Alpes-Côte d'Azur, France. +In 1924 he began his musical career; first in dance orchestras, then, at the beginning of the 1930s, in jazz bands. In the 30s and 40s he took part in numerous sessions with well-known jazz musicians. Among others he played with Louis Armstrong, Coleman Hawkins, Cab Calloway, Rex Stewart, Johnny Hodges and Benny Carter. From 1941 he conducted the Royal Airforce Orchestra. After the war he moved to France, played in clubs in Paris, had radio shows. He played with Django Reinhardt and was guest of honor at the Nice Festival. From 1961 he appeared primarily on the Cote D'Azur. In 1974 he accepted an engagement in Düsseldorf. He also celebrated his 50th stage anniversary there. The reason for the title of the album "The Golden Jubilee Drummer" by the "Al Craig Trio" in 1974.Needs VoteQuintette Du Hot Club De FranceDjango's MusicDjango Reinhardt Et Son QuintetteBenny Carter & His Swing QuintetAl Craig Trio + +930730Willy LockwoodContrabassist. Cousin of [a6397]'s father.Needs Votehttps://fr.wikipedia.org/wiki/Willy_LockwoodLockwoodW. LockwoodWill LockwoodWillie LockwoodWilly LockwoodeFrançois Rauber Et Son OrchestreQuintette Du Hot Club De FranceDjango's MusicDjango Reinhardt Et Son QuintetteDjango Reinhardt Et Son Orchestre Du Boeuf Sur Le ToitQuatuor Avec OrgueEnsemble D'Instruments Anciens Pierre DeveveySebastien Solari Et Son OrchestrePhilippe-Gérard Et Le Brelan D'As + +930973Günther PieskGünter PieskClassical bassoonistNeeds VoteGunter PieskGünter PieskPieskBerliner Philharmoniker + +931242Ruth WeltingRuth Welting, (born 1949 in Memphis, died December 16, 1999) was a soprano who sang a wide variety of roles at the Metropolitan Opera between 1976 and 1994.CorrectWelting + +931243Konzertvereinigung Wiener StaatsopernchorEssentially identical to the [a855072], the Konzertvereinigung Wiener Staatsopernchor, or "The Concert Association of the Vienna State Opera Chorus" is the name used when performing outside the auspices of the Vienna State Opera. + +From their website [edited]: +"Outside of the Vienna State Opera House the Vienna State Opera Chorus performs as the "Concert Association of the Vienna State Opera Chorus". This name expresses that the choir is not only capable of singing extended opera literature, but also a wide variety of concert repertoire. Chorus member Viktor Maiwald established the Concert Association of the Vienna State Opera Chorus in 1927, its personnel virtually identical to the Chorus of the Wiener Staatsoper, which takes part in all performances of the chorus outside the Vienna Opera House. When the Vienna State Opera Orchestra founded its own Concert ensemble (The Vienna Philharmonic - [a754974]), it resulted in the Vienna State Opera Chorus founding the Concert Association in 1927. The original aim has remained constant through the years: to perform the important choral works with all the great Conductors and orchestras, and to present them to the public in the highest niveau."Needs Votehttps://kv-stop.jimdofree.comhttps://en.wikipedia.org/wiki/Konzertvereinigung_Wiener_StaatsopernchorAgrupación De Conciertos Del Coro De La Ópera Del Estado De VienaAgrupación Para Conciertos Del Coro De La Opera Estatal De VienaAsociación De Conciertos Del Coro De La Ópera Del Estado De VienaChoeurs De La Société Orchestrale De VienneChorChor Der Wiener KonzertvereinigungChorus Of The Orchestra Society Of ViennaConcert Association Of The Vienna State Opera ChorusConcert Chorus Of The Vienna State OperaConcert Chorus of The Vienna State OperaConcert Chorus of the Vienna State OperaConcert Ensemble of Vienna State Opera ChoirDamenchor der Konzertvereinigung Wiener StaatsopernchorKonzertvereiniginung Wiener StaatsopernchorKonzertvereinignung Wiener StaatsopernchorKonzertvereinigung Choeur De L' Opéra De VienneKonzertvereinigung Choeur De L'Opéra De VienneKonzertvereinigung Der Wiener StaatsoperKonzertvereinigung Der Wiener StaatsopernchorKonzertvereinigung Du Chœur De L'Opéra De VienneKonzertvereinigung Wiener StaatsoperKonzertvereinigung Wiener StaatsoperchorMännerchor Der Konzertvereinigung Wiener StaatsopernchorThe Concert Chorus Of The Vienna State OperaVienna Philharmonic ChorusVienna State Opera Concert ChoirVienna State Opera Concert ChorusWiener Staatsopernchorウィーン国立歌劇場合唱団Wiener Staatsopernchor + +931244Hanna SchwarzIrene Johanna SchwarzGerman mezzo-soprano and contralto opera singer. She was born 15 August 1943 in Hamburg, Germany.Needs Votehttps://en.wikipedia.org/wiki/Hanna_SchwarzH. SchwarzSchwarz + +931253Orchestre symphonique de MontréalOrchestre Symphonique De MontréalSymphonic orchestra founded in 1934 in Montréal, Québec, Canada. + +Main conductors: +[a3636643] (1935–1941) +[a1914631] (1941–1953) +[a448010] (1957–1961) +[a538821] (1961–1967) +[a1240901] (1967–1975) +[a880957] (1975–1976) +[a539272] (1977–2002) +[a649582] (Sept. 2006–2020) +[a3894166] (Sept. 2021–) + +For chorus credits, please use [a=Chœur De L'Orchestre Symphonique De Montréal]. +For the women’s choir, please use [a=Le Choeur Des Femmes De L'Orchestre Symphonique De Montréal].Needs Votehttps://www.osm.ca/https://www.facebook.com/OSMconcertshttps://x.com/OSMconcertshttps://www.youtube.com/channel/UCTpzmAzVm5-cQNwgIbcsqCwhttps://www.instagram.com/osmconcerts/https://en.wikipedia.org/wiki/Montreal_Symphony_OrchestraL'OSML'Orchestre Symphonique De MontrealL'Orchestre Symphonique De MontréalL'Orchestre Symphonique de MontrealMSOMontrealMontreal Symphonic OrchestraMontreal SymphonyMontreal Symphony OrchestraMontreal Symphony Orchestra & ChorusMontréalMontréal Symphony OrchestraMontéalMusicians Of The Montreal Symphony OrchestraOSMOSM (Orchestre Symphonique de Montréal)Orch. Symphonique De MontrealOrch. Symphonique De MontréalOrchestra Sinfonica Di MontréalOrchestre Symphonique De MontrealOrchestre Symphonique De MontréalOrchestre Symphonique de MontrealOrchestre Symphonique de MontréalOrquesta Sinfonica De MontrealOrquesta Sinfónica De MontrealOrquesta Sinfónica de MontrealOrquestra Sinfónica De MontrealOrquestra Sinfônica De MontrealOrquestra Sinfônica De MontréalSimfonijski orkestar - MontrealSinfonia Of MontrealSinfonica De MontrealSolistas Y Orquesta Sinfónica De MontrealSymphony Orchestra, TheThe Montreal SymphonyThe Montreal Symphony OrchestraThe Montréal Symphony OrchestraThe Sinfonia Of MontrealThe Sinfonia of MontrealThe Symphony OrchestraМонреальский Симфонический Оркестрモントリオール交響楽団Melvin BermanOtto JoachimLarry CombsCharles DutoitSofia GentileAndré MoisanKent NaganoOlga GrossMarianne DugalJames SommervilleJames Thompson (4)Véronique PotvinAlexa ZirbelAriane LajoieHyman BressEd WingellRafael Frühbeck De BurgosGuy FouquetCharles MeinenReynald L'ArchevêqueJean-Marc LeblancWilma HosJacques BeaudoinAlexander BrottSylvie LambertDenis BluteauSerge DesgagnésManon LafranceJean GaudreaultJohannes JansoniusNeal GrippPierre-Vincent PlanteJohn ZirbelVirginia SpicerMichael LeiterGilles BaillargeonDavid Carroll (4)Edward KudlakEugène HusarukJeanne BaxtresserGratiel RobitailleTheodore BaskinOlivier ThouinTimothy HutchinsPierre Del VescovoLeslie MalowanyKaren BaskinMargaret MorseDenys DeromeMichael DumouchelLuis GrinhauzDavid Quinn (6)Pierre BeaudryMarie-André ChevretteJosée MarchandAlain DesgagnéMonique PoitrasRobert CrowleyMark RomatzMathieu HarelBertrand RobinMarc BéliveauSophie DugasEric ChappellJennifer SwartzBrian MankerBrigitte RollandVivian Lee (5)Isabelle LessardNatalie RacineMarie DoréJean Fortin (3)Daniel YakymyshinAnna-Belle MarcotteKatherine MankerIngrid MatthiessenHerve BaillargeonAli YazdanfarKatherine PalygaRamsey HusserMyriam PellerinRichard Roberts (10)Scott FelthamClaire SegalGary Russell (5)Paul MerkeloNadia CôtéPierre DjokicSylvain MurrayVan ArmenianChantale BoivinMary Ann FujinoMarie LacasseChristopher P. SmithJean-Luc GagnonBrian Robinson (9)Susan PulliamWalter JoachimMildred GoodmanJames BoxMichael Nicolas (2)Jasmine SchnarrAlison Mah-PoyPeter ParthunLi-Ke ChangPeter Rosenfeld (2)Renaud LapierreMartin MangrumÉveline Grégoire-RousseauXiao-Hong FuHugues Tremblay (2)Lindsey MeagherStéphane Lévesque (2)Andrei MalashenkoGerald MorinRussell DevuystCarolyn ChristieAndrew Beer (2)Rémi Nakauchi PelletierJohn Milner (5)James NickelDavid Griffin (2)Robert W. EarleyDavid Cramer (2)Xavier FortinGenevieve GuimondTodd CopeCharles PilonAnn ChowAnna BurdenVincent BoilardAndrew WanCharles BenaroyaStephane BeaulacJean-Marc Leclerc (2)Jean-Sébastien Roy (2)Victor Fournelle-BlainMichael SundellAlexander ReadAlbert BrouwerTavi UngerleiderCorey RaeAustin HowleÉliane Charest-BeauchampRosemary Shaw (2)Victor EichenwaldCatherine Turner (3)Joshua Peters (3)Andrew GoodlettScott Chancey (2)Alex LiedtkeRichard Zheng + +931254Barbara VogelGerman operatic soprano, born 23 August 1939 in Pritzwalk, Germany.Correct + +931337Francois LeleuxFrançois LeleuxFrench classical oboist, conductor and pedagogue, born July 1971 in Croix, Nord. He's married to [a2608093].Needs Votehttp://www.francoisleleux.com/https://fr.wikipedia.org/wiki/François_LeleuxFrançois LeleuxLeleuxフランソワ・ルルーSymphonie-Orchester Des Bayerischen RundfunksThe Chamber Orchestra Of EuropeOrchestre National De L'Opéra De ParisEuropean Union Youth OrchestraTrio WandererOrchestre De Chambre De ParisLes Vents Français + +931338David GuerrierFrench trumpet and horn player, born 2 December 1984 in Pierrelatte. +Principal horn of the Orchestre National de France from 2004 to 2009 and of the Orchestre Philharmonique du Luxembourg from 2009 to 2010. Principal trumpet of the [a260744] since January 2024.Needs Votehttps://en.wikipedia.org/wiki/David_Guerrierhttps://www.naxos.com/person/David_Guerrier/93939.htmBerliner PhilharmonikerOrchestre National De FranceOrchestra Of Radio LuxembourgOrchestre Philharmonique De Radio France + +931339Ensemble Orchestral De ParisFounded 1978 by Marcel Landowski, Roland Bourdin and [a=Jean-Pierre Wallez]. +Renamed [a=Orchestre De Chambre De Paris] in 2012. + +Contact: + +125, rue Aristide Briand, +92300 Levallois-Perret +France + +Tél. : 01 53 39 11 75/06 16 70 65 78 +Fax : 01 47 57 78 87. +apote@eop.com.frNeeds Votehttps://www.orchestredechambredeparis.com/Ensemble Instrumental De FranceEnsemble Orchestral De FranceEnsemble Orchestre De ParisEnsemble de Chambre de l'Orchestre de ParisL'Ensemble Orchestral De ParisL'ensemble Orchestral De ParisMitglieder Des Ensemble Instrumental De FranceOrchestral Ensemble Of ParisParis Orchestral EnsembleParyžiaus OrkestrasПарижский Камерный Оркестрアンサンブル・オーケストラル・ド・パリOrchestre De Chambre De ParisMaurice AndréGuy TouvronJean-Claude BrionJean-Pierre WallezSerge BollandThierry CaensJean GeoffroyBernard SoustrotMarc DuprezPatrick SabatonManfred StilzPaul BoufilMichel GuyotRichard VieilleFrank DarielClara NovakovaPierre RoullierJacqueline StrasburgerDaniel CatalanottiBernard ChapronSylvain WienerDaniel ArrignonLaurent CausseJean-Philippe ChavanaSerge SoufflardCatherine GiardelliGilles MahaudBernard CalmelBernard HulotMarcel BardonFranck Della ValleStéphane PartGérard MaîtreJean-Claude BouveresseHubert ChachereauPhilippe DussolPascale BlandeyracMichel DenizeChristian JacotinPhilippe CoutelenDominique LobetDaniel Jacques (3)Michel TorreillesJean-Michel RicquebourgHoward YangChristian CrenneJoël PontetJacques JarmassonJean-Paul Leroy + +931361Gustav SchmahlGustav Schmahl (born November 29, 1929 in Herford; † October 4, 2003 in Schwielowsee) was a German violinist and university professor. He was the only student of [a834646] from the GDR. Schmahl temporarily worked as concertmaster of the [a796211] and from 1973 to 1984 as rector of the “Felix Mendelssohn Bartholdy” University of Music in Leipzig.Needs Votehttps://de.wikipedia.org/wiki/Gustav_SchmahlGustav SchmahtГустав ШмальRundfunk-Sinfonieorchester BerlinKammerorchester BerlinOrchester Der Hochschule Für Musik Und Theater "Felix Mendelssohn Bartholdy" + +931363Ingeborg SpringerGerman operatic mezzo-soprano, born 7 July 1939 in Waldenbuch/Silesia, Germany (now Wałbrzych, Poland).CorrectSpringerИнгеборг Спрингер + +931368Michel PlassonFrench conductor, born 2 October 1933 in Paris, France. +He was leader of the [a880293] from 1968 to 2003. +Needs Votehttps://en.wikipedia.org/wiki/Michel_PlassonM. PlassonPlassonМишель Плассонミシェル・プラッソンOrchestre National Du Capitole De Toulouse + +931379Gerard OskampDutch conductor, born in 1950.CorrectGerhard OskampGérard OskampOskamp + +931382Shoko SugitaniJapanese classical pianist.Correcthttp://www.sugitani-piano.com/ + +931394Georg FaustGerman cellist, born 1956 in Porz (Cologne), Germany.Needs Votehttps://en.wikipedia.org/wiki/Georg_FaustFaustBerliner PhilharmonikerPhilharmonisches Staatsorchester HamburgDie 12 Cellisten Der Berliner PhilharmonikerBerliner Barock SolistenNDR SinfonieorchesterBundesjugendorchesterPhilharmonisches Streichsextett Berlin + +931411Norbert KlesseClassical bass vocalistNeeds VoteNorbert KleseRIAS-Kammerchor + +931414Reiner GoldbergGerman operatic tenor, born 17 October 1939 in Crostau, Germany. +Died 7 October 2023 in Berlin.Needs Votehttps://de.wikipedia.org/wiki/Reiner_Goldberghttps://en.wikipedia.org/wiki/Reiner_Goldberghttps://www.imdb.com/name/nm0325291/GoldbergRainer GoldbergРайнер Гольдбергライナー・ゴールドベルク + +931425Münchener Bach-ChorFounded 1954 in Munich, Germany, by [a=Karl Richter], the Münchener Bach-Chor (The Munich Bach Choir) is one of the largest choirs of the German speaking countries. With approximately 120 members it has for almost half a century gained unique reputation through concerts and recordings amongst music lovers all over the world. + +Please use profile [a=Members Of The Müncher Bach-Chor] when credited as such or similar.Needs Votehttp://www.muenchener-bachchor.de/http://www.bach-cantatas.com/Bio/Munchener-Bach-Chor.htmhttps://en.wikipedia.org/wiki/M%C3%BCnchener_Bach-ChorBach ChoirBach Choir Of MunichBach-Choir From MunichChoeurChoeur Bach De MunichChoeur Bach de MunichChorChorale Bach De MunichChorale Bach de MunichChorusChœurChœur Bach De MunichChœur Bach De MünichChœur Bach MunichChœursChœurs Bach De MunichCoroCoro "Bach"Coro "Bach" De MunichCoro Bach De MunichCoro Bach De MuniqueCoro Bach De MúnichCoro Bach Di MonacoCoro Bach, MunichCoros "Bach", De MunichCôro Bach De MuniqueDer Münchener Bach-ChorMembers Of Münchener Bach-ChorMembers Of The Munich Bach ChoirMembers Of The Münchener Bach-ChorMinhenski Bach-horMnichovsky Bachuv SborMnichovský Bachův OrchestrMnichovský Bachův SborMunich Bach ChoirMunich Bach ChorMunich Bach ChorusMunich Bach-ChorusMünchener Bach ChorMünchener Bach-SolistenMünchener Bach-koorMünchener BachchorMünchener ChorMünchens Bach-KörMüncher Bach-ChorMünchner Bach ChorMünchner Bach-ChorMünchner BachchorThe Bach ChoirThe Bach-Choir From MunichThe Munich Bach ChoirThe Munich Bach ChorusМюнхенский Баховский ХорМюнхенский Баховский хорミュンヘン・バッハ合唱団Johannes Martin + +931523Bob StrahlJazz BassistNeeds VoteGene Krupa And His Orchestra + +931536John TylerFrench Horn playerCorrectBBC Symphony Orchestra + +931579André Saint-ClivierAndré Saint-ClivierMandolin player, specializing in contemporary classical music. +Born May 8, 1913 in Paris, France. +Died March 5, 2013 in Eure, France (aged 99).Needs Votehttps://web.archive.org/web/*/https://www.saint-clivier.com/A. Saint-ClivierAndre SainclivierAndre Saint ClivierAndre Saint-ClivierAndré SainclivierAndré Saint ClivierAndré Santi-ClivierAndré St-ClivierSt ClivierEnsemble IntercontemporainLa Grande Ecurié Et La Chambre Du RoyClaudio Bonelli Ses Mandolines Et Son Orchestre + +931580Cristian PetrescuCelesta & piano playerNeeds VoteEnsemble Intercontemporain + +931702Bob Stone (2)Jazz bassistNeeds VoteB. StoneRobert StoneHarry James And His OrchestraBuddy DeFranco - Tommy Gumina QuartetTom Howard EnsembleJohnny Lucas And His BlueblowersThe Tom Talbert Jazz OrchestraFrank Devenport Quintette + +931708Giles LewinGiles LewinBritish violinist, bagpiper and recorder player. Needs VoteG. LewinGilesGilles LewinLewinNew London ConsortThe BT Scottish EnsembleThe Parley Of InstrumentsBellowheadThe Carnival BandAlva (3)The Chuckerbutty Ocarina Quartet + +931717Pierre-Francisque CaroubelFrench violinist and composer, born in Cremona, died summer 1611 in Paris.CorrectCaroubelF. CaroubelF.C.Fr. CaroubelFranc. CaroubelFrancisco CaroubelFrancisque CaroubelFrancois CaroubelFrnc. CaroubelP.F. CaroubelPiero Francesco CaroubelPierre Francisque CaroubelPierre-Francisque Caroubel (1556-1611)Pierre-Francisque CarroubelPierre-Francisque Coroubel + +931721James Montgomery (3)British poet, hymnwriter, and newspaper editor. Born 4 November 1771. Died: 30 April 1854. +Noted for writing in 1816, the Christmas carol 'Angels From The Realms Of Glory'.Needs Votehttps://en.wikipedia.org/wiki/James_Montgomery_(poet)https://adp.library.ucsb.edu/names/101875J MontgomeryJ. MontgomeryJames MontgomeryMontgomery + +931733Thomas RavenscroftEnglish composer, theorist and editor (c. 1582 or 1592 until 1635), notable as a composer of rounds and catches, and especially for compiling collections of British folk music.Needs Votehttps://en.wikipedia.org/wiki/Thomas_Ravenscrofthttps://www.britannica.com/biography/Thomas-RavenscroftRavenscroftRound from RavenscroftT. RavenscroftT. RavensroftThomas Ravencroft + +931948Karel ŠejnaConductor and double bassist, born 1 November 1896 in Zálezly, Czech Republic and died 17 December 1982 in Prague, Czech Republic.Needs Votehttps://en.wikipedia.org/wiki/Karel_%C5%A0ejnaK. SejnaK. ŠejnaKarel SejnaKarel SenjaLarel SejnaOt. JeremiašSejnaZasloužilý Umělec Karel ŠejnaŠejnašeК. ШейнаКарел ШейнаКарель ШейнаКарл ШейнThe Czech Philharmonic Orchestra + +932061Erkki ValasteKaarlo Erkki Matti ValasteFinnish jazz drummer and arranger, born 22 June 1931 in Kokkola, Finland, died 10 May 1989 in Helsinki, Finland. Needs VoteE. ValasteValasteJani Uhleniuksen Uusrahvaanomainen OrkesteriErkki Valasteen OrkesteriValastonesThe Spike Dope FiveErkki Valasteen Kuoro Ja OrkesteriHeikki Laurila TrioKarpaloJaakko Salon KvintettiOlli Hämeen KvartettiErkki Valasteen YhtyeRadion TanssiorkesteriSoitinyhtye "Lahjattomat"Syntikaatin Kuoro Ja OrkesteriAron AnimaalitThe ModangosJaakko Salon TV-yhtyeOld House Sextet + +932064Okko KamuOkko KamuBorn March 7th, 1946 in Helsinki, Finland. A Finnish conductor, winner of the first Herbert von Karajan Conducting Competition, Berlin 1969. Father of [a=Ona Kamu], brother of [a=Esa Kamu]. Retired in 2017.Needs Votehttps://en.wikipedia.org/wiki/Okko_Kamuhttps://www.naxos.com/Bio/Person/Okko_Kamu/31638KamuO. KamuOkku Kamuオッコ・カムHelsinki Philharmonic OrchestraLahti Symphony OrchestraOslo Filharmoniske OrkesterHelsingborgs SymfoniorkesterRadion SinfoniaorkesteriFinlandia QuartetSuomen Kansallisoopperan OrkesteriSuhonen Quartet + +932065Erkki MelakoskiErkki Olavi MelakoskiFinnish arranger, pianist, orchestra leader, singer and journalist, born 5 January 1926 in Turku, Finland, died 6 April 1997. + +Pseudonyms: Olavi Kontio, Erkki (only on one song "Kurkota kuuhun"), E. KoskiNeeds Votehttps://m.imdb.com/name/nm0577322/E. MelakoskiE. MelasniemiE.MelakoskiErkkiMelakoskiOlavi KontioErkki KoskiOlli Hämeen KvintettiErkki Melakosken OrkesteriErkki Melakosken YhtyeFenno Jazz BandThe Ditty Dealers + +932775Sir Walter ScottSir Walter Scott, 1st BaronetScottish historical novelist and poet, born 15 August 1771 in Edinburgh, Scotland, UK, died 21 September 1832 in Abbotsford, Scotland, UK.Needs Votehttps://en.wikipedia.org/wiki/Walter_Scotthttps://adp.library.ucsb.edu/names/102263ScottSir W. ScottV. SkotsW ScottW. ScottW.ScottWalter ScotWalter ScottWalther SchottВ. СкоттВ. СкоттаВальтер Скотт + +933312Rochester Philharmonic Orchestra[b]Use [a=Eastman-Rochester Orchestra] for the Rochester or Eastman-Rochester "Pops" Orchestra.[/b]Needs Votehttps://rpo.org/https://www.facebook.com/RochesterPhilharmonic/https://x.com/rocphilshttps://www.instagram.com/rocphils/https://www.youtube.com/channel/UCgCBaZIIlmAAT_PS_IIi9lgDas Philharmonische Orchester RochesterDas Philharmonische Orchester Rochester*Members Of The Rochester PhilharmonicOrchestra Filarmonica Di RochesterOrchestre Philarmonique de RochesterOrchestre Philharmonique De RochesterOrchestre Philharmonique de RochesterOrquesta Filarmonica De RochesterOrquesta Sinfonica De RochesterOrquestra Filarmónica de RochesterOrquestra Filarmônica de RochesterRechester Pops OrchestraRochester Orch.Rochester PhilharmonicRochester PopsRochester Pops OrchestraRochester Pops, TheThe Rochester PhilharmonicThe Rochester Philharmonic OrchestraThe Rochester PopsThe Rochester Pops OrchestraРочестерский Филармонический Оркестрロチェスター・フィルハーモニック・オーケストラロチェスター・フィルハーモニー管弦楽団Jeff TyzikRamon RickerJulie GiganteBrad WarnaarRoger BoboPaul Silver (2)Howard CarpenterLara SipolsWilliam BlossomBasil VendryesJonathan PegisRobert BloomNorman SchweikertMichael Webster (2)Milan YancichThomas A. DummFrank BroukMindy KaufmanLeone BuyseNancy HuntWilfredo DeglansEllen RathjenJoseph WernerNeil CourtneyKathleen Murphy (2)Gordon PetersMark KelloggWilliam Williams (4)Harold MeekCalvin WiersmaDavid HultWendell HossDaniel GingrichOscar ZimmermanStanley HastyAdolph WeissGeorge GosleePatricia GarveyJessica Orit SindellDavid Griffin (2)Walfrid KujalaIngrid BockThomas SperlDouglas ProsserChristopher WuK. David Van HoesenEarl SchusterHeidi BrodwinKristin FrankenfeldBonita BoydPatrick WalleStephen UlleryLaura Griffiths (3)Randall Montgomery (2) + +933325Lionel RoggLionel RoggSwiss organist, pianist, composer and teacher in musical theory (* April 21, 1936 in Genève, Switzerland). +Finished the Genève Conservatory in 1956 with the first prize for organ in Piere Segond's class, and in 1957 with the first prize for piano in [a=Nikita Magaloff]'s class. + +He has recorded the complete organ works of [a=Johann Sebastian Bach] three times. +Needs Votehttps://lionelrogg.ch/http://en.wikipedia.org/wiki/Lionel_RoggBaden Cathedral, SwitzerlandL. R.L. RoggL.RoggRoggSaint Nicolai De Kolding Church, DenmarkЛ. РоггЛайонел РОГГЛайонел РоггЛионел РогЛионель РогЛионель РоггEnsemble Instrumental De Lausanne + +933326Harry BlechHirsch BlechBritish violinist and conductor. Born 2 March 1910 in London, England, UK - Died 9 May 1999 in Wimbledon, London, England, UK. +He studied at the [l680970]. In 1929, he joined the [a374006] until 1930. He joined [a=BBC Symphony Orchestra] on its formation in 1930. In 1936, he left to become the leader of his own eponymous string quartet; the [b]Blech String Quartet[/b] disbanded in 1950. He gave up orchestral playing in 1937 (the last orchestra he played with was the [a=London Symphony Orchestra] (1935-1937)). During the Second World War, he played in [a=The Central Band Of The Royal Air Force] at Uxbridge. He became a conductor in 1942, under wartime conditions, and formed the [b]London Wind Players[/b] (from [a=The Royal Air Force Orchestra]). After the war he formed the [b]London Symphonic Players[/b]. Founder of the [a861944] in 1949. He was given the OBE in 1962 and, when he retired in 1984 with the CBE, the orchestra continued, first under [a=Jane Glover] and then under [a=Matthias Bamert].Needs Votehttps://www.youtube.com/channel/UCmTUt12vvZBeaoY17BUnMTA/nullhttps://www.youtube.com/channel/UCjU9QF0xC_kEwwzyTy9NPrQhttps://open.spotify.com/artist/0CvgirKvlyA6HGG1RVtktNhttps://music.apple.com/us/artist/harry-blech/339640412https://en.wikipedia.org/wiki/Harry_Blechhttp://landofllostcontent.blogspot.com/2021/08/harry-blech-and-his-string-quartet.htmlhttps://www.theguardian.com/news/1999/may/12/guardianobituaries2https://www.independent.co.uk/arts-entertainment/obituary-harry-blech-1093058.htmlBlechГарри БлехLondon Symphony OrchestraBBC Symphony OrchestraHallé OrchestraPhilharmonia OrchestraThe Central Band Of The Royal Air ForceLondon Mozart Players + +933395Adrien PerruchonFrench classical percussionist and conductor. + +Born: 1983 + +Adrien Perruchon started his musical training with the piano before going on to study bassoon and then percussion. He studied at the Annecy Conservatory with Christophe Torion, and at the Conservatoire National de Region de Paris with Frederic Macarez and Eric Sammut. He then attended the Royal Academy of Music in London, working with professors Neil Percy and Kurt Hans Goedicke. During his studies, he joined the Orchestre Français des Jeunes (French Youth Orchestra).Needs VoteOrchestre Philharmonique De Radio FranceOrchestre Français Des Jeunes + +933483Mark ButcherCorrect + +933500Alison MacgregorSoprano.Needs VoteAlison MacGregorAlison MacgregerAlison McGregorThe Ambrosian Singers + +933737Barry QuinnClassical Timpani & Percussion artistNeeds VoteThe Early Music Consort Of London + +933739Duncan DruceRobert Duncan DruceBorn: 23rd May 1939 Nantwich, Cheshire, England +Died: 13th October 2015 +British composer, string player, lecturer and musicologist, born 1939. Remembered for his completion of Mozart's unfinished Requiem Mass, performed to acclaim at the 1991 BBC Promenade Concerts.Needs Votehttp://en.wikipedia.org/wiki/Duncan_DruceThe Parley Of InstrumentsFires Of LondonThe Academy Of Ancient MusicThe Pierrot PlayersThe London Early Music GroupThe Music PartyYorkshire Baroque Soloists + +933757Richard Van AllanBritish operatic bass / baritone vocalist. He was born 28 May 1935 in Clipstone, Nottinghamshire, England, UK and died 4 December 2008 in London, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Richard_Van_AllanR. Van AllanRichard Van AllenRichard van AllenVan AllanРичард Ван АланРичард Ван Эллан + +933896Paul BrancatoPlays second violin in the San Francisco Symphony Orchestra (Assistant Principal). member since 1980. Originally from Bronx, NY.Needs VotePaulPaul C. BrancatoPaul Charles BrancatoSan Francisco Symphony + +933903Roberta FreierAmerican violinist. She's married to [a342021].Needs VoteRoberta FrieirChicago Symphony OrchestraThe Eastman-Dryden OrchestraChicago Philharmonic + +934061Leroy BerryBanjo player in Bennie Moten's influential [b]Kansas City Orchestra[/b] (1920s-1935).CorrectBerryLercy BerryLeroy BerrBennie Moten's Kansas City Orchestra + +934063Bob YsaguirreRobert Ysaguirre.Belizian jazz bassist and tuba player. Emigrated from Belize to New Orleans in 1920. + +b.: Feb. 22, 1897 in Belize. +d.: Mar. 27, 1982 in New York City, NY Needs VoteBob YsaguireC. SequirreCharles SeguirreCharles YsaguirreJose YsaguirreJose YsaguirresRobert YsaguirreClarence SeguirePiron's New Orleans OrchestraDon Redman And His OrchestraHenry Allen-Coleman Hawkins And Their OrchestraAlex Jackson's Plantation Orchestra + +934064Johnny PowellJazz drummerNeeds VoteJack PowellEddie Condon And His Footwarmers + +934065W.E. BurtonEvans Burton Jr.Blues and jazz musician, born February 1890 in Louisville, Kentucky, died July 6, 1977 in the same city, active in Chicago in the 1920s, +W.E. "Buddy" Burton played drums, washboard, piano, celeste, kazoo and also sang. He played with [a=Jelly Roll Morton], [a=Jimmy Blythe] and [a=Irene Sanders] to name a few. He first recorded under his own name in 1928.Needs Votehttp://www.redhotjazz.com/burton.htmlhttps://en.wikipedia.org/wiki/Buddy_Burtonhttps://adp.library.ucsb.edu/names/107461Buddie BurtonBuddy BartonBuddy BertonBuddy BurtonBurtonW. E. "Buddy" BurtonW. E. BurtonW.E. "Buddy" BurtonW.E. 'Buddy' BurtonW.E. (Buddy) BurtonW.E. Buddy BurtonW.H. BurtonWilliam "Buddy" BurtonWilliam E. BartonState Street RamblersLovie Austin's Blues SerenadersBlythe's Washboard BandBlythe's Washboard RagamuffinsJunie C. Cobb And His Grains Of CornMemphis Night HawksBlack Diamond TwinsJelly Roll Morton's Steamboat FourJelly Roll Morton And His Jazz TrioJimmy O'Bryant's Famous Original Washboard BandJimmy O'Bryant's Washboard BandAlabama Jim & GeorgeHarlem Trio (2)Blythe & Burton + +934067Bob WaughRobert WaughJazz violin playerCorrecthttp://www.redhotjazz.com/grains.htmlR. WaughRobert WaughJunie C. Cobb And His Grains Of Corn"Banjo Ikey" Robinson And His Bull Fiddle Band + +934068Glen ScovilleNeeds VoteG. ScovilleGlenn ScovellGlenn ScovilleNew Orleans Rhythm Kings + +934069Eustern WoodforkBanjo player active in the 1920's.Needs VoteEusten WoodforkEustern WoodforLovie Austin's Blues SerenadersJunie Cobb's Hometown BandJunie C. Cobb And His Grains Of CornHarry Dial And His Blusicians + +934070Thamon HayesTrombone player in Bennie Moten's Kansas City Orchestra until 1931. He would leave the Moten orchestra with six other members, and founded the Thamon Hayes Orchestra in 1932 which played regularly in the KC area until 1938. At the height of its popularity the Thamon Hayes Orchestra accepted an engagement in Chicago but was ran out of town after two weeks by the union local for being "to good", intimidating other orchestras.Needs Votehttps://adp.library.ucsb.edu/names/114094E. HynesHayesHaysHazenT. HayesT. NayesTh. HayesThomas HayesThomon HayesBennie Moten's Kansas City Orchestra + +934072Sid StoneburnSidney StoneburnAmerican jazz alto saxophonist and clarinetist +born 18 February 1907 +died August 1971Needs VoteS. StoneburnSid HtoneburnSid StonebumSidney StoneburnStoneburnTommy Dorsey And His OrchestraLouis Armstrong And His OrchestraLarry Clinton And His OrchestraCalifornia RamblersThe Charleston ChasersAl Bowlly And His Orchestra + +934073LaForest DentUS saxophone, banjo & guitar player of the early jazz and swing eras. +Needs VoteDentL. DentLa Forest DentLaForet DentLaforest DentLaforet DentBennie Moten's Kansas City OrchestraJimmie Lunceford And His Orchestra + +934076Woody WalderAmerican jazz saxophonist and clarinetist player, born December 25, 1903 in Dallas, Texas died February 09, 1978 in Kansas City, Missouri. +Walter worked with, among others, Bennie Moten Orchestra and in a band co-led with his brother [a=Herman Walder]), Walder Brother's Swing Unit.Needs Votehttps://adp.library.ucsb.edu/names/114425Herman "Woody" WalderHerman « Woodie » WalderVandy WalterW. WalderWalderWoodie WalderBennie Moten's Kansas City Orchestra + +934077Booker WashingtonAmerican jazz trumpeter, cornetist and composer. + +Born : April 09, 1909 in St. Charles, Missouri. +Died : ?. + +Booker played with "Bennie Moten Orchestra", Count Basie, Jimmy Rushing, Jay McShann, George Shearing and others.Needs VoteH.B. WashingtonJ. WashingtonWashingtonBennie Moten's Kansas City OrchestraArt Smith's K.C. Jazz Band + +934078Willie McWashingtonAmerican jazz drummer, a.k.a. Mack Washington, born 1908 in Kansas City, MO, died October 1, 1938 in the same city. +Played in [a=Bennie Moten]'s influential Kansas City Orchestra (1926-1935), then joined [a=Count Basie] at the Reno Club in 1936. After being replaced by [a=Jo Jones], he worked with [a=Buster Smith].Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/114080/McWashington_WillieMack WashingtonWillie "Mack" WashingtonWillie Mc WashingtonWillie WashingtonBennie Moten's Kansas City Orchestra + +934080Vernon PageTuba player (sometimes know as Brass Bass or bass player) in Bennie Moten's influential Kansas City Orchestra (1920s-1935).Needs VoteVernon Walter PageBennie Moten's Kansas City Orchestra + +934082Carl ReidJug and "jazzhorn" player in 1920s jug bands.Needs VoteC. ReidTampa Red And His Hokum Jug BandKentucky Jug BandThe Tub Jug Washboard BandPhillips' Louisville Jug BandWashboard TrioMa Rainey And Her Tub Jug Washboard Band + +934083Talcott ReevesAmerican jazz banjoist and guitarist player. + +Born : June 15, 1904 in Little Rock, Arkansas. +Needs VoteTalbot ReevesTalcett ReevesTalcot ReevesDon Redman And His Orchestra + +934084Jimmy Cobb (2)American jazz trumpet and cornet player, brother of [a=Junie Cobb].Needs VoteCobbLovie Austin's Blues SerenadersJimmie Noone And His OrchestraKansas City Tin Roof Stompers + +934085Robert CarrollAmerican jazz tenor saxophone player, born ca. 1905 in Louisville, Kentucky, died 1952 in New York City, New York. +Carroll left Louisville when he joined [a=Benny Carter]'s band in late 1920s. Played with [a=Horace Henderson] 1930, [a=Don Redman] 1931-1936, then joined [a=Teddy Hill]'s orchestra. Worked again with Redman in late 1930s, Henderson again in 1941 and with [a=Fats Waller] 1941-1942. Gradually ceased playing after World War II. Needs Votehttps://www.digamericana.com/news/2018/6/25/robert-carrollhttps://www.allmusic.com/artist/robert-carroll-mn0001942095/biographyBob CarollBob CarrolBob CarrollDon Redman And His OrchestraTeddy Hill OrchestraTeddy Hill And His NBC Orchestra + +934628Nicola WemyssClassical soprano.CorrectWemyssLes Arts FlorissantsHuelgas-Ensemble + +934629Vocaal Ensemble CocuCorrectVocaal Ensemble CoquVocal Ensemble Cocu + +934631Claudia PataccaCorrect + +934632Tom Allen (2)Classical vocalist.Needs VoteAllen + +934633Maaike BeekmanCorrect + +934646François SoonsCorrect + +934647Terence MierauCorrect + +934706Lella CuberliAmerican soprano, born 29 September 1945 in Austin, Texas, USA.Needs Votehttps://en.wikipedia.org/wiki/Lella_CuberliCuberliL. CuberliЛелла Куберли + +934707Christine BarbauxFrench Soprano vocalist.Needs VoteBarbauxChrisriane BarbauxChristiane Barbauxクリスチーヌ・バルボー + +934708Britt-Marie AruhnBritt Marie AruhnSwedish opera singer (coloratura soprano) and hovsångare (royal court singer), for a time Aruhn Solén, born 11 November 1943 in Motala.Needs Votehttps://sv.wikipedia.org/wiki/Britt_Marie_AruhnBritt Marie AruhnBritt-Marie Aruhn-Solén + +934709Ad van BaasbankTenor vocalist.Needs VoteNederlands Kamerkoor + +934710Giovanni de GamerraItalian cleric, a playwright, and a poet. He is best known as a prolific librettist. + +Gamerra was born in Livorno on December 26, 1742, and worked from 1771 at the Teatro Regio Ducale in Milan – an important centre for opera at the time. Operas based on his librettos include Sarti's Medonte, re di Epiro and Josef Mysliveček's Il Medonte, Paisiello's Pirro, several operas by Antonio Salieri and Mozart's Lucio Silla (though this libretto was modified by Metastasio). His Erifile was set by several composers. De Gamerra is also said to have been the first translator of Mozart's Die Zauberflöte into Italian. His librettos are in the grand, orderly tradition of Metastasio, but incorporate progressive elements with enhanced use of chorus, ballet, and elaborate scenery. In 1793, aided by his reputation as a protégé of Metastasio, he was appointed as court librettist in Vienna, and he took to combining comic and serious features to please Viennese taste. + +De Gamerra was politically active, and by his revolutionary attitudes incurred the wrath of Emperor Leopold II, who tried unsuccessfully to block his career. He died at Vicenza on August 29, 1803.Needs Votehttps://en.wikipedia.org/wiki/Giovanni_de_GamerraDe GamerraG. De GamerraG. de GamerraGamerraGiovanni De GamerraGiovanni de Gramerra + +934726Guy CarmichaelClassical hornist.Needs VoteLes Violons du RoyMontreal Baroque + +934732Elzbieta SzmytkaElżbieta SzmytkaPolish soprano, born 1956 in Prochowice, Lower Silesian Voivodeship.Needs Votehttp://www.facebook.com/group.php?gid=388842146457https://pl.wikipedia.org/wiki/Elżbieta_SzmytkaElżbieta SzmytkaSzmytka + +934734Lani PoulsonAmerican classical mezzo-soprano vocalistNeeds Votehttp://www.haydnrawstron.com/artists/mezzo-sopranos/lani-poulson/ + +934735Gérard MortierGerard Alfons August, Baron MortierBelgian opera director and administrator, born 25 November 1943 in Ghent, Belgium, died 9 March 2014 in Brussels, Belgium.Correcthttp://en.wikipedia.org/wiki/Gerard_MortierGerard Mortier + +934736Malvina MajorDame Malvina Lorraine Major ONZ GNZM DBEPerhaps New Zealand's second most successful soprano after Dame Kiri Te Kanawa. +In 1963 she won the Mobil Song Quest and in 1965 she left for England to study at the London Opera Centre and at the Royal College Of Music. +Dame Malvina’s international opera career has included twenty eight major Operatic roles, extensive Oratorio and Concert repertoire and discography of commercial recordings. +Dame Malvina currently holds a teaching position as a Senior Fellow in Music at the University of Waikato. Hamilton, New Zealand. + +Needs Votehttps://dmmfoundation.org.nz/Dame Malvina Major + +934737Marek TorzewskiPolish tenor born April 6, 1960 in Rogoźno, Greater Poland Voivodeship, Poland. His daughter is [a=Agata Torzewska].Needs Votehttp://www.marektorzewski.com.pl/https://pl.wikipedia.org/wiki/Marek_Torzewski + +934738Orchestre Du Théâtre Royal De La MonnaieL’Orchestre Symphonique De La MonnaieOrchestra of the [l=Théâtre Royal De La Monnaie, Brussels], Belgium. +Also credited as: La Monnaie Symphony Orchestra, or Symfonieorkest Van De Munt in Flemish +For the chorus, please use [a4986474] +Needs Votehttp://www.lamonnaie.be/en/static-pages/127-la-monnaie-symphony-orchestraChamber Orchestra Of La MonnaieChamber Orchestra of La MonnaieKon Muntschouwburg Te BrusselL'Orchestre Du Théâtre Royal De La MonnaieLa MonnaieLa Monnaie / De Munt Symphony OrchestraLa Monnaie Chamber OrchestraLa Monnaie Symphony OrchestraMonnaie BruxellesOrchestra And Chorus Of The Teatre De Monnaie, BrusselsOrchestra Of The Theatre Royal De La Monnaie , BrusselsOrchestra Of The Theatre Royal De La Monnaie, BrusselsOrchestra Of The Théâtre Royal De La Monnaie, BrusselsOrchestra Of The Théâtre Royal de La Monnaie, BrusselsOrchestra Of Théâtre Royal De La Monnaie De BruxellesOrchestra Of Théâtre Royal, BrusselsOrchestra Of la MonnaieOrchestra SymphoniqueOrchestra of the Opéra National du Théâtre Royale de La Monnaie, BrusselsOrchestra of the Théatre de la MonnaieOrchestreOrchestre De La MonnaieOrchestre De Théâtre Royal De La Monnaie, BruxellesOrchestre Du Théâtre De La MonnaieOrchestre Du Théâtre Royal De La Monnaie De BruxellesOrchestre Et Choeurs Du Théâtre Royal De La MonnaieOrchestre Symphonic de L'Opera National du Théâtre Royal de la Monnaie BruxellesOrchestre SymphoniqueOrchestre Symphonique De L'Opera Nat. Du Théâtre Royal De La Monnaie BruxellesOrchestre Symphonique De L'Opéra National Du Théatre Royal De La Monnaie, BruxellesOrchestre Symphonique De L'Opéra National Du Théâtre Royal De La Monnaie, BruxellesOrchestre Symphonique De L'Opéra National, BruxellesOrchestre Symphonique De La MonnaieOrchestre Symphonique de La MonnaieOrchestre Symphonique de l'Opera National du Théàtre Royal de la Monnaie, BruxellesOrchestre Symphonique de l'Opéra National Du Théâtre Royal De La Monnaie, BruxellesOrchestre Symphonique de la MonnaieOrchestre Symphonique de la Monnaie / de MuntOrchestre Symphonique de l’Opéra du Théatre Royal de la Monnaie, BrusselsOrkest Van Den Kon. Muntschouwburg Te BrusselSymfonie-Orkest Van De MuntSymphony OrchestraSymphony Orchestra Of The National OperaSymphony Orchestra Of The National Opera, BrusselsSymphony Orchestra Of The Théâtre De La MonnaieSymphony Orchestra of La Monnaie/De MuntThe Monnaie Symphony OrchestraThéâtre Royal De La Monnaie de Bruxelles OrchestreΟρχήστρα του Βασιλικού Θεάτρου "La Monnaie" Των ΒρυξελλώνFlorent BremondTony NijsEric RobberechtKoen LievensJean-Pierre DassonvilleGeert De VosRobby HellynKazushi OnoYves CortvrintSteven DevolderManu MellaertsGilbert ZanlonghiJustus GrimmFemke SonnenFrederic PreusserCarlos NozziJan SmetsCarlos BruneelKoen SeverensDirk NoyenLuk NielandtLydia RossignolSébastien WalnierGilles CabodiAlain CremersStephan VanaenrodeJean-Noël MelleretBram FournierRoman KowalkoDominique LardinCorina LardinJan PasZygmunt Marek KowalskiKorneel LecompteNana KawamuraIvo LybeertRogier SteelCian O'MahonyMarc Desjardins (3)Daniel Schmitt (7)Mario MaesMaïa FrankowskiShagan GrolierHenri KochRobert HeardRudy MoercantPierre-Louis MarquesMonika MłynarczykSylvia HuangGeorgi AnichenkoJanik MartensSaténik KhourdoïanBart CromheekeCorinna LardinLidija CvitkovacBert Vanderhoeft + +934788Max CiolekGerman classical tenor vocalist born 1959 in DortmundNeeds Votehttp://www.bach-cantatas.com/Bio/Ciolek-Max.htmhttps://maxciolek.deCiolekVokalEnsemble KölnCanticum (2)Johann Rosenmüller Ensemble + +934789Johann Andreas SchachtnerAustrian trumpeter at the Salzburg court, friend of the Mozart family and writer of the Zaide opera's libretto.Needs VoteA. SchachtnerAndreas SchachtnerJ. A. SchachtnerJ.A. SchachtnerSchachtner + +934790Paul Agnew (2)Scottish tenor vocalist, born 1964 in Glasgow, Scotland.Needs Votehttp://en.wikipedia.org/wiki/Paul_AgnewAgnewP. AgnewPaul AgnewGabrieli ConsortThe Tallis ScholarsThe SixteenLes Arts FlorissantsThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirGothic Voices (2)Birmingham Cathedral Choir + +935385Manfred BartelCorrectManfred Bartelt + +935534Thomas KäpplerGerman percussionist and timpani player, born 1959 in Dresden, Germany.Needs VoteKäpplerStaatskapelle DresdenVirtuosi SaxoniaeDie BlasewitzerDresdner KapellsolistenDresdner Barockorchester + +935535Günter KlierClassical bassoonist.Needs VoteStaatskapelle DresdenDresdner BarocksolistenDresdner PhilharmonieVirtuosi Saxoniae + +935538Michael-Christfried WinklerClassiacal organist and harpsichordist, born 18 March 1946 in Gestewitz, Germany.CorrectMichael Christfried WinklerMichael-Christfried Winkler, OrgelWinklerМихаэль-Кристфрид ВинклерVirtuosi Saxoniae + +935568Christian Daniel SchubartChristian Friedrich Daniel SchubartGerman poet, organist, composer and journalist, born 24 March 1739 in Obersontheim, Swabia (now Germany) and died 10 October 1791 in Stuttgart, Germany.Correcthttp://de.wikipedia.org/wiki/Christian_Friedrich_Daniel_SchubartC. F. D. SchubartC. F. D. SchubertC. F. Daniel SchubartC.F.D, SchubartC.F.D. SchubartCh. F. D. SchubartCh. F. D. SchubertCh. F. SchubartCh. Fr. SchubartChr. F. D. SchubartChr. F. SchubartChr. Fr. D. SchubartChr. Fr. D. SchubartChr. Fr. Dan. SchubartChr. Fr. Daniel SchubartChrist. Daniel SchubartChristian F. D. SchubartChristian F. Daniel SchubartChristian F.D. SchubartChristian Friederich Daniel SchubartChristian Friedrich Daniel SchubartChristian Friedrich Daniel SchubarthChristian Friedrich Daniel SchubertChristian Friedrich SchubartChristian SchubartChristian SchubertChristoph Friedrich Daniel SchubartD. SchubartDaniel SchubartFriedrich Daniel SchubartH. ŠubartsJ.Ch.D. SchubartSchubartSchubertК. ШубартХ. ШубартХ. Шуберт + +935689Kwamé RyanKwamé Ryan (born 1970, Toronto) is a Canadian conductor of Trinidadian descent.Needs Votehttps://kwameryan.com/https://en.wikipedia.org/wiki/Kwam%C3%A9_RyanOrchestre National Bordeaux Aquitaine + +935690Peter Urban (2)Peter UrbanSound engineer, mainly working for Bayerischer Rundfunk in Munich.Needs VoteP. UrbanPeter UrbanUrbanBayerischer Rundfunk + +935810Bruce AbelBruce AbelAmerican bass / baritone vocalist, he was married to pianist [a7118903]. + +Born 25 July 1936 and died 10 March 2021.Needs Votehttp://en.wikipedia.org/wiki/Bruce_AbelAbelAbel Bruce + +935811Oly PfaffTenor vocalist.Needs VoteOly M. Pfaff + +935812Württembergisches Kammerorchester Württembergisches Kammerorchester HeilbronnThe Württemberg Chamber Orchestra Heilbronn (German: Württembergisches Kammerorchester Heilbronn, WKO) is a renowned German Chamber Orchestra, located in Heilbronn, Baden Württemberg, Germany. + +The orchestra was founded in 1960 by [a=Jörg Faerber] and has performed with artists such as Martha Argerich, Alfred Brendel, Rudolf Buchbinder, Maurice André, James Galway, Hilary Hahn, Gidon Kremer, Sabine Meyer, Anne-Sophie Mutter, Thomas Quasthoff and Tabea Zimmermann. The WKO has recorded more than 500 classical works for the labels Deutsche Grammophon (DGG) and Teldec. The orchestra is regularly heard at major festivals like Salzburg Festival, Vienna Music Summer, Lucerne Festival, Schleswig-Holstein Musik Festival, Schwetzingen Festival and Ludwigsburger Schlossfestspiele. + +Since 2002 [a=Ruben Gazarian] has been artistic director of the orchestra, followed in 2018 by [a=Case Scaglione].Needs Votehttps://www.wko-heilbronn.de/https://en.wikipedia.org/wiki/W%C3%BCrttemberg_Chamber_Orchestra_HeilbronnChamber Orchestra Of WurtembergChamber Orchestra WuerttembergChamber Orchestra WürttembergDas Württembergische KammerorchesterDas Württembergische Kammerorchester HeilbronnEnsemble Instrumental De HeilbronnEnsemble Instrumental de HeilbronnHeilbronn Instrumental EnsembleHeilbronner Chamber OrchestraHeilbronner KammerorchesterInstrumental Ensemble Of HeilbronnKamerorkest Van WürtembergOrch. Da Camera Del WürttembergOrch. Di Camera Del WürttembergOrchestra Da Camera Del WurttembergOrchestra Da Camera Del WürttembergOrchestra Da Camera WuerttembergOrchestra Of The Wurttemburg State OperaOrchestra de Chambre Du WurtembergOrchestre De Chambre Du WurtembergOrchestre De Chambre De WurtembergOrchestre De Chambre De WurttembergOrchestre De Chambre De WürtembergOrchestre De Chambre De WürttembergOrchestre De Chambre Du WurtembergOrchestre De Chambre Du Wurtemberg, HeilbronnOrchestre De Chambre Du WurtenbergOrchestre Du Festival De SalzburgOrchestre de Chambre Du Wurtemberg, HeilbronnOrchestre de Chambre Du WürtembergOrchestre de Chambre de WurtembergOrchestre de Chambre de WurtemburgOrchestre de Chambre de WürttembergOrchestre de Chambre du WurtembergOrquesta De Camara De WürttembergOrquesta De Camara De Württemberg, HeilbronnOrquesta De Camera De WürttembergOrquesta De Cámara De WurtembergOrquesta De Cámara De WutembergOrquesta De Cámara De WürttembergOrquesta de Cámara de WurtembergOrquesta de Cámara de WürtembergOrquestra De Cámara De WürtembergOrquestra De Câmara De WürttembergThe Instrumental Ensemble Of HeilbronnThe Wurttemberg Chamber OrchestraThe Württemberg Chamber OrchestraThe Wüttemberg Chamber OrchestraWarttemberg Chamber OrchestraWuerttemberg Chamber OrchestraWurrtemberg Chamber OrchestraWurtemberg Chamber OrchestraWurtemberg-Heilbronn Chamber OrchestraWurtembergisches Kammerorchester HeilbronnWurtemburg Chamber OrchestraWurttemberg Chamber OrchestraWurttemberg Chamber Orchestra HeilbronWurttemberg Chamber Orchestra HeilbronnWurttemberg Chamber Orchestra, HeilbronnWurttemberg Chamber Orchestra, StuttgartWurttemberger KammerorchesterWurttembergisches Kammerorchester HeilbronnWurttemburg Chamber OrchestraWurttemburg Chamber Orchestra, HeilbronWurtterbergisches Kammerorchester HeilbronnWuttemberg Chamber OrchestraWüritemberg Chamber Orch.Würtemberg Chamber OrchestraWürtemberg Chamber Orchestra, HeilbronnWürtembergisches KammerorchesterWürtembergisches Kammerorchester HeilbronnWürtenberg Chamber OrchestraWürtt. Chamber OrchestraWürtt. KOWürtt. Kammeroch. HeilbronnWürtt. Kammerorch.Württ. KammerorchesterWürtt. Kammerorchester HeilbronnWürttemb. KammerorchesterWürttemb. Kammerorchester HeilbronnWürttember Chamber OrchestraWürttemberg CO HeilbronnWürttemberg Chamber Orch.Württemberg Chamber OrchestraWürttemberg Chamber Orchestra HeilbronnWürttemberg Chamber Orchestra, HeilbronnWürttemberg Chamber Orchestra, HeilbronnWürttemberg Chamber Orchestra, StuttgartWürttemberg ChamberorchestraWürttemberg Chambers Orchestra Of HeilbronnWürttemberg KamerorkestWürttemberg Kammer OrkestWürttemberg Orch.Württemberg OrchestrasWürttemberger Chamber OrchestraWürttemberger Kammer OrchesterWürttembergin KamariorkesteriWürttembergisches Chamber OrchestraWürttembergisches ChamberorchesterWürttembergisches Kammerorchester HeilbronnWürttembergisches Kammerorchester (Heilbronn)Württembergisches Kammerorchester HeilbronWürttembergisches Kammerorchester HeilbronnWürttembergisches Kammerorchester Heilbronn (WKO)Württembergisches Kammerorchester, HeilbronnWürttembergs Kamerorkest, HeilbronnWürttembergshe Kamerorkest - HeilbronnWürttemberški Komorni OrkestarWürttenberg Chamber Orchestra, HeilbronnWürttenbergisches KammerorchesterWüttemberg Chamber OrchestraWüttemberg Kammerorchester HeilbronnWϋrttemberg Chamber Orchestra, HeilbronnWϋrttembergisches KammerorchesterВюртембергский камерный оркестрКамерный Оркестр Вютенбергаウェルテンブルグ室内管弦楽団ウェルテンブルグ室内管弦楽団ハイルブロンウルテンベルク・チェンバー・オーケストラヴェルテンベルグ室内管弦楽団Anton StinglJörg FaerberMartin GallingGünther PassinFabian MenzelSusanne LautenbacherWerner KeltschWilhelm MelcherPeter Buck (2)Norbert SchmittWolfgang LäubinBernhard LäubinHannes LäubinArthur BaloghKurt Heinz StolzeWilly SchnellСергей ДрабкинWolfgang Bauer (3)Paul GrundDietmar KellerGeorg EggerMartha SchusterSiegfried UhlMartin SpangenbergGabriele ZimmermannHedda RothweilerHans-Joachim ErhardArtur RumetschRudolf BreitschmidChristof RoosHans Georg FischerDavid SchultheissMurat ÖnceStefan TrauerClaus ZimmermannChristoph Carl (3)Radboud OomensIrene LachnerAlfred BoesenJohannes HehrmannBrigitte LiebermannBenedikt BüscherZohar LernerBlake Thomson (2)Gabriel FaurKonstanze FelberSergei DrabkinBach-Ensemble Helmuth Rilling + +935813Charlotte LehmannClassical soprano vocalist + +Not to be confused with [a=Lotte Lehmann]Needs Vote + +935814Tobias Philipp Freiherr von GeblerCorrectTobias Ph. Freiherr von GeblerTobias Philipp von Gebler + +935815Rose ScheibleCorrect + +935816Württembergischer KammerchorGerman choir, founded in 1970 by [a4419284], based in Stuttgart.Correcthttp://wuerttembergischer-kammerchor.de/ueber-uns.htmlhttps://www.facebook.com/wuerttembergischerkammerchorChorus, HeilbronnWurttemberg Chamber ChoirWürttemberg Chamber ChoirWürttembergischer Kammerchor StuttgartWürttenbergischer KammerchorUta Scheirle + +935820Michael Schwarz (2)Classical trumpeter.Needs VoteMichael SchwarzDresdner PhilharmonieVirtuosi SaxoniaeKammerorchester Carl Philipp Emanuel Bach + +935828Abbate Giambattista VarescoGirolamo Giovanni Battista VarescoChaplain, musician, poet and librettist, born 1735 in Trient, Italy and died 1805 in Salzburg, Austria.Needs VoteAbbate VarescoAbbé Giambattista VarescoG. VarescoGiambattista VarescoGianbattista VarescoGiovan Battista Varesco,Giovanni Battista VarescoVarescoVerascoДж. ВарескоДжамбаттист Вареско + +935861Donna EllenOperatic soprano, born in Fergus, Ontario, Canada. She's married to [a935862].Needs Votehttp://www.donnaellen.com/ + +935862Ernst DunshirnAustrian chorus master and former Erster Chordirektor of the [a=Wiener Staatsopernchor], born 6 February 1935. He's married to [a935861].CorrectWiener Staatsopernchor + +935863Bruckner Orchestra LinzBruckner Orchester LinzAustrian orchestra, named after the composer [a=Anton Bruckner]. +Chief conductors: +[a1412005] (1967–1975) +[a986222] (1975–1983) +[a983603] (1983–1985) +Manfred Mayrhofer (1985–1992) +[a935865] (1992–2000) +[a361603] (2002–2017) +[a2991070] (2017-present)Needs Votehttp://www.bruckner-orchester.at/https://www.facebook.com/BrucknerOrchesterLinz/https://brucknerorchesterlinz.blogspot.com/https://www.instagram.com/brucknerorchesterlinzhttps://www.youtube.com/channel/UC4Rgfy3Eki1i_nWYvaeQteQhttp://en.wikipedia.org/wiki/Bruckner_Orchestra_LinzBOLBruckner Orchester LinzBruckner-Orchestra LinzBrucknerorchester LinzLinz Bruckner OrchesterLinz Bruckner OrchestraLinz Bruckner Symphony Orch.Linz Philharmonic OrchestraLinzer PhilharmonieMembers Of The Bruckner Orchestra LinzOrchestra Filarmónica De LinzOrquesta Filarmonia De LinzOrquesta Filarmonica De LinzOrquesta Filarmonica de LinzOrquesta Filarmónica De LinzOrquesta Filarmónica de LinzThe Bruckner Orchester LinzThe Bruckner OrchestraDennis Russell DaviesLisa OutredAdolf ScherbaumBertin ChristelbauerErich BuchmannMartin SieghartRoman ZeilingerTheodor GuschlbauerReinhold BarchetKurt WössLaura JungwirtHans GanschHeinz KirchnerMichael BladererThomas Fischer (3)Leonhard SchmidingerHannes PeerTajana NovoselAnneliese FuchslugerMarkus PoschnerYishu JiangFranz SöllnerWerner SteinmetzAlbert LandertingerJoachim BrandlIva Nikolova (2)Franz PatakAlfred Heinrich (2)Manfred ViellechnerLudwig HultschHeribert WatzingerErich PumRobert BuschekSorin ȘtefanYuko KanoHans PizkaThomas KoslowskyJohannes AuerspergGeorg Hübner (2)Christian LandsmannAnton MiesenbergerJudith LängleEvelyn DonnenbergPeter BeerPiotr GladkiClaudia FederspielerIva Hölzl-NikolovaChie Akasaka-SchauppAna PaukHeinz HaunoldJosef HerzerLui ChanRadu CristecuJulia KürnerRieko AikawaThomas SchauppAlois MaresWolfgang Zimmermann (3)Reinhold KronawittleithnerSayaka KiraJohanna BohnenSebastian GoglJana KuhlmannMonika HemetsbergerGunter GlösslWalter Haas (2)Clemens RechbergerMathias FrauendienstGerda FritzscheSabine LugerGerhard PaalGerhard PitschMadeleine DahlbergMarkus EderSusanne LehnerJosé Antonio Cortez CortesFilip CortesVladimir PetrovEva VoggenbergerChristian PöttingerGünter GradischnigAngela KirchnerAlfred SteindlYamato MoritakeChristian PenzAndreas MendelBernhard WalchshoferWalter SchifflerJosef SchachreiterJosef FahrnbergerFabian HomarWalter PauzenbergerHerwig KrainzIldiko DeakStanislav PasierskiJohannes WreggKarl HundstorferDoris LeibovitzGudrun Hirt-HochrainerElisabeth Bauer (2)Johannes PlatzerWerner KarlingerGerhard FluchBernhard ObernhuberUn Mi HanMaria VorraberAnnekatrin FlickPaul WiederinRobert SchneppsChristoph BielefeldVera KralRegina Angerer-BründlingerHermann Schmidt (3)Alvin StapleBenedict MitterbauerJosef FuchslugerSvetlana TeplovaBeate AanderudSiegfried MeikKathrin MoserAnna FirsanovaEva Klambauer + +935864Ingrid HabermannAustrian soprano vocalist, born in LinzNeeds Votehttp://www.ingrid-habermann.at/ + +935865Martin SieghartAustrian conductor and teacher, born 12.03.1951 in Vienna, Austria. He studied piano, organ and violoncello in Vienna. Since 1975 he was solo-cellist of the Wiener Symphoniker until in 1986 he gave his debut as conductor of the Wiener Symphoniker feierte. Thus he ended his career as a musician in the orchestra. + +* Noord Nederlands Orkest +* 1990-1995 chief conductor of the Stuttgarter Kammerorchester +* 1992-2002 director of the Linzer Oper and chief conductor of the Bruckner Orchester Linz +* 2003-2008 chief conductor of the Arnhem Philharmonic Orchestra +* 2005-2008 chief conductor of the chamber orchestra Spirit of Europe +* 2002-2006 artistic director of the opera festival "Mozart in Reinsberg" +* 2013-2015 director of the Festival EntArteOpera in Linz +etc.etc. +Needs Votehttp://www.martin-sieghart.athttps://de.wikipedia.org/wiki/Martin_SieghartM. SieghartMartin SeighardtMartin SieghardMartin SieghardtSieghartマルティン・ジーグハルトマーチン・シーグハルトマーチン・ジーグハルトStuttgarter KammerorchesterWiener SymphonikerBruckner Orchestra LinzEnsemble Eduard Melkus + +935866Harald PfeifferCorrect + +935867Piotr BezcalaOperatic tenor, active in the 1990s.CorrectPiotr BeccalaPiotr Beczala + +935868Franz KalchmairAustrian operatic bass, born 22 December 1939 in Thalheim near Wels, Austria.CorrectFranz Kalchmayr + +935869Oliver RingelhahnOliver Ringelhahn (born 1969 in Tulln an der Donau) is an Austrian opera, operetta, song and oratorio singer (tenor).Needs Vote + +936204Тарас Григорович ШевченкоТарас Григорович Шевченко[b]Taras Hryhorovych Shevchenko[/b] (Ukrainian: Тарас Григорович Шевченко) (March 9 [O.S. February 25] 1814 – March 10 [O.S. February 26] 1861) was a Ukrainian poet, artist and humanist. His literary heritage is regarded to be the foundation of modern Ukrainian literature and, to a large extent, the modern Ukrainian language. Shevchenko also wrote in Russian and left many masterpieces as a painter and an illustrator.Needs Votehttp://uk.wikipedia.org/wiki/Шевченко_Тарас_Григоровичhttp://en.wikipedia.org/wiki/Taras_Shevchenkohttps://adp.library.ucsb.edu/names/102564ChevchenkoSchewtschenkoShevchenkoShevshenkoT ShevchenkoT. ChevtchenkoT. G. ShevchenkoT. H. ShevchenkoT. SchevchenkoT. SchewtschenkoT. ShevchenkoT. SzewczenkoT. ŠevtšenkoT. ŠevčenkoT. ШевченкоT.G. ShevchenkoT.G.SchevchenkoTaras Hryhorovych ShevchenkoTaras SchevchenkoTaras SchewtschenkoTaras SevchenkoTaras SevtshenkoTaras ShevchekoTaras ShevchenkoTaras ShevtchenkoTaras ShevtshenkoTaras SzewczenkoTaras ŠevčenkoŠevčenkoТ. Г. ШевченкоТ. ШевченкаТ. ШевченкоТ.Г. ШевченкоТ.Г.ШевченкоТ.ШевченкоТарас ШевченкоШевченко + +936309Rosemarie RönischGerman operatic soprano, born 9 July 1929 in Allstedt, Germany.CorrectRönischР. РенишР. РьонишРозмари Рьониш + +936310Heinz SuhrGerman actor and voice actor, born 9 May 1904 in Kiel, Germany, died 14 December 1985 in Berlin, GDR.Correct + +936311Renate RennhackGerman actress and voice actress, born 21 March 1936, died 20 November 1999.Correct + +936380Collegium CompostellanumCorrect + +936381Markus Schäfer (5)Classical tenor.Needs Votehttp://www.tenor-markus-schaefer.de/M. SchäferMarcus SchäferMarkus SchäferMarkus SchäfferSchäferSchubert Hoch VierLes Chantres Du Centre De Musique Baroque De VersaillesParthenia Vocal + +936382Elena VinkDutch classical soprano vocalNeeds Votehttp://www.elenavink.com + +936383Nancy de VriesClassical vocalistNeeds Vote + +936804Soile IsokoskiSoile Marja IsokoskiBorn February 14th, 1957 in Posio, Finland. A Finnish Soprano vocalist.Needs Votehttps://en.wikipedia.org/wiki/Soile_IsokoskiIsokoskiIsokoski SoileSolle Isokoski + +936805Adrian GlattCorrect + +936806Per VollestadClassical Bass / Baritone vocalistNeeds Votehttp://www.vollestad.com/PelleVollestad + +936807Monica GroopGerd Monica GroopFinnish Swedish classical mezzo-soprano & alto vocalist, born Gerd Monica Riska, born April 14th, 1958 in Helsinki, Finland. + +She has performed on international opera stages, i.a. Naples, Rome, Madrid, Toulouse, Royal Opera House Covent Garden, Opéra Comique in Paris, Royal Opera House, Los Angeles, Amsterdam, Cologne, New York City Opera. + +She was awarded the Pro Finlandia medal in 2005. + +She is the daughter of [a3932203].Needs Votehttp://www.monicagroop.com/https://sv.wikipedia.org/wiki/Monica_GroopGroopM. GroopMonica RiskaMonika GroopFiguralchor Frankfurt + +937075Peter Svensson (2)Peter HofmannPeter Svensson (2 June 1964 - 29 July 2021) was an Austrian tenor.Needs VoteDie Wiener Sängerknaben + +937076Scottish Chamber ChorusNeeds VoteChorusSCO ChorusScottish Chamber ChoirScottish Chamber Orchestra Chorus + +937077Robert Lloyd (4)British operatic bass / baritone vocalist, born 2 March 1940 in Southend-on-Sea, Essex, England, Great Britain. + +Commander (CBE) - Order of the British Empire. +Needs Votehttps://en.wikipedia.org/wiki/Robert_Lloyd_(bass)LLoydLloydR.LloydRobert LloydРоберт ЛлойдРоберт ЛойдRoyal Opera House, Covent GardenSadler's Wells Opera Company + +937078Ulrike SteinskyAustrian soprano and vocal teacher, born 1960 in Vienna, Austria.Needs Votehttp://www.ulrikesteinsky.com/SteinskySolisten Der Wiener Volksoper + +937141Eric HoeprichA classical clarinetist and basset horn player. He is also conductor of [a=Nachtmusique].Needs Votehttps://www.handelandhaydn.org/about/musicians/orchestra-and-chorus/eric-hoeprich/Erich HoeprichErik HoeprichT. E. HoeprichThe Academy Of Ancient MusicMusica Antiqua KölnLes Talens LyriquesLa StagioneTafelmusik Baroque OrchestraOrchestra Of The 18th CenturySmithsonian Chamber OrchestraThe Handel & Haydn Society Of BostonRicercar AcademyThe London Haydn QuartetLes AdieuxNachtmusiqueAmadeus WindsEnsemble CristoforiTrio StadlerTrio Dell'ArcimboldoTrio d'AmsterdamBiedermeier Quintet + +937142André PostDutch tenor vocalist.Needs Vote + +937144Marc PantusDutch classical bass / baritone vocalistNeeds Vote + +937165Thomas ParshleyCredited as saxophone and flute playerNeeds VoteTom ParshleyTom ParsleyRay Ellis And His OrchestraGordon Jenkins And His Orchestra + +937175Ralph SilvermanAmerican violinist.CorrectThe Cleveland Orchestra + +937390Victor AitayViolinist, born 14 April 1921 in Hungary and died 24 July 2012 in Highland Park, Illinois, United States. + +Member of the Chicago Symphony Orchestra from 1954 until 2003. He served as Assistant Concertmaster 1954-1965, as Associate Concertmaster 1965-1967, as Concertmaster 1967-1986 and as Concertmaster Emeritus 1986-2003. +Needs VoteAjtayChicago Symphony OrchestraFritz Reiner And His OrchestraChicago Symphony String QuartetThe Weicher QuartetThe Weicher Quintet + +937977Nick CeroliAmerican jazz drummer + +Born : 22 December 1939 in Warren, Ohio USA,. +Died : 11 August 1985 in Los Angeles, California, USA.Needs Votehttp://www.savenickcerolison.com/nicks_resumehttps://en.wikipedia.org/wiki/Nick_Cerolihttps://www.imdb.com/name/nm2403796/CaroliCerolCeroliCerotiN. CerolNick CeruliNick CirelloHerb Alpert & The Tijuana BrassArt Pepper QuintetThe Pete Jolly TrioBob Florence Big BandThe Bill Marx TrioDon Menza & His '80s Big BandThe Bob Florence Limited EditionThe Bob Florence GroupThe Pete Christlieb QuartetThe Ross Tompkins TrioRoss Thompkins QuartetPete Christlieb / Warne Marsh Quintet + +938083Lisa BeckleyClassical soprano vocalist.Needs Votehttps://www.feenotes.com/database/artists/beckley-lisa/MagnificatOxford CamerataThe Choir Of The King's ConsortThe SixteenTonus PeregrinusThe King's Consort + +938317Jay WadenpfuhlJay Starnes WadenpfuhlAmerican horn player and composer, born 7 June 1950 in Beaumont, Texas and died 19 June 2010 in Boston, Massachusetts.Needs VoteJay WadenpfulJay WadenphalRay WadenpfuhlBoston Pops OrchestraBoston Symphony OrchestraThe Florida Philharmonic OrchestraNational Symphony OrchestraFort Worth Symphony Orchestra + +938337Jan MaklakiewiczBorn November 24, 1899 in [url=https://pl.wikipedia.org/wiki/Chojnata]Chojnata[/url], died February 8, 1954 in Warszawa. Polish composer, conductor and music critic.Needs VoteJ. A. MaklakiewiczJ. MaklakiewiczJ.MaklakiewiczJ.MaklawiczJan A. MaklakiewiczJan Adam MaklakiewiczJan MakłakiewiczMaklakiewiczMaklakiewicz, JanOrkiestra Symfoniczna Filharmonii Narodowej + +938655Lou FrommLouis FrommAmerican jazz drummerCorrecthttps://www.allmusic.com/artist/lou-fromm-mn0000210513/creditshttps://adp.library.ucsb.edu/names/316589L. FrommLou FrommsLouis FromLouis FrommHarry James And His OrchestraArtie Shaw And His OrchestraTeddy Powell And His OrchestraBarney Kessel's All StarsGeorgie Auld And His OrchestraHarry James & His Music MakersThe Tom Talbert Jazz Orchestra + +938661Punch MillerErnest MillerAmerican jazz trumpeter. +Nickname: "Punch Miller" or "Kid Punch Miller". + +Born: June 10, 1894 in Raceland, Louisiana. +Died: December 02, 1971 in New Orleans, Louisiana. +Needs Votehttps://adp.library.ucsb.edu/names/104817https://www.folkstreams.net/films/til-the-butcher-cut-him-down"Kid Punch" Miller"Punch""Punch" MillerErnest "Kid Punch" MillerErnest "Punch" MillerErnest ''Punch'' MillerErnest 'Kid Punch' MillerErnest 'Punch' MillerKid PunchKid Punch MillerMillerP. MillerProbably Punch MillerPunchPunch MoorKing Oliver & His OrchestraTiny Parham And His MusiciansFrankie Franko & His LouisianiansJimmy Bertrand's Washboard WizardsJunie C. Cobb And His Grains Of CornPunch Miller's BunchGeorge Lewis And His New Orleans All StarsBig Bill And His Chicago FiveJelly Roll Morton's IncomparablesE. C. Cobb And His Corn-EatersPunches Delegates Of PleasurePunch Miller StompersPunch Miller And His OrchestraPunch Miller's New Orleans BandPunch Miller JazzbandPunch And His Boys + +938915Sydney Symphony OrchestraSydney Symphony OrchestraAustralian orchestra founded in 1947 by the [l=Australian Broadcasting Commission], resident at the iconic [l=Sydney Opera House]. +Its first commercial release [r9164286] was recorded in 1950 and 1952. +Not to be confused with the precursor [a14294743], which was founded in 1932-33.Needs Votehttps://www.sydneysymphony.com/https://www.facebook.com/sydneysymphony/https://www.youtube.com/user/SydneySymphonyhttps://www.tandfonline.com/doi/full/10.1080/08145857.2022.2077592https://www.nla.gov.au/collections/guide-selected-collections/symphony-australia-collection#13 Soloists Of Sydney Symphony OrchestraA.B.C. Sydney Symphony OrchestraABC Sydney Symphony OrchestraOrchestre Symphonique De SydneySSOStrings Of The Sydney Symphony OrchestraSydney SymphonSydney SymphonySydney-Symphonie-OrchesterThe A.B.C. Sydney Symphony OrchestraThe Cellists Of The Sydney SymphonyThe Sydney OrchestraThe Sydney SymphonyThe Sydney Symphony OrchestraMaja VerunicaLloyd SwantonNoriko ShimadaJustin WilliamsWilliam MotzingNicola LewisEmma HayesBen Smith (2)Andrew HaveronAdrian WallisAnne-Louise ComerfordJun Yi MaFiona ZieglerRichard LynnRobert RetallickKristy ConrauRosamund PlummerMatthew WilkieRoger BenedictBarry TuckwellMoshe AtzmonDave DonovanKees BoersmaNeil BrawleyRebecca LagosDene OldingPaul Goodchild (2)Louise Johnson (2)Maria DurekSandro CostantinoDavid WickhamGeorges LentzRonald PrussingLeah LynnPhilippa PaigeBen JacksLéone ZieglerAlex HeneryNelson CookeKirsten WilliamsJohn Wood (6)Bela DekanyElizabeth NevilleNicolai MalkoRobert Johnson (16)James EhnesTim NankervisSam Jacobs (2)Paul Curtis (9)Marina MarsdenSophie ColeNicole MastersJennifer BoothAnthony HeinrichsNick ByrneChristopher TingayMarnie SebireStan W KornelShefali PryorMonique IrikScott KinmontCraig WernickeSteven LarsonMarianne BroadfootShuti HuangAlexander NortonLeonid VolovelskyGeoffrey O'ReillyFelicity TsaiEmma ShollLeonard DommettCatherine HewgillAlexandre OgueyGoetz RichterDavid Jackson (10)Diana Doherty (2)Amber Davis (2)Fiona McNamaraDavid EltonSun YiKaori YamagamiAlexandra MitchellLerida DelbridgeYuki SatoRebecca Lloyd-JonesRoss RadfordBaden McCarronPeter Walmsley (2)Kirsty HiltonAnthony FernerAntoine SiguréStuart Johnson (8)Timothy ConstableUmberto ClericiBrian McGuinessBenjamin LiMichael DauthRay Price (6)Jaan PallandiRebecca GillEuan HarveyChristopher PidcockEmma JezekGeraldine EversVictor I.G. GrieveAnna SkalovaTobias BreiderMichael GoldschlagerRosemary CurtinFenella GillAmanda VernerEmily Long (3)David Murray (22)Graham HenningsFrancesco CelataRachel Silver (3)Alexandra OsborneJane HazelwoodHaydn BeckDavid Campbell (36)Sercan DanisMark Robinson (38)Claire HerrickWendy KongSteve RosséSimon CobcroftRonald WoodcockCasey RipponBrielle ClapsonVictoria BihunHarry BennettsCallum HoganJustine MarsdenStanley Brown (5)Carolyn Harris (6)Anna Chomicka-GoreckaJoshua BattyAlice BartschTodd Gibson-CornishChris Harris (46) + +938925Charles FrazierAmerican jazz tenor saxophonist and flutist, born August 17, 1907 in Radford, Virginia, September 3, 2002 in Port Charlotte, Florida. +Frazier worked with King Oliver and his Orchestra, Jimmie Johnson and his Orchestra, Dave Nelson and the King's Men, Dave's Harlem Highlights, Blanche Calloway and her Joy Boys. +Needs VoteC. FrazierCharle FrazierCharlie FrasierCharlie FrazierCharly FrazierFrazierL. C. FrazierL.C. FraserL.C. FrazierL.C.FrazierJimmy Dorsey And His OrchestraKing Oliver & His OrchestraThe Harlem Blues & Jazz BandWillie Bryant And His OrchestraPutney Dandridge And His OrchestraDave Nelson And The King's MenDave's Harlem Highlights + +939027Ed SwanstonEdwin Schubert SwanstonPianist, composer, arranger, organist and vocal coach, born Sept. 20, 1922 in Harlem. He was taught to play piano by his father, a piano tuner. At the age of eight, he gave his first solo performance. When he was 19, he joined a local band, several members of which were subsequently recruited by [a=Louis Armstrong] for his own orchestra. Swanston would be Armstrong's pianist from 1943 to 1945 (other members at the time included Teddy McRae and Emmett Slay). With Armstrong, he appeared in the 1944 movie "Atlantic City." + +Swanston also worked with Gene Krupa, Andy Kirk, Oran "Hot Lips" Page, Lucky Millinder, Art Blakey, Lucky Thompson, Morris Lane, King Pleasure, Erskine Hawkins, the Delta Rhythm Boys, Thelma Carpenter, and Jimmy Rushing. He was part of the backup band for the Marshall Brothers on their second 1951 session. In 1949 he helped set up Vamp Studio (a voice studio), whose clients included Eartha Kitt and Shirley Jones. + +Later in life, Swanston spent 13 years teaching music in the New York City public school system (in the Bronx), as well as offering private lessons. Towards the end of his life, he performed as a soloist, as a member of a jazz trio, and with the Harlem Blues and Jazz Band. + +Edwin Schubert Swanston passed away on June 13, 2003, at age 80.Needs VoteE. SwanstonEd "Schubert" SwanstonEd SwansonEd SwantonEddie SwansonEddie SwanstonEdward SwanstonEdwin Schubert SwanstonEdwin SwanstonErnest SwanstonSchubert SwansonSwansonSwanstonShu SwansonLouis Armstrong And His OrchestraThe Schubert Swanston TrioThe Eddie Swanston Quintette + +939028Norman GreeneBig band trombonistNeeds VoteN. GreeneNorman GreenLouis Armstrong And His OrchestraErskine Hawkins And His OrchestraJimmy Mundy Orchestra + +939029Gene PrinceTrumpet player from the Swing eraNeeds VoteEugene PrinceG. PrinceLouis Armstrong And His OrchestraAndy Kirk And His Clouds Of JoyJohn Williams' Memphis Stompers + +939030Frank GalbraithJazz trumpeter and trombonist, bornSeptember 2, 1913 in Roberson County, North Carolina. +Galbraith grew up in Washington, North Carolina. Moved to New York c. 1934.Needs Votehttps://adp.library.ucsb.edu/names/316832F. GalbraithF. GalbreathFrank GalbreathFrank GalbrethGalbraithLouis Armstrong And His OrchestraLucky Millinder And His OrchestraTab Smith OrchestraJimmy Mundy OrchestraHot Lips Johnson And His Orchestra + +939034Ben KynardAmerican jazz saxophonist from Kansas City (28 February 1920 – 5 July 2012). +He co-wrote the jazz standard "Red Top."Needs Votehttp://www.kynard.com/wp/?page_id=10https://adp.library.ucsb.edu/names/205568B. KynandB. KynardBen KinardBen KyardBenjamin KynardK. KynardKen KynardKenyardKenynardKeynardKjnardKynardynardLionel Hampton And His OrchestraHarlan Leonard And His RocketsArt Smith's K.C. Jazz BandThe Carroll Jenkins Orchestra + +939545Hammerstein-KernSongwriting collaboration whose great success included their biggest hit, 1927's "Show Boat", which is often revived and is still considered one of the masterpieces of the American musical theatre.Needs Vote--Hammerstein, Kern---O. Hammerstein II - J. Kern-Ammerstein - KernD. Hammerstein II/J. KernD. Hammerstein/ J. KernGerome Kern - Oscar HamersteinHamerstein II - KernHamerstein KernHammersstein II, KernHammersteim II/KernHammersteinHammerstein & KernHammerstein - KarenHammerstein - KernHammerstein / H. KernHammerstein / KernHammerstein 11-KernHammerstein 2 - KernHammerstein 2-KernHammerstein 2/KernHammerstein 2nd & KernHammerstein 2nd - KernHammerstein 2nd, KernHammerstein 2nd-KernHammerstein 2nd. & KernHammerstein 2nd. - Jerome KernHammerstein And KernHammerstein I/KernHammerstein IIHammerstein II & J. KernHammerstein II & KernHammerstein II - J.KernHammerstein II - KernHammerstein II -KernHammerstein II / KernHammerstein II KernHammerstein II y KernHammerstein II – KernHammerstein II, KernHammerstein II-KernHammerstein II/KernHammerstein IInd-KernHammerstein II―KernHammerstein Oscar II & Kern JeromeHammerstein Oscar II / JeromeKernHammerstein Y KernHammerstein | KernHammerstein – KernHammerstein, 2nd - KernHammerstein, 2nd KernHammerstein, 2nd-KernHammerstein, II-KernHammerstein, KernHammerstein,KernHammerstein-, KernHammerstein-2nd - KernHammerstein-II. KernHammerstein-Kern IIHammerstein/ KernHammerstein/KernHammerstein:KernHammerstein; KernHammersteinII-KernHammersteinII/KernHammerstein–KernHammersten II - KernHammerstew/KernHammertein-KernHammestein II-KernHannerstein/KernHarmmerstein II - KernHerome Kern/Oscar Hammerstein IIII - KernJ Kern, O HammersteinJ Kern/O HammersteinJ, Kern - O, HammersteinJ, Kern - O. HammersteinJ- Kern - O. Hammrstein IIJ. KernJ. Kern & O. HammersteinJ. Kern & O. Hammerstein IIJ. Kern & O.HammersteinJ. Kern - HammersteinJ. Kern - O. HamJ. Kern - O. HammersteinJ. Kern - O. Hammerstein 2ndJ. Kern - O. Hammerstein IIJ. Kern - O. Hammerstein, IIJ. Kern - O. Hmmerstein IIJ. Kern - Oscar HammersteinJ. Kern / HammersteinJ. Kern / O. HammersteinJ. Kern / O. Hammerstein IIJ. Kern / O. Hammerstein ⅡJ. Kern / Oscar Hammerstein IIJ. Kern And O. HammersteinJ. Kern And O. Hammerstein IIJ. Kern Et O. Hammer SteinJ. Kern O. HammersteinJ. Kern O. Hammerstein IIJ. Kern and O. HammersteinJ. Kern, - O. Hammerstein IIJ. Kern, HammersteinJ. Kern, Hammerstein IIJ. Kern, O. HammersteinJ. Kern, O. Hammerstein 2J. Kern, O. Hammerstein IIJ. Kern, O. Hammerstein, IIJ. Kern- O. Hammerstein 2ndJ. Kern-HammersteinJ. Kern-Hammerstein 2J. Kern-Hammerstein IIJ. Kern-O . Hammerstein IIJ. Kern-O Hammerstein IIJ. Kern-O. HamesteinJ. Kern-O. HammersteinJ. Kern-O. Hammerstein 2ndJ. Kern-O. Hammerstein IIJ. Kern-O. Hammerstein IInd.J. Kern-O. Hammerstein, IIJ. Kern-O.HammersteinJ. Kern-Oscar Hammerstein IIJ. Kern/ O. Hammerstein IIJ. Kern/HammersteinJ. Kern/O. HammersteinJ. Kern/O. Hammerstein IIJ. Kern/O. Hammerstein IIIJ. Kern/O. Hammerstein, IIJ. Kern/O. Hammstein IIJ. Kern/Oscar Hammerstein IIJ. Kerns-O. HammersteinJ. Kern‒O. HammersteinJ. Keru, O. HammersteinJ. Korn, O. Hammerstein 2ndJ.KernJ.Kern & O. HammersteinJ.Kern - O.HammersteinJ.Kern / O. HammersteinJ.Kern / O. Hammerstein IIJ.Kern / O.Hammerstein IIJ.Kern-O. Hammerstein IIJ.Kern-O.HammersteinJ.Kern-O.Hammerstein IIJ.Kern/O.HammersteinJ.Kern/O.Hammerstein II.J.Kern/O.Hammerstein, IIJ.Kern/Oscar Hammerstein IIJarome Cahn-Oscar Hammerstein Jr.Jermoe Kern, Oscar Hammerstein IIJerome And Kern Hammerstein IIJerome David Kern-Oscar Greeley Clendenning Hammerstein IIJerome David Kern-Oscar Greely Clendenning Hammerstein IIIJerome David Kern-Oscar Hammerstein IIJerome Keen & Oscar Hammerstein IIJerome Ken & Oscar HammersteinJerome Kenr-Oscar Hammerstein IIJerome Ker & Oscar Hammerstein IIJerome KernJerome Kern & Hammerstein IIJerome Kern & Oscar HamersteinJerome Kern & Oscar Hammerstain IIJerome Kern & Oscar HammersteinJerome Kern & Oscar Hammerstein 2ndJerome Kern & Oscar Hammerstein IIJerome Kern & Oscar Hammerstein II)Jerome Kern & Oscar Hammerstein IIIJerome Kern &Oscar HammersteinJerome Kern - HammersteinJerome Kern - Hammerstein IIJerome Kern - O. Hammerstein 2ndJerome Kern - O. Hammerstein IIJerome Kern - Oscar Greeley Glendenning Hammerstein IIJerome Kern - Oscar Hammersmith IIJerome Kern - Oscar HammersteinJerome Kern - Oscar Hammerstein 2ndJerome Kern - Oscar Hammerstein I IJerome Kern - Oscar Hammerstein IIJerome Kern - Oscar Hammerstein IIIJerome Kern - Oscar Hammerstein, IIJerome Kern - Oscar Hammersten 2ndJerome Kern - Oscar Hammerstien IIJerome Kern - Oscar Jammerstein IIJerome Kern -Oacar HemmaersteinJerome Kern -Oscar Hammerstein IIJerome Kern / HammersteinJerome Kern / Oscar HammersteinJerome Kern / Oscar Hammerstein 2ndJerome Kern / Oscar Hammerstein IIJerome Kern / Oscar Hammerstein II.Jerome Kern And Oscar HammersteinJerome Kern And Oscar Hammerstein IIJerome Kern I Oscar Hammerstein IIJerome Kern Och Osccar HammersteinJerome Kern Oscar Hammerstein 2ndJerome Kern Oscar Hammerstein IIJerome Kern Y Oscar Hammerstein IIJerome Kern and Oscar HammersteinJerome Kern and Oscar Hammerstein IIJerome Kern y Oscar HammersteinJerome Kern, HammersteinJerome Kern, O. HammersteinJerome Kern, O. Hammerstein 2ndJerome Kern, O. Hammerstein IIJerome Kern, Oscar Hamemrstein IIJerome Kern, Oscar HammersteinJerome Kern, Oscar Hammerstein 2ndJerome Kern, Oscar Hammerstein IIJerome Kern, Oscar Hammerstein IIIJerome Kern, Oscar Hammerstein, IIJerome Kern, Oscar II HammersteinJerome Kern, Otto HarbachJerome Kern,Oscar HammersteinJerome Kern- Oscar Hammerstein IIJerome Kern-HammersteinJerome Kern-Hammerstein IIJerome Kern-O. Hammerstein 2ndJerome Kern-Oscar Greeley Clendenning Hammerstein IIJerome Kern-Oscar HammersteinJerome Kern-Oscar Hammerstein 2ndJerome Kern-Oscar Hammerstein IIJerome Kern-Oscar Hammerstein II.Jerome Kern-Oscar Hammerstein IIIJerome Kern-Oscar Hammerstein, IIJerome Kern-Oscar HammersteinIIJerome Kern-Oscar II HammersteinJerome Kern-Oscat Hammerstein IIJerome Kern. Oscar Hammerstein IIJerome Kern/ Oscar Hammerstein IIJerome Kern/Hammerstein IIJerome Kern/O. Hammerstein IIJerome Kern/O.HamersteinJerome Kern/Oscar Hammersein IIJerome Kern/Oscar HammersteinJerome Kern/Oscar Hammerstein IJerome Kern/Oscar Hammerstein IIJerome Kern/Oscar Hammerstein IIIJerome Kern/Oscar Hammerstein, IIJerome Kern/Oscar HammersteinIIJerome Kern/Oscar Hammmerstein IIJerome Kern–Oscar Hammerstein IIJerome KernーOscar HammersteinJeromem Kern - Oscar Hammerstein IIJeronme Kern-Oscar Hammerstein IIJoreome Kern & Oscar HammersteinJérome Kern-Oscar HammersteinJérôme Kern - O. Hammerstein IIK. & O. HammersteinKearn/HammersteinKearns-HammersteinKer, HammersteinKerfn - Hammerstein IIKernKern & HammersteinKern & Hammerstein 2ndKern & Hammerstein IIKern & O. Hammerstein IIKern - HammersteinKern - Hammerstein 2Kern - Hammerstein 2ndKern - Hammerstein IIKern - Hammerstein IIIKern - Hammerstein iiKern - Hammerstein ⅡKern - Hammerstien IIKern - HammerstinKern - O. HammersteinKern -HammersteinKern -Hammerstein IIKern / HammersteinKern / Hammerstein 2Kern / Hammerstein 2ndKern / Hammerstein IIKern / Hammerstein IIIKern / HmmersteinKern : Hammerstein IIKern And HammersteinKern And Hammerstein IIKern HamersteinKern HammersteinKern Hammerstein IIKern and HammersteinKern – HammersteinKern – Hammerstein IIKern, Hamerstein IIKern, HammersteinKern, Hammerstein 2ndKern, Hammerstein IIKern, Hammerstein IIIKern, Hammerstein IlKern, Hammerstein ⅡKern, Hummerstein IIKern- HammersteinKern-Hammerdstein IIKern-HammersmithKern-HammersteinKern-Hammerstein 11Kern-Hammerstein 2ndKern-Hammerstein IIKern-Hammerstein IIIKern-Hammerstein Jr.Kern-Hammerstein, 2ndKern-Hammerstein, IIKern-Hammerstein, Jr.Kern-Hammerstein,2ndKern-Hammstein IIKern/ HammersteinKern/HammersteinKern/Hammerstein 2ndKern/Hammerstein IIKern/Hammerstein II)Kern/Hammerstein IIIKern/HammertsteinKern/Hemmerstein 2ndKern/HorbackKern; HammersetinKern; HammersteinKern; Hammerstein IIKern;HammersteinKernHammerstein IIKerns-HammersteinKerns-Hammerstein IIKerns/HammersteinKern–HammersteinKern–Hammerstein IIKern∕HammersteinKerr/HammersteinMonkO Hammerstein II - J. KernO Hammerstein II-J. KernO. Hamerstein II/J. KernO. Hammersmith/J. KernO. HammersteinO. Hammerstein & J. KernO. Hammerstein + J. KernO. Hammerstein - J. KernO. Hammerstein - Jerome KernO. Hammerstein - Jérome KernO. Hammerstein / J. KernO. Hammerstein 11 J. KemO. Hammerstein 2nd - J. KernO. Hammerstein H.J. KernO. Hammerstein I I -J . KernO. Hammerstein IIO. Hammerstein II & J. KernO. Hammerstein II , J. KernO. Hammerstein II - J. DernO. Hammerstein II - J. KernO. Hammerstein II - J. Kern*O. Hammerstein II - KernO. Hammerstein II -J . KernO. Hammerstein II / J. KernO. Hammerstein II, J. KernO. Hammerstein II, Jerom KernO. Hammerstein II- J. KernO. Hammerstein II--J. KernO. Hammerstein II-J. KernO. Hammerstein II-J.KernO. Hammerstein II-Jerome KernO. Hammerstein II./J. KernO. Hammerstein II/J. KernO. Hammerstein III / J. KernO. Hammerstein III-J. KernO. Hammerstein Jr.-J. KernO. Hammerstein, 2nd - J. KernO. Hammerstein, 2nd-J. KernO. Hammerstein, II - J. KernO. Hammerstein, II-J. KernO. Hammerstein, II. - J. KernO. Hammerstein, J. KernO. Hammerstein, Jr.-J. KernO. Hammerstein-H.J. KernO. Hammerstein-J. KernO. Hammerstein-J. KernsO. Hammerstein-J.KernO. Hammerstein/J. KernO. Hammerstein/Jerome KernO. Hammerstein/KernO. Hammerstein\J. KernO. HammersteinⅡ/J. KernO. Hammerstern - Jérôme KernO. Hammerstien II - J. KernO. Hammmerstein II / J. KernO. Hammsterein - J. KernO.HammersteinO.Hammerstein II - J. KernO.Hammerstein II - J.KernO.Hammerstein II, J.KernO.Hammerstein II-J.KernO.Hammerstein, J. KernOpen Kern-Hammerstein IIOscar Hamerstein II - Jerome KernOscar Hamerstein/Jerome KernOscar Hammerstein & Jerome KernOscar Hammerstein - Jerome KernOscar Hammerstein . Jerome KernOscar Hammerstein / Jerome KernOscar Hammerstein / Jerôme KernOscar Hammerstein 2nd & Jerome KernOscar Hammerstein 2nd - Jerome KernOscar Hammerstein 2nd-Jerome KernOscar Hammerstein 2nd. - Jerome KernOscar Hammerstein And Jerome KernOscar Hammerstein II & Jerome KernOscar Hammerstein II - Jerome KernOscar Hammerstein II - KernOscar Hammerstein II / Jerome KernOscar Hammerstein II And Jerome KernOscar Hammerstein II and Jerome KernOscar Hammerstein II y Jerome KernOscar Hammerstein II, Jerome KernOscar Hammerstein II, JeromeKernOscar Hammerstein II,Jerome KernOscar Hammerstein II- Jerome KernOscar Hammerstein II- JeromeKernOscar Hammerstein II-J. KernOscar Hammerstein II-Jerome KernOscar Hammerstein II-Jerone KernOscar Hammerstein II. Jerome KernOscar Hammerstein II/Jerome KenOscar Hammerstein II/Jerome KernOscar Hammerstein III, Jerome KernOscar Hammerstein Ii; Jerome KernOscar Hammerstein Ö, Jerome KernOscar Hammerstein, 2nd-Jerome KernOscar Hammerstein, II - Jerome KernOscar Hammerstein, II -Jerome KernOscar Hammerstein, II, Jerome KernOscar Hammerstein, II-Jerome KernOscar Hammerstein, II: Jerome KernOscar Hammerstein, Jerome KernOscar Hammerstein,II-Jerome KernOscar Hammerstein-2nd Jerome KernOscar Hammerstein-Jerome KermOscar Hammerstein-Jerome KernOscar Hammerstein-Jérôme KernOscar Hammerstein-KernOscar Hammerstein/Jerome KernOscar Hammersten II - Jerome KernOscor Hammerstein & Gerome KernOscr Hammerstein II - Jerome KernR. Hammerstein II - KernR. Hammerstein II-KernS.Kern-O.HammersteinYerome Kern/Oscar Hammerstienkern/Hammerstein IIДж. Керн - О. ХаммерстайнДж. Керн — О. ХаммерстайнMikel (7)Jerome KernOscar Hammerstein II + +939761Nick CaiazzaNicholas CaiazzaAmerican jazz tenor saxophonist and clarinetist +born March 20, 1914 in New Castle, Pennsylvania. +died 1981 + +He played with [a=Joe Haymes], [a=Woody Herman], [a=Muggsy Spanier], [a=Louis Armstrong], [a=Hot Lips Page], [a=Jack Teagarden] and many others. +Needs Votehttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/caiazza-nick-actually-nicholashttps://www.allmusic.com/artist/nick-caiazza-mn0001238508/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/306580/Caiazza_NickCaiazzaN. CaiassaN. CaiazzaN. CalassaNicholas CaiazzaNicholas CaizzaNick CaiappaNick CaizzaNick CalazzaMuggsy Spanier's Ragtime BandWoody Herman And His OrchestraCootie Williams And His OrchestraMuggsy Spanier And His RagtimersBobby Hackett And His OrchestraMuggsy Spanier And His OrchestraBilly Butterfield And The Essex FivePeanuts Hucko And His OrchestraHank D'Amico SextetHank D'Amico OrchestraThe Band That Plays The BluesLouis Armstrong And The V-Disc All-Stars + +939870Robert Crowder (2)Robert Henry CrowderJazz tenor saxophonist, born 1912. +In the early 1930s worked in Milwaukee; played and recorded with [a=Earl Hines] 1938-1942. He settled in Chicago and played regularly during the 1960s.Needs VoteB. CrowderBob CrowderCrawfordCroderCrowdarCrowdedCrowderR. CrowderRob CrowderRobert "Little Sax" CrowderRobert "Sax" CrowderRobert 'Sax' CrowderLittle Sax CrowderEarl Hines And His Orchestra + +939899Fritz V KrakowskiViolinist.Needs VoteFritz KrakowskiOrchestra Of St. Luke's + +939900Anca NicolauViolinist.Needs Votehttps://www.smithsonianchambermusic.org/about/artists/anca-nicolauOnca NicholauOnca NicolauOrchestra Of St. Luke'sSmithsonian Chamber OrchestraThe Loma Mar QuartetSteve Kuhn With StringsBrewer Chamber Orchestra + +940013Buddy TerryAmerican saxophonist (tenor and alto) player. + +Born: January 30, 1941 in Newark, New Jersey. +Died: November 29, 2019Needs Votehttp://newarkjazzelders.com/newarkjazzelders-buddyterry.htmlEdlin "Buddy" TerryEdlin TerryTerryArt Blakey & The Jazz Messengers + +940093Werner KeltschWerner Keltsch (20 Februay 1934 - 2 December 2002) was a German classical violinist and professor of violin at the [l316267].Needs VoteJoh. Rainer KoelbleKeltschBachcollegium StuttgartWürttembergisches KammerorchesterHeidelberger Kammerorchester + +940128Eliahu InbalIsraeli conductor, born February 16, 1936, in Jerusalem.Needs Votehttps://en.wikipedia.org/wiki/Eliahu_Inbalhttps://www.hr-sinfonieorchester.de/orchester/historie/ehemalige-chefdirigenten/chefdirigent-19741990-eliahu-inbal,historie-dirigenten-eliahu-inbal-100.htmlhttps://aicf.org/artist/eliahu-inbal/E. InbalEliahù InbalElianu InbalElihau InbalEluahu InbalInbalЭлиаху ИнбалЭлияху Инбалインバルエリアフ・インバルエリアフ・インバルThe Czech Philharmonic Orchestra + +940575Mechiel van den BrinkClassical oboist.Needs VoteEnsemble ModernCamerata Academica Salzburg + +940576Susann WidmerClassical violinist.CorrectSusana WidmerSusanna WidmerSusannah WidmerLondon Classical PlayersLes Musiciens Du Louvre + +940578Patricia KindelBassoonist.Needs Votehttps://www.linkedin.com/in/patricia-kindel-31aa0026/https://www.imdb.com/name/nm8198105/Patricia HeimerlPatricia Heimerl KindelPatricia Kindel-HeimerlPatricia KindlePatricia S. KindelPatricia S. Kindel-HeimerlPatricia Kindel-HeimerlPatricia HeimerlLos Angeles Philharmonic Orchestra + +940597Dorle SommerClassical viola player.Needs VoteDorle SummerConcentus Musicus WienThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraBalthasar-Neumann-EnsembleSolisten Des Gymnasiums Am Markt, Bünde + +940943Neil BrawleyAustralian double bass playerNeeds VoteSydney Symphony Orchestra + +940947Rebecca LagosRebecca LagosAustralian PercussionistNeeds VoteGavin Bryars EnsembleSydney Symphony OrchestraSynergy Percussion + +940949Dene OldingAustralian violinist, born 11 October 1956, married to violist [a=Irina Morozova]Needs Votehttp://en.wikipedia.org/wiki/Dene_OldingSydney Symphony OrchestraAustralia EnsembleGoldner String Quartet + +940959Paul Goodchild (2)Australian trumpet playerNeeds Votehttps://en.wikipedia.org/wiki/Paul_GoodchildSydney Symphony Orchestra + +940960Louise Johnson (2)Australian harpistNeeds VoteLou JohnsonSydney Symphony OrchestraRadio New Zealand Studio OrchestraJulian Lee OrchestraJudy Bailey Orchestra + +940969Maria DurekAustralian violinistNeeds VoteSydney Symphony Orchestra + +941001Sandro CostantinoClassical violistNeeds Votehttps://www.sydneysymphony.com/about-us/meet-the-musicians/strings/sandro-costantinoSandra CostantionSandro ConstantinoNew Zealand Symphony OrchestraSydney Symphony Orchestra + +941004David WickhamClassical cellistNeeds VoteSydney Symphony Orchestra + +941008Georges LentzContemporary composer and sound artist, born in Luxembourg in 1965. Since 1990, he has been living in Sydney, Australia.Needs Votehttp://www.georgeslentz.com/http://en.wikipedia.org/wiki/Georges_LentzGeorge LentzSydney Symphony Orchestra + +941010Ronald PrussingAustralian trombonistNeeds VoteRon PrussingSydney Symphony Orchestra + +941014Leah LynnAustralian cellist.Needs VoteSydney Symphony Orchestra + +941024Ben HamesBenedict Miles HamesClassical violist, born 1976 in England.Needs VoteBenjamin HamesSymphonie-Orchester Des Bayerischen Rundfunks + +941027Philippa PaigeAustralian violinistNeeds VoteSydney Symphony Orchestra + +941032Ben JacksAustralian hornist, born in 1975 in Hobart, Tasmania.Needs VoteSydney Symphony OrchestraThe 20/20 Orchestra + +941033Léone ZieglerAustralian classical violinistNeeds VoteLeone ZieglerLeoni ZieglerLeonie ZieglerSydney Symphony Orchestra + +941045Alex HeneryBritish double bassist, born in 1966, based in Australia.Needs VoteAlexander HenerySydney Symphony Orchestra + +941168Wolfgang WernerEngineer, producer and liner notes author, mainly for classical musicNeeds VoteWerner Wolfgang + +941280Jimmy McHugh & Dorothy FieldsProlific songwriting duo.Needs Votehttps://en.wikipedia.org/wiki/Jimmy_McHughhttps://en.wikipedia.org/wiki/Dorothy_FieldsB. Fielos/J. McHughC. D. Field - J. Mc HughD Fields - J McHughD Fields / J McHughD Fields, J McHughD Fields-J McHughD Fields-J. McHughD, Fields, J. McHughD, Fields-J. McHughD-Fields - J. McHughD. FIelds - J. McHughD. Feilds / J. McHughD. Field / J. McHughD. Fieldo - J.Mc. HughD. FieldsD. Fields & J. Mc HughD. Fields & J. McHughD. Fields & Mc HughD. Fields & McHughD. Fields + J. McHughD. Fields - J. Mc HughD. Fields - J. Mc. HughD. Fields - J. McFieldsD. Fields - J. McHughD. Fields - J. McHugh.D. Fields - J. MchughD. Fields - Jimmy Mc. HughD. Fields - Jimmy McHughD. Fields - Mc HughD. Fields - McHughD. Fields -J. McHughD. Fields / J. Mc HughD. Fields / J. McHughD. Fields / J. McHughyD. Fields / J. MchughD. Fields / McHughD. Fields E J. McHughD. Fields y J. McHughD. Fields – J. McHughD. Fields, I. McHughD. Fields, J. Mc HughD. Fields, J. McHughD. Fields, J. MchughD. Fields- J. Mc HughsD. Fields- J. McHughD. Fields-J. De HughD. Fields-J. Mc HughD. Fields-J. McChueD. Fields-J. McHughD. Fields-J.-McHughD. Fields-L. McHughD. Fields-McHughD. Fields/ J. McHughD. Fields/J. Mc HughD. Fields/J. McHughD. Fields/J. MchughD. Fields/J. MehughD. Fields/Jimmy Mc HughD. Fields/McHughD. Fields/S. McHughD. Fields—J. McHughD. Fields—McHughD. Flelds, J. McHughD. Gields - J. McHughD.Fields - J.McHughD.Fields J.McHughD.Fields, J. Mc HughD.Fields, J.McHughD.Fields-J. McHughD.Fields-J.McHughD.Fields/J. McHughD.Fields/J.McHughD.Fioelds - J.McHughD.McHugh/J. FieldsDavid McHugh & Dorothy FieldsDorothy Field - Jimmy McHughDorothy Fields & James McHughDorothy Fields & Jimmy McHughDorothy Fields & Jimmy MchughDorothy Fields + Jimmy McHughDorothy Fields - J. McHughDorothy Fields - Jimmi McHughDorothy Fields - Jimmy Mc HughDorothy Fields - Jimmy McHughDorothy Fields - McHughDorothy Fields / James McHughDorothy Fields / Jimmy MachughDorothy Fields / Jimmy McHughDorothy Fields / Jummy MachughDorothy Fields / Jummy McHughDorothy Fields And Jimmy McHughDorothy Fields And Jimmy MchughDorothy Fields Jimmy Mc HughDorothy Fields Jimmy McHughDorothy Fields and Jimmy Mc HughDorothy Fields and Jimmy McHughDorothy Fields – Jimmy McHughDorothy Fields, James McHughDorothy Fields, Jimmy Mac HughDorothy Fields, Jimmy Mc HughDorothy Fields, Jimmy Mc HughsDorothy Fields, Jimmy McHueDorothy Fields, Jimmy McHughDorothy Fields, Jimmy MchughDorothy Fields, Mc HughDorothy Fields-Jimmie McHughDorothy Fields-Jimmy McHughDorothy Fields/J. McHughDorothy Fields/Jimmy Mc HughDorothy Fields/Jimmy McHughDorothy Fields–Jimmy McHughDorothyFields, Jimmie McHughDoroty Fields - Jimmy McHughDorthy Fields & Jimmy McHughF. McHughFiedls/McHughField - HughField - Mc HughField - McHughField / McHughField Mc HughField McHughField, McHughField-Mc HughField-McHughField/McHughFieldes, McHughFieldo-McHughFieldsFields & Mc HughFields & McCueFields & McHughFields + McHughFields , McHughFields - McHughFields - HughFields - M. HughFields - MC HughFields - Mac HughFields - MacHughFields - Mc HughFields - Mc. HughFields - McGughFields - McHugehFields - McHughFields - MchughFields -McHughFields / Mc HughFields / Mc. HughFields / McCarthyFields / McHughFields / MchughFields And McHughFields Et Mac HughFields Mc HughFields McHughFields MehughFields and McHughFields y McHughFields – Mc. HughFields – McHughFields — McHughFields(McHughFields, M. HughFields, MacHughFields, Mc HughFields, Mc. HughFields, McHughFields, McHughsFields,McHughFields- Mc HughFields- McHughFields-Mac HughFields-Mac-HughFields-MattughFields-Mc HughFields-Mc. HughFields-McHighFields-McHughFields-MchughFields-NchugsFields. McHughFields/ McHughFields/Jimmy McHughFields/MacHughFields/MattughFields/Mc HughFields/McHUghFields/McHoughFields/McHugesFields/McHughFields/McHughsFields/MchughFields; McHughFieldsMcHughFields– McHughFields–McHughFields—Mc HughFilds Mc HughFileds / McHughFileds-Mc. HughFileds-McHughFilld - McHughHughHugh - FieldsHugh / FieldsHugh, FieldsHugh-FieldHugh-FieldsHugh/FieldsHughesI McHugh/FieldsJ Hugh, D FieldsJ Mc Hugh - D. FieldsJ McHugh - D. FieldsJ McHugh/D FieldsJ, McHugh & D. FieldsJ, McHugh-D. FieldsJ. Fields, J. Mc. HughJ. Hc. Hugh/D. FieldsJ. HcHugh - D. FieldsJ. M. McHugh / D. FieldsJ. Mac Hugh Et D. FieldsJ. Mac Hugh, D. FieldsJ. Mac-Hugh / D. FieldsJ. MacHugh / D. FieldsJ. Machugh/FieldsJ. Mc Hugh & D. FieldsJ. Mc Hugh - D. FieldsJ. Mc Hugh / D. FieldsJ. Mc Hugh, D. FieldsJ. Mc Hugh-fieldJ. Mc Hugh/ D. FieldsJ. Mc Hugh/D. FieldsJ. Mc. Huge/D. FieldsJ. Mc. Hugh - D. FieldsJ. Mc. Hugh / D . FieldsJ. Mc. Hugh Y D. FieldsJ. Mc. Hugh/D. FieldsJ. Mc.Hugh, D. FieldsJ. Mc.Hugh/D. FieldsJ. McHuge-D. FieldsJ. McHughJ. McHugh & D.J. McHugh & D. FieldsJ. McHugh &/ D. FieldsJ. McHugh , D. FieldsJ. McHugh - D. FieldsJ. McHugh - D.FieldsJ. McHugh - Dorothy FieldsJ. McHugh - FieldsJ. McHugh -D. FieldsJ. McHugh . D. FieldsJ. McHugh / D. FieldsJ. McHugh / D. McFieldsJ. McHugh / L. FieldsJ. McHugh D. FieldJ. McHugh D. FieldsJ. McHugh et D. FieldsJ. McHugh – D. FieldJ. McHugh, D. FieldJ. McHugh, D. FieldsJ. McHugh, D. Fields,J. McHugh, D. FiledsJ. McHugh, D.FieldsJ. McHugh, Dorothy FieldsJ. McHugh, FieldsJ. McHugh- D. FieldsJ. McHugh-D. FieldJ. McHugh-D. FieldsJ. McHugh-Dorothy FieldsJ. McHugh-FieldsJ. McHugh-L. FieldsJ. McHugh-O. FieldsJ. McHugh/ D. FieldsJ. McHugh/D. FeidlsJ. McHugh/D. FieldJ. McHugh/D. FieldsJ. McHugh/D. FielsJ. McHugh/D. fieldsJ. McHugh/D.FieldsJ. McHugh/Dorothy FieldsJ. McHugh/FieldsJ. McHugh/L. FieldsJ. Mchugh / D. FieldsJ. Mchugh-D. FieldsJ. Mchugh/D. FieldsJ. Mehugh / D. FieldsJ. Mehugh/D. FieldsJ.MC Hugh / P.FieldsJ.Mac-HughJ.Mc Hugh - Dorothy FieldsJ.Mc Hugh / D. FieldsJ.Mc Hugh-D. FieldsJ.Mc Hugh/D.FieldsJ.Mc. Hugh - D. FleldsJ.McHugh - D.FieldsJ.McHugh / L.FieldsJ.McHugh, D.FieldsJ.McHugh,D.FieldsJ.McHugh-D. FieldsJ.McHugh-D.FieldsJ.McHugh/D.FieldsJames Francis "Jimmy" McHugh-Dorothy FieldsJames Francis McHugh & Dorothy FieldsJames Francis/Jimmy McHugh/Dorothy FiledsJames McHugh - Dorothy FieldsJames McHugh- Dorothy FieldsJames McHugh-Dorothy FieldsJames McHugh/Dorothy FieldsJim Fields-McHughJimm McHugh, Dorothy FieldsJimmie McHugh - Dorothy FieldsJimmie McHugh-Dorothy FieldsJimmy Hugh / Dorothy FieldsJimmy Hughes-Dorothy FieldsJimmy MC Hugh/Dorothy FieldsJimmy Mac Hugh Et D. FieldsJimmy Mac Hugh, Dorothy FieldsJimmy MacHugh - Dorothy FieldsJimmy Mack Hugh - Dorothy FieldsJimmy Mc Hugh & Dorothy FieldsJimmy Mc Hugh - Dorothy FieldsJimmy Mc Hugh / Dorothy FieldsJimmy Mc Hugh-Dorothy FieldsJimmy McCue - Dorothy FieldsJimmy McHough/Dorothy FieldsJimmy McHug - Dorothy FieldsJimmy McHughJimmy McHugh - D. FieldsJimmy McHugh - Dorothy FieldJimmy McHugh - Dorothy FieldsJimmy McHugh / Dorothy FieldJimmy McHugh / Dorothy FieldsJimmy McHugh ; Dorothy FieldsJimmy McHugh And Dorothy FieldsJimmy McHugh Et D. FieldsJimmy McHugh and Dorothy FieldsJimmy McHugh – Dorothy FieldsJimmy McHugh, Dorothy FieldsJimmy McHugh, Fields DorothyJimmy McHugh, Wilfred FieldsJimmy McHugh,Dorothy FieldsJimmy McHugh-D. FieldsJimmy McHugh-Dorothy FieldJimmy McHugh-Dorothy FieldsJimmy McHugh-FieldsJimmy McHugh/D. FieldsJimmy McHugh/Dorothy FieldsJimmy McHugh/Dorothy FiledJimmy McHugh/FieldsJimmy McHugh; Dorothy FieldsJimmy McHugh‒Dorothy FieldsJimmy McHugh–Dorothy FieldsJimmy Mchugh - Dorothy FieldsJimmy Mchugh-Dorothy FieldsJimmy Mchugh-Doroty FieldsJimym McHugh, Dorothy FieldsM. Hugh, FieldsMC Hugh - FieldsMC Hugh/FieldsMCHugh / FieldsMac Hugh - Dorothy FieldsMac Hugh-FieldsMac-Hugh/FieldsMacHugh, FieldMacHugh/FieldsMacHughs-FieldsMachugh/FieldsMc Huch - FieldsMc Hugh & FieldsMc Hugh - Dorothy FieldsMc Hugh - FieldMc Hugh - Field - ShapiroMc Hugh - FieldsMc Hugh / FieldsMc Hugh And FieldsMc Hugh and FieldsMc Hugh, FieldsMc Hugh-FieldsMc Hugh/ FieldsMc Hugh/FieldsMc Hughes/FieldsMc hugh FieldsMc. Hugh - FieldsMc. Hugh FieldsMc. Hugh Jimmy, Fields DorothyMc. Hugh-FieldsMc. Hughs/FieldsMc.Hugh - FieldsMc/FieldsMcFieldsMcHgh, FieldsMcHigh, FieldsMcHough - FieldsMcHug - FieldsMcHug FieldsMcHug/FieldsMcHuggh & FieldsMcHughMcHugh & D FieldsMcHugh & D. FieldsMcHugh & Dorothy FieldsMcHugh & FieldsMcHugh , FieldsMcHugh - Dorothy FieldsMcHugh - FieldMcHugh - FieldsMcHugh -FieldsMcHugh / FieldMcHugh / FieldsMcHugh /FieldsMcHugh And FieldsMcHugh FieldsMcHugh Y FieldsMcHugh and FieldsMcHugh y FieldsMcHugh · FieldsMcHugh – FieldsMcHugh • FieldsMcHugh, FeildsMcHugh, FielderMcHugh, FieldesMcHugh, FieldsMcHugh, SieldMcHugh-D. FieldsMcHugh-Dorothy FieldsMcHugh-FieldMcHugh-FieldsMcHugh-FildMcHugh-FildsMcHugh-YoungMcHugh. FieldsMcHugh/ FieldsMcHugh/D. FieldsMcHugh/FieldMcHugh/FieldsMcHugh; FieldsMcHugh;FieldsMcHughes/FieldsMcHughfieldsMcHughs, FieldsMcHughs/FieldsMcHugh–FieldsMcHugh—FieldsMcHugu/FieldsMcMugh - FieldsMchughMchugh - FielsoMchugh / FieldsMchugh, FieldsMchugh-FieldsMchugh/fieldsMchughes/FieldsMehugh - FieldsMg. Hugh - FieldsMg. Hugh, FieldsMgHugh / FieldsPhils-McHughY. Mc Hugh - D. FieldsY. McHugh-D. Fieldsimmy McHugh and Dorothy FieldsМак-Хью - ФилдсDorothy FieldsJimmy McHugh + +941539Philip SimmsClassical double-bass player, organist, harpsichordist and conductor. Founder and choir master of the [a926725].Needs VoteEnglish Chamber Orchestra + +941568Arlen FastAmerican bassoonist and contrabassoonist.Needs Votehttps://www.imdb.com/name/nm0268771/New York PhilharmonicSan Diego Symphony + +941572Judy LeclairAmerican classical bassoonist, principal bassoonist of the New York Philharmonic, wife of pianist [a1002963]. +Active for the New York Philharmonic since 1982.Needs VoteJudith Le ClairJudith Le ClaireJudith LeClairJudith LeclairJudy LeClairNew York Philharmonic + +941638Eddy Williams (2)Edwin "Cat-Eye" WilliamsUS tenor saxophonist born in Chicago, active between 1958-1961. He worked with Horace henderson's band, trombonist [a=Bennie Green] and gigged with [a=Ray Charles]. + +Do NOT confuse with other saxophonists +-[a=Eddie Williams (5)] (active in the 30s) +-[a=Edward Williams (4)] from Chicago, IL +-[a=Eddie Williams (21)] from Virginia +-[a=Eddie Williams Jr.] who worked with [a=Joe Tex]Needs Votehttps://en.wikipedia.org/wiki/Eddie_Williams_(saxophonist)https://jazz.fm/eddy-williams-and-bennie-green/https://news.allaboutjazz.com/eddy-williams-and-bennie-greenhttp://www.jazzarcheology.com/artists/eddy_williams.pdfEddie "Cateye" WilliamsEddie WilliamsEddy "Cat-Eye" WilliamsEdwin WilliamsWilliamsHorace Henderson And His OrchestraThe Johnny Griffin OrchestraLittle Johnny Griffin & His OrchestraBennie Green QuintetPorter Kilbert's OrchestraThe John Wright Quartet + +941727Sarah SextonSarah SextonIrish violin player.Needs VoteSara SextonWired StringsDirty Pretty StringsThe SixteenBritten-Pears OrchestraEuropean Union Youth OrchestraThe King's ConsortThe Callino QuartetIrish Baroque OrchestraMarylebone CamerataClassical OperaRetrospect EnsembleRoyal Academy of Music Baroque Orchestra + +941810Uwe FüsselUwe FüsselBorn: 1961, Berlin, Germany. + +Clasically trained trombonist who has performed with the German Brass and worked with David Byrne of the Talking Heads.Needs VoteU. FüsselBayerisches StaatsorchesterBundesjugendorchesterGerman BrassOpera Brass + +941864Odón AlonsoOdón Alonso OrdásSpanish conductor, born 28 February 1925 in La Bañeza, Spain, died 21 February 2011. +Son of conductor Odón Alonso González.Needs VoteAlonsoO. AlonsoOdon AlonsoOdon AlonsoОгон АлонсоOrquesta Sinfónica de RTVE + +941937Manfred BellmannClassical oboe playerNeeds VoteDresdner PhilharmonieHessisches Bach-Collegium + +941938Heinz SchmidtGerman classical double-bass playerCorrectDresdner Philharmonie + +941939Manfred ReicheltClassical cellistNeeds VoteDresdner PhilharmonieFriedrich-Trio Der Dresdner Philharmonie + +941941Klaus PetersKlaus Peters (born 1941) is a German classical violinist.Needs VoteKlaus Peterクラウス-ベーターズStaatskapelle BerlinOrchester der Bayreuther FestspieleDresdner PhilharmonieSuske-QuartettBerliner StreichquartettSalonorchester Eclair + +941942Karl SuskeGerman violinist, born 1934 in Reichenberg/Liberec (Northern Bohemia). He's the father of [a2692155]. +In the 1950s he became he became first concertmaster of the Gewandhaus Orchestra in Leipzig and member of the Gewandhaus Quartet. From 1962 to 1977 he was first concertmaster at the Staatsoper in Berlin, before returning to the Gewandhaus in Leipzig. He was also leader of the Suske Quartet founded in 1965 (later Berlin String Quartet). +Needs VoteK. SuskeKarl SuskSuskeКарл Сускеカール・ズスケBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigKammerorchester BerlinNeues Bachisches Collegium Musicum LeipzigDresdner PhilharmonieSuske-QuartettGewandhaus-Quartett LeipzigSuske-Trio + +942019Lambert OrkisAmerican classical pianist, born 1946 in Philadelphia.Needs Votehttp://www.lambertorkis.com/http://en.wikipedia.org/wiki/Lambert_OrkisNational Symphony OrchestraThe Castle TrioPenn Contemporary PlayersSmithsonian Chamber OrchestraThe Theater Chamber Players Of Kennedy Center + +942172David Gordon (5)British classical and jazz pianist and harpsichordist, based in London.Needs Votehttp://www.davidmusicgordon.com/D. GordonDGDave GordonGordonZumLondon ConcertanteTheo Travis QuartetRespectable GrooveL'Avventura LondonThe English ConcertDavid Gordon TrioAlakulo Ensemble + +942284Alfred SchönfeldGerman Librettist and lyricist. Born 30 March 1859 in Breslau, died 10 December 1916 in Berlin, Germany.Needs Votehttps://adp.library.ucsb.edu/names/112806A. SchönfeldAlfred SchoenfeldAlfred SchonfeldSchönfeld + +942342Oslo Philharmonic Wind SoloistsCorrectOslo Wind SoloistsOslo Filharmoniske Orkester + +942451Charles JaffeCharles Jaffe (1917 - 16 August 2011) was an American violinist and conductor.Needs VoteThe Philadelphia OrchestraNBC Symphony OrchestraThe Curtis String Quartet + +942452Freddie Williams (2)American swing saxophonist who most famously recorded with [a=Billie Holiday] and [a=Louis Armstrong]. In 1941, he recorded with [a=Benny Carter] and played in [a=Eddie Barefield]'s band. In 1942, he was in [a5211658]' band. From 1943, he played in groups led by [a293352], [a258709] and [a258007]. He was drafted in 1953. + +[b]For the British dance band era saxophonist/clarinettist, please use [a1787750]. +For the US blues songwriter, see [a=Freddie A. Williams].[/b]Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/356267/Williams_FredFred WilliamsFreddy WilliamsFreedy WilliamsWilliamsSy Oliver And His Orchestra + +942540Adam AbeshouseAmerican producer, engineer and classical violinist, born June 5, 1961 – died October 10, 2024. +See also the labels [l=Adam Abeshouse] and [l=Adam Abeshouse Studios]. +Needs Votehttp://www.abeshouseproductions.com/index.php?page=abouthttps://en.wikipedia.org/wiki/Adam_Abeshousehttps://www.imdb.com/name/nm0008683/Adam AbehouseOrchestra Of St. Luke's + +942580Eric MareskaFrench marketing director / head of A & R. +He worked at Club Dial, Sony Music Entertainment, Universal Music France S.A.S.Needs Votehttps://www.linkedin.com/in/eric-mareska-609a6a8Éric Mareska + +942776Mitchell LurieAmerican clarinettist and teacher, (9 March 1922, Brooklyn - 24 November 2008, Los Angeles). The principal clarinettist for [a=Pittsburgh Symphony Orchestra] and then the [a=Chicago Symphony Orchestra] in the late 1940s, he subsequently worked in Hollywood as a top clarinettist for film studios, and became a distinguished chamber musician, best known for his numerous performances with the [a=Budapest String Quartet] and [a=The Muir String Quartet]. He taught for many years at USC and the Music Academy of the West in Santa Barbara. Clarinettists around the world use his patent reeds and mouthpieces. He was married to the pianist [a=Leona Lurie] from 1945.Needs Votehttps://www.latimes.com/local/obituaries/la-me-lurie30-2008nov30-story.htmlLurieLurie MitchellMitchel LurieChicago Symphony OrchestraElmer Bernstein & OrchestraPittsburgh Symphony OrchestraHot Rod Rumble OrchestraThe Fine Arts Wind Players + +942788Sam RiceTuba playerNeeds VoteS. RiceShorty Rogers And His Giants + +942852Rudolf EwerhartRudolf Ewerhart (* 15. June 1928 in Lebach, † 22. Juni 2022) +German classical keyboardist and instrument collector, his collection is at Burghaus Wassenach, Laacher See.Needs Votehttps://de.wikipedia.org/wiki/Rudolf_EwerhartDr. Rudolf EwerhartEwerhartProf. Dr. R. EwerhartR. EwerhartRudolf EwerhardtRudolph EwerhartCollegium AureumConsortium Musicum (2)Die Deutschen Barocksolisten + +942973Naomi KazamaNaomi Kazama HullAmerican violinist. Member of The San Francisco Symphony Orchestra since 1998. Originally from Yokohama, Japan.Needs VoteNaomi Kazama HullSan Francisco SymphonyNew World Symphony Orchestra + +942974Douglas HullAmerican horn player.Needs VoteDoug HullDouglas L. HullSan Francisco SymphonyCalifornia Symphony + +942975Paul WelcomerPaul WelcomerBorn: 1962, West Chester, Pennsylvania. + +Joined the San Francisco Symphony in 1993 and currently holds the second Trombone position. In addition to his performing obligations, Mr. Welcomer teaches the Trombone both privately and at the San Francisco Conservatory on a part-time basis.Needs VotePaul C. WelcomerSan Francisco SymphonyThe Bay Brass + +942976Daniel BannerAmerican violinist.Needs VoteDan BannerBoston Symphony OrchestraSan Francisco SymphonyThe Handel & Haydn Society Of Boston + +942977Jill Rachuy BrindelCellist at the The San Francisco Symphony Orchestra since 1980. +Originally from Chicago, IL.Needs VoteJill BrindelSan Francisco Symphony + +942978Florin ParvulescuPlays first violin in the San Francisco Symphony Orchestra since 1998. +Native of Romania.CorrectFlorin ParvulsecuSan Francisco SymphonySaint Louis Symphony OrchestraBaltimore Symphony Orchestra + +942979Frances JeffreyAmerican violinist.Needs VoteFrances JeffrySan Francisco Symphony + +942980Glenn FischthalAmerican trumpet player. Joined the San Francisco Symphony in 1980. Principal trumpet of the Israel Philharmonic from 1976 to 1979, of the San Diego Symphony in 1980, and of the San Francisco Symphony from 1980 to 2004.Needs Votehttps://afm6.org/member-profile/glenn-fischthal-trumpet-right-man-job-beth-zare-alex-walsh/Glen FischthalGlenn FischtahlGlenn J. FischthalSan Francisco SymphonyThe Cleveland OrchestraIsrael Philharmonic OrchestraSan Diego SymphonyThe Bay Brass + +942981Andrew McCandless (2)American trumpet player and music professor.Needs VoteAndrew McCandlessSan Francisco SymphonyBuffalo Philharmonic OrchestraToronto Symphony OrchestraArs Nova Musicians + +942982Anne PinskerClassical cellist. Joined the San Francisco Symphony in 1982.Needs Votehttps://www.sfsymphony.org/Data/Event-Data/Artists/P/Anne-PinskerAnne P. PinskerSan Francisco Symphony + +942983Nanci SeverancePlays viola in the San Francisco Symphony Orchestra since 1982.Needs VoteNanci SeverenceNancy SeveranceSan Francisco SymphonySan Francisco Contemporary Music PlayersThe Stanford String Quartet + +942984Enrique BocediClassicial violinist.Needs VoteSan Francisco Symphony + +942985Seth MausnerWas a violist in the San Francisco Symphony from 1981-2009.Needs VoteSan Francisco Symphony + +942986David GaudryPlays viola in the San Francisco Symphony Orchestra since 1982. +Native of Vancouver, British Columbia. Prior to joining the SFS he was a member of the Vancouver Symphony. Needs VoteDavid R. GaudryVancouver Symphony OrchestraSan Francisco Symphony + +942987Jonathan RingPlays horn in the San Francisco Symphony Orchestra since 1991. Originally from Springfield, MA.Needs VoteJonathan A. RingSan Francisco SymphonyThe Bay Brass + +942988Michael GerlingAmerican violinist, born in 1940.Needs VoteSan Francisco Symphony + +942990Kelly Leon-PearcePlays second violin in the San Francisco Symphony Orchestra since 1989. Originally from Grosse Pointe, MI. +Sister to [a=Suzanne Leon]Needs VoteKelly M. Leon-PearceSan Francisco Symphony + +942991Catherine DownCathryn DownAmerican violinist.Needs VoteSan Francisco Symphony + +942992Douglas RiothHarp player in The San Francisco Symphony Orchestra since 1981.Needs VoteDoug RiothSan Francisco Symphony + +942993Linda LukasFlautist in the San Francisco Symphony Orchestra since 1990. +Originally from Delaware, OH.Needs VoteMetropole OrchestraSan Francisco Symphony + +942994Sheryl RenkAmerican clarinetist.Needs VoteSheryl L. RenkSan Francisco SymphonySan Diego Symphony + +942996Richard AndayaAmerican cellist.Needs VoteSan Francisco Symphony + +942997Craig Morris (3)American orchestral trumpeter, born in 1968.Needs Votehttp://en.wikipedia.org/wiki/Craig_Morrishttp://craigmorristrumpet.comCraig MorrisMorrisSan Francisco SymphonyChicago Symphony Orchestra + +942998Kum Mo KimPlays second violin in the San Francisco Symphony Orchestra since 1975. +Originally from Seoul, South Korea.Needs VoteSan Francisco Symphony + +942999Diane NicholerisPlays first violin in the San Francisco Symphony Orchestra since 1984. Originally from Braintree, MA.Needs VoteDiane E. NicholerisSan Francisco Symphony + +943001Bruce FreifeldAmerican violinist and violist.Needs VoteSan Francisco SymphonyThe Saint Paul Chamber OrchestraSan Francisco Opera Orchestra + +943002Chris BogiosAmerican trumpeter, San Francisco native. Joined The San Francisco Symphony Orchestra in 1961.Needs VoteChris G. BogiasSan Francisco Symphony + +943003Pamela Smith (2)Oboe player born in Atlanta, GA. +Member of the San Francisco Symphony Orchestra since 1988.Needs VotePam SmithSan Francisco Symphony + +943004Rob WeirPlays bassoon in the San Francisco Symphony.Needs VoteWeirSan Francisco Symphony + +943005Stephen PaulsonPlays bassoon in the San Francisco Symphony (Principal).Needs VoteSteve PaulsonSan Francisco Symphony + +943006David TeieAmerican cellist and composer.Needs Votehttp://musicforcats.com/San Francisco SymphonyNational Symphony Orchestra + +943007Tom HemphillAmerican percussionist. Graduate of Oberlin Conservatory, former member of the Toledo Symphony.Needs VoteThomas HemphillSan Francisco SymphonyKōtèkan + +943010Yun Jie LiuPlays viola in the San Francisco Symphony Orchestra (Associate principal) since 1993. +Originally from Shanghai.Needs VoteJie LiuYun LiuYun-Jie LiuSan Francisco Symphony + +943012Eugene IzotovPrincipal oboist of the San Francisco Symphony.Needs Votehttp://www.oboesolo.com/San Francisco SymphonyThe Metropolitan OperaChicago Symphony Orchestra + +943013Raymond FroehlichPlays percussion in the San Francisco Symphony Orchestra.Needs VoteRay FroehlichRaymond FroelichRaymond P. FroelichRaymond R. FroehlichSan Francisco SymphonyArch Ensemble + +943014Philip SantosAmerican violinist and teacher.Needs VoteSan Francisco SymphonyCalifornia SymphonyMarin Symphony + +943015Connie GantswegAmerican violinist.Needs VoteConnie R. GantswegSan Francisco SymphonyRadio-Symphonie-Orchester Berlin + +943016Jeremy ConstantPlays first violin in the San Francisco Symphony Orchestra (Assistant concertmaster) sine 1984. +Originally from Toronto, Ontario.Needs VoteJeremy J. ConstantSan Francisco Symphony + +943018Jeffrey BudinJeffrey Budin is an american trombonist who has held principal trombone positions in the San Francisco Ballet Orchestra, Pittsburgh Symphony Orchestra, the Orchestre Symphonique de Montréal, the Orquestra de la Ciutat de Barcelona and the Honolulu Symphony Orchestra. +Needs VoteJeff BudinJeffery BudinSan Francisco SymphonySan Francisco Opera OrchestraThe Bay BrassSan Francisco Ballet Orchestra + +943019David Herbert (3)American timpanist.Needs Votehttps://www.facebook.com/davidherberttimpani/David HerbertDavid V. HerbertSan Francisco SymphonyChicago Symphony Orchestra + +943020Yukiko KurakataSan Francisco-based violinist, born Yukiko Kamei (in Tokyo, Japan). Married to pianist Shunsuke Kurakata. +Member of The San Francisco Symphony Orchestra between 1993 and 2023.Needs VoteYukiko Kurakata (Kamei)Yukiko Kurakata KameiYukiko KameiSan Francisco Symphony + +943021Chumming Mo KobialkaChunming MoPlayed second violin in the San Francisco Symphony Orchestra between 1991 and 2024. Originally from Shanghai.Needs VoteChumming MoChunming KobialkaChunming Mo KobialkaMo Kobiaira ChunmingChun Ming MoSan Francisco Symphony + +943022Gina FeinauerAmerican viola player and teacher. +Plays viola in the San Francisco Symphony Orchestra since 1992. Originally from Ardsley, New York.Needs Votehttps://www.sfsymphony.org/Data/Event-Data/Artists/F/Gina-FeinauerGina L. FeinauerGina CooperSan Francisco Symphony + +943023Eric AchenAmerican horn player.Needs VoteEric A. AchenSan Francisco SymphonyThe Mike Greensill Octet + +943024Catherine PaynePlays flute in the San Francisco Symphony Orchestra since 1996.Needs VoteCatherine PaynterCathy PayneSan Francisco Symphony + +943025Julie Ann GiacobassiEnglish horn player.Needs VoteJulie A. GiacobassiJulie GiacobassiSan Francisco Symphony + +943026Artie StorchAmerican percussionist.Needs Votehttp://www.artiestorch.comArthur L. StorchArthur StorchThe Skywalker Symphony OrchestraSan Francisco Symphony + +943027Anthony StriplenAmerican clarinetist and bass clarinetist.Needs VoteAnthony G. StriplenTony StriplenSan Francisco SymphonySan Francisco Opera OrchestraThe MC Band + +943029Victor RomasevichPlays first violin in the San Francisco Symphony Orchestra. Born Minsk, Belarus. Moved to US in 1977.Needs VoteVictor RomanesevichVictor RomasavichSan Francisco Symphony + +943031Rudolph KremerAmerican violinist and violist. Began playing with the San Francisco Symphony in 1995.Needs VoteRudolph J. KremerSan Francisco Symphony + +943032John EngelkesJohn EngelkesA native of Iowa, bass trombonist John Engelkes joined the San Francisco Symphony in 1981. Mr. Engelkes currently serves on the faculty at the San Francisco Conservatory of Music and teaches privately. He is a founding member of the Bay Brass.Needs VoteJohn Engelkes lIJohn R. Engelkes IIJohn R. EnglekesSan Francisco SymphonyThe Bay Brass + +943453Stanford (3)CorrectStanford + +944042Antonio BazziniAntonio Joseph BazziniItalian violinist, composer and teacher (11 March 1818 – 10 February 1897).Needs Votehttp://en.wikipedia.org/wiki/Antonio_Bazzinihttps://adp.library.ucsb.edu/names/102375A. BazziniAntonio Giuseppe BazziniAntonio Joseph BazziniBazzaniBazziniBazzini A.J.Joseph Antonio BazziniMendelssohnА. Баццини + +944146Ernest BlochErnest Yitshak BlochSwiss-born American composer and pianist - born July 24, 1880, in Geneva, died July 15, 1959, in Portland, Oregon. + +[b]Not to be confused with[/b] the German philosopher [a5174017].Needs Votehttps://ernestbloch.org/https://en.wikipedia.org/wiki/Ernest_Blochhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102643/Bloch_ErnestBlochBlockE BlochE. BlochErnesto BlochErnst BlochЕ. БлохЭ. БлохЭрнест Блохブロッホ + +944158Oscar FetrásOtto Fasterb.: February 16, 1854 (Hamburg, Germany) +d.: January 10, 1931 (Hamburg, Germany) + +German conductor and composer of popular dance music, military marches, piano pieces and arrangements, a.k.a. the Hamburg Waltz King or the German Strauss. + +Fétras wrote over 200 compositions, many in the style of his idol, [a=Johann Strauss Jr.]. His best known work is his waltz "Mondnacht auf der Alster" (op. 60), which is still immensely popular.Needs Votehttps://en.wikipedia.org/wiki/Oscar_Fetráshttps://johann-strauss.org.uk/composers-a-m.php?id=174https://adp.library.ucsb.edu/names/116782FedrasFetrasFetràsFetrásFétrasJ. FetrasO. FetrasO. FetrásO. Fetrás*O. FétrasOscar FetrasOscar FetràsOscar FétrasOskar FetrasOskar FetrásOskar FétrasOskar PetrasPetrasО. ФетрасОскар Фетрас + +944523Midori Goto五嶋 みどり (Gotō Midori)Midori Goto (b. 25 Oct 1971), who typically appears as [b]Midori[/b], is a distinguished Japanese-American violinist and music educator from Osaka, Japan. Since 2018, Midori teaches at [l1051396] in Philadelphia. She's the older sister of violinist [a3306598]. + +As a concert violinist, Midori made her debut in 1982, at 11-year-old, with [a=The New York Philharmonic Orchestra] conducted by [a=Zubin Mehta]. Midori was the '[i]Jascha Heifetz Chair[/i]' holder at the [l118141]'s Thornton School of Music (2004–'18), preceded by teaching at [l484524]. Midori is an honorary professor at Beijing's [url=https://www.discogs.com/label/743898] Central Conservatory of Music[/url], guest professor at Soai University in Osaka and [l1467330], and distinguished visiting artist at [l434590].Needs Votehttp://www.gotomidori.com/http://en.wikipedia.org/wiki/Midori_Got%C5%8Dhttps://www.curtis.edu/academics/faculty/midori/MidoriMídoriOffice Goto五嶋 みどり五嶋みどりOrchestre Philharmonique De Radio FranceShanachie (4) + +944561Enrico MainardiItalian cellist, conductor and composer, born 19 May 1897 in Milan, Italy and died 10 April 1976 in Munich, Germany.Needs Votehttp://www.enrico-mainardi.comE. MainardiEnrico MeinardiMainardiMeinardiProf. Enrico MainardiЭ. МайнардиЭнрико МайнардиEdwin Fischer Trio + +944662Gunnar TuressonGunnar Anders TuressonSwedish troubadour, composer, author, and lute player, born October 6, 1906, Arvika, died July 3, 2001, Hammarö. + +Brother in law of poet [a816180], whose poems he often set to music.Needs Votehttps://sv.wikipedia.org/wiki/Gunnar_TuressonG TuressonG. ThuressonG. ToressonG. TuressonG. TurressonGunnar ThuressonGunnar TuresonThuressonTuressenTuresson + +945556Nelson CookeNelson Ripley CookeAustralian cellist and pedagogue. Born 21 December 1919 in Bellbird, New South, Wales, Australia - Died 7 February 2018. +After service in the Second World War interrupted his early career with the [a=Sydney Symphony Orchestra], he travelled to London for lessons with [a=Pablo Casals] and first played in the [a=Philharmonia Orchestra] as 4th Cello, before winning the Principal Cello job with the [a=London Symphony Orchestra] in 1959, making him the first Australian cellist at the orchestra (1961-1968). He later held the same position with the [a=Royal Philharmonic Orchestra]. In 1968, Cooke began teaching at the [l=University Of South Florida]. In 1970, he became principal cellist for [a=The Florida Orchestra]. He later became Head of Strings at the [l=Canberra School Of Music] and in the 1990s, he worked as a music teacher at the [l=Melbourne University]. +In 2011, he was appointed a Member of the Order of Australia (AM) in the New Years Honours List.Needs Votehttps://en.wikipedia.org/wiki/Nelson_Cookehttps://www.abc.net.au/am/content/2011/s3242198.htmhttps://slippedisc.com/2018/02/death-of-a-principal-cellist-98/https://catalogue.nla.gov.au/Record/41153https://www.facebook.com/schoolofmusicANU/posts/nelson-cooke-a-founding-staff-member-of-the-canberra-school-of-music-and-war-vet/863480277156447/https://lso.co.uk/more/news/873-obiturary-nelson-cooke-1919-2018.htmlhttps://theviolinchannel.com/cellist-pedagogue-nelson-cooke-australian-died-obituary-98/London Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraSydney Symphony OrchestraThe Florida Orchestra + +945657Lone LarsenBorn in Denmark 1973, Lone Larsen is a music teacher educated at the Nordjysk Academy of Music in Aalborg. 1998, she moved to Sweden where she undertook a degree in choral conducting at the Royal College of Music in Stockholm. From 2005 to 2007 Lone Larsen was based in New York, where she completed additional studies at the Juilliard School of Music. + +In 1999, Lone Larsen founded the vocal ensemble [a5176217], a prize winning vocal ensemble from Stockholm consisting of 17 singers. The ensemble has attracted highly experienced singers who want to find new expressions in ensemble singing and to renew Swedish choral tradition. + +In Norway, Lone Larsen is the artistic director of the ensemble Vokal Nord which has a focus on music influenced by joik/sami music and baroque music. She is a lecturer in conducting at a music academy in Stockholm and continues to work with many fine ensembles.Needs Votehttp://www.vocesnordicae.se/ローネ・ラーセン + +945980Siegfried TranslateurSalo Siegfried TranslateurGerman composer and conductor, born 19 June 1875 in Bad Carlsruhe, Silesia (now Pokój, Poland), died 1 March 1944 in the concentration camp at Theresienstadt (today Terezín, Czech Republic). +Translateur's most famous piece remains the Wiener Praterleben waltz (opus 12), which he wrote in 1892 at the age of seventeen while attending the Vienna conservatory.Needs Votehttp://en.wikipedia.org/wiki/Siegfried_Translateurhttps://adp.library.ucsb.edu/names/111236S TranslateurS. TranlateurS. TranslateurS.TranslateurSiegfried TranslateuerSiegried TranslateurSigmund TranslateurTranslaterTranslateurTranslateur SiegfriedTranslateureС. Транслейтер + +946192Leon SpiererGerman-Argentine violinist. Concertmaster of [a=Stockholms Filharmoniska Orkester] from 1958 to 1963 and for the [a260744] from 1963 to 1993.Needs VoteL. SpiererLéon SpiererЛеон ШпирерBerliner PhilharmonikerStockholms Filharmoniska Orkester + +946193Hanns-Joachim WestphalGerman violinist (12 October 1930 - 3 February 2015).CorrectH.-J. WestphalH.J. WestphalHans Joachim WestphalHans-Joachim WestphalBerliner PhilharmonikerWestphal-QuartettLucerne Festival OrchestraPhilharmonische Solisten Berlin + +946195Emil MaasGerman classical violinist, born 13 January 1922 and died 6 March 2005 in Berlin, Germany.CorrectE. MaasEmil HaasBerliner PhilharmonikerPhilharmonisches Oktett Berlin + +946242Helen BrooksBritish alto vocalistCorrectHelen BrookesMetro VoicesLondon Voices + +946245Claire HenrySoprano.CorrectClaire DesboisClaire Henry-DesboisClare HenryMetro VoicesLondon VoicesChœur De Chambre Accentus + +946261Laurence DaviesLaurence DaviesBritish orchestral & chamber French Horn player and teacher. Born in 1966 in Liverpool, England, UK. +He studied at [l305416] (1985-1989). He was Joint Principal Horn of the [a=Philharmonia Orchestra] for ten years. In June 2008, he was appointed Principal Horn of the [a=Royal Philharmonic Orchestra], left in January 2018. Member of [a=The Pleyel Ensemble]. +He gained a Bachelor of Arts - BA in Archaeology and Classical Studies in 2013. Owner of a tour company called Oldbury Tours.Needs Votehttps://www.facebook.com/laurence.davies.710https://www.linkedin.com/in/laurence-davies-593b11138/?originalSubdomain=ukhttps://oldburytours.co.uk/about/about-laurence/https://www.pleyelensemble.com/laurence-davies-horn/https://www.hyperion-records.co.uk/a.asp?a=A2188https://schoolofeverything.com/teacher/laurencedavieshttps://www.northlondonmusicteachers.com/laurence-davies-brass-consultant-hemel-hempstead-hp1-1pxhttps://www.musicteachers.co.uk/teacher/22a388c8ca923bc0d67fhttps://www.imdb.com/name/nm0203811/https://www2.bfi.org.uk/films-tv-people/4ce2bd08ce951https://www.mobygames.com/developer/sheet/view/developerId,214906/Laurence DavisLawrence DaviesThe London Session OrchestraRoyal Philharmonic OrchestraThe London Studio OrchestraThe Millennia EnsemblePhilharmonia OrchestraThe Nash EnsembleThe Royal Philharmonic Chamber EnsembleBritten SinfoniaThe Philharmonia Chamber OrchestraLondon WindsThe Pleyel Ensemble + +946262Simon PreeceBritish baritone vocalistNeeds VoteMetro VoicesLondon VoicesChorus Of The Royal Opera House, Covent Garden + +946365Peter PhilipsPeter Philips (also Phillipps, Phillips, Pierre Philippe, Pietro Philippi, Petrus Philippus; c.1560–1628) was an eminent English composer, organist, and Catholic priest exiled to Flanders. He was one of the prominent keyboard virtuosos of his time, and transcribed or arranged several Italian motets and madrigals for his instruments. Philips also wrote many sacred choral works.Needs Votehttp://en.wikipedia.org/wiki/Peter_PhilipsP. PhilipsP. PhillipsPeter PhilippsPeter PhillipsPhilipsPhillipsPhillips, PeterПитер Филипс + +946368Dieterich BuxtehudeDieterich BuxtehudeGerman-Danish organist and composer of the Baroque period, born c. 1637-1639, Helsingborg, Skåne, Denmark - died May 9, 1707, Lübeck, Germany. +Buxtehude, along with [a=Heinrich Schütz], is considered today to be one of the most important German composers of the mid-Baroque. His style strongly influenced many composers, including [a=Johann Sebastian Bach], who walked in 1705 from Arnstadt to Lübeck, a distance of more than 400 kilometres, and stayed nearly three months to hear Buxtehude's musical evenings and, as Bach explained, "to comprehend one thing and another about his art.". +Needs Votehttp://www.dieterich-buxtehude.org/https://en.wikipedia.org/wiki/Dieterich_BuxtehudeBuxtehudeBuxtehude & Co.Buxtehude, DieterichBvxtehvdeBüxtehudeD BuxtehudeD. BukstehudeD. BuxtehedeD. BuxtehudeD.BuxtehudeDeterich BuxtehudeDiderich BixtehudeDiderich BuxtehudeDiderik BuxtehudeDiederich BuxtehudeDiedrich BuxtehudeDieter BuxtehudeDieteric BuxtehudeDieterik BuxtehudeDietr. BuxtehudeDietrich BextehudeDietrich BuxtehudeDietrich BüxtehudeDietrick BuxtehudeDiétrich BuxtehudeД. БукстенхудД. БукстехудеД. БукчиехудеД.БукстергудеДитрих Букстехудеディートリヒ・ブクステフーデ + +946554Koeckert-QuartettGerman string quartet, founded in 1939 by [a=Rudolf Koeckert] and disbanded in 1982.CorrectJoachim Koeckert QuartettJoachim Koeckert-QuartettJoachim-Koeckert-QuartettKoeckert QuartetKoeckert QuartettKoeckert String QuartetKoeckert- String QuartetKoeckert-KvartettenKoeckert-Quartett, Mitglieder Des Symphonieorchesters Des Bayerischen RundfunksKoeckert-kvartettenKroeckert QuartetKöckert QuartetKöckert-QuartettQuartetto KoeckertQuatuor KoeckertQuaturo KoeckertRudolf Koeckert-QuartettThe Koeckert QuartetKurt RedelGeorg HörtnagelRudolf KoeckertJosef MerzOskar RiedlWilli Buchner + +946618Dymphna van DooremaalDutch bassoonist.Needs Votehttps://www.orkest.nl/muzikant/dymphna-van-dooremaalDimphna van DooremaalMetropole OrchestraNieuw Sinfonietta AmsterdamNederlands Philharmonisch Orkest (2) + +946836Bridget CareyBritish violist. She studied jointly at the Royal Academy of Music and London University, graduating with a Masters degree in Performance in 1987.Needs Votehttps://www.brittensinfonia.com/who-we-are/people/bridget-careyBridgit CareyBrigit CareyRoyal Philharmonic OrchestraThe Kreutzer QuartetBritten SinfoniaApartment HouseTopologiesGoldfield Ensemble + +946913Buddy DiVitoAnthony "Buddy" DiVitoAmerican singer during the big band eraCorrecthttps://groups.google.com/forum/#!topic/alt.obituaries/AetFtVNMh-kBuddy B. Di VitoBuddy De VitoBuddy DeVitoBuddy DevitoBuddy Di ViteBuddy Di VitoBuddy DivitoBuddy SistersBuddy di VitoDe VitoHarry James And His Orchestra + +946948Alfred WallensteinAmerican violoncellist and conductor. He was born 7 October 1898 in Chicago, Illinois, USA and died 8 February 1983 in New York City, New York, USA.Needs Votehttps://adp.library.ucsb.edu/names/105171https://en.wikipedia.org/wiki/Alfred_WallensteinA. WallensteinAlfred WaltensteinGeorge SebastianWallensteinА. ВалленстайнА. ВалленстайнаNew York PhilharmonicSan Francisco SymphonyLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +946950Hornquartett Des Rundfunk-Sinfonie-Orchester LeipzigEast German horn quartet made up of orchestra members of the [a425124]. Active from 1951 to 1990 and since 1996 as [a6302217].Needs VoteLeipziger HornquartettGünther OpitzSiegfried GizykiWaldemar MarkusKurt JanetzkyGünter SchaffrathDieter ReinhardtJohannes StiehmRundfunk-Sinfonie-Orchester Leipzig + +946996Matthias LutzeMatthias LutzeClassical bass vocalist.Needs Votehttp://www.matthiaslutze.de/LutzeMLRIAS-KammerchorCollegium VocaleCapella AngelicaPygmalionVox LuminisVocalconsort BerlinChor Der J.S. Bach StiftungCantus ThuringiaEnsemble Polyharmonique + +946997Stephanie PetitlaurentClassical soprano (born in Berlin, Germany). +Needs VotePetitlaurentRIAS-KammerchorCapella AngelicaGesualdo Consort AmsterdamCappella Murensis + +947012Maximilian SchmittClassical tenor. Born: GermanyNeeds Votehttp://www.maximilianschmitt.com/index.php/en/http://www.bach-cantatas.com/Bio/Schmitt-Maximilian.htmhttps://de.wikipedia.org/wiki/Maximilian_SchmittSchmittRegensburger DomspatzenCollegium VocaleCapella Angelica + +947047Jilla WebbAmerican bigband singer.Needs VoteHarry James And His Orchestra + +947185Jean-Jacques KantorowFrench violin virtuoso and conductor, born October 3, 1945 in Cannes. +[a2532445] conductor between 2004 and 2008Needs Votehttps://en.wikipedia.org/wiki/Jean-Jacques_KantorowJ. J. KantorowJ. J. KrantorowJ. Jacques KantorowJ.-J. KantorowJ.J. KantorowJean Jacques KantorowJean-Jacques KantarowJean-Jacques KantorovJean-Jacques KantrowJean-Jaques KantorowKantorowRouvier-Kantorow-Müller TrioOrquesta Ciudad de GranadaMozart String Trio + +947361Dennis RowlandJazz vocalist born and raised in Detroit. In 1977 Count Basie hired him to sing on tour and he toured with Basie until 1984.Needs Votehttps://en.wikipedia.org/wiki/Dennis_RowlandDennis RolandCount Basie OrchestraFrank Foster And The Loud Minority + +947769Michael FreimuthGerman Theorbe & Lute instrumentalistNeeds VoteConcerto KölnBalthasar-Neumann-EnsembleMusica FiataGitarren Trio EssenBell'Arte SalzburgHimlische CantoreyAffetti MusicaliLa Gioia ArmonicaIl CantinoEnsemble PolyharmoniqueMovimento (4) + +947771Vittorio GhielmiVittorio Ghielmi is a viola da gamba player, born in 1968, in Milano, Italy. Vittorio has performed in the most important concert halls of Europe and the USA as a soloist with orchestras such as Il Giardino Armonico, Wiener Philharmoniker, Philharmonia Orchestra London. He teaches viola da gamba at Conservatorio Luca Marenzio di Brescia.Needs Votehttp://en.wikipedia.org/wiki/Vittorio_GhielmiGhielmiV. GhielmiQuartetto Italiano Di Viole Da GambaConcerto ItalianoL'ArpeggiataIl Giardino ArmonicoRicercar ConsortIl GardellinoEnsemble VanitasIl Suonar ParlanteEnsemble 1700Il Concerto Delle VioleIl Suonar Parlante OrchestraMusica Concertiva + +947772Annegret SiedelGerman violinist, born 1963 in Berlin, Germany.Needs Votehttp://www.barockvioline.eu/Das Mozarteum Orchester SalzburgKöln String QuartetHamburger RatsmusikOrchester Der Komischen Oper BerlinBell'Arte SalzburgParthenia Baroque + +947778Isabel MundryGerman composer, born 20th April 1963 in Schlüchtern. +Studied composition at [l481472] with [a1234493] and [a619822]. +Electronic music studies at [l319287]. +Studied musicology with [a3257339], art history and philiosophy at [l783616]. +Complementary composition studies with [a610798], 1991 to 1994 in Frankfurt. +Grants receiver from [l983417] and [l21638] from 1992 to 1994. +Received the [l1562391] price in 2001. +Teaching composition at [l318570] since 2011.Needs Votehttps://en.wikipedia.org/wiki/Isabel_MundryMundryStaatskapelle Dresden + +948160Cerebral VortexDennis Alfred BerryAmerican hip-hop MC from San Antonio, Texas, who spent time in Kanagawa, Japan and Vilseck, Germany, he later spent time on the Westcoast of the U.S. before settling in Brooklyn, New York, United States of America. He is a member of [a=Vertual Vertigo], [a=215 The Freshest Kids], [a=FTC], [a=Galaxy High], [a=Stormy Weathers] and [a=Bon Voyage (13)]. He is also the nephew of rapper [a=Chill E. B.] and The first Black successful Queen of ballet [a=Frances Davis].Needs Votehttp://www.shamoncassette.comhttp://www.cerebral-vortex.comhttp://www.myspace.com/cerebralvortexftcCerbral VortexVortexDennis Alfred BerryShamon Cassette + +948556Helmut KlöcklHelmut Klöckl is an Austrian classical flautist.Needs VoteDas Mozarteum Orchester SalzburgCamerata RhenaniaGrazer Philharmonisches OrchesterConsortium SalzburgDie Salzburger Residenz-Solisten + +948560Anna LelkesHungarian classical harpist (* 10 June 1939 in Budapest, Hungary).Needs Votehttps://www.wienerphilharmoniker.at/de/orchester-mitglieder/none-anna-lelkes/3113/Orchester Der Wiener StaatsoperHungarian State Opera OrchestraWiener Philharmoniker + +948566Leonard HokansonLeonard HokansonAmerican pianist, born 13 August 1931 in Vinalhaven, Maine, USA, died 21 March 2003 in Bloomington, Massachusetts, USA.Needs Votehttps://en.wikipedia.org/wiki/Leonard_HokansonHokansonL. HokansonLeonard HakansonLeonard HockansonLeonhard HokansonLéonard HokansonЛеонард ХокансонХакансонレオナルド・ホカンソンRadio-Symphonie-Orchester BerlinDas Mozart-TrioOdeon TrioPro Arte Chamber Orchestra + +948668Michael FieldsLute, archlute, chitarrone/theorbo, baroque guitar, harp player & opera director, born in Hawaii. He began his musical career playing folk, rock and jazz in California and Australia, until he studied older music in England in 1974 (classical guitar and lute). +He directs the medieval vocal ensemble, Vox Animae, with which he recorded the Ordo Virtutum by Hildegard of Bingen. +He founded a duo with [a=Evelyn Tubb] specialised in Renaissance, Baroque and early Romantic songs, sometimes recording with the group [a=Sprezzatura]. +Needs VoteM.F.The Consort Of MusickeKaleidoscope (11)New Trinity BaroqueSprezzatura + +948983Gérard JarryFrench violinist, born 6 June 1936 in Châtellerault, France and died 18 January 2004 in Saint-Éliph, France. An award-winning violinist by the age of 14, he came to be regarded as one of the greatest French violinists of the 20th century. + +He formed [a=Le Trio À Cordes Français] in 1959 with violist [a=Serge Collot], and cellist [a=Michel Tournus], a collaboration which lasted for more then 30 years. + +In 1969, he joined the [a=Orchestre De Chambre Jean-François Paillard] as solo violinist, and remained active with the orchestra for 30 years, participating in more than 150 recordings, and 2 500 concerts all over the world. + +Between 1984 and 2001, he was also first solo violinist with the [a2900207], with which he also recorded extensively.Needs Votehttp://fr.wikipedia.org/wiki/G%C3%A9rard_JarryFrançois JarryG. JarryG.JarryGerard JarryJarryジェラルド・ジャリジェラール・ジャリOrchestre De Chambre De ToulouseOrchestre De Chambre Jean-François PaillardLe Trio A Cordes Français + +949083Dave Nelson (4)Davidson C. NelsonAmerican trumpeter, pianist, singer, songwriter, and arranger +born 1905 in Donaldsonville, Louisiana, +died April 7, 1946 in New York City, NY. + +Dave Nelson is often referred to as the nephew of [a309984], although some historians say he was actually related to Oliver's wife Stella. Nelson took over King Oliver's Orchestra (hence the name "Kings Men") when the King's health failed him. Five months later they recorded again under the name of Dave's Harlem Highlights. +In addition to occasionally leading his own band, Nelson worked with the Marie Lucas Orchestra, [a307316], [a307423], [a309976], [a307237] (who taught him how to arrange), [a307187], [a326810] and [a1818269]. After playing with [a307366], in the fall of 1929 Nelson became part of Oliver's band, staying into 1931. +During his 1929 recording sessions for Victor, King Oliver had gum disease and was unable to play most of the time, so he hired other trumpeters to play his parts, using Nelson a great deal of the time. Nelson also co-wrote many of these songs and wrote a great deal of the arrangements. +Nelson was active until shortly before he died from a heart attack, working mostly as a pianist and as a music editor and arranger for a publishing firm. In addition to his recordings with Oliver, Nelson led two sessions in 1931 at the head of "The King's Men" that resulted in seven selections, all of which included his vocals.Correcthttp://books.google.com/books?id=e1SBuNFZolAC&pg=PA167&dq=david+nelson+king+oliver&hl=en&ei=GVkaTuqnB5K10AGetJiWBQ&sa=X&oi=book_result&ct=result&resnum=2&ved=0CCwQ6AEwAQ#v=onepage&q&f=falsehttp://www.redhotjazz.com/kingsmen.htmlhttp://www.vh1.com/artists/az/nelson_dave/artist.jhtmlhttp://launch.groups.yahoo.com/group/RedHotJazz/message/4110D. C. NelsonD. NelsonD.C. NelsonDave C. NelsonDave NelsonDave Nelson's OrchestraDavid C. NelsonDavid NelsonDavidson C. "Dave" NelsonDon NelsonN.C. NelsonNelsonW.C. NelsonKing Oliver & His OrchestraD.C. Nelson's SerenadersDave Nelson And His OrchestraDave Nelson And The King's MenDave's Harlem HighlightsNelson's New Orleans Trio + +949175Christian Schmitt (2)Christian Schmitt (* 1976 in Erbringen, Saar) , German classical organist.Needs Votehttp://www.christianschmitt.info/https://de.wikipedia.org/wiki/Christian_Schmitt_(Organist)Chris SchmittChristian SchmittStuttgarter KammerorchesterKronberg Academy Soloists + +949276Jason LauJason LauAustralian hardcore/hardstyle producer and DJ.CorrectJ. Joey LauJ. LauSuaeSwaysonHardcore MasifSway Tools + +949474Ellis LarkinsEllis LarkinsAmerican jazz pianist. + +Born : May 15, 1923 in Baltimore, Maryland. +Died : September 30, 2002 in Baltimore, Maryland. +Needs Votehttps://en.wikipedia.org/wiki/Ellis_Larkinshttps://www.allmusic.com/artist/ellis-larkins-mn0000172626https://www.imdb.com/name/nm0488334/https://adp.library.ucsb.edu/names/106913E. LarkinsEllie LarkinsEllis LarkinEllis Larkins At The PianoEllis Larkins TrioLarkinLarkinsЭллис Ларкинзエリス・ラーキンスColeman Hawkins QuintetColeman Hawkins And His OrchestraEdmond Hall Swing SextetColeman Hawkins Swing FourThe Ellis Larkins TrioDickie Wells And His OrchestraDon Elliott QuartetEdmond Hall And His OrchestraHoward Biggs OrchestraThe Ellis Larkins OrchestraBilly Moore and his Jumpin String Octette + +949647Karl-Heinz GeorgiKarl-Heinz Georgi (born 1 April 1957) is a German trumpet player. He was a member of the [a522210] from 1979 to 2022.Needs VoteGewandhausorchester Leipzig + +949917Siegfried GizykiClassical hornist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigKammerorchester BerlinHornquartett Des Rundfunk-Sinfonie-Orchester Leipzig + +949919Waldemar MarkusGerman horn player.Needs VoteRundfunk-Sinfonie-Orchester LeipzigHornquartett Des Rundfunk-Sinfonie-Orchester LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +950180Liviu PrunaruViolinist, born 1969 in Craiova, Romania.Needs Votehttp://en.wikipedia.org/wiki/Liviu_PrunaruConcertgebouworkestTharice Virtuosi + +950551Anders ÖhrwallAnders John Esbjörn ÖhrwallSwedish chorus master, conductor, composer and arranger, keyboardist, born 28 November 1932 in Örebro, Sweden and died 4 February 2012 in Stockholm, Sweden.Needs Votehttps://sv.wikipedia.org/wiki/Anders_%C3%96hrwallA ÖhrwallA. OhrwallA. ÖhrlundA. ÖhrvallA. ÖhrwallA.ÖhrwallAnders OhrvallAnders ÖhrvallOhrwallÖhrwallMusica Holmiæ + +950954Mark HowellsCredited as producer of mostly classical releasesNeeds Vote + +951173George Michael ElianSongwriterNeeds VoteElianG. ElianG. M. EbanG. M. ElianG.M. EbanG.M. ElianGeorge Michel ElianGeorge-Michael ElianM. ElianM.Elian + +951194Gérard LayaniGérard Layani, born in Paris in 1948, is a French singer-songwriter. As a composer, he notably wrote the music for Requiem pour un fou, sung by Johnny Hallyday (1976).Needs VoteG. LayaniG. LaganiG. LayamiG. LayaniG. LayanyG.LayaniGerard LayaniGérardGérard CayaniJerry GérardLayaniLayani/LayaniLayanniLayarLaynaniא.ג. ליאניאורי ג'רר לאיאניל. א. ג'רר + +951259Tommy KayAmerican jazz guitaristNeeds VoteT. KayTommy Kay (e)Tommy KayeJimmy Dorsey And His OrchestraShep Fields And His New MusicBenny Goodman And His OrchestraThe Buddy Weed Trio + +951326Robert Wagner (4)Austrian conductor and composer (* 20 April 1915 in Wien (Vienna), Austria, † 21 December 2008 in Münster, Germany). +He was chief conductor of the Mozarteumorchester Salzburg in 1946 and the [a4984847] from 1960 to 1966.Correcthttps://www.musiklexikon.ac.at/ml/musik_W/Wagner_Robert.xmlR. WagnerRobert VagnerRobert WagnerWagnerРоберт Вагнерロベルト・ワグナーロヴェルト・ワグナーロヴェルト・ワーグナーワーグナーDas Mozarteum Orchester SalzburgSymphonieorchester InnsbruckOrchester Robert WagnerChor Robert Wagner + +951720Henry RaudalesViolinist and concertmaster, born in Guatemala.Needs VoteHenri RaudalesRaudalesMünchner RundfunkorchesterBrussels Philharmonic + +951867Glenn HardmanGlenn Lorenze HardmanAmerican Organ and keyboard player and vocalist. He began as a radio station staff pianist. +Born June 27, 1910 Pleasant Hills, PN Died January 1, 1996 (aged 85) Redding, CA. + +Glenn worked for a number of radio stations before and after the road- and hotel-career he shared with his wife, vocalist [a4543213]. Later, he performed in low profile in small venues around the Los Angeles area until his retirement in 1983. Hardman was a well-schooled musician, born with perfect pitch into a family of musicians and dancers. His aptitude for the piano first appeared when he was 5 (he could already pick out tunes he'd heard at picture shows and in vaudeville). +His career began in the late 1920s as a staff pianist for local Pittsbugh radio stations, KDKA among them. By 1930, he had his own daily program "A Study in Black and White" on WJAY in Toledo. Early 1930s he and his show had become a feature of Toledo's major station WSPD. He would often sub for the great Art Tatum, whenever Tatum was unable to make his scheduled radio performance. WSPD was his break into big-time radio and over time, Hardman became musical director for 13 other radio stations. For many years, he had his own early-morning program, with the billing "The Sunshine Man." Hardman's first records were made for Gennett Records in Richmond, Indiana, July 11, 1933, and released on their Champion subsidiary. Hardman made 2 piano solos and 5 vocals accompanied by his own piano. He was billed on one of the discs as "The Sunshine Man." +In the mid-1930s, he teamed up with Alice O'Connell, a young lady with whom he had previously performed auditions. Glenn and Alice were married May 16, 1936. As a team, Hardman and +O'Connell played hotels, nightclubs, and theatres throughout the East. During this time they became a John Hammond "discovery." Hammond brought them to Chicago for some recordings in 1939. Hammond had assembled a pick-up group featuring Lester Young, Lee Castle, Freddie Green and Jo Jones, It was at this session Hardman met them for the first time. The record "Upright Organ Blues", from those highly-regarded sessions still gets reissued from time to time: +The Hardman/O'Connell professional duet continued until 1943, when Alice decided to have a baby. Glenn became musical director of KTUL in Tulsa, where he would soon discover a promising young vocalist named Clara Ann Fowler, who later became known as Patti Page. In 1953 the Hardmans left Oklahoma for California and took up residence in the Los Angeles area. Glenn never got into the tightly-controlled recording scene. Instead, he played hotels and cocktail lounges until his retirement.Needs VoteG. HardmanG. HardmannGlenn HardmannHardmanGlenn Hardman And His Hammond FiveGlenn Hardman & His Trio + +952439Bill Thomas (3)Jazz bassist.Needs VoteChick Webb And His Orchestra + +952624Philip Smith (3)Philip A. SmithClassical trumpeter, retired Principal Trumpet of the New York Philharmonic (1978-2014). Left NYP to become Prokasy Professor in the Arts Hugh Hodgson School of Music at the University of Georgia. Son of trumpter / cornettist [a=Derek Smith (4)]. + +Regularly appears as soloist, recitalist and clinician with the Leipzig Gewandhaus Orchestra, Edmonton Symphony, Newfoundland Symphony, Columbus (Indiana) Symphony, Pensacola (Florida) Symphony, Hartford (Connecticut) Symphony, and Beaumont (Texas) Symphony. + +Has also appeared with many symphonic wind ensembles, including the United States "President's Own" Marine Band, La Philharmonie des Vents des Quebec, Hanover Wind Symphony, Ridgewood Concert Band, and many major university wind ensembles. + +He has been guest soloist with the United States Army Brass Band, Goteborg Brass (Sweden), Black Dyke Mills and Ridged Containers Bands (Britain), Hannaford Street Silver Band and Intrada Brass (Canada), and numerous American and Salvation Army Brass Bands. + +Performs also with his Gospel ensemble, Resounding Praise.Needs Votehttp://www.principaltrumpet.com/https://www.music.uga.edu/people/philip-smithPhil SmithPhilip SmithPhillip SmithSmithNew York PhilharmonicNew York Philharmonic EnsemblesThe Principal Brass + +953110Ulf KlausenitzerUlf Klausenitzer (born 1944) is a German violinist, conductor and music professor.Needs Votehttp://www.ulfklausenitzer.de/https://www.facebook.com/ulf.klausenitzerProf. Ulf KlausenitzerUlf KlausnitzerOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspieleNürnberger SymphonikerDornbusch-Quartett + +953112Jakob HeftiSwiss hornist, born 12 September 1947 in Schwanden, Switzerland.Needs Votehttps://www.musinfo.ch/en/personen/interpreten/?pers_id=937&abc=HJ. HeftiBerner SymphonieorchesterCollegium Musicum BaselJakob Hefti-HornquartettTonhalle-Orchester Zürich + +953178Gerhard TrackAustrian conductor, composer and arranger. +He was born September 17, 1934 in Vienna. +Son of [a1937695]. Correcthttp://www.gerhardtrack.com/http://www.myspace.com/gerhardtrackhttp://www.musiklexikon.ac.at/ml/musik_T/Track_Ernst.xmlG. TrackTrackDie Wiener SängerknabenChorus ViennensisWiener Männergesang-Verein + +953868Bill Clifton (2)William Clifton.Canadian jazz pianist. + +Born : 1916 in Toronto, Canada. +Died : 1963.Needs Votehttps://adp.library.ucsb.edu/names/357126W. CliftonW. SliftonShep Fields And His New MusicThe V-Disc All Stars + +953904Stephen KearStephen KearViolinist.Needs Votehttps://www.facebook.com/stephen.kear.54Royal Philharmonic Orchestra + +953906Gil White (2)Gil WhiteViolin player.Needs VoteRoyal Philharmonic Orchestra + +953907Edwin HoosonDouble bassist.Needs Votehttps://www.linkedin.com/in/edwin-hooson-36132455/Royal Philharmonic Orchestra + +953908Sarah BrookeClassical flutist. +She was Sub-Principal Flute with the [a=London Symphony Orchestra] (1988-1989) and member of the [a=Orchestra Of The Royal Opera House, Covent Garden] until 2016.Needs Votehttps://open.spotify.com/artist/3qlYexx4kPfylNrCPDLcqfhttps://music.apple.com/us/artist/sarah-brooke/525569482Sarah BrookLondon Symphony OrchestraRoyal Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenOrmesby Ensemble + +953909Anthony ProtheroeBritish classical violinistNeeds VoteProtheroeTony ProtheroeRoyal Philharmonic OrchestraLondon Musici + +953910Kathleen StevensonKathleen StevensonFlute player. Needs Votehttps://www.rcm.ac.uk/woodwind/professors/details/?id=02931Kathleen StephensonRoyal Philharmonic Orchestra + +953911Laurence CromwellClassical cellistNeeds VoteRoyal Philharmonic OrchestraThe London Cello Sound + +953912Lindsay ShillingLindsay ShillingBritish classical trombonist. Born 4 August 1959 in Chatteris, Cambridgeshire, England, UK. +He played in local youth bands and [a=The National Youth Brass Band Of Great Britain]. He studied at the [l290263] (1977-1981), and after graduation he ventured into the world of freelance musicianship. On leaving College, he was asked to deputise with the [a=Philip Jones Brass Ensemble], and continued to work with them for several years. He was Sub-Principal Trombone with the [a=London Symphony Orchestra] (October 1994-January 1996) and Principal with the [a=London Philharmonic Orchestra] (September 1997-January 2005). Principal Trombone with the [a855061] since January 2005. Principal Trombone also for [a=London Brass]. As a studio musician, he has featured on the soundtracks for Chicken Run, Gladiator, Lord of the Rings, and others. Professor of Trombone at the Royal College of Music, London since 1993.Needs Votehttps://www.facebook.com/lindsay.shilling.1/https://www.linkedin.com/in/lindsay-shilling-662ab142/https://en.wikipedia.org/wiki/Lindsay_Shillinghttps://www.feenotes.com/database/artists/shilling-lindsay-1959-present/https://www.rcm.ac.uk/Brass/professors/details/?id=01403https://www.deniswick.com/artist/lindsay-shilling/?doing_wp_cron=1709558019.2987890243530273437500https://www.imdb.com/name/nm9618203/Lyndsay ShellingLyndsay ShillingThe London Session OrchestraLondon Symphony OrchestraLondon Philharmonic OrchestraLondon BrassRoyal Philharmonic OrchestraOrchestre Révolutionnaire Et RomantiquePhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenThe National Youth Brass Band Of Great Britain + +953913Ken Lawrence (2)Kenneth LawrenceViolin player.Needs VoteKenneth LawrenceRoyal Philharmonic Orchestra + +953914Andrew SippingsAndrew SippingsA viola player with the Royal Philharmonic Orchestra.Needs VoteAndy SippingsRoyal Philharmonic Orchestra + +953915Alain PetitclercAlain PetitclercFrench professional classical violin player, and massage therapist. Born in Audincourt, Bourgogne-Franche-Comté, France.Needs Votehttp://www.alainpetitclerc.com/https://www.facebook.com/profile.php?id=100006167524815https://www.linkedin.com/in/alain-petitclerc-21380a16b/London Symphony OrchestraRoyal Philharmonic OrchestraOrchestre Philharmonique De Monte-CarloEnglish National Ballet Philharmonic + +953916Jack McCormackJack McCormackClassical double bassist. +Principal Double Bass of the [a=Royal Philharmonic Orchestra].Needs VoteRoyal Philharmonic Orchestra + +953917Timothy VolkardCellist.Needs VoteRoyal Philharmonic Orchestra + +953920Gareth Wood (2)Gareth WoodBritish classical bass player and composer, known for his works for wind band and brass band.Needs VoteG. WoodWoodRoyal Philharmonic Orchestra + +953921John Hill (8)Classical double bassist. +Former member of the [a=London Symphony Orchestra] (1973-1992).Needs VoteJohn M. HillLondon Symphony Orchestra + +953922Charles BeldomCharles BeldomViolinist.Needs VoteCharles BeldemRoyal Philharmonic Orchestra + +953923Julian CummingsBritish classical violin player. Born in 1939 in London, England, UK - Died in 2006. +Member of the [a=Edinburgh String Quartet], [a=English Chamber Orchestra], was an associated member of the [a=London Symphony Orchestra] (1969-1972) and played with the [a=Royal Philharmonic Orchestra] in London for 32 years. +Son of the violist [a=Keith Cummings], and brother of the cellist [a=Douglas Cummings] & the violinist [a=Diana Cummings].Needs Votehttps://www.reidconcerts.music.ed.ac.uk/performer/cummings-julian-1939-2006CummingsLondon Symphony OrchestraRoyal Philharmonic OrchestraEnglish Chamber OrchestraEdinburgh String QuartetThe Academy Of Ancient Music + +953924Robin Del MarRobin Del MarViola player. +Son of [a=Norman Del Mar] and brother of [a=Jonathan Del Mar].Needs Votehttps://www.linkedin.com/in/robin-del-mar-3948baa1/https://www.imdb.com/name/nm9000430/Robert Del MarRobin DelmarRoyal Philharmonic Orchestra + +953925Martin FennViola classical musician.Needs Votehttps://www.linkedin.com/in/martin-fenn-82410539/Royal Philharmonic OrchestraApollo Chamber Orchestra + +953926Nick ReaderNicholas ReaderBritish classical contra-bassoonist, arranger and composer. +He started his career as a member of the [a=Royal Philharmonic Orchestra], later becoming a member of both the [a=Philharmonia Orchestra] and the [a=Royal Scottish National Orchestra]. He was a founder member of [a=London Sinfonietta] and played regularly with [a=The Nash Ensemble]. It was while he was a member of [a=London Winds] that he started arranging works for large wind ensembles.Correcthttps://www.slmusicshop.co.uk/spweb/creators.php?creatorid=39170Nicholas ReaderNicolas ReaderRoyal Philharmonic OrchestraEnglish Chamber OrchestraLondon SinfoniettaPhilharmonia OrchestraRoyal Scottish National OrchestraThe Nash EnsembleLondon Wind OrchestraLondon Winds + +953927Pru WhittakerPrudence WhittakerA clarinetist who began to play the instrument at an early age; passing grade five by age eleven and gaining her ARCM diploma at seventeen. She became principal clarinet of the National Youth Orchestra of Great Britain at seventeen, and was one of the founder members of the BBC Training Orchestra when she was eighteen. At twenty, she became principal clarinet of the BBC N.Ireland Orchestra, and a year later took up the same position in the BBC Welsh Orchestra. + +When she was twenty-six, the Royal Philharmonic Orchestra invited Whittaker to become its Associate-Principal clarinet; and the only woman in the orchestra at that time. A couple of years later, she was promoted to Principal, and remained with the orchestra for the next twenty-three years until leaving in 1998. She now teaches the clarinet at Lancing College and at home.Needs VotePrudence WhittakerRoyal Philharmonic OrchestraBBC National Orchestra Of Wales + +953929Albert Dennis (2)Double bassist.Needs VoteRoyal Philharmonic Orchestra + +953930William HeggartWilliam HeggartA cellist with the Royal Philharmonic Orchestra.Needs Votehttps://www.rpo.co.uk/orchestra-players/199-cellos/784-william-heggartRoyal Philharmonic OrchestraThe London Cello Sound + +953931Carolyn FranksViolinist.Needs VoteRoyal Philharmonic Orchestra + +953932Stephen ShakeshaftViola player.Needs Votehttps://www.linkedin.com/in/stephen-shakeshaft-a3379a21/Steve ShakeshaftSteven ShakeshaftBBC Symphony OrchestraRoyal Philharmonic OrchestraThe London Telefilmonic Orchestra + +953933Geoffrey Palmer (2)Classical violin player. +Former member of the [a=London Symphony Orchestra] (1966-1967).Needs VoteG. PalmerGeoff PalmerJeff PalmerLondon Symphony OrchestraThe Armada OrchestraRoyal Philharmonic OrchestraThe London Telefilmonic OrchestraThe Kingsway Symphony Orchestra + +953935David ChattertonDavid ChattertonClassical bassoonist. +Principal Contrabassoon in the [a=Royal Philharmonic Orchestra].Needs VoteRoyal Philharmonic OrchestraThe Michael Nyman OrchestraOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicLondon Classical PlayersThe Whispering Wind BandThe English Concert + +953938David BurrowesCellist.Needs VoteRoyal Philharmonic OrchestraThe Cirrus String Quartet + +953939James WarburtonJames WarburtonHorn, saxophone and woodwind instruments player.Needs VoteRoyal Philharmonic OrchestraDownchild Blues Band + +953941Mary SamuelMary SamuelViola player. Principal viola, Bournemouth Symphony Orchestra, ca. 1971.Needs VoteRoyal Philharmonic OrchestraBournemouth Symphony Orchestra + +953943Harry JonesHarry JonesViolist.Needs VoteRoyal Philharmonic Orchestra + +953944John Holt (2)Double bassist.Needs VoteRoyal Philharmonic Orchestra + +953945Nigel PinkettNigel PinkettCello player (1945-2022).Needs Votehttps://slippedisc.com/2022/12/death-of-a-royal-philharmonic-cellist/Royal Philharmonic OrchestraThe London Cello SoundDenny Laine's Electric String Band + +953946Raymond OvensBritish violinist and painter. +He studied at the [l527847]. Former member of the [a=London Symphony Orchestra] (1953-1955). Former violinist and leader of [a=BBC Scottish Symphony Orchestra] and [a=The English National Opera Orchestra], and former co-leader of the [a=Philharmonia Orchestra], and the [a=Royal Philharmonic Orchestra]. Needs VoteR. OvensLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraVancouver Symphony OrchestraPhilharmonia OrchestraBBC Scottish Symphony OrchestraThe Royal Philharmonic Chamber EnsemblePurcell String QuartetThe English National Opera Orchestra + +953947Peter NuttingPeter NuttingViolin player.Needs Votehttps://www.linkedin.com/in/peter-nutting-b5543a9/Royal Philharmonic Orchestra + +953950Guy BebbGuy BebbViolin player.Needs VoteRoyal Philharmonic Orchestra + +953951Kate Smith (4)Classical violinist.Needs VoteRoyal Philharmonic Orchestra + +953953Timothy WelchClassical viola player.Needs Votehttps://www.imdb.com/name/nm5011428/Timothy NelchRoyal Philharmonic OrchestraBBC Concert Orchestra + +953955David HerdDavid HerdViolinist.Needs VoteRoyal Philharmonic Orchestra + +953956Don Thompson (4)Don ThompsonViolist.Needs VoteDonald ThompsonRoyal Philharmonic Orchestra + +953957Russell GilbertRussell GilbertBritish retired freelance professional orchestral violin player. Originally from Markfield, Leicestershire, England, UK. +He studied violin & piano at the [l527847] (1967-1972). He was Principal Second Violin in the [a=London Philharmonic Orchestra] for over nine years, Co-Leader of [a=The English National Opera Orchestra], No.4 1st Violin in the [a=Royal Philharmonic Orchestra], Co-leader of [a=The National Symphony Orchestra], and member of the [a=London Symphony Orchestra] (1973-1974).Needs Votehttps://www.facebook.com/russell.gilbert.5437/Russel GilbertLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe National Symphony OrchestraThe English National Opera Orchestra + +953959Nina WhitehurstNina WhitehurstViolin player.Needs VoteRoyal Philharmonic Orchestra + +953960John SibleyJohn SibleyJohn Sibley is a professional trombonist with a career spanning over 30 years, during which time he was sub-principal trombone with the Royal Philharmonic Orchestra for 22 years, and Chairman of the Orchestra between 1996 and 1999. He is now Head of Music Service at the Newham Music Trust.Needs VoteRoyal Philharmonic Orchestra + +953961Julian CowardJulian CowardA flautist with the Royal Philharmonic Orchestra.Needs VoteRoyal Philharmonic Orchestra + +953963Aline BrewerAline BrewerHarpist.Needs Votehttps://www.youtube.com/channel/UCCatXwecLkEkV8K8UhOPhQwhttps://www.imdb.com/name/nm11971193/Alice BrewerRoyal Philharmonic OrchestraPhilharmonia Orchestra + +953965Stewart McIlwhamStewart McIlwhamFlautist.Needs Votehttps://lpo.org.uk/people/stewart-mcilwham/Stuart McIlwhamLondon Philharmonic OrchestraRoyal Philharmonic OrchestraNational Youth Orchestra Of Great BritainEuropean Union Youth Orchestra + +953966Michael Dolan (2)Michael DolanViolin player.Needs Votehttps://www.linkedin.com/in/michael-dolan-47aa1969/Mike DolanRoyal Philharmonic Orchestra + +953967Alan HammondAlan HammondBassoonist (b. 1932; d. 8 December 2018).Needs Votehttps://www.legacy.com/us/obituaries/legacyremembers/alan-hammond-obituary?id=45624728London Symphony OrchestraRoyal Philharmonic Orchestra + +953968Steve MersonStephen MersonViolin player.Needs VoteStephen MersonRoyal Philharmonic Orchestra + +953969David StoweDavid StoweDavid Stowe plays the tenor trombone, alto trombone, euphonium, and bass trumpet. +Needs VoteRoyal Philharmonic Orchestra + +953971Martin ChiversMartin ChiversClassical violist with the [a=Royal Philharmonic Orchestra]. +Former member of the [a=London Symphony Orchestra] (1976-1982).Needs VoteLondon Symphony OrchestraRoyal Philharmonic Orchestra + +953972Andrew KleeAndrew KleeViolin player.Needs Votehttps://www.rpo.co.uk/orchestra-players/196-first-violins/829-andrew-kleeRoyal Philharmonic Orchestra + +953973Peter VelPeter VelClassical cellist and violist.Needs Votehttps://www.vstrings.co.uk/P. VelPeter VellLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe Praetorius ConsortThe Jaye ConsortThe London Cello Sound + +953974Peter HetheringtonPeter HetheringtonDouble bassist.Needs VoteRoyal Philharmonic Orchestra + +953975Roy BensonRoy BensonBassist.Needs VoteRoyal Philharmonic Orchestra + +953976David Richard HirschmanClassical viola playerNeeds VoteDavid HirschmanRoyal Philharmonic Orchestra + +953977Eldon FoxEldon Fox, an Australian cellist, was named principal cellist of the [a2102986] under [a561054] after World War II. In 1951, he traveled to Europe to study with [a1005954]. Subsequently, he served as the principal cellist for the [a341104] and pursued his professional career until his retirement at age 80.Needs Votehttps://www.the-paulmccartney-project.com/artist/eldon-fox/Элдон ФоксRoyal Philharmonic OrchestraPhilharmonia OrchestraThe London Cello SoundThe Royal Philharmonic Ensemble + +953978Ferenc SzucsHungarian classical cellist and educator.Needs VoteFerenz SzucsBBC Symphony OrchestraLondon Festival OrchestraHungarian State OrchestraThe New Queen's Hall Orchestra + +954270Katrin FischerClassical soprano vocalistNeeds VoteRundfunkchor Berlin + +954278Hans-Jörn WeberHanns-Jörn WeberGerman actor and voice actor. +Born 16 December 1941 in Bromberg, Germany (today Bydgoszcz, Poland). +Died 17 February 2021Correcthttps://de.wikipedia.org/wiki/Hanns-J%C3%B6rn_WeberHanns-Jörn WeberHans Jörn Weber + +954383Bob Mosley (2)Robert Powhatan MosleyUS jazz pianist who worked with [a=Mabel Scott] and recorded for labels Rhythm, [l=Melodisc (3)], [l=Apollo Records (2)], [l=Black & White], [l=Comet (8)] and [l=Bel-Tone Records]. Backed [a=Wynonie Harris] And [a=Rabon Tarrant] for [l=Apollo Records (2)]. +Born December 6, 1913 - Died September 26, 1955 + +Do NOT confuse with songwriter [a=Robert Mosely].Needs VoteB. MoseleyB. MosleyBoB MoselyBob MoseleyBob MoselyBob Mosely (2)Bob MosleyBob Mosley All StarsMoselyMosleyRobert MoselyRobert MosleyJack McVea's All StarsBob Mosely & All StarsCharles Mingus SextetJack McVea & His Band + +954495Erik FreitagAustrian violinist and composer, born 1 February 1940 in Vienna, Austria.Needs VoteE.FreitagFreitagSveriges Radios SymfoniorkesterStockholms Filharmoniska Orkester + +954522Edward CorneliusAmerican jazz trumpeter, a.k.a. Corky Cornelius. +Born December 3, 1914, Indianapolis, Indiana, USA. +Died August 3, 1943 in New York, New York, USA (age of 28). +He was married to [a381569] from 1941 until his death in 1943. + +He began his career in the early 1930s, playing with Les Brown, Buddy Rogers, and Frank Dailey. He joined Benny Goodman's band early in 1939, and went with Gene Krupa when the drummer split off to form his own group. He left Gene Krupa and joined the Casa Loma Orchestra from 1941 until 1943Needs Votehttps://en.wikipedia.org/wiki/Corky_Corneliushttps://www.allmusic.com/artist/corky-cornelius-mn0001199836https://adp.library.ucsb.edu/index.php/mastertalent/detail/116061/Cornelius_Corkyhttps://adp.library.ucsb.edu/names/116061"Corky" CorneliusCork y CorneliusCorky CorneliousCorky CornelisCorky CorneliusCorneliusEdward “Corky” CorneliusGene Krupa And His OrchestraBenny Goodman And His OrchestraGlen Gray & The Casa Loma Orchestra + +954627Fritz GrünbaumFranz Friedrich GrünbaumAustrian Jewish cabaret artist, operetta and pop song writer, director, actor and master of ceremonies, born 7 April 1880 in Brno, Moravia (now Czech Republic), died 14 January 1941 at the Dachau concentration camp, Germany.Needs Votehttps://adp.library.ucsb.edu/names/105404https://en.wikipedia.org/wiki/Fritz_GrünbaumA. GrünbaumF. GruenbaumF. GrunbaumF. GrünbaumFr. GrünbaumFriedrich GrünbaumFritz GruenbaumFritz GrunbaumGruenbaumGrunbaumGrünbaum + +954629Louis MaubonFrench writer died in September 1957 +He collaborated with [a954636] as [a4176605].Needs Votehttp://data.bnf.fr/14828246/louis_maubonL. MaubonMaibonManbonMaubonNaubonBertal Maubon + +954636Marcel BertalMarcel BlochFrench writer (1882 - 1953-08-03) +Member of "Amicale des chansonniers de cabaret" and of "Amicale des combattants du spectacle" +Worked with [a954629] as [a4176605]. + +Needs Votehttp://data.bnf.fr/13788288/marcel_bertalhttps://adp.library.ucsb.edu/names/304170BertalBertolM. BertalMarcel Bertal-RonnBertal Maubon + +954699Adrian BeersAdrian Simon BeersBritish classical double bass player, and teacher. Born 6 January 1916, Kelvinside, Glasgow, Scotland, UK - Died 8 April 2004, London, England, UK. +He studied at the [l290263]. Member of the [a454293] from 1948 to 1963 but returned occasionally until 2002. Principal player in the [a=Philharmonia Orchestra] and the [a=English Chamber Orchestra]. Founding member of [a=Melos Ensemble Of London]. He taught at the [l290263] and the [l459222] (since 1973). +He was awarded an MBE in 1989.Needs Votehttps://open.spotify.com/artist/3tcJuSIy9KyWD8srI7tUkohttps://music.apple.com/gb/artist/adrian-beers/67893842https://en.wikipedia.org/wiki/Adrian_Beershttps://www.theguardian.com/news/2004/jul/16/guardianobituaries.artsobituarieshttps://www.thetimes.co.uk/article/adrian-beers-0p68n6kbj9thttps://www.imdb.com/name/nm4333308/A. BeersAdrian BeerEnglish Chamber OrchestraPhilharmonia OrchestraMelos Ensemble Of LondonGoldsbrough OrchestraPrometheus Ensemble + +954701Wilfred HambletonClassical wind instrumentalist (bass clarinet & basset horn).Needs VoteWilfrid HambletonPhilharmonia OrchestraLondon Wind SoloistsThe London Wind Quintet + +954704Emanuel HurwitzBritish chamber violin player and professor. Born 7 May 1919 in Aldgate, East London, England, UK – Died 19 November 2006 in London, England, UK +He studied at the [l527847]. The 2nd World War interrupted his career with a spell in the [a=Royal Army Medical Corps Staff Band]. After the war, he founded and played in the [b]Hurwitz String Quartet[/b] (1946-1951) and became member of the [a=Goldsbrough Orchestra]/[a=English Chamber Orchestra] in 1948. He became leader of the ECO and held the position for 20 years, until 1968. He also led the [a=Melos Ensemble Of London] (1956-1972) as Principal Violin. In 1968, he formed the [a=Hurwitz Chamber Orchestra], renamed [a=The Serenata Of London] in 1972. In 1969, he became leader of the [a=New Philharmonia Orchestra]; he left in 1971. In 1970, he joined the [a=Aeolian String Quartet] as leader; this was the quartet's last incarnation, that lasted until the group disbanded in 1981. For many years he was Pofessor of Violin at the Royal Academy of Music. +He was appointed a Commander of the Order of the British Empire (CBE) in 1978. +Father of [a=Mike Hurwitz] and father-in-law of [a=Miriam Keogh].Needs Votehttps://www.youtube.com/channel/UCfxISxr5dId5GBxakoMCVUg/featuredhttps://open.spotify.com/artist/0rfHUoEzQQO1BJwrnt8aIvhttps://music.apple.com/us/artist/emanuel-hurwitz/4561260http://en.wikipedia.org/wiki/Emanuel_Hurwitzhttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-0000013597https://play.primephonic.com/artist/emanuel-hurwitz-1919https://musicianbio.org/emanuel-hurwitz/https://harrypotter.fandom.com/wiki/Emanuel_Hurwitzhttps://www.theguardian.com/news/2006/nov/20/guardianobituaries.obituarieshttps://www.independent.co.uk/news/obituaries/emanuel-hurwitz-425144.htmlhttps://www.imdb.com/name/nm6976387/Emanuel HurwizEmmanuel HurwitzHurwitzEnglish Chamber OrchestraNew Philharmonia OrchestraAeolian String QuartetMelos Ensemble Of LondonGoldsbrough OrchestraDennis Brain Wind EnsemblePhilharmonia String QuartetRoyal Army Medical Corps Staff BandLondon Baroque EnsembleThe Serenata Of LondonHurwitz Chamber Orchestra + +954705Thea KingDame Thea KingBorn: 26th December 1925 Hitchin, Hertfordshire, England +Died: 26th June 2007 +British clarinetist. Having begun her career as a pianist, she returned to the piano in later years. Appointed a dame in 2001. +In January 1953, she married [a=Frederick Thurston] (her clarinet tutor at [l290263]), but he died from lung cancer in December of the same year. She never remarried.Needs Votehttp://en.wikipedia.org/wiki/Thea_KingDame Thea KingT. KingEnglish Chamber Orchestra + +954707Stephen TrierStephen Luke TrierBritish classical clarinet, basset horn and saxophone player, and teacher. Born 13 March 1930 in Woolton Hill, Hampshire, England, UK - Died 3 October 1999. +He studied at the [l290263]. He was invited to join the newly founded [a=Royal Philharmonic Orchestra] for their tour of America in 1950. He soon became a regular member. He stayed with the RPO until 1961, when he joined the [a=London Symphony Orchestra], where he remained until illness brought his playing career to an end in 1995. Former Principal Bass Clarinet with the [a=London Symphony Orchestra] (1955-1966). He became Professor of saxophone at [l305416] and later at the Royal College of Music, where he also taught bass clarinet and basset horn.Needs Votehttps://www.theguardian.com/news/1999/dec/30/guardianobituaries2Steve TrierSteven TrierLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon Wind OrchestraLondon Wind Soloists + +954708Allan FryClassical percussionist.Needs VoteLondon Philharmonic Orchestra + +954795Henri VieuxtempsHenri François Joseph VieuxtempsHenri Vieuxtemps (February 17, 1820 – June 6, 1881) was a Belgian composer and violinist.Needs Votehttps://adp.library.ucsb.edu/names/100023A. VieuxtempsH. VieuxtempsH. ViextempsH. ヴュータンHenri ViextempsHenry VieuxtempsVieux TempsVieuxtempsА. ВьетанА. Вьетан = VietanА. ВьётанАнри ВьетанВьетанГ. ВьетанХ.Вьетанヴュータン + +954965Jérôme RocancourtFrench horn player.CorrectOrchestre Des Concerts Lamoureux + +955038Gunar KaltofenGunar Kaltofen (8 July 1947 - 8 June 2004) was a German violinist.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigMendelssohn-Quartett Leipzig + +955239Charlotte BalzereitGerman harpist, born 1980 in Wiesbaden, Germany.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerBundesjugendorchester + +955632Max SalpeterBritish classical violinist and orchestra leader (born 16 April 1908 in Whitechapel, East London, England, UK; died 1 January 2010). +His parents had recently arrived from Kolomiya, Ukraine (formerly known as Kolomea, a small town in Galicia, then part of the Austro-Hungarian empire). He became a member of the [a212726] in 1933, playing in the first violins until 1939, when he joined the [url=https://www.discogs.com/artist/10572625-The-Royal-Air-Force-Orchestra]RAF Symphony Orchestra[/url]. In 1949 he was invited to co-lead the [a=Philharmonia Orchestra] by the orchestra's founder, [a=Walter Legge]. On leaving the Philharmonia in 1956, he formed the [a=Prometheus Ensemble]. He also led the [a=London Mozart Players], [a=The New London Orchestra], [a=The Boyd Neel Orchestra], and the [a=Pro Arte Orchestra Of London]. He was also a member of several string quartets, including the [a=Kutcher Quartet], and the [a=Blech String Quartet]. He retired from playing in 1986.Needs Votehttp://www.guardian.co.uk/music/2010/mar/21/max-salpeter-obituaryhttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/7198718/Max-Salpeter.htmlhttps://de.wikipedia.org/wiki/Max_SalpeterM. SalpeterM. SaltpeterSalpeterPro Arte OrchestraLondon Symphony OrchestraPhilharmonia OrchestraLondon Mozart PlayersThe Boyd Neel OrchestraPrometheus EnsembleLeslie Jones And His Orchestra Of LondonLondon Baroque EnsembleKutcher QuartetThe Royal Air Force OrchestraBlech String QuartetThe New London Orchestra (2) + +955643Martin GattBritish classical bassoonist and Professor of Bassoon. Born in 1936 or 1937 in Aberdeen, Scotland, UK. +He studied at the [l290263]. He has served as principal bassoonist for [a271875] (1958-1966), [a415725] (1966-1976), and the [a212726] (1977-1998). He also was the bassoonist in [a=The Barry Tuckwell Wind Quintet] from 1967 to 1991. +He taught at [l305416] (1967-1984). Professor of Bassoon at the Royal College of Music.Needs Votehttps://www.facebook.com/martin.gatt.986https://www.youtube.com/channel/UCzoiKkT0WyW6KrziElhYY8Ahttps://open.spotify.com/artist/1ZFTZ8QPnfYvjGkZa9BMiphttps://music.apple.com/gb/artist/martin-gatt/4572627https://en.wikipedia.org/wiki/Martin_Gatthttps://www.spartanpress.co.uk/spweb/creators.php?creatorid=2111http://www.rcm.ac.uk/woodwind/professors/details/?id=01273London Symphony OrchestraLondon Philharmonic OrchestraEnglish Chamber OrchestraLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsLondon Wind OrchestraThe Martin Goldstein PlayersThe Music PartyAcademy Of St. Martin-in-the-Fields Chamber EnsembleLondon Bach EnsembleThe Barry Tuckwell Wind Quintet + +955645Leo BirnbaumBritish viola player. Born 9 February 1911 in London, England, UK - Died 20 April 2008. + +[b]Not to be confused with the American music editor [a=Leon Birnbaum][/b]. + +He studied at [l305416]. In 1932, he was invited to become the youngest founder member of the [a=London Philharmonic Orchestra] remaining with the Orchestra through to 1938, when he briefly joined [a=The London Symphony Orchestra] (1939-1940) before playing in [a=Mantovani And His Orchestra] in the West End and in 37 wartime recordings. He later joined the [a=Coldstream Guards]. After the war, he joined the [a271875] as Principal Viola. By the end of the 1950s he decided to work entirely freelance. He was in the backing orchestera for [a=The Beatles]' first studio recording of "Hello Goodbye". He retired in 1986.Needs Votehttps://open.spotify.com/artist/4IdrLAnsJ4IOa9i0O8F6tphttps://books.google.se/books?id=spOxzrifZjcC&pg=PT214&lpg=PT214&dq=leo+birnbaum+viola&source=bl&ots=C9HnvZ09IA&sig=ACfU3U3pWILZ5STUK7G4hJ3PStoXsvOgOw&hl=en&sa=X&ved=2ahUKEwiKlYmzqbfuAhUyx4sKHSp4AuQ4ChDoATAIegQIBxAC#v=onepage&q=leo%20birnbaum%20viola&f=falsehttps://www.gsmd.ac.uk/fileadmin/user_upload/photos/Staff/Alumni_Office/Autumn_2008_Newsletter_final.pdfhttps://books.google.se/books?id=X0unFqqjhMAC&pg=PA89&lpg=PA89&dq=leo+birnbaum+viola&source=bl&ots=dugwGy4Cz9&sig=ACfU3U0jTS1o3rkjooYovcBWYJWTew-BpQ&hl=en&sa=X&ved=2ahUKEwiKlYmzqbfuAhUyx4sKHSp4AuQ4ChDoATACegQIAxAC#v=onepage&q=leo%20birnbaum%20viola&f=falsehttps://sites.google.com/site/hazeldakers//family-history-stories-and-articles-by-hazel-dakers/my-family-from-zgierzhttps://www.telegraph.co.uk/news/obituaries/1927317/Leo-Birnbaum.htmlhttps://groups.google.com/g/alt.obituaries/c/S4ktf8h6mg4https://www.the-paulmccartney-project.com/artist/leo-birnbaum/BirneyLondon Symphony OrchestraLondon Philharmonic OrchestraMantovani And His OrchestraColdstream GuardsPhilharmonia OrchestraLeslie Jones And His Orchestra Of London + +955646Gwyn EdwardsGwynne EdwardsBritish classical violist, and Professor of Viola and chamber music. Born in 1909 in Pontycymer, Wales, UK - Died 9 June 2000 in Leominster, Herefordshire, England, UK. +He studied at the [l527847]. Already in the 1930s, he began playing in the [a=BBC Symphony Orchestra], where he returned after the war. He served as principal violist with the [a212726] (1947-1954) and [a1027989] as well as co-principal violist of the [a289522] and [a153980]. He played chamber music with the [b]Quartet Pro Musica[/b] and [a=The Virtuoso Ensemble]. He also did much freelance work at [l=Elstree Studios]. Along the way, as a freelance, he also played for [a=The Beatles], and can be heard on "A Day In The Life" from the album [m=23934]. He was Professor at the Royal Academy of Music for 36-37 years. + +Possibly the same as [a=Gwen Edwards (2)]?Needs Votehttps://www.blogen.wiki/blog/cs/Gwynne_Edwardshttps://www.herefordtimes.com/news/5710111.top-musician-dies-at-90/https://herder.com.mx/en/autores-writers/gwynne-edwardshttps://www.the-paulmccartney-project.com/artist/gwynne-edwards/https://cs.wikipedia.org/wiki/Gwynne_EdwardsG. EdwardsGwynne EdwardsLondon Symphony OrchestraBBC Symphony OrchestraVirtuoso Chamber EnsembleThe Virtuoso EnsembleThe Francis Chagrin EnsembleLondon Symphony Orchestra Chamber Ensemble + +955647Peter BensonViolinist. +Former member of the [a=London Symphony Orchestra] in 1966.Needs VoteBensonP. BensonLondon Symphony OrchestraRobert Farnon And His Orchestra + +955993Mary OsborneMary OrsbornAmerican jazz guitarist +Born July 17, 1921 in Minot, North Dakota +Died March 4, 1992 in Bakersfield, California +Osborne began in the Winifred McDonnell Trio in 1938 and it believed she adopted her modified name at this time; because of her age McDonnell became her legal guardian. She first heard the electric guitar when she saw [a312997] and recognized the chord changes [a253481] used on St Louis Blues when Christian played the tune. He invited her to sit in and the two became close friends for the rest of his life. She married trumpeter, Ralf Scaffidi in 1942 and had her own radio program on NBC in 1948. In 1967, she and her family moved to Bakerfield in California and established the Rosac Electronics Company which then morphed into the Osborne Guitar Company and then into Osborne Sound Laboratories. The company manufactured guitars, basses, and amplifiers until it folded in 1980. During her career as a guitarist, she worked with Coleman Hawkins, Stuff Smith, and The Beryl Booker Trio as well as her own group, The Mary Osborne Trio.Needs Votehttp://classicjazzguitar.com/artists/artists_page.jsp?artist=21https://www.nytimes.com/1992/03/06/arts/mary-osborne-electric-guitarist-lauded-in-jazz-world-dies-at-70.htmlhttps://www.nytimes.com/1991/08/30/arts/pop-jazz-mary-osborne-makes-a-return-after-10-years.htmlhttps://www.allmusic.com/artist/mary-osborne-mn0000381800/creditshttps://www.inforum.com/lifestyle/arts-and-entertainment/did-you-know-that-queen-of-the-jazz-guitar-born-and-raised-in-north-dakotahttps://adp.library.ucsb.edu/names/207527https://en.wikipedia.org/wiki/Mary_OsborneMary OsbornMary OsbourneMary OshborneOsborneColeman Hawkins' 52nd Street All StarsStuff Smith QuartetJack Sterling And His QuintetBeryl Booker TrioMary Osborne TrioStuff Smith And Mary Osborne Quartet + +955997Fred OhmsFrederick D. Ohms.American jazz trombonist. +Born : 1918 in Freeport, Nassau County, New York. +Died : May, 1956 in Mineola, Nassau County, New York. (double pneumonia) + +Worked with : Roy Eldridge, Coleman Hawkins, Eddie Condon, Quincy Jones, Jan Savitt, Anita O’Day, Eartha Kitt, Ella Fitzgerald, Gene Krupa, Manny Albam and many others. +Needs Votehttps://adp.library.ucsb.edu/names/113762F. OhmsFreddie OhmsGene Krupa And His OrchestraEddie Condon And His OrchestraBilly Byers And His OrchestraJoe Newman And His Orchestra + +955999Marion DeVetaAmerican baritone saxophonist from the Swing eraNeeds VoteMarion De VetaMarion Di VetaColeman Hawkins All Star BandColeman Hawkins And His Orchestra + +956001Julius BakerJulius Baker (born September 23, 1915, Cleveland, Ohio, USA - died August 6, 2003, Danbury, Connecticut, USA) was an American flute player.Needs Votehttp://www.juliusbaker.com/https://en.wikipedia.org/wiki/Julius_Bakerhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/302607/Baker_JuliusBakerJ. BakerJulie BakerNew York PhilharmonicThe Cleveland OrchestraChicago Symphony OrchestraBilly Byers And His OrchestraPittsburgh Symphony OrchestraBach Aria GroupFritz Reiner And His Orchestra + +956216Brian Smith (12)Classical violinist. +[b]Not to be confused with the 1960s-1970s violinist [a=Brian Smith (31)][/b]. +Former member of the [a=London Symphony Orchestra] (1978-1980).Needs VoteLondon Symphony OrchestraLondon Philharmonic OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersHanover Band + +956327Karel BidloKarel BidloCzech bassoonist and educator. +Born January 13, 1904 in Hluboká nad Vltavou (former Austro-Hungarian Empire), died July 13, 1992 in Prague (former Czechoslovakia). +Needs Votehttp://cs.wikipedia.org/wiki/Karel_BidloBidloFrantišek BidloK. BidloКарел БидлоThe Czech Philharmonic OrchestraPrague Wind QuintetArs Rediviva EnsemblePrague Woodwind Octet + +956547Juan José FernándezJuan José Fernández MurlanchSpanish chorus master and pianist from San Sebastian/Donostia, Basque Country, founded the [a1142672] in 2004Needs VoteCoral AldapetaOrfeón Donostiarra + +956561Walter GullinoOperatic tenor, born 1 June 1933 in Dilolo, Belgian Congo (today Democratic Republic of the Congo).CorrectGullinoV. GullinoW. GullinoВ. Гуллино + +956663Jerry GrossmanJerry GrossmanAmerican cellist from Cambridge, Massachusetts, USA.Needs Votehttps://de.wikipedia.org/wiki/Jerry_GrossmanGerry GrossmanNew York PhilharmonicChicago Symphony OrchestraOrpheus Chamber OrchestraThe Metropolitan Opera House Orchestra + +956664Richard RoodAmerican violinist, born 1955, in Cleveland, Ohio, 1st violin of the New York City Opera and the Associate Concertmaster of the Santa Fe Opera.Needs Votehttp://en.wikipedia.org/wiki/Richard_W._RoodThe American Symphony OrchestraSteve Reich And MusiciansOrpheus Chamber OrchestraMostly Mozart OrchestraNew York City Opera OrchestraCentral Park Strings + +956668Martha Caplin-SilvermanAmerican violinist.Needs Votehttp://marthacaplin.com/Martha CaplinMartha Caplin SilvermanMartha CaplinOrpheus Chamber Orchestra + +956673Jonathan SpitzClassical cellist. Performs as soloist, chamber musician and orchestral principal.Needs Votehttps://www.njsymphony.org/musicians/detail/jonathan-spitzJohnathan SpitzOrpheus Chamber OrchestraNew Jersey Symphony Orchestra + +956888Götz-Michael RiethEngineer at [l267006]CorrectGoetz-Michael RiethGotz Michael RiethGötz M. RiethGötz Michael RiethGötz Michael, Michael RiethGötz Rieth + +956980Stephen Jones (7)Classical violinist from the UK.Needs VoteNew London ConsortThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe King's ConsortThe Symphony Of Harmony And InventionClassical OperaThe English Concert + +957085Teddy Lee (2)Ted LegaAmerican dance orchestra leader and alto saxophonist born Ted Lega (1918-1998) from Joliet Illinois. He first played saxophone in the Joliet Township HS band. He then played professionally beginning in the late 1930s with Mel Marvin and His Orchestra (Marvin and other members were also from the Joliet Township HS band), then the George Olden Orchestra, the Chuck Foster Orchestra, and the Ray Pearl and his Orchestra also known as Ray Pearl and his Musical Gems). When the Ray Pearl Orchestra broke up in 1956 he played for a year with the Wayne King Orchestra before forming the Teddy Lee Orchestra in 1958.He led the Orchestra until he died. His son, also Teddy, took over the orchestra in about 1992.Needs Votehttp://teddyleeorchestra.com/history.htmlTed LeeTommy Dorsey And His OrchestraGeorge Olsen And His OrchestraChuck Foster & His OrchestraRay Pearl And His OrchestraThe Teddy Lee Orchestra + +957098Jean DupouyClassical violist.Needs VoteJ. DupouyNew York String QuartetOrchestre De ParisThe Composers Quartet + +957152Kazuo Fukushima福島 和夫Japanese composer, born April 11, 1930, in Tokyo/Japan.Correcthttp://de.wikipedia.org/wiki/Kazuo_FukushimaFukushimaKatsuo FukushimaKazuo Fukušima福島和夫 + +957263Martin Smith (15)Violinist.Needs VoteThe Duke QuartetEnglish Chamber OrchestraLondon Mozart PlayersThe Cirrus String Quartet + +957606Michael DzionoraClassical flautistCorrectMichael DzionaraSüdwestdeutsches Kammerorchester + +957607Hermann WerdermannClassical keyboard instrumentalistNeeds VoteH. WerdermannHermann WerdemannHerrmann WerdermannSüdwestdeutsches Kammerorchester + +957651Lothar BöhmClassical cornett playerNeeds VoteBöhmDresdner Philharmonie + +957656Hans HombschGerman trombonist and composer, born 30 March 1935 in Munzig, Germany and died 28 January 2009 in Dresden, Germany.Correcthttp://www.hans-hombsch.de/H. HombschHombschStaatskapelle DresdenDie BlasewitzerSemper-House BandInstrumentalgruppe Hans Hombsch + +957658Klaus SchweterGerman tuba player, born 1 June 1940 in Herrnhut, Germany and died 2 June 1995 in Dresden, Germany.Needs VoteSchweterStaatskapelle DresdenDie BlasewitzerBlechbläserensemble Ludwig Güttler + +957661Roland RudolphGerman classical trumpet player and hornistNeeds VoteR. RudolphRudolphNeues Bachisches Collegium Musicum LeipzigVirtuosi SaxoniaeBlechbläserensemble Ludwig Güttler + +957662Rainer JurkiewiczClassical hornist.Needs VoteJurkiewiczRainer JurkiewiezWDR Sinfonieorchester KölnConcentus Musicus WienBlechbläserensemble Ludwig GüttlerBach, Blech & Blues + +957663Gerhard EßbachGerman trombonist, born 9 June 1942 in Sachsenberg - Georgenthal, Germany.Needs VoteEßbachGerhard EssbachGewandhausorchester LeipzigStaatskapelle DresdenNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaDie BlasewitzerBlasende Music LeipzigHallesche PhilharmonieBlechbläserensemble Ludwig Güttler + +957664Lutz RandowGerman trumpeter.Needs VoteRandowBamberger SymphonikerBlechbläserensemble Ludwig Güttler + +957724Fillippo AzzaioloItalian [b]singer[/b] and [b]composer[/b] of the Renaissance era. +Born 1535 in Bologna, died after 1569.Needs Votehttps://en.wikipedia.org/wiki/Filippo_AzzaioloAzzaiolloAzzaioloF. AzzaioloFilippo AzzailoloFilippo AzzaiolaFilippo AzzaioloFillipo AzzaioloFillppo Azzaiolo + +957730Adrian AeschbacherSwiss classical pianist, born 10 May 1912 in Langenthal, Switzerland and died 9 November 2002 in Zurich, Switzerland.Needs Votehttps://en.wikipedia.org/wiki/Adrian_Aeschbacherhttps://adp.library.ucsb.edu/names/116259A. AeschbacherАдриан Эшбахер + +958011Karl-Heinz SchneiderClassical recording producer, mainly for Deutsche Grammophon.CorrectK.-H. SchneiderK.H. SchneiderKarl Heinz SchneiderKarl-Heinz ScheiderKarl-Heinz SchneiderKarlheinz Schneider + +958012Harald BaudisGerman sound engineer [Balance Engineer, Tonmeister] and producer for recordings of classical music, mainly for [l=Deutsche Grammophon], [l89289] & [l429792]. +In the runouts often found as BA-x or BA/x (e.g. BA-SL or BA-W, etc.) or BS - then credit with Engineer and ANV BA or B.CorrectBBABSBaH. BaudisHarold BaudisХ. Баудис + +958146Stephen Williams (3)Double bass player. +Born in Wales.Needs VoteSteve WilliamsSteven WilliamsRoyal Philharmonic OrchestraEnglish Chamber OrchestraBritten SinfoniaThe Gaudier Ensemble + +958186Brian Thomas (4)Classical violin player. +Former SP First Violin with the [a=London Symphony Orchestra] (1962-1976).Needs VoteB. ThomasB.ThomasLondon Symphony OrchestraRoyal Philharmonic OrchestraVic Lewis And His Orchestra + +958391Michel RenardFrench cello and viola player.Needs VoteLes Arts FlorissantsIl Seminario MusicaleCollegium Musicum De ParisLes Talens LyriquesLes Folies FrançoisesLe Concert D'AstréeLes Musiciens Du LouvreOrchestre De Chambre Paul KuentzRicercar ConsortEnsemble CristoforiConcerto Rococo + +958561Johannes HeidenreichGerman conductor, born 1885, Breslau, Germany died 1934 Berlin, Germany. He recorded for Homocord and Grammophon/Polydor.Needs VoteDirigent: Johannes HeidenreichHeidenreichJoh. HeidenreichKapellmstr. Johannes Heidenreich + +959032Minyoung ChangClassical violinistCorrectM. ChangLos Angeles Philharmonic Orchestra + +959112Leon WashingtonLeon Diamond Washington.American jazz saxophonist (tenor). +Born : June 27, 1909 in Jackson, Mississippi. +Died : February 19, 1973 in Chicago, Illinois. (Leukemia) + +Leon worked with : Zinky Cohn, Frankie Franko (1930), Bernie Young (1931-'33), Carroll Dickerson (1934-'35), Louis Armstrong (1935), Earl Hines (1937), Red Saunders (1938-1963). +Needs Votehttps://adp.library.ucsb.edu/names/350116L. WashingtonLeo WashingtonLeon "Diamond" WashingtonWashingtonEarl Hines And His OrchestraFrankie Franko & His LouisianiansRed Saunders & His OrchestraRed Saunders Sextette + +959326Merrill GreenbergOboist & English Horn player, born 1950 in New York.Needs VoteMeril GrinbergMerril GrinbergIsrael Philharmonic OrchestraLong Island Youth Orchestra + +959372Wilhelm MelcherGerman classical violinist (Hamburg, April 5, 1940 – March 5, 2005). +Founder of the [a=Melos Quartett]. +Needs Votehttp://en.wikipedia.org/wiki/Wilhelm_MelcherW. MelcherWilhelm Mecherヴェルヘルム・メルヒャーBachcollegium StuttgartWürttembergisches KammerorchesterMelos QuartettHamburger Symphoniker + +959373Gerhard VossGerman classical violinist, born in 1939.Needs Voteゲルハルト・フォスBachcollegium StuttgartMelos Quartett + +959374Peter Buck (2)Prof. Peter BuckGerman classical cellist and university lecturer (* 18 May 1937 in Stuttgart, German Empire; † 14 March 2024 in Stuttgart, Germany).Needs Votehttps://de.wikipedia.org/wiki/Peter_Buck_(Cellist)P. BuckPeter Buckペーター・ブックBachcollegium StuttgartWürttembergisches KammerorchesterMelos QuartettCello-Ensemble Peter Buck + +959375Melos QuartettGerman classical string quartet from Stuttgart; it existed from 1965 to 2005.Needs Votehttp://en.wikipedia.org/wiki/Melos_Quartethttp://www.klassik-heute.de/4daction/www_interpret?id=8082Cuarteto MelosCuarteto Melos de StuttgartLe Quatuor MelosMelos - QuartetMelos KwartetMelos QuartetMelos Quartet StuttgartMelos Quartet, StuttgartMelos Quartett StuttgartMelos Quartett, StuttgartMelos QuartetteMelos StreichquartettMelos String QuartetMelos-Quartet StuttgartMelos-QuartettMelos-Quartett StuttgartMelos-Quartett, StuttgartMelos-Stuttgart QuartetMembers Of The Melos QuartetQuatuor MelosQuatuor Melos, StuttgartThe Melos QuartetThe Melos Quartettメロス弦楽四重奏団Wilhelm-Melcher-QuartettWilhelm MelcherGerhard VossPeter Buck (2)Hermann VossIda Bieler + +959376Hermann VossGerman classical viola player, born in 1934.Needs Votehttps://en.wikipedia.org/wiki/Hermann_Voss_(musician)ヘルマン・フォスMelos Quartett + +959400Nicolas RivenqClassical Bass and Baritone vocalistNeeds VoteN. RivenqRivenqLes Arts Florissants + +959402Christophe ViviesClassical bassoonistNeeds VoteOrchestre National Du Capitole De Toulouse + +959403David MinettiClassical clarinetistNeeds VoteOrchestre National Du Capitole De Toulouse + +959406Nicolas CavallierBass vocalist.CorrectCavallierLes Arts FlorissantsWilhelmshavener Vokalensemble + +959407Lionel BelhaceneClassical bassoonistNeeds VoteOrchestre National Du Capitole De Toulouse + +959408François Laurent (3)Classical flautistNeeds VoteOrchestre National Du Capitole De Toulouse + +959409Roberto AlagnaFrench operatic tenor, born 7 June 1963 in Clichy-sous-Bois, France. +Brother of [a4409902]. Husband of Polish operatic soprano [a=Aleksandra Kurzak].Needs Votehttps://www.robertoalagna.com/https://www.facebook.com/RobertoAlagna.Tenorhttps://www.instagram.com/robertoalagna.tenor/https://www.youtube.com/c/RobertoAlagnaOfficialhttps://en.wikipedia.org/wiki/Roberto_Alagnahttps://www.imdb.com/name/nm0015813/AlagnaR. AlagnaR.AlagnaRobertoロベルト・アラーニロベルト・アラーニャ + +959414Florence FourcassieFlorence Fourcassie-TardyClassical flautistNeeds VoteOrchestre National Du Capitole De Toulouse + +959415Choeur "Les Eléments"CorrectChœur "Les Eléments"Chœur "Les Éléments"Chœur 'Les Elements'Chœur 'Les Éléments'Chœur De Chambre Les ÉlémentsLes ElementsLes ElémentsLes Éléments + +959418Jean-Michel PicardClassical oboistNeeds VoteOrchestre National Du Capitole De Toulouse + +959420Stéphanie-Marie DegandFrench classical violinist and concertmaster.Needs VoteStephanie-Marie DegandLes Talens LyriquesLe Concert D'Astrée...in Ore mel... + +959422La LauzetaCorrectLa Lauzeta, Choeur d'Enfants de ToulouseLa Lauzeta, Choeurs D'enfants de ToulouseLa Lauzeta. Choeur D'Enfants De Toulouse + +959423Gaëlle ThouveninClassical harpistNeeds VoteOrchestre National Du Capitole De Toulouse + +959672Bill King (5)American trumpet player.CorrectWilliam KingHarry James And His Orchestra + +959701Andrew CarwoodClassical vocalist (tenor) and conductor. +Director of Music at St Paul's Cathedral in London and director of his own group, [a=The Cardinall's Musick].Needs Votehttps://en.wikipedia.org/wiki/Andrew_Carwoodhttps://www.bach-cantatas.com/Bio/Carwood-Andrew.htmA. CarwoodCarwoodGabrieli ConsortOxford CamerataThe Choir Of The King's ConsortThe Cambridge SingersThe Tallis ScholarsThe SixteenOrlando ConsortThe Choir Of Christ Church CathedralPro Cantione AntiquaThe Cardinall's Musick + +959702Rebecca OutramClassical Soprano & Alto vocalist.Needs Votehttps://twitter.com/rebeccaoutram1https://www.bach-cantatas.com/Bio/Outram-Rebecca.htmOutramGabrieli ConsortThe Hilliard EnsembleMagnificatOxford CamerataThe Choir Of The King's ConsortThe SixteenPolyphonyThe Clerks' GroupThe Cardinall's MusickMartin Best ConsortRetrospect Ensemble + +959703Robert Evans (2)Classical Bass & Baritone vocalistNeeds Votehttps://twitter.com/baritone_bobhttps://www.bach-cantatas.com/Bio/Evans-Robert.htmEvansGabrieli ConsortOxford CamerataThe Choir Of The King's ConsortThe Tallis ScholarsThe SixteenWestminster Cathedral ChoirFergus McLuskyThe Cardinall's Musick + +959744Zoltán KocsisZoltán KocsisHungarian pianist, conductor, and composer, born 30th May 1952, Budapest, Hungary - died 6th November 2016, Budapest, Hungary. In 1983, together with [a=Ivan Fischer] he founded the [a=Budapest Festival Orchestra]. Since 1998 he had served as the music director of the [a1412007].Needs Votehttps://en.wikipedia.org/wiki/Zolt%C3%A1n_Kocsishttps://www.bach-cantatas.com/Bio/Kocsis-Zoltan.htmKocsisKocsis Z.Kocsis ZoltánZ. KocsisZ. KoscisZoltan KocsiczZoltan KocsisZoltan KoesisZoltau KocsisZoltán KoscsisZoltán KócsisЗ. КочишBudapest Festival Orchestra + +959846Elizabeth FarnumAmerican classical soprano, born 22 April 1963.Needs Votehttps://www.elizabethfarnumvocalist.comElizabeth Henreckson FarnumElizabeth Henreckson-FarnumElizabeth Henrickson-FarnumPomeriumMusica SacraThe North / South Consonance Ensemble + +959952Frederick StockFriedrich Wilhelm August StockGerman conductor and composer (November 11, 1872, Jülich – October 20, 1942, Chicago), first a violist for the Chicago Symphony Orchestra he in 1905 became its conductor and also was music director for the next thirty-seven years.Needs Votehttp://en.wikipedia.org/wiki/Frederick_Stockhttps://adp.library.ucsb.edu/names/109095Frederic StockFrederick A. StockFrédérick StockStockФредерик СтокChicago Symphony OrchestraGürzenich-Orchester Kölner Philharmoniker + +960058Les Talens LyriquesFrench baroque ensemble created by [a=Christophe Rousset] in 1991.Needs Votehttps://www.lestalenslyriques.com/Les Talent LyriquesLes Talents Lyriquesレ・タラン・リリクLaurence DreyfusElizabeth KennyCatherine MontierPatrick BeaugiraudPhilippe CouvertVéronique GensEmmanuel PadieuPatrick Cohën-AkenineHilary MetzgerBlandine RannouJocelyn DaubigneyMartha Moore (2)Michiyo KondoDiane MoorePhilippe MiqueuAdrian ChamorroMyriam GeversGalina ZinchenkoMarc Cooper (3)Pascal MonteilhetChristophe RoussetMarie-Liesse BarauEnrico GattiRainer ZipperlingFrançois FernandezEric HoeprichMichel RenardStéphanie-Marie DegandCatherine GirardRuth WeberChristian MoreauxEmmanuel BalssaGilles RapinBarry SargentChristophe CoinClaude WassmerMarc HantaïPhilippe Pierlot (2)Benoît WeegerThérèse KipferJean-Luc ThonnerieuxChristophe Robert (2)Attilio MotzoBrigitte ClémentVirginie DescharmesCharles ZebleyFlorence MalgoireCécile MilleYann MirielMichel MurgierIsabelle ClaudetGabriel GrosbardFranck PichonDamien GuffroyGuy Van WaasLaurent BruniEmmanuel GirardStefano MarcocchiOphélie GaillardMarjolaine CambonDelphine GrimbertFabrizio ZanellaClaire MichonVirginie ThomasCéline CavagnacDamien LaunayEmmanuel Jacques (2)Gilone Gaubert-JacquesLorenzo BiaginiDavid Sinclair (9)Charlotte GrattardThomas LuksGilles VanssonsGiorgio SassoEyal StreettKarine CrocquenoyAtsushi SakaïStéphane FugetMarie-Christine WitterkoerAlain ViauJoël LahensGeorges BarthelYuki KoikePierre TurpinJonathan OfirAnne MauryMichel QuagliozziGabriel BaniaMónica PustilnikBenoît DouchyMarie-Hélène LandreauChristine FreysmuthGésine MeyerSamantha MontgomeryJosep Domènech LafontKorneel BernoletStefanie TroffaesThomas MeranerBérengère MaillardJérôme HuilleLionel RenouxLambert XavierJoëlle AzoulayDrifford XavierJean-Marc HaddadJudith DepoutotPatrick Charton (3)Josépha JégardGautier BlondelDanaé MonniéRoldán Barnabé-CarriónStéphane PauletAmbroisine Bré + +960086Eino KettunenEino KettunenBorn on May 13th, 1894 in Juuka, Finland. Died on August 15th, 1964. A Finnish composer and lyricist.Needs Votehttps://en.wikipedia.org/wiki/Eino_KettunenE. EkettunenE. KettunenE.EkettunenE.KettunenKettunen + +960241Jonathan Best (2)Classical bass vocalist, born in Kent.Needs VoteBestJonathan BestGabrieli Consort + +960243François BazolaBass vocalist, chorus master and founder of [a=Ensemble Consonance]Needs VoteBazolaLes Arts FlorissantsEnsemble Vocal Jean Sourisse...in Ore mel...Le Concert de l'Hostel DieuEnsemble Consonance + +960293Kidd KaosKris RyelandTalented DJ/ Producer who exploded onto the hard dance scene in 2007. By the age of just 20, Kris has had projects, remixes & collaborations lined up with artists such as Alex Kidd, BK, Lisa Lashes, Brian Eddie, Joe E & Louk. Now well established across the scene & with further music to appear on his new K405 Records, its sure to be an exciting 2009 for the Kidd.Needs Votehttp://www.kiddkaos.co.ukhttp://www.k405artists.comhttp://www.myspace.com/kaoscreationsinfo@kiddkaos.co.ukEn-ViroRyelandKris Ryeland + +960483Paul Edmund DaviesPaul Edmund-DaviesBritish classical flautist, Professor of Flute, and author. +He was born [url=https://www.discogs.com/artist/1334785-Paul-Davies-8]Paul Edmund Davies[/url] but he hyphened his middle name to his surname in the 1990s. +He was Principal Flute of the [a=London Symphony Orchestra] for twenty years (1984-2004), the [a=Philharmonia Orchestra] for five years (2005-2011), completing his orchestral life with two-and-a-half years at [a=The English National Opera Orchestra] (2011-2015). +Visiting Professor of Flute at the [l290263]. Previously, Professor of Flute at [l305416]. +Director of The Champagne Guild (introduce small producer champagnes to the UK. [a=The Deutz Trio] he founded was named after the French champagne house [url=https://www.champagne-deutz.com/fr/intro/0]Champagnes Deutz[/url]).Needs Votehttps://pauledmund-davies.com/https://www.facebook.com/edmunddaviesflute/https://www.linkedin.com/in/paul-edmund-davies-205b1b35/https://www.feenotes.com/database/artists/edmund-davies-paul/https://www.ram.ac.uk/people/paul-edmund-davieshttps://www.principalchairs.com/flute/paul-edmund-davies-interview-apr-14-part-1/https://thefluteview.com/2020/12/paul-edmund-davies-and-simply-flute/https://flutecenter.com/pages/paul-edmund-davies-bootcamphttps://vgmdb.net/artist/22860P. Edmund DaviesPaul DaviesPaul Edmond-DaviesPaul Edmund-DaviePaul Edmund-DaviesPaul-Edmund DaviesPaul Davies (8)London Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraI FiamminghiThe English National Opera OrchestraThe Deutz Trio + +960889Stephanie BlytheAmerican operatic mezzo-soprano, born in 1970.Correcthttps://en.wikipedia.org/wiki/Stephanie_BlytheBlytheステファニー・ブリス + +960890Melante AmsterdamDutch Ensemble with classical releases from 17th & 18th centuryCorrectMelante '81Bob van Asperen + +960891Pages De La ChapelleCorrect + +960895Ralph KirshbaumRalph Henry KirshbaumAmerican cellist, born March 4, 1946 in Denton, Texas.Needs Votehttp://en.wikipedia.org/wiki/Ralph_Kirshbaumhttp://www.kirshdem.com/artist.php?id=ralphkirshbaum&aview=bioKirshbaumRalph KirschbaumРальф Киршбаумラルフ・カーシュバウム + +960897Orchestre D'AuvergneFrench chamber orchestra based in Clermont-Ferrand.Needs Votehttps://onauvergne.com/AuvergneAuvergne OrchestraOrchestre d'AuvergneOrchestre d’Auvergneオーヴェルニュ室内管弦楽団Orchestre national d'AuvergneGordan NikolitchYukiko Tezuka + +960898Susan Graham (2)Susan GrahamSusan Graham (born July 23, 1960, Roswell, New Mexico) is an American mezzo-soprano.Needs Votehttp://www.susangraham.comhttp://en.wikipedia.org/wiki/Susan_GrahamGrahamSusan GrahamThe Monteverdi Choir + +960899Marcello BussiClassical harpsichordist and organist.CorrectMarcello BusiMarcelo BussiMusica Ad Rhenum + +960900Paul Goodwin (2)English oboist and conductor, specialising in baroque and neo-baroque music. +Among others, he's appointed associate conductor of [a=The Academy of Ancient Music] since 1996 and principal guest conductor of the [a=English Chamber Orchestra]. +Needs Votehttp://paulgoodwinconductor.com/GoodwinPaul GoodwinEnglish Chamber OrchestraThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersSonnerieThe Music PartyClassical WindsEx Cathedra Baroque OrchestraThe English Concert + +960902Chorus Of The Gulbenkian FoundationCoro GulbenkianFounded in 1964 by the Calouste Gulbenkian Foundation, Coro Gulbenkian has a full symphonic formation of around 100 singers, but it can also appear as a smaller vocal ensemble, according to the nature of the performed musical works.Needs VoteChamber ChoirChoer Gulbenkian De LisbonneChoers De La Fondation GulbenkianChoeurChoeur De La Fondation GulbenkianChoeur De La Fondation Gulbenkian De LisbonneChoeur Et Orchestre de la Fondation Gulbenkian de LisbonneChoeur GulbenkianChoeur Gulbenkian De LisbonneChoeur SymphoniqueChoeur Symphonique De La Fondation Gulbenkian De LisbonneChoeur Symphonique de la Fondation Gulbenkian de LisbonneChoeur de la Fondation Gulbenkian de LisabonneChoeur symphoniqueChoeursChoeurs De La Fondation Gulbenkian De LisbonneChoeurs Et Orchestre De La Fondation Gulbenkian De LisbonneChoirChoir GulbenkianChoir Of The Gulbenkian Foundation Of LisbonChoir Of The Gulbenkian Foundation, LisbonChor & orchester der gulbenkian-stiftung, liissabonChoro GulbenkianChorusChorus Of AndChorus Of The Gulbenkian Foundation Of LisbonChorus Of The Gulbenkian Foundation, LisboaChorus Of The Gulbenkian Foundation, LisbonChœrs Et Orchestre De La Fondation Gulbenkian De LisbonneChœurChœur De La Fondation GulbenkianChœur De La Fondation Gulbenkian De LisbonneChœur EtChœur GulbenkianChœur SymphoniqueChœur Symphonique De La Fondation Gulbenkian De LisbonneChœur Symphonique De La Foundation Gulbenkian De LisbonneChœur Symphonique Et Orchestre De La Fondation Gulbenkian De LisbonneChœursChœurs De La Fondation Gulbenkian De LisbonneCoroCoro Câmara GulbenkianCoro De Cámara GulbenkianCoro De Cámara Gulbenkian, LissabonCoro De Câmara GulbenkianCoro GulbenkianCoro Gulbenkian, LisbonCoro GulkenkianCoro SinfonicoCoro Sinfonico Della Fondazione Gulbenkian Di LisbonaCoro Sinfonico de la Fundación GulbenkianCoro de Câmara Gulbenkian, LisbonGulbenkian ChoirGulbenkian Choir And OrchestraGulbenkian Choir, LisbonGulbenkian ChorusGulbenkian Chorus LisbonGulbenkian Chorus, LisbonGulbenkian chorusKoorKoor Van De Gulbenkian StichtingLe Choeur Symphonique Et L'Orchestre De La Fondation Gulbekian LissabonLe Chœur De Chambre GulbenkianLe Chœur Symphonique GulbenkianOrchestra & Choir Of The Gulbenkian Foundation, LisbonOrchestra And Choirs Of The Gulbenkian Foundation, LisbonOrchestra Of The Gulbenkian FoundationOrchestre De La Fondation Gulbenkian De LisbonneSoli, ChœurSoli-Chœur SymphoniqueSoli-Chœur Symphonique De La Fondation Gulbenkian De LisbonneSolistes Et Chœur Symphonique De La Fondation Gulbenkian De LisbonneSolistes, Chœur De La Fondation Gulbenkian De LisbonneSolisti, Coro SinfonicoSymphonic Choir Of The Gulbenkian Foundation, LisbonSymphonic ChorusSymphonic Chorus Of The Gulbenkian FoundationSymphonic Chorus Of The Gulbenkian Foundation Of LisbonSymphonic Chorus Of The Gulbenkian Foundation, LisbonSymphonic Chorus of the Gulbenkian Foundation of LisbonThe Gulbenkian Chamber ChorusThe Gulbenkian Symphonic Chorusリスボン・カルスト・グルベンキアン財団合唱団リスボン・グルベンキアン財団合唱団 + +960904Les Demoiselles De Saint-CyrCorrectLes Demoiselles De St Cyrレ・ドモワゼル・ド・サン=シールBrigitte Le BaronCécile PilorgerDorothée LeclairEugénie WarnierCécile CoteJuliette PerretAnne MaugardAudrey KessedjianMélanie Emilien + +960905Les Folies FrançoisesFrench baroque ensemble created in 2000 by Patrick Cohën-Akenine.Needs Votehttps://foliesfrancoises.fr/Les Folies FrançaisesOrchestre Des Folies FrançoisesVincent RobinPatrick Cohën-AkenineJocelyn DaubigneyPhilippe MiqueuFrançois PolyMichel RenardCatherine GirardEmmanuel BalssaSophie CerfJean-Marc PhilippeEric BellocqHervé DouchyDamien GuffroyBenjamin ChénierMélanie FlahautAndré HenrichBéatrice Martin (2)Mathurin MatharelThomas de PierrefeuSamantha MontgomeryStefanie TroffaesGuillaume HumbrechtLéonor de RécondoCatherine FerroBérengère MaillardOdile PodpovitnyFrançois CostaElisabeth PassotFrançois Saint-YvesCécile Garcia-MoellerIsabelle SauveurNiels Collins Coppalle + +960906Isabelle DesrochersFrench classical soprano vocalistNeeds VoteI. DesrochersLes Arts FlorissantsLa Chapelle Royale + +960909Nancy HaddenFlautist, teacher and scholar.Needs VoteNew London ConsortThe Harp ConsortThe Julian Bream ConsortCirca 1500Tragicomedia + +960910European VoicesEuropean Voices, a professional choir of between 20 and 80 voices, was founded by [a=Simon Halsey] at the invitation of [a=Sir Simon Rattle] as a result of their highly successful 20-year collaborationCorrectDavid LoweSimon HalseyMalcolm Bennett (2) + +960911Nicholas DanbyBritish organist and teacher, 1935 - 1997.Correcthttp://www.ndanbytrust.org/Danby + +960912Taverner PlayersOrchestra founded in 1973 by Andrew Parrot. Also referred to as The Taverner Choir, Consort & Players.Needs Votehttp://taverner.org/PlayersTavener PlayersTaverner Choir & PlayersTaverner Choir And PlayersTaverner Consort & PlayersTaverner Consort And PlayersTaverner Consort, Choir & PlayersTaverner Consort, Choir And PlayersThe Taverner Playersタヴァナー・コンソートタヴァナー・プレイヤーズColin KitchingCrispian Steele-PerkinsAlison BuryAnnette IsserlisWilliam HuntJohn TollAndrew ManzeMarshall MarcusMargaret FaultlessMarc Cooper (3)Trevor Jones (4)Susan SheppardAnthony RobsonJakob LindbergHelen OrslerDavid Miller (7)Richard BoothbyAndrew ParrottSusanna PellJennifer Ward ClarkeJohn HollowayElizabeth WallfischRichard IrelandJoseph CornwellRobert WoolleyCaroline BaldingSebastian CombertiPeter BuckokeAnn MonningtonKatherine Sharman + +960913Maggie ColeMaggie ColeAmerican classical keyboard instrumentalistNeeds Votehttp://www.maggiecole.net/Coleマギー・コールThe BT Scottish EnsembleFeinstein EnsembleSarasa Ensemble + +960914Lajos RovátkayLajós RovátkayHungarian-German harpsichordist, and founder and conductor of the [a960924]. +Born 15 September 1933 in Budapest, Hungary. Died 2 January 2026. +Fled to Austria in Nov. 1956, and lived briefly in Austria and Italy, before receiving a stipend to study at Frankfurt University. In 1962 he was appointed lecturer at the [l312890], becoming the director of the Studio für Alte Musik of the university in 1975, and later professor at the same university. In 1963 he married [a2215295]. +Needs Votehttp://ersekicicero.org/index.asp?id=53 [not working]https://hu.wikipedia.org/wiki/Rov%C3%A1tkay_Lajoshttps://de.wikipedia.org/wiki/Lajos_Rovatkayhttps://en.wikipedia.org/wiki/Lajos_Rov%C3%A1tkayL. RovatkayLajos RovatkayCapella Agostino Steffani + +960915João Domingos BomtempoPortuguese composer, pianist and teacher (Lisboa, 28 December, 1775 – Lisboa, 18 August, 1842). +Main compositions: two symphonies, four piano concertos and ten piano sonatas, as well as church music, including a Requiem (Op.23, 'In Memory of Camões'). +Correcthttp://pt.wikipedia.org/wiki/Jo%C3%A3o_Domingos_BomtempoBomtempoDomingos BomtempoJ. Domingos BomtempoJoao Domingo BomtempoJoao Domingos BomtempoJoão D. Bomtempo + +960921Le Concert D'AstréeLe Concert D'Astrée is a small orchestra directed by Emmanuelle Haïm. A chorus called Le Choeur D'Astrée is also associated with the orchestra. + +The line-up of the ensemble is unstable, that is to say it changes in fonction of the musical pieces performed. Here is a list of regular performers: + +Stéphanie-Marie Degand (solo violin) +Denis Comtet (chorus master, musical assistant) +Philippe Miqueu (first bassoon) +Nicola Dal Maso (contrabass, continuo) +Benoît Hartoin (harpsichord, organ, musical assistant) +Stéphanie Paulet (first violin) +Atsushi Sakaï (viola da gamba, first cello, continuo) +Yves Castagnet (harpsichord, organ, musical assistant) +Laura-Monica Pustilnik (archlute, theorbo) +Patrick Beaugiraud (first oboe) +Needs Votehttp://www.leconcertdastree.fr/https://en.wikipedia.org/wiki/Le_Concert_d%27Astréeル・コンセール・ダストレーPatrick BeaugiraudJudith PacquierJocelyn DaubigneyMartha Moore (2)Philippe MiqueuChristine Angot (2)Jonathan MansonMarco FrezzatoNicola Dal MasoAnne-Marie LaslaAnnabelle LuisErin HeadleyMichel RenardStéphanie-Marie DegandEmmanuelle HaïmSébastien MarqPaul CarliozSimon HeyerickGilles RapinEmilia BenjaminDavid PlantierJean-Marc PhilippeDiane ChmelaClaire GiardelliJean-Luc ThonnerieuxChristophe Robert (2)Virginie DescharmesWilliam DongoisCécile MilleYann MirielBrian FeehanBenoît HartoinAlexis KossenkoFrère Jean-Christophe ClairDorothée LeclairPhilipp von SteinaeckerMatthew TruscottNora RollCharles Edouard FantinBenoît PorcherotLynda SayceMaud GiguetElisabeth GeigerIsabelle Saint YvesYannick MailletThomas van EssenEmmanuel CurialHéloïse GaillardStéphanie PauletAngélique MauillonAgnieszka RychlikAtsushi SakaïSylvain FabreSydney FierroGiorgia SimbulaThomas de PierrefeuJérôme AkokaLaurence DuvalJoël LahensYuki KoikeAnneke ScottMónica PustilnikCharles-Étienne MarchandOlivier BenichouLudovic CoutineauEmmanuel VigneronMyriam CambrelingJohannes PramsohlerMieko TsubakiMartz AurélieCyrille GrenotCécile Pierrot (2)Edouard HazebrouckPierre VirlyJeroen BillietGabriel FerryDanielle BlanchardGaspard FrançoisOleguer AymamíStéphane PfisterIsabelle Lucas (2)Pascal RichardinCécile LucasStéphane PauletDelphine MillourNicolas Rosenfeld (2)Lucy PageRoland Ten WegesCécile DalmonMeillane WilmotteHugo LiquièreCéline MartelClémence SchamingCécile GrangerJean-Marc SavignyMarduk Serrano LopezThibault DaquinElizabeth BazIsabelle RozierArnaud Le DûTarik Bousselma + +960922Fabio BiondiFabio BiondiItalian violinist, born 1961 in Palermo. In 1990 he formed the baroque ensemble [a=Europa Galante].Needs Votehttps://en.wikipedia.org/wiki/Fabio_BiondiBiondiF. BiondiFabio Biondi, Enrico CasazzaFabio Bondiファビオ・ビオンディCappella Musicale Di S. Petronio Di BolognaLe Concert Des nationsEuropa GalanteLes Musiciens Du LouvreStavanger SymfoniorkesterEnsemble Tripla Concordia + +960923Sonia MaurerSonia MaurerMandolin player.Correcthttp://www.soniamaurer.com/Europa Galante + +960924Capella Agostino SteffaniCapella Agostino SteffaniGerman ensemble specialised in 17th + 18th century music founded by [a960914]. +Founded in 1981 in Hannover, Germany, as Capella Agostino Steffani. +Re-named in 1995 as Hannoversche Hofkapelle .Needs Votehttps://www.bach-cantatas.com/Bio/HHK.htmCapella A. SteffaniHannoversche HofkapelleAndreas PreussLove PerssonAdrian RovatkayLajos RovátkayUrsula BundiesBarbara KralleHans Koch (2)Veronika SkuplikSibylle HuntgeburthBettina IhrigEva PolittAnne RöhrigHella HartmannChristoph HeidemannDorothee PalmAxel Wolf (2)Klaus BundiesKatharina Huche-KohnSusanne Dietz (2)Dorothée ZimmerVolker Mühlberg + +960925Academy Of LondonOrchestra based in London that was founded by Richard Stamp, conductor and artistisc director.Correcthttp://www.academyoflondon.com/Richard Stamp + +960926The Consort Of MusickeBritish musical (instrumental & vocal) ensemble founded 1969, specialising in early music.Needs Votehttp://en.wikipedia.org/wiki/The_Consort_of_MusickeConsort Of MusicConsort Of MusickeConsort Of SixConsort of MusickeConſort Of MuſickeInstrumentalists of the Consort of MusickeThe Consort Of Musicke Instrumental EnsembleThe Consort Of Musicke Madrigal And Instrumental EnsembleThe Consort Of SixThe Consorte Of MusickeThe Viols Of The Consort Of MusickeViols Of The Consort Of MusicViols Of The Consort Of MusickeViols of the Consort of Musickeコンソート・オブ・ミュージックRogers Covey-CrumpJames TylerDavid StaffPaul ElliottPoppy HoldenRichard WistreichEleanor SloanDavid BevanSimon Grant (4)Angus SmithMark PadmoreJane RyanCatherine MackintoshEmma KirkbyAnthony RooleyMichael ChanceDavid Thomas (9)Howard MilnerJan SchlappRosemary NaldenMary NicholsMary SeersNeil MacKenzieDavid CorkhillJohn TollNicola CleminsonTrevor Jones (4)Richard WebbSarah CunninghamMark CaudleJakob LindbergRufus MüllerDavid RoblouEvelyn TubbNigel NorthJohn DudleyMartyn HillDavid Miller (7)John Milne (2)Alan Wilson (3)Tom FinucaneSarah GroserHannelore De VaereRisa BrowderErin HeadleyJudith NelsonMichael FieldsMonica HuggettJeremy WestPolly WaterfieldRobert Spencer (2)John Moran (3)Francis SteeleAndrew King (5)Joseph CornwellJan WaltersFrances KellyChristopher PageElizabeth LiddleJohn Bryan (3)Alison CrumTimothy RobertsChristopher Wilson (2)Ian GammieJohn York SkinnerMichael Harrison (4)Peter FenderOliver HirshCathy CassGregor AnthonyJulian CrèmeCatherine WeissMargaret PhilpotKevin Smith (11)Ian HarwoodShirley RumseyPeter Davies (3)Peter WhiskinPiet StryckersBernard Thomas (2)Philip SalmonAllan ParkesKristine SzulikPeter TrentAnn MonningtonPhilip LawsonJan SpencerRosalind HarrisAngela VossAlan EwingSteven DevineChristina PoundDavid Parsons (3)Michael Hunt (4)Jacqueline Fox (2)Hugh HetheringtonLewis Jones (7)Oliver Hirsch (4) + +960927Patricia PetibonFrench coloratura soprano, born 27 February 1970 in Montargis, France. She has one child together with [a=Eric Tanguy].Correcthttp://en.wikipedia.org/wiki/Patricia_Petibonhttps://www.facebook.com/PatriciaPetibon.sopranohttps://www.youtube.com/user/PatriciaPetibonhttp://www.last.fm/music/Patricia+PetibonP. PetibonPatricia PetitbonPetibonLes Arts Florissants + +960930Carsten LohffGerman classical keyboard instrumentalistNeeds Votehttps://www.carstenlohff.de/Art D'echoCantus CöllnConcerto PalatinoMusica FiataDas Kleine KonzertLa RêveuseInstrumentalensemble "Il Basso"Le Concert Brisé + +960931Marion ScottClassical recorder and flute player from the UK.CorrectNew London ConsortThe Parley Of InstrumentsThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe King's ConsortThe English Concert + +960932Balázs MátéClassical cellist.Needs VoteBalasz MateBalasz MatéBalazs MateBalazs MatéBalazs MátéBalász MathéBalász MátéBalázs MathéBalázs MatéBálazs MátéMaate BalaszMáté BalázsLe Concert Des nationsMusica Ad RhenumLes Musiciens Du LouvreHespèrion XXIIl GardellinoLa Cetra Barockorchester BaselAura MusicaleQuartetto Luigi TomasiniThe Rare Fruits CouncilHarmonie UniverselleCristofori TrioDie FreitagsakademieOrchester 1756Austrian Baroque CompanyMusica AlchemicaKirchheimer BachConsortLeipziger Concert + +960933François FrancœurFrançois Francœur (8 September 1698 – 5 August 1787) was a French composer and violinist.Needs Votehttp://en.wikipedia.org/wiki/Fran%C3%A7ois_Francoeurhttps://adp.library.ucsb.edu/names/104151F. FranceourF. FranceurF. FranckerF. FrancœurF. FrankerFr. FrancouerFr. FrancœurFrancoeurFrancois FrancoeurFrancœurFrançoeurFrançoir FrancœurFrançois FranceurFrançois FrancoeurFrançois Francoeur-TrowellFrançois Francœur («Le Cadet»)M. FrancœurФ. ФранкерФ. Франкёр + +960934Christian TetzlaffGerman violinist, born 24 April 1966 in Hamburg, Germany. +Brother of [a2337081].Needs Votehttps://christian-tetzlaff.de/C. TetzlaffChristian TezlaffTetzlaffクリスティアン・テツラフTetzlaff QuartettBundesjugendorchester + +960935Ensemble Orlando GibbonsCorrectEnsemble De Violes Orlando GibbonsOrlando Gibbons Viol Ensemble + +960936Jean-Patrice BrosseJean-Patrice BrosseFrench harpsichordist and organist. +Born: June 23, 1950, Le Mans, France +Dead: September 18, 2021, Normandie, FranceNeeds Votehttp://www.jeanpatrice-brosse.com/Jean Patrice Brosseジャン=パトレス・ブロスConcerto Rococo + +960937Antoine DauvergneFrench composer and violinist (3 October 1713 – 11 February 1797).Needs Votehttp://en.wikipedia.org/wiki/Antoine_DauvergneAntoine D'AuvergneDauvergneM. DauvergneА. Д'Авернь + +960938Emmanuel MandrinClassical keyboard instrumentalist and conductor.Needs Voteエマニュエル・マンドランEnsemble Vocal SagittariusEnsemble Jacques ModerneLa RéveuseAkadêmia + +960939Sharon IsbinSharon Isbin (born August 7, 1956 in St. Louis Park, Minnesota) is a widely recorded American classical guitarist, recording artist, concert performer, and the founder of the Guitar Department at the Juilliard School.Correcthttp://www.sharonisbin.com/IsbinS. Isbinシャロン・イスビンシャロン・イズビン + +960940Monica HuggettClassical violinist, conductor, musical director (born May 16, 1953, London, England). + +Huggett studied at the Royal Academy of Music, London, with Manoug Parikian and Kato Havas, baroque violin with Sigiswald Kuijken. + +She co-founded and served as leader of the Amsterdam Baroque Orchestra under Ton Koopman from 1980 to 1987. She was made a Fellow of the Royal Academy of Music in 1994, and serves as professor of baroque violin at the Hochschule für Künste in Bremen, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Monica_HuggettHuggettM. HuggettMonica HuggetOrchestre Des Champs ElyséesLa Chapelle RoyaleThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicHesperion XXOrchestra Of The Age Of EnlightenmentThe Consort Of MusickeRaglan Baroque PlayersSonnerieL'Ensemble ArionThe Academy Of Ancient Music Chamber EnsembleThe London Fortepiano TrioThe Richard Hickox OrchestraL'Estro ArmonicoCamerata Of LondonThe London Early Music GroupHausmusik (2)Ensemble MarsyasThe Music PartyThe English ConcertGalatea (2)Hausmusik LondonThe Benvenue Fortepiano Trio + +960941Gabrieli PlayersEnglish instrumental group, counterpart of the choral group [a180025], founded by [a180026] in 1982.Needs Votehttp://www.gabrieli.comhttps://www.facebook.com/pages/Gabrieli-Consort-Players/48730284129Gabrieli Consort & PlayersPlayersStephen SaundersPaul NiemanSarah HaynesAndrew RobertsSarah McMahonRichard CampbellAdrian LaneLaura CochraneFrancis BainesLucy TheoElizabeth KennyDavid PurserDavid StaffAndrea MorrisJonathan ByersElizabeth BradleyDominic O'DellSimon GuntonGeorge CrawfordRichard CheethamTormod DalenRobert VanryneFrances TurnerHenrietta WayneDean FoleyFlorian DeuterJonathan ImpettValerie BotwrightAlastair RossAngela EastAlastair MitchellMarc Cooper (3)Judith EvansRachel PodgerRebecca LivermorePaula ChateauneufWalter ReiterEllen O'DellBernard FourtetMarina AschersonJames Johnstone (3)Rebecca MilesIona DaviesJulia BishopHannelore De VaereNicholas ParleMarie-Ange PetitLaurence CummingsMark BaigentJeremy WestJory VinikourReiko IchiseSarah Bealby-WrightRachel ByrtFrances KellySusan AddisonCecelia BruggemeyerPhilip TurbettAnna McDonald (2)Peter BassanoTimothy RobertsRaul DiazBenjamin SansomBrinley YareFiona DuncanRuth SlaterThomas PittFrances EustaceAnnette KeimelKeith McGowanOliver WebberTimothy LyonsPatrick JackmanNicholas PerryCherry ForbesDavid Bentley (4)Catherine Martin (2)Persephone GibbsMatthew TruscottZilla GillmanSally Jackson (2)Jean PatersonKatrina RussellTimothy CroninJane DownerMark Radcliffe (3)Hilary StockAshley SolomonWilliam LyonsAnn MonningtonFred Jacobs (2)Kristian OlesenRebekah DurstonAdrian WoodwardDouglas KirkWilliam Adams (2)Celia HarperTom LeesZoe ShevlinDavid HendryStefanie HeichelheimChristopher SucklingThomas KirbyAnna Holmes (2)Jean PattersonNia LewisEmma AlterKaty BircherJulia BlackSiv ThomassonDebbie Diamond (3)Claire DuffDaniela BraunKirra ThomasRachel RowntreeHiroko MoiseyCamilla ScarlettAnthony Leggett (2)Adrian France (2)Robert FranenbergJan WaterfieldAdrian TribeJuliet SchiemannAnton PauwHannah McLaughlinPenelope SpencerMalu LinRobert Evans (8)Claire Mera-NelsonFiona RussellColin StartKatherine SharmanRichard FomisonKatharine Hamilton + +960942Bernard SoustrotClassical trumpeter. + +Brother of [A=Marc Soustrot]Needs Votehttp://members.aol.com/benterfa/soustrot/index.htmhttp://fr.wikipedia.org/wiki/Bernard_SoustrotB. SoustrotSoustrotБернар СустроスーストロOrchestre De Chambre Jean-François PaillardEnsemble Orchestral De ParisMaurice André And His Trumpet Consort + +960944David Daniels (3)David DanielsAmerican countertenor, born 12 March 1966.Needs Votehttp://www.danielssings.com/https://en.wikipedia.org/wiki/David_Daniels_(countertenor)D. DanielsDanielsDavid Danielsデイヴィッド・ダニエルズ + +960945Giovanni ScaramuzzinoMandolin player.CorrectEuropa Galante + +960946Jérôme HantaïViola da gamba player.Needs VoteJ. HantaïJerome HantaïJerôme HantaiCollegium VocaleLe Concert Des nationsLa Simphonie Du MaraisLes Musiciens Du LouvreEnsemble Jerome Hantai + +960947Pierre HantaïHarpsichordist and organist.Needs Votehttps://www.pierrehantai.fr/https://en.wikipedia.org/wiki/Pierre_Hanta%C3%AFP. HantaiP. HantaïPierre HantaiPierre HantaîLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleLe Concert Des nationsLa Petite BandeRicercar ConsortLe Concert FrançaisCapriccio Stravagante + +960948Emmanuelle HaïmEmmanuelle HaïmFounder and conductor of the ensemble [a=Le Concert D'Astrée].Needs Votehttp://www.leconcertdastree.fr/https://en.wikipedia.org/wiki/Emmanuelle_HaïmE. HaïmEmanuelle HaïmEmmanuelle HaimConcerto KölnLe Concert D'Astrée + +960949Michel SanvoisinMichel SanvoisinFrench recorder player, he co-founded [a3017982] in 1965 with [a2213805]. +He has published his own works for recorder, as well as many early scores including [a909961]'s Canzoni and [a1025294]'s Balletti.Needs Votehttps://fr.wikipedia.org/wiki/Michel_Sanvoisinhttps://www.imdb.com/name/nm0764398/M. SanvoisinMichel SanvoisonSanvoisinEnsemble Polyphonique De L'O.R.T.F.Ars Antiqua De ParisEnsemble D'instruments Anciens (2) + +960950Richard StampRichard StampFounder and conductor of the Academy Of London.CorrectStampAcademy Of London + +960951La Simphonie Du MaraisClassical ensemble founded by [a=Hugo Reyne] in 1987, located since 2004 at la Chabotterie en Vendée (Pays de la Loire, France).Needs Votehttps://web.archive.org/web/20180228133646/http://www.simphonie-du-marais.org/https://en.wikipedia.org/wiki/La_Simphonie_du_MaraisEnsemble "La Simphonie Du Marais"Ensemble La Simphonie Du MaraisLa Simphonie du MaraisLa Symphonie Du MaraisYannis RogerPatrick Cohën-AkenineMartha Moore (2)Pauline SmithPascal MonteilhetPierre BoragnoHugo ReyneHendrike Ter BruggeJérôme HantaïSylviane PitourMarie-Ange PetitSébastien MarqElisabeth JoyéJean-Pierre NicolasOlivier ClémencePascale HaagMarie-Louise MarmingFrédéric Martin (2)Marco HorvatJean-Louis GeorgelLisandro NesisDomitille VigneronJean-Claude LavoignatVincent DumestreAnnie CovilleDelphine BlancMaïlys de VilloutreysLorenzo BrondettaFlorian CarréMarc WolffAnne Krucker-RihoitMyriam MahnaneDelphine Le GallVincent BlanchardDamien PouvreauCéline CavagnacStéphane TambySarah BrayerFrançois NicoletBenjamin ChénierMaud GiguetMariko AbeUlrike BruttDamien LaunayMarie HervéPierre ValletJerôme VidallerFrancis ChapeauEmmanuel Jacques (2)Gilone Gaubert-JacquesEugénie WarnierValérie BalssaEtienne MangotJean-Baptiste LapierreCarles Mas I GarciaAlain ViauXavier Julien-La FerrièreMichel QuagliozziArnaud PumirDominique DujardinRomain PetitUlrika WahlbergAnne-Laure GuerrinLeonardo Loredo de SáYannick VarletPaul Rousseau (2) + +960952Raglan Baroque PlayersCorrectThe Raglan Baroque PlayersThe Raglan PlayersFenella BartonBrian BrooksElizabeth KennyHenrietta WayneNicholas KraemerAlison BuryRosemary NaldenSusie Carpenter-JacobsAnnette IsserlisTimothy MasonRichard TunnicliffeElizabeth WallfischMonica HuggettTimothy KraemerLucy HowardSarah Bealby-WrightAndrew DurbanJudith TarlingDaniel YeadonCatherine WeissClare SalamanRachel IsserlisHelen GoughPeter BuckokeStephen BullKasia ElsnerMalcolm LayfieldNina Harries + +961037Franz-Christian WulffProducer and recording supervisor for the label [l=Deutsche Grammophon].CorrectFranz Christian Wulffフランツ=クリスティアン・ヴルフフランツ=クリスティアン・ヴルフ + +961371Alison GoughSoprano vocalist.Needs VoteThe Tallis ScholarsThe SixteenThe English Concert ChoirThe Schütz Choir Of LondonChoir Of St. Margaret's, Westminster + +961372Timothy KraemerClassical cellist and photographerNeeds Votehttp://www.google.de/imgres?q=Timothy%20Kraemer&client=safari&sa=X&rls=en&biw=1920&bih=111T. KraemerT. Kraemer, LondonTim KraemerTimothy KramerThe SixteenThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersRaglan Baroque PlayersEsperanto (5)The English Concert + +961373Alison CracknellClassical violinist. Married to [a836737].Needs VoteThe Academy Of Ancient MusicThe English Concert + +961375Caroline AshtonSoprano vocalist from the UK.Needs VoteThe Cambridge SingersThe Monteverdi ChoirThe English Concert ChoirThe Schütz Choir Of London + +961376Gillian ChedzoyAlto vocalist.CorrectThe English Concert Choir + +961377Andrew Giles (2)Alto vocalist from the UK.Needs VoteThe SixteenThe English Concert ChoirThe Choir Of Westminster Abbey + +961378James Ellis (3)Classical violinist & mandolinist from the UK.Needs VoteJames A. EllisLondon Symphony OrchestraEnglish Chamber OrchestraThe SixteenThe Academy Of Ancient MusicLondon Classical PlayersHanover BandThe King's ConsortEx Cathedra Baroque OrchestraThe English Concert + +961379Wilfried SwansbouroughAlto / countertenor vocalist.Needs VoteWilfred SwansboroughWilfred SwansbouroughWilfrid SwansboroughWilfrid SwansbouroughWilfried SwansboroughThe SixteenThe Monteverdi ChoirThe English Concert Choir + +961380David Lowe (2)Classical tenor vocalist. David Lowe was born in Birmingham and educated at King’s College, Cambridge, where he was a Choral Scholar, and the Royal College of Music. He has travelled widely around Europe, Scandinavia and USA, singing with many of the best-known London ensembles. He has also provided professional choirs for Richard Hickox, Sir Roger Norrington, Sir Simon Rattle, The Orchestra of the Age of Enlightenment and European Voices, which he founded with Simon Halsey.Needs Votehttps://ukchoirfestival.com/ukcf_team/david-loweThe Academy Of Ancient Music ChorusThe English Concert ChoirThe Choir Of St George's Chapel + +961381Jane CoeClassical cellist, born May 18, 1953; died October 20, 2007.Needs Votehttps://www.imdb.com/name/nm7522522/Jane CopeThe SixteenLes Arts FlorissantsThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersThe King's ConsortL'École D'OrphéeThe Symphony Of Harmony And InventionLondon Handel OrchestraThe English ConcertThe Friends Of Apollo + +961382Lisa CochraneClassical viola player.Needs VoteLisa CocheraneOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentHanover BandThe King's ConsortClassical OperaThe English ConcertThe Mozartists + +961383Susan BicknellSusan Margaret BicknellClassical viola player. Born Farnborough, Surrey 5 August 1948; died London 22 November 1998.Needs VoteSusan BicknallThe Scholars Baroque EnsembleThe English Concert + +961384Robert BurtClassical tenor, born in London.Needs Votehttp://musichall.uk.com/artist.aspx?artist=19http://www.roh.org.uk/people/robert-burtRob BurtThe Monteverdi ChoirThe English Concert Choir + +961385Nicholas ParleClassical organist and harpsichordist.Needs Votehttps://www.bach-cantatas.com/Bio/Parle-Nicholas.htmAkademie Für Alte Musik BerlinLondon BaroqueThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersThe English ConcertChamber Choir Of Sydney University Baroque Ensemble + +961386Lucy HowardLucy HowardClassical violinist, born 28 February 1962, died 5 September 2004.Needs VoteThe Scholars Baroque EnsembleOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicRaglan Baroque PlayersThe King's ConsortEroica QuartetThe English Concert + +961387Sandra SchulzeAlto vocalist.CorrectSandra SchultzeThe Monteverdi ChoirThe English Concert Choir + +961388Mark Peterson (3)Bass vocalist.Needs VoteThe SixteenThe English Concert ChoirThe Schütz Choir Of London + +961594Scott Ross (4)American harpsichordist and organist, born May 1st, 1951 in Pittsburgh (USA) - died June 14th, 1989 in Assas (France). +Among others, he recorded the 555 harpsichord sonatas of [a=Domenico Scarlatti], [a=Johann Sebastian Bach]'s Goldberg Variations and Partitas, [a=Jean-Philippe Rameau]'s complete harpsichord works and all harpsichord suites of [a=Georg Friedrich Händel]. +Needs Votehttps://en.wikipedia.org/wiki/Scott_Ross_(harpsichordist)RossS. Ross + +961681Brigitte PeloteSoprano.CorrectLes Arts Florissants + +961682Carys Lloyd RobertsClassical vocalist.CorrectCarys L. RobertCarys L. RobertsCarys Lloyd-RobertsLondon VoicesLes Arts Florissants + +961683Anha BölkowSoprano.CorrectLes Arts Florissants + +961684Anne PichardSoprano.Needs VoteLes Arts FlorissantsMédiévance + +961685Sheena WolstencroftClassical soprano vocalist.Needs VoteLes Arts Florissants + +961687Violaine LucasFrench classical soprano / mezzo-soprano vocalist.Needs Votehttps://www.facebook.com/violaine.lucas.50Les Arts Florissants + +961688Valérie PicardSoprano.CorrectLes Arts Florissants + +961689Anne CambierBelgian Soprano. + +Anne Cambier has an extensive song repertoire and gives recitals with pianists such as Jozef De Beenhouwer, Jean-Claude Vanden Eynden, Levente Kende and especially Jan Vermeulen (fortepiano). Their CD “Mozart-Haydn Lieder” has received excellent reviews. +Anne Cambier regularly performs with baroque orchestras such as Musica Antiqua Köln, Les Agrémens, Il Fondamento, The Academy of Ancient Music, La Petite Bande, … and is working increasingly with her own baroque ensemble I Justiniani. Their first CD “Songs by Henry Purcell” was very favorably received and the performance got a 10/10 in the leading Dutch journal “Luister”. +Needs Votehttp://www.catalpaproductions.be/en/annecambier/Les Arts FlorissantsI JustinianiMusica Favola + +961690Sylviane PitourSoprano.Needs VoteLes Arts FlorissantsLa Simphonie Du Marais + +961691Mhairi LawsonSoprano vocalist.Needs VoteLes Arts FlorissantsConcerto CaledoniaThe Avison Ensemble + +961719Simon RickardClassical bassoonist.Needs VoteGabrieli ConsortLes Arts FlorissantsAustralian Brandenburg OrchestraAccademia DanielLatitude 37 + +961721Marie-Ange PetitClassical percussionist.Needs VoteMarie-anne PetitPetitOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleLe Parlement De MusiqueIl Seminario MusicaleConcerto VocaleGabrieli PlayersLa Simphonie Du MaraisLes Musiciens Du LouvreBoston CamerataEnsemble AmadisSyntagma AmiciCycle (16)Le ConsortLes Ombres (3)Jupiter (55) + +961722Christophe OliveClassical baritone / bass vocalist.Needs VoteLes Arts Florissants + +961723Anne WeberViol and Viola player and Liner Notes translatorNeeds VoteLes Arts FlorissantsLa StagioneFiori Musicali + +961724Françoise RivallandClassical percussionist.Needs Votehttp://www.francoiserivalland.com/Les WitchesLes Arts FlorissantsCollegium VocaleEnsemble de Percussions de Nantes + +961726Elena AndreyevClassical cellist.Needs VoteElena AndreievLes Arts FlorissantsGroup CLes Ambassadeurs (6)Ground Floor (6) + +961727Catherine GirardFrench Violin, Viol and Violone instrumentalistNeeds VoteC.GirardCathérine GirardCathérine GérardLes Arts FlorissantsIl Seminario MusicaleEnsemble 415La Petite BandeLes Talens LyriquesLes Folies Françoises + +961728Jean-Yves RavouxClassical tenor vocalist.Needs VoteLes Arts FlorissantsChoeur de Chambre de NamurEnsemble Almazis + +961729Nadine DavinClassical viola player.Needs VoteLes Arts FlorissantsCollegium VocaleLes Musiciens Du LouvreCapriccio Stravagante + +961730Ruth WeberClassical violinist.CorrectLes Arts FlorissantsLes Talens LyriquesLa StagioneCapriccio Stravagante + +961731Guya MartininiClassical violinist.CorrectLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleEnsemble 415Le Concert Des nationsLa Petite BandeRicercar ConsortOrchestra Of The 18th CenturyOrchestra Barocca Italiana + +961733Jean-Marie PuissantTenor.Needs VoteLes Arts FlorissantsLa Chapelle RoyaleA Sei VociGrasse Matinée + +961734Marcial MoreirasClassical viola player.Needs VoteMartial MoreirasMartial MorerasMusical MoreirasCappella Musicale Di S. Petronio Di BolognaLes Arts FlorissantsEnsemble 415Atrium Musicae De MadridSchola Cantorum BasiliensisSeminario de Estudios de Música Antigua + +961735Deryck Huw WebbClassical vocalist.CorrectDeryck Hug WebbDeryck WebbLes Arts Florissants + +961736Sébastien MarqClassical flute and recorder player.Needs VoteSebastian MarqSebastien MarqSébastien MarcqLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleLe Concert Des nationsLe Concert D'AstréeLa Simphonie Du MaraisLes Musiciens Du LouvreEnsemble Baroque De LimogesLe Concert FrançaisEnsemble MatheusLa RéveuseMezzaluna (2)Ensemble Marguerite LouiseLa Canzona + +961737Paul CarliozClassical string player (cellist).Needs VoteLes Arts FlorissantsLe Concert D'AstréeLa Petite Symphonie + +961739David Le MonnierClassical bass / baritone vocalist.Needs VoteLes Arts FlorissantsThe Choir Of Christ Church Cathedral + +961740Geoffrey BurgessClassical oboist and liner notes author.Needs VoteLes Arts FlorissantsAustralian Brandenburg OrchestraTafelmusik Baroque OrchestraWashington Bach ConsortTrinity Baroque OrchestraCambini Winds + +961741Laurent CollobertClassical vocalist, painter and electronic composer.Needs VoteL. CollobertMr. LearnFishermanLes Arts FlorissantsChœur Marguerite Louise + +961742Jean-Xavier CombarieuTenor.CorrectLes Arts Florissants + +961743Simon HeyerickBelgian violin & viola instrumentalist (born 1954).Needs VoteSimon HeyerikLes Arts FlorissantsConcerto VocaleEnsemble 415Le Concert D'AstréeLes Musiciens Du LouvreRicercar ConsortLe Concert FrançaisCapriccio StravaganteLa RéveuseOpera FuocoLes DominosEnsemble MasquesEnsemble europeen William ByrdA Nocte Temporis + +961744Christian MoreauxClassical oboist.Needs VoteLes Arts FlorissantsLes Talens LyriquesLes Musiciens Du LouvreEnsemble Baroque De LimogesAusoniaLes AgrémensOpera Fuoco + +961745Paolo TognonItalian classical bassoon & dulcian instrumentalist. Music Director of [a=La Bande des Hautbois du Roy]Needs VoteLes Arts FlorissantsConcerto KölnCapella SavariaEnsemble Barocco Sans SouciCoro Claudio Monteverdi Di CremaQuoniam EnsembleConsort VenetoLa Bande des Hautbois du RoyTritono EnsembleI Fiori Musicali (2)Gruppo Di Strumenti Antichi Del Concentus Musicus Patavinus + +961746Jonathan RubinTheorbist, Lutenist and Luthier (instrument builder).Needs VoteJonathan D. RubinRubinI MusiciLes Arts FlorissantsSchola Cantorum BasiliensisKammerensemble BernLes DominosEnsemble Hoc OpusDie FreitagsakademieCapellantiquaCarpe Diem GenèveGeneva Baroque Duo + +961747Jean-François GayBass vocalist.CorrectLes Arts Florissants + +961748Richard DuguayClassical tenor vocalist.Needs VoteDugayDuguayLes Arts FlorissantsLa Chapelle De Québec + +961749Michèle SauvéClassical violin and viola player.Needs VoteMichelle SauvéMichèle SauveLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleConcerto KölnEnsemble 415Les Musiciens Du LouvreRicercar ConsortCapriccio StravaganteFiori Musicali + +961750Roberto CrisafulliClassical violinist.Needs VoteRobert CrisafulliLes Arts FlorissantsLa Chapelle RoyaleLa Petite BandeLes Musiciens Du LouvreIl Complesso BaroccoOpera FuocoConcerto Rococo + +961751Laurence CummingsHarpsichordist, organist and conductor. Music director of [a837442].Needs Votehttps://en.wikipedia.org/wiki/Laurence_Cummingshttps://www.bach-cantatas.com/Bio/Cummings-Laurence.htmCummingsLawrence CummingsThe SixteenLes Arts FlorissantsThe Academy Of Ancient MusicGabrieli PlayersThe King's ConsortThe Symphony Of Harmony And InventionCharivari AgréableTheatre Of Early MusicFestspielorchester GöttingenThe English ConcertRoyal Academy of Music Baroque OrchestraThe Apollo ConsortLondon Handel PlayersKontrabande + +961752George WillmsClassical violinist.Needs Votehttps://clavecinsdechartres.pagesperso-orange.fr/PageB1b_Interpretes_Bios_cordes.htm#https://www.linkedin.com/in/george-willms-662615a/Les Arts FlorissantsTafelmusik Baroque OrchestraIl Complesso Barocco + +961753Per Olov LindekeClassical trumpeter.Needs VoteP O LindekePO LindekePer Olof LindekePer-Olof LindekePer-Olov LindekeOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleStockholms Barockmusiker + +961754Jean-Marc MoryBass vocalist.CorrectLes Arts Florissants + +961755Bruno RenholdClassical tenor/countertenor vocalist.CorrectLes Arts FlorissantsEnsemble Venance Fortunat + +961756Emmanuel BalssaClassical Cello & Viola da Gamba player, born in 1967 in Lyon, France.Needs VoteE.BalssaEmanuel BalssaEmmanuel BalsaЭммануэль БальсаLes Arts FlorissantsLa Petite BandeLes Talens LyriquesLes Folies FrançoisesRicercar ConsortBach Collegium JapanOrchestra Of The 18th CenturyIl GardellinoLes Basses RéuniesEnsemble CristoforiGli Angeli GenèveLes Musiciens Du Paradis + +961757Didier RebuffetClassical Tenor / Countertenor vocalistNeeds VoteDidierLes Arts Florissants + +961758François PiolinoSwiss tenor born in Basle.Needs Votehttps://www.operadeparis.fr/en/artists/francois-piolinoPiolinoLes Arts Florissants + +961759Gilles RapinClassical trumpeter.Needs VoteLe Concert SpirituelLes Arts FlorissantsConcerto KölnLes Talens LyriquesLe Concert D'AstréeLes Musiciens Du LouvreBach Collegium JapanAlta (3)Ensemble Amadis + +961760Bruno-Karl BoësClassical vocalist.CorrectLes Arts Florissants + +961770Willi SchmidWilli Schmid (16 Februay 1929 - 30 August 2014) was a German classical cellist. + +For the German engineer, please use [a636547] and ANV if needed. +For the Swiss singer and songwriter, please use [a2606479] and ANV if needed.CorrectMünchner PhilharmonikerMünchener KammerorchesterMünchner Baryton-Trio + +961981Liz MannElizabeth MannAmerican flautist.Needs Votehttps://www.oslmusic.org/bios/elizabeth-mann/Elisabeth MannElizabeth D. MannElizabeth MannLiz ManOrchestra Of St. Luke'sOrpheus Chamber OrchestraDorian QuintetMusic AmiciSt. Luke's Chamber Ensemble + +961983Phyllis Jo KubeyClassical alto vocalist.Needs VotePomeriumVoices Of Ascension + +962064Mark BaigentClassical woodwind instrumentalistNeeds Votehttp://www.myspace.com/markbaigentoboehttp://www.wienroth.net/html/mark_baigent.htmlBaigentLa SerenissimaThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersThe King's ConsortThe MozartistsThe Harmonious Society Of Tickle-Fiddle Gentlemen + +962076Helen GrovesSoprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Groves-Helen.htmGabrieli ConsortThe Choir Of The King's ConsortThe SixteenEx Cathedra Chamber Choir + +962090Thomas BarnardBass/baritone vocalist.Needs VoteChorus Of The Royal Opera House, Covent GardenEx Cathedra Chamber Choir + +962096Elizabeth CraggSoprano vocalistNeeds Votehttp://www.elizabethcragg.com/The SixteenEx Cathedra Chamber ChoirTenebrae (10) + +962106Sally Bruce-PayneBritish Mezzo-soprano vocalist, born in London.Needs Votehttp://sallybruce-payne.co.uk/Le Concert SpirituelEx Cathedra Chamber ChoirThe Bach Players + +962109Martyn Jones (2)Alto vocalist.Needs VoteThe Choir Of Christ Church CathedralEx Cathedra Chamber Choir + +962110Roy BattersAlto vocalist.CorrectEx Cathedra Chamber ChoirThe Clerkes Of Oxenford + +962339Bob CochranRobert Gene Cochran Sr.American singer, guitarist, brother of [a=Eddie Cochran] and father of [a=Bobby Cochran (2)]. He's also the writer of Eddie Cochran's famous hit [B]Somethin' Else[/B] + +Needs VoteB &B CochranB. &B. CochranB. CochraneB.. ChochranB.CochranBobBob CochraneBobby CochranCochoranCochramCochranCochraneCocraneE CochranE. CochranEddie Cochran + +962477Otto FleischmannOtto Fleischmann was a classical bassoonist & trombonist.Needs VoteFleischmannO. FleischmannOtto FleischmanOtto FleishmannWiener SymphonikerConcentus Musicus WienMusica Antiqua WienBläserensemble Des Niederösterreichischen Tonkünstlerorchesters + +962479Jürg SchaeftleinHans Georg SchaeftleinAustrian classical oboe and recorder player (born 5 May 1929 in Graz, Austria - died 15 February 1986 in Vienna, Austria).Needs VoteJoerg SchaeftleinJuerg SchäftleinJurg SchaeftleinJörg SchaeftleinJörg SchäftleinJürg SchäftleinJürgen SchaeftleinЮрг ШефтлайнWiener SymphonikerConcentus Musicus WienWiener Mozart-Bläser + +962480Hermann SchoberClassical trumpeter.Needs VoteHerman SchoberHermann Schober-PaukenVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus Wien + +962481Eduard HruzaClassical double bass player.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus Wien + +962484Ralph BryantRalph Bryant (1943 - 3 September 2015 in Männedorf, Switzerland) was an American cornett and baroque trumpet player. A member of the [a2728584] from 1971 to 2002.Needs VoteRalph BriantConcentus Musicus WienOrchester der Oper Zürich + +962485Josef De SordiClassical viola player.Needs VoteJosef De SardiWiener SymphonikerConcentus Musicus Wien + +962486Kurt HammerClassical percussionist.Needs VoteWiener SymphonikerConcentus Musicus Wien + +962487Josef SpindlerClassical trumpeter.Needs VoteJoseph SpindlerProf. Josef SpindlerOrchester Der Wiener StaatsoperConcentus Musicus Wien + +962491Wilhelm MerglClassical violinist.Needs VoteWiener PhilharmonikerConcentus Musicus Wien + +962492Kurt TheinerClassical viola player.Needs VoteK. TheinerKurt Theiner, WienProf. Kurt TheinerTheinerVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienLeonhardt Baroque Ensemble + +962493Walter PfeifferClassical violinist.CorrectWalter PfeiferWiener SymphonikerConcentus Musicus Wien + +962494Alice HarnoncourtAlice Harnoncourt, née HoffelnerAustrian classical violinist, born 26 September 1930 in Vienna, Austria, died 20 July 2022. + +She was co-founder and for many years first violinist in Concentus Musicus Wien. + +Wife of [a=Nikolaus Harnoncourt] and mother of [a=Elisabeth von Magnus].Needs Votehttp://en.wikipedia.org/wiki/Alice_Harnoncourthttps://www.imdb.com/name/nm1723910/A. HarnoncourtAlice D'HarnoncourtAlice d'HarnoncourtAlice HoffelnerConcentus Musicus WienThe Chamber Orchestra Of Europe + +962495Anita MittererAnita Mitterer is a classical violinist and violist.Needs VoteMittererConcentus Musicus WienLe Concert Des nationsQuatuor MosaïquesSalzburger Barockensemble + +962496Peter SchoberwalterClassical violinist.Needs VoteSchoberwalterVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienCapella Leopoldina + +962497Johann SonnleitnerAustrian classical organist and harpsichordist, born 19 August 1941 in Trofaiach, Austria.Needs VoteJ. SonnleitnerJohannes SonnleitnerJohn SonnleitnerSonnleitnerConcentus Musicus WienDeutsche Bachsolisten + +962500Johann RistJohann RistGerman Lutheran theologian and hymnologist. + +He was born 8 March 1607 in Ottensen (today Hamburg), Germany and died 31 August 1667 in Wedel, Germany. +CorrectJ. RistJohan RistJohannes RistRist + +962501Robert J. AlcaláClassical oboe player.Needs VoteConcentus Musicus Wien + +962521Davitt MoroneyDavitt MoroneyBritish-born musicologist, organist and harpsichordist (born 1950), now based in California, where he teaches at Berkeley. +Devoted to the baroque repertoire, he has recorded Bach, Couperin, Biber, the complete keyboard work of [a=William Byrd] among others. +He has also published the editions of several baroque composers, including a keyboard edition (and his own recording) of Johann Sebastian Bach's [r=1133786] that contains his own completion of the final unfinished fugue. +Needs Votehttp://www.concertartist.info/biog/moroney.htmlD. MoroneyDavid MoroneyMoroneyThe Academy Of Ancient MusicTragicomediaThe San Francisco Baroque EnsembleArchetti Baroque String Ensemble + +962718Heinz MorawietzClassical double-bassistNeeds VoteGewandhausorchester Leipzig + +962719Günter HeidrichClassical oboistNeeds VoteGünther HeidrichNeues Bachisches Collegium Musicum Leipzig + +962970Léon BoëllmannLéon BoëllmannFrench composer, born September 9, 1862, in Ensisheim in the Alsace, died October 11, 1897, in Paris. + +Léon Boëllmann studied the organ with [a896027] and became organist of St-Vincent de Paul in Paris. + +He has written works for organ and also for orchestra. +Needs Votehttp://www.musimem.com/boellmann.htmhttp://www.naxos.com/composerinfo/bio27080.htmhttps://en.wikipedia.org/wiki/L%C3%A9on_Bo%C3%ABllmannhttps://adp.library.ucsb.edu/names/103038BoellmanBoellmannBoéllmannBoëllmannBoëlmannL BoëllmannL. BoellmannL. BoelmannL. BoèllmannL. BoëllmannL. BoëlmannL. BöellmannL.BoëllmannLeo BoëllmannLeo BoëlmannLeon BoellmanLeon BoellmannLeon BoelmannLeon BoéllmannLeon BoëllmanLeon BoëllmannLeon BoëlmannLeon Ernest BoellmanLouis BoëllmannLéo BoellmannLéon BoellmannLéon BoelmannLéon Boëllmann (1862-1897)Lëon BoëllmanБоэльманЛ. БоельманЛ. БоэльманЛ. БьольманнЛ. БёльманЛ.БоельманЛеон Боэльман + +963038Nathan StutchAmerican cellist (b. 3 September 1919 d. 17 September 2015) born in Pittsburgh, PA. Played as principal cellist in the All-American Youth Orchestra. Joined New York Philharmonic in 1946 until his retirement in 1989.Needs Votehttp://www.cellist.nl/database/showcellist.asp?id=686https://www.legacy.com/us/obituaries/mainetoday-pressherald/name/nathan-stutch-obituary?id=18383548New York PhilharmonicThe Cleveland OrchestraThe Wet String QuartetGomberg Baroque EnsembleThe All-American Youth Orchestra + +963375Ernst MärzendorferAustrian conductor, composer and music scientist (* 26 May 1921 Oberndorf/Sb., Austria; † 16 September 2009 in Vienna, Austria) + +Needs Votehttps://dx.doi.org/10.1553/0x0001d85cE. MaerzendorferE. MärzendorferErnest MärzendorferErnst MaerzendorferErnst MarzendorferErnst MärzendorfMärzendorferDas Mozarteum Orchester Salzburg + +963466Calyx MasteringCompany entity at [l=Calyx Mastering] credited for mastering.Needs VoteCALYX Mastering, BerlinCalyxCalyx BerlinCalyx Mastering ServiceCalyx Mastering Service, BerlinCalyx Mastering, BerlinCalyx, Berlincalyx-mastering.comChris De LucaNorman NitzscheMark BihlerFrancesco DonadelloAndreas LubichHannes BiegerHans SchaafHenry LauArnold KasarConor DaltonTill KreischeJan Ingmar Fabritiusfmw (2)Joen SzmidtHanno Leichtmann (2) + +963612Yasuko HattoriClassical violinist.Needs VoteSan Francisco Symphony + +963656Leonhardt-ConsortDutch period instruments Baroque ensemble founded in 1954 by [a845763], his wife [a=Marie Leonhardt] and [a=Kees Otten]. When the latter left in 1957, the group transformed from a chamber music ensemble to a five-part string band with harpsichord, which resulted in a changing repertoire. The Consort got signed with [l=Telefunken] in 1961 but ceased to exist as a performing group in 1972. However, the members would occasionally join for special recording projects in the years hereafter. Needs Votehttps://en.wikipedia.org/wiki/Leonhardt-Consorthttps://www.bach-cantatas.com/Bio/Leonhardt-Consort.htmDas Leonhardt ConsortDas Leonhardt-ConsortDas Leonhardt-Consort AmsterdamDas Verstärkte Leonardt-ConsortDas Verstärkte Leonhardt ConsortDas Verstärkte Leonhardt-ConsortEnsemble LeonhardtHet Leonhardt-ConsortLeonhardt ConsortLeonhardt-Consort (Mit Originalinstrumenten)The Leonhardt ConsortLodewijk De BoerKu EbbingeAlda StuuropAnthony WoodrowRuth HesselingStaas SwierstraHelga StorckGustav LeonhardtAb KosterFrans BrüggenLucy van DaelBob van AsperenWouter MöllerAntoinette Van Den HomberghMarc DestrubéBob StoelFrans R. BerkhoutMarie LeonhardtNick WoudKnut HasselmannWim Ten HaveEugen M. DomboisKees OttenAnneke UittenboschAlan Curtis (2)Janny Van WeringFred NijenhuisJeanette Van WingerdenDijck KosterHans BolCees van der Kraan + +963965Helmut MitterClassical violin and viola player.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienDie Instrumentisten Wien + +963967Leopold StastnyClassical Traverso & Recorder instrumentalist.Needs VoteLeopold StasnyLeopold StastneyLeopold StatsnyStastnyWiener SymphonikerConcentus Musicus Wien + +963968Marie WolfMarie Wolf (born 1955) is an Austian classical oboe, recorder player and teacher.Needs Votehttps://marie-wolf.atMaria WolfWiener PhilharmonikerConcentus Musicus WienCapella Savaria + +963969Sam KegleyClassical oboist.CorrectConcentus Musicus Wien + +963970Mark Peters (2)Classical cellist.CorrectConcentus Musicus Wien + +963971Karl HöffingerAustrian classical violinist, born 1951 in Vienna, Austria. He was a member of the [a696225] from 1977 to 2016.Needs VoteKarl HöffigerWiener SymphonikerConcentus Musicus WienSüdwestdeutsches Kammerorchester + +963972Andrea BischofClassical violinist.Needs VoteConcentus Musicus WienClemencic ConsortQuatuor MosaïquesGli Angeli Genève + +963993Avis PerthenBritish (from London, England, UK) classical cellist. +Wife of [a=Anthony Stark].Needs Votehttps://www.facebook.com/avis.perthenPhilharmonia OrchestraBBC Concert Orchestra + +963995Richard West (3)Classical woodwind player (clarinet).Needs VoteRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-Fields + +963999Kate Wilson (2)Classical harpist, also known as [b]Kitty Wilson[/b]. +Former member of the [a=London Symphony Orchestra] (1934-1948).Needs VoteLondon Symphony Orchestra + +964127Wouter MöllerClassical cellist.Needs VoteMöllerWouter MoellerWouter MollerWouter MüllerConcentus Musicus WienThe Amsterdam Baroque OrchestraLa Petite BandeLeonhardt-ConsortOrchestra Of The 18th CenturyConcerto AmsterdamQuadro HotteterreLa Real CámaraAlma Musica AmsterdamQuartetto EsterházyMonteverdi Ensemble Amsterdam + +964128Antoinette Van Den HomberghClassical violinist.Needs VoteAntoinette Van Den HombergAntoinette Van den HombergAntoinette Von Den HomberghAntoinette van den HomberghLa Chapelle RoyaleLa Petite BandeLeonhardt-ConsortOrchestra Of The 18th CenturyConcerto AmsterdamMusica Polyphonica + +964129Marc DestrubéCanadian classical violinist.Needs Votehttp://www.marcdestrube.com/DestrubeMarc DestrubeLa Chapelle RoyaleThe Academy Of Ancient MusicLeonhardt-ConsortTafelmusik Baroque OrchestraOrchestra Of The 18th CenturySmithsonian Chamber OrchestraPurcell String QuartetEnsemble PhilidorTurning Point EnsembleLyra Baroque Orchestra + +964130Bob StoelClassical hornist.Needs VoteB. StoelEbony BandLeonhardt-ConsortRotterdams Philharmonisch Orkest + +964132Frans R. BerkhoutClassical bassoonist.Needs VoteFrans BerkhoutFrans Robert BerkhoutRobert BerkhoutDanzi KwintetLa Petite BandeLeonhardt-ConsortOrchestra Of The 18th Century + +964133Marie LeonhardtMarie Leonhardt-Amsler, née Marie AmslerDutch-Swiss violinist, born November 6, 1928 in Lausanne, Switzerland and died July 23, 2022. The wife of [a=Gustav Leonhardt] and co-founder of the [a=Leonhardt-Consort] was considered a pioneer in the period performance on the instrument.Needs Votehttps://de.wikipedia.org/wiki/Marie_LeonhardtM. LeonhardtMaria LeonhardtMarie Leonhardt-AmslerConcentus Musicus WienLa Petite BandeLeonhardt-ConsortLeonhardt Baroque EnsembleConcerto AmsterdamMonteverdi Ensemble Amsterdam + +964134Nick WoudDutch classical percussionist and composer, born 9 April 1955.Needs Votehttps://nickwoud.com/ConcertgebouworkestLeonhardt-ConsortRadio Filharmonisch OrkestNational Youth Orchestra Of The Netherlands + +964135Knut HasselmannClassical hornist.Needs VoteHasselmannKnud HasselmanLeonhardt-ConsortL'ArchibudelliOrchestra Of The 18th CenturyBundesjugendorchester + +964287Philipp NicolaiGerman Lutheran theologian and hymn writer, poet and composer, born 10 August 1556 in Mengeringhausen, Germany and died 26 October 1608 in Hamburg, Germany.Needs Votehttp://en.wikipedia.org/wiki/Philipp_Nicolaihttps://adp.library.ucsb.edu/names/104774D. Philippus NicolaiNicolaiNicolayP NicolaiP. NicolaiPh. NicolaiPh. NicolaïPhilip NicolaiPhilipp Nicolai M.fl. ["et.al."]Phillip NicolaiPhillipp Nicolai + +964954James Anderson (6)James AndersonTuba player.Needs Votehttp://www.brittensinfonia.com/about-us/james-anderson.htmlhttp://www.jimtuba.co.uk/J. AndersonJim AndersonLondon SinfoniettaThe London OrchestraPhilip Jones Brass EnsembleLondon Classical PlayersBritten SinfoniaLocke Brass Consort + +965045Roine Richard RyynänenRoine Rikhard RyynänenBorn on March 23, 1891 in Kuopio, Finland. A Finnish lyricist, tenor and choir leader. + +Died on October 31, 1963. +Needs VoteR. R. RyynänenR. RantaR. ReimaR. RyynänenR.R RyynänenR.R. RynnänenR.R. RyynänenR.R.R.R.R.RyynänenR.RyynänenRR RyynänenRR. RyynänenRoine Rikhard RyynänenRoine RyynänenRyynänenР. РююнаненReino RantaRaimo Raikas + +965144John AlerJohn Aler (born October 4, 1949 , Baltimore, Maryland - died December 10, 2022) was an American lyric tenor.Needs Votehttp://en.wikipedia.org/wiki/John_Alerhttps://www.imdb.com/name/nm1078410/AlerJ. AlerChorus Of St Martin In The Fields + +965298Richard RudolfClassical trumpeter.Needs VoteRichard RudolphWiener SymphonikerConcentus Musicus Wien + +965299Erich HöbarthClassical violinist and conductor, born 26 May 1956 in Vienna, Austria.Needs Votehttp://www.banffcentre.ca/faculty/faculty-member/3755/erich-hbarth.mvcEric HobarthErich HoebarthHöbarthエーリッヒ・ヘバルトWiener SymphonikerConcentus Musicus WienCamerata BernQuatuor MosaïquesWiener StreichsextettGli Angeli Genève + +965330Andreas RöhnGerman violinist and violin professor. He's the son of [a1718019], the father of [a963503] and [a6325200] and is married to [a1264845].Needs VoteAndreas RhönSymphonie-Orchester Des Bayerischen RundfunksRöhn-Trio + +965405Anouk (4)Annette KopelmanCorrectA. AnoukAnouk AnnD'AnoukAnn Kopelman + +965556Freddy AlwagRock drummer and singer in OXOCorrectF. AlwagFred AlwagFred alwagFreddie AlwagOXO (2) + +965987Eberhard UhligGerman classical trombonist.Needs VoteGewandhausorchester LeipzigCapella LipsiensisCapella FidiciniaBlasende Music Leipzig + +966221Ursula SingerCorrect + +966367Kurt RydlKurt RydlAustrian opera singer (bass). +Born on October 8, 1947 in Vienna, Austria. +Needs Votehttps://kurt-rydl.com//https://www.instagram.com/kurt_rydl/http://en.wikipedia.org/wiki/Kurt_RydlRydlSolisten Der Wiener Volksoper + +966368Phyllis Bryn-JulsonAmerican soprano vocalist, born February 5, 1945 in Bowdon, North Dakota.Correcthttp://www.bach-cantatas.com/Bio/Bryn-Julson-Phyllis.htmBryn-JulsonPh. Bryn-JulsonPhillis Bryn-JulsonPhyllis Bryn JulsonPhyllis Bryn-JulssonPhyllis Brynjulson + +966373Sara Jimenez-HeaneySarah Jane Jimenez-HeaneyNeeds VoteHeaneyHeanyJimenez-HeaneyJimenez-HeanyS J Jimenez-HeanyS-J Jimenez-HeanySJ Jimenez Ñ HeanyS-JThe Hellfire ClubBaby Doc & S-J + +966676Vernon CheelyVernon McLynn CheelyNeeds VoteV. CheelyVernon CheeleyVeron CheelyThe Jungle Band + +966876Ib HausmannGerman clarinetist.Needs Votehttp://www.ibhausmann.de/HausmannEnsemble ModernRundfunk-Sinfonie-Orchester LeipzigStaatskapelle BerlinMichael Wollny Trio + +966985New England Conservatory ChorusChorus of the New England Conservatory of Music (NEC). The conservatory was founded in 1867 in Boston, Massachusetts.Needs Votehttps://necmusic.edu/choruseshttp://en.wikipedia.org/wiki/New_England_Conservatory_of_MusicChoeurs Du Conservatoire "New England"Choeurs Du New England ConservatoryChorusChorus From The New England Conservatory Of MusicChœur Du New England ConservatoryChœur du New England ConservatoryChœurs Du Conservatoire "New England"Chœurs Du Conservatoire De La Nouvelle-AngleterreCoro Del Conservatorio De Nueva InglaterraCoro Del New England ConservatoryKonzervatorijski Zbor Iz Nove EngleskeLes Chœurs Du Conservatoire "New England"Männerchor Des New England Conservatory ChorusMännerchor des New England Conservatory ChorusNEC ChorusNew England ConservatoryNew England Conservatory & Alumni ChorusNew England Conservatory Alumni ChorusNew England Conservatory And Alumni ChorusesNew England Conservatory Chamber SingersNew England Conservatory ChoirNew England Conservatory Chor Und Der Alumni ChorNew England Conservatory Chorus & Alumni ChorusNew England Conservatory Chorus And Alumni ChorusNew England Conservatory Chorus and Alumni ChorusNew England Conservatory Concert Choir And Chamber SingersNew England Conservatory Symphonic ChoirNew England Conservatory Symphony ChoirTenors and Basses of the New England Conservatory Symphonic ChoirThe New England Conservatory ChorusWomen Of The New England Conservatory ChorusХор консерватории Новой АнглииMen's Chorus Of The New England ConservatoryDon KendrickJoyce GippoDon HoveySue AuclairDavid DusingDan WindhamGailanne CummingsKay DunlapChildren's Chorus Of The New England Conservatory + +966990Lorna Cooke deVaronLorna Cooke deVaronConductor emerita and founding director of the [a=New England Conservatory Chorus].Correcthttp://www.sonoraproductions.com/devaron.htmlhttp://www.bostonsingersresource.org/devaron.aspL. Cooke De VaronLorna Cook De VaronLorna Cooke De VaronLorna Cooke DeVaronLorna Cooke DevaronLorna Cooke de VaronLorna Cooke deVaronЛорна Кук де Варон + +967364Frédéric GondotClassical violist.Needs VoteLes Arts FlorissantsL'Orchestre National d'Ile De France + +967371Stephen CarterCountertenor and alto vocalistNeeds VoteMagnificatThe Choir Of The King's ConsortThe Choir Of Christ Church CathedralThe Amsterdam Baroque ChoirChapelle Du RoiTenebrae (10)Retrospect Ensemble + +967372Carla MarottaClassical violinist.Needs VoteThe Amsterdam Baroque OrchestraEuropa GalanteAccademia Strumentale Italiana, VeronaIl Complesso BaroccoEnsemble VanitasLa Risonanza + +967373Penny DriverClassical cellist and teacher. +She was Sub-Principal Cello with the [a=Bournemouth Symphony Orchestra], a member of the [a=London Mozart Players] and Co-Principal with [a=The Amsterdam Baroque Orchestra]. She has had a long association with the [a=London Symphony Orchestra] and the [a=Orchestra Of The Age Of Enlightenment]. Cello teacher at the Wells Cathedral School. +Married to [a=Richard Ireland].Needs Votehttp://www.pennydriver.co.uk/https://www.facebook.com/penny.driver.3https://open.spotify.com/artist/5zhqxwuXNHYITM4eKbm7cHhttps://music.apple.com/sk/artist/penny-driver/1502146621https://wells.cathedral.school/staff/penny-driver-cello/https://www.altalena.eu/en/cello-2/London Symphony OrchestraBournemouth Symphony OrchestraThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLondon Mozart PlayersOrchestra Of The Age Of Enlightenment + +967375Stefano VezzaniItalian oboist and shawm, bombarde instrumentalistNeeds VoteThe Amsterdam Baroque OrchestraEuropa GalanteVenice Baroque OrchestraIl Complesso BaroccoArs Antiqua AustriaEnsemble Barocco Sans SouciCantar LontanoDie FreitagsakademieLa PifareschaOrchestra Barocca Les Elèments + +967378Laura JohnsonClassical violinist and viola player.Needs VoteLaura A.A. JohnsonЛора ДжонсонAnima EternaThe Amsterdam Baroque OrchestraMusica Antiqua KölnCafé ZimmermannLa Stravaganza KölnNetherlands Bach CollegiumThe Rare Fruits CouncilHarmonie UniverselleKölner Akademie + +967379Richard BryanAlto and counter-tenor vocalist.Correcthttp://richardbryan.org/Gabrieli ConsortThe Amsterdam Baroque ChoirCantabile + +967380Marion VerbruggenClassical recorder player.Needs VoteMarionMarion VerbrügenMarion VerbrüggenVerbruggenThe Amsterdam Baroque OrchestraMusica Antiqua KölnTafelmusik Baroque OrchestraEnsemble CapriceFlanders Recorder Quartet + +967381Martin StadlerClassical oboist.Needs VoteThe Amsterdam Baroque OrchestraConcerto KölnDe Nederlandse BachverenigingLa StagioneLa Stravaganza KölnKölner AkademieOrchester Der J.S. Bach Stiftung + +967383Nicholas PapClassical viol and double bass player.CorrectNicolas PapCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque OrchestraLa Petite BandeOrchestra Of The 18th CenturyBaroque OrchestraThe Smithsonian Chamber Players + +967384Bruce DickeyBruce Dickey is an American cornett player. He is regarded as the doyen of the modern generation of cornett players, many of whom were his students at the Schola Cantorum Basiliensis and Early Music Institute at Indiana University, or students of his students. In 1987 he founded the ensemble [a=Concerto Palatino] with the Dutch baroque trombonist [a=Charles Toet], following the name of the original eight-man Concerto Palatino della Signoria di Bologna of San Petronio which was famed from 1530 to 1800.[ He is married to the American singer and conductor [a=Candace Smith], with whom he founded Artemisia Editions, which specializes in publishing editions of 17th-century Italian sacred music.Needs Votehttps://www.brucedickey.com/https://en.wikipedia.org/wiki/Bruce_Dickeyhttps://www.concertopalatino.com/bruce-dickeyCollegium VocaleThe Amsterdam Baroque OrchestraHesperion XXSonnerieCantus CöllnConcerto PalatinoCurrendeAccordoneConcerto CastelloKees Boeke ConsortGalatea (2)The Viadana Collective + +967388Barry SargentClassical violinist.Needs VoteThe Amsterdam Baroque OrchestraLes Talens LyriquesEnsemble SagaIl Complesso Barocco + +967389Charles ToetClassical trombonist.Needs Votehttps://www.concertopalatino.com/charles-toetChares ToetOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleThe Amsterdam Baroque OrchestraConcerto VocaleLa Petite BandeSyntagma MusicumTafelmusik Baroque OrchestraBach Collegium JapanConcerto PalatinoCurrendeConcerto CastelloKees Boeke ConsortAbendmusiken Basel + +967390Peter De GrootAlto vocalist, artistic leader of the [a=Egidius Kwartet]. +Before founding the quartet, he sang with Collegium Vocale Gent under Philippe Herreweghe and in Ton Koopman's Amsterdam Baroque Choir, also appearing as a soloist. He also sang in solo ensembles such as the Huelgas Ensemble (Paul van Nevel), Currende Consort, Camerata Trajectina, Gesualdo Consort, and the Cappella Figuralis of the Netherlands Bach Society. +Correcthttp://www.altuspeterdegroot.nl/Huelgas-EnsembleCollegium VocaleEgidius KwartetThe Amsterdam Baroque ChoirDe Nederlandse Bachvereniging + +967480Richard Berg (3)Jazz French horn player (1933/4 - January 4, 2024). + +He was a graduate of the Juilliard School in New York City. He had an extensive music career including playing with Paul Anka’s band, playing first chair in Andrew Lloyd Webber’s original production of Cats, as well as numerous other Broadway productions. He played with Count Basie, Leslie Uggams, and Tony Bennett among others. He played in the original recording of “Times of your Life” for Kodak. He was a member of numerous National and International Symphony Orchestras/Philharmonics. He had an extensive military career as a US Army Sergeant playing in the National Army Band during the Vietnam war.Needs VoteDick BergDizzy Gillespie And His OrchestraThe Rick Wilkins OrchestraMichel Legrand Big Band + +967557Françoise Mallet-JorisFrançoise LilarFrançoise Mallet-Joris (born July 6, 1930, Antwerp, Belgium – died August 13, 2016) was a Belgian author. She also wrote lyrics for the singer [a375022].Needs Votehttps://en.wikipedia.org/wiki/Fran%C3%A7oise_Mallet-JorisF. MalletF. Mallet - JorrisF. Mallet JorisF. Mallet-JorisFrançoise Mallet JorisFrançoise Mallet-Jorris + +967612Wolfgang MartinConductorNeeds VoteW. Martin + +967686Billy RootWilliam RootAmerican jazz saxophonist (tenor, baritone), born on March 6, 1934 in Philadelphia, died July 30, 2013.Needs Votehttp://www.jazzdiscography.com/Artists/Blakey/root.htmBill RootBilly Root, Jr.RootБилли РутHarry James And His OrchestraStan Kenton And His OrchestraDizzy Gillespie Big BandMorgan=Kelly SeptetJack Sheldon And His Exciting All-Star Big-Band + +967691Anonymous[b]This artist profile is only to be used for artists who are credited as 'anonymous' on the release. Please use [a=Traditional] (for writing credits only) or [a=Unknown Artist] instead, where necessary. ([g2.3.1.])[/b] + +This is a catchall artist page for credits that are listed as 'Anonymous' on a release, when the identity of the author is left hidden or unidentified for some reason. 'Anonymous' (also often abbreviated to 'Anon' or 'Anon.') is sometimes used as a pseudonym for artists who don't wish to have their true identities in the open. Anonymous is typically used in classical music & folk to note a composition where the writer wasn't mentioned and is not known until today, often accompanied by a classical style period, a century or (approximate) date, a location (country, city, ...), or the source of the work (typically a book collecting songs or composition).Correct"?""AB""Cambrai" (Mode iii)"Chasses" Anonymes de L´Ars Nova"Danserye", Nederland 16C"Des Knaben Wunderhorn""Eene Zeer Kundige Hand""H.B.""Lysagóra Songs" Collection, 15th Century' ''Chanson De Toile' Anonym Of The XIIth Century, Langue D'Oil(?)(Francesco Landini?)(Ireland 8th century)(Karadeniz) Anonim(Mode 5)(Mode 7)(Mode 8)***+++...X/a//b//c//d//e//f//g//v/10th Century10th-century MS11th-century French12. Jh.12th Century12th-c. English12th/13th Century12th/13th century Occitan13. Jh.13th Century13th Century Anon13th Century Anon.13th Century English - Anon13th century Gloucester13th century Uppsala Sweden13th-c English13th-century Italian13th/14th Century13thc English (BL Harley 978)13thc English (Douce 139)14. Jh.14. Jhdt.14th C. Italian14th C. Spain14th Cen. English14th Century14th Century Anon (Earliest Known Lullaby)14th Century English14th century Anonymous14th-Century English Manuscrit14th-century English14th-century Spanish14thc Italian (BL Add. 29987)14thc Spanish (Libre vermell)15401588 Orchesographie, Arbeau15th Century15th Century Anon15th Century Anon.15th Century English15th Century English Anon15th-c. English15th-cent. English15th-century English15th/16th Century16. Jahrh.16. Jahrhundert16. Jh.1651 Dancing Master, Playford16531685 Division Violin, Playford16th Cent.16th Century16th Century Anon.16th Century French Folk Song16th Century Gaillarde16th-c. English16th-century English16th-century German17. Jahrhundert17. Jh.17th Century17th Century Carol18th Cent. Anon18th Century Anon.18th-Century English Carol19th C. American Anon.2 Anons2 Anonymous Dangers5th-Century Ambrosian Hymn7th Grade Students upon request of the Composer?? ? ?????????A Different AnonymousA Guy Who Wants To By AnonymousA Lot Of DrunksA Studio CrowdA bunch of AnonsA bunch of femanonsA fucking idiotA. A.A. NonA...A.S.D.ANONAanonAbbildung Des David Aus Einer Mittelalterlichen HandschriftAd Cenam Agni Providi 12th CenturyAeterne Rex AltissimeAhrweil AntiphonerAhrweil Antiphoner (13th C.)Alejandría?AlgeríasAll the anons in one crampy room, wearing Homestuck cosplay and eating knock-off brand Hot PocketsAllegedly Jack The RipperAllspel På Spelmansstämman I Wadköping Sommaren 1977Altböhmisches WeihnachtsliedAlte Engl. Lautenmelodie, AnonymAlte Russische RomanzeAltes GedichtAltflämisches Liederbuch, 15./16. JahrhundertAmbraser LiederbuchAmbrosianischer Lobgesang Wiener Katholisches Gesangbuch Der Maria TheresiaAmerican Shaker songAmerican Trappistine NunAmerican, 19th centuryAn Angler, A Schoolmaster, A MonkAn Anonymous Englishman Of The 17th CenturyAn Anonymous Flute WielderAn Anonymous Group Of Students From GazaAn English Anonymous Of The XVII CenturyAn.An. (XIII)An. (XIV)Ancient Advent Antiphons (Cologne 1710)Ancient Irish MelodyAndalusiaAndernachen Gesangsbuch 16 Jh.Andernacher GesangbuchAndernacher Gesangbuch 1608Andernacher Gesangbuch, Köln 1608Anglo Saxon ChronicleAniniemAnn.AnnonAnnon.AnnonymousAnomAnominoAnomino S. XVIAnominoweAnonAnon & CoAnon & FrensAnon (13th Century)Anon (13th c. France)Anon (13th c. Spain)Anon (13th-century)Anon (14th-century)Anon (15th Century)Anon (15th c. France)Anon (1684)Anon (16th Century)Anon (16th c.)Anon (1700t)Anon (17th Century)Anon (19th Century)Anon (?)Anon (Airs Du Court)Anon (C.XVIII)Anon (Early 16th Cent.)Anon (English 13th Century)Anon (French thirteenth century)Anon (Late 17th Cent.)Anon (Old Poem)Anon (Pre 15th Cent. Spain)Anon (Probably 6th Century)Anon (The Division Flute 1706)Anon (Virginia Harmony 1831)Anon (c.12th-13th Century)Anon (fifteenth century)Anon .Anon 12th Century PicardAnon 13th CenturyAnon 14th CenturyAnon 15th Century WordsAnon 16th CenturyAnon 16th Century EnglishAnon 2Anon EnglishAnon Francese Del XIII° SecoloAnon FrenchAnon French 13th CenturyAnon Italian 16cAnon Italy 16cAnon MedievalAnon Sec. XVAnon Sec. XVIAnon Sec. XVIIIAnon VoiceAnon YmousAnon [C.XVIII)Anon and the YmousesAnon c. 1325Anon c. 1560Anon ft. The Vidya House BannedAnon ft. the Voice Cast of DW3Anon singersAnon(s)Anon(s?)Anon,Anon, 13e EeuwAnon, 16th C.Anon, 8th Cent. SaxonAnon, EnglandAnon, MonodyAnon, Poem (15th Century)Anon, c.1300Anon, c.1650Anon-ItalyAnon-kunAnon.Anon. (12th Century)Anon. (13th Cent.)Anon. (13th Century)Anon. (13th-18th Cent.)Anon. (14th Cent.)Anon. (14th Century)Anon. (15th Cent.)Anon. (15th Century)Anon. (15th c.)Anon. (15th/16th century)Anon. (16C. England)Anon. (16th Century)Anon. (1855)Anon. (18th Century)Anon. (?Italian)Anon. (Airs Du Court)Anon. (Attrib. Hugh Aston)Anon. (Early 15th c.)Anon. (Early 16th c.)Anon. (Ecole De N.Dame), XIII.cAnon. (Fifteenth Century)Anon. (Italian)Anon. (Köln 1599)Anon. (Köln 1623)Anon. (Late 14th c.)Anon. (Late 15th Century)Anon. (Late 15th c.)Anon. (Mid-15th C.)Anon. (Monastery Of Saint Joan De Les Abadesses)Anon. (School Of Notre Dame De Paris, 13th Century)Anon. (School of Perotinus)Anon. (Scottish)Anon. (Service of Evensong, as sung at King's College, Cambridge)Anon. (Spanish 17th C.)Anon. (Spanish)Anon. (XIII.c)Anon. (XIV c.)Anon. (XIV.c)Anon. (c. 1400)Anon. (c.1420)Anon. - Faryfax ManuscriptAnon. / MorlayeAnon. / UppsalaAnon. 11th CenturyAnon. 12th CenturyAnon. 12th Century PicardAnon. 13th Cent.Anon. 13th CenturyAnon. 13th centuryAnon. 14e EeuwAnon. 14th Cent.Anon. 14th CenturyAnon. 1517Anon. 1556Anon. 15c.Anon. 15c. ItalianAnon. 15e EeuwAnon. 15th Cent.Anon. 15th CenturyAnon. 15th. c.Anon. 15°Anon. 1611Anon. 16th C.Anon. 16th CentAnon. 16th Cent.Anon. 16th Cent. ItalyAnon. 16th CenturyAnon. 16th Century)Anon. 16th centuryAnon. 16th-C. ScottishAnon. 16th-Century EnglishAnon. 16th/17th CenturyAnon. 16°Anon. 17. JahrhundertAnon. 1700-1Anon. 1700-lAnon. 17th CenturyAnon. 17th cent.Anon. 17° S.Anon. 1862Anon. 18th Cent. SaxorAnon. 18th CenturyAnon. 18th centuryAnon. 20th CenturyAnon. 2nd Century A.D.Anon. 8th Cent. SaxonAnon. AlicanteAnon. AmericanAnon. AngleterreAnon. ApugliaAnon. BasqueAnon. Basque CarolAnon. BerbèreAnon. C. 1615Anon. CatalogneAnon. ChorusAnon. DutchAnon. Early 16th CenturyAnon. Engl.Anon. EnglandAnon. England (ca. 1620)Anon. EnglishAnon. English 15th CenturyAnon. English 16th Cent.Anon. English 16th CenturyAnon. English C.1270Anon. English XIII CenturyAnon. English XIV CenturyAnon. English, 14th CenturyAnon. English, 16th CenturyAnon. English, c. 1420Anon. Fior.no XVI° Sec.Anon. Fiorentino Del XIII° SecoloAnon. FranceAnon. Francese Del XIII° SecoloAnon. French (c. 1090)Anon. French 13th CenturyAnon. French Before 1316Anon. French CanadianAnon. French XIII CenturyAnon. French, 13th CenturyAnon. French, 1589Anon. GermanAnon. German 14th centuryAnon. German c.1394Anon. Germany 13th CenturyAnon. Greek 6th Cent. B.C.Anon. GroupAnon. GrèceAnon. HungarianAnon. IrishAnon. Irish, 12th CenturyAnon. IsraëlAnon. ItaliaAnon. ItalianAnon. Italian 14th CenturyAnon. Italian, 1689Anon. Italiano Del XIV° SecoloAnon. ItalyAnon. Italy (ca. 1520)Anon. Italy 12th / 13th CenturyAnon. Italy 14th CenturyAnon. Italy, 14th CenturyAnon. KhéneAnon. Late 14th CenturyAnon. ManuscriptAnon. MedievalAnon. MinstrelsAnon. MirecourtAnon. Notre Dame-skolanAnon. NürnbergAnon. Poland (ca. 1530)Anon. PopolareAnon. Popular, Ca. 1530Anon. PortugalAnon. Provenzale Del XIII° SecoloAnon. Provençal, 12th CenturyAnon. RegensburgAnon. SaxonAnon. ScottishAnon. Scottish C.1250Anon. Sec. XVIIAnon. Simancas M.S.Anon. Spagna XVI SecoloAnon. SpainAnon. SpanishAnon. Spanish 16th CenturyAnon. SéfaradeAnon. Trad.Anon. TroubadourAnon. Worcester MS 13th CenturyAnon. XII CenturyAnon. XIII Sec.Anon. XIII°Anon. XII°Anon. XIV Sec.Anon. XVII CenturyAnon. XVII SecoloAnon. XVI° Sec.Anon. XVth CenturyAnon. XV°Anon. XV° Sec.Anon. [Ecole de N. Dame]Anon. [Plainsong, mode III)Anon. [Th. Preston?]Anon. c. 1500Anon. c. End Of 18th CenturyAnon. c. End Of 19th CenturyAnon. c.1400Anon. c.1500Anon. c.1820Anon. c.1830Anon. ± 1310Anon., "Cancionero De Upsala" Spain 16CAnon., (13th century)Anon., (England, 16th century)Anon., 13th Cent.Anon., 14th Cent.Anon., 14th CenturyAnon., 14thC EnglishAnon., 15th Cent.Anon., 15th CenturyAnon., 1782Anon., 18th CenturyAnon., BohemianAnon., BresciaAnon., C. 1400Anon., Cancionero de UppsalaAnon., CubaAnon., ElizabethanAnon., France 13CAnon., France 13C "Troubadour"Anon., FrenchAnon., ItalianAnon., Italy 14CAnon., MantuaAnon., MittenwaldAnon., New Hampshire 1784Anon., NürnbergAnon., Spain 16CAnon., Swedish MelodyAnon., c. 1400Anon., c1310Anon1Anon: English, Late 13th-14th CenturyAnoniemAnoniem (13e eeuw)Anoniem (14e eeuw)Anoniem (15e Eeuw)Anoniem (15e eeuw)Anoniem (16e Eeuw)Anoniem (17de Eeuw)Anoniem (Spanje)Anoniem 14e Eeuw ItaliëAnoniem 16de Eeuw FrankrijkAnoniem KinderversAnonimAnonim (Elazığ Yöresi)Anonim (I Pol. XVII W.)Anonim (Josquin?)Anonim (Kerkük)Anonim (XV W.)Anonim (XVI w.)Anonim (XVI)Anonim (XVI. Jh.)Anonim (XVII w.)Anonim (XVII)Anonim / GiresunAnonim / Maçka - TrabzonAnonim / RizeAnonim / TrabzonAnonim / Trabzon - TonyaAnonim Ca. 1430Anonim Polish ca. 15th c.Anonim Polish ca. 16th c.Anonim PolskiAnonim Polski (1759)Anonim Segle XIXAnonim StaropolskiAnonim TürküAnonim XIIIAnonim XIII W.Anonim XIII w.Anonim XIIe S.Anonim XIV w.Anonim XIX W.Anonim XVI W.Anonim XVI w.Anonim XVII w.Anonim Z VIII W.Anonim din sec. XVI (Antwerpen, 1551)Anonim polskiAnonim sec. XVIAnonim spaniol (sec. XV)Anonim z XII w.Anonim z XIII w.Anonim z XVI w.Anonim İçel Silifke-MutAnonim, 1769 r.Anonim, S. XIIAnonim, przed 1770Anonim-Rumeli TürküsüAnonim. /Autors AnonīmsAnonimaAnonima Del XVII Sec.Anonima EspanolaAnonimas (XVI Amž.)Anonimas (XVII a.)AnonimeAnonimiAnonimi CividalesiAnonimi Del Sec. XIIIAnonimni AutorAnonimni Autor / Anonymous AuthorAnonimoAnonimo (1360?)Anonimo (2. Hälfte 14.Jh.)Anonimo (Fine Del Sec. XV - Inizio Sec. X)Anonimo (Fine Del Sec. XV - Inizio Sec. XVI)Anonimo (Fine Sec. XV - Inizio Sec. XVI)Anonimo (Fine del Sec. XV - Inizio Sec. XVI)Anonimo (Perú)Anonimo (Sec. XIII)Anonimo (Sec. XVII)Anonimo (Seconda Metà Del Sec. XVI)Anonimo (Siglo XVIII)Anonimo (XIII Sec) - "Cantigas de Santa Maria"Anonimo (XIII Sec) - "Laudario di Cortona"Anonimo (XIII sec.)Anonimo (XIV Sec.) - "Llibre Vermell de Montserrat"Anonimo (XIV Sec.) - "London Codex"Anonimo (XIX Secolo)Anonimo (XVI sec)Anonimo (XVII Secolo)Anonimo (XVIII Sec.)Anonimo (XVIII sec.)Anonimo (XVII° Secolo)Anonimo (tradizionale)Anonimo - Siglio XIVAnonimo - Siglio XVAnonimo - Siglio XVIAnonimo 1500Anonimo BoemoAnonimo Canto Tradizionale Inglese Del 1504Anonimo CineseAnonimo Da BossinensisAnonimo Da FirenzeAnonimo Da LuccaAnonimo Da PisaAnonimo Da PistoiaAnonimo Del '500 (Campania)Anonimo Del '700Anonimo Del 700Anonimo Del Sec. XVAnonimo Del Sec. XVIAnonimo Del Sec. XVIIIAnonimo Del Secolo XIVAnonimo Del XV SecoloAnonimo Del XVI SecoloAnonimo Del XVII SecoloAnonimo Del XVIII SecoloAnonimo Di BucarestAnonimo Di MadridAnonimo Di Netro Sec. XIXAnonimo EskimalaAnonimo FranceseAnonimo Francese Del XVI Sec. "La Lettre"Anonimo IngelesaAnonimo IngleseAnonimo ItalianoAnonimo Italiano (XIV Secolo)Anonimo Italiano del XVI sec.Anonimo MantovanoAnonimo ModeneseAnonimo Napoletana (Fine XVII sec.)Anonimo NapoletanoAnonimo Napoletano '700Anonimo Napoletano Del 700Anonimo Napoletano Del XVII Sec.Anonimo OlandeseAnonimo Pistoiese (Sec. XVIII)Anonimo PopolareAnonimo Popolare (Basilicata/Puglia)Anonimo Popolare (Corsica)Anonimo Popolare (Puglia)Anonimo Popolare (Sicilia)Anonimo RomagnoloAnonimo S.XVIAnonimo Sec. XIIAnonimo Sec. XIVAnonimo Sec. XVAnonimo Sec. XVIAnonimo Sec. XVIIAnonimo Sec. XVIIIAnonimo SpagnoloAnonimo Spagnolo (Sec. XVI)Anonimo Spagnolo (Sec. XVII)Anonimo Spagnolo Del Sec. XIVAnonimo TrentinoAnonimo VenezianoAnonimo VietnamitaAnonimo XII Sec.Anonimo XIII Sec.Anonimo XIV Sec.Anonimo XV SecAnonimo XV Sec.Anonimo XV SecoloAnonimo XVI SecoloAnonimo XVII sec.Anonimo codice BolognaAnonimo codice ReinaAnonimo codice RossiAnonimo del '700Anonimo espagnolAnonimo francese (XIII Secolo)Anonimo sec. XVIAnonimo, Lezione Della Collina TorineseAnonimo, Lezione Di CuneoAnonimo, XIV Sec.Anonimo-PopolareAnonimousAnonimous (XVI Sec.)Anonimous AuthorAnonimous XIV CenturyAnonimowaAnonimowa Monodia Polska z. XIII w.AnonimowyAnonimowy TruwerAnonimusAnonimus (1759-?)Anonimus (Andalucía)Anonimus (CM Calabria)Anonimus (CMP)Anonimus (Early 18° Century)Anonimus (Italija, Kraj 18. St.)Anonimus (País Vasco)Anonimus (XV St.)Anonimus (XVI St.)Anonimus (XVI-XVII. W.)Anonimus (XVII St.)Anonimus (from the Holy Ghost Monastery Tabulature, 1548)Anonimus (from the Warsaw Organ Tabulature, XVII c.)Anonimus 14. St.Anonimus 16. St.Anonimus Córdoba (S. X)Anonimus Eng. (XVI)Anonimus It. (XVI)Anonimus Iz Hrvatskog ZagorjaAnonimus S CresaAnonimus SefardiAnonimus XVII C.Anonimus Šp. (XVII)Anonimus, 18. St., HrvatskaAnonimus, Dubrovnik, 18-19. St.Anonimus, Klanjec, 18. St.Anonimus, Korčula, 18-19. St.AnoninoAnonnimo SpagnoloAnonnymeAnonsAnons From Around the WorldAnonumous XVII Jhdt.AnonumusAnony.AnonymAnonym (Barcelona, 1764)Anonym ( Um 1480 )Anonym ( Um 1550 )Anonym (1. Hälfte 16. Jh.)Anonym (13. Jahrhundert)Anonym (13. Jh.)Anonym (13. Århundre)Anonym (14, Jahrhundert)Anonym (14. Jahrhundert)Anonym (14. Jh.)Anonym (14.Jh.)Anonym (15. Jahrhundert)Anonym (16. Jh.)Anonym (16th Century)Anonym (17. Jahrhundert)Anonym (17.Jahrhundert)Anonym (18. Jahrhundert)Anonym (18th Century)Anonym (Anfang 16. Bis 19. Jahrhundert)Anonym (Anfang 17. Jahrhundert)Anonym (Anfang 18. Jahrhundert)Anonym (Anfang 19. Jahrhundert)Anonym (Attaingnant 1529)Anonym (Attaingnant 1529/30)Anonym (Deutschland, 18.Jh.)Anonym (Ende 17. Jahrhundert)Anonym (Ende des 15. Jahrhunderts)Anonym (Etwa Ende 18. Jahrhundert)Anonym (France, 14th Century)Anonym (Gisbert von Steenwick?)Anonym (Glogauer Liederbuch um 1480)Anonym (L. Mozart, Notenb.)Anonym (Mitte 18. Jahrhundert)Anonym (Mitte 19. Jahrhundert)Anonym (Oviedo, 18.Jh.)Anonym (Spanien, 18.Jh.)Anonym (Zač. 18. Stol.)Anonym (etwa 12. Jahrhundert)Anonym (gedruckt bei Attaingnant, Paris 1530)Anonym (holländisch um 1630)Anonym (um 1500)Anonym / Anonymous / Anonyme / AnonimoAnonym 14. Jhdt.Anonym 16. Jahrh.Anonym 16. Jh.Anonym 16. Jhdt.Anonym 1600-Tals DiktareAnonym 1640Anonym 17. Jahrh.Anonym 18. Jh.Anonym 1806Anonym 1846Anonym <<Gassenhewerlin>> 1535Anonym Aus "Dlugoraij"Anonym Aus BöhmenAnonym Diktare I Ett Sibiriskt FånglägerAnonym Du XVIe SiècleAnonym EnglischAnonym Fängslad Diktare Från VietnamAnonym MelodiAnonym Of The XIIth Century, Langue D'OilAnonym S.XV-XVIAnonym S.XVI-XVIIAnonym S.XVIIAnonym Siglio XVIIAnonym SpanienAnonym Svensk FrelsesoffiserAnonym Tekst fra Finnmark 1915Anonym TonsättareAnonym Um 1500Anonym Vor 1643Anonym XVIIAnonym Z KonzervatóriaAnonym finsk folkvisaAnonym författareAnonym svensk folkmelodiAnonym svensk folkvisaAnonym um 1200Anonym um 1240Anonym um 1325Anonym um 1400Anonym um 1530Anonym um 1600Anonym ÖversättareAnonym åländsk folkvisaAnonym českýAnonym, 10. Jh.Anonym, 12. Jh.Anonym, 14. Jhdt.Anonym, 15th CenturyAnonym, 16. JahrhundertAnonym, 17. Jahrh.Anonym, 18. JahrhundertAnonym, 18. Jh.Anonym, 19 Jhdt.Anonym, Aquitanien (12.Jh.)Anonym, Aus 'Des Knaben Wunderhorns'Anonym, Aus Dem 16. JahrhundertAnonym, Dubrovnik (18. v / 18th c.)Anonym, Ende Des 17. JahrhundertsAnonym, Engl. 1580Anonym, EnglandAnonym, Hvar (16. v / 16th c.)Anonym, Um 1700Anonym.Anonym. (Ms. Camphuysen)Anonym. Trouvères-Lied, 13. Jh.Anonym/15. Jhd.Anonym/Carmina Burana (12. Jahrhundert)Anonym: Codex ReinaAnonym: Ms. Lo., BM 29987Anonym: Sammlung Ali UfkiAnonymeAnonyme (11éme Siècle)Anonyme (12éme Siècle)Anonyme (1490)Anonyme (16e Siècle)Anonyme (17e Siècle)Anonyme (17éme Siècle)Anonyme (18e Siècle)Anonyme (Ancien)Anonyme (Attaingnant)Anonyme (Attaingnant, 1531)Anonyme (Bohème, 15ème Siècle)Anonyme (Bolivie)Anonyme (Chiquitos XVIIIeme siècle)Anonyme (Circa 1580)Anonyme (Coll. Flores de Música)Anonyme (Coll. Truxillo del Perú II, c. 1780)Anonyme (Collection Flores de Música, 1706 - 1709)Anonyme (Cusco)Anonyme (D’Après Le Manuscript De P. Pingré)Anonyme (Einsiedeln)Anonyme (Environ 1600)Anonyme (Espagne XVIe)Anonyme (Fin XVIe Siècle)Anonyme (Fin XVe Siècle)Anonyme (Italia : Trecento Mss.)Anonyme (Italie, XVe Siècle)Anonyme (Maroc)Anonyme (Mss. Dimitrie Cantemir N. 220, Ca. 1690)Anonyme (Napoli ca. 1450)Anonyme (Orcades, XIIe Siècle)Anonyme (Perú, 1631)Anonyme (Portugal XVIè Siècle)Anonyme (Sefardí)Anonyme (Sweden XVI C)Anonyme (XIIIe siècle)Anonyme (XIII° Siècle)Anonyme (XIVe)Anonyme (XIe siècle)Anonyme (XVI C)Anonyme (XVIIe Madrid BN M. 1358)Anonyme (XVIIe Madrid BN M. 1359)Anonyme (XVIIème siècle)Anonyme (XVIe Siècle)Anonyme (XVIe siècle)Anonyme (XVI° Siècle)Anonyme (XVe S.)Anonyme (XVe siècle)Anonyme (XVe)Anonyme (XV° Siècle)Anonyme (Zurich)Anonyme (ca 1460)Anonyme (ca 1460)•Anonyme (ca. 1580)Anonyme (ca. 1600)Anonyme (ca. 1640)Anonyme (chanson de trouvère du XIIè siècle)Anonyme (ed. P. Phalèse)Anonyme (vers 1840)Anonyme - (A.M. Chiquitos, Bolivie)Anonyme - (S.S.A. Cuzco, Pérou)Anonyme - Chant Religieux IndiAnonyme - instrumentalAnonyme 12ème SiècleAnonyme 13e SiècleAnonyme 14e SiècleAnonyme 1520Anonyme 1534Anonyme 15e SiècleAnonyme 15è SiècleAnonyme 15ème SiècleAnonyme 1602Anonyme 1631Anonyme 16e SiècleAnonyme 1703Anonyme 1709Anonyme 1725Anonyme 17eAnonyme 17e SiècleAnonyme 18e SiècleAnonyme AllemandAnonyme Allemand (1593)Anonyme Allemand XVe SiècleAnonyme AndalouAnonyme AnglaisAnonyme Anglais (XVIe Siècle)Anonyme Anglais (XVIéme Siecle)Anonyme Anglais 17eAnonyme Anglais Du XVIe SiècleAnonyme Anglais, XVIe S.Anonyme BretonAnonyme C13Anonyme C13-14Anonyme C17Anonyme CatalanAnonyme Chant GregorienAnonyme ChilienAnonyme D'Allemagne Du SudAnonyme De Kromeiris (XVth Siecle)Anonyme De Kromeris ( Siglo XV )Anonyme De Kromeris (XVe S.)Anonyme De KromerizAnonyme De PragueAnonyme De San Antonio AbadAnonyme Du 16iémeAnonyme Du 16° SiecleAnonyme Du 16ème SiècleAnonyme Du 17e SAnonyme Du 17iémeAnonyme Du 2ème SiècleAnonyme Du Moyen-AgeAnonyme Du XIIe S.Anonyme Du XVI SiècleAnonyme Du XVI. s.Anonyme Du XVIIIe SiècleAnonyme Du XVIIIè SiècleAnonyme Du XVIIeAnonyme Du XVIeAnonyme Du XVIe SiècleAnonyme Du XVIè SiècleAnonyme Du XVIᵉ SiècleAnonyme Du XVeAnonyme Du XVe S.Anonyme Du XVe SiècleAnonyme ElisabéthaineAnonyme Env. 1300Anonyme EspagnolAnonyme Espagnol (1557)Anonyme Espagnol 16ème SiècleAnonyme Espagnol XVIeAnonyme Espagnol, XVIe s.Anonyme Fin XVIe SiècleAnonyme FinlandaisAnonyme Francais (XIIIe Siecle)Anonyme FrançaisAnonyme Français Vers 1200Anonyme Hispano-MauresqueAnonyme IrlandaisAnonyme Itailien (14ème Siècle)Anonyme ItaliaAnonyme ItalienAnonyme Italien (XIVe Siecle)Anonyme Italien, XVIe S.Anonyme Komponisten des 16. JahrhundertsAnonyme Mss. VeneziaAnonyme OttomanAnonyme Paris XVe S.Anonyme PopulaireAnonyme ProvençalAnonyme Provençal Début XVIe S.Anonyme S.XvAnonyme SefardiAnonyme Shépharade (Smyrne, XVIe Siècle)Anonyme Solo-TrompeteAnonyme SprayerAnonyme Sépharade (Smyrne, XVIe Siècle)Anonyme Tabulatur Aus Dem 16. JahrhundertAnonyme UmdichtungAnonyme Vers 1500Anonyme Vers 1620Anonyme VorlageAnonyme XIIIeAnonyme XIIIe S.Anonyme XIIIè SiècleAnonyme XIIeAnonyme XIIe SiècleAnonyme XIIe s.Anonyme XIVe SiècleAnonyme XIe SiècleAnonyme XVIIeAnonyme XVIIe S.Anonyme XVIIe SiècleAnonyme XVIIe siècleAnonyme XVIeAnonyme XVIe S.Anonyme XVIe SiècleAnonyme XVIe s.Anonyme XVIe siècleAnonyme XVIè SiècleAnonyme XVIème SiècleAnonyme XVIᵉAnonyme XVeAnonyme XVe S.Anonyme XVe SiècleAnonyme XVe siècleAnonyme XVè SiècleAnonyme XVème SiècleAnonyme XXIIe SiècleAnonyme XXe SiècleAnonyme [Fin XIIe S.]Anonyme de 1325Anonyme du XIVe SiècleAnonyme du XVIII˚ siècleAnonyme du XVI˚ siècleAnonyme français du XVIIIème siècleAnonyme italien, XVIIe s.Anonyme École TyrolienneAnonyme ÉcossaisAnonyme – Trouvère du XIIIe siècleAnonyme, 13èmeAnonyme, 13ème siècleAnonyme, Angleterre XVIè siècleAnonyme, Catalan, 12ème siècleAnonyme, Codex FaenzaAnonyme, Complainte Du XVe SiècleAnonyme, Début XVlIIe S.Anonyme, Fin Du XVIe SiècleAnonyme, Fin XIVe SiècleAnonyme, Fin XVIIe S.Anonyme, NaplesAnonyme, Sur L'Air Du Maréchal De Saxe (1818)Anonyme, V. 1350Anonyme, V. 1620Anonyme, XIIIe SiècleAnonyme, XIIe SiècleAnonyme, XIIe siècleAnonyme, XVIIIe SiècleAnonyme, XVIIe S.Anonyme, XVIe S.Anonyme, XVe SiècleAnonyme/Anonymous 13ème siècleAnonyme/Anonymous, 13ème siècleAnonyme/Anonymous, ca. 1200Anonyme/anonymous, 12ème siècleAnonyme/anonymous, ca. 1200Anonyme: Suite Danses (1699)Anonymer DichterAnonymer Meister (17. Jahrhundert)AnonymesAnonymes AnglaisAnonymes Avignonnais XVIe S.Anonymes CatalansAnonymes Du 17e SiècleAnonymes Du XVIè SiècleAnonymes Du XVeAnonymes Du XVème SiècleAnonymes EspagnolsAnonymes SchalmeienorchesterAnonymes XVIè SiècleAnonymes XVe Et XVIe SièclesAnonymes des XIVe et XVe sièclesAnonymes du XIVe siècleAnonymes du XVI˚ siècleAnonymes du XVe siècleAnonymes, 16th Cent.AnonymiAnonymi (din Thomas Simpson: "Taffel Consort", 1621)AnonymníAnonymní DuoAnonymní Německý Autor Z 12. StoletíAnonymosAnonymouAnonymous ("H")Anonymous (1)Anonymous (10th Century)Anonymous (11th Century)Anonymous (12./13. Jh.)Anonymous (12th c.)Anonymous (12th cen. Spanish)Anonymous (13th Century)Anonymous (13th cent.)Anonymous (14th C.)Anonymous (14th Century Basque)Anonymous (14th Century Italian)Anonymous (14th Century)Anonymous (14th c.)Anonymous (14th cent.)Anonymous (14th century)Anonymous (14th-Century English)Anonymous (14th-century)Anonymous (1517)Anonymous (1591)Anonymous (15th C.)Anonymous (15th Century)Anonymous (15th c.)Anonymous (15th cen.)Anonymous (15th cent.)Anonymous (15th century)Anonymous (15th-century)Anonymous (16 JH.)Anonymous (16.Jh.)Anonymous (16th C.)Anonymous (16th Century)Anonymous (16th Century, Italy)Anonymous (16th Jht.)Anonymous (16th c. English)Anonymous (16th c.)Anonymous (16th cen. England)Anonymous (16th century - Flores de Música Martin c Coll)Anonymous (16th century)Anonymous (1706)Anonymous (1709)Anonymous (17th C. English)Anonymous (17th C.)Anonymous (17th Century)Anonymous (17th c.)Anonymous (17th cen. Dutch)Anonymous (17th century)Anonymous (18. Jahrhundert)Anonymous (18th C.)Anonymous (18th Century)Anonymous (18th c.)Anonymous (18th-Century)Anonymous (19th C.)Anonymous (1st half XVIth c.)Anonymous (2nd Half 16th C.)Anonymous (6)Anonymous (9th Century)Anonymous (Aegidius Lute Book)Anonymous (After Hans Gerle)Anonymous (After: Gerle 1532/2)Anonymous (Antifona)Anonymous (Attaingnant, 1531)Anonymous (Attrib. Campion)Anonymous (Attributed to Johann Kuhnau)Anonymous (Bolivia)Anonymous (Bulgarie)Anonymous (Burgos, 14th Century)Anonymous (C.1684)Anonymous (Ca 1420)Anonymous (Ca 1520)Anonymous (Ca. 1470)Anonymous (Ca. 1500)Anonymous (Ca. 1550)Anonymous (Cambodia)Anonymous (Camphuysen Manuscript)Anonymous (Cancionero de Upsala)Anonymous (Champagne)Anonymous (China)Anonymous (Codex Reina)Anonymous (Czech 15th c.)Anonymous (Dresden, ca. 1760)Anonymous (Early 16th Century)Anonymous (Early Seventeenth Century)Anonymous (Early XVIth Century)Anonymous (Early-16th Century)Anonymous (El Escorial IV.a.24)Anonymous (End Of 17th Century)Anonymous (English 15th c.)Anonymous (English)Anonymous (Espagne)Anonymous (Exodus)Anonymous (Faenza Codex)Anonymous (Faenza Codex: After Jacopo Da Bologna)Anonymous (German and Latin)Anonymous (Germany/USA, ca. 1785)Anonymous (Greacus)Anonymous (Gregorian)Anonymous (Grèce)Anonymous (Israël)Anonymous (Italian 14th Century)Anonymous (Italian 14th century)Anonymous (Jamaica)Anonymous (Late 16th Century)Anonymous (Lembeek, 19th C.)Anonymous (Leonardo Da Vinci)Anonymous (Lisbon, ca. 1770)Anonymous (Liturgical)Anonymous (MSS Athens NLG 2401, f. 131r/v; Sinai gr. 1234, f. 181r; Sinai gr. 1251, f. 114v; and Sinai gr. 1293, f. 162r/v)Anonymous (Maroc)Anonymous (Modena)Anonymous (Morales?)Anonymous (Naples, before 1629)Anonymous (Napolitan)Anonymous (Netherlands,c.1630)Anonymous (Notre Dame, 12th cen.)Anonymous (Or Josquin Des Prez)Anonymous (P.D.)Anonymous (Plainchant)Anonymous (Polish)Anonymous (Polocki Manuscript)Anonymous (Provence)Anonymous (Quebec, ca. 1700)Anonymous (Renaissance)Anonymous (Rome 17th century)Anonymous (Scottish)Anonymous (Sec. XVI)Anonymous (Seventh Century)Anonymous (Spanien, 17 .Jh.)Anonymous (Spanish 16th c.)Anonymous (Spanish Folk Music)Anonymous (Spanish)Anonymous (Susanne van Soldt Clavier Book)Anonymous (The Division Flute)Anonymous (Torelli-Schule)Anonymous (Turquie)Anonymous (Uncredited)Anonymous (VXIe)Anonymous (Vienna, ca. 1800)Anonymous (Vietoris Codex Late 17th Century)Anonymous (W. A. Mozart?)Anonymous (XIII S.)Anonymous (XIII)Anonymous (XIIIe)Anonymous (XIV S.)Anonymous (XV / XVI Cen.)Anonymous (XV S.)Anonymous (XVI C.)Anonymous (XVI S.)Anonymous (XVII C.)Anonymous (XVII Jh.)Anonymous (Yorkshire 1349)Anonymous (after Francesco Mancini and Francesco Bartolomeo Conti)Anonymous (after Nicola Francesco Haym, Francesco Mancini and Francesco Bartolomeo Conti)Anonymous (c 15)Anonymous (c. 1300. Flanders)Anonymous (c. 1560 Mulliner Book)Anonymous (c. 1684)Anonymous (c.1400)Anonymous (c.1460)Anonymous (ca. 1400)Anonymous (ca. 1450)Anonymous (ca. 1500)Anonymous (doing LICH KING)Anonymous (early 16th c.)Anonymous (fl. c. 1560)Anonymous (from "Des Knaben Wunderhorn")Anonymous (from newspaper cuttings)Anonymous (late 16th Century)Anonymous (medieval English)Anonymous (mid 16th Century)Anonymous (or Josquin Des Prez)Anonymous (pre 9th century)Anonymous (probably Puccini)Anonymous (sec. XV)Anonymous - Foundling Hospital CollectionAnonymous - Italian 14th CenturyAnonymous 12. Jhd.Anonymous 12th CenturyAnonymous 13th CenturyAnonymous 13th centuryAnonymous 14th CenturyAnonymous 14th Century FrenchAnonymous 14th Century ItalianAnonymous 14th Century Italian ComposerAnonymous 15th C. Burgundian Popular SongAnonymous 15th C. GermanAnonymous 15th CenturyAnonymous 15th Century ComposerAnonymous 15th Century Laude (Hymn)Anonymous 15th c. FrenchAnonymous 15th- And 16th-Century English VerseAnonymous 15th- and 16th-century English verseAnonymous 16. CenturyAnonymous 1648Anonymous 16th CenturyAnonymous 16th Century (Egerton MS)Anonymous 16th c. SpanishAnonymous 17. Jh.Anonymous 17th CenturyAnonymous 17th Century ItalyAnonymous 17th Century Pub. 1700Anonymous 17th centuryAnonymous 17th century SpanishAnonymous 18th CenturyAnonymous 20th CenturyAnonymous 5400221Anonymous 5467468Anonymous 5479563Anonymous Adaption Of William Shakespeare's A Midsummer Night's DreamAnonymous Andalousian SongAnonymous ApugliaAnonymous Arab-AndalusianAnonymous Arab-AndelusianAnonymous ArtistsAnonymous AustriaAnonymous AustrianAnonymous AuthorAnonymous Author Of The 14th CenturyAnonymous AuthorsAnonymous Authors Of The 18th CenturyAnonymous Backup CrewAnonymous BandAnonymous Baptist HarmonyAnonymous Black VoicesAnonymous BritishAnonymous Bulgarian 13th CenturyAnonymous CallerAnonymous Cantonese ManAnonymous Chanson D'amour, 12th CenturyAnonymous ChantAnonymous Civil War PoemAnonymous Composer Of The XVII CenturyAnonymous Composer Of The XVIII CenturyAnonymous Concerned Citizen, LondonAnonymous Country Dance (17th Century?)Anonymous Disciple Of LullyAnonymous Doctor From GaliciaAnonymous Düben CollectionAnonymous Early 16th CenturyAnonymous Early Anglo-Saxon PoetAnonymous Early Christian HymnAnonymous EnglishAnonymous English 13th c.Anonymous English 17th CenturyAnonymous English GentlemanAnonymous English ca.1600Anonymous English,12th-13th CenturyAnonymous Faenza CodexAnonymous Finnish White Male PigAnonymous Finnish translationAnonymous FlemishAnonymous Found NoteAnonymous Fourteenth Century English Franciscan FriarAnonymous France 1600Anonymous FrenchAnonymous French 13th CenturyAnonymous French Poet (1187-1189)Anonymous French Poet (?)Anonymous FrenchAnonymous FrenchAnonymous FrenchmanAnonymous FriendAnonymous From Sapieha Album 17th CenturyAnonymous From The 14th CenturyAnonymous From The 16th CenturyAnonymous From The 17th CenturyAnonymous From The Klosterneuburger Easter Drama : Cramer Gib Die Farbe, About 1200Anonymous German Folk PoetryAnonymous German Hymn, Munster Gesangbuch, 1611Anonymous German PoetAnonymous German Poet (?)Anonymous German Poet (?), And The ‘Eckenlied’Anonymous Girl 1Anonymous Girl 2Anonymous Girl 3Anonymous Greek Composer From 2000 B.CAnonymous Gregorian ChantAnonymous GrusiaAnonymous Guest ImproviserAnonymous Guest MusicianAnonymous GuyAnonymous Homeless ManAnonymous Host Of Casefile PodcastAnonymous Imitator Of GiorgioneAnonymous ItalianAnonymous Italian (17th Century)Anonymous ItalyAnonymous Judeo-SpanishAnonymous Llibre Vermell de MontserratAnonymous MSAnonymous MS. Add. 29987, British LibraryAnonymous MaleAnonymous Maltese XVIIcAnonymous MediaevalAnonymous Medieval LamentAnonymous Medieval PoemAnonymous Men And WomenAnonymous Ms.Anonymous MusicianAnonymous MusiciansAnonymous Of Chartreuse De Scala DeiAnonymous Of École De RipollAnonymous Old Christian HymnAnonymous Old English Poem (Exeter Book)Anonymous Old English TextsAnonymous ParodyAnonymous Photography, AnAnonymous PoemAnonymous PoetAnonymous PolishAnonymous Portuguese beginning of the 16th CenturyAnonymous PragensisAnonymous Producer From TokyoAnonymous ProstitutesAnonymous Prélude non Mesuré (1716)Anonymous QuakerAnonymous Roman AuthorAnonymous Roving Photographer At A Forgotten Polynesian RestaurantAnonymous SaxonAnonymous Sender From Eastern EuropeAnonymous SephardicAnonymous ShitposterAnonymous Shoeshine BoyAnonymous Some MusiciansAnonymous SourceAnonymous SpainAnonymous SpaishAnonymous SpanishAnonymous Spanish CarolAnonymous Spanish composer from the 16th centuryAnonymous Spanish from 1490Anonymous Student Of LullyAnonymous SubmissionAnonymous SwedishAnonymous Teddy BoyAnonymous TeenagersAnonymous Thirteenth-century English PoetAnonymous Track WizardAnonymous Traditional Music, ArgentinaAnonymous TrioAnonymous TrubadourAnonymous Tune, Angleterre, XIVe Siècle (England, 16th Cent.)Anonymous Tuscan Poems, Coll. TommaseoAnonymous Venetians Of The XVIII CenturyAnonymous VideographerAnonymous Vienna 1785Anonymous VoiceAnonymous VoicesAnonymous White MaleAnonymous WomanAnonymous Woman (13th Century)Anonymous WomenAnonymous X CenturyAnonymous XIV Century, CividaleAnonymous XIVe SiècleAnonymous XV Century, Scarborough FairAnonymous XVI CenturyAnonymous XVI Sec.Anonymous XVIIth CenturyAnonymous Xv S.Anonymous [13th Century]Anonymous [15th Century]Anonymous [17th Century]Anonymous [9th Century]Anonymous [Anonymus (1556)]Anonymous [Anonymus (16th Century)]Anonymous [Anonymus (16th Century, Portugal)]Anonymous [Anonymus (Peru)]Anonymous [Burgundy]Anonymous [Cancionero De Palacio]Anonymous [Codex Faenza]Anonymous [Edited Between 1710 - 1725]Anonymous [England]Anonymous [Estampie Italienne]Anonymous [France]Anonymous [From Seixas's School]Anonymous [German Or Polish From Breslau, Ca. 1620]Anonymous [Italy]Anonymous [Le Cabinet Satyrique]Anonymous [Le Nouveau Parnasse]Anonymous [Lettisches Volkslied / Latvian Folksong]Anonymous [Plainchant]Anonymous [Spain]Anonymous [The Wakefield Master]Anonymous [Wiener]Anonymous ballad 16th c. England, set to GreensleevesAnonymous ballo tunes, late 15th c ItalianAnonymous early 16th c SpanishAnonymous feat. DM AshuraAnonymous from BeauvaisAnonymous from Saldivar CodexAnonymous maleAnonymous poem from the amateurs' almanac 'CLOACA'Anonymous producer from TokyoAnonymous {France]Anonymous {Italy]Anonymous • Italian 14th CenturyAnonymous ⑵Anonymous, (Polotsk Manuscript 17th Century)Anonymous, 12th CenturyAnonymous, 13. CenturyAnonymous, 13th CenturyAnonymous, 13th c. EnglishAnonymous, 13th c. FrenchAnonymous, 13th c. GermanAnonymous, 13th c. ItalianAnonymous, 14th CenturyAnonymous, 14th c. EnglishAnonymous, 14th c. ItalianAnonymous, 14th c. SpanishAnonymous, 14th-CenturyAnonymous, 15th C.Anonymous, 15th Cent.Anonymous, 15th CenturyAnonymous, 15th centuryAnonymous, 15th-Century EnglandAnonymous, 1609Anonymous, 1616Anonymous, 1622Anonymous, 16th CenturyAnonymous, 16th c. SpanishAnonymous, 16th centuryAnonymous, 17th Cent.Anonymous, 17th CenturyAnonymous, 1865Anonymous, 18th CenturyAnonymous, Anfang 14. Jhdt.Anonymous, AquitaineAnonymous, AquitanianAnonymous, Berlin SchoolAnonymous, C13, Bergen, NorwayAnonymous, C13, OrkneyAnonymous, Cancionero de UpsalaAnonymous, ChantAnonymous, Circa 1300Anonymous, Codex Las Huelgas, Burgos, 14th CenturyAnonymous, Colombian SongbookAnonymous, CortonaAnonymous, Dubrovnik 18th CenturyAnonymous, Early EnglishAnonymous, Eighteenth CenturyAnonymous, EnglandAnonymous, England 13th C.Anonymous, EnglishAnonymous, English later 13th centuryAnonymous, English, 13th CenturyAnonymous, First Half Of The 17th CenturyAnonymous, FlemishAnonymous, Flemish School (oil on panel), c.1700Anonymous, Fleury, 13th CenturyAnonymous, France 14th C.Anonymous, FrankreichAnonymous, FrenchAnonymous, French, 1200Anonymous, Germany, Late 17th CenturyAnonymous, Glogauer LiederbuchAnonymous, Hvar 16th CenturyAnonymous, Iam Dulcis, 10th Century, Mantuani Version 1904Anonymous, Isle Of ManAnonymous, ItalianAnonymous, ItalyAnonymous, Italy, 17th CenturyAnonymous, Italy, 18th CenturyAnonymous, JapaneseAnonymous, LiturgicalAnonymous, MS SaizenayAnonymous, MediaevalAnonymous, MedievalAnonymous, MirecourtAnonymous, MittenwaldAnonymous, Naples, XVII Sec.Anonymous, Nikolaus Apel CodexAnonymous, NürnbergAnonymous, Old Negro SpiritualAnonymous, Paris, 13th CenturyAnonymous, PolyphonieAnonymous, Possibly John FletcherAnonymous, Prague, 14th CenturyAnonymous, SaxonAnonymous, School Of Notre Dame Late 12th / Early 13th CenturyAnonymous, SephardicAnonymous, Southern Italy, 15th CenturyAnonymous, Spain (17th Century)Anonymous, Spain 16th CenturyAnonymous, SpanishAnonymous, Tournai MassAnonymous, Tvisöngur C17, IcelandAnonymous, VillancicoAnonymous, Vis 16th CenturyAnonymous, Worcester FragmentsAnonymous, XIII Century, El Escorial, Manuscript J.b. 2Anonymous, XV CenturyAnonymous, XVII CenturyAnonymous, ascribed to Gustave CourbetAnonymous, from Philidor ms (1580's)Anonymous-French Medieval ChantAnonymous. Italian 14th CenturyAnonymous/Codex ZuolaAnonymous: "Credo" From The Catholic MassAnonymous: Cancionero De SablonaraAnonymous: Cancionero de PalacioAnonymous: First two words of "Our Father" in Aramaic: "Abwoon dwashmaya"Anonymous: From "Bhagavat Gita" 6.30Anonymous: Lines inspired by 1st King, 19:11, from the Old TestamentAnonymous: The Cloud of Unknowing, 14th centuryAnonymous; Possibly By William SteffeAnonymouse (Loster St. Gall 11/12th century)Anonymouse (Scottish)AnonymsAnonyms, Byzantine, 15th Ct.Anonymt fra Dunderlandsdalen 1903]AnonymusAnonymus (13. Jh.)Anonymus (13. Jhdt.)Anonymus (14. Jhdt.)Anonymus (14th century Spain)Anonymus (16. Jh.)Anonymus (16. Jhdt.)Anonymus (16.Jh.)Anonymus (1619)Anonymus (1695 Års Psalmbook)Anonymus (17. Jahrhundert)Anonymus (17. Jh.)Anonymus (17.Jh.)Anonymus (17th Century)Anonymus (18. Jh.)Anonymus (18. Jhdt.)Anonymus (? 16.Jh.)Anonymus (Aus Georg Rhaws Bicinia)Anonymus (Böhmischer Meister Um 1670/1680)Anonymus (Ca 1425)Anonymus (Ca. 1600)Anonymus (Codex Pernner)Anonymus (Codex St. Emmeram)Anonymus (Early 17th Century)Anonymus (End 16th Century)Anonymus (England 13. Jhdt)Anonymus (England 1763)Anonymus (England, 16. Jhd)Anonymus (France)Anonymus (Frankreich um 1300)Anonymus (Frankreich um 1350)Anonymus (Frankreich, 17. Jh.)Anonymus (Italien 14. Jhdt.)Anonymus (Italien um 1270)Anonymus (Italien um 1300)Anonymus (Italien, 18. Jh.)Anonymus (J. S. Bach?)Anonymus (Johann Ernst, Prinz von Sachsen-Weimar?)Anonymus (Kloster Engelberg)Anonymus (Kloster Hauterive/Fribourg)Anonymus (Kromeriz)Anonymus (Mexiko, 17. Jhdt.)Anonymus (Münchner Chorbuch)Anonymus (Pistoja)Anonymus (Polen um 1400)Anonymus (S. XVI)Anonymus (Solage?)Anonymus (Spain ca. 1520)Anonymus (Stift Beromünster)Anonymus (U.B. Basel)Anonymus (Um 1600)Anonymus (Vor 1590)Anonymus (Vor 1599)Anonymus (XII/XII s.)Anonymus (XIII s.)Anonymus (XIII/XIV s.)Anonymus (XIV)Anonymus (XV s.)Anonymus (XVI s.)Anonymus (XVI)Anonymus (XVII s.)Anonymus (ca 1001)Anonymus (ca 1624)Anonymus (ca. 1620)Anonymus (din Cartea pentru virginal Sopron, sec. XVII)Anonymus (din Tabulatura de Jan de Lublin, sec. XVI)Anonymus (din Tabulatura din Berlin, 1593)Anonymus (din colecția „Liber leviorum carminum” de Phalesius, 1571)Anonymus (din colecția „Tabulaturbuch auf dem Instrumente” de August Nörmiger, 1598)Anonymus (din manuscrisul de la Lőcse, sec. XVII)Anonymus (din manuscrisul „Theresianus” de la Alba Iulia, sec. XVI)Anonymus (din „Cartea pentru laută” de Wolf Heckel, 1562)Anonymus (din „Codex Caioni”, sec.XVII)Anonymus (din „Codex Vietoris”, sec.XVII)Anonymus (din „Ein schön Nutz und Gebräuchlich Orgel Tabulaturbuch” de Jacob Paix, 1583)Anonymus (sec. XIX)Anonymus (sec. XVI - din colecția de piese pentru laută de A. Chilesotti)Anonymus (sec. XVI)Anonymus (sec. XVII)Anonymus (sec. XVII-XVIII)Anonymus (sec. XVIII)Anonymus (um 1300)Anonymus (um 1325)Anonymus (um 1350)Anonymus (um 1400)Anonymus (um 1588)Anonymus (um 1600)Anonymus (um 1630)Anonymus (wohl 18. Jhdt.)Anonymus („di H.“)Anonymus - Bamberg, um 1500Anonymus - Irland, um 1500Anonymus - Salamanca, um 1500Anonymus / Klanjec, Hrvatska, 18. StAnonymus 12. Jhd.Anonymus 13. JahrhundertAnonymus 14. JahrhundertAnonymus 15th CenturyAnonymus 16th CenturyAnonymus = An.Anonymus Ca 1558Anonymus Der Sweelinck-SchuleAnonymus DänischAnonymus I Poł. XVIAnonymus IsländischAnonymus Italienisch 10. Jahrh.Anonymus Orkneyinseln, 12. Jahrh.Anonymus PragensisAnonymus Um 1500Anonymus XV CenturyAnonymus XVI W.Anonymus XVII Jhdt.Anonymus XVIIIAnonymus [Gisbert van Steenwick?]Anonymus aus UngarnAnonymus bohemicusAnonymus, 11.th Ct.Anonymus, 13th Ct.Anonymus, 15. Jahrh.Anonymus, 1580Anonymus, Mailand 1657Anonymus, Rigaudon (1700)Anonymus, SephardicAnonymus, Turkish, 15th Ct.Anonymus, Werkstatt des Diebold Lauber, Zeichner O, um 1443-1446Anonymus, um 1300Anonymus, um 1400Anonymus, um 1600Anonymus: (17. Jahrhundert)AnonyméAnonüüm (P. Phalѐse'i Tabulatuurist 1570. A.)Anonüüm (XVI Saj.)Another AnonAnónimoAnónimo - Giovanni StefaniAnónimo: TimonedaAntiphon At First Vespers, Feast Of All SaintsAntwerpen, 1551Antwerpener LiederbuchAntwerpener TanzbuchAnònimAnònim (S. XIV)Anònim (S. XV)Anònim (S. XVI)Anònim (s.XVII)Anònim (s.XVIII)Anònim Del Segle XIXAnònim S. XVIAnònim S. XVIIIAnònimaAnònimeAnònimoAnònimo Segle XIXAnóm. Alemania Siglo XVIIIAnóm. Alemania Siglo XVIIIAnóminoAnón.Anón. InglésAnón. Precolombina MayaAnón. Siglo XVIIIAnónimAnónim, s. XVIAnónimaAnónima PopularAnónimoAnónimo (1562-1635)Anónimo (1717)Anónimo (Andalucía)Anónimo (CMM 4)Anónimo (CMP 106)Anónimo (CMP 109)Anónimo (CMP 113)Anónimo (CMP 121)Anónimo (CMS 8)Anónimo (China)Anónimo (Improv.)Anónimo (Perú)Anónimo (Sefardí)Anónimo (Siglo XIV)Anónimo (Siglo XVII)Anónimo (Século XVI)Anónimo (Turquía)Anónimo (c. 1850)Anónimo (ca. 1510, Catedral de Burgos, Sillería Del Coro)Anónimo (ca. 1700)Anónimo (ca. 1705)Anónimo (s. XVI)Anónimo (s. XVII)Anónimo - Alemania Siglo XVIIIAnónimo - Siglo XVIIAnónimo CanarioAnónimo CastellanoAnónimo CatalánAnónimo ChilenoAnónimo De San Juan IxcoiAnónimo Del Siglo XVAnónimo Do Sec. XVIIIAnónimo EcuatorianoAnónimo EspañolAnónimo FrancésAnónimo ItalianoAnónimo Italiano del Siglo XIIIAnónimo Manuscrito Mont-pellierAnónimo MoriscoAnónimo PastorilAnónimo PopularAnónimo Popular MéxicoAnónimo ProvenzalAnónimo QuechuaAnónimo S. XVIAnónimo S. XVIIIAnónimo S.XVIIIAnónimo SefardíAnónimo Siglo XIIIAnónimo Siglo XIIVAnónimo Siglo XIXAnónimo Siglo XVAnónimo Siglo XV EspañolAnónimo Siglo XVIAnónimo Siglo XVIIAnónimo UkranianoAnónimo VenezolanoAnónimo Versión Siglo XVII-XVIIIAnónimo del PerúAnónimo del Siglo XIII al XVAnónimo s. XIVAnónimo s. XV (C. de la Colombina)Anónimo s. XVIII (Martín y Coll, Flores de música)Anónimo s. XVIII (Martín y Coll. Flores de Música)Anónimo ÍnglésAnónimo, Códice De Las Huelgas, F. 160Anónimo, S. XIIAnónimo, S. XIIIAnónimo, S. XIVAnónimo, S. XVAnónimo, S. XVIAnónimo, Siglo XIXAnónimo, s. XVAnónimo-Alemania Siglo XVIIIAnónimo. Cancionero de UpsalaAnónimosAnónymos PopularesAnôn. Francês - Séc. XIIIAnôn. Francês Séc. XIIIAnôn. Francês-Séc. XVIAnôn. Inglês - Séc. XIIIAnôn. Italiano - Séc. XIVAnôn. Séc. XIIIAnônimoAnônimo (França - Sec. XII)Anônimo (Itália - Sec. XIV)Anônimo (Séc. XVI)Anônimo Da BahiaAnônimo Do Século 18Anônimo Espanhol - Séc. XVIAnônimo Inca (Quíchua)Anônimo Séc. XVIIAnônimo, 1000 a.c.Anônimos Europeus Dos Séculos XV a XVIIAononymeArab-AndalusianArabo-Andalusian, MoroccoArap AnonimArd Hyr NosArnoldArs SubtiliorArt RomainArtist 01Artist 02Artist 03Artist 04Artist 05Artist 06Artist 07Artist 08Artist 09Artist 1Artist 10Artist 11Artist 12Artist 13Artist 14Artist 15Artist 16Artist 17Artist 18Artist 2Artist 3Artist 4Artist 5Artist 6Artist 7Artist 8Artist 9Artist UnknownAserbaidshanisches LiedAteliers Des Bords De LoireAttaingnantAttrib. LassusAudienceAugsburg / Linz Organ TablatureAus "Studentenliedern" Halle 1781Aus BöhmenAus Dem Buch „Ruth“Aus Dem Lieder- Und Kommersbuch 1847Aus Dem Lochamer LiederbuchAus Dem Lochamer Liederbuch Um 1450Aus Dem Lochamer Liederbuch, Um 1450Aus Dem Locheimer Liederbuch Um 1450Aus Dem Notenbüchlein Der Anna Magdalena BachAus Dem SerbischenAus Den "Tausend Und Ein Nächten"Aus Der BibelAus Der Niederländischen "Weimarer Liederhandschrift" Von 1537Aus Einem Alten LiederbuchAus Einer Lautentabulatur Des 16. JahrhundertsAus EnglandAus Forsters "Frischen Teutschen Liedlein" 1549Aus HohenloheAus HollandAus Joh. Werlins Handschrift (1646)Aus Pickerings LautenbuchAut. Anonim.Auteur AnonymeAuteur InconnuAuteur anonymeAuthor UnknownAutor AnonimoAutor AnonimowyAutor AnónimoAutor DesconocidoAutor NecunoscutAutor NeznámyAutor No IdentificadoAutor UnbekanntAutor teadmataAutor?Autore IgnotoAutore Incerto (1600)Autore Incerto (Anon.)Autore Incerto]Autori IgnotiAutori NeznámiAvignon 17th centuryAzeriAzeri - AnonimAzeri AnonimAşıqAşıq HavasıBBC Radio PersonalityBaldwin De Saint-Denis ?Ballad, Dated 1549Bamberg CodexBarbarino ManuscriptBarbarino Manuscript (16th Century)Baroque AutrichienBased AnonsBeauvais MSBeauvais ManuscriptBegleitungBerlin 40046Berlin 40046 (13th C.)Berømt Jazzmusiker Som Ønsker Å Være AnonymBible (New Testament)Bible (Old Testament)BiblicalBilinmiyorBook of Genesis, York and Chester miracle playsBook of PsalmsBourguignonBreuerBritish Library, Add. 29987British School ca. 1662-72Broadside, 1888BrownBrussels Basse Danse Ms.Brālīgās Gruzijas DziesminiekiBuleríasBuxheimer OrgelbuchBuxheimer Orgelbuch (15. Jahrhundert)Buxheimer Orgelbuch (Um 1470)Buxheimer Orgelbuch, 15. JahrhundertByzantinisch, 6. Jhd.C. 1400 (Reina Codex)C.15th AnonC.16th AnonCSM 139 (13.Jh.)Calles de SantiagoCancion AnonímaCancionerio De ColumbinaCancionero De PalacioCancionero De Uppsala, 1556Cancionero de PalacioCancionero de UppsalaCanción Anónima Cubana, Siglo XIXCantigas De S.ta MariaCantigas De Santa MariaCantiñasCantore AnonimoCanzionero de PalacioCançoner Duc de CalàbriaCarlo G. ManuscriptCarm. Burana (13.Jh.)Carmina BuranaCarmina Burana (13th century)Carmina Burana - Benediktbeuren Manuscript, 1300Carmina Burana ManuscriptCarmina Burana, 13th CenturyCarmina Burana, AnônimoCarmina Burana, XIII CenturyCarmina Burana, ca. 1230Carmina Burana, um 1230Catalonian Fold SongCeltibericoCezayir [Algerian] AnonimChamber OrchestraChanson Anonyme Du 15è SiècleChanson SéfaradeChansonier CangéChansons Des Trouveres, Pastourelle Quant Voi La Flor, 12th / 13th CenturyChantChant Anonyme XVIe SiècleChant Arabo-AndalouChant CarolingienChant GrégorienChant PopulaireChester MS 1495Chester Miracle PlayChiggi Codex. QIV28ChildrenChin. LiedChinese "Book Of Odes"Chinese Hymn, Anonymous, C. 1952ChoirChor Und OrchesterChoral From The 15th CenturyChorusChorus And OrchestraChorusAnonsChriste, Redemptor OmniumChurch MemberCodex ApelCodex CajoniCodex Cambrai A 410Codex De Las Huelgas (S. XIII)Codex FaenzaCodex HarleianaCodex Kajoni (Hongrie, 17ème Siècle)Codex Las HuelgasCodex MontpellierCodex Montpellier H 196Codex Musicale, BolognaCodex PragensisCodex Rhau, 1542Codex Specialis Reginaegradecensis (XV. Jahrhundert)Codex VietorisCole - MillsCollaboratorsCollected Fitzalan (1512-1580)Collection De PicardieCollection Picardie 67 Bibliothèque NationaleCollectivus AnonymusColombian XVIII CenturyCombattants Anonymes Du Front ItalienComposer UnknownComposer Unknown, Baroque Peru (Ca. 1632)Compositeur AnonymeCompositeurs Anonymes Des 16e Et 17ème SièclesCompositeurs Indigènes de Moxos (c. 1790)Corale Inglese - Sec. XVIICorale Tedesco - Sec. XVICornishCornwall, Anon.Coro Di Massa Con Piccola Orchestra A Fiati Di BerlinoCourtesy of Museu Villa-Lobos and Brazilian Academy of MusicCovent GardenCowley Carol BookCyrilCzech AnonymousCzech Anonymous (From Archives Of Count Jan Pachta)Códice Saldívar IIICódice Zuola [ Zuola Codex]D R.A.D'Acourt 15th CenturyD'Après Anonyme XVe SiècleD. En D.D. R.D. R. De A.D. R. de A.D. en D.D.P.D.RD.R.D.R. (Derechos Reservados)D.R. De A.D.R. de A.D.R.A.DRDanish, 14th CenturyDanse Anonyme ItalienneDanse PopulaireDansk AnonymDanziger TabulaturDefinition Of Sound From Various EncyclopediasDel PúblicoDerechos ReservadosDerechos reservadosDerlemeDes Knaben WunderhornDesconocidoDessin D'Un Enfant Des Groupes Educatifs De L'Institution De LavignyDeuteronomy 6Deuteronomy, Chapter 4, Verses 8-9Deutsches Historisches MuseumDeutsches WeihnachtsliedDevotDeținut politic anonimDichter UnbekanntDie Melodie wurde von Brecht einer alten französischen Romanze entlehntDikt I ProletärenDisciple Anonyme de LullyDisegno AnonimoDnes Již NeznámýDoctorDocument XDoesn'tDominio PubblicoDominio PúblicoDon KalliyoneDr. F. HamelDragspelsklubb Från NärkeDresden, Schranck No:IIDroits RéservésDucaurroy, 16 CenturyDörings "Sächsische Bergreyhen" Band I.Ecclesiastes 3: 1-8, 19 & Psalm 98: 4-8EcclesiasticusEcclestiasticusEcole Catalane (15e Siécle)Ecole De FontainebleauEcole Flamande (16e)Ecole Flamande - Début Du XVIIe SiècleEen Aktielied Uit DenemarkenEen devoot ende Profitelyck boecxken, Antwerpen, 1539EgyptEgyptian ca. 3000 BCEigene BearbeitungEin KammerorchesterEin Kruzianer (One Chorister)Ein VolksinstrumentenensembleEinsiedelnEinsiedeln 12. Jh., Erfurt 1524El Cant De La Sibil.LaEl Maestro ?El PublicoElisabethanischElsass, 15. JahrhundertElsaß 15. Jh.En Palestiner Som Lever I IsraelEng. AnonymEngelberg 314Engelberg 314 (14th C.)England, um 1430Englischer Kanon Um 1240English 13th CenturyEnglish 14th CenturyEnglish 14th Century CarolEnglish Anon.English AnonymousEnglish CarolEnglish DompeEnglish MelodyEnglish, Anon.English, late 15th cen.EnsembleEnsemble AnonymeErfurt 1524, Nach der Antiphon: Veni Sancte SpiritusEscuela De Notrê DameEsecutore AnonimoEsecutore Anonimo di GorlaEste'e Psalter, 1592Este's PsalterEste's Psalter, 1592Este's Psalter, 1595Excerpts from the programme of the Musica Viva Festival 2008Faenza codexFan AnónimoFauxbourdonFavole Orientale De AnonimoFemale 1FemanonFlamenkoFlandre Avant 1470Fleury Play Book (12th c.)Flugblatt 1638Folger Library ManuscriptFolk AdaptationsFolk ArtistFolk Artist, 1880sFolk Song From The Opole RegionFolk WordsFolkloreFolklore Chileno (anónimo)FolksongFollower Of Palma Il GiovaneFontevraud GradualFoto XFoto-XFound photoFrance XVIIIeFrance XVeFrance, 12th Century Anonymous FemaleFrankfurter LiederbuchFrankfurter Studio-OrchesterFranzösisches Madrigal, 16. Jhd., anonymFreiberger Bergliederbüchlein 1700FrenchFrench 13th CenturyFrench 13th Century MotetFrench 13th centuryFrench 16th CenturyFrench Anon.French AnonymousFrench Circa 1300French NoëlFrench PavaneFrench, 13th CenturyFrench, 15th centuryFriendFriendsFrom "Das Knaben Wunderhorn"From "Des Knaben Wunderhorn"From "The Book Of Job" And From "The Song Of Solomon"From 'Des Knaben Wunderhorn'From An Old SongbookFrom Este’s Psalter (1592)From Lyra Davidica 1708From Seikilos EpitaphFrom Songs of Buddhist nuns, 6th century B.C.From The Wakefield PlaysFrom W. Sandys' Collection Of CarolsFrom the Kamper LiedboekFrom the Zion Hymn and Tune Book (1866)From »Des Knaben Wunderhorn«From: Oaths Of FriendshipFrom: The Book Of SongsFrom: »Des Knaben Wunderhorn«GarfieldGelêrî (Soran)Genesis 11, 1-9Genesis 22, 1-19German (19th Century)German AnonymousGerman CarolGesanguch der HerzoglGiles Earle's MS.Giovanni Pierluigi da Palestrina?Glogauer LiederbuchGoro Special BandGospel Of JamesGospel Of MatthewGospel Of Pseudo-MatthewGotteslob 801-6GranadinasGrande OrchestraGreek (3rd Century Or Earlier)GregoriaansGregorianGregorian Antiphon For AdventGregorian Antiphon From ca 700Gregorian ChantGregorian chantGregorianischer ChoralabschnittGregorianoGregorián DallamGrekGrimnismalGroßem FilmorchesterGroßes FilmorchesterGroßes Filmorchester Und MännerchorGrégorien (Cantuale De L'Eglise De Groningue, XVIème Siècle)Grégorien (Missel De Troyes, Fin XVème Et XVIème Siècles)Gyergyóalfalusi Lakodalmi VendégekGürcü Halk EzgisiHall 1650Halle 1704HamelHandschrift Wolfenbüttel 2HaveHebrew Prayer From Sabbath Evening ServiceHebrew Text of the PsalmsHerders VolksliederHintHis SchoolHolandský Anonym 17. StoletíHolandský AnonymusHoly ScripturesHrsg. V. Pierre Attaignant, 1529HyperionIcelandic AnonymousIdős CigányasszonyIgnotiIgnotoIgnoto (Anon.)Ignoto (Fine Sec. XVI]Ignoto (Fine XVI Sec.]Ignoto Calabrese Del '700Ignoto V° SecoloImprovisation On 17th Century PatternsIncerti (Anon.)InconnuInconnu 19ème siècleIndigenas AnónimosInformatore AnonimoInformatore Anonimo Di MantovaInscriptions From Walls Of Paris, May 1968Instrumental Danse - Anonymous - Italian 14th CenturyInstrumental EnsembleInédit Du XVIIe SiècleIrish AnonymousIrish MelodyIrský Anonym 17. StoletíIsmeretlen SzerzoIsmeretlen Szerzö (Seixas School)Ismeretlen SzerzőIsmeretlen XV. Századi KöltőIsmeretlen XVI. Századi KöltőIstria 19th centuryItal.14th CenturyItalian 14th CenturyItalian AnonymousItalian Anonymous (XIV Centuri)Italien, Frühes 14. Jhd.ItalienischIvrea CodexJ .A.T. P.J. Pickering’s Lute BookJ.B. (Blíže Nezištěn)Jesu Dulcis MemoriaKK.WKanye West (2)Karlsruhe LXKarlsruhe LX (13th C.)Kedrova-OtcaKedrova-SynaKing James Version, BibleKipKodak Ektachrome, XKollektiv Junger SchriftstellerKomponist UnbekanntKostelní Shromáždění V NassauKölner Gesangbuch 1623Kölner Gesangsbuch 1852Középkorú Cigány NőKırım TürküsüL'AnonymeL'Etendard de la PitiéLate 13th CenturyLate 15thc (Brussels MS)Late 15thc (Dijon Chansonnier)Late 16th CenturyLateinischer Spruch (Cur Adhibes Tristi)Latin (Before 9th Century)Latin Infancy GospelLatin Requiem MassLatin, 10th CenturyLatv. Revolūc. Dz.Laudario CortonaLaudario Di Cortona, AnônimoLaudario di CortonaLeggenda ArabaLeggenda MarianaLeggenda NataliziaLeggenda TedescaLibre Vermell, Montserrat, 1398Lied A. D. 15. Jhdt.LiederbuchLimoges 12th centuryLiturgický TextLiturgický textLiturgy Of The Roman MassLivre Vermeil De MontserratLivre d'Orgue De ToulouseLlibre VermellLlibre Vermell De MontseratLochamer LiederbuchLublin-TabulaturLuke 1: 46-55Lyke-Wake Dirge, Anon.Löwener TanzbuchM. Board Lute BookM. Gazis, 15th C.MS Sinai gr. 1234, 179v–180rMS. Vat. Lat. 5319, 8th C.Magnificat Antiphon At First And Second Vespers, Feast Of St Thomas AquinasMale 1Male Quartet And OrchestraMallorcan Anon.Manuscript BnF lat 17716Manuscript MilleranManuscrit D'Uppsala, 1667Manuscrit De BruxellesManuscrit De MontpellierManuscrit De ParisManuscrit Français 10036 Bibliothèque NationaleManuscrit Français 844 Bibliothèque NationaleManuscrit La ClayetteManuscrit de BambergManuscrit de La ClayetteManuscrit de MontpellierManuscrit de Wolfenbüttel 2Manuscrito 741/22 Biblioteca Central De CataluñaManuscrito 816 (siglo XVII-SVIII)Manuscrito De JacaManuscrito De SimancasManuscrito Ramillete De FloresMany OthersMarian AntiphonMarianische AntiphonMasque DanceMass TextMaîtres Napolitains Du 18e SiècleMeMediaeval Latin HymnMedievalMedieval Anon.Medieval CarolMedieval EnglishMedieval LatinMedieval PlainsongMedingenMelodia Del Secolo XVIMelodia Del Secolo XVIIMelodie 15. JahrhundertMelodie 1536Melodie 1608Melodie Aus Dem Lautenbuch Von J. F. Thysius, Leiden, Um 1600Melodie Eines Französischen VolksliedsMelodie Eines Marienliedes Aus SizilienMelodie Vor 1777Melodie: 15. Jahrh.Melódia Z Gregoriánskych Motívov 19 St.Memminger TabulaturbuchMen's ChorusMen's Group (Anonymous)Messe De BarceloneMeçhulMissa Pro DefunctisMissa pro defunctisModinha Anónima Siglo XIXMoines D'EstaingMoines TibétainsMoldavian FolksonMonk GermanMontpellier CodexMontpellier Codex (12th Cent.)Montpellier Ms.Montserrat 14th centuryMootMore AnonsMozarabic chant (8th-10th c.)Mozart's CircleMr D.S.Mr. Halffter's PublisherMs 127/56 der Biblioteka Jagiellonska, KrakauMs 964. Biblioteca Pública De BragaMs. BambergMs. Di MontepellierMs. Di MontpellierMs. Lat 1343, Paris, B.N.Ms. WolfenbüttelMusiciens Dans Un Fête PrivéeMusik Der Renaissance In NeapelMusikzitateMusique De La RenaissanceMusique Des MénéstrelsMuwashshah (Anonymous)MännerMännerchor Und BegleitorchesterMúsica AnónimaMündlich ÜberliefertMündlich, ÜberliefertMünster 1677Münster GesangbuchMısır Halk ŞarkısıN. N.N.NN.N .N.N.N.a.NNNach Ambraser Liederbuch, 1582Nach Babsts Gesangbuch, 1545Nach Bartholomäus Und Paul Hessen, Ed. 1555Nach Dem Paderborner Gesangbuch, 1604Nach Einem Alten MeisterNach Einem KinderreimNach Einem Sowjetischen PionierliedNach Michael Vehes GesangbuchNachdichtung Einer MinnesängerdichtungNameless NeighbourNameless XVIII Century ComposerNamenlosNashenasNepoznatNepoznati AutorNepoznati Melod, 16. Vek = Anonimous (16th Century)Nepoznati Melod, 18. Vek = Anonimous (18th Century)Nepoznati SkladateljNeresheimer TabulaturNezistený Slovenský KlasikNeznani SkladateljNeznáma Přítelkyne HankaNeznámyNeznámy AutorNeznámy VojínNeznámýNeznámý AutorNežinomas XV A. PoetasNlastNo Plans For Any Future RecordingsNot CreditedNot ListedNovella Araba Di AnonimoNoël Du 13è SiècleNoël NouveletNörmigers Tabulaturbuch 1598Nürnberg Um 1550Oberpfälzer Orgelbuch (18. Jahrhundert)Occitan 12th centuryOffenbarung 21,4Office Hymn for the Feast of the TransfigurationOkändOkänt ursprungOld Church Slavonic textsOld German melodyOld Hundreth, Geneva Psalter 1551Old Irish HymnOldsaxon, 13th CenturyOnOnbekendOnnen PekkaOpenOrchesographieOrchesterOrchestraOrchestral AccompanimentOrchestre AnonymeOrdinariumOrkiestra Harmonistów Z PrzyśpiewkiemOstersequenzOther GuyOthersOxford Can. Misc. 213Oxford Carol BookOxyrhynchus MS. 1780, Egypt, 3rd Cen.P. D.P. P.P.A.I.P.D.P.D. AnonPaises Bajos / Anónimo Siglo XVIPange Lingua, Old French, 10th / 11th Century From St. Peter In MoissacPanmure House Lute Book No. 8Paris, B.N.f.fr. 20050, fol.66Paroles LiturgiquesPastourelle AnonymePater NosterPatient #18Patrimoine Médiéval d'Europe Occidentale (XIIIème Siècle)PeruvianPetrarca-MeisterPetrucci, Frottole Libro 8Petrucci, Frottole libro 4PfingstsequenzPhotoPhoto : ReprisePhoto XPhoto X ...Photo X.Photo X..Photo X...Photo X…Photo- X...Photo. X...Photo: XPhoto: X...Photographer AnonymousPhotos XPhotos X...Pills to Purge MelancholyPiæ Cantiones (Greifswald 1582)Plain ChantPlain-Chant du XVIIè S.PlainchantPlainsongPlainsong (Ad Cenam Agni)Plainsong (Audi Benigne)Plainsong (Aurora Lucis)Plainsong (Ecce Tempus)Plainsong (Pange Lingua)Plainsong (Vexilla Regis)Plainsong mode iiPlainsong mode viiPoet UnknownPoeta Egizio IgnotoPolyphonie AquitainePopolarePopularPopular Aragónes / Popular Text From AragonPopular Da GalizaPortugesePotpourriPoème Irlandais, AnonymePoème Turc AnonymePraetoriusPrivatePrivate CollectionPrivate Photo Archive, Celibidache FamilyPsalmPsalm 100Psalm 113,1Psalm 145 v.15Psalm 22, Verses 4-5; Psalm 29, Verse 11Psalm 27, W 4-6Psalm 51, Verses 10-12Psalm 69, Verse 29, & Exodus, Chapter 24, Verses 6 And 7Psautier LiturgiquePseuPseudo-AnacreonPubblico DominioPublic DominionQuechua Anón. Siglo XVIIQuechua PoemR.A.R.G.Ö.RasputinReading Abbey mid-13th centuryRenaissance SpainResponsory at Martins (Lesson IV) for Christmas DayResponsory for Matins on Christmas DayReutterliedleinRheinischer MeisterRobertsbridge CodexRoman Catholic Requiem MassRomance Anonimo del Siglo XIIRomance AnónimoRomanian AnonymousRomanian AnoymousRondellus, Ms. OxfordRooseRossi CodexRostock Lute BookRotfrontkämpfer 1928Russ. LiedRussian Folk SongSacral SongSakurai & The NintenyearoldsSalzburg (1865)Salónica?Sarum ChantSarum Primer 1558Sarum Primer, 1514Saxon MasterSchedelsches LiederbuchSchi-KingSchledelsches LiederbuchSchool ChildrenSchool ChoirSchool Of Notre-Dame, c1200School Of PerotinusSchool of St. MartialSchool of VeronaSchwäbisches Volkslied (Vor 1840)SconosciutoScottish Carol c.1550, Anon.Scottish Metrical Psalter Of 1650Scottish TraditionalScuola di Notre-Dame (c.1200)Secret CollabSeguiriyasSephardic TraditionalSephardic, BalkansSevillanas CorralerasShearmen's And Tailor's Play Coventry Cycle (1591)Sherborne Missal/Crowland GradualShitShoeshine BoyShoshone Love SongSicher-TabulaturSimply Type DeterioratedSixteenth CenturySkene MS ca. 1615SkillingtryckSlawischSloane Lute BookSome anon in the threadsSome anon that didnt add it to the spreadsheet so i did it for himSome faggotsSomeoneSong Of The Nuns Of Chester (c.1400)Song of Songs 1:1-2Song of Songs 2:10-13Songs Of The Naughty Pupils, Satires, Parodies And Pamphlets From 11th - 14th Century, TheSource UnknownSouterliedekens, Antwerpen, 1540Southern France 12th centurySpanien 15. JahrhundertSpanischer AnonymousSpanish Anon.Spanish AnonymousSpanish Anonymous, XVI centurySpanish, XIIIth CenturySpansk AnonymSpeierisches GesangsbuchSpeiersches Gesangsbuch 1599Speiersches Gesangsbuch, Köln 1599Speyerer Gesangbuch Köln 1599SpiritualSt ColumbaSt. Gall, Mss, 9th cent.St. Martial AbbeySt.Luke, Chapter 11 Verses 21 And 17; And St.Matthew, Chapter 12 Verse 25Standford UniversityStralsund 1665Stralsund GesangbuchStudent Of The InstituteStudentenStudentenlied Aus Der Badischen PfalzStudio Singers ChoirSubmitted By An Anonymous Sender From Eastern EuropeSuite Italienne du XIVe SiècleSung By Female TrioSung By Girl's ChorusSung By Male ChorusSupernormal ParticipantsSusanne von Soldt ManuscriptSymphony Orchestra [Unidentified]Séc. XVIII - Cap. Geral De Minas GeraisSüddeutsches Volkslied (Vor 1848)Süddeutsches Volkslied Vor 1848Tableau École Française Du XVIe SiècleTabley House Lute BookTabulatur des Zisterzienser-Klosters Pelplin (geschrieben ca. 1620-1640)Taken From The Original Published NotesTanguillosTanzlied Aus Dem 17. JahrhundertTapisserie Des GobelinsTeadmataTekijät TuntemattomiaTeksta Aut. NezināmsTenor SoloTenor-SolistTesto Di AnionimoText Unterlegt Um 1820Textautor unbekanntTexto LitúrgicoTextos PopularesThe Artist Formerly Known as AnonThe Backup AnonsThe BibleThe Exeter BookThe Girl Who Wanted To Stay AnonymousThe King ManuscriptThe Lady In The Middle With The Very Strange NameThe Lord's PrayerThe Mellon ChansonierThe Missa pro defunctisThe NnaanonsThe UnknownThe liturgy of the Roman MassThe man previous known asThesaurus HarmonicusThirteenth CenturyToledo ChantTonus PeregrinusTorneTrad.Tradit. Anonyme ItalienTraditionalTraditional HebrewTraditional ItalianTraditional ItalyTraditional Jewish Saturday SongTraditional Mexican Folk SongTraditional SephardicTraditional, KurdishTrento 87, Nr. 160, c.1450Trienter Codex 87Trio-BegleitungTropicTroubadourTrouvère Anon. XIIITruchseß-SchreiberTrötschart.deTundmatuTundmatu Helilooja 17. SajandistTundmatu Helilooja 18. SajandistTune from Piae Cantiones (1583)TuntematonTuntematon (1300 - 1.)Tuntematon (1500 - 1.)Tuntematon SuomalainenTuscany 13th centuryU.B.UkendtUkjentUkrainisches ScherzliedUm 1525, KirchenliedUm 1550Um 1600Um 1620Un Anonimo CarrettiereUn Anonimo CastellanoUn Anonimo LombardoUn Détenu De La Maison Centrale De MelunUn Groupe De JeunesUn Jeune De L'aumônerieUn Mec Super Connu Qui Préfère Garder Son AnonymatUn Petit Chanteur De TölzUn-namedUnattributedUnbek.Unbek. Dichter D. 18. Jh.Unbek. MeisterUnbek. Meister 1768Unbek. Thüring. MeisterUnbekanntUnbekannt = Anon.Unbekannt, 16.Jh.Unbekannter DichterUnbekannter Französischer Meister Des 16. Jh.Unbekannter KomponistUnbekannter MeisterUnbekannter Meister Des 17. JahrhundertsUnbekannter TroubadourUnbekannter TrouvereUnbekannter italien. Meister des 17. Jahrh.UnbekantUncreditedUne Femme De Joueur AnonymeUng.Unidentifed OrchestraUnidentifiedUnidentified AccompanistUnidentified AuthorUnidentified Brass ChoirUnidentified Canadian PoetUnidentified Chor And OrchestraUnidentified Film-OrchesterUnidentified FilmorchesterUnidentified Male ChoirUnidentified Male Vocal GroupUnidentified OrchestraUnidentified Orchestra & ChorusUnidentified PhotographerUnidentified Piano AccompanistUnidentified [Christian Hommel - Or - Andrew Malcolm]Unidentified [Walter Ifrim - Or - Fabian Dirr]Unidentified: Christiane Jaccottet Or Christine SartorettiUnidentified: Christiane Jaccottet or Christine SartorettiUnknownUnknown (1600)Unknown (End. XVI Century)Unknown Czech Master Before 1410Unknown Plastic ShamanUnknown SufisUnknown. English (ca. 1600)UnpublishedUnsignedUnverified, Author AnonymousUrfa (Anonim)Uz Bastejkalna Tiltiņa Atrasti VārdiVarious AnonsVatican Rossi CodexVenetian School (Anonymous)Venezuelan anonymousVeni Creator SpiritusVenäl. TuntematonVerfasser UnbekanntVeritatem Anon.Vieille Chanson FrançaiseVietoris CodexVieux CapucinVil Helst Være AnonymeVittoria 16e SiècleVocal And Instrumental EnsembleVoicesVoices Of The Coventry BlitzVolkslied Aus Dem 16. JahrhundertVolksweise (18. Jahrhundert)Vor 1855Vulgata: Isaias 40, 6-7Vulgata: Psalm 129VulgateVuslati (Anonim)VöluspaW. Ballet's LutenbookWahrscheinlich Anton Wilhelm Von ZuccalmaglioWankernitchWeberWeimarWeise 1572Weise Von 1572WellsWemyss Lute BookWerlins LiederwerkWerner ?Whitehall, 1609Whole /v/Wiener Commersbuch 1880Wind EnsembleWind Ensemble [Of Some 70 Unidentified Musicians]Wir Sind Des Geyers Schwarzer HaufenWith String QuartetWittenbergWittenberg 1535WorcesterWorcester AntiphonerWorcester F. 160 (13th C.)Worcester FragmentsWords AnonymousXX (R.R.)X .X . . .X ..X ...X ....X I ...X X XX&X, DRX.X. ...X. DRX. X. X.X..X...X....X.....X.......X.........X.X.X.X;;;XII°XVI. Századi NépénekXVIII SiècleXXXXXXXXXXX 18. St. (Krk)XxxX…YY.O.YouYou Know Who You AreYozgat Sürmelisi (Anonim)Yozgat TürküsüYunan AnonimYunan Halk ŞarkısıZZajal, Anonymous (15th Century)Zeitgen. Dokument[...][From] Book Of Psalms[The content of this post has been removed for violating UN hate speech regulations]aa Fuckload of Anonsa Nona bunch of anonsa lot of manchildrenactual autismall me btw (Anon)an anonymous & remote plunderphileanonanon 16th centuryanon(s)anon.anon. (probably 18th century)anon. 1917anon. Sammlung Ali Ufki 17. Jhanon., 12th centuryanon., 1915-17anon., c. 700anon1anon2anonimanonimoanonimo quechuaanonsanonymanonym (14. Jhd.)anonym (15. Jhdt.)anonym (Codex Bamberg, 13. Jhdt.)anonym (Codex Montpellier, um 1250)anonym (Deutschland 15./16. Jh)anonym (England 13. Jh)anonym (England 14. Jh)anonym (Frankreich 13. Jh)anonym (Frankreich 14. Jh)anonym (Frankreich 16./17. Jh)anonym (Italien um 1550)anonym (Schule von Worcester, 14. Jhdt.)anonym (Spanien 12. Jh)anonym (Spanien 14. Jh)anonym Trouvère (um 1220)anonym engl. (13.Jh.)anonym, 13 Jh.anonym, 15. Jahrhundertanonym, Carmina Burana, 12./13. Jh.anonym, Carmina Burana, 13. Jh.anonym, Nordfrankreich, 1189 (?)anonym, Nordfrankreich, 13. Jh.anonym, Südfrankreich, Ende 12. Jh.anonym, um 1465anonym.anonymeanonyme XIVe siècleanonyme XVIe siècleanonyme XVe et XVIe siècleanonyme XVe siècleanonymousanonymusaus dem Codex Faenzaaus dem Codex Faenza (15. Jahrhundert)folklore Champenoisfrom the Biblefrom the Bible of Králice (16th century)from the Penguin Book of Japanese Versehouse of cypressmaybe YOUnach "Heil dir im Siegerkranz"others...poet anonimseveral anonssur un texte anonyme du folklore russeterminal asperger'sthat wrotethe Anonsunbek.unbekanntunknownxx xx x xx.x...xxxxxx Tradxxx Trad.xxxx»Des Knaben Wunderhorn«École De FontainebleauÉditions Ballard (1641-1715)Época BarrocaÖcsödi Kocsmai Mulató CsoportÜberliefertÜberliefert (13. Jahrhundert)Überliefert (1525)Český Anonymİ.S.Ş.K.Şah Atay (Anonim)ΑνωνύμουΑνωνύμου Του 19ου ΑιώναΑνώνυμοΑνώνυμοςΧορωδίαЉуди Без ОгњиштаАвтор Неизв.Автор НеизвестенАвтор неизвестенАн. (1652)АнонимАноним (XVI В.)Аноним XIV ВекаАнонимен АвторАнонимни АуторАнонимный АвторАнонимусАнонимус, 14. ВекКант XVIII в. (Автор Неизв.)Неизв.Неизв. АвторНеизв. Автор. Libre Vermell, 1399Неизв. Автор. XIII в.Неизв. Автор. XV в.Неизв. Автор. Испания, XIV в.Неизв. Автор. Италия, XIV в.Неизв. поэтНеизв.(XIX в)Неизвестная ДевушкаНеизвестные Авторы (XVI—XVII Вв.)Неизвестные Авторы XVIII ВекаНеизвестный АвторНеизвестный Автор (XVI В.)Неизвестный Автор (XVI в.)Неизвестный Автор (XVII В.)Неизвестный Автор (XVIII В.)Неизвестный Автор XVI В.Неизвестный Автор XVI ВекаНеизвестный Художник XVIII ВекаНеизвестный авторНепознати Мелод (16. Век) = Anonymous (16th Century)Непознати Мелод (18 Век) = Anonymous, 18th CenturyНепознати Мелод (18. Век) = Anonymous, 18th CenturyНепознати Мелод = AnonymousНесколько Десятков Моих Талантливых Замечательных ДрузейНесколько Десятков Талантливых Замечательных ЛюдейОркестрПравославних ГрађанаСело ПлапаХашки ТрибуналЧетничка Корачницаאלמוני (טייס קרבי)אנונימיسراينده ناشناسشعر المقاومةناشناسناشناشنشناسنشناشผู้ไม่ประสงค์ออกนามみんなの「あ」の声オーケストラカールスタッドコーラスジャズバンドフォンテンブロー派七三聯隊 喇叭手不詳佚名作曲者不詳作者不明作者不詳全員匿名合唱入り囃子入り囃子方連中地元はやし連中地元有志外国曲楽団男女性ヴォーカル・グループ男聲齊唱者不詳軍樂隊轶名鳴物入鳴物連中黒人霊歌외국 [Foreign]집체Anonyme + +967805Heidi KrutzenCanadian harpist, soloist, chamber musician, and teacher. +Former Principal Harp with both the [a=CBC Radio Orchestra] and [a=The Vancouver Opera Orchestra]. Principal Harp of the [a=Philharmonia Orchestra].Needs Votehttps://heidikrutzen.com/https://twitter.com/heidikrutzen?lang=enhttps://www.youtube.com/channel/UCzA7PXmVsI28YP_9kzDJZEAhttps://philharmonia.co.uk/bio/heidi-krutzen/http://www.northlondonfestival.org.uk/adjudicator/heidi-krutzen/https://www.seattlechambermusic.org/artists/heidi-krutzen/Heidi KrutsenPhilharmonia OrchestraThe Vancouver Opera OrchestraCBC Radio OrchestraTurning Point EnsembleTrio Verlaine + +967822Bjørn SolumNorwegian cellist, born 1957 in Overhalla, Norway.Needs VoteSolumOslo Filharmoniske OrkesterBorealis (3)Oslo Philharmonic Chamber Group + +968013Larry EpsteinPlays classical upright bass in the San Francisco Symphony.Needs VoteLarry N. EpsteinLary EpsteinLaurence EpsteinLaurence N. EpsteinSan Francisco Symphony + +968014William RitchenPlays bass in the San Francisco Symphony.Needs VoteBill RitchenWilliam J. RitchenSan Francisco Symphony + +968015Charles ChandlerPlays bass in the San Francisco Symphony.Needs VoteSan Francisco SymphonyEnsemble 21 (4) + +968016Chris GilbertPlays bass in the San Francisco Symphony.Needs VoteSan Francisco SymphonyOutward Stroke + +968017Stephen TramontozziPlays bass in the San Francisco Symphony (Assistant principal).Needs VoteSan Francisco Symphony + +968018S. Mark WrightPlays bass in the San Francisco Symphony.Needs VoteMark WrightSan Francisco Symphony + +968087Marc VallonClassical bassoonist.Needs VoteWingra Woodwind QuintetOrchestre Des Champs ElyséesLes Arts FlorissantsLa Chapelle RoyaleThe Amsterdam Baroque OrchestraLa Petite BandeLes Musiciens Du LouvreRicercar ConsortRicercar AcademyCambini WindsBiedermeier Quintet + +968088Nadia RagniItalian Soprano vocalist.Needs VoteThe Amsterdam Baroque ChoirEnsemble ElymaCoro Della Radio Televisione Della Svizzera ItalianaLa VenexianaCapellantiqua + +968106Svante PetterssonSvante Edvin PetterssonSvante Pettersson from the island of Gotland, Sweden, born on May 29, 1911 in Bjärs, Lärbro parish, dead on November 10, 1994 in Visby. He made his living as a bank accountant in Lärbro, but is best known as one of Gotland's best fiddlers of the 20th century. Pettersson was also a composer, with "Gotländsk sommarnatt" being his most known composition. + +Svante Pettersson, from a musical family, founded [a969434] in 1948 with other fiddlers.Needs VotePatersonPetersonPettersonPetterssonS PetterssonS. E. PettersonS. PettersonS. PetterssonS.E. PettersonSvante Edvin PetterssonSvante PettersonSverre PettersonNordergutarnas SpelmanslagYmsedere + +968226Graeme McKeanAustralian classical viola player and teacher. Born and educated in Brisbane, Queensland. +He studied at the [l513443] and completed his B.Mus. at the [l407931]. He was Associate Principal Viola in the [a=State Orchestra Of Victoria] for ten years. He then moved to London, England and for 25 years worked with most of the major symphony and chamber orchestras in the UK including [a=The London Chamber Orchestra], [a=The Academy of St. Martin-in-the-Fields], the [a=English Chamber Orchestra], the [a=Philharmonia Orchestra] and the [a=Royal Philharmonic Orchestra], often playing in a principal position. He returned to Australia and became a member of the [a=Australian Brandenburg Orchestra].Needs Votehttps://www.facebook.com/graeme.mckeanhttps://www.musicteacher.com.au/graeme-mckean/https://www.musicteacher.com.au/graeme-mckean/violin-and-viola-lessons/Grame MckeanRoyal Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe London Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsAustralian Brandenburg OrchestraState Orchestra Of Victoria + +968275Karl LappeKarl Gottlieb LappeGerman poet, born 24 April 1773 in Wusterhusen, Germany, died 28 October 1843 in Stralsund, Germany.Correcthttp://de.wikipedia.org/wiki/Karl_Lappe Carl LappeC. LampeC. LappeCarl Gottlieb LappeCarl LappeK. LappeKarl Gottlieb LappeKarl von LappeLaggeLappeК. Лаппе + +968296Charly GaudriotKarl GaudriczekAustrian Saxophonist, Clarinetist and band leader +He was born March 12, 1895 in Vienna and died there April 15, 1978. +He studied clarinet and joined the [a754974] in 1918. He played with them for ten years, also touring South America and other parts of the world. In 1928 he founded his own orchestra, one of Austria's first jazz bands, [a1989384].Needs Votehttps://de.wikipedia.org/wiki/Charly_Gaudriothttps://grammophon-platten.de/e107_plugins/forum/forum_viewtopic.php?25707C. GaudriotCh. GaudriotCharles GaudriotCharles Gaudriot JazzCharly Gaudriot Und Sein Wiener JazzorchesterE. GaudriotGaudriotJazzkapelle Charly GaudriotJazzorchester Charles GaudriotTanzorchester Charly GaudriotWiener Jazzorchester Charles GaudriotWiener Jazzorchester Charly GaudriotWiener PhilharmonikerJazzkapelle Charly Gaudriot + +969022Magdalena KoženáMagdalena Kožená (Lady Rattle)Czech mezzo-soprano. Married to [a490290]. + +Born May 26, 1973 in Brno (former Czechoslovakia). +Kožená’s recordings include Bach arias, Handel’s Roman Motets and Italian Cantatas and “Messiah” with Marc Minkowski for DG/Archiv, and her first solo recital disc (Dvořák, Janáček and Martinů with Graham Johnson - Gramophone Solo Vocal Award, 2001) for Deutsche Grammophon, with whom she has signed an exclusive contract. Her most recent discs are recitals of arias of Mozart, Gluck and Mysliveček (with the Prague Philharmonia and Michel Swierczewski), of French arias with the Mahler Chamber Orchestra and Minkowski, Gluck’s “Paride ed Elena” under Paul McCreesh, a recital disc with Malcolm Martineau and an acclaimed disc of cantatas by members of the Bach family (“Lamento”) with Musica Antiqua Koeln and Reinhard Goebel. She is the 2004 Gramophone Awards Artist of the Year. + +Magdalena Kožená is already established as a major concert and recital artist. Her recitals have taken her to London, the Schubertiade Schwazenberg, Brussels, Paris, Hamburg, Amsterdam, Munich, Prague, Tokyo, Yokohama and Sapporo. Last season she appeared in recital at Carnegie Hall, in San Francisco and in London, Brussels, Lisbon, Vienna, Copenhagen, Amsterdam, Hamburg and Prague. In 1996-97 she was a member of the Vienna Volksoper.Needs Votehttp://www.kozena.czhttp://en.wikipedia.org/wiki/Magdalena_Ko%C5%BEen%C3%A1KozenaKoženáM. KozenaMagda KoženáMagdalena KozenaMagdalena KozenáMagdalena KozenâMagdalena KoženaMagdalena Kožená & Friendsマグダレーナ・コジェナーPrague Madrigal Singers + +969043Dagmar ValentováCzech violin & viola instrumentalistNeeds VoteDagmar ValentovaLes AmbassadeursMusica FloreaCollegium 1704Musica Antiqua PrahaConcerto CopenhagenBoston Early Music Festival OrchestraL'Onda ArmonicaLes Traversées Baroques + +969045Luc MarchalFrench classical oboist.Needs VoteLe Concert SpirituelMusica FloreaLes Épopées + +969363The Cotton PickersCotton Pickers was the generic band name that Brunswick Records used on its small jazz band recordings made in 1922-1923, 1924-1925, and again in 1929. These were intended to compete with popular dance records issued on other labels by groups such as [a=Ladd's Black Aces], [a=Bailey's Lucky Seven], and [a=The Original Memphis Five]. The earliest incarnation of the Cotton Pickers was led by clarinetist [a=Bennie Krueger] and included trumpeter [a=Phil Napoleon], trombonist [a=Miff Mole], and pianist [a=Frank Signorelli], all of whom also appeared in [a342496]. In time practically the whole personnel of the Memphis Five was brought into the ranks of the Cotton Pickers, and this is the way the band stood until September 1923 (through [url=https://www.discogs.com/release/16299865]Brunswick 2532[/url]). It is not known why the group stopped recording for [l=Brunswick] at this point, although one might speculate [l=Columbia] (to whom the Memphis Five was contracted exclusively) got wise as to the identity of the Cotton Pickers and told Phil Napoleon and company to knock it off. + +[l=Brunswick] decided to revive the name in February 1924 and continued to use it until late 1925 as a pseudonym for recordings by loosely organized personnel that varied considerably from one session to another. Based on aural, largely speculative evidence, a small group drawn from the ranks of the New York-based [url=https://www.discogs.com/artist/708247]Ray Miller Orchestra[/url] made recordings under the "Cotton Pickers" name during this time. At this stage the Miller band included both [a=Tommy Dorsey] and [a=Jimmy Dorsey], saxophonist [a=Frank Trumbauer], and coincidentally [a=Miff Mole], who proved the only holdover from the earlier incarnation of the Cotton Pickers. On these later Cotton Pickers sides it may be Trumbauer and Mole who see most of the action, the latter spectacularly so on "Down and Out Blues." + +The final 1929 batch of Cotton Pickers records, made seemingly as an afterthought, are also thought to be coordinated by [a=Ray Miller (4)]. By that time, the hot soloists of 1925 had moved on to other things, but the last sessions features vocal choruses by [a=Libby Holman] and [a=Dick Robertson]. While the name "Cotton Pickers" may have been intended as nothing more than a generic designation for hot music from Brunswick, the Cotton Pickers, as you can see from the names listed above, were anything but "generic." + +It should also be noted that recordings by several other dance bands were issued on a variety of other labels under the pseudonym "Cotton Pickers;" for these see [a=The Cotton Pickers (8)]. Releases on [l404406] labels ([l213635], [l574998] and [l284459]) include: + +[a339925] +[a3913259] +[a2895603] +[a4653607] + +"Cotton Pickers" releases on [l726118] were by Andy Mansfield & his Band - for these see [a=The Cotton Pickers (7)]. + +Releases attributed to "Cotton Pickers" or "Cotton Picker's Orchestra" on [l647645] are believed to have been by members of the Grey Gull Records, Inc. house band.Needs Votehttp://www.allmusic.com/artist/the-cotton-pickers-mn0000783925/biographyCotton PickersOrchestre Cotton PickersOrchestre The Cotton PickersThe Cotton Pickers (Original Memphis Five) + +969402Harold SiegelAmerican double bassist (* 1914; † 2007 aged 93).Needs Votehttps://www.chicagotribune.com/news/ct-xpm-2007-09-16-0709150648-story.htmlhttps://rpwrhs.org/w/index.php?title=Siegel,_HaroldH. SiegelHarold SiegalChicago Symphony OrchestraDavid Carroll & His OrchestraThe Fine Arts QuartetLou Prohut And The Polka-Rounders + +969404Clyde BernhardtClyde Edric Barren BernhardtUS jazz trombonist, singer and bandleader from the swing-era. + +Born : July 11, 1905 in Goldhill, North Carolina. +Died : May 20, 1986 in Newark, New Jersey. + +Needs Votehttps://adp.library.ucsb.edu/names/104911BenhardtBernhardtC. BernhardtClyde BernardClyde BernardtClyde BernhartClyde E. B. BernhardtClyde E.B. BernhardtEd BarronPete Johnson's All-StarsThe Harlem Blues & Jazz BandEdgar Hayes And His OrchestraClyde Bernhardt And His Blue BlazersClyde Bernhardt And His Kansas City BuddiesEd Barron And His OrchestraClyde Bernhardt And His Harlem Blues & Jazz Band + +969405Elwyn FraserSaxophonist.CorrectE. FraserE. WilliamsE.FrazerEdwin FrazierElvin FrazierElwin FraizerElwin FraserElwyn FrasierFraserW.E. FraserCootie Williams And His Orchestra + +969698Les Musiciens Du LouvreFrench ensemble founded by [a=Marc Minkowski] in 1982, based in Grenoble, France. Specializing in the baroque and classical repertoire, but also playing works by Bizet, Berlioz or Offenbach among others.Needs Votehttp://www.mdlg.net/https://www.facebook.com/LesMusiciensduLouvreChoeur & Musiciens du LouvreChorus Of Les Musiciens Du LouvreL'Atelier Des Musiciens Du Louvre - GrenobleLes Musiciens Du Louvre - GrenobleLes Musiciens Du Louvre - Grenoble -Les Musiciens Du Louvre -Grenoble-Les Musiciens Du Louvre GrenobleLes Musiciens Du Louvre – GrenobleLes Musiciens Du Louvre • GrenobleLes Musiciens Du Louvre, GrenobleLes Musiciens Du Louvre-GrenobleLes Musiciens du LouvreLes Musiciens du Louvre -Grenoble-Les Musiciens du Louvre — GrenobleLes Musiciens du Louvre • GrenobleMarc Minkowski : Les Musiciens Du LouvreOrchestra And Chorus Of Les Musiciens Du Louvre - GrenobleOrchestra And Chorus Of The Les Musiciens Du Louvre - GrenobleКамерни Оркестар Из ГраноблаVincent CharbonnierKarel IngelaerePeter HansonPatrick BeaugiraudAlida SchatPhilippe CouvertBérénice LavigneClaude MauryAgeet ZweistraMarcel PonseeleAdrian ChamorroMichel HenryChristine Angot (2)Myriam GeversPauline SmithPascal MonteilhetHugo ReyneRhoda PatrickMarie-Liesse BarauDeirdre DowlingMartin PiechottaGuido LarischMaurizio NaddeoFranc PolmanSusann WidmerMichel RenardFabio BiondiBalázs MátéJérôme HantaïMarie-Ange PetitNadine DavinSébastien MarqSimon HeyerickChristian MoreauxMichèle SauvéRoberto CrisafulliGilles RapinMarc VallonMarc MinkowskiDavid GliddenJean-Christophe Maillard (2)Jory VinikourFabrizio CiprianiYasunori ImamuraJohn Moran (3)Alberto GrazziElisabeth MatiffaRandall CookClaire SottoviaBenjamin FabreSayaka Ohira-FabreOlivier ClémenceSuzan CantrickFrançois CharruyerPablo ValettiPaula WaismanDiane ChmelaEric BellocqBenoît WeegerClaire GiardelliSophie DemouresThérèse KipferAnton SteckHager HananaVincent MalgrangeCatherine PuigAlbert BrüggenCharles ZebleyJean-Michel ForestFlorence MalgoireFernando LageAndré FournierFrédérique ThouvenotMichel MaldonadoAude VanackèreFlorence StroesserSimon DarielChristoph TimbeCécile MilleYann MirielJean-Louis FiatMirella GiardelliSharman PlesnerDolores CostoyasGeneviève BoisAnnie GarciaPascal GessiLaurent LagresleRenée HollevilleAlexandra DelcroixChristopher De VilliersSerge SaïttaJasu MoisioJani SunnarborgMechthilde WernerAlice PierotMarie-Christine DesmontsChristine MoranEva ScheyttAline ZylberajchMarion MiddenwayJean-Philippe ThiébautFrank WakelkampKate ClarkPaul Van Der LindenPhilippe SuzanneYvon RepérantJuan Manuel QuintanaJacques MaillardCécile BrossardCatherine PépinJean-Claude LavoignatMichele ZeoliFiona HuggettVincent BlanchardAlexandrine CaravassilisLouis Creac'hAndrès LocatelliChristian StaudeYannick MailletClotilde GuyonThibault NoallyJoël OechslinNils WieboldtNicolas MazzoleniThomas WesolowskiCaroline LambeléJorge RenteriaFlorian CousinAndreas ParmerudHeide SibleyKonstantin TimokhineEmmanuel MureEmmanuel LaporteToshinori OzakiTimothée OudinotTakenori NemotoFrancesco CortiDavid Sinclair (9)Ada PeschPaolo ZuccheriMarie-Claude LebeyValérie BalssaChœur Des Musiciens Du LouvreAgnieszka RychlikSébastien d'HérinWanda VisserLidewij van der VoortPedro Martin GandiaSébastien RoulandMachiko UenoMarinus KomstJean-Baptiste LapierreJean GaudyPascale HaarscherLaurence DuvalGilles de TalhouëtPascale JardinJulie NeanderMarco MasseraVérène WestphalLisamarie VanaElisa JoglarFranck RatajczykJennifer Hardy (2)Françoise DuffaudPierre-Yves MadeufEléonore WilliMario KonakaBarbara PalmaFrédéric AlbouRémi RièreRobert OberaignerFrançois JeandetSébastian Marq + +969701Andreas StaierClassical cembalo, fortepiano and piano player.Needs Votehttps://www.andreas-staier.de/https://en.wikipedia.org/wiki/Andreas_StaierA. StaierStaierMusica Antiqua KölnFreiburger BarockorchesterLes Adieux + +969784Archie LeCoqueArchie D. LeCoqueAmerican trombonist, born July 30, 1932 - died September 21, 2025, Brookings, Oregon.Needs Votehttps://obituaries.reviewjournal.com/obituary/archie-lecoque-1093280014Arch LequeArchie Le CoqueJan TobarLe CoqueLeCoqueStan Kenton And His OrchestraThe Tommy Vig OrchestraWalt Boenig Big Band + +969785Tony RizziTrefoni RizziAmerican jazz guitarist and studio musician. Also played violin, mandolin, banjo, bouzouki, six-string bass and trumpet. Played with Stan Kenton, Boyd Raeburn, Milt DeLugg, Alvy West and Les Brown and others. +Born April 16, 1923 in Los Angeles, CA, died June 2, 1992 in Huntington Beach, CA + + +Needs Votehttps://www.latimes.com/archives/la-xpm-1992-06-06-mn-468-story.htmlRizziT. RizziToni RizziTonny RizziTony KissiTony RazziTony RizzoTrefone RizziTrefoni "Tony" RizziTrefoni RizziTrefoni “Tony” Rizziトニー・リッチーTommy Dorsey And His OrchestraHarry James And His OrchestraPaul Smith QuartetLes Brown And His Band Of RenownWoody Herman And His OrchestraBoyd Raeburn And His OrchestraRussell Garcia And His OrchestraThe Abnuceals Emuukha Electric OrchestraHarry James & His Music MakersLouie Bellson OrchestraWoody Herman And The Swingin' HerdDave Pell OctetGuitars Unlimited (3)Si Zentner & His Dance BandDave Pell EnsembleConrad Gozzo And His OrchestraGeorge Roberts' SextetTony Rizzi's 5 GuitarsTony Rizzi & His Five Guitars Plus FourThe Greig McRitchie BandHall Daniels' Octet + +969787Bill Catalano (2)William Catalano Jr.American trumpet player. + +Born : July 9, 1934 in San Francisco, California. +Died : July 15, 2005 in San Francisco, California. + +Billy worked, among others with: Stan Kenton, Peggy Lee, Tony Bennett, Eartha Kitt, Lena Horne, Harry Belafonte, Marlene Dietrich, Bette Midler + +After touring with Kenton, Billy returned to San Francisco and in later years became well known as a legendary teacher. Among his students were: Jon Faddis, Rigby Powell, Tony Letizi, Skip Phyle, etc.Needs VoteBill CalalanoBilly CatalanoBilly CatelanoCatalanoStan Kenton And His OrchestraRussell Garcia And His OrchestraVirgil Gonsalves Big Band + +970306Raúl GarelloRaúl Miguel GarelloArgentinian bandoneon player, arranger, composer, orchestra leader (3 Jan. 1936 - 29 Sept. 2016), brother of [a7647406]Needs Votehttps://es.wikipedia.org/wiki/Ra%C3%BAl_Garellohttp://www.todotango.com/english/artists/info/777/Raul-GarelloGarellaGarelloR GarelloR. GarelloRaul GarelloRaúl Garello Y Su Gran OrquestaRaúl Miguel GarelloOrquesta Del Tango De Buenos AiresRaúl Garello Y Su Orquesta TípicaRaul Garello Y Su Gran Orquesta + +970312Osvaldo FresedoArgentinian tango bandoneon player, songwriter and orchestra director, nicknamed "El pibe de La Paternal" (May 5, 1897 - November 18, 1984) +Brother of [a1296789]Needs Votehttps://adp.library.ucsb.edu/names/116860FresedoN. FresedoO. FresedoO. N. FresedoO.FresedoO.N.O.N. FresedoOrquesta Tipica Osvaldo FresedoOsvaldoOsvaldo FresdaOsvaldo FresedaOsvaldo N. FresedoOswaldoOswaldo Fresedoオスバルド・フレセドOsvaldo Fresedo Y Su Orquesta TípicaTrio DelfinoQuinteto Don Osvaldo + +970339Olaf ManingerGerman cellist, born 1964 in Recklinghausen, Germany.Needs Voteオラフ・マニンガーBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerBerliner Barock SolistenApos Quartett Berlin + +970908Marc MinkowskiMarc MinkowskiFrench conductor, born October 4, 1962 in Paris. +He began as bassoon player in ensemble such as [a=Les Arts Florissants] or [a=La Chapelle Royale]. +In 1982 he formed the ensemble [a=Les Musiciens Du Louvre] which plays mostly the baroque and classical repertoire.Needs Votehttps://www.marcminkowski.com/http://www.mdlg.net/lorchestre-presentation/marc-minkowski/https://en.wikipedia.org/wiki/Marc_Minkowskihttps://culture.pl/en/artist/marc-minkowskihttps://www.imdb.com/name/nm0591460/M. MinkovskiM. MinkowskiMarc MinkovskiMarc MinkovskyMarc MinkowskyMark MinkowskyMinkowskiМарк МинковскиLes Arts FlorissantsLa Chapelle RoyaleLes Musiciens Du LouvreRicercar ConsortLes Sacqueboutiers De Toulouse + +971039Ralph KirkpatrickRalph Leonard KirkpatrickAmerican harpsichordist, clavichordist, pianist, music scholar and pedagogue. He was born 10 June 1911 in Leominster, Massachusetts, USA and died 13 April 1984 in Guilford, Connecticut, USA.Needs VoteKirkpatrickR. KirkpatrickР. КиркпатрикРалф КиркпатрикРальф КиркпатрикDumbarton Oaks Chamber Orchestra + +971041Pro Cantione AntiquaThree British musicians and scholars founded Pro Cantione Antiqua in the '60's. They were tenor James Griffett, countertenor Paul Esswood, and conductor Mark Brown, joined by conductor and musicologist Bruno Turner. Its primary era of emphasis is the Renaissance era, the richest outpouring of polyphonic composition in history. +In addition to its Renaissance repertory, the PCA also sings considerable amounts of Medieval music. + +The group is comprised of the following soloists, all, of them prominent in recital and opera: Paul Esswood, Robin Tyson, James Bowman, Timothy Penrose, and Robert Harre Jones (countertenors), James Griffett, Ian Partridge, Joseph Cornwell, and Andrew King (tenors), and Stephen Roberts, Michael George, Adrian Peacock, and David Beavan (basses/baritones). +Needs Votehttps://en.wikipedia.org/wiki/Pro_Cantione_Antiquahttps://procantioneantiqua.bandcamp.comhttps://soundcloud.com/pro-cantione-antiquaEnsemble 'Pro Cantione Antiqua'Ensemble Pro Cantione Antiqua LondonEnsemble Pro Cantione Antiqua, LondonEnsemble Pro Cantione Antiqua, LondraLondon Pro Cantione AntiquaMembers Of Pro Cantione AntiquaMembers Of The Pro Cantione AntiquaPro Cantione Antiqua (London)Pro Cantione Antiqua De LondresPro Cantione Antiqua LondenPro Cantione Antiqua LondonPro Cantione Antiqua, G. BritainPro Cantione Antiqua, LondonPro Cantione Antiqua, LondresPro Cantione AntiquePro Cantione antiqua LondonSoloists From The Pro Cantione AntiquaThe Gentleman SongstersGordon Jones (2)Paul EsswoodCatherine BottPaul ElliottSuzanne FlowersBrian EtheridgeGeoffrey MitchellCharles BrettJames Bowman (2)David BeavanAshley StaffordMichael ChanceDavid Thomas (9)Robert Harre-JonesWynford EvansIan PartridgeNeil JenkinsJames GriffettChristopher KeyteMark Brown (4)Stephen Roberts (2)Adrian PeacockAndrew CarwoodEdgar FleetJoseph CornwellMichael George (3)Timothy PenroseRobin BlazeAdrian HillWilliam MasonJohn ElwesBruno TurnerKevin Smith (11)Keith Davis (2)Jan CaddyJames LewingtonRobin TysonIan Thompson (12)Andrew Green (8)Mason Williams (5) + +971042Edgar FleetEdgar Augustus FleetEnglish tenor vocalist and choral director (London, 13 June 1931 - London, 10 April 1999).Needs Votehttp://www.independent.co.uk/arts-entertainment/obituary-edgar-fleet-1092866.htmlPro Cantione AntiquaAccademia MonteverdianaThe Saltire SingersThe Ambrosian Consort + +971452Steve Arnold (2)Steve ArnoldNeeds VoteS.ArnoldScuba Steve (2)Omega 3 + +971453Omega 3Needs VoteOmega3Jon BellSteve Arnold (2)Dale Fairbairn + +971460Dave Curtis (4)Dave CurtisHard House DJ & producer based in Reading, UK. +Label manager of [l=Caterpillar Trax].Needs Votehttp://twitter.com/djdavecurtishttp://www.mixcloud.com/dave_curtis/http://soundcloud.com/davecurtisSecond Dimension (3)Control & Fx + +971765Arnold RiedhammerArnold F. RiedhammerGerman-American percussionist, timpanist, arranger and composer, born 1947 in Sommerville, New Jersey.Correcthttp://www.arnoldriedhammer.de/A. RiedhammerA.F. ReedhammerA.F. RiedhammerArnold F. RiedhammerRiedhammer Arnold F.Münchner PhilharmonikerNürnberger SymphonikerBlechschaden + +972329Artie AntonArthur AntonAmerican jazz drummer and percussionist, known for his work on conga and timbales as well as the traditional drum set. + +Born : September 08, 1926 in New York City. +Died : July 27, 2003 in Yakima, WA +Needs Votehttp://www.kenzanweb.com/art-anton/Art AntonStan Kenton And His OrchestraThe Jimmy Giuffre 4 + +972378The SkylarksAmerican vocal quintet that became a staple on TV variety shows and tours during the fifties and the sixties alongside stars such as Danny Kaye, Dean Martin, Jerry Lewis, and Carol Burnett. + +The group was originally formed as a quartet called [b]the Velvetones[/b] in 1942 by four army servicemen stationed around the Panama Canal and consisted of Bob Sprague (first tenor), Harry Gedicke (second tenor), Harry Shuman (baritone) and George Becker (lead). On returning to Detroit after the war, Gilda Maiken joined as lead singer. + +Their debut recording, "Stars Fell On Alabama", was made in 1946 with orchestra leader [a239399] under their new name of [b]the Blue Moods[/b]. After Woody Herman's band broke up, they met and recorded with [a=Bing Crosby] who changed their name to [b]the Skylarks[/b] in 1947. + +Other artists they've performed, recorded and appeared alongside include [a299282], [a349513], [a299944], [a299950], [a52833], [a31615] and [a269087], scoring a few chart number ones along the way. + +By the 50's the group consisted of originals Gilda Maiken and George Becker, with Joe Hamilton, Earl Brown, and Jacki Gershwin (later replaced by Carol Lombard) before they finally broke up in 1979 with a farewell appearance at the Hollywood Palladium. +Needs Votehttps://en.wikipedia.org/wiki/The_Skylarks_(vocal_group)https://whitedoowopcollector.blogspot.com/2021/03/the-skylarks-decca-rca-verve-records.htmlhttps://www.imdb.com/name/nm1561793/Les SkylarksSkylarkswith combo accompanimentCarol LombardEarl Brown (3)Joe Hamilton (2)Gilda MaikenJackie JoslinHarry James And His Orchestra + +972853Paul RadaisFrench ViolistNeeds VoteOrchestre National De France + +972925Christian RutherfordClassical horn player.Needs VoteNew London ConsortPhilip Jones Brass EnsembleThe Academy Of Ancient MusicThe Chamber Orchestra Of EuropeCollegium Musicum 90L'Estro ArmonicoThe English Concert + +973130Minnesota OrchestraAmerican orchestra based in Minneapolis, Minnesota, USA +Founded originally as the Minneapolis Symphony Orchestra, it played its inaugural concert on November 5, 1903. Since 1968 it has been known as the Minnesota Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Minnesota_Orchestrahttps://www.minnesotaorchestra.org/https://mnmusichalloffame.org/the-minnesota-orchestra/https://www.bach-cantatas.com/Bio/Minnesota-Orchestra.htmhttps://www.x.com/mn_orchestrahttps://www.facebook.com/minnesotaorchestra/https://www.instagram.com/mn_orchestra/https://www.linkedin.com/company/minnesota-orchestra/Members Of The Minnesota OrchestraMinesota OrchestraMinneapolis SymphonyMinneapolis Symphony OrchestraMinnesota Orch.Minnesota Orchestra (Minneapolis Symphony Orchestra)Minnesota Orchestra (Minneapolis Symphony)Minnesota Symphony OrchestraMinnesotski OrkesterOrchestra Sinfonica del MinnesotaOrchestre De MinneapolisOrchestre De MinnesotaOrchestre Du MinnesotaOrkestar MinnesoteOrquesta De MinesotaOrquesta de MinnesotaOrquestra Sinfônica De MinnesotaOrquestra Sinfônica de MinnesotaSimfonijski Orkestar Iz MineapolisaSinfónica de MinnesotaThe Minnesota OrchestraThe Minnesota Symphony OrchestraСимфонический Оркестр Миннесотыミネソタ・オーケストラMinneapolis Symphony OrchestraMarlborough Symphony OrchestraMichael SuttonJoanne OpgenorthKathy KienzleRudolph LekhterAdam KuenzelCharles PiklerThomas StacyLee LaneJorja FleezanisKari SundströmRoger FrischTaichi ChenTim KrolCharles LazarusAmnon LevyR. Douglas WrightPitnarry ShinCeline LeatheadRichard Marshall (3)Eugene LevinsonHerbert WinslowJohn Miller (24)Rubén González (2)Charles SchlueterRui DuSarah KwakGina DiBelloThomas Turner (4)Anthony Ross (4)Peter McGuireAaron JanseMegan TamSilver AinomaeKendall BettsMichael GastDouglas CarlsenEric WahlinJoseph RocheSusie Park (2)Richard GraefBruce Hudson (3)Erin KeefeTimothy ZavadilCecilia BelcherBradley OplandKathryn GreenbankNorbert NielubowskiMartin HodelCatherine SchaeferJohn Tartaglia (3)Milana ReicheJohn Snow (4)Adam Han-GorskiVali PhilipsBurt HaraScott Moore (13)Gareth ZehngutSachiya IsomuraMichael Adams (11)David PharrisWilliam SchrickelMina FisherSifei ChengJonathan MagnessKatja LinfieldMichael Fuller (5)Esther SeitzPeter KoganArek TesarczykJoe Johnson (52)David Brubaker (3)Ben OdhnerKenneth FreedFora BaltacigilRebecca AlbersBeth RapierRobert DorerJames CluteRonald BalazsSam BergmanNatsuki KumagaiHelen Chang HaertzenAndrew ChappellNathan Hughes (4)Marcia Peck + +973228Timothy BullSound engineer.CorrectTim Bull + +973369Hans FischerAustrian classical horn player, born 6 March 1928.Needs VoteHorst FischerWiener PhilharmonikerConcentus Musicus WienDas Wiener Bläserquintett + +973391Hans GillesbergerAustrian choirmaster and conductor (* 29 November 1909 in Ebensee, Austria-Hungary; † 04 March 1986 in Vienna, Austria).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_G/Gillesberger_Familie.xmlhttps://www.geschichtewiki.wien.gv.at/Hans_Gillesbergerhttps://de.wikipedia.org/wiki/Hans_GillesbergerDr. H. GillesbergerDr. Hans GillesbergerGillesbergerH. GillesbergerProf. Dr. Hans GillesbergerProf. H. GillesbergerProf. Hans GillesbergerProfessor H. GillesbergerProfessor Hans GillesbergerChorus ViennensisOrchester Hans GillesbergerChor Hans Gillesberger + +973392Hermann HöbarthClassical cellist and violistNeeds VoteHerman HöbarthHermann HoebarthHermann HöbartHermann HörbarthConcentus Musicus Wien + +973393Karl GruberAustrian musician, plays oboe and historical wind instruments. He was born 1928 in Baden, Austria and died 24 May 2007 in Vienna, Austria.CorrectGruber KarlK. GruberWiener PhilharmonikerConcentus Musicus Wien + +973394Wim Ten HaveWim (Willem) ten Have (Amsterdam, November 28, 1929 – Zandvoort, November 18, 2025) was a Dutch musician, viola and viola d’amore player, conductor, pedagogue and editor. + +Wim ten Have studied viola at the Amsterdam Conservatory, graduating in 1953 in the class of Klaas Boon, who was then principal violist of the Royal Concertgebouw Orchestra in Amsterdam. After graduating, Wim ten Have played in several Dutch orchestras, starting in the Amsterdam-based Kunstmaandorkest that which later became the Amsterdams Philharmonisch Orkest (Apho), currently the Nederlands Philharmonish Orkest (Nedpho). He was solo viola player and leader of the viola group between 1960 and 1970. + +Wim ten Have's interest in historically informed performance began in 1959 when, on the recommendation of violist Mieke Feldkamp, harpsichordist and conductor Gustav Leonhardt invited him to join his Leonhardt Consort, then in its initial and experimental stage. Leonhardt provided him with an instrument made by the Bolognese luthier Giovanni Tononi from around 1700, which had belonged to Leonhardt's mother. + +Afterwards, Wim ten Have played in virtually all the most representative period performance ensembles of the early days of this movement: Leonhardt Consort, Concentus Musicus Wien (Nikolaus Harnoncourt), La Petite Bande (Sigiswald Kuijken), Concerto Amsterdam (Jaap Schröder) and the Barokorkest van de Nederlandse Bachvereniging (of which he was the first artistic director); he also collaborated with countless European Early Music ensembles in concerts and recordings, such as Esterhazy Quartet (Jaap Schröder), Ensemble 415 (Chiara Banchini, Switzerland), Capella di San Petronio (Lieuwe Tamminga, Italy), La Real Cámara (Emilio Moreno, Spain), De Egelentier (Netherlands), Het Nederlands Barok Orkest (of which he was the first principal conductor). + +Between 1970 and 1975, Wim ten Have worked in Denmark as a member of the Esbjerg Ensemble, performing not only Classical and Romantic repertoire, but also a large amount of contemporary music. In 1975 together with the Danish violinist Troels Svendsen, he founded the Baroque ensemble Den Danske Violonbande in Copenhagen. + +In Amsterdam in1981, Frans Brüggen founded the Orchestra of the 18th Century, with Wim ten Have as one of its key figures, serving as principal viola until 1996, and on occassion replacing Frans Brüggen as musical director and conductor. His musicological work as a researcher was particularly noteworthy; he recovered, revised, and prepared practical editions and compilations of instrumental suites of Rameau's operas, later performed and recorded by the orchestra, based on autograph manuscripts preserved in French archives and libraries (Dardanus, Acante et Céphise, Naïs, Zoroastre, Castor et Polux, Les Fêtes d’Hébé, Les Boréades and Les Indes Galantes) + +As a pedagogue, he was principal professor of viola and chamber music at the Groningen Conservatory, Netherlands from 1974 to 1988, inspiring countless students to embark on their careers in Early Music with original instruments through his lessons and the institution's string orchestra under his direction. During those years, Wim ten Have also conducted until 1985 the Groningen String Ensemble founded in1979. He was also a visiting professor at the Academy of Early Music of the University of Salamanca, Spain, as well as at the Orlando Festival in Kerkrade,The Netherlands, for many years. + +One of the most interesting contributions of this Dutch musician, apart from his significance as a performer and important pioneer in the Early Music movement, has been the recovery, revision, and publication of unpublished scores from the 17th to the 19th centuries. In his later years, he made numerous arrangements, mainly for strings, but also for voice and string quartet (Schubert’s Winterreise). His editions and arrangements can be found at Kammermusikverlag HehenwarterNeeds VoteW. Ten HaveWim ten HaveCappella Musicale Di S. Petronio Di BolognaCollegium VocaleConcentus Musicus WienLa Petite BandeLeonhardt-ConsortVestjysk KammerensembleOrchestra Of The 18th CenturyConcerto AmsterdamLa Real Cámara + +973395Jacques VillisechJacques Villisech (21 November 1932 - 31 October 2021) was a French bass-baritone and voice teacher.Needs Votehttp://www.bach-cantatas.com/Bio/Villisech-Jacques.htmJ. VillisechVillisechChorus Viennensis + +973397Eugen M. DomboisEugen MüllerGerman lutenist and music teacher, born 15 November 1931 in Bethel, Germany and died 9 May 2014 near Basel, Switzerland.Needs Votehttp://www.tageswoche.ch/de/2014_20/kultur/658445/Eugen-M-Dombois-wird-einen-Ehrenplatz-in-der-Ahnengalerie-behalten.htmhttps://en.wikipedia.org/wiki/Eugen_DomboisDomboisEugen DomboisEugen M.-DomboisEugen Muller-DomboisEugen Müller DomboisEugen Müller-DomboisEugen-Müller DomboisEugene DomboisEugene Müller DomboiEugene Müller-DomboisEugène DomboisConcentus Musicus WienCollegium AureumLeonhardt-ConsortUlsamer CollegiumSüdwestdeutsches KammerorchesterSchola Cantorum BasiliensisCollegium TerpsichoreRicercare-Ensemble Für Alte Musik, ZürichArchiv Produktion Instrumental EnsembleEnsemble Instrumental De LausanneViola-da-Gamba-Quintett Der Schola Cantorum Basiliensis + +973399Bernhard Klebel (2)Conductor, oboist and historical wind instruments player. Founder of the [a3732551]. +He was born 28 September 1936 in Vienna, Austria and died 24 June 2013 in Vienna, Austria.Needs VoteB. KlebelBernard KlebelBernhard KleuelBernhardt KlebelWiener VolksopernorchesterConcentus Musicus WienMusica Antiqua WienWiener Motettenchor + +973400Josef LehnfeldJosef Lehnfeld is an Austrian classical violinist. He's the father of [a2243438].Needs VoteWiener SymphonikerConcentus Musicus Wien + +973401Gottfried HechtlGottfried Hechtlborn (11 January 1928 - 6 January 2014) was an Austrian classical flautist.Needs VoteWiener PhilharmonikerConcentus Musicus WienEnsemble Eduard MelkusGrazer Philharmonisches OrchesterDas Wiener BläserquintettDie Instrumentisten Wien + +973402Siegfried FührlingerAustrian classical violin and viola player. +Born 1938 in Oberneukirchen, Upper Austria.Needs VoteSiegfried FürlingerWiener SymphonikerConcentus Musicus WienWiener StreichsextettDie Instrumentisten Wien + +973403Stefan PlottClassical violinist.Needs VoteKztm. Stefan PlottVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus Wien + +973471Robin GrittonConductor and chorus master.Needs Votehttps://www.bach-cantatas.com/Bio/Gritton-Robin.htm + +973597Royal Liverpool Philharmonic OrchestraOrchestra of the Royal Liverpool Philharmonic Society, based in Liverpool, Merseyside, England, UK. Founded in 1840.Needs Votehttps://en.wikipedia.org/wiki/Royal_Liverpool_Philharmonichttps://www.liverpoolphil.com/https://www.naxos.com/Bio/OrchestraEnsemble/Royal_Liverpool_Philharmonic_Orchestra/35749https://www.x.com/liverpoolphilhttps://www.facebook.com/LiverpoolPhilharmonic/https://www.instagram.com/liverpool_philharmonic/https://www.linkedin.com/company/royal-liverpool-philharmonic/AndKrálovská Filharmonie Z LiverpooluLa Orquesta Filarmonica Real LiverpoolLiverpool OrchestraLiverpool Philarmonic Orch.Liverpool PhilharmonicLiverpool Philharmonic Orch.Liverpool Philharmonic OrchestraLiverpool Philharmonic Orchestra & Brass BandsMembers Of The Royal Liverpool Philharmonic OrchestraOrchestraOrchestre Philharmonique De LiverpoolOrchestre Philharmonique Royal De LiverpoolOrchestre Royal Philharmonique De LiverpoolOrquesta Filarmónica De LiverpoolOrquesta Filarmónica de LiverpoolOrquestta Filarmonica De LiverpoolPhilarmonisches Orchester LiverpoolPhilharmonisches Orchester LiverpoolRLPORoyal Liverpool OrchestraRoyal Liverpool Phil.Royal Liverpool Philharmonia OrchestraRoyal Liverpool PhilharmonicRoyal Liverpool Philharmonic Choir & OrchestraRoyal Liverpool Philharmonic Orch.Royal Liverpool Philharmonic Orchestra & ChorusRoyal Liverpool Symphony OrchestraRoyal Philharmonic OrchestraThe Liverpool Philharmonic Orch.The Liverpool Philharmonic OrchestraThe Royal Liverpool Philharmonic OrchestraThe Royal Liverpool Symphony OrchestraThe Royal Philharmonic OrchestraThe Strings Of The Royal Liverpool Philharmonic Orchestraロイヤル・リヴァプール・フィルハーモニック管弦楽団Ian BrackenNicholas BootimanSimon CowenAndrew ShulmanAndrew LongMin YangRoger BenedictManoug ParikianDenis VigayHerbert DownesSophie ColesChi-Yu MoGerard SchwarzThomas DaveyCathy MarwoodThelma HandyHarry MortimerJocelyn LightfootMalcolm StewartFritz SpiegelNikki GleedJames Clark (6)Henry DatynerAlan StringerEric ChadwickJulian MiloneKate MarsdenGerald ManningReginald KellRakhi SinghSimon DentonStephan MayerRachel Jones (3)Elen Hâf RichardsThomas MatthewsRobert GrowcottDavid GreenleesScott LumsdaineSimon Powell (2)Robin HaggartCormac HenryMiriam DavisElizabeth McNultyClaire Stranger-FordNick Byrne (2)Thomas VerityJames Pattinson (2)Brendan BallRobert HollidayPeter Mountain (2)Ruth OwensMartin Anthony BurrageCarolyn TregaskisDonald TurnbullRebecca WaltersKatharine RichardsonAdi BrettNoel AndersonSteven WilkieDavid RimbaultDavid RubySheila GascoyneConcettina Del VecchioJames Justin EvansDavid Whitehead (2)Ian FairAlexander MarksRos CabotMichael Dale (3)Robert John HebbronRichard Wallace (3)Joanna WeslingPatrick James HuttonKathryn CropperHelen BoardmanDaniel SanxisJohn Robert ShepleyDaniel HammertonAlan PendleburyClaire FillhartStephen MannJoanna LanderMarcel BeckerKatherine LacyGethyn Jones (2)Alexander HolladayFiona PatersonLowri MorganAshley FramptonGenna SpinksNigel DuftyRachael PankhurstGareth TwiggSimon ChappellRhys OwensJosephine FriezeSimon GriffithsNeil HittTimothy NicholsonChristopher MorleyTimothy Jackson (3)Paul MarsdenJames Blyth LindsayHenry BaldwinHilary BrowningAmelia JonesSusanna JordanSarah Hill (5)Fiona StundenTimothy WaldenJonathan Small (2)Ruth Davies (3)Laura Murphy (5)Nuno CarapinaMair Jones (3)Wilfred SimenauerSusan HendersonRichard Waters (5)Christopher Swann (2)Jonathan AasgaardAusiàs Garrigós MorantMihkel KeremAndrew Harvey (4)Frances Evans (2)Anna StuartNadia DebonoPeter LiangStephen Nicholls (4)Helen Wilson (9)Heather Thompson (8)Richard CowenEmily MowbrayNina AshtonSameeta GahirAnthony Williams (27)Elizabeth LambertonOlga SmolenAlex Mitchell (16)Mark Lindley (2)Ernest Hall (3)Domingo HindoyanFábio Brum (2)Emma BurgessHannah MackenzieGwendolyn Fisher1000 UK Artists + +973603Mexico City Philharmonic OrchestraNeeds Votehttps://en.wikipedia.org/wiki/Mexico_City_Philharmonic_Orchestrahttps://www.naxos.com/person/Mexico_City_Philharmonic_Orchestra/46098.htmChoeur Et Orchestre Philarmonique de MexicoChœurs Et Orchestre Philharmonique De La Ville De MexicoCity Of Mexico Symphony OrchestraFilarmonica De MexicoLa Orquesta De Cuidad De MexicoMexico City OrchestraMexico City PhilharmonicMexico City SymphonyMexico Citys Filharmoniske OrkesterMexico Philharmonic OrchestraOrchestra Filarmónica De La Cuidad De MéxicoOrchestra sinfonica nazionale del MessicoOrchestre De La Ville De MexicoOrchestre Et Choeur Philharmonique De MexicoOrchestre Filarmónica De La Cuidad De MéxicoOrchestre Philarmonique De MexicoOrchestre Philharmonique De MexicoOrquesta Filarmonica De La Ciudad De MexicoOrquesta Filarmonica De La Ciudad De Mexico - Seccion De MetalesOrquesta Filarmonica De La Cuidad De MexicoOrquesta Filarmonica de la Ciudad de MexicoOrquesta Filarmonica de la Cuidad de MejicoOrquesta Filarmónica De La Ciudad De MexicoOrquesta Filarmónica De La Ciudad De MéxicoOrquesta Filarmónica De La Cuidad De MéxicoOrquesta Filarmónica de la Ciudad de MéxicoOrquesta Filharmonica De La Cuidad De MejicoOrquesta Filharmónica de la Ciudad de MexicoOrquestra Filarmonica De La Ciudad De MéxicoOrquestra Filarmonica De MéxicoOrquestra Filarmonica de MexicoOrquestra Filarmónica De La Ciudad De MexicoOrquestra Filarmónica De La Ciudad de MéxicoOrquestra Filarmónica de la Ciudad de MéxicoOrquestra Filharmonica de la Ciudad de MexicoOrquestra Filharmónica De La Ciudad De MéxicoOrquestra de la Ciudad de MexicoPhilharmonic Orchestra Of MexicoPhilharmonic Orchestra Of Mexico CityPhilharmonic Orchestra Of The City Of MexicoPhilharmonisches Orchester MexicoPhilharmonisches Orchester MexikoPhilharmonisches Orchester Von MexikoSymfonie-orkest MexicoThe Mexico City Philharmonic OrchestraThe Mexico PhilharmonicJoan ZelickmanMichael KornelDavid MoonanAnna Chomicka-Gorecka + +973661Earl Brown (3)Walter Earl BrownAmerican singer, songwriter, vocal arranger, and musical director for many TV shows. +Born December 25. 1928 in Salt Lake City, Utah. +Died January 10, 2008 in Sherman Oaks, California. + +Known as mostly as Earl Brown, he is probably most famous for penning the song "If I Can Dream" written specially to close the "Comeback Special for NBC" by Elvis Presley. He also sang with The Skylarks and led The Earl Brown Singers. +As the Musical Director of the 1968 "Elvis" TV Special, on short notice, during the week of taping, he composed "If I Can Dream" in honor of Martin Luther King. Elvis sang it as the closing number and recorded it, and it became Elvis' first million selling single in over 3 years. Over the years as Musical Director, he won accolades composing special musical material for the long running "Dinah Shore Chevy Show" (1956-63) as well as " The Sonny and Cher Show ", "Donny and Marie" and many other weekly variety and specialty shows. He was also a writer on some of the TV shows he composed and directed music for. He frequently did the vocal arrangments for Rosemary Clooney in the 1990s.Needs Votehttps://www.imdb.com/name/nm1039058/BrownE. BrownW Earl BrownW. BrownW. E. BrownW. Earl BrownW. EarlbrownW. Early BrownW.E. BrownW.Earl BrownWalter BrownWalter E. BrownWalter Earl BrownThe SkylarksThe Earl Brown Singers + +973802Leo LitwinAmerican pianist, a graduate of the New England Conservatory of Music, who became a staff pianist of the Boston Pops Orchestra.Needs VoteL. LitwinLitwinLoe LitwinLéo Litwinレオ・リトウィンBoston Pops Orchestra + +973822Heinrich IsaacHeinrich IsaacNetherlandish composer and singer. Known in Italian as Arrigo il Tedesco. + +He was born cir. 1450, presumably in Flanders or Brabant and died on 26 March 1517 in Florence (Italy). +Correcthttp://en.wikipedia.org/wiki/Heinrich_Isaachttps://adp.library.ucsb.edu/names/103425? Heinrich Isaac? IsaacArrigo IsaacG. IsaakH. IsaacH. IsaacsH. IsaakH. IzaaksH. IzakasH.IsaacHeindrik IsaacHeinirch IsaakHeinr. IsaacHeinr. IsakHeinric IsaacHeinrich IcaacHeinrich IjaakHeinrich Isaac (Ca.1445-1517)Heinrich IsaakHeinrich IssakHeinrich IssakiHeinrich JsaakHeinricus IsaacHendrick IsaacHendrik IsaacHenri IsaacHenrich IsaacHenrich IssacHenrichus IsaacHenricus IsaacHenricus YzacHenry IsaacIsaacIsaac ⑴IsaakГ. ИзаакГ. ИсаакГенрих Изаак + +973825Reiner GebauerClassical flautistNeeds VoteRainer GebauerGewandhausorchester LeipzigCapella Fidicinia + +973826Roland ZimmerRoland Zimmer (16 June 1933 - 4 January 1993) was a German classical guitarist and lutenist.Needs VoteCapella LipsiensisNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaPro Arte Antiqua Lipsiensis + +974405Peter PooleClassical violinistNeeds VoteThe Academy Of Ancient MusicLondon Classical Players + +974486Philippe GilleFrench dramatist and opera librettist, born 10 December 1831 and died 19 March 1901.Needs Votehttp://fr.wikipedia.org/wiki/Philippe_Gillehttp://en.wikipedia.org/wiki/Philippe_Gillehttps://adp.library.ucsb.edu/names/360018F GillesGilleGillesGilléGrilleP. GilleP. GillesPh. GillePh. GillerPh. GillesPhilippe GillesPhillipe GilleФ. Жиль + +974490Giovanni RuffiniGiovanni Domenico Ruffini (* 1807 in Genoa; † 3 November 1881 in Taggia on the Riviera) was an Italian writer and librettist.Needs VoteG. RuffiniGiacomo RuffiniM. A.Ruffini + +974537Robert Colby (2)American composer, songwriter, author, producer and publisher of popular music. +Born: July 7, 1922. Died: March 10, 1987Needs VoteB. ColbyBob ColbyColbyCromaR. ColbyR.ColbyRobt. ColbyThe Colby-Wolf Combo + +974618Jochen PleßGerman hornist.Needs VoteJoachen PleßJochen PlessRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester LeipzigOrchester der Bayreuther FestspieleNeues Bachisches Collegium Musicum LeipzigEnsemble AvantgardeArmonia Ensemble + +974621Matthias KreherGerman clarinetist, born 2 February 1962 in Leipzig, GDR (today Germany).CorrectGewandhausorchester LeipzigEnsemble AvantgardeArmonia Ensemble + +974622Johannes WinklerClassical horn player, member of the Leipziger Hornquartett since 1988. + +For the conductor please use [a2070423]. +Needs VoteRundfunk-Sinfonie-Orchester LeipzigOrchester der Bayreuther FestspieleMDR SinfonieorchesterLeipziger Hornquartett + +974623Ralf MielkeGerman flute player, born 23 April 1961 in Lübbenau, GDR.Needs VoteRundfunk-Sinfonie-Orchester LeipzigEnsemble AvantgardeStaatskapelle HalleAnhaltische Philharmonie Dessau + +974748Mikhaïl RudyМихаил РудыйRussian-born French classical pianist (Tashkent, Uzbekistan, April 3, 1953).Correcthttp://en.wikipedia.org/wiki/Mikhail_RudyMichael RudyMikhail RudyMikhaïl RudiRudy + +975143Tobias HumeEnglish composer, viol player and soldier. Possibly born 1569. Died April 16, 1645. His two published works, 'The First Part of Ayres' (or Musicall Humors, 1605) and 'Captain Humes Poeticall Musicke' (1607), include many pieces for the viol, including the solo lyra viol, and songs.Needs Votehttp://www.hoasm.org/IVM/Hume.htmlCapitaine Tobias HumeCaptain T. HumeCaptain Tobias HumeCaptaine Tobias HumeCaptaine Tobias HvmeHumeT. HumeThobias Humes + +975170Björn Ulvaeus & Benny Andersson[a=Björn Ulvaeus] & [a=Benny Andersson] are the BB in [a=ABBA], one-time husbands of [a=Agnetha Fältskog] and [a=Anni-Frid Lyngstad] respectively. Björn started his career in Swedish folk group [a=Hootenanny Singers], and Benny in the beat group [a1079274]. They wrote their first song together in June 1966, "Isn't It Easy To Say", which was recorded by the Hep Stars. Their first and only album as a duo was released in 1970, and this was the first album to feature both Björn, Benny and their partners. A song from the same period, "She's My Kind Of Girl" became a major success in Japan in 1972, and this was an early sign that the group had what it takes to make it internationally. Björn & Benny have writing and production credits on virtually every ABBA release, and after ABBA they went on to write the musicals "Chess" and "Kristina från Duvemåla", and write and produce for many Swedish and European artists.Needs Votehttps://www.icethesite.com/http://www.raffem.com/A. AndersonAdersson-UlvaeusAnderon/UlvaeusAndersen / UlvaeusAndersen, UlvaeusAndersen/UlveusAnderson & UlvaeusAnderson + UlvaeusAnderson - UlvacusAnderson - UlvaensAnderson - UlvaeusAnderson - UlvaevsAnderson / UleaeusAnderson / UlvaeusAnderson / UlveausAnderson / UlväusAnderson / UvaeusAnderson / VinerasAnderson B. UlvaeusAnderson Benny/Ulvaeus BjörnAnderson UlvacusAnderson UlvaesAnderson UlvaeusAnderson, UlevaeusAnderson, UlvaeurAnderson, UlvaeusAnderson, UlveauAnderson-UlvaeusAnderson-ZulvaeusAnderson/ UlvaeusAnderson/UllvaeusAnderson/UlvaeusAnderson/Ulvaeus - AndersonAnderson/UlveaeusAnderson/UlveausAnderson/UlveusAnderson/UlvæusAndersons & UlvaeusAndersoon / UlvaeusAnderssen/UlvaeusAnderssonAndersson & UlvaeusAndersson - AlvaeusAndersson - Andersson - UlvaeusAndersson - B. UlvaeusAndersson - UlvacusAndersson - UlvaeusAndersson - UlvæusAndersson / Andersen / UlvaeusAndersson / UivaeusAndersson / UlvaeusAndersson / UlvauesAndersson / UlveausAndersson / VivaeusAndersson /UlvaeusAndersson And UlvaeusAndersson B., Ulvaeus B.Andersson Benny Goran Bro, Ulvaeus Bjoern K.Andersson Benny Göran, Ulvaeus Bjoern KAndersson Benny, Bjorn UlvaeusAndersson Benny, Ulvaeus BjornAndersson Benny, Ulvaeus BjörnAndersson UlvaeusAndersson UlvauesAndersson and UlvaeusAndersson' UlvaeusAndersson, Anderson, UlvaeusAndersson, Benny / Ulvaeus, BjörnAndersson, Benny Goeran Bror / Ulvaeus, BjörnAndersson, Benny Goran Bror, Ulvaeus, Bjoern KAndersson, UlvaensAndersson, UlvaeusAndersson, UlvæusAndersson, UlyaeusAndersson, VlvaeusAndersson-Anderson-UlvaeusAndersson-Andersson-UlvaeusAndersson-UlvaesAndersson-UlvaeusAndersson-Ulvaeus-AnderssonAndersson-UlvaéusAndersson-UlveausAndersson-Ulveus-AnderssonAndersson-UlväusAndersson.B.Goeran Ulvaeus Bjoern K.Andersson/ UlvaeusAndersson/AlvaeusAndersson/Anderson/UlvaeusAndersson/Andersson/UlvaeusAndersson/LilvaeusAndersson/UlvacusAndersson/UlvaesAndersson/UlvaeusAndersson/UlvaneusAndersson/UlveausAndersson/UlveusAndersson/UlvæusAndersson—B. UlvaeusAnderssson and UlvaeusAnderssson/UlvaeusAndeson/UlvaeusAndreson/UlvansAnersson - UlvaeusB & BB Anderson/B UlvaeusB Andersson & B UlvaeusB Andersson - B UlvaeusB Andersson / B UlvaeusB Andersson B UlvaeusB Andersson, B UlvaeusB Andersson, B UlvæusB Andersson-B UlvaesusB Andersson-B UlvaeusB Andersson-B UlveusB Andersson/B UlvaeusB Anderssson - B UlvaeusB Ulvaeus & B AndersonB Ulvaeus - B AnderssonB Ulvaeus, B AnderssonB Ulvaeus/B AnderssonB&BB, Andersson - B. UlvaeusB. & S. AndersonB. & S. Anderson - B. UlvaeusB. & S. Andersson/UlvaeusB. ANdersson / B. UlvaeusB. ANdersson/B. UlvaeusB. Anadersson - B. UlvaeusB. Andersdon And B. UlvaeusB. Andersen & B. UlvaeusB. Andersen - B. UlvaeusB. Andersen, UlaviesB. Andersen/B. UlvaeusB. Andersen/UlveusB. AndersonB. Anderson & B. AlvaeusB. Anderson & B. UlvaeusB. Anderson & B.UlvaeusB. Anderson & Bjorn UlvaeusB. Anderson & UlvæusB. Anderson - B. UlbaeusB. Anderson - B. UluaeusB. Anderson - B. UlvacusB. Anderson - B. UlvaensB. Anderson - B. UlvaeusB. Anderson - B. UlveausB. Anderson - UlvaeusB. Anderson / B. UlvaeusB. Anderson / B. Ulvaeus / S. AndersonB. Anderson / B. UlveiusB. Anderson / B. UlyaeusB. Anderson / B.UlvaeusB. Anderson / Bjorn UlvaeusB. Anderson / BulvaeusB. Anderson / UlvaeusB. Anderson / UlvàensB. Anderson /B. UlvaeusB. Anderson /B. UlvæusB. Anderson B. UlvaeusB. Anderson — B. UlvaeusB. Anderson, B. MuaeusB. Anderson, B. UlraeusB. Anderson, B. UlvacusB. Anderson, B. UlvaeB. Anderson, B. UlvaeusB. Anderson, B.UlvaeusB. Anderson-B. UlvaesB. Anderson-B. UlvaeusB. Anderson-B. UlvasusB. Anderson-UlvaeusB. Anderson-UlveausB. Anderson/ B. UlvaeusB. Anderson/B. LilvaensB. Anderson/B. OlvaeusB. Anderson/B. UlvaeusB. Anderson/B.UlvaeusB. Anderson/Bjorn UlvaeusB. Anderson/Björn UlvaeusB. Anderson/UlvaeusB. Anderson—B. UlvaeusB. Anderson―B. UlvaeusB. AnderssonB. Andersson & B. UlvaeusB. Andersson & B. UlvauesB. Andersson & B. UlvæusB. Andersson & Bjorn UlvaeusB. Andersson & Björn UlvaeusB. Andersson & UlvæusB. Andersson + B. UlvaeusB. Andersson + B. UlvauesB. Andersson , B. UlvaeusB. Andersson - AlvaeusB. Andersson - B UlvaeusB. Andersson - B- UlvaeusB. Andersson - B. UlvaensB. Andersson - B. Ulvaeo'sB. Andersson - B. UlvaeusB. Andersson - B. Ulvaeus &B. Andersson - B. Ulvaeus-FransorB. Andersson - B. UlvauesB. Andersson - B. UlveausB. Andersson - B. UlveeusB. Andersson - B. UlvæusB. Andersson - B. UvaeusB. Andersson - Björn UlvaensB. Andersson - Björn UlvaeusB. Andersson - Bjørn UlvaeusB. Andersson - J. UlvaeusB. Andersson - K. UlvaeusB. Andersson - S. Anderson - B. UlvaeusB. Andersson - UlvaeusB. Andersson / B. IlvaeusB. Andersson / B. UlvaeeusB. Andersson / B. UlvaensB. Andersson / B. UlvaesB. Andersson / B. UlvaeusB. Andersson / B. UlveausB. Andersson / B. UlvãeusB. Andersson / B. UlväusB. Andersson / B. UlvæusB. Andersson / B.J. UlvaeusB. Andersson / B.UlvaeusB. Andersson / BjornB. Andersson / Björn UlvaeusB. Andersson /B. UlvaeusB. Andersson A B. UlvaeusB. Andersson And B. UlvaeusB. Andersson And Björn UlvaeusB. Andersson B. UlvaeusB. Andersson B. UlveausB. Andersson Björn UlvaeusB. Andersson Et B. UlvaeusB. Andersson Y B. UlvaeusB. Andersson \ B. UlvaeusB. Andersson y B. UlvaeusB. Andersson · B. UlvaeusB. Andersson – B. UlvaeusB. Andersson — B. UlvaeusB. Andersson — Björn UlvaensB. Andersson&B. UlvaeusB. Andersson, B. AlvaeusB. Andersson, B. B. UlvaeusB. Andersson, B. UlvaesB. Andersson, B. UlvaeusB. Andersson, B. UlvæusB. Andersson, UlvaeusB. Andersson, w-B. Ulvaeus, wB. Andersson- B. UlvaensB. Andersson- B. UlvaeusB. Andersson-B. UlvaeB. Andersson-B. UlvaensB. Andersson-B. UlvaeurB. Andersson-B. UlvaeusB. Andersson-B. UlveusB. Andersson-B. UlvæusB. Andersson-B. UvaeusB. Andersson-B.UlvaeusB. Andersson-Bjorn-UlvaeusB. Andersson-Björn UlvaeusB. Andersson-BulvaeusB. Andersson-S. Anderson-UlvalusB. Andersson-UlvaeusB. Andersson. B. UlvaeusB. Andersson./B. UlvaeusB. Andersson/ B. UlvaeusB. Andersson/ UlvaeusB. Andersson/B. UlvaeusB. Andersson/B. Ulvaeus/B. Andersson/B. UlveausB. Andersson/B. UlvæusB. Andersson/B.UlvaeusB. Andersson/B/ UlvaeusB. Andersson/B: UlvaeusB. Andersson/Bj. UlvaeusB. Andersson/Björn UlvaeusB. Andersson/P. UlvaeusB. Andersson/S. Anderson/B. UlvaeusB. Andersson/S. Andersson/B. UlvaeusB. Andersson/S. UlvæusB. Andersson/UlavaeusB. Andersson/UlvaeusB. Andersson/V. UlvaeusB. Andersson–B. UlvaeusB. Andersson—B. UlvaeusB. Andersson―B. UlvaeusB. Andesron - B. UlvaesB. Andresson - B. UlvaesB. Andresson / B. UlvaeusB. Jorn Ulvaeus - B. AnderssonB. Ulvaens & B. AnderssonB. Ulvaes / B. AndersonB. Ulvaes/B. AndersonB. UlvaeusB. Ulvaeus & B. AndersonB. Ulvaeus & B. AnderssonB. Ulvaeus & B.G.B. AnderssonB. Ulvaeus , B. AnderssonB. Ulvaeus - A. BennyB. Ulvaeus - B. AndersonB. Ulvaeus - B. AnderssonB. Ulvaeus - B.AnderssonB. Ulvaeus - S. AnderssonB. Ulvaeus / AndersenB. Ulvaeus / B. AndersonB. Ulvaeus / B. AnderssonB. Ulvaeus And B. AnderssonB. Ulvaeus B. AnderssonB. Ulvaeus · B. AnderssonB. Ulvaeus – B. AnderssonB. Ulvaeus, B AnderssonB. Ulvaeus, B. AndersonB. Ulvaeus, B. AnderssonB. Ulvaeus-B- AnderssonB. Ulvaeus-B. AndersenB. Ulvaeus-B. AndersonB. Ulvaeus-B. AnderssonB. Ulvaeus/B. AndersonB. Ulvaeus/B. AnderssonB. Ulvaeus–B. AnderssonB. Ulvaues / B. AnderssonB. Ulvaus - B. AndersonB. Ulvaus/B. AndersonB. Ulveaus - B. AnderssonB. Ulveaus-B. AndersonB. Ulveaus/B. AnderssonB. Ulveus / B. AnderssonB. Ulveus, B. AndersonB. UlvàensB. Usvaeus, B. AnderssonB. y S. AndersenB. アンダーソン, B. ユル一スB.Anderson & B.UlvaeusB.Anderson / B.UlvaeusB.Anderson, B.UlraeusB.Anderson, B.UlvaeB.Anderson, B.UlvaeusB.Anderson-B.AlvaeusB.Anderson-B.UlvaesB.Anderson-B.UlvaeusB.Anderson/B.UlvaeusB.Anderson/B.UlvausB.Andersons Un B.UlvaeussB.Andersson & B. UlvaeusB.Andersson & B.UlvaeusB.Andersson , B.UlvaeusB.Andersson - B. UlvaeusB.Andersson / B. UlvaeusB.Andersson / B.UlvaeusB.Andersson / Björn UlvaeusB.Andersson&B.UlvaeusB.Andersson, B. UlvaeusB.Andersson, B. UlveusB.Andersson, B.UlvaeusB.Andersson,B.UlvaeusB.Andersson-B. UlvaeusB.Andersson-B.UluaensB.Andersson-B.UlvaeusB.Andersson/ B.UlvaeusB.Andersson/B. UlvaeusB.Andersson/B.UlvaeusB.Andersson/B.Ulvaeus &B.Andersson/B.UlveausB.G. Andersson B.K. UlvaeusB.G. Andersson/B.K. UlvaeusB.S. Andersson - B. UlvaeisB.Ulraeus,B.AndersonB.Ulvaeus - B. AnderssonB.Ulvaeus -B. AnderssonB.Ulvaeus / B.AnderssonB.Ulvaeus, B.AnderssonB.Ulvaeus-B.AnderssonB.Ulvaeus/B. AnderssonB.Ulvaeus/B.AnderssonB.Ulvaeus~B.AnderssonB.Ulvæus/B.AndersenB.Ulvæus/B.AnderssonBarry Andersson/ Bjorn UlvaeusBennie Andersson - Björn UlvaeusBennty Andersson & Björn UlvaeusBenny & BjörnBenny Andersen Und Björn UlvaeusBenny Andersen/ Björn UlvaeusBenny Anderson & Bjoern UlvaeusBenny Anderson & Bjorn UlvaeusBenny Anderson & Bjorn UlvæusBenny Anderson & Björn UlvaeusBenny Anderson - Bjorn UlvacusBenny Anderson - Bjorn UlvaeusBenny Anderson - Bjôrn UlvaeusBenny Anderson - Björn UlvaensBenny Anderson - Björn UlvaeusBenny Anderson - Björn UlvausBenny Anderson - Björn UlveausBenny Anderson - Bjørn UlvaeusBenny Anderson - UlvaeusBenny Anderson / Bjoern UlvaensBenny Anderson / Bjoern UlvaeusBenny Anderson / Bjorn UlvaeusBenny Anderson / Bjorn UlyaeusBenny Anderson / Björn Christian UlvaeusBenny Anderson / Björn UlvaeusBenny Anderson And Bjorn UlvaeusBenny Anderson And Björn UlvaeusBenny Anderson Bjorn UlvaeusBenny Anderson Björn UlvaeusBenny Anderson Y Björn UlvaeusBenny Anderson and Bjöern UlvaeusBenny Anderson – Björn UñavaeusBenny Anderson, Bjoern UlvaeusBenny Anderson, Bjorn UlvaeusBenny Anderson, Bjorn UlvausBenny Anderson, Bjöern UlveausBenny Anderson, Björn UlvaeusBenny Anderson, UlvaeusBenny Anderson-Bjorn UlvaeusBenny Anderson/B. Jom/UlvaeusBenny Anderson/Benny UlvacusBenny Anderson/Bjorn UlvaeusBenny Anderson/Bjorn UlvauesBenny Anderson/Björn UlvaeusBenny Anderson/UlvaeusBenny Andersoon, Björn UlvaeusBenny Anderssom / Björn UlaeusBenny Andersson & Bjoern UlvaeusBenny Andersson & Bjorn UlvaeusBenny Andersson & Bjorn Ulvaeus;Benny Andersson & Bjorn UlvalusBenny Andersson & Bjorn UlwaeusBenny Andersson & Björn UlvaesBenny Andersson & Björn UlvaeuBenny Andersson & Björn UlvaeusBenny Andersson & Björn Ulvaeus'Benny Andersson & Björn UlvæusBenny Andersson & Björn-B. UlvaeusBenny Andersson & Bjørn UlvaeusBenny Andersson & Börn UlvaeusBenny Andersson &Björn UlvaeusBenny Andersson + Björn UlvaeusBenny Andersson , Björn UlvaeusBenny Andersson - Bjorn UlvaeusBenny Andersson - Björn UlvaeusBenny Andersson - Björn UlvauesBenny Andersson - Björn VlvaeusBenny Andersson - Bjørn UlvaeusBenny Andersson - Bjørn UlveausBenny Andersson / Bjoern UlvaeusBenny Andersson / Bjorn UlvaeusBenny Andersson / Björn UlvaeusBenny Andersson / Bjørn UlveausBenny Andersson / Buorn UlvaeusBenny Andersson A Björn UlvaeusBenny Andersson And Bj rn UlvaeusBenny Andersson And Bjoern UlvaeusBenny Andersson And Bjorn UlvaeusBenny Andersson And Björn Kristian UlvaeusBenny Andersson And Björn UlvaeusBenny Andersson And Björn Ulvaeus'Benny Andersson And Björn UlvæusBenny Andersson Bjoern UlvaeusBenny Andersson Bjorn UlvaeusBenny Andersson Bjöern UlvaeusBenny Andersson Björn UlvaeusBenny Andersson E Björn UlvaeusBenny Andersson E Björn UlvãeusBenny Andersson I Björn UlvaeusBenny Andersson Och Björn UlvaeusBenny Andersson Och Björn UlvæusBenny Andersson Og Björn UlvaeusBenny Andersson Og Björn UlvæusBenny Andersson Og Bjørn UlvaeusBenny Andersson Y Bjorn UlvaeusBenny Andersson Y Björn UlvaeusBenny Andersson and Björn UlvaeusBenny Andersson and Björn UlvæusBenny Andersson y B. UlvaeusBenny Andersson y Bjorn UlvaeusBenny Andersson y Bjorn. UlvaeusBenny Andersson y Björn UlvaeusBenny Andersson și Björn UlvaeusBenny Andersson – Björn UlvaeusBenny Andersson&Björn UlvaeusBenny Andersson+Björn UlvaeusBenny Andersson, Bjoern UlvaeusBenny Andersson, Bjoern UlvausBenny Andersson, Bjorn UlvaeusBenny Andersson, Björn UlvaeusBenny Andersson, Björn Ulvaeus,Benny Andersson, Björn UlveausBenny Andersson, Björn UlveusBenny Andersson, Björn UlvæusBenny Andersson, Bjørn UlvaeusBenny Andersson, Börn UlvaeusBenny Andersson,Björn UlvaeusBenny Andersson-B. UlvaeusBenny Andersson-Bjoern UlvaeusBenny Andersson-Bjorn UlvaeusBenny Andersson-Björn UlvaeuBenny Andersson-Björn UlvaeusBenny Andersson-Björn UlvaneusBenny Andersson-Bjørn UlvaeusBenny Andersson/ Bjorn UlvaeusBenny Andersson/ Björn UlvaeusBenny Andersson/ Björn UlvæusBenny Andersson/Bjoern UlvaeusBenny Andersson/Bjorn UlvaesBenny Andersson/Bjorn UlvaeusBenny Andersson/Bjõrn UlvaeusBenny Andersson/Björn UlvaeusBenny Andersson/Björn UlveausBenny Andersson/Bjørn UlvaeusBenny Andersson–Björn UlvaeusBenny Andesson & Bjorn UlvaeusBenny Andesson & Björn UlvaeusBenny Andresson / Bjorn UlvaeusBenny Goeran Bror Andersson, Bjoern K UlvaeusBenny Goeron Andersson/Bjoern UlvaeusBenny Goran Bror Anderson, Bjoern K UlvaeusBenny Goran Bror Andersson & Bjoern K. UlvaeusBenny Goran Bror Andersson / Bjoern K UlvaeusBenny Goran Bror Andersson / Bjoern K. UlvaeusBenny Goran Bror Andersson / Björn K. UlvaeusBenny Goran Bror Andersson / Ulvaeus K. BjoernBenny Goran Bror Andersson, Bjoern K. UlvaeusBenny Goran Bror Andersson, Bjorn K. UlvaeusBenny Goran Bror Andersson, Björn K. UlvaeusBenny Goran Bror Andersson/Bjoern K. UlvaeusBenny Göran Bror Andersson & Bjoern K. UlvaeusBenny Göran Bror Andersson Björn K UlvaeusBenny S. Anderson & Bjorn UlvaeusBenny Sigvard Anderson/Bjoern K UlvaeusBjoern K. Ulvaeus / Benny Goran Br AndersonBjoern K. Ulvaeus, Benny Goran AnderssonBjoern K. Ulvaeus, Benny Goran Bror AnderssonBjoern Kristian Ulvaeus / B. AnderssonBjorn & BennyBjorn And BennyBjorn Andersson-Bjorn UlvaeusBjorn Kristian Ulvaeus, Goran Benny AnderssonBjorn Ulvaes & Benny AndersonBjorn Ulvaeus & Benny AndersonBjorn Ulvaeus & Benny AnderssonBjorn Ulvaeus - Benny AnderssonBjorn Ulvaeus / Benny AnderssonBjorn Ulvaeus And Benny AndersonBjorn Ulvaeus And Benny AnderssonBjorn Ulvaeus, Benny AnderssonBjorn Ulvaeus/Benny AnderssonBjorn Ulveaus, Benny AndersonBjorn Uvaeus/Benny AnderssonBjorn, AndersenBjörn & BennyBjörn - BennyBjörn A./Björn U.Björn And BennyBjörn AnderssonBjörn K. Ulvaeus, Benny Goran Bror AnderssonBjörn Kristian Ulvaeus & Benny AnderssonBjörn Ulvaeus & Benny AndersonBjörn Ulvaeus & Benny Andersson'Björn Ulvaeus + Benny AnderssonBjörn Ulvaeus , Benny AnderssonBjörn Ulvaeus - Benny AndersonBjörn Ulvaeus - Benny AnderssonBjörn Ulvaeus / Benny AndersonBjörn Ulvaeus / Benny AnderssonBjörn Ulvaeus And Benny AnderssonBjörn Ulvaeus Benny AnderssonBjörn Ulvaeus E Benny AnderssonBjörn Ulvaeus Och Benny AnderssonBjörn Ulvaeus and Benny AnderssonBjörn Ulvaeus och Benny AnderssonBjörn Ulvaeus És Benny AnderssonBjörn Ulvaeus, Bennie AnderssonBjörn Ulvaeus, Benny AndersonBjörn Ulvaeus, Benny AnderssonBjörn Ulvaeus, Benny AndressonBjörn Ulvaeus, Benny Goran AnderssonBjörn Ulvaeus- Benny AnderssonBjörn Ulvaeus-Benny AnderssonBjörn Ulvaeus/Benny AndersonBjörn Ulvaeus/Benny AnderssonBjörn Ulväus, Benny AnderssonBjörn Ulvæus & Benny AnderssonBjørn Ulvaeus - Benny AnderssonBjørn Ulvaeus And Benny AndersonBjørn Ulvaeus/Benny AnderssonBjørn,Benny,Agnetha & FridaBror Andersson Benny Goran K - Ulvaeus Bjoern KChessG. B. Andersson Björn B. K. UlvaeusJ. Anderson/B. UlvaeusJ. UlvaeusS. Anderson-B. UlvaeusS. Andersson/B. UlvaeusU&B Anderson, A. UlvaesUlraeus & AndersonUlvacius/AnderssonUlvaens, AnderssonUlvaes / AnderssonUlvaes, AndersonUlvaes, AnderssonUlvaes/AnderssonUlvaess / AnderssonUlvaeusUlvaeus & AnderssonUlvaeus - AndersonUlvaeus - AnderssonUlvaeus - B. AnderssonUlvaeus / AndersonUlvaeus / AnderssonUlvaeus And AnderssonUlvaeus AnderssonUlvaeus Bjoernk / Andersson Benny Goran BrorUlvaeus Björn K. - Andersson Benny Goran BrorUlvaeus, AndersonUlvaeus, AnderssonUlvaeus, B. AnderssonUlvaeus, Björn - Benny, AnderssUlvaeus- AnderssonUlvaeus-AndersonUlvaeus-AnderssonUlvaeus-B. AnderssonUlvaeus/AndersonUlvaeus/AnderssonUlvaeus/B. AnderssonUlvaeus–AndersonUlveaus/AndersonUlveus / AndersonUlväeus, AndersonUlväus-AndersonUlvæus & AnderssonUlvæus - AndersonUrens & AnderssonV. Andersson-B. UlvaeusVlavaeus-AnderssonБ. Андерсон - Б. УльвесБ. Андерсон - Б. УльвеусБ. Андерсон, Б. УльвеусБ. Андерсон—Б. УлвеусБ. Андерсън, Б. ВивенсБ. Андерсън, Б. ВивиенсБ. УлвеусБ. Улвеус-Б. АндерссонБ. Ульвеу, Б. АндерссонБ. Ульвеус, Б. АндерссонБ.Андерсон - Б.УлваеусБ.Улвеус - Б. АндерссонБ.Улвеус, - Б. АндерссонС. Щеревビヨルンとベニービヨルン&ベニーBenny AnderssonBjörn Ulvaeus + +975269Giacomo RossiItalian 'poet', translator and librettist who wrote librettos for [a=Georg Friedrich Händel] between 1710 and 1729Correcthttp://en.wikipedia.org/wiki/Giacomo_RossiG. RossiRossiג'יאקומו רוסי + +975354Martial CarcélèsNeeds VoteCarcelCarcelesCarcelésCarcélesM. CarcelasM. CarcelesM. CarcelisM. CarcellesM. CarcellisM. CarcelèsM. CarcélèsM. CarcélésM. CarselèsM. CercelesM. CáceresM. CárcelesM. GarcélèsMartialMartial CarcelesMartial CarcellesMartial CarcelèsMartial CarcenesMartial CárcelesAllan Mac KayMathieu CarlèsPhil Andelman + +975875Gregory BarberAmerican bassoonist, born in 1952 and died on July 4, 2012.Needs VoteGregory K. BarberGregory Kyle BarberSan Francisco Symphony + +976045Bystrík RežuchaBystrík RežuchaSlovak conductor. + +Born January 14, 1935 in Bratislava (former Czechoslovakia, presently Slovakia). Principal conductor for the [a=Slovak Philharmonic Orchestra] from 1984 to 1989.Needs Votehttp://www.hc.sk/en/hudba/osobnost-detail/620-bystrik-rezuchaB RezuchaB. RezuchaB. RežuchaBrystrik RezuchaBystik RezuchaBystnik RezuchaBystric RezuchaBystrich RezuchaBystrick RezuchaBystrik ReuuchaBystrik RezuchaBystrik RežuchaBystrík ReuchaBystrík RezuchaBystrík Režucha, Zasl. Um.Bystrík rezuchaBytrik RezuchaRezuchaビストリック・レズカSlovak Radio Symphony OrchestraSlovak Philharmonic Orchestra + +976128Martin FröstAnders Martin FröstSwedish clarinetist and conductor, born 14 December 1970 in Uppsala, Sweden. He grew up in Sollefteå and Sundsvall and lives in Stockholm. He works with orchestras and conductors around the world. Martin Fröst is also a chamber musician and is the artistic director of Mora Vinterfest and Stavanger International Chamber Music Festival. + +He is the conductor of Svenska Kammarorkestern, Örebro (Swedish Chamber Orchestra) since season 2019/2020. + +He is the brother of [a10931804].Needs Votehttp://www.martinfrost.sehttps://en.wikipedia.org/wiki/Martin_Fr%C3%B6sthttps://sv.wikipedia.org/wiki/Martin_Fr%C3%B6stFröstM. FröstDeutsche Kammerphilharmonie Bremen + +976462Herb SargentHerbert SupowitzAmerican composer and guitar player and TV writer & producer for such comedy shows. +Born July 15, 1923 in Philadelphia, Pennsylvania, USA. +Died May 6, 2005 in Manhattan, New York City, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Herb_Sargenthttps://www.imdb.com/name/nm0765109/https://oneforthetable.com/alan-zweibel/herb-sargenthttps://www.wgaeast.org/wp-content/uploads/sites/4/2021/10/OW24-Herb-Sargent.pdfHerb SergantHerb SergeantHerbert SargentWoody Herman And His Orchestra + +976680Zdeněk PulecZdeněk PulecCzech trombonist, vocalist, band leader. +Born 9 September 1936 in Prague (former Czechoslovakia), died 12 June 2010 in Prague. +Needs Votehttp://cs.wikipedia.org/wiki/Zdeněk_Pulechttp://www.opustrombonum.wz.cz/zdenekpulec.htmhttp://www.ceskyhudebnislovnik.cz/slovnik/index.php?option=com_mdictionary&action=record_detail&id=5430Prof. Zdenek PulecPulecZ. PulecZ.PulecZdenec PulecJazz CelulaSHQLubomír Pánek SingersOrchester InternationalHarry Macourek String OrchestraVáclav Zahradník OrchestraKühn Mixed ChoirOrchester der Bayreuther FestspieleOrchester Der Staatsoper HamburgVáclav Zahradník Big BandVáclav Hybš OrchestraCzechoslovak Radio Jazz OrchestraVáclav Zahradník And His East All Stars BandKarel Vlach OrchestraMetronom (2)Orchestr Karla KrautgartneraReduta KvintetPrague Radio Symphony OrchestraLadislav Bezubka And His SoloistsCzechoslovak All Star BandPrague Brass SoloistsIvo Preis TrioZdeněk Barták Se Svým OrchestremOrchestr Klubu Dokonalé Zdravovědy Jana Boublíka Ze ŽluticZdeněk Pulec ComboJan Konopásek Se Svou SkupinouKarel Růžička + 9Czech Brass EnsemblePulec Oktet + +977182Simone YoungSimone Margaret YoungAustralian conductor, born 2 March 1961 in Sydney, Australia.Needs Votehttps://www.simoneyoung.com/https://www.facebook.com/SimoneYoungConductorhttps://en.wikipedia.org/wiki/Simone_YoungBergen Filharmoniske Orkester + +977192Kirsten WilliamsClassical violinistNeeds VoteSydney Symphony Orchestra + +977281Richard Harris (5)Richard 'Dicky' HarrisAmerican jazz trombonist. +Born : November 15, 1918 in Montgomery, Alabama. + +Dicky played with : Earl Hines, Erskine Hawkins, J. C. Heard, Joe Thomas, Lucky Millinder, Arnett Cobb, Illinois Jacquet, Buck Clayton, Don Covay (soul), James Brown, Sam Cooke, Ruth Brown and others. +Needs VoteD. HarrisDick HarrisDickie HarrisDicky HarrisHarrisR.D. HarrisRich. HarrisRichard "Dickie" HarrisRichard HarrisErskine Hawkins And His OrchestraEarl Hines And His OrchestraSy Oliver And His OrchestraJoe Thomas & His Orchestra + +977445Johann WalterJohann Blankenmüller, also Johannes WalterGerman Lutheran composer and poet during the Reformation period, born 1496 in Kahla, Thuringia and died 25 March 1570 in Torgau, Saxony. He edited the first Protestant hymnal, Geystliches gesangk buchleyn, published in 1524, with a foreword by [a=Martin Luther (3)].Needs Votehttps://en.wikipedia.org/wiki/Johann_WalterGeorg BlanckenmüllerJ. WalterJ. WaltherJ.WalterJoh. WalterJoh. WaltherJohan WalterJohan WaltherJohann WaltherJohannes WalterJohannes WaltherWalterWaltherStaatskapelle Dresden + +977673Derek James (2)Derek JamesA trombone player born in Llandybie near Ammanford, South Wales, in 1929. He began playing the trombone in the Ammanford Brass Band at the age of thirteen, and won the Trombone Solo Competition at the Welsh National Eisteddfod three years in succession. He joined the Regimental Band of HM Welsh Guards in 1952, whilst studying at the Royal College of Music. In 1955, he became a member of Covent Garden's Royal Opera House Orchestra, where he stayed for eight years. In 1964 he joined the London Philharmonic Orchestra, and in 1981, became a member of the Royal Philharmonic Orchestra. He died on New Year’s Eve 2014. + +[b]For the American trombonist, see [a3572742].[/b]Needs VoteLondon Philharmonic OrchestraRoyal Philharmonic OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent Garden + +977674Andrew Williams (10)Andrew WilliamsA viola player with the Royal Philharmonic Orchestra.Needs VoteA. WilliamsRoyal Philharmonic OrchestraEnglish Chamber OrchestraNorthern Sinfonia + +977801Ellen WegnerGerman classical harpist, born in Burgwedel bei Hannover. She studied in Hannover, Lausanne and Geneva, and plays regularly with various orchestras and ensembles, like the [a=Ensemble Modern] and the [a1712801].Needs Votehttp://www.hans-joerg-wegner.de/biografien/ellen_wegner.htmEnsemble ModernDeutsche Kammerphilharmonie BremenCon Voce + +977853Arnett SparrowJazz trombonist.Needs VoteA. SpanowArnet SpanowArnet SparrowArnett "Nick" SparrowArnett SpanowArnette SparrowIllinois Jacquet And His Orchestra + +977990Anikó SzathmaryAnikó Katharina SzathmáryClassical violinistNeeds VoteAnikó Katharina SzathmaryAnikó Katharina SzathmáryOrchester der Bayreuther FestspieleStaatsphilharmonie Rheinland-Pfalz + +978006Eiichi ChijiiwaJapanese classical violinist, born 1969 in Tokyo.Correcthttp://www.chijiiwa.com/千々岩英一Orchestre De ParisEnsemble Court-CircuitQuatuor Diotima + +978039David GliddenHistoric and modern ViolaNeeds Votehttps://davidglidden.eu/Le Concert Des nationsLes Musiciens Du LouvreLe Cercle De L'HarmonieOpera FuocoHarmonie UniverselleSalzburger-Haydn Quintett + +978175Paul AngererPaul Leopold Ferdinand AngererAustrian violist, conductor, composer and radio host (* 16 May 1927 in Vienna, Austria; † 26 July 2017 in Vienna, Austria). +In addition to the viola, he also played the violin, organ, harpsichord and recorder. Together with his son [a3051303] he founded [a3642646] in 1982.Needs Votehttps://dx.doi.org/10.1553/0x0001f6f8https://en.wikipedia.org/wiki/Paul_AngererAngerer "der ältere"P. AngererPaul Angerer und sein EnsembleП. Ангерерパウル・アンゲラーVienna Pro Musica OrchestraSüdwestdeutsches KammerorchesterConcilium MusicumChamber Orchestra of the Vienna State Opera + +978241Sid DiamondSidney Roy K. DiamondRapper from Ōtara, South Auckland, New Zealand.Needs Votehttps://www.instagram.com/siddiamondS DiamondS. DiamondS.DiamondSidney DiamondYoung SidSmashproof + +978332Michael RaucheisenMichael RaucheisenMichael Raucheisen (born: 9 February 1889, Rain, Swabia, Germany - died 27 May 1984, Beatenberg, Switzerland) was a German pianist and song accompanist. He married Hungarian soprano [a=Maria Ivogün] in 1933. + +He was most active before the end of the Second World War, coming out of retirement for a 1958 tour with [a=Elisabeth Schwarzkopf], before once more returning to private life in Switzerland. + +The bulk of his recordings are from the pre-stereo era. The conducting credits are highly suspect (especially those from after 1984!), and are often given on releases involving known fictitious conductors like [a=Henry Adolph]: please use [a=Michael Raucheisen (2)] in such instances. Needs Votehttps://en.wikipedia.org/wiki/Michael_Raucheisenhttps://adp.library.ucsb.edu/names/103856M. RaucheisenMichael RaucheiseinMichael RaucheissenMichele RaucheisenProfessor Michael RaucheisenRaucheisenМ. РаухайзенМихаель РаухайзенМихаэль РаухайзенМихаэль РаухаузенEdith-Lorand-Trio + +978333Jerzy SemkowJerzy SemkowPolish born conductor of French citizenship, born 12 October 1928 in Radomsko, Poland and died 23 December 2014 in Switzerland.Correcthttp://www.slso.org/musicians/semkow.htmhttp://www.transartuk.com/semkow/George SemkovJ. SemkovJ. SemkowJerzego SemkowaJerzy DemkowJerzy SemkovJerzy SjemkovSemkowДжерзи Семковイェジー・セムコフジェルジー・セムコー + +978421Solveig KringlebotnSolveig Kringlebotn (born June 4, 1963), also known professionally as Solveig Kringelborn, is an internationally-known Norwegian operatic soprano.Needs Votehttp://www.solveigkringelborn.com/English.htmhttp://en.wikipedia.org/wiki/Solveig_KringlebotnKringlebotnSolveig KringelbornSolveig Kringleborn + +978428Carl HaffnerKarl HaffnerGerman playwright (Königsberg, Preußen, 8 November 1804 - Vienna, 29 February 1876). +He co-wrote the libretto to [a=Johann Strauss Jr.]'s operetta "Die Fledermaus".CorrectC. HaffnerHaffnerHaleveyHalevyHoffnerK. HaffnerKarl Haffner + +978494Ed PowellEdward Verne PowellFlute, saxophone, and clarinet player and college instructor (born March 16, 1903 in Kansas City, Missouri – died February 1986 in Marstons Mills, Massachusetts) + +Ed Powell was the second child and oldest son of famous New York flute builder Verne Q. Powell (1879-1968) of the Powell Flute Company. He graduated with a Bachelor of Science from Tufts College near Boston in 1927. He became a much-in-demand free-lance flutist playing with [a=The Alec Wilder Octet], the CBS Symphony, and on the Voice of Firestone radio show. He also played both flute and at times also clarinet, alto, and baritone saxophone with big bands like [a=Paul Whiteman And His Orchestra] (1935), [a=Sid Phillips And His Orchestra] (1938), [a=Claude Thornhill And His Orchestra] (1937-1939) and in Mildred Bailey's orchestra (1940). + +In 1943, Ed Powell patented the "Chromette", a modified soprano recorder with a three-octave range made of wood or bakelite with metal reinforcement rings and mouthpiece and fitted with a simplified Boehm system keywork (US Patent #2330379). Intended for use in schools as a preparatory instrument for future flute players, the instrument did not catch on because its precision mechanism, fit, and finish made it much more expensive than other beginner instruments. Powell built it only for a short time in 1943 and then again between 1950-1952, after a trademark dispute had forced him to rename the recorder the "OrKon." + +Powell's 1951 composition "Theme For Cynthia" was recorded by [a=Harry James And His Orchestra], [a=Charlie Barnet And His Orchestra], and [a=Victor Young And His Singing Strings]. + +In the early 1970s, Powell served as a music instructor on the faculty of the University of Vermont.Needs Votehttps://recorderhomepage.net/history/innovations-in-recorder-design/https://music.yale.edu/browse-collection/chromette-31591986https://hoodmuseum.dartmouth.edu/objects/2002.1.34132https://www.uvm.edu/~rgweb/zoo/archive/catalogue/7172cat_ug.pdfhttps://www.worldradiohistory.com/Archive-Radio-Vision/Radio-Vision-1947-Aug-9.pdfE. PowellEddie PowellEddy PowellEdward PowellPowellPaul Whiteman And His OrchestraClaude Thornhill And His OrchestraRay Ellis And His OrchestraThe Alec Wilder Octet + +978698Michele EatonClassical soprano.CorrectMichèle A. EatonMichèle EatonPomeriumRussian Chamber Chorus Of New York + +978975Daniel DruckmanAmerican percussionist, born in New York City. He's the son of [a91504]. He joined the New York Philharmonic in 1991.Needs VoteDan DruckmanDanny DruckmanNew York PhilharmonicSpeculum MusicaeNew York New Music EnsembleThe Prism OrchestraMosaic (18)The American Brass Quintet Brass Band + +978979Erica SharpAmerican violinist, born 1927 in Germany.Needs VoteSan Francisco Symphony + +979074Herbert SpencerTenor sax and clarinet player, leader.Needs VoteHerb SpencerHerbie SpencerSpencerThe Dorsey Brothers OrchestraHerbert Spencer And His Orchestra + +979192Friedrich-Carl ErbenGerman classical violinist.Needs VoteFriedrich Karl ErbenFriedrich-Karl ErbenDas Orchester Der Staatsoper BerlinErben-Quartett + +979201Oskar MichallikOskar Michallik (born 19 January 1923) is a German clarinetist.Needs VoteMichallikオスカー・ミヒャリクStaatskapelle BerlinOrchester Der Komischen Oper BerlinNorddeutsche Philharmonie Rostock + +979331Jozef KopelmanConductor & classical violinist born in Ukraine.Needs VoteJ. KopelmanJosef KopelmanJosef KopelmannJozef KopelmannKopelmanSlovak Chamber Orchestra + +979429Alfons FügelAlfons Fügel (* 10. August 1912 in Bonlanden; † 10. October 1960 in Esslingen) was a German tenor vocalist. He became famous for his roles at the Bavarian State Opera from 1940. After WWII, Fügel could not continue his carreer. In 1950 he opened a café in Bonlanden. Later the road, where his café was located, was called after him "Alfons-Fügel-Straße".Needs VoteA. Fügel + +979465Michael Lanner Mit Seinen Wiener Walzer-SolistenCorrectMichael Lanner And His OrchestraMichael Lanner E Sua OrquestraMichael Lanner En Zijn SolistenMichael Lanner Et Ses Solistes ViennoisMichael Lanner Et Son Orchestre ViennoisMichael Lanner M. S. Wiener Tanz-SolistenMichael Lanner M. S. Wiener Walzer-SolistenMichael Lanner Med Sitt OrkesterMichael Lanner Mit Seinem Solisten-OrchesterMichael Lanner Mit Seinen SolistenMichael Lanner Mit Seinen Tanz-SolistenMichael Lanner Mit Seinen Tanz-StreichsolistenMichael Lanner Mit Seinen TanzsolistenMichael Lanner Og Hans Wienervalse-ensembleMichael Lanner U. S. SolistenMichael Lanner Und Seine SolistenMichael Lanner Und Seinen Wiener-Walzer-SolistenMichael Lanner Und Seinen Wiener-Walzer-Solisten*Michael Lanner mit seinem Solisten-OrchesterMicheal Lanner Mit Seinen Tanz-SolistenMichael Lanner + +979554Bengt ForsbergBengt Erik ForsbergSwedish pianist and organist, born July 26, 1952 in Edsleskog parish, Älvsborg county. + +He is the son of parish priests Sven Forsberg and Ingrid, born Bexell. He was educated at the Gothenburg Academy of Music, where he graduated as an organist in 1975 and a soloist degree in piano in 1978. He is known for his collaboration with Anne Sofie von Otter, which he accompanied in a large number of concerts and recordings. He has also done many concerts and CD recordings with cellist Mats Lidström and violinist Nils-Erik Sparf. Bengt Forsberg was elected in 1997 as a member of the Royal Academy of Music. + +In 2019, he was awarded the Medal for the Promotion of Music.Needs Votehttp://en.wikipedia.org/wiki/Bengt_Forsberghttp://www.hfam.se/Artister/BFs.htmlForsbergBengt Forsberg & FriendsTango Clásico + +979750Lonnie ShawAmerican jazz saxophonist.Needs VoteLionel Hampton And His Orchestra + +979751Andrew McGheeAndrew "Andy" McGhee (born November 3, 1927, Wilmington, North Carolina, USA – died October 12, 2017) was an American tenor saxophonist and educator.Needs Votehttps://en.wikipedia.org/wiki/Andy_McGheeAndrew McGeeAndyAndy Mc GheeAndy McGheeAndy McgheeMcGheeWoody Herman And His OrchestraLionel Hampton And His OrchestraWoody Herman And The Swingin' Herd + +979765Billy HodgesWilliam C. Hodges.American jazz trumpeter. +Born : August 04, 1928 in Charlotte, North Carolina. +Died : June 01, 2003 in Las Vegas, Nevada. + +Billy worked with Frank Sinatra, Dean Martin, Sammy Davis Jr. , Merv Griffin, among others. +Needs VoteBill HodgesSSgt Bill HodgesBenny Goodman And His OrchestraRay McKinley And His OrchestraSal Salvador And His Orchestra + +979766Ernie MauroAmerican saxophonist. He also plays oboe, English horn, clarinet, bass clarinet & saxophone.Needs VoteBenny Goodman And His OrchestraNo Strings Sextet + +980033Christian BadzuraGerman producer and arrangerCorrectBadzuraC.B. + +980145Emma LockEmma Louise LockSinger, songwriter & musician from UK. +Contact: emma@emmalock.com +Correcthttp://www.emmalock.com/http://www.myspace.com/musicemmalockhttp://www.myspace.com/singersongwriteremmalockhttp://twitter.com/EmmaLockmusicE. LouiseE.L. LockEmma Louise Lock + +980181Johannes VikJohannes WikNorwegian harpist.Needs VoteJohannes WikBit 20 EnsembleBergen Filharmoniske Orkester + +980209Bruno KrattliTrumpeterNeeds VoteKrattli BrunoOrchestre National De L'Opéra De ParisQuoi De Neuf DocteurLes Cuivres Français + +980231Sherman WaltSherman Abbott WaltAmerican bassoonist (Virginia, Minnesota, August 22, 1923 - October 26, 1989). Principal bassoon in the Boston Symphony Orchestra, 1953-1989.Needs Votehttp://en.wikipedia.org/wiki/Sherman_Walthttps://www.stokowski.org/Principal_Musicians_Boston_Symphony.htm?#Bassoon_Index_Point_Boston Symphony OrchestraChicago Symphony OrchestraBoston Symphony Chamber Players + +980566Алексей СурковАлексей Александрович СурковAleksey Aleksandrovich Surkov + +13 October 1899, Yaroslavl Province, Russian Empire — 14 June 1983, Moscow, USSR. +Russian Soviet poet and literary critic, public figure, teacher. Journalist, war correspondent.Needs Votehttps://en.wikipedia.org/wiki/Alexey_SurkovA. SourkovA. SurkovA. SurkovsA. SurkowA. SurtovaAleksei SurkovAlekszej SzurkovAlexei SurkovAlexej Alexandrovic SurkovAlexej SurkowAlexey SurkovSukowSurkovSurkowV. SurkovА. СуриковА. СурковА. СурковаА.А.СурковА.СурковСурковСурков Алексейאלכסיי סורקוב + +980725Johnny PotokerAmerican jazz pianist.Needs VoteJoe PotokerJohn PotakerJohn PotokerTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenThe New Glenn Miller OrchestraAll Star Alumni OrchestraJohnny Potoker QuartetThe Charlie Shavers QuintetJohnny Potoker Orchestra & Chorus + +980864Joe Rodriguez (3)Trumpet playerNeeds VoteJoe RodraguezWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdDallas Jazz Orchestra1:00 O'Clock Lab Band + +980987Kenneth WeissHarpsichordist and organist.Needs VoteLes Arts FlorissantsRicercar ConsortCapriccio StravaganteMusica Alchemica + +981419Teddy Buckner (2)Theodore Guy BucknerAmerican jazz saxophonist (alto, soprano), born December 14, 1913, St. Louis, Missouri, died April 12, 1976, Detroit, Michigan +Brother of [a149051].Needs Votehttp://en.wikipedia.org/wiki/Ted_Bucknerhttps://www.allmusic.com/artist/teddy-buckner-mn0000016632/biographyhttps://adp.library.ucsb.edu/names/201254BucknerT. BuchnerT. BucknerTedTed BuchnerTed BucknerTed Buckner (2)Theodore "Ted" BucknerTheodore BucknerJimmie Lunceford And His OrchestraThe Hastings Street Jazz ExperienceJames Tatum Trio PlusTed Buckner And His Orchestra + +981549Arthur LamarreFrench cellist.Needs VoteOrchestre Des Concerts LamoureuxOrchestre De La Garde Républicaine + +981660Thomas BenderGerman classical trombonist.Needs VoteEnsemble ModernBundesjugendorchester + +981665Hans-Jürgen KrumstrohHans-Jürgen Krumstroh (born 1966) is a German hornist.Needs VoteHans Jürgen KrumstrohStaatskapelle BerlinGerman BrassMDR SinfonieorchesterLeipziger Hornquartett + +981666Michael Gross (7)German trumpeter and composer (* 1967 in Illingen/Saar), co-founder of [l187756] in 2001. He worked as an artistic director at the theater and for orchestras, also as singer.Needs Votehttp://www.herrgross.de/HerrGross.htmlMichael GroßEnsemble ModernKlangforum WienSwim Two Birds + +981747Mats LidströmSwedish cellist, born in Stockholm in 1959, currently living in London. Next to performing and composing, he is teaching as appointed professor at the Royal Academy of Music. He was Principal Cello with the [a=Royal Philharmonic Orchestra].Needs Votehttps://web.archive.org/web/20230605025914/http://www.matslidstrom.com/https://en.wikipedia.org/wiki/Mats_Lidstr%C3%B6mLidstromLidströmMats LidstormMats LidstromRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe London Cello Sound + +982018Jeffrey KhanerJeffrey KhanerClassical flutist. Canadian-born Jeffrey Khaner currently serves as principal flute of [url=http://www.discogs.com/artist/Philadelphia+Orchestra%2C+The]The Philadelphia Orchestra[/url]. Previously, he was principal flute of the [url=http://www.discogs.com/artist/Cleveland+Orchestra%2C+The]Cleveland Orchestra[/url] (1982-1990). He is also a member of the [a=World Orchestra For Peace] and a founding member of the Syrinx Trio.Needs Votehttp://www.iflute.com/The Philadelphia OrchestraThe Cleveland Orchestra + +982091Allan BeutlerSaxophonistNeeds VoteAl BeutelAl BeutlerAlan BeatlerAlan BeutlerAlen BeutierAllan BeutierAllen BeutlerBeutlerStan Kenton And His OrchestraGerald Wilson OrchestraGator CreekThe College All-StarsDallas Jazz OrchestraStan Kenton's Melophoneum BandThe Lou Fischer Big Band + +982364Vincent AucanteClassical viola player, born in Paris.CorrectV. AucanteGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +982403Don MichaelsAmerican jazz drummer.Needs VoteMichaelsWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +982664Bill DepewJazz saxophonist.Needs VoteB. DepewBill De PewBill DePewDe PewDePewDick DePewPaul DePewW. De PewW. DePewW. DepewWilliam De PewWilliam DePewWilliam DepewWm. Depewde PewBenny Goodman And His OrchestraOpie Cates And His Orchestra + +983107Roland KunzRoland Kunz (born 18 September 1960) is a German tenor & countertenor vocalist. +In 1998 he founded [a=Orlando] with [a=Andreas Scholl], band which blends electronic and classical music in an attempt to create a new style which he calls „Neue Vergangenheit“ (NewPast). + +Not to be confused with the German baritone, bass vocalist [a941849] (1923 - 1987).Needs Votehttp://de.wikipedia.org/wiki/Roland_Kunzhttps://www.facebook.com/roland.kunz.12Orlando (Roland Kunz)OrlandoCollegium VocaleKammerchor StuttgartBalthasar-Neumann-Chor + +983448Salvatore StellitaNeeds VoteA. StellitaEstellitaF. SteguitaF. StellitaS. EstellitaS. SpellitaS. StellinaS. StellitaS. Stellita-MarralesS. StellittaS. TellitaS.StellitaSalvatore StellinaSalvatori StellitaStellitaStellita MarralesStellita S.StellitoС. СтелитаAldo Stellita + +983595Georg Christian SchemelliGeorg Christian SchemelliGerman baroque cantor and author of a religious songbook. Born either 1676 or 1678 or 1680 in Herzberg, died 5 March 1762 in Zeitz.Correcthttps://de.wikipedia.org/wiki/Georg_Christian_SchemelliG. C. SchemelliG. Chr. SchemelliG.Chr. SchemelliGeorg Christian SchemmeliGeorge Christian SchemelliSchemellSchemelliSchemelli GesangbuchГеорг Христиан Шимелли + +983603Roman ZeilingerConductor and organist.Needs VoteBruckner Orchestra Linz + +983605Karel BoeschotenKarel BoeschotenKarel Boeschoten (born 1955 in Hilversum) is a Dutch -Swiss violinist and composer.Needs Votehttp://www.karelboeschoten.comK.B.ConcertgebouworkestCamerata BernEuropean Chaos String QuintetIrina & DrumArtichic Salon EnsembleArs PreciosaEuropean Chamber Ensemble + +983609Josef GazsiClassical violinist.CorrectGazsi JosefTonhalle-Orchester Zürich + +983622Oliver BensmannOliver BensmannNeeds Votehttps://www.facebook.com/OSWRevilO/O. BensmannRevil OOSW (2)RavelabPlug 'N' PlayFrontline Of TranceSecret BaseUnique (2) + +983624Jeremy WestClassical cornett & trumpet instrumentalist. Since 1991, Jeremy West has directed a "[i]Christopher Monk Instruments[/i]" workshop that manufactures cornetts and serpents, originally established by [a=Christopher Monk] (1921—1991). He employed [b][url=/artist/16395565]Keith Rogers[/url][/b] (1943—2008) and currently [b][a=Nicholas Perry][/b] as his master builders.Needs Votehttps://www.jeremywest.co.uk/New London ConsortThe Parley Of InstrumentsThe SixteenThe Amsterdam Baroque OrchestraThe Consort Of MusickeGabrieli PlayersThe King's ConsortBaroque Brass Of LondonHis Majestys Sagbutts And CornettsLondon Pro MusicaThe Guildhall WaitsCapella De La Torre + +983759Stephen FurtadoTrumpet/flugelhorn player.Needs VoteSteve FortadoSteve FurtadoThe Jazz Composer's OrchestraDizzy Gillespie Big BandHoward McGhee And His OrchestraThad Jones / Mel Lewis OrchestraThad Jones & Mel LewisThe Clifford Jordan Big Band + +983794Eve-Marie CaravassilisFrench-Guadeloupean-Greek classical cellist. Born 24 October 1982 in Paris, France. +She studied at the [l1014340] and the [l1125469]. In 2006, she was chosen as a new member of the [a=Quatuor Psophos]. She left after five years pursuing a symphonic career. She joined the [a212726] in 2013.Needs Votehttps://www.evemariecaravassilis.com/https://www.facebook.com/evemarie.caravassilishttps://www.instagram.com/caraeve20/?hl=enhttps://open.spotify.com/artist/6I2Vodr9zbwDitfACu5aQvhttps://music.apple.com/ca/artist/eve-marie-caravassilis/1191430994https://lso.co.uk/orchestra/players/strings.html#Celloshttp://www.sfmt.gr/%CE%B2%CE%B9%CE%BF%CE%B3%CF%81%CE%B1%CF%86%CE%B9%CE%BA%CF%8C-eve-marie-caravassilis/London Symphony OrchestraQuatuor PsophosLSO String Ensemble + +983795Jérôme LefrancFrench cellist.CorrectJerôme LefrancOrchestre National De L'Opéra De Paris + +983824SonnerieEnsemble formed in 1982 as a trio of violin ([a960940]), viola da gamba ([a837437]) and harpsichord ([a2020806]) specializing in baroque chamber music, it evolved into a more flexible group, allowing it to perform repertoire such as Bach cantatas and concerti, and extend its limits to classical, even early romantic composers. It has now returned to the trio format with [a960940] (director and violin), [a1014631] (viola da gamba) and [a867825] (harpsichord).Correcthttp://www.sonnerie.org.uk/Ensemble SonneneEnsemble SonneriEnsemble SonnerieTrio SonnerieStephen SaundersElizabeth KennyGary Cooper (2)Wilbert HazelzetSarah CunninghamPavlo BeznosiukAndrew Lawrence-KingJames Johnstone (3)Erin HeadleyStephen StubbsPaul Goodwin (2)Monica HuggettBruce DickeyEmilia BenjaminFrances KellyFrances EustaceKatherine McGillivrayMatthew HallsDoron David SherwinMitzi MeyersonSiobhán Armstrong + +983825Matthias Georg MonnJohann Georg MannAustrian composer, organist and music teacher, born 9 April 1717 in Vienna and died 3 October 1750 in Vienna. Monn formed the Viennese Pre-Classical movement (Wiener Vorklassik in German) and his music is said to be in the transition between the Baroque and Classical periods.Needs Votehttp://en.wikipedia.org/wiki/Georg_Matthias_MonnG.-M. MonnGeorg Mathias MonnGeorg Matthias MonnGeorg Mattias MonnJohann Matthias MonnM. G. MonnM.G. MonnMonn + +983953L. LeePseudonym used by Benny Carter when he was playing in the orchestra of Lionel Hampton for Victor in 1939.Needs Votehttp://www.bennycarter.com/https://en.wikipedia.org/wiki/Benny_Carterhttp://www.jazzarcheology.com/benny-carter-clarinet/https://adp.library.ucsb.edu/index.php/mastertalent/detail/103374/Carter_Bennyhttps://www.britannica.com/biography/Benny-Carterhttps://www.scaruffi.com/jazz/carter.htmlhttps://www.imdb.com/name/nm0141481/Benny CarterBilly CartonLionel Hampton And His Orchestra + +984171Zdeněk ŠedivýZdeněk Šedivý mladšíCzech trumpet player. Born 1956 in Prague. +Son of [a=Zdeněk Šedivý (2)] sr.Needs Votehttps://www.ceskafilharmonie.cz/en/players/zdenek-sedivy/Zdenek SedivyZdeněk Šedivý Ml.Zdeněk Šedivý ml.Prague Big BandMahagonThe Czech Philharmonic OrchestraSlovak Chamber OrchestraVeselkaHorký Dech Jany KoubkovéSwing Band Ferdinanda HavlíkaPrague Brass SoloistsPražské Žesťové TrioCzech Brass Ensemble + +984174Václav HozaVáclav HozaCzech tuba, trombone player and educator. +Born 1 November 1929 in Prague (former Czechoslovakia), died 16 April 2015 in Ostrov nad Ohří. +Member of [a=The Czech Philharmonic Orchestra] 1956–1993.Needs Votehttps://cs.wikipedia.org/wiki/V%C3%A1clav_Hozahttp://www.hamu.cz/katedry/katedra-dechovych-nastroju/vaclav-hoza-tubaStefan HozaV. HozaVáclav HoraSHQThe Czech Philharmonic OrchestraPrague Brass SoloistsThe Bohemian FiveBläservereinigung Der Tschechischen Philharmonie + +984186Lang Lang郎朗 (Láng Lǎng)Chinese pianist, born 14 June 1982 in Shenyang in Liaoning province, China. Married to pianist [a6092721].Needs Votehttps://www.langlangofficial.comhttps://www.facebook.com/LangLangPiano/https://www.instagram.com/langlangpiano/https://en.wikipedia.org/wiki/Lang_Langhttps://www.imdb.com/name/nm1496244/LangЛанг Лангラン・ラン朗朗郎朗 + +984336Mac & TaylorTrance / Techno duo, comprising of Steven McGuinness & Peter Taylor from Liverpool, United KingdomCorrecthttp://www.myspace.com/macandtaylorMac 'N' TaylorMac + TaylorMac And TaylorSteven McGuinnessPeter Taylor (5) + +984444Denny DennisRonald Dennis PountainDenny Dennis (b. November 1, 1913 in Derby - d. November 2, 1993 in Barrow-in-Furness) with a career as a band singer, solo recording star and broadcaster which spanned three decades. + +The first Englishman to sing with an American big band, Tommy Dorsey in 1948. By then he was a household name, recording in the Thirties, touring Britain and Europe with Roy Fox and broadcasting not only on the BBC but the two commercial stations Radio Normandy and Radio Luxembourg. + +It was Fox who renamed him Denny Dennis only moments before his first BBC broadcast with Roy Fox & His Band. +Needs Votehttp://www.dennydennis.co.uk/dennydennis/index.html.htmlhttp://www.independent.co.uk/news/people/obituary-denny-dennis-1501988.htmlhttps://adp.library.ucsb.edu/names/106206DennisDenny DenisDenny Dennis With Orchestral Accomp.Denny Dennis & ChorusDenny Dennis & TrioTommy Dorsey And His OrchestraAmbrose & His OrchestraRoy Fox & His BandRoy Fox & His OrchestraBilly Bissett And His Orchestra + +984477Ennio MioriItalian classical cellistNeeds VoteE. MioriMiori EnnioOrchestra Del Teatro Alla ScalaI Solisti Di Milano + +984563Dr. Erich ThienhausGerman producer and engineer mainly working for [l143563] (* 1909 in Lübeck, Germany; † 1968 in Detmold, Germany); also working as university teacher for acoustics and organology.Needs Votehttps://de.wikipedia.org/wiki/Erich_ThienhausDr. E. ThienhausDr. ThienhausDr. エーリッヒ・ティーンハウスE. ThienhausErich ThienhausErich von ThienhausProf. Dr. Erich ThienhausProf. Erich ThienhausTThienhaus + +985039George PietersonDutch clarinettist, who had the role of principal clarinet with the [a=Concertgebouworkest] Amsterdam.Needs Votehttp://en.wikipedia.org/wiki/George_PietersonGeorge PietersenPietersonNederlands Blazers EnsembleConcertgebouworkestConcerto Amsterdam + +985659Rosemary AsheRosemary Elizabeth AsheEnglish stage actress and Soprano vocalist, born 28 March 1953.Needs Votehttp://www.rosemaryashe.comhttps://en.wikipedia.org/wiki/Rosemary_Ashehttps://www.imdb.com/name/nm0038826/Rosie AsheThe Ambrosian Singers + +985767Ron StoutAmerican jazz trumpeter, born in 1958Needs Votehttps://insidejazz.com/2018/01/ron-stout/Ron StoudtRonald StoutWoody Herman And His OrchestraThe Woody Herman Big BandThe Bill Holman BandClare Fischer Big BandThe Tom Kubis Big BandThe Lennie Niehaus OctetThe Bob Florence Limited EditionCharles Rutherford's Jazz Pacific OrchestraThe Phil Norman TentetBob Curnow's L. A. Big BandSteve Spiegl Big BandDave Slonaker Big BandRoger Neumann's Rather Large BandBuddy Childers Big BandVic Lewis West Coast All-StarsThe Woody Herman OrchestraThe H2 Big BandThe Los Angeles Jazz OrchestraJack Sheldon OrchestraAllen Carter Big BandThe Ray Reed Hollywood Bebop QuintetThe Pete Christlieb & Linda Small Eleven Piece BandThe Bud Shank Big BandMark Masters EnsembleClare Fischer Latin Jazz Big BandBrent Fischer OrchestraRon Stout QuintetThe Matt Gordy Jazz Tonite Sextet + +985837William WaterhouseWilliam WaterhouseEnglish bassoonist, musicologist, educator, author, and editor. +Born: 18th February 1931 South Norwood, London, England, UK +Died: 5th November 2007 in Florence, Italy +He studied at the [l290263]. Two years' national service were spent with [a546443] at Uxbridge. He became member of the [a=Philharmonia Orchestra] while studying. From 1953 to 1955, he was second bassoonist in the orchestra of the [a855061]. From 1955 until 1958 he played in the [a4646608]. He was the principal bassoonist in the [a=London Symphony Orchestra] (1958–1964), and co-principal in the [a=BBC Symphony Orchestra] (1965–1982). He was a member of the [a=Melos Ensemble Of London] from 1959. He was Professor at the [l=Royal Northern College Of Music] from 1966 until 1996. +Father of [a=Graham Waterhouse], [a=Lucy Waterhouse], & [a=Celia Waterhouse].Needs Votehttps://open.spotify.com/artist/5pNcIwqw07jPt1ONI3DxuBhttps://music.apple.com/us/artist/william-waterhouseoon/276918540https://en.wikipedia.org/wiki/William_Waterhouse_(bassoonist)https://musicianbio.org/william-waterhouse/https://www.theguardian.com/news/2007/nov/09/guardianobituaries.obituariesLondon Symphony OrchestraBBC Symphony OrchestraPhilharmonia OrchestraThe Central Band Of The Royal Air ForceOrchestra Of The Royal Opera House, Covent GardenMelos Ensemble Of LondonLondon Wind SoloistsThe Wind Virtuosi Of EnglandOrchestra Della Radio Televisione Della Svizzera Italiana + +985838Roger FallowsClassical clarinetist.Needs Votehttps://rateyourmusic.com/artist/roger-fallows/BBC Symphony OrchestraLondon SinfoniettaLondon Wind OrchestraAthena EnsembleThe Military Ensemble Of London + +985920Jil Et JanCorrectGil Et JanGil Et JeanGil et JeanJanJan & GilJan - JilJan - JillJan / GilJan / JilJan Et GilJan Et JilJan-JilJan/JilJilJil & JanJil & JeanJil & janJil &JanJil - JanJil / JanJil /JanJil And JanJil E JanJil Et JannJil Et JeanJil Et JenJil Und JanJil Y JanJil et JanJil et JeanJil u. JanJil y JanJil y JaneJil, JanJil-JanJil/JanJilaijanJilaijeanJiletJanJiljanJill & JanJill & JeanJill And JanJill Et JanGras (7)Jean SettiGilbert Guenet + +985932Gérard BoulangerClassical trumpeter.Needs VoteEnsemble L'ItinéraireOrchestre Philharmonique De Radio France + +985935Hubert SoudantDutch conductor, born 16 March 1946 in Maastricht, Netherlands. +Conductor of the Orchestre National Des Pays De La Loire and Das Mozarteum Orchester Salzburg from 1994 to 2004 in both orchestras.Needs Votehttps://en.wikipedia.org/wiki/Hubert_Soudanthttps://nl.wikipedia.org/wiki/Hubert_SoudantDas Mozarteum Orchester SalzburgOrchestre National Des Pays De La Loire + +986147Juliette HurelFrench traverso flautist, born 14 May 1970 in Auxerre. +She has been the first solo flute of the Rotterdam Philharmonic Orchestra since 1998.Needs Votehttp://www.juliettehurel.com/http://sartoryartists.com/en/juliette-hurelhttps://fr.wikipedia.org/wiki/Juliette_HurelRotterdams Philharmonisch OrkestEnsemble Les Surprises + +986215Antoine Sibertin-BlancFrench classical organist and teacher, born in Paris. He was a student of [a=Maurice Duruflé].Needs Votehttp://www.apao.web.pt/organistas/actuais/asibertin.htmA. Sibertin-BlancAntoine Sibertin BlancGulbenkian Orchestra + +986222Theodor GuschlbauerAustrian conductor (* 14 April 1939 in Vienna, Austria).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_G/Guschlbauer_Theodor.xmlhttps://www.geschichtewiki.wien.gv.at/Theodor_Guschlbauerhttps://www.rbartists.at/kuenstler/theodor-guschlbauerGuschlbauerGuschlbaurGüschlbauerGüschlbaurT. GuschlbauerTh. GuschlbauerThedor GüschlbauerTheo GuschlbauerTheodor GuschibauerTheodor GusghlbauerTheodor GushlbauerTheodor GüschlbauerTheodore GuschlbauerThéodor GuschlbauerThéodor GüschlbauerТеодор Гушльбауэрテオドール・グシュルバウアーBruckner Orchestra LinzWiener Barockensemble + +986655Adam De La HalleAdam de la HalleAdam de la Halle, also known as Adam le Bossu (Adam the Hunchback) (1237?-1288) was a French-born trouvère, poet and musician, who broke with the long-established tradition of writing liturgical poetry and music to be an early founder of secular theater in France. He was a member of the Confrérie des jongleurs et bourgeois d'Arras.Needs Votehttp://en.wikipedia.org/wiki/Adam_de_la_Hallehttps://adp.library.ucsb.edu/names/102167A de la HaleA. De La HalleA. Dela HalleA. Della HalleA. de la HalleAdam De HaleAdam De HalleAdam De La HaleAdam De La Halle (XIII)Adam De Le HalleAdam V. D. HalleAdam de la FuldaAdam de la HaleAdam de la HalleAdam z HalleAdan de la HalleDe La HalleRondel d'Adam de La Halede la Hale + +986715Deborah RogersSound Engineer for Decca, credited as Editor, Tape Editor, or Recording Editor. fl. 1988-1993Needs VoteDebbie Rogers + +986864Bernard FloodAmerican jazz trumpeter. +Born : December 16, 1907 in Montgomery, Alabama. +Died : June 09, 2000 in Englewood, New Jersey. +Bernard Flood played with Bobby Neal (1930-'31), Fess Williams (1931-'32), Teddy Hill (1933-'35), Chick Webb, Luis Russell, Charlie Johnson (1936-'37), Edgar Hayes (1937-'38), Hazel Scott (1939), Louis Armstrong (1939-'40 & 1942-'43), Duke Wellington, Happy Caldwell (1949-'53). +Also accompanied the singer Ma Rainey and the multi-instrumentalist Sam Rivers. +Needs Votehttps://www.allmusic.com/artist/bernard-flood-mn0001743420B. FloodBernie FloodLouis Armstrong And His OrchestraEdgar Hayes And His Orchestra + +986893Miles EvansMiles Ian Gilmore EvansAmerican jazz trumpet player and band leader, born 1965, son of [a255137] & [a=Anita Evans] and youngest brother of [a=Noah Evans].Needs Votehttp://www.milesevans.comGil Evans And His OrchestraThe Monday Night Orchestra + +986947William SpiverySongwriter. Most famous for "Operator". +Born: 25 December 1930 +Died: 9 October 2004Needs Votehttps://www.findagrave.com/memorial/9590721/william-spiveryB. SpiveryBill SpiveryBill Spivery Jnr.SpiverySpivery, WilliamW. SpiveriW. SpiveryW. SpiveyW. SpiweyWilliam SpireyWilliam SpivereyWilliam SpiveyWilliam SpiweryBill Spivery & The Sons Of TruthBill Spivery And The OperatorsThe Friendly Brothers + +986992John BimsonJohn BimsonBritish retired classical French horn player. Born in Liverpool, England, UK. +He studied at the [l459222]. He performed with, among others, [url=https://www.discogs.com/artist/837699-BBC-Philharmonic]BBC Northern Symphony Orchestra[/url] (1960s-1970s), the [a=London Symphony Orchestra] (1972-1976) as Assistant Principal Horn, and the [a=Royal Philharmonic Orchestra] (1977-?) as Principal Horn and Chairman. He has given numerous master classes.Needs Votehttps://www.facebook.com/john.bimson.9London Symphony OrchestraRoyal Philharmonic OrchestraBBC PhilharmonicThe Royal Philharmonic Ensemble + +987315Gino SinimberghiItalian operatic tenor, born 26 August 1913 in Rome, Italy and died 29 December 1996.CorrectG. SinimberghiGino SininberghiSinimberghiДжино Синимберги + +988312Ferry AndreeFranz Ferry AndreeAustrian singer, actor and songwriter, born 7 September 1899 in Vienna, Austria and died 22 February 1967 in Vienna, Austria.Needs VoteA. FerryAndreeAndree FerryAndréAndréeAndrée FerryF. AndreaF. AndreeF. AndrèeF. AndréF. AndréeF.AndreeFerryFerry AndreFerry AndrèeFerry AndréFerry AndréeFranz Ferry AndreePerry AndreeT. Andree + +988824Norbert OmmerNorbert OmmerGerman sound engineer. + +Ommer studied piano and clarinet in Cologne, Germany followed by studies of music and information technology at the Robert Schumann Hochschule in Düsseldorf, where he graduated as a sound engineer. Since 1980, he has worked as a freelance radio and television sound mixer. He has worked regularly with the [a=Ensemble Modern] as director of sound since 1990 (and became a shareholder in 1997) and at the same time has worked as a regular sound mixer for the WDR Bigband. + +He has been involved in numerous international festivals like Wien Modern, Frankfurt Feste, Festival d'Automne in Paris, Arts Musica Brussels, Holland Festival, Salzburger Festspiele, BBC Proms, Donaueschingen, Edinburgh International Festival, Lincoln Center Festival and the Telstra Adelaide Festival. + +In November 2002, he was awarded the Golden Bobby which was given out for the first time by the VDT (Society of German Sound Masters) and is awarded for extraordinary performances in sound design and sound directing. Early in 2003, Ommer collaborated for the first time with the [url=http://www.discogs.com/artist/Berliner+Philharmoniker?noanv=1]Berlin Philharmonic[/url] under the baton of [a=Sir Simon Rattle] and [a=Peter Eötvös]. + +Norbert was in charge of the sound design and sound direction for [a=Frank Zappa], [a=Heiner Goebbels], [a=Mark-Anthony Turnage] and [a=Steve Reich] to name but a few. Composers like [a=Karlheinz Stockhausen], [a=Peter Eötvös], [a=Helmut Lachenmann], [a=Louis Andriessen], [a=Kaija Saariaho], [a=Fred Frith] and artists like [a=Lalo Schifrin], [a=Bill Viola] and [a=Patti Austin] have worked with him as their director of sound. +Needs VoteNobert OmmerEnsemble ModernEnsemble Modern Orchestra + +988888Alexander Schneider (2)German Alto vocalist, born in Frankenberg, Germany. Founder and director of [A=Ensemble Polyharmonique]Needs Votehttp://www.altist.de/SchneiderDresdner KammerchorCollegium VocaleCapella AngelicaCantus CöllnEnsemble »Alte Musik Dresden«La Capella DucaleJohann Rosenmüller EnsembleCapella DaleminziaEnsemble Polyharmonique + +989029Jan ArnetJan ArnetCzech bass player, arranger, conductor, producer, writer. Born April 13, 1934 in Prague (former Czechoslovakia). Emigrated in 1965 to West Berlin, smuggling his wife and daughter hidden in a bass drum. In 1966 he moved to the U.S. Among others, he was member of [a=Art Blakey & The Jazz Messengers] 1969–1970.Correcthttp://www.ceskyhudebnislovnik.cz/slovnik/index.php?option=com_mdictionary&action=record_detail&id=8713http://www.mikevisceglia.com/column.htmlJ. ArnetJan ArnettJon Arnetヤン・アーネットSHQArt Blakey & The Jazz MessengersKarel Vlach OrchestraPražský DixielandMetronom (2)Reduta KvintetStudiová Skupina Jana HammraJan Konopásek Se Svou Skupinou + +989086Adam BrennerSaxophonistNeeds VoteLionel Hampton And His OrchestraRutgers University Livingston College Jazz EnsembleKevin O'Connell Quartet + +989087Jerry WeldonSaxophonistNeeds Votehttps://www.jerryweldon.net/https://jerryweldonjazz.bandcamp.com/Gerry WeldonJ. WeldonJerry WeldenWeldonWeldon, J.Lionel Hampton And His OrchestraLionel Hampton & His Big BandThe N.Y. Hardbop QuintetAntonio Ciacca QuintetRutgers University Livingston College Jazz EnsembleSuper QuintetRon Aprea SextetJerry Weldon - Michael Karn Quintet + +989088Dave SchumacherSaxophonist.Needs VoteD. SchumacherDavid SchumacherLionel Hampton And His OrchestraThe Ensemble (2)Lionel Hampton & His Big BandRutgers University Livingston College Jazz EnsembleScott Whitfield Jazz Orchestra EastPratt Brothers Big BandJason Lindner Big BandDave Schumacher & Cubeye + +989090Rick VisoneNeeds VoteLionel Hampton And His Orchestra + +989091Robert TrowersAmerican jazz trombonist whose 23 years in music has seen him performing with such artists as Lionel Hampton, The Count Basie Orchestra, Randy Weston, The Lincoln Center Jazz Orchestra directed by Wynton Marsalis, The Carnegie Hall Jazz Orchestra directed by Jon Faddis, The Chico O'Farrill Afro - Cuban Orchestra, and numerous others. + +Needs VoteCount Basie OrchestraLionel Hampton And His OrchestraLionel Hampton & His Big BandGeorge Gee Big BandRobert Trowers Quartet + +989093John PendenzaAmerican trumpet playerNeeds VoteLionel Hampton And His OrchestraJohn Pendenza Boulevard Big BandThe New Xavier Cugat Orchestra + +989094Al BryantTrumpeter.Needs VoteLionel Hampton And His OrchestraJaki Byard And The Apollo StompersLionel Hampton & His Big BandBrass On Thomas Chapin "Insomnia" + +989096Chris GulhaugenNeeds VoteChris GulhaghuenLionel Hampton And His Orchestra + +989097Vince CutroJazz trumpeter.Needs VoteVincent CutroLionel Hampton And His Orchestra + +989098Lee RomanoNeeds VoteLionel Hampton And His Orchestra + +989406Chuck Miller (4)Early jazz clarinetistNeeds VoteLanin's Arkansaw Travelers + +989684Hidemi SuzukiJapanese classical [b]cellist[/b] and [b]conductor[/b] of Nagoya Philharmonic Orchestra.Needs VoteHideimi SuzukiHidemiSuzukiSuzuki HidemiAustralian Brandenburg OrchestraLa Petite BandeRicercar ConsortBach Collegium JapanOrchestra Of The 18th CenturyLe Concert FrançaisBoccherini Quartet + +989692Konrad HüntelerKonrad HüntelerGerman classical flautist. +Born 12th March 1947 in Mechernich, Germany and died 13th November 2020 in Münster, Germany.Needs Votehttps://de.wikipedia.org/wiki/Konrad_H%C3%BCntelerhttps://fr.wikipedia.org/wiki/Konrad_H%C3%BCntelerConrad HüntelerHüntelerK. HüntelerKondrad HuntelerCollegium AureumLondon Classical PlayersCamerata Of The 18th CenturyOrchestra Of The 18th Century + +990166Charles MeinenClassical violin & viola playerNeeds VoteC. MeinenOrchestre symphonique de Montréal + +990169Reynald L'ArchevêqueClassical violinistNeeds VoteRenald L'ArchevêqueReynald LarchevequeReynald LarchevêqueRénald L'ArchevêqueRénald L'archevêqueOrchestre symphonique de Montréal + +990481Raphael WallfischRaphael WallfischEnglish cellist (born 15 June 1953 in London). Married to violinist [a=Elizabeth Wallfisch]. Father of [a483895], [a1342004] and [a941060]. Son of [a1659362] and [a2488968].Needs Votehttp://www.raphaelwallfisch.com/https://en.wikipedia.org/wiki/Raphael_WallfischRafael WallfischRaphael WallfishWallfischРафаэль УоллфишCity Of London SinfoniaRoyal Philharmonic OrchestraThe Czech Philharmonic OrchestraUlster OrchestraAccademia I Filarmonici Di VeronaTrio Shaham Erez Wallfisch + +990510Philip EllisBritish conductor.Correcthttp://www.owenwhitemanagement.com/conductors/Philip-Ellis/http://www.musicpartnership.co.uk/Pages/Con_ELLIS.htmlフィリップ・エリス + +990584Stuttgarter PhilharmonikerGerman philharmonic orchestra founded in September 1924 and based in Stuttgart.Needs Votehttps://www.stuttgarter-philharmoniker.de/Choeur Et Orchestre Philharmonique De StuttgartDie Stuttgarter PhilharmonikerFilarmonica di StoccardaOrchesterOrchester Der Stuttgarter PhilharmonieOrchestraOrchestra Filarmonica DI StoccardaOrchestra Filarmonica Di StoccardaOrchestra Filarmonica Di StuttgartOrchestra Filarmonica di StoccardaOrchestre Philarmonique De StuttgartOrchestre Philharmonique De StuttgartOrchestre Philharmonique De StuttgartOrchestre Philharmonique de StuttgartOrchestre Pro Musica De StuttgartOrchstre Philharmonique De StuttgartOrquesta Filarmonica De EstugardaOrquesta Filarmonica De StuttgartOrquesta Filarmonica de StuttgartOrquesta Filarmònica De StuttgartOrquesta Filarmónica De StuttgartOrquesta Filarmónica de StuttgartOrquesta Filharmonica De StuttgartOrquestra Filarmônica De StuttgartOrquestra Filarmônica de StuttgartPhilharmonic Orchestra StuttgartPhilharmonischer Chor StuttgartSolisten, Chor Und Die Stuttgarter PhilharmonikerSolisten, Koor En Filharmonisch Orkest Van StuttgartSolistes, Chœurs Et Orchestre Philharmonique De StuttgartStuttgart Classical Philharmonic OrchestraStuttgart PhilarmoniaStuttgart Philarmonic OrchestraStuttgart PhilhamonicStuttgart PhilharmoniaStuttgart PhilharmonicStuttgart Philharmonic OrchStuttgart Philharmonic OrchestraStuttgart Philharmonic Orchestra & ChorusStuttgart Philharmonic SeptetStuttgart Philharmonica OrchestraStuttgart PhilharmonicsStuttgart PhlharmonicStuttgarter PhilharmonicStuttgarter Philharmoniker-SeptetStuttgarter PhliharmoniaStuttǵart Philharmonic OrchestraStuutgart Philharmonic OrchestraThe Stuttgart PhilharmoniaThe Stuttgart Philharmonic Orchestraシュトゥットガルト・フィルハーモニー管弦楽団ステュットガルト・フィルハーモニック・オーケストラWill BehKarl Heinz SchützMarkus HaukeArthur BaloghMarlene SvobodaKlaus SchochowReinhold BarchetAlbrecht HolderMagdalena MüllerperthFrancis BaurJudith ChamberlandFlorin PaulAureli BłaszczokFritz DemmlerConstantin MeierTabea Haarmann-ThiemannChristof BaumbuschDieter EckertSandra SchuhmacherSebastian ZechMatthias NeupertAndreas Richter (2)Markus GählerSebastian Vogel (3)Christoph Hartmann (2)Isabelle FarrEmilie JaulmesJürgen FranzRamin TrümpelmannPeter FellhauerAkiko HiratakaStefan Wagner (6)Matthias WächterJulius AdornoMatthias NassauerKrassimira KrastevaRaphaela PaetschStefan HelbigMarc HoodHerbert WaldnerMax ZimolongBernhard LörcherFrank Lehmann (2)Wawrzyniec PeikerLonn AkahoshiAlexander CazzanelliTorsten HoppeMarianne SohlerClaudia StrenkertAndreas KißlingEkkehart KleinbubMonika Renner-AuersFabian BolkeniusAndreas PößlLionel MichelenaXavier GendreauSemiramis CostaNatalia WächterHanna GromNikola StolzClaire KrausenerFelicia HamzaOna Ramos TintóAnnette Köhler (3)Stefan BalleMartin Dörfler (2)Silke MaurerStefano CardoBalthasar Hens (2)Martin HöflerJudith MengKeiko WaldnerJulia SchautzNele Lamersdorf + +990882Roger EllickAmerican trumpeter.CorrectR. EllickRERoger Norv EllickRoger Norv Ellick (RE)Tommy Dorsey And His OrchestraAlvino Rey OrchestraGeorge Paxton & His Orchestra + +990883Sam SkolnickAmerican big band era jazz trumpeter. +Born in 1909 in AustriaNeeds VoteS. KolnickS. S. KolnickSKSam KolnickSam Kolnick (SK)Sam SkolnikTommy Dorsey And His OrchestraCharlie Barnet And His Orchestra + +990885Gale CurtisAmerican big band era saxophonistNeeds VoteGCGail CurtisGail Curtis (GC)Gale CunisTommy Dorsey And His Orchestra + +990886Ben PickeringJazz trombonistNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/108202/Pickering_BenB. PickeringBPBen Pickering (BP)Orquesta Dir. Ben PickeringPickeringTommy Dorsey And His OrchestraCharlie Barnet And His OrchestraBilly Barton Und OrchesterThe Georgians + +990887Joseph ParkTuba player.CorrectJPJoe ParkJoseph Park (JP)Tommy Dorsey And His Orchestra + +990888Paul Mitchell (5)Prewar jazz pianistNeeds VotePaul MitchellTommy Dorsey And His OrchestraJoe Haymes & His Orchestra + +990889William SchafferAmerican jazz guitarist.Needs VoteB. SchafferBill SchaefferBill SchafferW. SchaefferWSWilliam SchaefferWilliam Schaeffer (WS)Tommy Dorsey And His OrchestraTommy Dorsey And His Clambake Seven + +990890John Dillard (2)Jazz trumpeterCorrectJ. DillardJohnny DillardTommy Dorsey And His Orchestra + +990891Bruce Golden (2)Pianist.Needs VoteM. GoldenMGMilt GoldenMilton GoldenMilton Golden (MG)Tommy Dorsey And His Orchestra + +990892Bob BunchNeeds VoteBBuBob Bunch (BBu)Tommy Dorsey And His Orchestra + +990893Cliff WestonClifford WetterauJazz vocalist, trumpeter (1913 - 1960)Needs Votehttp://www.jazzbiographies.com/Biography.aspx?ID=208https://adp.library.ucsb.edu/index.php/mastertalent/detail/101182/Weston_Cliffhttps://www.jazzstandards.com/biographies/biography_208.htmC. WestonCliff Weston (Wetterau)Clifford WetterauTommy Dorsey And His OrchestraCalifornia RamblersJoe Haymes & His OrchestraUniversity Six + +990894Mac CheikesJazz guitaristNeeds Votehttps://www.allmusic.com/artist/mac-cheikes-mn0001244536/creditsM. CheikesTommy Dorsey And His OrchestraVan Alexander And His OrchestraJoe Haymes & His Orchestra + +990896Leon DubrowCorrectLDLeon DebrowLeon Debrow (LD)Leon DubrouwTommy Dorsey And His Orchestra + +990897Bill Graham (4)American trumpet player. + +Played often with the [a=Tommy Dorsey] Big Bands.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/318567/Graham_Bill?Matrix_page=100000A. William GrahamBill GrahmBilly GrahamWilliam GrahamTommy Dorsey And His OrchestraBob Crosby And His OrchestraYank Lawson And His OrchestraErskine Butterfield And His Blue Boys + +990898Joe DixonJoseph DixonAmerican jazz clarinetist and saxophonist, born April 21, 1917 in Lynn, MA. +Moved to New York in 1934 to join [a=Bill Staffon]'s orchestra, played with [a=Tommy Dorsey] 1936-1947. Later freelance, in the early 1960s leading the Long Island Jazz Quartette. From 1973 to 1981 led his own Nassau Neophonic Jazz Ensemble.Needs Votehttps://en.wikipedia.org/wiki/Joe_Dixon_(musician)https://adp.library.ucsb.edu/index.php/mastertalent/detail/109949/Dixon_JoeDixonJ. DixonJDJoe Dixon (JD)Joseph DixonTommy Dorsey And His OrchestraBunny Berigan & His OrchestraNapoleon's EmperorsEddie Condon And His OrchestraBobby Hackett And His OrchestraBunny Berigan's Rhythm-MakersBrad Gowans And His New York NineBill Staffon And His Orchestra + +990899Jimmy Welch (2)Jazz trumpeterCorrectJ. WelchJWJimmy WelchJimmy Welch (JW)Tommy Dorsey And His Orchestra + +990900Sam Rosen (2)American jazz drummerCorrectS. RosenSam RosenTommy Dorsey And His Orchestra + +990901Colin SatterwhiteTrombonistCorrectC. SatterwhiteCSCollen SatterwhiteCollon SutterwhiteCollon Sutterwhite (CS)Colton SatterwhiteTommy Dorsey And His Orchestra + +990902Bruce BransonAmerican jazz saxophone/reed player. Born 26 May 1923 - Died 12 July 1957. +Husband of [a=Mary Clark (3)]; brother-in-law of [a=Ann Clark], [a=Peggy Clark], [a=Jean Clark] and [a=Bob Bain] (Judi Clark's husband).Needs VoteB. BransonBBrBruce Darwin BransonBruce Darwin Branson (BBr)Tommy Dorsey And His Orchestra + +991021Nina ReddigGerman classical violinistCorrectThe Chamber Orchestra Of Europe + +991389Luigi CherubiniMaria Luigi Carlo Zenobio Salvatore CherubiniItalian composer. + +Born: September 14, 1760, Florence, Italy +Died: March 15, 1842, Paris, France +Needs Votehttps://en.m.wikipedia.org/wiki/Luigi_Cherubinihttps://adp.library.ucsb.edu/names/102341CherbiniCherubiniCherubini, LuigiChérubiniI. CherubiniL. CherubiniL. KerubiniL.CherubiniL.M. CherubiniLuidži KerubiniLuigi M. CherubiniLuigi Maria CherubiniM. CherubiniM.L. CherubiniMaria Luigi CherubiniКерубиниЛ. КерубиниЛуиджи КерубиниЛуїджі Керубініケルビーニルイジ・ケルビーニ + +991427Saskia CoolenDutch violist + recorder playerNeeds VoteCamerata TrajectinaLa Fontegara AmsterdamBrisk Recorder Quartet AmsterdamEgidius Consort«Música Ibérica» de Holanda + +991529Lars RanchDanish classical trumpeter, born 1965 in Copenhagen, he teaches in Magdeburg, Germany.Needs Votehttp://www.solo-trompeter.de/Rundfunk-Sinfonieorchester BerlinPhilharmonisches Staatsorchester HamburgGenesis BrassBigBand Deutsche Oper BerlinLars Ranchs Party Band + +991532Gerard SchwarzGerard Ralph SchwarzAmerican conductor and trumpeter, born on August 19, 1947 in Weehawken, New Jersey.Needs Votehttps://www.gerardschwarz.com/https://www.facebook.com/GerardSchwarzConductor/https://www.naxos.com/person/Gerard_Schwarz/32307.htmhttps://en.wikipedia.org/wiki/Gerard_Schwarzhttps://allstarorchestra.org/https://www.easternmusicfestival.org/G. SchwartzGerard R. SchwarzGerard SchwargGerard SchwartzGerard Schwarz And His Dance OrchestraGérard SchwarzSchwartzSchwarzГерард ШварцNew York PhilharmonicSeattle Symphony OrchestraRoyal Liverpool Philharmonic OrchestraAmerican Brass QuintetPhilharmonia VirtuosiMusic Today Ensemble + +991593Daniel HortisDaniel Henri Jean BarbotNeeds Votehttp://www.encyclopedisque.fr/artiste/12498.htmlB. HartisD HortisD. HartisD. HortisD. HortysD. HostisD. MortisD. OrthisD. OrtisD. OrtizD.H.D.HortisDaniel HartisDaniel OrtisHortiHortisOrtisDaniel Barbot + +991968Chris HazellEnglish recording producer for classical music, arranger and composer (Brass Cats), born 18 February 1948 in Smethwick. +He worked for Decca from 1972 to 1997.Needs Votehttps://uk.linkedin.com/pub/chris-hazell/49/80a/755http://www.abbasrecords.com/personnel.htmC HazellC. HazellChr. HazellChriis HazellChris HazelChris Hazell (Glorias)Christopher Charles HazellChristopher HazellHazelHazell + +992204Aldo DonatiAldo Donati (Roma, September 2, 1947) is an Italian singer-songwriter, actor and television presenter.Needs Votehttp://it.wikipedia.org/wiki/Aldo_Donati_%28cantante%29A. DonatiA. DonatoA.DonatiDonatiАльдо ДонатиSchola Cantorum (2) + +992281Gaelle MechalyGaëlle MéchalyFrench soprano (born 15 June 1970 in Marseille, France).Needs Votehttp://www.gaellemechaly.com/Gaëlle MechalyGaëlle MéchalyMéchalyLes Arts Florissants + +992386Jerry NearyJazz trumpeter active in the 1930's. Part of Woody Herman's 'The Band That Plays the Blues' in 1938.Needs VoteJ. NearyJack NearyNearyWoody Herman And His OrchestraTeddy Powell And His OrchestraBenny Goodman And His OrchestraThe Dorsey Brothers OrchestraThe Band That Plays The Blues + +992633Amber DiLenaVicki Amber Di LenaUS songwriter and singer.Needs VoteA. Di LenaA. DiLenaA. DilenaAmberAmber DelinaAmber Di LenaDiLenaDilenaV. Delena + +992636TazixNeeds Major Changes + +992689Beverley LuntClassical violinistNeeds VoteBeverley Julie LuntNetherlands Chamber Orchestra + +993609Inga RaabGerman cellist, born 1979 in Leipzig, GDR.Needs VoteOrchester der Bayreuther FestspieleZurich Opera OrchestraEuropean Camerata + +993610Susanne ZapfGerman violinist, born 1979, based in Berlin.Needs Votehttp://susannezapf.blogspot.com/Suzanne ZapfThürmchen EnsembleSonar QuartettKammerakademie PotsdamSwonderful Orchestra + +993614Wolfgang BenderGerman violinist.Needs Votehttp://www.kairosquartett.de/wolfgangbenderWolf BenderEnsemble ModernBerliner SymphonikerEnsemble Oriol BerlinKairos QuartettEnsemble Modern Orchestra + +993621Maike ReisenerGerman classical cellist, born in Lüneburg.Needs VoteMaaike ReisnerRadio KamerorkestNederlands Philharmonisch Orkest (2)Het Gelders OrkestPhion + +994164Tyree TautogiaHip-Hop artist from New Zealand.CorrectT TautogiaT. TautogiaTyree (4)Smashproof + +994322Willi BuchnerClassical violinist.Needs VoteW. BuchnerWilli BüchnerWilly BuchnerBamberger SymphonikerKoeckert-Quartett + +994323Franz HögerClassical contrabassistNeeds VoteФранц ХёгерSymphonie-Orchester Des Bayerischen Rundfunks + +995013Angharad GruffyddClassical soprano. + +Do not confuse with cellist [a=Angharad Gruffydd (2)].Needs VoteAngharad Gruffyd JonesAngharad Gruffydd JonesAngharad Gruffydd-JonesAngharad Gruyffdd JonesAnghard Gruffydd JonesThe Choir Of The King's ConsortThe SixteenThe Monteverdi Choir + +995144Francine ChabotFrancine ChabotNeeds VoteF. ChabotFrançine ChabotFrancine ChantereauCocktail ChicLes EnfoirésLes Fléchettes + +995259Jonathan DurrantClassical hornist. +2nd Horn, with the [a=Royal Scottish National Orchestra] (2002-2003]. Sub-Principal Horn of the [a=Orchestra Of The Royal Opera House, Covent Garden] since 2003. + +Possibly the same as [a=John Durrant] and [a=Johnny Durrant].Needs Votehttps://maslink.co.uk/client-directory?client=DURRJ1&instrument=HORN1https://www.imdb.com/name/nm10722177/London Symphony OrchestraRoyal Scottish National OrchestraOrchestra Of The Royal Opera House, Covent GardenYoung Musicians Symphony Orchestra + +995424Johann KrumpJohann Krump (1889 - 1974) was an Austrian double bass player. He was a member of the [a754974] from 1915 to 1955.Needs VoteJohan KrumpJohannes KrumpWiener PhilharmonikerWiener OktettThe Boskovsky Quintette + +995425Nikolaus HübnerNikolaus Hübner (10 February 1910 - 3 October 1985) was an Austrian classical cellist.Needs VoteHübnerN. HuebnerN. HübnerNicholas HubnerNicolaus HübnerNikolas HuebnerNikolaus HubnerNikolaus HuebnerWiener PhilharmonikerWiener OktettThe Boskovsky Quintette + +995426Günther BreitenbachGünther Breitenbach (1911 - 1992) was an Austrian classical viola player. Was a member of the [a754974] from 1952 to 1977.Needs VoteG. BreitenbachGuenter BreitenbachGuenther BreitenbachGunther BreitenbachGünter BreitenbachWiener PhilharmonikerWiener OktettThe Boskovsky Quintette + +995716Bruno FlahouFrench trombonist.Needs VoteOrchestre National De L'Opéra De ParisEnsemble EpsilonLes Cuivres Français + +995718Nora CismondiFrench classical oboe & cor anglais player. Born in 1978 in Valence, Drôme, France. +She graduated from [l1014340]. After seven seasons at the [a=Orchestre National De L'Opéra De Paris], she joined the [a=Orchestre National De France] in 2006 as Principal Oboe. In 2018, she was named Assistant Professor at the CNSM in Paris and was appointed Principal Oboe of [a=L'Orchestre De La Suisse Romande].Needs Votehttps://www.youtube.com/channel/UCWSM16IAZQcC7xNOWj1pjRQhttps://open.spotify.com/artist/7F7NnGQv6q8Lg78xcAPAMlhttps://music.apple.com/us/artist/nora-cismondi/300465925https://www.cartagenamusicfestival.com/index.php/role-member/nora-cismondi/?lang=enhttps://www.osr.ch/en/about-the-osr/musicians/musicians/people/nora-cismondi?mc_cid=85e73e9c29&mc_eid=UNIQID&cHash=446bf3ff398236cb8e0eea23193af930https://www.highresaudio.com/en/artist/view/a3da9191-6f46-4fb9-bdd1-326aae4e25fa/nora-cismondi-orchestre-de-la-suisse-romande-john-fiorehttps://www.orchestradacameradellasardegna.it/noracismondi/https://www.musique-hourtin.com/nora-cismondi.htmlLondon Symphony OrchestraL'Orchestre De La Suisse RomandeOrchestre National De FranceOrchestre National De L'Opéra De ParisEuropean Camerata + +995722Luc RousselleFrench trumpet player.Needs VoteLuc RouselleOrchestre National De L'Opéra De ParisLes Cuivres Français + +995764David Bell (5)Concert organist. He was organist to the conductor [a=Herbert von Karajan] for many years, and under his direction played on a regular basis with the Berlin Philharmonic Orchestra. He is also an arranger of choral and organ music.Needs VoteBellDave BellBerliner Philharmoniker + +995971Fredric BaycoFrederic BaycoBritish organist and composer. + +Born: 1913 +Died: 1970 +Needs VoteBaycoF BaycoF. BaycoF. BoycoFrederic BaycoFrederick BaycoFredric BayoFredrico BaycoHoly Trinity Church, Paddington, London + +996244Marc NoetzelClassical hornist, born 1967 in Braunschweig, Germany.Needs VoteSinfonieorchester Des SüdwestfunksSüdwestdeutsches Kammerorchester + +996441Helge RoswaengeHelge Anton Rosenvinge HansenDanish tenor vocalist, born 29 August 1897 in Copenhagen, Denmark, died 17 June 1972 in Munich, Germany. Though Danish his career was mainly in Germany and Austria before, during and after WWII. By the danes at the time he was considered too friendly to the nazi regime and after WWII he was excluded from "Krak's Blå Bog", the most prominent Who's Who in the country.Needs Votehttp://en.wikipedia.org/wiki/Helge_RosvaengeElge RosvaengeH. RosvaengeH. RoswaengeHelga RosvaengeHelge RossvaengeHelge RosvaengeHelge RosveangeHelge RosvængeHelge RoswangeHelge RoswangenHelge RoswängeRoswaengeX. РозвенгеX. РосвенгеXельге РозвенгеХельге Розвенгеヘルゲ・ロスヴァンゲ + +996805Burkhard GlaetznerBurkhard GlaetznerGerman oboist and conductor, born 29th May 1943 in Poznań. Founder of [a=Gruppe Neue Musik "Hanns Eisler" Leipzig].Needs Votehttp://www.burkhard-glaetzner.deBurkhard GlaentzerBurkhard Glaetzner, OboeBurkhard GlätznerBurkhardt GlaetznerGlaetznerБуркхард ГлетцнерKammerorchester BerlinNeues Bachisches Collegium Musicum LeipzigGruppe Neue Musik "Hanns Eisler" LeipzigHans Rempel OrchesterAulos-Trio + +997071Eddie Condon And His All-StarsUS big band led by [a325858].Needs VoteEddie CondonEddie Condon & His All-StarsEddie Condon All StarsEddie Condon All-StarsEddie Condon And His All StarsEddie Condon And His All-Star Dixieland BandEddie Condon And His AllstarsEddie Condon And His Dixieland BandEddie Condon And His Jazz Concert All StarsEddie Condon And OthersEddie Condon And The All-StarsEddie Condon And The Dixieland All-StarsEddie Condon E I Suoi All-StarsEddie Condon Og Hans All-StarsEddie Condon U. S. All-StarsEddie Condon Und Seine All-StarsEddie Condon Y Sus All-StarsEddie Condon's All StarsEddie Condon's All-StarsEddie Condon's Jazz Concert All StarsMaggsy Spanier And His Ragtime BandThe Eddie Condon All StarsThe Eddie Condon All-StarsBobby HackettMezz MezzrowPee Wee RussellLeonard GaskinBud FreemanWalter PageJack LesbergCutty CutshallRex StewartEdmond HallBilly ButterfieldLou McGarityGeorge WettlingAl HallMax KaminskyDick CaryEddie CondonPeanuts HuckoCliff LeemanGene SchroederWild Bill DavisonBuzzy DrootinDon EwellNabil TotahGeorge BruniesRalph Sutton (2)Joe Williams (5)Bill GoodallHerb HallFrank Marshall (2)Tommy Gwaltney + +997087Frank Socolow's Duke QuintetCorrectFrank Socolow QuintetFrankie Socolow And His Duke QuintetteBud PowellLeonard GaskinFrank SocolowFreddie WebsterIrv Kluger + +997088Be Bop BoysCorrect(The Be-Bop Boys(The Be-Bop Boys)Be-Bop Boys QuintetCharlie Parker's Be-Bop BoysCharlie Parker's Be-Bop-BoysRay Brown's Be Bop BoysThe Be Bop BoysThe Be-Bop BoyThe Be-Bop BoysThe BeBop BoysThe Bebop BoysThe Beebop BoysBud PowellSonny StittKenny ClarkeKenny DorhamCurly RussellDuke JordanFats NavarroTerry GibbsAl HallMorris LaneEddie de VerteuilWallace BishopClarence Ross + +997089Sonny Stitt All StarsCorrectSonny Stitt All Stars)Sonny Stitt All-StarsSonny Stitt's All StarsBud PowellSonny StittKenny ClarkeKenny DorhamAl HallSid CooperWallace Bishop + +997090Tommy StevensonAmerican jazz trumpeter, nickname "Steve", Born February 21, 1914, died October, 1944 in New York City, New York. +Stevenson played with Jimmie Lunceford (1933-1935), Blanche Calloway (1935-1936), Don Redman (1936-1940), Coleman Hawkins, Lucky Millinder, Slim Gaillard, Cootie Williams (1944).Needs Votehttps://en.wikipedia.org/wiki/Tommy_Stevensonhttps://www.allmusic.com/artist/tommy-stevenson-mn0000515702/biographyThomas StevensonTom StevensonJimmie Lunceford And His OrchestraCootie Williams And His OrchestraColeman Hawkins And His OrchestraDon Redman And His OrchestraColeman Hawkins Big Band + +997311Ludovic BallaFrench violinist, born 1969. +Member of ECYO (1987-1989). First soloist of Orchestre National De L'Opéra De Paris (1993-1998).Needs VoteLudo BallaLudovic BalaOrchestre National De L'Opéra De ParisEuropean Union Youth Orchestra + +997415Franco TraversoItalian opera tenor singer. He performs with Coro of Teatro Regio di Torino in Italy.Needs Votehttp://www.teatroregio.torino.it/persone/complessi-artistici/coroOrchestra dell'Accademia Nazionale di Santa Cecilia + +997509Lawrence NeumanViolist.Needs VoteLawrence NeumannMiami String QuartetChicago Symphony OrchestraThe Saint Paul Chamber Orchestra + +997510Fox FehlingFox Roberta Louise FehlingFox Fehling (23 June 1949 – 7 July 2025) was an American violinist. She was a member of the [a837562] from 1979 to 2022.Needs Votehttp://www.wlakemusic.org/Jpegs/FoxFehling.htmlChicago Symphony OrchestraBergen Filharmoniske OrkesterChicago Lyric Opera Orchestra + +997511Qing HouViolinist.Needs VoteSan Francisco SymphonyChicago Symphony Orchestra + +997512Ronald SatkiewiczRonald Satkiewicz is an American violinist and violin teacher. He's a member of the [a837562] since 1979.Needs VoteRon SatkiewiczColumbus Symphony OrchestraChicago Symphony OrchestraEastman-Rochester OrchestraColumbus String Quartet + +997513Baird DodgePrincipal 2nd Violin of the Chicago Symphony Orchestra. + +Son of the composer [a=Charles Dodge]. +Needs VoteChicago Symphony OrchestraJames Matheson String Quartet + +997515Karen DirksKaren Moe DirksKaren Dirks (12 June 1947 - 25 October 2023) was an American violist and violinist. She's the mother of [a2045439].Needs VoteChicago Symphony OrchestraSan Diego Symphony + +997516Katinka KleijnKatinka Kleijn (born 1970) is a Dutch cellist and composer.Needs Votehttp://www.katinkakleijn.com/http://www.myspace.com/katinkakleijnChicago Symphony OrchestraInternational Contemporary EnsembleEl Infierno MusicalDistrict 97 + +997517Lee LaneViolist, born in Texas. + +Worked for a year with the Minnesota Orchestra before joining the Chicago Symphony Orchestra in 1971. He retired in 2009. +Needs VoteLee R. LaneChicago Symphony OrchestraMinnesota Orchestra + +997520Lei HouViolinist.Needs VoteChicago Symphony OrchestraNational Symphony Orchestra + +997585György Cziffra, Jr.Hungarian pianist and conductor, born in 1941 and died 1981 in France. He was the son of [a837600].CorrectCziffra JuniorCziffra, Jr.Georges Cziffra JnrGyorgy Cziffra JnrGyorgy Cziffra Jr.Gyorgy Cziffra JuniorGyorgy Cziffra, JuniorGyörgy CziffraGyörgy Cziffra Jnr.György Cziffra JrGyörgy Cziffra Jr.György Cziffra JuniorДьердь Циффра-мл.ジョルジ・シフラJr. + +997682Will SandersDutch horn player and music professor, born 1965 in Venlo, Netherlands.Needs VoteSinfonieorchester Des SüdwestfunksSymphonie-Orchester Des Bayerischen RundfunksOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspieleLinos EnsembleGerman Brass + +997683Eberhard MarschallClassical bassoonist.Needs Votehttp://www.br.de/radio/br-klassik-english/symphonieorchester/orchestra/members-bassoon-eberhard-marschall100.htmlE. MarschallSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerLinos EnsembleDie Deutschen BläsersolistenBundesjugendorchester + +997685Rainer Müller-van RecumGerman clarinetist, born 1957 in Hanover, Germany.CorrectRainer MüllerRainer Müller Van RecumRainer Müller van RecumEnsemble ModernJunge Deutsche PhilharmonieRundfunk-Sinfonieorchester SaarbrückenLinos EnsembleDeutsche Radio Philharmonie Saarbrücken Kaiserslautern + +997974Nico SchippersDutch trombonist, born in 1974.CorrectConcertgebouworkestNetherlands Ballet Orchestra + +998332Jean-Christophe Maillard (2)French classical musette/bagpipes player and musicologist (1954 - 2015). +He also appears as a liner notes author.Needs Votehttp://journals.openedition.org/ethnomusicologie/2529J. MaillardJ.C. MaillardJean MaillardJean-Christoph MaillardJean-Christophe MaillardJean-Christophe MailllardLa Chapelle RoyaleLe Concert Des nationsLes Musiciens Du LouvreOrchestra Of The 18th CenturyBoston Early Music Festival Orchestra + +998334Blandine VerletBlandine VerletFrench harpsichordist. + +Born on February 27, 1942. +Dead on December 30, 2018. + +Since the 1970es, she's recorded around 100 albums (she began recording for Philips, switching later for the label Astrée), among others the complete works for harpsichord of [a=François Couperin], [a=Louis Couperin] and [a=Jean-Philippe Rameau]. She also recorded [a=Johann Sebastian Bach]'s Goldberg Variations (considered as "one of the finest harpsichord versions in the catalog") and Well-Tempered Keyboard. +Her repertoire ranges from the 16th century to the contemporary composers ([a=György Ligeti], Schapirra, [a=Georges Aperghis], [a=André Boucourechliev]). +She also plays clavichord, forte-piano and organ. +Needs Votehttps://fr.wikipedia.org/wiki/Blandine_VerletB. Verletブランディーヌ・ヴェルレEnglish Chamber OrchestraLa Grande Ecurié Et La Chambre Du RoyEnsemble Baroque De Nice + +998335Christophe CoinCellist, violist and conductor.Needs Votehttps://en.wikipedia.org/wiki/Christophe_Coinhttps://www.imdb.com/name/nm1087907/C. CoinCh. CoinChristopher CoinCoinLes Arts FlorissantsThe Amsterdam Baroque OrchestraHesperion XXLa Petite BandeLes Talens LyriquesEnsemble Baroque De LimogesIl Giardino ArmonicoSchola Cantorum BasiliensisQuatuor MosaïquesGli Angeli Genève + +998337Olivier SchneebelliOlivier SchneebeliFrench conductor, mostly on Baroque Music releases. He created [a=Les Arts FLorissants] in 1987 with [a=William Christie] and is the director of [a=Les Pages Et Les Chantres Du Centre De Musique Baroque De Versailles] since 1991.Needs VoteO.SchneebelliOlivier SchneebeliSchneebeliSchneebelliОливье Шнебелиオリヴィエ・シュネーベリLes Arts FlorissantsLes Pages Et Les Chantres Du Centre De Musique Baroque De Versailles + +998339Claude WassmerClassical bassoonist.Needs VoteC. WassmerClaude WassnerLes Arts FlorissantsHuelgas-EnsembleLa Chapelle RoyaleLe Parlement De MusiqueHesperion XXIl Seminario MusicaleLa Grande Ecurié Et La Chambre Du RoyLe Concert Des nationsLa Petite BandeLes Talens LyriquesEnsemble Baroque De LimogesRicercar ConsortA Sei VociLes Sacqueboutiers De ToulouseEnsemble Baroque De NiceCappella ColoniensisLinde-ConsortConcerto CastelloAmphion Bläseroktett + +998340Elisabeth JoyéFrench harpsichordist.Needs VoteÉlisabeth JoyéLa Simphonie Du MaraisLa Canzona + +998416Charles LecocqAlexandre Charles LecocqAlexandre Charles Lecocq (June 3, 1832, Paris – October 24, 1918, Paris) was a French musical composer.Needs Votehttp://en.wikipedia.org/wiki/Alexandre_Charles_Lecocqhttps://adp.library.ucsb.edu/names/103749C. LacocqC. LecocqC. LecoqCarlo LecocqCh. LecocqCh. LecoqCharles LecoqLecocqLecocq, CharlesLecoqŠ. LekokasЛекокШ. Лекок + +998669Mort HillmanMorton C. HillmanAmerican label executive, producer, vocalist and trumpeter. +He started his career as trumpeter for [a229639] (1947) +and singer in the vocal group [a8226624]. +Founder of [l905188] label (1956), sales manager at [l253886] (1957), +A&R executive at [l102429] (1957 - 1964) and Vice president of [l107625] (1964 - 1965). +He later become a politician, member of the New York State Assembly (1987 - 1992) + +Born: October 17, 1926 in Cincinnati, Ohio +Died: February 3, 2014, in Delray Beach, FloridaNeeds Votehttp://campber.people.clemson.edu/salem.htmlhttp://people-vs-drchilledair.blogspot.com/2014/02/mort-hillman-rip.htmlhttp://people-vs-drchilledair.blogspot.com/2008/12/top-to-bottom-78-rpm-acetate-label-mort.htmlHillmanTommy Dorsey And His OrchestraThe C-Notes (2) + +998775Jean-Claude AuclinFrench classical cellistNeeds VoteJ-C. AuclinJC AuclinJc AuclinJean Claude AuclinJean-Claude AuchinLes EnfoirésOrchestre Philharmonique De Radio France + +998809Ívar RagnarssonIcelandic musician, engineer and producer. +He was the bassist of [a1478801] aka [a336103]. After the band split up in the mid-90's he focussed on recording/mixing engineering and producing.Needs VoteIvarIvar Bongo RagnarssonIvar RagnarssonIvor Bongo RagnarssonÍvan RagnarssonÍvarÍvar "Bongo" RagnarssonÍvari RagnarssyniÍvars RagnarssonarIvar BongoReptile (4)Risaeðlan + +998818Gary MappJazz bassist (b. Brooklyn, NYC, January 9, 1926 - d. 1987)Needs VoteG. MappGerry MappThelonious Monk Trio + +998824Neithard ResaGerman violist and former 1st principal viola at the [a=Berliner Philharmoniker], born 1950 in Berlin, Germany.Needs VoteNeithardt ResaNeithart ResaBerliner PhilharmonikerPhilharmonia Quartett Berlin + +998825Rainer ZepperitzPaul Rainer ZepperitzGerman double-bass player, born 25 August 1930 in Bandung, Indonesia and died 23 December 2009 in Berlin, Germany.CorrectPaul Rainer ZepperitzPaul-Rainer ZepperitzZepperitzРайнер Цепперитц라이너 쩨페리츠Berliner PhilharmonikerPhilharmonisches Oktett Berlin + +998854Rainer HöpfnerGerman sound & editing engineer, works at [a1110370].Needs VoteHöpfnerRainer Hoepfnerライナー•ヘプフナーEmil Berliner Studios + +9989062 LifesCorrect2Life2lifeLuca Antolini DJDyorLunatic (54) + +998946Matthias RüttersClassical wind instrumentalistNeeds VoteBerliner Philharmoniker + +998967Drew MinterAmerican countertenor.Needs Votehttp://www.drewminter.com/http://newberryconsort.org/artists/drew-minter/D. MinterMinterThe Academy Of Ancient MusicClemencic ConsortThe Bach EnsembleTrefoil (5)The Newberry ConsortSacabuche + +999186Catherine DuboscFrench soprano. She was born 12 March 1959 in Lille, France.Needs VoteC. DuboscDuboscThe Sixteen + +999656Claudine GarçonClassical violinistNeeds VoteClaudine GarconAlhambra (2)Orchestre National De France + +999665Marc DuprezClassical violinist.Needs VoteEnsemble Orchestral De ParisOrchestre De Chambre De ParisQuatuor Viotti + +999668Anne-Marie JacquinFrench classical Mezzo-soprano & Soprano vocalistNeeds VoteLe Concert SpirituelLes Arts FlorissantsChoeur Arsys BourgogneCanticum NovumEnsemble Arpegiatta + +999670Anne LelongClassical mezzo-soprano vocalistCorrectLes Arts Florissants + +999671Florence RecanzoneClassical mezzo-soprano vocalist.Needs Votehttps://www.florence-recanzone.com/Choeur de Chambre de Namur + +999673Isabelle SauvageotSoprano vocalistNeeds VoteLes Arts FlorissantsEnsemble Jacques Moderne + +999676Florent BarroisFrench horn player.Needs VoteOrchestre Des Concerts LamoureuxBekummernisQuintette Magnifica + +999677Jory VinikourAmerican harpsichordist and organist, born 12 May 1963.Needs Votehttp://www.joryvinikour.comPulcinellaGabrieli PlayersLes Musiciens Du Louvre + +999749Patrick BeuckelsClassical Traverso flautist.Needs VotePatrick BeukelsCollegium VocaleLa Chapelle RoyaleIl FondamentoIl Seminario MusicaleCollegium Instrumentale BrugenseRicercar ConsortRicercar Academy + +999750Renaud MachartRenaud Machart, born 22 March 1962, is a French musicologist, author and radio producer, until 1992 he also appeared as a baritone vocalist.Correcthttp://fr.wikipedia.org/wiki/Renaud_MachartRenaud Machardルノー・マシャールCollegium VocaleLa Chapelle Royale + +999751Marc HantaïClassical flautist.Needs VoteHantaïM. HantaiM. HantaïMarc HantaiCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLe Concert Des nationsLa Petite BandeLes Talens LyriquesRicercar ConsortBalthasar-Neumann-EnsembleLe Concert FrançaisThe Kuijken EnsembleOrchester Der J.S. Bach Stiftung + +999878Maï Ngo PhuongClassical violinist.Needs VoteMai NgoMaï NgoMaï Phuong NgoNgoOrchestre De ParisOrchestre De Chambre Jean-François PaillardEnsemble Baroque De Limoges + +999882Gilles HenryFrench violinist.Needs VoteGilles HenriOrchestre De ParisOrchestre Poitou-CharentesTrio HenryOrchestre De Chambre Nouvelle-Aquitaine + +999883Nicolas CarlesViola player.Needs VoteOrchestre De ParisThymos Quartet + +999895Abel BaerAmerican composer +Born March 16, 1893 in Baltimore, Maryland, USA — died October 5, 1976 in New York, USA. He graduated from the College of Physicians and Surgeons and began a career in Dentistry, serving in World War I as a 2nd Lt for the USAAF. It wasn’t until 1920 that he gave up medicine and joined a music publisher as a staff writer. One of the most popular collaborators during the heyday of Tin Pan Alley, Baer collaborated with L. Wolfe Gilbert, Stanley Adams, Cliff Friend, Sam Lewis and Mabel Wayne, among others. His catalog includes such hits as “June Night”, “There Are Such Things”, “My Mother’s Eyes”, “Gee Buy You’re Swell”, “I Miss My Swiss”, “Don’t Wait ’Til the Night Before Christmas”, “Lucky Lindy”, “It’s the Girl”, “Am I To Blame?”, “Mama Loves Papa”, “Blue Hoosier Blues”, “Garden in Granada”, “When the One You Love, Loves You”, “Don’t Wake Me Up, Let Me Dream”, “The Night When Love Was Born”, “Chapel of the Roses”, “Harriet” and “I’m Sitting Pretty.” He also contributed songs to Hollywood movies and Broadway musicals. Needs Votehttps://en.wikipedia.org/wiki/Abel_Baerhttps://adp.library.ucsb.edu/names/111920A. BacerA. BaerA. BaesA. BearA.BaerAbe BaerAble BaerAlbert BaerBaerBaer AbelBareBauerBayerBearBeerBoerBreerD. BaerDaerG. BaerMel BaerБайер + +999914Pyotr Ilyich TchaikovskyПётр Ильич Чайковский (Transliterated: Pyotr Ilyich Chaykovsky / Anglicised: Peter Ilyich Tchaikovsky)Russian composer from the Romantic era (born 25. April 1840 in Kamsko-Votkinsk Zavod - died 25. October 1893 in Saint Petersburg).Needs Votehttp://www.tchaikovsky-research.org/https://en.wikipedia.org/wiki/Pyotr_Ilyich_Tchaikovskyhttps://www.imdb.com/name/nm0006318/https://adp.library.ucsb.edu/names/102415https://www.allmusic.com/artist/pyotr-ilyich-tchaikovsky-mn0000317716Adapted From TchaikowskyCaikovskiCaikovskijCajcovskijCajkovskijCeaikovskiCeaikovskyChaikoskyChaikovskiChaikovskiiChaikovskiyChaikovskyChaikowskiChaikowskyCiaickovskiCiaicovskiCiaicovskyCiaicowskiCiaikoskiCiaikosvkiCiaikovskiCiaikovski*CiaikovskijCiaikovskjCiaikovskjiCiaikovskyCiaikowskiCiaikowskyCiajcovskijCiajkovskijCiajkowskiCiajkowskijCiajkowskyCiakovskiCiakovskyCiakowskyCiaokovskiCiaïkovskyCsajkovszkijCsajkovszkij P. I.CsajkovszkyCsajkovszkíjCsajkowskyCsájkovszkíjCzaikowskiCzajkowskiCzajkowskiegoF. TschaikowskyH. CramerI TchaikovskyI. TchaikovskyIlich TchaikovskyIlyich TchaikovskyIotr Iľjič ČajkovskijP I CiaikovskyP I TchaikovskyP I TschaikowskyP TchaikovskyP TjajkovskijP. I. TchaikovskyP. I. TschaikowskyP. CajkovskiiP. CajkowskiP. ChaikovskiP. ChaikovskyP. ChaikowskiP. CiaikovskiP. CiaikovskyP. Ciaikowski.RielP. CiakovskiP. CsajkovszkijP. CzajkowskiP. CzajkowskyP. CzajowskiP. CzjkowskiP. F. TchaikovskyP. I TchaikovskyP. I. TchaikovskyP. I. TschaikowskyP. I. ČajkovskijP. I. CajkovskiP. I. CajkovskijP. I. CeaikovkiP. I. CeaikovskiP. I. ChaikovskiP. I. ChaikovskyP. I. CiaicovskiP. I. CiaicowskiP. I. CiaikovskiP. I. CiaikovskyP. I. CiaikowskiP. I. CiaikowskyP. I. CiakovskiP. I. CiakovskyP. I. CiakowskiP. I. CiakowskyP. I. CsajkovszkijP. I. ČajkovskiP. I. TchaikovksiP. I. TchaikovskiP. I. TchaikovskiiP. I. TchaikovskiyP. I. TchaikovskjP. I. TchaikovskyP. I. TchaikowskiP. I. TchaikowskyP. I. TchaïkovskiP. I. TchaïkovskyP. I. TchaïkowskyP. I. TjaikovskyP. I. TjajkofskijP. I. TschaikovskiP. I. TschaikovskijP. I. TschaikovskyP. I. TschaikowskiP. I. TschaikowskijP. I. TschaikowskyP. I. TschaïkowskyP. I. TshaikovskyP. I. TsjaikovskiP. I. TsjaikovskijP. I. TsjaikowskiP. I. TsjaikowskyP. I. ČajkovskiP. I. ČajkovskijP. I. ČajkovskýP. I. ČajkowskijP. I.TchaikovskyP. I.TchaïkovskiP. I.TchaïkovskyP. I.TschaikowskyP. I: TchaikovskyP. Iljič ČajkovskiP. Iljitsch TschaikowskyP. Ilyich CiaikovskiP. Ilyich TchaikovskyP. Ilyich TschaikowskyP. J. TchaikovskiP. J. TchaikowskyP. J. TschaikowskyP. J. TschaìkovszkyP. J. TschaìkowskyP. J. ČajkovskýP. L. TchaikovskyP. T.ChaikovskyP. TchaikoswskyP. TchaikovksyP. TchaikovskiP. TchaikovskijP. TchaikovskyP. TchaikowskiP. TchaikowskyP. TchaikvskyP. TchaiskowskyP. TchaykovskyP. TchaïkovskiP. TchaïkovskyP. TchaïkowskyP. TchoikovskyP. ThaikovskyP. ThikovskyP. TjajkovskijP. TsaikovskiP. TsaikovskijP. TsaikovskyP. TsaikowskiP. TschaikovskiP. TschaikovskijP. TschaikovskyP. TschaikowskiP. TschaikowskijP. TschaikowskyP. TschaikowsyP. TschaïkowskyP. TshaikovskiP. TsjaikofskiP. TsjaikovkijP. TsjaikovskiP. TsjaikovskyP. TsjaikowskiP. TšaikovskiP. TšaikovskyP. ČaikovskiP. ČaikovskijP. ČaikovskisP. ČaikovskyP. ČajkovskiP.-I TchaikowskyP.-I. TchaikovskiP.-I. TchaikovskyP.-I. TchaikowskyP.-I. TchaïkovskiP.-I. TchaïkovskyP.-I. TchaïkowskyP.-i TchaikowskyP.ChaikovskiP.CiaikovskiP.CzajkowskiP.I .TchaikovskyP.I TchaikovskyP.I TchaikowskyP.I TchaïkovskyP.I. TchaikovskyP.I. ATchaikovskiP.I. CeaikovskiP.I. ChaikovskiP.I. ChaikovskiyP.I. ChaikovskyP.I. CiaikovskiP.I. CiaikovskijP.I. CiaikovskyP.I. CiaikowskyP.I. CiakovskiP.I. CiakowskyP.I. CsajkovszkijP.I. TchaikofskiP.I. TchaikovskiP.I. TchaikovskiyP.I. TchaikovskyP.I. TchaikowskiP.I. TchaikowskyP.I. TchaïkoskyP.I. TchaïkovskiP.I. TchaïkovskyP.I. TchaïkowskyP.I. TjajkovskiP.I. TsaikowskyP.I. TschaikovskyP.I. TschaikowskiP.I. TschaikowskijP.I. TschaikowskyP.I. TschaïkovskyP.I. TshaikovskyP.I. TsjaikofskiP.I. TsjaikovskiP.I. TsjaikovskyP.I. TsjaikowskiP.I. TsjaikowskyP.I. ČajkovskiP.I. ČajkovskijP.I. ČajkovskýP.I. チャイコフスキーP.I.CeaikovskiP.I.CiaikoskiP.I.CiaikovskiP.I.CiaikowskyP.I.TchaikovskiP.I.TchaikovskyP.I.TchaikowskyP.I.TschaikovskiP.I.TschaikowskyP.I.TshaikowskyP.I.ČajkovskiP.I.チャイコフスキーP.J TchaikovskyP.J. CiaikowskiP.J. CiaikowskyP.J. TchaikovskyP.J. TschaikowskyP.J. TsjaikowskyP.J.TschaikowskiP.L. TchaïkovskyP.L. ČajkovskiP.TchaikovskyP.TchaikowskyP.TchaïkovskyP.ThaikovskyP.TschaikovskyP.TschaikowskiP.TschaikowskyP.TsjaikovskiP.ČaikovskijP.チャイコフスキーP: TschaikowskiPI TchaikovskyPedro I. TchaikowskyPetar I. ČajkovskiPetar Ilić ČajkovskiPetar Ilič ČajkovskiPetar Iljić ČajkovskiPetar Iljič ČajkovskiPetar Ilyich TchaikovskyPetar ČajkovskiPete Ilyitch TschaikowskyPeter I. TchaikovskyPeter Iljitsch TschaikowskyPeter Ilych TchaikovskyPeter TschaikowskiPeter CiaikovskiPeter CiaikovskyPeter CiaikowskiPeter CiaikowskyPeter I TchaikovskyPeter I TchaikowskyPeter I TschaikowskiPeter I TschaikowskyPeter I. TchaikovskyPeter I. CiaikovskiPeter I. CiaikowskiPeter I. TchaikovksyPeter I. TchaikovskijPeter I. TchaikovskyPeter I. TchaikowskiPeter I. TchaikowskyPeter I. TchaïkovskiPeter I. TchaïkowskyPeter I. TjajkovskijPeter I. TschaikovskiPeter I. TschaikovskyPeter I. TschaikowskiPeter I. TschaikowskijPeter I. TschaikowskyPeter I. TschailowskyPeter I. TschakowskiPeter I. TsjaikofskiPeter I. TsjaikowskyPeter I. TsjajkovskijPeter I. ČajkovskiPeter I.TchaikovskyPeter I.TchaikowskyPeter I.TschaikowskiPeter I.TschaikowskyPeter Iijitsch TchaikovskyPeter Iilych TchaikovskyPeter Iilyich TchaikovskyPeter Iiyich TchaikovskyPeter Il'jič ČajkovskijPeter Il'yich TchaikovskyPeter Ilic CiaicovskiPeter Ilic CiaikovskiPeter Ilic CiaikovskijPeter Ilic CiaikovskyPeter Ilic CiakovskiPeter Ilic TschaikowskyPeter Ilich CiaikovskiPeter Ilich CiaikovskyPeter Ilich CiaikowskyPeter Ilich CiakovskiPeter Ilich CiaokovskiPeter Ilich TchaikovskiPeter Ilich TchaikovskyPeter Ilich TchaikowskyPeter Ilich TchaïkovskyPeter Ilich TschaikovskyPeter Ilich TschaikowskyPeter Ilich TschaïkovskyPeter Ilick TchaikovskyPeter Iliich TchaikovskyPeter Ilijitsch TschaikowskyPeter Ilijitsj TsjaikofskiPeter Ilijitsj TsjaikofskyPeter Ilijtsch TschaikowskyPeter Ilisch TchaikovskyPeter Ilitch TchaikovskiPeter Ilitch TchaikovskyPeter Ilitch TchaikowskyPeter Ilitch TschaikowskyPeter Ilitsch TchaikovskyPeter Ilitsch TschaikowskyPeter Iliych TchaikovskyPeter Iliych TchaïkovskyPeter Iliyitch TchaikovskyPeter Iliytch TchaikovskyPeter Ilič ČajkovskiPeter Ilj. TschaikowskiPeter Ilj. TschaikowskyPeter Iljetsch TschaikowskyPeter Iljic CiaikovskiPeter Iljich TchaikovskyPeter Iljich TchaikowskyPeter Iljisch TschaikowskyPeter Iljitch TchaikovskyPeter Iljitch TchaikowskyPeter Iljitch TschaikowskiPeter Iljitch TschaikowskyPeter Iljitch TschaïkowskyPeter Iljitch TsjaikowskiPeter Iljitj TjajkovskijPeter Iljitj TschaikovskyPeter Iljits TchaikowskyPeter Iljitsch RschPeter Iljitsch TaschaikowskyPeter Iljitsch TchaikovskyPeter Iljitsch TchaikowskiPeter Iljitsch TchaikowskyPeter Iljitsch TschaikovskyPeter Iljitsch TschaikowksyPeter Iljitsch TschaikowskiPeter Iljitsch TschaikowskijPeter Iljitsch TschaikowskyPeter Iljitsch TschaikowsyPeter Iljitsch TschaiowskyPeter Iljitsch TschajkowskijPeter Iljitsch TschaïkowskyPeter Iljitsch TschiaikowskyPeter Iljitsch TschikowskyPeter Iljitsch-TschaikowskyPeter Iljitsch. TchaikowskyPeter IljitschTschaikowskyPeter Iljitsj TchaikovskyPeter Iljitsj TchaikowskyPeter Iljitsj TschaikowskyPeter Iljitsj TsjaikofskiPeter Iljitsj TsjaikofskyPeter Iljitsj TsjaikovskiPeter Iljitsj TsjaikowskiPeter Iljitsj TsjaikowskyPeter Iljić ČajkovskiPeter Iljič ČajkovskiPeter Iljič ČajkovskijPeter Iljtsch TchaikovskyPeter Iljtsch TschaikowskyPeter Ilkitsch TschaikowskyPeter Illic TscaikovskyPeter Illic-TschaikowskyPeter Illich TchaikovskPeter Illich TchaikovskiPeter Illich TchaikovskyPeter Illich TchaikowskyPeter Illich TchaïkowskyPeter Illitch TchaikovskyPeter Illitch TchaikowskyPeter Illitch TchaïkovskiPeter Illitch TchaïkovskyPeter Illitsch CiaikovskiPeter Illitsch TschaikowskyPeter Illiyich TchaikovskyPeter Illjitsch TschaikovskyPeter Illjitsch TschaikowskyPeter Illych TchaikovskyPeter Illych TschaikovskyPeter Illyich TchaikovskyPeter Illyitch TchaikovskyPeter Iluc TchaikovskyPeter Ilych ChaikovskiyPeter Ilych TchaikovskiPeter Ilych TchaikovskyPeter Ilyich ChaikovskijPeter Ilyich CiaikovskijPeter Ilyich CiaikovskyPeter Ilyich CiaikowskyPeter Ilyich CiakowskyPeter Ilyich TchaikovksyPeter Ilyich TchaikovskiPeter Ilyich TchaikovskyPeter Ilyich TchaikowskyPeter Ilyich TchaivoskyPeter Ilyich TchaïkovskyPeter Ilyich TschaikovskyPeter Ilyich TschaikowskyPeter Ilyich TsjaikovskyPeter IlyichTchaikovskyPeter Ilyicth TchaikovskyPeter Ilyieh TchaikovskyPeter Ilyitch TchaikovskyPeter Ilyitch TchaikowskyPeter Ilyitch TchaïkovskyPeter Ilyitch TschaikowskyPeter Ilyitsch TschaikovskyPeter Ilyitsch TschaikowskijPeter Ilyitsch TschaikowskyPeter Ilytch TchaikovskyPeter Ilytch TchaikowskyPeter Ilytich TchaikovskyPeter Il’Yich TchaikovskyPeter Il’yich TchaikovskyPeter Iryich TchaikovskyPeter Itlitsch TchaikovskyPeter Iuitsch TchaikovskyPeter Iľjič ČajkovskijPeter J. TchaikovskyPeter J. TchaikowskiPeter J. TschaikowskiPeter J. TschaikowskyPeter J.TchaikovskyPeter J.TschaikowskyPeter Jljitsch TschaikowskyPeter Lich TchaikowskyPeter Litch TchaikovskyPeter Llyitch TchaikovskyPeter T. TchaikovskyPeter T. TschaikowskyPeter TaikowskyPeter TchaicovskyPeter TchaikovksyPeter TchaikovkyPeter TchaikovskiPeter TchaikovskyPeter TchaikowskiPeter TchaikowskyPeter TchailovskyPeter TchaïkovskiPeter TchaïkovskyPeter TchaïkowskyPeter TjaikovskiPeter TjaikovskijPeter TjaikovskyPeter TjajkovskijPeter TsaikovskiPeter TschaikovkijPeter TschaikovksyPeter TschaikovskyPeter TschaikowksijPeter TschaikowkskyPeter TschaikowksyPeter TschaikowkyPeter TschaikowskPeter TschaikowskiPeter TschaikowskijPeter TschaikowskyPeter Tschaikowsky:Peter TschaikowsyPeter TschajkowskijPeter TschajkowskyPeter TschakowskyPeter TschaykowskyPeter TsjaikofskiPeter TsjaikovskiPeter TsjaikovskijPeter TsjaikovskyPeter TsjaikowskijPeter TsjaikowskyPeter TsjajkovskiPeter TsjajkovskijPeter TšaikovskiPeter Ylyich TchaikovskyPeter Ylyitch TchaikovskyPeter iljitsch TschaikowskyPeter llyich TchaikovskyPeter Îljitsch TschaikowskyPeter İliç ÇaykovskiPeter-Iliitch TschaikowskyPeter-Illich TchaikowskyPeter-Illich TchaïkowskyPeter. I. TchaikovskyPeter. I. TschaikowskiPeter. I. TschaikowskyPeter. J. TschaikowskyPeterTchaikovskyPetere I. TschaikowskyPeterr Iljitsch TschaikowskyPetr I. ChajkovskijPetr I. TschaikowskiPetr I. ČajkovskijPetr Iijič ČajkovskijPetr Il'Ic CajkovskijPetr Il'Ič ČajkovskijPetr Il'ic CajkovskijPetr Il'ic CiaikovskiPetr Ilic CajkovskijPetr Ilic CiaikovskiPetr Ilic CiajkovskijPetr Ilic TchaikovskyPetr Ilich ChajkovskijPetr Ilich CiajcovskijPetr Ilitch TchaikovskiPetr Ilitch TchaikovskyPetr Iljitsch TschaikowskyPetr Iljič ČajkovskijPetr Iljič ČaikovskijPetr Iljič ČajkovskijPetr Iljič ČajkovskýPetr Iljič ČakovskijPetr Ilych TchaikovskyPetr Ilyich TchaikovskyPetr Ilyich TchaikovskyTchaikovskyPetr Ilyich TchaikowskyPetr Iľjič ČajkovskijPetr Llych TchaikovskyPetr Oljič ČajkovskijPetr TchaikovskyPetr TjajkovskijPetr ČajkovskiPetr Čajkovski jPetr ČajkovskijPetr. I. TchaikowskyPeyotr Ilyich TchaikovskyPiano Trio in A MinorPierre I. TchaïkovskyPierre Ilitch TchaikovskyPierre Ilitch TchaikowskyPierre Iljitch TchaikowskyPierre Illich TchaikowskyPierre Illitch TchaikovskyPierre TchaikovskiPierre TchaikovskyPierre TchaikowskyPierre-Illitch TschaikowskyPietr Ilych TchaikowskyPijotr Iljitsch TschaikowskyPiort Ilich TchaikovskyPiotor Ilic CiaikowskyPiotr ChaikovskiPiotr ChaikovskyPiotr CiaikovskiPiotr CiaikovskijPiotr CiakovskijPiotr CzajkowskiPiotr Czajkowski / Pyotr TchaikovskyPiotr Czajkowski / Pyotr TchaikowskyPiotr Hyitch TchaïkovskyPiotr I. CeaikovskiPiotr I. ChaikovskiPiotr I. CiaikovskiPiotr I. CiaikovskijPiotr I. CiaikovskyPiotr I. TchaikovskyPiotr I. TchaikowskyPiotr I. TchaïkovskiPiotr I. TchaïkovskyPiotr I. TschaikovskyPiotr I. TschaikowskyPiotr I.TchaikovskyPiotr I.TschaikowskiPiotr Iiic CiaikowskyPiotr Il'Yich TchaikovskyPiotr Il'ic CiaikovskiPiotr Il'ich TchaikovskyPiotr Il'yich TchaikovskyPiotr Il'yitch TchaïkovskyPiotr Ilic CiaikovskiPiotr Ilic Ciaikovski Ilic CiaikovskiPiotr Ilic CiaikovskijPiotr Ilic CiaikovskjPiotr Ilic CiaikovskyPiotr Ilic CiaikowskyPiotr Ilic CiajkowskijPiotr Ilic CiakovskyPiotr Ilic TchaikovskijPiotr Ilic TchaikovskyPiotr Ilich ChaikovskiPiotr Ilich ChaikovskyPiotr Ilich Chaikovsky:Piotr Ilich CiaikovskiPiotr Ilich CiaikovskijPiotr Ilich CiaikovskyPiotr Ilich TchaikovskiPiotr Ilich TchaikovskyPiotr Ilich TchaikowskiPiotr Ilich TchaikowskyPiotr Ilich TchaikwskyPiotr Ilich TchaïkovskiPiotr Ilich TchaïkovskyPiotr Ilich TjajkovskijPiotr Ilich TschaikowskyPiotr Ilici CeaicovskiPiotr Ilici CeaikovschiPiotr Ilici CeaikovskiPiotr Ilici CeaikovskyPiotr Ilici TschaikowskyPiotr Iliich CiaikovskiPiotr Iliich TchaikovskyPiotr Ilijch CiaikovskijPiotr Ilijch CiaikovsskijPiotr Ilitch TchaikovskiPiotr Ilitch TchaikovskyPiotr Ilitch TchaikowskyPiotr Ilitch TchaïkovksyPiotr Ilitch TchaïkovskiPiotr Ilitch TchaïkovskyPiotr Ilitch TchaĩkovskyPiotr Ilitch tchaïkovskiPiotr Iliyc CiaikovskyPiotr Iliych TchaikovskyPiotr Iliych TchaikowskyPiotr Iliych TchaïkovskiPiotr Iliytch TchaikovskiPiotr Iliytch TchaikovskyPiotr Ilič CiaikovskijPiotr Ilič CiakovskiPiotr Iljic CiaikovskiPiotr Iljicz CzajkowskiPiotr Iljitch TchaikovskyPiotr Iljitch TschaikowskyPiotr Iljitsch TchaikovskyPiotr Iljitsch TschaikovskyPiotr Iljitsch TschaikowskiPiotr Iljitsch TschaikowskijPiotr Iljitsch TschaikowskjiPiotr Iljitsch TschaikowskyPiotr Iljič ČajkovskijPiotr Illic CiaikovkyPiotr Illich CiaikovskyPiotr Illich TchaikovskyPiotr Illich TchaikowskyPiotr Illich TchaïkovskyPiotr Illich TchaïkowskyPiotr IllichTchaikovskyPiotr Illici CeaikovskiPiotr Illitch TchaichovskyPiotr Illitch TchaikovskiPiotr Illitch TchaikovskyPiotr Illitch TchaïkovskiPiotr Illitch TchaïkovskyPiotr Illitch TchaïkowskyPiotr Illitx TxaikovskiPiotr Illych TchaikovskyPiotr Illyich TchaikovskyPiotr Illyitch TchaikovskyPiotr Illytch TcaikovskyPiotr Illytch TchaikovskyPiotr Ilych CiaikovskiPiotr Ilych CiaikovskyPiotr Ilych TchaikovskiPiotr Ilych TchaikovskyPiotr Ilych TchaïkovskiPiotr Ilyic ChaikovskyPiotr Ilyich ChaikovskiPiotr Ilyich CiaikovskiPiotr Ilyich CiaikovskijPiotr Ilyich CiaikovskyPiotr Ilyich TchaikovskIPiotr Ilyich TchaikovskiPiotr Ilyich TchaikovskyPiotr Ilyich TchaikovsyPiotr Ilyich TchaikowskiPiotr Ilyich TchaikowskyPiotr Ilyich TchaikvoskyPiotr Ilyich TchakovskyPiotr Ilyich TchaïkovskiPiotr Ilyich TchaïkovskyPiotr Ilyich TchaïkowskyPiotr Ilyitch TchaikovkyPiotr Ilyitch TchaikovskiPiotr Ilyitch TchaikovskyPiotr Ilyitch TchaikowskiPiotr Ilyitch TchaikowskyPiotr Ilyitch TchaïkovskiPiotr Ilyitch TchaïkovskyPiotr Ilyitch ThaïkovskyPiotr Ilyitch TschaikovskyPiotr Ilytch TchaikovskyPiotr Ilytch TchaikowskyPiotr Ilytch TchaïkovskyPiotr Ilytch TchaïkowskyPiotr Ilytich TchaikovskiPiotr Ilytsch TchaikovskyPiotr Il’yich TchaikovskyPiotr IĽjič ČajkovskijPiotr Iľjič TchaikovskijPiotr Iľjič ČajkovskijPiotr Jllitch TchaikovskiPiotr Llic CiaikovskyPiotr Llyich TchaikovskiPiotr TchaikovskiPiotr TchaikovskyPiotr TchaikowskiPiotr TchaikowskyPiotr TchaïkovskiPiotr TchaïkovskyPiotr TjajkovskijPiotr TschaikovskijPiotr TschaikovskyPiotr TschaikowksyPiotr TschaikowskiPiotr Ílich ChaikosvkiPiotr ČaikovskijPiotr-Ilitch TchaikovskyPiotr-Illich TchaïkovskiPiotr-Illich TchaïkowskyPiotr-Illitch TchaikovskyPiotr-Illitch TchaikowskyPiotr-Illitch TchaïkovskyPiotr-Illitch TchaïkowskyPiotr-Ilych TchaikovskiPiotr-Ilych TchaïkovskiPiotr-Ilyich TchaikovskiPiotr-Ilyich TchaikovskyPiotras ČaikovskisPiotre CzajkowskiPiotyr Ilyich TchaikovskyPiotyr TchaikovskyPitor I. TschaikowskyPitor Illich TchaikovskyPitr Ilic CiaikovskijPiyotr Ilyitch TchaikovskyPjort TjajkovskijPjoter TsaikovskijPjotr CsajkovszkijPjotr CsajkovszkíjPjotr I. TchaikovskijPjotr I. TchaikovskyPjotr I. TschaikowskiPjotr I. TschaikowskijPjotr I. TschaikowskyPjotr I. TschajkovskijPjotr I. TsjaikovskiPjotr I. TsjaikowskiPjotr Il'yich TchaikovskyPjotr Ilch TchaikovskyPjotr Ilic CiajkovskijPjotr Ilich TchaikovskyPjotr Ilijich TschaikowskyPjotr Ilitch TchaikovskyPjotr Ilitj TjajkovskijPjotr Ilits TchaikovskyPjotr Ilitsch TschaikowskyPjotr Ilič CiajkovskijPjotr Ilič CjajkovskijPjotr Iljich TchaikowskyPjotr Iljich TschaikowskyPjotr Iljich TsjaikowskiPjotr Iljics CsajkovszkijPjotr Iljiisch TschaikowskiPjotr Iljitch TchaikovskyPjotr Iljitch TschaikowskiPjotr Iljitj TiaikovskijPjotr Iljitj TjajkovskijPjotr Iljits TsjaikovskiPjotr Iljitsch TchaikowskiPjotr Iljitsch TchaikovskyPjotr Iljitsch TchaikowskyPjotr Iljitsch TschaikovskiPjotr Iljitsch TschaikovskyPjotr Iljitsch TschaikowsiPjotr Iljitsch TschaikowskiPjotr Iljitsch TschaikowskijPjotr Iljitsch Tschaikowskij/Peter Illyitsch TchaikovskyPjotr Iljitsch TschaikowskyPjotr Iljitsch TsjaikofskiPjotr Iljitshc TschaikoskyPjotr Iljitsj TchaikofskyPjotr Iljitsj TchaikovskyPjotr Iljitsj TsjaikofksiPjotr Iljitsj TsjaikofskiPjotr Iljitsj TsjaikoswkyPjotr Iljitsj TsjaikovskiPjotr Iljitsj TsjaikowskiPjotr Iljitsj TsjaikowskyPjotr IljitsjTsjaikovskiPjotr Iljič ČajkovskiPjotr Iljič ČajkovskijPjotr Ilrich TchaikovskyPjotr Ilyich TchaikovskyPjotr Ilyich TschaikowskyPjotr Ilyitsch TchaikovskyPjotr Ilyitsch TschaikovskiPjotr Iľjič ČajkovskijPjotr Jllitch TschaikowskyPjotr TchaikovskyPjotr TjaijkovskijPjotr TjaikovskijPjotr TjajkovskijPjotr TsaikovskiPjotr TsaikovskyPjotr TschaikovskyPjotr TschaikowskiPjotr TschaikowskyPjotr TschajkovskijPjotr TshaikovskiPjotr TshaikovskyPjotr TsjaikovskiPjotr TsjaikovskyPjotr TsjajkovskijPjotr TšaikovskiPjötr TschaikowskiPtitr Ilic CiaikovskijPyotr TchaikovskyPyotr CiaikovskiPyotr I TchaikovskyPyotr I. CiaikovskyPyotr I. TchaikovskyPyotr I.TchaikovskyPyotr II'yich TchaikovskyPyotr Iich TchaikovskyPyotr Il'Ic CiaikovskyPyotr Il'Yich TchaikovskyPyotr Il'ijc TchaikovskyPyotr Il'itsch TchaikovskyPyotr Il'iych TchaikovskyPyotr Il'ych TchaikovskyPyotr Il'yich TchaikovskyPyotr Il'yich TchaïkovskyPyotr IlIyich TchaikovskyPyotr Ilich TchaikovskyPyotr Ilich TchaïkovskyPyotr Ilich TschaikowskyPyotr Iliich TchaïkovskiPyotr Ilijc TchaikovskyPyotr Ilitch TchaikovskyPyotr Ilitch TchaïkovskyPyotr Ilitch TchaïkowskiPyotr Ilitj TjajkovskijPyotr Iliych TchaikovskyPyotr Iljic CiaikovskyPyotr Iljic CiaikowskiPyotr Iljic TchaikovskyPyotr Iljich ChaikovskiPyotr Iljich ChaikovskyPyotr Iljich TchaikovskyPyotr Iljitch TchaikowskyPyotr Iljitsch TchaikovskyPyotr Iljitsch TchaikowskyPyotr Iljitsch TschaikowskyPyotr IljitschTschaikowskyPyotr Iljitsj TchaikovskiPyotr Ill'yich TchaikovskyPyotr Illich TchaikovskyPyotr Illych TchaikovskyPyotr Illyich TchaikovskyPyotr Illyich TchaïkovskyPyotr Illyitch TchaikovskyPyotr Ily'ich TchaikovskyPyotr Ilych CiaikovskiPyotr Ilych CiaikovskyPyotr Ilych TchaikovskyPyotr Ilych TchaïkovskyPyotr IlyiTchaikovskyPyotr Ilyich ChaikovskiPyotr Ilyich ChaikovskijPyotr Ilyich ChaikovskyPyotr Ilyich CiaikovksyPyotr Ilyich CiaikovskiPyotr Ilyich CiaikovskijPyotr Ilyich CiaikovskiyPyotr Ilyich CiaikovskyPyotr Ilyich CiaikowskyPyotr Ilyich TchaikovskiPyotr Ilyich TchaikowskyPyotr Ilyich TchaïkovskiPyotr Ilyich TchaïkovskyPyotr Ilyich TchaïkowskyPyotr Ilyich TschaikovskyPyotr Ilyich TschaikowskyPyotr Ilyich/TchaikovskyPyotr Ilyitch TchaikovskiPyotr Ilyitch TchaikovskyPyotr Ilyitch TchaikowskyPyotr Ilyitch TchaïkovskyPyotr Ilytch TchaikovskyPyotr Ilytch TsjaikofskyPyotr Ilýich TchaikovskyPyotr Il’yich TchaikovskyPyotr Iyich TchaikovskyPyotr Iľitsch TchaikovskyPyotr Iľyich TchaikovskyPyotr Jlich TchaikovskyPyotr TchaikovskiPyotr TchaikovskyPyotr TchaikowskiPyotr TchaikowskyPyotr TchaïkovskyPyotr ThaikovskyPyotr TschaikovskyPyotr TschaikowskyPyotr-Ilyich TchaikovskyPytor I. TchaikovskyPytor IIyich TchaikovskyPytor Ii'Yich TchaikovskyPytor Il'yich TchaikovskyPytor Ilych TchaikovskyPytor Ilyich TchaikovskyPytor TchaikovskyPètrIl'ič ČajkovskijPëtr Il' Ič ČajkovskijPëtr Il'Ic CiaikovskiPëtr Il'ic CaikoskijPëtr Il'ic CiaikovskiPëtr Il'ic ČajkovskijPëtr Il'itch TchaikovskyPëtr Il'ič CiaikovskiPëtr Il'ič CiajkovskijPëtr Il'ič ČajkovkijPëtr Il'ič ČajkovskijPëtr Il'jič ČajkovskijPëtr Ill'ič ČajkovskijPëtr Il’Ič ČajkovskijPëtr ČajkovskijPïotr ChaikovskyPēteris ČaikovskisP・I・チャイコフスキーSaint Saëns CamilleTCHAIKOVSKYTachaikovskyTaschaikowskyTcaikovskiTcaikovskyTcha: KovskyTchaIkovskyTchaickowskiTchaicovskiTchaicovskyTchaikivskyTchaikoWskyTchaikoskyTchaikosvkyTchaikouskyTchaikov kyTchaikovksyTchaikovkyTchaikovshyTchaikovskTchaikovskITchaikovskiTchaikovski P.Tchaikovski Peter I.TchaikovskijTchaikovskiyTchaikovskyTchaikovsky (Pyotr Il'yich)Tchaikovsky De BrujoTchaikovsky P.Tchaikovsky P. I.Tchaikovsky P.I.Tchaikovsky PeterTchaikovsky Peter I.Tchaikovsky Peter IlyichTchaikovsky Pyotr IlyichTchaikovsky'sTchaikovsky's 6th SymphonyTchaikovsky*Tchaikovsky, P.Tchaikovsky, P.I.Tchaikovsky, PeterTchaikovsky, Peter IlyichTchaikovsky, PyotrTchaikovsky, Pyotr I.Tchaikovsky, Pyotr II'yichTchaikovsky, Pyotr Il'yichTchaikovsky, Pyotr IlyichTchaikovsky-ArnoldTchaikovsky.Tchaikovsky:TchaikovsyTchaikovwkyTchaikowksyTchaikowskiTchaikowskjTchaikowskyTchaikowsky, P.I.TchaikvskyTchaivovskyTchajkovskiTchajkovskyTchalkovskyTcharkovskyTchaÏkowskyTchaîkovskyTchaïkosvkiTchaïkovksyTchaïkovskiTchaïkovskyTchaïkovsky P. I.Tchaïkovsky P.I.Tchaïkovsky'sTchaïkovsky, Pyotr IlyichTchaïkowskiTchaïkowski P.I.TchaïkowskyTchiakovskyTchikavoskyTchikovskyTciaikovskiTciakowskiTjaikovskiTjaikovskijTjaikovskyTjaikowskiTjajcovskiTjajkovksijTjajkovskiTjajkovskijTjajkovskij, Pjotr IlitjTrad.TsaikovksiTsaikovskiTsaikovskijTsaikovskyTsaikowskiTsaikowskyTschaichovskyTschaichowskyTschaik.TschaikovsckiTschaikovskiTschaikovskyTschaikowksyTschaikowkyTschaikowskiTschaikowskijTschaikowskyTschaikowsky, Iijitsch PeterTschaikowsky, Peter I.Tschaikowsky, Peter IljitschTschaikowsky, Piotr IljitschTschaikowsyTschajkowskiTschajkowskyTschakowskiTschalkowskyTschaokovskyTschaykowskyTschaïkovskiTschaïkovskyTschaïkowskiTschaïkowskyTshaikovskiTshaikovskijTshaikovskyTshaikowskiTshaikowskiyTshaikowskyTsjaikofskiTsjaikorskyTsjaikoswkiTsjaikovskiTsjaikovskyTsjaikowskiTsjaikowskyTsjajkovkijTsjajkovksijTsjajkovskijTwchaikowskyTzaikowskyTŝaikovskiTšaikovskichaikovskytchaikovskyÇaykovskiČaikovskiČaikovskijČaikovskisČajkovskiČajkovskijČajkovskyČajkovskýČiaikovskijΠιοτρ Ίλιτς ΤσαϊκόφσκιΤσαικόφσκιΤσαϊκοφσκιΤσαϊκόφσκιА.И.ЧайковскийИ. ЧайковскийП, ЧайковскийП. И. ЧайковскийП. И. ЧайкoвскийП. И. ЧайковскiйП. И. ЧайковскиП. И. ЧайковскийП. И. ЧайковскійП. И. ЧајковскиП. ЧайкoвскагоП. ЧайкoвскийП. ЧайковсийП. ЧайковскагоП. ЧайковскайП. ЧайковскиП. ЧайковскийП. Чайковский "P.I.Tchaikovsky"П. Чайковский (P. Tchaikovsky)П. Чайковский = П. TchaikovskyП. ЧайковскогоП. ЧайковскійП. ЧайковськийП. ЧафковскийП. ЧајковскиП.И. ЧайкoвскийП.И. ЧайковскийП.И. Чайковский (Tchaikovsky)П.И. ЧајковскиП.И.ЧaйковскийП.И.ЧайкoвскийП.И.ЧайковскийП.Й.ЧайковскиП.ЧайкoвскийП.ЧайковскийП.ЧайковскогоП.ЧайковскійПетар Илич ЧајковскиПетр ЧайкoвскийПетр Ильин ЧайковскийПетр Ильич ЧайкoвскийПетр Ильич ЧайковскийПетр ЧайкoвскийПетр ЧайковскийПетр Чайковский (Tchaikowsky)Петро Ілліч ЧайковськийПетро ЧайковськийПи. ЧайковскийПиотр ЧайковскийПьотр Илич ЧайковскиПьотр ЧайковскиПётр Ильи́ч Чайко́вскийПётр Ильич ЧайкoвскийПётр Ильич ЧайковскийПётр ЧайкoвскийПётр ЧайковскийЧаиковскийЧайкoвскагоЧайкoвскийЧайковскiйЧайковскагоЧайковскайЧайковскиЧайковскийЧайковский П.Чайковский П.И.Чайковский ПетрЧайковский Петр ИльичЧайковскогоЧайковскійЧайковськийЧајковскиפ.א. צ'ייקובסקיפיוטר איליץ' צ'ייקובסקיצ'ייקובסקיצ׳יקובסקיتشايكوفسكىچایکوفسکیチャイコフスキーピョートル·イリイチ·チャイコフスキ = Pyotr Ilyich Tchaikovskyピョートル・イリイチ・チャイコフスキーピョートル・イリイ・チャイコフスキ = Pyotr Ilyich Tchaikovskyピョートル・チャイコフスキーピョートル・チャイコフスキー;ペーター・チャイコフスキペーター・チャイコフスキーペーター・チャイコフスキー柴可夫斯柴可夫斯基차이콥스키 + +1000049Patricia ClarkSoprano singer from Glasgow, whose many recordings include traditional Scottish folk songs, pop, oratorio, and opera. Her vocalese became a signature sound of the Norrie Paramor Orchestra. She studied voice and piano at the Royal Scottish Academy of Music then at the Royal Academy of Music in London, where she was later a tutor and a fellow.Needs VoteClarkPatricia Clarkeパトリシア・クラークThe Ambrosian SingersAccademia MonteverdianaThe Saltire SingersThe Ambrosian Consort + +1000068Eben E. RexfordEben Eugene RexfordAmerican writer and poet, and author of lyrics to popular and gospel songs. +Born: July 16, 1848 +Died: October 18, 1916 +Needs Votehttp://en.wikipedia.org/wiki/Eben_E._Rexfordhttps://adp.library.ucsb.edu/names/107433E. E. RexfordE. RexfordE.E. RexfordEben E. RexEben Eugene RexfoEben RexEben RexfordEben RexfortHexfordRedfordRexRexford + +1000282Arend ProhmannProducer, mainly for classical releases.CorrectArendt Prohmann + +1000529Freddie MeyerAmerican born singer, who went to live in France in 1968 and formed Freddy Meyer & The Soul Company. +The Soul Company later emerged as [a252148] and after they split, Meyer recorded a bunch of singles under different names. +He has recorded about eight albums since then and can be found today singing in private parties and pubs all over Paris. +Needs Votehttp://www.freddiemeyer.nethttp://www.myspace.com/freddiemeyerF. MeyerF.MeyerFreddy MeyerMeyerMeyer Fred CharlesFreddy MeyerFreddi MeyerAbraham Bogart BandHi! (2) + +1000564Roger BrennerRoger Andrew BrennerBritish classical trombone & sackbut player, and teacher. Born in 1936 in London, England, UK; died in 2007. +He studied at [l680970]. 1st Trombone in the [a=Coldstream Guards]. Principal Trombone in [a=Royal Scottish National Orchestra] for a little longer than four years. Founder member of the [a=City Of London Sinfonia]. In the 1970s he became a member of the [a=Philip Jones Brass Ensemble] and stayed with them into the 1980s. He has also been part of the [a=London Symphony Orchestra]. He appeared with the [a=English Chamber Orchestra] through the 1980s and the 1990s. In his early fifties, he joined [a=The English National Opera Orchestra] as Co-Principal Trombone.Needs Votehttps://open.spotify.com/artist/3hLmV9pbDUlRiDTRvvdCgDhttps://music.apple.com/us/artist/roger-brenner/121421683https://www.feenotes.com/database/artists/brenner-roger/https://cityoflondonsinfonia.wordpress.com/2022/01/04/cls-memories-roger-brenner/https://www.britishtrombonesociety.org/news/roger-brenner/https://issuu.com/britishtrombonesociety/docs/the_trombonist_spring_2008https://www.imdb.com/name/nm11662913/Gabrieli ConsortLondon Symphony OrchestraCity Of London SinfoniaColdstream GuardsEnglish Chamber OrchestraRoyal Scottish National OrchestraThe Early Music Consort Of LondonFires Of LondonBBC Scottish Symphony OrchestraPhilip Jones Brass EnsembleThe English Opera GroupEnglish Chamber Orchestra Wind EnsembleMusica ReservataThe London Brass PlayersLondon Schools Symphony OrchestraThe English National Opera Orchestra + +1000565Martin Nicholls (2)English trombone playerNeeds VoteNew London ConsortThe Early Music Consort Of LondonMusica ReservataMembers Of The New London Consort + +1000567Iaan WilsonBritish classical cornett and trumpet player. Now based in Australia, after having worked in New Zealand.Needs Votehttps://www.facebook.com/iaan.wilsonIain WilsonIan WilsonEnglish Chamber OrchestraNew London ConsortThe Early Music Consort Of LondonThe Academy Of Ancient MusicThe Military Ensemble Of LondonThe English Concert + +1000570Polly WaterfieldClassical violin and viol player.Needs VotePollyThe Early Music Consort Of LondonThe English Baroque SoloistsThe Academy Of Ancient MusicThe Consort Of MusickeThe London Early Music GroupThe English ConcertCollegium Sagittarii + +1000578Andrew Van Der BeekClassical woodwind instrumentalistNeeds VoteAndre Van Der BeekAndrew Van Der BeckLondon Cornett And Sackbut EnsembleDavid Munrow Recorder EnsembleThe London Early Music GroupLondon Serpent Trio + +1000583Robert Spencer (2)Robert Allen SpencerEnglish singer, lutenist, theorbist, guitarist, musicologist and teacher (1932-1997). He taught at the Royal Academy of Music in London for 23 years.Needs VoteR. SpencerSpencerEnglish Chamber OrchestraThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsDeller ConsortThe Julian Bream ConsortThe Consort Of MusickeThe Monteverdi OrchestraElizabethan Consort Of Viols + +1000588Mary RemnantEarly string instrumentalistNeeds VoteThe Early Music Consort Of London + +1000591John Turner (5)Classical recorder and flute player. + +John Turner is one of the leading recorder players of today. Born in Stockport, he was Senior Scholar in Law at Fitzwilliam College Cambridge before pursuing a legal career, acting for many distinguished musicians and musical organisations (including the Halle Orchestra, the Royal Northern College of Music and the National Youth Orchestra of Great Britain), alongside his many musical activities. These included numerous appearances and recordings with David Munrow's Early Music Consort of London, the Academy of Ancient Music, the English Chamber Orchestra, the Academy of St. Martin-in-the-Fields and the English Baroque Soloists. + +He now devotes his time to playing, writing, reviewing, publishing, composing and generally energising. He has played as recorder soloist with the Halle Orchestra, the Royal Liverpool Philharmonic Orchestra, the Manchester Camerata, and many other leading orchestras and ensembles. Concertos and works with orchestra have been written for him by Gordon Crosse, Anthony Gilbert, Peter Hope, Kenneth Leighton, Elis Pehkonen, Alan Bullard, John Casken, Philip Wood, and many other distinguished composers. + +His recordings include no less than five sets of the Brandenburg Concertos, as well as the F Major version of Brandenburg Concerto No. 4 with Menuhin and George Malcolm, but lately he has made numerous acclaimed recordings of the recorder's contemporary concerto and chamber music repertoire, including four solo concerto discs, all of which have received critical acclaim. The most recent (all on the Divine Art label) are a recording of music by the novelist and composer (and fellow Mancunian) Anthony Burgess, the premiere album devoted to the music of Roy Heaton Smith, and a disc in memory of Alfred Deller (a good friend) with James Bowman and Robin Blaze, including music by Blow, Handel, Tippett and Fricker. + +In the last few years he has played in Germany, Switzerland, Poland, France, New Zealand, Japan and the USA, and given many recitals on Radio 3 with pianist Peter Lawson. In all, he has given the first performances of over 500 works for the recorder, with works by many non-British composers, including Leonard Bernstein, Ned Rorem, Peter Sculthorpe, Douglas Lilburn, Petr Eben and Ruth Zechlin. Many of the works he has premiered have now entered the standard repertoire, and these and his own recorder compositions are regularly set for festivals and examinations. + +John edits series of recorder publications for both Forsyths and Peacock Press, and founded the periodical Manchester Sounds, in response to the perceived threat to music libraries in Great Britain. In addition he was responsible for the rediscovery of several works for his instrument, including the Rawsthorne Recorder Suite, Antony Hopkins' Pastiche Suite, Herbert Murrill's Sarabande, the Handel F Major Trio Sonata and John Parry's Nightingale Rondo (the only substantial known British nineteenth century work for a fipple flute). + +He was awarded an Honorary Fellowship by the Royal Northern College of Music in 2002 for his services to British music, and is a Visiting Distinguished Scholar of Manchester University.Needs VoteJohn TurnerLondon Philharmonic OrchestraMenuhin Festival OrchestraThe Early Music Consort Of LondonThe Academy Of St. Martin-in-the-FieldsThe English Baroque SoloistsThe Academy Of Ancient MusicThe Virtuosi Of EnglandDavid Munrow Recorder Ensemble + +1000885Stéphane GaraffiFrench double bassist.CorrectOrchestre National De L'Opéra De Paris + +1000886Philippe BerrodPhilippe BerrodClarinetist from France.Needs VoteBerrodPh. BerrodTM+Orchestre De ParisEnsemble AlternanceSirba OctetBernard Wystraëte Group + +1000942Outsource (3)Australian scouse house DJ/producer duo consisting of DJs Benino G & Blinky.Correcthttp://www.outsourcedjs.com/http://www.myspace.com/outsourcedjsBenino GBlinky (4) + +1000997Patrick SabatonClassical trombonist.CorrectP. SabatonEnsemble Musique ObliqueEnsemble Orchestral De Paris + +1001308Kristian GerwigClassical theorbist and chitarronist.Needs VoteI Solisti VenetiOrchestre De Chambre Jean-François PaillardCamerata Accademica Hamburg + +1001316Jürgen JürgensGerman chorus master and conductor. He was born 5 October 1925 in Frankfurt/Main, Germany and died 4 August 1994 in Hamburg, Germany.Needs Votehttps://de.wikipedia.org/wiki/Jürgen_Jürgens_(Dirigent)Jurgen JurgensJürgensIwanow + +1001319Monteverdi-Chor HamburgMonteverdi Choir of Hamburg. German mixed choir founded in 1955 by [a1001316]Needs Votehttp://www.monteverdi-chor.de/Choeur Monteverdi De HambourgChoeur Monteverdi de HambourgChoeurs Monteverdi HambourgChoeurs Monteverdi, HambourgChœur Monteverdi De HambourgChœurs Monteverdi De HambourgChœurs Monteverdi HambourgCoro Monteverdi De HamburgoCoro Monteverdi Di AmburgoCoro Monteverdi, HamburgoDer Monteverdi-ChorDer Monteverdi-Chor, HamburgHamburg Monteverdi ChoirHet Monteverdi-Koor, HamburgMonteverdi ChoirMonteverdi Choir HamburgMonteverdi Choir Of HamburgMonteverdi Choir, HamburgMonteverdi ChorMonteverdi Chor HamburgMonteverdi Chorus of HamburgMonteverdi Koor HamburgMonteverdi-ChorMonteverdi-Chor, HamburgMonteverdi-Chorus, HamburbMonteverdi-koor HamburgThe Monteverdi ChoirTschaikowsky-Chor + +1001462Ted FieldsEdward FieldsAmerican jazz drummer, born c. 1905 in Cleveland, died March 1959.Needs VoteFieldsM. T. FieldsTFTom FieldsBenny Carter And His OrchestraBill Coleman & His OrchestraWillie Lewis And His OrchestraSam Wooding And His OrchestraWillie Lewis & His EntertainersSam Wooding And His Chocolate DandiesSam Wooding And His Chocolate Kiddies + +1001506Arthur MottaJazz Drummer, brother of [a1001464] and [a1032001]. + +Born November 1922, he is part with his brother Armand of almost all the formations of clarinettist Hubert Rostaing, plays with Django Reinhardt and pianist Jack Diéval. He also plays in the so-called "varieties" orchestras of Jo Bouillon, Ray Ventura and Jacques Météhen. In 1956 he played the drums in the big band "Grand Club Orchestra" which has just been created by pianist and arranger Claude Bolling. He records with this orchestra several albums until 1958. He died in a car accident.Needs Votehttps://djangonewquintettclarinet.wordpress.com/2016/08/30/arthur-motta/"Tu-tur" MottaA. MottaArthur Motta Et Ses RythmesArturo MottaQuintette Du Hot Club De FranceLes Chaussettes NoiresAndré Ekyan Et Son EnsemblePaul Piot Et Son OrchestreHubert Rostaing Et Son SextetteTony Proteau Et Son OrchestreDuo Louis Vola - Arthur MottaClaude Bolling Jazz All StarsMytteis, Landl & Co.Jet QuartetHubert Rostaing TrioArturo Motta Et Ses ChicaboumsArturo Motta Et Son OrchestreWilliam Boucaya And His "New-Sound" QuartetSebastien Solari Et Son Orchestre + +1001522Frank EthridgeNeeds VoteFrank EtheridgeNoble Sissle And His Sizzling SyncopatorsErskine Tate's Vendome Orchestra + +1001528Daniel GiaccardoBassistNeeds VoteAntoine GiaccardoD. GiaccardoGiaccardoGrand Orchestre De L'OlympiaAimé Barelli Et Son OrchestreJam Session N° 5 + +1001534Jack Carter (2)US jazz drummer from the swing-era. Played with [a=Noble Sissle]. + +Needs VoteNoble Sissle And His OrchestraNoble Sissle And His Sizzling Syncopators + +1001539Edward ColesCredited as bassist.Needs VoteEdward ColeNoble Sissle And His OrchestraNoble Sissle And His Sizzling Syncopators + +1001615Jean-Marc LeblancClassical violinistNeeds VoteOrchestre symphonique de Montréal + +1001616Wilma HosClassical viola playerNeeds VoteWilhelmina HosLes Violons du RoyOrchestre symphonique de Montréal + +1001660George Johnson (3)American jazz musician (tenor saxophone) who played with [a=The Wolverines], recording with them in 1924 alongside [a=Bix Beiderbecke]. + +For the reedist who played with Benny Carter, Zack Whyte, Garnet Clark, [a=Django Reinhardt], Willie Lewis, Frankie Newton, Bill Coleman, John Kirby, Hot Lips Page, Raymond Scott, and Rex Stewart, please see [a2673329].Needs VoteGeo JohnsonJohnsonThe Wolverine OrchestraThe WolverinesBix Beiderbecke And The Wolverines + +1001735Don CaroneAmerican jazz and rhythm & blues producer and bandleader from Chicago. +Saxophone Player. + +For the lighting director, see [a=Don Carone (2)].Needs VoteCaroneD. CaroneDon CaronJ. CaroneStan Kenton And His OrchestraDon Caron's OrchestraCarone Productions Inc. + +1001736Don Smith (6)Trumpet playerNeeds VoteDonald SmithHarry James And His OrchestraLes Brown And His Band Of RenownStan Kenton And His OrchestraCorcovado TrumpetsThe Indianapolis Jazz Orchestra + +1001737Tony FerinaJazz saxophonistNeeds VoteAnthony FerinaAnthony J. FerinaTony FeriraStan Kenton And His OrchestraBill Russo And His Orchestra + +1001738Don DennisDonald Duane DennisAmerican trumpet player (b. 1927, d. 1995)Needs Votehttps://data.bnf.fr/fr/17066678/don_dennis/https://catalogue.bnf.fr/ark:/12148/cb17066678dD. DennisDennisDonald DennisStan Kenton And His OrchestraVido Musso Sextet + +1001741Stan FletcherCredited as tuba player.Needs VoteStan Kenton And His Orchestra + +1002039Alfred BreuningViolin player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteAl BrauningAl BreunigAl BreuningAl BruenigAl BrueningAlfred BrueningAlfred C. BreuningAlfred C. BrewningNew York PhilharmonicOrchestra U.S.A. + +1002256Arndt SchöneGerman flute player.CorrectStaatskapelle Dresden + +1002257Wilfried GärtnerGerman flute player and saxophonistCorrectStaatskapelle DresdenSemper-House Band + +1002261Manfred WeiseGerman clarinetist. +Needs VoteStaatskapelle DresdenDie Blasewitzer + +1002262Erhard FietzMandolin player.CorrectE. Fietz + +1002264Alfred SchindlerGerman violist.CorrectStaatskapelle Dresden + +1002368Ray ReedAmerican saxophone and flute playerNeeds VoteR. ReedRaymond ReedReedStan Kenton And His OrchestraSupersaxThe Abnuceals Emuukha Electric OrchestraLouie Bellson Big BandPat Longo And His Super Big BandLadd McIntosh Big BandThe Crescents (2)Don Menza & His '80s Big BandThe Gary Urwin Jazz OrchestraRoy Wiegand Jazz OrchestraBuddy Childers Big BandThe Ray Reed Hollywood Bebop QuintetThe Buddy Collette Big BandThe Ray Reed QuintetThe KresentsThe SundancersLouie Bellson's Big Band Explosion! + +1002414Leszek WójcikSound engineer, b 1960 in KrakowNeeds VoteL. WójcikLescek WojcikLesuk WojcikLeszcek WójcikLeszek M. WojcikLeszek Maria WojcikLeszek Maria WójcikLeszek WojcikLeszek WrojcikLeszek Wójcik ("Poljazz")レシェク・ヴァイチック + +1002435Ole Morten GimleNorwegian cellist, born 16 October 1960 in Halden, Norway.CorrectOle Martin GimleOslo Filharmoniske OrkesterEl Corazòn + +1002575John OddoAmerican jazz pianist, arranger, and bandleader.Needs VoteJohn OttoOddoジョン・オドWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And The Thundering Herd + +1002590Heleen KoeleDutch soprano.Needs Votehttps://www.bach-cantatas.com/Bio/Koele-Heleen.htmNederlands Kamerkoor + +1002595Johan KrachtDutch violinist.Needs VoteConcertgebouworkestConcertgebouw Chamber OrchestraEbony Band + +1002661Jay SaundersBorn 29 June 1944, Jay Saunders is a trumpeter and music educator at the collegiate level. He is most known for being a lead trumpeter with big bands — including the Stan Kenton Orchestra (early seventies) — and a recording studio musician in the Dallas area. Saunders is currently on the faculty at the University of North Texas College of Music where he teaches jazz trumpet, jazz recordings, and directs the Two O'Clock Lab Band.Needs VoteJay SandersStan Kenton And His OrchestraPete Petersen & The Collection Jazz OrchestraUniversity Of North Texas Two O'Clock Lab BandThe Lou Fischer Rehearsal BandUniversity Of North Texas All-Star Alumni BandThe Lou Fischer Big Band1:00 O'Clock Lab Band + +1002662Mike JamiesonTrombonist.Needs VoteJamiesonMike JamiensonStan Kenton And His Orchestra + +1002663John Von OhlenJohn Von OhlenJohn Von Ohlen (May 13, 1941, Indianapolis – October 3, 2018) was an American jazz drummer, bandleader, and recording artist, widely known as having been the drummer for Woody Herman in 1967 and 1969, then with Stan Kenton from 1970 to 1972.Needs Votehttps://en.wikipedia.org/wiki/John_Von_OhlenBaron John Von OhlenJ. Von OhlenJohn "Baron" Von OhlenJohn Van OhlenThe Baron Von OhlenVon OhlenWoody Herman And His OrchestraStan Kenton And His OrchestraThe Baron Von Ohlen QuartetThe Blue Wisp Big BandThe College All-StarsWoody Herman And The Thundering HerdJohn Von Ohlen - Steve Allee Big BandProject G-5Chuck Carter Big BandVaughn Wiester's Famous Jazz Orchestra + +1002665John WorsterBassist.CorrectJohn Filip WorsterJohn Philip WorsterJohnny WorsterWorsterStan Kenton And His OrchestraThe New Glenn Miller OrchestraThe Los Angeles Neophonic Orchestra + +1002666Chuck Carter (2)Saxophone playerNeeds VoteC. CarterStan Kenton And His OrchestraJohn Von Ohlen - Steve Allee Big BandChuck Carter Big Band + +1002667Mike VaxAmerican jazz trumpeter, bandleader, composer, and clinicianNeeds Votehttp://www.mikevax.net/M. VaxMike WaxVaxVax, MikeStan Kenton And His OrchestraStan Kenton Alumni BandClark Terry Big BandTRPTSRoy Wiegand Jazz OrchestraNew Oakland Jazz OrchestraJim Widner Big BandThe Mike Vax Big BandThe Mike Vax Jazz OrchestraMike Vax And His Great American Jazz BandMike Vax And His Southern Comfort Jazz All StarsFred Radke•Mike Vax Quintet + +1002668Ramon LopezPercussionist, active in the 1970s. +[b]Not to be confused[/b] with French/Spanish jazz and session drummer [a=Ramón López].Needs VoteLopexLopezR. LopezRoman LopezStan Kenton And His OrchestraStreetlife (7) + +1002669Phil HerringTrombonist and tubistCorrectPhilip HerringStan Kenton And His Orchestra + +1002670Kim FrizellSaxophone playerNeeds VoteStan Kenton And His Orchestra + +1002671Joe MarcinkiewiczTrumpeter.Needs VoteJoe MarcinkieviczJoe MarcinkiewyczJoe MarsinkowiczStan Kenton And His Orchestra + +1002672Richard TorresSaxophonist and flutistCorrectR. TorresTorresStan Kenton And His Orchestra + +1002963Jonathan FeldmanAmerican classical pianist and teacher, husband of bassoonist [a941572]. He was pianist for the New York Philharmonic from 1983 to 2013.Needs VoteFeldmanNew York Philharmonic + +1003175John Finley WilliamsonUS-American chorus master, born 23 June 1887 in Canton, Ohio, USA and died 28 May 1964 in Toledo, Ohio, USA. He was the founder of the [a=Westminster Choir] and co-founder of the Westminster Choir College. + +Needs Votehttp://en.wikipedia.org/wiki/John_Finley_Williamsonhttps://adp.library.ucsb.edu/names/109285Dr. John Finley WilliamsonJ. F. WilliamsonJ. Finlay WilliamsonJ. Finley WilliamsonJ.F. WilliamsonJ.F.ウィリアムソンJohn F. WilliamsJohn F. WilliamsonJohn Finlay WilliamsonWestminster Choir + +1003248Hedwig BilgramGerman harpsichordist, organist and university lecturer at the [l466335] (* 31 March 1933 in Memmingen, German Empire).Needs Votehttps://de.wikipedia.org/wiki/Hedwig_Bilgramhttps://www.deutschlandfunk.de/die-organistin-und-cembalistin-hedwig-bilgram-bach-als-100.htmlhttps://concerto-magazin.de/interviews.html?file=files/concerto/pdf/Interviews/Interview_Concerto-279.pdfhttps://www.mgg-online.com/articles/mgg01549/1.0/id-e1913bef-b7c1-cbf0-af80-105cfdd6ace1BilgramH. BilgramХ. БилграмХедвиг БилгрэмХедвиг БильграмMünchener Bach-OrchesterOrchester Des 35. Deutschen BachfestesBell' Arte Ensemble + +1003368Peter WaldenCor anglais and oboe player.Needs VoteCity Of Birmingham Symphony OrchestraBournemouth Symphony Orchestra + +1003562Brit GaudioBrit Gaudio Pincus née Brit OlsenUS lyricist and ex-wife of [a=Bob Gaudio]. Died January 7, 1989 at age 47.Needs VoteB. GaudioGaudio + +1003563Lar MarCorrectLar/MarJerry MarcellinoMel Larson + +1004107Pete Jacobs (2)Pete Edward JacobsBorn May 7, 1899, Asbury Park, New Jersey - Death ca. 1952. +Jazz drummer.Needs VoteP.JacobsClaude Hopkins And His Orchestra + +1004108Paul McCoy (2)Trumpet playerNeeds VoteTommy Dorsey And His OrchestraJimmy Dorsey And His Orchestra + +1004109Johnny AustinJohn A. Augustine.American jazz trumpeter. +Johnny played with : "Glenn Miller Orchestra", Jan Savitt and +with his own band ("Johnny Austin Orchestra"). + +Born : December 23, 1910 in Vineland, New Jersey. +Died : February 14, 1983.Needs VoteJohn AustinJohnny "Zulu" AustinJan Savitt And His Top HattersGlenn Miller And His OrchestraTeddy Powell And His OrchestraLarry Clinton And His OrchestraChico Marx And His Orchestra + +1004110Guy Smith (2)American swing and jazz guitaristNeeds VoteJan Savitt And His Top HattersJimmy Dorsey And His OrchestraTeddy Powell And His Orchestra + +1004111Ed WadeBig band trumpeterNeeds VoteEddie WadeFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +1004113Joe YuklAmerican jazz trombonist. +He played with : Red Nichols, Frankie Trumbauer, Ben Pollack, Dorsey Brothers, Ted Fio Rito, Roger Wolfe Kahn and others. + +Born: March 05, 1909 in New York City, New York. +Died: March 01, 1981 in Los Angeles, California.Needs Votehttps://en.wikipedia.org/wiki/Joe_Yuklhttps://www.imdb.com/name/nm0950839/https://adp.library.ucsb.edu/names/351860J. YuklJoe YukiJoe YukleJoe YuldJoseph William "Joe" YuklJoseph YuklYuklLouis Armstrong And His All-StarsJimmy Dorsey And His OrchestraThe Universal-International OrchestraJoe Haymes & His OrchestraCharlie Lavere's Chicago LoopersYukl's Wabash FiveJoe Yukl SextetteGeorge Van Eps Ensemble + +1004114Walter Jones (3)US jazz guitaristNeeds VoteW. JonesWalter "Joe" JonesWalter JonesClaude Hopkins And His Orchestra + +1004115Claude Hopkins And His OrchestraCorrectClaude HopkinsClaude Hopkins & His Cotton Club OrchestraClaude Hopkins & His Orch.Claude Hopkins & His OrchestraClaude Hopkins And His BandClaude Hopkins And His Cotton Club OrchestraClaude Hopkins Orch.Claude Hopkins OrchestraHopkinsThe Claude Hopkins OrchestraFred NormanHilton JeffersonEdmond HallGene JohnsonClaude HopkinsHenry TurnerAlbert SnaerPete Jacobs (2)Walter Jones (3)Sylvester LewisBobby SandsOvie AlstonFernando ArbelloBen Smith (9)Leo "Snub" Mosley + +1004117Art MendelsohnAmerican jazz saxophonist.Needs VoteArt MendelsonArtie MendelsohnMendelsohnWill Bradley And His OrchestraBob Crosby And His Orchestra + +1004118Stanley DennisAmerican Jazz string bassist and tubist, active in the 1930's and 1940's with the [a311060].Needs VoteStan DennisStanly DennisCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +1004119Don RuppersbergJazz trombonist.Needs VoteDon RuppersburgRuppersbergCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +1004123Sylvester LewisAmerican jazz trumpeter. +Played with : Herbie Cowens, Jelly Roll Morton, Aubrey Neal, Claude Hopkins and others. + + +Born : October 19, 1908 in Kansas City, Missouri. +Died : 1974 in New York City, New York. +Needs VoteSulverten LewisRoy Eldridge And His OrchestraClaude Hopkins And His Orchestra + +1004125Bill CoveyAmerican jazz reed player (alto/tenor saxophone, clarinet).Needs VoteJimmy Dorsey And His Orchestra + +1004126Bobby SandsAmerican jazz saxophonist (tenor). +Born : January 28, 1907 in New York City, New York. +Died : Unknown. + +Bobby played with : Billy Fowler, Claude Hopkins, Charlie Skeets and Edmond Hall, among others. Retired from music in the 1940s. + + +Needs VoteClaude Hopkins And His Orchestra + +1004127Vic HamannUS jazz trombonist from the swing-era. + +Needs VoteVic HammVic HamnVic HarmannVictor HamannHarry James And His OrchestraWoody Herman And His OrchestraThe Band That Plays The Blues + +1004130Bob LesseyRobert LesseyAmerican jazz guitarist. +Working with : Tiny Bradshaw, Fletcher Henderson, Don Redman, Lucky Millinder and others. + +Born : March 16, 1910 in British West Indies. +Died : December 13, 1989 in Brooklyn, New York. +Needs Votehttps://www.allmusic.com/artist/bob-lessey-mn0001250877R. LesseyRobert LesseyFletcher Henderson And His OrchestraTeddy Wilson And His OrchestraDon Redman And His Orchestra + +1004131Jim EmertTrombonistCorrectEmertJimmy EmertHal McIntyre And His OrchestraBob Crosby And His Orchestra + +1004133Joe HostetterAmerican Jazz trumpeter and vocalist. Active from the 1920's to the 1930's.Needs VoteJoe HostJoe HosteJoe HostCasa Loma OrchestraCharlie Barnet And His OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +1004135Milton Fletcher (2)Jazz trumpeter. Needs VoteMilt FletcherEarl Hines And His OrchestraLucky Millinder And His OrchestraBenny Carter And His OrchestraCootie Williams And His Orchestra + +1004136Verlye MillsVerlye Arlyn MillsAmerican harpist, pianist and session musician, born in 1913, died October 2, 1983.Needs VoteMillsVerily MillsVerley MillsVerlye BrilhartVerlye Brilhart - MillsVerlye Brilhart-MillsVerlye Mills BrilhartVeryle Brilhart MillsVeryle Brilhart-MillsVeryle MillsВерли МиллзVerlye BrilhartSauter-Finegan OrchestraThe Cleveland OrchestraCharlie Parker With Strings + +1004137Claude RobertsHot Jazz guitarist and banjoist.Needs VoteCaude RobertsCuthbert RobertsRobertsEarl Hines And His OrchestraDixie Rhythm Kings + +1004144Pat Davis (3)Frank Allen DavisAmerican Jazz saxophonist (Tenor) in the 1930's and 1940's. He also played clarinet and flute. +Born May 26, 1909 in Little Rock, Arkansas. +Needs VotePat DavidPat DavisCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +1004148Dud BascombWilbur Odell BascombAmerican jazz trumpeter (born May 16, 1916 in Birmingham, USA - died Dec 25, 1972 in New York, USA). +Not to be confused with his son [a=Wilbur Bascomb] Jr., jazz-funk bassist, also called sometimes Dud Bascomb. +Younger brother of tenor saxophonist [a=Paul Bascomb]. +Needs Votehttps://en.wikipedia.org/wiki/Dud_Bascombhttps://adp.library.ucsb.edu/names/107197https://adp.library.ucsb.edu/names/303342"Dud" BascombBascombD. BascombDid BascombDudDud BuscombDud NascombW. BascombWilbur "Dud" BascombWilbur "Shorty" BascombWilbur BascombWilburg "Dud" BascombWilburg 'Dud' BascombWilbur Bascomb Sr.Duke Ellington And His OrchestraErskine Hawkins And His OrchestraDud Bascomb and Orchestra + +1004149Bud CarltonSwing era saxophonistNeeds VoteB. CarltonCarltonArtie Shaw And His Orchestra + +1004150Ovie AlstonOverton Alston.American jazz trumpeter, singer and bandleader + +Born : December 14, 1905 or 1906 in Washington, D.C.. +Died : 1989. +Needs VoteAlstonObie AlstonOrie AlstonClaude Hopkins And His OrchestraOvie Alston And His Orchestra + +1004151Jerome PasquallJerome PasquallAmerican jazz saxophonist (tenor) and clarinetist player. Nicknamed "Don Pasquall" after [a525469]'s opera "Don Pasquale". +Played with : Red Allen, Ralph Stevenson (pianist), Charlie Creath, Fate Marable, Doc Cooke ("Cook's Dreamland Orchestra"), Fletcher Henderson and Noble Sissle. + +Born: September 20, 1902 in Fulton, Kentucky. +Died: October 18, 1971. +Needs Votehttps://en.wikipedia.org/wiki/Jerome_Don_PasquallDon PasqualDon PasqualeDon PasquallJerome Don PasquallJerome PasqualPasquallFletcher Henderson And His OrchestraThe Dixie StompersThe Louisiana StompersEarl Randolph's OrchestraCook's Dreamland OrchestraFletcher Henderson's Collegians + +1004152Harry StrubleNeeds VoteHarry StrubbleHarry StrubelPaul Whiteman And His OrchestraPaul Ash & His Orchestra + +1004155Joe Hall (2)US Jazz pianist in the 1920's and 1930's, stage name "Horse".Needs VoteHorse HallHoward "Joe" HallHoward HallJoe "Horse" HallJoe Horse HallHoward HallCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +1004160Tony BrigliaAmerican Jazz drummer, active from the 1930's to the 1940's.Needs VoteAnthony BrigliaCasa Loma OrchestraJan Garber And His OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +1004163Frank LangoneAmerican jazz reed player (clarinet, saxes), born March 11, 1907 in Philadelphia, Pennsylvania. +Worked on liner cruices with [a=Al Donahue]'s orchestra. From the mid-1930s with many leaders, including [a=Bunny Berigan], [a=Jan Savitt], [a=Jimmy Dorsey], a.o. +Continued to play regularly, with [a=Jan Garber] in 1969.Needs VoteFrank LagoneBunny Berigan & His OrchestraJan Savitt And His Top HattersJimmy Dorsey And His Orchestra + +1004167Fernando ArbelloPuerto Rican jazz trombonist, composer and arranger. +Born : May 30, 1907 in Ponce, Puerto Rico. +Died : July 26, 1970 in Puerto Rico. + +Needs Votehttps://en.wikipedia.org/wiki/Fernando_ArbelloArbeldArbelloArbeloArbeltArebeloF. ArbelloF. ArbeloFerdinand ArbelloFerdinand ArbeloFernando ArbelFernando ArbeloFletcher Henderson And His OrchestraJimmie Lunceford And His OrchestraChick Webb And His OrchestraClaude Hopkins And His OrchestraPuerto Rican All-StarsRex Stewart And His Dixieland Jazz BandJimmy Johnson And His Orchestra + +1004171Tom Morgan (5)Tom MorganelliAmerican big band era Jazz guitarist who played with Bunny Berigan, Charlie Barnet, Teddy Powell, Benny Goodman, Will Hudson, California Ramblers and others. +He was still playing professionally in the 1980's in a trio with Woody Leiby and Lee Sharkazy.Needs Votehttps://musicbrainz.org/artist/eb37596f-cb9b-42d8-833e-085cf166ed76https://adp.library.ucsb.edu/index.php/mastertalent/detail/332579/Morgan_TomMorganelliT. MorganT.MorganThomas MorganelliTom MorganelliTommy MorganTommy MorganelliBunny Berigan & His OrchestraBenny Goodman SextetWill Hudson And His OrchestraTeddy Powell And His OrchestraBenny Goodman And His Orchestra + +1004172Curby AlexanderSaxophonistCorrectAlexanderJohn "Curby" AlexanderKirby AlexanderLucky Thompson And His Lucky Seven + +1004176Paul King (4)Paul Thaddeus KingUS jazz trumpeter from the swing-era. + +Needs Votehttp://www.jazzarcheology.com/artists/paul_king.pdfKingP. KingAndy Kirk And His Clouds Of JoyWillie Mabon And His Combo + +1004177Sonny LeeThomas Ball Lee.American jazz trombonist. +Born : August 26, 1904 in Huntsville, Texas. +Died : May 17, 1975 in Amarillo, Texas. + +"Sonny" played with : Frankie Trumbauer (1925), Gene Rodemich (bandleader), Vincent Lopez, Paul Specht, Isham Jones (1932- 1936), Artie Shaw (1936), Charlie Barnet (1936), Woody Herman (1936), Bunny Berigan (1937-'38), Jimmy Dorsey (1938-1946). +Needs Votehttps://adp.library.ucsb.edu/names/100138LeeS. LeeSommy LeeSonney LeeThomas Ball 'Sonny' LeeBunny Berigan & His OrchestraCharles Creath's Jazz-O-ManiacsJimmy Dorsey And His OrchestraBenny Goodman And His OrchestraIsham Jones' Juniors + +1004365Robert HegerGerman conductor and composer. +Born 19 August 1886 in Strasbourg, France. +Died 14 January 1978 in Munich, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Robert_Hegerhttps://adp.library.ucsb.edu/names/100056HegerProf. R. HegerProf. Rob. HegerProf. Robert HegerProfessor Rob. HegerProfessor Robert HegerR Heger (?)R. HegerRobert HagerStaatskapellmst. Prof. Rob. HegerStaatskapellmstr. Prof. R. HegerStaatskapellmstr. Prof. Rob. HegerStaatskapellmstr. Prof. Robert HegerStaatskappellmstr. Prof. Rob. HegerРоберт Хегер + +1005047Gary HobbsDrummerNeeds Votehttp://garyhobbs.net/G. HobbsGarry HobbsGary George HobssStan Kenton And His OrchestraStan Kenton Alumni BandJim Widner Big BandThe Northwest Prevailing WindsMark Simon Ensemble4 (13)Jim Greeninger Quartet + +1005207Carl-August BünteProf. Carl-August BünteGerman classical conductor and university lecturer, * 23 September 1925 in Berlin, German Empire; † 06 June 2018 in Berlin. + +Needs Votehttps://de.wikipedia.org/wiki/Carl_August_B%C3%BCnteAugust BünteBünteC. A. BuenteC. A. BünteC.-A. BünteC.A. BuenteC.A. BunteC.A. BuntheC.A. BühneC.A. BünteC.A.BünteCarl August BünteCarl BunteCarl BünteCarl-August Bunteカール・オウガスト・ブンテ + +1005209Eddie NicholsonJazz drummerNeeds VoteE. NicholsonEd NicholsonEddie NichelsonEdward NicholsonЭ. НикольсонDexter Gordon's All StarsPete Brown QuintetTony Scott And His Down Beat Club SeptetThe Tiny Grimes SwingtetPete Brown Quartet + +1005618Timme RosenkrantzNiels Otte Timme Baron RosenkrantzDanish baron, journalist, writer, radio producer, record producer and jazz enthusiast +born July 6, 1911 in Hellerup, Denmark +died August 11, 1969 in New York, US + +A pioneer in bringing jazz to Denmark. Visited USA first time in 1934 and over several visits connected with a large number of jazz personalities. Rosenkrantz established three Danish labels during the 78 RPM era, [l696691], [l658620] and [l155185]. His large personal collection of jazz records and recordings and own photographs has been donated to the Danish SDU University in Odense. +Married to US jazz singer [a=Inez Cavanaugh] +Needs Votehttp://da.wikipedia.org/wiki/Timme_Rosenkrantzhttp://www.mikematloff.com/Writing-Misc/Timme.pdfhttps://adp.library.ucsb.edu/names/106586RonsenkrantzRosenkrantzT. RosenkrantzTimme RosencrantzTimme Rosenkrantz/Frank Driggs CollectionTimme RosenkranzTimme Rosenkrantz And His Barrelhouse BaronsTimme Rosenkrantz Orchestra + +1005619Brick FleagleRoger Jacob FleagleAmerican jazz guitarist, composer and bandleader. + +Born: August 22, 1906 in Hanover, Pennsylvania. +Died: April 15, 1992.Needs Votehttps://en.wikipedia.org/wiki/Brick_Fleaglehttps://adp.library.ucsb.edu/names/315547B. FleagleBr'ck FleagleBrickFleagleStewartRoger FleagleJack Teagarden And His Big EightCalifornia RamblersRex Stewart And His 52nd Street StompersBuck Clayton's Big EightRex Stewart's Big EightBrick Fleagle And His OrchestraRex Stewart's Big SevenBilly Taylor's Big EightTimme Rosenkrantz And His Barrelhouse BaronsSandy Williams Big EightJ.C. Higginbotham's Big EightBrick Fleagle's Rhythmakers + +1005633Ryland AngelRyland AngelTenor, countertenor / alto, pop vocalist and songwriter born and raised in Bristol, England who first sang as a chorister at Bristol Cathedral. Ryland moved to Paris to undertake a serious study of music. While there, he met Kentucky native [a=Bryce Johnson] who later became his Austin-based writing partner. Eventually Ryland began singing with many prestigious ensembles, among them Philharmonia Baroque Orchestra, the Ensemble of Early Music of New York and Les Arts Florissants. He's performed at the New York City Opera, the English National Opera, Carnegie Hall, the Opéra National de Paris and many more, covering every important work in the countertenor repertoire. In 2006, he is nominated for a classical Grammy for his work with the Tiffany Consort. Eventually Ryland moved to New York and although his classical career was flourishing, he longed to develop his pop ideas. Upon meeting songwriter [url=http://www.discogs.com/artist/Edward+Bennett?anv=Ed+Bennett]Ed Bennett[/url], he had found a partner who understood his vision and the two collaborated intensely. At this time, Ryland also travelled to Texas to work with lyricist Johnson. After cutting a few demos, he was signed to [url=http://www.discogs.com/label/EMI-Manhattan+Records]Manhattan Records[/url] which released his self-titled first album [url=http://www.discogs.com/release/1183954]Ryland Angel[/url]. He continues his classical concert schedule, and although Ryland has an affinity for renaissance and Baroque music, he plans on devoting more time on his pop music endeavors. +Needs Votehttp://rylandangel.com/http://www.myspace.com/rylandangelLe Concert SpirituelAston MagnaThe Choir Of Trinity Wall StreetEnsemble europeen William Byrd + +1005869Charlie PrebbleAmerican jazz trombonist.Needs VoteCharles PrebbleCharles PrebleCharlie PrebleChuck PrebbleChuck PrebleHarry James And His OrchestraHarry James & His Music Makers + +1005870Ray Martinez (3)American violinist from the big band eraNeeds VoteHarry James And His OrchestraHarry James & His Music Makers + +1005871Tommy GonsoulinBig band jazz trumpeterNeeds VoteTom GonsoulinTommy ConsoulinHarry James And His OrchestraGene Krupa And His OrchestraJack Teagarden And His Orchestra + +1005872Ed RosaAmerican jazz saxophonist and clarinetist. +Before Eddie was a studio musician, he played with Harry James, Benny Goodman, and was in the Merv Griffin and Joey Bishop bands. Jerry Lewis was a special friend. He was an avid golfer, with 16 holes in one. Two of them were after he turned 80. He passed away in 2014 after a long battle with Alzheimer's.Needs Votehttps://www.legacy.com/obituaries/ladailynews/obituary.aspx?pid=169239684E.J. RosaEddie RoaEddie RosaEddy RosaEdward "Ed" RosaEdward 'Ed' RosaEdward RosaRosaHarry James And His OrchestraHarry James & His Music MakersHarry James & His SextetGramercy Six + +1005873Al RamseyAmerican jazz trumpeter.Needs VoteHarry James And His OrchestraHarry James & His Music Makers + +1005874Johnny MezeySaxophone player during the big band era.CorrectJohn MezeyMezeyHarry James And His Orchestra + +1005875Irwin BerkenAmerican jazz trumpeter.Needs VoteRed BerkenRed BerkinHarry James And His OrchestraHarry James & His Music Makers + +1005876Gerson ObersteinGerson "Gus" ObersteinAmerican violinist from the big band era. Played with [a=Charlie Parker] and [a=Glen Miller]. The child of dutch immigrants studied music at The Juilliard School in New York. He played with big bands, but also with the symphony orchestras in Baltimore and Cleveland. He also entered the world of television in its early stages, working in the television studio control room and as a transmitter operator for KHQA-TV in Quincy, IL from 1954-1958. From 1959-1979 he worked as a broadcast engineer at KRON-TV in San Francisco. After his retirement, he played with the Berkeley Symphony Orchestra for 20 years. + +Born on Mar. 18, 1914, in Ossining, NY +Died on Aug. 12, 2003 in San Francisco, CANeeds VoteGus ObersteinHarry James And His OrchestraHarry James & His Music MakersJoe Roland, His Vibes & His Boppin' Strings + +1005879George KochViolinist from the big band eraCorrectKochHarry James And His Orchestra + +1005880Ralph Lane (2)American violinist during the big band eraCorrectHarry James And His Orchestra + +1005881Bryan KentJazz guitarist from the big band era. Also credited as Red Kent or Bryan "Red" Kent.Correcthttps://books.google.com/books?id=gj4DAwAAQBAJ&pg=PT430&dq=guitarist+Red+Kent+%22The+Big+Bands%22&hl=en&sa=X&ved=0ahUKEwjTo_Kxj9bXAhXCrVQKHeR_AkIQ6AEIKDAA#v=onepage&q=guitarist%20Red%20Kent%20%22The%20Big%20Bands%22&f=falsehttps://www.facebook.com/david.hungate.52/posts/pfbid02xAUgmTFBkRebfnVf8K4wxzE5rCxnXeWFyp7KnAH8heyGpmw8LFGtdrNo6AZNkCPVlBryan "Red" KentBryan 'Red' KentRed KentHarry James And His Orchestra + +1005882Carl ZeiglerAmerican cellistNeeds VoteC. ZeiglerC. ZieglerCarl ZieglerHarry James And His OrchestraString Nonet + +1005883Gerald JoyceAmerican violinist.Needs VoteGerry JoyceHarry James And His OrchestraHarry James & His Music MakersFrank Sinatra And His Orchestra + +1005884Jesse HeathJesse Ray HeathAmerican trombone player during the big band era.CorrectJesse Ray HeathRay HeathHarry James And His OrchestraWill Hudson And His OrchestraHarry James & His Music MakersOzzie Nelson And His Orchestra + +1005885Albert SaparoffAmerican violinist.CorrectAl SaparoffAl SapraoffAlbert SaproffHarry James And His OrchestraHarry James & His Music Makers + +1005886Glenn HerzerAmerican violinist during the big band era.CorrectHerzerHarry James And His Orchestra + +1005888James TroutmanAmerican jazz trumpeter.Needs VoteJim TroughtmanJim TroutmanJimmy TroutmanHarry James And His OrchestraHarry James & His Music Makers + +1005890William GranzosAmerican trombonistNeeds VoteBill GranzoesBill GranzosBill GranzovBill GranzowWilliam GranzowHarry James And His OrchestraSy Oliver And His Orchestra + +1005891Hayden CauseyAmerican jazz guitarist.Needs VoteH. CauseyHadyn CauseyHayden Causey, Jr.Harry James And His OrchestraHarry James & His Music Makers + +1005892Ed MihelichJazz bassistNeeds VoteEd MichelinEd MihelickEd MihelochEd MihlichEd. MihelichEddie MihelichEdward MihelichHarry James And His OrchestraGene Krupa And His OrchestraCharlie Barnet And His OrchestraIke Carpenter And His OrchestraHarry James & His Music MakersJuan Tizol & His OrchestraCorky Corcoran & His OrchestraWillie Smith And His OrchestraWillie Smith And His Friends + +1005893Ray TolandAmerican jazz drummerNeeds VoteHarry James And His OrchestraRudy Vallee And His Connecticut Yankees + +1005894Willard CulleyAmerican flugelhorn and french horn player (swing era).CorrectWillard Culley Jr.Willard Culley, Jr.Willard T. CulleyWilliam CulleyWilliam T. CulleyWilliard CulleyHarry James And His OrchestraSpike Jones & His Other OrchestraThe Horn Club Of Los Angeles + +1005895Stan StanchfieldViolinist from the big band eraCorrectStanchfieldHarry James And His Orchestra + +1005897Cyril TowbinViolin player from the big band eraCorrectHarry James And His Orchestra + +1005898Harry JaworskiViolinist during the big band era.Needs VoteHarry JawarskiHenry JawarskiHenry JaworskiHarry James And His OrchestraHarry James & His Music Makers + +1005899Stewart BrunerAmerican jazz saxophonist.Needs VoteStewart BrunnerStuart BrunerHarry James And His OrchestraHarry James & His Music Makers + +1005900Sam RosenblumViolin player from the swing era.CorrectRosenblumHarry James And His Orchestra + +1005901Harold SorinAmerican viola playerCorrectHal SorinHarry James And His Orchestra + +1005902Carl MausAmerican jazz drummer. He played with Raymond Scott, Tommy Dorsey, Artie Shaw, Harry James and many others.Needs VoteMarl MausHarry James And His OrchestraArtie Shaw And His OrchestraRaymond Scott And His OrchestraThe Harry James QuintetGeorge Liberace And His OrchestraHarry James & His Music MakersOpie Cates And His Orchestra + +1005903Jack Lee (3)American violinist from the shellac eraCorrectJ. LeeHarry James And His Orchestra + +1005904George GrossmanAmerican viola/violin player from the big band era.Needs VoteHarry James And His OrchestraHarry James & His Music Makers + +1005905Ernest KarpatiAmerican violinist.CorrectErnie KarpatiHarry James And His OrchestraHarry James & His Music Makers + +1005954Pablo CasalsPau Carles Salvador Casals i DefillóSpanish cellist, composer, and conductor. +Born December 29, 1876 in Vendrell, Catalonia, Spain +Died October 22, 1973 in San Juan, Puerto Rico (aged 96) +Casals is perhaps best remembered for his recordings of the Bach Cello Suites he made from 1936 to 1939.Needs Votehttps://en.wikipedia.org/wiki/Pablo_Casalshttps://web.archive.org/web/20210623023724/https://www.paucasals.cat/https://web.archive.org/web/20030823090240/https://www.sonyclassical.com/artists/casals/https://www.flickr.com/photos/museopaucasals/https://www.youtube.com/channel/UCiSwSpqFiTGzHR9Mj-pojvQhttps://www.youtube.com/watch?v=TMp1LcJLTmUhttps://www.x.com/paucasals_fundhttps://www.facebook.com/FundacioPauCasalshttps://www.instagram.com/paucasals_fundhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102291/Casals_PabloCasalsP. CasalsPablo CasalPablo Casals, The YoungPablo KazalsPau CasalsП. КазальсП. Казальс = P. CasalsП. КасальсПабло КазальcПабло КазальсПабло Касалcפאבלו קזאלסカザルスパブロ・カザルスパブロ・カザルスPrades Festival OrchestraOrquestra Pau CasalsPerpignan Festival OrchestraFestival Casals Orchestra Of Puerto RicoThe Casals Trio + +1006070Stefan VladarAustrian pianist and conductor, born October 2, 1965 in Vienna.Needs Votehttp://www.stefanvladar.com/https://en.wikipedia.org/wiki/Stefan_Vladarhttps://de.wikipedia.org/wiki/Stefan_VladarS. VladarStefan VladerVladarシュテファン・ヴラダー + +1006206Heinz Friedrich HartigHeinz Friedrich Hartig (* 10. September 1907 in Kassel; † 16. September 1969 in Berlin) was a German composer and harpsichordist.Correcthttps://en.wikipedia.org/wiki/Heinz_Friedrich_HartigH. F. HartigHansfriedrich HartigHartigHeinzfriedrich HartigBerliner PhilharmonikerBach-Orchester Berlin + +1006585Shmuel KatzIsrael-born violinist and violist, based in New York City, USA.Needs Votehttp://www.shmuelkatz.org/Schmuel KatzSchumel KatzOrpheus Chamber OrchestraThe Metropolitan Opera House OrchestraNew York City Ballet OrchestraNew York Chamber ConsortStone Hill StringsIsraeli Chamber Project + +1006697Mel KunkleAmerican jazz saxophonist.CorrectHarry James And His OrchestraHarry James And His Big Band + +1006839Tim MartynTimothy MartynAmerican audio producer and engineer. His studio is [l3449632].Needs Votehttp://www.phoenixaudiollc.comhttp://metropolisensemble.org/albums/fung/tmartyn.phpTim MartinTim Martyn (Phoenix AudioTim Martyn (Phoenix Audio)Tim Martyn, Phoenix AudioTim Martyn, Phoenix Audio LLCTimothy MartinTimothy Martyn + +1006992James Moody And His ModernistsCorrectJames Moody & His ModernistsJames Moody & The ModernistsJames Moody And The ModernistsJames Moody's ModernistsArt BlakeyJames MoodyDave BurnsNelson BoydElmon WrightChano PozoErnie HenryJames Forman Jr.Cecil Payne + +1007099Friedrich SchillerJohann Christoph Friedrich von SchillerGerman author, dramatist, poet and philosopher, born 10 November 1759 in Marbach am Neckar, Württemberg (today Germany), and died 9 May 1805 in Weimar, Saxe-Weimar (today Germany). +Next to [a=Johann Wolfgang von Goethe], Friedrich Schiller is the most important figure of Weimar Classicism and still today yields eminent influence on art, literature and the theory of drama. +Needs Votehttp://en.wikipedia.org/wiki/Friedrich_Schillerhttps://adp.library.ucsb.edu/names/102549C. F. SchillerF. SchillerF. SchilleraF. V. SchillerF. v. SchillerF. von SchillerF. ŜillerF. ŠilleraF. ŠillersFr. SchillerFr. v SchillerFr. v. SchillerFr. von SchillerFriederich SchillerFriedr. v. SchillerFriedr. von SchillerFriedrich V. SchillerFriedrich Von SchilerFriedrich Von SchillerFriedrich v. SchillerFriedrich v. SchillerFriedrich van SchillerFriedrich von SchillerFriedrich vonSchillerFryderyk SchillerFrédéric SchillerJ. Ch. F. SchillerJ. Ch. F. Von SchillerJohann Christoph Friedrich von SchillerJohann Friedrich von SchillerSchilleSchillerVon Schillerv. SchillerΣίλλερФ. ШиллерФ. ШиллераФ.ШиллерФр. ШилерФридрих Шиллерシラー + +1007116Concertgebouw ChorusNeeds VoteChoir Of The ConcertgebouworkestChoir of the ConcertgebouworkestChor Des Concertgebouw Orchestra, AmsterdamChor Des Royal Concertgebouw OrchestraChor des Concertgebouw Orchestra, AmsterdamChorusChorus Of The Concertgebouw OrchestraChorus Of The Concertgebouw OrchestraChorus Of The Royal ConcertgebouwChorus Of The Royal Concertgebouw OrchestraChorus of the Concertgebouw OrchestraChorus of the Royal ConcertgebouwChorus of the Royal Concertgebouw, AmsterdamChœur Du Concertgebouw D'AmsterdamChœur du Concertgebouw d'AmsterdamConcertgebouw OrchestraConcertgebouw Orchestra ChorusCoro Del ConcertgebouwGentlemen From The Choir Of The Concertgebouw OrchestraGentlemen From The Choir Of The ConcertgebouworkestGentlemen Of The Choir Of The ConcertgebouworkestMembers Of The Choir Of The Concertgebouw OrchestraRoyal Concertgebouw OrchestraConcertgebouworkest + +1007236Jozef ZsapkaJozef ZsapkaSlovak classical guitarist (born on January 17, 1947 in Komárno; Slovakia).Needs Votehttps://www.zsapka.com/J. ZsapkaJ. ZspakaJosef SzapkaJosef ZsapkaJoseph ZsapkaJozef SzapkaZsapka J.Capella Istropolitana + +1007862Norman Smith (2)Saxophonist.CorrectNorm SmithNormSmithHarry James And His OrchestraStan Kenton And His OrchestraHarry James And His Big Band + +1008345Fabrizio CiprianiClassical violinist.Needs VoteFabrizio Haim CiprianiIl Seminario MusicaleLe Concert Des nationsEuropa GalanteModo AntiquoLes Musiciens Du LouvreIl Giardino ArmonicoEnsemble ChiaroscuroAlessandro Stradella ConsortCollegium Pro MusicaIl Teatro ArmonicoEnsemble Il FalconeQuartetto Aira + +1008367Reuben PhillipsAmerican alto & baritone saxophonist, bandleader and arranger [b. ?, Providence, Kentucky - d. February 13, 1974 in San Juan, Puerto Rico).Needs VotePhillipsR. PhillipsReuben PhilippsRuben PhilippsRuben PhillipsRueben PhillipsAndy Kirk And His Clouds Of JoyAndy Kirk And His OrchestraLouis Jordan And His OrchestraReuben Phillips And OrchestraReuben Phillips BandGeorge Rhodes And His Orchestra + +1008524Jerome AshbyAmerican hornist, born February 15, 1956 in Charleston, South Carolina and died on December 26, 2007. +Ashby joined the New York Philharmonic in 1979 and stayed a member until his death in 2007.Needs VoteNew York Philharmonic + +1008810Timothy MartinTimothy Dean MartinSongwriter. Co-wrote numerous songs with [a813472]. + +Born 18-Oct-1945 in Piqua, OH, USA. +Died 11-November-2019 in Palo Alto, CA, USANeeds Votehttps://timothydeanmartin.comhttps://www.facebook.com/RememberingTimMartin/https://repertoire.bmi.com/Search/Catalog?num=oRs38AEaYPwdfy0ytzMZtg%253d%253d&cae=UT2URPzn2ZwN0YhbeH%252fzcQ%253d%253d&partType=WriterList&search=%7B%22Main_Search_Text%22%3A%22Radioactive%20Love%22%2C%22Sub_Search_Text%22%3Anull%2C%22Main_Search%22%3A%22Title%22%2C%22Sub_Search%22%3Anull%2C%22Search_Type%22%3A%22all%22%2C%22View_Count%22%3A50%2C%22Page_Number%22%3A0%2C%22Part_Type%22%3Anull%2C%22Part_Id%22%3Anull%2C%22Part_Id_Sub%22%3Anull%2C%22Part_Name%22%3Anull%2C%22Part_Cae%22%3Anull%2C%22Original_Search%22%3Anull%2C%22DisclaimerViewed%22%3Anull%7D&resetPageNumber=True&partIdSub=YO0HedHMatLb45JzS23DVw%253d%253dMartinT. D. MartinT. MartinT.MartinTim MartinTimothy D. MartinTimothy D. Marting + +1008899Ursula BundiesClassical violinist.Needs VoteUlla BundiesUlla BundlesCapella Agostino SteffaniLa StagioneCantus CöllnDas Kleine KonzertHimlische CantoreyMusica Alta RipaSephira Ensemble StuttgartEnsemble FleuryCapella ThuringiaCapella Augusta Guelferbytana + +1008900Barbara KralleClassical violinist.CorrectCapella Agostino SteffaniLa StagioneHannoversche Hofkapelle + +1008901Hans Koch (2)Classical double bassist.Needs VoteCapella Agostino SteffaniLa StagioneCamerata Accademica Hamburg + +1008905Christoph MayerGerman Classical violinist, who started his career as a conductor in the age of 18. After various experience in Classical ensembles, he specialized on playing on historical string instruments.Needs VoteMusica Antiqua KölnLa StagioneOrnamente 99Cappella ColoniensisDas Kleine KonzertSchuppanzigh QuartettScala Köln + +1008906Helmut HausbergClassical violinist.CorrectHelmuth HausbergConcerto KölnLa StagioneCappella ColoniensisNeue Düsseldorfer Hofmusik + +1008910Harald HoerenClassical pianist, harpsichordist and liner notes author.Needs Votehttps://www.naxos.com/Bio/Person/Harald_Hoeren/307H. HoerenHoerenMusica Antiqua KölnMünchener KammerorchesterLa StagioneCantus CöllnTrio 1790Fiati Con Tasto KölnCamerata KölnParnassi MusiciSephira Ensemble StuttgartConcert Royal KölnNeumeyer ConsortCappella Academica Frankfurt + +1008913Yasunori Imamura今村泰典Guitarist, lutenist and theorbist. +Born in Tokyo. Studied the lute with [a973397] and [a844160] at the [a1372753] from 1975 to 1981. In parallel studied performance and general bass with [a836665] and [a962497]. +Was appointed the professor for the lute at [l2159869] in 1984, and lecturer at [l1802356] in 1989.Needs VoteYassunori ImamuraLe Parlement De MusiqueLes Musiciens Du LouvreLa StagioneSchola Cantorum BasiliensisIl Complesso BaroccoArte Dei SuonatoriEnsemble AmaliaFons MusicaeMusica Alta RipaEnsemble GradivaL'AmorosoCappella Academica Frankfurt + +1008914Sabine BauerClassical keyboardist and recorder player.Needs VoteBauerMusica Antiqua KölnLa StagioneCamerata KölnCappella Academica Frankfurt + +1009231Hans KalafuszGerman classical violinist, violin professor and former concertmaster of the [a610799].Needs VoteH. KalafuszHans KalfuszRadio-Sinfonieorchester StuttgartDeutsches StreichtrioDas Stuttgarter Kammermusik-EnsembleKalafusz-Trio + +1009232Hermann BaumannHermann Rudolph Konrad BaumannGerman hornist and Professor of Horn at the Folkwang University in Essen. He was born on 1 August 1934 in Hamburg, Germany. Died on 29 December 2023Needs Votehttp://hermannbaumann.de/BaumannH. BaumannHans BaumannHerman BaumannHermannHermann BaymannГерман БауманRadio-Sinfonieorchester StuttgartI MusiciMünchener Bach-OrchesterConcentus Musicus WienHamburger KammerorchesterPhilharmonisches Orchester DortmundConcerto AmsterdamWind Sextet Of The South German Radio Orchestra + +1009274Michael StirlingCellist, from 1989 to 1997 he was member of the Ensemble Modern in Frankfurt, he now plays with various chamber ensembles and orchestras.Needs Votehttps://www.conservatoriumvanamsterdam.nl/en/study/studying-at-the-cva/faculty/classical-music/michael-stirling/https://geelvinck.nl/kunstenaars/michael-sterling-cello/Michael Stirling ³Ensemble ModernThe Raphael EnsembleBrindisi QuartetRadio Filharmonisch OrkestMichaelangelo Chamber OrchestraRadio Kamer FilharmonieBrunsvik String Trio + +1009276Ulrike StortzGerman classical violinist +Violin studies (with Concert Diploma) in Cologne with Igor Ozim, in Stuttgart with Ricardo Odnoposoff, Wilhelm Melcher and Joachim Schall Master classes with Henryk Szeryng, Denes Zsigmondy and the Fine Arts Quartet, among others. Concerts as a soloist as well as in various ensembles for contemporary music such as Ensemble Modern, Musikfabrik, Ascolta, Varianti, Zementwerk. Intensive artistic and conceptual work with the interdisciplinary Ensemble Gelberklang, out of which the Helios String Quartet emerged. Active in a wide variety of pedagogical work ranging from private instrumental teaching to team work in innovative classroom music education projects such as “Response”. Co-founder of “Open_Music,” an initiative dedicated to promoting free improvisation projects with children and youth which has, in the past four years, been awarded many prizes and significant financial support from national, regional, city and private agencies. Represented in many recordings, primarily with contemporary music. Regular guest with the South German Radio in Stuttgart.Needs Votehttps://ulrikestortz.de/Ulrike StorzEnsemble ModernStuttgarter KammerorchesterGelberklangEnsemble Modern OrchestraBlind Date Quartet + +1009722Jimmy RuddCredited as bassist.Needs VoteJ. RuddJimmy "Junior" RuddJimmy Junior (?) RuddHelen Humes And Her All-Stars + +1010097Bud BillingsHarold (Bud) Miller BillingsHarold "Bud" Billings (1937-2002) was a American trumpet player who toured with many big bands and performed or recorded with Nat King Cole, Frank Sinatra, Nelson Riddle, Ella Fitzgerald, Marvin Gaye, the Beach Boys, Sammy Davis Jr., and others. In 1970 he moved to Nashville, Tennessee, where he worked as chief engineer at [l=Superior Sound Studios]. From 1983 to 1991 he taught at Berklee College of Music. In addition, he worked as an arranger on a number of music television shows. Needs Votehttps://www.ancestry.co.uk/boards/localities.northam.usa.states.florida.counties.brevard/188/mb.ashx http://www.cagenweb.com/yolo/yolobits/beo-bn.htmHarold BillingsHarry James And His Orchestra + +1010357Piotr OlechPolish classical countertenor singer and pedagogue.Needs VoteP. OlechCollegium VocaleConcerto KölnWarszawska Opera KameralnaGli Angeli GenèveEnsemble PolyharmoniqueWrocławska Orkiestra Barokowa{oh!} Orkiestra HistorycznaCappella Warmiensis RestitutaCantus Humanus + +1010601Christoph MarksGerman classical cellist, born in 1955 in Berlin, Germany.Needs VoteChristopher MarksThe Chamber Orchestra Of EuropeRadio-Philharmonie Hannover Des NDRThe Gaudier EnsembleEnsemble Kontraste (2) + +1011080Douglas Henderson (3)Douglas Wendell Henderson Sr.US radio presenter and recording artist. Douglas 'Jocko' Henderson was a fast-paced deejay and often called the original rapper. He started his radio career in 1950 at WBAL Baltimore. Six months later he moved to Philadelphia where he continued his long radio career. Born March 8, 1918 in Baltimore, died July 15, 2000 in Philadelphia after a long illness. + +Owned [l=Main Line Records] and [l=G & H Music] together with [a=Barry Golder]. Often credited as a co-writer in the 50s and 60s on tracks such as "Long Lonely Nights". This was common practice back then as a way to split royalty money.Needs Votehttp://www.broadcastpioneers.com/jocko1.htmlhttp://repertoire.bmi.com/writer.asp?page=1&blnWriter=True&blnPublisher=True&blnArtist=True&fromrow=1&torow=25&affiliation=BMI&cae=13812124&keyID=152273&keyname=HENDERSON+DOUGLASS+W&querytype=WriterIDD. HendersonD. Henderson, Sr.Douglas "Jocko" HendersonDouglas 'Jocko' HendersonDouglas (Jocko) HendersonDouglas H. HendersonDouglas Henderson Jr.Douglas “Jocko” HendersonH HendersonHendersonJocko HendersonJocko + +1011289Holland Boys ChoirBoys Choir conducted by [a=Pieter Jan Leusink] +Performed under this name since 1996, previously known as [a=Stadsknapenkoor Elburg]. Disbanded approx. 2018.Needs Votehttp://www.hollandboyschoir.com/nieuw/nl/paginasamenstellingNIEUWS.asp?paginaID=60&menu=home1Stadsknapenkoor ElburgJob BoswinkelMartinus LeusinkJeroen AssinkJan ZwerverMaarten EngeltjesArjen NapSebastian HolzPeter van de KolkJan Willem PrinsAalt Jan van RoestHerjan PullenFrank TrosHenk TimmermanMarijn TakkenRichard GuldenaarJelle StokerPeter BloemendaalGerald EngeltjesWillem van der HoornNicky WesterinkKlaas AlbertsHans van RoestAnne Jan LeusinkEdwin SmitGerwin ZwepVincent GroeneveldArjan DokterJim GroeneveldErik GuldenaarGerrit van der HoornCor van TwillertTanny Koomen + +1011291Pieter Jan LeusinkDutch conductor, born in 1958.Needs Votehttp://www.pieterjanleusink.nlhttps://en.wikipedia.org/wiki/Pieter_Jan_LeusinkPieter-Jan LeusinkPīters Jans LeusinksNetherlands Bach Collegium + +1011478Mihály KaszásClassical percussionistNeeds VoteKaszás MihályMichael KaszasMihaly KaszasMahler Chamber OrchestraLiszt Ferenc Chamber OrchestraNoord Nederlands Orkest + +1011627Loretta O'SullivanCellist.Needs VoteOrchestra Of St. Luke'sAston MagnaThe Four Nations EnsembleRed Cedar Chamber MusicThe Smithsonian Chamber Players + +1011647William BlountAmerican clarinetist, flutist and saxophonist living and working in the 190's in New York City. He was also working as teacher for those instruments.Needs Votehttp://arkady.com/blountBill BlountOrchestra Of St. Luke'sMusic AmiciSt. Luke's Chamber Ensemble + +1011659Lisa LyonsClassical violinist.CorrectLisa S. LyonsLes Arts Florissants + +1011663Ronald E. CarboneViolist, playing in orchestras and ensembles in America and GermanyNeeds VoteRobert CarboneRon CarboneRonald CarboneOrchestra Of St. Luke'sThe Composers QuartetSpectrum Concerts BerlinThe New Boston QuartetNew York Piano Quartet + +1011738Jára BenešJaroslav BenešCzech composer, born 5 June 1897 in Prague, Austria-Hungary (today Czech Republic) and died 10 April 1949 in Vienna, Austria.Needs Votehttps://de.wikipedia.org/wiki/Jara_Bene%C5%A1https://adp.library.ucsb.edu/names/101212BenesBeneshBenešBensBenésBeuesI. BenešJ. BenesJ. BenešJ. BenešasJ.BenešasJara - BenesJara AenešJara BebesJara BenesJara BeneschJara BenešJara BenešasJara BenèsJara BenésJara BénésJarabenesJaro BenešJora BenesPeter Brandt (10) + +1012143Frigyes SándorFrigyes Sándor[b]Born:[/b] April 24, 1905 - Budapest, Hungary +[b]Died:[/b] June 1, 1979 - Budapest, Hungary +Co-founder and artistic director of the [a=Liszt Ferenc Chamber Orchestra] until his death in 1979. +The Hungarian violinist, conductor and educator, Frigyes Sándor (younger brother of pianist Renée Sándor; husband of cellist Vera Dénes), studied at the Musical College in Budapest by Gyula Mambriny and Imre Waldbauer. From 1926 he was concert master, from 1936 assistant conductor in the Budapest Choral and Orchestra Association. Gradually, he had to abandon instrument playing because of problems with his arm. In the mid-1930's Frigyes Sándor was already an acclaimed conductor, directing numerous orchestras, such as the Hungarian Women Chamber Orchestra. His main goal was performing works of the baroque era, Haydn and Mozart, and contemporary Hungarian music. He was the first to perform [a=Béla Bartók]'s Divertimento in Hungary, written in the summer of 1939. After World War II, Frigyes Sándor taught violin playing and chamber music at the Capitol Musical College and at the National Conservatorium. In 1949, together with Pál Járdányi, Albert Rényi, and Endre Szervánszky, they published the 5-volume Violin Tutor. This was the first time that playing in the pentatone scale, based on [a=Zoltán Kodály]'s works and Hungarian folk songs, was put forward for elementary education. Still in this year, he was appointed director of the newly established Bartók Béla Musical School. During this period, Frigyes Sándor was also active as a conductor: he performed often with the school's choir and orchestra. Between 1958 and 1975 he taught chamber music at the Budapest Musical College. In 1963 he founded the [a=Liszt Ferenc Chamber Orchestra] of his students and he remained artistic director of the orchestra right until his death...Needs VoteF SandorF. SandorF. SándorFrigues SandorFrigyes SandorFryges SandorS. FrigyesSander FrigyesSandor FrigyesSándor FrigyesФридеш ШандорФридьеш ФандорLiszt Ferenc Chamber Orchestra + +1012162Tom DunnClassical viola player.Needs VoteEnsemble ModernRoyal Scottish National OrchestraOrchestra Of The Age Of EnlightenmentThe Chamber PlayersLondon Bridge Ensemble + +1012163Freya Ritts-KirbyClassical violinist.Needs VoteFreya KirbyFreya KirkbyEnsemble ModernEnsemble Modern OrchestraFrankfurter Opern- Und MuseumsorchesterLa Cappella + +1012165Manon MorrisHarpist.Needs VoteManon MorisEnsemble ModernThe Millennia Ensemble + +1012166Jürgen RuckGerman classical guitar player, born in Freiburg, he is professor in Würzburg.Needs Votehttp://www.juergen-ruck.de/RuckEnsemble ModernEnsemble Modern OrchestraMacheath's Gang (1999 Die Dreigroschenoper, HK Gruber, Ensemble Modern) + +1012167Christopher BrandtDanish bassist and pop singer + +Christopher Brandt participated in the Danish Melodi Grand Prix 2011 with the song "Emma", which he had written with Sisse Søby.Needs VoteEnsemble ModernPanda (12) + +1012169Detlef TewesMandolin player.Needs Votehttp://www.detlef-tewes.de/D. TewesEnsemble Modern + +1012509Jacek KaspszykPolish conductor, born 10 August 1952 in Biała Podlaska, Poland. + +Since his success in the prestigious Herbert von Karajan Competition (1977), Jacek Kaspszyk has conducted major orchestras around the world, including all the major London orchestras, and also the Hallé, Royal Liverpool Orchestra, Royal Scottish National Orchestra, Orchestra of the Age of Enlightenment and the BBC orchestras of Scotland and Wales, debuting with the latter at the BBC Proms. He has also conducted orchestras in Japan, Korea and Malaysia, and he regularly appears in China with the Shanghai Philharmonic Orchestra, Canton Symphony Orchestra and Chinese Philharmonic Orchestra in Beijing. He has held many important musical posts in Poland, including music director of the Polish National Radio Symphony Orchestra, artistic director of the Wrocław Philharmonic (now the National Forum of Music), and also managing and artistic director of the Teatr Wielki – Polish National Opera. With the PNO’s ensembles, he has enjoyed great success in Japan, at the Beijing Festival, Bolshoi Theatre in Moscow, Sadler’s Wells Theatre in London, Hong Kong Arts Festival and elsewhere. As an opera conductor, he has prepared productions for the Deutsche Oper am Rhein in Düsseldorf, Opéra Comique in Paris, Royal Swedish Opera in Stockholm, English National Opera, Scottish Opera, Opernhaus in Zurich, Teatro Colón in Buenos Aires and recently the Staatstheater Nürnberg. Since September 2013, he has been artistic director of the Warsaw Philharmonic. At the start of his tenure, he led the orchestra’s first ever concerts broadcast on the Internet.Needs Votehttps://en.wikipedia.org/wiki/Jacek_Kaspszykhttps://pl.wikipedia.org/wiki/Jacek_Kaspszykhttps://en.chopin.nifc.pl/chopin/persons/detail/id/167J. KasprzykJacek KaspcyckJacek KaspeyckJacek KasprzykJacek KaspzykJacka KaspszykaJecek KaspzykKasprzykKaspszykOrkiestra Symfoniczna Filharmonii Narodowej + +1012570Jean-Pierre DorsayFrench keyboard player, composer active since the 60s. Related to [l=Studio Orchidée]. + +Do NOT confuse with the French songwriter [a=Pierre Dorsey] active in the 50s.Needs VoteDorsayJ,- P DorsayJ. -P. DorsayJ. P. DonsayJ. P. DorsayJ.- P. DorsayJ.-P. DorsayJ.-P. DorseyJ.P. D'OrsayJ.P. DorsayJ.P. DorseyJP DorsayJean P. DorsayJean-P. DorsayJean-Pierre D'OrsayJean-Pierre DorseyJean-Pierre d'OrsayPierre Dorsayピエール・ドーシイ + +1012862Jacques DelacôteFrench conductor, born 16 August 1942.Correcthttp://www.jacques-delacote.com/DelacôteGeorges DelacôteJacques DelacoteJaques Delacôte + +1013241Ragni MalmsténRagni Marita Malmstén-KarjalainenBorn Ragni Marita Malmstén on October 2, 1933 in Helsinki, Finland. A Finnish singer. Her father was [a=Georg Malmstén]. + +Died on May 25, 2002 in Helsinki, Finland. +Needs VoteMarita MalmR. MalmsténRagniRagni - MaritaRagni MalmstenRva R. KervinenRagni Malmstén Ja Orkesteri + +1013244Timo VuoriMartti Valdemar PihaMartti Piha's songwriting pseudonym.Needs VoteT. VuoriT.VuoriVuoriPaul LupanoMartti Piha + +1013245AnnuliAune Onerva HaarlaCorrectAune HaarlaAune Ala-TuuhonenAnu Tuulos + +1013331Carl LoeweJohann Karl Gottfried LoeweGerman composer, baritone singer and conductor, born 30 November 1796 in Löbejün, Sachsen-Anhalt, Germany and died 20 April 1869 in Kiel, Prussia, Germany.Needs Votehttp://en.wikipedia.org/wiki/Johann_Carl_Gottfried_Loewehttps://adp.library.ucsb.edu/names/102150C. LoeweC. LöweCarl LöweK. LoeweKarl LoeweKarl LöweLoeweLöweК. ЛёвеレーヴェStadtsingechor Halle + +1013451Françoise Perrin-FeylerFrench violon player.Needs VoteFrancoise PerrinFrançois PerrinFrançoise FeylerFrançoise Feyler-PerrinFrançoise PerrinFrançoise PérrinFrançoise Perrin (2)Orchestre Philharmonique De Radio FranceQuatuor De Minuit + +1013532Markus HaukeGerman classical percussionist, he teaches in Mainz.Correcthttp://www.markus-hauke.de/Ensemble AvanceStuttgarter Philharmoniker + +1013533Adrian AdlamBritish violinist, conductor and music educator. Born 24 December 1963. +Former member of the [a=London Symphony Orchestra] (1991-2002). Co-founder and artistic director of the Internationale Fredener Musiktage. Member of the [url=https://www.discogs.com/artist/3039224-Das-Hans-Koller-Oktett]Hans Koller Octet[/url].Needs Votehttps://www.adrianadlam.com/https://www.linkedin.com/in/adrian-adlam-46176a17/?originalSubdomain=ukhttps://www.youtube.com/channel/UCULimH5tsjFKFPdixx4RrAAhttps://soundcloud.com/user-3996595https://open.spotify.com/artist/3cA6TGvCAC0TYWpQFSVmeQhttps://music.apple.com/mx/artist/adrian-adlam/1533981329?l=enhttp://en.wikipedia.org/wiki/Adrian_AdlamAdrian AdlumLondon Symphony OrchestraEnsemble AvanceDas Hans Koller-Oktett + +1013781Heinz BongartzGerman conductor and composer, 31 July 1894, Krefeld – 5 May 1978, Dresden, he was the first artistic manager of the Dresdner PhilharmonieNeeds Votehttps://en.wikipedia.org/wiki/Heinz_BongartzBongartzDirijor Heinz BongartzH. BongartzHeinz BogartzHeinz BongaetzХайнц БонгарцХейнц Бонгарц + +1013817Carl Wilson (4)Carl "Flat Top" Wilson - Bassist from the shellac era.Needs Vote"Flat Top" Wilson"Flattop" WilsonC. WilsonCar "Flat Top" WilsonCarl "Flat Top" WilsonCarl "Flattop" WilsonCarl 'Flat Top' WilsonCarl (Flat Top) WilsonFlat Top WilsonRoy Eldridge And His OrchestraHot Lips Page And His OrchestraThe Buddy Tate Celebrity Club OrchestraTom Archia And His All Stars + +1013933John FedchockJohn William FedchockAmerican trombonist, arranger and band leader. + +Born on 18 September 1957, Cleveland, Ohio, USA. Ex-husband of [a=Maria Schneider]. Needs Votehttps://www.johnfedchock.com/https://en.wikipedia.org/wiki/John_FedchockFedchockJohn FedchackJohn FedchochJohn FedchoerWoody Herman And His OrchestraThe Woody Herman Big BandDavid Matthews OrchestraMaria Schneider OrchestraWoody Herman And The Thundering HerdThe Lew Anderson Big BandJohn Fedchock New York Big BandJohn Fedchock NY SextetThe Bob Belden EnsembleFred Hess Big BandAlan Ferber BigbandJohn Fedchock QuartetSouth Florida Jazz OrchestraTerraza Big BandPaul Abler SextetJennifer Wharton's BonegasmGeneration Gap Jazz OrchestraAlex Heitlinger Jazz Orchestra + +1013937Karl KawaharaViolinist.Needs VoteCarl KawaharaKarl KawharaOrchestra Of St. Luke'sSmithsonian Chamber OrchestraThe Bach EnsembleEos OrchestraSteve Kuhn With StringsBrewer Chamber Orchestra + +1014032Jacob de Senlechesor Jacob Senleches, also Jacob Senlechos and Jacopinus Selesses. +fl. 1382/1383 – 1395 +Franco-Flemish [b]composer[/b] and [b]harpist[/b] of the late Middle Ages. He composed in a style commonly known as the ars subtilior. +CorrectJacob (Jacquemins de) SenlechesJacob (Jaquemin De) SenlechesJacob SenchelesJacob SenlechesJacobs de SenlechesSelechesSelessesSenleches + +1014090John Wood (6)Trumpeter with the [a=Sydney Symphony Orchestra]Needs VoteJohn T. WoodSydney Symphony Orchestra + +1014176Coleman Hawkins' All Star OctetCorrectColeman Hawkins All Star OctetColeman Hawkins All Stars OctetColeman Hawkins All-Star OctetColeman Hawkins' All-Star OctetJohnny WilliamsColeman HawkinsBenny CarterWalter JohnsonJ.C. HigginbothamLawrence LucieDanny PoloGene Rodgers + +1014210Roberto RighiniItalian singer-songwriter who made a notable prog/psych single in 1971.Needs VoteR. RighiniR.RighiniRigbiniRighiniI Girasoli + +1014247Terry ReaderTerry ReaderCorrectBreather + +1014314Steve PulliamAmerican jazz trombonistNeeds VoteS. PulliamSteve PullianSteve PullmiamBuddy Johnson And His OrchestraThe Bee JaysThe Eddie "Lockjaw" Davis QuintetSteve Pulliam Orchestra + +1014466Efrem KurtzЕфрем КурцRussian conductor, born 7 November 1900 in Saint Petersburg, Russia and died 27 June 1995 in London, England, UK. He was married to [a=Elaine Shaffer] until her death in 1973. +Correcthttp://en.wikipedia.org/wiki/Efrem_KurtzE. KurtzEferm KurtzEfren KurtzKurtz庫玆 + +1014627Reiko IchiseViol and Viola da Gamba artist Reiko Ichise was born in Tokyo and began her musical training as a pianist. She read musicology at the Kunitachi College of Music where she started playing the viola da gamba, having lessons with Yukimi Kanbe and Tetsuya Nakano. - See more at: http://www.aam.co.uk/#/vermeer/micro-concerts/vermeer-musicians/reiko-ichise.aspxNeeds VoteFretworkThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicGabrieli PlayersThe King's ConsortArte Dei SuonatoriCharivari AgréableBrecon BaroqueTheatre Of The AyreThe Illyria ConsortFlorilegiumThe Bach PlayersPassacaglia EnsembleElephant House QuartetLa Fête Galante + +1014631Emilia BenjaminClassical violin, viol, viola and lirone player. +Librarian of the [url=/artist/837442]Academy of Ancient Music[/url].Needs Votehttp://www.hyperion-records.co.uk/a.asp?a=A909Phantasm (3)FretworkLes Arts FlorissantsThe English Baroque SoloistsLe Concert D'AstréeSonnerieConcordiaDunedin ConsortPortland Baroque OrchestraEuropean Brandenburg EnsembleGalatea (2)Retrospect EnsembleThe MozartistsTheatre Of The AyreMusicians Of Shakespeare's GlobeThe Restoration Consort + +1014814Mike BrignolaAmerican baritone saxophonistNeeds Votehttps://www.linkedin.com/in/mike-brignola-8847976/Michael BrignolaMike BricknolaWoody Herman And His OrchestraJaco Pastorius Big BandThe Woody Herman Big BandWoody Herman And The Thundering HerdThe Dennis Noday OrchestraMiami Saxophone QuartetSouth Florida Jazz Orchestra + +1015406Göteborgs SymfonikerThe Gothenburg Symphony Orchestra (GSO), in Swedish: Göteborgs Symfoniker, is a Swedish symphony orchestra based in Gothenburg which was formed in 1905 as "Göteborgs orkesterförenings orkester". + +The Gothenburg Symphony Orchestra is one of Sweden's seven professional symphony orchestras, and among these one of the four that are "fully developed". It has 109 full-time musicians and gives most of its concerts in Gothenburg Concert Hall, but has a second permanent stage in Vara Concert Hall. Since 1984, the orchestra gives an annual outdoor concert in the park Slottsskogen in June and has also given several concerts at Götaplatsen as part of Gothenburg's cultural party. The orchestra has the Västra Götaland region as principal.Needs Votehttps://www.gso.se/https://www.facebook.com/GothenburgSymphonyOrchestrahttps://sv.wikipedia.org/wiki/G%C3%B6teborgs_Symfonikerhttps://en.wikipedia.org/wiki/Gothenburg_Symphony_OrchestraConcertgebouw Orchestra, AmsterdamGhotenburg Symphony OrchestraGoetenburg Symphony OrchestraGoteborg Symphony OrchestraGotenburg Symphony OrchestraGotheburg Symphony OrchestraGothenberg Symphonic OrchestraGothenberg Symphony OrcherstraGothenberg Symphony OrchestraGothenborg Symphony OrchestraGothenborg Symphony Orchestra (Göteborgs Symfoniker)Gothenburg S.O.Gothenburg SymfonieorkestGothenburg Symph. Orch.Gothenburg Symphonic OrchestraGothenburg SymphonyGothenburg Symphony OrchestraGothenburg Symphony OrchestraGothenburg Symphony Orchestra (Göteborgs Symfoniker)Gothenburg Symphony Orchestra (The National Orchestra Of Sweden)Gothenburg Symphony Orchestra = Göteborgs SymfonikerGothenburg Symphony Orchestra And ChorusGothenburg Symphony Orchestra, Gothenburg Concert Hall ChoirGothenburg Symphony, OrchestraGothenburgs SymphonikerGothenburgs SynfonikerGöteborg SymfonikerGöteborg SymfoniorkesterGöteborg Symphonie OrchesterGöteborg SymphonieorchesterGöteborg SymphonieorchestraGöteborg Symphony OrchestraGöteborg's Symphonie-OrchesterGöteborger Symphonie-OrchesterGöteborger SymphonikerGöteborger Symphony OrchestraGöteborgin SinfoniaorkesteriGöteborgs Symfoniker (Sveriges Nationalorkester)Göteborgs Symfoniker - Sveriges NationalorkesterGöteborgs SymfonikernaGöteborgs SymfoniorchesterGöteborgs SymfoniorkesterGöteborgs Symphonie-OrchesterGöteborgs-SymfonikernaGöteborgsSymfonikernaGöteborgssymfonikernaGöteborgssymfonikernas KammarorkesterMedlemmar ur Göteborgs SymfonikerMembers Of The Gotheberg Symphony OrchestraMembers Of The Gothenburg Symphony OrchestraOrchestraOrchestre Symphonique De GoeteborgOrchestre Symphonique De GoteborgOrchestre Symphonique De GöteborgOrchestre Symphonique de GöteborgOrquesta Sinfónica De GoteburgoOrquesta Sinfónica De GotemburgoOrquesta Sinfónica De GöteborgThe Gothenburg OrchestraThe Gothenburg S. O.The Gothenburg S.O.The Gothenburg SOThe Gothenburg SymphonyThe Gothenburg Symphony OrchestraThe Göteborg Symphony OrchestraWind Ensemble From Gothenburg SOエーテボリ交響楽団Göteborgs RadioorkesterBo EklundBertil LindhJohan SternAnnika HjelmNils EdinCatherine ClaessonNicola BoruvkaPer HögbergGrzegorz WybraniecHenrik EdströmAnnica KroonUrban AgnasLennie HaightEllen HjalmarssonJan BengtsonMårten LarssonHelena FrankmarOddmund ØklandKrister Petersson (2)Norman Del MarErik HeideCharles DeRamusPelle AppelinPaula GustafssonBjörn BohlinLisa FordChrister ThorvaldssonKenneth S. FranzénSamuel RunsteenAntonio HallongrenThord SvedlundKarin ClaessonLotte LybeckIngrid SturegårdClaes GunnarssonÅsa RudnerHanna EliassonLars MårtenssonPer EnokssonFrancis AkosMartin ÖdlundArne NilssonUrban ClaessonHans HernqvistJan LindahlMats EnokssonDick GustavssonKarl-Ove MannbergClaudia BonfiglioliHåkan EhrénAlbert LinderAnders RobertsonMaria NybergMagnus LundénRoger CarlssonErik RisbergPetra LundinFredrik BjörlinMarja InkinenJustyna JaraNaja HelmerSara TrobäckMorten AgerupJan Damen (2)Olle SchillBirgitta RoseErik HammarbergBjörn JohannessonBengt GustafssonJens Kristian SogaardHelena Kollback-HeumanCecilia HultkrantzHavard LyseboStephen Fitzpatrick (2)Audun BreenTuula FleivikRagnar ArnbergAnders JonhällJenny RyderbergJun Sasaki (3)Ulrika DahlbergPernilla CarlzonVincent LindgrenMarc GrueAlec Frank-GemmillPierre GuisJan AlmAnn-Christin RaschdorfEven EvensenMats Lindberg (6)Jessica BreitlowJenny SjöströmIngrid SjönnemoElin AnderbergGunnar MånbergTerje SkomedalJoel NymanJan EngdahlSanttu-Matias RouvaliTina LjungkvistKristina Borg (2)Tove LundKarin KnutsonHåkan SjönnemoHelga HusselsMarjolein VermeerenErnst Simon GlaserVlad StanculeasaAndreas Kratz (2)Daina MateikaiteAnn Elkjär GustafssonGeoffrey Cox (3)Arno Tri PramudiaEléazar CohenLars-Göran DimleKristina KärlinTuula Fleivik NurmoPer IvarssonRobert James (23)Charlotta Grahn-WetterPaul SpjuthBengt Danielsson (3)Ole Kristian DahlAnders Hellman (3)Mats TärnebergJonas Karlsson (14)Ellinor RossingHans Adler (3)Kaitlyn CameronHenrik NordqvistSelena Markson-AdlerSoran LeeIda RostrupJennifer Downing OlssonMats Larsson (14)Alexander HambletonClaudio FlueckigerFernando C De AndradeGregoire NenertIda BrissachIngrid Bakke KarlstedtIngrid Kornfält WallinJonatan OlofzonJosé Raul Tenza RamirezKarin Lindberg (2)Leonardo FeroletoErik Groenestein-HendriksCarolina GrinneDavid GlenneskogDusica CvijanovicKejo MillholmSusanne BrunströmKristina RybergAnnie SvedlundOscar KlevängPia EnblomErik MofjellÅke Schierbeck + +1015420Willem MengelbergJoseph Wilhelm MengelbergDutch composer and conductor. He was born 28 March 1871 in Utrecht, Netherlands and died 22 March 1951 in Zuort, Sent, Graubünden, Switzerland. +Chief conductor of the [a754894] from 1895 to 1945.Needs Votehttps://www.willemmengelberg.nl/https://en.wikipedia.org/wiki/Willem_Mengelberghttp://web.kyoto-inet.or.jp/people/thase29/Willem2/Willem2.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102170/Mengelberg_WillemDr. Willem MengelbergJosef Willem MengelbergMengelbergMengelberg W.Prof. Dr. W. MengelbergProf. Dr. Willem MengelbergProf. Willem MengelbergProfesor Dr. Willem MengelbergProfessor Dr. Willem MengelbergProfessor Willem MengelbergVillem MengelbergW. MengelbergВиллем Менгельбергウィレム・メンゲルベルクメンゲルベルクConcertgebouworkest + +1015581Karl ThorssonKarl Henrik Wilhelm ThorssonSwedish classical percussionist, born on January 3, 1975.Needs VoteKarls ThorssonSveriges Radios SymfoniorkesterPeauxTrio Hakana + +1015586Hans Larsson (3)Swedish classical french hornist.Needs VoteJohan Hans LarssonSveriges Radios SymfoniorkesterDrottningholms BarockensembleStockholm Chamber BrassAmadékvintettenThe Amadé QuintetRebaroqueSvenska Messingkvartetten + +1015587Maj WiddingEva Maj Ingegerd WiddingSwedish bassoonist, born on July 8, 1959.Needs VoteSveriges Radios Symfoniorkester + +1015647Jeffery KirschenJeffry KirschenJeffry Kirschen is an American hornist. A member of [a27519] from 1989 to 2021.Needs VoteJeff KirschenJeffrey KirschenJeffry KirschenThe Philadelphia OrchestraUtah Symphony OrchestraSeattle Symphony Orchestra + +1015648Patricia WeimerCellistNeeds Votehttps://www.bsomusic.org/100-years-of-music/cello/Baltimore Symphony Orchestra + +1015821Horst HedlerClassical cellist + tenor vocalistNeeds VoteConsortium Musicum (2) + +1015822Walter HolyGerman classical trumpeter (* 15 August 1921 in Osnabrück, German Empire; † 07 March 2006 in Cologne, Germany).Needs Votehttps://de.wikipedia.org/wiki/Walter_HolyWalter HogyWDR Sinfonieorchester KölnConcentus Musicus WienCappella ColoniensisArchiv Produktion Instrumental EnsembleBaroque Trumpet and Trombone Group + +1015824Heiner SpickerGerman viol player and violinist, born in 1931.Needs Votehttp://de.wikipedia.org/wiki/Heiner_SpickerHeiner SpicklerHeiner SpieckerHeinrich SpickerSpickerCollegium TerpsichoreConsortium Musicum (2)Camerata Accademica HamburgKölner Violen-Consort + +1015828Alfred LessingAlfred Lessing (10 September 1930 - 15 January 2013) was a German cellist and viol player.Needs VoteDeutsche BachsolistenBachcollegium StuttgartSüdwestdeutsches KammerorchesterConsortium Musicum (2)Duisburger SinfonikerDüsseldorfer SymphonikerMusica Amorbacensis + +1015907Nino DeiCorrectI Cantori Moderni di Alessandroni + +1015967Vern FrileyVernon FrileyVern "Derf" Friley was an American jazz trombonist. + + +Born : July 05, 1924 in Marshall, Missouri. +Died : February 20, 1992. + +Husband of [a=Jean Friley]; brother-in-law of [a=Peggy Clark], [a=Ann Clark] and [a=Mary Clark (3)].Needs VoteFrileyV. FrileyVerne FrileyVernon "Vern" FrileyVernon FrileyVernon L. FrileyWoody Herman And His OrchestraPete Rugolo OrchestraTerry Gibbs And His OrchestraBill Holman's Great Big BandJerry Gray And His OrchestraThe Woody Herman Big BandThe Los Angeles Neophonic OrchestraTerry Gibbs Big BandWoody Herman And His Third HerdRay McKinley And His OrchestraThe Bob Bain Brass EnsembleTerry Gibbs Dream BandThe Mystery Band (3)Si Zentner & His Dance Band + +1016008Hans Priem-BengrathHans Priem-BergrathGerman violinist and conductor, born 9 April 1925. His name is given on many releases as ‘Priem-Bengrath’, but the more idiomatic-looking ‘Priem-Bergrath’ gets more results on Google… + +His musical training took place at the Conservatory Gregoriushaus in Aachen. His violin teacher was Max Pfeiffer. Hans Priem-Bergrath studied under Artur Rother, Herbert Ahlendorf, and Wilhelm Pitz, and later worked with Sir John Barbirolli, Franco Ferrara, and Herbert von Karajan. + +At 20 he was in 1945, the first violinist of the Municipal Orchestra in Aachen. In 1948 he was engaged as concertmaster at the Municipal Theatre in Rheydt. From 1950 to 1980 he was deputy principal violist with the [a260744] (Berlin Philharmonic). In the meantime, he made his debut as a conductor in 1967. He conducted recordings and performances with the Berliner Philharmoniker, the Orquesta Sinfonica Venezuela and the Mexican Orquesta Filarmónica de la UNAM.Needs Votehttps://de.wikipedia.org/wiki/Hans_Priem-BergrathHans PriemHans Priem-BergrathBerliner Philharmoniker + +1016009Hubert GiesenGerman pianist, born 13 January 1898 in Kornelimünster, Germany and died 11 February 1980. He was married to [a=Ellinor Junker-Giesen]. +Needs Votehttp://de.wikipedia.org/wiki/Hubert_Giesenhttps://www.mgg-online.com/article?id=mgg05318&v=1.0&rs=mgg05318https://adp.library.ucsb.edu/names/104853GiesenH. GiesenHubert GiessenKurt Giesenブーベルト・ギーゼン + +1016302Michael SchønwandtDanish conductor, born 1953 in Copenhagen, he is musical director of [a1297439] and the Royal Opera in Copenhagen, conductor of the [a11952002] since 2015.Needs Votehttps://en.wikipedia.org/wiki/Michael_Sch%C3%B8nwandthttps://www.naxos.com/person/Michael_Schonwandt/31852.htmM. SchönwandtM.SchønwandtMichael SchoenwandtMichael SchonwandtMichael SchönwandtMichel SchønwandtSchønwandtミカエル・シェーンヴァントBerliner Sinfonie OrchesterDet Kongelige KapelOrchestre National De Montpellier + +1016349Eckart RungeClassical cellist.Needs Votehttp://www.eckart-runge.comhttps://de.wikipedia.org/wiki/Eckart_Runge#DiskografieRungeThe Chamber Orchestra Of EuropeArtemis QuartettCelloprojektDuo Runge & Ammon + +1016352Artemis QuartettBerlin-based classical string quartet ensemble, founded at the Lübeck Musikhochschule in 1989.Needs Votehttps://en.wikipedia.org/wiki/Artemis_QuartetArtemis QuartetArtemiskvartettenQuatuor ArtemisThe Artemis Quartetアルテミス・カルテットEckart RungeNatalia PrischepenkoHeime MüllerVolker JacobsenFriedemann WeigleGregor SiglAnthea KrestonVineta SareikaHarriet KrijghSuyoen Kim + +1016355Natalia PrischepenkoClassical violinist, born 1973 in Meschduretschesnk, Russia.CorrectNatalia PrichtchepenkoNatalia PrishepenkoNatascha PrishchepenkoPrishepenkoArtemis Quartett + +1016356Heime MüllerClassical violinist, born in 1970 i Hamburg, Germany.Needs Votehttps://de.wikipedia.org/wiki/Heime_MüllerArtemis QuartettBundesjugendorchester + +1016359Volker JacobsenGerman violist, born 1970 in Hanover, Germany. In 1989 he co-founded the [a=Artemis Quartett], he is professor of viola since 2007 and a member of the [a=Linos Ensemble] since 2008.Needs VoteV. JacobsenLinos EnsembleArtemis QuartettBundesjugendorchesterFestival Ensemble Spannungen + +1016869Gary Hoffman (3)Canadian classical cellist, born June 24, 1956 in Vancouver.Needs VoteGary HoffmanHoffmanГари ХоффманГарри Хоффман + +1016904Bob SchellRobert Charles SchellAmerican songwriter.Needs VoteB. SchellRobert Carlos SchellSchell + +1017619Laszlo HeltayHeltay LászlóBritish/Hungarian conductor and composer (5 January 1930 – 17 December 2019).Needs Votehttp://www.bach-cantatas.com/Bio/Heltay-Laszlo.htmhttps://www.uv.es/orfeo/ficu/web/laszloenglishhttps://en.wikipedia.org/wiki/L%C3%A1szl%C3%B3_HeltayHeltayHeltay LászlóLaslo HeltayLaszló HeltayLazlo HeltayLászlo HeltayLászló HeltayThe Royal Choral SocietyNew Zealand Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsBrighton Festival ChorusCoro De RTVE + +1017624Csaba ErdélyiHungarian violist and viola teacher, born in Budapest in 1946. +As a member of the [a=Esterházy Baryton Trio], Erdélyi recorded exclusively for [l=EMI] (1974-1979). He was Principal Viola of the [a704150]/[a=Philharmonia Orchestra] (1974-1978). Member of the [a=Chilingirian Quartet] (1980-1987). Professor of Viola at [l305416] (1980-1987). Erdélyi taught at [l=Indiana University] (1987-1991), [l=Rice University] (1991-1995), Butler University (1998-2003), [l=Bowling Green State University] (2003-2008) as Professor of Viola and Chamber Music. Principal Viola of both the Indianapolis Chamber Orchestra and [a5899181] at the [l430722].Needs Votehttps://www.facebook.com/csaba.erdelyi.547https://www.linkedin.com/in/csaba-erdelyi-1372641b3/https://open.spotify.com/artist/3N1UblpN0M9fauz2a4BTihhttps://music.apple.com/us/artist/csaba-erd%C3%A9lyi/4334937https://www.instantencore.com/contributor/bio.aspx?CId=5036208https://sica-usa.org/sica-usa/subud-artists/biographies/biography-of-csaba-erdelyl/https://westmichigansymphony.org/staff/csaba-erdelyi/https://josephcurtinstudios.com/csaba-erdelyi-viola/https://www.imdb.com/name/nm1809447/Csaba ErdelyiErdélyi CsabaPhilharmonia OrchestraNew Philharmonia OrchestraChilingirian String QuartetEsterházy Baryton TrioSinfonia Da CameraWestern Michigan University Symphony Orchestra + +1017625Felicity LottDame Felicity LottEnglish soprano. Dame Felicity Lott DBE FRAM FRCM was born 8 May 1947 in Cheltenham, England, UK. Needs Votehttps://en.wikipedia.org/wiki/Felicity_Lotthttp://www.felicitylott.de/Dame Felicity LottF. LottFelicity Lott, SopranoLottlott + +1018262Veit ScholzGerman classical bassoonist, he studied in Detmold and Hannover, was a founding member of the [a65807] and the Ensemble [a462177], since 1982 he was principal bassoon of the [a4046023].Needs Votehttp://www.viktorscholz.de/html/fagott_orgel.htmlVeit SeholzEnsemble ModernMusikFabrikEpoca BaroccaNeue Düsseldorfer HofmusikKölner AkademieDüsseldorfer Symphoniker + +1018266Vanessa King (2)french horn player from UKNeeds VoteBournemouth Sinfonietta + +1018283Joachim KlemmGerman hornist and clarinetist, born in 1959 in Hameln, Germany.CorrectBläserensemble Sabine Meyer + +1018371Bruce BergClassical violinist.Needs VoteThe English Baroque SoloistsThe Madison String Quartet + +1018373Suki TowbClassical cello player.Needs VoteSuki TowdThe English Baroque SoloistsThe Academy Of Ancient MusicThe Richard Hickox OrchestraThe English Concert + +1018374Gillian FisherSoprano vocalist.Needs VoteFisherG. FisherG.FisherThe Hilliard EnsembleThe Monteverdi Choir + +1018963Peter LeroySongwriterNeeds VoteLe RoyLercyLeroyP. Le RoyP. LeroyR. RiceChapter Three (2) + +1020052Albert "June" GardnerAlbert Samuel GardnerAmerican jazz drummer and bandleader. +Born : December 31, 1930 in New Orleans, Louisiana. +Died : November 19, 2010 in New Orleans, Louisiana. + +"June" (his nickname) worked with, among others, Lil Green, Roy Brown, Sam Cooke, Lee Dorsey, Lionel Hampton.Needs VoteA. GardnerAlbert "June" GardinerAlbert (June) GardnerAlbert GardnerAlbert Gardner, Jr.Albert S. Gardner, Jr.Gentleman June GardnerJ. GardnerJune GardenerJune GardnerLionel Hampton And His OrchestraLionel Hampton And His SextetJune Gardner & The FellowsThe Ed Frank QuartetThe Boutté-L'Etienne Jazz-Ensemble + +1020054Walter "Phatz" MorrisUS Jazz TrombonistCorrectFats MorrisMorrisPhatz MorrisWalter MorrisWalter Phatz MorrisLionel Hampton And His Orchestra + +1020056Ricky BrauerUS Jazz SaxophonistCorrectLionel Hampton And His Orchestra + +1020057Dave GonsalvesUS Jazz TrumpeterCorrectLionel Hampton And His Orchestra + +1020163John Lynch (4)Jazz trumpet player +Played with Andy Kirk. +Needs VoteLynchDizzy Gillespie And His OrchestraDizzy Gillespie Big BandAndy Kirk And His Orchestra + +1020483Eddie RambeauEdward FluriAmerican pop singer and songwriter. +Born June 30, 1943 in Hazelton, Pennsylvania. +In 1961, disc jockey Jim Ward set up an interview for Ed with the hot Philadelphia label, Swan Records, whereupon they signed him, with him agreeing to take the stage name "Rambeau". +He charted four times as a solo artist between 1965-66, with his highest charted song "Concrete and Clay", which hit #35 in the U.S. (and #13 adult contemporary), two of which he co-wrote. Overall, he charted as a songwriter seven times, with "Navy Blue" by Diane Renay hitting #1 on the adult contemporary chart and #6 overall (co-written by Bob Crewe and Bud Rehak). He also charted with a duet with Marcy Jo (Marcy Sockel) with "Lover's Medley The More I See You/When I Fall in Love", which hit #132 in 1963.Needs Votehttp://www.craftweb.org/web/ed/biography.htmlhttps://en.wikipedia.org/wiki/Eddie_Rambeauhttps://www.imdb.com/name/nm4876897/E. RambaevE. RambeE. RambeauEd RambeauEddy RambeauFluriRambeauRanbeauエディ・ランボーEddie Hazelton + +1020953Michel PuissantClassical vocalist (counternor/alto).Needs VoteLes Arts FlorissantsCamerata Trajectina + +1021032Dezső RánkiHungarian pianist, born 8th September 1951 in Budapest. +Husband of [a3071208] and father of [a8825686].Needs Votehttps://en.wikipedia.org/wiki/Dezs%C5%91_R%C3%A1nkiD. RankiDeszo RankiDeszó RankiDeszö RankiDesző RánkiDezso RankiDezso RánkiDezsó RankiDezsö RankiDezsö RánkiDezső RankiRankiRánkiRánki D.Ránki DeszöRánki DezsőДежё Ранки + +1021444Else Torp SchröderElse TorpDanish soprano vocalist, born 12 November 1968 in Roskilde, Denmark. Needs Votehttps://en.wikipedia.org/wiki/Else_TorpE. TorpElse TorpTheatre Of VoicesArs Nova CopenhagenThe Danish Chamber Choir + +1021575Elizabeth BlakesleeAmerican harpist.CorrectNational Symphony Orchestra + +1021588John Moran (3)Classical cellist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe Consort Of MusickeLes Musiciens Du LouvreWashington Bach ConsortEx Cathedra Baroque OrchestraEnsemble Rebel + +1021589Susan DentBritish classical hornist.Needs VoteThe Parley Of InstrumentsThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicThe Chamber Orchestra Of EuropeOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe King's ConsortThe Albion EnsembleApollo Chamber Orchestra + +1021590Sarah Bealby-WrightClassical violinist.Needs VoteSara Bealby-WrightSarah Bealby WrightSarah Bielby-WrightThe Parley Of InstrumentsOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicGabrieli PlayersRaglan Baroque PlayersThe Avison Ensemble + +1021593Philip SlaneClassical tenor vocalist.CorrectThe Monteverdi Choir + +1021594Timothy MertonClassical cellist.Needs VoteTim MertonOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsEx Cathedra Baroque Orchestra + +1021595Sarah VivianClassical soprano vocalist.Needs VoteThe Monteverdi Choir + +1021596Peter GoodwinClassical trombone and sackbut player.Needs VotePeter GoddwinGabrieli ConsortThe Early Music Consort Of LondonOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicEquale BrassBaroque Brass Of LondonHis Majestys Sagbutts And CornettsThe English Concert + +1021598Christopher DeppeClassical double bassist.CorrectChris DeppeOrchestre Révolutionnaire Et RomantiqueConcerto Köln + +1021599Michael Harris (6)Classical clarinet & chalumeau player and professor. +He studied at the [l290263]. He was a member of the [a=National Youth Orchestra Of Great Britain] (1964-1965) and of the [a=New Philharmonia Orchestra]/[a=Philharmonia Orchestra] from 1974 until 2006. Founder member of the [a=London Winds]. Former Head of Woodwind at the Royal Birmingham Conservatoire. Professor of Clarinet at the Royal College of Music.Needs Votehttps://www.rcm.ac.uk/woodwind/professors/details/?id=01285https://www.nyo.org.uk/profiles/28/team_viewhttps://www.bcu.ac.uk/conservatoire/about-us/birmingham-conservatoire-tutors-and-staff/michael-harrisLondon SinfoniettaPhilharmonia OrchestraNew Philharmonia OrchestraOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicThe Nash EnsembleNational Youth Orchestra Of Great BritainCollegium Musicum 90London Classical PlayersThe New SymphoniaHanover BandThe King's ConsortThe Albion EnsembleLondon WindsThe Music Party + +1021600Joyce JarvisClassical Mezzo-soprano & Alto vocalist.Needs VoteThe Ambrosian SingersThe English Chamber ChoirThe Monteverdi ChoirThe English Concert ChoirTaverner ChoirThe Schütz Choir Of London + +1021601Christopher FosterClassical bass vocalist.Needs VoteChris FosterThe Choir Of The King's ConsortThe Monteverdi ChoirThe English Concert Choir + +1021604Robert MaskellClassical hornist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicLondon Classical PlayersThe English Concert + +1021605Christopher PoffleyClassical cellist and violist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe English Concert + +1021606Adrian ButterfieldClassical violinist, director and conductor, born in London. +A former chorister of St. Paul's Cathedral and a graduate of Trinity College Cambridge, he is Musical Director of the Tilford Bach Society and Associate Musical Director of the London Handel Festival. He also regularly directs the London Handel Orchestra and Players and the Theatre of Early Music, Montreal. +He leads several chamber ensembles: the [a11853485] who perform regularly at the Wigmore Hall, the Revolutionary Drawing Room and The [a1330642]. +He is Professor of Baroque Violin at the Royal College of Music. He is married to the period-instrument flautist and recorder player [a836756].Needs Votehttp://www.rcm.ac.uk/strings/professors/profile/?id=5039http://www.belsizebaroque.org.uk/page22.htmOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicSt. Paul's Cathedral ChoirThe King's ConsortBrandenburg ConsortTheatre Of Early MusicThe Revolutionary Drawing RoomLondon Handel Players + +1021607Lesley SchatzbergerClassical clarinetist.Needs VoteLeslie SchatzbergerSchatzbergerOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicLondon Classical PlayersThe Music Party + +1021608Siu PeasgoodClassical flautist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicCollegium Musicum 90The King's Consort + +1021610Andrew WickensClassical alto vocalist.Needs VoteThe Monteverdi ChoirThe Choir Of St George's Chapel + +1021613Elizabeth HarrisonClassical soprano vocalist.Needs VoteThe Ambrosian SingersThe Monteverdi Choir + +1021614Richard IrelandClassical violinist. +Married to [a=Penny Driver]. Son of violist [a615966] and brother of violist [a1216064].Needs VoteThe Scholars Baroque EnsembleOrchestre Révolutionnaire Et RomantiqueChilingirian String QuartetThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentTaverner Players + +1021616Suzannah ChappleClassical soprano vocalist.Needs VoteSusannah ChappleThe Monteverdi Choir + +1021617Penny VickersClassical soprano & alto vocalist.Needs VoteThe Cambridge SingersBBC SingersThe SixteenThe Monteverdi ChoirRed ByrdThe English Concert ChoirTaverner ChoirChoir Of St. Margaret's, WestminsterHarmonia (7) + +1021618Alberto GrazziClassical bassoonist. +He studied the bassoon at Reggio Emilia and Milan, where he graduated in 1987. +In 1985 he was invited to join the European Baroque Orchestra and from then on has been active, both as an orchestral player and as a soloist, in many European orchestras such as London Baroque, Concentus Musicus Wien, The English Baroque Soloists or Le Concert des Nations. He has been a member of Il Giardino Armonico, and since 1990 he has been principal bassoon of The English Concert. +Together with his brother [a1689553] and [a1362383] he founded Ensemble Zefiro in 1989, an ensemble devoted to rediscovering and performing wind repertoire from the 18th Century.Needs VoteGrazziOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsConcentus Musicus WienLondon BaroqueHesperion XXLe Concert Des nationsLes Musiciens Du LouvreIl Giardino ArmonicoI BarocchistiAccademia Strumentale Italiana, VeronaIl Complesso BaroccoZefiroEuropean Brandenburg EnsembleThe English Concert + +1021708Alan Simon (2)American jazz pianist, born January 11, 1955, New York City, NY, USANeeds Votehttp://alansimonmusic.com/Lionel Hampton And His OrchestraCadence All StarsAlan Simon Quartet + +1021950Renée SiebertRenée SiebertAmerican flutist, born in Norfolk, Virginia. She teaches flute orchestral repertory classes at the Manhattan School of MusicNeeds Votehttp://donbailey.net/renee_siebert.htmRenee SiebertNew York Philharmonic + +1021957George HandyGeorge Joseph HendelmanJazz arranger, composer and pianist, born January 17, 1920 in New York, died January 8, 1997. +Handy's musical beginnings were fostered under the tutelage of pianist [a=Aaron Copland]. While he had an impressive career as a pianist and arranger, he is best known in retrospect for his bebop arrangements. +Handy first worked professionally as a swing pianist for Michael Loring in 1938, but was drafted into the army in 1940. From 1944 to 1946 he was a member of the Boyd Raeburn Orchestra, composing and performing on piano. This was at a time when many big bands were transforming their music toward bebop. He did leave the orchestra briefly to work for Paramount Studios, but soon returned to Raeburn. This was one of his most creative periods, making arrangements of older standards with a distinctly bebop quality. Just as he was entering his prime, however, he had a falling out with Raeburn and left. While he continued to arrange for other bands, it is that 1944–1946 period for which he is remembered most.Needs Votehttps://en.wikipedia.org/wiki/George_Handyhttps://adp.library.ucsb.edu/names/319832G, HandyG. HandyG.HandyGeo. HandyGeorge HendlemanHandyД. ХэндиДж. ХэндиBoyd Raeburn And His OrchestraDizzy Gillespie JazzmenThe Zoot Sims QuintetGeorge Handy And His OrchestraVivien Garry Trio + +1022315S. Nagy IstvánHungarian songwriter, who was married to [a1440430], a well known Hungarian actress and singer. +Born: 20 January, 1934 (Kőröstarcsa, Hungary) +Died: 20 January, 2015 (Budapest, Hungary) + +He has received the following awards over the years: +eMeRTon-díj (1993) / Award given by the Hungarian National Radio +A Magyar Köztársasági Érdemrend kiskeresztje (1996) / Small cross of the Order of Merit of the Hungarian Republic (it's the predecessor merit of the today's Knight of the Order of Merit of the Hungarian Republic) +Huszka Jenő Életműdíj (1999) / Huszka Jenő Lifetime Achievement Award - this award is one of the predecessors of Artisjus Életműdíj +A Magyar Köztársasági Érdemrend tisztikeresztje (2009) / Officer of the Order of Merit of the Hungarian Republic +Artisjus Életműdíj (2011) / Artisjus Lifetime Achievement Award given by the Hungarian right society (ArtisJus) +Börze Award - awarded together with Csongrádi Kata (2014) / Award given by Lemezbörze (local media brand) Needs Votehttp://hu.wikipedia.org/wiki/S._Nagy_Istv%C3%A1nI. NagyI. S. NagyIstavan S NagyIstvanIstvan NaguIstvan NagyIstvan S. NagyIstván F. NagyIstván S NagyIstván S. NagyJ. NagyNagyNagy I. S.Nagy IstvanNagy IstvánNagy IsvanS Nagy IS Nagy I.S. Istvan NagyS. István NagyS. NagyS. Nagy IS. Nagy I.S. Nagy IstvanS. Nagy T.S. Nagy'sS. Nagy. I.S. NagylstvanS.NagyS.Nagy IS.Nagy I.S.Nagy IstvánStefan S. NagyИ. НадьИ. Надь Ш.И. Ш. НадьИ. ЭшпольИштван Ш. НадьНадьНадь ИштванШ. Надь + +1022322Csiba JózsefJózsef CsibaClassical trumpeterNeeds VoteJózsef CsibaLiszt Ferenc Chamber OrchestraApostol + +1022419Alberto CheliAlberto Cheli (Firenze, November 2, 1951) is an Italian singer.Needs Votehttp://it.wikipedia.org/wiki/Alberto_CheliA .CheliA. CheliA. ChelliA.CheliAlberto Cheli GroupCheliSchola Cantorum (2)Le Madri + +1022474Rachel ByrtClassical violist.Needs Votehttps://www.brittensinfonia.com/who-we-are/people/rachel-byrtThe English Baroque SoloistsThe Academy Of Ancient MusicI FagioliniGabrieli PlayersBritten SinfoniaThe King's ConsortLondon ConcertanteBaroque String QuartetThe Avison EnsembleThe Illyria ConsortIn EchoInstruments Of Time & TruthThe Restoration ConsortLondon Handel PlayersKontrabande + +1022578Maud AyatsFrench violinist.Needs VoteOrchestre De ParisNouvel Ensemble Instrumental Du Conservatoire National Supérieur De Paris + +1022692Michel BecquetFrench trombonist. + +Born: 4 February 1954 in Limoges, France. + +From an early age, he practiced piano and horn but discovered his passion for trombone at the age of 10. After a few years of study at the Conservatoire de Limoges, he entered the [l1014340] at the age of 15 where he obtained his diplomas. He won several International Competitions (Geneva, Munich, Ptague and Toulon). At the age of 18, he was hired as Principal Trombone in the [a271870] by [a517158], before joining the [a852709] a few years later. In 1989, he joined the Hochschule für Musik in Cologne to teach. In 1990, he became Head of the Brass Department at the [l787461].Needs VoteBecquetM. BecquetMichelL'Orchestre De La Suisse RomandeOrchestre National De L'Opéra De ParisOrchestre De Chambre Jean-François PaillardLes Sacqueboutiers De ToulouseL'Ensemble De Trombones De ParisWorld Trombone QuartetLe Quatuor de Trombones de ParisMichel Becquet Et L'ensemble OctoboneLes Cuivres Français + +1022779Bryan BlackburnBryan André BlackburnEnglish comedy writer and lyricist (October 20, 1928 in Leicester, England - October 28, 2004). + +He is known for his work on Saturday Variety (1972), The Engelbert Humperdinck Show (1969) and A Royal Gala Variety Performance (1972). He is also remembered for his double act with [a=Peter Reeves], a voguish duo who played all the top West End venues of the period for several years. He also supplied material to many of the cabaret performers of the sixties and honed pantomime scripts to suit their particular talents. They included [a=Danny La Rue], [a=Ronnie Corbett], [a=Barbara Windsor] and [a=Amanda Barrie], all of whom had previously worked with him in West End cabaret. Most of his work following this was in television. He wrote for [a=The Two Ronnies], for [a=Jim Davidson]'s series The Generation Game and Big Break and worked extensively in the United States for [a=Bob Hope]. He was also associate producer of Sunday Night at the London Palladium for several years. He also worked as a lyricist, his two greatest successes being "Love Is Blue" and the [a=Peters & Lee] hit "Welcome Home." He wrote a number of other successful songs for the duo and continued to work on various projects until the onset of his illness six months before his death.Needs Votehttp://www.imdb.com/name/nm0972379/https://www.thestage.co.uk/features/obituaries/2004/bryan-blackburn/http://www.allmusic.com/artist/bryan-blackburn-mn0001041107/creditshttps://www.imdb.com/name/nm3597799/B BlackburnB. BlackburnB.A. BlackburnBlackbirnBlackbumBlackburgBlackburnBlackburn, Bryan AndreBlckburnBlockburnBrian BlackburnBryan Andre BlackburnBryan André Blackburn + +1023073Sarah JacksonFlutistNeeds VoteLos Angeles Philharmonic Orchestra + +1023082Francis SteeleClassical bass vocalist born in Liverpool.Needs Votehttp://web.archive.org/web/20090629070126/http://www.banchieri.hu/english/master1.htmhttps://www.bach-cantatas.com/Bio/Steele-Francis.htmGabrieli ConsortThe Tallis ScholarsThe SixteenThe English Concert ChoirThe Consort Of Musicke + +1023084David CordierEnglish classical counter-tenor & alto vocalist, born 1 May 1959.Needs VoteCordierДейвид КордьерThe Tallis ScholarsThe King's College Choir Of CambridgeCantus CöllnLa Capella DucaleOdhecaton + +1023087Julian WalkerBass vocalist.CorrectThe Cambridge SingersThe Tallis ScholarsThe Monteverdi Choir + +1023088Andrew King (5)Andrew P KingTenor vocalist.Needs VoteA. KingA.K.Andrew P. KingKingNew London ConsortThe Tallis ScholarsBBC SingersThe Monteverdi ChoirThe Academy Of Ancient MusicI FagioliniThe Consort Of MusickeThe Medieval Ensemble of LondonThe London Music Players + +1023089Joseph CornwellEnglish tenor vocalist.Needs Votehttp://www.bach-cantatas.com/Bio/Cornwell-Joseph.htm3rd CockneyCornwellJ. CornwellJamieジョゼフ・コーンウェルThe Tallis ScholarsLes Arts FlorissantsThe Monteverdi ChoirTaverner PlayersThe Consort Of MusickePro Cantione AntiquaThe Medieval Ensemble of LondonHis Majestys Consort Of Voices + +1023648Thomas FüriThomas FüriThomas Füri (born 22 July 1947, Bern, Switzerland - 23 July 2017) was a Swiss violinist and educator.Needs Votehttps://en.wikipedia.org/wiki/Thomas_F%C3%BCrihttps://www.imdb.com/name/nm0299809/T. FüriThomas FueriThomas FuriThomas TüriTomas FüriI SalonistiCamerata BernAria Quartett + +1023670Dino CianiItalian pianist. He was born 16 June 1941 in Fiume, Italy and was killed in a road accident 28 March 1974 in Rome, Italy.Correcthttp://www.dinociani.org/CianiДино Чиани + +1023672Susanne MentzerAmerican operatic mezzo-soprano, born 21 January 1957 in Philadelphia, Pennsylvania.CorrectMentzerSusan MentzerSusanna Mentzer + +1023975Edward WickhamDr. Edward Wickham is Bass vocalist, Director of Music and a Fellow at St. Catharine's College, Cambridge where he lectures on 15th and 16th century music, he is also founder and director of the British early music vocal ensemble The Clerks' Group.Needs VoteE. WickhamEdward WickamWickhamOxford CamerataThe Choir Of Christ Church CathedralThe Clerks' Group + +1024263Rotterdams Philharmonisch OrkestOrchestra from Rotterdam, the Netherlands. +The orchestra was founded in 1930 as the successor to [a14897233]. + +Rotterdams Philharmonisch Orkest +Postbus 962 +3000 AZ Rotterdam +fax: 010-4116215Needs Votehttps://www.rotterdamsphilharmonisch.nl/https://www.linkedin.com/company/rotterdam-philharmonic-orchestrahttps://www.youtube.com/channel/UCz8OwVY3EDL6-FG2E_au7jAhttps://en.wikipedia.org/wiki/Rotterdam_Philharmonic_OrchestraDas Philharmonische Orchester, RotterdamDas Rotterdamer Philharmonische OrchesterMembers Of The Rotterdam Philharmonic OrchestraOrchestre Philharmonique De RotterdamOrchestre Philharmonique de RotterdamOrquesta Filarmonica De RotterdamOrquesta Filarmónica De RotterdamOrquesta Filarmónica de RotterdamOrquesta Filarmónica de RóterdamOrquesta Fliarmonica De RotterdamOrquesta Sinfónica de RotterdamOrquestra Filarmónica De RotterdamOrquestra Filarmónica de RotterdamOrquestra Filarmônica De RoterdamOrquestra Filarmônica De RotterdamPhilharmonic Orchestra of RotterdamPhilharmonie De RotterdamPhilharmonie de RotterdamPhilharmonisches Orchester RotterdamPhilharmonisches Orchester, RotterdamRFORFO Symphony OrchestraRPhORotterdam Filharmoniske OrkesterRotterdam Philarmonic OrchestraRotterdam PhilharmonicRotterdam Philharmonic OrchestraRotterdam Philharmonic Orchestra,Rotterdam Philharmonie De RotterdamRotterdam PhilharmonikerRotterdam Philharmonisch OrkestRotterdamer PhilarmonikerRotterdamer PhilharmonikerRotterdamer Philharmonische OrchesterRotterdamer Philharmonisches OrchesterRotterdamin Filharmoninen OrkesteriRotterdammer PhilharmonikerRotterdams PhORotterdams Philharmonic OrchestraRotterdams PhilharmonischThe Rotterdam PhilharmonicThe Rotterdam Philharmonic Orchestraphilharmonie De RotterdamРоттердамский Филармонический Оркестрロッテルダム・フィルハーモニー管弦楽団Andre HeuvelmanWendy LeliveldPeter MasseursCarla SchrijnerJanine BallerNoëmi BoddenEbred ReijnenRemko De JagerRemco de VriesValery GergievRon TijhuisMarie-José SchrijnerEelco BeinemaKarel SchoofsJan Jansen (2)Jos BuurmanMartin van de MerweHans WisseCharles PiklerRomke Jan WijmengaAd van ZonRandy MaxArto HoornwegRon EphratAlexei OgrintchoukPeter LuitBob StoelJuliette HurelGuus DralPierre WoudenbergPeter LeerdamMaria DingjanLex PrummelWladislaw WarenbergBob BruynJun Yi DouCharlotte SprenkelsEmanuel AbbühlMarien Van StaalenMarieke BlankestijnJacques HoltmanSaskia OttoJos VerspagenBen van DijkTadashi Tanaka (2)Hans CartignyMarieke StordiauFrank De Groot (2)Floris MijndersRosalinde KluckBabette Van Den BergHarke WiersmaHendrik Jan RenesMary O'ReillyJoost BosdijkRobert FranenbergPierre VoldersAlexander VerbeekLaurens van VlietRaymond DelnoyeArno BonsNico van VlietKoen PlaetinckGalahad SamsonIgor GruppmanYing Lai GreenSamuel BrillСемен МеерсонMatthew MidgleyVeronika LenártováBas DuisterHans ColbersArthur OomensDesiree WoudenbergRichard SpeetjensSteven Rosen (3)Anja van Der MatenAnne MelseMartin BaaiPepijn MeeuwsOlivier Patey (2)Quirine ScheffersLeon Bosch (2)Alberto CasadeiJonathan FocquaertDavid Alonso (7) + +1024296Martti KorpilahtiMartti Ilmari Johannes KorpilahtiBorn on April 25th, 1886 in Korpilahti, Finland. Died on September 25th, 1938 in Korpilahti, Finland. A Finnish composer and lyricist.CorrectKorpilahti MarttiM. KorpilahtiM.KorpilahtiMatti Korpilahti + +1024298Karl CollanKarl CollanBorn on January 3rd, 1828 in Iisalmi, Finland. Died on September 12th, 1871 in Helsinki, Finland. A Finnish author and composer.Needs Votehttps://adp.library.ucsb.edu/names/110394A. CollanC. CollanC.CollanCarl CollanCollanCollan KarlK. CollanK. GollanK.CollanKari Collan + +1024332Rubin PhillipsSaxophonistNeeds VoteRubin PhilipsRuhir PhelpsCount Basie Orchestra + +1024333Robert Scott (4)TrombonistNeeds VoteB. ScottBill ScottBob ScottBob Scott, R. ScottBuster ScottR. ScottRobert "Buster" ScottCount Basie OrchestraBilly Eckstine And His Orchestra + +1024709Laura RajanenFinnish violinist, born in 1977.Needs Votehttps://twitter.com/laura_rajanenQuartet TeldexKammerakademie PotsdamSwonderful Orchestra + +1025074Gerhard TaschnerGerman violinist (* 25 May 1922 in Jägerndorf, Czechoslovakia (today Krnov, Czech Republic); † 21 July 1976 in Berlin, Germany). +He was married to [a1025075].Needs Votehttps://de.wikipedia.org/wiki/Gerhard_TaschnerGerhardt TaschnerTaschnerBerliner Philharmoniker + +1025143James MarkeyJames MarkeyAmerican trombonist who has played in the Boston Symphony Orchestra since 2012 after playing with the New York Philharmonic from 1997 to 2012 and previously with the Pittsburgh Symphony Orchestra for 2 years.Needs Votehttps://www.bso.org/profiles/james-markeyNew York PhilharmonicBoston Symphony OrchestraPittsburgh Symphony OrchestraAries Trombone Quartet + +1025144Shannon WoodAmerican timpanist and percussionist.CorrectSaint Louis Symphony OrchestraNew World Symphony Orchestra + +1025159Jeffrey BiancalanaAmerican trumpet player.Needs VoteJeff BiancalanaSan Francisco SymphonyNew World Symphony Orchestra + +1025162Mahoko EguchiClassical violinist.Needs VoteNational Symphony OrchestraNew World Symphony OrchestraArianna String Quartet + +1025199Marilyn ParkMarilyn Park-EllingtonAmerican violinist.CorrectSaint Louis Symphony OrchestraNew World Symphony Orchestra + +1025200Charles DeRamusCharles Allen De RamusAmerican classical double bassist from Atlanta, Georgia, living in Gothenburg, Sweden, born on June 26, 1972Needs VoteCharles DeramusKungliga HovkapelletHouston Symphony OrchestraNew World Symphony OrchestraGöteborgs SymfonikerGageego!Hemvärnets Musikkår Göteborg + +1025212Lara SipolsAmerican violinist.CorrectNew World Symphony OrchestraRochester Philharmonic OrchestraSan Antonio Symphony OrchestraThe American Sinfonietta + +1025214Susanna DrakeSusanna Gaunt née Drake.Horn player. She's married to [a3253483].Needs VoteSusanna GauntSusanna GauntChicago Symphony OrchestraNew World Symphony Orchestra + +1025222Isabel TrautweinAmerican violinist, born in Huntsville, Alabama.Needs Votehttps://www.clevelandorchestra.com/About/Musicians-and-Conductors/Meet-the-Musicians/T-Z-Musicians/Trautwein-Isabel/The Cleveland OrchestraSaint Louis Symphony OrchestraHouston Symphony OrchestraNew World Symphony Orchestra + +1025295Kees OttenDutch classical wind instrumentalist, born November 28, 1924, died September 25, 2008.Needs Votehttp://kees.otten.antenna.nl/english.htmlLeonhardt-ConsortSyntagma Musicum + +1025298Gilles BinchoisGilles de Bins / Gilles de BincheComposer from the "Burgudian Era" or "Franco-Flemish School", born in the Belgian city of Mons, presumably in around 1400. +He played the organ at Sainte Waudru from around 1418 to 1423, when he left Mons and took up residence in Lille (France). +Around 1427, he joined the Burgudian court choir, where he remained until 1453. He retired to became provost of the collegial church of Saint Vincent in Soignies (near Mons) where he died on 20 September 1460. +His known works comprise around 60 songs and 50 sacred works. Though ranked behind his contemporary [a=Guillaume Dufay], he was probably valued more highly than him in the 15th century and can be considered today as the major composer of his time at the Burgudian court. +Needs Votehttps://en.wikipedia.org/wiki/Gilles_BinchoisBinchoisG. BinchoisGiles De BinchoisGilles De BinchoisGilles de Binch dit BinchoisGilles de BinchoisGilles de Bins dit BinchoisЖиль Беншуа + +1025303John DunstableJohn DunstapleJohn Dunstaple or Dunstable (c. 1390 – December 24, 1453) was an English composer of polyphonic music of the late medieval era and early Renaissance. He was one of the most famous composers active in the early 15th century and was widely influential, not only in England but on the continent, especially in the developing style of the Burgundian School.Needs Votehttps://en.wikipedia.org/wiki/John_DunstapleDunstableDunstapleJ. DunstableJ.DunstableJohn Dunstable?John DunstapleДжон Данстейбл + +1025374Johnny BoardSaxophonist, born 8 December 1919 in Chicago, Illinois, died 15 December 1989 in Oak Park, Illinois.Needs VoteBoardJ. BoardJ.BoardJohhny BoardJohn BoardJohnny BeardThe Johnny Board BandLionel Hampton And His OrchestraJohnny Board & Orch.Johnny Board Band + +1025548Frank Miller (3)Frank MillerUS Cellist, Composer and Musical Director (1912–1986), whose professional career spanned over a half century. Miller studied at Curtis Institute of Music and at age 18, joined [a=The Philadelphia Orchestra]. His longest stints were principal cellist of the [a=NBC Symphony Orchestra] and the [a=Chicago Symphony Orchestra] and conductor of the Evanston Symphony Orchestra.Needs VoteF. MillerFrank MillerMillerThe Philadelphia OrchestraNBC Symphony OrchestraCharlie Parker With StringsChicago Symphony OrchestraChicago Symphony String QuartetThe New York Quartet + +1025653Jorja FleezanisJorja Kay FleezanisAmerican violinist and Professor of Violin. +(March 19, 1952 – September 9, 2022) Needs Votehttps://en.wikipedia.org/wiki/Jorja_FleezanisSan Francisco SymphonyChicago Symphony OrchestraMinnesota Orchestra + +1025663Mary HammannAmerican violist and teacher.Needs Votehttps://maryhammann.com/https://oamericas.org/people/mary-hammann/https://www.facebook.com/mary.hammannMary HammanMary M. HammannOrpheus Chamber OrchestraThe Metropolitan Opera House OrchestraAuréole + +1025964Julian PikeClassical tenor.Needs Votehttps://www.bach-cantatas.com/Bio/Pike-Julian.htmhttps://de.wikipedia.org/wiki/Julian_PikeThe Academy Of Ancient Music + +1025979Christian BatzdorfTrumpeter.Needs Votehttps://www.staatsoper-berlin.de/de/kuenstler/christian-batzdorf.228/Staatskapelle Berlin + +1026196Paul Fried (2)American classical flute performer and teacher.Needs Votehttps://www.facebook.com/Paul-Fried-785334954836450/Fried Paul DelanoPaul D. FriedPaul Delano FriedBoston Pops OrchestraBoston Symphony OrchestraPittsburgh Symphony Orchestra + +1026197Laurence ThorstenbergJohn Laurence ThorstenbergAmerican oboist and English horn player, born in 1925, died in 2019. +[url=https://archives.bso.org/Search.aspx?searchType=Performance&Soloist=Laurence%20Thorstenberg]Performance history with the[/url] [a395913], [a406285], [a1055111], and [a776863].Needs Votehttps://marceltabuteau.com/tabuteau-system/laurence-thorstenberg/Boston Pops OrchestraBoston Symphony OrchestraThe Empire Brass QuintetDallas Symphony OrchestraChicago Symphony OrchestraBaltimore Symphony OrchestraUtah Symphony OrchestraBoston Symphony Chamber Players + +1026198Men's Chorus Of The New England ConservatoryCorrectChœur D'Hommes Du New England ConservatoryChœur D'Hommes Du New England Conservatory ChorusCoro Masculino Del Conservatorio de Nueva InglaterraMen Of The New England Conservatory ChorusMen's Choir Of The New England Conservatory ChorusMens Chorus Of The New England ConservatoryMännerchor Des New England Conservatory ChorusMännerchor des New England Conservatory ChorusNew England Conservatory Chorus + +1026388David DropGerman / American violinistCorrectRundfunk-Sinfonieorchester Berlin + +1026736Pietro NardiniPietro NardiniPietro Nardini was an Italian composer and violinist. He was born on 12 April 1722 in Fibiana and died on 7 May 1793. He was also a student of [a=Giuseppe Tartini].Needs Votehttp://en.wikipedia.org/wiki/Pietro_Nardinihttps://adp.library.ucsb.edu/names/104523NadiniNardiniP. NardiniP.NardiniП. НардиниПьетро Нардини + +1026737Francesco Maria VeraciniItalian composer and violinist, born 1 February 1690 in Florence, Italy and died 31 October 1768 in Florence, Italy.Needs Votehttp://en.wikipedia.org/wiki/Francesco_Maria_Veracinihttps://adp.library.ucsb.edu/names/103085F. M. VeraciniF. VeraciniF.M. VeraciniF.M.VeraciniFr. VeraciniFrancesca Maria VeraciniFrancesco M. VeraciniFrancesco Maris VeraciniFrancesco VeraciniVeraciniVeracini F.M.ВерачиниФ. ВерачинiФ. ВерачиниФ. ВераччиниФ. М. ВерачиниStaatskapelle Dresden + +1026738Samuel DushkinAmerican classical violinist of Polish birth, b. 13 December 1891, Suwalki, Poland – d. 24 June 1976, New York. +Also author of arrangements of pieces composed by [a=Igor Stravinsky], among others. +Needs Votehttp://en.wikipedia.org/wiki/Samuel_Dushkinhttps://adp.library.ucsb.edu/names/104442DushkinDuskinM. Samuel DushkinS. DuschkinS. DushkinS. DuškinasS.DushkinДушкинС. Душкин + +1026741Leon PommersLeon PommersPianist, New York, USA +Born 1914, died 7. June 2001Needs VoteLeon Pommers, PianoLéon PommersPommers + +1026778Martha SharpMartha Marion Sharp née Martha Stanley MarionBorn: 9 February, 1937, Charlotte, North Carolina +Died: 11 December, 2024 +Songwriter, probably best known for "Single Girl" recorded by [a=Sandy Posey], 1966. Later worked as an A&R executive for [l651] and [l1000].Needs Votehttp://en.wikipedia.org/wiki/Single_GirlM SharpM. SharpM. SharpeM.M. SharpMartha Marion SharpMartha Marion SharpeMartha SharpeS. ShappSharpSharp. MSharpe + +1026902Tony FalangaAntony FalangaUS-American solo, chamber and jazz bassist, based in New York, USA.Needs Votehttp://www.liben.com/falanga.htmlhttps://de.wikipedia.org/wiki/Tony_FalangaAnthony FalangaAntony FalangaFalangaOrchestra Of St. Luke'sMusic AmiciThe Feidman Trio + +1027253Bibiane LapointeFrench harpsichordist.Needs VoteBibiane La PointeMusica Antiqua KölnLes Cyclopes + +1027263René "Challain" FerretFrench jazz guitaristCorrect"Challain" FerretChalin FerretChallain FerretChallin FerretChallin FerréChallun FerretRene "Chalin" FerretRene "Challain" FerretRené "Chalin" FerretRené "Challun" FerretQuintette Du Hot Club De FranceGus Viseur Et Son OrchestreGus Viseur's MusicLe Trio Ferret + +1027572Francis BassetFrench lyricistNeeds VoteBassetF. BassetFr. BassetFrançis BassetL. AudreePunch (12)Mardi Sous La PluieRotomagus + +1027681Rolando VillazónEmilio Rolando Villazón MauleónMexican-born French tenor. He was born 22 February 1972 in Mexico City, Mexico.Needs Votehttps://rolandovillazon.com/https://en.wikipedia.org/wiki/Rolando_Villaz%C3%B3nhttps://www.instagram.com/rolandovillazon/https://www.facebook.com/villazonmusic/https://x.com/RolandoVillazonhttps://www.youtube.com/channel/UCgCM0__cwJJsT2M84qF6bJwR. VillazonRolando VillazonRollando VillazónVillazonVillazónロランド・ヴィラゾンローランド・ヴィリャソン + +1027687Anna NetrebkoАнна Юрьевна Нетребко / Anna Yuryevna NetrebkoRussian operatic soprano (born 18 September 1971, Krasnodar). Married to [a5270955]. She now holds dual Russian and Austrian citizenship and currently resides in Vienna, Austria and in New York City. Under Gergiev's guidance, she made her operatic stage debut at the Mariinsky at age 22, as Susanna in Le nozze di Figaro. In 1995, at the age of 24, Netrebko made her American debut as Lyudmila in Glinka's Ruslan and Lyudmila at the San Francisco Opera. In 2002, she made her debut at the Metropolitan Opera as Natasha in the Met premiere of War and Peace. In the same year, she sang her first Donna Anna at the Salzburg Festival's production of Don Giovanni, conducted by Nikolaus Harnoncourt. +She is the winner of 2020 Polar Music Prize.Needs Votehttps://annanetrebko.com/https://www.stage-plus.com/klassikakzente/annanetrebkohttps://en.wikipedia.org/wiki/Anna_NetrebkoAnnaNetrebkoАнна Нетребкоアンナ・ネトレプコ + +1028000Louisa TuckBritish cellist.Needs VoteOslo Filharmoniske OrkesterKathryn Tickell & The SideEmanuel EnsembleChoir Of London Orchestra + +1028005Simon KodurandBritish classical violinist, he graduated from both the Royal College and Royal Academy of Music. Being also a consultant/dealer in stringed instruments, he plays on a violin by Nestor Audinot from 1899, and on a baroque violin by Christopher Rowe from 1993. Needs Votehttp://www.skviolins.com/La SerenissimaOrchestra Of The Age Of EnlightenmentThe Avison EnsembleThe Bristol Ensemble + +1028007Benjamin RoskamsBritish freelance classical violinist & violist, and Professor. +He studied at the [l527847] (2000-2004), [l305416] (2004-2005), and the [l472103]. He has led the [a=Netherlands Ballet Orchestra]. He has worked regularly with the [a=London Symphony Orchestra], the [a=London Philharmonic Orchestra], and the [a=Philharmonia Orchestra]. He was a member of the [a=BBC Symphony Orchestra]'s 1st violin section. Member of the [a=The Fibonacci Sequence], the [a=Artea Quartet], and the [b]London International Players[/b]. Assistant Professor at the [l290263].Needs Votehttps://www.facebook.com/benjamin.roskamshttps://www.linkedin.com/in/benjamin-roskams-26367412b/?originalSubdomain=ukhttps://www.youtube.com/channel/UCyNNJG2XQLpxEKACXn0cBnghttps://open.spotify.com/artist/3xvYYTodxhqOXVlz7J1uj3https://music.apple.com/us/artist/benjamin-roskams/1151204120https://www.chambermusicfestival.co.uk/benjamin-roskams-cexshttp://www.fibsonline.co.uk/players/detail.php?Cont_ID=822http://londoninternationalplayers.com/dvteam/benjamin-roskams/Ben RoskamsLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraPhilharmonia OrchestraAmsterdam SinfoniettaNetherlands Ballet OrchestraThe Fibonacci SequenceArtea QuartetStift Festival Orchestra + +1028021Harold FarbermanAmerican conductor, composer, and percussionist. He was born 2 November 1929 in New York City, New York, USA. Died November 24, 2018Needs Votehttps://en.wikipedia.org/wiki/Harold_FarbermanFabermanFarbermanHarold Fabermanハロルド・ファーベルマンBoston Symphony OrchestraThe All Star Percussion Ensemble + +1028079Cleo HenryCleota Mae Davis (née Henry)Mother of [a=Miles Davis]. The trumpeter credited her for the tune [i]Boplicity[/i] because he wanted it in a different music publishing house than the one he was signed with. The composition was in fact co-written by him and [a=Gil Evans]. +Born about 1900 in Arkansas, USA.Needs Votehttps://www.milesdavis.com/https://myspace.com/milesdavishttps://www.facebook.com/MilesDavishttps://x.com/milesdavishttps://www.youtube.com/user/MilesDavisVEVOhttps://soundcloud.com/milesdavisofficialhttps://www.setlist.fm/setlists/miles-davis-3d6b58b.htmlhttps://genius.com/artists/Miles-davishttps://miles-beyond.com/https://www.themusicofmiles.com/https://www.kind-of-blue.de/https://www.plosin.com/milesahead/https://www.thelastmiles.com/https://en.wikipedia.org/wiki/Miles_Davishttps://www.jazzdisco.org/miles-davis/https://www.whosampled.com/Miles-Davis/https://musicianbio.org/miles-davis/https://www.biography.com/musician/miles-davishttps://www.musicianguide.com/biographies/1608001102/Miles-Davis.htmlhttps://www.famousbirthdays.com/people/miles-davis.htmlhttps://www.notablebiographies.com/Co-Da/Davis-Miles.htmlhttps://www.geni.com/people/Miles-Davis/6000000042514521966https://whatgear.com/artist/miles-davishttps://www.grammy.com/grammys/artists/miles-davis/11305https://www.imdb.com/name/nm0002537/C. HenryC.HenryCleo HenriCleo Henry alias Gil EvansCléo HenryHenryHenry CleoГенриMiles DavisW. Process + +1028119Leo HeppeAustrian singer and musician, born 7 June 1922 and died 13 January 1998 in Vienna, Austria.Needs VoteHeppeL. HeppeLeo HoppeBob Martin (3)Die MonteCarlosDie Blauen JungsWiener Staatsopernchor + +1028272Pat DoddEnglish Jazz pianist and songwriter.Needs VoteDoddP. DoddPat DodBenny Carter And His OrchestraPat Dodd And His Boys + +1028273Billy MunnWilliam MunnScottish jazz, ragtime and swing pianist and arranger. +born May 12, 1911, Glasgow, Scotland +died May 2, 2000, Ayrshire, Scotland + +He was member of [a=Jack Hylton And His Orchestra] (1929 to 36) and recorded with [a=Spike Hughes] (1932) and [a=Benny Carter] (1936). He accompanied [a=Louis Armstrong] and [a=Coleman Hawkins] on their tours of England and [a=Wingy Manone] in the United States. He also played with [a=Stephane Grappelli] (1943) and [a=George Chisholm] (1944). Then he founded his own group, the [a=Billy Munn's All-Stars]..Needs Votehttps://en.wikipedia.org/wiki/Billy_Munnhttps://fallout.fandom.com/wiki/Billy_MunnB. MunnMunhMunnJack Hylton And His OrchestraBenny Carter And His OrchestraSydney Lipton And His Grosvenor House BandJack Hylton And His 22 BoysSpike Hughes And His OrchestraBilly Munn's All-StarsBilly Munn And His MusicBilly Munn And The Jazz Club All Stars + +1028293Pierre LeroyerPierre Charles Marcel Napoléon LeroyerFrench lyricist + +Born: December 16, 1918 in Paris, France +Dead: December 27, 2006 in Paris, France.Needs VoteCharles Marcel NapoleonCharles Pierre LeroyerLeroyLeroyerLeroyer PierreLeroyer Pierre Charles MarcelLeroyer Pierre Charles Marcel NapoleonLeroyer, Pierre Charles Marcel NapoleonMarcel Charles Pierre LeRoyerMarcel Charles Pierre LeroyerMarcel NapoleonéP LeroyerP. LeRoyerP. LeroyerP. Leroyer, M. N. CharlesP. LerroyerPiere LeroyerPierre C.M.N LeRoyerPierre C.M.N. LeRoyerPierre Charles Marcel LeroyerPierre Charles Marcel Napoleon LeroyerPierre LeRoyerPierre Leroyer, Marcel Charlesפ. דלנואהPierre DelanoëAsso (3) + +1029418Henry LangeHenry W. LangeAmerican concert pianist, composer and orchestra leader. Born in 1896 in Toledo, OH. Died in 1985 in Dayton, OH. + +Known as the "Monarch of the Ivories," Lange began his musical career as a pianist in 1920 with the Paul Whiteman orchestra, where he was Whlteman's personal composer. He led several bands during the 1920-1930s. He became musical director of WHIO radio in 1939, a position he held until 1954. His compositions include Hot Lips; Yes Sir, That's Lazybones; Symphanola; and Chopiano.Needs VoteA. LangeH. LangH. LangeH.W. LangeHenry LangHenry W. LangeJ. LangeLangLangeLangesM. LangeDennis Brooks (2)Paul Whiteman And His OrchestraHenry Lange And His Baker Hotel OrchestraHenry Lange's Parisian Dance OrchestraHenry Lange And His Orchestra + +1029576Luis BaezPlays clarinet in the San Francisco Symphony (Associate principal).Needs VoteLuis BeezSan Francisco Symphony + +1029577Leonid GesinRussian born violist.Needs VoteLeningrad Philharmonic OrchestraSan Francisco Symphony + +1030125Rudolf ScholzAustrian organist and music pedagogue, born 26 September 1933 in Vienna, Austria and died 2 September 2012 in Vienna, Austria.CorrectDr. Rudolf ScholzR. ScholzRolf ScholzRudolph ScholzWiener Philharmoniker + +1030149Jean GoldketteJohn Jean GoldketteAmerican jazz bandleader. +Born probably in France but possibly in Greece, his mother Angela Goldkette, was a circus performer from Denmark, his father unknown. +Spending his childhood in Greece and Russia, where as a child prodigy he studied piano at The [url=https://en.wikipedia.org/wiki/Moscow_Conservatory]Moscow Conservatory[/url]. +His family moved to America in 1911. +Goldkette leased a ballroom in Detroit and his band [a338450] had great success, helping him forge a business empire acting as an agency for twenty orchestras & owning many dance halls. +Born : March 18, 1899 in Valenciennes, France (or in Greece). +Died : March 24, 1962 in Santa Barbara, California.Needs Votehttp://en.wikipedia.org/wiki/Jean_Goldkettehttp://www.parabrisas.com/artist/jean-goldkettehttps://adp.library.ucsb.edu/names/106499GoldketteJean Goldkette And His OrchestraJean Goldkette's Book-Cadillac Hotel Orchestra + +1030674Louis FrémauxFrench conductor, born August 13, 1921 in Aire-sur-la-Lys, France and died 20 March 2017 in Blois, France.Needs Votehttps://fr.wikipedia.org/wiki/Louis_Fr%C3%A9mauxhttps://www.theguardian.com/music/2017/apr/10/louis-fremaux-obituaryFremauxFrémauxFrémiauxL. F. FremauxL. FremauxL. FrémauxL.F. FremauxL.F. FrémauxL.FrémauxLois FremauxLouis De FremauxLouis De FremontLouis De FrémauxLouis FremauxLouis Fremeauxルイ・フレモー + +1030968Paul RiveauxFrench bassoonist.Needs VoteEnsemble IntercontemporainEnsemble SillagesDenis Levaillant Music Ensemble + +1031130Elisabeth MatiffaClassical Viola da Gamba instrumentalist, died on August 10th 2022Needs VoteElizabeth MatiffaÉlisabeth MatiffaÉlisabeth MattifaLes Arts FlorissantsLes Musiciens Du LouvreA Sei VociEnsemble Vocal Guillaume DufayFuturs-Musiques + +1031133Michèle VandenbroucqueClassical oboe, bassoon & dulcian player.Needs VoteMichèle Van Den BroucqueMichèle Van den BroucqueMichèle VandenbrouckeMichèle VandenbrouqueHuelgas-EnsembleIl Seminario MusicaleA Sei VociConcerto PalatinoAlta (3)Ensemble Jacques ModerneCompagnie Maître GuillaumeEnsemble Daedalus + +1031135Pierre HamonFlute, recorder player and vocalist.Needs VoteP. HamonLes Arts FlorissantsEnsemble Gilles BinchoisIl Seminario MusicaleLe Concert Des nationsHespèrion XXIEnsemble FitzwilliamA Sei VociAlla FrancescaLe Poème HarmoniqueLa NefEnsemble Guillaume de Machaut de ParisEnsemble AmadisLa Canzona + +1031138Marianne MullerFrench viol and viola da gamba player.Needs Votehttp://mariannemuller.fr/M. MullerM. MüllerMarianne MüllerMullerМарианн МюллерLe Concert SpirituelLes Arts FlorissantsLa Chapelle RoyaleHesperion XXEnsemble Clément JanequinA Sei VociEnsemble Les ElémentsEnsemble SpiraleEnsemble AmaliaLes Veilleurs de NuitEnsemble Baroque Les DominosEnsemble GradivaLes inAttendus + +1031140Jean-Pierre NicolasFrench recorder and flute player.Needs VoteLe Concert SpirituelLes Arts FlorissantsIl Seminario MusicaleLa Simphonie Du MaraisEnsemble FitzwilliamA Sei VociLes Sacqueboutiers De Toulouse + +1031144Paul TailleferFrench musician; English horn (cor anglais) player.Needs VoteM. TailleferP. TailleferOrchestre National De FranceOrchestre Du Domaine MusicalPaillard Ensemble D'Instruments À Vent Et Percussions + +1031145Jean DupinClassical oboistNeeds VoteJ.D.Orchestre National De FranceOrchestre National De L'ORTFPaillard Ensemble D'Instruments À Vent Et Percussions + +1031146Jacques LecointreFrench classical trumpeter.Needs VoteOrchestre National De FranceQuintette De Cuivres De L'Orchestre National De FranceQuintette De Cuivres Ars Nova + +1031169Oscar MezaOscar M. MezaClassical bassist.Needs VoteOscar M. MezaOscar MesaOscar Meza Jr.Oscar Meza, JrOscar Meza, Jr.Los Angeles Philharmonic Orchestra + +1031230Wiesław OchmanBorn February 6, 1937 in Warszawa. Polish classical tenor singer.Needs Votehttps://www.ochmanfestiwal.pl/https://www.facebook.com/wieslawochmantenor/https://culture.pl/pl/tworca/wieslaw-ochmanhttps://pl.wikipedia.org/wiki/Wies%C5%82aw_Ochmanhttps://en.wikipedia.org/wiki/Wies%C5%82aw_OchmanOchmanW. OchmanWieslav OchmanWieslaw OchamanWieslaw OchmanWieław OchmannВеслав Охман + +1031883Joey BraslerCorrectJ. BraslerJoe BraslerJoseph Brasler + +1031969Per ÖmanSwedish classical violinist.Needs VotePer OmanStockholm Session StringsSveriges Radios SymfoniorkesterThe Yggdrasil QuartetStenhammar Quartet + +1031971Fredrik PaulssonSwedish classical violinist.Needs VoteThe Chamber Orchestra Of EuropeThe Yggdrasil QuartetStockholm Syndrome Ensemble + +1032050Matthew ElstonClassical violinist.Needs VoteMatt ElstonEnglish Chamber OrchestraBBC Concert Orchestra + +1032052Annabelle MeareBritish classical violinist. Joint Principal 2nd violin with both the [a=Philharmonia Orchestra] and [a=The Chamber Orchestra Of London].Needs Votehttps://www.feenotes.com/database/artists/meare-annabelle/https://neumarkter-konzertfreunde.de/kuenstler/annabelle-mearehttps://philharmonia.co.uk/bio/annabelle-meare/https://www.coffeeconcerts.com/lawrence-power-2016-10-16/https://www.imdb.com/name/nm11793805/Vertavo QuartetPhilharmonia OrchestraThe Nash EnsembleThe Chamber Orchestra Of LondonFalk Quartet + +1032218Russian National OrchestraРоссийский национальный оркестр (РНО) - Russian National Orchestra (RNO)Russian National Orchestra was established in 1990, is the first non-government-supported orchestra in Russia since 1917, and became its first principal conductor. The founder, leader and principal conductor is [a=Mikhail Pletnev] (Михаил Плетнев).Needs Votehttps://web.archive.org/web/20220315210044/http://russiannationalorchestra.org/https://en.wikipedia.org/wiki/Russian_National_OrchestraChoirs & Russian National OrchestraNational Russian OrchestraOrchestre National De RussieRNORussisch Nationaal OrkestRussisches NationalorchesterRyska NationalorkesternThe Russian National OrchestraΕθνική Ορχήστρα Της ΡωσίαςРоссийский Национальный Оркестрロシア・ナショナル管弦楽団Alexander SuvorovMikhail PletnevVladislav LavrikAlexander VedernikovСветлана ПарамоноваAlexei BruniIgor AkimovИван ИрхинОльга ТомиловаВладимир ЧинаевAndrei IkovMark KadinSergei DubovNikolai GorbunovЛина ВартановаLeonid OgrinchukAlexander GrashenkovКирилл ЛукьяненкоПавел ГорбенкоKirill TerentievAnna PaninaAlexey SerovAlya VodovozovaSergey DubovAndrei ShamidanovMaxim RubtsovАлексей ХуторянскийАндрей КолоколовЛеонид КоркинOlga ChepizhnayaVitaly NazarovKonstantin YefimovМирослав МаксимюкСергей ИгруновИгорь Макаров (2)Константин Григорьев (3)Sergei KazantsevCésar Álvarez (2)Tatiana PorshnevaАндрей Шатский (2) + +1032224Volker HornAustrian operatic tenor vocalist (Klagenfurt, Kärnten, March 13, 1943 - November 20, 2009).Needs Votehttp://de.wikipedia.org/wiki/Volker_HornHornRegensburger Domspatzen + +1032225Lucia Valentini TerraniLucia ValentiniItalian coloratura mezzo-soprano. +Born: August 28, 1946, Padua, Italy. +Died: June 11, 1998, Seattle, Washington, USA. +Needs Votehttp://en.wikipedia.org/wiki/Lucia_Valentini_Terranihttp://www.bach-cantatas.com/Bio/Valentini-Terrani-Lucia.htmhttp://www.luciavalentiniterrani.itL. Valentini TerraniL. Valentini-TerraniLucia TerraniLucia ValentiniLucia Valentini-TerraniLucía Valentini-TerraniTerraniValentiniValentini TerraniValentini-TerraniЛючия Валентини-Терраниルチア・ヴァレンティーニ・テッラーニ + +1032227Yefim BronfmanRussian: Ефим Наумович Бронфман; Hebrew: יפים ברונפמןYefim "Fima" Naumovich Bronfman is a Soviet-born Israeli-American classical pianist. +Born April 10, 1958 in Tashkent, Uzbek SSR, he emigrated to Israel at the age of 15 and became an American citizen in 1989.Correcthttp://www.yefimbronfman.com/http://en.wikipedia.org/wiki/Yefim_BronfmanBronfmanIgor OistrakhY. Bronfman + +1032243Niklas EklundSwedish trumpeter, born 1969 in Mölndal. Died 10 April 2025. + +Niklas Eklund has made several recordings with the baroque trumpet. In 2005, Eklund toured with [a861805] as a soloist, playing at the prestigious [l280434]. + +He is the son of the trumpeter, professor [a=Bengt Eklund].Needs Votehttp://www.niklaseklund.com/https://sv.wikipedia.org/wiki/Niklas_Eklundhttps://en.wikipedia.org/wiki/Niklas_EklundEklundThe English Baroque SoloistsSwiss Baroque SoloistsMontreal Baroque + +1032252Gudrun HeyensGudrun HeyensGerman recorder player and teacher, born 1950. +From 1973 to 81 she was member of [a=Musica Antiqua Köln]. +Since 1985 teacher at Folkwang-Hochschule (co-director since 2003). +Correcthttp://www.gudrunheyens.de/Musica Antiqua Köln + +1032253Hajo BäßClassical viola and violin player. +Co-founder of the period ensembles [a=Musica Antiqua Köln], [a=Les Adieux] and Concerto Felice. +Needs VoteHajo BassHajo BässHanns-Josef BassHermann Josef BäßHermann-Josef BässHermann-Josef BäßMusica Antiqua KölnConcerto KölnLa StagioneCamerata KölnLes AdieuxLes Agrémens + +1032254Almuth BergmeierClassical violinist.Needs VoteAlmut BergmeierMusica Antiqua Köln + +1032256Helena JungwirthHelena Jungwirth-AhnsjöSwedish operatic mezzo-soprano, born 21 March 1945 in Stockholm, Sweden, died in 2023 in Munich, Germany.Needs VoteHelena Jungwirth-Ahnsjö + +1032258Bruno GrellaItalian bass/baritone vocalist.Needs Vote + +1032262Ferruccio BusoniDante Michelangelo Benvenuto Ferruccio BusoniFerruccio Busoni (1 April 1866, Empoli, Italy — 27 July 1924, Berlin, Weimar Republic) was a distinguished Italian composer, pianist, music editor, writer, and pedagogue. He was the son of clarinetist [a=Ferdinando Busoni] (1834—1909) and pianist [url=https://discogs.com/artist/12096481]Anna Weiß-Busoni[/url] (1833—1909), and had two sons: [url=https://discogs.com/artist/15819009]Benvenuto "Benni"[/url] (1892—1976) and [url=https://discogs.com/artist/4564062]Raffaello "Lello" Busoni[/url] (1900—1962). The [i]Ferruccio Busoni International Piano Competition[/i], established in 1949 by [a=Cesare Nordio] to commemorate his 25th anniversary, is widely acclaimed among the world's most prestigious and challenging. + +Busoni had an extensive and prolific career as a pianist and composer that spanned Europe, Russia, and the United States. During this time, he collaborated with some of the most notable musicians, artists, writers, and thinkers of the era. An outstanding pianist, Ferruccio was a child prodigy initially trained by his parents. Between 1875 and 1877, young Busoni studied at the [url=https://discogs.com/label/1209200]Vienna Conservatory[/url]; as an adult, he trained under [a=Carl Reinecke] in Leipzig. Busoni settled in Berlin in 1894, which he henceforth regarded as his home base. + +Ferruccio Busoni did acoustic piano recordings at [l425263], in November 1919 and February 1922, released by [url=https://discogs.com/label/97841]Columbia[/url] on several 78 RPM shellac discs. In 2002, [l=Arbiter] label digitally restored surviving material for the CD compilation [i][r=12483432][/i]. + +He began writing music in early childhood and completed over 200 original pieces before turning twenty. Busoni's established "mature" catalog comprised over 100 works, from symphonic suites and concertos to solo piano, chamber pieces for piano and strings, string quartets, and many others. Perhaps even more recognized than Ferruccio's original oeuvre was his monumental "[i]Bach-Busoni Editions[/i]" (J.S. Bach Klavierwerke: Busoni-Ausgabe) — a series of piano transcriptions of [url=https://discogs.com/artist/95537]Bach[/url]'s organ works. The colossal endeavor took him almost thirty years, even in co-authorship with [a=Egon Petri] and Bruno Mugellini (1871—1912); the first 25-volume edition was published by [l=Breitkopf & Härtel] between 1894 and 1923. Busoni also produced and published many adaptations, transcriptions, cadenzas, and editions of other composers, including [url=https://discogs.com/artist/95544]Beethoven[/url], [url=https://discogs.com/artist/95546]Mozart[/url], [url=https://discogs.com/artist/226461]Liszt[/url], [url=https://discogs.com/artist/283469]Schubert[/url], [url=https://discogs.com/artist/304975]Brahms[/url], [url=https://discogs.com/artist/192325]Chopin[/url], [url=https://discogs.com/artist/623293]Mendelssohn[/url], [url=https://discogs.com/artist/620726]Weber[/url], [url=https://discogs.com/artist/882655]Cornelius[/url], [url=https://discogs.com/artist/861947]Cramer[/url], and [url=https://discogs.com/artist/1092665]Goldmark[/url]. + +Some of Busoni's notable composition and piano students over the years were [a=Edgard Varèse], [a=Egon Petri], [a=Kurt Weill], [a418708], [a3119653] and [a=Rudolph Ganz] (co-founders of The Busoni Society), [a=Aurelio Giorni], [a=Stefan Wolpe], [a=Otto Luening], [a=Percy Grainger], [a=Selim Palmgren], [a=George Frederick Boyle], [a=Armas Järnefelt], [a=Edward Weiss], [a=Dimitri Mitropoulos], [a=Michael Von Zadora], [a=Leo Sirota], [a=Herbert Fryer], [url=https://discogs.com/artist/6243873]Elena Gnessina[/url], [a=Louis Gruenberg], [a=Philipp Jarnach], [a=Wladimir Vogel], [a=Gino Tagliapietra], [a=Edward Maurice Isaacs], [a=Guido Agosti], [a=Émile-Robert Blanchet], [a=Alexander Brailowsky], [a2413738], [a1004027], [a6362685], [a7188672], [a3596773], [a7047428], [a1055643], [a=Theodor Szántó], [a9060049], [a=Beryl Rubinstein], [a=Dimitri Tiomkin], [a2814685], [a=Theophil Demetriescu], [a=Gottfried Galston], and [a=Robert Blum].Needs Votehttps://en.wikipedia.org/wiki/Ferruccio_Busonihttps://www.treccani.it/enciclopedia/ferruccio-busoni_%28Dizionario-Biografico%29/https://www.britannica.com/biography/Ferruccio-Busonihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102577/Busoni_FerruccioBach/BusoniBusinoBusoneBusoniBusoníBussoniF BusoniF. B. BusoniF. BusoniF.B. BusoniFerruccioFerruccio B. BusoniFerruccio Benvenuto BusoniFerruccio Dante Michelangelo Benvenuto BusoniFerrucio BusoniFeruccio BusoniБузониБюнсониФ. БузониФ.БузониФерруччо БузониФеручо Бузониフェルッチョ・ブゾーニフェルッチョ・ブゾーニ + +1032265Margrit WeberSwiss pianist, born 24 February 1924 in Ebnat-Kappel, Switzerland and died 2 November 2001 in Zollikon, Switzerland.CorrectM. WeberMargit WeberWeberΜάργκριτ Βέμπερ + +1032272Barbara DanielsAmerican operatic soprano, born 7 May 1946 in Greenville, Ohio.CorrectDaniels + +1032273James BusterudCorrect + +1032276Gimi BeniCorrect + +1032277Coro dell'Accademia Nazionale di Santa CeciliaCoro dell'Accademia Nazionale di Santa CeciliaItalian choir, currently led by [a2643629]. + +Coro dell'Accademia Nazionale di Santa Cecilia ("Choir of the National Academy of Santa Cecilia") is an Italian choir, located in Rome. The Academy is based at the Auditorium Parco della Musica in Rome, and was founded by the papal bull, Ratione congruit, issued by Sixtus V in 1585.Needs Votehttps://santacecilia.it/orchestra-e-coro/coro/&Academie Sainte-Cecile De RomeAccademia Di Santa Cecilia, RomaAccademia Di Santa Cecilia, RomeAccademia Nazionale Di Santa Cecelia, RomeAccademia Nazionale di Santa CeciliaAccademia Nazionale di Santa Cecilia Chorus, RomeCOASIRChoeur De L'Academie Sainte-Cecile De RomeChoeur De L'Académie Nationale De Sainte CécileChoeur De L'Académie Sainte-Cécile De RomeChoeur De L'Académie Sainte-Cécile, RomeChoeur de L'Académie Ste Cécile De RomeChoeursChoeurs De L' Académie Sainte-Cécile De RomeChoeurs De L'Académie Sainte-Cécile De RomeChoeurs De L'Académie Sainte-Cécile de RomeChoeurs De L'Académie Sainte-Cécile, RomeChoeurs De L'Accademia Di Santa CeciliaChoeurs De L'Accademia Nazionale Di Santa CeciliaChoeurs De L'Accademia Nazionale di Santa CeciliaChoeurs de L'académie Sainte Cécile de RomeChoirChoir AndChoir Of L'Accademia Nazionale Di Santa Cecilia, RomeChoir Of RomeChoir Of The Academia Di Santa Cecilia, RomeChoir Of The Accademia Di Santa CeciliaChoir Of The National Academy Of Saint CeciliaChoir Of The National Academy Of Santa Cecilia, RomeChorChor Der Academia DI Santa Cecilia, RomChor Der Academia Di Santa CeciliaChor Der Academia Di Santa Cecilia, RomChor Der Academia di Santa Cecilia, RomChor Der Accademi Di Santa CeciliaChor Der Accademi di Santa Cecilia, RomChor Der Accademia Di Santa Cecelia, RomChor Der Accademia Di Santa CeciliaChor Der Accademia Di Santa Cecilia RomChor Der Accademia Di Santa Cecilia, RomChor Der Accademia Di Santa Cecilia, RomaChor Der Accademia Di Santa Cecilia, RomeChor Der Accademia Di Santa Cecillia RomChor Der Accademia Die Santa Cecilia RomChor Der Accademia Nazionale Di Santa CeciliaChor Der Accademia Nazionale Di Santa Cecilia, RomChor Der Accademia Nazionale di Santa CeciliaChor Der Accademia Nazionale di Santa Cecilia, RomChor Der Accademia di Santa Cecilia RomChor Der Accademia di Santa Cecilia, RomChor Der Accademica Di Santa CeciliaChor Der Der Academia Di Santa Cecilia, RomChor Und Orchester Der Academia Di Santa Cecilia, RomChor Und Orchester Der Accademia di Santa Cecilia, RomChor der Academia di Santa Cecilia, RomChor der Accademia Di Santa Cecilia RomChor der Accademia Di Santa Cecilia, RomChor der Accademia di Santa Cecelia, RomChor der Accademia di Santa CeciliaChor der Accademia di Santa Cecilia RomChor der Accademia di Santa Cecilia, RomChor der Accademica di Santa CeciliaChoro Dell'Accademia Nazionale Di St. CeciliaChoro Der Accademia Di Santa Cecilia, RomChorusChorus Of The Accademia Di Santa Cecilia, RomeChorus Accademia Di Santa Cecilia, RomeChorus AndChorus And Orchestra Of L'Accademia Di Santa Cecilia, RomeChorus And Orchestra Of The Academia Di Santa Cecilia, RomeChorus And Orchestra Of The Accademia Di Santa Cecilia, RomeChorus Der Accademia Di Santa Cecilia, RomChorus Der Accademia di Santa Cecilia, RomeChorus Of Accademia De Santa Cecilia, RomeChorus Of Accademia Di Santa CeciliaChorus Of Accademia Di Santa Cecilia, RomeChorus Of L'Academia di Santa Cecilia, Rome (Augusteo)Chorus Of L'Accademia DI Santa Cecelia, RomeChorus Of L'Accademia Di Santa CeciliaChorus Of L'Accademia Di Santa Cecilia, RomChorus Of L'Accademia Di Santa Cecilia, RomaChorus Of L'Accademia Di Santa Cecilia, RomeChorus Of L'Accademia Nazionale Di Santa Cecilia, RomeChorus Of L'Accademia Nazionale di Santa CeciliaChorus Of L'Accademia di Santa Cecilia, RomeChorus Of Santa CeciliaChorus Of Santa Cecilia RomeChorus Of The Academia Di Santa Cecilia RomeChorus Of The Academia Di Santa Cecilia, RomeChorus Of The Academy Of Saint Cecilia, RomeChorus Of The Academy Of Saint Cecillia, RomeChorus Of The Academy Of Santa Cecelia, RomeChorus Of The Academy of Santa Cecilia, RomeChorus Of The Accademi Di Santa Cecilia, RomeChorus Of The Accademi di Santa Cecilia, RomeChorus Of The Accademia De Santa SeciliaChorus Of The Accademia Di Santa Cecila, RomeChorus Of The Accademia Di Santa CeciliaChorus Of The Accademia Di Santa Cecilia At RomeChorus Of The Accademia Di Santa Cecilia Of RomeChorus Of The Accademia Di Santa Cecilia RomeChorus Of The Accademia Di Santa Cecilia, RomChorus Of The Accademia Di Santa Cecilia, RomaChorus Of The Accademia Di Santa Cecilia, RomeChorus Of The Accademia Di Santa Cecilia, Rome*Chorus Of The Accademia Di Santa Celicila, RomeChorus Of The Accademia DiSanta Cecilia, RomeChorus Of The Accademia Nazionale Di Santa CeciliaChorus Of The Accademia Nazionale Di Santa Cecilia, RomeChorus Of The Accademia Nazionale di Santa CeciliaChorus Of The Accademia Nazionale di Santa Cecilia RomeChorus Of The Accademia Nazionale di Santa Cecilia, RomaChorus Of The Accademia Nazionale di Santa Cecilia, RomeChorus Of The Accademia Of Santa CeciliaChorus Of The Accademia Santa Cecilia, RomeChorus Of The Accademia di Santa CeciliaChorus Of The Accademia di Santa Cecilia, RomeChorus Of The National Academy Of Saint CeciliaChorus Of The National Academy Of Santa CeciliaChorus Of The National Academy Of St. CeceliaChorus Of The Santa Cecilia Academy, RomeChorus Of l'Accademia Nazionale di Santa CeciliaChorus Of l'Accademia di Santa CeciliaChorus Of the Accademia Di Santa CeciliaChorus The Accademia Nazionale di Santa Cecilia, RomeOfChorus dell'Accademia Nazionale di Santa Cecilia, RomaChorus of Accademia di Santa Cecilia, RomeChorus of Coro E Orchestra Dell'Accademia Di Santa Cecilia, RomeChorus of L'Accademia di Santa Celia, RomeChorus of The Accademia di Santa CeciliaChorus of the Accademia Nazionale di Santa CeciliaChorus of the Accademia di Santa CeciliaChorus of the Accademia di Santa Cecilia, RomeChorus of the Accedemia di Santa Cecilia, RomeChorus of the National Academy of Santa CeciliaChœurChœur De Chambre De Santa CeciliaChœur De L'Académie Nationale De Sainte CécileChœur De L'Académie Nationale De Sainte-CécileChœur De L'Académie Sainte Cécile De RomeChœur De L'Académie Sainte-CecileChœur De L'Accademia Nazionale Di Santa CeciliaChœur De L’Académie Nationale De Sainte CécileChœur de l'Académie Nationale de Saint CécileChœursChœurs De L'Academie Sainte-Cecile De RomeChœurs De L'Academie Ste Cecile De RomeChœurs De L'Académie Sainte Cécile De RomeChœurs De L'Académie Sainte-Cécile De RomeChœurs De L'Académie Sainte-Cécile de RomeChœurs De L'Académie Ste Cécile De RomeChœurs De L'Académie Ste.Cécile De RomeChœurs De L'Accademia Di Santa Cecilia De RomeChœurs De L'académie Sainte Cécile De RomeChœurs De L’Académie Sainte-Cécile De RomeChœurs De L’académie Sainte-Cécile De RomeChœurs Et Orchestre De L'Académie Sainte Cécile De RomeChœurs Sainte-Cécile De RomeCori Dell'Accademia Di S. Cecilia In RomaCori Dell'Accademia Di Santa Cecilia In RomaCori Dell'Accademia Nazionale Di S. Cecilia In RomaCori Dell'Accademia Nazionale di S. Cecilia In RomaCori Dell'Accademia S. CeciliaCori Dell'Accademia di S. Cecilia In RomaCori EdCori dell'Accademia Di S. Cecilia In RomaCori dell'Accademia Nazionale di S. Cecilia In RomaCori dell'Accademia di S. Cecilia In RomaCori dell'Accademia di Santa Cecilia in RomaCoroCoro Dell'Accademia Di Santa Cecilia In RomaCoro Accademia Di Santa Cecilia, RomaCoro Accademia Nazionale Di Santa CeciliaCoro Accademia Nazionale di Santa CeciliaCoro Accademia S. CeciliaCoro Accademia S. Cecilia, RomaCoro Accademia Santa CeciliaCoro De La Academia De Santa CeciliaCoro De La Academia De Santa Cecilia De RomaCoro De La Academia De Santa Cecilia, RomaCoro De La Academia Nacional De Santa CeciliaCoro De La Academia Santa Cecilia, RomaCoro De La Accademia Nazionale Di Santa CeciliaCoro De La Accademia Nazionale di Santa Cecilia De RomaCoro De La Real Academia de Santa CeciliaCoro De Santa Cecilia De RomaCoro Dell' Academia Di Santa Cecilia, RomaCoro Dell'Academia Nazionale Di Santa CeciliaCoro Dell'Accademia Di S. CeciliaCoro Dell'Accademia Di S. Cecilia Di RomaCoro Dell'Accademia Di S. Cecilia In RomaCoro Dell'Accademia Di Santa CeciliaCoro Dell'Accademia Di Santa Cecilia DI RomaCoro Dell'Accademia Di Santa Cecilia Di LeccoCoro Dell'Accademia Di Santa Cecilia RomaCoro Dell'Accademia Di Santa Cecilia in RomaCoro Dell'Accademia Di Santa Cecilia, RomaCoro Dell'Accademia Di Santa Cecilia, RomeCoro Dell'Accademia Di Santa Sicilia, RomaCoro Dell'Accademia Nazionale Di S. CeciliaCoro Dell'Accademia Nazionale Di Santa CeciliaCoro Dell'Accademia Nazionale Di Santa Cecilia RomaCoro Dell'Accademia Nazionale Di Santa Cecilia, RomaCoro Dell'Accademia Nazionale di S. CeciliaCoro Dell'Accademia Nazionale di Santa CeciliaCoro Dell'Accademia Nazionale di Santa Cecilia, RomaCoro Dell'Accademia di S. Cecilia Di RomaCoro Dell'Accademia di Santa CeciliaCoro Dell'Accademia di Santa Cecilia, RomaCoro Dell'Accademia di Santa Cecilia, RomeCoro Dell'Orchestra Of L'Accademia Di Santa Cecilia, RomaCoro Di Santa CeciliaCoro ECoro E Orchestra Dell'Academia Di Santa Cecilia, RomaCoro E Orchestra Dell'Accademia Di Santa CeciliaCoro E Orchestra dell'Accademia Nazionale di Santa CeciliaCoro E Voci Bianche Dell'Accademia Nazionale Di Santa CeciliaCoro E Voci Bianche Dell'Accademia Nazionale di Santa Cecilia (Roma)Coro Et Orchestra Dell'Accademia Nazionale Di Santa CeciliaCoro Polifonico Dell' Accademia Di Santa Cecilia Di RomaCoro Polifonico Dell'Accademia Di Santa Cecilia Di RomaCoro Santa Cecilia Di RomaCoro Y Orquesta De La Academia De Santa Cecilia De RomaCoro de Santa Cecilia de RomaCoro de la Academia Di Santa Cecilia, RomaCoro de la Academia Nacional de Santa CeciliaCoro de la Academia de Santa Cecilia de RomaCoro de la Academia de Santa Cecilia, RomaCoro de la Accademia Di Santa Cecilia, RomaCoro de la Accademia Nazionale Di Santa CeciliaCoro de la Accademia di Santa Cecilia, RomaCoro de la Accademia di Santa Cecilia, RomeCoro dell' Accademia di S. Cecilia in RomaCoro dell' Accademia di Santa Cecilia, RomaCoro dell'Accademia Di Santa Cecilia, RomaCoro dell'Accademia Nazionale Di Santa CeciliaCoro dell'Accademia Nazionale di Santa Cecilia - RomaCoro dell'Accademia Nazionale di Santa Cecilia, RomaCoro dell'Accademia di S. Cecilia RomaCoro dell'Accademia di S. Cecilia in RomaCoro dell'Accademia di Santa CeciliaCoro dell'Accademia di Santa Cecilia in RomaCoro dell'Accademia di Santa Cecilia, RomaCoro dell'Accademia di Santa Cecilia, RomeCorosCoros De La Academia De Santa Cecilia De RomaCoros De La Academia De Santa Cecilia RomaCoros De La Academia De Santa Cecilia, De RomaCoros De La Academia De Santa Cecilia, RomaCoros De Santa Cecilia De RomaDi Santa Cecilia Di RomaEingangschorEnsemble Vocale Del Conservatorio Santa CeciliaGlockenchorKoorKoor En Orkest Van De Accademia Di Santa CeciliaKoor Van De Accademia De Santa Cecilia, RomeKoor Van De Accademia Di Santa CeciliaKoor Van De Accademia Di Santa Cecilia, RomeKoor Van De Accademia Nazionale di Santa CeciliaKoor Van de Accademia Di Santa Cecilia, RomeKoor Van de Accademia Nazionale di Santa CeciliaKoor en Orkest van de Accademia di Santa Cecilia, RomeKoor van de Accademia Di Santa CeciliaKoor van de Accademia Di Santa Cecilia, RomeKoor van de Accademia di Santa Cecilia, RomeOrchester Der Accademia Di Santa Cecilia, RomaOrchester Der Accademia di Santa Cecilia, RomOrchestra And Chorus Of The National Academy Of Santa CeciliaOrchestra Dell'Academia Di Santa CeciliaOrchestra Dell'Accademia Di S. Cecilia In RomaOrchestra E Coro Dell'Accademia Di Santa Cecilia, RomaOrchestra Of L'Accademia Di Santa Cecilia, RomeOrchestra Of The Accademia Di Santa Cecilia, RomeOrchestra Of The Accademia Nazionale Di Santa Cecilia, RomeOrchestra and Chorus of The Accademia di Santa CeciliaOrchestra e coro dell'Accademia Nazionale di Santa Cecilia RomaOrkest Van De Accademia Di Santa Cecilia, RomeOrquesta de la Academia Santa Cecilia De RomaPiccolo Coro Polifonico Dell' Accademia Di Santa Cecilia, RomeSaint Cecillia Orchestra, RomeSanta Cecilia Academy ChoirSanta Cecilia Academy Choir Of RomeSanta Cecilia Academy ChorusSanta Cecilia ChorusSolisti dell'Accademia di S. CeciliaSt Cecilia ChorusSt. Cecilia ChorusSt. Cecilia Chorus, RomeThe Accademia Di Santa Cecilia ChorusThe Accademia Di Santa Cecilia Chorus And OrchestraThe Accademia Di Santa Cecylia, RomeThe ChorisThe ChorusThe Chorus Of Accademia Di Santa Cecilia, RomeThe Chorus Of L'Accademia Di Santa Cecilia, RomeThe Chorus Of Santa CeciliaThe Chorus Of Santa CecilliaThe Chorus Of The Accademia Di Santa CeciliaThe Chorus Of The Accademia Di Santa Cecilia, RomeThe Chorus Of The Accademia Nazionale Di Santa Cecilia, RomeThe Chorus Of The Accademia Nazionale di Santa CeciliaThe Chorus Of The Accademia Nazionale di Santa Cecilia, RomeThe Chorus Of The Accademia di Santa Cecilia, RomeThe Orchestra And Chorus Of The Accademia Di Santa Cecilia, RomeZbor "Accademia Di Santa Cecilia", RimZbor Accademia Di Santa CeciliaZbor Accademia Di Santa Cecilia, Rimchorus Of L'Accademia Nazionale di Santa CeciliaХорХор Академије Санта ЋећилијаХор Римской академии Санта Чечилияローマ聖チェチーリア音楽院合唱団Cristina CappelliniGabriella MartellacciRosita FrisaniDonatella RaminiFlavia CanigliaCiro ViscoMassimo IannoneDaniela GentileAntonio MameliCorrado AmiciAndrea D'AmelioFrancesco TomaMarta VulpiPatrizia Polia + +1032278Orchestra dell'Accademia Nazionale di Santa CeciliaOrchestra dell'Accademia Nazionale di Santa Cecilia ("Orchestra of the National Academy of Santa Cecilia") is an Italian symphony orchestra, founded in 1908 as [a7272640]. It is currently led by [a1208600]. + +It is based at the National Academy of St Cecilia, one of the oldest musical institutions the world. The Academy is based at the Auditorium Parco della Musica in Rome, and was founded by the papal bull, Ratione congruit, issued by Sixtus V in 1585. + +Note: Do not confuse with [a=Orchestra Da Camera Di Santa Cecilia] a separate ensamble of the Accademia Nazionale di Santa Cecilia. + +Directors: +[a=Bernardino Molinari] (1912–1944) +[a=Franco Ferrara] (1944–1945) +[a=Fernando Previtali] (1953–1973) +[a=Igor Markevitch] (1973–1975) +[a=Giuseppe Sinopoli] (1983–1987) +[a=Uto Ughi] (1987–1992) +[a=Daniele Gatti] (1992–1997) +[a=Myung-Whun Chung] (1997–2005) +[a=Antonio Pappano] (2005–present)Needs Votehttps://santacecilia.it/orchestra-e-coro/orchestra/https://it.wikipedia.org/wiki/Orchestra_dell%27Accademia_Nazionale_di_Santa_Ceciliahttps://en.wikipedia.org/wiki/Orchestra_dell'Accademia_Nazionale_di_Santa_Ceciliahttps://www.imdb.com/name/nm3105495/Acadamy Of Santa CeceliaAcademia De Sta. CeciliaAcademia Di Santa CeciliaAcademia di Santa Cecilia, RomaAcademy Symphony Orchestra Of RomeAccademia Di S. CeciliaAccademia Di Santa CeciliaAccademia Di Santa Cecilia di RomaAccademia Di Santa Cecilia, RomaAccademia Di Santa Cecilia, RomeAccademia Di St. Cecilia, RomAccademia Nazionale Di Santa Cecelia, RomeAccademia Nazionale Di Santa CeciliaAccademia Nazionale Di Santa Cecilia, RomeAccademia Nazionale ItalianaAccademia Nazionale di Santa CeciliaAccademia Nazionale di Santa Cecilia Orchestra, RomeAccademia Nazionale di Santa Cecilia-RomaAccademia Santa Cecila, RomeAccademia di Santa Cecelia, RomeAccademia di Santa CeciliaAccademia di Santa Cecilia OrchestraAccademia di Santa Cecilia RomaAccademia di Santa Cecilia, RomAccedemia Di Santa Cecilia, RomeArchi Dell'Academia Di Santa CeciliaArchi dell'Orchestra dell'Accademia Nazionale di Santa CeciliaAugusteo Symphony OrchestraCOASIRChorChor Der Accademia Di Santa Cecilia, RomaChor Und Orchester Der Accademia Di Santa Cecilia, RomChor Und Orchester Der Accademia di Santa Cecilia, RomChor und Orchester der Accademia di Santa Cecilia, RomChorus And Orchestra Of The Accademia Di Santa Cecilia (Rome)Chorus And Orchestra Of The Accademia Di Santa Cecilia, RomeChorus Of The Accademia Nazionale di Santa Cecilia, RomeChorus of the Accademia Nazionale di Santa CeciliaChœurs Et Orchestre De L'Académie Sainte Cécile De RomeComplesso D'Archi Dell'Accademia Di S. CeciliaComplesso D'Archi Dell'Accademia Di S.CeciliaCoro Dell'Accademia Nazionale Di Santa Cecilia, RomaCoro E Orchestra Dell'Accademia Di Santa CeciliaCoro E Orchestra Dell'Accademia Nazionale Di Santa CeciliaCoro E Orchestra Dell'Accademia Nazionale Di Santa Cecilia, RomaCoro dell'Accademia Nazionale di Santa CeciliaCoro e Orchestra dell'Accademia Nazionale di Santa Cecilia, RomaCoro e Orchestra dell'Accademia di Santa Cecilia, RomaE Orchestra Dell'Accademia Di Santa CeciliaHet Orkest van de Accademia di Santa CeciliaItalian Opera OrchestraKoor En Orkest van de Accademia Die Santa Cecilia, RomeKoor Van De Accademia Di Santa Cecilia, RomeL' Accademia Di Santa Cecilia, RomeL'Accademia di Santa Cecilia, RomeL'Orchestra Dell'Acadamia Di Santa CeciliaL'Orchestra Dell'Accademia Naz. Di S. CeciliaL'Orchestre Di Accademia Di Santa Cecila, RomeL'orchestra Dell'Accademia Santa CeciliaMembers Of Roma Santa Cecilia OrchestraMembers of the Orchestra & Chorus of Santa CeciliaNational Academy Of S. Cecilia OrchestraNational Academy Of Santa CeciliaNazionale di Santa Cecilia, RomOASCROrch Dell'Acc. Di S. Cecilia In RomaOrch. Acc. S. CeciliaOrch. Accademia Di S. Cecilia In RomaOrch. Accademia S. CeciliaOrch. Accademia S. Cecilia In RomaOrch. Accademia S. Cecilia RomaOrch. Accademia Santa CeciliaOrch. De L'Académie Sainte-Cécile De RomeOrch. De L'Académie Ste.Cécile De RomeOrch. Dell'Acc. Di S. CeciliaOrch. Dell'Accademia Di S. CeciliaOrch. Dell'Accademia Di S. Cecilia Di RomaOrch. Dell'Accademia Nazionale Di Santa Cecilia Di RomaOrch. I.C. Dell'Accademia Di Santa CeciliaOrch. Of The Accademia di Santa Cecilia, RomeOrch. S. CeciliaOrch. S. Cecilia in RomaOrch. dell'Accademia di S. CeciliaOrch. dell'Accademica di S. CeciliaOrchesta andOrchesterOrchester Dell'Accademia Di Santa Cecilia, RomOrchester Der Academia Di Santa CeciliaOrchester Der Academia Di Santa Cecilia, RomOrchester Der Academia Nazionale Di Santa CeciliaOrchester Der Academia di Santa Cecilia, RomOrchester Der Accademi Di Santa CeciliaOrchester Der Accademi di Santa CeciliaOrchester Der Accademi di Santa Cecilia, RomOrchester Der Accademia Di Santa CeciliaOrchester Der Accademia Di Santa Cecilia, Rom.Orchester Der Accademia Di Santa CeciliaOrchester Der Accademia Di Santa Cecilia RomOrchester Der Accademia Di Santa Cecilia, RomOrchester Der Accademia Di Santa Cecilia, RomaOrchester Der Accademia Di Santa Cecilia, RomeOrchester Der Accademia Di Santa Cecilla, RomOrchester Der Accademia Di Santa Cecillia RomOrchester Der Accademia Di Santa Ceilia, RomOrchester Der Accademia Die Santa Cecilia RomOrchester Der Accademia Nazionale Di Santa CeciliaOrchester Der Accademia Nazionale Di Santa Cecilia, RomOrchester Der Accademia Nazionale di Santa CeciliaOrchester Der Accademia Nazionale di Santa Cecilia, RomOrchester Der Accademia di Santa CeciliaOrchester Der Accademia di Santa Cecilia RomOrchester Der Accademia di Santa Cecilia, RomOrchester Der Accademia di Santa Cecilia, RomeOrchester Der Accademica Di Santa CeciliaOrchester Der Akademie St. CeciliaOrchester Der Akademie St. Cecilia RomOrchester der Accademia Di Santa Cecilia RomOrchester der Accademia Di Santa Cecilia, RomOrchester der Accademia Nazionale di Santa Cecilia di RomaOrchester der Accademia Nazionale di Santa Cecilia, RomaOrchester der Accademia di Santa CeciliaOrchester der Accademia di Santa Cecilia RomOrchester der Accademia di Santa Cecilia, RomOrchester der Accademia die Santa Cecilia RomOrchester der Accademica di Santa CeciliaOrchestera Della Accademia Santa CeciliaOrchestr Academie sv. Cecílie v ŘíměOrchestr Akademie Sv. Cecilie V ŘíměOrchestraOrchestra Of The Accademia Nazionale Di Santa Cecilia, RomeOrchestra of the Accademia Nazionale di Santa Cecilia-RomaOrchestra Academiei "Santa Cecilia" Din RomaOrchestra Accademia Di S. CeciliaOrchestra Accademia Di S. Cecilia In RomaOrchestra Accademia Di Santa Cecilia, RomaOrchestra Accademia Di Santa Cecilia, RomeOrchestra Accademia Nazionale Di Santa CeciliaOrchestra Accademia Nazionale di Santa CeciliaOrchestra Accademia Nazionale di Santa Cecilia In RomaOrchestra Accademia S. CeciliaOrchestra Accademia S. Cecilia RomaOrchestra Accademia S. Cecilia, RomaOrchestra Accademia di S. CeciliaOrchestra Accademia di S. Cecilia In RomaOrchestra Accademia di Santa CeceliaOrchestra Accademica Del Conservatorio Santa Cecilia, RomaOrchestra Accademica del Conservatorio Santa Cecilia, RomaOrchestra AndOrchestra Da Camera Di Santa CeciliaOrchestra De L'Accademia Sta. CeciliaOrchestra De La Academia Nacional De Santa CeciliaOrchestra Dell Accademia Di Santa Cecilia, RomaOrchestra Dell Accademia Nazionale Di Santa CeciliaOrchestra Dell' Academia De Sta. CeciliaOrchestra Dell' Academia Di Santa Cecilia, RomaOrchestra Dell' Accademia Di S. CeciliaOrchestra Dell' Accademia Di Santa CecilaOrchestra Dell' Accademia Di Santa CeciliaOrchestra Dell' Accademia Di Santa Cecilia, RomaOrchestra Dell' Accademia Nazionale Di S. Cecilia In RomaOrchestra Dell' Augusto RomeOrchestra Dell'Academia Di Santa CeciliaOrchestra Dell'Academia Nazionale Di Santa CeciliaOrchestra Dell'Accademia Di S. CeciliaOrchestra Dell'Accademia Di S. Cecilia Di RomaOrchestra Dell'Accademia Di S. Cecilia In RomaOrchestra Dell'Accademia Di S. Cecilia, RomaOrchestra Dell'Accademia Di Santa CeciliaOrchestra Dell'Accademia Di Santa Cecilia Di RomaOrchestra Dell'Accademia Di Santa Cecilia In RomaOrchestra Dell'Accademia Di Santa Cecilia RomaOrchestra Dell'Accademia Di Santa Cecilia in RomaOrchestra Dell'Accademia Di Santa Cecilia, RomaOrchestra Dell'Accademia Di Santa Cecilia, RomeOrchestra Dell'Accademia Di Santa Cecilia,RomaOrchestra Dell'Accademia Di Santa Sicilia, RomaOrchestra Dell'Accademia Di Santo CeciliaOrchestra Dell'Accademia Naz. Di Santa CeciliaOrchestra Dell'Accademia Nazionale Di S. CeciliaOrchestra Dell'Accademia Nazionale Di S. Cecilia In RomaOrchestra Dell'Accademia Nazionale Di Santa CeciliaOrchestra Dell'Accademia Nazionale Di Santa Cecilia, RomaOrchestra Dell'Accademia Nazionale Di St. CeciliaOrchestra Dell'Accademia Nazionale Die Santa Cecilia RomaOrchestra Dell'Accademia Nazionale di S. Cecilia In RomaOrchestra Dell'Accademia Nazionale di Santa Cecilia (Roma)Orchestra Dell'Accademia Nazionale di Santa Cecilia, RomaOrchestra Dell'Accademia S. Cecilia In RomaOrchestra Dell'Accademia di S. Cecilia In RomaOrchestra Dell'Accademia di Santa CeciliaOrchestra Dell'Accademia di Santa Cecilia In RomaOrchestra Dell'Accademia di Santa Cecilia, RomaOrchestra Dell'Accademia di Santa Cecilia, RomeOrchestra Della Accademia Santa CeciliaOrchestra Der Accademia Di Santa Cecilia, RomeOrchestra Di Santa CeciliaOrchestra Di Santa Cecilia, RomeOrchestra EOrchestra E Coro Dell'Accademia Nazionale di Santa CeciliaOrchestra E Coro dell'Accademia Di Santa Cecilia, RomaOrchestra OF The Accademia Santa Cecilia, RomeOrchestra Of Accademia De Santa Cecilia, RomeOrchestra Of Accademia Di Santa Cecelia, RomeOrchestra Of Accademia Di Santa CeciliaOrchestra Of Accademia Di Santa Cecilia, RomeOrchestra Of Accademia Di Santa CecillaOrchestra Of Accademia Nazionale di Santa CeciliaOrchestra Of Accademia di Santa Cecilia, RomeOrchestra Of Accademia di Santa Ceciliam RomaOrchestra Of L'Academia Di Santa Cecilia, RomeOrchestra Of L'Accadamia Di Santa Cecilia, RomeOrchestra Of L'Accadamia Di Santa Cellia, RomeOrchestra Of L'Accademia DI Santa Cecelia, RomeOrchestra Of L'Accademia Di Santa CeciliaOrchestra Of L'Accademia Di Santa Cecilia, RomOrchestra Of L'Accademia Di Santa Cecilia, RomaOrchestra Of L'Accademia Di Santa Cecilia, RomeOrchestra Of L'Accademia Nazionale Di Santa Cecilia, RomeOrchestra Of L'Accademia Nazionale di Santa CeciliaOrchestra Of L'Accademia Nazionale di Santa Cecilia, RomeOrchestra Of L'Accademia di Santa CeciliaOrchestra Of L'Accademia di Santa Cecilia, RomeOrchestra Of L’Accademia Di Santa Cecilia, RomeOrchestra Of Santa Cecilia RomeOrchestra Of Santa Cecilia, RomeOrchestra Of The Accademia Di Santa Cecilia, RomeOrchestra Of The "Accademia Nazionale De Santa Cecilia - Roma"Orchestra Of The Academia Di Saint CeciliaOrchestra Of The Academia Di Santa CeceliaOrchestra Of The Academia Di Santa CeciliaOrchestra Of The Academia Di Santa Cecilia RomeOrchestra Of The Academia Di Santa Cecilia, RomeOrchestra Of The Academia di Santa Cecilia, RomeOrchestra Of The Academy Di Santa Cecilia, RomeOrchestra Of The Academy Of Saint CeciliaOrchestra Of The Academy Of Saint Cecilia, RomeOrchestra Of The Academy Of Santa Cecelia, RomeOrchestra Of The Academy Of Santa Cecilia, RomeOrchestra Of The Academy Of St. Cecilia, RomeOrchestra Of The Academy of Santa Cecilia, RomeOrchestra Of The Accademi di Santa Cecilia, RomeOrchestra Of The Accademia De Santa SeciliaOrchestra Of The Accademia Di Santa Cecelia, RomeOrchestra Of The Accademia Di Santa Cecila, RomeOrchestra Of The Accademia Di Santa CeciliaOrchestra Of The Accademia Di Santa Cecilia Of RomeOrchestra Of The Accademia Di Santa Cecilia RomeOrchestra Of The Accademia Di Santa Cecilia, RimOrchestra Of The Accademia Di Santa Cecilia, RomOrchestra Of The Accademia Di Santa Cecilia, RomaOrchestra Of The Accademia Di Santa Cecilia, RomeOrchestra Of The Accademia Di Santa Cecilia, Rome*Orchestra Of The Accademia Di Santa Cecilia. RomeOrchestra Of The Accademia Disanta Cecilia, RomaOrchestra Of The Accademia Disanta Cecilia, RomeOrchestra Of The Accademia National Di Santa CeciliaOrchestra Of The Accademia Nazionale De Santa CeciliaOrchestra Of The Accademia Nazionale Di Santa CeciliaOrchestra Of The Accademia Nazionale Di Santa Cecilia RomaOrchestra Of The Accademia Nazionale Di Santa Cecilia, RomeOrchestra Of The Accademia Nazionale Die Santa CeciliaOrchestra Of The Accademia Nazionale Santa Cecilia, RomeOrchestra Of The Accademia Nazionale di Santa CeciliaOrchestra Of The Accademia Nazionale di Santa Cecilia RomeOrchestra Of The Accademia Nazionale di Santa Cecilia, RomeOrchestra Of The Accademia Santa Cecilia, RomeOrchestra Of The Accademia Si Santa Cecilia, RomeOrchestra Of The Accademia di Santa CeciliaOrchestra Of The Accademia di Santa Cecilia RomeOrchestra Of The Accademia di Santa Cecilia, RomeOrchestra Of The Accamedia Di Santa Cecilia, RomeOrchestra Of The Accedemia Di Santa Cecilia, RomeOrchestra Of The L'Accademia Di Santa Cecilia, RomeOrchestra Of The National Academy Of Saint CecOrchestra Of The National Academy Of Saint CeciliaOrchestra Of The National Academy Of Santa CeceliaOrchestra Of The National Academy Of Santa CeciliaOrchestra Of The National Academy Of Santa Cecilia, RomeOrchestra Of The National Academy Of St. CeceliaOrchestra Of The Santa Cecilia Academy, RomeOrchestra Of The Santa Cecilia, RomeOrchestra Of l'Accademia Nazionale di Santa CeciliaOrchestra Of l'Accademia di Santa CeciliaOrchestra Santa Cecilia Di RomaOrchestra Santa Cecilia RomeOrchestra Sinfonica Accademia Nazionale di Santa CeciliaOrchestra Sinfonica Dell'Accademia Di S.CeciliaOrchestra Sinfonica Dell'Accademia Nazionale Di Santa CeciliaOrchestra Sinfonica dell'Accademia Nazionale di Santa CeciliaOrchestra Stabile Accademia Di Santa CeciliaOrchestra Stabile Accademia Di Santa Cecilia, RomaOrchestra Stabile Accademia Nazionale di Santa Cecilia, RomaOrchestra Stabile Accademia S. CeciliaOrchestra Stabile Accademia di Santa Cecilia, RomeOrchestra Stabile Dell'Accademia Di S. CeciliaOrchestra Stabile Dell'Accademia Di Santa CeciliaOrchestra Stabile Dell'Accademia Nazionale Di S. CeciliaOrchestra Stabile Dell'Accademia Nazionale Di Santa CeciliaOrchestra Stabile Dell'Accademia Nazionale di S. CeciliaOrchestra Stabile Dell'Accademia Nazionale di Santa CeciliaOrchestra Stabile Delle Gestione Autonoma Dei Concerti Dell'Accademia Nazionale Di Santa CeciliaOrchestra Stabile Di Santa LuciaOrchestra Stabile dell'Accademia Nazionale di Santa CeciliaOrchestra Stabile dell'Accademia di Santa CeciliaOrchestra de'llAccademia di Santa CeciliaOrchestra dele'Accademia di Santa CeciliaOrchestra dell' Academia di Santa CeciliaOrchestra dell' Accademia di Santa CeciliaOrchestra dell'Academia Di Santa Cecilia, RomaOrchestra dell'Academia di Santa Cecilia RomaOrchestra dell'Accademia Di S. CeciliaOrchestra dell'Accademia Di S. Cecilia In RomaOrchestra dell'Accademia Di Santa CeciliaOrchestra dell'Accademia Di Santa Cecilia, RomaOrchestra dell'Accademia Di Santa Cecilia, Rome*Orchestra dell'Accademia Nazionale Di S. CeciliaOrchestra dell'Accademia Nazionale di S. CeciliaOrchestra dell'Accademia Nazionale di S. Cecilia in RomaOrchestra dell'Accademia Nazionale di Santa Cecilia - RomaOrchestra dell'Accademia Nazionale di Santa Cecilia RomaOrchestra dell'Accademia Nazionale di Santa Cecilia, RomaOrchestra dell'Accademia Nazionale di Santa Cecilia, RomeOrchestra dell'Accademia di S. Ceccilia in RomaOrchestra dell'Accademia di S. CeciliaOrchestra dell'Accademia di S. Cecilia in RomaOrchestra dell'Accademia di Santa CeciliaOrchestra dell'Accademia di Santa Cecilia In RomaOrchestra dell'Accademia di Santa Cecilia in RomaOrchestra dell'Accademia di Santa Cecilia, RomOrchestra dell'Accademia di Santa Cecilia, RomaOrchestra dell'Accademia di Santa Cecilia, RomeOrchestra dell'Accademiia di Santa CeciliaOrchestra dell'accademia Nazionale di Santa Cecilia RomaOrchestra dell’Accademia di Santa CeciliaOrchestra dell’Accademia di Santa Cecilia, RomaOrchestra di Santa CeciliaOrchestra di Santa Cecilia, RomeOrchestra e coro dell'Accademia Nazionale di Santa Cecilia RomaOrchestra of Accademia di Santa Cecilia, RomeOrchestra of L'Accademia di Santa Cecilia, RomeOrchestra of L'Accademia di Santa Celia, RomeOrchestra of L'Accdemia DI Santa Cecilia, RomeOrchestra of The Academia Di Santa Cecilia, RomeOrchestra of The Accademia di Santa CeciliaOrchestra of l'Accademia Nazionale di Santa Cecilia, RomeOrchestra of the "Accedemia Nazionale di Santa Cecilia-Roma"Orchestra of the Academy of St CeciliaOrchestra of the Accademia Nazionale di Santa CeciliaOrchestra of the Accademia Nazionale di Santa Cecilia, RomeOrchestra of the Accademia Nazionale di Santa Cecilia--RomeOrchestra of the Accademia di Santa CeciliaOrchestra of the Accademia di Santa Cecilia, RomaOrchestra of the Accademia di Santa Cecilia, RomeOrchestra of the Accedemia di Santa Cecilia, RomeOrchestra of the National Academy of Santa CeciliaOrchestra of the National Academy of Santa Cecilia, RomeOrchestra, RomeOrchestreOrchestre De L'Academie Sainte-Cecile De RomeOrchestre De L' Académie Sainte-Cécile De RomeOrchestre De L' Académie Ste-Cécile De RomeOrchestre De L' Accademia Di Santa CeciliaOrchestre De L' Accademia Nazionale Di Santa CeciliaOrchestre De L'Academie De Santa CeciliaOrchestre De L'Academie Sainte-Cecile de RomeOrchestre De L'Academie Ste Cecile De RomeOrchestre De L'Académie De Santa CeciliaOrchestre De L'Académie De Santa CéciliaOrchestre De L'Académie Nationale De Sainte CécileOrchestre De L'Académie Nationale De Sainte-CécileOrchestre De L'Académie Saibte-Cécile, RomeOrchestre De L'Académie Sainte Cécile De RomeOrchestre De L'Académie Sainte-CecileOrchestre De L'Académie Sainte-CécileOrchestre De L'Académie Sainte-Cécile De RomeOrchestre De L'Académie Sainte-Cécile de RomeOrchestre De L'Académie Sainte-Cécile, RomeOrchestre De L'Académie Ste Cécile De RomeOrchestre De L'Académie Ste-Cécile De RomeOrchestre De L'Accademia Di Santa CeciliaOrchestre De L'Accademia Di Santa Cecilia De RomeOrchestre De L'Accademia Nazionale Di Santa CeciliaOrchestre De L'académie Sainte Cécile De RomeOrchestre De L'académie Sainte-Cécile De RomeOrchestre De L’Académie Nationale De Sainte CécileOrchestre De L’Académie Sainte-Cécile De RomeOrchestre De L’académie Sainte-Cécile De RomeOrchestre De l'Académie Sainte-Cécile De RomeOrchestre De l'Académie Ste-Cécile De RomeOrchestre Des Concerts De L'Académie Nationale De Santa CéciliaOrchestre Santa CeciliaOrchestre Symphonique De L'Académie Ste-CécileOrchestre de L'Académie Saint-Cécile De RomeOrchestre de L'Académie Sainte Cécile de RomeOrchestre de L'Académie Ste Cécile De RomeOrchestre de L'Accademie Ste Cecile de RomeOrchestre de l'Académie Nationale De Santa-CeciliaOrchestre de l'Académie Nationale de Saint CécileOrchestre de l'Académie Sainte Cécile de RomeOrchestre de l'Académie Sainte-Cécile de RomeOrchestre de l'Académie de Santa CéciliaOrchster Der Accademia Nazionale di Santa Cecilia, RomOrkest Van De Accademia De Santa Cecilia, RomeOrkest Van De Accademia Di Santa CeciliaOrkest Van De Accademia Di Santa Cecilia, RomeOrkest Van De Accademia Nazionale di Santa CeciliaOrkest Van de Accademia Di Santa Cecilia, RomeOrkest Van de Accademia Nazionale di Santa CeciliaOrkest van De Accademia Di Santa Cecilia, RomeOrkest van de Accademia Di Santa CeciliaOrkest van de Accademia Di Santa Cecilia, RomeOrkest van de Accademia di Santa Cecilia, RomeOrkestar "Accademia Di Santa Cecilia", RimOrkestar Accademia Di Santa CeciliaOrkestar Accademia Di Santa Cecilia, RimOrkester Från Accademia Di Santa Cecilia, RomOrquesta De La Academia De Santa CeciliaOrquesta De La Academia De Santa Cecilia (Roma)Orquesta De La Academia De Santa Cecilia De RomaOrquesta De La Academia De Santa Cecilia RomaOrquesta De La Academia De Santa Cecilia, De RomaOrquesta De La Academia De Santa Cecilia, RomaOrquesta De La Academia Nacional De Santa CeciliaOrquesta De La Academia Santa Cecilia, RomaOrquesta De La Academia de Santa Cecilia (Roma)Orquesta De La Accademia De Santa CeciliaOrquesta De La Accademia De Santa Cecilia RomaOrquesta De La Accademia Di Santa Cecilia, RomaOrquesta De La Accademia NAzionale Di Santa CeciliaOrquesta De La Accademia Nazionale Di Santa CeciliaOrquesta De La Accademia Nazionale di Santa Cecilia De RomaOrquesta De La Real Academia De Santa CeciliaOrquesta De Santa Cecilia De RomaOrquesta De Santa Cecilia de RomaOrquesta De Santa Cecília De RomaOrquesta Santa CeciliaOrquesta Sinf nicaOrquesta SinfónicaOrquesta Sinfónica De La AcademiaOrquesta Sinfónica De La Real Academia de Santa CeciliaOrquesta Sinfónica de la Academia de Santa Cecilia de RomaOrquesta Y Coro De La Academia Di Santa Lucia De RomaOrquesta de la Academia Di Santa Cecilia, RomaOrquesta de la Academia Nacional de Santa CeciliaOrquesta de la Academia Santa Cecilia, RomaOrquesta de la Academia de Santa Cecilia de RomaOrquesta de la Academia de Santa Cecilia, RomaOrquesta de la Accademia Di Santa Cecilia, RomaOrquesta de la Accademia di Santa Cecilia, RomaOrquesta de la Accademia di Santa Cecilia, RomeOrquestra Da Academia De Santa Cecilía, RomaOrquestra Da Academia De Santa Cecília, RomaOrquestra Dell'Accademia Nazionale di S. CeciliaRome Santa Cecilia Academy OrchestraSaint Cecilia Academy OrchestraSanta CeciliaSanta Cecilia -Akatemian OrkesteriSanta Cecilia Academy OrchestraSanta Cecilia Academy Orchestra Of RomeSanta Cecilia Akadémia Ének- És ZenekaraSanta Cecilia National Academy OrchestraSanta Cecilia OrchestraSanta Cecilia Orchestra Of RomeSanta Cecilia Orchestra, RomeSanta Cecilia Symphony Orchestra Of RomeSanta Cecilia, RomaSanta Cecilia-Akatemian OrkesteriSanta Cecillia National Academy OrchestraSanta de Cecilia, RomaSoloists Of The Orchestra Dell'Accademia di Santa CeciliaSt. Cecilia OrchestraSt. Cecilia Orchestra RomeSt. Cecilia Orchestra, RomeSt. Celia Orchestra, RomeSymphony Orchestra Of The Academy Of Santa Cecelia, RomeSymphony Orchestra Of The Academy Of Santa Cecilia, RomeSymphony Orchestra Of The Augusteo, RomeSymphony Orchestra Of the Academy Of Santa Cecilia, RomeThe Accademia Di Santa Cecylia, RomeThe Chorus And Orchestra Of The Accademia Di Santa Cecilia, RomeThe OrchestraThe Orchestra Of L'Accademia Di Santa Cecilia, RomeThe Orchestra Of Santa CeciliaThe Orchestra Of The Academy Of Santa Cecelia [Members]The Orchestra Of The Accademia Di Santa Cecilia, RomeThe Orchestra Of The Accademia DI Santa Cecilia, RomeThe Orchestra Of The Accademia De Santa Cecelia, RomeThe Orchestra Of The Accademia Di Santa CeciliaThe Orchestra Of The Accademia Di Santa Cecilia, RomaThe Orchestra Of The Accademia Di Santa Cecilia, RomeThe Orchestra Of The Accademia Di Santa Cecilia. RomaThe Orchestra Of The Accademia Nazionale Di Santa Cecilia, RomeThe Orchestra Of The Accademia Nazionale di Santa CeciliaThe Orchestra Of The Accademia Nazionale di Santa Cecilia, RomeThe Orchestra Of The Accademia di Santa Cecilia, RomeThe Orchestra Of The National Academy Of Santa CeciliaThe Orchestra Of the Accademia Di Santa CeciliaThe Orchestra of L'Accademia di Santa Cecilia, RomeThe Orchestra of the Accademia Nazionale di Santa Cecilia, RomeThe Saint Cecilia Orchestra, RomeThe Saint Cecilla OrchestraThe Santa Cecilia Academy OrchestraThe Santa Cecilia Orchestra, RomeThe Santa Cecilia Symphony Orchestra Of RomeThe St. Cecilia Orchestra, RomeThe St. Cecilia Symphony OrchestraThe Symphony Orchestra Of The Academy Of Santa Cecilia, RomeUnd Orchester Der Accademia Di Santa Cecilia, Romll'Accademia Nazionale di Santa Cecilia, RomaΟρχήστρα Της Ακαδημίας Της Αγίας Καικιλίας Της ΡώμηςОркестар Академије Санта ЋећилијаОркестрОркестр Св.Сесилии, РимСимфонический Оркестроркестр Римской академии Санта Чечилияローマ聖チェチーリア国立音楽院管弦楽団Igor MarkevitchDavid BursackAntonio CaggianoGina ZagniFranco FerraraGiuseppe SinopoliRino VernizziMyung-Whun ChungFranco TraversoPaolo PollastriDaniele GattiLuigi PiovanoFrancesco StorinoGregorio MazzareseDario GoracciFernando PrevitaliAntonio PappanoMarco DionetteVincenzo MariozziMary Cotton SaviniLuigi MazzocchittiStefano NovelliMaurizio PersiaIngrid BelliEdoardo GiachinoMassimo PivaAugusto LoppiAlfonso GhedinAnita MazzantiniCamillo PavoneMarco SalvatoriNicola DomeniconiGilberto LosiAugusto VismaraSimona IemmoloGiulio Di AmicoVincenzo BologneseSalvatore AccardiAntonio LoporchioBernardino PenazziMassimo BartolettiNicola ProtaniSara GentileFabio MendittoPatrizia RadiciEmanuele AntoniucciNicolae SarpeKrystyna PawloskaAdriano CanettaFrancesco BossoneLuigi ChiapperinoRosario GenovesePaolo PiomboniCarlo RizzariDaniele RoccatoAnna Maria SalvatoriDanilo SquitieriDiego RomanoAndrea Oliva (2)Santi InterdonatoMarco MartelliDomenico CeccarossiMassimo TataAlessio AllegriniFabio FrapparelliFrancesco SiragusaAlessandro CarbonareFrancesco Di RosaPatrizio SerinoBernardino MolinariMaria Luisa TorchioCarlo TamponiOrazio GrossiBasilio SanfilippoDomenico BurioniAlessandro Lugli (2)Diego PetreraMaryse RegardPaolo CapponiJo Lane BeversAgostino SperaVincenzo CamagliaAntonio Marchetti (2)Pietro GaburroGiorgio Di CrostaUmberto VassalloRoberto SaluzziMargherita CeccarelliFiorenza GinanneschiArcangelo LosavioBruno GonizziMarco BugariniGiovanni LeonettiGuido CasaranoAntonio Del VecchioLuciano CapicchioniAdolf NeumeierAntonio BologneseGiuseppe Consiglio (2)Romolo BalsaniRiccardo PiccirilliFederico Rossi (2)Dante MilozziVincenzo BuonomoCinzia MaurizioAntonio SciancaleporeFranco CampioniGiovanni CostamagnaAntonio RuggeriFrancesco SquarciaGiovanni Bruno GalvaniCarla SantiniAndrea Vicari (2)Anna CalleriBozena MozdzonekMichael KornelMatteo Michele BettinelliBarbara CastelliPierluigi CapicchioniMaurizio LottiniMaria Tomasella PapaisAlberto MinaAntonio BossoneLorenzo BernabaiRiccardo BonacciniSara SimonciniCarlo OnoriRoberto GranciCristina PucaAntonino PalmeriMaria BurugievaRaffaele Mallozzi (2)Rosario CupolilloKaoru KandaAntonio FlorianoErmanno OttavianiFiliberto TentoniAndrea PighiPaolo MarzoGiuseppe ViriBo PricePiero Franco CardarelliDobrina Natalia GospodinoffMarco Bellucci (2)Aurelio IacolennaRomolo Balzani (2)Manlio PintoRemo D'IppolitoGianluca CamilliGiuseppe AccardiEnrico RosiniGiorgio AngeliniFabio MarconciniCorrado TroianiMassimo NovelliMassimo PanicoSalvatore DominaSandro PippaVincenzo ScaloneLuigino LeonardiClaudio MonacoCarlo Di BlasiDaniele Rossi (5)Aldo D'AmicoDomenico PieriniLibero LanzilottaNicola LolliFabien ThouandGiuseppe ScaglioneFabio CataniaGiacomo MennaAlessio BernardiLorenzo FalconiMirko LandoniSo Yeon KimStefano TrevisanRoberto González-MonjasAndrea ZuccoAndrea MaccagnanYlenia MontaruliRoberto MansuetoBrunella ZantiLeonardo MicucciAndrea SantarsiereLavinia MorelliWilliam Esteban Chiquito HenaoAdriana FerreiraFederico MarchettiDaniele CiccoliniAndrea Conti (5)David Romano (6)Jodie BeversGiuseppe Gentile (2)Gianluca GrossoAndrea Lucchi (2)Federico PiccottiPaolo Rossi (14) + +1032279Paul PlishkaAmerican bass opera singer, born 28 August 1941. Died 3 February 2025.Needs Votehttps://www.georgemartynuk.com/paul-plishka/https://en.wikipedia.org/wiki/Paul_Plishkahttps://www.imdb.com/name/nm0687336/P. PlishkaPlishkaПол Плишка + +1032367Laura FrautschiAmerican violinist.Needs VoteFrautschiLaura FrautshiローラOrpheus Chamber OrchestraKristina & LauraNew York New Music EnsembleBoston Modern Orchestra ProjectThe New York PopsThe Hiraga String Quartet + +1032371José “Pin” MaderaJazz tenor saxophonist, arranger. Born 1911 +Father of percussionist [a=José Madera], Brother of violinist [a1898507] +CorrectJoesph MaderaJose MaderaJose Madera SrJose Madera Sr.Jose Madera, Sr.José MaderaJosé Madera Sr.MaderaPin MaderaMachito And His OrchestraPin Madera Y Su Orquesta + +1032422Nelson WongSound engineer.CorrectNelson Wong (New York Digital Recording Inc.) + +1032914Daniel MikolášekClassical percussionistNeeds VoteThe Czech Philharmonic OrchestraPrague Percussion Project + +1033026Vic CoulsonVictor CoulsenAmerican jazz trumpeter.Correcthttp://en.wikipedia.org/wiki/Victor_CoulsenVic CoulsenVictor CoulsonColeman Hawkins And His Orchestra + +1033033Jack GreenbergCredited as tenor saxophonist.Needs VoteJ. GreenbergVan Alexander And His OrchestraLouis Armstrong And His OrchestraBob Haggart And His Orchestra + +1033035Carroll DickersonAmerican jazz violinist, arranger and bandleader. + +Born : 1895 in Chicago, Illinois. +Died : 1957, October in New York City. +Needs Votehttps://en.wikipedia.org/wiki/Carroll_Dickersonhttps://adp.library.ucsb.edu/names/111115C. DickersonCarroll DockersonDickersonLouis Armstrong And His OrchestraKing Oliver & His OrchestraCarroll Dickerson's SavoyagersCarroll Dickerson And His OrchestraCarroll Dickerson's Savoy OrchestraCarroll Dickerson's Stompers + +1033059Douglas BostockBritish conductor; since 2019, artistic director and conductor of the [a1046945] in Pforzheim, Southwest Germany.Needs Votehttps://www.douglasbostock.net/https://www.swdko-pforzheim.de/personen/bostock-douglas/Südwestdeutsches KammerorchesterArgovia Philharmonic + +1034209Charles CottonEnglish poet and writer, April 28, 1630 – February 16, 1687.Needs Votehttp://en.wikipedia.org/wiki/Charles_CottonCottonJohn CottonКоттонЧ. Коттон + +1034210Alexander Murray (2)British classical flutist, teacher, flute designer, and practitioner-trainer of the Alexander Technique. Born in 1929 in South Shields, England, UK. +[b]For the American violinist, please use [a=Alexander Murray][/b]. +During the 1950s, he was Principal Flute, initially with the [url=https://www.discogs.com/artist/855061-Orchestra-Of-The-Royal-Opera-House-Covent-Garden]Royal Opera[/url] in London and then with [a=London Symphony Orchestra] (1955-1966). +During a tour in the U.S., he was offered a teaching position at [url=https://www.discogs.com/label/793872-The-University-Of-Michigan]Michigan State University[/url], joining its faculty in 1967, remaining there until 1974, when following a sabbatical visit to Holland, [a=Frans Vester] invited him to teach in the Hague. He taught there for three years, also teaching one day a week the [l=Royal Northern College Of Music]. He was appointed Professor of Flute in 1977 at the [l=University Of Illinois], where he remained until his retirement in 2003. +He married dancer [a=Joan Elvin] in 1954.Needs Votehttps://www.nfaonline.org/about/achievement-awards/alexander-murrayhttps://go.gale.com/ps/i.do?id=GALE%7CA332247151&sid=googleScholar&v=2.1&it=r&linkaccess=abs&issn=87568667&p=AONE&sw=w&userGroupName=anon%7E3e713ab5https://faa.illinois.edu/joan-and-alexander-murrayhttps://www.alexandercenter.com/pa/flutei.htmlAlex MurrayAlexander MurrayAlexander MurreyLondon Symphony OrchestraOrchestra Of The Royal Opera House, Covent Garden + +1034213Denis BlythBritish classical timpanist. +Former member of the [a=London Symphony Orchestra] (1955-1962). He subsequently joined the [a=Philharmonia Orchestra].Needs Votehttps://www.imdb.com/name/nm9888250/London Symphony OrchestraPhilharmonia OrchestraNew Philharmonia Orchestra + +1034454Claude StarckSwiss cellist and composer, born 24 October 1928 in Strasbourg, France.Needs VoteC. StarckKlod StoarkFestival Strings LucerneEnsemble Baroque De ZurichKölner KammerorchesterTonhalle-QuartettTonhalle-Orchester ZürichTrio Pro Musica Zürich + +1034456Christian Lange (2)Oboe and recorder player.Needs VoteC. LangeLa Petite BandeEnsemble Baroque De ZurichEnsemble Eduard Melkus + +1034460Manfred SaxClassical bassoonist.Needs VoteM. SaxSaxConsortium Musicum (2)Winterthurer Barock-Quintett + +1034461Werner SpethWerner Speth was a Swiss horn player and teacher.Needs VoteW. SpethTonhalle-Orchester Zürich + +1034466Elemer GlanzElemér GlanzElemér Glanz (11 June 1924 - 11 July 2016) was a classical violinist.Needs VoteE. GlanzElemér GlanzEnsemble Baroque De ZurichZürcher KammerorchesterTonhalle-Orchester ZürichTrio Pro Musica Zürich + +1034470Brenton LangbeinAustralian classical violinist & composer (1928-1993)Needs VoteB. LangbeinCollegium Musicum ZürichEnsemble Baroque De ZurichDie Kammermusiker Zürich + +1034911Michael George (3)Bass & Baritone vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/George-Michael.htmGeorgeM. GeorgeMichael GeorgeMichael GeorgesMichael GoergeМайкл Джорджマイケル・ジョージThe Ambrosian SingersTheatre Of VoicesThe Hilliard EnsembleNew London ConsortThe English Chamber ChoirBBC SingersThe SixteenThe Academy Of Ancient MusicDeller ConsortPro Cantione AntiquaThe King's ConsortThe Medieval Ensemble of London + +1034913Timothy PenroseTimothy Nicholas PenroseBritish countertenor, born 7 April 1949 in Farnham, England and died 9 January 2014 in London, England.Needs VotePenrosePro Cantione AntiquaThe Medieval Ensemble of LondonThe London Early Music GroupThe London Music Players + +1035445Fritz BuschGerman conductor, born 13 March 1890 in Siegen, Germany and died 14 September 1951 in London, England. He's the older brother of [a1679540]. +Chief Conductor of [a=Stockholms Konsertförenings Orkester] from 1937 to 1940.Needs Votehttps://en.wikipedia.org/wiki/Fritz_Buschhttps://www.max-reger-institut.de/media/busch_fritz_diskografie.pdfBuschDr. Fritz BuschGeneralmusikdirektor Fritz BuschStaatskapelle Dresden + +1035763James GilchristEnglish classical tenor, born 1966.Needs Votehttps://www.jamesgilchrist.co.uk/https://en.wikipedia.org/wiki/James_Gilchrist_%28tenor%29GilchristThe Man Of Red DustGabrieli ConsortOxford CamerataThe Choir Of The King's ConsortThe SixteenOrchestra Of The RenaissanceI FagioliniPolyphonyGothic Voices (2)Bach Collegium JapanArcangeloCambridge Taverner Choir + +1035764Robin BlazeEnglish classical countertenor, born in 1971 in Manchester, England. +Robin Blaze is now established internationally in the front rank of interpreters of Purcell, Bach and Handel, and his busy schedule has taken him to Europe, South America, North America, Australia and Japan. He read music at Magdalen College Oxford, winning a postgraduate scholarship to the Royal College of Music, where he trained with assistance from the Countess of Munster Trust, and where he is now a Professor of Vocal Studies. He has worked with most of the distinguished conductors in the early music field, and his Bach cantata performances on CD with Bach Collegium Japan, under Masaaki Suzuki, have been particularly admired. Operatic roles have included various Handel operas as well as Britten's A Midsummer Night's Dream. Chamber music is a particular love, and he has worked extensively with Concordia, Fretwork, Florilegium and the Palladian Ensemble, as well as giving numerous solo recitals in the Wigmore Hall and at many festivals worldwide.Needs Votehttps://en.wikipedia.org/wiki/Robin_Blazehttp://www.bach-cantatas.com/Bio/Blaze-Robin.htmBlazeGabrieli ConsortOxford CamerataThe Choir Of The King's ConsortThe Tallis ScholarsThe SixteenPro Cantione AntiquaThe Clerks' GroupBach Collegium JapanLes Chantres Du Centre De Musique Baroque De VersaillesSette Voci + +1035768Jonathan ArnoldBritish classical bass vocalist. Born in 1969.Needs Votehttps://www.imdb.com/name/nm7661141/Johnathan ArnoldJonathon ArnoldGabrieli ConsortMagnificatOxford CamerataThe Tallis ScholarsThe SixteenLes Arts FlorissantsOrchestra Of The RenaissancePolyphonyThe Clerks' GroupThe Finzi SingersThe Cardinall's Musick + +1036751Bergen Filharmoniske OrkesterEstablished in 1765 under the name Det Musicalske Selskab (The Musical Society), it later changed its name to Musikselskabet Harmonien and in 1986 to Bergen Filharmoniske Orkester. It is often referred to as "Harmonien" (the Harmony) by Bergen's citizens. Nominated for Spellemannprisen (Norwegian Grammy) for best classical album of 2013 with "Svendsen - Orchestral Works vol. 3", released with Marianne Thorsen and Neeme Järvi.Needs Votehttps://harmonien.no/https://en.wikipedia.org/wiki/Bergen_Philharmonic_OrchestraBergen SymphonyBergen Symphony OrchestraBergen (Norway) Symphony OrchestraBergen Filharmoniiske OrkesterBergen Filharmonisch OrkestBergen Philarmonic OrchestraBergen Philharmoni OrchestraBergen Philharmonic ChoirBergen Philharmonic OrchestraBergen SymphonyBergen Symphony OrchestraBergen Symphony Orchestra (Norway)Blåsere Fra Harmonien, BergenHarmonien Orch.Harmoniens OrkesterMedlemmar Ur Filharmonien I BergenMusikere Fra Musikselskabet "Harmonien"Musikkselskabet Harmoniens OrkesterMusikkselskabet «Harmonien»'s OrkesterMusikselskabet "Harmonien" (Bergen Symphony Orchestra)Musikselskabet "Harmonien", BergenMusikselskabet HarmonienMusikselskabet Harmoniens OrkesterMusikselskabet Harmoniens orkester (Bergen Symphony Orchestra)Musikselskabet «Harmonien»Musikselskabet «Harmonien»'s Orkester, BergenMusikselskabet «Harmonien»s OrkesterMusikselskabet «Harmonien»s Orkester BergenMusikselskapet "Harmonien", BergenOrchestre Philharmonique De BergenOrchestre Symphonique De BergenOrquesta Filarmónica de BergenPhilharmonic Bergen OrchestraStrykere Fra FilharmonienThe Bergen Symphony OrchestraMusikselskabet Harmoniens OrkesterEdvard GriegCarl Anders SponbergGeorge RobertsonJulia DibleySiri HilmenHans Gunnar HagenAnnette MykingBodil ErdalBerend MulderPeter KatesGary PetersonBen NationSteinar HannevoldJohan HalvorsenOle BullØyvind HageJutta MorgensternIlze KlavaAngie HarleyLars Kristian BrynildsenOddmund ØklandIlene ChanonAndrew LittonPer WingeDimitrij KitaenkoJarle RotevatnMichael SiegAldo CeccatoFrode SævikSimone YoungJohannes VikFox FehlingKarsten AndersenEmily Davis (2)Per HannevoldIngela ØienTorbjørn OttersenHåkon Nilsen (2)Ellisiv SollesnesTone M. BirkelandJudith StarrJan Johansson (2)Eivind AadlandHelga SteenTom Birger BratlieAméline Chauvette-GroulxRod FranksPaule PréfontaineCarl Von GaragulyChris DudleyKonstantin PfizPierre DoumengeMelina MandozziAllan WithingtonAnne Helga MartinsenWalter HeimMartin Winter (2)Kjell Erik HusomTorunn HoltlienHarald BløTorbjørn EideSveinung BirkelandEdward GardnerÅsta JørgensenDavid Stewart (13)Lars Magnus SteinumTom VissgrenTove BekkenIngar Ben NordbyNina Kristi SeverinsenRagnhild LotheAgnese RugevicaGeir Atle StangenesDamon TaheriOlav KiellandAnthony ManzoAdam KieszekElisabeth SvanesGard GarsholJane OdriozolaLene LindquistVidar NordliIver HolterGunvor HoltlienAleksandra KolasinskaTone HagerupArvid FladmoeDanilo KadovicHilary FosterLiene KļavaTerje VikenJames LassenHåkon KartveitChristian SteneNatasha HughesChristine Schneider (3)Gerhard MantelHayato NakaAleksander PokrywkaHege SellevågMarjorie NealAlexander KaganFrida Fredrikke Waaler WærvågenDiego LucchesiJon BehnckeAndrew Harper (4)Gregory KoellerIngrid StenslandSigurd GreveManuel HofstätterMartin ShultzSigrid HolmstrandÅse SolheimCallum Jennings (2)Gunars UpatnieksDag Anders EriksenEmilie HaagenrudJon ÅsnesSébastien Dubé (2)Rushana BrandangerMari Birgitte HalvorsenYumi Sagiuchi ShultzLiv Elise Nordskog + +1036752Karsten AndersenNorwegian conductor, born 16 February 1920 - Fredrikstad. Died 15 December 1997 - Oslo. He was artistic director of the Bergen Philharmonic Orchestra from 1966 to 1985, and professor of conducting at the Norwegian Academy of Music. Andersen conducted Norway's 1964 Eurovision entry 'Spiral' by Arne Bendiksen. +Needs Votehttps://all-conductors-of-eurovision.blogspot.com/1971/05/karsten-andersen.htmlhttp://en.wikipedia.org/wiki/Karsten_AndersenAndersenK. AndersenKarsten AndersonХ. АндерсенХарстон АндерсенBergen Filharmoniske OrkesterStavangerensemblet (2) + +1036777Randall CookOboist, Bombare Fiddle and Renaissance viola da gamba player (born in 1951). +Professor of the Musik-Akademie der Stadt Basel.Needs Votehttps://www.facebook.com/randall.cook.54Randa CookRandell CookRandy CookEnsemble Gilles BinchoisMusica Antiqua KölnHesperion XXClemencic ConsortLes Musiciens Du LouvreSchola Cantorum BasiliensisEnsemble P.A.N.Ferrara EnsembleDas Kleine KonzertCapriccio Barock OrchesterAbendmusiken Basel + +1036778Jan WaltersClassical harpist.Needs VoteThe SixteenEnsemble Gilles BinchoisThe Consort Of MusickeEnsemble CordariaKithara (5) + +1036899Randy RichardsRandall L. RichardsAmerican singer / songwriter, musician, producer and arranger. +BMI song titles credit him as both Randy Richards and Randy Matos.Needs Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=56590168&affiliation=ASCAP&keyid=287044&keyname=RICHARDS+RANDYR. RichardsRandy RichardRichards + +1036933Lee AbramsLeon AbramsonAmerican jazz drummer, born January 6, 1925 in Brooklyn, New York City, New York, died in 1992. +His brother [a=Ray Abrams] was a jazz saxophonist. +Lee Abrams worked with Roy Eldridge, Coleman Hawkins, J.J. Johnson, Eddie Heywood, Andy Kirk, Hot Lips Page, Lester Young, Illinois Jacquet, Horace Silver, Al Haig and others. +Needs Votehttps://en.wikipedia.org/wiki/Leon_Abramsonhttps://www.allmusic.com/artist/lee-abrams-mn0001227890/biographyhttps://adp.library.ucsb.edu/names/300231AbrahamsLee AbraamsLee AbrahamsLee AbramLester Young QuintetAl Haig TrioJoe Thomas And His OrchestraDuke Jordan TrioThe BirdlandersWynton Kelly TrioEddie Lockjaw Davis Quartet + +1037075Friedrich GoldmannGerman composer and conductor (* 27 April 1941 in Siegmar-Schönau near Chemnitz, Germany; † 24 July 2009 in Berlin, Germany).Needs Votehttp://www.friedrichgoldmann.com/https://friedrichgoldmann.bandcamp.com/https://en.wikipedia.org/wiki/Friedrich_GoldmannF. GoldmannFriedrich GoldmanGoldmannDresdner KreuzchorBoris Blacher Ensemble + +1037332Betty Logan ChotasFor writing credits of [a=Betty Logan]Needs VoteB. CholasB. L. ChotasB. Logan-ChotasB.-L. ChotasB.L. ChotasBetty B. ChotasBetty ChotasBetty Jane LoganBetty LoganChotasKogan-ChotasLoganLogan / ChotasBetty LoganChuck And Betty + +1037523Werner LegutkeClassical percussionist.Needs VoteW. LegutkeWerrner LegutkeRundfunk-Sinfonie-Orchester LeipzigNeues Bachisches Collegium Musicum LeipzigGruppe Neue Musik "Hanns Eisler" Leipzig + +1037595Peter von BaghKari Peter Conrad von BaghFinnish film historian and director, born August 29, 1943 in Helsinki, Finland; died September 17, 2014. He worked as the professor of film history in the University of Art and Design in Helsinki. He published more than 20 books about films, and produced numerous radio and television programs about films and popular culture.Needs VoteP. V. BaghP. v. BaghP. von BaghPeter V. BaghPeter v. Baghv. Baghvon Bagh + +1037608Veikko VirmajokiArvo KalliolaBorn on February 18th, 1894 in Artjärvi, Finland. Died on February 27th, 1956 in Helsinki, Finland. A Finnish lyricist who wrote song lyrics using his real name and pseudonym Veikko Virmajoki.CorrectV. VirmajokiV.VirmajokiVirmajokiArvo Kalliola + +1037646Corina BelceaRomanian violinist, born 1975. She is a founding member of the [a1725072].Needs Votehttps://en.wikipedia.org/wiki/Corina_BelceaCorina Belcea-FisherBelcea Quartet + +1037650Alasdair TaitBritish cellist and teacherNeeds VoteThe BT Scottish EnsembleBelcea Quartet + +1037654Paul Watkins (3)Welsh cellist and conductor (born 1970). + +Watkins won the String section of the BBC Young Musician of the Year in 1988 and was principal cellist of the BBC Symphony Orchestra from 1990-1997. He still regularly performs both as a chamber musician and a soloist. + +As a conductor he has worked with the Yehudi Menuhin School Orchestra (1994-1998) and the Festival Orchestra at the Domaine Forget Music Festival in Quebec, Canada (1996-2000), as well as a number of BBC orchestras. In 2002 he won first prize at the Leeds Conductors' Competition. +Needs VotePaul WatchinsPaul WatkinsThe London Telefilmonic OrchestraEmerson String QuartetThe Nash EnsembleThe London Cello SoundThe Britten-Pears Ensemble + +1037655John Wilson (15)b. 1972 + +British conductor, arranger and musicologist who specializes in music for the small and big screens, as well as Big Band jazz and light music. He is the creator of [url=http://www.discogs.com/artist/4304888-John-Wilson-Orchestra-The]The John Wilson Orchestra[/url].Needs Votehttp://www.johnwilsonorchestra.com/http://en.wikipedia.org/wiki/John_Wilson_%28conductor%29http://www.imdb.com/name/nm1654123/http://www.hdtracks.com/music/artist/view/id/6718/J.WilsonJohn WilsonJojn Wilsonジョン・ウィルソンSinfonia Of LondonThe John Wilson Orchestra + +1037660Krzysztof ChorzelskiPolish classical violist, conductor, and teacher + +Born: 1971 in Warsaw, Poland.Needs Votehttp://www.kchorzelski.com/Belcea Quartet + +1037686Arnold CapitanelliArnold J. Capitanelli, Jr.American singer, songwriter, and producer. Husband of [a=Jackie Capitanelli]; father of [a=Lisa Capitanelli], [a=Arnold Capitanelli III], and [a=Fran Capitanelli]. His publishing company was [l=Arnold Jay Music]. Founder of choir [a=C.A.P.S.] and label [l=C.A.P.S. Catholic Action For Peace Thru Songs]. + +Born 1932 in Elmwood Park, New Jersey. +Died July 28, 2021 in Palm Desert, California.Needs VoteA CapitanelliA. Capitaneli Jr.A. CapitanelliA. Capitanelli Jr.A.CapitanelliArnoldArnold CampitanelliArnold Capitanelli Jr.Arnold J. Capitanelli Jr.Arnold JayArnold Jay CapitanelliCapitanellCapitanelliCapitanelli Jr.Arnold JayThe Caps (3)C.A.P.S. + +1037718The Beecham Choral SocietyCorrectBeecham Choir Society Und SolistenBeecham Choral SocietyChœurs de la Beecham SocietyDer Beecham ChorDer Beecham-ChorLa Beecham Choral SocietySociedad Coral BeechamThe Beecham Choir Societyde Beecham Choral SocietySir Thomas Beecham + +1037719Denis VaughanDenis Edward VaughanAustralian-born orchestral conductor and multi-instrumentalist, born 6 June 1926 in in Melbourne, Australia. +[b]Please do not confuse with [a=Denny Vaughan], Canadian conductor in the pop/jazz style[/b].Needs Votehttps://en.wikipedia.org/wiki/Denis_VaughanDennis VaughanDenny VaughnRoyal Philharmonic OrchestraDeller ConsortBaroque String Ensemble + +1037813Jean-Luc BourréFrench cellistNeeds VoteJean-Luc BourreOrchestre National De FranceQuatuor Castagneri + +1038052Myron BloomMyron BloomMyron Bloom (born April 18, 1926, Cleveland, Ohio, USA - died September 26, 2019, Bloomington, Indiana, USA) was an American French hornist and educator. He served as professor of music at Indiana University.Needs Votehttps://www.nytimes.com/2019/09/27/arts/music/myron-bloom-dead.htmlBloomThe Cleveland OrchestraOrchestre De ParisMarlboro Festival OrchestraThe New Orleans Symphony + +1038095René Felix MathiesenClassical percussionist.Needs VoteRene Felix MathiesenRenéRené MathiesenDR SymfoniOrkestretDannekvinder + +1038472Kenneth HeathKenneth R. HeathEnglish classical cellist. Born 1 October 1919 - Died 1 March 1977. +He trained at the [url=https://www.discogs.com/label/459222-Royal-Northern-College-Of-Music]Northern College of Music[/url]. He was then appointed solo cellist at the [a855061]. Co-founder of [a=The Academy Of St. Martin-in-the-Fields] chamber orchestra. Former Principal Cello with the [a=London Symphony Orchestra] (1948-1968). In 1963 he became Principal Cellist of the [a=BBC Symphony Orchestra], leaving in 1965.Needs Votehttp://kennethheath.com/https://www.facebook.com/people/Kenneth-Heath/100070319133075/https://open.spotify.com/artist/376oz9UwQfpxO5xxgQplBShttps://music.apple.com/za/artist/kenneth-heath/341056https://www.planethugill.com/2019/10/celebrating-centenary-of-cellist.htmlhttps://www.oboeclassics.com/Craxton.htmKen HeathKenneth HeatKenny HeathLondon Symphony OrchestraBBC Symphony OrchestraEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsOrchestra Of The Royal Opera House, Covent GardenThe London StringsThe London Oboe QuartetGeorge Malcolm Piano Trio + +1038491John DanyelJohn Danyel or John Daniel (Baptized 6 November 1564 – c. 1626) was an English lute player and songwriter. He was born in Wellow, Somerset, and was the younger brother of poet Samuel Daniel. His surviving works include "Coy Daphne Fled", about the nymph Daphne and her fate, and "Like as the lute delights".Correcthttp://en.wikipedia.org/wiki/John_DanyelDanyelJ. DanielJ. DanyelJohn Daniel + +1038545Quintin BallardieJames Quintin BallardieClassical violist. +Co-founder, artistic director and Principal Violist of the [a=English Chamber Orchestra]. +Born: May 5, 1928 +Died: February 4, 2022Needs Votehttps://open.spotify.com/artist/6kff6GLlJHg6LL37vgcwl6Quinton BallardieLondon Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraBath Festival Orchestra + +1038546Stephen Bishop-KovacevichStephen Bishop-KovacevichStephen Kovacevich (b. 1940) is an American pianist and conductor who currently lives in Hampstead Village, London. He was born in California and changed his name to [a=Stephen Bishop (3)] when his mother remarried. To avoid confusion with the singer-songwriter and guitarist [a=Stephen Bishop], the pianist started performing as Bishop-Kovacevich in the mid-seventies. Stephen had a relationship with pianist [a=Martha Argerich] and in 1975 they had a daughter, film director [a=Stéphanie Argerich] (born in Bern, Switzerland). + +Debuting as a pianist at the age of eleven, Kovacevich moved to London in 1958 to study with [a=Myra Hess] and had been living in the UK ever since. Stephen made a critically acclaimed British debut at [l=Wigmore Hall] in 1961, performing [i]Sonata[/i] by [a=Alban Berg], [i]Preludes[/i] and [i]Fugues[/i] by [a=Johann Sebastian Bach], and Beethoven's [i]Diabelli Variations[/i]. In 1967, Bishop gave his first concert in New York. He collaborated with [a=Jacqueline Du Pré], [a=Steven Isserlis], [a=Nigel Kennedy], [a=Lynn Harrell], [a=Sarah Chang], [a=Gautier Capuçon], [a=Renaud Capuçon], [a=Emmanuel Pahud] and other prominent musicians, touring in Europe, Far East, Australia, New Zealand, South America, and the United States. + +As a conductor, Stephen Kovacevich performed with the [a=London Mozart Players], [a=Royal Liverpool Philharmonic Orchestra], and [a=Vancouver Symphony Orchestra].Needs Votehttps://en.wikipedia.org/wiki/Stephen_KovacevichKovacevichS. KovacevichStephen KovacevichStephen BishopStephen Bishop - KovacevichStephen Bishop KovacevicStephen Bishop KovacevichStephen KovacevichStephen Kovecevichコヴァセヴィッチ(スティーヴン)スティーヴン・ビショップ・コワセヴィチStephen Bishop (3) + +1038994Luca LucchettaClassical clarinetistNeeds VoteOrchestra Di Padova E Del VenetoTrio Dell'Arcimboldo + +1039457Lee FiserCellist, member of the [a754978] from 1975 to 1988, teacher at the University of Cincinnati College Conservatory of Music since 1975.CorrectLee W. Fiser Jr.Lasalle QuartetCincinnati Symphony Orchestra + +1039605Simon QudosSimon QudosNeeds Votehttp://www.myspace.com/simonqudosdjhttp://www.simonqudos.comS.QudosSimon Williams (12) + +1039625Lily LaskineFrench harpist. She was born 31 August 1893 in Paris, France and died 4 January 1988 in Paris, France. +Married to violinist [a2033518].Needs Votehttps://en.wikipedia.org/wiki/Lily_Laskinehttps://adp.library.ucsb.edu/names/360023L. LaskineL.LaskineLaskineLili LaskineLilly LaskineMelle LaskineMlle LaskineMlle Lily LaskineMlle. Lily Laskineリリー・ラスキーヌFrançois Rauber Et Son OrchestreAndré Popp Et Son OrchestreOrchestre De Chambre De ToulouseOrchestre De Chambre Jean-François Paillard + +1039991Redd HarperBorn: September 29, 1903, Nocona, Texas, USA +Died: February 16, 1992, Los Angeles, California, USA + +Known as Mr. Texas, Redd was an American composer, author, singer, actor, and evangelist. Educated at the University of Oklahoma and a member of several dance orchestras, eventually leading his own. He wrote and directed "Redd Harper's Hollywood Roundup" for the Armed Forces Radio Service for five years, and became a worldwide evangelist.Joining ASCAP in 1954, his chief musical collaborators included Oswald Smith and Joe Rogers. +Needs Votehttp://en.wikipedia.org/wiki/Redd_HarperA. HarperHarperR. HarperRed HarperRedd Harped Mr. Texas (Himself)Redd Harper ("Mr Texas")Redd Harper ("Mr. Texas")Redd Harper ("Star Of Mr. Texas")Redd Harper (Mr. Texas)Redd Harper And His GuitarRedd Harper Mr. Texas (Himself)Redd Harper, Mr. Texas (Himself)Redd. HarperTeddy Wilson And His OrchestraRedd Harper And His Christian Cowboys + +1040429Timothy Jones (3)Timothy JonesBritish classical horn player, and Professor of Horn. Born in 1961 in London, England, UK. +He started out aged 17 as a 2nd Horn in the [a261451]. He became a member of the [a=London Philharmonic Orchestra] in 1984 and Principal Horn of [a=London Symphony Orchestra] in 1986. He has also been a member of the [a=City Of Birmingham Symphony Orchestra] and [a=The Academy of St. Martin-in-the-Fields]. Professor of Horn at the [l290263]. Director and co-owner of the horn company PAXMAN Limited. +Needs Votehttp://joneshorn.com/https://www.facebook.com/timothy.jones.165470https://open.spotify.com/artist/6SjpnQeCGx8z0K18xvjTHhhttps://music.apple.com/us/artist/timothy-jones/78937515https://www.feenotes.com/database/artists/jones-timothy-1961-present/https://lso.co.uk/orchestra/players/brass.htmlhttps://www.rcm.ac.uk/brass/professors/details/?id=02116http://www.ihsla2015.com/artistshttp://www.moviebrass.com/intro/Musicians/horn_players/tim_jones.htmlTim JonesLondon Symphony OrchestraMünchner PhilharmonikerLondon Philharmonic OrchestraBBC Symphony OrchestraCity Of Birmingham Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe Valve Bone Woe Ensemble"Oliver!" 1994 London Palladium Cast, OrchestraLSO Wind Ensemble + +1040439Paul Robson (2)Paul RobsonBritish classical violinist. Born in Sutherland, Scotland, UK. +At the age of 16, he was chosen to play with the [a=National Youth Orchestra Of Great Britain]. He graduated from [l305416] in 1980. After two years, he joined the [a=Roth String Quartet]. He was appointed Principal Second Violin of the [a=London Mozart Players] before joining the Second Violin section of the [a=London Symphony Orchestra] in 1991. +Needs Votehttps://www.feenotes.com/database/artists/robson-paul/https://lso.co.uk/orchestra/players/strings.html#Second_violinsLondon Symphony OrchestraNational Youth Orchestra Of Great BritainLondon Mozart PlayersLondon Symphony Orchestra StringsRoth String Quartet + +1040665Marie-Christine ColmoneFrench cellist.CorrectMarie-Christine ColmoncOrchestre Des Concerts Lamoureux + +1040963Matthew DineAmerican oboist and photographer.Needs Votehttps://www.mattdinephoto.com/Matt DineOrpheus Chamber Orchestra + +1041382Hanne Høy HouengaardDanish cellist, born in 1965.Needs VoteHanne Høj HouengaardHanne Høy HouengårdAalborg SymfoniorkesterHerning Stadstrio + +1041404Arash AryanCorrectA. AryanArashArash AryenDJ ZagrosDJ Zagros & PacificA.J.A. Productions + +1041897Laszlo BorsodyBorsódy LászlóBorn in 1965 in a small town near Budapest, in Szentendre. After finishing the Secondary School of Music in Budapest, he continued his studies at the Music Arts College, where he received his Diploma of Trumpet/Horn Artist.Needs VoteBorsódi LászlóBorsódy LászlóLaszlo BorsódyLaszló BorsódyLászlo BorsodyLászló BorsódyLiszt Ferenc Chamber OrchestraCapella SavariaCapella Leopoldina + +1041914Daniel Müller-SchottGerman violoncellist, born 1976 in Munich, Germany.Needs Votehttp://www.daniel-mueller-schott.com/https://www.facebook.com/danielmuellerschotthttps://www.instagram.com/danielmuellerschotthttps://www.youtube.com/user/dmscellohttps://en.wikipedia.org/wiki/Daniel_Müller-SchottDaniel MüllerMelbourne Symphony OrchestraJeunehomme-Trio + +1042141Max Roach QuintetCorrectMax Roach + 4Max Roach Drum QuintetMax Roach GroupMax Roach QuintetoMax Roach QuintetteQuinteto De Max RoachThe Max Roach QuintetThe Max Roach Quintetteマックス・ローチ五重奏団Stanley TurrentineRamsey LewisFreddie HubbardJames MoodyBob CranshawHank MobleySonny RollinsMax RoachTommy PotterGeorge ColemanKenny DorhamAl HaigGeorge MorrowJymie MerrittJames SpauldingClifford JordanArt DavisJulian PriesterBooker LittleAbbey LincolnTommy TurrentineEddie KhanBilly WallaceBob BoswellColeridge-Taylor PerkinsonRonnie MathewsRay DraperGeorge BledsoeEddie Baker + +1042414Jerry KailTrumpet player.Needs VoteWoody Herman And His OrchestraOliver Nelson And His OrchestraThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsJohnny Richards And His OrchestraWoody Herman And His Third HerdSal Salvador And His Orchestra + +1042588Jean François VerdierFrench clarinetist.Needs VoteJean-François VerdierOrchestre National De L'Opéra De ParisLes Musiciens De L'Opera, Paris + +1042860Franz Eder (2)Classical trombone playerNeeds VoteBläserensemble Franz EderMünchener Bach-OrchesterStudio Der Frühen Musik + +1042880Kenneth SkeapingBritish viola da gamba and violin player, professor at the [l527847], and a specialist in baroque music, one of the early people to promote the ideas of authenticity in performance of baroque music during the 1950s. Born in 1897 - Died in 1977. +Former member of the [a=London Symphony Orchestra] (1923-1936). +His sons [a779780] and [a293803] also became musicians.Needs VoteLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsEnglish Consort Of Viols + +1042892Claude MonteuxAmerican flutist and conductor, born 15 October 1920 and died 22 February 2013. +Son of [a406278] and father of [a1626637]. + +Claude Monteux (October 15, 1920 – February 22, 2013) was an American flutist and conductor. Born in Brookline, Massachusetts, the son of conductor Pierre Monteux, Monteux studied flute with Georges Laurent, then the principal flutist of the Boston Symphony Orchestra. He studied conducting with his father, both privately and at the Monteux School for conductors. + +As a flutist, Monteux played under the batons of Arturo Toscanini, Bruno Walter, Thomas Beecham, Leopold Stokowski, Pablo Casals, Igor Stravinsky, and his father. As a conductor, he served as Music Director of the Columbus Symphony Orchestra (1953–1956) and the Hudson Valley Philharmonic (1959–1975). + +Monteux taught summer courses at the Pierre Monteux School for conductors in Maine and was affiliated with the San Diego State University School of Music and Dance. Monteux served on the faculties of the New England Conservatory of Music, the Peabody Conservatory, Vassar College and Ohio State University. He made commercial recordings for such labels as London and Phillips, including works by Mozart and Bach with the Academy of St. Martin-in-the-Fields. Needs Votehttps://en.wikipedia.org/wiki/Claude_MonteuxC. Monteuxクロード・モントゥーThe Academy Of St. Martin-in-the-Fields + +1042951Fred ContaHeinz KornNeeds VoteCondaConstaContaConteContraF. ContaF. ConteFred ConterHeinz KornH. F. BuschWolfgang Dohlen + +1043138Irving CohnBritish-American songwriter, born 21 February 1898 in London, England, UK, died 12 July 1961 in Fort Lee, New Jersey, USA.Needs Votehttp://en.wikipedia.org/wiki/Irving_Cohnhttps://adp.library.ucsb.edu/names/116909CahnCohanCohenCohnConnI. CohnI. ConnIrv. CohnIrving CohanIrving CohenIrving ConnJ. CohnJ. LonnJohn + +1043142Frank SilverFrank SilverstadtAmerican songwriter and jazz drummer, born 8 April 1896 in Boston, Massachusetts, USA, died 14 June 1960 in Brooklyn, New York, USA. + +Together with [a=Irving Cohn], Silver wrote the 1923 hit "Yes, We Have No Bananas."Needs Votehttp://en.wikipedia.org/wiki/Frank_Silverhttps://adp.library.ucsb.edu/names/116908A. SilverF. SilverF. SilveraF. SilversF.SilverFr. SilverFrank SilversH. SilverSilberSilvaSilveSilverSilversSylverFrank Silver's Dance Orchestra + +1043204Otto StrasserOtto Strasser (born August 13, 1901 in Vienna, Austria-Hungary; † May 27, 1996 in Mannersdorf am Leithagebirge, Austria) was an Austrian violinist with the [a754974]Needs Votehttps://de.wikipedia.org/wiki/Otto_Strasser_(Musiker)Prof. Otto StrasserStrasserOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Philharmonisches StreichquartettBarylli String EnsembleBarylli QuartetDas Schneiderhan-Quartett + +1043206Rudolf StrengAustrian classical violist and violinist, born 20 March 1915 in Neudörff, Austria-Hungary (now Austria) and died 24 June 1988 in Vienna, Austria.Needs VoteR. StrengRudold StrengRudolf SgrengRudolph StrengWiener PhilharmonikerWiener Philharmonisches StreichquartettWiener KammerensembleThe Boskovsky EnsembleKammerorchester Der Wiener KonzertvereinigungBarylli Quartet + +1043555Bodil KuhlmannClassical violinist.Needs VoteDR SymfoniOrkestret + +1043556Carsten TagmoseClassical cellist.Needs VoteDR SymfoniOrkestret + +1043557Christina ÅstrandDanish classical violinist.Needs VoteChristina AastrandThe Danish Horn TrioDR SymfoniOrkestretDuo Åstrand/Salo + +1043663Jean-Marc DeutèreNeeds VoteBarney DeutereDeuterreDeutèreJ. M. DeuterreJ.-M. DeutereJ.M. "Barney" DeuterreJ.M. DeutereJ.M. DeuterreJ.M. DeutèreJean Marc DeutereJean Marc DeuterreJean Marc Deuterre (Barney)Jean Marc DeutèreJean-Marc " Barney " DeuterreJean-Marc "Barney" DeutèreJean-Marc DeutereJean-Marc DeuterreJean-Marc Deuterre (Barney)Jean-Marc DeuttereM. DeutèreMarc DeutereLes Martin'sJean-Marc Deutère, Rolling Et Leur Orchestre + +1043664Guy MarcoCorrectG. Marco + +1043795David HardyCellistNeeds VoteNational Symphony OrchestraThe Theater Chamber Players Of Kennedy CenterOpus 3 Trio + +1043813Georg FischerClassical keyboardist and conductor, first husband of [a=Lucia Popp].CorrectGeorge FischerConcentus Musicus Wien + +1043843Marcel LagorceAntoine Marcel LagorceFrench trumpeter, born 14 June 1932 in Ussel, France. Died 11 May 2023.Needs Votehttps://www.edrmartin.com/en/bio-antoine-marcel-lagorce-14221/https://fr.wikipedia.org/wiki/Marcel_Lagorcehttps://en.wikipedia.org/wiki/Marcel_Lagorcehttps://trompetteactus.fr/2023/05/11/carnet-noir-marcel-lagorce-est-decede/Antoine LagorceM. LagorceManuel LagorceMarcel LagorgeMarcel Lagorge (III.)P. LagorcePierre Lagorceアントワーヌ・ラゴルスOrchestra Del Teatro Comunale Di BolognaOrchestre De ParisLa Grande Ecurié Et La Chambre Du RoyOrchestre De Chambre Jean-François PaillardQuintette De Cuivres Ars NovaPaillard Ensemble D'Instruments À Vent Et Percussions + +1043922Szymon GoldbergAmerican violinist & conductor. He was born 1 June 1909 in Włocławek, Poland and died 19 July 1993 in Ôyama-machi, Japan.Needs Votehttp://en.wikipedia.org/wiki/Szymon_Goldberghttp://szymongoldberg.org/en/life_music/index.htmlGoldbergS. GoldbergSimon GoldbergSzymon GildbergШимон Гольдбергシモン・ゴールドベルグDresdner PhilharmonieNetherlands Chamber OrchestraThe Festival QuartetHindemith-Trio + +1044092Gianni MaraldiClassical violin and viola player.Needs VoteAulòs ConsortIl Giardino ArmonicoI BarocchistiEnsemble VanitasCappella AugustanaConsort Del Collegio GhislieriL'Onda ArmonicaAccademia Degli AstrusiCappella Teatina + +1044097Vania PedronettoClassical violinist and violist.Needs VoteAulòs ConsortVenice Baroque OrchestraIl Complesso BaroccoAcademia Montis RegalisDelitiæ MusicaeCompagnia De MusiciEnsemble La Moderna Prattica + +1044103Luca RonconiClassical violinist and violist.Needs VoteConcerto KölnAulòs ConsortSonatori De La Gioiosa MarcaBalthasar-Neumann-EnsembleAuser MusiciArcadia EnsembleEnsemble À L'Antica + +1044350Ian HarperBritish classical hornist, born in Belfast in 1939Needs VoteJan HarperEnglish Chamber OrchestraLondon Wind SoloistsLondon Brass Solists + +1044539Ted Robinson (2)US jazz guitarist from the swing-era. + +Needs VoteTTRTed BrinsonTheodore "Ted" RobinsonAndy Kirk And His Clouds Of Joy + +1044793Astrid LammersClassical soprano vocalist.Needs VoteCappella AmsterdamKoor Nieuwe Muziek + +1044799Niko RavenstijnDouble bass playerNeeds VoteNiko RavensteinNieuw Sinfonietta Amsterdam + +1044808Robert PutowskiPolish cello player, residing in Amsterdam, the Netherlands.Needs VoteR. PutowskiWarsaw Philharmonic Chamber OrchestraOrkiestra Symfoniczna Filharmonii NarodowejAmsterdam SinfoniettaCello Octet Amsterdam + +1044981Sergi CasademuntClassical viol and double bass player.Needs VoteCasademuntS. CasademuntSerge CasademuntSergi CadademuntSergi CassademuntSergio CasademuntLa Capella Reial De CatalunyaLe Concert Des nationsHespèrion XXIHespèrion XXLa Real CámaraOrphénica LyraGuillamí Consort + +1045342Laurent VerneyLaurent Verney (died 4 May 2021, aged 61) was a French violin & viola instrumentalist.Needs VoteVerneyOrchester der Bayreuther FestspieleOrchestre National De L'Opéra De Paris + +1045366Rob VisserClassical oboistCorrectR. VisserAmsterdam Bach SoloistsArdito Wind Quintet + +1045369Guus DralBassoonist, born in Amsterdam, Netherlands.Needs VoteA.S. DralNederlands Blazers EnsembleConcertgebouworkestEbony BandResidentie OrkestRotterdams Philharmonisch Orkest + +1045526Peter Neumann (2)German church musician, organist, conductor and chorus master, born 8-March-1940 in Karlsruhe, died August 2025 in Cologne.Needs Votehttps://www.bach-cantatas.com/Bio/Neumann-Peter.htmhttps://de.wikipedia.org/wiki/Peter_Neumann_(Kirchenmusiker)NeumannPeter Neumannペーター・ノイマン + +1045528Kölner KammerchorThe Cologne Chamber Choir.Needs Votehttp://kartause.de/Cologne Chamber Choir + +1045529Collegium CartusianumCollegium Cartusianumdas was founded in 1988 as successor of the Barockorchester KölnCorrecthttp://www.koelner-kammerchor.de/collegium_cartusianum.phpCollegium CartesianumChristoph Anselm Noll + +1045530Franz-Josef SeligGerman operatic bass, born 11 July 1962 in Mayen, Germany.Needs Votehttps://en.wikipedia.org/wiki/Franz-Josef_Selighttps://www.ks-gasteig.de/index.php/de/ksg-franz-josef-selighttps://www.bach-cantatas.com/Bio/Selig-Franz-Josef.htmhttps://www.imdb.com/name/nm1150934/Franz Josef SeligFranz-Joseph SeligSeligRIAS-KammerchorCollegium VocaleThe Metropolitan OperaConcerto VocaleCantus Cölln + +1045583Eugen MayerGerman classical trumpeter.Needs VoteBachcollegium StuttgartSüdwestdeutsches Kammerorchester + +1045598Claire SottoviaClassical violinist.Needs VoteLes Musiciens Du LouvreLes PaladinsLe Cercle De L'HarmonieLes Accents + +1045602Benjamin FabreClassical violinistNeeds VoteLes Musiciens Du LouvreLe Cercle De L'HarmonieParis Mozart Orchestra + +1045606Sayaka Ohira-FabreClassical violinistCorrectSayaka FabreSayaka OhiraSayaka Ohira FabreSayaka OhiraLes Musiciens Du LouvreLe Cercle De L'Harmonie + +1045608Grégory LacourCellistCorrectGregory LacourGrégory LacourtOrquesta Sinfónica De Madrid + +1045613Sylvain BlasselClassical Harpist & KeyboarderNeeds VoteEnsemble Intercontemporain + +1045932Imre RohmannClassical pianist, he is Professor of Piano at the Mozarteum in Salzburg.CorrectI. RohmannJ. RohmannRohmann Imre + +1045974Guy BertretFrench lyricist. +Died in 1995. +Aka "Jan Dulierre" and "Jan Humbert".Needs VoteBertretBlecherC BertretC. BertretG BertretG. BertrerG. BertretG. GertretG. VerpretG.BertretGuy TrébertGérard BertretJ. BertretJan Dulierre + +1046398Franco ReitanoFrancesco ReitanoFiumara, Reggio, Calabria, Italy 05.09.1942 – 12.07.2012 Milano, Lombardy, Italy +Italian composer, brother of [a836248], son of musician [a2326388] [1917-1994] +He studied accordion and piano and in 1955 his first band was formed, composed of his family and called the Fata Morgana Orchestra of the Reitano Brothers . +Franco Reitano dies at the National Cancer Institute of Milan. He rests alongside his brother in the cemetery of Agrate Brianza, municipality of residence of the Reitano familyCorrecthttps://it.wikipedia.org/wiki/Franco_Reitanohttps://westernsallitaliana.blogspot.com/2020/08/who-are-those-composers-franco-reitano.htmlF ReitanoF. ReitanoF. ReitanoF.ReitanoFrancoMaestro Franco ReitanoReitanoFrancesco ReitanoCalabrasFranco E Mino ReitanoI FisiciI Fratelli ReitanoD.F. e M. Reitano + +1046400Ole Kock HansenDanish jazz pianist, composer and bandleader, born 19 April 1945 in Osager, Denmark.Needs VoteHansenO Kock HansenO. K. HansenOle KochOle Koch HansenOle Koch-HansenOle KockOle Kock-HansenBen Webster QuartetDanish Radio Big BandThe Danish Radio Jazz GroupThe Danish Jazzballet Society'-EnsembleJesper Thilo QuintetIron OfficeOle Kock Hansens SekstetKansas City StompersJens Søndergaard QuartetNordic Jazz QuintetWarne Marsh QuintetThad Jones QuartetKen Peplowski QuartetRed Rodney & The New Danish JazzarmyThe Danish-German Slide CombinationTrouble (26)Thomas Fryland QuintetRepertory QuartetAllan Bo The QuintetSwingstyrke 7 + +1046875Jette RosendalDanish soprano vocalist and classical violinistNeeds Votehttp://www.jetterosendal.dk/RosendalAalborg Symfoniorkester + +1046944Kammerorchester Des Norddeutschen RundfunksCorrectChamber Orchestra Of The North German RadioChamber Orchestra of North German RadioChamber Orchestra of the North German RadioChor Und Sinfonie-Orchester Des Norddeutschen RundfunksDas Kammerorchester Des NDRDas Kammerorchester Des NDR HamburgDas Kammerorchester Des Norddeutschen RundfunksDas Kammerorchester des Norddeutschen RundfunksKammerorchester Des NDRKammerorchester Des NDR HamburgKammerorchester des NDRNDR Chamber OrchestraNorth German Radio Chamber OrchestraOrchester Des Norddeutschen Rundfunks, HamburgOrchestra De Cameră Norddeutschen RundfunkOrchestra De Cameră „Norddeutscher Rundfunk”Orchestra Of North GermanyOrchestra de cameră Norddeutscher RundfunkOrchestra „Norddeutscher Rundfunk”Orquesta De Camara De La NDR, HamburgoOrquesta De Camara De La Radio De Alemania Del NorteRadio Hamburg Chamber Orchestra + +1046945Südwestdeutsches KammerorchesterSüdwestdeutsches Kammerorchester PforzheimThe South-West German Chamber Orchestra Pforzheim was founded in 1950 by [a844147], a student of Paul Hindemith, and is based in the City [l1202600], Southwest Germany. The orchestra was directed by [a978175] from 1971 to 1981, by [a1768696] from 1986 to 2002, by [a=Sebastian Tewinkel] from 2002 to 2013, by [a4851209] from 2013 to 2019, and since 2019 by [a1033059].Needs Votehttps://www.swdko-pforzheim.de/https://www.youtube.com/channel/UC9HH89z1eKhyysZ77DdAS-whttps://en.wikipedia.org/wiki/Pforzheim_Chamber_OrchestraChamber Orchestra Of PforzheimDas Südwestdeutsche KammerorchesterDas Sudwestdeutsche KammerorchesterDas Südwestdeutsche KammerorchesterDas Südwestdeutsche Kammerorchester PforzheimDas Südwestdeutsches KammerorchesterDas Südwestdtsch. KammerorchesterDer Südwestdeutsche KammerorchesterEnsemble Des Südwestdeutschen Kammerorchesters PforzheimKamerorkest Van PforzheimKammerorchesterKammerorchester Baden-BadenKammerorchester PforzheimOrchestraOrchestra Da Camera Della Germania Sud OvestOrchestra Da Camera Di PforzheimOrchestra da Camera Swd.Orchestra da Camera di PforzheimOrchestre De Chambre "Südwestdeutsche"Orchestre De Chambre De La SüedwestdeutschesOrchestre De Chambre De PfiorzheimOrchestre De Chambre De PforzheimOrchestre De Chambre Du Sud-OuestOrchestre De Chambre Du Südwestfunk, Baden-BadenOrchestre De Chambre PforzheimOrchestre De Chambre de PforzheimOrchestre de Chambre "Südwestdeutsche"Orchestre de Chambre Du Sud-OuestOrchestre de Chambre de PforzheimOrchestre de Chambre du Sud-OuestOrchestre de chambre de PFORZHEIMOrchestre de chambre de PforzheimOrquesta De Camara De PforzheimOrquesta De Camara Del Sudeste De AlemaniaOrquesta De Camara Del Sudoeste De AlemaniaOrquesta De Cámara De La Alemania Del SudoesteOrquesta De Cámara De PforzheimOrquesta De Cámara Del Sudoeste De AlemaniaOrquesta Filarmónica De Alemania SudoesteOrquesta de Camara Del Sudoeste AlemanOrquesta de Camara de PforzheimOrquesta de Cámara de PforzheimOrquestra De Câmara De PforzheimPforzheim Chamber OrchestraPforzheim KammerorchesterPforzheimer KammerorchesterPhorzheim Chamber OrchestraSW German Chamber OrchestraSolisten Des Südwestdeutschen KammerorchestersSolistes Et Suddeutsches KammerorchesterSolisti, Cori E Orchestra Da Camera Di PforzheimSouth German Chamber OrchestraSouth German Chamber Orchestra, PforzheimSouth German Philharmonic OrchestraSouth West German Chamber OrcSouth West German Chamber OrchestraSouth West German Chamber Orchestra, PforzheimSouth West German OrchestraSouth West Germany Chamber Orch.South- West Chamber OrchestraSouth-West German Chamber OrchestraSouth-west German Chamber Orchestra PforzheimSouthwest German Chamber OrchestraSouthwest German Chamber Orchestra PforzheimSouthwest German Chamber Orchestra, PforzheimSouthwest German Chamber orchestraStädtisches Orchester PforzheimSuddeutsches KammerorchesterSuddeutsches Kammerorchester PforzheimSudwestdeutsches KammerorchesterSüddeutscher KammerorchesterSüddeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimSüdwest Deutsches KammerorchesterSüdwest KammerorchesterSüdwest-KammerorchesterSüdwestddeutsches Kammerorchester PforzheimSüdwestdeusches Kammerorchester PforzheimSüdwestdeutsche KammerorchesterSüdwestdeutschen Kammerorchester PforzheimSüdwestdeutschen Kammerorchester Pforzheim*Südwestdeutsches KammerensembleSüdwestdeutsches Kammerochester PforzheimSüdwestdeutsches Kammerorch.Südwestdeutsches Kammerorchester PforzheimSüdwestdeutsches Kammerorchester, PforzheimThe Pforzheim Chamber OrchestraThe S.W. German Chamber OrchestraThe South West German Chamber OrchestraThe South West German Chamber Orchestra, PforzheimThe South-West German Chamber OrchestraThe Southwest Chamber OrchestraThe Southwest German Chamber OrchestraWest German Chamber OrchestraZuidduits Kamerorkestorchestre de Chambre de PforzheimКамерный Оркестр Юго-Западной Германии南西ドイツ室内管弦楽団Verena VolkmerHelmut MüllerKarl ArnoldKraft-Thorwald DillooHenryk SzeryngFriedrich TilegantHeinrich HaferlandUlrich KochJan SchröderGyörgy TerebesiPierre PierlotJacoba MuckelJacques ChambonHartmut StrebelFritz WernerWolfgang GönnenweinMichael DzionoraHermann WerdermannKarl HöffingerEugen M. DomboisPaul AngererMarc NoetzelAlfred LessingDouglas BostockEugen MayerHeinz ZicklerHellmut SchneidewindReinhold BarchetHorst Schneider (2)Gerhard BraunHanspeter WeberVladislav CzarneckiJohannes RitzkowskyFriedrich MildeChihiro Saito (2)Hermann SauterHeiner SchatzGeorg EggerThomas GerlingerStefan KnoteAntal PappHans SpenglerGünther LinnebachRaymond WarnierPetra WolffFriedemann BreuningerClaudiu RupaAriane VolmHansjörg SchäferTheo Von SchönFritz StrowitzkyMarkus KruscheHedda RothweilerPercy KaltWalter GleissleLucile ChionchiniGabriele EtzAndreas Schmidt (13)Benjamin WittiberMaximilian OberroitherWilli RüttenTimo HandschuhMartin Linder (3)Werner Büttner (2)Matthias BotzetRene WehrleKrassimira KrastevaHelmuth Matthias NitscheKonstanze BodamerDariusz WasiakCheryl SwobodaMichael EwersJulia Ströbel-BänschEleonore BodendorffAndrzej BrzeckiVera KleimannAndrea HankeIvanna TernayMarcin GortelLuis Martinez-EisenbergSigurd MichaelAndrea SteinbergOttavia KortnerCatherine VaradyUlrich WeißenburgNikola StolzChiharu AsamiPeter PudilHeinrich HerpichAttila SzegediAgnieszka KornilukAlexandra BossakJoanna GortelJutta KühnelEditha KonwitschnyHeinz Rötter + +1047057Skippy DesairStanford DesairAmerican jazz saxophonist (Baritone)Needs VoteSkip DeSairSkip DesairSkippy De SairSkippy DeSairSkippy de SairWoody Herman And His OrchestraWoody Herman & The HerdThe Band That Plays The Blues + +1047060Irv LewisAmerican jazz trumpeterNeeds VoteIrving LewisIrwing LewisWoody Herman And His OrchestraBenny Carter And His OrchestraWoody Herman & The HerdSpike Jones & His Other Orchestra + +1047061Ralph PfeffnerTrombonist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/337471/Pfeffner_Ralphhttps://www.allmusic.com/artist/ralph-pfeffner-mn0001781263Ralph PfaffnerRalph PfiffnerWoody Herman And His OrchestraTeddy Powell And His OrchestraWoody Herman & The Herd + +1047066Ed KieferTrombonist.Needs VoteEd KeiferWoody Herman And His OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersThe Band That Plays The Blues + +1047073Bobby Smith (3)Robert Lewis Smith* 3. January 1907, Providence, RI - † 6. June 1995, Los Angeles, CA +Jazz and blues alto saxophonist and arranger from Rhode Island, USA. His career peaked in the band [a=Erskine Hawkins And His Orchestra]. Composer of the R&B classic "Tippin' In". He continued recording and performing until 1983. Worked as a West Coast arranger in the mid-60s. Often associated to [a=The Larks (3)], [a=Sonny Knight] and the label [l=Apollo Records (2)]. Part-owner of [l=Buzz Records (7)].Needs Votehttp://bebopwinorip.blogspot.com/2016/09/bobby-smith-orchestra-jazz-at-apollo.htmlhttps://www.swingfm.asso.fr/html/biographies/saxs%20altos%20et%20barytons/Smith%20Bobby.htmB. SmithB.SmithBob SmithBobbie SmithBobby LewisM. JacksonRobert Lewis SmithRobert SmithSmithTrad.Erskine Hawkins And His OrchestraBobby Smith And Orchestra + +1047075Clarence RossClarence W. RossAmerican trombonist.Needs VoteCandy RossClarence "Candy" RossClarence Candy RossClarence W. RossMcKinney's Cotton PickersBenny Carter And His OrchestraSy Oliver And His OrchestraBe Bop BoysWalter Gil Fuller And His OrchestraGil Fuller OrchestraThe Cliff Smalls Septet + +1047078Georges GayTrumpeterNeeds VoteGrand Orchestre De L'OlympiaParis All Stars (2) + +1047084Frank DavillaTrumpet PlayerNeeds VoteFrank "Paquito" DavillaFrank DavilaPaquito DavilaPaquito DavillaTrank "Paquito" DavillaPaquito DavillaMachito And His OrchestraCharlie Parker And His Orchestra + +1047624Leon RudinViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +1047625John WummerAmerican flutist and teacher (* 31 December 1899 in Reading, Pennsylvania, USA; † 06 September 1977 in San Francisco, California, USA).Needs Votehttps://adp.library.ucsb.edu/names/104781https://theinstrumentalist.com/january-2021-flute-talk/a-1926-profile-of-john-wummer/J. WummerNBC Symphony OrchestraNew York PhilharmonicDetroit Symphony OrchestraNew York SinfoniettaPrades Festival OrchestraThe Philharmonic Chamber EnsembleThe Musical Arts Trio + +1047626John KasicaClassical percussionistNeeds VoteJohn KassicaSaint Louis Symphony Orchestra + +1047628Felix GalimirAustrian-born American-Jewish violinist and music teacher, born 12 May 1910 in Vienna, Austria and died 10 November 1999 in New York, New York. + +He founded the [url=http://www.discogs.com/artist/1596330-Galimir-Quartet-Of-Vienna-The]Galimir Quartet Of Vienna[/url] in 1927, with his three sisters. +Needs Votehttp://en.wikipedia.org/wiki/Felix_GalimirF. GalimirFelix GalamirFelix GallimirGalamirGalimirフェリックス・ガリミールNBC Symphony OrchestraWiener VolksopernorchesterIsrael Philharmonic OrchestraMarlboro Festival OrchestraThe Galimir Quartet Of ViennaNew York SinfoniettaThe Galimir QuartetThe Galimir TrioNew World Chamber EnsembleAlexander Schneider String EnsembleAlexander Schneider QuintetFestival String Quartet (2) + +1047977Willy Domgraf-FaßbaenderWilli Domgraf FassbaenderGerman baritone vocalist (* 19 February 1897 in Aachen, German Empire; † 13 February 1978 in Nuremberg, Germany).Needs Votehttps://en.wikipedia.org/wiki/Willi_Domgraf-Fassbaenderhttps://adp.library.ucsb.edu/names/103958Domgraf-FassbaenderW. Domgraf-FassbaenderW. Domgraf-FassbanderW. Domgraf-FaßbaenderWilli Domgraf-FassbaenderWilli Domgraf-Fassbaender Mit Orch.Willi Domgraf-FaßbaenderWilli Domgraf-Faßbaender IIWilly Domgraf-FasebänderWilly Domgraf-FassbaenderWilly Domgraf-FassbänderWilly Domgraf-FaßbänderВ. Домграф-ФассбендерВилли Домграф-Фассбендер + +1048110Carolyn WatkinsonEnglish mezzo-soprano, born 19 March 1949 in Preston, Lancashire, England, UK.Needs Votehttps://en.wikipedia.org/wiki/Carolyn_WatkinsonCarol WatkinsonCarolin WatkinsonCarolyn WatinsonWatkinsonКэролин Уоткинсон + +1048250Bruno NouvionFrench trumpeter. + +Bruno Nouvion studied at the music school of Châlons en Champagne, and the Conservatoire National de Région de Reims in the class of M. Kemblinsky before graduating with highest honours from the Conservatoire National Supérieur de Musique de Paris, 1977 for trumpet (pupil of Pierre Thibaud) 1979 for cornet 1980 for chamber music (pupil of Christian Lardé). In 1980 he becomes principal trumpet of the Concerts Lamoureux; in 1983 principal cornet of the Théâtre National de l'Opéra de Paris. Since 1986 he is principal trumpet of the " Orchestre Philharmonique de Radio France ". 1983 to 2005 founding member of the "ensemble de trompettes de Paris". 1990 à 1994 member of the " ensemble des cuivres Français " (under Michel Becquet) - 1991 founding member of the quintette de cuivres "just'a cinq " Member of the ensemble" FA ", (directed by Dominique My), till 1999. Since 1997 he teaches at the conservatoire municipal in the 10th part of Paris. He becomes in 1999 teacher at the C.N.S.M.D. de Paris, assisting M. Antoine Curé.Needs VoteOrchestre Des Concerts LamoureuxOrchestre National De L'Opéra De ParisEnsemble FaOrchestre Philharmonique De Radio FranceDenis Levaillant Music EnsembleJust'a 5Les Cuivres Français + +1048395Josef FeckGerman Classical Trombonist.Needs VoteConsortium Musicum (2) + +1048400Emil MornewegClassical double bassistNeeds VoteConsortium Musicum (2) + +1048401Willy WaltherWilly Walther (28 October 1919 - 3 October 1994) was a German classical trombonist and Professor at the [l513363].Needs VoteWilli WaltherBerliner PhilharmonikerOrchester der Bayreuther FestspieleKölner Rundfunk-Sinfonie-OrchesterMusikkorps Des Wachbataillons Der Luftwaffe Berlin + +1048445Charles BatemanCharles BatemanJazz pianist. +b. 1922 (Youngstown, OH) +d. January 24, 2004. (Orlando, FL) + +Pianist Charles Bateman spent years training to play classical music, but his move into jazz took him into a world of which many of his fans could only dream. In his heyday, he could be found on stage with the likes of Billie Holiday, Louis Armstrong and Miles Davis. + +Bateman, who hit the Central Florida jazz scene after retiring and moving from New York City in the early 1990s, died Saturday (January 24, 2004). He was 82. + +"I hate to say this, but it's true," said Anita Turner Bateman, his wife of 47 years. "Charlie was a musical genius." + +Charles Bateman met Anita, a singer and actress, when the two were preparing for a gig in New York City. By then, he had already hit the big time. He and legendary trumpeter Armstrong were among a group of black jazz musicians who made a historic first appearance at Carnegie Hall in 1947. + +Born in Youngstown, Ohio, Bateman's familiarity with the piano came from a life steeped in music. His mother and father were pianists. She played gospel; he played the blues. They started Bateman's classical piano training at an early age. At 18, he performed as a soloist with the Buffalo Symphony Orchestra. + +Bateman moved to New York before his 20th birthday to study under renowned German pianist Bruno Eisner. He played jazz clubs on the side. + +He came to the Orlando area, not for jazz, but for a bridge tournament. He liked the warm weather and the area, Anita said. The couple built a house in Deltona but continued to live and work in New York. + +It was the 1993 World Trade Center bombing that persuaded him to make a permanent move. He had finished his regular gig in the Trade Center's Vista International Hotel and had gone home. The blast that claimed six lives occurred at 12:18 p.m. the next day. + +Damage from the bombing forced the hotel to close, so the Batemans decided it was the right time to move into their Volusia County home. Once there, he recorded three CDs and played regularly with other area musicians. + +Bateman was an Army veteran of World War II and earned a third-degree black belt in karate. + + +--Tammie Wersinger, Orlando Sentinel (http://articles.orlandosentinel.com/2004-01-27/news/0401270046_1_charles-bateman-jazz-pianist - obituary) +Needs VoteBatemanCharles BatesmanCharles BatmanCharlie BatemanSonny Stitt QuartetThe Harlem Blues & Jazz BandGene Ammons SextetEdmond Hall And His OrchestraThe Aaron Bell TrioGene Ammons And His BandPanama Francis Quintet + +1048603Werner StolzeGerman classical keyboard instrumentalistNeeds VoteKammerorchester Berlin + +1048615Pulsar (17)Joe LeeThere’s no disputing that trance is becoming one of the fastest music genre exploding on a world wide scale. DJ's across the planet have for a long time communicated these beats to clubbers via their massive sets. One of these DJ's is Pulsar. + +Starting out in 2000, Pulsar's passion for trance has never been questioned and neither has his passion for pushing his unique sound to the next level. For one to understand what Pulsar is all about, all one has to do is watch him weave his explosive magic as he steps up to the stage. Whether it is uplifting, banging, or just down right amazing, Pulsar has it covered across the board. + +His first club residency started back in 2002; this was a testament to Pulsar's fast growing popularity due to his performance behind the decks. From there he has gone on to play at almost every major Hard Dance event and has held many residencies over the years at every major club across Sydney. Pulsar currently holds residencies at Sublime, Basscode & Daydreams with regular interstate shows in Melbourne, Brisbane and Adelaide. Internationally, Pulsar tours regularly to Asia with Samsung as a major sponsor. Clubbers have often described Pulsar's style as "Explosive", "Pure Ecstasy", "Soaring", "Elation" and it doesn't stop there as he throws a few surprises in his sets when unexpected. + +As a producer Pulsar has had a handful of releases in 2008 through various international record labels with many more to follow in 2009. He has recently mixed the new Sublime CD due for release August 2008 and has recently been added to the MASIF DJs list along with other world class DJs/Producers. + +Make sure to join Pulsar on his next journey and experience the story that is belted out through his latest production from his turntable assassin. +Needs Votehttp://www.djpulsar.nethttp://www.myspace.com/deejaypulsarhttp://www.twitter.com/djpulsarDJ PulsarJoe Lee (2)Hard Dance Alliance + +1048678Fred PotCellist.Needs VoteF. PotF.PotConcertgebouw Chamber OrchestraHet Nederlands Cellokwartet + +1049040Gareth GriffithsBritish violinist and contractor for [a=The Chamber Orchestra Of London].Needs VoteGary GriffithsUrban Soul OrchestraBBC Symphony OrchestraThe Chamber Orchestra Of London + +1049152Fred FallensbyAmerican saxophonistNeeds VoteF. FalenskyFred FalenabyFred FalensbyFred FalenskyFred FallenabyFreddie FellensbyFreddy FellensbyThe Glenn Miller OrchestraBilly May And His OrchestraCharlie Barnet And His OrchestraLarry Clinton And His OrchestraCalifornia RamblersBob Keene OrchestraOpie Cates And His Orchestra + +1049153Joe CastroJoseph Armand Castro.American bebop jazz pianist. + +Born : August 15, 1927 in Miami, Arizona. +Died : December 13, 2009 in Las Vegas, Nevada.Needs Votehttps://www.joecastrojazz.com/introCastroJoe Castro's FriendsJoe Castro's Jam SessionsThe Joe Castro QuartetBilly May And His OrchestraPete Rugolo OrchestraHoward Rumsey's Lighthouse All-StarsTeddy Edwards QuartetThe Joe Castro TrioThe Castro Quintet + +1049210Roy SmeckLeroy SmeckBanjo, uke and (Hawaiian) lap steel guitar player. +Born: 6 February 1900 +Died: 5 April 1994 +Roy was born in 1900 in Reading, PA. In 1926 he appeared in one of the first sound films ever made by Warner Bros./Vitaphone. Roy invented the Vita-Uke marketed by the Harmony Company. He also put his name to several other uke, guitar, Hawaiian guitar, steel guitar, and banjo models made by Harmony, and made over 500 recordings for Edison, Victor, Columbia, Decca, Crown, RCA and others. He wrote instruction/method books for guitar, Hawaiian guitar, uke and banjo by the dozens; arranged innumerable(?) tunes for the uke; and made the first multiple-soundtrack movie for Paramount Pictures. + +Roy played at FDR's presidential inaugural ball in 1933; George VI's coronation review in 1937; and toured and played in Scotland, Ireland, Germany, Japan, Iceland, Greenland, Alaska, Canada, Puerto Rico, Korea, and, of course, Hawaii. + +Roy recorded hundreds of songs, on his own and with other groups. Many are on 78rpm records, and a good number can be found on LPs. +Needs Votehttp://ukediner.ukulele.org/roybio.htmlhttps://www.youtube.com/watch?v=JoQa4RfIg3ghttps://en.wikipedia.org/wiki/Roy_Smeckhttps://www.imdb.com/name/nm0806741/https://www.imdb.com/name/nm5663261/https://adp.library.ucsb.edu/names/104764Leroy SmeckR. SmeckRoy SchmeckRoy Smeck & His QuartetteRoy Smeck (Wizard Of The Strings)Roy Smeck And His Magic UkeSmeckSmeck Van HasseltAlabama JoeDixie SamKing Oliver & His OrchestraRoy Smeck And His Hawaiian SerenadersRoy Smeck And His Dixie SyncopatorsRoy Smeck's TrioRoy Smeck And His Paradise IslandersRoy Smeck And His All-Star SerenadersRoy Smeck's HawaiiansRoy Smeck And The Music MenRoy Smeck And His SerenadersDizzy TrioHobsie TrioRoy Smeck and His Paradise SerenadersRoy Smeck's Novelty OrchestraRoy Smeck & His OrchestraRoy Smeck And His Tropical SerenadersRoy Smeck And His Island QuartetRoy Smeck's Vitaphone Trio + +1049255Ariane MauretteViol player and founder of Ensemble [a=Isabella D'Este].Needs VoteArianne MauretteLes Arts FlorissantsEnsemble Clément JanequinEnsemble Les ElémentsHespèrion XXCapriccio StravaganteIsabella D'Este + +1049326Kovács LórántClassical wind instrumentalistNeeds VoteLorand KovacsLoranr KovacsLorant KovacsLóránd KovácsLóránt KovácsLiszt Ferenc Chamber Orchestra + +1049477Paul Phillips (4)Paul Phillips, Jr.Paul Phillips, Jr. was an American violinist. He passed away on March 27, 2024 at the age of 77. Paul Phillips was a member of the [a837562] from 1980 to 2020.Needs VotePaul PhilipsPaul Phillips, Jr.Detroit Symphony OrchestraChicago Symphony Orchestra + +1049594Karen Jones (3)British classical flute (concerto soloist, chamber musician, recording artist, and orchestral) player, and Professor of Flute. +She studied at [l305416]. Principal Flute in the [a=European Union Youth Orchestra], the [a=Bournemouth Symphony Orchestra] (for five years), the [a462220] and the [a=City Of London Sinfonia]. She taught at the [l=Trinity College Of Music, London] and the [l459222]. In 2004, she became Professor of Flute at the [l527847]. +Wife of [a=Andrew Barclay], daughter of [a=Martyn Jones (4)] and niece of [a=Michael Jones (6)].Needs Votehttps://www.facebook.com/Karen-Jones-231832843565754/http://www.robertbigio.com/jones.htmhttps://www.principalchairs.com/flute/karen-jones/https://www.justflutes.com/lessons/karen-jones-2020-02-28#grefhttp://www.imusicanti.co.uk/musicians/karen-jones/http://arcadiamusic.org.uk/pages/KarenJoneshttps://www.whittingtonmusicfestival.org.uk/portfolio/karen-jones-flute/City Of London SinfoniaLondon SinfoniettaPhilharmonia OrchestraThe London Chamber OrchestraBournemouth Symphony OrchestraLondon Mozart PlayersEuropean Union Youth OrchestraLondon MusiciMichaelangelo Chamber OrchestraYoung Musicians Symphony OrchestraThe Britten-Pears Ensemble + +1049596Jane SpiersClassical flautistNeeds VoteJanet SpiersThe Chamber Orchestra Of Europe"Oliver!" 1994 London Palladium Cast, Orchestra + +1049653Joe PuliceAmerican jazz drummer from MinnesotaNeeds Votehttps://jazzmn.org/joe-pulice/Woody Herman And His OrchestraKlaus Ignatzek GroupThe Woody Herman Big BandJazzMN Orchestra + +1049670Jimmy Dean (3)Jimmy DeanUK Hard Dance DJ & producer. +Contact: jimmy@xstaticclubbing.co.uk +Needs Votehttp://www.jimmy-dean.co.uk/http://www.myspace.com/djjimmydeanxstatichttp://www.facebook.com/pages/Jimmy-Dean-Music/165707389166James Dean + +1049683Emile NaoumoffClassical pianist, born February 20, 1962 in Sofia, Bulgaria. He was the last disciple of [a1788372]; since 1998 he is professor at the Indiana University Jacobs School of Music.Correcthttp://www.naoumoff.com/E. NaoumoffNaoumoffÉmile NaoumoffЕмил Наумов + +1049829John CaliJohn Cali was a US American guitarist, mandolinist and banjo player. He played with the Metropolitan Opera Company and the New York Philharmonic Symphony Orchestra and recorded Swing and Dixieland jazz and polkas. +b. Jun. 26, 1897 in New York, NY +d. Apr. 18, 1984 in Bellevue, WANeeds Votehttp://www.jazzbanjo.com/jbartist/artists/jcali.htmhttps://www.findagrave.com/memorial/8119201/john-cali"Uncle John" Cali and His Keilbasi SixCaliJ. CaliJohn Cali And His Unquiet 6Johnny CaliThe John Cali Banjo BandBroadway Bell-HopsBen Selvin & His OrchestraThe Four Provinces OrchestraJoe Glover And His CollegiansManhattan Dance MakersThe Tennessee TootersThe Broadway SyncopatersMiss Lee Morse And Her Blue Grass BoysBailey's Lucky SevenJuan Calle And His Latin LantzmenSammy Herman SextetThe Ambassadors (11)The Arkansas TrioClover TrioBirmingham Blue Buglers + +1049871Otakar TrhlíkOtakar TrhlíkCzech conductor and music educator. + +Born January 19, 1922 in Brno. D August 6, 2005.Needs VoteDr. Otakar TrhlíkO. TrhlíkOtakar TrhlikOtokar TrhlíkOttakar TrhlíkTrhlíkdr. Otakar TrhlíkSlovak Radio Symphony Orchestra + +1050148Lamar CrowsonJohn Lamar Crowson (born Tampa, Florida, May 27, 1926 – died Johannesburg, South Africa, August 25, 1998) was an American concert pianist and a chamber musician, he settled in South Africa in 1972.Needs Votehttp://en.wikipedia.org/wiki/Lamar_CrowsonCrowsonL. CrowsonLamar CrawsonLamar-CrowsonЛамар Кроусонラマール・クラウソンMelos Ensemble Of LondonThe Pro Arte Piano Quartet + +1050149Luigi SilvaLuigi Silva (13 November 1903 in Milan, Italy - 29 November 1961) was an Italian-American cellist, arranger and music teacher.Needs VoteDa SilvaLuigi Di SilvaSilvaOrchestra Del Teatro Dell'Opera Di RomaQuartetto Di RomaThe Mannes Gimpel Silva Trio + +1050297Ute WaltherGerman operatic contralto.CorrectU. WaltherWaltherWalther UteУве ВальтерУте Вальтер + +1050408Primož NovšakSlovenian classical violinist (* 1945 in Ljubljana, Slovenia); now based in Switzerland.Needs Votehttps://www.radioswissclassic.ch/de/musikdatenbank/musiker/104008355d2c30b8b7c7d91d0374cfc7548bdb/titelPrimosz NovsakPrimoz NovsakBasler Sinfonie-OrchesterLjubljanski Godalni TrioNovšak - Basler - TrioTrio CaleidoscopioTonhalle-Orchester ZürichStreichsextett ZürichSlovenia String Trio + +1050426Jean-Claude OrliacClassical tenor.Needs VoteJ.-C. OrliacJ.C. OrliacJean Claude OrliacJean-Claude OrleacJean-Claude Orliac (Mercure)The Monteverdi ChoirEnsemble Vocal Guillaume Dufay + +1050427Michael Lewin (2)Lutenist.Needs VoteM. LewinThe English Baroque Soloists + +1050428Dinah HarrisClassical soprano.Needs Votehttps://www.rcm.ac.uk/vocal/vocalprofessors/details/?id=03197The Monteverdi Choir + +1050990Charles DelaunayCharles DelaunayFrench Author, Jazz expert, and dabbled as a Painter. He was born 18 January 1911 in Vineuil-Saint-Firmin, Oise, the son of painters [a=Robert Delaunay] and [a=Sonia Delaunay] , Charles Delaunay was one of the founders of the "Hot Club de France". Together with Hugues Panassié he initiated the Quintette du Hot Club de France with Django Reinhardt and Stephane Grappelli. He also organised concerts, for example with Benny Carter. + +In 1935, together with Panassié he founded Le Jazz Hot, one of the oldest jazz magazines. During World War II Delaunay was a member of the Resistance, but continued leading the Hot Club. In 1948 Delaunay founded the record label [l8708]/[l=Disques Vogue]. He is author of the famous Hot Discography with five editions in England, France and the US the first jazz discography. Delaunay died in Paris of Parkinson's disease in 16 February 1988 near Paris, France.Needs Votehttps://en.wikipedia.org/wiki/Charles_DelaunayCh. DelaunayCh.DChadelCharles DelauneyM.P. ChadelH.P. ChadelAlix Combelle Et Son OrchestrePhilippe Brun "Jam Band"Alix Combelle And His Swing Band + +1051011Irène TroiClassical violinist.CorrectIrene TroiConcentus Musicus WienEnsemble Baroque De LimogesBalthasar-Neumann-Ensemble + +1051012Gisèle DubonClassical violin and viola player.CorrectLes Arts FlorissantsEnsemble Baroque De Limoges + +1051015Jean-Paul BonnevalleClassical countertenor and alto vocalistNeeds VoteJ.-Paul BonnevalleLes Arts FlorissantsChœur De Chambre Accentus + +1051016Eric GuillerminClassical bass vocalist.CorrectLes Arts FlorissantsChœur De Chambre AccentusEnsemble Venance Fortunat + +1051018Mark Chambers (3)Classical countertenor and alto vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Chambers-Mark.htmhttp://sestinamusic.com/mark-chambers/The Monteverdi ChoirThe Binchois ConsortChœur De Chambre AccentusTenebrae (10)GallicantusThe Gonzaga Band + +1051021Olivier ClémenceClassical oboist.Needs VoteOlivier ClemenceLe Parlement De MusiqueLa Simphonie Du MaraisLes Musiciens Du LouvreEnsemble Baroque De LimogesLa Petite Symphonie + +1051024Fabrice ChomienneBass vocalist.Needs VoteLes Arts FlorissantsChœur De Chambre AccentusIndigo (34) + +1051025Olivier LallouetteClassical baritone / bass vocalistNeeds VoteLallouetteLes Arts Florissants + +1051027Jérôme CorreasFrench Bass / Baritone vocalist and founder of [a=Les Paladins] ensemble.Needs Votehttps://en.wikipedia.org/wiki/J%C3%A9r%C3%B4me_CorreasCorréasJ. CorréasJerôme CorréasJérôme CorréasLes Arts FlorissantsLes Paladins + +1051030Sophie CerfClassical violinist.Needs VoteLe Concert SpirituelLes Folies FrançoisesEnsemble Baroque De LimogesEnsemble StradivariaDoulce Mémoire + +1051031Suzan CantrickClassical violinist.CorrectSusan CantrickSusanne CantrickLes Arts FlorissantsLes Musiciens Du LouvreEnsemble Baroque De Limoges + +1051034Richard MyronClassical double bassist.Needs VotePulcinellaLes Arts FlorissantsIl Seminario MusicaleLe Concert Des nationsFreiburger BarockorchesterEnsemble FitzwilliamEnsemble Baroque De LimogesL'ArpeggiataCapriccio StravaganteAmarillisLes Basses RéuniesPrivate MusickeVocalconsort BerlinLa Tempesta + +1051441Wilhelm SchlemmSound engineer and recording producer.CorrectDr. Wilhelm Schlemm + +1051684Wes LandersWesley B. LandersJazz drummer, born 1925 in Bermuda, died February 23, 1993 in New York, NY. +At the end of World War II, Landers worked for Earl Hines and Count Basie. In 1948 he began working with Gene Ammons, recording with him the next two years. Thereafter Landers recorded with Sonny Stitt 1950, Buddy De Franco 1953 and Sonny Clark 1957-1958. Later he worked with Paul Gayten's rhythm and blues band in New Orleans. +In 1985 Landers was a member of the New Orleans Blue Serenaders. + +His son is [a=Wesley 'Gator' Watson], drummer for Lionel Hampton's big band.Needs VoteWesley LandersSonny Clark TrioSonny Stitt QuartetSonny Stitt BandGene Ammons QuartetGene Ammons SextetNew Orleans Blue SerenadersThe Buddy DeFranco Big BandGene Ammons And His BandJimmy Dale Band + +1052027Pierre GuédronFrench singer, composer and singing teacher, born and died about 1570-1620.CorrectGuédronP. GuédronPierre GuedronPierre Guédron (1570-1620) + +1052061Ľudovít RajterLajos RayterSlovak composer and conductor. + +Born July 30, 1906. Died July 6, 2000. Needs VoteDr. L. RajterDr. Ludovít RajterDr. Ľudovít RajterL'udovit RajterL. RajterLadovit RajterLudevít RajterLudivíc RajterLudovic RajterLudovic RatjerLudovil RajterLudovit RajterLudovít RajterLudwig RajterRajterĽ. RajterЛюдовит Рейтерルドヴィート・ライテルSlovak Radio Symphony Orchestra + +1052346Ted Brinson (2)Theodore M. Brinson, Jr.Bassist and guitarist. Died 13 Apr 1981. +Probably same person as [a682491]Needs Votehttps://crownrecordsstory.wordpress.com/2021/01/18/ted-brinson-postman-recording-engineer/https://www.facebook.com/notes/646148246102413/"Big Boy" Ted BrinsonBig BoyBrensonBrinsonT. BrinsonAndy Kirk And His Clouds Of JoyBumps Blackwell OrchestraDick Robinson Quartet + +1052350Fred FradkinFrederic FradkinAmerican violinist, born 24 April 1892 in Troy, New York and died 1963 in New York, New York.CorrectF. FradkinFradkinFrederic FradkinFredic FradkinFredric FradkinKarl Reuter (2)Boston Symphony OrchestraFredric Fradkin And His Salon OrchestraFredric Fradkin Trio + +1052708Albert FerreriJazz tenor saxophonist.Needs Votehttps://musee.sacem.fr/index.php/Detail/entities/3266A. FerreriAl FerreriAl FerrerriAl. FerreriFerreriAlferayRoy Eldridge And His OrchestraLouis Bacon Et Son Orchestre + +1052806Victor IngeveldtBelgian violinist, saxophone, clarinet & flute player (1911 Liege Belgium -1997).Needs VoteIngelveldIngeveldIngeveldtSir Vic IngeveldtV. IngeveldV. IngeveldtVic IngeveldVic IngeveldtVic IngleveldVictor "Vic" IngeveldtVictor "Vic" IngeveldtVictor IngeveldVictor Ingeveltv. IngefeldtVico PaganoChakachasThe RamblersDjango Reinhardt Et Son OrchestreFud Candrix Et Son OrchestreInternational's Dance OrchestraJeff De Boeck And His Metro Band + +1052826Chœur De L'Orchestre De ParisAccompanying chorus for the [a744724], created in 1976.Needs Votehttp://www.orchestredeparis.com/fr/orchestre/presentation/le-choeur_6.htmlhttp://philharmoniedeparis.fr/en/node/929Choeur De Femmes De Orchestre De ParisChoeur De L'Orchestre De ParisChoeur De ParisChoeursChorusChœurChœur Et Orchestre De ParisChœursChœurs De L'Orchestre De ParisChœurs De ParisCoro Da Orquestre De ParisCoro De La Orquesta De ParísCoros De La Orquesta De ParísLe Choeur De L'Orchestre De ParisParis Orchestra ChorusХор Парижского ОркестраNicolas Krüger + +1052897Natty DominiqueAnatie DominiqueAmerican jazz trumpeter and cornetist, born August 2, 1896 in New Orleans, Louisiana, died August 30, 1982 in Chicago, Illinois. +Uncle of [a=Don Albert] and cousin of [a=Barney Bigard].Needs Votehttps://adp.library.ucsb.edu/names/110928A. "Natty" DominiqueA. DomeniqueA. DominiqueAnatie "Natty" DominiqueAnatie DominiqueAnatole "Natty" DominiqueDominiqueN. DominiqueNat DominiqueNattie DominiqueН. ДоминикJohnny Dodds Washboard BandChicago FootwarmersState Street RamblersDixie-Land ThumpersJimmy Blythe's OwlsJohnny Dodds' Hot SixNatty Dominique And His New Orleans Hot SixNatty Dominique & His Creole Dance Band + +1053116Joseph FlummerfeltChoral conductor, once director of the Westminster Choir from Rider University.Needs VoteJohn FlummerfeldJoseph R. FlummerfeltДжон ФлуммерфельдWestminster Choir + +1053118Mathilde WesendonckAgnes Mathilde Wesendonck, née LuckemeyerGerman poet and author, born 23 December 1828 in Elberfeld, (today Wuppertal), Germany, died 31 August 1902 in Altmünster am Traunsee, Germany. [a=Richard Wagner] set five songs to her words, known as "Wesendonck-Lieder".Needs Votehttp://en.wikipedia.org/wiki/Mathilde_Wesendonckhttps://adp.library.ucsb.edu/names/104391M. WesendonckM.WesendonckMathilda WesendonkMathilde WesendockMathilde WesendonkMathile WesendonkMatilda WesendonkMatilde WesendonkWesendonckWesendonkИ. ВезендонкМ. ВезендонгМ. Везендонк + +1053170Erich KleiberAustrian conductor (* 05 August 1890 in Vienna, Austro-Hungary (today Austria); † 27 January 1956 in Zürich, Switzerland). + +Also see [a=Erich Kleiner]Needs Votehttps://en.wikipedia.org/wiki/Erich_Kleiberhttps://dx.doi.org/10.1553/0x0001d49fhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103966/Kleiber_Erichhttps://www.britannica.com/biography/Erich-Kleiberhttps://www.bach-cantatas.com/Bio/Kleiber-Erich.htmhttp://www.klassik-heute.de/4daction/www_interpret?id=6499http://www.jamescsliu.com/classical/kleiber.htmlE KleiberE. KleiberE.KleiberErich KleberGener. Hud. Fed. Erich KleiberGeneralmusikdirektor Erich KleiberGenerální Hudební Ředitel Erich KleiberKleiberЭрих КлайберЭрих Кляйбер + +1053175Biagio MariniItalian virtuoso violinist and baroque composer (born 5 February 1594 in Brescia - died 20 March 1663 in Venice).Needs Votehttps://en.wikipedia.org/wiki/Biagio_Marinihttps://www.britannica.com/biography/Biagio-Marinihttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/marini-biagioB. MariniB.MariniBiaggio MariniBiago MariniMarianiMariniMarini (Biaggio)Marini B. + +1053178Vincenzo AlbriciItalian Baroque composer, pianist, organist and conductor, born June 26, 1631 in Rome, died August 8, 1696 in Prague. + +He was employed at the courts in Stockholm, Dresden and London and was one of the most famous musicians of his time.Needs Votehttp://en.wikipedia.org/wiki/Vincenzo_AlbriciAlbriciV. AlbriciStaatskapelle Dresden + +1053193Ronald HoogeveenDutch Violin PlayerNeeds VoteCombattimento Consort AmsterdamRadio KamerorkestRaphael QuartetOrchestra Of The 18th Century + +1053318Nederlands Radio Symfonie OrkestDutch radio orchestra founded in 1985 after a merger of the [a11583647] and the Radio Orchestra ([a2690415]). After its disbanding in 2005, its functions were absorbed into the [a2994787] and the [a870932]. + +Chief conductors: +1985 - 1989: Kenneth Montgomery (from 1975 chief conductor of the [a2690415]) +1989 - 1991: Henry Lewis +1991 - 1996: Kees Bakels +1996 - 2003: Eri Klas +2003 - 2004: Hans VonkNeeds Votehttps://web.archive.org/web/20140102205803/http://nl-rso.org/https://en.wikipedia.org/wiki/Netherlands_Radio_Symphony_OrchestraNRSONationaal Radio OrkestNational Radio Orchestra Of The NetherlandsNational Radio Orchestra of the NetherlandsNetherlands National Radio OrchestraNetherlands Radio OrchestraNetherlands Radio Symphony OrchestraNiederländisches RundfunkorchesterRSORadio Symfonie OrkestRadio Symfonie Orkest HilversumRadio Symphonie Orkest HilversumRadio Symphony OrchestraRadio Symphony Orchestra Di HilversumRadio-Symphonie-Orchester HilversumThe National Radio Orchestra Of The NetherlandsThe National Radio Orchestra of The NetherlandsThe Netherlands Radio Symphony OrchestraThe Radio Symphony OrchestraFloris MijndersPaul van ZelmGerrie Rodenhuis + +1054247Jayne WhitakerClassical soprano.Needs VoteI. Jayne WhitakerThe Monteverdi ChoirThe English Concert Choir + +1054524Roy CopestakeRoy CopestakeBritish trumpeter. Born in 1912 in England - Died in 1979. +Uncle of [a=Philip Jones]. In 1951, his nephew established the [a=Philip Jones Brass Ensemble], and he became his second trumpet. In 1967 he was one of the session musicians called in by [a=The Beatles] for their [m=54463] album. He passed away in 1979 when he was 67 years old.Needs Votehttps://www.feenotes.com/database/artists/copestake-roy-1912-1979/https://www.the-paulmccartney-project.com/artist/roy-copestake/R CopestakeR. CopestakeRay CopestakePhilharmonia OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenWestminster Brass Ensemble + +1054858Mary UtigerAmerican born classical violinist and director of the ensemble [a=Neue Düsseldorfer Hofmusik], professor at [l318570].Needs VoteUtigerConcentus Musicus WienMusica Antiqua KölnKöln String QuartetLa StagioneOrchestra Of The 18th CenturyCamerata KölnCappella ColoniensisLes AdieuxNeue Düsseldorfer HofmusikAccademia Di MonacoMünchner Cammer-Music + +1054875Paolo PollastriItalian classical oboist, born 1960.Needs Votehttp://www.ppmusic.com/music/perf18.htmI Solisti VenetiOrchestra dell'Accademia Nazionale di Santa CeciliaEnsemble J. M. AnciutiVivaldi Consort + +1054894Raymond Le SénéchalRaymond Delosmone H. LesenechalFrench pianist and music composer.Needs Votehttps://www.facebook.com/RaymondLesenechal/7E. Le SenechalLe SenechalLe SenéchalLe SénèchalLe SénéchalLeSenechalLesenechaLesenechalR SenechalR. Le SénéchalR. L. SénéchalR. Le SenechalR. Le SenehechalR. Le SynéchalR. Le SénechalR. Le SénéchalR. LeSenechalR. LeSénéchalR. LecenachalR. LesenechalR. LesenechallR. LesénèchalR. LesénéchalR. SenechalR. SenegalR. SénéchalR. le SénéchalR.Le SenechalR.Le. SenechalR.LeSenechalRaymond La SenechalRaymond Le SenechalRaymond Le SénechalRaymond LesencheRaymond LesenechalRaymond LesénéchalRaymond SenechalRaynod SenechalRichard SenechalSenechalSénéchalle SénéchalPepe ZapattaBuck Clayton QuintetThe Guitars UnlimitedRaymond Le Sénéchal Et Son Orchestre De RoquetsRaymond Le Sénéchal Et Son OrchestrePepe Zapatta And His OrchestraSacha Distel Et Son EnsembleRaymond Le Sénéchal Et Son QuartetteRaymond Le Sénéchal SextetJean Bonal Et Son Quartette + +1055018Skip AdamsProducer, sound supervisor, recording engineer and musician. He has worked on such shows as The Wonder Years, Picket Fences, LA Law and The X-Files. He is also an excellent guitarist with over 35 years of experience. His talents have been utulized extensively on numerous movie and TV soundtracks as well as on various recordings. A staff writer for Warner/Chappell Music.Needs VoteAdamsS. AdamsS.Adams + +1055111Boston Symphony Chamber PlayersChamber music ensemble made up of the principal players from the [a395913]. The ensemble was founded in 1964.Needs Votehttps://www.bso.org/boston-symphony-chamber-playershttps://web.archive.org/web/20210923142714/https://bostonsymphonychamberplayers.org/Boston Chamber Music PlayersChamber PlayersMembers Of The Boston Symphony Chamber PlayersOrchestre Symphonique de BostonSolistas De La Sinfónica De BostonSolistes de L'Orchestre Symphonique De BostonThe Boston Symphony Chamber PlayersWilliam WrzesienJames SommervilleJoseph SilversteinJames StaglianoRolf SmedvigAnn HobsonSherman WaltLaurence ThorstenbergJules EskinEverett FirthBurton FineHaldan MartinsonElizabeth RoweEdwin BarkerHarold WrightPatricia McCartyArmando GhitallaHenry PortnoiBernard ZigheraCharles KavalovskiWilliam Gibson (3)Andre ComeGino CioffiElizabeth OstlingPeter HadcockMalcolm LoweGlen CherryAlfred ZigheraWilliam R. HudginsGordon HallbergMatthew RuggieroJerome Rosen (2)Boston Symphony Orchestra + +1055112Jules EskinJules Eskin (born October 1931, Philadelphia, Pennsylvania, USA – died November 15, 2016, Brookline, Massachusetts, USA) was an American cellist who served as the principal cellist of the [a395913] for 53 years. He was also a founding member of the [a1055111]. Married to violinist [a2328565].Needs Votehttps://en.wikipedia.org/wiki/Jules_EskinBoston Symphony OrchestraThe Cleveland OrchestraMarlboro Festival OrchestraBoston Symphony Chamber Players + +1055113Charles Smith (6)American classical percussionist.Needs VoteC. SmithBoston Pops OrchestraBoston Symphony OrchestraBobby Hackett And His Swinging Strings + +1055114Everett FirthEverett "Vic" FirthAmerican classical percussionist, though he was also trained as a cornet, trombone, clarinet, and piano player. Head of the percussion department at the New England Conservatory from 1950, and founder of Vic Firth, Inc., a manufacturer of drum sticks and mallets, in 1963. + +He retired from the Boston Symphony Orchestra in 2002, after a 50 year tenure as timpanist. + +Born: 2nd June 1930 - Winchester, Massachusetts, U.S.A. +Died: 26th July 2015 - Boston, Massachusetts, U.S.A. [aged 85] +Needs Votehttp://www.vicfirth.com/https://www.facebook.com/vicfirth.companyE. Firthエヴァレット・ファースVic FirthBoston Pops OrchestraBoston Symphony OrchestraBoston Symphony Chamber PlayersThe All Star Percussion Ensemble + +1055115Arthur PressClassical percussionist, formerly with the Boston Symphony Orchestra.Needs VoteA. PressBoston Pops OrchestraBoston Symphony OrchestraThe All Star Percussion Ensemble + +1055116Burton FineBurton Fine (born 1930) is an American violist and violinist. He's the father of [a5545192].Needs Votehttps://www.nytimes.com/1964/09/06/archives/from-space-propulsion-to-first-violist-in-bso.htmlBoston Symphony OrchestraBoston Symphony Chamber Players + +1055481Philippe Pierlot (2)Belgian music director and viola da gamba player. Director of [a=Ricercar Consort].Needs VoteP. PierlotPh. PierlotLes Arts FlorissantsIl Seminario MusicaleLes Talens LyriquesHespèrion XXIRicercar ConsortHespèrion XXCurrendeL'Ensemble "Faux Bourdon"La Canzona + +1055499Sophie WatillonBelgian viol player (7 December 1965 – 31 August 2005).Needs VoteSophie VatillonСофи ВатийонHesperion XXIl Seminario MusicaleLe Concert Des nationsRicercar ConsortLe Poème HarmoniqueFamille WatillonStylus PhantasticusEnsemble DaedalusLa PastorellaRomanesque + +1055500Eunice BrandaoEunice Moreira BrandaõClassical viol & viola da gamba player. Eunice Moreira BrandaõCorrectE. BrandaoEunice BrandaõEunice BrandãoEunice BrandäoEunice MoreiraEunice Moreira BrandaõConcerto VocaleLa Capella Reial De CatalunyaLe Concert Des nationsHespèrion XXIHespèrion XXArcadia (6) + +1055556Arthur HornigCellist, born 1987.Needs Votehttp://www.deutscheoperberlin.de/de_DE/ensemble/arthur-hornig.65874#Orchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinElissa Lee Ensemble + +1055628Hale HambletonBritish classical clarinet/bass clarinet, saxophone/alto saxophone & basset horn player, Professor of Clarinet, reed maker, and mouthpiece adjuster. +He studied at the [l527847]. Former Principal Bass clarinet with the [a=London Symphony Orchestra] (1969-1970). He was a founder member of the [a=London Saxophone Quartet], founded in 1969. In 1970, he joined [a=The Sadlers Wells Opera Orchestra] (later to become [a=The English National Opera Orchestra]) as Principal Clarinet and remained with them for 35 (or 40) years. Professor of Clarinet at the [l680970]/[l1379071]. +Father of [a=Tristan Hambleton].Needs Votehttps://www.linkedin.com/in/hale-hambleton-17896b9/?originalSubdomain=ukhttp://rcs.chrishooker.com/hale_biog.htmhttps://www.trinitylaban.ac.uk/study/teaching-staff/hale-hambleton/Hal HambletonLondon Symphony OrchestraLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsLondon Wind OrchestraLondon Saxophone QuartetThe English National Opera OrchestraThe Sadlers Wells Opera Orchestra + +1055629Kevin NuttyClassical percussionist. +Former member of the [a=London Symphony Orchestra] (1971-1972).Needs VoteLondon Symphony OrchestraBBC Symphony OrchestraLondon SinfoniettaPhilharmonia OrchestraOrchestre Révolutionnaire Et RomantiqueLondon Percussion EnsembleEnglish Bach Festival Percussion EnsembleEnglish National Ballet Philharmonic + +1055645Albert GiraudEmile Albert KayenberghBelgian symbolist poet who wrote in French (born June 23, 1860, Leuven, Belgium – died December 26, 1929). +His published works include Pierrot lunaire: Rondels bergamasques (1884), a poem cycle based on the commedia dell'arte figure of Pierrot, and La Guirlande des Dieux (1910). The composer [a=Arnold Schoenberg] set a German language version (translated by [a=Otto Erich Hartleben]) of selections from his Pierrot Lunaire to music. +Needs Votehttp://en.wikipedia.org/wiki/Albert_GiraudA. GiraudGiraud + +1055827Pelle AppelinPer-Olof AppelinSwedish classical violinistNeeds VotePer-Olof AppelinGöteborgs SymfonikerAct II + +1055828Paula GustafssonPaula Marie Gustafsson Apola (née Gustafsson)Swedish classical cellist, born on February 13, 1969 in Bergsjöns kyrkobokföringsdistrikt, Göteborg, Västergötland.Needs Votehttps://www.facebook.com/cellopaulahttps://www.imdb.com/name/nm5666470/https://www.gso.se/goteborgs-symfoniker/orkestern/musiker/Paula G ApolaPaula G. ApolaPaula Gustafsson ApolaPaula Gustafsson-ApolaGöteborgs SymfonikerHvila QuartetSommarkvintetten + +1055973Günther HöllerGünther Höller (born April 30, 1937, † December 26, 2016) was a German recorder player and university teacher.Needs Votehttps://de.wikipedia.org/wiki/G%C3%BCnther_H%C3%B6llerG. HollerG. HöllerGuenter HoellerGunther HoellerGunther HollerGünter HöllerGünther HoellerGünther HölleGünther HöllnerGünther HüllerHöllerГюнтер ХёллерKammerorchester Des Saarländischen Rundfunks, SaarbrückenMünchener Bach-OrchesterCollegium AureumMainzer KammerorchesterCappella ColoniensisDie Deutschen BarocksolistenCollegium St. Emmeram + +1056557Bogdan LauksClassical percussionistNeeds VoteB. LauksOrkiestra Symfoniczna Filharmonii Narodowej + +1056605Log:One & DJ WraggCollaboration between UK Hard Trance DJ's & producers [a=Log:One] (aka James Logan) & [a=DJ Wragg] (aka Toby Veale).Needs Votehttp://web.archive.org/web/20120511195739/http://www.wraggandlogone.com/http://www.facebook.com/wraggandlogonehttp://myspace.com/wraggandlogonehttp://www.youtube.com/wraggandlog1DJ Wragg & Log OneLog:One & WraggLog:one & WraggLogg & Wrag-OneLogg & Wrag:OneWragg & LOG:ONEWragg & Log OneWragg & Log-OneWragg & Log: OneWragg & Log:OneWragg & LogOneWragg & LogoneWragg + Log OneWragg + Log:OneWragg And Log OneWragg And Log:OneWragg Vs. Log OneWragg, Log:OneNXT.WAVJames Logan (3)Toby Veale + +1056743Max Werner (2)Dutch cellist, born 22 June 1928 in Utrecht, Netherlands; died 31 December 2010 in Leeuwarden, Netherlands.Needs VoteRadio KamerorkestHet Brabants OrkestCaecilia ConsortGaudeamus String QuartetSymphonie-Orchester UtrechtRadio Filharmonisch Orkest + +1056764Kenny JohnKenny JohnJazz drummer.Needs VoteJohnK. JohnKenny JohnsKenny JonesLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsPee Wee Erwin's Dixieland Band + +1056911Jonathan Williams (7)Jonathan WilliamsFormer Principal Horn of the Chamber Orchestra of Europe. Founding member of the Wind Soloists of the COE and of [a=The Gaudier Ensemble].Needs Votehttps://www.jonathanwilliams-horn.com/BBC Symphony OrchestraThe BT Scottish EnsembleThe Chamber Orchestra Of EuropeThe Gaudier EnsembleLift Music EnsembleOrchestra Città ApertaOrchestra Città Aperta Wind Ensemble + +1056912Celia NicklinClassical wind instrumentalist. +She was Principal Oboe in [a=The Academy Of St. Martin-in-the-Fields]. +Mother of [a=Rachel Gough] and mother-in-law of [a=Jaime Martín].Needs Voteシーリア・ニックリンEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Mozart PlayersThe Wind Virtuosi Of England + +1056913Christine MessiterBritish flutist.Needs VoteBBC Symphony OrchestraBournemouth Symphony OrchestraThe Military Ensemble Of London + +1056950Doriot Anthony DwyerDoriot Anthony Dwyer (March 6, 1922 in Streator, Illinois, USA - March 14, 2020 in Lawrence, Kansas, USA) was an American flautist, born. She was the principal flute for the [a=Boston Symphony Orchestra] from 1952 until 1990.Needs Votehttps://en.wikipedia.org/wiki/Doriot_Anthony_Dwyerhttps://www.stokowski.org/Boston_Symphony_Musicians_List.htm#DAnthony DwyerD. A. DwyerDoriot DwyerDoriot A. DwyerDoriot AntonyDoriot DwyerDwyerBoston Symphony OrchestraLos Angeles Philharmonic OrchestraBaltimore Symphony OrchestraNational Symphony Orchestra + +1057049Timothy Wilson (2)Countertenor vocalist. Also credited with alto vocals and as a falsettist.Needs VoteGabrieli ConsortThe Tallis Scholars + +1057050Adrian HillClassical vocalist.Needs VoteThe Tallis ScholarsPro Cantione Antiqua + +1057051Richard Edgar-WilsonRichard WilsonEnglish classical tenor.Needs Votehttps://www.richardedgar-wilson.com/Edgar-WilsonRichard E. WilsonRichard Edgar WilsonRichard Edgar-WilliamsRichard WilsonThe Cambridge SingersLondon VoicesThe Tallis ScholarsLa Chapelle RoyaleThe English Concert ChoirThe Harmonious Society Of Tickle-Fiddle Gentlemen + +1057052Michael LeesCountertenor / alto vocalist from the UK.Needs VoteMike LeesMagnificatOxford CamerataThe Tallis ScholarsThe SixteenPolyphonyThe Choir Of Westminster Abbey + +1057110Josef NeboisProf. Dr. phil. Josef NeboisAustrian classical keyboardist, organist, harpsichordist and university lecturer (* 15 Dezember 1913 in St. Pölten, Lower Austria; † 31 August 1981).Needs Votehttps://www.geni.com/people/Prof-Dr-phil-Josef-Nebois/477196Dr. Josef NeboisDr. Joseph NeboisJoseph NeboisOrchester Der Wiener StaatsoperVienna Pro Musica Orchestra + +1057146Anne QueffélecFrench pianist, born in Paris 17 January 1948.Correcthttp://en.wikipedia.org/wiki/Anne_Queff%C3%A9lechttp://www.bach-cantatas.com/Bio/Queffelec-Anne.htmAnne QueffelecQueffelecQueffélecアンヌ・ケフェレック + +1057176Thomas DausgaardDanish conductor, born 4 July 1963 in Copenhagen, Denmark.Needs Votehttp://thomasdausgaard.comhttps://en.wikipedia.org/wiki/Thomas_DausgaardDausgaardDausgardThomas Dausgaardeトーマス・ダウスゴー + +1057178Eva AnderGerman classical pianist and piano teacher (* 31 October 1928 in Dresden, German Empire; † 25 January 2004 in Dresden, Germany). +Married to [a1699500].Needs Votehttps://de.wikipedia.org/wiki/Eva_Ander + +1057180Florian PreySon of [a573239]. +Florian Prey (born 1959 in Hamburg) is a German opera singer (lyric baritone).Needs Votehttp://www.florianprey.de/ + +1057182David Mulvenna HamiltonBritish-Australian operatic tenor born March 22, 1960 in Scotland.Needs Votehttps://www.facebook.com/pg/David-Mulvenna-Hamilton-117489355108http://www.bach-cantatas.com/Bio/Hamilton-David-Tenor.htmhttps://en.wikipedia.org/wiki/David_Hamilton_(tenor)D. M. HamiltonDavid Hamilton + +1057183Haakon SchaubBaritone vocalist.Needs VoteH. Schaub + +1057187Norbert GrohClassical pianist.Correct + +1057191Gustavo DudamelGustavo Adolfo Dudamel RamírezVenezuelan conductor and violinist, born 26 January 1981 in Barquisimeto, Venezuela. + +He is the music director of the [a1221123] and the [a835190].Needs Votehttps://www.gustavodudamel.com/https://www.britannica.com/biography/Gustavo-Dudamelhttps://www.facebook.com/GDudamelhttps://www.imdb.com/name/nm2281593/https://soundcloud.com/gustavodudamelhttps://en.wikipedia.org/wiki/Gustavo_DudamelDudamel杜達美Simón Bolívar Symphony Orchestra Of Venezuela + +1057193Berliner SingakademieThe main choir of the Sing-Akademie zu Berlin is an oratorio choir, in which around eighty amateurs and amateurs, students and semi-professional singers are currently participating. The ensemble rehearses twice a week and gives concerts three to four times a year in churches and concert halls in Berlin. The choir, founded in 1791, sees itself not only as a concert choir, but - in accordance with its long tradition - also as an "art association for sacred music", as an institution supported by free Berlin citizens and as a musical academy with its own educational program. The choir has served the students of the University of the Arts as a training and examination ensemble since 2006. + +In addition to the well-known works of Western oratorio literature, the repertoire includes above all unknown compositions from the period between 1750 and 1850 (Telemann, C.P.E. Bach, Reichardt, Spohr, Marx) as well as contemporary works, which are often commissioned especially for the concerts of the choir ( Jörg Birkenkoetter, Luke Bedford, Katia Tchemberdji, Michael Wertmüller, Bo Wiget). A special concern is the combination of old and new music. + +Needs Votehttp://www.berliner-singakademie.de/https://www.sing-akademie.de/7-0-Hauptchor.htmlChorChor Der Berliner SingakademieChor Der Singakademie, BerlinDie Berliner SingakademieKammerchor Der Berliner SingakademieKammerchor der Berliner SingakademieMännerchorSing-Akademie Zu BerlinSingakademie BerlinMännerchor Der Berliner Singakademie + +1057194Antonia BourvéAntonia BourvéGerman soprano, born in Heidelberg.Needs Votehttp://www.antonia-bourve.de/home.htmA. BourvéBourvéVocalensemble Rastatt + +1057451Oralia DominguezOralia DomínguezMexican Mezzo-soprano & Contralto vocalist, born 25 October 1925 in San Luis Potosí, Mexico and died 25 November 2013 in Milan, Italy.Needs Votehttp://en.wikipedia.org/wiki/Oralia_Dom%C3%ADnguezDominguezO. DominguezOralia DomínguezOralio DominguezОралия Домингес + +1057595Eugene BeckerViola player +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +1057598Ryohei NakagawaBassoonist and arranger, born 1935 in Japan.Needs VoteReohey NakagawaRyohey NakagawaThe American Symphony OrchestraSan Francisco Symphony + +1057602George SilfiesAmerican clarinetist, saxophonist and keyboardist.CorrectGeorges SilfiesThe Cleveland OrchestraSaint Louis Symphony Orchestra + +1057609John SwallowAmerican trombonist, born 1924 in Oneida, New York and died 20 October 2012. Juilliard and Columbia. First trombone with the Utah Symphony in 1947. Symphony of the Air, Goldman Band, Boston Pops, Sadler's Wells, Chicago Symphony. NY Brass Quintet, NY City Opera, NY City Ballet.Needs VoteJohn ShallowJohn W. SwallowContemporary Chamber EnsembleChicago Symphony OrchestraThe New York Brass Quintet + +1058035Ulrich PhilippGerman flutistCorrectStaatskapelle DresdenDresdner BarocksolistenVirtuosi Saxoniae + +1058065Julie CooperSoprano vocalist.Needs Votehttps://thesixteen.com/team/julie-cooper/https://www.bach-cantatas.com/Bio/Cooper-Julie.htmJCGabrieli ConsortThe Choir Of The King's ConsortThe SixteenHuelgas-EnsemblePolyphonyThe Cardinall's MusickRetrospect Ensemble + +1058304Frances KellyClassical harpist.Needs Votehttps://thesixteen.com/team/frances-kelly/KellyNew London ConsortThe SixteenThe English Baroque SoloistsOrchestra Of The RenaissanceThe Consort Of MusickeGabrieli PlayersSonnerieThe King's ConsortBrandenburg ConsortEnsemble CordariaThe Praetorius ConsortArcangeloTheatre Of Early MusicInvocation (6) + +1058306Richard McNicolClassical flute player, conductor and educator.Needs VoteLondon Philharmonic OrchestraAthena Ensemble + +1058372Ulf RodenhäuserGerman clarinet player.Needs VoteHeinz RodenhäuserSymphonie-Orchester Des Bayerischen RundfunksEnsemble Villa MusicaOrchester Der Ludwigsburger SchlossfestspieleDie Deutschen Bläsersolisten + +1058373Ida BielerAmerican born classical violinist and teacher. Now based in Germany.Needs Votehttps://idabieler.com/BielerGürzenich-Orchester Kölner PhilharmonikerMelos QuartettEnsemble Villa MusicaXyrion TrioSister Strings + +1058540Michel BéroffPiano player Michel Béroff is born 1950 in France.Needs Votehttps://en.wikipedia.org/wiki/Michel_B%C3%A9roffhttps://www.bach-cantatas.com/Bio/Beroff-Michel.htmBeroffBéroffMichael BéroffMichel BeroffMichel Bérofベロフミシェル・ベロフ + +1058865Lorin BernsohnCellist. Member of the New York Philharmonic Orchestra from 1958 to 2000. +Passed away November 20, 2009.Needs VoteNew York Philharmonic + +1058867Emanuel BoderUkrainian born American violinist, died 7 February 2009 at the age of 81. He played for [a388185] from 1979 to 2006.Needs VoteЭ. БодерЭммануил БодерNew York PhilharmonicBoston Symphony Orchestra + +1058952Virgil (3)Publius Vergilius Maro Roman poet of the Augustan period, born 15 October 70 BC near Mantua, Cisalpine Gaul, Roman Republic, died 21 September 19 BC in Brundisium, Italy, Roman Empire.Needs Votehttp://en.wikipedia.org/wiki/VirgilPublio Vergilius MaroPublio Virgilio MaronePublius Vergilius MaroVergilVergiliusVergīlijsVirgileVirgilioVirgiliusVirgílioWergiliusz + +1058958Sir Walter RaleighSir Walter Raleigh (or Ralegh) (born c. 1552 – died on October 29, 1618) was an English writer, poet, soldier, courtier, and explorer.Needs Votehttps://en.wikipedia.org/wiki/Walter_RaleighRaleighSir W. RaleighW. RaleighWalter RaleighУ. Ралей + +1059539Karen KjeldsKaren Marie KjeldsDanish oboist, born in 1955.CorrectAalborg Symfoniorkester + +1059674Alberto SerpenteItalian classical horn player, active from the mid-1990s.CorrectOrchestra Del Maggio Musicale Fiorentino + +1059881Wain JohnstoneWain JohnstoneHard House/Hard Dance/Hard Trance/Hardstyle DJ & producer from Basingstoke, Hampshire, UK. +Former co-manager of digital label [l=AWsum Bounce]. +Contact: wainjohnstone@hotmail.comNeeds Votehttps://www.facebook.com/wainjohnstonehttps://soundcloud.com/wain-johnstonehttps://myspace.com/djwainjohnstonehttps://twitter.com/WainJohnstoneJohnstoneW. JohnstoneW.JohnstoneWain JohnstonRe-Lamin8ersThe Lamin8ers + +1060060Johann Friedrich KindGerman dramatist, born 4 March 1768 in Leipzig, Germany, died 24 June 1843 in Dresden, Germany.Correcthttp://en.wikipedia.org/wiki/Johann_Friedrich_KindF. KIndF. KindFr. KindFriedr. KindFriedrich KindJ. F. KindKindT. Kindvon Friedrich KindФ. КиндФр. Кинд + +1060234Bernhard SchneiderGerman tenor vocalist, born 1967 in EssenNeeds VoteSchneiderChor Des Bayerischen RundfunksSequentia (2) + +1060268Frank LopardoFormer American lyric tenor and Grammy award winning singer who turned fine artist and print maker.Needs Votehttps://franklopardoart.com/https://www.instagram.com/franklopardoart/https://en.wikipedia.org/wiki/Frank_Lopardohttps://www.naxos.com/person/Frank_Lopardo/4686.htmCornelius HauptmannLopardoフランク・ロパード + +1060429Erwin KretzschmarErwin Kretzschmar is a German classical bassoonistNeeds VoteRundfunk-Sinfonie-Orchester LeipzigRundfunk-Kammerorchester LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +1060931Oscar ChausowAmerican violinist and session musician, born 5 August 1915 in Chicago, Illinois and died 17 September in Salt Lake City, Utah.Needs Votehttps://csoarchives.wordpress.com/tag/oscar-chausow/Oscar ChasowOscar ChausovChicago Symphony OrchestraUtah Symphony OrchestraKansas City Philharmonic + +1060941Horst-Dieter KnorrnHorst-Dieter Knorrn is a German bass vocalist.Needs VoteDieter KnorrnRundfunkchor LeipzigThomanerchor + +1060985Rebecca LowViola player, born in Edinburgh.Needs VoteBecky LowBecky lowThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of London + +1060989Alison LawranceBritish cellistNeeds VoteAli LawranceAlison LawrenceBBC Scottish Symphony OrchestraSaltire String QuartetScottish Ensemble + +1061187Karl Friedrich MessGerman flutist (1921-2011).Needs Votehttp://de.wikipedia.org/wiki/Karl_Friedrich_MessK. F. MessK.F. MessRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterStuttgarter Solisten + +1061329Norbert SchmittGerman timpanist.Needs VoteNorbert SchmidtNorbert Schmitt-LauxmannEnglish Chamber OrchestraBamberger SymphonikerBachcollegium StuttgartWürttembergisches KammerorchesterKlassische Philharmonie Stuttgart + +1061330Wolfgang LäubinGerman trumpet player, born 7 March 1965 in Müllheim/Baden. Brother of [a=Hannes Läubin] and [a=Bernhard Läubin].Needs VoteWolfgangWolfgang LaubinRadio-Sinfonie-Orchester FrankfurtEnglish Chamber OrchestraSymphonie-Orchester Des Bayerischen RundfunksOrpheus Chamber OrchestraThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraBachcollegium StuttgartWürttembergisches KammerorchesterBundesjugendorchesterDeutsche Bläserphilharmonie (2) + +1061331Bernhard LäubinGerman trumpet player, born in 1959. Brother of [a=Hannes Läubin] and [a=Wolfgang Läubin].Needs VoteBenhardBerhard LäubinBernard LaubinBernhardBernhard LaubinEnglish Chamber OrchestraWürttembergisches KammerorchesterNDR SinfonieorchesterLandesjugendorchester Baden-WürttembergBundesjugendorchesterNDR Elbphilharmonie OrchesterHamburger BlechbläsersolistenLäubin Brass EnsembleDeutsche Bläserphilharmonie (2) + +1061332Hannes LäubinGerman trumpet player, born 1958 in Müllheim. Brother of [a=Wolfgang Läubin] and [a=Bernhard Läubin].Needs VoteHannesHannes LaubinProf. Hannes LäubinEnglish Chamber OrchestraSymphonie-Orchester Des Bayerischen RundfunksOrpheus Chamber OrchestraBachcollegium StuttgartWürttembergisches KammerorchesterNDR SinfonieorchesterFreiburger BarocksolistenBundesjugendorchesterGerman BrassHamburger BlechbläsersolistenLäubin Brass EnsembleBrass Quintet MünchenBRassensemble München + +1061986Harold GombergAmerican oboist, born 30 November 1916 in Malden, Massachusetts, USA and died 7 September 1985 in Capri, Italy. +He was the principal oboist of the New York Philharmonic from 1943 through 1977. +Brother of oboist [a1560593]. Husband of harpist/composer [a=Margret Brill] +Needs Votehttp://en.wikipedia.org/wiki/Harold_GombergH. GombergNew York PhilharmonicGomberg Baroque Ensemble + +1062013Jan KonopásekJan KonopásekCzech baritone saxophonist, flutist, composer, arranger, educator. Born December 29, 1931 in Prague (former Czechoslovakia); died November 13, 2020. Emigrated to West Germany in 1965, moved to the USA in 1971, US citizen since 1980. Partly returned to the Czechoslovakia in 1991. Founding member of [a=Studio 5 (2)] and [a=SHQ].Needs Votehttp://www.ceskyhudebnislovnik.cz/slovnik/index.php?option=com_mdictionary&action=record_detail&id=8549J. KonopásekJan KonopasekJan KonopasékJan KonopazcekSHQWoody Herman And His OrchestraSFB TanzorchesterWoody Herman & The Young Thundering HerdCzechoslovak Radio Dance OrchestraHans Koller Big BandJazzové StudioOrchestr Karla KrautgartneraStudio 5 (2)Studiový Orchestr Čs. RozhlasuWoody Herman And The Thundering HerdOliver Nelson And The "Berlin Dreamband"Jan Konopásek Se Svou Skupinou + +1062358Gerhart HetzelAustrian violinist and first concertmaster at the [a=Radio-Symphonie-Orchester Berlin] from 1963 to 1969, the [a=Wiener Philharmoniker] and [a=Orchester Der Wiener Staatsoper] from 1969 until 1992. + +Gerhart Hetzel was born 24 April 1940 and died 29 July 1992. +Needs VoteGerhard HetzelHetzelГерхард ХетцельГерхарт ХетцельRadio-Symphonie-Orchester BerlinOrchester Der Wiener StaatsoperWiener PhilharmonikerMünchener Bach-OrchesterWiener Kammerensemble + +1062375Larry McKennaLarry McKennaAmerican jazz saxophonist - born 1937 and died on November 19, 2023 in Wyndmoor, PA (aged 86)Needs Votehttp://www.allaboutjazz.com/php/musician.php?id=9272https://bootsiebarneslarrymckenna.bandcamp.com/L. McKennaL. MckennaLarry McKennsWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Fourth HerdThe Al Raymond Big BandThe David Leonhardt Jazz GroupFred Wackenhut QuartetThe Philadelphians (5)The Len Pierro Jazz OrchestraThe Mike Melito/Dino Losito Quartet + +1062420Jack Martin HändlerJack Martin Händler (30 August 1947 – 24 May 2023) was a Slovakian violinist and conductor.Needs Votehttps://en.wikipedia.org/wiki/Jack_Martin_H%C3%A4ndlerhttps://www.imdb.com/name/nm11658938/J. M. HändlerJack Marin HändlerOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester Hamburg + +1062622Emily Davis (2)Emily Davis-RobbBritish violinist and educator. +After studying with at [l=Chetham's School Of Music], she took up a scholarship place at [l527847]. Principal First Violin with the [a=City Of Birmingham Symphony Orchestra] (2014-2016). Associate Concertmaster of the [a=Bergen Filharmoniske Orkester] (2016-2018). For two years she was selected as Concertmaster of the [a=European Union Youth Orchestra]. No. 2 Second Violin with the [a=Philharmonia Orchestra] since 2004. Associate Leader with the [a=Royal Scottish National Orchestra] and Leader of the [a=Trondheim Symfoniorkester]. Professor of Violin at the [l1027160]. +Wife of [a=Andrew Robb].Needs Votehttp://www.emilydavisviolinist.com/https://twitter.com/edavis66?lang=enhttps://www.instagram.com/emilydavisviolin/https://www.helpmusicians.org.uk/creative-programme/supported-artists/emily-davis-1#:~:text=Violinist%20Emily%20Davis%20enjoys%20a,soloist%2C%20chamber%20and%20orchestral%20musician.&text=She%20also%20regularly%20performs%20concerts,concerto%20soloist%20around%20the%20country.https://www.thestrad.com/news/violinist-emily-davis-appointed-first-concertmaster-at-stavanger-symphony-orchestra/15394.articlehttps://www.euyo.eu/memberprofile?id=1187https://parnumusicfestival.ee/parnu-music-festival/artists/emily-davishttps://philharmonia.co.uk/bio/emily-davis/https://www.ram.ac.uk/news/emily-davis-robb-alumna-profilehttps://www.feenotes.com/database/artists/davis-emily/http://www.wimso.org.uk/news/2018/1/24/macmillan-soloist-emily-davis-tells-michael-archer-how-the-tchaikovsky-concerto-sparked-her-love-affair-with-the-violinhttp://enginesorchestra.com/2014/12/congratulations-emily-davis/Emily DaviePhilharmonia OrchestraCity Of Birmingham Symphony OrchestraRoyal Scottish National OrchestraEuropean Union Youth OrchestraScottish Chamber OrchestraBergen Filharmoniske OrkesterStavanger SymfoniorkesterTrondheim SymfoniorkesterLondon ConcertanteChroma (5)The Engines Orchestra + +1062624John Grimes (3)Percussionist (2 Feb 1946, Key West, FL - 8 Aug 2013, Newton, MA).Needs Votehttp://emmanuelmusic.org/who/spotlight/who_musician_spotlight_grimes.htmBoston BaroqueThe Handel & Haydn Society Of BostonBoston Early Music Festival Orchestra + +1062789Todd CoolmanAmerican jazz bassist, born 14 July 1954 in Gary, Indiana, USANeeds Votehttps://toddcoolman.me/Todd Coolman & TrifectaLionel Hampton And His OrchestraJames Moody QuartetHal Galper TrioBuddy DeFranco / Terry Gibbs QuintetTodd Coolman TrioThe James Moody And Hank Jones QuartetNadav Snir-Zelniker TrioScott Reeves Jazz Orchestra + +1063195David PremoDavid PremoAmerican cellistNeeds Votehttp://www.pittsburghsymphony.org/pso_home/biographies/musicians/premo-davidDavid T. PremoPremoNational Symphony OrchestraPittsburgh Symphony OrchestraThe United States Army Chamber OrchestraMembers Of The Pittsburgh Jewish Music FestivalThe National Gallery Orchestra + +1064269Dick ForestTrumpet player.CorrectGerald Wilson Orchestra + +1065000Orchestre Philharmonique De StrasbourgFrench philharmonic orchestra founded in 1855 and based in the City of Strasbourg.Needs Votehttps://philharmonique.strasbourg.eu/Choeur Et Orchestre Philharmonique De StrasbourgChœur Et Orchestre Philharmonique De StrasbourgFilharmonijski Orkestar Iz StrasbouraMunicipale De StrasburgoOrchestra Filarmonica Di StrasburgoOrchestra Filarmonica di StrasburgoOrchestre De StrasbourgOrchestre Philharmonicue De StrasbourgOrchestre Philharmonique de StrasbourgOrchestre Symphonique De StrassbourgOrquesta Filarmónica De EstrasburgoOrquesta Filarmónica De StrasburgoOrquesta Filarmónica de EstrasburgoOrquesta Filarmónica de StrasburgoPhilharmonic OrchestraPhilharmonic Orchestra Of StrasbourgPhilharmonic Orchestra of StrasbourgPhilharmonisch Orkest van StraatsburgPhilharmonisches Orchester StraßburgStrabourg Philharmonic OrchestraStrasbourd Philharmonic OrchestraStrasbourg POStrasbourg Philarmonic OrchestraStrasbourg PhilharmonicStrasbourg Philharmonic OrchestraStrasbourg Philharmonic OrchestreStrasbourgh Philharmonic OrchestraStrassbourg Philharmonic OrchestraThe Strasbourg Philharmonic OrchestraОркестр Страсбургской ОперыФилхармонијски Оркестар Из Стразбураارکسترنوازندگان فيلارمونيک استراسبورگストラスブール・フィルハーモニー管弦楽団Max JourdainAlain LombardBoris TonkovStephan WernerJean-Pierre SabouretJean-Marc PerrouaultIgor KellerRemy AbrahamIsabelle Van GinnekenRenaud LeippSylvie BrennerPhilippe LindeckerJean-Christophe MentzerGregory MassatClaude DucrocqPierre Cordier (2)Sandrine François (2)Ethica OgawaCharlotte JuillardAlexander SomovAnne ClayetteSébastien LentzNicolas MoutierSamika HondaOdile Simeon-DrevonLaurent LarceletVincent GilligRenaud BernadNicolas RamezStéphanie CorreRafael AngsterSamuel RetaillaudVictor GrindelSandrine PoncetSi LIMalgorzata CalvayracClement LoscoThomas Gautier (2)Ariane Lebigre + +1065420Pere RosClassical string instrumentalistNeeds VoteP. RosRosMusica Antiqua KölnHesperion XXEnsemble Helga WeberSchola Cantorum BasiliensisLinde-Consort + +1065421Karlheinz SteebClassical viola player (born 7 April 1945 in Meisenheim, Germany).Needs VoteK.H. SteepKarl SteebKarl-Heinz SteebWDR Sinfonieorchester KölnMusica Antiqua KölnCollegium AureumFreiburger BarockorchesterBalthasar-Neumann-EnsembleDas Salonorchester CöllnQuartett Collegium AureumMärkl-Quartett + +1065422Henk BoumanClassical keyboardist.Needs VoteMusica Antiqua Köln + +1065423Mihoko KimuraClassical violinist.Needs VoteMihoko JunghänelLes Arts FlorissantsMusica Antiqua KölnConcerto VocaleLa Petite BandeRicercar ConsortTafelmusik Baroque OrchestraLa Stravaganza KölnCappella ColoniensisBaroque Orchestra + +1065456Daniel AdniIsraeli pianist, born 6 December 1951 in Haifa, Israel.Needs Votehttps://en.wikipedia.org/wiki/Daniel_AdniAdniThe Solomon Trio + +1065788St. Petersburg Philharmonic OrchestraЗаслуженный коллектив России Академический симфонический оркестр Санкт-Петербургской филармонии (abbreviated — ЗКР АСО)The Academic Symphony Orchestra of the St. Petersburg Philharmonic is a symphony orchestra in St. Petersburg, the oldest symphony orchestra in Russia. +The main concert venue is the [l731129]. +Until 1993 it was called [b][a343871][/b]. + +Since January 2022, the chief conductor of the orchestra is [a3333462] (replaced [a555458] at this post). +Principal guest conductor - [a539272].Needs Votehttps://www.philharmonia.spb.ru/en/about/orchestra/zkrasof/about/https://ru.wikipedia.org/wiki/%D0%A1%D0%B8%D0%BC%D1%84%D0%BE%D0%BD%D0%B8%D1%87%D0%B5%D1%81%D0%BA%D0%B8%D0%B9_%D0%BE%D1%80%D0%BA%D0%B5%D1%81%D1%82%D1%80_%D0%A1%D0%B0%D0%BD%D0%BA%D1%82-%D0%9F%D0%B5%D1%82%D0%B5%D1%80%D0%B1%D1%83%D1%80%D0%B3%D1%81%D0%BA%D0%BE%D0%B9_%D1%84%D0%B8%D0%BB%D0%B0%D1%80%D0%BC%D0%BE%D0%BD%D0%B8%D0%B8https://en.wikipedia.org/wiki/Saint_Petersburg_PhilharmoniaMembers Of St. Petersburg Philharmonic OrchestraOrchestre De La Philharmonie De Saint-PétersbourgOrchestre De Saint PetersbourgPhilharmonisches Orchester St. PetersburgSaint Petersburg Philharmonic OrchestraSt Petersburg FCOSt Petersburg PhilharmonicSt Petersburg Philharmonic OrchestraSt Petersburg Philharmonic Orchestra (Leningrad)St. Petersburg Academic Philharmonic OrchestraSt. Petersburg Academic Symphony OrchestraSt. Petersburg PhilharmonicSymphony Orchestra Of Saint Petersburg PhilharmoniaThe Academic Symphonic Orchestra Of The St. Petersburg PhilharmonicThe St Petersburg Philharmonic OrchestraАкадемический Симфонический Оркестр Санкт-Петербургской ФилармонииЗаслуженный Коллектив России Академический Симфонический Оркестр Санкт-Петербургской Филармонииサンクトペテルブルク・フィルハーモニー交響楽団쌍트 페테르부르크 필하모니Leningrad Philharmonic OrchestraYuri TemirkanovAlexander BarantschikNikolai AlexeyevPavel Popov (4)Lev KlychkovSimon Kovarsky + +1065789Friedemann EngelbrechtRecording producer for classical music.Needs Votehttp://teldexstudio.wix.com/teldexstudio#!friedemann-engelbrecht/zoom/cx52/image_h3gFriedeman EngelbrechtFriedmann Engelbrecht + +1065803Joseph PereiraClassical percussionistNeeds VoteJoe PereiaJoe PereiraJoseph PareiraJoseph PerieraNew York PhilharmonicLos Angeles Philharmonic Orchestra + +1065804William BlossomBassist William Blossom joined the New York Philharmonic in 1975 and stayed with the orchestra until 2011, Has been a member of the Rochester Philharmonic Orchestra and the Milwaukee Symphony. He also performs with the Cicada Chamber Ensemble.Needs Votehttp://www.cicadaarts.org/Blossom%20Bill.htmNew York PhilharmonicRochester Philharmonic OrchestraMilwaukee Symphony Orchestra + +1065823Serge PoulainCredited as piano technicianNeeds VoteSerge Poulin + +1065827Perry LopezAmerican jazz guitarist and composer. +Born : July 22, 1931 in New York City, New York. +Died : February 14, 2008 in Beverly Hills, California. + +Perry worked with Benny Goodman, Charlie Rouse, Pete Rugolo, Julius Watkins, Eartha Kitt, Johnny Smith, and others. +CorrectLopezP. LopezBenny Goodman SeptetPete Rugolo OrchestraBenny Goodman OctetJulius Watkins Sextet + +1065866Chrichan LarsonHans Jörgen Chrichan LarsonSwedish classical cellist and composer, born January 4, 1956 in Stockholm. + +He is educated in Sweden, Italy, Switzerland and France, where in Paris he became a member of the Ensemble InterContemporain. + +He was elected a member of the Royal Swedish Academy of Music in June 2025.Needs VoteChrichan LarssonEnsemble IntercontemporainKammarensembleNTrio Des LyresKungliga Filharmonikerna + +1065868Manfred StilzGerman classical cellist + recorder player, born in Saarbrücken, Germany.Needs Votehttps://de-de.facebook.com/manfred.stilzhttps://www.schola-cantorum.com/index.php/fr/professeurs/violoncelle/73-stilz-manfredM. StilzManfred StiltzEnsemble Orchestral De ParisTrio Ravel + +1065941Herbert BlendingerAustrian violist and composer, born 3 January 1936 in Ansbach, Germany. Died May 15, 2020Needs Votehttp://www.herbert-blendinger.com/cms/3923/Home/BlendingerH. BlendingerHerbst BlendingerBamberger SymphonikerMainzer KammerorchesterThe Sinnhoffer Quartet + +1065942Werner GrobholzWerner GrobholzGerman violinist. +Born 20 April 1942 in Munich, Germany and died 16 February 2021. +Former concertmaster of the [a261451] in Kempe-Celibidache period. +In addition he has acquired an outstanding reputation as a chamber musician, such as with the Álvarez Piano Quartet (Álvarez Klavierquartett), which was founded in 1979. Numerous recordings as soloist, among others with the Academy of St. Martin in the Fields and as chamber musician document his extensive activity. + +Needs Votehttps://www.mphil.de/personen/werner-grobholz.htmlhttps://en.wikipedia.org/wiki/Werner_GrobholzMünchner PhilharmonikerMünchener KammerorchesterThe Sinnhoffer QuartetÁlvarez Klavierquartett + +1065943Ingo SinnhofferClassical violin and viola player, born 24 December 1936 in Berlin, Germany and died in 1995.Needs VoteIgor SinnhofferIngo SinnhoferИнго ЗиннхоферBayerisches StaatsorchesterMünchener Bach-OrchesterViktor Lukas ConsortThe Sinnhoffer QuartetSinnhoffer Kammerorchester MünchenStross-Quartett + +1065944Franz AmannGerman cellist.Needs VoteBayerisches StaatsorchesterThe Sinnhoffer QuartetMaté-Quartett + +1066081Orchestre De L'Opéra BastilleFrench orchestra of the Opéra national de Paris, based at the Place de la Bastille in Paris.Needs Votehttps://www.operadeparis.fr/artistes/orchestre-et-choeurs/orchestrehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/354665/Opera_de_Paris_Orchestrehttps://en.wikipedia.org/wiki/Orchestre_de_l'Op%C3%A9ra_national_de_ParisBastille Opera OrchestraBastille OrchesterOrchestra Of The BastilleOrchestreOrchestre De L'Opera BastilleOrchestre De L'Opéra De La BastilleOrchestre De L'Opéra-BastilleOrchestre De La BastilleOrchestre de L'Opéra de la Bastille,Orchestre de l'Opera de la BastilleOrchestre de la BastilleΟρχήστρα Της Όπερας Της ΒαστίληςОркестр Оперы Бастилияパリ・バスティーユ歌劇場管弦楽団パリ・バスティーユ管弦楽団Orchestre National De L'Opéra De Paris + +1066698Dub AllbrittenWilliam Dumas Allbritten Jr.American manager and songwriter, famous for his collaboration with [a=Ronnie Self] and [a=Brenda Lee]. He was born on December 26, 1916 in Murray, Kentucky to +William Dumas Allbritten and Viola Wilson Allbritten. He died on March 19, 1971 in Nashville, Tennessee. He is buried in Maplelawn Park Cemetery, Paducah, Kentucky.Needs VoteAbrittenAbrittonAibrittenAl BrittonAlbertonAlbritonAlbrittenAlbrittonAlbrittoyAlbrutonAllBrittenAllbritenAllbrittenAllbrittonBrittenD AllbrittenD. A.D. AbrittonD. AlbrittenD. AlbrittonD. AllbritenD. AllbrittenD. AllbrittonD. ArbrittonD.AbrittonD.AlbritonD.AlbrittonD.AllbrittenDub AbbritonDub AbrittonDub AlbertonDub AlbertsonDub AlbrinttonDub AlbritonDub AlbrittenDub AlbrittonDub AlibrittenDub AllbrittonDub AllbrittοnE. AllbrittenWilliam AllbrittonОльбриттен + +1066757Art St. JohnCorrectA. St. JohnSt. JohnJack Teagarden And His Orchestra + +1066758Blind Willie DunnSalvatore MassaroPseudonym used by [a=Eddie Lang] for recordings with African-American musicians (for example [a=Lonnie Johnson (2)]) in the 1920s and 30s when racial segregation was still in full effect.Needs VoteBlind Willie Dunn (Eddie Lang)DunnW. DunnEddie LangBlind Willie Dunn & His Gin Bottle Four + +1066759Clint GarvinNashville-based Jazz woodwind player active from the 1940s - 1970s. Brother of trumpeter [a=Karl Garvin]. +Needs VoteC GarvinClint GoruinJack Teagarden And His Orchestra + +1066760Jose GutierrezJoseph "Joe" GutierrezUS jazz violinist, trombonist, composer. +Born April 8, 1903, San Antonio, TX. - Jean. 9, 1990, Los Angeles, CA. + + Do NOT confuse with Cuban songwriter [a=Julio Gutierrez] +Needs VoteGutierrezGutierrozGuttierezJ. GutierrezJoe GutierrezJose GutierezJoseph GutierrezJosé GutierrezXavier Cugat And His OrchestraJack Teagarden And His OrchestraPaul Whiteman And His OrchestraHal McIntyre And His OrchestraPaul Whiteman & His Concert Orchestra + +1066761Hub LytleJazz saxophonist and composerNeeds VoteH. LytleHerbert "Hub" LytleLytleJack Teagarden And His OrchestraBilly Butterfield And His Orchestra + +1066763Tony GottusoJazz and session guitarist (also played banjo) who became active sometime in the mid-1930s. Grandfather of drummer [a326718]. +b. Feb. 2, 1917 in New York City, NYNeeds Votehttp://www.allmusic.com/artist/tony-gottuso-mn0001771728Anthony GottusoGuttusoT. GottuseTony GattusoTony GotussoTony GuttusoTonyGattusoArtie Shaw And His OrchestraPee Wee Erwin And His Dixieland All-StarsTeddy Tyle QuintetPee Wee Erwin's Dixieland EightArtie Shaw And His StringsPee Wee Erwin's JazzbandAll Star Rhythm Section + +1066764Cubby TeagardenClois Lee "Cubby" TeagardenAmerican jazz drummer and vocalist. +Born December 16, 1915 in Vernon, Texas, died Riverton?, NY, in 1969. +Brother of pianist [a2075039], trombonist and bandleader [a301372], and trumpeter [a307342].Needs Votehttps://www.tshaonline.org/handbook/entries/teagarden-clois-lee-cubbyhttps://musicianbio.org/clois-teagarden/'Cubby' TeagardenClois 'Cubby' TeagardenClois TeagardenClois TeagardenJack Teagarden And His Orchestra + +1066765John Anderson (14)Pianist.Needs VoteAndersonJack Teagarden And His Orchestra + +1066766Joe Watts (2)Credited as bassist.Needs VoteThe Little Ramblers + +1066767Mark Bennett (3)US jazz trombonist from the swing-era. + +CorrectBennettM. BennettMark BennetMark BennetttMax BennettArtie Shaw And His OrchestraJack Teagarden And His OrchestraBob Crosby And His OrchestraIsham Jones OrchestraArt Shaw And His New Music + +1066889Clive HowardViolistNeeds VoteRoyal Philharmonic OrchestraLondon MusiciGuildhall String Ensemble + +1066996Alan MorrisseyTrombone player.Needs VoteAlan MorisseyAllan MorriseyAllan MorrisseyAllan Stuart MorriseyAllen MorrisseyStan Kenton And His Orchestra + +1067818Nicky SweeneyIrish violinist.Needs VoteNiccola SweeneyNicky SweenyNicola SweeneyNicolas SweeneyIrish Chamber OrchestraNieuw Sinfonietta Amsterdam + +1067835Louis GuilbertFrench contrabassistNeeds VoteOrchestre National De L'Opéra De Paris + +1067868Peter WyrickAmerican cellist.Needs VoteSan Francisco SymphonyHiraga StringsThe Hiraga String Quartet + +1067869Amy HiragaAmy Hiraga-WyrickAmerican violinist.Needs VoteAmy Hiraga WyrickSan Francisco SymphonyOrchestra Of St. Luke'sHiraga StringsThe Hiraga String Quartet + +1067871Basil VendryesAmerican violist, conductor and teacher, born 1961 in New York, New York.Needs Votehttp://basilvendryes.com/New York PhilharmonicThe Colorado Symphony OrchestraSan Francisco SymphonyRochester Philharmonic Orchestra + +1068415Roger MontgomeryClassical hornist. +He studied at the University of York and at the Guildhall School of Music and Drama with [a857608]. He was a founder member and conductor of [a212302]'s ensemble, Jane's Minstrels, in 1988. Member of the Orchestra of the Royal Opera House, he regularly plays guest principal with many of the London orchestras and is principal horn of the Orchestra of the Age of Enlightenment, the Orchestra Revolutionaire et Romantique and the New Queen’s Hall Orchestra.Needs Votehttps://oae.co.uk/people/roger-montgomery/Covent GardenThe SixteenOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentScottish Chamber OrchestraHanover BandThe King's ConsortOrchestra Of The Golden AgeThe New Queen's Hall OrchestraThe Symphony Of Harmony And InventionArcangeloThe Music PartyClassical OperaEuropean Brandenburg EnsembleThe English ConcertJane's Minstrels + +1068769Marty BermanJazz saxophonist and bassoonistNeeds VoteM. BermanMartin BermanMartin J. BermanMarty BernmanTommy Dorsey And His OrchestraMarty Paich OrchestraBob Zurke And His Delta Rhythm BandClaude Thornhill And His OrchestraLouie Bellson OrchestraThe Frankie Capp Percussion GroupThe Jerry Fielding OrchestraDave Pell OctetBob Florence Big BandMarty Paich Big BandThe Buddy DeFranco Big BandThe Greig McRitchie Band + +1069320Andy FitzgeraldAmerican jazz musician (woodwind player (clarinet, flute, saxophone) and vocalist), born 1915/16, died April 7, 2003Needs Votehttps://de.wikipedia.org/wiki/Andy_FitzgeraldA. FitzgeraldAndrew FitzgeraldAndy FitzFitzgeraldGil Evans And His OrchestraClaude Thornhill And His OrchestraColeman Hawkins And His OrchestraJoe Mooney QuartetJack Sterling And His Quintet + +1069321Joe GalbraithEarly jazz banjoist.Needs VoteJean Goldkette And His Orchestra + +1069542Christophe GrindelFrench oboist and English horn player.Needs Votehttps://www.imdb.com/name/nm3608568/https://www2.bfi.org.uk/films-tv-people/4ce2bb15c808eChristophe GraindelOrchestre National De L'Opéra De Paris + +1069551Hermann KlemeyerGerman flautist, born 1943 in Bad Gandersheim, since the age of 24 he has been principal flutist, in Berlin, Bremen and now in München, and he is professor in Würzburg.Needs VoteBayerisches StaatsorchesterBerliner SymphonikerResidenz-Quintett München + +1069931Eberhard FinkeGerman classical cellist, born 19 May 1920 in Bremen and died 29 July 2016. +He studied with [a=Ludwig Hoelscher] and [a=Enrico Mainardi]. +First principal cellist with the [a=Berliner Philharmoniker] between 1950-1985.Needs VoteE. FinkeBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerPhilharmonia Ensemble Berlin + +1069942Charles GriffinTrumpet player.Needs VoteG. GriffenG. GriffinBenny Goodman And His Orchestra + +1070016Henry RowlandPianist.Correct"Hank" RowlandHank RowlandHenry W. RowlandCootie Williams And His Orchestra + +1070043Camilla KjøllNorwegian viola player, born 1984.Needs VoteCam KjøllCamilla KjølMs. Camilla KjollOslo Filharmoniske OrkesterOslo CamerataStrykekvartetten + +1070145James McCrackenAmerican operatic tenor. He was born 16 December 1926 in Gary, Indiana, USA and died 29 April 1988. He was married to [a3039964].Needs Votehttps://adp.library.ucsb.edu/names/330607J. McCrackenJames Mc CrackenMcCrackenДжеймс Мак-КрэкенДжеймс МаккрэкенThe Metropolitan Opera + +1070247Sem NijveenSamuel Nijveen né MozesJewish-Dutch jazz violinist, trumpeter, cellist and composer. + +Born September 24th, 1912 in Groningen, Netherlands. +Died April 21st, 1995 in Hilversum, Netherlands.Needs VoteS. NijveenSam NijveenSem NiveenSem NyveenJohn BrinkmanThe RamblersQuintet Johnny MeyerThe Sem Nijveen QuintetThe Sem Nijveen QuartetSem Nijveen With The “Radio Rhythm Club”Cor Steyn And His Rhythmic StringsDe Decca-MelodiansTrio Sem Nijveen + +1070253Harlan LeonardAmerican jazz clarinetist, saxophonist (alto, tenor and soprano), composer and bandleader. +Born : July 02, 1905 in Kansas City, Missouri. +Died : November 10, 1983 in Los Angeles, California. + +A professional musician from the age of 17, he joined [a=Bennie Moten]'s orchestra in 1923, where he led the reed section until 1931. + +In 1931, after Moten successfully hired a crew of new musicians (formerly known as "The Blue Devils"), Harlan Leonard and [a=Thamon Hayes] left the band. They soon formed the twelve-piece [b]Kansas City Skyrockets[/b], which included trumpeter [a=Ed Lewis], trombonist [a=Vic Dickenson], and pianist [a=Jesse Stone (2)]. The band was successful, but broke up in 1934 after disputes with the Chicago local of the American Federation of Musicians. + +Leonard then formed a new band, [b]Harlan Leonard and his Rockets[/b], a 14-piece orchestra (with Henry Bridges on tenor saxophone and [a=Fred Beckett] on trombone) that made the link between the Swing and Bop eras. Charlie Parker played in this band for five weeks, but was fired by Leonard for lack of discipline. The band broke up during the Second World War, and Leonard, in disgust, left professional music to work for the IRS on the West Coast.Needs Votehttps://en.wikipedia.org/wiki/Harlan_Leonardhttp://www.allmusic.com/artist/harlan-leonard-mn0000665778/biographyhttps://adp.library.ucsb.edu/names/109661H. LeonardHarlan LeanardHarlan Q. LeonardHarland LeonardHarlen LeonardLeonardLeonard-Culliver-RossBennie Moten's Kansas City OrchestraHarlan Leonard And His Rockets + +1070272Witold RudzińskiBorn March 14, 1913 in [url=https://pl.wikipedia.org/wiki/Siebież]Siebież[/url], died February 29, 2004 in Warszawa. Polish composer, musicologist and pedagogue.Needs VoteRudzinskiRudzińskiW. RudjinskiW. RudzińskiWitold RudzinskiВ. РудзиньскийOrkiestra Symfoniczna Filharmonii Narodowej + +1070462Eduard Erdmann (1896-1958): German pianist and composer.Needs VoteEdvard ErdmannErdmannProf. Eduard ErdmannЭрдман + +1070898Paweł PruszkowskiClassical percussionistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +1071226Ben KanterAmerican saxophone player and songwriter.Needs VoteB. KanterCanterKanterArtie Shaw And His Orchestra + +1071276Albert WolffFrench conductor and composer of Dutch descent (Paris, 19 January 1884 – 20 February 1970). +Conductor of [a448007] from 1928 to 1934.Needs Votehttp://en.wikipedia.org/wiki/Albert_Wolff_%28conductor%29https://adp.library.ucsb.edu/names/116406A. WolffAlbert WolfM. A. WolffM. Albert WolffMo. Albert WolffWolffアルベール・ヴォルフOrchestre De La Société Des Concerts Du ConservatoireOrchestre Du Théâtre National De L'Opéra-Comique + +1071292Gustave CharpentierFrench composer, born 25 June 1860 in Dieuze, France, and died 18 February 1956 in Paris, France.Needs Votehttps://en.wikipedia.org/wiki/Gustave_Charpentierhttps://adp.library.ucsb.edu/names/104222CharpentierCharpentiesG CharpentierG. CharpentierG.CharpentierGustav CharpentierM. Gustave CharpentierŠarpentjeГ. Шарпантье + +1071295Jerry HurwitzAmerican jazz trumpeterNeeds VoteJ. HurwitzJerry "Lloyd" HurwitzJerry HorowitzJerry Lloyd HurwitzJerry Lloyd (2)Henri Renaud BandGeorge Wallington's All StarsGerry Mulligan GroupGerry Mulligan New StarsBrew Moore All StarsGeorge Wallington SeptetBrew Moore Bop Boys + +1071394Angie CalleaAngelo J. CalleaTrombone player. 1928-2003. Nickname “Angie”Needs VoteA. CalleaAnge CalleaAnge CallenTommy Dorsey And His OrchestraArtie Shaw And His Orchestra + +1071895Joshua RanzAmerican clarinet player.Needs Votehttps://joshuaranz.com/John RanzJosh RanzLos Angeles Philharmonic OrchestraThe Los Angeles Chamber OrchestraPacific Symphony Orchestra + +1072691Frank RycroftRetired British classical hornist. Originally from Blackpool, Lancashire, England, UK.Needs Votehttps://www.linkedin.com/in/frank-rycroft-2a888478/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/ryecroft-frank/F. RycroftFrank RyecroftLondon Symphony OrchestraLondon Philharmonic OrchestraPhilip Jones Brass Ensemble + +1072693Tony TunstallAnthony TunstallFormer Principal Horn, [a855061].Needs VoteAnthony TunstallTony TunstalLes Reed And His OrchestraOrchestra Of The Royal Opera House, Covent GardenJohnny Keating And 27 Men + +1072719Michael DobsonBritish oboist, conductor, and educator, fl. 1960s. Born 1923 - Died 1992. +Principal Oboe with the [a=London Philharmonic Orchestra]. He taught at the [l527847] until 1984, when he was succeeded by [a=George Caird]. +First husband of [a=Dorothy Bond].Needs VoteLondon Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe London StringsBath Festival Chamber OrchestraBath Festival OrchestraLondon Baroque EnsembleThe Thames Chamber OrchestraThe Francis Chagrin Ensemble + +1072850Dino LatorreDrummer.CorrectD. LatorreD. LattoreDinoDino LatorDino LatoreDino LattoreDino Lattorre + +1073028Gavin EdwardsBritish classical horn player, born in Stansted.Needs VoteNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentHanover BandThe King's ConsortBrandenburg ConsortOrchestra Of The Golden AgeClassical OperaLondon Early OperaThe English ConcertThe MozartistsThe Illyria Consort + +1073030Prudence RaperAlto vocalist.Needs VoteThe Monteverdi ChoirThe English Concert Choir + +1073031Timothy TaylorBass vocalist.CorrectTimothy Armstrong TaylorTimothy Armstrong-TaylorThe Monteverdi Choir + +1073032Paul GrierBass vocalist.Needs VotePaul GreirMetro VoicesThe New College Oxford ChoirLondon VoicesThe Monteverdi ChoirPolyphony + +1073033Neil McLaren (2)Classical flautist.Needs VoteMcLarenNeil MaclarenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersHanover BandThe English Concert + +1073034Lynton BlackBass vocalist.Needs VoteThe Monteverdi ChoirChoir Of St. Margaret's, Westminster + +1073035Kathryn BurgessClassical viola player.CorrectOrchestre Révolutionnaire Et RomantiqueLondon Classical Players + +1073036Katie PringleClassical soprano.Needs Votehttps://www.bach-cantatas.com/Bio/Pringle-Katie.htmThe SixteenThe Monteverdi Choir + +1073037Katy TanseyClassical soprano.CorrectThe Monteverdi Choir + +1073038Tom Phillips (6)Tenor vocalist.Needs VoteTom PhilipsGabrieli ConsortHuelgas-EnsembleLa Chapelle RoyaleThe Monteverdi ChoirOrchestra Of The RenaissanceThe English Concert ChoirRetrospect Ensemble + +1073039Angela KazimierczukClassical soprano.CorrectThe Monteverdi Choir + +1073040Patricia HooperSoprano vocalist.CorrectThe Monteverdi Choir + +1073041Peter Mitchell (2)Tenor vocalist.CorrectThe Monteverdi Choir + +1073042Lynden CranhamClassical cellist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicThe New Symphonia + +1073043Susan AddisonClassical trombone and sackbut player, born 1955 in Louth, Lincolnshire. +Following studies of the trombone at the Royal College of Music, she joined the City of Birmingham Symphony Orchestra where she remained for four and a half years. She was a founder member of the Orchestra of the Age of Enlightenment and she also co-founded the ensemble His Majestys Sagbutts & Cornetts, of which she was a member for twenty-five years. She performs with other ensembles such as the Orchestre Révolutionnaire Et Romantique, the Academy Of Ancient Music, the Gabrieli Consort and Players and the Amsterdam-based Orchestra of the Eighteenth Century. +She additionally teaches at the Royal College of Music, the Royal Academy of Music, the Royal Northern College of Music, Trinity College of Music and the Birmingham Conservatoire.Needs Votehttps://en.wikipedia.org/wiki/Susan_Addisonhttp://www.morgensternsdiaryservice.com/WebProfile/addison_s_1852.shtmlAddisonSue AddisonCity Of Birmingham Symphony OrchestraThe Parley Of InstrumentsThe SixteenOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicPeasants AllOrchestra Of The Age Of EnlightenmentLondon Classical PlayersGabrieli PlayersThe King's ConsortOrchestra Of The 18th CenturyBaroque Brass Of LondonHis Majestys Sagbutts And CornettsEnsemble Plus UltraThe Symphony Of Harmony And InventionLondon Pro MusicaThe English Concert + +1073044Andrew DurbanClassical double bass player.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLondon Classical PlayersRaglan Baroque PlayersArmonico Consort + +1073045Susanna SpicerAlto vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Spicer-Susanna.htmThe Cambridge SingersThe Monteverdi ChoirThe English Concert Choir + +1073046Timothy LinesFreelance classical clarinetist, and Professor of Clarinet. +He studied at the [l290263] with [a730834]. From 1999 to 2003 he was Joint Principal & Principal Eb clarinet of the [a=London Symphony Orchestra] and was also chairman of the orchestra during his last year there. In September 2004 he was appointed section leader clarinet of the [a=City Of Birmingham Symphony Orchestra], a position he held until January 2006, when he left to focus on his freelance career. He has played on original instruments with [a=The English Baroque Soloists], the [a=Orchestre Révolutionnaire Et Romantique] and the [a=Orchestra Of The Age Of Enlightenment]. Principal Clarinet with the [a=London Mozart Players]. Professor of Clarinet at the [l527847], the Royal College of Music, and the [l925143].Needs Votehttps://open.spotify.com/artist/4lS8bC03vwkqoM198nw451https://www.rcm.ac.uk/woodwind/professors/details/?id=01333https://www.ram.ac.uk/people/timothy-lineshttps://www.rwcmd.ac.uk/staff/timothy-linesTim LinesLondon Symphony OrchestraLondon SinfoniettaCity Of Birmingham Symphony OrchestraOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsLondon Mozart PlayersOrchestra Of The Age Of EnlightenmentThe London Scratch OrchestraThe John Wilson OrchestraYoung Musicians Symphony OrchestraColin Currie Group + +1073047Karen FodorAlto vocalist.Needs VoteThe Monteverdi ChoirVoci AnǵeliParthenia XII + +1073049Ruth AlfordBritish classical cellist.Needs Votehttp://www.revolutionarydrawingroom.com/people/ruth-alfordOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentHanover BandThe Revolutionary Drawing Room + +1073050Natanya HaddaAlto vocalist.Needs Votehttps://www.facebook.com/natanya.haddahttps://www.linkedin.com/in/natanya-hadda-44089274/https://www.bach-cantatas.com/Bio/Hadda-Natanya.htmNatania HaddaThe Choir Of The King's ConsortThe Cambridge SingersThe Monteverdi ChoirTaverner ChoirChoir Of St. Margaret's, Westminster + +1073051David BlackadderClassical trumpeter.Needs Votehttps://www.davidblackadder.com/https://aam.co.uk/david-blackadder/David Blackadder, TrumpetThe Scholars Baroque EnsembleCity Of London SinfoniaThe SixteenOrchestre Révolutionnaire Et RomantiqueCollegium VocaleThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe King's ConsortOrchestra Of The Golden AgeDunedin ConsortThe Symphony Of Harmony And InventionEuropean Brandenburg EnsembleThe Mozartists + +1073052Judith TreggorClassical flautist.CorrectOrchestre Révolutionnaire Et RomantiqueLondon Classical Players + +1073053Ivan SharpeTenor vocalist.CorrectSharpeThe Monteverdi Choir + +1073054Stephen RouseClassical violinist.Needs VoteSteven RouseOrchestre Révolutionnaire Et RomantiqueCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLondon Classical PlayersThe Mozartists + +1073055Pamela MunksClassical violinist.CorrectPam MunksOrchestre Révolutionnaire Et RomantiqueLondon Classical PlayersHanover Band + +1073058Caroline FfordeAlto vocalist.Needs VoteThe Monteverdi ChoirThe Schütz Choir Of London + +1073059Anne SchumannGerman classical violinist, born 1966 in Dohna, Dresden.Needs Votehttp://www.anneschumann.info/Anna SchumannAnne SchumanChursächsische Capelle LeipzigOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe King's ConsortOrchestra Of The Golden AgeLes Amis De PhilippeOrchester Der Ludwigsburger SchlossfestspieleTelemannisches Collegium MichaelsteinCapella De La TorreHimlische CantoreyFestspielorchester GöttingenThe English ConcertLe Concert BriséCapella Vitalis BerlinDie Musicalische Schlemmerey + +1073060Cecelia BruggemeyerClassical double bass player.Needs VoteCecelia BruggenmeyerCecelia BruggermeyerCecilia BruggemeyerLa SerenissimaOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentGabrieli PlayersBrandenburg ConsortArcangeloClassical OperaThe Mozartists + +1073061Susanna MurraySoprano vocalist.CorrectSuzanna MurrayThe Monteverdi Choir + +1073062Shelley Ann EverallSoprano vocalist.CorrectShelley EverallThe Monteverdi Choir + +1073063Jennifer HigginsAlto vocalist from the Wirral. Needs VoteThe Monteverdi ChoirThe Wirral Singers + +1073064Roger FoxwellClassical violinist.Needs VoteOrchestre Révolutionnaire Et RomantiqueBournemouth Symphony Orchestra + +1073065Caroline StormerAlto vocalist.Needs VoteLondon VoicesThe Monteverdi ChoirTaverner Choir + +1073066Philip TurbettClassical bassoonist.Needs VotePhilipp TurbettNew London ConsortOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentGabrieli PlayersThe King's ConsortThe Ebony QuartetThe English ConcertThe Mozartists + +1073067Christopher HindClassical percussionist.CorrectChris HindBBC Symphony OrchestraOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicLondon Classical PlayersThe English Concert + +1073068Shauna BeesleySoprano vocalist.Needs VoteThe Monteverdi ChoirThe English Concert Choir + +1073069Sarah StreatfeildClassical violinist.Needs VoteSarah StreatfieldLondon Philharmonic OrchestraOrchestre Révolutionnaire Et Romantique + +1073070Colin Campbell (3)Baritone and bass vocalist +Not to be confused with tenor vocalist [a10194685].Needs Votehttps://www.bach-cantatas.com/Bio/Campbell-Colin.htmMetro VoicesThe Monteverdi ChoirEx Cathedra Chamber ChoirThe King's ConsortTenebrae (10) + +1073073Jennifer GodsonClassical violinist. +Assistant Principal 2nd Violin of [a=The Academy Of St. Martin-in-the-Fields], an orchestra of which she has been a member since 1985. She has also been a member of the [a=Academy Chamber Ensemble] since 2006. She has been Principal 2nd Violin of the London Mozart Players since 1992. In the period instrument field, she is a member of the [a=Orchestra Of The Age Of Enlightenment] where she is normally co-leader or No 3, occasionally leading when required. She is also sub-leader of [a=John Eliot Gardiner]'s [a=Orchestre Révolutionnaire Et Romantique].Needs Votehttps://maslink.co.uk/client-directory?client=GODSJ1&instrument=VIOLI1Jenny GodsonThe Academy Of St. Martin-in-the-FieldsOrchestre Révolutionnaire Et RomantiqueLondon Mozart PlayersOrchestra Of The Age Of EnlightenmentFairfield QuartetYoung Musicians Symphony OrchestraAcademy Chamber Ensemble + +1073074Meyrick AlexanderBritish classical bassoon player and professor, born 18 May 1952. +He studied at the [l290263]. He was a member of the [a861263], before joining the [a1765480] in 1971, as 3rd Bassoon. Two years later, he moved to [a1979861], as 2nd Bassoon, where he formed the [b]Aquilo Wind Quintet[/b]. He then spent a year in his first principal position with the [a1260606], before joining the [a=Philharmonia Orchestra] in 1980 as Principal Bassoon, holding this position util the summer of 2010. Member of the [b]Classical Wind Quintet[/b] and Principal Bassoon of [a=The London Chamber Orchestra]. He was Professor of Bassoon at [l305416] (1984-?), and Head of Woodwind at the [l925143] (2010-?). Professor of Bassoon at the [l527847].Needs Votehttps://www.facebook.com/meyrick.alexanderhttps://www.youtube.com/channel/UCfd6YPaRuc_i_uxkbvE-aUAhttps://en.wikipedia.org/wiki/Meyrick_Alexanderhttps://www.feenotes.com/database/artists/alexander-meyrick-18-may-1952-present/https://www.principalchairs.com/flute/meyrick-alexander-interview-may-13/https://www.ram.ac.uk/people/meyrick-alexanderhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/89-meyrick-alexander/https://www.imdb.com/name/nm2763658/Philharmonia OrchestraThe London Chamber OrchestraOrchestre Révolutionnaire Et RomantiqueNational Youth Orchestra Of Great BritainNorthern SinfoniaRoyal Ballet SinfoniaBBC Northern Symphony OrchestraThe Philharmonia Soloists + +1073075Belinda YatesClassical soprano.Needs VoteThe Monteverdi ChoirThe English Concert Choir + +1073076Rachel WheatleySoprano vocalist.Needs VoteRachael WheatleyThe Monteverdi ChoirTaverner Choir + +1073079Simon Edwards (3)Tenor vocalist.CorrectEdwardsThe Monteverdi Choir + +1073080Anna McDonald (2)Australian classical violinist. +She obtained her degree from the Canberra School of Music, under [a1871531]. She then studied violin at the Guildhall School of Music and Drama in London with David Takeno and learned baroque violin from [a836114], [a836744] and [a836896]. +She played with many British orchestras and chamber groups such as the English Concert, Orchestra of the Age of Enlightenment, English Baroque Soloists, Purcell Quartet, I Fagiolini, London Baroque, London Classical Players and King’s Consort. She became leader of the Gabrieli Consort, Hanover Band and Newcastle-based Avison Ensemble. +In 1998 she returned to Australia where she founded the Sirius Ensemble with [a2024856], and this ensemble expanded into the orchestra for Pinchgut Opera, for which she has lead many productions. She also leads the ABC recording orchestra Sinfonia Australis, and its baroque arm the Orchestra of the Antipodes. She has played with the Australian Chamber Orchestra (including as leader), the Ensemble of the Classic Era and Ludovico’s Band.Needs Votehttps://music.cass.anu.edu.au/people/anna-mcdonald-0Anna MacDonaldOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsGabrieli PlayersHanover BandAustralian Chamber OrchestraLudovico's BandOrchestra Of The AntipodesTerzettoSinfonia AustralisEnsemble Of The Classic EraThe English Concert + +1073083Frances JellardEnglish-born alto vocalist.Needs Votehttps://francesjellard.wordpress.comThe Scholars Baroque EnsembleThe Cambridge SingersThe Monteverdi Choir + +1073084Elaine PearceClassical soprano.CorrectBlaine PearceThe English Chamber ChoirThe Monteverdi Choir + +1073085Paul Bradley (5)Tenor vocalist.Needs VoteThe Monteverdi ChoirBirmingham Cathedral Choir + +1073086Jane ButlerClassical soprano.CorrectThe Monteverdi Choir + +1073088Mark Warden (2)Tenor vocalist.Needs VoteAtlanta Symphony ChorusThe Monteverdi ChoirAtlanta Symphony Orchestra Chamber Chorus + +1073089Peter Bassano(1945 – 1 February 2025) British (from Waddesdon, Buckinghamshire, England) classical trombone & sackbut player, conductor, author, and Professsor of Trombone, descended from a family of Venetian musicians brought to England by Henry Vlll. +He studied at the [l290263] (1965-1968). In 1973, he joined the [a=Philharmonia Orchestra] being a member for 27 years. Five years later, he formed, and was trombonist and Artistic Director of the brass quintet, [a=Equale Brass]. Music Director of the [b]Wendover Choral Society[/b] (since January 2001), [b]Oxford University Sinfonietta and Brass Band[/b] (since June 2009), the [b]City of Rochester Symphony Orchestra[/b] (since June 2009), and the professional choir [url=https://www.discogs.com/artist/4564791-Gentlemen-Of-The-Chappell]The Gentlemen of the Chappell[/url]. +Bassano returned to the Royal College of Music as professor of trombone in 1978, he was appointed Head of Brass Faculty and Staff Conductor in 1993, a position he held until 2004. +In November 2020, Bassano published his first book "Shakespeare and Emilia".Needs Votehttps://www.facebook.com/peter.bassano.3https://twitter.com/peterbassanohttps://www.linkedin.com/in/peter-bassano-233b9310/?originalSubdomain=ukhttps://www.musicteachers.co.uk/teacher/67704ba26d3bad39e568https://en.wikipedia.org/wiki/Peter_Bassanohttp://www.trombone-usa.com/bassano_peter_bio.htmhttp://www.besses.co.uk/members/previous-members/item/31-bassano-peterPhilharmonia OrchestraOrchestre Révolutionnaire Et RomantiqueGabrieli PlayersBesses O' Th' Barn bandEquale BrassHis Majestys Sagbutts And CornettsSixteen Trombones Of Seven London Orchestras + +1073090Jane GillieClassical violinist.Needs VoteOrchestre Révolutionnaire Et RomantiqueThe English Baroque Soloists + +1073091Miranda FulleyloveClassical violinist, born in Hampshire, UK.Needs Votehttps://www.linkedin.com/in/miranda-fulleylove-96a130b8/Miranda Fulley LoveMiranda FullyloveLondon SinfoniettaOrchestre Révolutionnaire Et RomantiqueOrchestra Of The Age Of EnlightenmentThe Symphony Of Harmony And InventionDivertimenti + +1073253Fred WinterSten Arvid Wilhelm NjurlingSwedish composer and band leader. Born in Stockholm January 30, 1892 and died in Stockholm May 16, 1945. + +Sten Njurling took the pseudonym Fred Winter in 1915 as he thought his real name would be too difficult to pronounce abroad. During the 1920s Winter became one of the leading composers in Swedish popular music. In 1927 he was appointed recording supervisor for [l280605].Needs Votehttp://sok.riksarkivet.se/SBL/Presentation.aspx?id=8141https://sv.wikipedia.org/wiki/Sten_Njurlinghttps://adp.library.ucsb.edu/names/107653https://adp.library.ucsb.edu/names/211175F. WinterF. WintherFr. WinterFred WintherFred. WinterFred. WintherVintherWinterWintherIgor BorganoffFred Winter Och Hans OrkesterFred Winters DansorkesterFred Winters TivoliorkesterFred Winters TrioFred Winter And His Sailor BoysFred Winters Danskvartett + +1073315Dan Perry (2)Guitar player working with [a=Billie Holiday] and member of [a=Bob Haggart And His Orchestra]Needs VoteDanny PerryBob Haggart And His Orchestra + +1073422Dale FairbairnDale FairbairnNeeds VoteD. FairbairnD.FairbairnButcher BoyOmega 3 + +1074121Cristina CappelliniCristina Anna Sabrina CappelliniItalian vocalist.Needs VoteKristina KappelinCoro dell'Accademia Nazionale di Santa Cecilia + +1074286Roy RichardRoy Billy RichardUS doo wop singer, songwriter. Born November 11th, 1933 in Ohio - Died October 18th, 1975 in Orange City, California +Brother of [a=Billy Richard (2)]Needs VoteR. RichardR. RichardsR.RichardRichardRoy RichardsThe RobinsThe Ding Dongs (2)The Nic Nacs + +1074805Katrine BundgaardClassical violist.Needs VoteKatrine Reinhold BundgaardDR SymfoniOrkestretAthelas String Quartet + +1074934Martin FieldClassical contrabassoon player and professor. +He graduated from the [l527847]. He was offered the position of principal contra bassoonist at the [a=Hallé Orchestra] in 1995. Principal contra bassoonist at the [a=Orchestra Of The Royal Opera House, Covent Garden]. Professor of Contrabassoon at the [l290263].Needs Votehttps://www.thetimes.co.uk/article/fine-tuning-for-a-career-in-music-sn0zgn9wx6thttps://www.rcm.ac.uk/woodwind/professors/details/?id=01572https://www.aims.cat/es/aims-festival/artistas/martin/London Symphony OrchestraHallé OrchestraPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenThe Albion EnsembleEnsemble 360 + +1075201Adrian BleyerClassical violinist.Needs VoteStaatskapelle DresdenWDR Sinfonieorchester KölnMusica Antiqua KölnConcerto KölnWDR String Ensemble KölnEnsemble 1700Sequenza String OrchestraCompagnia Di PuntoWrocławska Orkiestra Barokowa + +1075205Colin HarrisonClassical violinist.CorrectGürzenich-Orchester Kölner PhilharmonikerWDR String Ensemble Köln + +1075206Bernhard OllGerman violist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerWDR String Ensemble KölnFrankfurter Opern- Und MuseumsorchesterMärkl-QuartettKölner Streichsextett + +1075220Ursula Maria BergGerman violinist.CorrectGürzenich-Orchester Kölner PhilharmonikerWDR String Ensemble KölnCalamus Ensemble + +1075221Dirk OtteGerman violinist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerWDR String Ensemble KölnBundesjugendorchester + +1075222George HeimbachGeorg HeimbachGerman cellist.Needs VoteGeorg HeimbachGürzenich-Orchester Kölner PhilharmonikerWDR String Ensemble KölnNiedersächsisches Staatsorchester HannoverGürzenich Cello Trio + +1075365William AllsopWilliam M. AlsopJazz alto saxophonist, born October 23, 1905 in West Philadelphia, Pennsylvania.Needs VoteWilliam AlsopWilliams AlsopFats Waller & His Rhythm + +1075366Nathaniel Williams (2)Trumpet and cornet playerNeeds VoteNat WilliamsNathaniel "Courtney" WilliamsFats Waller & His RhythmDouglas Williams & His Orchestra + +1075368George RobinsonJazz trombonist from the Big Band Area + +For the songwriter of "Hold Tight - Hold Tight", see [a=George Robinson (18)]Needs VoteFats Waller & His RhythmRoy Eldridge And His Orchestra + +1075369John HaughtonUS jazz trombonist from the swing-era. + +Needs VoteJohn "Shorty" HaughtonJohn Shorty HaughtonShorty HaughtonFats Waller & His RhythmBenny Carter And His OrchestraZutty Singleton's Creole BandElla Fitzgerald And Her Famous OrchestraWillie Bryant And His Orchestra + +1076877François CharruyerFernch bassoonist.Needs VoteFrançois CharuyerФрансуа ШаррюэрLe Concert SpirituelLes Musiciens Du LouvreCafé ZimmermannEnsemble PhilidorEnsemble MatheusEnsemble A Venti + +1076878Pablo ValettiClassical violinist.Needs VoteP. ValettiValettiПабло ВалеттиPulcinellaConcerto KölnLa Capella Reial De CatalunyaLe Concert Des nationsLes Musiciens Du LouvreHespèrion XXICafé ZimmermannEnsemble ElymaI Febi ArmoniciArcadia EnsembleIl Complesso BaroccoStylus PhantasticusBasel ConsortThe Rare Fruits CouncilLes Boréades De MontréalRincontro + +1076879David PlantierClassical violinist.Needs VoteD. PlantierPlantierАмандина БейерДавид ПлантьеConcerto VocaleEnsemble 415Le Concert Des nationsLe Concert D'AstréeHespèrion XXICafé ZimmermannSchola Cantorum BasiliensisCapriccio StravaganteArcadia EnsembleLa Cetra Barockorchester BaselAmarillisLa RisonanzaLes Plaisirs Du ParnasseCapellantiquaDuo Tartini + +1076880Paula WaismanClassical violinist.Needs VoteПаула ВайсманLe Concert Des nationsLes Musiciens Du LouvreCafé ZimmermannEnsemble ElymaRicercar ConsortPygmalionEnsemble Claroscuro + +1076881Farran JamesClassical violinist.Needs VoteF. JamesФарран ДжеймсLe Concert Des nationsLes Violons du RoyCafé ZimmermannAl Ayre EspañolMetamorphosen Chamber Orchestra + +1076889Jean-Marc PhilippeFrench oboist.Needs VoteЖан-Марк ФилиппPulcinellaLes Folies FrançoisesLe Concert D'AstréeCafé ZimmermannRicercar ConsortEnsemble PhilidorLe Cercle De L'HarmonieB'Rock OrchestraLe Banquet CélesteLa Petite SymphonieEnsemble A Venti + +1076890Amandine BeyerAmandine BeyerAmandine Beyer (Aix-en-Provence, 1974) began her musical career at the age of four. Her first instrument was the recorder, but she soon discovered the violin. At the age of fifteen, she was admitted to the prestigious Conservatoire National Supérieur de Musique de Paris, and during her studies she wrote a master's dissertation on [a32190]. After graduating as a musicologist in 1996, she continued her development at the [a1372753] in Basel, under the direction of the Swiss conductor and violinist [a845160]. In 1998, she won the Premio Bonporti prize and the special jury prize at the International Baroque Violin Competition in Rovereto with her ensemble [a2216295]. Beyer has developed into a renowned interpreter of the Baroque violin repertoire. Since 2000, she has performed as a soloist at international festivals and concert halls. With her own ensemble [a3648544], she was praised by critics for the recording of Sonatas & Partitas (2012) by Johann Sebastian Bach. Her fascination with Bach was shared with dance artists [a4373753] and Boris Charmatz, who involved her as a violinist in their intimate performance Partita 2 (2013). Apart from her own ensemble, Beyer is affiliated with various companies, including [a3949292]. She also regularly appears on stage as a duo with [a960947], [a2039428] or Laurence Beyer. Her other passion is teaching. As a teacher, she is involved with the Escola Superior de Música e Artes do Espectáculo in Porto and gives masterclasses worldwide. Since 2010, she has taught baroque violin at her own former training institute, the Schola Cantorum Basiliensis in Basel.Needs Votehttp://www.amandinebeyer.com/A. BeyerAmadine BeyerАмандина БейерConcerto SoaveCafé ZimmermannVenice Baroque OrchestraArcadia EnsembleL'Assemblée Des Honnestes CurieuxStylus PhantasticusEnsemble La FeniceGli IncognitiLes Cornets Noirs + +1076891Diane ChmelaClassical viola player.Needs VoteДиана ШмелаIl Seminario MusicaleLe Concert D'AstréeLes Musiciens Du LouvreCafé ZimmermannOpera FuocoLa Petite Symphonie + +1076893Ludek BranyDouble bass player.Needs VoteLudek BranýLuděk BranýЛюдек БраныFreiburger BarockorchesterCafé ZimmermannCollegium MarianumCollegium 1704La Cetra Barockorchester BaselNova StravaganzaPygmalionAmphion Bläseroktett + +1077175Christopher PageBorn in 1952. Founder and director of [a=Gothic Voices (2)]. Expert on medieval music, instruments and performance practice.Needs Votehttp://en.wikipedia.org/wiki/Christopher_PagePageProf. Christopher PageThe Consort Of Musicke + +1077224Briony ShawViolinistNeeds VoteBryony ShawThe Academy Of St. Martin-in-the-FieldsMichaelangelo Chamber Orchestra + +1077226Joe RappaportClassical violinistNeeds VoteJoseph RappaportThe Chamber Orchestra Of EuropeGefilte Fish (2) + +1077504Emma SavouretFrench classical cellistNeeds VoteOrchestre National De FranceNouvel Ensemble Instrumental Du Conservatoire National Supérieur De Paris + +1077671Jimmy Van Heusen And Johnny BurkeAmerican songwriting duo.Needs VoteB. Heusen - V. HeusenB. V. HousenBourke/Van HeusenBrook, Van HeusenBrubeck-Van HeusenBruke - Van HeusenBruke/V. HeusenBruke/v. HeusenBurk - Van HeusenBurk Johnny, Van Heusen JimmyBurk-Van HeusenBurk/Van HeusenBurkeBurke - Van HeusenBurke Van HeusenBurke & HeusenBurke & V. HensenBurke & Van HeusenBurke & Van Heusen, Inc.Burke & VanheusenBurke & van HeusenBurke - HeusenBurke - Jimmy Van HeusenBurke - Van HausenBurke - Van HensenBurke - Van HeusdenBurke - Van HeusenBurke - Van HeusonBurke - Van HuesenBurke - Van HusenBurke - Van/HeusenBurke - VanHeusenBurke - van HeusenBurke - von HeusenBurke -Van HeusenBurke / HeusenBurke / Van HeusenBurke / Van HuesenBurke / VanHeusenBurke / van HeurenBurke / van HeusenBurke And Van HausenBurke And Van HeusenBurke And van HeusenBurke Van HeusenBurke Van HusenBurke Van-HeusenBurke Y Van HeusenBurke and Van HeusenBurke and VanHeusenBurke y Van HeusenBurke – Van HeusenBurke — Van HeusenBurke, HeusenBurke, J. / Van Heusen, J.Burke, Jimmy van HeusenBurke, Johnny / Van Heusen, JimmyBurke, Van HausenBurke, Van HeusenBurke, Van HeusonBurke, Van HeussenBurke, Van HuesenBurke, VanHeusenBurke, VanhensenBurke, van HeusenBurke, von HeusenBurke,Van HeusenBurke- Van HeusenBurke-HeusenBurke-HeussenBurke-HuesenBurke-V.HeusenBurke-Van HausenBurke-Van HesusenBurke-Van HeusenBurke-Van Heusen*Burke-Van HeusonBurke-Van HeussenBurke-Van HewsinBurke-Van HuesenBurke-Van HusenBurke-VanHeusenBurke-VanHusenBurke-VanheusenBurke-van HeusenBurke-van HeussenBurke-y Van HeusenBurke. Van HeusenBurke/ Van HeusenBurke/ VanheusenBurke/ van HausenBurke/Can HeusenBurke/HeusenBurke/J. Van HeusenBurke/V. HeusenBurke/Van HausenBurke/Van HeusenBurke/Van HeuserBurke/Van HuesenBurke/Van-HeusenBurke/VanHeusenBurke/VanHuesenBurke/VanheusenBurke/an HeusenBurke/v.HeusenBurke/van HeusenBurke; Van HeusenBurke; VanHeusenBurken- Van HeusenBurker - Van HeusenBurke—Van HeusenBurke―Van HeusenBurkre-Van HeusenBurks, Van HeusenBurtke, Van HeusenEdward Chester "Jimmy van Heusen" Babock, John BurkeGurke/Van HeusenH. V. Heussen-J. BurkeHensen - BurkeHensen/BurkeHeusenHeusen & BurkeHeusen - BurkeHeusen - Van BurkeHeusen / BurkeHeusen y BurkeHeusen, BurkeHeusen-BurkeHeusen/BurkeHeusen; BurkeI. Heusen - J. BurkeJ .VanHeusen-J. BurkeJ BurkeJ Van Heusen & J BurkeJ Van Heusen - J BurkeJ Van Heusen / J BurkeJ Van Heusen/J BurkeJ Van HuesenJ, V, Heusen - J. BurkeJ, Van Heusen And J. BurkeJ. Berk-Van HeusenJ. Bourke,-J. Van HeusenJ. Buke-J. Van HeusenJ. BurkeJ. Burke & J. Van HeusenJ. Burke & J. VanheusenJ. Burke & James Van HeusenJ. Burke , J. Van HeusenJ. Burke , J. van HeusenJ. Burke - J. V. HeusenJ. Burke - J. Van - HeusenJ. Burke - J. Van HeusenJ. Burke - J. Van HeuserJ. Burke - J. Van HeussenJ. Burke - J. VanHeusenJ. Burke - J.V. HeusenJ. Burke - James Van HeusenJ. Burke - S. Van HeusenJ. Burke - Van HeusenJ. Burke -J. Van HeusenJ. Burke / J. V. HeusenJ. Burke / J. Van HeusenJ. Burke / J.V. HeusenJ. Burke And J. Van HeusenJ. Burke y J. Van HeusenJ. Burke – J. Van HeusenJ. Burke, J. V. HeusenJ. Burke, J. Van HeusenJ. Burke, J. Van HeuwenJ. Burke, J. Van HusenJ. Burke, J. van HeusenJ. Burke, J.V. HeusenJ. Burke, Van HeusenJ. Burke- J. V. HeusenJ. Burke-J. V. HensenJ. Burke-J. V. HeusenJ. Burke-J. Van HeusenJ. Burke-J. VanHeusenJ. Burke-J.Van HeusenJ. Burke-Van HeusenJ. Burke/ J. V. HeusenJ. Burke/ J. Van HeusenJ. Burke/J Van HeusenJ. Burke/J. Van HeusenJ. Burke/J. Van HusenJ. Burke/J. Van HussenJ. Burke/J. v. HeusenJ. Burke/J. van HeusenJ. Burke–J. Van HeusenJ. E. Van Heusen/J. BurkeJ. Heusen/Johnny BurkeJ. V. Hellsen-J. BurkeJ. V. Hensen, J. BurkeJ. V. Heusen - J. BurkeJ. V. Heusen - J. BurkeJ. V. Heusen, B. JohnnyJ. V. Heusen, J. BurkeJ. V. Heusen-J. BurkJ. V. Heusen-J. BurkeJ. V. Heusen/BurkeJ. V. Heusen/J. BurkJ. V. Heussen - J. BurkeJ. Van Heuse, Johnny BurkeJ. Van HeusenJ. Van Heusen -J. BurkeJ. Van Heusen & E. BurkeJ. Van Heusen & J. BurkeJ. Van Heusen - BurkeJ. Van Heusen - J. BurkeJ. Van Heusen - Johnny BurkeJ. Van Heusen - S. BurkeJ. Van Heusen / J. BurkeJ. Van Heusen And J. BurkeJ. Van Heusen – J. BurkeJ. Van Heusen, J. BurkeJ. Van Heusen, J. Van BurkeJ. Van Heusen, J.BurkeJ. Van Heusen, Johnny BurkeJ. Van Heusen, b. E. C. Babcock/J. BurkeJ. Van Heusen- J. BurkeJ. Van Heusen-BurkeJ. Van Heusen-J. BurkeJ. Van Heusen-Johnny BurkeJ. Van Heusen/BurkeJ. Van Heusen/J. BurkeJ. Van Heusen/J.BurkeJ. Van Heusen=J. BurkeJ. Van Heuson / J. BurkeJ. Van Heuson, J. BurkeJ. Van Heuson-J. BurkeJ. Van Heuson/J. BurkeJ. Van Heysen - J. BurkeJ. Van Huesen - J. BurkeJ. Van Huesen-J. BurkeJ. Van Huesen/J. BurkeJ. VanHeusen / J. BurkeJ. VanHeusen, J. BurkeJ. VanHeusen-J. BurkeJ. VanHeusen/J. BurkeJ. VanHuesen / J. BurkeJ. Vanheusen, J. BurkeJ. Ven Heusen/J. BurkeJ. v. Heusen / BurkeJ. van Heusen & J. BurkeJ. van Heusen - J. BurkeJ. van Heusen - Johnny BurkeJ. van Heusen / J. BurkeJ. van Heusen, J. BurkeJ. van Heusen-J. BurkeJ. van Heusen/ J. BurkeJ. van Heusen/J. BurkeJ. van Heusen–J. BurkeJ. van Heussen/J. BurkeJ. vanHeusen, J. BurkeJ.-V. Heusen - J. BurkeJ.Burke - J.Van HeusenJ.Burke - Van HeusenJ.Burke J.V.HansenJ.Burke, J.V.HeusenJ.Burke-J. Van HeusenJ.Burke-J.V.HeusenJ.Burke-J.Van HeusenJ.Burke-Van HeusenJ.Burke/J vanHuesenJ.Burke/J. Van HeusenJ.Burke/J.Van HusenJ.V. Hensen / J. BurkeJ.V. HeusenJ.V. Heusen - J. BurkeJ.V. Heusen / BurkeJ.V. Heusen / J. BurkeJ.V. Heusen, J. BurkeJ.V. Heusen-J. BerkJ.V. Heusen-J. BurkeJ.V. Heusen/J.BerkJ.V.Heusen - J.BurkJ.V.Heusen-J. BurkeJ.V.Heusen-J.BurkeJ.V.Heusen/J.BurkeJ.Van HeusenJ.Van Heusen - J.BurkeJ.Van Heusen / J.BurkeJ.Van Heusen And J. BurkeJ.Van Heusen, J. BurkeJ.Van Heusen,J.BurkeJ.Van Heusen-J.BurkeJ.Van Heusen.J.BurkeJ.Van Heusen/J.BurkeJ.Van Heusen/Johnny BurkeJ.Van Heusen/Jonny BurkeJ.Van Huesen & J. BurkeJ.VanHeusen-J.BurkeJ.v. Heusen - J. BurkeJ.v. Heusen / J. BurkeJ.v. Heusen/J. BurkeJImmy Van Heusen - Johnny BurkeJames Burke-James Van HeusenJames Van Heusen & Johnny BurkeJames Van Heusen - John BurkeJames Van Heusen - Johnny BurkeJames Van Heusen - Jonny BurkeJames Van Heusen -Johnny BurkeJames Van Heusen / Johnny BurkeJames Van Heusen And Johnny BurkeJames Van Heusen, J. BurkeJames Van Heusen, John BurkeJames Van Heusen, Johnny BurkeJames Van Heusen, Jonny BurkeJames Van Heusen- Johnny BurkeJames Van Heusen-John BurkeJames Van Heusen-Johnny BurkeJames Van Heusen/BurkeJames Van Heusen/Johnny BurkeJames Van Heusen; Johnny BurkeJames Van Heusen・Johnny BurkeJames Van Huesen, Johnny BurkeJames Van Huesen,Johnny BurkeJames Van Huesen-Johnny BurkeJames Van heusen-Johnny BurkeJames VanHeusen - John BurgkeJames VanHeusen - Johnny BurkeJames van Heusen - Johnny BurkeJames van Heusen - Johnny BurkerJames van Heusen-Johnny BurkeJames van Heusen/Johnny BurkeJerome Burke, Jimmy Van HeusenJhonny Burke, Jimmy Van HeusenJim Van Heusen-Johnny BurkeJim van Heusen, J. BurkeJimmie Van Heusen, Johnny BurkeJimmy Burke - James Van HeusenJimmy Burke, Johnny Van HeusenJimmy Burke-James Von HeusenJimmy Hensen, Johny BurkeJimmy Vah Heusen - Johnny BurkeJimmy Van Heausen, Johnny BurkeJimmy Van Heusen & Johnny BurkeJimmy Van Heusen + Johnny BurkeJimmy Van Heusen , Johnny BurkeJimmy Van Heusen - J. BurkeJimmy Van Heusen - Johnny BurkeJimmy Van Heusen - Johnny Burke*Jimmy Van Heusen -Johnny BurkeJimmy Van Heusen / Johnny BurkeJimmy Van Heusen And Johnny Burke-Jimmy Van HeusenJimmy Van Heusen And Johnny BurkéJimmy Van Heusen Johnny BurkeJimmy Van Heusen b. Edward Chester Babcock-Johnny BurkeJimmy Van Heusen – Johnny BurkeJimmy Van Heusen, Edward Chester Babcock-Johnny BurkeJimmy Van Heusen, Johnny BurkeJimmy Van Heusen, b Edward Chester Babcock, Johnny BurkeJimmy Van Heusen- Johnny BurkeJimmy Van Heusen-BurkeJimmy Van Heusen-Jimmy BurkeJimmy Van Heusen-John BurkeJimmy Van Heusen-Johnny BurjeJimmy Van Heusen-Johnny BurkJimmy Van Heusen-Johnny BurkeJimmy Van Heusen-Johnny Burke Aka Chester BabcockJimmy Van Heusen-Johnny Burke,Jimmy Van Heusen-Jonny BurkeJimmy Van Heusen-Sonny BurkeJimmy Van Heusen/ Johnny BurkeJimmy Van Heusen/BurkeJimmy Van Heusen/J. BurkeJimmy Van Heusen/Johnny BurkeJimmy Van Heusen; Johnny BurkeJimmy Van Heusen–Johnny BurkeJimmy Van Heuson/Johnny BurkeJimmy Van Heussen - Johnny BurkeJimmy Van Huesan & Johnny BurkeJimmy Van Huesen, Johnny BurkeJimmy Van Huesen/Johnny BurkeJimmy Van Husen/Johnny BurkeJimmy Van-Heusen - Johnny T. John BurkeJimmy Vanm Heusen & Johnny BurkeJimmy van Heusen - Johnny BurkeJimmy van Heusen / James H. BurkeJimmy van Heusen / Johnny BurkeJimmy van Heusen Y Johnny BurkeJimmy van Heusen, Johnny BurkeJimmy van Heusen/Johnny BurkeJimmy vanHeusen/Johnny BurkeJoe Burke - Jimmy Van HeusenJohhny Burke/Jimmy Van HeusenJohn Burke - James Van HeusenJohn Burke - Jimmy Van HeusenJohn Burke, James Van HeusenJohn Burke-Jim Van HausenJohn Burke-Jim Van HeusenJohn Burke-Jimmy Van HeusenJohn Burke. James Van HeusenJohn Burke/Jimmy Van HeusenJohnnie Burke - Jimmy Van HuesenJohnnie Burke Jimmy Van HeusenJohnny Buke And Jimmy Van HeusenJohnny Burke & Jimmy Van HeusenJohnny Burke & James Van HeusenJohnny Burke & James Van heusenJohnny Burke & Jimmy Van HeusenJohnny Burke & Jimmy Van HusenJohnny Burke & Jimmy VanHeusenJohnny Burke - J. Van HeusenJohnny Burke - James Van HeusenJohnny Burke - James Van heusenJohnny Burke - James van HeusenJohnny Burke - Jimmie Van HeusenJohnny Burke - Jimmy Van HeusenJohnny Burke - Jimmy Van HusenJohnny Burke - Jimmy Van heusenJohnny Burke - Jimmy van HeusenJohnny Burke / James Van HeusenJohnny Burke / James van HeusenJohnny Burke / Jimmy Van HeusenJohnny Burke / Jimmy van HeusenJohnny Burke And James Van HeusenJohnny Burke And Jimmy Van HeusenJohnny Burke E James Van HeusenJohnny Burke Jimmy Van HeusenJohnny Burke Und Tony Van HeusenJohnny Burke and James Van HeusenJohnny Burke and Jimmy Van HeusenJohnny Burke and Jimmy VanHeusenJohnny Burke, Van HeusenJohnny Burke, J. Van HeusenJohnny Burke, James Van HeusenJohnny Burke, James VanHeusenJohnny Burke, James van HeusenJohnny Burke, Jimmy Van HeusenJohnny Burke, Jimmy VanHeusenJohnny Burke, Jimmy van HeusenJohnny Burke,James Van HeusenJohnny Burke- James Van HeusenJohnny Burke-Bob HaggartJohnny Burke-J. Van HeusenJohnny Burke-JImmy Van HeusenJohnny Burke-James Van HeusenJohnny Burke-James van HeusenJohnny Burke-Jimmie Van HeusenJohnny Burke-Jimmy Van HeusenJohnny Burke-Jimmy Van Heusen Johnny BurkeJohnny Burke-Jimmy Van HeussenJohnny Burke/ Jimmy Van HeusenJohnny Burke/James Van HausenJohnny Burke/James Van HeusenJohnny Burke/Jimmy Van HeusdenJohnny Burke/Jimmy Van HeusenJohnny Burke/Jimmy Van HuesenJohnny Burke/Jimmy van HeusenJohnny Burke; Jimmy Van HeusenJohnny Burky/Jimmy Van HeusenJohnny Truke-James VanheusenJohnny burke & James Van HeusenJohny Burke & James Van HeusenJohny Burke-James Van HeusenJonny Burke / James Van HeusenS. Burke / J. Van HeusenS. Burke-V. HeusenS. Cahn-J. Van HeusenSames Van Heusen - Johnny BurkeSonny Burke - James Van HeusenSonny Burke-Van HeusenTony Van Heusen And Johnny BurkeV. Heusen,BurkeV. Heusen-BurkeV. Housen/BurkeV.Heusen, BurkeVah Heusen - BurkeVan Hensen-BurkeVan Hesuen/BurkeVan HeusenVan Heusen - BurkeVan Heusen /BurkeVan Heusen & BurkeVan Heusen & J. BurkeVan Heusen + BurkeVan Heusen , BurkeVan Heusen - BurkeVan Heusen - J. BurkeVan Heusen - Johnny BurkeVan Heusen / BurkeVan Heusen / J. BurkeVan Heusen : BurkeVan Heusen And BurkeVan Heusen BurkeVan Heusen y BurkeVan Heusen – BurkeVan Heusen, BurkeVan Heusen, J. BurkeVan Heusen, Johnny BurkeVan Heusen- BurkeVan Heusen--BurkeVan Heusen-BerkeVan Heusen-BlakeVan Heusen-BourkeVan Heusen-BukeVan Heusen-BurkeVan Heusen-J. BurkeVan Heusen-Johnny BurkeVan Heusen-NurkeVan Heusen. BurkeVan Heusen/ BurkeVan Heusen/BrukeVan Heusen/BurkeVan Heusen/J. BurkeVan Heusen: BurkeVan Heusen; BurkeVan Heusen–Johnny BurkeVan Heuser/BurkeVan Heuson/BurkeVan HeussenVan Heussen-BurkeVan Housen - BurkeVan Housen, BurkeVan Housen/BurkeVan Huesen, BurkeVan Huesen-BurkeVan Huesen/BurkeVan Hueson - BurkeVan Hueson-BurkeVan Huessen, BrukeVan Husen - BurkeVan Husen-BurkeVan-Heusen-BurkeVan-Heusen/BurkeVan/BurkeVanHeusen - BurkeVanHeusen, BurkeVanHeusen-BurkeVanHeusen/BurkeVen Heusen-Burkeohnny Burke And Jimmy Van Heusenv. Heusen-Burkev. Heusen/Burkevan Hensen-Burkevan Heusen - Burkevan Heusen / Burkevan Heusen, Burkevan Heusen-Burkevan Heusen/Burkevan Heussen/BurkeJimmy Van HeusenJohnny Burke + +1078027Jojo SmithNeeds Major ChangesJo Jo SmithJo-Jo Smith + +1078088Michaela BuchholzGerman viola player, born in Hamburg, sister of [a997681]. Founder member of the Coriolis-Streichtrio together with Hanno Simons and Christiane Hörr. From 1990 bis 2000 she was a member of the [a394791], now she plays with the [a866595].Needs VoteMünchner PhilharmonikerSinfonieorchester Des SüdwestfunksMünchener KammerorchesterPegasus String QuartetBundesjugendorchesterEnsemble Coriolis + +1078097Hanno SimonsGerman cellist. Founder member of the Coriolis-Streichtrio together with Michaela Buchholz and Christiane Hörr.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksPegasus String QuartetEnsemble CoriolisTrioCoriolisPhilharmonische Cellisten + +1078101Andrea KarpinskiGerman violinistCorrectSymphonie-Orchester Des Bayerischen RundfunksOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgPegasus String Quartet + +1078102Daniel NodelRussian born German Violinist +born 1968 in Minsk, Belarus, emigrated in Germany in 1980. +Son of violinist [a6977681]Needs VoteSymphonie-Orchester Des Bayerischen RundfunksPittsburgh Symphony OrchestraPegasus String QuartetAkademie-Quartett München + +1078356Dave RatajczakAmerican drummer and percussionist, based in New York City, USA, born 24 December 1957, died 3 October 2014.Needs VoteDave RatacjakDave RatacjzakDavid RatajcakDavid RatajczakWoody Herman And His OrchestraThe Woody Herman Big BandDave Stahl BandWoody Herman And The Thundering HerdJohn Fedchock New York Big BandJohn Fedchock NY SextetColors Of JazzTony Kadleck Big BandRandy Sandke's New YorkersJohn Fedchock QuartetSteve Harrow QuintetMark Shane's X-mas Allstars + +1078799René MorizurRené MorizurFrench saxophonist born February 15, 1944 in Brest and died August 26, 2009 in Brignoles.Needs VoteMorizurR. MorizurRene MorizurRené MaurizurRené MorisurRené MorisureRené MorizureLes Musclés + +1078990David DouglassClassical violinist and conductor, co-director of [a2069385].Needs Votehttp://newberryconsort.org/artists/david-douglass/DouglassThe Harp ConsortThe King's NoyseThe Musicians Of Swanne AlleyThe Newberry ConsortBoston Early Music Festival Orchestra + +1078999Ildebrando D'ArcangeloItalian bass-baritone vocalist, born 1969 in Pescara, Abruzzo.Correcthttp://en.wikipedia.org/wiki/Ildebrando_D%27ArcangeloD'ArcangeloIldebrand D'ArcangeloIldebrando d' Arcangelo + +1079222James SkinnerCredited as drummer.Needs VoteJay McShann And His Orchestra + +1079483Claire MilesBritish cellist.Needs VoteRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-Fields + +1079561New Philharmonia ChorusChorus associated with the [a=New Philharmonia Orchestra].Needs Vote& ChorusChorChorusCoroCoro PhilharmoniaDas Neue Philharmonia ChorDer Neue Philharmonia ChorDer Neue Philharmonia Chor LondonNew Philharmonia Chorus LondonNew Philharmonia ÉnekkaraNew Philharmonic ChorusNuevo Coro FilarmoníaNuevo Coro PhilharmoniaThe New Philharmonia ChorusThe New Philharmonia Chorus LondonThe New Philharmonia Chorus, London + +1079862David AbellDavid Charles AbellAmerican conductor and musical director. He studied singing, piano, viola and composition before concentrating on conducting. He has been conducting classical works as well as musicals ("Les Misérables" in 1995 and 2010).Correcthttp://www.davidcharlesabell.com/David AbelDavid Charles Abell + +1080246Elena ObraztsovaЕлена Васильевна ОбразцоваSoviet and Russian opera singer (mezzo-soprano), actress, opera director, teacher, professor. +Born: July 7, 1939, Leningrad (now Saint Petersburg), USSR +Died: January 12, 2015, Leipzig, Germany. + +People's Artist of USSR (1976). Hero of Socialist Labor (1990). Lenin Prize (1976) and the Mikhail Glinka State Prize of the RSFSR (1973).Needs Votehttps://en.wikipedia.org/wiki/Elena_Obraztsovahttp://www.obraztsova.org/E. ObratzovaE. ObraztsovaE.ObraztsovaElena ObraszowaElena ObratsovaElena ObratzovaElena ObratzsowaElena ObratztsovaElena ObrazovaElena ObraztovaJ. ObrazcovaJ. ObrazcovováJelena ObraszowaJelena ObrazcovaJelena ObrazcovováObrastsovaObratsovaObraztsovaY. ObraztsovaYelena ObratsovaYelena ObraztsovaЕ. ОбразцоваЕлена ОбразковаЕлена ОбразцоваЕлена Образцова (меццо-сопрано)Елена Образцова = Elena Obraztsovaエレーナ・オブラスツォワSoloists Of The Bolshoi TheatreBolshoi Theatre + +1080247Leo NucciItalian Baritone vocalist, born 16 April 1942 in Castiglione dei Pepoli, near Bologna, Italy.Needs Votehttps://en.wikipedia.org/wiki/Leo_Nuccihttps://www.naxos.com/person/Leo_Nucci/4521.htmL. NucciL.NucciNucciЛео НуччиЛео Нући + +1080249Antonio GhislanzoniItalian journalist, poet, novelist and librettist, born 25 November 1824 in Lecco, Italy. Died 16 July 1893 in Caprino Bergamasco, Italy.Needs VoteA. GhislanzoniAntonio Di GhislanzoniAntonio GhuislanzoniChislanzoniGhislanzoniGhizlanzoniGiuseppe Antonio GhislanzoniА. ГислaнцониА. ГисланцониАнтонио Гисланцони + +1080401George CrozierBritish flutist, born in Belfast, Northern Ireland, UK. +He played piccolo and flute in the [a=Philharmonia Orchestra] during the 1960s and 1970s. He was professor of flute at the Royal Military School of Music, Knellor Hall.Needs Votehttps://www.pinterest.com/pin/317855686183272291/Geo CrozierPhilharmonia OrchestraThe Laurie Johnson OrchestraNew Philharmonia Orchestra + +1082287Peggy KingAmerican pop singer, actress and TV personality. +Born February 16, 1930 Greensburg, Pennsylvania, USA. +Married three times: trumpeter-trombonist Knobby Lee (né) Norbert William Francis Lidrbauch; 1927–1999) (From 1953 to 1956), who was the trumpeter with the Ralph Flanagan band. She had a two-year engagement with composer [a224329] before marrying two more times. + +She is best remembered as the female vocalist on The George Gobel Show. She also appeared in American Bandstand, Maverick, The Tonight Show Starring Johnny Carson and The Jack Benny Show. She portrayed the stewardess Janet Turner in the film, "Zero Hour!", which became the basis for the disaster spoof, "Airplane!" She was known as "Pretty Perky Peggy King". +She charted four times between 1955-56 including her biggest hit "Make Yourself Comfortable", which hit #30 in the U.S. Her best-selling albums were "Wish Upon on a Star" and "Girl Meets Boy", both in 1955.Needs Votehttp://en.wikipedia.org/wiki/Peggy_Kinghttps://www.imdb.com/name/nm0455129/https://www.jazzwax.com/current_affairs/KingHarry James And His OrchestraRalph Flanagan And His Orchestra + +1082785Miyuki Nakajima中島美雪Miyuki Nakajima (中島 みゆき, Nakajima Miyuki). Japanese singer-songwriter and radio personality. Born in Sapporo, Hokkaido on February 23, 1952. Released her debut single in 1975. She is the only Japanese solo artist to have enjoyed No.1 singles in four different decades. A "Miyuki" logo started to appear on discs, back covers and obis of her recordings, starting in 1990 (see profile image section). Logo variations appear on releases, with either "Miyuki" or "Miyuki Nakajima" printed under the logo.Needs Votehttp://www.miyuki.jp/https://www.youtube.com/user/miyukiofficialhttp://ja.wikipedia.org/wiki/%E4%B8%AD%E5%B3%B6%E3%81%BF%E3%82%86%E3%81%8DM. NakajimaMiyukiMiyuki NakajimMiyuki NakayimaN. MiyukiNakajima MiyukiNakajima/MiyukiNkajima Miyukiあいらんど中島 みゆき中島みゆ中島みゆき中島美雪中・島・み・ゆ・きMiss M. (2) + +1082857Jacques CazauranClassical string instrumentalistNeeds Votehttps://data.bnf.fr/fr/13930752/jacques_cazauran/Žak Kazornジャック・カゾーランLa Grande Ecurie Et La Chambre Du Roy + +1082859Paul BoufilFrench classical cellist. Born in 1938.Needs Votehttps://data.bnf.fr/fr/13961046/paul_boufilP. BoufilEnsemble Orchestral De ParisLe Quatuor BernèdeTrio Florilège + +1082898Klaus RenkClassical trombonist. + +Musical training at the Bavarian Conservatory, Würzburg with Special Advancement Award 1962, Formerly solo trombone in Duisburg and with the [a833686]; since 1968 member of the Bavarian Symphony and teacher at the Richard Strauss Conservatory, Munich.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerMünchner Blechbläsersolisten + +1083234Manfred RichterManfred RichterGerman sound engineer and recording supervisor, mainly for productions of the [l=Deutsche Grammophon] label.CorrectDr Manfred RichterDr. M. RichterDr. Manfred RichterDr. マンフレート・リヒターdr. Manfred Richter + +1084955Karl KohnKarl-Christian KohnGerman bass vocalist (Losheim am See, Saarland, May 21, 1928 - January 20, 2006).Correcthttp://www.bach-cantatas.com/Bio/Kohn-Karl-Christian.htmhttp://de.wikipedia.org/wiki/Karl-Christian_Kohn,Carl Christian KohnKarl Christian KohKarl Christian KohlKarl Christian KohnKarl Christian KöhnKarl-Christian KohnKohnК. КонКарл Кон + +1086439Carrie DennisAmerican violist, born in 1977 in Saratoga Springs, New York, USA +CorrectThe Philadelphia OrchestraLos Angeles Philharmonic OrchestraMico Nonet + +1086440Efe BaltacigilEfe BaltacıgilTurkish cellist, born 26 December 1978 in Istanbul, Turkey.Needs Votehttp://efebaltacigil.net/The Philadelphia OrchestraSeattle Symphony OrchestraMico Nonet + +1086443Katherine NeedlemanClassical oboistCorrectBaltimore Symphony OrchestraMico Nonet + +1086453Riikka SundqvistClassical violinistCorrectMahler Chamber Orchestra + +1086480Gerhard RapschClassical bassoonist.Needs VoteOrchester Der Deutschen Oper BerlinScharoun Ensemble BerlinBerliner Fagottquartett + +1086500Sakae SekineSakae Sekine is a Japanese recording engineer. Needs Vote関根 栄関根栄 + +1086954Monique ZanettiClassical soprano.Needs VoteMonique ZonettiZanettiLes Arts FlorissantsLa Chapelle RoyaleLes PaladinsFons MusicaeLa Chapelle RhénaneLes Temps Présents + +1086955Eric BellocqLutenist, theorbist and guitarist.Needs VoteÉric BellocqLes Arts FlorissantsLa Grande Ecurié Et La Chambre Du RoyLes Folies FrançoisesLes Musiciens Du LouvreEnsemble Clément JanequinLes Musiciens De Saint-JulienEnsemble La FeniceAkadêmiaEnsemble Variations + +1086956Nathalie StutzmannFrench classical contralto vocalist, born 1965 in Suresnes, France. She is the daughter of [a3246610]. +She not only trained as a vocalist, but also won prizes in piano, bassoon, chamber music, and natural singing. Her styles span the baroque music, classical, and German romantic period composers, as well as French composers of the 19th and 20th centuries. Needs Votehttp://en.wikipedia.org/wiki/Nathalie_StutzmannN. StutzmannNatalie StutzmannNathalie StutzmanStutzmannLes Arts FlorissantsOrfeo 55 + +1087001Alfred GrünfeldAustrian pianist, composer and arranger (* 04 July 1852 in Prague, Kingdom of Bohemia; † 04 January 1924 in Vienna, Austria).Needs Votehttp://en.wikipedia.org/wiki/Alfred_Gr%C3%BCnfeldhttps://dx.doi.org/10.1553/0x000209b4https://adp.library.ucsb.edu/names/106177A. GruenfeldA. GrunfeldA. GrünfeldAlfred GruenfeldAlfred GrunfeldAlfred GrunfieldAlfred Grünfeld, K. u. K. KammervirtuoseGruenfeldGrunfeldGrunfieldGrüenfeldGrünfeldА. ГрюнфельдА. ГрюнфельдъАльфред ГрюнфельдАльфредъ Грюнфельдъ + +1087828Austin Roberts (2)Jazz bass player.CorrectAuston RobertsThe Oscar Peterson Trio + +1087901Lyodoh KanekoClassical Violinist & PhotographerNeeds VoteKaneko LyodoL. KanekoLysdoh KanekoOrchestre National De France + +1087902Ayako TanakaJapanese violinistNeeds Votehttp://ayakotanaka.com/L'Orchestre National de LilleQuatuor PsophosOrchestre Philharmonique De Radio FranceEuropean Camerata + +1087905Nadine PierreClassical cellistNeeds VoteOrchestre Philharmonique De Radio FranceQuatuor KandinskyTrio George Sand + +1088119Elizabeth LiddleViolist and composer born in Scotland. +She moved to Canada in 1995.Needs Votehttp://www.geocities.ws/lizzielid/Elizabeth.htmlELFretworkThe Consort Of MusickeRose Consort Of ViolsSpectre De La Rose + +1088122John Bryan (3)As a performer, John is a versatile 'early' musician working with many leading ensembles since the 1970s, including the Rose Consort of Viols, Musica Antiqua of London, I Fagiolini and the Consort of Musicke, with whom he has made many CD and radio recordings, and appeared at international festivals in USA, Canada and throughout Europe. He is a violist, but also plays other Renaissance woodwind instruments (recorders, crumhorns, shawms, dulcians) and harpsichord, and regularly directs and conducts early music performances. John has contributed to a range of programmes on BBC Radios 3 and 4 was for many years a member of the Early Music Network Committee.Needs Votehttps://pure.hud.ac.uk/en/persons/john-bryanJBMusica Antiqua Of LondonThe Consort Of MusickeRose Consort Of ViolsYorkshire Baroque Soloists + +1088123Alison CrumAlison Crum (born 23 November 1949, in the United Kingdom), is an English viol, viola da gamba and violone player.Needs Votehttp://www.alisoncrum.co.uk/http://en.wikipedia.org/wiki/Alison_Crumhttp://www.bach-cantatas.com/Bio/Crum-Alison.htmA. CrumACMusica Antiqua Of LondonThe Consort Of MusickeRose Consort Of ViolsThe King's ConsortThe Praetorius ConsortSpectre De La RoseThe London Music Players + +1088124Timothy RobertsBritish classical keyboard instrumentalist and conductor.Needs VoteRobertsTim RobertsNew London ConsortThe Parley Of InstrumentsThe English Baroque SoloistsThe Consort Of MusickeGabrieli PlayersRose Consort Of ViolsHis Majestys Sagbutts And CornettsEnsemble CordariaSpectre De La RoseYorkshire Baroque SoloistsInvocation (6)NoxwodeThe Friends Of Apollo + +1088127Benoît WeegerClassical viola player.CorrectBenoit WeegerOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleIl Seminario MusicaleLes Talens LyriquesLes Musiciens Du Louvre + +1088130Brigitte Le BaronAlto vocalist.Needs VoteCollegium VocaleLa Chapelle RoyaleLes Demoiselles De Saint-CyrAlla FrancescaEnsemble Venance Fortunat + +1088131Edmond HurtraitTenor.Needs Votehttps://copainsdavant.linternaute.com/p/edmond-hurtrait-6158754Le Concert SpirituelLa Chapelle RoyaleA Sei VociIndigo (34)Compagnie Nonna Sima + +1088133Sophie JolisClassical soprano.Needs VoteLe Concert SpirituelLa Chapelle Royale + +1088135Claire GiardelliClaire Giardelli is a French classical cellist. She's the sister of [a1273086] and [a1362196].Needs VoteCollegium VocaleLa Chapelle RoyaleIl FondamentoLe Concert Des nationsLa Grande Ecurie Et La Chambre Du RoyLe Concert D'AstréeLes Musiciens Du LouvreLes Sacqueboutiers De ToulouseIl GardellinoLa TurbulenteQuatuor Elyséen + +1088136Setske MostaertSoprano.CorrectCollegium VocaleLa Chapelle Royale + +1088137Sophie DemouresClassical violinist.CorrectSophie Gervers-DemouresSophie GeversSophie Gevers DemouresSophie Gevers-DemouresSophie Gevers-DemoursLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleLes Musiciens Du Louvre + +1088138Paul-Alexandre DuboisFrench Bass vocalist. Needs VoteLes Arts FlorissantsLa Chapelle RoyaleNesevenEnsemble Almazis + +1088142Hélène D'YvoireClassical flautist.CorrectLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleEnsemble Baroque De Nice + +1088143Thérèse KipferClassical violinist.Needs VoteOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleIl Seminario MusicaleLes Talens LyriquesLes Musiciens Du Louvre + +1088528Mario PaladinMario Paladin is an Italian classical violist.Needs VoteQuartetto D'Archi Di VeneziaI Solisti VenetiL'Arte Dell'ArcoAndrea Centazzo Mitteleuropa OrchestraL'Offerta MusicaleVenice Baroque Orchestra + +1089423Thomas DaveyClassical oboistCorrectTom DaveyHallé OrchestraRoyal Liverpool Philharmonic Orchestra + +1089596Daniele GattiDaniele GattiItalian conductor, born in Milan. Principal conductor of the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia] in Rome, Italy from 1992 to 1997; principal guest conductor at the [l=Royal Opera House], Covent Garden, UK from 1994 to 1997; musical director of the [a=Royal Philharmonic Orchestra] from 1996 to 2009; musical director of the [l=Teatro Comunale di Bologna] from 1997 to 2007); principal conductor at the Zurich Opera House from 2009 to 2012 and musical director of the [a=Orchestre National De France] since September 2008. Chief conductor of [a=Concertgebouworkest] from 2016 to 2018.Needs Votehttps://www.danielegatti.eu/Danielle GattiGattiRoyal Philharmonic OrchestraOrchestre National De FranceConcertgebouworkestOrchestra dell'Accademia Nazionale di Santa Cecilia + +1089970Larry Taylor (4)US jazz vocalist, songwriterNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/113163/Taylor_LarryL. TaylorTaylorCharlie Barnet And His OrchestraRuby Newman And His Orchestra + +1089978Nelson CoganeSongwriter b. Dayton, Ohio 25 Dec. 1902Needs VoteCoganCoganeCoganiCojaneN CoganeN. CoganN. CoganeNN. CoganeNelson CoganNelson CoganiNelson Cogone + +1090044Kenneth King (2)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1956-1965).Needs VoteLondon Symphony OrchestraLondon Philharmonic Orchestra + +1091236Lincoln MillsAmerican jazz trumpeter in the swing era, born 1910 in Chrisfield, Maryland, died. c. 1957. +Worked with [a=Cliff Jackson], before joining [a=Tiny Bradshaw] in 1934, then with [a=Eddie South], [a=Claude Hopkins], [a=Benny Carter]. During 1940s for several years in [a=Gene Sedric]'s band. Committed suicide in the late 1950s.Needs VoteLincoln MilsBenny Carter And His OrchestraSedric And His Honey BearsGene Sedric & His Orchestra + +1091237Eddie YanceAmerican jazz guitaristNeeds VoteE. YanceEd YanceEddy YanceEdward YanceGene Krupa And His OrchestraCharlie Ventura Sextet + +1092018Mikko HynninenNeeds Major Changes + +1092096Piers LaneAustralian classical pianist, born 8 January 1958.Correcthttp://www.pierslane.com/LanePers Laneピアーズ・レーン + +1092316Heinz MaierClassical flautistNeeds VoteNeues Bachisches Collegium Musicum Leipzig + +1092464Viola de HoogDutch cellist.Needs Votehttps://www.violadehoog.com/about-meViola de HooghAnima EternaThe English Baroque SoloistsSchoenberg QuartetBoston CamerataNarratio Quartet + +1092466Pierre WoudenbergDutch classical clarinetist.Needs VoteSchönberg EnsembleRotterdams Philharmonisch OrkestRadio Filharmonisch OrkestAsko|Schönberg + +1092478Josef StaarAustrian violist, born 10 February 1935 in Graz, Austria and died in 2000.Needs VoteWiener PhilharmonikerThe Vienna Philharmonia QuintetNew Vienna Octet + +1092480Erich BinderErich Binder (6 December 1947 in Vienna, Austria - 29 December 2023) was an Austrian violinist, pianist and conductor. He studied with [a864674].Needs Voteエーリッヒ・ビンダーDie Wiener SängerknabenWiener PhilharmonikerWiener VolksopernorchesterAustro-Hungarian Haydn OrchestraNew Vienna Octet + +1092481Friedrich DolezalAustrian cellist, born 1 August 1947 in Vienna, Austria and died 20 August 2015 in Vienna, Austria.Needs VoteFriedrich DolzalFritz DolezalOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble KontrapunkteEnsemble 20. JahrhundertAustro-Hungarian Haydn OrchestraHofmusikkapelle WienWiener OktettThe Vienna String QuartetNew Vienna Octet + +1092482Mario BeyerMarion Beyer (1932 - 1996) was a classical violinist.Needs VoteWiener PhilharmonikerDas Europäische StreichquartettNew Vienna Octet + +1092492Joseph KeilberthGerman conductor, * 19 April 1908 in Karlsruhe, German Empire; † 20 July 1968 in München. + +In 1940 he became director of the German Philharmonic Orchestra of Prague. Near the end of World War II, he was appointed principal conductor of the venerable Saxon State Opera Orchestra in Dresden. In 1949 he became chief conductor of the Bamberg Symphony, formed mainly of German musicians expelled from postwar Czechoslovakia under the Beneš decrees. He died in Munich in 1968 after collapsing while conducting Wagner's opera Tristan und Isolde in exactly the same place as Felix Mottl was similarly fatally stricken in 1911. His final recording, a Meistersinger, came a month before his death — at the Bavarian State Opera on 21 June. + +Keilberth was a regular at Bayreuth in the early 1950s, with complete Ring cycles from 1952, 1953 and 1955, as well as a well-regarded recording of Die Walküre from 1954 (the whereabouts of rest of the cycle are unclear) in which Martha Mödl, perhaps the greatest Wagnerian actress and tragedian of her time, sang her only recorded Sieglinde. He made the first stereo recording of Wagner's Ring Cycle in 1955, as well as a so-called "second cycle" with Mödl, rather than Astrid Varnay, as Brünnhilde. Mödl's accounts of Brünnhilde, from the 1953 Ring as well as the 1955 "second cycle," are her only recordings of the role other than Wilhelm Furtwängler's 1953 Rome Ring and commercial Walkuere in 1954. Among his other recordings, his outstanding interpretations of Wagner's Lohengrin at the 1953 Bayreuth Festival released on Decca-London and Weber's Der Freischütz made in 1958 for EMI, as well as a 'live' set of Richard Strauss's Arabella (featuring Lisa della Casa and Dietrich Fischer-Dieskau) made in 1963 for DG are still considered among the best versions. He conducted the TV-broadcast German-translation performance of The Barber of Seville, featuring Fritz Wunderlich, Hermann Prey and Hans Hotter. His Haydn 85th and Brahms Fourth Symphony recordings on Telefunken are no less distinguished. + + +Needs Votehttps://en.wikipedia.org/wiki/Joseph_Keilberthhttps://www.naxos.com/person/Joseph_Keilberth/32116.htmhttps://www.bach-cantatas.com/Bio/Keilberth-Joseph.htmE. KeilberthJ. KajlbertJ. KeilberthJ.KeilberthJosef KeilberthJoseph KeiberthJoseph KeilbertKeilberthProf. Joseph KeilberthProfessor Joseph KeilberthИ. Кайльбертヨセフ・カイルベルトStaatskapelle Dresden + +1092516Adrian ShepherdBritish cellist, conductor and educator, born 1939, he was principal cello with the Royal Scottish National Orchestra for 20 years, and is director of the ensemble [a1066340], which he founded in 1970.Correcthttp://en.wikipedia.org/wiki/Adrian_ShepherdAdrian SheppardRoyal Scottish National OrchestraCantilena + +1092532Paula BottSoprano VocalistNeeds VoteThe Sixteen + +1092535Bernhard HartogGerman violinist, born in Bielefeld. He was the former concertmaster of [a837511] and of the [a462180].Needs Voteベルンハルト・ハルトークBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspielePhilharmonisches Streichsextett BerlinBerliner Solisten (2)Hartog Quartett + +1092538John RelyeaCanadian bass-baritone vocalist, born in 1972 in Toronto.Needs Votehttps://www.johnrelyea.com/ + +1092551William MasonClassical bass vocalistNeeds VoteWill MasonPro Cantione AntiquaThe London Early Music Group + +1092564Jonathan PegisJonathan R. PegisJonathan Pegis (7 May 1960 - 22 March 2022) was an American cellist. Member of the [a837562] from 1986 to 2018.Needs VoteJohnathan PegisДжонатан ПегисChicago Symphony OrchestraRochester Philharmonic OrchestraChicago Pro Musica + +1092565Donald McInnesDonald M. McInnesDonald McInnes (7 March 1939 - 23 October 2024) was an American violist and teacher. + +Since 1974, Donald McInnes, Viola soloist, has performed with many of the world’s finest orchestras, such as [a388185], [a395913], [a626175], [a479036], [a2385834], [a1543436], [a872098], [a928199], [a2265437], and [a1707996]. He has also collaborated with such artists as [a299702], [a532086], [a859780], [a276145], [a833840], [a852384], [a1861950], [a1245780], [a532270], [a1135241], [a861499], and many other leading Classical artists of our time. McInnes continues to be in constant demand as a performer and teacher.Needs VoteDon McInnesDonald Mc InnesDonald McInnisDonald McLeod McInnesMcInnes Donald MeLeodДональд МакиннесPacific Symphony Orchestra + +1092582Eligio QuinteiroEligio Luis QuinteiroEligio Quinteiro, born in Las Palmas de Gran Canaria, plays and teaches theorbo, lute and early guitars. He is artistic director of the ensembles Capilla Cayrasco and Camerata Cayrasco, and has performed and recorded with the leading early music ensembles in the UK and Spain.Needs Votehttps://www.naxos.com/person/Eligio_Quinteiro/38817.htmEligio Luis QuinteiroEligio QuinteiraEligio QuinterioThe SixteenI FagioliniThe King's ConsortLa Real CámaraEx Cathedra Baroque OrchestraOrphénica LyraContrapunctus (2)Ars AtlánticaFlorilegiumPassacaglia Ensemble + +1092607Hermann MenninghausHermann Menninghaus (born 1963 in Bünde, Germany) is a German violist, who started his carreer as a violinist. He was a member of the [a604396] from 1997 to 2024.Needs VoteBerliner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksBundesjugendorchesterStudierende Der Folkwang-Hochschule, Essen + +1092619Orchestra da Camera ItalianaNeeds Major ChangesO.C.I.Orchestra Camera ItalianaOrchestra Da Camera ItalianaOrchestre De Chambre D'ItalieOrq. de Cámara ItalianaOrquesta De Camara Italiana이태리 실내 오케스트라Andrea MascettiFrancesco Fiore (2)Laura MariannelliRoberto NoferiniDavide ZaltronLaura ManziniClaudio PasceriLaura GornaCaterina DemetzEnzo LigrestiAldo MatassaErmanno CalzolariCecilia RadicFrancesco PoveriniChiara Morandi + +1092623Stephanie GonleyClassical violinist and orchestra leader.Needs Votehttp://robertgilder.co/test/wp/portfolio-item/stephanie-gonley/https://www.sco.org.uk/profile/stephanie-gonleyhttps://www.coeurope.org/member/stephanie-gonley-violin/https://www.gsmd.ac.uk/staff/stephanie-gonleyStephanie GomleyLondon Symphony OrchestraEnglish Chamber OrchestraScottish Chamber OrchestraVellinger Quartet + +1092624Julie PriceAn English bassoonist.Needs Votehttps://en.wikipedia.org/wiki/Julie_Price_(bassoonist)Julie PryceEnglish Chamber Orchestra + +1092665Karl GoldmarkKároly GoldmarkHungarian composer from the Romantic era (b. 18 May 1830 in Keszthely, Hungary - d. 2 January 1915 in Vienna, Austria).Needs Votehttps://en.wikipedia.org/wiki/Karl_Goldmarkhttps://www.britannica.com/biography/Karl-Goldmarkhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103551/Goldmark_CarlCarl GoldmarkGoldmarkGoldmark KárolyK. GoldmarkKarl GoldmarckKároly GoldmarkК.ГольдмаркaКарл Гольдмарк + +1092669Kammerorchester Carl Philipp Emanuel BachGerman chamber orchestra, founded in 1969 and disbanded in 2014. It was based in Berlin.Needs Votehttps://en.wikipedia.org/wiki/Carl_Philipp_Emanuel_Bach_Chamber_Orchestrahttp://haenchen.net/cpebach-berlin/"Carl Philipp Emanuel Bach" Chamber OrchestraC.P.E Bach Chamber OrchestraC.P.E. Bach Chamber OrchestraC.Ph.E.Bach-OrchesterCPE Bach Chamber OrchestraCarl Philipp Emanuel Bach Chamber OrchestraCarl Philipp Emanuel Back Chamber OrchestraChamber Orchestra "Carl Philipp Emanuel Bach"Chamber Orchestra Carl Philipp Emanuel BachKammer-Orchester Carl Philipp Emanuel BachKammerochester CPE Bach, BerlinKammerorchester "C. Ph. E. Bach" Der Deutschen StaatsoperKammerorchester "C. Ph. E. Bach" Der Deutschen Staatsoper BerlinKammerorchester "C. Ph. E. Bach" Des Deutschen Staatsoper BerlinKammerorchester "C.P.E. Bach"Kammerorchester "Carl Philip Emanuel Bach"Kammerorchester "Carl Philipp Emanuel BachKammerorchester "Carl Philipp Emanuel Bach"Kammerorchester "Carl Philipp Emanuel Bach" Der Deutschen Staatsoper BerlinKammerorchester "Carl Philipp Emanuel Bach" der Deutschen Staatsoper BerlinKammerorchester 'Carl Philipp Emanuel Bach'Kammerorchester C. P. E. BachKammerorchester C. Ph. E. BachKammerorchester C.P.E. BachKammerorchester C.P.E.BachKammerorchester C.Ph. E. BachKammerorchester C.Ph.E BachKammerorchester C.Ph.E. BachKammerorchester CPE BachKammerorchester CPE Bach, BerlinKammerorchester «C.P.E. Bach»Kammerorchester «Carl Philipp Emanuel Bach»Kammerorchester »C. Ph. E. Bach « Der Deutschen Staatsoper BerlinKammerorchester »C. Ph. E. Bach«Kammerorchester »C. Ph. E. Bach« Der Deutschen Staatsoper BerlinKammerorchester »C.Ph.E.Bach«Kammerorchester »C.Ph.E.Bach« Der Deutschen Staatsoper BerlinKammerorchester »Carl Philipp Emanuel Bach«Kammerorchester »Carl Philipp Emanuel Bach« Der Deutschen Staatsoper BerlinKammerorchester „Carl Philipp Emanuel Bach“Kammerorchester „Carl Philipp Emanuel Bach“ Der Deutschen Staatsoper BerlinKammerorchester „Carl Philipp Emanuel Bach”Kammerorchester „Carl Philipp Emanuel Bach” Der Deutschen Staatsoper BerlinOrchestre CPE BachOrchestre De Chambre C.Ph.E. BachOrchestre De Chambre C.Ph.E.BachOrquesta De Cámara "Carl Philipp Emanuel Bach"Orquesta de Camara Carl Philipp Emanuel BachКамерный Оркестр "Карл Филипп Эммануэль Бах"Eckart HauptChristine SchornsheimMichael Schwarz (2)Peter LohseHerbert HeilmannKlaus GerbethManfred PernutzKarl-Heinz SchröterHeinz RadzischewskiKlaus KirbachThorsten RosenbuschErich KrügerChristian TromplerFrithjof GrabnerMathias SchmutzlerUwe HoljewilkenRudi LiebetrauChristoph Anacker + +1092675John ElwesJohn HahessyEnglish tenor singer, born 20 October 1946 in Westminster, England, UK.Needs VoteElwesJ. ElwesJohn Elwess[Cantor]John HahessyPro Cantione AntiquaEnsemble Vocal De LausanneLa Fenice + +1092988André LajdliFrench trumpet playerNeeds VoteAndrè LajdliAndré LaidliAndré LaïdliI PirañasDallas (11) + +1093560Jean-Bernard PommierFrench pianist and conductor. Born 1944, in Beziers.Needs Votehttps://en.wikipedia.org/wiki/Jean-Bernard_PommierJ. Bernard PommierJean Bernard PommierPommierЖ. Б. ПомьеЖан Бернар ПомьеЖан ПомьеЖан-Бернар Помье + +1094852Ruth CunninghamClassically trained musician, soprano vocalist and a sound healing practitioner. A founding member Anonymous 4.Needs VotePomeriumAnonymous 4Cappella Nova (2) + +1094857Frank HameleersDutch classical tenor vocalist and choir conductor.Needs Votehttp://www.frankhameleers.nl/Nederlands Kamerkoor + +1095206Irena GrafenauerSlovenian flute player and soloist, born June 19, 1957 in Ljubljana, she teaches at the Mozarteum, Salzburg.Needs Votehttp://en.wikipedia.org/wiki/Irena_GrafenauerGrafenauerIrena GrafenbauerIrina GrafenauerSymphonie-Orchester Des Bayerischen RundfunksMünchner Nonett + +1095207Patrick GalloisFrench flutist and conductor, born 1956, Linselles, France. He was a pupil of [a=Jean-Pierre Rampal]. Gallois won the Premier Prix at the Paris Conservatoire at the age of 19. Later he become principle flute of the [a626175], then began a solo career in 1984. Gallois has given first performances of works by [a809359], [a526575], [a658545], [a4207879], [a1689627] and [a413722].Needs Votehttp://www.patrickgallois.com/https://en.wikipedia.org/wiki/Patrick_GalloisGalloisP. GalloisPattrick GalloisПатрик Галлуパトリック・ガロワOrchestre National De FranceOrpheus Chamber Orchestra + +1095275Eric BeamAmerican musician, singer, and songwriter.Needs VoteBeamE. BeamE. DeamFelix Harp + +1096115Tolga KashifTolga KaşifLondon-born British musical conductor, composer, orchestrator, producer and arranger of Turkish Cypriot descent. Born in 1962.Needs Votehttp://en.wikipedia.org/wiki/Tolga_KashifKashifT KashifT ZzKashifT. KashifTK + +1096165Alvi VuorinenNeeds Major ChangesA. VuorinenVuorinen + +1096413Dietlind MayerClassical violinist. + +For the classical vocalist, see [a=Dietlind Mayer (2)]. +CorrectCollegium VocaleWolfgang Bauer ConsortOrchester Der Ludwigsburger SchlossfestspieleEnsemble Il Capriccio + +1096640David ChewEnglish cellist active in Brazil.Needs Votehttps://pt.wikipedia.org/wiki/David_Chewhttps://www.osb.com.br/musicos/DAVID-CHEWChewDavid ClewBBC Symphony OrchestraNational Youth Orchestra Of Great BritainLondon Mozart PlayersOrquestra Sinfônica BrasileiraPleeth Cello OctetRio Cello EnsembleOrquestra De Câmara Rio Strings + +1096780Gonzalo SorianoSpanish pianist, born March 14, 1913 in Alicante, Spain and died April 14, 1972 in Madrid, Spain.CorrectG. SorianoSoriano + +1097174Christian MoragaLos Angeles-based percussionist originally from Santiago, Chile. He studied in Cuba with master percussionist “Changuito”, as well as various genres of percussion in Peru and Brazil, and the Harbor Conservatory of the Performing Arts in New York City. Needs VoteChristian "Chilosky" MoragaChristian "Rychlowsky" MoragaCristian "Richlowski" MoragaOscar Hernández & Alma Libre + +1097300Karl-Heinz DommusGerman viola playerNeeds VoteKarl-Heinz Dommsカール=ハインツ・ドムスSuske-QuartettBerliner StreichquartettCamerata MusicaSalonorchester EclairSuske-Trio + +1097301Walter KlierWalter Klier is a German double bassist.Needs VoteW. KlierStaatskapelle Berlin + +1097302Matthias PfaenderClassical cellist. + +born: 1939-10-19 +died: 2001-05-10 + +Father of [a3580880]Needs VoteMatthias PfänderPfaenderマティアス-プフエンダーKammerorchester BerlinLeipziger Bach-CollegiumSuske-QuartettBerliner StreichquartettCamerata MusicaSuske-Trio + +1097307Raymond McGillReissue product manager at [l5320].Needs Vote + +1097545Tom Reeves (2)Jazz trumpeter. +Needs VoteT. ReevesThomas ReevesTommy ReevesShorty Rogers And His OrchestraJimmy Giuffre's Orchestra + +1097616Sandra ChurchAmerican flutist, born in Syracuse, New York. She started at the New York Philharmonic in 1998.Needs VoteSandra L. ChurchNew York Philharmonic + +1097801Heinz ZicklerClassical trumpet player.Needs VoteH. ZicklerHeinz ZieklerZicklerSüdwestdeutsches KammerorchesterThe Heidelberg Wind Ensemble + +1098076Miranda PlayfairClassical violinist.CorrectThe Academy Of St. Martin-in-the-FieldsOslo Sinfonietta + +1098128Christopher Wilson (2)Classical lute/guitar player.Needs VoteCWChr. WilsonChris WilsonChristopherКристофер ВилсонPeasants AllThe Consort Of MusickeCirca 1500The London "Pro Musica" Symphony OrchestraThe Praetorius ConsortLondon Pro MusicaThe London Music PlayersKithara (5) + +1098156Ian GammieClassical viol player.Needs Votehttp://www.boxandfir.com/PAGES/performers/gammie.htmDeller ConsortThe Consort Of MusickeThe City WaitesEnglish Consort Of Viols + +1098157John York SkinnerClassical countertenor.Needs VoteJ. Y. SkinnerJohn YorkJohn York-SkinnerYork SkinnerThe Consort Of Musicke + +1098168Elsa SchillerElsa Schiller (18 October 1897 - 27 November 1974) was a Hungarian-German classical music producer for [l7703], previously she was a concert pianist and music director of the German broadcaster [l270438] in Berlin. +Also credited as Executive Producer. +Needs VoteDr. Elsa SchillerProf. Elsa SchillerProf. Elsa schillerProf.Elsa Schiller + +1098169Alfred SteinkeGerman sound engineer.CorrectSTSteinke + +1098411Eberhard PalmGerman violinist, born 1939 in Dresden.Needs VotePalmGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaLeipziger Bach-Collegium + +1098413Klaus-Peter GützKlaus-Peter Gütz (born 1938) is a German oboist.Needs VoteKlaus Peter GützPeter GützGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigLeipziger Bach-Collegium + +1098414Achim BeyerClassic double bass playerNeeds VoteNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaLeipziger Bach-CollegiumLeipziger Barockorchester + +1098427Stine HasbirkDanish violinist, born in 1975.Needs VoteStine Hasbirk BrandtCailin QuartetRoyal Danish String QuartetDR SymfoniOrkestret + +1098438Alexander ButzClassical violist & liner notes authorNeeds VoteDR SymfoniOrkestret + +1098511Berto Pisano E La Sua OrchestraNeeds Major ChangesB. Pisano E La Sua OrchestraB. Pisano, La Sua OrchestraBerto Pisano And His OrchestraBerto Pisano E Sua OrquestraBerto Pisano Y OrquestaBerto Pisano Y Su OrquestaBerto Pisano, La Sua OrchestraF. Pisano E La Sua OrchestraOrch. : B. PisanoOrch. Berto PisanoOrchestra Berto PisanoOrquesta Berto PisanoOrquesta De Berto PisanoOrquesta De Beto PisanoBerto Pisano + +1098946Jutta ZoffJutta ZoffGerman harpist +Jutta Zoff was born in Bautzen, Germany on January 14, 1928 and died in Dresden, Germany on October 28, 2019. From 1941 to 1945 she studied harp under Prof. Eduard Niedermayr (Tonakademie Munich) and Heinrich Schlie ([a578737]). From 1943 on she plays as solo harpist. After 1945 she worked to establish the concert serial "Stunde der Musik". Since 1967 she was first solo harpist of [a578737]. She was awarded the [i]Kunstpreis[/i] of the GDR the same year. As solo artist she was travelling a lot in Europe, the USA, India, Japan and several Arabic countries.Needs Votehttps://de.wikipedia.org/wiki/Jutta_Zoffhttps://www.saechsische.de/neun-jahrzehnte-musik-3858605.htmlユッタ・ツォフStaatskapelle Dresden + +1099135Guido TitzeGerman classical oboistNeeds VoteDresdner PhilharmonieVirtuosi SaxoniaeAccademia DanielDresdner Barockorchester + +1099136Johann Georg PisendelGerman Baroque musician, violinist and composer (born December 26, 1687 in Cadolzburg, Germany - died November 25, 1755 in Dresden, Germany).Needs Votehttp://en.wikipedia.org/wiki/Johann_Georg_PisendelJ. G. PisendelJ.G. PisendelJohann PisendelPisendelStaatskapelle Dresden + +1099138Hans-Peter StegerGerman bassoonistCorrectHans Peter StegerStegerVirtuosi Saxoniae + +1099139Peter ThiemeGerman oboistCorrectP. ThiemeStaatskapelle DresdenDresdner BarocksolistenVirtuosi SaxoniaeSemper-House Band + +1099140Andreas LorenzGerman oboistNeeds VoteStaatskapelle DresdenStaatskapelle BerlinDresdner BarocksolistenDresdner PhilharmonieVirtuosi SaxoniaeDresdner KapellsolistenConcertino Dresden + +1099192Martin RosenthalClassical percussionist, born 1954 in Berlin, Germany.Needs VoteMarten RosenthalRadio-Sinfonieorchester StuttgartEnsemble 13Tafelmusik Baroque Orchestra + +1099651Ruben McFallAmerican jazz trumpet player, born February 1, 1931, in Los Angeles, California.Needs Votehttps://en.wikipedia.org/wiki/Ruben_McFallMcFallR. McFallReuben McFallWoody Herman And His OrchestraStan Kenton And His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +1099682Tommy DeVitoGaetano DeVitoAmerican doo-wop singer. Younger brother of [a7837951]. + +Born : June 19, 1928 in Montclair (or) Belleville, New Jersey. +Died : September 21, 2020 at the age of 92 in Las Vegas. + +Tommy was a member (as baritone vocal and lead guitarist) of the doo-wop group of "The Four Seasons".Needs Votehttps://en.wikipedia.org/wiki/Tommy_DeVito_(musician)https://www.imdb.com/name/nm0222719/T. DevitoTom DeVitoTom DevitoTom DezitoTom DivitoTommy De VitoTommy deVitoThe Four SeasonsThe Wonder Who?The Four LoversBill Cecere with The New Boys + +1099685Gerry PolciGerald Michael PolciNeeds VoteGerald M. PolciGerri PolciGerryJerry PolciThe Four Seasons + +1099693Raul DiazClassical hornist. + +For the Cuban composer, see [a=Raúl Díaz]Needs VoteRaoul DiazRaul DíazRaúl DíazThe Academy Of Ancient MusicLe Concert Des nationsGabrieli PlayersHanover BandThe English ConcertEnsemble Zero (2) + +1100931Il Giardino ArmonicoIl Giardino Armonico ("The Harmonious Garden") is a pioneering Italian early music ensemble founded in Milan in 1985 by Luca Pianca and Giovanni Antonini, primarily to play 17th- and 18th-century music on period instruments.Needs Votehttps://www.ilgiardinoarmonico.com/https://it.wikipedia.org/wiki/Il_Giardino_ArmonicoGiardino ArmonicoIl Giardino Armonico, MilanoАнсамбль Il Giardino Armonicoイル・ジャルディーノ・アルモニコPedro EstevanViktoria MullovaCarlo De MartiniSimon SchoutenOttavio DantoneMarco CeraHans-Peter WestermannMax EngelJean TubéryAlessandro TampieriDaniela NuzzoliSergio CiomeiMargreth KöllLorenzo GhielmiVittorio GhielmiChristophe CoinFabrizio CiprianiAlberto GrazziGianni MaraldiFrancesco CeraPaolo RizziGabriele CassoneOmar ZoboliLuca MarsanaElin GabrielssonGiovanni AntoniniPaolo BiordiEnrico OnofriLuca PiancaMichele BarchiEdward DeskurGlen BorlingVanni MorettoWilhelm BrunsDmitry SinkovskyMartin MürnerJohannes HinterholzerPaolo GrazziLuca GuglielmiLuca GiardiniCarlo LazzaroniDuilio M. GalfettiMarco TestoriFabio RavasiAlberto StevaninPaolo BeschiFederica ValliStefano BarneschiCharlie FischerAlessandro PiqueAlberto GuerraPatxi MonteroSimone BensiKonstantin TimokhineErnesto BraucherPaolo ZuccheriRiccardo MinasiPetr ZejfartEmiliano RodolfiRodney PradaMarcello ScandelliMarco Bianchi (3)Maria Cristina VasiJoachim HeldGiancarlo De FrenzaElena RussoElena ConfortiniLiana MoscaRiccardo DoniBoris BegelmanPier Luigi FabrettiFrancesco LattuadaFrancesco CollettiMarco BrolliJuan Francisco PadillaEva OertleHedwig ReffeinerGilat RotkopKatrin KraußAlice BisantiAngelo CalvoMichael JuenChandra R. MäderMichele FattoriJudith Huber (2)Mattia LaurellaMirjam Töws + +1100940Manfred HoneckAustrian violist and conductor, born 17 September 1958. He's the brother of [a1941669].Needs Votehttps://en.wikipedia.org/wiki/Manfred_Honeckhttps://imgartists.com/roster/manfred-honeck/https://www.imdb.com/name/nm2890600/HoneckМанфред ХонекOrchester Der Wiener StaatsoperWiener Philharmoniker + +1101237Werner Thomas-MifuneWerner Thomas-Mifune (1941 - 2016) was a German cellist, conductor and composer. He's the son of [a1047944].Needs VoteMifuneW. Thomas-MifuneW.T. MifuneW.Thomas-MifuneWerner ThomasWerner Thomas (2)Symphonie-Orchester Des Bayerischen RundfunksPhilharmonische Cellisten + +1101261Kari SundströmFinnish trombonist.CorrectHelsinki Philharmonic OrchestraMinnesota Orchestra + +1101507Martin HohermanAmerican cellist, born 25 October 1912 in Poland and died in 28 Match 1998 in the United States.Needs VoteHohermanマーティン・ホーエルマンBoston Pops OrchestraBoston Symphony Orchestra + +1101965Luciana ManciniItalian mezzo-soprano.Needs VoteChoeur de Chambre de NamurL'ArpeggiataScherzi MusicaliO/Modernt + +1102136Philippe NoharetFrench double bassistNeeds VotePhilippe NouaretOrchestre De ParisOrchestre National De L'Opéra De ParisTraffic Quintet + +1102140Thierry HuchinFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +1102191Keith PuddyClarinetist who also performs on various other instruments of the clarinet family, such as basset horn and chalumeau. + Needs VotePuddy K.Puddy. KThe Academy Of Ancient MusicLondon Wind OrchestraLondon Wind Trio + +1102235Fausto Cuevas IIIPercussionistNeeds VoteFausto Cuevas + +1102665Sergiu ComissionaIsraeli-American conductor and violinist. He was born 16 June 1928 in Bucharest, Romania and died 5 March 2005 in Oklahoma City, Oklahoma, USA.Needs VoteComissionaS. ComissionaSergie CommissionaSergiu ComisionaSergiu ComisssionaSergiu CommissionaС. КомиссионаOrquesta Sinfónica de RTVE + +1103793Minna AlénMinna Alén ForsSwedish violinist, born 1979 in Stockholm, Sweden.Needs VoteMinna AlenOslo Filharmoniske Orkester + +1103862Heinrich KeilholzSound and acoustic engineer. Born 21. Dezember 1908, in Hannover; died 21. April 1981, in Salzburg, Austria. +Worked for Deutsche Grammophon in the 1960s. His DGG recordings can be identified by a K or KE (usually followed by other letters, e.g. ◇Z). +Then followed a career as renowned acoustic engineer, refitting opera and concert houses in, e.g. Vienna, Stockholm, Salzburg.CorrectKKEKeilholz + +1104220Daniel MajeskeDaniel H. MajeskeAmerican violinist and concertmaster (born 1932 in Detroit - died 1993 in Euclid). +He made his orchestral debut with the Detroit Symphony Orchestra when he was 16. He then joined the United States Navy Band in Washington in 1951. After an audition with George Szell , he became the assistant concertmaster of the Cleveland Orchestra in 1959 and its associate concertmaster in 1967. Szell appointed him concertmaster in 1969. +CorrectDaniel MajeskiThe Cleveland OrchestraThe United States Army Band + +1105192Родион ЩедринРодион Константинович Щедрин - Rodion Konstantinovich ShchedrinRussian composer & pianist, born December 16, 1932 in Moscow - died 28 August, 2025. + +His name can also be transliterated as Ščedrin, Schtschedrin, Chtchedrine, and Szczedrin, among others. +Needs Votehttp://www.shchedrin.de/http://www.peoples.ru/art/music/composer/shedrin/http://ru.wikipedia.org/wiki/Щедрин,_Родион_Константиновичhttp://en.wikipedia.org/wiki/Rodion_Shchedrinhttps://www.imdb.com/name/nm0790183/http://www.sikorski.de/340/en/shchedrin_rodion.htmlhttp://home.wanadoo.nl/ovar/shched.htmChedrinChedrineChtchedrineChédrineR. ChtchedrineR. K. ŠčedrinR. SchchedrinR. SchedrinR. SchedrineR. SchtschedrinR. ShchedrinR. ShedrinR. ŠtšedrinR. ŠčedrinR. ŠčedrinasR. ŠčedrinsR.ShchedrinRadion ShchedrinRodeon StahedineRodeon StschedrinRodin ShchedrinRodio ShchedrinRodiom ChedrinRodion ChedrinRodion ChedrineRodion ChtchedrineRodion Konstantinovich ShchedrinRodion Konstantinovič ŠčedrinRodion SchchedrinRodion SchedrinRodion SchtschedrinRodion ShchedrinRodion ShcherdinRodion ShchredrinRodion ShechedrinRodion ShschedrinRodion ShtshedrinRodion SjtjedrinRodion StschedrinRodion ŠcedrinRodion ŠtšedrinRodion ŠčedrinRodione ShchedrinRodon ShchedrinRodrion ShchedrinRodron SchedrinRondion ShchedrinSchchedrinSchedrinSchtschedrinShchedrinShchedrin, RodionShchredrinShehedrinShschedrinShtchedrinStschedrinŠčedrinР. ЩедринР. К. ЩедринР. ЩедринР. Щедрин = R. ShchedrinР.ЩедринРодион Константинович ЩедринЩедринシチェドリン + +1106854Matteo Da PerugiaMatteo da PerugiaMatteo da Perugia (fl. 1400–1416) was a Medieval Italian composer, presumably from Perugia. From 1402 to 1407 he was the first magister cappellae of the Milan Cathedral;[1] his duties included being cantor and teaching three boys selected by the Cathedral deputies.Needs Votehttps://en.wikipedia.org/wiki/Matteo_da_PerugiaMatheus De PerusioMatheus de PerusioMatteo Da PeruggiaMatteo De PerugiaMatteo da PerugiaMatteo de PerusioPerugiaPerusio + +1106856The Wonder Who?The Wonder Who? were a pseudonym for the Four Seasons, who released a Bob Dylan cover, "Don't Think Twice," under that name in late 1965. Needs Vote"The Wonder Who"The Wonder WhoWonder WhoWonder Who?The Four SeasonsThe KokomosBilly Dixon & The TopicsBob GaudioNick MassiTommy DeVitoJoseph LabracioFrancesco Castelluccio + +1106955Paul BeerPaul Anthony BeerClassical trombone/sackbut player. Father of [a6435499]. +Needs VotePauzl BeerGabrieli ConsortLondon Wind OrchestraThe New SymphoniaLondon Cornett And Sackbut Ensemble + +1106956John IvesonBritish trombonist and music arranger. He began his professional career in 1965 as co-principal trombonist with the BBC Symphony Orchestra.Needs VoteIvesonJ IvesonJ. Ivesonジョン・アイヴソンPhilip Jones Brass EnsembleLondon Wind OrchestraLocke Brass Consort + +1107692Dj PacificAli AryanDJ/producer Pacific was born in Ahwaz, Persia (28 augustus 1977). He moved to the Netherlands when he was 9 years old. + +He began dj-ing at the age of 16. He was fascinated by the music that was played by his older brother [a=DJ Zagros]. He loved it and progressed from there. + +He began his DJ career in a local club X-ray (Zwolle). His appearance in the X-ray leaded to more performances as a guest DJ in other clubs, national as well as international.Needs Votehttps://www.djguide.nl/djinfo.p?djid=696https://partyflock.nl/artist/644:PacificDJ PacificPacificA.J.A. ProductionsPacific & Vandyck + +1108294Diego TosiClassical violinist.Needs Votehttp://www.diegotosi.com/en/Diégo TosiEnsemble Intercontemporain + +1108461Jacques BeaudoinCanadian classical bassistNeeds VoteJ. BeaudoinJacques BaudoinJacques BeaudôinL'infonieOrchestre symphonique de Montréal + +1108599John HardeeAmerican jazz tenor saxophonist, born December 20, 1918 in Corsicana, Texas, died May 18, 1984 in Dallas, Texas. +Played with [a=Don Albert] (tour 1937-1938), and recorded with [a=Tiny Grimes] (1946), [a=Russell Procope] (1946), [a=Earl Bostic] (1946), [a=Billy Kyle] (1946), [a=Helen Humes] (1947), [a=Billy Taylor] (1949), [a=Lucky Millinder] (1950), among others. +In 1946-1948 recorded as a leader. After moving to Dallas played clubs as leader until early 1960s and led school bands until c. 1976.Needs Votehttp://www.tshaonline.org/handbook/online/articles/fhadqhttp://en.wikipedia.org/wiki/John_Hardeehttps://adp.library.ucsb.edu/names/319948HardeeJ. HardeeJohn "Bad Man" HardeeJohn HardyTiny Grimes QuintetDan Burley And His Skiffle BoysThe Tiny Grimes SwingtetJohn Hardee SextetThe John Hardee SwingtetJohn Hardee QuartetBilly Kyle's Big EightRussell Procope's Big SixJohn Hardee Quintet + +1108752Joel QuarringtonCanadian classical double bass player, Professor of Double Bass/Contrabass, and author. Born 15 January 1955 in Toronto, Ontario. +He studied at [l=The University Of Toronto]. Member of the [a=Chamber Players Of Toronto] since 1973. Former Principal Double Bass of the [a=Hamilton Philharmonic Orchestra] (1980-1988), the [a=Canadian Opera Company Orchestra] (1989-1991), the [a=Toronto Symphony Orchestra] (1991-2006), the [a=National Arts Centre Orchestra] (2006-2021), and the [a=London Symphony Orchestra] (2013-2014). He was a co-founder of the [a=Amadeus Ensemble] in 1984. He has been Professor of Double Bass/Contrabass at [l996197] (since 1983), the [l323134] (since 2018), and Visiting Artist at the [l527847] (since 2015). +He is brother to [a=Tony Quarrington] & [a=Paul Quarrington] and married to cellist [a=Carole Sirois].Needs Votehttps://joelquarrington.com/https://www.facebook.com/quarrington/https://www.facebook.com/joel.quarringtonhttps://twitter.com/quarrinhttps://www.instagram.com/jquar/https://www.linkedin.com/in/joel-quarrington-314a8a18/https://www.playwithapro.com/live/Joel-Quarrington/https://www.youtube.com/user/JoelQuarringtonhttps://open.spotify.com/artist/0pajd5gFvu5FuP77BpHdo9https://music.apple.com/us/artist/joel-quarrington/3316932https://en.wikipedia.org/wiki/Joel_Quarringtonhttps://www.feenotes.com/database/artists/quarrington-joel-15th-january-1955-present/https://bassmagazine.online/en/joel-quarrington-may-21/https://arts.uottawa.ca/music/people/quarrington-joelhttps://www.orford.mu/en/academy/faculty/joel-quarrington/https://www.naxos.com/person/Joel_Quarrington/619.htmhttps://www.imdb.com/name/nm3941569/Joel A. QuarringtonJoel QuaringtonLondon Symphony OrchestraHamilton Philharmonic OrchestraToronto Symphony OrchestraChamber Players Of TorontoNational Arts Centre OrchestraAmadeus EnsembleLSO String EnsembleCanadian Opera Company OrchestraJoel Quarrington & FriendsEnsemble Vivant + +1109388Pascale HaagFrench classical oboist. +She made studies in baroque music including oboe, recorder and harpsichord.Needs VoteLes Arts FlorissantsLa Grande Ecurié Et La Chambre Du RoyLa Simphonie Du MaraisRicercar Consort + +1109390Eric MathotDouble bass, Contrabass and violone player.Needs VoteÉric MathodÉric MathotIl FondamentoLa Petite BandeRicercar ConsortLa PastorellaEnsemble ClematisCappella MediterraneaMillenium OrchestraTitanic EnsembleTivoli BandNew Century BaroqueSolstice EnsembleRedherring Baroque Ensemble + +1109396Ghislaine WautersGhislaine Wauters-ZipperlingClassical violin & viola da gamba instrumentalistNeeds VoteGhislaine WauterGhislaine WauthersGhislaine WoutersGhislaine ZipperlingGhislaine Wauters-ZipperlingCollegium VocaleLa Chapelle RoyaleLa Petite BandeRicercar ConsortWeser-RenaissanceCamerata KölnMusica FiataCurrendeFons MusicaeConcert SpirituelJohann Rosenmüller Ensemble + +1109463Björn BohlinSwedish classical oboistNeeds VoteGöteborgs Symfoniker + +1109465Lisa FordLisa Caroline FordClassical hornist, living outside of Gothenburg, Sweden, born November 3, 1963.Needs VoteGöteborgs SymfonikerGageego!Queen Charlotte's Global Orchestra + +1109521Joe BrittonJoseph E. BrittonAmerican jazz trombonist. + +Born: November 28, 1903 in Birmingham, Alabama. +Died: August 12, 1972 in New York City, New York. +Needs VoteBrittonJoe BurtonJoseph BrittonLucky Millinder And His OrchestraJelly Roll Morton's Hot SevenEdgar Hayes And His OrchestraFrank Bunch & His Fuzzy Wuzzies + +1109708Sato KnudsenAmerican cellist, born 1955 in Baltimore, Maryland.Needs VoteSato KnudsonBoston Pops OrchestraBoston Symphony OrchestraHawthorne String Quartet + +1109712Haldan MartinsonAmerican violinist.Needs VoteBoston Symphony OrchestraLos Angeles Philharmonic OrchestraBoston Symphony Chamber PlayersHawthorne String QuartetMetamorphosen Chamber Orchestra + +1109713Ronan LefkowitzBritish violinist.CorrectRoman LefkowitzBoston Symphony OrchestraHawthorne String QuartetCollage New Music + +1109725Francesco CeraItalian classical harpsichord player, organist and conductor, regarded as one of Italy’s leading early music specialist, internationally recognized for his performances of 17th and 18th century keyboard music, as well as conductor of Italian vocal repertoire.Needs Votehttps://francescocera.it/Il Giardino ArmonicoI BarocchistiTheatrum InstrumentorumEnsemble VanitasEnsemble Arte-Musica + +1109917The WoodchoppersDixieland bandNeeds Vote + +1109936John Price (4)Bassoon player.Needs VoteLondon Philharmonic OrchestraMichael Thompson Wind QuartetMichael Thompson Wind QuintetMichael Thompson Wind Ensemble + +1109937Robert Hill (6)British clarinet player, born in Enfield, Middlesex and studied at the Royal Academy of Music.Needs VoteLondon Philharmonic OrchestraLondon Wind OrchestraMichael Thompson Wind QuartetMichael Thompson Wind QuintetMichael Thompson Wind Ensemble + +1110018Cliff SmallsClifton Arnold SmallsAmerican jazz trombonist, pianist, conductor and arranger. +Born: March 3, 1918 in Charleston, South Carolina. +Died: 2008 in Brooklyn, New York City, New York. +Needs VoteC. SmallC. SmallsCliff SmallCliff StoneClifton A. SmallsClifton SmallClifton SmallsClifton Smalls OrchestraEarl Hines And His OrchestraEarl Bostic And His OrchestraBennie Green And His OrchestraBennie Green SextetOliver Jackson TrioNorris Turney QuintetThe Arvell Shaw QuintetThe Cliff Smalls Septet + +1110108Emmanuel HahnEmmanuel Hahn is a German violinist. He's the son of [a6290885].Needs VoteMünchner RundfunkorchesterAndromeda Mega Express Orchestra + +1110264Per HannevoldBassoonistNeeds VoteBergen Filharmoniske OrkesterBergen Woodwind Quintet + +1110713Michel GuyotClassical violinist.Needs VoteM. GuyotEnsemble Orchestral De ParisEnsemble Instrumental De France + +1110771Warren LuckeyAmerican jazz saxophonist. +Warren worked with Louis Armstrong, Aretha Franklin, Dizzy Gillespie and others. + +Born : March 05, 1920 in Dallas, Texas. +Died : July 11, 2005 in Uniondale, New York.CorrectLuckey WarrenLuckyLucky WarrenWarren "Tenor Sax" LuckyWarren LuckyDizzy Gillespie And His OrchestraDizzy Gillespie Big BandWarren Lucky And ComboMickey 'Guitar' Baker & His House Rockers + +1110799Anthony GoldstoneClassical pianist, born July 25, 1944 in Liverpool; died January 2, 2017. +Married [a4458362].Needs VoteA. GoldstoneGoldstoneGoldstone And Clemmow + +1111031S-DeeSimon DilosaSimon Dilosa aka S-Dee (Born 1986), is hailed as one of the biggest Hardstyle Talents in Australia. At a young age he was surrounded by music; his father was a professional musician for 30 years. While growing up he was shown how to play the drums & piano. By the age of 16, he started getting involved with Electronic music. + +S-Dee started his own Radio show in 2001 hosting one of the only Harddance stations on local radio, inviting guests from all around Australia. From this moment he gained a cult following which led him into the club/rave scene. + +His passion for music and djing exploded when he stood behind the decks for the first time, playing out to hundreds of people. Since that first taste back at the start of 2004, S-Dee has played at thousands of events, which include main stage Defqon.1 Australia, Q-base, and not to mention on most main stage hard dance club/rave/festival that has ever been thrown in Sydney Australia. + +In 2008, 2009 & 2012 S Dee was mentioned in the top 50 DJ's in the whole of Australia! + +S-Dee has had support all over the world from artists such as Headhunterz, Code Black, Showtek, D-Block & S-Te-Fan, Toneshifterz, Scope DJ, A-Lusion, Brennan Heart, Kutski, Dj Isaac & Da Tweekaz just to name a few.Needs Votehttps://facebook.com/sdeemediahttps://instagram.com/sdeemediahttps://twitch.tv/s_deeS DeeSDeeSdeeSimon Dilosa + +1111129Max GobermanAmerican conductor and violinist (* 08 February 1911 in Philadelphia, Pennsylvania, USA; † 31 December 1962 in Vienna, Austria).Needs Votehttps://en.wikipedia.org/wiki/Max_Gobermanhttps://www.bach-cantatas.com/Bio/Goberman-Max.htmGobermanMax Goberman OrchestraThe Philadelphia OrchestraNew York Sinfonietta + +1111130Friedrich MiksovskyAustrian violinist.CorrectWiener Symphoniker + +1111133Dietfried GürtlerDietfried Gürtler (12 September 1938 in Vienna, Austria - 15 December 2019) was an Austrian cellist. Brother of [a6971657]. +Also known as Dieter Gürtler.Needs VoteDieter GürtlerDietfried GurtlerOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterWiener KammerorchesterWiener BarockensembleJeunesses MusicalesSeifert String Quartet + +1111201Claudia SteebClassical viola player.Needs VoteClaudia StebMusica Antiqua KölnConcerto KölnLa StagioneCantus CöllnLes Adieux + +1111202Dorothea WolffClassical cellist.Needs VoteEsbjerg EnsembleMusica Antiqua Köln + +1111203Katharina WolffClassical violinist.Needs VoteKattarina WolffMusica Antiqua KölnLe Concert Des nationsCapriccio StravaganteOpera Fuoco + +1111204Andrea KellerClassical violinist.Needs VoteCappella Musicale Di S. Petronio Di BolognaLa Chapelle RoyaleMusica Antiqua KölnConcerto KölnCantus CöllnCappella ColoniensisHarmonie UniverselleL'arte Del MondoLa Grande Chapelle + +1111205Jürgen FichtnerViol player.Needs VoteJ. FichtnerJurgen FichtnerMusica Antiqua KölnCollegium AureumDas Salonorchester CöllnKölner Violen-Consort + +1111206Thomas PietschClassical violinist.Needs VoteMusica Antiqua KölnIl Complesso Barocco + +1111208Andreas SperingClassical harpsichordist, organist and conductor.Needs Votehttps://en.wikipedia.org/wiki/Andreas_Speringhttps://de.wikipedia.org/wiki/Andreas_SperingMusica Antiqua Köln + +1111209Werner EhrhardtClassical violinist and conductor. Founder of the German ensembles [a=Concerto Köln], [a=l'arte del mondo], born in 1957 in Cologne, Germany.Needs Votehttp://www.lartedelmondo.deWerner ErhardWerner ErhardtMusica Antiqua KölnConcerto KölnCantus CöllnL'arte Del Mondo + +1111210Joris van GoethemRecorder player.Needs VoteJoris Van GoethemMusica Antiqua KölnCapilla FlamencaFlanders Recorder QuartetFlanders Recorder Duo + +1111211Raimund NolteClassical viola player and bass-baritone vocalist.Needs Votehttp://www.raimund-nolte.de/NolteSequentia (2)Musica Antiqua KölnCantus CöllnRheinische Kantorei + +1111212Anton SteckGerman classical violinist, born 1965 in Freudenstadt. He began studying the modern violin with Jörg-Wolfgang Jahn in Karlsruhe and the baroque violin with [a=Reinhard Goebel] in Cologne. After his studies he served as concertmaster for Musica Antiqua Köln and the French ensemble Les Musicians du Louvre under [a=Marc Minkowski]. He is known in musical circles as an outstanding baroque violin soloist. Needs VoteA. SteckSteckMusica Antiqua KölnConcerto KölnModo AntiquoLes Musiciens Du LouvreOrnamente 99Barockorchester L'Arpa FestanteEnsemble 1700Schuppanzigh Quartett + +1111213Henriette BakkerClassical bassoonist.Needs VoteMusica Antiqua KölnLa Petite Bande + +1111214Marion MoonenClassical Traverso Flautist.Needs VoteThe Amsterdam Baroque OrchestraMusica Antiqua KölnMusica Ad RhenumHannoversche HofkapelleNetherlands Bach CollegiumDas Neue OrchesterVan Swieten TrioEnsemble CristoforiVan Swieten SocietyHague Wind Ensemble Oktopus + +1111215Dane RobertsAmerican viol and double bass player. + +He teaches at the College for Music and the Performing Arts in Frankfurt-am-Main and at the Handel Academy in Karlsruhe. +Needs VoteD. RobertsDenton RobertsEnsemble ModernAnima EternaConcentus Musicus WienMusica Antiqua KölnConcerto KölnCamerata Academica SalzburgThe Chamber Orchestra Of EuropeFreiburger BarockorchesterDe Nederlandse BachverenigingTafelmusik Baroque OrchestraLa Stravaganza KölnOrchestra Of The 18th CenturyCapriccio StravaganteNova StravaganzaThe Rare Fruits CouncilHarmonie UniverselleCappella Academica Frankfurt + +1111217Phoebe CarraiClassical cellist. Conductor of [a14930855]. +Born October 15, 1955 in Boston, Massachusetts, USA.Needs Votehttps://www.phoebecarrai.com/P. CarraiMusica Antiqua KölnSchola Cantorum BasiliensisTafelmusik Baroque OrchestraBoston BaroqueIl Complesso BaroccoArcadian Academy + +1111218Charles PutnamClassical hornist.Needs VoteCharlie PutnamOrchester Der Beethovenhalle BonnSinfonia VarsoviaConcentus Musicus WienMusica Antiqua KölnAmerican Horn Quartet + +1111219Renée AllenClassical hornist.Needs VoteRenee AllenRenée AllanMusica Antiqua KölnConcerto KölnLa Petite BandeHannoversche HofkapelleOrchester Der Ludwigsburger SchlossfestspieleDresdner BarockorchesterScala Köln + +1111220Florian GeldsetzerClassical violinist.Needs VoteFlorian GoldsetzerMusica Antiqua KölnThe Chamber Orchestra Of EuropeDuisburger PhilharmonikerKölner KammerorchesterEssener PhilharmonikerBundesjugendorchester + +1111221Michael DückerTheorbist, lutenist & Chitarrone player. Founder of Ensemble [a=Nuovo Aspetto]Needs VoteMichael DuckerMusica Antiqua KölnCamerata Of The 18th CenturyLa Stravaganza KölnBarockorchester L'Arpa FestanteDresdner BarockorchesterHarmonie UniverselleEcho Du DanubeMusica Alta RipaNuovo Aspetto + +1111222Wolfgang DeyGerman classical oboist born in CologneNeeds VoteMusica Antiqua KölnConcerto KölnL'Orfeo BarockorchesterOrchester Damals Und Heute + +1111223Lex VosClassical oboist.Needs VoteLex VossCollegium VocaleMusica Antiqua KölnConcerto KölnMusica Ad RhenumIl Complesso BaroccoTelemann-Kammerorchester MichaelsteinTelemann Quartett Moskau + +1111224Bart SpanhoveRecorder player. Born 1961 in Eeklo (Belgium).Needs VoteMusica Antiqua KölnFlanders Recorder Quartet + +1111225Markus MöllenbeckA German classical cellist (born 1962 in Viersen).Needs VoteMöllenbeckBayerisches StaatsorchesterMusica Antiqua KölnHarmonie UniverselleFestspielorchester GöttingenStudierende Der Folkwang-Hochschule, Essen + +1111503Laura GhiroBritish violinistNeeds VoteScottish Ensemble + +1111506Cathy MarwoodCatherine MarwoodBritish violistNeeds VoteCatherine MarwoodEdinburgh String QuartetRoyal Liverpool Philharmonic OrchestraScottish EnsembleHebrides EnsembleFairfield Quartet + +1111658Wolfgang Von KessingerGerman classical violinist, born in 1968 in Kassel, Germany.Needs VoteWolfgang V. KessingerWolfgang v. KessingerWolfgang von KessingerMusica Antiqua KölnConcerto KölnBatzdorfer HofkapelleHarmonie Universelle + +1111680Susanne RegelGerman classical oboe and recorder player and teacher, she studied the historical oboe under Ku Ebbinge, and the recorder under Sebastien Marc at the Royal Conservatory in the Hague, and is a regular invited guest and soloist with many international ensembles.Needs Votehttp://www.susanneregel.de/The English Baroque SoloistsThe Academy Of Ancient MusicMusica Antiqua KölnConcerto KölnMusica AmphionCollegium 1704Le Cercle De L'HarmonieEnsemble L'OrnamentoDeutsche Händel-SolistenL'arte Del MondoCapella AugustinaKölner AkademieFestspielorchester GöttingenMusicaeterna + +1111681Monika NielenClassical oboist.Needs VoteMusica Antiqua KölnHimlische CantoreyHassler ConsortScala Köln + +1111970Ulrike FischerClassical string instrumentalistNeeds VoteUlrike FisherMusica Antiqua KölnAccademia BizantinaEnsemble CordiaL'Aura Soave CremonaZefiroConcerto MadrigalescoEnsemble BachWerkVokal + +1111971Sherman PlessnerClassical violinist.Needs VoteMusica Antiqua Köln + +1111972Victoria GunnClassical viola player.Needs VoteGabrieli ConsortMusica Antiqua KölnArcadian Academy + +1111973Christian RiegerHarpsichordist.Needs VoteC. RiegerRiegerMusica Antiqua Köln + +1111974Sebastian GriewischClassical violinist.Needs VoteMusica Antiqua KölnEssener Philharmoniker + +1111975Marie-Luise GeldsetzerClassical viola player.Needs VoteMarieluise GeldsetzerMusica Antiqua KölnDas Neue Orchester + +1111976Fred GüntherClassical viola player.Needs VoteFred GuentherMusica Antiqua KölnFrankfurter Opern- Und Museumsorchester + +1111977Mark MefsutClassical cellist.Needs VoteMusica Antiqua KölnNeue Philharmonie Westfalen + +1111978Detmar LeertouwerDutch classical cellist.Needs VoteMusica Antiqua KölnL'Orfeo Barockorchester + +1111979Almut GeldsetzerClassical viola player.Needs VoteMusica Antiqua Köln + +1112044Erik WerbaErik WerbaAustrian composer and pianist, born 23 May 1918 in Baden, Austria, died 9 April 1992 in Hinterbrühl, Austria.Correcthttp://de.wikipedia.org/wiki/Erik_WerbaE. WerbaEric WerbaErich WerbaErik WebaErik WerkaErika WebraErika WerbaProf. Dr. Erik WerbaWerbaЭрик ВебаЭрик Верба + +1112265Orchestre National Bordeaux AquitaineFrench symphony orchestra based in Bordeaux, known as Orchestre National Bordeaux Aquitaine since 1988 (as Orchestre de l'Opéra de Bordeaux before) and part of the [l1949166].Needs Votehttps://www.opera-bordeaux.com/les-artistes-49862#lorchestre-national-bordeaux-aquitainehttps://fr.wikipedia.org/wiki/Orchestre_national_Bordeaux_Aquitainehttps://en.wikipedia.org/wiki/Orchestre_National_Bordeaux_AquitaineBordeaux AquitaineBordeaux Aquitaine National OrchestraBordeaux National OrchestraEnsemble À Vent Français Bordeaux-AquitaineLes Solistes De Bordeaux-AquitaineNationalorchester Bordeaux AquitaineOrch. Philharmonique De BordeauxOrchestre Bordeaux AquitaineOrchestre Bordeaux-AquitaineOrchestre De Bordeaux AquitaineOrchestre De Bordeaux-AquitaineOrchestre National Bordeaux-AquitaineOrchestre de Bordeux AquitaineAlain LombardEtienne PéclardPaul DanielJean-Marie LamotheTjeerd OostendorpAlexis DescharmesThomas DuranKwamé RyanVladimir NemtanuLaurent OlléTasso AdamopoulosLaurent MaletJacques LiboubanPatrick CalafatoCatherine FagesMagali PrevotVladimir KafelnikovReiko IkehataSamuel ColesJean BataillonJean-Michel FourquetJean-françois DionJean-Jacques DionBruno RivaBoris RojanskyLaurence JaboulaySergei AkopovEsther BrayerMatthieu AramaCécile RouvièreRégis PoulainInstrumentistes Du Grand Théâtre De BordeauxClaire BerliozEric CassenMathieu SternatCyprien SemayneIsabelle DesbatsRichard RimbertHervé LafonDiem TranGuillaume JehlSandrine VasseurEric CoronZorica MilenkoviczMarie SteinmetzJérôme SimonpoliCatherine FischerPierre DumoussaudRenaud TaupinardThibault LepriAurélienne BraunerTristan LiehrEric AbeijonStéphane KwiatekStéphane Rougier (2)Jean-Yves GicquelSébastien BatutBruno Perret (2)Claude Del MedicoFranck VaginayManuel MetzgerChristophe DubosclardJeanine SoubourouMarc BrunelPatrice LambourRoland GaillardRémi HalterValérie PetiteDominique BaudouinBernard DoriacBruno ArmigniesGilles BalestroJacques RomanoJean-Marc DalmassoJulien Blanc (2)Dominique DescampsFrancis WillaumezJean-Daniel LecocqPatrice Guillon (2)Frédéric DemarleFrancis PedemayGilles FaubertCécile BerryEmmanuel GautierFrançoise CagniartFrédérique GastinelGeoffroy GautierJean-Marie CurtoMayorga DenisNicolas MouretPhilippe Girard (4)Véronique KnoellerAdrian NemtanuAgnès VitonAlan MoratinAngelica BorgelCarole MerinoCatherine JailletCécile CoppolaDaniela GrecuDoru DogaruEwgeni SawikowskiFabienne Perret-BancillonFrançois MarcelFrédéric DebandeGhislaine RobertJean-Michel DaillatJean-Michel FeuillonJudith NemtanuLaurence EscandeLidia GrigoreLilian LacosteMarius AcaruMasako Ono (3)Michael LavkerMireille RougerNathalie Mule-DonzacPatricia AndréRenaud LargillierYann BaraneckYves SoulasAnne-Marie AndreuFrançois Perret (2)Françoise JeanneretGhislaine TortosaJean-Étienne HaeuserMarie-Claude PerretMircea PaladeSébastien Jean (2)Florian MurtazaPauline Larreta + +1112507Igor RuhadzeClassical violinist.Needs VoteMusica Ad RhenumLa PrimaveraApollo EnsembleEnsemble Violini CapricciosiTaneyev Trio + +1112516Ellis BarteeUS American jazz drummerCorrectElis BarteeEllis BartesLionel Hampton And His Orchestra + +1112536Simon Wall (2)Classical tenor vocalist. +He held a choral scholarship at St John’s College, Cambridge, before taking up a scholarship at the Royal Academy of Music in London. +Upon graduating, he worked as personal assistant to composer [a443259], whilst often being invited to sing with British consorts such as the Oxford Camerata, Voces Sacrae, English Voices, The Sixteen, Monteverdi Choir, Cardinall's Musick, I Fagiolini, Cambridge Singers, European Voices, Polyphony, and Gabrieli Consort.Needs Votehttps://simonthetenor.comhttps://www.facebook.com/SimonWallEnglishTenorWallGabrieli ConsortOxford CamerataThe Cambridge SingersLondon VoicesThe Tallis ScholarsThe SixteenThe Monteverdi ChoirI FagioliniPolyphonyDe Nederlandse BachverenigingThe Choir Of The Temple ChurchThe Cardinall's MusickThe Eric Whitacre SingersLa Nuova MusicaPalace VoicesAlamireContrapunctus (2) + +1112559Andrew RuppBass vocalistNeeds VoteGabrieli ConsortSt. John's College ChoirPolyphonyThe Choir Of The Temple ChurchTenebrae (10) + +1112561Iain RhodesClassical tenor vocalist.Needs Votehttps://www.facebook.com/iain.rhodes.79https://www.bach-cantatas.com/Bio/Rhodes-Iain.htmhttps://www.imdb.com/name/nm9688648/The Monteverdi ChoirThe Holst Singers + +1112581Carsten WilliamsBritish classical French horn player. Born in in 1969 in Ealing, West London, England, UK. +He studied at [l305416] (graduated in 1992). He earned a position as French horn player at [a3380330] in 1992. 4th horn with the [a=Philharmonia Orchestra] since December 2007.Needs Votehttps://www.linkedin.com/in/carsten-williams-630bb859/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/carsten-williams/https://www.feenotes.com/database/artists/williams-carsten-1969-present/https://www.sulross.edu/event/3845/big-bend-brass-dayCarston WilliamsBBC Symphony OrchestraPhilharmonia OrchestraEuropean Union Youth OrchestraBritten SinfoniaThe English National Opera Orchestra + +1112619Neil BroughClassical trumpeter.Needs VoteThe English Baroque SoloistsThe King's ConsortArcangeloThe English ConcertRetrospect Ensemble + +1112637John ThurgoodBritish hornistNeeds VoteEnglish Chamber OrchestraThe English National Opera Orchestra + +1112643Thomas GuthrieClassical bass & baritone vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Guthrie-Thomas.htmTom GuthrieThe Choir Of The King's ConsortThe Cambridge SingersThe Monteverdi ChoirThe Academy Of Ancient Music ChorusI FagioliniPolyphonyThe Choir Of The Temple ChurchTenebrae (10) + +1112654Keith Roberts (3)Alto vocalist.CorrectPolyphonyWestminster Cathedral ChoirThe Choir Of The Temple Church + +1112660William TowersBritish Alto & Countertenor vocalist.Needs Votehttp://www.bach-cantatas.com/Bio/Towers-William.htmWill TowersGabrieli ConsortThe Monteverdi ChoirEx Cathedra Chamber ChoirHenry's EightThe Choir Of The Temple ChurchArmonico Consort + +1113369Savannah ChurchillSavannah ChurchillUS rhythm & blues and pop singer. +Savannah Churchill was born Savannah Valentine on August 21, 1920 in Colfax, LA. An only child, her father was a railroad man, working for the Missouri Pacific. In 1926, the Valentine family became part of the great black exodus from the rural South to the urban North, as Savannah's father switched from the Missouri Pacific to the Pennsylvania Railroad and moved the family to Brooklyn. + +Shortly after graduating from Girls' High School (in Brooklyn) in 1937, she married David Churchill and, of course, became Savannah Churchill. David and Savannah had two children; Gregory (born in 1938) and Michael (born in 1940). As a housewife and mother, Savannah had pretty much forsaken her love of singing and, in fact, was involved in learning dress design at New York University. In 1941, however, tragedy entered Savannah's life when her husband was killed in an automobile crash. + +Faced with the responsibility of supporting herself and her two young sons, Savannah made The decision to try singing professionally. She approached Benny Carter, a renowned Big Band leader of the day. He liked what he heard and gave her a job as the female vocalist with his band. + +Equally adept at belting out a jump blues tune or a mellow ballad, it was not long before recording offers starting coming Savannah's way. + +Her first two records were for Joe Davis' Beacon label, recorded and released in 1942. The labels first credited "Jimmy Lytell and his All Star Seven, Vocal Refrain by Savannah Churchill". Both records became hits, selling several hundred thousand copies. Due to Savannah's resultant popularity, Davis changed the labels to "Savannah Churchill and her All Star Seven" for future issues. + +Savannah next joined Benny Carter's Orchestra in 1943, recording at least five sides. This resulted in two Capitol releases, one side each with "Vocal by Savannah Churchill". + +In 1945, Irving Berman signed Savannah to Manor Records. Her third record for Manor, I Want To Be Loved, was her first with a vocal group. Their name was the Sentimentalists, a male group derived from the Brown Dots and soon to become the Four Tunes. One of the Sentimentalists, Pat Best, was a major factor in I Want To Be Loved becoming a big hit. He wrote the song (even though credit is given to Savannah on the label) and coached her in how she should sing it. + +From here on, male vocal groups would back most of Savannah's records. Next came two releases on Manor with backing by the Five Kings. Then, eight records on Manor and one on Arco, all with the Four Tunes on one or both sides. Arco was the new name for Manor starting in late 1949. Then came two more releases on Arco in 1950 followed by another two on Regal in late 1950 and early 1951, all backed by the Striders. + +There was one record issued on Columbia in 1948. These were two sides that Savannah and the Four Tunes had recorded, but not released, for Manor. + +In 1951, Savannah signed with RCA Victor resulting in five releases, all with vocal group backing. The first release was backed by the Four Tunes, who had moved to RCA Victor in 1949. The next three RCA Victor releases were backed by the Striders and the last by a pickup group. In 1951, Savannah, along with the Striders, appeared at the London Palladium. + +In 1953, Savannah went to another major label, Decca, producing five releases. The first is without vocal group on either side. The remainder have vocal groups on all sides, two with the Ray Charles Singers and the final two with an unknown "Quartet". + +There was one more release of note in 1956 on Argo, a subsidiary of Chess Records. This record has vocal group backing on both sides, believed to be by the Four Tunes. + +In 1960, Savannah recorded an album for Philadelphia's Jamie label, entitled Time Out For Tears, featuring new arrangements of several of her previously successful songs, and one single featuring 2 cuts from the album. + +Savannah died from pneumonia on April 20, 1974, leaving behind an abundance of consistently excellent records, including releases on four of the major labels. Needs Votehttps://adp.library.ucsb.edu/names/308565https://www.vocalgroupharmony.com/5ROWNEW/IWantToCry.htmChurchillS ChurchillS. ChruchillS. ChurchillSavannahSavannah Churchill And Her GroupsBenny Carter And His OrchestraSavannah Churchill And Her All Star SevenSavannah Churchill And Her Group + +1113567Loren KittAmerican clarinetist.Needs VoteNational Symphony OrchestraMilwaukee Symphony OrchestraThe Theater Chamber Players Of Kennedy CenterThe American Chamber Players + +1113573Glenn GarlickAmerican cellist.CorrectNational Symphony Orchestra + +1114061Bill CastagninoJazz trumpeter.Needs VoteCastagninoWoody Herman And His OrchestraThe Woody Herman Big BandKen Hanna And His OrchestraWoody Herman BandWoody Herman And His Third HerdWoody Herman And The Fourth HerdWoody Herman And The Swingin' Herd (2) + +1114064Dud HarveyTrumpet player.Needs VoteDude HarveyWoody Herman And His OrchestraThe Nat Pierce OrchestraWoody Herman BandWoody Herman And The Fourth HerdWoody Herman And The Swingin' Herd (2) + +1114630Diana CrafoordDiana Meraw CrafoordSwedish classical violist, born on April 10, 1976.Needs VoteDiana CrawfordSveriges Radios Symfoniorkester + +1114634Erik Sandberg (3)Swedish horn player and composer, born in 1974.Needs Votehttps://www.linkedin.com/in/erik-sandberg-6781b224/https://soundcloud.com/erikcsandberghttps://mastodon.nu/@Eriksandberghttps://www.svenskmusik.org/sv/s%C3%B6k?person=285Aalborg Symfoniorkester + +1114675Margarete AdorfGerman classical violinist.Needs Votehttps://www.drp-orchester.de/drp/orchester/musiker/musiker-adorf-margarete100.htmlRundfunk-Sinfonieorchester SaarbrückenThe Chamber Orchestra Of EuropeNieuw Sinfonietta AmsterdamMainzer KammerorchesterEnsemble AgoraDeutsche Radio Philharmonie Saarbrücken KaiserslauternNova StravaganzaEnsemble Explorations + +1114938Elizabeth JohnsonVaudeville blues singer, who recorded four titles for OKeh in 1928.Needs Vote + +1115013Distorted FXNeeds Major Changes + +1115062Eric Vernier (2)French horn player.Needs VoteOrchestre National De L'Opéra De ParisConcert ArbanLes Cuivres Français + +1115441Antonio DomenighiniItalian classical baritone [b]vocalist[/b] and Executive-ProducerNeeds Votehttps://www.facebook.com/antonio.domenighini.7Antonio DomenghiniCoro Del Centro Di Musica Antica Di PadovaCoro Della Radio Televisione Della Svizzera ItalianaEnsemble Cantilena Antiqua + +1116385Philippe CantorFrench baritone/bass vocalist.Needs VoteCantorP. CantorPh. CantorLes Arts FlorissantsHuelgas-EnsembleEnsemble Clément Janequin + +1116616Michael Harrison (4)Classical trumpeter & cornettist + +For the American composer of the same name, use [a267190]. +For the violinist of the same name, use [a5162339].Needs VoteMichael P. HarrisonGabrieli ConsortLondon BrassNew London ConsortThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe Consort Of MusickeOrchestra Of The 18th CenturyBaroque Brass Of LondonThe English Concert + +1116776Werner MeyendorfGerman classical hornist.Needs VoteMeyendorfW. MeyendorfВернер МейендорфMünchener Bach-OrchesterThe Neckar Septett + +1116780Rainer MoogGerman violist and teacher, born in Cologne, Germany.Needs VoteРэйнер Мугライナー・モークBerliner PhilharmonikerQuatuor VéghPhilharmonisches Oktett BerlinThe Amsterdam Chamber Music SocietyBerliner Solisten (2) + +1116781Alwin BauerGerman classical cellist.Needs VoteA. BauerA.lBauerAlwin SauerАльвин БауерDeutsche BachsolistenGewandhaus-Quartett LeipzigDas Europäische StreichquartettKölner Streichquartett + +1116785Rainer KussmaulGerman violinist and conductor, born June 3, 1946 in Mannheim, Germany. He's the brother of [a893101] and [a893102]. +He died March 27, 2017 in Freiburg im Breisgau, Germany.Needs Votehttps://www.br-klassik.de/aktuell/news-kritik/rainer-kussmaul-geiger-gestorben-100.htmlhttps://en.wikipedia.org/wiki/Rainer_Kussmaulhttps://www.bach-cantatas.com/Bio/Kussmaul-Rainer.htmKussmaulKußmaulR. KussmaulRainer Kußmaulライナー・カスマウルBerliner PhilharmonikerDeutsche BachsolistenBachcollegium StuttgartStuttgarter KlaviertrioThe Richard Laugs Piano QuintetCapella ClementinaBerliner Barock SolistenThe Heidelberg Wind EnsembleDas Kussmaul-Quartett + +1116787Karl-Otto HartmannKarl-Otto Hartmann is a German classical bassoonist.Needs VoteK. HartmanK. HartmannK.O. HartmannKarl HartmannKarl Otto HartmannStuttgarter KammerorchesterOrchester der Bayreuther FestspieleConsortium ClassicumNDR SinfonieorchesterOrchester Der Niedersächsischen Staatsoper Hannover + +1116813Jürgen Weber (2)Classical viola player.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksDeutsches StreichtrioRobert Schumann String QuartetMünchner Solisten Ensemble + +1117427Kristinn SigmundssonOpera singer (bass, occasionally baritone) from Reykjavík, Iceland, who studied biology and chemistry before he decided to become a classical opera singer in his home country in the mid-1980s. Toward the end of the decade, in about 1989, Kristinn decided to leave Iceland in order to start an international career, which turned out very promising: it should not take long any more until he finally got the chance to perform at the world's renowned opera houses (such as the Metropolitan Opera in New York, U.S.A., the Scala in Milan, Italy, and the Staatsoper in Vienna, Austria - to name the most notable ones).Needs Votehttps://en.wikipedia.org/wiki/Kristinn_SigmundssonKristinnSigmundssonHamrahlid ChoirChorus And Orchestra Of The Drottningholm Court Theatre + +1117569Mitchell WeissClassical clarinettistNeeds VoteMitch WeissMitchell Z. WeissOrchestra Of St. Luke's + +1119138Luigi PiovanoItalian classical cellist and conductor.Needs Votehttp://www.luigipiovano.com/it/https://en.wikipedia.org/wiki/Luigi_PiovanoConcerto ItalianoOrchestra dell'Accademia Nazionale di Santa CeciliaCamerata BoccheriniTrio StradivariTrio Latitude 41Archi Di Santa CeciliaMichelangelo Piano Quartet + +1119142David QuiggleClassical violist.Needs VoteLondon Philharmonic OrchestraCamerata Boccherini + +1119327Kate EckersleyBritish soprano vocalistNeeds VoteKEThe English Concert ChoirThe Schütz Choir Of London + +1120029Josef Suk (2)Josef SukCzech composer and violinist. Born January 4, 1874 in Křečovice (former Austro-Hungarian Empire), died May 29, 1935 in Benešov (former Czechoslovakia). Grandfather of violinist [a=Josef Suk], son-in-law of composer [a=Antonín Dvořák].Needs Votehttps://www.suksociety.cz/https://en.wikipedia.org/wiki/Josef_Suk_%28composer%29https://josefsuk.czweb.org/https://www.facebook.com/Josef-Suk-58406159800https://adp.library.ucsb.edu/index.php/mastertalent/detail/103298/Suk_JosefFukI. SukJ. SukJ.SukJos. SukJosef SukJosef ŠukJoseph SukJozef SukSukSuk J.Suk, J.ŠukИ. СукИозеф СукЙ. СукЙозеф СукスークČeské Kvarteto + +1120513Jack HollidayJazz pianistNeeds VoteThe Charlie Parker QuartetJoe Timer And His Orchestra + +1121501Clarence AtkinsonClassical viola player. +Former member of the [a=London Symphony Orchestra] (1966-1984).Needs VoteLondon Symphony Orchestra + +1121502Sue KinnersleySusan KinnersleyClassical violinist.Needs VoteSusan KinnersleyLondon Symphony OrchestraRoyal Philharmonic OrchestraOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicLondon Classical PlayersHanover Band + +1121506Simon HetheringtonClassical double bassist. +Former member of the [a=London Symphony Orchestra] (1979-1988).Needs VoteLondon Symphony OrchestraOrchestra Of The Royal Opera House, Covent Garden + +1121508Barry DavisBritish classical oboe & cor anglais player, and Oboe Lecturer. Born 1948 in London, England, UK. +He studied at the [l290263]. He joined the [a=Bournemouth Symphony Orchestra] at the age of 19 as Sub-Principal Oboe and then spent three years as Principal Oboe with the [a374006] in Manchester. On returning to London in 1974, he joined the [a=Royal Philharmonic Orchestra] as Principal Cor Anglais and Co-Principal Oboe. Since 1976, he has also been a member of [a=The Academy Of St. Martin-in-the-Fields]. In 1980, he was invited to join the [a=London Symphony Orchestra] as Principal Oboe/Cor Anglais (1981-1985). He took up the post of Oboe Lecturer at the Queensland Conservatorium of Music in August 1985.Needs Votehttps://open.spotify.com/artist/2kOjWlr9AMcIcxVLOc1c6zhttps://music.apple.com/us/artist/barry-davis/2211621http://www.move.com.au/artist/barry-davisバリー・デイヴィスLondon Symphony OrchestraRoyal Philharmonic OrchestraHallé OrchestraThe Academy Of St. Martin-in-the-FieldsBournemouth Symphony Orchestra + +1121511Douglas PowrieClassical cellist, and cello teacher. +Former member of the [a=London Symphony Orchestra] (1966-1983); Sub-Principal Cello in 1975.Needs VoteD. PowrieDavid PowrieLondon Symphony Orchestra + +1121512Bruce MollisonClassical double bassist. +Former Principal Double Bass of the [a=London Symphony Orchestra] (1976-1991).Needs Voteブルース・モリスンLondon Symphony OrchestraThe Royal Philharmonic Ensemble + +1121513Martin Jackson (2)Classical cellist.Needs VoteLondon Symphony Orchestra + +1121514Richard HolttumRetired classical viola player. +Former member of the [a=London Symphony Orchestra] (1979-March 2014). He retired in March 2014.Needs Votehttps://www.feenotes.com/database/artists/holttum-richard/London Symphony Orchestra + +1121515Stanley CastleClassical violinist. +Former member of the [a=London Symphony Orchestra] (1956-1991).Needs VoteS. Castleスタンリー・キャッスルLondon Symphony Orchestra + +1121516Paul MarrionBritish classical double bassist and teacher. Born in 1948 in Manchester, England, UK - Died 16 June 2019. +At the age of 19, he was appointed Sub-Principal of the [a=Ulster Orchestra] and two years later became Principal Double Bass with the [a=Royal Scottish National Orchestra]. He then played with the [a=London Symphony Orchestra] (Co-Principal Double Bass, 1978-1988) after which, in 1992, he was appointed Principal Double Bass with the [a=BBC Symphony Orchestra]. He also found time to play with [a=The Academy Of St. Martin-in-the-Fields]. When [a=Cantilena] was re-formed in 2001, he became their resident bassist. He retired to Scotland in 2012.Needs Votehttps://open.spotify.com/artist/5cT9gWoeFMBI2l4ggckYr5https://www.cantilenafestival.co.uk/news/36-paul-marrionhttps://lso.co.uk/more/news/1307-obituary-paul-marrion.htmlhttps://www.imdb.com/name/nm4048389/ポール・マリオンLondon Symphony OrchestraBBC Symphony OrchestraUlster OrchestraRoyal Scottish National OrchestraThe Academy Of St. Martin-in-the-FieldsCantilena + +1121963Lorenzo CoppolaItalian classical clarinet, chalumeau and basset horn player.Needs VoteCoppolaLaurenzo CoppolaOrchestre Des Champs ElyséesLe Concert Des nationsFreiburger BarockorchesterEuropa GalanteLa Petite BandeConcerto ItalianoLa StagioneStavanger SymfoniorkesterBalthasar-Neumann-EnsembleEnsemble PhilidorZefiroEnsemble DialoghiL'Harmonie Bohemienne + +1121966Ettore BelliClassical string instrumentalistNeeds VoteEuropa GalanteConcerto ItalianoDivertissement (2) + +1121969Mauro Lopes FerreiraClassical violinist.Needs Votehttp://www.cafe-zimmermann.com/ENG/musiciens.phpMario Lopes FerreiraMauro LopesMauro Lopez FerreiraPulcinellaLa Capella Reial De CatalunyaLe Concert Des nationsCapella SavariaHespèrion XXIConcerto ItalianoCafé ZimmermannVenice Baroque OrchestraAccordoneAuser MusiciInsieme Strumentale Di RomaLa VenexianaEnsemble SeicentonovecentoOrchestra Barocca ItalianaIl Pomo d'Oro + +1121970Francesca VicariClassical violinist.Needs VoteI MusiciEuropa GalanteConcerto ItalianoMichelangelo Piano Quartet + +1122013Bela DekanyHungarian born classical violinist.Needs VoteBella DekanyBéla DekanyBéla DékanyDela DekanyBBC Symphony OrchestraSydney Symphony OrchestraDekany Quartet + +1122169Patricia Johnson (3)Patricia Marion JohnsonBritish mezzo-soprano / contralto, born 21 October 1929 in London, England, died 17 December 2024. + +Patricia Johnson sang in the Covent Garden chorus before joining Sadler's Wells Opera in 1954. Carmen, Delilah and Azucena were among her early roles. She was at the Basle Opera from 1957, notably in the title role of La Cenerentola. In 1961 she joined the Deutsche Oper, Berlin, where she appeared as Azucena, Eboli, and Fricka. She created there in 1965 Baroness Grunwiesel in Henze's Der junge Lord, and also sang in Lulu and La Calisto in 1975. + +At the Salzburg Festival Patricia Johnson appeared in 1962-1963, as Marcellina in Le Nozze di Figaro, Her Glyndebourne roles in 1965-1968 included Jane Seymour in Anna Bolena, Lady Billows in Albert Herring, the Sorceress in Dido and Aeneas and Storage in Jephtha. At Covent Garden she sang the Countess de Coigny in Andrea Chénier in 1985, Andromache in King Priam, the Queen in Searle's Hamlet, the Kostelnicka, Marcellina, Baba the Turk and Mrs Sedley in Peter Grimes. She has also sung at Santa Fe, and Aix-en-Provence. Her roles have ranged from Cenerentola, Eboli and Lady Macbeth to Fricka, Herodias, and Claire in Der Besuch der alten Dame. More recently she has sung Adelaide in Arabella and the Old Lady in Candide in 1989, and Kabanichka in Katya Kabanova, one of her finest interpretations, in 1991. She has also appeared in many concerts and oratoriosNeeds Votehttp://www.bach-cantatas.com/Bio/Johnson-Patricia.htmhttps://en.wikipedia.org/wiki/Patricia_Johnson_(mezzo-soprano)Johnson + +1122349William Brown (9)William Paton BrownBritish classical violinist and violin teacher. +Former member of [a262940] (1970-1997).Needs Votehttps://www.northlondonmusicteachers.com/william-brown-violin-lessons-southgate-london-n14-6rbW. Brownウイリアム・ブラウンLondon Symphony Orchestra + +1122351Rod McGrathRoderick McGrathBritish classical cellist. +Aged 15, he joined the [a=National Youth Orchestra Of Great Britain] becoming Principal Cello of the orchestra in his final year. He then studied at the [l527847] and was made Principal Cello of the [a=Royal Academy Of Music Symphony Orchestra] in his first term, the first time this had happened in the Academy's history. He joined the [a=London Philharmonic Orchestra] as number two cello at the age of 21. Four years later, he joined the [a=London Symphony Orchestra] as Co-Principal Cello (1978-1998). he was a founding member of [a=The Rossetti Ensemble]. He joined the [a=West Australian Symphony Orchestra] in 1997 and also joined the [b]Australian Piano Quartet[/b] at the same time. +He and his family became Australian Citizens in 2000.Needs Votehttps://www.facebook.com/rod.mcgrath.90https://www.waso.com.au/about-waso/meet-the-orchestra/cello/rod-mcgrath/https://www.australianworldorchestra.com.au/1138-roderick-mcgrath/Rod MacGrathRod MacgrathRoderick McGrathロド・マグラーフLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Academy Of Music Symphony OrchestraWest Australian Symphony OrchestraNational Youth Orchestra Of Great BritainAustralian World OrchestraThe Rossetti Ensemble + +1122352Alexander TaylorAlexander M. TaylorClassical viola player. +Former Principal Viola of the [a=London Symphony Orchestra] (1969-1990).Needs VoteA. TaylorAlec TaylorAlex TaylorAlexander M. Taylorアレクサンダー・テイラーLondon Symphony OrchestraThe Chitinous EnsembleEnglish Chamber OrchestraThe Virtuosi Of England + +1122435Jean-Michel RivatJean-Michel Franck RivatFrench lyricist, composer, singer and producer (born 1939 in Vesoul, France). +Long time collaborator of [a=Frank Thomas] and of [a=Yves Dessca].Needs Votehttp://fr.wikipedia.org/wiki/Jean-Michel_RivatA. RivatEdouardF. RivatG. RivatJ . M. RivatJ M. RivatJ-M RivatJ-M. RivatJ. - M. RivatJ. -M. RivatJ. J. RivatJ. M RivatJ. M. RivatJ. M. RivaJ. M. RivadJ. M. RivalJ. M. RivallJ. M. RivasJ. M. RivatJ. M. RivetJ. M.RivatJ. Michel RivatJ. Michel, RivatJ. Michel-RivatJ. Michelle-RivatJ. MrivatJ. P. RivatJ. RivatJ.-M RivatJ.-M. RIvatJ.-M. RivasJ.-M. RivatJ.-M.RivatJ.-Michel RivatJ.J. RivatJ.L. RivatJ.M Michel RivatJ.M RivaJ.M RivatJ.M. RibatJ.M. RivaJ.M. RivalJ.M. RivatJ.M. RvatJ.M. TrivatJ.M.RivatJ.P. RivatJM RivatJM. RivatJM.RivatJMRivatJean M. RivatJean M.RivatJean Michel Franck RivatJean Michel RivatJean-Marc RivatJean-Michel Franck RivatJean-Michel RivaJm. RivatM. RivaM. RivatM. RivotM. リバM.RivatMichelMichel RivatRivaRivalRivasRivatRivat J.M.Rivat MusicaRivat, J. M.RivetT. RivatThomas RivatViratЖ. РиваEdouard + +1122665Owen B. MasingillOwen Byron MasingillAmerican conductor, musical arranger, composer and jazz trombone player. +Born August 25, 1920 in Heber Springs, Arkansas. Died February 28, 1979 (aged 58) Queens County, New York. +A talented trombone player, Masingill joined the Navy and was stationed on the USS Argonne on December 7, 1941 during the attack at Pearl Harbor. After the war ended, Masingill returned and settled in Philadelphia, becoming part of the jazz scene and joining the Charlie Barnet and Claude Thornhill orchestras. A talented arranger and conductor, Masingill's credits include work with artists as diverse as Della Reese, Screamin' Jay Hawkins, Dionne Warwick and Roy Hamilton, among others.Needs Votehttps://www.findagrave.com/memorial/234296816/owen-byron-masingillhttps://ancestors.familysearch.org/en/LKDB-XHN/owen-byron-masingill-1920-1979Maestro O. B. MasingillMasingillMassingiliMassingillMastingillO B MasingillO,B, MasingillO. B. MasengillO. B. MasingellO. B. MasingillO. B. MassengillO. B. MassingillO. B. MastingillO. MasingilO.B. MasingillO.B. MassengillO.B. MassingilO.B. MassingillO.B. MosingillO.B.MasingillObie MassingillOrchestre Sous La Direction De O. B. MasingillOwen B. 'Obie' MasingillOwen B. MassingillOwen MasingillOwen MassingillTommy Dorsey And His OrchestraCharlie Barnet And His OrchestraClaude Thornhill And His OrchestraO.B. Massingill And His Orchestra + +1122706Jan LewtakPolish classical violinist, artistic director and founder of the [a408824]. Born in Gdańsk, 1959.Needs Votehttp://www.bach-cantatas.com/Bio/Lewtak-Jan.htmWarsaw Philharmonic Chamber OrchestraOrkiestra Symfoniczna Filharmonii Narodowej + +1123200Jamie KimeGuitaristNeeds VoteJamie W. KimeZappa Plays ZappaThe Zappa Band + +1123587Josephine BeattyPseudonym on Gennett for [a=Alberta Hunter]. +Please note, "the vocal refrain credited to 'Beatty and Todd' on Gennett 5267 is by Eva Taylor and Clarence Todd." (Blues and gospel records 1890-1943, Oxford University Press, 1997, p. 47) Releases of this lone title should be credited to [a=Josephine Beatty (2)].Needs VoteAlberta Hunter (as Josephine Beatty)BeattyJ. BeattyJosephine Beatty (Alberta Hunter)Alberta Hunter + +1123920Kurt EichhornKurt Peter EichhornGerman conductor, born 4 August 1908 in Munich, Germany and died 29 June 1994 in Murnau, Germany.CorrectEichhornEkurt EichhornHans Peter RauscherJurt EichhornK. EichhornKarl EichhornKurt EichhorneKurt EickhornКурт Айххорнクルト・アイヒホルン + +1124571Jorgen VeltropJorgen VeltropCorrectJ VeltropJ. VeltropJ.VeltropJ.VettropJurgenJörgen VeltropClubwatchersMo'StyleRoyal Flush (2)The Groovaholic'sHavana ConnectionOro VerdeCavanaughRhythm Inc. (2) + +1125417Mauro RighiniItalian viola player.Needs Votehttp://violadamore-blog.blogspot.de/Ensemble "Concerto"Venice Baroque OrchestraIl Complesso BaroccoAcademia Montis RegalisAlessandro Stradella ConsortIl DemetrioEnsemble OttocentoMusica Elegentia + +1125621Danny NegriAmerican jazz pianist, born 1923, died 2002.Needs VoteNegriRed Norvo Sextet + +1126029Roger WelchViola playerNeeds VoteLondon Symphony Orchestra + +1126031Alan Smyth (2)Alan Owen SmythClassical viola player. Died in 2002. +Former member of the [a=London Symphony Orchestra] (1961-1975).Needs VoteAlan SmytheLondon Symphony OrchestraThe Gordon Rose OrchestraLondon Bach Ensemble + +1126052Nicholas BuschEnglish hornist. Born November 4, 1939 in north Devon, England, UK; died July 24, 2013. +He studied at the [l290263]. At the age of 19, he was First Horn player with the [a=Sadler's Wells Orchestra]. He played with the [a=BBC Concert Orchestra], and made his name as 2nd Principal Horn of the [a=Philharmonia Orchestra], then Principal Horn of the [a=New Philharmonia Orchestra], joining the ensemble in 1963. But it was at the [a=London Philharmonic Orchestra], which he joined as Principal Horn in 1972, that Busch settled and indeed flourished. He retired in 2006. +Son of composer [a3771349].Needs Votehttps://www.gramophone.co.uk/other/article/obituary-nicholas-busch-longtime-london-philharmonic-orchestra-principal-hornhttps://issuu.com/londonphilharmonic/docs/lpo_28_sep_prog_final_for_web/25https://www.the-paulmccartney-project.com/artist/nicholas-busch/Nicholas BushNick BuschNicolas BuschNicoles BuschНиколас БушLondon Philharmonic OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraSadler's Wells OrchestraLondon Wind SoloistsRobert Farnon And His OrchestraBBC Concert OrchestraThe London Wind QuintetThe Wind Virtuosi Of EnglandLondon Bach Ensemble + +1126256Paul AliprandiNeeds Major ChangesAliprandiP. AliprandiJean RignacEdmond Missa + +1126545Marc BenoitNeeds VoteM. BenoisM. BenoistM. BenoitM. BenoîtM.BenoistMarc BenoisMarc BenoistMarc BenoîtMarcel BenoistThe Four Dreamers + +1127051Mike AltermanJazz pianist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +1127429Bob EdmondsonTrombonist, arranger and producer. +Born March 05, 1935. +Died May 29, 2021. +Edmondson was in demand as a studio studio musician for film and TV music with Henry Mancini, Elmer Bernstein, Jack Elliott, Quincy Jones and John Williams. In the 60's and 70's he was an integral part of Herb Alpert and The Tijuana Brass.Needs VoteBob EdmondsenBob EdmonsonBob EdmundsonBob EdmunsonEdmondsonEdmonsonRobert EdmondsonRobert EdmonsonHarry James And His OrchestraHerb Alpert & The Tijuana BrassDizzy Gillespie Big BandGerald Wilson OrchestraBill Holman And His OrchestraUniversity Of Illinois Jazz BandDick Grove Big BandTerry Gibbs Big BandThe Gerald Wilson Big BandTerry Gibbs Dream BandHerschel Burke Gilbert Orchestra + +1127480Joel FullerAmerican violinist.CorrectNational Symphony Orchestra + +1127509Ricardo OdnoposoffAustrian-American violinist. He was born 24 February 1914 in Buenos Aires, Argentina and died 26 October 2004 in Vienna, Austria.Needs Votehttps://en.wikipedia.org/wiki/Ricardo_OdnoposoffRiccardo OdnoposoffRichard OdnoposoffNetherlands Chamber Orchestra + +1127621Don CicconeDonald Joseph CicconeDon Ciccone (born February 28, 1946, Jersey City, New Jersey, USA – died October 8, 2016, Ketchum, Idaho, USA) was an American singer, songwriter and musician. He was a founding member of the pop group [a319863]. Later in his career he was a member of [a107784] and [a121112], and [a267138].Needs Votehttps://en.wikipedia.org/wiki/Don_CicconeCiccioneCicconCicconeCicconiD. CicconeD. ScicconeDonDon CiconeDon. CicconeDonald CicconeDonald Joseph CicconeDon MarleyThe Four SeasonsThe Critters + +1127713Eric LilljequistNeeds Votehttps://www.facebook.com/eric.lilljequistE. LilljequistEric LiljequistLillequistLillijequistLilljequistOrphan (5)The Orphans (10) + +1127889Curtis LoweCurtis Sylvester Lowe, Sr.US jazz saxophonist (baritone and tenor), born November 15, 1919, in Chicago. +Lowe toured and recorded with Lionel Hampton 1949-1952, again in 1955-1957, then with Earl Hines 1958-1968. In the 1980s he worked as a freelance musician in the San Francisco area. +Died October 29, 1993.Correcthttps://en.wikipedia.org/wiki/Curtis_LoweC. LoweCurtis LoveLionel Hampton And His OrchestraJohnny Otis And His Orchestra + +1127909Larry Wilson (3)US Jazz TrombonistCorrectLionel Hampton And His Orchestra + +1128606Benjamin SansomClassical violinistNeeds VoteBen SansomGabrieli PlayersHanover BandThe Harmonious Society Of Tickle-Fiddle Gentlemen + +1128809Peter SermonPeter SermonViolist.Needs VoteRoyal Philharmonic Orchestra + +1128811Robert WinnRobert WinnFlutist.Needs Votehttps://robertwinn.de/R. WinnRoyal Philharmonic Orchestra + +1128812Christopher LydonChristopher LydonViolin player.Needs Votehttps://www.linkedin.com/in/christopher-lydon-24015623/https://web.archive.org/web/20181128011654/http://www.chrislydon.me/Royal Philharmonic Orchestra + +1128813Richard LaytonRichard LaytonViolinist.Needs VoteRoyal Philharmonic Orchestra + +1128814Gerald KirbyGerald KirbyBritish percussionist, born in 1959.Needs Votehttps://www.rpo.co.uk/orchestra-players/215-percussion/763-gerald-kirbyGavin Bryars EnsembleRoyal Philharmonic Orchestra + +1128815David NewlandDavid NewlandViolist.Needs VoteDavis NewlandNewland D.Newlands D.Newlands. DRoyal Philharmonic OrchestraAntarctica (6) + +1128816Marilyn GermainsMarilyn GermainsViolinist.Needs VoteRoyal Philharmonic Orchestra + +1128817Peter ChrippesPeter ChrippesPercussionist.Needs Votehttps://www.imdb.com/name/nm13693081/Royal Philharmonic OrchestraThe Military Ensemble Of London + +1128818Martin OwensMartin OwensPercussionist.Needs Votehttps://www.linkedin.com/in/martin-owens-a8213659/https://www.rpo.co.uk/orchestra-players/215-percussion/762-martin-owensRoyal Philharmonic OrchestraThe Gargoyles + +1128819Francois RiveFrancois RiveCellist.Needs VoteFrancios RiveFrancoise RiveFrançois RiveRoyal Philharmonic OrchestraThe London Cello SoundYoung Musicians Symphony Orchestra + +1128820David TowseDavid TowseClassical violin player.Needs VoteRoyal Philharmonic Orchestra + +1128821Norman Taylor (2)Norman TaylorClassical percussionist.Needs VoteRoyal Philharmonic OrchestraNew London ConsortLocke Brass Consort + +1128822Geoffrey BrowneGeoffrey BrowneBritish oboist, cor anglais player, author and lecturer.Needs Votehttps://gbrowneblue7.wixsite.com/dacacciaGeoff BrownGeoffrey BrownLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraGlyndebourne Festival Orchestra + +1128823Stephen QuigleyStephen QuigleyPercussionist.Needs Votehttps://www.rpo.co.uk/orchestra-players/215-percussion/761-stephen-quigleyRoyal Philharmonic Orchestra + +1128824Cyril NewtonCyril NewtonViolinist.Needs VoteRoyal Philharmonic Orchestra + +1128826Paul RinghamPaul John RinghamBritish trumpet player. Born in North London, December 19, 1951. Died July 15, 1999 at the age of 47.Needs Votehttps://www.theguardian.com/news/1999/aug/09/guardianobituariesRoyal Philharmonic OrchestraBournemouth Symphony OrchestraThe London Tijuana Band + +1129218Jacques MeertensDutch clarinetist. He was the principal clarinetist of the Royal Concertgebouw Orchestra from September 1990 until his retirement in April 2013.Needs Votehttp://en.wikipedia.org/wiki/Jacques_MeertensAsko EnsembleConcertgebouworkestEbony Band + +1129328Bohuslav MatoušekBohuslav MatoušekCzech classical violinist. + +Born 1949 in Havlíčkův Brod, former Czechoslovakia. Needs Votehttp://www.bohuslavmatousek.czBohuslav MatoucekBohuslav Matousekボフスラフ・マトウシェクPrague Chamber SoloistsYomiuri Nippon Symphony OrchestraStamic Quartet + +1129568Andrzej PanufnikSir Andrzej PanufnikPolish composer, pianist, conductor and pedagogue, born on 24 September 1914 in Warsaw, Poland, died on 27 October 1991 in Twickenham, England, UK. He was married to [a=Camilla Jessel] and is the father of [a1780527].Needs Votehttp://panufnik.com/https://en.wikipedia.org/wiki/Andrzej_PanufnikA.A. PanufnikA.j PanufnikAndrzey PanufnikPanufnikSir Andrzej PanufnikА. ПануфникOrkiestra Symfoniczna Filharmonii Narodowej + +1129612Nobuaki Fukukawa福川伸陽 (Nobuaki Fukukawa)Japanese horn player. +Born in Kanagawa, Japan in 1981. + +Japan Philharmonic Symphony Orchestra from 2003 +NHK Symphony Orchestra from Apr 1, 2013Correcthttps://twitter.com/rhapsodyinhorn福川伸陽NHK Symphony OrchestraJapan Philharmonic Symphony Orchestra + +1129727Helen Kim (2)American violinist.Needs VoteHelen H. KimHelen Hwaya KimSaint Louis Symphony OrchestraSeattle Symphony OrchestraYoung Musicians Foundation Debut OrchestraElgin Symphony OrchestraSteve Kuhn With StringsChicago Philharmonic + +1129768Helmut RohmGerman music critic, journalist, and liner notes author, born 1953 in Ulm, since 1985 editor for contemporary music for the German broadcaster [a639838].Needs VoteBayerischer Rundfunk + +1129843Steven DannCanadian viola player and teacher.Needs Votehttps://www.stevendannviola.com/Stephen DannSteve DannLes Violons du RoyAmici EnsembleSmithsonian Chamber OrchestraZebra TrioARC Ensemble + +1129949Luigi AlvaLuis Ernesto Alva TalledoPeruvian operatic tenor, born 10 April 1927 in Lima, Peru. Died 15 May 2025.Needs Votehttps://de.wikipedia.org/wiki/Luigi_Alvahttps://en.wikipedia.org/wiki/Luigi_Alvahttps://www.imdb.com/name/nm0023110/https://www.bach-cantatas.com/Bio/Alva-Luigi.htmAlvaIl ConteJuan Diego FlórezL. AlvaLuis AlvaЛуиджи Альва + +1130079Elizabeth NevilleBritish cellist, based in Australia.Needs VoteElisabeth NevilleSydney Symphony OrchestraLinden String Quartet + +1130128Michael BollinMichael Bollin (born 1958) is a German classical violinist.Needs VoteI SalonistiCamerata Bern + +1131071Yuan TungAmerican cellist, born in 1930 and died in 1992.CorrectThe Philadelphia OrchestraBuffalo Philharmonic OrchestraDallas Symphony OrchestraSaint Louis Symphony Orchestra + +1131072John KormanAmerican violinist.CorrectJohn KormoanSaint Louis Symphony Orchestra + +1131077Susan SlaughterTrumpet playerCorrectSaint Louis Symphony Orchestra + +1131247Rex Stewart And His 52nd Street StompersNeeds Major ChangesRex Stewart & His 52nd St StompersRex Stewart & His 52nd St. StompersRex Stewart & His 52nd Street StompersRex Stewart & His Fifty Second Street StompersRex Stewart & His Fifty-SecondRex Stewart & His Fifty-Second Street StompersRex Stewart And His 52nd St. StompersRex Stewart And His Fifty Second Street StompersRex Stewart And His Fifty-Second Street StompersDuke EllingtonJohnny HodgesLawrence BrownHarry CarneyJoe NantonSonny GreerRex StewartLouis BaconFreddy JenkinsBarney BigardHayes AlvisBilly Taylor Sr.Ceele BurkeBrick FleagleJack Maisel + +1131465Larry TownsendNeeds VoteLarry Townsend And His OrchestraTownsendSonny Stitt BandGene Ammons And His Band + +1131625Billy BarberisWilliam BarberisAmerican songwriter and producer from New York.Needs VoteB BarberisB. BaracrisB. BarbarisB. BarberisB. BarbieriB. BarbérisB.BarberisBaberisBambarisBarbarisBarberaisBarberisBarberysBart BarberisBerberisBerberysBill BarberisBilly BarberyE. BarberisG. BarberisP. BarberisW. BarberisWilliam BarberisThe New Order (2) + +1131674Meurig BowenClassical festival artistic director, journalist and liner notes author, born 5 December 1965. +A former choral scholar at King's College, Cambridge (1985-1988), he worked for the [url=http://www.discogs.com/artist/361592-Hilliard-Ensemble-The]Hilliard Ensemble[/url] (1989-1995), the [url=http://www.discogs.com/artist/1092558-Australian-Chamber-Orchestra]Australian Chamber Orchestra[/url] (1995-2001) before becoming director of the Lichfield Festival (2001-2004), then head of programming at the Aldeburgh Festival (2004-2006). He is currently artistic director of the Cheltenham Music Festival since 2007.Needs Votehttps://twitter.com/meurigbhttps://uk.linkedin.com/pub/meurig-bowen/51/102/504http://en.wikipedia.org/wiki/Meurig_BowenThe King's College Choir Of CambridgeCambridge Taverner Choir + +1131987Marie-Jeanne Lechaux Marie-Jeanne Lechaux KhayadjanianFrench violinist.Needs VoteMarie Jeanne LechauxOrchestre Des Concerts Lamoureux + +1132278Jean-Pierre StoraFrench musician & photographer born 1938 +Cousin of [a5743880]Needs Votehttps://fr.wikipedia.org/wiki/Jean-Pierre_StoraJ-P StoraJ. P. StoraJ.-P. StoraJ.P StoraJ.P. StoraP. Stora + +1132419Gisèle VestaAngèle Camille Henri LespinasseFrench songwriter (1921-2018)Needs VoteA. VestaC. VestaF. VestaG VestaG. VeataG. VestaG.VestaGisele VestaGisèle VistaVestaAngèle Lespinasse + +1132489Radoslaw SzulcRadosław SzulcViolinist and conductorNeeds Votehttps://www.camerata-europeana.de/R. SculzRadoslav SzulcRadosław SzulcSzulcSymphonie-Orchester Des Bayerischen RundfunksCamerata Europeana + +1132530Ludwig SenflSwiss composer of the Renaissance, active in Germany (born around 1486, died between December 2, 1542 and August 10, 1543).Correcthttp://en.wikipedia.org/wiki/Ludwig_Senfl?Senfl, Formerly Attrib. IsaacL. SenflL. SenfliLudovicus SenfliLudwig Senfl (1492-1555)Ludwig Senfl?Ludwig SennflLuis SenflSenflSennflЛ. Зенфль + +1132811Hollywood Jazz ConcertNeeds Major ChangesBopland BoysJazz Concert West Coast + +1132854Leila WardRetired classical crumhorn, recorder, shawm, oboe and percussion player.Needs VoteLaila WardRoyal Philharmonic OrchestraPhilharmonia OrchestraSt. George's Canzona + +1133471David VinesBritish trombonistNeeds VoteDave VinesCity Of Birmingham Symphony Orchestra + +1134397Russ AndrewsAmerican saxophonistNeeds VoteRussell AndrewsEarl Hines And His OrchestraHoward McGhee And His Orchestra + +1135197Kurt BlankClassical wind instrumentalistNeeds VoteRadio-Symphonie-Orchester Berlin + +1135198Siegfried GahlbeckClassical string instrumentalistNeeds VoteRadio-Symphonie-Orchester Berlin + +1135199Koji ToyodaJapanese violinist, born 1933 in Hamamatsu, Japan. Former Konzertmeister for the [a688716] from 1962 to 1979.Needs VoteGtrToyodaRadio-Symphonie-Orchester BerlinGrumiaux Quartet + +1135200Egon MelziarekClassical violistNeeds VoteRadio-Symphonie-Orchester Berlin + +1135201Werner HauptGerman cellist and Viola da Gamba instrumentalistNeeds VoteW. HauptKammerorchester BerlinMichailow-QuartettBastiaan-Quartett + +1135202Frithjof FestClassical oboistNeeds VoteF. FestFritjof FestRadio-Symphonie-Orchester Berlin + +1135203Herbert NeumannViol player.Needs VoteRadio-Symphonie-Orchester Berlin + +1135213Kris VerhelstClassical organist born in BelgiumNeeds VoteChris VerhelstКрис ВерхельстCollegium VocaleConcerto PalatinoCurrendeOltremontanoOscar And The WolfVox LuminisLes MuffattiScorpio CollectiefMore MaiorumRedherring Baroque Ensemble + +1135214Jean-Luc ThonnerieuxClassical viola playerNeeds VoteJean-Luc ThannérieuxJean-Luc ThonnerieuJean-Luc ThonnérieuxLes Arts FlorissantsCollegium VocaleLes Talens LyriquesLe Concert D'AstréeEnsemble Cristofori + +1135215Susan Hamilton (2)Scottish soprano (born 1970), focusing on baroque and contemporary repertoire.Needs Votehttps://en.wikipedia.org/wiki/Susan_Hamilton_(soprano)Suzan HamiltonCollegium VocaleThe Monteverdi ChoirRicercar ConsortA Sei VociThe King's ConsortDunedin ConsortLa Caccia + +1135216Alessandro MocciaClassical violin player.Needs VoteOrchestre Des Champs ElyséesCollegium VocaleCarme, Società Italiana di Musica da CameraQuatuor Turner + +1135217Christophe Robert (2)ViolinistNeeds VoteLes Arts FlorissantsCollegium VocaleLes Talens LyriquesLe Concert D'AstréeCafé ZimmermannIl GardellinoLes Ambassadeurs (6) + +1135218Markus SchuckTenor vocalistCorrectMarcus SchuckRIAS-KammerchorCollegium VocaleVocalconsort BerlinEnsemble Vokalzeit + +1135219Hager HananaClassical cellist.Needs VoteH. HananaHager Spaeter-HananaOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleLes Musiciens Du LouvreEnsemble CorrespondancesGli Angeli GenèveLes Ambassadeurs (6) + +1135221René VeenClassical tenor vocalist, composer and arrangerNeeds Votehttp://www.reneveen.com/reneveen.com/Welkom.htmlCollegium VocaleDe Nederlandse Bachvereniging + +1135222Attilio MotzoClassical violinist.Needs VoteA. MotzoAtilio MotzoAttilio MoztoOrchestre Des Champs ElyséesCollegium VocaleLes Talens LyriquesAuser MusiciEnsemble CristoforiOrchestra Barocca Italiana + +1135223Roberto AneddaClassical violinist.CorrectOrchestre Des Champs ElyséesCollegium Vocale + +1135224Meike AugustinClassical violinistNeeds VoteMeike Augustin-PicholletCollegium VocaleEnsemble europeen William Byrd + +1135225Paul HörmannDutch classical tenor vocalistCorrectCollegium Vocale + +1135226Vincent MalgrangeClassical cellist.Needs VoteOrchestre Des Champs ElyséesCollegium VocaleLes Musiciens Du LouvreLe Cercle De L'Harmonie + +1135227Gerhard HölzleTenor vocalistNeeds VoteGerhard HoelzleHölzleCollegium VocaleCappella AmsterdamStimmwerck + +1135228Werner GüraGerman classical tenor vocalist, born 1964 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Werner_G%C3%BCraGuraGüraW. GüraWerner GuraRegensburger DomspatzenCollegium VocaleGli Angeli Genève + +1135229James MunroDouble bass and violone player, born in Australia in 1968. A founder member of the ensemble Ausonia.Needs Votehttp://www.ensemble-ausonia.org/bio.php?id=3Anima EternaCollegium VocaleFreiburger BarockorchesterLa Petite BandeDe Nederlandse BachverenigingMusica AmphionLe Concert FrançaisAusoniaVox LuminisFreiburger BarockConsort + +1135230Veronika SkuplikGerman classical violinist. +The places of study were the Folkwang University of Applied Sciences Essen, the University of Münster, and the Academy for Early Music (now the Hochschule für Künste) Bremen, where she completed her diploma in 1991 with the main subject Baroque Violine (Prof. Thomas Albert). +She is a lecturer for baroque violine at the Bremen University of the Arts and has conducted master classes and orchestral projects at Utrecht (Netherlands), Malmo (Sweden) and Hamburg, Trigonale (Austria), Madison, Oberlin and Rochester as well as Carnegie Hall (USA).Needs Votehttp://www.veronikaskuplik.de/#homeSkuplikV. SkuplikVeronika ScuplikVéronika SkuplikCollegium VocaleConcerto KölnEnsemble La DolcezzaCapella Agostino SteffaniLa StagioneL'ArpeggiataCantus CöllnWeser-RenaissanceTragicomediaConcerto PalatinoOltremontanoDas Kleine KonzertFreiburger BarockConsortHimlische CantoreyAkadêmiaLes FavoritesCarissimi-Consort MünchenEnsemble ChelycusMovimento (4)Europäisches Hanse-Ensemble + +1135232Brigitte ClémentFrench classical viola player.Needs VoteOrchestre Des Champs ElyséesCollegium VocaleLes Talens LyriquesInsula Orchestra + +1135233Leenke De LegeClassical soprano vocalist.Needs VoteCollegium Vocale + +1135234Mieke WoutersClassical alto vocalistNeeds VoteMieke WouterCollegium VocaleThe Amsterdam Baroque ChoirCurrende + +1135235Danielle EtienneClassical flautist.CorrectD. EtienneDaniel EtienneDanièle EtienneCollegium VocaleLa Petite BandeRicercar Consort + +1135236Sirkka-Liisa KaakinenClassical violinist & concertmistress at Collegium VocaleNeeds VoteSirkka Liisa KaakinenSirkka-Liisa Kaakinen-PilchSirkka-Liisa Kaakinen-PilchCollegium VocaleCamerata Of The 18th CenturyOrchestra Of The 18th CenturyBattaliaCapella ThuringiaKirchheimer BachConsort + +1135237Elisabeth HermansSoprano.Needs VoteHuelgas-EnsembleCollegium VocaleCurrendeBachPlus + +1135238Giorgio OppoClassical Violin & Viola da Gamba instrumentalistNeeds VoteOrchestre Des Champs ElyséesCollegium VocaleAuser MusiciOrchestra ArconautiEnsemble L'Apothéose + +1135239Sabine PuhlmannGerman classical soprano vocalist, born in 1970 in Frankfurt am Main, Germany.Needs VoteRundfunkchor BerlinCollegium Vocale + +1135241Warren Trevelyan-JonesBritish tenor vocalist. He began his singing career as a Choral Scholar and Lay Clerk in Exeter Cathedral Choir, graduating in music at the University in 1988.Needs VoteWarren Trevelyan JonesGabrieli ConsortCollegium VocaleOrchestra Of The RenaissanceDunedin ConsortEnsemble Plus UltraThe Consort Of Melbourne + +1135242Bart VandewegeClassical bass vocalist, composer and conductor +Born in Gent May 22nd 1962Needs Votehttp://bartvandewege.com/nl/Bart Van De WegheBart VandewegheCollegium VocaleBach Collegium JapanIl GardellinoCurrendeVoces SuavesLa HispanoflamencaUtopia Ensemble + +1135244Lotte VisserClassical alto vocalistCorrectCollegium Vocale + +1135246Catherine PuigClassical viola player.Needs VoteCatherine Puig MasseurCatherine Puig-VasseurOrchestre Des Champs ElyséesCollegium VocaleIl Seminario MusicaleLes Musiciens Du Louvre + +1135247Corrado MasoniClassical violinist.Needs VoteOrchestre Des Champs ElyséesCollegium VocaleAuser MusiciOrchestra Arconauti + +1135248Simone MandersClassical soprano vocalist.Needs VoteCollegium VocaleCappella Amsterdam + +1135250Goedele DebelderClassical soprano vocalist.Needs VoteCollegium Vocale + +1135251Enrico TeddeClassical violinist.CorrectOrchestre Des Champs ElyséesCollegium Vocale + +1135252Dominik WörnerClassical bass & baritone vocalist.Needs VoteD. WörnerWörnerCollegium VocaleEx TemporeWeser-RenaissanceBalthasar-Neumann-ChorBach Collegium JapanZefiroChor & Orchester Der J.S. Bach Stiftung St. GallenLa Chapelle RhénaneJohann Rosenmüller EnsembleAbendmusiken BaselSette VociConcerto Stella MatutinaKirchheimer BachConsortGli ScarlattistiKirchheimer Düben Consort + +1135253Mira GlodeanuRomanian classical violinist born 1972 in Bucarest.Needs Votehttp://www.miraglodeanu.com/Collegium VocaleLa Petite BandeL'ArpeggiataConcerto PalatinoIl GardellinoLe Poème HarmoniqueAusoniaLes AgrémensLes Basses RéuniesEnsemble La FeniceLa PastorellaAkadêmiaInaltoNew Century Baroque + +1135254Lisinka De Vries-SchuringClassical alto vocalistCorrectCollegium Vocale + +1135255Virginie DescharmesClassical violinistNeeds VoteOrchestre Des Champs ElyséesCollegium VocaleLes Talens LyriquesLe Concert D'AstréeDa Pacem (2) + +1135256Florian MehltretterClassical bass & baritone vocalistNeeds VoteMehltretterCollegium VocaleHassler Consort + +1135557Kai LindKai Mikael LindBorn as Kaj Mikael Lindberg on December 31, 1937 in Helsinki, Finland. A Finnish singer, musician and actor.Needs VoteK. LindbergK.LindKaiKai LindbergKaj LindFour CatsMatit Ja MaijatKööriKolmosetLeo Lindblom Orkesteri + +1135686Andrew Brown (5)American jazz saxophonist (tenor, bass) and reed player, born February 2, 1900 in New York City, died August, 1960 in New York City. +Worked in the orchestra at the Cotton Club in New York in 1925, and remained when it became [a=The Missourians] under leadership of [a=Cab Calloway] in the late 1920s. He traveled with the orchestra to Europe in 1934 and played under Calloway until 1945, when he opened a teaching studio in New York.Needs Votehttps://en.wikipedia.org/wiki/Andrew_Brown_(musician)https://adp.library.ucsb.edu/index.php/mastertalent/detail/115452/Brown_Andrewhttps://adp.library.ucsb.edu/names/115452Andy BrownJ. BrownCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraCab Calloway And His Cotton Club OrchestraThe Missourians + +1135752Ingela ØienNorwegian classical flutist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +1135755Torbjørn OttersenNorwegian percussionist, born 1973 in Lier, Norway.Needs VoteBit 20 EnsembleOslo Filharmoniske OrkesterBergen Filharmoniske Orkester + +1135760Håkon Nilsen (2)Classical clarinetist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +1135915Daniele BoccaccioItalian classical keyboard instrumentalist and recording engineerNeeds Votehttp://www.danieleboccaccio.itEnsemble Seicento ItalianoAuser MusiciEnsemble San FeliceBanchetto Musicale - Il Piacere + +1135919Rossella CroceItalian classical violinist.Needs Votehttp://www.enrico-gatti.com/index.php/en/ensemble-aurora/artisti/20-rossella-crocehttps://www.musicanticamagliano.it/website/en/musicanticamagliano/teachers-mam/rossellacroce-mam/https://www.naxos.com/person/Croce_Rossella/129013.htmRosella CroceL'Arte Dell'ArcoEnsemble Seicento ItalianoVenice Baroque OrchestraAccordoneIl Complesso BaroccoCappella Della Pietà De' TurchiniEnsemble AuroraZefiroAccademia HermansHarmonices MundiEnsemble Les NationsFortuna EnsembleConcerto de' CavalieriEx Silvis Antiqua MusicaSeicento StravaganteEnsemble À L'Antica + +1135920Giangiacomo PinardiClassical guitar, lute and theorbo playerNeeds VotePinardiEuropa GalanteStavanger SymfoniorkesterEnsemble Seicento ItalianoI BarocchistiEnsemble ChiaroscuroAlessandro Stradella ConsortEnsemble Arte-MusicaEnsemble San FeliceTemplum MusicaeConcerto RomanoMillenium OrchestraArsenale SonoroSezione AureaAnimanticaFantazyasBiscantoresThe Italian Consort + +1135959Francesco StorinoItalian cellist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +1135993Gregorio MazzareseItalian tuba player. Needs VoteGregorio MazzaneseOrchestra dell'Accademia Nazionale di Santa Cecilia + +1136866Theresa CaudleClassical violinist and cornett player.Needs Votehttps://thesixteen.com/team/theresa-caudle/The Parley Of InstrumentsThe SixteenLondon BaroquePeasants AllHanover BandThe King's ConsortBrandenburg ConsortThe Symphony Of Harmony And InventionLondon Cornett And Sackbut EnsembleLondon Handel OrchestraThe London Early Music GroupThe English ConcertThe Gonzaga BandOrpheus BritannicusCanzona (3) + +1136867Judith TarlingBritish classical viola and violin player, born in Brighton.Correcthttp://www.whitecottagewebsites.co.uk/judytarling/Judy TarlingTarlingThe Parley Of InstrumentsThe Academy Of Ancient MusicRaglan Baroque PlayersHanover BandBrandenburg ConsortLondon Handel Orchestra + +1137096Angela CordellClassical French hornistCorrecthttps://www.angelacordellbilger.com/angelacordellbilger.com/Biography.htmlOrchestra Of St. Luke's + +1137317Arve Moen BergsetNorwegian vocalist, violinist and hardingfele player, born March 13, 1972, in Sandnessjøen, Nordland. Bergset grew up in Vinje, Telemark.Needs Votehttps://snl.no/Arve_Moen_BergsetArve MoenBukkene BruseOslo Filharmoniske Orkester + +1137344The Clerkes Of OxenfordChoir founded 1961 by [a1137345], in Oxford, Oxfordshire, United Kingdom and focussed on Tudor Church Music Needs VoteA Clerkes Of Oxenford ÉnekkarClerkes Of OxenfordMary KingIan HoneymanHarry ChristophersSally DunkleyRoy BattersPhilip CaveRachel BevanPeter HaywardRobin BardaChristopher HodgesDavid Watson (10)Alison StampRoger BrayFrederic GoodwinMichael SmedleyPhilip SibthorpRichard BrettJoseph PolglaseRichard Stevens (7)Jane GoddardHilary PhelpsMichael CockerhamElisabeth NormanElisabeth MacNamaraSarah CobboldMichael Hartley (2) + +1137345David WulstanEnglish conductor and teacher (b. Birmingham, 1937 - d. 2017). Founder and conductor of [a1137344], specialists in Early and Tudor English music, from 1961.Needs Votehttps://www.theguardian.com/music/2017/jun/02/david-wulstan-obituary + +1137844Anita MooreAmerican jazz singer.Needs Votehttps://www.allmusic.com/artist/anita-moore-mn0000992419MooreDuke Ellington And His OrchestraTSU Jazz Ensemble + +1137908Norman CarolAmerican violinist, born 1 July 1928 in Philadelphia, Pennsylvania. He was the concertmaster of [url=http://www.discogs.com/artist/27519-Philadelphia-Orchestra-The]The Philadelphia Orchestra[/url] from 1966 to 1994. Died 28 April 2024.Needs Votehttps://en.wikipedia.org/wiki/Norman_CarolНорман КэролThe Philadelphia OrchestraBoston Symphony OrchestraMinneapolis Symphony Orchestra + +1138261Frank MausGerman harpsichordist and pianist.CorrectFranz MausProf. Frank MausBerliner Philharmoniker + +1138264Catherine GayerAmerican operatic soprano, born 11 February 1937 in Los Angeles, California, USA.CorrectCatherina GayerGayer + +1138963Annie ChallanFrench harpist, born 5 November 1940 in Toulouse, France. She's the daughter of [a832659].Needs Votehttps://maindanslapatte.net/https://fr.wikipedia.org/wiki/Annie_Challanhttps://www.windmusic.org/index.php?lvl=author_see&id=9727A.ChallanAnnie ChalanAnnie ChallandChallanアニー・シャランOrchestre National De L'Opéra De ParisEnsemble Polyphonique De L'O.R.T.F.Orchestre ColonneTrio De Versailles + +1139434Frank TesinskyTrombone player.Needs VoteFank TesinskiFrank TesinkiFrank TesinskiTesinskyWoody Herman And His OrchestraWoody Herman And The Swingin' HerdLes Hooper Big Band + +1139438Putte WickmanHans Olof WickmanSwedish jazz clarinetist, born 10 September 1924 in Falun, died 14 February 2006 in Grycksbo, Sweden.Needs Votehttps://books.discogs.com/credit/714118-putte-wickmanhttps://www.allmusic.com/artist/putte-wickman-mn0000859070https://en.wikipedia.org/wiki/Putte_Wickmanhttps://sv.wikipedia.org/wiki/Putte_WickmanP WickmanP. WickmanP.WickmanPWPutte 'Pop' WickmanPutte VickmanPutte Wickman & TriosPutte Wickman Jam SessionPutte Wickman X 5Putte WickmannWickmanThe Swedish All StarsPutte Wickmans SextettLars Gullin SeptetPutte Wickmans KvartettPutte Wickmans OrkesterRobert Edman QuartetPutte Wickman KvintettReinhold Svensson SextetPutte Wickmans StorbandOmnibus Big BandJimmy Raney All StarsBengt Hallberg EnsemblePuttes Svängiga TomtarThe Favourite Soloists 1951Reinhold Svensson QuartetParisorkesternPuttes NattfriargängPuttes KöksgängJohan Adolfssons SextettPutte Wickmans SpecialorkesterPutte Wickmans TrioBob Laine-Gösta Törner Sextett + +1140240Raoul KoczalskiRaoul von KoczalskiBorn January 3, 1884 in Warszawa, died November 24, 1948 in Poznań. Polish pianist and composer. +Also known as [b]Jerzy Armando[/b] or [b]Georg Armand[/b].Needs Votehttp://en.wikipedia.org/wiki/Raoul_KoczalskiArmand Georg Raoul von KoczalskiKoczalskiRaoul Von KoczalskiRaoul von KoczalskiRaoul von KolczalskiRaul KoczalskiРауль Кочальскийラウル・コチャルスキ + +1140377Eric BartlettAmerican cellist.Needs VoteEric BarlettNew York PhilharmonicSpeculum MusicaeOrpheus Chamber OrchestraNew York New Music EnsembleMostly Mozart OrchestraColumbia String Quartet + +1140391Jimmy SalkoJazz trumpeterCorrectJames SalkoJim SalcoJim SalkoJimmy SalcoSalkoHarry James And His OrchestraJack Costanzo And His OrchestraStan Kenton And His Orchestra + +1141005The TidymanNeeds Major ChangesTidymanRim ShotAmadeus MozartRhapsody (2) + +1141462Roger FrischAmerican violinist.Needs VoteMinnesota OrchestraWilliam Schrickel's Heavy Rescue + +1141466Taichi ChenClassical violinist, born in Taiwan.CorrectMinnesota Orchestra + +1141778Larry HintonJazz drummerNeeds VoteFats Waller & His RhythmSkeets Tolbert And His Gentlemen Of Swing + +1142495Ossip SchnirlinOssip Schnirlin (3 March 1868 - 29 June 1939) was a Russian violinist, composer, arranger and teacher. He was a student of [a=Joseph Joachim], and he compiled a book of violin classics entitled 'Classics for violin and piano', printed by Simrock in Germany.Needs Vote + +1142516Rudolf FirkušnýCzech pianist. He was born 11 February 1912 in Napajedla, Moravia and died 19 July 1994 in Staatsburg, New York, USA.CorrectFikursnyFirkusnyFirkušnýRudolf FirkusnyRudolf FirkussnyRudolph FirkunsyRudolph FirkusnyРудольф Фиркушны + +1142700Christopher TerianClassical percussionist and teacher at the [l290263] (Junion Department).Needs Votehttps://www.rcm.ac.uk/junior/teachers/details/?id=02151English Chamber OrchestraPhilharmonia Orchestra + +1142704Michael Skinner (2)Classical percussionist, Professor of Percussion, and author. +In 1960, he joined the [b]City of Belfast Symphony Orchestra[/b] playing snare drum and xylophone. Coming to London in 1962, he began freelancing as an orchestral percussionist. In 1963 he joined the [a=Sadler's Wells Opera Company] as Principal Percussionist leaving in December 1968 to freelance again. Between 1970 and 1972, he was Principal Percussionist of the [a=London Philharmonic Orchestra] and between 1972 and 1973, Principal Percussionist of the [a=New Philharmonia Orchestra]. In October 1973, he joined the [a=Orchestra Of The Royal Opera House, Covent Garden] as Principal Percussion, a position he held for 31 years. Founder member of [a=The Guild Of Ancient Drums And Fifes]. He was Professof of Percussion at the [l=Royal College Of Music, London], [l1379071], and [l=The Guildhall School Of Music & Drama] (since 1989).Correcthttps://www.percworks.co.uk/michaelskinnerhttps://www.feenotes.com/database/artists/skinner-michael/https://en.everybodywiki.com/Michael_Skinner_(percussionist)https://peoplepill.com/people/michael-skinner-2https://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/133-michael-skinner/London Philharmonic OrchestraEnglish Chamber OrchestraNew Philharmonia OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenLondon Percussion EnsembleThe King's ConsortSadler's Wells Opera CompanyLocke Brass ConsortTristan Fry Percussion EnsembleThe Guild Of Ancient Drums And Fifes + +1142705Jonathan BoseClassical DrummerNeeds VoteJonathon BoseGabrieli Consort + +1142791Ferdinando PaerFerdinando PaërItalian composer, born 1 July 1771 in Parma, Italy and died 3 May 1839 in Paris, France.Needs Votehttps://adp.library.ucsb.edu/names/104193F. PaerF. PaërFerdinand PaerFerdinando PaërFerdinando PäerFernandino PaërFernandino PäerPaerPaërStaatskapelle Dresden + +1142842Helga SchrammAustrian operatic soprano and schlager singer. She's the mother of [a2699025].Needs VoteH. SchrammWiener StaatsopernchorDie Gloria-SistersDie ColibrisGeschwister Schramm + +1142919Ralph MatsonAmerican violinist.CorrectThe Cleveland OrchestraUtah Symphony Orchestra + +1142926Josef GingoldAmerican violinist and educator, born 28 October 1909 in Brest-Litowsk, Poland and died 11 January 1995 in Bloomington, Indiana.Needs Votehttps://en.wikipedia.org/wiki/Josef_Gingoldhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/104780/Gingold_JosefGingoldPress & GingoldDetroit Symphony OrchestraThe Cleveland OrchestraKreiner String Quartet + +1142985Dick MainsAmerican jazz trumpeter.Needs VoteTeddy Powell And His OrchestraBenny Goodman And His Orchestra + +1142987Jerry WinnerNeeds VoteTommy Dorsey And His OrchestraJerry Gray And His Orchestra + +1143254Armando BurattinItalian violinist.Needs VoteOrchestra Del Teatro Alla ScalaI Solisti Di Milano + +1143787Susanne LangnerClassical alto & mezzo-soprano vocalistNeeds Votehttp://www.susannelangner.de/LangnerRIAS-KammerchorOpella Musica + +1143790Claudia TürpeClassical alto vocalistCorrectRIAS-Kammerchor + +1143791Kai RoterbergClassical Tenor vocalist & Hurdy Gurdy playerNeeds VoteRIAS-KammerchorMusica Mensurata + +1143795Joachim BuhrmannClassical tenor vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Buhrmann-Joachim.htmJoachim BuhrmanRIAS-KammerchorSchola Heidelberg + +1143797Christian MückeClassical tenor vocalistCorrectC. MückeRIAS-KammerchorCollegium Vocale + +1143798Janusz GregorowiczBass vocalistCorrectRIAS-Kammerchor + +1143801Christiane VosselerClassical hornist.CorrectOrchestre Des Champs ElyséesCollegium VocaleAkademie Für Alte Musik BerlinHannoversche HofkapelleLa Stravaganza KölnBarockorchester L'Arpa Festante + +1143802Clemens HeidrichClassical bass & baritone vocalistNeeds Votehttp://clemensheidrich.de/HeidrichDresdner KammerchorDresdner KreuzchorRIAS-KammerchorRheinische KantoreiVocalconsort Berlin + +1143803Gabriele SteinfeldGerman classical violinist born in HamburgNeeds VoteAkademie Für Alte Musik BerlinMusica Antiqua KölnConcerto KölnModo AntiquoHamburger RatsmusikNova StravaganzaHarmonie UniverselleNeue Düsseldorfer HofmusikThe Hitchcock Trio (2) + +1143805Paula KibildisClassical violinist.Needs VoteAkademie Für Alte Musik BerlinMusica Antiqua KölnLa StagioneHannoversche HofkapelleDas Kleine KonzertLes AdieuxHassler ConsortScala KölnExquisite Noyse + +1143806Sabine Nürmberger-GembaczkaGerman classical soprano vocalistCorrectRIAS-Kammerchor + +1143807Raphael VosselerClassical horn player.Needs VoteRafael VosselerRafaël VosselerRaphaël WösselerOrchestre Des Champs ElyséesCollegium VocaleAkademie Für Alte Musik BerlinMusica Antiqua KölnConcerto KölnHannoversche HofkapelleLa Stravaganza KölnRicercar AcademyBarockorchester L'Arpa Festante + +1143809Bärbel KaiserAlto vocalistCorrectRIAS-Kammerchor + +1143810Judith SchmidtSoprano vocalist. + +Not to be confused with the Swiss mezzo-soprano vocalist [a6837284].Needs VoteRIAS-Kammerchor + +1143811Hildegard WiedemannClassical mezzo-soprano vocalistNeeds Votehttp://www.hildegard-wiedemann.de/Hildegard RützelChor Des Bayerischen RundfunksRIAS-Kammerchor + +1143812Kristin FossClassical soprano vocalistCorrectRIAS-Kammerchor + +1143814Stephan GählerClassical tenor.Needs VoteStephan M. GählerDresdner KammerchorRIAS-KammerchorCollegium VocaleCappella AmsterdamLa Capella DucaleZefiro TornaCappella AugustanaVocalconsort BerlinAthesinus Consort BerlinAbendmusiken Basel + +1143816Andrea EffmertAlto vocalistCorrectRIAS-Kammerchor + +1143817Madalena De FariaClassical soprano vocalistCorrectMadalena FariaMadalena de FariaRIAS-Kammerchor + +1143818Inès VillanuevaInés VillanuevaArgentinian classical soprano vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Villanueva-Ines.htmInes VillaInés VillanuevaRIAS-KammerchorOctavia Alta De Namur + +1143819Paul MayrGerman Bass vocalist.Needs VoteRIAS-Kammerchor + +1143821Klaus ThiemBass / Baritone vocalistNeeds VoteRIAS-Kammerchor + +1143822Inka DöringClassical cellistNeeds VoteAnima EternaAkademie Für Alte Musik BerlinLa Petite Bande + +1143823Rudolf PreckwinkelClassical bass vocalist, also contrabass player.Needs VoteRIAS-KammerchorOrlando Di Lasso Ensemble + +1143824Anette LöschGerman classical soprano vocalist born in SchweinfurtCorrectRIAS-Kammerchor + +1143825Michael BoschGerman classical oboist, born in 1967 in Munich, Germany.Needs VoteAkademie Für Alte Musik BerlinConcerto KölnCollegium 1704Le Musiche NoveChursächsische Philharmonie + +1143827Volker ArndtGerman tenor Volker Arndt (born 1965 in Kleinmachnow) was a member of the [a=Thomanerchor] Leipzig from 1976 to 1984, since 1997 he is a member of the [a=RIAS-Kammerchor].Needs Votehttp://www.bach-cantatas.com/Bio/Arndt-Volker.htmVolker Arndt (Thomaner)RIAS-KammerchorThomanerchorCapella Angelica + +1143828Marie-Luise WilkeAlto vocalistCorrectMarie-Louise WilkeRIAS-Kammerchor + +1143829Sibylle HuntgeburthGerman classical cellistNeeds VoteSibylle HunteburthSibylle HunthgeburtSybille HundtgeburthAkademie Für Alte Musik BerlinConcerto KölnFreiburger BarockorchesterCapella Agostino SteffaniHandel's CompanyBarockorchester caterva musica + +1143830Nathalie SiebertGerman soprano vocalistCorrectRIAS-KammerchorVocalconsort Berlin + +1143832Werner MatuschClassical bass vocalistNeeds VoteRIAS-Kammerchor + +1143833Friedemann KörnerClassical tenor vocalistNeeds VoteRIAS-KammerchorBerliner Hymnentafel + +1143834Christine BohnenkampGerman alto vocalistCorrectRIAS-KammerchorVocalconsort Berlin + +1143835Sarah ConnollyBritish mezzo soprano vocalist, born 13 June 1963.Needs Votehttps://www.sarah-connolly.co.uk/ConnollyDame Sarah ConnollyS. ConnollyThe Sixteen + +1143837Wolfgang EblingClassical tenor vocalistNeeds VoteRIAS-Kammerchor + +1143838Friedemann KlosGerman bass vocalist and voice teacher, based in Dresden.Needs VoteDresdner KreuzchorRIAS-KammerchorEnsemble »Alte Musik Dresden«Vocalconsort BerlinOpella Musica + +1143842Ulrike BartschGerman contralto & alto vocalist studied in Hannover and in 1993 became a member of the RIAS-Kammerchor.Needs Votehttp://www.bach-cantatas.com/Bio/Bartsch-Ulrike.htmRIAS-Kammerchor + +1143843Christina KaiserClassical soprano vocalistCorrectRIAS-Kammerchor + +1143844Reinhold BeitenClassical tenor vocalistCorrectRIAS-Kammerchor + +1143845Andrew RedmondClassical bass vocalist born in IrelandNeeds Votehttps://www.bach-cantatas.com/Bio/Redmond-Andrew.htmAnúnaRIAS-Kammerchor + +1143847Friedemann HechtClassical tenor vocalistNeeds VoteRIAS-KammerchorVocalconsort Berlin + +1143848Waltraud HeinrichThe German contralto & alto vocalist, Waltraud Heinrich, completed her singing studies with Professor Margit Kobeck in Cologne and participated successfully in several singing competitions.Needs Votehttp://www.bach-cantatas.com/Bio/Heinrich-Waltraud.htmWaltraud M. HeinrichRIAS-Kammerchor + +1143849Anne von HoffClassical violinist.Needs VoteAnne v. HoffJunge Deutsche PhilharmonieAkademie Für Alte Musik BerlinMusica Antiqua KölnLautten CompagneyMusica Baltica + +1143984Aron ParamorNeeds VoteA. ParamarA. ParamorA.ParamorAaron ParamorGrinderPrime MoverRevolution 9Violatorz + +1144055Solja TuuliNiilo Sauvo Pellervo PuhtilaOne of Sauvo Puhtila's pseudonyms.CorrectLilja TuuliS. TuuliS.TuuliSoija TuuliSolja Tuuli (Sauvo Puhtila)Sonja TuuliT. SoljaTuuliTuuli Soljas. TuuliSaukkiSauvo PuhtilaMerjaVeikko VallasP. L. SaarinenPekka SaartoA. OjapuuTimjamiTikka (2)Pekka PeltoJukka TeräS. Salla + +1144101Jan InsingerDutch cellistNeeds VoteNieuw Sinfonietta AmsterdamNepomuk Fortepiano QuintetNetherlands Baryton TrioOsmosis (24) + +1145013Bart DemuytBelgian Bass / Baritone vocalist, musician, researcher and programme maker for the Flemish Radio, graduate of Louvain's Lemmens Institute, was elected President of REMA (Réseau Européen de Musique Ancienne) on April 3, 2008.Needs VoteCollegium VocaleLa Chapelle RoyaleCappella Pratensis + +1145432Howard MoodyHarpsichordist, organist and composer.Needs Votehttps://www.howardmoody.co.uk/https://www.facebook.com/HowardMoodyComposer/MoodyThe English Baroque SoloistsThe Orchestra Of St. John's + +1145518Kohsuke Mine峰厚介 (Mine Kosuke)Japanese jazz and jazz-fusion saxophonist. Born on February 6, 1944 in Tokyo. Released his debut leader album in 1970 on japan jazz label Three Blind Mice (also TBM first release). + +He left the clarinet program at his high school to turn pro in 1962 with the Blue Seven. In 1969 he earned accolades as a member of Masabumi Kikuchi 's quintet; a year later he released his first record, Morning Tide. He studied in the US for a time in the seventies, and returned to Japan in 1975 with an interest in fusion, recording Sunshower and other records as a founding member of Native Son. He worked with many jazz musicians, including Masabumi Kikuchi, Mal Waldron, Gil Evans, and Sadao Watanabe. He has more recently recorded with a standard quintet and with Masahiko TogashI's J.J. Spirits + +Alias and bands: Kosuke Mine Quartet, Mine Kosuke Quintet, Kohske Mine, Native Son, Four Sounds + +Recordings: Mine (1970); First (1970 with masabumi kikuchi,larry ridley,lenny mcbrowne ), Second Album (TBM 1972), Daguri (1973), Yellow Carcass in the Blue feat. Kimiko Kasai (TBM 8), Out of Chaos (1974), Solid (1975), Sunshower (East Wind 1976), Major to Minor (1993), Duo (Verve 1994), In a Maze (Verve1995), Balancez (1997), Rendez Vous (2004), Killing Floor (2004), Plays Standards (2008), With Your Soul (2011) + LPs from band Native Son (1978 onwards) and Four Sounds (90')Needs Votehttp://www.aomori-net.ne.jp/~yamagen/mine/top.htmhttp://www.jazz.com/encyclopedia/mine-kosukehttp://www.jazzmusicarchives.com/kohsuke-mine.aspxK MineK. MineKohske MineKosuke MineKousuke MineKōsuke MineMine KosukeКосуке Мине峰 厚介峰 厚介峰厚介Gil Evans And His OrchestraFour SoundsNative SonMal Waldron QuartetT. Honda & His OrchestraKosuke Mine QuartetJazz Of Japan All StarsMasabumi Kikuchi SextetMasabumi Kikuchi QuintetKosuke Mine QuintetMasahiko Togashi & J.J.SpiritsThe 4 (The Quartet)Yoshio “Chin” Suzuki’s "The Blend"Kohsuke Mine's Group + +1145547William Tim ReadClassical harpsichordistCorrectWilliam ReadBerliner Philharmoniker + +1145548Werner HinkWerner Hink (18 March 1943 in Vienna, Austria) was an Austrian violinist and former Konzermeister of the [a754974]. +Died 21 May 2024.Needs Votehttps://www.thestrad.com/news/former-vienna-philharmonic-concertmaster-dies/18086.articleWerner HinckOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Philharmonisches StreichquartettHofmusikkapelle WienWiener OktettThe Vienna String QuartetNew Vienna Octet + +1145773Ron TiernoAmerican drummer and percussionistNeeds Votehttp://www.rontierno.com + +1145774Timothy J. BreenNeeds Major ChangesTim Breen + +1146252Helmut NicolaiHelmut Nicolai (born 1943) is a German violist.Needs VoteHelmut NikolaiBerliner PhilharmonikerMünchner PhilharmonikerRosamunde QuartettHerzfeld-Quartett + +1146254Simon FordhamAustralian violinist, born in Melbourne, Australia. Now based in Germany.CorrectMünchner PhilharmonikerWDR Sinfonieorchester KölnRosamunde QuartettKölner Kammerorchester + +1147087Riccardo BorghettiItalian singer/songwriter from La SpeziaNeeds VoteBorghettiR. BorgettiR. BorghettiR.BorghettiR.o BorghettiRacardo BorghettiRiccardoThe Lords 77 + +1147128Jörg GottschickGerman bass vocalist.Needs Votehttp://www.joerggottschick.de/RIAS-KammerchorSchola Heidelberg + +1147305Arvid LydeckenOtto Arvid LydeckenBorn on May 31st, 1884 in Kontiolahti, Finland. Died on May 9th, 1960 in Helsinki, Finland. A Finnish author.CorrectA. LydeckenArvid LydeckeLydecken + +1147753Lucy StoltzmanAmerican violinist, born in 1951. She's married to [a532414].Needs VoteLucy Chapman SoltzmanLucy Chapman StaltzmanLucy Chapman StoltzmanSan Francisco SymphonyThe Muir String Quartet + +1148341Chris GalumanAmerican saxophonist and flutistCorrecthttp://www.galumanmusic.com/Harry James And His OrchestraStan Kenton And His OrchestraHarry James And His Big Band + +1148343Harvey CooninTrombonistNeeds VoteCooninMU3 Harvey CooninMUC Harvey CooninMaster Chief Musician Harvey CooninMusician First Class Harvey CooninStan Kenton And His OrchestraU.S. Navy Band Commodores Jazz EnsembleThe Jerry Ascione Big Band + +1148353Mike SnusteadTrumpet playerCorrectStan Kenton And His Orchestra + +1148585Rick ConditAmerican saxophonistCorrectRich ConditRichard ConditStan Kenton And His Orchestra + +1148855Fumiko HatayamaFumiko Hatayama is a Japanese contralto.Needs VoteChor der Staatsoper Dresden + +1149455Enrico GroppoEnrico Groppo is an Italian violinist.Needs VoteOrchestra Del Teatro Alla ScalaCamerata Academica SalzburgI Solisti VenetiOrchestra Haydn Di Bolzano E TrentoStreicherakademie BozenOrchestra Da Camera Di Mantova + +1149462Paolo RizziClassical double bass and viol player.Needs VoteEnsemble Pian & ForteEnsemble ElymaIl Giardino ArmonicoEnsemble "Concerto"Il QuartettoneEnsemble VanitasGruppo D'Alternativa + +1149724Dolores MartinCredited as jazz singer.Needs VoteD. MartinDolores Martin & ChorusDolores Martin And ChorusColeman Hawkins And His Orchestra + +1149894Léo DaniderffGaston-Ferdinand NiquetFrench composer and singer of the pre-World War II era, born February 16, 1878 at Angers (Maine Et Loire), France, and died on October 4,1943 at Rosny Sous Bois (Seine Saint Denis), France. + +Adopting the pseudonym Daniderff - an anagram of his first name Ferdinand - he started out in music halls singing songs of his own composition, as well as setting the poetry of [a=Gaston Couté] to music. Expelled due to poor grades and truancy from Nantes Conservatory where he began studies, Daniderff had itinerant and tumultuous beginnings, including stints as a church organist, an impresario, and a leader of a traveling revue. It was not until he attended the Paris Exhibition in 1900 that he made artistic and music business connections that led to more popular acceptance. His main claim to fame is the song "Je cherche après Titine" (1917) which Charlie Chaplin "borrowed" to use in his film 'Modern Times' in 1936. The uncredited usage triggered a lawsuit, in which Daniderff won compensation. +Needs Votehttp://www.dutempsdescerisesauxfeuillesmortes.net/fiches_bio/daniderff_leo/daniderff_leo.htmhttps://adp.library.ucsb.edu/names/101377A. DaniderffDaliderfDanderfDanderffeDani DerfDaniDerfDaniderfDaniderffDanidersDaniderssDanidorffDaniduffDavidorfDerniderffFerdinand Julien NiquetI. DaniderffJ. DaniderffL DaniderffL. DanderffL. DandiderffL. DanideffL. DaniderfL. DaniderffL. DanideroffL. DaniderssL. DanidorffL. DarniderffL. DaviderffL. DenideroffL. DenidersL..DaniderffL.DaniderffLeo DaniderfLeo DaniderffLeo DanidorffLeo DenideroffLeo. DaniderffLéo DaniderfLéo DeniderffP. Daniderffלאו דנידרףGaston-Ferdinand Niquet + +1150481Alayne LeslieClassical oboist.CorrectCollegium VocaleFreiburger BarockorchesterOrchestra Of The 18th Century + +1150483Alvin McCallCellist.Needs Votehttp://www.suzanneclute.com/mccalldeatsduo/alvin_mccall_bio.htmlAlvin C. McCallAlvin Clinton McCallSaint Louis Symphony OrchestraOrpheus Chamber OrchestraThe Prism Orchestra + +1150486Libia HernandezLibia HernándezCuban-born double bassist and conductor.Needs VoteAmsterdam Bach Soloists + +1150838Paul Wood (3)Violinist.Needs VoteRoyal Philharmonic Orchestra + +1151005Michael McCrawUS classical Bassoon & Dulcian instrumentalist, based in Germany born 19.10.1947, died 29.05.2020. Needs VoteM. Mac CrawMichael Mc CrawMusica Antiqua KölnFreiburger BarockorchesterDrottningholms BarockensembleLa StagioneCantus CöllnTafelmusik Baroque OrchestraCamerata KölnMusica FiataAston MagnaDas Kleine KonzertMusica PacificaNew American Trio + +1151051Johannes MartensNorwegian cellist, born 1977 in Ås, Akershus, Norway.Needs Votehttp://www.johannesmartens.no/J. MartensJohannes MaartensJohannes MartenJohannes Martens EnsembleMartensMr. Johannes MartensOslo Filharmoniske OrkesterOslo Camerata + +1151370Johannes VincenetFrench composer (c. 1400 - c. 1479).CorrectVincenet + +1151371Robert MortonEnglish composer of the early Renaissance, mostly active at the Burgundian court (c.1430 – after March 13, 1479).Correcthttp://en.wikipedia.org/wiki/Robert_MortonMorton + +1151373Johannes RegisFranco-Flemish composer of the Renaissance (1425-1496).Needs Votehttp://en.wikipedia.org/wiki/Johannes_Regishttp://www.medieval.org/emfaq/composers/regis.htmlRegis + +1151375John BedynghamEnglish composer of the early Renaissance (b. ?Oxford, ?1422; d. Westminster, 1459–60).CorrectBedynghamBedyngham De AngliaBedyngham de AngliaJohannes Bedynghamattrib. John Bedyngham + +1151483Stephen StirlingBritish horn player.Needs Votehttp://en.wikipedia.org/wiki/Stephen_Stirling_%28musician%29http://www.classical-artists.com/stephen-stirling/http://www.morgensternsdiaryservice.com/WebProfile/stirling_s_62.shtmlStephen SterlingSteve SterlingSteve StirlingCity Of London SinfoniaThe Academy Of St. Martin-in-the-FieldsBournemouth Symphony OrchestraThe Chamber Orchestra Of EuropeChamber DomaineScottish Chamber OrchestraThe Gaudier EnsembleEndymion EnsembleThe Orchestra Of St. John'sNew London Chamber Ensemble + +1152069Jeremy LakeEnglish classical cellistNeeds VoteGulbenkian Orchestra + +1152072Jorge TeixeiraJorge Teixeira (b.1966) is a Portuguese violinist. + +For the Brazilian engineer use [a1362994].Needs VoteGulbenkian OrchestraQuarteto Capela + +1152441Peter OundjianA Canadian violinist and conductor (born 21 December 1955, Toronto, Ontario, Canada). He is currently the music director of the Toronto Symphony Orchestra and of the Royal Scottish National Orchestra. +The youngest of five children from an Armenian father and English mother, he also claims Scottish ancestry through his maternal grandfather, a Sanderson, and the MacDonell of Glengarry clan. Oundjian was educated in England, where he began studying the violin at age seven with Manoug Parikian. He attended Charterhouse School in Godalming. He continued studies later with Béla Katona. He then attended the Royal College of Music. + +Oundjian studied at the Juilliard School with Ivan Galamian, Itzhak Perlman, and Dorothy Delay. While at Juilliard, he minored in conducting, and later received encouragement his endeavors when he attended a master class from the eminent German conductor Herbert von Karajan. + +In 1980, Oundjian won First Prize at the International Violin Competition in Viña del Mar, Chile. Oundjian became the first violinist of the Tokyo String Quartet and held the post for 14 years. A repetitive stress injury forced Oundjian to curtail his instrumental career. He then shifted his full-time musical focus to conducting.Needs Votehttps://peteroundjian.com/https://en.wikipedia.org/wiki/Peter_OundjianOrpheus Chamber OrchestraTokyo String Quartet + +1152442Henninge LandaasHenninge Båtnes LandåsClassical viola player, born 1973 in Trondheim, Norway.Needs VoteHenninge Båtnes LandaasHenninge BåtnesVertavo QuartetOslo Filharmoniske OrkesterOslo Philharmonic Chamber GroupSsens Trio + +1152519Ernst KnavaErnst Knava (11 October 1927 — 11 March 2018) was an Austrian cellist, viol player and teacher.Needs Vote,エルンスト・クナヴァWiener SymphonikerConcentus Musicus WienDie Instrumentisten WienOrquestra Sinfônica de Porto Alegre + +1153248Arthur BaloghRomanian bassist from Timișoara, RomâniaNeeds Votehttp://www.myspace.com/arthurbaloghArthur Balogh -„Vîslea”Artur BaloghWürttembergisches KammerorchesterStuttgarter Philharmoniker + +1153406Gabriele CassoneItalian classical wind instrumentalist (born 1960 in Udine). He is a teacher at the Conservatory of Novara in Italy.Needs Votehttp://www.gabrielecassone.it/CassoneThe English Baroque SoloistsEnsemble Pian & ForteModo AntiquoConcerto ItalianoIl Giardino ArmonicoSonatori De La Gioiosa MarcaVenice Baroque OrchestraAlessandro Stradella ConsortZefiroEuropean Brandenburg EnsembleTen Of The BestConcerto Romano + +1153407Eliot FiskEliot Fisk (born August 10, 1954 in Philadelphia, Pennsylvania) is an American classical guitarist. Fisk was the last direct pupil of [a392725] and is the holder of all reproduction rights to Segovia's music, given to him by Segovia's wife, Emilia. An innovative performer, Fisk is known for an adventurous repertoire and willingness to take art music into unusual venues, including schools, senior centers and even prisons.Correcthttp://www.eliotfisk.com/http://en.wikipedia.org/wiki/Eliot_FiskE. FiskElliot FiskFisk + +1153477Omar ZoboliClassical oboist born in Modena.Needs VoteOtmar ZoboliConcentus Musicus WienIl Giardino ArmonicoEnsemble Vanitas + +1154254Xi ZhangClassical violinist.Needs VoteSaint Louis Symphony OrchestraYoung Musicians Foundation Debut Orchestra + +1154271Elizabeth RoweAmerican flutist. Former principal flutist with the [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/elizabeth-roweBoston Symphony OrchestraBoston Symphony Chamber PlayersYoung Musicians Foundation Debut Orchestra + +1154532Johnny BothwellAmerican jazz alto saxophonist and bandleader, born 23 May 1919 in Gary, Indiana, USA, died 12 September 1995 in Lakeland, Florida, USA. + + +Needs Votehttps://en.wikipedia.org/wiki/Johnny_Bothwellhttps://adp.library.ucsb.edu/names/200990BothwellJ. A. BothwellJ. BothwellWoody Herman And His OrchestraGene Krupa And His OrchestraBoyd Raeburn And His OrchestraJohnny Bothwell And His OrchestraOscar Pettiford And His 18 All StarsJohnny Bothwell And His New OrchestraThe Band That Plays The Blues + +1154978Thorbjørn LønmoClassical trombonistNeeds VoteOslo Filharmoniske OrkesterKringkastingsorkestret + +1155116May KunstovnyClassical violinist, born in Vienna, Austria.CorrectMahler Chamber Orchestra + +1155381Stefano VicentiniItalian classical bassoon player, born in Bolzano in 1962. He graduated with highest honours from the Coservatorio di Musica Claudio Monteverdi in 1981. From 1981 to 1983, he was Solo Bassoon with [a=I Solisti Veneti] performing in South America and throughout Western Europe. From 1983 to 1985, he was Prinicpal Bassoon in the [a=Orchestra Del Teatro Alla Scala] in Milano. In 1986, he taught at Indiana University and performed recitals in Chicago, New York, Cleveland, Indianapolis and Bloomington. He teaches at the Bolzano Conservatorio and plays First Bassoon in the [a=Orchestra Del Maggio Musicale Fiorentino].CorrectGruppo Musica Contemporanea di FirenzeOrchestra Del Teatro Alla ScalaI Solisti VenetiOrchestra Del Maggio Musicale Fiorentino + +1155390Luca MarsanaLuca MarzanaClassical wind instrumentalistNeeds VoteLuca MarzanaLuca Primo MarzanaGruppo Musica Contemporanea di FirenzeIl Giardino ArmonicoSonatori De La Gioiosa MarcaIl Complesso BaroccoZefiroOrchestra Barocca ItalianaDivertissement (2) + +1155392Dario GoracciClarinet and bass clarinet player.Needs VoteGruppo Musica Contemporanea di FirenzeOrchestra dell'Accademia Nazionale di Santa Cecilia + +1155410Andreas GregerGerman cellist, born in 1962.Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/andreas-greger.24436Staatskapelle BerlinGaede TrioCamerata MusicaClarens Quintet + +1155411Herman KrebbersDutch violinist, born 18 June 1923 in Hengelo, The Netherlands. Died 2 May 2018 in Tilburg.Needs Votehttps://en.wikipedia.org/wiki/Herman_KrebbersH. KrebbersHermann KrebbersHernamm KrebbersKrebbersWithConcertgebouworkestNetherlands Chamber OrchestraGuarneri TrioDivertimento Quartet + +1155412Elisabeth SelinFormer classical recorder player, born in 1953, daughter of composer [a3853136].Needs VoteElisabet SelinThe Academy Of St. Martin-in-the-Fields + +1155414Michala PetriMichala Petri SamblebenDanish recorder player, born 7 July 1958, in Copenhagen. +Started playing recorder in the age of three, and first played on Danish Radio at the age of five. +Daughter of [a2410930] and [a1599923], sister to [a1599922]. +Together with her (former) husband (guitarist/lute player) [a1636344] she launched in late 2006 their own recording label, [l249095].Needs Votehttps://www.michalapetri.com/https://en.wikipedia.org/wiki/Michala_PetriM. PetriMichaela PetriMichala Petri SamblebenMichala SamblebenPetriミカラ・ペトリMichala SamblebenThe Academy Of St. Martin-in-the-FieldsI MusiciMichala Petri Trio + +1155918Matthew BarleyClassical cellist, improviser, arranger, music animateur, and Artistic Director of [a=Between The Notes] which he founded in 1997. Born 2 May 1965 in London, England, UK. +He trained at [l305416]. In 1999, he was Co-Principal Cello in the [a=London Symphony Orchestra]. +Married to [a=Viktoria Mullova] with whom they have one daughter,Nadia Mullova-Barley. He is the stepfather of [a=Katia Mullova] and [a=Misha Mullov-Abbado].Needs Votehttp://www.matthewbarley.com/https://www.facebook.com/Matthew.Barley.Cello/https://www.facebook.com/matthew.barley.35https://twitter.com/matthewmbarleyhttps://www.instagram.com/matthewbarleycello/?hl=enhttps://www.linkedin.com/in/matthew-barley-90b509258/https://www.youtube.com/channel/UCjKZemYbvaZ7NXg6rslKTJghttps://open.spotify.com/artist/7H3B421x5YuTEeO0hLH7ndhttps://music.apple.com/us/artist/matthew-barley/21897210https://en.wikipedia.org/wiki/Matthew_BarleyBarleyLondon Symphony OrchestraBetween The NotesThe Matthew Barley Ensemble + +1155919Thelma HandyClassical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +1156005Lucy YendoleViolistCorrectL. YendoleOrchestra Of The Royal Opera House, Covent Garden + +1156601Camillo WanausekAustrian classical flautist ( 27 January 1906 in Vienna, Austria - 1999).Needs VoteC. WanausekCamille WanausekCamillo WanuasekCamillo WänausekCammillo WanausekK. WanausekKamillo WanansellKamillo WanausekWanausekWiener PhilharmonikerVienna Pro Musica OrchestraSolistenensemble Der Wiener Staatsoper + +1156772Joe RolandJoseph Alfred RolandJazz vibraphonist and band leader (* 17 May 1920 in New York City, New York, † 12 October 2009 in Palm Beach County, Florida). +Began as a clarinetist, in 1940 started playing xylophone as well. After the war bought a vibraphone and freelanced in New York. Organized own bop group, which recorded 1949-1950, and played and recorded with [a=Oscar Pettiford] in 1951. From 1951 to 1953 member of [a=George Shearing]'s quintet; then led group with [a=Howard McGhee]. Toured and recorded with [a=Artie Shaw And His Gramercy Five] 1953-1954.Needs Votehttp://www.bobbyroland.com/Joe_Roland.htmlhttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-2000384800https://de.wikipedia.org/wiki/Joe_RolandJ. A. RolandJ. RolandJ.A. RolandJo RolandJoe RolanJoseph Alfred RolandJoseph RolandRolandThe George Shearing QuintetArtie Shaw And His Gramercy FiveOscar Pettiford SextetThe Joe Roland QuintetMat Mathews QuintetEddie Shu QuintetJoe Roland and the Bayshore QuartetJoe Roland QuartetJoe Roland SextetJoe Roland, His Vibes & His Boppin' Strings + +1156807Tonny HelwegDutch jazz clarinetist and saxophone playerNeeds VoteHelwegT. HelwegTony HelwegThe RamblersHorst Winter Mit Seinem Orchester Aus Dem 'Carlton', BerlinHorst Winter Mit Seinem OrchesterErnst Van 't Hoff En Zijn Orkest + +1156829Jan KoulmanJazz trombone playerNeeds VoteThe RamblersHorst Winter Mit Seinem OrchesterDick Willebrandts En Zijn OrkestErnst Van 't Hoff En Zijn OrkestThe Blue Ramblers + +1157658Harold "Scrappy" LambertHarold Rodman LambertAmerican vocalist who appeared on hundreds of recordings from the 1920's into the 1940's, including under a large number of pseudonyms. + +Born on May 12, 1901 in New Brunswick, New Jersey, USA. +Died on November 30, 1987 in Riverside, California, USA. + +In early 1925, "Scrappy" Lambert and [a=Billy Hillpot], both recent Rutgers graduates, teamed up to do a comedy routine called [url=https://www.discogs.com/artist/2885561]"The Two Smith Brothers, Trade and Mark"[/url]. This was a spoof on the famous bearded twins that appeared for decades on the logo of Smith Brothers' Cough Drops, on which the word "Trade" appeared under William Smith's face and "Mark" under Andrew Smith's face. Their Smith Brothers comedy program was broadcast weekly on NBC radio. + +From 1926 until 1928, Lambert sang with [a=Ben Bernie And His Hotel Roosevelt Orchestra].Needs Votehttp://en.wikipedia.org/wiki/Scrappy_Lamberthttp://www.jazzage1920s.com/scrappylambert/scrappylambert.phphttps://fromthevaults-boppinbob.blogspot.com/2025/05/harold-scrappy-lambert-born-12-may-1901.htmlhttps://songbook1.wordpress.com/tag/harold-scrappy-lambert/https://www.findagrave.com/memorial/69054788/harold-rodman-lamberthttps://adp.library.ucsb.edu/names/109632"Scrappy" LambertChester HaleHarold 'Scrappy' LambertHarold LambertHarold LangHarry LambertJack LordLambertRodman LewisScappy LambertScrapp LambertScrappy LambertScrappy Lambert & QuartetChester HaleRodman LewisBurt LorinHarold Lang (2)Ralph HainesHarold MillerLarry Holton (2)Webster MooreWilliam Smith (29)William DuttonRoland LanceJack Lord (5)Jack Lewis (11)Harold Noble (2)Harold RodmanSidney James (6)John Roberts (43)Glenn Roberts (3)Richard Green (36)Frankie Trumbauer And His OrchestraSmith Brothers (2)Ben Bernie And His Hotel Roosevelt OrchestraHolton And CrossScrappy Lambert's Collegians + +1157659Bobby Davis (4)Early jazz clarinet & soprano and alto sax player. Died in 1949CorrectBob DavisRon DavisFrankie Trumbauer And His OrchestraCalifornia RamblersBroadway Bell-HopsFred Elizalde And His MusicGolden Gate OrchestraBenny Meroff And His OrchestraThe Vagabonds (6)Bailey's Lucky SevenThe Goofus FiveUniversity SixRussell Gray And His Orchestra + +1157660Charles GaylordCredited as jazz singer of early period.Needs VoteC. GaylordCharles GaylorChas. GaylordGaylorGaylordFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +1157661John Bowman (2)John Bouman(b. May 6, 1885, Holland; d. Apr. 1966, New York, NY). Violinist and violist. Played with [a341395] from May 1924 until 1932, and also served as a copyist for Whiteman's rangers.Needs Votehttp://victor.library.ucsb.edu/index.php/talent/detail/61817/Bowman_John_instrumentalist_violinBowmanJohn BowmanPaul Whiteman And His Orchestra + +1157662Harry PerrellaCredited as jazz pianist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/114791/Perrella_HarryPaul Whiteman And His Orchestra + +1157663Mario PerryMario Perry MentrastiItalian American violinist and accordionist (born March 19, 1899 in New York, NY – died August 2, 1929 in Los Angeles, CA) + +Originally named Giuseppe Mentrasti, like his Italian-born father, Mario Perry played both violin and accordion for the [a=Paul Whiteman Orchestra]. In 1923, he toured England with Whiteman's ensemble. Perry also recorded numerous accordion solos for [l=Brunswick], [l=Pathé], and [l=Victor] and some accordion duets with [a=Peppino (4)] for [l=OKeh]. He died in a car accident in 1929.Needs Votehttps://www.findagrave.com/memorial/171564042/mario-perry-mentrastihttps://adp.library.ucsb.edu/index.php/talent/detail/17409/Perry_Mario_instrumentalist_accordionhttp://www.henrydoktorski.com/recordings/rhapsodyessay.htmlM. PerryMario PeppinoMarty PerryPerryPaul Whiteman And His OrchestraPalace TrioPerry & Peppino + +1157665Hal McLeanCredited as jazz saxophonist, in the early age.Needs VoteHalPaul Whiteman And His Orchestra + +1157666Nye MayhewSaxophonist with various bands in the 1920s, bandleader in the 1930s.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/206467/Mayhew_NyePaul Whiteman And His OrchestraHoagy Carmichael And His PalsNye Mayhew And His Orchestra + +1157667Rube CrozierRupert CrozierAmerican jazz saxophonist and arranger. Also a bassoonist. +Played with Paul Whiteman Orchestra (Oct. 1927 to Apr. 1929). +Brother of [a=George Crozier (2)]. + +Born : December 22, 1897 in Marietta, Nevada. +Died : January, 1964 in California. +Needs VoteCrozierFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +1157716Heiðrun PetersenFaroese violin player from Torshavn. Located in Copenhagen, Denmark since 2009.Needs Votehttps://www.facebook.com/heidrun.petersenHeidrun PetersenCopenhagen PhilMaster Bernitt StringsDR SymfoniOrkestret + +1158089Kenneth RylandNorwegian bassist, born 1969 in Bergen, Norway.Needs VoteOslo Filharmoniske Orkester + +1158488Kaarlo ValkamaKaarlo "Kalle" Armas ValkamaKaarlo "Kalle" Valkama was born on September 16th, 1908 in Helsinki, Finland. Died on July 29th, 1980 in Helsinki, Finland. +A Finnish musician, arranger and composer. He was a very active arranger and musician in Finnish schlager records in the 1930s and 1940s.Needs Votehttps://fi.wikipedia.org/wiki/Kaarlo_ValkamaK ValkamaK. ValkamaK. ValkamoK. vValkamaK.ValkamaKaarlo-ValkamaKalle ValkamaKalle WalkamaKarlo ValkamaValkamaValkama KaarloPertti WesaJaakko Salon OrkesteriRamblers-OrkesteriHumppa-VeikotKaarlo Valkaman OrkesteriKalle Valkama Ja Hänen "Bellaccord" Orkesterinsa + +1158515A. AleksiArto Kaarlo Antero JohanssonCorrectA. AlexiA.AleksiAleksiArto Johansson + +1159067Trio ElégiaqueNeeds Votehttp://www.trio-elegiaque.comTrio ElegiaqueLaurent Le FlécherVirginie ConstantPhilippe AïcheFrançois Dumont (3) + +1159069Laurent Le FlécherViolinistNeeds VoteLaurent Le FlecherTrio ElégiaqueL'Orchestre De BretagneQuatuor Elysée + +1159088Christoph Von Der NahmerGerman violinist, born in 1975 in Wuppertal, Germany.CorrectBerliner PhilharmonikerEnsemble Berlin + +1159316Barnaby RobsonBritish classical clarinet & recorder player, arranger, composer, producer, and Professor of Clarinet. Born in 1969. +He studied at [l305416]. He was Principal Clarinet with the [a=Philharmonia Orchestra] (2000-2013), a position he has hold with [a=The English National Opera Orchestra] since April 2014. Professor of Clarinet at the [l290263].Needs Votehttps://www.barnabyrobsonmusician.com/https://twitter.com/barnymusichttps://www.linkedin.com/in/barnaby-robson-751494263/https://open.spotify.com/artist/3UeCy29wzOS9YUg5adO4oH?si=6okQC4NjSF6sVOgtBbFl-Q&nd=1https://music.apple.com/gb/artist/barnaby-robson/7583386https://www.feenotes.com/database/artists/robson-barnaby-1969-present/https://www.rcm.ac.uk/woodwind/professors/details/?id=02932https://www.legere.com/artist/barnaby-robson/https://www.imdb.com/name/nm2205495/Philharmonia OrchestraThe SixteenThe Academy Of Ancient MusicCollegium Musicum 90The English National Opera OrchestraMembers Of The Philharmonia OrchestraLondon Conchord Ensemble + +1159317Andrea De FlammineisItalian bassoonist, born in 1967 in Milan, Italy.Needs VoteOrchestra Of The Royal Opera House, Covent GardenEuropean Soloists EnsembleLondon Conchord Ensemble + +1160097Giovanni VigliarItalian classical/jazz violinist, occasional percussionist and singer.Correcthttp://www.myspace.com/giovannivigliarGiovanni VillarVigilarVigliarOrchestra Del Teatro Dell'Opera Di RomaArti & Mestieri + +1160328Milton KabakAmerican jazz trombonist, composer and arranger (March 09, 1926 - April 16, 2010 in Yonkers, New York). + +He played with: Stan Kenton, Louis Prima and others. + + + +Needs VoteKabackKabakKabokKobakKubakM KabakM. KabakM. KabakMilt KabakMilton KabackMiltou KabakLouis Prima And His OrchestraStan Kenton And His Orchestra + +1160352Howard PennyAustralian classical cellist, born in Canberra, Australia.Needs VotePenny HowardThe Chamber Orchestra Of EuropeMerlin Ensemble + +1160358Lorelei DowlingBassoonist and contrabassoonist.Needs Votehttps://myspace.com/loreleidowlingEnsemble ModernKlangforum Wien + +1160366Erich HehenbergerAustrian classical double bassist.CorrectCamerata Academica SalzburgDas Mozarteum Orchester Salzburg + +1160459Lisa RaggioNeeds Major ChangesL. Raggio + +1161031Jerry ElliottAmerican jazz trombone playerNeeds VoteJerry ElliotThe Lester Young SextetLester Young And His Band + +1161032Ted BriscoeCredited as jazz bassist.Needs VoteTex Briscoeテッド・ブリスコーLester Young And His Band + +1161165Elsbeth MoserElsbeth Moser, born in Bern, Switzerland, studied accordion and piano. Since 1983 she is professor in Hannover, she also hold teaching positions in Tianjing, Shanghai and at the Universitäty in Pula, Croatia.Needs Votehttps://jmkdakademie.de/en/elsbeth-moser-2/Elsbeth Moser VagnssonElsbeth Moser-VagnssonMoserEnsemble Modern + +1161893Josep BenetCatalan classical tenor / countertenor [b]vocalist[/b] specialized in music from the Middle Ages to the early Baroque period.Needs Votehttps://www.bach-cantatas.com/Bio/Benet-Josep.htmBenetJ. BenetJ.BenetLes Arts FlorissantsHuelgas-EnsembleLa Chapelle RoyaleEnsemble OrganumEnsemble FitzwilliamCapilla PenafloridaLa ColombinaEnsemble DaedalusSchola Meridionalis + +1161896Kees Jan De KoningDutch Bass vocalistNeeds VoteKees-Jan De KoninckKees-Jan De KoningKees-Jan de KoningHuelgas-EnsembleLa Chapelle RoyaleCappella AmsterdamWeser-RenaissanceGesualdo Consort AmsterdamNederlands KamerkoorVocal Ensemble QuinkCorona ColoniensisCappella MurensisLe Nuove Musiche + +1161897Bouke LettingaAlto vocalist.CorrectLa Chapelle RoyaleLa Petite Bande + +1161898Laurent BajouBaritone-bass vocalist.Needs VoteLes Arts FlorissantsLa Chapelle RoyaleEnsemble Claude Goudimel + +1162431Tommy NordströmNeeds VoteNordströmT NordströmT. NordströmT.NordsträmT.NordströmTomi NordströmJani Uhleniuksen Uusrahvaanomainen OrkesteriBig Band PartisaanitAimo Tolosen YhtyeSeppo Rannikon Sekstetti + +1162508Friedemann DähnGerman cellist and composer, born 1958 in Tübingen.Needs Votehttp://www.friedstyle.comDähnF. DähnFried DähnEnsemble ModernEuropean Music ProjectWürttembergische Philharmonie ReutlingenThe Yellow String QuartetSunset Piano Trio + +1162509Andreas BöttgerGerman classical percussionist, he studied in Freiburg, then worked with the Ensemble Modern, the [a=Karlheinz Stockhausen] Ensemble, the [a301263] and the Chamber Orchestra Of Europe, among others. Since 1994 he is professor in Hannover.Correcthttp://www.hmtm-hannover.de/de/hochschule/lehrende/a-d/prof-andreas-boettger/Ensemble Modern + +1162514Stefan DohrGerman hornist, born 1965 in Münster, he studied in Essen and Köln. Since 1993 he is principal horn of the [a260744].Needs Votehttps://www.stefandohr.com/https://en.wikipedia.org/wiki/Stefan_DohrBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleEnsemble Wien-BerlinPhilharmonisches Oktett BerlinDie Hornisten Der Berliner PhilharmonikerFrankfurter Opern- Und MuseumsorchesterBerlin Philharmonic Horn Quartet + +1163169Ali AryanAli AryanHouse/Progressive-House DJ & producer based in Zwolle, the Netherlands. +Born: August 28th 1977, in Ahwaz, Iran +Moved to the Netherlands at the age of 9. +Brother of [a=Arash Aryan] (aka [a=DJ Zagros]). +Correcthttp://www.djpacific.com/http://www.myspace.com/pacificdjA. AryanAli ArayanAli AryenDJ Zagros & PacificA.J.A. ProductionsPacific & Vandyck + +1163419Anneke UittenboschDutch harpsichordist & virginal player. +(11 March 1930 – 25 September 2023)Needs Votehttps://en.wikipedia.org/wiki/Anneke_UittenboschAneke UittenboschAnneke UitenboschAnneke UittenbachLeonhardt-ConsortConcerto AmsterdamBrüggen Consort + +1163580Bryn WhitingNeeds Major ChangesB.Whiting + +1163814Arthur TrappierAmerican jazz drummer. + +Born : May 28, 1910 in Georgetown, South Carolina. +Died : May 17, 1975 in New York City, New York. +Needs Votehttps://en.wikipedia.org/wiki/Arthur_Trappierhttps://adp.library.ucsb.edu/names/347494A.TrappierAl TrappierArt TrappierArthur (Traps) TrappierArthur TjappierArthur TrapierTrappierJames P. Johnson's Blue Note JazzmenEdmond Hall Swing SextetEdmond Hall And His OrchestraThe Edmond Hall QuartetSkeets Tolbert And His Gentlemen Of SwingWillie "The Lion" Smith QuartetBilly Moore and his Jumpin String OctetteJam Session (11) + +1163827Alan Bennett (3)Tenor vocalist.CorrectTheatre Of Voices + +1163830Boyd JarrellBass-baritone and conductor of the California Vocal Academy.Needs VoteBoyd JarrelTheatre Of VoicesCalifornia Vocal Academy + +1163831Tom HartSwedish classical tenor vocalistNeeds VoteHartTheatre Of VoicesChanticleerAdolf Fredriks BachkörStockholm Bach Choir + +1163832Amelia TriestAmerican mezzo-soprano & alto vocalist from Berkeley CA.Needs Votehttps://www.bach-cantatas.com/Bio/Triest-Amelia.htmTheatre Of VoicesAmerican Bach Choir + +1163833Kari KaarnaNeeds VoteTheatre Of Voices + +1163834Elisabeth EnganAmerican soprano, born 21 May 1957 in Oakland, California, USA.Needs VoteElizabeth EnganTheatre Of VoicesAmerican Bach Soloists + +1163835Mark DanielClassical tenor.CorrectDanielTheatre Of VoicesChanticleer + +1163836Neal Rogersclassical tenor vocalistNeeds VoteRogersTheatre Of VoicesChanticleer + +1163837Claire KelmAmerican sopranoNeeds VoteTheatre Of Voices + +1163838Hugh Davies (3)British bass-baritone.Needs Votehttps://www.bach-cantatas.com/Bio/Davies-Hugh.htmTheatre Of VoicesJohn Alldis ChoirThe Monteverdi ChoirThe Schütz Choir Of LondonMagnificat Baroque EnsembleAmerican Bach Choir + +1163840Suzanne ElderAmerican mezzo-sopranoNeeds VoteSusanne ElderSuzanneSuzanne Elder WallaceTheatre Of Voices + +1163841Ruth EscherAmerican sopranoNeeds VoteTheatre Of VoicesMagnificat Baroque Ensemble + +1164174Maxim RysanovUkrainian violist and conductor.Needs Votehttp://maximrysanov.com/https://en.wikipedia.org/wiki/Maxim_RysanovM. RysanovMaksims RisanovsRysanovAmsterdam SinfoniettaSpectrum Concerts BerlinDeutsche Kammerphilharmonie BremenDetmolder Kammerorchester + +1164670Elin GabrielssonSwedish baroque violinist and concertmaster of [a11019371] and one of its two artistic directors. + +In 1999, she took her master's degree in modern violin at the Royal Academy of Music in Stockholm, after which she studied baroque violin at the Scuola Civica di Milano in Italy and at the Royal Conservatoire The Hague in the Netherlands. In Italy, at the beginning of the 2000s, she was a member of Il Giardino Armonico, but has now for many years been a member of the prominent baroque ensemble Europa Galante, under the direction of Fabio Biondi. In parallel, she works regularly as concertmaster in Drottningholm's baroque ensemble and at Drottningholm's Slottsteater. She appears on around 30 CDs on labels such as Decca, Naive, Naxos, BIS and Glossa. In addition to her concerts and recordings as a violinist, she also creates concert programs with music from the 17th and 18th centuries and leads the musical rehearsal work. Among other things, she has given performances at the Konserthuset in Stockholm, the Gamla Teatern in Halden and the Drottningholmsteatern.Needs Votehttps://www.linkedin.com/in/elin-gabrielsson-91b510122/?originalSubdomain=sehttps://elingabrielssonblog.wordpress.com/Elin Katarina GabrielssonEuropa GalanteDrottningholms BarockensembleIl Giardino ArmonicoL'Aura Soave CremonaLa RisonanzaZefiroOrfeus Barock StockholmThe Tre Kronor Baroque Ensemble + +1165194Charlie QueenerAmerican jazz (dixieland) pianist. +Born : July 27, 1921 (or) 1923 in Pineville, Kentucky. +Died : July, 1997 - . + +Charlie worked with Eddie Condon, Wild Bill Davison, Muggsy Spanier, Benny Goodman, Ralph Flanagan, Bobby Hackett, Glenn Miller, Harry James, among others. +Needs VoteCharles QueenerCharlie Henry/QueenerHarry James And His OrchestraBenny Goodman And His OrchestraMuggsy Spanier And His OrchestraJoe Marsala SeptetJoe Marsala And His Orchestra + +1165453Peter LeerdamDouble bass player.CorrectF. LeerdamRotterdams Philharmonisch Orkest + +1165455Maria DingjanViolinist, born in Delft, Netherlands.CorrectRotterdams Philharmonisch Orkest + +1165456Lex PrummelViolinist.CorrectRotterdams Philharmonisch Orkest + +1165457Wladislaw WarenbergWladislaw WarenbergCello player, born 1949 in Kharkov, USSR.Needs VoteWadislaw WarenbergWladislav WarenbergLeningrad Philharmonic OrchestraI FiamminghiHet Brabants OrkestRotterdams Philharmonisch Orkest + +1165459Bob BruynViolinist.CorrectRotterdams Philharmonisch Orkest + +1165460Jun Yi DouViolinist.CorrectDou Jun-YiDou Jun-YiaRotterdams Philharmonisch Orkest + +1165581Cyril DiederichFrench conductor, born 2 October 1945 in Aix-en-Provence, France.Correcthttp://cyril-diederich.comC. Diederich + +1165651Jan SchmolckClassical violinistNeeds VoteJan Peter SchmolckJan Peter SchmolkJan SchmolkJan SmolckThe Academy Of St. Martin-in-the-FieldsOrchestra Of The Royal Opera House, Covent GardenThe Orchestra Of St. John's + +1165652Philippe HonoréFrench classical violinist, conductor and educator. Born 21 March 1967 in Lyon. +He attended the [l1014340] and the [l527847]. He was a principal player with the [a=Philharmonia Orchestra] from 2005 to 2011, and has appeared as guest leader with some of Europe's best orchestras (such as the Philarmonia Orchestra, the [a=London Philharmonic Orchestra], the [a=City Of Birmingham Symphony Orchestra], the [a=English Chamber Orchestra] and the [a=Orchestre De Chambre De Paris]). He was appointed Professor of Violin at the Royal Academy of Music in October 2012. Former member of the [a=Vellinger Quartet] and a founder member of the [a=Mobius (7)] ensemble.Needs Votehttps://www.philippehonore.com/https://www.facebook.com/philippehonoreviolin/https://twitter.com/philippe_honorehttps://www.youtube.com/channel/UCLV6lp8tmoE68rqrk4VkrCQ/videoshttps://en.wikipedia.org/wiki/Philippe_Honor%C3%A9_(violinist)https://www.feenotes.com/database/artists/honore-philippe-21st-march-1967-present/https://music.metason.net/artistinfo?name=Philippe%20Honor%C3%A9https://www.ram.ac.uk/people/philippe-honor%C3%A9https://www.hyperion-records.co.uk/a.asp?a=A2834Philippe HonorePhilippe Honoré ¹Phillippe HonoréLondon Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraMobius (7)Vellinger QuartetThe Chamber Orchestra Of London + +1165658Simon Smith (6)Violinist.Correcthttps://www.simonsmithviolin.com/London SinfoniettaThe Academy Of St. Martin-in-the-FieldsSonia Slany String And Wind Ensemble + +1165713Michael PeuserGerman classical trombonist.Needs VoteDeutsche Kammerphilharmonie Bremen + +1165715Marlene SvobodaGerman violist.CorrectStuttgarter Philharmoniker + +1166067Katrine BuvarpClassical violinist. +Young musician of the year 1994, Norway.Needs VoteKatrine Buvarp YttrehusThe Chamber Orchestra Of Europe + +1166068Martin NagorniGerman producer and sound engineer; he studied in Detmold, runs [l1501189] with [a1213709].Needs Votehttp://www.arcantus.de/ + +1166075Suzanne LeonAmerican violinist. +Wife to [a=Dan Smiley]Needs VoteSuzanne L. LeonSan Francisco Symphony + +1166076Mariko SmileyClassical violinist. She's married to [a1166090].Needs VoteSan Francisco SymphonyAurora String Quartet + +1166086Nadya TichmanAmerican violinist.Needs VoteNadia TichmanNadya E. TichmanSan Francisco Symphony + +1166090Sarn OliverAmerican violinist. He's married to [a1166076].Needs VoteSam E. OliverSam OliverSan Francisco Symphony + +1166093James Lee Wyatt IIIAmerican classical percussionist. +Needs VoteSan Francisco Symphony + +1166095Zoya LeybinAmerican violinist, born 1945 in Riga, Latvia.Needs VoteSan Francisco SymphonyNashville Symphony OrchestraThe Stanford String Quartet + +1166190Charlotte SprenkelsDutch harpist.CorrectШарлотта ШпренкельсRotterdams Philharmonisch Orkest + +1166757Bobby Nunn (2)Ulysses B. Nunn.American doo-wop bass vocalist. +Born on Sept. 20, 1925 in Birmingham, AL - died on Nov. 05, 1986 in Los Angeles, CA. +Bobby was an original member of "The Coasters". +He teamed in the "A-Sharp Trio" later with "The Robins", Bobby Byrd and Ty Terrell, "The Coasters" (1955-1957), recorded also (backup vocals) for Dorsey Burnette. +Needs VoteB. NunnBobby NunnNunnThe CoastersThe RobinsThe Dukes (14)The Nic NacsBobby Nunn & His Hot FiveBobby Nunn And Combo + +1166822Thierry Fischer (2)Thierry Fischer (born 28. September 1957) is a Swiss flutist and conductor and current Music Director of the Utah Symphony Orchestra and will become Artistic Director Emeritus beginning in 2023. He is Honorary Guest Conductor with the Nagoya Philharmonic, and has been Music Director and Chief Conductor of State of São Paulo Symphony Orchestra (Brazil) since the beginning of 2022.Needs Votehttps://www.thierryfischer.com/Thierry FischerThe Chamber Orchestra Of EuropeDrottningholms Barockensemble + +1166984Terry JohnsTerence JohnsBritish horn player, composer and writer. +He has travelled the world as a member of the [a=Royal Philharmonic Orchestra], and of the [a=London Symphony Orchestra] (Assistant Principal Horn, 1981-1985).Needs Votehttps://twitter.com/lines_spaces?lang=enhttps://www.youtube.com/channel/UCU1kkigEGymdYIULa4phOcAhttps://open.spotify.com/artist/7sncwG42xreLKRuNikpP1ehttps://music.apple.com/us/artist/terry-johns/213157380http://www.abgs.org.uk/culturalactivities/GlamChoir/TerryJohnsInfo.htmhttps://divineartrecords.com/artist/terry-johns/Terence JohnsTerry JohnesLondon Symphony OrchestraNational Philharmonic OrchestraRoyal Philharmonic OrchestraThe Nash EnsembleLondon Mozart PlayersThe New SymphoniaHerman Wilson Chamber GroupLocke Brass ConsortThe Wind Virtuosi Of EnglandThe Tony Hymas–Daryl Runswick Big Band + +1167112René BrissetFrench classical Violin & Viola playerNeeds VoteRene BrissetOrchestre National De L'Opéra De Paris + +1167467Jacinto GuerreroJacinto Guerrero TorresSpanish classical music composer +(Born 16 August 1895 Ajofrín, Toledo, Spain – 15 September 1951 Madrid, Spain). +He is mainly known as Zarzuelas composer: "Los Gavilanes" (1923), "El Huésped del Sevillano" (1926), "La rosa del azafrán" (1930).. . He also composed revues, as well as some orchestral compositions. + +Born in Toledo (16th August 1895) to a father who was director of the city's municipal band, Jacinto Guerrero's musical training began early. After his father's death in 1904 he was enrolled as a chorister at Toledo Cathedral, where he studied with Lluis Ferré, who had been impressed with vocal compositions such as a Salve in four parts written when Jacinto was only six years old. The writing of a Hymn to Toledo won for him a grant to study at the Madrid Conservatory (1914), where he studied violin as well as harmony and composition. After a brief spell supporting himself as a café violinist, he quickly obtained a post as a second violinist in the orchestra of the Teatro de Apolo. + + As early as 1919 he began writing music for the theatre, climbing rapidly to fame through a succession of three zarzuelas, La alsaciana (1921), La montería (1922) and Los gavilanes (1923) in one, two and three acts respectively. A series of highly successful works followed, amongst which El huésped del Sevillano (1926); La rosa del azafrán (1930) and La fama del tartanero (1931) are especially noteworthy. Others almost eqaully successful in their day, such as María Sol (1925), Martierra (1928) and El Ama (1933) have faded from the scene. + +The composer was also active as a Madrid city councillor, and became President of the Sociedad de Autores Españoles in 1948. Madrid went into mourning after his sudden death whilst undergoing an operation on 15th August 1951; and his last zarzuela El canastillo de fresas - finished by other hands, and featuring a very young Pilar Lorengar - enjoyed a moving triumph later that year. + +Guerrero also provided music for a great number of revistas as well as quantities of film music, but his zarzuelas were and are the mainstay of his reputation. His melodies are memorable, his vocal lines fluent and natural, his construction sound. His orchestration is clear, straightforward and effective. Guerrero's music may not be distinctively personal or sophisticated; but his best works live on through a winning combination of immediacy and elegant simplicity, and their continued success is well-merited. The Fundación Jacinto y Inocencio Guerrero, founded in memory of the composer and his brother, remains a proactive force for the promotion of Spanish music new and old, live and recorded. +Needs Votehttp://es.wikipedia.org/wiki/Jacinto_Guerrerohttps://adp.library.ucsb.edu/names/1027302-9Gacinto-GuierreroGuerreroGuerrero, J.J. GuerreroJ. Guerrero TorresJ.GuerreroJacintoJacinto FerreroJacinto Guerrero TorresJancinto Guerrero TorresM. Jacinto GuerreroMaestro GuerreroMtro. GuerreroMtro. J. Guerrero + +1167756Jez WilesJeremy WilesClassical freelance percussionist & drummer, workshop leader, and teacher, living and working in London, England, UK. +He studied at the [l527847] (1996-2001). He has performed with British orchestras and on musicals in London. He has been playing & teaching at [a368380] since it began in 2002.Needs Votehttp://jezwiles.com/https://www.facebook.com/jez.wileshttps://twitter.com/jezwileshttps://www.linkedin.com/in/jez-wiles-b88b3993/?originalSubdomain=ukhttps://www.reverbnation.com/musician/jezwileshttps://www.emjazz.co.uk/view_artist.php?id=458https://www.paraisosamba.co.uk/about/CVs/JezWiles.phphttps://www.uwl.ac.uk/staff/jeremy-wileshttps://musicinoffices.com/who-we-are/Jeremy WilesLondon Symphony Orchestra + +1167870Richard VieilleClassical clarinetist.Needs VoteRichard VielleVieilleEnsemble Orchestral De ParisTaffanel Quintet + +1168118Harry MortimerHarry Mortimer (10 April 1902 Hebden Bridge, Yorkshire, England, UK – 23 January 1992 London England, UK) was an English cornet player, composer and conductor who specialized in brass band music. He is regarded as the world's best ever cornet player. +In 1911 he joined [a=Luton Red Cross Band]; he stayed with the band until 1925. He made his debut with the [a=Foden's Band] on the 29th December 1924, becoming Principal Cornet in 1932; he left the band in 1942. In 1928 to 1930 Harry joined the [a=Royal Liverpool Philharmonic Orchestra] moving back to Manchester in 1930 when he was welcomed back to the [a374006] as principal trumpet (1930 to 1941). Harry would also be part of the [a=BBC Northern Symphony Orchestra] joining them in 1935 where he stayed until 1939. Between 1936 and 1940 Harry held the position of Professor of Trumpet at the [l459222]. In 1936 he was appointed Musical Director of [a29759], a post he continued with until 1971 when he became musical advisor. In 1958 the format of his [url=https://www.discogs.com/artist/5141840-Harry-Mortimer-His-All-Star-Brass]All-Star Brass Band[/url] changed because there were too many bands to be contacted every time he wanted to arrange a concert and so he cut the bands down to three with Foden’s, Faireys and Morris Motor's making up what became known as the [a=Men O' Brass]/[a2968658]. +He waw awarded the OBE in 1950 and the CBE in 1987. +Son of [a=Fred Mortimer] and oldest brother of [a=Alex Mortimer] & [a=Rex Mortimer]. +Some of his arrangements for brass band were credited under his alias [b][a3042715][/b].Needs Votehttps://en.wikipedia.org/wiki/Harry_Mortimerhttps://www.fodensbandheritage.co.uk/about-us/articles/harry-mortimer/https://4barsrest.com/articles/2002/art199.asphttps://4barsrest.com/articles/2002/art202.asphttps://www.famousbirthdays.com/people/harry-mortimer.htmlH. MortimerHarry Mortimer CBEHarry Mortimer O.B.EHarry Mortimer O.B.E.Harry Mortimer OBEHarry Mortimer With The Grand Massed BandHarry Mortimer's Grand Massed BandHarry Mortimer, O.B.E.Harry Mortimer, OBEHarry Mortimer. O.B.E.MortimerH.R. MoretonThe Williams Fairey Brass BandHallé OrchestraPhilharmonia OrchestraRoyal Liverpool Philharmonic OrchestraBBC Northern Symphony OrchestraMen O' BrassFrank SeymourHarry Mortimer & His All Star BrassFoden's BandLuton Red Cross Band + +1168575Roland KressRoland Günther KressSwedish classical violinist, born April 7, 1967.Needs VoteSveriges Radios SymfoniorkesterStockholm Sinfonietta + +1169324Alla SimoniAla SimonishviliGeorgian-born soprano vocalist, based in Italy.Correct + +1169484Buddy & Mary McCluskeyUsually credited for Spanish lyrics to songs originally in English. Also appears (by mistake) as "B. M. Mc Cluskey" or "Mcluskey".Needs VoteB M McCluskeyB&M McCluskeyB&M.McCluskeyB. & A. McCluskeyB. & M. McCluskeyB. & M. McClusceyB. & M. McCluskeyB. & Mary McCluskeyB. H. McCloskeyB. M Mc CluskeyB. M. McCluskeyB. M. CluskeyB. M. Mc CluskeyB. M. McClueskeyB. M. McCluskeyB. M. MccluskeyB. Mary McClusWritten-BykeyB. Mary McCluskeyB. Mary McLuskeyB. Mary-McCluskeyB. McCluskeyB. McCluskey & M. McCluskeyB. McCluskey / M. McCluskeyB. McCluskey, M. McCluskeyB. W. McCluskeyB. and M. McCluskeyB. y M. Mc CluskeyB.H. Mc CloskeyB.M McCluskeyB.M. MC CluskeyB.M. MCluskeyB.M. Mc CluskeyB.M. Mc LoskeyB.M. McCluskeyB.M. McCluskyB.M.McCluskeyBuddyBuddy Mary McCluskeyBuddy & M. McCluskeyBuddy & M. McCluskyBuddy & Mary McClauskeyBuddy & Mary McClushkeyBuddy - Mary McCluskeyBuddy And Mary McCluskeyBuddy E Mary McCluskeyBuddy M. Mc.CluskeyBuddy M. McCluskeyBuddy M.McCluskeyBuddy Marry McCluskeyBuddy Mary CluskeyBuddy Mary M c CluskeyBuddy Mary Mac CluskeyBuddy Mary MacCluskeyBuddy Mary Mc CluskeyBuddy Mary Mc. CluskeyBuddy Mary McCluskeyBuddy Mary McCluzkeyBuddy Mary- Mc. CluskeyBuddy Mary/McCluskeyBuddy McCluskey / Mary McCluskeyBuddy McCluskey, Mary MccluskeyBuddy Y Mary McCluskeyBuddy and Mary McCluskeyBuddy y Mary McCluskeyBuddy-Mary Mc. CluskeyBuddy-Mary McCluskeyBuddy. M. McCluskeyBudy Mary McCluskeyByddy Mary McCluskeyM. B. McCluskeyM. C. McClueskeyMary & Buddy McCluskeyMc CluskeyMcCluskeyMcCluskey Buddy MaryMccluskeyBuddy McCluskeyMary McCluskey + +1169517Orfeón DonostiarraSpanish chorus from San Sebastian - Donostia (Basque Country), founded in 1897. Its first chorus master was Norberto Luzuriaga. +For Chamber choir/chorus credit use [a4447695] +For Tiples chorus credits use [a4175611] +For children choir/chorus credit use [a4809444] + +Chorus master: +[a3814377] (1902-1929) +[a3372352] (1929-1968) +[a2750488] (1968-1986) +[a1779774] (1987-)Needs Votehttp://www.orfeondonostiarra.org/es/https://www.facebook.com/OrfeonDonostiarraDonostiakoOrfeoiahttps://www.youtube.com/user/OrfeonDonostiarra/videoshttps://es.wikipedia.org/wiki/Orfe%C3%B3n_DonostiarraBasques' Chorus "Orfeón Donostiarra"Choers de L'Orfeon DonostiarraChoeursCoro Del Orfeón DonostiarraCoro Orfeón DonostiarraDonostiako OrfeoiaOrfeon DonostiarraOrfeón Donostiarra / Donostiako OrfeoiaOrfeón Donostiarra Sección "Maestro Arbós"Orféon DonostiarraThe Orfeon DonostiarraХор Басков "Орфеон Деностиарра"Хор Басков «Орфеон Доностиарра»オルフェオン・ドノスティアラJuan José FernándezJosé Antonio SainzMaite ArruabarrenaAntxon AyestaránJuan GorostidiSecundino EsnaolaCoro de tiples del Orfeón DonostiarraJosé Antonio Sainz AlfaroGuillermo LazcanoCoro de Cámara del Orfeón DonostiarraMaría Teresa Hernández UsobiagaAna SalaberríaCarlos FagoagaJoaquin IruretagoyenaJose Luis IruretagoyenaManuel Arruti + +1169734Nathaniel WatsonClassical vocalist, born in 1955.Needs VoteWatsonPomeriumLes Voix Baroques + +1169735Gregory CarderClassical tenor.CorrectPomerium + +1169736Kathy EtheringtonClassical soprano.Needs VotePomeriumVoices Of Ascension + +1169737Michael SteinbergerClassical tenor.Needs VotePomeriumThe Saint Tikhon Choir + +1169738Alessandra ViscontiClassical soprano. Same as [a5814030] ?Needs VotePomeriumSchola AntiquaVoices Of AscensionParthenia XII + +1169741Alexander BlachlyClassical vocalist and conductor of vocal ensemble [a=Pomerium]Needs Votehttp://music.nd.edu/people/faculty/alexander-blachly/Alex BlachlyBlachlyPomeriumSchola Antiqua + +1169743Timothy Leigh EvansBritish classical tenor vocalist, died 3 September 2019 at the age of 58.Needs VotePomeriumHudson ShadEnsemble Phoenix Munich + +1170020Lidewij ScheifesClassical cellist.Needs VoteLidewei ScheifesLideweij ScheifesLidewij ScheiffesLidewy ScheifesLidewy SchijfesLidewÿ ScheifesLidweÿ ScheifesLiedewij ScheifesLindewij SchijfesScheifesIl FondamentoConcerto VocaleLa Petite BandeL'ArchibudelliMusica AmphionCantus CöllnBalthasar-Neumann-EnsembleOrchestra Of The 18th CenturyConcerto AmsterdamCurrendeAlma Musica AmsterdamDas Neue OrchesterBaroque OrchestraThe Northern Consort + +1170095Dirk AltmannGerman clarinetist. +Needs VoteRadio-Sinfonieorchester StuttgartJunge Deutsche PhilharmonieBundesjugendorchesterSWR Symphonieorchester + +1170284François FauchéFrench classical Bass & Baritone vocalistNeeds VoteFrancois FauchéFrançois FaucheLe Concert SpirituelLes Arts FlorissantsEnsemble Gilles BinchoisEnsemble OrganumEnsemble Clément JanequinLudus ModalisAkadêmiaEnsemble europeen William Byrd + +1170286Antoine SicotFrench classical bass, baritone & tenor vocalist.Needs Votehttp://fr.wikipedia.org/wiki/Antoine_SicotA. SicotLes Arts FlorissantsEnsemble OrganumEnsemble Clément JanequinEnsemble Venance FortunatLes Solistes De La Musique Byzantine + +1170316Antoine BusnoisAntoine Busnois (also Busnoys) (c. 1430 – November 6, 1492) was a French composer and poet of the early Renaissance Burgundian School. While also noted as a composer of sacred music, such as motets, he was one of the most renowned 15th-century composers of secular chansons.Correcthttp://en.wikipedia.org/wiki/Antoine_BusnoisA. BusnoisA. BusnoysA.BusnoisAnthoine BusnoisAntoine BusnoysAntonius BusnoysBusnoisBusnoys + +1170321Lawrence SonderlingViolinist.Needs VoteLarry SonderlingLawrence D. SonderlingLos Angeles Philharmonic Orchestra + +1170503Mike AveryNeeds Major Changes + +1170758René ClemencicAustrian musician and musicologist (* 27 February 1928 in Vienna, Austria; † 08 March 2022 in Vienna, Austria). +He founded the ensemble [a848756] in 1957 and played harpsichord, clavichord and recorders. + +Needs Votehttp://www.clemencic.at/https://www.musiklexikon.ac.at/ml/musik_C/Clemencic_Rene.xmlhttps://db.musicaustria.at/node/52048https://de.wikipedia.org/wiki/Ren%C3%A9_Clemencichttps://en.wikipedia.org/wiki/Ren%C3%A9_Clemencichttps://www.imdb.com/name/nm0166014/ClemencicDr René ClemencicDr. Rene ClemencicDr. Renee ClemencicDr. René ClemencicDr. René ClemenčicIves RoquetaProf. Dr. René ClemencicR. C.Rene ClemencicRené ClemenčićRené ClemenčičRené ClemenčíćRenée Clemencicルネ・クレマンシックOrchester Der Wiener StaatsoperClemencic ConsortI Solisti VenetiMusica Antiqua WienClemencic TrioDas Wiener Barock-Trio + +1171234Lorna RoughBritish classical violinistNeeds VoteRoyal Scottish National Orchestra + +1171322Alberto LucarelliNeeds VoteA. LucarelliA.LucarelliLocarelliLucarelliI Girasoli + +1171497Ailla VitikkaAilla Maretta VitikkaFinnish violinist born on October 26, 1935 in Helsinki, Finland and died on August 17, 2021 in Helsinki, Finland.Needs VoteAila VitikkaAilla Witikka + +1171740Manfred VorderwülbeckeGerman sports journalist and author, born 3 January 1940.Needs Votehttps://de.wikipedia.org/wiki/Manfred_Vorderw%C3%BClbeckeRegensburger Domspatzen + +1172204Bertrand GrenatClassical oboist.Needs VoteOrchestre National De France + +1172206Brindley SherrattClassical bass vocalistCorrectBBC SingersThe Monteverdi Choir + +1172295Vladimir NemtanuRomanian classical violinistNeeds VoteOrchestre National Bordeaux Aquitaine + +1172316Enrique JordáSpanish-American conductor, born March 24, 1911 in San Sebastián, Spain and died March 18, 1996 in Brussels, Belgium. +Debut as condutor in 1938, his first profesional conducting orchestra was with [a3537172], later in [a854120] from 1940 to 1945. [a446472] conductor from 1954 to 1963. He retired in 1973. +Needs Votehttps://en.wikipedia.org/wiki/Enrique_Jord%C3%A1Enrique JordaEnrique JordanJordaJordáЭнрике ХордаOrquesta Sinfónica De MadridOrquesta Sinfónica de Euskadi + +1172364Daniel YeadonClassical cello and viol player.Needs VoteD. YeadonDanny YeadonThe English Baroque SoloistsRaglan Baroque PlayersConcordiaFitzwilliam String QuartetAustralian Chamber OrchestraFlorilegium + +1172367Alison McGillivrayClassical string instrumentalist born in Glasgow, ScotlandNeeds VoteAlison Mc GillivrayAlison McGillivaryThe English Baroque SoloistsThe Academy Of Ancient MusicConcerto CaledoniaConcordiaDunedin ConsortThe Society Of Strange And Ancient InstrumentsEuropean Brandenburg EnsembleBrecon BaroqueThe English ConcertThe Band Of Instruments + +1172538Thomas ReinhardtGerman classical bassoonistNeeds VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1172896Pentti VuosmaaPentti Kalervo VuosmaaFinnish bassist. Born on August 24, 1932 in Vaasa, Finland and died on March 31, 2024 in Lahti, Finland.Needs VoteP. VuosmaaJani Uhleniuksen Uusrahvaanomainen OrkesteriJazz Society Big BandThe Vostok All-Stars + +1173663Günther KarpinskiGerman violinist.CorrectStaatskapelle DresdenPhilharmonisches Staatsorchester HamburgUlbrich-QuartettDas Wührer-Kammerorchester + +1173798Milton E. NadelMilton Erwin NadelAmerican double bassist and session musician, born in 1933 died in March 2005.Needs VoteMickey NadelMilton NadelMilton NadellNadel MiltonSan Francisco SymphonyLos Angeles Philharmonic OrchestraSeventh Army Symphony Orchestra + +1173812Jacob KrachmalnickJacob Morris KrachmalnickClassical violinist, born 14 March 1922 in Krisilov, Russia and died 31 August 2001 in Marin County, California, United States. He was formerly the concertmaster of [url=http://www.discogs.com/artist/27519-Philadelphia-Orchestra-The]The Philadelphia Orchestra[/url] from 1951 to 1958 and formerly the concertmaster of the San Francisco Symphony until 1970.Needs VoteJ. KrachmalnickJ.KrachmalnikJack KrachmalnickJacke KrachmalnickJacob KracahmalnikJacob KrachalnickJacob KrachmalikJacob KrachmalnikJake KrachmalnickJake KrachmilnickKrachmalnick JacobThe Philadelphia OrchestraNew York PhilharmonicGlenn Miller And His OrchestraSan Francisco SymphonyThe Cleveland OrchestraThe Gene Page OrchestraMilt Jackson & StringsConcertgebouworkestDallas Symphony OrchestraSan Francisco Opera Orchestra + +1174166Veikko VallasNiilo Sauvo Pellervo PuhtilaCorrectV .VallasV VallasV. VailasV. VallasV. WallasV.VallasVallasSaukkiSauvo PuhtilaMerjaSolja TuuliP. L. SaarinenPekka SaartoA. OjapuuTimjamiTikka (2)Pekka PeltoJukka TeräS. Salla + +1174461Robert BloomAmerican oboist and English horn player, born in 1908 and died in 1994. +Father of [a=Kath Bloom] +For the American songwriter, please use [a=Bobby Bloom]. +Needs VoteB. BloomR. BloomThe Philadelphia OrchestraNBC Symphony OrchestraRochester Philharmonic OrchestraFritz Reiner And His Orchestra + +1174678Christian LeinsGerman recording producer and A&R manager.Needs Votehttps://de.wikipedia.org/wiki/Christian_Leinshttp://www.leins-coaching.de/https://www.allmusic.com/artist/christian-leins-mn0001441395 + +1174878Diemut PoppenDiemut Poppen is a German classical viola player and professor at the [l513363].Needs VoteDietmut PoppenThe Chamber Orchestra Of EuropeMichael Collins And FriendsStudierende Der Folkwang-Hochschule, EssenStipendiatinnen Der »Studienstiftung des deutschen Volkes« + +1175029Harvey Auger Jr.Needs Major ChangesHarvey AugerHarvey Auger, Jr. + +1175034Richard Simpson (3)Oboe player.Needs Votehttps://www.linkedin.com/in/richard-simpson-54418a33/Richard SimpsonBBC Symphony Orchestra + +1175218Valto TynniläValto Veikko TynniläBorn on January 19, 1904 in Myllykoski, Finland. A Finnish lyricist and trumpeter. + +Reported MIA on February 19, 1940 in the county of Metsäpirtti, Finland during the Winter War (Talvisota, 1939-1940). + +Pseudonyms: Ola Allan, Vale Tynys, Walter Rae +Needs VoteTynniläTänniläV. TynniläV.TynniläValto Veikko TynniläVeikko TynniläVeikko Valto TynniläWalter RaeOla AllanVale Tynys + +1175335Carl RacineViolin and viola player.Needs VoteCarl A. RacineChicago Symphony Orchestra + +1175512Ray WinslowAmerican Jazz trombonist.Needs VoteWoody Herman And His OrchestraMaynard Ferguson & His OrchestraWoody Herman And The Fourth Herd + +1175600Matti ViljanenMatti Johannes ViljanenFinnish conductor, arranger, accordionist and composer, born February 24th, 1927 in Helsinki, Finland. Died February 7th, 1987 in Mäntsälä, Finland. He was also one of the pioneers of Finnish jazz.Needs VoteM. ViljanenM.ViljanenMatti ViljannenViljanenМ. ВильяненMatti Viljasen KvintettiMatti Viljasen YhtyeMatti Viljasen OrkesteriMatti Viljasen Studio-orkesteriMatti Viljasen KvartettiMatti Viljasen SeptettiMatti Viljasen TrioMatti Viljanen Ja Rytmiryhmä + +1176054Aila-Anneli NymanAila-Anneli Irma NymanNeeds VoteA-A. NymanA. A. NymanA. NymanA.NymanAila Anneli Nyman + +1176300Jon WaltonAmerican jazz saxophonist. +Played with : Paul Pendarvis, Ted Weems, Phil Harris, Benny Goodman and Artie Shaw. +Jon recorded an album as leader, titled "Jon Walton Swings Again" (1963). + +Born : 1922 in England +Died : May 14, 1972 in Clairton, Pennsylvania. +Needs VoteJan WaltonJohn WaltonTom WaltonArtie Shaw And His OrchestraBenny Goodman And His Orchestra + +1176565Ulrich GerhartzPiano technician.Correct + +1177534Michel WilliSwiss violist, born in 1968.Needs VoteSchweizer OktettAmbient Groove ArtistsTonhalle-Orchester ZürichArs Preciosa + +1177538Florian WalserSwiss clarinetist, born in 1965.CorrectSchweizer OktettTonhalle-Orchester Zürich + +1177540Jens LohmannGerman violinist (* 18 September 1966 in Stuttgart, Germany). +He lives in Zürich, Switzerland.Needs Votehttps://de.wikipedia.org/wiki/Jens_Lohmannhttps://musikkurswochen.ch/cours/instructeurs+de+cours/Jens+Lohmann/409Camerata BernSchweizer OktettArs Preciosa + +1177747Teddy WeatherfordAmerican jazz pianist and bandleader. + +Born : October 11, 1903 in Pocahontas, Virginia. +Died : April 25, 1945 in Calcutta, India. (Died of cholera)Needs Votehttp://shanghaisojourns.net/shanghais-dancing-world/2018/6/26/its-all-about-teddy-the-master-text-on-teddy-weatherford-asias-great-jazz-ambassadorhttp://www.tajmahalfoxtrot.com/?tag=teddy-weatherfordT. WeatherfordT.WeatherfordTeddy Weatherford At The PianoWeatherfordErskine Tate's Vendome OrchestraWades Moulin Rouge Orch.All Star Swing Band (2)Teddy Weatherford And His BandCrickett Smith And His SymphoniansTeddy Weatherford & His Boys + +1177807Alfred PlanyavskyAustrian double bassist, tenor and author, born 22 January 1924 in Vienna, Austria and died 18 June 2013 in Vienna, Austria.Needs Votehttp://www.alfredplanyavsky.at/A. PlanyavskyAlfred PlaniavskyAlfred PlanyawskyDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerLeonhardt Baroque EnsembleHofmusikkapelle WienEnsemble Eduard Melkus + +1177808Wolfgang PoduschkaWolfgang Poduschka (17 July 1917 - September 1995) was an Austrian violinist. He was a member of the [a754974] from 1939 to 1984Needs VoteW. PoduschkaOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Vienna Philharmonia Quintet + +1177809Rudolf JoselAustrian trombonist, born 24 January 1939 in Graz, Austria.Needs VoteRudi JoselRudolph JoselWiener PhilharmonikerRudi & Peter JoselTrio JoselFriedrich Gulda Und Sein Eurojazz-OrchesterJosel All StarsNew Austrian Big Band (2)D' Steirischen Volksmusikfreunde + +1177810Adalbert SkocicAustrian cellist, born 4 December 1939 in Mannheim, Germany.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Kammerensemble + +1177811Alfred PrinzAustrian clarinetist and composer, born 4 June 1930 in Vienna, Austria and died 20 September 2014 in Vienna, Austria.Needs VotePrinzアルフレート・プリンツOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterWiener KammerensembleBläservereinigung Der Wiener PhilharmonikerEnsemble Eduard MelkusChamber Orchestra of the Vienna State Opera + +1177812Paul GuggenbergerPaul Guggenberger (1941 - 2000) was an Austrian violinist.Needs VoteWiener PhilharmonikerEnsemble WienWiener Ring Ensemble + +1177814Peter GötzelAustrian violinist, born 16 June 1940 in Vienna, Austria.Needs VotePeter GoetzelOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble WienMusikvereinsquartettKüchl-QuartettWiener Ring Ensemble + +1177858Gottfried MartinAustrian violist, born 26 November 1944 in Vienna, Austria and died 17 May 2011.CorrectOrchester Der Wiener StaatsoperWiener Philharmoniker + +1178098David MarksDavid Lee MarksAmerican guitarist (Born August 22nd, 1948 in Hawthorne, California, U.S.A.), who is best known for being an early member of the Beach Boys. While growing up in Hawthorne, California, Marks was a neighborhood friend of the original band members and was a frequent participant at their family get-togethers.[1] Following his departure from the group, Marks fronted the Marksmen and performed and recorded as a session musician.Needs Votehttp://www.davidleemarks.com/https://en.wikipedia.org/wiki/David_MarksD. MarksDave MarksDavidDavid L. MarksDavid Lee MarksDavid Marks and FriendsMarksThe Beach BoysColours (14)The Moon (4)David Marks & The MarksmenRachel & The Reindeerz + +1179156Peter-Carsten BraunGerman cellist.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester Leipzig + +1179157Wolfgang EspigGerman violist. +(conditional: April 21, 1938 - December 1, 2017)Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1179159Hans-Christian BartelHans-Christian Bartel (27 November 1932 in Altenburg, Germany - 27 December 2014 in Leipzig, Germany) was a German violist and composer.Needs Votehttps://www.club-carriere.com/clubcarriere/index.php/interviewsstart/interviews/userprofile/150914BartelChristian BartelHans Christian BartelBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGruppe Neue Musik "Hanns Eisler" Leipzig + +1179523Ellisiv SollesnesViolinist.Needs VoteBergen Filharmoniske OrkesterBergen Chamber Ensemble + +1179524Tone M. BirkelandClassical violinist.Needs VoteTone Martinsen BirkelandBergen Filharmoniske Orkester + +1180422Freddie PalmerNeeds Major ChangesE. PalmerF. PalmerP. PalmerPalmer + +1181207Patrick CardasViola player.Needs VoteBBC Symphony Orchestra + +1181345The Dorsey Brothers OrchestraNeeds Votehttps://adp.library.ucsb.edu/names/103918Dorsey BrosDorsey Bros OrchDorsey Bros OrchestraDorsey Bros. And Their OrchestraDorsey Bros. Orch.Dorsey Bros. OrchestraDorsey Brother's OrchestraDorsey BrothersDorsey Brothers & OrchestraDorsey Brothers & Their Concert OrchestraDorsey Brothers & Their OrchestraDorsey Brothers And BandDorsey Brothers And Their Concert OrchestraDorsey Brothers And Their Orch.Dorsey Brothers And Their OrchestraDorsey Brothers Concert OrchestraDorsey Brothers OrchDorsey Brothers Orch.Dorsey Brothers OrchestraDorsey Brothers' OrchestraDorsey Brothers’ OrchestraJimmy And Tommy Dorsey OrchestraLa Orquesta De Los Dorsey BrothersLos Hermanos DorseyOrch. Tommy Dorsey & Jimmy DorseyOrquesta De Los Hermanos DorseyThe Combined Band Of Tommy E Jimmie DorseyThe Combined Bands Of Jimmy And Tommy DorseyThe Dorsey Bros OrchestraThe Dorsey Bros. Orch.The Dorsey Bros. OrchestraThe Dorsey Bros.' Orch.The Dorsey Bros.' OrchestraThe Dorsey Brother's OrchestraThe Dorsey Brother's Original OrchestraThe Dorsey BrothersThe Dorsey Brothers & Their OrchestraThe Dorsey Brothers And Their OrchestraThe Dorsey Brothers Orch.The Dorsey Brothers With OrchestraThe Dorsey Brothers' Combined OrchestraThe Dorsey Brothers' Concert OrchestraThe Dorsey Brothers' OrchestraThe Dorsey Brothers' Orchestra With Vocal TrioThe Dorsey Brothers' Original OrchestraThe Dorsey OrchestraThe Dorsey's Brothers OrchestraThe DorseysThe Fabulous DorseysThe Tommy And Jimmy Dorsey OrchestraTheir OrchestraTommy & Jimmy DorseyTommy & Jimmy Dorsey And Their OrchestraTommy & Jimmy Dorsey OrchestrasTommy & Jimmy Dorsey's OrchestrasTommy And Jimmy DorseyTommy And Jimmy Dorsey And OrchestraTommy And Jimmy Dorsey OrchestraThe Travelers (5)Paul Hamilton And His OrchestraGlenn MillerTommy DorseyRay McKinleyBunny BeriganDick McDonoughJimmy DorseyEddie LangArnold BrilhartAdrian RolliniFulton McGrathLarry BinyonStan kingArthur SchuttArtie BernsteinSkeets HerfurtPaul CohenLee CastaldoSam HermanBuzzy BraunerLucien SmithDoug MettomeJimmy HendersonPhil NapoleonLeo McConvilleBill CronkRoc HillmanBobby Van EpsHenry SternHerbert SpencerJerry NearyLouis "King" GarciaSkippy GalluccioGeorge ThowJack StaceyTak TakvorianBob VarneyDon MattesonDoug TalbertSam HysterDelmar KaplanFred FarrarJoe PameliaKenny DeLangeJohn McCormick (9)Billy Marshall (2)Fuzzy Farrar + +1181451Leroy TibbsJazz pianist.Needs VoteLe Roy TibbsLeRoy TibbsTibbsKing Oliver & His Dixie SyncopatorsPerry Bradford Jazz PhoolsLeRoy Tibbs And His Connie's Inn Orchestra + +1181717Linus WilhelmLinus Wilhelm (25 August 1891 - 27 June 1978) was a German classical double bass player. +A member of the [a260744] from 1914 to 1957.Needs VoteL. WilhelmLenus WilhelmWilhelmBerliner PhilharmonikerHanke-Quartett + +1181718Dietrich GerhardtDietrich Gerhardt (15 May 1928 —7 November 2022) was a German violist. He was a member of the [a260744] from 1955 to 1993.Needs VoteDietrich GerhardBerliner PhilharmonikerStuttgarter KammerorchesterWestphal-QuartettPhilharmonisches Oktett Berlin + +1182505Frauke HessClassical Viola da Gamba & Violone instrumentalist.Needs Votehttp://www.fraukehess.de/uebermich.htmlFrauke HesseFreiburger BarockorchesterBremer Barock ConsortWeser-RenaissanceHamburger RatsmusikGesualdo Consort AmsterdamSirius ViolsCapella De La TorreHimlische CantoreyBoston Early Music Festival OrchestraLa Festa MusicaleIl DesiderioAbendmusiken BaselNeue Innsbrucker HofkapelleKirchheimer Düben ConsortMovimento (4)Europäisches Hanse-Ensemble + +1182817Jaroslav MotlíkJaroslav Motlík (born 20 April 1926) is a Czech violist and music teacher.Needs VoteJ. MotlikJ. MotlíkJaroslav MotlikJosef MotlikThe Czech Philharmonic OrchestraVlach QuartetEnsemble Of Violas + +1182819Zdeněk BendaClassical double bassistNeeds VoteThe Czech Philharmonic Orchestra + +1182956Jiří HudecJiří HudecCzech classical double bass player. Son of composer and conductor [a=Jiří Hudec (2)].Needs VoteJiri HudecJiri HudezThe Czech Philharmonic OrchestraPro Arte Antiqua PrahaDuo di Basso + +1183365Robert WoolleyBritish classical keyboard instrumentalistNeeds VoteRobert WolleyTaverner PlayersThe Purcell QuartetL'École D'OrphéeCamerata Of LondonThe English Concert + +1183410Judith StarrClassical violinist.Needs VoteBergen Filharmoniske Orkester + +1183542John AmansDutch flutist (1884-1958).Needs Votehttp://nl.wikipedia.org/wiki/John_Amanshttps://adp.library.ucsb.edu/names/111190New York PhilharmonicCincinnati Symphony OrchestraOrchester Der K. K. Hofoper + +1183568Alice McVeighClassical cellist and novelist.Needs Votehttps://alicemcveigh.com/https://www.linkedin.com/in/alice-mcveigh-59ab1718/Royal Philharmonic OrchestraHanover BandThe Bromley Symphony Orchestra + +1183570Margaret ArchibaldClassical clarinetist.Needs VoteMargaret AchibaldThe Academy Of Ancient MusicCollegium Musicum 90Hanover BandClassical WindsThe English Concert + +1183571Gail HennessyClassical oboist.Needs VoteGail HennesseyNew London ConsortOrchestre Des Champs ElyséesThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Hanover BandThe King's ConsortBrandenburg ConsortTafelmusik Baroque OrchestraThe Symphony Of Harmony And InventionLondon Oboe BandThe English ConcertFlorisma + +1183572Brinley YareClassical flautist.CorrectGabrieli PlayersHanover Band + +1183573Therese TimoneyClassical violinist.Needs VoteThrese TimoneyThérèse TimoneyThe Academy Of Ancient MusicHanover BandCapella ClementinaThe Irish PhilharmoniaIrish Baroque OrchestraThe English Concert + +1183574Jeremy WardClassical bassoonist.Needs VoteThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Hanover BandL'Estro ArmonicoHausmusik (2)The Music PartyThe English Concert + +1183577Colin LawsonClassical woodwind player, director of the Royal College of Music, and contributor of liner notes to classical releases.Needs Votehttps://www.rcm.ac.uk/hp/professors/details/?id=92199LawsonThe Academy Of Ancient MusicCollegium Musicum 90La Petite BandeHanover BandThe King's ConsortThe Albion EnsembleClassical WindsThe English Concert + +1183578Fiona DuncanClassical violinistNeeds VoteThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersHanover Band + +1183579Peter FenderClassical conductor, composer and violinist.Needs Votehttps://www.peterfender.co.uk/The SixteenThe Academy Of Ancient MusicThe Consort Of MusickeHanover BandThe King's ConsortBrandenburg Consort + +1183580Ruth SlaterClassical violinist.Needs VoteThe Amsterdam Baroque OrchestraGabrieli PlayersHanover BandDunedin ConsortThe Mozartists + +1183581Colin WeirClassical violinist.Needs VoteLondon Classical PlayersHanover BandLondon Musici + +1183592Fritz WesenigkFritz Wesenigk (24 April 1923 - 7 March 2009) was a German trumpeter. He was a member of the [a260744] from 1951 to 1974.Needs VoteBerliner PhilharmonikerStaatskapelle Berlin + +1183639Fernando PrevitaliItalian conductor and composer. +Born February 16th, 1907 in Adria, Italy +Died August 1st, 1985 in Rome, Italy.Needs Votehttps://en.wikipedia.org/wiki/Fernando_PrevitaliF, PrevitaliF. PrevitaliF.PrevitaliFerdinando PrevitaliFernado PervitaliFernando PrevitaleFernardo PrevitaliFranco PrevitaliM.o Fernando PrevitaliPrevitaliOrchestra dell'Accademia Nazionale di Santa Cecilia + +1183948Taito VainioTaito VainioBorn on April 1st, 1935 in Mäntsälä, Finland. Died on October 6th, 2001 in Mäntsälä, Finland. A long-time Finnish accordionist who started his professional career in 1954 and continued until the early 1990s.Needs Votehttps://fi.wikipedia.org/wiki/Taito_VainioT. VainioT.VainioTaito Vainio Dragspel Med OrkesterackTaito Vainio YhtyeineenVainioEdward Vesala Sound & FuryTaito Vainion StudioyhtyeTaito Vainion OrkesteriLasse Pihlajamaan Pelimannit + +1184041Leslie HatfieldClassical violinist, orchestra leader and violin tutor. +She studied at the [l527847]. Former member of [a848261] and the [a=London Symphony Orchestra] (1938-1963), serving as Principal Second Violin from 1948 until 1954. She was co-Leader of the [a=Northern Sinfonia] and Leader of the [a=Ulster Orchestra] before taking up the position as Leader of the [a=BBC National Orchestra of Wales]. Member of [a=The Gaudier Ensemble]. Violin tutor at the [l925143].Needs Votehttps://www.rwcmd.ac.uk/staff/lesley-hatfieldhttps://www.imdb.com/name/nm4066333/Lesley HatfieldLondon Symphony OrchestraUlster OrchestraThe Chamber Orchestra Of EuropeNorthern SinfoniaThe Gaudier EnsembleCapricorn (14)BBC National Orchestra Of Wales + +1184414Daryl Smith (5)Tuba player.CorrectEnsemble Modern + +1184532Roy ReynoldsRoyston Leonard ReynoldsJazz big band saxophone and flute player. +Born: 11th August 1929, Birmingham, England. +Died: 28th November 2010, Victoria, British Columbia, Canada. +Needs Votehttp://www.afm247.com/roy_tributes.htmlR. ReynoldsRoyston Leonard ReynoldsStan Kenton And His Orchestra + +1184533Dave KeimTrombonistCorrect"Cliff Dweller" (Dave Keim)Cliff DwellerD. KeimStan Kenton And His Orchestra + +1184534John HarnerAmerican trumpet playerNeeds Votehttp://www.harnertrumpetlessons.com/bio.htmJ. HarnerStan Kenton And His OrchestraJim Widner Big BandThe Tom Talbert Jazz Orchestra + +1184535Dan SalmasianSaxophonistNeeds VoteTito Puente Jr. & The Latin RhythmStan Kenton And His Orchestra + +1184536Alan YankeeComposer, Songwriter, Arranger, Conductor, Saxophone, Flute, VocalsNeeds VoteA. YankeeAl YankeeAlan YankeesAlien YankeeAllen YankeeYankeeStan Kenton And His OrchestraThe Al Yankee Jazztet + +1184537Mike Egan (4)Trombone player.Needs VoteMichael Anthony EganMichael EganStan Kenton And His Orchestra + +1185201Marieke De BruijnDutch violinist, born in 1967 in Apeldoorn, The NetherlandsNeeds Votehttp://www.mariekedebruijn.nl/M.A. de BruynMarieke De BruinMarieke de BruijnMarieke de BruynNieuw Sinfonietta AmsterdamMarieke de Bruijn String QuartetOrkest Amsterdam DramaCombustion ChamberTrio VidalitaTango Rosa Rio + +1185341Tommy GuminaThomas Joseph GuminaAmerican jazz accordionist, born 20 May 1931 in Milwaukee, Wisconsin, USA. + +Gumina took up the accordion at 11. A graduate of Don Bosco High School in Milwaukee, Gumina started playing professionally after school. Bandleader Harry James discovered him at a club. In the 1950s, Gumina was featured on the television shows of Liberace, Ed Sullivan Show and Jackie Gleason Show, and performed in Las Vegas as well. + +In 1961, he was named by Stan Kenton to the faculty of Kenton's jazz clinic at Michigan State University. At the time, Gumina said, "Until recent years, the accordion has been thought of in this country as a polka or concert instrument. This is the first time one of Kenton's clinics has included the instrument." + +In 1968, Gumina founded the Polytone Amplifier Company and in 1987 he created Polytone records with guitarist Joe Pass. + +He died 2013 in Los Angeles. Needs Votehttps://en.wikipedia.org/wiki/Tommy_Guminahttps://adp.library.ucsb.edu/names/319317https://archive.jsonline.com/blogs/news/229756331.htmlGuminaT. GuminaThomas GuminaTommy Gumina - AccordianTommy Gumina Acordeón Y RitmoHarry James And His OrchestraBuddy DeFranco - Tommy Gumina QuartetJoe Pass/Tommy Gumina TrioTommy Gumina Trio + +1185444Sam FrankoAmerican violinist, conductor and arranger, born 20 January 1857 in New Orleans, Louisiana and died 6 May 1937 in New York City, New York.Needs Votehttps://adp.library.ucsb.edu/names/106436FrankoS. FrankoSam FrancoSan FrancoС. ФранкоBoston Symphony Orchestra + +1186406Joe Hamilton (2)Joseph Henry HamiltonAmerican TV producer, actor, singer and composer. +Born 6 January 1929 in Los Angeles, California, USA +Died 9 June 1991 in Los Angeles, California, USA (62 years old). +He was married to [a778234] from 1963 to 1984 (divorced). Father of [a584959] and [a89451]. + +Hamilton began his career as a singer and composer with the vocal group,The Skylarks. He was known for producing The Carol Burnett Show (1967-78) and Mama's Family (1983-90). He won five Emmy Awards and wrote Burnett's famous theme song, which she sang to end her show each week, “I'm So Glad We Had This Time Together”.Needs Votehttps://en.wikipedia.org/wiki/Joe_Hamilton_(producer)https://www.imdb.com/name/nm0357960/HamiltonThe Skylarks + +1186514Neville CreedConductor and chorus master. He is the Artistic Director of [a=London Philharmonic Choir] and the brother of [a881713].Needs VoteLondon Philharmonic Choir + +1186848Wilhelm GrimmOboist. + +For Wilhelm Karl Grimm credited together with Jakob Ludwig Karl Grimm please use [a=Gebrüder Grimm] with ANV. +CorrectSymphonie-Orchester Des Bayerischen Rundfunks + +1187061Anne Britt Sævig ÅrdalAnne Britt Sævig ÅrdalNorwegian cellist, born 1953 in Bergen, Norway.CorrectAnne Briss Saevik ArdalAnne Britt Saevik ArdalAnne Britt SævigAnne Britt Sævik ÅrdalOslo Filharmoniske Orkester + +1187710Warren WeidlerWarner Alfred WeidlerTenor SaxophoneNeeds VoteAlfred WeidlerC. WeidlerWarner WeidlerWeidlerAlfred WeidlerMetronome All StarsStan Kenton And His Orchestra + +1187713George WeidlerGeorge William WeidlerAmerican Jazz saxophonist and child actor. +Born January 11, 1926, California, USA. +Died December 27, 1989, Los Angeles County, California, USA. +Married to singer/actress [a216294] (1946-1949, divorce). +Married to actress [a367569] (1957-1970, divorced). +Brother of [a5750495], [a2438191] and [a3360799].Needs Votehttps://en.wikipedia.org/wiki/George_William_Weidlerhttp://www.imdb.com/name/nm0917766/https://ourgang.fandom.com/wiki/Weidler_BrothersG. MullerG. WeidlerG. WiedlerG. WielderGeorge WiedlerWeidlerGeorge WilderStan Kenton And His OrchestraLes Brown And His OrchestraIke Carpenter And His Orchestra + +1187719Ken HannaKenneth L. HannaJazz trumpeter, big band leader and arranger, born July 8, 1921 in Baltimore, died December 10 or 11, 1982 probably in El Cajon, California. +Work for [a=Stan Kenton] during several periods; from 1942 until military service as an arranger; 1946-1948 as a trumpeter and arranger; 1950-1951; and in the the 1970s, when he wrote arrangements, led workshops, and conducted the orchestra during Kenton's illness in 1972. Later he became a record distributor.Needs VoteHannaK. HannaKen HannahKenneth HannaMetronome All StarsStan Kenton And His OrchestraKen Hanna And His Orchestra + +1188255Norman SchweikertAmerican french horn player, born in 1937, died in 2019.Needs VoteN. SchweikertNorm SchweikertMannheim SteamrollerChicago Symphony OrchestraRochester Philharmonic Orchestra + +1188339Kati DebretzeniKatalin DebretzeniClassical violinist.Needs Votehttps://www.facebook.com/profile.php?id=100001780231403https://www.bach-cantatas.com/Bio/Debretzeni-Kati.htmhttps://monteverdi.co.uk/soloists/kati-debretzeniKatalin DebretzeniKati Debrezeniקטי דברצניThe English Baroque SoloistsThe Amsterdam Baroque OrchestraOrchestra Of The Age Of EnlightenmentThe King's ConsortArcangeloEuropean Brandenburg EnsembleThe English ConcertVictoria Baroque PlayersBenedetti Baroque Orchestra + +1188573Paul De ClerckBelgian classical viola player.Needs Votehttps://web.archive.org/web/20150214204334/http://www.lesinouies.fr/spip.php?article147https://www.ictus.be/declerckhttps://www.encuentrosmusicales.com/paul-de-clerck---en.htmlPaul De ClercqPaul DeclerckEnsemble ModernIctus (2)Collegium Vocale + +1189032Kieron MooreKieron Andrew MooreBritish classical oboist and Professor of Oboe. Born 21 February 1963 in Bishop's, Stortford, Hetfordshire, England, UK - Died 21 October 2012. +He attended the [l527847] from 1981 to 1985. After graduation, he worked with the [a=BBC Welsh Symphony Orchestra] and the [a=Hallé Orchestra]. In 1989, he joined the [a=London Symphony Orchestra] as their joint Principal Oboe, a position he held until 2012. He taught at l305416].Needs Votehttps://www.feenotes.com/database/artists/moore-kieron-21-february-1963-21-october-2012/https://lso.co.uk/more/news/114-kieron-moore.htmlhttps://vgmdb.net/artist/22838London Symphony OrchestraHallé OrchestraBBC Welsh Symphony Orchestra + +1189033Paul Milner (3)British classical bass trombone player and Professor of Bass Trombone. Born in Edinburgh, Scotland, UK. +He studied at the [l459222]. In 1993, he became Principal Bass Trombone in the [a=Orchestra Of Opera North] in Leeds. He took the same position with the [a=London Symphony Orchestra] in 2007. Professor of Bass Trombone at the [l290263].Needs Votehttps://www.facebook.com/paul.milner.18294/https://www.feenotes.com/database/artists/milner-paul/https://musicacademy.org/big-profiles/paul-milner/https://lso.co.uk/orchestra/players/brass.html#Tromboneshttps://uk.yamaha.com/en/artists/p/PaulMilner.htmlLondon Symphony OrchestraOrchestra Of Opera North + +1189045LaVerne AndrewsLaVerne Sophie Andrews.American jazz vocalist (Andrews Sisters). + +Born : July 06, 1911 in Minneapolis, Minnesota. +Died : May 08, 1967 in Bentwood, California. +Needs Votehttps://adp.library.ucsb.edu/names/301496La VerneLa Verne AndrewsLaVerneLaverne AndrewsThe Andrews Sisters + +1189711Gordan NikolitchГордан Николић = Gordan NikolićFranco-Serbian classical violinist, concertmaster, conductor, and teacher. Born in 1968 in Brus, Socialist Federal Republic of Yugoslavia. +He studied at the [l1517230]. In 1989 (or 1990) he was appointed solo violin (Leader) and Artistic Director of the [a=Orchestre D'Auvergne]. In 1997, he was also appointed first violin (concertmaster) of the [a=Orchestre De Chambre De Lausanne], relinquishing this post in 1998 to become first violin (Leader) of the [a=London Symphony Orchestra], a post he held until October 2017. In 1999, he also became Leader of [a=The Chamber Orchestra Of Europe]. In 2004-2005 season he was also appointed Artistic Director of the [a=Netherlands Chamber Orchestra]. He was Artistic Director of [b]St. George Strings[/b] from Belgrade (2006-2011). Since 2006 he has been Principal Guest Director of [a=The Manchester Camerata]. Since 2007, he has been Musical Director of the [b]BandArt[/b] chamber orchestra. Since 2001, he has been Prince Consort Professor at the [l=Royal College of Music, London] and has given masterclasses at [l=The Guildhall School Of Music & Drama].Needs Votehttps://open.spotify.com/artist/3TUwSkxdDCLxwj08Oj9wsphttps://music.apple.com/us/artist/gordan-nikolitch/56556258https://en.wikipedia.org/wiki/Gordan_Nikolitchhttps://www.bach-cantatas.com/Bio/Nikolitch-Gordan.htmhttps://www.feenotes.com/database/artists/nikolitch-gordan-1968-present/https://www.nativedsd.com/artist/gordan-nikolic/https://mreservata.wordpress.com/masterclass-bruges-belgium/guest-teachers-2017/gordan-nikolic-violin/https://web.archive.org/web/20180406051828/http://www.razumovsky.org.uk/members/nikolitch_1_2.htmhttps://orkest.nl/en//33/gordan-nikolichttps://agencedianedusaillant.com/en/artistes/gordan-nikolitch-2/https://www.rts.rs/page/radio/ci/story/28/radio-beograd-2/4410072/gordan-nikolic.htmlhttps://www.imdb.com/name/nm1893296/Gordan NicholitchGordan NicolicGordan NikolicGordan NikolitcGordan NikolićGordana NikolićGordon NicolitchGordon NikolicGordon NikolitchLondon Symphony OrchestraThe Chamber Orchestra Of EuropeOrchestre De Chambre De LausanneNetherlands Chamber OrchestraOrchestre D'Auvergne + +1190049Helmut RadatzClassical bassoonistNeeds VoteDresdner Philharmonie + +1190050Gerhard HauptmannClassical oboe playerCorrectDresdner Philharmonie + +1190051Renate KrahmerGerman soprano, she studied in Weimar from 1957 to 1962, she has given master-classes since 1988, and was appointed Professor of Singing in 1992 at the Berlin College of Music. She died 9 September 2017.Needs Votehttp://www.bach-cantatas.com/Bio/Krahmer-Renate.htmKrahmerRenate Kramer + +1190052Jürgen PilzClassical violinistNeeds VoteDresdner Philharmonie + +1190053Wolfgang PeschkeClassical flautistCorrectDresdner Philharmonie + +1190207Andreas KuhlmannGerman violistCorrectDresdner Philharmonie + +1190922Dan JenkinsTrombone player. +Principal Trombone with the [a=City Of London Sinfonia].Needs VoteCity Of London SinfoniaLondon BrassThe London Scratch OrchestraThe New Blood Orchestra + +1191064James MathesonAmerica oboist and English horn player, died on February 4, 2015.Needs VoteJames H. MathesonSan Francisco SymphonySan Francisco Opera Orchestra + +1191309Chet FerrettiAugustino FerrettiAmerican jazz trumpeter, played with: Maynard Ferguson, Lena Horne, Lionel Hampton, Woody Herman, Herb Pomeroy. +Born: 1933 in Boston, Massachusetts, USA. +Married: Nancy Henry, August 1959. Two children, Lisa and Michael. +Died: March, 1971.Needs VoteAFAndy FerettiAugust FerrettiChet FerettiSlide Hampton OrchestraWoody Herman And His OrchestraWoody Herman And The Swingin' HerdMaynard Ferguson & His OrchestraThe Herb Pomeroy Orchestra + +1191310Roy WiegandRoy Wiegand Jr.American jazz trombonist, born June 24th, 1936. + +Note: For the trumpeter (his son), please use : [b][a=Roy Wiegand III][/b]. +On releases he is frequently credited incorrectly as 'Roy Wiggins'.Needs Votehttp://roy-wiegand.com/Ray WiegandRay WieganoRoy WeigandRoy Weigand IIRoy Wiegand Jr.Roy Wiegand jr.Roy WieganoRoy WigginsWoody Herman And His OrchestraOliver Nelson And His OrchestraWoody Herman And The Fourth HerdStan Kenton Alumni BandRoy Wiegand Big BandSal Salvador And His OrchestraRoy Wiegand Jazz OrchestraThe Mike Vax Big BandThe Los Angeles City College Jazz BandRoy Wiegand And His Famous Dixieland Band + +1191311Frank HittnerBaritone saxophone player.Needs VoteFrank HitnerFrank J. HittnerFrank J. Hittner JrFrank J. Hittner Jr.Frank J. Hittner, Jr.Woody Herman And His OrchestraWoody Herman And The Swingin' HerdMaynard Ferguson & His Orchestra + +1191379Bruno LeysVisual artist and musician from France. In early 1967, Bruno Leys was attending medical school in Paris. Driving back to the university with a friend, Bruno sang along nonchalantly with the songs on the radio. His friend was surprised to discover his lovely voice and encouraged him to audition for a group composed of friends from the university who were looking for a singer. Bruno was not selected for the group, but became friends with one of its members, Emmanuel Pairault. Emmanuel had been studying economics, but decided to enter the music conservatory instead, to learn the drums and the use of the illustrious “ondes Martenot,” a primitive electronic musical instrument. He composed a few solo numbers, remarkable for their use of that instrument. Looking for someone to write lyrics to go with his instrumental tracks, he asked Bruno to try a few. Bruno and Emmanuel thereby put together a small repertoire, with no ambition other than to have fun. Although the details are now forgotten, they worked hard to bring their song to the attention of Nicole Croisille (a singer and actress), who suggested sending the demo to her friend Norbert Saada, who headed a label called La Compagnie. This unprecedented use of the Ondes Martenot in a pop song attracted Saada, who offered to make a record. Emmanuel quickly assembled a small team to make the recording. The sessions took place at Dominique Blanc Francart’s studio on rue de la Gaîté in Paris, with Bernard Lubat on percussion, François Rabath on stand-up bass, Jimenez and Jean-Pierre Dariscuren playing guitar, Emmanuel Pairault and Sylvain Gaudelette on the ondes Martenot, not to mention Bruno on vocals. Four tracks were recorded for the EP: “Maintenant je suis un voyou,” “Eve,” “Hallucinations” and “Galaxie.” With the sessions completed, Bruno left for his obligatory military service and thus lost control over things. Saada pressed a promotional 45 in an attempt to find a licensing deal in Canada, to no avail. it has become a real collector’s item. Back from his military service, Bruno learned that Saada had gone out of business and sold his catalog, putting an end to any hope of issuing the EP (1969). On 2020-10-16 it has finally been released by Born Bad. +Needs Votehttps://www.bornbadrecords.net/releases/bruno-leys-maintenant-je-suis-un-voyou/B. LeysB.LeysBruneau LeysBruno LeyseBruno LeÿsBrunoleysBrunoy Leys + +1191432John HoustonJohn Charles HoustonAmerican jazz pianist, born March 22, 1933 in Philadelphia, Pennsylvania. +Died July 3, 1981 +Needs Votehttps://www.rosehills.com/obituaries/whittier-ca/john-houston-8409307Sonny Stitt BandHarold Land QuintetGene Ammons - Sonny Stitt Quintet + +1191813Geneviève BeaudryGeneviève BeaudryViolinist born in Montréal. +Geneviève Beaudry starts her musical studies at a very young age. Graduated from the Conservatory of Music of Montreal, she also studied at the Utrecht Conservatory (Netherlands) and the Sienna Chigiana Academy (Italy). +A versatile musician, she has been concertmaster of the Orchestre symphonique de Trois-Rivières from 1990 to 1993. A commited chamber player, she was a member of the Quatuor Bozzini with whom she played important concerts in New York and Buffalo, among numerous other performances. Invited to major festivals (Ottawa, Orford and Lanaudière) she can often be heard on CBC.Needs VoteGenevieve BeaudryQuatuor BozziniLes Violons du RoyEnsemble De La Société De musique Contemporaine Du QuébecMcGill Chamber OrchestraL'Orchestre Symphonique De Trois-RivièresAppassionata + +1191921VelosVelos is a Hard Dance & Drum & Bass DJ from the South Coast. + +DJing since the age of 16 he won the second Tidy Trax DJ Competition at Summer Camp. Since then he could be seen playing regularly at Tidy Weekenders before being signed to Bournemouth's super club Slinky as a resident DJ. Not known for playing just the current big tunes, Velos was never afraid to take a step back and play tracks that people might have forgotten. Described by then label manager, Lee Haslam as someone who "wasn't scared to take risks" and could "create an unrivalled amount of energy through his tune selection and mixing style", he was a firm favourite with the harder edged Slinky punters. + +Since 2013 Velos has been mainly focused on the Drum & Bass sound playing local events around the South, but still enjoys playing his very distinctive Hard House sound. Needs Votehttp://www.djvelos.comhttps://soundcloud.com/velos + +1191988Dmitri BabanovClassical hornistNeeds VoteBabanovDmitry BabanovMahler Chamber OrchestraKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinChantily Quintet + +1192841Thomas HemsleyThomas Jeffrey HemsleyEnglish baritone vocalist. + +Born: 12 Apr 1927 · Coalville, England +Died: 11 Apr 2013 · London, EnglandNeeds Votehttp://en.wikipedia.org/wiki/Thomas_HemsleyHemsleyThomas HemslyThomas HensleyTom HemsleyТомас Хемсли + +1193114Jacqueline DekkerDutch flute player and teacherNeeds VoteNieuw Sinfonietta Amsterdam + +1193496Wayne Marshall (2)British organist, pianist and conductor (born 13 January 1961, Oldham, Lancashire).Needs Votehttp://en.wikipedia.org/wiki/Wayne_Marshall_%28conductor%29Coventry CathedralWayne MarshallTaverner Consort + +1193697Keith MillarClassical percussionist, born in Edinburgh, Scotland.Needs VoteLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon SinfoniettaRoyal Scottish National OrchestraThe London VirtuosiThe Military Ensemble Of London + +1193698David Johnson (15)British classical percussionist. +[b]Not to be confused with the American percussionist [a=David Johnson (6)][/b]. +Former member of the [a=London Symphony Orchestra] (1964-1966).Needs VoteLondon Symphony OrchestraThe Early Music Consort Of LondonThe Academy Of Ancient MusicMelos Ensemble Of LondonApollo OrchestraThe Wind Virtuosi Of EnglandEnglish Bach Festival Percussion Ensemble + +1193699Kenneth LawKenneth Lawrence LawBritish classical cellist and painter. Born in 1919 in Brixton, London, England, UK - Died 12 May 1988. +Former member of the [a=London Symphony Orchestra] (1948-1988). +Cousin of [a1313291].Needs Votehttps://www.kenlawscc.co.uk/index.htmlhttps://www.kenlawspaintings.co.uk/K. LawKen LawLondon Symphony Orchestra + +1193700Stanley WoodsClassical trumpet player.Needs VoteLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon Wind OrchestraLocke Brass ConsortLondon Festival Brass EnsembleThe Wind Virtuosi Of England + +1193702Russell JordanClassical timpanist/percussionist. +He was Assistant Principal Timpani with the [a=London Symphony Orchestra] (1978-1987) and former member of the [a=London Philharmonic Orchestra]. Member of the [a=Orchestra Of The Royal Opera House, Covent Garden].Needs VoteRussel JordanLondon Symphony OrchestraLondon Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenLondon Wind Orchestra + +1193703Denzil FloydClassical hornist, and horn teacher. +Former member of the [a=London Symphony Orchestra] (1954-1957).Needs VoteLondon Symphony OrchestraBBC Symphony OrchestraThe Nash EnsembleThe Band Of The Royal ArtilleryThe Military Ensemble Of London + +1193705Arthur Wilson (3)Arthur John WilsonBritish trombonist, and Professor of Trombone. Born 21 June 1927 in Battersea, South London, England, UK - Died 10 July 2010 in London, England, UK. +He joined the [a=Coldstream Guards] in June 1944. Briefly, in 1950, he joined the [a=London Symphony Orchestra]. He joined the [a=Philharmonia Orchestra] in 1951, becoming Principal Trombone in 1952 until leaving the orchestra in 1979. After leaving the Philharmonia, Wilson joined the [a=Orchestra Of The Royal Opera House, Covent Garden] as Co-Principal Trombone until 1981. Principal with the [a=English Chamber Orchestra], and a founding member of the [a=Philip Jones Brass Ensemble]. +In 1967, he became Professor of Trombone at the [l=Royal College Of Music, London]; he held the post until 1999.Needs Votehttps://www.britishtrombonesociety.org/news/arthur-wilson-21-june-1927-10-july-2010/https://issuu.com/britishtrombonesociety/docs/the_trombonist_summer_2010http://www.theguardian.com/music/2010/aug/25/classicalmusicandoperahttps://www.independent.co.uk/news/obituaries/arthur-wilson-trombonist-hailed-as-the-most-important-of-his-generation-2097552.htmlhttps://www.thetimes.co.uk/article/arthur-wilson-tjsbccrqzjvWilsonLondon Symphony OrchestraColdstream GuardsEnglish Chamber OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenWestminster Brass Ensemble + +1193706Edward BarryClassical violinist.Needs VoteTed BarryBBC Symphony OrchestraCity Of London SinfoniaRoyal Philharmonic Orchestra + +1193707Nicholas Maxted-JonesClassical violinist.Needs VoteLondon Symphony Orchestra + +1193708David Ellis (2)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1973-1980).Needs VoteLondon Symphony OrchestraKingston Youth Symphony Orchestra + +1193709Malcolm HallClassical trumpeter. +Former member of the [a=London Symphony Orchestra] (1980-1996).Needs VoteLondon Symphony OrchestraEnglish Chamber OrchestraLocke Brass Consort + +1193710Roger GrovesUK classical trombonist. +He was a member of the [a=London Symphony Orchestra] (1975-1986).Needs Votehttps://www.britishtrombonesociety.org/news/roger-groves/London Symphony OrchestraRoyal Philharmonic OrchestraThe Early Music Consort Of LondonLondon Wind OrchestraMusica ReservataThe London Gabrieli Brass Ensemble + +1193711John Ford (5)Classical violinist. +Former Principal Violin with [a493826] for more than thirty years.Needs VoteLondon Symphony OrchestraWest Australian Symphony Orchestra + +1193712Ian MacIntoshClassical trumpeter.Needs VoteIan MackintoshEnglish Chamber Orchestra + +1193713Clifford LantaffClassical harpist.CorrectBamberger SymphonikerBBC Philharmonic + +1193714Jack LeesClassical percussionist. +Former member of the [a=London Symphony Orchestra] (1963-1985).Needs VoteLondon Symphony OrchestraMelos Ensemble Of London + +1194142The Schütz Choir Of LondonFounded by [a=Roger Norrington].Needs VoteCoro H. SchützCoro Schütz De LondresHeinrich Schutz ChoirHeinrich Schutz Choir & ChoraleHeinrich Schutz Choir And ChoraleHeinrich Schutz Choir Of LondonHeinrich Schütz ChoirHeinrich Schütz Choir & ChoraleHeinrich Schütz Choir Of LondonHeinrich Schütz choirHeinrich-Schütz-ChorSchutz Choir Of LondonSchutz Choir of LondonSchütz ChoirSchütz Choir Of LondonSolistes & Schütz Choir Of LondonSoloists & The Schütz Choir Of LondonThe Schutz ChoirThe Schütz Choirシュッツ合唱団Sarah LeonardGordon Jones (2)Deborah RobertsTessa BonnerPatricia ForbesRichard WistreichSuzanne FlowersAngus SmithJeremy BirchallMark PadmoreNicola JenkinCarol Hall (2)Stephen Charlesworth (2)Mary NicholsMary SeersRichard SavageJean KnibbsLucinda HoughtonDonna DeamNicolas RobertsonRufus MüllerCaroline TrevorJohn DudleySally DunkleyNeil LuntJohn Milne (2)Leigh NixonJacqueline ConnellTwig HallPeter LongJennifer Ward ClarkeKym AmpsPhilip DaggettRoger NorringtonAlison GoughCaroline AshtonMark Peterson (3)Joyce JarvisCaroline FfordeKate EckersleyHugh Davies (3)Rachel BevanPenelope VickersCatherine PierardRichard SuartPhilip LawsonStephen AlderLynton AtkinsonSusan BisattJoy RobinsonRuth GleaveGillian HullSusan Anderson (3) + +1194418Tatu PekkarinenTaavetti PekkarinenBorn on December 6th, 1892 in Kuopio, Finland. Died on July 4th, 1951 in Helsinki, Finland. A Finnish lyricist and author. His lyrics were in many Finnish hit songs in the 1930s and 1940s. + +Tatu Pekkarinen used pseudonyms Ilmari Mäkitie, R. Kainulainen, Reino Raudus, Samu Kirjala and Erkki Salama. +Needs Votehttps://fi.wikipedia.org/wiki/Tatu_PekkarinenPekkarinenT PekkarinenT. PekkarinenT. PpekkarinenT.PekkarinenТату ПеккариненSamu KirjalaReino RaudusR. KainulainenErkki SalamaTatu Pekkarinen Ystävineen + +1194420Helena EevaAune Helena EevaBorn on October 13, 1923 in Metsäpirtti (in Karelian Isthmus, back then a part of Finland, nowadays belongs to Russia). + +Helena Eeva was a lyricist. She often worked together with [a=Toivo Kärki], but since most of her lyrics were written under a pseudonym, she has remained quite unknown to the general public. + +She has used the following pseudonyms: A. Kajo, H. Neva, Arvi Tarvainen, Asser Tervasmäki, Tjärbacka, Aarne Torniainen. + +Died on March 24, 1960 in Helsinki, Finland. She was 36 years old. +Needs VoteEevaEeva - HelenaEeva HelenaEeva-HelenaH. EevaH. JylhäH.EevaHelene EevaAsser TervasmäkiArvi TarvainenH. NevaAarne TorniainenSuolakiviA. TjärbackaA. Kajo + +1194994Baby Mae MackVaudeville blues singer, who recorded two titles for OKeh in Chicago 1926, backed by [a=Louis Armstrong] and [a=Richard M. Jones], and also duets with [a=Sam Robinson (6)] 1925-1926. + +She is listed in Blues and gospel records 1890-1943 (1997) as "Baby Mack", with a note: "This artist's real name is reported to be May Mack." (p. 583)Needs Vote"Baby" May MackBaby MackMack + +1194995Erskine Tate's Vendome OrchestraNeeds Major ChangesErskin Tate's Vendome OrchestraErskine Tate & His Vendome OrchestraErskine Tate And His Vendome OrchestraErskine Tate Vendome OrchestraErskine Tate's Vendome Theatre OrchestraOrquesta Vendome De Erskine TateBuster BaileyFreddie KeppardFrank EthridgeTeddy WeatherfordJimmy BertrandJohn HareErskine TateAngelo FernandezNorval MortonJames TateEddie AtkinsFayette WilliamsAdrian Robinson (2) + +1194996Clarence Williams' TrioThis is an instrumental group. For the vocal trio of the same name which recorded for OKeh in the 1920s see Clarence Williams' Trio (3).Needs VoteClarence Williams TrioCozy ColeSidney BechetBuddy ChristianClarence Williams + +1194998Perry Bradford Jazz PhoolsNeeds Major ChangesBradford's Jazz PhoolsJerry Bradford's Jazz PhoolsLouis Armstrong With Perry Bradford's Jazz PhoolsP. Bradford PhoolsPerry BradfordPerry Bradford's Jazz PhoolsPerry Bradfords Jazz PhoolsPerry Bradford’s Jazz PhoolsLouis ArmstrongCharlie GreenBuster BaileyGarvin BushellJimmy HarrisonDon RedmanBubber MileyJohnny DunnJames Price JohnsonGus AikenJune ClarkKaiser MarshallPerry BradfordLeroy TibbsGus HorsleyHerb FlemingSam Speed (2)Jimmy WadeHerschel BrassfieldBud AikenCalvin Jones (7)Charles Smith (24)Walter Wright (5)Stanley Wilson (3)Bill Dover + +1194999Hociel ThomasBlues singer and pianist, married name Hociel Tebo, born July 10, 1904 in Houston, Texas, died August 22, 1952 in Oakland, California. Daughter of [a1601337], niece of [a307399] and [a353519]. +Thomas recorded for Gennett in 1925 and for OKeh 1925-1926. After World War II she recorded a session for Circle in San Francisco, California, in 1946. +Needs Votehttps://adp.library.ucsb.edu/names/109151Billy YoungH. ThomasHociel Thomas TeboThomas + +1195000Nolan WelshBlues singer and pianist, who recorded for OKeh in 1926 and for Paramount in 1928-1929. He's best known for his recordings with Louis Armstrong - "The Bridwell Blues" and the "St. Peter Blues" for Okeh on June 16, 1926.Needs Votehttp://www.allmusic.com/artist/nolan-welsh-mn0001917551Barrel House WelshNolan 'Barrel House' WelshNolan (Barrel House) WelshWelchWelshNolan 'Barrelhouse' Welch + +1195066David StattelmanClassical tenor vocalistNeeds VoteTheatre Of VoicesAltramar Medieval Music Ensemble + +1195154Franck Lopez (2)Baritone vocalistCorrectChoeur National De L'Opéra De Paris + +1195419Francesco TamagnoFrancesco Tamagno (28 December 1850, Turin – 31 August 1905, Varese) was an Italian operatic tenor.Needs Votehttp://en.wikipedia.org/wiki/Francesco_Tamagnohttp://www.musicweb-international.com/Friedman/page18.htmhttps://adp.library.ucsb.edu/names/103660Comm. Francesco TamagnoFrancesco Tamagno With Piano AccompanimentTamagnoФранческо Таманьо + +1195423Nellie MelbaHelen Porter ArmstrongAustralian operatic soprano, born 19 May 1861 in Richmond, Australia and died 23 February 1931 in Sydney, Australia.Needs Votehttps://en.wikipedia.org/wiki/Nellie_Melbahttp://www.nelliemelbamuseum.com.au/recordings.htmhttps://adp.library.ucsb.edu/names/101919(Dame) Nellie MelbaD. Nellie MelbaDame Nellie MelbaMadame MelbaMdm. MelbaMdme. MelbaMelbaMme. MelbaMme. Nellie MelbaN. MelbaNelly MelbaНелли Мельба + +1195743Roger PembertonRoger PembertonAmerican jazz saxophonist, arranger, composer, and educator originally from Evansville, Indiana. +Born 17 October 1930 in Evansville, Indiana and died 7 January 2021 in Columbia, South Carolina. +Best-known as a mainstay of the Chicago jazz and recording scenes of the 1970's and later. He had played with Buddy Morrow, Woody Herman, and Maynard Ferguson and had a stint with Merv Griffin's television show band before moving to Chicago in 1972.Needs Votehttps://de.wikipedia.org/wiki/Roger_PembertonPembertonR. PembertonWoody Herman And His OrchestraLes Hooper Big BandWoody Herman And The Fourth Herd + +1196085Thomas PittClassical cellistNeeds VoteTom PittMagnetic North OrchestraGabrieli PlayersWeser-RenaissanceNew Dutch AcademyBarokksolisteneConcerto CopenhagenThe Amsterdam String QuartetGaechinger Cantorey + +1196154Dennis NesbittBritish cello & viol (viola da gamba) player, and conductor. +Former member of the [a=London Symphony Orchestra] (1953-1954). Founder (in 1957) and conductor of the [a=Elizabethan Consort Of Viols].Needs VoteDenis NesbittDennis NisbettNesbittThe Elizabethan Players, dir. Dennis NesbittLondon Symphony OrchestraThe Early Music Consort Of LondonThe Morley ConsortFidelio QuartetElizabethan Consort Of ViolsBath Festival OrchestraLondon Soloists EnsembleThe Jacobean EnsembleCollegium SagittariiLondon Bach Ensemble + +1196155Stephen ShinglesCecil Stephen ShinglesUK classical viola player, and Professor of Viola. +Following six years as Co-Principal Viola of [a262940] (1949-1954), he devoted himself to chamber music. A former member of the [b]Hirsch String Quartet[/b] for 12 years, he was a principal member of [a832962] from 1961. He was a Fellow of the [l527847], and Professor of Viola there, from 1965 onwards. He was one of the five founding directors of ASM (orchestra) Ltd from June 1971.Needs Votehttps://open.spotify.com/artist/0j2P4TtJ6MuqncwEHeRvUNhttps://music.apple.com/br/artist/stephen-shingles/4571004?l=enhttps://www.the-paulmccartney-project.com/artist/stephen-shingles/https://www.imdb.com/name/nm1957893/ShinglesSteve ShingleSteve ShinglerSteve ShinglesLondon Symphony OrchestraThe Chitinous EnsembleThe Academy Of St. Martin-in-the-FieldsStanley Myers And His OrchestraThe Little Orchestra Of LondonThe London StringsAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +1196162Graham SheenGraham SheenBassoonist, teacher, composer and arranger (b.1952). + +Sheen graduated from the Guildhall School of Music and Drama in London, where he studied with [a=Roger Birnstingl] and [a=Martin Gatt]. He joined the [a=The English Opera Group] in 1973 as principal bassoon under the direction of [a=Benjamin Britten]. In 1975 he moved to the [a=English Chamber Orchestra] and in the following year became its principal bassoonist (a post he held until 1983). + +In 1976, [a=Sir Neville Marriner] invited Sheen to join [a=The Academy Of St. Martin-in-the-Fields] as principal bassoonist, a position which he still holds to this day. He has also been the principal bassoonist of the [a=BBC Symphony Orchestra] since 1983. + +Since 1979 he has been professor of bassoon at the Guildhall School of Music, London where he also directs the wind ensemble. Many of his past students now occupy positions in major orchestras both in Britain and Europe, and two have become professors at the Guildhall. + +His published works include solo works for bassoon, chamber music for both winds and strings and three song cycles. He has made numerous arrangements for wind ensemble and three volumes of graded pieces for the bassoon. +Correcthttp://grahamsheen.com/https://en.wikipedia.org/wiki/Graham_SheenG. SheenScheen G.Scheen. GSheen G.グレアム・シーンBBC Symphony OrchestraEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe English Opera GroupThe Dartington Ensemble + +1196323Shanna JacksonShanna V. JacksonBorn in November 5th of 1965 in Glencoe, Illinois, USA. +Paris Grey, born Shanna Jackson is an American singer. She originally sang gospel music but her most known work is with the Detroit-based techno-music producer [a=Kevin Saunderson], as [a=Inner City]. The formation found international crossover success in the late 1980s and early 1990s with an irresistible blend of Detroit Techno & Garage House. +Grey recorded three [a=Inner City albums], a Detroit Techno compilation album, and an extended remixes collection of [a=Inner City] pieces. A notable project for Grey prior to joining [a=Inner City] was the Chicago House 12-inch club hit "Don't Make Me Jack (Tonite I Wanna House You)" on [l=Housetime Records].Needs Votehttp://en.wikipedia.org/wiki/Paris_GreyJacksonS. JacksonS.V. JacksonShanna V JacksonParis GreyShanna JaeInner CityUnreleased Project (2) + +1197249David Willis (3)Double bassist.Needs VoteRoyal Philharmonic Orchestra + +1198682Steve AmersonVocalist.Needs Votehttps://www.steveamerson.com/https://en.wikipedia.org/wiki/Steve_AmersonStephen AmersonStephen W. AmersonSteven AmersonThe Roger Wagner ChoraleHollywood Film ChoraleThe Sally Stevens Singers + +1198952Heming ValebjørgNorwegian percussionist, born 1983 in Austbygd, Telemark, Norway.Needs VoteOslo Filharmoniske Orkester + +1199196Morton & Selma CraftHusband and wife songwriting team, most notably for the song "Alone"Needs VoteCraftCraft & CraftCraft - CraftCraft - MortonCraft - S. CraftCraft / CraftCraft and CraftCraft, CraftCraft-CraftCraft/CraftKraftM & S CraftM. & S. CraftM. & S. CroftM. CraftM. Craft - S. CraftM. Craft, S. CraftM. Craft-S. CraftM. Croft - S. CroftM. Et S. CraftM. e S. CraftM. et S. CraftMorton - CraftMorton - CrastMorton CraftMorton Craft & Selma CraftMorton Craft - Selma CraftMorton Craft-Selma CraftMorton-CraftMorty & Selma CraftMorty & Selma KraftMorty & SelmakaffMorty And Selma KraftMorty Craft / Selma CraftMorty Kraft & Selma KraftMorty Y Selma KraftS & M CraftS. & M. CraftS. Craft & M. CraftS. Craft - M. CraftS. Craft / M. CraftS. Craft, M.CraftS. Craft-M. CraftS. Graft - M. GraftSelma And Morty CraftSelma Craft - Morton CraftSelma Craft / Marty CraftSelma Craft / Morton CraftSelma Craft / Morty CraftSelma Craft, Morton CraftSelma Craft/Morton CraftSelma Craft/Morty CraftSelma-M. CraftКрафтMorty CraftSelma Craft + +1199230John Miller (14)British classical trumpet player, tutor, and author. Born 1951 in Fife, Scotland, UK. +John Miller is a graduate of Kings College Cambridge. He was a member of the Philip Jones Brass Ensemble 1972-80 and the Philharmonia Orchestra 1977-1994. Also a founder member of The Wallace Collection brass ensemble from 1986. John joining the staff of the Royal Northern College Of Music in 1999, ultimately Head of Wind Brass and Percussion until 2017.Needs VoteJon MillerMiller J.Miller. JLondon SinfoniettaPhilharmonia OrchestraPhilip Jones Brass EnsembleLondon Wind OrchestraThe Wallace CollectionMichael Thompson Wind Ensemble + +1199356Kyung-Wha Chung정경화South Korean violinist, born 26 March 1948 in Seoul, South Korea. Sister of conductor and pianist [a=Myung-Whun Chung] and cellist [a=Myung-Wha Chung]. Violin faculty at the Juilliard School in New York.Needs Votehttp://en.wikipedia.org/wiki/Kyung-wha_Chunghttp://www.juilliard.edu/faculty/kyung-wha-chungChungK-W. ChungKyun Wha ChungKyung Wha ChungКунг Ва Чунгキョンファ・チョンキョン・ファ・キョンチョン・キョンファ鄭 京和Chung Trio + +1200084StanaAram AlnashéaStana (b. 14 December 1989) is a musician and label owner from Bagdad, Iraq. Currently residing in Stockholm, Sweden. He is well known for being energic on stage and runs by the nickname "Tech Maniac". He runs the radio show Tech Maniac Show and the label Tech Maniac Records.Needs VoteAram AlnashéaAram AssanteAlnasheaSuperwalkersAramEmanuel + +1200823Laurent Manaud-PallasFrench violinist.Needs VoteOrchestre Des Concerts LamoureuxOrchestre National De FranceSirba OctetQuatuor Volta + +1200824Emmanuel AndréClassical violin player.Needs VoteAndre EmmanuelEmmanuel AndreOrchestre Philharmonique De Radio France + +1200825Anne-Aurore AnstettFrench violist.CorrectAnne Aurore AnstettOrchestre National De L'Opéra De ParisEnsemble Syntonia + +1200827Christine JaboulayFrench viola player. Needs VoteC.JaboulayOrchestre National De FranceQuatuor De MinuitZ Quartett + +1200828Diederik SuysBelgian viola player.Needs Votehttp://www.diederiksuys.comDiderick SuysDiederich SuysDiederick SuysDiéderick SuysDiédérik SuysOrchestre National De L'Opéra De ParisSuys KwartetSuys String Trio + +1200830Marianne LagardeFrench violinist.CorrectM. LagardeMarianne Echassoux-LagardeOrchestre National De L'Opéra De Paris + +1200832Céline PlanesFrench violinistNeeds VoteCéline PlanePlane CélineOrchestre Philharmonique De Radio France + +1201611Henry "Red" Allen And His OrchestraNeeds Major Changes"Red" Allen And His OrchestraAl Allen's OrchestraHenry Allen & His OrchestraHenry "Red" Allen & His OrchestraHenry "Red" Allen & OrchestraHenry "Red" Allen And GroupHenry "Red" Allen And His All StarsHenry "Red" Allen And His BandHenry "Red" Allen And His New York OrchestraHenry "Red" Allen And His Orch.Henry "Red" Allen And OrchestraHenry "Red" Allen E La Sua OrchestraHenry "Red" Allen OrchestraHenry 'Red' AllenHenry 'Red' Allen & His OrchestraHenry 'Red' Allen And His OrchestraHenry Allen & His New York OrchestraHenry Allen & His New YorkersHenry Allen & His Orch.Henry Allen & His OrchestraHenry Allen And His New York OrchestraHenry Allen And His New YorkersHenry Allen And His Orch.Henry Allen And His OrchestraHenry Allen And OrchestraHenry Allen E La Sua OrchestraHenry Allen Et Son OrchestreHenry Allen Jnr. & His New York OrchestraHenry Allen Jnr. & His Orch.Henry Allen Jnr. And His New York OrchestraHenry Allen Jnr. And His OrchestraHenry Allen Jr And His New York OrchestraHenry Allen Jr And His OrchestraHenry Allen Jr. & His OrchestraHenry Allen Jr. And His New York OrchestraHenry Allen Jr. And His OrchestraHenry Allen Jr., And His OrchestraHenry Allen Junior And His New York OrchestraHenry Allen Junior Et Son OrchestreHenry Allen Y Su Orq. De Nueva YorkHenry Allen Y Su OrquestaHenry Allen, Jnr. & His Orch.Henry Allen, Jr. & His New York OrchestraHenry Allen, Jr. & His OrchestraHenry Allen, Jr. And His New York OrchestraHenry Allen, Jr. And His New-York OrchestraHenry Allen, Jr. And His OrchestraHenry Allen, Jr., And His OrchestraHenry Red Allen & His New York OrchestraHenry Red Allen & His OrchestraHenry Red Allen And His New YorkersHenry Red Allen And His OrchestraHenry Red Allen OrchestraHenry Red Allen Se Svým OrchestremRed Allen & His New York OrchestraRed Allen & His Orch.Red Allen & His OrchestraRed Allen And His New York OrchestraRed Allen And His OrchestraRed Allen's OrchestraKeg JohnsonJoe GarlandCozy ColeMilt HintonBuster BaileyJohn KirbyDanny BarkerLeon "Chu" BerryEdgar HayesHorace HendersonAlbert NicholasBernard AddisonCecil ScottClaude JonesWalter JohnsonJ.C. HigginbothamHilton JeffersonLuis RussellPaul BarbarinLawrence LucieTeddy HillPops FosterTab SmithGeorge WettlingO'Neil SpencerPee Wee ErwinGeorge WashingtonCharlie HolmesTyree GlennDickie WellsRudy PowellHenry "Red" AllenElmer JamesHenry "Hank" DuncanGeorge StaffordBob HammerKaiser MarshallWill Johnson (2)Glyn PaqueTony ParentiHerb FlemingSol HallEddie Bourne (2)Bill Thompson (21) + +1201661Carl PruittCarl Briggs PruittAmerican jazz bassist, born 3 June 1918 in Birmingham, AL, USA. Died in June 1977.Needs Votehttps://en.wikipedia.org/wiki/Carl_Pruitthttps://adp.library.ucsb.edu/names/338535Carl PruitCarol PruittCharles PruittWoody Herman And His OrchestraBill Doggett ComboRoy Eldridge And His OrchestraCootie Williams And His OrchestraEarl Hines And His QuartetWoody Herman And The Thundering HerdBill Doggett QuintetCootie Williams Sextet + +1201996Giovanni AntoniniItalian woodwind instrumentalist and conductor, born 1965 in Milan.Needs Votehttps://www.bach-cantatas.com/Bio/Antonini-Giovanni.htmhttps://en.wikipedia.org/wiki/Giovanni_AntoniniAntoniniДжованни АнтониниIl Giardino ArmonicoEnsemble "Concerto" + +1202122Benino GNeeds VoteOutsource (3) + +1202189Will WrothClassical baroque trumpet player +Appears also as liner notes translator + +probably same as [a=William Wroth]Needs VoteEnsemble CristoforiBoston Early Music Festival Orchestra + +1202376George BledsoeComposer, vocalist and bassist with many jazz combos and orchestras in the Los Angeles areaNeeds VoteBledsoeMax Roach Quintet + +1202489Gabriella MartellacciItalian alto and contralto vocalist.Needs VoteMartellacciConcerto Delle Dame Di FerraraModo AntiquoConcerto ItalianoCoro dell'Accademia Nazionale di Santa CeciliaCoro "Color Temporis"Musica Perduta + +1202490Walter TestolinItalian classical conductor and bass vocalist. +Director of [a7589701] and [a2194974] ensembles.Needs VoteValter TestolinWalter TestolinaConcerto Delle Dame Di FerraraCantica SymphoniaCoro Della Radio Televisione Della Svizzera ItalianaIl Complesso BaroccoDe LabyrinthoCantar LontanoCappella AugustanaEnsemble Arte-MusicaDelitiæ MusicaeEnsemble Gli ErrantiVenice Monteverdi Academy Choir + +1202799Trio De ViolonsNeeds Major ChangesTrio De ViolonTrio Of ViolinsTrio ViolonStéphane GrappelliEddie SouthMichel Warlop + +1202811James TolliverJazz pianist, saxophonist, and composer/arranger.CorrectJ. ToliverJ. TolliverJames "Buster" TolliverJames (Buster) TolliverJames ToliverJames TolliToliverTolliverNoble Sissle And His OrchestraNoble Sissle And His International OrchestraSidney Bechet And His New Orleans FeetwarmersSidney Bechet & His Circle Seven + +1203182Claire SterlingAustralian violinist, based in the UK.Needs VoteScottish Chamber OrchestraThe English National Opera Orchestra + +1203183Robert McFallViolinist. + +Founder and 2nd violinist of [a=Mr McFall's Chamber]. + +CorrectMcFallR McFallRMcFallRobert Mc FallScottish Chamber OrchestraMr McFall's ChamberThe Loveboat Big Band + +1203189Su-a LeeCellist. + +Born in Seoul, Korea, Su-a has been a member of the [a=Scottish Chamber Orchestra] since 1993 and was a co-founder of the group [a=Mr McFall's Chamber] which was formed to present classical music in new and inventive ways. + +Needs Votehttps://www.sualee.com/https://sualee.bandcamp.com/S LeeSu-aSua LeeScottish Chamber OrchestraMr McFall's ChamberThe Loveboat Big BandThe Dialogues Chorus + +1203705Graham RossClassical bass vocalist.Needs VoteRossThe Choir Of Clare College + +1204610Martin Roos (2)Classical hornist.Needs Votehttps://www.martinroosalphorn.ch/The Czech Philharmonic OrchestraThe Mytha HornsGli Angeli GenèvePhoebus Quintet + +1205095Sonny Stitt And His OrchestraNeeds Major ChangesSonny Stitt & His OrchestraSonny Stitt + +1205705William WrothClassical trumpeterCorrectWill WrothMusica Amphion + +1205706Sayuri YamagataJapan native classical Violinist.Needs VoteSajuri YamagataAustralian Brandenburg OrchestraLa Petite BandeDe Nederlandse BachverenigingRicercar ConsortMusica AmphionOrchestra Of The 18th CenturyBoccherini QuartetL'Armonia SonoraRombouts Quartet + +1205707Johannes BoerClassical Viol & Viola da Gamba instrumentalist.Needs VoteJohannes BoersHuelgas-EnsembleCantus CöllnConcerto Palatino + +1205708Frank de BruineClassical oboist. +Frank de Bruine was born in Vlissingen (NL) (1957, Jul 4th) +He studied oboe at the Royal Conservatory in The Hague from 1977 to 1986. He took lessons in playing both the modern oboe (by [a2060282]) and the historical or baroque oboe (by [a839009] and later [a837446]).Needs Votehttps://encyclopedievanzeeland.nl/Frank_de_BruineOrchestre Des Champs ElyséesLes Arts FlorissantsCollegium VocaleThe Academy Of Ancient MusicMusica AmphionOrchestra Of The 18th CenturyTeatro LiricoEnsemble CristoforiThe English ConcertThe Illyria ConsortBiedermeier Quintet + +1205709Amsterdam Bach SoloistsDutch instrumental Ensemble that was founded in 1985 - Amsterdam, Holland. +In 1985, inspired by the authentic way of performing, a few members of the [a=Concertgebouworkest] (Royal Concertgebouw Orchestra) decided to found the Amsterdam Bach Soloists. +CorrectAmsterdam Bach SolistenAmsterdamer Bach SolistenAmsterdamse Bach SolistenDe Amsterdamse BachsolistenThe Amsterdam Bach SoloistsPeter MasseursJürgen KussmaulHenk RubinghPaul VerheyRob VisserLibia HernandezJuditha HaeberlinHans RijkmansKatharina SchönbergRoland KrämerRemko Wildschut + +1205710Irmgard SchallerIrmgard SchallerAustrian violinist from Salzburg, Austria.Needs Votehttp://www.irmgardschaller.de/index.htmlIrmgard GwiltLondon BaroqueLa Petite BandeOrchestra Of The 18th CenturyDas Kleine KonzertArcomelos + +1205711Thomas HengelbrockGerman violinist and conductor, born 9 June 1958 in Wilhelmshaven.Needs Votehttp://www.thomas-hengelbrock.comhttps://en.wikipedia.org/wiki/Thomas_Hengelbrockhttps://www.bach-cantatas.com/Bio/Hengelbrock-Thomas.htmHengelbrockT. HengelbrockThomas HenglebrockOrchestre De ParisWiener VolksopernorchesterFreiburger BarockorchesterBalthasar-Neumann-ChorBalthasar-Neumann-EnsembleDeutsche Kammerphilharmonie BremenNDR Sinfonieorchester + +1205712Musica AmphionMusica Amphion, founded in 1993 by harpsichord and recorder player [a=Pieter-Jan Belder], is dedicated to the performance of orchestral and chamber music from the 17th and 18th century on original instruments.Correcthttp://www.musica-amphion.nl/Ensemble AmphionBart SchneemannJaap ter LindenWilbert HazelzetCaroline StamPeter FrankenbergDanny Bond (2)Richte van der MeerStaas SwierstraMargaret UrquhartMarten BoekenPieter-Jan BelderRémy BaudetBas RamselaarErwin WieringaSusanne RegelJames MunroLidewij ScheifesWilliam WrothSayuri YamagataFrank de BruineTeunis van der ZwartAlbert BrüggenGustavo ZarbaMarinette TroostPaulien KostenseMenno Van DelftVincent Van LaarElisabeth IngenhouszNico Van Der MeelKate ClarkAnnelies Van Der VegtMike FentrossFred Jacobs (2)Nils WieboldtYukiko MurakamiRobert FranenbergKees KoelmansCassandra L. LuckhardtEsther Van Der EijkHank HeyinkGawain GlentonRie KimuraKlaas van SlagerenFlorencia Gómez + +1205713Mariëtte HoltropClassical violinist and violist.Needs Votehttps://nl.linkedin.com/in/mariette-holtrop-54085a31Mariet HoltropMariette HoltropLa Chapelle RoyaleLa Petite BandeRicercar ConsortCurrendeSolstice Ensemble + +1205714Lucia SwartsClassical cellist Lucia Swarts studied with Anner Bijlsma at the Royal Conservatoire in The Hague, where was received her solo degree in 1982. Needs VoteDe Nederlandse BachverenigingEnsemble SagaTulipa ConsortRombouts QuartetTrio De L'Oustal + +1205716Teunis van der ZwartHorn player and conductor.Needs Votehttp://teunisvanderzwart.nl/https://www.facebook.com/teunis.vanderzwartT. van der ZwartTeunis de ZwartTheunis Van Der ZwartOrchestre Des Champs ElyséesCollegium VocaleAkademie Für Alte Musik BerlinThe Amsterdam Baroque OrchestraFreiburger BarockorchesterOrkest De VolhardingMusica AmphionBach Collegium JapanOrchestra Of The 18th CenturyNetherlands Bach CollegiumRicercar AcademyNachtmusique + +1205717Albert BrüggenDutch classical cellist. Brother of the late [a=Frans Brüggen] and father of [a=Daniel Brüggen].Needs VoteAlbert BruggenNieuw Sinfonietta AmsterdamLes Musiciens Du LouvreMusica AmphionCantus CöllnOrchestra Of The 18th CenturyKölner AkademieMusica Alta Ripa + +1205729Franz RuppGerman-American pianist (* February 24, 1901 in Schongau, Bavaria, German Empire; † May 27, 1992 in Manhattan, New York City, USA).Needs Votehttps://en.wikipedia.org/wiki/Franz_Rupphttps://www.bach-cantatas.com/Lib/Rupp-Franz.htmRuppФранц РуппNew York Sinfonietta + +1205755Mitchell PetersMitchell Peters (born 1935 - died October 28, 2017) was an American timpanist, percussionist, composer and music professor. He joined the [a835190] as its co-principal percussionist in 1969 and retired as its principal timpanist in 2006.Needs Votehttps://en.wikipedia.org/wiki/Mitchell_PetersMitch PetersMitchel PetersMitchell T. PetersLos Angeles Philharmonic Orchestra + +1205972Leon KaplanJazz banjo player appearing first in the 1920s.Needs VoteLeon CaplanRay Miller And His OrchestraSeattle Harmony Kings + +1205976Carl ElmerBig Band trombone player. + +Not to be confused with the trumpet player [a=Ziggy Elman]!Needs Vote"Ziggy" ElmerCarl "Ziggy" ElmerCarl 'Ziggy' ElmerCarl Ziggy ElmerElmerZiggy ElmarZiggy ElmerZiggy ElmerHarry James And His OrchestraGene Krupa And His OrchestraCharlie Barnet And His OrchestraHarry James & His Music MakersBob Keene OrchestraHarry James & His Sextet + +1205986Al CarsellaEarly jazz accordionist and pianistNeeds VoteAll CarsellaRay Miller And His OrchestraArcadia Peacock Orchestra Of St. Louis + +1205988Paul MorseyJazz bassistNeeds VoteHarry James And His OrchestraThe Tom Talbert Jazz Orchestra + +1205989Dick TeelaNeeds VoteRay Miller And His Orchestra + +1205995Fletcher HerefordAmerican saxophonistNeeds VoteF. HerefordFletcher "Skeets" HerfordSkeets HerefordLouis Armstrong And His OrchestraCornell And His OrchestraAl Bowlly And His Orchestra + +1206001Everett McDonaldAmerican jazz trumpet playerCorrectEveret McDonaldEverett Mc DonaldEvertt McDonaldHarry James And His OrchestraHarry James & His Music Makers + +1206004Art GronwaldNeeds VoteRay Miller And His Orchestra + +1206013Francis PolifroniAmerican jazz clarinetist and saxophonist.Needs VoteFrancis PaliforniFrank PolifroniFrank Polifroni ["Polly" Polfrani]Polly PolfraniPolly PolifroniHarry James And His OrchestraHarry James & His Music Makers + +1206019Art DepewArthur M. Depew Jr.American jazz trumpeter. +Born: 1925 in West Palm Beach, Florida. +Died: 29 July 2015 in Valley Village, California. + +Art played with : Bob Chester, Horace Heidt, Tommy Dorsey, Tex Beneke, Harry James, Ray Anthony, Lawrence Welk and others. +Needs VoteArt De PewArt DePewArthur DePewArthur DepewArthur Depew, Jr.Tommy Dorsey And His OrchestraHarry James And His OrchestraBill Tole And His OrchestraBen Homer & His Orchestra + +1206026Lyle SmithJazz saxophone player working since the 1920s.Needs VoteLyles SmithRay Miller And His Orchestra + +1206028Jim CannonJazz saxophonist and reed player.Needs VoteJimmy CannonRay Noble And His OrchestraRay Miller And His Orchestra + +1206031Paul Lyman (2)Violin player (Jazz, Bluegrass) playing since the 1920s.Needs VotePaul LymarRay Miller And His Orchestra + +1206041Lloyd WallenNeeds VoteRay Miller And His Orchestra + +1206044Max ConnettCredited as trumpeter in early jazz period.Needs VoteFrankie Trumbauer And His OrchestraRay Miller And His Orchestra + +1206045Charles MelroseJazz musician played accordion and PianoNeeds VoteCharlie MelroseChas. MelroseThe Cellar BoysElmer Schoebel And His Friars Society Orchestra + +1206048Bill PaleyJazz drummerNeeds VotePaleyRay Miller And His OrchestraMerritt Brunies & His Friars Inn Orchestra + +1206055Billy ToffelAndré-Robert ToffelSwiss Jazz and entertainment musician (guitar, vocal, bass), and actor (* 19 June 1916 in Lausanne, Switzerland). In the late 1940s he went to France and worked with [a1210053]. He appeared in the 1948 movie "Mademoiselle s'amuse" as singer and guitarist. For his later career see [a4244179].Needs Votehttps://de.wikipedia.org/wiki/Billy_ToffelB. ToffelBill ToffelToffelAndre ToffelTeddy Stauffer Und Seine Original TeddiesJerry Thomas SwingtetteOriginal Teddies QuartettThe Berry'sBuddy Bertinat Accordeon Quartet + +1206058Jules FasthoffNeeds VoteJules FesthoffRay Miller And His Orchestra + +1206060The Cellar BoysNeeds Major ChangesWingy ManoneBud FreemanGeorge WettlingFrank TeschemacherFrank MelroseCharles Melrose + +1206069Klaus SalmiKarl Klaus SalmiBorn on December 3rd, 1908 in Helsinki, Finland. Died in 1988 in Kuopio, Finland. A Finnish conductor, musician and composer. He lead a legendary Finnish band called Ramblers from 1931 to 1952.Needs VoteK. SalmiSalmiKaarlo KurkiKullervo KurkiRamblers-Orkesteri + +1206834Frank DarielClassical cellist.CorrectFranky DarielEnsemble Orchestral De Paris + +1206835Ferruccio MazzoliItalian operatic bass, born 30 April 1931 in Budrico, Italy.CorrectFerruccio MazolliFerrucio MazzoliMazzoliФ. МаццолиФерруччо Маццолли + +1207028Jimmy CoeJames R. WestAmerican jazz saxophonist and bandleader. +Played with : Jay McShann, Tiny Bradshaw (and others) and with his own bands. + +Born March 20, 1921 in Tompkinsville, Kentucky, USA. +Died February 26, 2004 in Indianapolis, Indiana, USA. +Needs Votehttps://en.wikipedia.org/wiki/Jimmy_Coehttps://campber.people.clemson.edu/coe.htmlhttps://indyencyclopedia.org/james-r-coe/CoeJ, CoeJ. CoeJames CoeJim CoeJimmie CoeJimmy ColeJay McShann And His OrchestraJimmy Coe & His Gay Cats Of RhythmJimmy Coe And His OrchestraThe Jimmy Coe TrioThe Jimmy Coe Big Band + +1208144John Langdon (2)Classical organist and keyboardist (1943-2018).Needs VoteJohn LangdonJolin LangdonEnglish Chamber OrchestraRoyal Scottish National OrchestraThe Academy Of St. Martin-in-the-FieldsDunedin Consort + +1208171Butch LacyAmerican pianist, composer and bandleader, born 16 April 1947 in Richmond, Virginia. Based in Denmark since 1982.Needs Votehttp://www.butchlacy.com/B. LacyB. LazyButchButch LaceyButch LazyLacyChet Baker QuartetBob Rockwell QuartetGary Bartz QuartetRed Rodney Quartet + +1208173Oliver HirshClassical voilistNeeds VoteOliver Rigby HirshThe Consort Of Musicke + +1208174Cathy CassContralto vocalist.Needs VoteThe Consort Of Musicke + +1208175Gregor AnthonyClassical cellist + viola da gamba playerNeeds VoteWiener AkademieThe Consort Of MusickeLes Amis De PhilippeBarockorchester L'Arpa Festante + +1208279Sylvester AholaFinnish-American trumpeter and drummer, born May 24, 1902 in Gloucester, Massachusetts, died February 13, 1995 in Massachusetts. + +Ahoola, a.k.a. "Hooley", moved to New York in 1925 to play with [a=Paul Specht]'s orchestra. From April 1926 to January 1927, Ahola led a subgroup of Specht's band, [a=The Georgians]. + +In 1927, Ahola moved to London, performing with [a=The Savoy Orpheans] and [a=Ambrose & his Orchestra] and in studio groups. + +He returned to the United States in 1931, working as studio musician. In 1940, he returned to Gloucester. + +Ahola also played with Frank E. Ward, California Ramblers, Adrian Rollini, Jack Harris, Ted Heath, Reg Batten & His New Savoy Orpheans, Ray Noble, Van Steede, Ed Kirkeby, and others. +Needs Votehttps://adp.library.ucsb.edu/names/106877https://archive.org/details/RecordResearchMagazine/67/page/n3/mode/2upSyl HooleySylvester "Hooley" AholaAmbrose & His OrchestraThe Savoy OrpheansCalifornia RamblersFred Rich And His Hotel Astor OrchestraArcadians Dance OrchestraThe Piccadilly Players (2)Ray Starita And His Ambassadors Band + +1208280Hymie FarbermanHerman Louis FarbermanHymie Farberman was born in Cherry Street on the east side of New York on June 13 of 1900 as the son of a Russian jewish family. He started taking piano lessons at the age of six, and sang as alto soloist of the Rabbi Kaplan's choir at the age of eight. After his piano lessons finished when he was 14 years old & he graduated from grammar school on June of 1914, Farberman worked as a pianist in a movie theater for about 2 weeks. He also studied with Charles Hambitzer, who possibly gave him harmony lessons & music theory, which may have furnished his reading skills. +Hymie Farberman took trumpet lessons from Joe Korff (trumpeter of the Loew's Theater Orchestra) for six months. He became a member of the Musician's Union with 15 years old, and worked his way to the fame as sideman for the "Greenwich Village Artists Colony", and in 1916, he worked at Kaiser Gardens from Coney Island and led his own 5 piece jazz band at the Academy Theater for a while. + +He was discovered & hired by alto saxophonist [a=Bennie Krueger] for his orchestra (which was working at Delmonico's Society Club), and it was with him when Farberman made his first recordings for Gennett, Okeh, Grey Gull, Emerson, Pathé Actuelle, and of course, Brunswick. Farberman stayed with Krueger's band until 1927. That was the start of a long and prosperous recording career which had him working with the aforementioned Bennie Krueger, [a=Walter Haenschen], [a=Sam Lanin], [a=Adrian Schubert], [a=Louis Katzman], [a=Harry Horlick], [a=Arthur Lange], [a=Nathan Glantz], [a=Joe Raymond], [a=Dave Kaplan (2)], [a=Joseph Samuels], [a=Ben Selvin], [a=Nat Shilkret], [a=Justin Ring], [a=Jack Stillman], [a=Harry Reser], [a=Harry Raderman] (he was on the recordings of "Jealous" & "After The Storm" for the New York Recording Laboratories group and issued on Paramount 20325 made by Raderman's band), [a=Fred Rich], the [a=Green Brothers' Novelty Band], [a=Domenico Savino] (under the name of D. Onivas), [a=Lou Gold], [a=Max Terr], [a=Zez Confrey], [a=Austin Wylie], [a=Willie Farmer], the [a=Oriole Orchestra] led by [a=Dan Russo] & [a=Ted Fiorito], [a=Mike Speciale], [a=Bert Hirsch], [a=Mike Markel], [a=Billy Wynne] & many other bandleaders of the day, in addition to doing his only recording session as leader for Gennett. He backed several vocalists such as [a=Irving Kaufman], [a=Oscar Grogan], [a=Aunt Jemima], [a=Margaret Young], [a=Seger Ellis], [a=Vaughn De Leath], [a=Lee Morse] & many others. + +Farberman did radio & movie soundtrack work with [a=Erno Rapee], [a=Nathaniel W. Finston], [a=David Mendoza (2)] & [a=Harold Levey]. + +After suffering a coronary on December of 1940, Farberman retired from music and moved to Williamsburg, Virginia, where he resided with his wife Mary until 1961, when he moved to Florida, and later on, to Hillandale before ending eventually in Broward, Florida. + +Hymie Farberman died in Broward, Florida on October 3 of 1981 at the age of 81 years old. +Needs Votehttps://ia800408.us.archive.org/16/items/RecordResearch99/99.pdf https://archive.org/details/RecordResearch99 https://www.familysearch.org/ark:/61903/1:1:VVVF-MV6 https://www.familysearch.org/ark:/61903/1:1:JT1N-DX7 https://www.familysearch.org/ark:/61903/1:1:KQ1T-RFS https://www.familysearch.org/search/record/results?givenname=Herman&givenname_exact=on&surname=Farberman&surname_exact=on&birth_place=New%20York&birth_place_exact=on&birth_year_from=1900&birth_year_to=1900&record_country=United%20States&record_subcountry=United%20States%2CNew%20York&count=100&offset=0 https://www.familysearch.org/ark:/61903/1:1:X4JW-4YR https://www.familysearch.org/ark:/61903/1:1:KXYX-YTP https://www.familysearch.org/ark:/61903/3:1:33S7-L161-259?i=619&cc=1968530 https://adp.library.ucsb.edu/index.php/talent/detail/102312/Faberman_Hymie_instrumentalist_cornet https://adp.library.ucsb.edu/index.php/talent/detail/144431/Farberman_Herman_instrumentalist_trumpet https://adp.library.ucsb.edu/index.php/talent/detail/75290/Farberman_Hymie_instrumentalist_cornetHerman "Hymie" FarbermanHerman 'Hymie' FarbermanHerman FarbermanHymie FabermanBroadway Bell-HopsCarl Fenton's OrchestraManhattan Dance MakersGreen Bros. Xylophone OrchestraFrank Farrell And His Greenwich Village Inn Orchestra + +1208281Sam LaninSamuel Charles LaninAmerican jazz drummer, singer and bandleader. +Born September 04, 1891 in Russia. +Died May 05, 1977 in Hollywood, Florida, USA. +One of the most prolific recording bandleaders of the 1920s, he directed nearly 400 sessions between 1920 and 1931, for almost every record label operating in New York at the time. His numerous ensembles included, but are not limited to: [a3913259], "Lanin's Roseland Orchestra", [a2901038], [a2057732], [a1541940], [a3060383], [a3940885], [a3444583], Okeh Melodians and [a3940873]. Many of these recordings were released under pseudonyms. Sam Lanin's younger brothers, [a7285559] and [a600226] were also successful recording bandleaders during the 1920s and beyond. +Sam Lanin became a major band broker for dozens of record companies, setting up players, recording dates, and radio broadcasts for hundreds of makeshift orchestras that recorded the popular tunes of the day.Needs Votehttps://www.google.com/books/edition/Jazz_and_Ragtime_Records_1897_1942_L_Z_i/_J9HAAAAMAAJ?hl=en&gbpv=1&dq=Lanins+Roseland+Orch&pg=PA1006&printsec=frontcoverhttps://adp.library.ucsb.edu/names/111956LaninS. C. LaninS.C. LaninWill LaninLadd's Black AcesLanin Melody OrchestraLanin's ArcadiansSam Lanin's Famous PlayersBailey's Lucky SevenLanin's Arkansaw TravelersSam Lanin & His OrchestraLanin's Southern SerenadersThe Arkansas TravellersSam Lanin And His Dance OrchestraBroadway BroadcastersSam Lanin's TroubadoursLanin's Jazz BandThe Melody SheiksLanin's OrchestraLanin's Red HeadsLanin's Roseland OrchestraThe Arcadians (4)The Lanin Orchestra + +1208435Florian KellerhalsClassical violinist.Needs VoteCamerata Bern + +1208545Howard Johnson (6)Howard William JohnsonAmerican jazz alto saxophonist and clarinetist, nicknamed "Swan" +born January 1, 1908 in Boston, Massachusetts +died December 28, 1991 in New York City, New York. + +Although never a prominent figure in jazz, during a career which lasted from the 1930s to the 1980s he worked and recorded with many of well-known jazz musicians of his time, including Benny Carter, Don Redman, Dizzy Gillespie, Bessie Smith, Teddy Hill, and Chick Webb. +He was the youngest brother of banjoist/guitarist [a=Bobby Johnson], guitarist George Johnson and pianist Walter Johnson. +[b]Note:[/b] Not to be confused with the post-bop tuba player, [a=Howard Johnson (3)]. + +Needs Votehttps://en.wikipedia.org/wiki/Howard_E._Johnsonhttps://bostonjazzscene.blogspot.com/search?q=bobby+johnsonhttps://adp.library.ucsb.edu/names/106093H. JohnsonJohnsonDizzy Gillespie And His OrchestraDizzy Gillespie Big BandColeman Hawkins And His OrchestraSpike Hughes And His Negro OrchestraTeddy Hill OrchestraColeman Hawkins All StarsJohn Lewis And His OrchestraTeddy Hill And His NBC OrchestraPanama Francis And The Savoy Sultans + +1208600Antonio PappanoBritish conductor and pianist, born 30 December 1959 in Epping, England.Needs Votehttps://en.wikipedia.org/wiki/Antonio_Pappanohttps://www.warnerclassics.com/artist/antonio-pappanoA. PappanoPappanoSir Antonio Pappanoアントニオ・パッパーノOrchestra dell'Accademia Nazionale di Santa Cecilia + +1208805Undine Röhner-StolleGerman oboist.Needs VoteUndine Röhmer-StolleUndine RöhnerRundfunk-Sinfonie-Orchester LeipzigBachorchester des Gewandhauses zu LeipzigEnsemble AvantgardeDresdner PhilharmonieVirtuosi Saxoniae + +1208908Elsa HilgerAmerican cellist, born 13 April 1904 in Trautenau, Austria-Hungary (now Trutnov, Czech Republic) and died 17 May 2005 in Shelburne, Vermont.Needs VoteThe Philadelphia OrchestraSan Francisco Symphony + +1208917Jaufré RudelPrince of Blaye (Princes de Blaia) and troubadour of the early–mid 12th century, who probably died during the Second Crusade, in or after 1147. +Noted for developing the theme of "love from afar" (amor de lonh or amour de loin) in his songs.Correcthttp://en.wikipedia.org/wiki/Jaufre_RudelJ. RudelJ. Rudel de BlaiaJauffré RudèlJaufre RudeJaufre RudelJaufre Rudel De BlayeJaufre Rudel de BlayeJaufré Rudel de BlayeJofré RudelЖоффрей Рюдель + +1209040Ian JayIan JayHard House/Techno DJ & producer from Bristol, UK. +Co-owner of digital label [l=Outbreak Digital]. +Correcthttp://www.myspace.com/djhifreak1chttp://soundcloud.com/hi-freak1cIan JHifreak1cCreedoSub CtrlIDM (2) + +1209296Koen SchoutenCello playerNeeds VoteK. SchoutenNieuw Sinfonietta AmsterdamAitos Trio + +1209478Booker PittmanAmerican jazz alto saxophonist, clarinetist, arranger and singer, born: October 3, 1909 in Fairmont Heights, Maryland, died October 13, 1969 in Sao Paulo, Brazil. +Recorded with [a=Blanche Calloway] in 1931, also in the bands of [a=Bennie Moten] and [a=Count Basie]. In 1933 toured Europe with [a=Lucky Millinder]. From mid-1930s and 15 years on Pitman worked in South America, retired from music in 1950, but made first recordings as leader in 1959, also backing his daughter [a=Eliana Pittman]. +.Needs VoteBooker PitmanBlanche Calloway And Her Joy BoysFreddy Johnson And His HarlemitesBooker Pittman's Boys + +1210098Otto Julius BierbaumGerman writer and poet (June 28, 1865 – February 1, 1910).Needs Votehttp://en.wikipedia.org/wiki/Otto_Julius_Bierbaumhttps://adp.library.ucsb.edu/names/101908BierbaumJ. BierbaumJulius BierbaumO. Bierbaum.O. J. BierbaumO.J. BierbaumOtto BierbaumО. БирбаумЮ. БирбаумЮ.Бирбаум + +1210845KammarkörenSwedish choir, founded in 1945 by [a832657]. +The choir renamed to [a1765720] in 1988, please use the latter for releases where [a832657] appears in the choir's name. + +Name variations: +Kammarkören Stockholm, Stockholm Chamber Choir, Stockholmer Kammerchor, Chœur De Chambre De Stockholm, etc. + +[b]Note:[/b] not to be confused with [a3471392] which was founded in 1981.Needs Votehttps://www.eekk.se/https://www.facebook.com/EricEricsonsKammarkor/https://www.bach-cantatas.com/Bio/Ericson-Choir.htmhttps://sv.wikipedia.org/wiki/Eric_Ericsons_Kammark%C3%B6rBarnkammarkörenChoeur De Chambre De StockholmChœur De Chambre De StockholmChœur de Chambre de StockholmCoro Da Camera Di StoccolmaDer Stockholmer KammerchorKammarkoretKammarkören, StockholmKammerchor StockholmStockholm Chamber ChoirStockholm Chamber ChorusStockholm KammerkörenStockholmer KammerchorSwedish Chamber ChoirThe Chamber ChoirThe Stockholm Chamber ChoirThe Swedish Chamber Choirストックホルム室内合唱団Eric Ericsons KammarkörKammarkörens Damer + +1211017Peter HaageGerman operatic tenor, born 23 May 1935 in Berlin, Germany and died in June 2005.CorrectHaage + +1211023Richard CassillyAmerican operatic tenor, born 14 December 1927 in Washington, D.C. and died 30 January 1998 in Boston, Massachusetts.CorrectCassillyRichard Cassilyリチャード・キャシリー + +1211247Charlie GoddardNeeds Major Changes + +1211491Jonas HaltiaSwedish trumpeter, born 1966 in Karlstad, Sweden.Needs VoteOslo Filharmoniske Orkester + +1211492Bård Winther AndersenBaard Winther AndersenNorwegian violinist, born 1964 in Oslo, Norway.Needs VoteOslo Filharmoniske Orkester + +1211627Jack FallonJack Patrick FallonCanadian jazz double bass player (occasionally violin and electric bass), born 13 October 1915 in London, Ontario, Canada, died 22 May 2006 London, England. +Fallon came to England as a member of the Canadian Air Force and settled there in 1946. He was also active in other styles, playing country music regularly and in 1968 recording on violin with [a=The Beatles].Needs Votehttp://en.wikipedia.org/wiki/Jack_FallonFallonJ FallonJ. FallonJ. P. FallonGeorge Shearing TrioLondon Jazz QuartetJack Parnell & His QuartetThe Lansdowne Jazz GroupThe Joe Harriott QuartetHumphrey Lyttelton's Paseo BandThe All Star SextetRalph Sharon SextetEsquire FiveThe In-Town Jazz GroupSteve Race Bop GroupLennie Felix And His MusiciansJazz At The Town Hall Ensemble + +1212699Reino MarkkulaReino MarkkulaBorn August 28th, 1928 in Kurkijoki, Finland. +Died November 26th, 1997 in Vantaa, Finland. + +A Finnish songwriter, musician (accordion, harmonica, guitar, piano) and entertainer. +CorrectK.MarkkulaMarkkulaMarkkula ReinoR. MarkkulaR.MarkkulaRaimo Markkula + +1212701Memo RemigiEmidio Remigi Italian singer, songwriter and radio host, said Memo (born in Erba, Milano, May 27, 1938). Needs Votehttps://www.imdb.com/name/nm2356978/?ref_=nv_sr_srsg_1https://it.wikipedia.org/wiki/Memo_RemigiE. RemigiE. Remigi MemoEmidio Memo RemigiEmidio RemigiM. RamigiM. RemiciM. RemigM. RemiggiM. RemigiM. RemingiM. RémigiM.RemigiMemo Emidio RemigiRamigiReligiRemiggiRemigiRemigi M.RenigiRimifiМ. РемиджиП. РемиджиPaolo T. + +1212712Harry RiesDutch classical trombonist & sackbutist (born in Kerkrade, the Netherlands, in 1947). After studying in The Hague he spent ten years as the principal trombonist of the Limburg Symphony Orchestra in Maastricht followed by the Gürzenich Orchestra in Cologne.Needs VoteH. RiesHendricus RiesHenricus RiesWDR Sinfonieorchester KölnOrchestre Des Champs ElyséesAnima EternaHuelgas-EnsembleCollegium VocaleThe Amsterdam Baroque OrchestraHesperion XXConcerto VocaleLa Petite BandeRicercar ConsortTafelmusik Baroque OrchestraBach Collegium JapanConcerto PalatinoLes Sacqueboutiers De ToulouseCurrendeOltremontanoGerman BrassInalto + +1212835Billy UsseltonWilliam Hugh UsseltonAmerican jazz tenor saxophonist, clarinetist and reed player, born July 2, 1926 in New Castle, Pennsylvania, died September 5, 1994 in Tempe, Arizona. +Performed and recording with swing bands: [a=Sonny Dunham] (1946-1948), [a=Ray Anthony] (1948-1953), [a=Tommy Dorsey] (1950). Led a group with trombonist [a=Bill Harris] . From 1954 to 1960 the principal tenor saxophonist with [a=Les Brown] . He recorded only one album as a leader in 1956 and in 1960 recorded with [a=Frank Capp].Needs VoteBill UsseltonWilliam UsseltonLes Brown And His Band Of RenownWoody Herman And His OrchestraRay Anthony & His OrchestraWoody Herman And The Swingin' HerdBilly Usselton Sextet + +1212848Bill GoodallJazz bass player.Needs VoteBilly GoodallW.GoodallEddie Condon And His OrchestraEddie Condon And His All-StarsBobby Hackett And His Swinging StringsClaude Hopkins Swingsters + +1213373Andor TothAndor John TothAmerican violinist, conductor and educator, born 16 June 1925 in Manhattan, New York and died 28 November 2006 in Los Angeles, California. He was the father of [a1357508].Needs Votehttps://en.wikipedia.org/wiki/Andor_TothJon TothNBC Symphony OrchestraThe Cleveland OrchestraThe Los Angeles Chamber OrchestraNew Hungarian QuartetThe Alma TrioThe Stanford String Quartet + +1213446Julian CrèmeLute and Cittern instrumentalistNeeds VoteJulian CremeThe Consort Of Musicke + +1213572Ramp (6)Mads RasmussenMads Rasmussen aka Ramp started producing in a very young age. In the early days he produced loads of hands up tunes, but after 2 years he decided to move on with hardstyle. After a couple of months he released his first vinyl "Mindkillerz - Make It Ruff" on the famous label DJU Black. After this banger the releases were thrown out by storm. Today he has over 30 releases on his bag, and is now signed to the famous label Riot! Recordings. He's known like a maniac behind the decks because of his energy in his sets. So make sure you will not miss him the day that he's spinning at your club!Needs Votehttp://www.djramp.tkDJ RampMindkillerzMads RasmussenWhite NiggazMaratoneSima (16)Mads Stannius + +1214163Kevin TigheNeeds Major ChangesLenny Lee GoldsmithTighe + +1214204Brian SewellClassical bassoonist.Needs VoteEnglish Chamber OrchestraThe Academy Of Ancient MusicHanover BandMichaelangelo Chamber OrchestraThe Whispering Wind BandThe English Concert + +1214209Miranda DaleEnglish classical violinist. +She studied at [l527847]. She was 1st Violin with the [a=Philharmonia Orchestra]. Principal Second Violin with [a=Britten Sinfonia]. +Sister of [a=Caroline Dale].Needs Votehttps://www.linkedin.com/in/miranda-dale-70763b30/https://www.brittensinfonia.com/who-we-are/people/miranda-dalehttps://www.imdb.com/name/nm12018031/Philharmonia OrchestraBritten SinfoniaThe Chamber Orchestra Of London + +1214213Martin OutramBritish classical viola playerNeeds Votehttps://en.wikipedia.org/wiki/Martin_OutramMartin OutrumOutramEnglish Chamber OrchestraBritten SinfoniaThe Maggini QuartetAmbache Chamber EnsembleThe Rogeri Trio + +1214337Jean-Louis ForestierFrench timpanist, percussionist and conductor.Correctジャン=ルイ・フォレスティエOrchestre National De L'Opéra De Paris + +1214510Charlie NederpeltCharles Lodewijk NederpeltDutch jazz pianist, born 25 August 1920 in The Hague, died 8 November 1987 in AnkeveenNeeds Votehttps://www.bbc.co.uk/music/artists/159d0d1a-9211-4483-9250-c9ff208f9d37http://www.muziekbibliotheekvandeomroep.nl/mco_page/detail/22230.htmlC. NederpeltCh. NederpeltCharly NederpeltNederpeltThe RamblersCharlie Nederpelt And His OrchestraThe Red And Brown BrothersTrio van Assenderp-Engels-Nederpelt + +1215349NG RezonancePeter BerryHard dance DJ/Producer from Glasgow now based in Basingstoke, UK.Needs Votehttp://facebook.com/peter.n.berry1http://soundcloud.com/ng_rezonancehttp://www.myspace.com/ngrezonancePeter Berry (3)Begbie (3)Avaxx + +1215596Elisabeth GlabClassical violinist.Needs VoteElizabeth GlabÉlisabeth GlabOrchestre National De FranceEnsemble Musique ObliqueLe Sinfonietta De PicardieQuatuor Castagneri + +1216638David WishAmerican classical violinist and violist.Needs VoteOssiaPygmalionEnsemble CorrespondancesThe English ConcertLa TempêteB'Rock OrchestraLes Musiciens Du ParadisRichter Ensemble + +1216869Bernard BaletPercussionist.Needs VoteB. BaletOrchestre National De France + +1217189Christian ColbergViolistNeeds VoteCincinnati Symphony OrchestraBaltimore Symphony OrchestraAtlantic String Quartet (2) + +1217191Denise TryonAmerican horn player. Associate Professor of Horn at Indiana University.Needs Votehttp://denisetryon.com/https://www.youtube.com/channel/UC-NXdXmBOZ08O4ijSX6wTzgThe Philadelphia OrchestraColumbus Symphony OrchestraDetroit Symphony OrchestraBaltimore Symphony OrchestraNew World Symphony OrchestraAmerican Horn Quartet + +1217873Jan Johansson (2)Swedish horn playerNeeds VoteJoculatores UpsaliensesBergen Filharmoniske Orkester + +1218653Herman MitchellHerman B. MitchellUS jazz blues guitarist, songwriterNeeds VoteH. MitchellHerman "Tiny" MitchellHerman 'Tiny' MitchellHerman Burell MitchellMitchellTiny MitchellBenny Carter And His OrchestraDan Burley And His Skiffle BoysMaxwell Davis And His All-StarsCharles Brown TrioBilly Taylor QuartetTeddy Edwards SextetTeddy Edwards SeptetBilly Taylor's Big Four + +1218990Hellmut SchneidewindGerman classical trumpet player and trumpet soloist +(* Feb 1, 1928, Grossleiningen, Germany, † April 4, 2011, Bergisch-Gladbach, Germany) +Hellmut Schneidewind played trumpet in +1953 - 1956 Gewandhausorchester Leipzig +1956 - 1984 Kölner Rundfunk-Sinfonie-Orchester (WDR Sinfonieorchester Köln) +He performed as trumpet soloist the demanding works of Bach (cantatas, Brandenburg concerto No. 2), +Händel, Telemann and Manfredini. +Hellmut Schneidewind was also a trumpet pedagogue, among his students were Willy Berg, Georg Hilser +and Uwe Kleindienst.Needs VoteH. SchneidewindHellmuth SchneidewindHelmut SchneidewindHelmuth SchneidewindSchneidewindGewandhausorchester LeipzigKammerorchester Des Saarländischen Rundfunks, SaarbrückenGürzenich-Orchester Kölner PhilharmonikerSüdwestdeutsches KammerorchesterWDR Rundfunkorchester KölnArchiv Produktion Instrumental EnsembleConsortium Musicum (2)Kölner Kammerorchester + +1219002Roland MetzgerGerman violist, born 1944 in Heilbronn, Germany.Needs VoteBayerisches StaatsorchesterOrchester der Bayreuther FestspieleThe Sinnhoffer Quartet + +1219271Gerald BeattyClassical treble vocalist (as a boy); tenor vocalist.Needs VoteWestminster Cathedral ChoirBoys Air ChoirThe Choir Of Clare College + +1219285Matthew Davies (3)classical treble vocalistNeeds VoteWestminster Cathedral ChoirBoys Air ChoirThe Eric Whitacre Singers + +1219715Pete DalbisAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +1219717Richard Murphy (3)American jazz trumpeter.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +1220318McGhee-Navarro BoptetNeeds Major ChangesMc Ghee-Navarro BoptetThe Mc Ghee-Navarro BoptetThe McGhee-Navarro BoptetThe McGhee-Navarro BoptetvThe McGhee/Navarro BoptetMilt JacksonKenny ClarkeCurly RussellHoward McGheeFats NavarroErnie Henry + +1220643Kalle KoppelClassical hornistNeeds VoteK. KoppelK.KoppelEstonian National Symphony Orchestra + +1220645Mall HelpClassical violistNeeds VoteEstonian National Symphony Orchestra + +1220653Meelis VindClarinet and bass clarinet player from Estonia.Needs VoteM. VindVindVind ProjectEstonian National Symphony OrchestraTallinn Chamber OrchestraVindPowerTõnu Naissoo QuartetRaivo Tafenau QuintetDuo Raivo Tafenau & Meelis VindHeliotroopNaissoo Freeform Quintet + +1220654Maano MänniEstonian classical violinist, born September 23, 1966 in Tartu.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraNYYD EnsembleVaasan Kaupunginorkesteri + +1220655Madis MetsamartEstonian classical percussionist, born March 29, 1971 in Tallinn.Needs VoteM. MetsamartMetsamartEstonian National Symphony OrchestraTallinn Chamber OrchestraNYYD EnsembleEstonian Festival Orchestra + +1220882Theobald SchremsGerman conductor, born 17 February 1893 in Mitterteich, Germany and died 15 November 1963 in Regensburg, Germany. He was Domkapellmeister at the Regensburg Cathedral from 1924 to 1963 and founded the [a=Regensburger Domspatzen].Needs Votehttp://www.akh.mitterteich.de/vips/tschrems.htmlhttp://de.wikipedia.org/wiki/Theobald_Schremshttps://adp.library.ucsb.edu/names/108972Domkapellenmeister Prof. Dr. Th. SchremsDomkapellmeister Dr. Th. SchremsDomkapellmeister Dr. Theobald SchremsDomkapellmeister Dr.Th. SchremsDomkapellmeister Prof. Dr. SchremsDomkapellmeister Prof. Dr. Th. SchremsDomkapellmeister Prof. Dr. Theobald SchremsDomkapellmeister Prof. SchremsDomkapellmeister Prof.Dr. Theobald SchremsDomkapellmeister Professor Dr. Th. SchremsDomkapellmeister Professor Dr. Theobald SchremsDomkapellmeister Th. SchremsDomkapellmeister Theobald SchremsDomkapellmeister. Prof. Dr. Th. SchremsDomkapellmester Prof. Dr. Theobald SchremsDomkapellmstr. Prof. Dr. Th. SchremsDomkapellmstr. Th. SchremsDomkpm. Prof. Dr. Theobald SchremsDomkpm. Theobald SchremsDr. Th. SchremsDr. Theobald SchremsDr. Thomas SchremsLeitung: Domkapellmeister Theobald SchremsProf. Dr SchremsProf. Dr, Theobald SchremsProf. Dr. Th. SchremsProf. Dr. Theobald SchremsProf. SchremsProf. Theobald SchremsSchremsTh. SchremsThoebald Schrems테오발트 슈렘즈Regensburger DomspatzenRegensburger Domchor + +1221123Simón Bolívar Symphony Orchestra Of VenezuelaOrquesta Sinfónica Simón BolívarOrquesta Sinfónica Simón BolívarNeeds Votehttps://es.wikipedia.org/wiki/Orquesta_Sinfónica_Simón_Bolívarhttps://sinfonicasimonbolivar.com/enhttps://www.instagram.com/sinfonicasimonbolivardevzla/?hl=esCamerata Simón BolívarOrchestre Symphonique Simón BolívarOrquesta Sinfonica Simón BolívarOrquesta Sinfónica Simón Bolívar de VenezuelaSimón Bolívar Symphony OrchestraSoloist Members Of The Simón Bolívar Symphony Orchestra Of VenezuelaThe Simón Bolívar Symphony Orchestra Of VenezuelaGustavo NúñezGustavo DudamelRicardo Ochoa (2)Andrés Eloy Medina + +1222136Nigel WoodhouseBritish freelance guitar, mandolin & tenor banjo player, and teacher. +He studied at the [l1197592] (1978-1981). Freelance musician since 1982. Member of the [b]Duo Napolitano[/b] alongside [a=Forbes Henderson].Needs Votehttps://www.nigelwoodhouse.co.uk/https://myspace.com/nigelwoodhousehttps://www.youtube.com/channel/UCIAnoA6sihZjtKKGDqEVLYghttps://www.mandoisland.com/?p=8690https://www.imdb.com/name/nm3173111/https://www2.bfi.org.uk/films-tv-people/4ce2bdbcb002cWoodhouseEnglish Chamber OrchestraPhilharmonia Orchestra + +1223704Dominique DeguinesClassical bassoonistNeeds VoteDominique DeguinessOrquesta Sinfónica de RTVE + +1223708María Teresa GómezMaria Teresa Gómez LozanoMaria Teresa Gómez Lozano is a Spanish classical viola player.Needs VoteMaría TeresaMª Teresa Gomez LozanoMª Teresa Gómez LozanoOrquesta Sinfónica de RTVE + +1223712Walter StormontCorrectWally StormontOrquesta Sinfónica De Madrid + +1223715Enrique RiojaEnrique Rioja LisSpanish trumpet player.Needs VoteEnrique Rioja LisOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +1223779Joe SpringerJoseph Springer American jazz pianist, born 22 May 1916 in New York City, USA. +Played with [a=Wingy Manone] in 1935, making his recording début with [a=Louis Prima] in 1940. Then joined [a=Buddy Rich] and recorded with [a=Gene Krupa] 1942-1943. Thereafter worked with [a=Ben Webster], [a=Charlie Barnet] and others. In the mid-1940s a regular accompanist for [a=Billie Holiday]. During the 1960s worked freelance in New York before moving to Florida.Needs Votehttps://peoplepill.com/people/joe-springerhttps://en.wikipedia.org/wiki/Joe_Springerhttps://amp.en.google-info.cn/17828064/1/joe-springer.htmlGene Krupa And His Orchestra + +1224095Wolfgang Schulz (3)Flutist, born 26 February 1946 in Linz, Austria and died 28 March 2013 in Vienna, Austria. +He was a member of the [a754974] from 1973 to 2011. +Brother of [a=Gerhard Schulz (2)], father of [a=Matthias Schulz (2)] +Needs Votehttps://en.wikipedia.org/wiki/Wolfgang_SchulzSchulzW. SchulzW. SchuzWolfgangWolfgang SchulsWolfgang SchultzWolfgang Schulzヴォルフガング・シュルツOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenWiener VolksopernorchesterEnsemble Wien-BerlinDie Instrumentisten WienWiener Ring EnsembleWiener FlötentrioSchulz-EnsembleCamerata Schulz + +1224392Hans Müller-WesternhagenGerman actor and voice actor. Born in 1918 in Cologne, Germany and died on December 18, 1963 in Düsseldorf, Germany. He's the father of [a=Marius Müller-Westernhagen].Needs Votehttps://de.wikipedia.org/wiki/Hans_M%C3%BCller-WesternhagenH. Müller-WesternhagenHans Müller + +1224393Ursula DinkgräfeGerman actress and voice actor.CorrectUrsula Dinggräfe + +1224890Colin ChambersClassical flutist. + +For the designer, please use [a1834624].Needs VoteLondon Philharmonic OrchestraThe Virtuosi Of England + +1224896Christopher Hyde-SmithClassical flautist, born 11 March 1935; died 25 February 2024. He was a professor of flute at the Royal College of Music, and the husband of [a1924999].Needs Votehttp://en.wikipedia.org/wiki/Christopher_Hyde-SmithMelos Ensemble Of LondonThe English Opera GroupRobles Trio + +1225733Buddy ArnoldArnold Buddy GrishaverBuddy Arnold (born April 30, 1926, The Bronx, New York City, New York, USA - died November 09, 2003, Los Angeles, California, USA) was an American jazz saxophonist player. + +For the songwriter and television writer who worked with [a=Milton Berle], please use [a=Buddy Arnold (2)]Needs Votehttps://en.wikipedia.org/wiki/Buddy_ArnoldArnoldStan Kenton And His OrchestraClaude Thornhill And His OrchestraJerry Wald And His OrchestraHerbie Fields And His OrchestraPhil Sunkel's Jazz BandGene Williams And His Orchestra + +1225971Gerhard WilhelmGerman [b]choirmaster[/b]. Between 1946 and 1987 leader of [a=Stuttgarter Hymnus-Chorknaben]. +Born 27th May 1918 in Stuttgart, died 10. Mai 2009 in Grafenau.Needs VoteG. WilhelmG.WilhelmWilhelmWilhelm GerhardStuttgarter Hymnus-Chorknaben + +1226277Laurent OlléClassical hornist.Needs VoteLaurent OlleOrchestre National Bordeaux AquitaineEnsemble Erwartung + +1226283Emmanuelle BlancheEmmanuelle Blanche-LormandClassical violinist.Needs VoteEmmanuelle Blanche LormandEnsemble ErwartungOrchestre Philharmonique De Radio France + +1226409Trevor BaconNeeds VoteBaconLucky Millinder And His Orchestra + +1226411Billy BowenAmerican jazz saxophonist. +Born : January 03, 1909. +Died : September 27, 1982 in New York City, New York. + +Most well known as 2nd Tenor with The Ink Spots from 1943-1951. Worked with Billie Holiday, Count Basie, Lucky Millinder, Buddy Johnson, Teddy Wilson and others. +Needs VoteB. BowenBill BowenBilly BrownBowenBillie Holiday And Her OrchestraThe Ink SpotsLucky Millinder And His OrchestraButterball FiveBilly Bowen And His Butterball FiveBilly Bowen's Inkspots + +1226412Mike HedleyMichael HedleyBig band saxophonistNeeds VoteMichael HedleyLucky Millinder And His Orchestra + +1226495Tim KrolClassical vocalist.Needs Votehttp://timkrol.comhttps://franzfound.comhttps://open.spotify.com/artist/3fb0os4PkVbkD9IQey0UP1http://www.clarionsociety.org/events/kastalsky.htmlhttps://www.naxos.com/person/Trinity_Church_Choir,_New_York/14965.htmhttps://referencerecordings.com/recording/tavener-ikon-of-eros/KrolChanticleerMinnesota OrchestraClarion Music Society + +1228325Anita EvansAnita CooperPercussionist +Second wife of [a=Gil Evans] and mother of [a=Noah Evans] and [a=Miles Evans].Needs VoteAnitaAnita E.Gil Evans And His Orchestra + +1228473Janine MicheauFrench operatic soprano. She was born 17 April 1914 in Toulouse, France and died 18 October 1976 in Paris, France.Needs Votehttps://en.wikipedia.org/wiki/Janine_MicheauJ. MicheauJanine Micheau SopraanJeanine MicheauJeanne MicheauMicheauЖанин Мишо + +1228479Monique LinvalSoprano vocalistCorrectM. LinvalM. Linval-BenoitMonique Linval-Benoit + +1228502Alun Thomas (2)ViolinistNeeds VoteBournemouth SinfoniettaHanover Band + +1228537Walter GerwigGerman lutenist, arranger, composer and choral conductor, * 26 November 1899 in Frankfurt (Oder), † 9 July 1966 in Heisterschoß.Needs Votehttps://en.wikipedia.org/wiki/Walter_GerwigW. GerwigWalter GerwikWalther GerwigGewandhausorchester LeipzigCollegium AureumCollegium TerpsichoreArchiv Produktion Instrumental EnsembleSantini Chamber OrchestraKammermusikkreis Emil SeilerOrchestra Dell'Angelicum Di Milano + +1228539Orazio VecchiItalian composer of the late Renaissance (December 6, 1550 (baptized) – February 19, 1605). He is most famous for his madrigal comedies, particularly L'Amfiparnaso.Needs Votehttps://en.wikipedia.org/wiki/Orazio_Vecchihttps://www.britannica.com/biography/Orazio-Vecchihttps://www.naxos.com/person/Orazio_Vecchi/20189.htmBaldassare VecchiH. VecchiHoratio VecchiO. VecchiO. VechiO. VekisOrazioOrazio Tiberio VecchiOrazio Vecchi (1550-1603)Orazio VechiOrazio VeechiOrzio VecchiVecchiVelchiВеккиО. ВеккиОрацио Векки + +1228673Alex NealAlexander NealUK percussionistNeeds Votehttps://twitter.com/sightreadingcenAlexander NealBBC Symphony Orchestra + +1228719Charles ZebleyClassical traverso flautist.Needs VoteLes Arts FlorissantsLe Concert Des nationsLes Talens LyriquesLes Musiciens Du LouvreEnsemble CristoforiConcerto Rococo + +1229800Albert GoltzerAmerican classical oboist. + +Born : July 25, 1918 in Brooklyn, New York. +Died : November 10, 2007 in Connecticut. + +Albert played in the "New York Philharmonic". +His brother, Harold Goltzer (1915-2004) was an bassoonist.Needs VoteAl GoltzerGoltzerNew York PhilharmonicNew York Woodwind Quintet + +1230090Michael O'Donovan (2)Michael O'Donovan is a bassoonist. +Former principal bassoon of the San Francisco Symphony.Needs VoteMichael O'DonavanMichael O'DonnovanMichael O'DonovanMichael R O'DonovanMichael R. O'DonovanMike DonovanMike O'DonnovanMike O'DonovanO'Donovan Michael R.O'Donovan, MichaelO'Donovan, Michael RSan Francisco SymphonyMozzafiatoPacific Classical WindsHollywood Studios Woodwinds Quintet + +1230956David MunderlohAmerican/Swiss classical tenor.Needs Votehttps://davidmunderloh.com/https://www.rerenaissance.ch/musikerinnen/david-munderloh/MunderlohChanticleerEnsemble Gilles BinchoisCollegium VocaleSchola Cantorum BasiliensisSchola DiscantusCappella AugustanaLe Miroir De MusiqueEnsemble Corund + +1231339Friederike ZumachGerman violinist.Needs VoteFrederike ZumachFridericke ZumachKiki ZumachGürzenich-Orchester Kölner PhilharmonikerBundesjugendorchesterNever-Doubt-Again-Quartett + +1231771Barrie Lee Hall, Jr.American trumpet player, born 30 June 1949 in Mansfield, Louisiana, USA, died 25 January 2011 in Houston, Texas, USA.Needs VoteBarrie HallBarrie Lee HallBarrie Lee Hall Jr.Barry Lee HallDuke Ellington And His OrchestraRenolds Jazz Orchestra + +1232027Daniel StepnerClassical violinist.Needs VoteDan StepnerLydian String QuartetBoston CamerataThe Boston Museum TrioBoston BaroqueThe Handel & Haydn Society Of BostonAston MagnaBoston Early Music Festival OrchestraThe New Boston Quartet + +1232030Edwin BarkerClassical double-bassist. Principal Bass, Boston Symphony Orchestra. Associate Professor of Music, Double Bass, Boston University.Needs Votehttps://www.bso.org/profiles/edwin-barkerhttps://en.wikipedia.org/w/index.php?title=Edwin_Barker&oldid=1065284675https://www.bu.edu/cfa/about/contact-directions/directory/edwin-barker/New York PhilharmonicBoston Symphony OrchestraThe New England Conservatory Ragtime EnsembleChicago Symphony OrchestraBoston Symphony Chamber Players + +1233338Paul MeisenGerman classical flautist, born 19 October 1933 in Hamburg; died 23 June 2020 in Singenbach.Needs Votehttps://de.wikipedia.org/wiki/Paul_MeisenP. MeisenPauly MeisenMünchener Bach-OrchesterPhilharmonisches Staatsorchester Hamburg + +1233341Klaus SchochowGerman classical flautist, born 7 November 1925 in Berlin, Germany.Needs VoteProf. Klaus Schochow, HamburgOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgStuttgarter Philharmoniker + +1233375Wilfred BrownEnglish tenor vocalist (Horsham, Sussex, 5 April 1921 – 5 March 1971). +Correcthttps://en.wikipedia.org/wiki/Wilfred_BrownWilford BrownEnglish Chamber OrchestraDeller Consort + +1233376Luca MarenzioBorn: 1553-10-18 (Coccaglio, Brescia, Lombardy, Italy) Born October 18, 1553 or 1554, +Died: 1599-08-22 (Rome, Italy) + +Italian composer. While a chorister at Brescia cathedral he studied with [a=Giovanni Contino]. For nine years from 1578 he served Cardinal Luigi d'Este in Rome as musician and later choirmaster, making contacts at the Cardinal's brother's court in Ferrara. He was in Florence in 1588-9 and contributed to the music for the intermedi performed at a celebrated court wedding of 1589. In 1594 he came under Cardinal Aldobrandini's wing and met the poets Tasso and Guarini; the following year the Cardinal arranged his appointment to the King of Poland, at whose court in Warsaw he worked in 1596-8. By the time of his death a year later he was back in Rome as a Papal court musician. + +Marenzio was the greatest of those Italian composers whose fame rests entirely on their madrigals; his output includes no fewer than 500 such pieces and 80 villanellas, not to mention a small quantity of sacred music. The Rome in which he spent so much of his life was a thriving centre of amateur madrigal singing, which provided a ready market for the steady flow of madrigal books that he published from 1580 onwards. From the outset he showed complete fluency and mastery in setting light pastoral verse to music that combines an intimate response to the words with deft counterpoint and pleasantly varied rhythms and textures. Later Marenzio came to favor more serious, even morbid, texts and to write in a style that was at once austere and intense, making full use of dissonant and chromatic harmonies and yet hardly departing from a chaste, even flow. The majority of his madrigals are for five voices, with many for six and rather fewer for four; in the larger textures he increasingly uses the top two as equal high voices in an almost 'concerted' manner. Marenzio's madrigals made an immediate impact in England, and enormously influenced the English madrigalists; some were issued in Yonge's Musica Transalpina of 1588.Needs Votehttps://en.wikipedia.org/wiki/Luca_Marenziohttps://www.britannica.com/biography/Luca-Marenziohttps://www.treccani.it/enciclopedia/luca-marenzio/L. MarencijusL. MarencioL. MarenzieL. MarenzioLuca De MarenzioLuca Di MarenzioLuca Marenzio-BassanoLucas MarentiusLucas MarenzioLucca MarenzioMarenziaMarenzioЛ. МаренциоЛ. МоренциоЛука Маренцио + +1233653Leo SlezakLeo Slezak (August 18, 1873 in Šumperk, Austria-Hungary – June 1, 1946 in Rottach-Egern, Germany) was a world-famous tenor, he made hundreds of disc and cylinder recordings from the early 1900s to the 1930s. +Father of the soprano [a=Margarete Slezak] and actor [a1295452].Needs Votehttp://en.wikipedia.org/wiki/Leo_Slezakhttps://adp.library.ucsb.edu/names/103847K. K. HofopernsängerK.K. Hofopernsänger Leo SlezakKammersanger Leo SlezakKammersänger Leo SlezakL. SlezakLeo SelzakLeo Slezak, K. K. HofopernsängerLeo Slezak, K. K. KammersängerLeo Slezak, K. K. Kammersänger, WienLeo Slezak, K. U. K. KammersängerLeo Slezak, KammersängerLeo Slezak, k. k. HofopernsängerLeo SlézakSkezakSlezak + +1234080Les ErskineAmerican jazz drummerNeeds VoteL. ErskineLester ErskineRoy Eldridge And His OrchestraPaul Quinichette QuintetVic Dickenson SeptetMarlowe Morris Trio + +1234289Kurt GraunkeGerman composer and conductor (20 September 1915 - 05 June 2005), founder in 1945 of the [a696267], which he led until 1989, it was then renamed to [a898459].Needs Votehttps://en.wikipedia.org/wiki/Kurt_Graunkehttps://adp.library.ucsb.edu/names/318696GraunkeK. GraunkeOrchester Kurt GraunkeSymphonie-Orchester Graunke + +1234504Siegfried LehmannGerman classical violinistNeeds VoteLehmannS. LehmannKammerorchester BerlinJohannischer Chor Berlin + +1234708Heikki JänttiHeikki JänttiFinnish harmonica player born on March 14, 1940 in Rautalampi, Finland and died on July 12, 2024 in Tuusula, Finland.Needs VoteHeikkiHeikki Jäntti Quartet + +1234737Francisco GabarroFrancisco Gabarro born Francesc Gabarró SoléSpanish-born British jazz & classical cellist. Born 21 December 1914 in Verdú, Catalonia, Spain - Died 1 December 1990 in Cavendish, Suffolk, England, UK. +He was part of the orchestra [url=https://www.discogs.com/artist/5601686-Los-Miuras-De-Sobr%C3%A9]Los 10 Miuras de Sobré[/url] and other musical groups. He was a stable member of the [b]Barcelona Hot Club Orchestra[/b]. Having escaped the Civil war in Spain, he came to England via India (where he was a member of the [b]Orquestra Casanovas[/b] in Kolkata/Calcutta) and spent many years as a cellist of the [a=London Symphony Orchestra] (1949-1954), [b]The Hirsch String Quartet[/b], and other London formations, combining solo work, chamber music and eventually becoming London's number one session cellist. Played cello on [a82730]'s song "Yesterday". He became British national in 1947.Needs Votehttps://open.spotify.com/artist/0fBYTlVijIeqS23880VHpShttps://music.apple.com/us/artist/francesco-gabarro/430439870https://ca.wikipedia.org/wiki/Francesc_Gabarr%C3%B3_Sol%C3%A9http://www.alexgomezfont.com/?q=es/node/459https://www.tapatalk.com/groups/cellofun/francisco-gabarro-the-beatles-cellist-t19575.htmlhttps://www.the-paulmccartney-project.com/artist/francisco-gabarro/https://www.imdb.com/name/nm6805512/F. GabarroFrancesco GabarroFrancis GabarrFrancis GabarraFrancis GabarroFrancis GabbarroFrancisco GarbarroLondon Symphony OrchestraThe Chitinous EnsembleThe Alan Tew OrchestraThe London Jazz Chamber GroupVic Lewis And His OrchestraDirections In Jazz UnitAriel QuartetThe Freddie Alexander Cello EnsembleLos Miuras De Sobré + +1234840Stefan GeigerClassical trombonist and conductor.Needs Votehttp://www.agentur-tiedtke.deEnsemble ModernBayerisches StaatsorchesterEnsemble AisthesisHR - BrassNDR SinfonieorchesterBundesjugendorchesterDatura-PosaunenquartettNDR Elbphilharmonie Orchester + +1235016Ferdinand MezgerFerdinand Mezger (12 August 1932 — 16 December 2014) was a German classical violinist and violist.Needs VoteBerliner PhilharmonikerPhilharmonisches Oktett Berlin + +1235044Volkmar WeicheGerman cellistCorrectV. WeicheRundfunk-Sinfonieorchester Berlin + +1235046Verena WehlingGerman classical violistNeeds VoteDeutsches Symphonie-Orchester BerlinMahler Chamber OrchestraBerlin Session Orchestra + +1235076Al PetersonNeeds Major ChangesA. PetersonPeterson + +1235088Pero (2)Pero CoetzeeHard dance DJ/producer based in London, UK.Needs Votehttps://soundcloud.com/peroharddancePero Coetzee + +1235130Reinhold BarchetReinhold Barchet (3 August 1920 - 5 June 1962) was a German violinist and concertmaster at the [a=Stuttgarter Kammerorchester] from 1946 until 1952. +He was the youger brother of [a1061186].Needs VoteBarchetR. BarchetStuttgarter KammerorchesterOrchestre Pro Arte De MunichBruckner Orchestra LinzStuttgarter PhilharmonikerSüdwestdeutsches KammerorchesterBarchet-QuartettProMusica Chamber Orchestra + +1235888Herb HallHerbert L. HallAmerican jazz clarinetist and alto saxophonist +Born 28 March 1907 in Reserve, Louisiana, died 5 March 1996 +Younger brother of [a=Edmond Hall]Needs VoteHerbert HallHerbie HallEddie Condon And His All-StarsDon Albert And His OrchestraThe All Star Jazz AssassinsThe 360 Degree Music ExperienceHerb Hall QuartetSam Price And His Texas BlusiciansOriginal Camellia Jazz BandThe Herb Hall - Doc Cheatham All-StarsHerb Hall QuintetOriginal New Yorkers + +1236074Douglas Moore (3)French Horn Player. +Needs VoteMooreДуглас МурBBC Symphony OrchestraLondon Baroque Ensemble + +1236248Marc GoldbergAmerican classical bassoonist. + +[b]Do not confuse with blues rock / Americana bassist [a468301] and pop / rock guitarist, songwriter and producer [a136917]![/b]Needs VoteMarc D. GoldbergNew York PhilharmonicThe American Symphony OrchestraOrchestra Of St. Luke'sNew York Woodwind QuintetThe Azure EnsembleNew York City Opera OrchestraThe Hartt School Wind Ensemble + +1236438Theo AltmeyerGerman classical tenor, born 16 March 1931 in Eschweiler, Germany, died 28 July 2007 in Hanover, Germany.Needs Votehttp://en.wikipedia.org/wiki/Theo_AltmeyerAltmeyerT. AltmeyerTheo AltmeierТео АльтмайерEnsemble Vocal De Lausanne + +1236553Marianne KweksilberMarjanne Kweksilber-Van GeelDutch soprano vocalist, January 18, 1944 - May 12, 2008.Needs Votehttp://www.bach-cantatas.com/Bio/Kweksilber-Marianne.htmKweksilberMarijanne KweksilberMarjan KweksilberMarjanne KweksilberLa Petite BandeMirjam en Stephen + +1236557Adinda De NijsDutch soprano, has been a member of the Nederlands Kamerkoor for 29 years.Needs VoteAdinda de WijsNederlands Kamerkoor + +1236616Christer ThorvaldssonTor Arne Christer ThorvaldssonSwedish violin and viola player, born on August 9, 1946 in Arvika. + +He studied two years with [a835413] in London and four years with [a1551361]. He played in the Swedish Radio Symphony Orchestra under [a840069] for three years. He was then employed by the Gothenburg Symphony and was first concertmaster there from 1976 until his retirement in 2010. He has been a soloist with his own orchestra and many other symphony orchestras. Thorvaldsson was elected as a member of the Royal Academy of Music in 1996.Needs Votehttps://sv.wikipedia.org/wiki/Christer_ThorvaldssonSveriges Radios SymfoniorkesterGöteborgs SymfonikerEnsemble Ur Sveriges Radios Symfoniorkester + +1236787Philippe RacineSwiss composer, flutist and saxophonist.Needs Votehttp://www.philippe-racine.ch/RacineEnglish Chamber OrchestraCollegium Novum ZürichFusion (22) + +1237203Marco LugaresiItalian bassoonist, born in 1970.CorrectCamerata Academica SalzburgOrchestra Città Aperta + +1237206Marco DionetteItalian bassoon player. Correcthttps://www.linkedin.com/pub/marco-dionette/a7/975/349Orchestra dell'Accademia Nazionale di Santa Cecilia + +1237240European Chamber SoloistsNeeds Major ChangesEuropean Chamber Choir + +1237285Rupert MellorClassical treble vocalistNeeds VoteThe Choir Of Christ Church CathedralMcCully WorkshopJack Hammer (7) + +1237690Julien HardyFrench bassoonist, born 7 April 1980.Needs VoteOrchestre Philharmonique De Radio FranceEuropean Camerata + +1237968Karl BennionCellist.Needs VoteOrchestra Of St. Luke's + +1237972Rebecca MuirViolinist.Needs VoteBecky MuirOrchestra Of St. Luke'sSmithsonian Chamber OrchestraBrewer Chamber Orchestra + +1238205Jimmy Bertrand's Washboard WizardsChicago band active in the late 1920's. [1926-29] +Correcthttp://www.redhotjazz.com/jbww.htmlJimmy Bertrand's Washboard WizzardsPunch And His BoysLouis ArmstrongJohnny DoddsJimmy BlythePunch MillerJimmy BertrandJunie Cobb + +1238206Freddie Keppard's Jazz CardinalsNeeds Major ChangesFreddie Gepard & His Jazz CardinalsFreddie KeppardFreddie Keppard And His Jazz CardinalsFreddie Keppard And His Jazz Cardinals (With Papa Charlie Jackson, Voc)Freddie Keppard Jazz CardinalsFreddy Keppard And His Jazz CardinalsFreddy Keppard Jazz CardinalsFreddy Keppard's Jazz CardinalsJohnny DoddsFreddie KeppardPapa Charlie JacksonJasper TaylorEddie VincentArthur Campbell + +1238207Eddie VincentTrombonistNeeds VoteEddie VinsonOllie Powers' Harmony SyncopatorsFreddie Keppard's Jazz Cardinals + +1238208Arthur CampbellEarly jazz / Dixieland pianistNeeds VoteFreddie Keppard's Jazz Cardinals + +1238209Blythe's Washboard BandNeeds Major ChangesJimmy Blythe's Washboard BandJohnny DoddsJimmy BlytheW.E. Burton + +1238210Jimmy Blythe And His RagamuffinsNeeds Major ChangesBlythe's Washboard And RagamuffinsJimmie Blythe And His RagamuffinsJimmie Blythe And His RagmuffinsJimmy Blyte And His RagmuffinsJimmy Blythe & His RagamuffinsJimmy Blythe & His RaggamuffinsJimmy Blythe & His RagmuffinsJimmy Blythe And His RagmuffinsJimmy Blythe's RagamuffinsJimmy Blythe's Washboard RagamuffinsJohnny DoddsFreddie KeppardJimmy BlytheJasper Taylor + +1238211Henry CliffordNeeds VoteCliffordH. CliffordH. GiffordDixieland Jug Blowers + +1238214Junie Cobb's Hometown BandNeeds Major ChangesJunie Cobb & His Hometown BandJunie Cobb And His Hometown BandJunie Cobb's Home Town BandJohnny DoddsTiny ParhamEustern WoodforkJunie Cobb + +1238215Lockwood LewisDecember 22, 1890, Bowling Green, KY-October 24 1953, Louisville, KY) +Saxophonist, singer, bandleader associated with Cab Calloway’s rising fame at the moment the latter took over the baton of the Missourians after a famous (and supposedly) battle of bands at the Savoy in 1930.Needs VoteLewisDixieland Jug BlowersThe Missourians + +1238216Earl McDonaldEarl McDonaldBirth year: 1884 +Death year: 1949 +McDonald, born in Louisville, KY, was a musician and founder of the Original Louisville Jug Band in 1902. The group was named the Ballard Chefs from 1929 to 1932. Clifford Hayes was a member of the group before forming his own jug band in 1919. After McDonald's death, his band was continued by Henry Miles. +Needs Votehttps://adp.library.ucsb.edu/names/112702Ballard & McdonaldBallard McDonaldE. McDonaldEarl Macdonald And His Original Louisville Jug BandEarl Mc DonaldMac DonaldMacDonaldMc DonaldMcDonaldDixieland Jug BlowersThe Old Southern Jug BandEarl McDonald's Original Louisville Jug Band + +1238217Curtis HayesJazz/blues banjoist.Needs VoteDixieland Jug BlowersThe Old Southern Jug Band + +1238219Clifford HayesClifford HayesAfrican-American violinist and jug band leader, born 1895, died 1957. +Born in Glasgow, Kentucky, Hayes joined [a=Earl McDonald]'s jug band in Louisville, the city where jug bands originated. After a disagreement in 1919, Hayes formed his own band which recorded with [a=Sara Martin] in 1924, as Clifford's Louisville Jug Band in 1925, as [a=Clifford Hayes' Louisville Stompers] in 1927-1929, and a last session in 1929 as [a=Kentucky Jazz Babies]. +Needs Votehttp://www.uky.edu/Libraries/nkaa/record.php?note_id=946https://adp.library.ucsb.edu/names/110642C. HayesChifford HayesCliff HayesCliffordHayesDixieland Jug BlowersThe Old Southern Jug BandClifford 's Louisville Jug BandClifford Hayes' Louisville StompersKentucky Jazz Babies + +1238220Jimmy BertrandJames Bertrand.American jazz and blues drummer, percussionist, xylophonist, washboard, & slide whistle player. +Born 24 February 1900 in Biloxi, Mississippi. +Died August, 1960 in Chicago, Illinois + +Bertrand recorded with [a=Louis Armstrong], [a=Johnny Dodds], [a=Tampa Red], [a=Ma Rainey], [a=Freddie Keppard], [a=Erskine Tate], [a=Big Bill Broonzy], [a=Doc Cook], [a=Jimmy Blythe], [a=Lee Collins (2)] and [a=Blind Blake] amongst many others. He was the leader of [a=Jimmy Bertrand's Washboard Wizards] +He was the brother-in-law of [a=Jelly Roll Morton] and brother of the showgirl Mabel Bertrand.Needs Votehttps://www.europeana.eu/portal/en/explore/people/18771-jimmy-bertrand.htmlhttps://adp.library.ucsb.edu/names/110398(?) Jimmy BertrandBertrandJ. BertrandJames BertrandJim BertrandJimmy BertandParham-Pickett Apollo SyncopatorsErskine Tate's Vendome OrchestraJimmy Bertrand's Washboard WizardsDixie-Land ThumpersKansas City Tin Roof StompersE. C. Cobb And His Corn-EatersEddie South And His International OrchestraState Street Stompers + +1238221Freddy SmithUS jug band banjoist and guitarist.CorrectFred SmithFreddie SmithSmithDixieland Jug BlowersEarl McDonald's Original Louisville Jug Band + +1238737Hansjörg SchellenbergerHansjörg Schellenberger (born 13 February 1948 in Munich, Germany) is a German oboist and conductor. + +Co-founder of [l1183757]. Husband of [a=Margit Anna Süss].Needs Votehttps://www.hansjoerg-schellenberger.com/Hans-Jörg SchellenbergerHansjorg SchellenbergerSchellenbergerハンスイェルク・シェレンベルガーBerliner PhilharmonikerMünchener Bach-OrchesterBachcollegium StuttgartEnsemble Wien-Berlin + +1238738Günter HögnerAustrian french horn player and music professor, born 16 July 1943 in Vienna, Austria; died 16 April 2018 ibid.Needs Votehttps://de.wikipedia.org/wiki/Günter_HögnerG, HögnerG. HögnerGunther HognerGunther HögnerGünther HögnerHögnerOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Wien-BerlinWiener OktettWiener Mozart-BläserWiener Ring EnsembleNew Vienna OctetDas Philharmonia Hornquartett Wien + +1238775Ruth NegriRuth Negri ArmatoAmerican harpist born March 8, 1930 in San Diego, California, died August 14, 2024 in New York.Needs VoteRuth Negri AmatoRuth Negri ArmatoNew York Philharmonic + +1238955Gordon MacKayBritish classical violinist. +He was a member of [a=The National Youth Orchestra Of Scotland]. After early training as a chorister and organist, he gained a music degree from London University before moving to Cologne to study with [a=Saschko Gawriloff]. He returned to London in order to pursue a freelance career. Member of the [b]London Chamber Ensemble[/b].Needs Votehttps://open.spotify.com/artist/3ls60W4yPyz7aCV5syqjyzhttps://music.apple.com/us/artist/gordon-mackay/303074909https://www.naxos.com/person/Gordon_MacKay/107234.htmGordan MackayGordon McKayLondon Symphony OrchestraThe Kreutzer QuartetApartment HouseThe National Youth Orchestra Of Scotland + +1238961Nina DiehlClassical cellist.CorrectNina Diehl, KölnConcerto KölnCafé Zimmermann + +1238962Trudy Van Der WulpClassical Basson and Recorder instrumentalistNeeds Votehttp://www.trudyvanderwulp.nl/muziek/indexmuz.htmlTrudi van de WulpTrudy VanderwulpCollegium VocaleConcentus Musicus WienThe Amsterdam Baroque OrchestraIl FondamentoLa Grande Ecurié Et La Chambre Du RoyConcerto KölnWiener AkademieNetherlands Bach CollegiumNova StravaganzaDarmstädter Hofkapelle + +1238964Gerhart DarmstadtClassical cellist.Needs Votehttps://de.wikipedia.org/wiki/Gerhart_DarmstadtDarmstadtProf. Gerhart DarmstadtConcerto KölnInstrumentalensemble "Il Basso" + +1238966Jörg BuschhausClassical violinist.Needs VoteConcerto KölnMarcolini Quartett + +1238967David MingsAmerican classical bassoon & dulcian instrumentalist (13. September 1951 in Belleville, Illinois; † 11. Februar 2014 at Amsterdam) Needs VoteLes Arts FlorissantsThe Amsterdam Baroque OrchestraConcerto KölnLa Fontegara AmsterdamLa Dada Amsterdam + +1238968Gustavo ZarbaClassical violinist (born 1956 in Argentina).Needs VoteGustavo ZargaLes Arts FlorissantsMusica Antiqua KölnConcerto KölnLe Concert Des nationsLa StagioneMusica AmphionOrchestra Of The 18th CenturyCapriccio Stravagante + +1238969Klaus TürkeClassical trombonist.CorrectConcerto Köln + +1238970Jean-Michel ForestClassical double bassist.Needs VoteJean Michel ForestLes Arts FlorissantsMusica Antiqua KölnConcerto KölnFreiburger BarockorchesterLes Musiciens Du LouvreCantus CöllnCappella ColoniensisOrchester Der Ludwigsburger SchlossfestspieleBarockorchester caterva musica + +1238973Bettina Schmidt Von AltenstadtClassical violinist.CorrectBettina Schmitt von AltenstadtConcerto Köln + +1238976Martin WinkelClassical trombonist.CorrectConcerto Köln + +1238977Sylvie KrausGerman classical violinist.Needs Votehttps://www.bundesakademie-trossingen.de/unser-haus/gastdozentinnen/k/sylvie-kraus.htmlConcerto KölnCantus Cöllnkontraste köln + +1238978Michael CarstorffClassical flautist.CorrectConcerto Köln + +1238979Hedwig Van Der LindeClassical violinist.Needs VoteHedwig Von Der LindeHedwig van der LindeHedwig von der LindeConcerto KölnSchola Cantorum BasiliensisLinde-Consort + +1238981Heinz SchwammClassical violinist.Needs VoteConcerto KölnEnsemble Für Frühe Musik Augsburg + +1238983Christa KittelClassical violinist.Needs VoteConcerto KölnFreiburger BarockorchesterFreiburger BarockConsortI Sonatori + +1238986Maria LindalClassical violinist.Needs VoteConcerto KölnCantus CöllnTafelmusik Baroque OrchestraEnsemble SagaRebaroque + +1238988Antje SabinskiClassical viola player.Needs VoteConcerto KölnCantus CöllnNova StravaganzaNeue Düsseldorfer HofmusikL'arte Del MondoCarissimi-Consort MünchenAlte Musik Köln + +1238990Claudia SchäferClassical trombonist.CorrectConcerto Köln + +1238993Anke VogelsängerClassical violinist.Needs VoteConcerto KölnDuisburger PhilharmonikerCamerata KölnNeue Düsseldorfer Hofmusik + +1238994Werner MatzkeProf. Werner MatzkeGerman classical cellist, born 1962.Needs Votehttps://www.mh-trossingen.de/hochschule/personen/dozenten-seite/dozent/matzke.htmlAkademie Für Alte Musik BerlinConcerto KölnCantus CöllnSchuppanzigh Quartettkontraste köln + +1238995Thomas Müller (4)Hornist. +Born in 1956 in Basel (Switzerland), studied at the Basel Orchestral School and later at the Musikhochschule Essen, Germany. Needs Votehttps://zko.ch/artists/thomas-mueller/Thomas MullerThomas MüllerConcerto KölnLe Concert Des nationsFreiburger BarockorchesterZürcher KammerorchesterBach Collegium JapanEpoca BaroccaArcadia EnsembleLa Cetra Barockorchester BaselDie Schweizer Bläser-SolistenGli Angeli GenèveLes Passions De L'Ame (2)DschungelorchesterOrchester Der J.S. Bach StiftungKirchheimer BachConsortLa Tempesta BaselQuatuor De Cors Punto + +1239045Lorenz DuftschmidAustrian viol player and conductor, born 1964 in Linz. +Director of the ensemble Armonico Tributo Austria. +Specialized in Renaissance, Baroque and early Classical music. +Needs Votehttp://www.armonicotributo.com/LorenzDuftschmid/LorenzDuftschmid.htmlDuftschmidL. DuftschmidLorentz DuftschmidLorenz DuftschmidtLorenz DunfschmidtLa Capella Reial De CatalunyaLe Concert Des nationsHespèrion XXILa StagioneCantus CöllnHespèrion XXArmonico Tributo + +1239046Lorenzo AlpertArgentine classical bassoonist & bombarde instrumentalist, born in 1952 in Buenos Aires, Argentina.Needs VoteConcerto VocaleConcerto KölnLe Concert Des nationsCantus CöllnOrnamente 99Hespèrion XXEnsemble 1700 + +1239048Katharina ArfkenProf. Katharina ArfkenClassical oboist. +She teaches baroque and classical oboe at the music academy Basel, Schola Cantorum Basiliensis. +Needs VoteKaterina ArfkenThe English Baroque SoloistsAkademie Für Alte Musik BerlinThe Amsterdam Baroque OrchestraHesperion XXFreiburger BarockorchesterCantus CöllnBrandenburg ConsortSchola Cantorum BasiliensisLa Cetra Barockorchester BaselCapricornus Consort BaselOrchester Der J.S. Bach StiftungThe English ConcertEnsemble Ludwig Senfl + +1239190Leon BarzinLéon Eugene BarzinLéon Barzin (27 November 1900, Brussels, Belgium — 29 April 1999, Naples, Florida) was an American conductor and the [a=New York City Ballet]'s founding musical director. Between 1925 and 1929, he served as a violist in the [a=New York Philharmonic] orchestra.Needs Votehttps://en.wikipedia.org/wiki/Léon_BarzinBarzinLeon BarzanLeon Barzin, Jr.Léon BarzinLéon BazinNew York PhilharmonicNew York City Ballet + +1239199Jonathan NazetFrench violist.Needs VoteJ. NazeJohnattan NazéJonathan NazeJonathan NazéOrchestre National De L'Opéra De ParisLes Archets De Paris + +1239500Sophie Marin-DegorClassical soprano. Born in 1966.Needs VoteMarin DegorMarin-DegorLes Arts Florissants + +1240013Wim RoeradeClassical hornist.CorrectW. RoeradeLa Petite Bande + +1240014Richard ListerClassical trombonist & sackbutistNeeds VoteListerRichard A. ListerHesperion XXLa Petite BandeLes Sacqueboutiers De ToulouseMusica FiataVinko Globokar & Brass GroupKees Boeke Consort + +1240015Florence MalgoireFlorence MalgoireFrench classical violinist, pedagogue and conductor. She founded the ensemble "Les Dominos" in 2003. +Daughter of oboist Jean-Michel Malgoire. +Born: March 9, 1960 in Dugny (Seine-Saint-Denis) +Died: August 11, 2023 in AvignonNeeds Votehttp://en.wikipedia.org/wiki/Florence_Malgoirehttps://www.imdb.com/name/nm0539469/MalgoireLes Arts FlorissantsLa Chapelle RoyaleIl Seminario MusicaleLa Petite BandeLes Talens LyriquesLes Musiciens Du LouvreRicercar ConsortCapriccio StravaganteEnsemble AmaliaLes Dominos + +1240016Robert ClaireClassical flautist.CorrectBob ClairBob ClaireLes Arts FlorissantsLa Chapelle RoyaleLa Petite Bande + +1240017Mapje KeereweerHarpist.Needs VoteLa Petite BandeCollegium Musicum Judaicum + +1240019Donna AgrellClassical bassoonist. Professor at Schola Cantorum Basiliensis. +Needs VoteD. AgrellDona AgrellDonna Hyry AgrellFreiburger BarockorchesterLa Petite BandeOctophorosKammerorchester BaselBach Collegium JapanOrchestra Of The 18th CenturyLinde-Consort + +1240020Marinette TroostClassical violinist.Needs VoteCollegium VocaleLa Chapelle RoyaleLa Petite BandeMusica AmphionOrchestra Of The 18th CenturyAlma Musica AmsterdamFiori Musicali + +1240022Dirk VerelstClassical violinist.Needs Votehttps://love2arts.com/EN/events/festival/p.php?n=DirkVerelst&x=sf21Derk VerelstDirk VerhelstLa Petite BandeAlma Musica AmsterdamMusica Polyphonica + +1240023Pierre De BoeckClassical percussionist.CorrectPierre DeboeckLa Petite Bande + +1240125Mario FinottiClassical cellistNeeds VoteOrchestra Di Padova E Del Veneto + +1240195Vincenzo MariozziItalian clarinet player. Needs Votehttps://it-it.facebook.com/pages/Vincenzo-Mariozzi/406988718288MariottiV. MariozziOrchestra dell'Accademia Nazionale di Santa Cecilia + +1240200Mary Cotton SaviniNeeds VoteMary CottonOrchestra dell'Accademia Nazionale di Santa Cecilia + +1240202Luigi MazzocchittiItalian clarinet player.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +1240346Paul van SchootenPaul van SchootenNeeds VoteP van SchootenP. V. SchooterP. van SchootenP. van ShooterP.V. SchhoterP.V. SchootenP.V. SchooterP.van SchootenPieter SchootenSchootenVan SchootenLord Of The StringsDouble Dutch (3)PVSStimulatorEquipe RevezFurious (5)Jupiter (11) + +1240405Eleanor MathiesonClassical violinist.Needs VoteEleanor MathesonEleanor MattiesonBBC Symphony OrchestraWired StringsThe Academy Of St. Martin-in-the-FieldsThe Orchestra Of St. John'sApollo Chamber Orchestra + +1240569Alain LegovicNeeds Votehttp://www.historique.alain-chamfort.net/index.php/biographie/1949-1966A LegovicA. LagovicA. Le GovicA. LegovicA. LogovicA. legovicAlain Le GovicGovicLe GovicLeGovicLegovecLegovicle GovicAlain ChamfortAraxisEnsemble (4)Sol En SiLe Système CrapoutchikLes MuratorsCollectif Paris-Africa Pour L'UnicefLes Mods + +1240679Randy CateRandolph Armistead CateAmerican songwriterNeeds Votehttp://www.columbian.com/news/2011/apr/29/a-song-in-his-heart/CateR. CateR. CatesRandy Cates + +1240827Danny HiceDaniel D. GoldAmerican songwriter, producer, aircraft pilot, studio owner and voice actor.Correcthttps://secondhandsongs.com/artist/40359http://www.myspace.com/DanGoldSongshttp://www.myspace.com/DanGoldVoiceovershttps://repertoire.bmi.com/Search/Search?selectMainSearch=Writer%2FComposer&Main_Search=Writer%2FComposer&View_Count=100&Main_Search_Text=Gold+Daniel+D&Sub_Search=Please+Select&View_Count=0&Search_Type=allhttps://www.ascap.com/repertory#/ace/writer/463805055/GOLD%20DANIEL%20DD. HiceDaniel HiceDannyHiceHice Daniel DDanny Samson + +1240829Ruby HiceRuby Faye GoldAmerican songwriterCorrectHiceR. Hice + +1241244Vicente SpiteriVicente Spiteri GalianoSpanish conductor and composer (Alicante, 1917 - 2003). +Has led Orquesta Sinfónica De Madrid (from 1958 to 1977), Banda Sinfónica Municipal de Alicante, and also other orchestras like The London Symphony Orchestra, Orquestra Sinfónica do Porto, etc. Has also been teacher at Real Conservatorio Superior de Música de MadridNeeds VoteOrquesta Sinfónica De MadridBanda Sinfónica Municipal de Alicante + +1242028Ben WisemanAudio Engineer at [l=The Audio Archiving Company] from 2002 to 2016. Now at [l=Broadlake Studios] Limited in St. Albans. +For the American songwriter sometimes credited as Ben Wiseman please check [a661418].Correcthttp://www.audioarchiving.co.uk/pages/people.htmlhttps://www.allmusic.com/artist/ben-wiseman-mn0002233821Ben Wiseman (Broadlake Studios Ltd)Ben Wiseman (Broadlake Studios)Ben Wiseman (Broadlaske Studios Ltd.)Ben Wiseman at The Audio Archiving Company LimitedWiseman + +1242130Stefano NovelliItalian clarinet player. CorrectOrchestra dell'Accademia Nazionale di Santa Cecilia + +1242561Clara NovakovaCzech flutist. + +Daughter of [a=Jan Novák (2)], sister of [a=Dora Novak]. Needs VoteC. NovakovaClara NovákováNovakovaEnsemble Orchestral De ParisPlural EnsemblePrague ModernTrio NobisTrio Salomé + +1242690Randall WolfgangOboe player.Needs VoteRandy WolfgangOrpheus Chamber OrchestraNew York City Ballet OrchestraPaul Winter & The Earth BandAspen Music Festival Contemporary Ensemble + +1243030Claudia SackGerman classical violinist.Needs VoteEnsemble ModernEnsemble AisthesisDeutsche Kammerphilharmonie BremenEnsemble Modern Orchestra + +1243032Sabine PfeifferGerman string instrumentalistNeeds VoteEnsemble ModernBundesjugendorchesterNomos Quartett + +1243034Martin DehningGerman violin player and music professor.Needs VoteEnsemble ModernBundesjugendorchesterNomos Quartett + +1243037Annette StoodtGerman violist.CorrectEnsemble ModernBremer Philharmonisches StaatsorchesterBundesjugendorchester + +1243038Friederike KochGerman string instrumentalistNeeds VoteEnsemble ModernBundesjugendorchesterNomos Quartett + +1243039Joseph SandersBritish oboist and flugelhorn player.Needs Votehttps://rambert.org.uk/performance-database/people/joseph-sanders/Ensemble ModernLondon SinfoniettaEnsemble Modern OrchestraRobert Farnon And His Orchestra + +1243040Henri FoehrHenri Foehr is a classical cellist.Needs VoteEnsemble Modern + +1243510Jean-Louis LeRouxAmerican oboist and conductor, born in 1927.Needs VoteJean-Louis Le RouxSan Francisco Symphony + +1243675Gert SørensenGert Skød SørensenDanish percussionist and producer, born 1960 in Holstebro, owner of [l436951].Needs VoteGert S. SørensenGert SoerensenDR SymfoniOrkestret + +1244006Eleanor FroelichClassical bassoonistCorrectEleonor FrölichConcentus Musicus Wien + +1244806Joseph StepanskyViolinist.Needs VoteJo StepanskyJoe StepanskyJoseph StedanskyJoseph StepanskiStepansky JosephChicago Symphony OrchestraThe Fine Arts QuartetThe Westwood String QuartetWestwood String Trio + +1244926Elizabeth RandellBritish horn player, and horn tutor. Born in Hertfordshire, England, UK. +She studied at the [l290263]. Early experiences were jobs with the [a=Ensemble Modern] and the [a=London Classical Players]. Member of the [a=Chamber Orchestra Of Europe] since 1993 and of the [a=City Of London Sinfonia]. Senior Horn Tutor at [l=Birmingham Conservatoire]. + +Possibly the same as [a=Elizabeth Randall (2)].Needs Votehttps://www.facebook.com/beth.randell.18https://twitter.com/bethrandellhttps://www.instagram.com/beth.randell/https://www.linkedin.com/in/beth-randell-7969a671/https://www.coeurope.org/member/beth-randell/Beth RandellEnsemble ModernLondon Symphony OrchestraBBC Symphony OrchestraCity Of London SinfoniaNew London ConsortThe BT Scottish EnsembleThe Academy Of Ancient MusicThe Chamber Orchestra Of EuropeOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe King's ConsortScottish EnsembleThe English Concert + +1244927Kevin Smith (8)British trombonist, euphonium player and brass conductor.Needs Votehttp://verwoodconcertbrass.co.uk/index.php/bands/principal-band/principal-band-conductor/BBC Symphony OrchestraBournemouth Symphony Orchestra + +1244928Francis MarkusClassical hornistNeeds VoteBBC Symphony OrchestraApollo Chamber Orchestra + +1244929Henry HardyClassical trombonistCorrectBBC Symphony Orchestra + +1244930Gareth BimsonBritish trumpet playerCorrecthttps://twitter.com/garethbimsonBBC Symphony Orchestra + +1244931Christopher MowatBritish trombonist and music arranger. He has been principal trombone with the BBC Symphony Orchestra, the Royal Philharmonic and the Halle, where he performed as concerto soloist.Needs Votehttps://www.hebu-music.com/en/musician/christopher-mowat.58913/C MowatChristoper MowattChristopher MowattChristopher MowetMowatBBC Symphony OrchestraLondon BrassRoyal Philharmonic OrchestraThe London Symphony Brass Ensemble + +1244932Alison KnightTrombonistCorrectBBC Symphony Orchestra + +1245065John MinskerJohn H. MinskerAmerican english horn player and oboist, born in 23 January 1912 and died 5 August 2007 in Wynnewood, Pennsylvania.CorrectThe Philadelphia Orchestra + +1245113Ensio KostaSten Carl DucanderBorn on March 2, 1923 in Helsinki, Finland. A Finnish composer, arranger, conductor, lyricist and radio presenter. + +Died on October 4, 1986 in Helsinki, Finland. +Needs VoteE. KostaE.KostaKostaViima (2)Sten DucanderEnsio Kostan Orkesteri + +1245573Henning VossGerman Alto & Countertenor vocalist born 1967Needs VoteHenning VoßVossCollegium VocaleCantus CöllnWeser-RenaissanceHimlische Cantorey + +1245585William DongoisWilliam Dongois is a French wind instrument player with a focus on the cornett and born in Langres (Champagne-Ardenne). +Since 2002, he has been leading the cornett class of the "Centre de Musique Ancienne" at the Geneva University of Music, and he also gives masterclasses at several European music academies.Needs Votehttps://en.wikipedia.org/wiki/William_DongoisWilliam DongoinWilliam DougoisУильям ДонгуаThe Amsterdam Baroque OrchestraConcerto VocaleLa Capella Reial De CatalunyaLe Concert D'AstréeEnsemble ElymaL'ArpeggiataCantus CöllnWeser-RenaissanceMusica FioritaConcerto PalatinoEnsemble Vocal SagittariusMusica FiataLe Poème HarmoniqueLes Basses RéuniesCapella De La TorreEnsemble Suonare E CantareLe Concert BriséEnsemble VentosumLes Traversées BaroquesEnsemble BadinerieSerikon + +1245697Heinz HerrmannGerman double bassist.CorrectStaatskapelle Dresden + +1245776Kate HillClassical flute player and teacher.Needs VoteEnglish Chamber Orchestra + +1245778Duke DobingClassical flute player.Needs VoteBBC Symphony OrchestraCity Of London Sinfonia + +1245779Andrew WatkinsonBritish classical violinistNeeds VoteAndrew M. WatkinsonWatkinsonCity Of London SinfoniaEndellion String QuartetThe Richard Hickox Orchestra + +1245781Nicholas McGeganJames Nicholas McGeganClassical flautist, keyboardist and conductor.Needs Votehttp://www.nicholasmcgegan.com/https://en.wikipedia.org/wiki/Nicholas_McGeganMcGeganNicholas McGagenNicholas McGegenNicholas MsGeganNicolas MacGeganNicolas McGeganThe English Baroque SoloistsThe Academy Of Ancient MusicPhilharmonia Baroque OrchestraArcadian AcademyThe Music PartyCANTATA COLLECTIVE + +1245988Digital MafiaNeeds VoteMafiaDavid Jackson (18)Steffan David + +1246089Frederick ZimmermannDouble bass player (May 18, 1906, New York City, NY - August 3, 1967, Ohlstadt, Germany). Member of the New York Philharmonic Orchestra in the 1960s. +Needs Votehttps://academicbassportal.com/06e/01pr/01prh/01prh9/zimme_f/Fred ZimmermanFred ZimmermannFrederick ZimmermanNew York Philharmonic + +1246251Will AtkinsonWilliam Joseph AtkinsonDJ/Record Producer hailing from Glasgow, UK +Needs Votehttps://www.facebook.com/djwillatkinsonhttps://soundcloud.com/willatkinsonhttps://myspace.com/willatkinson1https://twitter.com/willatkinsonyeshttps://www.instagram.com/willatkinson90/AtkinsonAtkinson, William JosephW AtkinsonW. AtkinsonWil AtkinsonWilliam AtkinsonWilliam Joseph AtkinsonDarkboyJosep (3) + +1246393Jack OrdeanJazz alto saxophonist. b 1916 in Sydney, Ohio. He commenced playing alto saxophone in 1929CorrectOrdeanHarry James And His OrchestraStan Kenton And His Orchestra + +1246395Al CostiAmerican guitarist in the forties.Needs VoteCostiStan Kenton And His Orchestra + +1246396Hollis BridwellNeeds VoteStan Kenton And His Orchestra + +1246398Marvin GeorgeUS-American drummer.Needs VoteMarvin "Pee Wee" GeorgeMarvin "Pee Wee"GeorgeStan Kenton And His Orchestra + +1246399Earl CollierAmerican trumpet player, b 1922 in Newport, KentuckyCorrectCollierStan Kenton And His OrchestraBob Crosby And His OrchestraBenny Goodman And His Orchestra + +1246472Kevin AbbottClassical hornist and trumpet playerCorrectKevin AbbotThe Chamber Orchestra Of Europe + +1246567Håkan RudnerSwedish classical violinist, born on July 6, 1964 in Örebro. + +He started playing the violin in 1972. + +He is educated at The Conservatory of Music in Copenhagen, for Professor Milan Vitek. Concluded with soloist class and debut concert in 1986. + +He started working in the Malmö Symphony Orchestra in 1990. He is also playing with the Chamber Orchestra of Europe since 1986.Needs Votehttps://malmolive.se/biografi/hakan-rudnerhttps://www.coeurope.org/member/hakan-rudner/Hakan RudnerMalmö Symphony OrchestraThe Chamber Orchestra Of Europe + +1246661Rainer KüchlAustrian violinist, former concertmaster at the [a=Wiener Philharmoniker] and music professor at the Universität für Musik und darstellende Kunst Wien. He was born 25 August 1950 in Waidhofen an der Ybbs, Austria.Needs VoteRainer KüchelReiner Küchelライナー・キュッヒルOrchester Der Wiener StaatsoperWiener PhilharmonikerAustro-Hungarian Haydn OrchestraHofmusikkapelle WienMusikvereinsquartettKüchl-QuartettWiener Ring Ensemble + +1246786Todd FournierNeeds Major Changes + +1246963Anshel BrusilowAnshel BrusilovskyAmerican violinist and conductor, born 14 August 1928 in Philadelphia, Pennsylvania; died 15 January 2018.Needs Votehttp://en.wikipedia.org/wiki/Anshel_Brusilowhttp://www.anshelbrusilow.com/Anchel BrusilovAnchel BrusilowAnschel BrusilowAnsel BrusilowAnshel BrusilovBrusilowThe Philadelphia OrchestraThe Cleveland Orchestra + +1247254Werner TrippAustrian flute player, born 22 April 1930 in Graz, Austria and died 15 December 2003 in Vienna, Austria.Needs VoteTrippVerner TrippW. TrippOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Eduard MelkusGrazer Philharmonisches Orchester + +1247309Charlie Johnson & His OrchestraNeeds Major ChangesCharlie Johnson And His OrchestraBenny CarterBenny WatersJimmy HarrisonBobby JohnsonCharlie IrvisEdgar SampsonSidney De ParisBilly Taylor Sr.Leonard DavisGus AikenGeorge StaffordCharlie JohnsonGeorge StevensonMonette MooreBen WhittedCliff Brazzington + +1247496Eddie Byrd (2)Jazz drummer.CorrectEddie ByrdEddie Boyd (5)Louis Jordan And His Tympany Five + +1247623SFP (2)Needs Major Changes + +1247899Géraldine DutroncyClassical pianist.Needs Votehttps://fr.wikipedia.org/wiki/G%C3%A9raldine_DutroncyG. DutroncyEnsemble IntercontemporainEnsemble ZelligTrio Pantoum + +1247902Marine PerezClassical flautist.Needs VoteMarine PérezEnsemble IntercontemporainEnsemble Court-CircuitEnsemble Carpe Diem + +1247904Ashot SarkissjanAshot Sarkissjan is a classical violinist with a particular interest in contemporary music. He was born in 1977 in Yerevan, Armenia, and studied in Armenia and later Germany, where he co-founded the Ensemble Neue Musik Lübeck. Since 2002 he has been a member of Ensemble Intercontemporain (EIC) in Paris, and he joined the Arditti Quartet in June 2005.Correcthttp://www.ownvoice.com/ardittiquartet/bioggrae.htmhttp://www.moderecords.com/profiles/ashotsarkissjan.htmlAshot SargssianAshot SarkisjanEnsemble IntercontemporainArditti Quartet + +1247906Samuel FavreClassical percussionist, born in 1979 in Lyon, France.Needs VoteEnsemble Intercontemporain + +1247910Kazushi Ono大野 和士Japanese conductor, born March 4, 1960 in Tokyo. +[a466278] principal conductor (1992-2000) +[a1357304] general music director (1996-2002) +[a934738] music director (2002-2008) +[a1868155] principal conductor (2008-2017) +[a900097] and [a1077908] conductor since 2015.Needs Votehttp://en.wikipedia.org/wiki/Kazushi_OnoGlinkaK. OnoKazuchi OnoKazushi Ōno大野和士Tokyo Philharmonic OrchestraOrquestra Simfònica De Barcelona I Nacional De CatalunyaOrchestre Du Théâtre Royal De La MonnaieTokyo Metropolitan Symphony OrchestraBadische StaatskapelleOpéra National De Lyon + +1247911Arnaud BoukhitineClassical tubist.Needs VoteAmaud BoukhitineArnaud "Nounours" BoukhitineMr Arnaud BoukhitineEnsemble IntercontemporainDiagonalEnsemble À Vent De Bourgogne + +1247914Eric-Maria CouturierClassical cellist.CorrectE. M. CouturierEric Maria CouturierÉric-Maria CouturierEnsemble Intercontemporain + +1248199Pentti ViherluotoPentti ViherluotoBorn March 9th, 1915 in Turku, Finland. +Died November 19th, 2004 in Turku, Finland. + +A Finnish singer and composer. His best known composition is "Puhelinlangat Laulaa" by Katri Helena, a major hit in the 1960s in Finland. +Brother of [a1483646] +Needs VoteP. ViherluotoP. ViheruotoP.ViherluotoT. ViherluotoViherluoto + +1248431Yvonne NormanYvonne Marie NormanNeeds VoteY. M. NormanY. Norman + +1248433Rita GrimmRita Lynn GrimmNeeds VoteR. GrimmR. L. Grinn + +1248614Emőke A. ZákányiZákányi EmőkeHungarian lyricist. +Wife of [a=Ambrózy István] +The letter "A" -used on different places in her name- refers to her husband's surname.Needs VoteE. ZakanyiE. ZakanylE.ZakanyiEmoke - ZakanyiEmoke A. ZakanyiEmoke A. ZábányiEmoke ZakanyiEmóke A. ZáhonyiEmóke A. ZákányiEmöke A. ZákányiEmöke A. ZäkänyiZakanyiZakanyi - EmoikeZakanyi - EmokeZakanyi / EmokeZakanyi-EmokeZakanylZákányZákányiZákányi Emöke A.Zäkänyi A. Emöke + +1248894Pinewood Tom1930's alias of blues singer [a=Josh White]Needs Vote"Pinewood Tom" (Josh White)(Pinewood Tom)Pinewood Tom (Josh White)Pinwood TomJosh WhiteThe Singing ChristianPaul La FranceTippy Barton + +1249024Wilfried LaatzGerman violinist and professor of violine.CorrectW. LaatzBamberger SymphonikerPhilharmonisches Staatsorchester Hamburg + +1249032Guntram AltnöderStud. Dir. Guntram AltnöderGuntram Altnöder (1936-2006) was the founder and conductor of the boy choir 'Kieler Knabenchor' (KKC), Kiel, Germany since 1968. + +Guntram Altnöder was born in Leipzig in 1936. He first went to college in his hometown and later at the State University for Music in Munich. After graduating he worked as a music teacher and conductor for the "Regensburger Domspatzen" before his path through life led him to Kiel. There he founded, according to the wish of the city, the Kieler Knabenchor, which was to become his life's work until his retirement in 1998. During his entire time in Kiel, Guntram Altnöder was a music teacher at the Ernst-Barlach-Gymnasium, from 1979 on as director of the music program. +For his achievements, he was awarded the Bundesverdienstkreuz in 1984. +Correcthttp://de.wikipedia.org/wiki/Kieler_KnabenchorГунтрам АльтнёдерRegensburger DomspatzenKieler Knabenchor + +1249309Jess ThomasJess Floyd ThomasAmerican operatic tenor (* 04 August 1927 in Hot Springs, South Dakota, USA; † 11 October 1993 in Tiburon, Marin County, near San Francisco, California, USA).Needs Votehttps://en.wikipedia.org/wiki/Jess_Thomashttps://operalounge.de/wer-war-denn-noch/jess-thomashttps://www.deutsche-biographie.de/sfz132177.htmlJ. ThomasThomasДжесс Томас + +1249597Jiri PospichalJiří PospíchalCzech violist, composer, conductor, sound engineer and producer, born 1951, based in Austria, owner of [l=Classic Sound Austria].Correcthttp://www.classic-sound-austria.com/Jiři PospichalJiří PospichalJiří PospíchalThe Prague Symphony OrchestraDas Mozarteum Orchester Salzburg + +1249806Rüdiger PieskerRüdiger PieskerGerman orchestra leader and producer +He was born June 10, 1923 in Berlin and died there as well September 26, 2004. +He started his career assisting in 1954 by [a328257] and his [a328245] before starting his own orchestra in 1962. He later also worked as producer for [l=Polydor].Needs VoteHofkappellmeister Rüdiger PieskerPieskaPieskerR. PieskerRüdiger PieskePaul RothmanRolf CardelloJim KlugmanRIAS TanzorchesterRüdiger Piesker Und Seine Studio BandOrchester Rüdiger PieskerLos Cumbancheros (2)Orchestra Rolf CardelloPaul Rothman And His OrchestraStreichorchester Rüdiger PieskerChor Rüdiger PieskerDie Berliner Tanzsymphoniker + +1250029Joe Kelly (7)TrumpeterNeeds VoteJoe "Red" KellyJohn "Red" KellyRed KellyGerald Wilson Orchestra + +1250709Sigrid LeeItalian viol (viola da gamba), vielle (European bowed stringed instrument used in the Medieval period) and psaltery (stringed instrument of the zither family) player and singer. Also credited as producer, recording supervisor and editing engineer. Co-founder of label [l149470].Needs Votehttps://www.allmusic.com/artist/sigrid-lee-mn0001472432/relatedhttps://www.facebook.com/sigrid.lee.798?lst=1039519038%3A1248542684%3A1519420987https://it.wikipedia.org/wiki/Symphonia_%28casa_discografica%29Les Arts FlorissantsAlia MusicaFlorilegio EnsembleSator MusicæEnsemble Ars Italica + +1250754Heinrich SchmidtAustrian piano/harpsichord/glockenspiel/organ player, répétiteur, conductor and composer. Born 29 May 1904 in Wöllersdorf-Steinabrückl, Austria (then Austria-Hungary) - Died 29 November 1988 in Vienna, Austria. +From 1940-46 Schmidt acted as a solo coach and principal tutor at the [l587621] in Munich, and from 1943 was the principal tutor for the [l365596]. In 1946, he became an assistant of [a=Wilhelm Furtwängler] at the [l613318]. Schmidt was engaged at La Scala in Milano in 1949-55, while in 1955-72 he was principal tutor at the Staatsoper in Vienna.Needs Votehttps://www.olympedia.org/athletes/920079https://en.wikipedia.org/wiki/Heinrich_Schmidt_(composer)H. SchmidtProd. Heinrich SchmidtProf. Heinrich SchmidtProfessor Heinrich SchmidtPhilharmonia Orchestra + +1251054John HoneymanBritish double bass player. Born 24 January 1925 in Cowdenbeath, Fifeshire, Scotland, UK - Died 22 August 2009. +He studied at the [l742849]. He was Principal Bass of the [a=London Mozart Players]. He then joined the [a=Philharmonia Orchestra] (left in 1955) and then the [a=London Philharmonic Orchestra] (left in late 1956). He became involved with the [a=London Chamber Orchestra] and subsequently managed it for some years in the 1970s.Needs Votehttps://www.allerton.org/johnhoneyman/memoirs.pdfhttps://www.allerton.org/johnhoneyman/index.htmThe New Symphony Orchestra Of LondonLondon Philharmonic OrchestraJack Hylton And His OrchestraAmbrose & His OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraThe London Chamber OrchestraPhilomusica Of LondonLondon Mozart PlayersThe Virtuosi Of EnglandSinfonia Of LondonVic Lewis And His OrchestraFrank Weir And His OrchestraBath Festival OrchestraThe Wind Virtuosi Of England + +1251888Mark DuerClassical bass vocalist.CorrectPomeriumVoices Of Ascension + +1252004Christiane WuytsBelgian harpsichordist from AntwerpNeeds Votehttp://www.bach-cantatas.com/Bio/Wuyts-Christiane.htm + +1252068Rudolf HaaseGerman trumpet + string player.Needs VoteRudolf HaasStaatskapelle DresdenArchiv Produktion Instrumental Ensemble + +1252185Yoshio Suzuki鈴木良雄Japanese bassist and keyboardist, born March 21, 1946 in Nagano, JapanNeeds Votehttps://chin-suzuki.com/Chin SuzukiChin Yoshio SuzukiY. SuzukiY.SuzukiYoshio "CHIN" SuzukiYoshio "Chin" SuzukiYoshio 'CHIN' SuzukiYoshio Chin SuzukiYoshio SugukiYoshio “Chin” Suzuki鈴木良雄Gil Evans And His OrchestraArt Blakey & The Jazz MessengersYuji Ohno TrioTsuyoshi Yamamoto TrioKosuke Mine QuartetMasabumi Kikuchi SextetMasabumi Kikuchi QuintetKosuke Mine QuintetTakehiro Honda TrioThe 4 (The Quartet)Squad (13)Yoshio “Chin” Suzuki’s "The Blend"The Trio (24)Yoshio Suzuki TrioBass TalkYoshiaki Masuo Trio + +1252247David Taylor (11)Alto + Tenor vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +1252384DJ YozJonathan HughesUK Hardstyle DJ & Producer.Needs Votehttps://soundcloud.com/djyozukwww.myspace.com/thedjyozhttps://www.facebook.com/djyozukhttps://www.youtube.com/djyozukDJ Y.O.ZDJ Y.O.Z.DJ YOZDJYozDjYozY.O.Z.YozJonathan Hughes (7)ZoyzaThe Yofridiz + +1254403Joanna BeckerGerman violinistCorrectGürzenich-Orchester Kölner PhilharmonikerThe Wandelweiser String Quartet + +1254458Georg Philipp Schmidt von LübeckGeorg Philipp Schmidt von LübeckBorn January 1, 1766 in Lübeck, Germany. Died October 8, 1849 in Ottensen, Germany + +Northern german poet and writer. He worked for the kingdom of Denmark as member of the financial administration and did poetry and historical writing on the side. His poem „Der Wanderer“ was set to music by [a=Franz Schubert]. +Needs Votehttps://en.wikipedia.org/wiki/Georg_Philipp_Schmidt_von_L%C3%BCbeckG. Schmidt von LübeckGeorg Philipp SchmidtGeorg Philipp Schmidt »von Lübeck«Georg Philipp Schmidt “von Lübeck”LübeckS. LübeckSchmidtSchmidt Von LübeckSchmidt von Lübeckv. Lübeckvon Lübeck + +1255228Antoine LadretteClassical cellist.Needs VoteLes Arts FlorissantsLe Concert Des nationsEnsemble Court-CircuitEl Concierto EspañolConcerto Rococo + +1255280Ahti SonninenAhti SonninenFinnish composer. Born on July 11th, 1914 in Kuopion maalaiskunta, Finland. Died on July 28th, 1984 in Helsinki, Finland.Correcthttp://fi.wikipedia.org/wiki/Ahti_SonninenA. SonninenSonninen + +1256158Ralph Burns And His OrchestraNeeds Major ChangesOrch. Ralph BurnsOrchester Ralph BurnsOrchestraOrchestra Directed By Ralph BurnsOrchestra Ralph BurnsOrchestra Under The Direction Of Ralph BurnsRalph Burn's OrchestraRalph Burns & His Orch.Ralph Burns & His OrchestraRalph Burns & OrchestraRalph Burns & Su OrquestaRalph Burns And His Orch.Ralph Burns And His Orchestra & ChorusRalph Burns E La Sua OrchestraRalph Burns Orch.Ralph Burns OrchestraRalph Burns OrquestaRalph Burns OrquestraRalph Burns Y Su OrquestaRalph Burns' OrchestraRalph Burns's OrchestraRalph Burns, Et Son OrchestreThe Ralph Burns Big BandMilt HintonDanny BankOsie JohnsonDavey SchildkrautBill BarberBilly ByersRalph BurnsJim BuffingtonJoe NewmanHerbert Solomon + +1256345Kenneth S. FranzénSwedish classical percussionistNeeds VoteKenneth FranzénGöteborgs SymfonikerBlue Desert Westcoast Project + +1256420Julien DabonnevilleJulien DabonnevilleFrench violist.Needs VoteOrchestre Philharmonique De Radio FranceOrchestre Tous En Cœur + +1256820Jack PowersJazz drummer and singer.Needs VoteJack PowellLouis Prima And His OrchestraAmbrose & His OrchestraCalifornia RamblersTed Wallace & His Campus BoysTed Wallace & His OrchestraEd Parker And His OrchestraLloyd Newton And His Varsity ElevenEddie Kirkeby's OrchestraLouis Prima And His Gleeby Rhythm Orchestra + +1256953Alfred LetizkyAlfred Letizky (1913 - 1996) was an Austrian violist.Needs VoteAlfred LetitzkyDas Mozarteum Orchester SalzburgMozarteum Quartett + +1256954Karlheinz FrankeProf. Karlheinz FrankeGerman classical violinist and concertmaster (* 22 June 1928 in Niederlahnstein, German Empire; † 08 April 2009). He studied in Paris. After a spell as concert master of the Mannheim National Theatre, he took up the position of concertmaster of [a901539] in 1955. In the same year, he joined the [a1256952] as first violin. Needs Votehttps://edipichler.beepworld.de/profkhfranke.htmhttps://www.stadt-salzburg.at/index.php?id=54795Das Mozarteum Orchester SalzburgMozarteum QuartettMozarteum-Duo Salzburg + +1256955Heinrich AmmingerHeinrich Amminger is Austrian cellist. A member of [a901539] from 1955 to 1990.Needs VoteDas Mozarteum Orchester SalzburgMozarteum Quartett + +1257130Sigismondo D'IndiaItalian composer of the late Renaissance and early Baroque eras (Palermo, c. 1582 – Modena, 19 April 1629).Correcthttp://en.wikipedia.org/wiki/Sigismondo_d%27IndiaD''IndiaD'IndiaS. d'IndiaSigismondo D'India "Nobile Palermitano"d'India + +1257131Marianne ThorsenClassical violinist, born 13 March 1972 in Trondheim, Norway. +She studied with [a857021] and finished her studies with [a1063052] at the Purcell School and the Royal Academy of Music. +She founded the Leopold String Trio in 1991 and was their leader for 15 years. In 2000 she was appointed leader of The Nash Ensemble. +She plays on a Pressenda instrument built in Turin in 1841. Nominated for Spellemannprisen (Norwegian Grammy) for best classical album of 2013 with "Svendsen - Orchestral Works vol. 3", released with Bergen Philharmonic Orchestra and Neeme Järvi.Needs Votehttp://www.mariannethorsen.comThe Nash EnsembleSpectrum Concerts BerlinThe Leopold String Trio + +1258946Michael Cox (3)Biritish classical flutist and Professor of Flute. +Former Joint Principal Flute with the [a212726] (1993-1998). He hold principal flute tenures with the [a=London Mozart Players] and the [a=Britten Sinfonia]. Principal Flute of the [a=BBC Symphony Orchestra], [a=The Academy Of St. Martin-in-the-Fields] and the [a=London Sinfonietta]. Professor of Flute at the [l=Royal Academy Of Music] and artistic director of the flute website 'Principal Chairs'.Needs Votehttps://www.principalchairs.com/flute/michael-cox/https://www.orford.mu/en/academy/faculty/michael-cox/https://londonsinfonietta.org.uk/players/michael-coxhttps://www.ram.ac.uk/people/michael-coxMike CoxLondon Symphony OrchestraBBC Symphony OrchestraLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsLondon Mozart PlayersBritten SinfoniaThe Albion Ensemble + +1259101Johann Strauss Jr.Johann Baptist Strauss[b]Also credited as Johann Strauss II. Not to be confused with his father [a2025291][/b] who composed the Radetzky-March. + +Austrian composer, born 25 October 1825 in St. Ulrich, Austria and died 3 June 1899 in Vienna, Austria. He composed dance music (over 500 waltzes, polkas, quadrilles, and other types of dance music), several operettas and a ballett. In his lifetime, he was known as "The Waltz King", and was largely responsible for the popularity of the waltz in Vienna during the 19th century. +He is the brother of [a=Josef Strauß] & [a=Eduard Strauß].Needs Votehttps://www.johann-strauss.at/https://www.johann-strauss.org.uk/https://djsg.de/https://en.wikipedia.org/wiki/Johann_Strauss_IIhttps://www.britannica.com/biography/Johann-Strauss-IIhttps://www.imdb.com/name/nm0006310/https://adp.library.ucsb.edu/names/102525https://www.allmusic.com/artist/johann-strauss-ii-mn0000307361D. StraussEilenbergE・シュトラウスFilsFohann StraussFr. StraussG. StraussG. Strauss - JunGiov. StraussGiov. Strauss Jun.Giovanni StraussGiovanni StraußGius. StraussHeharI. StraussI. StraußI. ШтраусIfj. J. StraussIfj. Johann StraussInvanovicIohann StraussJ F StraussJ Straus IIJ StraussJ Strauss (Jr)J Strauss FilsJ Strauss IIJ Strauss JrJ Strauss Jr.J Strauss d yJ ŠtrausasJ, StraussJ,. StraussJ- StraussJ.J. Strauss, Jr.J. S. StraussJ. Srauss, Jr.J. Straub Jr.J. StraulssJ. StrausJ. Straus FilsJ. Straus IIJ. StraussJ. Strauss IIJ. Strauss (Fils)J. Strauss (II)J. Strauss (Jr.)J. Strauss (Ojciec)J. Strauss (Sohn)J. Strauss (Son)J. Strauss (Syn)J. Strauss (h)J. Strauss (jn)J. Strauss (ml.)J. Strauss 2J. Strauss 2do.J. Strauss 2ndJ. Strauss 2nd.J. Strauss D. Y.J. Strauss D.Y.J. Strauss D.y.J. Strauss DYJ. Strauss FiglioJ. Strauss FilsJ. Strauss IJ. Strauss IIJ. Strauss II.J. Strauss IlJ. Strauss J:rJ. Strauss JnrJ. Strauss Jnr.J. Strauss JrJ. Strauss Jr.J. Strauss Jun.J. Strauss JuniorJ. Strauss Ml.J. Strauss Sen.J. Strauss Snr.J. Strauss SohmJ. Strauss SohnJ. Strauss SrJ. Strauss The YoungerJ. Strauss d yJ. Strauss d.y.J. Strauss dyJ. Strauss hijoJ. Strauss iiJ. Strauss jnrJ. Strauss jrJ. Strauss jr.J. Strauss llJ. Strauss sen.J. Strauss ⅡJ. Strauss, 2ndJ. Strauss, 2nd.J. Strauss, FilsJ. Strauss, HijoJ. Strauss, IJ. Strauss, IIJ. Strauss, JrJ. Strauss, Jr.J. Strauss, Jr.*J. Strauss, Jr./ SohnJ. Strauss, Ml.J. Strauss, SohnJ. Strauss, d.y.J. Strauss, filsJ. Strauss, hijoJ. Strauss-fiulJ. StraussJrJ. StraußJ. Strauß (Sohn)J. Strauß Jr.J. Strauß SohnJ. Strauß sen.J. Strauß, Jr.J. Strauß, SohnJ. Strauß-SohnJ. StruassJ. ŠtrausJ. Štraus, Ml.J. ŠtrausasJ. Štrausas IIJ. ŠtraussJ. シュトラウスJ. シュトラウスⅡ世J.R. StraussJ.S.Strauss IIJ.StraussJ.Strauss IIJ.Strauss JrJ.Strauss Jr.J.Strauss SohnJ.Strauss dyJ.Strauss, 2ndJ.Strauss, JrJ.Strauss,JrJ.StraußJ.XtraussJ.ŠtrausoJ.ŠtraussJ.シュトラウスJ.シュトラウス2世J.シュトラウスIIJ.シュトラウスⅡJ.シュトラウスⅡ世Jan StraussJan Strauss IIJh. StraussJof StraußJoh StraussJoh Strauss Jr.Joh StraußJoh, StraussJoh.Joh. IIJoh. StrausJoh. StraussJoh. Strauss (Sohn)Joh. Strauss (Son)Joh. Strauss 2ndJoh. Strauss D. J.Joh. Strauss D.J.Joh. Strauss IIJoh. Strauss Jnr.Joh. Strauss JrJoh. Strauss Jr.Joh. Strauss Jun.Joh. Strauss SohnJoh. Strauss SonJoh. Strauss d. J.Joh. Strauss d.J.Joh. Strauss jr.Joh. Strauss jun.Joh. Strauss, 2ndJoh. Strauss, FilsJoh. Strauss, IIJoh. Strauss, JrJoh. Strauss, Jr.Joh. Strauss, SohnJoh. Strauss, Sr.Joh. StraußJoh. Strauß (Sohn)Joh. Strauß IIJoh. Strauß Jr.Joh. Strauß SohnJoh. Strauß, Jr.Joh. Strauß, SohnJoh. Strauß-SohnJoh. Strauß/SohnJoh. u.Joh.StraussJoh.StraußJoha. Strauss Jr.Johamm StraussJohan StrausJohan Straus IIJohan StraussJohan Strauss (1867)Johan Strauss (Sohn)Johan Strauss (d.y.)Johan Strauss IIJohan Strauss JrJohan Strauss Jr.Johan Strauss NuorempiJohan Strauss SohnJohan Strauss The SecondJohan Strauss The YoungerJohan Strauss d.y.Johan Strauss'Johan Strauss, Jr.Johan Strauss, SohnJohan StraußJohan n StraußJohan ŠtrausJohan Štraus Jr.Johan Štraus MlađiJohan. Strauß, SohnJohanas ŠtrausasJohannJohann StraußJohann (II)Johann (The Son)Johann AtrausJohann IIJohann II StraussJohann II StraußJohann JnrJohann JrJohann Jr.Johann Jr. StraussJohann Jrs.Johann Jun.Johann SraussJohann StaussJohann Stauss IIJohann StaußJohann StrassJohann StrausJohann Straus (Son)Johann Straus IIJohann Straus SynJohann StraussJohann Strauss (1825-1899)Johann Strauss (2nd)Johann Strauss (Figlio)Johann Strauss (Fils)Johann Strauss (Hijo)Johann Strauss (II)Johann Strauss (Jnr)Johann Strauss (Jnr.)Johann Strauss (John)Johann Strauss (Jr.)Johann Strauss (Junior)Johann Strauss (Sohn)Johann Strauss (Sohn/Son)Johann Strauss (Son)Johann Strauss (Syn)Johann Strauss (The Schmaltz King)Johann Strauss (The Son)Johann Strauss (The Younger)Johann Strauss (d.y.)Johann Strauss (hijo)Johann Strauss (son)Johann Strauss (syn)Johann Strauss , 2ndJohann Strauss - SohnJohann Strauss - SonJohann Strauss -SohnJohann Strauss / SohnJohann Strauss 11Johann Strauss 2ndJohann Strauss 2nd.Johann Strauss ConcertJohann Strauss D YJohann Strauss D. J.Johann Strauss D. Y.Johann Strauss D.Y.Johann Strauss DYJohann Strauss DyJohann Strauss FiglioJohann Strauss FilsJohann Strauss Fils)Johann Strauss HijoJohann Strauss IJohann Strauss IIJohann Strauss II.Johann Strauss II`Johann Strauss IiJohann Strauss IlJohann Strauss JnrJohann Strauss Jnr.Johann Strauss JrJohann Strauss Jr. *Johann Strauss JunJohann Strauss Jun.Johann Strauss JuniorJohann Strauss Ml.Johann Strauss MlađiJohann Strauss Nuor.Johann Strauss NuorempiJohann Strauss SohnJohann Strauss Sohn/SonJohann Strauss SonJohann Strauss SynJohann Strauss The YoungerJohann Strauss d yJohann Strauss d.J.Johann Strauss d.y.Johann Strauss dy.Johann Strauss filsJohann Strauss hijoJohann Strauss jaun.Johann Strauss jun.Johann Strauss llJohann Strauss ml.Johann Strauss synJohann Strauss ⅡJohann Strauss, SohnJohann Strauss, 2Johann Strauss, 2ndJohann Strauss, FiglioJohann Strauss, FilhoJohann Strauss, FilsJohann Strauss, HijoJohann Strauss, IIJohann Strauss, II.Johann Strauss, JR.Johann Strauss, JnrJohann Strauss, Jnr.Johann Strauss, JrJohann Strauss, Jr.Johann Strauss, Jun.Johann Strauss, JuniorJohann Strauss, Junr.Johann Strauss, Le FilsJohann Strauss, SohnJohann Strauss, Sohn/SonJohann Strauss, SonJohann Strauss, The SonJohann Strauss, d.y.Johann Strauss, hijoJohann Strauss, jr.Johann Strauss, jun.Johann Strauss, sohnJohann Strauss, synJohann Strauss-SohnJohann Strauss-SonJohann Strauss-TatălJohann Strauss-fiulJohann Strauss. Jr.Johann Strauss/SohnJohann Strauus SohnJohann StraußJohann Strauß JuniorJohann Strauß (Fils)Johann Strauß (Sohn)Johann Strauß (Sohn)/Johann Strauss IIJohann Strauß - SohnJohann Strauß / SohnJohann Strauß Dj.Johann Strauß IIJohann Strauß Jr.Johann Strauß Jun.Johann Strauß SohnJohann Strauß jr.Johann Strauß jun.Johann Strauß, SohnJohann Strauß, Jr.Johann Strauß, SohnJohann Strauß-SohnJohann Strauß/SohnJohann StrussJohann, Jr.Johann-Johann-FiulJohann-fiulJohann; Jr.JohannStraußJohannas StraussasJohanne StraussJohannes StraussJohannes Strauss (Sohn)Johannes Strauss IIJohannes StraußJohans ŠtraussJohn StraussJohn Strauss Jr.John Strauss jr.John. StraussJohn. StraußJos. StraussJos. StraußJosef StraussJr.R. StraussS. StraussSchtraussSohnSrtauss, J.StaussStraubStrausStraus IIStraussStrauss (J)Strauss (Le Fils) (The Son)Strauss (Sohn)Strauss (Son), JohannStrauss 2ndStrauss Den YngreStrauss IStrauss IIStrauss II.Strauss IInd, J.Strauss JStrauss J (II)Strauss J Jr.Strauss J.Strauss J. IIStrauss J. Jr.Strauss J. SynStrauss JR.Strauss JnrStrauss Jnr.Strauss Joh. Jr.Strauss JohannStrauss Johann Jr.Strauss Johann SohnStrauss Johann-SonStrauss JrStrauss Jr.Strauss Jr. (J)Strauss Jun.Strauss Junr.Strauss JánosStrauss PaiStrauss filsStrauss, JStrauss, J.Strauss, J. IIStrauss, J., Jnr.Strauss, Joh.Strauss, Johan NuorempiStrauss, JohannStrauss, Johann, Jr.Strauss, Jr.Strauss, SohnStrauss-SohnStrausseStrausz JrStrausßStraußStrauß (Sohn)Strauß IIStrauß JohannStrauß Jr.Strauß SohnStrauß, JohannStrauß, SohnStrauẞVon StraussWildenj. Straussles StraussΓ. Στράους IIΓιόχαν ΣτράουςΓιόχαν Στράους ΥιόςІ. ШтраусЈохан ШтраусИ. ШтрaусИ. ШтраусИ. Штраус (Сын)И. Штраус (сын)И. Штраус-cынИ. Штраус-СынИ. Штраус-сынИ. ШтраусаИ.ШтраусИоган ШтраусИоганн ШтраусИоганн Штраус (Сын)Иоганн Штраус (сын)Иоганн Штраус-мл.Иоганн Штраус-младшийИоганн Штраус-сынИоганн ШтрауссИоганн Штраусс IIИозеф ШтраусЙ . ШтраусЙ. ШтраусЙ. ЩраусЙ.ШтраусЙоган ШтраусЙоганн ШтраусЙоганн ШтрауссЙох. ЩраусЙохан ШраусЙохан ЩраусР. ШтраусСтраусШтраусШтраус (Сын)Штраус (сын)Штраус ИоганнШтраусaЩраусЩросъי. שטראוסיוהן שטראוסשטראוסシュトラウスシュトラウス2世シュトラウスII世ヨハンヨハン シュトラウスヨハン シュトラウス2世ヨハンIIヨハンⅡ世ヨハンシュトラウス2世ヨハンシュトラウスIIヨハン・シュトラウスヨハン・シュトラウス IIヨハン・シュトラウス2世ヨハン・シュトラウス2世;ヨハン・シュトラウスIIヨハン・シュトラウスII世ヨハン・シュトラウスⅡヨハン・シュトラウスⅡ世姜·司脫勞斯小約翰 · 史特勞斯Johann Strauss Und Sein Orchester + +1259314Abraham SkernickAbraham Skernick (4 June 1923 - 13 December 1996) was an American violist. He was a member of [a547971] from 1949 to 1976.Needs VoteSkernickThe Cleveland Orchestra + +1259627Guus JeukendrupDutch violinist.Needs VoteConcertgebouworkestConcertgebouw Chamber OrchestraL'Archibudelli + +1260508Roger WrightFormer controller at BBC Radio 3, and Director of BBC Proms. +Chief Executive of [l366053], former Head of A & R at [l7703] (1992-97). +Needs Votehttps://en.wikipedia.org/wiki/Roger_Wright_(music_administrator)http://www.bbc.co.uk/pressoffice/biographies/biogs/controllers/rogerwright.shtmlWright + +1260923Steve Warren (3)Bass, US - played with [a23524]Needs Vote + +1260952Ryusuke NumajiriRyusuke Numajiri is a Japanese conductor, born in Tokyo in 1964.Needs Votehttps://ryusukenumajiri.com/https://www.naxos.com/person/Ryusuke_Numajiri/31624.htmNumajiri RyusukeRyusuke Numajari沼尻竜典Philharmonisches Orchester Der Hansestadt Lübeck + +1261301Teddy Hill OrchestraNeeds Major ChangesHis OrchestraTedd Hill And His OrchestraTeddy Hil And His OrchestraTeddy Hill & His OrchestraTeddy Hill And His OrchestraThe Teddy Hill OrchestraRoy EldridgeRussell ProcopeSam AllenLeon "Chu" BerryCecil ScottFrank NewtonTeddy HillShad CollinsDickie WellsJohn Smith (6)Bill DillardRichard "Dick" FullbrightBill BeasonRobert CarrollHoward Johnson (6) + +1261428Nicholas GedgeBritish bass/baritone vocalistNeeds VoteOxford CamerataSt. John's College Choir + +1261682Janice KnightOboistCorrectEnglish Chamber Orchestra + +1262290Gaby Pas-Van RietBelgian flute player, born 1959 in Essen, Belgium.Needs Votehttp://www.gabypas-vanriet.de/Gabi Pas-Van RietGaby Van RietGaby van RietRadio-Sinfonieorchester StuttgartStuttgart WindsEnsemble KheopsLinos Harp Quintet + +1262505Beverly SillsBelle Miriam SilvermanBorn: 25th May 1929 Brooklyn, New York, USA - Died: 2nd July 2007. +Beverly Sills was an American operatic soprano between the 1950s and 1970s. In the 1970s, she was the "face" of opera in the United States. +Known as "Bubbles" since childhood. Was an old friend of comedian [a=Carol Burnett].Needs Votehttp://en.wikipedia.org/wiki/Beverly_SillsBeverly Sills web site (unofficial). Contains discography of commercial her recordings. http://www.beverlysillsonline.com/ B. SillsBeverley SillsSillsБеверли СиллзБевърли Силз + +1262588Nicolas BaldeyrouClassical clarinettist.Needs VoteN. BaldeyrouOrchestre Philharmonique De Radio France + +1262599Broadway Bell-HopsThe Broadway Bell-Hops were a group of recording sessions organized by [a1208281]. Lanin hired many of the top White jazz musicians of the 1920s to play on these records.Needs Votehttp://redhotjazz.com/bellhops.htmlhttp://www.allmusic.com/artist/the-broadway-bell-hops-mn0001395230Broadway Bell HopsThe Broadway Bell HopsThe Broadway BellhopsBill RankLarry AbbottJimmy FlynnJohn CaliBobby Davis (4)Hymie FarbermanDick Johnson (8) + +1262669Helmut KlotzGerman tenor, chorus master and cellist, born 10 February 1935 in Oederan, Germany.CorrectH. KlotzHelmuth KlotzStaatskapelle Dresden + +1262782Noémi RimeClassical soprano.Needs VoteN. RimeNoémie RimeRimeLes Arts FlorissantsEnsemble Consonance + +1262987Samuel RunsteenSwedish classical violinistNeeds VoteGöteborgs Symfoniker + +1262989Antonio HallongrenKarl Thomas Antonio HallongrenSwedish classical cellist, born January 23, 1989 in Kungälv.Needs Votehttps://www.antoniohallongren.co/https://sv.wikipedia.org/wiki/Antonio_HallongrenSveriges Radios SymfoniorkesterGöteborgs Symfoniker + +1263034Arthur BalsamUS-American classical pianist and pedagogue. He was born born 8 February 1906 in Warsaw, Poland and died 1 September 1994 in New York, New York, USA.CorrectA. BalsamArthur Balsam, PianoArtur BalsamArtur BalsomBalsamR. BalsamА. Бальзамアルトゥール・バルサムアルトゥール・バルサム + +1263621József GombaiClassical oboistNeeds VoteGombai JózsefLiszt Ferenc Chamber Orchestra + +1264019Christoph HampeClassical cellist.Needs VoteEnsemble Oriol BerlinKammerakademie PotsdamHenosode Quartett + +1264020Axel SchmidtAxel Schmidt (born 19 August 1940) is a German classical English horn player and oboist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigNeues Bachisches Collegium Musicum LeipzigGruppe Neue Musik "Hanns Eisler" LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +1264023Janne SaksalaFinnish classical bassistCorrectBerliner Philharmoniker + +1264026Christian Wagner (4)German classical horn player.Needs VoteStaatskapelle BerlinBläservereinigung BerlinConsortium Classicum + +1264582Kurt HiltawskyKurt Hiltawsky (13 February 1930 —15 March 2017) was a German clarinetist.Needs VoteGewandhausorchester LeipzigGewandhaus-Kammermusikvereinigung + +1264697Bork-Frithjof SmithClassical cornett instrumentalist. In 2017 he took over the cornett class as teacher at the Schola Cantorum Basiliensis (Basel, Switzerland) as successor to [a=Bruce Dickey].Needs VoteFrithjof SmithFritjof SmithThe English Baroque SoloistsConcerto ItalianoLes CyclopesL'ArpeggiataWeser-RenaissanceMusica FioritaMusica FreybergensisMusica FiataArs Antiqua AustriaLa Cetra Barockorchester BaselEnsemble La FeniceLes Cornets NoirsOrchester Der J.S. Bach StiftungAkadêmiaCapricornus Ensemble StuttgartAbendmusiken BaselScorpio CollectiefNeue Innsbrucker HofkapelleI Fedeli (2)Concerto ImperialeEuropäisches Hanse-Ensemble + +1265003Sébastien VichardClassical pianist.Needs Votehttps://www.ensembleintercontemporain.com/en/soliste/sebastien-vichard/Ensemble Intercontemporain + +1265006Hélène DevilleneuveFrench oboe player, born in Avignon.Needs VoteH. DevilleneuveHélèneHēlēne DevilleneuveI Solisti VenetiEnsemble Court-CircuitOrchestre Philharmonique De Radio France + +1265211Victor GottliebAmerican cellist. +Born in Philadelphia in 1916, died in Los Angeles in 1963. He was married to violinist [a=Eudice Shapiro]. +He played with many great artists including Frank Sinatra, Nat King Cole, Chet Baker, Cal Tjader, Stan Kenton and many others. +An album he played on with his wife and other artists "Faure: 1st Quartet Op15/Schumann: Clavier Quartet, Op. - 47" was nominated for a Grammy award in 1961.Needs Votehttps://www.imdb.com/name/nm1148919/?ref_=nmbio_sp_2V. GottliebThe Philadelphia OrchestraThe American Art QuartetPro Arte QuartetThe Coolidge Quartet + +1265311Eivind AadlandEivind Aadland (born 1956) is a Norwegian conductor and violinist. He has been concert master of the [a1036751], and now is conductor of the [a1137449].Correcthttp://en.wikipedia.org/wiki/Eivind_AadlandEivind ÅdlandBergen Filharmoniske Orkester + +1265426Catherine WeissClassical violinist.Needs VoteCatherine WeiisCathy WeissOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe Consort Of MusickeRaglan Baroque PlayersThe Purcell QuartetThe King's ConsortThe Purcell BandThe Richard Hickox OrchestraThe English ConcertLe Nouveau QuatuorThe Friends Of Apollo + +1265758Heinrich BenderGerman pianist, conductor and music educator, born 11 May 1925 in Saarbrücken, Germany and died 24 May 2016 in Munich, Germany.CorrectХайнрих Бендер + +1267003Frisky (7)Holley McMillanFemale hard dance DJ/producer based in Swansea, UK.Needs Votehttp://www.djfrisky.comhttps://www.facebook.com/DJFriskyFanPagehttp://soundcloud.com/holley_frisky + +1267172Elisabeth HarringerElisabeth Harringer-PignatAustrian violinist, born in 1974 in Linz, Austria.Needs VoteElisabeth Harringer-PignatEnsemble Kontraste ZürichStradivari-QuartettTonhalle-Orchester Zürich + +1267194Anne HofmannGerman bassistNeeds VoteEnsemble ResonanzKammerakademie Potsdam + +1267261Art LundArthur Earl Lund Jr.American jazz singer and actor. +Born : April 01, 1915 in Salt Lake City, Utah, USA. +Died : May 31, 1990 in Holladay, Utah, USA. + +Art worked with : “Jimmy Joy Orchestra”, Benny Goodman (1941-1946), Harry James, Tex Beneke, Ray Charles, “Leroy Holmes Orchestra”, Johnny Long, and others. Lund went from teacher, to big band singer, to wartime military aeronautic engineer, to solo pop singer, to actor in television and movies. +Needs Votehttps://en.wikipedia.org/wiki/Art_Lundhttp://www.dvrbs.com/swing/OldShowbiz-ArtLund.htmhttps://www.imdb.com/name/nm0526136/?ref_=nmbio_ovhttps://adp.library.ucsb.edu/names/328519A. LundArt LondonLundArt LondonHarry James And His OrchestraBenny Goodman And His OrchestraJimmy Joy And His Orchestra + +1267293Fernando LageClassical cellist.CorrectLes Musiciens Du Louvre + +1267307Val KennedyValentine KennedyGerman-British bassoonist (1913-2001). He also played the contrabassoon, piano and accordion, and was a teacher. He played with the London Philharmonic Orchestra from 1946 to 1953 and again from 1964 to 1988.Correcthttps://www.rcm.ac.uk/singingasong/featuredmusicianscategory2/valkennedy/Valentine KennedyLondon Philharmonic Orchestra + +1267374Enrique Fernández ArbósSpanish violinist, conductor and composer, born 24 December 1863 in Madrid, Spain and died 2 June 1939 in San Sebastián, Spain. +Conductor of [a854120] from 1905 to (at least) 1931.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/104480/Arbos_Enrique_Fernandezhttps://en.wikipedia.org/wiki/Enrique_Fern%C3%A1ndez_Arb%C3%B3sArbosArbósE. F. ArbasE. F. ArbosE. F. ArbósE. Fernandez ArbosE. Fernández-ArbósE. Fernández ArbósE. Frenandez ArbosE.F. ArbosE.F. ArbósEnrique ArbósEnrique F. ArbósEnrique Fernandez ArbosEnrique Fernández ArbòsEnrique Fernández ArbósEnrique Fernández-ArbósF. ArbosFernandez ArbosFernandez ArbósFernández ArbósФ. АрбосBoston Symphony OrchestraOrquesta Sinfónica De Madrid + +1267718Bernard DochertyViolinist, he has been co-leader of the BBC Scottish Symphony Orchestra for the past seventeen years.CorrectBernhard DochertyBBC Scottish Symphony OrchestraScottish Chamber Orchestra + +1267838Gunnar LychouClassical violinist, viola playerNeeds VoteDet Kongelige KapelThe Chamber Music And Songs EnsembleDR SymfoniOrkestret + +1268060Thomas IndermühleClassical oboist and conductor of the Italian ensemble [a=I Solisti Di Perugia]. Mr. Indermühle also plays the English horn.Needs Votehttps://de.wikipedia.org/wiki/Thomas_Inderm%C3%BChleThomas Indermühle Oboe D'Amoreトーマス・インデアミューレEnglish Chamber OrchestraWiener AkademieI Solisti Di PerugiaDas Wiener Philharmonia Trio + +1268070Rainer SchottstädtRainer Schottstädt ( 21 January 1951 - 19 September 2016) was a German bassoon player. He was the principal bassoonist of the [a866649] from 1975 to 2016, and also teaches and was a publisher for woodwind music.Needs VoteR. SchottstädtGürzenich-Orchester Kölner PhilharmonikerBachcollegium StuttgartStuttgarter Hymnus-ChorknabenCalamus EnsembleBundesjugendorchesterSyrinx Quintett + +1268108Neal ThomasNeal ThomasElectronic dance music DJ / producer from Liverpool, United Kingdom +Style focus: Techno | Tech Trance Correcthttp://www.myspace.com/djnealthomashttps://soundcloud.com/djnealthomashttps://www.facebook.com/nealthomasdotdjhttps://www.bandsintown.com/a/9302081https://www.youtube.com/user/djnealthomasN. ThomasNeat ThomasNeil ThomasNitro PNealos + +1268204Heinrich SchlusnusHeinrich Carl Julius SchlusnusGerman baritone, born 6 August 1888 in Braubach, died 18 June 1952 in Frankfurt. He was married to [a3595006]. +Needs Votehttps://adp.library.ucsb.edu/names/103954https://en.wikipedia.org/wiki/Heinrich_SchlusnusH. SchlusnusHeinr. SchlusnusHeinrich Schlusnus, Staatsoper BerlinHenri SchlusnusHenrich Schlusnus, Bariton, Staatsoper, BerlinSchlusnusГенрих Шлуснус + +1268205Leo BlechGerman conductor and composer (21. April 1871, Aachen, Germany - 25. August 1958, Berlin, Germany). + +He conducted in Aachen, Prague, Berlin (1906–1937, 1949–1953), Riga and Stockholm. Blech recorded mainly for Gramophone/Electrola/HMV and for Deutsche Grammophon/Polydor.Needs Votehttps://en.wikipedia.org/wiki/Leo_Blechhttps://de.wikipedia.org/wiki/Leo_Blechhttps://adp.library.ucsb.edu/names/103965BlechDr. L. BlechDr. Leo BlechGeneraldirektor Leo BlechGeneralmusikdir. Leo BlechGeneralmusikdirector Leo BlechGeneralmusikdirektor Leo BlechLeo BlachM. Léo BlechMaestro Leo BlechЛео Блех + +1268507Yves CortvrintClassical violistNeeds VoteYves CorturintOrchestre Du Théâtre Royal De La Monnaie + +1268648Thomas RøislandTuba player.Needs Votehttps://twitter.com/thomasroeislandhttps://www.instagram.com/roeislandtuba/KringkastingsorkestretDR SymfoniOrkestretValkyrien Brass + +1268649Eirik DevoldEirik A. DevoldTrombone player in Oslo Philharmonic orchestra. Born 1974 in Halden. Joined philharmonics in 2003.Needs VoteOslo Filharmoniske Orkester + +1268650Terje MidtgårdTrombone player in Oslo Philharmonic orchestra.Needs VoteOslo Filharmoniske Orkester + +1268695Giulio ScarnicciGiulio Scarnicci (May 5, 1913 Florence, Tuscany, Italy - July 13, 1973 Rome, Lazio, Italy) was an Italian screenwriter, theatrical, television and film author, who above all wrote for [a=Ugo Tognazzi] and [a=Raimondo Vianello] paired with [a=Renzo Tarabusi].Correcthttps://it.wikipedia.org/wiki/Giulio_Scarniccihttps://www.imdb.com/name/nm0769213/?ref_=nv_sr_srsg_0https://en.wikipedia.org/wiki/Giulio_ScarnicciCarnicciG. ScarnicchiG. ScarnicciScarenicciScarnicci + +1268696Renzo TarabusiRenzo Tarabusi (July 1, 1906 Florence, Tuscany, Italy - June 8, 1968 Florence, Tuscany, Italy) was an Italian screenwriter, theater, television and film author.Correcthttps://www.imdb.com/name/nm0850160/?ref_=nv_sr_srsg_0https://it.wikipedia.org/wiki/Renzo_Tarabusihttps://www.renzotarabusi.it/R. TarabusiS. TarabusS. TarogusiTarabusiTarabussiTarbusiTarogusi + +1269379Philippe Gaubert (2)French composer, conductor and flautist. +Born 5 July 1879, died 8 July 1941. +He was principal conductor of the [a=Orchestre De La Société Des Concerts Du Conservatoire] from 1919 to 1938.Needs Votehttp://en.wikipedia.org/wiki/Philippe_Gauberthttps://adp.library.ucsb.edu/names/104824GaubertGaubert, PhilippeM. GaubertM. Philippe GaubertMr. Philippe GaubertP. GaubertP.H. GaubertPh. GaubertPhilipe GaubertPhilipp GaubertPhilippe GaubertPhillipe GaubertPhillippe GaubertOrchestre De La Société Des Concerts Du Conservatoire + +1269993Matthias RoscherMatthias Roscher (born 1952) is a German contrabassoonist. He was a member of the [a3578838] from 1986 to 2018.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspielehr-Sinfonieorchester + +1269998Dieter VelteGerman bass clarinetist. +Needs VoteOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinBigBand Deutsche Oper Berlin + +1269999Karl-Heinz SteffensGerman clarinetist and conductor (born 1961 in Trier, Germany).Needs Votehttps://en.wikipedia.org/wiki/Karl-Heinz_Steffenshttps://www.udk-berlin.de/en/universitaet/fakultaet-musik/musikensembles/symphonieorchester-der-universitaet-der-kuenste-berlin/gastdirigentinnen/translate-to-english-karl-heinz-steffens/https://wurlitzerklarinetten.de/artists/karl-heinz-steffens/?lang=enKarl Heinz SteffensBerliner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksFrankfurter Opern- Und MuseumsorchesterOrchester Des Staatstheaters KasselDeutsche Bläserphilharmonie (2) + +1270002Herbert LangeHerbert Lange (born 1955) is a German trumpet player.Needs VoteOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner Philharmoniker + +1270539Roberto BortoluzziClassical violinistNeeds VoteR.BortoluzziOrchestra Del Teatro Alla ScalaI Solisti Di Milano + +1270558David Gould (5)English alto / countertenor vocalistNeeds Votehttps://bach-cantatas.com/Bio/Gould-David.htmThe Scholars Baroque EnsembleThe Hilliard EnsembleMagnificatThe Tallis ScholarsCollegium VocaleThe Monteverdi ChoirI FagioliniPolyphonyWestminster Cathedral ChoirChoir Of The Carmelite Priory LondonThe Cardinall's MusickTenebrae (10) + +1270768Eric HuebnerUSAmerican pianist. +Eric Huebner is a versatile pianist known for his performances of 20th and 21st century music. Appointed pianist of the New York Philharmonic in 2012, he appears in over 60 orchestral and chamber music concerts annually with the orchestra. As a recitalist, he has performed throughout North America, the U.K., Germany, Japan and Brazil. From 2001 to 2012 he was a member of Antares, a mixed instrument quartet awarded first prize at the 2002 Concert Artists Guild International Competition. The quartet toured North America extensively and commissioned, recorded and performed many new and recent works for its combination. Huebner’s work with living composers is documented in recordings on Col Legno, Centaur, Bridge, Albany, Tzadik, Innova, and Mode Records labels. A critically acclaimed 2020 New Focus recording features Ligeti’s Piano Études (Books I & II) and Horn Trio. His debut 2015 New Focus solo release, features works by Schumann, Carter and Stravinsky. Huebner is currently Professor of Music at State University of New York at Buffalo, where he has served on the faculty since 2009, and is (2022) an adjunct collaborative piano faculty member of The Juilliard School.Needs Votehttp://www.erichuebner.comNew York PhilharmonicFlexible Music + +1270958Andrew MellorEnglish sound engineer specialized in classical music, owner of AJM Productions Ltd.Needs Votehttps://twitter.com/ajm_productionshttps://soundcloud.com/ajm_productionsAndrew J Mellor + +1271464Roy RossRoy Irving RossMulti-instrumentalist, composer, and conductor (born 1912 in New York, USA - died July 23, 1968 in New York, New York, USA). + +Between 1945 and the 1950s, Roy Ross appears on many records playing the organ, occasionally also accordion, bandoneon, celesta, vibraphone, or mandolin. + +In addition, Ross conducted [l=Decca] or [l=Coral] studio orchestras that accompanied, e.g., [a=Beatrice Lillie] and [a=The Ames Brothers]. + +In March 1950, [l=Decca Records, Inc.] hired Ross as the musical director for its subsidiary label [l=Coral]. From 1946 to 1958, he also served as the musical director for WNEW radio in New York City. + +As a composer, Ross had a hit in 1950 with "Happy Feet" (with lyrics by [a=Al Stillman]), which was based on an advertising jingle for Miles Shoes that Ross had originally written in 1949 with different lyrics by [a=Ted Cott]. + +At the time of his death from a heart attack at age 56, Ross ran his own company, Roy Ross Enterprises, and wrote music for TV and radio commercials.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/208840/Ross_Royhttps://www.nytimes.com/1968/07/25/archives/roy-irving-ross.htmlhttps://books.google.com/books?id=k_UDAAAAMBAJ&pg=PA43&dq=%22Roy+Ross%22+%2B+Coral&hl=en&sa=X&ved=2ahUKEwja59ym-6mRAxUKEjQIHTbaOAkQ6AF6BAgREAM#v=onepage&q=%22Roy%20Ross%22%20%2B%20Coral&f=falsehttps://books.google.com/books?id=OwEEAAAAMBAJ&pg=PA39&dq=Ross,+Roy+%2B+ASCAP+%2B+Happy+Feet&hl=en&sa=X&ved=2ahUKEwjJgqyvn6uRAxWHCjQIHcRfDRUQ6AF6BAgMEAM#v=onepage&q=Ross%2C%20Roy%20%2B%20ASCAP%20%2B%20Happy%20Feet&f=falsehttps://www.familysearch.org/ark:/61903/1:1:6XRQ-GX6N?lang=enhttps://www.findagrave.com/memorial/253522537/roy-irving-rossR. RossRossSaturday Night Swing SessionRoy Ross And His OrchestraRoy Ross His Organ And The Boys + +1271591Swankie DJJames SwankieOne half of the welsh hardstyle duo "Swankie DJ & Kashi"CorrectSwankie DJ & Kashi + +1271592KashiJustin Kashi One half of the Welsh reverse bass hardstyle duo ‘Swankie DJ & Kashi’Needs VoteSwankie DJ & Kashi + +1272322Jacques RémyClassical timpanist (timbales in French).Needs VoteJacques RemyOrchestre De ParisClyde Borly Et Ses PercussionsPaillard Ensemble D'Instruments À Vent Et Percussions + +1272323Maurice AllardFrench bassoonist and composer, born 1923 and died 2005.Needs VoteAllardM. AllardMarcel AllardMaurice AlladKammerorchester Des Saarländischen Rundfunks, SaarbrückenOrchestre National De L'Opéra De ParisI Solisti VenetiSociété Des Instruments À VentQuatuor À Vent De Paris + +1272356Buddy WeedHarold Eugene WeedAmerican jazz pianist and arranger. +Buddy worked with : "Jack Teagarden's Orchestra", Charlie Spivak and Teddy Powell and others. + +Born : January 06 (or) 09, 1918 in Ossining, New York. +Died : May 25, 1997 in Tempe, Arizona.Needs Votehttps://adp.library.ucsb.edu/names/210847B. WeedEudgene WeedEugene Harold WeedEugene WeedH. WeedHarold WeedT/4 Buddy WeedWeedSidney Bechet And His Blue Note Jazz MenJack Teagarden And His OrchestraPaul Whiteman And His OrchestraTeddy Powell And His OrchestraJim Timmens And His Jazz All-StarsThe Blue FiveThe Buddy Weed QuartetBuddy Weed SeptetUrbie Green And His All-StarsSal Franzella And His QuintetThe Buddy Weed TrioStewart - Williams & Co.Harry Lookofsky Septet + +1272492Jan MischlichCellist, born 1969 in Bensheim an der Bergstraße, Germany.Needs VoteJan MichlichSymphonie-Orchester Des Bayerischen RundfunksOrchester der Bayreuther Festspiele + +1272579Holly BlakeAmerican bassoonistCorrectThe Philadelphia OrchestraPhiladelphia Virtuosi Chamber Orchestra + +1272583Jonathan BlumenfeldClassical oboistNeeds VoteThe Philadelphia Orchestra + +1272920Mirosław PokrzywińskiClassical clarinetistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejKwintet Instrumentów Dętych „Da Camera” + +1273074André FournierDouble bass player.CorrectLes Musiciens Du Louvre + +1273075Frédérique ThouvenotBorn: 1964 + +Recorder player.CorrectLes Musiciens Du LouvreLa Turbulente + +1273077Michel MaldonadoClassical double bassist.Needs VoteMiquel MaldonadoOrchestre Des Champs ElyséesEnsemble Musique ObliqueLes Musiciens Du LouvreLe Sinfonietta De PicardieRicercar Academy + +1273078Aude VanackèreClassical cellist.CorrectAude VanackereLes Musiciens Du Louvre + +1273079Florence StroesserClassical violinist.Needs VoteLe Concert SpirituelLe Parlement De MusiqueLes Musiciens Du Louvre + +1273081Simon DarielClassical violinist.CorrectLes Musiciens Du Louvre + +1273083Cécile MilleClassical violinist.Needs VoteCecile MilleLes Talens LyriquesLe Concert D'AstréeLes Musiciens Du LouvreCafé Zimmermann + +1273084Yann MirielClassical oboist.Needs VoteYan MirielCollegium VocaleLa Petite BandeLes Talens LyriquesLe Concert D'AstréeLes Musiciens Du LouvreEnsemble Matheus + +1273085Jean-Louis FiatBassoonist.Needs VoteOrchestre Des Champs ElyséesThe Amsterdam Baroque OrchestraLes Musiciens Du LouvreLes Sacqueboutiers De ToulouseRicercar Academy + +1273086Mirella GiardelliMirella Giardelli is a french harpsichordist. She's the sister of [a1088135] and [a1362196].Needs VoteLa Grande Ecurié Et La Chambre Du RoyLes Musiciens Du LouvreLa TurbulenteL'Académie Royale De Musique De Paris + +1273087Sharman PlesnerAmerican classical violinist from Texas.Needs VoteSharman Plesner-MauxLes Musiciens Du LouvreEnsemble europeen William ByrdThe Arianna Ensemble + +1273088Dolores CostoyasLutenist and guitarist.Needs VoteDolores CostoyaДолорес КостойласHuelgas-EnsembleConcerto VocaleLes Musiciens Du LouvreMusica FioritaSchola Cantorum BasiliensisArcadia (6)Stylus PhantasticusCappella TeatinaAux Pieds du Roy + +1273089Geneviève BoisClassical violinist.CorrectGeneviève Staley-BoisGeneviève Stanley-BoisLes Musiciens Du Louvre + +1273090Annie GarciaClassical violinist.CorrectLes Musiciens Du Louvre + +1273091Pascal GessiClassical cellist.Needs Votehttp://pascalgessi.com/a-propos-de-pascal-gessi/Les Musiciens Du LouvreTrio Seraphin + +1273092Laurent LagresleClassical violinist.CorrectLes Musiciens Du Louvre + +1273093Renée HollevilleClassical violinist.CorrectLes Musiciens Du Louvre + +1273094Alexandra DelcroixClassical violinist.CorrectAlexandra Delcroix VulcanAlexandra Delcroix-VulcanLes Musiciens Du Louvre + +1273104Roberta InvernizziItalian classical soprano vocalist, born 1966 in Milan.Needs Votehttp://en.wikipedia.org/wiki/Roberta_InvernizziInvernizziConcerto ItalianoI Febi ArmoniciCoro Della Radio Televisione Della Svizzera ItalianaIl Complesso BaroccoCappella Della Pietà De' TurchiniLa Risonanza + +1273107Diego FasolisDiego Fasolis (born 19 April 1958) is a Swiss classical organist and conductorNeeds Votehttps://en.wikipedia.org/wiki/Diego_Fasolishttps://www.bach-cantatas.com/Bio/Fasolis-Diego.htmhttps://www.imdb.com/name/nm7703350/D. FasolisD.FasolisFasolisI BarocchistiEnsemble VanitasTrio Rippas + +1273144Walter YostJazz bassist.Needs VoteYostWalter IoossBenny Goodman And His OrchestraCharlie Parker With StringsMarian McPartland TrioSam Charters' Washboard Jazz Band + +1273162John MeheganAmerican jazz pianist (and critic). + +Born : June 06, 1916 in Hartford, Connecticut. +Died : April 03, 1984 in New Canaan, Connecticut. +Needs Votehttps://en.wikipedia.org/wiki/John_MeheganJ. MeheganJohnny MehaganJohnny MeheganJohnny MoheganMeheganMoheganLionel Hampton And His OrchestraLionel Hampton And His SeptetJohn Mehegan QuartetJohn Mehegan Trio + +1273869Marion DiVetaNeeds VoteMarion di VetaColeman Hawkins All Stars + +1273870Frank BodeUffe BaadhDanish Jazz drummer +b. August 7, 1923 Aarhus, Denmark - d. November 22, 1980 Brisbane, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Uffe_BaadhFrank BoddeFrank Bode (Uffe Baadh)Frank Bode (Uffe)Frank U. BodeFranke BodeUffe BaadhHarry James And His OrchestraClaude Thornhill And His OrchestraThe International All-Stars (2)Stan Hasselgard And His All Star SixArnold Ross QuartetRed Callender And His Modern Octet + +1273881Coleman Hawkins' 52nd Street All StarsNeeds Major ChangesColeman Hawkin's Fifty-Second Street All StarsColeman Hawkins & His 52nd Street All StarsColeman Hawkins & His OrchestraColeman Hawkins 52nd St. All StarsColeman Hawkins And His 52nd Street All StarsColeman Hawkins And His 52nd Street All-StarsColeman Hawkins Fifty Second All-StarsColeman Hawkins' 52nd St. All StarsColeman Hawkins' Fifty Second Street All StarsColeman Hawkins' Fifty-Second Street All-StarsColeman HawkinsShelly ManneCharlie ShaversAllen EagerAl McKibbonJimmy Jones (3)Pete Brown (2)Mary Osborne + +1273883Morey FieldNeeds VoteFieldM. FieldThe Benny Goodman QuintetPeanuts Hucko And His OrchestraSarah Vaughan And Her Orchestra + +1273958Josef Molnar[b]Josef Molnar[/b] (7 September 1929, Gänserndorf, Lower Austria — 21 November 2018, Tokyo, Japan) was an Austrian harpist and composer, former member of [a=Wiener Philharmoniker]. Molnar first visited Japan in 1952 at the invitation of the [a=NHK Symphony Orchestra]; three years later, he relocated permanently and worked as a lecturer and visiting professor at [l=Tokyo National University Of Fine Arts And Music]. In 1964, Joseph Molnar became a tenured professor at [i]Ueno Gakuen University[/i] (上野学園大学). He served as the president of the Nippon Harp Association (日本ハープ協会) for many years.Needs Votehttps://viaf.org/viaf/48033893/https://id.loc.gov/authorities/names/n79032629.htmlhttps://harpcolumn.com/blog/remembering-josef-molnar-1929-2018/https://ja.wikipedia.org/wiki/ヨセフ・モルナールJ. モルナールJoseph Molnarヨセフ・モルナールヨゼフ・モルナールWiener Philharmoniker + +1274039Margaret PhilpotEnglish classical Alto / Contralto vocalist.Needs VoteMPThe Consort Of MusickeGothic Voices (2)The Medieval Ensemble of London + +1274131Cook-GreenawaySongwriting partnership who also performed as David & Jonathan.Needs VoteA. Greenaway - R. CookA. Greenaway/B. CookA. Greenway - R. CookA. Greenway/B. CookC. GreenawayCock/GreenwayCookCook & GreenawayCook & GreenwayCook - GreenawayCook - GreenswayCook - GreenwayCook - Roger - GreenawayCook / GreenawayCook / GreenwayCook And GreenawayCook G.Cook GreenawayCook GreenwayCook R. - P. GreenawayCook Roger/Greenaway RogerCook et GreenawayCook et GreenwayCook y GreenawayCook, GreenawayCook, GreenwayCook, Roger Frederick & Greenaway, Roger John ReginaldCook-GreenakayCook-GreenwayCook-GrreenawayCook/ GreemawayCook/ GreenawayCook/GreeawayCook/GreenawayCook/GreenwayCook; GreenawayCook; GreenwayCookawayCooke - GreenawayCooke / GreenawayCooke / GreenwayCooke, GreenawayCooke-GreenawayCooke-GreenwayCooke/GreenawayCooke/GreenwayCooks/GreenawayCook—GreenawayCoolCreenaway, CookE. Cook/R. GreenawayF. Greenawat/R. CookGreen - Away KookGreen Away (CockGreen Away - CookeGreen Away-CookeGreen/CookGreenawat, CookGreenawayGreenaway & CookGreenaway - CockGreenaway - CookGreenaway - CookeGreenaway / CookGreenaway / CookeGreenaway / R. CookGreenaway ; CookGreenaway And CookGreenaway CookGreenaway Y CookGreenaway y CookeGreenaway • CookGreenaway, CookGreenaway, CookeGreenaway, Roger / Cook, RogerGreenaway- CookGreenaway-CookGreenaway-CookeGreenaway.CookGreenaway/ CookGreenaway/CockGreenaway/CookGreenaway/CookawayGreenaway/CookeGreenaway; CookGreenaway; CookeGreenaway;CookGreenaways/CookGreenaway–CookGreenawy; CookGreendway/CookGreeneway-CookGreensway/CockGreenwav-CookGreenwayGreenway & CookGreenway - CookGreenway / CookGreenway / CookeGreenway ; CookGreenway CockGreenway – CookGreenway, CookGreenway-CookGreenway-CookeGreenway/CookGreenway/CookeGreenway–CookGrenaway - CookIP. Cook/R. GreenawayJohn Roger Greenaway, Frederick Roger CookP. Cook/R. GreenawayR Cook - R GreenawayR Cook And R GreenawayR Cook, R GreenawayR Cooke/R GreenawayR Greenaway/CookR Greenaway/R CookeR Grenaway/R CookeR. Greenaway / R. CookR. Cock - R. GreenawayR. CoockR. CookR. Cook & GreenawayR. Cook & R. GreenawayR. Cook & R. GreenwayR. Cook - GreenavayR. Cook - GreenawayR. Cook - R. GreenawayR. Cook - R. GreenewayR. Cook - R. GreenwayR. Cook -R. GreenawayR. Cook / R. GreenawayR. Cook / R. GreenwayR. Cook And R. GreenawayR. Cook Et GreenawayR. Cook Y R. GreenawayR. Cook y R. GreenawayR. Cook, GreenawayR. Cook, R GreenawayR. Cook, R. GreenawayR. Cook, R. GreenwayR. Cook, R. GrenawayR. Cook- R. GreenawayR. Cook-GreenawayR. Cook-R. GreenawayR. Cook-R. GreenwayR. Cook-R.GreenawayR. Cook/ R. GreenawayR. Cook/R. GreenawayR. Cook/R. GreenwayR. CookawayR. Cooke, R. GreenawayR. Cooke-R. GreenawayR. Cooke-R. GreenwayR. Cooke/R. GreenawayR. Cooke/R. GreenwayR. Geenaway - R. CookR. Greeaway / R. CookR. Greenawat/R. CookR. GreenawayR. Greenaway & CookR. Greenaway & R. CookR. Greenaway - CookR. Greenaway - R. CookR. Greenaway - R. CookeR. Greenaway / CookR. Greenaway / R. CookR. Greenaway / R. CookeR. Greenaway R. CookR. Greenaway y R. CookR. Greenaway — R. CookR. Greenaway, R. CookR. Greenaway- R. CookR. Greenaway--R. CookR. Greenaway-CookR. Greenaway-R. CookR. Greenaway-R.CookR. Greenaway-Roger CookR. Greenaway/ R. CookR. Greenaway/R. CookR. Greenaway/R. CookeR. Greenaway/R.CookR. Greenaways-R. CookR. Greenway - R. CockR. Greenway - R. CookR. Greenway / R. CookR. Greenway, R. CookR. Greenway-R. CookR. Greenway/CookR. Greenway/R. CookR. Greenway/R. CookeR. Greenway/R.CookeR. Grenaway - R. CookR.Cook - GreenawayR.Cook / R. GreenawayR.Cook-GreenawayR.Cook-R. GreenawayR.Cook-R.GreenawayR.Cook-R.GreenewayR.Cook-R.GreenwayR.Cook/R. GreenawayR.Cook/R.GreenawayR.F. Cook / R.J.R. GreenawayR.F. Cook/R.J. GreeawayR.Greenaway - R.CookR.Greenaway / R.CookR.Greenaway / R.CookeR.Greenaway, R. CookR.Greenaway-R.CookR.Greenaway/R. CookR.Greenaway/R.CookR.Greenaway/R.CookeR.Greenaway/R/CookR.J.R. Greenaway/R.F. CookRobert Cook - Robert GreenawayRodger Cook/Rodger GreenawayRoger CookRoger Cook & Roger GreenawayRoger Cook & Roger GreenwayRoger Cook - A. GreenawayRoger Cook - Roger GreenawayRoger Cook - Roger GreenewayRoger Cook - Roger GreenwayRoger Cook / Roger GreenawayRoger Cook / Roger GreenawayRoger Cook And Roger GreeawayRoger Cook And Roger GreenawayRoger Cook Roger GreenawayRoger Cook Roger GreenwayRoger Cook and Roger GreenawayRoger Cook · Roger GreenawayRoger Cook, GreenawayRoger Cook, Roger GreenawayRoger Cook, Roger Greenaway CRoger Cook,Roger GreenwayRoger Cook- Roger GreenawayRoger Cook- Roger GreenwayRoger Cook-A. GreenawayRoger Cook-Roger GreenawayRoger Cook-Roger GreenwayRoger Cook/ Roger GreenawayRoger Cook/R. GreenawayRoger Cook/Roger GreenawayRoger CookawayRoger Cooke, Roger GreenawayRoger Cooke-Roger GreenawayRoger Cook–Roger GreenawayRoger F. Cook, Roger J.R. GreenawayRoger Frederick Cook / Roger John GreenwayRoger Frederick Cook, Roger John Reginald GreenwayRoger GreenawayRoger Greenaway & Roger CookRoger Greenaway - Roger CookRoger Greenaway - Roger CookeRoger Greenaway / Roger CookRoger Greenaway And Roger CookRoger Greenaway and Roger CookRoger Greenaway en Roger CookRoger Greenaway, RogerRoger Greenaway, Roger CookRoger Greenaway- Roger CookRoger Greenaway-Roger CookRoger Greenaway-Roger KookRoger Greenaway-Roger, CookRoger Greenaway/Roger CookRoger Greenaway/Roger CookeRoger Greenaway–Roger CookRoger Greenway - Roger CookRoger Greenway / Roger CookRoger Greenway, Roger CookRoger Greenway-Roger CookToger Cook y Roger GreenawayГринэвэй – КукКук И ГринвейDavid & JonathanRoger GreenawayRoger Cook + +1274188Vanessa JeanFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +1274191Doriane GableFrench violinist, born in November 1982.Needs VoteDorianne GableOrchestre National De L'Opéra De ParisQuatuor ParisiiThe Orchid Ensemble + +1274505Bruno TurnerBritish musicologist, choral conductor, broadcaster, publisher and businessman, born in London in 1931. +In 1977 he created Mapa Mundi, a company dedicated to publishing Medieval music, he also is the founding conductor of Pro Cantione Antiqua of London, and writes for the Early Music magazine. +Needs Votehttp://en.wikipedia.org/wiki/Bruno_TurnerTurnerPro Cantione Antiqua + +1274750Tim DowlingClassical wind instrumentalistNeeds VoteCollegium VocaleChamber Choir Of Sydney University Baroque Ensemble + +1274940J. Glover ComptonJohn Glover Compton.American jazz pianist and composer. + +Born : January 06, 1884 in Harrodsburg, Kentucky. +Died : June 11, 1964 in Chicago, Illinois. + +Glover worked with : Jelly Roll Morton, Florence Mills, Ada "Bricktop" Smith, Alberta Hunter, Jimmie Noone and others.Needs VoteClover ComptonGlover ComptonOllie Powers' Harmony Syncopators + +1274961John WeicherClassical violinist, born in Chicago on March 29, 1904, died July 25, 1969, he was concertmaster of the Chicago Symphony Orchestra.Needs VoteChicago Symphony OrchestraThe Weicher QuartetThe Weicher Quintet + +1275135Nisse SandströmNils Göran SandströmSwedish jazz saxophonist, born March 13, 1942 in Katrineholm, Sweden, died September 8, 2021 in the Skedevi district in Östergötland, Sweden. + +He is the father of [a667094].Needs Votehttps://sv.wikipedia.org/wiki/Nils_Sandstr%C3%B6m_(jazzmusiker)https://www.allmusic.com/artist/nisse-sandstrom-mn0001203511N SandströmN. SandströmNils SandströmNisse SandstromSandströmThe Swedish All StarsBirkaNisse Sandströms KvartettCommunication (4)Red Mitchell QuintetSummit MeetingJazz IncorporatedBengt Stark Med PolareThe Phontastic Dixieland BandSture Nordin SextetNisse Sandström QuintetNisse Sandström GroupBernt Rosengren Nisse Sandström Quintet + +1275745Lila BrownLila Brown is an American classical viola player professor of viola at the Boston Conservatory.Needs VoteEnsemble ModernBoston Symphony OrchestraConcentus Musicus WienCamerata Academica SalzburgMarlboro Festival OrchestraBaltimore Symphony OrchestraWiener Kammerorchester + +1275748Markus LinkePercussionistNeeds VoteDeutsche Kammerphilharmonie BremenKalamazoo (2) + +1275749Stefan RappGerman percussionist, born in 1968 in Böblingen.Needs Votehttp://www.schlag-art.de/pages/konzerte.phpEnsemble ModernDeutsche Kammerphilharmonie BremenBundesjugendorchester + +1275750Klemens KerkhoffClassical trumpeter.Needs VoteClemens KerkhoffEnsemble ModernHR - Brass + +1276463Bettina IhrigClassical viola player.Needs VoteBettina JhrigLautten CompagneyCapella Agostino SteffaniCantus CöllnHannoversche HofkapelleHamburger RatsmusikNeue Düsseldorfer HofmusikLa Festa MusicaleLa RicordanzaGrundmann-Quartett + +1276589Marie Emeline CharpentierFrench violist, born in 1978.CorrectOrchestre Philharmonique De Radio France + +1276590Juan Fermin CiriacoSpanish violinist, born in 1974.Needs VoteFermin CiriacoOrchestre Philharmonique De Radio France + +1277324Sammy TaylorJazz drummer in Ben Pollack And His OrchestraNeeds VoteBen Pollack And His Orchestra + +1277431Raimo SarkioRaimo SarkioFinnish guitar player. Born in Varkaus, Finland and died on October 22, 1987 at the age of 58.Needs VoteR. SarkioRaimoRaimo SarkiaBackmanin OrkesteriThe ChlorophylliesJani Uhleniuksen Uusrahvaanomainen OrkesteriThe Spike Dope FiveJanatuisen JatsiyhtyeJaakko Salon KvintettiKari Rydman YhtyeineenSyntikaatin Kuoro Ja OrkesteriKauko Partion OrkesteriSäälimättömätAron AnimaalitThe ModangosJaakko Salon TV-yhtyeOld House Stompers + +1278267Guido MoriniItalian classical composer, pianist, organist, harpsichordist, and musicologist. +Born 1959 in Milan. Co-founder of ensemble [a=Accordone]Needs Votehttp://en.wikipedia.org/wiki/Guido_MoriniG. MoriniCappella Musicale Di S. Petronio Di BolognaEnsemble ElymaHespèrion XXAccordoneEnsemble VanitasEnsemble AuroraRolf Lislevand EnsembleOrchestra Barocca della Civica Scuola di Musica di MilanoHelianthus EnsembleEnsemble Ars Italica + +1278269Brian FeehanClassical Lute & Theorbo playerNeeds VoteBrian "Firefingers" FeehanБ. ФиханLes Arts FlorissantsCollegium VocaleLe Concert D'AstréeCapriccio StravaganteCamerata KilkennyFons Musicae + +1278364Siegfried BorriesSiegfried Paul Otto BorriesGerman violinist and Professor of Violin, born 10 March 1912 in Münster, Germany and died 12 August 1980 in Berlin, Germany.CorrectProf. Siegfried BorriesProfessor Siegfried BorriesS. BorriesSiegfried BorriusSiegfried BörriesBerliner PhilharmonikerStaatskapelle Berlin + +1278365Oskar RothensteinerOskar Rothensteiner (1, July 1901 in Vienna - 21 November 1962) was an Austrian bassoonist, pianist and composer. He died together with [a1586974] in a car accident in Agen, France. Needs VoteO. RothensteinerBerliner PhilharmonikerWiener SymphonikerPhilharmonisches Oktett Berlin + +1278366Hans BastiaanJohannes BastiaanGerman classical violinist, born in 1911 in Nuremberg, died 2012 in Berlin. +1934 to 1976 Member and partly concertmaster of the [a=Berliner Philharmoniker] +1945 to 1970 Primarius of the [a=Bastiaan-Quartett]Needs VoteBerliner PhilharmonikerBastiaan-Quartett + +1278900Heikki Saari (2)Needs Major ChangesH. SaariH.SaariSaariSaari Heikki + +1278901Yrjö SaarnioYrjö Armas SaarnioBorn on November 22nd, 1906 in Turku, Finland. Died on May 11th, 1985 in Helsinki, Finland. A Finnish composer, arranger, conductor, musician, lyricist and music teacher. His main instrument was violin. + +Yrjö Saarnio used also the alias Polkka-Saarnio. +Needs VoteSaarnioY. SaarnioY.SaarnioYrjö Saarnio YhtyeineenYrjö Saarnion OrkesteriYrjö Saarnion PolkkayhtyeYrjö Saarnio EnsembleYrjö Saarnion Yhtye + +1278902Kaarlo NuorvalaKaarlo Ilmari Nuorvala, born NyleniusBorn on June 28th, 1910 in Viborg, Finland (nowadays Russia). Died on June 24th, 1967 in Helsinki, Finland. A Finnish author who wrote mostly books and scripts.Needs VoteK. NoorumaK. NuorvalaKaarlo Ilmari NuorvalaNuorvalaNuorvala Kaarlo + +1278905Jussi PirstosNeeds Major ChangesJussi PirstasUrho Lehtonen + +1278906Erkki KaruErkki Karu (born Erland Fredrik Kumlander)Born on April 10th, 1887 in Helsinki, Finland. Died on December 8th, 1935 in Helsinki, Finland. A Finnish film director, script author and film producer.Needs VoteE. KaruE.Karu + +1278910Kari WilkmanAnna Elina Lullan HeloNeeds VoteK,W. WilkmanK. WilkmanK.W. Wilkman + +1279345Joseph AlessiWorld-renowned, primarily classical, trombonist, born September 20, 1959 in Detroit, Michigan. He is the current Principal Trombone of the New York Philharmonic Orchestra, which he joined in Spring 1985. He is also an active soloist, teacher/clinician and recording artist and professor at The Juilliard School in New York.Needs Votehttps://en.wikipedia.org/wiki/Joseph_AlessiAlessiJoeJoe AlessiJoseph Alessi IIIThe Philadelphia OrchestraNew York PhilharmonicSummit BrassWorld Trombone QuartetThe Principal BrassThe New York Trombone QuartetSlide MonstersAries Trombone Quartet + +1279474Dino VerdeEdoardo VerdeItalian writer, lyricist, screenwriter (Naples, July 13, 1922 – Rome, February 1, 2004).Needs Votehttps://www.imdb.com/name/nm0893764/?ref_=ttfc_fc_wr6https://it.wikipedia.org/wiki/Dino_VerdeD. VedraD. VerdID. VerdeD. VerdiD.VerdeDino VerdiE. VerdeE.VerdeEd. VerdeEdoardo VerdeEduardo VerdeL. VerdeLuca VerdeO.VerdeVerdeVerde EdoardoVerde,DVerdiverdeВердеI Robby's + +1279750Malcolm AllisonBritish violin and viola player.Needs VoteEnglish Chamber OrchestraLongbow + +1279989Dick McPartlandRichard George McPartlandAmerican jazz guitarist and banjoist. He started out on violin and was the older brother of jazz cornetist [a=Jimmy McPartland]. +Worked with [a=Red McKenzie], [a=Irving Mills], [a=Jack Teagarden], [a=Jimmy McPartland] and others. +Born: May 18, 1905 in Chicago, Illinois +Died: November 30, 1957 in Elmhurst, Illinois.Needs VoteD. McPartlandMcPartlandJack Teagarden's ChicagoansJack Teagarden And His OrchestraJimmy McPartland And His Orchestra + +1280508Federico CicoriaItalian classical oboistNeeds VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +1280509Anthony FlintClassical violinist and orchestra violin section leader. +Born in England, he moved to Canada at an early age. +Needs Votehttp://icmcfestival.com/?page_id=518Orchestra Della Radio Televisione Della Svizzera ItalianaMinas Gerais Philharmonic OrchestraQuintessence (23) + +1280574Luico HopperAmerican acoustic and electric bassist, born 4 September 1952 in Bassett, Virginia, USA +Needs Votehttp://en.wikipedia.org/wiki/Luico_HopperLucio HopperLuicio HopperLuico HollerGil Evans And His Orchestra + +1281325Bud ShiffmanNeeds Votehttp://www.vjm.biz/new_page_16.htmBud SchiffmanBudd SchiffmanBuddy ShiffmanBenny Goodman And His Orchestra + +1281326Emmett CarlsAmerican jazz tenor saxophonist and bandleader. +Born April 1, 1917. Died November 1980, +Married to singer [a483263] 1946-1980, his death).Needs Votehttps://de.wikipedia.org/wiki/Emmett_Carlshttps://de.zxc.wiki/wiki/Emmett_Carlshttps://www.allmusic.com/artist/emmett-carls-mn0001882371/creditsE. CarlsEmmet CarlEmmet CarlsEmmett CarlStan Kenton And His OrchestraBenny Goodman And His OrchestraEmmett Carls SextetEmmett Carls And Orchestra + +1281327Mitch Goldberg1940s-50s Jazz Alto Saxophone player Needs VoteBenny Goodman And His Orchestra + +1281328Charlie CastaldoJazz trombonistNeeds VoteBenny Goodman And His Orchestra + +1281329Howard ReichJazz trumpeter, primarily for [a254768].Needs VoteHowie ReichBenny Goodman And His Orchestra + +1281330Sol KaneAlto saxophonistNeeds VoteVan Alexander And His OrchestraBenny Goodman And His OrchestraVan Alexander And His Swingtime Band + +1281331Mickey McMickleAmerican jazz trumpeter.Needs VoteMick McMickleMickey MickleMike McMickleR.D. McMickleDale McMickleGlenn Miller And His OrchestraBenny Goodman And His Orchestra + +1281332Larry MolinelliLawrence J. MolinelliAs a professional musician, Larry mastered the playing of the saxophone, flute and clarinet. His success with groups such as [a374400] and [a2189025] during the height of popularity of the big band jazz era was a testament to his vast musical talents. He passed away in June 2008.Needs VoteLawrence MolinelliTeddy Powell And His OrchestraBenny Goodman And His OrchestraRay McKinley And His Orchestra + +1281333Howard Davies (2)Howard E. DaviesAmerican jazz drummer, born September 24, 1913 in Pennsylvania, died June 5, 1998 in Wilkinsburg, Pennyslvania.Needs Votehttp://old.post-gazette.com/regionstate/199806010bdavies9.asphttps://www.wikitree.com/wiki/Davies-5559Howard "Hud" DaviesHoward 'Hud' DaviesHoward DavisHoward Hud DaviesBenny Goodman And His Orchestra + +1281334Dick LefaveTrombone playerNeeds VoteDick LaFaveDick Le FaveDick LeFaveEarl 'Dick' Le FaveEarl (Dick) Le FaveLe FaveBenny Goodman And His OrchestraSam Donahue And His OrchestraSam Donahue Navy Band + +1281335Art RalstonUS jazz saxophonist from the swing-era. + +Needs VoteArt RalstanArt RalstoneArthur RalstonCasa Loma OrchestraBenny Goodman And His OrchestraGlen Gray & The Casa Loma Orchestra + +1281336Al Davis (2)American jazz trumpeterNeeds Vote"Slim" DavisA. DavisAlbert "Slim" DavisSlim DavisSlim (39)Benny Goodman And His Orchestra + +1281337Angelo Cicalese1940s-50s Jazz Alto Saxophone player Needs VoteAndy CicaleseBenny Goodman And His Orchestra + +1281339Cliff Hill (2)Jazz bassist. Used as a stage name for [a954665].Needs VoteCliff HillsCliff HilsHenry ManciniBenny Goodman And His Orchestra + +1281340Jules RubinBig band era saxophonist.Needs VoteJulie RubinLouis Armstrong And His OrchestraArt Shaw And His New Music + +1281341Sonny IgoeOwen Joseph IgoeAmerican jazz drummer, band leader and teacher, born October 8, 1923 in Jersey City, New Jersey, died March 28, 2012 in Emerson, New Jersey. +Igoe played with Tommy Reed (1946-1947), Les Elgart (1947), Ina Ray Hutton (1948), Benny Goodman (1948-1949), Charlie Ventura (1953-1955) , Woody Herman, Buddy Stewart, Tony Bennett and many others.Needs Votehttps://adp.library.ucsb.edu/names/322385IgoeSonny IggoeWoody Herman And His OrchestraBenny Goodman SeptetWoody Herman And His WoodchoppersThe Woody Herman Big BandWoody Herman And His Third HerdCharles Ventura QuartetThe Lew Anderson Big BandBig Swing Jazz BandDoctor Billy Dodd And His Swing All Stars + +1281342George Monte1940s-50s Jazz Trombone player.CorrectBenny Goodman And His OrchestraLarry Sonn Orchestra + +1281371Peter RofePeter RoféClassical double bassist.Needs VotePeter M. RofePeter RoféLos Angeles Philharmonic Orchestra + +1281786Josef von ManowardaAustrian operatic bass-baritone, born 3 July 1890 in Krakau, Austria-Hungary (today Kraków, Poland) and died 24 December 1942 in Berlin, Germany.Needs Votehttp://de.wikipedia.org/wiki/Josef_von_Manowardahttp://www.encyclopedia.com/doc/1O76-ManowardaJosefvon.htmlJosef ManowardaJosef V. ManowardaManowarda + +1281810Hélène ZulkeClassical violinistNeeds Votehttps://www.facebook.com/helene.zulkeH. ZulkeZulkeOrchestre National De France + +1281812Jean-Michel LenertFrench violist.Needs Votehttps://www.facebook.com/Jean-Michel-Lenert-Officiel-151555124913958/https://instagram.com/jmlenertJean Michel LenertJean-Michel LénertOrchestre National De L'Opéra De Paris + +1282553Steven DevolderClassical trumpeterNeeds VoteCollegium Instrumentale BrugenseOrchestre Du Théâtre Royal De La Monnaie + +1282555Manu MellaertsClassical trumpet player.Needs VoteCollegium Instrumentale BrugenseOrchestre Du Théâtre Royal De La MonnaieMelologos EnsembleKOPERKWINTET LIMBRA + +1282565Kaat De CockClassical Viola playerNeeds VoteKaat DecockCollegium VocaleIl FondamentoCollegium Instrumentale BrugenseIl GardellinoGli Angeli GenèveBachPlusMillenium OrchestraArco Baleno Ensemble + +1283141Jimmy SimmsAmerican trombonist in the swing eraNeeds VoteJimmy SimsJohnny SimsSimonsStan Kenton And His OrchestraJack Teagarden And His Orchestra + +1283142Al AnthonyAlfred Anthony.American jazz saxophonist, clarinetist and flutist player. + +Born : April 21, 1917 in East Bridgewater, Massachusetts. +Died : April 28, 2006 in Whitman, Massachusetts.. +Needs VoteAnthonyStan Kenton And His OrchestraTommy Reynolds And His Orchestra + +1283143Russ BurgherAmerican jazz trumpeterNeeds VoteRoss BurgherRuss BugherStan Kenton And His Orchestra + +1283145Gail MeredithNeeds Major ChangesMeredith + +1283148Ray KleinTrombonist.Needs VoteRaymond KleinRaymond V. KleinRaymond W. KleinLes Brown And His Band Of RenownStan Kenton And His OrchestraLes Brown And His OrchestraSi Zentner & His Dance BandCarl Lorch And His Orchestra + +1283149Bob LymperisAmerican jazz trumpeter.Needs VoteStan Kenton And His Orchestra + +1283386Eddie BealAmerican jazz pianist and bandleader. +Played with: [a=Jimmy Mundy], [a=Herb Jeffries], [a=Red Callender], [a=Tommy Dorsey], [a=Buck Clayton] and others; accompanied on piano singers [a=Billie Holiday], [a=Helen Humes], [a=Maxine Sullivan], among others. +His brother was jazz pianist [a=Charlie Beal] (1908-1991). + +Born: June 13, 1910 in Redlands, California. +Died: December 15, 1984 in Los Angeles, California. +Needs Votehttps://en.wikipedia.org/wiki/Eddie_BealBealBealeE. BealE. BealeEddie BealeEdward BealEdward T. BealEdward Truman BealThe Eddie Beal SingersEddie Beal And His FourtetteBuddy Banks SextetRed Callender SextetEddie Beal ComboEddie Beal TrioRed Callender And His Modern OctetCrystalette All StarsEddie Beal And His SextetEddie Beal And His OrchestraManny Klein's Dixieland Band + +1283393Arthur WalkerCredited as trumpeter and vocalist.Needs VoteArt WalkerEarl Hines And His Orchestra + +1283449Pierre DefayeViolinistNeeds VoteDefay PierreP. DefayP. DefayePierre De FayePierre DeFayPierre DefayPierre FayPiérrePiérre Defaye + +1283476Swankie DJ & KashiJames Swankie & Justin KashiUK hardstyle duo, owners of S&K RecordingsCorrecthttp://www.myspace.com/swankiedjhttp://www.myspace.com/djkashihttp://www.bebo.com/Swankie-DJ-Music S&KSwankie & KashiSwankie DJ And KashieSwankieDJ & KashiSwankie DJKashi + +1283842Claude NaveauFrench viola playerNeeds VoteNaveauLa Grande Ecurie Et La Chambre Du RoyOrchestre De Chambre Paul KuentzQuatuor Via Nova + +1283928Felix De NobelFelix de NobelDutch pianist and conductor. +Born: 27 May 1907 in Haarlem, The Netherlands. +Died: 25 March 1981 in Amsterdam, The Netherlands. + +He studied at the Conservatorium van Amsterdam with [a=Hendrik Andriessen], and founded the [a=Nederlands Kamerkoor] in 1937. +Correcthttp://nl.wikipedia.org/wiki/Felix_de_NobelDe NobelF. de NobelFelix De NobleFelix NobelFelix de NobelFélix de NobelNobelフェリックス・デ・ノーベルNederlands Kamerkoor + +1283941Harold WrightClarinettist (December 4, 1926–August 11, 1993). +Principal clarinetist of the Boston Symphony Orchestra from 1970 to 1993.Needs VoteH. WrightHarod WrightBoston Symphony OrchestraMarlboro Festival OrchestraBoston Symphony Chamber Players + +1284573Stuttgarter Hymnus-ChorknabenGerman boys' choir founded in 1900 by Paul Lechler and is based in Stuttgart.Correcthttp://www.hymnus-chor.de/https://www.facebook.com/hymnuschor/Boy Members Of The Stuttgart Hymn ChoirChœur Des Garçons "Hymnus" De StuttgartCoro De Niños De StuttgarCoro De Niños De StuttgartCoro Dos Meninos Cantores "Hymnus" De StuttgartCoro Infantil De HimnosDie Stuttgarter Hymnus-ChorknabenEin Kurrende-Chor Der Stuttgarter Hymnus-ChorknabenHymnischor StuttgartHymnus Boys' Choir StuttgartHymnus Choirboys, StuttgartHymnus Chorknaben StuttgartHymnus-Chor De StuttgartHymnus-ChorknabenHymnus-Chorknaben StuttgartHymnuschor StuttgartHymnuschor, StuttgartKurrende-Chor Der Stuttgarter Hymnus-ChorknabenMitglieder Der Stuttgarter Hymnus-ChorknabenSoloists With The Stuttgart Hymnus Boys ChoirStuttgart Boys ChoirStuttgart Hymnus Boy's ChoirStuttgart Hymnus Boys ChoirStuttgart Hymnus Boys' ChoirStuttgart Hymnus ChoirStuttgart Hymnus ChorusStuttgart Hymnus KnabenchorStuttgart Hymnus-Boys' ChoirStuttgart HymnuschorknabenStuttgarter Hymnus Boy's ChoirStuttgarter Hymnus ChorknabenStuttgarter Hymnus-ChorStuttgarter HymnuschorknabenStuttgartski Dječački Zbor HymnusStuttgartski Hymnus Dječački ZborThe Stuttgart Hymnus Boys' ChoirŠtutgartes Zēnu Koris «Hymnus Chorknaben»Gerhard WilhelmRainer SchottstädtThomas SchulzeAndreas Sebastian WeiserRainer Johannes HomburgEckhard WeyandMoritz HellerJan-Philipp NoirhommeDelix DemelFelix HaberlandJakob WürfelLevin AltinisikBalduin LauxmannMaximilian WolfJulian MalikFelix WeiserSebastian Sturm (2) + +1284867Walter "Fats" PichonPianist and singer, versatile musician and arranger, born April 3, 1906 in New Orleans, La., died of heart disease February 26, 1967 in Chicago, Ill. +Pichon moved to New York c. 1922, but returned to New Orleans c. 1926. Returning to New York late in 1928, he recorded under his own name and with King Oliver, Luis Russell, Fess Williams, and Fats Waller (1929-1930). He worked as an arranger for Chick Webb in the early 1930s, led a band touring with Mamie Smith 1932-1934 and playing on riverboats. Later cocktail pianist in New Orleans. He moved to Chicago in c. 1962.Needs Votehttps://en.wikipedia.org/wiki/Fats_Pichonhttps://adp.library.ucsb.edu/names/110822"Fats" PichonFat PinchonFats PichonPichonW. PichonWalter (Fats) PichonWalter Fats PinchonWalter PichonQ.R.S. Boys + +1285052David PerlmanAmerican double bassist.CorrectThe Cleveland Orchestra + +1285364Nora KochGerman harpist.CorrectDresdner Philharmonie + +1285369Frédéric CoubesCountertenor.CorrectLes Arts Florissants + +1285370Edouard DenoyelleCountertenor.CorrectLes Arts Florissants + +1285372Cécile Le BihanFrench classical soprano.Needs VoteLes Arts FlorissantsEnsemble Jacques Moderne + +1285373Bertrand DuboisFrench classical tenor vocalist born 1957 in Paris Needs VoteLe Concert SpirituelLes Arts Florissants + +1285374Benoît ThivelCountertenor.CorrectLes Arts Florissants + +1286158Fritz RuckerGerman flute player.Needs VoteStaatskapelle DresdenBläserquintett Der Staatskapelle Dresden + +1286356Caroline De CorbiacFrench Soprano vocalist and Chorus-MasterNeeds VoteLes Arts Florissants + +1286357Marie-Louise MarmingClassical violist and violinist.Needs VoteMarie Louise MarmingLes Arts FlorissantsLa Simphonie Du MaraisConcerto Copenhagen + +1286358Paul HaddadBass vocalist.CorrectLes Arts Florissants + +1286359Frédéric Martin (2)Classical violinist.Needs VoteFrederic MartinCappella Musicale Di S. Petronio Di BolognaLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleLa Simphonie Du MaraisDoulce MémoireCompagnie Maître GuillaumeEnsemble Variations + +1286360Ariette KasbergenViol player.CorrectLes Arts Florissants + +1286361Michel MurgierClassical string player.Needs VoteLes Arts FlorissantsLe Concert Des nationsLes Talens LyriquesCapriccio Stravagante + +1286362Sylvie ColasSoprano.CorrectLes Arts Florissants + +1286363Christopher De VilliersClassical violinist.Needs VoteChris De VilliersLes Arts FlorissantsLes Musiciens Du LouvreEnsemble Lacme + +1286364Joël ClémentTenor.Needs VoteLes Arts FlorissantsEnsemble Weltgesang + +1286365Béatrice MalleretSoprano.CorrectBeatrice MalleretLes Arts FlorissantsChoeur National De L'Opéra De Paris + +1286366Alain BrumeauClassical tenor vocalistCorrectLes Arts FlorissantsEnsemble Venance Fortunat + +1286368Christophe Le PaludierTenor.CorrectLes Arts Florissants + +1286369Jean-Claude SarragosseBass vocalist.Needs VoteSarragosseLes Arts FlorissantsLudus ModalisEnsemble Jacques ModerneLa FeniceEnsemble Suonare E Cantare + +1286370Paul WillenbrockEnglish classical bass vocalist and linguistic coachNeeds VoteLe Concert SpirituelLes Arts FlorissantsLa Chapelle RoyaleMetamorphosesEnsemble europeen William ByrdTre Bassi + +1286371Serge SaïttaClassical Traverso flautist.Needs VoteS. SaïttaSerge SaittaLes Arts FlorissantsLa Petite BandeLes Musiciens Du LouvreLa RéveuseOpera FuocoLes DominosLe Mercure Galant + +1286372Valérie MasciaClassical violinist.Needs VoteCappella Musicale Di S. Petronio Di BolognaLes Arts Florissants + +1286373Anne-Marie TauzinSoprano.Complete and CorrectLes Arts Florissants + +1286374Torbjörn KöhlMultiple string instrument playerNeeds VoteT.FilosofenConvivium Musicum GothenburgenseSpy (8)Les Arts FlorissantsBarokksolisteneConcerto Copenhagen + +1286382Jocelyn LightfootBritish classical hornist, and managing director. +In 2000, she became a member of the [a=National Youth Orchestra Of Great Britain]. She then formed the wind quintet [b]The Buxton Ensemble[/b]. She attendeded the [l527847] (09/2003-2007). In 2005, she joined the horn quartet [a=Horns Aloud]. In 2010, she went out to Norway to do a year-long contract as Solo Horn in the [a=Stavanger Symfoniorkester]. From then on, she went freelance. She has been Managing Director at [a=The London Chamber Orchestra] (since October 2021), Three World's Records/Three Worlds Group (since October 2019) and Guild of Hornplayers (since October 2021).Needs Votehttp://www.jocelynlightfoot.co.uk/https://www.facebook.com/jocelyn.lightfoothttps://twitter.com/jossylightfoothttps://www.linkedin.com/in/jocelynlightfoot/?originalSubdomain=ukhttps://classicalpost.com/read/2021/12/24/how-london-chamber-orchestra-is-committed-to-diversity-equality-and-inclusivityhttp://www.hornsaloud.com/page5/page5.htmlJossy LightfootLondon Symphony OrchestraThe Heritage OrchestraNational Youth Orchestra Of Great BritainRoyal Liverpool Philharmonic OrchestraStavanger SymfoniorkesterEuropean Brandenburg EnsembleHorns Aloud + +1286570Jane MetcalfeClassical viola & violin instrumentalistNeeds VoteThe Academy Of Ancient MusicThe King's Consort + +1286571Frances EustaceEnglish classical woodwind & viol instrumentalistNeeds Votehttp://franceseustace.com/biography.htmlThe Academy Of Ancient MusicGabrieli PlayersSonnerieThe King's ConsortLa Stravaganza KölnThe Symphony Of Harmony And InventionLondon Oboe BandThe Music PartyClassical WindsEx Cathedra Baroque OrchestraThe English Concert + +1286572Jane DebenhamClassical violinist.Needs VoteThe Academy Of Ancient MusicThe King's Consort + +1286573Matthew DixonClassical oboist from the UK.Needs VoteThe SixteenThe King's ConsortLondon Oboe BandThe English Concert + +1286574Simon Jones (10)Classical violinist.Needs Votehttps://www.linkedin.com/in/simon-jones-17006746/https://twitter.com/earlymusoThe SixteenThe Academy Of Ancient MusicThe King's ConsortBrandenburg ConsortDunedin ConsortArcangeloThe English ConcertSt John's Sinfonia + +1286575Jane ComptonClassical violinist and violist.Needs VoteGabrieli ConsortThe Parley Of InstrumentsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90The King's Consort + +1286646John Bowen (2)Tenor vocalist.Needs Votehttps://www.linkedin.com/in/john-bowen-8790b52b/J. BowenThe Scholars Baroque EnsembleThe Cambridge SingersLondon VoicesThe Monteverdi ChoirConcerto Vocale + +1286663Frank ReineckeFrank Reinecke (born 1960 in Hamburg, Germany) is a German double bassist. He was a member of the [a604396] from 1984 to 2024.Needs Votehttp://www.duoslaattoreinecke.com/Franck ReineckeSymphonie-Orchester Des Bayerischen Rundfunks + +1287392Julius MosenGerman poet and author, born 8 July 1803 in Marieney, Germany, died 10 October 1867 in Oldenburg, Germany.Needs Votehttps://en.wikipedia.org/wiki/Julius_Mosenhttps://adp.library.ucsb.edu/names/107483J. MosenJul. MosenJulius MoserJuliusz MosenMogenMosenMoserЮ. МозенЮ. Мюзен + +1287444Manfred ScherzerGerman violinist, composer and conductor (* 02 June 1933 in Dresden, German Empire; † 01 December 2013 in Berlin, Germany).Needs Votehttps://de.wikipedia.org/wiki/Manfred_Scherzerhttp://bmlo.de/s3352Staatskapelle DresdenKammerorchester BerlinBeethoven-Trio + +1287499Owen SwinerdOwen SwinerdNeeds VoteO SwinerdOwen SwinnerdSwinerdSuperfast OzSuperfunk OzOD404Satellite KidzD&GBig Tool 4 UHyperloop + +1287625Fritz HenkerGerman bassoonist, born 5 May 1914 in Dresden, Germany and died 8 August 1995 in Bayreuth, Germany.Needs VoteF. HenkerMünchener Bach-OrchesterOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgOrchester Der Städtischen Oper BerlinFrankfurt Chamber Orchestra + +1287912Rodrigo Del PozoChilean classical tenor vocalist. +Born 1961. +Needs VoteGabrieli ConsortThe Harp ConsortSeicentoL'Harmonie des Saisons + +1288164Frédéric LaroqueFrench violinist.Needs VoteF. Laroqueフレデリック・ラロクOrchestre National De L'Opéra De ParisSimple Symphony + +1288199Monette MooreAmerican jazz and blues singer. +Worked with : Charlie Johnson, Tommy Ladnier, Jimmy O'Bryant, Jimmy Blythe, Bob Fuller, Rex Stewart, Bubber Miley, Elmer Snowden and others. + +Born : May 19, 1902 in Gainesville, Texas.. +Died : October 21, 1962 in Garden Grove, California. +Needs Votehttps://adp.library.ucsb.edu/names/104924Monette Moore And The EbonairesMooreSusie Smith (2)Charlie Johnson & His OrchestraMonette Moore And Her Swing Shop BoysMonette Moore And Her Salesmen + +1288200Joe WatkinsAmerican jazz drummer. +Played with Kid Howard, Isaiah Morgan, Herb Morand, Punch Miller, George Lewis and others. + +Born: October 24, 1900 in New Orleans, Louisiana. +Died: September 13, 1969 in New Orleans, Louisiana. +Needs VoteJoe WatkinJoseph WatkinsJow WatkinsMitchell WatsonWatkinsД. УоткинсGeorge Lewis & His New Orleans MusicGeorge Lewis BandGeorge Lewis' Ragtime BandGeorge Lewis And His OrchestraGeorge Lewis And His New Orleans StompersGeorge Lewis And His New Orleans All StarsSayles' Silver Leaf Ragtimers + +1288455John Gibbons (6)US harpsichordist and conductor.Needs Votehttps://www.bach-cantatas.com/Bio/Gibbons-John.htmhttps://necmusic.edu/historical-performance/aboutJohn GibbonsOrpheus Chamber OrchestraBoston CamerataThe Boston Museum TrioOrchestra Of The 18th CenturyBoston Early Music Festival Orchestra + +1288456Rainer WoltersGerman violinistCorrectRundfunk-Sinfonieorchester Berlin + +1288665Mia Barcia-ColomboClassical cellistNeeds VoteMia Barcia ColomboMia Barcia ColumboMia Barcia-ColumboLos Angeles Philharmonic OrchestraWild Up + +1288674Donald ColeAmerican jazz trombonist and occasional trumpeter.Needs VoteDon ColeDon ColesDonald ColesBuddy Johnson And His OrchestraErskine Hawkins And His OrchestraLucky Millinder And His OrchestraHoward McGhee And His OrchestraJames Moody And His Orchestra + +1288676William Scott (3)US jazz trumpet player + +Do NOT confuse with tenor sax player [a=William J. Scott] of [a=Jay McShann And His Orchestra]Needs VoteBill ScottChiefie ScottChieftie ScottWilliam "Chiefie" ScottWilliam "Chieftie" ScottWilliam "Chiefy" ScottWilliam "Chiftie" ScottWilliam Chiefie" ScottWilliam ScottWilliams "Chieftie" ScottWilliams ScottWm. ScottAbdul SalaamJimmie Lunceford And His OrchestraLucky Millinder And His OrchestraSy Oliver And His Orchestra + +1288807Alexandre MoskowskyAlexandre Moskowsky (22 October 1901 - 1969) was a Hungarian classical violinist.Needs VoteAlexandre MoskovskyMoskowskiMoskowskyMoszkowskiMozkowskyThe Hungarian Quartet + +1288944Frank HumphriesAmerican jazz trumpeter, bandleader and multinstrumentalist player. +Nickname : "Fat Man". + +Born : April 08, 1913 in Gracy, Kentucky. +Needs Vote"Fat Man" HumphriesF. HumphriesFatman HumphriesFran HumpheriesFran HumphriesFrank "Fat Man HumphriesFrank "Fat Man" HumphriesFrank HumphreysLucky Millinder And His OrchestraFrank "Fat Man " Humphries & His Orch + +1289019Ruud WelleFrom 2007 to September 2014, Ruud worked as a manager at the [a=De Marinierskapel der Koninklijke Marine] (Marine Band of the Royal Netherlands Navy). Before 2007 he was appointed solo trombonist with the Marine Band. Ruud was also the presenter of the Marine Band's concerts for more than twenty years, both at home and abroad. He has also gained extensive experience as a conductor with various (semi-professional) orchestras. + +Ruud has played trombone with, among others: + +- [a=Concertgebouworkest ] (The Concertgebouw Orchestra) +- AVRO’s Skymasters +- [a=Radio Filharmonisch Orkest] (Radio Philharmonic Orchestra) +- [a=Metropole Orchestra] (Metropoleorkest)Needs Votehttps://dswo.nl/dirigent/Rudy WelleMetropole OrchestraConcertgebouworkestDe Marinierskapel der Koninklijke MarineRadio Filharmonisch OrkestDutch Symphonic Wind Orchestra + +1289157Christian HommelGerman oboist, born in 1963. He studied oboe with [a=Heinz Holliger] in Freiburg and piano under [a=James Avery (2)]. He was co-founder and conductor of the "[a=Ensemble Aventure]" for contemporary music, and is professor at the "Hochschule für Künste" in Bremen.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/christian-hommelhttps://pl.wikipedia.org/wiki/Christian_Hommelhttps://fi.wikipedia.org/wiki/Christian_Hommelhttps://www.naxos.com/person/Christian_Hommel/317.htmEnsemble ModernEnsemble AventureEnsemble Modern OrchestraKölner KammerorchesterBundesjugendorchester + +1289185Robert Hill (9)American harpsichordist, piano-forte player and musicologist, born November 6, 1953. + +He studied with Gustav Leonhardt. Needs Votehttps://en.wikipedia.org/wiki/Robert_Hill_(musician)Robert HillMusica Antiqua KölnFreiburger Barockorchester + +1289462Nat WoodardNathaniel WoodardUS jazz trumpeter. +Also spelled "Nat Woodyard" or "Nat Woodward" Needs VoteNat WoodwardNat WoodyardNate WoodardNate WoodwardNate WoodyardNathan WoodardNathan WoodwardNathaniel WoodardDuke Ellington And His OrchestraHoward McGhee And His OrchestraDuke Ellington All Star Road Band + +1289791Kris McLachlanKris McLachlanHard Dance producer based in Rotherham, UK.Correcthttp://www.facebook.com/group.php?gid=52158015114http://www.myspace.com/krismclachlanhttp://soundcloud.com/kris_mclachlanChris McLachlanK.McLachlanKris McClachlan + +1290054Joseph PonticelliClassical violinist.Needs VoteOrchestre National De FranceOrchestre De Paris + +1290141Genevieve SimonotGeneviève SimonotFrench violinist.CorrectGeneviève SimonotOrchestre National De L'Opéra De Paris + +1290640Anna PfisterViolist.CorrectCamerata BernKammerorchester BaselOrchester Der J.S. Bach Stiftung + +1290642Catrin DemengaSwiss classical violinist.Needs VoteCatrina DemengaCamerata Bern + +1290643Nicolas PacheClassical violistNeeds VoteNicholas PacheOrchestre National De FranceCamerata BernOrchestre De Chambre De LausanneQuatuor Sine Nomine + +1290644Patrick GenetClassical violinist.Needs VotePatrick GenêtCamerata BernQuatuor Sine Nomine + +1290646Karen TurpieClassical violinistNeeds VoteCamerata Bern + +1290647Emanuel AbbühlSwiss classical oboist, conductor, and Professor of Oboe. Born in 1959 in Bern, Switzerland. +He was Principal Oboe of the [a673856] from 1992, the [a1024263] from 1997, and, from 2006 to 2015, held the same position with the [a=London Symphony Orchestra]. He has been teaching at the [l932826] since 1988. Professor of Oboe at the [l527847] (since 2017) and [l305416].Needs Votehttps://www.facebook.com/emanuel.ambuhl/abouthttps://open.spotify.com/artist/1dU6mslpZuFgFeNVWugs8Dhttps://music.apple.com/us/artist/emanuel-abb%C3%BChl/295850856https://www.feenotes.com/database/artists/abbuhl-emanuel/https://swisschamberconcerts.ch/soloists/emanuel-abbuehl/http://www.shop.kge-doublereeds.com/Emanuel-Abbuhl-Comment-8.htmhttps://chambermusicbox.com/divi_overlay/emanuel-abbuhl/https://www.philharmonia.spb.ru/en/persons/biography/29479/https://www.naxos.com/person/Emanuel_Abbuehl/204263.htmhttps://de.wikipedia.org/wiki/Emanuel_Abb%C3%BChlhttp://www.muho-mannheim.de/personal/Bios/abbuehl_emanuel.htmEmanuel AbbüelEmmanuel AbbühlLondon Symphony OrchestraSinfonieorchester BaselRotterdams Philharmonisch OrkestSwiss Chamber SoloistsDas Orchester Des Collegium Musicum LuzernStrings Of ZürichBanda Classica + +1290648Andreas ErismannHarpsichordist and music teacher.Needs VoteAndreas ErismanCamerata Bern + +1290650Renée StraubViolist, born in San Francisco, California, USA, based in Switzerland.CorrectCamerata BernKammerorchester Basel + +1290764Peter SzütsHungarian classical violinistNeeds VotePeter SzűtsPéter SzúcsPéter SzütsPéter SzűcsPéter SzűtsSzűcs PéterOrchestre Philharmonique De Monte-CarloÉder QuartetWiener AkademieConcerto ArmonicoCristofori Trio + +1290766Christian GurtnerClassical flautist.Needs VoteConcentus Musicus WienWiener AkademieArs Antiqua Austria + +1290767Solistenensemble Der Wiener AkademieCorrectWiener Akademie + +1290899Hans RitterGerman producer for [l7703]. Also credited for photography.Needs VoteDr. Hans HirschDr. Hans RitterDr. RitterH. RitterRitterハンス・リッター + +1290900Rolf Peter SchröderRolf Peter SchröderSound engineer at [l=Deutsche Grammophon] and later technical director at [l2567569] and [l330026] Film, Germany.Needs VotePeter SchröderRolf P. SchröderRolf Peter SchroederRolf SchroederRolf SchröderRolf-Peter Schröderロルフ=P・シュレーダー + +1291465Torleif ThedéenBertil Torleif Gabriel ThedéenSwedish cellist and educator, living in Stockholm, born 17 November 1962. + +He is professor at the Det Kongelige Danske Musikkonservatorium in Copenhagen. He is also a professor at the Edsberg Academy of Music since 1996 and since 2004 Musica Vitae's artistic adviser.Needs Votehttp://www.bach-cantatas.com/Bio/Thedeen-Torleif.htmhttps://sv.wikipedia.org/wiki/Torleif_Thed%C3%A9enThedéenThorleif ThedéenSpectrum Concerts BerlinStockholm Arts TrioDeutsche Kammerphilharmonie BremenUnga Musiker + +1291528Sandy BlockSidney Sanford BlockAmerican jazz bassist, born 16 January 1917 in Cleveland, died October 1985. +Worked in the big bands of [a=Alvino Rey] 1940-1941, [a=Tommy Dorsey] 1943-1947, 1950, and [a=Jerry Wald] 1944. +Recorded with [a=Charlie Shavers] 1945, [a=Sy Oliver] 1951, 1958, [a=Louis Armstrong] 1951, 1953, 1957, [a=Ella Fitzgerald] 1951-1953, 1955, [a=Jimmy McPartland] 1955-1957, and [a=Joe Williams] 1965.Needs Votehttp://en.wikipedia.org/wiki/Sandy_Blockhttps://adp.library.ucsb.edu/names/112796S. BlockSBSanford BlockSanford Block (SB)Sid BlackSid BlochSid BlockSidney BlockTommy Dorsey And His OrchestraTommy Dorsey And His Clambake SevenSy Oliver And His OrchestraThe CommandersJimmy McPartland And His OrchestraThe Charlie Shavers QuintetSandy Block OrchestraPeter Appleyard OrchestraThe Brassmates + +1291821Horst EichlerHorst Eichler +Classical orchestra wind instrumentalist and trumpet pedagogue +Oct 22, 1920, Heidenau/Dresden - July 5, 2001, Westendorf/Bavaria + +Worked for Wilhelm Furtwängler, Bruno Walter, Herbert von Karajan Needs VoteBerliner Philharmoniker + +1291847Malcolm StewartBritish classical violinist and concertmaster. Born in Essex, England, UK. +After his studies, he became Leader of the [a=World Youth Symphony Orchestra] at 17. Former Sub-Principal Violin of the [a=London Symphony Orchestra] (1978-1979). Former concertmaster of the [a=Royal Liverpool Philharmonic Orchestra] (the youngest-ever leader of the orchestra at 24), he was appointed Leader Laureate after holding his post for 25 years. He became Leader upon his departure in 2003. Premier violon solo of the [a880293].Needs Votehttps://www.facebook.com/people/Malcolm-Stewart/521645593/https://open.spotify.com/artist/6k6SnpFvTV8PZnRFzHjOQFhttps://music.apple.com/br/artist/malcolm-stewart/184965219?l=enhttps://www.nhmfmusicians.org/malcolm-stewart-violin/https://www.thefreelibrary.com/Arts%3A+Malcolm+is+making+le+trek+to+Toulouse%3B+After+giving+the+best...-a0102648848London Symphony OrchestraOrchestre National Du Capitole De ToulouseRoyal Liverpool Philharmonic OrchestraWorld Youth Symphony OrchestraYoung Musicians Symphony Orchestra + +1292078Eugen D'AlbertEugène Francis Charles d’AlbertScottish-born German pianist and composer, born 10 April 1864 in Glasgow, Scotland, UK, died 3 March 1932 in Riga, Latvia.Needs Votehttps://en.wikipedia.org/wiki/Eugen_d%27Alberthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103570/Albert_Eugen_dhttps://www.britannica.com/biography/Eugen-dAlbertAlbertD'AlbertD'albertD. AlberE. D' AlbērsE. D'AlbertE. D’AlbertE. d' AlbertEugen d'AlbertEugene D'AlbertEugèn d'AlbertEugène D'AlbertEugène D’AlbertEugène d'AlbertProfessor Eugen D'Albertd' Albertd'AlbertД'АльберЭ. Д'АльберЭжен Д'альберЭжен ДальберЭжен Д’АльберЭжен д’Альбер + +1292321Martial MartinayFrench musician and founder of [l37138] label [[l167495] record company].Needs VoteM. MartinayMartial MartinetMartinay MartialElectric Sound Orchestra + +1292381William PreucilClassical violinist.Needs VoteWilliam Preucil, Jr.The Cleveland OrchestraThe Cleveland QuartetStradivari QuartetThe Lanier Trio + +1292433Mike ButeraAmerican jazz saxophonist from Sacramento, CA.CorrectMichael ButeraHarry James And His Orchestra + +1292481John SheppardEnglish composer and singer of the Renaissance period (c. 1515 – December 1558). + +Very little is known about Sheppard's life. He claimed to have been composing music (not just singing it) as early as 1534, indicating a birth year somewhere in the mid-1510s. Some of his Anglican music survives with indications of being written during the reign of King Edward, and he did compose a Mass in the tradition of John Taverner's Western Wynde. By 1557, the composer was well enough respected in the English court to present Queen Mary with a roll of songs on New Years' Day of that year.Needs Votehttps://en.wikipedia.org/wiki/John_Sheppard_(composer)J. SheppardJohn ShepherdShepherdSheppard + +1292673Hart Pease DanksHart Pease DanksAmerican songwriter, born April 6, 1834 in New Haven, Connecticut; died November 20, 1903 in Philadelphia, Pennsylvania.Needs Votehttp://songwritershalloffame.org/exhibits/C197https://adp.library.ucsb.edu/names/109989DankasDanksDanks Hard PeaseDanks Hart P.Danks Heard PeaceDanks P.Danks. PDanskDanxH DanksH P DanksH. DanksH. DanksasH. DenksH. P. DanksH. R. DanksH.P DanksH.P. BanksH.P. DanksH.P.BanksH.P.DanksH.R. DanksHart DankasHart DanksHart P. DankasHart P. DankisHart P. DanksHart P. Danks-FritzHart Peace DanksHart Piese DanksHeart/BanksP. DanksP. H. DanksP. TanksP.H. DanksХ. Денкс + +1293509Jules BarbierPaul Jules BarbierFrench poet, writer and opera librettist, born 8 March 1825 in Paris, France - died 16 January 1901. +He often worked with [a=Michel Carré (2)]. +Needs Votehttp://fr.wikipedia.org/wiki/Jules_Barbierhttps://adp.library.ucsb.edu/names/102697BarbierBarbier &BarbijeComposed ByGiulio BarbierJ. BarbierJ.BarbierJules Paul BarbierJules, BarbierMichel CarréP. BarbierPaul-Jules BarbierБарбьеЖ. БарбиеЖ. БарбьеЖюль БарбьеО. Барбье + +1293693David Hart (5)David Albert HartClassical flautist and recorder player born in Jackson, Michigan October 27, 1950 and passed away May 22, 1988 in Fort Worth, Texas at the age of 37 + +Mr. Hart studied at the New England Conservatory and at various times was in several prominent early music groups here and abroad. Among them were the New York Pro Musica Antiqua, Pomerium Musices, the Ensemble for Early Music, the Newberry Consort in Chicago and Sequentia in Cologne, West Germany. + +He also made guest appearances with the Boston Symphony Orchestra and appeared on the ''Today'' show during the Bach tercentenary in 1985. His recordings appeared on [l=Nonesuch], [l=Titanic (2)], [l=Harmonia Mundi], [l=Musical Heritage Society] and - in a special historical series sponsored by the Metropolitan Museum of Art - [l=Pleiades Records (3)].Needs VotePomeriumSequentia (2)New York Ensemble For Early MusicThe Newberry ConsortThe New York Pro Musica AntiquaCalliope (9) + +1293995Mathias Holm (2)Timpanist.Needs VoteMünchener Bach-Orchester + +1293996Fritz RufGerman violist. He's the father of [a5753459].Needs VoteFritz RueFriz RufBayerisches StaatsorchesterCollegium AureumStuttgarter SolistenEndres-Quartett + +1293997Fritz KiskaltProf. Fritz KiskaltGerman classical cellist.Needs Votehttps://benedek.de/prof-fritz-kiskalt/, CelloF. KiskaltKiskaltФриц КискальтFritz Sonnleitner QuartetMünchener Bach-OrchesterString Quartet Of The Munich Philharmonic Orchestra + +1293998Paul LachenmeierClassical trumpeter.Needs VoteLachenmeierPaul LachenmeirMünchener Bach-Orchester + +1293999Chandler GoettingAmerican trumpet player, born in Mescalero, New Mexico.Needs VoteGoettingSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-Orchester + +1294000Gernot WollGerman flutist.Needs VoteMünchener Bach-Orchester + +1294002Elmar SchloterGerman organist and conductor, born 6 March 1936 and died 23 May 2011.Needs Votehttp://de.wikipedia.org/wiki/Elmar_SchloterMünchener Bach-Orchester + +1294003Manfred ClementManfred Clement (27 September 1934 - 30 April 2001) was a oboist.Needs VoteClementManfred ClamentManfred ClémentМанфред КлементMünchener Bach-OrchesterBachcollegium StuttgartOrchestre Pro Arte De MunichDie Deutschen BläsersolistenMünchner Bläseroktett"In Dulci Jubilo" Ensemble + +1294004Manfred KletteClassical trumpeter.Needs VoteKletteMünchener Bach-Orchester + +1294005Elfriede SingheiserClassical organist.Needs VoteMünchener Bach-Orchester + +1294343Heiner HopfnerGerman operatic and concert tenor, born 28 June 1941 and died 31 August 2014.CorrectHeinrich HopfnerHeinz HopfnerHopfnerRegensburger Domspatzen + +1294349Audrey MichaelSwiss soprano, born 1949 in Geneva, Switzerland.Needs Votehttp://www.bach-cantatas.com/Bio/Michael-Audrey.htmA. MichaelA. MichaëlMichael + +1294492Valérie GrossA&R Director Vocal & Opera Productions at [l=Deutsche Grammophon] since May 2017.Needs VoteValerie GrossValerie GroßValérie Groß + +1295267Peter FaircloughUK drummer.Needs VoteFaircloughP. FaircloughPete FaircloughMike Westbrook OrchestraThe Chevalier BrothersBournemouth SinfoniettaPete Whyman TrioMike Westbrook BandThe Fairclough GroupKeith Tippett OctetSteve Plews EnsembleEngine Room Favourites + +1296304Rob BouwmeesterDutch oboist. Needs Votehttps://www.orkest.nl/muzikant/rob-bouwmeesterhttps://nl-nl.facebook.com/rob.bouwmeester.7Netherlands Chamber OrchestraNederlands Philharmonisch Orkest (2) + +1296305Daniel EsserDaniël EsserDutch cellist.CorrectDaniël EsserConcertgebouworkestEbony Band + +1296306Frans BlanketClassical violinist.Needs VoteF. BlanketConcertgebouw Chamber Orchestra + +1296309Tony RousClassical violinist.Needs VoteConcertgebouw Chamber Orchestra + +1296665Francisco FiorentinoArgentinian tango singer, bandoneonist, composer and orchestra leader, also appears as Fiorentino, recorded with Aníbal Troilo (Pichuco) +(Buenos Aires, 23 Sept.1905 - 11 Sept.1955) +Needs Votehttps://adp.library.ucsb.edu/names/111108F. FiorentinoFioreFiorentinoFiorentino Con Acompañamiento De OrquestaFiorentino Y Su Orquesta TípicaFlorentinoFrancisco FiorentiomoAníbal Troilo Y Su Orquesta TípicaFrancisco Fiorentino Y Su Orquesta Típica + +1296670Alfredo CalabróVicente Alfredo CalabróArgentinian tango bandoneonist, composer, orchestra director (Buenos Aires, 19 Nov. 1911 - 5 Jul. 1977) + +In 1927 becomes part of a juvenile orchestra with [a=Orlando Goñi], joins up with [a=Osvaldo Fresedo]'s orchestra by 1929. +Then he goes through a number of short tenures with the ensembles of : [a=Anselmo Aieta] - [i]Eugenio Nobile[/i] - [a=Alfredo Gobbi] Sextet (1933) - [a=Cayetano Puglisi] (1934) - [a=Ángel D'Agostino] - [a=Joaquín Mora] - [a=Osvaldo Pugliese] (1937) - [a=Elvino Vardaro] & [a=Lucio Demare] (1938) - [a=Juan Canaro] (1942) +In 1942 funds his own orchestra with singer [i]Hector De La Fuente[/i]. +In 1948 funds [a=Orquesta Típica Campos - Calabró] with singer [a=Enrique Campos] +Calabró continues directing his orchestra accompanied by singers [i]José Torres[/i] - [a=Jorge Ledesma] - [a=Alberto Aguirre] - [i]Oscar Corvalan[/i] until it's disbanding in the late 50s. Outside the Campos era, no recorded material from Calabró's ensemble is known. +Needs Votehttps://www.todotango.com/creadores/ficha/763/Alfredo-CalabroA. CalabróAl. CalabróOsvaldo Pugliese Y Su Orquesta TípicaOsvaldo Fresedo Y Su Orquesta TípicaJuan Canaro Y Su Orquesta TípicaÁngel D'Agostino Y Su Orquesta TípicaCayetano Puglisi Y Su Orquesta TípicaJoaquín Mora Y Sus Siete GauchosOrquesta Anselmo AietaLucio Demare Y Su Orquesta TípicaOrquesta Típica Campos - Calabró + +1297571Kurt KörnerClassical trumpeter and trombonist.Needs Votehttps://camerata.at/de/musikerinnen/kurt-koernerKlangforum WienCamerata Academica SalzburgCapella LeopoldinaPro Brass + +1297801Marien Van StaalenDutch cello player and conductor, born 1947.Needs VoteM. T. van StaalenM. Van StaalenM. v. StaalenM. van StaalenMarien van StaalenRotterdams Philharmonisch OrkestRobert Schumann TrioThe Netherlands Quartet + +1297852Marc Olivier De NattesFrench violinistNeeds VoteM-O. de NattesM.O.De NattesMarc De NattesMarc OlivierMarc Olivier DenatteMarc-Olivier De NattesMarc-Olivier DenatteMarc-Olivier de NattesMark De NattesOlivier De NattesOrchestre National De FranceLes Archets De ParisZ Quartett + +1297856Stéphane HenochFrench violinistNeeds VoteS. HenochStephane HenochStéphane HénochOrchestre National De FranceZ Quartett + +1298050Roger NewmanAmerican jazz saxophonist.Needs VoteRoger NeumannWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +1298861Daniele CarnovichBass VocalistNeeds VoteD. CarnovichDaniel CarnovichConcerto SoaveHesperion XXLa Capella Reial De CatalunyaCoro Del Centro Di Musica Antica Di PadovaConcerto ItalianoEnsemble ElymaSchola GregorianaCoro Della Radio Televisione Della Svizzera ItalianaEnsemble VanitasLa VenexianaLa ColombinaLa Compagnia Del MadrigaleMadrigalisti Del Centro Di Musica Antica Di Padova + +1299183Tristan GurneyClassical violinistCorrecthttps://scottishensemble.co.uk/musician/tristan-gurney/Edinburgh String QuartetScottish Ensemble + +1299189Rosie JenkinsBirtish classical oboe & cor anglais player, and Professor of Oboe. She grew up in Teesside, England, UK. +She studied at the [l527847] and for a postgraduate at the [l290263]. In 2006, she returned to the North East to join the [a=Northern Sinfonia] as Second Oboe and Cor Anglais. After four years she returned to London, then joining [a=The English National Opera Orchestra] as Co-Principal Oboe. Rosie joined the [a=London Symphony Orchestra] Oboe section in January 2016. Professor of Oboe at the Royal College of Music.Needs Votehttps://www.facebook.com/rosie.jenkins.351https://www.linkedin.com/in/rosie-jenkins-0461196a/?originalSubdomain=ukhttps://open.spotify.com/artist/52Eea14aamXBLM357hHmKyhttps://music.apple.com/gb/artist/rosie-jenkins/1044211351London Symphony OrchestraNorthern SinfoniaThe English National Opera Orchestra + +1299190Rob CollinsonBass trombonistNeeds VoteRobert CollinsonScottish Chamber Orchestra + +1299199Juliette BausorBritish flute playerCorrecthttps://web.archive.org/web/20181115202323/http://www.juliettebausor.co.uk/https://twitter.com/juliettebausorhttps://lpo.org.uk/people/juliette-bausor/London Philharmonic OrchestraLondon Mozart PlayersNorthern SinfoniaEnsemble 360Karolos (2) + +1299207Judith TempplemannJudith TemplemanViolinistNeeds VoteJudith TemplemanRoyal Philharmonic Orchestra + +1299209Hugh SparrowClassical double bass player, double bass teacher, and adjudicator. +He has performed with UK orchestras such as the [a=London Symphony Orchestra], the [a=Orchestra Of The Royal Opera House, Covent Garden], the [a=Philharmonia Orchestra], the [a=BBC Symphony Orchestra], the [a=Northern Sinfonia], the [a=Hallé Orchestra], the [a=BBC Scottish Symphony Orchestra], as well as on many film scores. Co-Principal Double Bass with [a=The English National Opera Orchestra]. Double bass Teacher at the Junior Royal Academy of Music and Associate of the [l527847] (ARAM).Needs Votehttps://www.facebook.com/hugh.sparrow.7https://www.instagram.com/hughsparrow/?hl=enhttps://www.bachtobaby.com/guest-artistshttps://www.imdb.com/name/nm11986350/London Symphony OrchestraBBC Symphony OrchestraHallé OrchestraPhilharmonia OrchestraBBC Scottish Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenNorthern SinfoniaEnglish SinfoniaSinfonia Sfera OrchestraThe English National Opera OrchestraYoung Musicians Symphony Orchestra + +1299212Gareth Small (2)Trumpet playerCorrectHallé Orchestra + +1299417Antolini & MontorsiItalian duo.CorrectAntolini + MontorsiAntolini Vs. MontorsiL. Antolini /A. MontorsiLuca Antolini & Andrea MonitorsiLuca Antolini & Andrea MontorsiLuca Antolini & MontorsiLuca Antolini And Andrea MontorsiLuca Antolini Andrea MontorsiLuca Antolini Vs Andrea MontorsiLuca Antolini vs Andrea MontorsiMontorosi & AntoliniLuca Antolini DJAndrea Montorsi + +1300548Aalborg SymfoniorkesterNeeds Votehttps://musikkenshus.dk/aalborg-symfoniorkesterAalborg SymphonyAalborg Symphony OrchestraAalborg Symphony OrchestreAalborg Sympohony OrchestraMedlemmer Af Aalborg SymfoniorkesterMarius UngureanuIb DirkovMoshe AtzmonVincent StadlmairHanne Høy HouengaardJette RosendalKaren KjeldsErik Sandberg (3)Michael HübnerVesselin DemirevMette NielsenClaus EttrupBettina Ejlerts JensenSimon SigfussonJacob RingsmoseIda Marie SørmoBo Juel ChristiansenMichael PilgaardRuben KristensenJenny SjöbergLisbeth Binderup-ThordalSheila PopkinLeah AksnesJudith Blauw + +1300895Henrik BrendstrupDanish cellist and appointed Professor at the Royal Academy of Music in Århus, Denmark.Needs VoteThe Chamber Orchestra Of EuropeCopenhagen ClassicThe Gaudier EnsembleDen Danske Kvartet + +1301616Nathalie (16)Nathalie Smerdon née BasonVocalist from Huntingdon, Cambridgeshire, UK +Born: 20 March 1982Needs Votehttps://www.facebook.com/Nathalie-25840431839https://www.facebook.com/-Nathalie-Vocalist--190037236505https://soundcloud.com/nathalie-vocalisthttps://myspace.com/nathalie_basonhttps://twitter.com/nathalie_vocalshttp://web.archive.org/web/20100424104318/http://djnathalie.com/Nathalie BasonNathalie Smerdon + +1302055Esa PakarinenFeliks Esaias PakarinenBorn on February 9th, 1911 in Rääkkylä, Finland. Died on April 28th, 1989 in Varkaus, Finland. A Finnish actor, singer and accordionist.Needs VoteE. PakarinenEsaEsa Pakarinen SeniorSeniorSeveri SuhonenPaka BeatRytmi-OrkesteriEsa Pakarinen YhtyeineenSeveri Suhonen Yhtyeineen + +1302161Bill TrujilloAmerican jazz woodwind player. +Born: July 7, 1930 in Los Angeles, California.Needs Votehttps://www.allmusic.com/artist/bill-trujillo-mn0000078962B. TrujilloBill TrjilloTrujilloWoody Herman And His OrchestraStan Kenton And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdThe Mystery Band (3)The Los Angeles Jazz Orchestra + +1302528Jasu MoisioClassical oboist.Needs VoteCollegium VocaleLes Musiciens Du LouvreEnsemble AmbrosiusCapriccio StravagantePygmalionEnsemble Masques + +1302530Jani SunnarborgClassical bassoonist.Needs VoteAnima EternaLes Musiciens Du LouvreLe Cercle De L'HarmonieOrchester Der J.S. Bach StiftungFinnish Baroque OrchestraWrocławska Orkiestra Barokowa + +1302561Leonard LowryAmerican jazz alto saxophonist from the Swing era.Needs VoteLeonard LouryColeman Hawkins And His Orchestra + +1302562Spike HughesPatrick Cairns HughesPatrick Cairns "Spike" Hughes (London, 19 October 1908 – 2 February 1987, London) was a British jazz musician, composer and music journalist. He was the son of Irish composer, writer and song collector Herbert Hughes and great grandson of the sculptor Samuel Peploe Wood. Hughes was a multi-dimensional musician, playing the double bass, composing operatic scores, arranging jazz recordings and writing books on topics ranging from gardening to Toscanini's music.Needs Votehttps://en.wikipedia.org/wiki/Spike_Hugheshttps://adp.library.ucsb.edu/names/204735HughesP. HughesPatrick "Spike" HughesS. HughesHenry Hall and the Gleneagles Hotel BandSpike Hughes And His Negro OrchestraSpike Hughes And His OrchestraSpike Hughes And His Three Blind MiceSpike Hughes And His All American Orchestra + +1302610Nicolai MalkoNicolai Andreyevich MalkoSymphonic conductor, born on 4 May 1883 in Brailov, Russian Empire (today part of Ukraine), died on 23 June 1961 in Sydney, Australia. Born to a Russian mother and an Ukrainian father, and educated in Russian schools, completing that education at the Conservatory in St. Petersburg, where he later taught when he was Musical Director of the Leningrad Philharmonic. +At the time of his death in 1961 he was Musical Director of the [a=Sydney Symphony Orchestra].Needs Votehttps://en.wikipedia.org/wiki/Nicolai_MalkoMalkoNicolas MalkoNikolai MalkoНиколай МалькоSydney Symphony Orchestra + +1302612Gino QuilicoCanadian lyric baritone, born 29 April 1955 in New York City, New York, USA.Correcthttp://www.ginoquilico.com/G. QuilicoQuilico + +1303186Gentlemen Of The London Philharmonic ChoirMale voices of the [a=London Philharmonic Choir].Needs VoteGentlemen of the London Philharmonic ChoirLPC MenLondon Philharmonic Choir (Men)London Philharmonic Mail ChoirLondon Philharmonic Men's VoicesMale Voice ChoirMale Voices Of London Philharmonic ChoirMännerchor Des Londoner Philharmonischen ChoresMännerchor Des Londoner Philharmonischen ChorsThe London Philharmonic Choir (Male Section)London Philharmonic Choir + +1303369Lilla FarkasAlto vocalistCorrectChoeur National De L'Opéra De Paris + +1304501Eduardo WalczakArgentinian violinist (October 1, 1929 - December 15, 2023)Needs Votehttps://es.wikipedia.org/wiki/Eduardo_Walczakhttps://www.imdb.com/name/nm13016929/Eduardo WalczackEduardo WalzakSexteto MayorSeleccion Nacional De TangoMauricio Marcelli Y Su Octango + +1304502Oscar PalermoArgentinean pianist.Needs VoteSexteto MayorOsvaldo Piro Y Su Orquesta + +1304504Rodolfo FernandezRodolfo FernándezArgentinean viola/violin player.Needs VoteRodolfo Fdz.Rodolfo FernándezRaúl Garello Y Su Orquesta TípicaOsvaldo Piro Y Su Orquesta + +1304869George SchowererEngineer known to have worked at [l=Mirasound Studios].Needs VoteGSschowerer + +1305067Ernesto BitettiArgentinean classical guitarist (Rosario, 1943).Needs Votehttps://es.wikipedia.org/wiki/Ernesto_BitettiBitettiE. BitettiЭрнесто Битетти + +1305292Kevin Smith (11)Classical vocalist (countertenor/tenor).Needs VoteK. SmithSmithThe Consort Of MusickePro Cantione AntiquaLondon Pro Musica + +1305665Mechthilde WernerClassical violinist.Needs VoteM. WernerMechthild WernerLes Musiciens Du LouvreLa StagioneRicercar ConsortHannoversche HofkapelleLa Stravaganza Köln + +1305667Alice PierotClassical violinist.Needs VoteAlice PiérotLe Concert SpirituelLe Parlement De MusiqueLes Musiciens Du LouvreRicercar ConsortLes Voix HumainesCapriccio StravaganteAmarillisLes Veilleurs de NuitQuatuor Ad Fontes + +1306131Tibor De MachulaTibor de MachulaHungarian-born cello player (1912–1982) who lived in the Netherlands. First cello soloist at Berliner Philharmoniker (1936–1947) and Concertgebouw Orchestra (1947–1977).Needs Votehttps://web.archive.org/web/20200219164048/http://www.tibordemachula.com/De MachulaT. De MachulaT. de MachulaTibor de Machulade MachulaТибор Де МахулаТибор де Махуа + +1307558Ransom WilsonBorn 25 October 1951 in Tuscaloosa (Alabama). Ransom Wilson is an American flutist and conductor. +He studied the flute at the North Carolina School of the Arts, the Juilliard School, New York, and in Paris with [a379816]. +He studied conducting with, amongst others, [a299702]. +A founding member of [a837570], Wilson was music director of the Tuscaloosa Symphony Orchestra from 1985 to 1992. He was principal conductor of the [a1346681], artistic director of the Oklahoma Mozart Festival from 1985 to 2005, music director of the Opera/Omaha, and music director of the [a2410834]. He teaches at the Yale School of Music.Needs Votehttps://www.ransomwilson.comhttps://en.wikipedia.org/wiki/Ransom_Wilsonhttps://dezede.org/individus/id/31524WilsonOrpheus Chamber OrchestraThe Chamber Music Society Of Lincoln Center + +1307609Paul SeversonAmerican "Big Band" TrombonistNeeds VoteP. SeversonPaul Severson And His OrchestraPaul Severson OrchestraSeversonStan Kenton And His OrchestraRichard Marx & His OrchestraRalph Marterie And His Orchestra + +1307639Matthew Ward (3)Born in London in 1974. Violinist who attended the Royal Academy of Music. He was part of the theatrical string group "The Gogmagos" and has been a member of The Academy of St. Martin in the Fields since 1999. He is frequently credited as a session violinist on various recordings.Needs VoteMatt WardMatty WardOliver LangfordLondon Metropolitan OrchestraThe Academy Of St. Martin-in-the-FieldsChamber Domaine + +1307711Michael HorwathProducer for classical music. In 1981 he won the Grammy award for "Best Opera Recording" and "Best Classical Album".CorrectMichael HorwarthProf. Michael Horwath + +1308384John Richardson (7)Bass vocalist from New Zealand +Needs VoteThe Choir Of Clare College + +1308604Pierre MartelFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +1308610Brigitte AngelisClassical violinist.Needs VoteBrigitte AngélisOrchestre National De FranceOrchestre De Chambre Jean-François Paillard + +1308664Emil Nikolaus Von ReznicekEmil Nikolaus Joseph Freiherr von ŘezníčekAustrian composer, born 4 May 1860 in Vienna, Austria, died 2 August 1945 in Berlin, Germany.Needs Votehttps://en.wikipedia.org/wiki/Emil_von_ReznicekE. N. ReznicekE. N. V. ReznicekE. N. Von ReznicekE. N. v. ReznicekE. N. von ReznicekE. v. ReznicekE.N. RezničekE.N. Von ReznicekE.N. von ReznicekE.N.Von ReznicekE.N.v. ReznicekEmil J. Nikolaus RezničekEmil N. Von ReznicekEmil Nicolaus Von ReznicekEmil Nikolaus ReznicekEmil Nikolaus Joseph Freiherr Von ReznicekEmil Nikolaus ReznicekEmil Nikolaus V. ReznicekEmil Nikolaus Von RezničekEmil Nikolaus von ResnicekEmil Nikolaus von ReznicekEmil Nikolaus von RezničekEmil Nokolaus Von RezničekEmil Von ReznicekEmil Von RezničekEmil van ReznicekEmil von ReznicekEmil von RezničekEmil von ŘezníčekN. v. ReznicekNikolaus Von ReznicekProf. ReznicekRaznicekReznicekReznićekRezničekV. ReznicekVon ReznicekVon Rezničekv. Reznicekvon Reznicek + +1308897Leo AcostaTimbales playerNeeds VoteAcostaL. AcostaLeobardo AcostaLeobardo O. AcostaHarry James And His OrchestraLes Brown And His Band Of RenownLeo Acosta Y Su OrquestaLeo Acosta y Sus Muchachos + +1309321Morris HochbergAmerican violinist, born 9 January 1917 in Detroit, Michigan and died 27 March 2011 in Royal Oak, Michigan.Needs VoteDetroit Symphony OrchestraThe Cleveland OrchestraDr. Morris Hochberg & The Symphonic Strings + +1309985Roald ReineckeClassical violinist (1940–2014).Needs Votehttps://de.wikipedia.org/wiki/Roald_ReineckeR. ReineckeRonald ReineckeGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigMendelssohn-Quartett Leipzig + +1311014Philipp BosbachClassical cellist.Needs VotePhilippe BosbachMusica Antiqua KölnConcerto VocaleEnsemble 415Trio 1790Capella ClementinaParnassi MusiciFrankfurter Opern- Und MuseumsorchesterEnsemble Gasparo Da Salò + +1311018Christoph Anselm NollGerman conductor, organist and harpsichordist.Needs VoteChristoph A. NollConcerto KölnCollegium CartusianumCantus CöllnMusica FreybergensisEpoca BaroccaLa Capella DucaleMusica FiataLes AdieuxChorWerk RuhrKölner KammerorchesterNeue Düsseldorfer Hofmusik + +1311196Karin BaaschClassical viola player.Needs VoteMusica Antiqua KölnSchola Cantorum Basiliensis + +1311197Stefan BlonckClassical hornist.Needs VoteMusica Antiqua Köln + +1311198Eckhard LeueClassical percussionist and voice actor.Needs VoteEkkehart LeueMusica Antiqua KölnCantus CöllnFleisch (5) + +1311199Andrew JoyAustralian classical hornist, born in 1952 in Perth, Australia.Correcthttp://www.andrewjoy.com/de/homeЭндрю ДжойWDR Sinfonieorchester KölnConcentus Musicus WienMusica Antiqua Köln + +1311431Nonna KnuuttilaNonna Maria Aleksandra KnuuttilaViolin player, born September 1, 1972.Needs Votehttp://www.nonnaknuuttila.com/https://www.linkedin.com/in/nonna-knuuttila-36883641NonnaNieuw Sinfonietta AmsterdamGävle Symfoniorkester + +1311437Jaan BossierBelgian clarinetist and conductor. Founder of Jaan Bossier Quartett.Needs Votehttps://www.jaan-bossier.com/Ensemble ModernMahler Chamber OrchestraLucerne Festival OrchestraEnsemble Modern Orchestra + +1312215Michael TiepoldDouble bass player.Needs VoteEnsemble Modern + +1312217Rebecca SaundersEnglish composer, born 19 December 1967 in London, currently living in Berlin.Needs Votehttps://www.rebeccasaunders.net/https://soundcloud.com/rebeccasaundershttps://en.wikipedia.org/wiki/Rebecca_SaundersSaundersStaatskapelle Dresden + +1312281Thomas RuhGerman hornist, born 1972 in Tübingen, Germany.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleEssener PhilharmonikerBundesjugendorchesterNiedersächsisches Staatsorchester Hannover + +1312283Ruth WickerClassical violist, born in Germany, based in the US.Needs VoteRuth Wicker SchaafNational Symphony OrchestraOregon Symphony OrchestraKalamazoo Symphony Orchestra + +1312369Theodore CellaAmerican harpist and conductor, born 1896 in New York, New York and died in 1960.Needs VoteNew York PhilharmonicBoston Symphony Orchestra + +1312374William LincerAmerican violist and violinist, born 6 April 1907 in Brooklyn, New York and died 31 July 1997 in Manhattan, New York.Needs Votehttps://adp.library.ucsb.edu/names/327495W. LincerNew York PhilharmonicThe Cleveland OrchestraThe Gordon String Quartet + +1312375Leonard RoseAmerican cellist and pedagogue. He was born 27 July 1918 in Washington, D.C., USA and died 16 November 1984 in White Plains, New York, USA.Needs VoteBernard RoseL. RoseL.RoseRoseローズThe Cleveland OrchestraThe Istomin/Stern/Rose Trio + +1312523Béatrice GaugueClassical violinistNeeds VoteBéatrice Gaugué-NatorpOrchestre Philharmonique De Radio France + +1312531Florent BrannensClassical violin player.Needs VoteOrchestre Philharmonique De Radio FranceQuatuor ParisiiRenoir Quartet + +1312532Isabelle SouvignetClassical violin player.Needs VoteOrchestre Philharmonique De Radio France + +1312680Pierre PallaPeter Karel Hubertus PalaDutch pianist, organist and conductor, born in 1902 and died in 1968.Needs Votehttp://nl.wikipedia.org/wiki/Pierre_PallaP. PallaPallaピエール・パラSid HamiltonDivertimento QuartetMax Tak OrchestraRadio Filharmonisch OrkestAVRO DansorkestAVRO band Kovacs Lajos + +1312700Gerd SchneiderGerman classical oboe playerCorrectDresdner Philharmonie + +1312701Karl-Heinz BrücknerClassical cornett playerNeeds VoteDresdner Philharmonie + +1312702Wolfgang BemmannClassical oboe playerCorrectDresdner Philharmonie + +1312703Helmut NittelGerman classical oboe playerCorrectDresdner Philharmonie + +1312997Fear Of TigersBenjamin BerryFear of Tigers is an electronic band formed by Japanese born, London based composer Benjamin Berry.Needs Votehttp://www.facebook.com/fearoftigershttps://twitter.com/fearoftigershttp://soundcloud.com/fearoftigershttp://www.myspace.com/fearoftigershttps://fearoftigers.bandcamp.com/https://www.patreon.com/fearoftigersFear Of TigerMr. B (8)Ben Berry (2) + +1313194Gilbert ZanlonghiClassical cellist, has been based in Paris, France, Brussels, Belgium, ... father of [a1571778]Needs VoteOrchestre Du Théâtre Royal De La Monnaie + +1313291Lawrence LeonardClassical cellist, conductor, composer & arranger, Professor of Conducting, and author. Born 22 August 1923 - Died 4 January 2001. +He studied at the [l527847] and the [l1054248]. His musical career began at age 16, as an orchestral cellist with the [a=London Symphony Orchestra] (1949-1951]. Co-founder of the [a1387920]. From 1968 to 1973, he was Music Director of [a=The Edmonton Symphony Orchestra]. In 1971, he conducted the Edmonton Symphony in a concert featuring the British rock band [a=Procol Harum], which was recorded and released commercially ([m=67327]). In later years, he was Professor of Conducting at [l305416] (for five years) and [l1612746] (in the 1980s). +His second wife was [a=Katharina Wolpe]. Cousin of [a1193699].Needs Votehttp://www.lawrenceleonard.co.uk/https://soundcloud.com/lawrence-leonard-composerhttps://open.spotify.com/artist/2zWRmkVdwV56EyOCyG8ps2https://music.apple.com/us/artist/lawrence-leonard/121533016https://en.wikipedia.org/wiki/Lawrence_LeonardLaurence LeonardLeonardLondon Symphony OrchestraLawrence Leonard & His Orchestra + +1313493Leppe SundevallKarl Lennart Albert SundewallSwedish jazz musician (mainly as a trumpet player), singer, and voice actor, born February 3, 1927, dead February 26, 2009. + +For some most famous for doing the voice of King Louie in the Swedish version of [i]The Jungle Book[/i].Needs Votehttps://sv.wikipedia.org/wiki/Leppe_Sundewallhttps://orkesterjournalen.com/biografi/sundevall-lennart-leppe-trumpetare-basist-sangare/L. SundevallL. SundewallLennart " Leppe" SundevalLennart "Leppe" SundevallLennart "Leppe" SundewallLennart SundewallLeonart SundewallLeppeLeppe Sundevall Med Sin OrkesterLeppe SundewallLeppe SundvallLeppe SundwallLou SandySundevallSundewallLou SandyJames Moody QuintetGals And PalsHelmer Bryds Eminent Five QuartetCharles Norman QuintetArne Domnérus SextettLars Gullin OctetGösta Theselius And All StarsArne Domnérus Favourite GroupJames Moody & His Swedish CrownsRoy Eldridge SextetVårat GängSångfåglarna (3)Four Hits (2)Lou & Larry SandySone Banger SextetLeppe Sundevalls KvartettLeppe Sundevalls Rock & Skiffle GroupJazz At The CavalcadeSegeltorpspojkarnaThe LeepsGösta Theselius And His Band + +1314039Mark NuccioAmerican clarinetistNeeds Votehttp://www.marknuccio.com/New York PhilharmonicHouston Symphony Orchestra + +1314056Philip MyersAmerican French horn player born June 24, 1949 in Elkhard, Indiana. He was principal of the New York Philharmonic from 1980 until his retirement as principal in 2017. He stayed in the orchestra as solo horn player.Needs Votehttps://en.wikipedia.org/wiki/Philip_Myers_(musician)P. MyersPhil MyersPhilip MeyersPhillip MyersNew York PhilharmonicThe Principal Brass + +1314092Michael Goldberg (2)Jazz arranger - horns player - songwriterNeeds VoteMike GoldbergCharlie Barnet And His OrchestraThe Orchestra (4) + +1314209Tony Martin, JrSon of [a520764] and actress Cyd Charisse, was born in Los Angeles (28th August 1950, Died 10th April 2011) +Needs VoteMartinT. Martin Jr.T. Martin, Jr.Tony Martin Jr.Tony Martin, Jr.Martin And Finley + +1314730Annelie GahlClassical violinist, born in 1965.CorrectKlangforum WienConcentus Musicus WienCamerata Academica Salzburg + +1314731Christian EisenbergerAustrian classical violinistNeeds Votehttp://members.aon.at/classic-music/curriculum/eisenberger.htmlC. EisenbergerThe Chamber Orchestra Of Europe + +1314732Michael GielerAustrian violinist and violist, born 26 October 1966 in Eisenstadt, Vienna.CorrectConcertgebouworkestHaydn-Quartett Eisenstadt + +1314733Markus PougetAustrian cellist, born 1966 in Linz, Austria.Needs VoteMarcus PougetDas Mozarteum Orchester SalzburgÖsterreichisches Ensemble Für Neue MusikMozarteum Quartett + +1314914Fritz SpiegelMusician, writer and broadcaster. +Born January 27, 1926 in Austria; died March 23, 2003.Needs VoteSpiegelRoyal Liverpool Philharmonic Orchestra + +1315077Cécile MoreauFrench violinist.CorrectOrchestre Des Concerts Lamoureux + +1315080Agnès DavanFrench violinist.Needs Votehttp://www.agnesdavan.com/biographie.htmlAgnes DavanOrchestre Des Concerts Lamoureux + +1315083Franck ChoukrounFrench cellist.CorrectOrchestre Des Concerts Lamoureux + +1315088Rémi FrançoisFrench double bassist.CorrectOrchestre Des Concerts Lamoureux + +1315089Dominique AbihissiraDominique AbihssiraClassical violinistNeeds VoteOrchestre Des Concerts Lamoureux + +1315091Françoise BordenaveFrench violist.CorrectFrançoise BordenavesOrchestre Des Concerts Lamoureux + +1315097Marie-Laure SognoFrench violinist.CorrectOrchestre Des Concerts Lamoureux + +1315098Sophie VernantFrench violinist.CorrectOrchestre Des Concerts Lamoureux + +1315099Béatrice FauréFrench violinist.CorrectOrchestre Des Concerts Lamoureux + +1315105Delphine HervéFrench violinist and liner notes translatorNeeds VoteOrchestre Des Concerts Lamoureux + +1315107Nathalie Griffet-LaureFrench violinist.CorrectOrchestre Des Concerts Lamoureux + +1315110Sarah DecottigniesFrench violinist.CorrectSahra DecottigniesOrchestre Des Concerts Lamoureux + +1315238Drusilla AlexanderCellistNeeds VoteBournemouth Sinfonietta + +1315239Lionel BentleyBritish violinist, teacher of violin, and later a conductor. Born 17 February 1908 in London, England, UK and died 2 May 2003 in London, England, UK. +Sub-Principal Second Violin of the [a=BBC Symphony Orchestra]. Former member of the [a=London Symphony Orchestra] (1930-1951). He played with the [a=Blech String Quartet] for ten years. In 1955, he joined the [a=London Philharmonic Orchestra] as leader. From 1956 until 1984, he led his own [a=Amici String Quartet] being its President from 1983 to 1984. He gave up orchestral playing in 1964. +He taught at the [l527847].Needs Votehttps://open.spotify.com/artist/1N5Y4nkqhec7dMmy3amJd1https://www.independent.co.uk/news/obituaries/lionel-bentley-36534.htmlhttps://www.imdb.com/name/nm10135586/L. BentleyLional BentleyLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraLondon String QuartetVirtuoso Chamber EnsembleAmici String QuartetThe Francis Chagrin EnsembleLondon Symphony Orchestra Chamber EnsembleBlech String Quartet + +1315279Erkki ErtamaBertel Erik ErtamaBorn on November 26th, 1927 in Alavus, Finland. Died on September 16th, 2010 in Helsinki, Finland. + +A Finnish musician, conductor, composer, arranger and producer. His main instruments were piano, organ and violin. +Needs VoteE. ErtamaErtamaI. YokimusoSaluuna-SanteriErkki Ertaman YhtyeErkki Ertaman OrkesteriErkki Ertaman Kvartetti + +1315283Pekka SaartoSauvo PuhtilaOne of Sauvo Puhtila's pseudonyms.CorrectP SaartoP. SaartoP. SaartuP.SaartoR. SaartoSaartoSaukkiSauvo PuhtilaMerjaSolja TuuliVeikko VallasP. L. SaarinenA. OjapuuTimjamiTikka (2)Pekka PeltoJukka TeräS. Salla + +1315591Naoko TanakaClassical violinist and educator, born in Tokyo. She has been a Juilliard faculty member since 2001 and a Pre-College faculty member since 1984.Needs VoteOrchestra Of St. Luke'sOrpheus Chamber OrchestraEnsemble BoccheriniSt. Luke's Chamber Ensemble + +1315851Pärre FörarsPer-Erik FörarsBorn October 4th, 1924 in Vaasa, Finland. A Finnish musician (violin, clarinet, guitar, saxophone) and singer who started by playing jazz in the 1940s. He sang some hits in the 1950s and worked as a professional musician until the late 1960s. + +Died on January 14th, 2011 in Helsinki, Finland. +Needs VoteP-E FörarsP. FörarsPer-Erik (Pärre) FörarsPer-Erik FörarsPer-Erik FörärsPär-Erik FörarsRytmin Swing-YhtyePärre Förars Yhtyeineen + +1316160Rémi BreyFrench Viola playerNeeds VoteR. BreyRemy BreyRémy BreyLes EnfoirésOrchestre National De L'Opéra De Paris + +1316922Hans-Christoph RademannHans-Christoph Rademann (born 1965 in Dresden) is a German choral conductor and teacher. He was the founding director of the [a262467] in 1985, conducts various German and international vocal ensembles, from 2007 until 2015 he was leader of the [a646860].Needs Votehttps://en.wikipedia.org/wiki/Hans-Christoph_Rademannhttps://www.bach-cantatas.com/Bio/Rademann-Hans-Christoph.htmH.-C. RademannH.-Chr. RademannH.C. RademannHans Christophe RademannRademannDresdner KammerchorDresdner KreuzchorRIAS-KammerchorGaechinger Cantorey + +1317013Eric Miller (8)American jazz guitarist.Needs Votehttps://musicbrainz.org/artist/560f2b26-f2f5-4d84-ab85-57255df38552Lionel Hampton And His Orchestra + +1317014James WormickAmerican jazz trombone playerNeeds VoteJimmy WomickJimmy WormickWormickLionel Hampton And His Orchestra + +1317688Eva Braun (3)1960s Austrian violinist.Needs VoteEva BraunConcentus Musicus Wien + +1317856Eberhard FriedrichGerman conductor and choirmaster of the [a=Chor der Bayreuther Festspiele] since 2000.CorrectChor der Bayreuther Festspiele + +1318579Norman Brown (3)American guitarist, songwriterNeeds VoteBrownBrown, NormanBrown-NormanN. BrownThe Mills Brothers + +1318609Edwin C. BrownJazz oboistNeeds VoteEddie BrownEdwin BrownEdwin C BrownCharlie Parker With Strings + +1319304Clare SalamanClassical violinist & hurdy gurdy player. Died 26 January 2022 at the age of 55.Needs Votehttp://www.claresalaman.com/The Academy Of Ancient MusicCollegium Musicum 90I FagioliniRaglan Baroque PlayersThe Purcell QuartetThe King's ConsortBrandenburg ConsortCharivari AgréableSYM (7)The Society Of Strange And Ancient InstrumentsThe English ConcertKontrabande + +1319340Arnold KasarBerlin pianist and electro producer. He also works as a mastering engineer.Needs Votehttp://www.kasarmusic.de/https://soundcloud.com/kasarhttps://www.youtube.com/channel/UCCmvxK-nWIqWXu65VzMqTQQhttps://arnoldkasar.bandcamp.com/A. KasarArnold CasarCASARKASARKasarAtomHockeyNylon (4)Calyx MasteringFriedrich Liechtenstein Trio + +1319360Dorothee MieldsGerman operatic soprano, born 1971 in Gelsenkirchen, Germany.Needs Votehttps://en.wikipedia.org/wiki/Dorothee_Mieldshttps://dorotheemields.comhttps://soundcloud.com/dorotheemieldsDorothee Blotzky-MieldsMieldsCollegium VocaleBalthasar-Neumann-ChorBach Collegium JapanGesualdo Consort AmsterdamGli Angeli GenèveDie FreitagsakademieBoston Early Music Festival Vocal & Chamber EnsemblesLes Voix Baroques + +1320043Hans-Peter Schmitz(* November 5, 1916 in Breslau, † March 16, 1995 in Berlin) was a German flutist and university teacherNeeds Votehttps://de.wikipedia.org/wiki/Hans-Peter_Schmitz_(Musiker)H. P. SchmitzH. P. SchmitzH.-P. SchmitzHans Peter SchmitzBerliner Philharmoniker + +1320202Cecília BrancoPortuguese violinist.Needs VoteCecília Branco de LimaGulbenkian Orchestra + +1320203António MirandaPortuguese violinist.Needs VoteAntonio MirandaAntónio José MirandaTozé MirandaGulbenkian OrchestraAbraço A MoçambiqueSons Do Tempo + +1320205Elena RyabovaRussian classical violinistNeeds VoteGulbenkian Orchestra + +1320206Pedro PachecoPedro Pacheco (b.1966) is a Portuguese violinist.Needs VoteGulbenkian Orchestra + +1320714Hornquartett Der Staatskapelle DresdenCorrectStaatskapelle Dresden + +1320715Solène KermarrecFrench cellist.Needs VoteBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerCollegium Der Berliner Philharmoniker + +1320726Kurt Christian StierKurt-Christian StierGerman classical violinist, violist and concertmaster (* 03 February 1926 in Gütersloh, German Empire; † 31 July 2016). Needs Votehttps://de.wikipedia.org/wiki/Kurt-Christian_StierChristian StierKurt-Christian StierКурт-Кристиан ШтирSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterCollegium AureumStross-Quartett"In Dulci Jubilo" EnsembleMünchner Streichquartett + +1320727Erich Keller (2)German violinist, concertmaster, composer and conductor, born 21 July 1918 in Augsburg, Germany and died 7 September 2010. He was the founder of Convivium Musicum, München.Needs VoteErich KellerSymphonie-Orchester Des Bayerischen RundfunksConvivium Musicum Of MunichDas Keller QuartettMünchner NonettDas Münchner KammertrioKeller Trio + +1320728Bernhard GmelinGerman cellist, born 17th March 1939 in Kiel; died 2nd October 2021 in Hamburg.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +1321612Thomas StahrGerman classical double bass player.Needs VoteGewandhausorchester LeipzigStephan König - Trio + +1321613Karl Heinrich NiebuhrGerman violinist.Needs VoteHeinrich NiebuhrGewandhausorchester LeipzigOrchester der Bayreuther Festspiele + +1321614Dietrich ReinholdGerman violinist, born 22 January 1962 in Leipzig, GDR (today Germany). +Needs VoteGewandhausorchester LeipzigOrchester der Bayreuther FestspieleReinhold-Quartett + +1321615Jürgen DaseGerman violinist, born 15 August 1954 in Leipzig, GDR (today Germany).Needs VoteGewandhausorchester Leipzig + +1321616Sebastian UdeGerman violinist.CorrectGewandhausorchester Leipzig + +1321617Barbara UdeClassical violinistNeeds VoteGewandhausorchester LeipzigMDR Sinfonieorchester + +1321619Horst BaumannClassical violinistNeeds VoteGewandhausorchester Leipzig + +1321620Jan WesselyGerman hornist, born in 1972 in Torgau, GDR.Needs VoteGewandhausorchester LeipzigGewandhaus Brass QuintettOrsolino Quintett + +1321622Henry Schneider (2)German violist, born 30 July 1955 in Gefell, GDR (today Germany). +Needs VoteGewandhausorchester Leipzig + +1321623Norbert TunzeGerman violist.Needs VoteGewandhausorchester LeipzigReinhold-Quartett + +1321625Werner JanekGerman violinist, born 24 September 1951 in Leipzig, GDR (today Germany). +Needs VoteGewandhausorchester Leipzig + +1321626Uwe StahlbaumGerman classical cellist.Needs VoteGewandhausorchester Leipzig + +1321653Fernand SardouFernand SardouBorn September 18, 1910 in Avignon, France +Died January 31, 1976 in Toulon, France, aged 65. + +French singer and actor. He was the husband of the French actress [a3793083] ([a475516]) and the father of [a334509]. His two grandsons are French novelist [a5206029] and French actor [a6424431]. Needs Votehttps://fr.wikipedia.org/wiki/Fernand_SardouF. SardouFernandSardou + +1321703Maurizio PersiaItalian trombonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Jazz Siciliana + +1321704Ingrid BelliItalian ViolinistNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +1322063Jonathan PiaClassical wind instrumentalistNeeds VoteJohnatan PiaJonatha PiaConcerto ItalianoSonatori De La Gioiosa MarcaVenice Baroque OrchestraIl Complesso BaroccoCappella AugustanaConsort Del Collegio GhislieriDivertissement (2) + +1322085Edoardo GiachinoPercussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +1322088Riccardo BalbinuttiPercussionist.Needs VoteArmando BluModo AntiquoDivertimento EnsembleVenice Baroque OrchestraAuser MusiciDivertissement (2) + +1322283Imke FrankGerman cellist, born in Stuttgart, Germany. Now based in Switzerland.Needs Votehttps://www.imke-frank.de/Celloduo FrankCamerata BernCollegium Novum ZürichEnsemble Modern OrchestraEnsemble AntipodesBundesjugendorchester + +1322286Elisabeth KulenkampffGerman hornist.CorrectBamberger SymphonikerBundesjugendorchester + +1322993Eddie RoaneTrumpeterNeeds VoteLouis Jordan And His Tympany Five + +1323378Anne RegnierAnne RégnierFrench oboist and English horn player.CorrectAnne ReignerAnne RégnierEnsemble Ars NovaOrchestre National De L'Opéra De ParisEnsemble Jean-Walter Audoli + +1323394Mette TjærbyMette Tjærby KorneliusenDanish classical violinist, born in 1975.Needs VoteMette TjaerbyMahler Chamber OrchestraPhilharmonisches Staatsorchester Hamburg + +1324365Emilio MorenoClassical violin and viola player, liner notes author, producer and co-founder with his brother [a1092583] of [l=Glossa Music] label.Needs Votehttps://en.wikipedia.org/wiki/Emilio_MorenoEnsemble 415La Petite BandeSchola Cantorum BasiliensisOrchestra Of The 18th CenturyLa Real CámaraNachtmusiqueEl Concierto EspañolEnsemble Cristofori + +1324366Christophe FeronBelgian hornistNeeds VoteOrchestre Des Champs ElyséesLa Petite BandeSolstice Ensemble + +1324368Piet DombrechtBelgian hornist.Needs VoteP. DombrechtPetrus DombrechtOrchestre Des Champs ElyséesCollegium VocaleLa Chapelle RoyaleIl FondamentoEnsemble 415La Petite BandeLa StagioneOctophorosRicercar ConsortRicercar AcademyBig Band Sound + +1324369Jan HuylebroeckBelgian classical percussionist and composer +Born Oostende September 7th 1956Needs VoteAnima EternaLa Petite BandeApotheosis (8)B'Rock Orchestra + +1324661Heinz SchönbergerGerman jazz clarinetist, saxophonist and orchestra leader, born 12 March 1926 in Frankfurt am Main, Germany, died 25 November 2011 in Frankfurt am Main, Germany.Needs VoteH. SchoenbergerH. SchönbergerSchönbergerTony MerillRIAS TanzorchesterMain Stream Power BandOrchester Heinz SchönbergerRobby Spier Und Sein TanzstreichorchesterHeinz Schönberger Quintett + +1324894Felix KrausAmerican oboist and English horn player, born in 1930 and died in 2006.CorrectFelix KrauseThe Cleveland Orchestra + +1324895Joseph AdatoAmerican classical percussionist.CorrectJospeh AdatoThe Cleveland Orchestra + +1324899Richard WeinerClassical percussionist.CorrectThe Cleveland Orchestra + +1324902Rosemary GoldsmithAmerican violist.CorrectThe Cleveland Orchestra + +1324903Warren DownsAmerican cellist.Needs VoteThe Cleveland OrchestraOakwood Chamber Players + +1324911Alfred ZetzerAmerican bass clarinetist.CorrectThe Cleveland Orchestra + +1324958Cally (3)Ian HollymanHardstyle DJ & producer based in South Wales, UK. +Also half of Hard Trance / Hardstyle duo [a=Cally & Juice] alongside "Juice" aka [a=Gary Waters]. +Co-founded digital labels [l=Ourstyle Recordings] (2006-2015) and [l=HDUK] (2020-).Needs Votehttp://www.djcallyofficial.com/http://linktr.ee/djcallyofficialhttp://www.facebook.com/djcallyofficialhttp://www.instagram.com/djcallyofficial/http://twitter.com/djcallyofficialhttp://www.patreon.com/djcallyofficialhttp://www.mixcloud.com/djcallyofficial/http://soundcloud.com/djcallyofficialhttp://open.spotify.com/artist/7IiSjbJT8Q23ws7br745z8http://www.youtube.com/callyofficialIan HollymanRaptura + +1325015Johann MayrhoferJohann Baptist Mayrhofer[b]Johann Baptist Mayrhofer[/b] (22 October[u]❋[/u] 1787, Steyr — 5 February 1836, Vienna) was an Austrian poet and librettist, best known as a close friend and collaborator of [b][a=Franz Schubert][/b] (1797—1828). He was the second most frequently adopted lyricist by Schubert, only surpassed by [url=/artist/573251]Goethe[/url], and wrote nearly fifty songs, including renowned "[i]Lied Eines Schiffers an die Dioskuren[/i]," D360 (1816) and "[i]Nachtstück[/i]," D672 (1819), and two opera librettos. Mayrhofer first met the aspiring composer in 1814, and was part of his close circle of friends and companions, alongside [a=Joseph Von Spaun] (1788—1865) and [a=Franz von Schober] (1796—1882). Between 1818 and 1821, Johann and Franz shared a one-room apartment in Vienna. In 1829, J.B. Mayrhofer published his critically acclaimed memoirs of Schubert in [i]Neues Archiv für Geschichte[/i] journal. He died at a relatively young age of 49, committing the suicide reportedly driven by his paranoid fear of cholera epidemics. + +[u]❋[/u] — the erroneous birthday of [i]3 November[/i], virtually omnipresent in countless sources and dictionaries, is a mistake "grandfathered" from [a=Ernst von Feuchtersleben]'s biographic sketch on Mayrhofer published in October 1843. Both the extant baptismal records and the poet's memorial plaque in Steyr lists the accurate date.Needs Votehttps://en.wikipedia.org/wiki/Johann_Mayrhoferhttps://d-nb.info/gnd/119045451https://www.deutsche-digitale-bibliothek.de/person/gnd/119045451https://imslp.org/wiki/Category:Mayrhofer,_Johannhttps://michaelorenz.blogspot.com/2012/09/johann-mayrhofers-real-date-of-birth.htmlI. MairhofersJ. L. MayrhoferJ. MayrhoferJ. MeirhoferJ.B. MayrhoferJoh. MayrhoferJoh. N. MayrhoferJohan Baptist MayrhoferJohann Babbist MayrhoferJohann Baotist MayrhoferJohann Baptist MayrhoferJohann N. NayrhoferJohannes MayrhoferMayerhoferMayrhoferИ. МайрхоферЙ. Майрхофер + +1325194Roy HowatScottish violinist, pianist and musicologist.Needs Votehttp://www.royhowat.comhttp://www.ram.ac.uk/find-people?pid=340http://en.wikipedia.org/wiki/Roy_HowatThe English Baroque SoloistsThe Academy Of Ancient Music + +1325377Thord SvedlundThord Arne SvedlundSwedish violinist and conductor, born on 14 October 1954.Needs VoteThor SvedlundThore SvedlundTord "The Boss" SvedlundTord SvedlundTord SwedlundGöteborgs Symfoniker + +1325700Thorsten EnckeGerman cellist, composer and conductor, born in 1966 in Göttingen, Germany.Needs Votehttps://www.thorsten-encke.de/EnckeDeutsche Kammerphilharmonie BremenEnsemble ViardotMelcher Trio + +1325773Anna RabinovaRussian violinist born in Moscow. In 1994, she settled over to the USA and joined the New York Philharmonic.Needs VoteAnna RobinovaNew York PhilharmonicTwo Plus One Trio + +1325776Ernst WallfischAmerican violist and viola da gamba player, born 27th May 1920 in Frankfurt am Main, Germany, died 8th May 1979 in Northampton, Massachusetts. Husband of [a1063517].Needs Votehttp://en.wikipedia.org/wiki/Ernst_WallfischErnst WallfishWallfischWenst Wallfischエルンスト・ウォルフィシュThe Cleveland OrchestraWallfisch Duo + +1325919Anja SiljaAnja Silja Regina LangwagenGerman operatic soprano, born 17 April 1940 in Berlin, Germany. She was married to [a=Christoph von Dohnányi] (divorced).Correcthttp://www.artistsman.com/home/kuenstler_verzeichnis/sopran/anja-silja/http://en.wikipedia.org/wiki/Anja_SiljaSiljaАнья СильяАрья Силья + +1325965Hans HickmannHans R. HickmannProf. Hans R. Hickmann, (born May 19, 1908, in Rosslau, Germany; died 4 September 1968, in Bladford, England), German musicologist primary known for his studies on Egyptian musical intruments. +He was appointed artistic director of the [l=Deutsche Grammophon]'s Archiv Produktion in 1958 +Needs Votehttp://memory.loc.gov/diglib/ihas/loc.natlib.ihas.200155650/default.htmlhttp://books.google.be/books?id=qggEAAAAMBAJ&pg=PA40-IA7&lpg=PA40-IA7Dr. Hans HickmanDr. Hans HickmannDrs. Hans HickmannHans HickmanHickmannProf. Dr. Hans HickmanProf. Dr. Hans HickmannProf. Hans HickmannProfessor Dr. Hans Hickmann + +1326152Sanford SylvanSanford Sylvan (December 19, 1953 – January 29, 2019) was an American baritone.Needs Votehttps://en.wikipedia.org/wiki/Sanford_SylvanSylvanPomerium + +1326752International "Pop" All StarsNeeds Major ChangesAll StarsInternational 'Pop' All StarsInternational All StarsInternational All-StarsInternational PopInternational Pop All StarsInternational «Pop» All StarsOrchestra International "Pop" All StarsThe International All StarsThe International All-StarsThe International Pop All Stars + +1326884Aimo MustonenAimo MustonenBorn on January 15th, 1909 in Tampere, Finland. Died on September 5th, 1994. A Finnish composer.CorrectA. MustonenA.MustonenAino MustonenAlmo MustonenMustonenMustonen AimoT. Mustonen + +1326887Maija KonttinenIida Maria (Maija) Konttinen 1873 Kangasniemi – 1949 Helsinki. Finnish children's author and lyricist.Needs VoteKonttinenM. K.M. KonttinenM.Konttinen + +1327027Kurt Heinz StolzeKurt-Heinz StolzeKurt-Heinz Stolze ( 26 January 1926 - 12 August 1970) was a German pianist, harpsichordist, conductor and composer.Needs VoteK. StolzeKurt H. StolzeKurt Heinz-StolzeKurt-Heinz StolzeWürttembergisches Kammerorchester + +1327170Sophie GroseilViola player.CorrectS. GroseilSophie GroseilleOrchestre Philharmonique De Radio France + +1327173Martin BlondeauClassical violinistNeeds VoteBlondeau MartinM. BlondeauOrchestre Philharmonique De Radio France + +1327174Anne-Michèle LienardFrench violistCorrectAnne Michele LienardAnne-Michele LienardAnne-Michéle LienardOrchestre Philharmonique De Radio France + +1327176Amandine LeyFrench violinist, born in 1981.Needs VoteAmandine Charroing LeyAmandine Charroing-LeyAmandine Ley-CharroingOrchestre Philharmonique De Radio France + +1327228Alfred GenoveseAmerican oboist, born 25 April 1931, died 11 March 2011.CorrectA. GenoveseAl GenoveseBoston Symphony OrchestraThe Cleveland OrchestraSaint Louis Symphony OrchestraBaltimore Symphony Orchestra + +1327230Lorne MunroeCanadian born cellist, born 24 November 1924. Died 4 May 2020. He was the former principal cellist of [a27519] and [a388185] (from 1964 to 1997).Needs Votehttps://en.wikipedia.org/wiki/Lorne_MunroeLorne MonroeThe Philadelphia OrchestraNew York Philharmonic + +1327306Bruce OgstonBaritone singer.Needs VoteBruce OgstenThe Ambrosian Singers + +1327432Philip White (3)British chorus master.CorrectPhilip WhiteChœur de Radio France + +1327642Bernd Hengst (2)German trumpet player (born circa 1940)Needs VoteBernd HengstStaatskapelle DresdenDie BlasewitzerBlechbläserensemble Ludwig Güttler + +1327644Günther MüllerGerman cellistCorrectGünter MüllerStaatskapelle DresdenVirtuosi Saxoniae + +1327645Michael EckoldtGerman violinist.CorrectMichael EckoltStaatskapelle DresdenVirtuosi Saxoniae + +1327646Siegfried BüchelGerman violinist.CorrectStaatskapelle DresdenVirtuosi Saxoniae + +1327647Wolfgang KlierWolfgang Klier + +German oboist and percussion playerNeeds Votehttps://wdewp.wordpress.com/biographie/Staatskapelle DresdenVirtuosi SaxoniaeSemper-House BandCappella Sagittariana Dresden + +1327648Peter LohseGerman trumpet playerNeeds VoteLohseStaatskapelle DresdenKammerorchester Carl Philipp Emanuel BachDie BlasewitzerDresdner KapellsolistenBlechbläserensemble Ludwig GüttlerConcertino Dresden + +1327649Frank OtherGerman violinist.Needs VoteStaatskapelle DresdenVirtuosi Saxoniae + +1327651Michael FrenzelGerman classical violinist, born in 1950 in Görlitz, GDR. He was a member of the [a578737] from 1974 to 2017.Needs VoteFrenzelMichael FrentzelStaatskapelle DresdenOrchester der Bayreuther FestspieleVirtuosi SaxoniaeDresdner Kammersolisten + +1327653Manfred KrauseGerman oboist, English horn player and Corno da caccia player. (1934-2015) +Needs VoteStaatskapelle DresdenVirtuosi SaxoniaeTrompetenensemble Ludwig Güttler + +1327656Friedemann JähnigClassical viola player.Needs VoteStaatskapelle DresdenCamerata BernVirtuosi SaxoniaeBerner SymphonieorchesterColla Parte Quartet + +1327657Hartmut SchergautGerman classical hornistCorrectStaatskapelle DresdenVirtuosi Saxoniae + +1327659Bernd RoseGerman bassoonistCorrectVirtuosi Saxoniae + +1327664Michael SchöneGerman violist, born 1946 in Kleinröhrsdorf, Germany.CorrectStaatskapelle DresdenDresdner PhilharmonieVirtuosi SaxoniaeDresdner Kapellsolisten + +1327666Hans-Detlef LöchnerGerman clarinetistNeeds VoteHans-Dieter LöchnerLöchnerハンス=デトレフ・レヒナーDresdner PhilharmonieVirtuosi Saxoniae + +1327682Alfie KahnBritish (?) jazz musician (1914 - 1996) playing saxophone, clarinet, flute, piano and harmonica.CorrectFats Waller & His Rhythm + +1327683Ian SheppardTenor sax & violin credits from pre-1940's recordings.CorrectIan ShepherdJan SheppardFats Waller & His Rhythm + +1327685Dave WilkinsDavid Livingstone Wilkins.Barbadian jazz trumpeter and singer. + +Born : September 25, 1914 in Barbados. +Died : November 26, 1990 in London, England. + +Dave played with : Ted Heath, Harry Parry, Joe Daniels, Cab Kaye and recorded also with Una Mae Carlisle and Fats Waller. +Needs VoteDavid WilkinsFats Waller & His RhythmTed Heath And His MusicKen 'Snakehips' Johnson & His West Indian Dance Orchestra + +1328735Mikis Michaelides (2)Mikis Michaelides is a violinist, conductor and artistic director of the [a12480262]. He's the nephew of [a2326414].Needs VoteWiener SymphonikerClemencic ConsortThessaloniki State Symphony Orchestra + +1328743Alfred HertelProf. Alfred HertelAustrian classical oboist (* 29 March 1934 in Vienna, Austria; † 05 August 2018 in Mödling, Austria).Needs Votehttps://dx.doi.org/10.1553/0x0001d141https://de.wikipedia.org/wiki/Alfred_HertelWiener VolksopernorchesterConcentus Musicus WienClemencic ConsortCapella Academica WienWiener KammerorchesterTonkünstler OrchestraBläserensemble Des Niederösterreichischen TonkünstlerorchestersLes MenestrelsThe Biedermeier Chamber EnsembleAustrian Wind QuintetWiener Streichersolisten + +1328919Alexander GaukАлександр Васильевич Гаук (Aleksandr Vassilievich Gauk)Soviet conductor, composer, People's Artist of RSFSR (1954). +Born: August 15, 1893, Odessa, Russiaт Empire, died: March 30, 1963 in Moscow, USSR. +Conductor: +1923-1931 Ленинградский театр оперы и балета (Leningrad Theatre of Opera and Ballet) +1930-1934 Симфонический оркестр Ленинградскоф филармонии ([a=Leningrad Philharmonic Orchestra]) +1934-1936 [a=Симфонический Оркестр Московской Филармонии "Софил"] (Symphony Orchestra of Soviet (Moscow) Philharmony) +1936-1941 Государственный симфонический оркестр СССР ([a=Russian State Symphony Orchestra]) +1953-1963 [a=Большой Симфонический Оркестр Всесоюзного Радио] и Центрального телевидения (Large Symphony orchestra of Soviet radio and Central TV) +Needs Votehttp://en.wikipedia.org/wiki/Alexander_Gaukhttp://ru.wikipedia.org/wiki/%D0%93%D0%B0%D1%83%D0%BA,_%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B0%D0%BD%D0%B4%D1%80_%D0%92%D0%B0%D1%81%D0%B8%D0%BB%D1%8C%D0%B5%D0%B2%D0%B8%D1%87A GaoukA. B. GaukA. GaoukA. GaukA. GaukasA. GaurA. V. GaoukA. V. GaukA. ГаукA.GaukA.V. GaoukAlejandro GaukAleksander GaoukAleksander GaukAleksander Vasil'yevich GaukAleksandr GaukAlexander GaoukAlexander GauckAlexander Vasilyevich GaukAlexander Vysiľyevich GaukAlexandr GaukAlexandr Vasilijevič GaukAlexandre GaoukAlexandre GaukG. GaukGaukGauk, AlexanderА. B. ГаукА. GaukА. В. ГАУКА. В. ГаукА. ГаукА.В. ГаукА.В.ГаукАлександр ГаукГаукアンドレイ・ムイトニクLeningrad Philharmonic OrchestraRussian State Symphony OrchestraБольшой Симфонический Оркестр Всесоюзного РадиоСимфонический Оркестр Московской Филармонии "Софил" + +1329084Vaughn WiesterAmerican jazz trombonistNeeds Votehttp://www.vaughnwiester.com/V. WiesterVaughn F. WeisterWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And The Thundering HerdCleveland Jazz OrchestraPaul Ferguson Jazz OrchestraVaughn Wiester's Famous Jazz Orchestra + +1329421Björn BjörklöfA Finnish studio-arranger, conductor and trumpeter.Needs VoteB. BjörklofB. BjörklöfBjörklöfBjörklövBjörn BjörklövT. BjörklöfBjörn Björklöfs OrkesterBjörn Björklöfin Letka-Orkesteri + +1330476Buster JohnsonTheron Ellsworth "Buster" JohnsonAmerican jazz trombonist and co-writer of "Wang Wang Blues" (born June 27, 1885 in Zanesville, Ohio – died May 3, 1960 in Roseville, California) + +Johnson's career before 1917 is little known. In 1917, he formed the [a=Frisco "Jass" Band] with violinist/dancer Marco Woolf, saxophonist [a=Rudy Wiedoeft], pianist [a=Arnold Johnson], a banjo and a drummer. They played the Montmartre, New York’s famous midnight cafe on the third floor of the Winter Garden Building. Then Johnson left New York for California and played in a quintet including [a=Henry Busse] (trumpet) and [a=Gus Mueller] (clarinet). The trio composed "Wang Wang Blues" sometime in the period of 1918-1919. He played briefly in Paul Whiteman's Orchestra from 1918-1920. He performed until roughly 1945. + +Needs Votehttp://victor.library.ucsb.edu/index.php/talent/detail/65270/Johnson_Theron_E._Buster_instrumentalist_trombonehttp://victor.library.ucsb.edu/index.php/talent/detail/61790/Johnson_Theron_E._Buster_composerhttp://sv.wikipedia.org/wiki/Buster_Johnsonhttps://syncopatedtimes.com/frisco-jass-band/https://adp.library.ucsb.edu/index.php/resources/detail/440"Buster" Johnson(Buster) JohnsonB. JohnsonB. JohnssonBusterJohnsonTheron E. "Buster" JohnsonPaul Whiteman And His OrchestraFrisco "Jass" BandPaul Whiteman And His Ambassador Orchestra + +1330477Gus MuellerGustave Mueller.American jazz clarinetist. +Born : April 17, 1890 in New Orleans, Louisiana. +Died : December 16, 1965 in Hollywood, California. +"Gussie" Mueller played with : "Papa" Jack Laine, Tom Brown, Paul Whiteman and others. +Needs Votehttps://en.wikipedia.org/wiki/Gussie_Mueller(Gus) MuellerD. MullerG. MillerG. MuellerGus MillerGus MullerGus MüllerMuellaMuellerMullerMüllerPaul Whiteman And His OrchestraPaul Whiteman And His Ambassador Orchestra + +1330643Rien VoskuilenDutch classical organistNeeds VoteRien VoskulienNetherlands Bach CollegiumBarockorchester L'Arpa FestanteLa Fantasia + +1330749Andy McDevittBritish jazz clarinet and saxophone player. +Mainly active in the 1930s and 40s, McDevitt went on to work as a studio musician through to the 1970s + +career steps: +1934:Worked for Louis Freeman in Scotland (and on liner California), then did summer season with Slim Grossman in Bournemouth +1935:Worked with Billy Mason, then again with Louis Freeman's Orchestra in Glasgow until joining Teddy Joyce in June 1935. +1936: Left Carl Tauber to join Ambrose briefly in spring. Later with Sydney Kyte and Gerry Moore. +1937: Worked with Benny Carter in London +1938: With Roy Fox, then joined Dennis Van Thal's Orchestra (summer) and later with Oscar Grasso's Band. +1939:joined Geraldo (January), also did regular radio work with Phil Watts (1938-9). With Jack Nathan's Quintet (late 1939). +1940: Joined RAF and became founder-member of the Squadronaires. +Also guested with various bands during the early 1940s, including work with Lew Stone, Johnny Claes. Remained with the Squadronaires through World War II, and stayed until early 1952. +Then became highly successful freelance musician, often with the BBC Variety Orchestra. Studio work through the 1960s and 1970s, regularly with the BBC Radio Orchestra. Continued to play freelance gigs including taking part in Dave Hancock's Big Band during the 1970s. Needs Votehttp://www.r2ok.co.uk/mcdev1.htmBenny Carter And His OrchestraLew Stone And His BandThe SquadronairesRoy Fox & His Orchestra + +1330750Axel SkoubyDanish jazz trumpeteer and vocalistNeeds VoteErik Tuxen Og Hans OrkesterKai Ewans Og Hans Orkester + +1330751Freddy GardnerFrederick James GardnerBritish jazz saxophonist (Dec. 23, 1910, London - July 26, 1950). + +Gardner was a self-taught musician with minimal coaching. He formed the semi-professional New Colorado Band in 1928, and a year later entered the band in a contest at Chelsea Town Hall, and won. He was spotted by the founding editor of [i] Melody Maker [/i] magazine, and had secured his first regular professional position later that year. In 1933, Freddy was taken under the wing of [a503363] and recorded with [a1363213]. + +He developed his technique by working in bands led by [a=Sydney Lipton], [a1787775], and [a1787696]. As a skilled clarinetist, alto, tenor, and baritone saxophonist, Gardner became a prolific recording session player. He can be heard on numerous recordings by [a=The Four Stars (2)], [a399308], [a2192655], [a258701], [a1396265], [a307402], [a503363], [a=Ike Hatch], [a=Mario Lorenzi], and the internationally famous team of pianist [a258423] and singing tap dancer [a=John W. Bubbles] (of [a1678807]). + +Gardner led small groups in 1936-37, on the Interstate label, distributed by Interstate Music in East Sussex, England. Toward the end of 1937, he began to be billed as "Freddy Gardner and his Swing Orchestra' with which he made many recordings. The band included such musicians as [a324534] and [a307263]. After serving in World War II he was featured as a soloist with [a2294205]. + +Gardner was tragically felled by a stroke in 1950, and passed away at the age of 39 on July 26, 1950. +Needs Votehttp://www.allmusic.com/artist/freddy-gardner-p25582http://books.google.com/books?id=I5wrGL-a-Q8C&pg=PR3-IA180&dq=freddy+gardner&hl=en&ei=yZtOTqKuNIWCgAeAtszvBg&sa=X&oi=book_result&ct=result&resnum=2&ved=0CEMQ6AEwAQ#v=onepage&q=freddy%20gardner&f=falsehttp://en.wikipedia.org/wiki/Freddy_Gardnerhttp://blogcritics.org/music/article/freddy-gardner-made-music-to-swoon/https://adp.library.ucsb.edu/names/203591Fred CarterFreddie GardinerFreddie GardnerFreddy Gardner, Saxophone SoloFrederick GardnerGardnerBenny Carter And His OrchestraLou Preager & His OrchestraSydney Lipton And His Grosvenor House BandBilly Bissett And His OrchestraBert Firman And His OrchestraEddie Gross-Bart & His Café Anglais BandFreddy Gardner And His Swing OrchestraBosworth Modern Jazz GroupFreddy Gardner And His Mess MatesThe Four Stars (8) + +1330752Aage VossDanish 30's jazz alto and baritone saxophonistNeeds VoteÅge VossSvend Asmussens OrkesterLeo Mathisens OrkesterLeo Mathisens BandMatadorerne (2)Kai Ewans Og Hans OrkesterKai Ewans And His Swinging 16 + +1330754Jack PetJacques PetJazz guitarist, banjoist and bassist. He was with [a=The Ramblers] from 1926 until the late 1930sNeeds Votehttps://www.last.fm/music/Jacques+PetJaap PetJac PetJac. PetJacques PetJak PetThe Ramblers + +1330755Gerry MooreGerald Asher Moore.British jazz pianist. +Born : October 08, 1903 in Highbury (London), England. +Died : January 30, 1993 in Twickenham (London), England. +Gerry worked with Coleman Hawkins (first British player to play with the legendary saxman in 1934), and with his own groups. + +For the British classical pianist (1899 - 1987), please use [a845919]Needs VoteG. MooreMooreBenny Carter And His OrchestraThe Gerry Moore 'Organ'-isationBenny Carter & His Swing QuintetCarlo Krahmer's Hot SevenGerry Moore & His Chicago Brethren + +1330756Nico De RooyNicolaas de RooijDutch jazz pianist. Born February 27, 1906 in Rotterdam, died February 17, 1959 in The Hague. +He started his career at the Palace in The Hague in December 1920. On August 26, 1935, he replaced Theo Uden Masman in the recordings of the Ramblers.Needs Votehttp://www.r-jam.nl/portfolio/nico-de-rooy-door-martin-lodewijk/Nich De RoyNico De RooijNico de RooijNico de RooyThe RamblersTuschinsky's Berceley's Jazz Band + +1330757Sal DoofSalomon DoofDutch jazz saxophonist and violinist, Amsterdam, 17th April 1901 – Sobibor, 9th July 1943Needs Votehttps://www.last.fm/music/Sal+Doof/+wikiSal DoorThe Ramblers + +1330759George Elliott (2)George Henry ElliottUK composer and studio musician, guitar and steel guitar; active 1930s to 1960s; Jazz, Pop, Celtic, HawaiianNeeds VoteElliottGeo. ElliottGeorge ElliotGeorge ElliottJorge Enrique (3)Benny Carter And His OrchestraBert Firman And His OrchestraGeorge Elliott & His Sweet Music Makers + +1330760Knut KnutssonJazz tenor saxophonistNeeds VoteKnut KnutssønKnut KnutsønLeo Mathisens OrkesterKai Ewans Og Hans OrkesterSvend Asmussen Og Hans Swing-QuintetAsmussen Trioen + +1330762Wally MorrisJazz bassistNeeds VoteW. MorrisBenny Carter And His OrchestraBenny Carter And His Swing QuartetBenny Carter & His Swing Quintet + +1330763Bill MulraneyJazz trombonistCorrectBenny Carter And His Orchestra + +1330764George Van HelvoirtDutch trumpet playerNeeds VoteGeorge van HelvoirtThe RamblersThe Sem Nijveen Quartet + +1330766Al BurkeJazz bassistCorrectBenny Carter And His Orchestra + +1330769Palmer TraulsenDanish trombonist (1913-1975). Also plays lurs on the recording Klange fra Danmarks bronzealderlurer (Music blown on lurs from the Danish Bonze Age). Needs Votehttps://pt.wikipedia.org/wiki/Palmer_TraulsenP.T.Leo Mathisens OrkesterWinstrup Olesen Og Hans Ambassadeur OrkesterKai Ewans Og Hans OrkesterKai Ewans And His Swinging 16Kaj Timmermann's Septet + +1330774Kai EwansKai Peter Anthon Ervans NielsenDanish clarinetist, alto saxophonist and band leader (April 10, 1906 – April 3, 1988). Professional musician from the age of 15, touring in Europe and the US. Back home he joined the orchestra of [a=Kaj Julian Olsen] and 1932-1936 [a=Erik Tuxen Og Hans Orkester] before forming his own band that became a career starting point for such artists as [a=Erik Parker (2)] and [a=Henry Hagemann]. Band vocalists included Ingelise Rune, [a=Raquel Rastenni] and [a=Freddy Albeck]. + +In 1947 Ewans paused his musical career and left Denmark to become a businessman in the US. From 1960 to 1964 he had a Beverly Hills restaurant totgether with jazz saxophonist [a=Benny Carter]. In the late 60's he returned to Denmark and to music as well before settling again in the US until his death. +Needs Votehttp://da.wikipedia.org/wiki/Kai_EwansEwansK. EwansKai EvansKai Nielsen (Ewans)Kaj EwansKai Julians OrkesterKai Ewans Og Hans Stjerne-SolisterErik Tuxen Og Hans OrkesterKai Ewans' DanseorkesterKai Ewans Og Hans OrkesterValdemar Eiberg Og Hans Jazz OrkesterKai Ewans And His Swinging 16Kai Ewans KvartetKai Julians DanseorkesterKai Ewan's Hawaiiorkester + +1330776Andre Van Der OuderaaSaxophonist, violinist and clarinetist.Needs VoteAndre Van Den OuderaaAndre Van Der OuderaAndre Vanden OuderaaAndre VanderouderaaAndré Van Der OuderaaAndré VanderouderaaAndré v.d. OuderaaAndré van OuderaaAndré van der OuderaaVan Der Ouderaav. d. OuderaaThe Ramblers + +1330899Errol GirdlestoneBritish bass vocalist, pianist and music conductor, founding member of [a361592].Needs Votehttps://en.wikipedia.org/wiki/Errol_Girdlestonehttps://www.bach-cantatas.com/Bio/Girdlestone-Errol.htmThe Hilliard EnsembleMusic Now Ensemble 1969Ensemble Vocal Syrinx + +1331145Victorien SardouFrench dramatist, born 5 September 1831 in Paris, France and died 8 November 1908 in Paris, France.Correcthttp://en.wikipedia.org/wiki/Victorien_SardouBardouSardouSardoyV. SardouV.SardouВ. Сарду + +1331223Geoffrey GilbertGeoffrey Winzer GilbertEnglish classical flautist (1914–1989), a teacher at the Guildhall School of Music. +Father of [a2066396]. +Needs Votehttp://www.geoffreygilbert.org/http://en.wikipedia.org/wiki/Geoffrey_GilbertLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraGeraldo And His Orchestra + +1331224James Bradshaw (2)James Parkin BradshawBritish classical timpanist, born 1893 in Sheffield, Yorkshire, England, UK.Needs VoteJ. BradshawRoyal Philharmonic OrchestraPhilharmonia Orchestra + +1331296Dave GonzalesTrumpet PlayerNeeds VoteDave GonsalesDave GonzalezLionel Hampton And His Orchestra + +1331370Bohdan WodiczkoPolish classical conductor (2 July 1911, Warsaw — 12 May 1985, Warsaw). His son, [a=Krzysztof Wodiczko] (b. 1943) is a critically-acclaimed contemporary artist, designer and art educator.Needs VoteB. WodiczkoBodhan WodiczkoBogdan WodiczkoVohdan WodiczkoБ. ВодичкоOrkiestra Symfoniczna Filharmonii NarodowejWielka Orkiestra Symfoniczna Polskiego Radia + +1331522David BroughtonBassist.Needs VoteRoyal Philharmonic OrchestraAluminium + +1331552Daniela RusoPianist and harpsichordist from Slovakia.Needs VoteD. RusoD. RusoovaDaniela RusóDaniela RusóovaDaniela RusóováДаниэла РузоCapella Istropolitana + +1331667László SzilvásyHungarian classical cellistNeeds VoteLaszlo SzilvasySzilvássy LászlóHungarian State Orchestra + +1332155Walter SingerWalter Singer (27 December 1941) is an Austrian horn player. He's the brother of [a6373990].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +1332213Albert WynnAmerican jazz trombonist. + +Born : July 29, 1907 in New Orleans, Louisiana. +Died : May, 1973 in Chicago, Illinois. +Needs Votehttps://adp.library.ucsb.edu/names/104819A. WynnAl WynnWynnWynneFletcher Henderson And His OrchestraSam Wooding And His OrchestraAl Wynn's Gutbucket SevenAl Wynn And His Gutbucket FiveWynn's Creole Jazz BandJames Boucher Et Son JazzSam Wooding And His Chocolate Kiddies + +1332854Frank "Machito" GrilloFrancisco Raúl Gutiérrez GrilloFrancisco Raúl Gutiérrez Grillo (February, 16, 1912, Havana, Cuba - April 15, 1984, London, England). In the late 1920s and 1930s, Machito played the maracas and sang with some of Cuba’s most popular dance orchestras including Ignacio Piñeiro’s Septeto Nacional, María Teresa Vera’s [a2932438], and El Sexteto Agabama. + +[a408342] and Machito formed a musical partnership and in October 1937, Bauzá invited Machito to join him in New York. + +In 1943, Machito and Bauzá recorded [m2333206] which is considered the first Afro-Cuban jazz recording. Needs Votehttps://nmaahc.si.edu/latinx/frank-machito-grillohttp://www.descarga.com/cgi-bin/db/archives/Profile49http://en.wikipedia.org/wiki/MachitoE. GrilloF. "Machito" GrilloF. GrilloF. Machito GrilloFram GrilloFrancisco GrilloFrancisco Grillo "Machito"Francisco GriloFrancisco Raul GrilloFranck GrilloFrank 'Machito' GrilloFrank BrilloFrank GrilloFrank Grillo "Machito"Frank Grillo, MachitoFrank Grillo/MachitoGrilloMachitoRaul GrilloMachitoMachito And His OrchestraMachito & His Afro-CubansMachito And The SkylarksMachito And The TrioMachito And His Salsa Big BandMachito Y Su Conjunto + +1333221Das Große Wiener BallorchesterAustrian orchestra from Vienna, performing ball-related music as Waltzes.Needs VoteBallhaus-Orchester, WienDas Grosse Wiener BalhausorchesterDas Grosse Wiener Ball OrchesterDas Grosse Wiener Ball- Und TanzorchesterDas Grosse Wiener Ball-OrchesterDas Grosse Wiener Ballhaus OrchesterDas Grosse Wiener BallhausorchesterDas Grosse Wiener BallorchesterDas Große Berliner BallorchesterDas Große Wiener Ball OrchesterDas Große Wiener Ballhaus-OrchesterDas Große Wiener BallhausorchesterDas Wiener Ball-OrchesterDas Wiener BallorchesterGran Orquesta De VienaGreat Vienna BallorchestraGroot Weens BalorkestGroßes Wiener Ball-OrchesterGroßes Wiener BallorchesterOrchester Der Wiener BallsäleOrchestra Di ViennaOrquesta De Baile De VienaSu Gran Orquesta VienesaThe Ball Orchestra Of ViennaThe Great Vienna Ball OrchestraThe Great Vienna BallorchestraThe Vienna Ball OrchestraThe Vienna Ballhaus OrchestraThe Vienna Ballroom OrchestraVienna Ball Orch.Vienna Ballroom OrchestraWiener Ball OrchesterWiener Ball OrchestraWiener Ball-OrchersterWiener Ball-OrchesterWiener Ballhaus-OrchesterWiener BallhausorchesterWiener BallorchesterWiener-Ball-OrchesterContinental-Ball-Orchester + +1333391Neil JacksonNeil JacksonNeeds Votehttps://www.facebook.com/ampattackN. JacksonAmp AttackCamp AttackDiva QueensTangerine Funk Funks + +1333897Jörg Ewald DählerSwiss classical keyboard instrumentalist, conductor and composer, + +Born March 16, 1933 in Bern, Switzerland. +Died on November 3, 2018.Needs Votehttps://fr.wikipedia.org/wiki/J%C3%B6rg_Ewald_D%C3%A4hler/DählerJ. E. DählerJ.E. DählerJorg Ewald DahlerJörg DählerJörg E. DählerJörg EwaldJörg Ewald DaehlerJörg-Ewald DählerCamerata BernOrchestre De Chambre De LausanneInstrumentalensemble Hans-Martin Linde + +1333901Amy ZolotoClarinetist born in Chicago, Illinois. She joined The Cleveland Orchestra in 2019 and previously played with the Jacksonville Symphony Orchestra, the Toronto Symphony from 2014 to 2016, and the New York Philharmonic beginning in 2016.Needs Votehttps://www.clevelandorchestra.com/discover/meet-the-musicians/clarinets/zoloto-amy/New York PhilharmonicThe Cleveland OrchestraToronto Symphony OrchestraJacksonville Symphony OrchestraSylvan Winds + +1334049Simon WhistlerBritish classical viola player and visual artist (born in Barnstaple, Devon, September 10, 1940; died April 18, 2005). In 1994 he left his career as a professional musician to devote himself to full-time engraving. +Needs VoteSimon WhictlerThe Academy Of Ancient MusicLondon Classical PlayersThe Astarte Session OrchestraHausmusik (2)Rasoumovsky Quartet + +1334169Roderick EarleBritish classical bass and professor at the Royal College of Music, London.CorrectSt. John's College Choir + +1334309Colin HortonClassical hornist.Needs VoteLondon Symphony OrchestraLondon Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical PlayersThe English Concert + +1334310Dominic WeirBritish classical bassoonist, contrabassoonist, reed maker, repairer, and contrabassoon & reed-making teacher. Born 25 January 1933 in County Durham, England, UK - Died 15 January 2013. +For his National Service he signed up in [a=The Band Of The Corps Of Royal Engineers] where he discovered the bassoon. After his National Service he went on to study at [l305416]. He then joined the [a=Sadler's Wells Opera Company]. There he met and married Principal Soprano, [url=https://www.discogs.com/artist/576483-Wendy-Weir]Wendy Baldwin[/url]. From 1963 to 1968 he was a member of the [a=City Of Birmingham Symphony Orchestra], initially as second bassoonist and then as contrabassoonist. In 1968 he moved to London to join the [a=Royal Philharmonic Orchestra] and later the [a=London Philharmonic Orchestra]. He taught contrabassoon and reed-making at both the Guildhall School of Music & Dance and the [l459222].Needs Votehttps://doczz.net/doc/357089/double-reed-75.qxd---british-double-reed-societyLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraCity Of Birmingham Symphony OrchestraSadler's Wells Opera CompanyThe Band Of The Corps Of Royal Engineers + +1334312Michael HirstClassical flautist & piccolo player and teacher.Needs VoteLondon Symphony OrchestraBBC Symphony OrchestraCity Of Birmingham Symphony OrchestraOrchestra Da Camera + +1334313Ray ParmigianiClassical percussionist.Needs VoteLondon Symphony Orchestra + +1334314Michael AngressClassical clarinetist.Needs VoteMike AngressLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia Orchestra + +1334315Terence MortonBritish classical violinist. Born in 1934 in Sheffield, England, UK - Died 15 January 2012. +He studied at the [l459222]. He joined the [a=London Symphony Orchestra] as a member of the Second Violin section in 1966 following nine years with the [a=Hallé Orchestra]. In 1991 he put down his fiddle and became the Orchestra's Personnel Manager until his retirement in 1999. He served on the Board of Directors for ten years, becoming Chairman for a year in 1987.Needs Votehttps://lso.co.uk/more/news/115-terry-morton.htmlT. MortonTerry MortonLondon Symphony OrchestraHallé Orchestra + +1334420Philipp NaegelePhilipp Otto NaegeleGerman-born US violinist, violist and scholar (* 22 January 1928 in Stuttgart, German Empire; † 31 January 2011 in the USA).Needs Votehttp://en.wikipedia.org/wiki/Philipp_Naegelehttp://www.bach-cantatas.com/Bio/Naegele-Philipp.htmNaegelePh. NaegelePhilip NaegelePhilipp NaegelsPhilipp NagelePhilipp NägelePhilipp O. NaegelePhillip O. Naegeleフィリップ・ネイゲルThe Cleveland OrchestraMarlboro Festival OrchestraCantilena Chamber PlayersHeidelberger KammerorchesterEnsemble BoccheriniHeidelberger Barockensemble + +1334588Benoît GiauxBelgian bass & baritone vocalistNeeds Votehttp://www.choeurs-union-europeenne.net/new/index.php/en/component/content/article/36B. GiauxBenoft GiauxBenoit GiauxChoeur de Chambre de NamurOctavia Alta De NamurWitloof Bay + +1334648Rufus OlivierAmerican bassoonist, born in 1955.Needs Votehttps://music.stanford.edu/people/rufus-olivier-jrRufus Olivier Jr.Rufus Olivier, Jr.San Francisco SymphonyLos Angeles Philharmonic OrchestraSan Francisco Contemporary Music PlayersSan Francisco Opera OrchestraSan Francisco Ballet OrchestraStanford Woodwind Quintet + +1334778Paul Laurence (3)Classical double bassist.Needs VoteLondon Symphony Orchestra + +1334779James Potter (2)Classical cellist. +Former member of the [a=London Symphony Orchestra] (1979-1984).Needs Votehttps://www.imdb.com/name/nm2118696/Jim PotterLondon Symphony OrchestraRoyal Ballet Sinfonia + +1334780John Forrester (2)Classical viola player.Needs VoteLondon Symphony Orchestra + +1334781Christopher Nicholls (2)Classical flautist.Needs VoteC.NichollsChris NichollsChris NicollsLondon Symphony OrchestraEnglish Chamber Orchestra + +1334782Cyril Reuben (2)British classical violinist. Born 6 or 8 October 1926 in Splott, Cardiff, Wales, UK - Died 2 September 1996. +Former longtime member of the 1st violin section of the [a=London Symphony Orchestra] (1956-1993). +Brother of [a=Bernice Rubens].Needs Votehttp://pronetoviolins.blogspot.com/2009/10/reuben.htmlC. ReubenC. RuebenCyril ReaubenCyril Rubenシリル・ルーベンLondon Symphony Orchestra + +1334783Jim Douglas (2)Freelance classical oboist.Needs VoteLondon Symphony Orchestra + +1334784David Miles (4)Classical bassoonist.Needs VoteLondon Symphony Orchestra"Oliver!" 1994 London Palladium Cast, Orchestra + +1334785Paul Davies (8)Paul Edmund-DaviesBritish classical flautist. +He studied at [l305416]. As a teenager, he had been in the [a861263] for three years. +He was born Paul Edmund Davies, but he hyphened his middle name to his surname in the 1990s, [b][url=https://www.discogs.com/artist/960483-Paul-Edmund-Davies]Paul Edmund-Davies[/url][/b].Needs Votehttps://pauledmund-davies.com/https://www.facebook.com/edmunddaviesflute/https://www.linkedin.com/in/paul-edmund-davies-205b1b35/https://www.ram.ac.uk/people/paul-edmund-davieshttps://www.principalchairs.com/flute/paul-edmund-davies-interview-apr-14-part-1/https://thefluteview.com/2020/12/paul-edmund-davies-and-simply-flute/https://flutecenter.com/pages/paul-edmund-davies-bootcamphttps://vgmdb.net/artist/22860Paul Edmund DaviesThe Academy Of St. Martin-in-the-FieldsNational Youth Orchestra Of Great Britain + +1334786Brian Evans (6)Classical viola player.Needs VoteLondon Symphony Orchestra + +1334787Ray Brown (8)British classical trombonist. +2nd Trombone with the [a=Philharmonia Orchestra]. +Son of [a=Stanley Brown (5)].Needs VoteRaymond BrownLondon Symphony OrchestraPhilharmonia OrchestraPhilip Jones Brass EnsembleWestminster Brass EnsembleThe Philip Jones Quartet + +1335218George SchickAmerican classical keyboardist and conductor. +Dorn in 1908 and died in 1985 (age 76). +Noted opera conductor and music director of the Metropolitan Opera Studio. President of the Manhattan School of Music from 1969-76. He was an accompanist for tenor vocalists [a560804] and [a1335218].Needs Votehttp://www.nytimes.com/1985/03/08/arts/george-schick-76-is-dead-president-of-music-school.htmlhttps://en.wikipedia.org/wiki/George_SchickChicago Symphony Orchestra + +1335219Allan Graham (2)American percussionist, born in 1912.Needs VoteAllen GrahamChicago Symphony Orchestra + +1335220Irwin FischerIrwin Fischer (b. July 5 1903-d. May 5 1977) was an American composer, born in Iowa City, Iowa. He studied at the American Conservatory in Chicago (where he was appointed to teach in 1928), with Boulanger in Paris (1931) and with Kodály in Budapest (1936). In the 1930s he developed a polytonal technique he called ‘biplanal’; in the 1960s he began to use systematic serialism. His songs display an exceptional variety of styles and techniques. + +Fischer was a graduate of the University of Chicago and was organist of the Chicago Symphony Orchestra for 22 years. He was Dean of Faculty at the American Conservatory of Music.Needs Votehttp://composers.com/irwin-fischerFischerFisherChicago Symphony Orchestra + +1335221Edward MetzengerEdward M. MetzengerAmerican timpanist and percussionist, born 1902 in New York City and died 9 April 1987.Needs VoteEd MetzengerChicago Symphony OrchestraDavid Carroll & His Orchestra + +1335223Thomas GleneckeAmerican percussionist, born 27 January 1895 and died in June 1979.Needs VoteChicago Symphony Orchestra + +1335224Lionel SayersPercussionist and librarian, born 31 October 1904 in England and died August 1986 in the United States.Needs VoteChicago Symphony Orchestra + +1335314Éric FrançoisOrganist and tenor vocalist.Needs VoteEric FrançoisChoeur de Chambre de NamurOctavia Alta De Namur + +1335315Caroline WeynantsBelgian soprano vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Weynants-Caroline.htmCWChoeur de Chambre de NamurOctavia Alta De NamurLa FeniceVox LuminisEnsemble Correspondances + +1335318Véronique GossetClassical alto vocalistNeeds VoteChoeur de Chambre de NamurOctavia Alta De Namur + +1335466Alexander BrottJoël BrodCanadian (Québec) conductor, composer, violinist and teacher, born March 14, 1915 in Montréal and died April 1, 2005 in Montréal. He is the founder of the [a1335467]. Husband of Lotte Brott, and father of [a=Denis Brott].Needs Votehttps://www.thecanadianencyclopedia.ca/en/article/alexander-brott-emcAlex BrottBrottOrchestre symphonique de Montréal + +1336043Gilles LebrunTrombonist.Needs VoteOrquesta Sinfónica De Madrid + +1336044Alejandro GalánSpanish trombone player.Needs VoteOrquesta Sinfónica De Madrid + +1336405Ruth PriceEdithea BrintonAmerican jazz singer. Born April 27, 1938 in Phoenixville, Pennsylvania, USA. +A talented singer whose wide expressive qualities do justice to any lyrics that she chooses to interpret, Ruth Price has made relatively few recordings throughout her career. Originally a dancer, she attended ballet school in 1952. However, by 1954 she was singing with Charlie Ventura and, after freelancing in Philadelphia, she worked as a singer and dancer in New York. Price moved to Hollywood in 1957, recorded a fine album with Shelly Manne (which has been reissued in the Original Jazz Classics series), but did not cut her second album as a leader until 1983 (for ITI). She toured with Harry James (1964-1965), but in the '90s became best known for running one of Los Angeles' top jazz clubs, the Jazz Bakery.Needs Votehttps://en.wikipedia.org/wiki/Ruth_Pricehttps://schoolofmusic.ucla.edu/people/ruth-price/https://shoutoutla.com/meet-ruth-price-founding-artistic-director-at-the-jazz-bakery/PriceHarry James And His Orchestra + +1336408Edmund SpenserEnglish poet (1552/1553 – 13 January 1599).Needs Votehttps://en.wikipedia.org/wiki/Edmund_SpenserSpenser + +1336423Helmut WeisAustrian violist, born 20 June 1937 in Vienna, Austria. He's the son of [a1689643].Needs VoteH. WeisHelmut WeissOrchester Der Wiener StaatsoperWiener PhilharmonikerWeller-QuartettThe Vienna Philharmonia QuintetKlavierquartett-Wien + +1336424Alfred StaarProfessor Alfred StaarAustrian violinist and teacher. He was born 2 June 1938 in Vienna, Austria and died 28 April 2000 in Soca, Slovenia. +CorrectAlfred StarrWiener PhilharmonikerWeller-QuartettThe Vienna Philharmonia Quintet + +1336425Ludwig BeinlAustrian cellist, born 7 July 1928 in Vienna, Austria and died 3 March 2011.Needs VoteLudwig BeinWiener PhilharmonikerSchubert-QuartettWeller-QuartettKammerorchester Der Wiener KonzertvereinigungWiener Konzerthausquartett + +1337039Harriet WingreenHarriet Wingreen (19??—26 Aug 2018) was an American pianist and celesta player, a long-time member of the [url=https://discogs.com/artist/388185]New York Philharmonic[/url] (hired by [a=Leonard Bernstein] in 1965 and retired after 47 years in 2012). She was also the Chamber Music Circle of New York's member. In 1942, Wingreen won the Ezerman Scholarship to study with [url=https://www.discogs.com/artist/2194763]Olga Samaroff-Stokowski[/url] at the Philadelphia Conservatory of Music. She continued her studies with O. Samaroff and [a1788369] at the [l477743], where Harriet also received a degree. + +Harriet Wingreen was an ex-wife of [url=https://www.discogs.com/label/80830]Monitor[/url] label's co-founder [a2234945] and the sister of Jason Wingreen (9 Oct 1920—25 Dec 2015), a film actor who provided Boba Fett's original voice in [i]The Empire Strikes Back[/i].Needs Votehttps://www.legacy.com/obituaries/nytimes/obituary.aspx?pid=190088301Beautiful AccompanistMessr. WingreenГарриет ВингриенWinifred HarrisonNew York PhilharmonicMarsius TrioNew York Philharmonic Ensembles + +1337724Helga SteenViolistNeeds VoteBergen Filharmoniske OrkesterHansakvartetten + +1337725Tom Birger BratlieClassical violinist.Needs VoteTom B.BratlieBergen Filharmoniske Orkester + +1337811Comedy DickPaul MaddoxNeeds VotePaul MaddoxO.G.R.AbandonStreet ForceAzure (5)Olive GroovesWall Haddocks + +1337833Jean FournetFrench conductor, born 14 April 1913 in Rouen, France and died 3 November 2008 in Weesp, The Netherlands. +Was chief conductor of [a2994787] from 1961 til 1978.Needs Votehttps://en.wikipedia.org/wiki/Jean_FournetFournetJ. FournetJeanM. Jean FournetΖαν ΦουρνέЖан Фурнеシャン・フルネジャン・フルネOrchestre Du Théâtre National De L'Opéra-Comique + +1338224Earl KnightJazz pianistNeeds VoteE. KnightJoe "Earl" KnightLester Young And His BandLester Young QuintetLucky Thompson And His Lucky SevenBuddy Banks Sextet + +1338489František PoštaFrantišek Pošta (22 August 1919 - 18 July 1991) was a Czech classical double bassist and music professor.Needs VoteF. PoštaFrant. PoštaFrantisek PostaPoštaФ. Поштаフランティシェク・ポシュタThe Czech Philharmonic OrchestraPrague Chamber OrchestraArs Rediviva EnsembleDvořák Chamber Orchestra + +1338828Boyd SenterAmerican jazz musician (clarinet, alto and tenor saxophone), and bandleader, born November 30, 1898 (or 1899) in Lyons, Nebraska, died June, 1982 in Oscoda, Michigan.Needs Votehttp://www.redhotjazz.com/senter.htmlhttps://adp.library.ucsb.edu/names/104821B. SenterBoyd Senter (Jazzologist Supreme)Boyd Senter's Clarinet SoloBoyd-SanterBoyd/SenterSauterSenterBoyd Senter & His SenterpedesJelly Roll Morton's Steamboat FourBoyd Senter & His Orchestra + +1338829Jelly Roll Morton And His OrchestraNeeds Major Changes"Jelley Roll" Morton's OrchestraJ.R. Morton & His OrchestraJelly Roll Marton & Orch.Jelly Roll Marton And His OrchestraJelly Roll Morton & His OrchestraJelly Roll Morton Stomp KingsJelly Roll Morton Y Su OrquestaJelly-Roll Marton And His OrchestraJelly-Roll Morton And His OrchestraJellyroll Morton & His OrchestraJoe GarlandRussell ProcopeWalter ThomasEd AndersonEdwin SwayzeeCharlie IrvisArville HarrisBarney BigardJelly Roll MortonLee BlairManzie JohnsonJoe Thomas (6)Jasper TaylorGeorge BaquetBarney AlexanderWilliam LawsWilliam CatoHarry PratherBoyd "Red" RossiterPaul Barnes (2)Wilson TownesWilliam Moore (20) + +1338908Michael CopleyClassical recorder and flute player.Needs Votehttps://en.wikipedia.org/wiki/Michael_CopleyCopleyM. CopleyThe Academy Of Ancient MusicCamerata BernThe Cambridge BuskersThe Classic BuskersThe Chuckerbutty Ocarina Quartet + +1338965Nancy DonarumaAmerican classical cellist who retired from the New York Philharmonic in 2007.Needs VoteNew York PhilharmonicNew York Philharmonic Ensembles + +1338967Michael WillensMichael Alexander WillensConductor ([a4020654]), double bass and violone player, born in Washington, DC.Needs Votehttps://koelnerakademie.de/http://www.konzertbuero-braun.de/site/kuenstlerliste/dirigenten/item-84-func-detail.htmhttp://www.bach-cantatas.com/Bio/Willens-Michael.htmMichael Alexander WillensMichele WillensMike WillensWillensConcerto KölnThe Waverly ConsortThe Handel & Haydn Society Of BostonThe Bach EnsembleKölner AkademieBoston Early Music Festival OrchestraDarmstädter Hofkapelle + +1338970Jost MeierSwiss cellist, conductor and composer. +Born March 15, 1939 in Solothurn, Switzerland. Died December 5, 2022 in Basel.Needs Votehttps://de.wikipedia.org/wiki/Jost_Meierhttps://www.musik-akademie.ch/bibliothek/de/ueber-uns/publikationen/sammlung-jost-meier.htmlMeierCamerata BernTonhalle-Orchester Zürich + +1339106Carl SternClassical cellist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +1339107Engelbert BrennerClassical Oboe and English Horn soloist (c. 1904, Vienna - September 16, 1986, Atlantic Highlands, New Jersey).Needs VoteE. BrennerEnglebert BrennerNew York PhilharmonicThe Philharmonic Chamber Ensemble + +1339484Vidal BoladoCarlos Vidal BoladoCuban conga drum musician, 2 July 1914 to 24 August 1966Needs Votehttps://en.wikipedia.org/wiki/Carlos_Vidal_Boladohttp://percusionistascubanos.blogspot.co.uk/2015/09/carlos-vidal-bolado.htmlhttps://adp.library.ucsb.edu/names/210611Carlos VidalCarlos Vidal BoladoVidal BolandoCarlos VidalTadd Dameron And His OrchestraJohnny Richards And His Orchestra + +1339486Tadd Dameron SeptetNeeds Major ChangesSeptetThe Tadd Dameron SeptetTadd DameronWardell GrayFats NavarroChino Pozo + +1339491Tadd Dameron And His BandNeeds Major ChangesTad Dameron & His BandTad Dameron And GroupTadd Dameron & His BandTadd Dameron And GroupTadd Dameron BandTadd Dameron's BandThe Tadd Dameron BandTadd Dameron + +1339627Barbara KonradClassical violinist and singer from AustriaNeeds VoteLa Petite BandeAmras StreichquartettArs Antiqua AustriaLes Buffardins1. Wiener Pawlatschen AGThe Rossetti Players + +1339903Gary SlavoGary A. SlavoAmerican Trumpet player and music teacher. + +Born: July 25, 1939 in St. Louis, Missouri +Died: July 24, 2016 in Mundelein, IllinoisCorrecthttps://www.legacy.com/obituaries/stltoday/obituary.aspx?n=gary-a-slavo&pid=181697954Stan Kenton And His OrchestraThe College All-StarsStan Kenton's Melophoneum Band + +1340323Graham Lee (5)Classical trombone player. +Principal Trombone with the [a=Royal Philharmonic Orchestra].Needs Votehttp://www.trinitylaban.ac.uk/students-staff/staff-biographies/graham-leeRoyal Philharmonic OrchestraEuropean Soloists EnsembleYoung Musicians Symphony OrchestraSpurley Hey Wind Band + +1340569Ethel EnnisEthel Llewellyn EnnisAmerican jazz singer whose career spanned seven decades. +Born November 28, 1932 in Baltimore, Maryland, USA. +Died February 17, 2019 in Baltimore, Maryland, USA. +Ennis spent the majority of her life in her hometown of Baltimore, Maryland, where she was affectionately known as the "First Lady of Jazz". + +Ethel Ennis first won national recognition for her recording “Lullaby for Losers” in 1955. In 1958, she was selected by Benny Goodman as the female vocalist for his all-star band. Later, she was chosen as a featured singer on the Arthur Godfrey Show. After performing at the 1964 Newport Jazz Festival with Billy Taylor, Cozy Cole, and Slam Stewart, she appeared with Duke Ellington and his Orchestra on television's “Bell Telephone Hour.” She followed those amazing achievements by wowing them at the Monterey Jazz Festival in duets with Joe Williams. She returned to her hometown to perform in concerts with the Count Basie Band and the Baltimore Symphony Orchestra. During that same period, she shared the bill with Cab Calloway at Harlem's Apollo Theater and played supper clubs and concert halls all over the country.Needs Votehttp://en.wikipedia.org/wiki/Ethel_Ennishttps://musicians.allaboutjazz.com/ethelennishttps://www.imdb.com/name/nm0257884/Ennisエセル・エニスBenny Goodman And His Orchestra + +1340808Nikki GleedClassical violinistNeeds Votehttps://www.facebook.com/nikki.gleedNicola GleedBBC Symphony OrchestraLondon Mozart PlayersRoyal Liverpool Philharmonic Orchestra + +1340851Barbara KlebelClassical violinist.Needs VoteBarbara KleberConcentus Musicus WienThe Amsterdam Baroque OrchestraLe Concert Des nations + +1340854Paulien KostenseDutch classical violinist and conductorNeeds Votehttp://www.paulienkostense.nl/Pauline KostenseAnima EternaCollegium VocaleLa Chapelle RoyaleThe Amsterdam Baroque OrchestraIl Seminario MusicaleDe Nederlandse BachverenigingMusica Amphion + +1340855Saskia KwastClassical harpist.CorrectСаския КвастThe Amsterdam Baroque OrchestraOrchester der Bayreuther FestspieleConcerto KölnGürzenich-Orchester Kölner Philharmoniker + +1340902Jakob SkjoldborgDanish tenor and bassistNeeds VoteSkjoldborgTheatre Of VoicesWindermereArs Nova Copenhagen + +1341150Howard LaraveaAmerican keyboardist and songwriterNeeds Votehttps://www.facebook.com/laraveamusicThree Dog Night3/4 Ton Band + +1341190Stan WrightsmanAmerican jazz pianist. +Born : June 15, 1910 in Gotebo, Oklahoma. +Died : December 17, 1975 in Palm Springs, California. + +His father was a musician and his first gigs were with his dad's band. In 1930, he moved to New Orleans and played with bandleader Ray Miller. He played with various bands and moved to Chicago in 1935-1936 to play with Ben Pollack, before becoming ill and moving back to California in 1937. Inspired in large part by an association with Spike Jones, Wrightsman ventured into the realm of musical parody; in 1941, he played and recorded with the Jones band that evolved into the City Slickers. Wrightsman left when the band moved too far afield of jazz. During the '40s, he played mainstream jazz and pop with -- among others -- Artie Shaw, Wingy Manone, Eddie Miller, Rudy Vallée, Nappy Lamare, Bob Crosby (1950-1951), Matty Matlock, Pete Fountain, the Rampart Street Paraders, Ray Bauduc, Wild Bill Davison, and Bob Scobey. He played on the soundtracks to the Red Nichols biopic "The Five Pennies" and the Jack Webb film "Pete Kelly's Blues". Wrightsman played with Fountain a great deal during the '60s and continued working in TV and film. He moved to Las Vegas in the late '60s, where he backed Wayne Newton and Flip Wilson, among others. +Needs Votehttps://adp.library.ucsb.edu/names/112513S. WrightsmanSam WrightsmanSonny WrightsmanStan WrightmanStan Wrightsman QuartetStan WrigthsmanStanley WrightmanStanley WrightsmanWrightsmanHarry James And His OrchestraThe Glenn Miller OrchestraArtie Shaw And His OrchestraEddie Miller And His OrchestraBob Crosby And His OrchestraGordon Jenkins And His OrchestraWingy Manone's Dixieland BandThe Rampart Street ParadersEddie Miller's OctetEddie Miller's Crescent City QuartetThe Capitol JazzmenSeger Ellis And His Choirs Of Brass OrchestraThe Stan Wrightsman QuartetRay Bauduc And The Bob-CatsThe Banjo KingsEddie Miller's Orchestra + +1341322Frédéric ChatouxFrench flute player.Needs VoteFrederic ChatouxOrchestre National De L'Opéra De ParisLes Musiciens De L'Opera, Paris + +1341323Nathalie GaudemerFrench cellist.Needs VoteNathalie Gaudemer FerryOrchestre National De L'Opéra De ParisLes Archets De Paris + +1341325Jean-Charles MoncieroFrench violist.CorrectJ.-C. MontcieroJ.C. MonceroJean Charles MoncieroJean-Charles MonciéroJean-Charles MontcieroOrchestre National De L'Opéra De Paris + +1341328Karine AtoKarin AtoViolinist.CorrectOrchestre National De L'Opéra De Paris + +1341330Nicolas CharronFrench double bassist.CorrectN. CharronOrchestre National De L'Opéra De Paris + +1341332Christian BrièreChristian BrièreViolinist from France.Needs VoteChristian BriereOrchestre De ParisOrchestre De Chambre Jean-François PaillardSirba Octet + +1341389August WilhelmjGerman violinist and teacher (Usingen, Duchy of Nassau, Germany, 21 September 1845 – London, England, 22 January 1908).Needs Votehttp://en.wikipedia.org/wiki/August_Wilhelmjhttp://www.bach-cantatas.com/Lib/Wilhelmj-August.htmhttps://adp.library.ucsb.edu/names/106179A. VilgelmiA. WilhelmA. WilhelmiA. WilhelmijA. WilhelmjA. WilhelmyA.WilhelmiAugust WihlelmAugust WilhelmAugust WilhelmiAugust WilhelmijAugust WilhemjAugust WolhelmjWilhelmWilhelmiWilhelmijWilhelmjWilhelmsWilhelmyWilihelmjWillhelmjА. ВильгелмиА. ВильгельмиА. Вильгельми = A. WilhelmjВилхелмиアウグスト・ヴィルヘルミ + +1341390Percy B. KahnPercival Benedict KahnEnglish composer and pianist. (9 December 1880 – 2 May 1966) +His most noted composition was the song Ave Maria with accompaniment by piano, and violin obbligato. + +Kahn accompanied some of the great musicians of the day, including violinists [a=Mischa Elman] and [a=Fritz Kreisler]; sopranos Dame [a=Nellie Melba], [a=Luisa Tetrazzini], [a=Florence Austral] and [a=Oda Slobodskaya], tenors [a=Enrico Caruso], [a=John McCormack (2)], [a=Richard Tauber], [a=Joseph Hislop] and [a=Beniamino Gigli]; and baritones [a=Titta Ruffo] and [a=John Brownlee]. Of all these artists, he was most closely associated with [a=Richard Tauber], whom he accompanied regularly for 14 years, from 1933 up to his death.Needs Votehttps://en.wikipedia.org/wiki/Percy_Kahnhttps://adp.library.ucsb.edu/names/107513B.Percy-KahnKahnKarnM. KahnMr. Percy B. KahnP. B. KahnP. KahnP. КahnP. КаhnP.B. KahnPerch KahnPercy Benedict KahnPercy KahnPercy KhanП. Кан + +1341436Antonio ScottiItalian operatic baritone, born 25 January 1866 in Naples, Italy and died 26 February 1936 in Naples, Italy.Needs Votehttps://adp.library.ucsb.edu/names/103864A. ScottiAnconio ScottiAntomio ScottiScottiSig. Antonio ScottiSignor ScottiА. СкоттиАнтонио Скотти + +1341603Tito GobbiItalian bass / baritone vocalist, born 24 October 1913 in Bassano del Grappa, died 5 March 1984 in Rome.Needs Votehttp://en.wikipedia.org/wiki/Tito_Gobbihttps://adp.library.ucsb.edu/names/354439GobbiT. GobbiT.GobbiTitto GobbiY. Gobbit. gOBBIТ. ГоббиТито Гобби + +1341880R. John BlackleyChorus-Master of [a=Schola Antiqua]Needs VoteBlackleyJohn BlackleySchola Antiqua + +1341881Cynthia SchwanClassical recorder player and soprano.CorrectThe Nonesuch ConsortSchola Antiqua + +1341882Louise BasbasClassical vocalist.CorrectSchola Antiqua + +1341883Betsy BlachlyBetsy Blachly-Chapin American vocalist and music teacher.Needs Votehttps://www.linkedin.com/in/betsy-blachly-chapin-7b33bb33PomeriumSchola Antiqua + +1341884Lawrence RosenwaldClassical vocalist and liner notes authorNeeds VoteLarry RosenwaldPomerium + +1341885David Goldstein (2)Baritone vocalist.CorrectSchola Antiqua + +1341886Ursula FobesClassical vocalist.CorrectSchola Antiqua + +1341887Nobu SiraisiClassical vocalist.CorrectSchola Antiqua + +1341888Schola AntiquaChorus specializing in early music. Its director is [a=R. John Blackley]. +Presumably from Lexington, USA. +Please do not confuse with Spanish 1984 founded [a1681093] chorus.Needs Votehttps://www.scholaantiqua.net/Iris HiskeyKathy TheilWendy GillespieAlessandra ViscontiAlexander BlachlyR. John BlackleyCynthia SchwanLouise BasbasBetsy BlachlyDavid Goldstein (2)Ursula FobesNobu SiraisiEric MentzelPeter Becker (4)Patrick Mason (2)David EchelardValery Toenes + +1342003Elizabeth BurleyClassical pianist, mostly performing as a chamber musician and orchestral pianist. +Collaborative piano professor at the [l290263].Needs Votehttps://www.rcm.ac.uk/keyboard/Professors/details/?id=02720Liz BurleyBBC Symphony OrchestraPhilharmonia OrchestraThe London SaxophonicThe Lowbury Piano Trio + +1342007Alexander Van IngenProducer and engineer for classical recordings. +Also editor, mixing and mastering engineer; and Executive Producer for recordings and projects.Needs Votehttp://www.alexandervaningen.comhttp://www.sixmusicproductions.co.ukAlex Van IngenAlex van IngenAlexander IngenAlexander Vvn IngenAlexander van Ingen + +1342018Tanya TomkinsCellist, who studied in the Netherlands with [a898403]. Needs Votehttp://www.tanyatomkins.com/La Petite BandeNieuw Sinfonietta AmsterdamLa StagioneRenoir EnsembleSoLaRe StrijktrioParnassus AvenueArchetti Baroque String EnsembleEuridice QuartetTrio d'AmsterdamThe Benvenue Fortepiano Trio + +1342026Petrus de Cruce13th-century composer, theorist, and scholar.Needs VotePierre De La Croix + +1342028Philippe de VitryFrench composer and poet, born 31 October 1291, died 9 June 1361 in Meaux, France.Correcthttp://en.wikipedia.org/wiki/Philippe_de_VitryPhilippe De VitryVitryde Vitry + +1342104Benoît HartoinCredited as Harpsichordist and Musical Assistant for classical releasesNeeds VoteBenoît HartouinLe Concert D'Astrée + +1342190Martin FladeViola player from Germany.Needs VoteOrchester der Bayreuther FestspieleunitedberlinOrchester Der Komischen Oper Berlin + +1342382Richard CooksonViola player.Needs Votehttps://www.imdb.com/name/nm10413863/https://www.allmusic.com/artist/richard-cookson-mn0001495739London Philharmonic OrchestraThe London OrchestraThe Michael Nyman Band + +1342383Nick RodwellNicholas RodwellBritish classical clarinet player and Professor of Clarinet. Born in London, England, UK. +Former Joint Principal Clarinet in the [a=London Symphony Orchestra] (1990-1997), the [a=Royal Philharmonic Orchestra], and Co-Principal Clarinet in [a=Orchestra Of The Royal Opera House, Covent Garden]. Professor of Clarinet at the [l527847].Needs Votehttps://www.imdb.com/name/nm1020639/https://www2.bfi.org.uk/films-tv-people/4ce2bbc11f9b5https://vgmdb.net/artist/22648Nicholas RodwellNick RhodwellNick RodwelNicolas RodwellLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Chamber Orchestra Of EuropeOrchestra Of The Royal Opera House, Covent GardenWind Soloists Of The Chamber Orchestra Of EuropeThe Gaudier EnsembleRoyal Academy Wind Soloists + +1342919Al GoeringSongwriter, musician (piano) - b. Chicago, Ill. 20 Dec. 1898Needs VoteA. GoeringAl GehringAl. GoeringGeoringGoeringKisco-A. GoeringSylvainJack Pettis And His OrchestraIrving Mills And His Hotsy Totsy GangAl Goering's Dance OrchestraAl Goering's Collegians + +1342920Dillon OberAmerican Jazz drummer, bell-swinger, vibraphonist, & percussionist circa 1920s. +Born April 8, 1904 in West Virginia, USA. +Died June 21, 1948 at the age of 44 in Miami, Florida, USA. +He was one of the original members of Jim Shields' "Mason-Dixon Seven" Orchestra which started at West Virginia University. From there he moved on to New York City, where he spent nine years with Ben Bernie's Orchestra. He then went to Los Angeles where he was associated with the Fox Film Corporation for fourteen years. He spent his last eight years with the 20th Century Fox studio recording orchestra.Needs Votehttps://yestercenturypop.com/2014/03/28/a-dillon-ober-playlist/https://yestercenturypop.com/tag/dillon-ober/https://www.imdb.com/name/nm0643202/https://jazzlives.wordpress.com/2012/11/28/pages-from-the-diary-of-dillon-ober/Jack Pettis And His OrchestraBen Bernie Orchestra + +1342921Jack Pettis And His OrchestraNeeds VoteJack Pettis' Orch.Jack Pettis' OrchestraAl Goering's Dance OrchestraBenny GoodmanDick McDonoughJack TeagardenJack PettisAl GoeringDillon Ober + +1342929Joe DaleAmerican jazz drummer in the Swing era, 1920's to the 1940's. He was second drummer in [a258689]'s band, also as a substitute for Krupa, when he was absent. + +Dale was married to [a=Carolyn Grey]. +Needs VoteDaleJ. DaleGene Krupa And His Orchestra + +1342930Charlie MargulisCharles Margulis.American jazz trumpeter. + +Born : June 24, 1902 in Minneapolis, Minnesota. +Died : April 24, 1967 in Little Falls, Minnesota. +Needs Votehttps://www.allmusic.com/artist/charlie-margulis-mn0001274577/biographyhttps://adp.library.ucsb.edu/names/112931C. MargulisCh. MargulisCharles MarglissCharles MargoliesCharles MargolisCharles MargulesCharles MargulisCharles Margulis, "The Horn"Charles Margulis, TrompeteCharles Margulis, TrumpetCharley MargulisCharlie MarglissCharlie MargoliesCharlie MargolisCharlie MargoulisCharlie MarguliesCharlie MargulusCharly MargulisMarvelous MargulisEnoch Light And The Light BrigadeFrankie Trumbauer And His OrchestraArtie Shaw And His OrchestraPaul Whiteman And His OrchestraBenny Goodman And His OrchestraEddie Lang's OrchestraThe Charleston City All-StarsAll Star Alumni OrchestraJoe Glover And His CollegiansThe Dorsey Brothers And Their New DynamiksThe Mason-Dixon OrchestraCharlie Margulis And His OrchestraCharles Margulis Chorus + +1343113Paul KondzielaJazz bassist.Needs VoteKondzielaP. KondzielaDuke Ellington And His OrchestraBuddy Rich And His Orchestra + +1343114Jimmy MosherAmerican saxophonist. + +Born 21 February 1938. +Died 5 May 1987.Needs VoteJ. MosherJames MosherJim MosherMosherWoody Herman And His OrchestraBuddy Rich And His OrchestraCal Tjader QuintetWoody Herman And The Swingin' HerdJazz In The ClassroomThe Herb Pomeroy OrchestraJimmy Mosher QuartetJimmy Mosher QuintetJimmy Mosher's OrchestraThe Jimmy Mosher Big Band + +1343255Gusta GoldschmidtDutch lutenist, harpsichordist, fortepianist, string maker, arranger, and editor (1913 - 2005)Needs VoteGusta van RoyenConcentus Musicus WienSyntagma MusicumAlma Musica + +1343909Alexander KokAlexander Kok, also known as [a683992] (born 14 February 1926, Brakpan, South Africa – died 1 May 2015) was a South African-born British cellist, writer, teacher, a successful session musician and a founder member of the [a454293]. He founded [a2667002] in 1957. In 1960, he became Principal Cellist in [a=BBC Symphony Orchestra] until 1965 when he left to work as a 'commercial cellist' for pop and television sessions, performing regularly with such groups as [a=The Beatles]. +Brother of violinist [a2022616] and uncle of conductor [a726168]. Son-in-law of violist [a=Harry Danks] (1964-1976).Needs Votehttp://www.alexanderkokcellist.co.uk/https://en.wikipedia.org/wiki/Alexander_Kokhttps://www.telegraph.co.uk/news/obituaries/11589637/Alexander-Kok-cellist-obituary.htmlhttps://theviolinchannel.com/alexander-kok-died-obituary-death-90-beatles-cello-cellist/https://www.the-paulmccartney-project.com/artist/alexander-kok/Bobby KokBBC Symphony OrchestraPhilharmonia OrchestraDartington String Quartet + +1344167William FranzCredited as jazz saxophonist.Needs VoteW. FranzWilliam FrenzWilliam LenzLouis Armstrong And His Sebastian New Cotton OrchestraLeon Elkin's Orchestra + +1344171Reggie JonesCredited as tuba player.Needs VoteR. JonesLouis Armstrong And His Sebastian New Cotton Orchestra + +1344232Karin ClaessonSwedish classical violistNeeds VoteGöteborgs SymfonikerHvila QuartetSommarkvintetten + +1344233Lotte LybeckLotte Lybeck PehrssonSwedish classical violinistNeeds VoteLotte Lybeck PehrssonGöteborgs Symfoniker + +1344849Dee BartonDewells Barton Jr.Born 18 September 1937 Houston, Mississippi, died 3 December 2001 Brandon, Mississippi +American singer, keyboardist, trombonist, drummer, composer, arrangerNeeds Votehttp://en.wikipedia.org/wiki/Dee_Bartonhttps://adp.library.ucsb.edu/names/303318BartonD. BartonD. BurtonDee BurtonDee Burton, WellsPartonDewells BartonStan Kenton And His OrchestraGator CreekThe College All-StarsStan Kenton's Melophoneum Band1:00 O'Clock Lab Band + +1345068Thomas MoultrieBass playerNeeds VoteThomas MoultreeTom MoultrieBenny Carter And His Orchestra + +1345070Pierre BraslavskyFrench jazzman (clarinet, saxophone player, orchestra lead). +He played with Syney Bechett in 1949 in Paris. +(Paris, 12 Nov. 1930 - 30 Jun. 1995)Needs Votehttp://www.swingfm.asso.fr/html/biographies/clarinettes/Braslavsky%20Pierre.htmP. BraslavskyOrchestre de Pierre BraslavskyPierre Braslavsky & His Band + +1345805Mel JenssenAmerican jazz violinist in the 1920's and 1930's. He was violinist of the [a311060] and also their band leader and conductor around 1930. +During 1929, when Jenssen led the band, they moved from Toronto, Canada to Detroit, Michigan.Needs VoteMel JensenMel JenssonCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm Kings + +1345810Frank MartinezAmerican jazz trumpeter who played with [a=Blue Steele And His Orchestra] in 1927 and with the [a=Casa Loma Orchestra] in the early 1930s.Needs VoteFrank Martinez "Kengue"Casa Loma OrchestraO.K. Rhythm Kings + +1346278Tomas DjupsjöbackaFinnish cellist. +also vocal creditNeeds VoteThomas DjupsjöbackaThe Chamber Orchestra Of EuropeMeta4 QuartetYlioppilaskunnan SoittajatVaasan Kaupunginorkesteri + +1346687Westminster ChoirThe Westminster Choir is composed of students at Westminster Choir College, a division of Rider University’s Westminster College of the Arts, in Princeton, New Jersey, USA. +The ensemble was established in 1920 by [a=John Finley Williamson] at the Westminster Presbyterian Church of Dayton, Ohio, USA. + +[b]Note:[/b]For British recordings, be careful not to use when [a=Westminster Cathedral Choir] or [a=The Choir Of Westminster Abbey], both located in the City of Westminster, London, U.K., are credited. + +Needs Votehttp://www.rider.edu/wcc/academics/choirs/westminster-choirhttps://adp.library.ucsb.edu/names/103273Coro De WestminsterCoro Di WestminsterCoro WestminsterDayton Westminster ChoirMale Chorus Of The Westminster ChoirMale Chorus of the Westminster ChoirMen of the Westminster ChoirThe Westminster ChoirThe Westminster choirWestminster Choir, New YorkWestminster Choir, TheWestminster ChorWestminster ChorusWestminster College ChoirWestminster KoorWestminster-ChorWestminster-Chor, DerВестминстерский Хорウェストミンスター合唱団John Finley WilliamsonJoseph FlummerfeltGlenn Parker (2)Joseph Stephenson (3)Westminster Symphonic Choir + +1347015Louis RosenblattAmerican oboist and English horn player, born 1928 in Philadelphia, Pennsylvania and died 24 August 2009 in Abington, Pennsylvania. +Member of the Philadelphia Orchestra from 1959 to 1995.Needs VoteLoise RosenblatThe Philadelphia OrchestraHouston Symphony Orchestra + +1347376Ambrose GauntlettAmbrose GauntlettBritish orchestral & chamber Cello & Viola da Gamba player and Professor of Cello. Born 1889 - Died 1978. +Studied at [l305416] & the [l527847]. In 1912, he played with [a1905359]. In 1913 he became principal cellist of the [a855061] under [a867974] and stayed there until 1929, apart from the war years. Original cellist in the newly formed [a=The London Chamber Orchestra] in 1921. In 1930, he became a founder member and Principal of the [a=BBC Symphony Orchestra]; he remained in this post until 1947, when he left to go freelance and became professor of cello at the Royal Academy of Music, a post from which he retired in 1965. From 1948 he performed with the [a=London Harpsichord Ensemble]. Also member of the [a1890895]. +Ambrose is first listed as playing the Viola da Gamba in a radio broadcast of 'light classical music' in October 1932.Needs Votehttps://www.semibrevity.com/2017/08/ambrose-gauntlett-forgotten-gamba-player-continuo-cellist/A. GauntlettAmbrose GauntletBBC Symphony OrchestraPhilharmonia OrchestraThe London Chamber OrchestraOrchestra Of The Royal Opera House, Covent GardenElizabethan Consort Of ViolsThe New Queen's Hall OrchestraLondon Harpsichord EnsembleBath Festival Chamber Orchestra + +1347377Ivor McMahonBritish violinist, born 1924, died 1972, longtime member of the Melos Ensemble. +He played with [a=Philharmonia Orchestra] from 1952. 2nd violin in the [a=Melos Ensemble Of London]. Also member of the [a=English Chamber Orchestra]. +From 1950 until his death he was married to British violinist [a=Nona Liddell].Needs Votehttps://en.wikipedia.org/wiki/Ivor_McMahonhttps://musicianbio.org/ivor-mcmahon/https://www.imdb.com/name/nm7779794/Ivor MacMahonEnglish Chamber OrchestraPhilharmonia OrchestraMelos Ensemble Of London + +1347549BeardymanDarren ForemanBritish beat-boxer. + +Born: 14 May 1982 in London, England, UK. + +He is well known as one of the most respected beat-boxers in the UK. Two years in a row, 2006 & 2007, he won the UK Beatbox Champion, becoming a judge in 2008. + +As well as releasing an album, "[url=http://www.discogs.com/Beardyman-I-Done-A-Album/master/340869]I Done A Album[/url]" (2011), he also appeared with others alongside the [a263416] conducted by [a=Jules Buckley] for the first ever "Comedy" Prom on Saturday 13 August 2011, during the Proms season of classical music concerts at the Royal Albert Hall, which featured musical comedian [a=Tim Minchin] leading proceedings. +Needs Votehttp://www.beardyman.co.ukhttps://beardyman1.bandcamp.com/https://www.facebook.com/therealbeardyman/http://www.myspace.com/beardymanhttp://en.wikipedia.org/wiki/Beardymanhttp://www.youtube.com/beardymanBeardy ManDarren Foreman + +1347720Paul Hansen (2)German bass vocalistCorrectPaul HansenChor Des Bayerischen Rundfunks + +1347940Bobby HolmesRobert E. HolmesAmerican jazz clarinetist and alto/soprano saxophonist, died January 1968. +With [a=Fess Williams] in the late 1920s, toured with King Oliver 1930, again with Fess Williams 1931, with Mills Blue Rhythm Band and Chick Webb in early 1930s, Tiny Bradshaw 1934-1935 and pianist Maurice Rocco in 1938. +Recorded with [a=King Oliver]. [a=Louis Armstrong], and [a=James Price Johnson].Needs VoteB. HolmesR. HolmesRobby HolmesKing Oliver & His OrchestraCocoanut Grove Orchestra + +1348172Erkki SeppäErkki SeppäErkki Seppä (1933–2003) was a Finnish bassist, who was the 18th most recorded studio musician in Finland in 2008. Seppä was a bassist in the standard composition of Jaakko Salo in Scandia and helped with television programs such as Lauantaileikki.Needs Votehttps://fi.wikipedia.org/wiki/Erkki_Sepp%C3%A4E. SeppäE.SeppäHelsinki City FeetwarmersBackmanin OrkesteriThe ChlorophylliesThe Spike Dope FiveÅke Granholm SextetJaakko Salon KvintettiFinnish Jazz All StarsRadion TanssiorkesteriSyntikaatin Kuoro Ja OrkesteriKauko Partion OrkesteriSäälimättömätAron AnimaalitJaakko Salon TV-yhtyeHeikki Laurilan MandoliiniyhtyeOld House Sextet + +1348203The Big AcesThis group consisted of personnel from [a1181345] augmented by two black jazz musicians (Don Redman and George Thomas). The only title made by this group was recorded at a Dorsey Brothers Orchestra session in New York on 29 December, 1928.Needs VoteThe Big Chocolate DandiesTommy DorseyGeorge ThomasJimmy DorseyFrank SignorelliJack TeagardenDon RedmanNat NatoliStan kingFrank TeschemacherCarl KressHenry Stern + +1348249Sebastian KlingerGerman cellistNeeds Votehttp://www.sebastian-klinger.com/Sebastien KlingerSymphonie-Orchester Des Bayerischen Rundfunks + +1348279Volly De FautVoltaire De Faut.American jazz clarinetist and saxophonist. + +Born March 14, 1904 in Little Rock, Arkansas, USA. +Died May 29, 1973 in Chicago, Illinois, USA. +Theatre and studio musician who worked with numerous artists including Jelly Roll Morton, Muggsy Spanier, Jean Goldkette, Ray Miller, Merritt Brunies and Boyd Senter.Needs Votehttps://en.wikipedia.org/wiki/Volly_De_Fauthttps://www.vjm.biz/newpage5.htmDe FautDeFautDefautVolly De FaultVolly DeFaustVolly DeFautVolly DefautVoltaire "Volly" De FautVoltaire 'Volly' De FautVoltaire (Volly) De FautVoltaire De FautJean Goldkette And His OrchestraMerritt Brunies & His Friars Inn OrchestraThe Stomp SixJelly Roll Morton And His Jazz TrioThe Bucktown Five + +1348288Louisiana Rhythm KingsJazz band of the 1920's and 1930's, conducted by cornettist [a269598]. Needs Votehttp://www.redhotjazz.com/lrk.htmlRed Nichols And His Five PenniesThe Louisiana Rhythm KingThe Louisiana Rhythm KingsRed Nichols' Louisiana Rhythm KingsMezz MezzrowAdrian Rollini + +1348596Sarah KnutsonViolinistNeeds VoteSara KnutsonSan Francisco SymphonyThe American SinfoniettaThe New Century Chamber Orchestra + +1348871Werner BerndsenWerner Berndsen (16 June 1920 - 4 February 2016) was a German flute player, music professor and recording engineer.Needs VoteProf. BerndsenProf. Werner BerndsenBerliner PhilharmonikerRundfunk-Sinfonie-Orchester LeipzigRIAS Symphonie-Orchester BerlinCamerata Academica WürzburgNürnberger Kammermusikkreis + +1349319Gary Crosby (2)Gary Evan CrosbyGary Crosby (born June 27, 1933, Los Angeles, California, USA – died August 24, 1995, Burbank, California, USA) was an American singer and actor. He started his career in the 1930's as a child on his father's radio program and later as a member of the Crosby Boys. He became a professional actor in the 1960's. He was one of four sons of [a164571] and [a3191648]; the others were his younger brothers [url=https://www.discogs.com/artist/1756273-Phillip-Crosby]Phillip[/url], [url=https://www.discogs.com/artist/1756274-Dennis-Crosby]Dennis[/url] and [url=https://www.discogs.com/artist/1277127-Lindsay-Crosby]Lindsay[/url]. Half-brother of [a2242416], [a2242415] and [a5015075].Needs Votehttps://en.wikipedia.org/wiki/Gary_Crosby_(actor)https://www.imdb.com/name/nm0188986/https://adp.library.ucsb.edu/names/310242Cary CrosbyCrosbyG.C.Garry CrosbyGaryGary CrosbyGary Crosby & FriendGary Crosby and friendLouis Armstrong And His All-StarsThe Crosby Brothers + +1349689William VacchianoWilliam VacchianoAmerican trumpeter and trumpet instructor, born in 1912 in Portland, Maine, USA and died 19 September 2005 in New York City, New York, USA. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteW. VacchianoNew York Philharmonic + +1350168Fletcher & FlettNeeds Major ChangesCuy Fletcher - Doug FlettD. Fletcher - D. FlettD. Fletcher / M. FlettD. Fletcher-D. FlettD. Fletcher/M. FlettD. Flett & M. FletcherD. Flett , G. FletcherD. Flett - G. FletcherD. Flett G. FletcherD. Flett, Guy FletcherD. Flett-G. FletcherD. Flett/G. FletcherD.Flett-G. FletcherDoug Fleet - Guy FletcherDoug Flegg, Guy FletcherDoug Flett & Guy FletcherDoug Flett - Guy FletcherDoug Flett / Guy FletcherDoug Flett, Guy FletcherDoug Flett-G. FletcherDoug Flett-Guy FletcherDoug Flett-Gyu FletcherDoug Flett-Mervy FletcherDoug Flett/Guy FletcherDoug Fletty, Guy FletcherDouglas Flett - Guy FletcherDouglas Flett, Mervyn FletcherF. Fletcher-D. FlettFlechter-FlettFletcher &'- FlettFletcher - ElettFletcher - FlattFletcher - FleetFletcher - FleggFletcher - FlettFletcher / FleggFletcher / FlettFletcher /FlettFletcher FlettFletcher Y FlettFletcher, FlettFletcher-FleetFletcher-FleggFletcher-FletFletcher-FlettFletcher/FettFletcher/FlattFletcher/FleetFletcher/FleggFletcher/FletFletcher/FlettFletchet-FlettFletchter - FlettFletscher-FlettFletscher/FlettFlett - FletcherFlett / FletcherFlett FetcherFlett FletcherFlett, FletcherFlett-FletcherFlett/FletcherG Fletcher - D FlettG. Fetcher/D. FlettG. Flepcher-D. FlettG. Fletcher & DougflettG. Fletcher & DougtlettG. Fletcher - D. FlettG. Fletcher - D. FleetG. Fletcher - D. FlettG. Fletcher - D. FlittG. Fletcher - D. SlettG. Fletcher - Doug FlettG. Fletcher - DougflettG. Fletcher / D. FlettG. Fletcher / Doug FlettG. Fletcher D. FlettG. Fletcher et DougflettG. Fletcher, D. FlettG. Fletcher- D. FlettG. Fletcher-D. FlettG. Fletcher-Doug FlettG. Fletcher/D. FlettG. Fletcher/D.FlettG. Fletcher; D. FlettG. Fletecher/D. FlettG. Fletscher/D. FlettG.Fletcher - D.FlettG.Fletcher/D.FlettGletcher - FleetGul Fletcher - Doug FletcherGuy And Doug ProdnsGuy Fetcher / Doug FlettGuy Flatcher/Doug FlettGuy Fletcher & Doub FlettGuy Fletcher & Doug FleetGuy Fletcher & Doug FlettGuy Fletcher - David FlettGuy Fletcher - Doug FlettGuy Fletcher - Douglas FlettGuy Fletcher / Doug FlettGuy Fletcher And Doug FlettGuy Fletcher Doug FlettGuy Fletcher Y Doug FlettGuy Fletcher and Doug FlettGuy Fletcher y Doug FlettGuy Fletcher, Doug FlettGuy Fletcher-Doug FleetGuy Fletcher-Doug FlettGuy Fletcher/D. FlettGuy Fletcher/Doug FleetGuy Fletcher/Doug FlettGuy Fletcher/Douglas FlettW. & M. Guy Fletcher - Doug FlettDoug FlettGuy Fletcher (2) + +1351159Graham WhitingClassical cornett playerNeeds VoteG.E. WhitingGrahame WhitingEnglish Chamber OrchestraThe Early Music Consort Of London + +1351721Happy CaldwellAlbert W. CaldwellAmerican jazz reed player. + +b. July 25, 1903 (Chicago, IL, USA) +d. December 29, 1978 (New York City, NY, USA) +Needs Votehttps://adp.library.ucsb.edu/names/107794Albert "Happy" CauldwellAlbert 'Happy' CaldwellH. CaldwellHappy CauldwellLouis Armstrong And His OrchestraLouis Armstrong And His All-StarsThomas Morris And His Seven Hot BabiesEddie Condon And His Hot ShotsMezz Mezzrow And His OrchestraJelly Roll Morton's New Orleans JazzmenBernie Young's Creole Jazz Band + +1351986Modest Ilyich TchaikovskyМодест Ильич ЧайковскийRussian dramatist, opera librettist and translator (born 13 May 1850 in Alapayevsk, Russia and died 15 January 1916 in Moscow, Russia). He was the younger brother of [a999914].Needs Votehttps://en.wikipedia.org/wiki/Modest_Ilyich_TchaikovskyM. CsajkovszkijM. I. TchaikovskyM. I. ČaikovskijM. I. ČajkovskijM. TchaikovskyM. TchaïkovskiM. TschaikowskyModestModest ChaikovskiModest I. TschaikowskyModest TchaikovskyModest TchaikowskyModest TschaikowskyModest ČajkovskijModeste TchaikovskyModeste TchaïkovskiModeste TchaïkovskyModesto CiaikovskiP.I. TchaikovskyPeter TschaikowskyTchaikovskyTschaikowskyМ. И. ЧайковскийМ. ЧайковскийМ.И. ЧайковскийМодест Чайковский + +1352031Roger AlbinFrench cellist, conductor and composer (30 September 1920 - 1 June 2001).Needs VoteRoger Albino AlbinOrchestre De La Société Des Concerts Du ConservatoireOrchestre National De L'Opéra De Monte-CarloLondon Baroque Ensemble + +1352032Pierre NeriniFrench classical violinist and music teacher (7 October 1915 – 27 February 2006)Needs VotePierre NériniOrchestre Des Concerts LamoureuxOrchestre De La Société Des Concerts Du ConservatoireOrchestre National De L'Opéra De ParisOrchestre De L'Association Des Concerts PasdeloupLondon Baroque Ensemble + +1352886Graham GriffithsViola player. + +[b]For the UK lecturer, conductor, pianist, & cosmposer, please use [a=Graham Griffiths (4)][/b]. +[b]For the UK jazz producer, please use [a=Graham Griffiths (2)][/b]. +[b]For the Australian pedal steel guitarist, please use [a=Graham Griffith][/b].Needs VotePhilharmonia Orchestra + +1353073Gil ShahamIsraeli-American violinist, born February 19, 1971. +His sister is pianist [a5014350]. +Married to violinist [a759896].Needs Votehttp://en.wikipedia.org/wiki/Gil_ShahamG. ShahamShahamГиль Шахамギル・シャハムOrpheus Chamber Orchestra + +1353160Georg DondererGerman cellist, born 28 June 1933 in Munich, Germany and died in Berlin 11 December 2016.Needs VoteGeorge DondererDeutsches Symphonie-Orchester BerlinRadio-Symphonie-Orchester BerlinDrolc-QuartettHartog Quartett + +1353161Günter ZornGerman oboist.Needs VoteGünther ZornRadio-Symphonie-Orchester BerlinSebon-QuintettSebon-Quartett + +1353163Kunio TsuchiyaKunio Tsuchiya (1933 - 2023) was a Japanese classical violist and violinist. He was a member of the [a260744] from 1959 to 2001.Needs VoteK. TsuchiyaKunio Tsu-ChiyaKunio TsuchyaBerliner PhilharmonikerNHK Symphony OrchestraPhilharmonisches Oktett BerlinPhilharmonia Quartett BerlinPhilharmonia Ensemble Berlin + +1353164Peter Steiner (3)Classical cellist (1928 - 2013).Needs Votehttps://de.wikipedia.org/wiki/Peter_C._SteinerBerliner PhilharmonikerDrolc-QuartettDie 12 Cellisten Der Berliner PhilharmonikerPhilharmonisches Oktett BerlinBastiaan-Quartett + +1353167Herbert StährClassical clarinetist.CorrectHerbert StahrBerliner PhilharmonikerPhilharmonisches Oktett Berlin + +1353170Eduard DrolcEduard-Josef DrolcGerman violinist and founder of the [a=Drolc-Quartett]. He was born 29 August 1919 in Lünen, Germany and died 5 June 1973 in Berlin, Germany.CorrectEdward DrolcBerliner PhilharmonikerDrolc-Quartett + +1353208Barry McDanielAmerican bass / baritone and Tenor vocalist (October 18, 1930 in Lyndon, Kansas - June 18, 2018, Berlin, Germany).Needs Votehttp://en.wikipedia.org/wiki/Barry_McDanielB. McDanielBarry Mac DanielBarry Mc DanielBerry Mac DanielBerry MacDanielBerry McDanielMcDaniel + +1354505Ben Berry (2)Needs VoteMr. B (8)Church Of DiscoFear Of Tigers + +1356055Hespèrion XXHespèrion XXEnsemble formed in 1974 by the Spanish conductor [a=Jordi Savall], together with his wife, the soprano [a=Montserrat Figueras], [a=Lorenzo Alpert] and [a=Hopkinson Smith]. +In 2000, the ensemble changed its name to [a=Hespèrion XXI]. +Needs Votehttps://www.alia-vox.com/en/artists/hesperion-xxi/https://www.bach-cantatas.com/Bio/Hesperion-XX.htmhttps://en.wikipedia.org/wiki/Hesp%C3%A8rion_XXIEnsemble Hesperion XXEnsemble Hespèrion XXHXXHesperion XXHespèrion XXIPedro EstevanRené ZossoJordi SavallJoan CaberoSergi CasademuntAriane MaurettePhilippe Pierlot (2)Eunice BrandaoLorenz DuftschmidLorenzo AlpertGuido MoriniAlfredo BernardiniGuy FerberRoland CallmarRobert ClancyXenia SchindlerDanielle LassalleRenate HildebrandPaolo GrazziAntonio BarberaJordi Ricard NovelleRégis ChenutBela ZedlakJean-Pierre Mathieu (3)Luiz Alves Da Silva + +1356495Christian IvaldiFrench pianist, born on 2 September 1938 in Paris. +Since 1969 he is professor at the Conservatoire national supérieur de Paris.Needs Votehttps://en.wikipedia.org/wiki/Christian_IvaldiC. IvaldiCh. IvaldiIvaldiクリスチャン・イヴァルディ + +1356834Benny NielsenJazz bassistNeeds VoteB. NielsenDexter Gordon QuartetThe Brew Moore QuartetAtli Bjørn TrioVan Prince And Orchestra + +1356963Hans MeyerClassical oboistNeeds VoteMeyerOrchester Kurt HohenbergerNetherlands Chamber Orchestra + +1357456Richard HarandAustrian cellist.Needs VoteHarrandR. HarantRichard HarantRichard HarrandOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Philharmonisches StreichquartettDas Europäische StreichquartettSolistenensemble Der Wiener Staatsoper + +1357965Dieter BuschnerGerman classical horn player.CorrectStaatskapelle DresdenBläservereinigung Berlin + +1357982Emilia CsánkyClassical oboist.Needs VoteEmilia CsankyEmma CsankyBudapest StringsLiszt Ferenc Chamber Orchestra + +1357983László SomClassical string instrumentalistNeeds VoteSom LászlóLiszt Ferenc Chamber Orchestra + +1358027Dionisio VillalbaClassical percussionistNeeds VoteOrquesta Sinfónica De MadridGrupo Koan + +1358030Juan Pedro RoperoJuan Pedro Ropero CastrilloSpanish percussionist.Needs VoteGrupo KoanOrquesta Sinfónica de RTVE + +1358031José Ramón EncinarSpanish conductor of classical music born in 1954 in Madrid. [a1177839] conductor since 1973 to 1992. +Titular conductor of Orquesta Filarmónica de Gran Canaria since 1982 to1984. +Titular conductor of Orquesta Sinfónica Portuguesa since 1999 to 2001. +Titular conductor and artistic direction of ORCAM [a2035962] since 2001 to 2013.Needs VoteJ. R. EncinarJose Ramon EncinarJosé Ramon EncinarRamón EncinarGrupo KoanOrquesta De La Comunidad De Madrid + +1358072Jesus Maria CorralJesús María Corral GalloSpanish oboe player. Soloist of Orquesta Sinfónica de RTVE in the 70s.Needs VoteJesús Mª. CorralOrquesta Sinfónica de RTVE + +1358086Vicente Martinez (2)Vicente Martínez LópezVicente Martínez López is a Spanish flute player. He has worked with many orchestas as Orquesta Sinfonica Nacional de Cuba, Orquesta Nacional de Moldavia, Solistas de Zagreb... For 20 years he was soloist flute on Orquesta Sinfónica de RTVE.Needs VoteVicente Martínez (padre)Vicente Martínez LópezOrquesta Sinfónica de RTVE + +1358122Zdeněk DivokýZdeněk DivokýCzech classical (French) horn player. +Born 1954 in Zlín (former Gottwaldov, Czechoslovakia). Father of Zdeněk Divoký (guitarist of [a=Nasycen]). CorrectZ. DivokýZdeněk Divoký st.The Czech Philharmonic OrchestraPražské Žesťové Trio + +1358264Trevor DansHard dance DJ / producer based in London, UK. +Manager of [l=Inertia Digital] and [l=Pitch Bend Digital] Recordings.Needs Vote + +1358349Robert Johnson (16)Australian hornist and conductor.Needs VoteSydney Symphony OrchestraSBS Radio & Television Youth Orchestra + +1358440Marie-Christine DesmontsFrench violinist.Needs VoteMarie-ChristineLa Grande Ecurié Et La Chambre Du RoyLes Musiciens Du LouvreQuatuor Margand + +1358909Clark BrodyAmerican clarinetist, born 9 June 1914 in Lansing, Michigan and died 3 November 2012 in Evanston, Illinois.Needs Votehttps://rharl25.wixsite.com/clarinetcentral/clark-brodyClark BradinChicago Symphony Orchestra + +1359239Jayne SpencerClassical violinistNeeds VoteLondon Mozart PlayersLondon Classical Players + +1359899David PuntoClassical percussionist and timpanist.CorrectBamberger Symphoniker + +1360088Roland BergerRoland Berger (born 16 June 1937 in Berlin, Germany) is an Austrian horn player.Needs VoteProf. Roland BergerDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerThe Boskovsky Ensemble + +1360736Antonio PocaterraItalian classical cellist & viol playerNeeds VoteA. PocaterraA.PocaterraOrchestra Del Teatro Comunale Di BolognaOrchestra Del Teatro Alla ScalaI Solisti Di MilanoTrio ArcophonQuartetto della ScalaI Solisti Del Teatro Alla Scala + +1360738Holger EichhornHolger Eichhorn (22 August 1942 - 23 June 2023) was a German classical cornett player, fl. 1960s, conductor and musicologist.Needs VoteHamburger Bläserkreis Für Alte MusikOrchestre De Chambre Jean-François PaillardArchiv Produktion Instrumental EnsembleMusicalische CompagneyBerliner Ensemble Für Alte MusikEnsemble Instrumental De LausanneInstrumentalensemble Hans-Martin LindeFiori Musicali + +1360800René LégerFrench trumpet player.Needs VoteR. LegerR. LégerRené LegerAlix Combelle Et Son OrchestreLucien Lavoute Et Son OrchestreGrand Orchestre De L'OlympiaClyde Borly Et Ses PercussionsMichel Legrand Et Sa Grande Formation + +1361021Liliane BertonFrench soprano vocalist (11 July 1924, Bully-les-Mines, Pas-de-Calais - Paris, 22 April 2009).Correcthttp://en.wikipedia.org/wiki/Liliane_BertonBertonL. BertonLiliane BerthonЛилиан Бертон + +1361023René DuclosChorus master/director.Needs VoteR. DuclosR. DuklosasRene DuclosRené Duclos ChorusLes Chœurs René Duclos + +1361024Choeur National De L'Opéra De ParisChorus of the Opéra de Paris (was at Palais Garnier, now Opéra Bastille since 1989, while Palais Garnier remains dedicated to ballet) +Generally associated with the [a852709]. + +Not to be confused with [a1905793].Needs Votehttps://www.operadeparis.fr/artistes/orchestre-et-choeurs/choeursArtistes, Chœurs De L'OpéraChildren's Chorus Of The Paris National OperaCho. Of The Theâtre National de l'OpéraChoers Du Théâtre National De L'Opéra ParisChoeurChoeur De L'Opéra National De ParisChoeur D'Enfants De L'Opéra National De ParisChoeur De L'Opera De ParisChoeur De L'Opéra National De ParisChoeur De L'Opéra De ParisChoeur De L'Opéra National De ParisChoeur De L'Opéra ParisChoeur De L'opéra De ParisChoeur Du Theâtre National De L'Opera De ParisChoeur Du Théàtre National De L'Opéra De ParisChoeur Du Théâtre National De L'OpéraChoeur Du Théâtre National De L'Opéra De ParisChoeur Du Théâtre National De L'Opéra, ParisChoeur Du Théâtre National De L'opéra de ParisChoeur Du Théâtre Nationale De L'Opéra ParisChoeur National De L'OpéraChoeur de L'Opéra de ParisChoeur de L'opéra De ParisChoeur de l'Opéra de ParisChoeur du Théâtre National de L'Opéra de ParisChoeursChoeurs De L'OpéraChoeurs De L'Opéra De ParisChoeurs De L'Opéra National De ParisChoeurs De L’Opéra De ParisChoeurs Du Theatre National De L'OperaChoeurs Du Théatre National De L'Opéra De ParisChoeurs Du Théatre National de L'Opéra de ParisChoeurs Du Théâtre De L'Opéra De ParisChoeurs Du Théâtre National De L' OpéraChoeurs Du Théâtre National De L' Opéra ParisChoeurs Du Théâtre National De L'OpéraChoeurs Du Théâtre National De L'Opéra De ParisChoeurs Du Théâtre National De L'Opéra ParisChoeurs Du Théâtre National De L'Opéra de ParisChoeurs Du Théâtre National de L'Opera ParisChoeurs National De L'Opera De ParisChoeurs de L'Opera National de ParisChoeurs de l'Opera National de ParisChoeurs de l'Opéra de ParisChoeurs de l’Opéra de ParisChoeurs du Théatre National de l'OpéraChoir Of The Paris OperaChoirs of the Opéra National de ParisChorChor Des Théâtre National De L' Opéra ParisChor Opéra de ParisChorusChorus of the National Opera of ParisChorus And Brass Chorus Of The Théâtre National De L'Opéra, ParisChorus Du Théâtre National De L'OpéraChorus From The Paris OperaChorus Of Paris OpéraChorus Of The National Opera Theatre ParisChorus Of The Opera National De ParisChorus Of The Opera, ParisChorus Of The Paris National OperaChorus Of The Paris National OrchestraChorus Of The Paris OperaChorus Of The Theatre National De L'OperaChorus Of The Theatre National De L'Opera, ParisChorus Of The Théatre National De L'Opéra ParisChorus Of The Théatre National de L'OperaChorus Of The Théatre National de L'OpéraChorus Of The Théàtre National De L'Opéra De Paris,Chorus Of The Théàtre National L'Opera de ParisChorus Of The Théátre National De L'OpéraChorus Of The Théâtre National De L'OpéraChorus Of The Théâtre National De L'Opéra, ParisChorus Of The Théâtre National De L'opéraChorus Of The Théâtre National De l'OpéraChorus Of The Théâtre Nationale De L'Opéra, ParisChorus Of Théâtre National De L'Opéra de ParisChorus and Orchestra of the Theâtre Nationale de l'OpéraChorus of the Paris National OperaChorus of the Paris OperaChorus of the Théâtre National de l'Opéra, ParisChorus of the Théâtre National de la OpéraChorus of the paris OperaChorus, Theatre National De L'Opera De ParisChöre Der Nationaleoper ParisChœr De L'Opera, ParisChœurChœur Du Théâtre National De L'Opéra De ParisChœur D'Enfants De L'Opéra National De ParisChœur De L'Opera, ParisChœur De L'Opéra De ParisChœur De L'opéra De ParisChœur Du Theâtre National De L'Opéra ParisChœur Du Théâtre National De L'Opéra De ParisChœur Du Théâtre National De L'Opéra de ParisChœur NationalChœur National (Paris)Chœur National De L'OpéraChœur de L'Opéra de ParisChœur de l'Opéra National de ParisChœur de l’Opéra de ParisChœur, Chœur D'Enfants De L'Opéra National De ParisChœursChœurs National De L'Opéra De ParisChœurs De L'OpéraChœurs De L'Opéra De ParisChœurs De L'Opéra National De ParisChœurs Du Theatre National De L'OperaChœurs Du Théatre National De L'OpéraChœurs Du Théatre National De L'Opéra De ParisChœurs Du Théatre National De L'Opéra de ParisChœurs Du Théàtre National De L'OpéraChœurs Du Théàtre National De L'Opéra De ParisChœurs Du Théâtre National De L'Opera De ParisChœurs Du Théâtre National De L'OpéraChœurs Du Théâtre National De L'Opéra De ParisChœurs Du Théâtre National De L'Opéra ParisChœurs Du Théâtre National De L'Opéra de ParisChœurs Du Théâtre National De L'Opéra, ParisChœurs Du Théâtre National de L'Opera ParisChœurs Du Théâtre National de l´OpéraChœurs Du Théâtre Nationnal De L'OpéraChœurs National De L'OpéraChœurs National De L'Opéra De ParisChœurs de L’Opéra National de ParisChœurs de l'Opera du LyonChœurs de l’Opéra national de ParisChœurs du Théatre National De L'Opéra De ParisChœurs du Théatre National De L'Opéra ParisCoeur Du Théâtre National De L'Opéra De ParisCoroCoro De La Opera De ParisCoro De La Ópera De ParísCoro Del Teatro Nacional de la Opera, ParísCoro Del Théatre National De L'OperaCoro Del Théâtre National De L'OpéraCoro Dell' Opera Di ParigiCoro Dell'Opera Di ParigiCoro Nacional De La Ópera De ParísCoro Orchestre Du Théâtre National De L'Opéra De ParisCoro de la Opera Nacional de ParisCoro de la Opera de ParisCoro del Théâtre National de l'Opéra de ParísFranska Nationaloperans KörLes Choeurs De L'Opera De ParisLes Choeurs De L'Opéra De ParisLes Choeurs De L'Opéra ParisLes Choeurs Du Théâtre National De L'Opéra De ParisLes Chœurs De L'OpéraLes Chœurs De ParisLes Chœurs Du Theatre National De L'Opéra De ParisLes Chœurs Du Théâtre National De L'Opéra De ParisMembers Of The Paris Opera ChorusMiembros Del Coro De La Opera De ParísMitglieder Des Chores Der Pariser OperMitglieder des Chores der Pariser OperNationaloper ParisOf The Théâtre National De L'Opéra, ParisOpera Choir Of ParisOpera Chorus Of ParisOrchestre de L'Opéra de ParisParis National Opera ChorusParis Opera ChoirsParis Opera ChorusParis Operas KorParis Opéra ChorusSoloists, ChorusThe ChorusThe Paris Opera ChoirThe Paris Opera ChoruschœurХор Парижской Оперыパリ・オペラ座合唱団パリ国立オペラ座合唱団Chœurs De L'Opéra BastilleFélicien BonifayJean SavignolMichel MarimpouyAnne-Marie TostainYvonne LaforgeVéronique HonoratSvetlana KurtzJean-Jacques NadaudFranck Lopez (2)Béatrice MalleretLilla FarkasCorinne TalibartBernard ArrietaRufeng XingGrzegorz StaskiewiczGérard NoizetPaolo BondiSylvie DelaunayJian-Hong ZhaoFrancisco SimonetJian ZhaoCaroline VerdierAlicia Garcia MunozIsabelle ZoccolaFrédéric GuieuRobert CataniaGhislaine RouxIsabelle EscalierAndrea NelliSe-Jin HwangCaroline BibasNicolas MarieVania BonevaYves CochoisSophie ClaisseOlivier BergDaniela EntchevaRigoberto Marin-PolopLaurent LaberdesqueValentine KitaineEtienne LescroartChristine DumontLina FaeschAurélie MagnéeKim TaPranvera LehnertChae Hoon BaekOok ChungLuca SannaiMartine ChoppinCaroline de VriesLaetitia JeansonAlexandra FoursacFrançois NosnyMarie-France GascardAdriana SimonChae Wook LimEsthel DurandGuillaume Petitot-BellaveneFabio BellenghiLaure MailfertSo-Hee LeeMarc ChapronVirginia Leva-PoncetHyun-Jong RohPhilippe MadrangeLaure VerguetAnne-Sophie DucretNavot BarakLaurence CollatMyriam PiguetJean-Michel DucombsEnzo CoroEmile LabinyClaudia PalliniJulien JoguetChristian-Rodrigue MoungoungouJean-Philippe Elleouet-MolinaAnnie KoganConstantin GhircauEmanuel MendesOlivier AyaultBarbara CottiFlorence Jouars-BrousseClaire ServianJoumana El-AmiouniVadim ArtamonovMuriel LangerCaroline MénardOlivier FillonDaejin BangHyun-Gyum KimMyoung-Chang KwonLaura AgnoloniConstance BradburnSlawomir SzychowiakStephanie SemeraroCarole ColineauCarla Rita VeroRodolfo CaveroPascal MesleIsabelle Wnorowska-PluchartMarco PirettaKatia HadjikinovaDan SpeerschneiderHyoung Min OhPatricia Guigui (2)Marina HallerOlga OussovaCyrille LovighiShin Jae KimPascal ChouraquiAntoine NormandIrina KopylovaCatherine Hirt-AndréJohn Bernard (3)Styliana OikonomouMarie-Cécile ChevassusAlexandre EkaterininskiPhilippe SauvezVincent MorellGilles André (2)Yingbin XieCaroline Petit (2) + +1361228Ingrid SturegårdSwedish classical violinistNeeds VoteGöteborgs Symfoniker + +1361232Claes GunnarssonClaes Anders GunnarssonSwedish classical cellist, born on 13 June 1976 in Gothenburg. + +He started to learn the cello and the piano at the age of seven. When he was sixteen he entered the Gothenburg College of Music where he in 1996 got his Master of Music and Soloist Diploma. 1996-99 he was a student at the Royal Northern College of Music in Manchester, studying with the world renowned cellist [a960895].Needs VoteGöteborgs SymfonikerTrio Poseidon (2) + +1361233Åsa RudnerSwedish classical violinistNeeds VoteGöteborgs Symfoniker + +1361235Hanna EliassonSwedish violinistNeeds Votehttp://www.wulfsonquartet.com/Hanna_en.htmlGöteborgs SymfonikerWulfson Quartet + +1361240Lars MårtenssonSwedish viola player and a member of Joelkvartetten.Needs VoteSnykoGöteborgs Symfoniker + +1361400Corey SoljanCorey Alexander SoljanIPI 00621579936Needs Votehttp://www.myspace.com/inversedjC SoljanC. SoljanC. SoljanC.A. SoljanC.SoljanCorey Alexander SoljanCorey SoljianSoljanSoljan, CoreyInverseCode BlackBRK3BioweaponTac Team3Blokes + +1361463Paolo BiordiViol and Viola da Gamba player.Needs VoteLa FolliaQuartetto Italiano Di Viole Da GambaIl Giardino ArmonicoAccademia Strumentale Italiana, VeronaEnsemble "Concerto"Auser Musici + +1361470Ugo NastrucciClassical guitar / theorbo player.Needs VoteNastrucciU. NastrucciSoochEuropa GalanteEnsemble Pian & ForteEnsemble "Concerto"Faerie QueeneAlessandro Stradella ConsortOrchestra MozartCollegium Pro MusicaCapella LeopoldinaCenacolo MusicaleEnsemble Estro BaroccoCamerata LigureCapella ClaudianaLa Ghirlanda Mosicale + +1361474Enrico OnofriClassical violinist. +ConductorNeeds Votehttps://www.enricoonofri.it/E. OnofriLe Concert Des nationsIl Giardino ArmonicoEnsemble "Concerto"Ensemble La FeniceOrquesta Barroca De SevillaImaginarium EnsembleDivino Sospiro + +1362183Pierre RoullierClassical flautist.Needs VoteP. RoullierEnsemble Ars NovaEnsemble 2E2MEnsemble Orchestral De Paris + +1362185Jacqueline StrasburgerClassical viola player.CorrectEnsemble Orchestral De Paris + +1362186Eiddwen HarrhyBritish Soprano vocalist, born 14 April 1949 in Trowbridge, Wiltshire, England.Needs VoteHarrhy + +1362187Wilke Te BrummelstroeteClassical Mezzo-soprano & Alto vocalistNeeds Votehttp://www.wilketebrummelstroete.com/https://en.wikipedia.org/wiki/Wilke_te_BrummelstroeteCollegium VocaleLa Chapelle Royale + +1362188Daniel CatalanottiClassical hornist.Needs VoteEnsemble Orchestral De ParisEnsemble De Cuivres Des Hauts De France + +1362189Bernard ChapronClassical flautist.Needs VoteEnsemble Orchestral De ParisOrchestre De Chambre De Paris + +1362190Sylvain WienerClassical double bassist.CorrectEnsemble Orchestral De Paris + +1362191Simone VlegelsClassical vocalist (alto).CorrectCollegium Vocale + +1362192Daniel ArrignonClassical oboist.CorrectEnsemble Orchestral De Paris + +1362193Laurent CausseClassical violinist.Needs VoteOrchestre Symphonique Et Lyrique De NancyEnsemble Orchestral De ParisQuatuor StanislasQuatuor ViottiEnsemble Stanislas + +1362194Jean-Philippe ChavanaClassical oboist.CorrectEnsemble Orchestral De Paris + +1362195Serge SoufflardClassical viola player.Needs VoteEnsemble Orchestral De ParisOrchestre De Chambre De ParisQuatuor Arcana + +1362196Catherine GiardelliCatherine Giardelli is a French classical violinist. She's the sister of [a1088135] and [a1273086].Needs VoteLa Grande Ecurié Et La Chambre Du RoyEnsemble Orchestral De Paris + +1362197Gilles MahaudClassical hornist.CorrectGilles MahautEnsemble Orchestral De Paris + +1362198Dominique FavatClassical vocalist (alto).CorrectLes Arts FlorissantsLa Chapelle Royale + +1362199Bernard CalmelClassical viola player.CorrectB. CalmelEnsemble Orchestral De Paris + +1362200Bernard HulotClassical trombonist.CorrectEnsemble Orchestral De Paris + +1362201Marcel BardonClassical cellist.Needs VoteEnsemble Orchestral De ParisQuintette Bardon + +1362203Franck Della ValleClassical violinist.Needs VoteF.Della ValleFrank Della-ValleEnsemble Orchestral De ParisOrchestre De Chambre De ParisSalad (5) + +1362204Stéphane PartClassical oboist.Needs VoteEnsemble Orchestral De ParisOrchestre Philharmonique De Radio France + +1362205Bernadette BouthoornClassical vocalist (alto).CorrectCollegium Vocale + +1362206Gérard MaîtreClassical violinist.Needs VoteEnsemble Orchestral De ParisOrchestre De Chambre De Paris + +1362207Jean-Claude BouveresseClassical violinist.Needs VoteBouveresseJ.-C. BouveresseEnsemble Orchestral De ParisOrchestre De Chambre De ParisEnsemble Jean-Sébastien Bach + +1362208Hubert ChachereauClassical violinist.Needs VoteEnsemble Orchestral De ParisOrchestre De Chambre De ParisQuatuor Arcana + +1362209Philippe DussolClassical viola player.Needs VoteDas Mozarteum Orchester SalzburgEnsemble Orchestral De ParisOrchestre De Chambre De Paris + +1362210Pascale BlandeyracClassical violinist.Needs VoteEnsemble Orchestral De ParisOrchestre de Chambre Bernard Thomas + +1362211Michel DenizeClassical bassoonist.Needs VoteMichel DenizLa Grande Ecurie Et La Chambre Du RoyEnsemble Orchestral De Paris + +1362213Christian JacotinClassical bassoonist.CorrectEnsemble Orchestral De Paris + +1362214Philippe CoutelenClassical violinist.CorrectEnsemble Orchestral De Paris + +1362216Jacques GomezClassical vocalist (bass).CorrectCollegium VocaleLa Chapelle Royale + +1362217Dominique LobetClassical viola player.CorrectD. LobetEnsemble Orchestral De ParisQuatuor Parisii + +1362218Marion Van ZonneveldSoprano.CorrectCollegium Vocale + +1362219Daniel Jacques (3)Classical double bassist.CorrectEnsemble Orchestral De Paris + +1362221Michel TorreillesClassical trumpeter.Needs VoteM. TorreillesEnsemble Orchestral De ParisQuintette Magnifica + +1362222Stephane LeysClassical tenor.CorrectStéphane LeyStéphane LeysCollegium VocaleLa Petite Bande + +1362225Jean-Michel RicquebourgClassical trumpeter.Needs VoteJean-Michel RiquebourgEnsemble Orchestral De ParisOrchestre De Chambre De ParisEnsemble De Cuivres Des Hauts De France + +1362226Howard YangClassical violinist.CorrectEnsemble Orchestral De Paris + +1362227Christian CrenneClassical violinist.Needs VoteC. CrenneEnsemble Orchestral De ParisTrio Ravel + +1362305Guido LamellClassical violinist.Needs VoteGuido LamalGuido LamelleLos Angeles Philharmonic Orchestra + +1362383Alfredo BernardiniClassical oboist and head of the ensemble Zefiro, born in 1961 in Rome, Italy.Needs VoteA. BernardiniAlfredo BernadiniBernardiniアルフレード・ベルナルディーニCappella Musicale Di S. Petronio Di BolognaThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicLe Concert Des nationsLa Petite BandeDe Nederlandse BachverenigingHespèrion XXIHespèrion XXEnsemble Tripla ConcordiaBalthasar-Neumann-EnsembleLa Stravaganza KölnBach Collegium JapanDunedin ConsortFiati Con Tasto KölnEnsemble 1700ZefiroThe English ConcertConcerto Stella MatutinaQuartetto Bernardini + +1362384Lorenzo CavasantiRecorder and Traverso flute player.Needs Votehttp://www.lorenzocavasanti.itLorenzo CasavantiSonatori De La Gioiosa MarcaEnsemble Tripla ConcordiaEnsemble 1700Le Musiche NoveCollegium Pro MusicaOrchestra AglàiaZefiroQuartetto Icarus + +1362385Giorgio MandolesiItalian classical bassoonistNeeds VoteOrchestre De ParisFreiburger BarockorchesterEuropa GalanteEnsemble Tripla ConcordiaBalthasar-Neumann-EnsembleVenice Baroque OrchestraEnsemble PhilidorZefiroQuintette Moragués + +1362546Jacques AdnetFrench classical hornistNeeds VoteOrchestre National De L'Opéra De ParisTaffanel Quintet + +1362720Kris DeweerdtClassical vocalist (alto).CorrectCollegium Vocale + +1362721Marc Van DaeleTenor vocalist.Needs VoteMalufi SingersCollegium Vocale + +1362722Marco HorvatClassical bass vocalist, luthenist, theorbist and guitarist. Director of Ensemble [a=Faenza]Needs Votehttps://www.facebook.com/marco.horvat.3La Chapelle RoyaleLa Simphonie Du MaraisLe Poème HarmoniqueLes Cris de ParisRajesh Mehta CollectiveEnsemble AmadisAkadêmiaFaenza + +1362726Lieve MonbaliuClassical vocalist (alto).CorrectLieve MonbalivCollegium Vocale + +1362727Diane VerdoodtDutch sopranoNeeds VoteCollegium VocaleCapella Ricercar + +1362729Annemie MonbaliuSoprano.CorrectAnne-Mie MonballivCollegium Vocale + +1362730Jos BekkerClassical vocalist (alto).CorrectCollegium Vocale + +1362732Catherine BignaletSoprano.CorrectLes Arts FlorissantsLa Chapelle Royale + +1362733André BerkvensTenor.CorrectAndre BerkvensCollegium Vocale + +1362734Stephan VriesClassical vocalist (baritone).CorrectStephen VriesCollegium Vocale + +1362735Richard Taylor (8)Classical vocalist (bass).CorrectLes Arts FlorissantsLa Chapelle Royale + +1362736Ingrid WaageSoprano.CorrectCollegium Vocale + +1362738Ludwig Van GijsegemBelgian Classical tenor from Aalst.Needs VoteLudwig Van GijseghemLudwig Van GyseghemLudwig van GyseghemCollegium VocaleSchola Cantorum Cantate DominoCorona Coloniensis + +1362740Frits HofsteengeClassical vocalist (baritone).CorrectCollegium Vocale + +1362741Anne-Marie RogiestClassical vocalist (alto).CorrectCollegium Vocale + +1364362Franklin CohenAmerican classical clarinetist. He's the father of [a4126590].Correcthttp://franklincohen.com/The Cleveland Orchestra + +1364371Tomás Luis De VictoriaTomás Luis de VictoriaBorn: 1548 (Sanchidrián, Spain) Born c, 1548. +Died: 1611-08-27 (Madrid, Spain). + +Spanish composer and musician, an important composer of the Counter-Reformation, along with [a=Giovanni Pierluigi da Palestrina] and [a=Roland de Lassus]. +His name is sometimes Italianised as Tomás Ludovico da Vittoria.Needs Votehttps://en.wikipedia.org/wiki/Tom%C3%A1s_Luis_de_Victoriahttps://www.britannica.com/biography/Tomas-Luis-de-Victoriahttps://www.naxos.com/person/Tomas_Luis_de_Victoria/21136.htmhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/102909/Victoria_Tomas_Luis_deDa VictoriaDa VittoriaDe VictoriaDe VittoriaF. L. da VittoriaL. Da VictoriaL. Da VittoriaL. VittoriaL. da VictoriaL. de VictoriaLud. Da VittoriaLudovico Da VictoriaLudovico Da VittoriaLudovico Da VittorriaLudovico Tommaso Da VittoriaLudovico Tommaso da VittoriaLudovico VittoriaLudovico da VittoriaLuis De VictoriaLuis de VictoriaPadre Tomas Luis De VictoriaPadre Tomás Luis De VictoriaT. Da VittoriaT. De VictoriaT. L. Da VictoriaT. L. Da VittoriaT. L. De VictoriaT. L. De ViktorijaT. L. De VittoriaT. L. DeVictoriaT. L. VictoriaT. L. VittoriaT. L. da VictoriaT. L. da VittoriaT. L. de VictoriaT. Luis De VictoriaT. VictoriaT. VittoriaT.-L. Da VictoriaT.-L. De VictoriaT.-L. VittoriaT.L Da VictoriaT.L VictoriaT.L. Da VictoriaT.L. Da VittoriaT.L. De VictoriaT.L. VictoriaT.L. da VictoriaT.L. da VittoriaT.L. de VictoriaT.L. de VictòriaT.L.De VictoriaTL VittoriaTh. L. Da VictoriaTh. Ludovico da VittoriaTh. Luis De VictoriaTh. Luis De VittoriaTh.-L. VictoriaThomas L. De VictoriaThomas L. VictoriaThomas L. VittoriaThomas L. da VittoriaThomas Louis De VictoriaThomas Louis De VittoriaThomas Ludovico Da VittoriaThomas Ludovico da VictoriaThomas Ludovico da VittoriaThomas Ludovicus de VictoriaThomas Luis Da VictoriaThomas Luis Da VittoriaThomas Luis De VictoriaThomas Luis De VittoriaThomas Luis de VictoriaThomas Luiz De VictoriaThomas VictoriaThomas-Luis Da VictoriaThomàs Luis de VictoriaThomás Luis Da VittoriaThomás Luis De VictoriaThomás Luis de VictoriaThomáz Luiz De VictoriaTom Luis De VictoriaTomas Da VittoriaTomas L. De VictoriaTomas L. de VictoriaTomas L.da VittoriaTomas Lodovico Da VittoriaTomas Ludovico Da VictoriaTomas Ludovico De VictoriaTomas Luis Da VictoriaTomas Luis Da VittoriaTomas Luis De VictorTomas Luis De VictoriaTomas Luis De VittoriaTomas Luis VictoriaTomas Luis da VictoriaTomas Luis da VittoriaTomas Luis de VictoriaTomas Luis de VittoriaTomas Luiz Da VittoriaTomas Luiz De VictoriaTomas Luís De VictoriaTomas VictoriaTomas VittoriaTomas de VictoriaTomas-Luis De VictoriaTomas-Luiz De VittoriaTomaso Da VittoriaTomaso L. Da VittoriaTomaso Lodovico da VittoriaTomaso Ludovico Da VittoriaTomaso Ludovico De VictoriaTomaso Ludovico VittoriaTomaso Ludovico da VittoriaTomasso Ludovico da VittoriaTomasso Ludovico de VittoriaTommaso Lodovico Da VictoriaTommaso Ludovico Da VictoriaTommaso Ludovico Da VittoriaTommaso Ludovico De VictoriaTommaso Ludovico De VittoriaTommaso Ludovico VittoriaTomàs L. de VictoriaTomàs Luis De VictoriaTomás L. de VictoriaTomás Ludovico De VittoriaTomás Ludovico da VittoriaTomás Luis Da VictoriaTomás Luis De VittoriaTomás Luis VictoriaTomás Luis da VittoriaTomás Luis de VictoriaTomás Luiz De VictoriaTomás Luís De VictoriaTomás Luís de VitóriaTomás-Luis de VictoriaVICTORIAVicoriaVictoriaVitoriaVittoriaVottoriada Victoriada Vittoriade VictoriaТ. ВикторияТ. Де ВикторияТ. Л. де ВикториаТомас Луис Де ВикторияТомас Луис де Викторияトマス・ルイス・デ・ビクトリアビクトリア + +1364628George DickersonAmerican trumpet and flugelhorn player Needs Votehttps://www.masterguitarschool.com/post/jam-tales-haji-ahkbahttps://www.facebook.com/haji.ahkbahttps://www.facebook.com/HajiAhkbaJazz.net/https://www.linkedin.com/in/george-edward-dickerson-69424b1a5/https://www.linkedin.com/in/george-dickerson-aka-haji-ahkba-ab3863156/DickersonG. DickersonGeorge "Haji Ahkba" DickersonGeorge "Hajiahkba" DickersonGeorge 'Haji Ahkba' DickersonGeorge DickinsonGeorge Haji Ahkba DickersonHaji AhkbaThe Jungle Band + +1364632Joe CollierAmerican trumpeter in James Brown's bandNeeds Votehttp://www.imdb.com/name/nm4017325/https://www.facebook.com/people/Joe-Collier/100010061682825/https://asignofthetimes.org/thejbs/The J.B.'sThe Jungle BandThe G.A.'s + +1365101Frank VictorFrank Viggiano.American jazz guitarist. +Frank played with, among others: Joe Venuti, Eddie Lang and Adrian Rollini. + +Born July 07, 1897 in New York City, New York. +Died February 25, 1970 in New York City, New York.Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/108206/Victor_FrankWingy Manone & His OrchestraAdrian Rollini TrioThe Al Duffy FourAdrian Rollini Quintet + +1365104George Marsh (2)George W. MarshJazz drummer, born February 22, 1894 in Dubuque, IA and died February 20, 1962 in Los Angeles. + +Joined Paul Whiteman's band in fall 1923 and played intermittently with this group until 1930. Recorded with Eddie Lang, Frankie Trumbauer, Bix Beiderbecke and others. Played in Ferde Grofé's orchestra c. 1932-1934, then moved to California to work in film studios. Radio singer [a=Andrea Marsh] is his daughter. + +Do not confused with West Coast jazz drummer [a=George Marsh].Correcthttps://en.wikipedia.org/wiki/George_Marsh_(musician)G. MarshGeorg MarshGeorge MarchFrankie Trumbauer And His OrchestraPaul Whiteman And His OrchestraEddie Lang's OrchestraGreen Brothers' Novelty BandThe Mason-Dixon Orchestra + +1365485Leo BorchardЛев Львович Боргард, Lew Ljewitsch BorchardBorn March 31st, 1899; died August 23rd, 1945, Berlin. Russian conductor and leader of the Berlin [a260744] for a brief period. + +Among others he worked with [a706861] at the German radio company ORAG. During the war he wrote a libretto for [a273520]'s "Der Großinquisitor". On May 26th, 1945 he conducted the Philharmoniker's first performance just two weeks after WWII, eventuelly becoming the leader of the Philharmoniker. + +In 1938, during the Nazi regime he founded the resistance group "Onkel Emil" together with his partner Ruth Andreas-Friedrich, helping Jews in Berlin. On August 23rd, 1945 Leo Borchard was shot by an American soldier while entering the American sector of Berlin. +Needs Votehttp://en.wikipedia.org/wiki/Leo_BorchardL. BorchardL. L. BorchardLeo BorchardtBerliner Philharmoniker + +1365558Carl ImmichNeeds Major ChangesC. ImmichImmichKarl Immich + +1366183Pavel HořejšíPavel HořejšíCzech viola player. Needs VotePavel Ho EjšíThe Czech Philharmonic OrchestraAgon OrchestraM. Nostitz Quartet + +1366198Ladislav KozderkaLadislav KozderkaCzech trumpeter. + +Born October 6, 1974 in Brno (former Czechoslovakia). Son of composer and conductor [a=Ladislav Kozderka (2)] (1913–1999) and vocalist [a=Květa Navrátilová]. +[b]Note: not to be confused with trumpeter [a=Vladislav Kozderka].[/b] +Needs Votehttp://ladislav.kozderka.sweb.czhttp://cs.wikipedia.org/wiki/Ladislav_KozderkaLáďa KozderkaThe Czech Philharmonic OrchestraAgon OrchestraOstravská Banda + +1366612Viola SmithViola Clara SchmitzBorn November 29, 1912 in Mount Calvary, Fond du Lac County, Wisconsin. +Died October 21, 2020 in Costa Mesa, California. + +American drummer, best known for her work in orchestras, swing bands, and popular music from the 1920s until 1975. She was one of the first professional female drummers. + +Born Viola Clara Schmitz, Viola Smith got her professional start in the "Schmitz Sisters" (later "Smith Sisters"), an all-girl band that her father formed out of her and her six sisters in the late 1920s. When that band fell apart in the 1930s, she and a sister formed the "Coquettes". That ensemble folded in 1941. + +In Spring 1942, Smith joined another all-girl band, [a=Phil Spitalny And His Hour Of Charm All-Girl Orchestra And Choir], with which she would stay for 13.5 years. In the same year, she also published an editorial in Down Beat magazine, in which she demanded that women musicians shouldn't just be hired during the war as temporary stand-ins for drafted men, but as actual replacements. + +By the end of the war, Smith had tired of life on the road. She left Spitalny's orchestra, but no other orchestra would hire her even though she had been compared to [a=Gene Krupa]. She continued playing, but mostly club dates. She played in the pit orchestra of the 1966 Broadway musical "Cabaret" for three years, then did summer theater until 1974. She died at age 107.Needs Votehttps://en.wikipedia.org/wiki/Viola_Smithhttps://falseto.com/2020/10/26/the-first-professional-female-drummer-viola-smith-dies-aged-107/https://timesmachine.nytimes.com/timesmachine/2000/08/10/598275.html?pageNumber=63https://www.youtube.com/watch?v=o5c_XZaArH4NBC Symphony OrchestraNational Symphony Orchestra"Cabaret" Original Broadway Cast, Kit Kat BandPhil Spitalny And His Hour Of Charm All-Girl Orchestra And Choir + +1367024Jean-Max ClémentFrench classical cellist. Born 3 March 1907, and was a professor at the École Normale de Musique de Paris.Needs Votehttp://www.musicweb-international.com/classrev/2015/Sep/Bach_cello_FR118.htmClémentJean-Max ClementOrchestre Philharmonique De Monte-Carlo + +1367249Herbert ManhartAustrian classical double-bass player, born 24 August 1938 in Vienna, Austria and died 25 September 2016 in Vienna, Austria.Needs VoteDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraHofmusikkapelle WienNew Vienna Octet + +1367250Dietmar ZemanAustrian bassoonist, born 31 March 1932 in Vienna, Austria.Needs VoteD. ZemanZemanWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerEnsemble Eduard MelkusNew Vienna Octet + +1367387Georges ArmandFrench classical conductor and violinistNeeds VoteCiorces ArmandЖ. АрманOrchestre De Chambre De Toulouse + +1367388Albert CalvayracFrench classical wind instrumentalist. Studied at the Conservatoire de Toulouse, 1948-1953. Joined the Orchestre Symphonique de Radio-Toulouse in 1957. Became Professeur at the Conservatoire de Toulouse in 1965.Correcthttps://data.bnf.fr/en/13922121/albert_calvayrac/A. CalvayracAlberto CalvayracOrchestre De Chambre De Toulouse + +1367480Jacques LancelotClarinetist, born 24 April 1920 in Rouen, France, died 7 February 2009 in Paris, France. + +From 1941 to 1950 he played with the Orchestre Lamoureux. He played as a soloist, and also with the Radio France Orchestra and the Orchestra de Chambre de Marius-François Gaillard and the Société des instruments à vent. + +In 1946 he played with the Orchestre de la Garde Républicaine and from 1947-1955 with the Orchestre de Casino de Vichy. From 1945 to 1965 he played with the prestigious Quintette à vent Français. + +As a soloist, he has made over 50 recordings. +Needs Votehttp://en.wikipedia.org/wiki/Jacques_LancelotJ. LancelotLancelotM. LancelotЖ. ЛанселотOrchestre Des Concerts LamoureuxMusique De La Garde RépublicaineOrchestre De Chambre Jean-François PaillardEnsemble Instrumental Jean-Marie LeclairQuintette À Vent FrançaisEnsemble Orchestral De L'Oiseau-LyreEnsemble À Vent Français + +1367639Willie LynchWilliam Hyland LynchSwing drummer +Born August 13, 1899 in Cambridge, Massachusetts + +Willie Lynch’s career in New York, from 1924 to mid-1930: +Drummer, Billy Butler Band/Charleston Bearcats, 1924-1926 +Drummer, Savoy Bearcats, opening the Savoy Ballroom, 1926 +Recorded with the [a=Savoy Bearcats], 1926 +Toured South America, increasing the jazz audience, 1927 +Subbed for Duke Ellington at the Cotton Club +Lynch band fronted by Louis Armstrong, 1930 +Lynch band recorded with [a=Louis Armstrong And His Orchestra], 1930 +Willie Lynch directed orchestras for numerous Harlem revues.Needs Votehttps://www.digamericana.com/news/2019/1/7/willie-lynch-drummer-biography-and-discography-1899-1930W. LynchWill LynchWilly LynchLouis Armstrong And His OrchestraThe Mills Blue Rhythm BandCocoanut Grove OrchestraSavoy Bearcats + +1367640Dudley FosdickAmerican jazz mellophone player, born 1902 in Liberty, Indiana, died June 27, 1957.Needs VoteFosdickRed Nichols And His Five PenniesTed Weems And His OrchestraGene Fosdick's HoosiersUniversity Five + +1367724David Eubanks (2)Jazz bassistNeeds VoteDave EubanksLarry Young's FuelDexter Gordon QuartetKirk Lightsey Trio + +1367799Goldie LucasBig band rhythm guitarist, jazz banjo player and vocalistNeeds VoteClarence Williams' Jazz KingsJimmy Johnson And His OrchestraHank Duncan Trio + +1368367Patrick LaruePatrick AgeronNeeds VoteLarueP. LarrueP. LarueP. LaureP.Larue + +1368407Jack SchwartzAmerican jazz saxophonist. +Brother of [a=Wilbur Schwartz]; brother-in-law of [a=Ann Clark Terry], [a=Peggy Clark], [a=Mary Clark (3)] and [a=Jean Clark]; uncle of [a=Doug Schwartz] and [a=Nan Schwartz].Needs VoteWoody Herman And His OrchestraGene Krupa And His OrchestraGeorgie Auld And His OrchestraTerry Gibbs And His OrchestraWoody Herman And The Swingin' HerdTerry Gibbs Dream Band + +1368495Helmut WeimannClassical cellistNeeds VoteHellmut WeimannGewandhausorchester Leipzig + +1368925Elisabeth BreulGerman soprano and music pedagogue, born 25 August 1925 in Gera, Germany and died 12 October 2016 in Leipzig, Germany.Correct + +1369121Johnny AmorosoAmerican singer, trumpet player and bandleader. +Born 1930 or 1931 Died April 4, 2019. +He joined [a369535] in 1951. In 1952 he joined the U.S Army Special Services Division, but rejoined Dorsey's band after he was discharged. In the late 50's he sang with [a349497], [a603974], and [a406270]. He was a regular on the ABC-TV show with [a349521].Needs Votehttps://fervor-records.com/artist/johnny-amoroso/https://de.wikipedia.org/wiki/John_Amorosohttps://adp.library.ucsb.edu/index.php/mastertalent/detail/110308/Amoroso_Johnny?Matrix_page=100000J. AmorosoJohn AmorosoJohn R. AmorosoJohnny AmarosaJohnny AmorosaTommy Dorsey And His OrchestraTommy Dorsey And His SentimentalistsJack Pleis And His Orchestra + +1369772Jean-Pierre MathezClassical trumpeter.Needs VoteŽan - Pjer MateMünchener Bach-OrchesterCollegium AureumThe Edward Tarr Brass Ensemble + +1369833Vern RoweLaverne Edward RoweAmerican actor, singer and trumpet player. +Born: July 2, 1921 in Washington State, USA +Died: September 4, 1981 (age 60) in Los Angeles, California, USA +Joined the Les Brown Band in 1943, playing trumpet, including on songs such as "My Dreams Are Getting Better All The Time" (vocals by Doris Day). He was the featured trumpeter in Frank De Vol's Orchestra. He played numerous radio and TV shows including "The Dinah Shore Show", "The Colgate Hour", "The Dean Martin and Jerry Lewis Show" and many others. +After semi-retiring from professional music, Vern moved on to acting. He played "Uncle Sam Jr." in numerous sketches in "Fernwood Toight". +He sang as part of the Merry Macs on the album "The Very Merry Macs Sing Very Merry Melodies". +He's sometimes credited as "Vernon Rowe" or "Vern E. Rowe" or "La Verne Rowe".Needs Votehttps://www.imdb.com/name/nm0746619/?ref_=nm_mv_closeLa Verne RoweLaVerne RoweVerne RoweVerne RoweLaVerne RoweHarry James And His OrchestraRandy Van Horne SingersLes Brown And His OrchestraThe Merry Macs + +1369934Ted Lewis And His BandCorrectT. Lewis And His BandTed Lewis & His BandTed Lewis & His Jazz BandTed Lewis & Son JazzTed Lewis BandTed Lewis E La Sua BandaTed Lewis Et Son JazzTed Lewis Jazz BandTed Lewis' BandNovelty Jazz BandFats WallerBenny GoodmanMuggsy SpanierTed LewisGeorge BruniesSammy ShapiroSol Klein (2)Sam Shapiro (2)John Lucas (3)Louis Martin (3)Sam BlankHarry BarthDave Klein (3)Hymie WolfsonJack AaronsonTony GirardiMaurice Aten + +1370073Rachel IsserlisClassical violinist. Sister of [a380704] and [a836771], and granddaughter of [a3208197].Needs Votehttp://www.divertimenti-ensemble.com/index.htmlRachael IsserlisThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersRaglan Baroque PlayersThe Chandos Baroque PlayersDivertimentiThe English ConcertEnsemble Rhapsody + +1370074Jaan WilsonClassical trumpeter.Needs VoteThe English Concert + +1370076Keith MarjoramClassical Violone and Double Bass Player. +Principal Double Bass of the [a=London Philharmonic Orchestra] and the [a=Royal Philharmonic Orchestra].Needs VoteK. MarjoramKeith MajoramKeith MarjaromLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe Academy Of Ancient MusicThe Kingsway Symphony OrchestraThe English Opera GroupThe English ConcertMusic Fest Octet + +1370516Günter GlassGerman violinist.Needs VoteGünter GlaßGünther GlaßGünther Glaß*Bachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +1370702Hans-Peter OchsenhoferAustrian violist and music professor, born 13 January 1948 in Graz, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener OktettThe Vienna String Quintet + +1370723Thomas SchulzeGerman tenor and vocal tutor, he sang with the [a1284573] and studied violin with [a891202].Needs Votehttps://www.bach-cantatas.com/Bio/Schulze-Thomas.htmThomas Schulze Von Den Hymnus-ChorknabenStuttgarter Hymnus-Chorknaben + +1370890Mike MooleNeeds VoteLee Konitz Quintet + +1370946William LawesEnglish composer and musician (April 1602 – 24 September 1645). Brother of [a=Henry Lawes].Correcthttp://en.wikipedia.org/wiki/William_LawesLawesMr. Williams LawesW LawesW. Lawes + +1370975András AdorjánHungarian classical flautist, born 26 September 1944 in Budapest, Hungary.Needs VoteA. AdorjánAdorjanAdorjánAdorján AndrásAndras AdorjanAndras AndorjanAndràs AdrojanAndrás Adorjanアドリヤンアンドラーシュ・アドリアンアンドラーシュ・アドリヤンSymphonie-Orchester Des Bayerischen RundfunksI Solisti VenetiBachcollegium StuttgartBach-Collegium MünchenAdorjan Quartett + +1371012Rene OussorenDutch timpanist / percussion playerNeeds VoteRené OussorenNieuw Sinfonietta AmsterdamNederlands Fanfare Orkest + +1371062Yngve ÅkerbergYngve Henning ÅkerbergSwedish bassist, organization leader and copyright expert, born on February 11, 1927 in Nässjö församling, Nässjö, Småland, and died on April 12, 2007 in Sankt Mikael, Huddinge, Södermanland. + +In the late 1940s and first half of the 1950s, Yngve Åkerberg was one of Swedish jazz's most sought-after bassists. From that time he can be heard on recordings led by [a1572948], [a1371065], [a120620], [a1117189], [a254769], [a418972], [a660136], [a252605], [a30486], [a516437], [a794883], [a577101], [a322339], [a1521126], [a1300018], [a320237], [a1139438], and many others. In 1950, he was also part of the [l574460] Elite Orchestra. + +Åkerberg had become a member of [url=https://www.facebook.com/musikerforbundet]Musikerförbundet[/url] (the Swedish Musicians' Union) as early as 1943. In 1960, he was elected to the union's board, and from 1977 to 1985, he served as its chairman. +Needs Votehttps://orkesterjournalen.com/akerberg-yngve-basist-organisationsledare-upphovsrattsexpert/https://www.svenskagravar.se/search?query=Yngve+Henning+Åkerberg&parishId=&cemeteryId=&graveNumber=&birthDate=&deathDate=&burialDate=Y. ÅkerbergYngve AkerbergÅkerbergTeddy Wilson TrioStan Getz QuintetJames Moody QuintetJames Moody SextetJames Moody QuartetLars Gullin QuartetLars Gullin QuintetGunnar Svenssons SeptettKenneth Fagerlunds TrioArne Domnérus Favourite GroupMax Brüel All StarsArne Domnérus KvartettJames Moody & His Swedish CrownsGeorg Riedel QuintetBengt-Arne Wallin & His TentetRolf Blomquist And His BandThe MetronomersThore Swaneruds SextettCavalcade All StarsJazz At The CavalcadeRolf Ericsons OrkesterTotty Walléns KvintettSixten Strömvalls StråkkvintettTotty Wallén Och Hans Vilda VikingarGösta Theselius And His BandRolf Blomquist Sextet + +1371065Arne DomnérusSven Arne DomnérusSwedish jazz alto saxophonist, clarinetist and bandleader, nicknamed "Dompan", born December 20, 1924 in Solna, Sweden, died September 2, 2008 in Stockholm, Sweden. + +Domnérus worked, among others, with [a=Lars Gullin], [a=Jan Johansson], and [a=Quincy Jones] (in the early 1960s), He was a member of the Swedish Radio Big Band 1956-1965, and the leader of its successor, the [a=Radiojazzgruppen] 1967-1978.Needs Votehttp://en.wikipedia.org/wiki/Arne_Domn%C3%A9rushttps://sv.wikipedia.org/wiki/Arne_Domn%C3%A9rusA. DomnerusA. DomnérusA.DomnerusAnre DomnerusArne "Dompan" DomnérusArne DamnerusArne DommerusArne DomnerusArne Domnerus And His GroupArne DomnnerusArne DomnèrusArne DomnériusArne Domnérus m flDomnerusDomnérusDompanThe Swedish All StarsHarry Arnolds OrkesterVisby Big BandRadiojazzgruppenArne Domnérus OrkesterArne Domnérus TrioArne Domnérus SextettClaes Rosendahls OrkesterLars Gullin SeptetHarry Arnold & His Swedish Radio Studio OrchestraArne Domnèrus SeptetArne Domnerus JazzgruppArne Domnérus And His Big BandGunnar Svenssons SeptettGösta Theselius And All StarsThe Four Tenor BrothersArne Domnérus Favourite FiveArne Domnérus Favourite GroupThe European All StarsGeorg Riedel SeptetArne Domnérus KvartettArne Domnérus' NonetettJames Moody & His Swedish CrownsArne Domnérus KvintettBengt Hallberg And His Swedish All StarsLeonard Feather's Swinging SwedesÅke Persson And His ComboJazz Workshop, Ruhr Festival 1962Georg Riedel QuintetArne Domnérus DixiesixBengt-Arne Wallin & His TentetThe Favourite Soloists 1951ParisorkesternDompans Lilla BataljonArne Domnerus Four BrothersThe Hometown Boys (2)Arne Domnérus Favourite FourDompans Slick I Botten WhispersCavalcade All StarsArne Domnérus & FriendsJazz At The CavalcadeRolf Ericsons OrkesterArne Domnérus & His Bossa OrchestraReinhold Svenssons OrkesterNils Lindberg Sextet + +1371809Renee JollesAmerican violinistNeeds VoteRene JollesRenée JollesOrpheus Chamber OrchestraThe North/South Chamber Orchestra + +1372269Steve Hill vs TechnikalCorrectSteve Hill & TechnikalSteve Hill & TeknikalSteve Hill / TechnikalSteve Hill And TechnikalSteve Hill Feat. TechnikalSteve Hill TechnikalSteve Hill V TechnikalSteve Hill Vs TechnikalSteve Hill Vs. TechnikalSteve Hill X TechnikalSteve Hill vs. TechnikalSteve Hill x TechnikalSteve Hill | TechnikalSteve Hill, TechnikalSteve Hill/TechnikalTechnikal & Steve HillSteve HillAlf Bamford + +1372337Jual CurtisJazz drummerNeeds VoteJuel CurtisJule CurtisJules CurtisDexter Gordon QuintetHoward McGhee SextetThe Al Grey - Billy Mitchell SextetDexter Gordon - Benny Bailey Quintet + +1372607Massimo PivaItalian classical viola player.Needs VoteQuartetto PrometeoOrchestra dell'Accademia Nazionale di Santa CeciliaLa Magnifica ComunitàEnsemble ConSerto Musico + +1373185Dave Shapiro(April 24, 1952 – February 16, 2011) US jazz bass and electric bass player. + +For the Booking Agent, please use [a=Dave Shapiro (3)].Needs VoteDavid ShapiroQueegShapiroWoody Herman And His OrchestraThe Woody Herman Big BandHarold Danko QuartetThe Metropolitan Bopera HouseThe Paradise City Trio + +1373197Christopher DickenBritish trumpet player, born in Manchester, UK.Needs VoteChris DickenMahler Chamber OrchestraThe Chamber Orchestra Of EuropeDunedin ConsortDeutsche Kammerphilharmonie BremenEnsemble Modern OrchestraWorldBrass + +1373382Marco Da GaglianoMarco Zenobi da GaglianoMarco da Gagliano (1 May 1582 – 25 February 1643) was an Italian composer of the early Baroque era. He was important in the early history of opera and the development of the solo and concerted madrigal.Needs Votehttps://en.wikipedia.org/wiki/Marco_da_GaglianoDa GaglianoGaglianoM. Da GaglianoMarco Da CaglianoMarco De GaglianoМарко Да Гальяно + +1373457Peter DibbensSongwriterNeeds VoteDibbensDibensDilbentP. DibbensP. DilbansP. DilbensP. DilboasP.J. DibbensPeter DibbersShepstone & Dibbens + +1373712Boguslaw PstraśBogusław PstraśClassical double bassist.Needs VoteBogusław PstraśPolish National Radio Symphony Orchestra + +1374321Keith Lewis (4)Classical tenor vocalist, born October 6, 1950 in Methven, New Zealand.Correcthttp://www.bach-cantatas.com/Bio/Lewis-Keith.htmKeith LawisLewisКейт Льюис + +1374598Nikolaus HillebrandNikolaus HillebrandGerman Bass & Baritone vocalist, born in 1948 in Głuchołazy, Poland.Needs VoteHildebrandHillebrandNikolaus HilldebrandНиколаус ХиллебрандтRegensburger Domspatzen + +1374691Wanda LandowskaPolish harpsichordist (July 5, 1879 – August 16, 1959), later a naturalized French citizen, she played a large role in reviving the popularity of the harpsichord in the early 20th century.Needs Votehttps://en.wikipedia.org/wiki/Wanda_Landowskahttp://www.citedelamusique.fr/pdf/insti/recherche/wanda/pdf_complet.pdfhttps://adp.library.ucsb.edu/names/100054LandowskaW. LandowskaВ. ЛандовскаВанда ЛандовскаВанда Ландовская + +1374722Peter DijkstraPeter Dijkstra, born in the Netherlands in 1978, began singing as a boy in the Roden Boys Choir. He studied choral conducting, orchestral conducting and voice at the conservatories of The Hague, Köln and Stockholm, and graduated summa cum laude.Needs Votehttps://www.peterdijkstra.nl/https://en.wikipedia.org/wiki/Peter_DijkstraP. Dijkstraペーター・ダイクストラNederlands Kamerkoor + +1375479Magali ButtinMagalie ButtinFrench violinistNeeds VoteOrchestre National De L'Opéra De Paris + +1376627Blinky (4)Needs VoteOutsource (3) + +1376703Jésus EtcheverryJésus EtcheverryFrench operatic conductor and violinist. +Born: 14 November 1911 in Bordeaux, France / Died: 12 January 1988 in Paris, France +Needs Votehttp://en.wikipedia.org/wiki/J%C3%A9sus_EtcheverryEtcheverryJ EtcheverryJ. EtcheverryJesus EtcheverryJesús EtcheverryM. EtcheverryOrchestre Du Théâtre National De L'Opéra-Comique + +1377311Miguel Sáez SanuySpanish oboe/English horn player. Cor Anglais (English horn) soloist on Orquesta Sinfónica de RTVE in the 70s.Needs VoteM. SaezMiguel SaenzMiguel SaezMiguel Saez SanuyMiguel SainzMiguel SáezMiguel Sáez SauyOrquesta Sinfónica de RTVE + +1377312Pedro Meco RodrigoSpanish clarinet player and string section coordinator. On Orquesta Sinfónica de RTVE in the 70s.Needs VotePedro MecoOrquesta Sinfónica de RTVE + +1377313Salvador Seguer JuanSpanish french horn (trompa) player.Needs VoteSalvador SeguerOrquesta Sinfónica de RTVE + +1377314Vicente Merenciano SilvestreSpanish bassoon (fagot) player. Soloist on Orquesta Sinfónica de RTVE in the 70sNeeds VoteMerencianoVicente MerencianoOrquesta Sinfónica de RTVE + +1377316Pablo Ceballos GómezSpanish viola player.CorrectPablo CeballosPablo Ceballos GomezOrquesta Sinfónica de RTVE + +1377768Sylvie LambertCanadian classical cellistNeeds VoteSilvie LambertOrchestre symphonique de MontréalQuatuor Molinari + +1377769Denis BluteauCanadian classical flutistNeeds VoteOrchestre symphonique de Montréal + +1377770Serge DesgagnésCanadian percussionistNeeds VoteOrchestre symphonique de Montréal + +1377774Manon LafranceCanadian classical trumpeter.Needs VoteLes Violons du RoyOrchestre symphonique de MontréalThe Canadian BrassEnsemble De La Société De musique Contemporaine Du QuébecOrchestre Symphonique De LavalThe Chamber Players of CanadaOrchestre Symphonique de Longueuil + +1377777Charles LazarusAmerican trumpet playerCorrecthttp://www.charleslazarus.com/Charles Lee LazarusChuck LazarusMinnesota OrchestraThe Canadian BrassDallas Brass + +1377779Jean GaudreaultClassical horn player. +Member of [a931253] since 1975.Needs Votehttp://www.osm.ca/fr/bio/jean-gaudreaultJean GaudreauOrchestre symphonique de MontréalI Musici De MontréalEnsemble Carl Philipp + +1377974Immanuel LucchesiGerman flute player.CorrectStaatskapelle Dresden + +1378331Friedrich Leopold, Graf zu Stolberg-StolbergGerman poet born in Bramstedt in Holstein (then a part of Denmark), 7 November 1750 - died in his estate of Sondermühlen near Osnabrück, 5 December 1819. +Together with his brother Christian, he was a prominent member of the famous Hain or Dichterbund in Göttigen. +Correcthttp://en.wikipedia.org/wiki/Friedrich_Leopold,_Graf_Zu_Stolberg-StolbergF. Graf StollbergF. Leopold StolbergFriedrich Graf Zu StolbergFriedrich Leopold Graf Zu StolbergFriedrich Leopold Graf Zu Stolberg-StolbergFriedrich Leopold Graf Zundstetter StolbergFriedrich Leopold Graf zu StolbergFriedrich Leopold Graf zu Stolberg-StolbergFriedrich Leopold Zu Stolberg-StolbergFriedrich Leopold Zu StollbergFriedrich Leopold von StolbergFriedrich Leopold, Graf StolbergFriedrich Leopold, Graf zu StolbergFriedrich StolbergGraf Zu StolbergL. StolbergL. Von StolbergLeopoldLeopold Graf StolbergLeopold Graf Zu StolbergLeopold Graf Zu StollbergLeopold Graf von StollbergLeopold Graf zu StolbergLeopold Graf zu StollbergLeopold StolbergLeopold, Graf zu StolbergLudwig Graf von StolbergStolbergStolberg-StolbergStollbergVon StollbergЛ. Фон ШтольбергЛ. ШтольбергФ. Штольберг + +1379749Abe AaronAlvin Aaron.Abe Aaron (Born: January 27, 1910 in Toronto, Ontario, Canada. – Died: January 31, 1970) was a jazz clarinetist and saxophonist, who was born in Canada but spent most of his life performing in the United States. +Needs Votehttps://en.wikipedia.org/wiki/Abe_AaronAaronAbe ArensonAl AaronAl AaronAlbin AaronAlvin AaronLes Brown And His Band Of RenownJack Teagarden And His OrchestraSkinnay Ennis And His OrchestraHorace Heidt And His OrchestraRonny Lang SaxtetBilly Usselton Sextet + +1380023Hans MelzerGerman cellist.CorrectBamberger Symphoniker + +1380024Franz BergerGerman violinist.CorrectFranz BegerBamberger Symphoniker + +1380025Karl-Heinz WestphalEngineer and recording supervisor for [L=Deutsche Grammophon] and [l=Archiv Produktion].Needs VoteK. W.K.W.Karl Heinz WestphalKarlheinz WestphalWWestphal + +1380472Johannes JansoniusCanadian classical violinistNeeds VoteOrchestre symphonique de MontréalQuatuor Molinari + +1380705Carolyn Gadiel WarnerCanadian violinist and pianist. She's married to [a3429989].Needs VoteCarolyn Gadiel-WarnerCarolyn WarnerThe Cleveland OrchestraThe Cleveland Duo + +1381090Emil SeilerGerman violist, violinist, Viola d'amore player, composer, conductor and musicologist, born 5 February 1906 in Nuremberg, Germany and died 21 March 1998 in Freiburg, Germany.Needs Votehttps://www.americanviolasociety.org/wp-content/uploads/2022/02/JAVS-15.3.pdfE. SeilerKammerorchester Emil SeilerDas Mozarteum Orchester SalzburgArchiv Produktion Instrumental EnsembleConsortium Musicum (2)Kammermusikkreis Emil Seiler + +1381091Helmut WobischAustrian classical trumpeter (October 25, 1912 in Vienna - † February 20, 1980). + +He became a member of the [a=Orchester Der Wiener Staatsoper] in 1936 and then joined the [a=Wiener Philharmoniker] in 1939. +Wobisch had been a member of the NSDAP party since 1933 (when it was still illegal in Austria), and became a member of the SS in 1938 after the annexation of Austria into the German Empire (Third Reich). Wobisch was dismissed from [a=Wiener Philharmoniker] at the end of World War II, but was allowed to rejoin in 1947. He concealed his past so successfully that he was able to become the orchestra's executive director from 1953 to 1968. Wobisch became a professor at the Vienna Music Academy in 1958. He founded the Carinthian Summer Music Festival (Carinthischer Sommer) in 1969 and remained its artistic director until his death.Needs Votehttp://de.wikipedia.org/wiki/Helmut_Wobischhttp://www.whatsontianjin.com/news-6446-helmut-wobisch-former-chief-of-vienna-philharmonic-was-nazi.htmlhttp://www.theaustralian.com.au/news/world/vienna-orchestra-leader-helmut-wobisch-hid-nazi-past/story-fnb64oi6-1226595009126#Helmut WobitschHelmuth WobischOrchester Der Wiener StaatsoperWiener PhilharmonikerZagrebački SolistiKammerorchester Der Wiener Konzertvereinigung + +1381487Anna Maria CotogniItalian violinist.Needs VoteA. CotogniA. M. CotogniAnna Maria CotoginiAnna-Maria CotogniAnnaMaria CotogniAnnamaria CotogniAnne Marie CotogniMaria CotogniАнна Мария Котоньиアンナ・マリア・コトーニThe Academy Of St. Martin-in-the-FieldsI Musici + +1382003Horst Schneider (2)German oboist, conductor and composer.Needs VoteH. SchneiderH. Schneider (2)Horst SchneiderBläserquintett Des Südwestfunks, Baden-BadenMünchener Bach-OrchesterSüdwestdeutsches KammerorchesterCappella Coloniensis + +1382326Евгений РодыгинЕвгений Павлович Родыгин = Evgeny Pavlovich Rodygin(February 16, 1925, Chusovoy, Perm District, Ural Region, RSFSR, USSR — July 19, 2020, Yekaterinburg) was a Soviet composer, author of popular songs among the people. People's Artist of the Russian Federation (1999). Honorary citizen of the Sverdlovsk region and Yekaterinburg.Needs Votehttp://ru.wikipedia.org/wiki/%D0%A0%D0%BE%D0%B4%D1%8B%D0%B3%D0%B8%D0%BD,_%D0%95%D0%B2%D0%B3%D0%B5%D0%BD%D0%B8%D0%B9_%D0%9F%D0%B0%D0%B2%D0%BB%D0%BE%D0%B2%D0%B8%D1%87B. RodyginE. RadyginE. RodiginE. RodiginaE. RodiguinE. RodiguineE. RodyginE. RodyiginE. RodyikinE. RodykinE. RudiginE.RodyginE.RodyiginEugeniusz RodyginEvenij P. RodyginEvenij RodyiginEvgenij RodyginEvgeny RodyginJ. P. RodyginJ. RodyginJ.RodyginJevgeni RodryginJevgeni RodyginJevgeni RodykinJevkeni RodykinR. RodyginRodyginRodygin EvenisRodyiginY. RodyginYe. RodyginЄ. РодигінЕ. РодыгинЕ. РодыгинаРодыгинא. רודיגיוןיבגני רודיגין + +1382699Denise LoveNeeds VoteD. LoveDennise LoveRudy Love And The Love Family + +1382705Peggy LovePegy Lavon LoveNeeds VoteP. LoveRudy Love And The Love Family + +1382709Tyree JudieNeeds VoteT. JudieT. JudyTyree Judie JrRudy Love And The Love Family + +1382713Gerald "Fuzz" LoveNeeds VoteG. LoveGerald LoveRudy Love And The Love Family + +1382931Cynthia Richards WallaceClassical soprano.Needs VoteCynthia WallacePomeriumThe New York Virtuoso Singers + +1382940Neil FarrellTenor vocalist.Needs VoteThe Western WindPomeriumThe New York Virtuoso SingersMusica SacraVoices Of AscensionPalmer Singers + +1383404Martin EichbergSound engineerCorrect + +1384133Isabelle ClaudetClassical violinistNeeds VoteOrchestre Des Champs ElyséesLes Talens Lyriques + +1384493Günter PichlerViolinist and conductor, born 9 September 1940 in Kufstein, Tyrol, Austria. +Member of [a=Die Wiener Solisten] 1959 -1970 +He co-founded the [a=Alban Berg Quartett] in 1970 and remained a member until the quartet disbanded in 2008.Needs Votehttp://www.guenterpichler.com/https://dx.doi.org/10.1553/0x0001dd07https://en.wikipedia.org/wiki/G%C3%BCnter_PichlerGuenter PichlerGunther PichlerGunther PiohlerGünther PichlerKons. Günther PichlerWiener SymphonikerWiener PhilharmonikerAlban Berg QuartettDie Wiener SolistenMitglieder Des Alban Berg Quartett + +1384495Klaus MaetzlKlaus MätzlKlaus Mätzl (13 December 1941 - 4 May 2016) was an Austrian classical violinist. Member of [a=Alban Berg Quartett] from 1970 to 1978.Needs Votehttps://en.wikipedia.org/wiki/Klaus_MaetzlWiener SymphonikerWiener PhilharmonikerAlban Berg QuartettTonkünstler OrchestraWiener KammerensembleDie Wiener Solisten + +1384688Robert MommarchéFrench drummer +Born January 5, 1911 in Marin (Martinique), died March 1, 1986 in Fort-de-France (Martinique) +Often misspelled "Monmarché"Needs VoteMonmarchéR. MonmarcheR. MonmarchéRobert MonmarcheBenny Carter And His OrchestraOrchestre Del's Jazz BiguineHot-Club De Rennes + +1385029Richard ReichegActor - songwriter - guitarist - singer +Born on 26 May 1937 +He was active in the American folk music revival of the 60's. In 1975 he received a Grammy nomination in 1975 for co-penning "For The Sake Of The Children" for the soundtrack of [url=https://www.discogs.com/Various-Nashville-Original-Motion-Picture-Soundtrack/release/2750840]"Nashville"[/url].Needs Votehttps://en.wikipedia.org/wiki/Richard_ReichegD. ReichegDick ReichegR. ReichegR. RiechegReichegRichie RiechegThe Sunrise HIghwayLenny & Dick + +1386200Greg WhippleTenor vocalist from California.Correcthttps://www.linkedin.com/in/greg-whipple-87b75a2a/https://www.imdb.com/name/nm0924190/G. WhippleGregGregory WhippleM-Pact (2) + +1386455David Skinner (4)American-born musicologist and ensemble director (early vocal music), he moved to England in 1987, co-founded [a1721688] in 1989 and founded [a4138961] in 2005.Needs Votehttp://www.alamire.co.uk/david-skinnerhttps://en.wikipedia.org/wiki/David_Skinner_(musicologist)https://www.sid.cam.ac.uk/aboutus/people/person.html?crsid=dgs38http://www.allmusic.com/artist/david-skinner-mn0001655959/biographyThe Choir Of Christ Church CathedralThe Cardinall's MusickAlamireMagdala (2) + +1386630Hazel MulliganClassical violinist. +Former member of the [a=London Symphony Orchestra]. She was Governor of the Royal Society of Musicians; resigned in 4 February 2020.Needs VoteLondon Symphony OrchestraThe National Symphony Orchestra + +1386635Hozumi MurataJapanese classical violinistCorrectDeutsche Kammerphilharmonie Bremen + +1386636Joseph CarverClassical Double Bass & Violone instumentalistNeeds VotePulcinellaOrchestre Des Champs ElyséesLes Arts FlorissantsOpera FuocoEnsemble ClaroscuroIl ConvitoLe Stagioni + +1386640Jaime MartínSpanish conductor & flutist, born 1 September 1965, chief conductor and artistic director of the Gävle Symphony Orchestra. Recently, conductor of the London Philharmonic Orchestra and the Chamber Orchestra of Europe. He was Principal Flute with [a=The Academy Of St. Martin-in-the-Fields]. Professor at the Royal College of Music in London. Currently chief conductor of the [a=Gävle Symfoniorkester]. +Married to [a=Rachel Gough]. Son-in-law of [a=Celia Nicklin].Needs Votehttps://www.jaimemartinconductor.com/https://en.wikipedia.org/wiki/Jaime_Mart%C3%ADnJaime MartinRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of EuropeThe Gaudier EnsembleGävle SymfoniorkesterThe English National Opera OrchestraMobius (7) + +1386648Joan Enric LlunaJoan Enric Lluna ValeroClarinetist.Needs Votehttps://joanenriclluna.com/J.E. LlunaJoan-Enric LlunaJuan LlunaEnglish Chamber OrchestraThe Chamber Orchestra Of EuropeOrquesta De CadaquésAmbache Chamber EnsembleBerliner CamerataMoonwinds + +1386651Ann CriscuoloClassical violinist.Needs Votehttps://www.facebook.com/ann.criscuolo.3Philharmonia OrchestraLondon Mozart Players + +1386652Benjamín MorenoBenjamín Moreno FernándezSpanish classical trumpeter.Needs VoteOrquesta Sinfónica de RTVE + +1386672David JolleyAmerican hornist.Needs Votehttp://davidjolleyhorn.com/D. JolleyDave JollyDavid JollyOrpheus Chamber OrchestraNew York Neophonic OrchestraDorian QuintetPerspectives EnsembleWindscape + +1387480Joseph HearneAmerican double bassist.Needs Votehttps://www.bso.org/profiles/joseph-hearneBoston Symphony Orchestra + +1387748Yasuhito SugiyamaJapanese tuba player.Needs VoteSugiyama Yasuhito杉山康人The Cleveland OrchestraOsaka Philharmonic OrchestraNew Japan Philharmonic + +1388186Linda KidwellBritish classical violist and painter. Born in 1981 in Southampton, England, UK. +She studied at the [l459222] (2000-2003) and at the [l527847] (2003-2005). Upon leaving the Academy, she joined the [a=Southbank Sinfonia]. In 2011 she accepted the position of Sub Principal viola with the [url=https://www.discogs.com/artist/2522401-The-London-Festival-Ballet-Orchestra]English National Ballet Philharmonic[/url], which she continues to combine with other freelance work. Member of the [a=Philharmonia Orchestra] since 2016. +When Linda isn't playing the viola she likes to draw them!Needs Votehttps://www.facebook.com/lindakidwell.art/https://maslink.co.uk/client-directory?client=KIDWL1&https://philharmonia.co.uk/bio/linda-kidwell/Philharmonia OrchestraThe London Festival Ballet OrchestraSouthbank Sinfonia + +1388422Jim PowellAmerican jazz trumpeter and flugelhorn playerNeeds VoteJim PowelWoody Herman And His OrchestraBill Doggett ComboWoody Herman & The Young Thundering HerdThe Woody Herman Big BandWoody Herman And The Thundering HerdBill Warfield Big BandThe Columbus Jazz OrchestraThe Bob Belden EnsembleVaughn Wiester's Famous Jazz Orchestra + +1388756Pascal GeayClassical trumpeter.CorrectCollegium VocaleLe Concert Des nations + +1390360Renato CesariArgentinean operatic baritone, born 1916 in Buenos Aires, Argentina and died 18 June 1992 in Buenos Aires, Argentina.CorrectCesariR. CesariRenato Cesar + +1390472Jimmy GuinnAmerican jazz trombone player.Needs VoteGuinnJ. GuinnJimmy GuihanJimmy GuinWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Fourth HerdThe Al Belletto SextetAl Belletto Quintet + +1390673Carlos RosarioPercussionNeeds Votehttps://musicbrainz.org/artist/a3651d3d-b6f5-433e-b61f-e7eede94955eShorty Rogers And His Giants + +1391387Robert AtherholtAmerican classical oboist.Needs Votehttps://music.rice.edu/faculty/robert-atherholtOrpheus Chamber OrchestraHouston Symphony Orchestra + +1391913Karl KrumpöckKarl Krumpöck was an Austrian cellist and Viola da Gamba player. He passed away on July 21, 2008. +Father of [a6041607]Needs VoteWiener SymphonikerLes Menestrels + +1391914Harald KautzkyOboist.CorrectWiener Philharmoniker + +1392067Emilio GonzálezArgentinian tango violinist and composer (born in 1916).Needs VoteEmilio GonzalezLeopoldo Federico Y Su Orquesta TípicaLos Señores Del TangoOrquesta Tipica Orlando Goñi + +1392163Roger IngramTrumpeterNeeds Votehttp://rogeringram.com/Woody Herman And His OrchestraThe Lincoln Center Jazz OrchestraChris Walden Big BandThe Woody Herman Big BandThe Bill Holman BandMaynard Ferguson And His Big Bop Nouveau BandNew Standard Jazz OrchestraThe Bud Shank Big BandChicago Afro Latin Jazz EnsembleJoshua Jern Jazz OrchestraScott Whitfield Jazz Orchestra West + +1392164Nardo PoyAmerican violist.Needs VoteThe American Symphony OrchestraOrpheus Chamber OrchestraThe Metropolitan Opera House OrchestraPerspectives Ensemble + +1392168Judith YanchusAmerican violinist, born in 1939.Needs VoteSan Francisco Symphony + +1392400Tidy DJsTeam composed of DJ's & producers Sam Townend & Dean Ashraf.Needs Votehttp://web.archive.org/web/20110825070413/http://www.samanddeanomusic.com/http://www.myspace.com/tidydjsThe Tidy DJsTidy DJ'sSam & DeanoSam TownendDean Ashraf + +1392972Arch MartinKansas City trombonist and bandleader. +He at one time played with Woody Herman orchestras.Needs VoteArchie MartinWoody Herman And His OrchestraArch Martin QuintetWoody Herman And The Fourth HerdRiver City Jazz Orchestra + +1392974Al BarteeNeeds VoteJack Costanzo And His OrchestraIllinois Jacquet And His OrchestraBettye Miller Trio + +1393153Berliner SolistenChamber choir, active in East-Germany during the 1970s and 1980s. + +For the West German instrumental chamber ensemble, please use [a6157017].Needs VoteBerlin SoloistsBerliner Solisten (Männer)Berliner SolistenchorDie Berliner SolistenChristian SteyerGeorg TaubeFriedrich Rechenberg + +1393483Eugene CruftEugene John CruftBritish classical double bass player, and Professor of Double Bass. Born 8 June 1887 in London, England, UK - Died 4 June 1976 in London, England, UK. +"The leading double-bass player of his generation." +Former member of the [a=London Symphony Orchestra] (1909-1912), and the [a=Beecham Symphony Orchestra] (1909-1912). Former Principal Double Bass of the [a=BBC Symphony Orchestra] (1929-1949), the [a=Orchestra Of The Royal Opera House, Covent Garden] (1949-1952), and the [a=Bath Festival Orchestra] (1959-1965). After the Second World War, he helped to form the new [a=British Symphony Orchestra]. He chaired the company running the [a=Pro Arte Orchestra] (and played in it) when it was founded in 1955. Professor of Double Bass at the [l290263] (1946-1957). +He was made a MVO and an OBE in 1953. +Father of [a=Adrian Cruft] and grandfather of [a=Ben Cruft].Needs Votehttps://en.wikipedia.org/wiki/Eugene_Crufthttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/cruft-eugene-johnhttps://www.talkbass.com/threads/eugene-cruft-method-book.1345904/E. CruftEugène CruftPro Arte OrchestraLondon Symphony OrchestraBBC Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenApollo OrchestraBath Festival Chamber OrchestraBath Festival OrchestraBeecham Symphony OrchestraBritish Symphony Orchestra + +1393485Nannie JamiesonAgnes Jessie Hamilton Jamieson Nannie Jamieson (9 May 1904 – 18 January 1990) was a British violist and teacher.Needs VoteMenuhin Festival OrchestraBath Festival Chamber OrchestraBath Festival OrchestraThe Robert Masters Piano Quartet + +1393486Archie CamdenBassoon player. +Married with [a7796392] who gave birth to [a=Anthony Camden] and [a=Kerry Camden].Needs VoteA. CamdenCamdenBBC Symphony OrchestraBath Festival Orchestra + +1393487Eli GorenClassical violinist (Vienna 1923 - 2000).Needs VoteE. GorenBBC Symphony OrchestraLondon Festival OrchestraThe Allegri String QuartetLondon Mozart PlayersMelos Ensemble Of LondonKalmar Chamber Orchestra LondonJerusalem Symphony OrchestraBath Festival OrchestraLondon Baroque Ensemble + +1393521Blind Willie Dunn & His Gin Bottle FourNeeds Major ChangesBlind Willie Dunn's Gin Bottle FourBlind Willie Dunn’s Gin Bottle FourThe Blind Willi Dunn's Gin Bottle FourEddie LangHoagy CarmichaelLonnie Johnson (2)King OliverJ.C. JohnsonBlind Willie Dunn + +1393622Maryseult WieczorekClassical soprano vocalistNeeds VoteWieczorekLes Arts FlorissantsL'Unicorne + +1393683Robert Jordan (2)British classical bassoon player and educator. He was, among other, a member of the orchestra of Sadlers Wells Opera for 30 years. + +Born 1944. +Died 2010.Needs VoteRobert JordanCity Of London SinfoniaAthena EnsembleThe Richard Hickox Orchestra + +1394624Hans Jörg MammelGerman classical tenor vocalist born in Stuttgart.Needs Votehttp://www.hansjoergmammel.de/Hans-Jörg MammelHansjörg MammelMammelCollegium VocaleChoeur de Chambre de NamurRicercar ConsortCantus CöllnWeser-RenaissanceMusica FioritaBalthasar-Neumann-ChorBarockorchester L'Arpa FestanteLa FeniceOrlando Di Lasso EnsembleAkadêmiaAbendmusiken BaselEnsemble PolyharmoniqueCapella Spirensis + +1394631Gunther SchwiddessenClassical violinist.CorrectBalthasar-Neumann-EnsembleDeutsche Kammerphilharmonie Bremen + +1394637Sabine LierClassical violinistCorrectBamberger SymphonikerFreiburger BarockorchesterBalthasar-Neumann-Ensemble + +1394640Andreas Werner (5)German classical bass-baritone vocalist.Needs VoteRIAS-KammerchorArnold Schoenberg ChorBalthasar-Neumann-Chor + +1394881Helvetia BoswellHelvetia "Vet" Boswell.American jazz vocalist. +Born May 20, 1911 in Birmingham, Alabama, USA. +Died November 12, 1988 in Peekskill, New York, USA. +Along with her sisters [a=Martha Boswell] and [a=Connie Boswell], they attained national prominence in the USA in the 1930s. Needs Votehttps://www.imdb.com/name/nm0098364/HelvetiaHelvetia "Vet" BoswellHelvetia ('Vet') BoswellHelvetia ‘Vet’ BoswellVet BoswellThe Boswell Sisters + +1395607Enzo GioieniVincenzo GioieniItalian vocalist, reed player (saxophone. clarinet), composer and producer.Needs VoteE. GioieniGioieniM.o V. GioieniV. GioieniДжоэнниVingioiI Cantori Moderni di AlessandroniQuartetto OKQuartetto Due + DueOrq. Enzo GioieniEnzo Gioieni E Il Suo Complesso + +1395652John SimonelliAmerican horn player.CorrectJohn Anthony SimonelliThe Philadelphia Orchestra + +1395917Dimitri AshkenazyDimitri Thor AshkenazyIcelandic clarinetist, born 8 October 1969 in New York City, New York, USA, based in Switzerland. Son of pianist [a832915] and brother of pianist [a1567674].Needs Votehttps://dimitriashkenazy.net/https://en.wikipedia.org/wiki/Dimitri_AshkenazyAshkenazyDimka AshkenazyDmitri AshkenazyThe Czech Philharmonic OrchestraFestival Strings LucerneEuropean Soloists EnsemblePhilharmonic Orchestra Of EuropePhoebus Quintet + +1395985Ron KellerAmerican jazz and rock trumpeter, playing with musician such as [a59288], [a2026094], [a322486], [a322488], [a417929] as well as many other artists.Needs VoteRonald Eugene KellerRonald KellerStan Kenton And His OrchestraNashville Jazz Machine + +1396305Ellen HickmannEllen HissEllen Hickmann, née Hiss (born July 28, 1934 in Flensburg, died February 18, 2017 in Kühlungsborn) was a German musicologist, record producer and university professor, as well as producer and liner notes author for the classical music label [l=Deutsche Grammophon].Needs Votehttps://de.wikipedia.org/wiki/Ellen_HickmannDr- Ellen HickmannDr. Ellen HickmanDr. Ellen HickmannDr.エレン・ヒックマンDra. Ellen Hickmann + +1396347Evelyn RothwellEvelyn Alice Barbirolli née RothwellEnglish oboist, author, and Professor of Oboe. Born 24 January 1911 in in Wallingford-on-Thames, Berkshire, England, UK - Died 25 January 2008 in London, England, UK. +She studied at the [l290263]. She started her career by deputising in [a2237780]. She was soon appointed 2nd Oboe with the [b]Covent Garden Touring Orchestra[/b], which was conducted by [a=Sir John Barbirolli]. He appointed Evelyn as First Oboe in the orchestra. After two years, she went on to play with the [url=https://www.discogs.com/artist/627128-Royal-Scottish-National-Orchestra]Scottish National Orchestra[/url] (1933-1935) and the [a3009494] (1934-1939). Simultaneously, she joined the [a=London Symphony Orchestra] as Principal Oboe (1934-1939). Many compositions were dedicated to her. Author of several books on oboe technique. Professor of Oboe at the [l527847] (1971-1987). +She was appointed an Officer of the Order of the British Empire (OBE) in 1984. +2nd wife of [a=Sir John Barbirolli] from 1939 to his death. Following the death of her husband in 1970, she dropped Rothwell as her professional name and became Evelyn Barbirolli.Needs Votehttps://www.youtube.com/channel/UCWjY6n_4Y8gzXMGKEg_UvAw/playlists?view=50https://open.spotify.com/artist/4uI255CM0QDwjG6kijHgzphttps://music.apple.com/us/artist/lady-evelyn-rothwell-barbirolli/1275998913https://en.wikipedia.org/wiki/Evelyn_Barbirollihttps://www.encyclopedia.com/women/encyclopedias-almanacs-transcripts-and-maps/rothwell-evelyn-1911https://www.oxfordreference.com/view/10.1093/oi/authority.20110803095446300https://musicianguide.com/biographies/1608003150/Evelyn-Rothwell.htmlhttp://www.browsebiography.com/bio-evelyn_rothwell.htmlhttps://www.thetimes.co.uk/article/lady-barbirolli-20pr6wmkn6qhttps://www.theguardian.com/music/2008/jan/29/classicalmusicandopera.obituarieshttps://funeral-notices.co.uk/notice/evelyn+barbirolli/1962815https://sv.findagrave.com/memorial/24185846/evelyn-a.-barbirolliE. RothwellEvelyn BarbirolliLady Evelyn BarbirolliRothwellLondon Symphony OrchestraRoyal Scottish National OrchestraThe Drury Lane Theatre OrchestraGlyndebourne Festival OrchestraBusch Chamber Players + +1396988Ollie PowersAmerican jazz drummer and singer, born c. 1890 in Louisville, Kentucky, died April 14, 1928 in Chicago, Illinois (diabetes and mellitus). +Worked as drummer and singer in Chicago from 1914; last engament was with [a=Jimmie Noone] at the Apex Club from autumn 1926 until three weeks before he died.Needs Votehttps://en.wikipedia.org/wiki/Ollie_Powershttps://adp.library.ucsb.edu/names/112784O. PowersOllie PowellOllie PowerPowersOllie Powers' Harmony SyncopatorsOllie Powers' Orchestra + +1397180William RidgleyAmerican jazz trombonist. +Played with : "Silver Leaf Orchestra", "Original Tuxedo Band" (co-founded with "Papa" Celestin), retired from music scene in 1936. +Nickname : "Bebé". + +Born : January 15, 1882 in New Orleans, Louisiana. +Died : May 28, 1961 in New Orleans, Louisiana. +Needs VoteBill RidgelyRidgleyW. RidgleyWilliam "Baba" RidgleyWilliam "Bébé" RidgleyWilliam RidgelyOriginal Tuxedo Jazz Orchestra + +1397237Bob ShoffnerRobert Lee ShoffnerAmerican jazz trumpeter. +Born: April 4, 1900 in Bessie, Tennessee (not St. Louis, Missouri as stated in some sources;he moved to this city soon after his birth). +Died: March 5, 1983 in Chicago, Illinois. + +Shoffner played with Charlie Creath, Honore Dutrey, King Oliver, Dave Peyton, Charles Elgar, Erskine Tate, McKinney's Cotton Pickers, Frankie Jaxon, Fess Williams, Fletcher Henderson, Hot Lips Page and others. +Needs VoteB. SchoffnerB. ShoffnerBob SchoffnerDub ShoffnerDub StoffnerRobert ShaffnerShoffnerKing Oliver & His Dixie SyncopatorsKing Oliver's Jazz BandLuis Russell's Heebie Jeebie StompersLovie Austin's Blues SerenadersFranz Jackson And His Original Jass All-StarsGlen Gray & The Casa Loma OrchestraFrankie Jaxon And His Hot ShotsBob Shaffner And Harlem Hot Shots + +1397690Michael Franklin (3)Michael FranklinNeeds Votehttp://www.myspace.com/ampattackM. FranklinMike FranklinAmp AttackCamp AttackDiva QueensTangerine Funk FunksF/A/Q + +1397778Bernhard KrugGerman hornist, born 22 July 1967 in Berlin, Germany.CorrectGewandhausorchester LeipzigOrchester der Bayreuther Festspiele + +1398622Tasso AdamopoulosTasso Adamopoulos was a French violist of Greek origin. +Born: June 2, 1944, Paris, France. +Died: January 2, 2021, 20th arrondissement of Paris, Paris, France, after contracting COVID-19.Needs Votehttps://en.wikipedia.org/wiki/Tasso_AdamopoulosAdamopoulosT. AdamopoulosTassa AdamapoulosTasso AdamopoulousOrchestre National Bordeaux AquitaineTrio DebussyQuatuor À Cordes De ParisTrio Sartory + +1398979Leon HerrifordCredited as saxophonist.Needs VoteL. HerrifordLeon HerfordLeon HerryfordLouis Armstrong And His Sebastian New Cotton OrchestraHarvey Brooks' Quality Four + +1398992Willie StarkCredited as saxophonist.Needs VoteW. StarkWilli StarkeWillie StarksLouis Armstrong And His Sebastian New Cotton Orchestra + +1399695Michel MoraguèsClassical flutistNeeds VoteMichel MoraguesOrchestre National De FranceQuintette MoraguèsEstonian Festival Orchestra + +1399805Matthew Best (2)English bass vocalist and conductor, born February 6, 1957 in Farnborough, Kent; died 10 May 2025. +A former Choral Scholar at King's College, he founded Corydon Singers when he was only sixteen and has been its Musical Director ever since. Between 1980 and 1986 he was a principal bass with the Royal Opera. In 1991 he founded Corydon Orchestra.Needs Votehttp://www.intermusica.co.uk/artists/bass-baritone-bass/matthew-best/biographyhttps://en.wikipedia.org/wiki/Matthew_Best_(conductor)https://www.imdb.com/name/nm0078973/Matthew BestМэтью БестThe King's College Choir Of CambridgeCorydon SingersCorydon Orchestra + +1399934James T. StanhopeJames T. StanhopeAustralian (UK) Hardcore DJ & producer.Needs Votehttp://myspace.com/jamesstanhopemusicJ. StanhopeJ.StanhopeJ.T StanhopeJ.T. StanhopeJT StanhopeJames StanhopeJtsSway Tools + +1400009Heinrich KärcherClassical oboistNeeds VoteBerliner Philharmoniker + +1400010Robert KernsAmerican operatic baritone, born 8 June 1933 in Detroit, Michigan, USA and died 15 February 1989 in Vienna, Austria.Needs Votehttps://en.wikipedia.org/wiki/Robert_Kernshttp://www.bach-cantatas.com/Bio/Kerns-Robert.htmKernsR. KernsRobert KearnsРоберт Кернсロバート・カーンズ + +1400011Henning TrogHenning Trog (21 December 1940 - 13 July 2015) was a German bassoonist. +A member of the [a260744] from 1965 to 2007.Needs VoteBerliner PhilharmonikerBerlin Philharmonic Wind Quintet + +1400012Günter PrillClassical flautistNeeds VoteBerliner Philharmoniker + +1400175Masao KawasakiClassical violinist.Needs VoteOrpheus Chamber Orchestra + +1400177Toru Yasunaga安永 徹 (Toru Yasunaga)Toru Yasunaga (born 1951) is a Japanese classical violinist. A member of the [a260744] from 1977 to 2009.Needs Votehttps://ja.wikipedia.org/wiki/%E5%AE%89%E6%B0%B8%E5%BE%B9Berliner Philharmoniker + +1400979Bobby Lee JonesJazz trumpeter of the 30s. + +For the [a=Gene Vincent]'s bassist, see [a=Bobby Jones (6)]. +Needs VoteBobby JonesCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraO.K. Rhythm KingsFreddy Johnson And His Harlemites + +1401352Meinhard von ZallingerAustrian conductor (* 25 February 1897 in Vienna, Austro-Hungary; † 24 September 1990 in Salzburg, Austria). +Mozarteumorchester Salzburg conductor from 1947 to 1949 and also in 1959.Needs Votehttps://www.musiklexikon.ac.at/ml/musik_Z/Zallinger_Meinhard.xmlhttps://www.sn.at/wiki/Meinhard_von_Zallingerhttps://de.wikipedia.org/wiki/Meinhard_von_ZallingerM. von ZallingerMainhard von ZallingerMeinhard V. ZallingerMeinhard v. ZallingerZallingerDas Mozarteum Orchester Salzburg + +1402043Josef GröbmayrGerman violinist, since 1999 member of [a=Münchner Rundfunkorchester]Needs Votehttp://de.wikipedia.org/wiki/Josef_Gr%C3%B6bmayrhttps://www.rundfunkorchester.de/besetzung/3814-2/http://www.br.de/radio/br-klassik-english/muenchner-rundfunkorchester/orchestra/members-violin-2-josef-groebmayr100.htmlOliver Maass (2)Münchner Rundfunkorchester + +1402044Irving Mills And His Hotsy Totsy Gang"Louisiana Rhythm Makers" was another pseudonym used for this group.Needs VoteIrving Mills & His Hotsy Totsy GangIrving Mills And His Hotsy-Totsy GangIrving Mills And His ModernistsIrving Mills And His OrchestraIrving Mills And His Totsy GangIrving Mills Hotsy Totsy GangIrving Mills' Hotsy Totsy GangIrving Mills' Hotsy-Totsy GangMills Hotsy Totsy GangMajestic Dance OrchestraWhoopee MakersMills Merry MakersDixie DaisiesMills Musical ClownsPaul Mills And His Merry MakersJack Winn And His Dallas DandiesGoody And His Good TimersGil Rodin's BoysVincent Richards And His OrchestraJimmy Bracken's Toe TicklersThe Cotton Pickers (8)Tommy DorseyBenny GoodmanGene KrupaHarry GoodmanPee Wee RussellJoe VenutiDick McDonoughBix BeiderbeckeJimmy DorseyChauncey MorehouseFrank SignorelliMin LeibrookEddie LangRay LodwigLarry BinyonManny KleinMatty MalneckJoe TartoIrving MillsMatty MatlockGil RodinMiff MolePhil NapoleonJack PettisAl GoeringBill Moore (9) + +1402112Leonard WhitneyNeeds VoteL. WhitneyLen WhitneyLeonard WhitneysWhitneyJimmy Dorsey And His Orchestra + +1402206Gabriel GrosbardFrench classical violinist.Needs VoteLes Talens LyriquesRicercar ConsortLes Musiciens De Saint-JulienPygmalionEnsemble CorrespondancesEnsemble Mensa SonoraEnsemble Les SurprisesIl ConvitoLes Musiciens Du Paradis + +1402207Alexis KossenkoFrench Traverso Flutist and conductor, born in 1977 and director of orchestra [a=Les Ambassadeurs (6)].Needs Votehttp://www.alexiskossenko.com/Alexi KossenkoLe Concert D'AstréeLes Musiciens De Saint-JulienLe Cercle De L'HarmonieArte Dei SuonatoriGli Angeli GenèveLes InventionsLes Ambassadeurs (6)Ensemble DiderotJupiter (55) + +1402406Jane BerbiéJeanne BergougneFrench mezzo-soprano, born 6 May 1931 in Villefranche-de-Lauragais, France.Correcthttp://en.wikipedia.org/wiki/Jane_Berbi%C3%A9BerbieBerbierBerbiéJ. BarbieJane BarbiéJane BerbieJane BerbierJane BerbièJane BerbéJane BerdieJeanne Berbié + +1402543Jean SettiRoger-Jean SETTINeeds VoteJ. SettiJ.SettiJanJan SettiJan, SettiJean Roger SettiJean-Roger SettiR. SettiRoger SettiRoger-Jean SettiSeptiSettiJil Et Jan + +1402544Gilbert GuenetLyricist with his cousin Roger-Jean Setti (alias Jan).Needs VoteG. GuenetG.GuenetGilbertGilbert GuénetGillesGrasGuenetGuénetJilJil (2)JilaijanJil Et Jan + +1403205Михаил ПилипенкоМихаил Михайлович ПилипенкоMikhail Pilipenko (August 29, 1919, Sumy, Sumy district, Kharkov province, Ukrainian Soviet Socialist Republic - August 14, 1957, Sverdlovsk, RSFSR, USSR) - Soviet journalist, editor, poet. +Collaborated with composer Evgeny Rodygin = [a1382326].Needs Votehttps://ru.wikipedia.org/wiki/%D0%9F%D0%B8%D0%BB%D0%B8%D0%BF%D0%B5%D0%BD%D0%BA%D0%BE,_%D0%9C%D0%B8%D1%85%D0%B0%D0%B8%D0%BB_%D0%9C%D0%B8%D1%85%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2%D0%B8%D1%87M. PilipenkoM. PilipienkoM. PiljipenkoMihail PilipenkoMikhail M. PilipenkoMikhail PilipenkoN. PilipenkoPilipenkoМ. ПилипенкоПилипенкоמ. פוליפנקומיכאיל פיליפנקו + +1403321Miriam AllanAustralian soprano, born in 1977 in Newcastle, New South Wales, Australia.Needs Votehttp://www.miriamallan.com/Welcome.htmlhttp://en.wikipedia.org/wiki/Miriam_AllanAllanLes Arts FlorissantsCollegium VocalePolyphonyL'Arpeggiata + +1403324Charles HumphriesClassical countertenor.Needs VoteCharles HumphreysGabrieli ConsortThe Choir Of The King's ConsortThe Monteverdi ChoirThe Choir Of Christ Church CathedralFergus McLusky + +1403974Василий АндреевВасилий Васильевич АндреевVasily Vasilievich Andreyev was born 15 January 1861, passed 26 December 1918. +He was a Russian musician and balalaika player who reformed the Russian folklore music and created 1888 the Russian folk instrument orchestra, which was later on named after him : [a1574545]Needs Votehttp://www.andreyev-orchestra.ru/Alexey AndreyevAndreefAndreeffAndrejevAndrejewAndreyevAndreyev V.V. AndreevV. AndrejevV. AndreyevV. AndrjevVasili AndreyevVasily Vasilievich AndreyevVassily AndreyevW. AndreeffW. AndrejewW. W. AndreefW. W. AndreeffW.W. AndreeffWasil AndrejewWassilij AndrejewWassilj AndrejewА. АндреевАндреевАндреев B.B.Андреев В.Андреев В.В.АндрееваВ. АндреевВ. Андреев = Andreyev V.В. В. АндреевВ. В. АндрееваВ. В. АндреевъВ.АндреевВ.В.Андреев + +1404001Felix GiobbeAmerican jazz (and classical) bassist. +Felix played with : ""Pittsburgh Symphony Orchestra" (1935), +Ted Wallace (or Ed Kirkeby, 1936), Bob Zurke, Teddy Powell +(1939), Will Bradley (1940-'41), "Paul Whiteman Orchestra" +(July 1942-September 1942), "ABC Orchestra" and others. + +Born : April 13, 1914 in Pittsburgh, Pennsylvania. +Died : November, 1985 in Ronkonkoma, New York.Needs VoteF. GiobbeFelix GiobeFelix GlobbeFelix GlobeFelix JiobbeFelix JiobeeGelix GiobbeNapoleon's EmperorsTeddy Powell And His OrchestraVic Schoen And His OrchestraCalifornia Ramblers + +1404002Hy WhiteUS jazz guitarist, born December 17, 1915 in Boston, Massachusetts, died February 28, 2011 in Riverdale, New York. +White played with [a=Woody Herman] (1939-1944), and [a=Lew Brown] (from 1944). Also recorded with Bing Crosby, Frank Sinatra, Gene Krupa, Ella Fitzgerald, Coleman Hawkins and many others. Mainly active as studio musician and teacher during 1960s. + +Needs Votehttps://www.allmusic.com/artist/hy-white-mn0001736867/biographyHarry "Hy" WhiteHenry "Hy" WhiteHy WhitelHyman WhiteWhiteWoody Herman And His OrchestraGene Krupa And His OrchestraLes Brown And His OrchestraVic Schoen And His OrchestraWoody Herman And His WoodchoppersSam Donahue And His OrchestraMuggsy Spanier And His All StarsWoody Herman And His Third HerdThe Bernie Leighton QuintetAuld-Hawkins-Webster SaxtetWoody Herman's Four ChipsThe Bernie Leighton QuartetThe Band That Plays The Blues + +1404012Red Norvo And His Overseas Spotlight BandNeeds Major ChangesRed Norvo & His Overseas Spotlight OrchestraRed Norvo And His Overseas BandRed Norvo And His Overseas GroupRed Norvo And His Overseas Jazz OrchestraRed Norvo And His Overseas Spotlight OrchestraRed NorvoDale Pearce + +1404053David SchraderDavid Schrader (born September 15, 1952 in Chicago, Illinois) is an American harpsichordist, organist, and fortepianist. Needs Votehttps://en.wikipedia.org/wiki/David_SchraderDavid ShraderSchraderChicago Symphony OrchestraThe Chicago Chamber BrassL'Ensemble PortiqueTrio SettecentoThe Callipygian Players + +1404060Jennie WagnerJennier Wagner (born in 1949) is an American violinist. She was a member of the [a837562] from 1974 to 2014.Needs VoteChicago Symphony Orchestra + +1404063Charles VernonAmerican trombonist.Needs VoteCharlie VernonThe Philadelphia OrchestraMannheim SteamrollerSan Francisco SymphonyChicago Symphony OrchestraBaltimore Symphony OrchestraChicago Pro Musica + +1404066George VosburghGeorge Vosburgh (born in 1957) is an Amerircan trumpet and cornet player. He was a member of the [a837562] from 1979 to 1993. +Since 1992 he has taught at has taught at Carnegie Mellon University since 1992 and has been Director of the Carnegie Mellon Wind Ensemble since 2011.Needs Votehttps://www.cmu.edu/cfa/music/people/Bios/vosburgh_george.htmlG.V.George VosburgGeorges VosburghMannheim SteamrollerChicago Symphony OrchestraPittsburgh Symphony OrchestraPittsburgh Symphony BrassChicago Pro Musica + +1404167Anthony ZungoloAmerican violinist.Needs VoteAnthony ZungoldTony ZungoloThe Philadelphia OrchestraThe Wrecking Crew (6) + +1404504Neal GrippCanadian classical viola playerNeeds VoteOrchestre symphonique de MontréalMontreal Chamber Players + +1404506Pierre-Vincent PlanteClassical oboe/horn player. +He is a member of [a931253] since 1984.Needs Votehttp://www.osm.ca/en/bio/pierre-vincent-plantePierre PlantePierre V. PlantePierre Vincent PlanteOrchestre symphonique de MontréalI Musici De MontréalEnsemble Carl Philipp + +1404886Nicolas AndréClassical bassoonist, born in 1973 in Blois, France.Needs VoteNicolasNicolas André alias neopenLe Concert SpirituelEnsemble ArtaserseOpera FuocoLa Chambre Claire + +1405274David AllsoppBritish alto & countertenor vocalist born 1982 in County of Gwent, South Wales, UKNeeds VoteAllsoppThe King's College Choir Of CambridgeThe Binchois ConsortWestminster Cathedral ChoirTenebrae (10)Gallicantus + +1405817Roger BoufferayClassical trumpeter.Needs VoteRoger BoufferetLa Grande Ecurie Et La Chambre Du Roy + +1405818Pierre DegenneFrench classical cellist, fl. 1960s.Needs VoteP. DegenneFlorilegium Musicum De ParisLa Grande Ecurie Et La Chambre Du RoyEnsemble Instrumental Jean-Marie LeclairQuintette Marie-Claire Jamet + +1405819Danielle SalzerClassical keyboardist.Needs VoteD. SalzerDaniel SalzerDanièle SalzerFlorilegium Musicum De ParisLa Grande Ecurie Et La Chambre Du RoyEnsemble Polyphonique De L'O.R.T.F. + +1405822Pierre CasierClassical woodwind instrumentalistNeeds VotePierre CazierLa Grande Ecurie Et La Chambre Du RoyBernard Zacharias Et Ses Solistes + +1405947Константин ЛистовКонстанти́н Я́ковлевич Листо́вKonstantin Yakovlevich Listov +(2 October 1900, Odessa — 6 September 1983, Moscow) + +Soviet composer, People's Artist of RSFSR (1973).Needs Votehttps://ru.wikipedia.org/wiki/Листов,_Константин_Яковлевичhttps://adp.library.ucsb.edu/names/368502C. ListovK. ListovK. ListovaK. ListovasK. ListowK.A. ListovKonstantin ListovKonstantin ListowListovListowN. ListovN. ListowК. ЛистовК. ЛистоваК. Я. ЛистовК.ЛистовК.ЛистовaЛистовק. ליסטובקונסטנטין ליסטובリストフ + +1405964Ann RoggenViolist.Needs VoteOrchestra Of St. Luke'sMusica Antiqua New York + +1406386Robert MarstellerRobert Loren MarstellerAmerican trombonist and music educator (1918–1975). + +He was a graduate of the Eastman School of Music, where he studied under [a=Emory Remington]. Marsteller was the first trombonist with the [a=National Symphony Orchestra], performed in a Navy Band during World War II, and then served as principal trombonist for 25 years with the [a=Los Angeles Philharmonic Orchestra] and [a=The Hollywood Bowl Symphony Orchestra]. He was a member of the faculty of the University of Southern California from 1946 until his death. He premiered many major works, including the [a=Paul Creston] Fantasy for Trombone and Orchestra (commissioned for him by [a=Alfred Wallenstein] and the Los Angeles Philharmonic Orchestra and first performed in 1948) and Sonata by [a=Halsey Stevens] (1967). Marsteller was a master teacher, and many of his students hold chairs in major symphony orchestras around the country and in Europe.Needs Votehttps://en.wikipedia.org/wiki/Robert_MarstellerRobert MarstellarLos Angeles Philharmonic OrchestraThe Hollywood Bowl Symphony OrchestraNational Symphony Orchestra + +1406432Catherine GreuilletFrench classical sopranoNeeds VoteC. GreuilletIl Seminario MusicaleAkadêmiaEnsemble europeen William Byrd + +1406731Eddie VartanEdmond Vartan1937- 2001, composer, [a282391]'s brotherNeeds VoteE. VartanE. VarianE. VartanE. VartinE.VartanEd. VartanEddie VarlanEddy VartanEdmond VartanVarTanVartanシルヴィ・バルタンEddie Vartan Et Son OrchestreEddie Vartan & His Combo + +1407130Alexander WillAlexander Will is a German cellist.Needs VoteDresdner PhilharmonieUBS Verbier Festival Orchestra + +1407140Robert Christian SchusterRobert-Christian SchusterGerman bassoonist, born 1977 in Rostock, GDR.CorrectDresdner Philharmonie + +1407545Ruth UngerClassical Traverso flutistNeeds VoteLes Arts FlorissantsEnsemble Vanitasensemble3 + +1407546Maia SilbersteinAmerican classical violinistNeeds VoteLes Arts FlorissantsLa Petite BandeRicercar ConsortApotheosis (8)Les BuffardinsIl Trionfo Del TempoEnsemble La Moderna Prattica + +1407971Girolamo FantiniItalian composer and trumpeter (Spoleto, 1600 – Firenze, 1675).Correcthttp://it.wikipedia.org/wiki/Girolamo_FantiniFantiniG. FantiniДж. Фантини + +1407976Thibaud RobinneClassical trumpeter.Needs VoteThibaud RohimmeThibaut RobinneAnima EternaAkademie Für Alte Musik BerlinConcerto KölnLa Petite BandeBalthasar-Neumann-EnsembleTrompeten Consort Friedemann ImmerConcerto PalatinoMusica FiataDas Kleine KonzertNeue Düsseldorfer HofmusikLudovice EnsembleBarockorchester Münster + +1408150Grigory SokolovGrigory Lipmanovich Sokolov (Russian: Григорий Липманович Соколов)(born April 18, 1950, Leningrad) - Soviet and Russian pianist, laureate of the First Prize at the III International Tchaikovsky Competition. People's Artist of the RSFSR (1988). +From 1990 to the present day he lives in Verona, Italy.Needs Votehttp://en.wikipedia.org/wiki/Grigory_SokolovGregor SokolovGrigori SokolovGrigori SokolowGrigorij SokolowGrigory SokolowSokolovГ. СоколовГригорий Соколов + +1408304Peter LikaGerman bass vocalist, born 1947 in Augsburg, Germany.Needs VoteLikaПетер ЛикаRegensburger DomspatzenChor Des Bayerischen RundfunksLa Chapelle RoyaleFiguralchor Frankfurt + +1408566Honore DutreyJazz trombonist (born 1894 in New Orleans, LA, USA - died July 21, 1935 or 1937, Chicago, IL, USA). +In 1910 he started playing trombone in various bands in New Orleans, including Jimmie Noone's outfit. In 1917 he joined the Navy and was involved in an accident that permanently damaged his lungs causing him to suffer from asthma that eventually took his life. From 1920 to 1924 he played trombone with King Oliver's Creole Jazz Band, Carrol Dickerson, Johnny Dodds and Louis Armstrong's Stompers at the Sunset Cafe in Chicago. He also often led his own bands. After 1924, he played in several big bands, among others with the violinist Carroll Dickerson. He stopped his career in 1930 due to his asthma. +Needs Votehttps://en.wikipedia.org/wiki/Honor%C3%A9_Dutreyhttps://www.allmusic.com/artist/honore-dutrey-mn0001550746/biographyhttps://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/dutrey-honorehttps://adp.library.ucsb.edu/names/111687H. DutravH. DutrayH. DutreyHonoreHonore DutrayHonore DutreHonoré DufrayHonoré DutrayHonoré DutreyKing Oliver's Creole Jazz BandLouis Armstrong & His Hot SevenKing Oliver's Jazz BandJohnny Dodds Washboard BandJohnny Dodds' Hot SixLouis Armstrong And His StompersRichard Jones And His Jazz WizardsJohnny Dodds And His Orchestra + +1409325G. WarehamGeoffrey WarehamClassical woodwind instrumentalist (oboe and cor anglais). +Former member of the [a=London Symphony Orchestra] (1968-1970).Needs VoteGeoffrey WarehamLondon Symphony OrchestraLondon Wind Soloists + +1409385John HareAmerican tuba and sousaphone player of the 1920s and 1930s.Needs VoteErskine Tate's Vendome Orchestra + +1409386Erskine TateErskine Tate (born December 19, 1895, Memphis, Tennessee, USA - died December 17, 1978, Chicago, Illinois, USA) was an American jazz banjoist, violinist and bandleader. + +Tate moved to Chicago in 1912 and became an early figure on the Chicago jazz scene. His band, the Vendome Orchestra, played at the Vendome Theater, which was located at 31st and State Street. In the 1920s, Tate's band featured [a38201], [a326801], [a258698], [a1238220] and other famous jazz musicians.Needs Votehttps://en.wikipedia.org/wiki/Erskine_Tatehttps://adp.library.ucsb.edu/names/107072E. TateTateErskine Tate's Vendome Orchestra + +1409387Angelo FernandezNeeds VoteA. C. FernandezA.C. FernandezAlvin FernandezAngelo "Alvin" FernandezAngelo 'Alvin' FernandezFernandezErskine Tate's Vendome Orchestra + +1409388Norval MortonNorvell B. MortonAmerican jazz saxophonist (tenor) and clarinetist player, nickname "Flutes" (born June 1, 1895 in Detroit, Michigan – died 1962 in Detroit, Michigan). + +In 1917, he was employed in Detroit's Wayne Gardens. Around 1920, he moved to Chicago, where he played and recorded with [a=Erskine Tate's Vendome Orchestra], [a=Fess Williams And His Joy Boys] (directed by [a=Dave Peyton]), and, in the early 1930s, with [a=Reuben "River" Reeves & His River Boys]. In 1942, he was back in Detroit, playing with [a=Leroy Smith And His Orchestra]. + +Needs VoteNorvel "Flutes" MortonNorvell MortonReuben "River" Reeves & His River BoysFess Williams and His Joy BoysErskine Tate's Vendome Orchestra + +1409390James TateJazz trumpeter.CorrectErskine Tate's Vendome Orchestra + +1409391May AlixLiza Mae AlixJazz singer, born August 31, 1902, in Chicago. She recorded as a band vocalist with Louis Armstrong (1926) and Jimmie Noone (1929), performed at clubs and revues in the 1930s, retired from music c. 1941. + +The name May Alix was also used as pseudonym for [a=Alberta Hunter] on Paramount, Famous, Harmograph, and Puritan, and the name Mae Alix was a pseudonym on Silvertone 3520 for [a=Edna Hicks], and on Silvertone 3521 possibly for [a=Edmonia Henderson].Needs VoteAlix MayM. AlixMae AlixMax AlixMay AlexCatherine Henderson (3)Louis Armstrong & His Hot FiveJimmie Noone's Apex Club Orchestra + +1409392Roy PalmerAmerican early jazz trombonist, born April 2, 1892, died December 22, 1963. +Roy Palmer had a raspy tone yet a fluid style on the trombone which he played quite percussively (reminiscent but not derivative of Kid Ory). No matter what the setting, Palmer's playing added excitement, joy and musicality to the situation yet he is largely forgotten today except by 1920's collectors. Palmer started out as a guitarist (playing in Roseal's Orchestra as early as 1906), switched to trumpet and then finally trombone. An early member of the New Orleans jazz scene, Palmer played with Richard M. Johnes, Willie Hightower and many other groups. In 1917 he moved to Chicago where he worked with Lawrence Duhe's band. When King Oliver became the band's leader, Palmer departed. In the 1920's he played with a variety of now-forgotten bands including those led by Tig Chambers, Doc Watson and Hughie Smith. Palmer did have opportunities to record with Jelly Roll Morton (1924), Johnny Dodds (1927) and Richard M. Jones (1929) but it was his records with the State Street Ramblers (1931), the similarly boisterous Memphis Nighthawks (also known as the Alabama Rascals) in 1932, and finally with the Chicago Rhythm Kings (1936) that made him legendary. Fortunately all of his 1931-1936 recordings are available on the CDs State Street Ramblers Volumes 1 and particularly 2 from the RST label. After 1936, Roy Palmer was no longer a fulltime player, made no further recordings, ran a laundry business and taught trumpet, trombone and theory from his Chicago home.Needs VotePalmerR. PalmerRoyState Street RamblersJohnny Dodds' Black Bottom StompersMemphis Night HawksAlabama RascalsRichard Jones And His Jazz WizardsJelly Roll Morton's Kings Of JazzBirmingham BluetetteRoy Palmer's Sizzling Six + +1409393Rip BassetArthur BassettJazz banjo and guitar player, nicknamed "Rip", born October 25, 1903. +Bassett recorded with [a=Ma Rainey] and [a=Albert Wynn] in 1926, and with [a=Louis Armstrong] in 1927. Later played with [a=Boyd Atkins] 1929-1930, [a=Junie Cobb] 1931, [a=Carroll Dickerson] 1934-1935. "Retired from music; has worked in a Chicago machine plant for many years." (John Chilton, Who’s who of jazz, 1970, p. 32)Needs Vote"Rip" BassettA. BassettArthur BassettRip BassettLouis Armstrong & His Hot SevenLouis Armstrong And His Stompers + +1409396Eddie AtkinsJazz trombonist, born c. 1887 in New Orleans, Louisiana. Deceased. +Played with [a=King Oliver] in New Orleans, settled in Chicago after World War I, playing with Oliver, [a=Erskine Tate], [a=Junie Cobb] and others. Continued playing in the 1930s; with Art Short Orchestra in 1932.Needs Votehttps://musicianbio.org/ed-atkins/Ed AtkinsErskine Tate's Vendome Orchestra + +1409513Maria GoudimovМария GoudimovMaria Goudimov was born in 1983 in Moscow. + +In 1990, she moved to Hamburg, Germany, where her mother holds the position of the principal harpist of the Hamburg Philharmony. This is also when Maria started playing the harp under the guidance of her mother. +From 1999 til 2003 Maria had been the first harpist of the [a4709343]. + +Since 1999 Maria has been taking harp lessons with Prof. Erika Waardenburg. During her final year of high school (Christianeum in Hamburg), she was also a student in the Young Talent class at the "Hochschule für Musik Hamburg" with Prof. [a2023972]. +In june 2008, Maria obtained her Bachelor of Music degree at the Hogeschool voor de Kunsten Utrecht, the Netherlands, in the class of Prof. Erika Waardenburg. As of 2008 Maria is studying at the Hochschule für Musik Hanns Eisler Berlin with Prof. Maria Graf. + +Maria was principal harpist of the Gustav Mahler Youth Orchestra on their Eastertour 2007 and principal harpist of the World Orchestra of Jeunesses Musicales on their Europetour in January 2008. In 2007/08 Maria held a position at the [a975145]. +Needs Votehttp://www.mariagoudimov.com/Philharmonisches Staatsorchester HamburgGustav Mahler JugendorchesterHamburger Jugendorchester + +1409738City Of Birmingham Symphony Orchestra ChorusNeeds Major ChangesC B S O ChorusC.B.S.O. ChorusCBSOCBSO ChoirCBSO ChorusCCity Of Birmingham Symphony ChorusBSO ChorusCSBO ChorusCbso ChorusChorusCity Of Birmingham ChoirCity Of Birmingham S.O.City Of Birmingham Symphony ChorusCity Of Birmingham Symphony Chorus & OrchestraCity Of Birmingham Symphony Orchestra & ChorusCity of Birmingham Symphony ChorusEngland's City Of Birmingham ChorusLadies Of The City Of Birmingham Symphony ChorusLadies Of The City Of Birmingham Symphony Orchestra ChorusLadies of the City Of Birmingham Symphony Orchestra ChorusMen Of The CBSO ChorusMen of the CBSO ChorusMen's Voices Of The City Of Birmingham Symphony ChorusSbor ASmiseny Sbor Symfonického Orchestru Mesta BirminghamuThe City Of Birmingham Symphony Chorusバーミンガム市交響合唱団 + +1410329Naomi KatzViolinist, also credited with viola.Needs VoteNaomi Katherine KatzOrchestra Of St. Luke'sContinuum (4)Smithsonian Chamber Orchestra + +1412005Kurt WössKurt Wöss (2 May 1914, Linz, Austria – 4 December 1987, Dresden, East Germany) was an Austrian conductor and musicologist. + +Wöss was principal conductor of the Tonkünstler Orchestra from 1946 to 1951, the NHK Symphony Orchestra from 1951 to 1954. From 1956 to 1959 he was chief conductor of the Melbourne Symphony Orchestra (then known as the Victorian Symphony Orchestra). He was principal director of the Bruckner Orchestra Linz from 1967 to 1975.Correcthttps://en.wikipedia.org/wiki/Kurt_W%C3%B6ssK. WössKurt MossKurt WoessKurt WoosKurt WossProf. Kurt WoessWittWössКурт ВёссКурт УоссG. GerhardenNHK Symphony OrchestraBruckner Orchestra LinzTonkünstler OrchestraVictorian Symphony Orchestra + +1412119Basie's Bad BoysNeeds Major ChangesCount BasieLester YoungJo JonesBuck ClaytonWalter PageFreddie GreenJimmy RushingShad CollinsDan MinorDickie Wells + +1412612William CarterAmerican archlute, theorbo and guitar player from Florida.Needs VoteBill CarterCarterNew London ConsortThe Parley Of InstrumentsThe Academy Of Ancient MusicCollegium Musicum 90The King's ConsortPalladian EnsembleThe English ConcertFlorilegium + +1413229Lodewijk MeeuwsenClassical bass vocalist.Needs VoteNederlands Kamerkoor + +1413514Albert Washington (2)Jazz tenor/alto saxophonist and clarinetist, born October 6, 1902 in Chicago, Illinois. +Washington played with [a=Al Wynn] 1925-1926, [a=Louis Armstrong] 1927 and 1931-1932, [a=Erskine Tate] and [a=Boyd Atkins] 1929-1930. In New York working with [a=Fletcher Henderson] and [a=Fats Waller] (1935-1936). Moved back to Chicago, from 1955 music teacher in public schools, with occasional appearances.Needs VoteA. WashingtonAl WashingtonBud WashingtonLouis Armstrong & His Hot SevenLouis Armstrong And His OrchestraLouis Armstrong And His StompersZilner Randolph And His Orchestra + +1413600Theodor NicolaiOperatic vocalist.Needs VoteTheo NicolaiChor Des Bayerischen Rundfunks + +1413604Irmgard LampartGerman soprano vocalistCorrectChor Des Bayerischen Rundfunks + +1413607Erika RüggebergErika Geßner-RüggebergGerman soprano vocalist (* 02 June 1940; † 21 September 2018).Needs Votehttps://www.br-chor.de/erika-rueggeberg-zum-gedenken/Erika RuggebergChor Des Bayerischen Rundfunks + +1413650Charlie Allen (3)Trumpet player, born September 25, 1908 in Jackson, Mississippi, died November 19, 1972 in Chicago. +Allen grew up in Chicago, where he played with Hugh Swift in 1925, Dave Peyton and [a=Doc Cook] in 1927, and Clifford "Klarinet" King in 1928. He later rejoined Cook, after which he played with [a=Earl Hines] 1931-1934, 1937 and [a=Duke Ellington] 1935; he recorded no solos, however. During 1940s-1950s he worked with several bands, mainly in Chicago, and was also active as music teacher.Needs Votehttps://en.wikipedia.org/wiki/Charlie_Allen_(trumpeter)AllenAllen CharlieC. AllenDuke Ellington And His OrchestraEarl Hines And His Orchestra + +1413651Fred AvendorfJazz drummer.Needs VoteF. AvendorfDuke Ellington And His Orchestra + +1413762Vincent MauricciClassical viola playerCorrectBoston Symphony Orchestra + +1413763Patricia McCartyViola player Needs Votehttps://www.patriciamccarty.comBoston Symphony OrchestraBoston Symphony Chamber Players + +1413764Darlene GrayClassical violinistNeeds VoteBoston Symphony OrchestraSan Francisco Symphony + +1413765Marylou SpeakerMarylou Speaker Churchill American classical violinist and violin teacher, born in 1945 and died 10 November 2009.CorrectMarylou Speaker ChurchillMarylou ChurchillBoston Symphony Orchestra + +1413766Max HobartAmerican violinist and conductor.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraNational Symphony OrchestraLouisiana Philharmonic Orchestra + +1413767Jerome RosenJerome Rosen(1921-2011). American 20th-century classical composer, teacher, clarinetist, and saxophonist. For the orchestral musician (violin, keyboards) with the Cleveland and Boston Symphony Orchestras, use [a10370122]. +Needs Votehttps://www.ucdavis.edu/news/jerome-rosen-music-department-founder-dies-age-89/http://www.oac.cdlib.org/findaid/ark:/13030/c8xd1402/entire_text/RosenBoston Symphony Orchestra + +1413768Harvey SeigelHarvey SiegelClassical violinistCorrectHarvey SeigalBoston Symphony Orchestra + +1413769Bo Youp HwangKorean born classical violinistNeeds VoteBo Y. HwangBo-Youp HwangBoston Pops OrchestraBoston Symphony Orchestra + +1413770Mark KrollMark KrollHarpsichordist, fortepianist and liner notes authorNeeds Votehttp://www.markkroll.com/Boston Symphony OrchestraMembers Of The Early Music Ensemble Of Boston + +1413771Cecylia ArzewskiClassical violinist, born 1948 in Poland.CorrectBoston Symphony OrchestraThe Cleveland OrchestraBuffalo Philharmonic OrchestraAtlanta Symphony Orchestra + +1413772Emanuel BorokRussian born classical violinist, born in 1944.CorrectBoston Symphony OrchestraDallas Symphony OrchestraMoscow Philharmonic OrchestraCambridge Chamber Orchestra + +1414172Brian WightmanBritish classical bassoonist.CorrectThe Nash Ensemble + +1414275Georges UlmerJørgen Frederik UlmerSinger, songwriter and actor, born on 16 February 1919 in Copenhagen, died on 29 September 1989 in Marseille. He migrated to France via Spain from Denmark, and is the father of the singer [a282606].Needs Votehttp://en.wikipedia.org/wiki/Georges_Ulmerhttps://adp.library.ucsb.edu/names/356726G UlmerG. UllmerG. UlmerG.UlmerGeo. UlmerGeorg UlmerGeorge UlmerGeorges UlmarGerges UlmerJorgen Frederik UlmerUhyerUlmerUmerЖорж УльмерЮлмер + +1414960Russ CantorViolin player.Needs VoteCantor RussRuss CanterRuss KanterRussel CantorRussell CantorHarry James And His OrchestraThe NPG Orchestra + +1415464Gian Francesco MalipieroItalian composer, musicologist, music teacher and editor, born March 18, 1882 in Venice, Italy, died August 1, 1973 in Asolo, Treviso, Italy. +His musical production is vast and extended to every genre. +He is one of the musicians who participated as protagonists in the renewal of Italian music in the 20th century. +He studied counterpoint with [a=Enrico Bossi]. Following his teacher to the Bologna Conservatory, he graduated in composition in 1904. + +In 1913 he participated in a competition held by the Accademia di Santa Cecilia in Rome and presented five symphonic scores under five different names and he won the first four prizes. +Always in 1913 he wad greatly impressed by the first performance of Stravinsky's " The Rite of Spring", discovered Debussy, Ravel and others, and met [a=Alfredo Casella]. +He trained a whole generation of musicians, including [a=Luigi Nono] and [a=Bruno Maderna]. +He conceives the form without worrying about pre-established schemes, to which he prefers the free architectures that spring from his whimsical imagination. +His language rejects thematic developments and derivations, disdains exclusively decorative elements, virtuosity as an end in itself. +His harmonic language is influenced by the suggestion of Gregorian chant and ancient modal scales and is characterized by an extreme tonal instability.Needs Votehttp://en.wikipedia.org/wiki/Gian_Francesco_Malipierohttps://adp.library.ucsb.edu/names/102045C. F. MalipieroF. MalipieroFrancesco MalipieroG. F. MalipieroG. Fr. MalipieroG. Francesco MalipieroG.-F. MalipieroG.F. MalipieroG.Francesco MalipieroGian F. MalipieroGian Fr. MalipieroGian Francesco MalipierroGian-Francesco MalipieroGianfrancesco MalipieroMalipieroMalpieroДж. - Ф. МалипьероДж. Ф. МалипьероДж. Франческо МалипьероДж.-Ф. МалипьероДж.Ф. МалипьероДжан Франческо МалипьероФ. Малипьеро + +1415622Erkki AhoErkki Vilhelm AhoFinnish jazz trumpeter, trombonist and bandleader, born December 10, 1918 in Lovisa, Finland, died August 19, 2002.Needs VoteRytmi-Orkesteri + +1415625Asser FagerströmAsser FagerströmBorn on July 27th, 1912 in Helsinki, Finland. Died on October 6th, 1990 in Helsinki, Finland. A Finnish composer, arranger, conductor, musician, journalist and publisher. His instruments were piano and accordion.Needs VoteA. FagerströmHumppa-Veikot + +1415638Mauri MustonenFinnish clarinet playerNeeds VoteM. MustonenOnni Gideonin Kvintetti + +1415639Rytmi-OrkesteriNeeds Major ChangesOrkesteriRytmi OrchestraRytmi Ork.Rytmi OrkesteriRytmi-EnsembleRytmi-ork.Rytmi-orkesteriEsa PakarinenErkki AhoOssi Aalto + +1415649Ossi AaltoOsmo Adolf AaltoBorn August 17th, 1910 in Helsinki, Finland. Died January 20th, 2009 in Helsinki, Finland. A Finnish jazz drummer.Needs VoteDallapéOssi Aallon Skiffle-YhtyeRytmi-OrkesteriOssi Aallon OrkesteriOssi Aallon YhtyeOssi Aalto Ja Sekstetti + +1415657Sointu-OrkesteriCorrectSointu - OrkesteriSointu Ork.Sointu OrkesteriSointu-OrkesterSointu-ork.Sointu-orkesteriDallapé + +1415659Åke GranholmÅke Leander GranholmA Finnish jazz guitarist, composer, journalist and photographer. Born on March 19, 1926 and died on October 7, 1981.Needs VoteGranholmZke GranholmÅ-L. GranholmÅ. GranholmÅke L. GranholmSeppo (8)Ari KuusiOlli Hämeen KvintettiOlli Häme TrioÅke Granholm SextetFinnish Jazz All StarsThe Ditty Dealers + +1415662Eero LauresaloEero Anton Ensto LauresaloNeeds VoteE. LauresaloE.LauresaloEero Lauresalo (Lindroos)Eero LauressaloEero LindroosDallapéHumppa-Veikot + +1415675Gösta HagelbergCorrectGosta HagelbergRamblers-Orkesteri + +1415683Olli HämeOlli HämäläinenFinnish jazz musician, double bassist and music journalist, born May 19th, 1924 in Helsinki, Finland; died June 11th, 1984 in Tampere, Finland. One of the pioneers of Finnish jazz.Needs VoteHämeO. HämeO.HämeOlli Häme (Hämäläinen)KaarinaOlli HämäläinenOlli Hämeen KvintettiOlli Hämeen OrkesteriOlli Häme TrioFenno Jazz BandRolle Lindström Dixieland BandOlli Hämeen KvartettiValto Laitinen Trio + +1415684Ivan PutilinIvan Feodorovitš PutilinBorn on March 18th, 1909 in St. Petersburg, Russia. Died on July 24th, 1997 in Helsinki, Finland. A Russian-born musician who moved to Finland when he was a child. He is best known for being a long-time guitar playing teacher but he was also a musician who played guitar, double bass, mandolin and balalaika.CorrectI. Putilin + +1415686Tapani ValstaHeikki Tapani ValstaFinnish classical pianist and organist, born 4 October 1921 in Ulvila, Finland, died 21 April 2010.CorrectT. Valstaタパニ・ヴァルスタパニ・ヴァルスタ + +1415719Anne ScherrerDouble bassist.CorrectOrchestre National De L'Opéra De Paris + +1415721François HarmelleFrench violinist.CorrectF. HarmelleFrançois HarmellOrchestre National De L'Opéra De Paris + +1415722Didier CostariniFrench oboist.CorrectOrchestre Des Concerts LamoureuxEnsemble Jean-Walter Audoli + +1415771Leo KähkönenLeo KähkönenLeo Kähkönen (1924–1998) was a Finnish saxophonist and clarinetist.Needs VoteKähkönenL. KähkönenLeo Kähkösen YhtyeLeo Kähkösen OrkesteriRadion Tanssiorkesteri + +1415778Veikko TamminenNeeds VoteRytmin Swing-YhtyeOssi Aalto Ja Sekstetti + +1415800Timothy BennettClassical bass vocalistNeeds VoteTim BennettThe Choir Of Christ Church Cathedral + +1415801Janet CoxwellBritish classical soprano vocalist.Needs VoteJan CoxwellGabrieli ConsortThe Scholars Baroque EnsembleMagnificatThe Tallis Scholars + +1416017Christine MoranClassical violinist.Needs VoteCollegium VocaleLes Musiciens Du LouvreL'ArpeggiataCantus CöllnCappella ColoniensisMusica FiataDas Kleine KonzertEnsemble Da SonarNeue Düsseldorfer HofmusikJohann Rosenmüller EnsembleLe Concert BriséCarissimi-Consort München + +1416675Mila GeorgievaBulgarian violinist.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +1416997Andrew LucasOrganist, born in Wellington, Shropshire, in 1958. +From 1976, he studied at the Royal College of Music in London, where his teachers included [a1196164] for organ and [a568547] for composition. After graduating from London University (BMus) he continued his organ studies with [a842253], and with [a1092510] in Amsterdam. He then worked for seventeen years at St Paul’s Cathedral in London, the last eight years as the Assistant Director of Music, until becoming Master of the Music of St Albans Cathedral and Music Director of St Albans Bach Choir in 1998. He has also been a freelance musician including continuo organ and harpsichord with the Academy of St Martin in the Fields in the mid-1980s.Needs Votehttp://www.stalbanscathedral.org/worship-and-music/cathedral-choirs/cathedral-musicianshttp://www.trinitycollegechapel.com/services/organ-music-evensong/andrew-lucas/A. LucasLucasThe Academy Of St. Martin-in-the-Fields + +1417030Lili ChookasianAmerican operatic contralto, born 1 August 1921 in Chicago, Illinois, United States and died 9 April 2012 in Branford, Connecticut, United States.Needs Votehttp://en.wikipedia.org/wiki/Lili_Chookasianhttps://adp.library.ucsb.edu/names/358767ChookasianLiliLilli ChookasianLillian ChookasianLily ChookasianThe Metropolitan Opera + +1417290Louis "King" GarciaAmerican jazz trumpeter, born August 25, 1905 in Juncos, PR, died April 9, 1983 in Los Angeles. +Moved to the USA in early 1920s. In New York worked with [a=Original Dixieland Jazz Band] c. 1926, recorded with [a=The Dorsey Brothers] 1930-1931 and [a=Vic Berton] 1935. Played in the big bands of [a=Richard Himber] 1936, Nat Brandwyne 1937-1938 and [a=Louis Prima] 1939 and worked as a studio musician. From the late 1940s led a Latin band. Ill-health forced him to retire shortly after moving to California in 1960.Needs VoteLouis GarciaThe Dorsey Brothers OrchestraThe Travelers (5)Vic Berton And His OrchestraLouis "King" Garcia And His Swing BandAmanda Randolph And Her Orchestra + +1417670Eberhard MaldfeldGerman Classical double-bass (contrabass) player.Needs VoteHans Eberhard MaldfeldHans-Eberhard MaldfeldMusica Antiqua KölnConcerto KölnSérie BLa Stravaganza KölnHofkapelle StuttgartE-Mex EnsembleScala Köln + +1418805Sarah Clarke (3)Classical violist.Needs VoteOrpheus Chamber OrchestraSolisti New YorkColumbia String Quartet + +1418824Charles JennensEnglish librettist - born 1700 or 1701 in Leicestershire (England), died 20 November 1773.Needs Votehttp://en.wikipedia.org/wiki/Charles_JennensC. JennensCh. JennensCharles JenningsJennensRev. Charles Jennensselected from the Bible by Charles JennensЧ. ДженненсЧ. Дженнингс + +1418831Uwe Christian HarrerUwe Christian HarrerAustrian chorus master and conductor (* 29 September 1944 in Leonding, Upper Austria).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_H/Harrer_Uwe.xmlhttps://de.wikipedia.org/wiki/Uwe_Christian_HarrerHarperHarrerHarrer UweU. C. HarrerU. Chr. HarrerU. HarrerU.C. HarrerU.Ch. HarrerUwe HarrerUwe-Christian Harrerウーヴェ・クリスティアン・ハラーWiener KammerchorChorus Viennensis + +1419186David PugsleyEnglish recorder player.Needs Votehttp://yonaettlinger.weebly.com/david-pugsley.htmlThe Early Music Consort Of LondonThe English Baroque SoloistsThe Academy Of Ancient MusicDavid Munrow Recorder Ensemble + +1419187Ian HarwoodClassical cittern player and sleeve notes authorNeeds VoteHarwoodI. HarwoodThe Consort Of Musicke + +1419421Judy EllingtonJudy Ellington GrahamJazz vocalist from Raleigh, North Carolina, who sang with various orchestras - most notably that of [a=Charlie Barnet] - in the late 1930s and early 1940s. + +Ellington started her career at the age of 12 on a local radio station, WPTF. Around 1933 she followed his brother Cecil Ellington and his band to Richmond. From there she moved to Washington DC, where she sang at clubs for two and a half years. In New York, she first recorded with [a=Russ Morgan (2)], and then sang with [a=Wingy Manone] and toured with [a=Rudy Vallee]. After returning from tour, she joined [a=Charlie Barnet]'s orchestra in October 1938. She left Barnet's orchestra to join [a=Tommy Reynolds (3)] in December 1939. She briefly performed on her own before marrying vaudeville comedian Donald Graham in 1942, after which she retired from singing. She made a brief comeback in 1968 and performed a series of shows in Raleigh. + +Born: circa 1916 in Raleigh, North Carolina, USA +Died: 20 June 1980 in Las Vegas, Nevada, USA (aged 64)Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109676/Ellington_JudyJuddy EllingtonCharlie Barnet And His OrchestraBuster Bailey & His Orchestra + +1419764Ritva LehteläRitva Kaarina LehteläFinnish pianist and singer born on April 30, 1939 in Viipuri, Finland and died on January 19, 2025 in Espoo, Finland.Needs VoteTrio Lehtelä + +1419768Simon GayAlto vocalist.Needs VoteThe Choir Of Westminster Abbey + +1420154Dixie-Land ThumpersOr Dixieland Thumpers, a 1920's Chicago jazz ensemble.CorrectDixieland ThumpersDixieland TrumpersDodds' Dixieland ThumpersJohnny Dodds FourThe Dixieland ThumpersJohnny DoddsBaby DoddsJimmy BlytheNatty DominiqueJimmy Bertrand + +1420156Jimmy Blythe's OwlsNeeds Major ChangesJohnny DoddsBaby DoddsBud ScottJimmy BlytheNatty Dominique + +1420158R.Q. DickersonRoger Quincey DickersonEarly jazz trumpeter, born c. 1898 in Paducah, Kentucky, died January 21, 1951 in Glens Falls, New York. +Dickerson grew up in St. Louis, where he played in local theatres 1918-1920; toured with Wilson Robinson's Bostonians in 1923, after which the band took up residency at the Cotton Club in New York under leadership of [a=Andy Preer]. When Preer died in 1927 the band worked as the Cotton Club Orchestra, then as [a=The Missourians], to become [a=Cab Calloway And His Orchestra] in 1930. Dickerson left Calloway in 1931 and ceased to work as a musician.Needs Votehttps://en.wikipedia.org/wiki/R.Q._Dickersonhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/115455/Dickerson_R._QDickersonP.Q. DickersonR. M. DickersonR. Q. DickersonR.I. DickersonR.M. DickersonRoger DickersonRoger Q. DickersonRoger Quincey DickersonRoger-Quincey DickersonRoger-Quincy DickersonCab Calloway And His OrchestraAndy Preer And The Cotton Club OrchestraThe Missourians + +1420647Marijke Smit SibingaDutch harpsichordist, born 1 May 1926 in Nieuwkoop, Netherlands; died 13 January 2019 in Laren, NetherlandsNeeds VoteMarijke Smit-SibingaConcertgebouworkestCaecilia ConsortEnsemble Benedetto Marcello + +1420865Anthony RandallBritish conductor, hornist, and Professor of Horn. ( 1937 - 2023), born in Heath, Wales, UK.Needs Votehttp://www.editiondb.com/randalltext.htmhttps://www.feenotes.com/database/artists/randall-anthony/A RandallA. RandallA.RandallT. RandallT. RandellTony RandallTony RandellEnglish Chamber OrchestraPhilip Jones Brass EnsembleSadler's Wells Opera CompanyThe London Symphony Brass Ensemble + +1421085Regula HäuslerRegula Häusler-MengesSwiss classical cellistNeeds Votehttp://www.wilhelm-geigenbau.ch/index.php?id=3282&L=1&tx_kecontacts_pi1%5Bmode%5D=single&tx_kecontacts_pi1%5Bid%5D=2Regula Häuser MengesRegula Häusler MengesCamerata Bern + +1421385John Bartlett (2)John Bartlet (or John Bartlett, fl. 1606-1610) was an English renaissance composer and lutenist. His only publication, the Booke of Ayres with a Triplicitie of Musicke, was released in 1606 and dedicated to his employer at the time, Sir Edward Seymour, Earl of Hertford.Correcthttp://en.wikipedia.org/wiki/John_BartletBartletBartlettJohn BarleyJohn Bartlet + +1421402Daniel CollinsClassical alto / countertenor and tenor vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Collins-Daniel.htmDan CollinsMagnificatThe SixteenThe Cambridge ConsortTenebrae (10)Orpheus Britannicus + +1421832Franz WiteckiEast German classical wind instrumentalistNeeds VoteRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +1421833Heinz GurschEast German classical trumpeter.Needs VoteRundfunk-Sinfonieorchester Berlin + +1421834Günter Keil (2)East German classical hornistNeeds VoteRundfunk-Sinfonieorchester Berlin + +1421835Kurt ScharmacherEast German classical harpsichordistNeeds VoteRundfunk-Sinfonieorchester BerlinKammerorchester BerlinHändel Festspiel-Orchester Halle + +1421836Fritz GräfeEast German classical hornistNeeds VoteF. GräfeRundfunk-Sinfonieorchester BerlinKammerorchester BerlinArno Flor Und Sein Streichorchester + +1421837Fritz KlaußenerEast German classical wind instrumentalist.Needs VoteRundfunk-Sinfonieorchester Berlin + +1421838Otto PischkitlEast German classical bassoonistNeeds VoteRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +1422291Eva PolittClassical violinist.Needs VoteEva PollitCapella Agostino SteffaniCantus CöllnHannoversche HofkapelleMusica Alta Ripa + +1422295Anne RöhrigGerman classical violinist and conductorNeeds VoteAnne RohrigAnne RöhringLondon BaroqueMusica Antiqua KölnCapella Agostino SteffaniHannoversche HofkapelleConcerto PalatinoCamerata KölnMusica Alta RipaCapella Augusta Guelferbytana + +1422301Hella HartmannClassical viola playerNeeds VoteCapella Agostino SteffaniLa StagioneHannoversche HofkapelleJohann Rosenmüller Ensemble + +1422302Christoph HeidemannGerman classical violinist.Needs VoteCapella Agostino SteffaniHannoversche HofkapelleHamburger RatsmusikConcerto PalatinoBarockorchester L'ArcoLa RicordanzaWrocławska Orkiestra Barokowa + +1422303Ulrich WedemeierGerman Theorbo and Lute instrumentalist.Needs VoteUli WedemeierWedemeierMusica Antiqua KölnI CiarlataniHannoversche HofkapelleHamburger RatsmusikCapella De La TorreConcerto Con VoceMusica Alta RipaJohann Rosenmüller EnsembleEnsemble Devotio ModernaCapella Augusta Guelferbytana + +1422313Dorothee PalmClassical cellistNeeds VoteCapella Agostino SteffaniHannoversche HofkapelleHamburger RatsmusikJohann Rosenmüller EnsembleLa Ricordanza + +1422405Gerhart WüstnerChorus masterCorrectGerhard WüstnerChor der Staatsoper Dresden + +1422509Ben Smith (9)Benjamin J. SmithBorn March 1, 1905, Memphis, TN. +US alto saxophonist, clarinetist and drummer from the Swing era. He could be the same person as the songwriter of ""I Dreamt I Dwelt In Harlem" (see [a=Ben Smith (5)]). +Producer, arranger and owner of several labels in the 50s/60s such as [l=X-Tra Records (4)], [l=Tarx Records], [l=Teenage Record Co.], [l=Triode Records], [l=Tra-x Records] and publisher [l=Styletone]/[l=Styletone Music].Needs Votehttp://www.uncamarvy.com/4BelAires/4belaires.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/111262/Smith_BenB. SmithBennie SmithSmithAndy Kirk And His Clouds Of JoyBenny Carter And His OrchestraAndy Kirk And His OrchestraHot Lips Page And His OrchestraClaude Hopkins And His OrchestraAlabama Washboard StompersBen Smith QuintetChicago Hot FiveHot Lips Page And His BandBen Smith QuartetBen Smith And His Orchestra + +1422599Loewi LinTaiwanese-Canadian cellist.Needs VoteNational Symphony OrchestraBoston Modern Orchestra Project + +1422685Améline Chauvette-GroulxClassical violinist.Needs VoteBergen Filharmoniske Orkester + +1422861Carl FleschFlesch KárolyRenowned violinist and music educator (9 October 1873, Moson, now [i]Mosonmagyaróvár[/i], Hungary — 14 November 1944, Lucerne, Switzerland), who revolutionized many fundamentals in training methodology and firmly re-established the role of violinists as full-range artists (rather than merely technical virtuosi) in classical music. One of the most coveted tutors during his lifetime, [b]Carl Flesch[/b] authored several valuable manuals, such as [i]Die Kunst desseveralels[/i] (The Art of Violin Playing, 1923) and [i]Das Skalensystem[/i] (Scale System, 1926). + +Carl Flesch began playing violin when he was six, formally trained at [url=https://discogs.com/label/1209200]Vienna Conservatory[/url] (1886–89) under Jakob Grün and [url=https://www.discogs.com/label/435226]Conservatoire de Paris[/url] (1890–94) with Eugène Sauzay and [a=Martin Pierre Marsick]. In 1897, Flesch got his first academic position at [url=https://www.discogs.com/label/785531]Conservatorul de Muzică[/url] in Bucharest. During his five-year tenure as violin professor, [url=https://www.discogs.com/artist/4125074]Queen Elisabeth[/url] appointed Carl as a court musician of Romania. In 1903, Carl Flesch relocated to the Netherlands to teach at [l=Conservatorium van Amsterdam], closely befriending one of his colleagues, [a=Julius Röntgen], and forming a string quartet with a few other faculty members. + +Following a critically-acclaimed 1905 series of Berlin recitals, where he performed the best historical violin masterpieces, Carl permanently moved to Germany in 1908, preferring the country's less suppressive cultural climate. Flesch remained focused on teaching, mostly giving private classes, but continued regularly performing on-stage. Carl toured as a solo recitalist all across Europe, as well as in Russia (1908) and the USA in 1914, where he made a few "diamond disc" recordings for [l=Edison Records]. He also played in a highly-successful trio with the pianist [a=Artur Schnabel] and cellist Jean Gérardy (replaced by [a=Hugo Becker] in 1914), gaining prominence in the 1920s as one of the leading European chamber ensembles. Between 1924 and '28, Carl Flesch lived in the United States, employed as head of violin studies at a newly-established [l1051396] in Philadelphia. Carl co-founded the Curtis Quartet, playing 1st violin with his colleagues Emanuel Zetlin (2nd violin), [a1334698] (viola), and [a5145111] (cello). + +In 1928, Carl Flesch returned to Germany, working as an associate professor at Berlin's [url=https://www.discogs.com/label/985571]Hochschule für Musik[/url] and hosting summer violin courses at his villa in Baden-Baden. Carl, a Hungarian Jewish, received his German citizenship in 1930. As the Nazi regime rose to power, Flesch was fired from the Berlin Conservatory in the Fall of 1934. One of Carl's closest German friends, distinguished conductor [a=Wilhelm Furtwängler] repeatedly wrote to [a=Adolf Hitler], claiming that expelling Flesch only increased Germany's already catastrophic cultural isolation. Despite this, Reich revoked Carl's German citizenship in June 1935, forcing him to escape from Baden-Baden to London. + +In 1939, Carl Flesch made some concert arrangements in Hague and temporarily settled in the Netherlands. When Nazi troops occupied Dutch territory in May 1940, Carl Flesch unsuccessfully tried to return to the USA but couldn't acquire visas. By 1942, as he lost Hungarian citizenship, Gestapo arrested Carl and his wife; he had to wear the "[i]Judenstern[/i]" yellow badge, banned from performing or teaching anywhere. Furtwängler, who never gave up on Carl, kept bombarding Hitler's apparatus with letters, so Flesch was released from prison. Thanks to [a5554945] and [a1116811]'s pledges, Hungarian authorities reinstated Carl's passport, and he finally left Germany in December 1942. Carl Flesch spent the rest of his life in Switzerland, leading master classes at [url=https://www.discogs.com/label/1599075]Lucerne Conservatory[/url] on [a397617]'s invitation, and passed away at 71. + +Flesch played and owned at least a dozen antique violins over his career, including the 1757 "[url=https://discogs.com/artist/9044320][i]Pietro Guarneri[/i][/url]" and 1745 "[url=https://discogs.com/artist/6684216][i]Lorenzo Guadagnini[/i][/url]." In 1906, Carl acquired [a3610124]'s [b]1725 "[i]Brancaccio[/i]"[/b] for his 33ʳᵈ birthday, which he had to sell in 1931, in the aftermath of the infamous [url=https://en.wikipedia.org/wiki/Wall_Street_Crash_of_1929]N.Y. Stock Exchange crash[/url], to [url=https://en.wikipedia.org/wiki/Francesco_von_Mendelssohn]Franz von Mendelssohn[/url], wealthy German art collector and amateur musician. The priceless instrument was destroyed in the World War II bombings of Berlin. + +[b]Prominent students[/b] +[a=Charles Barkel], [a3305014], [a639960], [a=Ivry Gitlis], [a=Szymon Goldberg], [a=Ida Haendel], [a=Josef Hassid], [a=Ginette Neveu], [a=Yfrah Neaman], [a=Ricardo Odnoposoff], [a=Eric Rosenblith], [a=Max Rostal], [a=Henryk Szeryng], [a=Roman Totenberg], [a=Josef Wolfsthal], [a=Janine Andrade], [a=Josef Gingold], [a=Corrado Romano], [a=Tibor Varga], [a=Nicolae Buică], [a3502408], [a874947], [a976872], [a=Bruno Straumann], [a7087289], [a=Louis Krasner] (who also reached out to Flesch over technical difficulties before premiering [a=Alban Berg]'s 1935 '[I]Violin Concerto[/i]'), [a=Henri Temianka] (one of Flesch's favorite pupils; he later wrote, "[i]there was above all Temianka, who did great credit to Curtis Institute: both musically and technically, he possessed a model collection of talents[/i].")Needs Votehttps://en.wikipedia.org/wiki/Carl_Fleschhttps://www.gutenberg.org/ebooks/author/3357https://imslp.org/wiki/Category:Flesch,_Carlhttps://web.archive.org/web/20230204221032/http://fleschviolincompetition.com/https://web.archive.org/web/20090623092027/www.carl-flesch.de/cflesch_cpt.htmlhttps://web.archive.org/web/20110716210227/www.nederlandsmuziekinstituut.nl/en/archives/list-of-music-archives?task=listdetail&id=2_7030https://adp.library.ucsb.edu/index.php/mastertalent/detail/105605/Flesch_CarlC. FleschC.FleschFleschK. FleschК. ФлешКарл Флешカール・フレッシュ + +1423881Andrée AzarClassical violinistNeeds VoteLes Violons du Roy + +1424032Annie FischerHungarian classical pianist. She was born 5 July 1914 in Budapest, Hungary and died 10 April 1995 in Budapest, Hungary.Correcthttp://en.wikipedia.org/wiki/Annie_FischerA. FischerA. FišerAnni FischerFischerFischer AnnieА. ФишерАнни ФишерАнни Фишер (Венгрия)Анни Фишер = Annie FischerФишер + +1424466Michel DensFrench operatic baritone, born 22 June 1911 in Roubaix, France and died 19 December 2000 in Paris, France.CorrectDensMichel Dens, Baryton + +1424467Henri LegayFrench operatic tenor, born 1 July 1920 in Paris, France and died 16 September 1992.CorrectH. Legay De L'Opéra De ParisHenry Legay + +1424613Asei Kobayashi小林亜星Japanese composer, lyricist, actor, and TV personality. Born 11 August 1932, died of heart failure 30 May 2021.Needs Votehttp://www.remus.dti.ne.jp/~astro/aseiA. KobayashiKobayashi AsoマークHama千家和也小林 亜星小林亚星小林亜星小林亞星 + +1425631Axel Wolf (2)Classical lutenist and theorbist.Needs Votehttp://www.laute.net/laute.net/axelwolf?set_language=en&cl=enAxel Hermann WolfAxel WolfWolfBayerisches StaatsorchesterCapella Agostino SteffaniUnited Continuo EnsembleArmonico TributoMusica FiataEnsemble Phoenix MunichEnsemble 1700Orlando Di Lasso EnsembleLyriarteNeue Hofkapelle MünchenStefan Temmingh & EnsembleEnsemble Musica Narrans + +1427885Shirley RumseyBritish lutenist (also vihuela, viola da mano, renaissance and baroque guitar) and singer.Needs VoteRumseySRSh. RumseyThe Consort Of MusickeLondon Pro MusicaKithara (5) + +1428247Vladimir YampolskyВладимир Ефимович Ямпольский (Vladimir Efimovich Yampolskij)Vladimir Yampolsky (1905–1965) was a Russian pianist, who served as [a=David Oistrach]'s accompanist since the 1940s. He was a father of a pianist [a=Victor Yampolsky] (b. 1942).Needs Votehttp://www.arkivmusic.com/classical/Name/Vladimir-Yampolsky/Performer/19171-2Igor YampolskyV. E. YampolskiV. IampolskiV. IampolskyV. JampolskijV. YampolskiV. YampolskyV.E. JámpolszkíjVl. JampolszkijVladimir IampolskiVladimir J. YampolskyVladimir JampolskiVladimir JampolskijVladimir Jefimovič JampolskijVladimir YamploskiVladimir YampoliskyVladimir YampolskiVladimir YampolskijVladimír JampolskijW. JampolskiW. YampolskyWlad. JampolskiWladimir JampolskiWladimir JampolskijWladimir YampolskiWladimir YampolskijWladimir YampolskyWladimir YampolsyWładimir JampolskyБ. Е. ЯмпольскийВ. Е. ЯмпольскийВ. ЯмпольскийВладимир ЯмпольскийЯмпольский + +1428412Dale CarleyAmerican jazz trumpeter.CorrectDale CarlyeCount Basie OrchestraCount Basie Big Band + +1428466Robert Irving (2)British conductor. He was born 28 August 1913 in Winchester, England, UK and died 13 September 1991. He was the musical director of England's Royal Ballet. He has conducted two CBS television shows from New York-"Sleeping Beauty" and "Cinderella." He composed music for the 1949 Theatre Guild production of "As You Like It" starring Katherine Hepburn. He is a graduate of New College, Oxford. He was a Leverbulme Scholar at the Royal College of Music in London. During World War II, he served in the Royal Air Force and was twice awarded the Distinguished Flying Cross.Needs Votehttps://en.wikipedia.org/wiki/Robert_Irving_(conductor)IrvingR.IrvingRobert IrvinRobert Irving + +1429194Bernhard von der GabelentzGerman violinist, born in 1976 in Berlin, Germany.Needs VoteBernhardBernhard v. d. GabelentzBernhard v.d. GabelentzBerliner SymphonikerBerlin String TheoryPhilharmonisches Orchester Des Staatstheaters CottbusQuinteto Ángel + +1430000Luca PiancaLuca Pianca is Italian-Swiss lutenist born in Lugano, Switzerland, his specialty is the archlute. He studied with [a=Nikolaus Harnoncourt] at Mozarteum Salzburg and collaborated with [a=Concentus Musicus Wien] since 1982.Needs Votehttp://en.wikipedia.org/wiki/Luca_Piancahttp://www.pianca-ghielmi.com/Л. ПианкаIl Giardino ArmonicoNew Seasons EnsembleLes Basses RéuniesEnsemble 1700Musica Antiqua RomaIl Pomo d'OroEnsemble Claudiana + +1430001Michele BarchiClassical organist and harpsichordist.Needs VoteEnsemble 415Il Giardino ArmonicoRetablo Barocco + +1430197Rita GorrMarguerite GeirnaertBelgian operatic mezzo-soprano, born 18 February 1926 in Zelzate, Belgium, died 22 January 2012 in Denia, Spain.Needs Votehttp://en.wikipedia.org/wiki/Rita_Gorrhttp://www.cantabile-subito.de/Mezzo-Sopranos/Gorr__Rita/gorr__rita.htmlGorrRita CorrRita GohrРита Горр + +1430390Sandrine VautrinFrench classical contrabassist.Needs VoteOrchestre De Paris + +1430723Joëlle CousinFrench violinist.CorrectOrchestre De Paris + +1430726Stéphane LogerotFrench double bass player.Needs Votehttps://www.facebook.com/profile.php?id=100008369198380S.LogerotOrchestre National De FranceRichard Galliano SeptetOrchestre Tous En Cœur + +1430734Sophie MaurelFrench violin player.Needs VoteOrchestre National De L'Opéra De ParisLes Archets De Paris + +1430775Raphael BellAmerican classical cellistNeeds VoteMahler Chamber OrchestraAntwerp Symphony Orchestra + +1432837Untamo KorhonenUntamo Oskari KorhonenFinnish musician. Born on September 2, 1919 in Nurmijärvi, Finland and died on July 12, 1983 in Helsinki, Finland.Needs VoteLeo Lindblom Orkesteri"Menneiltä Ajoilta" Studioyhtye + +1432840Marjukka GustafssonMarjukka Gustafsson née HapuojaFinnish pianist and session singer (1942–1989), sister of [a=Maija Hapuoja].Needs VoteMarjukka GustafsonMarjukka Gustavsson + +1432908František LhotkaClassical cellist.Needs Votehttps://www.ceskafilharmonie.cz/en/players/frantisek-lhotka/The Czech Philharmonic Orchestra + +1433157Karol MiczkaPolish classical violinistNeeds VoteOrchestre De L'Opéra De Lyon + +1433249Elden BaileyElden C. BaileyClassical percussionist +Member of the New York Philharmonic Orchestra in the 1960sNeeds Votehttps://pas.org/elden-c-buster-bailey/Buster Elden BaileyElden (Buster) BaileyElden C. BaileyGil Evans And His OrchestraNew York PhilharmonicSauter-Finegan OrchestraThe Percussion Section + +1433250Saul GoodmanTimpanist & Percussionist. +Principal Timpanist of the New York Philharmonic Orchestra from 1926-1972. Member of the faculties at the Conservatoire de musique du Québec à Montréal and the Juilliard School of Music where he taught many who went on to become timpanists in symphony orchestras around the world.Needs VoteS. GoodmanNew York Philharmonic + +1434553John AnsellJohn Ansell born Jacob AnsellBritish violist, violinist, conductor, and composer of light classical music. +Born March 26, 1874 in Hoxton, London, England. +Died December 14, 1948 in Marlow, Buckinghamshire, England. +Father of songwriter [a2626428]. +He studied composition at [l305416]. Between 1904 and 1911, he played viola in the [a=London Symphony Orchestra]. He then pursued a career conducting theatre orchestras in London. He was particularly associated with the Playhouse (1907-?), the [a=Winter Garden Theatre Orchestra] (for seven years), the [a=Alhambra Theatre Orchestra] (1913-1920), the [a=Shaftesbury Theatre Orchestra], and the [a=Adelphi Theatre Orchestra]. His compositions include both operettas and orchestral works, some of the latter incidental music, some not.Needs Votehttps://open.spotify.com/artist/4BrrSjsvseBdCRgLmR7NXg?autoplay=truehttps://music.apple.com/us/artist/john-ansell/288561043https://en.wikipedia.org/wiki/John_Ansellhttp://www.musicweb-international.com/garlands/ansell.htmhttp://landofllostcontent.blogspot.com/2021/02/john-ansell-overture-plymouth-hoe-1914.htmlhttps://www.classicalmidi.co.uk/anselljohn.htmhttp://composers-classical-music.com/a/AnsellJohn.htmAnsellJ. AnsellMr. J. AnsellMr. John AnsellLondon Symphony Orchestra + +1434559Richard Armstrong (4)Sir Richard Armstrong English conductor (* 07 January 1943 in Leicester, England).Needs Votehttps://en.wikipedia.org/wiki/Richard_Armstrong_(conductor)https://www.chandos.net/artists/Richard_Armstrong/47050Richard ArmstrongRichard Armstrong/ScotSir Richard Armstrong + +1434564Dennis BrainBritish horn player (Born 17 May 1921 London, England, UK – Died 1 September 1957 Hatfield, Hertfordshire, England, UK). +He studied at the [l527847] under his father's tutelage. Brain debuted in performance on 6 October 1938, playing second horn under his father with the [a=Busch Chamber Players]. At the age of 21, he was appointed to the first horn position in [a=The National Symphony Orchestra]. He (and his brother) then joined [a=The Central Band Of The Royal Air Force]. Dennis began the [a=Dennis Brain Wind Quintet] while still in the RAF, and later expanded it to the [a=Dennis Brain Wind Ensemble]. After the Second World War, he filled the position as principal horn in the newly founded [a=Philharmonia Orchestra] and [a153980]. He played with [a=London Baroque Ensemble], both on recordings and in concert. +Son of [a=Aubrey Brain] & [a=Marion Brain], and brother of [a=Leonard Brain]. Nephew of [a=Alfred Brain].Needs Votehttp://en.wikipedia.org/wiki/Dennis_Brainhttp://www.dennisbrain.net/https://www.hornsociety.org/ihs-people/past-greats/28-people/past-greats/122-brainhttps://musicianbio.org/dennis-brain/https://www.encyclopedia.com/people/literature-and-arts/music-history-composers-and-performers-biographies/dennis-brainhttps://www.telegraph.co.uk/culture/music/rockandjazzmusic/3668933/Dennis-Brain-Fanfare-for-the-horn-player-who-blew-up-a-storm.htmlhttps://www.findagrave.com/memorial/9404/dennis-brainBrainD BrainD. BrainDenis Brainデニス・ブレインRoyal Philharmonic OrchestraPhilharmonia OrchestraThe Central Band Of The Royal Air ForceThe National Symphony OrchestraDennis Brain Wind EnsemblePrometheus EnsembleLondon Baroque EnsembleDennis Brain Wind Quintet + +1434874Pasquale CardilloAmerican clarinettist, born 23 April 1918 and died 21 January 1998.Needs VoteP. CardilloBoston Pops OrchestraBoston Symphony Orchestra + +1435026Pauls EzergalisPauls EzergailisAustralian classical violinistNeeds VoteEzergalis PaulsPauls EzergailisPauls EzergallisThe Academy Of St. Martin-in-the-FieldsOslo Filharmoniske OrkesterOslo Philharmonic Chamber Group + +1435337Daniel KatzenAmerican French horn player and teacher, born 1952 in New York, New York.Needs Votehttps://en.wikipedia.org/wiki/Daniel_KatzenDaniel T. KatzenKatzenBoston Pops OrchestraBoston Symphony OrchestraSan Diego SymphonyThe Phoenix SymphonyArizona Wind Quintet + +1435343Brian DrakeClassical hornist.Needs VoteBrian F. DrakeLos Angeles Philharmonic Orchestra + +1435794Jerry PotterJazz drummerCorrectJerome "Jerry" PotterJerome PotterTiny Grimes QuintetRed Allen Quartet + +1435863Gilda MaikenGilda Maiken AndersonAmerican Pop and Jazz Singer (November 30, 1922 - October 14, 2001). Maiken is best known as the lead singer of The Skylarks from the 1940s thorugh the 1970s. Maiken later ran her own talent agency and was a co-founder and founding chairman of the Society of Singers, a charity founded to help former professional singers who were ill, destitute, or otherwise in need. Sang "Hold Me" on the Harry James Show 1949.Needs Votehttps://en.wikipedia.org/wiki/Gilda_Maikenhttps://www.imdb.com/name/nm5925170/Gilda MaconHarry James And His OrchestraThe SkylarksThe Earl Brown SingersThe Blue Moods + +1435924Konrad HampeGerman classical flautist (14 July 1928 in Heidelberg, Germany - 7 January 2019 in Munich, Germany).Needs VoteC. HampeK. HampeMünchner PhilharmonikerMünchener Bach-OrchesterBachcollegium Stuttgart + +1436429Ross HomsonRoss HomsonUK electronic dance music DJ, producer from Manchester, England +Style focus: House Hard House Correcthttps://soundcloud.com/ross-homsonhttps://www.facebook.com/djrosshomsonhttps://twitter.com/RossHomsonR. HomsonMegaman (5) + +1436987Helmut DemmerAustrian trumpet player, born in Vienna, Austria.CorrectOrchester Der Wiener StaatsoperVienna BrassTonkünstler Orchestra + +1437007Markus PichlerAustrian trombonist.Needs VoteBühnenorchester Der Wiener Staatsoper + +1437009Hermann EbnerAustrian horn player and teacher, born in Vorau, Austria.Needs VoteWiener SymphonikerCapella Academica WienWiener AkademieL'Orfeo BarockorchesterTonkünstler OrchestraEnsemble Eduard MelkusRSO WienIgnaz Pleyel Harmonie der IPG + +1437014Sonja KorakAustrian classical flutist, born in 1974 in Klagenfurt, Austria.CorrectCamerata Academica Salzburg + +1437015Heidrun LanzendörferAustrian flute player, born in Linz, Austria.Needs VoteHeidrun Wagner-LanzendörferTonkünstler OrchestraGustav Mahler JugendorchesterZemlinsky Quintett Wien + +1437749Eugène CormonPierre-Étienne PiestreDramatist and librettist, born 5 May 1810 in Lyons, France, died March 1903 in Paris, France.Needs Votehttp://en.wikipedia.org/wiki/Eug%C3%A8ne_Cormonhttps://adp.library.ucsb.edu/names/360019CormanCormonE. CormonEugene CormonЭ. Кормон + +1437780Tony LimbachBass playerNeeds VoteTommy LimbachTonny LimbachThe RamblersKwartet Jan Corduwener + +1437782Fritz ReindersNeeds VoteFrits ReindersThe Ramblers + +1437783Henk HinrichsDutch trumpet player.Needs VoteThe Ramblers + +1437875Toon DiepenbroekNeeds VoteToon DiepenbroeckThe Ramblers + +1437991Jesús López-CobosJesús López-CobosSpanish classical conductor (b. 25 February 1940 in Toro, Zamora – d. 2 March 2018 in Berlin). +He studied in Madrid and graduated with a degree in philosophy. Later he studied conducting with [a834528] and [a864674]. +From 1981 to 1990 he was general music director (Generalmusikdirektoren) of the [l1256364] and from 1984 to 1988 he was music director of the [a1275956]. From 1986 to 2001 he served as music director of the [a834227], and from 1990 to 2000 he was principal conductor of the [a866575]. From 2003 to 2010 he served as music director of the [l439802] in Madrid conducting [a854120]. He was a National Patron of Delta Omicron, an international professional music fraternityNeeds Votehttp://en.wikipedia.org/wiki/Jes%C3%BAs_L%C3%B3pez_Coboshttps://www.allmusic.com/artist/jes%C3%BAs-l%C3%B3pez-cobos-mn0001651947J. Lopez CobosJ. Lopez-CobosJ. López-CobosJes s Lopéz-CobosJesuis Lopez-CobosJesus Lopes CobosJesus Lopez CobosJesus Lopez-CoboJesus Lopez-CobosJesus López-CobosJesùs López CobosJesùs López-CobosJesús Lopez CobosJesús Lopez-CobosJesús López CobisJesús López CobosJesús López-CoboJesús López-CobozJésus Lopez-CobosJésus López-CobosLopes-CobosLopez-CobosLópez CobosLópez-CobosCincinnati Symphony OrchestraOrquesta Sinfónica De MadridOrchestre De Chambre De LausanneOrquesta Nacional De España + +1438026Annette KeimelGerman classical violinistNeeds VoteGabrieli Players + +1438129William KeyesTrumpet player.Needs VoteBill KeyesBilly KeyesKeyesW. KeyesCalifornia Ramblers + +1438281Harry Cohen (3)Jazz bassistCorrectHerry CohenBob Zurke And His Delta Rhythm Band + +1438600Prosper MériméeFrench dramatist, historian, archaeologist and short story writer. +Born 28 September 1803 in Paris, died 23 September 1870 in Cannes. +He is best known for his novella Carmen, which became the basis of [a=Georges Bizet]'s opera Carmen.Needs Votehttp://en.wikipedia.org/wiki/Prosper_M%C3%A9rim%C3%A9ehttp://www.nndb.com/people/584/000107263/MeriméeMériméeP. MériméeP. MériméesProsper MerimeeΠροσπέρ ΜεριμέП. МеримеПроспер МеримеПроспер Меріме + +1438649Alan Curtis (2)Alan Curtis (born November 17, 1934 in Mason, Michigan and died July 15, 2015 in Florence, Italy) was an American harpsichordist, musicologist, and conductor of baroque opera. +Curtis founded the European ensemble [a2124908].Needs Votehttps://en.wikipedia.org/wiki/Alan_Curtis_(harpsichordist)https://www.bach-cantatas.com/Bio/Curtis-Alan.htmA. CurtisAl CurtisAlan CurtisAlan S. CurtisCurtisCollegium AureumLeonhardt-ConsortI Febi ArmoniciIl Complesso Barocco + +1438650Daniela Del MonacoClassical alto vocalist.Needs VoteMonacoLes Arts FlorissantsCoro Della Radio Televisione Della Svizzera ItalianaIl Complesso BaroccoCappella Della Pietà De' TurchiniMala Punica + +1438735Ludovic HalévyFrench author, playwright and librettist (1 January 1834 - 7 May 1908). +As librettist, he often worked in collaboration with author [a=Henri Meilhac] and with composer [a=Jacques Offenbach]. +[b]Use [a=Jacques Fromental Halévy] for the composer of operas such as "La Juive."[/b]Needs Votehttp://en.wikipedia.org/wiki/Ludovic_Hal%C3%A9vyhttp://fr.wikipedia.org/wiki/Ludovic_Hal%C3%A9vyhttps://adp.library.ucsb.edu/names/319621& Ludovic HalévyH. MeilhacHalevyHalseyHalséyHalévyHalévy,L HalévyL. HalévyL. HaleviL. HalevyL. HalévyL.HalévyLouis HalévyLucien HalévyLudovic HalevyLudovic HalevýLudovic HalveyLudovic HalèvyLudovico HalevyLudvig HalévyLudwig HalévyГалевиЛ. Галеви + +1438736Henri MeilhacHenri MajakFrench playwright and librettist (23 February 1831 - 6 July 1897). +As librettist he often worked in collaboration with [a=Ludovic Halévy] and with the musician [a=Jacques Offenbach]. +Needs Votehttp://en.wikipedia.org/wiki/Henri_Meilhachttp://fr.wikipedia.org/wiki/Henri_Meilhachttps://adp.library.ucsb.edu/names/102519H MeilhacH. MeilhacH. MeihacH. MeilacH. MeilhacH.MeilhacHeilhacHenri HeilhacHenri MeihacHenri MellnerHenry MeilhacHerny MeilhacJeilhacL. HalévyM. MailhacM. MeilhacMailhacMeihacMeihlacMeilbacMeilhacMeilhac YMeilhaceMeilhaoА. МельякХ. Мельякメヤック・アレヴィ + +1438804Nomad (19)Andrew NishnianidzeNeeds Votehttps://linktr.ee/andynomadAndrew Nishnianidze + +1439089Vincenzo Di Chiara +Vincenzo Di Chiara, italian songwriter, he was born in Naples June 22, 1864 and died in Bagnoli (Naples) January 12, 1937.Correcthttp://www.treccani.it/enciclopedia/vincenzo-di-chiara_%28Dizionario-Biografico%29/#ChiaraChiariChiarroChieraDe ChiaraDi ChiarDi ChiaraDi Chiara VincenzoDi ChiariDi ChiarraDi-ChiarriDiChiaraDiChiareDichiaraL.D. ChiaraLa ChiaraV. ChiaraV. CiaraV. Di ChiaraV. Di ChiareV. Di ChiariV. Di ChiarraV. Di CiaraV. DichiaraV. DichioraV. di ChaiaraV. di ChiaraV. di ChiarraV. di ChieraV.Di ChiaraVicengo di ChiaraVicente Di ChiaraVicenzo Di ChiaraVin Di ChiaraVin. Di ChiaraVin. di ChiaraVincento Di ChiaraVincenzo Di ChiarVincenzo Di ChieraVinvenzo di Chiaradi ChiaraВ. Ди КьяраВ. ЧиараКьяраЧиараキヤラ + +1439192Betty Comden And Adolph GreenAmerican lyric songwriting, musical and screenwriting team best known for their collaborations with composers [a299702] and [a341663]. +They achieved great things in theater and film as well as song. They won Tony Awards for [i]Wonderful Town[/i], [i]Hallelujah, Baby![/i] and [i]Applause[/i]; Screen Writers' Guild Awards for [i]The Bandwagon[/i], [i]On the Town[/i], [i]Singin' in the Rain[/i] and [i]It's Always Fair Weather[/i]. They also earned two Oscars nominations: for [i]The Band Wagon[/i] (1954) and [i]It's Always Fair Weather[/i] (1956). +They began their careers as performer-writers as a satirical nightclub act [a4044988] with [a=Judy Holliday] in New York.Needs Votehttps://en.wikipedia.org/wiki/Comden_and_Green'Betty Comden-Adolph GreenA Grren / B ComdenA. GreenA. Green , B. ComdemA. Green - B. ComdenA. Green / B. ComdenA.Green/B.ComdenAdolph Green & Betty ComdenAdolph Green & Betty CondonAdolph Green / Betty ComdenAdolph Green / Betty CondonAdolph Green, Betty ComdenAdolph Green-Betty ComdenB Comden/A GreenB. Camden & A. GreenB. Comden & A. GreenB. Comden - A. GreenB. Comden / A. GreenB. Comden, A. GreenB. Comden, A. GreeneB. Comden- A. GreenB. Comden-A. GreenB. Comden-A.GreenB. Comden/A. GreenB. Comden/A. GreeneB.Comdem-A.GreenB.Comden, A.GreenB.Comden-A. GreenB.Comden/ A.GreenB.Comden/A.GreenBeety Comden / Adolph GreenBetty Camden And Adolph GreenBetty Comden Adolph GreenBetty Comden Adolph GreenBetty Comden & Adolph GreenBetty Comden - Adolf GreenBetty Comden - Adolph GreenBetty Comden - Adolphe GreenBetty Comden / Adolph GreenBetty Comden / Adolphe GreenBetty Comden Adolph GreenBetty Comden, Adolf GreenBetty Comden, Adolph GreenBetty Comden, Adolphe GreenBetty Comden-Adolf GreenBetty Comden-Adolph GreenBetty Comden/Adolph GreenBetty Comden; Adolf GreenBetty Comden–Adolph GreenBetty Comdon - Adolph GreenBetty Comdon, Adolph GreenCamdem-GreenCamden & GreenCamden, GreenComdan-GreenComde - GreenComdem - GreenComdenComden & GreenComden - A GreenComden - A. GreenComden - GreenComden / GreenComden / QueenComden And GreenComden GreenComden and GreenComden − GreenComden, GreenComden, GreeneComden-A. GreenComden-A.GreenComden-GreenComden-GreeneComden/G. GreenComden/GreenComden; GreenComdon, GreenComdon/GreenConden - GreenCondon/GreenCorden-GreenE. Condon - A. GreenGreenGreen - ComdenGreen / ComdenGreen ComdenGreen, ComdenGreen-ComdenGreen-CowdenGreen/CombdenGreen/ComdenStyne Comden GreenAdolph GreenBetty Comden + +1439208Joe CassNeeds Major Changes + +1439553GridbreakerNeeds Major ChangesJames BroomfieldJamie RitmenLegal SubSonic VoxFallout (9) + +1439615Per EnokssonSwedish classical violinist. First concertmaster of [a1015406].Needs VotePer EnoksonGöteborgs SymfonikerGageego! + +1439806Amnon LevyClassical violinist, born in 1933.CorrectAmmon LevyBoston Symphony OrchestraLos Angeles Philharmonic OrchestraMinnesota Orchestra + +1440217Emil KarppinenFinnish cellist, father of [a=Raija Karppinen]Needs Vote + +1440391Alison Mitchell (2)Classical flutist from Melbourne. She was appointed Principal Flute of the Scottish Chamber Orchestra in 2003.Needs Votehttp://www.sco.org.uk/experience/people/orchestra/alison-mitchellAlison MitchellScottish Chamber OrchestraAustralian Chamber OrchestraSydney Alpha Ensemble + +1441040Kai PahlmanKai PahlmanFinnish footballer, singer and pianist/accordionist. Born 8 July 1935 in Helsinki, died 8 March 2013. Son of [a=Helge Pahlman]Needs VoteK. PahlmanKaitsu PahlmanPahlmanHJK:n FutistrioKai Pahlmanin YhtyeKai Pahlmanin KvartettiKai Pahlmanin Orkesteri + +1441041Kai Pahlmanin YhtyeNeeds Major ChangesKai Pahlman + +1441078Kristiina (2)Kyllikki Solanterä (formerly Solander, née Wegelius)Pseudonym of Finnish singer and lyricist [a=Kyllikki Solanterä].CorrectKristinaKyllikki SolanteräK. SaraDonna (20)Timo Nuoli + +1441552Alabama Jug BandNeeds Major ChangesThe Alabama Jug BandFloyd CaseyEd AllenCecil ScottIkey RobinsonCyrus St. ClairClarence WilliamsWillie "The Lion" Smith + +1442248Karel ŘehákKarel Řehák (born 1937) is a Czech classical viola player.Needs VoteK. ŘehákKarel RehakThe Czech Philharmonic OrchestraArs Rediviva EnsembleSuk QuartetEnsemble Of Violas + +1442480Hermann AllmersHermann Ludwig AllmersGerman writer and poet, born 11 February 1821, Rechtenfleth – died 9 March 1902, Rechtenfleth.Needs Votehttp://en.wikipedia.org/wiki/Hermann_Allmershttp://de.wikipedia.org/wiki/Hermann_Allmershttps://adp.library.ucsb.edu/names/359261AllmerAllmersAlmersH. AllmerdH. AllmersH. L. AlmersHermann Ludwig AllmersHerrmann AllmersГ. Альмерс + +1442813George Jones (5)Jazz drummer, US, 1950'sNeeds VoteG. JonesLionel Hampton And His OrchestraArnett Cobb & His OrchestraLionel Hampton And His SeptetLionel Hampton And His SextetStuff Smith Sextet + +1442832Joe PoffJoseph Poff, Jr.Sax playerNeeds VoteJoseph PoffJoseph Poff, Jr.Joseph Poff, Jr.The Jungle Band + +1442905Jiří BělohlávekJiří BělohlávekCzech conductor. +Born 24 February 1946 in Prague (former Czechoslovakia), died 31 May 2017. +Chief conductor of Czech Philharmonic Orchestra, founder of Prague Philharmonia (Prague Symphony Orchestra), guest chief of BBC Symphony Orchestra, professor of conducting at the Academy of Music in Prague.Correcthttp://www.jiribelohlavek.com/http://en.wikipedia.org/wiki/Jiř%C3%AD_BělohlávekBelohlavekBělohlávekJ. BelohlavekJ. BehlohlavecJ. BelohlavecJ. BelohlavekJ. BělohlávekJiri BelohlavekJiri BelohlávekJiri BélohlávekJiri BělohávekJirí BelohlávekJiři BělohlávekЖири БелославекThe Czech Philharmonic OrchestraPrague Philharmonia + +1443564Franz SchesslGerman violist. He's the father of [a888408].Needs VoteFrans SchesslFranz ScheßlFranz SchiesslFranz SchliesslSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De MunichDas Keller QuartettJoachim-Koeckert-QuartettMünchner NonettKeller Trio + +1443565Wilhelm SchnellerClassical cellist.Needs VoteWilly SchnellerSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De Munich + +1443566Leonhard SeifertGerman oboist.Needs VoteL. SeifertLeonard SeifertЛеонхард ЗайфертSymphonie-Orchester Des Bayerischen RundfunksDie Münchner Solisten + +1443567Karl KolbingerGerman classical bassoonist, composer and university lecturer (* 30 September 1921 in Bernried, Bavaria, German Empire; † 07 April 2018).Needs Votehttps://de.wikipedia.org/wiki/Karl_Kolbingerhttps://accolade.de/index.php?section=mitwirkende&mw=000148Kurt KolbingerКарл КольбиндерMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterDie Deutschen BläsersolistenMünchner Nonett"In Dulci Jubilo" Ensemble + +1446253Helge MechelinNeeds Major Changes''Meke'' Mechelin + +1446479Willy SchnellGerman classical oboist (* 14 February 1927)Needs Votehttps://de.wikipedia.org/wiki/Willy_SchnellWilli SchnellBachcollegium StuttgartWürttembergisches Kammerorchester + +1446701Peter MišejkaClassical cellistNeeds VoteThe Czech Philharmonic Orchestra + +1446777Laura JeppesenViol and viola player.Needs Votehttp://www.wellesley.edu/music/facstaff/jeppesenhttp://www.bu.edu/cfa/music/faculty/jeppesen/Laura JeppensenLaura JeppesonLa Petite BandeBoston CamerataThe Boston Museum TrioOrchestra Of The 18th CenturyBoston BaroqueThe Handel & Haydn Society Of BostonAston MagnaBoston Early Music Festival Vocal & Chamber Ensembles + +1447035Michiel Ten Houte De LangeDutch classical vocalist.CorrectMichiel Ten Houte-De LangeMichiel ten Houten de LangeThe Amsterdam Baroque ChoirNederlands Kamerkoor + +1447178Demjén FerencHungarian singer, song-writer and bassist, born on December 21, 1946, Diósgyőr, his stage name is "Rózsi". He had an important role in the pop culture of Hungary. In 2012 he was awarded the Kossuth Prize.Needs Votehttps://www.facebook.com/DemjenFerencHivatalosHonlapjahttp://www.demjenferenc.hu/http://en.wikipedia.org/wiki/Ferenc_Demj%C3%A9nD. FerencD. FerncDemjen FerencDemjen FerncDemjénDemjén FDemjén F.Demjén Ferencz RózsyDemjén, F.Denjén FerencDomjan FerencF .DemjenF. DemjeanF. DemjemF. DemjenF. DemjénFeren DemjenFerenc DemjénFerence DemjeenFerene DemjenФ. ДемьенMeteorBergendyV'Moto RockDogs (5)Tűzkerék + +1447773Roberto BenaglioConductor and chorus masterCorrectR. BenaglioRobert BenaglioRoberto BegnalioRoberto BonaglioΡομπέρτο ΜπενάλιοРоберто БенальоХор Роберто Бенальо + +1448299Eric MentzelTenor Eric Mentzel is well known to early music aficionados both in the U.S. and Europe, where he lived for 15 years. Mentzel serves as Associate Professor of Voice at the University of Oregon and is frequently invited to teach workshops and master classes in Europe and North America. He is the artistic director of ensemble [a=Vox Resonat].Needs Votehttp://voxresonat.com/musicians/artistic-director/Sequentia (2)Huelgas-EnsembleSchola AntiquaFerrara EnsembleSchütz-AkademieVox Resonat + +1449358Count Basie OctetNeeds Major ChangesCount Basie & His OctetOctetThe Count Basie Octetカウント・ベイシー・オクテットBuddy RichCount BasieCharlie RouseClark TerryWardell GrayFreddie GreenGus JohnsonSerge ChaloffJimmy Lewis (2)Rudy RutherfordBuddy DeFranco + +1449360Augusto LoppiItalian classical oboistNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaVirtuosi Di Roma "Collegium Musicum Italicum"I Solisti Di Milano + +1449464Peter RijkxDutch flute player, born in 1959.Needs VoteSWR Big BandRadio-Sinfonieorchester StuttgartAulos-Bläserquintett + +1449486Gerd SchulzeClassical bassoonistNeeds VoteNeues Bachisches Collegium Musicum Leipzig + +1450714Shearman OrchestraNeeds Major ChangesOrchestraShearmanThe Shearman Orchestra + +1450842Perfect PoiseOllie ThompsonElectronic Dance music DJ / producer from Norwich, Norfolk, UK +Styles: Hard Trance | Hard House | Hard DanceCorrecthttp://en-gb.facebook.com/ollie.perfectpoise?group_id=0http://www.facebook.com/DJPerfectPoisehttp://www.youtube.com/user/DJPerfectPoisehttp://soundcloud.com/perfectpoiseOllie ThompsonPoisecore + +1450896Fritz HelmisClassical harpist.CorrectFritz HelmesHelmisBerliner Philharmoniker + +1450901Edward SaklatvalaBritish tenor vocalist. He was a chorister in the Choir of King's College, Cambridge.CorrectThe King's College Choir Of Cambridge + +1450902Manuel BarruecoCuban guitarist, born in 1952.Needs Votehttps://barrueco.com/https://www.facebook.com/ManuelBarrueco/https://twitter.com/ManuelBarruecoBarruecoM BarruecoM. BarruecoMannuel BarruecoManuel BarruccoManuel Barrueccoマヌエル・バルエコ + +1450904Maurice HandfordMaurice Handford (1929 – 16 December 1986) was a British horn player and conductor.Needs VoteHandfordMaurice HanfordHallé Orchestra + +1451490Sioux City SixOne off group put together to record on October 9, 1924Needs VoteBix Beiderbecke With The Sioux City SixThe Sioux City SixBix BeiderbeckeMin LeibrookVic MooreFrankie TrumbauerRube BloomMiff Mole + +1451701Steve MairStephan MairBritish session/freelance double bass player and a licensed London black cab driver. Born in Aberdeen, Scotland, UK. +He studied at the [l290263]. He then freelanced with all major London orchestras.Needs Votehttps://www.facebook.com/steve.mair.58/https://twitter.com/cabbeyroadhttps://www.instagram.com/cabbeyroad/?hl=enhttps://www.metal-archives.com/artists/Steve_Mair/840231https://www.imdb.com/name/nm5839471/https://moviemagic.co/actor-details/steve-mair/nm5839471Stephan MairStephen MairStephen Webster MairLondon Symphony OrchestraThe London Studio OrchestraOrchestre Révolutionnaire Et RomantiqueBritten SinfoniaOrchestre de Grandeur + +1451991Rachel PrattSoprano vocalist.Needs VoteThe English Concert Choir + +1452008Helen McQueenClassical oboistNeeds VoteCity Of London Sinfonia + +1452035Bridget MacRaeCanadian cellistNeeds VoteBridget McRaeMünchener KammerorchesterLes Violons du RoySchidlof Quartet + +1452129John ZirbelFrench Horn playerNeeds VoteSan Francisco SymphonySaint Louis Symphony OrchestraDenver Symphony OrchestraOrchestre symphonique de MontréalLes Solistes OSM + +1452473Willard BrownAmerican jazz saxophonist (tenor and baritone) player. + +Born : 1909 in Birmingham, Alabama. +Died : July 05, 1967 in New York City, New York. +Needs Votehttps://www.allmusic.com/artist/willard-brown-mn0000984623/biographyWellard BrownWillard BrowmWillard BusterWilliard BrownLouis Armstrong And His OrchestraBuck Clayton And His OrchestraBenny Carter And His OrchestraEddie Durham & His BandThe Blue Ribbon SyncopatorsJabbo Smith And His Rhythm AcesGrant Moore And His New Orleans Black DevilsSnub Mosley And His Orchestra + +1452486George Kelly (4)American jazz tenor saxophonist, arranger and bandleader. His credits also include drums and piano. + +Born : July 31, 1915 in Miami, FL +Died : May 24, 1998 + +George led his own band, the Cavaliers, in the early 1930s (with [a=Panama Francis] and [a=Grachan Moncur]). He worked with drummer David [a832988], banjo player [a5816289] (1938), [a1491922], trumpet player [a307296] (1946), drummer [a258009], guitarist [a330703], and many others.Needs Votehttps://en.wikipedia.org/wiki/George_Kelly_(musician%29https://adp.library.ucsb.edu/index.php/mastertalent/detail/205300/Kelly_GeorgeG. KelleyG. KellyGeo. KellyGeorge KelleyGeorge Kelly And The Jazz SultansGeorge Kelly's Jazz SultansGeorge KelyGuy KellyKeillyKelleyKellyKelly GeorgeGeorge Kelly & OrchestraTiny Grimes QuintetAl Cooper And His Savoy SultansPanama Francis And The Savoy SultansRed Richards QuartetGeorge Kelly Quintet + +1452490Barney RichmondAmerican Jazz bassist.Needs Votehttp://www.allmusic.com/artist/barney-richmond-mn0001746764B. RichmondJohnny Hodges And His Orchestra + +1452512Bob Merrill (2)Jazz and rhythm & blues singer and trumpet player, born in Oklahoma in 1918. +Played in territory bands in the late 1930s-early 1940s, then played and sang with Jay McShann 1942-1944 and Cootie Williams 1945-1949, followed by vocal recordings under his own name. Last heard of in the early 1960s. + +CorrectB. MerrillB.MerrillBob "Mr. Blues" MerrillBob MerrellBob MerrilMerrellMerrillRobert "Bob" MerrillRobert MerrellBobby MerrellCootie Williams And His OrchestraJay McShann And His OrchestraThe Bob Wilber Big BandBob Merrill And His Band + +1452513Keg PurnellWilliam PurnellAmerican jazz drummer. +Born : January 07, 1915 in Charleston, West Virginia. +Died : June 25, 1965 in New York City, New York. + +Keg worked with King Oliver (1934-'35), with his own trio in the late 1930s, Thelonious Monk (1939), Benny Carter (1939-'40), Claude Hopkins (1941-'42), "Eddie Heywood Sextet" (1942-'52), Rex Stewart, Teddy Wilson, Willie "The Lion" Smith (1953), Snub Mosley. +Needs Votehttps://en.wikipedia.org/wiki/Keg_PurnellBill PurnellKeg PurellWilliam "Keg" PurnellWilliam FurnellWilliam PurnellTeddy Wilson TrioBenny Carter And His OrchestraEddie Heywood And His OrchestraRex Stewart's Big EightSnub Mosley QuartetVic Dickenson Quartet + +1452890Eddie "Snoozer" QuinnEdwin McIntosh QuinnAmerican Jazz guitarist (born McComb, Mississippi, October 18, 1906 – died New Orleans, Louisiana, April 21, 1949). + +Quinn grew up in a musical family in Bogalusa, LA, where he family moved when he was around five. He learned to play violin, guitar, banjo, mandolin, and piano. From around age 12, he performed professionally. + +After high school, he worked first with Blanchard's Jazz Hounds, then for a stint at the Washington-Youree Hotel in Shreveport, LA, with pianist [a=Peck Kelley]'s band, called Peck's Band Boys. Peck gave him the nickname Snoozer because Quinn was so good he could sleep and play the guitar at the same time. + +In late 1928, Quinn came to the attention of [a=Paul Whiteman] and played with Whiteman's orchestra for about a year. In 1928 and 1931, Quinn twice accompanied [a=Jimmie Davis] at recording sessions for [a=Victor] in New York City. He also performed briefly with the Dorsey brothers and Ben Pollack. + +Quinn caught tuberculosis, however, and spent the last two decades of his life back home in Bogalusa, where he continued to perform. in 1948, one of Quinn's collaborator's in Peck Kelley's band, cornetist [a=Johnny Wiggs], cut Quinn's last recordings in a tuberculosis ward in New Orleans.Needs Votehttp://basinstreet.com/wp-content/uploads/2016/09/bios.pdfhttps://www.findagrave.com/memorial/22935597/edward-m-quinnhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/112598/Quinn_Snoozer"Snoozer" QuinnEddie QuinnEdward "Snoozer" QuinnEdwin "Snoozer" QuinnQuinnSnoozer QuinnFrankie Trumbauer And His OrchestraPaul Whiteman And His Orchestra + +1453116Tidy AllstarsNeeds Major Changes + +1453521Hermann WeigertHermann O. WeigertGerman conductor, born 20 October 1890 in Breslau, Germany (now Wrocław, Poland) and died 12 April 1955 in New York City, New York, USA. married to soprano [a838878].Needs Votehttps://en.wikipedia.org/wiki/Hermann_Weigerthttps://adp.library.ucsb.edu/names/105563H. WeigertHelmut WeigerHerm. WeigertHerman WeigertHerman WeingertKapellmeister H. WeigertWeigert + +1454358Bill HoranAmerican jazz trumpeter.Needs VoteHoranWoody Herman And His OrchestraThe Band That Plays The Blues + +1454929Al BeckJazz trumpet player, primarily 1940's and 1950's.Needs VoteGene Krupa And His Orchestra + +1454959Chick CarterAmerican jazz saxophonist and flutist.Needs VoteJames CarterJames Chick CarterHarry James And His OrchestraRolf Kühn Sextet + +1454962Skippy GalluccioJazz saxophonistNeeds VoteRalph GalluccioSkip GalluccioSkip CollucioTommy Dorsey And His OrchestraThe Glenn Miller OrchestraThe Dorsey Brothers OrchestraJimmy Dorsey, His Orchestra & Chorus + +1454968Art TancrediAmerican trumpet playerNeeds VoteArt TancerediTommy Dorsey And His OrchestraJimmy Dorsey, His Orchestra & ChorusArt Tancredi & His Orchestra + +1455303Susan MillsSoprano vocalistNeeds VoteSusan Taylor MillsThe Roger Wagner ChoraleLos Angeles Master ChoraleThe Yale Club Of Boston + +1455734Cynthia AndersonClassical contralto vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/cynthia-anderson/C. AndersonK.C. AndersonKanchan Cynthia AndersonChicago Symphony Chorus + +1456028Philippe BaletFrench violinist.CorrectOrchestre De Paris + +1456056Katarina BengtsonAnna Katarina Bengtsson Dennis (née Bengtsson)Swedish violinist, born on January 8, 1977 in Sollentuna, Uppland. + +Katarina Bengtson trained as a violinist at [l419723], but she has also studied baroque violin and historical performance at the [l527847] in London. She currently runs and directs the [url=https://www.facebook.com/people/Stockholms-Bachsällskap-Stockholm-Bach-Society/100066636165713/]Stockholm Bach Society[/url], aiming to perform all the cantatas by [a95537], and shares her time between Sweden and the UK as a freelancing musician. + +Bengtson is violinist in both [a2625248] and [a713519]'s instrumental ensemble. She also works at [url=https://www.facebook.com/confidencen/?fref=ts]Confidencen Ulriksdals slottsteater[/url] and as licensed physiotherapist, orthopedic technician at [url=https://www.facebook.com/stegkliniken]Stegkliniken[/url]. + +Katarina Bengtson is married to [a10989482].Needs Votehttp://fiolina.se/https://www.facebook.com/katarina.bengtsonhttps://se.linkedin.com/in/katarina-bengtson-457a124?trk=public_profile_browsemap-profilehttps://stockholmsbachsallskap.se/?page_id=2https://www.imdb.com/name/nm0071074/https://www.svenskfilmdatabas.se/en/item/?type=person&itemid=217999Katarina BengstonKatarina DennisThe SixteenThe Purcell QuartetHarmony Of Nations Baroque OrchestraThe Avison Ensemble + +1456181Omer De CockSaxophone player from Sint-Niklaas (Belgium), brother of Marcel and [a=Albert De Cock].Needs VoteDe CockOmer Decockde KokTeddy Stauffer Und Seine Original TeddiesAlbert De Cock Et Son OrchestreThe Berry'sFred Böhler And His BandFred Böhler Sextet + +1456184James GobaletNeeds VoteThe Berry's + +1456185Hugo PeritzSwiss saxophonist, arranger, songwriter and conductor. Brother of [a8160194].Needs VoteH. PeritzH.PeritzPeritzJürg RitzliThe Berry's + +1456378Olli SuolahtiOtto Isidor PalanderOlli Suolahti (born in 1889 in Pori, Finland) was a Finnish troubadour, kantele player and author. He recorded around 80 records during the years 1905-1951. Some of his most known compositions and arrangements include "Tuku tuku lampaitani", "Kalalokin laulu" and "Morsiamen polska". + +He died on November 4, 1951 in Vammala, Finland. +CorrectO. SuolahtiO.Suolahti + +1456698Katrin KarelsonVocalist.Needs VoteEstonian Philharmonic Chamber Choir + +1456836Ave MoorAlto vocalistNeeds VoteEstonian Philharmonic Chamber Choir + +1456837Kaido JankeTenor vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/kaido-janke/Estonian Philharmonic Chamber Choir + +1456838Esper LinnamägiCredited as execuctive producer for classical music releasesNeeds VoteEstonian Philharmonic Chamber Choir + +1456840Juta Roopalu-MalkVocalist.Needs VoteJuta Roopalu-MarkEstonian Philharmonic Chamber Choir + +1456841Uku JollerEstonian bass vocalist, born June 22, 1963 in Tallinn.Needs VoteEstonian Philharmonic Chamber Choir + +1457056Kolja BlacherClassical violinist, born 1963 in Berlin. He is the son of [a273520] and [a2161923].Needs Votehttp://www.kolja-blacher.com/Blacherコーリァ・ブラッハーBerliner Philharmoniker + +1457526Gene FieldsJazz guitarist. Active in New York City from 1936 to 1942. Needs Votehttps://www.allmusic.com/artist/gene-fields-mn0001707753Gene FieldBillie Holiday And Her OrchestraColeman Hawkins And His OrchestraColeman Hawkins Big BandEmmett Matthews And His Orchestra + +1457527Gladys MaddenSinger.Needs VoteColeman Hawkins And His Orchestra + +1457637Сергей ДрабкинVioloncello player. Born 1953 in White Russia, moved to Germany in 1995.Needs VoteSergei DrabkinSergio DrabkinДрабкинWürttembergisches KammerorchesterRastrelli Cello QuartetArc Verona Ensemble + +1458014Natasha MarshNatasha Marsh (born 1976) is a Welsh operatic soprano.Needs Votehttp://www.natashamarsh.com/MarshN. Marshナターシャ・マーシュ娜塔莎·瑪西娜塔莎瑪茜Classical Relief For Haiti + +1458285James Logan (3)James LoganNeeds VoteJ. LoganJames William Frederick LoganLog:OneMantra (10)Mono:LogDigital SelfLog:One & DJ WraggNo:OneNXT.WAVDigital Self & Tek-TonicA.X.I.S. + +1458286Toby VealeToby VealeCorrectT. VealeToby Milsom VealeDJ WraggRibbz & WraggLog:One & DJ WraggNXT.WAVFLUX (30) + +1458373Miwa RossoClassical cellist.Needs Votehttps://linkedin.com/in/rosso-miwa-6b6412b5http://www.alexandracardinale.com/artistes/musiciens/miwa-rosso.htmlhttps://www.imdb.com/name/nm5285388/Miwwa RossoRosso MiwaLondon Symphony OrchestraMahler Chamber OrchestraBBC Concert Orchestra + +1458657Oiva PaloheimoFinnish author and poet. +Born September 2, 1910 in Tampere. +Died June 13, 1973 in Helsinki.Needs VoteO. PaloheimoO.PaloheimoOiva Aukusti PaloheimoPaloheimo Oiva + +1458875Roger DesboisRoger-Auguste-Charles DesboisFrench lyricist +Also known as Santos Guerrero, André Clinchant or Claude Giron. +Born January 19th, 1923 - Died August 30th, 2007Needs VoteD. DesbosDesBoisDesboisDesbois R.R DesboisR. DesboisR. De-boisR. DeboisR. DesboisR.DesboisR.DespoisClaude Giron (2) + +1460041Daniel BauchAmerican timnpanist and percussionist. +Needs Votehttps://necmusic.edu/faculty/daniel-bauchBoston Pops OrchestraBoston Symphony Orchestra + +1460156Gustav StrubeAmerican violinist, conductor and composer, born 3 March 1867 in Ballenstedt, Germany and deid 2 February 1953 in Baltimore, Maryland.CorrectG. StrubeStrubeStrübeBoston Symphony Orchestra + +1460813Kate RobinsonBritish violinistNeeds Votehttp://www.morgensternsdiaryservice.com/WebProfile/robinson_k_6404.shtmlThe Heritage OrchestraEnglish Chamber OrchestraEuropean Camerata + +1461378Pete MingerGeorge Allen MingerAmerican jazz trumpeter. +Born : January 22, 1943 in Orangeburg, South Carolina. +Died : April 13, 2000 in Pompano Beach, Florida. + +"Pete" worked with "Count Basie Orchestra", Frank Wess, Mel Tormé, Hilton Ruiz (and others) and with own his group.Needs VoteGeorge "Pete" MingerGeorge MingerGeorges MingerPeter MingerCount Basie OrchestraThe Frank Wess OrchestraAl Grey Jazz All StarsPete Minger Quartet + +1462131Arty (2)Артём Столяров (Artem Stolyarov)Artem Stolyarov (Russian: Артём Столяров, born 28 September 1989 in Engels, Saratov Oblast, Russian RSFSR, Soviet Union), known professionally as Arty (stylized as ARTY) and [a=Alpha 9] (stylized as ALPHA 9), is a Russian DJ, record producer, and musician. + +He has collaborated with Armin van Buuren, Above & Beyond, BT, Paul van Dyk, Mat Zo, OneRepublic, Matisse & Sadko, and among others. His debut album, Glorious (2015), peaked at number 14 on the US Dance/Electronic Albums charts. + +Needs Votehttps://www.artyofficial.comhttps://arty.komi.io/https://www.facebook.com/artymusichttps://twitter.com/artymusichttps://www.instagram.com/artymusichttps://soundcloud.com/artyofficialhttps://www.youtube.com/artyworldwidehttps://en.wikipedia.org/wiki/Arty_(musician)https://equipboard.com/pros/artyARTYArtiArtem StolyarovAlpha 9 + +1462185Laurent LefèvreFrench bassoonist, born 1969 in Charleville-Mézières, France.Needs VoteLaurent LefevreLefèvreMahler Chamber OrchestraOrchestre National De L'Opéra De ParisLes Musiciens De L'Opera, ParisTonhalle-Orchester ZürichLes Bassons De L'Opéra + +1462257Toby SaksAmerican cellist and founder of the Seattle Chamber Music Society. She was born 8 January 1942 in New York City, United States and dies of pancreatic cancer on 1 August 2013 in Seattle, Washington, United States.Needs VoteNew York Philharmonic + +1462899Elizabeth LaytonBritish classical violinist, born in London. Leader of the [a=BBC Scottish Symphony Orchestra].Needs Votehttps://elizabethlayton.net/Elisabeth LaytonLiz LaytonЭ. ЛэйтонThe Academy Of St. Martin-in-the-FieldsBBC Scottish Symphony OrchestraThe Nash EnsembleTrio ZingaraCapricorn (14)Michaelangelo Chamber Orchestra + +1462900Rona MurrayEnglish classical violinist.Needs VoteEnglish Chamber OrchestraMichaelangelo Chamber Orchestra + +1462925Ralph MarkhamCanadian pianist, best known as one part of the piano duo Markham and [url=http://www.discogs.com/artist/Kenneth+Broadway]Broadway[/url].CorrectMarkham + +1462926Kenneth BroadwayNeeds Major ChangesBroadway + +1464264Christophe DinautClassical double bassistNeeds VoteOrchestre Philharmonique De Radio France + +1464644Amos TriceAmerican jazz pianist, worked with: Wardell Gray, Sonny Stitt, Teddy Edwards, Harold Land, Jimmy Woods, Shorty Rogers and many others. + +Born: December 11, 1928 in New Orleans, Louisiana.Needs VoteTriceSonny Stitt QuartetJimmy Woods Quintet + +1464835Guy FerberClassical trumpeter.Needs VoteCollegium VocaleLe Parlement De MusiqueLe Concert Des nationsCafé ZimmermannRicercar ConsortHespèrion XXBach Collegium JapanArmonico TributoGli Angeli GenèveAntichi StrumentiLe Concert RoyalTrio Baroque (2) + +1464837Alain Petit (2)French Classical violinist and teacher. +Born: November 24, 1959Needs VoteLes Arts FlorissantsLe Parlement De MusiqueConcerto Rococo + +1464838Eva ScheyttClassical violinist.Needs VoteLe Parlement De MusiqueLes Musiciens Du LouvreOrchester Der Ludwigsburger SchlossfestspieleLukas Barock Ensemble StuttgartLa Fantasia + +1464839Roland CallmarClassical trumpeter.Needs VoteLe Parlement De MusiqueLe Concert Des nationsHespèrion XX + +1464840Aline ZylberajchFrench harpsichordist and organistNeeds VoteA. ZylberajchAline Parker-ZylberajchAline ZilberajchZylberajchLa Chapelle RoyaleLe Parlement De MusiqueLes Musiciens Du LouvreEnsemble Clément JanequinPygmalionEnsemble AmaliaAppónyi-QuartettMusica Favola + +1464842Jan Willem Vis (2)Classical viola player.Needs VoteAnima EternaLe Parlement De MusiqueConcerto KölnDe Nederlandse BachverenigingLa Stravaganza KölnNetherlands Bach CollegiumNew Dutch Academy + +1464843Marion MiddenwayClassical Cello & Viola da Gamba playerNeeds VoteLe Parlement De MusiqueThe Amsterdam Baroque OrchestraLes Musiciens Du LouvreLa Fontegara Amsterdam + +1464844Jean-Philippe ThiébautClassical oboist.Needs VoteJean-Philippe ThiebaultLe Parlement De MusiqueLes Musiciens Du LouvreL'Orchestre National d'Ile De France + +1465455Torben RehnbergSwedish trumpet player, born November 16, 1953, died October 10, 2020 at Dalarö.Needs VoteSveriges Radios SymfoniorkesterDrottningholms BarockensembleNationalmusei Kammarorkester + +1465927Paul BoucherClassical violinist. He is curator and research director of The Montagu Music Collection at Boughton House, NorthamptonshireNeeds Votehttps://paulboucher.co.uk/www.boughtonhouse.co.ukhttps://blht.org/exploring-the-montagu-music-collection/Paull BoucherEnglish Chamber OrchestraThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLondon Classical Players + +1465928Caroline BaldingBritish classical violinist.Needs Votehttp://www2.surrey.ac.uk/msr/people/caroline_balding/index.htmThe London Telefilmonic OrchestraThe Amsterdam Baroque OrchestraTaverner PlayersGemini LondonBaroque String QuartetCantamenThe Orchestra Of St. John'sThe Avison EnsembleProspero EnsembleThe Band Of Instruments + +1465929Rainer UllreichClassical viola player.Needs VoteSequentia (2)The Amsterdam Baroque OrchestraConcerto KölnL'Orfeo Barockorchester + +1466864Phil Brown (11)British trombonist.Needs VotePhillip BrownRoyal Philharmonic OrchestraEnglish Chamber OrchestraThe 100 Pipers BandThe Phil Brown Swingtet + +1467100Marion GaillantMarion GaillandFrench cellist.Needs VoteM. GaillandMarion GaillandOrchestre Philharmonique De Radio France + +1468087Coleman Hawkins And His Sax EnsembleNeeds Major ChangesColeman Hawkins & His Sax EnsembleColeman Hawkins Sax EnsembleColeman Hawkins' Sax EnsembleColeman HawkinsDon ByasHarry CarneyTab SmithSidney CatlettAl LucasJohnny Guarnieri + +1468230Frank CapiNeeds VoteHoward McGhee And His Orchestra + +1468644David TrendellDavid Robin Charles TrendellBorn: 17th August 1964 Tavistock, Devon, England +Died: 28th October 2014 +British alto vocalist, choral conductor, producer and musicologist. He received his early musical education as a chorister at Norwich Cathedral and was senior lecturer and director of music at King's College London.Needs VoteThe Choir Of Christ Church Cathedral + +1468651Christopher NealeTreble vocalist (as a child). Bass vocalist.Needs VoteChristopher J NealeChristopher J. NealeChristopher Jay NealeThe New College Oxford ChoirLondon VoicesLaudibus + +1468654Philip CaveUK classical tenor vocalist and director of the [a=Magnificat] chorus.Needs Votehttps://www.bach-cantatas.com/Bio/Cave-Philip.htmThe Hilliard EnsembleMagnificatThe New College Oxford ChoirThe Tallis ScholarsThe SixteenThe Choir Of Christ Church CathedralThe Clerkes Of Oxenford + +1469328Wilfried WinkelmannGerman classical flutist.CorrectDas Orchester Der Staatsoper Berlin + +1469330Hans HimmlerGerman classical clarinetist.CorrectHanns HimmlerDas Orchester Der Staatsoper Berlin + +1469387Kazuko Nomiyama野見山和子 (Kazuko Nomiyama)Japanese horn player. +Born in Fukuoka, Japan. + +Japan Philharmonic Symphony Orchestra from Aug 2003 +Tokyo Metropolitan Symphony Orchestra from Jan 2005 +NHK Symphony Orchestra from Sep 2016CorrectKazuko Nomiyam野見山和子NHK Symphony OrchestraJapan Philharmonic Symphony OrchestraTokyo Metropolitan Symphony Orchestra + +1469598Georg RetyiClassical violinistNeeds VoteGeorg Retyi-GazdaSymphonie-Orchester Des Bayerischen Rundfunks + +1469887Gilbert WebsterJazz drummer and classical percussion & cimbalom player.Needs VoteGil WebsterBBC Symphony OrchestraJack Hylton And His 22 Boys + +1470557Jaroslav KopáčekJaroslav KopáčekCzech saxophonist, clarinetist, composer and bandleader. +Born on October 11, 1931 in Bardejov, Slovakia - died 20 October 2020, Roudnice nad LabemNeeds Votehttps://karelvelebny.cz/jaroslav-kopacek/J. KopáčekJaroslav KopácekKopăcekThe Czech Philharmonic OrchestraKarel Vlach OrchestraSwing Band Ferdinanda HavlíkaCzech Nonet + +1470987Joe Williams (11)Trombonist.Needs VoteJ. WilliamsWilliamsJimmie Lunceford And His Orchestra + +1471715Arnim OrlamündeGerman classical violinist.Needs VoteDas Orchester Der Staatsoper BerlinErben-Quartett + +1471717Ralf-Rainer HaaseGerman violinist.Needs VoteRalf Rainer HaaseRalf Reiner HaaseErben-Quartett + +1471718Wolfgang BernhardtGerman classical cellist.Needs VoteWolfgang BernhardDas Orchester Der Staatsoper BerlinErben-Quartett + +1471719Herbert HeilmannGerman bassoonistNeeds VoteKammerorchester Carl Philipp Emanuel Bach + +1471806Don KendrickNeeds VoteNew England Conservatory Chorus + +1471807Joyce GippoNeeds VoteNew England Conservatory Chorus + +1471808Don HoveyNeeds VoteNew England Conservatory Chorus + +1471810Sue AuclairNeeds VoteNew England Conservatory Chorus + +1471811David DusingConductor, singer and composer. He studied music at Mount Union College (class of 1966) and New England Conservatory of Music, and after graduating taught conducting at the Conservatory. +b.: Mar. 22, 1943 in Pemberville, OH +d.: May 14, 2014 in New York City, NYNeeds Votehttps://www.legacy.com/obituaries/nytimes/obituary.aspx?n=david-dusing&pid=171093535D. DusingDavid DüsingPomeriumNew England Conservatory Chorus + +1471812Dan WindhamNeeds VoteNew England Conservatory Chorus + +1471813Gailanne CummingsNeeds VoteNew England Conservatory Chorus + +1471816Kay DunlapNeeds VoteNew England Conservatory Chorus + +1472027Léonard PezzinoItalian Tenor vocalist.Needs VoteLeonard PezzinoLéonardo Pezzino + +1472664Lodovico AgostiniLodovico Agostini (1534 – September 20, 1590) was an Italian composer, singer, priest, and scholar of the late Renaissance.Needs Votehttps://en.wikipedia.org/wiki/Lodovico_AgostiniAgostiniLudovico Agostini + +1472716Robert ClancyClassical stringed instrumentalist: guitar, lute, theorbo.Needs VoteR. ClancyHespèrion XXChamber Choir Of Sydney University Baroque Ensemble + +1472734Ingeborg FimreiteNorwegian violinist, born 1974 in Tromsø, Norway.Needs VoteOslo Filharmoniske Orkester + +1473057Lyndon MeredithBritish classical trombonistNeeds VoteLondon Philharmonic Orchestra + +1473436Arnold SteinhardtAmerican violinist, born 1937 in Los Angeles, California. He is married to the photographer [a2885127].Needs Votehttp://www.arnoldsteinhardt.com/SteinhardtThe Cleveland OrchestraMarlboro Festival OrchestraGuarneri QuartetMarlboro Festival Octet + +1473828Philip PooleyTenor.Needs VoteThe Choir Of Christ Church CathedralCurrende + +1473829Marnix De CatBelgian counter-tenor, conductor, organist and percussion player.Needs Votehttps://www.facebook.com/marnix.decatMarnix de CatHuelgas-EnsembleCollegium VocaleIl FondamentoEx TemporeRicercar ConsortGesualdo Consort AmsterdamCapilla FlamencaCurrendeLa CacciaLa Grande ChapellePluto EnsembleMusica Favola + +1474019Kaori UemuraViol player.Needs VoteKaori UhemuraLes Arts FlorissantsLa Petite BandeRicercar ConsortBach Collegium JapanIl GardellinoCurrendeLe Poème HarmoniqueEnsemble MatheusL'Armonia SonoraGli Angeli GenèveAlba Musica KyoSit FastMusica FavolaRedherring Baroque EnsembleTokyo Baroque Trio + +1474248R. Allen SpanjerAmerican horn player from Cedartown, Georgia. Spanjer joined the New York Philharmonic in 1993. He will retire from their horn section in 2025.Needs VoteAlan SpangerAllan SpanjerAllen SpanjerR. Allan SpanjerNew York Philharmonic + +1474310Fayette WilliamsTrombonist with [a=Jimmie Noone's Apex Club Orchestra]Needs VoteS E. WilliamsWilliamsJimmie Noone's Apex Club OrchestraDoc Cook And His 14 Doctors Of SyncopationErskine Tate's Vendome Orchestra + +1475204Rudolf SchingerlinRudolf Schingerlin (20 November 1930 - 6 December 2012) was an Austrian drummer and percussionist.Needs VoteE. SchingerlinR. SchingerlinDas Mozarteum Orchester Salzburg + +1475786Vlado MallýVladimír MallýSlovak musician (drums, oboe, winds, keyboards, guitar, vocals). + +Born July 14, 1946 in former Czechoslovakia. Member of "Guľový dolník" and "Hot Seven". Needs Votehttps://popmuseum.estranky.sk/clanky/digitalna-encyklopedia/menny-zoznam-osobnosti-a-suborov/mally--vlado.htmlhttps://cs.wikipedia.org/wiki/Vlado_Mall%C3%BDhttps://sk.wikipedia.org/wiki/Vladim%C3%ADr_Mall%C3%BDV. MallýV. MalýVladimir MallyVladimir MalyVladimír MallýVladimír MalýPrúdySlovak Chamber OrchestraSlovak Philharmonic OrchestraProvisoriumBratislavské Dychové KvintetoThe Soulmen (2) + +1476025Christian TacheziChristian Tachezi (born 28 December 1970) is an Austrian classical violinist. He's the son of [a852433].Needs Votehttps://www.gmpu.ac.at/universitaet/kollegium/wissenschaftlich/17Concentus Musicus WienCamerata Oisternig + +1476027Editha FetzAustrian classical violinist, born in 1965.CorrectConcentus Musicus Wien + +1476028Christine BuschClassical violinist. +Born in Stuttgart and grew up in Mössingen / Tübingen. As a scholarship holder of the Studienstiftung des Deutschen Volkes and the Deutscher Akademischer Austauschdienst, she studied with Wolfgang Marschner and Rainer Kussmaul in Freiburg, Boris Kuschnir in Vienna, and Nora Chastain in Winterthur.Needs Votehttp://www.christine-busch.de/#index.html?&_suid=139930944839702778188197245368Collegium VocaleConcentus Musicus WienEnsemble ExplorationsSpirit of MusickeSalagon Quartet + +1476029Gerold KlausGerold Klaus is an Austrian classical viola player and percussionist.Needs VoteConcentus Musicus WienLiederlich Spielleut + +1476030Maighread McCrannMaighréad McCranMaighréad McCran (born 1963) is an Irish classical violinist and professor of violine.Needs Votehttps://maighreadmccrann.com/Maighread Mc CannMaighread Mc CrannConcentus Musicus WienThe Chamber Orchestra Of EuropeORF SymphonieorchesterRSO WienORF Radio-Symphonieorchester WienEnsemble Contrasts Wien + +1476031Andrew AckermanAndrew Ackerman is an American classical double bassist.Needs VoteAndrew AckermannVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienLe Concert Des nationsFreiburger BarockorchesterBalthasar-Neumann-EnsembleMusica Alchemica + +1476032Dorothea GuschlbauerClassical cellist.CorrectDorothea SchönwieseConcentus Musicus Wien + +1476033Maria KubizekClassical violinist. Born: October 11, 1967 (Horn, Austria)Needs Votehttps://sira-kubizek.at/https://styriarte.com/en/artists/maria-kubizekMaria Bader-KubicekMaria Bader-KubizekMarie KubizekConcentus Musicus WienThe Chamber Orchestra Of EuropeKölner Akademie + +1476034Martin RablClassical trumpeter.Needs VoteConcentus Musicus WienCantus CöllnConcerto PalatinoArmonico TributoArs Antiqua AustriaTrompeten Consort Innsbruck + +1476035Nikolaus BrodaGerman Bassoon & Dulcian instrumentalistNeeds VoteNicolaus BrodaNikolaus M BrodaNikolaus M. BrodaConcentus Musicus WienL'Orfeo BarockorchesterEnsemble »Alte Musik Dresden«Capriccio Barock OrchesterOrchester Der J.S. Bach StiftungL'Orfeo BläserensembleLes Hautboïstes De Prusse + +1476036Peter Schoberwalter Jun.Classical violinist.CorrectConcentus Musicus Wien + +1476037Edward DeskurEdward Deskur (born 1959) is an American classical hornist.Needs Votehttps://www.facebook.com/edward.deskurhttps://waltornia.pl/biografie/1956-edward-deskurEdouard DeskurOrchester Der Beethovenhalle BonnConcentus Musicus WienIl Giardino ArmonicoSingapore Symphony OrchestraDuisburger SinfonikerPhilharmonia ZürichThe Horn Ensemble Francis Orval + +1476038Glen BorlingGlen Borling is an American classical hornist and lecturer at the "Zürcher Hochschule der Künste" ([l1402972]).Needs VoteConcentus Musicus WienIl Giardino ArmonicoOrchestra La ScintillaPhilharmonia Zürich + +1476039Christian SchneckClassical violinist.CorrectConcentus Musicus Wien + +1476040Robert Wolf (2)Classical flautist, born in 1948.Needs VoteMag. Robert WolfWolfVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienThe Vienna Chamber Ensemble + +1476041Silvia Walch-IbererClassical violinist.CorrectSilvia IbererSilvia Iberer-WalchSilvia WalchConcentus Musicus Wien + +1476042Hector McDonaldHector McDonald (born 1953) is an Australian classical hornist and teacher.Needs VoteHector MacDonaldHector MacdonaldMcDonaldBerliner PhilharmonikerWiener SymphonikerWiener Concert-VereinConcentus Musicus WienAustralian World Orchestra + +1476043Herlinde SchallerHerlinde Schaller is an Austrian violinist and pianist. She's the sister of [a5517382].Needs VoteConcentus Musicus WienSalzburger Hofmusik + +1476044Herwig TacheziHerwig Tachezi (born 12 October 1963) is an Austrian classical cellist. He's the son of [a852433].Needs VoteHerwig TachezlWiener SymphonikerConcentus Musicus Wien + +1476046Lynn PascherClassical viola player.CorrectLynn Pascher-FletcherWiener VolksopernorchesterConcentus Musicus Wien + +1476047Ursula KortschakClassical viola player.Needs VoteConcentus Musicus WienClemencic ConsortEnsemble Baroque De Limoges + +1476048Dieter SeilerAustrian classical percussionist, born in 1969.Needs VoteWiener SymphonikerConcentus Musicus WienArs Antiqua Austria + +1476293Robert MealyRobert Mealy is an American baroque violinist and music educator, a director of Historical Performance and Baroque Chamber Music departments at [l=Juilliard School] (since 2012), and a founder of Harvard Baroque Orchestra and [a=Yale Collegium Players]. Robert began exploring early music in high school and deepened his interest with the Collegium Musicum of the [l=University of California, Berkeley] and the baroque orchestra at the [l=Royal College of Music, London]. While still a Harvard College undergraduate, Mealy was invited to join the Canadian [a=Tafelmusik Baroque Orchestra]. + +Since then, Robert Mealy has toured and recorded with numerous early music ensembles, including [a=Sequentia (2)], [a=Ensemble P.A.N.], [a=The Newberry Consort], [a=The Folger Consort], [a=Les Arts Florissants], [a=The Handel & Haydn Society Of Boston], [a=New York Ensemble For Early Music], [a=Clarion Music Society], and [a=Artek - Early Music Ensemble In Nyc]. He appeared on [l=Late Show with David Letterman] accompanying [a=Renée Fleming]. + +In 2004, Mealy became a concertmaster of the [a=Boston Early Music Festival] orchestra, participating in performances and Grammy-nominated recordings of [a=Jean-Baptiste Lully]'s [i]Psyché[/i] and [i]Thésée[/i], Conradi's [i]Ariadne[/i], and the modern premiere of [a=Johann Mattheson]'s [i]Boris Godunov[/i]. He founded the instrumental ensemble [a=Yale Collegium Players] and collaborated with [a=Simon Carrington] and [a=Yale Schola Cantorum] to record [a=Heinrich Ignaz Franz Biber], [a=Antonio Bertali], Bach's [i]Johannes Passion[/i] and [i]Magnificats[/i]. Robert Mealy also served as an instrumental soloist and leader of [a=Boston Camerata] for over a decade. + +Mealy held a joint position at [l=Yale University School Of Music] and Yale's Department of Music where he directed Yale Collegium Musicum and taught rhetoric and historically-informed performance. Robert was appointed an Adjunct Professor at [l=Yale University] in 2008. He also lectured and gave historical performance workshops at [l=Columbia University], [l=Brown University], [l=Rutgers University], [l=The Oberlin Conservatory Of Music], U.C. Berkeley, and other prominent US institutions. In 2009, Robert Mealy joined the new Historical Performance faculty at Juilliard.Needs Votehttp://robertmealy.comhttp://www.juilliard.edu/faculty/robert-mealyhttps://web.archive.org/web/20130305015005/http://music.yale.edu/faculty/mealy.htmlhttps://en.wikipedia.org/wiki/Robert_MealyMealySequentia (2)Les Arts FlorissantsThe King's NoyseBoston CamerataTafelmusik Baroque OrchestraYale Collegium PlayersMusica PacificaBoston Early Music Festival OrchestraThe Otaré Pit BandTrinity Baroque OrchestraQuicksilver BaroqueYale Institute Of Sacred Music + +1476564Viljo VesterinenViljo Vesterinen (born 26 March 1907 in Terijoki, then Finland, now Zelenogorsk, Saint Petersburg, Russia, dead 18 May 1961 in Helsinki, Finland) was a Finnish accordionist and composer.Needs Votehttps://en.wikipedia.org/wiki/Viljo_VesterinenP. LeščenkoP. VesterinenV. VesterinenV. WesterinenV.VesterinenVesterinenVili VesterinenViljo WesterinenВестезиненViljo Vesterisen ValioryhmäViljo Vesterisen SolistiyhtyeViljo Vesterinens KvartettViljo Vesterisen OrkesteriViljo Vesterinen Yhtyeineen + +1476565Lasse PihlajamaaLauri "Lasse" Armas PihlajamaaDate of Birth 1 August 1916 , Jämijärvi, Finland +Date of Death 14 November 2007 , Helsinki, FinlandNeeds Votehttp://fi.wikipedia.org/wiki/Lasse_Pihlajamaahttp://pomus.net/001645 http://www.imdb.com/name/nm0683145/bioL. PihjalamaaL. PihlajamaaL.PihlajamaaLasse PihlamaaPihlajamaaPitlajamaЛ. ПихлаямаAccordion Super Trio + +1476838Fritz KlingensteinGerman classical violistNeeds VoteKammerorchester Berlin + +1476955Broadus ErleAmerican violinist, born on 21 March 1918 in Chicago, Illinois and died on 6 April 1977 in Guilford, Connecticut. He was married to [a=Yoko Matsuda] (1966-1968) and [a=Syoko Aki].Needs Votehttps://en.wikipedia.org/wiki/Broadus_ErleB. ErleBroadus EarleErle BroadusColumbia Symphony OrchestraJapan Philharmonic Symphony OrchestraYale QuartetNew Music String Quartet + +1476995Max Herman (2)Trumpet playerNeeds VoteBob Crosby And His OrchestraGeorge Paxton & His OrchestraFrank Sinatra And His Orchestra + +1476999Tommy LinehanAmerican jazz pianist in the swing-era, originally from Massachussetts. He started to play in swing orchestras in 1928 and became a member of the co-operative of [a284746] in 1937. His piano play was typical for the sound of [a284746] in their stage "The Band That Plays the Blues". + +Needs Votehttps://www.allmusic.com/artist/tommy-linehan-mn0001785789/creditsLinehamLinehanT. LinehanThomas LinehanTommy LinehamWoody Herman And His OrchestraWoody Herman And His WoodchoppersIsham Jones OrchestraWoody Herman's Four ChipsThe Band That Plays The Blues + +1477015Aleksander SätterströmSwedish violinist born and raised in Växjö. + +As a sixteen-year-old, Aleksander won the "young talents" competition at the Båstad Chamber Music Festival. Two years later, he was accepted into the music program at the Royal Academy of Music in Stockholm. + +Studies in Stockholm and Oslo were rounded off in 2010 with a diploma concert in Stockholm concert hall where Aleksander together with the Royal Philharmonic performed Lars-Erik Larsson's Violin Concerto. + +In addition to orchestral playing, Aleksander is passionate about chamber music and he is, among other things, a member of the award-winning string quartet Sätterströmska sällskapet.Needs VoteA. SätterströmAlex SätterströmSveriges Radios SymfoniorkesterKungliga HovkapelletBodies Without Orchestra + +1477048Milt GoldMilton GoldAmerican jazz trombonist. +Worked with: Shorty Sherock (1946-1948), Herbie Fields (1948), Anita O'Day, Bill Harris e Shelly Manne Sextet (1949), Joe Holiday Quintet, Nat Pierce Orchestra (1950), Claude Thornhill (1951), Med Flory, Stan Kenton, Pete Rugolo Orchestra, Billy Eckstine-Peggy Lee (1954), Jimmy Palmer Orchestra (1956) and many others. +Born: March 22, 1929 in Scranton, Pennsylvania.Needs VoteGoldMilton GoldMilty GoldStan Kenton And His OrchestraArt Mardigan Sextet + +1477181Elizabeth HarwoodElizabeth Jean HarwoodBritish operatic soprano, born 27 May 1938 in Barton Seagrave, England and died 22 June 1990 in Ingatestone, England.Needs VoteE. HarwoodElisabeth HarwoodHarwoodЭлизабет Харвудエリザベス・ハーウッド = Elizabeth HarwoodD'Oyly Carte Opera Company + +1477360Václav MazáčekNeeds VoteVaclav MazacekSlovak Chamber OrchestraCzech Brass Ensemble + +1477455Alfonso GhedinItalian classical string instrumentalistNeeds VoteCino GhedinGhedinI MusiciOrchestra Del Teatro Alla ScalaOrchestra dell'Accademia Nazionale di Santa CeciliaI Solisti ItalianiI Solisti Delle Settimane Musicali Internazionali di NapoliIl Quartetto Beethoven Di Roma + +1477973Francis AkosWeinman Akos FerenczFrancis Akos (30 March 1922 in Budapest, Hungary - 28 January 2016 in Minneapolis, Minnesota, United States) was a violinist. + +Member of the Chicago Symphony Orchestra 1955 - 2003. On the violin, Akos served as Assistant Principal Second 1955 -1956, Principal Second 1956 - 1959, Assistant Concertmaster 1959 - 1997 and Assistant Concertmaster Emeritus 1997 - 2003. +Needs VoteBudapest Symphony OrchestraChicago Symphony OrchestraOrchester Der Städtischen Oper BerlinGöteborgs Symfoniker + +1478158Harry SixtJosefine Huber-BuschGerman schlager songwriter, born 18 February 1928 in Munich, Germany and died 2 November 2001 in Munich, Germany.CorrectH. FixtH. SixtH.SixtHaary SixtHarry Sixt [Josefine Busch]SixSixtSixt, HarryZixtFini BuschClaus RuppKarl KiesingerInge MartensWalter KartisLuck (11)HelfrichtE. Helfricht + +1478925Geraint Jones (2)Welsh organist, harpsichordist, and conductor, May 16, 1917 - May 3, 1998.Needs Votehttp://www.bach-cantatas.com/Bio/Jones-Geraint.htmGeraint JonesJ. R. JonesJonesДж. ДжонсGeraint Jones SingersGeraint Jones Orchestra + +1478927Geraint Jones SingersNeeds Major ChangesChoeur Geraint JonesChœur Geraint JonesGeraint Jones Singers & OrchestraGeraint Jones Singers And OrchestraSingersThe Geraint Jones SingersGeraint Jones (2) + +1478928Geraint Jones OrchestraNeeds Major ChangesChoeur Et Orchestre Geraint JonesOrchestraOrchestre De ChambreOrchestre Geraint JonesThe Geraint Jones OrchestraGeraint Jones (2)Anthony Judd (2) + +1479482Michel DouvrainFrench bassoonistNeeds VoteOrchestre National De France + +1480099Carlos Barbosa-LimaAntonio Carlos Ribeiro Barbosa LimaBrazilian guitarist born 17th December 1944 in São Paulo. Equally capable in Jazz, Latin & Classical genres often mixing those three in a typically Brazilian way. Recorded with [a=Eddie Gomez], [a=Laurindo Almeida], [a=Thiago de Mello], [a=Hendrik Meurkens]. Also worked with [a=Antonio Carlos Jobim] and [a=Luiz Bonfa]. Died 23rd February 2022 in Paraty, Rio de Janeiro.Needs Votehttp://www.savarez.com/carlos-barbosa-lima-0https://pt.wikipedia.org/wiki/Carlos_Barbosa-Limahttps://en.wikipedia.org/wiki/Carlos_Barbosa-LimaAntonio Carlos Barbosa LimaBarbosa LimaBarbosa-LimaC. B. LimaCarlos BarbosaCarlos Barbosa LimaThe Washington Guitar Quintet + +1480414Vanni MorettoVanni MorettoChief conductor of the Orchestra Atalanta Fugiens, he is also composer and double bass/violone player, and editorial director of the series “Archivio della Sinfonia Milanese” published by Casa Ricordi. +He conducts regularly Milano Classica, Pomeriggi Musicali and Orquesta Barroca de Sevilla. He has also conducted: L’Angelicum, Musica Rara, Solisti Aquilani, Il Giardino Armonico, La Cappella Teatina, Orchestra Litta, I Musici di Santa Pelagia and Gli Archi del Cherubino. He has been the regular guest conductor of the Milano Classica orchestra for 8 years, recording compact discs with Dynamic. +In 2004 he founded the classical orchestra Atalanta Fugiens and initiated the project “Archivio della Sinfonia Milanese” to record and publish the 18th century Milanese symphonic repertoire. The recordings of the project are produced as a series of the same name by Sony BMG. The scores, revised by a scientific committee (including Vanni Moretto) at the Università Statale di Milano, are published by Casa Ricordi. +As violone player Moretto has given concerts in major concert halls in all continents, including New York Carnegie Hall, Tokyo Suntori Hall, Sydney Opera House, Berlin Philharmonie, Milan Teatro alla Scala, Paris Opéra, Buenos Aires Colòn and Rome Santa Cecilia, and recorded for Teldec, Decca, Amadeus and others. +Moretto’s compositions, edited by Ricordi, Sonzogno and Bèrben, have qualified in many national and international competitions (e.g. Valentino Bucchi Prize, Goffredo Petrassi contest, Rocco Rodio and Fiumara d’Arte competitions) and have been performed by major institutions such as Orchestra RAI di Milano, Orchestra Sinfonica della Fenice di Venezia, Orchestra dell’Accademia Chigiana, Vittorio Ghielmi’s Ensemble Sonar Parlante, Orchestra Musica Rara, Orchestra Milano Classica and Orchestra Atalanta Fugiens. Specialised in compositions for children, he was twice consecutively awarded first prize in the competition "Il bambino e il suo strumento" in Grugliasco (1994 and 1995) and second prize in the international composition competition "Fairy-tale Sounds" of Sàrmede (1994) and the Johannes Brahms competition (1994). +He has recently been concerned with studying the problems of historical tuning and Italian eighteenth century playing technique, lecturing in important european academies. Needs Votehttp://vannimoretto.jimdo.com/http://atalantafugiens.jimdo.com/Il Giardino ArmonicoI BarocchistiLa RisonanzaAtalanta FugiensLa Divina ArmoniaI Talenti Vulcanici + +1480469Laura JungwirtLaura-Maria JungwirthAustrian classical violistNeeds VoteLaura JungwirthLaura-Maria JungwirthBruckner Orchestra Linz + +1480914Emanuel BrabecAustrian cellist, born 26 November 1909 in Vienna, Austria, died 15 January 1998 in Vienna, Austria.Needs VoteBrabecEmanuel BarbecEmanuel BrebecEmmanuel Brabecエマヌエル・ブラベックWiener PhilharmonikerWiener Philharmonisches StreichquartettBarylli Quartet + +1480915Josef SivoJosef SivóClassical violinist, born 26 November 1931, died 13 August 2007.Needs VoteJosef SivòJosef SivóWiener Philharmoniker + +1481065Virginia SpicerCanadian classical flutistNeeds VoteOrchestre symphonique de Montréal + +1481614BRK3Sam GonzalezNeeds Votehttp://www.myspace.com/brk3musicBRK 3The AcolyteSam GonzalezMitosisOrbit1AudiofreqInverseCorey Soljan + +1482171James Clark (6)Classical violinist, orchestra leader and tutor. +[b]For the late 1950s British classical violinist, please use [a=James Clark (22)][/b]. +Former chorister at [a=The King's College Choir Of Cambridge] he went on to study both singing and violin at the [l=Royal College of Music, London]. +In 1981 he was invited by [a368137] to lead the [a=European Union Youth Orchestra], and subsequently became the first leader of the newly formed [a=The Chamber Orchestra Of Europe]. As a member of the [a=Endellion String Quartet] from 1984, chamber music became an increasingly important music activity, and he was also active with [a=The Raphael Ensemble]. +From 1985 to 1990 he was Leader of the [a=BBC National Orchestra Of Wales] and from 1990 to 1998 he was Leader of the [a=Scottish Chamber Orchestra]. Between 1999 and 2010 he was Concertmaster of the [a=Philharmonia Orchestra]. +He was Leader of the [a=Royal Liverpool Philharmonic Orchestra] from 2004 to 2017, and was appointed Leader of the [a=Royal Scottish National Orchestra] in June 2010. +Tutor in Violin at [l459222].Needs Votehttp://jamesaclark.co.uk/https://www.feenotes.com/database/artists/clark-james/https://www.rncm.ac.uk/people/james-clark/https://www.hyperion-records.co.uk/a.asp?a=A917https://www.naxos.com/Bio/Person/James_Clark_violin/69652James ClarkPhilharmonia OrchestraRoyal Scottish National OrchestraThe King's College Choir Of CambridgeThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraScottish Chamber OrchestraRoyal Liverpool Philharmonic OrchestraThe Raphael EnsembleEndellion String QuartetBBC National Orchestra Of Wales + +1482345Clara SanabrasAnglo-Spanish (alto) singer and multi-instrumentalist.Needs Votehttp://clarasanabras.co.uk/ClaraLondon VoicesThe Harp ConsortThe Society Of Strange And Ancient Instruments + +1482514Teddy CypronBaritone saxophonist with Billy EckstineNeeds VoteBilly Eckstine And His Orchestra + +1482515Thomas CrumpTenor saxophonist. CorrectTommy CrumpBilly Eckstine And His OrchestraEarl Hines And His OrchestraDeLuxe All Star Band + +1482910Cecilia GötestamSwedish cellist, born 1970 in Uppsala, Sweden.CorrectCecilia GøtestamCilleOslo Filharmoniske Orkester + +1482911Bogumila Dowlasz-WojcikowskaBogumila Nystedt née Dowlasz-WojcikowskaPolish violinist, born 1980 in Lodz, Poland.Needs VoteBogumila DowlaszBogumila Dowlasz NystedtOslo Filharmoniske Orkester + +1482913Alyson ReadNorwegian violinist, born 1969 in Oslo, Norway.Needs VoteOslo Filharmoniske Orkester + +1482968Peter Thomas (10)British classical violinist and concertmaster based in Birmingham.Needs VoteP. ThomasCity Of Birmingham Symphony OrchestraThe Allegri String QuartetOrion Trio + +1483337Arthur ButterworthBritish composer, trumpeter and conductor. +Born August 4, 1923 in Manchester; died November 20, 2014.Needs VoteButterworthButterworth, ArthurGeorge ButterworthHallé OrchestraRoyal Scottish National Orchestra + +1483338Ifor JamesHorn player and teacher (born August 30, 1931, Carlisle, Cumbria, England – died December 23, 2004). + +His father was a noted cornet player and his mother a famous soprano. He began playing cornet in a brass band at age four and by seven he was playing paying gigs as a trumpeter. He also played the organ and was assistant organist in [l797502]. Taking up the horn in 1951, he studied first privately and then under [a2564223] at the [l527847]. His professional horn playing career began with the [a374006] then the [a973597]. + +Moving to London, he played as principal horn with many orchestras and chamber groups. He was appointed professor of horn at the Royal Academy of Music, principal horn of the [a415725], and horn player in the [a835731], with whom he toured the world and made over 30 recordings. He was also appointed professor for horn at the [l459222] (Manchester). His final teaching appointment was as professor for horn at the Staatliche Hochschule für Musik, Freiburg, Germany. + +His former students include over 100 professional musicians, over 30 of them currently principal horn players with orchestras in numerous countries. Nine are professors at music colleges, two are the principals of German music colleges and a further six are noted soloists. +Needs Votehttp://en.wikipedia.org/wiki/Ifor_JamesI. JamesJamesHallé OrchestraEnglish Chamber OrchestraPhilip Jones Brass EnsembleWestminster Brass EnsembleThe Schiller Trio + +1483707Julius KlengelGerman cellist, composer and teacher, born 24 September 1859 in Leipzig, Germany and died 27 October 1933 in Leipzig, Germany. He was the brother of [a1142924].Needs Votehttp://en.wikipedia.org/wiki/Julius_KlengelJ KlengelJ. KlengelKlengelКленгельЮ. КленгельЮлиус КленгельGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +1483709Die 12 Cellisten Der Berliner PhilharmonikerA chamber music group of the [a=Berliner Philharmoniker] founded in 1972.Needs Votehttps://www.die12cellisten.de/https://en.wikipedia.org/wiki/The_12_Cellists_of_the_Berlin_Philharmonic12 Cellists Of The Berlin PhilharmonicDie Zwölf Cellisten Der Berliner PhilharmonikerLos 12 Cellistas De La Filarmónica De BerlínThe 12 CellistsThe 12 Cellists Of The BPOThe 12 Cellists Of The Berlin PhilharmonicThe 12 Cellists Of The Berlin Philharmonic OrchestraThe 12 Cellists Of The Berlin Philharmonic Orchestra = Die 12 Cellisten Der Berliner PhilharmonikerThe 12 Cellists Of The Berliner PhilharmonikerThe 12 Cellists from Berlin PhilarmonicThe 12 Cellists of the Berlin Philharmonicベルリン・フィル12人のチェリストたちDietmar SchwalkeWolfgang BoettcherOttomar BorwitzkyGeorg FaustOlaf ManingerEberhard FinkeSolène KermarrecPeter Steiner (3)Jörg BaumannGötz TeutschMartin MenkingDavid RinikerLudwig QuandtHeinrich MajowskiKnut WeberJan DiesselhorstGerhard WoschnyRudolf WeinsheimerKlaus HäusslerAlexander WedowChristoph KaplerStephan KonczMartin LöhrNikolaus RömischChristoph IgelbrinkRichard DuvenBruno DelepelaireRachel Helleur-SimcockBerliner Philharmoniker + +1484313Walter Alfred WettlerSwiss sound engineer for [l7703] and [l815530], Schlieren, Switzerland (* Basel, 18.12.1921, Switzerland, † Dietikon, 09.03.2000, Switzerland). +Also operated under the name of Alfred Wettler.Needs Votehttps://www.fonoteca.ch/cgi-bin/oecgi3.exe/inet_jazzbionamedetail?NAME_ID=2017.011&LNG_ID=DEUA. WettlerAWAW ML FSAW ML SUAlfred WettlerIng. W. A. WettlerTonstudio W. A. WettlerWW(unibald) A(nastasius) WettlerW. A. WettlerW. WettlerW.A. WetterlW.A. WettlerWAWEWalhter Alfred WettlerWalter A. WettlerWalter WettlerWalter-Alfred WettlerWalther Alfred WellerWalther Alfred WettlerWalther-Alfred WettlerWeWettler + +1485430Mauno MaunolaMauno Kalervo MaunolaBorn on October 20th, 1911 in Helsinki, Finland. Died on April 15th, 1970 in Helsinki, Finland. A Finnish musician (double bass, violin, drums) and lyricist.Needs VoteM. MannolaM. MaunolaM. MaunulaMaukka MaunolaMauno MaunulaMaunolaRytmin Swing-Trio + +1485549Mark Le BrocqClassical tenor vocalist.Needs Votehttp://marklebrocq.co.ukhttps://twitter.com/meblebrocqhttp://www.hazardchase.co.uk/artists/mark-le-brocq/Le BrocqMarc Le BrocqMark LeBrocqMark le BrocqGabrieli ConsortThe Cambridge SingersCambridge Taverner Choir + +1486018Count Basie's All StarsNeeds VoteBasie All StarsBasie All-StarsCount Basie All StarsCount Basie All-StarsCount Basie AllstarsCount Basie And His All StarsCount Basie Com All StarsCount Basie With All-StarsThe Count Basie All-StarsCount Basie + +1486572Claire WillisClaire Louise WillisEDM Singer & Songwriter from Newcastle, UK +Needs Votehttps://www.facebook.com/clairewillismusichttp://soundcloud.com/claire-willishttp://www.myspace.com/clairewillis_http://www.youtube.com/user/ClairewillismusicClaireClaire Louise WillisWillis, Claire + +1487184Jean CurtelinNeeds Major ChangesJ. Curtelin + +1487405Bob Peck (2)American jazz trumpeter.Needs VoteB. PeckBobby PeckPeckR. PeckWoody Herman And His OrchestraBilly Butterfield And His OrchestraWoody Herman & The Herd + +1487954Thomas FritzschGerman cellist and Viola da gamba player, born in Zwickau, GDR.Needs VoteThoms FritzschNeues Bachisches Collegium Musicum LeipzigAccademia DanielCappella Sagittariana Dresden + +1488036Johnny Dunn's Original Jazz HoundsNeeds Major ChangesDunn's Original Jazz HoundsJohnny Dunn's Jazz HoundsFats WallerJohnny DunnJames Price JohnsonHarry HullErnest ElliottHerb FlemingWilliam Tyler (4)Sam Speed (2)Herschel BrassfieldJohn Mitchell (19)Dan Wilson (15) + +1488587Wolfgang Bauer (3)German trumpet playerNeeds Votehttp://www.wolfgang-bauer-trompete.de/https://de.wikipedia.org/wiki/Wolfgang_Bauer_(Trompeter)Wolfgang BauerWürttembergisches KammerorchesterWolfgang Bauer ConsortHR - BrassBundesjugendorchesterGerman Brass + +1488589Verena SommerClassical violinistNeeds VoteCollegium VocaleAkademie Für Alte Musik BerlinDeutsche Kammerphilharmonie BremenEnsemble Modern Orchestrahr-Sinfonieorchester + +1488594Thomas JauchGerman double bassist, born in 1964 in Tuttlingen, Germany.CorrectBayerisches StaatsorchesterWolfgang Bauer ConsortBundesjugendorchester + +1489086Charles NeidichAmerican classical clarinetist, composer, and conductor. + +Born in 1953 in New York City, NY, USANeeds Votehttps://en.wikipedia.org/wiki/Charles_Neidichhttps://web.archive.org/web/*/https://www.charlesneidich.com/https://www.charlesneidich.nethttps://www.msmnyc.edu/faculty/charles-neidich/https://www.juilliard.edu/music/faculty/neidich-charleshttps://web.archive.org/web/20031009141436/https://www.sonyclassical.com/artists/neidich/https://www.facebook.com/cneidich/Charles NeidlichCharles NiedichЧарлс НајдихЧарльз НейдичOrpheus Chamber OrchestraMozzafiatoTwentieth Century Classics EnsembleNew York Woodwind QuintetSylvan WindsNew York Classical Players + +1489143Jimmy WybleJames Otis WybleAmerican jazz and country/western swing guitarist, songwriter and author; born January 25, 1922 in Port Arthur, Texas, died January 6, 2010 in Los Angeles, CaliforniaNeeds Votehttps://adp.library.ucsb.edu/names/353418https://jimmywyble.bandcamp.com/J. WybleJames O. "Jimmy" WybleJames O. 'Jimmy' WybleJames WybleJim WhbleJim WybeeJim WybleJimmie WybbleJimmy O. WybleJimmy WybbleJimmy Wyble And His RifftetteJimmy Wyble and LOVE BROS.WybleBob Wills & His Texas PlayboysPort Arthur JubileersTommy Duncan & His Western All StarsRed Norvo QuintetThe Barney Kessel QuartetJimmy Wyble TrioBob Harrington QuartetBenny Goodman And His Jazz GroupThe Jimmy Wyble QuintetTony Rizzi's 5 GuitarsTony Rizzi & His Five Guitars Plus FourBenny Goodman Tentet + +1489167Lembit TraksNeeds VoteL. TraksEstonian Philharmonic Chamber Choir + +1489480Michele GregoBassoonist.Needs VoteGrego Michele D.Michele D. GregoMichelle GregoLos Angeles Philharmonic Orchestra + +1489483Julie FevesClassical bassoonist and Associate Dean and Director of Instrumental Performance programs for the School of Music at the California Institute of the ArtsNeeds Votehttps://longbeachsymphony.org/musicians/julie-feves/Julie Ann FevesJulie FevisContemporary Chamber EnsembleSpeculum MusicaeLos Angeles Philharmonic OrchestraThe Los Angeles Chamber OrchestraPhilharmonia Baroque OrchestraThe Mozartean PlayersAspen Festival OrchestraLong Beach Symphony OrchestraThe New York Bassoon Quartet + +1489509Margot OitzingerClassical alto / mezzo soprano vocalist born in Graz, AustriaNeeds Votehttp://www.oitzinger.com/OitzingerRoswitha MuellerCollegium VocaleCantus CöllnMaulbronner KammerchorCantus ThuringiaAbendmusiken BaselSette Voci + +1489510Kristin LindeClassical oboe player.Needs VoteChristin LindeChristine LindeAkademie Für Alte Musik BerlinConcerto KölnCantus CöllnHannoversche HofkapelleNetherlands Bach CollegiumFestspielorchester Göttingen + +1489511Gili RinotClassical clarinetist, basset horn and chalumeau player.Needs VoteConcerto KölnEuropa GalanteAccademia DanielHannoversche HofkapelleZefiroL'Harmonie Bohemienne + +1489519Gottfried Van SwietenGottfried, Freiherr van Swieten (Leiden, October 29, 1733 - Vienna, March 29, 1803) was a diplomat, librarian, and government official who served the Austrian Empire during the 18th century. +He was an amateur musician and was the patron of some great composers of the Classical era, including [a=Joseph Haydn] and [a=Wolfgang Amadeus Mozart], as well as [a=Ludwig van Beethoven]. +Correcthttp://en.wikipedia.org/wiki/Gottfried_van_SwietenB. G. v. SwietenBaron Gottfried SweetenBaron Gottfried van SwietenBaron Van SwietenBaron Von SwietenBaron van SwietenFreiherr Gottfried Van SwietenG. Van SwietenGottfried Baron van SwietenGottfried Freiherr van SwietenGottfried Von SwietenGottfried van SwietenGottfried von SwietenGottfried, Freiherr van SwietenH. Van SwietenL.V. BeethovenVan Swieten + +1489522Klaus BundiesClassical viola player.Needs VoteKlaus BundisAkademie Für Alte Musik BerlinMusica Antiqua KölnCapella Agostino SteffaniLa StagioneCantus CöllnHannoversche HofkapelleDas Kleine KonzertLinde-ConsortFestspielorchester GöttingenMusica Alta RipaSephira Ensemble StuttgartBoston Early Music Festival OrchestraEnsemble Schirokko Hamburg + +1489605Sarah NemtanuSarah NemtanuFranco–Romanian violinist, born in 1981 +Daughter of [a1172295], sister of [a6349248] +She is the joint leader and first solo violinist in the Orchestre National de France since 2002.Needs Votehttp://www.naive.fr/artiste/sarah-nemtanuhttp://fr.wikipedia.org/wiki/Sarah_Nemtanuhttp://www.facebook.com/sarahnemSarahOrchestre National De FranceOrchestre Tous En CœurEuropean Camerata + +1489741Pekka HärkönenNeeds VoteP. HärkönenMiesprojekti + +1489948John PaivaAmerican guitar player, member of the Four Seasons in 1975 and 1976. Before his engagement for [a121112], he was studio guitar player and played from 1970 to 1973 with [a264722]. +Paiva moved to Munich, Germany in the 1980's, where he is still active as musician and e.g. as guitar educator. Needs VoteJ. PaivaJohnThe Four SeasonsThe HappeningsFrench Horn FormationAlbert C. Humphrey And The Roots Of Blues + +1491311Krzysztof BąkowskiClassical violinistNeeds VoteKrzysztof BakowskiOrkiestra Symfoniczna Filharmonii Narodowej + +1491897Iaia FiastriMaria Grazia PacelliIaia, better known by the married name Fiastri, born in Rome 15 September 1934, passed away December 28, 2018, is an italian playwright, screenwriter and lyricist. In 1964 began writing for the cinema with 14 movies for various Italian directors in the career. Since 1965 writes articles for various newspapers and "Carosello" advertising. In 1969 she was called by Garinei and Giovannini to replace [a=Luigi Magni], busy with his first film, to finalize the musical comedy [i]Angeli in Bandiera[/i]. From that moment she will continue uninterrupted for thirty years writing some of the most famous comedies ([i]Aggiungi un Posto a Tavola, Taxi a Due Piazze, Alleluja Brava Gente[/i]).Needs VoteFiastriI. FiastriI.FiastriJ. FiastriJaia FiastriJaja FiastriM. FiastriMaria Grazia Pacelli + +1492188Franck PichonClassical violinist.Needs VoteFrank PichonIl Seminario MusicaleLes Talens Lyriques + +1492189Laurent MaletClassical trumpeterNeeds VoteOrchestre National Bordeaux Aquitaine + +1492210Mishel PiastroMishel Boris PiastroClassical violinist and conductor, born 19 June 1891 in Kerch, Russia, based in the United States since 1920, and died in April 1970 in New York City, New York. Played in the San Francisco Symphony from 1925 to 1930 and the New York Philharmonic from 1931 to 1943. He was also the conductor of the Longines Symphonette.Needs Votehttps://adp.library.ucsb.edu/names/108750https://www.nytimes.com/1970/04/12/archives/imishel-piastro-violinist-is-dead-led-longines-symphonette-and-held.htmlMishel PiastraPiastroNew York PhilharmonicSan Francisco Symphony + +1492270Henry Allen-Coleman Hawkins And Their OrchestraNeeds Major ChangesAllen-Hawkins And Their OrchestraAllen-Hawkins OrchestraHenry Allen - Coleman Hawkins With Their OrchestraHenry Allen And Coleman Hawkins And Their OrchestraHenry Allen, Coleman Hawkins & Their OrchestraHenry Allen, Coleman Hawkins And Their OrchestraHenry Allen-Coleman Hawkins & Their OrchestraHenry Allen-Coleman Hawkins &Their OrchestraHenry Allen-Coleman Hawkins With Their OrchestraRussell ProcopeJohn KirbyHorace HendersonBernard AddisonWalter JohnsonHilton JeffersonBenny MortonDickie WellsHenry "Red" AllenManzie JohnsonEdward IngeBob YsaguirreDon Kirkpatrick (4) + +1492272Christian LardéFrench classical flute player, born 1930 in Paris France and died 16 November 2012 in Draguignan, France.Needs VoteC. LardeC. LardéCh. LardeCh. LardéChristian LArdeChristian LardeChristian Larde'Chritian LardéLardéクリスチャン・ラルデクリスティアン・ラルデI Solisti VenetiOrchestre De Chambre Paul KuentzEnsemble Instrumental Jean-Marie LeclairValois Instrumental EnsembleEnsemble Polyphonique De L'O.R.T.F.Quintette Marie-Claire JametL'Ensemble D'Instrument À Vent Pierre Poulteau + +1492455Katherine JenkinsonKatherine Jenkinson is a British cellist, born in 1980. She studied at the Royal Academy of Music (1998-2003) with [a1638432] and [a377704].Needs Votehttps://www.katherinejenkinson.com/Kath JenkinsonKatherine JenkinsoKatheryn JenkinsonKathryn JenkinsonRoyal Philharmonic OrchestraThe Allegri String QuartetSonia Slany String And Wind EnsembleAquinas Trio + +1492920Heinrich GeuserHeinrich Geuser (3 August 1910 - 26 June 1996) was a German clarinetist.Needs VoteH. GeuserRIAS Symphonie-Orchester BerlinDas Orchester Der Staatsoper Berlin + +1493311Yulia Ziskel-DeninzonViolinistNeeds Votehttps://www.facebook.com/yuliaziskelviolinist/community/Yulia ZiskelNew York Philharmonic + +1493409Rafu RamstedtRafael Gustaf Johan RamstedtBorn on June 14th, 1888 in Turku, Finland. Died on January 26th, 1933 in Helsinki, Finland. A Finnish singer, composer, lyricist and actor.Needs VoteR. RamstedtR. RamstetR.RamstedtRaf. RamstedtRafael RamstedtRamstedRamstedt + +1493410Evert SuonioEvert SuonioBorn on October 26th, 1871 in Sorsakoski, Finland. Died on March 23rd, 1934 in Hausjärvi, Finland. A Finnish actor, singer and songwriter. He collected and translated Hungarian traditional songs to Finnish language.CorrectAntero SuonioE. SuonioE.SuonioSuonioSuonio Evert + +1493412Frans LinnavuoriFrans Fritiof LinnavuoriBorn on October 13th, 1880 in Ylöjärvi, Finland. Died on June 12th, 1926 in Tampere, Finland. A Finnish composer and musician (classical organ).CorrectF. LinnavuoriLinnavuori + +1493522Helmut NewtonHelmut NeustädterGerman-Australian photographer, born 31 October 1920 in Berlin, Germany and died in a car accident 23 January 2004 in West Hollywood, Los Angeles, California, USA.Needs Votehttp://www.helmutnewton.com/http://en.wikipedia.org/wiki/Helmut_NewtonH. NewtonHelmuth NewtonHemut Newton + +1493527Leopold NowakAustrian musicologist (Vienna, 17 August 1904 – 27 May 1991). +Mostly known for editing [a=Anton Bruckner]'s scores for the International Bruckner Society.Correcthttp://en.wikipedia.org/wiki/Leopold_Nowak1878/80 Version: edited by Leopold NowakDr. Leopold NowkL. NowakLeopold NovakNovakNowakProf. Dr. Leopold NowakUniv. Prof. L. NowakЛеопольд Новакノヴァーク + +1494251Gene GammageEugene Seldon "Gene" GammageAmerican Jazz drummer. +Born January 30, 1931, Atlanta, Georgia. +Died 1989 (aged 57–58).Needs Votehttps://en.wikipedia.org/wiki/Gene_GammageEugene GammageGene GamageThe Oscar Peterson TrioPat Moran TrioThe Jack Sheldon Quartet + +1494517The Coleman Hawkins TrioNeeds Major ChangesColeman Hawkins TrioHawkins TrioColeman HawkinsMaurice Van KleefFreddy Johnson (5) + +1495144Matthias HöferGerman clarinetist.CorrectOrchester der Bayreuther FestspieleFrankfurter Opern- Und Museumsorchester + +1495149Johannes GmeinderJohannes M. GmeinderGerman clarinetist, born 1976 in Konstanz, Germany.Needs VoteOrchester der Bayreuther FestspieleFrankfurter Opern- Und MuseumsorchesterRudens Turku Festival Ensemble + +1495150Stephanie WinkerGerman flutistNeeds Votehttp://stephaniewinker.de/biografieGewandhausorchester LeipzigMa'alot QuintettRudens Turku Festival Ensemble + +1495153Albrecht HolderClassical bassoonist and music professor, born 24 August 1958 in Reutlingen, Germany.Correcthttp://www.albrecht-holder.de/Ensemble ModernOrchester der Bayreuther FestspieleStuttgarter PhilharmonikerConsortium ClassicumThaous EnsembleBundesjugendorchesterKlassische Philharmonie Stuttgart + +1495443Robert CusumanoRobert M. Cusumano.American jazz trumpeter. + +Born : July 05, 1914 in Seranton, Pennsylvania. +Died : September 11, 1987 in Glen Cove, New York. + +"Bob" worked with : "Tommy Dorsey's Band" (1937), +"Larry Clinton's Band" (1937-'38), "Paul Whiteman +Orchestra" (August 1938-February 1940), rejoined with +T. Dorsey, "NBC" and "ABC" staff orchestra and recorded +with Louis Armstrong, Sarah Vaughan and others.Needs VoteB. CusamanoB. CusumanoBCBSBob CusamanoBob CusumanoBob Cusumano (BC)CosumanoCusumanoJoe CusumanoRobert M. CusumanoTommy Dorsey And His OrchestraLouis Armstrong And His OrchestraLarry Clinton And His Orchestra + +1495743Nestor AmaralNeeds Votehttps://pt.wikipedia.org/wiki/Nestor_Amaralhttps://dicionariompb.com.br/artista/nestor-amaral/https://immub.org/compositor/nestor-amaralhttps://discografiabrasileira.com.br/artista/26736/nestor-amaralAmaralN. AmaralNester AmaralHarry James And His OrchestraNestor Amaral And His ContinentalsBando Da LuaNestor Amaral & His Orchestra + +1496081Shock:ForceJoseph O'SullivanProducer and DJCorrecthttp://www.facebook.com/pages/SHOCKFORCE/43127879215Shock ForceShock-ForceShockForceShockforceJoseph O'SullivanMatt Thomas (11) + +1496913David WijkmanBass vocalistNeeds VoteRadiokören + +1496956Stefania MalagùItalian mezzo-soprano. She was born 11 March 1932 in Milan, Italy and died 16 January 1989.CorrectMalaguMalagùS. MalaguS. MalagùStafania MalagùStefania MalaStefania MalaguStefania Malagu'Stefania MalagúStefanie MalagùStephania MalaguСтефания Малагу + +1497855Jon Otis (2)Darrell Jon OtisAmerican drummer, producer, bandleader. +Born 12 June 1953 in Tulsa, Oklahoma. +In the 1980s and 1990s European resident. +Oldest son of [a=Johnny Otis], brother of [a=Shuggie Otis]. +Needs Votehttp://www.jessicaknoxmusic.com/band.htmlJ. OtisJohn OtisJon OtisOtisThe Johnny Otis ShowJon Otis And The BoxxAndreas Vollenweider & Friends + +1498939Ruth KilliusGerman classical viola player, born June 20, 1968 in Lahr, Baden-Württemberg. +Wife of [a=Thomas Zehetmair]Needs Votehttps://de.wikipedia.org/wiki/Ruth_KilliusCamerata BernZehetmair QuartettSwiss Chamber Soloists + +1499466Ottavio RinucciniJanuary 20, 1562 – March 28, 1621. +Italian poet, courtier, and opera librettist. +Needs Votehttps://en.wikipedia.org/wiki/Ottavio_Rinuccini?Ottavio RinucciniO. RinucciniOttavio RinucciRinucciniО. Ринуччини + +1499470Rod FranksRoderick FranksBritish classical trumpet player and trumpet pedagogue. Born 15 May 1956 in Shipley, West Yorkshire, England, UK - Died 20 July 2014 in Nottinghamshire, England, UK. +He studied at the [l459222] and started out by performing with brass bands such as [a=The Brighouse And Rastrick Brass Band] and [a=The Black Dyke Mills Band]. He then moved to Norway to become Principal Trumpet in the [a=Bergen Filharmoniske Orkester] (1977-1983). On his return to England, he joined up with the [a=Philip Jones Brass Ensemble] (1984-1986) and became a co-founder of the [a=London Brass] in 1986 and [a=The English Brass Ensemble]. In 1988, he became a member of the [a=London Symphony Orchestra] and, after two years, he was appointed Principal Trumpet until 2011. He taught at [l305416], the Royal Northern College of Music and the [l527847]. + +Also worked for: +Hammonds Junior Band +BBC Northern (Philharmonic) Orchestra +[a=Hallé Orchestra] +LSO (1988-1990, tp1, 1990-2011 sickness then assistant from [a=Phil Cobb (2)]).Needs Votehttps://open.spotify.com/artist/2Udci8hut4Zlf8jokD4uhUhttps://open.spotify.com/artist/54aoi4DBo5wMxz9wq94AVjhttps://music.apple.com/us/artist/rod-franks/4394216https://www.feenotes.com/database/artists/franks-rod-15th-may-1956-20th-july-2014/https://lso.co.uk/more/news/110-rod-franks.htmlhttps://trumpetguild.net/content/itg-news/466-in-memoriam-rod-franks-1956-2014https://www.gramophone.co.uk/classical-music-news/article/lso-trumpeter-rod-franks-has-diedhttps://www.telegraph.co.uk/news/obituaries/11061833/Rod-Franks-obituary.htmlhttps://www.imdb.com/name/nm3902530/Roderick FranksRodney FranksLondon Symphony OrchestraLondon BrassThe Black Dyke Mills BandEnglish Chamber OrchestraThe Brighouse And Rastrick Brass BandPhilip Jones Brass EnsembleBergen Filharmoniske OrkesterThe English Brass EnsembleThe London Symphony Brass EnsembleInternational Celebrity Trumpet Ensemble + +1499694Johann Gottlieb NaumannGerman composer and conductor, born in Blasewitz, 17 April 1741 – died 23 October 1801 in Dresden.Needs Votehttp://en.wikipedia.org/wiki/Johann_Gottlieb_NaumannJ. A. NaumannJ. G. NaumannJohan Gottlieb NaumannJohann Gottlieb NaumanJohann NaumannNaumannNeumannStaatskapelle Dresden + +1499810LeRoy FenstermacherViola player. +Member of [a884062] from 1964 to 1967 +and [a472036] from 1967 to 1996 + +Needs VoteDetroit Symphony OrchestraBaltimore Symphony Orchestra + +1500212Catarina LigendzaCatarina Elisabet LigendzaSwedish operatic soprano, born 18 October 1937 in Stockholm, Sweden. + +She studied first at the Academy of Music in Vienna, then between 1959 and 1963 with Henriette Klink-Schneider at the Bavarian State Conservatory in Würzburg and finally with Josef Greindl at the Academy of Music in Saarbrücken. + +She is the daughter of [a5565431] and [a2024777], who were both court singers at the Royal Theater in Stockholm. Ligendza is married to the German oboist and conductor [a3548075] since 1965.Needs Votehttps://sv.wikipedia.org/wiki/Catarina_LigendzaC. LigendzaCatarina LigenzaCaterina LigendzaKaterina LigendzaLigendza + +1500213Peter Schneider (6)Peter SchneiderAustrian conductor, born 26 March 1939 in Vienna, Austria.CorrectP. SchneiderSchneiderDie Wiener Sängerknaben + +1500385Jack PinchesClassical trombonist.Needs VoteMaster Jack PinchesBBC Symphony Orchestra + +1500844Larry CovelliAmerican jazz saxophonist and clarinet player.Needs VoteL. CovelliWoody Herman And His OrchestraWoody Herman And The Swingin' HerdLouie Bellson Big BandWoody Herman And The Fourth HerdDon Menza & His '80s Big BandLarry Covelli QuintetDon Menza QuintetLouie Bellson's Big Band Explosion! + +1500859Michael Webster (2)American clarinetist and current artistic director at Houston Youth Symphony. One of the founders of the Webster Trio Japan in 1988. He's the son of [a2553659] and married to [a1767606].Needs Votehttps://www.michaelwebsterclarinet.com/WebsterSan Francisco SymphonyRochester Philharmonic OrchestraWebster Trio Japan + +1500865Michael LeiterClassical double bassist, born April 10, 1944, and died October 12, 2000.Needs VoteOrchestre symphonique de Montréal + +1500871Milan YancichAmerican horn player, born 11 December 1921 and died 7 August 2007 in Lake Placid, New York. He was the twin brother of [a3229261].Needs VoteYancichThe Cleveland OrchestraChicago Symphony OrchestraRochester Philharmonic OrchestraThe Columbus Philharmonic Orchestra + +1500874Thomas A. DummAmerican violist, born 15 March 1940.CorrectThomas DummThe Cleveland OrchestraSaint Louis Symphony OrchestraBaltimore Symphony OrchestraRochester Philharmonic Orchestra + +1501265David Martin (21)British classical violistNeeds VoteRoyal Scottish National Orchestra + +1501989Ernest BernerNeeds VoteErnst BernerThe Berry's + +1502289Timothy DaviesClassical string instrumentalist and co-founder with his brother [a1502291] of [a1502290], disbanded 1985.Needs VoteThe Medieval Ensemble of London + +1502290The Medieval Ensemble of LondonEnsemble formed by brothers [a1502289] and [a1502291], fl 1970s and 1980s. Disbanded in 1985.Needs Votehttps://themedievalensemble.org/http://www.medieval.org/emfaq/performers/mel.htmlhttp://www.classical.net/music/recs/reviews/l/loi59119a.phpConjunto Medieval De LondresMedieval Ensemble Of LondonPaul HillierRogers Covey-CrumpPaul ElliottCharles BrettMichael ChancePatrizia KwellaAndrew Watts (2)William HuntAndrew King (5)Joseph CornwellMichael George (3)Timothy PenroseMargaret PhilpotTimothy DaviesPeter Davies (3)Gregory KnowlesChristopher KiteRobert Cooper (6)Martin Pope + +1502291Peter Davies (3)Classical wind instrument player and co-founder with his brother [a1502289] of [a1502290], disbanded 1985.Needs VotePeterThe Consort Of MusickeThe Medieval Ensemble of London + +1502779Quido HölblingQuido HölblingSlovak violinist. Born October 23, 1944 in Poprad (Slovakia). [a=Anna Hölblingová]’s husband.Needs Votehttp://www.hc.sk/src/interpret.php?lg=sk&oid=371http://www.hc.sk/src/teleso.php?lg=sk&id=2224Guido HoelblingGuido HolbingGuido HöblingGuido HölbingGuido HölblingHoelblingQ. HölblingQuido HoelblingQuido HolblingCapella IstropolitanaSlovak Chamber Orchestra + +1502783Vladislav BrunnerClassical flutist, born 1943.Needs VoteJ. BrunnerVladislav Brunner Jr.Vladislav Brunner Sen.Slovak Chamber Orchestra + +1504131George Mitchell (6)Half of the UK House producer duo [a=The Sharp Boys] with Steven Doherty.Needs VoteG. MitchellThe Sharp Boys + +1504132Steven Doherty (2)Needs VoteS. DohertyThe Sharp Boys + +1504270Ettore BongiovanniClassical hornistNeeds VoteOttetto ItalianoOrchestra Sinfonica Nazionale Della RAI + +1504474Henry DatynerPolish classical violinist and orchestra leader who lived in England. +Leader of the [a=Royal Liverpool Philharmonic Orchestra] and [a=Royal Philharmonic Orchestra] during the 1940s/1950sNeeds Votehttps://www.the-paulmccartney-project.com/artist/henry-datyner/https://www.imdb.com/name/nm7824493/Henry DatnerLondon Philharmonic OrchestraThe Chitinous EnsembleRoyal Philharmonic OrchestraPhilharmonia OrchestraRoyal Liverpool Philharmonic Orchestra + +1505242Anna PyneClassical flutist.CorrectBournemouth Symphony Orchestra + +1505243Andriy ViytovychАндрій ВійтовичUkrainian classical violist, and Professor of Viola. Born on January 14, 1971 in Krementz, Ukraine. +In 1996, he came to London, England and joined the [a=London Symphony Orchestra] as Co-principal Viola and in 2000, he was appointed Principal Viola of the [a=Orchestra Of The Royal Opera House, Covent Garden]. He has also played principal viola with many orchestras including the [a=BBC Symphony Orchestra], the [a=Scottish Chamber Orchestra], the [a=English Sinfonia], and the [a=London Sinfonietta]. Professor of Viola at the [l290263].Needs Votehttps://www.facebook.com/Andriy-Viytovych-492356407579935/https://www.linkedin.com/in/andriy-viytovych-0a0533102/https://www.youtube.com/channel/UCWVpXDZUFnXyHmfbyFocOyAhttps://open.spotify.com/artist/7g7eiQkL4UGi42itZoXis3https://music.apple.com/gb/artist/andriy-viytovych/250906726https://www.roh.org.uk/people/andriy-viytovychhttps://www.rcm.ac.uk/strings/professors/details/?id=01646https://aims.cat/aims-string-academy/faculty/andriy-viytovych/https://www.naxos.com/person/Andriy_Viytovych/47215.htmhttp://www.nsou.com.ua/soloists/Vitovich_Andriy.htmlAndrei VijtouitchAndrei VitovichAndreij VijovitchAndreij VitovichAndriy VivtovychLondon Symphony OrchestraBBC Symphony OrchestraLondon SinfoniettaOrchestra Of The Royal Opera House, Covent GardenScottish Chamber OrchestraEnglish SinfoniaLondon Symphony Orchestra StringsThe John Wilson OrchestraMoonwindsTurner Ensemble + +1505246Sarah EwinsBritish violinist, and tutor, born in 1968. +She graduated from [l305416] in 1989. In 2002, she joined the [a=Hallé Orchestra] as Associate Leader. Assistant Leader of the [a=English Sinfonia]. Founder member of [b]Hallé Soloists[/b]. Violin tutor for the [a861263]. +Wife of [a=Timothy Pooley].Correcthttps://open.spotify.com/artist/7hZw6qEx97Jo89pJ9X7dONhttps://www.pleyelensemble.com/about-us/musicians/sarah-ewins-violin/https://maslink.co.uk/client-directory?client=EWINS2&amp%3Binstrument=cello1&cv=1https://www.nyo.org.uk/profiles/45/team_viewhttps://www.naxos.com/person/Sarah_Ewins/47214.htmHallé OrchestraPhilharmonia OrchestraEnglish SinfoniaThe Pleyel Ensemble + +1506186Richard AylwinViolinist.Needs VoteBBC Symphony Orchestra + +1506190Alexander CattarinoSince 1970 continuo player and solo harpsichordist of the Slovak Chamber Orchestra, performances with the Slovak Philharmonic, Košice State Philharmonic, Slovak Sinfonietta Žilina, Weimar Chamber Orchestra and Zlin Philharmonic Orchestra. He has recorded a lot of concerts and arias and melodies as solo pianists and also with orchestra. He was playing as pianist in several luxury hotels at Canarian Islands and Spain in last years and played famous melodies for listening.Needs Votehttp://www.hc.sk/src/interpret.php?lg=sk&oid=133 (in czech language)http://www.klavirista.bmp.sk/stranka/englishA. CattarinoAlexander Catterinoアレキサンダー・カタリノSlovak Chamber Orchestra + +1506226Milan BrunnerMilan BrunnerSlovak flutistNeeds VoteM. BrunnerCapella Istropolitana + +1506227Ivan SéquardtClassical oboistNeeds Votehttps://ameropa-chamber-music-academy.org/ivan-sequardt/Ivan SequardtThe Czech Philharmonic OrchestraSlovak Chamber OrchestraCollegium Musicum Pragense + +1506229Gabriela KrčkováGabriela Krčková née KolářováCzech oboe player, illustrator, member and manager of Musica Bohemica. + +Born May 9, 1954 (former Czechoslovakia). Wife of [a=Jaroslav Krček]. Needs VoteG. KrčkováGabriela KrckovaGabriela KrckováCapella IstropolitanaSlovak Chamber OrchestraMusica BohemicaNovák Trio + +1506411Maldwyn DaviesBritish tenor vocalist.Needs VoteDaviesM. DaviesThe English Baroque Soloists + +1506412Elisabeth PridayBritish soprano vocalist, born in 1955.Needs VoteE. PridayE.PridayElizabeth PridayPridayThe Tallis ScholarsThe Monteverdi ChoirDeller Consort + +1506567Javier BenetJavier José Benet MartínezSpanish percussion player (tympani, marimba...) + +Javier Benet compiled studies of percussion and piano in Valencia. He is professor of percussion of the Superior Conservatory of Music of Madrid. He is a soloist with the RTVE Symphony Orchestra. +Director of the percussion group Classroom 44. Together with Juan G. Ivorra, he directs the International Percussion Encounters that have been held annually for six summers in Xixona (Alicante). +His interpretive work ranges from early music (Grupo [a4254165], directed by [a2257894]) to contemporary music (various performances and recordings of current authors), jazz (First Prize for Best Soloist in the Festival of Jazz of Madrid in 1984). +Needs VoteBenetJ. BenetJavier Benet MartínezOrquesta Sinfónica de RTVEPro Musica Antiqua de Madrid + +1506712Dominique TirmontEdmond René Tirmontb.: January 21, 1923 (Paris, France) +d.: August 10, 2002 (Paris, France) + +French actor and singer. He's the father of [a=Frédérique Tirmont].CorrectD. TirmontDominique ThirmontTirmont + +1507176Edmund SchuëckerAustrian harpist and composer, born 16 November 1860 in Vienna, Austria and died 9 November 1911 in Kreuznach, Germany.Needs Votehttps://adp.library.ucsb.edu/names/109783Edmund SchuckerEdmund SchueckerSchuëckerThe Philadelphia OrchestraGewandhausorchester LeipzigStaatskapelle DresdenChicago Symphony OrchestraPittsburgh Symphony Orchestra + +1507644Ernst HintzeGerman chorus master and [i]Kapellmeister[/i] (* 20 April 1893 in Freyburg an der Unstrut, German Empire; † 18 April 1965 in Berlin, Germany).Needs Votehttps://de.wikipedia.org/wiki/Ernst_Hintzehttps://www.deutsche-digitale-bibliothek.de/item/V5FPVFJJ5PHOYFGXDRUDFI22XF7JGFLLErnst HinzeProf. Ernst HinzeChor der Staatsoper Dresden + +1508048John ColianniJohn Kelly Colianni(January 7, 1962 – November 28, 2023) was an American jazz pianist. Needs Votewww.http://johncolianni.comhttps://en.wikipedia.org/wiki/John_Coliannihttps://www.imdb.com/name/nm14460197/https://pressofatlanticcity.com/colaianni-john-kelly/article_e9b279ed-93bc-5cd2-ab47-4a811c809837.htmlColianniJohn ColliainniLionel Hampton And His OrchestraHarry Allen QuartetJohn Colianni TrioJohn Colianni QuintetMel Torme And His All-Star QuintetThe John Colianni Sextet + +1508049Neil SwainsonCanadian jazz bassist, born 15 November 1955 in Victoria, British Columbia, CanadaNeeds VoteN. SwainsonNeil SwaisonNeil SwansonSwainsonSwansonThe George Shearing QuintetGeorge Shearing TrioFree Trade (2)The Brian Dickinson QuintetThe Ed Bickert TrioOrhan Demir TrioJon Ballantyne TrioNeil Swainson QuintetSteve Houghton QuintetThe Rob McConnell Jive 5Andre White BandPeter Leitch TrioThe Walter Norris TrioPat LaBarbera QuartetIan McDougall QuintetKirk MacDonald Jazz OrchestraTrevor Giancola TrioRyga Rosnes QuartetThe Ian McDougall Big BandJMOGPat LaBarbera / Kirk MacDonald QuintetBernie Senensky QuintetPat LaBarbera QuintetGap Mangione QuintetChris Mitchell QuintetCanadian Jazz CollectiveBrad Turner QuintetWoody Shaw & Joe Farrell QuintetKevin Dean/PJ Perry QuintetBernie Senensky Quartet + +1508473Don BoydUS Jazz trombonist of the swing era. Don't confuse with the New Zealander trombonist [a=Don Boyd (3)].Needs VoteHarry James And His OrchestraHarry James & His Music Makers + +1508487Carl BergAmerican jazz trumpeter.Needs VoteHarry James And His OrchestraLes Brown And His OrchestraBoyd Raeburn And His OrchestraHarry James & His Music Makers + +1508530Justus GrimmJustus Grimm (born 1970 in Hamburg) is a German cellist and professor for violoncello at the Royal Conservatory Antwerp since 2008.Needs VoteOrchestre Du Théâtre Royal De La Monnaie + +1508692Gaudia GeijsenMezzo-soprano/alto vocalist.Needs Votehttp://www.finaltango.eu/GAUDIA.htmGaudia GeysenGaudie GeysenNederlands Kamerkoor + +1508792Klaus SchöppGerman flutistNeeds VoteBerliner Sinfonie OrchesterunitedberlinModern Art Sextet + +1508985Giovanni RiccucciItalian classical clarinettist, active from 1990.CorrectOrchestra Del Maggio Musicale Fiorentino + +1509445Pascal MoraguèsFrench clarinetist, born in 1963.Needs Votehttps://www.academie-villecroze.com/en/young-talents/teachers/pascal-moraguesMoraguèsP. MoraguesPascal MoraguesOrchestre National De FranceOrchestre De ParisThe Mullova EnsembleQuintette Moraguès + +1510100Maire JoalaVocalist.Needs VoteM. JoalaEstonian Philharmonic Chamber Choir + +1510101Külli SelkeVocalist.Needs VoteEstonian Philharmonic Chamber Choir + +1510102Elmo TiisvaldTenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +1510103Meeli KallastuSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +1510104Annely SarvSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +1510107Anne LassmannSoprano vocalistNeeds VoteEstonian Philharmonic Chamber Choir + +1510115Rain ViluViolist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraString Quartet Noble Four + +1510116Tõnu JõesaarTõnu JõesaarCellist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraTallinn Baroque EnsembleString Quartet Noble Four + +1510125Martti MägiMartti MägiViolist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraTallinn Baroque EnsembleTallinna Keelpillikvartett + +1510128Kaido SussBassoon and Harp player.Needs VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +1510129Kirti-Kai LoorandViolist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +1510917Jacques GasselinViolinistCorrectJack GasselinJacques 'Jack' GasselinJaques GasselinHarry James And His OrchestraGordon Jenkins And His Orchestra + +1511694Åsa HallerbäckÅsa Maria Hallerbäck ThedéenSwedish classical violinist, born December 3, 1959.Needs VoteÅsa H. ThedéenÅsa Hallerbäck ThedéenÅsa Hallerbäck-ThedéenSveriges Radios SymfoniorkesterDrottningholms BarockensembleNationalmusei Kammarorkester + +1513547Margaret TaitClassical cellist.Needs VoteMargaret J. TaitSan Francisco SymphonyAurora String Quartet + +1513548Sharon GrebanierClassical violinist.Needs VoteSan Francisco SymphonyAurora String Quartet + +1513632Virginie ConstantFrench classical cellist, born in Charleville-Mézières.Needs Votehttps://www.facebook.com/virginie.constant.96Trio ElégiaqueOrchestre De Chambre Pelléas + +1513716Arnold BoldenJazz drummerNeeds VoteArnold "Scrippy" BoldenFats Waller & His Rhythm + +1513769Eliane LublinFrench operatic soprano, born 10 April 1938 in Paris, France and died 1 May 2017.CorrectElaine LublinÉliane Lublin + +1514109Matthieu Gauci-AncelinFrench flutist, born 1981 in Paris, France.Needs Votehttp://www.artsglobal.org/en/people/matthieu-gauci-ancelin/Orchester Der Komischen Oper BerlinGustav Mahler Jugendorchester + +1514110Guilhaume SantanaFrench bassoonist, born 1982 in Toulouse, France.Needs VoteSantanaSinfonia VarsoviaMahler Chamber OrchestraDeutsche Radio Philharmonie Saarbrücken KaiserslauternOrchestra Mozart + +1514270Vladislav LavrikRussian trumpeter (classical and jazz perfomances) and conductor.Needs Votehttps://musicaviva.ru/en/about/solisty/vladislav-lavrikВ. ЛаврикRussian National OrchestraEstonian Festival Orchestra + +1514279Coleman Hawkins All StarsNeeds Major ChangesColeman HawkinsColeman Hawkins & All StarsColeman Hawkins & His All StarsColeman Hawkins All-StarsColeman Hawkins And His All StarColeman Hawkins And His All StarsColeman Hawkins And His All-StarsColeman Hawkins And His OrchestraThe Coleman Hawkins All StarsMiles DavisMax RoachColeman HawkinsJ.J. JohnsonOscar PettifordClyde HartCurly RussellAl HaigDenzil BestBennie GreenHank JonesCharlie ShaversKai WindingNelson BoydJack LesbergEdmond HallFats NavarroBudd JohnsonJohn Collins (2)Cecil PayneTiny GrimesChuck WayneShadow WilsonHoward Johnson (6)Marion DiVetaMarion de Vega + +1514389André Rieu (2)Andries Antonie RieuDutch conductor of the Maastrichts Stedelijk Orkest (1949-1955) and the Limburgs Symfonie Orkest (1955-1980). +Born in Haarlem, May 12, 1917, died in Amsterdam, February 4, 1992. + +Father of [a287377].Needs Votehttps://nl.wikipedia.org/wiki/Andr%C3%A9_Rieu_sr.https://ru.wikipedia.org/wiki/%D0%A0%D1%8C%D1%91,_%D0%90%D0%BD%D0%B4%D1%80%D0%B5_(%D1%81%D1%82%D0%B0%D1%80%D1%88%D0%B8%D0%B9)A. RieuAndre RieuAndré RieuAndré Rieu (Vater)André Rieu sr.André de RieuRieu + +1514516Tom Hall (6)Tom Hall is an American violinist. He was a member of the [a837562] from 1970 to 2006.Needs VoteCincinnati Symphony OrchestraChicago Symphony OrchestraThe United States Army Strings + +1514571Xenia SchindlerSwiss classical harpist.CorrectX. SchindlerHespèrion XXCollegium Novum Zürich + +1514926Clarence Williams' Jazz KingsNeeds VoteClarence William's Jazz KingsClarence Williams & His Jazz KingsClarence Williams And His Jazz KingsClarence Williams Jazz KingsClarence Williams' Jazz BandShreveport SizzlersColeman HawkinsRussell ProcopeBuster BaileyPrince RobinsonEd AllenEd AndersonEd CuffeeBuddy ChristianCyrus St. ClairArville HarrisClarence WilliamsBenny MortonWilbur De ParisBingie MadisonHenry JonesGene RodgersGeorge StaffordFred SkerrittBill DillardRichard "Dick" FullbrightBill BeasonGeechie FieldsWard PinkettGoldie LucasBen WhittedLeroy Harris (2) + +1514928Ben WhittedAlto saxophonist and clarinetist, active 1921-1943.Needs VoteB. WhitetBen WhitetBen WhitettBen WhitterBen WhittetCharlie Johnson & His OrchestraClarence Williams' Jazz KingsEubie Blake And His OrchestraDixie Washboard BandCharlie Johnson & His Paradise BandMary Stafford & Her Jazz Band + +1515372Yrjö WeijolaGeorg (Yrjö) Hugo Karl WeilinA pen name of author Yrjö Weilin (August 12, 1875 Jyväskylä - December 5, 1930 Helsinki), a Finnish businessman, author, publisher and translator.Needs Votehttps://fi.wikipedia.org/wiki/Yrj%C3%B6_Weilin [fi]Y. Weijola + +1515376Veikko Antero KoskenniemiVeikko Antero Koskenniemi (8 July 1886 - 4 August 1962) was a Finnish poet born in Oulu.Needs Votehttps://adp.library.ucsb.edu/names/103271KoskenniemiKoskennniemiV-A KoskenniemiV. A KoskenniemiV. A. KoskenniemiV. A.KoskenniemiV.A, KoskenniemiV.A. KoskenniemiV.A.KoskenniemiVA. KoskenniemiVeikko Koskenniemi + +1515384Paavo CajanderPaavo Emil CajanderPaavo Cajander (24 December 1846 — 14 June 1913) was a Finnish poet and translator.Needs Votehttp://en.wikipedia.org/wiki/Paavo_Cajanderhttps://adp.library.ucsb.edu/names/100949CajanderKajanderP. CajanderP.Cajander + +1515682Brass Of The London Philharmonic OrchestraNeeds VoteLondon Philharmonic Orchestra + +1516244Paul GuerreroMexican-American jazz drummer and educator based out of Dallas, Texas.Needs VotePaul GuererroPaul Guerrero Jr.Woody Herman And His OrchestraThe North Texas State University Lab BandWoody Herman And The Swingin' HerdThe Fred Raulston QuartetThe Paul Guerrero Quintet1:00 O'Clock Lab Band + +1516246Kirby StewartBassist, joined Woody Herman in 1976, died in 2008.Needs VoteKerby StewartStan Kenton And His OrchestraThe Woody Herman Big BandJohn & Jerry Case SextetThe Fred Raulston QuartetThe N'awlins Gumbo KingsThe Paul Guerrero Quintet + +1517083Bert CobbBrass bass playerNeeds VoteB. CobbCobbKing Oliver & His Dixie SyncopatorsKing Oliver's Jazz Band + +1517091Billy PaigeClarinetist and saxophone player active in Chicago in the 1920's. Played with includes [a=King Oliver] and [a=Kid Ory].Needs VoteB. PaigeBill PaigeBilly PagePaigeWilliam "Billy" PaigeKing Oliver & His Dixie SyncopatorsKing Oliver's Jazz Band + +1517095Lizzie MilesElizabeth Mary LandreauxUS American blues singer. Paternal half sister of [a2631903] and [a312977]. She was born Elizabeth Mary Landreaux, married J. C. Miles, who died in 1918, and later had the married name Pajaud. +Born: March 31, 1895 in Faubourg Marigny, New Orleans, Louisiana. +Died: March 17, 1963 in New Orleans, Louisiana. +Needs Votehttps://64parishes.org/entry/lizzie-mileshttps://adp.library.ucsb.edu/names/106415(Lizzie) MilesL. MilesLizzieLizzy MilesMilesJasper Davis & His OrchestraLizzie Miles And Her New Orleans Rhythm BoysLizzie Miles And Her Creole Jazz Hounds + +1517575Mariusz TonderaClassical cellistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +1518103Gus HorsleyEarly jazz banjo player & songwriterNeeds VoteG. HorsleyGuy HorsleyHersleyHorselyHorsleyPerry Bradford Jazz PhoolsPorter Grainger's Jubilee Singers + +1518733Irving IlmerAmerican violinist and violist, born in Vienna, Austria and died in December 1997 in Evanston, Illinois.Needs VoteChicago Symphony OrchestraSan Antonio Symphony OrchestraThe Fine Arts QuartetCanadian Chamber EnsembleBerkshire String Quartet + +1518736Leonard SorkinAmerican violinist and conductor (* 12 January 1916 in Chicago, Illinois, USA; † 07 June 1985 in Milwaukee, Wisconsin, USA).Needs Votehttps://en.wikipedia.org/wiki/Leonard_Sorkinhttps://studsterkel.wfmt.com/programs/leonard-sorkin-discusses-his-career-violinist-chicago-symphony-orchestra-fine-arts-quartetSorkinChicago Symphony OrchestraThe Fine Arts QuartetMusical Arts Symphony Orchestra Of New YorkThe Sorkin Strings + +1518738George SopkinAmerican cellist, born 1914 and died 28 October 2008 in in Surry, Maine.Needs Votehttps://en.wikipedia.org/wiki/George_SopkinChicago Symphony OrchestraThe Fine Arts QuartetPro Arte QuartetThe New England Piano Quartette + +1518754William HoughtonBritish trumpet player.Needs Votehttps://web.archive.org/web/20130505211707/http://billhoughton.moonfruit.com/Bill Houghtonウィリアム・ホートンBBC Symphony OrchestraRoyal Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsPhilip Jones Brass EnsembleThe London Gabrieli Brass EnsembleLocke Brass Consort + +1518755Susan LeadbetterClassical oboistNeeds VoteThe Academy Of St. Martin-in-the-Fields + +1519501Sally PendleburyBritish classical cellistCorrectSally J. PendleburySally Jane PendleburySally PendelburyThe Chamber Orchestra Of EuropeFitzwilliam String QuartetMobius (7)Vellinger Quartet + +1519502Maya IwabuchiMaya IwabuchiJapanese classical violinist, concertmaster, and violin tutor. Born in 1967 in Tokyo, Japan. +She attended the [l118141] and the [l290263]. In 1987, she relocated to London, England. In 1994, she became Leader of the [a=Philharmonia Orchestra]. She then became member of [a=Mobius (7)]. In May 2011, she became Joint Leader at the [a=Royal Scottish National Orchestra] and ended her 18 year tenure with the Philharmonia Orchestra in 2012. Violin tutor at [l516659]. +Wife of [a=Matthias Feile].Needs Votehttps://open.spotify.com/artist/1mHXJ3KopezUbcW6KeLT47https://music.apple.com/us/artist/maya-iwabuchi/29344946https://www.feenotes.com/database/artists/iwabuchi-maya-1967-present/https://www.rsno.org.uk/people/maya-iwabuchi-leader/https://www.rcs.ac.uk/staff/maya-iwabuchi/https://hellensmusic.com/artists/maya-iwabuchi/#more-83https://stonerecords.co.uk/artist/maya-iwabuchi/London Symphony OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraMobius (7) + +1519903Raymond FonsèqueFrench jazz trombonist and tuba player. +Born: November 27, 1930 in Paris, France. +Died: November 19, 2011 in Evreux, France.Needs VoteFonsèqueR. FonsèqueRaymond FonsequeGrand Orchestre De L'OlympiaJacques Denjean Et Son OrchestreJacques Hélian Et Son OrchestreRaymond Fonsèque Original BandAndré Réwéliotty Et Son OrchestreArsène Hic Et Son Orchestre D'Empoisonneurs DiplômésFonsèque & Co Jazz-Band + +1520056Charles Olivieri-MunroeCanadian conductor based in Teplice, Czech Republic.Needs Votehttps://www.olivieri-munroe.comCharles Olivieri MunroeOlivieri-MunroeSlovak Radio Symphony OrchestraSeveročeská Filharmonie Teplice + +1520624Herbert DuftClassical contrabass player.Needs VoteHerbert LuftГерберт ДуфтSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterBach-Collegium MünchenMünchner Nonett + +1520626Walter NothasGerman cellist, born in Munich, Germany.Needs VoteW. NothasWalther NothasSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterThe Sinnhoffer QuartetMünchner Streichtrio + +1520629Matthew JennejohnCanadian wind instrumentalistNeeds VoteMatt JennejohnMatthew JennenohnConstantinopleEnsemble CapriceMontreal BaroquePacific Baroque OrchestraLe Nouvel OpèraTheatre Of Early MusicLes Boréades De MontréalBoston Early Music Festival OrchestraClavecin en concertArion Orchestre BaroqueOrchestre symphonique de la Vallée-du-Haut-Saint-LaurentLes Voix BaroquesTrinity Baroque OrchestraLa Bande Montreal BaroqueSacabucheLes Sonneurs (2) + +1520635Daniel Taylor (3)Classical countertenor and founder of [a=Theatre Of Early Music]Needs Votehttps://danieltaylor.ca/Daniel TaylorTaylorLes Arts FlorissantsCollegium VocaleBach Collegium JapanEnsemble Da SonarTheatre Of Early Music + +1520788Julian PodgerEnglish classical tenor vocalist and choral conductor. +Director of [a=Trinity Baroque] ensemble. +Needs VotePodgerGabrieli ConsortWinchester Cathedral ChoirThe Tallis ScholarsThe Monteverdi ChoirLondon BaroqueThe Harp ConsortEnsemble Clément JanequinCappella PratensisGothic Voices (2)Musica FreybergensisTrinity BaroqueArs Nova CopenhagenAtalanteMusicke & MirthThe Choir Of Trinity College, Cambridge + +1520789Timothy SymonsAlto vocalist, early music and church choir music editor, and liner notes writer.Needs Votehttps://uk.linkedin.com/in/tim-symons-49357b16The Choir Of Christ Church Cathedral + +1520790Steven HarroldClassical high tenor vocalist.Needs Votehttps://www.thetallisscholars.co.uk/steven-harroldhttps://www.bach-cantatas.com/Bio/Harrold-Steven.htmStephen HaroldStephen HarroldSteve HarroldGabrieli ConsortThe Hilliard EnsembleMagnificatThe Cambridge SingersThe Tallis ScholarsSt. John's College ChoirThe SixteenCollegium VocaleThe Binchois ConsortThe Harp ConsortThe English Concert ChoirTaverner ConsortPolyphonyThe Clerks' GroupGothic Voices (2)The Cardinall's MusickThe Choir Of Westminster AbbeySeicentoAlamireThe Gonzaga Band + +1522155Gregory KnowlesJohn Gregory KnowlesEnglish composer and multi-disciplinary musician for ancient and contemporary instruments such as percussion, dulcimer, cimbalom, etc.Needs Votehttp://gregoryknowles.com/?page_id=64Craig KnowlesGreg KnowlesThe Medieval Ensemble of London + +1522284Armando GhitallaArmando GhitallaAmerican orchestral trumpeter (June 1, 1925 – 14 December 2001). + +He studied at the Juilliard School, and performed in the New York City Opera, the New York City Ballet, and the Houston Symphony. He was a member of the Boston Symphony Orchestra for twenty eight years, and served as principal trumpet (succeeding Roger Voisin) for fifteen. He was also active as a soloist, and was the first trumpeter to record the Trumpet Concerto in E by Johann Nepomuk Hummel. + +Ghitalla was born in Alpha, Illinois, and his family moved to Knoxville, Illinois, shortly after he was born. At age 8, he decided he wanted to play the trumpet. He graduated from Knoxville High School in 1942 and entered the U.S. Navy a year later. He played trumpet in a Navy dance band and never went overseas. After the war, he used the G.I. Bill to enroll in Juilliard School of Music in New York City. + +He served on the faculties of Boston University, the New England Conservatory, the Hartt School of Music at the University of Hartford, the Tanglewood Music Center and the University of Michigan. At the time of his death, he was on the faculty of the Shepherd School of Music at Rice University. + +A CD of his final recordings was released by Bridge Records in August 2007. It includes concertos by William P. Perry, Amilcare Ponchielli, Johann Melchior Molter and Oskar Böhme. + +Mr. Ghitalla was a great mentor to many trumpeters including Tim Morrison, Rolf Smedvig, Peter Chapman, Wynton Marsalis, Randell Croley, and countless others. Mr. Ghitalla's unique way of single tonguing was called "anchor tonguing" and was very similar to the tonguing style called "K Tongue Modified" by Claude Gordon and used by Herbert L. Clarke. +Needs Votehttp://www.trumpetguild.org/news/news01/ghitalla.htmhttp://en.wikipedia.org/wiki/Armando_GhitallaA. GhitallaArmand GhitalaG. ArmandoBoston Symphony OrchestraBoston Symphony Chamber PlayersNew England Brass Ensemble + +1522745Michel DelannoyFrench classical double-bass playerNeeds VoteM. DelannoyLa Grande Ecurie Et La Chambre Du Roy + +1522898Laurie McGawAmerican trumpet player.Needs VoteSan Francisco Symphony + +1522900Vincent Grande(b. Nov. 13, 1902, New York, NY; d. Nov. 18 1970, New York, NY), trombonist. Recorded with [a3003013] in 1922, played in [a342496] and with [a205328] in 1925. Joined [a341395] in August 1926 and stayed until July 1927, when he was replaced by [a229639]. Returned to the Whiteman organization 1933-34. After this, he became a business agent for AFM Local 802.Needs VoteGrand eGrandeV. GrandePaul Whiteman And His OrchestraBennie Krueger's OrchestraOriginal Indiana FiveBailey's Lucky Seven + +1522946Allan Jones (5)Theodore Allen Jones American tenor vocalist and actor. Jones starred in many film musicals during the 1930s and 1940s. +Born on 14.10.1907 in Old Forge, Pennsylvania, USA - Died on 27.06.1992 in New York, New York, USA + +Needs Votehttp://www.bach-cantatas.com/Bio/Jones-Allan.htmhttps://en.wikipedia.org/wiki/Allan_Jones_(actor)https://adp.library.ucsb.edu/names/104938A. JonesAlan JonesAllen JonesWoody Herman And His OrchestraWoody Herman & The HerdAllan Jones With Orchestra + +1523138Ronald NorwoodRonald L. NorwoodBorn: 1951.Needs VoteRon NorwoodThe Jungle BandThe G.A.'sThe Ron Norwood Review + +1523609Judith SiirilaJudith Siirila PaskowitzSoprano singer.Needs Votehttp://www.judithsiirila.net/Judith Siirila PaskowitzJudy SiirilaJudy SurilaThe Roger Wagner ChoraleThe Sally Stevens Singers + +1524344Tony ParentiAnthony Parenti.American jazz clarinetist, saxophonist (alto & baritone) and composer. + +Born : August 06, 1900 in New Orleans, Louisiana. +Died : April 17, 1972 in New York City, New York. + +Worked with : Papa Jack Laine, Johnny Dedroit, Nick LaRocca, Benny Goodman, Fred Rich, Muggsy Spanier (& others), and in his own bands. +Needs Votehttps://adp.library.ucsb.edu/names/109869A. ParentiAnthony ParentiParentiT. ParentiT.ParentiTony ParentyEddie Condon And His OrchestraHenry "Red" Allen And His OrchestraTony Parenti And His New OrleaniansTony Parenti's RagtimersTony Parenti's All-StarsGeorge Brunies And His Jazz BandAnthony Parenti And His Famous Melody BoysTony Parenti And His Jazz-StarsTony Parenti And His Deans Of DixielandBilly Artz & His OrchestraTony Parenti's RagpickersParenti's Liberty SyncopatorsTony Parenti's New OrleaniansTony Parenti And His Downtown Boys + +1524422Kristina BlaumaneKristīne BlaumaneLatvian classical cellist, born July 26, 1975 in Riga.Needs VoteKristine BlaumaneKristíne BlaumaneKristīne BlaumaneLondon Philharmonic OrchestraKremerata BalticaAmsterdam SinfoniettaSpectrum Concerts BerlinTrio Palladio + +1524424Alexei SarkissovАлексей СаркисовRussian classical cellist and cello teacher, residing in London, England, UK. Born in 1974 in Moscow, Soviet Union. +In 1995, he won a scholarship to study at the [l=Royal College of Music, London]. In 1997, he moved to [l=The Guildhall School Of Music & Drama]. Since then, professional engagements have taken him all over Russia, former Soviet Union, Europe and as far as New Zealand. In 2004, he became a member of [b]Il Quartetto Casorati[/b] string quartet, based in Turin, Italy. Alexei is member of [b]Kandinsky Piano Trio[/b] and [b]Gnessin Piano Trio[/b] and Guest Principal Cellist with [a=Amsterdam Sinfonietta].Needs Votehttps://www.facebook.com/alexei.sarkissovhttps://www.musicteachers.co.uk/teacher/1499f6bf99ce1b81d5e7http://www.morgensternsdiaryservice.com/WebProfile/sarkissov_a_6031.shtmlhttp://homecoming.ru/people/sarkisovAlexei SarkisovAlexi SarkissovАлексей СаркисовLondon Symphony Orchestra + +1524488Bob MabaneUS jazz saxophonist from the swing-era. + +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/328749/Mabane_BobJay McShann And His Orchestra + +1524490Orville "Piggy" MinorUS jazz trumpeter from the swing-era (1917-1999) +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/331849/Minor_Orvillehttps://www.allmusic.com/artist/orville-minor-mn0001769182https://jdisc.columbia.edu/person/orville-minorO. MinorOrville MinorJay McShann And His Orchestra + +1524496Harry Ferguson (2)Harold FergusonAmerican jazz tenor saxophonist and arrangerNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/315074/Ferguson_HarryHarold FergusonJay McShann And His Orchestra + +1524498Harold BruceAmerican jazz trumpet playerNeeds Votehttps://www.allmusic.com/artist/harold-bruce-mn0001317169/creditshttps://www.huntington.org/verso/2020/08/interpreting-music-harold-bruce-forsythehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/305908/Bruce_HaroldJay McShann And His Orchestra + +1524719Leonid BolotineAmerican violinist, guitarist, mandolinist and guitar teacher, born 1901 in Poltava, Ukraine and died in November 1988 in New York, New York.Needs VoteLeonid Bolotine & OrchestraLeonid Bolotine And His OrchestraLeonid Bolotine And OrchestraSan Francisco SymphonyNew York Sinfonietta + +1524797Robert PursePercussionist.Needs VoteRoyal Scottish National Orchestra + +1525516Paule PréfontaineNeeds VoteBergen Filharmoniske Orkester + +1526185Emmanuelle GalClassical soprano / mezzo-soprano vocalistNeeds VoteLes Arts FlorissantsEnsemble Vocal Sagittarius + +1526193Thierry PeteauFrench classical tenor & bass vocalistNeeds VoteThierry PéteauCollegium VocaleEnsemble Vocal SagittariusEnsemble Musica NovaEnsemble Scandicus + +1526197Eva GodardFrench cornett & recorder instrumentalistNeeds Votehttps://eva-godard.fr/biographie/Eva GodartLe Concert SpirituelLes Arts FlorissantsEnsemble Vocal SagittariusLe Poème HarmoniqueLa Chapelle RhénaneSyntagma AmiciLes MeslangesEcco La MusicaLes Goûts Réunis + +1527331John CanarinaJohn Canarina, born on May 19, 1934, in New York City, is a distinguished conductor, educator, and author. He studied at the Juilliard School, earning a Bachelor of Arts in 1957 and a Master of Science in 1958. His career includes serving as an assistant conductor for the New York Philharmonic under [a=Leonard Bernstein] from 1961 to 1962, and as the music director of the Jacksonville Symphony Orchestra from 1962 to 1969. He also conducted the Seventh Army Symphony Orchestra during his military service in Germany. +Canarina has contributed significantly to the field of music education, holding positions such as visiting professor at Oberlin Conservatory and professor and director of orchestral studies at Drake University. He is also an accomplished author, with works like Uncle Sam's Orchestra: Memories of the Seventh Army Symphony and Pierre Monteux: Maître. His book The New York Philharmonic: From Bernstein to Maazel provides an in-depth look at the orchestra's history during pivotal years.Needs Votehttps://journal.juilliard.edu/journal/canarina-mines-50-years-new-york-philharmonic-historyFrancisco TeatroNew York Philharmonic + +1527447Martin ÖdlundSwedish classical percussionistCorrectGöteborgs Symfoniker + +1528151Federico AgostiniItalian violinist, born 1959 in Trieste, Italy.Needs VoteFrederico AgostiniPasquale Pellegrinoフェデリコ・アゴスティーニThe Academy Of St. Martin-in-the-FieldsI MusiciQuintetto Fauré Di Roma + +1528199Frances TietovHarpistNeeds VoteSaint Louis Symphony Orchestra + +1528200Saint Louis Symphony ChorusNeeds Major ChangesChorusChorus,St. Louis Symphony ChorusThe Saint Louis Symphony ChorusWomen Of The Saint Louis Symphony ChorusWomen's Voices Of The Saint Louis Symphony Chorus + +1528201Jacques IsraelievitchFrench violinist, born 6 May 1948 in Cannes, France and died 5 September 2015 in Toronto, Canada.Needs Votehttp://www.israelievitch.com/Jacques IsraelivitchSaint Louis Symphony OrchestraChicago Symphony OrchestraToronto Symphony OrchestraNew Arts Trio + +1528202John Sant'AmbrogioAmerican cellist, born 12 June 1932 in Glen Ridge, New Jersey. He's the father of [a3745862].Needs Votehttps://en.wikipedia.org/wiki/John_Sant%27AmbrogioJohn Saint'AmbrogioJohn Sant' AmbrogioBoston Symphony OrchestraSaint Louis Symphony Orchestra + +1529359Roger MeakinNeeds Major ChangesMeakiMeakinMealinR. Meakin + +1529447Steven McGuinnessNeeds VoteMac & Taylor + +1529453Peter Taylor (5)Needs VoteMac & Taylor + +1530049Nancy GassnerVocalistNeeds VoteNancy ClaytonNancy Gassner ClaytonNancy Gassner-ClaytonThe Roger Wagner Chorale + +1531128Fanny CoupéFrench violist.Needs VoteF. CoupeFannyFanny CoupeFanny Coupe AltisteQuatuor AloysiaOrchestre Philharmonique De Radio FranceQuatuor De Minuit + +1531266Alan StringerBritish classical trumpeter, and teacher. Born 8 December 1928 in Ancoats Hospital, Manchester, England - Died 8 September 2012 in Nerac, Lot-et-Garonne, France. +He started as a cornetist and at the age of sixteen, he played Principal Cornet of the [a=Besses O' Th' Barn Band]. From 1946 to 1952, he was with the [a546443]. Alan was Principal Trumpet of the [a=Royal Liverpool Philharmonic Orchestra] from 1953 to 1993, apart from a year (1960-1961) as Principal with the [a=London Symphony Orchestra]. He taught at the [l459222]. After retirement he moved to France and lived in Nerac, between Bordeaux and Toulouse. He was a MBE recipient.Needs Votehttps://open.spotify.com/artist/5VXKWbE5ERO6oCpebxls4Dhttps://music.apple.com/us/artist/alan-stringer/4784941http://ojtrumpet.net/artist/stringer/https://www.trumpetherald.com/forum/viewtopic.php?t=117531https://www.trumpetherald.com/forum/viewtopic.php?t=117568https://trumpetguild.net/content/itg-news/300-in-memoriam-alan-stringer-mbe-1928-2012StringerЭлан СтрингерLondon Symphony OrchestraThe Central Band Of The Royal Air ForceRoyal Liverpool Philharmonic OrchestraBesses O' Th' Barn bandThe Liverpool Brass Ensemble + +1532292Bläservereinigung Der Wiener PhilharmonikerAustrian wind ensemble of the [a754974].CorrectBläser Der Wiener PhilharmonikerBläser Solisten Der Wiener PhilharmonikerBläser-Vereinigung Der Wiener PhilharmonikerComplesso Di Fiati Dell'orchestra Filarmonica Di ViennaComplesso Di Fiati Della Filarmonica Di ViennaConjunto De Vientos De La Orquesta Filarmónica De VienaEnsembla À Vents Des Wiener PhilharmonikerEnsemble Des Instruments À Vent De L'orchestre Philharmonique De VienneEnsemble À Vent Des Wiener PhilharmonikerGrupo Filarmonico De Sopro De VienaMember Of Vienna Wind GroupMembers Of The Vienna Philharmonic Wind GroupMitglieder Der Bläservereinigung Der Wiener PhilharmonikerThe Vienna Philharmonic Wind GroupVienna Philharmonic Wind EnsembleVienna Philharmonic Wind GroupVienna Philharmonic Wind-GroupWind Group Of The Vienna Philharmonic OrchestraWind Group Of VPOGerhard TuretschekVolker AltmannAlfred PrinzRoland BergerDietmar ZemanLeopold WlachWalter LehmayerGottfried BoisitsCamillo OehlbergerGünter LorenzChristian CubaschKarl MayrhoferFranz BartosekHans KameschHans ReznicekKarl ÖhlbergerHans HadamowskyLeopold KainzOtto SchiederWiener Philharmoniker + +1532297Karl SteinsGerman oboist, born 22 May 1919 in Hanover, Germany and died 22 April 2009 in Berlin, Germany.CorrectКарл ШтайнсBerliner Philharmoniker + +1532570Bobby Tee (2)Robert Darren TisseraNeeds Votehttp://www.soundcloud.com/rob-tisseraBobby TRob TisseraCircle CityMegadrive (3)P.P. Orange + +1533112Gerald KulinnaGerman tuba playerNeeds VoteStaatskapelle Berlin + +1533124Hans-Joachim ScheitzbachGerman cellist, born 1939 in Woltersdorf, Germany.Needs VoteHans Joachim ScheitzbachStaatskapelle DresdenOrchester Der Komischen Oper Berlin + +1533473Ed Brown (4)American jazz saxophonistCorrecthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/201156/Brown_Eddie_EdEdward BrownJimmie Lunceford And His Orchestra + +1533663Karl KiffeKarl Herman KiffeAmerican jazz drummer, born July 6, 1927 in Los Angeles, California. +Needs Votehttps://adp.library.ucsb.edu/names/325222Carl KiffeK. KiffeWoody Herman And His OrchestraJimmy Dorsey And His OrchestraGeorgie Auld And His OrchestraWoody Herman And The Fourth Herd + +1533844Jiří Krejčí (2)Jiří KrejčíCzech classical oboist, also plays English horn.Needs VoteJ. KrejcíJ. KrejciJiri KrejciJiri KrejcíJiri KrejčiJirí KrejcíЙ. КрейчиSuk Chamber OrchestraSlovak Chamber OrchestraCollegium Musicum PragenseArs Rediviva EnsembleCzech Nonet + +1534003Lotta SuvantoFinnish violinist, specialized in baroque violin, currently residing in Freiburg, Germany. Also a member of Finnish Baroque Orchestra (FIBO).Needs VoteCollegium VocaleFreiburger BarockorchesterKammerorchester BaselSikiätMain-Barockorchester FrankfurtEcho Du DanubeOrchester Der J.S. Bach StiftungLa Chapelle RhénaneGaechinger Cantorey + +1534310Marion MorganMarion Swiresb.: December 14, 1923 + +American singer during the big band era, who sang in the band of Harry James from 1946 to 1949 before embarking on a solo career that flourished throughout the early 1950s.Correcthttps://en.wikipedia.org/wiki/Marion_MorganMarian MorganHarry James And His Orchestra + +1534403Hugo RiesenfeldAustrian composer and violinist active in the United States. Born January 26, 1879 in Vienna, Austia-Hungarian Empire, died September 10, 1939 in Los Angeles, USA. +Starting from 1890, he was active as violinist and joined the [a754974] in 1901. In 1907, he emigrated to New York City. After working for some orchestras, he evolved into songwriting for cinematic productions around 1915. Eventually, he started to write compositions for Broadway productions and as one of the first as scores for movies. He later left New York City and went to Hollywood.Needs Votehttps://adp.library.ucsb.edu/names/105681https://de.wikipedia.org/wiki/Hugo_RiesenfeldH. RiesenfeldRiesenfeldWiener Philharmoniker + +1535516Thomas PrévostClassical flutistNeeds VoteThomas PrevostOrchestre Philharmonique De Radio France + +1535517Emmanuel CurtFrench percussionist +Past member of the [a448007] and [a2800794]. Principal Percussion of the [a=Philharmonia Orchestra] and [a=Orchestre National De France]. Head of Percussion at the London Performing Academy of Music.Needs Votehttps://www.linkedin.com/in/manu-emmanuel-curt-97453b5a/?originalSubdomain=frhttps://philharmonia.co.uk/bio/emmanuel-curt/https://www.infoconcert.com/artiste/emmanuel-curt-85233/concerts.html?menu=biographie&no_mobile=1https://festival-salon.fr/fr/artistes/36-emmanuel-curthttps://www.louvre.fr/jean-frederic-neuburger-bertrand-chamayou-pianos-emmanuel-curt-daniel-ciampolini-percussionsManu CurtOrchestre Des Concerts LamoureuxPhilharmonia OrchestraOrchestre National De FranceOrchestre Philharmonique De Radio FranceParis Chamber Orchestra0 (5) + +1535518Orchestre Philharmonique De Radio FranceFrench orchestra founded 1937 and run by French broadcasting service [l=Radio France]. + +1937-1944 - Named [b][a=Orchestre Radio-Symphonique][/b] or [a=Orchestre Radio - Symphonique De Paris] +1944-1964 - [b][a=Orchestre Philharmonique De La R.T.F.][/b] (Radiodiffusion-Télévision Française) +1964-1976 - Renamed [b][a=Orchestre Philharmonique De L'ORTF][/b] (Office de la Radiodiffusion-Télévision Française) +1976-1989 - Renamed [b][a=Nouvel Orchestre Philharmonique De Radio France][/b] +1989- Renamed [b][a=Orchestre Philharmonique De Radio France][/b] + +Main conductors +1937-1960 [a1816349] +1960-1964 [a1816349] +1964 [a1816349] +1965-1970 [a=Charles Bruck] +1976-1981 [a=Gilbert Amy] +1981-1984 [a=Emmanuel Krivine] +1984-2000 [a=Marek Janowski] +2000- [a=Myung-Whun Chung]Needs Votehttps://www.maisondelaradio.fr/concerts-classiques/orchestre-philharmonique-de-radio-francehttps://en.wikipedia.org/wiki/Orchestre_philharmonique_de_Radio_Francehttps://fr.wikipedia.org/wiki/Orchestre_philharmonique_de_Radio_FranceEnsemble Du Nouvel Orchestre PhilharmoniqueFrancuski Nacionalni Radio OrkestarFrench National Radio OrchestraFrench Radio OrchestraFrench Radio Philharmonic OrchestraFrench Radio-Philharmonic OrchestraL'Orchestre Radio-Symphonique De ParisLes Solistes De L'Orchestre Philharmonique De Radio FranceNouvel Orchestre PhilharmoniqueNouvel Orchestre Philharmonique De Radio FranceNouvel Orchestre Philharmonique De Radio-FranceNouvel Orchestre Philharmonique Et Chœurs De Radio FranceNueva Orquesta Filarmonica de Radio FranceO.R.T.F. Symphony OrchestraOPRFORTF Orquesta Nacional De La Radio FrancesaOrchestra Filarmonica Di ParigiOrchestra Of French RadioOrchestra Radio ParisOrchestra Radio-ParisOrchestre De Radio FranceOrchestre Lyrique De L'ORTFOrchestre National De L'O.R.T.F.Orchestre National De L'ORTFOrchestre National De L'Office De Radiodiffusion-Télévision FrançaiseOrchestre National De L'Office De Radiodiffusion-télévision FrançaiseOrchestre National De La RDFOrchestre National De La Radio-Diffusion FrançaiseOrchestre National De La RadiodiffusionOrchestre National De La Radiodiffusion FrancaiseOrchestre National De La Radiodiffusion FrançaiseOrchestre National De Radio FranceOrchestre National de Radio FranceOrchestre National de l'O.R.T.F.Orchestre National de la Radiodiffusion FrancaiseOrchestre National de la Radiodiffusion FranceOrchestre National de la Radiodiffusion FrançaiseOrchestre Phil. de Radio-FranceOrchestre Philarmonique De La RTFOrchestre Philharmonie De La RTFOrchestre PhilharmoniqueOrchestre Philharmonique De FranceOrchestre Philharmonique De L'O.R.T.F.Orchestre Philharmonique De L'ORTFOrchestre Philharmonique De L'Office De Radiodiffusion Television FrançaiseOrchestre Philharmonique De L'Office de Radiodiffusion-Television FrançaiseOrchestre Philharmonique De L'OrtfOrchestre Philharmonique De La R.T.F.Orchestre Philharmonique De La R.T.F.*Orchestre Philharmonique De La RTFOrchestre Philharmonique De L’O.R.T.F. De ParisOrchestre Philharmonique De Radio-FranceOrchestre Philharmonique De-Radio FranceOrchestre Philharmonique NationalOrchestre Philharmonique de L'O.R.T.FOrchestre Philharmonique de L'ORTFOrchestre Philharmonique de l' O.R.T.F.Orchestre Philharmonique de l'O.R.T.FOrchestre Philharmonique de l'O.R.T.F.Orchestre Philharmonique de l'ORTFOrchestre Philharmonique de l'Office de la Radiodiffusion-Television FrancaiseOrchestre Philharmonique de la RTFOrchestre Philharmonique, Maitrise Et Chœurs De La R.T.F.Orchestre Radio Symphonique, ParisOrchestre Radio Television FrançaiseOrchestre Radio- Symphonique ParisOrchestre Radio-Symphonique De ParisOrchestre Radio-Symphonique de Paris of the Radiodiffusion FrancaiseOrchestre SymphoniqueOrchestre de Radio-Télévision FrancaiseOrchestre radio symphonique de la RTFOrquesta De La Radiodifusion Nacional FrancesaOrquesta De La Radiotelevision FrancesaOrquesta Filarmónica de Radio FranceOrquesta Nacional De La Radio Difusion FrancesaOrquesta Radio-Sinfónica de ParísParis Radio OrchestraPhilharmonic Orchestra Of Radio FrancePhilharmonic Orchestra Of The ORTFRDFRDF OrchestraRSORSO ParisRadio France PORadio France Philharmonic OrchestraRadio-France Philharmonic OrchestraRadio-Symphonie-Orchester ParisSymphony Orchestra Of The O.R.T.FThe France National Radio Symphony OrchestraThe French Radio Symphony OrchestraThe Orchestra National De La Radio Diffusion Francaiseフランス国立放送フィルハーモニー管弦楽団フランス国立管弦楽団フランス放送フィルフランス放送フィルハーモニックフランス放送フィルハーモニー管弦楽団フランス放送新フィルハーモニー交響楽団フランス放送管弦楽団Orchestre Radio - Symphonique De ParisOrchestre Philharmonique De L'ORTFOrchestre Philharmonique De La R.T.F.Floriane BonanniMartine SchoumanMaurice AndréVirginie BuscailAurélia Souvignet-KowalskiJean-Guihen QueyrasJean-Pascal PostJean-Philippe KuzmaDaniel VagnerAnne VilletteMarc DesmonsFrédéric MaindiveBenoît MarinMagali MosnierDavid GuerrierAdrien PerruchonMidori GotoGérard BoulangerJean-Claude AuclinFrançoise Perrin-FeylerBruno NouvionAyako TanakaNadine PierreEmmanuel AndréCéline PlanesEmmanuelle BlancheJulien HardyJulien DabonnevilleNicolas BaldeyrouHélène DevilleneuveMarie Emeline CharpentierJuan Fermin CiriacoBéatrice GaugueFlorent BrannensIsabelle SouvignetSophie GroseilMartin BlondeauAnne-Michèle LienardAmandine LeyStéphane PartChristophe DinautMarion GaillantFanny CoupéThomas PrévostEmmanuel CurtEric LevionnoisRenaud MuzzoliniFrancis PetitGilles MercierRaphaël LemaireGinette DoyenClémentine MeyerJacques MaillardCatherine CournotHélène ColleretteJean-François DuquesnoyCyril BaletonVéronique Terlier EngelhardCécile PeyrolJean-Baptiste LeclèreJérôme VoisinChristophe GauguéMartin GrubingerAlain ManfrinThomas TercieuxKarine Jean-BaptisteOlivier DoiseRenaud GuieuNels LindebladDaniel RaclotJean-Baptiste BrunierConstantin BogdanasGabriel BenloloBenoît GaudeletteAna MilletJeremy PasquierAntoine GanayeJohannes GrossoMarie-Laurence CamilleriPascal OddonNicolas LamotheStéphane CoutazJustine CailleEdouard MacarezStéphane BridouxSvetlin RoussevFranz MassonNicolas Saint-YvesJean-Pierre OdassoPatrice BuecherAntoine DreyfussMarie-Josée RitchotNicolas TulliezBoris TrouchaudLucas HenriYann DubostAnne-Sophie NevesHugues AnselmoAdrien BellomJérémie MaillardCyril CiabaudRachel GiveletLouise GrindelJérôme PingetEtienne DurantelArmance QuéroAurore DoiseJean-Claude GengembreGuy ComentaleJean-Christophe LamacqueAymeric FournesYves BellecCatherine de VencayFlorence OryFrançois LaprevoteMichaela SmoleanAlexandre CollardAnne-Marie GayCécile AgatorAlexandre BatyClémence DupuyHugues ViallonEun Joo Lee (2)Sophie PradelMathilde CalderiniSavitri GrierJavier RossettoSylvain DelcroixXavier AgoguéDavid MaquetManuel MetzgerMichel Rousseau (4)Stéphane SuchanekFlorian SchuegraffWladimir WeimerBruno FayolleMathilde KleinElodie GuillotLilian HarismendyVictor BourhisMarta FossasWei-Yu ChangRodolphe ThéryArno MadoniJi-Yoon ParkMireille JardonClara Lefèvre-Perriot + +1535519Eric LevionnoisClassical cellistNeeds Vote作曲 カミーユ・サン=サーンスOrchestre Philharmonique De Radio France + +1535520Renaud MuzzoliniPercussionist.Needs VoteOrchestre Philharmonique De Radio France + +1535523Francis PetitClassical Percussionist and Jazz DrummerNeeds VoteOrchestre Philharmonique De Radio FranceTrombone Force 5 + +1535872Paul SchöfflerPaul SchöfflerGerman operatic bass-baritone (* 15 September 1897 in Dresden, German Empire; † 21 November 1977 in Amersham, United Kingdom).Needs Votehttps://en.wikipedia.org/wiki/Paul_Sch%C3%B6fflerhttps://de.wikipedia.org/wiki/Paul_Sch%C3%B6fflerhttps://www.musiklexikon.ac.at/ml/musik_S/Schoeffler_Paul.xmlP. SchofflerP. SchöfflerPaul SchoefflerPaul SchofflerPaul SchroefflerPaul SchœfflerSchoefflerSchofflerSchöfflerパウル・シェフラー + +1536501Mechtild StarkClassical harpsichordist.Needs VoteMechthild Stark + +1536502Juditha HaeberlinGerman violinistNeeds VoteJuditha HeberlinEnsemble ResonanzMusikFabrikAmsterdam Bach SoloistsEnsemble Modern OrchestraOrkest Amsterdam DramaFour Roses (2) + +1536503Siebe HenstraClassical keyboardist.Needs Votehttp://www.siebehenstra.nl/La Petite BandeDe Nederlandse BachverenigingOrchestra Of The 18th CenturyRadio Filharmonisch OrkestL'Armonia SonoraMonteverdi Ensemble AmsterdamLes Buffardins + +1536504Karel Van SteenhovenDutch flutist & recorder player, born in 1958.Needs VoteAmsterdam Loeki Stardust Quartet + +1536506Paul LeenhoutsDutch Recorder instrumentalist and composer, born in 1957.Needs VoteAmsterdam Loeki Stardust Quartet + +1536509Marieke SchneemannClassical flutist.Needs Votehttp://www.mariekeschneemann.comMarieke SchneemanSchneemannNederlands Blazers EnsembleFodor KwintetOrlando Quintet + +1536510Menno Van DelftClassical keyboard instrumentalist born 1963 in Amsterdam.Needs Votehttps://www.mennovandelft.com/Musica Ad RhenumMusica AmphionCantus Cölln + +1536512Krijn KoetsveldKrijn KoetsveldDutch Conductor and keyboard instrumentalist. Studied organ music and later on started to conduct and lead choirs. Became the conductor/leader of the [a=Nederlands Bach Ensemble]. After the bankruptcy of that Ensemble, he started the Nieuw Bach Ensemble. Also, he teaches and is giving workshops.Needs Votehttp://www.krijnkoetsveld.nlLe Nuove Musiche + +1536515Violetta LiebschClassical harpsichordist.Needs Vote + +1536670Elkanah SettleNeeds Major ChangesE. SettleSettle + +1536672John FeeneyAmerican double bassist.Needs Votehttp://johnfeeney.musicaneo.com/Feeney John JosephJohn Joseph FeeneyOrchestra Of St. Luke'sBrewer Chamber Orchestra + +1536759Liz MacCarthyClassical violinist.Needs VoteElisabeth MacCarthyLiz McCarthyLiz MccarthyThe Academy Of Ancient MusicCollegium Musicum 90New Dutch AcademyThe English Concert + +1538878Arne NilssonSwedish classical bassoonistNeeds VoteGöteborgs SymfonikerSvenska Serenadensemblen + +1538879Urban ClaessonBo Urban ClaessonSwedish classical clarinetist, born February 17, 1962. +He is married to [a253118].Needs VoteGöteborgs SymfonikerGageego!Artillerimusikkåren I GöteborgSvenska Serenadensemblen + +1538923SmashproofHip-Hop group from Auckland, New Zealand.Needs Votehttps://www.audioculture.co.nz/profile/smashproofhttp://www.twitter.com/smashproofMTChttp://www.facebook.com/smashproofofficialhttps://www.nzmusic.org.nz/artists/hip-hop/smashproof/Sid DiamondTyree TautogiaFred Fa'afou + +1538931Fred Fa'afouRapper from Auckland, New Zealand.CorrectF Fa'afouF. Fa'afouDeachSmashproof + +1538999Mineko YajimaJapanese professional violinist, who graduated from the [l477743] in New York City. Yajima also acts as concertmaster, performed on Broadway shows and was part of the [l453080]-orchestra backing the performance of [a10262].Needs Votehttps://duranduran.fandom.com/wiki/Mineko_YajimaMinako YajimaMineka YajimaNineko YajimaOrchestra Of St. Luke'sThe Prism OrchestraPrinceton University Chapel Camerata + +1539000Jon ManasseAn American clarinetist, Jon Manasse is a graduate of The Juilliard School, where he studied with David Weber. Mr. Manasse was a top prize winner in the Thirty-Sixth International Competition for Clarinet in Munich and the youngest winner of the International Clarinet Society Competition. Currently, he is an official “Performing Artist” of both the Buffet Crampon Company and Vandoren, the Parisian firms that are the world’s oldest and most distinguished clarinet maker and reed maker, respectively. Mr. Manasse is currently on the faculties of The Juilliard School,The Lynn Conservatory, and The Mannes School of Music. + +Jon Manasse and his Duo partner, the acclaimed pianist Jon Nakamatsu, serve as Artistic Directors of the Cape Cod Chamber Music Festival, an appointment announced during summer 2006.Needs Votehttps://jonmanasse.com/John ManasseJon A. ManasseOrchestra Of St. Luke's + +1539199Grady WattsGrady Watts, Sr..American jazz trumpeter and composer. +Born : June 30, 1908 in Texarkana, Texas. +Died : January 08, 1986 in Vero Beach, Florida. + +Grady played in “Casa Loma Orchestra” (1931-1942). He composed such songs as “Blue Champagne” and “Daddy’s Boy”. Needs Votehttps://en.wikipedia.org/wiki/Grady_Wattshttps://adp.library.ucsb.edu/names/114799G. WattsGradyGrady H. WattsH. Grady WattsWattsCasa Loma OrchestraGlen Gray & The Casa Loma Orchestra + +1539200Frank RyersonCredited as jazz trumpeter.Needs VoteE. RyersonF. RyersonFrank ReyersonReyersonRyersonJack Teagarden And His OrchestraGlen Gray & The Casa Loma Orchestra + +1539456Γιάννης ΠαπαγιάννηςClassical oboist and flautist.CorrectYannis PapayannisYiannis PapagiannisYiannis PapayanisYiannis PapayiannisΓ. ΠαπαγιάννηςLa Petite Bande + +1539523Dennis DotsonHouston, Texas jazz trumpeter. +Born : June 18, 1946 in Jacksonville, Florida. +Needs Votehttp://www.music.utexas.edu/directory/details.aspx?id=229https://www.facebook.com/dennis.dotson.7D. DotsonWoody Herman And His OrchestraWoody Herman & The New Thundering HerdWoody Herman & The Young Thundering HerdThe Woody Herman Big BandWoody Herman BandWoody Herman And The Thundering Herd + +1539845Natsumi WakamatsuJapanese classical violinist.Correct若松夏美La Petite BandeBach Collegium JapanOrchestra Of The 18th CenturyBoccherini QuartetEnsemble Explorations + +1539851Peter KooijPeter KooijDutch bass singer specialized in baroque music (born 1954 in Soest, Netherlands).Needs Votehttp://www.peterkooij.de/KooijKooyP. KooyPeter KooyPter Kooypeter KooyCollegium VocaleLa Chapelle RoyaleBach Collegium JapanEnsemble Vocal Européen De La Chapelle RoyaleSette Voci + +1539866Paul HerreraClassical Violin & Viol instrumentalist, native of Caracas, Venezuela. +In 2002 he founded the ensemble Anima Concordia with [a=Kaori Toda].Needs Votehttp://www.animaconcordia.com/#!paul-herrera/chdaHerreraLa Petite BandeBach Collegium JapanTelemann-Kammerorchester Michaelstein + +1540453Alan HarversonAlan Harverson (16 August 1922 – 31 January 2006) was an organist, pianist and teacher.Needs VoteBBC Symphony Orchestra + +1541099Catherine ArgallMonique DomartNeeds VoteArgallC. ArcallC. ArgaiiC. ArgalC. ArgallC. ArgalleCatherine ArgalK. Argall + +1541244David Thomas (17)David Claude ThomasDavid Claude Thomas was a US contrabass player (1943 - 1988), born in Detroit and settled in Spain in 1969, credited on Spanish flamenco/jazz/rock releases from the 70s/80s as contrabass player and arranger for [a=Vlady Bas], [a=Claudina y Alberto Gambino], [a=Joaquín Sabina], [a=Alameda], [a=Manzanita], [a=El Luis]... +Needs VoteD. ThomasDave ThomasDavid TomasOrquesta Sinfónica de RTVE + +1541657Arnold GrossiAmerican violinist.CorrectThe Philadelphia Orchestra + +1541662Luis BiavaColombian born American violinist, conductor, professor (Colombia, 1934 - Florida, 2019), he arrived in the USA in the 1960s and joined the National Symphony in Washington DC in 1963, then the Philadelphia Orchestra in 1968, founded the [a6745144] in the 2000s, retired in 2014 -- father of cellist and conductor [a7385701]Correcthttps://alumni.temple.edu/s/705/alumni/16/interior_1col_breadcrumb_nav_social.aspx?sid=705&gid=1&sitebuilder=1&pgid=11654&cid=22055&ecid=22055&ciid=89291&crid=0The Philadelphia OrchestraNational Symphony OrchestraThe Temple University OrchestraThe Philarte QuartetOrquesta Sinfonica Nacional de ColombiaTrío Biava Uribe + +1541663Louis LanzaAmerican violinistCorrectLou LanzaThe Philadelphia Orchestra + +1542331Julie MondorCellist.Needs VoteLe Concert SpirituelConcerto Köln + +1542639Floyd CooleyAmerican tuba player, born in 1948.Needs VoteFloyd O. CooleySan Francisco SymphonyChicago Symphony Orchestra + +1543091Max Von SchillingsGerman conductor, composer and theatre director, born 19 April 1868 in Düren, Germany and died 24 July 1933 in Berlin, Germany. He was married to [a3795243].Needs Votehttps://en.wikipedia.org/wiki/Max_von_Schillingshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/105821/von_Schillings_MaxDr. Max von SchillingsMax V. SchillingsMax von SchillingsProf. Dr. Max Von SchillingsProfessor Dr. Max Von SchillingsProfessor Dr. Max von SchillingsSchillingSchillingsvon Schillings + +1543351Malta (3)丸田良昭 (Maruta Yoshiaki) Japanese jazz saxophonist. Born September 19, 1949. Needs Votehttp://www.malta-jazzclub.comMALTAMaltaYoshi MaltaYoshi MarutaYoshiaki MaltaLionel Hampton And His OrchestraMalta Hit & RunSuper 4 + +1543620Gonzalo MorenoSpanish pianist, born 1966 in Madrid, Spain.Needs VoteOslo Filharmoniske OrkesterOslo Philharmonic Chamber Group + +1543641John AltwergerReal name alias of jazz saxophonist Georgie Auld. b 19 May 1919 in Toronto, Canada, d 8 January 1990 Palm Springs, CANeeds VoteAltwergerBen AltwergerJ. AltwergerJack AltwergerGeorgie AuldBunny Berigan & His OrchestraWoody Herman And His OrchestraMetronome All StarsBenny Goodman SextetBillie Holiday And Her OrchestraArtie Shaw And His OrchestraBenny Goodman And His OrchestraPete Rugolo OrchestraGeorgie Auld And His OrchestraThe Buddy Bregman OrchestraLarry Sonn OrchestraGeorgie Auld's All-StarsBuddy DeFranco And His OrchestraMaynard Ferguson OctetGeorgie Auld And His All-StarsGeorgie Auld And His SextetAuld-Hawkins-Webster SaxtetBunny Berigan's Rhythm-MakersThe Georgie Auld QuintetSarah Vaughan And Her OrchestraBuddy Rich All StarsBunny Berigan And His MenGeorgie Auld And His Hollywood All StarsSteve Allen QuartetBuddy DeFranco And The All-StarsVanderbilt All StarsThe Band That Plays The Blues + +1543787Theodor ScheidlTheodor Scheidl, born August 3, 1880 in Vienna, Austria, died April 22, 1959 in Tübingen, Germany, was an Austian opera baritone and voice teacher. He recorded for Deutsche Gammophon/Polydor (1920–1930) and for Parlophon (1924). +Needs Votehttps://en.wikipedia.org/wiki/Theodor_Scheidlhttps://de.wikipedia.org/wiki/Theodor_ScheidlScheidl + +1545829Martin Parry (2)Classical flute player. +He was Principal Flute in the [a=London Philharmonic Orchestra] for ten years from 1974 and Sub-Principal Flute in [a212726] (1986-2008).Needs Votehttps://broadbent-dunn.com/biographies/parry-martin/https://www.the-paulmccartney-project.com/artist/martin-parry/Martin PerryLondon Symphony OrchestraLondon Philharmonic Orchestra + +1546131Robert Edward PringJazz trombonistNeeds VoteBob PringBob Pring Jr.Bobby PringRobert PingRobert PringLes Brown And His Band Of RenownPete Rugolo OrchestraMembers Of The Benny Goodman OrchestraSi Zentner & His Dance BandMarty Grosz And His Blue AngelsBuck Clayton And His Swing BandDick Meldonian And His OrchestraLoren Schoenberg And His Jazz Orchestra + +1546325Anders Nyman (2)Swedish classical violinistNeeds VoteStockholm Session StringsSveriges Radios Symfoniorkester + +1546330Åsa Karlsson (2)Swedish classical violistNeeds VoteAsa KarlssonSveriges Radios SymfoniorkesterKungliga Hovkapellet + +1546598Rolf QuinqueGerman trumpeter, born 20 June 1927 in Brehna, Germany. +He received his musical education at the Leipzig Music Academy. His most important orchestral posts have been with the Leipzig Gewandhaus Orchestra and the Munich Philharmonic. A much sought after Bach trumpeter since his student days, he has toured extensively as soloist in baroque, classical and contempory trumpet works with great success. Frequent appearances at such significant music festivals as those in Vienna, Bregenz, Salzburg, Berlin and performances and records, many of them featuring world premieres of modern trumpet concerti, have further helped to make Mr. Quinque's name known throughout the music world. +In order to devote himself completely to his solo work, Rolf Quinque resigned his post as solo trumpeter of the Munich Philharmonic and accepted a call to teach at that city's Richard Strauss Conservatory. + +(from the liner notes of "Virtuose Trompetenkonzerte aus Barock und Gegenwart" LP RBM Records 1976) +Needs VoteR. QuinqueRalf QuinqueRolf QuiniqueMünchner PhilharmonikerGewandhausorchester LeipzigMünchener Kammerorchester + +1546940Leon ElkinsJazz trumpeter and orchestra leader. Needs Votehttps://adp.library.ucsb.edu/index.php/talent/detail/140118/Elkins_Leon_conductorL. ElkinsLouis Armstrong And His Sebastian New Cotton OrchestraLeon Elkin's Orchestra + +1547133Susan WilloughbyAmerican bassoonist, born in 1938.Needs VoteSan Francisco SymphonyBaltimore Symphony Orchestra + +1547775Ron VincentDrummer.Needs Votehttp://www.ronvincentmusic.com/Ron "Timber" VincentGerry Mulligan QuartetMarco Di Marco TrioDavid Lahm QuartetTed Rosenthal TrioKerry Strayer SeptetThe Michael Treni Big BandSean Smith QuartetPassage (8) + +1548002Denis StevensDenis William StevensBritish conductor, musicologist specialising in early music, professor of music and radio producer (High Wycombe, 2 March 1922–1 April 2004). Co-founder with [a441528] of [a39874].Needs Votehttp://en.wikipedia.org/wiki/Denis_Stevenshttp://www.baroquemusic.org/DenisStevens.htmlD. StevensProfessor Denis StevensStevensThe Ambrosian SingersThe Ambrosian Consort + +1548139Arthur BervAmerican horn player, born 1906 in Poland and died 1992 in the United States.CorrectArthur BeryThe Philadelphia OrchestraNBC Symphony OrchestraThe Cleveland Orchestra + +1548143Harry GlantzAmerican trumpet player, born 1 January 1896 in Ukraine and died 18 December 1982 in Bay Harbor, Florida.Needs Votehttps://adp.library.ucsb.edu/names/109188The Philadelphia OrchestraNBC Symphony OrchestraNew York PhilharmonicSan Francisco SymphonyGreen Bros. Xylophone Orchestra + +1548620Pierre-Augustin Caron De BeaumarchaisFrench playwright, watchmaker, inventor, musician, diplomat, fugitive, spy, publisher, horticulturalist, arms dealer, satirist, financier,and revolutionary, born 24 January 1732 in Paris, France, died 18 May 1799 in Paris, France.Correcthttp://en.wikipedia.org/wiki/Pierre_BeaumarchaisBeaumarchaisBeaumarchisDe BeaumarchaisP. A. BeaumarchaisP. A. BeaumarchaiseP. A. C. de BeaumarchaisP. BeaumarchaisP. BeumarchaisPierre Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisPierre Augustin De BeaumarchaisPierre BeaumarchaisPierre Caron De BeaumarchaisPierre-Augustin BeaumarchaisП. БомаршеПьер Огюстен Карон Де Бомарше + +1548878John ChurchillHarpsichordist.Needs VoteThe Academy Of St. Martin-in-the-Fields + +1548882Gerald JarvisCanadian classical violinist & violist, and violin teacher. Born 19 April 1930 in Vancouver, British Columbia, Canada - Died 15 January 1996 in Chautauqua, New York, USA. +He studied violin in Vancouver (1935-1948) and played in the [a=Vancouver Symphony Orchestra] in 1947. In 1948, he won a scholarship to study at the [l527847]. He remained in England for several years, playing first with the [a=Philharmonia Orchestra], and from 1952 to 1954 with the [a=Orchestra Of The Royal Opera House, Covent Garden]. In 1954, he went to Brussels to study, and the same year was concertmaster with [b]Martha Graham's Dance Company Orchestra[/b] on its first European tour. In 1954, he returned to Canada to play first violin with the Vancouver Symphony Orchestra, remaining until 1959. In 1959, he returned to England, as Co-Principal Violin of the [a=London Symphony Orchestra], remaining until 1962. During this period, he became a founding member of [a=The Academy of St. Martin-in-the-Fields]. He was concertmaster from 1963 to 1968 of the [a=Bournemouth Symphony Orchestra], and joint concertmaster from 1969 to 1972 of the [a=London Philharmonic Orchestra]. In 1973, he returned to the Vancouver Symphony Orchestra as concertmaster, earning the nickname, 'the face of the VSO'. In 1987, he became concertmaster of the [a=Osaka Philharmonic Orchestra], and in 1990, took on duties as concertmaster of the [a=Tokyo Metropolitan Symphony Orchestra]. He was also concertmaster of the [b]Chautauqua Symphony Orchestra[/b]. +His name has been added to the 'Starwalk at the Orpheum' in Vancouver. +He was married to mezzo-soprano [a=Delia Wallis].Needs Votehttps://bcentertainmenthalloffame.com/jarvis-gerald/https://www.thecanadianencyclopedia.ca/en/article/gerald-jarvis-emcLondon Symphony OrchestraLondon Philharmonic OrchestraVancouver Symphony OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsBournemouth Symphony OrchestraOsaka Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenTokyo Metropolitan Symphony OrchestraThe London Strings + +1549498Terje TerasmaaClassical percussionist.Needs Votehttps://et.wikipedia.org/wiki/Terje_TerasmaaT.TerasmaaaТ. ТерасмааEstonian National Symphony Orchestra + +1550340Harold GoltzerAmerican classical (and jazz) bassoonist. + +Born: November 15, 1915 in New York City, New York. +Died: December 04, 2004 in Carbondale, Colorado.Needs VoteH. GoltzerHarold GoldserHarold P. GoltzerNew York PhilharmonicThe Alec Wilder Octet + +1550545Paige BrookAmerican flutist, born 24 March 1920 and died 9 December 1999.Needs VoteP. BrookP. BrooksNew York PhilharmonicNew York Philomusica Chamber EnsembleThe Philharmonic Chamber Ensemble + +1550564Deborah ReederAmerican cellist, born in 1950.Needs VoteThe Philadelphia OrchestraPenn Contemporary PlayersThe Philadelphia TrioThe Amado String Quartet + +1550851Daniel GélinDaniel Yves Alfred GélinFrench actor, director and screenwriter, born May 19, 1921 in Angers, Maine-et-Loire, France, died November 29, 2002 in Paris, France. Father of [a=Maria Schneider (2)]. He was married to [a=Danièle Delorme] from 1945 to 1954 (divorced).Correcthttp://en.wikipedia.org/wiki/Daniel_GélinD. GelinLes Grosses Têtes + +1551508James MerrettJames Edward MerrettBritish classical double bass player, and Professor of Double Bass. Born in 1912 in London, England, UK. - Died in 1974. +Original Principal Bass of the [a=Philharmonia Orchestra]. Former Principal Bassist of the [a=London Philharmonic Orchestra]. Co-principal Bass of the [a=BBC Symphony Orchestra]. Former member of the [a=London Symphony Orchestra] (1946-1947). Professor of Double Bass at [l305416].Needs Votehttps://open.spotify.com/artist/1gIWjU8LFEq6YFTTwDn5dyhttps://www.bassdiscography.com/performer/merrett-james-edward-1912/Edward MerrettJ. Edward MerretJ. Edward MerrettJ. Edward MerrittJ. W. MerrettJ.-Edward MerretJames E. MerrettJames Edward MerretJames Edward MerrettJames Merret, Sr.James Merrett, SrJames Merrett, Sr.James MerrittJames W MerrettJames W. MerrettJames W. MerrittLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraPhilharmonia OrchestraThe Virtuosi Of EnglandSinfonia Of LondonThe Virtuoso EnsembleLondon Baroque EnsembleThe Wind Virtuosi Of England + +1551880Tom SkogSwedish classical hornistNeeds VoteSveriges Radios SymfoniorkesterMilitärmusikkåren i Uppsala + +1551881Ola KarlssonOla Gunnar KarlssonSwedish cellist, professor and conductor, born September 25, 1952.Needs Votehttps://sv.wikipedia.org/wiki/Ola_Karlsson_(cellist)Sveriges Radios SymfoniorkesterNya Berwaldtrion + +1552019John Thomas (20)John L. ThomasAmerican jazz trombonist, born September 18, 1902 in Louisville, Kentucky, died November 7, 1971 in Chicago, Illinois. +Thomas played with [a=Louis Armstrong] (Thomas replaced [a=Kid Ory]) and [a=Erskine Tate], among others.Needs Votehttps://nkaa.uky.edu/nkaa/items/show/1855https://www.allmusic.com/artist/john-thomas-mn0001308943J. ThomasJohnny ThomasThomasLouis Armstrong & His Hot SevenFranz Jackson And His Original Jass All-Stars + +1552349Carl Von GaragulyGaraguly KárolyHungarian violinist and conductor, born 28 December 1900 in Budapest, Hungary and died 4 October 1984 in Stockholm, Sweden. +Chief Conductor of [a=Stockholms Konsertförenings Orkester] from 1942 to 1953. +After his death, his ashes were brought back to Budapest, as he had wanted.Needs Votehttps://hu.wikipedia.org/wiki/Garaguly_K%C3%A1rolyhttps://en.wikipedia.org/wiki/Carl_von_GaragulyCarl GaragulyCarl GargulyBergen Filharmoniske Orkester + +1553426Marga SchimlGerman contralto and vocal coach, born 29 November 1945 in Weiden in der Oberpfalz, Germany.Correcthttp://www.margaschiml.deMarga SchimelSchiml + +1553821Hans GanschAustrian trumpeter, born 13 April 1953 in Kirnberg an der Mank, Austria. He's the older brother of [a1783223].Needs VoteGanschHans GaschOrchester Der Wiener StaatsoperWiener PhilharmonikerBruckner Orchestra LinzVienna BrassEnsemble KontrapunkteGerman BrassEnsemble PrismaPro BrassArt Of Brass Vienna + +1553946Rainer KeuschnigPiano playerCorrectKeuschnigProf. Rainer KeuschnigRainer KeuschniggEnsemble Kontrapunkte + +1553950Karl SteiningerAustrian trumpeter.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerVienna Brass + +1553961Meinhart NiedermayrAustrian flutist, born 20 August 1941 in Vienna, Austria and died 19 September 2016. He was the son of [a2003567].Needs VoteМайнхарт НидермайерOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble KontrapunkteWiener Oktett + +1553963Peter PechaAustrian violist, born 22 March 1947 in Vienna, Austria.Needs VoteP. PechaPechaWiener PhilharmonikerPhilharmonia Schrammeln WienEnsemble Kontrapunkte + +1553965Peter SpitzlAustrian bassoonist.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerEnsemble Kontrapunkte + +1554201Andrea Leone TottolaItalian librettist (c.1775 – 1831)Needs Votehttps://en.wikipedia.org/wiki/Andrea_Leone_TottolaA. L. TottolaA.L. TottolaLeone Andrea TottolaTottola + +1554202Matthew PolenzaniAmerican lyric tenor vocalist, born 1968 in Evanston, Illinois.Needs VotePolenzani + +1554203Adrian SâmpetreanRomanian opera singer (bass/baritone), born 1983 in Cluj-Napoca.Needs Votehttps://de.wikipedia.org/wiki/Adrian_S%C3%A2mpetreanAdrian Sampetrean + +1554204Cesare Della ValleNeeds Major ChangesValle + +1554205Ekaterina SiurinaЕкатерина СюринаRussian soprano born in Ekaterinburg (May 2, 1975), and studied at the Russian Academy of Theatre Arts in Moscow. Needs Votehttps://www.instagram.com/katcastronovo/http://ekaterinasiurina.com/SiurinaЕ. Сюрина + +1554206Gaetano RossiItalian writer and librettist (Verona, May 18, 1774 – Verona, January 25, 1855).Correcthttp://en.wikipedia.org/wiki/Gaetano_RossiG. RossiRossiRozziГ. Росси + +1554208Roberto AbbadoItalian conductor, born 30 December 1954. Son of pianist [a=Marcello Abbado] and nephew of conductor [a=Claudio Abbado].Needs Votehttps://www.robertoabbado.com/https://en.m.wikipedia.org/wiki/Roberto_AbbadoAbbadoR. Abbado + +1554209Giuseppe BardariNeeds Major ChangesBardariG. BardariGuiseppe Bardari + +1554211Elīna GarančaElīna GarančaLatvian mezzo-soprano, born 16 September 1976 in Riga, Soviet Union (today Latvia). She's married to [a=Karel Mark Chichon]. +Needs Votehttps://www.elinagaranca.com/https://www.facebook.com/elinagarancahttps://twitter.com/elinagarancahttps://www.instagram.com/elina.garanca/https://www.youtube.com/user/ElinaGarancaVEVOhttps://en.wikipedia.org/wiki/El%C4%ABna_Garan%C4%8DaElina GarancaElina GarančaElīna GarancaGarancaGaranča + +1554675Peter Harvey (2)UK classical trombonist, conductor and teacher. +He studied at the [l290263]. He has been a member of the [a=Philip Jones Brass Ensemble], [a=The English Baroque Soloists], the [a=Philharmonia Orchestra], [a=The London Gabrielli Brass Ensemble], and the [a=Orchestra Of The 18th Century]. He runs and directs [b]Harvey's Brass[/b]. He has taught at the Royal College of Music.Needs Votehttps://www.feenotes.com/database/artists/harvey-peter/http://www.commonwealthresounds.com/wp-content/uploads/2015/01/The-Commonwealth-Bands-Together.pdfPeter HarceyGabrieli ConsortLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraThe New Jazz OrchestraCity Of London SinfoniaLondon BrassPhilharmonia OrchestraPhilip Jones Brass EnsembleThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Wind OrchestraEquale BrassOrchestra Of The 18th CenturyThe London Gabrieli Brass EnsembleLocke Brass ConsortKenny Wheeler Big Band + +1554740Andris NelsonsConductor, born 18 November 1978 in Riga, Latvia. +Music director of the [a395913] from 2014. +Was married to fellow Latvian and soprano [a5351393] from 2011 to 2018. Married to Alice (Heidler) Nelsons of Germany from 2019.Needs Votehttps://andrisnelsons.com/https://www.bso.org/conductors/andris-nelsons.asphttps://www.facebook.com/profile.php?id=100070249140693https://www.imdb.com/de/name/nm3899139/?reasonForLanguagePrompt=browser_header_mismatchhttps://en.wikipedia.org/wiki/Andris_Nelsonshttps://app.idagio.com/es/profiles/andris-nelsons/recordingsNelsonsBoston Symphony OrchestraCity Of Birmingham Symphony OrchestraGewandhausorchester LeipzigNordwestdeutsche PhilharmonieLatvijas Nacionālās Operas Orķestris + +1554772McHouston BakerMcHouston BakerAmerican jazz guitarist and singer, more known as Mickey "Guitar" Baker, widely held to be a critical force in the bridging of rhythm and blues and rock and roll.His broad session work included playing on numerous hit records on the Atlantic, Savoy, and King labels. +Born: October 15, 1925, Louisville, Kentucky, USA. +Died: November 27, 2012, Toulouse, France.Needs Votehttps://en.wikipedia.org/wiki/Mickey_BakerBakerGeorge BakerM. BakerMac Houston BakerMc Houston BakerMc. Houston BakerMcH. BakerMcHouston "Mickey" BakerMickey "Guitar" BakerMickey BakerS. GibsonThe Loop (3)Woody Herman And His OrchestraMickey & SylviaOrchestre Mickey BakerMickey Baker QuartetThe Woody Herman Big BandMickey & KittyWoody Herman And His Third HerdMickey Baker And His BandSam Price And His Texas BlusiciansMickey Baker's Soul SoundMickey 'Guitar' Baker & His House RockersBig Red McHouston OrchestraMickey Baker And His OrchestraMickey Et MoniqueMickey Baker Et Les MidnightersThe Mickey Baker Trio + +1555553Heinrich ForsterHeinrich Forster is a Swiss violist.Needs VoteBerner StreichquartettCamerata Bern + +1555723Christoph Brandt - LindbaumClassical horn & oboe instrumentalistNeeds VoteChristoph BrandtChristoph Brandt - LindenbaumChristoph Brandt-LindbaumChristoph Brandt-LindenbaumFrancy Boland And OrchestraMünchener Bach-OrchesterCollegium AureumMainzer Kammerorchester + +1556124Joela JonesAmerican pianist, organist, harpsichordist, celesta player, keyboardist and accordionist, born in Miami, Florida.Needs VoteThe Cleveland Orchestra + +1557875Renaud CapuçonFrench classical violinist, born 27 January 1976 in Chambéry, France. +Brother of [a2228580]Needs Votehttps://en.wikipedia.org/wiki/Renaud_Capu%C3%A7onCapuconCapuçonR. CapuçonRenaudRenaud Capuconルノー・カピュソンCapuçon Quartet + +1558092Ewald MarklAustrian producer and consultant for [l=Deutsche Grammophon], born 1938 in Vienna, Austria.CorrectDr. Ewald MarklMarklエーヴァルト・マルクル + +1558211Der Süddeutsche MadrigalchorGerman madrigal choir based in Stuttgart.Needs Votehttp://www.bach-cantatas.com/Bio/Suddeutscher-Madrigalchor.htmConsortium MusicumCoroCoro de Madrigalistas De Alemania Del SurDer Suddeutsche MadrigalchorDer Süddeutsche Madrigalchor StuttgartSo. German Madrigal Choir & InstrumentalistsSo. German Madrigal Choir & InstrumentalistsSouth German Madrigal ChoirSouth German Madrigal Choir & Consortium Musicum,South German Madrigal Choir And InstrumentalistsSouth German Madrigal Choir StuttgartSouth German Madrigal Choir, Consortium MusicumSouth German Madrigal Choir, StuttgartSouth German Mafrigal ChoirSouthern Germany Madrigal ChoirStuttgart Madrigal ChoirSuddeutscher MadrigalchorSuddeutscher Mardigalchor Consortium MusicumSueddeutscher MadrigalchorSüddeutsche Madrigal-chorSüddeutsche MadrigalchorSüddeutsche Madrigalchor De StuttgartSüddeutsche Madrigalchor StuttgartSüddeutscher MadrigalchorSüddeutscher Madrigalchor De StuttgartSüddeutscher Madrigalchor StuttgartSüddeutscher Madrigalchor de StuttgartSüddeutscher Madrigalchor/StuttgartSüddeutsches MadrigalchorSüdwestdeutscher Madrigal ChorThe South German Madrigal ChoirThe South German Madrigal Choir Of StuttgartThe South-German Madrigal ChoirThe Southern German Madrigal ChoirThe Stuttgart Madrigal Choir南ドイツ・マドリガル合唱団Wolfgang Gönnenwein + +1559201Daniel DoddsClassical violinist and conductor, born in 1971 in Adelaide, Australia.Needs Votehttps://www.danieldodds.net/Mahler Chamber OrchestraFestival Strings LucernePhilharmonic Orchestra Of EuropeChamber Soloists LucerneFestival Strings Lucerne Chamber Players + +1559717Bernard WinsemiusClassical organist, born in 1945. He was appointed organist of the Nieuwe Kerk in Amsterdam in 1981.Needs VoteBernhard WinsemiusThe Amsterdam Baroque OrchestraCappella AmsterdamGesualdo Consort Amsterdam + +1559721Vincent Van LaarDutch classical keyboard instrumentalist.Needs Votehttp://www.vincentvanlaar.nl/https://aliudrecords.com/vincent-van-laar/https://www.highresaudio.com/de/artist/view/072278a4-e043-41cd-9892-5b456c186413/vincent-van-laarMusica Amphion + +1559723Pieter DirksenPieter Dirksen performs as soloist on both harpsichord and organ and as continuo player with diverse chamber ensembles.Needs Votehttp://www.pieterdirksen.nlDr. Pieter DirksenCombattimento Consort AmsterdamDe Nederlandse BachverenigingCamerata TrajectinaBaroque Academy Of The Netherlands Symphony OrchestraEnsemble RebelLa Suave Melodia + +1559868Thomas GremmelspacherClassical tenor vocalistCorrectBasler MadrigalistenCoro Della Radio Televisione Della Svizzera Italiana + +1560185Erik BosgraafErik Bosgraaf (*May 9, 1980 in Drachten, Netherlands) is a Dutch recorder player and musicologist. His repertoire extends from Vivaldi's [i]Four Seasons[/i] to tomorrow's music. Bosgraaf's recording of [a=Jacob Jan Van Eyck]'s [i]Der Fluyten Lust-Hof[/i] sets a new standard and has led to his international breakthrough. Since then, Erik has recorded other best-selling albums, mainly for [l=Brilliant Classics]. Together with a guitarist [a=Izhar Elias] and harpsichordist Alessandro Pianu, Bosgraaf founded [a=Ensemble Cordevento], which performs at festivals all over the world. + +Around a hundred pieces have been composed for him, including twelve concertos. In 2011, [a=Pierre Boulez] gave Bosgraaf permission to adapt his [i]Dialogue de l'ombre double[/i] (initially composed for clarinet). The world premiere of this new version took place at [l=Concertgebouw, Amsterdam] and was recorded on the CD in 2015. + +As a soloist, Erik Bosgraaf has worked with the [a=Dallas Symphony Orchestra] under [a=Jaap van Zweden], [a=Residentie Orkest], [a=Noord Nederlands Orkest], [a=Netherlands Chamber Orchestra], [a=Helsinki Baroque Orchestra], Philharmonie Zuidnederland, and other prominent ensembles. He has shared the stage with leading jazz musicians, including saxophone player [a=Yuri Honing] and cellist [a=Ernst Reijseger] and also made recordings for film makers [a=Werner Herzog] and [a=Paul En Menno de Nooijer]. + +Bosgraaf teaches at [l=Conservatorium van Amsterdam] and serves as a visiting professor at the [l=Akademia Muzyczna w Krakowie]. He has received the Borletti-Buitoni Trust Award (2009), Nederlandse Muziekprijs (2011), ECHO Rising Star (2011/2012) and the Northern Dutch music prize Het Gouden Viooltje (2012).Needs Votehttp://www.erikbosgraaf.comBosgraafErik Bosgraaf & FriendsMusica Ad RhenumEnsemble CordeventoCollegium Musicum RigaLaurien Met Een Band + +1560186Elisabeth IngenhouszElisabeth Ingenhousz was educated to a performer violin and baroque violin at the Sweelinck Conservatory in Amsterdam. In Budapest she attended postgraduate studies in chamber music.Needs VoteElisabeth Ingen HouszElisabeth Ingen HouzMusica AmphionBalthasar-Neumann-EnsembleTulipa ConsortCollegium Delft + +1560188Frank Wakelkampclassical cellistNeeds VoteFranck WakelkampLes Musiciens Du LouvreNetherlands Bach CollegiumCurrende + +1560207Karl MehligGerman percussionist and timpanist, born on 4 June 1935 in Dresden-Mobschatz, Germany.Needs VoteKarl MehlingBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1560293Ludwig AltmanAmerican organist and composer, born 2 September 1910 in Breslau, Germany (now Wrocław, Poland) and died 27 November 1990 in San Francisco, California.Needs VoteAltmanSan Francisco Symphony + +1560396Anton GakkelClassical cellistNeeds VoteOrquesta Sinfónica de RTVEFatum String Trio + +1560593Ralph GombergAmerican oboe player, June 18, 1921 - December 9, 2006, he was the principal oboist of the Boston Symphony Orchestra for 37 years (1950-1987)Correcthttp://en.wikipedia.org/wiki/Ralph_GombergGombergR. GombergBoston Symphony Orchestra + +1560767Lorraine McAslanViolinist.Needs Votehttps://lorrainemcaslan.wordpress.com/Lorraine Mc AslanLorraine McaslanMcAslanEnglish Chamber OrchestraBritten SinfoniaLondon Soloists Ensemble (2) + +1561043Amos GordonJazz saxophonist. + +Father of [a3496328].Needs Votehttps://www.allmusic.com/artist/amos-gordon-mn0001490735Louis Armstrong And His Orchestra + +1561044Thomas GriderJazz trumpeter.Needs Votehttps://www.allmusic.com/artist/thomas-grider-mn0001703279/creditsThomas "Sleepy" GriderThomas 'Sleepy' GrinderThomas GridderThomas GrinderTom GriderLouis Armstrong And His OrchestraLucky Millinder And His OrchestraRoy Eldridge And His Orchestra + +1561045Earl MasonJazz pianistNeeds Votehttps://www.allmusic.com/artist/earl-mason-mn0002136178/creditsLouis Armstrong And His Orchestra + +1561742Alistair ScahillViolistNeeds VoteLondon Symphony Orchestra + +1562006Candida ThompsonEnglish violinist, born October 27, 1967. Became concertmaster for the [a882824] and subsequently became [a1152444]'s musical director in 2003.Needs Votehttp://candidathompson.com/http://en.wikipedia.org/wiki/Candida_Thompsonhttp://www.hamletpianotrio.comNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaHamlet Piano Trio + +1563308Klaus GerbethGerman classical oboe player.Needs VoteBläservereinigung BerlinKammerorchester Carl Philipp Emanuel BachBerliner Barock-Trio + +1563313Carmen TricasMaría del Carmen Tricás Martínez de la PeñaCarmen Tricás is a Spanish violin player.Needs VoteOrquesta Sinfónica de RTVE + +1563366Hervé DouchyClassical cellistNeeds VoteLes Folies FrançoisesRicercar ConsortIl GardellinoLe Poème HarmoniqueLes AgrémensLa PastorellaLes Sonadori + +1563934Billy FowlerAmerican bass and baritone saxophonist and bandleader.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/203358/Fowler_BillyWillie FowlerFletcher Henderson And His Orchestra + +1564461Alexander VedernikovАлександр Александрович ВедерниковAlexander Alexandrovich Vedernikov (11 January 1964, Moscow, USSR – 29 October 2020, Moscow, USSR ) was a Russian conductor. Son of the bass vocalist [a1403035].Needs Votehttps://ru.wikipedia.org/wiki/Ведерников,_Александр_Александровичhttp://en.wikipedia.org/wiki/Alexander_VedernikovAlexandre VedernikovVedernikovА. А. ВедерниковА. ВедерниковАлександр ВедерниковRussian National OrchestraTchaikovsky Symphony Orchestra + +1564789Daniel FaidherbeFrench viola playerNeeds VoteD. Faidherbe + +1564790Jacques LiboubanClassical flautistNeeds VoteJ. LiboubanOrchestre National Bordeaux Aquitaine + +1564814François CagnonFrench horn player.Needs VoteOrchestre National De FranceOrchestre Philharmonique De Monte-CarloOrchestre National De L'Opéra De ParisQuatuor Olifant + +1564897Eddie AulinoAmerican jazz trombonist.Needs VoteEd AulinoBenny Goodman And His Orchestra + +1564899Vince BadaleAmerican jazz trumpeterNeeds VoteVince BagdaleVincent BadaleVinnie BadaleHarry James And His OrchestraBenny Goodman And His OrchestraHarry James & His Music Makers + +1565287Paul Farr (2)Paul Bryan FarrHornist.Needs Votehttps://www.facebook.com/paul.b.farr/Hallé OrchestraStavanger Symfoniorkester + +1565297Hans HaselböckJohann HaselböckHans Haselböck was an Austrian organist and composer. He was the brother of [a1643272] and the father of [a895708]. +b.: July 26, 1928 in Nesselstauden, Austria +d.: Oct. 19, 2021 in AustriaNeeds Votehttps://de.wikipedia.org/wiki/Hans_Haselb%C3%B6ckhttps://en.wikipedia.org/wiki/Hans_Haselb%C3%B6ckhttps://www.musiklexikon.ac.at/ml/musik_H/Haselboeck_Familie.xmlhttps://www.imdb.com/name/nm11632218/Dr. Hans HaselböckHansHans HaselbockHans HaselboeckOrgan Player + +1565703Kiko PedrozoHarpist and vocalist, born in 1955 in Paraguay, based in Germany.Needs Votehttp://www.kiko-pedrozo.de/K. PedrozoKiko - Alles Raus Jetzt - PedrozoKiko PedrozzoMünchner Rundfunkorchester + +1567732James Ehnes[b]James Ehnes[/b] (b. 27 January 1976, Brandon, Manitoba) is a Canadian-American violinist and violist based in Florida. He studied violin from early childhood, taking lessons with [a=Francis Chaplin], and continuing his education under [url=/artist/9138463]Sally G. Thomas[/url] (1931—2024), first at the Meadowmount School of Music and later the [l=Juilliard School] (1993 to 1997). In October 2005, [url=/label/3918588]Brandon University[/url] granted him an honorary PhD. In July 2007, James Ehnes became the youngest elected Fellow of the Royal Society of Canada. He plays the 1715 'ex-Marsick' violin by [a=Antonio Stradivari] on the extended loan from the [url=/label/2616310]Fulton Collection[/url].Needs Votehttps://www.jamesehnes.comhttps://en.wikipedia.org/wiki/James_Ehneshttps://www.bach-cantatas.com/Bio/Ehnes-James.htmEhhesSydney Symphony OrchestraEhnes Quartet + +1567740Guillaume TessierFrench composer, born in Brittany, and most active between 1580 and 1585. Father of [a=Charles Tessier]. He dedicated works to Henri III of France and [a1374670] of England.Correcthttps://data.bnf.fr/fr/13900365/guillaume_tessier/(Guillaume) TessierTessier + +1567741Richard Martin (9)English composer (1570-1618) of the Renaissance period.Needs Vote + +1567744Robert Hales (2)Needs Major ChangesHayles + +1567745Markus MärklGerman classical harpsichordist, organist & pianist born in 1967 in Dillingen a.d.D. +Needs VoteMarkus MaerklCollegium VocaleEnsemble 1700Basel ConsortLes Cornets NoirsOrchester Der J.S. Bach StiftungCordArteAbendmusiken BaselLe Quatuor Romantique + +1567994Tom NygaardAmerican trumpet player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +1568101Constantin BobescoClassical violinist + + +Not to be confused with the romanian violinist and conductor [a=Constantin Bobescu]Needs VoteConstantin Bobeskoコンスタンティ・ボベスコOrchestre National De FranceLe Sinfonietta De PicardieOrchestre de Chambre Bernard Thomas + +1568102Maxime TholanceViolinistCorrectM. TholanceMaxim TholanceOrchestre National De L'Opéra De Paris + +1568324Shirley HopkinsShirley Hopkins Civil British horn and Wagner tuba player. She was married to [a=Alan Civil].Needs VoteShirley CivilBerliner PhilharmonikerThe Academy Of Ancient MusicThe Little Orchestra Of LondonWestminster Brass EnsembleLondon Wind SoloistsThe Music Party + +1568347Manfredo KraemerManfredo Kraemer (born 1960 in Buenos Aires) began his violin studies in Córdoba, Argentina. In 1984, he went to live in Germany, where he studied at the Cologne University of Music (Hochschule für Musik Köln) with Professor Franzjosef Maier. In 1985, together with colleagues from University, he was cofounder of Concerto Köln Orchestra. In 2001 he founded the Argentinian ensemble "La Barroca del Suquía".Needs Votehttp://www.music.lv/bachfestival/en/index.asp?pageId=609&subPageId=2019&pageAction=showSubPageKraemerM. KraemerMafred KrämerManfred KraemerManfred KreamerManfred KrämerManfred Krämer (2)Musica Antiqua KölnLa Capella Reial De CatalunyaLe Concert Des nationsMusica Ad RhenumHespèrion XXICapriccio StravaganteThe Rare Fruits CouncilConcerto CopenhagenMillenium OrchestraMaud Giguet-Vernhes + +1568727Sylvia Van Der LindenClassical pianistNeeds VoteDas Mozarteum Orchester Salzburg + +1569382Carina DruryCellist.Needs VoteLa SerenissimaThe English Baroque SoloistsThe Academy Of Ancient MusicIrish Baroque OrchestraLondon Early OperaSpiritato! + +1570627Daniela BeltraminelliSwiss classical violin player and singerNeeds Votehttps://www.allmusic.com/artist/daniela-beltraminelli-mn0001520765http://www.scuolamusicabiaschese.ch/corsi-e-insegnanti?id=20I BarocchistiMichel Wintsch & Road MovieVenice Baroque Orchestra + +1571154Mitchell NewmanViolinist.Needs VoteMitch NewmanMitchell L. NewmanMitchell Lewis NewmanLos Angeles Philharmonic Orchestra + +1571518Jimmy SaundersVincent J. La SpadaAmerican singer & songwriter dating from the big band era of the early 1940s. +Born June 9, 1920 in Philadelphia, Pennsylvania, USA. +Died January 20, 1990 (age 69) in Philadelphia, Pennsylvania, USA. +He sang with Harry James and His Orchestra and later with Charlie Spivak and His Orchestra. He signed with Hi-Tone records in 1949. Known for "Cry My Heart" ("Itke Sydämeni") on Coral Records in 1952 with the Ray Bloch Orchestra. +Saunders frequently collaborated with songwriter [a=Nelson Ingham], who was also from Philadelphia. +Saunders used the name "Sonny Saunders" early in his career, switching to "Jimmy Saunders" around 1942 and in 1954 changed it again, this time to [a=Marco Polo (35)].Needs Votehttps://bandchirps.com/artist/jimmy-saunders/https://www.rocknroll-schallplatten-forum.de/topic.php?t=21170J. SaundersJ.SaundersSandersSaundersСандерсSonny SaundersMarco Polo (35)Harry James And His OrchestraCharlie Spivak And His Orchestra + +1571634Rostal & SchaeferPeter Rostal and Paul SchaeferA piano duo popular in the 1970s.Needs VotePeter Rostal & Paul SchaeferPeter Rostal And Paul SchaeferRostal And SchaeferRostal and Schaefer羅斯濤 & 史嘉Paul SchaeferPeter Rostal + +1572318Gotthold SchwarzClassical bass vocalist and conductor, born 1952. He is the founder of the [a=Bach Consort Leipzig] and was the Thomaskantor of the [a791789] in Leipzig from 2016 to 2021.Needs Votehttps://en.wikipedia.org/wiki/Gotthold_SchwarzG. SchwarzSchwarzThomaskantor Gotthold SchwarzThomanerchorThe Monteverdi ChoirMaulbronner KammerchorRheinische KantoreiNicolai-Ensemble Hameln + +1572321Wilhelm BrunsClassical horn player.Needs VoteOrchester Des Nationaltheaters MannheimAkademie Für Alte Musik BerlinIl Giardino ArmonicoHannoversche HofkapelleCappella Coloniensismoderntimes_1800Deutsche Naturhorn SolistenHassler ConsortDas Reicha'sche Quintett + +1572325Joanne LunnThe English soprano, Joanne Lunn, graduated from the Royal College of Music where she was awarded the Tagore Gold Medal.Needs Votehttp://www.bach-cantatas.com/Bio/Lunn-Joanne.htmLunnThe Hilliard EnsembleThe Monteverdi ChoirChor & Orchester Der J.S. Bach Stiftung St. Gallen + +1572940Arthur KrehbielArthur David KrehbielAmerican French horn player, born in 1936.Needs VoteA. David KrehbielArt KrahbleArt KranbleArthur D. KrehbielArthur David KrehbielArthur KrebielDave KrehbielDavid KrehbielSan Francisco SymphonyDetroit Symphony OrchestraChicago Symphony OrchestraSummit BrassSymphonic MetamorphosisThe Fresno Philharmonic + +1572943Robin Sutherland (2)John Robin SutherlandAmerican pianist (also Co-director of the Telluride Chamber Music Festival - Colorado), born March 5, 1951, died December 18, 2020. Studied at the San Francisco Conservatory and at the Juilliard School. Principal Pianist of the San Francisco Symphony for 46 years, from 1973 until his retirement in 2018.Needs Votehttps://www.legacy.com/obituaries/greeleytribune/obituary.aspx?pid=197411946San Francisco Symphony + +1572948Thore SwanerudThore Elis Samuel SwanerudSwedish bandleader, pianist, vibraphonist and composer, born June 18, 1919 in Stockholm, died December 08, 1988 in Stockholm. + +He wrote his first composition as a 16-year-old. He studied music with Stig Holm. He was involved in the dance orchestra White Star in 1935–1936 and later played with several orchestras including Sten Axelson, Miff Görling, Håkan von Eichwald, Charles Redland, Arne Hülphers, Arthur Österwall and Simon Brehm. He formed his own orchestra in 1949. The band was guested by the American saxophonist James Moody in October 1949, and disc recordings were made in which, among others, Swanerud participated. "I'm in the mood for love" with piano solo by Swanerud, was a great success, not least in America, and is today considered a jazz classic. He was awarded the SKAP scholarship in 1975. +Needs Votehttps://sv.wikipedia.org/wiki/Thore_Swanerudhttps://orkesterjournalen.com/biografi/swanerud-thore/SvanerudSwanerudT SwanerudT. SwanerudThore SvanerudThore Swanerud With FriendsTore SwanerudJames Moody QuintetJames Moody SextetJularbo J:rs TrioThore Swaneruds OrkesterGösta Theselius And All StarsHasse Kahns SextettRoyal SwingersJames Moody & His Swedish CrownsThore Swaneruds SextettHasse Kahns Ensemble + +1573059Tore WestlundTore Oskar WestlundSwedish clarinet and saxophone player, called ”Tosse”, born on December 10, 1910 in Västerås, died on January 22, 1995 in Enskede. + +He went to the Academy of Music (Musikaliska Akademien) at the age of 14 to study clarinet. During his years in school he started to play in Helge Lindberg's Orchestra at Vasateatern. Between 1933-1936 he played with Georg Enders at Berns and moved later to Håkan Von Eichwald. In the autumn of 1938 he started to play for Thore Ehling at Grand Hotel Royal and considered to be one of the best jazz clarinetists in Sweden. In 1940 he moved to [a=Sune Waldimirs Orkester] and became a solo clarintist of Sveriges Radios Symfoniorkester.Needs Votehttps://sv.wikipedia.org/wiki/Tore_Westlundhttps://orkesterjournalen.com/biografi/westlund-tore-tosse-klarinettist-altsaxofonist/Sveriges Radios SymfoniorkesterThore Ehrlings OrkesterSune Waldimirs OrkesterHåkan Von Eichwalds OrkesterGunnar Hahns Spelmanskvartett + +1573158Kenneth Daryl LewisKenneth Daryl LewisNeeds Votehttps://www.facebook.com/kennykl1/K. LewisKenneth "Krayzee" LewisKenneth DarylKenny LewisLewisKrayzeeK. LewisDJ The CrowDa FlavaBad Boys BlueBooty PimpsNo Fear (7) + +1573261Lin YeChinese violinist, now based in Germany.Needs VoteOrchester der Bayreuther FestspieleFrankfurter Opern- Und Museumsorchester + +1573346Theo OlofTheodor Olof SchmucklerDutch violinist and author, born 5 May 1924 in Bonn, Germany and died 9 November 2012 in the Netherlands. He was the principal violinist of the [a754894] from 1974 to 1985.CorrectOlofConcertgebouworkestResidentie Orkest + +1573347Jean DecroosClassical cellist, born 9 May 1932, died 27 April 2008.Needs VoteJ. DecroosConcertgebouworkestGuarneri TrioHet Nederlands Cellokwartet + +1573733Ron BryansBritish classical trombone player.Needs VoteRonald BryansNew London ConsortBaroque Brass Of London + +1573747Peter WhiskinClassical viola player.CorrectThe Consort Of MusickeBrandenburg Consort + +1573761The Choir Of Clare CollegeThe Choir of Clare College, Cambridge is a mixed-voice choir whose primary function is to lead services in Clare College's chapel at [l280159], England. Since the founding of the choir in 1971, the Choir of Clare College has gained an international reputation as one of the leading university choral groups in the world.Needs Votehttp://www.clarecollegechoir.com/about-ushttps://en.wikipedia.org/wiki/Choir_of_Clare_College_CambridgeAlumni Of The Choir Of Clare CollegeAlumni of the Choir of Clare College CambridgeChoeur Du Clare College, CambridgeChoirChoir Of Clare CollegeChoir Of Clare College CambridgeChoir Of Clare College Chapel, CambridgeChoir Of Clare College, CambridgeChoir of Clare College, CambridgeChœurs Du Clare CollegeClaire College ChoirClare College CambridgeClare College Chapel ChoirClare College ChoirClare College Choir Court Lane EnsembleClare College Choir, CambridgeClare College SingersClare College Singers And OrchestraClare College, CambridgeSingersSopranos Du ChœurThe ChoirThe Choir And Orchestra Of Clare College, CambridgeThe Choir Of Clare College CambridgeThe Choir Of Clare College, CambridgeThe Choir Of Clare College, Cambridge, UKThe Choir Of Clare College, CollegeThe Choir Of Clare College,CambridgeThe Choir Of Clave College CambridgeThe Clare College Singersクレア・カレッジ合唱団Graham RossGerald BeattyJohn Richardson (7)Richard CraddockJonathan MidgleyEdward Price (2)John McMunnAlice HalsteadAlexander PorteousDominic WallisAmy Kate RiachLester LardenoyeEmilia MortonJames KitchingmanHenrietta BoxCaroline MeinhardtHelena CookeLaurence HarrisCatherine Clark (2)Laurence Booth-ClibbornStefan KennedyTessie PrakasDaniel LivermoreCatherine SymondsCharlotte HoElisabeth FlemingJessica Thomas (5)Madeleine Bradbury RanceSarah ShorterEdward Ballard (2)Edward ParkesGeorge MullanMatthew Graham (4)Richard BannonWill HaggardCaroline Smith (6)Charlotte KingstonEleanor HelpsEsther ChadwickLaura HoneyPhilippa BoyleSuzanne SzczetnikowiczZoe VanderwolkBenjamin Walton (2)Benjamin WinpennyJonathan Bird (2)Jonathan LangridgePhilip Martin (17)Hannah Dienes-WilliamsDaniel BlazeNicholas Ong (2)Flora TassinariIsabella TheodosiusMegan WebbThea Moe BjørangerZoe ShuCameron RileyDerek SorensenJasper SchoffJohn Gallant (2)Julian ManresaJulius KilnEmma CaroeHelen SouthernwoodHolly SewelJessica FolwellLilly VandaneauxMaggie TamGregory MayJoseph HancockLuca Zucchi (2)Samuel Jones (11) + +1574164Marion SarrautFrench film director, born 13 August 1938 in Saigon, Indochina (today Ho Chi Minh City, Vietnam).CorrectM. SaraultMarion SarraultSarraut Marion + +1574166Jacques BrialyNeeds Major ChangesBrialy Jacques + +1574332Matthew FairmanViolinistNeeds VoteBournemouth Sinfonietta + +1574333Vernon DeanViolin player.Needs VoteRoyal Philharmonic Orchestra + +1574545Русский Народный Оркестр Имени В. АндрееваГосударственный Академический Русский Оркестр Имени В. В. АндрееваRussian ensemble created in 1888 by [a1403974] = Vasily Andreyev. The Andreyev Russian Folk Orchestra was a symphony orchestra built around Russian folk instruments such as the balalaika, domra, and gusli, and dedicated to playing Russian folk music. +In 1896, the orchestra was renamed the Great Russian Orchestra (Великорусскій оркестръ) and became an international phenomenon, successfully touring Europe and America. At its 25th anniversary in 1913, the Tzar granted it the title Imperial Great Russian Orchestra. After more than 130 years, the orchestra is still active, now under the name "State Academic Russian Orchestra named after V. V. Andreyev". +[b]Conductors:[/b] +[a11482262] = Nikolay Fomin - 1919 (the closest associate of V. Andreyev since 1889) +[a15295191] = Theodor Niemann - 1919 to 1933 +[a3532811] = Eduard Grikurov - 1936 to 1938 +[a15736140] = Nikolai Selitsky - 1945 to 1948 +[a3078275] = Sergei Eltsin - 1948 to1951 +[a2748267] = Pavel Necheporenko - 1951 +[a2669426] = Avenir Mikhailov - 1951 to 1955 +[a7274683] = Daniil Pohitonov - mid-1950s +[a1576897] = Georgy Donijah - 1959 to 1971 +[a1451984] = Karl Eliasberg - mid-1950s to 1978Needs Votehttp://www.andreyev-orchestra.ruhttps://ru.wikipedia.org/wiki/%D0%A0%D1%83%D1%81%D1%81%D0%BA%D0%B8%D0%B9_%D0%BE%D1%80%D0%BA%D0%B5%D1%81%D1%82%D1%80_%D0%92._%D0%92._%D0%90%D0%BD%D0%B4%D1%80%D0%B5%D0%B5%D0%B2%D0%B0"V. Andreyev" Russian Folk OrchestraAndreieff's Balalaika OrchestraAndrejevin KansansoitinorkesteriAndrejew's Russian FolkorchestraAndreyev Folk Instrument OrchestraAndreyev Folk Instrument Orchestra Of Leningrad RadioAndreyev Folk OrchestraAndreyev Imperial Russian OrchestraAndreyev Orchestra Of Folk InstrumentsAndreyev Orchestras Of Folk InstrumentsAndreyev Russian Folk OrchestraBalalaika OrchestraEnsemble Folklorique AndréevFolk Instrument OrchestraImperial Russian Balalaika Court OrchestraOrch. D'Instruments Populaires V. AndreievOrch. D'Instruments Populaires V. AndreivOrchestre D'Instruments Populaires De La Radio De LeningradOrchestre D'Instruments Populaires V. AndreievRussian Folk Instruments OrchestraRussischer Volksorchester „Wassili Andrejew“The Andreyev Russian Folk OrchestraThe Andreyev Russian Folk instruments OrchestraThe Andreyev State Russian Folk Instrument OrchestraThe Russian Folk Instruments OrchestraThe V. Andreyev Russian Folk OrchestraVolksinstrumentenorchester Andrejew Vom Leningrader RadioАнсамбль солистов оркестра им. В. АндрееваВеликорусск. Орк. В. В. АндрееваВеликорусский oр-р.Великорусский ОркестрГосударственный Оркестр Народных ИнструментовОРНИОрк. Нар. Инстр Им. Андреева Лен. Госфилармонии п/у Э. П. ГрикуроваОркестр Нар. Инстр.Оркестр Нар. Инстр. Им. АндрееваОркестр Нар. Инструментов Им. В. АндрееваОркестр Народных ИнструментовОркестр Народных Инструментов Имени В. АндрееваОркестр Русских Народных Инстр. (ОРНИ)Оркестр Русских Народных Инструментов Им. В. АндрееваОркестр им. АндрееваОркестр им. В. АндрееваРусский Нар. Орк. Им. В. АндрееваРусский Нар. Оркестр Им. В. АндрееваРусский Народный Оркестр Им. В. АндрееваРусский Народный Оркестр Им. В. В. АндрееваРусский Народный Оркестр Им. В.В.АндрееваРусский Народный Оркестр Имени В. В. АндрееваРусский Народный Оркестр Имени В. В. АндрееваРусский Народный Оркестр Имени В.В. АндрееваРусский Народный Оркестр Ленинградского Радио Им. В. Андреева П/у В. ПоповаРусский народный оркестр им. В. В. АндрееваВладимир БояшовГеоргий ДонияхЭммануил ШейнкманDmitry KhokhlovВладимир Попов (5)Вадим КалентьевПетр АлексеевTatjana KostjanajaНиколай Титов (2)Фёдор НиманНиколай СелицкийЛюдмила Павловская + +1575255Sven StrunkeitGerman trombonist, born 1965 in Braunschweig, Germany.Needs VoteBayerisches StaatsorchesterOrchester der Bayreuther FestspieleEnsemble 13Opera Brass + +1575294Hans HernqvistSwedish classical percussionistCorrectGöteborgs Symfoniker + +1575296Robert RöjderErik Robert RöjderSwedish classical contrabassist, born on 2 July 1956.Needs VoteSveriges Radios SymfoniorkesterMusica Varia + +1575298Carina SporrongSwedish classical contrabassistNeeds VoteSveriges Radios Symfoniorkester + +1575299Per SporrongSwedish classical violinist. + +He started playing the violin at the age of 9 at the Kommunala music school in Hammarö, Värmland. He began his violin studies at [l606788] as early as 15 years old. 1 year later, Per was accepted at the Academy of Music in Stockholm, where his teachers were [a1765751] and [a1821977]. + +Studies continued in Berlin at the Karajanakademie, where [a946192] was his teacher. Per was frequently employed as a substitute in the Berlin Philharmonic during the 2.5 years that the studies lasted. He got to play under conductors such as Herbert von Karajan, Seji Ozawa, Lorin Mazel, Zubin Metha etc. + +Chamber music is also something that Per enjoyed doing over the years. Among other things as a member of [a2506318] and Stockholm's new chamber orchestra (Snyko). In 1987, Per began his orchestral career as 1st concertmaster in the Norrköping Symphony Orchestra until 1989 when he was employed in the Swedish Radio Symphony Orchestra, where he has now played for 35 years in the 1st violin part.Needs VoteStockholm Session StringsSveriges Radios SymfoniorkesterSnykoSpectrum Concerts BerlinLix (7)Unga Musiker + +1575358Knut SchochGerman classical tenor vocalistNeeds Votehttp://www.knut-schoch.de/7.htmlSchochBalthasar-Neumann-ChorJohann Rosenmüller EnsembleI Sonatori + +1575359Nico Van Der MeelDutch tenor.Needs Votehttp://www.nicovandermeel.nl/Van Der Meelvan der MeelCamerata TrajectinaMusica AmphionGesualdo Consort AmsterdamCoro Della Radio Televisione Della Svizzera ItalianaLeids Rederijkerskamerkoor + +1575360John Wilson MeyerClassical violinistNeeds VoteJohn WilsonJohn Wilson-MeyerAnima EternaThe Amsterdam Baroque OrchestraNetherlands Bach CollegiumNew Dutch AcademyThe Amsterdam String Quartet + +1575363Kate ClarkClassical traverso flautist. + +Born in Sydney, Kate Clark graduated from the University of Sydney on modern and baroque flutes in 1985. In the same year she was a finalist in the Australian National Flute Competition and guest principal flute with the Australian Chamber Orchestra. + +From 1986-1990 she studied baroque and classical flutes with Barthold Kuijken at the Royal Conservatorium in The Hague gaining her Soloist’s Diploma “cum laude,” and from 1990-1992 renaissance flute at the Schola Cantorum Basiliensis in Switzerland under the guidance of Anne Smith. In 1993 she won the first prize in the Brugge International Early Music Competition. + +Since 1988 Kate Clark has performed and recorded throughout Europe as a soloist and with chamber ensembles (Musica Ad Rhenum, Amphion Ensemble, Cantus Cölln), and orchestras (Freiburger Barockorchester, Concerto Köln, Deutsche Händel-Solisten, Rheinische Kantorei, Les Musiciens du Louvre, Le Concert Spirituel). As principal flautist with Les Musiciens du Louvre from 1994-2006 she toured extensively throughout Europe and the United States. She makes regular appearances in Australia as soloist with The Australian Brandenburg Orchestra, The Australian Chamber Orchestra, and as artist-in-residence at the University of Western Australia. + +Kate Clark gives lectures and courses in Italy, Spain, Germany, France, Israel, and Australia, and she teaches historical flutes at the Royal Conservatorium in The Hague. She lives in Amsterdam with her partner and their two sons.Needs Votehttps://en.wikipedia.org/wiki/Kate_Clark_(flautist)https://www.attaignantconsort.com/Cappella AmsterdamLes Musiciens Du LouvreMusica AmphionCantus CöllnConcerto PalatinoNetherlands Bach CollegiumEnsemble BattistinFestspielorchester GöttingenApollo EnsembleThe Attaignant ConsortOsmosis (24) + +1575364Sytse BuwaldaDutch countertenor & alto vocalist, born in 1965.Needs Votehttp://www.sytsebuwalda.nl/BuwaldaSytze BuwaldaCamerata TrajectinaCurrendePentacost Vocaal Ensemble + +1575365Ofer FrenkelClassical oboistNeeds VoteAustralian Brandenburg OrchestraLa Petite BandeAccademia DanielNetherlands Bach CollegiumApollo EnsembleOsmosis (24) + +1575366Vaughan SchleppClassical organistNeeds VoteNetherlands Bach CollegiumEnsemble Violini Capricciosi + +1575367Netherlands Bach CollegiumThe Netherlands Bach Collegium is a Baroque orchestra based in the Netherlands. It is conducted by [a=Pieter Jan Leusink]. They are noted for their Complete Cantatas Brilliant Series, a recording of the complete sacred cantatas by Johann Sebastian Bach.CorrectFrank AarninkPeter FrankenbergMargaret UrquhartErwin WieringaLaura JohnsonPieter Jan LeusinkMarion MoonenTeunis van der ZwartTrudy Van Der WulpRien VoskuilenJan Willem Vis (2)Kristin LindeFrank WakelkampJohn Wilson MeyerKate ClarkOfer FrenkelVaughan SchleppVincent Van BallegooijenAnneke BoekeFrederique ChauvetFumitaka SaitoÖrzse AdamSimon Murphy (3)Doretthe JanssensOeds van MiddelkoopEduard WeslyNico de GierSusanne GrutzmacherMaarten Smit + +1575420Léon BerbenLeonardus BerbenClassical harpsichordist and organist.Needs Votehttp://leonberben.org/BerbenLeon BerbenMusica Antiqua KölnNew Seasons EnsembleAura MusicaleEnsemble PyramideConcerto Melante + +1576387Emile VilainFrench trombonist.Needs VoteÉmile VilainGrand Orchestre De L'OlympiaClaude Bolling Big BandClaude Bolling & Le Show Biz Band + +1576721Ensti PohjolaEnsti Emil Kullervo PohjolaFinnish conductor and cellist, born 18 October 1928 in Ylistaro, Finland, died 8 October 2009. + +Brother of [a1354414], father of [a260764] and [a=Jukka Pohjola].Needs Votehttp://fi.wikipedia.org/wiki/Ensti_Pohjola + +1576896Владимир БояшовVladimir Boyashov (1935-2017) is a Russian virtuoso bayan player, composer and conductor.Needs Votehttps://dic.academic.ru/dic.nsf/enc_biography/12945/%D0%91%D0%BE%D1%8F%D1%88%D0%BE%D0%B2B. BoyashovV. BoyashovVladimir BoyashevВ. БояшовРусский Народный Оркестр Имени В. Андреева + +1576897Георгий ДонияхГеоргий Анатольевич ДонияхGeorgy Doniyakh (February 15 (28), 1914, Kyiv - November 23, 1976, Leningrad) - Russian and Soviet conductor, teacher, violinist.Needs Votehttps://ru.wikipedia.org/wiki/%D0%94%D0%BE%D0%BD%D0%B8%D1%8F%D1%85,_%D0%93%D0%B5%D0%BE%D1%80%D0%B3%D0%B8%D0%B9_%D0%90%D0%BD%D0%B0%D1%82%D0%BE%D0%BB%D1%8C%D0%B5%D0%B2%D0%B8%D1%87https://100philharmonia.spb.ru/persons/19607/G. DoniyakhGeorgi DonyahkГ. А. ДонияхГ. ДонияхРусский Народный Оркестр Имени В. Андреева + +1577073Danka NikolićViolistCorrectDanka NikolicCamerata Academica Salzburg + +1577213William SabatiniWilliam Franco Sabatini"William Sabatini was born in Philadelphia, Pennsylvania on May 10, 1925. In Philadelphia, William Sabatini studied at Temple University. William Sabatini said in interviews that he studied at the Curtis Institute 215, but Curtis records do not show him to have graduated. +William Sabatini was Principal horn of the San Francisco Symphony, appointed by Pierre Monteux in the second part of the 1946-1947 season. Sabatini remained Principal horn for the subsequent nine seasons 1946-1955. With the arrival of Enrique Jorda, William Sabatini moved to the Symphony of the Air in New York City in 1955-1956. William Sabatini then became Principal horn of the Detroit Symphony under Paul Paray in 1956-1963. +Following the departure of Enrique Jorda, William Sabatini then returned to the San Francisco Symphony under Josef Krips as Co-Principal horn with Ross Taylor in the 1963-1964 season. The next season, Sabatini was Co-Principal horn with Herman Dorfman, which he continued 1964-1971. Seiji Ozawa moved William Sabatini to the Assistant Principal horn chair in 1971-1972, where he remained for nine seasons 1971-1980. Then, under Edo de Waart, William Sabatini became Associate Principal horn from the 1980-1981 season until the first part of 1987-1987 season. While in San Francisco, Sabatini was also active in chamber music, including being a founding member of the Camara Brass Quintet: William Sabatini horn, Wilbur Sudmeier trombone, Edward Haug trumpet, Ronald Bishop tuba and Chris G. Bogios trumpet. William Sabatini died in Berkeley, California on December 14, 1989 not long after retiring from the San Francisco Symphony.Needs Votehttp://www.stokowski.org/Principal_Musicians_San_Francisco_Symphony.htm#Horn_Index_Point_San Francisco SymphonyDetroit Symphony Orchestra + +1577658Tora DugstadNorwegian violinist, violist, fiddler and vocalist, born 1954 in Bergen, Norway.Needs VoteTora "MammaBinna" DugstadOslo Filharmoniske Orkester + +1578728The YofridizJonathan Hughes & Matthew ManfridiHardstyle DJ & producer duo composed of DJ Y.O.Z. & Matt Manfridi and formed in 2005. +Based in North Wales, UK. +Needs Votehttp://www.theyofridiz.co.uk/http://www.myspace.com/yofridizhttp://www.facebook.com/theyofridizhttp://www.bebo.com/yofridizhttp://www.youtube.com/yfztvYofridizDJ Yoz + +1578798Malcolm Smith (5)Classical countertenor vocalist, fl. from 1990s.CorrectSmithGabrieli Consort + +1579231Sonny CostanzoDominic Costanzo.American trombonist, band leader, educator. +Born : October 07, 1932 in New York City (Greenwich Village), New York. +Died : December 30, 1993 in New Haven, Connecticut. + +Sometimes [i]incorrectly[/i] spelt as “Co[u]n[/u]stanzo”. Member of groups or orchestras of Les & Larry Elgart, Woody Herman, Thad Jones & Mel Lewis, Kai Winding Septet and Clark Terry Big Band 1968–1978. Established his [a=Sonny Costanzo Big Band] in 1979. Popular in former Czechoslovakia where he performed and recorded with Kamil Hála’s [a=Czechoslovak Radio Jazz Orchestra] and Laco Deczi’s [a=Jazz Celula]. +Needs VoteDom "Sonny" CostanzoSonny ConstanzoSonny CostanzaJazz CelulaWoody Herman And His OrchestraWoody Herman And The Swingin' HerdSonny Costanzo Big BandClark Terry Big BandSonny Costanza Orchestra + +1580436Marie-José CasanovaFrench singer and songwriter + +Born : October 10, 1939 // France +Died : June, 2015 // Corse, France +Needs VoteAnne-Marie CasanovaCasanovaM CasanovaM. CasanovaM. CasasanovaM. J. CasanovaM.CasanovaM.J CasanovaM.J. CasanovaMaria J. CasanovaMarie CasanovaMarie CazanovaMarie José CasanovaMarie-J. CasanovaMarie-Jose Casanova + +1580562Angelo BartolettiClassical viola + viol player.Needs VoteLe Concert Des nationsI Solisti VenetiEuropa GalanteModo AntiquoEnsemble LegrenziComplesso Pro Musica FirenzeAcademy European Solist + +1580876Machiko TakahashiClassical flautist.CorrectMachiho TakahashiMachiko TakahasiConcertgebouw Chamber OrchestraXenakis Ensemble + +1580890Fredy OstrovskyFred Samouilovitsch OstrovskyFred 'Fredy' Ostrovsky (born 18 September 1921 in Bugaria - 21 March 2006 in the United States) was an American violinist and composer.Needs VotePfc Freddy OstrovskyPfc. Fredy OstrovskyPvt. Fredy OstrovskyBoston Pops OrchestraBoston Symphony OrchestraRadio City Music Hall OrchestraThe Army Air Force Band + +1580891Einar HansenClassical violinist, born 1890 in Denmark and died in 1976 (?).Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +1580892Alfred SchneiderAmerican violinist and conductor, born in 1927.Needs VoteA.SchneiderBoston Pops OrchestraBoston Symphony Orchestra + +1580893Vladimir ResnikoffAmerican violinist, born 1892 in Russia and died 1970 in the United States.Needs VoteResnikoff, V.V. ResnikoffBoston Pops OrchestraBoston Symphony Orchestra + +1580896Sheldon RotenbergAmerican violinist, born 1914 in Attleboro, Massachusetts and died 23 June 2012 in Brookline, Massachusetts.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +1580897James PappoutsakisAmerican flute player and teacher, born 1911 in Cairo, Egypt and died in 1979 in the United States.Correcthttp://www.pappoutsakis.orgJ. PappoutsakisPappoutsakisPappoutsakis, J.Boston Symphony Orchestra + +1580898Minot BealeAmerican violinist, arranger. Born 24 April 1897 and died in December 1982.Needs Votehttps://adp.library.ucsb.edu/names/114232http://id.loc.gov/authorities/names/no2008086092http://viaf.org/viaf/26877656Boston Pops OrchestraBoston Symphony OrchestraThe Aeolians + +1580899Roger ShermontAmerican violinist, born 1922 in Paris, France.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +1580900George ZazofskyAmerican violinist, born 1914 in Boston, Massachusetts and died 1983 in Pittsfield, Massachusetts.Needs VoteG. ZazofskyZazofsky, G.Boston Pops OrchestraBoston Symphony OrchestraThe Zimbler Sinfonietta + +1580901Leo PanasevichLeo Nicholas PanasevichAmerican violinist, born 2 November 1921 in Brooklyn, New York and died 5 May 2007 in Needham, Massachusetts.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraOrchestre National De L'Opéra De Monte-CarloNational Symphony Orchestra + +1580902Stanley BensonStanley W. BensonAmerican violinist, born 2 July 1909 and died 23 March 1988 in Eastham, Massachusetts.Needs VoteBenson, S.S. BensonBoston Pops OrchestraBoston Symphony Orchestra + +1580903Rolland TapleyRolland Sylvester TapleyAmerican violinist, born in 1901 and died 29 May 1986.Needs VoteTapleyBoston Pops OrchestraBoston Symphony Orchestra + +1580904Gottfried WilfingerGottfried Joseph WilfingerAmerican violinist, born 21 March 1929 in Allentown, Pennsylvania and died 18 July 2002 in Sedona, Arizona.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraThe Zimbler Sinfonietta + +1580905Noah BielskiAmerican violinist, born 1919 in Poland and died 1972 in the United States.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +1580906Herman SilbermanHerman William SilbermanAmerican violinist, born 9 June 1906 and died 15 April 1988.Needs VoteH. SilbermanSilberman, H.Boston Pops OrchestraBoston Symphony Orchestra + +1581717Rachel BevanSoprano vocalist.Needs VoteGabrieli ConsortThe English Concert ChoirTaverner ChoirThe Clerkes Of OxenfordThe Schütz Choir Of London + +1582036Julia GoodingEnglish soprano vocalistNeeds Votehttp://www.juliagooding.com/biog.htmGoodingRed ByrdThe English Concert ChoirCorydon SingersHis Majestys Consort Of VoicesInvocation (6) + +1582480Frank BroukFrank Joseph BroukAmerican french horn player, born in 1913 and died 21 February 2004 in Chandler, Arizona.Needs VoteThe Cleveland OrchestraChicago Symphony OrchestraRochester Philharmonic OrchestraIndianapolis Symphony Orchestra + +1582495Murray KellnerAmerican violinist and bandleaderNeeds VoteKel MurrayM. KellnerMurry KellnerUncle Jim HawkinsDaniel Keller (8)Gordon Jenkins And His OrchestraFred Waring & The PennsylvaniansKel Murray And His OrchestraMurray Kellner And His OrchestraMurray Kellner's Dinner Music EnsembleLarry Abbott And His Orchestra + +1582496Ray MenhennickViola player + +Born July 10, 1900. Died July 2, 1965.Needs Votehttps://www.findagrave.com/memorial/85915189/george_raymond-menhennickG. MenhenickG. R. MenhennickG. Ray MenhennickG.R. 'Ray' MenhennickG.R. MenhennickGeorge R. MenhennickHarry James And His OrchestraThe Kaufman Quartet + +1582535Barbara LibermanPianist and celesta player.CorrectSaint Louis Symphony Orchestra + +1582558Lisa Klevit-ZieglerLisa Ann Klevit-ZieglerLisa Klevit-Ziegler was an American classical clarinetist and clarinet teacher. +Born December 18, 1957 +Died March 15, 2020 in Lahr, Germany (aged 62)Needs VoteLisa KelvitLisa KlevitLisa KlewittAnima EternaMusica Antiqua KölnConcerto KölnTafelmusik Baroque Orchestra + +1582587Mark Elder (2)Sir Mark Philip Elder CH CBEBritish conductor, born 2 June 1947. He is the music director of the Hallé Orchestra in Manchester, England.Needs Votehttps://en.wikipedia.org/wiki/Mark_ElderElderMark ElderMark Elder CBESir Mark ElderSir Mark Elder CBEHallé OrchestraCanterbury Cathedral ChoirNational Youth Orchestra Of Great Britain + +1582914Gordon MurrayGordon Murray (12 April 1948 —12 April 2017) was a Canadian classical harpsichordist, clavichordist, organist and music professor at the [l1209200].Needs VoteConcentus Musicus WienHesperion XXEnsemble 415Clemencic Consort + +1582977Delia WallisEnglish operatic mezzo-soprano. She was born in Chelmsford, England, UK and died 15 September 2009 in Fredonia, New York, USA. +She was married to the Canadian violinist [a=Gerald Jarvis].Needs VoteДелиа Уолис + +1583077Rob BottiRobert BottiAmerican oboist and English horn player. He joined the New York Philharmonic in 1992.Needs VoteRobert BottiRobert W. BottiNew York PhilharmonicInfusion (3)Sylvan Winds + +1583478Giuliano CarmignolaItalian violinist. +Born July 7, 1951 in Treviso, Italy. +Longtime soloist of [a=I Solisti Veneti]. He was a professor of violin at the Venice Conservatory and also taught in Siena and Lucerne.Needs Votehttps://en.wikipedia.org/wiki/Giuliano_Carmignolahttps://web.archive.org/web/20040122122907/https://www.giulianocarmignola.com/https://web.archive.org/web/20040307220442/https://www.sonyclassical.com/artists/carmignola/https://www.deutschegrammophon.com/en/artists/giuliano-carmignolahttps://www.bach-cantatas.com/Bio/Carmignola-Giuliano.htmhttps://www.facebook.com/Giuliano-Carmignola-54403258644/CarmignolaG. CarmignolaGiuliano CarmigolaI Solisti VenetiSonatori De La Gioiosa MarcaIl Quartettone + +1583513Johannes KiefelRussian classical violinist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigStuttgarter KammerorchesterRundfunk-Sinfonieorchester SaarbrückenDeutsche Radio Philharmonie Saarbrücken KaiserslauternEsBé-Quartett + +1583914Deryn EdwardsBritish operatic (alto / soprano) singer and voice actress.Needs Votehttps://www.bach-cantatas.com/Bio/Edwards-Deryn.htmThe Swingle SingersLondon Voices + +1583943Cédric VinatierFrench trombonist.Needs Votehttp://www.orchestredeparis.com/fr/orchestre/interview/cedric-vinatier_112.htmlOrchestre De ParisEnsemble ZelligMichel Becquet Et L'ensemble Octobone + +1583946Guillaume Cottet-DumoulinFrench trombonist.Needs VoteOrchestre De ParisLe Quatuor de Trombones MillièreVillette Brass + +1584039Big John GreerJohn Marshall GreerAmerican blues saxophonist and vocalist. +"Big" John Greer worked with Lucky Millinder, Wynonie Harris, Bull Moose Jackson, Bob Shad, Hal Singer, Bill Doggett (and others) and in his own groups. + +Born: November 21, 1923 in Hot Springs, Arkansas. +Died: May 12, 1972 in Hot Springs, Arkansas.Needs Votehttps://adp.library.ucsb.edu/names/355356"Big" John GreerBig Joe GreerGreerJ. GreerJohn GreerJohn Greer And His Rhythm RockersJohn Marshall GreerLucky Millinder And His OrchestraJohn Greer & His Rhythm RockersBig John Greer & His Combo + +1584830Yannick Nézet-SéguinFrench Canadian conductor and pianist, born 6 March 1975 in Montreal, in the Province of Quebec. He is currently music director of the Orchestre Métropolitain (Montréal), the Metropolitan Opera, and the Philadelphia Orchestra. He was also principal conductor of the Rotterdam Philharmonic Orchestra from 2008 to 2018. Needs Votehttps://yannicknezetseguin.com/https://www.facebook.com/yannicknezetseguinofficialhttps://en.wikipedia.org/wiki/Yannick_N%C3%A9zet-S%C3%A9guinNézet-SéguinY. Nézet-SéguinYannick Nézet SéguinYannick Nézet·Séguinヤニック・ネゼ=セガンThe Chamber Orchestra Of Europe + +1586306Lynda CochranePianistNeeds VoteCochraneRoyal Scottish National Orchestra + +1586402Carel van Leeuwen BoomkampDutch cellist and former principal cellist with the [a754894]. +Born: 11 August 1906 (Borculo Netherlands) +Died: 11 March 2000, (Huizen Netherlands) Needs Votehttps://nl.wikipedia.org/wiki/Carel_van_Leeuwen_BoomkampC. BoomkampC. van Leeuwen BoomkampCarel BoomkampLeeuwen BoomkampM. Van Leeuven BoomkampVan Leeuwen Boomkampvan Leeuwen BoomkampConcertgebouworkestNetherlands String QuartetAlma MusicaThe Amsterdam Piano Quintet + +1586471Kevin MallonConductor and violinist. Founder of the Toronto Camerata / Chamber Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Kevin_MallonK. MallonMallonLes Arts FlorissantsTafelmusik Baroque OrchestraToronto CamerataAradia EnsembleToronto Chamber Orchestra + +1586589Earl CornwellEarl Robert Cornwell, Jr.US-American violinist, born in Austin, Texas, on 19 September 1913, and died on 22 April 2006. +Joined during WWII [a456877] and played after Glenn Miller’s disappearance in the [a254907] Band from coast to coast. He toured with Stan Kenton in 1950 and 1951. After returning to Austin he played with The Austin Symphony for 27 years.Needs VoteCpl. Earl CornwellEarl CornwallStan Kenton And His OrchestraGlenn Miller And The Army Air Force BandThe Army Air Force BandAustin Symphony + +1586943Katherine McGillivrayClassical viola / viola d'amore player (born 21 May, 1970 in Paisley, Scotland - died 1 August, 2006, in London). +She grew up playing the violin but in her late teens discovered the viola. She was drawn to the baroque viola and viola d’amore during her studies with [a836114] and spent a year playing with the European Union Baroque Orchestra. In 1993, she moved from Glasgow to London for a postgraduate course at the Royal Academy of Music, studying baroque and modern viola. In the following years she came to play principal viola with many groups including The King’s Consort, The Purcell Quartet, Sonnerie, the English Baroque Soloists, The Gabrieli Consort and Players, The Amsterdam Baroque Orchestra and Concerto Caledonia, of which she was a founding member with her sister [a1172367]. She had beeen appointed principal violist of The English Concert a month before her death.Needs Votehttp://getalifefund.org.uk/the-award/http://www.gsmd.ac.uk/about_the_school/alumni/our_alumni_community/staff_obituaries/person/1020-katherine-mcgillivrayhttp://www.scotsman.com/news/obituaries/katherine-mcgillivray-1-1132644http://www.guardian.co.uk/news/2006/aug/18/obituaries.mainsectionKatharine McGillvrayGabrieli ConsortThe English Baroque SoloistsThe Amsterdam Baroque OrchestraCollegium Musicum 90Concerto CaledoniaSonnerieThe King's ConsortThe English ConcertKontrabande + +1586944Matthew HallsHarpsichordist and organist.Needs VoteThe English Baroque SoloistsThe Amsterdam Baroque OrchestraI FagioliniSonnerieThe King's ConsortThe Symphony Of Harmony And InventionTheatre Of Early MusicRetrospect TrioRetrospect Ensemble + +1586974Wilhelm PoseggaWilhelm Posegga (5 September 1912 in Dortmund, Geman Empire - 21 November 1962) was a German cellist and cello teacher. He died together with [a1278365] in a car accident in Agen, France. +He was married to [a6802900].Needs VoteW. PoseggaBerliner PhilharmonikerDas Hamann QuartettDresdner PhilharmoniePhilharmonisches Oktett Berlin + +1587143Dmitry SinkovskyДмитрий СиньковскийDmitry Sinkovsky is a Russian violinist, violist, singer (countertenor) and conductor.Needs Votehttps://meloman.ru/performer/dmitrij-sinkovskij/https://www.dmitrysinkovsky.com/D. SinkovskyDmitri SinkovskyДмитрий СиньковскийIl Giardino ArmonicoMusica Viva Chamber OrchestraPratum Integrum OrchestraIl Complesso BaroccoEnsemble 1700Il Pomo d'Oro + +1587270Magnus JohnstonBritish classical violinist.Needs Votehttps://www.roh.org.uk/people/magnus-johnstonMagnus JohnsonMagnus JohnstoneEnglish Chamber OrchestraRed Skies String SectionElias String QuartetJuno String QuartetMarylebone CamerataNavarra String QuartetSinfonia Of London Chamber Ensemble + +1587279Hallé ChoirNeeds Votehttp://www.halle.co.uk/halle-choir.aspxChoirChorChorusCoro HalléGentlemen Of The Hallé ChoirHalle ChoirHalle ChorusHallé ChorusSopranos And Altos Of The Hallé ChoirThe Halle ChoirThe Ladies Of The Hallé Choir + +1587280Eric ChadwickClassical keyboard instrumentalistNeeds VoteEric ChadnickRoyal Liverpool Philharmonic Orchestra + +1587326David GoodingAmerican composer, musician, arranger, lyricist and music director.Needs Votehttp://www.davidgoodingvoice.comThe Cleveland OrchestraSmooth News + +1587359Franck PoitrineauFrench Classical Trombonist and Sackbut Player.Needs VoteFranck PoltrineauFrank PointrineauFrank PoitrineauLe Concert SpirituelHuelgas-EnsembleThe Amsterdam Baroque OrchestraConcerto VocaleL'ArpeggiataRicercar ConsortLes Sacqueboutiers De ToulouseDiabolus In MusicaLe Poème HarmoniqueLudus ModalisLes AgrémensPygmalionDoulce MémoireEnsemble La FeniceLes Cornets NoirsAkadêmiaGalilei ConsortLe Concert BriséEnsemble VentosumLes Traversées Baroques + +1587360Fabien DornicFrench Trombonist & SackbutistNeeds VoteFabien DormicLe Concert SpirituelOrchestre National Du Capitole De ToulouseLes Sacqueboutiers De ToulouseDiabolus In MusicaEnsemble La FeniceAkadêmiaLes Goûts RéunisQuart'Bone + +1587366Malcolm BothwellMalcolm James BothwellClassical baritone vocalist and viola da gamba player, born 15 October 1958 in London.Needs VoteIl Seminario MusicaleEnsemble OrganumEnsemble Clément JanequinEnsemble La FeniceOpera FuocoSchola Meridionalis + +1587367Frère Jean-Christophe ClairClassical alto vocalist.Needs VoteFrère Jean-Christophe Clair O.P.Jean-Christophe ClairLe Concert SpirituelChoeur de Chambre de NamurLe Concert D'AstréeEnsemble Clément JanequinLudus Modalis + +1587368Laurent StewartClassical keyboard instrumentalistNeeds VoteStewartLe Concert SpirituelCollegium VocaleLes Sacqueboutiers De ToulouseLe Poème HarmoniqueLes Basses RéuniesEnsemble La FeniceFons MusicaeAkadêmiaEnsemble Concerto di BassiLes Traversées Baroques + +1587406Abigail NewmanClassical trombonist and sackbutist. +She graduated from the Guildhall School of Music & Drama in 1992 then went on to study sackbut and historical brass at the Royal College of Music. She joined His Majestys Sagbutts & Cornetts in 1997.Needs Votehttps://www.linkedin.com/in/abigail-newman-64544580/The SixteenThe English Baroque SoloistsThe King's ConsortHis Majestys Sagbutts And CornettsThe London Gabrieli Brass EnsembleMusicians Of Shakespeare's Globe + +1587407Adam WoolfTrombone and sackbut player. +He studied modern trombone and sackbut at the Royal Academy of Music in London from 1993 to 1997. A founder member of the QuintEssential Sackbut and Cornett Ensemble, he became a regular member of His Majesty’s Sagbutts & Cornetts in 1997. In 1999, he was appointed principal trombone of Sir John Eliot Gardiner’s English Baroque Soloists and Orchestre Revolutionnaire et Romantique. He is also principal trombone of The Kings Consort. +He has worked with contemporary jazz musicians [a353567] as well, blending 17th century improvisation techniques with modern jazz styles.Needs Votehttps://www.adamwoolf.com/https://x.com/AdamwoolfAdam WolffWoolfOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsWeser-RenaissanceThe King's ConsortHis Majestys Sagbutts And CornettsCapriccio StravaganteQuintEssential Sackbut And Cornett EnsembleCaecilia ConcertOltremontanoLes AgrémensInaltoScorpio CollectiefMardi BrassI Gemelli (2) + +1587408Keith McGowanGraduated in music and Russian at The University of Nottingham and The Leningrad Institute of Theatre, Music and Cinematography; while studying there he became fascinated by early wind music +Classical Dulcian player. +Musicologist (Musician and historian). +Tutor/Lecturer in Early Music at Cambridge and visiting Professor of Renaissance Wind at Royal College of Music. Teacher and Musical Director at Historic Royal Palaces and Shakespeare’s Globe +Aficionado in Renaissance and Baroque Wind instruments (Shawm, Dulcian, Rackett, Sackbut, Curtal etc.). +Has performed and recorded with many of the period instrument ensembles in the UK and abroad including The King’s Singers, The Harp Consort and The Sixteen.Needs VoteMcGowanNew London ConsortThe SixteenThe Harp ConsortGabrieli PlayersThe King's ConsortHis Majestys Sagbutts And CornettsThe Symphony Of Harmony And InventionLondon Pro MusicaThe Society Of Strange And Ancient InstrumentsLa Grande ChapelleLondon Early OperaMusicians Of Shakespeare's Globe + +1587409Alastair HamiltonClassical baritone / bass vocalistNeeds VoteAlistair HamiltonGabrieli Consort + +1587411Oliver WebberClassical violinist.Needs VoteThe Parley Of InstrumentsThe English Baroque SoloistsI FagioliniGabrieli PlayersThe King's ConsortLondon Handel OrchestraClassical OperaLudus BaroqueThe Bach PlayersThe Gonzaga BandPassacaglia EnsembleLondon Handel PlayersCœur Símple + +1587516Geoffroy BuffièreFrench classical baritone/bass vocalistNeeds VoteBuffièreLe Concert SpirituelDiabolus In MusicaLes Cris de ParisMetamorphosesPygmalionAkadêmiaInaltoLa Chapelle HarmoniqueLes Épopées + +1587826Herre-Jan StegengaDutch classical cellist.Needs VoteHerre Jan StegengaJan StegengaStegengaNetherlands Chamber OrchestraLes Musiciens De ParisThe Rubenstein Chamber Players + +1588109A.P.A.A.=Andy Pickles +P.=Paul Janes +A.=Amadeus Mozart +Needs VoteAPAApaPaul JanesAndy PicklesAmadeus Mozart + +1588231Renate GentzGerman classical violinistNeeds VoteHamburger RatsmusikLes Amis De PhilippeNova Stravaganza + +1588237Monika SchwambergerGerman classical cellist & viola da gamba player.Needs Votehttps://de.linkedin.com/in/monika-schwamberger-60004794Monika SchwammbergerMônica SchwambergerLes Amis De PhilippeNova StravaganzaTelemann-Kammerorchester MichaelsteinSalzburger Baryton TrioFreiburger Barocksolisten + +1588243Juris TeichmanisClassical cellist and viola da gamba player, born in 1966 in Freiburg, Germany.Needs Votehttp://www.juristeichmanis.de/Akademie Für Alte Musik BerlinCantus CöllnNova StravaganzaKlassische Philharmonie StuttgartNeue Düsseldorfer HofmusikEnsemble Il CapriccioEnsemble Concerto GrossoMusica Alta RipaThe Age Of Passions + +1588246Volker MöllerClassical violin and viola player.Needs VoteMusica Antiqua KölnConcerto Köln + +1588248Vincent Van BallegooijenClassical oboist.Needs VoteVincent Van BallegooienVincent Van BallegoyenVincent van BallegooienVincent van BallegooijenVincent van BallegooyenVincent van BallegoyenConcerto KölnNetherlands Bach CollegiumTelemann-Kammerorchester MichaelsteinThe Northern Consort + +1588252Paul Van Der LindenOboe and recorder player. +Paul van der Linden studied at the Royal Conservatory in The Hague recorder and baroque oboe. In 1984 I received the degree performer for recorder accompanied by Ricardo Kanji. +He also crafts classical wind instruments.Needs Votehttp://www.paulvanderlinden.nl/index.htmPaul van der LindeLes Arts FlorissantsWiener AkademieMusica Ad RhenumLes Musiciens Du LouvreHandel's Company + +1588253Helmut BrannyGerman contrabassist and conductorNeeds Votehttps://en.wikipedia.org/wiki/Helmut_BrannyBrannyStaatskapelle DresdenCappella Sagittariana DresdenDresdner KapellsolistenDresdner BarockorchesterConcertino DresdenCappella Musica Dresden + +1588277Diego MontesArgentinean clarinetist, born in 1958.Needs Votehttps://diegomontes.org/Collegium VocaleConcerto KölnLe Concert Des nationsThürmchen EnsembleDas Neue Orchester + +1588452Krešimir BaranovićKrešimir BaranovićKrešimir Baranović (25 July 1894 – 17 September 1975) was a Croatian composer and conductor. He was director and conductor of the Zagreb Opera, Belgrade Opera and professor at the Belgrade Music Academy. + +As a composer he wrote ballets, operas, vocal and orchestral works, many drew from Croatian folk music. + +As conductor, Baranović was highly regarded and influential. He was the first in Croatia to conduct a performance of Mussorgsky’s Boris Godunov in 1918 and Shostakovich’s Katerina Izmailova in 1937, and was the first to put the most important ballets of Stravinsky on the Zagreb stage, the first outside Czechoslovakia to put on Smetana’s Libuše. He paid a lot of attention to first performances of the most important music theatre works of Croatian composers. + +He also composed music for Yugoslav films and shorts in the 1950s including Cudotvorni mac (1950), Nevjera (1953), Anikina vremena (1954), Gospodja ministarka (1958).Needs Votehttps://en.wikipedia.org/wiki/Kre%C5%A1imir_Baranovi%C4%87BaranovichK. BaranovichK. BaranovićK.BaranovićKreshimir BaranovichKreshimir BaranovićК. БарановичК. БарановићКрешимир БарановићSlovak Radio Symphony OrchestraBeogradska Filharmonija + +1588554Elly NeyGerman pianist of the Classical-Romantic repertoire who specialized in [a=Ludwig van Beethoven] (27 September 1882 in Düsseldorf, German Empire; † 31 March 1968 in Tutzing, Bavaria, Germany). + +She began a music education at the Cologne Conservatory and won the Mendelssohn Scholarship in 1901 to study in Vienna with [a=Theodor Leschetizky] and [a=Emil Von Sauer]. Ney had a successful concert career as a virtuoso pianist. Elly was married to the violinist [a=Willem Van Hoogstraten] from 1911 to 1927. + +In 1937, Elly Ney joined the Nazi Party and participated in "cultural education" camps, earning an honorary membership in the League of German Girls. She was a pronounced National Socialist and held anti-Semitic views.Needs Votehttps://en.wikipedia.org/wiki/Elly_Neyhttps://de.wikipedia.org/wiki/Elly_Neyhttps://www.proclassics.de/kuenstler/elly-ney-lebenslauf/https://adp.library.ucsb.edu/names/103352NeyЭлли НейElly Ney Trio + +1588739Anneke BoekeClassical recorder playerNeeds VoteThe English Baroque SoloistsNetherlands Bach CollegiumGesualdo Consort Amsterdam + +1588745Marcel BeekmanClassical tenor.Needs Votehttp://www.marcelbeekman.com/https://www.facebook.com/marcel.beekman.779https://www.youtube.com/channel/UCQEF4AnjV-SopH3odNCVdFwBeekmanHuelgas-EnsembleGesualdo Consort AmsterdamNederlands KamerkoorLa Sfera Armoniosa + +1588864Helmut RoloffHelmut RoloffGerman pianist and teacher, born 9 October 1912 in Gießen Germany, died 29 September 2001 in Berlin, Germany. Father of [a=Stefan Roloff].Correcthttp://en.wikipedia.org/wiki/Helmut_RoloffHelmuth RoloffProf. Helmut RoloffEric Hoff + +1588930Vladimír VálekCzech conductor . He was the Principal Conductor of the Prague Radio Symphony Orchestra from 1985 until 2011 and Slovak Philharmonic from 2004 until 2007. +Born 2 September 1935, Nový Jičín - died 16 February 2025Needs Votehttps://www.imdb.com/name/nm4816809/https://cs.wikipedia.org/wiki/Vladim%C3%ADr_V%C3%A1lekhttps://en.wikipedia.org/wiki/Vladim%C3%ADr_V%C3%A1lekV. ValekV. VálekV.VálekVl. VálekVladimir ValekVladimir VálekVladimír ValekВладимир ВалекThe Prague Symphony OrchestraThe Czech Philharmonic OrchestraSlovak Philharmonic OrchestraPrague Radio Symphony OrchestraArmádni Umělecký Soubor Víta Nejedlého + +1589802Sebastian CombertiBritish classical cellist, born in London, UK.Needs Votehttp://www.naxos.com/person/Sebastian_Comberti/37595.htmCombertiThe Academy Of Ancient MusicLondon Mozart PlayersLondon Classical PlayersTaverner PlayersHanover BandDivertimentiEx Cathedra Baroque Orchestra + +1589838Silvia SchweinbergerClassical violinist.Needs Votehttps://www.facebook.com/silvia.schweinbergerSylvia SchweinbergerThe English Baroque SoloistsThe Amsterdam Baroque OrchestraCamerata Academica SalzburgOrchestra Of The Age Of EnlightenmentHanover BandNeue Hofkapelle MünchenConcerto Stella Matutina + +1589840Timothy LyonsClassical double bassist.Needs VoteTim LyonsTimothy LyonThe Academy Of Ancient MusicGabrieli PlayersHanover BandLondon MusiciThe English Concert + +1589841Kirsten KlingelsClassical violinist.Needs VoteThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentHanover BandThe Orchestra Of St. John'sThe Mozartists + +1589930Peter NallBritish classical violinist, and instrumental dealer. +He studied at the [l290263]. He has been a member of both the [a=BBC Philharmonic] and [a=BBC Radio Orchestra] before joining the [a=Bournemouth Sinfonietta] as a Sub-principal 1st Violin in 1992 until the orchestra's closure in November 1999. He has been soloist and director of the [b]English National Baroque Ensemble[/b], and Co-Leader of the [a=Orchestra Of The Swan]. He was a member of the 2nd violin section of the [a=Philharmonia Orchestra]. For fourteen years, he played full-time in the 1st Violin section of the [a=London Philharmonic Orchestra]. He joined the [b]Ealing Symphony Orchestra[/b] in 2009 being appointed Leader in 2010. In 2015, he was appointed Leader of the [b]Rehearsal Orchestra[/b]. That same year, he founded the [b]Nall Ensemble[/b] (that features the principal players from the Ealing Symphony Orchestra).Correcthttp://www.peternallviolins.com/https://www.linkedin.com/in/peter-nall-84866675/?originalSubdomain=ukhttps://www.ealingso.org.uk/leaderhttp://www.rehearsal-orchestra.org/leaders#readPete NallLondon Philharmonic OrchestraBournemouth SinfoniettaPhilharmonia OrchestraBBC PhilharmonicBBC Radio OrchestraOrchestra Of The Swan + +1590028Ingeborg ScheererClassical violinist.Needs VoteIngeborg Scheerer-JoyJunge Deutsche PhilharmonieLa StagioneCamerata KölnCappella ColoniensisNova StravaganzaPleyel Quartett Köln + +1590063Philippe SuzanneClassical flautist.Needs VoteLes Arts FlorissantsLa Chapelle RoyaleMusica Antiqua KölnLes Musiciens Du Louvre + +1590142Pierre Fournier BidozNeeds Major ChangesPerre Fournier BidazPierre Fournier Bidaz + +1590189Jean-Marie PérierJean-Marie PilluFrench photographer (born 1st of February 1940 in Neuilly sur Seine, France). Jean-Marie was known for having worked for the well known French magazine "Salut Les Copains". +He is also the son of [a4406262] and [url=http://www.discogs.com/artist/Henri+Salvador]Henri Salvador[/url], who has never acknowledged him. He was raised by [a815286], who recognized him. +Needs Votehttp://www.jean-marie-perier.net/https://films.discogs.com/credit/257271-jean-marie-perier"Salut Les Copains" (Perier)"Salut Les Copains" : Jean-Marie PerierJ .M. PerierJ-M PerierJ-M PérierJ-M. PerierJ-M. Perier (Salut Les Copains)J-M. PerrierJ. -M PérierJ. M PérierJ. M. PerierJ. M. Perier - Salut Les CopainsJ. M. Perier et XJ. M. PerrierJ. M. PérierJ. M. Périer (Salut Les Copains)J. P. PérierJ.- M. PerierJ.- M. PérierJ.-M PerierJ.-M. PerierJ.-M. Perier "Salut Les Copains"J.-M. Perier S.L.C.J.-M. PerrierJ.-M. Perrier (SLC)J.-M. PérierJ.-M. Périer "Salut Les Copains"J.-M.PérierJ.M PerierJ.M PérierJ.M. PerierJ.M. Perier "Salut Les Copains"J.M. Perier (S.L.C.)J.M. Perier (Salut Les Copains)J.M. PerrierJ.M. PérierJ.M. Périer (L.S.C.)J.M.PerierJ.P. PerierJ.m. PerrierJM PérierJean - Marie PerierJean - Marie PérierJean François PerrierJean Maria PerierJean Marie PerierJean Marie PèrierJean Marie PérierJean-Marie BerrierJean-Marie Berrier S.L.C.Jean-Marie PERIERJean-Marie PerierJean-Marie Perier S.L.C.Jean-Marie PerrierJean-Marie PérrierM. PérierPerierPerier "Salut Les Copains"Saudação aos Companheiros + +1590465Adrian BendingClassical percussionist.Needs VoteOrchestra Of The Age Of EnlightenmentThe King's ConsortEuropean Soloists Ensemble + +1590467Kevin RundellBritish classical double bassist and Professor of Double Bass. +After a year touring with the [a=Scottish Baroque Ensemble], he joined the [a855061] at the age of 19. Kevin’s first Principal position was with the [a=Bournemouth Symphony Orchestra] in 1976. In 1980, he joined [a=The English National Opera Orchestra] as Principal, where he remained for ten years. Former Joint Principal Double Bass of the [a=London Symphony Orchestra] (1991-1992). Principal Double Bass of the [a=London Philharmonic Orchestra] since 1991. +He was appointed Professor at [l305416] in 1975 at the age of 22 (one of the youngest appointments ever made), a position he still holds. Between 1975 and 1990 he was also a Professor of Double Bass at [l680970].Needs Votehttps://lpo.org.uk/people/kevin-rundell/https://www.gsmd.ac.uk/staff/kevin-rundellK. RundellMr Kevin RundellMr. Kevin RundellLondon Symphony OrchestraLondon Philharmonic OrchestraBournemouth Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenScottish Baroque EnsembleThe London Double Bass SoundThe English National Opera OrchestraThe Palm Court Theatre Orchestra + +1590469Julian MiloneBritish violinist, arranger and composer, born in July 1958. +He studied at the [l290263]. In April 1979 he joined the first violin section of the [a=Royal Liverpool Philharmonic Orchestra] and four years later became a member of the [a=Philharmonia Orchestra]. Member of the musical ensemble [b]Muzika Lyra[/b]. +Great nephew of composer and conductor, [a=Benjamin Britten].Needs Votehttps://www.feenotes.com/database/artists/milone-julian-1958-present/https://philharmonia.co.uk/bio/julian-milone/https://www.englisharts.org/about/biographies/milone-julianhttps://www.suffolkphil.org/julian-milonehttp://muzikalyra.co.uk/about-us/https://www.imdb.com/name/nm2146426/MilonePhilharmonia OrchestraRoyal Liverpool Philharmonic Orchestra + +1590970John MundayJohn Mundy (or Munday) (ca. 1550/1554 – 29 June 1630) was an English composer, virginalist and organist of the Renaissance period. The son and pupil of the eminent composer [a=William Mundy], he was organist at Eton, and succeeded John Marbeck after his death in 1585 as organist at St George's Chapel, Windsor. He received a bachelor of music degree from the University of Oxford in 1586, and his doctorate in 1624. In 1585 he was appointed joint organist of Westminster Abbey with Nathaniel Giles, a post he maintained until his death in 1630. Mundy was one of the earliest English madrigalists. He published a volume of Songs and Psalms in 1594, and contributed a madrigal, Lightly she whipped o'er the dales, to The Triumphs of Oriana (1601), a compilation of madrigals by Thomas Morley in honour of Queen Elizabeth I. He composed sacred music in English and Latin, including music for the Book of Common Prayer, and is represented in the Fitzwilliam Virginal Book by five pieces, including a magnificent set of variations on the popular song Goe from my window and a whimsical but fine miniature, Munday's Joy. He also wrote a setting of the recusant Chidiock Tichborne's poem My prime of youth before the latter's gruesome execution in 1586 for his part in the Babington plot. Mundy died on 29 June 1630 at Windsor, succeeded in his post there by his colleague Nathaniel Giles. +Also appears as John MundyNeeds Votehttp://en.wikipedia.org/wiki/John_Mundy_(composer)https://www.naxos.com/Bio/Person/John_Mundy/39833https://adp.library.ucsb.edu/index.php/mastertalent/detail/105459/Mundy_JohnJohn MundyMundayMundyДж. Манди + +1590972William InglottWilliam InglottOrganist and composer, born 1554; died 1621.Needs Votehttps://en.wikipedia.org/wiki/William_Inglotthttps://en.wikisource.org/wiki/Dictionary_of_National_Biography,_1885-1900/Inglott,_Williamhttps://www.prestomusic.com/classical/composers/5436--inglottInglotInglottW. InglottWilliam InglotWm Inglot + +1590973Martin PeersonMartin Peerson (or Pearson)English composer and organist (born between 1571 and 1573 - died December 1650 or January 1651).Needs Votehttp://en.wikipedia.org/wiki/Martin_PeersonM. PearsonM. PeersonMartin PearsonMartin PeeresonPeersonPeerson M.Мартін Пірсон + +1591117Marieke BlankestijnDutch classical violinist, born in The Hague, Netherlands.Needs Votehttps://www.rotterdamsphilharmonisch.nl/en/musicians/marieke-blankestijnhttp://www.coeurope.org/the-orchestra/members-of-the-orchestra/members-biographies/4Marieke BlankenstijnMarieke BlankenstynThe Chamber Orchestra Of EuropeLondon Mozart PlayersRotterdams Philharmonisch OrkestThe Gaudier Ensemble + +1591118Gert Jan LeuverinkDutch violinist.Needs VoteGert-Jan LeuverinkConcertgebouworkestMargiono Quintet + +1591182Roland PidouxFrench cellist, born 29 October 1946 in Paris and died 21 September 2025, France. He's the father of [a999651].Needs Votehttp://sartoryartists.com/en/roland-pidouxhttps://fr.wikipedia.org/wiki/Roland_Pidouxhttps://en.wikipedia.org/wiki/Roland_Pidouxhttps://www.imdb.com/name/nm2615463/PidouxRoland PidausRoland PidousピドゥーOrchestre National De FranceOrchestre National De L'Opéra De ParisLe Nouveau Trio PasquierGiant (21)Quatuor Via NovaLes Musiciens (2)Orchestre du Festival du Grand Rué "Les Grands Solistes Français" + +1591391Michael DupreeClassical woodwind player.Needs VoteMichael DuPreeMichael DupréLes Arts FlorissantsTafelmusik Baroque OrchestraCANTATA COLLECTIVE + +1591757Joseph GuastafesteJoseph Guastafeste (18 April 1930 - 22 September 2023) was an American classical double bass (contrabass) player.Needs VoteJoe GaustafesteJoe GuastafesteJoseph GudstafesteJoseph R. GuastafesteMannheim SteamrollerDallas Symphony OrchestraChicago Symphony OrchestraThe Contemporary Chamber Players Of The University Of ChicagoChicago Pro MusicaThe New Orleans Symphony + +1591760Joseph Di BelloJoseph DiBelloAmerican double bassist. He's the father of [a2907477].Needs VoteJoseph DiBelloJoseph DibelloChicago Symphony OrchestraMilwaukee Symphony Orchestra + +1591764Charles GeyerAmerican trumpet player and Professor of Trumpet, born in 1944.Needs VoteChicago Symphony OrchestraHouston Symphony OrchestraEastman Brass QuintetThe Contemporary Chamber Players Of The University Of ChicagoThe Chicago Chamber MusiciansChicago Chamber Musicians Brass Quintet + +1591768Charlie SchuchatCharles SchuchatAmerican tubistNeeds VoteCharles SchichatCharles SchuchatCharlie ShuchatMannheim SteamrollerChicago Symphony OrchestraAsbury Brass QuintetElgin Symphony OrchestraChicago Classic BrassChicago SinfoniettaChicago Philharmonic + +1591771Stephen LesterAmerican double bassist.Needs VoteMannheim SteamrollerChicago Symphony OrchestraMilwaukee Symphony Orchestra + +1592121Ernst HinreinerAustrian conductor, born 1 January 1920 in Salzburg, Austria and died 20 May 1999 in Salzburg, Austria. Founder of [a=Salzburger Mozarteum Choir].Needs VoteE. HinreinerErnst HinreiterProf. Ernst HinreinerCamerata Academica SalzburgErnst Hinreiner Choir + +1592628Edith Saint MardClassical alto vocalistCorrectEdith Saint-MardCollegium Vocale + +1592630Jean-Charles FerreiraClassical viola player.Needs VoteOrchestre Des Champs ElyséesCollegium Vocale + +1592631Stephan MaciejewskiBass vocalist.CorrectStéphane MaciejewskiLes Arts FlorissantsCollegium VocaleLa Chapelle Royale + +1592632Corinne TalibartClassical soprano vocalistCorrectCollegium VocaleChoeur National De L'Opéra De Paris + +1592634Damien GuffroyClassical double bassist and photographerNeeds VoteOrchestre Des Champs ElyséesLes Arts FlorissantsLes Talens LyriquesLes Folies FrançoisesIl GardellinoLes SièclesHarmonia NovaTous Dehors + +1592636Annette Schneider (2)Classical soprano.Needs VoteAnnette Schneider-SpindlerRIAS-KammerchorCollegium VocaleKammerchor StuttgartVokalensemble FrankfurtRheinische Kantorei + +1592637Guy Van WaasClassical conductor, oboist and clarinetist.Needs Votehttps://en.wikipedia.org/wiki/Guy_Van_WaasG. Van WaasOrchestre Des Champs ElyséesLe Concert Des nationsLes Talens LyriquesRicercar AcademyDas Reicha'sche Quintett + +1592638Nicolas BauchauBelgian classical tenor vocalistNeeds VoteCollegium VocaleChoeur de Chambre de Namur + +1592640Hugues PrimardClassical tenor.Needs VoteCollegium VocaleDiabolus In MusicaLe Poème HarmoniqueEnsemble Jacques ModerneDoulce MémoireArs Antiqua De Paris + +1592641Emmanuelle HalimiFrench soprano vocalistNeeds VoteEmmanuelle HalimiCollegium VocaleLe Parlement De Musique + +1592644Gyslaine WaelchliSwiss soprano vocalist from Geneva.Needs Votehttps://www.evpoche.com/gyslaine-waelchliGyslaine Corboz-WaelchliCollegium VocaleVocal De Poche + +1592645Martin MürnerClassical hornist.Needs VoteOrchestre Des Champs ElyséesAnima EternaConcerto KölnIl Giardino Armonico + +1592647Jane BoothJane Booth IrvingPeriod instrument clarinetist and basset hornist.Needs Votehttps://janeboothclarinets.wordpress.com/Orchestre Des Champs ElyséesThe Academy Of Ancient MusicLa Petite BandeLondon Classical PlayersArcangeloClassical OperaThe MozartistsLes Jacobinsensemble F2 + +1592649Marion LarigaudrieClassical violinist.CorrectMarion LarigauderieOrchestre Des Champs ElyséesCollegium Vocale + +1592650Andreas GislerTenor vocalistNeeds VoteCollegium VocaleThe Amsterdam Baroque Orchestra + +1592651Elisabeth BelgranoClassical soprano vocalistNeeds VoteConvivium Musicum GothenburgenseCollegium Vocale + +1592652Laurent BruniClassical viola player.CorrectOrchestre Des Champs ElyséesCollegium VocaleLes Talens Lyriques + +1592653Sandra RaoulxClassical alto vocalistCorrectCollegium Vocale + +1592655Cécile PilorgerFrench classical mezzo-soprano vocalistNeeds VoteCollegium VocaleLes Demoiselles De Saint-CyrMaîtrise De Notre-Dame De ParisLes Cris de ParisPygmalion + +1592974Irv StokesAmerican trumpet player, born 11 November 1926 in Greensboro, North Carolina, USA.Needs VoteIrvin StokesIrving StokesBuddy Johnson And His OrchestraEarl Hines And His OrchestraThe Bobby Donaldson GroupPanama Francis And The Savoy SultansTad Shull QuintetOliver Jackson Quintet + +1593003Jürgen ButtkewitzGerman bassoonist and composer, born 1939 in Berlin, Germany.CorrectBerliner Sinfonie Orchester + +1593216Bernhard GedigaClassical trumpet (clarino) player.Needs VoteBernard GedigaMünchener Bach-OrchesterHamburger Bläserkreis Für Alte Musik + +1593272Gernot SchulzGernot Schulz (born 22 February 1952) is a German conductor and percussionist. +A member of the [a260744] from 1974 to 2004.Needs Votehttp://www.gernotschulz.com/Prof. Gernot SchulzBerliner PhilharmonikerStaatsorchester Stuttgart + +1593412Eleonore PameijerEleonore PameijerDutch classical flute player. +Makes liner notes for releases and editor at [a8199751]Needs Votehttp://www.eleonorepameijer.com/Eleanore PameijerEleonoor PameijerEleonora PameijerEleonore PameyerLeonore PameijerLeonore PameyerPameijerAsko EnsembleWillem Breuker KollektiefNieuw Sinfonietta AmsterdamGijsbrecht Van Aemstel QuartetSoesja Citroen Sextet + +1593433Claire HuydtsViolin and viola playerNeeds VoteNieuw Sinfonietta Amsterdam + +1593459Janny Van WeringDutch harpsichordist, born 1909, died 2005.Needs Votehttps://www.semibrevity.com/2018/02/janny-van-wering-the-most-respected-dutch-harpsichordist-from-the-1930s-to-the-1950s/https://www.nldiscografie.nl/janny-van-weringJannie Van WeringJannie van WeringJanny van WeringJanny van WerlingJanny van WerringConcertgebouworkestLeonhardt-Consort + +1593798Philippe BreasPhilippe BréasClassical hornist.Needs VotePhilippe BréasEnsemble Musique ObliqueOrchestre National De L'Opéra De ParisEnsemble Carpe DiemLes Cuivres Français + +1593800Jean-Louis GeorgelFrench Baritone & Bass vocalist.Needs VoteLe Concert SpirituelLa Chapelle RoyaleLa Simphonie Du MaraisA Sei Voci + +1593802Laurent SlaarsClassical baritone & tenor vocalistCorrectLes Arts FlorissantsLa Chapelle Royale + +1593803Gilles MercierClassical trumpeter.Needs VoteG. MercierEnsemble Musique ObliqueOrchestre Philharmonique De Radio FranceLes Cuivres Français + +1594165Leo Van Der LekDutch classical wind instrument artistCorrectL. V. D. LekConcertgebouworkest + +1594167Thom De KlerkDutch bassoonist, double reed maker, music teacher, conductor and music director (the Netherlands, the Hague, May 10, 1912 - Abcoude, October 13, 1966). +He founded the [a=Nederlands Blazers Ensemble] in 1959. +Needs Votehttp://en.wikipedia.org/wiki/Thom_de_KlerkTh. De KlerkThom. De KlerkNetherlands Chamber Orchestra + +1594196Jo JudaJo Juda (7 September 1909 - 20 January 1985) was a Dutch classical violinist. He's the father of [a839887].Needs VoteConcertgebouworkestUtrechts Stedelijk OrkestRadio Filharmonisch OrkestHet Gelders Orkest + +1594255Jack Van GeemAmerican percussionist and timpanist.Needs VoteJack W. Van GeemSan Francisco SymphonyKōtèkan + +1594409Bill Robinson (4)SaxophonistCorrectRobinsonStan Kenton And His OrchestraDick Grove Big Band + +1594414Red KellyThomas Raymond KellyUS jazz bassist, born August 29, 1927 in Shelby, MT, died June 9, 2004. +Kelly joined [a=Chubby Jackson]'s big band in 1949, played with [a=Charlie Barnet], [a=Red Norvo], [a=Woody Herman], [a=Lennie Niehaus], [a=Stan Kenton] and others in the 1950s. From 1961 to 1967 he toured and recorded with [a=Harry James]. +In 1986 Kelly retired from performing and opened his own Tacoma jazz club, Kelly's; he was inducted into the Seattle Jazz Hall of Fame in 2000.Needs VoteKellyRed KelleyThomas "Red" KellyThomas KellyTom "Red" KellyTom KellyHarry James And His OrchestraWoody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman And His Third HerdThe HerdmenDick Collins And The Runaway HerdThe Modest Jazz TrioThe Sax Maniacs (3)Bill Ramsay/Milt Kleeb Band + +1595156Valda AvelingValda Rose AvelingAustralian pianist, harpsichordist and clavichordist, 16 May 1920 - 21 November 2007.Needs Votehttp://en.wikipedia.org/wiki/Valda_AvelingAvelingLondon Philharmonic OrchestraMenuhin Festival Orchestra + +1595674Marc LatarjetFrench classical cellist.Needs VoteOrchestre National De L'Opéra De Paris + +1595864William McGlaughlinAmerican composer, conductor, trombonist, music educator, and classical music radio host, born 3 October 1943 in Philadelphia, Pennsylvania.Needs Votehttp://billmcglaughlin.com/https://en.wikipedia.org/wiki/Bill_McGlaughlinB. McGlaughlinBill McGlaughlinThe Philadelphia OrchestraThe Saint Paul Chamber OrchestraPittsburgh Symphony OrchestraPenn Contemporary Players + +1595965Nikolai GraudanClassical cellist, born 1896 in Liepāja, Russian Empire and died 1964 in Moscow, Russia.Needs Votehttps://adp.library.ucsb.edu/names/109472Nicolai GraudanNikolaiニコライ・グラウダンBerliner Sinfonie OrchesterMinneapolis Symphony OrchestraThe Festival Quartet + +1595986Alfonso FerraboscoAlfonso Ferrabosco the youngerEnglish composer and viol player of Italian descent (born Greenwich, c. 1575 - buried Greenwich, March 11, 1628) . He was the illegitimate son of the Italian composer [a1705666] (the elder).Needs Votehttp://en.wikipedia.org/wiki/Alfonso_Ferrabosco_the_younger"Il Padre"A. Ferrabosco IIA. FerraboscoA. Ferrabosco IIA. FerrabsocoAlfonsoAlfonso Ferrabasco IIAlfonso FerraboscaAlfonso Ferrabosco (Hijo)Alfonso Ferrabosco (The Younger)Alfonso Ferrabosco D. J.Alfonso Ferrabosco IAlfonso Ferrabosco IIAlfonso Ferrabosco JuniorAlfonso Ferrabosco Of GreenwichAlfonso Ferrabosco The YoungerAlfonso Ferrabosco the YoungerAlphonso Ferrabosco IIAlphonso Ferrabosco IIndFerraboscoFerrabosco IIIIThomas Ravenscroft IIА. Феррабоско II + +1596104Chico AlvarezAlfred ÁlvarezCanadian jazz trumpeter primarily associated with Stan Kenton in the 1940s. Born February 3, 1920 in Montreal, Canada, died August 1, 1992 in Las Vegas, Nevada. + +For the visual artist, writer and Afro-Cuban singer, percussionist and bandleader active in the 1970s to present, see [a=Chico Alvarez (2)].Needs Votehttp://en.wikipedia.org/wiki/Alfred_%22Chico%22_Alvarezhttps://adp.library.ucsb.edu/names/301171Alfred "Chico" AlvarezAlvarezChico AlarezChico AlvarazGreg MurphyStan Kenton And His OrchestraPete Rugolo OrchestraBob Keene OrchestraMaynard Ferguson & His OrchestraTito Rivera Y Su Orquesta Habana Mambo + +1596402Yvon RepérantHarpsichordist and organist.Needs VoteYvon ReperantLes Arts FlorissantsLes Musiciens Du LouvreEnsemble Clément JanequinRicercar Consort + +1596592Elisabeth RaveClassical soprano vocalistNeeds VoteRIAS-KammerchorLa Chapelle RoyaleKammerchor Stuttgart + +1596595Nicholas Hadleigh WilsonTenor.Needs VoteNicholas Hadleigh-WilsonNicholas WilsonLondon VoicesLa Chapelle RoyaleThe English Concert Choir + +1597133Suske-QuartettGerman string quartet from Berlin founded in 1965 by [a941942]. Disbanded in 1980.Needs VoteBerlin String QuartetBerliner QuartettBerliner StreichquartettDas Suske-QuartettSuske QuartetSuske-Quartett Berlinベルリン弦楽四重奏団Klaus PetersKarl SuskeKarl-Heinz DommusMatthias Pfaender + +1597135Rainer HuckeGerman contrabass playerNeeds VoteRainer BuckeReiner HuckeGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1598553Frederic TardyFrédéric Tardy is a French oboist.Needs VoteFrédéric TardyBayerisches StaatsorchesterOrchestre De L'Opéra De LyonOrchestre National Du Capitole De Toulouse + +1598555Jean-Michel BertelliClassical clarinetistNeeds VoteOrchestre De L'Opéra De Lyon + +1599921Maurice HassonFrench-Venezuelan violinist and professor of violin, born 1934 in France.Needs VoteThe Academy Of St. Martin-in-the-Fields + +1599922David PetriDanish cellist. He's the son of [a1599923] and [a2410930] and the brother of [a1155414].CorrectHallé OrchestraMichala Petri Trio + +1599948Jack Cathcart John Wylie Cathcart Jr.American trumpeter, pianist, orchestra leader and arranger. +Born November 3, 1912 in Bloomington, Indiana, USA. +Died December 24, 1989 in Las Vegas, Nevada, USA. +He was married to [a3217015] (1941-1963) (Judy Garland's sister). +Brother of jazz trumpeters [a335597] and [a1610814]. + +Member of the Comedian Harmonists (American Group) in 1948 and 1949. Worked as musical director for Judy Garland in the 1950s. He was a sideman in Artie Shaw's Orchestra and later worked in Las Vegas casinos including being musical director for the Riviera.Needs Votehttps://www.imdb.com/name/nm0146105/https://wikitia.com/wiki/Jack_Cathcarthttps://www.allmusic.com/artist/jack-cathcart-mn0001240050?cmpredirecthttp://www.thejudyroom.com/capitol/missshowbiz.htmlJack Cathcart OrchestraJack Cathcart's OrchestraArtie Shaw And His OrchestraComedian HarmonistsJack Cathcart Orchestra + +1600565Jörg GensleinGerman tenor / baritone vocalist and conductor, born in 1978 in Bamberg, Germany.Needs Votehttps://www.bach-cantatas.com/Bio/Genslein-Jorg.htmRIAS-KammerchorKammerchor Stuttgart + +1600715Duo (8)Gery Pern & QuaranteDuo is a group of two DJs and producers from Marseille, France.Needs Votehttps://www.residentadvisor.net/dj/duohttps://www.facebook.com/Duo-139691032760269/https://soundcloud.com/duounderbookinghttps://www.mixcloud.com/DuoMarseille13/http://www.myspace.com/duominiDUUO + +1601160Raphaël LemaireTrombonistNeeds VoteRaph' "Gaulain" LemaireRaphael LemaireРафаэль ЛемэрOrchestre Philharmonique De Radio FranceEnsemble À Vent De Bourgogne + +1601707Richard CohnClassical baritone vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/richard-cohn/Chicago Symphony Chorus + +1602766René MazeClassical trumpeter.Needs VoteLes Arts FlorissantsCollegium VocaleLe Concert Des nationsCafé ZimmermannRicercar ConsortEnsemble MatheusEl Concierto EspañolLe Concert Royal + +1602881Jahan YousafPakistani-​American singer and songwriter. Sister of [a2942766]Needs Votehttps://twitter.com/krewellajahanJ. YousafKrewella + +1602941Toomas VeenreViola player.Needs VoteT. VeenreEstonian National Symphony OrchestraTallinn Chamber Orchestra + +1603382Colin MawbyBritish organist, conductor and composer (Born: 9 May 1936 – Died: 24 November 2019) +He received his earliest musical education at Westminster Cathedral choir school, where he acted as assistant to [a532089] at the organ from the age of 12. He subsequently studied at the Royal College of Music with [a1044507] and [a1548878]. During this time he worked with [a397616] and [a1028502]. +Former Master of Music at the [a=Westminster Cathedral Choir], artistic director of the National Chamber Choir of Ireland and choral director for the Irish national broadcaster, Raidió Teilifís Éireann (RTÉ). He also conducted the first performance of the early music vocal ensemble [a971041].Correcthttp://en.wikipedia.org/wiki/Colin_Mawbyhttp://www.cmc.ie/composers/composer.cfm?composerID=84http://www.ocp.org/artists/2858C. MawbyColin MorebyMawbyIrish National Chamber ChoirWestminster Cathedral Choir + +1603423Joe RushtonJoseph Augustine Rushton, Jr.American jazz bass saxophonist, born April 19, 1907 in Evanston, Illinois, died March 2, 1964 in San Francisco, California. +Took up bass saxophone in 1928, having played drums, clarinet and other saxophones. Led own band in Chicago until 1932, then with other band leaders for the rest of the 1930s. In early 1940s with [a=Jimmy McPartland] and [a=Bud Freeman], then with [a=Benny Goodman] to California (1942-1943). Settled in California, played with [a=Horace Heidt] 1944-1945, and recorded as a leader 1945, 1947. +Also worked [a=Ted Weems], [a=Floyd O'Brien], [a=Red Nichols] and others.Needs VoteJ. A. Rushton, Jr.JoeJoe "Blizzard Gizzard" RushtonJoe "Blizzard" RushtonJoe (Blizzard Gizzard) RushtonJoe Rushton Jnr.Joe Rushton, Jr.Joseph RushtonPaul Whiteman And His OrchestraThe Rampart Street ParadersRushton's California RamblersKansas City Frank & His FootwarmersBud Jacobson's Jungle KingsRosy McHargue's Memphis Five (2) + +1603424Wayne SongerClarinetist and saxophonistCorrectWayne E. SongerWayne SongersGordon Jenkins And His OrchestraClaude Gordon And His Orchestra + +1604395New York Choral ArtistsNeeds Major ChangesMen Of The New York Choral ArtistsNew York Chorus ArtistsThe New York Choral Artists + +1604742Ladislav SlovákLadislav SlovákSlovak classical conductor and educator. + +Born September 19, 1919 in Veľké Leváre (former Czechoslovakia), died July 22, 1999 in Bratislava, Slovakia.Needs Votehttp://www.osobnosti.sk/index.php?os=zivotopis&ID=59171http://www.naxos.com/person/Ladislav_Slovak/31867.htmhttp://en.wikipedia.org/wiki/Ladislav_Slov%C3%A1kL SlovakL. SlovakL. SlovákLadislav SlovacLadislav SlovakSlovakZaslúžilý Umelec Ladislav SlovákЛадислав СловакSlovak Radio Symphony Orchestra + +1604749Juraj ČižmarovičSlovene violinist and conductor.Needs Votehttp://www.jurajcizmarovic.com/Juraj CizmarovicJuray CizmaroJuray CizmarovJuray CizmarovicJuray CizmasrovicOrchester der Bayreuther FestspieleCapella IstropolitanaGürzenich-Orchester Kölner PhilharmonikerWDR Rundfunkorchester KölnWDR Funkhausorchester + +1604866Anna HölblingováAnna HölblingováSlovak violinist and professor. Born 1947 in Trenčín (former Czechoslovakia). [a=Quido Hölbling]’s wife.Needs Votehttp://www.hc.sk/src/teleso.php?lg=sk&id=2224A. HoblingovaA. HölblingA. HölblingováAnnaAnna HobblingAnna HoeblingAnna HoelblingAnna HoelblingaAnna HoelblingovaAnna HolbingAnna HolblingAnna HolblingovaAnna HöblingAnna HölbingAnna HölblingAnna HölblingovaHoelblingovaCapella IstropolitanaSlovak Chamber Orchestra + +1604887Ladislav KyselákLadislav KyselákCzech violist. Born in 1956.Needs Votehttp://hf.jamu.cz/seznam-pedagogu/staff/kyselak.htmlLadislav KyselakJanáček QuartetCapella Istropolitana + +1605311Wolfgang DünschedeHans Wolfgang DünschedeGerman flutist (* 18 June 1949; † 16 March 2019 in Berlin, Germany); member of the [a260744] from 1976 - 2002. +Same as [a3455112].Needs Votehttp://www.flutepage.de/deutsch/composer/person.php?id=980https://trauer.tagesspiegel.de/traueranzeige/hanswolfgang-duenschedeHans Wolfgang DünschedeWolfgang DünnschedeBerliner PhilharmonikerConsortium ClassicumClassic QuartettDie 14 Berliner Flötisten + +1605508Ben GriffithsBen Griffiths is a British double bassist. +Needs VoteLondon Symphony OrchestraAurora Orchestra + +1605596Eduardo VassalloEduardo Vassallo is a tutor in cello at the Royal Northern College of Music and Principal Cellist with the City of Birmingham Symphony Orchestra. He was born in Buenos Aires in 1961.Needs VoteEduardo VasalloEduardo VassaloCity Of Birmingham Symphony OrchestraCamerata Lysy GstaadTango 7 + +1605834Jean-Pierre SabouretFrench violinist, born in December 1944, died April 25, 2007.Needs Votehttps://fr.wikipedia.org/wiki/Jean-Pierre_Sabouret_%28violoniste%29JP SabouretJean Pierre SabouretOrchestre National De L'Opéra De ParisEnsemble L'ItinéraireOrchestre Philharmonique De StrasbourgQuatuor LoewenguthQuatuor Via Nova + +1608167Caz WoodNeeds Major Changes + +1608449Christine PalmerViolist.Needs VoteRoyal Philharmonic Orchestra + +1609138Ernest PaananenErnest Paananen was Finnish American folk musician, singer, violinist and concertmaster. +Husband of [a1609135]. + +Born: December 26, 1879 in Pihtipudas, Finland +Died: January 12, 1951 in New York, USNeeds Votehttps://adp.library.ucsb.edu/names/110969E. PaananenPaananenPaananen-Kosola OrkesteriPaananen Ja Kump + +1609269Pat SimonAngelika Behrens SimonGerman singer, born 31 August 1949 in Hamburg. Germany. Daugther of [a=Hans Arno Simon], sister of [a=Bettina Simon], [a=Bernd Simon] and [a=Andreas Simon]. +CorrectG. SimonP. SimonSimonAngelika Behrens SimonAngelika Simon + +1610382Michael FreedmanBritish conductor - orchestra leader - viola player. Born on 31 August 1911 - Died on 8 August 1979. +He joined the [a=Philharmonia Orchestra] in 1947 as viola player. He formed his own band, [a=Michael Freedman And His Orchestra] in 1949 and [b]Michael Freedman Ladies' Orchestra[/b] in 1956 (both light music orchestras). He left the music business and started a new career as a London taxi driver (late 1960s/early 1970s ?).Needs Votehttp://www.mastersofmelody.co.uk/michaelfreedman.htmhttp://www.guildmusic.com/marketing/GLCD5210/GLCD5210_FullBooklet.pdfMichael Freedman And His Symphony OrchestraSerge LamontLionel HaleJacques Leroy (2)Philharmonia OrchestraMichael Freedman And His Orchestra + +1610802Magdalena MüllerperthMagdalena MüllerperthGerman pianist, born 18 September 1992 in Pforzheim, Southwest Germany.Needs Votehttps://de.wikipedia.org/wiki/Magdalena_M%C3%BCllerperthhttp://www.stuttgarter-philharmoniker.de/1383.htmlhttp://www.bach-cantatas.com/Bio/Mullerperth-Magdalena.htmStuttgarter Philharmoniker + +1610814Jimmy CathcartJames Edward CathcartAmerican Jazz trumpeter. +Born March 31, 1916. +Died November 1970 age of 54). +Brother of jazz trumpeters [a335597] and [a1599948].Needs Votehttps://www.imdb.com/name/nm0146103/Colonel Jimmy CathcartJ. CathartJ. CathcartJack CathcartJim CathcartArtie Shaw And His Orchestra + +1612283Hugh AndersonCredited as percussionist.Needs VoteGerald Wilson OrchestraDavid Carroll & His Orchestra + +1612363William HallarTrombonistNeeds VoteBill HallarTommy Dorsey And His Orchestra + +1612365Harry SteinfeldCredited as oboe player.Needs VoteHenry SteinfeldTommy Dorsey And His OrchestraJohnny Richards And His Orchestra + +1612368Gerald GoffAmerican Trumpeter.Needs VoteG. GoffGerry GoffTommy Dorsey And His Orchestra + +1612665Jacques HoltmanDutch classical violinist and violist, born in Tegelen, Netherlands; died 11 March 2005 at the age of 71.Needs VoteJ. HoltmanJ. HoltmannJacques HoltmannJacques HoltomanConcertgebouworkestRotterdams Philharmonisch OrkestOrchestra Of The 18th CenturyConcerto AmsterdamAlma Musica AmsterdamOrkest Amsterdam DramaKunstmaandorkestAmati KwartetAmsterdams Nonet + +1613501Babe BowmanJazz Trombonist.Needs VoteArtie Shaw And His OrchestraSkinnay Ennis And His Orchestra + +1613503Rudolph TanzaJazz Saxophonist.Needs Votehttps://www.allmusic.com/artist/rudy-tanza-mn0001242374Rudy TanzaRydy TanzaArtie Shaw And His Orchestra + +1613504Phil NemoliJazz Oboist CorrectArtie Shaw And His Orchestra + +1613506Blake ReynoldsJazz saxophonistCorrectBlake D. ReynoldsBlake ReynoldArtie Shaw And His OrchestraBenny Goodman And His OrchestraThe Universal-International OrchestraSextette From Hunger + +1613507George ThowUS jazz trumpeter from the swing-era, played in many famous swing-jazz bands: Isham Jones, Dorsey Brothers, Benny Goodman, Artie Shaw and Lawrence Welk. +Born: July 08, 1908 in Cleveland, Ohio. +Died: April, 1987 in California. + +Needs VoteG. ThowG. ThowsGeorge ThrowGeorze ThowThowArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraGordon Jenkins And His OrchestraIsham Jones OrchestraThe Dorsey Brothers OrchestraSextette From HungerGeorge Van Eps Ensemble + +1613508Bud CarletonJazz Saxophonist.CorrectArtie Shaw And His Orchestra + +1613509Jack StaceyUS jazz saxophonist from the swing-era. + +Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/209748/Stacey_Jack?Matrix_page=100000https://adp.library.ucsb.edu/index.php/mastertalent/detail/345017/Stacy_JackJ. StaceyJack StacyArtie Shaw And His OrchestraJimmy Dorsey And His OrchestraThe Dorsey Brothers OrchestraGeorge Van Eps Ensemble + +1613910Don McCookSaxophonist active in the Big Band Era.CorrectDon CookDonald McCookMcCookCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +1613911Ray MichaelsJazz drummer from the Big Band era.Needs VoteA. MichaelsMichalsR. MichaelsRay MichaelRaye MichaelsRaymond MIchaelsRaymond MichaelsCharlie Barnet And His OrchestraLarry Clinton And His Orchestra + +1613912Ben Hall (4)Trombonist.CorrectBen HallBenn HallHallCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +1613954Louis HuntJazz trumpeterNeeds VoteL. HuntLouis Armstrong And His OrchestraChick Webb And His Orchestra + +1613955Billy HicksUS jazz trumpeter, vocalist active in the 30s.Needs VoteB. HicksHicksLouis Armstrong And His OrchestraTimme Rosenkrantz And His Barrelhouse BaronsBilly Hicks And His Sizzling Six + +1614064Oto CarrilloAmerican horn player.Needs VoteOto CarilloChicago Symphony Orchestra + +1614068John HagstromAmerican trumpeter.Needs VoteChicago Symphony Orchestra + +1614073Mark RidenourAmerican trumpet player.Needs VoteChicago Symphony Orchestra + +1614931Alessandro GargiuloClassical tenor vocalist.Needs VoteCoro Del Centro Di Musica Antica Di PadovaLa Stagione Armonica + +1614932Ilaria Maria CosmaItalian Alto vocalist.Needs VoteIlaria CosmaMaria CosmaCoro Del Centro Di Musica Antica Di PadovaLa Stagione ArmonicaMadrigalisti Del Centro Di Musica Antica Di Padova + +1614935Alessandro MagagninItalian bass vocalist.Needs VoteCoro Del Centro Di Musica Antica Di PadovaLa Stagione ArmonicaMadrigalisti Del Centro Di Musica Antica Di Padova + +1614939Roberto GonellaClassical tenor.CorrectBob GonellaCoro Del Centro Di Musica Antica Di PadovaLa Stagione Armonica + +1614942Viviana GiorgiItalian alto vocalist.Needs VoteCoro Del Centro Di Musica Antica Di PadovaLa Stagione ArmonicaMadrigalisti Del Centro Di Musica Antica Di Padova + +1614956Alberto MazzoccoClassical tenor vocalist.Needs VoteCoro Del Centro Di Musica Antica Di PadovaLa Stagione ArmonicaOficina MusicumMadrigalisti Del Centro Di Musica Antica Di Padova + +1616106Margaret BakerAustrian SopranoNeeds VoteMargaret Baker GenovesiMargaret Baker-GenovesiMargherita BakerMargherita Genovesi + +1616157Uwe TheimerAustrian conductor.CorrectTheimerU. TheimerDie Wiener SängerknabenChorus Viennensis + +1616159Karl DönchGerman singer and actor, born 8 January 1915 in Hagen, Germany and died 16 September 1994 in Vienna, Austria.Needs Votehttp://de.wikipedia.org/wiki/Karl_D%C3%B6nchCarl DoenchCarl DönchChorusDonchDönchKarl DoenchKarl Donchカール・デンヒWiener Staatsopernchor + +1616589Franco E Mino ReitanoNeeds Major ChangesB. Reitano, F. ReitanoB. e F. ReitanoBeniamino Reitano, Francesco ReitanoD. F. M. ReitanoDi ReitanoF E M ReitanoF E M. ReitanoF. Et M. ReitanoF. & B. ReitanoF. & M. ReitanoF. & R. ReitanoF. And M. ReitanoF. E M. Mino ReitanoF. E M. ReitanoF. E M.ReitanoF. E Mino ReitanoF. E. M. ReitanoF. EM. ReitanoF. M. ReitanoF. Mina ReitanoF. ReitanoF. Reitano - M. ReitanoF. Reitano / M. ReitanoF. Reitano M. ReitanoF. Reitano, M. ReitanoF. Reitano-B. ReitanoF. Reitano-M. ReitanoF. Reitano-Mino ReitanoF. Reitano/M. ReitanoF. e M. ReitanoF. e Mino ReitanoF. et M. ReitanoF.& M. ReitanoF.&M. ReitanoF.&M.ReitanoF.E.M. ReitanoF.M. ReitanoF.M.ReitanoF.Reitano-M.ReitanoF.e M. ReitanoF.e.M. ReitaneF.e.M. ReitanoFranco & Mino ReitanoFranco - Mino ReitanoFranco - ReitanoFranco E M. ReitanoFranco ReitanoFranco Reitano, Mino ReitanoFranco Reitano-Mino ReitanoFranco Y Mino ReitanoFranco e Mino ReitanoFranco&Mino ReitanoFranco-Mino ReitanoM. & F. ReitanoM. E F. ReitanoM. Reitano / ReitanoM. Reitano y ReitanoM. Reitano/F. ReitanoMino E Franco ReitanoReitanoReitano - ReitanoReitano F E M.Reitano RoselliniReitano/ReitanoФ. РейтандBeniamino ReitanoFranco Reitano + +1617047Herman Green(Born: 1930 - Died: November 26, 2020) was an American jazz and blues saxophonist. +Memphis saxophone great Herman Green’s history was filled with iconic names and historic associations from Rufus Thomas to B.B. King, Lionel Hampton to John Coltrane. A longtime local fixture with jazz/improv groups Green Machine and FreeWorld, Green was a vital presence in the Memphis music world and beyond, dating back to the 1940s.Needs Votehttps://eu.commercialappeal.com/story/entertainment/music/2020/11/27/saxophonist-herman-green-dies-obit-memphis-music/6438081002/Dr. Herman GreenLionel Hampton And His OrchestraFreeworld + +1617050Clarence WatsonTrombonistNeeds VoteClarence H. WatsonLionel Hampton And His Orchestra + +1617846Ludovít KantaClassical cellist.Needs VoteKantaLudovit KantaĽudovít KantaCapella Istropolitana + +1618479Pierre MalbosPiano tuner and liner notes translator for classical releases.Correcthttps://lesaccordeurs.fr/l-equipe-les-accordeurs/Malbos + +1619230Klaus GruberAustrian classical wind instrumentalistCorrectDas Mozarteum Orchester Salzburg + +1619231Sabine LenzClassical bassoonistNeeds VoteDas Mozarteum Orchester Salzburg + +1619384David Booth (2)Needs VoteChick BoothDavid "Chick" BoothChick BoothEarl Hines And His Orchestra + +1620495Jeffrey CurnowAmerican trumpeter. Former Associate Principal Trumpet of the Philadelphia Orchestra and Principal Trumpet of the Dallas Symphony Orchestra.Needs Votehttp://www.insidethearts.com/whats-bothering-jeff/about-jeff-curnow/Jeff CurnowThe Philadelphia OrchestraThe Empire Brass QuintetDallas Symphony OrchestraNew York Trumpet EnsembleThe New Haven Symphony Orchestra + +1620499Darren AcostaAmerican trombonist.Needs VoteBoston Pops OrchestraRadion Sinfoniaorkesteri + +1620556Eric RuskeHorn player. Born in Chicago in 1963. Graduated from Northwestern University. Previously a member of Cleveland Orchestra and the [a=The Empire Brass Quintet]. Currently a horn soloist and faculty of Boston University. Soloed with Cleveland Orchestra, Baltimore, Indianapolis, and Milwaukee Symphonies.Correcthttp://www.ericruske.com/RuskeThe Cleveland OrchestraThe Empire Brass Quintet + +1621265Sid JacobsJazz bassist. + +For the guitarist, please use [a=Sid Jacobs (2)].Needs VoteWingy Manone & His OrchestraBobby Hackett And His OrchestraArt Hodes' Chicagoans + +1621268Terry SwopeAmerican jazz vocalistNeeds VoteWoody Herman And His OrchestraBenny Goodman And His OrchestraThe ClarinadersWoody Herman & The Second HerdAl Haig Quintet + +1621269Freddie Washington (2)Frederick Charles WashingtonAmerican jazz pianist, born c. 1900 in Houston, Texas. +Moved to California c. 1918, recorded with [a=Kid Ory] in 1922, during 1920s and 1930s led own band, and also played with Ed "Montudi" Garland and Paul Howard. In 1944 recorded with [a=Zutty Singleton]. Remained active in the 1960s.Needs VoteF. WashingtonFred C. WashingtonFred WashingtonFreddie C, WashingtonFreddie C, WashingtonFredi WashingtonWashingtonZutty Singleton's Creole BandZutty Singleton's TrioHot Lips Page And His OrchestraOry's Sunshine OrchestraSpike's Seven Pods Of Pepper OrchestraFreddie Washington's QuartetteFreddie Washington's Quintet + +1621418Chris DudleyChristopher DudleyTrombonist. + +For the American keyboardist, member of [a=Underoath], see [a=Christopher Dudley].Needs VoteChristopher DudleyBit 20 EnsembleBergen Filharmoniske OrkesterBergen Big Band + +1621684Erik Carlson (2)Classical violinist, composer and writer. +He has performed as a soloist and with many chamber and orchestral ensembles throughout Europe and the United States (he is the founder of the New York Miniaturist Ensemble and a member of the Momenta Quartet, VisionIntoArt, The Trinity Bach Players and the Talea Ensemble). +Numerous composers have written works for him, including Karlheinz Stockhausen, Charles Wuorinen, Tom Johnson, and Georges Aperghis. +He also performs with poets, dancers, actors, and film. +He has recorded for the Tzadik, Albany, Bridge, and Matador labels. +Needs Votehttp://midnightsledding.com/carlson/http://erikcarlson.bandcamp.comACME (American Contemporary Music Ensemble)International Contemporary EnsembleTalea EnsembleArcana OrchestraUniversity Of South Carolina Experimental Music WorkshopThe Ars Combinatoria String QuartetEcho String Quartet (2) + +1621777Frederique ChauvetFrédérique ChauvetClassical Traverso Flautist.Needs Votehttps://www.frederiquechauvet.nl/frhttps://www.attaignantconsort.com/Frédérique ChauvetNetherlands Bach CollegiumThe Attaignant Consort + +1621780Marjon StrijkThe Dutch soprano, Marjon Strijk, discovered her love for singing already at an early age. She received her first singing lessons from Tineke te Velden and Loes Wijnands.Needs VoteMarion StrijkDe Nederlandse BachverenigingNederlands KamerkoorVocal Ensemble Quink + +1621854Thibault VieuxFrench violinist.CorrectT. VieuxThibaux VieuxOrchestre National De L'Opéra De Paris + +1621983Fumitaka SaitoJapanese classical Recorder player & instrument maker borne in TokiyoNeeds Votehttps://www.saitorecorder.com/Netherlands Bach Collegium + +1622636Jouke Van Der LeestViola player.Needs VoteRadio KamerorkestCaecilia Consort + +1623542Patricia ClarkeBritish Soprano vocalist.Needs VoteThe Ambrosian Singers + +1624097Paul WianckoPaul WianckoCellist and composer.Needs Votehttp://paulwiancko.comhttp://www.wianckoeditions.comhttps://en.wikipedia.org/wiki/Paul_WianckoPaul WiancoPaul WiankoKronos QuartetACME (American Contemporary Music Ensemble)Harlem QuartetOwls (9) + +1624100Jerome GordonAmerican violistNeeds VoteJerome George GordonJerome GordanLos Angeles Philharmonic Orchestra + +1624573Frédéric PeyratFrench cellist.CorrectOrchestre De Paris + +1624575Ruben SimeoClassical trumpeterNeeds Voteルベンルベン・シメオJosé Vicente Simeo MáñezOrquesta Sinfónica De Madrid + +1624577Caroline VernayFrench violinist.CorrectOrchestre De Paris + +1624766Salli TerriCanadian-born American mezzo-soprano vocalist, also music arranger & songwriter. +Born September 3, 1922, London, Ontario, Canada. +Died May 5, 1996, Long Beach, California.Needs Votehttp://www.salliterri.orghttp://en.wikipedia.org/wiki/Salli_TerriS. TerriSally TerriTerriRandy Van Horne SingersThe Roger Wagner Chorale + +1626189Robert Napoleon TaylorNeeds Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=338808&subid=0Ann TaylorR TaylorR, TaylorR. TaylorRobert TaylorTalorTaylerTaylor + +1626370V. ArtiKaarlo Väinö ValveNeeds Votehttps://fi.wikipedia.org/wiki/V._ArtiV.ArtiKaarlo Väinö ValveKaarlo Väinö Vesala + +1626583Martti SuomiFinnish violin playerNeeds Vote + +1626588Fritz KilantoFritz Kilanto, born Fritz KihlFritz Kilanto (b. 1902) was a Finnish violinist who played anything from classical music to jazz.Correct + +1626592Seppo KurkiSeppo Juhani KurkiFinnish violinist. Born on August 22, 1939 in Kotka, Finland and died on April 9, 2006 in Helsinki, Finland.Needs Vote + +1626596Bud RehakAndrew RacheckCorrectB. RahekB. ReaakB. RehakRacheckRahakRebrakRehacRehakバドリハクAndrew Racheck + +1626603Artto GranrothArtto Einar August GranrothFinnish cello player. Born on March 12, 1914 in Helsinki, Finland and died on March 15, 1987.Needs VoteArttu Granroth + +1626606Ossi KuulaNeeds Major Changes + +1626751Philip Borg-WheelerViola player and liner notes author.Needs VotePhillip Borg-WheelerBournemouth SinfoniettaBournemouth Symphony OrchestraBBC National Orchestra Of Wales + +1627204Jan VoglerGerman cellist (* February 18, 1964 in Berlin, German Democratic Republic, now Germany). +Needs Votehttp://www.janvogler.com/en/home.htmlhttp://de.wikipedia.org/wiki/Jan_VoglerJ. VoglerJan Vogler And FriendsVoglerStaatskapelle DresdenBill Murray, Jan Vogler And Friends + +1627206Rolf SchindlerGerman clarinetist and hornist, born 31 December 1951 and died 12 May 2014.CorrectStaatskapelle DresdenLößnitzer Musikanten + +1627209Jens-Jörg BeckerGerman piccolo-flautist.Needs VoteStaatskapelle DresdenOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgVirtuosi SaxoniaeWürttembergische Philharmonie ReutlingenDresdner Kapellsolisten + +1627213Kai VoglerGerman violinist, born in Berlin, Germany.Correcthttp://www.kaivogler.deK. VoglerStaatskapelle Dresden + +1627662Matthew LongBritish classical tenor vocalist.Needs Votehttp://www.matthew-long.co.uk/https://www.facebook.com/MatthewLongTenor/https://twitter.com/matt_long_https://www.bach-cantatas.com/Bio/Long-Matthew.htmMatt LongLondon VoicesThe SixteenTonus PeregrinusI FagioliniYork Minster ChoirTenebrae (10) + +1628108Ad MaterAdolf MaterClassical oboist.Needs VoteA. G. MaterA. MaterAd Mater (IV)Adolf MaterCollegium AureumNetherlands Chamber OrchestraConcerto Amsterdam + +1628109Ralph PeinkoferClassical percussionist.Needs VoteCollegium AureumLa Petite Bande + +1628264Daniel RossignolClassical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +1628265Bruno DubarryClassical violistNeeds VoteOrchestre National Du Capitole De Toulouse + +1628268Lawrence EvansAmerican Jazz bass player. In the late 60s' and early 70s' he appeared on records by such artists as Freddie McCoy or Charles McPherson. In 1968 he was a member of Art Blakey's The Jazz Messengers.Needs VoteLarry EvansArt Blakey & The Jazz Messengers + +1628992Energy SyndicateGlen WalkerHard Dance DJ & producer from Sunderland, North East, UK. +Founded his own digital label [l=Synergy Trax] in 2012. +Contact: energy-syndicate@live.co.ukNeeds Votehttps://www.facebook.com/EnergySyndicateUKhttps://soundcloud.com/energy-syndicatehttps://www.mixcloud.com/EnergySyndicate/https://myspace.com/energysyndicateukhttps://twitter.com/EnergySyndicatehttps://www.youtube.com/channel/UCcmNxIizqCf8eyn9Y2It3wghttp://web.archive.org/web/20181202040629/http://energysyndicate.co.uk/http://web.archive.org/web/20130627053508/http://soundcloud.com:80/energysyndicateGlen Walker + +1628993Rock N RollerUK electronic dance music DJ / producer collaboration between [a=Steven Brett] (aka [a=Klubfiller]) and [a=Paul Newton (3)] (aka [a=Domination (4)]) +Styles: Hard DanceNeeds Votehttps://www.facebook.com/rocknrollermusichttps://soundcloud.com/rocknrollerhqhttps://twitter.com/RockNRollerHQRock & RollerRock 'N' RollerRock N RollaRock'n'RollerRock'n'rollerRocknrollerDefiant Dj'sPaul Newton (3)Steven Brett + +1629260Ray Price (3)Ray PriceJazz drummer, who played a.o. with [a=Oscar Peterson]Needs VoteThe Oscar Peterson TrioCharles Rutherford's Jazz Pacific Orchestra + +1629413Art SylvesterCredited as trumpet player.Needs VoteBenny Goodman And His Orchestra + +1629557Emil LeichnerCzech classical pianist and son of [a=Emil Leichner (2)]. Former long-time member of the Board of Directors of the Bohuslav Martinů Foundation and great proponent of the music of Bohuslav Martinů. He also teached at the Prague Conservatory and the Academy of Music. He was awarded the Medal of the Bohuslav Martinů Foundation in 2016. Prof. Emil Leichner passed away at the age of 80 on March 18., 2019.Needs VoteThe Czech Philharmonic OrchestraBohuslav Martinů Piano Quartet + +1630280Greenfield & SedakaSongwriting collaboration of [a575271] and [a123159].Needs VoteG. Greenfield/N. SedakaGreen Field - SedakaGreenfield - N. SedakaGreenfield - Neil Sedaka - HowardGreenfield - SedakaGreenfield / SedakaGreenfield And SedakaGreenfield SedakaGreenfield, H/Sedaka, NGreenfield, Howard / Sedaka, NeilGreenfield, Howard, Sedaka, NeilGreenfield, SedakaGreenfield, SekadaGreenfield-SedakaGreenfield/SedakaGreenfields - SedakaGreenfields-SedakaGreenfield–SedakaGreenfiels-SedakaGreenfild - SedakaH Greenfield - N SedakaH Greenfield / N SedakaH Greenfield-N. SedakaH Grenfield, N SedakaH. Greenfiel/N. SedakaH. GreenfieldH. Greenfield & N. SedakaH. Greenfield - N. SedakaH. Greenfield / N. SedakaH. Greenfield / N.SedakaH. Greenfield / Neil SedakaH. Greenfield — N. SedakaH. Greenfield, N. SedakaH. Greenfield, Neil SedakaH. Greenfield-N. SedakaH. Greenfield-Neil SedakaH. Greenfield/ N. SedakaH. Greenfield/N. SedakaH. Greenfield/N.SedakaH. Greenfield/Neil SedakaH. Sedaka/H. GreenfieldH.Greenfield - N.SedakaH.Greenfield N.SedakaH.Greenfield-N.SedakaH.Greenfield/N.SedakaH.Greenfield/Neil SedakaHoward Greenfield & Neil SedakaHoward Greenfield - Neil SedakaHoward Greenfield / Neil SadakaHoward Greenfield / Neil SedakaHoward Greenfield And Neil SdakaHoward Greenfield And Neil SedakaHoward Greenfield Und Neil SedakaHoward Greenfield, Neil SedakaHoward Greenfield, Nils SedakaHoward Greenfield-Neil SedakaHoward Greenfield/ Neil SedakaHoward Greenfield/N. SedakaHoward Greenfield/Neil SedakaHoward Greenfield/Niel SekadaK. Greenfield-SedakaM Sedala - H GreenfieldM. Sedaka-H. GreenfieldN Sedaka - H GreenfieldN Sedaka/H GreenfieldN Sedala - H GreenfieldN Seidaka—GreenfieldN. Cedaka H. GreenfieleN. Greenfield - N. SedakaN. Greenfield – N. SedakaN. Sadelka - H. GreenfieldN. Secada, H. GreenfieldN. Sedaca/ R. GreenfieldN. Sedada - H. GreenfieldN. SedakaN. Sedaka & H. GreenfieldN. Sedaka - GreenfieldN. Sedaka - H. GeenfieldN. Sedaka - H. GreenfieldN. Sedaka - H. GroenfieldN. Sedaka - H.. GreenfieldN. Sedaka - M. GreenfieldN. Sedaka -Green FieldN. Sedaka / Green FieldN. Sedaka / GreenfieldN. Sedaka / H. GreenfieldN. Sedaka y H. GreenfieldN. Sedaka – H. GreefieldN. Sedaka — H. GreenfieldN. Sedaka, GreenN. Sedaka, GreenfieldN. Sedaka, H. GreenfieldN. Sedaka, N. GreenfieldN. Sedaka, T. ShowardN. Sedaka-GreenfieldN. Sedaka-H. GreenfieldN. Sedaka-H. GreenfieldsN. Sedaka-H.GreenfieldN. Sedaka-Howard H. GreenfieldN. Sedaka.H. GreenfieldN. Sedaka/ H. GreenfieldN. Sedaka/GerrnfieldN. Sedaka/GreenfieldN. Sedaka/H. GreefieldN. Sedaka/H. GreenfieldN. Sedaka/H.GreenfieldN. Sedaka/J. GreenfieldN. Sedaka/W. GreenfieldN. Sedaka–H. GreenfieldN. Sedala - GreenfieldN.Sedaka & H GreenfieldN.Sedaka - H. GreenfieldN.Sedaka / H.GreenfieldN.Sedaka H.GreenfieldN.Sedaka, GreenfieldN.Sedaka, H. GreenfieldN.Sedaka-H. GreenfieldN.Sedaka-H.GreenfieldN.Sedaka/GreenfieldN.Sedaka/H.GreenfieldNeil - Sadaka - GreenfieldNeil Sedak/Howard GreenfieldNeil Sedaka & GreenfieldNeil Sedaka & Howard GreenfieldNeil Sedaka & Howie GreenfieldNeil Sedaka - GreenfieldNeil Sedaka - Greenfield OwardNeil Sedaka - H. GreenfieldNeil Sedaka - Howard - GreenfieldNeil Sedaka - Howard GreenfialdNeil Sedaka - Howard GreenfieldNeil Sedaka / GreenfieldNeil Sedaka / H GreenfieldNeil Sedaka / H. GreenfielNeil Sedaka / H. GreenfieldNeil Sedaka / Harold GreenfieldNeil Sedaka / Howard / GreenfieldNeil Sedaka / Howard GreenfieldNeil Sedaka / Howie GreenfieldNeil Sedaka And Howard GreenfieldNeil Sedaka H. GreenfieldNeil Sedaka Howard GreenfieldNeil Sedaka Und Howard GreenfieldNeil Sedaka und Howard GreenfieldNeil Sedaka, GreenfieldNeil Sedaka, H. GreenfieldNeil Sedaka, Howard GreenNeil Sedaka, Howard GreenfieldNeil Sedaka-GreenfieldNeil Sedaka-H- GreenfieldNeil Sedaka-H. GreenfieldNeil Sedaka-Herbie GreenfieldNeil Sedaka-Howard GeenfieldNeil Sedaka-Howard GreefieNeil Sedaka-Howard GreenfieldNeil Sedaka-Howie GreenfieldNeil Sedaka-O. GreenfieldNeil Sedaka/CodyNeil Sedaka/GreenfieldNeil Sedaka/H. GreenfieldNeil Sedaka/Howard GreenfieldNeil Sedaka/Howerd GreenfieldNeil Sedaka–Hovard GreenfieldNeil Sedaka–Howard GreenfieldNeil Sedeka - H. GreenfieldNeil-Sedaka, Howerd-GreenfieldNiel Sedaka - Howard GreenfeldNiel Sedaka / Howard GreenfieldNiel Sedaka And Howard GreenfieldNiel Sedaka-Howard GreenfieldNiel Sedaka/Howard GreenfieldO. Greenfield, Neil SedakaR. Greenfield/N. SedakaSedaka & GreenfieldSedaka - GreefieldSedaka - GreenfieldSedaka - GreensfieldSedaka - GrenfieldSedaka - H. GreenfieldSedaka -GreenfieldSedaka / GreenfieldSedaka / Howard / GreenfieldSedaka / Howard GreenfieldSedaka GreenfieldSedaka Neil / Greenfield H.Sedaka Neil/Greenfield HSedaka and GreenfieldSedaka et GreenfieldSedaka – GreenfieldSedaka, GreenfieldSedaka, Howard, GreenfieldSedaka- GreenfieldSedaka-GreenfeildSedaka-GreenfieldSedaka/GreenSedaka/GreenfieldSedaka/GreenfieldsSedaka/GreenfiledSedaka/GrenfieldSedaka; GreenfieldSedaka–GreenfieldSedeka - GreenfieldSedeka-GreenfieldNeil SedakaHoward Greenfield + +1630394Frank CorlissFrank J Corliss[b]Frank Corliss[/b] (b. 1962) is an American pianist, arts administrator, and music pedagogue. He has served as Director of the [url=https://discogs.com/label/433168]Bard College Conservatory of Music[/url] since August 2019 (and first joined the faculty in 2006 as Director of Admissions and head of the Collaborative Piano Fellowship). Corliss studied at [l=The Oberlin Conservatory Of Music], earning his Bachelor's in 1983, and further trained with [a=Gilbert Kalish] at [l=Stony Brook University] (Master's in 1985); he additionally studied at [l=Universität Mozarteum Salzburg] in Austria and [l=Akademia Muzyczna w Krakowie] in Poland. Between 1989 and 2006, Frank was a staff pianist with [a=Boston Symphony Orchestra] and [a=Tanglewood Festival Chorus]. He toured nationwide as a chamber musician and collaborative pianist, participating in several prestigious summer festivals, such as [url=https://discogs.com/label/517422]Tanglewood[/url] and [l=Aspen Music Festival]. Corliss was [a=Yo-Yo Ma]'s musical assistant for many years and helped him to prepare numerous new works for performance and recording, including concertos by [a=Elliott Carter], [a=Richard Danielpour], [a=Tan Dun], [a=John Harbison], [a=Leon Kirchner], [a1229425], [a273394], and [a=Peter Lieberson].Needs Votehttps://bard.edu/faculty/details/?id=1835https://linkedin.com/in/frank-corliss-96347b3bBoston Symphony OrchestraTanglewood Festival Chorus + +1630772Clifford BartlettBorn 1939, died 2019. British musicologist and librarian. Appears as liner notes author.Needs Votehttps://www.theguardian.com/music/2019/sep/13/clifford-bartlett-obituaryhttps://academic.oup.com/em/article-abstract/47/4/616/5610848Bartlett + +1631067Emmanuel GirardFrench classical cellistNeeds VoteEmanuel GirardLes Talens Lyriques + +1631286Ranja RasmussenFinnish jazz singer, born 1933.Needs VoteRanja RasmunssenRanja Siikasaari + +1631309Bob Crewe & Bob GaudioSongwriting and producing duo, most famous for their work with the Four Seasons. Needs Votehttps://en.wikipedia.org/wiki/Bob_Crewehttps://en.wikipedia.org/wiki/Bob_GaudioA. Crewe / B. GuedioA. Crewe/B. GuedioB Crewe - B GaudioB Crewe - B.GaudioB Crewe And B GaudioB Crewe-B. GaudioB Crewe/B GaudioB Crewe/B. GuedioB. Coudio/CreweB. Creve - B. GuedioB. Creve, B. GaudioB. Creve/B. GaudioB. Crew - B. GaudioB. Crew / B. GaudioB. Crew, B. GaudioB. Crew, b. GaudioB. Crew-B. GaudioB. Crew/B. GaudioB. Crew/B. GuedioB. CreweB. Crewe & B. GaudioB. Crewe & B. GuedioB. Crewe & G. GuadioB. Crewe , B. GaudioB. Crewe - B. GaudeoB. Crewe - B. GaudieB. Crewe - B. GaudioB. Crewe - B. GuadioB. Crewe - B. GuedioB. Crewe - B.GaudioB. Crewe - G. GaudioB. Crewe - G. GuadioB. Crewe - GaudioB. Crewe - GuadioB. Crewe - R. GaudioB. Crewe -B. GaudioB. Crewe / B. CaudioB. Crewe / B. GardioB. Crewe / B. GaudioB. Crewe / B. GuedioB. Crewe / R GaudioB. Crewe / R. GaudioB. Crewe B GaudioB. Crewe B. GaudioB. Crewe B. GuedioB. Crewe E B. GaudioB. Crewe Et B. GaudioB. Crewe M. GaudioB. Crewe en D. GuedioB. Crewe y B. GaudioB. Crewe, B. GaduioB. Crewe, B. GaudiB. Crewe, B. GaudiiB. Crewe, B. GaudioB. Crewe, GavdioB. Crewe, R. GaudioB. Crewe- B. GaudicB. Crewe-B GaudioB. Crewe-B. CaudioB. Crewe-B. GaudioB. Crewe-B. GuadioB. Crewe-B. GuedioB. Crewe-B.GaudioB. Crewe-GuedioB. Crewe-R GaudioB. Crewe-R. GaudioB. Crewe. B. GaudioB. Crewe/ B. GuedioB. Crewe/B. GandioB. Crewe/B. GaudioB. Crewe/B. GuardioB. Crewe/B. GuedioB. Crewe/B.GaudioB. Crewe/GaudioB. Crewe/R. GaudioB. Crewel / B. GaudioB. Crewel/B. GaudioB. Crewer - B. GaudioB. Crewew - R. GaudioB. Crewe—B. GaudioB. Crowe / B. GaudioB. Drewe, B. GaudioB. Gaudio & B. CreweB. Gaudio - B. CrewB. Gaudio - B. CreweB. Gaudio - B. GreweB. Gaudio / B. CreweB. Gaudio y B. CreweB. Gaudio, B. CreweB. Gaudio-B. CreweB. Gaudio-CreweB. Gaudio/ B. CreweB. Gaudio/B. CreweB. Gaudio/CreweB. Grewe, B. GaudioB. Grewe-B. GaudioB. Guadio-B. CreweB.Crewe & B.GaudioB.Crewe - B.GuedioB.Crewe / B.GuedioB.Crewe, B.GaudioB.Crewe-B.GaudioB.Crewe-B.GuedioB.Crewe/B GaudioB.Crewe/B.GandioB.Crewe/B.GaudioB.Crewe/B.GuedioB.Crowe / B.GaudioB.Gaudio - B.CreweB.Gaudio / B.CreweB.Gaudio, B.CreweB.Gaudio-B. CreweB.Gaudio-B.CreweB.Gaudio/B. CreweBo Gaudio / Bob CreweBob Crew - Bob GaudioBob Crew / Bob GaudioBob Crew Bob GaudioBob Crew, Bob GaudioBob Crew-Bob GaudioBob Crewe & B. GaudioBob Crewe & Bob GuedioBob Crewe & Bob GuidioBob Crewe & Gaudio BobBob Crewe & Robert GaudioBob Crewe , Bob GaudioBob Crewe - Bob GaudioBob Crewe - Bob GoudioBob Crewe - Robert GaudioBob Crewe / Bob GaudIoBob Crewe / Bob GaudioBob Crewe / Bob Gaudio Prod.Bob Crewe / Bob GuadioBob Crewe And Bob GaudioBob Crewe Et Bob GaudioBob Crewe and Bob GaudioBob Crewe y Bob GaudioBob Crewe, B. GaudioBob Crewe, Bob GaudioBob Crewe, Bon GaudioBob Crewe, GaudioBob Crewe-B. GaudioBob Crewe-Bob GaudioBob Crewe-Bob GuadioBob Crewe-Robert GaudioBob Crewe/B. GaudioBob Crewe/Bob GaudieBob Crewe/Bob GaudioBob Crewe/Bobo GaudioBob Crewe/Robert GaudioBob Crewe/Robert GordioBob Gaudio & Bob CreweBob Gaudio , Bob CreweBob Gaudio - Bob CreweBob Gaudio - CreweBob Gaudio / Bob CreweBob Gaudio / Robert CreweBob Gaudio And Bob CreweBob Gaudio Bob CreweBob Gaudio, Bob CreweBob Gaudio, Bob GreweBob Gaudio- Bob CreweBob Gaudio-Bob CrewBob Gaudio-Bob CreweBob Gaudio/Bob CreweBob Goudio / Bob CreweBob Grewe - Bob GaudioBob Grewe/Bob GaudioBobo Crewe/Bob GaudioBow Crewe, Bob GaudinoClewe, GaudioCrave / GaudioCreuve - GaudioCreve-GaudioCrew - GaudioCrew / GaudinoCrew / GaudioCrew / GuadioCrew, GaudioCrew-GaudioCrew/GaudioCreweCrewe & GaudieCrewe & GaudioCrewe , GaudioCrewe - B. GandioCrewe - GandioCrewe - GaudCrewe - GaudioCrewe - GuadioCrewe / GaudinCrewe / GaudinoCrewe / GaudioCrewe ; GaudioCrewe And GaudioCrewe B. / Gaudio B.Crewe B./Gaudio B.Crewe Bob - Gaudio BobCrewe GaudioCrewe Y GaudioCrewe y GaudioCrewe, B. GaudioCrewe, B./Gaudio, B.Crewe, CaudioCrewe, GaudioCrewe, GvedioCrewe,GaudioCrewe-CaudioCrewe-GaudioCrewe-GuaudioCrewe/ GaudioCrewe/B. CoudioCrewe/CaudioCrewe/GandioCrewe/GaudinCrewe/GaudioCrewe/GaudoCrewe/GuadioCrewe/GuedioCrewe; GaudioCrewe; GuadioD. Crewe - B. GaudioG. Crewe - B. GaudioGaudioGaudio & CreweGaudio - CreveGaudio - CreweGaudio / CreweGaudio / GreweGaudio CrewGaudio CreweGaudio, CrewGaudio, CreweGaudio,CreweGaudio-CrewGaudio-CreweGaudio-CrieveGaudio/ CreweGaudio/CreveGaudio/CrewGaudio/CreweGaudio/GreweGaudiol CreweGaudio–CreweGaudis/CreweGavido / CreweGiordio-CreweGrene / GuidioGreve, GandeoGrewe - GaudioGrewe, GaudioGrewe-GaudioGuadio/CreweGudio/CreweP. Crewe-GaudioR Crewe & R. GawdioR Crewe/B GaudioR. Crewe & R. GaudioR. Crewe & R. GuidoR. Crewe - B. GaudioR. Crewe - R. GaurdioR. Crewe / B. GaudioR. Crewe, B. GaudioR. Crewe, R. GaudioR. Crewe-R. GaudioR. Crewe/B. GaudioR. Crewe/R. GaudioR. Gaudio - B. CreweR. Gaudio / B. CreweR. Gaudio, B. CreweR.Crewe, B.GaudioR.Crewe/B.GaudioRobert Crewe - Robert GaudioRobert Crewe-Robert GaudioRobert Gaudino, Bob CreweRobert Gaudio - Bob CreweRobt. S. Crewe & Robt. GaudioКриев - ГодиКриев — ГодиКриев-ГодиКриев–ГодиКриев—ГодиBob CreweBob Gaudio + +1631520Martine BakkerClassical flautist.CorrectConcentus Musicus Wien + +1631884Felicity NotarielloClassical violinist.CorrectThe Academy Of Ancient Music + +1632281Natalie CleinBritish cellist, born 25 March 1977 in Poole, Dorset, England, Great Britain.Correcthttp://www.natalieclein.com/CleinEuropean Union Chamber Orchestra + +1632335Utku TavilUtku Tavilplaying drums and electronics +freelance sound person for live and studio applications for loud music + +co-founder/co-direktor of Multiversal; an itinerant non-profit DIY organization facilitating encounters of the active musicians, collectives, performers focusing on the independent challenging forms. +http://multiversal.site + +founder of Brain Pussyfication, a middle finger to the industry on a personal level +Needs Votehttp://soundcloud.com/utkutavilhttp://youtube.com/utkutavilhttps://www.facebook.com/utkutavilhttp:/vvrngdng.tumblr.comhttp://ameneatsz.tumblr.comhttp://turbohaler.tumblr.comhttp://suttemin.tumblr.comTavilUtku TavılBeeatszBrain PussyficationGravhundTabozzivilSUTTTurbohalerAMENEATSZBNSUJuxtaposition (3)Double Beater 4tet + +1632526Fabio LuisiItalian conductor, born 17 January 1959 in Genoa, Italy.Needs Votehttps://en.wikipedia.org/wiki/Fabio_LuisiF. LuisiLuisiStaatskapelle Dresden + +1632612Tak TakvorianVahey "Tak" TakvorianAmerican trombonist. + +Born 1922 (Somerville, Mass.). +Died. August 1, 2009.Needs Votehttp://www.nejazz.org/takvorian.php"Tak" Takvorian"Tak" TakvorkianSam TakvorianTak TavorianVahe 'Tak' TakvorianVahey "Tak" TakvorianVahey Samuel TakvorianTommy Dorsey And His OrchestraClaude Thornhill And His OrchestraThe Dorsey Brothers OrchestraSam Donahue And His OrchestraSam Donahue Navy Band + +1632795Michael PearceClassical Bass-BaritioneNeeds Votehttp://www.pearcemusician.com/The King's College Choir Of Cambridge + +1632796Michael Matthews (3)Classical vocalist, active in the 1960s.Needs VoteSt. John's College Choir + +1632797Brian RunnettClassical organist.Needs VoteThe Academy Of St. Martin-in-the-Fields + +1632798Michael Turner (9)British violist. +As a boy, he was a chorister (treble) at [url=https://www.discogs.com/artist/631586-St-Johns-College-Choir]St. John's College, Cambridge[/url]. Later studied viola at the [l=Royal College Of Music, London] and [l=Cambridge University], and has been a member of the [url=https://www.discogs.com/artist/835739-Bournemouth-Symphony-Orchestra]Bournemouth Symphony[/url] and [url=https://www.discogs.com/artist/271875-London-Philharmonic-Orchestra]London Philharmonic[/url] Orchestras, the [b]Composer Resource Ensemble[/b], and latterly the London [a=Philharmonia Orchestra].Correcthttps://philharmonia.co.uk/bio/michael-turner/https://www.feenotes.com/database/artists/turner-michael/London Philharmonic OrchestraPhilharmonia OrchestraSt. John's College ChoirOrchestre Révolutionnaire Et RomantiqueBournemouth Symphony Orchestra + +1632853Alfredo CampoliAlfredo Campoli (Born 20 October 1906 – Died 27 March 1991) was an Italian-born British violinist, often known simply as Campoli. He was noted for the beauty of the tone he produced from the violin.Needs Votehttp://en.wikipedia.org/wiki/Alfredo_Campolihttps://adp.library.ucsb.edu/names/103482A. CampoliAlfred CampoliAlfredo Campoli & The Dorchester Hotel OrchestraCampoliCampoli And His Marimba Tango OrchestraCapoliLondon Philharmonic OrchestraJack Hylton And His OrchestraAlfredo Campoli And His Salon OrchestraThe Alfredo Campoli Trio + +1632944Paul FPaul FearonHard Dance DJ/Producer based in Birmingham, UK.Needs Votehttp://www.facebook.com/pages/Paul-F/44396176324http://soundcloud.com/paul-f-demoshttp://www.bebo.com/Paul_F_LETHALTHEORYhttp://twitter.com/paulfmusichttp://www.myspace.com/paulfdjPaul-FPaul FearonMr-F + +1633087Nu RaverzNick JenningsHard House/Hard Dance DJ & producer from Grantham, UK.Correcthttp://www.facebook.com/nuraverzThe Nu RaverzMidi Distortion + +1633330Sebastian Thomson (2)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +1633597Julie JacobsSaxophonist, oboist and clarinetistNeeds VoteJacobsJulie JacobBoyd Raeburn And His OrchestraGlen Gray & The Casa Loma Orchestra + +1633702Hilja HaahtiHilja Theodolinda Krohn (Haahti (Hahnsson))Finnish writer. +Born September 11, 1874, Hämeenlinna. Died January 6, 1966, Helsinki. +Needs Votehttp://www.geni.com/people/Hilja-Krohn-Haahti/5308941136080101232http://fi.wikipedia.org/wiki/Hilja_Haahtihttps://adp.library.ucsb.edu/names/116632H HaahtiH. HaahtiH. HaatiH.HaahtiHaahtiHiljaI. HaahtiHilja Krohn + +1634151Bob HicksAmerican trumpet playerCorrectB. HicksBobby HicksRob HicksCount Basie OrchestraHarry James And His OrchestraStan Kenton And His Orchestra + +1634152Don MohrAmerican alto saxophonistCorrectDonald MohrHarry James And His Orchestra + +1634153Walter PfylAmerican trumpet playerNeeds VoteSkip PfylWalter PfyleHarry James And His OrchestraHarry James & His Music Makers + +1634154Peter BellomoAmerican trumpet playerCorrectHarry James And His Orchestra + +1634155Roger DaleAmerican saxophonistCorrectHarry James And His Orchestra + +1634293Haleem RasheedJazz trombonist.CorrectHaleem Rasheed (Howard Bone)Haleen RasheedHarlam RasheedHoward BoweLionel Hampton And His OrchestraBuddy Johnson And His OrchestraWalter Gil Fuller And His Orchestra + +1634343Rachel MastersClassical harp player, she is Principal Harp with the London Philharmonic, the City of London Sinfonia and the London Mozart Players.Needs VoteRachel Masterラセル・マスタースLondon Philharmonic OrchestraCity Of London SinfoniaLondon Mozart PlayersMarisa Robles Harp EnsembleThe Wilbye ConsortThe English Serenata + +1634344Daniel SladdenClassical bass vocalist.Needs VoteThe King's College Choir Of Cambridge + +1634345Peter WinnCredit for boy treble vocals.Needs VoteThe King's College Choir Of Cambridge + +1634409Peter RasmussenPeter Christian Hans RasmussenDanish jazz trombonist and band leader, born December 16, 1906 in Hørsholm, Denmark.Needs Votehttps://de.wikipedia.org/wiki/Peter_Rasmussen_(Musiker)P. RasmussenPeter Rasmussen Og Hans DanseorkesterPeter Rasmussens DanseorkesterMister Trombone (2)Peter Rasmussen And His OrchestraKai Ewans Og Hans Stjerne-SolisterErik Tuxen Og Hans OrkesterKai Ewans Og Hans OrkesterPeter Rasmussen SeptetPeter Rasmussen And His Swingin' SevenPeter Rasmussen's SekstetPeter Rasmussens KvintetPeter Rasmussen Og Hans Tivoli OrkesterKai Julians Danseorkester + +1634712Emma Preston-DunlopClassical soprano vocalistNeeds VoteEmma Preston DunlopThe Monteverdi ChoirPolyphonyChapelle Du Roi + +1634713Penelope VickersAlto vocalistNeeds VoteThe English Concert ChoirThe Schütz Choir Of London + +1634825Jean-Pierre AzoulayFrench rock guitarist.Needs Vote'Rollin' AzoulayJ.-P. Rolling AzoulayJ.P. AzovlayJ.P. Azovlay (Rolling)Jean Pierre "Rolling" AzoulayJean-Pierr " Rolling " AzoulayJean-Pierre "Rolling" AzoulayJean-Pierre 'Rolling' AzoulayJean-Pierre Azoulay (Rolling)Jean-Pierre « Rolling » AzoulayJean-Pierre «Rolling» AzoulayPierre AzoulayR. AzoulayRollingRolling (Jean-Pierre) AzoulayRolling AzoulayRollingVariations (2) + +1635712Terence WeilTerence Weil (9 December 1921 in London – 25 February 1995 in Figueras) was a British cellist, principal cellist of the English Chamber Orchestra, a founding member of the Melos Ensemble, and teacher at the Royal Northern College of Music.Needs Votehttp://en.wikipedia.org/wiki/Terence_WeilTerence WeillTerry WeilTerry WeilandEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe Virtuosi Of EnglandMelos Ensemble Of LondonThe English Opera GroupCremona String QuartetThe Pro Arte Piano QuartetThe Nefer Ensemble + +1635932Arto KallioNeeds Major Changes + +1635938Viljo Ala-PietiläFinnish oboist.Needs Vote + +1636160Georg HannGeorg HannBorn January 30, 1897 in Vienna, Austria-Hungary, died December 9, 1950 in Munich, Germany. +An Austrian operatic bass-baritone, particularly associated with the comic (singspiel) German repertory.Needs Votehttp://en.wikipedia.org/wiki/Georg_HannG. HannGeorg HahnGeorge HannHannГ. ХаннГеорг Ханн + +1636340Justino DiazJustino DíazPuerto Rican operatic bass-baritone, born January 29, 1940 in San Juan, Puerto Rico. Father of [a=Natascia A. Diaz].Correcthttp://en.wikipedia.org/wiki/Justino_D%C3%ADazDiazJ. DiazJustino Díaz + +1636342Michael Reid (4)Clarinet player, born 1958 in Scotland.Needs VoteM. ReidSchola Cantorum BasiliensisTonhalle-Orchester Zürich + +1636348Florenz JennySwiss bassoonist and organist.CorrectTonhalle-Orchester Zürich + +1636362Ronald DangelSwiss double bass player, born 1960 in Zurich, Switzerland.Needs VoteTrio D'AccordoTonhalle-Orchester Zürich + +1636364Michel RouillySwiss violist, born 1955 in Zürich, Switzerland. He was a member of the [a8551878] from 1983 to 2019.Needs Votehttps://www.herbst-helferei.ch/kuenstler-2011/rouilly-michel/Duo RouillyTonhalle-Orchester ZürichSinfonieorchester St. GallenStreichsextett Zürich + +1636638Bob AscherTromboneNeeds VoteBob AsherBobby AscherBobby AsherRobert ArcherRobert AscherGene Krupa And His OrchestraGeorge Williams And His Orchestra + +1636811Kurt HausmannGerman oboist, born 31 January 1924 in Erlangen, Germany.Needs VoteMünchener Bach-OrchesterNürnberger Kammermusikkreis + +1636952Sam & DeanoTeam composed of DJ's & producers Sam Townend & Dean Ashraf.Needs Votehttp://web.archive.org/web/20110825070413/http://www.samanddeanomusic.com/http://www.myspace.com/tidydjsSam & Deano (aka Tidy DJs)Sam & Deano The Tidy DJsSam Townend & DeanoTownend & DeanoTidy DJsSam TownendDean Ashraf + +1637225André I Danican PhilidorAndré Danican Philidor the elderBorn: ca. 1647, Versailles, Yvelines, France. +Died: 11 August 1730, Dreux, Eure-et-Loir, France. + +André Danican Philidor (also known as André Danican Philidor the elder, André Danican Philidor l’aîné, le père) was French composer, bassoonist, crumhornist, flutist, oboist and violinist in the reign of Louis XIV. + +Not to be confused with his son, [a960907] +Needs Votehttps://en.wikipedia.org/wiki/André_Danican_Philidor_the_elderA. &A. Danican PhilidorA. Danican-PhilidorA. PhilidorA. Philidor L'AînéAndré Danican PhilidorAndré Danican Philidor (L'Aisné)André Danican Philidor ?André Danican Philidor Dit "Philidor L'Aîné"André Danican Philidor Dit l'AîneAndré Danican Philidor dit l'AncienAndré Danican-PhilidorAndré PhilidorAndré Philidor Dit L'ainéAndré Philidor L'AinéAndré Philidor L'AînéAndré-Danican PhilidorFrançois-Andre Danican PhilidorFrançois-André Danican PhilidorManuscrit PhilidorPhilidorPhilidor L'AinéPhilidor L'AisnéPhilidor L'AînéPhilidor L'ainéPhilidor L'aisnéPhilidor l'AisnePhilidor the ElderPhilidor... + +1637342Alain VanzoAlain Vanzo (April 2, 1928 - January 27, 2002) was a French opera singer (tenor) and composer.Correcthttp://en.wikipedia.org/wiki/Alain_VanzoA. VanzoAlain Vanzo De L'OpéraVanzo + +1637594The Charleston ChasersThe Charleston Chasers was a studio recording ensemble that recorded music on Columbia Records between 1925 and 1930. + +The Charleston Chasers recording sessions were often a pseudonym for [a=Red Nichols And His Five Pennies], but the name was used by Columbia for various other outfits including [a=The Original Memphis Five] and [a=Ben Selvin & His Orchestra]. The Charleston Chasers records had an all-star cast of musicians and even featured several fine vocal recordings.Needs Votehttp://www.redhotjazz.com/charleston.htmlhttps://en.wikipedia.org/wiki/The_Charleston_Chasers https://adp.library.ucsb.edu/names/110641Charleston ChasersThe Charlestone ChasersGlenn MillerTommy DorseyBenny GoodmanBabe RussinGene KrupaHarry GoodmanRed NicholsDick McDonoughJimmy DorseyFrank SignorelliJack TeagardenLennie HaytonLarry BinyonStan kingArthur SchuttCharlie TeagardenJoe TartoDave ToughJack HansenVic BertonCarl KressRuby WeinsteinFud LivingstonTony ColucciMiff MolePhil NapoleonLeo McConvilleWard LaySid StoneburnEddie WaltersDick Johnson (8) + +1637702Wolfgang BergWolfgang Berg (born in 1959 in Prüm, Germany) is a German violist. A member of the [a261451] from 1990 to 2025.Needs VoteEnsemble ModernMünchner PhilharmonikerCamerata Academica SalzburgEuropean Union Youth OrchestraMünchener KammerorchesterBundesjugendorchester + +1638152Federico RomeroFederico Romero SarachagaSpanish poet, essayist and librettist, born November, 11th 1886 in Oviedo, Spain and died June, 30th 1976 in Madrid, Spain. +Along with [a1638154] he wrote the libretto for two of the best-known zarzuelas of the 20th century: "Doña Francisquita" and "Luisa Fernanda". Needs Votehttp://en.wikipedia.org/wiki/Federico_Romerohttps://adp.library.ucsb.edu/names/103472D. Frederico RomeroD. Frédérico RomeroD.F. RomeroF. RomeroF. Sarachaga RomeroF.RomeroFederico Romero Y SarachagaFedérico RomeroR. RomeroRomeoRomeroRomero Y SarachagaSarachagaSorozabal Romero + +1638168Stephen HammerStephen HammerClassical oboist, recorders and Renaissance reeds player. +Co-founder with [a466179] of [url=http://www.discogs.com/artist/Bach+Ensemble%2C+The]the Bach Ensemble[/url] in 1978, of the [a2683295] in 1983 and of the New York Collegium in 1998.Needs Votehttp://stephenhammer.comhttp://www.hautboy.org/Stephen HammarSteve HammerThe Academy Of Ancient MusicSmithsonian Chamber OrchestraThe Handel & Haydn Society Of BostonThe Bach EnsembleAston MagnaConcert RoyalAmadeus WindsBrewer Chamber OrchestraBoston Early Music Festival OrchestraThe Smithsonian Chamber Players + +1638394Ginette DoyenGeneviève Marie Andrée Charlotte Fournier née DoyenGinette Doyen (10 July 1921 - 27 August 2002) was a French concert pianist and music professor. She was married to [a2480120]. +Needs VoteOrchestre De L'Association Des Concerts PasdeloupOrchestre Philharmonique De Radio France + +1638501Vesselin GellevBulgarian classical violinistNeeds VoteLondon Philharmonic OrchestraAbsolute Ensemble + +1638502Neela De FonsekaAustralian violinist, based in Berlin, Germany.CorrectNeela Hetzel de FonsekaRundfunk-Sinfonieorchester Berlin + +1638931Brother WoodmanWilliam Woodman, Jr.American jazz tenor saxophonist and clarinetist (b. Los Angeles, April 22, 1919 - d. unknown). Please be sure not to confuse him with his father, trombonist [a=William Woodman, Sr.]. Brother of trombonist [a=Britt Woodman]. Married to blues singer [a=Candy Rivers].Needs VoteBill WoodmanW. B. Woodman, Jr.W. WoodmanW. Woodman, Jr.William "Brother" WoodmanWilliam (Brother) WoodmanWilliam B. WoodmanWilliam B. Woodman JrWilliam B. Woodman, Jr.William WoodmanWilliam Woodman Jr.William Woodman, Jr.Wm. WoodmanHelen Humes And Her All-StarsGladys Bentley QuintetteJoe Liggins & His HoneydrippersCharles Mingus SextetCee Pee Johnson And His BandCharles Mingus OctetJoe Liggins OrchestraBuddy Harper OrchestraSylvester Scott And His Orchestra + +1639012Alice ChalifouxAmerican harpist (January 22, 1908 – July 31, 2008).Correcthttp://en.wikipedia.org/wiki/Alice_ChalifouxAlice ChalifonxThe Cleveland Orchestra + +1639175Reijo ViresReijo ViresFinnish director, actor and lyricist. Born on June 20, 1936 in Kouvola, Finland and died on January 4, 2013 in Helsinki, Finland.Needs VoteNestoriR. ViresViresNestori (2) + +1639292Robert QuinneyEnglish organist and chorus master, born 1976 in Nottingham.Needs Votehttp://en.wikipedia.org/wiki/Robert_QuinneyThe New College Oxford ChoirThe SixteenThe English Concert + +1639293Jo ColeBritish classical cellist.Needs Votehttp://www.cellist.nl/database/showcellist.asp?id=2744Joanne ColeThe Academy Of St. Martin-in-the-FieldsThe Goldberg EnsembleCantamenThe Orchestra Of St. John'sThe Goldberg Ensemble Quartet + +1639336Robert AldwinckleEnglish harpsichordist and pianist.Needs Votehttp://www.bach-cantatas.com/Bio/Aldwinckle-Robert.htmRobert AldwinkleEnglish Chamber OrchestraThe Chamber Orchestra Of EuropeScottish Chamber Orchestra + +1639410Joe DolnyAmerican jazz trumpeter, arranger +Born 14 March 1924 in Cleveland +Died 13 July 2005 in Studio CityNeeds Votehttps://de.findagrave.com/memorial/134355857/joe-dolnyDolnyHarry James And His OrchestraClaude Thornhill And His Orchestra + +1640131Gilbert BezzinaClassical violinist and founder of [a=Ensemble Baroque de Nice]Needs VoteG. BezzinaLa Grande Ecurié Et La Chambre Du RoyLa Petite BandeEnsemble Baroque De Nice + +1640201John Jenkins (5)English Renaissance composer (born 1592 in Maidstone, Kent – died 1678 in Kimberley, Norfolk).Correcthttp://en.wikipedia.org/wiki/John_Jenkins_(composer)J. JenkinsJenkinsJohn Jenkins + +1640220Stefano MarcocchiClassical viola player, born in 1974 in Parma, Italy.Needs VoteMahler Chamber OrchestraEuropa GalanteLes Talens LyriquesI BarocchistiEnsemble CordiaAlea EnsembleLa VenexianaL'Aura Soave CremonaZefiroAntichi Strumenti + +1640232Johannes HinterholzerJohannes Hinterholzer (born 1974) is an Austrian classical hornist.Needs VoteCamerata Academica SalzburgDas Mozarteum Orchester SalzburgIl Giardino ArmonicoEnsemble CordiaEuropean Brandenburg Ensemble + +1640321Jacques Fromental HalévyJacques-François-Fromental-Élie HalévFrench composer, born 27 May 1799 in Paris, France and died 17 March 1862 in Nice, France. +He is usually known as Fromental Halévy. + +He is known today largely for his opera La Juive.Needs Votehttps://en.wikipedia.org/wiki/Fromental_Hal%C3%A9vyhttp://www.meyerbeer.com/halebio.htmhttp://www.britannica.com/biography/Fromental-Halevyhttp://imslp.org/wiki/Category:Hal%C3%A9vy,_Fromentalhttp://www.musicologie.org/Biographies/h/halevy.htmlhttps://adp.library.ucsb.edu/names/102723F. HalevyF. HalévyFromental HalevyFromental HalévyG. HalévyHaleviHalevjHalevyHalewyHalèvyHalévyHalévy, FromenthalHelevyJ. F. HalevyJ. F. HalévyJ. F.E. HalévyJ. HalevyJ. HalévyJ.F. Fromental HalévyJ.F. HalevyJ.F. HalévyJ.HalevyJacques F. HalévyJacques François HalévyJacques Fromental Élie HalévyJacques HalevyJacques HalévyJacques-François HalévyJacques-François-Elie HalévyJacques-Fromental HalévyJaques Fromental HalévyJaques HalevyJaques HalévyŽ. GaleviŽ. HaleviГалевиЖ. Галеви + +1640338Enzo DaraItalian operatic bass, born 13 October 1938 in Mantua, Italy and died 25 August 2017 in Mantua, Italy.CorrectBartoloDaraE. DaraE.DaraЭнцо Дара + +1640347Michele PertusiItalian Bass & Baritone, born 12 January 1965 in Parma, Italy.Needs Votehttp://michelepertusi.com/PertusiPetrusiPetusimМикеле Пертузи + +1640348Alda NoniAlda Noni (Trieste, April 30, 1916 – † Cipro, May 19, 2011) was an Italian Soprano. +Needs Votehttp://it.wikipedia.org/wiki/Alda_Nonihttp://www.treccani.it/enciclopedia/alda-noni_%28Dizionario_Biografico%29/A. NoniA.NoniAida NoniNoni + +1640534Godfried HoogeveenDutch classical cellist.Needs VoteGottfried HoogeveenConcertgebouworkestWorld Orchestra For PeaceResidentie OrkestThe Amsterdam Chamber Music SocietyAn Die Musik + +1641446Saskia OttoDutch classical violinist, born in Amsterdam, Netherlands. +Assistant concertmaster in the [a=Rotterdams Philharmonisch Orkest] since August 2018. As concertmaster, she played with the [a=Kamerorkest Magogo], the [b]Gustav Mahler Academy Orchestra[/b], and the [a=Symphony Orchestra Of The Conservatorium van Amsterdam]. Principal of the 2nd violins in the [a=Gustav Mahler Jugendorchester], and member of the [b]Orchestra of Europe[/b], [b]Trio Salome[/b] and [b]Monward Consort[/b].Needs Votehttps://www.facebook.com/saskia.ottohttps://www.instagram.com/saskiatours/?hl=enhttps://open.spotify.com/artist/6htWQqIg59kPJxwUgHa9tuhttps://music.apple.com/mx/artist/saskia-otto/1514189040https://triosalome.com/about-ushttps://www.kamermuziekwarmond.nl/c-v-s/monward-consort/saskia-otto/London Symphony OrchestraRotterdams Philharmonisch OrkestAmsterdam SinfoniettaGustav Mahler JugendorchesterThe Vondel StringsKamerorkest MagogoSymfonieorkest Sweelinck Conservatorium Amsterdam + +1641486William Henry ReedWilliam Henry ReedEnglish violinist, arranger, conductor, teacher, composer, and a biographer of [a=Sir Edward Elgar]. Born 29 July 1876 in Frome, Somerset, England, UK - Died 2 July 1942 in Dumfries, Scotland, UK. +He studied at the [l527847]. A founder member of the [a=London Symphony Orchestra] (1904-1934), serving as leader from 1912 to 1934, but is best known for his long personal friendship with Elgar (1910-1934) and his book '[i]Elgar As I Knew Him[/i]' (1936). In 1933, he became conductor of [a12515461]. He taught at the [l290263] throughout his performing career.Needs Votehttps://open.spotify.com/artist/0rhlSstrOD2rBd7NlSppzRhttps://music.apple.com/us/artist/william-henry-reed/967031063http://en.wikipedia.org/wiki/William_Henry_ReedW H ReedW. H. ReedW.H. ReedLondon Symphony Orchestra + +1641488Robert Johnston (4)Classical harp player.Needs VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +1641547Helen GoughClassical cellist.Needs VoteHelen GouchThe Parley Of InstrumentsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentRaglan Baroque PlayersThe King's ConsortBrandenburg ConsortTerzetto + +1642445Johann Paul Von WesthoffGerman Baroque composer and violinist + +born 1656 in Dresden +dead April 17, 1705 in Weimar +Needs Votehttp://en.wikipedia.org/wiki/Johann_Paul_von_WesthoffJ. P. WesthoffJean Paul WesthoffJohann Paul WesthoffJohann Paul von WesthoffVon WesthoffWesthoffStaatskapelle Dresden + +1642685Hermann GallosAustrian operatic tenor ( 21 January 1886 - 20 February 1957).Needs VoteGallosHerrmann GallosWiener Staatsopernchor + +1643149Kate MarsdenClassical violinist.Needs VoteK. MarsdenRoyal Liverpool Philharmonic Orchestra + +1643321Friedrich GablerFriedrich Gabler (28 May 1931 in Vienna, Austria - 21 August 2016) was an Austrian hornist and composer.Needs VoteF. GablerWiener SymphonikerWiener PhilharmonikerWiener VolksopernorchesterTonkünstler OrchestraEnsemble Eduard MelkusDas Wiener Bläserquintett + +1643325Эммануил ШейнкманЭммануил Аронович ШейнкманEmmanuil Sheynkman (December 26, 1939, Leningrad – 1997, Los Angeles, USA) - Russian performer on domra, mandolin, balalaika and conductor.Needs Votehttps://www.conservatory.ru/esweb/sheynkman-emmanuil-aronovich-1939-1997https://100philharmonia.spb.ru/persons/35755/E. SheinkmanEmanuel SheynkmanEmanuil SchejnkmanEmanuil SheynkmanEmmanuel SceinkmanEmmanuel ScheinkmanEmmanuel ScheinkmannEmmanuel SheikmanEmmanuel SheinkmanМ. ШейнкманЭ. ШейнкманЭмануил ШейнкманРусский Народный Оркестр Имени В. АндрееваАнсамбль Русских Народных Инструментов + +1643498Dirk SnellingsBelgian classical bass vocalist, born 15 April 1959 and died 15 July 2014 in Leuven, Belgium.Needs VoteD. SnellingsSnellingsCollegium VocaleIl FondamentoCapilla FlamencaLa CacciaMusica Favola + +1643500Liam FennellyViola da gamba player, son of American composer [a776853].Needs VoteLiam FeneliiLiam FenellyLiam FennelyCollegium VocaleRicercar ConsortCantus CöllnCapilla FlamencaGraindelavoixCurrendeZefiro TornaEnsemble La FeniceHathor ConsortCapriola Di GioiaLa CacciaThe Spirit Of GamboLes MeslangesRedherring Baroque Ensemble + +1644005Yaïr KlingerNeeds Votehttps://he.wikipedia.org/wiki/%D7%99%D7%90%D7%99%D7%A8_%D7%A7%D7%9C%D7%99%D7%A0%D7%92%D7%A8KlingerY. KlingerYairYair KlingerYaïrי. קלינגרי.קלינגריאיר קלינגריאיר קליננגרイエール・クレンジェールSilvan & Yairשלישיית הצירוף המקריLes Sabrasארבע לב אדום + +1644098Francesco BendusiItalian Renaissance composer of the 16th century (died c. 1553). + +He was active in Venice where Antonio Gardano notably published his Opera 'nova de Balli di Francesco Bendusi a quatro accomodati da cantare' and 'sonare d'ogni sorte de stromenti' in 1553.Needs Votehttp://www.allmusic.com/artist/francesco-bendusi-mn0001578857http://en.wikipedia.org/wiki/Francesco_Bendusihttp://imslp.org/wiki/Category:Bendusi,_FrancescoBendusiF. BendusФранческо Бендузи + +1644132Sioned WilliamsSioned Williams is a harp player and teacher, she is the principal harpist of the [a289522].Needs Votehttp://sionedwilliams.com/サイオネッド・ウィリアムズBBC Symphony Orchestra + +1644325SalamanteriNeeds Major ChangesJuhani Pohjanmies + +1644327Unto KoskelaNeeds Major ChangesKoskelaKoskela UntoU. KoskelaU.KoskelaUuno Koslela + +1644641Dennis Collins (2)Liner notes translator, primarily for classical music releases.Needs VoteD. CollinsDenis CollinsDennis Collins + +1645114Lee O'ConnorJazz trombonistCorrectLee O'ConnerHarry James And His Orchestra + +1645116Jimmy CookJames CookAmerican jazz tenor saxophonist.Needs VoteCookeJames CookJimmie CookeJimmy Cook And His OrchestraJimmy CookeHarry James And His OrchestraWoody Herman And His OrchestraHarry James & His Music MakersWoody Herman And The Fourth Herd + +1645146Buddy HayesTheodore Harmond HayesAmerican jazz bassist and tuba player, worked with: Larry Funk (1936), Art Mooney (1939), Stan Kenton (1939), Ken Baker (1940), Texas Jim Lewis & His Lone Star Cowboys (1941), Les Paul (1948), Spike Jones (1949), Harry James (1951) and in the Lawrence Welk's Orchestra (from 1954 to 1966). + +Born: 01 August, 1916 in Weston, West Virginia. +Died: 26 April, 1997 in Coos Bay, Oregon.CorrectTheodore HayesHarry James And His OrchestraTexas Jim Lewis And His Lone Star Cowboys + +1645165Floyd BlantonFoy BlantonAmerican jazz upright bassistCorrectBlantonFoy BlantonHarry James And His Orchestra + +1645166Larry KinnamonAmerican jazz pianiist.Needs VoteKinnamonL. KinnamonHarry James And His Orchestra + +1645167Herb LordenAmerican jazz saxophonist, clarinetist, and arranger.CorrectH. Lorden, Jr.Herbert Lorden, JrHerbert Lorden, Jr.LordenHarry James And His Orchestra + +1645292Cécile GrondardFrench double bassist.Needs VoteOrchestre Des Concerts LamoureuxLes Siècles + +1645446James BossertAmerican jazz trumpet player.Needs VoteBossertJim BossertWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +1646047John Riley (2)John Bernard RileyAmerican jazz drummer and educator, born June 11, 1954 in Aberdeen, Maryland. He has performed with many world class musicians including Stan Getz, Milt Jackson, Miles Davis and Dizzy Gillespie.Needs Votehttp://www.johnriley.org/http://www.myspace.com/johnrileymusichttps://www.drummerworld.com/drummers/John_Riley.htmlhttp://en.wikipedia.org/wiki/John_Bernard_RileyJ. RileyJohn ReillyJon RileyRileyThe George Gruntz Concert Jazz BandWoody Herman And His OrchestraRed Rodney QuintetBob Mintzer Big BandWoody Herman And The Thundering HerdThe Vanguard Jazz OrchestraJack Cortner Big BandThe Gotham Jazz OrchestraDMP Big BandBob Mintzer QuartetTed Rosenthal QuintetRichard Boukas Trio1:00 O'Clock Lab BandRatko Zjaca Nocturnal FourSteve Hobbs QuartetDaniel Jamieson's Danjam OrchestraHubert Nuss TrioAlex Heitlinger Jazz OrchestraSean Nelson's New London Big Band + +1646875Heinz WehrleSwiss organist and composer. Born 1921. Died 2012CorrectNetherlands Chamber OrchestraTonhalle-Orchester Zürich + +1647148Hans Münch-HollandHans Rudolph Münch-HollandHans Münch-Holland (15 January 1899 - 7 December 1971) was a classical cellist.Needs VoteH. Münch-HollandHans Münch HollandStaatsorchester StuttgartGewandhausorchester LeipzigOrchester der Bayreuther FestspieleDas Strub-QuartettCappella ColoniensisGewandhaus-Quartett LeipzigKehr-Trio + +1648950John OslawskiAmerican jazz saxophonist, clarinetist and flutist, born 23 July 1947, died 15 July 2000.Needs VoteJ. OslawskiWoody Herman And His OrchestraWoody Herman & The New Thundering Herdhr BigbandThe Woody Herman Big BandMain Stream Power BandWoody Herman And The Thundering Herd + +1649042Menno Van SlootenVocalist.Needs VoteNederlands Kamerkoor + +1649043Caroline De JonghClassical soprano vocalistCorrectCarole de JonghNederlands Kamerkoor + +1649046Nine Van StrienClassical alto vocalistCorrectNederlands Kamerkoor + +1649050Myra KroeseDutch mezzo-soprano vocalistCorrectNederlands Kamerkoor + +1649051Marc Van HeterenVocalist.Needs VoteThe Amsterdam Baroque ChoirNederlands Kamerkoor + +1649052Matthew BakerAustralian bass & baritone vocalist who specialises in the performance of early music and Baroque operas and oratorios.Needs Votehttp://www.matthewbaker.nl/index.php?page=biographyDe Nederlandse BachverenigingL'ArpeggiataNederlands KamerkoorVox LuminisAkadêmiaLe Nuove MusicheLuthers Bach Ensemble + +1649053Albert Van Ommen (2)Dutch classical tenor vocalist.Needs Votehttp://www.albertvanommen.com/Albert v. OmmenGroot OmroepkoorNederlands Kamerkoor + +1649055Stefan BerghammerClassical tenor vocalist.Needs Votehttp://www.stefanberghammer.com/desktop.index.htmHuelgas-EnsembleCappella AmsterdamSchweizer KammerchorNederlands KamerkoorLe Nuove Musiche + +1649057Hugo Oliveira (2)Portuguese bass / baritone vocalist from LisbonNeeds VoteNederlands KamerkoorVox LuminisCappella MediterraneaLudovice EnsembleEnsemble Bonne CordeEuropäisches Hanse-Ensemble + +1649058Klaas StokDutch conductor and organist, born March 7, 1963 in Deventer, Netherlands. +He is chorus master of the [a2002940]. +Correcthttp://www.klaasstok.nlhttp://www.bach-cantatas.com/Bio/Stok-Klaas.htmNederlands Kamerkoor + +1649064Asa OlssonSwedish alto & mezzo-soprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Olsson-Asa.htmÅsa OlssonNederlands Kamerkoor + +1649065Robert CoupeClassical tenor vocalistNeeds VoteThe Amsterdam Baroque ChoirNederlands KamerkoorPentacost Vocaal Ensemble + +1649069David BarickClassical bass vocalistCorrectNederlands Kamerkoor + +1649077Jasper SchweppeDutch Bass & Baritone vocalistNeeds VoteHuelgas-EnsembleNederlands Kamerkoor + +1649079Alberto Ter DoestDutch Tenor Vocalist.Needs Votehttps://www.facebook.com/alberto.terdoestNederlands Kamerkoor + +1649184Alberto SocarrasAlberto Socarrás EstacioCuban-American flautist, clarinetist and saxophonist, born 19 September 1908 in Manzanillo, Cuba, died in New York, 26 August 1987. +Studied flute with his mother in Cuba and at Timothy Music Conservatory in New York, where he had moved at age 18. Introduced the flute to jazz in his recordings with [a307393], to whom he was introduced by [a910076].Needs Votehttps://en.wikipedia.org/wiki/Alberto_Socarrashttps://www.allmusic.com/artist/albert-socarras-mn0001784630http://flutejournal.com/alberto-socarras-a-profile/https://adp.library.ucsb.edu/names/110509Albert SocarrasAlbert SoccarasAlberto SocarasAlberto SocarrásAlberto SoccarasBert SocarrasC. SocarràsSocarrasSocarrásClarence Williams And His OrchestraBabs Gonzales And His OrchestraSocarras And His OrchestraAlberto Socarras And His Afro Cuban Jazz Orchestra + +1649458Gordon FaggetterGordon FaggetterEnglish drummer and painter (b. Surrey, 1948 - died in Rome, Italy, on August 12, 2020). Formed [a1477874] with [a=George William Sims] and [a=Roger Smith (22)]. In 1967 he arrived in Italy with the band accompanying [a=Patty Pravo]. Despite musical success with [a=Cyan (6)] he followed his love for painting (oil, watercolor), providing cover artwork for [a=Francesco De Gregori], [a=Camel (7)] and [a=Oliver Onions] amongst others. Continued to perform with other British musicians living in Italy e.g. [a=Douglas Meakin], [a=Dave Sumner], [a=Mick Brill], [a=Derek Wilson] and [a=George William Sims]. Needs Votehttp://www.gordonfaggetter.it/A.G. FaggetterFaggeterFaggetterG. FagetterG. FaggetterG. FoggetterG. FuggetterG.A. FaggetterGFGordonGordon FagetterGordon FaggeterCyan (6)The Cyan ThreeLa Macchina + +1649528Nancy BeanViolinist.Needs VoteThe Philadelphia OrchestraThe New Philadelphia QuartetThe Wister Quartet + +1649624Thomas RobinsonEnglish renaissance composer and music teacher (c. 1588 – 1610).Correcthttp://en.wikipedia.org/wiki/Thomas_Robinson_(composer)RobinsonTH. RobinsonTomas Robinson + +1650400Jozef HanušovskýClassical harpsichordistNeeds VoteJozef HanuskovskyJozef HanusovskyJozef HanusovskýSlovak Chamber Orchestra + +1650486Viliam ŠárayClassical cellistNeeds VoteV. SarayV. ŠárayViliam SarayViliam ŠarayŠáraySlovak Chamber Orchestra + +1651399Norman PockrandtJazz piano player +Needs VoteNorm PockrandLes Brown And His Band Of RenownWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Las Vegas HerdWoody Herman And His Octet + +1651773Gottfried LangensteinGerman horn player and professor (1941-2012).Needs VoteG. LangensteinMünchner PhilharmonikerStuttgarter KammerorchesterOrchester der Bayreuther FestspieleDie Deutschen BläsersolistenMünchner Nonett + +1651774Bernard GabelClassical trumpeterNeeds VoteB. GabelStuttgarter KammerorchesterGulbenkian OrchestraMaurice André And His Trumpet Consort + +1651831Виталий БуяновскийВиталий Михайлович БуяновскийВиталий Буяновский (in English: Vitaly Bujanovsky or Buyanovsky; 1928–1993) was a Soviet and Russian classical horn player, music teacher and composer. Correcthttp://ru.wikipedia.org/wiki/%D0%91%D1%83%D1%8F%D0%BD%D0%BE%D0%B2%D1%81%D0%BA%D0%B8%D0%B9,_%D0%92%D0%B8%D1%82%D0%B0%D0%BB%D0%B8%D0%B9_%D0%9C%D0%B8%D1%85%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2%D0%B8%D1%87http://en.wikipedia.org/wiki/Vitaly_BujanovskyBoujanovskyBuianovskiBuyanovskyV. BoujanovkskijV. BujanowskiV. BuyanovskyVItali BuyanovskyVitali BoejakovskyVitali BouïanovskiVitali BuianovskiVitali BujanowskiVitali BujanowskijVitali BuyanovskyVitali Mikhaelowitsch BujanovskiVitalig BujanovskiVitalij BujanovskiVitalij BujanovskijVitalij BujanowskijVitalij BujanowskyVitaliy BuyanovskyVitaly BouianovskiVitaly BouyanovskyVitaly BujanovskiVitaly BujanovskyVitaly BuyanovskyVitaly Mikhailovich BuyanovskyWitali BujanowskiWitalij BujanowskijWitalij BurnowskiВ. БуяновскийLeningrad Philharmonic OrchestraЛенинградский Квинтет Духовых Инструментов + +1652217Aladár MóžiAladár MóžiSlovak composer, conductor and violinist.Needs VoteA. MóziA. MóžiAladar MoziAladár MóziAldar MoziMóžiVladimír ModrýSlovak Radio Symphony OrchestraThe Slovak QuartetEstrádny Orchester + +1652416Clare GanisterClassical bassoonistCorrectBBC Symphony Orchestra + +1652417Susan FrankelClassical bassoonistCorrectBBC Symphony Orchestra + +1652421Martin HurrellBritish trumpet playerCorrectBBC Symphony Orchestra + +1652422Brendan ThomasBritish freelance classical hornist, and horn teacher. (Possibly from Bedford, Bedfordshire, England, UK) +He studied at [l305416]. He has played with the [a=BBC Symphony Orchestra], the [a=London Symphony Orchestra], [a=The Royal Philharmonic Orchestra], the [a=Philharmonia Orchestra], the [a=Orchestra Of The Royal Opera House, Covent Garden], as well as West End musicals, and various pop & film albums & soundtracks. Horn teacher at Bedford Modern.Needs Votehttps://www.linkedin.com/in/brendan-thomas-a6551411/?originalSubdomain=ukLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony Orchestra + +1652423Donald Watson (2)Classical clarinetistNeeds VoteBBC Symphony OrchestraThe Military Ensemble Of London + +1652426Richard StaggRichard Stagg is a British orchestral flautist who has been studying and performing on the shakuhachi for over twenty years. Initially he taught himself to play and then was lucky enough to have a substantial course of lessons with the esteemed master, [a1639054]. He now teaches, performs, makes, repairs, and tunes shakuhachi, thus joining the growing number of non-Japanese players who exist internationally, and who value the instrument for its profound and idiosyncratic tradition, its extraordianry range of tone-colour and the challenge involved in learning to play it.Needs Votehttps://www.komuso.com/people/people.pl?person=1375&lang=6BBC Symphony OrchestraRoyal Scottish National OrchestraYamato Ensemble + +1652428Anthony CrossClassical trumpeter.Needs VoteAntony CrossTony CrossCity Of London SinfoniaThe English Concert + +1652429Patricia MorrisBritish classical flutistCorrectBBC Symphony Orchestra + +1652430Huw EvansWind instrumentalist. +Principal horn for [a855061].Needs VoteThe Academy Of Ancient MusicOrchestra Of The Royal Opera House, Covent GardenTrinity Big BandThe Mozartists + +1652436Rebecca ShorrockClassical violinistNeeds VoteLondon Philharmonic OrchestraBBC Symphony Orchestra + +1652438Ruth HudsonBritish classical violinistCorrectBBC Symphony Orchestra + +1652439Gwendoline GaleClassical violinist. +Sister of [a=Jocelyn Gale].Needs VoteBBC Symphony Orchestra + +1652440Patrick JackmanBritish trombonistNeeds VotePat JackmanGabrieli ConsortThe Parley Of InstrumentsOrchestra Of The RenaissanceLondon Classical PlayersGabrieli PlayersThe King's ConsortHis Majestys Sagbutts And Cornetts + +1652441Edwin DoddClassical violinistCorrectBBC Symphony Orchestra + +1652443Hanna GmitrukClassical violinistCorrectBBC Symphony Orchestra + +1652444Daniel Meyer (5)Classical violinistCorrectBBC Symphony Orchestra + +1652445Ursula HeideckerUrsula Heidecker AllenViolinist, performer for the [a627128] since 1995.CorrectUrsula Heidecker AllenBBC Symphony OrchestraRoyal Scottish National Orchestra + +1652446Robert BishopBritish classical violinist, born in Stourbridge, West Midlands, UK.CorrectRob BishopBBC Symphony Orchestra + +1652447Phillipa BallardBritish classical violinistCorrecthttps://www.facebook.com/philippa.ballardPhilippa BallardBBC Symphony Orchestra + +1652449Charles RenwickClassical violinistCorrectBBC Symphony Orchestra + +1652451Celia WaterhouseEnglish violinist. Daughter of [a=William Waterhouse] and sister of [a=Graham Waterhouse] and [a=Lucy Waterhouse].Needs VoteBBC Symphony OrchestraThe Britten-Pears Ensemble + +1652453Jacqueline HartleyViolinist.Needs VoteHartley JachieJackie HartleyJacky HartleyJaqueline HartleyBBC Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsHartley Piano TrioOrchestre de GrandeurThe Valve Bone Woe Ensemble + +1652454David StirlingClassical percussionist.CorrectThe Academy Of Ancient MusicCollegium Musicum 90 + +1652455Dawn NellerClassical violinistCorrectDawn NellorBBC Symphony Orchestra + +1652456Russell DawsonBritish classical violinistCorrecthttp://www.dorchesterviolinlessons.co.uk/BBC Symphony Orchestra + +1652457Keith GurryBritish classical violinist, died 29 May 2012.CorrectBBC Symphony Orchestra + +1652458Regan CrowleyAmerican classical violinistCorrecthttps://www.facebook.com/regan.crowley.7BBC Symphony Orchestra + +1652459Lynette Wynn-PadfieldClassical violinistCorrectBBC Symphony Orchestra + +1652460Jeremy Martin (2)Classical violinistCorrectBBC Symphony Orchestra + +1652463Marian GulbickiClassical double bassistCorrectBBC Symphony Orchestra + +1652464Mark Sheridan (3)British classical cellist.Needs VoteBBC Symphony Orchestra + +1652466Audrey HenningClassical violinistCorrectBBC Symphony Orchestra + +1652467Dylan MarvellyBritish classical bassistCorrectBBC Symphony Orchestra + +1652468Nikos ZarbClassical violist and photographerNeeds Votehttps://www.facebook.com/nikoszarbhttp://www.nikoszarbphotography.co.uk/BBC Symphony Orchestra + +1652469Caroline HarrisonClassical viola player.Needs VoteBBC Symphony OrchestraRoyal Philharmonic OrchestraNew London Consort + +1652470Clare HintonBritish classical cellistNeeds VoteBBC Symphony OrchestraThe London Cello Sound + +1652471Martin HumbeyClassical viola player.Needs VoteRoyal Philharmonic OrchestraEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of LondonOrchestre de GrandeurThe Valve Bone Woe Ensemble + +1652475Eric SargonEric Sargon (1928 - 2025) was a classical violist.Needs VoteBBC Symphony Orchestra + +1652477Andrew McVeighClassical cellistCorrectBBC Symphony Orchestra + +1652479Emma PritchardEmma Wallace PritchardBritish classical cellist. +She studied at the [l527847] (1982-1986). Former member of the [a=Hallé Orchestra] (1987-1990). Member of the [b]New English Rose[/b] string quartet.Needs Votehttps://www.facebook.com/profile.php?id=100011536662118https://www.linkedin.com/in/emma-wallace-pritchard-28670633/?originalSubdomain=ukhttps://maslink.co.uk/client-directory?client=PRITE1&http://www.newenglishrose.co.uk/biography.phpE. PritchardE. PritchardE.PritchardEmma WallaceLondon Symphony OrchestraBBC Symphony OrchestraHallé OrchestraThe London Cello Sound + +1652480Janice BrodieClassical cellistNeeds VoteBBC Symphony OrchestraThe London Cello Sound + +1652481Gerald ManningGerald Manning was a professional viola player and teacher for over forty years, and retired from the number 4 position in the viola section of the BBC Symphony Orchestra after 29 years as a member. Previous to this he also held the sub-principal viola position in the Royal Liverpool Philharmonic Orchestra from 1964 to 1968, and has recently been listed in a new web site of Composers with Merseyside Connections. He has also worked with the Orchestra of the Royal Opera House - Covent Garden, the Philharmonia and the Royal Philharmonic Orchestras of London. Since leaving the BBC Symphony Orchestra he built a very successful teaching practice in West Sussex where he continued to compose and coach students in Chamber Music. With the viola section of the BBC Symphony Orchestra he has given two Wigmore Hall recitals in celebration and in the presence of the great English viola virtuoso Lionel Tertis. He had previously met Lionel Tertis in February 1962 when Tertis was living at Marryat Road in London; Bernard Shore sent his young protegee to his former teacher when he heard that Tertis had a viola available which was made to his specifications by Lovett Gill whose brother was none other than the British sculptor, engraver, and typographer Eric Gill. Tertis asked Manning to improvise a short melody and play it across the complete range of the instrument using different positions and modulations where needed and at it's conclusion he seemed pleased for the instrument was offered to the young student. He has of course worked with some of the finest conductors, composers and soloists during his long and eventful career. He has broadcast regularly on BBC Radio 3 and Television, and his discography with the BBC Symphony, Royal Liverpool Philharmonic and Philharmonia Orchestras' is considerable. As a Conductor he has held the post of Assistant-Conductor to James Kershaw and Worthing Citizens' Orchestra, and principal conductor to Harrow Symphony Orchestra and Herga Philharmonic Orchestra. He also Composes and his most recent works are three miniatures for Violin and Piano, a Violin Sonata, String Quartet, a Romance for Viola and Orchestra, 'HERCULANEUM' which is a large scale orchestral work with chamber choir and he has just completed his first viola sonata which is dedicated to the memory of his former teacher Bernard Shore. Educated at Kneller Hall and the Royal College of Music he studied the viola with Bernard Shore, clarinet with Ralph Clarke, and at Kneller Hall with the legendary George Garside-principal clarinet of the London Symphony Orchestra, and it was at this time that he also had some private tuition with Frederick Riddle who was principal Viola in Sir Thomas Beecham's Royal Philharmonic Orchestra. At the Royal College of Music he studied composition with the English Composer Adrian Cruft, who was the son of the distinguished double-bass player Eugene Cruft, who Sir Thomas Beecham invited to join his newly formed orchestra of 1909.From 1929-49,Eugene Cruft was principal double-bass in the BBC Symphony Orchestra. Gerald Manning studied chamber music with Helen Just, and conducting with Harvey Philips. Professor Bernard Shore imbued and inspired him to emulate his teaching methods. After graduation, and whilst a member of the Royal Liverpool Philharmonic Orchestra he secured what was to be the first of his peripatetic appointments with Cheshire Education Authority, and taught the violin and viola at Wirral Grammar School. Returning to London and the BBC Symphony Orchestra, Harrow Education Authority appointed him as a peripatetic teacher in two of their Grammar Schools. During his teaching career he received the following commendations: "Throughout the Borough of Hillingdon & Harrow, Gerald Manning was well-known & acclaimed as one of the most gifted Violin Teachers." (Retired Deputy Head-Teacher)"I was recommended to him by a Music Colleague, who gave me a glowing report of his qualities as a musician & an excellent violin teacher for children of all ages" (Private Piano Teacher - Uxbridge)" We found him to be an inspirational teacher and David did well under his tutelage. We were very satisfied with the quality of Mr Manning's Teaching." (Professor C.L.H. - Ruislip) He has also had the opportunity to study the Suzuki method on his frequent visits to Japan. He is widely travelled and speaks German and French. His hobbies are reading, travel, painting, calligraphy, and 'classic' cars, and he possesses a fine collection of instruments and bows, which include an Obermeier baby grand piano, and a beautiful unnamed English Viola of 1792. As an author Gerald Manning has written three books, (1) Watch The Conductor (2009): a book of reminiscence, which attempts to give a brief summation of some of the great conductors the author has been privileged to play under: (2) So You Want To Play The Violin (2009): for parents with gifted children and mature adults who wish to pursue serious study on the instrument: (3) In Pursuit of Perfection; The Great Luthiers (2010): a history of the great violin makers craft dedicated in emulating the old masters in the pursuit of perfection. All three volumes are available at myebook.com. A devout and practising Christian Gerald Manning was confirmed at Westminster Abbey on Saturday, the 23rd of March 1957 by the Lord Bishop of London. d. 26 Aug 2014.Needs Votehttp://www.scoreexchange.com/profiles/www.geraldmanning.sibeliusmusiBBC Symphony OrchestraRoyal Liverpool Philharmonic Orchestra + +1652483Graham BradshawBritish classical cellistNeeds VoteG. BradshawBBC Symphony OrchestraThe London Cello SoundThe Strange Quartet + +1652485Peter FreyhanClassical cellistNeeds VoteBBC Symphony OrchestraThe London Cello Sound + +1652487Helen RowlandsClassical double bassistNeeds VoteLondon Philharmonic Orchestra + +1653039Ernesto BrancucciItalian singer and dubber (Parma, November 23, 1947 - Rome, April 12, 2021). Husband of [a=Marinella Viri], father of [a=Virginia Brancucci] and [a=Lorena Brancucci] and brother of [a=Maria Cristina Brancucci] and [a=Margherita Brancucci].Needs VoteAugusto GiardinoDaniele ViriE. BrancucciMaloeErmaviloDaniele ViriMirko PontrelliAugusto Giardino (2)I Cantori Moderni di Alessandroni"Le Voci" Di Ernesto BrancucciGli AlleluiaClan AlleluiaI Trovatori (2)Quel Giorno Di Uve Rosse + +1653062Alton MooreAmerican jazz trombonist. +Played with : Fats Waller, Coleman Hawkins, Dizzy Gillespie, Benny Carter, Fletcher Henderson and others. + +Born : October 07, 1908 in Selma, Alabama. +Died : January 01, 1978 in New York City, New York. +Needs Votehttp://en.wikipedia.org/wiki/Alton_Moorehttps://adp.library.ucsb.edu/names/332402Al MooreAlton "Slim" MooreAlton 'Slim' MooreAlton 'Slim' MooreAlton Slim MooreMooreSlim MooreDizzy Gillespie And His OrchestraLouis Armstrong And His OrchestraDizzy Gillespie Big BandBenny Carter And His OrchestraBlanche Calloway And Her Joy Boys + +1653583Jan LindahlSwedish classical violinistNeeds VoteGöteborgs Symfoniker + +1653590Mats EnokssonSwedish classical violinistCorrectGöteborgs Symfoniker + +1653725Liisa TamminenClassical viola player.Needs VoteRitva-Liisa TamminenCamerata Bern + +1653844LeewiseLewis Voigtlander-oElectro House DJ from Milton Keynes, United Kingdom +Needs Votehttps://soundcloud.com/leewise + +1655048Anette SichelschmidtGerman classical violin and viola player.Needs Votehttp://www.anette-sichelschmidt.de/Anette SichelschmidAnnette SichelschmidtLa Chapelle RoyaleLa Petite BandeLa StagioneRicercar ConsortCantus CöllnWeser-RenaissanceMusica FiataHandel's CompanyHimlische CantoreyJohann Rosenmüller EnsembleFiori MusicaliMore Maiorum + +1655701Walter HauptWalter Josef HauptWalter Haupt (28 February 1935 - 17 Mai 2023) was a German percussioniet, timbalist, composer, conductor and producer.Needs VoteStaatsorchester StuttgartBayerisches StaatsorchesterCollegium Aureum + +1655902Fredrik August EhrströmFredrik August EhrströmFinnish composer, choir leader and classical organ player. Born on January 12, 1801 in Luoto, Finland and died on March 19, 1850 in Helsinki, Finland.Needs VoteEhrströmEhströmF. A. EhrströmF. A.EhrströmF. EhrströmF.A. EhrströmF.A.EhrströmFrederik August EhrströmFredrik A EhrströmFredrik Ehrström + +1655904Markku MarttinaNeeds VoteM. MarttinaNeloset + +1656163Ophélie GaillardFrench classical cellist, born 13 June 1974 in Paris. She founded the chamber ensemble Pulcinella in 2005.Needs Votehttp://www.opheliegaillard.comhttps://www.facebook.com/ophelie.gaillard.violoncellistehttp://www.pulcinella.fr/gaillard.htmhttps://en.wikipedia.org/wiki/Oph%C3%A9lie_GaillardO. GaillardPulcinellaLes Talens LyriquesAmarillisGli Angeli GenèveOphélie Gaillard & FriendsTrio Waldstein + +1656172Alex PotterAlto vocalistNeeds Votehttps://www.alexpotter.info/hauptseiteCollegium VocaleGesualdo Consort AmsterdamLa Capella DucaleEnsemble InégalGli Angeli GenèveChor & Orchester Der J.S. Bach Stiftung St. GallenLa Festa MusicaleAbendmusiken Basel + +1656173Juliet FraserClassical soprano vocalistNeeds Votehttps://www.julietfraser.co.uk/https://soundcloud.com/julietfraserhttps://www.youtube.com/channel/UCz1bamuxHP4aUaIW-yBSESQThe Cambridge SingersBBC SingersCollegium VocalePolyphonyExaudiTenebrae (10)Octandre EnsembleThunder Music Ensemble + +1656174Susan EitrichGerman classical soprano.Needs Votehttp://www.susaneitrich.de/Collegium VocaleGli ScarlattistiPeñalosa-Ensemble + +1656175Maria KöpckeClassical soprano.Needs VoteCollegium VocaleCappella AmsterdamEnsemble Alta Musica + +1656176Christopher WatsonBritish classical tenor. Born 1969 in Leamington Spa, Warwickshire, EnglandNeeds Votehttp://chriswatsontenor.com/C. WatsonChris WatsonChris Watson (22)Theatre Of VoicesThe Tallis ScholarsCollegium VocaleThe Monteverdi ChoirThe Binchois ConsortOrchestra Of The RenaissancePolyphonyEx Cathedra Chamber ChoirThe Clerks' GroupSospiriArs Nova CopenhagenThe Eric Whitacre SingersTenebrae (10)AlamireGallicantusSette Voci + +1656177Gunther VandevenBelgian counter-tenor, born in Leuven, Belgium.Needs Votehttp://www.bach-cantatas.com/Bio/Vandeven-Gunther.htmCollegium VocaleLa Petite BandeCapilla FlamencaEnsemble Jacques ModerneVocalconsort BerlincantoLXVictoria Consort + +1656515Jac GorodetzkyЖак Городецкий = Jac GorodetzkyClassical violinist, born 1913 in Odessa, Russian Empire and died in 1955. + +He was born in Odessa but the family moved to London when he was only one, to avoid a pogrom. They moved to the U.S. before the war, settling in Philadelphia. He was well thought of as a student and secured good positions in orchestras and quartets. He joined the Budapest String Quartet in 1949. Although his playing, like Ortenberg's, was a little quiet, he was well thought of during the Budapest auditions, when in his mid-thirties. + +In 1950, the quartet went to Europe for the first time after the war. They agreed not to go to Germany, especially because Schneider had lost his mother and sister in Auschwitz. This tour, together with the continual demands in the U.S., heavily stressed Gorodetzky. He developed stage fright, and sometimes pleaded for extra rehearsals of works they had already played. + +Then in September 1952, they played in Japan as the first quartet to tour there after the war. The whole season was sold out in two hours. Three thousand attended their first concert. There were staff to attend to their every need, and cars to take them everywhere. One night they felt the need to get some exercise in Okayama. They were walking on a narrow road, when Josef Roisman fell into a nine-foot ditch and broke his left wrist. They had it set at the U.S. military hospital in Tokyo. On their return to the U.S., they were told the wrist had been improperly set and had to be rebroken and reset. Concerts were switched to trios and piano quartets during Roisman's recovery. After months of hard work, he rejoined the quartet in Portland, Oregon on January 12, 1953. + +A second Japanese tour in 1954 was even more successful, but Jac was getting more uncomfortable. In February, he told the others he wanted to leave. They hoped to talk him out of it, but none of them realized how unwell he was. Finally, in November 1955, he committed suicide in a small hotel in Washington. The other players felt awful, and played benefit concerts for his family at the Settlement Music School. Later, Mischa left them most of his music and on his death Joe left them most of his money.Needs Votehttps://en.wikipedia.org/wiki/Budapest_String_Quartet#Jac_GorodetzkyJ. GorodetzkyJac CordetzkyJac GorodetskyJac GorodetzkiJac GorodtskyBudapest String QuartetThe Cleveland OrchestraGuilet String Quartet + +1656809Gerhard BraunGerhard Braun (22 February 1932 - 14 February 2016) was German classical flautist and music profossor. He was married to [a4803525].CorrectBraunGerh. BraunGottsche Gerhard BraunStuttgarter Collegium InstrumentaleBachcollegium StuttgartUlsamer CollegiumHeidelberger KammerorchesterSüdwestdeutsches KammerorchesterDas Blockflötenensemble Gerhard BraunCapella Antiqua StuttgartCollegium St. Emmeram + +1656812Alois BrandhoferClassical clarinettist.Needs Votehttp://www.ab-clarinet.com/https://www.linkedin.com/in/alois-brandhofer-14165139/https://en.wikipedia.org/wiki/Alois_BrandhoferWiener SymphonikerWiener Mozart-Bläser + +1656813Rainer MehneGerman classical violinist, born in 1947 in Jugenheim and died 17 February 2016.CorrectBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinPhilharmonisches Oktett BerlinNDR Sinfonieorchester + +1657003Daniel FesquetLiner notes translator and booklet editor.CorrectDaniël Fesquet + +1657169Dexter HallJazz guitarist.Needs VoteJohnny Guarnieri Swing MenJohnny Guarnieri's All Star Orchestra + +1657257Tim NankervisAustralian cellistNeeds VoteTimothy NakervisTimothy NankervisSydney Symphony OrchestraSeraphim Trio + +1657871Laurence DaleBritish tenor, artistic director and conductor, born 10 September 1957 in Sussex, England.Needs Votehttp://laurencedale.com/Dale + +1658131Георгий СтрогановГеоргий Михайлович Строганов 1907-1955Needs VoteG. StroganovGeorgij StroganovStroganovГ. СтрогановГ. СтрогановаСтроганов + +1658257Joseph CrouchClassical [b]cellist[/b] and former chorister at Westminster Abbey, and a choral scholar at King's College, Cambridge.Needs Votehttps://thesixteen.com/team/joseph-crouch/https://www.aam.co.uk/joseph-crouch/Jo CrouchJoe CrouchThe King's College Choir Of CambridgeThe SixteenThe Academy Of Ancient MusicThe King's ConsortNew Dutch AcademyThe Choir Of Westminster AbbeyArcangeloIrish Baroque OrchestraClassical OperaThe English ConcertThe MozartistsThe Illyria Consort + +1658480Jaakko KyläsaloNeeds VoteNeloset + +1658481Hannu MaristoNeeds VoteNeloset + +1658482NelosetNeeds Major ChangesJukka KuoppamäkiMarkku MarttinaJaakko KyläsaloHannu Maristo + +1658578Richard EvidonLiner notes author and translator for classical releases & booklet editor.Needs Vote + +1659281Marcel MoyseFrench flutist, conductor, and music educator; father of [a1659282]. +Born: May 17, 1889, St. Amour, France. +Died: November 1st, 1984, Brattleboro, Vermont, USA. + +He studied at [url=https://discogs.com/label/1014340]Paris Conservatory[/url] with [url=https://discogs.com/artist/1269379]Philippe Gaubert[/url], [a7159655], and [a1822934]. +Moyse was one of the co-founders of the [l1225719] and taught on the faculty of the Conservatoire de musique du Québec à Montréal in Canada.Needs Votehttps://en.wikipedia.org/wiki/Marcel_Moysehttp://www.flutehistory.com/Players/Marcel%20Moyse/index.php3https://adp.library.ucsb.edu/names/103064M. Marcel MoyseM. MoiseM. MoyseMarcelMarcel MoycedMarcel MoÿseMoyseOrchestre De La Société Des Concerts Du ConservatoireMarlboro Festival OrchestraBusch Chamber Players + +1659359Mary EadeViolin player from England, UKNeeds VoteEnglish Chamber Orchestra + +1659362Anita LaskerVioloncello (cello) player. Wife of [a2488968]. Mother of [a990481]. Grandmother of [a483895], [a1342004] and [a941060]. +Anita Lasker-Wallfisch (born 17 July 1925) is a German-British cellist, and a surviving member of the Women's Orchestra of AuschwitzNeeds Votehttps://en.wikipedia.org/wiki/Anita_Lasker-WallfischAnita Lasker WallfischAnita Lasker-WallfischEnglish Chamber Orchestra + +1659363Joanna MilhollandBritish cellist. She was married to [a836389].CorrectEnglish Chamber OrchestraRasoumovsky Quartet + +1659364Norbert BlumeClassical viola player.Needs Votehttps://www.londonoctave.com/octave-playersBlumeNorbert BlumNorbert BlümEnglish Chamber OrchestraCapricorn (14) + +1659365Simon RawsonBritish violistCorrectEnglish Chamber OrchestraScottish Chamber Orchestra + +1659604Philip CollinsClassical trumpeter.Needs VotePhil CollinsThe Cleveland OrchestraCincinnati Symphony OrchestraCincinnati Pops OrchestraEastman Brass Quintet + +1660301Michael HübnerDanish violinist, born in 1958.CorrectAalborg Symfoniorkester + +1660543Paul McKeeAmerican jazz trombonistNeeds VoteMcKeeP. McKeePal McKeeWoody Herman And His OrchestraThe Woody Herman Big BandJazz Members Big BandJim Widner Big BandThe Creative Opportunity OrchestraThe Boulevard Big BandFrank Mantooth Jazz OrchestraCleveland Jazz OrchestraThe Woody Herman OrchestraThe Jeff Benedict Big Big BandDan Gailey Jazz OrchestraDavid Caffey Jazz OrchestraKansas City Jazz OrchestraBob Washut DodectetBen Markley Big BandPeter Sommer Septet + +1660547Jerry PinterAmerican saxophonistNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandCharles Rutherford's Jazz Pacific OrchestraThe Carl Saunders SextetBob Curnow's L. A. Big BandAlan Ferber SeptetThe Los Angeles Jazz OrchestraRaoul Romero And His Jazz Stars OrchestraJack Sheldon OrchestraThe Las Vegas Jazz OrchestraThe Steve Huffsteter Big BandMark Masters' Jazz OrchestraMark Masters EnsembleRon Stout Quintet + +1661496Lou Anne NeillAmerican harpist, she has been the harpist of the Los Angeles Philharmonic since 1983, and she teaches at UCLA.Needs Votehttps://www.laphil.com/musicdb/artists/3848/lou-anne-neillhttps://www.united-mutations.com/n/lou_anne_neill.htmLou Ann NeilLou Ann NeillLouanne NeilLouanne NeillLu Ann NeilThe Abnuceals Emuukha Electric OrchestraLos Angeles Philharmonic Orchestra + +1661825Maarten MostertDutch cello playerNeeds VoteM. MostertNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +1662692DresdyNeeds Major ChangesPaolo DossenaDentrix + +1662770Juan Manuel QuintanaJuan Manuel Quintana is a gambist born in 1972 in Buenos Aires. He studied viola di gamba with Ricardo Massun in Argentina and pursued further studies in Geneva with Arianne Maurette, at the Schola Cantorum Basiliensis with Paolo Pandolfo and finally at the Paris Conservatoire with Christophe Coin. +He has played with well known ensembles such as the Ensemble Vocal de Lausanne, Concerto Vocale, Hespèrion XXI and Les Musiciens du Louvre where he assisted Mark Minkowski from 1995 to 2005. His recordings such as Quintana’s Bach, Buxtehude and Marais albums were noticed.Needs Votehttp://www.ensembledaimonion.com/juan-manuel-quintanahttp://www.fundacionkonex.org/b4081-juan-manuel-quintanahttp://df.divirtasemais.com.br/app/noticia/programe-se/2013/09/11/noticia_programese,144083/juan-manuel-quintana-apresenta-recital-em-homenagem-a-viola-de-gamba.shtmlJ. M. QuintanaJuan-Manuel QuintanaConcerto VocaleLes Musiciens Du LouvreHespèrion XXIEnsemble Vocal De LausanneArcadia (6)Alessandro Stradella ConsortConcerto Di VioleCanto FioritoI Gemelli (2)Gambe Di Legno + +1662788Lars Ulrik MortensenDanish classical keyboard instrumentalist & conductor.Needs VoteLars Ulrich MortensenLars Ulrick MortensenLars-Ulrik MortensenMortensenLondon BaroqueCollegium Musicum 90Concerto CopenhagenEuropean Union Baroque OrchestraThe English Concert + +1662945Bruce SellersClassical tenor.CorrectSellersChanticleerNederlands Kamerkoor + +1662946Johnson FluckerClassical countertenor.Needs VotePomeriumChanticleerTalisman (8) + +1663218Inez CavanaughUS jazz singer. Married to Danish jazz entrepreneur [a=Timme Rosenkrantz] + +Born: 29 January 1909, Chicago, Illinois, USA +Died: 2 November 1980, Long Beach, California, USANeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/307806/Cavanaugh_InezCavanaughI. CavanaughDon Redman And His Orchestra + +1663454Eva WedinSoprano and alto vocalist. + +Member of the Swedish Radio Choir, Aug 1980 - Jun 2012Correcthttps://www.linkedin.com/in/eva-wedin-39988638Radiokören + +1663613Alfred SmedbergSwedish teacher and author. +Born July 22, 1850 in Humla, Sweden — died October 18, 1925 in Humla, Sweden.Needs Votehttps://sv.wikipedia.org/wiki/Alfred_SmedbergA SmedbergA. SmedbergA.SmedbergAlfred Smedberg (Tippu Tipp)Alfred SwedbergSmedbergSmedberg Alfred + +1663637Walter LearClassical wind instrumentalist (clarinet, bass clarinet, bassett horn, alto saxophone) and Professor of Clarinet. Born in 1894 - Died in 1981. +He was a member of the [a=London Symphony Orchestra] (1923-1929) & of the [a=Royal Philharmonic Orchestra], and Professor of Clarinet at [l680970].Needs VoteW. LearLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraVirtuoso Chamber EnsembleLondon Wind SoloistsThe London Wind Quintet + +1663638Willem de MontClassical cellist +Former member of the [b]Blech Quartet[/b] (1933-?), the [b]London Fire Forces String Quartet[/b] and former Principal Cello with the [a=London Symphony Orchestra] (1949-1954).Needs VoteBill De MontBill DemontBill DermontW. De MontW. DeMontW. de MontWilem De MontWillem De MontWillem DeMontWilliam De MontWilliam DeMontWilliam DemontWilliam deMontWlliam De MontLondon Symphony OrchestraLes Reed And His OrchestraThe Kingsway Symphony OrchestraVirtuoso Chamber EnsembleThe Virtuoso EnsembleThe London Jazz OrchestraDirections In Jazz UnitThe Francis Chagrin EnsembleThe Freddie Alexander Cello EnsembleLondon Symphony Orchestra Chamber Ensemble + +1663684Stephan MacleodSwiss classical bass / baritone vocalist, born 1971 in Geneva. +In 2003 he founded and directs the ensemble [a=Gli Angeli Genève]Needs Votehttp://www.bach-cantatas.com/Bio/MacLeod-Stephan.htmMacLeodMacleodS. Mac LeodS. MacLeodS. MacleodStephan Mac LeodStephan MacLeodStephan MacLoedStephan McLeodStephen MacleodStéphan MacleodConcerto SoaveHuelgas-EnsembleCollegium VocaleDe Nederlandse BachverenigingL'ArpeggiataRicercar ConsortCantus CöllnWeser-RenaissanceBalthasar-Neumann-ChorBach Collegium JapanLes Chantres Du Centre De Musique Baroque De VersaillesGli Angeli Genève + +1664523Charlie GainesCharles H. GainesAmerican jazz trumpeter, nicknamed "Devil", born August 8, 1900 in Philadelphia, Pennsylvania, died November 23, 1986 in Germantown, Pennsylvania. +Gaines played with (among others) Wilburn Sweatman, Sam Wooding, Earl Walton, Leroy Smith, Louis Armstrong, Fats Waller, Bessie Smith, Ethel Waters, Clarence Williams, The Hot Chocolates.Needs Votehttps://adp.library.ucsb.edu/names/112698C. GainesC. GainsCharles GainesCharlie GainsGainesGainsLouis Armstrong And His OrchestraFats Waller And His BuddiesBirmingham SerenadersBirmingham Darktown Strutters + +1664946Lisandro NesisArgentinian classical tenor vocalistNeeds Votehttp://www.lisandronesis.com/La Simphonie Du MaraisMusica FioritaLe Poème HarmoniqueLes Chantres Du Centre De Musique Baroque De VersaillesLa TempêteLa Chapelle Harmonique + +1665783Friiti OjalaAntti Fritiof OjalaAntti Fritiof "Friiti" Ojala was a Finnish fiddler. + +Born: November 2, 1892 in Ullava, Finland +Died: December 3, 1951 in Kaustinen, FinlandNeeds Votehttp://fi.wikipedia.org/wiki/Friiti_OjalaF. Ojala + +1666474Karl SannerGerman jazz drummer, born 10 May 1928 in Cologne, Germany, died 4 July 1966 in Monte Carlo, Monaco.Needs VoteCarl SannerLee Konitz QuintetJutta Hipp QuintetRolf Kühn QuintettHans Koller QuartetJutta Hipp ComboErhard Wenig QuartettDelle Haensch Jump ComboJutta Hipp And Her German Jazzmen + +1666707Elin RøNorwegian cellist, born 1975.CorrectOslo Filharmoniske Orkester + +1666902Julian StockerEnglish tenor & alto vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Stocker-Julian.htmMagnificatThe SixteenThe Cardinall's MusickThe Choir Of Westminster AbbeyElectric Voice Theatre + +1666946Mary Jo AhlbornAmerican violist, born in 1945.CorrectSan Francisco Symphony + +1666947Mischa MyersAmerican violinist and session musician, born 6 November 1922 and died 19 May 1996.CorrectSan Francisco Symphony + +1666978Darrell ParsonsDarrell Parsons is an American opera and jazz singer. He's married to [a1965218] and is the father of [a2184982].Needs VoteClemencic ConsortWiener Staatsopernchor + +1666979Hans TschedemnigAustrian classical alto trombonist & cornettistNeeds VoteHannes TschedemnigHans TschedemnikJohann TschedemnigOrchester Der Wiener StaatsoperClemencic ConsortMusica Antiqua WienArchiv Produktion Instrumental EnsembleWiener Posaunenquartett + +1667274Domitille VigneronClassical recorder & violin playerCorrectLa Simphonie Du Marais + +1667447Horst KüblböckHorst Küblböck (born 1939) is an Austrian classical trombonist. He's the father of [a3990220].Needs VoteHorst KublbockHorst KüblöckWiener SymphonikerClemencic ConsortMusica Antiqua WienEnsemble Prisma + +1667448Michael DittrichViolinist and conductor, 1977 he established his own ensemble Bella Musica for the historically correct performance of music from the Baroque, Classical and Biedermeier periods.Needs Votehttps://www.naxos.com/Bio/Person/Michael_Dittrich/31556DittrichMichaël DittrichWiener SymphonikerClemencic ConsortEnsemble Bella Musica De Vienne + +1667585Maria Teresa NesciClassical soprano vocalistNeeds VoteTeresa NesciCantica SymphoniaCoro Della Radio Televisione Della Svizzera ItalianaMadrigalisti Della RSICappella Musicale Della Cattedrale Di Vercelli + +1667588Giuseppe MalettoClassical tenor and sound engineer. +For years he devoted himself to the direction of vocal groups and in 1995 founded the ensemble [a=Cantica Symphonia].Needs Votehttp://oudemuziek.bo9.nl/en/festival/artists-in-residence/giuseppe-maletto/https://canticasymphonia.wordpress.com/the-director/G. MalettoMalettoConcerto ItalianoCantica SymphoniaCoro Della Radio Televisione Della Svizzera ItalianaCantar LontanoLa VenexianaMala PunicaLa Compagnia Del MadrigaleIl Teatro ArmonicoIl Pomo d'OroDelitiæ MusicaeIl Pomo d'Oro Choir + +1667841Gloria Shayne BakerGloria Adele (Shain) BakerAmerican composer and songwriter. +Married to [a=Noel Regney] (1951-1973, divorce), with whom she wrote the Christmas carol [i]Do You Hear What I Hear?[/i] (1962) + +Born September 4, 1923 in Brookline, Massachusetts, USA. +Died March 6, 2008 in Stamford, Connecticut, USA. +She charted twenty-one times in the U.S. and three times in the U.K. between 1958-2019. Her top charting song was "Almost There", a crossover hit by Andy Williams (co-written by [a319871]), which hit #67 overall, #12 adult contemporary in the U.S. and #2 overall in the U.K. in 1964. "Goodbye Cruel World" by James Darren hit #3 in the U.S. and #28 in the U.K. in 1961. Also, "The Men in My Little Girl's Life" by Mike Douglas hit #6 overall and #3 adult contemporary in the U.S. in 1965 (co-written by Mary Candy & Eddie Deane).Needs Votehttps://en.wikipedia.org/wiki/Gloria_Shayne_Bakerhttps://www.imdb.com/name/nm0790162/BakerG. BakerG. RegneyG. ShayneG. Shayne BakerGloria Baker ShayneGloria ShainGloria ShayneGloria Shayne (Baker)S ShayneShayneGloria ShayneGloria Regney + +1668065Doron David SherwinClassical cornett player.Needs Votehttp://www.concertopalatino.com/Doron_David_Sherwin.htmlD.D. SherwinD.D.SherwinDoran SherwinDoron D. SherwinDoron SherwinThe Amsterdam Baroque OrchestraClemencic ConsortSonnerieL'ArpeggiataCantus CöllnAccademia Strumentale Italiana, VeronaConcerto PalatinoCapriccio StravaganteOltremontanoCantar LontanoLa VenexianaIl Pomo d'OroLa ReverdieLa PifareschaLa Tempesta (2) + +1668684Peter Becker (4)Indian-born Contertenor, Baritone + Bass VocalistNeeds VoteHudson ShadSchola AntiquaCappella Nova (2)Sacabuche + +1669362Alan NewcombeBritish producer, coordinator, pianist, linguist (Russian and French), researcher and liner notes translator, mainly on the label [l=Deutsche Grammophon]. +Born 1957 in St. Helens, England. Needs Votehttps://schnittke-akademie.de/teams/alan-newcombe/A. NewcombAlan Newcome + +1669506George PooleyClassical tenor.Needs Votehttps://thesixteen.com/team/3082/The Tallis ScholarsThe SixteenHuelgas-EnsembleThe Binchois ConsortThe Cardinall's MusickThe Eric Whitacre Singers + +1669507Marc BusnelFrench classical bass & baritone vocalist.Needs VoteM. BusnelLe Concert SpirituelHuelgas-EnsembleEnsemble Clément JanequinCappella PratensisEnsemble Musica NovaEnsemble Jacques ModerneLe Parnasse FrançaisDoulce MémoireContinens Paradisi + +1669510Piet StryckersClassical string player. +Born Borgerhout March 20th 1955Needs VoteP. StryckersPiet StrijckensPiet StrijckersPiet StrijkersPiet StrjckersHuelgas-EnsembleThe Consort Of MusickeRicercar ConsortCapilla FlamencaCurrendeDe Meijt Op SolderOltremontanoEnsemble DaedalusLa CacciaPaul Rans EnsembleRomanesque + +1669994Albert King (2)Jazz bass player.CorrectThe Oscar Peterson Trio + +1669995Mark "Wilkie" WilkinsonJazz drummer.Needs VoteWilk WilkinsonWilk Wilkinson [Mark Francis Wilkie Wilkinson]Wilkie WilkinsonThe Oscar Peterson TrioWilk Wilkinson And His Boptet + +1670089Daniel GauthierDaniel GautierFrench engineer who is known for having worked with [a413086] as an assistant during the early 80’s.Needs VoteD. GauthierGauthier Daniel + +1670145Hard Dance AlliancePulsar (17), Steve Hill, SuaeHard Dance Alliance = Steve Hill, Suae, Pulsar + +The Hard Dance Alliance is… + +Steve Hill + +Nicknamed the King of Euphoric Hard Dance for over a decade, Steve Hill has firmly established himself as one of the World’s biggest selling Harder Styles producers. Head of The Masif Organisation, Hill is also co owner and resident at Masif Saturdays, as well as regularly touring around the globe with his unique style. 2014 sees Steve releasing over 30 singles, an album plus touring 12 countries as well as mixing the latest edition of Wild Energy! + +Suae + +As a producer and DJ, Suae is known as Australia’s champion of the Harder Styles, playing a diverse range of Hardstyle, Hardance and UK Hardcore. As a regular at Australia’s top festivals such as Stereosonic, Future Music, Bass Control & Defqon 1, Suae has had the whole world shuffling with his annual national and international tours. His hardstyle discs over the past 6 years on Ministry of Sound Australia’s Maximum Bass series have earned him gold status in the ARIA chart. With over 10 commercial compilations under his belt, Suae has had the privilege of remixing major artists such as Pitbull, Qwote, Sidney Samson & Da Hool as well as releases on Ministry of Sound Australia, Masif, hard & Central Station Records. + +Pulsar + +Pulsar is recognised as one of Australia’s most sought after hard EDM DJ, remixer & producers, with a career that has expanded almost a decade. He had his first club residency back in 2002 in his hometown, Sydney. From there he has gone on to perform at almost every major festival across Australia including Defqon 1, Stereosonic, Good Life & Future Music. Pulsar has had his music released on labels such as Ministry of Sound Australia, Masif, Hard & Central Station Records, has mixed over 8 commercial CD compilations & achieved gold sales as part of the Maximum Bass series. Be sure to join Pulsar & experience the story that is belted out through his turntable assassin!Needs Votehttp://www.centralstation.com.au/artists/hard-dance-alliance/HDASteve HillSuaePulsar (17) + +1670293Klaus StoppelGerman cellist and music professor, born in 1950.Needs Votehttps://www.stoppel-malerei.de/ueber-mich/Orchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgPhilharmonische Solisten Hamburg + +1670300Hayne Van GhizeghemHayne van GhizeghemFranco-Flemish composer of the early Renaissance Burgundian School, who lived during the second half of the 15th century and served as a singer, composer and soldier for [a1151372]. Eleven pieces can be definitively attributed to him, mainly rondeaux, amongst which Allez Regrets or De Tous Biens Plaine.Correcthttp://en.wikipedia.org/wiki/Hayne_van_Ghizeghemhttp://musicologicus.blogspot.fr/2009/05/hayne-van-ghizeghem.htmlGhizeghemGizeghemH. Van GhiseghemHaine van GuizeghemHayneHayne V An GhizeghemHayne Van ChizeghemHayne Van GhiezeghemHayne Van GhiseghemHayne Van GhizaghemHayne Van GhizeghenHayne Van GuizeghemHayne Von GhizeghemHayne van GhiezeghemHayne van GhizeghemHayne van GuizeghemVan Ghizeghembased on Ghizeghemvan Ghizeghemvan Ghizighem + +1670523Ludwig MinkusAloysius Bernhard Philipp MinkusAustrian composer of ballet music, violinist and teacher, born 23 March 1826 in Vienna, Austria and died 7 December 1917 in Vienna, Austria. +Also known as Louis or Léon Fyodorovich Minkus due to his long stays in Paris and Moskau/St. Petersburg.Needs Votehttps://www.musiklexikon.ac.at/ml/musik_M/Minkus_Ludwig.xmlhttps://en.wikipedia.org/wiki/Ludwig_MinkusAlois Louis (León) MinkusAloysius Ludwig MinkusL. MinkusLeon MinkusLéon (Ludwig) MinkusLéon MinkusMinkusЛ. МинкусЛеон МинкусЛюдвиг МинкусМинкус + +1670979Mike BrainClassical Horn and Bassoon player.Needs VoteMike BainSneak's Noyse + +1670982Tommy McQuaterThomas Mossie McQuater, Sr.Jazz trumpet player +born 4 September 1914 in Maybole, Scotland +died 20 January 2008 + +McQuater played with many of the leading English dance bands; with [a=Jack Payne] in 1934, [a=Lew Stone] in 1934-1935, with [a=Bert Ambrose] 1936-1938. During and after the war, he played with [a=the Squadronaires], making several recordings. +He also recorded with [a=Benny Carter] (1936-1937), [a=Danny Polo] (1937), [a=George Chisholm] (1938, 1944-1945, 1961), and [a=Benny Goodman] (1969).Needs Votehttp://en.wikipedia.org/wiki/Tommy_McQuaterhttp://lester.demon.nl/superm/people/gray-sessions.htmlhttps://adp.library.ucsb.edu/names/330883McQuaterT. McQuaterTom McQuaterTommey McQuaterTommy McQarterTommy McQuarterTommy McQuatorBenny Carter And His OrchestraAmbrose & His OrchestraThe Laurie Johnson OrchestraThe SquadronairesDanny Polo & His Swing StarsLew Stone And His OrchestraThe Jazz BoysReg Owen And His OrchestraBenny Carter & His Swing QuintetThe Johnny Hawksworth Jazz All Stars + +1670993Oscar EstellAmerican saxophonistNeeds VoteOscad EstelleOscar EstelleOscar EtelleLionel Hampton And His OrchestraThe Art Farmer SeptetErnie Fields Orchestra + +1671457Jean-Yves GuerryClassical alto / countertenor vocalistNeeds VoteJean Yves GuerryHuelgas-EnsembleLa Capella Reial De CatalunyaChoeur de Chambre de NamurPsallentes + +1671466Josep Miquel RamonJosep-Miquel Ramón i MonzóSpanish classical bass vocalist, born in Alboraia (Valencia). He studied singing at the Valencia Conservatory with Ana Luisa Rain, continuing his studies with Aldo Baldin, Juan Oncina and Felisa Navarro. + +Needs Votehttp://www.musiespana.com/artistas/josep-miquel-ramon-0/artist_detail/index.htmlJosep Miquel RamónJosep-Miquel Ramon I MonzóJosep-Miquel Ramon i MonzóJosep-Miquel RamónJosep-Miquel Ramón i MonzóMiquel RamonMiquel RamónLa Capella Reial De CatalunyaCor de ValenciaCapela Compostelana + +1671513Gordon WebbClassical trumpeterCorrectRodney WebbLondon Philharmonic OrchestraThe Wind Virtuosi Of England + +1671543Detlef HaggeClassical cornettistNeeds VoteCollegium AureumHamburger Bläserkreis Für Alte MusikArchiv Produktion Instrumental Ensemble + +1671544Keith Davis (2)Countertenor and Musical Director of [a=Cantores Michaelis].Needs VoteKeith DaviesWestminster Cathedral ChoirPro Cantione AntiquaCantores Michaelis + +1671546Peter MauruschatClassical bassoonist.Needs VoteCollegium AureumLa Petite Bande + +1671547Jan CaddyClassical vocalist.CorrectPro Cantione Antiqua + +1671548James LewingtonClassical tenor.CorrectPro Cantione Antiqua + +1671672Seymour LipkinAmerican pianist and conductor, born in Detroit, Michigan.Correcthttp://www.seymourlipkin.com/The Cleveland Orchestra + +1671673Alfred FrankensteinAlfred Victor FrankensteinAmerican art and music critic, author and professional clarinetist (1906-1981). +He was Music and Art Editor of the San Francisco Chronicle.Needs Votehttp://en.wikipedia.org/wiki/Alfred_FrankensteinAlfred V. FrankensteinChicago Symphony Orchestra + +1671764Margarita LilovaМаргарита ЛиловаMargarita Lilova (or Lilowa) was a Bulgarian-Austrian mezzo-soprano vocalist. +Born July 26, 1935 in Tscherwen Briag, Bulgaria. +Died April 13, 2012 in Vienna, Austria.Needs Votehttp://www.bach-cantatas.com/Bio/Lilova-Margarita.htmhttp://de.wikipedia.org/wiki/Margarita_LilowaLilowaMarg. LilowaMargarette LilovaMargarita LilowaMargaritha LilowaМ. ЛиловаМаргарита Лилова + +1671765Ernesto GavazziItalian operatic tenor, born 7 May 1941 in Seregno, Italy.CorrectЭрнесто ГавацциЭрнесто Гаваццы + +1671766Ursula KunzGerman contralto vocalist.Needs VoteWDR Rundfunkchor Köln + +1671767Catherine PierardClassical sopranoNeeds Votehttp://www.catherinepierard.com/The Schütz Choir Of London + +1671768Elizabeth GaleBritish soprano vocalist, born 8 November 1948 in Sheffield, England.Needs VoteElisabeth GaleGale + +1671770Anita SoldhGun Anita Sold ForsströmSwedish opera singer (soprano), educator and hovsångare (royal court singer), born September 26, 1949 in Stockholm. + +She has been a court singer since 1992. She was associated with the Royal Opera in the years 1977–2004. She sang lyrical roles for a long time and gained attention through performances at Vadstena Academy. Eventually, the repertoire was expanded to lyrical-dramatic parts such as Wagner's Senta in The Flying Dutchman, Elisabeth in Tannhäuser, Eva in The Master Singers in Nuremberg and the title role in Richard Strauss' Salome. One of her main roles was Elsa in Wagner's Lohengrin. Soldh is currently working as a singing teacher at the Falun Conservatory of Music.Needs Votehttps://sv.wikipedia.org/wiki/Anita_Soldh + +1671772Jean-Claude HartemannFrench conductor, born 1929 in Vezet, France and died 1993 in Paris, France.CorrectHartemannJ. C. HartemannJ.-C HartemannJ.-Claude HartemannJ.C. HartemannJean Claude Hartemann + +1671773Margareta HintermeierAlto vocalist.Needs VoteHintermeierMargaretha Hintermeier + +1671774Sarah CaldwellAmerican conductor, impresario, and stage director of opera, born 6 March 1924 in Maryville, Missouri and died 23 March 2006 in Portland, Maine.Correct + +1671775Lucio GalloItalian operatic baritone, born 9 July 1959 in Taranto, Italy.Correct + +1671776Gary LakesAmerican operatic tenor, born 26 September 1950 in Woodward, Oklahoma. +Died November 11, 2025 in Pittsburgh, Pennsylvania.Needs Votehttps://en.wikipedia.org/wiki/Gary_Lakeshttps://www.imdb.com/name/nm0992578/Gary Lakes ( Énée )Lakes + +1671777Jean-Pierre MartyFrench pianist and conductor + +From wikipedia: +Born 12 October 1932 - died 14 March 2024, Jean-Pierre Marty was first a pupil of Alfred Cortot, then of Julius Katchen. He started a piano career at the age of 13, first serving as accompanist to the cellist Pierre Fournier for a few months before appearing in Paris as soloist in three piano concertos. He also studied harmony, counterpoint and composition with Nadia Boulanger whom he eventually succeeded as Director of the American Conservatory in Fontainebleau. He pursued his pianistic career in France, Spain, the Netherlands and Germany until it was interrupted by serious muscular problems at the age of 20. + +Having moved to the United States, he shifted to conducting, taking lessons from Robert Irving and Thomas Schippers and appearing first in ballet (New York City Ballet, American Ballet Theater), then in opera (New York City Opera, Washington Opera). On his return to France, he was for seven years Music Director of the Opera Season of the French Radio while pursuing his career both in the operatic and symphonic fields in Europe and in the Americas. He realized many recordings for EMI, France and the French Radio label (his recording of Poulenc's Dialogues des Carmélites with Régine Crespin was particularly acclaimed). + +His interest in the piano had never ceased, and he kept giving piano concerts. His recordings of the piano works of Schumann from Opp. 1 to 32 (8 CDs) have been published, receiving a warm reception. + +Jean-Pierre Marty is the author of three books: The tempo indications of Mozart, written in English and published by Yale University Press both in the United States and the United Kingdom and, in French, Twenty-four lessons with Chopin and The piano method of Chopin.Needs Votehttps://en.wikipedia.org/wiki/Jean-Pierre_MartyMarty + +1671779Roger BoutryRoger Boutry (born 27 February 1932, Paris, France – died 7 September 2019) was a French composer, conductor and pianist. He was head of the various orchestras of the French republican guards (Garde Républicaine) between January 1973 and February 1997. + +Son of trombonist [a=Stanislas Boutry]. +Needs Votehttp://www.musimem.com/boutry.htmhttps://en.wikipedia.org/wiki/Roger_BoutryBoutryBoutry R.Colonel Roger BoutryLieutenant-Colonel Roger BoutryR. BourtyR. BoutryRoger-Jean BoutryР. БутриРоже БутриOrchestre De La Garde Républicaine + +1671780Thomas FultonAmerican opera conductor (September 18, 1949 - August 4, 1994 in Milan, Italy).Correct + +1671781Ruth FalconRuth Falcon (November 2, 1942 - October 9, 2020) was an American operatic soprano.Needs VoteFalconRuth + +1672579Mats-Olov SvantessonSwedish classical trumpet player.Needs VoteMats-Olov SvantesonSveriges Radios SymfoniorkesterDrottningholms Barockensemble + +1673071Gunar LetzborAustrian classical violinist born in Linz.Needs VoteG. LetzborGunnar LetzborMusica Antiqua KölnArmonico TributoArs Antiqua Austria + +1673073Chiharu AbeClassical violinist Chiharu Abe studied modern violin at the Music Academy in Tokyo, in 1992 she moved to Germany and continued her studies at the Musikhochschule Stuttgart.Needs VoteConcerto KölnSonatori De La Gioiosa MarcaCapriccio Barock OrchesterHassler Consort + +1673153Peter DavorenBritish tenor vocalistNeeds Votehttps://www.peterdavoren.comLondon VoicesThe Monteverdi ChoirSolomon's KnotMusica Poetica (2) + +1673518Johannes Maria StaudAustrian composer, born August 17, 1974 in Innsbruck.Needs Votehttps://en.wikipedia.org/wiki/Johannes_Maria_StaudJ. M. StaudJohannes-Maria StaudStaudStaatskapelle Dresden + +1674015Cliff Dane Clifford Victor Dane Music executive, producer, publisher, accountant. +Born: 27th February 1956 + +Former / current directorships: [l222078] (co founder), [l265552], [l1224144], [l764220], [l134826] Ltd., [l315678], owner of [l582067]Needs Votehttps://prabook.com/web/clifford_victor.dane/634323 + +1674448Timothy PrideClassical countertenor / alto vocalist.Needs VoteWinchester Cathedral Choir + +1674598Adolphe FrezinAdolphe Clément Jules Louis Frezin + +Belgian cellist and conductor (28 December 1906, Lessines - Santa Barbara, California, 5 April 1978). He was Principal cello of the National Orchestra of Belgium. After emigrating to the US in the summer of 1949, Frezin was a member of the Paganini Quartet in California and New York City until late 1954. While touring with the Paganini Quartet, Frezin was also able to perform as lead cello with the Metropolitan Opera Orchestra. Beginning in 1953, Frezin also sought to develop a career as a touring cello soloist with US regional orchestras. In 1955 in New York City, Frezin was also Principal cello of the Symphony of the Air. Prior to the Cleveland Orchestra, he was Principal cello of the Los Angeles Philharmonic in about 1956-1959. George Szell recruited him first as "Co-Principal" cello of the Cleveland Orchestra in the 1959-1960 season, advancing him to Principal cello in the 1960-1961 season. Following the Cleveland Orchestra, beginning in 1963, Frezin taught at the University of Texas, Austin. He died in Santa Barbara, California on 5 April 1978 at the age of 71.Needs VoteAdolf FrézinAdolph FrezinAdolphe FrézinM. A. FrezinM. Adolf FrezinM. Adolphe FrezinM.A. FrezinThe Cleveland OrchestraPaganini QuartetLe Trio de BruxellesBelgian National Orchestra + +1674746Jos VerspagenDutch trumpet playerNeeds Votehttps://www.rotterdamsphilharmonisch.nl/nl/musici/jos-verspagenNieuw Sinfonietta AmsterdamEbony BandRotterdams Philharmonisch OrkestNederlands Fanfare Orkest + +1675636Hal PoseyAmerican trumpet playerNeeds VotePoseyWoody Herman And His OrchestraWoody Herman And The Fourth HerdThe Bill Potts Big Band + +1675701Kaido VäljaViolinist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +1675702Martin LumeClassical tenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +1675705Annika IlusNeeds VoteEstonian Philharmonic Chamber Choir + +1675707Kädy PlaasEstonian soprano vocalist, born October 1, 1979 in Pärnu.Needs VoteEstonian Philharmonic Chamber Choir + +1675709Iris OjaEstonian mezzo-soprano & alto vocalist, born April 19, 1977 in Tallinn.Needs Votehttp://www.irisoja.com/I. OjaEstonian Philharmonic Chamber ChoirArs Nova CopenhagenEnsemble Resonabilis + +1675710Veronika PortmuthSoprano vocalistNeeds VoteEstonian Philharmonic Chamber Choir + +1675712Külli ErimäeNeeds VoteEstonian Philharmonic Chamber Choir + +1675713Toomas TohertClassical tenor vocalist.Needs Votehttps://www.epcc.ee/automaatmustand-3/Estonian Philharmonic Chamber Choir + +1675714Janel AltroffClassical double bassistNeeds VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +1675716Tarmo TruuväärtClassical violinistNeeds VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +1675718Maris LilosonNeeds VoteEstonian Philharmonic Chamber Choir + +1675719Rainer ViluEstonian bass-baritone vocalist, born August 14, 1975.Needs Votehttps://www.epcc.ee/en/inimesed/rainer-vilu/Estonian Philharmonic Chamber Choir + +1675721Risto JoostEstonian countertenor vocalist and conductor, born June 22, 1980 in Tallinn. Currently principal conductor of the Netherlands Chamber Choir.Needs Votehttp://www.ristojoost.com/Risto JooestEstonian Philharmonic Chamber ChoirVox Clamantis + +1675888Johannes SchülerGerman conductor, born 21 June 1894 in Vietz, Germany (today Witnica, Poland) and died 3 October 1966 in Berlin, Germany.Needs Votehttps://en.wikipedia.org/wiki/Johannes_SchülerJ. SchulerJ. SchülerJohannes SchulerJohannes SchüllerStaatskapellmeister Joh. SchülerStaatskapellmeister Johannes SchülerStaatskapellmstr. Johannes SchülerИоханнес Шюлер + +1675901Hele-Mall LeegoClassical soprano vocalist from Estonia.Needs VoteEstonian Philharmonic Chamber Choir + +1675905Raul MiksonClassical tenor vocalist.Needs Votehttps://www.epcc.ee/inimesed/raul-mikson/Estonian Philharmonic Chamber ChoirEstonian National Male ChoirVox ClamantisKuninglik Kvintett + +1675907Maarja KukkNeeds VoteEstonian Philharmonic Chamber Choir + +1677731Adrian Brand (2)Classical tenor vocalist born 1959 in Sydney, AustraliaNeeds Votehttp://www.bach-cantatas.com/Bio/Brand-Adrian.htmLes Arts FlorissantsEnsemble europeen William Byrd + +1677817Renate HildebrandClassical wind instrumentalistNeeds VoteR. HildebrandClemencic ConsortCantus CöllnHespèrion XXSchola Cantorum BasiliensisCappella ColoniensisRicercare-Ensemble Für Alte Musik, ZürichLinde-ConsortBell'Arte SalzburgSpielgruppe Hamburg + +1677820Dieter DykAustrian timpanist and percussionist, born 1941 in Vienna, Austria.CorrectRicercare-Ensemble Für Alte Musik, ZürichTonhalle-Orchester Zürich + +1677925Arnaud MarzoratiFrench classical bass & baritone vocalist.Needs Votehttp://arnaud.marzorati.free.frArnaud MarzorattiLe Concert SpirituelLes Arts FlorissantsChoeur de Chambre de NamurRicercar ConsortLe Poème HarmoniqueCanticum NovumLunaisiens + +1677926Jean-François LombardClassical tenor, countertenor & alto vocalist.Needs VoteLombardLes Arts FlorissantsLe Poème HarmoniqueLes PaladinsLa Chapelle Rhénane + +1677927Julie HasslerFrench soprano vocalist.Needs VoteLe Concert SpirituelLa Réveuse + +1677932Renaud TripathiFrench classical tenor vocalistNeeds Votehttp://respiratio.fr/?page_id=117Choeur de Chambre de NamurLa Fenice + +1677939François-Nicolas GeslotFrench classical tenor vocalistNeeds VoteChoeur de Chambre de NamurEnsemble DesmarestLes Traversées BaroquesIl Festino + +1677944Vincent Lièvre-PicardClassical alto / countertenor / tenor vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Lievre-Picard-Vincent.htmLes Arts FlorissantsEnsemble Gilles BinchoisMetamorphosesMusicatreizeCappella AugustanaLes Meslanges...in Ore mel...Ensemble Consonance + +1677948Bertrand ChuberreBaritone vocalist.Needs VoteLes Arts Florissants + +1678080Mária Trevor DúhováMaria Duhova TrevorSlovakian harpist; moved to the USA in 2006.Needs Votehttp://www.mariaharp.com/Maria DuhovaSlovak Radio Symphony OrchestraThe Bohuslav Martinů PhilharmonicSolamente Naturali + +1678093Peter ŠestákSlovak viola player +Born 2 April 1974, Komárno + +Needs VotePeter SestakSolamente NaturaliVeniBoston Early Music Festival OrchestraOpera Aperta + +1678274David Goldblatt (3)San Francisco based cellist.Needs VoteDavid GoldblattSan Francisco Symphony + +1678294Kate AshbyBritish soprano vocalist.Needs VoteOxford CamerataLondon VoicesThe Brabant EnsembleStile AnticoThe Choir Of Trinity College, Cambridge + +1678295Helen AshbyBritish soprano vocalist.Correcthttps://www.facebook.com/helen.ashby.906London VoicesThe Brabant EnsembleStile Antico + +1678297Oliver WinstoneClassical tenor vocalist.Needs VoteThe Choir Of Christ Church CathedralThe Brabant Ensemble + +1678298Alastair PuttBritish classical tenor, composer and guitarist, born in London in 1983, died in August 2022 +Was married to [a2252448]Needs Votehttps://www.alastairputt.com/https://www.facebook.com/alastair.putthttps://twitter.com/AlastairPutthttps://soundcloud.com/alastair-putthttps://www.hyperion-records.co.uk/c.asp?c=C5953London VoicesThe Brabant EnsembleTenebrae (10) + +1678300Gulliver RalstonFormer classical Treble and today Alto vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +1678801The MissouriansEarly big band from the mid-west in the U.S. First led by [a=Andy Preer] in the 1920s, the band was eventually taken over by [a=Cab Calloway] in 1930 and renamed [a=Cab Calloway And His Orchestra]. + +The Missourians were a mid-western band that was greatly influenced by [a=Bennie Moten]. In the mid-1920s they relocated to New York and played at the [l=Cotton Club] under the name of [a=Andy Preer And The Cotton Club Orchestra] and as [a=The Cotton Club Orchestra]. After Preer’s death in 1927, [a=Duke Ellington] got the gig. The Missourians are best remembered today for their association with [a=Cab Calloway], who first worked with them in New York, in 1928. In 1930, he took over the band, eventually changing its name to Cab Calloway and his Orchestra and they once again found themselves as the house band at the Cotton Club.Needs Votehttp://www.redhotjazz.com/missourians.htmlhttps://adp.library.ucsb.edu/names/116451The MissourianAndy Preer And The Cotton Club OrchestraThe Cotton Club OrchestraLeroy MaxeyWalter ThomasLammar WrightMorris WhiteDePriest WheelerJimmy Smith (5)Charlie StampsEarres PrinceWilliam BlueAndrew Brown (5)Lockwood LewisR.Q. DickersonGeorge Scott (7) + +1678805The Mills Blue Rhythm BandThe Mills Blue Rhythm Band was an American big band of the 1930's. + +The band was formed in Harlem in 1930, with reedman [a313144] the first of its many leaders. It started life as the Coconut Grove Orchestra, changing to Mills Blue Rhythm Band when [a307446] became its manager in 1931. Recordings by this group were sometimes released under various names such as the "Blue Rhythm Band", "Blue Ribbon Band", "Blue Rhythm Boys", "The Blue Racketeers", "Earl Jackson's Musical Champions", "Earl Jackson and his Orchestra", "Duke Wilson and his Ten Blackberries", "King Carter's Royal Orchestra", "Mills Music Masters", "Harlem Hot Shots" and uncredited playing behind [a38201]. +Needs Votehttps://en.wikipedia.org/wiki/Mills_Blue_Rhythm_Bandhttps://adp.library.ucsb.edu/names/105991B. R. BandB.R. BandBaron Lee & His Blue Rhythm BandBlue Rhythm BandBlue Rhythm Band Orch.Blue Rhythm BoysBlue Rhythm Boys (Mills Blue Rhythm Band)Mill's Blue Rhythm BandMills Bleue Rhythm BoysMills Blue RhythmMills Blue Rhythm BandMills Blue Rhythm BoysMills Blues Rhythm BandMills' Blue Rhythm BandMills' Blue Rhythm BoysMills’ Blue Rhythm BandThe Blue Rhythm BandThe Blue Rhythm BoysKing Carter And His Royal OrchestraMills Music MastersThe Blue Ribbon Boys (2)Blue Rhythm Boys (2)Joe GarlandBuster BaileyLucky ThompsonHenry HicksEdgar HayesBenny JamesEd AndersonTed McCordJ.C. HigginbothamCrawford WethingtonHarry WhiteCastor McCordLawrence LucieWardell JonesHayes AlvisShelton HemphillLucky MillinderO'Neil SpencerBingie MadisonGeorge WashingtonCharlie HolmesElmer JamesWillie LynchBaron LeeGene MikellJerry White (17) + +1679540Adolf BuschAdolf Georg Wilhelm BuschGerman violinist and composer (* 08 August 1891 in Siegen, German Empire; † 09 June 1952 in Guilford, Vermont, United States). Swiss citizen since 1935. +He was the brother of [a1035445] and [a1679539], father of [a3697467] and father-in-law of [a834223], and grandfather of horn player [a3740819], pianist [a775241], and cellist [a3563592]. +Founder with Rudolf Serkin of the [l1225719].Needs Votehttps://en.wikipedia.org/wiki/Adolf_Buschhttp://agso.uni-graz.at/marienthal/biografien/busch_adolf.htmA. BuschAdolf BushAdolfo BuschAdolph BuschBuschProfessor Adolf BuschProfessor Adolf BuschА. БушАдольф Бушアドルフ・ブッシュThe Busch QuartetBusch Chamber PlayersThe Busch-Serkin Trio + +1679570Patrick PridemoreClassical hornist.Needs Votehttps://www.patrickpridemore.comOrchestra Of St. Luke'sZephyros Quintet + +1679571Jeff CaswellJeffrey CaswellAmerican bass trombone player.Correcthttps://www.greenwichsymphony.org/caswellJeffrey CaswellOrchestra Of St. Luke'sThe Metropolitan Opera House OrchestraSolid BrassMetropolitan Opera Brass + +1680313ImmerzeAlfie Geno Raymond BamfordCorrectTechnikalAlf BamfordSolar ScapeElemental (3)Alfy XTechnikoreCritikal (2)Covered UpOutsider (14)Ikorus + +1680730Stanley ChaloupkaAmerican harpist., died in 2002.Needs VoteS. ChaloupkaWoody Herman And His OrchestraWoody Herman & The HerdLos Angeles Philharmonic Orchestra + +1680876Dorothée LeclairFrench soprano and violistNeeds Votehttp://www.dorotheeleclair.com/Dorothée Leclair-ToulemondeLes Demoiselles De Saint-CyrLe Concert D'AstréeLe Cercle De L'Harmonie + +1680877Mélodie RuvioFrench mezzo soprano & alto vocalistNeeds Votehttp://www.melodieruvio.comLes Arts FlorissantsCollegium VocaleChoeur de Chambre de NamurPygmalionEnsemble Vocal AedesL'AmorosoI Gemelli (2)Les Ombres (3)La Guilde Des Mercenaires + +1680878Romain ChampionClassical Tenor vocalist.Needs Votehttp://www.romainchampion.com/ChampionLe Concert SpirituelLes Chantres Du Centre De Musique Baroque De VersaillesChœur Marguerite Louise + +1681098Nicholas PerryClassical Cornett, Recorder, Dulcian and Shawm playerNeeds VoteI FagioliniGabrieli PlayersMusicians Of Shakespeare's GlobeThe Illyria Consort + +1681121David Martin (22)Classical vocalist. +He studied singing at Trinity College of Music with [a874639]. He is a Lay Vicar in the Choir of Westminster Abbey and performs with many British period ensembles and consorts, including The Tallis Scholars, The Cardinall’s Musick, The Dunedin Consort, The Binchois Consort, The Sixteen, Ensemble Plus Ultra (he became its Artistic Director in late 2011), The Gabrieli Consort and Tenebrae.Needs Votehttp://www.hyperion-records.co.uk/a.asp?a=A711Gabrieli ConsortThe Tallis ScholarsThe SixteenThe Binchois ConsortDunedin ConsortEnsemble Plus UltraThe Cardinall's MusickThe Choir Of Westminster AbbeyRetrospect EnsembleCantores (4) + +1681122Stuart Young (2)Bass vocalist.Needs Votehttps://thesixteen.com/team/stuart-young/The SixteenThe Holst SingersThe Cardinall's MusickThe Eric Whitacre Singers + +1682148Anders FryxellSwedish priest and historian +Born February 7, 1795 in Edsleskog, Dalsland, Sweden — died March 21, 1881 in Stockholm, SwedenNeeds Votehttps://en.wikipedia.org/wiki/Anders_FryxellA FryxellA. FryxellDean Anders FryxellDean Andres FryxellFryxellAnders Frölin + +1682381J. Lawrence CookJean Lawrence CookAmerican pianist, born in Athens, Tennessee on 14th July 1899; recorded from the 1920's to the 1970's, responsible for thousands of "piano rolls" that would digitally reproduce his keystrokes for "player pianos", covering ragtime, jazz, traditional, patriotic, showtunes and standards. +Needs Votehttp://www.doctorjazz.co.uk/page11.html"Piano Roll" CookCookJ. LawrenceLawrence "Piano Roll" CookLawrence (Piano Roll) CookLawrence CookThe Original Lawrence "Piano Roll" CookLawrence (Piano Roll) Cook & His Orchestra + +1682388Bob OlsonTrombone, Bass TromboneNeeds VoteBob OlsoneStan Kenton And His OrchestraMax Bishop Big Band + +1682725Jean-Baptiste ToselliClassical cellistNeeds VoteRoyal Philharmonic Orchestra + +1682943Daniel CuillerFrench classical violinist.Needs VoteДаниель КюйеLes Arts FlorissantsCollegium VocaleLes Sacqueboutiers De ToulouseEnsemble StradivariaEnsemble Baroque Les Dominos + +1682977Thomas E. BauerThomas Eduard BauerThomas E. Bauer (born 15. June 1970 in Metten) is a German bass / baritone vocalist.Correcthttps://www.bach-cantatas.com/Bio/Bauer-Thomas.htmhttps://www.felsnerartists.com/artists/thomas-e-bauerBauerT. BauerThomas BauerRegensburger DomspatzenSinger PurLa Risonanza + +1683091Mike StonebankMike StonebankNeeds Votehttp://facebook.dj/rocketpimp/http://www.myspace.com/rocketpimpcyfiM StonebankM. StonebankMichael StonebankStonebankRocket PimpModulate (4)City KicksMike ModulateStonebankPetruccio & ModulateBreeze & ModulateSBPMMagikstar (2)Zero Hero + +1683169Malcolm Bennett (2)Tenor vocalist.Needs VoteCollegium VocaleEuropean VoicesThe Amsterdam Baroque ChoirThe King's ConsortDunedin Consort + +1683171Uwe Czyborra-SchröderClassical countertenorNeeds VoteUwe CzyborraCollegium VocaleJohann Rosenmüller Ensemble + +1683172Edwige CardoenSoprano vocalistCorrectHedwige CardoenCollegium Vocale + +1683173José PizarroClassical tenor vocalistNeeds VoteJosé Pizarro AlonsoCollegium VocaleLos Músicos De Su AltezaMagister Petrus + +1683175Cécile KempenaersClassical soprano.Needs VoteCecile KempenaersCécile KempeneersCécilie KempenaersHuelgas-EnsembleCollegium VocaleThe Amsterdam Baroque ChoirBalthasar-Neumann-ChorZefiro TornaVocalconsort BerlinCapella De La TorreAkadêmiaEncantar + +1683176Norbert SchusterGerman Contrabass & Violone instrumentalis. Since 2006 he is the director of the [a=Cappella Sagittariana Dresden].Needs VoteDresdner PhilharmonieEnsemble »Alte Musik Dresden«Batzdorfer HofkapelleSchütz-AkademieCappella Sagittariana DresdenDresdner BarockorchesterInstrumenta Musica + +1683177Matthew White (6)Classical alto & countertenor vocalist.Needs VoteWhiteLe Concert SpirituelCollegium VocaleBach Collegium JapanCappella RomanaLe Nouvel OpèraStudio De Musique Ancienne De MontréalSkye ConsortLes Voix Baroques + +1683181Yoshitaka OgasawaraJapanese classical bass vocalist born in Sapporo.Needs VoteCollegium VocaleBach Collegium JapanLa Fonteverde + +1683183Andreas Weller (2)Classical tenor.Needs Votehttp://www.faweller.de/Neu/home.phpWellerCollegium VocaleKammerchor StuttgartBalthasar-Neumann-ChorBach Collegium JapanGli Scarlattisti + +1683184Friedemann BüttnerClassical tenor vocalistCorrectCollegium VocaleDeutscher Kammerchor + +1683289René SchifferDutch Cellist, Teacher, Composer, Lecturer and Writer.Needs Votehttps://www.duchiffre.com/DuchiffreRené DuchiffreLa Petite BandeIl Gardellino + +1683290Mika AkihaClassical violinist.Needs VoteMika AhikaLa Petite BandeRicercar ConsortBach Collegium JapanIl GardellinoLes AgrémensPygmalionRedherring Baroque Ensemble + +1683793Eriko SatoEriko Sato-OeiClassical violinist. Wife of [a2448845].Needs Votehttp://erikosato.weebly.comEricko SatoErico SatoErik SatoEriko Sato, PhDEriko Sato-OeiEriko Sato-OeiOrchestra Of St. Luke'sOrpheus Chamber OrchestraChamber Music NorthwestSt. Luke's Chamber EnsembleThe American Chamber Ensemble + +1683847Bob BoulangerRobert Francis BoulangerAmerican singer-songwriter. +He recorded under the name Van Trevor. His songwriting credits most often appear as Robert or Bob Boulanger. + +Born November 12, 1940 in Lewiston, Maine. +Died December 6, 2005 in Poland, Maine (65 years of age). +Needs Votehttps://kimsloans.wordpress.com/band-box-records/band-box-discography-l-z/van-trevor/http://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=36085&subid=0https://www.legacy.com/obituaries/theledger/obituary.aspx?n=robert-boulanger&pid=19643708B. BoulangerBoulangerR. BoulangerRobert BoulangerRobert F. BoulangerVan TrevorThe Saturday Knights (2) + +1684071Bobby Williams (6)US jazz trumpeter active in New York, NY. Born in 1914. Played with Cab Calloway, Don Redman and Fletcher Henderson, among others.Needs VoteBob WilliamsR. WilliamsRobert "Bobby" WilliamsRobert WilliamsRoy Eldridge And His OrchestraBenny Carter And His OrchestraDon Redman And His OrchestraThe Harlem Blues & Jazz BandFranz Jackson And His Jacksonians + +1684467Donald SweeneyClassical bass vocalist.CorrectWinchester Cathedral Choir + +1684569Ulrich KnörzerClassical viola player.Needs VoteBerliner PhilharmonikerMannheimer StreichquartettPetersen QuartettBundesjugendorchester + +1684570Ansgar SchneiderGerman classical cellist.Needs Votehttp://www.musicaerossitoscani.com/images/fotomusicisti/pagaschneidereng.htmAnsger SchneiderRadio-Sinfonieorchester StuttgartBachcollegium StuttgartBundesjugendorchesterPhilharmonisches Streichsextett Berlin + +1684572Klaus WallendorfBorn November 22, 1948 in [url=https://en.wikipedia.org/wiki/Elgersburg]Elgersburg[/url]. German hornist, composer, lyricist, cabaret artist and writer. +Authored two humorous books about his life as orchestral musician and mastering the pitfalls of French horn playing. Needs Votehttps://de.wikipedia.org/wiki/Klaus_Wallendorfhttp://www.genuit.de/Genuit/Partner/p_Klaus_Wallendorf.htmK. WallendorfWallendorfBerliner PhilharmonikerL'Orchestre De La Suisse RomandeBayerisches StaatsorchesterConsortium ClassicumDie Hornisten Der Berliner PhilharmonikerBlechbläser-Ensemble Der Berliner PhilharmonikerGerman BrassWaldhornquartett der Berliner PhilharmonikerBerlin Philharmonic Horn Quartet + +1684725Jack Elliott (4)John Michael "Jack" ElliottAmerican songwriter, reporter for Chicago Variety and a vaudeville and nightclub entertainer. + Born May 7, 1914 in Gowanda, New York, USA. +Died January 3, 1972 in Los Angeles, California, USA. +Married French-born nightclub singer [a2434809] in 1964. +His last name is often misspelled as "Elliot" with one "T". Elliott wrote special material for his own acts and for others, and this led to a career in songwriting. He wrote the scores for several motion pictures, among them the background music for “Toot Whistle Plunk and Boom,” a Walt Disney cartoon that won an Academy Award in 1953. +His songs included also “Do You Care?”, “Ivory Rag”, “Be Mine”, “The Pansy”, "In The Wee Small Hours Of The Morning", “Sugar Coated Lies”, “Elmer's Tune”,“I Don't Want To Be Kissed”, “Our Very Own” and “A Weaver of Dreams”.Needs Votehttps://en.wikipedia.org/wiki/John_Elliot_(songwriter)https://www.imdb.com/name/nm0254506/http://www.westernmusic.org/jack-elliottDavid Jack ElliotEliotEliottElliotElliot JamesElliottElliott J.J, ElliottJ. ElliotJ. ElliottJ. ElloittJ. M. ElliotJ. M. ElliottJ.ElliotJ.ElliottJ.M. ElliotJ.M. ElliottJElliotJack ElliotJames ElliottJohn ElliotJohn ElliottJohn Jack ElliottJohn M ElliottJohn M. ElliotJohn M. ElliottJohn Moon Elliott + +1685483Bob Fisher (5)Liner notes author, compiler, label manager and co-ordinator for UK labels. Founder of [l15393] and [l19768]; co-founder of [l312992]. He died on 7 October 2021.Correcthttps://www.rocksbackpages.com/Library/Writer/bob-fisherhttps://www.musicweek.com/labels/read/music-journalist-and-catalogue-expert-bob-fisher-dies-aged-74/084311 + +1685745Firminus CaronFirminus Caron (fl. 1460–1475) was a French composer, and likely a singer, of the Renaissance. He was highly successful as a composer and influential, especially on the development of imitative counterpoint, and numerous compositions of his survive. Most of what is known about his life and career is inferred.Needs Votehttps://en.wikipedia.org/wiki/Firminus_CaronCaronFirminius CaronPhilippe Caron + +1685811Yrjö JylhäYrjö Olavi Jylhä né Yrjö Olavi LindemanFinnish poet and translator, born July 21, 1903 in Tampere; died December 30, 1956 in Turku (suicide).Needs Votehttp://fi.wikipedia.org/wiki/Yrj%C3%B6_Jylh%C3%A4I. JylhäJylhäV. JylhäY. Jylhä + +1686061Jindřich PazderaClassical violinistNeeds Votehttp://www.pazdera.biz/Jindrich PazderaCapella IstropolitanaBohemia Trio + +1686436Al ForteAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraSonny Costanzo Big BandWoody Herman And The Fourth Herd + +1686438Al BellettoAmerican jazz saxophonist and clarinetist +Born: January 3, 1928 in New Orleans, Louisiana. +Died: December 26, 2014 in Crescent City, Metairie, Louisiana. Needs VoteA. BellettoAl BelletoAl Belletto Big BandBelletoBellettoWoody Herman And His OrchestraAl Belletto Jazz BandWoody Herman And The Fourth HerdThe Al Belletto SextetAl Belletto QuintetAl Belletto And The KidsAl Belletto And Friends + +1687036Femke SonnenBelgian violinist and composerNeeds Votehttp://www.femkesonnen.be/Dimiter NicolovOrchestre Du Théâtre Royal De La Monnaie + +1687062Gerry LaFurnAmerican jazz trumpeter, died November 1988Needs VoteG. LaFurnGerry LafurnJerry La FurnWoody Herman And His OrchestraAl Porcino Big BandWoody Herman And His Third Herd + +1687177Coleman Hawkins SeptetNeeds Major ChangesHawkins SeptetColeman HawkinsJ.J. JohnsonOscar PettifordClyde HartJo JonesDenzil BestBarry GalbraithIdrees SuliemanHank JonesCharlie ShaversEdmond HallTiny Grimes + +1687221Светлана ПарамоноваSvetlana ParamonovaRussian classical harpist.Needs VoteSvetlana ParamonovaRussian National Orchestra + +1687561Edwin SimpsonEnglish tenor vocalist.Needs VoteThe Choir Of Christ Church CathedralCambridge Taverner Choir + +1687562Robin TysonEnglish Countertenor & Alto vocalist and manager. After leaving [a=The King's Singers] in 2009 he managed the [a180025] and [a960941] before founding and heading the Artist Agency of [l=Edition Peters] in 2011.Needs Votehttps://www.bach-cantatas.com/Bio/Tyson-Robin.htmhttps://en.wikipedia.org/wiki/Robin_TysonGabrieli ConsortThe King's College Choir Of CambridgeThe SixteenThe King's SingersI FagioliniPolyphonyPro Cantione Antiqua + +1687693Ursula Von RauchhauptUrsula von RauchhauptProducer and liner notes author for classical releases.Needs VoteDr. Ursula V. RauchhauptDr. Ursula Von RauchhauptDr. Ursula v. RauchhauptDr. Ursula von RauchhauptU. v. RauchhauptUrsula V. RauchhauptUrsula V. RauchhauptUrsula v. RauchhauptUrsula von RauchhauptUvR + +1687849Leonard SharrowAmerican bassoonist (New York City, August 4, 1915 – Cincinnati, August 9, 2004).Needs Votehttp://en.wikipedia.org/wiki/Leonard_SharrowNBC Symphony OrchestraChicago Symphony OrchestraNational Symphony OrchestraPittsburgh Symphony OrchestraThe American Woodwind Quintet + +1688037Noel RainbirdNöel RainbirdClassical bassoonist.Needs VoteNoël RainbirdThe SixteenAnima EternaThe Academy Of Ancient MusicCollegium Musicum 90Brandenburg ConsortDas Kleine KonzertThe English Concert + +1688039Jane Rogers (2)Classical viola player and professor from the UK.CorrectJane RogersThe English Baroque SoloistsThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicCollegium Musicum 90The King's ConsortTerzettoLa Nuova MusicaKölner AkademieEuropean Brandenburg EnsembleBrecon BaroqueThe English ConcertRetrospect EnsembleThe Amsterdam String QuartetSt John's Sinfonia + +1688041Cherry ForbesClassical oboist from the UK.Needs Votehttps://www.facebook.com/cherry.forbes.7The SixteenOrchestra Of The Age Of EnlightenmentLondon Classical PlayersGabrieli PlayersHanover BandThe King's ConsortBrandenburg ConsortThe Symphony Of Harmony And InventionThe English Concert + +1688107Clifford BensonClifford George BensonBorn: 17th November 1946, Grays, Essex, England. +Died: 10th August 2007. +Classical pianist specialising in sonatas. His most important duo partners being [a=William Bennett (3)] and [a=Levon Chilingirian].Needs VoteBensonMr. Clifford BensonThe Nash EnsembleThe Dartington Ensemble + +1688733Ken SharpKenneth Benjamin SharpKen Sharp is a New York Times Best Selling writer who has authored or co-authored over eighteen music books, contributes to a variety of national music magazines, works on music documentaries and has done liner notes for releases by Elvis Presley, Sly & the Family Stone, Janis Joplin, Small Faces, Santana, Cheap Trick, Raspberries, Eric Carmen, KISS, Hall & Oates, Rick Springfield, The Babys, John Waite, The Guess Who, Jellyfish, Jefferson Airplane and others. + +His books include: Starting Over: The Making of John Lennon and Yoko Ono’s Double Fantasy, Elvis: Vegas ‘69, Nothin’ to Lose: the Making of KISS (1972-1975), Elvis Presley: Writing for the King, Sound Explosion: Inside LA’s Studio Factory with the Wrecking Crew, Overnight Sensation: The Story of the Raspberries, Raspberries: TONIGHT!, Eric Carmen: Marathon Man, Reputation is a Fragile Thing: The Story of Cheap Trick, Play On!: Power Pop Heroes, Kooks, Queen Bitches and Andy Warhol: The Making of David Bowie’s Hunky Dory, KISS: Behind the Mask, Meet the Beatles…Again!, Small Faces: Quite Naturally, Rick Springfield: A Year in the Life of a Working Class Dog, Power Pop, The KISS Years!, and KISS Army Worldwide!: The Ultimate KISS Fanzine Phenomenon.Needs Votehttp://www.ken-sharp.com/https://www.facebook.com/ken.sharp.7359https://kensharp.bandcamp.com/Sharpケンシャープ + +1689336VenkmanKieran VenkmanUK electronic dance music DJ / producer, originally from Lancashire, England +Style: Hard House + +Correcthttp://soundcloud.com/venkmandjhttps://www.facebook.com/Venkman.HardHousehttps://twitter.com/VenkmanDJhttp://www.youtube.com/user/Venkmania?gl=UG&hl=en-GBhttps://www.facebook.com/kieran.venkmanKieran Venkman + +1689342Nouvel Orchestre Philharmonique De Radio-FranceThe name of the Philharmonic Orchestra of Radio France between 1976 and 1989. + +1937 - Founded as the [a=Orchestre Radio-Symphonique] +1944-1964 - renamed [a=Orchestre Philharmonique De La R.T.F.] (Radiodiffusion-Télévision Française) +1964-1976 - [a=Orchestre Philharmonique De L'ORTF] (Office de la Radiodiffusion-Télévision Française) +1976-1989 - [a=Nouvel Orchestre Philharmonique de Radio France] +1989 - [a=Orchestre Philharmonique de Radio France]Needs Votehttps://www.maisondelaradioetdelamusique.fr/formations/orchestre-philharmonique-de-radio-francehttps://en.wikipedia.org/wiki/Orchestre_philharmonique_de_Radio_FranceEnsemble Instrumental Du Nouvel Orchestre Philharmonique De Radio-FranceFormation De Chambre Du Nouvel Orchestre Philharmonique De Radio-FranceNew Radio France PhilharmonicNoulve Orchestre PhilharmoniqueNouvel Orchestra PhilharmoniqueNouvel Orchestre PhilharmoniqueNouvel Orchestre Philharmonique De Radio FranceNouvel Orchestre Philharmonique de Radio FranceNouvel Orchestre Philharmonique de Radio France, ParisNouvel Orchestre Philharmonique, ParísThe New Philharmonic Orchestra Of Radio France + +1689345Annelies Van Der VegtClassical violinist and photographer.Needs Votehttp://www.anneliesvandervegt.nl/Annelies V. D. VegtAnnelies van de VegtAnnelies van der VegtFreiburger BarockorchesterDe Nederlandse BachverenigingCamerata TrajectinaMusica AmphionOrchestra Of The 18th CenturyOrkest Amsterdam Drama + +1689348Kathrin TrögerClassical violinist.CorrectCollegium VocaleFreiburger Barockorchester + +1689349Ulrike KaufmannGerman classical violist.Needs VoteEnsemble ModernSinfonieorchester Des SüdwestfunksJunge Deutsche PhilharmonieFreiburger BarockorchesterCantus CöllnConcerto Con Voce + +1689419Charles BurlesCharles Burles (born 21 June 1936, Marseille, France - died August 2021) was a French lyric tenor, primarily associated with the French repertory, both opera and operetta.Needs Votehttps://fr.wikipedia.org/wiki/Charles_Burleshttps://en.wikipedia.org/wiki/Charles_Burleshttps://www.imdb.com/name/nm1291401/BurlesЧарлз Барлз + +1689427Michèle PenaFrench lyric soprano vocalist.Needs VoteMichele Pena + +1689481Uwe Schulze (2)Classical tenor.CorrectCollegium VocaleBalthasar-Neumann-ChorVokalEnsemble Köln + +1689483Christine WehlerGerman Alto / Contralto vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Wehler-Christine.htmVokalEnsemble KölnAla Aurea + +1689501Johannes GebauerClassical violinist.Needs VoteThe Academy Of Ancient MusicCappella ColoniensisNeue Düsseldorfer HofmusikDarmstädter HofkapelleCamerata Berolinensis + +1689520Stovepipe JohnsonBlues singer, who recorded for Vocalion in 1928.Needs VoteJohnsonJohson + +1689522Joseph BraunsteinMusicologist and teacher, born in Vienna on February 9, 1892, died 1996, aged 104. He taught music history at the Juilliard School, the Manhattan School of Music and Mannes College of Music.CorrectDR. Joseph BraunsteinDr Joseph BraunsteinDr. Joseph BraunsteinOrchester Der Wiener Staatsoper + +1689550Eva-Maria GörresEva-Maria Görres (born 1966) is a German natural horn and french horn player.Needs VoteEvemaria GörresConcentus Musicus WienDas Neue Orchester + +1689551Corrado BolsiClassical violinist.Needs VoteCorrado BolsIl Seminario MusicaleLe Concert Des nationsEnsemble CristoforiTrio Kandinsky + +1689553Paolo GrazziClassical oboist.Needs VoteGrazziPaolo GrazoPaolo GrazzoPaulo GrazziAccademia BizantinaLe Concert Des nationsIl Giardino ArmonicoI BarocchistiHespèrion XXZefiroGli Angeli GenèveThe English ConcertAustrian Baroque Company“Il Tempio Armonico” - Orchestra Barocca Di VeronaConcerto Madrigalesco + +1689557Silvia MondinoClassical violinist.Needs VoteSílvia MondinoLe Concert Des nationsEuropa Galante + +1689559Josep BorràsClassical wood-wind instrumentalistNeeds Vote21, 22, 25BorràsJ. BorràsJosep BorrasJosep Borras I RoccaJosep BorrásJoseph BorrasJoseph BorràsPep BorrasHesperion XXEnsemble 415Le Concert Des nationsHespèrion XXILa Real CámaraOrquestra De Cambra Teatre LliureMinistriles De MarsiasZefiroThe English ConcertZarabanda (4)Guillamí Consort + +1689626Ensemble de Percussion de l'Orchestre de ParisNeeds Major Changes打楽器アンサンブル + +1689628Josephine NendickBritish soprano vocalist.Needs VoteJ. NendickJoséphine NendickNendick + +1689643Erich WeisAustrian violist, born in 1904 and died in 1962. He's the father of [a1336423].Needs VoteE. WeissEric WeissErich WeissErich WeißWiener PhilharmonikerSchubert-QuartettWiener Konzerthausquartett + +1689646Anton KamperAustrian violinist, born 7 June 1903 in Vienna, Austria and died 2 May 1982 in Vienna, Austria. He's the father of [a2129014].Needs VoteA. KamperK. KamperWiener SymphonikerWiener PhilharmonikerSchubert-QuartettWiener Konzerthausquartett + +1689738Henry Portnoi(Massachusetts 1915-1996), American double bassist. Played with several major American orchestras.Needs Votehttp://www.stokowski.org/Boston_Symphony_Musicians_List.htm#Phttp://www.highbeam.com/doc/1P2-8397166.htmlH. PortnoiPortnoi, H.Boston Symphony OrchestraBoston Symphony Chamber Players + +1689792Norbert HauptmannGerman horn player born in 1942.Needs VoteBerliner PhilharmonikerMünchener Bach-OrchesterBlechbläser-Ensemble Der Berliner Philharmoniker + +1689794Jörg BaumannGerman cellist, born 1940 in Berlin, Germany and died 1995 in Berlin, Germany. + +Was a member since 1966, and from 1976 to 1995 principal cellist of the [a260744]. +Needs VoteBaumannJ. BaumannJoerg BaumannJorg Baumannイェルグ・バウマンBerliner PhilharmonikerWestphal-QuartettDie 12 Cellisten Der Berliner PhilharmonikerBerliner Solisten (2) + +1689795Burkhard RohdeGerman oboist.CorrectBerliner Philharmoniker + +1689796Götz TeutschClassical cellist, born in 1941.CorrectGotz TeutschGötz Wolfgang TeutschGötz-Wolfgang TeutschГёц ТойчBerliner PhilharmonikerDie 12 Cellisten Der Berliner Philharmoniker + +1689797Siegbert UeberschaerSiegbert Ueberschaer (20 Octover 1930 - 2011) was a German violist.Needs VoteSiegberg UeberschaerSiegbert UeberschärSiegbert ÜberschärSiegbert ÜeberschaerUeberschaerBerliner PhilharmonikerKammerorchester Des Saarländischen Rundfunks, SaarbrückenDrolc-QuartettPhilharmonische Solisten BerlinRias Jugendorchester + +1690753Danielle RoubyNeeds Major ChangesD. RoubyRouby + +1690803Luca GuglielmiItalian classical organist and harpsichordist.Needs VoteLe Concert Des nationsHespèrion XXIIl Giardino ArmonicoRicercar ConsortAccademia Strumentale Italiana, VeronaLes Basses RéuniesThe Rare Fruits CouncilZefiroLa Compagnia Del Madrigale + +1691140Leopold WlachLeopold WlachAustrian clarinetist (* 09 September 1902 in Vienna (Wien), Austria; † 07 May 1956 in Vienna (Wien), Austria).Needs Votehttps://www.musiklexikon.ac.at/ml/musik_W/Wlach_Leopold.xmlLeopod WlachLéopold WlachWlachWlach...Wiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +1691157Reginald KellReginald Clifford KellBritish clarinettist, conductor and teacher. He was noted as a soloist and chamber music player. Born 8 June 1906 in York, England – Died 5 August 1981 in Frankfort, Kentucky, USA. +He studied at the [l527847]. While still a student he was engaged as principal clarinettist of the orchestra of the [a3524957]. After graduation, he was [a=Sir Thomas Beecham]'s choice as first clarinet for the [a=London Philharmonic Orchestra] when the orchestra was formed in 1932. He left the LPO in 1936. He taught at the Royal Academy of Music between 1935 and 1939. During the Second World War Kell was principal clarinettist of the [a=Royal Liverpool Philharmonic Orchestra]. When [a=Walter Legge] founded the [a=Philharmonia Orchestra] in 1945 Kell became its principal clarinettist. The following year [a=Sir Thomas Beecham] founded the [a=Royal Philharmonic Orchestra] and, as the Philharmonia in its early days played few concerts, working mostly in the recording studio, Kell was able to serve as principal in both orchestras. In 1948 he gave up both positions and moved to the US making a concert and recording career. From 1951 to 1957 he was trustee and professor at the Aspen Music School. He returned to England in 1958. He retired from playing in his early fifties and returned to the US in 1959, where he was director of [l=Boosey & Hawkes]'s band instrument division from 1959 to 1966. He retired in 1966. +Brother of the classical clarinettist [b]Reginald Alwyn Kell[/b], Principal Clarinet with [a=The London Symphony Orchestra] (1937-1939).Needs Votehttps://www.youtube.com/channel/UCk4tzlie5CmK8tatGvBjRdwhttps://open.spotify.com/artist/1NPuQreotRhDKaHVQrKUuwhttps://music.apple.com/us/artist/reginald-kell/73270471http://en.wikipedia.org/wiki/Reginald_Kellhttps://samekmusic.com/artist/reginald-kell-1906-1981/https://www.dansr.com/vandoren/resources/the-great-reginald-kellhttps://blog.idagio.com/reginald-kell-a-second-wind-for-the-clarinet-1ba154674b00https://www.nytimes.com/1981/08/22/obituaries/reginald-kell.htmlhttps://www.myheritage.com/names/reginald_kellhttps://adp.library.ucsb.edu/names/324930F.KellKellR. KellLondon Philharmonic OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraRoyal Liverpool Philharmonic OrchestraLucerne Festival OrchestraRoyal Philharmonic SocietyReginald Kell And His Quiet Music + +1691173Sheppard LehnhoffAmerican violist, born 12 November 1905 and died in January 1978.Needs VoteShep LehnhofThe Philadelphia OrchestraChicago Symphony OrchestraThe Fine Arts Quartet + +1691191Hector De LeonHéctor Augusto de León Morel,Dominican trumpeter, composer, arranger, orchestra director (Miches, Dominican Republic, 24 Nov. 1927 - Santo Domingo, 19 Jun. 1999), nicknamed "Cabeza", he began in 1944 as first trumpet of the District Band, travelled to Venezuela in 1949 (played with Rafael Minaya and Aldemaro Romero), returned to Dominican Republic in 1952, moved to New York in 1953 (played with Machito), later retirned to Dominican Rep., to Venezuela (1960, played with Luis Alfonso Larraín), 1st trumpet of the National Symphony Orchestra in 1965, played with Tito Puente (1967), formed his own orchestra in the late 1960s.Needs VoteE. deLeonHéctor De LeónHéctor de LeónMachito And His OrchestraTito Puente And His OrchestraNational Symphony OrchestraSancocho (2)Aldemaro Romero And His OrchestraHéctor De León Y Sus LeonesLuis Alfonzo Larrain Y Su OrquestaConjunto De Hector De LeonHéctor De León Y Su OrquestaPete Bonet And His Orchestra + +1692263Kenneth FagerlundKenneth Åke FagerlundSwedish jazz drummer and bandleader +Born September 16, 1927 in Gothenburg, Sweden — died June 26, 1997 in Gothenburg, SwedenNeeds Votehttps://sv.wikipedia.org/wiki/Kenneth_Fagerlundhttps://orkesterjournalen.com/biografi/fagerlund-kenneth/FagerlundK. FagerlundKen FagerlundKeneth FagerlundKennet FagerlundKenneth FagerlungStan Getz QuintetThe Swedish All StarsBengt Hallberg TrioKenneth Fagerlunds OrkesterKenneth Fagerlunds KvintettKenneth Fagerlunds Trio + +1692323André SennedatFrench bassoonist, born 2 August 1929 in Ligny-le-Ribault, France.Needs VoteA. SennedatAndre SennedatEnsemble Ars NovaOrchestre National De FranceOrchestre De ParisL'Ensemble D'Instrument À Vent Pierre Poulteau + +1692634Shibley BoyesAmerican pianist, died in September 1994 at the age of 91.CorrectShibley Boyes (Credited as Shirley Boyes)Shirley BoyesSibley BoyesLos Angeles Philharmonic Orchestra + +1693625Dean AshrafDean AshrafNeeds VoteD. AshrafD.AshrafTidy DJsSam & Deano + +1693729TT CollectiveNeeds Major Changes + +1695071Herbert WeissbergAustrian flautist and fortepiano player, born in Vienna in 1939.Needs VoteProf. Herbert WeissbergWeissbergVienna Symphonic Orchestra ProjectWiener SymphonikerDie Instrumentisten Wien + +1695111Manfred DierkesGerman jazz guitarist +Died on 4 July 2015Needs VoteRundfunk-Sinfonieorchester BerlinMacky Gäbler QuartettManfred Dierkes TrioMiss Berta HammondBigBand Deutsche Oper Berlin + +1695238Steven DibnerAmerican bassoonist.Needs VoteSan Francisco SymphonyOrpheus Chamber Orchestra + +1696062Red Norvo SextetNeeds Major ChangesRed Norvo & His Selected SextetRed Norvo & His SextetRed Norvo All Star SextetRed Norvo All Star SextettRed Norvo All-Star SextetRed Norvo And His SextetRed Norvo's All Star SextetRed Norvo's All-Star SextetThe Red Norvo SextetChico HamiltonPete JollyBuddy ColletteBarney KesselRed MitchellHarry EdisonJimmy GiuffreMonty BudwigJimmy RowlesLarry BunkerAaron SachsRed CallenderRemo PalmieriRed NorvoShorty RogersClyde LombardiEddie DellBob Carter (2)Tal FarlowJimmy RaneyBill Douglass (2)William O. SmithDanny Negri + +1696351Günter ThomasbergerAustrian cellist, born 1940 in Vienna, Austria.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerTonkünstler Orchestra + +1696352Werner FleischmannAustrian double bassist, born 1955 in Vienna, Austria.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +1696353Ivan DimitrovClassical violinist.Needs VoteIwan DimitroffIwan DimitrovVienna Symphonic Orchestra ProjectWiener Symphoniker + +1696418Andrea NoferiniAndrea Noferini is an Italian classical cellist. He's the son of [a5562848] and the brother of [a3005960] and [a2217171].Needs Votehttps://www.naxos.com/person/Andrea_Noferini/8080.htmhttps://www.allmusic.com/artist/andrea-noferini-mn0001663007Orchestra Del Teatro Dell'Opera Di RomaQuartetto Noferini + +1696720Luca GiardiniItalian classical violinist.Needs VoteEuropa GalanteModo AntiquoIl Giardino ArmonicoI BarocchistiEnsemble "Concerto"Nova Ars CantandiSezione AureaAnimanticaCappella TeatinaSemperconsort + +1696721Carlo LazzaroniClassical violinistNeeds VoteAccademia BizantinaIl Giardino ArmonicoI BarocchistiAlessandro Stradella ConsortLa VenexianaLa RisonanzaAccademia Dell'Annunciata + +1696722Andrea RognoniClassical & baroque violinist.Needs Votewww.aleaensemble.itAccademia BizantinaEuropa GalanteI BarocchistiEnsemble CordiaAlea EnsembleL'Aura Soave CremonaAtalanta FugiensEnsemble OttocentoOpera Prima (5)Antichi Strumenti + +1696723Olivier FourésFrench Olivier Fourés studied ballet and contemporary dance in the Conservatoire National Supérieur de Paris. Then Olivier turns himself into musical studies, becoming Doctor and University Professor in musicology, and a scientific member of the venitian vivaldian istitute. He also works as guest dancer, choreographer, violinist, teacher and liner notes author CorrectO. FourésOlivier Foures + +1696725Duilio M. GalfettiClassical violinist +Duilio M. Galfetti approaches music at a very young age, undertaking the study of accordion and mandolin. At sixteen he is attracted to the violin with which he graduated from the Conservatory "Dreilinden" of Lucerne under the guidance of Gunars Larsens and Rudolf Baumgartner while with the mandolin he perfected with Giuseppe Anedda and Ugo Orlandi. Needs Votehttps://www.osi.swiss/de/osi/musiker/detail/id/4017/duilio-galfettiD. GalfettiDuilioDuilio GalfettiGalfettiД. ГалфеттиIl Giardino ArmonicoI BarocchistiEnsemble VanitasOrchestra Della Radio Televisione Della Svizzera Italiana + +1696726Marco TestoriClassical cello playerNeeds VoteM. TestoriIl Giardino ArmonicoI BarocchistiIl GardellinoAlessandro Stradella ConsortEnsemble VanitasEnsemble 1700La RisonanzaMusica PoëticaEnsemble Arte-MusicaLa Divina ArmoniaI musici di Santa PelagiaIl Suonar Parlante OrchestraAnimanticaCappella Teatina + +1696727Fabio RavasiClassical violinistNeeds VoteEuropa GalanteEnsemble Pian & ForteIl Giardino ArmonicoI BarocchistiCappella GabettaLa RisonanzaI Talenti Vulcanici + +1696728Alberto StevaninClassical violinist and violist.Needs VoteEnsemble Pian & ForteIl Giardino ArmonicoI BarocchistiEnsemble VanitasEnsemble MatheusCappella AugustanaConsort Del Collegio Ghislieri + +1696831Wolfgang Meyer (3)Wolfgang MeyerGerman classical clarinetist. +Born 13 August 1954 in Crailsheim, Germany and died 17 March 2019 in Karlsruhe, Germany. +Brother of [a=Sabine Meyer].Needs Votehttps://en.wikipedia.org/wiki/Wolfgang_MeyerMeyerW.MeyerWolfgang Meyerヴォルフガング・マイヤーCollegium AureumCalamus EnsembleI Solisti Di PerugiaBundesjugendorchesterSyrinx QuintettTrio Di Clarone + +1696980Christopher GuniaClassical bassoon player.Needs VoteChris GuniaThe Chamber Orchestra Of Europe + +1696981Mark Pledger (2)Classical oboe player.CorrectThe Chamber Orchestra Of Europe + +1697106Dexter Gordon QuartetNeeds Major ChangesThe Dexter Gordon QuartetGeorge DukeBilly HigginsDexter GordonKenny ClarkeRoy PorterPierre MichelotKenny DrewLeroy VinnegarChuck ThompsonHorace ParlanHan BenninkDonald GarrettGeorge CablesSam JonesLouis HayesAl HaigKirk LightseyJimmy RowlesLawrence MarableCees SlingerJacques ScholsAl FosterRed CallenderJimmy BunnBarry Harris (2)Stafford JamesNiels-Henning Ørsted PedersenHenk HaverhoekEddie GladdenRufus ReidRune CarlssonPhilip CatherineAlbert HeathAlex RielTete MontoliuOliver JohnsonSture NordinEspen RudTony InzalacoFredrik NorénRonnie MathewsLars SjöstenBenny NielsenDavid Eubanks (2)Irvin RochlinCarl Perkins (4)Jimmy Robinson (8) + +1697107Gene Ammons QuartetNeeds Major ChangesGene AmmonsGene Ammons And His QuartetGene AmmonsDuke JordanEugene WrightWes Landers + +1697191Raymond ThomasUS American blues bassistNeeds VoteThe Delta Boys + +1697252Bernard Thomas (2)Classical conductor, flute, recorder and shawm player.Needs Voteベルナール・トーマThe Consort Of MusickeThe London "Pro Musica" Symphony OrchestraMusica ReservataOrchestre de Chambre Bernard ThomasLondon Pro MusicaThe London Early Music Group + +1697255Ann GriffithsClassical harpist.Needs VoteThe Academy Of Ancient MusicMusica ReservataElizabethan Consort Of Viols + +1697371Benny MeroffAmerican bandleader, violinist, saxophonist, clarinetist, and songwriter. +Born: April 19, 1901 Died March, 1973 (age 71) in Waukesha, Wisconsin, USA. Great-grand father of [a=Kevin Clark (21)]. +Meroff began his career on clarinet with Ted Lewis' "Nut" band near the end of World War I. He was principally active in Chicago in the late 1920s and early 1930s, and also played in New York into the 1940s. Around 1936 Benny decided to reorganize his band, along the then-current "swing" style, which was made popular by another Benny...Benny Goodman. The Meroff band also featured comedy bits in its repertoire, and was billed as "Benny Meroff and his Jibe Orchestra."Needs Votehttps://en.wikipedia.org/wiki/Benny_Meroffhttps://www.imdb.com/name/nm3617561/https://adp.library.ucsb.edu/names/108207B. MeroffBunky MeroffMaroffMedoffMeroffMerossBenny Meroff And His Orchestra + +1697737Antony RansomeBass VocalistNeeds VoteThe Ambrosian Singers + +1697919Armin OeserGerman chorus master.Needs Votehttps://www.rundfunkschaetze.de/mdr-klassik/mdr-rundfunkchor/08-personalia/01-personalkarussell/Rundfunkchor Leipzig + +1698132Lucy GouldBritish classical violinist and orchestra leader. She founded the [a=Gould Piano Trio] whilst studying at the Royal Academy of Music. Needs VoteGouldThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of EuropeGould Piano TrioRoyal Welsh Chamber Players + +1698244Arno PaduchArno Paduch (* in Hattersheim am Main) is a German cornettist, conductor and musicologist. After completing his high school diploma at the Burggymnasium in Friedberg (Hesse), he studied musicology in Frankfurt am Main, and subsequently studied cornett and historical performance at the Schola Cantorum Basiliensis. While studying in Basel, he received a lecture for cornett and ensemblem music at the Department of Early Music of the Felix-Mendelssohn-Bartholdy University of Music in Leipzig, where he is still active today. In 1995 he founded the [a=Johann Rosenmüller Ensemble] for Music of the 17th Century in Leipzig.Needs VoteGabrieli ConsortThe Amsterdam Baroque OrchestraLautten CompagneyMusica FiataCappella AugustanaBläser Collegium LeipzigCamerata LipsiensisJohann Rosenmüller EnsembleEnsemble Tonus (2)Capella Augusta GuelferbytanaLa Tempesta (2) + +1698249Hartwig GrothClassical string instrumentalist (Viola da Gamba & Violone) and music teacher, born 1952 in Bielefeld, Germany.Needs Votehttps://de.wikipedia.org/wiki/Hartwig_GrothConcerto KölnEnsemble Helga WeberMusica FiataMusica Alta RipaMünchner Cammer-Music + +1698330Clémentine MeyerFrench classical cellistNeeds VoteClémentine Meyer AmetOrchestre Philharmonique De Radio France + +1698519Christel PostmaClassical violinist, born in 1955 in Amersfoort, Netherlands.Needs VoteSchönberg EnsembleAsko EnsembleCombattimento Consort AmsterdamNetherlands Chamber OrchestraResidentie OrkestMaarten Altena Ensemble + +1698881Hayley LoweClassical clarinetist.Needs VoteThe Academy Of Ancient MusicThe Music Party + +1698882Hettie WayneClassical violinist.CorrectThe Academy Of Ancient Music + +1698883Andreas Klatt (2)Appears as liner notes German translator.Needs VoteAndreas Klatt + +1698884Anthony CatterickClassical hornist.CorrectTony CatterickThe Academy Of Ancient Music + +1699454Willi NeumannClassical double-bassistNeeds VoteWilli NaumannGewandhausorchester Leipzig + +1699455Franz GenzelGerman violinist, born 13 June 1901.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigCapella FidiciniaGewandhaus-Quartett Leipzig + +1699803The Academy Of Ancient Music Chamber EnsembleNeeds VoteAcademy Of Ancient Music Chamber EnsembleAcademy of Ancient Music Chamber EnsembleBarry GuyAnthony PleethSimon StandageChristopher HogwoodMartin Kelly (3)Jan SchlappTimothy MasonStephen PrestonFelix WarnockPavlo BeznosiukAnthony HalsteadAntony PayMonica HuggettThe Academy Of Ancient Music + +1699924Paul FürstPaul Walter FürstAustrian violist and composer, born on 25 April 1926 in Vienna, Austria and died on 28 February 2013.Needs VoteFürstPaul Walter FürstMünchner PhilharmonikerWiener PhilharmonikerWiener Volksopernorchester + +1700121Isabel PimentelPortuguese violist.Needs Votehttp://www.zezerearts.com/festival/festival-staff/isabel-pimentelGulbenkian OrchestraOrquestra De Câmara La FoliaQuarteto Lopes-Graça + +1700418Eddie FrancisNeeds Major ChangesE. FrancisE.FrancisFrancis + +1701673Santiago CarvalhoSantiago Sabino CarvalhoClassical cellist.Needs Votehttps://www.facebook.com/people/Santiago-Carvalho/100006091064752/London Philharmonic OrchestraRoyal Philharmonic Orchestra + +1701674Keith BraggBritish (from London, England, UK) piccolo & flute player, conductor, and professor. +He studied at [l305416]. Founder member of the [a=Elysian Wind Quintet]. He joined the [a=Philharmonia Orchestra] in 1980, becaming Principal Piccolo in January 1982. He served as Chairman of the Orchestra from 1990 to 2004. Professor of Piccolo since 1992 and Head of Woodwinds since 2002 at the [l527847].Needs Votehttps://www.feenotes.com/database/artists/bragg-keith/https://philharmonia.co.uk/bio/keith-bragg/https://www.ram.ac.uk/people/keith-bragghttps://www.bloomberg.com/profile/person/1965664https://www.imdb.com/name/nm1357098/Royal Philharmonic OrchestraPhilharmonia OrchestraElysian Wind Quintet + +1701676Nicholas DaviesViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701678Angela JenkinsSoprano singer.Needs VoteThe Ambrosian Singers + +1701680Denise ShaneClassical singer.Needs Votehttps://www.imdb.com/name/nm13416275/The Ambrosian Singers + +1701681Joseph AtkinsClassical trumpeter.Needs VoteJoe AtkinsRoyal Philharmonic OrchestraEnglish Sinfonia + +1701682Graham PyattClassical violinist.Needs VoteRoyal Philharmonic OrchestraWest Australian Symphony Orchestra + +1701684Myrna EdwardsViolist.Needs Votehttps://www.linkedin.com/in/myrna-edwards-9203251b8/Nyrna EdwardsRoyal Philharmonic Orchestra + +1701685Nigel WaughBaritone singer.Needs VoteThe Ambrosian Singers + +1701686Glenys GrovesBritish soprano, born 26 July 1949.Needs Votehttps://gsarchive.net/whowaswho/G/GrovesGlenys.htmThe Ambrosian Singers + +1701688Susan CrootViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701689Sarah GayeCellist.Needs VoteRoyal Philharmonic Orchestra + +1701690Catherine McCrackenViola player.Needs VoteCathrin McCrackenCathryn McCrackenRoyal Philharmonic Orchestra + +1701691Michael GoldthorpeClassical tenor, lecturer, examiner, researcher, broadcaster, singing teacher and choral conductor.Needs Votehttps://www.michaelgoldthorpe.com/M. GoldthorpeThe Ambrosian SingersCarlisle Ensemble + +1701692Marianne HodgeViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701694Gill CavanaghViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701695Helen AttfieldContralto / mezzo-soprano singer.Needs VoteThe Ambrosian Singers + +1701696Simon HallettClassical bassist.Needs VoteSimon HalletRoyal Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent Garden + +1701697Maurice BrettViolinist.Needs VoteRoyal Philharmonic OrchestraRobert Farnon And His Orchestra + +1701698Alison BeattyViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701699John HurseyCellist (particularly for stage shows).Needs VoteRoyal Philharmonic OrchestraBournemouth Symphony Orchestra + +1701700Anne McAneneyBritish classical trumpet player and trumpet pedagogue. +Born in Belfast. + +Worked for: +Street Brass Band (cnt) +Orchestra de Belfast +Royal Ballet Orch. (1985 - 1989, tp1) +London Brass (1986 - , flugelhorn) +London Symphony Orchestra Brass +freelance (1989 - 1999) +London Philharmonic (2000 - ) + +Professor: +Guildhall School (1995 - )Needs Votehttps://www.linkedin.com/in/anne-mcaneney-35937a28/https://en.wikipedia.org/wiki/Anne_McAneneyhttps://lpo.org.uk/people/anne-mcaneney/Anne Mc AneneyLondon Philharmonic OrchestraLondon BrassRoyal Philharmonic Orchestra + +1701701Carol IrbyViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701702Jeremy CornesBritish classical timpanist, percussionist, and Professor of Orchestral Percussion. +He studied at the [l290263]. Whilst still at college, he started his professional career appearing with the [a=Bournemouth Sinfonietta], [a=The Chamber Orchestra Of Europe] and the [a=London Philharmonic Orchestra]. He was a member of the Opera '80 touring company (later English Touring Opera) for three seasons from 1986 to 1988, and has performed at twenty five seasons of Glyndebourne Festival Opera with the London Philharmonic Orchestra. Principal Timpani with the [a=City Of London Sinfonia]. Professor of Orchestral Percussion and head of the Drum/Percussion Department at the [l=London College Of Music] since 2003.Needs Votehttps://www.linkedin.com/in/jeremy-cornes-28883390/https://www.uwl.ac.uk/staff/jeremy-corneshttps://www.imdb.com/name/nm11776620/https://vgmdb.net/artist/22847Jeremy CornsJeremy CronesLondon Symphony OrchestraLondon Philharmonic OrchestraCity Of London SinfoniaRoyal Philharmonic OrchestraBournemouth SinfoniettaThe Chamber Orchestra Of EuropeThe John Wilson Orchestra + +1701703Leslie ChildViolinist.Needs VoteRoyal Philharmonic OrchestraBournemouth Sinfonietta + +1701704Laurence RogersClassical hornist. +Principal Horn of the [a=Hallé Orchestra].Needs Votehttps://music.metason.net/artistinfo?name=Laurence%20Rogershttps://www.imdb.com/name/nm4026725/Laurence RodgersLondon Symphony OrchestraRoyal Philharmonic OrchestraHallé Orchestra + +1701705Joanne BoddingtonClassical flutist.Needs VoteRoyal Philharmonic OrchestraHallé Orchestra + +1701707Ann ButlerClassical singer.Needs VoteThe Ambrosian Singers + +1701708Aileen MorrisonViolist.Needs VoteRoyal Philharmonic Orchestra + +1701709Nicholas BoothroydCellist.Needs VoteRoyal Philharmonic Orchestra + +1701710John HattCello player.Needs VoteRoyal Philharmonic Orchestra + +1701711Julie KennardClassical soprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Kennard-Julie.htmThe Ambrosian SingersBBC Singers + +1701712Adam PreciousDouble bassist.Needs VoteRoyal Philharmonic Orchestra + +1701713Lindsay JohnClassical alto singer.Needs VoteThe Ambrosian Singers + +1701714Natasha HolmesCellist.Needs VoteRoyal Philharmonic Orchestra + +1701715Gwilym HoosonClassical violinist.Needs VoteRoyal Philharmonic OrchestraRoyal Ballet Sinfonia + +1701716Gerald PlaceClassical tenor vocalist and photographer.Needs Votehttps://www.linkedin.com/in/gerald-place-0067a834/The Ambrosian SingersGesualdo Consort + +1701717Gerri DroughtViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701718Maria DumreseViolist.Needs VoteRoyal Philharmonic Orchestra + +1701719Denise MarleynViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701720Eve WatsonViolist.Needs VoteRoyal Philharmonic Orchestra + +1701721Jacqueline WoodsBritish viola player and teacher at the Royal Academy of MusicNeeds Votehttps://www.imdb.com/name/nm13693237/Jackie WoodsJacky WoodsRoyal Philharmonic Orchestra + +1701722Martin TurnlandClassical string instrumentalist.Needs VoteRoyal Philharmonic Orchestra + +1701723Daniel LynessViola player.Needs Votehttps://www.imdb.com/name/nm13693201/Royal Philharmonic OrchestraThe Holywell Ensemble + +1701724Debra SkeenSoprano.Needs Votehttps://www.debraskeen.co.uk/The Ambrosian Singers + +1701725Timothy AmherstClassical double bass player.Needs VoteTim AmherstTim AmhurstRoyal Philharmonic OrchestraThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersHanover BandThe King's ConsortDunedin ConsortArcangeloThe Avison EnsembleEx Cathedra Baroque OrchestraClassical OperaRetrospect EnsembleThe Mozartists + +1701726Sian DaviesOboist.Needs VoteRoyal Philharmonic Orchestra + +1701727Karen LeachClassical violinist.Needs VoteRoyal Philharmonic OrchestraBournemouth Symphony Orchestra + +1701728Patrik HalsteadClassical singer.Needs Votehttps://www.imdb.com/name/nm15287104/The Ambrosian Singers + +1701729Sydney MannViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701731Valerie McFarlanClassical singer.Needs VoteThe Ambrosian Singers + +1701732Chris WestcottDouble bassist.Needs VoteRoyal Philharmonic Orchestra + +1701733Hilary MyerscoughViolist.Needs Votehttps://www.imdb.com/name/nm4899454/Royal Philharmonic Orchestra + +1701734Sandra MackViolist.Needs VoteRoyal Philharmonic Orchestra + +1701735Catherine CraigClassical violinist.Needs VoteLondon Philharmonic OrchestraRoyal Philharmonic Orchestra + +1701736Philip DoughanClassical singer.Needs VoteThe Ambrosian Singers + +1701737Robert QuickViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701738Christopher McShaneClassical tuba player.Needs VoteChris McShaneRoyal Philharmonic Orchestra + +1701739Alan AndrewsBritish clarinet player based in London.Needs VoteBBC Symphony OrchestraRoyal Philharmonic Orchestra + +1701740Diana CarringtonViola player.Needs Votehttps://www.imdb.com/name/nm13693202/Royal Philharmonic OrchestraThe Arc Of Light Orchestra + +1701741Susan AppelViolist.Needs VoteRoyal Philharmonic Orchestra + +1701742Prue SedgwickViolinist.Needs VoteRoyal Philharmonic Orchestra + +1701743Richard Day-LewisClassical singer.Needs VoteThe Ambrosian Singers + +1701744Marian DaviesMarian DaviesSinger. Born November 23, 1937 in Neath (Crynant), Wales, UK, died January 24, 2008 in London, England.Needs VoteMarian DavisMarion DaviesThe Ambrosian SingersMike Sammes SingersThe PetalsAmbrosian Opera ChorusThe LadybirdsThe George Mitchell ChoirThe Cliff Adams SingersThe Maggie Stredder SingersThe Johnny Evans SingersNeil Richardson Singers + +1701766Hans PlumacherClassical cellistNeeds VoteH. PlumacherH. PlümacherHans PlümacherConsortium Musicum (2) + +1702166Ernest AshleySwing jazz guitaristNeeds VoteE. AshleyErnie AshleyLionel Hampton And His Orchestra + +1702390Eugenie BairdEdythe (Eugenie) (Baird) MeadAmerican singer and actress. Younger sister of [a=Kay Marie Baird]. Born November 19, 1923 Mt. Lebanon, Pennsylvania, USA. Died June 12, 1988 (64 years old) Brewster, New York, USA. +Baird had a career in big bands, vaudeville and night clubs, stage and film, advertising jingles, and commercial recordings. She sang with Tony Pastor and his orchestra throughout 1941 and 1942 before joining Glen Gary in 1943. +She sang vocals on 3 hits that charted in the U.S. between 1943-1944 with Glen Gray and the Casa Loma Orchestra. Leading the way was the #1 "My Heart Tells Me (Should I Believe My Heart?)", which was one of the top songs of 1943. In 1944 came #4 "My Shining Hour", #12 "Suddenly It's Spring", and #21 "Don't Take Your Love from Me". +In 1944-45, Eugenie sang on the Kraft Music Hall with Bing Crosby. In 1946, she was on Paul Whiteman's show, Forever Tops, and in a Gershwin concert with Whiteman in Montreal. Baird was a regular vocalist on The Paul Whiteman Show in 1946-47, and was with him on a two-week all-Gershwin tour in January of 1947. She left Whiteman in February 1947 to pursue a solo career (though she appeared again with him in 1948). She made some solo recordings, including "Blue Room", with the Bob Curtis Quartet in 1949 and three releases with Vinrob Records in 1953. She later made commercial jingles in the 1950s.Needs Votehttps://en.wikipedia.org/wiki/Eugenie_Bairdhttps://www.imdb.com/name/nm2951491/https://bandchirps.com/artist/eugenie-baird/Miss Eugenie BairdCasa Loma Orchestra + +1702444Nicholas MulroyTenor vocalist.Needs Votehttp://nicholasmulroy.com/N. MulroyThe Monteverdi ChoirLa Capella Reial De CatalunyaI FagioliniEx Cathedra Chamber ChoirThe King's ConsortDunedin ConsortTenebrae (10)Theatre Of The AyreThe Bach PlayersOrpheus Britannicus + +1703293Вадим МалковВадим Евгеньевич МалковSoviet poet & lyricist. +Born: September 11, 1912, Kaminka, Orenburg Governorate (now Kurgan Oblast), Russian Empire +Died: January 20, 1994, Moscow, Russia +Needs Votehttps://ru.wikipedia.org/wiki/Малков,_Вадим_ЕвгеньевичMalkovV. MalkovVadim MalkovВ. МалковВ. МалковаВ.МалковМ. МалковМалков + +1703571Irving RothIrving J. RothAmerican songwriter, composer, conductor, producer, saxophonist (alto, tenor, baritone), clarinetist, oboist, and English horn player, also known as [a=Adam Ross]. + +Roth began his music career at the age of 15 in New York, when he was hired to play with the [a=Tony Pastor] band, which included young [a=Rosemary Clooney] and her sister [a=Betty Clooney]. From there he went on to play with [a=Georgie Auld], [a=Harry James (2)], [a=Gene Krupa], [a=Glen Gray], [a=Skitch Henderson], and [a=Ray Anthony]. He also performed with [a=Sarah Vaughan], [a=Eddie Fisher], [a=Patti Page], [a=Gordon MacRae], and [a=Doris Day]. He moved from New York to Los Angeles in 1948. + +He also wrote music for a number of movies, including "Pillow Talk" (1959), "It Happened To Jane" (1959), and "Lover Come Back" (1961). After his career as a studio musician, he worked as a producer. He produced [a=The Rivingtons]' "Papa-Oom-Mow-Mow", and [a450686]'s "Jennie Lee". + +He worked as a musician's contractor for Paramount Pictures Television and for several motion pictures. He spent seven years as assistant president of the American Federation of Musicians. He also worked as assistant to the vice president of MCA Records. He retired in the early 1980s, and moved to Santa Clarita Valley in California where he continued to perform with the Adam Ross Quartet, and Adam Ross Trio.Needs VoteI. J. HothI. J. RothI. RothI.J. RothIrv RothIrv. RothJ. RothL. J. RothL. J. RothRothAdam RossHarry James And His OrchestraThe Adam Ross ReedsGeorgie Auld And His OrchestraAdam Ross Orchestra + +1703674Ruth Hill (2)CorrectR. HillRHRuth Hill (RH)Tommy Dorsey And His Orchestra + +1704338Reinhard UlbrichtReinhard Ulbricht (27 May 1927 in Dresden, Germany - 25 January 2018) was a German classical violinist.Needs VoteStaatskapelle DresdenDresdner Kammersolisten + +1705547Thomas TrotterBritish organist.Correcthttp://en.wikipedia.org/wiki/Thomas_TrotterTrotter + +1705551Philip SalmonTenor vocalist.Needs VoteThe Tallis ScholarsThe Monteverdi ChoirThe Consort Of Musicke + +1705983Valerio LositoClassical violinist.Needs Votehttp://www.valeriolosito.com/bio-eng/Modo AntiquoConcerto ItalianoAlessandro Stradella ConsortEnsemble SeicentonovecentoIl Pomo d'OroIl Cantiere Delle MuseMusica AlchemicaCappella Del Sacro MonteCappella Di Santa Maria Degli AngioliniEnsemble TrictillaLa Vertuosa Compagnia De' Musici Di Roma + +1705985Lia SerafiniItalian soprano vocalist.Needs VoteLa Capella Reial De CatalunyaCoro Del Centro Di Musica Antica Di PadovaConcerto ItalianoLa Stagione ArmonicaCoro Della Radio Televisione Della Svizzera ItalianaDe LabyrinthoOficina MusicumCantar LontanoI Musicali Affetti + +1705987Andrea Bressan (2)Italian oboe, bassoon and dulcian player.Needs VoteA. BressanBudapest Festival OrchestraConcerto ItalianoVenice Baroque OrchestraEnsemble ConSerto MusicoIl Pomo d'OroMIB Wind EnsembleJuracamoraDivertissement (2) + +1705992Matteo BellottoClassical bass / baritone vocalist.Needs Votehttps://www.facebook.com/matteo.bellotto.7Choeur de Chambre de NamurConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaCantar LontanoLa VenexianaCappella AugustanaLa Compagnia Del MadrigaleIl Pomo d'OroEnsemble Festina LenteOdhecaton (2)I musici di Santa PelagiaLa Fonte MusicaLa PedrinaMelodi CantoresIl Pomo d'Oro Choir + +1705996Davide BettinItalian classical Oboist.Needs VoteModo AntiquoConcerto ItalianoVenice Baroque OrchestraEx Silvis Antiqua Musica + +1705998Raffaele GiordaniItalian classical tenor vocalist.Needs VoteGiordaniConcerto SoaveConcerto ItalianoLa Stagione ArmonicaCantica SymphoniaCoro Della Radio Televisione Della Svizzera ItalianaDe LabyrinthoCantar LontanoLa VenexianaVox Altera EnsembleLa Compagnia Del MadrigaleIl Pomo d'OroDelitiæ MusicaeOdhecaton (2)ClubMediévalCappella Musicale di San Giacomo Maggiore In BolognaCoro Ghislieri + +1706007Anna SimboliItalian classical soprano [b]vocalist[/b].Needs VoteChoeur de Chambre de NamurConcerto ItalianoI BarocchistiDe LabyrinthoAurata Fonte + +1706051David Miller (15)Classical viola player. + +A graduate of Juilliard, is a member of the Classical Quartet, [a=Aston Magna], Concert Royal, [a=The Bach Ensemble], and the [a=Smithsonian Chamber Players]. He has appeared as a guest artist with the [a=Amadé Trio] and the [a=New York Chamber Soloists].Needs VoteThe Prism OrchestraThe Handel & Haydn Society Of BostonThe Bach EnsembleAston MagnaConcert RoyalBrewer Chamber OrchestraTheatre Of Early MusicBoston Early Music Festival OrchestraRed Cedar Chamber MusicThe Smithsonian Chamber PlayersThe Red Cedar Trio + +1706145Pásztor LászlóHungarian guitarist, composer and band leader. Also composed music for films and theater plays. +Born in Budapest, 15th July 1945. +Founder of label [l34295], later director of [l179530]. +Husband of [a1706147], father of [a1265473] and [a1601684].Needs Votehttps://hu.wikipedia.org/wiki/P%C3%A1sztor_L%C3%A1szl%C3%B3_(zen%C3%A9sz)DásztorL. PasztorL. PasztórL. PásztorL.PasztorLaszlo / PasztorLaszlo PasztorLàzzlo PástorLászlo PasztorLászló PasztorLászló PásztorLázzlo PàstorP. LászlóPastor LaszloPasztorPasztor - LaszloPasztor - LazloPasztor - LazsloPasztor LászloPasztor-LaszloPástorPásztorPásztor L.Pásztor LaszloPásztor Z.Ласло Пасторラスロ・パーストルNeoton Família + +1706147Hatvani EmeseHatvani EmeseCorrectE. HatvaniE. MatvaniE.HatvaniEmeseEmese HatvaniH. EmeseH. HatvaniHatvanHatvaniHatvani - EmeseHatvani / EmeseHatvani EHatvani E.Hatvani-EmeseHavani + +1706148Jakab GyörgyHungarian keyboard player, composer, lyricist and singer +Born July 2nd 1950 - died 16th February 1996. +Father of [a1259026]Needs Votehttps://hu.wikipedia.org/wiki/Jakab_Gy%C3%B6rgy_(zen%C3%A9sz)G. JakabG. JakobG.JakabGy. JakabGyorgy JakabGyorgy JakavGyörgy JakabGyörgy JakobJ. JakabJakabJakab - GyorgyJakab / GyorgyJakab Gy.Jakab György (Neotonna)Jakab György(sen)Jakab-GyorgyJakobヤカブ・ジェルジュNeoton Família + +1706185Sheryl StaplesViolinist. Married to [a=Barry Centanni].Needs VoteSheryl L. StaplesSheryl L. Staples-CentanniSheryl Staples CentanniSheryl Staples CentanniNew York PhilharmonicThe Cleveland Orchestra + +1706454Female Chorus Of The Royal Opera House, Of The Covent GardenNeeds VoteChœur De Femmes De Covent GardenFemale Chorus Of The Royal Opera House, Covent GardenFrauenchor Des Königlichen Opernhauses Covent Garden, LondonFrauenchor Des Königlichen Opernhauses, Covent GardenChorus Of The Royal Opera House, Covent Garden + +1706742Rüdiger LotterClassical violinist.Needs Votehttps://www.bach-cantatas.com/Bio/Lotter-Rudiger.htmhttps://de.wikipedia.org/wiki/Rüdiger_LotterMusica Antiqua KölnConcerto KölnMünchener KammerorchesterOrchester Der Ludwigsburger SchlossfestspieleEnsemble 1700LyriarteNeue Hofkapelle München + +1706743Alvaro PintoClassical violinist.Needs VoteMusica Antiqua Köln + +1706744Andrew Hale (2)Classical hornist.Needs VoteMusica Antiqua KölnSüdwestdeutsche Philharmonie + +1706745Joachim FiedlerClassical cellist.Needs VoteAchim FiedlerMusica Antiqua KölnEnsemble Sans Souci Berlin + +1706753Gérard KorstenSouth African conductor and violinist born in Pretoria, South Africa in 1960. + +He studied violin at the Curtis Institute of Music in Philadelphia with Ivan Galamian as well as in Salzburg with Sándor Végh. He was initially concertmaster of the Camerata Salzburg, and in 1987 took up the post of concertmaster with the Chamber Orchestra of Europe for nine years. Engagements followed as music director at the Teatro Lirico di Cagliari (Sardinia), music director of the London Mozart Players, chief conductor in [a=Uppsala Kammarorkester] between 1994-1998 and at the Opera house in Pretoria, and as chief conductor of the Symphony Orchestra Vorarlberg in Bregenz. + +Korsten is a jury member of the Internationaler Musikwettbewerb Pacem in Terris [de]. + +His father was South African tenor singer [a1589062].Needs Votehttp://www.gerardkorsten.com/https://en.wikipedia.org/wiki/G%C3%A9rard_KorstenGerard KorstenGerhard KorstenGé KorstenKorstenThe Chamber Orchestra Of Europe + +1706986Robert N. WardPlayed horn in the San Francisco Symphony Orchestra 1980-2023 (Principal 2007-2023). +Founding member of symphonic brass group the Bay Brass. Retired at the end of 2023.Needs Votehttps://www.sfsymphony.org/Data/Event-Data/Artists/W/Robert-Wardhttps://www.sfcv.org/articles/artist-spotlight/after-43-years-sf-symphony-robert-ward-sounds-his-final-notesRobert WardSan Francisco SymphonyThe Bay Brass + +1706988Bruce A. RobertsPlays horn in the San Francisco Symphony Orchestra (Assistant principal).Needs Votehttp://www.baybrass.org/bio_roberts.htmlA. RobertsBruce RobertsSan Francisco SymphonyThe Bay Brass + +1707223Gernot SchwickertGerman classical keyboard instrumentalistNeeds VoteGewandhausorchester Leipzig + +1707225Fritz HungerClassical oboistNeeds VoteGewandhausorchester Leipzig + +1707227Konrad SpitzbarthGerman classical contrabass instrumentalistNeeds VoteGewandhausorchester Leipzig + +1707228Erich ListErich List (born 27 January 1907) was a German flute player. First flute of the [a522210] from 1938 to 1960.Needs VoteRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester Leipzig + +1707229Willy GerlachClassical wind instrumentalistNeeds VoteWilli GerlachGewandhausorchester Leipzig + +1707627Susanne LercheSusanne Linder née LercheGerman classical violist, born in 1971 in Munich, Germany.CorrectMahler Chamber Orchestra + +1707628Béatrice MutheletFrench viola player.Needs Votehttps://beatricemuthelet.wordpress.com/Béatrice MulhetMahler Chamber OrchestraCapuçon Quartet + +1707629Karoline SchickKaroline Zurl née SchickGerman bassoonistNeeds VoteKaroline ZurlMahler Chamber Orchestra + +1707630Stefano GuarinoItalian classical pianist and cellistCorrectMahler Chamber OrchestraCamerata Academica Salzburg + +1707632Anita MazzantiniItalian classical double bassist, born 1982 in Livorno, Italy.Needs VoteMahler Chamber OrchestraFestival Strings LucerneOrchestra dell'Accademia Nazionale di Santa Cecilia + +1707633Thomas Schulze (2)Classical hornistNeeds VoteRundfunk-Sinfonie-Orchester LeipzigBundesjugendorchesterMDR Sinfonieorchester + +1707636Emma SchiedBritish oboist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMahler Chamber OrchestraBBC Scottish Symphony OrchestraBudapest Festival OrchestraLucerne Festival Orchestra + +1707637Michael Cunningham (2)Classical tuba playerCorrectMahler Chamber Orchestra + +1707638Geoffroy SchiedClassical violinistCorrectMahler Chamber Orchestra + +1707639Henja SemmlerGerman classical violinist, born in 1979 in Berlin, Germany.Needs VoteMahler Chamber OrchestraSwonderful OrchestraOberon Trio + +1707642Meesun HongClassical violinist.Needs VoteMeesun Hong ColemanMeesun Hong-ColemanMahler Chamber OrchestraCamerata BernSwiss Chamber SoloistsKammerakademie Potsdam + +1707645Naoko OgiharaJapanese classical violinistCorrectWDR Sinfonieorchester KölnMahler Chamber Orchestra + +1707646Ulrich BiersackGerman classical flutist, born in 1969 in Passau, Germany.CorrectMahler Chamber OrchestraBamberger Symphoniker + +1707647Markus DäunertGerman classical violinist, born 1970 in Berlin, GDR.Needs VoteMahler Chamber OrchestraLucerne Festival OrchestraGustav Mahler JugendorchesterSwonderful OrchestraardeTrioMassa Trio + +1707648Cindy AlbrachtSwiss classical violinist, born in 1975.Needs VoteMahler Chamber OrchestraHet Gelders OrkestPhion + +1707649Naomi PetersClassical violinistNeeds VoteMahler Chamber OrchestraHolland SymfoniaLudwig Orchestra + +1707650Romain GuyotFrench classical clarinetistNeeds VoteThe Chamber Orchestra Of EuropeOrchestre National De L'Opéra De ParisEuropean Union Youth Orchestra + +1707651Antonello ManacordaItalian classical violinist and conductorNeeds Votehttp://www.antonello-manacorda.com/https://en.wikipedia.org/wiki/Antonello_ManacordaMahler Chamber OrchestraKammerakademie Potsdam + +1707652Isabelle BrinerSwiss classical violinist, born in 1975 in Luzern, Switzerland.Needs VoteMahler Chamber OrchestraCamerata BernOrchestra MozartSwiss Orchestra + +1707653Fritz PahlmannGerman classical hornistNeeds VoteStaatskapelle WeimarMahler Chamber OrchestraBamberger SymphonikerGürzenich-Orchester Kölner PhilharmonikerBundesjugendorchesterEnsemble 4.1 + +1707654Chiara SantiItalian bassoonistCorrectMahler Chamber Orchestra + +1707655Markus BruggaierGerman classical hornist, born in 1969 in Bad Homburg, Germany.Correcthttp://www.staatsoper-berlin.de/de_DE/person/markus-bruggaier.24565Mahler Chamber OrchestraStaatskapelle Berlin + +1707656Robert KendellBritish timpanist and music teacher.Needs VoteThe English Baroque SoloistsOrchestra Mozart + +1707657Chiara TonelliItalian classical flutistCorrectTonelliMahler Chamber Orchestra + +1707658Bernhard OstertagClassical trumpet playerCorrectMahler Chamber OrchestraDeutsche Kammerphilharmonie Bremen + +1707659Katarzyna ZawalskaPolish classical violinist, born in 1976.Needs VoteMahler Chamber OrchestraPolish Festival Orchestra + +1707660Philipp von SteinaeckerGerman cellist and conductor, born in Hamburg, Germany.Needs VoteMahler Chamber OrchestraLe Concert D'Astrée + +1707661Gianfranco DiniItalian classical horn player, active from the 1990sNeeds VoteThe Orchestra Della ToscanaMahler Chamber OrchestraModo AntiquoVenice Baroque OrchestraAuser MusiciOrchestra Del Maggio Musicale FiorentinoEnsemble Dell'Accademia + +1707662Robb TooleyClassical trombonist.Needs VoteBournemouth Symphony OrchestraYoung Musicians Symphony OrchestraCelestia Brass (2) + +1707664Paolo BorsarelliItalian classical double bassistCorrectMahler Chamber Orchestra + +1707665Serguei GalaktionovClassical violinistCorrectSergey GalaktionovSerghei GalaktionovMahler Chamber Orchestra + +1707666Julie PallocJulie Palloc is a French classical harpist. She's a member of the [a5794038] since 2003.Needs VoteOrchester Der Wiener StaatsoperStaatskapelle WeimarPhilharmonia ZürichLabyrinth Ensemble + +1707667Konstantin PfizGerman cellist, born 1967 in Wilhelmshaven, Germany.Needs VotePfizMahler Chamber OrchestraBergen Filharmoniske OrkesterBundesjugendorchester + +1707669Akemi UchidaClassical violinistCorrectMahler Chamber Orchestra + +1707671Heather CottrellAustralian classical violinist, born in 1970.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMahler Chamber OrchestraEnsemble CoriolisSwonderful Orchestra + +1707672Gianluca SaveriItalian classical percussionist.Needs VoteMahler Chamber OrchestraTetraktis Percussioni + +1707866Kenneth S. MillerBassist.Needs Votehttps://www.linkedin.com/in/ken-miller-04331663/Ken MillerKenn MillerKenneth MillerSan Francisco Symphony + +1707950Tony AntonelliUS jazz saxophonist from the swing-era. + +Needs VoteA. AntonelliT. AntonelliT. AntonellyTommy Dorsey And His OrchestraVan Alexander And His OrchestraJack Teagarden And His OrchestraPaul Martell And His OrchestraVan Alexander And His Swingtime Band + +1707951Seymour GoldfingerUS jazz trombonist from the swing-era. + +Needs VoteS. GoldfingerJack Teagarden And His Orchestra + +1707952Joe FerdinandoUS jazz saxophonist from the swing-era. + +Needs VoteJ. FernandoJack Teagarden And His Orchestra + +1707953John FallstitchUS jazz trumpeter from the swing-era. + +Needs VoteJ. FallstichJohn FallstichBunny Berigan & His OrchestraJack Teagarden And His OrchestraAlvino Rey And His Orchestra + +1707958Joe FerrallAmerican trombonist during the swing era.CorrectJ. FarrellJoe FarrellJoe FerallJoe FerralJoe FerrellJoe FerrilHarry James And His OrchestraJack Teagarden And His Orchestra + +1709820Párkányi IstvánIstván PárkányiHungarian classical violinist. + +Born 1948. Needs Votehttp://worldcat.org/identities/lccn-n85213552/Istvan ParkanyiIstván ParkanyiIstván PárkányiParkanyiParkanyi IstvanOrlando QuartetThe Hungarian Light Symphonic OrchestraPárkányi Quartet + +1710018Martin ÅsanderSwedish tenor vocalist, composer, instrumentalist and educator.Needs Votehttps://www.martinasander.com/startRadiokören + +1710030Sydney HumphreysSydney Ernest HumphreysCanadian violinist and teacher, born 26 September 1926 in Chilliwack, near Vancouver, CanadaNeeds VoteSydney HumphriesBournemouth SinfoniettaAeolian String QuartetBBC Scottish Symphony OrchestraThe London StringsPurcell String QuartetBath Festival Orchestra + +1710789Jascha SilbersteinAmerican cellist, born 21 April 1934 in Stettin, Germany, (now Szczecin, Poland) and died 21 November 2008, Hot Springs, Arkansas.CorrectJasha SilbersteinBoston Symphony OrchestraMetropolitan Opera Orchestra + +1711102Dick GustavssonSwedish classical hornistNeeds VoteGöteborgs SymfonikerArtillerimusikkåren I GöteborgSvenska Serenadensemblen + +1711235Jacques BaratNeeds Votehttps://www.accordion-scores.com/artist/Jacques+BaratBaratJ. BaratJ. BarratOrchestre Jacques Barat + +1711407Tobias SchäferGerman tenor vocalist born in DresdenCorrectRIAS-Kammerchor + +1712233Marlin HurtCredited as jazz singer in early period.Needs VoteFrankie Trumbauer And His Orchestra + +1712766Brian SchieleViolist and violinist. + +After leaving the Royal College of Music in London, where he studied viola with Fred Riddle, he embarked on a career in chamber music, playing with the Auriol Quartet for the best part of a decade. He also freelanced in a number of London-based orchestras, including the Philharmonia (in which [a=Robert McFall] also served time) and the London Festival Ballet orchestra, in which he was principal viola. He also performed regular viola and piano recitals. +He still has chamber music links with the South East of England – for example he still plays for the [a=Tagore String Trio]. However, since 1994 he has been a member of the [a=Scottish Chamber Orchestra] and, through that, a founder member of [a=Mr McFall's Chamber] – for which he has also written a number of original works and arrangements. +CorrectBrian SchielesScottish Chamber OrchestraMr McFall's ChamberThe Loveboat Big BandTagore String Trio + +1712784Sárközy GergelyHungarian classical multi-instrumentalist, born in 1952. He plays the guitar, lute, lute-harpsichord, viola bastarda, and organ.Needs Votehttps://en.wikipedia.org/wiki/Gergely_Sárközyhttp://www.bach-cantatas.com/NVP/Sarkozy.htmG. SarkoeziGergely SarkoeziGergely SárközyGergély SärközySarkoeziSárközi GergelyCamerata HungaricaLiszt Ferenc Chamber Orchestra + +1712842Nisanne HowellNisanne Howell is an American classical violinist. She was a member of the [a837562] from 1986 to 2017.Needs VoteNissane HowellNissi HowellNisanne GraffBoston Symphony OrchestraChicago Symphony Orchestra + +1712897Hersh HamelBassist.Needs VoteHamelHershey HamelArt Pepper QuartetDon Randi Trio + +1713748David Bentley (4)Classical hornist. Tutor in Baroque Horn, Royal Birmingham Conservatoire. +For the Seattle based jazz trombone player use [a7371919]Needs Votehttps://www.bcu.ac.uk/conservatoire/music/departments/brass/tutorial-staff/david-bentleyThe English Baroque SoloistsThe Academy Of Ancient MusicGabrieli PlayersHanover BandThe King's ConsortBrandenburg ConsortThe English ConcertThe Mozartists + +1713749Dawn BakerClassical double bassist.Needs VoteThe Academy Of Ancient MusicHanover Band + +1713753Rodolfo RichterClassical violinist.Needs VoteRichterThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe King's ConsortPalladian EnsembleClassical OperaThe English ConcertThe Harmonious Society Of Tickle-Fiddle GentlemenB'Rock OrchestraTheatre Of The AyreA Nocte TemporisFlorilegiumRichter Ensemble + +1713756Catherine Martin (2)Classical violinist.Needs Votehttp://www.catherinemartin.co.uk/Catherine MartinThe Amsterdam Baroque OrchestraCollegium Musicum 90I FagioliniGabrieli PlayersThe King's ConsortThe Salomon QuartetKölner AkademieThe English Concert + +1713758Persephone GibbsAmerican-born violinist Persephone Gibbs studied with Dorothy DeLay at Juilliard, gained degrees in English at Yale and law at Columbia, improvised with a rock band for a year and immersed herself in dancing tango before moving to London to study with David Takeno and Rachel Podger at the Guildhall School of Music.Needs Votehttp://www.constanzequartet.com/index.htmlThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersDunedin ConsortInstruments Of Time & Truth + +1713762Matthew VennerAlto / Countertenor vocalist.Needs Votehttps://web.archive.org/web/20200325092943/http://www.orlandoconsort.com:80/matthew_biog.htmThe New College Oxford ChoirThe Tallis ScholarsThe Monteverdi ChoirOrlando ConsortI FagioliniPolyphonyEx Cathedra Chamber ChoirContrapunctus (2) + +1713764Stephen Taylor (7)British Countertenor & Alto vocalist.Needs Votehttps://www.bnc.ox.ac.uk/about-brasenose/index.php?option=com_content&view=article&id=1167&Itemid=501MagnificatThe New College Oxford ChoirOxford CamerataThe Choir Of Christ Church CathedralI FagioliniChapelle Du RoiCharivari Agréable + +1713766Joanna LawrenceClassical violinistNeeds VoteJo LawrenceThe Academy Of Ancient MusicThe Homemade Orchestra + +1713772Gabriel AmherstClassical cellist.Needs VoteGabriele AmherstGay AmherstThe Academy Of Ancient MusicThe London Cello SoundArmonico ConsortThe Restoration Consort + +1713775William PurefoyEnglish classical countertenor vocalist.Needs Votehttps://sites.google.com/view/williampurefoycountertenor/homehttps://www.bach-cantatas.com/Bio/Purefoy-William.htmhttps://www.imdb.com/name/nm3926466/W. PurefoyWPWiliam PurefoyWilliam PurfoyTheatre Of VoicesThe Hilliard EnsembleThe SixteenI FagioliniTheatre Of The Ayre + +1713780William UnwinBritish tenor vocalist and photographer. +For copyright credits, please use [l=Will Unwin].Needs Votehttp://willunwin.com/Will UnwinThe New College Oxford ChoirThe Cambridge SingersThe SixteenPolyphony + +1713782Matthew TruscottClassical violinist. +He studied at the Royal Academy of Music in London, the Koninklijk Conservatorium in The Hague and in Bloomington, Indiana where his teachers were [a861275], [a343905] and [a1092074]. +As a soloist and director, he has appeared with the Orchestra of the Age of Enlightenment, the King’s Consort, the Retrospect Trio and Florilegium. He was a member of the Dante Quartet for four years and has recently joined the Quince Quartet. He is also leader of St James' Baroque, the Classical Opera Company and the Magdalena Consort as well as professor of baroque violin at the Royal Academy of Music in London.Needs Votehttp://magdalenaconsort.com/pages/players.phphttp://www.ram.ac.uk/find-people?pid=488Mahler Chamber OrchestraThe English Baroque SoloistsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentLe Concert D'AstréeGabrieli PlayersThe King's ConsortDunedin ConsortArcangeloRetrospect TrioThe Band Of InstrumentsThe MozartistsEnsemble GuadagniBartolozzi TrioBenedetti Baroque Orchestra + +1713785Guy CuttingClassical alto, countertenor and tenor vocalistNeeds Votehttp://www.guycuttingtenor.co.uk/profile.htmlMagnificatThe New College Oxford ChoirLondon VoicesTenebrae (10)AlamireContrapunctus (2)The Marian ConsortDamask Vocal Quartet + +1713788Alexandra BellamyClassical oboist. +She graduated from Queens College Oxford with a BA in Music in 1991 and went on to study the historical oboe with [a836781] and [a960900] at the Royal Academy of Music. +In 1995, she received the post of principal oboe with the European Union Baroque Orchestra. From 1999 to 2008, she was principal oboe of The Kings Consort. Since 1995, she has played with Florilegium and has regularly toured and recorded with Gabrieli Consort. She also worked for The Academy of Ancient Music, The Sixteen, The English Consort, London Baroque, Concerto Copenhagen, Freiburg Baroque Orchestra and Ensemble 415. She is also a regular member of the Edinburgh based Dunedin Consort.Needs Votehttps://www.dunedin-consort.org.uk/artist/alex-bellamy/Alex BellamyGabrieli ConsortThe SixteenThe Amsterdam Baroque OrchestraLondon BaroqueThe Academy Of Ancient MusicEnsemble 415Freiburger BarockorchesterThe King's ConsortDunedin ConsortThe English ConcertRetrospect EnsembleFlorilegiumKontrabande + +1713795Zilla GillmanClassical oboist.CorrectThe Academy Of Ancient MusicGabrieli PlayersThe King's Consort + +1713824Philippe FroeligerFrench classical tenor vocalistNeeds VotePFPhilippe Froeliger [France]Choeur de Chambre de NamurSequenza 9.3Les AgrémensVox Luminis + +1713846Väinö SolaJalo Wäinö SolaFinnish opera singer, tenor 8.1.1883 Helsinki - 12.10.1961 Helsinki.Needs Votehttps://fi.wikipedia.org/wiki/Wäinö_Solahttps://adp.library.ucsb.edu/names/116579SolaV. SolaV.SolaW. SolaWäino SolaWäinö Sola + +1714065Imre EenmaNeeds Votehttp://www.erso.ee/?people=imre-eenmahttps://musicbrainz.org/artist/6bad8eb9-df94-4c74-b7cb-9a361c73eae4/relationshipsImre EenmaaHortus MusicusEstonian National Symphony OrchestraSeitsmes Meel + +1714169Fred NijenhuisClassical bassistNeeds VoteFred NyenhuisConcertgebouworkestLeonhardt-ConsortConcerto Amsterdam + +1714170Jeanette Van WingerdenRecorder player.Needs VoteJ. V. WingerdenJeanette Von WingerdenJeannette Van WingerdenJeannette van WingardenJeannette van WingerdenI MusiciHesperion XXLeonhardt-ConsortBrüggen Consort + +1714171Dijck KosterAnna Marijke KosterDijck Koster (13 April 1923 - 8 April 2004) was a Durch classical cellist.Needs VoteDijk KosterDyck KosterConcertgebouworkestLeonhardt-Consort + +1714281Gunnar EklundSwedish classical violinistNeeds VoteGunner EklundSveriges Radios SymfoniorkesterStockholm Sinfonietta + +1714406Martijn Vink (2)Dutch cello playerNeeds VoteNieuw Sinfonietta AmsterdamOxalysHet Collectief + +1715635Isabel SerranoClassical violinist.Needs VoteIsabel Serrano ZanonIsabelle SerranoLes Arts FlorissantsLa Chapelle RoyaleLe Concert Des nationsEnsemble Baroque De LimogesZarabanda (4) + +1715636Jacques MaillardClassical violist.Needs VoteLes Arts FlorissantsLa Chapelle RoyaleLes Musiciens Du LouvreOrchestre Philharmonique De Radio FranceQuatuor Atlantis + +1715637Peter ButterfieldClassical tenor.CorrectLa Chapelle RoyaleThe Monteverdi Choir + +1715908Brian QuinceyBrian M. QuinceyAmerican violist. Member of Oregon Symphony since 1996.Needs Votehttp://www.orsymphony.org/bios/musicians/pp_quincey.aspxBrian M. QuincyBrian QuincySan Francisco SymphonyOregon Symphony Orchestra + +1716925Viorica UrsuleacRomanian operatic soprano vocals +✰ March 25, 1894, Cernăuți, Bucovina, Austro-Ungaria (now Cernăuți, Ukraine) +✞ October 22, 1985, Ehrwald, Tirol, Austria +Was married with [a882724].Correcthttps://ro.wikipedia.org/wiki/Viorica_Ursuleachttps://en.wikipedia.org/wiki/Viorica_UrsuleacUrsuleacV. UrsuleacViorica UrsuleachВ. УрсулякВиорика Урсуляк + +1717222Pelle HulténPer HulténSwedish self-taught jazz drummer from Borås, born 1933. + +He started in Ingemar Sambrant's ensemble on February 2, 1952 with a performance in the city's Folkets Park. The stay there lasted until January of the following year. Then it was time to learn more (the conductor thought!). An intensive period of training began and Pelle returned to the orchestras as a new musician. He then played with Lysjö's dance orchestra (mixed modern and old as the time dictated) and substituted in the popular Stig Dowers from Limmared. Then with Curt Alm in his orchestra. + +When Jean Josefson reformed his orchestra in 1954, he was offered a place there and kept it until 1962. He then moved to Stockholm, where his first engagement was with Bob Ellis' orchestra. After some luck with Amerikalinjen, he played with the Knäpp Upp orchestra under the conductor Leif Asp and together with e.g. former driller Rolf Billberg. Later also followed a period with TV celebrity Lasse Samuelsson's Swing Sing Seven. Other famous musicians like Pelle Kompat are Ove Lind, Roffe Larsson and Staffan Broms. He was a loyal guest at the popular Stampen in Stockholm. + +In 1972, swing king Benny Goodman visited Paris. Some Swedish jazz musicians — Roffe Larsson (p), Lars Erstrand (vb), Nicke Wöhrman (g), Arne Wilhelmsson (b) and Pelle Hultén (dr) — were invited to play with him at a televised charity concert. + +Use [a1717222]Needs Votehttps://no.wikipedia.org/wiki/Pelle_Hult%C3%A9nP. HultenPelle HultenPer HultenPer HulténDexter Gordon QuintetThe Ove Lind Swing GroupTotti Bergh QuintetErstrand-Lind QuartetRicke Löws FavoritorkesterSvenska Swingeliten + +1717590Stan Harris (2)Viola player +died April 1967Needs VoteCpl. Stanley HarrisSpl. Stanley HarrisStanley 'Stan' HarrisStanley HarrisThe Glenn Miller OrchestraStan Kenton And His OrchestraGlenn Miller And The Army Air Force BandThe Army Air Force BandPaul Nero & His Hi Fiddles + +1717995Alfred BoskovskyAlfred Boskovsky (9 February 1913 in Vienna, Austria - 16 July 1990 in Vienna, Austria) was an Austrian clarinetist. He was the younger brother of [a696238]. +A member of the [a754974] from 1936 to 1978.Needs VoteAlfred BoskowskyAndantino Alfred BoskovskyWiener PhilharmonikerWiener Oktett + +1717996Anton FietzAnton Fietz (1920 - 2010) was an Austrian violinist. Needs VoteWiener PhilharmonikerHeinz Sandauer OrchesterWiener OktettTonhalle-Quartett + +1718019Erich RöhnErich Röhn (16 April 1910 - 1 August 1985) was a German violinist. He was the father of [a965330] and grandfather of [a6325200].Needs VoteErich RhönErich RoehnЭрих РёнBerliner PhilharmonikerNDR SinfonieorchesterHansen-TrioHamburger Streichquartett + +1718162Julian PooreBritish trumpet player, born in Alton, Hampshire, UK in 1959.Needs VoteThe Chamber Orchestra Of EuropeApollo Chamber Orchestra + +1718320Oswald UhlClassical cellist and violist.Needs VoteOswald UhiОсвальд УльMünchener Bach-OrchesterStuttgarter SolistenHeinrich Schütz Kreis München + +1718321Willy BeckClassical hornistNeeds VoteSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-Orchester + +1718322Wilhelm OppermannClassical trumpeterCorrectMünchener Bach-Orchester + +1718323Ludwig KiblböckClassical double-bass playerCorrectMünchener Bach-Orchester + +1718325Kurt EngertClassical cellist, born 11 July 1909 in Frankfurt am Main, Germany.Needs VoteMünchener Bach-Orchester + +1718326Gustav MeyerClassical oboist and composer, born 13 September 1914 in Hamburg, Germany.Needs VoteГустав МайерSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-Orchester"In Dulci Jubilo" Ensemble + +1718491John Pritchard (2)John Hayes Pritchard, Jr.Nashville songwriter.Needs VoteJ. PritchardJ. Pritchard JrJ. Pritchard, Jr.John Pritchard, Jr. + +1718648Ronald WallerClassical bassoonist and bassoon teacher. +Former Principal Bassoon of the [a=London Symphony Orchestra] (1948-1954). He taught at the [l527847].Needs Votehttps://open.spotify.com/artist/2nyEfzpB8Tbo5D2DEfzCJHhttps://music.apple.com/au/artist/ronald-waller/503643305https://www.imdb.com/name/nm7614828/Ron WallerLondon Symphony OrchestraVirtuoso Chamber EnsembleThe Virtuoso EnsembleLondon Wind SoloistsApollo OrchestraThe London Wind QuintetLondon Symphony Orchestra Chamber EnsembleLondon Brass Solists + +1718649David Martin (23)Canadian classical violinist, and teacher. Born 2 August 1911 in Winnipet, Manitoba, Canada - Died 17 February 1982 in Norwich, Norfolk, England, UK. +He studied at the [l527847] (1929-1934). Former member of the [a=London Symphony Orchestra] (1933-1939). Leader of the [b]Philharmonic String Trio[/b] (1935-1940) and [b]Martin String Quartet[/b] (1948-1968). Founder of the [b]Martin Piano Trio[/b]. He retired from the concert stage in 1970. He taught at the Royal Academy of Music (1943-?). +He was married to [a=Florence Hooton].Correcthttps://www.thecanadianencyclopedia.ca/en/article/david-martin-emcLondon Symphony OrchestraThe Virtuoso EnsembleThe Loveridge-Martin-Hooton TrioThe Martin-hooton-Coxe TrioThe Royal Air Force OrchestraThe Philharmonic String Trio + +1718965Wally LesterOctober 5, 1941 - April 21, 2015Needs VoteLesterW. LesterWalter LesterWalter Lester + +1718979Lorand FenyvesLorand FenyvèsLorand Fenyves ( 20 February 1918 - 23 March 2004 in Zürich) was a Canadian violinist, conductor and music educator. Needs VoteL. FenyvesLorand FenyvèsL'Orchestre De La Suisse RomandeIsrael Philharmonic Orchestra + +1719039Rochelle AbramsonAmerican violinist, based in Los Angeles, USA. Died December 22, 2025 after 48 years with the LA Phil.Needs VoteRochelle S. AbramsonLos Angeles Philharmonic Orchestra + +1719483Juan A. Enguidanos OrtizJuan Antonio Enguídanos OrtízSpanish bassoon (fagot) player. On Orquesta Sinfónica de RTVE in the 70s.Needs VoteAntonio EnguídanosOrquesta Sinfónica de RTVE + +1719491Manuel Raga OrtegaSpanish violoncello (cello) player.Needs VoteManuel RagaOrquesta Sinfónica de RTVE + +1719493Vicente Cueva DíezSpanish violin player, father of [a6748271].Needs VoteVicente CuevaOrquesta Sinfónica de RTVEZarabanda (4) + +1719496Enrique Orellana LópezSpanish violin player.Needs VoteEnrique OrellanaEnrique Orellana LopezOrquesta Sinfónica de RTVE + +1719506Gernot SchmalfußClassical oboist and conductor.CorrectG. SchmalfußGernot SchmalfussSchmalfußMünchner PhilharmonikerConsortium Classicum + +1719622Oswald GattermannOswald Gattermann (13 May 1922 in Hamburg, Germany — December 2005 in Hanover, Germany) was a German violinist.Needs VoteOrchester der Bayreuther FestspieleHeutling-QuartettNiedersächsisches Staatsorchester Hannover + +1719785Bernard RobbinsAmerican violinist, died 28 November 1999 at the age of 86.Needs VoteB. RobbinsNBC Symphony OrchestraNew York PhilharmonicNational Symphony OrchestraNew York SinfoniettaThe Stuyvesant String QuartetCanadian String QuartetKreiner String Quartet + +1720197Jano LisboaPortuguese violist, born in Viana do Castelo, Portugal.Correcthttps://web.archive.org/web/20180430010517/http://janolisboa.eu/JANO_LISBOA_violist/Home.htmlhttps://www.mphil.de/orchester/musikerinnen-und-musiker/details/jano-lisboaMünchner PhilharmonikerMünchener KammerorchesterQuatuor Benaïm + +1720856Anita BoyerAnita Blanch Boyer DukoffAmerican vocalist in the swing era. +Born October 25, 1915, in Carmi, Illinois, USA. +Died March 17, 1985, South Miami, Florida, USA. +Married to bandleader [a5562397] (1934-1941). +Her second husband was [a1858673]. +Boyer was a staple on the 1940s swing scene, working with a number of name bands including Dick Barrie, Tommy Dorsey, Artie Shaw, Glen Gary and others.Needs Votehttps://bandchirps.com/artist/anita-boyerhttps://en.wikipedia.org/wiki/Anita_Boyerhttps://adp.library.ucsb.edu/names/109811BoyerTommy Dorsey And His OrchestraArtie Shaw And His OrchestraLeo Reisman And His OrchestraDick Barrie And His OrchestraThe Anita Boyer Singers + +1721010Jeremy BarlowJeremy Barlow specializes in English popular music and English dance music from 1550-1750, as a performer, writer and lecturer. His group the Broadside Band has performed at major venues and festivals in England, Scotland, France, Austria, Germany and Sweden and has released many recordings, including the Edison Award winning complete "Beggar's Opera" featuring Bob Hoskins and Sarah Walker, and best-selling "Songs and Dances from Shakespeare".Needs Votehttp://www.broadsideband.co.uk/J. BarlowJ. BarlowThe City WaitesThe Broadside BandMartin Best ConsortMartin Best Mediaeval EnsembleSneak's Noyse + +1721227Antonio BarberaClassical percussionist.CorrectHespèrion XX + +1721312Werner SattelClassical viola playerNeeds VoteConsortium Musicum (2) + +1721631Irvin RochlinJazz pianist, born in Salem, Ohio on April 14, 1926. Died April 12, 2020.Needs VoteI. RochlinIrv "Craig" RochlinIrv RochlinRochlinDexter Gordon QuartetIrvin Rochlin TrioHarry Verbeke Quartet + +1721687Patrick Craig (3)Classical countertenor / alto vocalist and conductor. +From 1992 to 1994, he trained at the Royal College of Music with [a833879]. Since 1995, he sings at St Paul's Cathedral in London. In 1997, he joined the renaissance sacred music consort, The Tallis Scholars. He is also a member of The Cardinall's Musick and participated in the group's project to record the entire Latin Sacred Music of [a765352]. He also directs his all-female professional choir, Aurora Nova, who regularly provides the music for Sunday worship at St Paul's Cathedral.Correcthttp://www.lacock.org/html/body_patrick_craig.htmlhttps://www.hyperion-records.co.uk/a.asp?a=A1450https://www.bach-cantatas.com/Bio/Craig-Patrick.htmGabrieli ConsortMagnificatThe Cambridge SingersThe Tallis ScholarsPolyphonySt. Paul's Cathedral ChoirThe Cardinall's MusickChapelle Du Roi + +1721723Martin T:son EngstroemMartin T:son EngströmBorn in Stockholm, Sweden in 1953 where he received his schooling and a degree in Music History from the University of Stockholm. His father was the sculptor Torolf Engström and mother Inge Rosenfeld-Engström. +He began early his career as organizer of concerts by creating his own series of Sunday afternoon concerts for young Swedish musicians at the National Museum in Stockholm. This series became the leading window for young Swedish talent through the 1970s. Still a teenager he also arranged major concerts in Stockholm for Dietrich Fischer-Dieskau, Wolfgang Sawallisch, Antal Dorati and Staffan Scheja. +1972-1973 he worked for one year at the Foreign Division of Ibbs & Tillett artists’ management in London mainly dealing with British artists performing abroad. Here he worked a.o. with John Ogdon, Shura Cherkassky and many UK orchestras. +In 1975 Martin Engstroem moved to Paris to become partner in the artists management company “Opéra et Concert”. During the 12 years he worked with the agency. He worked intimately with many major artists such as Karl Böhm, Birgit Nilsson, Jessye Norman, Lucia Popp, Renato Bruson and Leonard Bernstein. His prime interest was to develop new talent and many of the young musicians he represented went on to major careers such as Barbara Hendricks, Neil Shicoff, Han-Na Chang and Giuseppe Sinopoli. During many years he enjoyed a close collaboration with Herbert von Karajan. +After having moved to Switzerland in 1987 with his wife, soprano Barbara Hendricks and their two children, he worked for a period of time as consultant to EMI France, the Ludwigsburger Schlossfestspiele and the Paris Opera (co-organizer of the opening of l’Opéra de Paris/ Bastille in 1992 with Leonard Bernstein, Michael Tilson Thomas and Robert Wilson). Martin Engstroem was instrumental in the choice of Myung-Whun Chung as Artistic Director of l’Opéra de Bastille. +In 1991 he started to put together what in 1994 became the Verbier Festival & Academy for which he still is the Artistic and Executive Director. The Verbier Festival has over the years developed into one of the most innovative performing arts communities in Europe. In 2000, Martin Engstroem, together with the Swiss bank UBS developed what became one of the most attractive training orchestras in the world, the UBS Verbier Festival Orchestra, with James Levine as its Music Director. Charles Dutoit became Music Director of the Verbier Festival Orchestra in 2009 and Valery Gergiev took over that position in 2018. +2005 saw the beginning of the UBS Verbier Festival Chamber Orchestra which immediately enjoyed a close association with Maxim Vengerov through major tours and a highly successful EMI recording of Mozart Violin Concertos. In 2008 Gabor Takacs-Nagy was named Music Director of the Verbier Festival Chamber Orchestra.Needs VoteMartin EngstroemMartin Engström + +1722294Benjamin BerliozFrench double bassist.Needs VoteOrchestre De Paris + +1722486Christine RagazChristine Ragaz is a Swiss violinist and violin teacher.Needs VoteBerner StreichquartettCamerata BernBerner Symphonieorchester + +1722520Hanspeter WeberGerman classical oboist (12 June 1923 - 22 November 2012). He was married to [a3064429].Needs VoteH.P. WeberHannspeter WeberHans Peter WeberHans Peter-WeberHans-Peter WeberRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterBachcollegium StuttgartStuttgarter SolistenSüdwestdeutsches Kammerorchester + +1722790Natalie DessayNathalie DessaixFrench coloratura soprano, born on 19 April 1965 in Lyon, France.Needs Votehttps://web.archive.org/web/20160109030852/http://www.natalie-dessay.com/https://en.wikipedia.org/wiki/Natalie_Dessayhttps://www.facebook.com/NatalieDessayhttps://www.bach-cantatas.com/Bio/Dessay-Natalie.htmDessayN. DessayNathalie Dessayナタリー・デセイ나탈리 드세이 + +1722795Annick MassisFrench operatic soprano, born 1960Needs Votehttp://www.annickmassis.com/https://en.wikipedia.org/wiki/Annick_MassisMassis + +1723327Luis Otavio SantosBrazilian violinist and conductorNeeds VoteL. Otavio SantosLa Petite BandeRicercar ConsortLe Concert FrançaisLes Muffatti + +1724071Gwydion BrookeBritish bassoonist, born 16 February 1912, died 27 March 2005.Needs VoteBrookeGwyd BrookeGwydion BrooksRoyal Philharmonic OrchestraThe London Wind Quintet + +1724421Peter BuckokeDouble bass and viol player.Needs VoteBuckokeThe SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Classical PlayersTaverner PlayersRaglan Baroque PlayersThe King's ConsortThe Schubert Ensemble Of LondonLondon Handel OrchestraThe Orchestra Of St. John'sTheatre Of Early MusicLondon Handel PlayersThe Friends Of Apollo + +1724735Wu HanWu Han (吴菡)Taiwanese-American pianist, born February 19, 1959 in Taipei. +She frequently collaborates with American cellist [a848542], whom she married in 1985. The two are co-founders of annual chamber music festival Music@Menlo.Needs Votehttp://en.wikipedia.org/wiki/Wu_Han_(pianist)http://www.davidfinckelandwuhan.com/Site/home.html + +1725001Julius KrohnJulius Leopold Fredrik KrohnFinnish folklorist, professor, poet, translator and journalist. +Born April 19, 1835 in Viipuri. +Died August 28, 1888 in Viipuri. + +Father of [a2940926]. Needs Votehttps://en.m.wikipedia.org/wiki/Julius_KrohnJ. KrohnJ.KrohnKrohnSuonio + +1725072Belcea QuartetString quartet based in Great Britain, founded at the Royal College of Music in London in 1994.Needs Votehttps://www.belceaquartet.com/https://en.wikipedia.org/wiki/Belcea_QuartetBelcea QuartettBelcea-QuartetMembers of the Belcea QuartetQuatuor BelceaLaura SamuelCorina BelceaAlasdair TaitKrzysztof ChorzelskiAntoine LederlinAxel SchacherMatthew Talty + +1725073Antoine LederlinFrench classical Cellist, born in 1975.Needs VoteSinfonieorchester BaselBelcea Quartet + +1725471José Andrés De PradaJosé Andrés De Prada DelgadoJosé Andrés de Prada (1895 - 1968) was an Spanish writer and librettist for zarzuelas (comic folk operas), as "La Bien Amada" (music by [a=José Padilla Sánchez], 1924), with its famous song "Valencia".Correcthttp://es.wikipedia.org/wiki/Jose_Andres_de_PradaA. De La PradaA. De PradaA. PradaA. de PradaAmancio PradaDe La PradaDe PradaDe la PradaDelgadoJ A PradaJ. A. De PradaJ. A. PradaJ. A. de PradaJ. De PradaJ. de PradaJ.-A. de PradaJ.A. De PradaJ.A. PradaJ.A. de PradaJose A. De PradaJose Andrés Prada DelgadoJose Prad A DelgadoJosé A. De PradaJosé Andre Delgado PradaJosé Andrés De Prada DelgadoJosé PradaJosé Prada DelgardoPiada AmancioPradaProda + +1726199R. Douglas WrightAmerican trombone player and The Minnesota Orchestra’s principal trombone since 1995.Correcthttp://www.minnesotaorchestra.org/about/who-we-are/artists-and-performers/orchestra-musicians/333-trombone/736-r-douglas-wrightDoug WrightDouglas WrightMinnesota Orchestra + +1726982Malcolm ProudIrish classical harpsichordist and organist, born in Dublin. +He studied with [a845763]. He is currently a lecturer in music at the Waterford Institute of Technology as well as organist and choirmaster at St. Canice's Cathedral, Kilkenny.Needs Votehttp://www.malcolmproud.iehttp://www.bach-cantatas.com/Bio/Proud-Malcolm.htmThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentThe Chandos Baroque PlayersCamerata KilkennyIrish Baroque Orchestra + +1727454Shmuel HershkoTuba player.Needs VoteIsrael Philharmonic Orchestra + +1728063Sergio AzzoliniItalian Classical bassoonist was Born in Bolzano in 1967 and studied under Romano Santi at the Claudio Monteverdi Conservatory in his hometown before continuing his studies under Klaus Thunemann at the State Academy Of Music in Hanover. He won renowned competitions such as the Carl Maria von Weber Competition and the ARD Competition. Azzolini held a professorship at the State Academy of Music and the Performing Arts in Stuttgart and has taught bassoon and chamber music at the Basel Academy of Music since 1998.Needs Votehttps://en.wikipedia.org/wiki/Sergio_AzzoliniAzzoliniS. AzzoliniEnsemble Baroque De LimogesLa StagioneCollegium 1704L'Aura Soave CremonaParnassi MusiciBläserensemble Sabine MeyerMa'alot QuintettL'Onda ArmonicaHimmelpfortgrundTrio Maurice Bourgue + +1728557Frederick TinsleyAmerican double bassist, died 19 September 2016 at the age of 76.Needs VoteFred TinsleyLos Angeles Philharmonic Orchestra + +1728560Mark KashperViolinist.Needs VoteLos Angeles Philharmonic Orchestra + +1728966Lerch IstvánIstván LerchHungarian musician, singer, songwriterNeeds Votehttp://users.atw.hu/lerch/lerch.phphttps://www.facebook.com/lerch.istvanhttps://hu.wikipedia.org/wiki/Lerch_IstvánI LerchI. LerchIstvan LerchIstvan LerckIstván LerchL. LerchLehr IstvánLerchLerch I.Lerch IstvanV'Moto RockV '73 + +1729415Rakhi SinghViolinist, collaborator, composer & music director based between Manchester and London, England.Needs Votehttps://rakhisinghmusic.co.ukhttps://rakhisingh.bandcamp.comhttps://twitter.com/raxsterviolinR.SinghRahki SinghRakhvinder SinghUrban Soul OrchestraRoyal Liverpool Philharmonic OrchestraThe Manchester CamerataBarbirolli QuartetManchester Collective + +1729479Heinrich KollAustrian violist, born 1951 in Vienna, Austria.Needs VoteHeinz Kollハインツ・コウルOrchester Der Wiener StaatsoperWiener PhilharmonikerClemencic ConsortMusikvereinsquartettKüchl-QuartettWiener Ring Ensemble + +1730115Ulrike NeukammClassical oboist.Needs VoteUlrique NeukamLes Arts FlorissantsHannoversche HofkapelleLa Stravaganza KölnCollegium 1704 + +1730122Katharina Huche-KohnClassical violinist.Needs VoteKatharina HucheCapella Agostino SteffaniLa StagioneHannoversche HofkapelleHamburger RatsmusikDas Kleine KonzertLa Ricordanza + +1730266Frederick EdelenAmerican classical cellist.CorrectFred EdelenFred EdelinConcertgebouworkestHouston Symphony OrchestraSan Antonio Symphony OrchestraPhilharmonia Baroque Orchestra + +1730268Lisa GrodinClassical violinist.Needs VoteLes Arts FlorissantsChanticleer SinfoniaPhilharmonia Baroque OrchestraVoices of MusicEl Mundo (2) + +1730271Elizabeth BlumenstockClassical violinist.Needs VoteElisabeth BlumenstockChanticleer SinfoniaPhilharmonia Baroque OrchestraTafelmusik Baroque OrchestraIl Complesso BaroccoArcadian AcademyMusica PacificaFestspielorchester GöttingenSarasa EnsembleBoston Early Music Festival OrchestraAmerican Bach Soloists + +1730849Chris MaeneChristian MaeneBelgian keyboard instruments builder, restorer and tuner, born in 1953. Also see the company [l=Maene].Needs Votehttp://www.chrismaene.beChris Maene, Ruiselde Belgium, 2008Chris Maene, Ruiselde Belgium, 2021Christian Maene + +1731588David FilermanAmerican cellist.Needs VoteDave FilermanChicago Symphony OrchestraThe Wrecking Crew (6) + +1731770Ulrich PförtschHans-Ulrich PförtschGerman trombonist, born 1963 in Munich, Germany.Needs VoteUli PförtschUlrichUlrich PfrötschStaatsorchester StuttgartBayerisches StaatsorchesterMünchner RundfunkorchesterMünchner Posaunen QuartettBläserfamilie Pförtsch Holzkirchen + +1731772Volker HensiekGerman trombonist.Needs VoteStaatsorchester StuttgartBamberger SymphonikerMünchner Posaunen Quartett + +1731934Hans KästnerGerman classical trombonist (born September 14, 1922 in Reinhardtsdorf, Germany; died September 26, 2015).Needs Votehttp://www.ulfig.eu/hans-kaestner.phpHannes KästnerKästnerStaatskapelle DresdenDie BlasewitzerCappella Sagittariana Dresden + +1732175Alvin RaglinNeeds VoteAl RaglinAlvin "Junior" RaglinAlvin 'Junior' RaglinAlvin (Junior) RaglinAlvin Junior RaglinAlvin RaglanAlvin Raglin, Jr.Alvin «Junior» RaglinJunior RaglinDuke Ellington And His OrchestraRex Stewart's Big EightEdmond Hall's SwingtetAl Hibbler And His Orchestra + +1732723Marjolaine CambonFrench classical Cello & Bass Violin instrumentalist.Needs VoteLes Talens LyriquesEnsemble StradivariaLe Poème HarmoniqueEnsemble Les SurprisesLes Épopées + +1732872Christian EllegaardDanish violinist.Needs VoteChristian EllegårdCristian EllegaardDR RadioUnderholdningsOrkestretDR SymfoniOrkestretLiveStringsMichael Falch & Vildfugle + +1732873Patricia Mia AndersenClassical violinist.Needs VoteDR SymfoniOrkestret + +1732912Lucy Robinson (2)known mostly for classical music liner notesNeeds VoteDr Lucy Robinson + +1733971Timothy GillBritish classical cellist.Needs Votehttps://londonsinfonietta.org.uk/players/tim-gillTim GillRoyal Philharmonic OrchestraLondon SinfoniettaChagall TrioThe Valve Bone Woe EnsembleThe Pale Blue Orchestra + +1734187Petra SauerwaldGerman saxophone and clarinet player, music educator in BerlinNeeds Votehttps://landesmusikakademie-berlin.de/ueber-uns/dozentin/sauerwald-petra/https://musiklehrer-finder.de/Musiklehrer/67/Petra+SauerwaldDeutsches Symphonie-Orchester BerlinGewandhausorchester LeipzigRundfunk-Sinfonieorchester BerlinMagdeburgische PhilharmonieOrchester Der Komischen Oper BerlinNeubrandenburger PhilharmonieMDR SinfonieorchesterBerliner Saxophon Ensemble + +1735690Wayne RapierAmerican oboist, born 12 October 1930 in Tyler, Texas and died 17 October 2005 in Duxbury, Massachusetts.Needs VoteThe Philadelphia OrchestraBoston Symphony OrchestraBaltimore Symphony OrchestraIndianapolis Symphony OrchestraThe Kansas City Symphony + +1736262Martin ChalifourCanadian violinist, born 15 June 1961 in Montreal, Canada.CorrectThe Cleveland OrchestraAtlanta Symphony OrchestraLos Angeles Philharmonic Orchestra + +1736663Kamil ŁosiewiczPolish double bassist, bassist and violinist, born in 1977CorrectTonhalle-Orchester Zürich + +1736679Nikolaus GädekeGerman classical cellist and viol playerNeeds VoteErnst-Nikolaus GädekeNeues Bachisches Collegium Musicum LeipzigMagdeburgische PhilharmonieAcantus String Quartet + +1736680Gudrun JahnGerman flutistNeeds VoteVirtuosi SaxoniaeRobert-Schumann-Philharmonie + +1737206Carlo RavelliClassical oboist.Needs Votehttp://vgkco.nl/index.php?functiontype=1&functionid=14&firstname=&lastname=&startdate=&enddate=&page=portrettengallerijdetail&offset=&personId=190C. RavelliNederlands Blazers EnsembleConcertgebouworkestEbony Band + +1738255Jerzy CembrzyńskiPolish double bassistNeeds VoteJ. CembrzyńskiOrkiestra Symfoniczna Filharmonii NarodowejWarsaw String Ensemble + +1738506Tapio LahtinenTapio Kullervo LahtinenNeeds VoteK. LahtinenLahtinenLahtinen TapioT. K. LahtinenT. LahtinenT. LehtinenT.K.LahtinenT.LahtinenTapio "Kullervo" LahtinenTapio Kullervo LahtinenTapio Kullervo LehtinenTapio LehtinenTapio ”Kullervo” LahtinenKullervoJuhani SälöIlpo Kallio (2)Pirkko MäkiPentti RaunioHilma Järvi + +1738508Vilhelm Sefve-SvenssonSwedish elementary school teacher and choirmaster, born March 11, 1849 in Kroppåkra, Munka-Ljungby parish in Kristianstad County, died June 29, 1928 in Norrköping. + +He is most famous for the Christmas song Tomtarnas Julnatt (Midnatt Råder / Tipp Tapp).Needs Votehttps://sv.wikipedia.org/wiki/Vilhelm_Sefve-SvenssonCesveS. SefveSefveSefve-SvenssonSewfeV SefveV. SefveV. Sefve-SvenssonV.SefveVilh. SefreVilh. SefveVilh. SihvoVilh.SefreVilhelm SefveVille SefveW Sefve - SvenssonW, SefweW. SefveW. SefweW. SvenssonW.SefveW.SefweWilh. SefveWilh. SefweWilhelm SefveWilhelm SefweWilhelm, Sefwe + +1738775Frank EpsteinClassical percussionist, born in the Netherlands, based in the USA since 1952, he teaches at the New England Conservatory. He founded the contemporary classical music ensemble [a=Collage New Music] in 1972.Needs Votehttp://www.frankepstein.com/F. EpsteinBoston Symphony OrchestraSan Antonio Symphony OrchestraCollage New Music + +1738919Bret GowensCredited as clarinetist.Needs VoteBrad GowensOriginal Dixieland Jazz Band + +1739304Fulton AllenFulton AllenReal name of the blues artist generally known as Blind Boy Fuller.CorrectAlan FultonAllenAllen FultonBlind Boy FullerF AllenF. AllanF. AllenFullerFuller AllenFultan/AllanBlind Boy FullerBrother George And His Sanctified Singers + +1739927André de RidderGerman conductor.Needs Votehttp://www.andrederidder.com/A. De RidderA. de RidderAndre De RidderAndre de RidderAndré DeritterKonzerthaus Kammerorchester BerlinAfrica ExpressStargaze (4) + +1740170Gonzalo AcostaViolinistNeeds VoteBournemouth Sinfonietta + +1740171Matthias WittClassical violinist.Needs VoteBournemouth SinfoniettaLondon Musici + +1740172Julian TraffordViolinist.Needs VoteBBC Symphony OrchestraBournemouth Sinfonietta + +1740173Brian Johnston (2)ViolinistNeeds VoteBournemouth Sinfonietta + +1740181Peter KaneClassical hornistNeeds VoteBournemouth Sinfonietta + +1740182Nicholas CarpenterClarinetistNeeds VoteNick CarpenterLondon Philharmonic OrchestraBournemouth SinfoniettaMichael Thompson Wind Ensemble + +1740183Howard NelsonFlute playerNeeds VoteMr Howard NelsonBournemouth SinfoniettaThe Palm Court Theatre Orchestra + +1740184Suzanne KinghamViolinistNeeds VoteBournemouth Sinfonietta + +1740185Patrick Milne (2)Patrick F. C. MilneBritish classical bassoonist. Died 4 June 2007 in Bournemouth, England, UK. +Formerly with the [a=London Symphony Orchestra] (1968-1977), [a=Northern Sinfonia], and latterly Principal Bassoon with the [a=Bournemouth Sinfonietta].Needs Votehttps://www.bournemouthecho.co.uk/news/3414419.milne-patrick/London Symphony OrchestraEnglish Chamber OrchestraBournemouth SinfoniettaNorthern SinfoniaThe Wind Virtuosi Of England + +1740186John EwartBassoon player.Needs VoteDianne HoskingBournemouth Sinfonietta + +1740187Christopher GrayerViola instrumentalistNeeds VoteChris GrayerBournemouth Sinfonietta + +1740188Youcheng SuViolinistNeeds VoteBournemouth Sinfonietta + +1740189Nicholas OrmrodBritish percussionist, born in 1959 in Neath, Glamorgan, UK.Needs VoteNick OrmrodBournemouth SinfoniettaLondon Classical Players"Oliver!" 1994 London Palladium Cast, Orchestra + +1740190Philip James (4)Viola instrumentalistNeeds VoteBournemouth Sinfonietta + +1740191Hugh Miller (2)Viola instrumentalistNeeds VoteBournemouth Sinfonietta + +1740192James Hunt (4)Classical oboistNeeds VoteBournemouth Sinfonietta + +1740193Andrew KnightsClassical oboistNeeds VoteBournemouth Sinfonietta + +1740194David Evans (11)trombonistNeeds VoteBournemouth Sinfonietta + +1740195Gunnar WestrupViola instrumentalistNeeds VoteBournemouth Sinfonietta + +1740196Brian HowellsViolinistNeeds VoteBournemouth Sinfonietta + +1740198Andrew Baker (2)Classical double-bass instrumentalistNeeds VoteBournemouth Sinfonietta + +1740199Michael GarbuttCellistNeeds VoteMichael GarbutBournemouth Sinfonietta + +1740200Christopher MagnusClassical cellist.Needs VoteBournemouth Symphony Orchestra + +1740201Graeme Davis (2)ViolinistNeeds VoteBournemouth Sinfonietta + +1740202Julia BarkerClassical violinistNeeds VoteBournemouth SinfoniettaThe Academy Of St. Martin-in-the-Fields + +1740203Keith Wood (4)Classic double bass player.Needs VoteBournemouth Symphony Orchestra + +1740427Wilfried StaufenbielGerman cellist, hurdy gurdy player and bass vocalist, born in 1948 in Wurzen, Saxonia.Needs Votehttps://www.wilfried-staufenbiel.de/ws.htmlRundfunkchor BerlinBerliner Improvisations-QuartettKeller-Schulze-WerkstattorchesterBerliner Improvisations TrioMusica Mensurata + +1740888Giovanni Maria TrabaciGiovanni Maria Trabaci (ca. 1575 – 31 December 1647) was an Italian composer and organist. He was a prolific composer, with some 300 surviving works preserved in more than 10 publications; he was especially important for his keyboard music.Correcthttp://en.wikipedia.org/wiki/Giovanni_Maria_TrabaciG. M. TrabaciG.-M. TrabaciG.M. TrabachiG.M. TrabaciGiov. Maria TrabaciGiovan Maria TrabaciGiovanni M. TrabacciGiovanni M. TrabaciGiovanni Maria TrabacciGiovanni TrabaciGiovanni-Maria TrabaciTrabacciTrabachiTrabaci + +1741729Marek BojarskiClassical violinistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejVarsovia String QuartetConcerto AvennaI Musici Di Varsavia + +1741848Dobrochna BanaszkiewiczPolish classical violinist & liner notes translatorNeeds VoteDebrochna BanaskiewiczOrquesta De La Comunidad De MadridOrquesta Sinfónica de RTVECuarteto Alexeeva + +1741866Delphine GrimbertClassical string instrumentalistNeeds VoteOrchestre Des Champs ElyséesLes Talens LyriquesLe Concert de la Loge + +1741964Dick 'Dent' EcklesCredited as jazz flute and saxophone player.Needs VoteDean EcklesDent EckelsDent EcklesDick EckelsDick EcklesLouis Armstrong And His OrchestraGordon Jenkins And His Orchestra + +1742318Ludwig August LebrunGerman oboist and composer (born May 2nd 1752, in Mannheim, Germany - died December 16th 1790, in Berlin, Germany). +Correcthttp://en.wikipedia.org/wiki/Ludwig_August_LebrunL. A. LebrunL.A. LebrunL.A.LebrunLebrunLudwig A. LebrunLudwig August Le Brun + +1743106Ingeborg StitzIngeborg Stitz is an Austrian classical violinist.Needs VoteCamerata Academica SalzburgI Solisti Veneti + +1743114Pietro SerafinPietro Serafin is an Italian classical cellist and cellor teacher.Needs VoteOrchestra D'Archi ItalianaOrchestra Di Padova E Del VenetoI Solisti Veneti + +1743263Alexander HilsbergClassical violinist and conductor, born April 24, 1900 in Warsaw, Poland and died August 10, 1961 in Camden, Maine, United States. He was the concertmaster of [url=http://www.discogs.com/artist/27519-Philadelphia-Orchestra-The]The Philadelphia Orchestra[/url] from 1935 to 1951.Needs Votehttps://adp.library.ucsb.edu/names/110525A. HilsbergThe Philadelphia Orchestra + +1743566Philip FowkeBritish pianist, born 28 June 1950.Needs VoteP FowkePhilip Fowke (Piano)The London Piano Quartet + +1743574Waldemar DölingGerman harpsichordist (* 1933).Needs VoteW. DölingWaldemar DoelingWaldemar DolingWaldemar DörlingBerliner Philharmoniker + +1744070The Monks And Choirboys Of Downside AbbeyNeeds Major ChangesDownside AbbeyMonhes y Coro De Niños De Downside AbbeyMonjes Y Niños Abadia DownsideMonks & Choir Of Downside AbbeyMonks And Choir Of Downside AbbeyMonks And Choirboys Of Downside AbbeyMonks Of The Downside AbbeyMonks of Downside AbbeyThe Monks & Choir Of Downside AbbeyThe Monks & Choirboys Of Downside AbbeyThe Monks Of Downside Abbey + +1744258Sal SpicolaAmerican jazz saxophonist.Needs VoteS. SpicolaSal SpicoleSal SpicollaSalvatore SpicolaWoody Herman And His OrchestraThe Woody Herman Big BandThe Michael Treni Big Band + +1744860Otto SteinkopfGerman classical dulcian, bassoon and cornett player, teacher and instrument maker (* 28 June 1904 in Stolberg, German Empire; † 17 February 1980 in Celle, Germany).Needs Votehttps://de.wikipedia.org/wiki/Otto_Steinkopfhttps://www.deutsche-digitale-bibliothek.de/person/gnd/134950119https://www.moeck.com/uploads/tx_moecktables/1977-3.pdf_S._361-364.pdfO. SteinkopfSteinkopfBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinGewandhausorchester LeipzigCollegium AureumCappella ColoniensisArchiv Produktion Instrumental Ensemble + +1745238Staffan BergströmSwedish cellist.Needs VoteStockholm Session StringsSveriges Radios SymfoniorkesterSnykoKungliga Hovkapellet + +1746288Lassi UtsjokiLassi Berhard Konstantin UtsjokiNeeds VoteL. UtsjokiLasse Utsjoki + +1746289Anu TuulosNeeds Major ChangesA. TuulosTuulosAnnuliAune HaarlaAune Ala-Tuuhonen + +1747992Meyer "Mike" RubinMeyer RubinAmerican jazz bassist and composer, active late 1930's to the early 1960's. +Mr. Rubin played with many famous musicians & singers including Peggy Lee, Nancy Wilson, Ella Mae Morse, Bing Crosby, Glenn Miller, Frank Sinatra, Elvis Presley, John Williams, and Doc Severinsen. He acted as musician's contractor for 20th Century Fox Films and Television from 1948 through the 1980's, being involved in organizing musicians on countless productions. +Born: December 01, 1912 in Hartford, Connecticut. +Died: November 23, 2001 in Encino, California.Needs Votehttps://www.findagrave.com/memorial/6005608Meyer 'Mike' RubinMeyer (Mike) RubinMeyer RubinMike "Myer" RubinMike (Meyer) RubinMike RubinMyer RubinRubinRubin MeyerGordon Jenkins And His OrchestraTwentieth Century-Fox Studio OrchestraGlen Gray & The Casa Loma OrchestraDom Frontiere SextetThe Chicagoans (2)Dom Frontiere OctetGeorge Barnes SextetMel Henke Group + +1748680Klaus Fischer-DieskauGerman church musician, chorus master, producer and engineer for [l=Deutsche Grammophon] (* 02 January 1921 in Berlin, German Empire; † 19 December 1994 in Berlin, Germany.) +He was the brother of [a833168].Needs Votehttps://de.wikipedia.org/wiki/Klaus_Fischer-DieskauKl. Fischer-Dieskau + +1748741Georges MoleuxGeorges Edmond MoleuxAmerican double bassist, clarinetist and conductor, born 4 August 1900 in France and died 7 December 1966 in the United States.CorrectGeorges E. MoleuxMoleuxBoston Symphony OrchestraOrchestre National De L'Opéra De Monte-Carlo + +1748805Gennadi PodelskiПодельский Геннадий ВячеславовичEstonian composer, pianist and group leader. Born in Leningrad (now Saint Petersburg), USSR, he graduated from Tallinn Conservatory in 1954 with a major in composition under Prof. Eugene Kapp. Podelski worked with the Estonian Philharmonic Orchestra as their conductor-in-residence (1946-48) and, later, as their recital pianist (1948-57), during which time he performed in concert with many of Estonia's leading singers. Podelski was also the artistic leader of the vocal-instrumental group known as 'Laine' from 1960 to 1970. + +Although the major part of his output represents popular and folk music (well over 500-published songs), Podelski also composed serious music (chamber, choral and orchestral) as well as that for stage plays, television and feature films. + +Also known as Gennady Podelsky, Геннадий Подэльский or Геннадий Подельский. Needs Votehttp://et.wikipedia.org/wiki/Gennadi_Podelskihttp://ru.wikipedia.org/wiki/%D0%9F%D0%BE%D0%B4%D1%8D%D0%BB%D1%8C%D1%81%D0%BA%D0%B8%D0%B9,_%D0%93%D0%B5%D0%BD%D0%BD%D0%B0%D0%B4%D0%B8%D0%B9_%D0%92%D1%8F%D1%87%D0%B5%D1%81%D0%BB%D0%B0%D0%B2%D0%BE%D0%B2%D0%B8%D1%87http://www.imdb.com/name/nm0687943/C. PodelskiG. PodelskiG. PodelskisG. PodelskyG. PodeļskisG.PodelskiGennadi PodelskijPodelskiГ. ПаделскиГ. ПодельскиГ. ПодельскийГ. ПодельськийГ. ПодэльскийГ. ПодєльськийГ.ПодельскийГеннадий ПодэльскийП. ПодельскийLaine (2) + +1749594Leopoldo FedericoArgentine bandoneon player, arranger, director and composer, born 12 January 1927 in in Buenos Aires, Argentina and died 28 December 2014 in Buenos Aires, Argentina.Needs VoteFedericoL. FedericoL. FredericoLeopold FedericoLeopoldo FedencoLeopoldo Federico Y Su Gran OrquestaLeopoldo Federico Y Su Gran Orquesta TipicaLeopoldo Federico Y Su OrquestaLeopoldo Federico Y Su Orquesta TipicaLeopoldo Federico y OrquestaTango-Orkesteri Leopoldo Federicoレオポルド・フェデリコJuan Carlos Cobián Y Su Orquesta TípicaHoracio Salgán Y Su Orquesta TípicaOscar Cardozo Ocampo Y Su OrquestaLeopoldo Federico Y Cuarteto De Bandoneones Y ContrabajoEl Cuarteto San TelmoTrio Federico - BerlingieriOcteto Buenos AiresLeopoldo Federico Y Su Orquesta TípicaLeopoldo Federico TrioAstor Piazzolla Y Su Orquesta TípicaMariano Mores Y Su Orquesta TípicaCarlos Di Sarli Y Su Orquesta TípicaAlfredo Gobbi Y Su Orquesta TípicaOsmar Maderna Y Su Orquesta TipicaCuarteto Palais De GlaceVictor D'Amario Y Su Orquesta TípicaHéctor Stamponi Y Su Orquesta TípicaOrquesta Osvaldo RequenaOcteto TibidaboSeleccion Nacional De TangoOsvaldo Requena Y Su Conjunto + +1750013Jean TurnerAmerican vocalist from San Francisco who sang with [a=Stan Kenton And His Orchestra] in the early 1960s. After graduation, she had toured Great Britain and the continent for six weeks with [a=Herb Jeffries]. After returning to the United States in 1956, she had a two-week engagement at The Flame Show Bar in Detroit which launched her solo career. + +Born: 2 September 1936 in San Francisco, California, USANeeds VoteTurnerStan Kenton And His Orchestra + +1750093Dunja BontekClassical violinistNeeds VoteD. BontekLondon Symphony OrchestraZagrebačka Filharmonija + +1750857Jesse Brown (4)Jesse Miller, Jr. (Houston, August 16, 1921 – January 24, 1950) was an American jazz trumpeter and bandleader.Needs Votehttps://en.wikipedia.org/wiki/Jesse_Miller_(musician)Jessie BrownLouis Armstrong And His Orchestra + +1751208Luca BenucciItalian classical horn player, active since 1987.CorrectOrchestra Del Maggio Musicale Fiorentino + +1751421Johnny Parker (5)US rhythm and blues bassist, composer + +Do NOT confuse with the sax player [a=Johnny Parker (12)] who collaborated with similar artists.Needs Votehttps://www.wirz.de/music/pagecleo.htmJohn Lee ParkerJohnny Otis And His Orchestra + +1751506Gertjan LootDutch trumpet playerNeeds Votehttps://www.linkedin.com/in/gertjan-loot-605372a3Gert Jan LootGert-Jan LootGertJan LootNieuw Sinfonietta AmsterdamResidentie OrkestOrkest De VolhardingSymphonic BrassNederlands Philharmonisch Orkest (2) + +1751552George Lewis' Ragtime BandNeeds Major ChangesGeorge Lewis & His Ragtime BandGeorge Lewis (Avec Sa Ragtime BandGeorge Lewis And His BandGeorge Lewis And His Jazz BandGeorge Lewis And His Jazz MenGeorge Lewis And His New Orleans BandGeorge Lewis And His New Orleans Jazz BandGeorge Lewis And His New Orleans JazzbandGeorge Lewis And His New Orleans Ragtime BandGeorge Lewis And His New Orleans Ragtime Jazz BandGeorge Lewis And His New Orleans Rhythm BoysGeorge Lewis And His Rag Time BandGeorge Lewis And His Ragtime BandGeorge Lewis And His Ragtime Band A.O.George Lewis And His Rhythm BoysGeorge Lewis Jazz BandGeorge Lewis JazzbandGeorge Lewis New Orleans Jazz BandGeorge Lewis New Orleans Ragtime BandGeorge Lewis Ragtime BandGeorge Lewis Ragtime Jazz BandGeorge Lewis' Jazz BandGeorge Lewis' New Orleans Jazz BandGeorge Lewis' New Orleans Rag Time BandGeorge Lewis' New Orleans Ragtime BandGeorge Lewis' Ragtime Jazz BandGeorge Lewis's Jazz BandGeorge Lewis's Rhythm BoysRagtime BandThe George Lewis Authentic New Orleans Ragtime BandThe George Lewis Ragtime BandThe George Lewis Ragtime Jazz Band Of New OrleansThe George Lewis Ragtime Jazzband Of New Orleansジョージ・ルイス・バンドGeorge Lewis (2)Alton PurnellLawrence MarreroJim Robinson (2)Alcide (Slow Drag) PavageauJoe WatkinsAvery "Kid" Howard + +1751857Jiří MalátJiří MalátCzech conductor.Correcthttp://www.vogtland-philharmonie.de/english/dirigent-jiri-malat.htmJ. MalátJiri MalatJiri MalátJirí Malát + +1752174Zygmunt NoskowskiBorn May 2, 1846 in Warszawa, died July 23, 1909 there. Polish composer, conductor and pedagogue + +Noskowski studied at the Institute or Music in Warsaw between 1864–1867, graduating with a second prize. A fellowship enabled him to continue his studied under Friedrich Kile at the Hochschule für Musik in Berlin between December 1872 and April 1875, where he wrote and performed his first work, the "First Symphony in A Major." + +Back in Warsaw, Noskowski successfully performed his "First Symphony" and another work, the "Morskie Oko" overture, but was unable to find permanent work. In 1880, at Kiel's recommendation, the city of Konstanz in the Grand Duchy of Baden (southern Germany) hired him as its Municipal Music Director. In addition, he directed the "Bodan" Singing Society, which under his tutelage became the best choir in Baden. In Konstanz, Noskowski wrote his cycle of "Krakowiacy" for piano, which was well received by [a=Franz Liszt] and published on his recommendation. + +In January 1881, Noskowski moved back to Warsaw and assumed the post of Director of the Warsaw Musical Society. He rebuild the society's choir. Three times, he also attempted to establish a symphony orchestra that would perform only works by Polish composers, but the orchestras struggled financially and never endured for long. Noskowski was forced to write music for popular plays to cover the losses of his orchestras. Starting in 1886, he focused instead on teaching composition at the Warsaw Musical Society.Needs Votehttps://portalmuzykipolskiej.pl/en/osoba/3210-noskowski-zygmunthttps://pl.wikipedia.org/wiki/Zygmunt_Noskowskihttps://adp.library.ucsb.edu/names/104777De NoskowskiNoskowskiNoskowskiegoSigmond NoskowskiZ. NoskowskiЗ. НосковскийOrkiestra Symfoniczna Filharmonii Narodowej + +1752688Maria Cristina BrancucciMaria Cristina Brancucci (Roma, April 20, 1940 - Roma, January 11, 2022) was an Italian voice actress and singer.Needs Votehttp://it.wikipedia.org/wiki/CristyC. BrancucciChristyCristina BrancucciCristina BrncucciM. Cristina BrancucciMaria CristinaChristy (2)I Cantori Moderni di AlessandroniClan Alleluia + +1753085Lyle MurphyMiko StephanovicAmerican jazz multi-instrumentalist, bandleader, and arranger. Arriving in the US with his parents in 1912 and grew up in Salt Lake City, where he changed his name to Lyle Murphy. +Better known as Spud Murphy +Born August 19, 1908, Berlin, Germany +Died August 5, 2005, Hollywood, CaliforniaNeeds Votehttps://en.wikipedia.org/wiki/Spud_Murphyhttps://syncopatedtimes.com/lyle-spud-murphy-unsung-hero-of-swing/http://www.jazzhotbigstep.com/287.htmlLyle "Spud" MurphyLyle ("Spud") MurphyLyle Spud MurphyMurphyS. MurphySpud MurphySpud MurphyClaude MurphyCharlie Barnet And His OrchestraLyle "Spud" Murphy And His OrchestraArt Landry's Orchestra + +1753086Russ CheeverRussell Cheever.American jazz saxophonist (soprano). +Born: April 06, 1911 in Los Angeles, California. +Died: May, 1987 in California . + +Russ was a member, along with Jack Dumont, Morris Crawford and William Ulyate, the "Hollywood Saxophone Quartet". Needs VoteRussel A. CheeverRussel CheeverRussell A. CheeverRussell CheeverPete Rugolo OrchestraHollywood Saxophone Quartet + +1753806Larry Walsh (2)US swing jazz tenor saxophonistNeeds VoteHarry WalshL. WalshLarry WalshBunny Berigan & His OrchestraJack Teagarden And His Orchestra + +1753821Eddie Williams (5)Jazz saxophonist and clarinetist, born c. 1910 in New York. +In early 1930s worked with [a=Claude Hopkins] and let own band at the Savoy Ballroom in New York. Recorded on clarinet with [a=Billy Kyle] in 1937, on tenor sax with [a=The Mills Blue Rhythm Band] (1937, 1939), and on alto sax with [a=Jelly Roll Morton] in 1940. He played with [a=Ella Fitzgerald] 1941, [a=Henry "Red" Allen] 1942 and [a=Don Redman] and others. From late 1940s led own small band; worked regularly with [a=Happy Caldwell] in the 1960s. + +For other jazz saxophonists, see [a=Eddy Williams (2)] or [a=Eddie Williams Jr.]Needs VoteEddie WilliamsDon Redman And His OrchestraJelly Roll Morton's Hot SixJelly Roll Morton's Hot SevenThe Morton Sextet + +1753822All Star Jam BandNeeds Major ChangesAll-Star Jam BandThe All Star "Jam" BandThe All Star Jam BandThe All-Star Jam BandLeo WatsonPete Brown (2)Joe BushkinJoe MarsalaRemo Biondi + +1753828Chu Berry & His Little Jazz EnsembleNeeds Major Changes'Chu' Berry And His "Little Jazz" EnsembleChoo Berry EnsembleChu Berry "Little Jazz" EnsembleChu Berry & His 'Little Jazz' EnsembleChu Berry & His Jazz EnsembleChu Berry And His "Little Jazz" EnsembleChu Berry And His 'Little Jazz' EnsembleChu Berry And His Jazz EnsembleChu Berry And His Little Jazz EnsembleChu Berry And His ’Little Jazz’ EnsembleChu Berry Jazz EnsembleChu Berry With His Little Jazz EnsembleChu Berry's Jazz EnsembleChu Berry's Little Jazz EnsembleRoy EldridgeClyde HartDanny BarkerLeon "Chu" BerrySidney CatlettArtie Shapiro + +1754222Adrian HuttonBass / Baritone vocalist.Needs VoteGabrieli ConsortThe New College Oxford ChoirCorydon SingersThe Holst Singers + +1754225Eamonn DouganUK bass vocalist and associate conductor of [a=The Sixteen] ensemble, since 2006Needs Votehttps://twitter.com/ejdouganhttps://thesixteen.com/team/eamonn-dougan/https://www.percius.co.uk/artists/eamonn-douganhttps://conviviumrecords.co.uk/eamonn-dougan/https://www.naxos.com/person/Eamonn_Dougan/3253.htmEamon DouganMagnificatThe New College Oxford ChoirThe SixteenI FagioliniDunedin ConsortTenebrae (10) + +1754227Peter MallinsonTreble vocalist, classical solo, orchestral & chamber violist, occasional church organist, and teacher. +Before studying at the [l527847], he was Head Chorister of [a=The New College Oxford Choir]. As well as being a member of the [a=BBC Symphony Orchestra], he plays with the [a=Orchestra Of The Age Of Enlightenment] as part of the Ann and Peter Law OAE Experience for young players, and [a=Southbank Sinfonia]. He has also performed with the [a=Hanover Band], Music for Awhile, [a=Southern Sinfonia], and the [a=Orlando Consort]. Ensembles he is a member of include [b]Viola Duo[/b], [a=Aylwin String Quartet], [b]Phantasy Trio[/b], [b]Duo Figaro[/b], [b]Mit Dämpfer[/b], and [b]Spiccato String Quartet[/b].Needs Votehttps://www.petermallinson.com/https://www.facebook.com/peter.mallinson.31https://twitter.com/PMallinsonViolahttps://www.youtube.com/channel/UCRpo-oNniJFAZnWtV7Wp9Ig?app=desktopLondon Symphony OrchestraBBC Symphony OrchestraThe New College Oxford ChoirOrchestra Of The Age Of EnlightenmentHanover BandSouthbank SinfoniaAylwin String QuartetSouthern Sinfonia + +1754469Fred HallerJazz saxophone and flute playerCorrectHarry James And His OrchestraLes Brown And His Band Of RenownWalt Boenig Big Band + +1754470Bill MattisonJazz TrumpeterNeeds VoteBernie MattisonHarry James And His OrchestraLes Brown And His Band Of RenownGerald Wilson Orchestra + +1754726Tuire OrriTuire Orri-BjörkellFinnish actress and singer. Born on October 30, 1918 in Helsinki, Finland and died on August 26, 2007 in Helsinki, Finland.Needs Vote + +1755379José CorrialeJosé Alberto CorrialeJosé "Pepe" Corriale ( Argentina , September 4 , 1915 / November 7 , 1997 ) was an Argentine musician and unionist , drummer and percussionist . He mainly performed tango music . He was a member of the orchestras led by Francisco Canaro , Osvaldo Fresedo , Julio De Caro , Carlos García , José Libertella , and Armando Pontier . Lucio Demare , Mariano Mores and Astor Piazzolla . With this he played the drums in 1968, for the opera María de Buenos Aires . He was also occasionally a member of the National Symphony Orchestra and the Opera Theater hired him on several occasions to accompany international figures such as Paul Anka , Caterina Valente , Cab Calloway and Sammy Davis . He was a member of Naty Mistral 's band . +He formed the Pepeco Quintet, which was characterized by contributing unpublished timbre to tango made with percussion. He composed the tango “Julián Centeya”. He is the author of the book La batería en el tango . +He was the first president of the Argentine Musicians Union . +Father of jazz singer [a5320715]Needs Votehttps://es.wikipedia.org/wiki/Jos%C3%A9_Corrialehttp://tangosalbardo.blogspot.com/2017/10/pepe-corriale.htmlJose CorrealeJose CorrialeJosè CorrealeJosé CorrealePepe CorrialeAstor Piazzolla Y Su Conjunto 9Astor Piazzolla Y Su OrquestaHéctor y Su Gran Orquesta de Jazz + +1755531Bill Bradley (3)American jazz drummer, died 15 July 1989Needs VoteBill Bradley, Jr.Woody Herman And His OrchestraBobby Scott TrioWoody Herman And The Fourth HerdWoody Herman And The Swingin' Herd (2) + +1755831Benny BookerAmerican jazz/blues bassist from the swing era. + +Needs VoteBenjamin BookerLes Hite And His OrchestraFloyd Ray And His OrchestraWilbert Baranco Quartet + +1755933Adelbert Von ChamissoLouis Charles Adélaïde de Chamissot de BoncourtGerman poet and botanist. + +He was born 30 January 1781 at the château of Boncourt at Ante, in Champagne, France and died 21 August 1838 in Berlin, Germany. +Needs Votehttp://en.wikipedia.org/wiki/Adelbert_von_ChamissoA. ChamissoA. V. ChamissoA. Von ChamisoA. Von ChamissoA. v. CamissoA. v. ChamissoA. von ChamissoA. ŠamisasA.ChamissoA.v. ChamissoAadalbert Von ChamissoAd. v. ChamissoAdalbert Von ChamissoAdalbert von ChamissoAdalbert von ChiamissoAdelbert ChamissoAdelbert V. ChamissoAdelbert v. ChamissoAdelbert vom ChamissoAdelbert von ChamissoAv ChamissoChamissoV. ChamissoVon Chamissov. Chamissovon ChamissoА. ШамиссоА. фон ШамиссоА.Шамиссоアーダルベルト・シャミッソ + +1756469Nurit Bar-JosefAmerican violinist.Correcthttp://www.nuritbarjosef.com/Nuit Bar-JosefBoston Symphony OrchestraSaint Louis Symphony OrchestraNational Symphony Orchestra + +1756474Pitnarry ShinKorean born cellist.Needs Votehttps://www.naxos.com/person/Pitnarry_Shin/210060.htmPitnary ShinThe Saint Paul Chamber OrchestraMinnesota OrchestraThe Azure Ensemble + +1756555Rocky ColuccioRocco ColuccioAmerican jazz pianist.Needs VoteColuccioMichael 'Rocky' ColuccioR. ColuccioR.ColucciRocco ColuccioRocky CaluccioRocky ColluccioRocky CollucioRocky ColeTommy Dorsey And His OrchestraPete Rugolo OrchestraSam Donahue And His OrchestraRonnie Scott Quartet + +1756853Philippe Le TellierNeeds Major ChangesLe TellierPh. Le TellierPhilipe Le Tellier + +1757209Peter GreenhamClassical percussionist, and poet. +Former member of the [a=London Symphony Orchestra] (1972-1973). +He was married to [a=Lily Greenham].Needs VoteLondon Symphony OrchestraTristan Fry Percussion Ensemble + +1757261Son BondsAbraham John Bond Jr. American blues guitarist, singer and songwriter. +Born : March 16, 1909 in Brownsville, Tennessee. +Died : August 31, 1947 Dyesburg, Tennessee. +Son played with : Sleepy John Estes, Hammie Nixon and others.Needs Votehttps://adp.library.ucsb.edu/names/209677https://adp.library.ucsb.edu/names/110633https://en.wikipedia.org/wiki/Son_Bonds"Brownsville" Son Bonds'Brownsville' Son BondsBondsBrother Son BondsBrother Son BondsBrownsville "Son" BondsBrownsville Son BondsHammie And SonS. BondsSonSon BondThe Delta Boys + +1757388Charles Johnson (9)Trombonist.Needs VoteCharley JohnsonBenny Carter And His OrchestraWalter Gil Fuller And His Orchestra + +1757595Duoming BaViolinist.Needs VoteNew York Philharmonic + +1757598Satoshi Okamoto (2)Double bassist.Needs Votehttp://nyphil.org/meet/orchestra/index.cfm?page=profile&personNum=815New York PhilharmonicSan Antonio Symphony Orchestra + +1757608Agnes HvizdalekAgnes Hvizdalek uses voice and microphone and comes from Vienna’s improv environment, where she has a trio with Klaus Filip and Seijiro Murayama, and has studied with Franz Hautzinger sizes. After she moved to Norway in 2008, she has made his mark in Oslo’s improv scene with international improvprosjekter for large orchestra, including ÖNCZkekvist. Otherwise, she has played with Burkhard Stangl, Manon Liu Winter, Bonnie Jones, Kristin Andersen, Guro S. Moe, Mia Goran...Needs Votehttp://agneshvizdalek.at/HvizdalekDemi BroxaNakama (2)Juxtaposition (3) + +1758723Andy Blyth (2)Needs VoteThe Choir Of Christ Church Cathedral + +1758724Hugo JanacekClassical countertenor vocalist.Needs VoteThe Choir Of Christ Church CathedralThe Ebor Singers + +1758726Mitchell KeeleyNeeds VoteThe Choir Of Christ Church Cathedral + +1758728Paul MayesBritish freelance trumpet player, and Professor of Trumpet. +He studied at the [l527847] (1988-1992). Professor of Trumpet at the Royal Birmingham Conservatoire of Music (September 2008-June 2018) and [l305416] (September 2011-July 2018).Needs Votehttps://www.linkedin.com/in/paul-mayes-bb20a635/?originalSubdomain=ukhttps://www.youtube.com/user/huffpuffmusichttps://open.spotify.com/artist/7CSkXDgeqVpgH9QtHratCfhttps://music.apple.com/us/artist/paul-mayes/214611758https://www.bcu.ac.uk/conservatoire/about-us/birmingham-conservatoire-tutors-and-staff/paul-mayeshttps://www.deniswick.com/artist/paul-mayes/https://www.imdb.com/name/nm10687790/https://vgmdb.net/artist/22614London Symphony OrchestraThe London Scratch Orchestra + +1758729Jon StainsbyClassical [b]bass[/b] vocalist.Needs VoteJon D. StainsbyThe Choir Of Christ Church CathedralThe Brabant EnsembleThe Marian Consort + +1758731Rupert HarrisNeeds VoteThe Choir Of Christ Church Cathedral + +1758737Ryota SakaiNeeds VoteThe Choir Of Christ Church Cathedral + +1758741Alastair CareyClassical tenor vocalist.Needs Votehttps://alastaircarey.com/The Choir Of Christ Church CathedralThe Brabant Ensemble + +1758742Ben LaxtonNeeds VoteThe Choir Of Christ Church Cathedral + +1758743James FlewellenNeeds VoteThe Choir Of Christ Church Cathedral + +1758749Will DawesBritish bass-baritone vocalist and conductor.Needs Votehttp://www.willdawes.co.uk/William DawesMagnificatLondon VoicesThe Choir Of Christ Church CathedralThe Brabant EnsembleStile AnticoThe Eric Whitacre SingersLudus Baroque + +1758750Jamie BlinkoNeeds VoteThe Choir Of Christ Church Cathedral + +1758752Gordon LaingBritish classical bassoonist, contrabassoonist, and pedagogue. Born in 1964 in London, England, UK. +He studied at the [l290263]. He played with the [a=Young Musicians Symphony Orchestra] for four years and a half and made his professional debut with the [a=Ulster Orchestra] at twenty-two years of age. Other groups with whom he has worked include the [a=Britten Sinfonia], and [a=The Nash Ensemble]. He was a member of the [a=Orchestra Of The Royal Opera House, Covent Garden] in 1995, and became Principal Contra-Bassoon with the [a=Philharmonia Orchestra] in 1997. +Professor of Basson at [l305416] since 1993.Needs Votehttps://en.wikipedia.org/wiki/Gordon_Lainghttps://www.feenotes.com/database/artists/laing-gordon-1964-present/https://www.imdb.com/name/nm11772833/https://vgmdb.net/artist/22863Gordan LaingRoyal Philharmonic OrchestraPhilharmonia OrchestraUlster OrchestraThe Nash EnsembleOrchestra Of The Royal Opera House, Covent GardenBritten SinfoniaThe London Scratch OrchestraYoung Musicians Symphony OrchestraLudwig Orchestra + +1758754Julian HartleyNeeds VoteThe Choir Of Christ Church Cathedral + +1759234Helena SmartBritish classical violinist. Born in 1980 in Northallerton, North Yorkshire, England, UK. +She graduated from the [l459222] in 2002. Whilst studying, she formed [b]The Smart Trio[/b] in 1998. She has been member of the [b]Smart String Quartet[/b]. She was a member of the [a653372] from 2004 to 2006. Former member of the [a=London Mozart Players]. She joined the [a=London Philharmonic Orchestra] in 2018. Member of the 2nd violin section of [a=The Academy Of St. Martin-in-the-Fields].Needs Votehttps://www.facebook.com/helena.smart.750https://www.asmf.org/musician-profiles/http://www.musicprofiles.co.uk/smarttrio/biog.htmhttps://www.thenorthernecho.co.uk/news/7125781.musician-helena-plays-smart/https://vgmdb.net/artist/22822London Symphony OrchestraLondon Philharmonic OrchestraWDR Sinfonieorchester KölnThe Academy Of St. Martin-in-the-FieldsLondon Mozart PlayersRed Skies String Section + +1759813Bartolomeo TromboncinoBartolomeo Tromboncino (c. 1470 – 1535 or later) was an Italian composer of the middle Renaissance. He is mainly famous as a composer of frottola; he is principally infamous for murdering his wife. He was born in Verona and died in or near Venice.Correcthttp://en.wikipedia.org/wiki/Bartolomeo_TromboncinoB TromboncinoB. TromboncinoB. TrombocinoB. TromboncinoB. TromboncionoB.TromboncinoBartolemo TromboncinoBartolo TrombocinoBartolo TromboncinoBartolomeo Tromboncino (1470 Ca. - 1535 Ca.)Bartolomeo Tromboncino (1470-1535)TromboncinoБ. ТромбочиноБартоломео Тромбончино + +1759852Andreas GroteGerman violist.Needs VoteOrchester Der Beethovenhalle BonnBayerisches StaatsorchesterPhilharmonisches Orchester DortmundDüsseldorfer SymphonikerLudwig String Quartet + +1759856Bruno KlepperGerman cellist. He's the son of [a890290] and the brother of [a3073157], [a3062820], and [a3855498].Needs VoteJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleWDR Rundfunkorchester KölnBundesjugendorchesterDas Salonorchester CöllnDüsseldorfer Symphoniker + +1759866Christoph BujanowskiChristoph Bujanowski (20 October 1953 - 27 January 2014) was a German violist. He was married to [a6392653].Needs VoteGürzenich-Orchester Kölner PhilharmonikerMartfeld Quartett + +1759869Annette ReadAnnette Read-BeckerViolinist.Correcthttp://www.deutscheoperberlin.de/de_DE/ensemble/annette-read-becker.18085#Orchester Der Deutschen Oper Berlin + +1760260Claus MyrupDanish violist. +Studied at the Royal Danish Academy of Music. +Earned the Danish Music Critics' Artist Award and the Carl Nielsen travel scolarship + +Married to [a2808754]Needs VoteClaus MurupDen Danske KvartetDR SymfoniOrkestret + +1760439Jessica ZhouChinese harpist, born in Beijing, China. Principal harpist for the [a=Boston Symphony Orchestra].Correcthttps://www.bso.org/profiles/jessica-zhouBoston Pops OrchestraBoston Symphony OrchestraThe Azure Ensemble + +1761289Sean Jones (2)American jazz trumpeter.Needs Votehttps://www.sean-jones.com/https://www.facebook.com/seanjonesjazzGerald Wilson OrchestraThe Ralph Peterson Fo'tetSFJazz CollectiveJimmy Heath Big BandSean Jones QuartetCleveland Jazz OrchestraCaptain Black Big BandPaul Ferguson Jazz OrchestraElio Villafranca & The Jass SyncopatorsMack Avenue SuperBandPittsburgh Jazz OrchestraBrad Leali Jazz OrchestraBrad Leali QuartetThe Ralph Peterson SextetGeneration Gap Jazz OrchestraDuquesne University Faculty Jazz All StarsDuquesne University Faculty Jazz VIPs + +1761989Celine LeatheadCéline LeatheadCanadian violinist.CorrectCeline LetheadCéline LeatheadMinnesota Orchestra + +1762011Howard KayHoward A. KayUS violinist + +For the songwriter ("The Train Kept-A Rollin'"), see [a=Howie Kay]Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/205271/Kay_Howardhttps://sinatraology.com/person/1349H. KayH. KayeHoward A KayHoward A. KayHoward KayeHoward KeyHowie KayPaul Whiteman And His OrchestraCharlie Parker With StringsThe Manhattan Pops OrchestraThe Columbia String Orchestra + +1762094George LuggJazz trombonist, born October 6, 1898 in Chicago, Illinois, died near Bayside, Long Island, December 1946 (drowning). +Played at Camel Gardens, Chicago, in 1924. Toured and recorded with Jules Alberti and his Tenesseans in 1925. In 1926 to Europe with band led by Gene Jones. Returned to Chicago to work on and off with Frank Snyder until 1935. Worked in New York with Mezz Mezzrow 1937. Played with Dixieland bands in New York during the 1940s.Needs VoteGeorge LuckSidney Bechet And His Blue Note Jazz MenWild Bill Davison And His CommodoresArt Hodes' Hot Seven + +1762555Alfons & Aloys KontarskyGerman duo of brothers (pianists), early participants and later teachers at the [l293404], they have premiered and recorded mainly avantgarde music.Needs Votehttps://de.wikipedia.org/wiki/Alfons_und_Aloys_Kontarskyhttps://en.wikipedia.org/wiki/Aloys_and_Alfons_KontarskyAlfons & Aloys KontarskyAlfons & Aloys KontarskiAlfons And Aloys KontarskyAlfons E Aloys KontarskyAlfons En Aloys KontarskyAlfons Et Aloys KontarskyAlfons Kontarsky — Aloys KontarskyAlfons Kontarsky, Aloys KontarskyAlfons Und Alois KontarskyAlfons Und Aloys KontarskyAlfons Y Aloys KontarskyAlfons and Aloys KontarskyAlfons und Aloys KontarskyAlfons y Aloys KontarskyAlois & Alfons KontarskyAloys Kontarsky, Alfons KontarskyAloys Und Alfons KontarskyKontarskyアロイス&アルフォンス・コンタルスキーAloys KontarskyAlfons Kontarsky + +1763048Richard Marshall (3)American violinistNeeds VoteMinnesota OrchestraWilliam Schrickel's Heavy Rescue + +1763284Thomas PorrelloAmerican jazz trumpeterCorrectTom PorelloTom PorrelloTommy PorelloTommy PorrelloHarry James And His OrchestraWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +1764842Charles BowenUS tenor sax player from Pennsylvania, who played with [a=Bobby Watson (2)] and [a="Philly" Joe Jones]. Related to the label [l=Emandolynn], publisher [l=Emandolynn Music] and owner of the Emandolynn studio in Chester P.A. +Charles Albert Bowen Sr. (1942-2016) + +For the gospel producer, see [a=Charles Bowen (5)]Needs Votehttps://emandolynnmusic.bandcamp.com/album/like-the-nightBowenC. BowenCharles Bowen Jr.Roy Eldridge And His OrchestraThe Gasoline Band + +1765338Chris DuceyChristopher R. DuceyNeeds Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&keyid=96175&keyname=DUCEY+CHRISTOPHER+R&CAE=8722987&Affiliation=BMIC. DuceyC. R. DuceyC.DuceyC.R. DuceyDaceyDuceyChris And CraigPenny ArkadePrairie Madness + +1765609Carolyn HoveAmerican oboe and English horn instrumentalist. She has been the solo English horn player in the Los Angeles Philharmonic since 1988.Needs Votehttp://www.carolynhovemusic.com/https://www.facebook.com/CarolynHoveMusic/Los Angeles Philharmonic Orchestra + +1765707Valdemar DalquistSwedish actor, singer and lyricist. +Born September 23, 1888 in Ås, Skaraborg, Sweden — died January 20, 1937 in Stockholm, Sweden.Needs Votehttps://adp.library.ucsb.edu/names/369558DahlquistDahlqvistDalquistDalqvistV. DahlquistV. DahlqvistV. DalhquistV. DalquistV. DalqvistVald. DahlqvistVald. DalquistValdemar DahlquistValdemar DahlqvistValdemar DalqvistValdermar DahlqvistValleW. DahlquistW. DahlqvistW. DalquistW. DalqvistWald. DahlquistWald. DahlqvistWald. DalquistWald. DalqvistWaldemar DahlquistWaldemar DahlqvistWaldemar DalhquistWaldemar Dalquist + +1765751Josef GrünfarbSwedish violinist, born 27 August 1920, died 25 October 2007- + +He studied violin with his father Moschko Grünfarb, with [a1552349] and at the Royal Academy of Music's conservatory in Stockholm. Later, as a Jenny Lind scholarship holder, he had the opportunity to study with [a837490] in London. + +Grünfarb made his debut at the age of twelve as a soloist with [a939901], where he would later work as first violinist and concertmaster in the years 1943–1961. Afterwards, he was concertmaster in, among others, the Radio Symphony Orchestra and the Court Chapel. Grünfarb started as a regular teacher at the Royal Academy of Music in 1965, and became a professor in 1976. Josef Grünfarb also co-founded [a6643583], whose principal he was throughout its long existence.Needs Votehttp://sv.wikipedia.org/wiki/Josef_GrünfarbSveriges Radios SymfoniorkesterKungliga HovkapelletStockholms Filharmoniska OrkesterGrünfarbkvartetten + +1765758Mats WallinSwedish classical clarinetist, born and raised in Stockholm. + +He studied at Adolf Fredriks musikklasser, graduation year 1974 and when he studied clarinet at the Royal College of Music, Stockholm.Needs VoteSveriges Radios SymfoniorkesterKungliga HovkapelletStockholm SinfoniettaSonanza Chamber Ensemble + +1765762Karl-Ove MannbergSwedish violinist, born 29 August 1934.Needs Votehttp://sv.wikipedia.org/wiki/Karl-Ove_MannbergKarl Ove MannbergSeattle Symphony OrchestraStockholms Filharmoniska OrkesterGöteborgs SymfonikerKungliga Filharmonikerna + +1765794Mats ZetterqvistMats Gerhard ZetterqvistSwedish classical violinist, born on 3 December 1954 in Örebro, Sweden. + +He received his basic education at the Academy of Music in Stockholm under professor Sven Karpe. The studies in Stockholm ended with a soloist diploma in 1976. This was followed by studies at the Liszt Academy in Budapest, mainly for András Mihály. Another important advisor has been Endre Wolf.Needs Votehttp://matszetterqvist.se/The Chamber Orchestra Of EuropeZetterqvist String QuartetGotlandskvartettenZ QuartetTrioMats + +1766249Sidney DeParis' Blue Note JazzmenNeeds Major ChangesDe Paris' Blue Note Jazz MenSidney De Paris And His Blue Note JazzmenSidney De Paris Blue Note Jazz MenSidney De Paris Blue Note JazzmenSidney De Paris' Blue Note JazzmenSidney De Paris's Blue Note JazzmenSidney De Paris, Blue Note Jazz MenSidney DeParis' Blue Note Jazz MenVic DickensonEdmond HallSidney De ParisJames Price JohnsonSidney CatlettJohn SimmonsJimmy Shirley + +1766561Mindy KaufmanAmerican solo piccolo and flutist who has played in the New York Philharmonic since 1979. Previously she was a member of the Rochester Philharmonic for 3 years.Needs Votehttps://nyphil.org/about-us/artists/mindy-kaufmanMindy KaufmannMindy KrufmanNew York PhilharmonicRochester Philharmonic OrchestraMetropolis EnsembleNew York Philharmonic Ensembles + +1766641Mark SchmoocklerRussian-Georgian violinist, born in Tbilisi, U.S.S.R. He went to Israel in 1972 and immigrated to the United States in 1973. In 1974, he joined the New York Philharmonic and retired after 44 active years in 2018.Needs VoteMark SchmooklerNew York Philharmonic + +1766668Jessica Lee (2)American violinistNeeds VoteJessica LeeThe Cleveland OrchestraMetropolis EnsembleNew York Chamber Consort + +1766671Kevin CobbAmerican trumpet player.Needs VoteSaint Louis Symphony OrchestraNew York New Music EnsembleAmerican Brass QuintetThe American Brass Quintet Brass Band + +1766675Howard Wall (2)American hornist & engineer from Pittsburgh. From 1976 to 1994, he was member of the Philadelphia Orchestra. In 1994, he went to New York and joined the New York Philharmonic as hornist.Needs VoteHoward WallThe Philadelphia OrchestraNew York Philharmonic + +1766681Tom SefcovicThomas SefcovicAmerican bassoonist.Needs Votehttps://www.imdb.com/name/nm3385631/Thomas L. SefcovicThomas SefcovicThomas SefkovicTom SefkoficTom SevcoficOrchestra Of St. Luke'sBoston BaroqueSylvan Winds + +1766686Irene BreslawClassical violist who has played in the New York Philharmonic since 1976. Previously a member of the St. Louis Symphony Orchestra and the Baltimore Symphony Orchestra. +She retired from the New York Philharmonic in 2016.Needs Votehttps://nyphil.org/about-us/artists/irene-breslawIrene Breslaw GrapelNew York PhilharmonicSaint Louis Symphony OrchestraBaltimore Symphony OrchestraNew York Philharmonic Ensembles + +1766706Ken MirkinKenneth MirkinClassical violist born in New York. He has played with the New York Philharmonic since 1982. He played with the San Francisco Symphony from 1981 to 1982.Needs Votehttps://nyphil.org/about-us/artists/kenneth-mirkinKenneth MirkinKevin MirkinNew York PhilharmonicSan Francisco Symphony + +1766876Leonard Davis (3)Violist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York PhilharmonicPhilharmonia String Quartet (2) + +1767206James Gregory (2)Classical flutist. +He was a member of the [a=London Symphony Orchestra].Needs VoteGregory J.Gregory. JJ. GregoryJim GregoryLondon Symphony Orchestra + +1767448Heinz KirchnerHeinz Kirchner (10 August 1909 - 6 June 1986) was a German classical violist and teacher at the [l891527].Needs VoteH. KirchnerH.KirchnerBerliner PhilharmonikerStaatsorchester StuttgartStuttgarter KammerorchesterRundfunk-Sinfonieorchester BerlinBruckner Orchestra LinzEdwin Fischer Chamber OrchestraZernick-QuartettThe Stuttgart Viol Trio +1767606Leone BuyseAmerican classical flautist and Professor of Flute at Rice University's Shepherd School of Music. Married to [a1500859]. One of the founders of the Webster Trio Japan in 1988.Needs Votehttps://www.leonebuyse.com/L. BuyseBoston Symphony OrchestraSan Francisco SymphonyRochester Philharmonic OrchestraWebster Trio Japan + +1767608Ralph GreavesNeeds Major ChangesGravesGreavesR. Greaves + +1768221Reino PalmrothReino Wilhelm PalmrothNeeds Votehttp://pomus.net/001442https://adp.library.ucsb.edu/names/104667PalmrothR. PalmrothR. W. PalmrothReino "Palle" PalmrothReino W. PalmrothReino HirviseppäPalleM. TurmaI. LariVille YstävineenPalle Ystävineen + +1768583James ArakiJames T. ArakiAmerican multi-instrumentalist, born 1926 and died in 1992.CorrectJ. ArakiJim ArakJim ArakiLionel Hampton And His OrchestraLionel Hampton & His Big Band + +1768696Vladislav CzarneckiCzech conductor (* 12 August 1937 in Ostrava, Czechoslovakia); from 1986 until 2002, artistic director and conductor of the [a1046945] in Pforzheim, Southwest Germany.Needs Votehttps://www.swdko-pforzheim.de/aktuelle-meldungen/vladislav-czarnecki-wird-80-gratulationskonzert-am-16-september/http://www.eckelshausener-musiktage.de/kuenstler/details/vladislavczarnecki.htmВ. ЧарнецкиSüdwestdeutsches Kammerorchester + +1769577Nora RollNora Cecilia RollSwedish musician (viola da gamba), born October 10, 1971 in Täby parish, Stockholm. + +She is Sweden's first certified gambist + +Roll is interested in basso continuo playing, which has made her frequently employed by, among others, Les Talens Lyriques, Akadêmia, Concerto Copenhagen, NAYA, Atalante and The Harp Consort. She has toured in Europe, Asia, USA and South America. + +In addition to this, Roll has appeared as a musician on Maria Marcus' song "Why (You Confuse My Mind)", which was featured in the film Wallander – Mastermind (2005), as well as a studio musician on Superswirls' Filter (1996), Weeping Willows album Presence (2004), Henrik Levy's album A Letter from a City Man (2004), Anna Döbling's Anna Döbling (2007), a tribute album to Barbro Hörberg (2007) and Sofia Källgren's album Cinema Paradiso (2008) . + +Roll is also a member of the folk music group [a3875552], which besides herself consists of Pelle Björnlert (violin), Johan Hedin (key harp) and Sven Åberg (lute). In 2012, the group released the debut album Silver. The record was celebrated with a release party at the Stallet in Stockholm on May 11 of the same year.Needs Votehttps://sv.wikipedia.org/wiki/Nora_RollLe Concert D'AstréeSilfverGöteborg BaroqueThe Tre Kronor Baroque Ensemble + +1770904William KincaidWilliam Morris "Monty" KincaidWilliam Kincaid (1895–1967) was an American flutist and one of the most prominent flute teachers in the XX century. He was born in Minneapolis but grew up in Honolulu, where he used to dive for pennies as a kid and learned how to control the breath, which later helped in a music career. + +In 1911, Kincaid went to New York and simultaneously enrolled at [l=Columbia University] and the Institute of Musical Art, where he studied flute with [a=Georges Barrère], graduating from both schools in 1914 and 1918. He played as a soloist with the [a=New York Philharmonic] from 1914 to 1919, and briefly served in US Navy during World War I. In 1920, William Kincaid was a soloist with the New York Chamber Music Society. + +After [a=Leopold Stokowski] had fired his soloist during a rehearsal in April 1921, he offered Kincaid position of the principal flutist in [a=The Philadelphia Orchestra], which musician held for a remarkable four decades until the retirement in 1960. + +In 1928, William M. Kincaid joined the faculty of the recently established [b]Curtis Institute of Music[/b], where he taught for the whole life and gained a title of the 'grandfather of American flute school' as a consequence of his invaluable contribution to the modern orchestral playing in the USA. He mentored numerous distinguished artists, including [a=Burnett Atkinson], [a=Julius Baker], [a=Harold Bennett], [a=Jacob Berg (2)], [a=Robert Cole], [a=George Drexler], [a=Doriot Anthony Dwyer], [a=Britton Johnson], [a=John Krell], [a=Joseph Mariano], [a=Donald Peck], [a=James Pellerite], [a=Maurice Sharp], [a=Albert Tipton], [a=Frances Blaisdell], [a=Paul Dunkel], [a=Katherine Hoover], [a=Claire Polin], [a=Felix Skowronek], and [a=John Solum]. + +For most of his career, Kincaid played a unique and probably most expensive flute in the world with a solid platinum body and silver French-style open-hole keys. The head joint has a Trylon & Perisphere logo, symbol of the 1939 New York World's Fair, engraved by Verne Q Powell. Originally it was produced solely as a show attraction and not for sale, displayed under the armed guard during the Fair. But after the event, famous musician purchased the instrument. Shortly before his death in 1967, William presented the rare flute to his student, [a=Elaine Shaffer]. + +After she had passed away, the instrument was auctioned by Christie's in 1986. A respectable art collector Stuart Pivar, who was accompanied by [a=Andy Warhol] that night, won the bid and paid $187,000 for this remarkable flute. Today, it's exhibited at the [l=Metropolitan Museum Of Art] in New York.Needs Votehttps://en.wikipedia.org/wiki/William_Kincaid_%28flutist%29https://web.archive.org/web/20040912205935/http://www5a.biglobe.ne.jp/~philorch/1stChair/Kincaid.htmlhttps://www.stokowski.org/Philadelphia_Orchestra_Musicians.htm#William_KincaidWilliam M. KincaidWm. KincaidThe Philadelphia OrchestraNew York PhilharmonicPhiladelphia Woodwind Quintet + +1770967Original WolverinesNeeds VoteThe Original WolverinesThe Wolverine OrchestraThe WolverinesThe Jazz Harmonizers + +1770973Jelly Roll Morton's Stomp KingsNeeds Major ChangesJ.R. Morton's Stomp KingsJelly Roll Morton Stomp KingsJelly Roll Morton's Stomp Kings (Jazz Kids)Jelly Roll Morton's Stomps King Or Jazz KidsJelly Roll Morton's Stomps KingsJelly-Roll Morton's Stomp KingsJazz KidsJelly Roll MortonRussell Senter'Memphis'Jack Russell (8) + +1771067Dirk SagemüllerGerman operatic baritone, born 30 November 1950 in Osnabrück, Germany and died 4 March 1995 in Bockhorn, Germany.CorrectDirk Sagemuller + +1771068Luigi De CoratoItalian opera singer.CorrectLuigi DeCoratoЛуиджи Де Корато + +1771431Jean AntoniettiClassical pianist, born 28 January 1915 and died in 1994.CorrectJean Antoniettie + +1771822Kenny Clarke And His 52nd Street BoysNeeds Major ChangesKenny Clark And His 52nd Street BoysKenny Clarke & His 52nd Street BoysKenny Clarke & His 52nd Street StompersKenny Clarke & His 52th Street BoysKenny Clarke And His 52nd Steet BoysKenny Clarke And His 52th Street BoysKenny Clarke And His Fifty Second Street BoysKenny Clarke E I Suoi 52nd Street BoysBud PowellSonny StittKenny ClarkeKenny DorhamFats NavarroAl HallJohn Collins (2)Eddie de VerteuilRay AbramsRalph Schécroun + +1772432Aksel TörnuddFinnish composerNeeds Votehttps://sv.wikipedia.org/wiki/Aksel_T%C3%B6rnuddhttps://adp.library.ucsb.edu/names/110393A. TörnuddAxel TörnuddTörnudd + +1772434Mikko Von DeringerNeeds VoteDeringerM. V. DeringerM. Von DeringerM. v. DeringerM. von DeringerMikko v. DeringerMikko Von Deringerin Yhtye + +1772837Lyndall MarshallJazz drummerNeeds VoteLindell MarsallLyndell MarshallThe Lester Young SextetLester Young And His Band + +1772838Argonne ThorntonJazz pianist, in the bebop period. Needs VoteArgonne "Dense" ThorntonArgonne "Dense" Thornton alias Sadik HakimArgonne Thornton (Sadik Hakim)Argonne Thornton [Sadik Hakim]Argonne ThortonDense ThorntonHen GatesSadik HakimSadik HakimCharlie Parker's Re-BoppersDexter Gordon's All StarsThe Lester Young SextetLester Young And His BandBill De Arango Sextet + +1772839Joe AlbanyJoseph Albani.American jazz pianist. + +Born : January 24, 1924 in Atlantic City, New Jersey. +Died : January 12, 1988 in New York City. +Needs Votehttp://en.wikipedia.org/wiki/Joe_AlbanyAlbanyJ. AlbanyJoe Albany / Ohad TalmorДжо ЭлбэниLester Young And His BandWarne Marsh QuartetJoe Albany Trio + +1773061Jesper SvedbergSwedish cellist, and a member of the Kungsbacka Piano Trio, born 1974. + +He appears mainly as a chamber musician, in various temporary ensembles and as a permanent member of the Kungsbacka Piano Trio. + +He also teaches at the University of Stage and Music at the University of Gothenburg and the Guildhall School of Music and Drama in London. + +In 1994, Svedberg received Borås Tidning's cultural scholarship in memory of Tore G. Wärenstam.Needs Votehttps://sv.wikipedia.org/wiki/Jesper_Svedberg_(musiker)Bournemouth Symphony OrchestraKungsbacka Piano Trio + +1773177Tim LaycockBritish folk singer. Born in Witshire and brought up in North Dorset.Needs VoteLaycockTimSneak's NoyseTim Laycock And Friends + +1773373Yoshiyuki Nakamura中村 敬幸 (Nakamura Yoshiyuki)Japanese jazz drummer. Born July 10, 1947 in TokyoNeeds Vote中村よしゆきGil Evans And His OrchestraNobuo Hara and His Sharps & FlatsMal Waldron TrioMal Waldron QuartetToshio Mori & Blue CoatsBingo Miki & The Inner Galaxy Orchestra + +1773940Harry BrabecHarry Joseph BrabecAmerican percussionist, born in 1927 and died in 2005.Needs VoteChicago Symphony OrchestraNational Symphony OrchestraDavid Carroll & His Orchestra + +1774825Michel DalbertoFrench concert pianist, born 2 June 1955 in Paris, France.Needs Votehttps://www.micheldalberto.fr/https://en.wikipedia.org/wiki/Michel_DalbertoDalbertoM DalbertoM. DalbertoMichael Dalbertoミシェル・ダルベルト + +1775593Stig Nilsson (4)Norwegian-Swedish violinist, born in 1946.Needs Votehttp://no.wikipedia.org/wiki/Stig_Nilsson_(1946)Oslo Trio + +1775958Leon BLeon BaldryHard Dance DJ & producer from Exeter, UK. +Needs Votehttps://soundcloud.com/leon-bMarauder (17)Leon Baldry + +1776123Kenneth FinnAmerican trombonist.Needs VoteKen FinnKenn FinnThe American Symphony OrchestraOrchestra Of St. Luke'sNew York Trumpet EnsembleArcana OrchestraThe American Brass Quintet Brass BandMetropolitan Opera Brass + +1776385Yuja WangChinese: 王羽佳; Pinyin: Wáng YǔjiāClassical pianist, born February 10, 1987 in Beijing, China, now living in New York, USA.Needs Votehttp://www.yujawang.com/https://www.facebook.com/yujawanghttps://en.wikipedia.org/wiki/Yuja_Wanghttps://www.youtube.com/channel/UCkbdTxf3Rrfl5Nr2rEgndkg?cbrd=1https://yujawang.nicerweb.com/WangY. Wang + +1776844Donald DoaneDonald S. DoaneJazz trombonist. Died December 16, 2015 in Scarborough, Maine, USA. Needs VoteDon DoaneWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +1777032Johannes RitzkowskyGerman classical horn player and educator, born 24. June 1946 in Eschwege.Needs VoteJohannes RitzkowskiOrchester Erwin LehnSymphonie-Orchester Des Bayerischen RundfunksRadio-Sinfonieorchester StuttgartBachcollegium StuttgartSüdwestdeutsches Kammerorchester + +1777082Ulrich StærkClassical pianist, born in Genoa (Italy), he is professor at the Royal Danish Academy of Music and coach at the Royal Danish Opera in Copenhagen.Needs VoteUlrich StaerkEsbjerg Ensemble + +1777084Sophia BækDanish violinist.Needs VoteDR RadioUnderholdningsOrkestretCailin QuartetDR SymfoniOrkestret + +1777088Vanja LouroClassical cellist.Needs VoteVanja Maria LouroEsbjerg EnsembleThe Zapolski QuartetOdense SymfoniorkesterDR SymfoniOrkestret + +1777181Daniel RaschinskyBass & Baritone vocalistNeeds VoteMaulbronner KammerchorVocalensemble Rastatt + +1777192Christine AllanicClassical oboist.Needs VoteChristine AlanicChristine AlaniqueThe Amsterdam Baroque OrchestraLe Concert Des nationsHannoversche HofkapelleTelemannisches Collegium MichaelsteinNova StravaganzaCapella Hilaria + +1777380Virginia PattieVirginia Pattie KerovpyanVocalist born in Washington D.C., USA. +In 1974 she came to France where she recorded with Renaissance and Baroque Ensembles, such as Les Arts Florissants, Ensemble Guillaume de Machaut de Paris, Per Cantar e Sonar, L'Offrande Musicale, La Grande Écurie et la Chambre du Roy. +She is also member of the Armenian choir for sacred music "Kotchnak". +CorrectVirgine PattieVirginie PattieLes Arts Florissants + +1777802Fern CaronAmerican jazz trumpeter.Needs VoteFenn CaronCharlie Barnet And His OrchestraTeddy Powell And His OrchestraBilly Butterfield And His OrchestraBenny Goodman And His OrchestraThe New Glenn Miller OrchestraSam Donahue And His Orchestra + +1777819Howard DuLanyBig band and swing vocalist. +He most often performed and recorded with the big bands of Frank Dailey and Gene Krupa. Last nae sometimes spelled 'Du Lani". +He joined the army in September of 1941 and was replaced in Gene Krupa's band by Johnny Desmond. He was voted 18th best vocalist in 1944 in Down Beat magazine.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/106421/DuLany_HowardH. du LanyHoward Du LaniHoward Du LanyHoward DuLaneyHoward DulaneyHoward DulanyGene Krupa And His OrchestraFrank Dailey And His Meadowbrook OrchestraFrank Dailey And His Stop And Go Orchestra + +1778225Gilles BaillargeonCanadian violinist and teacher, born 6 October 1928 in Montreal, Canada. He's the son of [a3173783] and the twin brother of [a1589890].Needs VoteGille BailargeonGilles BailargeonOrchestre symphonique de MontréalMcGill Chamber OrchestraQuatuor Classique De Montréal + +1778413Firmian LermerGerman classical violist, born in 1968.Needs VoteLermerCamerata Academica SalzburgHyperion Ensemble (2)Minguet QuartettScaramouche Quartett + +1778433Gerald ApplemanGerald Konrad ApplemanAmerican classical cellist, born in 1936. He was part of the New York Philharmonic from 1966 to 1998.Needs VoteApplemanGerald AppelmanGerald K. ApplemanNew York PhilharmonicThe Cleveland OrchestraNew York Philomusica Chamber Ensemble + +1778434Anthony OrlandoAmerican classical percussionist. A member of [a27519] from 1972 to 2018.Needs VoteThe Philadelphia OrchestraPenn Contemporary Players + +1779400Thomas RolfsThomas Rolfs is Principal Trumpet of the Boston Symphony Orchestra and the Boston Pops. +Five-year tenure (1986-1991) with the Saint Paul Chamber Orchestra. + +Tanglewood Music Center Fellow in 1978. +Bachelor of Music Degree from the University of Minnesota. +Master of Music degree from Northwestern University.Needs Votehttp://www.bu.edu/cfa/profile/thomas-rolfs/Thomas Rolfs, Jr.Tom RolfsBoston Pops OrchestraBoston Symphony Orchestra + +1779537Fred Simon (3)Frederick Victor SimonPianist/keyboardist/composer + +Fred Simon has been making music for more than thirty years, composing for records, live performance, film, dance, and television, with instrumentation ranging from solo piano to symphonic orchestra. His recorded work includes seven albums of original music under his name, three albums (as principle composer) with the Simon and Bard Group, numerous appearances on compilations and samplers, and many appearances as side-musician. + +Fred has recorded and/or performed with [a=Ralph Towner] (founding member of Oregon), [a=Paul McCandless] (founding member of Oregon), [a=Larry Coryell], [a=Lyle Mays], [a=Iain Matthews] (founding member of Fairport Convention), [a=Jerry Goodman] (Mahavishnu Orchestra violinist), [a=Steve Rodby] and [a=Paul Wertico] (both with Pat Metheny Group), [a=Bonnie Herman] (Singers Unlimited), [a=Kurt Elling], [a=Fareed Haque], David Onderdonk, Ingrid Graudins, [a=Ross Traut], The Stan Kenton Orchestra and many others. +Needs Votehttp://www.facebook.com/pages/Fred-Simon/49836848623?ref=tshttps://www.musicinst.org/fred-simonhttp://www.myspace.com/fredsimonhttp://www.opendoormanagement.com/artists/fredsimon.htmlStan Kenton And His OrchestraSimon & Bard Group + +1779774José Antonio SainzJosé Antonio Sainz AlfaroSpanish conductor, chorus master of [a1169517] since 1987.Needs VoteJ.A. SainzOrfeón Donostiarra + +1780209Frances HuntFrances Dlugin née WhiteUS radio and big band singer. She was discovered by [a=Jack Yellen] at age 17 in 1933, and in the beginning of her career she sang at least with the orchestras of [a=Emil Coleman], [a=Art Coogan], and [a=Vincent Lopez (2)]. In 1937, she was singing with [a=Benny Goodman]'s orchestra. She was married to [a=Lou Bring] from 1937 until his death in 1961. + +Born: 7 October 1915 in Buffalo, New York, USA +Died: 6 February 1993 in Los Angeles, California, USANeeds Votehttp://variety.com/1993/scene/people-news/frances-hunt-104036/https://www.imdb.com/name/nm0402447/Teddy Wilson And His Orchestra + +1780229Ruth VisserRuth VisserDutch oboist and French horn player.CorrectRuth VissierConcertgebouworkest + +1780245Joe CornellHungarian accordionist, born 7 August 1902 in Budapest, Hungary, died 1993 in the United States. Needs VoteCornellJoe "Cornell" SmelzerCornell SmelserCharles CornellDuke Ellington And His Orchestra + +1780299Horst SprengerHorst Sprenger is a German violist.Needs VoteOrchester Der Deutschen Oper BerlinBerliner Streichquintett + +1781472Dorian RenceAmerican classical violist born in Oklahoma City. She joined the New York Philharmonic in May 1976.Needs VoteDorian M. RenceRenceNew York Philharmonic + +1781475David TenaCorrectOrquesta Sinfónica De Madrid + +1781476Esperanza VelascoCorrectOrquesta Sinfónica De Madrid + +1781480Luis Cosme GonzalezSpanish violoncello (cello) player.Needs VoteLuis CosmeOrquesta Sinfónica De Madrid + +1781484Angeles EgeaCorrectOrquesta Sinfónica De Madrid + +1781485Andrés MicóCorrectAndres MicóOrquesta Sinfónica De Madrid + +1781486Alexander TatnellCorrectOrquesta Sinfónica De Madrid + +1781487Marina GonzálezCorrectOrquesta Sinfónica De Madrid + +1781489Laurentiu GrigorescuClassical violinist.Needs VoteGrigorescu LaurentiuLaurentiu GregoreskoOrquesta Sinfónica De Madrid + +1781490Farhad SohrabíViolinistNeeds VoteOrquesta Sinfónica De MadridChico & Rita Madrid Band + +1781493Ricardo GarcíaRicardo García GonzálezSpanish trumpet player.Needs VoteOrquesta Sinfónica De Madrid + +1781494Holger ErnstCorrectOrquesta Sinfónica De Madrid + +1781640Charles Pierce And His OrchestraNeeds Major ChangesCharles PierceCharles Pierce & His OrchestraCharles Pierce & His OrchestreCharles Pierce And His Orchestra (1926)Charles Pierce Orch.Charles Pierce OrchestraCharles Pierce OrchestreCharles Pierce's OrchestraCharlie Pierce And His OrchestraCharlie Pierce OrchestraPierceMuggsy SpanierFrank TeschemacherMorris BercovRalph RudderJohnny MuellerDan LiscombStuart BranchPaul KettlerCharlie AltiereDick FeigeJack Reid (2)Charles Pierce (3) + +1781645Junie C. Cobb And His Grains Of CornNeeds Major ChangesJ. C. Cobb And His Grains Of CornJ.C. Cobb & His Grains Of CornJ.C. Cobb And His Grains Of CornJunie C. Cobb & His Grains Of CornJunie Cobb & His Grains Of CornJunie Cobb And His Grains Of CornHarry DialBill Johnson (4)Jimmy BlytheW.E. BurtonBob WaughEustern WoodforkPunch MillerErnie C. SmithJunie Cobb + +1781755Hanna GöranHanna Malin GöranSwedish violinist, born on February 5, 1972.Needs VoteHanna GoranHanna GöramStockholm Session StringsSveriges Radios SymfoniorkesterSnyko + +1781764Hans ÅkessonSwedish viola player.Needs VoteHans AkesonHans AkessonHans ÅkesonStockholm Session StringsSveriges Radios SymfoniorkesterSnyko + +1781774Eva JonssonSwedish classical violinist.Needs VoteSveriges Radios SymfoniorkesterDrottningholms Barockensemble + +1781934Thomas Gray (4)Thomas B. GrayJazz trumpeter and cornetist, born c. 1905. +Joined [a=King Oliver] in Chicago in 1927. Worked with [a=Junie Cobb] in 1928, [a=Boyd Atkins] in 1929, Midnight Revellers in 1930, [a=Cassino Simpson] in 1931, and others. Left full-time music to run own restaurant. In 1970 reported to be farming in Michigan.Needs VoteT. GrayThomas "Tick" GrayThomas 'Tick' GrayThomas Tick GrayThomas ´Tick´ GrayTick GrayKing Oliver & His Dixie Syncopators + +1782380Jakob Bloch JespersenDanish liner notes author and bass vocalist.Needs Votehttp://www.jakobbloch.com/index.phpBloch JespersenJacob Bloch JespersenJakob BlochTheatre Of VoicesThe Dufay CollectiveArs Nova CopenhagenVox ScaniensisPhemius Consort + +1782565Frederic PreusserClassical violinistNeeds VotePreusserOrchestre Du Théâtre Royal De La Monnaie + +1783094Jack MaiselJazz drummer from the swing eraNeeds VoteMezz Mezzrow And His OrchestraCalifornia RamblersRex Stewart And His 52nd Street Stompers + +1783126Walter LehmayerAustrian oboist and former principal oboist of the [a=Orchester Der Wiener Staatsoper].Needs VoteLehmayerWalther LehmayerOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerEnsemble Eduard Melkus + +1783127Franz BartolomeyFranz Bartolomey (23 December 1946 in Vienna - 1 December 2023) was an Austrian violoncellist. Former solo cellist at the [a=Wiener Philharmoniker].Needs Votehttps://www.franzbartolomey.at/Franz Bartholomeyフランツ・バルトロメイOrchester Der Wiener StaatsoperWiener PhilharmonikerMusikvereinsquartettKüchl-QuartettWiener Ring EnsembleWiener Virtuosen + +1783128Michael WerbaAustrian bassoonist, born 1955. He's the son of [a1112044].Needs VoteDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenWiener KammerensembleAustro-Hungarian Haydn Orchestra + +1784239Robert McIntoshBritish classical hornist.Needs VoteBob McIntoshLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraLocke Brass Consort + +1784240Stephen WardleClassical percussionist. +Former member of the [a=London Symphony Orchestra] (1986-1989).Needs VoteLondon Symphony Orchestra + +1784642Children's Chorus Of The New England ConservatoryCorrecthttp://www.necmusic.edu/childrens-chorusChildren's ChorusChildren's Chorus Of The New England Conservatory ChorusNEC Children's ChorusNew England Conservatory Boy's ChoirNew England Conservatory Chorus + +1784779Francis J. LapitinoFrancis Joseph LapitinoAmerican harpist, born 1880 in New York, New York and died in 1949.Needs VoteF.J. LapitinoFrances LapitinoFrancis J. LapitanoFrancis LapitanoFrancis LapitinoLapetinoLapitinoThe Philadelphia OrchestraVictor Symphony OrchestraNeapolitan TrioVenetian TrioFlorentine Quartet + +1786452Luis MoratóLuís Morató SalvadorSpanish trompa (French horn) player (b. 1951). Since 1970 in [a2098343] as soloist. +Founding member of [a6116477] and "Quinteto de viento de Solistas de la Orquesta Sinfónica de RTVE". +Father of [a2059967]Needs VoteL. MoratoLuis MoratoOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +1786622Magnus MehtaPercussionist, drummer, music producer and composer. London born to an Indian father and Scottish mother. Studied timpani and percussion at the [l516659].Correcthttps://www.magnusmehta.com/M. MehtaMagnus P.IRoyal Scottish National OrchestraPenyaCollocutor + +1787194Marc GinsbergAmerican violinist and former principal of the second violin section of the New York Philharmonic. He joined the orchestra in 1970 and was retired in 2014. He is husband of [a13167726].Needs VoteNew York Philharmonic + +1787195Peter KenoteAmerican violist, born in Seattle, Washington. He is member of the New York Philharmonic since 1983.Needs VoteNew York PhilharmonicNew York Philharmonic Ensembles + +1787196Randall ButlerAmerican double bassist, joined the New York Philharmonic in 1976.Needs Votehttps://www.nyphil.org/about-us/artists/randall-butler/New York Philharmonic + +1787197Heather BirksBritish classical violist, viola & violin teacher, and adjudicator. +She studied at the [l459222]. For some years she taught both violin and viola as well as freelancing with chamber orchestras in the north before joining the [a=BBC Philharmonic] Orchestra. She later moved to London and joined the [a=BBC Symphony Orchestra] and the [a=BBC Radio Orchestra]. From 1984 to 2004 she freelanced with the [a=London Symphony Orchestra] and the [a=Royal Philharmonic Orchestra]. She has played with all the major London orchestras, at the Royal Opera and English National Opera Houses. As well as maintaining a teaching schedule, she examines for the Associated Board and adjudicates at regional festivals.Needs Votehttp://btckstorage.blob.core.windows.net/site2504/Programme%202017.pdfLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraBBC PhilharmonicBBC Radio OrchestraColin Towns Mask OrchestraTHAMYSE STRING TRIO + +1787198Valentin HirsuClassical cellist of Romanian descent. He emigrated in 1975 to Israel and in 1976 to the USA. +He was member of the New York Philharmonic from 1976 to 2009.Needs VoteNew York PhilharmonicNew York Philharmonic Ensembles + +1787200Michael BurgioAmerican classical clarinetist, active for New York Philharmonic from 1960 to 2000.Needs VoteNew York Philharmonic + +1787201Marilyn DubowAmerican violinist born in Philadelphia, Pennsylvania. She was violinist for the New York Philharmonic for 52 years (1971 - 2023).Needs VoteNew York Philharmonic + +1787202Donald HarwoodAmerican bass trombonist. Actve for the New York Philharmonic from 1974 to 2007.Needs VoteNew York Philharmonic + +1787203Matitiahu BraunIsraeli classical violinist born in Jerusalem in 1940. He went to the United States in 1962 for studying violin at the Juilliard-School and joined the New York Philharmonic in 1969, where he stayed until he was retired in 2006.Needs VoteNew York Philharmonic + +1787206Vincent PenzarellaAmerican classic trumpet player born in Philadelphia. He was member of the New York Philharmonic trumpet section from 1977 to 2005,Needs VoteNew York Philharmonic + +1787207Avram LavinAmerican cellist, played for the New York Philharmonic from 1963 until 2004. Passed away July 24, 2017.Needs VoteAvram A. LavinNew York PhilharmonicThe Cleveland Orchestra + +1787208Walter BottiClassical double bassist, active in the New York Philharmonic orchestra from 1952 until 2002. He passed away January 3, 2015 in New York.Needs VoteNew York Philharmonic + +1787209Gino SambucoAmerican violinist born March 3, 1931 in Hartford, Connecticut. He joined the New York Philharmonic in 1967. +Gino Sambuco passed away April 4, 2023 in Long Island.Needs VoteGino Louis SambucoNew York PhilharmonicOrchestra U.S.A.The Galimir Quartet + +1787210Thomas V. SmithAmerican trumpet player.Needs VoteThomas SmithNew York Philharmonic + +1787211David FinlaysonAmerican trombonist, born in Washington, D.C. He joined the trombone section of the New York Philharmonic in December 1985.Needs VoteNew York Philharmonic + +1787212Oscar WeiznerClassical violinist born in Austria and immigrated to New York City. He was member of the New York Philharmonic from 1962 to 2003 and died 29 October 2005.Needs VoteNew York Philharmonic + +1787213Kerry McDermottAmerican violinist born in Lincoln, Nebraska. She joined the New York Philharmonic in 1983.Needs Votehttps://nyphil.org/about-us/artists/kerry-mcdermottNew York PhilharmonicNew York Philharmonic Ensembles + +1787214Evangeline BenedettiAmerican classical cellist born 22 February, 1941. She is credited as the first woman cello player in the New York Philharmonic where she played from 1967 to 2011, when she retired.Needs Votehttp://www.evangelinebenedetti.com/https://en.wikipedia.org/wiki/Evangeline_BenedettiNew York Philharmonic + +1787215Michael Gilbert (3)American violinist and conductor. Father of [a2435682], son of violinist [a404956] and married to violinist [a1787216]. He was born in the 1940's in Memphis, Tennessee. In 1970, he joined the New York Philharmonic and stayed until 2001. Eventually, he started to be orchestra leader and conductor e.g. of the Memphis based [a5696044].Needs VoteNew York PhilharmonicEroica Ensemble + +1787216Yoko TakebeJapanese classical violinist born in Tokyo. She moved to New York and became member of the New York Philharmonic in 1979. She retired in 2014. She is married to [a1787215] and mother of their son [a2435682].Needs VoteThe Philadelphia OrchestraNew York Philharmonic + +1787217Oscar RavinaPolish-born American classical violinist, violin teacher and concert-master +Born 27 April 1930, Warsaw, Poland; died February 25, 2010 - Essex, New Jersey, USA (age of 79). +He was member of the New York Philharmonic from 1963 to 2004. +He taught hundreds of students over three decades of teaching.Needs Votehttps://en.wikipedia.org/wiki/Oscar_Ravinahttps://www.bach-cantatas.com/Bio/Ravina-Oscar.htmOscar RavinahNew York PhilharmonicPhilharmonia VirtuosiNew York Philharmonic EnsemblesPhilharmonia String Quartet (2)The Ravina Chamber Ensemble + +1787218Hai-Ye NiCellist, born 1972 in Shanghai, China. She's the principal cello of [url=http://www.discogs.com/artist/27519-Philadelphia-Orchestra-The]The Philadelphia Orchestra[/url] since 2006.Needs Votehttp://www.haiyeni.comHai Ye NiThe Philadelphia OrchestraNew York Philharmonic + +1787219Martin Eshelman (2)American violinist born April 16, 1926 in Pittsburgh, PA, died January 21, 2020 in New York City. He joined the New York Philharmonic in 1956 and was retired in 2015, aged 89.Needs VoteEshelman MartinNew York Philharmonic + +1787221Donald WhyteCanadian violinist born in Rivers, Manitoba in 1942. In 1972, he settled to New York City and became member of the New York Philharmonic. +He died September 10, 2000 in New York from complications after surgery.Needs VoteNew York Philharmonic + +1787222Vladimir TsypinUkrainian classical violinist born in Lozovaya, Ukraine, U.S.S.R. In 1993, he immigrated to the United states and became violinist for the New York Philharmonic. From 1986 to 2002 he was "Assistant Principal Second Violin", he stayed member of the orchestra until 2018.Needs VoteNew York Philharmonic + +1787224Judith Nelson (2)American violist, born in Portland, Oregon. She joined the New York Philharmonic in 1983 and retired from the orchestra in 2019.Needs VoteNew York PhilharmonicNew York Philharmonic Ensembles + +1787226Newton MansfieldClassical violinist born in Poland who has played in the New York Philharmonic since 1961. He became an American citizen in 1946. He played with the Houston Symphony in 1948, the Baltimore Symphony beginning in 1949, the Robert Shaw Chorale beginning in 1951, the Pittsburgh Symphony for 7 years, and The Metropolitan Opera from 1959 to 1961. He retired in 2016 and died April 6, 2018.Needs Votehttps://nyphil.org/about-us/artists/newton-mansfieldMansfield NewtonNew York PhilharmonicHouston Symphony OrchestraBaltimore Symphony OrchestraThe Robert Shaw ChoralePittsburgh Symphony OrchestraThe Metropolitan Opera House Orchestra + +1787227Andrew PollockBritish classical violinist, violin teacher, and orchestral & chamber music coach. Born in Manchester, England, UK. +He joined the [a=London Symphony Orchestra] as associate member in April 1984, becoming full member in 1985. Between September 1997 and August 2019 he was Head of Strings, teaching violin & viola, orchestral & chamber music coaching at [l969641].Needs Votehttps://www.linkedin.com/in/andrew-pollock-25b39748/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/pollock-andrew/https://lso.co.uk/orchestra/players/strings.htmlAndrew PollackLondon Symphony OrchestraLondon Symphony Orchestra Strings + +1787228Karen BradleyBritish classical violist, orchestral turor and viola teacher. Born in Liverpool, England, UK. +She studied at the [l527847]. As a student, she was Principal Viola of the [a=European Community Youth Orchestra]. On graduating, she became a member of the [a=London Symphony Orchestra] where she played for 9 years (1989-1997). Since then she has worked as a freelance player. Orchestral tutor and viola teacher at the [l290263].Needs Votehttps://www.facebook.com/people/Karen-Bradley/100009204171549/?paipv=0&eav=Afbbg6AQgVPJQ_g_ctKoGdJS1xSrsQQvqEBhI7uN7Ocobj5ZZDXMYu14eGsm3kx3kiE&_rdrhttps://www.rcm.ac.uk/junior/rcmjdteachers/details/?id=03491London Symphony OrchestraEuropean Community Youth Orchestra + +1787229Orin O'BrienAmerican double bassist active for the New York Philharmonic orchestra from 1966 to 2021.Needs VoteNew York PhilharmonicMarlboro Festival Orchestra + +1787232Michael Spencer (4)Classical violinist. +Formerly a violinist with the [a=London Symphony Orchestra] (1986-2001), he moved from being a full time performer to becoming Head of Education at the [l=Royal Opera House].Needs Votehttps://wwf.panda.org/_/multimedia/tedxwwf/events/geneva/speakers/michael_spencer/London Symphony Orchestra + +1787233Christopher S. LambGrammy-awarded American classical percussionist born March 28, 1959 in Sandusky, Ohio. He joined the New York Philharmonic in 1959. +In 2011 he received the Grammy for "Best Classical Instrumental Soloist" for his recording of Schwantner’s Percussion Concerto with the Nashville Symphony.Needs Votehttps://nyphil.org/about-us/artists/christopher-s-lambhttp://www.innovativepercussion.com/artists/christopher_s_lambChristopher LambNew York PhilharmonicNew York Philharmonic Ensembles + +1787234L. William KuyperAmerican classical horn player. In 1969, he joined the New York Philharmonic's horn section and retired in 2007.Needs VoteKuyperNew York Philharmonic + +1787237Eugene LevinsonЕвгений ЛевинзонClassical double bassist who was born in Kiev, Ukraine. Played in the Leningrad Philharmonic Orchestra for 15 years and the Leningrad Chamber Orchestra for 13 years. Played as Principal Bass in the Minnesota Orchestra after moving to the United States in 1977 and later joined the New York Philharmonic in 1984. Was active in this orchestra until 2011.Needs Votehttps://en.wikipedia.org/wiki/Eugene_LevinsonE. LevinsonEugen LevinsonЕ. ЛевинзонЕ. ЛевинсонЕвгений ЛевинзонNew York PhilharmonicLeningrad Philharmonic OrchestraMinnesota OrchestraLeningrad Chamber Orchestra + +1787238Katherine GreeneAmerican violist from New York, who joined the New York Philharmonic in 1990.Needs VoteKathy GreeneNew York Philharmonic + +1787239Joseph Robinson (2)American oboist. He served as Principal Oboe of [a388185] from June 1978 to September 2005.Needs Votehttp://oboejoe.net/Joe RobinsonJoseph L. RobinsonRobinsonNew York PhilharmonicAtlanta Symphony OrchestraClarion Wind Quintet + +1787240Jacques MargoliesClassical violinist. +Born c.1917 New York City, New York Died August 29, 2002, (age of 85) +Margolies began playing at the age of nine and was considered a child prodigy and received a Philharmonic-Symphony Society of New York scholarship at age thirteen. He studied with Hans Lange, assistant concert master. He made his professional debut at the age of seventeen in 1935. +In 1937, sponsored by the Philharmonic, he was sent for the entire summer in Paris to study with George Enesco, after which he embarked on a tour of Europe, giving recitals in London, Rome, Milan, The Hague, Brussels and Budapest. +His orchestral career began in 1939 with the Pittsburgh Symphony Orchestra. He originally joined the New York Philharmonic Orchestra in 1942, but left in 1946 to pursue a solo career. He played in dance bands, radio orchestras, at ballets, and on TV shows. He gave a Carnegie Hall recital in 1948, and several Town Hall recitals in the early 1960's. +He returned to the Philharmonic-Symphony Society of New York in 1964, and was due to retire on October 1, 2002.Needs Votehttps://bklyn.newspapers.com/clip/40967386/the-brooklyn-daily-eagle/https://archives.nyphil.org/index.php/artifact/433943f1-889b-47d6-bfef-04d1f8ddc725-0.1/fullview#page/1/mode/1uphttps://www.pbs.org/wnet/americanmasters/archive/interview/jacques-margolies/Jack MargoliesNew York PhilharmonicPittsburgh Symphony Orchestra + +1787241Igor GefterRussian classical cellist, based in Canada. He has played in the Toronto Symphony Orchestra since 2006. He previously played in the Fort Worth Symphony Orchestra and the New York Philharmonic for 8 years.Needs Votehttps://www.tso.ca/orchestra/members-of-the-orchestra/igor-gefter/New York PhilharmonicToronto Symphony OrchestraFort Worth Symphony OrchestraGrand Teton Music Festival Orchestra + +1787242Carter BreyAmerican cellist, appointed principal cello of the [a327356] in 1996.Correcthttps://en.wikipedia.org/wiki/Carter_Breyhttps://nyphil.org/about-us/artists/carter-breyBreyNew York Philharmonic + +1787243Lew NortonAmerican double bassist, born 3 February 1936, died 2 November 2014. +Active in the New York Philharmonic orchestra from 1967 to 2006.Needs VoteNew York Philharmonic + +1787244Charles RexAmerican violinist born in Winter Park, Florida. He joined the New York Philharmonic in 1980 and became associate concertmaster, which he stayed untill 1999. He was retired from the orchestra in 2017.Needs VoteThe Philadelphia OrchestraNew York Philharmonic + +1787245David Carroll (4)American Bassist and Bassoonist. Active for the New York Philharmonic orchestra from 1983 to 2000. + +For the Austin, Texas blues and country bassist, please use [a=David Carroll (7)].Needs VoteDavid H. CarrollNew York PhilharmonicOrchestre symphonique de MontréalPro Arte Wind Quintet + +1787246David J. GrossmanAmerican double bassist and composer.Needs Votehttp://www.davidjgrossman.com/David GrossmanNew York PhilharmonicThe Los Angeles Chamber Orchestra + +1787247Pierre BensaidFrench classical violinist and Professor of Violin. +He studied at the [l527847] (1994-1998). He began an international career in chamber music with the [a=Kempf Trio]. He played for six years with the [a=London Symphony Orchestra]. In September 2005, he was appointed Professor of Violin at the Conservatoire National de Région de Nice.Needs Votehttps://www.facebook.com/pierre.bensaid.3/https://www.linkedin.com/in/pierre-bensaid-b5424335/?originalSubdomain=frhttps://www.conservatoire-nice.org/enseignement/cv_profs/cv_bensaid.htmLondon Symphony OrchestraKempf Trio + +1787248Rebecca Scott (2)Rebecca Scott-SmissenBritish classical violinist. +She graduated from the [l459222]. She then moved to the US to study at the [l767724] and the [l840143]. While in USA, she became a member of [a4499682]. Returning to London in 1991, she freelanced in the [a=London Symphony Orchestra], the [a=Philharmonia Orchestra] and [a=The Royal Philharmonic Orchestra]. The following year she became a member of [a=The Academy of St. Martin-in-the-Fields]. Also member of the [a=City Of London Sinfonia], [a=The Orchestra Of St. John's], and the [b]Quartetto Familia[/b]. +Wife of [a=Bob Smissen].Needs Votehttps://www.asmf.org/musician-profiles/Rebecca Scott-SmissenLondon Symphony OrchestraCity Of London SinfoniaPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsThe Orchestra Of St. John'sCorky Siegel's Chamber Blues + +1787249Caroline O'NeillClassical viola player. Died in 2020. +Guest viola player with the [a=London Symphony Orchestra] for many years. +She was wife of [a=Colin Renwick].Needs VoteCarolineCaroline O' NeillCaroline O'NeilLondon Symphony OrchestraRoyal Philharmonic Orchestra + +1787251Michele SaxonClassical bassist born in Brooklyn, New York, who played in the New York Philharmonic from 1970 until 2009.Needs VoteNew York Philharmonic + +1787252Hanna LachertHanna Lachert-SegalPolish violinist born November 25, 1944 in Podkowa Lesna, General Governorate for the Occupied Polish Region as brother of [a4565454]. She immigrated to the USA in 1969. +She joined the New York Philharmonic in 1972 and retired from that position in 2012. +She was co-founder of the American Society for Polish Music in 1991 and was its president until 1997.Needs Votehttp://www.hannalachert.com/New York Philharmonic + +1787253Patrick LaurenceBritish classical double bass player. Born in 1958 in London, England, UK. +He studied at the [l290263] before joining [a=The English National Opera Orchestra] in 1979. In 1982 he joined the [a=London Symphony Orchestra].Needs Votehttps://www.feenotes.com/database/artists/laurence-patrick/https://lso.co.uk/orchestra/players/strings.html#Double_basseshttps://www.imdb.com/name/nm8490537/Patrick LawrenceLondon Symphony OrchestraThe English National Opera Orchestra + +1787254Roland KohloffRoland L. KohloffAmerican timpanist, born 20 January 1935 in Port Chester, NY and died of cancer on 24 February 2006 in Bronx, New York. +He was principal timpanist for the New York Philharmonic from 1972 to 2005.Needs VoteNew York PhilharmonicSan Francisco SymphonyThe All Star Percussion Ensemble + +1787255William HaskinsBritish classical French horn player and organist. +He first joined the [a=BBC National Orchestra Of Wales] in the summer of 1979 as 2nd horn for five years. He then joined again in April 2004 as 4th horn. In the intervening years he was 2nd horn of the [a=London Symphony Orchestra] (1985-2002). He has been the resident organist for the City United Reformed Church on Windsor Place in Cardiff.Needs Votehttps://www.bbc.co.uk/programmes/profiles/5KvN3xsmhTJF2ZJszmJ18Y9/out-of-hours-bill-haskins-hornhttps://www.imdb.com/name/nm10718661/London Symphony OrchestraBBC National Orchestra Of Wales + +1787257Colin ParisClassical double bass player, and Professor of Double Bass. +He attended [l305416]. Whilst in the final year of his studies, he was offered a position with the [a=Bournemouth Symphony Orchestra], with whom he played for two years. He later went on to play with the [a=BBC Concert Orchestra]. He then freelanced until 1983, when he was appointed Sub-Principal Double Bass with [a=The English National Opera Orchestra] where he remained until joining the [a=London Symphony Orchestra] in 1988. He played with the orchestra for 33 years until his retirement in June 2021, almost 30 of those as Co-Principal Double Bass (since 1991). Professor of Double Bass at the Guildhall School of Music & Drama.Needs Votehttps://www.linkedin.com/in/colin-paris-513a6b21/?originalSubdomain=ukhttps://open.spotify.com/artist/6VoXiFFUoMCHIVD0YeZGtnhttps://music.apple.com/my/artist/colin-paris/31770438https://www.feenotes.com/database/artists/paris-colin/https://www.thestrad.com/news/co-principal-double-bass-of-london-symphony-orchestra-retires/13144.articlehttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/1-department-of-strings-harp-and-guitar/43-colin-paris/London Symphony OrchestraBournemouth Symphony OrchestraBBC Concert OrchestraThe English National Opera Orchestra + +1787259Karin Brown (3)Classical viola player who is assistant principal viola in the [a884062].Needs Votehttps://www.bsomusic.org/bio/karin-brown/Karen BrownNew York PhilharmonicBaltimore Symphony OrchestraThe Metropolitan Opera House Orchestra + +1787260Barry LehrAmerican classical violist from New York. He was member of the New York Philharmonic from 1972 to 2011.Needs VoteNew York Philharmonic + +1787645George KiszelyHungarian-born viola player active in Brazil, where he moved to, in 1947. + +b.: November 25, 1930 - Budapest, Hungary +d.: 2010Needs Votehttps://www.abrav.art.br/homenageadosG. KiszelyJorge KiszelyKiszelyOrchestra Del Teatro Dell'Opera Di RomaOrquestra Do Teatro Municipal Do Rio De JaneiroOrquestra Sinfônica De São PauloQuarteto De Cordas Da Rádio MECOrquestra Sinfônica Da Universidade De São Paulo + +1788151Ernie C. SmithJazz & swing-band saxophonistNeeds VoteChester SmithErnie SmithJunie C. Cobb And His Grains Of CornJay Whidden And His New Midnight Follies BandPiccadilly Revels BandKansas City Tin Roof Stompers + +1788229Nancy HuntAmerican violinist.CorrectRochester Philharmonic Orchestra + +1788230Wilfredo DeglansWilfredo DeglánsAmerican violinist and concertmaster.CorrectRochester Philharmonic Orchestra + +1788233Ellen RathjenAmerican violinist.CorrectRochester Philharmonic OrchestraRochester Chamber Orchestra + +1788255Jean Pougnetb.: July 20, 1907 (Mauritius) +d.: July 14, 1968 + +Mauritian-born concert classical violinist and orchestra leader, of British nationality.Needs Votehttps://en.wikipedia.org/wiki/Jean_Pougnethttps://adp.library.ucsb.edu/names/359020J. PougnetLondon Philharmonic OrchestraDebroy Somers BandLondon Baroque Ensemble + +1788274Clem LawtonClement LawtonBritish jazz brass bass and tuba player. +Member of the long-defunct [b]Yorkshire Symphony Orchestra[/b], in which he ended his days playing tuba.Needs VoteLawtonJack Hylton And His OrchestraPhilharmonia OrchestraPiccadilly Revels BandJack Hylton And His 22 Boys + +1788292Patrick Jones (3)Cello player.Needs VoteRoyal Philharmonic Orchestra + +1788881E. O. PogsonEdward Owen PogsonAka Edward Owen "Poggy" Pogson. + +British jazz instrumentalist (mostly alto saxophone, but also reeds, flute and the likes) of the 1920's and the 1930's. +He worked together with bandleaders like Jack Payne and Jack Hylton.Needs VoteE O "Poggy" PogsonE O 'Poggy' PogsonE O PogsonE.O. "Poggy" PogsonE.O. 'Poggy' PogsE.O. 'Poggy' PogsonE.O. Poggy PogsonE.O. PogsonEdward O. PogsonPoggyJack Hylton And His OrchestraBenny Carter And His OrchestraJack Jackson And His OrchestraVictor Silvester and His Ballroom OrchestraHugo Rignold & His OrchestraHerman Darewski & His Band + +1789214Happy GoldstonChristopher GoldstonUS jazz drummer. Born 27.11.1894 in New Orleans, died 17.03.1968 in New Orleans. + +Amos Riley's Tulane Orchestra +Punch Miller and the Osward Brass BandNeeds VoteChristopher "Black Happy" GoldstonChristopher 'Black Happy' GoldstonChristopher GoldsonChristopher GoldstonChristopher GoldstoneChristopher ‘Black Happy’ GoldstonOriginal Tuxedo Jazz Orchestra + +1789215Ricard AlexisAmerican jazz bassist and trumpeter. + +Born : October 16, 1891 in New Orleans, Louisiana. +Died : March 15, 1960 in New Orleans, Louisiana. + +Ricard worked (among others) with Paul Barbarin, Papa Celestin, Percy Humphrey and Bob Lyons.Needs Votehttps://musicrising.tulane.edu/listen/interviews/ricard-alexis-1959-01-16/Richard AlexRichard AlexisOriginal Tuxedo Jazz OrchestraPaul Barbarin And His Jazz Band + +1789216Octave CrosbyJazz pianist and vocalist. Born June 10, 1898 in New Orleans, died in October 1971 in New OrleansNeeds Votehttp://www.knowlouisiana.org/entry/octave-crosbyOriginal Tuxedo Jazz OrchestraThe Paddock Jazz BandBill Matthews & His New Orleans Dixieland BandOctave Crosby's Ragtime Band + +1789853Cécile BrossardCécile BrossardFrench violist.Needs VoteQuatuor BenaïmLes Musiciens Du LouvreLe Cercle De L'HarmonieQuatuor CambiniEnsemble CairnOrchestre Tous En CœurOrchestre National De Montpellier + +1790355Edward VitoAmerican harpist, composer, and conductor, born in 1901 and died in 1990. +Brother of harpist [a1769131] and father of harpists [a7118075] and [a2004628]. +At the age of fifteen, he was a full-fledged member of the Cincinnati Symphony Orchestra. +He is associated with conductor [a888854] and the NBC Symphony, for which he became manager of at its inception in 1937 and remained with it for at least the next 15 years. The harp sounds on all Toscanini's records with the NBC Symphony are exclusively his. +From a American Record Guide review of "Harp Recital" recorded by Period on SPL-704, "He is an elegant performer who can conjure tones that have the liquid purity of flowing water in a brook, an exquisite legato and poetic feeling." +Needs Votehttp://theblues-thatjazz.com/pl/klasyczna/1586-compilation/16817-french-harp-music-edward-vito-1964.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109397/Vito_EdwardEd VitoEdwardEdward Vito At The HarpVitoNBC Symphony OrchestraThe Cleveland OrchestraCincinnati Symphony Orchestra + +1790563Bob AchillesUS big band baritone saxophone and clarinet player (* 30 September 1937 in Evansville, Indiana, USA).Needs Votehttps://sites.google.com/nhj.k12.in.us/indianamusicmakers/jazz/bob-achillesHarry James And His Orchestra + +1790796Alois BenetkaSongwriterNeeds VoteA. BenetkaBenetkaRudolf KapplerAlbert DopplerFranz Waidhofer + +1791592Silvina SapereClassical violistNeeds VoteOrchestra Di Padova E Del Veneto + +1791707Cesario GussagoCesario Gussago (fl.1599-1612) was an Italian musician and composer of the late Renaissance and early Baroque era.Needs Votehttp://en.wikipedia.org/wiki/Cesario_GussagoCesareo GussagoGussago C. + +1791709Aurelio BonelliAurelio Bonelli (c.1569 – after 1620) was an Italian composer, organist and painter. Born in Bologna, practically nothing is known about him save that he was student of the painter Agostino Carraccis. After Adriano Banchieri moved to Imola in 1601 Bonelli took his job as organist at San Michele in Bosco.Needs Votehttps://en.wikipedia.org/wiki/Aurelio_BonelliBonelli + +1792225Christoph SchulzeGerman Viola da Gamba instrumentalist.Needs VoteVirtuosi Saxoniae + +1793283Elissa LeeCanadian violinist, born in Toronto, Ontaria, Canada.Needs Votehttp://www.elissa-lee.de/WDR Sinfonieorchester KölnThe Chamber Orchestra Of EuropeOslo Filharmoniske OrkesterKahedi Radio OrchestraElissa Lee EnsembleEnsemble Made In Canada + +1793415Hjalmar NortamoFrans Hjalmar Nortamo, born NordlingFrans Hjalmar Nortamo, originally Nordling, pen name Hj. Nortamo (13 June 1860 Rauma – 30 November 1931 Pori) was a Finnish dialect writer, professor and doctor.Needs VoteH. J. NortamoH. NortamoH.J. NortamoHj NortamoHj. NortamoHj. NostamoHj.NortamoNortamohj. Nortamo + +1793540Etienne LestringantClassical tenor.CorrectÉtienne LestringantLes Arts Florissants + +1793541Jay BernfeldViol & Viola da Gamba instrumentalist.Needs Votehttps://fr.wikipedia.org/wiki/Jay_BernfeldLes Arts FlorissantsHesperion XXSchola Cantorum BasiliensisCapriccio StravaganteOpera FuocoFuoco E Cenere + +1793842Carolyn McIntoshAmerican cellist.Needs VoteSan Francisco SymphonyPorter String Quartet + +1793879Malin BromanMalin Sigrid BromanSwedish violinist, concertmaster in the [a380036], member of [a2796378] and [a851241], born 24 May 1975. + +She is a frequently hired violinist, both as a soloist and as a chamber musician. She also teaches at the Guildhall School of Music and Drama in London. She has previously taught at the University of Stage and Music at the University of Gothenburg. + +Broman won third prize in the Eurovision Song Contest for young musicians in 1994 and the same year she won first prize and audience prize in the Washington International Competition for Strings, Washington DC. In 1996 she won second prize in the Carl Nielsen International Violin Competition in Odense, Denmark. + +Malin Broman is the grand-niece of [a2120484].Needs Votehttp://malinbroman.com/https://sv.wikipedia.org/wiki/Malin_BromanSveriges Radios SymfoniorkesterThe Nash EnsembleThe Gaudier EnsembleKungsbacka Piano TrioStockholm Syndrome Ensemble + +1793880Lawrence Power (2)British viola player, born in 1977.Needs Votehttps://web.archive.org/web/20160623022911/http://www.lawrencepowerviola.com/https://en.wikipedia.org/wiki/Lawrence_PowerThe Nash EnsembleThe Leopold String Trio + +1793881Pierre DoumengeFrench classical cellist, teacher and photographer, living in London. +Member of the Dante String Quartet from 2001 to 2005, he also works as guest principal cellist of the Orchestra of the Age of Enlightenment, the English Chamber Orchestra and the London Chamber Orchestra.Needs Votehttp://www.pierredoumenge.comhttps://twitter.com/pierredoumengehttp://www.gsmd.ac.uk/music/staff/teaching_staff/department/1-department-of-strings-harp-and-guitar/33-pierre-doumenge/English Chamber OrchestraThe London Chamber OrchestraOrchestra Of The Age Of EnlightenmentBergen Filharmoniske OrkesterDante QuartetSinfonia Of London Chamber Ensemble + +1793930Rossinus MantuanusRossino Mantovano (Latin: Rossinus Mantuanus "Rossino of Mantua") (fl. 1505-1511). Italian composer of madrigals. Needs Votehttps://en.wikipedia.org/wiki/Rossino_MantovanoMantovanoR. MantovanoR. MontovanoR.MantovanoRosinus MantuanusRossana Da MantuaRossino Da MantovaRossino MantovanoRossino Montovano + +1793952Dolly HoustonRosemarie Anastas née AlthausenVocalist, famous in the 1950s. She also sang for a number of big band leaders, such as [a=Woody Herman], [a=Larry Clinton], [a=Benny Goodman], and [a=Frankie Carle]. + +Born: 25 March 1930 in Bridgeport, Connecticut, USA +Died: 26 April 1995 in Bridgeport, Connecticut, USANeeds VoteDollie HoustonWoody Herman And His OrchestraWoody Herman And His Third Herd + +1794453Ana Beatriz ManzanillaVenezuelan classical violinistNeeds VoteGulbenkian Orchestra + +1794556Jack MayhewAmerican saxophonist and clarinetist.Needs VoteJack MayhemLouis Armstrong And His OrchestraPaul Whiteman And His OrchestraJohn Scott Trotter And His OrchestraSkinnay Ennis And His OrchestraLou Bring And His OrchestraGinny Simms And Her Orchestra + +1795599Robert DrägerBassoon player.Correcthttp://www.staatsoper-berlin.de/de_DE/person/robert-draeger.24560Staatskapelle BerlinBoris Blacher Ensemble + +1795707Dimitri ScapolanEngineer.Correct + +1796040Catherine CournotFrench classical pianistNeeds VoteOrchestre Philharmonique De Radio France + +1796042Hélène ColleretteFrench violinistNeeds Votehttp://www.helenecollerette.com/biographieHélène Brannens-ColleretteOrchestre Philharmonique De Radio France + +1797004Peter RainerGerman violinistNeeds VoteKammerakademie PotsdamMax Brod Trio + +1797007Cyril GhestemFrench violinist.Needs VoteCyril GhesthamCyril GuesternOrchestre National De L'Opéra De Paris + +1797020Yuan Qing YuYuan-Qing YuChinese-American violinist.Needs Votehttps://www.yuanqingyu.com/https://www.cso.org/about/performers/chicago-symphony-orchestra/violins/yuan-qing-yu/Yuan-Qing YuChicago Symphony OrchestraCivitas Ensemble + +1797035Tomas HostickaTomáš HostičkaClassical cellistNeeds VoteTomáš HostičkaThe Czech Philharmonic Orchestra + +1797041Vesselin DemirevBulgarian violinistNeeds VoteNeo CamerataAalborg Symfoniorkester + +1797048Frederic BardonFrédéric BardonClassical violinistNeeds VoteOrchestre De L'Opéra De Lyon + +1797454Miguel Angel CuestaMiguel Angel Cuesta JamarSpanish violin player.Needs VoteM. A. CuestaMiguel A. CuestaMiguel A. Cuesta JamarMiguel Angel Cuesta JamarMiguel Angel Cuesta YamarMiguel CuestaOrquesta Sinfónica de RTVE + +1797455Enrique AsensiEnrique Asensi AsensiSpanish french horn (trompa) player.Needs VoteOrquesta Sinfónica de RTVE + +1797457Pedro RosasPedro Rosas GonzálezPedro Rosas González is a Spanish violin player. +[b]Please use [a9308632][/b] for the composer of huapangos like "El Querreque".Needs VoteP. RosasPedro Rosas GonzalezPedro Rosas GonzálezOrquesta Sinfónica de RTVE + +1797460Maria Isabel GayosoSpanish violin playerNeeds VoteGayosoI. GayosoIsabel GayosoMaria I. GayosoMaria Isabel GallosoMª Isabel Galloso LópezMª Isabel GayosoMª Isabel Gayoso LópezOrquesta Sinfónica de RTVE + +1797700Olavi KaruOlavi Erkki KaruBorn on March 15th, 1916 in Lempäälä, Finland. Died on June 23rd, 1992 in Espoo, Finland. A Finnish movie script author and composer.CorrectKaruO. KaruE. V. Rutanen + +1798000Ruth RossBritish freelance/wedding classical trumpet/baroque trumpet/soprano trumpet/flugelhorn player, and teacher. Born in Scotland, UK. +She studied at the [l290263]. She was Lead Trumpet in [a=The Charleston Chasers (2)] and the [b]Royal Opera House Tea Dance Orchestra[/b]. Co-Principal trumpet of [b]English Touring Opera[/b] since 2005 and member of [b]St. George's Chamber Orchestra[/b].Needs Votehttps://www.dacapo.co.uk/dacapo-affiliates/ruth-rosshttps://stgeorgesarts.co.uk/event/festival-finale-german-baroque-masters-st-georges-chamber-orchestra/http://www.lmmuk.co.uk/band/Wedding+TrumpeterLondon Symphony OrchestraThe Charleston Chasers (2) + +1798828Martin DerungsClassical harpsichordistNeeds VoteM. DerungsMartin DerungCollegium Musicum ZürichRicercare-Ensemble Für Alte Musik, Zürich + +1798833Beat HelfenbergerSwiss classical cellistNeeds VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +1799369Roy BurnsAmerican jazz drummer, percussionist and educator. +Roy played (among others) with Woody Herman and Benny Goodman. His name sometimes appeares (incorrectly) as Roy Burnes, Ray Burnes and Roy Burness on recordings. + +b. Nov. 30, 1935 in Emporia, KS. +d. May 2, 2018, Fullerton, CA + +Needs Votehttp://www.drummerworld.com/drummers/Roy_Burns.htmlBurnsLeRoy BurnesLeroy BurnsLeroy BurnesLeroy BurnsR. BurnsRay BurnesRoy BurnesRoy BurnessTeddy Wilson TrioBenny Goodman And His OrchestraThe Charlie Shavers Quartet + +1800290Hal SchaeferHarold Herman SchaeferAmerican jazz pianist and composer. +Born July 22, 1925 in New York City (Queens), New York. +Died December 08, 2012 in Fort Lauderdale, Florida. +Married singer [a4881077] in 1955, marriage ended in divorce. + +Hal worked (and recorded) with : Marilyn Monroe, Benny Carter, June Christy, Peggy Lee, Stan Kenton, Billy Eckstine, Boyd Raeburn and others.Needs Votehttps://web.archive.org/web/20190409040159/http://www.halschaefer.com/B. SchaeferH. SchaeferHal SchaefferHal SchafferHal ShaeferHal ShaefferSchaeferHarry James And His OrchestraWoody Herman And His OrchestraBoyd Raeburn And His OrchestraThe Hal Schaefer QuintetWoody Herman And His Third HerdHal Schaefer And His OrchestraHal Schaefer TrioThe Dave Barbour Quartet + +1801104Eleanor HarriesBritish classical alto vocalistNeeds Votehttps://www.facebook.com/eleanor.harries.9Eleanor Harries ClarkEleanor Harries ClarkeEleanor ClarkeLondon VoicesStile AnticoThe Eric Whitacre Singers + +1801108Alison HillBritish soprano vocalistNeeds Votehttps://www.alisonhill.org.ukAli HillAlison Ponsford-HillLondon VoicesThe SixteenThe Monteverdi ChoirGalanStile AnticoTenebrae (10)Retrospect Ensemble + +1801109Oliver HuntBass vocalistNeeds VoteHuntLondon VoicesStile AnticoThe Choir Of Trinity College, Cambridge + +1801110Benedict HymasBritish alto & tenor vocalistNeeds Votehttps://www.benedicthymas.comBen HymasBenedict HimasBenjamin HymasMagnificatLondon VoicesCollegium VocaleTonus PeregrinusStile AnticoThe Eric Whitacre SingersSynergy VocalsTenebrae (10)AlamireContrapunctus (2)La Grande Chapelle + +1801111Carris JonesBritish classical alto vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Jones-Carris.htmLondon VoicesStile AnticoTenebrae (10)Alamire + +1801328The Roy Eldridge QuintetNeeds Major ChangesQuinteto De Roy EldridgeRoy Eldridge QuintetThe Roy Eldrige QuintetRay BrownBarney KesselOscar PetersonRoy EldridgeJ.C. Heard + +1802107Jennifer Smith (3)Portuguese soprano singer, born 13 July 1945 in Lisbon, based in London.Needs Votehttp://en.wikipedia.org/wiki/Jennifer_Smith_%28soprano%29J. SmithJ.SmithSmithThe Monteverdi ChoirSegréis de Lisboa + +1802386Janet CrouchJanet Crouch ShulmanProfessional cellist and professor of Alexander Technique at [l650826]. +She studied at the [l290263] and at the [l527847]. She has performed with the [a=Royal Philharmonic Orchestra], the [a=Philharmonia Orchestra] of London, the [a=Glyndebourne Festival Orchestra], the [a=Britten Sinfonia], [a=The Hollywood Studio Symphony] Orchestra, the [a=London Sinfonietta] and [a=The Academy of Ancient Music]. Particularly interested In chamber music, she has worked with many leading groups including the [a=Endymion Ensemble], and the [a=Almeida Ensemble]. +Assistant professor of cello at the Royal College of Music, London (1987-1999). +Wife of [a=Andrew Shulman].Needs Votehttps://www.facebook.com/janet.c.shulmanhttps://www.linkedin.com/in/janet-shulman-70067117/https://www.csun.edu/mike-curb-arts-media-communication/music/janet-crouch-shulmanhttp://www.naturalpoise.com/janetbiography.htmlhttps://www.masters.edu/adjunct-faculty/janet-crouch-shulman.htmlhttps://dramaticarts.usc.edu/janetshulman/Janet M. ShulmanMr. Andrew ShulmanRoyal Philharmonic OrchestraLondon SinfoniettaThe Hollywood Studio SymphonyPhilharmonia OrchestraThe Academy Of Ancient MusicBritten SinfoniaEndymion EnsembleGlyndebourne Festival OrchestraAlmeida Ensemble + +1803223Ray FlorianAmerican saxophonist.Needs VoteStan Kenton And His OrchestraStan Kenton's Melophoneum Band + +1803224Joe BurnettJoe E. BurnettAmerican jazz trumpeter. Played with Stan Kenton, Woody Herman, and Maynard Ferguson, where he met his wife, noted Jazz Singer Irene Kral. (They were married in 1958 and divorced in 1975.) He worked in Hollywood, was the musical director for Julie London, and his credits include "The Glen Campbell Show", "The Smothers Brothers", "Jaws", "Close Encounters", and "The Towering Inferno".Needs VoteBurnettJoe BJoe BurnetteJoe E. BurnettWoody Herman And His OrchestraStan Kenton And His OrchestraThe Woody Herman Big BandDick Grove Big BandShorty Rogers Big BandWoody Herman And His Third HerdStan Kenton's Melophoneum BandMed Flory Orchestra + +1803225Tom RingoTrombonistNeeds VoteStan Kenton And His OrchestraThe Big Band Of Al CobineStan Kenton's Melophoneum Band + +1803226Lou GascaAmerican mellophonium player.Needs VoteStan Kenton And His OrchestraStan Kenton's Melophoneum Band + +1803227Bucky CalabreseBass playerNeeds VoteStan Kenton And His OrchestraStan Kenton's Melophoneum BandPete Compo Jazz Violin QuartetPeter Compo Quintet + +1803408Jose Antonio CarrilBaritone [b]vocalist[/b]. Born in San Sebastian, Spain.Needs VoteCarrilJosé Antonio CarrilLe Concert Des nationsLa Grande Ecurie Et La Chambre Du RoyEnsemble ElymaRicercar ConsortAlia Mvsica + +1804470Cayetano CastañoClassical oboistNeeds VoteCayetano CastañosOrquesta Sinfónica De Madrid + +1804818Dieter HärtwigDieter Härtwig (*July 18, 1934 in Dresden - ✝ December 30, 2022) was a German musicologist and and chief dramaturge of the [a854918].Needs Votehttps://www.dnn.de/kultur/regional/dresden-langjaehriger-chefdramaturg-der-philharmonie-gestorben-H2D5NUUQAS3FYAHUALCN3SXOCQ.htmlDresdner Philharmonie + +1804986John Edney (2)Needs Major Changes + +1805460George WhitemanDesigner & Photographer, co-founder of [a1833351] Studio +CorrectGeo S. WhitemanGeo. S. WhitemanGeo. WhitemanGeoge S. WhitemanGeorge S WhitemanGeorge S. WhitemanGeorge S. WhitmanGeorge S. WithemanGeorges S. WhitemanGeorges WhitemanGeroge S. WhtiemanGribbitt! + +1805583Horst Fuchs (2)German bassoonist.Needs VoteGewandhausorchester Leipzig + +1805989Andrea PaniItalian classical violist, active in recording since 1988. He is a member of the Quartetto Del Maggio Musicale Fiorentino, drawn from members of [a=I Cameristi Del Maggio Musicale Fiorentino].CorrectOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale Fiorentino + +1806452Harry LangdonHarry Philmore LangdonHarry Langdon Jr. is an American photographer focused in Hollywood celebrities. +Son of silent actor Harry Philmore Langdon Sr. (1884-1944). +For copyright © credits use [l463867].Needs Votehttp://www.harrylangdon.com/https://www.youtube.com/user/totallytransparent/videosH. LangdonH.LangdonHarry LangdHarry Langdon / Shotting StarHarry Langdon Of Beverly HillsHarry Langdon PhotographyHarry Langdon, Jr.Harry Langdon, LAHarry Langdon/Shooting StarHarry LangonLandonLangdonHarry Langdon Photography + +1806675Uwe-Karl KraehnkeBassoon/FagottNeeds VoteKammerorchester Berlin + +1806884Burkhard Schmidt (2)Classical cellistNeeds VoteBurkhard SchmidtBurkhardt SchmidtGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1807063Spinout (3)Needs Major Changes + +1807064CantosisNeeds Major Changes + +1807575Francis BaurFrench trombonist, born in 1961. He was a member of the [a3578838] from 1987 to 2021.Needs VoteStuttgarter Philharmonikerhr-SinfonieorchesterVibraphone Spécial ProjectStrasbourg Brass Quintet + +1807907Armin MännelClassical trumpeterNeeds VoteA. MännelGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1807909Manfred Uhlig (2)Classical trombonistNeeds VoteNeues Bachisches Collegium Musicum Leipzig + +1808608Bob MarloAmerican singerCorrectHarry James And His Orchestra + +1808812Géry CambierDouble bass player and percussionist, born in 1964.Needs VoteGerry CambierGerry GambierGery CambierIctus (2)La Petite BandeGroupe C + +1808859Günther StephanClassical cellist.Needs VoteGewandhausorchester LeipzigMendelssohn-Quartett Leipzig + +1808863Hartmut FriedrichGerman classical cellistNeeds VoteRundfunk-Sinfonieorchester BerlinKammerorchester BerlinHantzschk-Quartett + +1809401Camillo PavoneItalian trombonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Jazz Del Mediterraneo + +1809596Lyndon TaylorLyndon Johnston TaylorViolinist. Needs Votehttp://www.laphil.com/philpedia/lyndon-johnston-taylorLyndon J. TaylorLyndon Johnston TaylorLos Angeles Philharmonic Orchestra + +1809600Herbert AusmanHerbert M. AusmanTrombone player and recording engineer.CorrectHerbert "Sonny" AusmanHerbert M. AusmanSonny AusmanLos Angeles Philharmonic Orchestra + +1809719Meredith A. SnowMeredith Ann SnowViola player (b. 7 February 1958, NY, United States).Needs VoteMeredith Ann SnowMeredith SnowSnow, MeredithLos Angeles Philharmonic Orchestra + +1810212George Washington (6)George WashingtonReal name of the country blues artist known more generally as [a=Bull City Red].Needs VoteG. WashingtonGeorge "Oh Red" WashingtonWashingtonBull City RedOh RedBrother George (2)Brother George And His Sanctified Singers + +1810320Allan ParkesClassical bass & baritone vocalist.Needs VoteThe Hilliard EnsembleNew London ConsortThe English Concert ChoirThe Consort Of Musicke + +1810333Kristine SzulikAlto vocalist.Needs VoteThe Hilliard EnsembleNew London ConsortThe English Concert ChoirTaverner ChoirThe Consort Of Musicke + +1810904Phil OlivellaAmerican clarinetistNeeds VotePhil OlivelaWingy Manone & His OrchestraTeddy Powell And His OrchestraThe Carl Kress SextetPee Wee Erwin And The Village Five + +1811656Adam Martin (2)Credited as trombone player.Needs VoteLouis Armstrong And His Orchestra + +1811657Bob MayhewCredited as Trumpet player.Needs VoteLouis Armstrong And His OrchestraHoagy Carmichael And His Pals + +1811659Leo "Snub" MosleyLawrence Leo MoselyAmerican jazz trombonist and singer, born 29 December 1905 in Little Rock, Arkansas, USA; died 21 July 1981 in Harlem, New York City, USA. Needs Votehttps://adp.library.ucsb.edu/names/110187"Snub" MosleyL. S. MoselyLawrence "Snub" MosleyLawrence Leo MosleyLeo "Snub" MoselyLeo (Snub) MoselyLeo Snub MosleyMoseleyMoselyMosleyS. MoselySnub (7)Snub MosleyLouis Armstrong And His OrchestraClaude Hopkins And His OrchestraAlphonso Trent And His OrchestraSnub Mosley QuartetSnub Mosley And His Orchestra"Snub" Mosely's BandSnub Mosley Quintet + +1811664Philip WaltzerCredited as alto saxophonist.Needs VotePhil WaltzerLouis Armstrong And His Orchestra + +1811667Sidney TruckerJazz clarinet and saxophone player during the 1930s.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/210330/Trucker_Sid?Matrix_page=100000Sid TruckerLouis Armstrong And His OrchestraRuss Morgan And His OrchestraDick Robertson And His OrchestraRed McKenzie And His Rhythm Kings + +1811671Jack BlanchetteUS jazz guitarist from the swing-era. + +Needs VoteClarence BlanchetteJacques BlanchetteJaques BlanchetteCasa Loma OrchestraGlen Gray & The Casa Loma Orchestra + +1811672Lester CurrantCredited as trumpeter.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/310511/Currant_LesterCurrentLester CurrentLouis Armstrong And His OrchestraJohnny Otis And His Orchestra + +1811742Die Hornisten Der Berliner PhilharmonikerA chamber music group of the [a=Berliner Philharmoniker].CorrectHorn-Quartett Der Berliner PhilharmonikerHorns Of The Berlin Philharmonic OrchestraStefan DohrKlaus WallendorfStefan JezierskiFergus McWilliamSarah Willis (2)Andrej ŽustGeorg SchreckenbergerBerliner Philharmoniker + +1811745Lars Michael StranskyGerman hornist, born 1966 in Trier, Germany.Needs VoteL. M. StranskyLars-Michael StranskyDeutsches Symphonie-Orchester BerlinOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle WienWiener Waldhorn VereinBundesjugendorchesterPhil Blech WienEnsemble "11" + +1812578Heinz BoshartHeinz Boshart (born 19 October 1935) is a German violist.Needs VoteOrchester der Bayreuther FestspieleFrankfurter Opern- Und Museumsorchester + +1813204André MessagerAndré Charles Prosper MessagerFrench composer and conductor (Montluçon 1853 - Paris 1929). +Principal works: +Opera: Véronique (1898); Béatrice (1914), Monsieur Beaucaire (1918); Coups de Roulis (1928). +Ballet music: Les Deux Pigeons (1885); Isoline (1888). +[a703271] conductor from 1908-1919. +Needs Votehttp://en.wikipedia.org/wiki/Andr%C3%A9_Messagerhttps://adp.library.ucsb.edu/names/103767A. MessagerA.MessagerAndre MessagerMassagerMessagerMéssagerメサジェメサージOrchestre De La Société Des Concerts Du Conservatoire + +1813278Hiroshi MunekiyoNeeds VoteMunekiyo Hiroshi宗清洋Gil Evans And His Orchestra + +1813322Christina HauptGerman harpsichordist.CorrectDresdner BarocksolistenVirtuosi Saxoniae + +1813970Mickey ChampionMildred Sallier(Born on April 9, 1925, died November 24, 2014) Champion was raised by several aunts in Lake Charles, La.,. Her first singing experience took place in the Lake Charles Christian Methodist Episcopal Church, where her grandfather was a bishop. +Though she was best known to her legions of Los Angeles fans who heard her in local venues, Champion’s far-ranging career included performances on the same stage with Billie Holiday in Detroit, Sarah Vaughan in Kansas City, and Dinah Washington, Duke Ellington, T-Bone Walker, Ray Charles and Jackie Wilson, among others, in night spots across the country.Needs VoteChampionLittle Mickey ChampionMickey Champion And FriendsMickey Champion With Orchestra Accomp.Mickie ChampionMiss Mickey ChampionGal FridayThe RobinsThe Nic Nacs + +1814039Erik ReikeGerman bassoonist, born in 1963.CorrectGewandhausorchester LeipzigStaatskapelle DresdenVirtuosi SaxoniaeDresdner Kapellsolisten + +1814040Bernhard MühlbachGerman oboist.CorrectStaatskapelle DresdenVirtuosi SaxoniaeDresdner Kapellsolisten + +1814609Giuseppe PariniItalian Enlightenment satirist and poet of the neoclassic period, born 23 May 1729 in Bosisio, Italy and died 15 August 1799 in Milan, Italy.Correcthttp://en.wikipedia.org/wiki/Giuseppe_PariniAbbate Giuseppe PariniG. PariniParini + +1814768Katherine SpencerKatherine Ann SpencerA British classical clarinet player.Needs Votehttp://katherineannspencer.com/City Of London SinfoniaThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe Galliard Ensemble (2) + +1814769Helen SimonsHelen Storey née SimonsBritish classical bassoon player, teacher at [l305416].Needs Votehttp://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/92-helen-simons/http://www.galliardensemble.com/biog.htmlRoyal Philharmonic OrchestraThe Albion EnsembleThe Galliard Ensemble (2) + +1815777Johnny MendellJohnny MendelJazz trumpeter, born 1905 in Connecticut, died October 11, 1966 in Chicago, Illinois. +Settled in Chicago later half of 1920s, first recorded with [a=Bud Freeman] in 1929, left full-time music in early 1940s, active as teacher 1950s.Needs VoteJohn MendellJohnny MendelCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +1815778Wesley DeanAmerican swing drummerNeeds VoteWes DeanCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +1815781Horace DiazBorn in Vera Cruz, Mexico but spent his early years in New Orleans. Jazz pianist, arranger, and composer, early member of [a284746] and can be heard on recordings made up to September 1936, when he was replaced by [a1476999]. He also did arrangements for Benny Goodman, Charlie Barnet, and Xavier Cugat.Needs VoteDiazHorace Diaz, Jr.Woody Herman And His OrchestraCharlie Barnet And His OrchestraIrving Aaronson And His CommandersHorace Diaz OrchestraHorace Diaz and His Cha Cha KingsHorace Diaz & The Mambo MenThe Band That Plays The BluesHorace Diaz And The Dixie Novas + +1815783Kermit SimmonsAmerican jazz trumpeter and one of the nine founding members of [a284746], who built up a co-operative to establish a successor of the [a750213].Needs VoteWoody Herman And His OrchestraCharlie Barnet And His OrchestraIsham Jones OrchestraThe Band That Plays The Blues + +1815785Chuck JordanJazz bassist and tuba player.Needs VoteCharlie Barnet And His OrchestraWill Osborne And His OrchestraSnooks And His Memphis Ramblers + +1815786Les Cooper (4)American jazz saxophonist and clarinetist, Swing periodNeeds VoteCharlie Barnet And His Orchestra + +1815787Charles HuffineJazz trumpeterNeeds VoteCharlie HuffineCharlie Barnet And His OrchestraCharlie Barnet And His Rhythm Makers + +1815855The Berry'sAka The Berries. +Swiss jazz band from the 1930's.Needs VoteThe BerriesThe Berry's QuintetBilly ToffelOmer De CockJames GobaletHugo PeritzErnest BernerErnst HöllerhagenBerry PeritzLen BakerRené FetterléWilly Marti + +1816349Eugène BigotFrench conductor and composer, born 28 February 1888 in Rennes, France and died 17 July 1965 in Paris, France. +Conductor of [a448007] from 1935 to 1950.Needs Votehttps://en.wikipedia.org/wiki/Eug%C3%A8ne_Bigothttps://fr.wikipedia.org/wiki/Eug%C3%A8ne_Bigot_(musicien)https://www.naxos.com/person/Eugene_Bigot/30882.htmhttps://adp.library.ucsb.edu/names/360211BigotE. BigotEugene BigotEugéne BigotM. E. BigotM. Eugene BigotM. Eugène BigotM. Eugène Bigot, Président-Chef D'Orchestre Des Concerts LamoureuxN. Eugène BigotЭ. Биго = E. BigotOrchestre Des Concerts LamoureuxOrchestre Symphonique Sous La Direction D'Eugène Bigot + +1816903Paolo BeschiItalian classical cellist, born 1953 in Brescia, Italy. +Since 1981 he dedicates himself almost exclusively to the baroque cello. +Co-founder of [a=La Gaia Scienza] (1980) and [a=Il Giardino Armonico] (1985). +Needs VoteIl Giardino ArmonicoGruppo Musica Insieme Di CremonaLa Gaia ScienzaIl Complesso BaroccoEnsemble Vanitas + +1816904Federica ValliItalian classical pianist.Needs VoteIl Giardino ArmonicoLa Gaia Scienza + +1816905Stefano BarneschiItalian classical violinist.Needs VoteIl Giardino ArmonicoKammerorchester BaselI BarocchistiLa Gaia ScienzaIl QuartettoneEnsemble VanitasEnsemble Arte-Musica + +1817251George Williams (8)Banjo player from the shellac eraNeeds VoteMa Rainey And Her Georgia Band + +1817252Robert Taylor (16)Cornet player, active in the 1920s. +According to Brian Rust's jazz discography, he was a member of [a=Ma Rainey And Her Georgia Band] at one 1925 session, but Blues and gospel records 1890-1943 (Oxford University Press, 1997), p. 739, has "prob. Kid Henderson, c" for that session, and if Robert Taylor made any recordings they are not known.Needs VoteR. TaylorMa Rainey And Her Georgia Band + +1817521Luc TerrieuxLuc TerrieuxFrench classical vocalist.Needs VoteEnsemble OrganumChoeur de Chambre de NamurLes Chantres de la Sainte-Chapelle + +1817741Serge KapustinСергей КапустинMusician +Brother of [a12648824]Needs VoteS. KapustinBlack Russian (5)СовременникМагистральВокальное Трио "Весна" + +1817821Udo GrimmClarinetist + +Needs VoteEnsemble ModernDas Neue EnsembleAura Ensemble + +1818170Johnny FischerJohann Ernst FischerAustrian jazz bassist and producer, born 3 May 1930 In Vienna, Austria. +Long time collaborator of [a=Konstantin Wecker].Needs VoteFischerJ. FischerJohn E. FischerJohn FischerJohnny FisherJonny FischerJonny FisherAndy FisherChristian DornausD. VotionOrchester Roland KovacLee Konitz QuintetThe Austrian All StarsRudi Sehring TrioHans Koller New Jazz StarsKarl Drewo-QuartettDusko Gojkovic QuintettLee Konitz SeptetCarl Drewo SextetDusko Goykovich Quartet + +1818425Sebastian RömischGerman oboist.CorrectStaatskapelle DresdenOrchester der Bayreuther FestspieleBundesjugendorchester + +1818442Michael AlberGerman chorus master, born 1963 in Tuttlingen, Southern Germany.Needs Votehttps://www.imdb.com/name/nm4426312/Montanara ChorRIAS-Kammerchor + +1819270Argy (3)Rhys JonesWelsh DJ / Producer.Needs Votehttp://djargy.co.ukhttps://www.facebook.com/Dj.Argy.Official/https://soundcloud.com/dj-argyhttps://www.youtube.com/user/TheDjargy?fbclid=IwAR2e-ucFS9hDPJbJgwChSASz5Hzn3uUKrPSPzOF7FFzNswL-fh830BHR_gchttps://twitter.com/dj_argyArgy (UK)Argy UKDJ ARGYDJ ArgyRhys Jones + +1819499Marilyn ReynoldsAmerican violinist, graduated in New York and Brussels, Belgium. She is active as teacher and concertmaster as well and performed also on Broadway productions.Needs Votehttps://www.plattsburgh.edu/academics/schools/arts-sciences/music/faculty/reynolds-marilyn.htmlMaralyn ReynoldsMarilyn R ReynoldsMarilyn R. ReynoldsOrchestra Of St. Luke'sLong Island Youth Orchestra + +1819726Rebecca WexlerClassical violinistNeeds VoteThe Academy Of Ancient MusicScottish Chamber OrchestraEnsemble Marsyas + +1819815Lasse KuuselaLasse Uolevi KuuselaFinnish singer. Born on June 7, 1928 in Helsinki, Finland and died on July 8, 2007.Needs Votehttps://fi.wikipedia.org/wiki/Lasse_KuuselaKuusela, LasseL. KuuselaLasse + +1820392Ernst-Ludwig HammerClassical Violist, Viola da Gamba and Cellist.Needs VoteErnst Ludwig HammerStaatskapelle DresdenUlbrich-QuartettCappella Sagittariana Dresden + +1820587Sam Jacobs (2)Samuel JacobsFrench horn player.Needs VoteSamuel JacobsSydney Symphony Orchestra + +1821141The Welsh National Opera OrchestraNeeds Major ChangesOrchestraOrchestra Of The Welch National OperaOrchestra Of The Welsh National OperaOrchestra Of The Welsh National OrchestraOrchestra Of Welsh Nationa OperaOrchestra Of Welsh National OperaOrchestra Welsh National OperaOrchestra of Welsh National OperaOrchestra of the Welsh National OperaOrchestre du Pays de GallesOrquestaOrquesta De La Opera Nacional De GalesOrquesta de la Opera Nacional de GalesThe Orchestra Of Welsh National OperaThe Welsh Philharmonic OrchestraThe Welsh National OrchestraThe Welsh Philharmonic OrchestraWelsh Brass ConsortWelsh National OperaWelsh National Opera Brass ConsortWelsh National Opera Brass,Welsh National Opera OrchestraWelsh National OrchestraMark Van De WielSimon Wills (2)Janet HiltonIain GibbsAndrew Smith (30)Phil GirlingBernice RubensChris AugustineTam Mott (2)Adam Szabo (2) + +1821777Ben Russell (4)American violinist (also viola), singer and songwriter.Needs Votehttp://benrussellmusic.com/Ben RusselBenjamin RussellAcme String QuartetFounders + +1821782Chris Thompson (17)Christopher Paul ThompsonComposer and percussionistNeeds Votehttp://www.chrispthompson.com/Chris P. ThompsonChristopher ThompsonAlarm Will SoundACME (American Contemporary Music Ensemble) + +1822045Catherine PépinClassical bassoonist.CorrectCatherine PepinCatherine Pépin-WestphalCatherine Westphal-PepinLes Musiciens Du Louvre + +1822513Franco FantiniVilolin virtuoso. Born 1925 in Sesto San Giovanni (Italy). First violin at Orchestra della Scala in Milan from 1943 to 1995. Died April 2, 2024.Needs Votehttp://milano.repubblica.it/cronaca/2015/02/24/news/archetto_di_trionfo_fantini_storico_violino_da_toscanini_a_muti_ho_suonato_coi_grandi-108105119/http://www.musicaprogetto.org/2015/02/buon-compleanno-franco-fantini.htmlhttp://www.famigliacristiana.it/articolo/scala_6609131.aspxF. FantiniF.FantiniOrchestra Del Teatro Alla ScalaVirtuosi Di Roma "Collegium Musicum Italicum"I Solisti Di MilanoQuartetto della Scala + +1822514Mario GusellaItalian cellist (Cesenatico, 1913 - Monghidoro, 1987)Needs VoteGusellaOrchestra Del Teatro Alla ScalaMusicorum ArcadiaQuartetto della Scala + +1822515Marcello TurioItalian classical string instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti ItalianiQuartetto della ScalaI Solisti Del Teatro Alla Scala + +1822516Bruno SalviItalian violinist.Needs VoteOrchestra Del Teatro Alla ScalaQuartetto della Scala + +1822934Claude-Paul TaffanelClaude-Paul TaffanelClaude-Paul Taffanel (16 September 1844 - 22 November 1908) was a French flautist, conductor and instructor regarded as the founder of the French Flute School that dominated much of flute composition and performance during the mid-20th century. [a703271] conductor from 1892 to 1901.Needs Votehttp://en.wikipedia.org/wiki/Paul_Taffanelhttps://adp.library.ucsb.edu/names/360072Claude Paul TaffanelClaude TaffanelP. TaffanelPaul TaffanelPaul TaffanellTaffanelタファネルOrchestre De La Société Des Concerts Du Conservatoire + +1822946Paul Curtis (9)Credited for flute.Needs VoteSydney Symphony Orchestra + +1823637Andrea MarconItalian conductor, music director, organist, harpsichordist, and scholar. Born on February 6, 1963 in Treviso, Italy. +In 1997, he founded the [a=Venice Baroque Orchestra]. Since 2012 chief conductor of the [a=Orquesta Ciudad De Granada].Needs Votehttps://en.wikipedia.org/wiki/Andrea_Marconhttps://it.wikipedia.org/wiki/Andrea_Marconhttps://web.archive.org/web/20100810224145/https://www.marcon.tv/Andrea-Marcon.3.0.htmlhttps://web.archive.org/web/20130212033248/https://www.venicebaroqueorchestra.it/cms/en/about-us/andrea-marcon.htmlhttps://www.deutschegrammophon.com/en/artists/andrea-marconhttps://www.mphil.de/en/orchestra/musicians/details/andrea-marconhttps://www.laphil.com/musicdb/artists/3363/andrea-marconhttps://www.balletandopera.com/people/Andrea_Marcon/https://www.mariinsky.ru/en/company/conductors/markon/https://www.bach-cantatas.com/Bio/Marcon-Andrea.htmA. MarconAndréa MarconMarconSonatori De La Gioiosa MarcaThe Earle His ViolsVenice Baroque OrchestraLa Cetra Barockorchester BaselOrquesta Ciudad de GranadaMadrigalisti Del Centro Di Musica Antica Di Padova + +1823673Yun TangClassical violinist.Needs VoteTang YunLos Angeles Philharmonic Orchestra + +1823704Ulrich HeinenUlrich Heinen was born in Ittenbach near Bonn in Germany. He studied at the Cologne Conservatoire under Siegfried Palm and at the Juilliard School of Music in New York with Leonard Rose. He won several national and international competitions: 1st prize of the Cello Competition of all German Music Colleges in Frankfurt, Rostropovich Competition in La Rochelle (France) and Vittorio Gui Competition in Florence (Italy). After graduating from Juilliard he took up the position of principal cello with the Radio Orchestra Saarbrücken, Germany and in the same year became member of the Czapary String Trio, earning an outstanding reputation for the interpretation of Mozart and Schubert. + +In 1984 Ulrich Heinen settled in England, at Sir Simon Rattle’s invitation to become principal cellist and section leader of the City of Birmingham Symphony Orchestra. In 1987 he co-founded the Birmingham Contemporary Music Group (BCMG), which subsequently became one of Britain’s most important ensembles for contemporary music. He has appeared with BCMG in many festivals in Britain and abroad, both as member of the ensemble and as soloist. He has recorded Mark Anthony Turnage’s ‘Kai’, which was written for him, for EMI and Bach’s Cello Suites together with cello solo pieces by Howard Skempton, Gerald Barry, Simon Holt, Bernd Alois Zimmermann and Hans Werner Henze for METIER (Divine-Arts). + +Looking back, Ulrich’s out BCMG memories include visits to the USA: Schönberg’s Pierrot Lunaire in Carnegie Hall in New York and on a different visit to New York Thomas Adès Court Studies, at Zankel Hall. The tour to India with Judith Weir and several tours to Spain with Oliver Knussen. Also the festivals: Salzburg and Cologne with Simon Rattle conducting, as well as the BBC Prom in London with Schönberg’s first Chamber Symphony, live on TV. Another important highlight were the operas by Gerald Barry, The Importance of Being Earnest in London and in Birmingham and The Triumph of Beauty and Deceit, in Paris, Berlin, London and New York, as well as Thomas Adès’ opera Powder Her Face at the Aldeburgh Festival – unforgettable! + +However, his most precious memory is the first performance of Mark Anthony Turnage’s Kai for cello and ensemble and the many, many subsequent performances, including the last one in 2011 at Symphony Hall in Birmingham, with Andris Nelsons conducting.Needs Votehttps://www.linkedin.com/in/ulrich-heinen-59866931/https://www.bach-cantatas.com/Bio/Heinen-Ulrich.htmCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +1823707Walter SeyfarthWalter Seyfarth (born on 1953 in Düsseldorf, Germany) is a German clarinetist. He was a member of the [a260744] from September 1985 to March 2020.Needs Votehttps://walter-seyfarth.de/Walther SeyfarthBerliner PhilharmonikerBerlin Philharmonic Wind QuintetBläser-Trio Des Saarländischen Rundfunks + +1823947Terry ReigNeeds Major Changes + +1824823Aurélien SabouretFrench cellist.Needs VoteOrchestre National De L'Opéra De ParisQuatuor Via NovaLe Quatuor Bedrich + +1824893Ernest ElliottAmerican jazz saxophonist (soprano, alto, tenor, and baritone) and clarinetist, born February 1893 in Booneville, Missouri. Nickname "Sticky". +He played with Johnny Dunn's Original Jazz Hounds, Gulf Coast Seven, Thomas Morris And His Seven Hot Babies, and others, and backed vaudeville blues singes such as Mamie Smith, Hannah Sylvester, and Edith Wilson.Needs VoteE. ElliottErnest "Sticky" ElliotErnest "Sticky" ElliottErnest ElliotSticky ElliottKing Oliver & His Dixie SyncopatorsFletcher Henderson And His OrchestraKing Oliver's Jazz BandThomas Morris And His Seven Hot BabiesMamie Smith And Her Jazz HoundsRega OrchestraJohnny Dunn's Original Jazz HoundsBessie Smith And Her Down Home TrioClarence Williams' Harmonizing FourFowler's FavoritesThe Down Home TrioBirmingham Darktown Strutters + +1825131Bernhard WalterGerman classical flutistNeeds VoteBerhard WalterБернхард ВальтерSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De MunichResidenz Kammerorchester MünchenDas Münchener Barock-Trio + +1825132Kurt KalmusGerman classical wind instrumentalist, born in 1920; died in 2012.Needs VoteK. KalmusКурт КальмусSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De MunichMünchner Nonett + +1825648Christoph SperingGerman conductor and organist, born 23 June 1959 in Simmern (Hunsrück), Germany.Needs Votehttps://de.wikipedia.org/wiki/Christoph_Speringhttp://www.bach-cantatas.com/Bio/Spering-Christoph.htmhttp://www.musikforum-koeln.de/christoph-spering/Musica Antiqua Köln + +1825735Michael BladererAustrian double-bass player, born 1968 in Waidhofen an der Ybbs, Austria.Needs Votehttps://www.salzburgerfestspiele.at/en/a/michael-bladererOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerBruckner Orchestra LinzOrchester Der Komischen Oper BerlinHofmusikkapelle WienWiener OktettWiener Ring Ensemble + +1827545Andrea MascettiClassical violinist.Needs VoteAndrea Gregorio MascettiOrchestra da Camera ItalianaCamerata Giovanile Della Svizzera ItalianaSpira Mirabilis + +1827549Jean-Charles DenisFrench classical trumpeter from Lyon.Needs VoteLe Concert SpirituelBach Collegium JapanEnsemble Les Surprises + +1827551Dezi HerberItalian classical violist, active in recordings since 2002. Recently (2019) playing in a string trio with [a=Lorenzo Fuoco] (violin) and [a=Elida Pali] (cello).CorrectOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale Fiorentino + +1827931Christopher WhorfArt Director & Designer. Worked at [a1833351]. +Often credited as Chris Whorf only.CorrectChris WhorfChris WorfChristofer Troy WhorfChristopher Troy WhorfChristopher WharfChristopher Whorf/Art HotelChristopher WorfArt HotelGribbitt!Whorf Graphics + +1827970Christian PohlGerman viola playerNeeds VoteCh. PohlNDR Hannover Pops OrchestraOrchester der Bayreuther FestspieleRadio-Philharmonie Hannover Des NDRArte Ensemble + +1828378Paul ChessellPhotographer, Designer and Art DirectorNeeds Votehttp://www.paulchessell.com/Paul ChesselPaul Chessell For WLP LtdPaul Chessell For WLP Ltd.Paul Chessell For White Label Productions LimitedPaul Chessell for White Label Productions LimitedPaul Chessell on behalf of White Label Productions Limitedinfo@paulchessel.compaulchessal.comwww.paulchessel.comwww.paulchessell.comWLP Ltd. + +1829078Frank MulveyAmerican graphic designer and art director.CorrectFranck MulveyFrank MulvayGribbitt! + +1829488Jörg (12)Jörg KnochNeeds VoteOliver BendtRegensburger Domspatzen + +1829743Andreas WittmannGerman classical oboistCorrectBerliner PhilharmonikerBerlin Philharmonic Wind Quintet + +1829749Stefan JezierskiStefan de Leval JezierskiAmerican horn player. He was a member of the [a=Berliner Philharmoniker] between September 1978 and February 2022.Needs Votehttps://en.wikipedia.org/wiki/Stefan_de_Leval_Jezierskihttps://de.wikipedia.org/wiki/Stefan_de_Leval_JezierskiStefan De Leval JezierskiStefan De Level JerierskiStefan De Level JerzierskiStefan Leval JezierskiStefan de Laval JezierskiStefan de Leval JezierskiBerliner PhilharmonikerScharoun Ensemble BerlinDie Hornisten Der Berliner PhilharmonikerOrchester Des Staatstheaters Kassel + +1829750Nella HunkinsAmerican cellist, born 1947 in New York, New York.Needs Votehttp://www.nellahunkins.com/The Cleveland OrchestraScharoun Ensemble BerlinPhilharmonia Ensemble Berlin + +1831013Friedrich MildeGerman classical oboist, composer and music professor, born 14 July 1918 in Oldenburg, Germany and died 14 September 2016 in Stuttgart, Germany.Needs VoteF. MildeF. Milde, OboeFriederich MildeFriedrich MildrRadio-Sinfonieorchester StuttgartPro Musica Orchestra StuttgartStuttgarter SolistenSüdwestdeutsches KammerorchesterOrchester Des 35. Deutschen Bachfestes + +1831017Paul Gross (3)Art Director and Graphic Designer.Needs VoteParadise Graphics + +1831643John Jenkins (6)Classical tuba player and professor. Born 1947 - Died 26th October 2008. +He attended the [l290263]. After his studies, he joined the [a=Orchestra Of The Royal Opera House, Covent Garden] remaining there for three years. In 1969 he joined the [a=New Philharmonia Orchestra]/[a=Philharmonia Orchestra], where he would remain until 2006 becoming its Principal Tuba. Aside from performing with the Philharmonia he was a member of the [a=Philip Jones Brass Ensemble]. He also was Professor of Tuba at the Royal College of Music. +Needs Votehttps://www.feenotes.com/database/artists/jenkins-john-1947-october-2008/https://www.britishtrombonesociety.org/news/john-jenkins/http://forums.chisham.com/viewtopic.php?f=2&t=30250&start=0Jenkins J.Jenkins. JLondon SinfoniettaPhilharmonia OrchestraNew Philharmonia OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenLondon Wind OrchestraEquale BrassThe London Gabrieli Brass Ensemble + +1833292George CorsilloDesigner.Needs VoteCorsilloGeorg CorsilloGeorge Corsillo-CorsilloGeorge Corsillo–GribbittGribbitt!Design Monsters + +1833351Gribbitt!Hollywood graphic studio and design company +founded in 1972 by [a4362370] and [a1805460] Correcthttp://www.artistdirect.com/artist/gribbitt/911670https://books.google.it/books?id=LwkEAAAAMBAJ&pg=PA58&lpg=PA58&dq=gribbitt+design+studio&source=bl&ots=kxj_55pEzu&sig=ACfU3U0-gXyJPR9Eroq1iSUN5p0elbg6qg&hl=it&sa=X&ved=2ahUKEwiTg6rV4evpAhUsxqYKHf5LBTAQ6AEwA3oECAgQAQ#v=onepage&q&f=falseGribbitGribbit PhotographyGribbit!Gribbit, Ltd.GribbittGribbitt !Gribbitt Ltd.Gribbitt ManagementGribbitt StudiosGribbitt! Ltd.Gribbitt, Ltd!Gribbitt, Ltd.Gribbitt-U.S.A.GribbittiGribittGribitt!GribittlVito (2)David FlemingHenry VizcarraGeorge WhitemanChristopher WhorfFrank MulveyGeorge CorsilloStephen LumelTim Bryant (2)Bill NaegelsMichael Kevin LeeEric Chan (2)Jan KovaleskiDennis Lidtke + +1833371Jean StewartBritish viola player, 17 February 1914 - 28 December 2002.Needs Votehttp://www.independent.co.uk/news/obituaries/jean-stewart-601969.htmlEnglish Chamber OrchestraPhilomusica Of LondonThe Monteverdi OrchestraThe London Bach OrchestraRichards Piano Quartet + +1834065Heikki SaarniahoHeikki LittuNeeds VoteH. SaarniahoH.SaarniahoSaarniaho + +1834129Stephen Lumel[b]Art director - graphic designer[/b] +Needs VoteLumelScephen LumelStephen Lumel/Gribbitt!Steve LumelGribbitt!Lumel Whiteman Studio + +1834893Osvaldo Fresedo Y Su Orquesta TípicaArgentinian tango orchestra formed in 1922 by [a970312], with Tito Roccatagliata (violin), Agesilao Ferrazzano (violin), Agesilao Ferrazzano (piano), Alberto Rodríguez (bandoneon) and Leopoldo Thompson (double bass), line up changes happened from 1923 on.Needs VoteO Frescedo OrcO. Fresedo Y Su Orq. TípicaOrchesta Tipica FresedoOrchestra Tipica FresedoOrchestre TypiqueOrq. Osvaldo FresedoOrq. Típica Osvaldo FresedoOrq.Tipica O.FresedoOrquesta De Osvaldo FresedoOrquesta FresedoOrquesta Osvaldo FresedoOrquesta Tipica De FresedoOrquesta Tipica FresedoOrquesta Típica De Osvaldo FresedoOrquesta Típica FresedoOrquesta Típica O. FresedoOrquesta Típica Osvaaldo FresedoOrquesta Típica Osvaldo FresedoOsvaldo Fesedo Et Son Orchestre TypiqueOsvaldo FresedoOsvaldo Fresedo And His OrchestraOsvaldo Fresedo E A Sua OrquestraOsvaldo Fresedo E La Sua Orch. TipicaOsvaldo Fresedo E Sua OrquestraOsvaldo Fresedo E Sua Orquestra TipicaOsvaldo Fresedo E Sua Orquestra TípicaOsvaldo Fresedo Et Son EnsembleOsvaldo Fresedo Et Son Orchestre ArgentinOsvaldo Fresedo Et Son Orchestre TypiqueOsvaldo Fresedo Su OrquestaOsvaldo Fresedo Y Orq. TípicaOsvaldo Fresedo Y Su Gran Orq. ArgentinaOsvaldo Fresedo Y Su Gran Orq. TípicaOsvaldo Fresedo Y Su Gran OrquestaOsvaldo Fresedo Y Su Gran Orquesta ArgentinaOsvaldo Fresedo Y Su Gran Orquesta TípicaOsvaldo Fresedo Y Su Gran Orquestra ArgentinaOsvaldo Fresedo Y Su Orq TipOsvaldo Fresedo Y Su Orq TípicaOsvaldo Fresedo Y Su Orq.Osvaldo Fresedo Y Su Orq. TipicaOsvaldo Fresedo Y Su Orq. TípicaOsvaldo Fresedo Y Su OrquestaOsvaldo Fresedo Y Su Orquesta ArgentinaOsvaldo Fresedo Y Su Orquesta TipicaOsvaldo Fresedo Y Su Orquesta TípocaOsvaldo Fresedo Y Su Típica Del TA-BA-RISOsvaldo Fresedo y Su OrquestaOsvaldo Fresedo y su Orquesta TípicaOsvaldo Fresedo y su Típica Del Ta Ba RisOsvaldo Fresedo y su orquesta típicaOsvaldo Fresedo's OrchestraOsvaldo Pugliese y Su OrquestaTipica Fresedo's Orchestraオスバルド・フレセド楽団オスヴァルド・フレセードとオルケスタ・ティピカOsvaldo FresedoAlfredo CalabróAgesilao FerrazzanoLeopoldo Thompson + +1834961Pierre GuittonPierre Henri GuittonFrench author (18..-1966) +Needs VoteF. GuittonGuittomGuittonJ. GuittonP. GuitonP. Guitton + +1834966Peter MuscantBritish classical cellist 1900-c - 1988 +[a=BBC Symphony Orchestra] (founder member, later Principal cello). Former member of the [a=London Symphony Orchestra] (1960-1965).Needs VoteLondon Symphony OrchestraBBC Symphony Orchestra + +1834967Gordon NealBritish classical Double Bass player. Born in 1929 - Died in 1978. +Former member of the [a=London Symphony Orchestra] (1957-1977). Prior to joining the LSO and whilst still studying at the Manchester College of Music with Arthur Shaw, he gained work as an extra with the [a=Hallé Orchestra] in Manchester. In 1952, he was appointed a member of the [a=City Of Birmingham Symphony Orchestra], remaining until 1957.Needs Votehttps://contrabass.co.uk/products/the-ex-gordon-neil-5-string-double-bass-by-ferdinand-seitz-circa-1850G. NealLondon Symphony OrchestraHallé OrchestraCity Of Birmingham Symphony Orchestra + +1834970Max Weber (2)Max Emil Alwin WeberClassical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1949-1978).Needs VoteM. WeberLondon Symphony Orchestra + +1834973William Martin (2)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1968-1970).Needs VoteLondon Symphony Orchestra + +1834975Stuart KnussenBritish classical double bass player, conductor, composer, and educator. Born in 1923 in Manchester, England, UK - Died in 1990 (or in 1998). +In 1942, he joined the [a=Hallé Orchestra]. He was a founding member of [a832962]. Principal double bassist of [a=London Symphony Orchestra] (1958-1972, including five years as Chairman of its Board of Directors), before moving to North America, where he played with the [a=Victoria Symphony Orchestra] for five years and became founding Music Director of the [b]Greater Victoria Youth Orchestra[/b] (1986-1990). He taught at the [l427762]. +Father of [a=Oliver Knussen].Needs Votehttps://open.spotify.com/artist/3r8sEK15jSpWbuTfyEKc39https://music.apple.com/ml/artist/stuart-knussen/96115397https://www.gvyo.org/past-music-directors.htmlLondon Symphony OrchestraBBC Symphony OrchestraHallé OrchestraEnglish Chamber OrchestraRoyal Scottish National OrchestraThe Academy Of St. Martin-in-the-FieldsChicago Symphony OrchestraThe English Opera GroupPrometheus EnsembleVictoria Symphony Orchestra + +1834976Frederick DysonFrederick Crawford Dyson(British?) classical violinist. +Former longtime member of the [a=London Symphony Orchestra] (1947-1975).Needs VoteLondon Symphony Orchestra + +1834978John Duffy (4)Classical double bass player (1966-1976) and personnel manager with the [a=London Symphony Orchestra] for 19 years (1976-1985). Passed away on 14 February 2021. +He left the LSO in 1985 to pursue an international career as an arts and orchestral manager and lived for many years in the USA, Malaysia and Japan.Needs Votehttps://lso.co.uk/more/news/1633-obituary-john-duffy.htmlLondon Symphony Orchestra + +1834979Max BurwoodBiritish classical viola player. Born in 1914. +Fomer member of the [a=London Symphony Orchestra] (1948-1975) as a violist, official Librarian and member of the LSO Board of Directors.Needs Votehttps://books.google.se/books?id=DTkiEAAAQBAJ&pg=PT294&lpg=PT294&dq=max+burwood+viola&source=bl&ots=nEefKfNuqm&sig=ACfU3U3D9ff4u1eshvfd7OMBWk0S7MHqzg&hl=en&sa=X&ved=2ahUKEwiWmJekzOL8AhUPS_EDHYY5DcoQ6AF6BAgaEAM#v=onepage&q=max%20burwood%20viola&f=falseLondon Symphony Orchestra + +1834981Harold LythellClassical oboist, a.k.a. [b]Henry (Harry) Lythell[/b]. +Former member of the [a=London Symphony Orchestra] (1957-1975).Needs VoteHarry LythellLondon Symphony Orchestra + +1834982Peter GaneHe was a British classical trombonist, conductor, Professor of Trombone, and author (born in 1948 in Poole, Dorset, England, UK; died in July 2024 aged 76). +He studied at the [l459222]. He was a member of the [a=London Symphony Orchestra] (1968-1972), serving as Assistant Principal in 1972. Becoming a teacher in 1971, he became a professor at [l305416] and 10 years later he would become a Fellow and accept the post of Professor of Wind and Percussion. He was Head of Wind, Brass and Percussion from 1988 until 2008. He has a long-standing association with the [a=National Youth Orchestra Of Great Britain] and the [a=European Union Youth Orchestra], where he has been professor of trombone since 1977 and 1984 respectively.Needs Votehttps://www.feenotes.com/database/artists/gane-peter-1948-present/https://www.euyo.eu/memberProfile?id=2365https://www.gsmd.ac.uk/staff/peter-ganehttps://warwickmusicgroup.com/2019/05/22/peter-gane/London Symphony Orchestra + +1836079Mauricio MiseMauricio MiserizkyArgentinian tango violinist and composer (Buenos Aires, 14 Aug. 1912 - 21 Jul. 1983)Needs Votehttps://www.todotango.com/creadores/ficha/731/Mauricio-MiseMiseLeopoldo Federico Y Su Orquesta TípicaOcteto Tibidabo + +1836081Osvaldo AulicinoArgentinian tango contrabassist / double bassist (born 1931)Needs VoteOsvaldo Antonio AulicinoSexteto MayorOsvaldo Piro Y Su Orquesta + +1836888Werner JaroslawskiGerman violist and Viola da gamba player.CorrectStaatskapelle Dresden + +1836958Michael BüttlerGerman trombonist.Needs Votehttps://www.michaelbuettler.ch/https://www.facebook.com/michael.buttler.758Ensemble ModernEnsemble Modern OrchestraHR - BrassBaader 66Ensemble Phoenix BaselKaspar Ewalds Exorbitantes Kabinetthornroh modern alphorn quartet + +1836959Douglas SimpsonTrombonistNeeds VoteBochumer SymphonikerDeutsche Kammerphilharmonie BremenEnsemble Modern Orchestra + +1837551Laurent BourdeauxFrench classical baritone and bass vocalistNeeds VoteLe Concert SpirituelPygmalionMusicatreize + +1838142Murry WhitemanArt director, graphic designerNeeds VoteMurry Whiteman/Gribbitt!Myrry WhitemanWhitemanLumel Whiteman Studio + +1838239Vernon SlaterSaxophonistNeeds VoteGerald Wilson OrchestraDick Robinson Quartet + +1838241Rudy MartinPianist and band leaderNeeds VoteMartinRudy Martin TrioRudy Martin Y Orquesta + +1838242Herbie FieldsHerbert BernfeldAmerican jazz alto & tenor saxophonist, clarinetist and songwriter. +Born May 24, 1919 in Elizabeth, New Jersey. +Died September 17, 1958 in Miami, Florida. +He attended New York's famed Juilliard School of Music (1936–38). He played with Raymond Scott then in 941, at Fort Dix (NJ) he lead a 14-piece swing band. He joined Lionel Hampton's band after his discharge from the army, working with him until 1945 and recording at Carnegie Hall. Then Fields led small groups and big bands from 1944 until 1950, winning Esquire magazine's New Star award in 1945 on alto sax and later recording with Miles Davis. He and his orchestra charted in 1947 with "A Huggin' and a Chalkin' ", which landed at #14 in the U.S. +In the 1970's he joined up with trumpeter Hot Lips Page. Fields' career declined in the '50s and beyond, and he began making straight pop music, moving away from jazz. In his career he played with many greats including Thelonius Monk, Bill Evans, Billie Holiday, Neal Hefti and numerous others.Needs Votehttp://en.wikipedia.org/wiki/Herbie_Fieldshttps://www.allmusic.com/artist/herbie-fields-mn0000956262/biographyhttps://campber.people.clemson.edu/parrot.htmlhttps://adp.library.ucsb.edu/names/111577FieldsH. FieldsHerbert FieldsWoody Herman And His OrchestraMetronome All StarsLionel Hampton And His OrchestraRaymond Scott QuintetLionel Hampton And His SeptetHerbie Fields And His OrchestraThe Herbie Fields QuintetHerbie Fields And His SextetHerbie Fields SwingstersVanderbilt All StarsThe Band That Plays The Blues + +1838467Christiane AlbertClassical flute player.CorrectEnsemble ModernOrchester Des Nationaltheaters Mannheim + +1838550George EspositoNeeds VoteGeorge 'Pots' EspositoGeorge 'Spots' EspositoCharlie Barnet And His OrchestraTeddy Powell And His Orchestra + +1838551Marshall MendellTrumpeterNeeds VoteCharlie Barnet And His Orchestra + +1838616Paul Collins (6)Jazz Drummer. +Played with Red Nichols, Bunny Berigan, Jack Teagarden.Needs VoteP. CollinsBunny Berigan & His OrchestraRed Nichols And His Five PenniesJack Teagarden And His OrchestraRed Nichols And His Orchestra + +1838794Simon Davies (6)British contrabassoonist.Needs VoteHallé Orchestra + +1838862Marie StrømClassical cellistNeeds VoteMarie StromMarie StrömBBC Symphony OrchestraDen Norske Strykekvartett + +1840287Johnny EarlEarl Theodore BaughmanUS songwriter/performer mostly known for co-writing [a=Gene Vincent]'s "Say Mama". Disc jockey at WESC (Greenville, SC). Also known as "Country Earl". Died on December 10, 2012.Needs VoteBareCarlEarlEarl JohnnyEarleFarleHarlJ EarlJ. EarlJ. EaselJ. W. EarlJack EarlJohn EarlM. Earl + +1840887Hans PöttlerClassical trombonist.Needs VoteHans BöttlerProf. Hans PöttlerWiener SymphonikerConcentus Musicus Wien + +1840888Elli KubizekElisabeth Kubizek née LewinskyElli Kubizek (1933 - 1987) was a classical violist and cellist. She was married to [a1052069].Needs VoteElli Lewinsky-KubizekConcentus Musicus Wien + +1840890Andreas WenthClassical trombonist.CorrectConcentus Musicus Wien + +1840891Gerhard StradnerGerhard Stradner (born 1934) is an Austrian classical wind instrumentalist and musicologist. He's the father of [a2716300].Needs VoteDr. Gerhard StradnerProf. Dr. Gerhard StradnerProf. Gerhard StradnerOrchester Der Wiener StaatsoperConcentus Musicus WienMusica Antiqua Wien + +1840892Albrecht TrenzClassical wind player.CorrectConcentus Musicus Wien + +1840894Helga TutschekAustrian recorder player, born in Vienna.CorrectConcentus Musicus Wien + +1840974Andrew Sutton (3)Classical hornistNeeds Votehttps://twitter.com/Andy_SuttsAndy SuttonEnglish Chamber OrchestraThe English National Opera OrchestraOnyx BrassYoung Musicians Symphony Orchestra + +1841568Jean RogisterJean François Toussaint RogisterBelgian virtuoso violist, teacher and composer (25 October 1879 in Liège – 20 March 1964 in Liège). +Married to [a14888845].Needs Votehttp://en.wikipedia.org/wiki/Jean_RogisterThe Philadelphia Orchestra + +1841633Leroy Jackson (3)American jazz bassist, died 27 December 1985 in Chicago, Illinois, USA.Needs VoteJacksonLeRoy JacksonThe Lester Young SextetLester Young QuintetGene Ammons SextetJimmy Dale Band + +1841664Tapio IlomäkiTapio IlomäkiBorn on April 21st, 1904 in Hämeenkoski, Finland. Died on July 25th, 1955 in Helsinki, Finland. A Finnish film composer.Needs VoteIlomäkiT. IlomäkiT.IlomäkiTapio Ilomäen Orkesteri + +1841917Tim Bryant (2)American art director & designer. +Graduate of Art Center School of Design in LA, he worked as art director at [l12220] and [l895], +where he designed over 500 album covers for artists including Elvis, John Coltrane, Jimmy Buffett, Bob Seger, John Denver, Jefferson Starship and others. +He was creative director of [a1833351] Studio (1973-1982) . + +Born: February 18, 1947 in Porterville, California +Dead: June 27, 2017 in Royal Oak, MichiganNeeds Votehttps://www.linkedin.com/in/tim-bryant-32b74314/Tim BrayantTim BryanGribbitt! + +1841926Peter SchrannerGerman bass vocalistCorrectP. SchrannerPeter SchrannSchrannerChor Des Bayerischen RundfunksCapella Bavariae + +1842093Al King (4)Jazz bassistNeeds VoteAl KingAl LingLester Young QuartetX Quintet + +1842269Peter TrentClassical lutenist and violist.Needs VoteThe Consort Of MusickeThe Extempore String EnsembleThe London Early Music Group + +1842490Marina MarsdenAustralian violinistNeeds VoteSydney Symphony OrchestraSydney Alpha EnsembleLinden String Quartet + +1842647Herbert Kraft-KuglerGerman classical obistNeeds VoteKammerorchester Berlin + +1842648Eberhard GrünenthalGerman classical flautistNeeds VoteEberhart GrünenthalЭберхард ГрюнентальKammerorchester Berlin + +1842650Herbert AuerbachGerman classical hornistNeeds VoteH. AuerbachKammerorchester BerlinArno Flor Und Sein Streichorchester + +1842651Hugo FrickeKarl Heinrich Hugo FrickeHugo Fricke (* 3 March 1906 in Essen/Ruhr; † 9 April 1995 in Bielefeld) was a German violinist, violist and composer and one of the most renowned viola soloists and chamber musicians of the GDR.Needs Votehttps://de.wikipedia.org/wiki/Hugo_Fricke_%28Bratschist%29Kammerorchester BerlinMichailow-QuartettHantzschk-Quartett + +1842657Horst Krause (2)German violistNeeds VoteKammerorchester BerlinBerliner Barock-Trio + +1843418Ewald DemeyereBelgian classical keyboard instrumentalist, born in Bruges (December 23th 1974).Needs VoteE. DemeyereIl FondamentoLa Petite BandeCapilla FlamencaGroupe C + +1843594Bill NaegelsGraphic designer for several album covers.CorrectBill NaegelBill Naegels/Gribbitt!William NaegelsGribbitt! + +1843821Jaffa RamakinDom SweetenNeeds VoteDefective AudioBase GraffitiD.S.P. (2)Tomcat (2)Dom SweetenEl DurangozFreeflow 45Dominguez FunkDektronik DomThe Spider Trax Files404Studio + +1844056Mary NeumannMary Jean NeumanAmerican violinist, born in 1952.Needs VoteColumbus Symphony OrchestraSan Francisco Symphony + +1844076Amanda SampsonNeeds Major Changes + +1844078Vox & GoNeeds Major ChangesVox And GoVox N GoJon BWJohn Evans (5) + +1844270Birgitte VolanBirgitte Volan HåvikNorwegian harpist, born 1982 in Trondheim, Norway. Wife of [a3447866].Needs VoteBirgitte Volan HavikBirgitte Volan HåvikOslo Filharmoniske Orkester + +1847462Víctor Pablo PérezSpanish Orchestral Director, born in Burgos. +Honorary Conductor from of 1980 of the [a4515131] until 1988 and later in 1992 he would form the [a3316444]. +Since 2013 is the titular conductor and artistic director of [a2035962] and [a6743551].Needs Votehttp://www.victorpabloperez.nethttps://en.wikipedia.org/wiki/V%C3%ADctor_Pablo_P%C3%A9rezVictor PabloVictor Pablo PerezVíctor PabloOrquesta De La Comunidad De MadridOrquesta Sinfónica de GaliciaOrquesta Sinfónica Del Principado de AsturiasCoro De La Comunidad De Madrid + +1848360Rolf Cato RaadeNorwegian classical percussionist, rock musician and Managing and Artistic Director at Bodø Kulturhus KF, born 1964 in Bodø. + +He was director of the Northern Norwegian Opera and Symphony Orchestra and in 2012 was employed as cultural center manager for the cultural center in Bodø. He has also been director of the cultural quarter Stormen and head of Nordland Musikkfestuke. Raade started his career as a drummer in several rock bands, including Charchk. With Charchk, he won the county final in Nordland in the NM for rock bands in 1981, and the band came 4th in the national final in Trondheim the same year.Needs Votehttps://no.wikipedia.org/wiki/Rolf_Cato_Raadehttps://no.linkedin.com/pub/rolf-cato-raade/60/b06/197https://mobile.twitter.com/roca2?p=sSveriges Radios SymfoniorkesterOslo Filharmoniske OrkesterTrondheim SymfoniorkesterGlass (11)Kark (2)Forsvarets Distriktsmusikkorps ØstlandetBodø OrkesterforeningNordnorsk Opera og Symfoniorkester + +1849444Ben Cunningham (4)Benjamin CunninghamBritish classical double bassistNeeds VoteBenjamin CunninghamRoyal Philharmonic OrchestraEuropean Chamber Players + +1849894Robert FreundRobert Freund (born 18 June 1932) is an Austrian classical hornist.Needs VoteRobert FreudWiener SymphonikerEnsemble "die reihe", WienPhilharmonia HungaricaWiener KammerorchesterTonkünstler OrchestraThe Biedermeier Chamber EnsembleThe Eichendorff Wind Group + +1849896Christian Friedrich HenriciGerman poet and librettist (January 14, 1700 – May 10, 1764). Better known as [a=Picander]. He wrote the texts for many of the cantatas which [a=Johann Sebastian Bach] composed in Leipzig.Correcthttp://en.wikipedia.org/wiki/PicanderC. F. Heinrichl (Picander)C. F. HenriciC. F. Henrici (Picander)Christian Friedrich Henrici (PicanderChristian Friedrich Henrici (Picander)Christian Friedrich Henrici Alias PicanderChristian Friedrich Henrici, Genannt PicanderChristian Friedrich Henrici, Gennant / Alias PicanderChristian Friedrich Henrici-PicanderHenriciPicander + +1849898Alfred DutkaAustrian oboist, born 1937 in Vienna, Austria and died August 2006.Needs VoteVienna Symphonic Orchestra ProjectWiener PhilharmonikerTonkünstler OrchestraDie Wiener Kammersolisten + +1849902Paul TrimmelClassical violinistNeeds VoteWiener Symphoniker + +1850058Schwartz & DietzHoward Dietz and Arthur Schwartz (lyricist and composer respectively) are the creators of standards like 'Dancing In The Dark', 'That’s Entertainment', 'You And The Night And The Music' and 'I Guess I’ll Have To Change My Plan'. They also collaborated on 11 Broadway shows during their partnership. +Both Schwartz and Dietz were inducted into the Songwriters Hall of Fame in 1972, and into the American Theatre Hall of Fame in 1981.Needs Votehttps://masterworksbroadway.com/artist/howard-dietz-and-arthur-schwartz/-Dietz -Schwartz-Dietz-Schwartz-A Schwartz, H DietzA Schwartz, H. DietzA. Schvartz / H. DietzA. Schwarts - H. DietzA. Schwarts, H. DietzA. SchwartzA. Schwartz & H. DietA. Schwartz & H. DietzA. Schwartz + H. DietzA. Schwartz , H. DietzA. Schwartz - DietzA. Schwartz - H. DeitzA. Schwartz - H. DietsA. Schwartz - H. DietzA. Schwartz - H. GietzA. Schwartz - Howard DietzA. Schwartz / H. DietzA. Schwartz / H. DiezA. Schwartz& H. DietzA. Schwartz, H. BietzA. Schwartz, H. DeitzA. Schwartz, H. DietzA. Schwartz, H. DiezA. Schwartz, N. DietzA. Schwartz- H. DietzA. Schwartz-A. DietzA. Schwartz-DietzA. Schwartz-H. DeitzA. Schwartz-H. DietzA. Schwartz-H. GietzA. Schwartz-Howard DietzA. Schwartz/ H. DietzA. Schwartz/DietzA. Schwartz/H. DietzA. Schwartz; H. DietzA. Schwarz, H. DietzA. Schwarz, H. DiezA. Schwatz, H. DietzA. Scwartz-H. GletzA. Shwartz - H. DietzA. Swartz / H. DietzA.Schwartz & H.DietzA.Schwartz - H. DietzA.Schwartz - H.DietzA.Schwartz / H. DietzA.Schwartz – H. DietzA.Schwartz, H.DietzA.Schwartz-H. DietzA.Schwartz-H.DietzA.Schwartz/H. DietsArhtur Schwartz - Howard DietzArther Schwarz, Howard DietzArthur Dietz/Howard SchwartzArthur Schartz - Howard DietzArthur Schartz, Howard DietzArthur Schwart,Howard DietzArthur Schwart-Howard DietzArthur Schwarts - Howard DietzArthur Schwarts, Howard DietzArthur Schwarts/Howard DietzArthur SchwartzArthur Schwartz & Howard DeitzArthur Schwartz & Howard DietzArthur Schwartz - DietzArthur Schwartz - Dietz HowardArthur Schwartz - Harold DietzArthur Schwartz - HowardArthur Schwartz - Howard DeitzArthur Schwartz - Howard DietsArthur Schwartz - Howard DietzArthur Schwartz - Howard DiezArthur Schwartz / Harold DietzArthur Schwartz / Howard DeitzArthur Schwartz / Howard DietzArthur Schwartz And Howard DietzArthur Schwartz and Howard DietzArthur Schwartz — Howard DietzArthur Schwartz, Howard DeitzArthur Schwartz, Howard DietsArthur Schwartz, Howard DietzArthur Schwartz, Howard, DietzArthur Schwartz- Howard DietzArthur Schwartz-H. DietzArthur Schwartz-Howard DeitzArthur Schwartz-Howard DielzArthur Schwartz-Howard DietsArthur Schwartz-Howard DietzArthur Schwartz-Howard DietzhArthur Schwartz-Howard DiezArthur Schwartz/Howard DeitzArthur Schwartz/Howard DietzArthur Schwartz; Howard DietzArthur Schwartz–Howard DietzArthur Schwartz~Howard DietzArthur Schwarz - Howard DietzArthur Schwarz / Howard DietzArthur Schwarz, Howard DietzArthur Schwarz-Howard DietzArthur Schwarz/Howard DietzArthur Schwarzt, Howard DietzArthur Schwatz - Hoeward DietzArthur Schwatz,Howard DietzArthur Schwatz-Howard DietzArthur Schwatz/Howard DietzArthur Scwartz - Howard DietzArthur Scwartz/Howard DietzArthur Shwartz / Howard DietzArthur Swartz & Howard DietzArthur, Schwartz, Howard DietzArthur-Schwartz - DietzArthur-Schwartz-Howard DietzArthurs Schwartz & Howard DietzArtjur Schwartz - Howard DietzArtuhur Schwartz / Howard DietzAurthur Schwartz, Harold DietzAurthur Schwartz-Howard DietzAuthur Schwartz, Howard DietzC. Schwartz-DietzD. ScwartsDeitz - SchwartzDeitz / SchwartzDeitz, SchwartzDeitz-SchwartzDeitz/SchwartzDeitz/ShwartzDetz-SchwartzDiels/SchwartzDiet, SchwartzDiets, SchwartzDiets/SchwartzDietzDietz & SchwartaDietz & SchwartzDietz & SwartsDietz - A. SchwartzDietz - SchwarszDietz - SchwartDietz - SchwartzDietz - SchwarztDietz - SchwatzDietz -SchwartzDietz / A. SchwartzDietz / A.SchwartzDietz / SchwartzDietz / SchwarzDietz / SwartzDietz /SchwartzDietz And SchwartzDietz SchwartzDietz SchwarzDietz and SchwartzDietz – SchwartzDietz+SwartzDietz, Howard / Schwartz, ArthurDietz, SchartzDietz, SchwartzDietz, SchwarzDietz, ShwartzDietz- A. SchwartzDietz- SchwartzDietz-A. SchwartzDietz-SchartzDietz-SchwartsDietz-SchwartzDietz-SchwarzDietz-ShwartzDietz-SwartzDietz-SwarzDietz.-SchwartzDietz./SchwartzDietz.SchwartzDietz/ SchwartzDietz/SchwartsDietz/SchwartzDietz/SchwarzDietz/ScwartzDietz/ShwartzDietz; SchwartsDietz; SchwartzDietz; SchwarzDiez-SchwartzDitez; SchwartzH Dietz/A SchwartzH. Deitz-A. SchwartzH. Deitz/A. SchwartzH. Diels-A. SchwartzH. Diets, A. SchwartzH. Diets-A. SchwartzH. DietzH. Dietz & A. SchwartzH. Dietz + A. SchwartzH. Dietz - A, SchwartzH. Dietz - A. SchwartzH. Dietz - A. ShwartzH. Dietz / A SchwartzH. Dietz / A. SchwartzH. Dietz A. SchwartzH. Dietz And A. SchwartzH. Dietz and A. SchwartzH. Dietz – A. SchwartzH. Dietz, A. SchwartzH. Dietz, A. SchwarzH. Dietz, A. SchwertzH. Dietz- - A. SchwartzH. Dietz- A. SchwartzH. Dietz-A SchwartzH. Dietz-A, SchwartzH. Dietz-A. SchwartzH. Dietz-A. SchwarzH. Dietz-J. SchwartzH. Dietz/A. SchwartzH. Dietz; A. SchwartzH. Schwartz - H. DietzH. Schwartz-H. DietzH.Dietz-A. ShwartzH.Dietz-A.SchwartzH.Dietz/A.SchwartzHarold Dietz & Arthur SchwartzHoawrd Dietz-Arthur SchwartzHowar Dietz-Arthur SchwartzHowar dietz-Arthur SchwartzHoward Deitz & Arthur SchwartzHoward Deitz - Arthur SchwartzHoward Deitz, Arthur SchwartzHoward Deitz-Arthur SwartzHoward Deitz/Arthur SchwartzHoward Diets & Arthur SchwartzHoward Diets / Arthur SchwartzHoward Diets-Arthur SchwartzHoward DietzHoward Dietz & Arthur SchwartzHoward Dietz & Arthur Schwartz;Howard Dietz - A. SchwartzHoward Dietz - Arthur SchantzHoward Dietz - Arthur SchwartHoward Dietz - Arthur SchwartzHoward Dietz - Arthur SchwarzHoward Dietz - Arthur SwartzHoward Dietz / A. SchwartzHoward Dietz / Arther ScwartzHoward Dietz / Arthur SchwartzHoward Dietz And Arthur SchwartzHoward Dietz and Arthur SchwartzHoward Dietz, Arthur SchwaltzHoward Dietz, Arthur SchwalzHoward Dietz, Arthur SchwartzHoward Dietz, Howard SchwartzHoward Dietz- Arthur SwartzHoward Dietz-Arthur SchwartzHoward Dietz-Arthur SwartzHoward Dietz. Arthur SchwartzHoward Dietz/ Arthur SchwartzHoward Dietz/ Artur SchwartzHoward Dietz/Arthur SchwartzHoward Dietz/Arthur SchwatzHoward Dietz/Arthur ScwartzHoward Dietz; Arthur SchwartzHoward Gietz-Arthur SchwartzHowards Dietz & Arthur SchwartzHowart Dietz - Arthur SchwartzSchuartz - DietzSchwartzSchwartz & DieztSchwartz , DietzSchwartz - A. DietzSchwartz - DietsSchwartz - DietzSchwartz - DitezSchwartz -. DietzSchwartz / DietzSchwartz /DietzSchwartz And BietzSchwartz And DietzSchwartz DietzSchwartz — DeitzSchwartz, DeitzSchwartz, DietzSchwartz, DiezSchwartz, H. DietzSchwartz,DietzSchwartz--DietzSchwartz-DeitzSchwartz-DietsSchwartz-DietzSchwartz-H. DietzSchwartz/ DietzSchwartz/DietzSchwartz/H. DietzSchwartz; DietzSchwarz-DietzSchwarzt - DietzScwartz, DietzShwartz - DietzShwartz-DietzShwartz/DietzSwartz/DietzА. Шварц, Х. ДитсArthur SchwartzHoward Dietz + +1851924Daniel GaedeClassical violinist and music professor, born in 1966 in Hamburg, Germany.Needs Votehttps://www.bach-cantatas.com/Bio/Gaede-Daniel.htmGaedeWiener PhilharmonikerPolska Filharmonia KameralnaOrchestra MozartTammuz Piano QuartetGaede TrioBundesjugendorchester + +1852464Reuben GreenAmerican violist, born in 1914 and died 5 September 1978.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +1852713Claudia BonfiglioliClaudia Elizabeth BonfiglioliClaudia Bonfiglioli, born on June 27, 1978 in Västerås Skerike, Västmanland, Sweden, is a violinist. She is principal and member of [url=https://www.discogs.com/artist/2770118-Kungliga-Filharmonikerna?anv=The+Royal+Stockholm+Philharmonic+Orchestra&filter_anv=1]The Royal Stockholm Philharmonic Orchestra[/url] since 2013.Needs Votehttps://www.konserthuset.se/en/royal-stockholm-philharmonic-orchestra/members-in-the-orchestra/violin-ii/claudia-bonfiglioli/https://www.imdb.com/name/nm8980727/Norrköping Symphony OrchestraSveriges Radios SymfoniorkesterKungliga HovkapelletGöteborgs SymfonikerKungliga FilharmonikernaBonfiglioli Weber String Quartet + +1853148Michael HaselMichael Hasel is a German flutist, conductor and music professor. He's was member of the [a=Berliner Philharmoniker] from 1 September 1984 to 2023.Needs VoteProf. Michael HaselBerliner PhilharmonikerRadio-Sinfonie-Orchester FrankfurtBerlin Philharmonic Wind Quintet + +1853154Fergus McWilliamBritish classical hornist, born in Inverness, Scotland, UK.Needs Votehttps://www.fergusmcwilliam.com/Berliner PhilharmonikerDetroit Symphony OrchestraSymphonie-Orchester Des Bayerischen RundfunksDie Hornisten Der Berliner PhilharmonikerBerlin Philharmonic Wind QuintetSwonderful OrchestraBerlin Philharmonic Horn Quartet + +1853882Wiener Jeunesse-ChorAustrian youth chorus founded in 1959 by [a=Günther Theuring].Correcthttp://www.bach-cantatas.com/Bio/WJC.htmA Bécsi Jeunesse-KórusChœurs Des Jeunesses Musicales de VienneDer Jeunesse-Chor WienDer Wiener Jeunesse-ChorMitglieder Des Jeunesse-ChorsNiños Cantores De VienaVienna Jeunesse ChoirVienna Jeunesse ChorusVienna Musical Youth ChoirWiener Jaunesse CharWiener Jeunesse Chor + +1853883Günther TheuringProf. Günther TheuringAustrian chorus master, conductor and university lecturer (* 28 November 1930 in Paris, France; † 22 March 2016 in Vienna, Austria). +In 1959, he founded the [a=Wiener Jeunesse-Chor].Needs Votehttps://www.musiklexikon.ac.at/ml/musik_T/Theuring_Guenther.xmlhttp://www.bach-cantatas.com/Bio/Theuring-Gunther.htmhttps://www.mdw.ac.at/693/G. TheuringGuenther TheuringGunther TheuringGünter TheuringProf. Günther TheuringTheuringDie Wiener Sängerknaben + +1854060Markku SuoknuutiMarkku Petteri SuoknuutiFinnish keyboard player, composer and arranger (1937–2009).Needs VoteJuhani Korjus TeamKarpalo + +1854148Jean-Louis SajotFrench clarinet player and professor. +He created the the Octuor de France in 1979, and divides his time between his post as Clarinetist with the Orchestre National de France and his responsibilities as Clarinetist and Musical Director of the Octuor de France.Needs Votehttps://web.archive.org/web/20201004224718/https://www.octuordefrance.com/en/instruments/jean-louis-sajot/Jean-Louis-SajotOrchestre National De FranceEnsemble Carl StamitzOctuor de France + +1855232Venice Baroque OrchestraFounded in 1997 by Baroque scholar, conductor, music director, organist and harpsichordist [a=Andrea Marcon], the Venice Baroque Orchestra is recognized as one of the premier baroque orchestras / ensembles devoted to period instrument performance. Based in Venice, Italy.Needs Votehttps://it.wikipedia.org/wiki/Venice_Baroque_Orchestrahttps://web.archive.org/web/20040129135040/https://www.venicebaroqueorchestra.net/https://web.archive.org/web/20130209212138/https://www.venicebaroqueorchestra.it/cms/en.htmlhttps://web.archive.org/web/20040307224524/https://www.sonyclassical.com/artists/venice_baroque/https://www.deutschegrammophon.com/en/artists/venicebaroqueorchestrahttps://web.archive.org/web/20110707113545/https://www.allianceartistmanagement.com/artist.php?id=vbo&aview=biohttps://www.bach-cantatas.com/Bio/VBO.htmhttps://www.facebook.com/Venice-Baroque-Orchestra-193592500664654/Das Venezianische BarockorchesterL'Orchestra Barocca Di VeneziaL'Orchestre Baroque De VeniseOrchestra Barocca Di VeneziaOrchestre Baroque De VeniseThe Venice Baroque OrchestraVBOVenedig BarockorchesterVenice Barock OrchestraJoël GrareViktoria MullovaLaura MirriDileno BaldinGianfranco RussoStefano VezzaniVania PedronettoAmandine BeyerMario PaladinMauro Lopes FerreiraMauro RighiniRossella CroceGabriele CassoneJonathan PiaRiccardo BalbinuttiGiorgio MandolesiDaniela BeltraminelliAndrea Bressan (2)Davide BettinGianfranco DiniAndrea MarconFranco GallettoBrunello GorlaRaul Orellana (2)Francesco GalligioniCarlo ZanardiChristoph TimpeMaurizio BorzoneAlessandro LanaroDaniele CernutoFrancesco MeucciDaniele CaminitiGiorgio BaldanJohannes KellerMichele FavaroAlessandro SbrogiòMassimiliano TieppoNicola MansuttiAlessandra Di VincenzoMassimiliano SimonettoLuca MaresGiuseppe CabrioGianpiero ZanoccoMarta PeroniJosias RodriguezEvangelina MascardiDaniele Bovo (2)Giulia PanzeriArrigo PietrobonLuca ScandaliGiorgio ParonuzziMichele SantiIvano ZanenghiAlessandro DenabianFranziska ZehnderMargherita ZaneMeri SkejicMarco Ruggeri (4)Jonathan GuyonnetMatteo FusiGisella CurtoloPatrick HenrichsMarialuisa BarbonMargherita OrlandiStefano MolardiLavinia TassinariMichele LotDanielle RuzzaMeri DrobacMarco di GiacomoMassimiliano RaschiettiTerri RatcliffStefanie HaegeleAlessandro PivelliNicola FavaroDiego CalTobias LindnerGiuliano FurlanettoStefano MeloniChouchane SiranossianAnna FusekOrit MesserMaurizio Augusto Benoma + +1855233Marita ProhmannGerman Producer of Classical MusicCorrect + +1855494Willy FreivogelGerman classical flautist, born 1934 in Yugoslavia. Now based in Germany.Needs Votehttp://www.willyfreivogel.deW. FreivogelWilli FreivogelRadio-Sinfonieorchester StuttgartDiabelli TrioOrchester Willy FreivogelBlasorchester Willy FreivogelStuttgarter BläserquintettDas Stuttgarter Kammermusik-Ensemble + +1855541Harlan Lattimore And His Connie's Inn OrchestraNeeds Major ChangesHarlan Lattimore & His Connie's Inn OrchestraHarlan Lattimore & His OrchestraHarlen Lattimore And His Connie's Inn Orch.Harlen Lattimore And His Connies Inn Orch.Harlan Lattimore + +1855839Dave Robbins (4)American jazz trombone playerNeeds VoteDavid RobbinsRobbinsHarry James And His OrchestraHarry James & His Music MakersBob Keene OrchestraThe Dave Robbins BandVancouver Ensemble Of Jazz ImprovisationThe Dave Robbins GroupThe Dave Robbins Quintet + +1856811Claude ThompsonNeeds VoteClaude "Jimbo" ThompsonClaude ThomsonThe Lore Liege Ensemble + +1856990Peter HörrGerman cellist and conductor.Needs Votehttps://web.archive.org/web/20231207112205/http://peterhoerr.de/HörrNova StravaganzaMozart Piano QuartetBundesjugendorchesterEnsemble Tiramisu + +1858115Michael CavalieriBaritone vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +1859325Klaus ZaunerOrchestral percussionist, born 21 October 1972. +CorrectOrchester Der Wiener StaatsoperWiener Philharmoniker + +1859336Charlie FischerClassical PercussionistNeeds VoteCharl FischerCharly FischerCamerata Academica SalzburgFreiburger BarockorchesterIl Giardino ArmonicoI BarocchistiArs Antiqua AustriaZefiroOman Consort + +1859337Harald DemmerAustrian percussionist.Needs VoteKlangforum WienWiener Jeunesse OrchesterEnsemble 20. JahrhundertGustav Mahler JugendorchesterConcilium Musicum + +1859349Herb WinfieldUS early jazz trombone player.Needs VoteHerbert WingfieldBoyd Senter & His SenterpedesCalifornia RamblersThe Georgia MelodiansRandy Brooks and his orchestra + +1859845Benjamin GrundGerman tenor, songwriter and producer of folk music, born 10 November 1980 in Munich, Germany.Needs Votehttp://www.benjamingrund.de/Tölzer KnabenchorRegensburger DomspatzenStimmen Der Berge + +1860033Roger VoisinRoger Louis VoisinFrench-born American classical trumpeter (26 June 1918 – 13 February 2008). + +In 1959, The New York Times called him "one of the best-known trumpeters in this country." Arguably one of the most influential trumpet performers and teachers of the twentieth century, Voisin joined the [a395913] as assistant principal trumpet in 1935 at age seventeen, and became principal trumpet in 1950. He was the youngest musician to be accepted as a member of the Boston Symphony. He performed in the Boston Symphony for 38 years, until 1973. During this period, he was also principal trumpet with the [a392677]. + +Voisin moved to the United States as a child when his father, René Voisin (1893-1952), was brought to the Boston Symphony as fourth trumpet by [a1010199] in 1928. He was initially a student of his father, but he later studied with the Boston Symphony's second trumpet Marcel LaFosse (1894-1969) and principal trumpet Georges Mager (1885-1950). + +He is credited with premiere performances of many major works for trumpet including [a567511]'s <i> Sonata for Trumpet and Piano </i> (with Hindemith at the piano), and [a115464]' <i> Prayer of St. Gregory</i>. He is also credited with the US premiere of [a526583]'s <i> Trumpet Concerto</i>, performing with the Boston Pops Orchestra in 1966. [a520769] wrote <i> A Trumpeter's Lullaby </i> for Roger Voisin in 1949, and it was first recorded with [a406271] conducting Voisin and the Boston Pops Orchestra in 1950. + +He recorded solo trumpet music, edited trumpet solos, orchestral excerpts, and brass ensemble literature and had a great collaboration with Robert King Music Co. He taught at the New England Conservatory of Music for 30 years. In 1975 he became a full professor at Boston Univ, teaching trumpet and chairing the wind, percussion and harp department until his retirement in 1999. His students are found performing in orchestras and teaching at conservatories and universities throughout the world. +Needs Votehttp://www.trumpetguild.org/news/08/0826voisin.htmlhttp://www.boston.com/ae/theater_arts/exhibitionist/2008/02/roger_voisin_89.htmlhttp://en.wikipedia.org/wiki/Roger_Voisinhttps://adp.library.ucsb.edu/names/104972R. VoisinVoisinBoston Pops OrchestraBoston Symphony OrchestraRoger Voisin And His Brass Ensemble + +1860073Lukáš MoťkaClassical trombonistNeeds VoteThe Czech Philharmonic OrchestraCollegium 1704 + +1860121Sebastian WeigleGerman conductor and former horn player, born 1961 in Berlin. Brother of [a1916313], nephew of [a866959].Needs Votehttp://www.sebastianweigle.com/http://www.bach-cantatas.com/Bio/Weigle-Sebastian.htmhttps://oper-frankfurt.de/en/ensemble-guest-artists-opera-team/ensemble/?detail=47https://en.wikipedia.org/wiki/Sebastian_WeigleWeigleStaatskapelle BerlinBerliner Bigband-Variation + +1861694Douglas PatersonBritish classical viola player.CorrectDouglas PattersonThe Chamber Orchestra Of EuropeHanson String QuartetThe Schubert Ensemble Of London + +1861829Marcus SchleichClassical horn player.CorrectMarkus SchleichConcentus Musicus Wien + +1861896Leon PrimaAmerican jazz trumpeter, born July 29, 1907 in New Orleans. +Older brother of [a=Louis Prima].Needs VoteAnthony Parenti And His Famous Melody BoysLeon Prima & His New Orleans Jazz BandLeon Prima GroupLeon Prima And His All Star Band + +1861904Ludovic DutriezFrench double bassist.CorrectOrchestre National De L'Opéra De Paris + +1861906Alexis RojanskiViolist.CorrectOrchestre National De L'Opéra De Paris + +1861907Axel SallesFrench double bassist.Needs VoteAxel SalleOrchestre National De L'Opéra De ParisLes Archets De ParisParis Symphonic OrchestraQuatuor Alma + +1861908Jean-François DuquesnoyFrench bassoonist, born in 1969 in Lille, France.Needs VoteOrchestre Philharmonique De Radio France + +1861911Cyrille MercierFrench classical violist.Needs VoteCyril MercierLondon Philharmonic OrchestraOrchestre Philharmonique De Monte-CarloOrchestre national d'Auvergne + +1862222Christophe RoldanFrench classical percussionistNeeds VoteOrchestre De L'Opéra De Lyon + +1862766Kent McGarityUS trombone player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Fourth HerdMax Roach-John Lewis GroupDave Rasmussen Jazz Orchestra + +1862958Georges BessièreSaxophonistNeeds VoteG. BessiereG. BessièreG. BessièresGeorges BessieresGeorges BessièresGeorges Louis BessiereGrand Orchestre De L'OlympiaLucien Lavoute Et Le Travelling OrchestraGéo Daly Et Son Quintette + +1862973Bob SmartRobert SmartUS choir vocalist born in Los Angeles, CA. Active in France.Needs Votehttp://danslombredesstudios.blogspot.fr/2017/01/bob-smart-un-americain-paris.htmlBob StuartThe Roger Wagner ChoraleLes AngelsLes TroubadoursLes Double SixThe Modern Men + +1862979Gabriel VilainFrench trombonist.Needs VoteG. VilainGaby VilainGaby VillainGaby VilainGrand Orchestre De L'OlympiaLucien Lavoute Et Le Travelling OrchestraClyde Borly Et Ses PercussionsJacques Hélian Et Son OrchestreClaude Thomain Et Son OrchestreParis All Stars (2)Joe Rossi Et Sa Grande Formation + +1864250Amélie RengletBelgian soprano & mezzo-soprano vocalist. + +Amélie Renglet began her musical training at the Conservatory of Namur, where she studied piano and flute. From the age of 11, she discovered the joy of choral singing with Choraline, youth choir from Namur, under the direction of Benoit Giaux. +She studied singing at the GPEI to Benoit Giaux and Laure Delcampe. It 2005, she obtained her license with "Distinction", and aggregation (AESS) with "Great Distinction". +Since then she has studied privately with Poul Emborg and John Guttman Denmark and Eunice Arias Belgium. + +She currently sings in various professional ensembles as the Chamber Choir of Namur (Leonardo Garcia Alarcon), Ars Nova Copenhagen (Paul Hiller), Vox Luminis (Lionel Menier), Ludus Modalis (Bruno Boterf) Psallentes (Hendrik Vanden Abeele), The Demoiselles de Port Royal (Lejeune). + +Amelie as a soloist in recitals (Clara and Robert Schumann, G. Faure, P. Heise, Dr. Verly, etc..) Or in oratorios (Bach cantatas, Fauré's Requiem, Vivaldi's Gloria, ...) led, among others, Mr. Nagashima Toft, Paul Hillier, Pierre Thimus, .... + +Amélie also turned to teaching and lectures regularly singing in different academies. She is currently a professor of singing together at the Academy of Saint-Josse-ten-Node.Needs VoteARChoeur de Chambre de NamurPsallentes + +1864252Ellen Marie ChristensenAlto vocalist.Needs Votehttps://www.facebook.com/ellenmariebrink.christensenEllen Marie Brink ChristensenEllen-Marie ChristensenMusica FictaArs Nova CopenhagenDet Jyske Kammerkor + +1864898Silke AichhornSilke AichhornGerman harpistNeeds Votehttp://www.silkeaichhorn.de/https://de.wikipedia.org/wiki/Silke_AichhornAichhornKurpfälzisches Kammerorchester MannheimTrio ArpaCantabileDuo Flöte-Harfe + +1865088Andrew BerrymanBritish trombonist and conductor. +On completion of his studies in 1984, he was appointed Principal Trombone with the [a=Ulster Orchestra]. In 1988 Andrew was appointed the Principal Trombone of the [a=Hallé Orchestra], a position he held until September 2008.Needs Votehttps://www.linkedin.com/in/andrew-berryman-agsm-dist-ma-58728366/http://www.nsouae.org/andrew_berryman.htmlAndrew John BerrymanAndy BerrymanLondon BrassHallé OrchestraUlster OrchestraYoung Musicians Symphony Orchestra + +1866247Vincent PasquierFrench double bassist.CorrectOrchestre De Paris + +1866499Bert LangenkampDutch trumpeter.Needs VoteConcertgebouworkestEbony BandNederlands Fanfare OrkestSymphonic Brass + +1866506Caroline DelumeFrench classical guitar and theorbo player. She is a teacher at the French National Music and Dance Conservatory.Needs Votehttp://www.conservatoiredeparis.fr/disciplines/les-enseignants/les-enseignants-detail/enseignant/delume/DelumeEnsemble 2E2MLe Concert SpirituelLa TempestaTrío MultifoníaEnsemble Almazis + +1866539Waldo FavreChorus masterNeeds VoteDas Waldo Favre-EnsembleFavreWaldo Favre-ChorDie Berliner Solisten-Vereinigung Waldo Favre + +1866760Eric WyrickAmerican violinist.Needs VoteEric WyricEric WyrichOrpheus Chamber OrchestraNew Jersey Symphony OrchestraPerspectives Ensemble + +1866780Jean RaffardTrombonist. + +After studying violin, harmony and Tromboneat the conservatory of Orleans, his hometown, he entered in 1984 at the Conservatoire National Supérieur de Musique de Paris in the class of Gilles Millière and obtained in 1987 a first prize in Trombone unanimously, followed by a first prize in chamber music and will be admitted in 1990 in the advanced cycle. In addition, he won international prizes at the Prague competitions in 1992, Toulon and Munich in 1995.Successively appointed solo Trombone of: the Republican Guard Orchestra, the Lyon Opera Orchestra, the Lyon National Orchestra, the Royal Concertgebouw Orchestra of Amsterdam, he now holds the position of super-soloist at the Orchestre du Théâtre National de l'Opéra de Paris. Holder of the Certificate of Aptitude since 1992, he is professor at the Conservatoire National de Région de Boulogne Billancourt and assistant professor at the Conservatoire National Supérieur de Musique de Paris. In addition, he is collection director at Billaudot editions. +Jean Raffard plays on an Antoine Courtois Trombone model, model 410 GM.Needs VoteJean RaffartOrchestre De L'Opéra De LyonConcertgebouworkestOrchestre De LyonOrchestre National De L'Opéra De ParisOrchestre De La Garde RépublicaineLe Quatuor de Trombones MillièreLes Cuivres Français + +1866781Pierre LenertFrench violist.Needs VoteP. LenertPierre LénertOrchestre National De L'Opéra De ParisParis Symphonic OrchestraSimple Symphony + +1866898Buddy MorenoNeeds Votehttps://adp.library.ucsb.edu/names/362156Buddy Moreno And QuartetBuddy Moreno and EnsemblePvt. Buddy MorenoHarry James And His OrchestraBuddy Moreno And BandBuddy Moreno And His Orchestra + +1867029Carsten SteinbachCarsten Steinbach (27 October 1974 - 22 February 2021) was a German timpanist and percussionist.Needs VoteSteinbachGürzenich-Orchester Kölner PhilharmonikerBundesjugendorchesterhr-Sinfonieorchester + +1867201Bernie SenenskyCanadian jazz pianist, born 31 December 1944 in Winnipeg, Manitoba, CanadaNeeds Votehttps://www.canadajazz.net/2013/01/21/bernie-senensky/https://berniesenensky.bandcamp.com/B. SenenskyB.S.Bernie SalenskiBernie SerenskySenenskyArt Pepper QuartetBernie Senensky TrioMoe Koffman QuintetJohn Tank GroupBowfireThe Andrew Scott QuartetBernie Senensky SeptetTisziji Muñoz QuartetBernie Senensky QuintetOrganic EarfoodBernie Senensky Quartet + +1867844Edmund ChapmanBritish hornist.Needs VotePhilharmonia OrchestraDennis Brain Wind EnsembleLondon Baroque Ensemble + +1867847Alfred CursueBritish horn player + +Professor of Horn at the Royal Military School of Music, Kneller Hall.Needs VoteA. CursuePhilharmonia OrchestraDennis Brain Wind Ensemble + +1868527Cesare SterbiniItalian writer (1784 – January 19, 1831). +Known for two libretti for operas by [a=Gioacchino Rossini]: Torvaldo e Dorliska (1815) and The Barber of Seville (1816). +Needs Votehttp://en.wikipedia.org/wiki/Cesare_Sterbinihttps://adp.library.ucsb.edu/names/102792C. SterbiniG. SterbiniSerbiniSterbinisterbiniЧ. Стербини + +1868841Berj ZamkochianArmenian-American organist, born April 20, 1929 in Boston; died February 23, 2004 in Boston. He was appointed organist of the Boston Symphony Orchestra and Boston Pops Orchestra.Needs Votehttp://en.wikipedia.org/wiki/Berj_ZamkochianB. ZamkochianZamkochianベルイ・ザムコヒアンBoston Pops OrchestraBoston Symphony Orchestra + +1868842Bernard ZigheraBernard ZighéraBorn 1 Apr 1904, died 13 Sep 1984. For many years, principal harpist with the Boston Symphony Orchestra; also pianist.Correcthttp://www.stokowski.org/Boston_Symphony_Musicians_List.htm#ZZigheraBoston Symphony OrchestraBoston Symphony Chamber Players + +1868887Fernand BernadiClassical baritone.Needs Votehttp://fernandbernadi.org/Fernand BernardiLes Arts Florissants + +1868889Bernhardt JunghänelClassical organist and organ maker.Needs VoteLes Arts Florissants + +1869106Leo OostdamClassical flautistNeeds VoteL. OostdamConcertgebouworkest + +1869107Piet LentzViola da Gamba instrumentalistNeeds VoteNetherlands Chamber Orchestra + +1869108Hans BolDutch cellist and viola da gamba playerNeeds VoteNetherlands Chamber OrchestraLeonhardt-Consort + +1869514Flip Phillips FliptetNeeds Major Changes"Flip" Phillips FliptetFlip Phillips And His FliptetFlip Phillips' FliptetJoe Flip Phillips And His FliptetNeal HeftiBilly BauerFlip PhillipsAaron SachsChubby JacksonRalph BurnsBill HarrisDave ToughMarjorie Hyams + +1869727Antonio PrincipeAntonio PríncipeArgentinian bandoneonist and composer (Alcorta, Santa Fe, 1926 - Buenos Aires, 2007). +Needs Votehttp://www.epsapublishing.com/index.php?modulo=artistas&accion=ver_compositor&idartistas=45#0Antonio J. PríncipeLeopoldo Federico Y Su Orquesta Típica + +1869731Carlos NozziArgentinian cellist (born in Rosario, 1951)Needs Votehttp://www.nozzi.eu/C. NozziCarlos NotzziOrchestre Du Théâtre Royal De La MonnaieOrquesta Euforista De La Ciudad De Buenos AiresOrquesta Estable Del Teatro ColónEnsamble Musical De Buenos AiresGrupo Encuentros De Musica Contemporanea De Buenos AiresAstor Piazzolla Y Su Sexteto Tango NuevoSay No More Symphony Orchestra + +1869749Héctor LetteraArgentinean bandoneon player.Needs VoteLeopoldo Federico Y Su Orquesta Típica + +1869761José LibertellaGiuseppe LibertellaAliases: José D Ariño +Argentine Bandoneonist, Tango composer and orchestra director- +(July 9, 1933 - December 8, 2004)Needs Votehttp://www.todotango.com/creadores/ficha/958/Jose-LibertellaGiuseppe LibertellaJ. D'arinoJ. LibertellaJose LibertellaJosé Libertella Y Su OrquestaJosé Nicolás LibertellaLibertellaLiberterllaホセ・リベルテーラSexteto MayorJosé Libertella Y Su QuintetoJose Libertella Y Su Orquesta TipicaJosé Libertella Y Gran OrquestraCarlos Di Sarli Y Su Gran OrquestaCarlos Garcia & Tango All Stars + +1869777José VottiArgentinean violinist.Needs VoteJose VottiLeopoldo Federico Y Su Orquesta TípicaOsvaldo Piro Y Su Orquesta + +1869780Horacio CabarcosArgentinian bass/contrabass player.Needs VoteFernando Horacio CabarcosFernando Horatio Cabarcosオラシオ・カバルコスLeopoldo Federico Y Su Orquesta TípicaSeleccion Nacional De Tango + +1870277Peter HaywardClassical counter-tenor vocalist.Needs VoteThe SixteenThe Clerkes Of Oxenford + +1870417Jean-Claude LavoignatFrench classical bassoonist.Needs VoteLa Simphonie Du MaraisLes Musiciens Du Louvre + +1871469Magdalena ZiętekClassical violinistNeeds VoteMagda ZiętekPolish National Radio Symphony Orchestra + +1871531Charmian GaddClassical violinist.Needs VoteThe Academy Of St. Martin-in-the-FieldsMacquarie Trio + +1872636Franz KvardaFranz Kvarda (2 July 1904 - 8 May 1971) was an Austrian banjo and cello player.Needs VoteF. KwardaFranz KwardaWiener PhilharmonikerHot Jazz Ernst HolzerWiener KonzerthausquartettDol. Dauber's Jazz-Symphony & Tanz-Orchester + +1872637Karl Maria TitzeAustrian violinist, born 25 May 1909 in Setzdorf, Austria-Hungary (today Vápenná, Czech Republic) and died 11 October 1963 in Vienna, Austria.Needs VoteC. M. TitzeCarl Maria TitzeKarl M. TitzeKarl TitzeKarl. M. TitzeOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Konzerthausquartett + +1873191Maria FriesenhausenMaria Friesenhausen-BalkenholMaria Friesenhausen-Balkenhol (23 March 1932 - 31 July 2020) was a German classical soprano.Needs Votehttps://en.wikipedia.org/wiki/Maria_Friesenhausenhttp://www.bach-cantatas.com/Bio/Friesenhausen-Maria.htmLa Petite Bande + +1873859Orchestre Symphonique De La RTBFLooks like an alias of [a=Belgian Radio And Television Philharmonic Orchestra]CorrectBelgian Radio SymphonyBelgian Radio Symphony OrchestraBelgian Radio Symphony Orchestra (RTBF)Ensemble De L'Orchestre Symphonique de la RTBFEnsemble Symphonique de BruxellesGrand Orchestre De La RTBFLe Grand Orchestre Symphonique de la RtbfNOS de la RTBFOrch. Symph. De La RTBFOrchestra Della Rtbf Di BruxellesOrchestre De Chamber De La R.T.B.Orchestre De La RTBOrchestre Symphonique De La R.T.B.F.Orchestre Symphonique De La Radio & Télévision BelgeOrchestre Symphonique De La Radio BelgeOrchestre Symphonique De La Radio Belge (RTBF)Orchestre Symphonique De La Radio Télévision BelgeOrchestre Symphonique de la R.T.B.Orchestre de la RTBFRTBF Orchestra, BrusselsRTBF Orchestra, BruxellesRTBF Symphony OrchestraRTBF Symphony Orchestra, BruxellesSymfonieorkest RTBFSymphony Orchestra of the Belgian RadioThe Orchestre Symphonique De La RTBFThe RTBF Symphony OrchestraBelgian Radio And Television Philharmonic Orchestra + +1873860Edgar DoneuxBelgian conductor (25 March 1920, Liège – 31 January 1984, Anderlecht).Correcthttp://en.wikipedia.org/wiki/Edgar_DoneuxE. DoneuxEdg. DoneuxEdgar DoneauxEdgard Doneux + +1874785Bob Harrington (2)Robert Maxon HarringtonAmerican pianist, but also active as a vibes player and as a drummer. +Born January 30, 1912, Marshfield, Wisconsin, USA. +Died August 20, 1983, Kona, Hawaii, USA. +Harrington's first job as a musician was on the drums. Later he took upu the vibes and then the piano. He worked for a long time in smaller bands in the midwest, ending up in Chicago. He worked as a dixieland drummer with Bud Freeman, Red Nichols and Muggsy Spanier. He also worked with Billie Rogers, and gained famed as trumpet player with one of Woody Herman's bands. +Harrington began working as pianist around 1945, and appeared in the bands of Vido Musso, Charlie Barnet and George Auld. He was in multiple bands with [a312554].Needs Votehttps://en.wikipedia.org/wiki/Bob_HarringtonB. HarringtonHarringtonR. HarringtonCharlie Barnet And His OrchestraBob Keene OrchestraThe Jack Millman SextetHarry Babasin And The Jazz PickersBob Harrington QuartetThe Dirty Old Men (3) + +1875697Alfred RoséAustrian clarinetist, died on 30 April 2011.Needs VoteAlfred RoseAlfred RosèWiener SymphonikerWiener PhilharmonikerDas Wiener Bläserquintett + +1875699Wolfgang OberkoglerClassical violinistNeeds VoteWiener SymphonikerConcentus Musicus Wien + +1875748Rudolf BartlRudolf Bartl is a German clarinetist. + Needs VoteRundfunk-Sinfonie-Orchester LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +1875753Wolfgang LoebnerGerman classical wind instrumentalistNeeds VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1876463WazzaNeeds Major Changes + +1876984Robert WilloughbyRobert Hugh WilloughbyAmerican flute player, born 6 June 1921 in Grundy Center, Iowa.CorrectThe Cleveland OrchestraThe Oberlin Baroque Ensemble + +1877195Steven ColtriniClassical percussionist.Needs VoteStephen ColtriniThe Academy Of Ancient MusicTristan Fry Percussion Ensemble + +1877334Laure VavasseurFrench classical cellistNeeds VoteOrchestre National De France + +1877336Florent CarrièreClassical cellistNeeds VoteFlorent CarriereOrchestre National De FranceParis Symphonic Orchestra + +1877338Cyril BaletonFrench violinistNeeds VoteC. BaletonOrchestre Philharmonique De Radio FranceCiné-Trio + +1877340Roland ArnassalonClassical violinist.Needs VoteEnsemble IntercontemporainFaton Cahen-Yochk'o Seffer SeptetLofi Octet + +1877341David GaillardViolist.Needs VoteOrchestre De ParisSirba OctetLes Dissonances + +1877344Véronique Terlier EngelhardClassical violinistNeeds VoteVéronique EngelhardOrchestre Philharmonique De Radio France + +1877595James Moody And His OrchestraNeeds Major ChangesJames Moody & His OrchestraJames Moody And His Orch.James Moody OrchestraJames MoodyEddie JeffersonJohnny ColesTate HoustonClarence JohnstonDonald ColeJimmy Boyd (2)Chink WilliamsJohnny LathemSandy Scott (5) + +1877631Hans-Jürgen SchmidtClassical contrabassistNeeds VoteJürgen SchmidtGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +1877878Karl DörrGerman clarinetist.CorrectBamberger SymphonikerBamberger Bläserquintett + +1878421Richard CraddockRichard originates from Edinburgh, and was a choral scholar at Clare College, Cambridge, where he sang extensively while studying architecture at the university. He continued his singing studies in Cambridge and London, and has performed in a wide variety of concerts, oratorio, opera and stage productions, including the British Première of Bernstein's "Trouble in Tahiti". He also sang in the chorus of the Flemish Opera and the Festival della Valle d'Itria. +Richard's Brussels appearances are as a soloist with the International Chorale of Brussels, BachWerk, the Brussels Philharmonic Orchestra, the Konigsberg Kantori from Norway, Les Colyriques, the American Theater Company and the Brussels Light Opera Company. +He also performs regularly as soloist in the annual children's concerts with Bruocsella Symphony Orchestra. +His repertoire runs from Bach and Handel to Gershwin, passing through Italian Opera and German Lieder. +Now lives in Schaerbeek (Brussels) partner of [a7095250] († 22/07/2020) +Also credited as cover & jacket designer, mainly for [a443257].Needs Votehttp://www.craddock.be/richard/index.htmlThe Cambridge SingersThe Choir Of Clare College + +1878428Peter NewburyClassical oboe and cor anglais (English horn) player.Needs VoteP. NewburyPhilharmonia OrchestraOrchester Der Gesellschaft Der Musikfreunde Wien + +1878993Peter StepanekAustrian double bassist.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +1879949Krzysztof WojtyniakPolish classical trombonistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejTrombastic + +1880370Yves PichardFrench bassoonist.CorrectOrchestre Des Concerts Lamoureux + +1880413Jelte AlthuisDutch clarinet playerNeeds Votehttp://jeltealthuis.com/Radio KamerorkestNieuw Sinfonietta AmsterdamCalefax Reed Quintet + +1880469Karl LeafKarl Robert LeafJazz saxophonist during the Big Band eraCorrectKarl Robert LeafLeafLeifHarry James And His OrchestraThe Universal-International Orchestra + +1880877Jewel BrownAmerican jazz singer and actress, born August 30, 1937 in Houston, Texas, USA. Worked with Louis Armstrong from 1961 to 1968. +Former wife of [a=Eddie Curtis] +Died June 2024. +Needs Votehttps://www.facebook.com/jewelbrownfemalejazzandblues/https://en.wikipedia.org/wiki/Jewel_Brownhttps://www.imdb.com/name/nm1658738/https://web.archive.org/web/20121225150134/http://www.dialtonerecords.com/artist/?artist_id=73https://abc13.com/post/jewel-brown-houston-native-legendary-performer-death-jazz/15002760/BrownJ. BrownJewel "Teasin'" BrownJewell BrownДжуэл БраунJewel CurtisLouis Armstrong And His All-StarsHeritage Hall Jazz Band + +1881089Simon DentonClassical cellistCorrecthttps://www.linkedin.com/in/simon-denton-94637a150/Royal Liverpool Philharmonic Orchestra + +1881200J.J. Johnson's Bop QuintetteNeeds Major ChangesJ.J. Johnson's Be-BoopersJ.J. Johnson's Bop QuintetJay Jay Johnson's Bob QuintetJay Jay Johnson's Bop QuintetJ.J. JohnsonHank JonesAl LucasShadow WilsonLeo Parker + +1881498Ewing PoteetAmerican violinist.Needs VoteThe Cleveland Orchestra + +1881587Gerry EastmanAmerican jazz bass and guitar player. Brother of [a343937].Needs Votehttp://www.myspace.com/gerryeastmanEastmanJerry EastmanCount Basie OrchestraContemporary Composers' OrchestraThe Williamsburgh All StarsKaren Francis SextetGerry Eastman Trio + +1882616Andrei IarcaAndreï IarcaViolinist.Needs VoteAndreï IarcaAndreï LarcaAndréi IarcaAntrei IarcaOrchestre De Paris + +1882742Scoop (12)Design & art direction companyCorrect + +1882925Charles Edouard FantinFrench guitar, lute and theorbo player.Needs Votehttp://charlesedouardfantin.wordpress.com/Charles EdouardCharles Édouard FantinCharles-Edouard FantinCharles-Eduard FantinEdouard-FantiEdouard-FantinLes WitchesHuelgas-EnsembleLe Concert D'AstréeL'ArpeggiataEnsemble SpiraleLes PaladinsIsabella D'EsteLa Grande ChapelleFaenzaLe Concert Universel + +1883006Tatjana ErlerGerman contrabassistCorrectMünchener KammerorchesterDeutsche Kammerphilharmonie BremenKammerakademie Potsdam + +1884239Xavier PuertasSpanish contrabass and violone player. Born 1967. +He presently teaches in the Conservatories of Barcelona. +Needs VoteConcentus Musicus WienLe Concert Des nationsHespèrion XXI + +1884305Bob GrafAmerican jazz tenor saxophonist. He was a friend of [a=Clark Terry], with whom he played in 1948 in a formation run by [a=Count Basie]. Graf, heavily influenced by Lester Young, remained associated with Basie's band until 1950, when he was replaced by Wardell Gray; however, he did not take part in any recordings. In 1950/51 he belonged to Woody Herman's Big Band, with which the first recordings were made. He rose to prominence on the St. Louis jazz scene in the mid-1950s, where he worked with guitarist Don Overburg; in October 1956 he played a.o. in Chet Baker's short-lived big band with Bobby Timmons and Phil Urso, who recorded for Pacific Jazz. In January 1958 he recorded the live album At Westminster with local musicians for the Chicago label Delmark Records. In the early 1960s he worked mainly in St. Louis, e.g. with Grant Green; In the late '60s he played in Gerry Mulligan's Big Band. In the 1970s, Graf continued to work in his hometown's club scene, as well as in a music shop repairing instruments. +b.: 1927 in St. Louis, MO +d.: 1981Needs VotePaul GrafRobert GrafRobert Paul GrafWoody Herman And His OrchestraWoody Herman And His Third HerdBob Graf Quartet + +1884306Norman FayeJazz trumpeterNeeds VoteNorman DayeNormie FayeBoyd Raeburn And His OrchestraGeorgie Auld And His OrchestraCharlie Ventura And His OrchestraChet Baker Big Band + +1884679Helmut AscherlHelmut Ascherl (2 February 1940 in Vienna - 11 September 2013) was an Austrian classical percussionist and trombone player. Founder of the [a2824487].Needs VoteWiener SymphonikerWiener VolksopernorchesterMusica Antiqua WienEnsemble Eduard MelkusWiener Instrumentalsolisten + +1884681Gottfried BoisitsAustrian Oboe and English horn player, born 10 January 1944 in Neuhaus/Wart.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerWiener Mozart-BläserEnsemble "11" + +1884682Gerhard TotzauerAustrian clarinetists, born 30 June 1941 in Vienna, Austria. He's the son of [a1976515].Needs VoteOrchester Der Wiener StaatsoperEnsemble Eduard Melkus + +1884687Wolfgang RühmWolfgang Rühm is an Austrian clarinettist.Needs VoteWolfgang RuhmWiener PhilharmonikerEnsemble Eduard MelkusDie Instrumentisten Wien + +1884805Stephan MayerClassical violinistCorrectRoyal Liverpool Philharmonic OrchestraLiverpool Session Orchestra + +1884810Rachel Jones (3)Britich classical violinist and violistNeeds VoteRoyal Liverpool Philharmonic OrchestraLiverpool Session OrchestraThe Manchester Camerata + +1884912Nicolò FonteiItalian composer Fontei, Nicholas, born at Orciano di Pesaro, presumably in the early years of the 17th century. + +There is no history regarding the family and his musical education. Certain is his education as organist that enabled him, in 1638, to fill the post of organist at the church of St. Mary of the Crociferis in Venice, the city in which he lived probably as early as 1634. Traceable back to 1637-38 also the vocation to the priesthood, which led him to wear the cassock.CorrectFonteiNicolò Fontei Orcianese + +1884952Gareth NewmanClassical bassoonist.Needs VoteLondon Philharmonic OrchestraThe Albion EnsembleCapricorn (14) + +1885053Furio ZanasiItalian classical baritone/bass vocalist.Needs VoteF. ZanasiZanasiCappella Musicale Di S. Petronio Di BolognaConcerto KölnLa Capella Reial De CatalunyaConcerto ItalianoEnsemble ElymaAuser MusiciCoro Della Radio Televisione Della Svizzera ItalianaCappella Della Pietà De' TurchiniCoro Del Teatro De La ZarzuelaEnsemble DaedalusIl Teatro ArmonicoEnsemble La ChimeraIl Terzo Suono + +1885149Hermann RohrerClassical horn player.Needs VoteHerman RohrerWiener SymphonikerConcentus Musicus WienDie Instrumentisten Wien + +1885150Kurt LetofskyAustrian violist.Needs VoteKurt LetovskyProf. Kurt LetofskyVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus Wien + +1885299Karl ReitmayerGerman horn player, born in 1957 in Zusmarshausen, Germany, died 23 July 2014.Needs VoteReitmayerMünchner RundfunkorchesterRoseau-QuintettBundesjugendorchester + +1885419Arts Music RecordingMobile recording studio from Rotterdam, Netherlands.Correcthttp://www.artsmusic.nl/Arts MusicArts Music Recording RotterdamArts Music Recording, RotterdamPeter Arts + +1885702Cactus DesignThere is also a 'Label' profile for this design studio at: [l277800].Needs Votehttp://www.swainson.plus.com/index.htmlCactusCactus ConceptCâctus DesignsJérôme Coste + +1885855Danny NapolitanoViolinNeeds VoteStan Kenton And His Orchestra + +1885856Gabe JellenUS cello playerNeeds VoteGabriel JellenStan Kenton And His Orchestra + +1885857Anthony DoriaViolinistNeeds VoteAnthony S. DoriaTony DoriaStan Kenton And His Orchestra + +1885858Phil Davidson (5)Violinist Needs VoteStan Kenton And His Orchestra + +1885859Lew EliasCredited as Concert Master, Asst. Concertmaster, ViolinistCorrectLewis EliasHarry James And His OrchestraStan Kenton And His OrchestraArtie Shaw And His Orchestra + +1885860Seb MercurioViolinNeeds VoteSebastian MercurioStan Kenton And His Orchestra + +1885861Jack WulfeUS cello playerNeeds VoteJack WolfeJack WulffeStan Kenton And His Orchestra + +1885862Zachary BockUS cello playerNeeds VoteZachary BeckZazhary BockStan Kenton And His Orchestra + +1885863Jim Holmes (2)ViolinistNeeds VoteStan Kenton And His Orchestra + +1885864Aaron ShapiroAmerican Viola player.Needs VoteStan Kenton And His OrchestraStan Kenton And The Innovations Orchestra + +1885865Carl OttobrinoViolinistNeeds VoteStan Kenton And His Orchestra + +1885866Dwight MumaAmerican violinist (1902-1985)Needs Votehttps://www.wikitree.com/wiki/Muma-533Stan Kenton And His Orchestra + +1885868Charlie ScarleViolinNeeds VoteCharles ScarleCharles SearleStan Kenton And His Orchestra + +1885870Lloyd OttoFrench horn playerNeeds VoteLoyd OttoStan Kenton And His OrchestraBoyd Raeburn And His Orchestra + +1885871Barton GreyViolinNeeds VoteBarton GrayStan Kenton And His Orchestra + +1885872Dave SmileyDavid SmileyAmerican violist. He's the father of [a1166076] and [a650370].Needs VoteDave\id SmileyDavid SmileyStan Kenton And His OrchestraSan Francisco Symphony + +1885873Paul IsraelViolaNeeds VoteStan Kenton And His Orchestra + +1885874Bob GraettingerRobert Frederick GraettingerAmerican jazz saxophonist and composer. +Born October 13, 1923 in Ontario, California, USA. +Died March 12, 1957 age of 33 in Los Angeles, California, USA. + +Graettinger began studying the saxophone at the age of nine by. At sixteen he landed his first professional job, as saxophonist and arranger with Bobby Sherwood. After a similar stint with Benny Carter, Graettinger decided to devote his full time to writing and arranging, and late in 1947 he joined [a212786]. +Best known for his work as composer and arranger for Stan Kenton. Graettinger died in obscurity at the age of 33 from cancer. Kenton and fellow arranger Pete Rugolo were the only musicians at his funeral.Needs Votehttps://en.wikipedia.org/wiki/Robert_Graettingerhttps://allthingskenton.com/table_of_contents/articles/morgan-graettinger/https://www.ejazzlines.com/big-band-arrangements/by-arranger/bob-graettinger-stan-kenton-charts/http://www.users.globalnet.co.uk/~rneckmag/graett.htmlB. GraettingerBob GraetlingerBob GraettinaerBob GreattingerGraettingerR. GraettingerRobert F. GraettingerRobert GraettingerBenny Carter And His Orchestra + +1885875Jim Cathcart (2)American violinist. +Cathcart worked in Charlie Barnet and Stan Kenton's orchestras.Needs VoteStan Kenton And His Orchestra + +1885876Herbert OffnerViolinist, born 1905 in Canada.Needs VoteBert OffenerStan Kenton And His OrchestraThe Cleveland Orchestra + +1885877Keith Moon (2)American jazz trombonist. +Born 1924, +Died 2006.Needs Votehttp://www.radioswissjazz.ch/en/music-database/musician/25652556aa532115a3f94dc56991adab0b239d/discographyK. MoonMoonWoody Herman And His OrchestraStan Kenton And His OrchestraThe Woody Herman Big BandWoody Herman BandWoody Herman And His Third Herd + +1885879Dave SchackneViolinistNeeds VoteDave SancheDavid SchackneDavid SchacknerStan Kenton And His Orchestra + +1885880Maurice KoukelViolinNeeds VoteStan Kenton And His Orchestra + +1885881Ben ZimberoffAmerican violinistNeeds VoteHarry James And His OrchestraStan Kenton And His Orchestra + +1885882Sam Singer (2)US viola player.Needs VoteSamuel SingerStan Kenton And His Orchestra + +1886183Elisabetta Tiso[b]Soprano[/b] vocalist.Needs VoteElisabeta TisoElisaretta TisoLa Capella Reial De CatalunyaCoro Del Centro Di Musica Antica Di PadovaConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaCapellantiquaMadrigalisti Del Centro Di Musica Antica Di Padova + +1886952Alessandro PiqueAlessandro PiquéClassical oboist.Needs VoteA. PiquetAlessandro PiquetAlessandro PiquèAlessandro PiquéAkademie Für Alte Musik BerlinConcerto KölnLe Concert Des nationsFreiburger BarockorchesterEuropa GalanteIl Giardino ArmonicoRicercar ConsortBalthasar-Neumann-EnsembleEpoca Barocca + +1886953Michele ZeoliContrabass and violone player.Needs VoteThe Amsterdam Baroque OrchestraLe Concert Des nationsLes Musiciens Du LouvreAccademia Strumentale Italiana, VeronaCapriccio StravaganteLes Plaisirs Du ParnasseLe Concert de la LogeLe Concert Universel + +1888014Herb FlemingAmerican jazz trombonist and vocalist. + +Born: April 5, 1898 in Butte, Montana (or) Honolulu, Hawaii. +Died: October 3, 1976 in New York City, New York.Needs Votehttps://en.wikipedia.org/wiki/Herb_Flemming? Herb FlemmingHerb FlemmingHerbert FlemmingDuke Ellington And His OrchestraMamie Smith And Her Jazz HoundsPerry Bradford Jazz PhoolsHenry "Red" Allen And His OrchestraJohnny Dunn's Original Jazz HoundsFreddy Johnson And His HarlemitesJohnny Dunn And His Jazz BandOrchestra Jazz CarliniJohnny Dunn And His BandLena Wilson And Her Jazz Hounds + +1888026Fabrizio ZanellaViolinist.Needs VoteLe Concert Des nationsLes Talens LyriquesEnsemble Baroque De LimogesCafé Zimmermann + +1889923Timothy BoultonBritish viola player, conductor and teacher, lives in West Cornwall. He is professor of Viola and Chamber Music at Guildhall School of Music & Drama in London.Needs VoteTim BoultonEnglish Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of EuropeThe Raphael EnsembleDomus QuartettDivertimentiVellinger Quartet + +1889965Austin YoungAustin "Skin" YoungAmerican Jazz vocalist and musician. +Born c.1898. +Died June 20, 1936 in New York, New York at the age 38 of tuberculosis. +In early 1920's he began singing with the Mason-Dixon Seven Orchestra (in Virginia). He sang with Paul Whiteman and His Orchestra on over 70 recordings. He also sang briefly with Johnny Hamp's Kentucky Serenaders in 1930 then with Abe Lyman’s California Orchestra. +He had been the master of ceremonies in theatres in Cleveland, Ohio and Boston, Massachusetts. He attended the Cincinnati Conservatory of Music.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/112930/Young_Austin_Skinhttps://forum.talkingmachine.info/viewtopic.php?t=51529A. YoungAustin "Skin" YoungAustin "Skip" YoungAustin 'Skin" YoungAustin Skin YoungYoungSkin YoungPaul Whiteman And His Orchestra + +1890009Prince Dee StewartTrumpeter from the Swing Era.Needs VoteDee StewartDink StewartPrince "Dee" StewartBennie Moten's Kansas City Orchestra + +1890349Paul SchaeferPianist.Needs VoteSchaeferRostal & Schaefer + +1890350Peter RostalNeeds VoteRostalRostal & Schaefer + +1890926Benedikte ThyssenBenedikte Pontoppidan ThyssenViolinist.Needs VoteBenedikte P. ThyssenBenedikte Pontoppidan ThyssenBenedikte PontoppidanDR RadioUnderholdningsOrkestretAthene KvartettenDR SymfoniOrkestret + +1891146The Jazz Giants '56Not a real group but a name tagged on these artists for one session and release in 1956. For later re-issues, these releases have mostly been credited to Lester Young.Needs VoteGigantes Do JazzJazz Giants '56Jazz Giants Of 1956Lester Young & The Jazz GiantsThe Jazz GiantsGene RameyTeddy WilsonLester YoungRoy EldridgeVic DickensonJo JonesFreddie Green + +1891340Anna CareweBritish cellistNeeds VoteAnna CarewOrfeo 55Kammerakademie PotsdamSheridan EnsembleSwonderful Orchestra + +1891492Kurt GuntnerViolinist and educator (a professor at the Musikhochschule in Munich), born 27 January 1939 in Munich, Germany; died 9 January 2015.Needs VoteGuntnerKurt GunterProf. Kurt GuntnerMünchner PhilharmonikerBayerisches StaatsorchesterMünchener Bach-OrchesterOdeon Trio + +1891508Red Norvo QuintetNeeds Major ChangesQuintetRed Norvo & His QuintetRed Norvo And His QuintetThe Red Norvo QuintetChico HamiltonJerry DodgionBuddy ColletteMonty BudwigRed CallenderRed NorvoBill Miller (2)Tal FarlowJohn MarkhamRobert DrasninJimmy WybleRed Wootten + +1892420Ari AngervoFinnish violinist and conductor, born 11 July 1944 in Mikkeli, Finland.Needs VoteVoces Intimae QuartetSuomen Kansallisoopperan OrkesteriEspoo-kvartettiSuhonen Quartet + +1892722Lou Raderman And His Pelham Heath Inn OrchestraNeeds VoteLou Raderman & His Pelham Heath Inn Orchestra + +1893266Hendrik-Jan WolfertClassical string player.Needs VoteHendrick-Jan WolfertHendrik Jan WolfertLes Arts FlorissantsHuelgas-EnsembleCurrendeCapriola Di Gioia + +1893275Sarah Van MolBelgian classical soprano vocalistNeeds Votehttp://www.sarahvanmol.be/Collegium VocaleIl GardellinoCurrendeOltremontanoVlaams Radio KoorGli Angeli GenèveBachPlusPluto Ensemble + +1893285László HaraHungarian bassoonist.Needs VoteHara LászlóIfj. Hara LászlóLaszlo HaraLászló Hara Jnr.László Hara JrLászló Hara Jr.László Hara, Jr.Liszt Ferenc Chamber Orchestra + +1893396Roy Robertson (3)David Roy RobertsonBritish Classical violinist. Born 24 January 1899 in Edinburgh, Scotland, UK - Died 19 February 1970 in Ealing, London, England, UK. +He joined [a=The Regimental Band Of The Scots Guards] (3rd Battalion) as a Private in 1916. He may have played in several different ensembles as a violinist, but it's known that he also played a woodwind instrument (maybe more than one?) which he had perhaps had to learn in order to join the Guards. Former member of the [a=London Symphony Orchestra] (1919-1920).Needs Votehttps://lso.co.uk/whats-on/alwaysplaying/read/297-17the-lso-in-world-war-i-roy-robertson.htmlLondon Symphony OrchestraThe Regimental Band Of The Scots Guards + +1893897Horváth EszterHungarian oboist.Needs VoteThe Budapest Philharmonic OrchestraHungarian State Opera OrchestraBudapest StringsLiszt Ferenc Chamber Orchestra + +1894530Robin DavisBritish French horn player.Needs VoteRob DaviesEnglish Chamber OrchestraThe Robin Davis Orchestra + +1894868Catherine WilmersBritish cellist.Correcthttp://www.cwilmers.co.uk/https://twitter.com/ccwilmersLondon Philharmonic OrchestraThe London Cello SoundDavey Chamber Ensemble + +1895018Manfred KlierGerman horn player.Needs VoteKlierBerliner PhilharmonikerPhilharmonisches Oktett BerlinWaldhornquartett der Berliner Philharmoniker + +1895019Karl PilssKarl PilßAustrian pianist, conductor, and composer (4 April 1902 – 22 June 1979)Needs Votehttp://en.wikipedia.org/wiki/Karl_Pil%C3%9FK. PilssKarl PilsPilssWiener Symphoniker + +1895707Peter HoltslagClassical recorder & traverso instrumentalist.Needs Votehttp://www.peterholtslag.comThe Parley Of InstrumentsBrandenburg ConsortBergen BarokkLa Fontegara AmsterdamThe English Concert + +1895825Bob AcriAmerican jazz pianistCorrectR. AcriRay AcriRobert AcriHarry James And His OrchestraDavid Carroll & His OrchestraBobby Christian And His Orchestra + +1896112Veikko SaarnikoskiFinnish violinist. 1941-2012.Needs VoteLahti Symphony OrchestraRadion SinfoniaorkesteriTurku Philharmonic OrchestraKarpaloSuomen Kansallisoopperan Orkesteri + +1896131Fred Van IngenDutch saxophonist and clarinetistNeeds VoteFred van IngenFreddie Van IngenThe SkymastersThe RamblersGijs Hendriks Construction CompanyKlaas Van Beeck And His OrchestraThe Herman Schoonderwalt SeptetBoy Edgar Big Band + +1897107Maite ArruabarrenaSpanish classical mezzo-soprano vocalist, born in 1964 in Dan Sebastian-Donostia (Basque Country)Needs Votehttp://www.iberkonzert.com/es/portfolio-posts/maite-arruabarrena/http://www.euskomedia.org/aunamendi/468#0ArruabarrenaM. ArruabarrenaLa Capella Reial De CatalunyaOrfeón Donostiarra + +1897112Miguel BernalSpanish classical tenor vocalist.Needs VoteM. BernalMiguel Bernal (El de Michoacán)La Capella Reial De CatalunyaChoeur de Chambre de NamurHespèrion XXIAlia MvsicaMusica Ficta (4) + +1897204Martin MenkingGerman cellist, born in 1967 in Münster, Germany.Needs VoteBerliner PhilharmonikerConsortium ClassicumDie 12 Cellisten Der Berliner PhilharmonikerTrio BerlinBerliner Barock SolistenNDR Sinfonieorchester + +1897596Evelyne PersinArtist graphic designer located in France, EU, known for having worked at [l229575] graphic design studio, during the 80’s.Needs VoteE. Persin + +1897717Boots CastleFemale vocalist who recorded with Teddy Wilson's Orchestra in 1937.Needs Vote"Boots" Castle'Boots' CastleTeddy Wilson And His Orchestra + +1898509Chester BurrillJazz trombonistNeeds VoteNoble Sissle And His Orchestra + +1898653Robin BardaClassical alto vocalist.Needs VoteBardaR. BardaThe SixteenThe Clerkes Of Oxenford + +1898654Christopher HodgesClassical bass vocalistNeeds VoteThe SixteenThe Clerkes Of Oxenford + +1898656Simon BurchallBass vocalist.Needs VoteThe Sixteen + +1898657Peter BurrowsClassical tenor vocalist.Needs Votehttp://web.archive.org/web/20130701153529/http://peterpburrows.co.uk/https://www.youtube.com/channel/UCxtEw2_cU0EV5gXUuuz_XGghttps://www.bach-cantatas.com/Bio/Burrows-Peter.htmThe SixteenThe English Concert Choir + +1898686Nicolaus Adam StrungkNicolaus Adam Strungk (christened 15 November 1640 in Braunschweig – 23 September 1700 in Dresden) was a German composer and violinist.Needs Votehttps://en.wikipedia.org/wiki/Nicolaus_Adam_StrungkN. A. StrunckN.A. StrungksNicolas Adam StrunckNicolaus Adam StrunckNikolaus Adam StrungkStrungkStaatskapelle Dresden + +1899119Walther LudwigGerman operatic lyric tenor (* 17 March 1902 in Bad Oeynhausen, German Empire; † 15 May 1981 in Lahr, Germany). Needs Votehttps://en.wikipedia.org/wiki/Walther_Ludwighttps://www.musiklexikon.ac.at/ml/musik_L/Ludwig_Walther.xmlhttps://www.deutsche-biographie.de/pnd118955055.htmlhttps://adp.library.ucsb.edu/names/103711LudwigW. LudwigWalter LudwigWalther Ludwig Mit OrchesterВ. ЛюдвигВальтер Людвиг + +1899277Alessandro De MarchiItalian conductor, harpsichord and organ player, born in 1962 in Rome, Italy.Needs Votehttps://en.wikipedia.org/wiki/Alessandro_De_Marchi_(conductor)De MarchiConcerto VocaleConcerto KölnEnsemble 415Academia Montis RegalisThe Rare Fruits CouncilIl Teatro ArmonicoGli Strali di Cupido + +1899285Lorenza BorraniItalian violinist, born in 1983Needs Votehttps://en.wikipedia.org/wiki/Lorenza_BorraniThe Chamber Orchestra Of EuropeOrchestra MozartSpira Mirabilis + +1899409Norman MurphyAmerican trumpet playerNeeds VoteN. MurphyNorm MurphyGene Krupa And His OrchestraThe Night Pastor and Seven Friends + +1899410Pat VirgadamoJazz trombonist. Born 20 April 1917. Died 4 March 2013Needs VoteP. VirgadamoGene Krupa And His Orchestra + +1899411Musky RuffoMascagni RuffoAmerican jazz saxophonistNeeds Votehttps://www.allmusic.com/artist/mascagni-ruffo-mn0001759974/creditsM. RuffoMascagni "Musky" RuffoMascagni 'Musky' RuffoMascagni RuffoMickey RuffoMuskie RuffoMusko RuffoRuffoHarry James And His OrchestraGene Krupa And His OrchestraTeddy Powell And His OrchestraGeorgie Auld And His OrchestraMel Powell And His Orchestra + +1899412Rudy NovakAmerican trumpet playerCorrectRudy NovackGene Krupa And His Orchestra + +1899413Walter BatesAmerican jazz saxophonistNeeds Votehttps://www.allmusic.com/artist/walter-bates-mn0001602626/creditsW. BatesGene Krupa And His Orchestra + +1899414Jay KelliherAmerican trombonistCorrectJ. KelliherGene Krupa And His Orchestra + +1899415Biddy BastienOvid BastienAmerican jazz bassist, born in 1917, died in 1980Needs Votehttps://musicbrainz.org/artist/c3ac0229-e6c5-405d-b51b-a3405efa3960/relationshipshttps://www.allmusic.com/artist/biddy-bastien-mn0000932714"Biddy" BastienB. BastienBastienBiddy BasteinBiddy BastianBuddy BastienOvid "Biddy" BastienOvid (Biddy) BastienGene Krupa And His OrchestraOriginal New Yorkers + +1899416Torg HaltenAmerican trumpet playerNeeds Votehttps://www.allmusic.com/artist/torg-halten-mn0002142196/creditshttps://musicbrainz.org/artist/3d7a0f30-a319-4435-bc3d-a56e46302c0b/relationshipsHaltenT. HaltenTorg HaltonGene Krupa And His Orchestra + +1899417Babe WagnerEllsworth WagnerAmerican trombonist from New Ulm, Minnesota. Died in 1949 at age 35. + + Co-founded [a4578153] in 1946 with brother [a3660285] aka Virgil E. C. Wagner.Needs Votehttp://mnmusichalloffame.org/uploads/1992_Babe_Wagner.pdfhttps://de.wikipedia.org/wiki/Babe_Wagnerhttps://rateyourmusic.com/artist/babe-wagnerhttps://adp.library.ucsb.edu/names/354902B. WagnerWagnerGene Krupa And His OrchestraBabe Wagner's DutchmenThe Babe Wagner Band + +1899637Miles RamsayMiles Carlton RamsayAmerican-Canadian drummer, singer, arranger and advertising executive born Takoma Park, Maryland. In the 1960s he emigrated to Canada where he had his own TV show and co-founded advertising firm Griffiths, Gibson & Ramsay with [a=Brian Gibson (3)] & [a=Brian Griffiths (3)] (co-founders of [l=Little Mountain Sound Studios]). Husband of [a=Corlynn Hanney], father of [a=Josh Ramsay] and [a=Sara Ramsay]. + +Born on December 17, 1941 in Takoma Park, Maryland, USA. +Died on June 19, 2020 in Vancouver, British Columbia, Canada. +Needs Votehttps://bcentertainmenthalloffame.com/ramsay-miles/https://cypresschoral.com/composers/miles-ramsay/Miles RamseyRamsayThe Roger Wagner ChoraleChor Leoni Men's ChoirNumerality SingersPhoenix Chamber ChoirThe Little Mountain Singers + +1900104Amílcar GameiroPortuguese classical tuba playerNeeds VoteGulbenkian Orchestra + +1900148Miles Davis SeptetIn 1973: [a23755], [a65749], [a290520], [a62811], [a113678], [a271001], [a38236] + +In 1983: [a23755], [a503619], [a237979], [a12628], [a271000], [a271001], [a196880]Needs VoteThe Miles Davis SeptetJohn ScofieldMiles DavisSteve ThorntonBob BergMino CineluRobert Irving IIIDarryl JonesAl FosterVincent WilburnBill Evans (3) + +1900525Johannes Søe HansenDanish classical violinist.Needs VoteJohannesJohannes SøeJohannes Sør HansenDR SymfoniOrkestretDen Danske Duo + +1900622Håkan EhrénSwedish classical double bass player, and Professor of Double Bass. Born in 1958. +He was solo double bass player with [a=Göteborgs Symfoniker], [a=Concertgebouworkest], and Joint Principal Double Bass with the [a=London Symphony Orchestra] (2001-2002). Principal Double Bass with the [a=Kungliga Filharmonikerna] since 1990. He has been performing with [a=The Chamber Orchestra Of Europe] since 1996 and became an associate member of the Orchestra in 2010. He was a Professor of Double Bass at the [l419723] for fifteen years.Needs Votehttps://open.spotify.com/artist/4PFYxeG7oiZTpFuS51pLA3https://music.apple.com/us/artist/hakan-ehren/331156625https://www.konserthuset.se/en/royal-stockholm-philharmonic-orchestra/members-in-the-orchestra/kontrabas/hakan-ehren/https://www.coeurope.org/member/hakan-ehren/London Symphony OrchestraConcertgebouworkestThe Chamber Orchestra Of EuropeGöteborgs SymfonikerKungliga FilharmonikernaUnga Musiker + +1901274Irmgard PoppenGerman violoncellist. She was the first wife of [a=Dietrich Fischer-Dieskau], whom she married in 1947. She died in 1963 of eclampsia during childbirth of their third child. +Mother of [a6872947], [a7020661], and [a2251450].Needs VoteI. PoppenBerliner Philharmoniker + +1902179Laurent David (2)French classical tenor vocalistNeeds VoteLaurent, DavidLe Concert SpirituelSequenza 9.3Arsys Bourgogne + +1902180Thi Lien TruongAlto vocalist.Needs VoteThi Lien TuongLe Concert SpirituelSequenza 9.3Les Nouveaux Caractères + +1902464Nell GotkovskyNell Gotkovsky (1939 - 1998) was a French violinist. She's the daughter of [a1974494] and the sister of [a1371979] and [a3296778].Needs VoteGotkovskyNell GotkobskyNell GotovskyNell & Ivar GotkovskyThe Antaria Trio + +1902508Leo CermakBassoonist.Needs VoteL. CermakWiener SymphonikerDie Instrumentisten Wien + +1902511Günter SpindlerClassical trumpeterNeeds VoteGünther SpindlerConcentus Musicus Wien + +1902709Aaron BairdContrabassist.CorrectEnsemble Modern + +1902711Johannes SchwarzJohannes SchwarzBassoon player. +Born in 1970.Needs Votehttps://www.johannes-schwarz.com/SchwarzJohannes RupeEnsemble ModernEnsemble Modern Orchestra + +1902934Sam DenovAmerican percussionist, born 1923 in Chicago, Illinois and died 4 March 2015 in Des Plaines, Illinois.Needs VoteChicago Symphony OrchestraPittsburgh Symphony OrchestraSan Antonio Symphony OrchestraDavid Carroll & His Orchestra + +1903013Maria BalbiPeruvian classical violinistNeeds VoteGulbenkian Orchestra + +1903222Boyd RaeburnAlbert Boyd RaeburnAmerican jazz band leader, tenor and bass saxophonist. +Born 27 October 1913, Faith, South Dakota, USA. +Died 2 August 1966, Lafayette, Louisiana, USA. +Husband of vocalist [a=Ginnie Powell] & father of music historian [a=Bruce Boyd Raeburn]. +Boyd Raeburn’s band made a big critical splash in New York. Billy Eckstine, whose own bebop big band also suffered from the recording ban, was ecstatic about it, helping Raeburn play a week at the all-black Apollo Theater. Eckstine exhorted the audience to pay attention to what the band was playing. During one of their New York gigs at the Commodore Hotel, their late-night broadcast was heard by trumpeter Roy Eldridge who rushed down and sat in night after night, for free, until the band’s manager simply hired him. (He stayed for two months.) But bad luck dogged Raeburn throughout his career. Finckel left in 1945 to become chief arranger for Gene Krupa’s big band, Sonny Berman and Earl Swope jumped to the high-profile band of Woody Herman, and then as later, no major label wanted to record him because his arrangements were considered “too weird” for dancers. Nevertheless, Raeburn did record 12 sides for the small Guild label in 1945, including performances of “March of the Boyds” and “A Night in Tunisia” on which trumpeter Dizzy Gillespie sat in. These records were later sold to, and reissued by, Albert Marx’s Musicraft label.Needs Votehttps://en.wikipedia.org/wiki/Boyd_Raeburnhttps://www.imdb.com/name/nm5249227/https://adp.library.ucsb.edu/names/338953B. RaeburnRaeburnBoyd Raeburn And His OrchestraBoyd Raeburn All-Stars + +1904247DJ Technical (2)Needs Major Changes + +1904932Fiona HuggettClassical Violinist & ViolistNeeds VoteFionaCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLes Musiciens Du LouvreThe Symphony Of Harmony And InventionThe Huggett FamilyThe English ConcertThe English Fantasy Consort of Viols + +1904933Marc Ashley CooperClassical violin player.Needs VoteMark Ashley CooperThe SixteenOrchestre Révolutionnaire Et RomantiqueThe Academy Of Ancient MusicThe English Concert + +1904934Laurence WhiteheadEnglish baritone vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Whitehead-Laurence.htmGabrieli ConsortPolyphony + +1904935Julia CunynghameClassical bassoonist.Needs VoteThe Academy Of Ancient MusicAustralian Brandenburg OrchestraThe King's Consort + +1904937Sally Jackson (2)Classical wood-wind instrumentalist (bassoon).Needs VoteThe SixteenThe Amsterdam Baroque OrchestraCollegium Musicum 90London Classical PlayersGabrieli PlayersHanover BandThe King's ConsortBrandenburg ConsortPortland Baroque OrchestraThe English Concert + +1904938David BrookerClassical viola player.Needs Votehttps://www.linkedin.com/in/david-brooker-8b82a565/New London ConsortThe Parley Of InstrumentsThe SixteenThe Academy Of Ancient MusicCollegium Musicum 90London Classical PlayersThe King's ConsortBrandenburg ConsortThe Symphony Of Harmony And Invention + +1904939Cherry Baker (2)Classical oboist. Needs VoteThe Academy Of Ancient MusicThe King's Consort + +1904941Tim Lyons (4)Classical double bass player.Needs VoteThe Sixteen + +1904942Jean PatersonClassical violinist.Needs Votehttps://thesixteen.com/team/jean-paterson/The SixteenThe English Baroque SoloistsGabrieli PlayersHanover BandThe King's ConsortBrandenburg ConsortTheatre Of Early MusicInstruments Of Time & TruthKertész Quartet (2) + +1904944Janos KeszeiTimpanist and pedagogue, died in 2011.Needs VoteJanos KeszeJános KeszeiCollegium Musicum 90Orchestra Of The Age Of EnlightenmentEnglish Bach Festival Percussion Ensemble + +1905592MC ShockerNeeds Votehttps://soundcloud.com/mcshockerukShocker + +1905936Serge GoubioudFrench classical tenor & countertenor vocalist.Needs VoteLe Concert SpirituelChoeur de Chambre de NamurLe Poème HarmoniqueEnsemble Jacques ModerneDoulce MémoireEnsemble Suonare E CantareLes Épopées + +1905939Vincent DumestreClassical guitarist and theorbist. +Vincent Dumestre is the founder and artistic director of [a=Le Poème Harmonique], with which he explores the vocal and instrumental repertoire of the seventeenth and early eighteenth centuries. With this faithful team of artists he also seeks to revive the performing arts of the Baroque period, thereby favouring in many of his projects interaction with other artistic disciplines.Needs VoteV. DumestreВенсан ДюместрВинсент ДюместреLa Simphonie Du MaraisCafé ZimmermannLe Poème HarmoniqueLa Canzona + +1905983Camillo OehlbergerCamillo Öhlberger Camillo Öhlberger (28 May 1925 in St. Pölten, Austria - 12 June 2013 in Vienna, Austria) was an Austrian bassoonist. He was the brother of [a4566192] and the father of [a3856839] and [a2198234].Needs VoteCamillo ÖhlbergerKarl OehlbergerWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerEnsemble Eduard MelkusChamber Orchestra of the Vienna State Opera + +1905984Günter LorenzAustrian Oboe and English horn player, born 18 February 1940 in Wiener Neustadt, Austria.Needs VoteGunter LorenzOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerHofmusikkapelle WienEnsemble Eduard Melkus + +1905985Christian CubaschChristian Cubasch (8 January 1924 - 30 January 1979) was an Austrian clarinettist.Needs VoteWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerWiener Oktett + +1907619Sophie ColeClassical violinistNeeds VoteSydney Symphony Orchestra + +1907621Nicole MastersClassical violinistNeeds VoteSydney Symphony Orchestra + +1907623Jennifer BoothClassical violinistNeeds VoteJenny BoothSydney Symphony Orchestra + +1907624Anthony HeinrichsAustralian trumpeter, born in 1970 in Perth, Australia.Needs VoteAnthony HeinricksSydney Symphony Orchestra + +1907626Nick ByrneTrombonist + +For the classical cellist use [a2683322]Needs VoteSydney Symphony Orchestra + +1907628Christopher TingayBritish clarinetist, born in 1969, based in Australia.Needs VoteChris TingaySydney Symphony OrchestraOrchestre Mondial Des Jeunesses Musicales + +1907631Marnie SebireHorn player.Needs VoteSydney Symphony OrchestraAustralian Youth Orchestra + +1907632Stan W KornelAustralian violinistNeeds VoteSydney Symphony Orchestra + +1907635Shefali PryorAustralian oboistNeeds VoteSydney Symphony Orchestra + +1907639Monique IrikClassical violinist.Needs VoteSydney Symphony Orchestra + +1907641Scott KinmontAustralian trombonistNeeds VoteSydney Symphony Orchestra + +1907644Craig WernickeAustralian clarinetistNeeds VoteSydney Symphony Orchestra + +1907645Steven LarsonAmerican double bassistNeeds VoteSydney Symphony Orchestra + +1907648Marianne BroadfootAustralian violinistNeeds VoteSydney Symphony OrchestraEnigma Quartet + +1907652Shuti HuangChinese violinist, based in Australia.Needs VoteAustralian Brandenburg OrchestraSydney Symphony OrchestraSydney Alpha Ensemble + +1907656Alexander NortonAustralian classical violinistNeeds VoteAlex NortonSydney Symphony Orchestra + +1907661Leonid VolovelskyClassical violistNeeds VoteSydney Symphony Orchestra + +1907668Geoffrey O'ReillyClassical hornist.Needs VoteGeoff OGeoff O'ReillySydney Symphony Orchestra + +1907670Felicity TsaiAustralian violistNeeds VoteSydney Symphony Orchestra + +1907977Joël SuhubietteJoël SuhubietteFrench tenor, chorus master and conductor, born 1962 in Orthez, France.Needs Votehttp://fr.wikipedia.org/wiki/Joël_Suhubiettehttps://www.facebook.com/JoelSuhubiette/Joel SuhubietteLes Arts FlorissantsCollegium VocaleLa Chapelle RoyaleEnsemble Jacques Moderne + +1908874Charles Taylor (2)Classical violinist and concertmaster.Needs VoteOrchestra Of The Royal Opera House, Covent Garden + +1910460Josiah "Cie" FrazierAmerican jazz drummer. +Born 23 February 1904 in New Orleans, Louisiana. +Died 10 January 1985 in New Orleans, Louisiana. + +"Cie" played with, among others, : [a=George Lewis (2)], [a=Billie & De De Pierce], [a=Paul Barbarin], [a=Oscar "Papa" Celestin], [a=Emma Barrett].Needs Votehttps://en.wikipedia.org/wiki/Cie_Frazierhttps://64parishes.org/entry/cie-frazierhttps://musicrising.tulane.edu/discover/people/josiah-cie-frazier/https://digitallibrary.tulane.edu/islandora/object/tulane%3A15486https://www.nytimes.com/1985/01/13/us/cie-frazier-dead-at-81-new-orleans-musician.html"Cie" Frazier"Cie" Josiah FrazierC. FrazierCiE FrazierCie FrasierCie FrayerCie FrazierCié FrazierJ. FrazierJoseph "Cie" FrazierJoseph FrasierJoseph FrazierJoshia Cie FrasierJosiah "Cié" FrazierJosiah Cie FrazierJosiah FraiserJosiah FrasierJosiah FrazierPreservation Hall Jazz BandOriginal Tuxedo Jazz OrchestraEureka Brass BandThe New Orleans Ragtime OrchestraPaul Barnes And His Polo Players + +1910724Frank ZulloUS jazz trumpeter from the swing-era, b 1912 in McAdoo, PennsylvaniaNeeds Votehttp://www.brasshistory.net/MuckCat1939.pdfFrank Zullo And ChorusFrankie ZulloCasa Loma OrchestraGlen Gray & The Casa Loma Orchestra + +1910725James Harris (12)James E. HarrisJazz and rhythm 'n' blues drummer. Teacher of [a257251]. Nickname "Coatsville". +Played for Louis Armstrong.Needs VoteJames "Coatsville" HarrisJames E. HarrisJoe HarrisLouis Armstrong And His OrchestraRoy Gaines & His Orchestra + +1911162Philip ShukenReeds player, swing eraNeeds VoteP. ShukenPhil ShukenPhil ShukinLouis Armstrong And His OrchestraHenry Busse And His OrchestraJohnny Richards And His Orchestra + +1911256Marie LeenhardtHarpistCorrectHallé Orchestra + +1911340Ginnie PowellVirginia Raeburn née PowellAmerican big band vocalist. Wife of bandleader [a=Boyd Raeburn] & mother of music archivist-historian [a=Bruce Boyd Raeburn]. + +Born c.1926 in Chicago, Illinois, USA +Died July 25, 1959 in Nassau, Bahamas (age 33).Needs Votehttps://bandchirps.com/artist/ginnie-powell/https://www.imdb.com/name/nm2911522/Gimmy PowellGinnie Powell and the ClassmatesGinny PowellHarry James And His Orchestra + +1911367David Glasser (2)American saxophone player +Born June 03, 1962 in New York City, New York + +He has performed extensively with the Clark Terry Quintet (1995 - 2006) and with the Count Basie Orchestra (1989-91 under the direction of Frank Foster), Illinois Jacquet (1988, 1991-95), and Barry Harris. He also performs with the Dizzy Gillespie All Stars (Feat. Jon Faddis, Frank Wess, Jimmy Heath, Slide Hampton, James Moody), Hank Jones, Bob Mintzer and many others. +Needs Votehttp://www.daveglasser.com/Dave GlasserGlasserCount Basie OrchestraEquinox Jazz QuintetThe Eastman School Of Music Jazz EnsembleJaki Byard And The Apollo StompersThe Bill Dobbins QuartetDMP Big BandThe Dave Glasser Clark Terry Barry Harris Project + +1911868Günter RumpelSwiss classical flute player.Needs Votehttps://itunes.apple.com/us/artist/gunter-rumpel/id948475723https://rateyourmusic.com/artist/gunter-rumpelGunter RumpelGünther RumpelTonhalle-Orchester Zürich + +1911974Jimmy Holliday (2)Classical bass vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Holliday-James.htmLondon VoicesThe SixteenCollegium VocaleThe Binchois ConsortI FagioliniEnsemble Plus UltraExaudiTenebrae (10)Consortium (8) + +1912286Jan KouwenhovenDutch oboist, born 1950 in Zaandam, Netherlands.Needs VoteJ. KouwenhovenConcertgebouworkestConcertgebouw Chamber OrchestraEbony Band + +1913021Stephen WatersClassical clarinettist, and clarinet teacher. Born in 1914 - Died in 1991. +Former member of the [a=London Symphony Orchestra] (1934-1937) and former Principal Clarinet in the [a=London Philharmonic Orchestra]. He also became a member of the [a=Dennis Brain Wind Ensemble] and the [b]Malcolm Arnold Wind Quintet[/b]. Clarinet teacher in the [l527847] until his retirement in 1967.Needs Votehttps://open.spotify.com/artist/49nbxV3HypHKkqvjSqiE0bhttps://music.apple.com/us/artist/stephen-waters/320621442S. WatersLondon Symphony OrchestraLondon Philharmonic OrchestraThe English Opera GroupDennis Brain Wind EnsembleLondon Baroque Ensemble + +1913481Marie-Françoise BlochFrench classical string instrumentalistNeeds VoteF. BlochFrancoise BlochFrançoise BlochFlorilegium Musicum De ParisLa Grande Ecurie Et La Chambre Du Roy + +1913498Patrick CalafatoClassical violistNeeds VoteOrchestre National Bordeaux Aquitaine + +1913992Harold RobertsJazz trombonist + +Could be the same person as [a=Harry Roberts (5)] and/or [a=Harry Roberts (9)]Needs VoteLionel Hampton And His Orchestra + +1914160Shelley DennyAmerican jazz trombonistNeeds VoteStan Kenton And His Orchestra + +1914417Uwe LohrmannUwe Lohrmann (9 December 1936 in Karlsruhe, Germany - 17 November 2018 in Heidelberg, Germany) was a German composer, organist and choral conductor.Needs Votehttp://www.uwe-lohrmann.de/LohrmannRegensburger Domspatzen + +1914660Edith van MoergastelDutch violist.CorrectE. van MoergastelConcertgebouworkest + +1915380Albert LinderDanish hornist, born 1937 in Copenhagen, Denmark, living and working in Gothenburg, Sweden, from the mid-1950s. + +He started with the horn in the Tirol Band at the age of twelve. He studied with Knud Sørensen in Copenhagen, Franz Gerstendörfer in Salzburg and [a4995694] in Vienna. Albert Linder has been principal hornist with many orchestras: the Mozarteum Orchestra in Salzburg, the Süddeutscher Rundfunk in Stuttgart, the Berlin Radio Symphony, the Durban Symphony, and the Winnipeg Symphony Orchestra: since 1960 he has been principal hornist with the [a1015406]; he also teaches at [l683074]. He has won first prize in the Concours International d'Exécution Musicale in Geneva and he has appeared as soloist in 15 countries all over the world, including Japan, USA, Canada, South Africa and in Europe. +Needs VoteOrchester Der Wiener StaatsoperDas Mozarteum Orchester SalzburgGöteborgs SymfonikerGöteborgs Blåsarkvintett + +1915381Josef KondorAustrian violinist, born 25 September 1934 in Vienna, Austria and died 4 July 2001.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerWeller-Quartett + +1915382Werner ReselCellist and former director at the [a=Orchester Der Wiener Staatsoper], born 22 June 1935 in Essen, Germany.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraWeller-Quartett + +1915844Elie CohenFrench conductor, who made his début on 7 August 1922 (1899 - 1942) + +Needs VoteCohenE. CohenM. CohenM. Elie CohenM. Élie CohenOrchestre Elie CohenOrchestre Du Théâtre National De L'Opéra-Comique + +1915916Willie 'The Lion' Smith And His CubsNeeds Major ChangesThe Lion And The CubsWillie "The Lion" Smith & His CubsWillie "The Lion" Smith & His Jazz CubsWillie "The Lion" Smith And His CubsWillie 'The Lion' Smith & His CubsWillie (The Lion) SmithWillie (The Lion) Smith And His CubsWillie Smith " The Lion" And His CubsWillie Smith "The Lion" And His CubsWillie Smith (The Lion) & His CubsWillie Smith (The Lion) And His CubsWillie "The Lion" Smith + +1916313Friedemann WeigleGerman violist, born 2 September 1962 in Berlin, Germany, died in July 2015 in Berlin, Germany. Brother of [a1860121], nephew of [a866959].Needs VoteBerliner Sinfonie OrchesterArtemis QuartettPetersen Quartett + +1916314Ekkehard WagnerEkkehard Wagner is a German tenor vocalistNeeds VoteEckehard WagnerRundfunkchor LeipzigThomanerchorCapella Fidicinia + +1916316Gernot SüßmuthGerman violinist, concert master and professor of music at the Hochschule für Musik Franz Liszt Weimar, Germany.Needs Votehttp://www.gernot-suessmuth.deGernot SüssmutGernot SüssmuthStaatskapelle WeimarRundfunk-Sinfonieorchester BerlinEuropean Union Chamber OrchestraPetersen QuartettAperto Piano QuartetClarens QuintetThüringer Bach Collegium + +1916319Hans-Jakob EschenburgGerman violoncellist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigRundfunk-Sinfonieorchester BerlinPetersen QuartettAperto Piano Quartet + +1916322Alexei BruniAlexei Mikhailovich BruniRussian violinist, born 1954 in Tambov, Russia. Professor at the [l589988] and concert master of the [a1032218].Needs VoteAlexei BrouniAlexej BruniAlexey BruniА.БруниАлексей БруниRussian National Orchestra + +1916704Paul Friessoperatic baritoneNeeds Vote + +1916705Alexandre Dumas FilsAlexandre DumasFrench author and playwright, born 27 July 1824 in Paris, died 27 November 1895 in Marly-le-Roi, Yvelines. Best known for the romantic novel, La Dame aux Camélias (The Lady of the Camellias). Born in Paris, France, the illegitimate child of Marie-Laure-Catherine Labay (1794–1868), a dressmaker, and novelist [a=Alexandre Dumas]. In 1831 his father legally recognized him and ensured that the young Dumas received the best education possible at the Institution Goubaux and the Collège Bourbon. Needs Votehttps://en.wikipedia.org/wiki/Alexandre_Dumas,_filsA. DumasA. Dumas FilsA. Dumas ml.Alexander DumasAlexander Dumas D. J.Alexander Dumas filsAlexandre DumasAlexandre Dumas (Sohn)Alexandre Dumas (Son)Alexandre Dumas filsА. Дюма - СынА. Дюма-сын + +1917102Herbert WinslowAmerican horn player.CorrectMinnesota Orchestra + +1917106Kenneth PattiAmerican violinist.CorrectThe Cleveland OrchestraThe Saint Paul Chamber Orchestra + +1917195Jeremy MenuhinJeremy Louis Eugene MenuhinBritish pianist, born 2 November 1951. He's the son of [a532086].Needs VoteJeremyMenuhin Duo + +1917198Louis PersingerAmerican violinist and pianist, born 11 February 1887 in Rochester, Illinois and died 31 December 1966 in New York, New York. Persinger became concertmaster of the San Francisco Symphony in 1915 at age 28, where he was also an associate conductor. He held this post for eleven seasons, 1915-1925. He organized the Persinger String Quartet in about 1918. While in San Francisco he had a number of famous San Francisco violin students, including Yehudi Menuhin (whom Persinger began teaching at age six), Ruggiero Ricci and Isaac Stern. In 1930, Persinger relocated to New York, succeeding Leopold Auer at the Institute of Musical Art (predecessor of the Juilliard School). His son, Rolf Persinger, was an accomplished violist. They concertized together and made several recordings recordings together.Needs Votehttp://en.wikipedia.org/wiki/Louis_Persingerhttp://www.stokowski.org/Principal_Musicians_San_Francisco_Symphony.htmhttps://adp.library.ucsb.edu/names/109282L. PersingerPersingerBerliner PhilharmonikerSan Francisco Symphony + +1917208Corinna DeschGerman violinist, born in GelsenkirchenNeeds VoteCorinne DeschDeschLondon Philharmonic OrchestraBayerisches Staatsorchester + +1917212Thomas SonnenGerman horn player, born 1967 in Hanau.Needs VoteJunge Deutsche PhilharmonieOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspieleDeutsche Kammerphilharmonie BremenHR - BrassBundesjugendorchesterhr-SinfonieorchesterBach, Blech & BluesStaatsphilharmonie Nurnberg + +1917961Keith ErwenOperatic tenor.Needs VoteKeith ErwinКит Ървин + +1918152Kerstin Linder-DewanClassical violinist.Needs VoteThe King's ConsortThe English ConcertBlanmerle Ensemble + +1918153Rachel HelliwellFlautist from the UK.Needs VoteThe SixteenThe King's Consort + +1918154Katrina RussellClassical bassoonist.Needs VoteGabrieli PlayersThe King's ConsortPacific Baroque OrchestraClassical OperaThe English ConcertThe MozartistsVictoria Baroque Players + +1918155Timothy CroninClassical string instrumentalistNeeds VoteTim CroninMusica Antiqua KölnCollegium Musicum 90Gabrieli PlayersThe King's Consort + +1918156Jane DownerClassical oboist.Needs VoteGabrieli PlayersThe King's ConsortThe English ConcertAustral Harmony + +1918157Mark Radcliffe (3)Classical oboist.Needs VoteMark RadcliffGabrieli PlayersThe King's ConsortEuropean Brandenburg EnsembleThe English ConcertThe Bach Players + +1918158Hilary StockClassical oboist from the UK.Needs VoteThe SixteenThe Amsterdam Baroque OrchestraGabrieli PlayersThe King's ConsortThe English Concert + +1918159Katharina SpreckelsenClassical oboist.Needs VoteKatharina SpeckelsonKatherina SpreckelsenGabrieli ConsortThe Amsterdam Baroque OrchestraEnsemble 415Collegium Musicum 90Orchestra Of The Age Of EnlightenmentCapella SavariaCantus CöllnThe King's ConsortEuropean Brandenburg EnsembleThe English Concert + +1918878Ben NorburyClassical oboist.Needs VoteBenjamin NorburyThe English Concert + +1918879Nicholas Thompson (2)Classical trumpeter.Needs VoteNichol ThompsonNick ThompsonThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of EuropeThe English Concert + +1918880Neil Foster (3)Percussionist / drummer.Needs VoteThe English Concert + +1918881Ena BurgessClassical oboist.Needs VoteThe English Concert + +1918882Nicholas BendaClassical oboist.Needs VoteThe King's ConsortThe English Concert + +1918883Alberto GuerraClassical woodwind instrumentalistNeeds VoteAlberto GeurraAccademia BizantinaIl Giardino ArmonicoSonatori De La Gioiosa MarcaI BarocchistiEnsemble ContrechampsEnsemble La FeniceThe English ConcertLa Pifarescha + +1918884Nat HarrisonClassical bassoonist.Needs VoteThe English Concert + +1918885Laurice CampbellClassical viola player.Needs VoteBrandenburg ConsortThe English Concert + +1918886Caroline KershawClassical Oboe & Recorder instrumentalistNeeds VoteThe Academy Of Ancient MusicThe King's ConsortThe English Concert + +1918887Robin CaneClassical horn player.Needs VoteThe English Concert + +1919432Henry Balfour GardinerBritish musician, composer, and teacher (7 November 1877 – 28 June 1950). +He was the great-uncle of the conductor Sir [a=John Eliot Gardiner].Needs Votehttps://en.wikipedia.org/wiki/H._Balfour_Gardinerhttps://adp.library.ucsb.edu/names/356903Balfour GardinerBalfour-GardinerGardinerH Balfour GardinerH. Balfour GardinerHenri Balfour GardinerHenry Balfour-Gardiner + +1919497Frank HooksAmerican trombonistNeeds VoteFrank Gaines HooksFrankie HooksCount Basie OrchestraThe Eric Dixon SextetTrumpet Young Und Sein Negerorchester + +1919594Nicholas Robinson (2)Nicholas Anthony RobinsonClassical violinistNeeds VoteNicholas A. RobinsonNicholas Anthony RobinsonNicholas RobinsonNick RobinsonNicolas RobinsonConcerto ItalianoCafé ZimmermannIl Complesso BaroccoCappella Della Pietà De' TurchiniL'Aura Soave CremonaLa RisonanzaZefiroIl Pomo d'OroThe English ConcertCompagnia De MusiciDivertissement (2) + +1919779Franz Anton HoffmeisterGerman composer and music publisher, May 12, 1754 – February 9, 1812.Needs Votehttps://en.wikipedia.org/wiki/Franz_Anton_HoffmeisterF. A. HoffmeisterF. A. HofmeisterF.A. HoffmeisterF.A.HoffmeisterFranz HoffmannFranz HoffmeisterFranz-Anton HoffmeisterHoffmeister + +1919830Toxic (24)Paul PollardUK hardtrance/hardstyle DJ and producer.Needs Votehttps://soundcloud.com/dj_toxichttps://www.facebook.com/DjToxic.ukDJ ToxicRe:ToxD + +1920040Claire MichonRecorder & Flute player.Needs VoteLes WitchesLes Talens Lyriques + +1920254Mariana TodorovaClassical violinist, born in 1974 in Varna (Bulgaria)Needs VoteOrquesta Sinfónica de RTVE + +1920409Alexander LonquichGerman classical pianist, born 1960 in Trier.Needs Votehttp://en.wikipedia.org/wiki/Alexander_Lonquichhttps://de.wikipedia.org/wiki/Alexander_LonquichAlexander LongquichLonquich + +1920903Carlos RieraChalumeau and clarinet player.Needs VoteOrchestra Of The 18th CenturyThe English Concert + +1921539Bob SoboNeeds Major Changes + +1922270Grégoire Fohet-DuminilClassical baritone vocalist.Needs VoteLe Concert Spirituel + +1922275Catherine JacquetClassical violinist.Needs VoteEnsemble IntercontemporainEnsemble Ars NovaLes Siècles + +1922278Jérôme ComteClassical clarinetist.CorrectEnsemble Intercontemporain + +1922281Claire MicheletClassical violinist.Needs VoteEnsemble IntercontemporainOrchestre National Des Pays De La Loire + +1922282Pierre CorbelClassical bass & baritone vocalist.Needs VoteLe Concert SpirituelCanticum Novum + +1922283Benoît PorcherotClassical tenor / countertenor vocalistNeeds VoteLe Concert SpirituelChoeur de Chambre de NamurLe Concert D'AstréeLes Chantres Du Centre De Musique Baroque De VersaillesOpera FuocoGalilei Consort + +1922285Solange AñorgaClassical soprano.CorrectLes Arts Florissants + +1922286Nicolas MaireTenor vocalistNeeds VoteEnsemble IntercontemporainLe Concert SpirituelLes Arts FlorissantsChœur De Chambre AccentusChoeur de Chambre de NamurMaîtrise De Notre-Dame De Paris + +1922287Claude MassozClassical bass / baritone vocalist.Needs VoteChoeur de Chambre de Namur + +1922288Bertrand BontouxClassical bass vocalist.Needs VoteLes Arts Florissants + +1922292Valérie RioClassical soprano.Needs VoteLes Arts FlorissantsMaîtrise De Notre-Dame De Paris + +1922776Lester Young And His OrchestraNeeds Major ChangesL. Young E Orch.Les Young's OrchestraLester Young & His Orch.Lester Young & His OrchestraLester Young And OrchestraLester Young Et Son OrchestreLester Young OrchestraLester Young's OrchestraBuddy RichGene RameyConnie KayLester YoungJo JonesJohn Lewis (2)Joe ShulmanJohn OreGildo MahonesJesse Drakes + +1923542Rytmi-YhtyeNeeds Major ChangesRyrmi-yhtyeRytmi-yhtyeRytmin Solistiyhtye + +1923679Olavi LampinenTauno Olavi LampinenFinnish trombonist. Born on November 27, 1918 in Janakkala, Finland and died on July 7, 1983 in Nurmijärvi, Finland.Needs VoteOlavi "Ankka" LampinenOlavi Lampisen Puhallinyhtye + +1924460Susanne Dietz (2)Classical violinist.Needs VoteCapella Agostino SteffaniHannoversche HofkapelleMusica Alta Ripa + +1924654Christiane FrobeniusLiner notes translator for classical releases.CorrectChristiane ForbeniusChristiane Frobelius + +1924887William Reid (5)Classical violinist and conductor. +Former member of the [a=London Symphony Orchestra] (1954-1959). He was conductor of the [a=Sadler's Wells Opera Company] and the [b]Elizabethan Melbourne Orchestra[/b].Needs VoteBill ReidPhil ReidW. ReadW. ReidW. reidWilliam ReedLondon Symphony OrchestraThe Kingsway Symphony OrchestraThe Steve Gray Orchestra + +1924996Keith Hartley (3)Classical bass playerCorrectOrchestra Of The Royal Opera House, Covent GardenLondon Harpsichord Ensemble + +1925015Christopher KiteClassical keyboard instrumentalistNeeds VoteThe Medieval Ensemble of LondonLondon Harpsichord Ensemble + +1925513Ulrike EngelAustrian classical violinistNeeds Votehttps://at.linkedin.com/in/ulrike-engel-10023353Uli EngelThe King's ConsortBalthasar-Neumann-EnsemblePiccolo Concerto WienThe English ConcertEnsemble Ventus Lucundus + +1925538David Frost (3)Music producer and pianist. He has won 10 Grammys for his work, most recently in 2011, when he won four awards including Producer of the Year, Classical.Correcthttp://www.davidfrost.net/http://en.wikipedia.org/wiki/David_Frost_(producer)David Andrew Frost + +1926421Ursula Smith (2)Classical cellist. +Ursula Smith was principal cello of the [a=Scottish Chamber Orchestra] from 1993 until 2002. +In 2006 Ursula joined the [a=Zehetmair Quartett]. + +Not to be confused with the violinist and cellist [a=Ursula Smith] from the 70s prog folk band [a=Third Ear Band]. +Needs Votehttp://ursulasmith.netEsbjerg EnsembleScottish Chamber OrchestraZehetmair QuartettThe Lowbury Piano TrioI Musicanti (3) + +1926516Karl AsplundSwedish poet, short story writer and art historian. +Born April 27, 1890 in Jäder, Södermanland, Sweden — died April 3, 1978 in Stockholm, Sweden.Needs Votehttps://en.wikipedia.org/wiki/Karl_AsplundK AsplundK. AspelundK. AsplundKarl Aspelund + +1926624Chihiro Saito (2)Japanese cellist, born 1968 in Kanagawa.Needs VoteChihiro Saito-Kraut斉藤千尋Südwestdeutsches KammerorchesterLotus String QuartetOrchester Der Ludwigsburger Schlossfestspiele + +1926955Tauno HannikainenTauno Heikki HannikainenFinnish cellist and conductor, born 26 February 1896 in Jyväskylä, Finland and died 12 October 1968. He's the son of [a717492] and the brother of [a1819999].Needs Votehttp://en.wikipedia.org/wiki/Tauno_HannikainenHannikainenТ. KhannikainenТ. ХанникайненТауно ХанникайненHelsinki Philharmonic OrchestraChicago Symphony OrchestraTurku Philharmonic Orchestra + +1927246Stockholm Chamber OrchestraUse [a2154295]Needs VoteNew Stockholm Chamber OrchestraOrchestre De Chambre De StockholmOrchestre De Chambre De StockolmOrchestre de Chambre de StockholmPer Billman + +1927284Gerald EmmsGerald H. EmmsBritish classical violinist. +Former member of the [a=London Symphony Orchestra] (1933-1939), [b]The String Quartet[/b], [b]The Entente String Quartet[/b], [b]The Isidore Scwiller String Octet[/b], [b]The Isidore Schwiller Sextet[/b], and Principal 2nd Violin with the [a=Philharmonia Orchestra] at its public debut on 27 October 1945.Needs VoteG. EmmsGerald EnnsLondon Symphony OrchestraPhilharmonia OrchestraThe Kingsway Symphony Orchestra + +1927513József KissHungarian oboistNeeds VoteJ.KissJosef KissJozsef KissJószef KissKiss JózsefLiszt Ferenc Chamber OrchestraBudapest Wind EnsembleFerenc Erkel Chamber Orchestra + +1928588Jan SmetsBelgian classical trombonistNeeds Votehttps://www.jansmets.be/Orchestre Du Théâtre Royal De La MonnaieThe Bone Project + +1928589Carlos BruneelClassical flautistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +1928591Koen SeverensBelgian Classical trombonist and composer +Born in Wilrijk September 19th 1959Needs VoteOrchestre Du Théâtre Royal De La MonnaieThe Bone Project + +1928595Dirk NoyenBelgian bassoonistNeeds VoteIctus (2)Orchestre Du Théâtre Royal De La Monnaie + +1928597Luk NielandtClassical oboistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +1928598Luc BergéClassical hornistCorrectLuc BergeLa Petite BandeIl Gardellino + +1929463Victor EngleAmerican drummer active in the 1920s & 1930sNeeds VoteEngleVic AngleVic EngleVic EnglesFletcher Henderson And His OrchestraRed Nichols And His Orchestra + +1929465Tony Sacco (3)Needs VoteSaccoT. SaccoCalifornia Ramblers + +1929472Ted KleinSaxophonist and clarinetist.Needs VoteTeddy KleinBob Crosby And His OrchestraFred Rich And His Hotel Astor Orchestra + +1930176Deutsche Kammerphilharmonie BremenGerman chamber orchestra founded in 1980 by students of music. Institutionalization 1987 in Frankfurt, since 1990 residing in Bremen. Conductors and music directors were/are Mario Venzago, Heinrich Schiff, Jiri Belohlavek, Thomas Hengelbrock, Daniel Harding and Paavo Järvi (2004 - present).Needs Votehttps://www.kammerphilharmonie.com/https://en.wikipedia.org/wiki/Deutsche_Kammerphilharmonie_BremenBremen Chambert OrchestraDeutsche Kammer-philharmonie BremenDeutsche KammerphilharmonieDeutsche Kammerphilharmonie de BrêmeDeutscher KammerphilharmonieDie Deutsche KammerphilharmonieDie Deutsche Kammerphilharmonie BremenKammerphilharmonie BremenMembers Of Der Deutschen Kammerphilharmonie BremenMemebrs Of Der Deutschen Kammerphilharmonie BremenPhilharmonie De Chambre Allemande De BrêmeThe Deutsche Kammerphilharmonie Bremenドイツ・カンマーフィルハーモニードイツ・カンマーフィルハーモニー・ブレーメンドイツ・カンマーフィルハーモニー・ブレーメンヨハン・セバスティアン・バッハDavid Maria GramseJulia SchriewerLeif Ove AndsnesErnst KovacicAlexander ScheirleDaniel JemisonMatthias BeltingerPauline SachseFriederike LatzkoBläsersolisten Der Deutschen Kammerphilharmonie BremenMartin FröstEllen WegnerMaxim RysanovMichael PeuserThomas HengelbrockClaudia SackMarkus LinkeStefan RappTorleif ThedéenThorsten EnckeChristopher DickenHozumi MurataGunther SchwiddessenVerena SommerBernhard OstertagDouglas SimpsonTatjana ErlerThomas SonnenBarbara KummerBettina WildDaniel SepecMatthew Hunt (2)Alexander BaderTill HeineJörg JacobiTanja TetzlaffFlorian DondererMatthias CordesUlrich König (2)Johannes HaaseBeate WeisKonstanze LerbsJörg AssmannKlaus HeidemannJürgen Winkler (2)Ulrike RübenMarc FroncouxStefan LatzkoTimofei BekassovThomas KlugKlaus RedaStephan SchraderUlrike HöfsNicole King (2)Boris BrovtsynChristian StadelmannHiginio ArruéElke Schulze-HöckelmannKatherine RoutleyZuzana Schmitz-KulanovaMarco Thomas (3)Angelika Grossmann-KippenbergAnja MantheyJonas KrauseCatherine BottomleyRie KoyamaKonstanze GlanderKilian HeroldSarah ChristianRodrigo BlumenstockHanna NebelungNora FarkasMarkus KünzigEmma YoonJuliane BruckmannYavor PetkovFabian BorchersKlaus LeopoldHannah GladstonesNuala McKennaLuisa LohmannMaximilian KromeDominik StegemannFilip ZaykovBarbara LeoGlenn Christensen (3)Björn AndresenZia RichterOtto KronthalerAnika PigorschDavid Sasowski (2)Florian Kapitza + +1930895Amichai GroszClassical viola player, born 1979 in Jerusalem, Israel. He was a founding member of the Jerusalem Quartet. Needs VoteAmichai GrossAmihai GroszAmihai Grosz*Berliner PhilharmonikerSpectrum Concerts BerlinPhilharmonisches Oktett BerlinJerusalem String Quartet + +1931179Jean-Claude DeclercqNeeds Major ChangesJ. C. DeclercqJ. C. DeclerqJ.-C DeclercqJ.-Cl. DeclercqJ.C. Declercq + +1931180Clément ChammahClement Rahamin ChammahNeeds VoteC. ChammahChammahChammat + +1931301Shirley Thompson (2)Credited as bassoon player.Needs VoteBoyd Raeburn And His OrchestraJohnny Richards And His Orchestra + +1931726Eric PaetkauCanadian classical violin/viola playerCorrectÉric PaetkauLes Violons du RoySt Kitts Orchestra + +1931756Sara SpiritoItalian cellist, active from the 2000s.CorrectOrchestra Del Maggio Musicale Fiorentino + +1932504Jimmy Boyd (2)Jazz pianist.CorrectBoydJames Moody And His Orchestra + +1932533Cornelius von der HeydenCornelius HintzeGerman singer and musical actor, born 14 May 1974 in Regensburg, Germany.CorrectRegensburger DomspatzenDie Bergkameraden + +1933006Dabringhaus Und GrimmJoint producer and engineer credit for [a310642] and [a310643].Needs VoteDabringhaus & Grimm-LabelDabringhaus / GrimmDabringhaus Und Grimm Audiovision GmbHDabringhaus Und Grimm oHGDabringhaus und GrimmDabringhaus und Grimm, DetmoldMDGMusikproduktion Dabringhaus Und GrimmMusikproduktion Werner Dabringhaus, Reimund GrimmWerner Dabringhaus, Reimund GrimmWerner DabringhausReimund Grimm + +1933087Michele ZukovskyAmerican clarinetist. She's the principal clarinetist with the [a835190].CorrectMichele ZukovskiMichelle ZukovskyMichele BlochLos Angeles Philharmonic Orchestra + +1933091Dennis TremblyClassical string instrumentalist (double bass player).Needs Votehttps://en.wikipedia.org/wiki/Dennis_Tremblyhttps://www.laphil.com/musicdb/artists/5371/dennis-tremblyhttps://www.hollywoodbowl.com/musicdb/artists/5371/dennis-tremblyDaniel TremblyDenis Michael TremblyDennis M. TremblyDennis TramblyDennis TrembleyLos Angeles Philharmonic Orchestra + +1933095Ralph SauerRalph C. SauerAmerican trombonist, teacher. Also graphic designer for [l95569]. He was Principal Trombonist of the Los Angeles Philharmonic for 32 years.Needs VoteR. SauerRalph C. SauerLos Angeles Philharmonic OrchestraSummit BrassLos Angeles Philharmonic Trombone Ensemble + +1933252Chor Der Bayerischen StaatsoperChorus of the [l587621] (Bavarian State Opera) based in München (Munich), Bavaria -- for the related orchestra, use [a451535]Needs Votehttps://www.staatsoper.de/en/staff/chorus-of-the-bayerische-staatsoper.htmlBavarian Sate Opera ChorusBavarian State Opera ChoirBavarian State Opera ChorusBavarian State Opera Chorus, MunichBavarian State-Opera ChoirBayerischen StaatsopernchorBayerischer StaatsoperchorBayerischer StaatsopernchorBayerisches StaatsopernchorBayerska Statsoperans KörBayrischer StaatsopernchorChoeurChoeur De L'Opera De BaviereChoeur Des Opéras De MünichChoeur de L'opéra de BavièreChoeurs De L'Opéra D'Etat De BavièreChoirChoir Ensemble Of The Bavarian State OperaChoir From Munchener StaatsoperChoir Münchener StaatsoperChoir Of Bayerische StaatsoperChoir Of The Bavarian State OperaChoir Of The Bayerischen StaatsoperChoir Of The Munch State OperaChoir Of The Munich State OperaChoir Of The State Opera MunichChoir State Opera MunichChoir of the Munich State OperaChorChor D. Bayer. StaatsoperChor Der Bay. StaatsoperChor Der Bayer. Staatsoper MünchenChor Der Bayerische Staatsoper MünchenChor Der Bayerischen MünchenChor Der Bayerischen Staatsop MünchenerChor Der Bayerischen Staatsoper MünchenChor Der Bayerischen Staatsoper, MünchenChor Der Bayerischen Staatsoper, MünchenChor Der Bayerrischen Staatsoper MünchenChor Der Bayrischen StaatsoperChor Der Bayrischen Staatsoper MünchenChor Der Der Bayerischen Staatsoper MünchenChor Der Münchener OperChor Der Münchener StaatsoperChor Der Münchner OperChor Der Münchner StaatsoperChor Der Staatsoper MunchenChor Der Staatsoper MünchenChor Des Bayerischen StaatsoperChor Ensemble Der Bayerischen Staatsoper MünchenChor der Bauerischen StaatsoperChor der Bayerischen Staatsoper MunchenChor der Bayerischen Staatsoper MünchenChor der Münchner StaatsoperChor der Staatsoper MünchenChoral Ensemble Of The Bavarian State Opera (Munich), TheChorensemble Der Bayerischen StaatsoperChorensemble der Bayerischen StaatsoperChorusChorus Of Bavarian State OperaChorus Of Bayerische StaatsoperChorus Of The Bavarian State Opera, MunichChorus Of The Bavarian State OperaChorus Of The Bavarian State Opera, MunichChorus Of The Bayerische StaatsoperChorus Of The Bayerischen Staatsoper Of MunichChorus Of The Munich StaatsoperChorus Of The Munich State OperaChorus Of The Staatsoper, MunichChorus der Bayerischen Staatsoper MünchenChorus of The Bavarian State OperaChorus of the Bavarian State OperaChorus of the Bavarian State Opera, MunichChœurChœur De L'Opéra D'Etat De BavièreChœur De L'Opéra D'État De BavièreChœur De L'Opéra De Bavière De MunichChœur National D'État De BavièreChœur de l'Opéra de MunichChœurs De L'Opéra De BavièreChœurs De L'Opéra De MunichCity Opera Of Munich ChoirCoroCoro Da Ópera Estadual Da BavieraCoro De La Opera De MunichCoro De La Opera Del Estado De BavariaCoro De La Ópera De BavieraCoro De La Ópera Del Estado De BavieraCoro Dell'Opera Di Stato BavareseCoro Dell'Opera Di Stato Bavarese Di MonacoCoro Della Bayerische StaatsoperCoro Della Staatsoper Di MonacoCoro de la Opera Nacional de BavieraDer Bayerische StaatsopernchorDer Chor Der Bayerischen StaatsoperDer Chor Der Bayerischen Staatsoper MünchenDer Chor Der Bayrischen StaatsoperDer Chor Der Bayrischen Staatsoper MünchenDer Chor Des Opernhauses MünchenDer Gesammtchor Der Bayerischen StaatsoperDer Gesamtchor Der Bayerischen StaatoperDer Gesamtchor Der Bayerischen StaatsoperEnsemble, ChorHerausgegeben Der Bayerischen StaatsoperHerausgegeben Von Der Bayerischen StaatsoperHet Koor Van De Beierse Staatsopera MünchenKoorKoor van de Beierse Staatsopera MünchenKörKör Från Bayerska Statsoperan i MünchenKör Från Den Bayerska Statsoperan I MünchenMembers Of The Bavarian State ChorusMembers Of The Bavarian State Opera ChorusMembers of the Bavarian State Opera ChorusMitglieder Des ChoresMitglieder Des Chores Der Bay. Staatsoper MünchenMitglieder Des Chores Der Bayerischen Staatsoper MünchenMitglieder Des Chors Der Bayerischen StaatsoperMitglieder des Chores der Bayerischen StaatsoperMitglieder des Chores und desMondchorMunich Opera ChoirMunich Opera ChorusMunich State Opera ChoirMunich State Opera ChorusMünchener OpernchorMünich State Opera ChoirOpernchorOpernchor MünchenOpernhaus MünchenOrchester Der Bayerischen Staatsoper MünchenOrchestra Of The Bavarian State OperaOrchestra Of The Munich State OperaThe Bavarian State Opera ChorusThe Choral Ensemble Of The Bavarian State Opera (Munich)The ChorusThe Chorus Of The Bavarian State Opera, MunichΧορωδία Της Κρατικής Όπερας Της ΒαυαρίαςОркестр, хор и солисты Баварской национальной оперыСолисты Мюнхенской Государственной ОперыСолисты Мюнхенской ОперыХор Мюнхенской Государственной ОперыХор Мюнхенской Государственной ОперыUdo MehrpohlKarl-Heinz Schmidtpeter + +1933349Henryk MelcerHenryk Melcer-SzczawińskiBorn July 25, 1869 in [url=https://pl.wikipedia.org/wiki/Marcelin_(Białołęka)]Marcelin[/url], died April 18, 1928 in Warszawa. Polish composer, pianist, conductor and pedagogueNeeds Votehttp://en.wikipedia.org/wiki/Henryk_Melcer-Szczawi%C5%84skiH. MalcerH. MelcerH.MelcerHenryk Melcer-SzczawińskiMelcerMelcer-SzczawińskiOrkiestra Symfoniczna Filharmonii Narodowej + +1933735Alex Klein (4)Classical oboist, born 1965 in Brazil.Needs VoteKleinChicago Symphony OrchestraCalgary Philharmonic OrchestraSoni Ventorum Wind Quintet + +1933748Katalin KárolyiHungarian mezzo-soprano/contralto vocalistNeeds Votehttps://en.wikipedia.org/wiki/Katalin_K%C3%A1rolyihttps://www.laphil.com/musicdb/artists/2760/katalin-karolyiK. KárolyiKatalin KarolyiKárolyi KatalinLes Arts Florissants + +1934008Richard NatoliNeeds Major Changes + +1934139Gilles ColliardClassical violinist.Needs VoteG. ColliardGilles CollardOrchestre De Chambre De ToulouseEnsemble Baroque De Limoges + +1934271Jérémy BourréFrench cellist.Needs VoteJeremy BourréJéremy BourréJéréme BourreJérémy BourreOrchestre National De L'Opéra De ParisQuatuor Monticelli + +1934436Sol HallSolomon HallUS Jazz, Rhythm & Blues and Swing drummer.Needs VoteSolomon HallHenry "Red" Allen And His Orchestra + +1934437Reuben ColeReuben Jay ColeUS jazz pianist. Born in East Orange, NJ - Died on 4 February 1975, Newark, NJ +Brother of [a=Cozy Cole].Needs VoteColeJune ColeReuben "June" ColeReuben Jay "June" ColeReuben Jay ColeReuben Johnson ColeReuben June ColeRuben "June" ColeRuben ColeCozy Cole All StarsThe Harlem Blues & Jazz BandClyde Bernhardt & Jay Cole Harlem Blues & Jazz BandReuben Cole's OrchestraJune Cole's Orchestra + +1936326Alain NoëlFrench classical Horn player.Needs VoteA. NoelA. NoëlOrchestre National De L'Opéra De Paris + +1936807Chantal SitrukNeeds VoteC. SitrukCh. SitrukChantal SitrucSitrukMicheleChantal CurtisBrenda MitchellJulie SitrukChantal Alexandre + +1937024Neal Peres Da CostaClassical keyboard instrumentalist.Needs VoteThe Academy Of Ancient MusicAustralian Chamber OrchestraFlorilegium + +1937025Ashley SolomonClassical flautist and artistic director of [a=Florilegium]Needs VoteAshley SalomonAshley SolomGabrieli PlayersThe Illyria ConsortFlorilegium + +1937645Robert KarolAmerican violist, born in 1925.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +1937807Marc BenoisNeeds VoteBenoisM. BenoisM. BenoitM.BenoisMarc BendisTrio Jean Sala + +1938123Sennu LaineCellist.Correcthttp://www.staatsoper-berlin.de/de_DE/person/sennu-laine.24501Staatskapelle Berlin + +1938289Mark Williams (27)Bass-baritone vocalist.Needs VoteM WilliamsM. WilliamsWilliamsThe Swingle SingersLondon Voices + +1939982Vivian TroonClassical keyboard player.Needs VotePhilharmonia Orchestra + +1940046Hans-Hubert SchönzelerGerman-born composer, conductor and musicologist, born 22 June 1925 in Leipzig, Germany and died 30 June 1997 in London, England.Needs Votehttps://en.wikipedia.org/wiki/Hans-Hubert_Sch%C3%B6nzelerHans Hubert SchoenzelerHans Hubert SchonzelerHans Hubert SchönzelerHans-Hubert Schonzeler + +1940047Roger Scott (2)Roger M. Scott (1919 - June 11, 2005) was an American contrabassist.Needs VoteRoger M. ScottРоджер СкоттThe Philadelphia Orchestra + +1940064Peter Hamilton (5)Double bassist.Needs VoteRoyal Philharmonic Orchestra + +1940080Matthew Lee (3)Cellist.Needs Votehttps://www.linkedin.com/in/matthew-lee-8977b986/Royal Philharmonic OrchestraBBC Concert Orchestra + +1940081Clive Brown (3)British double bass and electric bass player. He played classical and jazz music. Passed away on April 10th, 2021 (cancer).Needs VoteRoyal Philharmonic OrchestraLondon Classical PlayersThe London Tijuana Band + +1940082Chris West (8)Double bass player from London, UK.Needs Votehttps://chriswestbass.com/Christopher WestRoyal Philharmonic OrchestraLondon Musici + +1940094John Fisher (5)Violist.Needs VoteRoyal Philharmonic Orchestra + +1940234Albert BernardAlbert Yves BernardAmerican violist, born in 1903 in died in 1979.Needs VoteA. BernardBernardBernard, A.Boston Symphony Orchestra + +1940242Arthur SchullerViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +1940244Lawrence WolfeAmerican upright bassist.Needs Votehttps://www.bso.org/profiles/lawrence-wolfeLawrence WolfBoston Pops OrchestraBoston Symphony OrchestraAspen Music Festival Contemporary Ensemble + +1940739Jorge Jimenez (2)Classical violinist.Needs VoteJorge JiménezThe Academy Of Ancient MusicL'ArpeggiataThe King's ConsortAl Ayre EspañolForma AntiqvaRetrospect Ensemble + +1940740Lynda SayceClassical theorbo, lute, Renaissance flute, and guitar player.Needs VoteL. SayceLa SerenissimaThe Academy Of Ancient MusicI FagioliniLe Concert D'AstréeThe King's ConsortElizabethan Consort Of ViolsCharivari AgréableEx Cathedra Baroque OrchestraThe Brook Street BandPassamezzo + +1940741Daniel EdgarBaroque and modern classical violinist.Needs VoteDan EdgarThe SixteenOrchestra Of The Age Of EnlightenmentThe King's ConsortClassical OperaRetrospect EnsembleThe Mozartists + +1940755Katherine Handy LewisKatharine Handy LewisKatharine Handy Lewis (nee Handy). Daughter of W.C. Handy. Born June 20, 1902 in Normal, Alabama. Died July 15, 1982. Vaudeville blues and jazz singer, who first recorded for Paramount in 1922 (miscredited as Katherine on those releases).Needs VoteK. Handy LewisKatharine Handy LewisKatherine HandyFletcher Henderson And His Orchestra + +1941188Harry Ellis DicksonAmerican violinist and conductor. +Born November 13, 1908 in Cambridge, Massachusetts, USA. +Died March 29, 2009 in Boston, Massachusetts, USA. +Dickson was the first violinist for the Boston Symphony Orchestra for five decades at the Boston Symphony Orchestra.Needs Votehttps://www.imdb.com/name/nm1741924/Dickson, H.H. DicksonHarry DicksonBoston Pops OrchestraBoston Symphony OrchestraUnicorn Concert Orchestra + +1941336Albrecht WeiglerClassical clarinettist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchner Bläseroktett"In Dulci Jubilo" Ensemble + +1941339Josef WeberGerman bass vocalist.Needs VoteChor Des Bayerischen RundfunksCapella Bavariae + +1941511Harald HörthAustrian oboist, born in Zwettl, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerAustro-Hungarian Haydn OrchestraQuintett.WienWiener VirtuosenVienna Radio Winds + +1941669Rainer HoneckClassical violinist and concertmaster of the [a=Austro-Hungarian Haydn Orchestra], the [a754974] and the [a696188]. He's the brother of [a1100940].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerAustro-Hungarian Haydn OrchestraWiener Streichersolisten + +1941670Eckhard SeifertEckhard Seifert (1 March 1952 in Weyer, Austria - 21 January 2023) was an Austrian classical violinist and former concertmaster of the [a=Austro-Hungarian Haydn Orchestra].Needs VoteEckhart Seifertエクハルト・ザイフェルトザイフェルトOrchester Der Wiener StaatsoperWiener PhilharmonikerAustro-Hungarian Haydn OrchestraMusikvereinsquartettWiener Ring EnsembleWiener Streichersolisten + +1941771Peter WächterAustrian classical violinist, born 8 October 1941 in Vienna, Austria.Needs Votehttp://www.peterwaechter.comWächterOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Wiener Philharmonia TrioHofmusikkapelle WienKüchl-QuartettThe Vienna String Quintet + +1941772Wilhelm HübnerWilhelm Hübner (12 August 1914 - 1 June 1996) was an Austrian violist.Needs VoteWilh. HübnerWilhelm HeubnerWilhelm HuberWilhelm HubnerWilhelm HuebnerWilhem HuebnerWilliam HuebnerOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterThe Boskovsky EnsembleWiener OktettChamber Orchestra of the Vienna State Opera + +1941775Willibald JanezicAustrian horn player, born 11 June 1945 in Brandenberg (Tirol), Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenWiener OktettDas Philharmonia Hornquartett Wien + +1941872Thomas Fischer (3)Classical Austrian horn player.Needs VoteVienna Art OrchestraBruckner Orchestra LinzL'Orfeo BarockorchesterAustro-Hungarian Haydn OrchestraVienna HornsWiener Horn Ensemble + +1941909Koenraad HofmanDouble bass playerNeeds VoteGalaxy String OrchestraAnima EternaNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaPrima La MusicaSymfonie Orkest VlaanderenOxalysPhilharmonic Orchestra Of Europe + +1942573Paul Sherman (3)British violinistCorrectP. ShermanPaul SchermanEnglish Chamber Orchestra + +1942600Paul Sherman (2)Classical double bass player and tutor. +Tutor at the [l527847].Needs Votehttps://www.imdb.com/name/nm11793842/London Symphony OrchestraEnglish Chamber OrchestraOrchestra Of The Age Of Enlightenment + +1942964Joseph WernerAmerican classical pianistNeeds VoteRochester Philharmonic Orchestra + +1942969Byron PeeblesCanadian trombonist, born in 1936.Needs VoteBryan PeeblesBryon PeeblesLos Angeles Philharmonic OrchestraChicago Symphony OrchestraLos Angeles Philharmonic Trombone EnsembleIndianapolis Symphony Orchestra + +1943303Richard SuartBritish operatic baritone, born 5 September 1951 in Blackpool, Lancashire, England.Needs Votehttp://richardsuart.co.uk/rs_music.htmlRichard StuartStuartThe Schütz Choir Of London + +1943895Mike FentrossDutch lutenist and theorbist.Needs VoteMichael FentrossMike FentrosNew London ConsortLes Arts FlorissantsThe Amsterdam Baroque OrchestraDe Nederlandse BachverenigingMusica AmphionCapriccio StravaganteEnsemble ExplorationsCapriola Di GioiaLe Nuove MusicheUnda MarisLa Sfera ArmoniosaEnsemble Dopo EmilioLa Violetta + +1943976Nathalie FontaineClassical violinistNeeds VoteLe Concert SpirituelAccordone + +1944193Nicole Baker (2)Alto vocalist.CorrectThe Roger Wagner ChoraleLos Angeles Master Chorale + +1944662Sarah Willis (2)Horn player. Born in Maryland, USA. English, US & German citizenNeeds Votehttps://sarah-willis.com/https://twitter.com/hornsarahberlinSarah WilliesSarah WillisWillisBerliner PhilharmonikerStaatskapelle BerlinConsortium ClassicumDie Hornisten Der Berliner PhilharmonikerBlechbläser-Ensemble Der Berliner PhilharmonikerMarc Muellbauer's KaleidoscopeThe SarahbandaBerlin Philharmonic Horn Quartet + +1945038Michael Murray (6)British hornist.Needs VoteBBC Symphony OrchestraThe Academy Of St. Martin-in-the-Fields + +1945306Großer Chor Des Berliner RundfunksThe [b]Große Chor des Berliner Rundfunks[/B] was founded 1948 by [a=Helmut Koch]. It was kind of successor of the former existing choir related to the national broadcasting service but of course completely new established. +In 1973 this choir and [a916314] (Solistenvereinigung des Deutschlandsenders) were incorporated to [a446105]. +Needs VoteBerlin Radio ChorusBerlin Radio Grosser ChorBerlin Radio Symphony ChoirBerliner Rundfunks ChorChoeurChoeur de la Radiodiffusion de BerlinChoeurs De La Radiodiffusion De BerlinChoirChoir Of The Berlin RadioChoir of the Berlin RadioChorChor Des Berliner RundfunksChor Of The GDR Radio OrchestraChor Von Radio BerlinChor der LandleuteChorusChorus Of Radio BerlinChœurChœur De Chambre De Radio-BerlinChœursChœurs De Radio-BerlinCoro de la Radio de BerlinCoros Y Orquesta Sinfónica De BerlínDoppelchorGr. Rundfunkchor BerlinGrosser Chor Des Berliner RundfunksGrosser Rundfunkchor BerlinGroßer ChorGroßer Chor des Berliner RundfunksGroßer RundfunkchorGroßer Rundfunkchor BerlinMitgl. Des Gr. Chores Des Berl. RundfunksMitglieder des Großen Chores Des Berliner RundfunksMännerchorMännerchor Des Großen Chores Des Berliner RundfunksMännerchor des Großen Chores Des Berliner RundfunksMännerchor des Großen Chores des Berliner RundfunksOrchestre Symphonique De La Radio De BerlinRundfunkchor BerlinSolisten Und Chor Des Berliner RundfunksThe Berlin Radio ChorusWielki Chór Radia BerlińskiegoБольшой Хор Берлинского Радио + +1945359Scottish EnsembleNeeds Votehttps://scottishensemble.co.uk/https://x.com/ScotEnsemblehttps://www.youtube.com/user/scottishensembleThe Scottish EnsembleThe Scottish Ensemble Stringsスコティッシュ・アンサンブルCaroline DaleJonathan ReesCheryl CrockettJane AtkinsDiane ClarkRichard BoothbyJonathan MortonAlison LawranceLaura GhiroCathy MarwoodElizabeth RandellTristan GurneyJane MurdochGeorge Smith (13)Xander Van VlietJoanne GreenDaniel PioroNeil JohnstoneLiza JohnsonEmily Louise NennigerJames Manson (4)Naomi PavriAndrew BerridgeHelen Thomson (2)Katherine Mackintosh + +1946076Helena DöseSwedish court singer (soprano), born 7 August 1946 in Dösebacka in Romelanda parish. + +Döse, who was educated at the Theater Academy in Gothenburg, attracted attention in 1971 when she made her debut as a stand-in for Birgit Nilsson at the rehearsals of Aida in Scandinavium in Gothenburg. This was followed by an international career in the lyric-dramatic trade union, where she played roles such as Tosca, Mimi, Sieglinde, Donna Anna, Fidelio, Elisabeth in Tannhäuser and Tatjana in Eugene Onegin. In Dalhalla she has sung the final scene in Richard Wagner's Ragnarök. In the winter of 2008, she guest starred at the Gothenburg Opera in Eugen Onegin in the role of Larina. +For a ten-year period from 2002, she led master classes in Italy, France, Denmark and Sweden as well as the United States. +In 2002, she was appointed court singer. In January 2007, she received Litteris et Artibus.Needs Votehttp://www.helena-doese.com/https://sv.wikipedia.org/wiki/Helena_D%C3%B6seDöseHelena Doese + +1946125William LyonsSpecialist in Historic Music. Director of The Dufay Collective and The City Musick. Player of shawms, recorder, bagpipes, dulcian, renaissance, trad and baroque flute. Composer for theatre with many productions at Shakespeare's Globe Theatre and The National Theatre. Regular session player, appearing on The Hobbit, Robin Hood. Pride & Prejudice and many more. Researcher of early music and runs medieval & renaissance studies classes at the Royal College of Music. Needs Votehttp://www.william-lyons.com/Bill LyonsLyonsThe Dufay CollectiveNew London ConsortThe BT Scottish EnsembleThe Parley Of InstrumentsOrchestra Of The RenaissanceI FagioliniGabrieli PlayersHis Majestys Sagbutts And CornettsVirelai (2)Musicians Of Shakespeare's GlobeThe City MusickKithara (5) + +1946126Jane MurdochViolinistNeeds VoteScottish Ensemble + +1946341Elen Hâf RichardsClassical violinistCorrectElen Haf RichardsElen RichardsRoyal Liverpool Philharmonic Orchestra + +1946344Chantal WebsterClassical cellistNeeds VoteRoyal Philharmonic Orchestra + +1946347Anthony AlcockBritish classical bassistCorrectScottish Chamber Orchestra + +1946348Kay ChappellViolinistNeeds VoteRoyal Philharmonic Orchestra + +1946350Clara BissClassical violinist and violist.Needs VoteRoyal Philharmonic OrchestraBritten Sinfonia + +1946747Josh LangJosh LangHard Trance / Tech trance / Progressive Psy-trance DJ producer from Warrnambool, Australia Correcthttps://www.facebook.com/josh.langMaikan + +1946749Projekt TekNeeds Major Changes + +1946800Jens Bjørn-LarsenDanish tubist, born in 1965.Needs VoteJens Björn LarsenJens Bjørn LarsenDR RadioUnderholdningsOrkestretThe Chamber Orchestra Of EuropeStockholm Chamber BrassDanish Concert Band + +1946906Heinz TietjenGerman conductor, music producer and former theater manager at the [a=Staatskapelle Berlin] and [a=Deutsche Oper, Berlin]. He was born 24 July 1881 in Tangier, Morocco and died 30 November 1967 in Baden-Baden, Germany.CorrectGeneralintendant Heinz TietjenHeinz TetjenHenriz TietjenStaatskapelle BerlinOrchester Der Deutschen Oper Berlin + +1946920Pierre DumailFrench flute player.Needs Votehttps://www.imdb.com/name/nm8322115/Orchestre National De L'Opéra De Paris + +1946934Bodo KunthGerman horn player.Needs VoteKunthStaatskapelle DresdenEnsemble 13 + +1947087Projekt.TekLiam HowellsNeeds VoteProject TekProject TekkProjekt TekProjekt TekkLiam Howells + +1947861Samuel Lewis (2)[b]Please, use [a593439] for the American lyricist and singer[/b] +British classical musician (violinist & violist), conductor, and music publisher. Born in 1936 in London's East End, England, UK. +He joined the [a=National Youth Orchestra Of Great Britain] as a violinist and, aged 18, [a=The Band Of The Royal Artillery] as a violist. Trained at the [l290263]. He then was accepted as a viola player, at age 21, by the [a=London Symphony Orchestra] staying with the orchestra for seven years. Moved to conducting, composition and arranging, studying with [a=Lawrence Leonard] and [a=Cyril Ornadel], and touring internationally. He then went to New York City, USA and studied orchestration. In 1968, he became [a4740033]'s general manager for four years. In 1973, he became general manager, musical director and lead conductor of the newly formed [b]Netanya Symphony Orchestra[/b]. The orchestra collapsed in 1990-1991. Lewis returned to London and visited some of the music publishing companies he had been in contact with while directing the Netanya orchestra. At the office of [l=Boosey & Hawkes], he met with the general manager, who happened to be an old army buddy and fellow orchestra musician. He told him that his company held copyrights to the music of several deceased 20th-century conductors who had not yet been dead 70 years and asked if he wanted to be the company's agent in Israel. Lewis has served in that capacity ever since. As the Israel agent for not only Boosey & Hawkes but seven or eight other major music publishers, Lewis has controlled the copyrights and license arrangements for many modern classical composers. He has also been responsible for promoting modern classical music in Israel.Needs Votehttps://www.jpost.com/features/a-double-life-well-ledLewisSam LewisLondon Symphony OrchestraNational Youth Orchestra Of Great BritainThe Band Of The Royal ArtillerySamuel Lewis And The Scottish Strings + +1948477Herbert WalserClassical trumpet & clarinet instrumentalist, born 5 October 1967.Needs VoteWalserHerbert Walser-BreußConcentus Musicus WienClemencic ConsortConcerto PalatinoArmonico TributoKilimandscharo Dub & Riddim SocietyArs Antiqua AustriaThe Rare Fruits CouncilTrompeten Consort InnsbruckPeter Madsen's Seven Sins EnsembleToni Eberle BandPeter Madsen's StorytellersDie Erben (5)Toni Eberle Group + +1948482Ernst Hoffmann (2)Classical trombonist.Needs VoteErnst HoffmanProf. Ernst HoffmannVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienClemencic ConsortMusica Antiqua Wien + +1948792Bernd HauboldGerman contrabassist and violone player.CorrectStaatskapelle DresdenVirtuosi SaxoniaeDresdner KammersolistenCappella Sagittariana Dresden + +1948794John Miller (24)John Miller, Jr.American bassoon player, he has been principal bassoon of the Minnesota Orchestra since 1971, the year he also joined the music faculty of the University of Minnesota.Needs VoteJ. MillerMinnesota OrchestraThe Minneapolis Chamber Ensemble + +1948830Lynne MorseA&R CoordinatorCorrectLynn Morse + +1949128Gerda OckersDutch harpist, born in 1953.CorrectConcertgebouworkest + +1949280Hansjürg LangeClassical bassoonist.Needs VoteHans Jürg LangeHans-Jürg LangeHansjurg LangeLangeThe Academy Of Ancient MusicLa Petite BandeRicercare-Ensemble Für Alte Musik, ZürichThe Music Party + +1949528Rodney SeniorClassical trumpet player. Principal trumpet, Bournemouth Symphony Orchestra ca. 1971.Needs VoteMr Rodney SeniorBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +1949648Dorothea VogelGerman classical violin player. +[b]Not to be confused with the Swiss viola player [a11967518][/b]! +Needs Votehttps://www.gewandhausorchester.de/orchester/orchestermitglieder/person/vogel-dorothea/Gewandhausorchester Leipzig + +1949867Sara StoweClassical soprano vocalist and harpsichordist.Needs Votehttp://sarastowe.com/https://sarastoweharpsichord.wordpress.com/https://www.facebook.com/people/Sara-Stowe/100011534173463Sarah StoweStoweElizabethan Consort Of ViolsSirinu + +1950076Carolyn GreyAmerican jazz vocalist. +Born 1922 + +Grey was married to [a=Joe Dale]. + +She had already established herself as a popular radio vocalist on the West Coast in the early 40's. She was hired by [a239399] in 1941 to join his orchestra and went on touring. That lasted until 1943, in that summer she stopped suddenly. In October 1944, she joined up with [a335575] to play and tour with his band. In 1945 she got the opportunity to record a record of her own. In 1946 she replaced the female singer of [a317887], [a258903] who became ill and couldn't work anymore. She became very popular, but after getting married and the birth of her first child, she stopped touring and recording in 1947. In 1953 she tried to make a come-back, without much success.Needs Votehttps://bandchirps.com/artist/carolyn-grey/C. GreyCaroline GreyCarolyn GrayGreyWoody Herman And His OrchestraGene Krupa And His OrchestraThe Band That Plays The Blues + +1950181Michael BurrAmerican double bassist, born in 1938.Needs VoteSan Francisco Symphony + +1950544Peter CzornyjDr. Peter Czornyj holds a Doctor of Philosophy (Music) and a Bachelor of Arts (Music) from the University of Hull. He was director of [l89289] and producer for [l7703], then worked in artistic administration and operations for the St Louis Symphony Orchestra, the Sydney Symphony and the Dallas Symphony Orchestra.Needs Votehttps://www.mydso.com/about-the-dso/press-room/news/czornyj-q-and-aDr Peter CzornyjDr. Peter CzormyiDr. Peter CzornyiDr. Peter CzornyjDr.Peter CzornyjPeter Czornyi + +1950545Thierry MaederFrench classical keyboard instrumentalist from Strasbourg.Needs Votehttps://www.guibray.org/gui/Interpretes/Maeder.htmlCollegium VocaleMusica Antiqua KölnLes Cyclopes + +1950546Cynthia RomeoClassical violinist.Needs VoteMusica Antiqua KölnConcerto Köln + +1950547Denton RobertsDouble bass and violone player.Needs VoteMusica Antiqua KölnConcerto VocaleThe Chamber Orchestra Of Europe + +1951305Cécile GouiranViolinist.Needs VoteCecileOrchestre De ParisEnsemble Des Équilibres + +1951471Elizabeth Randall (2)Classical horn player. + +Possibly the same as [a=Elizabeth Randell].Needs Votehttps://www.facebook.com/beth.randell.18https://twitter.com/bethrandellhttps://www.instagram.com/beth.randell/https://www.linkedin.com/in/beth-randell-7969a671/https://www.coeurope.org/member/beth-randell/Э.РэндаллRoyal Philharmonic OrchestraThe King's Consort + +1951472Keith Pearson (2)Clarinet player.Needs VoteRoyal Philharmonic OrchestraLondon Wind Orchestra + +1951473Sylvia Mann (2)Classical cello player.Needs VoteRoyal Philharmonic Orchestra + +1951474Alan Baker (2)Classical flute player.Needs VoteRoyal Philharmonic OrchestraThe English National Opera Orchestra + +1951475Tim Barry (2)Classical percussion player.Needs VoteRoyal Philharmonic OrchestraNew London Consort + +1951476Andrew Mitchell (3)Classical trumpeter.Needs VoteRoyal Philharmonic Orchestra + +1951478John McCutcheon (3)Classical percussionist. + +Do not confuse with folk music singer-songwriter [a704850].Needs VoteRoyal Philharmonic Orchestra + +1951479Lee StephensonClarinet player.Needs VoteRoyal Philharmonic Orchestra + +1951480Susan Smith (2)Oboist.Needs VoteRoyal Philharmonic Orchestra + +1951481Phil Brown (17)Classical trombone player.Needs VoteRoyal Philharmonic Orchestra + +1951482Angela Moore (2)Classical harp player.Needs Votehttps://www.angelamooreharp.com/London Philharmonic OrchestraRoyal Philharmonic Orchestra + +1951777Julius PrüwerAustrian conductor, pianist and teacher (* 20 February 1874 in Vienna, Austria-Hungary, † 08 July 1943 in New York City, USA).Needs Votehttps://de.wikipedia.org/wiki/Julius_Pr%C3%BCwerhttps://www.jewishvirtuallibrary.org/pruewer-juliushttps://www.lexm.uni-hamburg.de/object/lexm_lexmperson_00002153?wcmsID=0003https://adp.library.ucsb.edu/names/107217Dr. Julius PrüwerGeneraldirektor Prof. Julius PrüwerGeneralmusikdirektor Pro. Jul. PrüwerGeneralmusikdirektor Prof. Jul. PrüwerGeneralmusikdirektor Prof. Julius PrüwerGeneralmusikdirektor Professor Julius PrüwerJ PrüwerJ. PrüwerJul. PrüwerJulius PruwerM. Julius PrüwerProf. Julius PrüwerProfessor Julius Prüwer + +1951821Paul Buckton (2)Classical violinist.Needs VotePaul BuxtonRoyal Philharmonic OrchestraPortsmouth Sinfonia + +1951845Mark Denman (2)Classical violinist.Needs VoteRoyal Philharmonic OrchestraThe Flesch Quartet + +1951846David Stephenson (3)Bass-baritone singer.Needs Votehttp://operascotland.org/person/300/David+StephensonThe Ambrosian Singers + +1951847Rachel Cohen (3)Violinist.Needs Votehttps://www.linkedin.com/in/rachel-cohen-00848715b/Royal Philharmonic OrchestraRobert Farnon And His Orchestra + +1951849Peter Dale (4)Classical violinist.Needs VotePete DaleRoyal Philharmonic OrchestraLondon Musici + +1951977Bixio CherubiniLuigi Cairoli Bixio CherubiniItalian lyricist, born in Leonessa (Rieti) on March 27, 1899. Younger brother of [a737156]. During the First World War, as a volunteer, he wrote his first success, [i]Ciondolo d'oro[/i]. Until 1927 he lived in Rome as an employee of the national Postal Service. Then moved to Milan where entirely dedicate himself to songwriting. Bixio Cherubini collaborated with many great italian composers of his time: [a1230040], [a922092], [a1950019], [a1030686], [a1011736], [a932481], [a1714845], [a1230039], [a1068185], [a1030687], but especially with [a573419], to whom he was presented by poet Trilussa. The partnership lasted until 1974, when the two Bixio composed [i]Quando riascolterai questa canzone[/i], launched by [a917508]. In 1943 he contributed the Resistance, joining the partisan command of Val Marchirolo (Varese). In 1948 together with colleagues such as [a890323], [a970880], [a890333] and [a1407829], founded UNCLA (National Union of Composers, [i]Librettisti[/i] and Authors) of which he was president (first effective and then honorary), until 1987, the year of his death. He has been a member of [l2618], music section, since 1920 (in 1951 he became a member), registering more than 960 texts composed by him. In sporadic cases he was also the author of the music of some of his songs ([i]C'era 'na vorta Roma![/i], [i]La strada della fortuna[/i], [i]Maddalena Maddalè[/i], [i]Arrivederci Lucia[/i]). He was the father of four girls, one of which was the singer [a1125596]. He died of a pulmonary edema on December 14, 1987, in Milan. His most famous composition is [i]Mamma[/i], co-written with [a573419] for the homonymous film directed by Guido Brignone.Needs Votehttp://it.wikipedia.org/wiki/Bixio_Cherubinihttp://www.trio-lescano.it/pdf/Bixio_Cherubini.pdfhttps://adp.library.ucsb.edu/names/201794B. CerubiniB. CherubinB. CherubiniB. ChérubiniB.CherubiniBi. CherubiniBixioBixio - CherubiniBixio, CherubiniBixio-CherubiniBruno CherubiniC. A. BixioC. BixioC. Bixio - CherubiniC. CherubiniC.A. BixioC.A.BixioCerubiniCharubiniCherbiniCheribiniCherivirCherobiniCherribiniCherubenCherubiCherubibiCherubieniCherubinCherubin BixioCherubinaCherubineCherubiniCherubini - BixioCherubini B.Cherubini BixioCherubini,Cherubini/BixioCherudinCherudineCherviniCheubiniChiribiniChrubiendeDi CherubiniHarubiniKeroubiniL. BixioL. CherubiniM. CherubiniOherubiniOherudiniR. CherubinicherubiniА. КерубиниБ. КерубиниКерубиниКерубиноק. קורובוניקורוביניBelloniC. A. LimanPasquale CalimanCarlo Alberto LimanGiordano (3) + +1952206Simon van der CamNeeds Major ChangesSimon Van Der Cam + +1952207Georges TapieNeeds VoteRoy Swart'S Et Ses Blues Shakers + +1952208Colin HallNeeds Major ChangesC. HallHall + +1952209Michel BarraultNeeds Major Changes + +1952210Gilbert CiuffiNeeds Major Changes + +1952211Peter Newton (3)Needs Major Changes + +1952212Stephan WienerNeeds Major Changes + +1952213Hubert Le ForestierNeeds Major Changes + +1952214Cora CarnierNeeds Major Changes + +1952215Michel CiricNeeds Major Changes + +1952334Philip DaleBritish classical trombonist & sackbutist + +Phil Dale graduated from The Royal Academy of Music after undergoing an intensive 4 year performance course on trombone and historical performance. Since then, he has performed with many of Britain's leading orchestras including The Philharmonia, City of Birmingham Symphony Orchestra, Opera North Orchestra, Garsington Opera Orchestra, Orchestra of St. John’s, Smith Square, English Sinfonia and City of London Sinfonia. + +He has also performed and recorded with many of the specialist period instrument ensembles, including The Gabrieli Consort and Players, The Hanover Band, Tafelmusik Baroque Orchestra (Canada), The English Baroque Soloists, Early Opera Company, Orchestre Révolutionnaire et Romantique, The Academy of Ancient Music and The King’s Consort. + +He currently holds the position of principal Trombone with the Orchestra of the Age of Enlightenment and second trombone with the Orchestra of the Eighteenth Century (Amsterdam). + +As well as performing regularly in London’s west end shows, he can also be heard on film soundtracks to Shrek III, Bedtime Stories and commercial solo performances for Sony. + +Phil began playing Trombone at the age of 11 with Hucknall and Linby Miners Welfare Brass Band in Nottinghamshire. In 1990 he was offered a place to study at The Royal Academy of Music where he began to explore period instruments and Historically Informed Performance. + +Since graduating in 1994, Phil has performed and recorded with many leading specialist period orchestras and ensembles. He is currently Principal Trombone with The Orchestra of the Age of Enlightenment (OAE) and Co Principal trombone with The Orchestra of the Eighteenth Century based in Amsterdam.Needs Votehttp://www.princeregentsband.com/phil-dalePhil DaleThe SixteenCollegium Musicum 90The King's ConsortOrchestra Of The 18th CenturyQuintEssential Sackbut And Cornett EnsembleThe Symphony Of Harmony And InventionEx Cathedra Baroque OrchestraThe Prince Regent's Band + +1952335Cecilia OsmondClassical soprano vocalist, born 1977 in Canada. +She was a music scholar at St Paul’s Girls’ School, London, and then a choral scholar at Trinity College, Cambridge. She continued her vocal studies at the Royal Academy of Music. +She performs frequently with professional vocal ensembles such as The Sixteen, The Tallis Scholars, The King’s Consort and The Cardinall’s Musick.Needs Votehttp://www.dunedin-consort.org.uk/about/artists/cecilia-osmond-soprano/http://www.hyperion-records.co.uk/a.asp?a=A698http://www.bach-cantatas.com/Bio/Osmond-Cecilia.htmThe Choir Of The King's ConsortThe Tallis ScholarsThe SixteenPolyphonyDunedin ConsortThe Cardinall's MusickThe Sarum ConsortThe Marian ConsortThe Choir Of Trinity College, Cambridge + +1952337Elin Manahan ThomasThomas was born in 1977 in Gorseinon near Swansea, the daughter of M. Wynn Thomas OBE, a Professor of Literature at Swansea University, and Karen Thomas. She was educated at the Welsh-speaking Ysgol Gyfun Gŵyr in Gowerton near Swansea, and by the time she was fifteen was singing in the Swansea Bach Choir. She won a choral scholarship to Clare College, Cambridge University, where she gained a starred first in Anglo-Saxon, Norse and Celtic, and completed an MPhil. After auditioning to Sir John Eliot Gardiner she joined the Monteverdi Choir and in the year 2000 sang much of the Bach Cantata Pilgrimage. In 2001 she moved to pursue postgraduate vocal studies at the Royal College of Music in London. +She went on to sing with The Sixteen, Polyphony, Cambridge Singers and The Gabrieli Consort, as well as pursuing a solo career. She is the first singer ever to record Bach’s Alles mit Gott, a birthday ode written in 1713 and discovered in 2005. She first received great acclaim for her ‘Pie Jesu’ on Naxos’ award-winning recording of the Rutter Requiem. +In 2006 Elin married baritone opera-singer Robert Davies. The couple live in Brighton in Sussex, and have two sons.Needs Votehttp://www.elinmanahanthomas.org/Elin M. ThomasElin ManahanElin Manahan Thomas, SopranoElin Manahan-ThomasGabrieli ConsortLondon VoicesThe SixteenThe Monteverdi ChoirPolyphonyConcerto Delle Donne + +1952401Clemens HellsbergAustrian violinist, born 28 March 1952 in Linz, Austria.Needs VoteDr Clemens HellsbergDr. Clemens HellsbergProf. Dr. Clemens HellsbergOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle WienEnsemble Eduard Melkus + +1952578Barna KovátsHungarian classical guitarist and composer, born 24 August 1920 in Budapest, Hungary.CorrectBarma KovatsBarna KovatsKováts + +1952599The Jungle Town StompersNeeds Major ChangesJungle Town StompersLuis RussellElmer Snowden + +1953593Jan KunkelClassical cellist.CorrectConcerto Köln + +1953594Stephan SängerClassical violinistCorrectConcerto Köln + +1953595Horst-Peter SteffenClassical violinistNeeds VoteConcerto KölnDas Neue OrchesterNeue Düsseldorfer HofmusikSinfonietta KölnChursächsische Philharmonie + +1953596Maren RiesClassical violin and viola player.Needs VoteMusica Antiqua KölnConcerto KölnNew Seasons Ensemble + +1953597Alexander ScherfClassical cellist.CorrectConcerto KölnOrchester Der Ludwigsburger SchlossfestspieleCompagnia Di Punto + +1953598Peter StelzlGerman classical trombonist.Needs Votehttps://peter-stelzl.de/Concerto KölnMusica FiataIl Desiderio + +1953599Anna Von RaußendorffClassical violinist.Needs VoteConcerto KölnDas Neue Orchester + +1953600Franco GallettoClassical viola player.Needs VoteConcerto KölnConcerto ItalianoVenice Baroque Orchestra + +1953601Martin EhrhardtClassical violinist.Needs VoteMartin ErhardtConcerto KölnDas Neue OrchesterL'arte Del MondoKölner Akademie + +1953602Aino HildebrandtClassical viola playerNeeds VoteCollegium VocaleConcerto KölnCantus CöllnHarmonie Universelle + +1953604Frauke PöhlClassical violinistNeeds VoteConcerto KölnHarmonie UniverselleMarcolini Quartett + +1953606Werner SallerClassical viola player, born in 1966.Needs VoteConcerto KölnFreiburger BarockorchesterLa StagioneWeser-RenaissanceFreiburger BarockConsortConcerto Con VoceLes FavoritesSüdwestdeutsche BarocksolistenHassler ConsortAlmaviva Quartett + +1953609Almut RuxClassical trumpeter.Needs VoteAlmuth RuxConcerto KölnI BarocchistiMusica FiataDresdner BarockorchesterHarmonie UniverselleKölner AkademieHimlische CantoreyJohann Rosenmüller EnsembleMerseburger Hofmusik + +1953610Stefan GawlickClassical percussionist and producerNeeds VoteS. GawlickConcerto KölnCantus CöllnConcerto PalatinoBundesjugendorchesterGaechinger Cantorey + +1953611Philippe CastejonChalumeau / clarinet player.Needs VoteAnima EternaConcerto KölnHannoversche HofkapelleEnsemble MatheusDas Neue OrchesterOrchester Der J.S. Bach Stiftung + +1953613Antje EngelClassical violinistNeeds VoteConcerto Köln + +1953614Bettina Von DomboisClassical violinist.Needs VoteBettina V. DomboisConcerto KölnLa StagioneDas Kleine KonzertNeue Düsseldorfer Hofmusik + +1953615Jörg SchulteßClassical horn playerNeeds VoteJörg SchultessOrchestre Des Champs ElyséesAnima EternaConcerto KölnLa StagioneCollegium 1704Das Neue Orchester + +1953616Katherine CouperClassical trombonist.CorrectThe Amsterdam Baroque OrchestraConcerto Köln + +1953797Hugo KolbergAmerican violinist, born 29 August 1898 in Warsaw, Poland and died 27 February 1979 in Hampstead, New York.Needs VoteHugo KolbertBerliner PhilharmonikerThe Cleveland OrchestraOslo Filharmoniske OrkesterPittsburgh Symphony Orchestra + +1954832Shizuko NoiriClassical guitar, luth and theorbo playerNeeds VoteConcerto SoaveAkademie Für Alte Musik BerlinConcerto VocaleConcerto KölnEnsemble 415Freiburger BarockorchesterCafé ZimmermannSchola Cantorum BasiliensisBach Collegium JapanCollegium 1704Isabella D'EsteLes Passions De L'Ame (2)Les Plaisirs Du ParnasseLa Cicala (2) + +1955262Don DavidsonBaritone saxophonistNeeds VoteDon DavisonDon DavissonStan Kenton And His OrchestraCharlie Barnet And His OrchestraGerry Mulligan TentetteThe Tom Talbert Jazz Orchestra + +1955807Hans-Ludwig HauckGerman string & wood-wind instrumentalistNeeds VoteHars-Ludwig HauckConsortium Musicum (2)Darek Ensemble + +1956575Patrick HollenbeckAmerican percussionist, composer and arranger. He's the brother of [a308786].Needs VoteG. Patric HollenbeckP. HollenbeckPat HollenbeckBoston Pops OrchestraThe Living Time OrchestraOrange Then BlueBoston Cecilia Chamber Ensemble + +1956953Carlos KalmarUruguayan conductor of Austrian descent, born February 26, 1958 in Montevideo, he is currently the music director of the Oregon Symphony.Needs Votehttp://en.wikipedia.org/wiki/Carlos_KalmarOrquesta Sinfónica de RTVE + +1957396William ShimellBritish baritone vocalist, born September 23, 1952.CorrectShimell + +1957722Frank Sinatra (2)American timpanist and percussionist.CorrectThe Philadelphia OrchestraNational Symphony Orchestra + +1957724Neil CourtneyAmerican double bassist, born in 1932, died 17 June 2015.Needs VoteThe Philadelphia OrchestraNational Symphony OrchestraRochester Philharmonic OrchestraThe Contemporary Jazz Ensemble (2) + +1957729Vernon KirkpatrickAmerican oboist and English horn player, born in 1921 and died in 2010.CorrectThe Cleveland OrchestraNational Symphony Orchestra + +1957732Sylvia MeyerUS classical harpist (23 Nov. 1907 – 26 Mar. 2005), she has been the first female member of the National Symphony Orchestra.Needs Votehttps://wikipedia.org/wiki/Sylvia_MeyerNational Symphony Orchestra + +1957738John Martin (21)John Sawyer Martin, Jr.Cellist based in Washington, DC, where he was the principal cellist for [a915941] for 46 years. Died Nov 15, 2005Needs Votehttps://www.legacy.com/us/obituaries/washingtonpost/name/john-martin-obituary?id=5547896National Symphony Orchestra + +1957748Peter KattAustrian violinist.Needs VoteWiener SymphonikerDie Wiener Solisten + +1957749Manfred TacheziAustrian oboist, born 1959 and died September 1982 from a mountain accident at the Grossglockner, the highest mountain in Austria.Needs VoteWiener SymphonikerWiener Philharmoniker + +1957750Erhard WetzerAustrian classical percussionist/xylophonist.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerMallet-Trio + +1957751Adelheid MillerNeeds VoteWiener Symphoniker + +1957752KentaroYoshiiNeeds VoteKentaro YoschiiWiener Symphoniker + +1958073Alexander PuliaevRussian classical pianist and harpsichordist, born in 1962 in Leningrad, USSR.Needs Votehttp://www.puliaev.de/Alexsander PuliaevConcerto KölnOrnamente 99Ensemble 1700Il Dolcimelo + +1958160Paul GrundGerman classical mandolin player.Needs VoteP. GrundWürttembergisches Kammerorchester + +1958318Conor DaltonConor DaltonAudio mastering engineer hailing from Glasgow, Scotland, UK and based in Berlin, Germany. +Works at [l=Calyx Mastering] and also owner of his own studio [l=Glowcast Audio Mastering]. +Contact: conor@glowcast.co.uk + +[b]DO NOT CONFUSE[/b] with [a=Connor Dalton] who signs vinyl runouts with "CDALTRON" and works at Australian [l=Zenith Records (2)].Needs Votehttp://www.facebook.com/Conor.Dalton.Masteringhttp://www.instagram.com/conordalton_mastering/http://twitter.com/ConorDalton_GCC. DaltonCDaltonCONORConnorConnor DaltonConorVakamaGlowcastCalyx MasteringIsland People + +1958976Marcel TabuteauFrench oboist, born 2 July 1887 in Compiègne, France and died 4 January 1966. +Tabuteau was considered the founder of the American school of oboe playing. + +Tabuteau was born in Compiègne, Oise, France, and given a post in the city's municipal wind band at age eleven. He then studied at the Conservatoire de Paris with the legendary oboist [a=Georges Gillet]. [a=Walter Damrosch] brought Tabuteau together with French musicians flutist [a=Georges Barrère], bassoonist Auguste Mesnard, clarinetist Leon Leroy, and Belgian trumpeter Adolphe Dubois to New York in 1905 to play in his [a=New York Symphony Orchestra]. Damrosch was fined by the musicians' union for not advertising for musicians from New York, but the emigrating musicians were allowed to stay. In 1906, Tabuteau returned to France to complete his three years of compulsory military service as a French citizen, and served as a military musician in the regimental band of the 45th Infantry Regiment in Compiègne. A French law that had been enacted on July 11, 1892 gave special consideration to graduates of the Conservatoire, allowing him to be demobilized after just one year of service. He returned to the United States in 1907 and the union again tried to have him expelled, on the grounds that there had been a break in his US residence since filing his first citizenship papers. The union was unsuccessful and Tabuteau became a US citizen in 1912. + +Tabuteau served as principal oboist of [a=The Philadelphia Orchestra] from 1915 to 1954 under [a=Leopold Stokowski] and [a=Eugene Ormandy], and just as importantly, taught in Philadelphia at the [l=Curtis Institute of Music]. There his classes included Oboe, Woodwind and String Ensembles, Orchestral Winds/Percussion Class, and combined ensembles. He taught at Curtis from 1925 until his retirement in 1954. During the thirty years during he taught at the Curtis Institute of Music, Tabuteau came to exercise a decisive influence on the standards of oboe playing in the whole United States, as well as raising the level of woodwind achievement in general. Nor was the impact of his teaching confined to wind instruments alone, as is evidenced by the many string players and pianists who attended his classes. [a=Laila Storch] was one of his oboe students. Needs Votehttps://marceltabuteau.com/https://en.wikipedia.org/wiki/Marcel_Tabuteauhttps://marceltabuteau.wordpress.com/home/tabuteaus-reeds/M. TabuteauThe Philadelphia Orchestra + +1958977John Mack (2)American oboist, born 30 October 1927 in Somerville, New Jersey and died 23 July 2006 in Cleveland, Ohio.Needs Votehttps://en.wikipedia.org/wiki/John_Mack_(musician)https://www.bach-cantatas.com/Bio/Mack-John.htmhttps://www.britannica.com/biography/John-MackJ. MackThe Cleveland OrchestraNational Symphony OrchestraThe New Orleans Symphony + +1959161Eduard LaryszAustrian violinist and bandleader, born 9 December 1913 in Vienna, Austria and died 31 January 2003.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle WienOrkest Eduard LaryszEduard Larysz Und Seine Solisten + +1959172Léon de WaillyArmand François Léon de Wailly(28 July 1804 – 25 April 1864). French novelist, playwright, adaptor and translator.Needs Votehttps://en.wikipedia.org/wiki/L%C3%A9on_de_WaillyDe WaillyL. Du WaillyLeon De WaillyLeon de Waillyde Wailly + +1959173Henri-Auguste BarbierNeeds Major ChangesAugust BarbierAuguste BarbierBarbier + +1959368Johann Philipp KirnbergerJohann Philipp Kirnberger (alos Kernberg) was a German musician, composer, and music theorist born 1721 in Saalfeld; died 1783 in Berlin. A pupil of [a=Johann Sebastian Bach], he became a violinist at the court of Frederick II of Prussia in 1751Correcthttp://en.wikipedia.org/wiki/Johann_KirnbergerJ P KirnbergerJ. P. KirnbergerJ. P. Kirnberger (Original)J. Ph. KirnbergerJ.P. KirnbergerJoh. Ph. KirnbergerJoh. Phil. KirnbergerJoh. Philipp KirnbergerJohann KirnbergerJohann Phillipp KirnbergerKernbergerKirnbergerИоганн Кирнбергер + +1959381Rossana BertiniItalian classical soprano.Needs VoteBertiniRosanna BertiniPomeriumConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaLa VenexianaLa Compagnia Del MadrigaleIl Teatro ArmonicoIl Pomo d'OroLe Tems Revient + +1959579Ben van DijkDutch trombonist and Professor at the Rotterdam Conservatory "Codarts" and the Royal College of Music in Manchester. He was born 1955 in The Hague, Netherlands.Needs Votehttp://basstrombone.nl/Default.aspxhttp://www.myspace.com/benvandijkAbuelo van DijkB. van DijkRotterdams Philharmonisch OrkestNew Trombone CollectiveBen van Dijk & Friends + +1959593Joe Bauer (2)American Jazz trumpeter.Needs VoteJ. BauerJBaJoe BarnerJoseph BauerJoseph Bauer (JBa)Tommy Dorsey And His OrchestraTeddy Powell And His OrchestraThe Three EsquiresBert Block & His OrchestraThe Three Chips + +1959617Frits WagenvoordeClassical violinist, born in 1955 in Deventer, Netherlands.Needs Votehttp://www.fritswagenvoorde.nl/Radio KamerorkestRadio Filharmonisch OrkestRadio Kamer Filharmonie + +1959618Tadashi Tanaka (2)Classical cellist, born 24 July 1946 in Yamaguchi, Japan.Needs VoteRotterdams Philharmonisch OrkestCaecilia ConsortXenakis Ensemble + +1960538Martinus LeusinkClassical treble/tenor vocalistNeeds VoteHolland Boys Choir + +1960539Örzse AdamErzsebet AdamClassical viola player.Needs VoteErzsebet AdamThe Amsterdam Baroque OrchestraNieuw Sinfonietta AmsterdamMusica Ad RhenumNetherlands Bach CollegiumLudwig Orchestra + +1960541Jeroen AssinkClassical bass vocalist.Needs VoteHolland Boys Choir + +1960815Nathan PragerAmerican classical trumpet player, born 1910 in New York, New York and died 1963 in New York, New York.Needs VoteNew York PhilharmonicThe Cleveland Orchestra + +1960816Gordon PulisAmerican classical trombone player, born 1923 in New York, New York and died in 1987.Needs VoteG. PulisThe Philadelphia OrchestraNew York PhilharmonicToronto Symphony Orchestra + +1960829Katharina HagerKatharina Hager-SaltnesGerman cellist, born 1968.CorrectOslo Filharmoniske Orkester + +1961743Peter Hall (8)Classical tenor vocalist.CorrectThe English Chamber ChoirThe Choir Of Christ Church CathedralThe Brabant EnsembleAccademia MonteverdianaSt. Clement Dane's Chorale + +1962702Egon HellrungGerman horn playerNeeds VoteDas Orchester Der Staatsoper BerlinGürzenich-Orchester Kölner PhilharmonikerHannes Zerbe Blechband + +1962783Michael Stern (4)Michael SternAustrian trombonist, conductor and composer. +Michael Stern was born on the 23rd of Dezember 1933 in Natters. From 1946 to 2001 Stern was member of the Musikkapelle Natters. From 1956 to 1964 he was the first trombonist of the Munich Philharmonic Orchestra (Münchner Philharmoniker). He was also first trombonist of the Bavarian Radio Symphony Orchestra (Symphonieorchester des Bayerischen Rundfunks) from 1964 to 1988, professor for trombone at the University of Music and Performing Arts Munich (Hochschule für Musik und Theater München) from 1974 (1983 full professor) to 1997 and conductor of the Stadtmusikkapelle Wilten from 1977 to 1986 and from 1989 to 1995. Michael Stern also conducted the Original Tiroler Kaiserjägermusik from 1991 to 1992 and the Musikkapelle Mutters from 2002 to 2008. He was also the leader of a Inntaler-Formation called "Die Sterntaler Musikanten", which has been active between 1965 and 1977. +Stern composed about 200 works for Tyrolean dance music ensembles (Inntaler-Formation), concert band (Großes Blasorchester) and small concert pieces for solo-instruments and concert band (eg. for clarinet, tenorhorn and trombone). +Needs VoteStadtmusikkapelle Wilten: http://wiltener.at/de/orchester/kapellmeister.phpMusikkapelle Natters: http://www.mk-natters.at/chronik/pers%C3%B6nlichkeiten/Musikkapelle Mutters: http://www.mk-mutters.at/chronik/M. SternMichael Stern & FreundeMichael Stern Und FreundeMichl SternProf. Michael SternSternStern MichaelMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksStadtmusikkapelle WiltenOriginal Tiroler KaiserjägermusikDie Sterntaler MusikantenResidenz Kammerorchester München + +1962800Duke GarretteRichard "Duke" GarrettAmerican jazz trumpet player, vocalist and songwriter. +He was voted 5th best trumpeter in 1948 [i]Down Beat[/i] poll. +He played trumpet for [a136133] for ten years. He played with The Kentucky State Collegians in the early 1940's. He also sang vocals with Earl Hines & His Orchestra. Beginning in 1951, he had his own combo al the Baby Grand in Harlem.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/317129/Garrett_DukeDuke GaretteDuke GarrettGarretteRichard "Duke" GaretteRichard "Duke" GarrettRichard "Duke" GarretteRichard GarretteRichard «Duke» GarretteLionel Hampton And His Orchestra + +1962801Roy Johnson (3)American jazz bassist. One of the first one to play electric bass (Precision). Replaced by [a=Monk Montgomery] in [a=Lionel Hampton And His Orchestra].Needs VoteRay JohnsonLionel Hampton And His OrchestraAl Grey And His OrchestraBobby Plater's OrchestraAl Grey All StarsGene Morris And His Hamptones + +1963313Archie WheelerBig Band/Swing jazz saxophone playerNeeds VoteStan Kenton And His Orchestra1:00 O'Clock Lab Band + +1963938Maurice Van KleefMarcus van KleefDutch jazz drummer.Needs VoteMaurice Van CleefMaurits Van KleefMozes 'Maurice' van KleefThe Coleman Hawkins Trio + +1964297Klaus RehmClassical trumpeterNeeds VoteDr. K. RehmDr. med. Klaus RehmKlaus E. RehmLa Petite BandeStuttgarter Ärzteorchester + +1964302Arnold MehlClassical trumpeter.Needs Vote[Reconstruction]Collegium AureumLa Petite BandeBach-Trompetenensemble München + +1964869Kate GouldClassical cellist.Needs VoteThe Chamber Orchestra Of EuropeThe Leopold String TrioLondon Bridge TrioLondon Bridge Ensemble + +1966137Guido AgostiItalian classical pianist and piano teacher, 11 August 1901 – 2 June 1989.Correcthttp://en.wikipedia.org/wiki/Guido_AgostiAgostiG. AgostiГ. Агости + +1966321Valery GradowClassical violinist.CorrectViolinensemble Valery GradowВалерий ГрадовBamberger Symphoniker + +1966803Julian GodleeBritish chorister. Credited as treble vocalist in recordings from the mid-1970s.Needs VoteThe King's College Choir Of Cambridge + +1966805Richard Cross (2)British chorister. Credited as treble vocalist in recordings from the mid-1970s.Needs VoteThe King's College Choir Of Cambridge + +1967337Joy HallJoyce Mary Hall[b]Joy Hall[/b] (30 November 1920, Raunds, Northamptonshire — 14 September 2023, Crediton, Devon) was a distinguished British cellist, pedagogue, and centenarian. With a career spanning over fifty years, Hall participated in many notable British symphony orchestras and chamber ensembles, including [a=The Delmé String Quartet] she co-founded and regularly appeared in [l=BBC] radio and television broadcasts. She recorded with [a=The Beatles] and other prominent acts as a studio session musician and released dozens of classical albums on [l=Philips], [l=Nonesuch], [l=Argo (2)], and [l=Chandos]. + +Hall grew up in a musical family and began playing cello at six. In 1933, thirteen-year-old Joyce won the [l=Royal Academy of Music]'s scholarship, later joining [a=The New Queen's Hall Orchestra] co-founded by [a=Sir Henry Wood] (where she subsequently rose to a principal cellist). After graduating from RAM, Hall joined the [a=London Symphony Orchestra], participating in [l=Royal Albert Hall]'s Proms summer concerts and other notable events. Joy performed with several chamber ensembles, including the [a=Zorian String Quartet] and [i]Musica da Camera[/i] (alongside violinist [a=Vera Kantrovich], violist [a=Cecil Aronowitz], clarinetist [a=Sidney Fell], and pianist [a=Hubert Dawkes]). + +In 1962, Joy Hall co-founded [b][a=The Delmé String Quartet][/b] with violinists [url=https://discogs.com/artist/850223]Granville Delmé Jones[/url], [url=https://discogs.com/artist/4152262]Jürgen Hess[/url], and [a=John Underwood] on viola. Following the debut concert series at London's [l=Royal Festival Hall] produced by [l=BBC], Delmé Quartet toured extensively, participating in [l=Salzburger Festspiele] and other European festivals. Besides their classical repertoire, the Quartet actively participated in studio sessions. Most notably, Delmé Quartet's members appeared on the "[i][url=https://discogs.com/master/46287]Strawberry Fields Forever[/url][/i]" song by [a=The Beatles]. (Joy got miscredited as "John Hall" in two of the most popular Beatles "reference" books with annotated recording sessions, [a=Mark Lewisohn]'s 1988 [i]Complete Beatles Recording Sessions: The Official Abbey Road Story 1962–1970[/i] and [url=https://www.discogs.com/artist/1993915]Ian MacDonald[/url]'s 1994 [i]Revolution in the Head: The Beatles' Records and the Sixties[/i].) She also recorded cello on [a=Paul McCartney]'s 1967 soundtrack for [i][m=257716][/i] film by [a10053181]. In 1969, Joy and Delme Quartet performed [url=https://discogs.com/artist/216140]Ravel[/url]'s [i]Introduction and Allegro[/i] with clarinetist [a=Thea King] at [l=Kingsway Hall] in London, which came out on [url=https://discogs.com/label/645373]Argo[/url]'s critically acclaimed [i][m=1584422][/i] LP with [a=Robles Trio]. + +Hall served as the [a=English Chamber Orchestra] and [a=Philomusica Of London] member for many years. As one of the most in-demand "continuo" players, she collaborated with numerous other early music ensembles and soloists, including [a=Julian Bream], [a=Roy Jesson], [a=Charles Spinks (2)], [a=Janet Baker], and [a=Raymond Leppard]. Since Joyce's first appearance with the [a=BBC Northern Symphony Orchestra] in 1944, she participated in numerous broadcasts over the next thirty-five years on [url=https://discogs.com/label/555251]Third Programme[/url], [url=https://discogs.com/label/429206]BBC Home Service[/url], [l=BBC Radio 1], [url=https://discogs.com/label/640517]Radio Two[/url], and [l=BBC Television]. Hall continued her career until the mid-1990s, well into her seventies, teaching at [url=https://discogs.com/artist/4710503]Wells Cathedral School[/url] in Somerset and regularly performing at London's [l=Royal Festival Hall]. Among Joy's last recording projects were October 1996 sessions with [b][a=Rasumofsky Quartett][/b] and oboist [a=Sarah Francis], released as [a=Rutland Boughton]'s [i][r=11933262][/i] CD collection by [l=Hyperion]. After retiring, Joy became a ceramist and painter; Hall died two months before her 103rd birthday.Needs Votehttps://www.joyhallmusic.com/https://www.the-paulmccartney-project.com/artist/john-hall/https://www.imdb.com/name/nm7539298/https://www.creditoncourier.co.uk/news/joy-from-crediton-who-played-on-the-beatles-strawberry-fields-forever-is-100-151124https://theviolinchannel.com/cellist-joy-hall-has-died-aged-102/J. HallLondon Symphony OrchestraEnglish Chamber OrchestraPhilomusica Of LondonThe Virtuosi Of EnglandThe Delmé String QuartetThe London StringsGoldsbrough OrchestraThe Boyd Neel OrchestraThe New Queen's Hall OrchestraBBC Northern Symphony OrchestraRasumofsky QuartettZorian String QuartetYorkshire SinfoniaThe Beethoven Broadwood Trio + +1967828Vilmos StadlerClassical flutist + recorder playerNeeds VoteCamerata HungaricaLiszt Ferenc Chamber OrchestraClemencic Consort + +1968057Miloš ValentBorn in 1960, he studied violin at the Conservatory in Žilina and thereafter at the Academy of Performing Arts in Bratislava.Needs Votehttps://web.archive.org/web/20141019074111/http://mjuzik.eu/29/Milos-Valent-.htmlhttps://hc.sk/en/o-slovenskej-hudbe/osobnost-detail/813-milos-valentMilos ValentValentTragicomediaThe Dowland ProjectSolamente NaturaliMusica AeternaBarokksolisteneFestspielorchester GöttingenBoston Early Music Festival OrchestraTirami Su (2) + +1968198Leon CoxAmerican jazz trombonist.Needs VoteL. CoxGene Krupa And His OrchestraClaude Thornhill And His OrchestraBenny Goodman And His Orchestra + +1968544Bob Jenkins (4)American jazz trombone player, conductor, songwriter, commercial producer and teacher for arts education. Jenkins had a musical education and performed as trombonist in his early years. He was active for [a239399], [a229639], [a77991] and others, Later, he became conductor for [a575586], [a457331] and others. +His main profession was to be composer and producer, both for music recordings and commercial music. Additionally he could conduct, compose and arrange a couple of movie scores and television shows. His best known commercials are [l111429], [l107640], [l385737], [l76288], [l210196], [l119471], [l252858], [l213313], [l797231], [l188799] and [l818363]. +He composed the CNN news theme, made the score for "Out of the Wilderness", Walt [l48352]'s "Iron Will". +He yielded the Cannes Film Festival Gold Lion Award for his WCBS TV Promotional campaign, the Hollywood Radio and TV Society award for his Yellow Pages commercials and the New York Art Directors' award for his Union Pacific TV Campaign. +In the age of retirement, he accepted a job as teacher for Post-Production, Orchestration, Scoring and Music Theory at the IPR college of Creative Arts in Minneapolis.Needs Votehttp://www.ipr.edu/blogs/faculty/bob-jenkins/Woody Herman And His OrchestraWoody Herman And The Swingin' Herd + +1968674Klaus JoppGerman clarinetist.CorrectDresdner PhilharmonieHändelfestspielorchester Halle + +1968675Wolfgang DerschGerman classical bass vocalistNeeds VoteRundfunkchor Berlin + +1970125Tom ArchiaErnest Alvin Archia Jr..American jazz saxophonist (tenor) player. + + +Born : November 26, 1919 in Groveton, Texas. +Died : January 16, 1977 in Houston, Texas. +Needs Votehttps://adp.library.ucsb.edu/names/301785ArchiaErnest ArchiaT. ArchiaThomas Archia[Uncredited]Helen Humes And Her All-StarsRoy Eldridge And His OrchestraTom Archia And His All StarsTom Archia And His Orchestra + +1970127Andrew "Goon" GardnerAndrew GardnerAmerican alto saxophonist from the Swing era.Needs VoteAndrew (Good) GardnerAndrew GardinerAndrew GardnerGoon GardnerGoon GarnerRoy Eldridge And His Orchestra + +1970128Freddy CulliverUS jazz saxophonist from the swing-era. + +Needs VoteCuliverCulliverCullivertF. CulliverFred CulliverFreddie CulliverFreddie GulliverFreddy GulliverGulliverLeonard-Culliver-RossOliverOlliverJay McShann And His Orchestra + +1970130Lawrence "Frog" AndersonUS jazz trombonist from the swing-era. + +Needs VoteLarry AndersonLawrence AndersonJay McShann And His Orchestra + +1970131Leonard EnoisUS jazz guitarist from the swing-era, nicknamed "Lucky." + +Needs VoteEnoisL EboisL. EnoisLeonard "Lucky" EnoisLeonard EloisLeonard EnosLeonard P. EnoisLeonard RheisLeonhard EnoisLucky EnoisLucky LeonardJay McShann And His OrchestraLucky Enois QuintetRed Callender TrioThe Kansas City TomcatsThe Flennoy Trio4-star-5 + +1970134Rozelle GaylePianist of the Swing Era.Needs VoteGayleRoselle GayleRoy Eldridge And His Orchestra + +1970149Lloyd Smith (5)American alto saxophonist and flutist born Lexington, KY, May 28, 1914?, died 1999. Played on the riverboats during the 30's, with Earl Hines’ Orchestra in 1945, and substituted for Johnny Hodges in Duke Ellington’s Orchestra in 1947. Also was an instructor, and among his notable students were John Coltrane, Chad Evans, Gerald DeClue, Hammiet Blewett and his sons [a12355381] and [a7393701].Needs Votehttp://www.siue.edu/~tdickma/LloydSmith1.htmLlyod SmithEarl Hines And His Orchestra + +1970423Henry Charles SmithAmerican trombonist and conductor.CorrectHank SmithHenry C. SmithHenry SmithThe Philadelphia Orchestra + +1970424M. Dee StewartAmerican trombonist and professor of trombone and euphonium.CorrectDee StewartThe Philadelphia Orchestra + +1970425Abe TorchinskyAbrahm TorchinskyAmerican orcherstral tuba player and teacher, died in August 2009 at the age of 89. Member; NBC Symphony, Philadelphia Orchestra. Faculty; Curtis Institute of Music, University of MichiganNeeds VoteTorchy JonesThe Philadelphia OrchestraNBC Symphony OrchestraNational Symphony Orchestra + +1970426Seymour RosenfeldAmerican trumpet player, born 1923 in New Jersey and died March 2005 in Penn Valley, Pennsylvania.CorrectSi RosenfeldThe Philadelphia OrchestraSaint Louis Symphony Orchestra + +1970703Erich SichermannViola player.Needs VoteErich SichermanE・シシェルマンSymphonie-Orchester Des Bayerischen RundfunksDeutsche BachsolistenBenthien QuartetWührer-Quartett + +1970721Walter J. BlantonAmerican jazz trumpeterNeeds VoteW. BlantonWalt BlantonWalter BlantonWillie BlantonWoody Herman And His OrchestraLas Vegas Brass QuintetWoody Herman And The Thundering HerdNew World Brass QuintetCaravan (16) + +1970882Terence MacDonaghJohn Alfred Terence MacDonaghEnglish oboe and English horn player (3 February 1908 – 12 September 1986). +Son of [a7530981] and nephew of [a10328296]. +Needs Votehttp://en.wikipedia.org/wiki/Terence_MacDonaghT. MCDonaghTerence Mac DonaghTerence McDonaghBBC Symphony OrchestraRoyal Philharmonic OrchestraLondon Wind SoloistsLondon Baroque EnsembleThe Wind Virtuosi Of EnglandThe Nefer Ensemble + +1971537Bill Thompson (9)Vibraphonist.Needs VoteEarl Hines And His Orchestra + +1971584Charles DuveyrierFrench dramatic adviser and librettist, born 12 April 1803 in Paris, France and died 10 November 1866.Needs Votehttp://fr.wikipedia.org/wiki/Charles_DuveyrierCh. DuveyrierDuveyrierШ. Дюверье + +1971816Paul HeydorffTrombonistCorrectPaul HeydorfStan Kenton And His OrchestraClaude Gordon And His Orchestra + +1973667Joe CasanoTrumpet playerNeeds VoteJoseph Allan CasaneJoseph Allan CasanoStan Kenton And His OrchestraThe Mighty Horns + +1973668Tom BridgesNeeds VoteStan Kenton And His Orchestra + +1973669Frank MinearTrumpet playerCorrectFrank MinnearMinearStan Kenton And His Orchestra + +1973670Dave Kennedy (3)Trumpet playerNeeds VoteDavid Earl KennedyWoody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman And The Thundering HerdEd Vezinho / Jim Ward Big BandThe Killer Force Band + +1973671John ParkAmerican saxophonist who appeared on the Ed Sullivan Show and toured with Stan Kenton. He would eventually move his family to Springfield, Missouri and become a valued member of the local music scene. Died in December 1979.Needs VoteParkStan Kenton And His Orchestra + +1973672Lloyd SpoonTrombonistCorrectL. SpoonStan Kenton And His Orchestra + +1973675Dick WilkieDuncan Richard WilkieSaxophonist, Flutist +Born on August 30, 1948 and died on November 14, 2010 at the age of 62Needs VoteRichard Wilkie (2)Stan Kenton And His Orchestra + +1973676Paul AdamsonTrumpet playerNeeds VoteStan Kenton And His OrchestraLighthouse (2)Power & Light Co. + +1973677Bill HartmanWilliam Wayne HartmanAmerican trombonist (* June 17, 1943 in Stillwater, Oklahoma; † December 15, 2022 in Springfield, Missouri) + +Hartman served four years in the U.S. Marine Band, “The President’s Own,” and toured with the Stan Kenton Orchestra for two years. Upon moving to Springfield, Hartman performed with the Springfield Symphony Orchestra for 47 years and worked as professor of music at Missouri State University for 36 years.Needs Votehttps://www.trombone.net/newsitem/in-memoriam-william-hartman/William HartmanStan Kenton And His OrchestraForrest Wasson & His OrchestraCaduceus The Doctors' Band + +1973679Mike BarrowmanTrumpet playerCorrectStan Kenton And His Orchestra + +1973680Bob WinikerTrumpet playerCorrectB. WinikerWinikerStan Kenton And His Orchestra + +1973681Dave SovaSaxophonist.Needs VoteDavid SovaStan Kenton And His Orchestra + +1973898Georg Lohmann +German trombonist and composer (02/23/1899 - 02/24/1980), he was a student of the well-known Berlin virtuoso of this instrument, [a6328140]. From 1930 to 1940 and after the Second World War he played in the [a688716] (RSB) and in well-known dance orchestras (Etté, Dobrind, etc.) and for the UFA. Lohmann wrote a number of solo pieces for his instrument, which he later published. Of these miniatures, the [i]Bayerische Polka[/i] achieved the greatest popularity.Needs Votehttps://www.hebu-music.com/de/musiker/georg-lohmann.4597/G. LohmanG. LohmannGeorg LohmanGeorge LohmannLohmannLohmannn GeorgRadio-Symphonie-Orchester Berlin + +1974353Tibor FrešoTibor FrešoSlovak composer and conductor. + +Born November 20, 1918 in Spišský Štiavnik. Died June 7, 1987 in Piešťany (former Czechoslovakia). Father of [a=Fedor Frešo]. Grandfather of [a=Viktor Frešo].Needs VoteT. FrešoTibor FrascoTibor FresoSlovak Radio Symphony Orchestra + +1974363Mel Green (2)Credited as trumpeter.Needs VoteStan Kenton And His Orchestra + +1974367Eddie Meyers (2)Jazz saxophonist and clarinet playerNeeds VoteStan Kenton And His OrchestraBobby Stavins And His Orchestra + +1974368Bob LivelyBobby Gene LivelyAmerican jazz saxophonist. Born February 10, 1923 in Little Rock, Arkansas, died September 15, 1974 in Los Angeles, CANeeds Votehttps://en.wikipedia.org/wiki/Bob_LivelyBobby LivelyStan Kenton And His Orchestra + +1974369Ray BordenTrumpeter Ray Borden first organized a big band in Boston in 1941, but it was not successful. He joined Stan Kenton’s band in late 1942 and remained until spring 1944, then worked short stints with a half-dozen other name bands, including those of Jack Teagarden and Bobby Sherwood. In late 1945, he organized a new Boston band, and as it matured, it became the band that employed the area’s best white modern jazz players. In 1947 the Borden band recorded at least six sides for Manny Koppelman’s Crystal-Tone Records, and released them in early 1948. (From Rick Vacca's Troy Street Publishing)Needs Votehttps://www.troystreet.com/tspots/2013/07/05/july-5-1948-big-band-chooses-nat-pierce-as-new-leader/#more-999Stan Kenton And His OrchestraThe Ray Borden Band + +1974370George FayeCredited as jazz trombonist.Needs VoteStan Kenton And His Orchestra + +1974371Joe VernonCredited as jazz drummer.Needs VoteVernonStan Kenton And His Orchestra + +1974372Dick MorseAmerican jazz trumpeterCorrectStan Kenton And His Orchestra + +1974373Clyde SingletonCredited as jazz bassist.Needs VoteStan Kenton And His Orchestra + +1974374Bob VarneyJazz drummerNeeds VoteBob VarncyVarneyStan Kenton And His OrchestraThe Dorsey Brothers OrchestraJimmy McPartland And His Sextette + +1974375Bill Atkinson (2)Trombone playerNeeds VoteWilliam AtkinsonStan Kenton And His OrchestraJohn Scott Trotter And His OrchestraLouis Prima & His New Orleans Gang + +1974376Morey BeesonCredited as jazz tenor saxophone player.Needs VoteMorey BensonStan Kenton And His Orchestra + +1975297Michael Rosenberg (2)German oboist.CorrectRosenbergRadio-Sinfonieorchester Stuttgart + +1975541Dave DysonBassistNeeds VoteDavid A. DysonDavid DysonGerald Wilson OrchestraHarold Land All-Stars + +1975962Gareth TresederBritish tenor vocalistNeeds Votehttp://www.garethtreseder.com/tenorLondon VoicesThe Monteverdi Choir + +1976108Lydia RossignolClassical clarinetistNeeds VoteLydia RossingnolI FiamminghiOrchestre Du Théâtre Royal De La Monnaie + +1976114Tom De VaereClassical contrabassistCorrectCollegium VocaleI Fiamminghi + +1976122Danny LongstaffTrombone player.Needs VoteCity Of Birmingham Symphony OrchestraI Fiamminghi + +1976938Larry RockwellAmerican bass player.Needs VoteLarry RockwallWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +1977479Laura WilcoxCanadian classical string instrumentalistNeeds VoteCanadian Electronic EnsembleLes Violons du Roy + +1977958Michel NazziOboist and English horn player.Needs Votehttps://archives.nyphil.org/index.php/artifact/fd68ff58-fa06-46e1-90e0-dad6c0d9c0fc-0.1/fullview#page/1/mode/2upM. NazziNew York Philharmonic + +1978852Toivo LampénToivo LampénFinnish classical pianist, composer and lyricist. Born on January 7, 1907 in Pornainen, Finland and died on April 15, 2003 in Helsinki, Finland.Needs VoteToivo LampenTopi Lampén + +1978862Juha SeitajärviJuha SeitajärviFinnish movie scholar born on May 5, 1970 in Yli-Ii, Finland.Needs Vote + +1978959George TurnlundGeorge William TurnlundCanadian classical viola & violin player. Born October 29, 1931, Winnipeg, Manitoba, Canada - Died September 10, 2010, Minster-in-Thanet, Kent, England, UK. +During his musical studies in Winnipeg, he became a member of [a=The Winnipeg Symphony Orchestra]. In 1955, he decided to continue his studies at the [a=Royal Academy of Music] in London, first on the violin and later the viola. Upon completion of his studies, he joined the [a212726] serving as Principal Viola (1957-1970). He also was a permanent member of the [a4178810], and a popular session musician. After his retirement, he played for many years with [b]Thanet Light Orchestra[/b], the [b]Impromptu[/b] ensemble, and many other local groups in Thanet. +Father of [a=Martin Turnlund] and [a=Rutledge Turnlund].Needs Votehttp://thanetmusic.wikidot.com/george-turnlundhttp://ozaru.net/impromptu/players.htmlhttp://thanetmusic.wikidot.com/gtmfhttps://passages.winnipegfreepress.com/passage-details/id-170612https://www.the-paulmccartney-project.com/artist/george-turnlund/G. TurnlandG. TurnlundG. TurnluntGeorge TurnlandLondon Symphony OrchestraRobert Farnon And His OrchestraDick Bakker Orchestra (2)Haffner String QuartetWinnipeg Symphony Orchestra + +1979294Christiane NicoletClassical flautist and producer. She married Swiss flautist Aurèle Nicolet in 1967.Needs VoteC. NicoletChristine NicoletStuttgarter KammerorchesterCamerata Bern + +1979590Timora RoslerIsraeli-Dutch cellistNeeds Votehttps://www.timorarosler.com/Cristofori Piano Quartet Amsterdam + +1979719Bernadette CharbonnierClassical violinist.Needs VoteCharbonnierLes Arts FlorissantsIl Seminario MusicaleLa Grande Ecurié Et La Chambre Du Roy + +1980682Ferenc VecseyFranz von VecseyHungarian violinist and composer, born 23 March 1893 in Budapest, Hungary, died 5 April 1935 in Rome, Italy.Correcthttps://en.wikipedia.org/wiki/Franz_von_VecseyF. V VecseyF. V. VecseyF. VecseyF. Von VecseyF. v. VecseyF. von VecseyFerenc Von VecseyFerenc de VecseyFerenc von VecseyFerencz VecseyFerenz Von VecseyFranz (Ferenc) Von VecseyFranz Von VecseyFranz Von VeseyFranz Von VetseyFranz Von VécseyFranz von VecseyV. FerenczVecseyVecsey F.Vecsey FerencVerseyVessey FerensVon VecseyVécseyС. РахманиновФ. ВечейФ. Веччей + +1980905Gaston MarchesiniGaston Jean Ludovic MarchesiniGaston Marchesini (12 March 1904 - 15 March 1981) was a French classical cellist.Needs VoteG. MarchesiniGaston MarchésiniOrchestre National De L'Opéra De Paris + +1981807Max KalkiViolinist.Needs VoteDie Kammermusikvereinigung Der Bayreuther FestspieleGewandhaus-Quartett LeipzigThe Kalki Quartet + +1981919Andy Jackson (6)Early jazz banjoist. +Recorded with [a=Cliff Jackson & His Crazy Kats] in 1930, [a=Blanche Calloway And Her Joy Boys] in 1931, and [a=Edgar Hayes] in 1937.Needs VoteBlanche Calloway And Her Joy BoysEdgar Hayes And His OrchestraCliff Jackson & His Crazy Kats + +1981926Joe DurhamBassist with [a=Blanche Calloway And Her Joy Boys]CorrectBlanche Calloway And Her Joy Boys + +1981929Leroy HardyCredited for playing reeds and alto saxophone with [a=Blanche Calloway And Her Joy Boys]CorrectBlanche Calloway And Her Joy Boys + +1982056Richard SebringAmerican horn player.Needs VoteRichard "Gus" SebringRichard Gus SebringBoston Pops OrchestraBoston Symphony Orchestra + +1982105Naoki KitayaJapanese harpsichordist and organistNeeds VoteMünchener KammerorchesterZürcher KammerorchesterOrchestra La ScintillaLa PartitaFons MusicaeLa Folia BarockorchesterThe English ConcertConcert SpirituelFlyer Klassik + +1982111Burkhard BartschProject coordinator for Deutsche Grammophon GmbH from 2004 to 2017.Needs Votehttps://www.linkedin.com/in/burkhard-bartsch-511b28178?original_referer=https%3A%2F%2Fde%2Elinkedin%2Ecom%2F&originalSubdomain=deBurkhard Barstch + +1982112Gesa HarmsGerman violinist.Needs VoteMünchener KammerorchesterDas Mozarteum Orchester Salzburg + +1982114Marie-Luise ModersohnGerman oboist, born in 1973 in Leipzig, GDR.Needs VoteMarie-Louise ModersohnMünchner PhilharmonikerDeutsches Symphonie-Orchester BerlinMünchener KammerorchesterBundesjugendorchesterDelos-Quintett + +1982119Henrik WieseClassical flautist, born 1971 in Vienna, Austria.Needs VoteWieseBayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen RundfunksOrchester der Bayreuther FestspieleMünchener KammerorchesterOrchestre Mondial Des Jeunesses MusicalesBundesjugendorchester + +1982739Narvin KimballNarvin Henry KimballAmerican jazz banjoist, double bassist and vocalist, born 2 March 1909 in New Orleans, Louisiana; died 17 March, 2006 in South Carolina. + +Son of [a6205662]. Married to pianist [a405736]. +Needs Votehttp://www.allmusic.com/artist/mn0000375652http://viaf.org/viaf/148117372https://en.wikipedia.org/wiki/Narvin_Kimballhttps://musicbrainz.org/artist/2480fd80-ea8f-4fe4-98bb-a9921270fcf9http://www.knowlouisiana.org/entry/narvin-kimballHenry Kimball JrHenry Kimball Jr.Henry Kimball, Jr.KimballNarvin Henry KimballNarvin Kimball, Jr.Preservation Hall Jazz BandOriginal Tuxedo Jazz OrchestraFate Marable's Society Syncopators + +1982951Gabrielle PainterClassical violinist, and Professor of Violin. +She studied at the [l527847], the [l484524], and the [l1003583]. Member of [a=The Academy Of St. Martin-in-the-Fields], the [b]String Section[/b], Assistant Leader of the [a=City Of London Sinfonia], and violinist in the [b]Szabo Piano Trio[/b]. Professof of Violin at [l305416] and the [l925143]. Leader of the Saint Endellion Festival.Needs Votehttps://brybrysite.wordpress.com/gabrielle-painter/https://www.asmf.org/musician-profiles/https://www.gsmd.ac.uk/youth_adult_learning/junior_guildhall/staff/department/23-string-teaching-staff/892-gabrielle-painter/https://stringsection.co.uk/violins-hire-an-online-violinist-for-recording-sessions/London Symphony OrchestraCity Of London SinfoniaThe Academy Of St. Martin-in-the-Fields + +1982977Spencer Clark (2)Spencer W. ClarkAmerican jazz bass saxophonist and multi-instrumentalist, born March 15, 1908 in Baltimore, Maryland. Family moved to New York in 1909. +In addition to bass saxophone, Clark was also competent on mandolin, cornet, trumpet, clarinet, alto and tenor saxes, guitar, xylophone, and string bass, as well as an occasional vocalist. Married to and played with [a=Mary Clark (5)].Needs Votehttps://en.wikipedia.org/wiki/Spencer_Clark_%28musician%29SpenceSpender ClarkThe Pied PipersOzzie Nelson And His OrchestraThe Sons Of BixDick Stabile And His OrchestraUniversity SixVic Berton And His Orchestra'Lud' Gluskin With His Orchestra + +1983288David Watson (10)Classical bass vocalistNeeds VoteThe Cambridge SingersThe Clerkes Of Oxenford + +1983306Karen Segal (2)Violinist.Needs VoteNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +1983315Suzanne HuynenDutch violin playerNeeds VoteSusanne HuynenNieuw Sinfonietta AmsterdamHolland Symfonia + +1983322Arjan StroopDutch tuba player, born 1965 in Nijmegen.Needs VoteAsko EnsembleRadio KamerorkestNederlands Fanfare OrkestHet Gelders OrkestPhionRavelli Brass + +1983327Hans CartignyClassical oboist.Needs VoteAsko EnsembleRotterdams Philharmonisch Orkest + +1983516Hans PootjesClassical bass vocalistCorrectH. PootjesNederlands Kamerkoor + +1983521Jaap van der VlietDutch hornist.Needs VoteConcertgebouworkestEbony BandRadio Filharmonisch Orkest + +1985846Mark VinciAmerican jazz saxophonist, flutist and composer, based in New York City, USA.Needs Votehttp://www.markvinci.com/M. VinciThe Glenn Miller OrchestraWoody Herman And His OrchestraThe Woody Herman Big BandMaria Schneider OrchestraThe New Xavier Cugat OrchestraJohn Fedchock New York Big BandTom Pierson Orchestra + +1985974Jan IsakssonSwedish classical violinistNeeds VoteSveriges Radios SymfoniorkesterSnykoUnga MusikerMusica Agaria + +1986354Hans-Peter RauscherGerman chorus master who cooperated with [a=Chor Des Bayerischen Rundfunks].Needs VoteHans Peter RauscherHans-Peter RaunscherHans-Peter RunscherChor Des Bayerischen Rundfunks + +1986355Heinrich BraunGerman double-bass player. A member of the [a604396] from 1982 to 2022.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchener Kammerorchester + +1986379Peter JablonskiSwedish pianist, born in 1971.Correcthttp://www.peterjablonski.comJablonskiPeterペーテル・ヤブロンスキー + +1986596Thierry De BrunhoffFrench pianist, disciple of Alfred Cortot. +He retired in 1974 and became a monk at the Saint-Benoît d'En-Calcat abbey, Tarn, south of France.Needs Votehttps://blogs.mediapart.fr/antoine-perraud/blog/081114/que-viva-thierry-de-brunhoffDe BrunhoffTherry De BrunhoffThierry De BrUnhoffThierry De BrunhofThierry De BrünhoffThierry de Brünhoffティエリ・ブリュンホフ + +1986634Marilyn CostelloAmerican harpist, born 1925 and died 5 January 1998 in Philadelphia, Pennsylvania.CorrectCostelloMarylan CostelloThe Philadelphia Orchestra + +1986712John Cave (3)Classical percussionist. +Former member of the [a=London Symphony Orchestra] (1965-1966).Needs VoteJohnny CaveLondon Symphony OrchestraPhilharmonia OrchestraApollo OrchestraLondon Baroque Ensemble + +1986771Ian HumphrisIan William HumphrisBritish chorus master, musician and broadcaster, born 29 November 1927 in Clacton, Essex; died 16 November 2012.Needs VoteHumphrisIanThe Ambrosian SingersThe Linden SingersPurcell SingersThe Baccholian Singers Of London + +1987359John McLevyJohn McLevyScottish trumpeter and flugelhornist. +Born : 2 January 1927 in Dundee, Scotland, UK. +Died : 27 November 2002. + +Played a.o. with [a=Benny Goodman].Needs VoteJ. McLevyJohn McLeveyJohnnie McLevyJohnnie MclevyJohnny McLeavyJohnny McLeveyJohnny McLevyBenny Goodman And His Orchestra + +1987856David Van VactorAmerican composer, conductor and flute player, born 8 May 1906 in Plymouth, Indiana and died 24 March 1994.Needs Votehttps://en.wikipedia.org/wiki/David_Van_VactorVan VactorChicago Symphony Orchestra + +1988719Hermann OswaldGerman classical tenor vocalist.Needs Votehttps://en.wikipedia.org/wiki/Hermann_Oswaldhttp://www.bach-cantatas.com/Bio/Oswald-Hermann.htmhttps://www.kammerchor-bw.de/mitwirkende/hermann-oswald/H. OswaldOswaldCollegium VocaleCapella AngelicaEnsemble »Alte Musik Dresden«Balthasar-Neumann-ChorLa Capella DucaleSchütz-AkademieCapella De La TorreJohann Rosenmüller EnsembleHassler ConsortJunger Kammerchor Baden-WürttembergCarissimi-Consort MünchenMovimento (4)Cantores LipsiensesMarini Consort Innsbruck + +1989181Lauri VuorreNeeds Major ChangesL. VuorreVuorre + +1989182Oili VainioOili VainioFinnish singer. Born on October 21, 1940 and died on November 15, 2001.Needs VoteKolmiapila + +1989346Eduard BicanEduard Bican (22 October 1908 - 26 August 1985) was an Austrian classical and jazz trombonist. +A member of the [a754974] from 1933 to 1973.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerLudwig Babinski Mit Seinem Neuen Wiener Tanzorchester + +1989349Josef HadrabaJosef Hadraba (8 May 1903 - 3 March 1991) was an Austrian classical and jazz trombonist and composer.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHot Jazz Ernst HolzerHofmusikkapelle WienDol. Dauber's Jazz-Symphony & Tanz-Orchester + +1989478Zohar SchondorfHorn player.Needs Votehttps://zephyroswinds.org/zohar-schondorf-french-horn/https://sylvanwinds.com/about/#5The American Symphony OrchestraIsrael Philharmonic OrchestraSylvan Winds + +1989491Alden BantaWoodwinds playerNeeds Votehttps://www.aldenbanta.com/Gil Evans And His OrchestraGil Evans ProjectBrian Landrus OrchestraManhattan School Of Music Philharmonia + +1990571ZeddAnton Igorevich ZaslavskiAnton Zaslavski, better known by his stage name Zedd, (born 2 September 1989 in Saratov, Russian SFSR, Soviet Union), is a Russian-German record producer, DJ, musician and model. He primarily produces electro house music, but has diversified his genre and musical style, drawing influences from progressive house, dubstep, and classical music. Zed grew up and began his career in Kaiserslautern, Germany. + +The son of a guitarist (father) & a piano teacher (mother) he started playing classical music at age four & at twelve he started playing drums in a band with his brother. He taught himself how to produce electronic music in 2009. + +Zedd's best-known productions to date are the songs "Clarity" featuring Foxes which charted at number 8 on the Billboard Hot 100 and at number one of the US Hot Dance Club Songs; and "Break Free", a song which peaked at number 4 on the Billboard Hot 100 and number 1 on the Hot Dance/Electronic Songs, becoming his second song to do so before "I Want You to Know". Zedd won the Grammy award for Best Dance Recording at the 56th Grammy Awards for "Clarity".Correcthttp://www.zedd.nethttps://whatgear.com/pro/zeddhttp://www.facebook.com/Zeddhttp://instagram.com/zeddhttps://genius.com/artists/Zeddhttp://soundcloud.com/Zeddhttp://askzedd.tumblr.comhttp://twitter.com/Zeddhttp://www.youtube.com/ZEDDVEVOhttp://www.youtube.com/ZeddVideoshttp://equipboard.com/zeddhttps://en.wikipedia.org/wiki/Zeddhttps://www.facebook.com/architecturaldigest/videos/255637664837316/DJ ZeddゼッドAnton Zaslavski + +1990693Golden Gate OrchestraThe California RamblersGolden Gate Orchestra was a pseudonym for [a708256]. The Ramblers were mostly a studio outfit and for almost ten years (~1921-1931) they recorded for practically every company, although by about half of them they were labeled "Golden Gate Orchestra". Needs Votehttp://redhotjazz.com/caramblers.html California RamblersGolden Gate Dance OrchestraGolden Gate OrchGolden Gate Orch.Golden Gate Orchestra New YorkPalace Garden OrchestraThe Golden Gate OrchestraHal Kemp And His OrchestraCalifornia RamblersFred Rich And His OrchestraThe BostoniansBroadway NitelitesBen Selvin & His OrchestraEddie Thomas' CollegiansCloverdale Country Club OrchestraTed Wallace & His OrchestraThe HarmoniansJoseph Samuels' Jazz BandLou Gold And His OrchestraMills Musical ClownsEd Parker And His OrchestraCarolina Club OrchestraThe Columbia Photo PlayersFrisco SyncopatorsEd Loyd & His OrchestraWally Edwards & His OrchestraUniversity SixBroadway Music MastersErnie Golden And His OrchestraBuddy Campbell & His OrchestraSam Lanin & His OrchestraNathan Glantz And His OrchestraDale's Dance OrchestraJack Pettis And His BandThe Columbians (3)Dick Cherwin & His OrchestraBaltimore Society OrchestraLa Palina BroadcastersChicago RedheadsHarry Barth's MississippiansJoseph Samuels' OrchestraJack Marshall's OrchestraClub Wigwam OrchestraMoana OrchestraLouis Katzman's Dance OrchestraDan Crawford's SyncopatorsBob Willard's OrchestraGeorgia Moonlight SerenadersLloyd Hall And His OrchestraBuddy Fields And His OrchestraLouis Katzman And His OrchestraBrown's Dixieland OrchestraParamount Novelty OrchestraParamount Jazz Band (2)Jazzazza Jazz BandCarolina CollegiansTed Raph And His OrchestraAl Epps & His Hotel Astor OrchestraLos Toreros MúsicosJoe Ryan & His OrchestraThe Broadway StrollersAl Dollar & His Ten CentsCliff Roberts' Dance OrchestraOstend Society OrchestraBobby Davis (4) + +1990920Anders RobertsonSwedish classical cellistNeeds Votehttps://www.linkedin.com/in/anders-robertson-761894120/?originalSubdomain=sehttps://www.imdb.com/name/nm8431142/Anders RobertssonGöteborgs SymfonikerGothenburg Quartet + +1990921Maria NybergSwedish classical pianistNeeds VoteGöteborgs Symfoniker + +1990922Magnus LundénSwedish classical violistNeeds VoteGöteborgs Symfoniker + +1991202Sophie Arbenz-BraunsteinClassical violinistNeeds VoteSophie ArbenzCamerata Bern + +1991203Martin HumpertClassical bass instrumentalistNeeds VoteCamerata Bern + +1991204Rose-Marie van WijnkoopClassical string instrumentalistNeeds VoteRosemarie van WijnkoopCamerata Bern + +1991205Elisabeth HäuslerSwiss classical violinistNeeds VoteCamerata Bern + +1991442Cappy LewisCarroll Lewis.US jazz trumpeter from the swing-era. Played with : Woody Herman, Glen Gray, Ben Webster, Tommy Dorsey, Nelson Riddle, Ella Fitzgerald, Louis Armstrong and others. Father of [a2449227]. Born: May 18, 1917 in Brillion, Wisconsin. Died: November 23, 1991 in Los Angeles.Needs Vote"Cappy" LewisCappyCapy LewisCarol LewisCaroll "Cappy" LewisCaroll LewisCarrol LewisCarroll "Cappy" LewisCarroll 'Cappy' LewisCarroll LewisLewisLewis CarrollCarroll LewisWoody Herman And His OrchestraPete Rugolo OrchestraWoody Herman & The HerdWoody Herman And His WoodchoppersThe Frankie Capp Percussion GroupBob Florence Big BandThe Band That Plays The Blues + +1991447Ann MonningtonClassical violinist, baroque violinist and viola player with a passion for teaching and inspiring young people of all abilities to flourish musically.Needs Votehttps://wells.cathedral.school/staff/ann-monnington-violin/Ann MoningtonAnne MonningtonLes Arts FlorissantsCollegium Musicum 90London Classical PlayersTaverner PlayersThe Consort Of MusickeGabrieli PlayersHanover Band + +1991448Mari GiskeClassical viola player. Needs VoteThe English Baroque SoloistsKringkastingsorkestretTrønderkvartetten + +1991449Stephen BullViolinist and conductor.Needs Votehttps://twitter.com/stephenportugalThe Academy Of Ancient MusicCollegium Musicum 90Raglan Baroque PlayersThe English Concert + +1991900Edward PalankerEdward S. PalankerAmerican classical clarinetistNeeds Votehttps://www.eddiesclarinet.com/Baltimore Symphony Orchestra + +1992194Harry SheppardAmerican jazz drummer and vibraphonist. Sheppard attended Berklee College Of Music and was based in New York from the 1950s to the mid-1980s. He then moved to Houston, Texas and was based there from 1985 onwards. + +Born: 1 April 1928 in Worcester, Massachusetts. +Died: 27 December 2022 in Houston, Texas. Needs Votehttps://en.wikipedia.org/wiki/Harry_Sheppard_(musician)https://www.imdb.com/name/nm3456097/Harry ShepherdSheppardBenny Goodman And His OrchestraMike Bryan And His SextetThe Harry Sheppard GroupColeman Hawkins & Friends + +1993323John Smith (35)American bassistNeeds VoteSmithHarry James And His OrchestraHarry James & His Music Makers + +1993780Joe Venuti And His Blue SixAmerican, New York based Jazz ensemble formed by violinist Joe Venuti in the 1920's and 1930's. Depending on the number of musicians, who performed with Venuti, also [a334068] and [a3728489] are known. Together with Eddie Lang, there were also the ensembles [a3193223] and [a374503].Needs VoteJoe Venuti & His Blue SixJoe Venuti Blue SixJoe Venuti's Blue SixBenny GoodmanJoe VenutiBud FreemanAdrian RolliniJoe SullivanNeil Marshall (3) + +1993887Armin KaufmannAustrian violinist and composer, born in 1902 and died 30 June 1980 in Vienna, Austria. He was the uncle of [a214131].CorrectArmin KauffmannKaufmannWiener Symphoniker + +1993951Daniel BachelerDaniel BachelerDaniel Bacheler, also variously spelt Bachiler, Batchiler or Batchelar (baptized 16 March 1572 – buried 29 January 1619) was an English lutenist and composer.Needs Votehttps://en.wikipedia.org/wiki/Daniel_BachelerBachelarBachelar, DanielBachelerBatchelarD. BachelarD. BatchelarDaniel BachelarDaniel BachelorDaniel BachilerDaniel BatchelarDaniel BatchelerDaniell BachilerDanyell Batchelar + +1994790Pierre SimonBorn March 12, 1922 in Carpentras (Provence-Alps-French Riviera, France), died August 25, 2003 in Mazan (Provence-Alps-French Riviera, France), was a french classical violinist, from a family of renowned composers and musicians from Provence, 1st Prize of the Paris Conservatory in violin and chamber music in 1943, playing in particular within the [a703271] and the [a744724]. +Needs Votehttps://fr.wikipedia.org/wiki/Jean_Simon_(compositeur)P. SimonOrchestre De La Société Des Concerts Du ConservatoireOrchestre De Paris + +1994933Charles Griffin (2)American violist.CorrectThe Philadelphia Orchestra + +1995109Melina MandozziClassical violinist, born in Locarno, Switzerland.Needs Votehttp://www.melinamandozzi.com/Bergen Filharmoniske OrkesterThomas Christian Ensemble + +1995963Ted KlagesComposer, violinist and arranger. Born Jan. 24, 1911 in Los Angeles, California, USA. +His most famous composition was "The Lip" performed by Louis Prima.Needs VoteKlagesT KlagesT. KlagesTheodore KlagesArtie Shaw And His Orchestra + +1996153Paul NeubauerClassical viola player, was the youngest principal player for the New York Philharmonic at 21 years of age, and currently teaches at the Juilliard School, and Mannes College The New School for Music.Needs Votehttp://www.musicweb.rutgers.edu/info/fac-bio/neubauer.htmNeubauerNew York PhilharmonicThe Chamber Music Society Of Lincoln CenterChamber Music NorthwestSeattle Chamber Music Society + +1996396Art PirieAmerican jazz saxophonist.Needs VoteAndie PirieWoody Herman And His OrchestraThe Nat Pierce OrchestraWoody Herman And His Third Herd + +1996398Israel DornIsrael Jerome DornAmerican jazz trombonist, died May 21, 2012, at the age of 90, in Philadelphia.Needs VoteJerry DornWoody Herman And His OrchestraWoody Herman And His Third Herd + +1996401Herb RandelAmerican jazz trombonist.Needs Votehttps://www.allmusic.com/artist/herb-randel-mn0001706633Woody Herman And His OrchestraWoody Herman And His Third Herd + +1996420Charley HenryAmerican jazz trombonist.Needs VoteCharles HenryCharlie HenryWoody Herman And His OrchestraRalph Flanagan And His OrchestraWoody Herman SextetWoody Herman And The Fourth Herd + +1996512Larry ShunkAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdThe Woody Herman Big BandWoody Herman And The Thundering Herd + +1996513George RabbaiAmerican jazz trumpeterNeeds VoteGeorge RabbiWoody Herman And His OrchestraThe Woody Herman Big BandThe Al Raymond Big BandRick Lawn's Power Of TenThe Len Pierro Jazz OrchestraMusical Munchkins + +1996514Gene Smith (3)American trombone player. Needs VoteWoody Herman And His OrchestraThe Woody Herman Big BandThe Maritime Jazz OrchestraWoody Herman And The Thundering HerdDavid Braid Sextet + +1996515Randy RussellAmerican jazz tenor saxophonist.Needs VoteWoody Herman And His OrchestraThe Woody Herman Big Band + +1996516Scott WagstaffAmerican trumpet playerNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandThe Northern Illinois University Jazz EnsembleRob Parton's Jazztech Big BandWoody Herman And The Thundering Herd + +1996759Ron PaleyRonald Frank PaleyCanadian composer, arranger, pianist and bass guitarist, born 20 November 1950 in Winnipeg, Canada. + +For the Canadian musician, engineer, producer and co-owner of [l=Century 21 Studios] see [a=Ron Paley (3)].Needs Votehttps://www.ronpaley.com/https://www.thecanadianencyclopedia.ca/en/article/ron-paley-emchttps://en.wikipedia.org/wiki/Ron_PaleyWoody Herman And His OrchestraWoody Herman And The Thundering HerdThe Ron Paley Big Band + +1997527Emma ShollAustralian classical flutist.Needs Votehttp://www.sydneysymphony.com/about-us/meet-the-musicians/woodwind/flutes/emma-sholl.aspxSydney Symphony OrchestraAustralian Chamber Orchestra + +1997892Teddy WilliamsUS country blues guitarist, vocalistNeeds VoteT. Williams + +1998201Peter ReeveClassical trumpeter, arranger, and Professor of Trumpet. Died in September 2006. +After study at the [l290263] he joined the [a=Orchestra Of The Royal Opera House, Covent Garden], where he spent the next eleven years. On leaving the ROH, he played with the [a=Philharmonia Orchestra], the [a=English Chamber Orchestra], [a=The English Opera Group] and the [a=Philip Jones Brass Ensemble], whose repertoire included a number of his arrangements. In 1980, he returned to the ROH where he stayed until his retirement from professional playing in 1996. He was a Professor of Trumpet at the Royal College of Music. He lived in Berwick-upon-Tweed where he continued to arrange music for brass and was Brass Coach to the [b]Scottish Borders Community Orchestra[/b] and ran the [b]Borders Brass Ensemble[/b].Needs Votehttps://open.spotify.com/artist/0Wqiu3kmsCzTofx71Wt4Rqhttps://www.brasswindpublications.co.uk/acatalog/Reeve.htmlP. ReeseP. ReevePeter ReevesReeveEnglish Chamber OrchestraPhilharmonia OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenThe English Opera GroupWestminster Brass Ensemble + +1998409Willard Robison & His OrchestraNeeds VoteHollywood Dance OrchestraOrch. W. RobisonOrchestre S. RobisonWestern SerenadersWillard Robinson And His OrchestraWillard Robison & His Deep River OrchestraWillard Robison And His Deep River OrchestraWillard Robison And His OrchestraWillard Robison Orch.Willard Robison OrchestraMiami Royal Palm OrchestraWalter Johnson And His OrchestraWalter Remsen And His OrchestraWillard RobisonBix BeiderbeckeFrank SignorelliEddie LangDon Murray (2)Frankie TrumbauerVic BertonWalter HolzhausJohn Jarman (2) + +1998411The Chicago LoopersNeeds Major Changes(The Chicago Loopers)Chicago LoopersBix BeiderbeckeFrank SignorelliEddie LangDon Murray (2)Frankie TrumbauerVic Berton + +1998774Joanna KurkowiczPolish classical violinist, born in Lublin.Correcthttp://www.joannakurkowicz.com/Orpheus Chamber OrchestraBoston Modern Orchestra ProjectBoston Philharmonic Orchestra + +1998852Lewis LipnickAmerican bassoonist and contrabassoonist.CorrectNational Symphony Orchestra + +1998950Giuseppe CampanariItalian-born operatic baritone and cellist (17 November, 1855 – 31 May, 1927), he later became an American citizen.Needs Votehttp://en.wikipedia.org/wiki/Giuseppe_Campanarihttps://adp.library.ucsb.edu/names/110344CampanariG. CampanariBoston Symphony Orchestra + +1999169Cécile PeyrolFrench violinist, born in 1979 in Grenoble, France.Needs Votehttps://www.facebook.com/cecile.peyrolleleuCécile Peyrol-LeleuOrchestre Philharmonique De Radio France + +1999262Michael LannerBenny de WeilleGerman orchestra leader and conductor. +Michael Lanner is a pseudonym used by [a690124] since 1949.Needs VoteM. LannerMichael Lanner En Zijn SolistenBenny de WeilleMichael Lanner Mit Seinen Wiener Walzer-SolistenGroßes Blasorchester "Grüne Jäger"Michael Lanner And His Orchestra + +1999314Steven WitserAmerican trombonist, born 22 August 1960 in Oakland, California and died 27 April 2009 of an apparent heart attack.Needs VoteSteve WitserThe Cleveland OrchestraLos Angeles Philharmonic OrchestraBay Bones Trombone Choir + +1999323Mark LuskJazz trombonist and educator (Penn State)Needs VoteMark L. LuskWoody Herman And His OrchestraThe Woody Herman Big BandThe Woody Herman Orchestra + +1999388Thomas HajekAustrian violist, born 18 July 1974 in Mödling, Austria.CorrectOrchester Der Wiener StaatsoperWiener Philharmoniker + +1999392Claire DolbyClaire Nyqvist née DolbyBritish violinist and singer, born 1974 in London, England.Needs VoteWiener SymphonikerCamerata Academica Salzburg + +1999758Hans Joachim ZingelGerman classical harp player and musicologist (21.11.1904 - 16.11.1978), he was teacher at the Musikhochschule in Köln since 1947.Needs VoteDr. Hans-J. ZingelHans J. ZingelHans S. ZingelOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerSchola Cantorum Basiliensis + +2000011Carl Perkins (4)American jazz pianist. +Born : August 16, 1928 in Indianapolis, Indiana. +Died : March 17, 1958 in Los Angeles, California. + +During his short career (he died at the age of 29 years from a drug overdose), Carl Perkins played with Curtis Counce, Harold Land, Jack Sheldon, Oscar Moore, Frank Butler, Clifford Brown, Max Roach, Frank Morgan, Chet Baker, Dizzy Gillespie, and Dexter Gordon, among others. His only album as a leader, "Introducing Carl Perkins," was released in 1956.Needs Votehttp://en.wikipedia.org/wiki/Carl_Perkins_%28pianist%29C. PerkinsPerkinsPerrkinsIllinois Jacquet And His OrchestraHerbie Mann QuartetArt Pepper QuartetHarold Land QuintetJim Hall TrioPepper Adams QuintetLeroy Vinnegar SextetDexter Gordon QuartetThe Curtis Counce GroupThe Richie Kamuca QuartetBuddy DeFranco And His OrchestraThe Curtis Counce QuintetLeroy Vinnegar QuartetThe Oscar Moore TrioThe Chet Baker-Art Pepper SextetThe Oscar Moore QuartetBuddy DeFranco And The All-StarsIllinois Jacquet QuintetThe Carl Perkins TrioThe Modern Jazz Octet + +2000184Hannes KotheClassical trumpeter.Needs VoteAkademie Für Alte Musik BerlinMusica Antiqua KölnConcerto KölnFreiburger BarockorchesterLa StagioneCantus CöllnMusica Fiata + +2000309Ferdinand SvatekAustrian violinist.Needs VoteProf. Ferdinand SvatekVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus Wien + +2000310Gerhard BräuerClassical violinistNeeds VoteConcentus Musicus Wien + +2000311Firmin PirkerFirmin Pirker (1933 — 2013) was an Austrian double bassist and violone player.Needs VoteFirmin PirkenWiener SymphonikerConcentus Musicus Wien + +2000581Borika Van Den BoorenBorika van den Booren-BayonDutch violinist.Needs VoteConcertgebouworkest + +2000621Paul GrümmerGerman cellist (* 26 February 1879 in Gera, German Empire; † 30 October 1965 in Zug, Switzerland).Needs Votehttps://de.wikipedia.org/wiki/Paul_Gr%C3%BCmmerhttps://www.mgg-online.com/article?id=mgg05706&v=1.0&rs=mgg05706Paul GrummerProf. Paul GrümmerProfessor Paul GrümmerThe Busch QuartetStross-QuartettTonhalle-Orchester Zürich + +2000859Harald MatjacicAustrian trombonist, born 1971 in Graz, Austria.Needs VoteRadio-Sinfonieorchester StuttgartWiener VolksopernorchesterBrass PartoutDüsseldorfer SymphonikerSWR Symphonieorchester + +2000861Jörg BrücknerJörg Brückner (born 1971 in Leipzig, GDR) is a German horn player and Professor of horn at the [l1199687].Needs VoteMünchner PhilharmonikerGewandhausorchester LeipzigDresdner PhilharmonieBrass Partout + +2000862Tobias Unger (2)German trombonist.CorrectRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterBrass PartoutBundesjugendorchester + +2000864Andreas KleinGerman trombonist.CorrectA. KleinDeutsches Symphonie-Orchester BerlinMahler Chamber OrchestraOrchester der Bayreuther FestspieleBrass PartoutBundesjugendorchesterDüsseldorfer Symphoniker + +2000865Julius RönnebeckGerman horn player, born 1971 in Stuttgart, Germany.CorrectStaatskapelle DresdenBrass PartoutGustav Mahler JugendorchesterBundesjugendorchester + +2000867Alexander Von PuttkamerGerman classical tubist, born 11 February 1973 in Düsseldorf, Germany.Needs Votehttp://www.berliner-philharmoniker.de/en/orchestra/musician/alexander-von-puttkamer/Ensemble ModernBerliner PhilharmonikerBayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleEuropean Union Youth OrchestraBrass PartoutNDR SinfonieorchesterBundesjugendorchesterBrass Quintet MünchenWien-Berlin Brass Quintet + +2001084Izumi SatohClassical viola player.Needs VoteIzumi SatoLa Petite Bande + +2001153Alexander JoblokovClassical violinistNeeds VoteAlexander JablokovJablokovCapella Istropolitana + +2001154Ewald DanelClassical violinist and conductorNeeds VoteCapella IstropolitanaSlovak Philharmonic Orchestra + +2001160Hermann SauterGerman classical trumpeter and horn player.Needs Votehttps://www.sonic.de/index.php?eID=dumpFile&t=f&f=5922&token=30039f0662502e3bfba039b48c3d5d1c0f59ea4eHerman SauterHermann SauerBachcollegium StuttgartSüdwestdeutsches KammerorchesterJunge Süddeutsche PhilharmonieTrompetenensemble Hermann SauterSchwäbisches Blechbläser-Ensemble + +2001162Heiner SchatzClassical trumpeter & hornistNeeds VoteBachcollegium StuttgartSüdwestdeutsches Kammerorchester + +2001447Ariane SpiegelClassical cellist.Needs VoteA. SpiegelMusica Antiqua KölnConcerto KölnMusica Baltica + +2001448Barbara FerraraClassical oboist.CorrectConcerto Köln + +2001624Håvard NorangNorwegian oboist and cor anglais player.Needs VoteHavard NorangHåvard NordangOslo Filharmoniske Orkester + +2002688Dany BonvinSwiss trombonist, born 1964 in Crans-Montana, Switzerland.Needs VoteBonvin DanyMünchner PhilharmonikerBlechschadenQuatuor De Cuivres De FribourgMünchner Posaunen Quartett + +2002940Nederlands KamerkoorThe Nederlands Kamerkoor (Netherlands Chamber Choir), founded by [a1283928] in 1937, is an independent professional vocal ensemble which concentrates on a cappella repertoire from the early Middle Ages until the present day.Needs Votehttps://www.nederlandskamerkoor.nl/https://www.facebook.com/nederlandskamerkoorhttps://x.com/ned_kamerkoorhttps://www.instagram.com/ned_kamerkoor/https://www.youtube.com/user/NederlandsKamerkoorChœur De Chambre De HollandeChœur De Chambre Des Pays-BasDer Niederl. KammerchorDer Niederlandische KammerchorDer Niederländische KammerchorDutch Chamber ChoirHet Nederlands KamerkoorHet Nederlandse KamerkoorHor Holandske OpereMembers Of The Dutch Chamber ChoirMembers Of The Netherlands Chamber ChoirMitglieder Des Niederländischen Kammerchors = Members Of The Netherlands Chamber ChoirNederl. KammerkoorNederland Chamber ChoirNederland KamerkoorNederlands Chamber ChoirNederlands KamerkorNederlands KammerchorNetherlands Chamber ChoirNiederländischer KammerchorNiederländisches KammerchorThe Netherlands Chamber ChoirThe Netherlands ChamberchoirThe Netherlands ChoirWilliam KnightKarin Van Der PoelClaron McFaddenYvonne BenschopBarbara BordenTannie WillemstijnAnanda GoudManon HeijneKathrin PfeifferHarry Van BerneHarry van der KampWim van GervenCatherine PatriaszMartin Van Der ZeijstHans WijersBas RamselaarStephen LaytonAd van BaasbankHeleen KoeleFrank HameleersKees Jan De KoningAdinda De NijsFelix De NobelPeter DijkstraLodewijk MeeuwsenMichiel Ten Houte De LangeGaudia GeijsenMarcel BeekmanMarjon StrijkMenno Van SlootenCaroline De JonghNine Van StrienMyra KroeseMarc Van HeterenMatthew BakerAlbert Van Ommen (2)Stefan BerghammerHugo Oliveira (2)Klaas StokAsa OlssonRobert CoupeDavid BarickJasper SchweppeAlberto Ter DoestBruce SellersHans PootjesFanny AlofsElsbeth GerritsenHeleen ResoortAnnet LansMarleene GoldsteinRita DamsGilad NezerLenie van den HeuvelJelle DraijerJetse BremerErica GrefeHenk VelsJosé CandelReina BoelensHelena WiklundMercedes LarioMichael MantajDorien LieversJoão Moreira (8)Maria Chiara GalloAnnemieke van der PloegPetra EhrismannMattijs HoogendijkRobbert MuuseMayke SuurmondHeleen RosoortJoep van GeffenSusanne MironEmilio Aguilar (2)Mariët KaasschieterTanja ObalskiClara MesdagMieke van LarenElisabeth BlomMónica MonteiroFlorian JustVarvara TishinaAndré Cruz (4)Elma DekkerEline WelleFranske Van Der WielBobbie BlommesteijnElise Van Es + +2003498Costanzo FestaCostanzo Festa (ca. 1485–1490 – 10 April 1545) was an Italian composer of the Renaissance.Needs Votehttps://en.wikipedia.org/wiki/Costanzo_FestaC. FestaConstantius FestaConstanzo FestaFesta + +2003566Wolfgang TomböckWolfgang Tomböck sen.Wolfgang Tomböck (16 May 1932 in Mödling, Austria - 14 June 2013 in Vienna, Austria) was an Austrian horn player. A member of the [a754974] from 1955 to 1993. +He's the father of [a8340543] and the grandfather of [a3402690].Needs VoteWolfgang TombockOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener KammerensembleThe Boskovsky EnsembleWiener Oktett + +2003567Josef NiedermayrAustrian flutist, born in 1900 and died in 1962. He was the father of [a1553961]. +CorrectJosef NeidermayerJosef NiedermayerJoseph NiedermayrNiedermayerOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Boskovsky Ensemble + +2003568Otto RühmAustrian classical double bassist (contrabassist). He was the father of [a211155].Needs VoteOtto RuehmOtto RuhmOtto RühnOrchester Der Wiener StaatsoperWiener PhilharmonikerBarylli String EnsembleThe Boskovsky EnsembleKammerorchester Der Wiener KonzertvereinigungChamber Orchestra of the Vienna State Opera + +2003569Otto NitschAustrian horn player. Was a member of the [a754974] until 1971.Needs VoteWiener PhilharmonikerThe Boskovsky EnsembleWiener Oktett + +2003572Rudolf JettelRudolf Jettel ( 21 March 1903 - 23 November 1981) was an Austrian clarinetist and composer.Needs VoteJettelWiener PhilharmonikerThe Boskovsky Ensemble + +2003658Willi BauerGerman trumpeter. + +Musical training in Nürnberg; +formerly solo trumpet in the [a833686]; since 1962 solo trumpet in the Bavarian Radio Symphony ([a604396]), solo trumpet in the Festspielorchester Bayreuth. Needs VoteWilly BauerВилли БауэрSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerMünchener Bach-OrchesterResidenz Kammerorchester MünchenBläserensemble Des Münchner MotettenchorsMünchner Blechbläsersolisten + +2003659Karl HertelClassical trumpet player. + +Musical training at the Munich Academy of Music; +formerly member of the Munich Philharmonic; +since 1948 member of the Bavarian Radio Symphony.Needs VoteКарл ХертельSymphonie-Orchester Des Bayerischen RundfunksMünchner Blechbläsersolisten + +2003660Karl BobzienKarl Bobzien was a classical flautist. He passed away in August 1979.Needs VoteКарл БобцинSymphonie-Orchester Des Bayerischen Rundfunks + +2003661Karl BenzingerClassical trumpeter. [b]For the contemporary classical timpanist and percussionist, use [a2788083][/b].CorrectКарл БенцингерSymphonie-Orchester Des Bayerischen Rundfunks + +2003663Willi KneißlGerman classical wind instrumentalistNeeds VoteWilhelm KneisslWilli KneisslВилли КнайзльSymphonie-Orchester Des Bayerischen Rundfunks + +2003664Gerhard SeitzGerman classical violinistNeeds VoteГерхард ЗайтцSymphonie-Orchester Des Bayerischen RundfunksOrchestre Pro Arte De Munich + +2003851Els VreugdenhilDutch clarinet playerNeeds VoteEls VreugdenhillNederlands Blazers EnsembleNieuw Sinfonietta AmsterdamBeaufort Kwintet + +2003852Marieke StordiauDutch bassoonist.Needs Votehttps://www.mariekestordiau.nl/Nederlands Blazers EnsembleRotterdams Philharmonisch OrkestHexagon EnsembleLudwig Orchestra + +2003883Robin KennardClassical bassoonist.Needs VoteThe Academy Of St. Martin-in-the-FieldsNorthern SinfoniaThe Albion EnsembleRobert Farnon And His Orchestra + +2003884Victoria Wood (2)Oboe and cor anglais classical player.Correcthttps://www.imdb.com/title/tt0273738/characters/nm1668876Vicki WoodVicky WoodPhilharmonia OrchestraThe Albion Ensemble + +2003950Chuck EtterJazz trombonist.Needs VoteCharlie EtterClaude Thornhill And His OrchestraFlip Phillips And His Orchestra + +2004617Sam MiddlemanAmerican violinistNeeds VoteSam MiddlemannHarry James And His OrchestraFrank Sinatra And His OrchestraBenny Goodman With Strings + +2004632Emil BrianoEmil F. BrianoAmerican violinist and viola player. +Born May 6, 1912 California Died June, 1977 (65 years old).Needs VoteEmil F. BrianoEmile BrianoHarry James And His OrchestraGeorge Liberace And His OrchestraGeorge Hamilton And His Music Box Music + +2004633Bruce Hudson (2)Trumpet playerNeeds VoteEddie Miller And His OrchestraGordon Jenkins And His OrchestraDave Barduhn Big Band + +2004637Charles GriffardAmerican trumpet playerCorrectCharles E. GriffardCharles GiffordCharles GriffordCharlie GriffardCharlie GriffordChas. E. GriffardChas. GriffardWingy Manone & His OrchestraEddie Miller And His OrchestraGordon Jenkins And His Orchestra + +2004650Avron TwerdowskyAvron Twerdowsky (2 July 1915 - May 1978) was an American cellist.Needs VoteA. TwerdowskyBoston Symphony OrchestraThe Kroll Quartet + +2005706Hans Schmidt (3)East German classical trumpeter.Needs VoteRundfunk-Sinfonieorchester Berlin + +2006098Kenji TamiyaJapanese classical trumpeterCorrectKurpfälzisches Kammerorchester MannheimTen Of The Best + +2006099Otto SauterClassical trumpeter, born 23 June 1961 in Tengen, Germany.Correcthttp://www.ottosauter.com/Kurpfälzisches Kammerorchester MannheimTen Of The Best + +2006100Franz WagnermeyerFranz WagnermeyerClassical trumpeter, born in 1962.Correcthttps://www.bach-cantatas.com/Bio/Wagnermeyer-Franz.htmKurpfälzisches Kammerorchester MannheimJuvavum-BrassTen Of The Best + +2006224Port Of Harlem JazzmenNeeds Major ChangesPort Of Harlem Jazz MenPort Of Harlem SixThe Port Of Harlem JazzmenJohnny WilliamsSidney BechetJ.C. HigginbothamFrank NewtonTeddy BunnAlbert AmmonsSidney CatlettMeade "Lux" Lewis + +2006391James Miller (6)Trombone, tuba and bass trumpet playerNeeds Votehttp://www.jamestmiller.net/live/James MillerJim MillerLos Angeles Philharmonic OrchestraWest Chester State College "Golden Rams" Marching BandOrquesta De Jazz Y Salsa Alto Maiz + +2006949Li-Kuo ChangViola player, born in Shanghai, China. He came to the United States in 1979, and has been on the faculty of Northwestern University and Roosevelt University. He was a member of the [a837562] from 1988 to 2023.Needs VoteLi-Kou ChangChicago Symphony Orchestra + +2006950Stephen BalderstonAmerican cellist, he joined the DePaul School of Music faculty as String Coordinator and Professor of Cello after twenty years as an orchestra and chamber musician.Needs VoteSteve BalderstonSaint Louis Symphony OrchestraChicago Symphony OrchestraThe American Chamber Players + +2007130John Sharp (6)American cellist, born in 1961.Needs VoteJohn SharpeCincinnati Symphony OrchestraChicago Symphony Orchestra + +2007131Rubén González (2)Rubén D'Artagnan GonzálezRubén D’Artagnan González (4 May 1939 in Viale, Argentina - 13 August 2018) was an Argentine violinist, conductor and composer, +He was the winner of the First Prize in Violin at the International Competition of Barcelona and the Silver Medal in Geneva, as well as the Diploma of honor of the Chigiana Academy of Siena, Italy, Concertmaster with the [a837562] from 1986 to 1996.Needs VoteRuben GonzalezChicago Symphony OrchestraHouston Symphony OrchestraMinnesota OrchestraNDR Sinfonieorchester + +2007797Hans BergerHans Berger (1907 - 1996) was an Austrian classical hornist. He was the father of [a4891420] and the uncle of [a2194402].Needs VoteGewandhausorchester LeipzigOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerStaatskapelle Berlin + +2008238Rolf GurraGerman musician and entertainer based in Berlin. A founding member of [a137219].CorrectGurraR. GurraRolly JokerBirth ControlSchöneberger SängerknabenNighttrain (2) + +2008464Anna HaaseSoprano / Mezzo Soprano vocalistNeeds Votehttps://annahaase.com/ + +2008697Frank De Groot (2)Frank de GrootDutch violinist and conductor.Needs Votehttps://nl.linkedin.com/in/frank-de-groot-05638783Nieuw Sinfonietta AmsterdamRotterdams Philharmonisch OrkestLeonardo TrioAitos TrioDoelenKwartet + +2009181Samuel GardnerAmerican composer and violinist, born 25 August 1891 in Russia and died 23 January 1984 in New York City, New York.Needs Votehttps://adp.library.ucsb.edu/names/110100GardnerSamuelChicago Symphony Orchestra + +2009204Jim StutzJazz bassistNeeds VoteJ. StutzJimmy StutzJoe StutzWoody Herman And His OrchestraBob Crosby And His OrchestraIke Carpenter And His OrchestraPete Daily's ChicagoansThe Tom Talbert Jazz OrchestraWoody Herman & The Second HerdMahlon Clark Sextette + +2009308Kai KöppClassical viola / viola d'amore player, musicologist (PhD), coach. Needs Votehttps://www.hkb.bfh.ch/de/hkb/ueber-uns/dozierende-und-mitarbeitende/?no_cache=1&tx_feuserlisting_pi1[showUid]=2610http://www.hkb-interpretation.ch/personen/mitarbeitende/koepp-kai.htmlhttp://musicexperiment21.eu/people/kai-kopp/Kai KoppConcerto KölnCappella ColoniensisNova StravaganzaDas Neue OrchesterDeutsche Händel-Solisten + +2009484Paola PoncetHarpsichordist.CorrectP. PoncetEuropa GalanteAuser Musici + +2009486Brunello GorlaClassical horn player.Needs VoteEuropa GalanteModo AntiquoIl QuartettoneVenice Baroque OrchestraAuser MusiciIl Complesso BaroccoNexus (46) + +2009487Marco ScorticatiClassical Recorder & Flute instrumentalistNeeds VoteEuropa GalanteEstro Cromatico + +2009489Patxi MonteroClassical Violone & Viola da Gamba player.Needs VoteEuropa GalanteIl Giardino ArmonicoAccademia Strumentale Italiana, VeronaMusica Alchemica + +2010002Frankie Jordan (2)Claude BenzaquenBorn July 19, 1938 in Oran, Algeria, died on June 3, 2025 in Neuilly-sur-Seine, France. +His family moved to Casablanca, Morocco where he developed a passion for jazz and blues. +In 1958, he sings and plays piano in the first part of [a164263] in Rabat, Morocco. +In autumn 1960, while continuing his studies to be a dentist, under the pseudonym Frankie Jordan he signed with [l5320], whose artistic director is [a360651], assisted by the conductor [a1406731]. +In January 1961, Frankie Jordan, influenced by [a309140], is one of the outsiders with their first single, « Tu Parles Trop », recorded December 5, 1960, despite the competition of [a309200], [a560865] and [a282489]. +February 24, 1961, Frankie makes a remarkable debut on stage with [a282489] and [a560865] at the first Rock'n'Roll Festival at the Palais des Sports in Paris, with [a217518], [a402157] and [a372974]. +A second single in March. +In June, Decca offers a third EP's on texts by [a593553] and Daniel Frank. A face presents an adaptation of « Mother in Law » by [a379732] under the title "Belle Maman". The other side is devoted to an original duo. Originally envisaged with the Englishwoman [a282599], following the latter's contract with [l3304], it is ultimately [a282391], sister of his bandleader [a1406731], who is chosen. +« Panne D'Essence » (Adaptation of « Out Of Gas ») proves to be one of the tubes of the summer 1961. +In July 1962, he graduated as a dentist whose examination was held away from the stage and studio. +During the summer of 1963, Frankie Jordan gave his last concert on the Côte d'Azur (France), before abandoning his singing career to devote himself to his profession as a dentist, while continuing to sing and play piano for his pleasure. +Needs Votehttps://fr.wikipedia.org/wiki/Frankie_Jordanhttps://en.wikipedia.org/wiki/Frankie_Jordanhttps://www.imdb.com/name/nm2686284/Daniel FrankF. JordanFrancky JordanFrankieJordanFranklin (11) + +2010115Roger CarlssonSwedish classical percussionist, born 1957 in Borås. + +He studied percussion with Bo Holmstrand and Sture Olsson at the Gothenburg Academy of Music, and he then continued with Bent Lyllof in Copenhagen and at the Royal Academy of Music and the National Center for Orchestral Studies in London. He spent the 1982-83 season in New York studying with Elden C. Bailey at The Juilliard School of Music. He also participated in master classes in various places together with the best percussionists and pukists in the USA. + +As a soloist, Roger Carlsson has appeared with a number of Nordic symphony orchestras as well as on radio and television and participated in several disc recordings. He has toured Europe, the USA and Asia as a member of various chamber ensembles. A number of composers have written works for him.Needs VoteSveriges Radios SymfoniorkesterGöteborgs Symfoniker + +2010116Erik RisbergSwedish classical pianist, living in Gothenburg, born January 15, 1955 in Falun. + +He is the father of jazz guitarist [a=Susanna Risberg].Needs Votehttps://sv.wikipedia.org/wiki/Erik_RisbergGöteborgs Symfoniker + +2010234Barry UlanovAmerican writer, musician and journalist, born 10 April 1918, died 30 April 2000.CorrectBarry Ulanov's All Star Modern Jazz MusiciansBarry Ulanov And His All Star Metronome Jazzmen + +2010269David RinikerSwiss cellist, born in 1970. +He studied at first with Jean Paul Guéneux, and later in the concert classes of [a=Antonio Meneses] in Basel. He completed his skills in master-classes with [a=Arto Noras], [a=Boris Pergamenschikov], and [a=David Geringas]. + +He has also been the recipient of numerous distinctions both at home and abroad, for example at the "4e Tournoi Eurovision des Jeunes Musiciens", or at the European Youth Prize in Varna (Bulgaria). Riniker has been member of the [a=Berliner Philharmoniker] since 1995, and has played with various celebrated chamber music combinations.Needs Votehttps://www.bach-cantatas.com/Bio/Riniker-David.htmhttps://de.wikipedia.org/wiki/David_Rinikerダヴィッド・リニカーBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerEnsemble Für Neue Musik ZürichPhilharmonisches Streichtrio, BerlinFeininger Trio + +2010398Anthony JenkinsClassical violistCorrectP.D.A. (2)The Academy Of St. Martin-in-the-Fields + +2010611Elisabeth KufferathClassical violin player, she is professor at the HMTM Hannover.Needs Votehttps://elisabethkufferath.de/en/Bamberger SymphonikerTetzlaff QuartettBundesjugendorchester + +2010698Thomas Albert (2)German conductor, violinist and music professor, born in Bremen, 1953.Needs Votehttp://www.bach-cantatas.com/Bio/Albert-Thomas.htmhttps://de.wikipedia.org/wiki/Thomas_AlbertLa Petite BandeBaroque OrchestraMusicalische CompagneyBerliner Ensemble Für Alte MusikFiori Musicali + +2010906Laura KernohanClassical violinist.CorrectBournemouth Symphony Orchestra + +2010943Icona PopSwedish dance and pop duo that was formed in 2009 by Aino Jawo and Caroline Hjelt who grew up in Stockholm. + +Icona Pop (/aɪˈkɑnə ˈpɑp/) makes pop music with features of house music and indie pop. + +They got a record contract in 2009. Their biggest hit is "I Love It", written by Patrik Berger, Linus Eklöw and Charlotte Aitchison (Charli XCX). During a period of work in London, they have received international attention with, among other things, the debut single "Manners". From September 2012, the duo had their base in Los Angeles and in New York, but since 2020 they are back in Sweden.Needs Votehttps://www.iconapop.comhttps://www.facebook.com/iconapophttps://twitter.com/iconapophttps://www.instagram.com/iconapophttps://www.threads.net/@iconapophttps://www.youtube.com/user/IconaPophttps://en.wikipedia.org/wiki/Icona_Pop愛卡娜女王Caroline HjeltAino Jawo + +2011083Al PellegriniPianist and clarinetist who commonly accompanied [a=Mel Tormé] in the middle of the 1950s.Needs Votehttps://www.allmusic.com/artist/al-pellegrini-mn0002004766/creditshttps://www.imdb.com/name/nm0670970/Al PelegriniAl PellagriniAl Pellegrini TrioAl PelligriniPellegriniHarry James And His OrchestraBilly May And His OrchestraAl Pellegrini Trio + +2012022Fred Jacobs (2)Lutenist and theorist. +(1961 – 28 August 2025)Needs Votehttps://nl.wikipedia.org/wiki/Fred_JacobsFred JacobsThe Parley Of InstrumentsMusica Ad RhenumGabrieli PlayersDe Nederlandse BachverenigingMusica AmphionOrchester Der J.S. Bach Stiftung + +2012044Harry BlomquistNeeds Major ChangesBlomquistH. BlomquistH. BlomqvistHarry BlomkvistHarry BlomqvistNordkvist + +2012099Daniel BenyaminiIsraeli violist (1925 - 1993).Needs VoteIsrael Philharmonic OrchestraThe Tel Aviv String Quartet + +2012355István BorzaClassical hornistNeeds VoteBorza IstvánIstvan BorzaLiszt Ferenc Chamber Orchestra + +2013454Kiera LynessClassical violinist and soprano vocalist.Needs VoteChorus Of The Royal Opera House, Covent GardenThe Holywell Ensemble + +2013781Haakon StotijnDutch oboe player, Den Haag, 11 February 1915 – Amsterdam, 2 November 1964.Needs VoteH. StotijnH.StotijnConcertgebouworkestNetherlands Chamber OrchestraAlma Musica + +2013782Jan BosClassical horn player.Needs VoteNetherlands Chamber Orchestra + +2014386Martha Greese VallonClassical cellist.Needs VoteMartha GieseMartha Giese-VallonMartha VallonLes Arts FlorissantsThe Amsterdam Baroque OrchestraLa Grande Ecurié Et La Chambre Du Roy + +2014556Costa PantazisΚόστα Πανταζής (Costa Pantazis)Hard Dance producer and remixer based in London, UK. Director, A&R and in-house producer for [l=Synedrion Music Group].Needs Votehttp://www.facebook.com/pages/Costa-Pantazis/161544120526527http://soundcloud.com/costapantazishttps://twitter.com/Costa_Pantazishttps://reverbnation.com/costapantazishttp://thedjlist.com/djs/COSTA_PANTAZIS/http://mixes.djfez.com/djs/costa-pantazis/C. PantazisC.PantazisThree PercentersVeneticaTempestariiAhriman RaLights Of SaratogaMademoiselle CharlotteBlockbuster (5)The Inheritors (3)Litchfield Project + +2014636Eric AubierFrench trumpeter (born 1960). + +Eric Aubier joined [a578734]'s class at the age of 14 at the [l435226] in 1974 and obtained 3 first prizes. Piano and harmony studies in the class of [a3772020] complete his training. He is a laureate of international competitions in Prague, Toulon and Paris. He is appointed soloist with the [a852709] at the age of 19 in 1979 by [a954916]. From 1995, he devoted himself to a career as an international concert performer and teacher. He is the director of the "Académie Internationale de Trompette du Grand Nord de la France" (=International Trumpet Academy of the Far North of the France). He is also the dedicatee of an international competition in Colombia and Rouen. Eric Aubier sits on the jury of several international competitions, and teaches at the "CRR de Rueil-Malmaison", at the [l527847]. He was also appointed professor at the [l1167197]. Since 2006, he has been recording exclusively for [l608944].Needs Votehttps://www.eric-aubier.com/https://en.wikipedia.org/wiki/%C3%89ric_AubierAubierOrchestre National De L'Opéra De Paris + +2015943Felix EyleAmerican violinist, born 1899 in Lvov, Ukraine and died 5 July 1988 in Hamilton, New York.Needs VoteF. EyleThe Cleveland OrchestraWiener PhilharmonikerBuxbaum String Quartet + +2016026Kristian OlesenDanish organist and chorus master, born 1952. +Organist of the Helsingør Domkirke (1978 to 1985) and [url=https://www.discogs.com/label/391171-Roskilde-Domkirke]Cathedral of Roskilde[/url] since 1985. Also chorus master of the Roskilde Cathedral choir.Needs VoteGabrieli PlayersTrinitatis Kammerorkester + +2016757Richard Lester (2)Richard LesterBritish classical cellist. Currently member of Chamber Orchestra of Europe. Formerly member of Florestan Trio, London Haydn Quartet, Hausmusik, Domus, Orchestra of the Age of Enlightenment. Guest with Vanbrugh Quartet, Nash Ensemble. Professor at Royal College of Music and Guildhall School in London. Artistic Co-director of Peasmarsh Chamber Music Festival +Needs Votehttp://www.peasmarshfestival.co.ukhttp://www.rcm.ac.uk/strings/professors/profilehttp://www.coeurope.org/the-orchestra/members-of-the-orchestra/members-biographieshttp://www.gsmd.ac.ukLesterThe Chamber Orchestra Of EuropeOrchestra Of The Age Of EnlightenmentDomus QuartettHausmusikGould Piano TrioThe London Haydn QuartetThe Florestan TrioHausmusik LondonBartolozzi Trio + +2016984Streicher der Münchner PhilharmonikerString ensemble, subset of [a261451]. + +See also [a3739448].Needs VoteDas Streicher-Ensemble Der Münchner PhilharmonikerEine Streichergruppe Der Münchner PhilharmonikerMembers Of the Munich Philharmonic OrchestraMunich Philharmonic Orchestra (String Section)Munich Philharmonics StringsMünchner PhilharmonikerStreicher Der Münchener PhilharmonikerStreicher Der Münchner PhilharmonieStreicher Von Den Münchener PhilharmonikernStreicher des Münchener Philharmonischen OrchestersStreicher-Ensemble Der Münchner PhilharmonikerStreicher-Ensemble der Münchner PhilharmonikerStreicher-Gruppe Der Münchner PhilharmonikerStreichergruppe Der Münchner PhilharmonikerStreichergruppe der Münchner PhilharmonikerString Ensemble Of The Munich Philharmonic OrchestraString Section Of The Munich Philarmonic OrchestraString Section Of The Munich Philharmonic OrchestraStrings Section of The Munich Philharmonic OrchestraMünchner Philharmoniker + +2018023Helga ThoeneGerman musicologist, string instrumentalist and liner notes author for classical releases.Needs Votehttp://www.helga-thoene.de/Prof. Helga ThoeneConsortium Musicum (2) + +2018025Monika MauchThe German soprano, Monika Mauch, studied singing with Richard Wistreich at the Institute for Early Music of Trossingen, GermanyNeeds Votehttp://www.bach-cantatas.com/Bio/Mauch-Monika.htmhttps://www.monika-mauch.deMauchMonica MauchThe Hilliard EnsembleRicercar ConsortCantus CöllnLa Capella DucaleLa ColombinaCantus ThuringiaAbendmusiken BaselMovimento (4)Ensemble Danguy + +2018109VeneticaCosta PantazisVenetica is a pseudonym used by hard dance producer [a=Costa Pantazis].Complete and Correcthttp://www.facebook.com/pages/Costa-Pantazis/161544120526527http://soundcloud.com/costapantazishttp://www.myspace.com/metamorphrecordings/?pm_cmp=navhttp://twitter.com/#!/MetamorphRechttp://www.youtube.com/user/MetamorphRecordingshttp://thedjlist.com/djs/COSTA_PANTAZIS/Costa PantazisThree PercentersTempestariiAhriman RaLights Of SaratogaMademoiselle CharlotteBlockbuster (5)The Inheritors (3)Litchfield Project + +2018307Dmitry KhokhlovДмитрий Дмитриевич ХохловDmitry Dmitrievich Khokhlov (born 16 February 1946 in Leningrad ) is a Soviet and Russian conductor . People's Artist of the Russian Federation (2007), artistic director and chief conductor of the [url=https://www.discogs.com/ru/artist/1574545]State Academic Russian Orchestra. V. V. Andreeva[/url], teaches conducting at the [l=St. Petersburg Conservatory] named after N. A. Rimsky-Korsakov .Correcthttps://ru.m.wikipedia.org/wiki/%D0%A5%D0%BE%D1%85%D0%BB%D0%BE%D0%B2,_%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%B8%D0%B9_%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%B8%D0%B5%D0%B2%D0%B8%D1%87Д. ХохловДмитрий ХохловРусский Народный Оркестр Имени В. Андреева + +2018323Georg KulenkampffAlwin Georg Kulenkampff-PostGerman violinist (* 23 January 1898 in Bremen, German Empire; † 04 October 1948 in Schaffhausen, Switzerland),Needs Votehttps://de.wikipedia.org/wiki/Georg_Kulenkampffhttps://www.deutsche-biographie.de/gnd116606827.html#ndbcontentG. KulenkampffKulenkampffProf. Georg KulenkampffProfessor Georg Kulenkampffゲオルグ・クーレンカンプBremer Philharmonisches Staatsorchester + +2018544Robert MorvaiRobert MorvaiGerman operatic tenor (born in Stuttgart, Germany - died 25 October 2011).Needs Votehttp://www.robert-morvai.de/Robert MorvajRóbert MorvaiLa Chapelle Rhénane + +2018625Richard Jones (22)classical treble vocalistNeeds VoteWestminster Cathedral Choir + +2018649Matt Thomas (11)Matthew ThomasNeeds Votehttp://www.facebook.com/mattshockforcedjM.ThomasAsteroid (8)Obsidian (29)Shock:Force + +2019055Morris KohnViolinist and violist.Needs VoteArtie Shaw And His Orchestra + +2019057Ben GinsbergBassist from the swing era.CorrectBen GinsburgArtie Shaw And His OrchestraArt Shaw And His New MusicArtie Shaw And His Strings + +2019059Les Clarke (2)Lester ClarkeJazz saxophonist in the forties.Needs VoteLes ClarkLester ClarkLester ClarkeBuddy Rich And His OrchestraArtie Shaw And His OrchestraBenny Goodman And His Orchestra + +2019062Truman BoardmanViolinistNeeds VoteT BoardmanT. BoardmanArtie Shaw And His Orchestra + +2019069Tom DiCarloJazz trumpet playerNeeds VoteTom Di CarloTom di CarloTommy DiCarloTommy DicarloTommy di CarloWoody Herman And His OrchestraGene Krupa And His OrchestraArtie Shaw And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdArt Shaw And His New Music + +2019070Bill EhrenkranzViolinist.Needs VoteBill EhernrantzBill EhrenkrantzBill EhrenktantzWEWillam Ehrenkrantz (WE)William EhrenhrantzWilliam EhrenkrantzWilliam EhrenkranzTommy Dorsey And His Orchestra + +2019071Fred Petry (2)Big band saxophonistNeeds VoteFred PetryArtie Shaw And His OrchestraArt Shaw And His New Music + +2019072Julius TannenbaumAmerican cellistCorrectJules TannenbaumHarry James And His Orchestra + +2019077Bob MorrowViolinistCorrectB MorrowB. MorrowArtie Shaw And His Orchestra + +2019080Ralph RosenlundAmerican jazz saxophonist of the swing era.Correcthttps://www.allmusic.com/artist/ralph-rosenlund-mn0001232406Ralph RoselandRalph RoselundRalph RosenlindArtie Shaw And His Orchestra + +2019081Malcolm CrainAmerican jazz trumpeter.Needs VoteMalcolm CraineWoody Herman And His OrchestraArt Shaw And His New MusicThe Band That Plays The Blues + +2019082Sid BrokawViolinist.Needs VoteSid BrokowSidney BrokowArtie Shaw And His OrchestraOzzie Nelson And His Orchestra + +2019160Joy FarrallClassical clarinetist.Needs Votehttps://www.brittensinfonia.com/who-we-are/people/joy-farrallLondon SinfoniettaBritten SinfoniaThe Daniel Trio + +2019689Philipp LangAustrian trumpet playerNeeds VoteMünchner PhilharmonikerOrchester Der Staatsoper HamburgMDR Sinfonieorchester + +2019698Elizabeth BakerAmerican violinist, prior to joining the Los Angeles Philharmonic Orchestra in 1987 she began her career as a member of the San Francisco Symphony Orchestra in 1977. She has been on the faculty at the California Institute of the Arts since 1993.Needs VoteSan Francisco SymphonyLos Angeles Philharmonic OrchestraXTET (2) + +2019771Joseph KoosHungarian-born classical cellist, based in the UK.Needs VoteJo KoosMr Joseph KoosMr. Joseph KoosBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +2019785Johnny HolshuysenJohan Hendrik HolshuysenAccordionist, conductor, arranger and composer Johan Hendrik (Johnny) Holshuysen (1922-2001) is better known under his stage name John Woodhouse.CorrectH. HolshuysenHolshuijsenHolshuysenHolshuyzenJ, HolshuysenJ. H. HolshuijsenJ. HolshijsenJ. HolshuijsenJ. HolshuizenJ. HolshuysenJ. HolshuyssenJ.H. HolshuijsenJ.H. HolshuysenJ.H.HolshuijsenJ.HolshuijsenJ.HolshuysenJo. HolshuysenJohan Hendrik HolshuysenJohn HolshuijsenJohnny HolshuijsenJohnny HolshuyzenJohn WoodhouseCharles LancasterH. HennessyRichard PinkletonJohn HuismanTijmen TegenwindMetropole OrchestraThe RamblersTrio Johnny HolshuysenOrkest o.l.v. Johnny HolshuysenJohn Woodhouse & His OrchestraThe Sem Nijveen QuartetDe Nederlandse AccordeonsterrenKwartet Johnny HolshuysenKoor o.l.v. Johnny Holshuysen + +2020261Eddie Bourne (2)Edward BourneAmerican jazz drummer.Needs VoteEd BourneEddie "Mole" BourneEddie "The Mole" BourneEddie BourneeEddy BourneEdward BourneSam Price TrioHenry "Red" Allen And His OrchestraThe Dave Rooney Trio + +2020570Raul Orellana (2)Raúl OrellanaRaúl Orellana (1978) is a classical violinist born in Chile.Needs VoteL'ArpeggiataVenice Baroque OrchestraAuser MusiciEnsemble ArtaserseIl Complesso BaroccoAcademia Montis RegalisLa Ritirata + +2020577Simone BensiClassical oboist.Needs VoteModo AntiquoIl Giardino ArmonicoAuser MusiciIl Complesso BaroccoEnsemble Dell'Accademia + +2020655Nathan BergCanadian bass-baritone vocalist. Born in Saskatchewan, Canada.Needs VoteBergLes Arts Florissants + +2020799François LazarevitchFrench woodwind instrumentalist and classical conductor.Needs Votehttps://www.facebook.com/francois.lazarevitch/https://myspace.com/francoislazarevitchhttps://www.bach-cantatas.com/Bio/Lazarevitch-Francois.htmFrançois LazarevicEnsemble MicrologusLes Musiciens De Saint-JulienBoston Early Music Festival OrchestraAliquandoLa Guilde Des Mercenaires + +2020806Mitzi MeyersonHarpsichordist.Needs VoteMitzy MeyersonSonnerieSmithsonian Chamber Orchestra + +2020834Sarah Fox (3)English operatic soprano, born 19 September 1973 in Giggleswick, North Yorkshire.Needs Votehttp://sfoxylady.comhttps://twitter.com/sfoxyladyfoxhttp://en.wikipedia.org/wiki/Sarah_Fox + +2021041Raymond WareAppears as executive-producer mainly for labels L'Oiseau-Lyre and DeccaCorrectRay Ware + +2021376Bernd GellermannGerman violinist and artistic director, born 20 May 1942 in Munich, Germany.Needs VoteBernd Gellermanベルント・ゲラーマンBerliner PhilharmonikerPhilharmonisches Oktett BerlinOrchester Des Staatstheaters Am GärtnerplatzBerliner Solisten (2) + +2021683Kasia ElsnerTheorbo, archlute and guitar player.Needs VoteCity Of London SinfoniaLes Arts FlorissantsRaglan Baroque PlayersMusica Secreta + +2021769James Carroll (4)James CarrollAmerican jazz saxophonist, on many releases and publications called 'Jim Carroll'. He is today professor of jazz studies at the George Mason University School of Music in Fairfax, Virginia.Needs VoteJim CarrollWoody Herman And His OrchestraThe Woody Herman Big BandThe Mike Tomaro Big BandThe Indiana Saxophone Quartet + +2021770Randall HawesAmerican bass trombone player. He was a member of the [a472036] from 1985 to 2020.Needs Votehttps://www.trombone.net/randall-hawes/Randy HawesWoody Herman And His OrchestraDetroit Symphony OrchestraThe Woody Herman Big Band + +2021981Herbert SolomonHerbert Jay SolomonFlautist Herbert Jay Solomon aka [a=Herbie Mann] (born April 16, 1930; died July 1, 2003) played a varied range of musical styles, including latin, jazz, reggae and disco. + +Herbie began getting involved with the newly emerging disco scene when he covered LTG Exchange's "Waterbed". It's a very funky instrumental with a great bassline. From this album he also covered "Hijack" by Barrabas. This became popular in the early disco scene in the UK and was one of the very first 12" promos ever pressed in Europe. + +Another disco recording was his cover of Celi Bee's "Superman" theme which peaked at #26 on the US Billboard charts. For this album Herbie worked with New York disco producer Patrick Adams and together they wrote the jazz-funk classic "Etagui". +Needs Votehttp://www.herbiemannmusic.com/http://www.jimnewsom.com/HerbieMann.htmlHerbie MannQuincy Jones' All Star Big BandThe Chet Baker QuintetHerbie Mann QuartetThe Manhattan Jazz SeptetteChet Baker SextetHerbie Mann's CaliforniansRalph Burns And His OrchestraThe Herbie Mann NonetThe Herbie Mann Afro-Jazz Sextet + Four TrumpetsThe Family Of MannJoe Puma SextetThe Buddy DeFranco SeptetteJohnny Rae's Afro-Jazz SeptetNew York QuartetThe Herbie Mann SextetHerbie Mann QuintetThe Herbie Mann-Sam Most QuintetNew York Jazz EnsembleHerbie Mann And The Carnival Band + +2022032Ruth CrouchBritish violinistCorrectScottish Chamber Orchestra + +2022047Thomas Martin (5)American born, Britain-based classical double-bassist, conductor, luthier, and teacher of double bass. Born 22 July 1940 in Cincinnati, Ohio, USA. +Tom has gone on to become one of the leading players on the double bass, holding leading positions with the [a=Buffalo Philharmonic Orchestra], [a=Israel Philharmonic Orchestra], and principal positions with the [a=Montreal CBC Symphony Orchestra], [a=The Academy of St. Martin-in-the-Fields], [a=English Chamber Orchestra], [a=City Of Birmingham Symphony Orchestra], and two periods with the [a=London Symphony Orchestra] (1972-1997) as Principal Double Bass. He conducted the [a=London Philharmonic Orchestra]. He has taught at [l305416] and the [l290263].Needs Votehttp://www.thomasmartin.co.uk/https://www.facebook.com/ThomasMartinSkypeLessons/https://open.spotify.com/artist/2kEtbjjWmfQuxjpXsAuHjZhttps://open.spotify.com/artist/6o1qiPJyqb6IXQAas6MHIKhttps://music.apple.com/us/artist/thomas-martin/292093https://music.apple.com/cl/artist/thomas-martin/292093?l=enhttps://music.apple.com/us/artist/tom-martin/1478448577https://en.wikipedia.org/wiki/Thomas_Martin_(musician)https://www.orchestraproanima.co.uk/members/thomas-martin/https://www.thestrad.com/double-bassists/double-bassist-thomas-martin-man-for-all-seasons/14032.articlehttps://web.archive.org/web/20120428071705/http://www.rsamd.ac.uk/staff/tmartin.htmlhttps://www.naxos.com/Bio/Person/Thomas_Martin_57238/57238Tom MartinTon MartinLondon Symphony OrchestraHenry Mancini And His OrchestraEnglish Chamber OrchestraCity Of Birmingham Symphony OrchestraBuffalo Philharmonic OrchestraThe Academy Of St. Martin-in-the-FieldsIsrael Philharmonic OrchestraThe London Double Bass SoundAcademy Of St. Martin-in-the-Fields Chamber EnsembleMontreal CBC Symphony Orchestra + +2022363Jiří BoušekJiří BoušekCzech classical flute player. Also educator. + +Husband of [a=Libuše Váchalová], father of [a=Jana Boušková]. Needs VoteJiří BousekThe Czech Philharmonic OrchestraPrague Smetana Theatre OrchestraFilmový Symfonický OrchestrCzech Nonet + +2022616Felix KokFelix Kok (born 1 August 1924, Brakpan, South Africa - died 11 August 2010) was a South African-born British violinist and orchestra leader. +He graduated from [l527847]. After graduating, he joined the [b]Blech Quartet[/b]. In 1947, with his brother the cellist [a=Alexander Kok], and pianist [a=Daphne Ibbott], he formed the [b]Beaufort Trio[/b]. He then joined the [a=Philharmonia Orchestra]. From 1959 he was leader of the [a835739]. He was the leader of the [a490279] from 1965 until his retirement in 1988. +Father of conductor [a726168].Needs Votehttps://en.wikipedia.org/wiki/Felix_Kokhttps://www.theguardian.com/music/2010/sep/26/felix-kok-obituary-violinist-cbsohttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/7947019/Felix-Kok.htmlhttps://www2.bfi.org.uk/films-tv-people/4ce2bc1344b4ePhilharmonia OrchestraCity Of Birmingham Symphony OrchestraBournemouth Symphony OrchestraLondon Baroque Ensemble + +2022913Bill Byrne (3)William E. Byrne, Jr.Jazz baritone saxophonist, born April 26, 1942 in Stamford, CT.Needs VoteBill ByrnBilly ByrneToshiko Akiyoshi-Lew Tabackin Big BandHarry James And His OrchestraLouie Bellson Big BandBill Berry And The LA BandFred Radke & His Swingin' Big Band + +2023151Floris MijndersFloris MijndersCello player, born in The Hague (the Netherlands) in 1966 +He studied at the Royal Conservatory in The Hague and was soloist with the [a=Nederlands Radio Symfonie Orkest] and [a=Rotterdams Philharmonisch Orkest]. +Needs Votehttp://nl.wikipedia.org/wiki/Floris_MijndersFloris MyndersMünchner PhilharmonikerRotterdams Philharmonisch OrkestNederlands Radio Symfonie OrkestHet Gelders OrkestEnsemble Caméléon + +2023394Václav JiráčekCzech conductor and pianist +Born 3 August 1920, Hradec Králové - died 24 November 1966, Bratislava (plane crash)Needs VoteJiráčekV. JiráčekVaclav JiracekVaclav JiračékВ. ИрачекВацлав ИрачекSlovak Radio Symphony Orchestra + +2023589Kim ParkLarry Kim ParkJazz saxophonist and flutist, based in Kansas City, Missouri, USA.Needs Votehttp://www.kimparkmusic.com/Stan Kenton And His OrchestraJim Widner Big BandFrank Mantooth Jazz OrchestraKansas City Jazztet + +2023923Sara BarringtonBritish classical oboistNeeds VoteSara BaringtonSarah BarringsonSarah BarringtonEnglish Chamber OrchestraMelos Ensemble Of London + +2023971Wen-Sinn YangClassical cellist, born 1965 in Bern, Switzerland of Taiwanese descent, professor in Munich, Germany.Needs Votehttp://www.wensinnyang.de/Sinn YangWen-Sin YangWen-Sinn TangWin-Sin YangSymphonie-Orchester Des Bayerischen RundfunksElissa Lee EnsembleDiogenes QuartettSpiller TrioRudens Turku Festival EnsemblePiano Trio Then-Bergh – Yang – Schäfer + +2023972Xavier de MaistreFrench harp player and teacher, born 22. October 1973 in Toulon.Needs Votehttp://www.xavierdemaistre.com/https://en.wikipedia.org/wiki/Xavier_de_Maistre_(harpist)De Maistrede MaistreSymphonie-Orchester Des Bayerischen RundfunksWiener Philharmoniker + +2023973Ingolf TurbanGerman violinist, born 17. March 1964 in München, 1985 to 1988 principal violin of the 1985 Münchner Philharmoniker under [a840069], professor in Stuttgart and München.Correcthttp://www.ingolfturban.de/I. TurbanTurbanMünchner Philharmoniker + +2024026Marco SalvatoriItalian classical oboist. He studied the Oboe with [a=Augusto Loppi] and graduated in 1989 at the S. Cecilia Conservatory in Rome, before postgraduate studies with [a=Maurice Bourgue] and [a=Thomas Indermühle] in the Fiesole Music School. Discovering the beauty of playing in an orchestra from a very young age, he immediately dedicated himself to this activity with great passion, collaborating as a first solo oboe with orchestras such as the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia], the [a=Filarmonica della Scala], the [a=Orchestra Sinfonica Nazionale Della RAI], the [a=Israel Philharmonic Orchestra] and the [a=Orchestra Del Maggio Musicale Fiorentino], with conductors like [a=Claudio Abbado], [a=Carlo Maria Giulini], [a=Zubin Mehta], [a=Riccardo Muti], [a=Seiji Ozawa], [a=Riccardo Chailly], [a=Valery Gergiev] and [a=Daniele Gatti]. + +His activity as a soloist led him to prestigious Italian and international stages including the Musikverein in Vienna, the Alte Oper in Frankfurt, and the Festspielhaus in Baden-Baden. At the same time, as a stimulus to the expansion of his repertoire, he participated in prize competitions dedicated to the Oboe, ranking first in the "September Musica 1990 Award" in Turin and in the "Giuseppe Tomassini" Competition in Petritoli in 1995. In 1999 he won the Primo Oboe competition in the Orchestra of the Carlo Felice Theater in Genoa and a few months later the competition for Primo Oboe in the [a=Orchestra Del Maggio Musicale Fiorentino]. + +He constantly devotes himself to chamber music, preferring small groups with whom he has performed in important concert institutions in Italy and abroad, and to teaching in Masters that have seen him engaged also in Japan and South America.Correcthttps://it-it.facebook.com/marco.salvatori.1088Israel Philharmonic OrchestraOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Sinfonica Nazionale Della RAIOrchestra Del Maggio Musicale FiorentinoFilarmonica Della Scala + +2024700Josef RohmClassical trombone player.Needs VoteJosef RöhmConcentus Musicus WienEnsemble Eduard Melkus + +2024865Helena RathboneBritish violinist now based in Australia.Needs VoteLondon Philharmonic OrchestraThe Chamber Orchestra Of EuropeAustralian Chamber OrchestraThe Elixir String Quartet + +2025291Johann Strauss Sr.Johann Baptist Strauss[b]Not to be confused with his son [a1259101] who wrote more famous works like "The Blue Danube".[/b] + +Born in Leopoldstadt, now Vienna, March 14, 1804, died September 25, 1849 in Vienna. +He was an Austrian Romantic composer known particularly for his waltzes and for popularizing it alongside [a=Josef Lanner] thereby (without intention) setting the foundations for his sons to carry on his musical dynasty. His most famous piece, however, is probably the Radetzky March (named after Joseph Radetzky von Radetz) whereas his most famous waltz is probably the Lorelei Rhine Klänge op. 154.Needs Votehttps://en.wikipedia.org/wiki/Johann_Strauss_Ihttps://www.nndb.com/people/175/000097881/https://www.naxos.com/person/Johann_Strauss_I/26290.htmhttps://adp.library.ucsb.edu/names/102524Herr StraussI. ShtraussId. J. StraussId. Johann StraussJ StraussJ Strauss D ÄJ Strauss IJ. S. StraussJ. StrausJ. Straus PéreJ. StraussJ. Strauss (Father)J. Strauss (Ojciec)J. Strauss (Otec)J. Strauss (Padre)J. Strauss (Sr.)J. Strauss (Syn)J. Strauss (Vanh.)J. Strauss (father)J. Strauss - VaterJ. Strauss 1stJ. Strauss D. Ä.J. Strauss D.ä.J. Strauss IJ. Strauss Jr.J. Strauss OtecJ. Strauss PèreJ. Strauss Sen.J. Strauss SeniorJ. Strauss SnrJ. Strauss Snr.J. Strauss SrJ. Strauss Sr.J. Strauss St.J. Strauss VaterJ. Strauss d.e.J. Strauss d.ÄJ. Strauss pèreJ. Strauss sen.J. Strauss „Vater"J. Strauss, 1stJ. Strauss, FatherJ. Strauss, IJ. Strauss, Jr.J. Strauss, OtecJ. Strauss, PadreJ. Strauss, Sr.J. Strauss, VaterJ. Strauss, pèreJ. Strauss-VaterJ. StraußJ. Strauß (Vater)J. Strauß Sr.J. Strauß VaterJ. Strauß sen.J. Strauß, Sr.J. Strauß, VaterJ. ŠtrausJ. Štraus - OtacJ. ŠtrausasJ. シュトラウスⅠ世J.StraussJ.Strauss IJ.Strauss SrJ.Strauss VaterJ.Strauss(Father)J.StraußJ.Strauß VaterJ.oh. Strauss VaterJ.シュトラウスIJan Strauss IJoahnn StraussJoh StraussJoh. StaußJoh. StraussJoh. Strauss (Father)Joh. Strauss (Vater)Joh. Strauss 1stJoh. Strauss IJoh. Strauss PèreJoh. Strauss Sen.Joh. Strauss SrJoh. Strauss Sr.Joh. Strauss VaterJoh. Strauss sr.Joh. Strauss, Sr.Joh. Strauss, VaterJoh. Strauss-VaterJoh. StraußJoh. Strauß (Vater)Joh. Strauß - VaterJoh. Strauß Sr.Joh. Strauß VaterJoh. Strauß [Vater]Joh. Strauß sr.Joh. Strauß, Sen.Joh. Strauß, VaterJoh. Strauß-VaterJoh. Strauß/VaterJoh. Straß, VaterJoh.StraussJoh.Strauß,VaterJohan StraussJohan Strauss (Vater)Johan Strauss D. ÆldreJohan Strauss IJohan Strauss SeniorJohan Strauss Sr.Johan Strauss, VaterJohan StraußJohan Strauß VaterJohan Strauß, VaterJohannJohann (Father) StraussJohann (The Father)Johann Baptist StraussJohann I StraussJohann PadreJohann SnrJohann Sr.Johann StrausJohann Straus DÄJohann Straus IJohann Straus StJohann Straus, VaterJohann StraussJohann Strauss (Père)Johann Strauss (1804-1849)Johann Strauss (D.Æ.)Johann Strauss (Father)Johann Strauss (I)Johann Strauss (Ojciec)Johann Strauss (Padre)Johann Strauss (Père)Johann Strauss (SeniorJohann Strauss (Senior)Johann Strauss (Snr)Johann Strauss (Vater / Father / Père / Padre)Johann Strauss (Vater)Johann Strauss (Vater))Johann Strauss (Vater/Father)Johann Strauss (Vater/Father/Père)Johann Strauss (d.æ.)Johann Strauss (father)Johann Strauss (padre)Johann Strauss (père)Johann Strauss - The ElderJohann Strauss - VaterJohann Strauss / VaterJohann Strauss 1Johann Strauss 1stJohann Strauss D.E.Johann Strauss D.Ä.Johann Strauss DÄJohann Strauss FatherJohann Strauss FilsJohann Strauss IJohann Strauss I.Johann Strauss IIJohann Strauss Le PèreJohann Strauss OtecJohann Strauss PadreJohann Strauss PèreJohann Strauss SenJohann Strauss Sen.Johann Strauss SeniorJohann Strauss SnrJohann Strauss Snr.Johann Strauss SrJohann Strauss The ElderJohann Strauss Vanh.Johann Strauss VaterJohann Strauss Vater/FatherJohann Strauss Vater/Father/PèreJohann Strauss d äJohann Strauss d.e.Johann Strauss d.Ä.Johann Strauss d.ä.Johann Strauss d.æ.Johann Strauss d:äJohann Strauss lJohann Strauss pèreJohann Strauss sen.Johann Strauss the ElderJohann Strauss vanh.Johann Strauss ⅠJohann Strauss, 1stJohann Strauss, FatherJohann Strauss, Le PèreJohann Strauss, PadreJohann Strauss, PèreJohann Strauss, Sen.Johann Strauss, SeniorJohann Strauss, Snr.Johann Strauss, Sr.Johann Strauss, The ElderJohann Strauss, The FatherJohann Strauss, VaterJohann Strauss, padreJohann Strauss-FatherJohann Strauss-VaterJohann Strauss-tatălJohann Strauss/FatherJohann Strauss/VaterJohann StraußJohann Strauß (Vater)Johann Strauß - VaterJohann Strauß IJohann Strauß Sen.Johann Strauß SeniorJohann Strauß Sr.Johann Strauß VaterJohann Strauß [Vater]Johann Strauß d.Â.Johann Strauß, SohnJohann Strauß, VaterJohann Strauß-VaterJohann Strauß-Vater/FatherJohann Strauß. VaterJohann Strauß/VaterJohann, PadreJohann. Strauß-VaterJohannes StraussJohn. StrauBJosef StraußNach StraußSr.Sr. J. StraußStrausStraussStrauss (Vater)Strauss 1stStrauss IStrauss Ist, J.Strauss J.Strauss Joh. SR.Strauss JohannStrauss Johann Sr.Strauss Johann-FatherStrauss Sen.Strauss Snr.Strauss SrStrauss Sr.Strauss St.Strauss VaterStrauss, FatherStrauss, Johann (Father)Strauss, Sr.Strauss, Vanh.Strauss, VaterStraußStrauß (Sohn)Strauß (Vater)Strauß IStrauß VaterStrauß sen.Strauß, VaterStrauß-VaterV. Joh. StraussІ. ШтраусИ. ШтраусИ. ШтрауссИоганн ШтраусИоганн Штраус (отец)Иоганн Штраус-отецЙохан ЩраусШтраусШтраус (Отец)Штраус ИоганнШтраусъЩраусシュトラウス1世ヨハン シュトラウス1世ヨハン・シュトラウス Iヨハン・シュトラウス1世ヨハン・シュトラウスIヨハン・シュトラウスⅠ世老约翰·斯特劳斯J.シュトラウスⅠ世 + +2025962Simon BlendisClassical violinist.Needs Votehttps://www.simonblendis.com/サイモン・ブレンディスLondon SinfoniettaLondon Mozart PlayersThe Schubert Ensemble Of LondonThe Chamber Orchestra Of London + +2026088Mette NielsenDanish harpist, born in 1962.Needs VoteAalborg SymfoniorkesterDet Jyske Ensemble + +2026093Bob CrullAmerican Big Band/Swing jazz Trumpet and mellophonium player. Needs VoteCob CrullStan Kenton And His OrchestraThe College All-Stars + +2026094Tony ScodwellAmerican trumpeter, born and raised in Beloit, Wisconsin.Needs Votehttp://chucklevins.com/scodwell-asp/http://www.middlehornleader.com/Scodwell%20Interview.htmAnton ScodwellScodwellHarry James And His OrchestraStan Kenton And His OrchestraJazz In The Classroom + +2026467Joel MoerschelAmerican cellist, born in 1948.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraCollage New Music + +2026546Burkhard JäckleGerman flutistNeeds VoteBurkhart JäckleMünchner PhilharmonikerYoung Romance Orchestra + +2027260Marc BarrardFrench baritone vocalist, born in Nîmes.Needs Vote + +2027628Adam ChignellEngineer for classical recordings.CorrectAdam Chignall + +2027690Alain AubertSound engineer (recording and mixing).Needs Vote + +2027976Francine Myrna NeimanNeeds Major ChangesF NiemanF. NeimanF. NiemanFrancine NeimanNeimanNelmanNieman + +2028052Fabio ZanonFábio Pedroso ZanonBrazilian classical guitar player, Visiting Professor at the Royal Academy of Music, and author of 'Villa-Lobos' (Publifolha, 2009). + +b.: March 6, 1966 - Jundiaí, SPNeeds Votehttps://www.facebook.com/Fabio-Zanon-143199205740136/http://vcfz.blogspot.comhttps://guitarcoop.com.br/en/fabio-zanon/https://pt.wikipedia.org/wiki/Fábio_Zanonhttp://enciclopedia.itaucultural.org.br/pessoa12851/fabio-zanonhttps://www.artematriz.com.br/fabio-zanon/https://www.ram.ac.uk/about-us/staff/fabio-zanonF. ZanonFabion ZanonFábio Zanonファビオ・ザノンEnglish Chamber Orchestra + +2028530Choral Arts Society of WashingtonUS choir founded in 1965 by [a=Norman Scribner] (1936-2015). The choir is the Symphonic Chorus with up to 200 singers and the Choral Arts Chamber Ensemble which is a project-based group comprised of singers from the Symphonic Chorus that audition to be chosen from a roster based on the needs of each concert.Needs Votehttps://choralarts.orgChamber Singers De Choral Arts Society De WashingtonMale Chorus Of The Choral Arts Society Of WashingtonMembers Of The Choral Arts Society Of WashingtonMen Of The Choral Arts Society of WashingtonThe Choral Arts SocietyThe Choral Arts Society Of WashingtonThe Choral Arts Society Of Washington Chamber SingersThe Choral Arts Society of WashingtonWashington Choral Arts SocietyGlen Howard (2) + +2028533Rudolf HindemithGerman cellist, composer, and conductor (9 January 1900, Hanau — 7 October 1974, Neuperlach, Bavaria), brother of [a=Paul Hindemith]. He changed his name officially to Paul Quest in 1951, and also went by the pseudonym Hans Lofer.Needs Votehttp://de.wikipedia.org/wiki/Rudolf_Hindemithhttps://adp.library.ucsb.edu/names/108667R. HindemithAmar-QuartettAmar TrioHindemith Duo + +2028805Joël PontetFrench harpsichordist and fortepianist, born 1949.Needs Votehttp://www.bach-cantatas.com/Bio/Pontet-Joel.htmPontetPrague Chamber OrchestraCzech Chamber OrchestraOrchestre De Chambre Jean-François PaillardEnsemble Orchestral De ParisSecolo Barocco Ensemble InstrumentalQuatuor Alma + +2028812Orchestre De L'Association Des Concerts LamoureuxOrchestre De L'Association Des Concerts LamoureuxFull title of [a448007], currently known simply as Orchestre Lamoureux.Needs VoteAssociation Des Concert LamoureuxAssociation Des Concerts LamoureuxL'Orchestra de l'Association des Concerts LamoureuxL'orchestre Des Concerts LamoureuxLamoureux OrchestraL’Orchestre de l’Association des Concerts LamoureuxOrch. De L'Association Des Concerts LamoureuxOrchestervereinigung LamoureuxOrchestra De L'Association Des Concerts LamoureuxOrchestra dei Concerti LamoreauxOrchestre De L'Ass. Des Concerts LamoureuxOrchestre De L'Assicuation Des Concerts LamoureuxOrchestre De L'Association Des Concerts Lamoureux, ParisOrchestre De L'Association Des Concerts Lomoureux, ParisOrchestre De La Société Des Concerts De VienneOrchestre De La Société Des Concerts LamoureuxOrchestre Des Concerts Lamoureux + +2028933Julius DarvasGerman (double)bass player based in Austria. Needs VoteNo Limit (7)Janoska EnsembleBühnenorchester Der Wiener Staatsoper + +2029148Guy BernardClassical trombone & cornett instrumentalistNeeds VoteLes Violons du RoySaltarelEnsemble Jacques Moderne + +2029158Victor Jones (2)American jazz drummer, born 25 September 1954 in Newark/New Jersey, USANeeds Votehttp://www.cultureversy.com/'Yahya' Victor JonesJonesVictor "YA-YAH" JonesVictor "Yahya" JonesVictor "Yayha" JonesYa-Ya Victor JonesYahya SedfiqYahya SediqStan Getz QuintetLou Donaldson QuartetMingus Big BandIgnasi Terraza TrioMal Waldron QuartetEd Schuller & BandSlide Hampton And The World Of TrombonesThe Alex Blake QuintetThe Herman Foster TrioRomantic Jazz TrioUli Lenz TrioThe Joshua Breakstone QuartetNicolas Simion QuartetThe Jazz ExpressionsEarthbound (10)Jay Rodriguez QuartetVirginia Mayhew SeptetNew York City SoundscapeValery Ponomarev Big BandThe Richie Cole QuartetY2K Jazz QuartetMichel Petrucciani QuartetThe Rory Snyder QuintetRichie Cole / Hank Crawford Quintet + +2029175Peter Shelton (3)Peter Ward SheltonAmerican cellist, born 11 September 1954 in Livermore, California and died 9 May 2009 in Oakland, California.Needs VotePeter SheltonSan Francisco Symphony + +2029626Virginie ThomasFrench sopranoNeeds Votehttps://www.facebook.com/virginie.thomas2710Les Arts FlorissantsLes Talens LyriquesPygmalionChœur Marguerite Louise + +2029879Squire GershElmore Squire GirsbackAmerican jazz bassist and tuba player, nicknamed "Geezer", born May 13, 1913 in Astoria, Oregon, died April 27, 1983 in San Francisco, California.Needs Votehttps://adp.library.ucsb.edu/names/317570Squire GirsbackSquire GirsbakSquire GirshbackSquire GirsbackLouis Armstrong And His All-Stars + +2029972Pippa TunnellBritish harpistNeeds Votehttp://pippatunnell.comRoyal Scottish National OrchestraScottish Chamber Orchestra + +2030033Wolfgang StertGerman contrabassist and painter, born 1937 in Schleswig, Germany.Correcthttp://www.stert-art.com/oncangh/index.htmlFreiburger Barocksolisten + +2030034Berthold StihlNeeds Major Changes + +2030035Christmut GeierNeeds Major Changes + +2030036Dietmar KellerGerman oboist, specializing in Oboe da Caccia (23 December 1939 in Niedergurig, Germany - 10 November 2017 in Berlin, Germany). +Needs VoteStaatsorchester StuttgartOrchester der Bayreuther FestspieleBachcollegium StuttgartWürttembergisches KammerorchesterAlt-Wiener Strauss-Ensemble + +2030037Sepp GrünwaldNeeds Major Changes + +2030038Helmut BöckerClassical bassoonistNeeds VoteHelmut Bocker + +2030780Otakar JeremiášOtakar JeremiášCzech composer, conductor, pianist, organist and cellist. +Born 17 October 1892 in Písek (former Austro-Hungarian Empire), died 5 March 1962 in Prague (former Czechoslovakia). +Cellist of [a=The Czech Philharmonic Orchestra] 1910–1912. +Husband of operatic vocalist [a3115811].Needs Votehttp://en.wikipedia.org/wiki/Otakar_Jeremi%C3%A1%C5%A1JeremiášO. JeremiasO. JeremiášOt. JeremiasOt. JeremiašOt. JeremiášО. ЕремияшО. ЕремияшаThe Czech Philharmonic Orchestra + +2031322Trond Magne BrekkaNorwegian flutist and piccolo flutist, born 1978 in Horten, Norway.Needs VoteOslo Filharmoniske OrkesterKringkastingsorkestret + +2031526Josef WallnigJosef Wallnig (born 1946) is an Austrian classical harpsichordist, répétiteur, conductor and emeritus professor at the [l1554951].Needs VoteConcentus Musicus Wien + +2031529Josef RadauerAustrian double bassist, born 18 April 1963.Needs VoteJosef Radauer Jun.Camerata Academica SalzburgEnsemble Tobias Reiser + +2031537London Symphony Orchestra Chamber GroupChamber group of the [a=London Symphony Orchestra]. +[b]Please, consider also [a=London Symphony Orchestra Chamber Ensemble] if credited that way on the release[/b]. + +Please, consider also the following orchestra's sub-groups: +- [a=Members Of The London Symphony Orchestra] +- [a=London Symphony Orchestra Strings] +- [a=London Symphony Orchestra Brass] +- [a=London Symphony Orchestra Chamber Ensemble] +- [a=LSO String Ensemble] +- [a=LSO Percussion Ensemble] +- [a=LSO Wind Ensemble]Needs VoteOrchestre de Chambre du London Symphony OrchestraThe London Symphony Orchestra Chamber GroupCharles DonaldsonLondon Symphony Orchestra + +2031884Béatrice GobinClassical soprano.Needs VoteLe Concert SpirituelChoeur de Chambre de NamurLes Chantres Du Centre De Musique Baroque De VersaillesChœur Marguerite Louise + +2031885Annie CovilleClassical violinistCorrectLa Simphonie Du Marais + +2031886Delphine BlancFrench classical violinistCorrectLa Simphonie Du Marais + +2031887Maïlys de VilloutreysFrench classical soprano vocalistNeeds VoteVilloutreysLa Simphonie Du MaraisPygmalionEnsemble DesmarestChœur Marguerite Louise + +2031888Lorenzo BrondettaClassical flautistNeeds VoteLa Simphonie Du MaraisAstrolabio (5)Balli E Balletti Da Ballare + +2031889Florian CarréOrganist and harpsichordist.Needs VoteLes Arts FlorissantsLa Simphonie Du MaraisLe Poème HarmoniqueLes Paladins + +2031891Marc WolffClassical Theorbist & LutenistNeeds VoteMarc WolfMarco WolffLa Simphonie Du MaraisDa Pacem (2)La Chapelle RhénaneEnsemble europeen William ByrdEnsemble DesmarestLe Banquet CélesteEnsemble Marguerite LouiseOff SeptLa Guilde Des Mercenaires + +2031894Anne Krucker-RihoitClassical violinistCorrectLa Simphonie Du Marais + +2031898Myriam MahnaneClassical violinistNeeds VotePulcinellaLa Simphonie Du MaraisLe Poème HarmoniqueLes PaladinsCappella MediterraneaLe Concert Étranger + +2031901Delphine Le GallFrench classical double-bass playerCorrectLa Simphonie Du Marais + +2031903Vincent BlanchardVincent BlanchardClassical oboistNeeds VoteLe Concert SpirituelLa Simphonie Du MaraisLes Musiciens Du LouvreLes PaladinsEnsemble Les Surprises + +2031904Damien PouvreauClassical theorbistNeeds Votehttps://www.damienpouvreau.com/actuLa Simphonie Du MaraisLe ConsortEnsemble Stravaganza + +2031905Céline CavagnacFrench classical violinistNeeds VoteLes Talens LyriquesLa Simphonie Du MaraisEnsemble Almazis + +2031909Stéphane TambyFrench Flautist and BassoonistNeeds VoteS. TambyLe Concert SpirituelLa Simphonie Du MaraisLe Poème HarmoniquePale SpectresSyntagma AmiciLes Goûts Réunis + +2031910Matthieu HeimBass / Baritone vocalsNeeds Votehttp://matthieuheim.com/Le Concert SpirituelLudus Modalis + +2031915Sarah BrayerFrench classical violinistNeeds VoteSarah Brayer-LeschieraLa Simphonie Du Marais + +2031916François NicoletClassical wind instrument playerNeeds VoteLa Simphonie Du MaraisCafé ZimmermannLes Voix HumainesGli Angeli Genève + +2031917Hervé MignonCountertenor vocalistCorrectChoeur de Chambre de Namur + +2031918Benjamin ChénierFrench classical violinist and founder of ensemble [a=Galilei Consort]Needs VoteLe Concert SpirituelLes Folies FrançoisesLa Simphonie Du MaraisLes Nouveaux CaractèresEnsemble La FeniceLa RéveuseGalilei ConsortLes Ombres (3) + +2031919Maud GiguetFrench classical violinist born 1981 at Cherbourg.Needs VoteLe Concert D'AstréeLa Simphonie Du MaraisTrio Dauphine + +2031920Mariko AbeJapanese classical violinistNeeds VoteMariko Abe-NakayamaMariko AbéLa Simphonie Du MaraisEnsemble Elyma + +2031923Ulrike BruttClassical cellistNeeds VoteUlrike BrüttLes Arts FlorissantsLa Simphonie Du MaraisEnsemble La Fenice + +2031924Damien LaunayClassical cellistCorrectDaniel LaunayLes Arts FlorissantsLes Talens LyriquesLa Simphonie Du MaraisCapriccio Stravagante + +2031925Marie HervéFrench classical Bassoon & Recorder instrumentalistNeeds VoteLa Simphonie Du MaraisLes Épopées + +2031928Pierre ValletClassical violinistNeeds VotePulcinellaLa Simphonie Du MaraisLe Poème HarmoniqueGli Angeli GenèveMillenium OrchestraLa Chapelle HarmoniqueLe Concert Universel + +2031930Jerôme VidallerFrench classical cellistNeeds VoteLa Simphonie Du Marais + +2031931Francis ChapeauFrench classical violinistCorrectLa Simphonie Du Marais + +2031932Hélène RicherFrench soprano vocalist.Needs VoteLe Concert SpirituelCanticum Novum + +2031933Roberto Fernandez de LarrinoaClassical violin, double bass & violone player.Needs VoteRoberto De LarrinoaRoberto FernandezRoberto Fernández de LarrinoaCollegium VocaleConcerto KölnHarmonie UniverselleInsula OrchestraCompagnia Di Punto + +2031934Gabrielle KancachianClassical viola playerNeeds VoteGabi KancachianConcerto KölnOrchestra Of The AntipodesKonzerTanten + +2031935Juan KunkelClassical cellistCorrectConcerto Köln + +2031937Simon Martyn EllisClassical lute & theorbo playerNeeds VoteSimon Martyn-EllisAkademie Für Alte Musik BerlinConcerto KölnOrchestra Of The AntipodesCollegium 1704Kölner AkademieElysium EnsembleAcronym (2)Latitude 37Van Diemen's BandEnsemble Vintage KölnSalut! Baroque + +2032199Barbara KummerGerman violinist. She's married to [a2648793].Needs VoteBarbara Kummer-BuchbergerBarbara BuchbergerJunge Deutsche PhilharmonieDeutsche Kammerphilharmonie BremenMutare EnsembleBundesjugendorchesterKarl Berger Orchestra + +2032201Till WeserTill Fabian WeserTill Fabian Weser (born 1965 in Bloomington, Indiana, United States) is a classical trumpet player and conductor.Needs Votehttp://www.till-fabian-weser.com/#musikerT. WeserTill Fabian WeserWeserBamberger SymphonikerBundesjugendorchesterBach, Blech & Blues + +2032202Kurt FörsterKurt Förster is a tombonist.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Orchester Gießen + +2032512Katie TretheweyBritish sopranoNeeds Votehttp://katietrethewey.co.uk/Kate TretheweyLondon VoicesTenebrae (10)Contrapunctus (2) + +2033385Markus Hoffmann (2)German violinist, born 1966 in Siegen, he is with the Concerto Köln since its foundation in 1985 and currently their concert master.Needs VoteMarkus HoffmannConcerto KölnCollegium AureumMarcolini Quartett + +2033505Louis GromerLouis Gromer was a classical oboist.Needs VoteGromerL. GromerL. GrommerM. L. GromerOrchestre National De L'Opéra De Paris + +2033571Ida Speyer GrønDanish violist. +Needs VoteIda GronIda GrønIda Speger GrønThe Australian Opera & Ballet OrchestraThe Chamber Orchestra Of EuropeDet Kongelige KapelCopenhagen ClassicAthelas Sinfonietta Copenhagen + +2033933Alicia NaféArgentine Mezzo-soprano & Contralto vocalist, born 4 August 1947 in Buenos Aires, Argentina.Needs VoteNafé + +2033934Jean LainéTenor vocalistNeeds Vote + +2034031Hans KindlerJohannes Hendrikus Philip KindlerAmerican conductor and cellist, born 8 January 1892 in Rotterdam, Netherlands and died 30 August 1949 in Watch Hill, Rhode Island.Correcthttps://adp.library.ucsb.edu/names/108646KindlerThe Philadelphia Orchestra + +2034037Michael Kevin LeeArt director / Designer.CorrectMichael Kevin Lee/Gribbitt!Michael LeeGribbitt! + +2034453Chicago Rhythm KingsName under which recordings of several jazz groups were issued. +The most important was a group that included Muggsy Spanier, Frank Teschemacher and others in 1928; that name was also used in 1936 for a group that included Roy Palmer [for this group, use [a=Chicago Rhythm Kings (2)]], for a dance band in 1936, for an Art Hodes group in 1940 [for this group, use [a=Chicago Rhythm Kings (3)]], and as pseudonym for several other groups (including Billy Bank's band of 1932).Needs VoteBilly Banks' Chicago Rhythm KingsChicago Rhythm KingEddie Condon's Chicago Rhythm KingsFrank Teschemacher's ChicagoansRed McKenzie's Chicago Rhythm KingsThe Chicago Rhythm KingsMezz MezzrowGene KrupaJoe SullivanRed McKenzieMuggsy SpanierEddie CondonFrank TeschemacherJim Lannigan + +2034499Karl KreileTenor vocalist.Needs VoteChor Des Bayerischen Rundfunks + +2034769Ralf KlepperClassical violinist, GermanyNeeds VoteMünchner Rundfunkorchester + +2035029Thomas OliphantBorn: December 25, 1799, Condie, Strathearn Perthshire, Scotland +Died: March 09, 1873, London, England + +A Scottish musician, artist and author whose works were well known in their day. He wrote the chorale for the wedding of King Edward VII and Queen Alexandra. Oliphant wrote the words to "Deck the Hall(s) with Boughs of Holly". + +Oliphant was educated at Winchester College but left early. He became a member of the London Stock Exchange but after a short time left to pursue his interest in music and literature. + +In 1830 Oliphant was admitted a member of the Madrigal Society and in 1832 he became the Honorary Secretary of the society, a position which he held for 39 years, eventually becoming first the Vice President and then a year later President of the Society in 1871. He wrote English words to a considerable number of Italian Madrigals for the Society's use, in some instances his words were translations but in many, they were his own creation.Needs Votehttp://en.wikipedia.org/wiki/Thomas_Oliphant_%28musician_and_artist%29http://www.electricscotland.com/webclans/ntor/oliphants6.htmOliphantT. OliphantThos. OliphantTraditional + +2035698Peter SesterhennGerman violinist.CorrectBamberger SymphonikerKruschek-QuartettDüsseldorfer Symphoniker + +2035815Bach Society Of MinnesotaNeeds Votehttps://bachsocietymn.orgKris KautzmanJulie ElhardCarrie Henneman ShawEmily Greenleaf + +2035816David LabergeNeeds Major Changes + +2035962Orquesta De La Comunidad De MadridAlso known as "Orquesta y Coro de la Comunidad de Madrid" (ORCAM) with the chorus. [b]For chorus credits use [a6743551].[/b] +Chorus was founded in 1984 and orchestra in 1987 through [a2699710] by the community government of Madrid and conductor until his retirement in 2000. Since 1998 is the holder orchestra of [l611159]. +[a1358031] was the titular conductor and artistic direction of ORCAM (Orchestra & Chorus) from 2001 to 2013, since 2013 is [a1847462].Needs Votehttps://www.fundacionorcam.org/https://en.wikipedia.org/wiki/Community_of_Madrid_OrchestraComunidad De Madrid Orchestra & ChorusComunidad De Madrid Orchestra And ChorusLa Communidad De Madrid Orchestra & ChorusMadrid Community OrchestraORCAMOrchestraOrchestra And Chorus Of The Comunidad De MadridOrchestra Of The Comunidad De MadridOrchestra of the Teatro de la ZarzuelaOrquestaOrquesta De La Comunidad De Madrid "ORCAM"Soloists Of The Orquesta De La Comunidad De MadridJosé Ramón EncinarDobrochna BanaszkiewiczVíctor Pablo PérezMiguel GrobaAna María Alonso (2)Iván Martín MateuEma Alexeeva + +2036157Angelo CifelliAngelo M. CifelliBorn March 27, 1939, Angelo M. "Chubby" Cifelli is a singer-songwriter and guitarist who has written songs for and performed with the Four Seasons. He is perhaps best known for co-writing "Tell It To The Rain".Needs VoteA. ChifelliA. CifelliA. CifellliA.CifelliAngelo "Chubby" CifelliC. CifelliChubby CifelliCifelli + +2036241Abe RosenAbraham RosenAmerican harpist known for his work playing in New York shows. Brother of [a562207] and [a430838]. +b.: 1916 +d.: May 30, 2007Needs Votehttps://www.local802afm.org/allegro/articles/remembering-abe-rosen/Woody Herman And His OrchestraWoody Herman & The Herd + +2036266Jimmy LordAmerican jazz clarinetist and tenor saxophonist, born c. 1905 in Chicago, Illinois, died c. October 1936 in New York City (pneumonia). +Worked with The Wolverines in Chicago in 1925, moved to New York, worked with [a=Willard Robison], recorded with [a856586] in 1932.Needs VoteJ. LordThe Rhythmakers + +2036563Rainer Maria KlaasClassical pianist. + +Rainer Maria Klaas is one of the most versatile interpreters of the 19th and 20th century piano and chamber music. + +Born in Recklinghausen, he received his pianistic training with Detlef Kraus, Klaus Hellwig and Yara Bernette as well as with courses by Guido Agosti, Jorge Bolet and Czeslaw Marek. In 1977 he made his concerts in Hamburg. Concerts and master classes have led him to many countries in Europe, the USA, Israel and South Korea. + +As a soloist with orchestras, Klaas dealt extensively with Mozart, Beethoven, Chopin, Schumann, Liszt, Alkan, Saint-Saëns, Tchaikovsky, Rachmaninov, Stravinsky, Gershwin and Shostakovich. He has played piano concertos for the last four years by Stefan Heucke, Martin Münch and Frank Zabel. Many of the works of his soloist and chamber music repertoire, which includes several hundred composers, are documented on CD or in recordings. + +Klaas teaches at the studio :: busoni in Recklinghausen and Dortmund.Needs Votehttp://instrumentalverein-dortmund.de/texte/solisten/041_rm%20klaas.htmlKlaasRainer KlaasRainer M. KlaasTrio Alkan + +2036564Michael Wagner (5)Classical pianist.Correct + +2036565Ewald DonhofferAustrian harpsichordist and conductor.Needs Votehttps://www.bach-cantatas.com/Bio/Donhoffer-Ewald.htm + +2036653Orchestra Da Camera Di GenovaNeeds Major ChangesMembers Of The Orchestra Da Camera Di GenovaOrchestra Da Camera Genovese + +2036700Igor AkimovRussian classical violinist.Needs VoteRussian National Orchestra + +2036891Pat AzzaraPatrick Carmen AzzaraItalian-American jazz guitarist (born on August 25, 1944 - Philadelphia, Pennsylvania; died on November 1, 2021).Needs Votehttps://www.patmartino.com/https://en.wikipedia.org/wiki/Pat_Martinohttps://www.imdb.com/name/nm3279018/P. AzzaraPatrick AzzaraPat MartinoWoody Herman And His OrchestraThe New John Handy QuintetWoody Herman And The Thundering HerdPat Martino QuartetCharles Earland Tribute BandPat Martino TrioGene Ludwig - Pat Martino Trio + +2036907Till KreischeSound engineer in underground Berlin venues ([l=Antje Øklesund], ACUD MACHT NEU, [l=://about blank]...), tour sound tech and recording engineer. Works at [l269429].Needs VoteTKTkCalyx Mastering + +2037251Rudolf HöroldClassical hornist.Needs Vote + +2037252Gerhard Meyer (2)German hornistCorrectGerhard Mayer + +2037564Isabelle VoßkühlerGerman soprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Vosskuhler-Isabelle.htmIsabelle VosskühlerRundfunkchor Berlin + +2037565René VoßkühlerGerman baritone vocalist, born in 1963 in Anklam, GDR.CorrectRundfunkchor Berlin + +2037578Michael TimmGerman bass / baritone vocalistNeeds VoteRundfunkchor BerlinEnsemble Vokalzeit + +2038212Matthias BeutlichGerman operatic bass.CorrectChor der Staatsoper Dresden + +2038214Peter BrunsGerman cellist, conductor and Professor for Cello, born 1963 in Berlin, GDR.Needs Votehttp://www.peterbruns.de/BrunsStaatskapelle DresdenLeipziger Streichquartett + +2038215Rafael HarnischGerman operatic tenor.CorrectChor der Staatsoper Dresden + +2038216Mirko TumaOperatic bass, born 1968.CorrectChor der Staatsoper Dresden + +2038217Katharina FladeGerman operatic soprano.CorrectChor der Staatsoper Dresden + +2038220Heike LiebmannGerman operatic mezzo-soprano.CorrectChor der Staatsoper Dresden + +2038221Dominik LichtGerman operatic baritone, born 1977 in Munich, Germany.Needs VoteDominik Licht [Germany]Chor der Staatsoper Dresden + +2038259Cummings String TrioUK-based string trio formed in 1975.Needs VoteThe Cummings String TrioRohan de SaramLuciano IorioDiana CummingsGeoffrey Thomas + +2038260Geoffrey ThomasCredited as cellist. Note! For the photographer, please use [a=Geoffrey Thomas (2)]. +Needs VoteCummings String TrioEnglish String Quartet + +2038343Willem KesDutch conductor and violinist (16 February 1856 – 22 February 1934). +He was the first principal conductor of the Concertgebouw Orchestra of Amsterdam, holding that position from 1888 to 1895. He left the Concertgebouw Orchestra to take up a conducting post with the Scottish Orchestra in Glasgow. From 1905 to 1926, Kes was director of a music conservatory in Koblenz.Needs Votehttps://en.wikipedia.org/wiki/Willem_KesConcertgebouworkest + +2038347Josine ButerDutch classical flutistNeeds VoteThe Chamber Orchestra Of Europe + +2039426William ConwayBritish classical cellist, born in Glasgow, Scotland, UK.Needs Votehttp://www.william-conway.com/https://soundcloud.com/will-conway-musichttp://www.linnrecords.com/artist-william-conway-and-peter-evans-hebrides-ensemble.aspxWill ConwayThe Chamber Orchestra Of EuropeHebrides Ensemble + +2039427Stewart EatonClassical viola player, born in Aylesbury, Great Britain.Needs Votehttps://www.facebook.com/stewart.eaton.750S. EatonSteuart EatonThe Chamber Orchestra Of EuropeAuryn Quartett + +2039428Kristian BezuidenhoutFortepianist, harpsichordist and pianist, born in South Africa in 1979.Correcthttp://kristianbezuidenhout.com/BezuidenhoutK. BezuidenhoutKrystian BezuidenhoutThe Chamber Orchestra Of Europe + +2039970Sol Klein (2)Early jazz violinist + +Probably identical with the viola player who recorded with Nat King Cole and Nelson Riddle's orchestra in 1958.Needs Votehttps://www.jazzdisco.org/nat-king-cole/discography/Ted Lewis And His BandHarry Barth's Mississippians + +2039971Sam Shapiro (2)American violinist who played the first violin in [a=Ted Lewis And His Band] in the early 1930s. + +[b]DO NOT CONFUSE with his contemporary, the trumpeter [a=Sammy Shapiro].[/b]Correcthttps://books.google.com/books?id=_J9HAAAAMAAJ&pg=PA1039&lpg=PA1039&dq=%22Sam+Shapiro%22+%2B+%22Benny+Goodman%22&source=bl&ots=xgKLvKwOf9&sig=ACfU3U26J-YIiVnylE-QmDbDx4gm-eGmzg&hl=en&sa=X&ved=2ahUKEwj4iNWvisb-AhW9BDQIHeunBio4MhDoAXoECAIQAw#v=onepage&q=%22Sam%20Shapiro%22%20%2B%20%22Benny%20Goodman%22&f=falsehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/343325/Shapiro_SamBenny Goodman And His OrchestraTed Lewis And His Band + +2039972John Lucas (3)Early jazz drummerNeeds VoteTed Lewis And His BandEarl Fuller's Famous Jazz BandHarry Raderman's Jazz OrchestraHarry Barth's Mississippians + +2039973Louis Martin (3)Early jazz reeds player (clarinet, alto and baritone saxophone)Needs VoteLou MartinTed Lewis And His BandThe Knickerbockers (5)Kolster Dance Orchestra + +2039975Sam BlankAmerican trombonist.Needs VoteSammy BlankSamuel BlankLouis Armstrong And His OrchestraTed Lewis And His Band + +2039976Harry BarthEarly Jazz bass and tuba player Needs VoteTed Lewis And His BandHarry Barth's MississippiansHarry Barth's OrchestraHarry Barth's Novelty Orchestra + +2039977Dave Klein (3)Early jazz trumpet playerNeeds VoteD. KleinSkinnay Ennis And His OrchestraTed Lewis And His BandAdrian Rollini And His Orchestra + +2039978Hymie WolfsonEarly jazz clarinet and saxophone player (soprano, tenor)Needs VoteHerman "Hymie" WolfsonHerman WolfsonTed Lewis And His BandBen Selvin & His OrchestraThe HarmoniansHavana Novelty OrchestraThe Knickerbockers (5)Kolster Dance Orchestra + +2040093Ty Terrell LeonardTerrell Jacob LeonardRhythm 'n' blues singer. Born December 6th, 1928. Died June 7th, 2017Needs VoteLeonardT. LeonardTerrel LeonardTerrell LeonardTy TerellTy TerrellTy TyrellTy TyrrellThe RobinsDyna-SoresThe Nic Nacs + +2040138Debbie PreeceDeborah PreeceBritish freelance classical violin player. +She was in the 1st violin section of the [a=Philharmonia Orchestra].Needs Votehttps://www.feenotes.com/database/artists/preece-deborah/https://www.imdb.com/name/nm11722421/Deborah PreeceThe London OrchestraPhilharmonia OrchestraThe London Chamber OrchestraBritten SinfoniaSonia Slany String And Wind Ensemble + +2040171Stephen MawBritish bassoonistNeeds VoteStephen MaySteve MawCity Of London SinfoniaLondon SinfoniettaThe New Symphonia + +2040172Mike Kidd (3)Michael KiddBritish hornist. +He graduated from the [l527847] in 2011. Associate Principal Second Horn in the [a=City Of Birmingham Symphony Orchestra].Needs Votehttp://www.michaeljkidd.co.uk/https://cbso.co.uk/news/associate-principal-second-horn-announcedhttp://prohorn.co.uk/news/https://www.imdb.com/name/nm4684029/https://vgmdb.net/artist/22776Michael KiddLondon Symphony OrchestraThe London Studio OrchestraCity Of Birmingham Symphony OrchestraLouis Dowdeswell Big Band + +2040958Paul Winter (7)operatic tenorNeeds Vote + +2041348WLP Ltd.White Label Productions are entertainment industry specialists, offering a comprehensive range of integrated creative services including art direction, artist imaging and design, digital, production, video and advert production, product management, multilingual editorial, pre-press, print and manufacture of all audio and audio-visual products, marketing materials and merchandisingNeeds Votehttp://whitelabelproductions.co.uk/WLPWLP LTDWLP LimitedWLP London LilmitedWLP London LimitedWLP London LtdWLP LtdWhite Label ProductionsWhite Label Productions LimitedWhite Label Productions LtdWhite Label Productions Ltd.Paul Chessell + +2042206Jeffrey Brown (2)Classical horn player.Needs VoteJazzy Jeffery BrownJeff BrownJeffery BrownBournemouth Symphony Orchestra + +2042551Peter ValentovičSlovak conductor and chorus master. Needs VoteMaestro Peter ValentovičSlovak Radio Symphony Orchestra + +2042661Mark InouyeAmerican trumpeter. Currently Principal Trumpeter of the San Francisco Symphony.Needs Votehttps://www.inouyejazz.com/Mark J. InouyeSan Francisco SymphonyHouston Symphony OrchestraCharleston Symphony Orchestra + +2042826The Strings Of The New York PhilharmonicGeneral-use Artist when used for credits for string players from the [a=New York Philharmonic] Orchestra.Needs VoteN.Y. Philharmonic StringsThe New York Philharmonic Orchestra String PlayersThe New York Philharmonic String PlayersNew York Philharmonic + +2042871Fanny AlofsDutch alt/mezzo-soprano vocalist. Started as a jazz-singer, switched to classical, specializing in contemporary vocal music. Needs Votehttp://fannyalofs.comNederlands KamerkoorLunapark (5)Ensemble Silbersee + +2042874Elsbeth GerritsenElsbeth Gerritsen was a Dutch alto & mezzo-soprano vocalist. She passed away in December 2024 at the age of 53. She was trained at the Conservatory of Amsterdam with Margreet Honig. Then it was a few years coached by Jard van Nes.Needs VoteCappella AmsterdamDe Nederlandse BachverenigingNederlands KamerkoorVocal Ensemble QuinkIl Concerto Barocco + +2042972François-Xavier RothFrench flutist and conductor, born 6 November 1971 in Neuilly-sur-Seine, France. He's the son of [a2747689].Needs Votehttps://fxroth.com/Francois Xavier RothFrancois-Xavier RothLes Siècles + +2043047Laura RuckerJazz and blues singer and pianist (though never on record), who first recorded for Paramount in 1931, made two titles for Vocalion in 1935 (only one issued and much later), two more for Decca in 1936, and a last session for Aristocrat/Chess in 1949.Needs VoteEarl Hines And His OrchestraLaura Rucker And Her Swing BoysLaura Rucker And Her Three Bits Of Rhythm + +2043080Herbert J. Harris(born 1917 - died 21 September 2008) American percussionist. Born in Manhattan, Mr. Harris left New York in the mid-1930s, playing drums for bands on the traveling vaudeville circuit, winding up in Chicago, where he soon joined [a=George Olsen's Music] band. In 1945, after serving in the U.S. Coast Guard in Manhattan Beach, N.Y., he attended The Juilliard School, one of the world's most prestigious performing arts conservatories, where he majored in tympani and percussion. + +As a pit drummer on Broadway, Harris opened 30 shows in 14 years, including “On the Town,” by [a=Leonard Bernstein], “Call Me Mister,” and the Broadway musical that propelled [a=Carol Channing] to fame, “Gentlemen Prefer Blondes.” + +In a career with many highlights, Mr. Harris said he was honored to be invited by Bernstein to join the [a=The New York Philharmonic Orchestra] in 1958, where he played for 24 years. At the same time, he played in and contracted with numerous orchestras for film, radio, TV-show theme music and commercials, as well as working 18 years as [a=Joseph Papp]’s music administrator on such productions as “Hair” and “A Chorus Line.” + +He accumulated a vast collection of ethnic musical instruments during his travels around the world, and became an authority on world music. In 1988, he donated 1,000 instruments to the music department of the [l=Metropolitan Museum of Art] in New York. + +On moving to Holmes Beach in 2000, Harris formed a jazz trio that recorded and released two CDs and played locally with the Anna Maria Island Community Orchestra and Chorus. His trio performed at numerous events, clubs and restaurants locally, including Ooh La La! Bistro and Da Giorgio Ristorante in Holmes Beach, the Longboat Key Community Center, the Studio at Gulf and Pine, and events for the Jazz Society of Sarasota.Needs Votehttp://www.local802afm.org/2009/01/requiem-95/#harrishttp://www.islander.org/10-1-08/obituaries.phpHerb HarrisHerbert HarrisJ. HarrisJ.HarrisNew York PhilharmonicGeorge Olsen's MusicThe Herb Harris Jazz Trio + +2043307Joe Steele (2)US jazz pianist, born c. 1900, died February 5, 1964 in New York. +Recorded with [a=Savoy Bearcats] in 1926, made a number of recordings as leader, toured with [a=Pike Davis]'s orchestra 1931-1932, later mainly with [a=Chick Webb] (1932-1936). +Needs Votehttps://en.wikipedia.org/wiki/Joe_Steele_(musician)J. SteeleJoe SteeleJohn SteeleJoseph SteeleSteeleChick Webb And His OrchestraJoe Steele And His OrchestraSavoy Bearcats + +2043353Edwin StanleyNeeds Major ChangesAdwin StanleyE. StanleyEdwards StanleyStanley + +2043470Jean-Charles GuiraudFrench pianist, keyboardist, singer-songwriter, musical director and arranger.Needs Votehttps://fr.linkedin.com/in/jean-charles-guiraud-b11955176https://www.facebook.com/jeancharles.guiraud.5/aboutJ. C. GuiraudJean Charles GuiraudGrand Orchestre De L'Olympia + +2044057Pekka KariPekka Johannes KariFinnish violinist. Born on August 30, 1931 in Tampere, Finland. Died on January 9, 2021 in Helsinki, Finland.Needs Votehttps://www.wikidata.org/wiki/Q11887125https://musicbrainz.org/artist/17ddf091-0fef-40c9-a471-db9bd4c1e53a + +2044382Herbert FroitzheimGerman conductor, chorus master and baritone vocalist.Needs Votehttps://www.rias-kammerchor.de/ueber-uns/portrait/index_ger.htmlH. FroitzheimProfessor Herbert FroitzheimRIAS-Kammerchor + +2044441Francesco CatenaItalian classical keyboard instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +2044508Nicola LuisottiItalian conductor and music director of f San Francisco Opera since September 2009. He was born 26 November 1961 in Viareggio, Italy.Needs Votehttp://www.nicolaluisotti.com/https://en.wikipedia.org/wiki/Nicola_Luisotti + +2044509Nadine WeissmannGerman mezzo-soprano vocalist.Needs Votehttps://www.nadineweissmann.com/ + +2044753The Band Of The Royal Military School Of MusicNeeds Major ChangesBand Of Royal Military School Of MusicBand Of The Royal Military School Of MusicBand Of The Royal Military School Of Music (Kneller Hall)Band Of The Royal Military School Of Music Kneller HallBand Of The Royal Military School Of Music, Kneller HallBand of the Royal Military School of Music, Kneller HallEnsemble Of The Royal Military School Of MusicKneller Hall All-Stars BandKneller Hall And The Royal Military School Of MusicOrchestre De L'école Royale Militaire De MusiqueOrchestre De L'école Royale Militaire De Musique, Kneller HallRoyal Military School Of MusicRoyal Military School Of Music Foundation Course BandRoyal Military School Of Music Kneller HallRoyal Military School Of Music Kneller Hall BandRoyal Military School Of Music, Kneller HallRoyal Military School Of Music, Kneller Hall BandThe Band & Chorus Of The Royal Military School Of Music 'Kneller Hall'The Band And Fanfare Trumpeters Of The Royal Military School Of MusicThe Band And Trumpeters Of The Royal Military School Of Music, Kneller HallThe Band Of The Royal Military MarchThe Band Of The Royal Military School Of Music, Kneller HallThe Kneller Hall All Stars BandThe Royal Military School Of Music Kneller Hall Band And TrumpetersThe Royal Military School Of Music, Kneller HallThe Trumpets & Drums Of The Royal Military School Of MusicTrumpeters And Band Of The Royal Military School Of Music (Kneller Hall)Trumpeters Of The Royal Military School Of MusicRoger Tomlinson + +2044872Emmanuel WitzthumEmmanuel WitzthumEmmanuel Witzthum - Biography + +Musician, multidisciplinary artist, artistic entrepreneur and lecturer. + +Needs Votehttp://www.witzthum.webs.comhttp://soundcloud.com/emmanuelwitzthumEmmanuel WitzhumWhispererEnsemble IntercontemporainE And IThe Humble Bee & Players + +2044945John Wasson (2)Composer, producer and brass player + +His works have been performed by organizations such as the [a=The Chicago Symphony Orchestra], the U.S. Air Force [a=The Airmen Of Note], [a=Larry Gatlin & The Gatlin Brothers], and the [a=Dallas Brass]. He has written commissioned works for the many Symphony Orchestras, including the [a=Minnesota Orchestra], [a=Houston Symphony Orchestra], [a=Dallas Symphony Orchestra], Symphony Orchestra of Virginia Beach and [a=Fort Worth Symphony Orchestra], as well as the U. S. Air Force Academy Band and the [a=Dallas Wind Symphony]. Wasson has written and produced music for advertising and television clients such as Electronic Data Systems, the Salvation Army, Zola Levitt Ministries, Radio Shack, Stop N Go, and Kern's Nectars. + +As a low brass performer, John has been a member of the Stan Kenton and Woody Herman Orchestras and the Dallas Brass. He has worked with such notable artists as [a=Michael Bolton], [a=Tony Bennett], [a=Bill Conti], [a=Cab Calloway], [a=Reba McEntire], [a=Liza Minnelli], [a=Frank Sinatra, Jr.], [a=Richard Stoltzman], and [a=Joe Williams]. He also leads his own performing groups the Strata Big Band and the CoolBrass Jazztet. Needs Votehttp://johnwasson.com/J. WassonWassonWoody Herman And His OrchestraStan Kenton And His OrchestraDallas BrassThe Lou Fischer Rehearsal BandThe Dave Gryder BandMichael Waldrop Big Band1:00 O'Clock Lab Band + +2045421Debra WilderAlto vocalist.Needs VoteDebby WilderDebraChicago Symphony ChorusGrant Park Chorus + +2045433Antonio P. QuarantaBass vocalist.Needs VoteAntonio QuarantaChicago Symphony Chorus + +2045439Jelena DirksAmerican oboist and pianist. She's the daughter of [a997515].Needs VoteSaint Louis Symphony Orchestra + +2045543Dominik OstertagGerman violist and violinist, born in Füssen, Germany.Needs VoteSinfonieorchester BaselThe Zurich String Quintet + +2045545Mikayel HakhnazaryanArmenian classical cellist, born in 1976.Needs Votehttp://www.mikayelhakhnazaryan.com/en/homeM. HakhnazaryanMikael HakhnazarianMikayel HaknazaryanMikhail HakhnazaryanMünchener KammerorchesterThe Zurich String TrioKuss QuartettThe Zurich String Quintet + +2045547The Zurich String QuintetNeeds Major ChangesBoris LivschitzZvi LivschitzDominik OstertagMikayel HakhnazaryanMátyás Bartha + +2045548Mátyás BarthaRomanian violinistNeeds VoteMatyas BarthaSinfonieorchester BaselMÁV Szimfónikus ZenekarThe Zurich String QuintetSwiss Baroque SoloistsBeethovenQuartettJakob Helling Concert Big Band + +2045848Clemens SchuldtGerman violinist and conductorNeeds VoteMünchener KammerorchesterPerez QuartetBundesjugendorchester + +2045849Carolina Kurkowski PerezColombian / Polish classical violinist, born in 1984 in Bogota, Colombia, based in Germany.Needs VoteCarolina KurkowskiCarolina Kurkowski-PerezCarolina PerezPerez QuartetBundesjugendorchester + +2045850Perez QuartetNeeds Major ChangesClemens SchuldtCarolina Kurkowski PerezAlexander KissSimon Deffner + +2045851Alexander KissGerman classical violistNeeds VotePerez QuartetBergische Symphoniker + +2045852Simon DeffnerGerman cellist, born 10 April 1983 in Recklinghausen, Germany.Needs VoteWDR Sinfonieorchester KölnPerez QuartetBundesjugendorchesterTrio Chronos + +2046079Ada GoslingAda Gosling-Pozo German violinist, born in 1969.Needs Votehttp://www.adagosling.de/Ada Goslins-PozoRadio-Sinfonieorchester StuttgartBundesjugendorchesterSWR Symphonieorchester + +2046172Helmut NajdaSound engineer for [l107525] in Hannover.Needs Vote + +2046710Dolf BettelheimAdolf BettelheimDolf Bettelheim (1921 - 1996) was a Dutch violinist. He was a member of the [a754894] from 1950 to 1984.Needs VoteConcertgebouworkest + +2046782Giovanni Battista GuariniItalian [b]poet[/b], [b]dramatist[/b], and [b]diplomat[/b]. Born 10 December 1538, died 7 October 1612.Needs VoteB. GuariniBattista GuariniBattista GuarinisG. B. GuariniG. B. ou A. GuariniG. Battista GuariniG.B. GuariniG.B.GuariniGiambattista GuariniGian Battista GuariniGiovan Battista GuariniGiovanni Battista Guarini (?)Guarini + +2047060Heinz ReinickeProducer and engineer of classical recordings.Correct + +2047849The Lester Young-Teddy Wilson QuartetNeeds Major ChangesLester Young & The Teddy Wilson QuartetLester Young - Teddy WilsonLester Young/Teddy Wilson QuartetPres And TeddyGene RameyTeddy WilsonLester YoungJo Jones + +2048680Petra LundinSwedish classical cellist from Gothenburg. She is also a member of Vingakvartetten. + +She is the daughter of [a2365210] and [a2061002].Needs Votehttps://www.linkedin.com/in/petra-cello-lundin-2b492822/?originalSubdomain=sehttps://www.svenskfilmdatabas.se/sv/item/?type=person&itemid=342449Göteborgs SymfonikerSelestOh Yeah Orchestra + +2048947Herbie Fields And His OrchestraNeeds Major ChangesHerbie Fields And OrchestraHerbie Fields orch.Herbie Fields' OrchestraBuddy ArnoldHerbie Fields + +2049371Cees van der KraanClassical oboist.Needs VoteC. V. D. KraanConcertgebouworkestLeonhardt-Consort + +2050184Vivian FearsAmerican songwriter, arranger, pianist & vocalist.Needs Votehttps://crownrecordsstory.wordpress.com/2019/05/05/new-info-uncovered-on-vivian-fears/Gerald Wilson Orchestra + +2051037Paul SeidenJazz trombonistNeeds VotePaul F. SeidenSy Oliver And His Orchestra + +2052149Robin BushmanAmerican violinistCorrecthttps://www.linkedin.com/in/robin-bushman-0057582a/Robyn BushmanAmerican Composers OrchestraOrchestra Of St. Luke'sThe Crescent QuartetWestchester Philharmonic + +2052554Hans Morten StenslandNorwegian violinist, born 1962 in Oslo, Norway.Needs VoteHans M. StenslandOslo Filharmoniske Orkester + +2053168Jubilee All StarsNeeds Major ChangesJubilee All-StarsThe Jubilee All StarsThe Jubilee All-StarsColeman HawkinsLester YoungBuck ClaytonHelen HumesKenny KerseyIrving AshbyBilly HadnottShadow WilsonJoe Wilson (17) + +2053264The Bang BrothersNeeds Major ChangesBang Bros.Bang Brothers + +2053378Tom SatterfieldPianist and celesta player. +He played with the Paul Whiteman Orchestra in the late 1920's. Satterfield moved to Hollywood in the 1930's, & was a musical arranger of film soundtracks including "Belle of the Nineties" (1934), "Goin' to Town" (1935), "Klondike Annie" (1936). +Born: April 06, 1898 in Philadelphia, Pennsylvania. +CorrectSatterfeildSatterfieldScatterfieldT. SatterfieldTommy SatterfieldPaul Whiteman And His Orchestra + +2053390Lynne StevensAmerican vocalist in the late swing-era + +She performed with the orchestras of [a=Al Donahue] and [a=Georgie Auld] before joining [a=Woody Herman]'s orchestra in 1946. In 1948, she was with [a=Lennie Lewis], and recorded "Somebody Else's Picture" with [a=Frankie Carle].Needs VoteLynn StevensWoody Herman And His OrchestraWoody Herman & The Herd + +2053478Daniel DombCanadian cellist. + +Born in Haifa, Israel, Daniel Domb began the violin at eight and switched to the cello at eleven when Paul Tortelier, in Israel at the time, agreed to accept him as a student. When Tortelier moved back to Paris, Daniel followed and two years later moved to New York where he studied with Leonard Rose. At age fifteen, a few months after arriving in New York, Daniel was chosen by Leonard Bernstein to be a soloist with the New York Philharmonic in the Young Peoples Concerts, televised worldwide. Needs Votehttps://danieldomb.com/biosDanielThe Cleveland OrchestraToronto Symphony Orchestra + +2054022Ben LulichBenjamin LulichAmerican classical clarinetistNeeds VoteBenjamin E. LulichBenjamin LulichLos Angeles Philharmonic OrchestraSeattle Symphony OrchestraPacific Symphony Orchestra + +2054085Wolfgang KlosAustrian violist and professor for viola at the Music University of Vienna, born 1953 in Vienna, Austria.CorrectWolfgang Maria KlosVienna Symphonic Orchestra ProjectWiener PhilharmonikerWiener StreichtrioEnsemble Eduard MelkusTonhalle-Orchester Zürich + +2054087Wilfried RehmGerman cellist, born in 1938.CorrectВильфрид РэмWiener PhilharmonikerWiener Streichtrio + +2054088Jan PospichalViolinist, born 1954 in Prague, Czech Republic. First Concertmaster of the [a696225] from 1982 to 2019.Needs Votehttp://www.pospichal-violinmasterclass.at/?sprache=1&seite=42Jon PospichalVienna Symphonic Orchestra ProjectWiener SymphonikerWiener PhilharmonikerWiener Streichtrio + +2054158Josephine HorderBritish classical cellist, born in London.CorrectOrchestra Of The Age Of EnlightenmentDivertimentiThe London Cello Sound + +2054580Jonathan Holland (2)British trumpeter.Needs VoteHollandCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music GroupYoung Musicians Symphony Orchestra + +2055070Art RobeyAmerican jazz singer and trumpeter.Needs VoteCharlie Barnet And His Orchestra + +2055483Teresa Shaw (2)Needs VoteLondon Voices + +2055514Paul Richards (7)Classical clarinetistNeeds VoteLondon Symphony OrchestraLondon Philharmonic Orchestra + +2055516Judith BusbridgeBritish classical violistNeeds VoteThe Academy Of St. Martin-in-the-FieldsOrchestra Of The Royal Opera House, Covent GardenLondon Mozart PlayersTouchwood Piano QuartetProspero Ensemble + +2055727Richard SolisAmerican horn player, born 1947 in New York, New York.CorrectThe Cleveland Orchestra + +2055729Todd Phillips (4)Classical violin and viola player. +[b]For the double bassist, use [a390631][/b].Needs VoteOrpheus Chamber OrchestraOrion String Quartet + +2055760Bert GassmanAmerican oboist and English horn player, born 29 May 1911 and died 14 November 2004.Needs Votehttps://www.imdb.com/name/nm3438698/Herbert GassmanThe Cleveland OrchestraLos Angeles Philharmonic Orchestra + +2055968Georg Friedrich SchenckGerman classical pianist, born in Aachen in 1953.Needs Vote + +2056598Nathan SolomsonAmerican jazz trumpeter.Needs VoteNathan "Shorty" SolomsonRed SolomsonShorty SalomonsonShorty SolomonsonShorty SolomsonShorty SolomonJimmy Dorsey And His Orchestra + +2056599Don MattesonDonald Milton MattesonAmerican jazz trombonist and vocalist from the swing-era. +Born September 1910 in McCook, Nebraska, USA. +Died March 12, 1995 in Boise, Idaho, USA. +Matteson began his career as a professional Big Band musician after meeting Glenn Miller while touring with the Smith Balleu Band in 1931. +Matteson went on the road with the Dorsey Brothers as a trombonist and as a member of the Dorsey Brothers Trio. When the Dorsey Brothers Band split up, he remained with Jimmy Dorsey’s band until World War II. After the war, he did not return to playing music professionally and became a vocational rehabilitation counselor.Needs Votehttps://www.mcall.com/1995/03/31/donald-matteson-84-trombonist-played-in-dorsey-brothers-band/Don MathesonDon MattersonDon MatthesonDon MattisonDonald MattisonJimmy Dorsey And His OrchestraThe Dorsey Brothers OrchestraDorsey Brothers Vocal Trio + +2056600Jerry RosaAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraVan Alexander And His OrchestraJimmy Dorsey And His OrchestraAlvino Rey And His OrchestraThe Band That Plays The BluesVan Alexander And His Swingtime Band + +2056619John Gould (5)John L. GoodClassical violist and violinist. +He was Principal Viola with the [a=London Symphony Orchestra] (1963-1966).Needs VoteLondon Symphony OrchestraAustralian Youth OrchestraCarl Pini Quartet + +2056887Stefan Thomas (2)PianistNeeds Vote + +2056889Frank ZabelGerman pianist and composer, born 1968 in Meinerzhagen.Needs VoteZabel + +2057049Marvin Wright (3)Marvin M. WrightAmerican jazz pianist. + +Born : January 08, 1911 in Wessington, South Dakota. +Died : December 07, 1980 in Los Angeles, California.Needs Votehttps://www.ascap.com/repertory#ace/writer/33249401/WRIGHT%20MARVIN%20MM. WrightM.M.WrightWrightJimmy Dorsey And His Orchestra + +2057097Alfred LipkaGerman violist and music professor, born in Aussig an der Elbe, Germany (today Ústí nad Labem, Czech Recpublic) and died 12 July 2010 in Berlin, Germany at the age of 79. Needs VoteRundfunk-Sinfonie-Orchester LeipzigStaatskapelle BerlinStreichquartett der Deutschen Staatsoper Berlin + +2057208Wolfgang KloseGerman operatic bass vocalistNeeds Votehttp://www.vircanto.com/wolfgang-klose/https://www.br-chor.com/singer/wolfgang-klose/Chor Des Bayerischen Rundfunks + +2057456Carl LentheAmerican trombonist and Professor of Music.Needs VoteLentheBayerisches StaatsorchesterBamberger SymphonikerPhilharmonia À Vent + +2057459Gerald CarlyssAmerican timpanist, born in 1941.CorrectThe Philadelphia OrchestraCincinnati Symphony Orchestra + +2057463Bernard AdelsteinAmerican trumpeter, born 1928 in Cleveland, Ohio; died September 30, 2017 in Sarasota, Florida.Needs Votehttp://www.bernardadelstein.com/index.htmlThe Cleveland OrchestraDallas Symphony OrchestraMinneapolis Symphony OrchestraPittsburgh Symphony Orchestra + +2057895Allan WithingtonNeeds VoteAlan WithingtonAllen WithingtonBergen Filharmoniske OrkesterDag Arnesen 13-tett + +2058692Ya-Fei ChuangClassical pianist from Taiwan, she is a graduate from the Musikhochschule Freiburg (Germany).Needs VoteThe Academy Of Ancient MusicSpectrum Concerts Berlin + +2059628Karl HusumClassical trumpeter.Needs VoteCarl HusumDR SymfoniOrkestret + +2059722Ian CuthillClassical bassoonist.Needs VoteI. CuthillEnglish Chamber OrchestraThe King's Consort + +2059723Martin StancliffeClassical oboist.Needs VoteThe Academy Of Ancient MusicThe King's Consort + +2059724George LawnClassical PercussionistNeeds VoteGabrieli ConsortThe Academy Of Ancient MusicLondon Classical PlayersThe King's Consort + +2059736David Jones (21)Classical oboe player.Needs VoteThe Academy Of Ancient MusicThe King's Consort + +2059739Abigail GrahamClassical oboist and Liner Notes translatorNeeds VoteLes Arts FlorissantsThe King's ConsortLes Amis De PhilippeDresdner Barockorchester + +2059740Ben Cooper (6)Tenor vocalistNeeds VoteSt. John's College Choir + +2060133Edward KudlakCanadian violist, born 5 May 1936 in Montreal, Canada.Needs VoteE. KudiakE. KudlakEd KudlakOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchestre symphonique de MontréalWiener BarockensembleSeifert String QuartetBiedermeier Ensemble Wien + +2060136Eugène HusarukCanadian violinist, based in Quebec since 1949. +(Warsaw, Poland, 2 March 1932 - Montréal, 1 July 2018)Needs VoteE. HusarukEugene HusarukEugène UsarukUgène HusarukOrchestre symphonique de MontréalOrchestre De Radio-Canada + +2060413Marcel PootBelgian composer, professor, and musician (born 7. May 1901 in Vilvoorde, Belgium, died 12. June 1988 in Brussels).Needs Votehttps://en.wikipedia.org/wiki/Marcel_PootM. PootPootМ. ПоМ. Пот + +2060752Emmanuel Jacques (2)French classical Cello & Bass Violin instrumentalistNeeds VoteEmmanuel JacquesAccademia BizantinaIl Seminario MusicaleLes Talens LyriquesLa Simphonie Du MaraisCafé ZimmermannAmarillisLes Basses RéuniesDa Pacem (2)Il ConvitoLa Petite SymphonieLes Épopées + +2060753Gilone Gaubert-JacquesClassical violinist.Needs VoteGilone GaubertGilone Gaubert JacquesPulcinellaLes Talens LyriquesLa Simphonie Du MaraisLe Poème HarmoniqueAmarillisLes PaladinsLa Petite Symphonie + +2060792Christopher DixonBass/baritone vocalist.CorrectThe Choir Of The King's ConsortThe Monteverdi Choir + +2060798Rebekah DurstonClassical violinist.Needs VoteRebecca DurstonGabrieli PlayersThe King's Consort + +2060802John HutchinsClassical trumpeter.Needs Votehttps://www.linkedin.com/in/john-hutchins-436071180/The SixteenThe King's ConsortRetrospect Ensemble + +2060806Adrian WoodwardClassical trumpet & cornett instrumentalistNeeds Votehttp://adrianwoodward.com/index.htmGabrieli PlayersThe King's ConsortHis Majestys Sagbutts And CornettsLondon Early OperaMusicians Of Shakespeare's GlobeThe Bach Players + +2060808John Young (14)Classical trumpeter.Needs VoteCity Of London SinfoniaThe King's Consort + +2061733Bernard ArrietaClassical bass vocalistCorrectБернар АрьетаChoeur National De L'Opéra De ParisLe Poème Harmonique + +2061734Damien GuillonFrench classical countertenor vocalist (born 1981). +He is the conductor and leader of ensemble [a=Le Banquet Céleste].Needs Votehttps://banquet-celeste.fr/presentation/damien-guillon/D. GuillonCollegium VocaleLes CyclopesBach Collegium JapanLe Poème HarmoniqueLes Chantres Du Centre De Musique Baroque De VersaillesAkadêmiaSette VociLe Banquet Céleste + +2061735Elisabeth GeigerÉlisebeth GeigerClassical keyboard instrumentalist and Art Director at label ALPHANeeds VoteÉlisabeth GeigerLe Concert SpirituelLe Concert D'AstréeL'ArpeggiataLe Poème HarmoniqueDoulce MémoireEnsemble La FeniceLes Veilleurs de NuitGli Angeli GenèveAkadêmiaEnsemble EolusAliquando + +2061737Mélanie FlahautFrench Oboe, Recorder and Bassoon instrumentalist Needs VoteLe Concert SpirituelLes Folies FrançoisesCafé ZimmermannLe Poème HarmoniqueEnsemble CorrespondancesEnsemble L'OrnamentoLa Chapelle RhénaneCappella MediterraneaGalilei ConsortSyntagma AmiciAbendmusiken BaselMillenium OrchestraLes Musiciens Du ParadisLes Traversées BaroquesLes Ombres (3)La Petite SymphonieLes Épopées + +2061738Isabelle Saint YvesClassical violin + viol playerNeeds VoteIsabelle Saint-YvesLe Concert D'AstréeLe Poème HarmoniqueLes Cris de ParisLes PaladinsLes DominosLunaisiensSit FastLes Musiciens Du Paradis + +2061741Vincenzo RuffoItalian composer of the Renaissance (born 1510, Verona – died February 9, 1587, Sacile, Friuli-Venezia Giulia). +Correcthttp://en.wikipedia.org/wiki/Vincenzo_RuffoRuffoV. RuffoVicenzo RuffoVincento Ruffo + +2063127Michel Carré (2)Michel Antoine Florentin CarréFrench librettist, born 20 October 1821 in Besançon, France - died 27 June 1872 in Argenteuil, France. +He often worked with [a=Jules Barbier]. +Needs Votehttp://en.wikipedia.org/wiki/Michel_Carr%C3%A9https://adp.library.ucsb.edu/names/104652& CarréCarpeCarreCarrèCarréHoppJ. HoppJ. KoppKareM CarréM. CarreM. CarréM. CorreM.CarreM.CarréMichael CarréMichel CarreMichel CarreeMichel CarréMichel CarvéMichele CarréN. CarréКарреМ. КарреТ. Каре + +2063383Bill Harris & His New MusicNeeds Major ChangesBill HarrisBill Harris & His New Jazz SoundsBill Harris And His New MusicGeorge BarnesChubby JacksonRalph BurnsBarrett DeemsBill HarrisMickey FolusJohn LaportaSalvatore DeleggeTed Wheeler (3) + +2063824Johann Friedrich RochlitzJohann Friedrich RochlitzJohann Friedrich Rochlitz (12 February 1769, Leipzig - 16 December 1842, Leipzig) was a German playwright, musicologist and art and music criticCorrecthttp://www.en.wikipedia.org/wiki/Johann_Friedrich_RochlitzF. RochlitzFr. RochlitzFriedrich RochlitzJ. F. RochlitzJ.F RochlitzJ.F. RochlitzJoh. Fr. RochlitzJoh. Friedrich RochlitzRochlitz + +2063908Alexandrine CaravassilisClassical violinist.CorrectLes Musiciens Du Louvre + +2063909Louis Creac'hClassical violin & viola instrumentalistNeeds VoteLouis CreachLouis Créac'hLes Musiciens Du LouvreRicercar ConsortPygmalionEnsemble CorrespondancesEnsemble MasquesNevermind (10)Les Ombres (3)Jupiter (55)Ensemble Stravaganza + +2063911Andrès LocatelliClassical recorder player.CorrectLes Musiciens Du Louvre + +2063912Christian StaudeClassical double bassist.Needs VoteLes Musiciens Du LouvreOrchestra Of The 18th CenturyLes Musiciens De Saint-JulienNew Dutch AcademyLe Banquet CélesteLe Concert de la Loge + +2063914Yannick MailletClassical hornist.Needs VoteLe Concert D'AstréeLes Musiciens Du LouvreLes SièclesLes MuffattiLa Petite SymphonieMusica 8 + +2063915Clotilde GuyonFrench classical double bassist, born in 1970.Needs VotePulcinellaConcerto KölnLes Musiciens Du LouvreOrchester Der Ludwigsburger Schlossfestspiele + +2063916Thibault NoallyClassical violinist and leader of his own ensemble, [a6862515], born 1982.Needs VotePulcinellaLes Musiciens Du LouvreEnsemble SyntoniaLes Accents + +2063917Joël OechslinClassical viola player.CorrectLes Musiciens Du Louvre + +2063918Nils WieboldtClassical cellist.Needs VoteAkademie Für Alte Musik BerlinLes Musiciens Du LouvreL'Orfeo BarockorchesterMusica Amphion + +2063919Nicolas MazzoleniClassical violinist & conductorNeeds VoteNicholas MazzoleniPulcinellaLe Parlement De MusiqueLes Musiciens Du LouvreConcerto Rococo + +2063920Thomas WesolowskiClassical bassoonist.CorrectLes Musiciens Du Louvre + +2063921Caroline LambeléClassical violinist.CorrectLes Musiciens Du Louvre + +2063922Jorge RenteriaSpanish classical hornist born in Bilbao.Needs VoteJorge RenteiraThe Amsterdam Baroque OrchestraLes Musiciens Du LouvreOrquesta Barroca De Sevilla + +2063923Florian CousinClassical flautist.CorrectLes Musiciens Du Louvre + +2063925Andreas ParmerudClassical trumpeter.CorrectLes Musiciens Du Louvre + +2063926Heide SibleyClassical violinist.Needs VoteLes Musiciens Du LouvreLes PaladinsOpera Fuoco + +2063927Konstantin TimokhineKonstantin TimokhineClassical hornist, Natural Horn & Cornett instrumentalistNeeds Votehttp://www.timokhine.com/Orchestra Ensemble KanazawaConcerto KölnLes Musiciens Du LouvreIl Giardino ArmonicoKammerorchester BaselZurich Opera OrchestraTonhalle Orchester ZürichEnsemble Instrumental De Lausanne + +2063928Emmanuel MureClassical wind instrumentalistNeeds VoteEmmanuel MûreLes Musiciens Du LouvreEnsemble StradivariaLes PaladinsLe Cercle De L'HarmoniePygmalionGli Angeli GenèveLa TempêteLe Concert de la Loge + +2063929Emmanuel LaporteClassical oboist.Needs VoteLes Musiciens Du LouvreRicercar ConsortPygmalionGli Angeli GenèveEnsemble Claroscuro + +2063930Toshinori OzakiJapanese lutenist, theorbo and baroque guitar artist, born in Osaka, Japan.Needs VoteToshi OzakiLes Musiciens Du LouvreKammerorchester BaselBarockorchester L'Arpa FestanteEnsemble Il CapriccioTeatro Del MondoEnsemble ColoritoCappella Academica FrankfurtWrocławska Orkiestra Barokowa + +2063931Timothée OudinotClassical oboist.Needs VoteCollegium VocaleLes Musiciens Du LouvreEuropean Brandenburg EnsembleCiné-Trio + +2063932Takenori NemotoJapanese classical hornist.Needs VoteTakénori NemotoTakénori Némoto根本 健Les Musiciens Du LouvreOrchestre Poitou-CharentesOrchestre De Chambre PelléasOrchestre De Chambre Nouvelle-Aquitaine + +2063934Francesco CortiItalian harpsichordist and organist born 1984 - Arezzo, ItalyNeeds Votehttps://en.wikipedia.org/wiki/Francesco_CortiPulcinellaLes Musiciens Du LouvreSolistenensemble KaleidoskopZefiroHarmonie UniverselleIl Pomo d'OroIl Gioco De' Matti + +2064214Alexander KerrClassical violinistNeeds VoteConcertgebouworkestDallas Symphony OrchestraCincinnati Pops OrchestraIndianapolis Symphony Orchestra + +2064220The Bopland BoysNeeds Major ChangesHampton HawesRoy PorterBarney KesselRed CallenderHoward McGheeTrummy Young + +2064520Sebastian PeschkoGerman pianist (* 30 October 1909 in Berlin, Germany; † 29 September 1987 in Celle, Germany).Needs Votehttps://en.wikipedia.org/wiki/Sebastian_PeschkoPeschkoSeb. PeschkoSebastien Peschko + +2064921Vladimir De KanelBaritone and Bass vocalist.Needs VoteGrigoriaV. De Kanell + +2064922Berliner KonzertchorNeeds Major ChangesBerlin Concert ChorusBerliner Konzert-ChorChorus + +2064924Neumar StarlingNeeds Major ChangesN. Starling + +2064951Arthur ApeltGerman conductor and music director, born 25. August 1907 in Eibau, died 1993.Correct + +2065004Savitski LeonidNeeds Major Changes + +2065006Cameron FionaNeeds Major Changes + +2065364Unto SilanderNeeds VoteDallapé + +2065378Pentti TiensuuA Finnish jazz bassist, active from 1950's to 1970's. Dead in 1982. + +He was married in the 1960's and 70's with singer [a=Annikki Tähti].Needs VoteJani Uhleniuksen Uusrahvaanomainen OrkesteriPentti Tiensuun OrkesteriOld House Stompers + +2065932David Adams (9)Classical violin and viola player.Needs VoteDavid AdamsThe Nash EnsembleEndymion EnsembleLondon Bridge TrioRoyal Welsh Chamber Players + +2066026Sophia KessingerAmerican violinist.Needs Votehttps://www.imdb.com/name/nm7038638/The American Symphony OrchestraOrpheus Chamber Orchestra + +2066037Christof HuebnerChristof Michael HuebnerChristof Huebner (7 August 1963 - 2 March 2025) was an Austrian violist and former artistic director of the [a837570].Needs VoteChristoph HuebnerChristot HuebnerOrchester Der Wiener StaatsoperWiener PhilharmonikerOrpheus Chamber OrchestraWiener KammerensembleMonadnock Festival Orchestra + +2066200Jeanne BaxtresserAmerican classical flautist (born 2 August 1947 in Bethlehem, Pennsylvania). She played as Principal Flautist with the Montreal Symphony beginning in 1969 and later Principal Flute with the Toronto Symphony beginning in 1976. She joined the New York Philharmonic as its first female Principal Flute in 1981 before retiring in 1998.Needs Votehttp://www.jeannebaxtresser.com/https://en.wikipedia.org/wiki/Jeanne_BaxtresserJeanne BaxtrasserJeanne BaxtresseJeanne BextresserNew York PhilharmonicToronto Symphony OrchestraOrchestre symphonique de MontréalPro Arte Wind Quintet + +2066289Mireille CardozClassical violinist.Needs VoteMireille CardozeLes Arts FlorissantsLa Grande Ecurié Et La Chambre Du RoyQuatuor Alain Moglia + +2066290Gregory ReinhartAmerican classical bass vocalist (born June 18, 1951 in Pavilion, New York).Correcthttp://en.wikipedia.org/wiki/Gregory_ReinhartG. ReinhartGregory ReinhardtGrégory ReinhartReinhartLes Arts Florissants + +2066811Jan ŠimonJan ŠimonCzech classical cellist. Born in 1913, died in 1974. +Father of classical violinist [a=Jan Šimon (2)].CorrectJ. SimonJ. ŠimonJan SimonJean SimonThe Czech Philharmonic OrchestraPrague Madrigal SingersPro Arte Antiqua + +2066863Alois SchlorAustrian classical hornist, born 1950.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienTonkünstler Orchestra + +2066867Michael VladarAustrian timpanist, born 1962 in Vienna, Austria.CorrectWiener SymphonikerCamerata Academica SalzburgDas Mozarteum Orchester Salzburg + +2066868Johannes FliederClassical viola player.Needs VoteJohannesVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinConcentus Musicus WienFlieder TrioThe Vienna Chamber EnsembleIgnaz Pleyel Quintett + +2066965Miff SinesBig band trombonistNeeds VoteDon "Miff" SinesMilt SinesStan Kenton And His OrchestraJan Savitt And His Top HattersLarry Clinton And His Orchestra + +2067336Bruno BělčíkBruno Bělčík (14 January 1924 - 10 March 1990) was a Czech violinist.Needs VoteB. BělčíkBruno BelcikBělčíkБруно БельчикБруно Бельчик (скрипка)The Prague Symphony OrchestraThe Czech Philharmonic OrchestraPrague Trio + +2068094Leonard DommettLeonard Bertram Dommett Australian violinist, conductor, and teacher. Born in Toowoomba, Queensland, in 1928. +He was made concert master, and later conductor of the [a9621802]. He moved with the company to New Zealand and then to London, England. There he played with the [a=London Symphony Orchestra], the [a=London Philharmonic Orchestra] and the [a=Royal Philharmonic Orchestra]. He returned to Australia in 1953 and played with the [a=Queensland Symphony Orchestra] and the [a=Sydney Symphony Orchestra]. In 1961, he became leader and later deputy conductor of the [a=Adelaide Symphony Orchestra]. In 1965, he became concertmaster of the [a=Melbourne Symphony Orchestra] (MSO), and later assistant conductor. After he left the MSO, he taught at the [l=Canberra School Of Music] for the next two decades. +In 1977, he was appointed an Officer of the Order of the British Empire (OBE).Needs Votehttps://www.youtube.com/channel/UCit5s087wHGiEg_aASWoMJAhttps://open.spotify.com/artist/36JuNS4y6qvhCDlIBtiVCzhttps://music.apple.com/us/artist/leonard-dommett/296290836https://en.wikipedia.org/wiki/Leonard_Dommetthttps://www.smh.com.au/national/an-inherited-passion-and-ability-20060515-gdnjlr.htmlhttps://www.imdb.com/name/nm1989247/L. DommettLen DommettLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraMelbourne Symphony OrchestraAdelaide Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenSydney Symphony OrchestraQueensland Symphony OrchestraRambert Dance Company + +2068261Gabriel CrouchBritish bass/baritone vocalist, choral conductor and record producer, born September 19, 1973.Needs Votehttps://en.wikipedia.org/wiki/Gabriel_Crouchhttp://www.bach-cantatas.com/Bio/Crouch-Gabriel.htmhttps://www.facebook.com/gabriel.crouch.12The King's SingersHenry's EightThe Choir Of Westminster AbbeyTenebrae (10)Gallicantus + +2068262Elizabeth WeisbergAmerican soprano, based in the UK.Needs VoteElizabeth WiesbergMetro VoicesChorus Of The Royal Opera House, Covent GardenLa Nuova Musica + +2068263Ruth MasseyMezzo-soprano vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Massey-Ruth.htmhttps://www.facebook.com/ruth.massey.921The Cambridge SingersThe SixteenPolyphonyThe Eric Whitacre SingersTenebrae (10) + +2068266Alicia CarrollSoprano classical vocalist.Needs VoteGabrieli ConsortPolyphonyCambridge Taverner Choir + +2068309Gratiel RobitailleCanadian classical violinistNeeds VoteG. RobitailleGratiel RobinaiileGratien RobitailleOrchestre symphonique de Montréal + +2068499Ann KopelmanAnnette KopelmanCorrectA. CopelmanA. KopelmanA. KopelmannAnn KopelmannAnne KopelmanKopelmanKopelmannAnouk (4) + +2068590Jonathan CoadClassical bass-baritone vocalist, born in Crayford, Kent, England.Needs VoteChorus Of The Royal Opera House, Covent Garden + +2068594Jonathan Fisher (2)Classical bass vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +2069861Jean-Pierre GarciaClassical violist.Needs VoteLe Concert Spirituel + +2070198Robert GierlachClassical Bass / Baritone vocalistNeeds VoteGierlachOrkiestra Kameralna Progress + +2070199Elisabeth GrünertNeeds Major Changes + +2070200Francesca Pedacisoprano + +Winner of the national «As.Li.Co.» competition in Milan and the «Toscanini-Verdi» competition in Parma, Francesca Pedaci made her debut in the title role of La Cecchina, ossia la buona figliola by Niccolò Piccinni. This was followed by a great success at the Teatro alla Scala in Luigi Cherubini’s Lodoiska, conducted by Riccardo Muti. In the meanwhile she graduated in Languages summa cum laude.Needs VotePedaci + +2070202Daniel JohannsenAustrian tenor vocalist born in 1978Needs Votehttp://www.danieljohannsen.com/index2.htmJohannsenIl GardellinoChor & Orchester Der J.S. Bach Stiftung St. Gallen + +2070203Anne BierwirthGerman classical alto vocalist born at Unkel am RheinNeeds Votehttp://www.bach-cantatas.com/Bio/Bierwirth-Anne.htmBierwirthBierwithEx TemporeBalthasar-Neumann-ChorZefiro TornaChor Der J.S. Bach StiftungHimlische CantoreyCapella Spirensis + +2070427Kerstin WagnerGerman alto vocalistNeeds VoteVocalensemble Rastatt + +2070428Tobias AltvaterNeeds Major Changes + +2070429Rainer TetenbergerNeeds Major Changes + +2070431Barbara Emilia SchedelSoprano vocalistNeeds Votehttps://www.barbara-emilia-schedel.de/ + +2070825Henk GuldemondClassical contrabassistNeeds VoteGuldemondConcertgebouworkest + +2070900Fefti OuazannaNeeds Major ChangesF. OuazannaY. OuazannaJean-Pierre FestiYvon Ouazana + +2071600Marie-Louise DählerSwiss harpsichordist with focus on chamber music and improvisation.Needs Votehttps://en.wikipedia.org/wiki/Marie-Louise_D%C3%A4hlerThe Hilliard EnsembleStrings Of Zürich + +2071648Helmar StiehlerClassical cellist.CorrectHellmar Stiehlerヘルマー・スティフラーMünchner PhilharmonikerConsortium ClassicumStuttgarter KlaviertrioJoachim-Koeckert-Quartett + +2071826Ylvali ZilliacusYlvali Ingunsdotter McTigert Zilliacus (née Zilliacus)Swedish classical viola player, born on October 20, 1978 in Sofia, Uppland. + +She is married to [a2722484].Needs Votehttps://www.facebook.com/ylvali.zilliacushttps://www.instagram.com/ylvalimctz/https://lendvaistringtrio.com/biographies/https://www.musikiuppland.se/vara-ensembler/uppsala-kammarsolister/in-english/https://www.imdb.com/name/nm7093430/https://se.linkedin.com/in/ylvali-zilliacus-8bb7ba84Yivali ZilliacusYlva-Li McTigert-ZilliacusYlvali McTigert ZilliacusMahler Chamber OrchestraThe English ConcertLendvai String TrioEuropean CamerataThe Zilliacus Quartet + +2073085Wolf-Dieter BatzdorfProf. Wolf-Dieter BatzdorfGerman violin player and conductor born 1947 in Berlin.Needs Voteヴォルフ=ディーター・バツドルフBerliner Sinfonie OrchesterStaatskapelle BerlinBerliner StreichquartettCamerata MusicaSalonorchester Eclair + +2073092Manfred PernutzClassical double-bass playerNeeds VoteKammerorchester Carl Philipp Emanuel Bach + +2074006Gisela FrankeNeeds Major Changes + +2074117Douglas KirkClassical cornettist. He studied musicology at The University of Texas at Austin (M.M.) and McGill University (Ph.D.).Needs VoteGabrieli PlayersLes Voix BaroquesThe Texas Early Music ProjectLes Sonneurs (2) + +2074938Hans WiesbeckHans Wiesbeck was an Austrian violinist, bandleader, composer and arranger.Needs VoteH. WiesbeckFred WeindorfSymphonie-Orchester Des Bayerischen RundfunksOrchester Hans Wiesbeck + +2075040Eddie Lang-Joe Venuti And Their All Star OrchestraNeeds Major ChangesEddie Lang - Joe Venuti & Their All Star OrchestraEddie Lang - Joe Venuti And Their All Star OrchestraEddie Lang – Joe Venuti & Their All Star OrchestraEddie Lang, Joe Venuti & Their All-Star OrchestraEddie Lang, Joe Venuti And Their All Star OrchestraEddie Lang-Joe Venuti & Their All Star OrchestraEddie Lang-Joe Venuti & Their All-Star OrchestraEddie Lang-Joe Venuti All Star OrchestraEddie Lang-Joe Venuti And Their All-Star OrchestraEddie Lang-Joe Venuti OrchestraEddie Lang-Joe Venuti With Their OrchestraJoe Venuti - Eddie Lang & Their All-Star OrchestraJoe Venuti - Eddie Lang All StarsJoe Venuti - Eddie Lang All Stars OrchestraJoe Venuti - Eddie Lang And Their All Star OrchestraJoe Venuti And Eddie Lang With Their All Star OrchestraJoe Venuti, Eddie Lang & Their All-Star OrchestraJoe Venuti, Eddie Lang And Their All Star OrchestraJoe Venuti, Eddie Lang And Their All-Star OrchestraJoe Venuti-Eddie Lang & Their All Star OrchestraJoe Venuti-Eddie Lang & Their OrchestrasJoe Venuti-Eddie Lang All Star OrchestraJoe Venuti-Eddie Lang And Their All Star OrchestraJoe Venuti-Eddie Lang And Their All-Star OrchestraLang-Venuti All Star OrchestraThe Joe Venuti - Eddie Lang All StarsThe Venuti-Lang All-Star OrchestraThe Venuti/Lang All Star OrchestraVenuti-Lang All Star OrchestraVenuti-Lang All StarsVenuti-Lang All-StarVenuti-Lang All-StarsVenuti-Lang And Their All-Star OrchestraBenny GoodmanHarry GoodmanJoe VenutiFrank SignorelliEddie LangJack TeagardenCharlie TeagardenRay BauducWard LayNeil Marshall (3) + +2075441Bernhard SchwarzGerman classical cellist.Needs VoteTrio Alkan + +2075442Martin HaunhorstClassical violinist and concertmasterNeeds VoteBayer PhilharmonikerBergische Symphoniker + +2075443Dorothee WohlgemuthGerman classical soprano vocalist born in Worms, GermanyNeeds VoteDorothee WolgemuthThe Amsterdam Baroque OrchestraBalthasar-Neumann-ChorCoro Della Radio Televisione Della Svizzera Italiana + +2075444Georg PoplutzGerman classical tenor vocalist, born in Arnsberg, Germany; graduated in English and Music Education at the Universities of Münster and Dortmund.Needs Votehttp://www.georgpoplutz.de/http://www.bachchormainz.de/blog/kuenstler-und-ensembles/PoplutzWeser-RenaissanceBachchor MainzKölner AkademieWestfälischer Kammerchor MünsterJohann Rosenmüller EnsembleAbendmusiken BaselKirchheimer BachConsort + +2075445Jens HamannClassical bass vocalistNeeds VoteHamannLa Petite BandeBach-Chor SiegenGli Scarlattisti + +2075597Ernesto BraucherClassical viola player.Needs VoteErnest BraucherErnesto BaucherAccademia BizantinaEuropa GalanteIl Giardino ArmonicoAlessandro Stradella ConsortOrchestra Sinfonica Del Teatro Carlo Felice Di GenovaCappella GabettaConserto VagoQuartetto Aira + +2077123Nicola DomeniconiItalian double bass player. Was a member of the [a=Gustav Mahler Jugendorchester] in 1999. Has been active in recording since 2009. He graduated in double bass at the Florence Conservatory before postgraduate studies at the Hochschule der Künste Berlin. He has performed as the first double bass with the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia] in Rome, and with the [a=Filarmonica Arturo Toscanini] in Parma, and the Accademia della Scala in Milan. In 2001 he won the international competition organized by the Maggio Musicale Fiorentino Orchestra, and he began his permanent career. Together with his symphonic and operatic commitment, Domeniconi undertakes a series of chamber music activities, including his collaboration with the Baroque [a=Modo Antiquo] ensemble. He has made numerous international tours (Japan, India, U.S.A, South America, Russia, Turkey), playing under conductors like [a=Riccardo Muti] and [a=Claudio Abbado]. He also organizes singing masterclasses with his partner Nicoletta Fabbri (née [a=Nicoletta Sanzin]), with whom he arranged and recorded two CDs. Lately he has dedicated himself to the construction of bows together with his friend Andrea Proietti, a Roman bowmaker active in Cesena. Needs VoteModo AntiquoOrchestra dell'Accademia Nazionale di Santa CeciliaFilarmonica Arturo ToscaniniLa Magnifica ComunitàGustav Mahler JugendorchesterOrchestra Del Maggio Musicale FiorentinoI Musici Del Gran Principe + +2077125Lorenzo BiaginiClassical viola player.CorrectModo AntiquoLes Talens Lyriques + +2077130Silvia RinaldiClassical violinist.Needs VoteEuropa GalanteModo AntiquoIl Complesso BaroccoNew Landscapes + +2077131François De RudderClassical bassoonist.Needs Votehttps://www.facebook.com/francois.derudderFrancois De RudderEuropa GalanteModo AntiquoEnsemble ElymaAuser MusiciIl Complesso BaroccoOrchestra Aglàia + +2077409Daniel AvshalomovAmerican violist and founding member of [a837570].Needs VoteOrpheus Chamber OrchestraAmerican String Quartet + +2077458Georg EggerThe Italian violinist and conductor, Georg [George] Egger, studied with Professor [a4729381] at the “C. Monteverdi” Conservatory. He passed his concert diploma in Düsseldorf studying under Sándor Végh and attened a variety of master-classes with such noteworthy musicians as Professors Odnoposoff, Schneiderhan and Szeryng. +From 1974 to 1986 Georg Egge was concert-master at the [a935812]. In addition, he has made several soloist appearances throughout Europe, Russia, Japan, Canada and the USA. Chamber music collaboration connects him with artists such as [a578734], [a610802], [a207945], [a850889], [a859030] and [a1696831], [a379816], [a859043] and others. +Georg Egger is concert-master of the Bach-Collegium Stuttgart under [a835265]. With the latter he took part in the recording of all of J.S. Bach's works by Hänssler, with the CD "Werke für Violine und Basso continuo" released in 2000 being particularly noteworthy. He is concert-master of the [a3730641] (Director: [a1114862]) and a member of the [a10868704] (Director: [a885766]). Since 1987, he has been director of the Accademia d'Archi Bolzano = [a2841835]. +Since 1985, Georg Egger has been Professor at the “C. Monteverdi” Conservatory where he studied and guest lecturer at the international Bach academy organised by Helmuth Rilling.Needs VoteGeorge EggerBachcollegium StuttgartWürttembergisches KammerorchesterSüdwestdeutsches KammerorchesterKlassische Philharmonie Stuttgart + +2077587Buddy FiskCredited as alto sax player.Needs VoteB. FiskBud FiskJack Teagarden's ChicagoansJack Teagarden And His Orchestra + +2077591Tommy Moore (3)US jazz trombonistNeeds VoteT. MooreTom MooreTom Moore (9)Jack Teagarden's ChicagoansJack Teagarden And His OrchestraArcadia Peacock Orchestra Of St. Louis + +2077592Bonnie PottleBonnie PottleEarly New Orleans jazz / Swing-era string bassist, brass bass/tuba player.Needs VoteB. PottleBenn PottleBennie PottleBenny PottleBonnie PattleBonny PottleWingy Manone & His OrchestraJack Teagarden And His Orchestra + +2077597Bob ConselmanJazz drummer/vibraphonist active in the Chicago area in the 20s. He jammed with the group of aspiring young jazz musicians some of whom later formed The Wolverines. Later (1928) he played drums on Benny Goodman's first dates released under his own name.Needs Votehttp://redhotjazz.com/bgb.htmlB. ConselmanBob ConsolmanBob ConzelmanBob ConzelmannRobert ConzelmannJack Teagarden's ChicagoansJack Teagarden And His OrchestraSextette From HungerBenny Goodman's Boys + +2077599Joe CatalyneSaxophonistNeeds VoteJ. CatalyneJack Teagarden And His OrchestraLouis Prima & His New Orleans GangCloverdale Country Club Orchestra + +2077600Max FarleyEarly jazz clarinet and alto, tenor and bass saxophone playerNeeds VoteM. FarleyRed Nichols' StompersJack Teagarden And His OrchestraJoe Venuti And His OrchestraFred Elizalde And His MusicAll Star OrchestraCloverdale Country Club OrchestraJoe Venuti And His New YorkersPaul Whiteman & His Concert OrchestraWingy Manone's Harmony Kings + +2077601Whoopee MakersBand that included [a=Benny Goodman] and [a=Jack Teagarden]. + +[b]Please do NOT confuse with [a339925].[/b]Needs Votehttps://books.google.com/books?id=W1SvAwAAQBAJ&pg=PA160&dq=The+Whoopee+Makers&hl=en&sa=X&ved=0ahUKEwiTx778qZHYAhWHPiYKHS5VDC0Q6AEIMzAC#v=onepage&q=Whoopee%20Makers&f=falseBenny Goodman's Whoopee MakersJack Teagarden And The Whoopie MakersThe Whoopee MakersIrving Mills And His Hotsy Totsy GangMajestic Dance OrchestraMills Merry MakersDixie DaisiesMills Musical ClownsPaul Mills And His Merry MakersJack Winn And His Dallas DandiesGoody And His Good TimersGil Rodin's BoysVincent Richards And His OrchestraJimmy Bracken's Toe TicklersThe Cotton Pickers (8)Benny GoodmanHarry GoodmanJack TeagardenLarry BinyonJimmy McPartlandRay BauducDick Morgan (2)Vic BriedisGil RodinTommy Thunen + +2077602Tommy ThunenTrumpeterNeeds VoteTommy ThuenJack Teagarden And His OrchestraWhoopee MakersGil Rodin And His Orchestra + +2077603Casper ReardonAmerican jazz harpist. +Born April 1907 in Little Falls, New York, USA. +Died March 9, 1941 (age of 33) in New York, USA. +While the principal harpist of the Cincinnati Symphony Orchestra played jazz on the radio under the pseudonym Arpeggio Glissandi. Recorded with [a=Jack Teagarden] and [a=Paul Whiteman], worked in Hollywood, and led own small groups in New York and Chicago. +In pre- war days Reardon was one of the main harpists playing jazz.Needs Votehttps://fromthevaults-boppinbob.blogspot.com/2018/04/casper-reardon-born-15-april-1907.htmlhttps://www.harpsociety.org/downloads/files/SC97M65FRENERW35CKK-Reardon-AHJ-HarpNews.pdfhttps://www.harpsociety.org/downloads/files/WJ2ZY5SJ4J5S2ZSRKWT-2024-Winter-Casper-Reardon-Discography.pdfhttps://adp.library.ucsb.edu/names/109744C. ReardonCaspar ReardonCasper Reardon Swing HarpistJack Teagarden And His OrchestraCasper Reardon & His GroupCasper Reardon And His Orchestra + +2077605Dale SkinnerCredited as clarinet and tenor saxophone in early jazz period.Needs VoteD. SkinnerJack Teagarden's ChicagoansJean Goldkette And His OrchestraJack Teagarden And His Orchestra + +2077608Mills Merry MakersNeeds VoteGoody's Good TimersMills' Merry MakersIrving Mills And His Hotsy Totsy GangMajestic Dance OrchestraNew Orleans Jazz BandWhoopee MakersDixie DaisiesMills Musical ClownsSam Lanin & His OrchestraPaul Mills And His Merry MakersJack Winn And His Dallas DandiesGoody And His Good TimersGil Rodin's BoysVincent Richards And His OrchestraDixie Jazz BandEd Black And His BandJimmy Bracken's Toe TicklersThe Cotton Pickers (8) + +2077610Claude WhitemanCredited as trumpeter in early jazz period.Needs VoteC. WhitemanJack Teagarden's ChicagoansJack Teagarden And His Orchestra + +2077613Eddie DudleyNeeds VoteDudleyE. DudleyJack Teagarden And His Orchestra + +2077915Zsuzsa ZsizsmannClassical violinist.Needs Vote + +2077916Cornelius BoenschGerman cellist, born in 1971 in Bavaria, Germany.Correct + +2078300Mads L. KristensenMads Lundahl KristensenDouble Bass playerNeeds VoteMads Lundahl KristensenDR SymfoniOrkestret + +2078371Andrew StoreyViolinistNeeds VoteRoyal Philharmonic Orchestra + +2078372Gerald GregoryBritish classical violinist. Originally from South Tyneside, North East England, UK. +[b]For the American jazz pianist/keyboardist, please use [a=Gerald Gregory (3)][/b]. +He graduated from the [l459222] in 2004. He joined the [a=Royal Philharmonic Orchestra] in 2006, the [a=Northern Sinfonia] in 2009, and the [a=London Symphony Orchestra] in 2013.Needs Votehttps://lso.co.uk/orchestra/players/strings.html#First_violinsLondon Symphony OrchestraRoyal Philharmonic OrchestraThe Royal Philharmonic Concert OrchestraNorthern Sinfonia + +2078374Karen StephensonBritish (from Newcastle-under-Lyme) classical orchestral & chamber cellist. +She read music at the [l563665] and completed her studies at the [l527847]. Former Principal Cello of the [a=National Youth Orchestra Of Great Britain] and the [a=European Union Youth Orchestra]. Member of the [a=BBC Philharmonic] and, few years later of the [a=BBC Concert Orchestra]. She left her position of Co-Principal Cello with the [a=Royal Philharmonic Orchestra] to take up the position of No. 2 Cello with the [a=Philharmonia Orchestra] in September 2008.Needs Votehttps://www.facebook.com/karen.stephenson.129https://twitter.com/stephensoncellohttps://www.linkedin.com/in/karen-stephenson-987672101/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/stephenson-karen/https://fosym.org.uk/music-education/https://philharmonia.co.uk/bio/karen-stephenson/https://www.musicalorbit.com/product-page/karen-stephensonhttps://www.imdb.com/name/nm9000439/Royal Philharmonic OrchestraPhilharmonia OrchestraBBC PhilharmonicNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraBBC Concert Orchestra + +2078572Tis MarangClassical bass (bassetto) player.CorrectMusica Ad Rhenum + +2078573Ulrike WildHarpsichordist and organist.CorrectThe Amsterdam Baroque OrchestraMusica Ad Rhenum + +2078574Norbert KunstClassical bassoon and dulcian player.Needs VoteLes Arts FlorissantsHuelgas-EnsembleMusica Ad RhenumTafelmusik Baroque OrchestraTrio Passaggio + +2079082Mattia ZappaSwiss cellistNeeds VoteMarco Zappa FamilyGoldberg Trio LucerneTonhalle-Orchester Zürich + +2079154Donald PeckDonald V. PeckDonald Peck (26 January 1930 - 29 April 2022) was an American flute player. He was a member of the [a837562] from 1957 to 1999.Needs Votehttps://en.wikipedia.org/wiki/Donald_Peckhttps://cso.org/experience/article/9979/remembering-donald-peckPeckChicago Symphony OrchestraKansas City PhilharmonicSeattle Philharmonic OrchestraSeattle Youth Symphony Orchestra + +2079175Mark Sparks (2)Classical flautistNeeds VoteSaint Louis Symphony Orchestra + +2079372Matthias Weise (3)Classical violist.Needs VoteGewandhausorchester LeipzigLeipziger Klavierquartett + +2079534Vilmos PalotaiVilmos Palotai (21 May 1904 - 1972) was a classical cellist.Needs VoteVilmos PalotaVilmos PalotalThe Hungarian QuartetLe Trio Hongrois + +2079620Dominika PiwkowskaClassical french horn player.Needs VoteDR SymfoniOrkestret + +2079743Rastko RoknićSerbian baroque violist born March 16, 1971 in Belgrade, Serbia, living in Malmö, Sweden. + +He is one of the most meritorious baroque violas in the Öresund region. He was previously employed by the Odense Symphony Orchestra, but now freelances mostly as a baroque violist in groups such as Concerto Copenhagen, Barokksolosterna, Bergen Barok and others.Needs Votehttp://theatreofvoices.com/about-tov/rastko-roknic/Rastko RoknicTheatre Of VoicesOdense SymfoniorkesterBarokksolisteneConcerto CopenhagenHöör BarockCamerata Øresund + +2080871William NeilAmerican organist and harpsichordist.Needs VoteWillem NeilNational Symphony OrchestraClarion Consort + +2081623Michael Cole (5)British classical bassoonist, born 18 May 1952. +He studied at the [l290263]. He joined the [a=Philharmonia Orchestra] in 1987.Needs Votehttps://www.feenotes.com/database/artists/cole-michael/MagnetPhilharmonia OrchestraThe Albion Ensemble + +2082231Jean-Baptiste LeclèreFrench timpanist and percussionist.Needs VoteJean-Baptiste LeclereOrchestre National De L'Opéra De ParisOrchestre Philharmonique De Radio France + +2083324Inger BesserudhagenNorwegian French hornist.Needs VoteOslo Filharmoniske OrkesterTrondheim Jazz OrchestraOslo Concert Brass + +2083729Ray Sikorajazz trombonistNeeds VoteR. SikoraSikoraStan Kenton And His OrchestraSam Trippe And His OrchestraChicho Valle And His Orchestra + +2084229Oliver Mills (2)German percussionist and timpanistNeeds Votehttps://www.dresdnerphilharmonie.de/de/dresdner-philharmonie/biografien/oliver-mills/Dresdner PhilharmonieJetzt!Orchester Des Schleswig-Holstein Musik Festivals + +2084686Jérôme VoisinFrench clarinet player, born in 1972 in Limoges, France.Needs VoteJerome VoisinOrchestre Philharmonique De Radio FranceHymne Au Soleil + +2084687François ChristinHornistNeeds VoteFrancois ChristinOrchestre National De FranceHymne Au SoleilDal Sasso / Belmondo Big Band + +2085066Herman RiekenDutch classical percussionist, born 1961 in Bussum, Netherlands.Needs VoteMetropole OrchestraAsko EnsembleConcertgebouworkestEbony BandThe New Percussion Group Of Amsterdam + +2085185Jiří SušickýJiří SušickýCzech trombonist and educator, born in 1956.CorrectThe Czech Philharmonic OrchestraOrchestr Československé Televize + +2086464Franz PicklAustrian horn and hunting horn player.Needs VoteFranz Joseph PicklTonkünstler OrchestraOrchester Der Vereinigten Bühnen WienGustav Mahler JugendorchesterVienna HornsVienna Radio WindsDie Jagdhorn Akademie Österreich + +2086508IntraspektToby BamfordCorrecthttps://m.facebook.com/intraspekt1IntraSpekkyToby Bamford + +2086545Martin EßmannGerman violinist, born in 1971 in Dresden, GDR.Needs VoteMartin EssmannRundfunk-Sinfonieorchester BerlinBerlin Session Orchestra + +2087063David Sinclair (9)Double bass player.Needs VoteSinclairPulcinellaEnsemble 415The Chamber Orchestra Of EuropeLes Talens LyriquesLes Musiciens Du LouvreRicercar ConsortKammerorchester BaselSchola Cantorum BasiliensisTafelmusik Baroque OrchestraNachtmusiqueEnsemble Cristofori + +2087069Marten RootClassical flautist.Needs VoteThe English Baroque SoloistsDe Nederlandse BachverenigingTafelmusik Baroque OrchestraBiedermeier Quintet + +2087474Clive LetchfordClassical bass vocalistNeeds VoteThe New College Oxford ChoirThe Choir Of Christ Church Cathedral + +2087483Thomas HerfordClassical treble / tenor vocalistNeeds Votehttps://www.thomasherford.co.ukTom HerfordThe New College Oxford ChoirLondon VoicesI FagioliniStile AnticoSolomon's KnotThe Gonzaga Band + +2087498Patti PalmerPatti “Esther” Calonico LewisAmerican big band singer. +Born: November 20, 1921 Cambria, Wyoming, USA. +Died: January 15, 2021 Las Vegas, Nevada, USA (99 years old). +Wife of actor/singe/comedian [a1248950] from 1944 to 1983. She was the mother of [a218902] of [a395000] fame. + "Patti Palmer" was her stage name. When she first met Jerry Lewis in Detroit in August 1944, she was a singer with Ted Fio Rito and his orchestra. Shortly thereafter, she joined Jimmy Dorsey and his orchestra. She quit singing to become a mother in 1945.Needs Votehttps://www.imdb.com/name/nm2281769/PattiPatti LewisPatti LewisJimmy Dorsey And His OrchestraTed Fiorito & His Orchestra + +2088758Thomas MatthewsBritish classical violinist, conductor, and Professor of Violin. Born 9 May 1907 in Birkenhead, Merseyside, England, UK. +He was only fifteen when he was appointed a member of the [a=Royal Liverpool Philharmonic Orchestra], and within a year, he achieved the further distinction of being admitted to the ranks of the [a=Hallé Orchestra]. He held these two appointments for ten years resigning in 1936. In 1939, he accepted an invitation to return to the reconstructed Liverpool Philharmonic Orchestra as leader. Shortly afterwards, however, a similar invitation came from the [a=London Philharmonic Orchestra], and for one season he led both of these orchestras, but in the following year he resigned his Liverpool appointment. Former Leader of the [a=London Symphony Orchestra] (1952-1953). He moved to Australia in 1959 as leader and deputy conductor of the [a=Tasmanian Symphony Orchestra]. In 1962, he took over in Hobart and stayed with the Orchestra there until 1968. During 1946-1947 he was offered the head professorship of the violin at the [url=https://www.discogs.com/label/459222-Royal-Northern-College-Of-Music]Royal Manchester College of Music[/url], an appointment which he still holds with a professorship at the [l527847]. +In 1940, he married [a=Eileen Ralph] at Marylebone, London, England, UK.Needs Votehttps://www.bellsite.id.au/helen_tree/HTMLFiles/HTMLFiles_23/P9570.htmlLondon Symphony OrchestraLondon Philharmonic OrchestraHallé OrchestraRoyal Liverpool Philharmonic Orchestra + +2088939Robert Cooper (6)British violinist, fl. 1960s-1980s. Not to be confused with the Australian violinist [a=Robert Cooper (15)].Needs VoteThe Medieval Ensemble of LondonBath Festival OrchestraLondon Bach Ensemble + +2089362Heinrich WeberGerman tenor vocalistCorrectChor Des Bayerischen Rundfunks + +2089363Anton RosnerAnton Rosner is a German tenor and vocal coach.Needs Votehttps://www.bach-cantatas.com/Bio/Rosner-Anton.htm#google_vignetteChor Des Bayerischen RundfunksCapella Bavariae + +2089818Coro Della Radio Televisione Della Svizzera ItalianaFounded in 1936 by Edwin Loehrer has achieved world-wide fame with radio recordings related to the Italian repertoire between sixteenth and eighteenth centuries, and is now widely recognized as one of the best vocal ensembles in the world.CorrectChoeur De La R.S.IChoir Of Radio Svizzera, LuganoChoir Of The Radio Della Svizzera Italiana, LuganoChoir Of The Radio Svizzera, LuganoChoir of Radio Svizzera, LuganoChoir of Radio svizzera, LuganoChorus of R.S.I.Chorus of the Italian Radio and TelevisionChœurChœur De La Radio Suisse ItalienneCora Della RTSICoroCoro Della RTSICoro Della RTSI Di LuganoCoro Della Radi SvizzeraCoro Della Radio Della Svizzera ItalianaCoro Della Radio SvizzeraCoro Della Radio Svizzera ItalianaCoro Della Radio Svizzera LuganoCoro Della Radio Svizzera, LuganoCoro Della Radio Televisione Della SvizzeraCoro Della Radio Televisione Della Svizzera, LuganoCoro Della Radio Televisione SvizzeraCoro Della Radiotelevisione Della Svizzera ItalianaCoro Della Radiotelevisione SvizzeraCoro Della Radiotelevisione Svizzera Di LuganoCoro Della Radiotelevisione Svizzera ItalianaCoro Della Radiotelevisione Svizzera, LuganoCoro Della Svizerra ItalianaCoro Della Svizzera ItalianaCoro E Orchestra Della RTSICoro RtsiCoro della Radio SvizzeraCoro della Radio Svizzera ItalianaCoro della Radio Svizzera, LuganoCoro della Radiotelevisione svizzeraItalian Swiss Radio ChoirKoor En Orkest Van De Italiaanse Radio En Televisie Te RomeSingers Of The Swiss/Italian RadioSoli and Coro della Radio Svizzera, LuganoSwiss Radio Chorus Of LuganoThe Singers Of The Swiss/Italian RadioZbor Švicarskog RadijaSchweizer KammerchorMarco BeasleyMya FracassiniSuzanne FlowersGundula AndersAntonio AbeteRoberta GiuaVincenzo Di DonatoCristina CalzolariSergio ForestiRenzo BezAnnemieke CantorRosa DominguezGerhard NennemannJörg M. KrauseNadia RagniAntonio DomenighiniWalter TestolinRoberta InvernizziDaniele CarnovichDaniela Del MonacoThomas GremmelspacherNico Van Der MeelMaria Teresa NesciGiuseppe MalettoLia SerafiniMatteo BellottoRaffaele GiordaniFurio ZanasiElisabetta TisoRossana BertiniDorothee WohlgemuthAntonella BalducciFulvio BettiniKatharina OttEnrico GianellaMauro BorgioniMarco RadaelliElisa FranzettiDavide LivermoreCaroline GermondWilliam DickinsonSilvia PiccolloBianca SimoneOlaz GorrotxategiLiliana TamiClemy ZarrilloDorothee LabuschSergio AllegriniAxel EveraertLuigi GariboldiFabian SchofrinEva DedkovaUlrich RauschUlrike ClausenSandro MontiAchim SchwesigAntonella LalliPaolo BorgonovoLaura AntonazMaurizio DalenaMassimiliano PasucciSilvia FinaliBrigitte RavenelElena CarzanigaEmanuele NoccoEmanuela GalliIsabella HessAlfredo GrandiniIoannis VassilakisRenato MoroSalvo VitaleBaltazar ZunigaSilvia PozzerDoris Steffan-WagnerTheodotia Hartman + +2090299Ezequiel AmadorEzequiel Amador-CoronAmerican violinist, born 25 April 1926 in Peru and died 28 July 1999 in the United States.Needs VoteSan Francisco Symphony + +2090984Kahn KeeneAron Kahn KeeneUS jazz trombonist from the swing-era & songwriter - b. Cotton Plant, Arkansas, 1 Nov. 1909 - d. Savannah, Georgia 19 Oct. 1984. Collaborated with [a3622756] on several songs as Keene-Bean. + +Needs VoteK. KeeneKeenKeeneKerneCharlie Barnet And His Orchestra + +2091933Freddy LewisAmerican jazz trombonistNeeds VoteFred LewisWoody Herman And His OrchestraWoody Herman And His Third HerdDan Terry And His Orchestra + +2091934Jerry DornIsrael Jerome DornAmerican jazz trombonist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/312678/Dorn_JerryIsrael DornGeorgie Auld And His Orchestra + +2091937Leo ShepherdAmerican jazz trumpet player.CorrectLeo "The Whistler" ShepherdLeo ShepardLeo SheppardSheppardLionel Hampton And His Orchestra + +2091941Kenny PinsonAmerican tenor saxophonist, recorded in the early 1950's with [a239399], [a75617] and others.Needs VoteKenneth PinsonWoody Herman And His OrchestraWoody Herman And His Third Herd + +2091943Bob Carter (4)Jazz trumpeterCorrectRobert CarterHarry James And His Orchestra + +2091946Paul Lee (5)American jazz trombonist.Needs VotePaul Lee HigakiLionel Hampton And His Orchestra + +2091948John McCombAmerican jazz trumpeterNeeds VoteJohn MaccombeJohnny McCombWoody Herman And His OrchestraWoody Herman And His Third HerdThe Tom Talbert Jazz Orchestra + +2091949Everett LevyAmerican jazz saxophonistCorrectElliott LevyEverett LeveyHarry James And His OrchestraFred Radke & His Swingin' Big Band + +2092612Katie HellerClassical string instrumentalist (viola), also credited for production.Needs VoteCity Of London SinfoniaThe SixteenClassical Opera + +2092647Jay FriedmanAmerican trombonist and conductor.Needs Votehttp://www.jayfriedman.net/Jay K. FriedmanChicago Symphony OrchestraChicago Pro Musica + +2092648Thomas WohlwenderAmerican trumpet player, born 8 November 1936.CorrectThe Cleveland OrchestraDenver Symphony OrchestraThe New Orleans Symphony + +2092649Glenn DodsonAmerican trombonist, born in 1931 and died in 2007.Needs VoteThe Philadelphia OrchestraChicago Symphony OrchestraThe New Orleans SymphonyThe Brian Pastor Big BandThe Barbone Street Jazz Band + +2092650Robert BoydRobert Farrell BoydAmerican trombonist, born in 1921 and died in 1989.CorrectThe Cleveland Orchestra + +2092651Frank CrisafulliAmerican trombonist, born in 1916 and died 5 November 1998 in Evanston, Illinois.Needs VoteChicago Symphony OrchestraThe Chicago Brass Ensemble + +2092652Tyrone BreuningerAmerican trombonist, born in 1939 and died 6 May 2012.CorrectThe Philadelphia Orchestra + +2092653Vincent CichowiczAmerican trumpet player, conductor and teacher, born in 1927 and died 11 December 2006Needs VoteChicago Symphony OrchestraHouston Symphony Orchestra + +2092654Ronald BishopRonald T. BishopAmerican tuba player, born in 1934 and died 25 July 2013 in Cleveland, Ohio.CorrectThe Cleveland OrchestraBuffalo Philharmonic OrchestraCleveland Brass Ensemble + +2092655Arnold JacobsAmerican tuba player, born 11 June 1915 in Philadelphia, Pennsylvania and died 7 October 1998.Needs VoteChicago Symphony OrchestraPittsburgh Symphony OrchestraThe Chicago Brass EnsembleIndianapolis Symphony Orchestra + +2093175Jan JouzaClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +2093176Jana BrožkováClassical oboistCorrecthttps://www.ceskafilharmonie.cz/en/players/jana-brozkova/ヤナ・ブロジュコヴァーThe Czech Philharmonic OrchestraIn Modo Camerale + +2093177Jaroslav KubitaClassical bassoonistNeeds VoteKubita JaroslavThe Czech Philharmonic OrchestraIn Modo Camerale + +2093741Demetri CallasPantelis John CallasDemetri "Penny" Callas was born June 7, 1942 in Frederick, Maryland and passed away January 13, 2020 in Las Vegas, NevadaNeeds VoteCallasD. CallasDimitri CallasThe Four SeasonsThe Bad Boys (4)Flavor (4) + +2093970Charlie Johnson & His Paradise BandNeeds Major ChangesCharie Johnson's Paradise OrchestraCharlie Johnson And His OrchestraCharlie Johnson And His Paradise BandCharlie Johnson And His Paradise Band OrchestraCharlie Johnson And His Paradise OrchestraCharlie Johnson's BandCharlie Johnson's Paradise BandCharlie Johnson's Paradise OrchesterCharlie Johnson's Paradise OrchestraCharlie Johnson's Paradise TenCharlie Johnson's Paradise Ten OrchestraCharlie Johnson’s Paradise OrchestraBenny CarterBenny WatersJimmy HarrisonJabbo SmithBobby JohnsonCyrus St. ClairCharlie IrvisEdgar SampsonSidney De ParisLeonard DavisThomas MorrisGeorge StaffordCharlie JohnsonBen WhittedElmer Harrell + +2094530Jérémie PapasergioClassical flautist / bassoonist and founder of Ensemble [a=Syntagma Amici]Needs VoteJeremie PapasergioJémérie PapasergioLe Concert SpirituelLes CyclopesL'ArpeggiataLe Poème HarmoniqueEnsemble ArtaserseDoulce MémoireEnsemble La FeniceVox LuminisEnsemble ClematisSyntagma AmiciEnsemble EolusLes Ombres (3)La Guilde Des Mercenaires + +2094806Edward StephanAmerican timpanist and percussionist.Needs VoteSan Francisco SymphonyPittsburgh Symphony Orchestra + +2095140Hermann Von GilmHermann Gilm von RoseneggAustrian jurist and poet, born 1 November 1812 in Innsbruck, Austria, died 31 May 1864 in Linz, Austria.Needs Votehttps://adp.library.ucsb.edu/names/104931https://en.wikipedia.org/wiki/Hermann_von_GilmG. v. GlimGerman Von GilmGilenGilmH. GilmH. GilmasH. V. GilmH. Von GilmH. v. GilmH. von GilmH.von GilmHerm. V. GilmHermann GilmHermann Gilm von RoseneggHermann Von Gilm Zu RoseneggHermann v. GilmHermann von GilmHermann von Gilm zu RoseneggHermann von GlimV. GilmVon Gilmv. Gilmvon Gilmvon GlimГ. фон Гильм + +2095448David BreedenDavid McKee BreedenSon of [a=Leon Breeden], David Breeden (19 July 1946 Fort Worth, Texas – 22 June 2005 San Mateo, California) was principal clarinetist with the San Francisco Symphony for 25 years.Needs VoteDavid M. BreedenSan Francisco SymphonyU.S. Navy BandNorth Texas State University Concert BandUniversity Of North Texas Neophonic Orchestra + +2095470Ada PeschAda PeschAmerican violinist.Needs Votehttp://twitter.com/peschadahttp://www.instagram.com/ada.peschLes Musiciens Du LouvreOrchestra La ScintillaPhilharmonia Zürich + +2095651Panic (23)Needs Major Changes + +2096374Theodore BaskinClassical oboist, born June 14, 1950 in Detroit. +He held posts in the Detroit Symphony Orchestra and the Auckland Symphonia before becoming Principal Oboe of the Orchestre Symphonique de Montréal in 1980.Needs Votehttp://en.wikipedia.org/wiki/Theodore_Baskinhttp://www.osm.ca/en/bio/theodore-baskinTed BaskinTheodor BaskinТед БаскинDetroit Symphony OrchestraOrchestre symphonique de MontréalI Musici De Montréal + +2096999Makoto AkatsuClassical violin and viola player.Needs Votehttps://www.facebook.com/makoto.akatsu.1La Petite BandeTafelmusik Baroque OrchestraBach Collegium Japan + +2097417Keiko WatanabeClassical violin and viola player.Needs VoteKeiko "Mocha" WatanabeLa Petite BandeBach Collegium JapanBaroque Orchestra + +2097420Stephan Sieben (2)Classical viola player.Needs VoteAkademie Für Alte Musik BerlinConcerto KölnBach Collegium JapanBarockwerk HamburgEnsemble Schirokko Hamburg + +2097423Graham NicholsonClassical trombonist and trumpeter.Needs VoteLe Concert SpirituelLes Arts FlorissantsConcerto KölnLe Concert Des nationsLa Petite BandeBalthasar-Neumann-EnsembleBach Collegium JapanFiori Musicali + +2097530Simon Archer (2)Classical percussionist. +Co-Principal Timpani with the [a=Orchestra Of The Royal Opera House, Covent Garden].Needs VoteLondon Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenLondon MusiciYoung Musicians Symphony Orchestra + +2097539Maximus BaxterNeeds Major ChangesMaximus / BaxterMaximus/Baxter + +2098343Orquesta Sinfónica de RTVEOrquesta Sinfónica de Radio Televisión EspañolaOne of the greatest Spanish orchestras, founded in 1965. Acronym OSRTVE. May also appear as "Orquesta de Radiotelevisión Española". +Its first conductor was [a448010]. Later was conducted by [a3010569] (1965-1967), [a2098411] (1965-1984), [a941864] (1968-1984), [a3740167] (1984-1987), [a870853] (1988-1990), [a1102665] (1990-1998), [a2098411] (1998-2001) and [a835350] (2001-2010), [a1956953] (2011-2016), [a3740167] (2016-2019), [a4702234] (2019-2023), [a4207551] since September 2023. +For the associated chorus, see [a4151570].Needs Votehttps://www.rtve.es/orquesta-coro/https://en.wikipedia.org/wiki/RTVE_Symphony_OrchestraCoro Sinfónico de RTVECuarteto De Solistas De La Orquesta Sinfonica De La Radio Television EspañolaLa Orquesta Sinfónica de RTVELa Orquesta de RTVEORTVEOrchester Des Spanischen RundfunksOrchestra Of The Spanish R.T.V.Orchestra Sinfonica de RTV EspanolaOrchestre De La Radiotélévision EspagnoleOrchestre SymphoniqueOrchestre Symphonique De La R.T.V. EspagnoleOrchestre Symphonique De La R.T.V. EspagnoleOrchestre Symphonique De La RTV EspagnoleOrchestre Symphonique De La RTVEOrchestre Symphonique De La Radio Television EspagnoleOrchestre Symphonique De La Radio-Télévision EspagnoleOrchestre Symphonique de la RTVEOrchestre Symphonique de la Radio-Télévision EspagnoleOrchestre Symphonique de la Radio-télévision EspagnoleOrq. SinfónicaOrq. Sinfónica De La R.TV. EspañolaOrq. Sinfónica de RTVEOrquestaOrquesta De La RTVEOrquesta De RTVEOrquesta De Radiotelevisión EspañolaOrquesta RTVEOrquesta Radio Televisión EspañolaOrquesta Sinfonica De La R.TV. EspañolaOrquesta Sinfonica De La RTV EspañolaOrquesta Sinfonica De La RTVEOrquesta Sinfonica De Radiotelevisión EspañolaOrquesta Sinfonica R. T. V. EspañolaOrquesta Sinfonica R.T.V. EspanolaOrquesta Sinfonica R.T.V. EspañolaOrquesta Sinfonica de la R.TV. EspañolaOrquesta Sinfonica de la RTV EspañolaOrquesta SinfónicaOrquesta Sinfónica De La R. T. V. EspañolaOrquesta Sinfónica De La R. TV. EspañolaOrquesta Sinfónica De La R.T.V. EspañolaOrquesta Sinfónica De La R.TV. EspañolaOrquesta Sinfónica De La RTV EspañolaOrquesta Sinfónica De La RTVEOrquesta Sinfónica De La Radio Televisión EspañolaOrquesta Sinfónica De R. T. V. EspañolaOrquesta Sinfónica De R.T.V.E.Orquesta Sinfónica De RTVEOrquesta Sinfónica De Radiotelevisión EspañolaOrquesta Sinfónica EspañolaOrquesta Sinfónica Ligera de RTVEOrquesta Sinfónica R.T.V EspañolaOrquesta Sinfónica R.T.V. EspaniolaOrquesta Sinfónica R.T.V. EspanolaOrquesta Sinfónica R.T.V. EspañolOrquesta Sinfónica R.T.V. EspañolaOrquesta Sinfónica R.TV. EspañolaOrquesta Sinfónica RTV EspanolaOrquesta Sinfónica RTV EspañolaOrquesta Sinfónica RTVEOrquesta Sinfónica de R.T.V EspañolaOrquesta Sinfónica de R.T.V. EspanolaOrquesta Sinfónica de R.T.V. EspañolaOrquesta Sinfónica de R.T.V.E.Orquesta Sinfónica de RTV EspañolaOrquesta Sinfónica de Radio Televisíon EspañolaOrquesta Sinfónica de RadioTelevision EspanolaOrquesta Sinfónica de Radiotelevisión EspañolaOrquesta Sinfónica de la R.TV. EspañolaOrquesta Sinfónica de la RTVEOrquesta Sinfónica de la Radio TV EspañolaOrquesta Sinfónica de la Radio Televisión EspañolaOrquesta de Radio Televisión EspañolaOrquesta de Radio Televisión Española RTVEOrquesta de Radiotelevisión EspañolaOrquesta de la RTVEOrquesta ligera de RTVOrquestra Sinfonica R.T.V. EspañolaOrquestra Sinfónica De Radio Television EspañolaOrquestra Sinfónica RTV EspanolaOrquestra Sinfónica de R.T.V. EspanholaOrquestra Sinfônica Da RTVEOsquestra Sinfónica Da RTV EspanholaQuinteto De Viento De La Orquesta Sinfonica De R.T.V.E.RTVE SoRTVE Symphony Orchestra (Spain)Radio Televisión Española (R. T. V.)Simfonijski Orkestar Španskog RadijaSinfonie-Orchester Des Spanischen RundfunksSinfonie-Orchester des Spanischen RundfunksSinfonieorchester Des Spanischen RundfunksSpanish RTV Symphony OrchestraSpanish Radio And Television OrchestraSpanish Radio Symphony OrchestraSymfonie-Orkest Van De Spaanse R.T.V.Symphonie-Orchester Des Spanischen RundfunksSymphonieorchester Des Spanischen Rundfunk Und FernsehensSymphonieorchester des Spanischen RundfunksSymphony Orchestra Of Spanish Radio And TelevisionSymphony Orchestra Of The Spanish Radio & TelevisionSymphony Orchestra Of The Spanish Radio And TelevisionSymphony Orchestra Of The Spanish Radio TelevisionSymphony Orchestra of the Spanish Radio and TelevisionThe Orquesta Sinfónica de Radiotelevision EspanolaThe Symphony Orchestra Of Spanish Radio And TelevisionΟρχήστρα Της Ισπανικής ΡαδιοτηλεόρασηςOrquesta De Radio Nacional De EspañaIgor MarkevitchAgustín SerranoPilar OcañaAdrian LeaperArpad JooVicente Sempere GomisVicente Lafuente MaurinJuan Luis Jordá AyatsJosé Vadillo VadilloOdón AlonsoSergiu ComissionaDominique DeguinesMaría Teresa GómezEnrique RiojaJuan Pedro RoperoJesus Maria CorralVicente Martinez (2)Miguel Sáez SanuyPedro Meco RodrigoSalvador Seguer JuanVicente Merenciano SilvestrePablo Ceballos GómezBenjamín MorenoJavier BenetDavid Thomas (17)Anton GakkelCarmen TricasJuan A. Enguidanos OrtizManuel Raga OrtegaVicente Cueva DíezEnrique Orellana LópezDobrochna BanaszkiewiczLuis MoratóMiguel Angel CuestaEnrique AsensiPedro RosasMaria Isabel GayosoMariana TodorovaCarlos KalmarEnrique Garcia AsensioMiguel BorregoRaul PinillosGersia Sanchez JaimeLuis JouveJaime Antonio RoblesAntoni Ros-MarbàSergio SolaDavid Mata (2)Emilio RoblesÁlvaro PérezAgustín Clemente MartínezSocorro Martín PulgarJoaquín Alda JiménezJosé María Navidad ArceJosé González del AmaMiguel Angel Gomez-MartinezYulia IglinovaMario TorrijoMiguel Moreno (3)Christoph König (2)Borja AntónEmilio MateuFrancisco Javier ComesañaAntonio Arias (2)Pablo González (4)Karen MartirossianMaría Ángeles NovoJesús TroyaAntonio FausRamon BenaventRicardo GassentJose ChicanoFrancisco Muñoz (3)Pedro BotiasJoaquin VicedoHermes KrialesGrupo De Metal De la Orquesta Sinfonica De RTVEGrupo De Viento De La Orquesta Sinfónica De R.T.V.E.Grupos De Percusión Y Viento De La Orquesta Sinfónica De R.T.V.E.Enrique Parra (3)Máximo MuñozLuis EstevarenaRoberto TerrónPilar SerranoÁngel García JermannMiguel EspejoRaúl BenaventMaría Antonia RodríguezEva ÁlvarezJuan Pechuan RamirezSalvador BarberaDamián ArenasRamón VarónGermán Muñoz (5)Suzana StefanovicGrazina SonnakMarta JareñoMiguel Franco (5)Stéphane LoyerJosé AlamáMiguel Guerra (6)Alma Graña + +2098411Enrique Garcia AsensioEnrique García AsensioViolinist, composer and conductor, born 22 August 1937 in Valencia, Spain. He was [a2098343]'s official conductor from 1966 to 1984, and from 1998 to 2001. +First prize of "[a859448] International contest" with 29 years old. +[a840069] pupil and assistantNeeds Votehttp://www.garciaasensio.com/https://en.wikipedia.org/wiki/Enrique_Garc%C3%ADa_Asensiohttp://es.wikipedia.org/wiki/Enrique_Garcia_AsensioE. Garcia AsensioEnric Garcia-AsensioEnrique G. AsensioEnrique Garcia-AsensioEnrique García AsencioEnrique García AsensioEnrique Gª AsensioGarcia AsensioGarcía AsencioGarcía AsensioOrquesta Sinfónica de RTVEBanda Sinfónica Municipal de MadridOrquesta de ValenciaConjunto de Cámara de Enrique García Asensio + +2099004Stéphane LauzonClassical violin/viola artistNeeds VoteLes Violons du RoyQuatuor Québec + +2099005Claudine GiguèreClassical violin/viola artistNeeds VoteLes Violons du RoyOrchestre Symphonique De Québec + +2099006Judith ChamberlandViolinistNeeds VoteLes Violons du RoyStuttgarter Philharmoniker + +2099007Nicole TrotierClassical violinist, concertmistress and co-founder of ensemble [a=Les Violons Du Roy]Needs VoteLes Violons du RoyTheatre Of Early MusicQuatuor Québec + +2099008Sylvain BergeronCanadian classical lutenist, guitarist and organistNeeds Votehttp://www.sylvain-bergeron.com/S. BergeronLes Violons du RoyLes Voix HumainesEnsemble AnonymusEnsemble Da SonarLa NefTheatre Of Early MusicTempo Rubato (2)Les Boréades De MontréalArion Orchestre BaroqueLes Voix BaroquesSacabucheThe New-York Baroque Ensemble + +2099010Marie GrenonCanadian cellist born 1961 in Lévis, Québec, Canada.Needs VoteLes Violons du RoyQuatuor Québec + +2099011Bernard GuayClassical contrabassistNeeds VoteLes Violons du Roy + +2099012Nancy OehlerClassical violinist and liner notes translatorNeeds VoteLes Violons du Roy + +2099013Richard ParéCanadian harpsichordist & organistNeeds VoteLes Violons du RoyEnsemble Nouvelle FranceTheatre Of Early Music + +2099015Julie CossetteCanadian classical violinistNeeds VoteLes Violons du Roy + +2099099Peter Gibbs (2)Norman Peter GibbsBritish classical violinist and R.A.F. pilot. Born in 1920 - Died in 1975 under inexplicable circumstances known as the [url=https://en.wikipedia.org/wiki/Great_Mull_Air_Mystery]Great Mull Air Mystery[/url]. +Gibbs was a fighter pilot in World War II with 41 Squadron RAF from January 1944 to March 1945. After the War, he formed the [b]Peter Gibbs String Quartet[/b]. He joined the [a=Philharmonia Orchestra] in 1954 and the [a=London Symphony Orchestra] in 1957, being appointed Principal First Violin his last two years with the orchestra (1963-1964). He was [a=BBC Scottish Symphony Orchestra]'s Leader from 1960 to 1963. Around 1970 and 1971 Gibbs led [a=The BBC Northern Ireland Orchestra]. Around 1971 and 1972 he led the [a=Orchestra Of The Royal Opera House, Covent Garden]. Across these years, Gibbs had been flying privately. He joined the Surrey Flying Club in June 1957 and then flew more-or-less continuously for the next 18 years. +Gibbs was 55 years old when his plane went missing on 24 December 1975. His body was found in April 1976. [a=Jonathan Harvey]'s "Flight-Elegy" is an elegy for the RAF pilot and violinist Peter Gibbs.Needs Votehttps://www.byersmusic.com/resources/Peter%20Gibbs%20information%20rev.2017.pdfhttps://en.wikipedia.org/wiki/Great_Mull_Air_Mystery#Peter_Gibbshttps://www.pressreader.com/uk/scottish-daily-mail/20161217/282102046316944https://open.spotify.com/artist/0UIPM9QC3LytqvGetdVuszLondon Symphony OrchestraPhilharmonia OrchestraBBC Scottish Symphony OrchestraDeller ConsortOrchestra Of The Royal Opera House, Covent GardenBaroque String EnsembleAmbrosian PlayersThe Jacobean EnsembleLondon Chamber PlayersThe BBC Northern Ireland Orchestra + +2099640Georges TermeNeeds Major ChangesG. TermeGeorges TerneTerme + +2100110Ondřej BalcarClassical double bassistNeeds VoteOnd Ej BalcarThe Czech Philharmonic OrchestraCollegium 1704 + +2100131Sébastien WalnierClassical cellistNeeds VoteSebastien WalnierGalaxy String OrchestraOrchestre Du Théâtre Royal De La MonnaieCardamome TrioÔ-CELLI + +2100550Gilles CabodiClassical bassoonistNeeds VoteOrchestre Du Théâtre Royal De La MonnaiePrima La Musica + +2100657Volker SchwarzGerman bass-baritone vocalist; also credited for voice (speaker).Needs VoteRundfunkchor BerlinDivertimento Vocale + +2100991Lynne RichardsAmerican big band singer from Brooklyn, who sang with the orchestras of [a=Harry James (2)], [a=Johnny McGee], [a=Bunny Berigan], and [a=Glen Moore (2)] in the 1940s and early 1950s. She also recorded with the [a7940123] + +She married alto saxophonist [a=Sam Marowitz] in 1942 (divorced).Needs VoteLynn RichardsHarry James And His OrchestraBunny Berigan & His Orchestra + +2101134Miho HashizumeClassical violinist.Needs VoteThe Cleveland OrchestraToronto Symphony OrchestraBach Collegium Japan + +2101136Mime YamahiroClassical cellist.Needs VoteMimé YamahiroMime Yamahiro BrinkmannLa Petite BandeDrottningholms BarockensembleBach Collegium JapanNew Dutch AcademyConcerto Copenhagen + +2101224Mikiko SuzukiClassical soprano.CorrectSuzuki MikikoChoeur de Chambre de NamurBach Collegium Japan + +2101442Jimmy Campbell (6)[B]Jazz trumpeter and saxophonist[/B], not to be confused with the jazz drummer [A=Jimmy Campbell] and the composer [A=James Campbell] (often credited as Jimmy Campbell)!Needs VoteCampbellJames CampbellJim CampbellHarry James And His OrchestraJan Savitt And His Top HattersJimmy Dorsey And His OrchestraHarry James & His Music Makers + +2101444Eric Chan (2)DesignerNeeds VoteEric Chan/Gribbitt!Gribbitt! + +2102283Ludwig QuandtGerman cellist and principal cellist for the [a260744], born in 1961 in Ulm, Germany.CorrectBerliner PhilharmonikerDie 12 Cellisten Der Berliner Philharmoniker + +2102284Esko LaineFinnish double bassist.Needs VoteEsko LaneBerliner PhilharmonikerPhilharmonisches Oktett BerlinEstonian Festival Orchestra + +2102457Jacqueline BrownVocalist (Canadian ?)Correct + +2103228Petr DudaClassical french hornist.Needs VoteThe Czech Philharmonic OrchestraLovecké Kvarteto + +2103354Astor Piazzolla Y Su Orquesta[b]For the traditional Orchestra directed by Piazzolla in the 40s, use [a=Astor Piazzolla Y Su Orquesta Típica][/b] + +Unnamed studio & theatre orchestra of [a=Astor Piazzolla] and [a=Horacio Ferrer], numbered around ten performers plus singers, [a=Amelita Baltar] & [a=Héctor de Rosas]. The project originally involved [a=Egle Martin], who broke away in the early stages. + +Active from 1968 to 1972. Performed the [b]María de Buenos Aires[/b] theatre operetta in 1968 followed by it's studio LP, famous song [b]Balada Para un Loco[/b], recorded in Baltar's [b]Interpreta A Piazzolla - Ferrer[/b], Piazzolla-Ferrer solo work [b]En Persona[/b] and Roberto Goyeneche's [b]Balada Para Un Loco / Chiquilín De Baquín[/b]. Plus film score [b]Pulsación[/b]. Last recordings were [b]Las Ciudades / Los Paraguas De Buenos Aires[/b] and [b]La Primera Palabra / No Quiero Otro[/b], 1972. It was workings a second operetta called [i]El Pueblo Joven[/i]. Health complications of Piazzolla led to the end of the ensemble and unknown causes to the loss of the El Pueblo Joven recordings.Needs VoteAstor Piazzolla And OrchestraAstor Piazzolla Y OrquestaOrchestaOrquestaOrquesta de Astor PiazzollaPiazzolla Y Su OrquestaAstor PiazzollaHoracio FerrerHéctor De RosasAmelita BaltarCacho TiraoVictor PontinoJosé BragatoNestor PanikKicho DiazJaime GosisTito BisioAntonio AgriArturo SchneiderJosé CorrialeEgle MartinSimón Zlotnik + +2103833Artur StefanowiczPolish counter-tenor vocalist.Needs VoteStefanowiczLes Arts Florissants + +2104212Jennifer GingrichSoprano vocalist.Needs VoteJenChicago Symphony Chorus + +2104612Damien PetitjeanFrench classical percussionist.Correcthttp://www.dpetitjean.com/bio/http://www.ensemblenordsud.com/damien_petitjean_marimba_percussions.htmlOrchestre National De L'Opéra De ParisEnsemble Nord-Sud + +2104637Alain CremersBassoonistNeeds VoteMusiques NouvellesOrchestre Du Théâtre Royal De La MonnaieOrchestre De L'Opéra Royal De Wallonie + +2104651Alina IbragimovaАлина Ринатовна ИбрагимоваAlina Ibragimova is a Russian-born classical violinist residing in the UK. +Born: September 28, 1985, Polevskoy, Sverdlovsk Oblast, Russia +Daughter of [a=Rinat Ibragimov] & [a=Lucia Ibragimova].Needs Votehttp://www.alinaibragimova.com/http://en.wikipedia.org/wiki/Alina_Ibragimovahttps://ru.wikipedia.org/wiki/Ибрагимова,_Алина_Ринатовнаhttps://www.bach-cantatas.com/Bio/Ibragimova-Alina.htmA. IbragimovaSvenska KammarorkesternOrchestra Of The Age Of EnlightenmentChiaroscuro QuartetArcangelo + +2104655Andrew KennedyBritish tenor, born 26 May 1977.Needs Votehttps://en.wikipedia.org/wiki/Andrew_Kennedy_(tenor)https://www.bach-cantatas.com/Bio/Kennedy-Andrew.htmKennedyPolyphonyThe Handel & Haydn Society Of BostonThe Sarum Consort + +2104839Charles GendusoCredited as trumpeter.Needs VoteC. GendusoCharles GenchusoCharles GendursoChuck GendusoChuck GendusonTommy Dorsey And His OrchestraVic Schoen And His OrchestraRay McKinley And His Orchestra + +2105292Frank DevenportAmerican celesta player and jazz composer/arranger. Same as [a=Frank Davenport (2)]?Needs VoteDavenportDevenportF. DevenportFrank DavenportFrank P. DevenportFrank Perry DevenportFrank Devenport Quintette + +2105341NuroGLLexxProduces Hard House. Wellington New Zealand + +Makes trance, techno, dnb & more +Needs Votehttps://soundcloud.com/ngs_digitalNuroNuro GLNuro-GLTeck071Andre Maier + +2105558Si-Jing HuangAmerican violinist. He's married to [a2328572].Needs VoteSi Jing HuangBoston Pops OrchestraBoston Symphony OrchestraHawthorne String Quartet + +2105559Bettina WildGerman flute player, born in Münster, Germany.CorrectDeutsche Kammerphilharmonie Bremen + +2105563Mark Ludwig (2)Violist.Needs Votehttps://www.bso.org/profiles/mark-ludwigMark D. LudwigBoston Pops OrchestraBoston Symphony OrchestraHawthorne String Quartet + +2105600Gijs KramersDutch violist, arranger, composer, conductor, and professor, born in 1974. +He studied at [l366737] graduating in 1998. He joined [a=Ricciotti Ensemble] initially as violist (1995-1999) and then as conductor (2006-2013). In 2001, he was appointed Co-Principal Viola of the [a=Netherlands Ballet Orchestra] before joining the [a=Philharmonia Orchestra] in 2002. Also member of the [b]Street Orchestra Live[/b] and conductor of [b]Metamorphosen Strijkorkest[/b] & [b]Nederlands Strijkergilde[/b].Needs Votehttps://www.facebook.com/gijs.kramershttps://www.instagram.com/gijskramers/https://www.youtube.com/channel/UC7yXsAxYitg22o0-PnltCDghttps://www.feenotes.com/database/artists/kramers-gijs-1974-present/https://philharmonia.co.uk/bio/gijs-kramers/http://ruysdaelkwartet.nl/eng/eng-about-us/eng-gijshttps://www.ricciotti.nl/hall-of-fame/gijs-kramershttps://www.metamorphosen.nl/dirigenthttps://nederlandsstrijkersgilde.nl/dirigent/G. KramersPhilharmonia OrchestraNederlands Blazers EnsembleThe Metropolitan Opera House OrchestraNetherlands Ballet OrchestraRuysdael QuartetRicciotti EnsembleLudwig Orchestra + +2105601Emi Ohi ResnickAmerican classical violinist.Needs Votehttp://www.emiohiresnick.info/Site/Welcome.htmlRadio KamerorkestAmsterdam SinfoniettaRuysdael Quartet + +2106120Leon AbramsonSwing and Rhythm 'N' Blues drummerNeeds VoteRoy Eldridge And His Orchestra + +2106156Moses HoganMoses George Hogan(March 13, 1957 – February 11, 2003) American composer and arranger of choral music. He was best known for his settings of African-American spirituals. Needs Votehttps://www.moseshogan.com/https://adp.library.ucsb.edu/names/117133HoganM. HoganMoses G. Hogan Jr.Moses George Hoganホーガン + +2106383Philip LawsonClassical bass / baritone vocalist, composer and arranger.Needs Votehttp://www.philiplawson.nethttps://en.wikipedia.org/wiki/Philip_Lawson_(composer_and_arranger)https://www.bach-cantatas.com/Bio/Lawson-Philip.htmLawsonP. LawsonThe SixteenThe King's SingersThe Academy Of Ancient Music ChorusThe English Concert ChoirThe Consort Of MusickeThe Schütz Choir Of London + +2106746Kaori TodaClassical violin and viola player.CorrectLa Petite BandeBach Collegium Japan + +2106818Reinhard HagenGerman classical bass vocalist.Correcthttp://www.reinhardhagen.de/Hagen + +2106922Jasper de WaalDutch horn player.Needs VoteConcertgebouworkestThe Chamber Orchestra Of EuropeNieuw Sinfonietta AmsterdamResidentie Orkest + +2108055August Wilhelm SchlegelGerman poet, translator and critic, born 8 September 1767 in Hanover, Germany and died 12 May 1845 in Bonn, Germany. Brother of [a1997480].Needs Votehttp://en.wikipedia.org/wiki/August_Wilhelm_SchlegelA W von SchlegelA. W. SchlegelA. W. Von SchlegelA. W. von SchlegelA.W. SchlegelA.W. Von SchlegelA.W. v. SchlegelA.W. von SchlegelA.W.SchlegelAugust SchlegelAugust Wilhelm Von SchlegelAugust Wilhelm von SchlagelAugust Wilhelm von SchlegelSchlegelVon SchlegelW. von SchlegelWilhelm SchlegelWilhelm von Schlegel + +2108486JennarateJenna BarkerHard Dance DJ/producer based in Southampton, UK.Complete and Correcthttp://www.facebook.com/pages/JENNARATE/147501242842?sk=wallhttp://soundcloud.com/jennaratehttp://www.wix.com/Jennarate_dj/jennarate + +2108615Fredrik BjörlinSwedish classical percussionistNeeds VoteDrottningholms BarockensembleGöteborgs SymfonikerKammarensembleN + +2108757Kathleen Murphy (2)Kathleen Murphy KempAmerican classical cellistNeeds VoteKathleen Murphy KempKathleen Murphy-KempRochester Philharmonic Orchestra + +2109296Ed PriceAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +2109303Neil BellinghamBritish bass vocalistNeeds Votehttp://dorkingtutor.co.ukNeli BellinghamMetro VoicesMagnificatLondon Voices + +2109308Elinor CarterClassical vocalist.Correcthttps://elinorcarter.wordpress.com/The Monteverdi Choir + +2109402Hana BlažíkováHana BlažíkováCzech soprano born on December 2, 1980 in Prague, Czech Republic. +Needs Votehttp://www.bach-cantatas.com/Bio/Blazikova-Hana.htmhttps://en.wikipedia.org/wiki/Hana_Bla%C5%BE%C3%ADkov%C3%A1BlažíkováH. BlažíkováHana Bla ÍkováHana BlazikovaHana BlazikováCollegium VocaleBach Collegium JapanLes Musiciens De Saint-JulienCollegium Vocale 1704Tiburtina EnsembleSchola BenedictaSette VociLa Cetra Vokalensemble BaselKirchheimer BachConsortBernvocal + +2109412Jaroslav TůmaJaroslav TůmaCzech classical organist and keyboardist. +Born 1956 in Prague (former Czechoslovakia). Correcthttp://www.jaroslavtuma.cz/J. ThüneJ. TumaJ. TůmaJaroslav TumaЯрослав ТомаPrague Chamber OrchestraCollegium Jaroslav Tuma + +2109655Edward GrintBritish bass baritone vocalistNeeds Votehttp://www.edwardgrint.comhttps://twitter.com/MisterGravelhttp://www.hazardchase.co.uk/artists/edward-grint/Edwards GrintGrintLondon VoicesLes Arts FlorissantsPolyphonyThe Cardinall's MusickPalace VoicesTenebrae (10) + +2109657Alice GribbinSoprano vocalistNeeds Votehttps://twitter.com/alicegribbin?lang=deMagnificatOxford CamerataLondon VoicesThe Tallis ScholarsPolyphonyThe Eric Whitacre SingersTenebrae (10) + +2109699Chach GonzalesNeeds VoteShorty Rogers And His Giants + +2110048Daniel SepecGerman classical violinist and concertmaster (born in Frankfurt am Main in 1965).Needs VoteDaniel SepečSepecFreiburger BarockorchesterBalthasar-Neumann-EnsembleDeutsche Kammerphilharmonie BremenArcanto QuartettArs Antiqua AustriaBundesjugendorchesterLes InventionsIl Rosario + +2110057Władysław RaczkowskiPolish conductor (1893-1959).Needs VoteW. RaczkowskiOrkiestra Symfoniczna Filharmonii Narodowej + +2110152Yukiko MurakamiClassical bassoonist.Needs VoteLa Petite BandeRicercar ConsortMusica AmphionBach Collegium JapanTulipa Consort + +2110485Beat DetecktivesNeeds Major ChangesBeat Detektives + +2111009Stuart KinsellaIrish tenorNeeds Votehttp://www.choirscan.com/moving-voices/10-moving-voices/24-tenor-stuart-kinsellahttps://www.irishbaroqueorchestra.com/stuartkinsellaAnúnaRIAS-KammerchorThe Choir Of St. Patrick's CathedralArnold Schoenberg ChorThe Choir Of Christ Church CathedralDurham Cathedral ChoirThe Choir of Christ Church Cathedral, DublinNational Chamber Choir Of IrelandIrish Baroque Orchestra + +2111330Michael MulcahyMichael Mulcahy is an Australian-born trombonist, professor at the Bienen School Of Music at the [l=Northwestern University], and member of the [a=Chicago Symphony Orchestra]. He is also an accomplished conductor specializing in contemporary music.Needs Votehttp://michaeljmulcahy.typepad.comhttp://cso.org/about/performers/chicago-symphony-orchestra/trombone/michael-mulcahyhttp://www.music.northwestern.edu/faculty/profiles/michael-mulcahy.htmlChicago Symphony OrchestraSummit BrassThe Chicago Chamber MusiciansChicago Chamber Musicians Brass Quintet + +2111661Tina McConnellVocalistNeeds VoteThe Roger Wagner Chorale + +2111662Lynda Sue Marks-GuarnieriVocalistNeeds VoteThe Roger Wagner Chorale + +2111666Joan Ellis (2)VocalistNeeds VoteThe Roger Wagner Chorale + +2111668Daniel PlasterVocalistNeeds VoteDan PlasterThe Roger Wagner Chorale + +2111670Alyss Olivia SannerVocalistNeeds VoteAlyss SannerThe Roger Wagner Chorale + +2111672Carver CosseyVocalistNeeds VoteThe Roger Wagner Chorale + +2111674Janet KorsmeyerVocalistNeeds VoteThe Roger Wagner Chorale + +2111675Susan MontgomeryVocalistNeeds VoteThe Roger Wagner Chorale + +2111678Eli VillanuevaVocalistNeeds VoteThe Roger Wagner Chorale + +2111687Monika BrucknerAlto vocalist.Needs VoteThe Roger Wagner ChoraleLos Angeles Master Chorale + +2111689Sandra BeckwithVocalistNeeds VoteThe Roger Wagner Chorale + +2111691Risa LarsonSoprano vocalist.Needs VoteThe Roger Wagner ChoraleLos Angeles Master Chorale + +2112679Jan KobowGerman Classical tenor born 1966 in Berlin. He studied organ at Paris‘Schola Cantum, church music in Hannover, and then voice with Sabine Kirchner at the Hamburg College of Music. Kobow has a predilection For Lied, particularly for the German art song of the Romantic era. Needs VoteJan KobovKobowDresdner KreuzchorCollegium VocaleEx TemporeKnabenchor HannoverRicercar ConsortWeser-RenaissanceBach Collegium JapanRheinische KantoreiTelemannisches Collegium MichaelsteinGli Angeli GenèveHimlische CantoreyLes FavoritesSette VociLes Voix BaroquesVocalensemble Rastatt + +2112954Trio LehteläFinnish family trio of cello player Toivo Lehtelä and his daughters Helena (violin) and Ritva (piano).Needs VoteTrioRitva LehteläToivo Lehtelä + +2113046Alain EntremontNeeds Major ChangesA. Entremont + +2113068Paul GannePaul Louis Alexandre GanneFrench composer and lyricist better known under his alias [a=Louis Palex]. He joined Sacem on November 29, 1932, before being appointed as a permanent member on May 11, 1955. +b.: Oct. 30, 1894 in Paris +d.: Dec. 18, 1995. + +Needs VoteGanneP. GanneLouis Palex + +2113069Louis HouzeauNeeds VoteL. HouzeauLouis Hennevé + +2113099John GracieClassical trumpeter. +Member of the [a627128] since 1981 +CorrectRoyal Scottish National Orchestra + +2113100Stéphane RancourtOboist. + +For the Canadian mixer, see [a2700769]. +CorrectStephane RancourtHallé OrchestraRoyal Scottish National Orchestra + +2113164Kenneth KnussenBritish classical double bass player. +He joined the [a=BBC Symphony Orchestra] in 1985.Needs VoteLondon Philharmonic OrchestraBBC Symphony Orchestra + +2113168Rachel GledhillClassical percussionist and composer.Needs VoteLondon Symphony OrchestraLondon Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent Garden + +2113172Cameron SinclairAward-winning Scottish composer, conductor, arranger and percussionist. Teacher at [l305416] (1989-2001). Teacher and conductor at the [l=Royal College Of Music] (09/2001-present).Needs Votehttps://www.cameronsinclair.co.uk/https://www.facebook.com/profile.php?id=100010286833600https://twitter.com/cr_sinclairhttps://www.linkedin.com/in/cameron-sinclair-70781413/https://en.wikipedia.org/wiki/Cameron_Sinclair_(composer)https://www.rcm.ac.uk/junior/teachers/details/?id=01406http://scottishmusiccentre.com/cameron-sinclair/SinclairEnglish Chamber OrchestraPhilharmonia OrchestraThe Chamber Orchestra Of EuropeScottish Chamber OrchestraGlyndebourne Festival OrchestraRoyal College Of Music + +2114488Henning RascheGerman double bassist, born 1965 in Detmold, Germany.Needs VoteGewandhausorchester LeipzigOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerCalamus EnsembleBundesjugendorchester + +2114490Ikuko HommaIkuko Yamamoto née HommaJapanese oboist and English horn player. Now based in Germany.CorrectGürzenich-Orchester Kölner PhilharmonikerCalamus Ensemble + +2114491Markus WittgensGerman horn player.CorrectOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerCalamus Ensemble + +2114492Andreas JakobsGerman horn player.CorrectGürzenich-Orchester Kölner PhilharmonikerCalamus Ensemble + +2114493Elisabeth PolyzoidesElisabeth Polyzoides-Baich née BaichElisabeth Polyzoides (born 1959) is an Austrian violinist. She's married to [a6908063].Needs VoteElisabeth Polyzoides-BaichSymphonie-Orchester Des Bayerischen RundfunksGürzenich-Orchester Kölner PhilharmonikerWiener KammerorchesterCalamus EnsembleBach-Collegium MünchenKölner StreichsextettVerein Ensemble "Neue Streicher" + +2114494Martina HorejsiMartina Horejsi-KieferGerman violist, born 17 February 1971.CorrectGürzenich-Orchester Kölner PhilharmonikerCalamus Ensemble + +2114495Antoaneta EmanuilovaCellist, born 1980 in Sofia, Bulgaria.Needs Votehttps://emanuilova.de/enAntoinetta EmanuilovaMahler Chamber OrchestraGürzenich-Orchester Kölner PhilharmonikerCalamus EnsembleBundesjugendorchesterOberon Trio + +2114497Tom Owen (2)British oboist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerCalamus EnsembleKölner Kammerorchester + +2114627Richard Clarke (5)Richard ClarkeAmerican swing era jazz trumpeter. Brother of [a418232] and [a342141].Needs VoteDick ClarkDick ClarkeRichard "Dick" ClarkRichard 'Dick' ClarkRichard ClarkTeddy Wilson And His OrchestraWillie Bryant And His OrchestraPutney Dandridge And His Orchestra + +2115381Josef Fiala (2)Composer, oboist, viola da gamba virtuoso, cellist, and pedagogue (3 February 1748 – 31 July 1816). He was born in Lochovice, Bohemia.Correcthttp://en.wikipedia.org/wiki/Josef_FialaFialaJ. FialaJosef FialaJoseph Fiala + +2115510Jean-Michel VinitClassical horn player.Needs VoteJ.-M. VinitJean-Michel VinittOrchestre De ParisLes Cuivres Français + +2115743Francesco GalligioniItalian classical cello and viol player.Needs Votehttps://www.bach-cantatas.com/Bio/Galligioni-Francesco.htmhttps://www.mariinsky-theatre.com/company/orchestra/cello/Francesco_Galligioni/L'Arte Dell'ArcoI BarocchistiVenice Baroque OrchestraAccordoneAuser MusiciL'Aura Soave CremonaEnsemble ConSerto MusicoL'EstravaganteHarmonices MundiDelitiæ MusicaeL'Onda ArmonicaOpera QvintaL'Opera Stravagante Di VeneziaEnsemble Lorenzo Da PonteGambe Di Legno + +2115746Paolo ZuccheriItalian Double Bass, Violone & Viola da Gamba instrumentalist, born in Bassano del Grappa, Paolo Zuccheri has studied bass with Alberto Rasi and John Amadio, graduating from the Conservatory "Benedetto Marcello" in Venice.Needs VoteL'Arte Dell'ArcoLes Musiciens Du LouvreIl Giardino ArmonicoI BarocchistiCantica SymphoniaZefiroFestspielorchester GöttingenEnsemble Lorenzo Da PonteGambe Di Legno + +2115748Carlo ZanardiClassical cello and viola da gamba playerNeeds VoteVenice Baroque OrchestraAuser MusiciEnsemble Barocco Sans SouciOrchestra Barocca G.B. TiepoloI Musicali AffettiArchicembalo Ensemble + +2115750Alessandra ArtifoniItalian classical harpsichordist, born 1967 in Florence. Active in recording since the 2010s.Needs Votehttp://www.bach-cantatas.com/Bio/Artifoni-Alessandra.htmhttps://www.facebook.com/people/Alessandra-Artifoni/100003575733462Auser MusiciOrchestra Del Maggio Musicale FiorentinoBaroque Lumina + +2115800Carol VanessCarol Theresa VanessAmerican lyric soprano (born July 27th, 1952 in San Diego). +She launched her professional career in 1977 with the San Francisco Opera. She made her [a=The Metropolitan Opera] debut in 1984 and has sung at many of the major opera houses of Europe. Also she teaches music at the Indiana University. +Correcthttp://sopranos.freeservers.com/vaness.htmCarol VanesCaroll VanessVanessキャロル・ヴァネス + +2116126Christopher HanulikClassical double bassist.Needs Votehttps://www.laphil.com/musicdb/artists/2292/christopher-hanulikChris HanulikChristophe HanulikThe Cleveland OrchestraLos Angeles Philharmonic Orchestra + +2116127David McGillAmerican classical bassoonist, born in Tulsa, Oklahoma. Professor of Bassoon at the Bienen School of Music since 2014.Needs VoteMcGillThe Cleveland OrchestraTulsa Philharmonic OrchestraChicago Symphony OrchestraToronto Symphony Orchestra + +2116128Michael SachsClassical trumpeter.Needs VoteThe Cleveland Orchestra + +2116533Cecil IrwinAmerican jazz saxophonist (tenor), clarinetist and arranger. +He played with : "Carroll Dickerson Orchestra", "Junie Cobb and his Grains of Corn", "Earl Hines and his Orchestra", "King Oliver Orchestra", "Kansas City Tin Roof Stompers", "Dixie Rhythm Kings". + +Born : December 07, 1902 in Evanston, Illinois. +Died : May 03, 1935 in Nevada, Iowa. +Needs VoteCecel IrwinIrwinEarl Hines And His OrchestraKing Oliver & His OrchestraHarry Dial And His BlusiciansWallie Coulter And His BandKansas City Tin Roof StompersDixie Rhythm Kings + +2117165Oliver AlcornOliver E. Alcorn (clarinet, alto and tenor saxophone) (born New Orleans, La., 3 august 1910 - died, Chicago, Ill., March 18, 1981) +Brother of Alvin, somehow related to George McCullum in whose band he started. Then at the Alley Cabaret with leader Maurice Durand (trumpet), Walter Decou (piano), Wellington Dolton (banjo), and George Henderson (drums). Replaced Polo Barnes in and recorded with Celestin's Original Tuxedo Orchestra (New Orleans, autumn 1927). Rejoined Celestin in the early 1930s, later with Sidney Desvigne on the steamer Capitol, and Floyd Campbell. After World War II in Chicago, where he recorded with Little Brother Montgomery (1947) and St Louis Jimmy (1948). (from "Deep South Piano" by Karl Gert zur Heide)Needs Votehttps://digitallibrary.tulane.edu/islandora/object/tulane%3A14329https://www.allmusic.com/artist/oliver-alcorn-mn0001415932Original Tuxedo Jazz OrchestraThe State Street RamblersLittle Brother Montgomery Quintet + +2117595Liam O'KaneSinger.Needs Voteリアム・オッケーンLibera + +2118677Ronald BarronRonald Barron is former principal trombonist of the Boston Symphony Orchestra, a position he held starting in 1975. He joined the orchestra in 1970 after being a member of the Montreal Symphony Orchestra, and also served as principal trombonist of the Boston Pops for 13 seasons. Barron taught at New England Conservatory from 1995 through his retirement in 2013. + +In addition to numerous recordings with the Boston Symphony and the Boston Pops, Barron has recorded and performed with the Canadian Brass, Empire Brass, and Summit Brass, and has nine recordings on the Boston Brass Series label.Correcthttp://www.trombonebarron.com/Ron_Barron/Home.htmlhttp://necmusic.edu/faculty/ronald-barron?lid=2&sid=3Ron BaronRon BarronBoston Symphony OrchestraSummit Brass + +2118678Charles SchlueterAmerican classical trumpet player, born in 1939.CorrectCharles E. SchlueterSchlueterBoston Symphony OrchestraThe Cleveland OrchestraMinnesota OrchestraMilwaukee Symphony OrchestraKansas City Philharmonic + +2118679Charles KavalovskiFrench horn player, born in 1936 in St. Paul, Minnesota. Principal horn, Boston Symphony Orchestra (1972-1997).Needs Votehttps://www.hornsociety.org/ihs-people/honoraries/26-people/honorary/577-charles-kavalovskiCharles KavaloskiCharles KavaloskyKavaloskiBoston Symphony OrchestraBoston Symphony Chamber Players + +2118680Peter Chapman (5)Classical trumpet player.CorrectBoston Symphony Orchestra + +2119130William Adams (2)Classical cornettistNeeds VoteGabrieli Players + +2119132James Huw-JeffriesClassical vocalistNeeds VoteGabrieli Consort + +2119133Celia HarperClassical harpist. Began her career as a harpsichordist & organist, but branched out after physical injuries restricted her virtuosity, and moved into composition.Needs Votehttp://www.celiaharper.comChameleonThe SixteenGabrieli PlayersThe Thames Chamber Orchestra + +2119234Beatrice ReichertBeatrice Reichert (21 September 1903 in Paris, France - 1972) was an Austrian cellist and Viola da Gamba player.Needs VoteBeatrice ReichartBeatrix ReichertBeatrixe ReichertChamber Orchestra of the Vienna State OperaSolistenensemble Der Wiener Staatsoper + +2119239Karl ProhaskaAustrian classical flautistCorrectOrchester Der Wiener Staatsoper + +2119241Herbert SzaboHerbert Szabo (31 October 1924 in Baden, Austria — 9 January 2015) was an Austrian oboist and english horn player.Needs VoteHerbart SzaboWiener PhilharmonikerWiener Volksopernorchester + +2119242Franz OpalenskyClassical flautistNeeds VoteFranz OpaleskyFranz OpaleskyOrchester Der Wiener Staatsoper + +2119588Ladislau HorvathClassical violinist, active from the 1980s.CorrectOrchestra Del Maggio Musicale Fiorentino + +2120539Chick Bullock & His Levee LoungersCharles (Chick) Bullock was a popular American jazz and dance band vocalist, most active in the 1930s. Many of his records were issued under the name "Chick Bullock and his Levee Loungers".Needs VoteChick Bullock Accompanied By His Levee LoungersChick Bullock And His Levee LoungersChick Bullock and His Levee LoungersChick Bullock's Levee LoungersChick Bullock’s Levee LoungersAl Dollar & His Ten CentsTommy DorseyGeorge James (2)Jimmy DorseyEdgar HayesBenny JamesMuggsy SpanierBilly Taylor Sr.Chick BullockRed Jessup + +2120912Arthur NilssonArthur Axel NilssonNeeds VoteA NilssonA. NilssonArthur A.NilssonArthur Axel NilssonNillsonNilsonNilsson + +2121471Dmitry BadiarovClassical violinist and luthier. He has designed a "shoulder cello" playable by violinists.Needs Votehttps://www.facebook.com/DmitryBadiarovEntrepreneur/Dimitry BadiarovDmitri BadiarovLa Petite BandeRicercar ConsortBach Collegium JapanLes MuffattiEnsemble Clematis + +2122205Mutsumi OtsuClassical viola player.CorrectOtsu MutsumiLes Arts FlorissantsLa Petite BandeBach Collegium Japan + +2122635Wolfram JustViolin and Viola d'amore player.Needs VoteStaatskapelle DresdenDresdner BarocksolistenVirtuosi SaxoniaeCappella Sagittariana Dresden + +2122864Colette HarrisViolist.Needs VoteMusica Antiqua Köln + +2122866Lee FortierAmerican jazz trumpeterNeeds Votehttps://www.allmusic.com/artist/lee-fortier-mn0001765907Les FortierWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +2122871Gus ChappellCredited as trombonist.Needs VoteChappelChappellGus ChapellGus ChappelleГ. ЧэппелStan Kenton And His OrchestraEarl Hines And His OrchestraGus Chappell And His OrchestraDinah Washington & The All-Stars + +2122872Howard TerryNeeds VoteH. TerryHoward "Pete" TerryHoward P. TerryHoward Peter TerryGeorgie Auld And His OrchestraSi Zentner & His Dance Band + +2122942Matthew Hunt (2)British clarinetist now based in Germany.Needs Votehttp://www.matthewhuntclarinet.com/Matt HuntDeutsche Kammerphilharmonie BremenEnsemble 360Estonian Festival OrchestraKaleidoscope Chamber Collective + +2122989Věnceslava Hrubá-FreibergerCzech soprano and professor of music at the Hochschule für Musik Franz Liszt Weimar. She was born 28 September 1945 in Dublovice, Czech Republic.CorrectHruba-FreibergerHrubá-FreibergerVenceslava Hruba-FreibergerVenceslava Hruba-FreiburgerVeneceslava Hruba-FreibergerVěnceslava Hruba-FreibergerVěnceslava HrubáVěnceslava Hrubá-Freibergerová + +2123445Emmanuelle BoisvertCanadian violinist.Needs VoteDetroit Symphony OrchestraThe Cleveland OrchestraDallas Symphony Orchestra + +2123838Charlotte GrattardFrench violinist from Grenoble.Needs Votehttps://opheliegaillard.com/charlotte-grattard-violon/PulcinellaLes Talens LyriquesLeos QuatuorLa Petite SymphonieLes Épopées + +2123841Lionel BordBassoonist.CorrectOrchestre De Paris + +2123958Robert GrowcottClassical violinist. +Born 26 May 1930, Shropshire, England; died 22 November 2020, Port Alberni, British Columbia, Canada. +Correcthttps://www.vancouverislandfreedaily.com/obituaries/robert-growcott/London Philharmonic OrchestraVancouver Symphony OrchestraBournemouth Symphony OrchestraRoyal Liverpool Philharmonic OrchestraPurcell String QuartetVancouver Island Symphony Orchestra + +2123961Christopher IrbyChristopher Antony Ralph IrbyBritish cellist (22 May 1931 – 3 August 2019).Needs Votehttps://marlborough.news/features/features-people/features-people-obituaries/obituary-christopher-irby-professional-cellist-and-conductor-of-the-marlborough-concert-orchestra-for-many-years/Chris IrbyRoyal Philharmonic OrchestraThe London Cello Sound + +2123962William WebsterClassical bassistNeeds VoteLondon Philharmonic Orchestra + +2123970Geoffrey PriceViolinist in the [a=London Philharmonic Orchestra] for 36 years. Died in 2005.Needs VoteLondon Philharmonic Orchestra + +2123971Maurice CheckerOboe and English horn player.Needs VoteCheckerLondon Philharmonic Orchestra + +2123972David James (22)British orchestral bassist.Needs VoteLondon Philharmonic Orchestra + +2123977Roger Winfield (2)Oboe and Cor Anglais (English Horn) player and teacher.Needs VoteRoger WinfieldLondon Philharmonic OrchestraHallé OrchestraPhilharmonia OrchestraThe Wind Virtuosi Of England + +2123980John Chambers (4)British classical violist. Born in 1936 - Died in 1994. +He graduated from the [l527847] in 1960. He was a member of the [a=London Symphony Orchestra] (1961-1962). He was Principal Viola of the [a=City Of Birmingham Symphony Orchestra] for six years, the [a=London Philharmonic Orchestra] for ten years and the [a=Philharmonia Orchestra] (from 1979 until his death). Needs Votehttps://www.facebook.com/bbcradio3/posts/this-is-john-chambers-ex-principal-viola-of-the-london-philharmonic-orchestra-th/696661930355698/London Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraCity Of Birmingham Symphony OrchestraBath Festival Chamber OrchestraBath Festival Orchestra + +2123981Alexander CameronClassical cellistNeeds Votehttps://musicbrainz.org/artist/8eae6bae-552a-430c-a9f7-09f2a7695f16London Philharmonic Orchestra + +2123983Remo LauricellaRemo L.A. LauricellaBritish composer and concert violinist. Born in 1912 in London, England, UK - Died 19 January 2003 in London, England, UK. +He studied at the [l290263]. He was a member of the [a=London Symphony Orchestra] (1937-1939) but much of his career was spent as first violinist for the [a=London Philharmonic Orchestra].Needs Votehttps://en.wikipedia.org/wiki/Remo_LauricellaRaymond LauriLondon Symphony OrchestraLondon Philharmonic Orchestra + +2123984Bryan Scott (2)Classical bassistNeeds VoteLondon Philharmonic Orchestra + +2123990Ronald CalderCellist.CorrectLondon Philharmonic OrchestraThe London Cello Sound + +2123991Kenneth GoodeClassical double bassistNeeds VoteLondon Philharmonic Orchestra + +2123993Joseph CurrieClassical hornist.Needs VoteJoseph Giddis CurrieJoseph Giddis-CurrieRoyal Scottish National OrchestraBournemouth Symphony OrchestraScottish National Orchestra Wind Ensemble + +2123996Keith WhitmoreBritish classical hornist.Needs VoteLondon Philharmonic OrchestraBath Festival Chamber OrchestraThe Wind Virtuosi Of England + +2124008Iain KeddieScottish hornist. 2nd hornist of the [a=London Philharmonic Orchestra].CorrectLondon Philharmonic Orchestra + +2124466Sean ClaytonBritish Tenor & Countertenor vocalist.Needs Votehttp://seanclayton.co.ukLes Arts FlorissantsLe Poème HarmoniqueInaltoBachPlusEnsemble Perspectives + +2124471Marianna SzücsHungarian violinist.Needs VoteMarianna SzucsThe Academy Of Ancient MusicThe MozartistsThe Concertante Ensemble of London + +2124481Andrew TortiseTenor vocalist.Needs VoteDe Nederlandse BachverenigingGli Angeli GenèveSolomon's KnotThe Choir Of Trinity College, Cambridge + +2124486Christine GarrattFlautist.Needs Votehttps://thesixteen.com/team/christine-garratt/Chrissie GarrattThe Sixteen + +2124488Roy RashbrookClassical vocalistNeeds VoteGabrieli ConsortRetrospect Ensemble + +2124980Franz KleinFranz Klein (30 April 1927 - 1998) was a German clarinetist and Professor of clarinet at the [l328201].Needs VoteF. KleinHans Bund Und Sein TanzorchesterOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerPhilharmonisches Oktett BerlinKölner Rundfunk-Sinfonie-Orchester + +2125012Ayako MatsunagaClassical violinist.Needs VoteAyako MatzunagaMusica Ad RhenumBach Collegium JapanZefiroConsort Del Collegio GhislieriIl DemetrioAccademia OttoboniConcerto SciroccoEnsemble La DafneAux Pieds du RoyControcorrente (2) + +2125017Koji Takahashi (2)Classical cellist.Needs VoteLa Petite BandeBach Collegium JapanMusica Reservata (3) + +2125518John HumphriesClassical hornist.Needs VoteHumphriesJ. HumphriesThe Academy Of Ancient MusicThe Friends Of Apollo + +2125592Sylvie SentenacFrench violinist.Needs VoteS. SentenacSylvie SantenacOrchestre National De L'Opéra De ParisOctuor de France + +2125929Christina SampsonChristina Birchall-SampsonBritish soprano vocalist.Needs Votehttp://christinabirchallsampson.com/London VoicesChoir Of London (2) + +2125947Jonathan MidgleyClassical bass vocalist.Needs VoteThe Choir Of Clare College + +2126578AudoxChristopher KerryHouse / Hard House DJ & producer from Manchester, UK.Needs Votehttps://linktr.ee/Audoxhttps://www.facebook.com/Audoxhttps://www.instagram.com/audoxhttps://soundcloud.com/audoxChris Kerry (2) + +2127200Veronica KrönerVeronica Kröner is a German classical violinist and violin teacher.Needs VoteVeronika KrönerConcentus Musicus WienWiener AkademiePiccolo Concerto WienOrquesta Ciudad de GranadaRSO Wien + +2127515Ben Johnson (15)Jazz guitar player, he played with Oscar Peterson in the 1940s.Needs Votehttp://www.allmusic.com/artist/ben-johnson-mn0002008465Ben JohnsonBen Johnson E Le Sue ChitarreThe Oscar Peterson Trio + +2128084Manuel ValerioAmerican clarinetist, born 17 July 1905 and died in April 1982.Needs VoteM. ValerioBoston Pops OrchestraBoston Symphony Orchestra + +2128548Rob DirksenDutch double bassist.Needs VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +2128847Barbara BodeGerman oboist and translator to German of liner notes.Needs VoteBamberger SymphonikerEuropean Union Youth Orchestra + +2128924John Poole (3)John Poole (born July 21, 1925, Long Beach, California, USA - died April 11, 1999, Las Vegas, Nevada, USA) was an American jazz drummer. He was the drummer and road manager for [a258903].Needs VoteJohn PoolThe Oscar Peterson QuartetJohn Poole Trio + +2128950David Hubbard (3)Bassoon playerNeeds VoteRoyal Scottish National OrchestraOrquesta Ciudad De Málaga + +2129458Christophe GauguéFrench violistNeeds VoteChristophe GaugeChristophe GaugueOrchestre Philharmonique De Radio FranceTrio WandererSwiss Baroque SoloistsQuatuor Prat + +2129819Coro Del Teatro Dell'Opera Di RomaThe chorus of the Rome Opera House, founded in 1935 by the artistic director [a=Tullio Serafin]. + +Note: for the orchestra please use [b][a=Orchestra Del Teatro Dell'Opera Di Roma][/b]. +Needs Votehttp://www.operaroma.it/complessi_artistici/coro& ChorusChoeurChoeur De L'Opera De RomeChoeur De L'Opéra ItalienChoeursChoeurs De L'Opéra De RomeChoeurs De L'opéra De RomeChoeurs Du Théatre De L'Opéra De RomeChoeurs Du Théatre de L'Opéra de RomeChoeurs Du Théâtre De L'Opéra De RomeChoirChoir Of The Opera At RomeChorChor Del Teatro Dell'Opr Di RomaChor Dell'Opera NeapelChor Der Grossen Oper RomChor Der Oper RomChor Der Oper, RomChor Der Opera, RomChor Der Römischen OperChor Des Opernhauses RomChor Des Opernhauses, RomChor Des Römischen OpernhausesChor Des Teatro Dell'Opera Di RomaChor der Oper RomChor des Opernhauses RomChorusChorus From Rome Opera HouseChorus From The Opera HouseChorus Of Teatro Dell'Opera, RomeChorus Of Rome OperaChorus Of Rome Opera HouseChorus Of Teatro Dell'Opera - RomaChorus Of Teatro Dell'Opera Di RomaChorus Of Teatro Dell'Opera, RomaChorus Of The Opera House, RomeChorus Of The 'Teatro Dell Opera A Roma'Chorus Of The 'Teatro dell 'Opera A Roma'Chorus Of The Opera House RomeChorus Of The Opera House, RomaChorus Of The Opera House, RomeChorus Of The Opera House,RomeChorus Of The Opera ItalianaChorus Of The Rome OperaChorus Of The Rome Opera HouseChorus Of The Rome Opera House, RomeChorus Of The Rome Opera OrchestraChorus Of The Royal Opera House, RomeChorus Of The Teatro Dell' Opera, RomeChorus Of The Teatro Dell'Opera Di RomaChorus Of The Teatro Dell'Opera Di RomeChorus Of The Teatro Dell'Opera RomeChorus Of The Teatro Dell'Opera di RomaChorus Of the Rome Opera HouseChorus Rome Opera HouseChorus and Orchestra of the Rome OperaChorus of the Opera House RomeChorus of the Opera House, RomeChorus of the Rome OperaChorus of the Rome Opera HouseChorus of the Teatro Dell'Opera Di RomaChorus of the Teatro dell'Opera di RomaChorus/ChoursChœur De L'Opéra De RomeChœur Du Théâtre De L'Opéra De RomeChœur de L'Opéra de RomeChœursChœurs De L'Opéra De RomeChœurs De L'Opéra De Rome*Chœurs De L'opéra De RomeChœurs Du Teatro Dell'Opera Di RomaChœurs Du Théâtre De L'Opéra De RomeCoroCoro Da Opera De RomaCoro De La Opera De RomaCoro De La Ópera De RomaCoro Del Opera Di RomaCoro Del Teatro De La Opera De RomaCoro Del Teatro De La Ópera De RomaCoro Del Teatro Dell' Opera Di RomaCoro Del Teatro Dell'Opera di RomaCoro Del Teatro Dell'Opera, RomaCoro Dell' Opera Di RomaCoro Dell'Opera - RomaCoro Dell'Opera Di RomaCoro Dell'Opera di RomaCoro Dell'opera Di RomaCoro Di RomaCoro Di Roma Della RAICoro ECoro Teatro Dell' Opera Di RomaCoro del Teatro de la Ópera de RomaCoro del Teatro dell'Opera di RomaCorosCoros De La Casa De La Opera De RomaCoros De La Opera De RomaCoros De La Opera de RomaCoros Del Teatro De La Opera De RomaCoros Del Teatro De La Opera de RomaCôro Da Ópera De RomaCôro Ópera Real De RomaE CoroKoor En Orkest van Operas van RomeKoor Van De Opera Te RomeKoor van de Opera RomeLes Chœurs De L'opéra De RomeOpera Di TomaOrkest Van De Opera Te RomeRoma Opera ChorusRoma Opera House ChoirRoma Opera House ChorusRoma Operas KorRoma-operaens koRome Opera ChorusRome Opera ChorusRome Opera House ChorusRome Opera House OrchestraRome Opera House, ChorusRome Opera Huse ChorusRome Opera Theater ChorusRome Opra House ChorusRome Oprera ChoprusRome Royal Opera ChorusRomoperans KörRoyal Opera ChorusRoyal Opera Chorus, RomeTeatro Dell'Opera Di RomaTeatro Dell'Opera Di Roma CoroThe Rome Opera And ChorusThe Rome Opera ChorusThe Rome Opera House ChorusZbor I Orkestar Rimske OpereZbor Rimske OpereZbor Rimske opereСолисты Римской ОперыХор Римской ОперыХора На Римската ОпераOsiris Stanziola + +2130273Markus SteckelerGerman classical drummer and percussionist. A member of the [a604396] from 1981 to 2020. +Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +2130739Coro del Teatro Comunale di BolognaChorus of the Teatro Comunale di BolognaCorrectChoeurs Du Théâtre Communal De BologneChoirChorChor Des Stadttheaters BolognaChor Des Teatro Comunale Di BolognaChor d. Stadttheaters BolognaChor des Teatro Comunale, BolognaChorusChorus Of Teatro Communale, BolognaChorus Of Teatro Comunale Di BolognaChorus Of The Teatro Communale Di BolognaChorus Of The Teatro Communale, BolognaChorus Of The Teatro Communile, BolognaChorus Of The Teatro ComunaleChorus Of The Teatro Comunale BolognaChorus Of The Teatro Comunale Di BologniaChorus Of The Teatro Comunale, BolognaChorus of Teatro Communale Di BolognaChorus of Teatro Comunale, BolognaChœur Du Teatro Comunale De BologneChœur Du Théâtre Communal De BologneChœurs du Théâtre Communal de BologneCoroCoro Del Teatro Comunal De BoloniaCoro Del Teatro ComunaleCoro Del Teatro Comunale De BolognaCoro Del Teatro Comunale Di BolognaCoro Del Teatro Comunicale Di BolognaCoro Di Voci Bianche Del Teatro Comunale di BolognaCoro Do Teatro Comunal de BolonhaIl Coro Del Teatro Communale Di BolognaTeatro Comunale Di BolognaThe Otto Schneider Festival Concerts Choir + +2131002Renata SpottiClassical violinist.Needs VoteR. SpottiEnsemble 415Europa GalanteModo AntiquoI BarocchistiAcademia Montis RegalisOrchestra AglàiaZefiroConsort Del Collegio GhislieriI Madrigalisti Ambrosiani + +2131007Christoph TimpeClassical violinist & liner notes author. Born 1961 in Freiburg im Breisgau, Baden-Württemberg, GermanyNeeds Votehttps://www.staatstheater.karlsruhe.de/ensemble/id/3935/Modo AntiquoVenice Baroque OrchestraAcademia Montis RegalisCantar LontanoAccademia Per MusicaFestspielorchester GöttingenWunderkammer Orchestra + +2131010Riccardo MinasiItalian classical violinist, concertmaster and conductor (born in Rome in 1978). +He founded the baroque ensemble [a=Musica Antiqua Roma] in 2007.Needs Votehttp://www.riccardominasi.com/site/Home.htmlhttps://en.wikipedia.org/wiki/Riccardo_MinasiMinasiR. MinasiRiccardo Masahide MinasiRiccardo-Masahide MinasiLe Concert Des nationsDas Mozarteum Orchester SalzburgIl Giardino ArmonicoNew Seasons EnsembleArcadia EnsembleIl Complesso BaroccoAcademia Montis RegalisAlessandro Stradella ConsortMusica Antiqua RomaIl Pomo d'OroLe Bizzarrie ArmonicheAustrian Baroque CompanyEnsemble Claudiana + +2131017Maurizio BorzoneClassical violin and viola player, singer.Needs Votehttp://www.violinik.com/the_band_eng.htmhttp://www.buiopesto.it/biografia-bp-la-band-maurizio-borzone/Venice Baroque OrchestraAcademia Montis RegalisImagin'ariaBuio PestoEnsemble Dell'Opera Barocca Del Teatro Di Guastalla + +2131746John Carroll (5)Jazz trumpeter active between 1943 & 1950. +Please refer to [a4793524] for the Irish trumpet player born 1943, active since the 1960s.Needs VoteJohn CarollJohn CarrolStan Kenton And His OrchestraBenny Carter And His Orchestra + +2132797Sebastian KnauerGerman classical pianist, born in 1971 in Hamburg, GermanyNeeds Votehttp://www.sebastianknauer.com/https://sebastianknauer.bandcamp.com/https://www.facebook.com/sebastianknauer.pianohttps://de.wikipedia.org/wiki/Sebastian_Knauer_(Pianist)Sebastian Knaver + +2133598Marcus NiedermeyrGerman bass / baritone vocalist born in Bavaria +Needs Votehttp://www.marcus-niedermeyr.ch/La Petite BandeCappella MurensisAbendmusiken BaselEnsemble Turicum + +2133601Christoph GenzThe Erfurt-born tenor Christoph Genz received his first musical training as a member of the St. Thomas’ Boys Choir in Leipzig.Needs Votehttp://www.christophgenz.com/GenzHallenser Madrigalisten + +2133821Millicent SilverMillicent Irene Silver[b]Millicent Silver[/b] (17 November 1905, London — 1 May 1986) was an English harpsichordist, pianist, violinist, and music educator, wife of flutist [url=https://discogs.com/artist/3652615]John Francis[/url] (1908—1992), with whom they established the [b][a=London Harpsichord Ensemble][/b] in 1945 and mother of oboist [a=Sarah Francis] (b. 1938) and operatic soprano [a=Hannah Francis]. Silver taught as a professor of piano and harpsichord at the [url=https://discogs.com/label/290263]Royal College of Music[/url] in London for over twenty years. Some of her prominent students included harpsichordist [a=Trevor Pinnock], organist [a=Christopher Herrick], and pianists [a=Melvyn Tan] and [a=Christopher Kite]. + +Silver was born in South London and grew up in a musical family. She attended the [url=https://discogs.com/label/290263]Royal College of Music[/url] on a scholarship to study piano and violin; her primary tutor was [url=https://discogs.com/artist/1641486]W. H. "Billy" Reed[/url], leader of the [a=London Symphony Orchestra] and [url=https://discogs.com/artist/255804]Edward Elgar[/url]'s friend. Millicent began working as a violinist in the [a374006] while studying at RCM; she gave numerous piano recitals, performing [url=https://discogs.com/artist/226461]Liszt[/url] and [url=https://discogs.com/artist/304975]Brahms[/url] concertos and, most notably, [url=https://discogs.com/artist/95544]Beethoven[/url]'s [i]"Emperor" Concerto No. 5[/i] with LSO under [a=Sir Adrian Boult]'s baton, playing on piano in the first half and sitting with the orchestra as a principal violin at the end. After graduating, Millicent Silver continued piano studies with [a=Tobias Matthay]. + +Towards the end of the Second World War, her career took a drastic turn after [l=Dartington Hall]'s conductor [a=Hans Oppenheim] convinced Millicent to play the harpsichord continuo in [url=https://discogs.com/artist/65796]Purcell[/url]'s [i]Dido and Aeneas[/i] opera; since then, Silver favored the instrument exclusively. In 1945, she co-founded the [a=London Harpsichord Ensemble] with her husband and several fellow musicians, debuting with a performance of [a=Myra Hess] concert at [a11802836]. Over the next 35 years, she championed a vast solo harpsichord repertoire, equally prolific on Baroque originals, period replicas, and "revival" instruments popular in the 1950-60s from makers like [url=https://discogs.com/artist/5747274]Robert Goble & Son[/url], with 16' stops, pedals, and other modernizations. Millicent Silver performed most of [url=https://discogs.com/artist/95537]Bach[/url]'s keyboard works, including [i]Goldberg Variations[/i], all concertos, partitas, and English suites, music by his sons, [url=https://discogs.com/artist/841803]C.P.E. Bach[/url] and [a842307], numerous sonatas by [a=Domenico Scarlatti], [a883759], [a=François Couperin] and [a=Jean-Philippe Rameau], and English virginalists, such as [a=William Byrd], [a=Orlando Gibbons], and [a=John Bull]. She extensively covered the XX-century harpsichord music by [a=Manuel de Falla], [a=Hans Werner Henze], [a=György Ligeti], and many others. Millicent gave radio broadcast premieres of [a=Benjamin Britten]'s [i]Holiday Diary[/i] and [a=Paul Hindemith]'s [i]Flute Sonata[/i] together with her husband, John Francis. A few composers commissioned original works for Silver, including [a=Walter Leigh], [a=Gordon Jacob], and [a=Herbert Howells]. Millicent Silver and John Francis retired from public performance in early 1981.Needs Votehttps://en.wikipedia.org/wiki/Millicent_Silverhttps://web.archive.org/web/20071006134324/www.baroque-music-club.com/biogmsilver.htmlLondon Symphony OrchestraHallé OrchestraLondon Harpsichord Ensemble + +2133946Maartje-Maria den HerderDutch cellist.CorrectMaartje Maria Den HerderMaartje Maria den HerderConcertgebouworkest + +2133950Rick StotijnDutch classical contrabassist and professor.Needs VoteRich StotjinSveriges Radios SymfoniorkesterMahler Chamber OrchestraRundfunk-Sinfonieorchester BerlinAmsterdam SinfoniettaStockholm Syndrome Ensemble + +2133972Rosalinde KluckClassical violistNeeds VoteRotterdams Philharmonisch Orkest + +2134338Nabi CabestanyClassical cellistNeeds VoteN. CabestanyOrchestre De Chambre De ToulouseAmaury Faye Ensemble + +2135220Catherine BrubakerAmerican viola playerNeeds VoteChicago Symphony Orchestra + +2135223Melanie KupchynskyAmerican violinistNeeds Votehttp://www.melaniekupchynsky.com/Melanie KupchynskiChicago Symphony Orchestra + +2135228Richard HirschlAmerican cellist.Needs VoteRichard HirschChicago Symphony Orchestra + +2135231Mihaela IonescuRomanian born violinist. She's married to [a1025726].Needs VoteMihaela Ionescu AshkenasiMihaela AshkenasiChicago Symphony Orchestra + +2135288Ray AttfieldClassical Baritone vocalist, Percussionist and Bells player.Needs VoteSt. George's CanzonaSneak's Noyse + +2135319Guido De VecchiClassical viola playerNeeds VoteEuropa GalanteAlessandro Stradella ConsortEnsemble Il Falcone + +2135320Gabriele FolchiClassical violinist.Needs VoteEuropa GalanteModo AntiquoSonatori De La Gioiosa MarcaInsieme Strumentale Di RomaAccademia Per Musica + +2135321Alessandro BaresBorn in Como in 1970, a diploma in modern violin and baroque violin, he attended the academy of music "G. Verdi" in Milan, the Civica Scuola di Musica in Milan, the "Centre de musique ancienne" in Geneva and the "School of Musical Paleography and Philology "of Cremona.Needs VoteEuropa GalanteModo AntiquoIl Complesso Barocco + +2135323Giovanni SabbioniClassical violone playerCorrectEuropa Galante + +2135419Jana BoutaniJana Kralova BoutaniClassical cellist, living in Sweden, born on 3 December 1966.Needs VoteStockholm Session StringsSveriges Radios Symfoniorkester + +2135535Eric TerwilligerAmerican hornist, born 1954 in Bloomington, Indiana. A member of the [a604396] from 2007 to 2019.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksAmadeus-Orchester + +2135650Matthew ComerfordTrumpet playerNeeds VoteMatt ComerfordMattew ComerfordChicago Symphony OrchestraChicago Lyric Opera Orchestra + +2135840Georg KlütschGerman bassoonist, born in 1951 in Düren, Germany.CorrectBamberger SymphonikerBläserensemble Sabine Meyer + +2135842Wolfgang TeschnerGerman clarinetist. +CorrectBamberger Symphoniker + +2135843Gunther PohlGerman flutist and Professor of Flute, born 12 September 1941 in Oppeln, Germany (today Opole, Poland).Needs Votehttp://www.gunther-pohl.deBamberger SymphonikerBachcollegium StuttgartNDR Sinfonieorchester + +2135979Anna ZelianodjevoClassical violinistNeeds VoteDet Kongelige KapelRoyal Danish String QuartetDR SymfoniOrkestretArild String Quartet + +2136730Per BillmanPer Anders Ivar BillmanPer Billman, born on March 30, 1961 in Önnestad, Sweden, is principal clarinettist of [a605569] in Stockholm. + +He has studied at [l1710318] and [l419723]. For a number of years he was a freelance musician in Stockholm, performing with such ensembles as the [a1927246], and in many other chamber groups. + +He is now regarded as one of Scandinavia’s leading exponents of the instrument. + +Needs Votehttp://www.hovkapellet.com/musiker-och-dirigenter/18/per-billman/Kungliga HovkapelletStockholm Chamber OrchestraOktetten Ehnstedts Eftr. + +2137248Gilberto LosiNeeds VoteLosi GilbertoOrchestra dell'Accademia Nazionale di Santa Cecilia + +2138145Chris DuindamDutch violin playerNeeds VoteDuindamNieuw Sinfonietta Amsterdam + +2138148Billy FordWilliam Thornton FordUS trumpeter, vocalist orchestra conductor and songwriter. + +Born March 9, 1919 in Bloomfield, New Jersey +Died March 1983 in East Orange, New Jersey + +Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=1025673&subid=0http://doo-wop.blogg.org/thunderbirds-4-billy-ford-the-c26504266B. FordFordCootie Williams And His OrchestraBilly & LillieBilly Ford And The ThunderbirdsBilly Ford & His Musical V-8'sBilly Ford And His OrchestraBilly Ford & His Night RidersBilly Ford And His Combo + +2138199Lisa FergusonClassical violinist.Needs VoteLisa Kawata FergusonThe Amsterdam Baroque OrchestraAccademia BizantinaEuropa GalanteArchipelago (8) + +2138484Andrew McKeeClassical baritone vocalist.Needs VoteWestminster Cathedral ChoirBrigham Young University Singers + +2140039Melanie RichterGerman violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +2140636Mathias BaierGerman classical bassoon player.Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/mathias-baier.24557BaierMatthias BaierStaatskapelle BerlinOrchester der Bayreuther FestspieleKammervereinigung BerlinOctetto Tokyo-BerlinBläserquintett der Staatskapelle BerlinEnsemble Blumina + +2143203Steve Gregory (7)Jazz guitaristCorrectThe George Stone Big Band + +2144801Tzimon BartoJohnny Barto SmithAmerican pianist and conductor, born 2nd January 1963 in Eustis, FL.Correcthttp://www.tzimonbarto.com/ + +2145298Janis K. TunnellNeeds Major ChangesJ. K. TunnellJ. TunellJ. TunnelJ. TunnellJ.K. TunnellJ.TunnellJanis Tunnell + +2145818Valentina Di TarantoItalian chorus language coachCorrect + +2146155Augusto VismaraAugusto Vismara is an Italian classical violist, violinist and conductor, born in Florence in 1953. Active since 1983, conducting recordings since 2015. + +Before he devoted his talent to playing the violin and conducting, he had a viola solo career with the major European orchestras under the baton of conductors such as [a=Giuseppe Sinopoli], [a=Christian Thielemann], [a=Antonio Janigro], [a=Peter Maag] and [a=Luciano Berio]. He held the position of principal violist with the Maggio Musicale Fiorentino Orchestra in his native Florence, with the Santa Cecilia Orchestra in Rome, with the Orchestra della Scala in Milan and with the Orchestra della Fenice in Venice. Outside of Italy, he was the principal violist of the Montecarlo Opera Orchestra and of the Zurich Chamber Orchestra. + +A very active chamber musician, Augusto Vismara has toured Australia, Japan, the USA, Brazil, Europe, Russia and North Africa with various ensembles both as a violinist and as a violist. +CorrectOrchestre National De L'Opéra De Monte-CarloOrchestra Del Teatro Alla ScalaOrchestra dell'Accademia Nazionale di Santa CeciliaZürcher KammerorchesterOrchestra Del Teatro La FeniceOrchestra Del Maggio Musicale Fiorentino + +2146185Catherine HewgillClassical cellistNeeds VoteKatie HewgilKatie HewgillSydney Symphony Orchestra + +2147161Albert FrenchAlbert French, also known as Albert "Papa" French (died 1977) was an American jazz banjo player and bandleader. Father of [a1399307] and [a435931], and grandfather of [a1501566].Needs Votehttps://en.wikipedia.org/wiki/Papa_FrenchA. FrenchAlbert "Papa" FrenchAlbert (Papa) FrenchPapa Albert FrenchPapa FrenchOriginal Tuxedo Jazz Orchestra"Papa" French And His New Orleans Jazz Band + +2147383Radek BaborákRadek BaborákCzech horn player. + +Born 11 March 1976 in Pardubice, Czechoslovakia. Needs Votehttp://www.baborak.com/enBaborákRadek Baborakラデク・バボラークBerliner PhilharmonikerMünchner PhilharmonikerThe Czech Philharmonic OrchestraBamberger SymphonikerBaborák EnsembleRadek Baborák Orquestrina + +2147882James SandsAmerican saxophonist of the swing eraNeeds VoteJim SandsJimmy SandsBenny Goodman And His OrchestraBob Chester And His Orchestra + +2150054Bruno Le LevreurClassical countertenor.Needs Votehttps://www.bach-cantatas.com/Bio/Levreur-Bruno.htmhttps://www.facebook.com/bruno.lelevreurLes Arts FlorissantsLe Poème HarmoniqueLes Chantres Du Centre De Musique Baroque De VersaillesMétamorphoses + +2150149Thomas van EssenFrench classical baritone / bass and alto vocalist + recorder playerNeeds VoteVan EssenChoeur de Chambre de NamurLe Concert D'AstréeEnsemble La FeniceLes Meslanges + +2150152Eugénie WarnierFrench classical soprano vocalistNeeds Votehttp://www.eugeniewarnier.com/Les Demoiselles De Saint-CyrLa Simphonie Du MaraisLes CyclopesAusoniaPygmalion + +2150679Vladislav BorovkaClassical oboist.Needs VoteVladimír BorovkaThe Czech Philharmonic OrchestraCzech NonetPrague Philharmonia Wind Quintet + +2150873Claudio PinardiClassical oboist.CorrectEuropa Galante + +2150874Francisco Jose MonteroClassical violone player.Needs VoteFrancisco MonteroEuropa GalanteConcerto ItalianoBanchetto Musicale - Il Piacere + +2150875Maurice StegerClassical | Recorder Player | ConductorNeeds Votehttps://maurice-steger.comhttps://en.wikipedia.org/wiki/Maurice_StegerMaurice Steger & EnsembleEnglish Chamber OrchestraAkademie Für Alte Musik BerlinMusica Antiqua KölnEuropa GalanteLes Violons du RoyLautten CompagneyKammerorchester BaselZürcher KammerorchesterI BarocchistiLa Cetra Barockorchester BaselBerliner Barock Solistenhr-SinfonieorchesterOrchestra Della Radio Televisione Della Svizzera ItalianaThe English ConcertDie Freitagsakademie + +2150876Petr ZejfartClassical recorder & flute player.Needs VoteEuropa GalanteIl Giardino ArmonicoMusica Concertiva + +2150877Charles RieraChalumeau player.CorrectEuropa Galante + +2150879Diego MeccaClassical viola player.Needs VoteAccademia BizantinaEuropa Galante + +2150880Simone ToniItalian classical oboist.Needs VoteEuropa GalanteIl QuartettoneOrchestra AglàiaSilete Venti! + +2150881Paola ErdasHarpsichordist.Needs Votehttp://www.paolaerdas.it/Europa GalanteEnsemble Démesure + +2150900Marino LagomarsinoItalian classical string instrumentalistNeeds VoteEuropa GalanteIl Complesso BaroccoAlessandro Stradella ConsortOrchestra Sinfonica Del Teatro Carlo Felice Di GenovaOrchestra AglàiaConsort Del Collegio GhislieriConserto VagoQuartetto Aira + +2150901Molly MarshClassical oboist.Needs VoteThe English Baroque SoloistsEuropa GalanteEnsemble Marsyas + +2150954Emily KörnerViolinist and concertmaster.Needs VoteRadio-Sinfonieorchester StuttgartLa FolliaSWR SymphonieorchesterHegel Quartet + +2151115Rosita FrisaniItalian soprano vocalist.Needs VoteFrisaniCoro dell'Accademia Nazionale di Santa CeciliaEnsemble Arte-MusicaCapella Musicale Di San Petronio Di Bologna + +2151256Edgar GuggeisEdgar Guggeis (died in September 2003 at the age of 39) was a German classical percussionist and vibraphonist. He's the uncle of [a10242781].Needs VoteEdgar GuggersMünchner PhilharmonikerSolistengemeinschaft Der Berliner Bach Akademie + +2151501Tom LeesClassical trumpet and sackbut player.Needs VoteLondon BrassNew London ConsortGabrieli PlayersThe King's ConsortHis Majestys Sagbutts And CornettsMusicians Of Shakespeare's Globe + +2151809George Williams And His OrchestraFor the leader see also George Williams (2)Needs VoteGeorge WilliamsGeorge Williams & His OrchestraGeorge Williams And OrchestraGeorge Williams Orch.George Williams OrchestraGeorge Williams Y Su OrquestaGeorge Williams' Orch.George Williams’ OrchestraJonah JonesArt FarmerWayne AndreLenny HambroJimmy ClevelandMilt HintonBarry GalbraithUrbie GreenAl CohnNick TravisZoot SimsHank JonesCharlie ShaversKai WindingBernie GlowErnie RoyalFreddie GreenGeorge BarnesFrank RehakConte CandoliCharlie PersipTaft JordanJimmy CrawfordEddie SafranskiErnie CaceresClyde LombardiSam Taylor (2)Hal McKusickEd WassermanChris Griffin (3)Harry DiVitoJoe FerranteSol SchlingerMoe WechslerGeorge Williams (2)Jay McAllisterThomas MitchellJohn BelloJames DahlWilliam PritchardBob AscherPhil GiacobbiJoe ParksChuck Evans (2)Eddie ScalziStuart McKay (2)Al King (7)Harry YeagerBudy Savarese + +2151820Misha CliquennoisFrench horn player.CorrectOrchestre National De L'Opéra De Paris + +2152028Philippe TribotClassical cellistNeeds VoteOrchestre National Du Capitole De Toulouse + +2152345Thomas GerlingerGerman violist.Needs VoteSüdwestdeutsches KammerorchesterKammerphilharmonie Karlsruhe + +2152904Leonhard SchmidingerAustrian classical percussionist.Needs VoteSchmidingerBruckner Orchestra LinzThe Percussive Planet Ensemble + +2152910Martin GrubingerAustrian drummer and percussionist, born 29 May1983 in Salzburg, Austria. Son of [a=Martin Grubinger sen.].Needs Votehttps://www.martingrubinger.com/https://en.wikipedia.org/wiki/Martin_GrubingerMartin Grubinger jun.Martin Grubinger, Jun.Orchestre Philharmonique De Radio FranceThe Percussive Planet Ensemble + +2152936Jan KovaleskiAmerican artist living in Portland, Oregon. + +He studied painting, photography and printmaking at the University of California Los Angeles, UCLA College of Fine Art.Before attending UCLA, Jan had already designed sets for the Hollywood Theater Arts Workshop for several productions. After graduating in 1972, Jan worked for major record companies as a graphic artist designing records albums, posters and brochures. Needs Votehttp://www.marc-art.com/jan-kovaleski.htmlGribbitt! + +2153162Andreas PriebstGerman cellistNeeds VoteStaatskapelle DresdenUlbrich-QuartettDresdner Kapellsolisten + +2153251London Symphony Orchestra StringsString section of [a=London Symphony Orchestra]. +[b]Please, consider also [a=LSO String Ensemble] if credited that way on the release[/b]. + +Please, consider also the following orchestra's sub-groups: +- [a=London Symphony Orchestra Chamber Group] +- [a=Members Of The London Symphony Orchestra] +- [a=London Symphony Orchestra Brass] +- [a=London Symphony Orchestra Chamber Group] +- [a=LSO String Ensemble] +- [a=LSO Percussion Ensemble] +- [a=LSO Wind Ensemble]Needs Votehttps://www.lso.co.uk/orchestra/players/strings.htmlLondon Sym Lib.London Symphony Orchestra's String SectionOrquesta London Symphony StringSección De Cuerda De La Orquesta Sinfónica De LondresSinfonia De LondresStrings Of London Symphony OrchestraStrings Of The London Symphony OrchestraThe London Symphony Orchestra StringsThe Strings Of London Symphony OrchestraThe Strings Of The London Symphony OrchestraMoray WelshJanice GrahamRobert RetallickRay Adams (2)John ConstableJonathan WelchNorman ClarkeEvgeny GrachDuff BurnsCarmine LauriHilary JonesNigel BroadbentPaul SilverthorneAlexander BarantschikAlastair BlaydenLennox MackenzieDavid GoodallLaurent QuenellePaul Robson (2)Andriy ViytovychAndrew PollockJanse van RensburgLondon Symphony Orchestra + +2154170Owen YoungAmerican cellist.Needs Votehttps://www.bso.org/profiles/owen-youngBoston Pops OrchestraBoston Symphony OrchestraPittsburgh Symphony OrchestraThe Yale Cellos + +2154173Mihail JojatuRomanian-born cellist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2154478Franz Anton SchubertFrançois Schubert, born Franz Anton Schubert (the Younger), was a violinist and composer. +Born 22 July 1808 in Dresden; died 12 April 1878 in Dresden. +Son of German church composer and instrumentalist Franz Anton Schubert (Dresden, 20 July 1768 - Dresden, 5 March 1824). +Well known from composition of "The Bee", which is often miscredited to Franz Peter Schubert ([a283469])Needs Votehttp://en.wikipedia.org/wiki/Fran%C3%A7ois_Schuberthttps://adp.library.ucsb.edu/names/100060F. A. SchubertF. SchubertF.SchubertFr. SchubertFrancois SchubertFrancois Schubert-DresdenFrantz SchubertFranz (François) SchubertFranz Anton Schubert of DresdenFranz SchubertFranz ShubertFrançois SchubertFrançois Schubert-DresdenSchubertSchubert Of DresdenSchubert-DresdenSchuibertShubertФ. ШубертStaatskapelle Dresden + +2155099Otto RiedlmayerComposer, born in 1904, died in 1964.CorrectO. RiedelmayerO. RiedlmayerO. RiedlmayrOtto ReidlmayerRiedlmayer + +2155159Stephen MorleyPhotographerNeeds VoteStephen F MorleyStephen F. MorleySteve MorleySteven Morley + +2155351Oleg KaganOleg Moissejewitsch Kagan / Оле́г Моисе́евич Кага́нRussian violinist, born 22 November 1946 in Yuzhno-Sakhalinsk, Russia and died 15 July 1990 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Oleg_KaganKagaanKaganO. KaganO.KaganOleg KagaanOleg KoganО. КаганОлег КаганОлег Коган + +2156368Roy FeltonCredited as jazz vocalist in the Swing era.Needs VoteBenny Carter And His Orchestra + +2156429Gordon PetersGordon Peters (4 January 1931 - 26 August 2023) was an American classical percussionist and composer. He was a member of the [a837562] from 1959 to 2001.Needs VoteChicago Symphony OrchestraRochester Philharmonic Orchestra + +2157294Buster MotenIra E. MotenAmerican jazz musician, born 1903 - died 1965. +Nephew to Kansas City-based bandleader and pianist [a=Bennie Moten]. +Played piano, but favored the accordion. +Needs Votehttp://www.allmusic.com/artist/moten-p107897http://www.jazzstandards.com/compositions-2/motenswing.htmhttps://adp.library.ucsb.edu/names/108205B MotenB. MotenBus MortenBus MotenBuslerBusterBuster &Buster Ira MotenD. MotenDusterG. MotenI. MotenIra "Bus" MotenIra "Buster" MotenIra 'Buster' MotenIra A. MotenIra Buster MotenIra MotenMontenMotenBennie Moten's Kansas City OrchestraBus Moten & His Men + +2157715Jean-Paul QuennessonClassical hornistNeeds VoteJean-Paul QuenessonOrchestre National De France + +2157719Claude DambrineFrench viola player.Needs VoteOrchestre National De L'Opéra De Paris + +2158306Anthony McGillClassical clarinetist, named Principal Clarinet of the New York Philharmonic in September 2014.Needs VoteNew York PhilharmonicMcGill/McHale Trio + +2158865Stanka SimeonovaBulgarian-Swedish classical violinist, born on April 7, 1973 in Sofia, Bulgaria.Needs VoteSveriges Radios SymfoniorkesterStockholm Sinfonietta + +2159468John SteerClassical double bassist.Needs VoteThe Academy Of St. Martin-in-the-FieldsThe English Baroque SoloistsThe Academy Of Ancient Music + +2159580Alexandre OgueySwiss oboist, based in Australia.Needs VoteAlexander OgueySydney Symphony Orchestra + +2160247Joanna GrahamClassical wood-wind instrumentalistNeeds VoteCity Of London Sinfonia + +2160248Shuna WilsoncellistNeeds VoteCity Of London Sinfonia + +2160250Ruth McDowallClassical clarinetistNeeds VoteCity Of London Sinfonia + +2160251Tim CaisterNeeds VoteTimothy CaisterCity Of London Sinfonia + +2160252Deborah Davis (2)Classical flutistCorrectCity Of London Sinfonia + +2161000Evan WatkinClassical trombonist.Needs VoteBournemouth Symphony Orchestra + +2161057William RowlandVocalist.CorrectThe Choir Of Westminster Abbey + +2161058Jonathan Brown (8)Classical bass vocalistCorrectThe Monteverdi Choir + +2161063William BalkwillClassical tenor vocalist. +He started his musical training at the age of eight, becoming a chorister at Christ Church Cathedral, Oxford. Throughout his secondary school education his main musical focus was the Trumpet and he was a member of the National Youth Orchestra of Great Britain, becoming its principal Trumpeter at the age of 17. At the age of 18, he commenced study at the Royal Northern College of Music in Manchester, where he learnt Trumpet with [a1199230]. +During his time at the college, he started to develop his Tenor voice and quickly it became his main area of study. During a two-year Masters degree at the University of Manchester he sang in the choir of Manchester Cathedral, after which he was appointed as a tenor lay vicar in the choir of Westminster Abbey. In addition to his work at the Abbey, he is also a consort and solo singer. He sings regularly with The Tallis Scholars and The Cardinall's Musick and has also participated in projects with The Gabrielli Consort, The Sixteen and Tenebrae.CorrectMagnificatThe Tallis ScholarsThe SixteenNational Youth Orchestra Of Great BritainThe Choir Of Christ Church CathedralThe Cardinall's MusickThe Choir Of Westminster AbbeyManchester Cathedral Choir + +2161071Beans BalawiBeans El-BalawiEnglish vocalist and actor, born 11 July 1997.Correcthttp://en.wikipedia.org/wiki/Beans_BalawiThe Choir Of Westminster Abbey + +2161126Jörgen van RijenDutch classical trombonist & sackbutist + +Born: 20 February 1975 in Dordrecht, The Netherlands. + +He studied with [a2305662] at the [l932826] where he received his soloist diploma with the highest distinction. He continued his studies at the [l787461] with [a1022692] and [a1587357]. In 2004 he was awarded the Netherland Music Prize. In 2006, he was awarded the Borletti-Buitoni Trust Award. He is Principal Trombone of the Royal [a754894]. He teaches at the Rotterdam Conservatory and is an active chamber musician. He is the founder of the [a2652604] and the RCO Brass.Needs Votehttp://www.jorgenvanrijen.com/Jorgen Van RijenJorgen van RijenJörgenJörgen Van RijenVan Rijenvan RijenConcertgebouworkestEbony BandLes Sacqueboutiers De ToulouseNew Trombone CollectiveNederlands Fanfare OrkestWorld Trombone QuartetFlexible Brass + +2161284George PenistonBritish classical double bassistNeeds VoteLondon Philharmonic Orchestra + +2161285David GreenleesBritish violist, born in 1965.Needs VoteLondon Philharmonic OrchestraEnglish Chamber OrchestraRoyal Liverpool Philharmonic OrchestraTonhalle-Orchester ZürichEnsemble Il TritticoValentin Berlinsky Quartet + +2161286Katherine LoynesClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161287Alison StrangeClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161288Lee TsarmaklisTuba player. +Principal Tuba with the [a=London Philharmonic Orchestra].Needs VoteLondon Philharmonic OrchestraYoung Musicians Symphony Orchestra + +2161289Brian RabyTrombonistNeeds VoteLondon Philharmonic Orchestra + +2161291Bjorn Peterson (2)ViolinistNeeds VoteBjorn PetersenBjörn PetersonLondon Philharmonic Orchestra + +2161292Rachel JacksonClassical violinist + +For Production & Literary Citations on [l250769], Please Use [a2850100].Needs VoteLondon Philharmonic Orchestra + +2161293Gareth MollisonFrench horn playerNeeds VoteLondon Philharmonic OrchestraYoung Musicians Symphony Orchestra + +2161294Naomi HoltClassical violistNeeds VoteLondon Philharmonic Orchestra + +2161295Katharine LeekBritish classical violist.Needs VoteKatherine LeekLondon Philharmonic Orchestra + +2161296Francis BucknallBritish cellist.CorrectLondon Philharmonic OrchestraThe London Cello Sound + +2161297Julian ShawClassical violistNeeds VoteLondon Philharmonic Orchestra + +2161298Geoffrey LynnClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161299Susanne BeerGerman classical cellist (*1967 †2019).Needs Votehttp://www.susannebeer.co.uk/London Philharmonic Orchestra + +2161300Imogen Taylor (2)Classical violinistNeeds VoteLondon Philharmonic Orchestra + +2161302Robert TrumanAustralian classical cellist. Born in Sydney, Australia. +In 1971 he moved to London, England. After spending four years in the [a=London Symphony Orchestra] (1973-1976) he was invited to become Principal Cello of the [a=Orchestra Of The Royal Opera House, Covent Garden], and, in 1985, he joined the [a=London Philharmonic Orchestra] as Principal Cello, staying for 20 years until 2005.Needs Votehttps://open.spotify.com/artist/2hpH1b1mCAxoEg6SsQND0thttps://music.apple.com/gb/artist/robert-truman/307062973https://www.hyperion-records.co.uk/a.asp?a=A248Bob TrumanRobert IrumanRobert TrumannTruman B.Truman R.Truman. BLondon Symphony OrchestraLondon Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenThe London Cello Sound + +2161303Sioni WilliamsClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161304Thomas EisnerClassical violinistNeeds VoteLondon Philharmonic OrchestraAarhus Symfoniorkester + +2161305Susan SutherleyClassical cellist, arranger, and cello teacher. Also known as [b]Sue Sutherley[/b]. +She graduated from the [l290263]. She joined the [a=BBC Symphony Orchestra] in the 1970s, and then freelanced for many years. She started playing with the [a=London Philharmonic Orchestra] in 1987, and joined the orchestra in September 1996.Needs Votehttps://lpo.org.uk/people/sue-sutherley/https://vgmdb.net/artist/22831Sue SutherleyLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraThe London Cello Sound + +2161306Robert Pool (2)Classical violinistNeeds VoteLondon Philharmonic Orchestra + +2161307Matthew ComanBritish classical double bassist, residing in Madrid, Spain. +He studied at [l305416] (1987-1991). Founder member of the [a4549761] (1991-1995). Returning to England, he joined the [a=London Philharmonic Orchestra]. He played with the [b]Glyndebourne Opera[/b] (1996-2006). Founder & Artistic director of [b]The Soloists of London[/b] (January 2004 - present), and of the [b]Orquesta Joven de Bicentenario[/b] (July 2010 - present). Has played with the [b]St. George's Chamber Orchestra[/b].Needs Votehttps://www.facebook.com/mattcoman240369https://www.linkedin.com/in/matthew-coman-3b634a4/?originalSubdomain=ukhttps://orquestajovenbicentenario.es.tl/Fundadores.htmhttps://music.metason.net/artistinfo?name=Matthew%20ComanLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraReal Orquesta Sinfónica de Sevilla + +2161308Martin HobbsClassical hornistNeeds VoteLondon Philharmonic Orchestra + +2161309Ben PollaniItalian classical violinist and violist, born in Verona, Italy.Needs VoteBenedetto PollaniLondon Philharmonic Orchestra + +2161310Daniel CornfordClassical violistNeeds VoteDan CornfordLondon Philharmonic Orchestra + +2161311Ashley StevensClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161312Robert Duncan (4)British classical violist, born in London, England.Needs VoteLondon Philharmonic Orchestra + +2161313Simon Webb (2)British classical cellistNeeds VoteLondon Philharmonic Orchestra + +2161314Marie-Anne MairesseClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161315William RoutledgeBritish classical cellist.Needs Votehttps://willroutledge.wixsite.com/william-routledgeWill RoutledgeLondon Philharmonic Orchestra + +2161316Gill McIntoshClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161317Celia ChambersClassical flutistNeeds VoteLondon Philharmonic Orchestra + +2161318Susan Thomas (3)Classical flutistNeeds VoteLondon Philharmonic Orchestra + +2161319Tina GruenbergBritish classical violinist. +Daughter of [a=Erich Gruenberg] and sister of [a=Joanna Gruenberg].CorrectLondon Philharmonic Orchestra + +2161321Andrew ThurgoodBritish classical violinist.Needs VoteLondon Philharmonic Orchestra + +2161323Laurence LovelleClassical double bassistNeeds VoteLondon Philharmonic Orchestra + +2161324Joseph MaherClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161325Anthony ByrneClassical Violist and Bagpipe playerNeeds VoteAnto ByrneLondon Philharmonic Orchestra + +2161326Andrew BarclayClassical percussionist. +He spent five years as a member of the [a=Bournemouth Symphony Orchestra] (where he met his future wife [a=Karen Jones (3)], thus becoming son-in-law of [a=Martyn Jones (4)]) before joining the [a=London Philharmonic Orchestra] as Principal Percussion in 1995.Correcthttps://www.lpo.org.uk/percussion/andrew-barclay.htmlAndy BarclayLondon Philharmonic OrchestraBournemouth Symphony OrchestraYoung Musicians Symphony Orchestra + +2161327Philip TarltonBritish bassoonist and clarinetist.Needs VoteLondon Philharmonic Orchestra + +2161328Martin HohmannClassical violinistNeeds VoteLondon Philharmonic Orchestra + +2161329Susanna RiddellBritish classical cellistNeeds VoteLondon Philharmonic Orchestra + +2161330Dean Williams (3)Classical violinistNeeds VoteLondon Philharmonic Orchestra + +2161331Michael KellettClassical violinist. Originally from Scotland. Now based in YorkshireNeeds Votehttps://www.yumpu.com/en/document/read/7420658/curriculum-vitae-specialist-violin-teacherMichael KellelLondon Philharmonic OrchestraThe Morley String Quartet + +2161332Laura DonoghueBritish cellist.Needs VoteLondon Philharmonic Orchestra + +2161333Chris Yates (3)Classical violistNeeds VoteChristopher YatesLondon Philharmonic OrchestraCity Of Birmingham Symphony OrchestraBBC Scottish Symphony OrchestraBirmingham Contemporary Music Group + +2161360Robert Masters (2)Violinist, teacher and orchestra leader. +Born March 16, 1917; died April 22, 2014.Needs VoteMastersR. MastersRobert MastersRobert Masters String Trioロバート・マスターズMenuhin Festival OrchestraRobert Masters Chamber OrchestraLondon Mozart PlayersBath Festival OrchestraThe Robert Masters Piano Quartet + +2161599Rudolf HanzlRudolf Hanzl (22 March 1912 - 1997) was an Austrian bassoonist. He was a member of the [a754974] from 1936 to 1964.Needs VoteRudolf HanzelRudolph HanzlOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Oktett + +2161600Josef VelebaJosef Veleba (26 August 1914 - 22 July 1997) was an Austrian horn player. He was a member of the [a754974] from 1940 to 1977.Needs VoteJoseph VelebaOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchester der Bayreuther FestspieleWiener OktettBühnenorchester Der Wiener Staatsoper + +2161601Philipp MatheisPhilipp Matheis (1918 - 1975) was an Austrian violinist.Needs VotePhilip MatheisPhilippe MatheisWiener PhilharmonikerWiener Oktett + +2163045François RuhlmannFrançois RühlmannBelgian musician, conductor and conducting teacher at the Conservatoire. +(11 Jan 1868, Brussels - 8 Jun 1948, Paris) +Has conducted different orchestras including: Grand Théâtre de Liège, Théâtre de la Monnaie, Société du Conservatoire de Paris, Orchestre De L'Opéra-Comique +Needs VoteF. RuhlmannFrançois RühlmannRuhlmanRuhlmannOrchestre Du Théâtre National De L'Opéra-Comique + +2164250Thomas LuksClassical cellist.Needs Votehttps://be.linkedin.com/in/thomas-luks-5a526919Il FondamentoLes Talens LyriquesIl GardellinoLes DominosEnsemble CristoforiGroupe C + +2164266Marcel KetelsClassical flute & recorder instrumentalistNeeds VoteCollegium VocaleIl FondamentoCollegium AureumConcerto PalatinoCurrendeLes Goûts-AuthentiquesLes Enemis Confus + +2164546Marc JaermannClassical cellist.Needs VoteMars JaermannOrchestre National De FranceQuatuor Sine Nomine + +2164550François GottrauxClassical violinist.Needs VoteOrchestre National De FranceQuatuor Sine Nomine + +2165361Doug ParkerAmerican jazz pianistCorrectDouglas Parker (5)Harry James And His Orchestra + +2165362Pat ChartrandAmerican jazz saxophonistCorrectHarry James And His Orchestra + +2165364Russ PhillipsAmerican jazz bassist.Needs VoteRuss PhilipsHarry James And His Orchestra + +2165365Tom SuthersAmerican saxophone playerCorrectHarry James And His Orchestra + +2165366Buddy CombineMacklin Kelly Combine Jr.American jazz drummer. +Born December 16, 1918 in Columbus, Ohio, USA. +Died May 25, 2011 (age of 92) in Burbank, California, USA. +He was married in 1947 to singer [a3347700].Needs Votehttps://www.findagrave.com/memorial/258523887/macklin-kelly-combineBud CombineMacklin CombineHarry James And His OrchestraHarry James & His Music Makers + +2165461Antonella BalducciThe Italian soprano, Antonella Balducci, studied piano, flute and singing at the Conservatories of Luzern and Genève.CorrectCoro Della Radio Televisione Della Svizzera Italiana + +2165462Fulvio BettiniItalian classical Bass, Baritone and Tenor vocalistNeeds VoteF. BettiniLa Petite BandeL'ArpeggiataCoro Della Radio Televisione Della Svizzera ItalianaStile Galante + +2165503Laurenzini da RomaLaurencini da RomaLaurencini da Roma (fl.1550-1608) was an italian composer of the Renaissance periodNeeds VoteDa Roma LaurenciniLaurenciniLaurencini Da RomaLaurencini Of RomeLaurencini da RomaLaurencini di RomaLaurencini of RomeLorenziniLorenzini Di RomaLorenzini di Roma + +2166366William Gibson (3)William McHargue Gibson (November 30, 1916 - October 25, 2002), trombonist with several important American orchestras.Needs Votehttp://www.stokowski.org/Boston_Symphony_Musicians_List.htm#Ghttp://en.wikipedia.org/wiki/User:Newstanman/sandboxW. GibsonBoston Symphony OrchestraBoston Symphony Chamber PlayersNew England Brass Ensemble + +2166367Kauko KahilaKauko Emil KahilaAmerican trombonist, born 28 April 1920 in Norwood, Massachusetts and died 18 November 2013 in Falmouth, Massachusetts.Needs Votehttp://contemporacorner.com/company/archives/artists/kahila/Kauko KahliaBoston Symphony OrchestraSaint Louis Symphony OrchestraHouston Symphony OrchestraNew England Brass Ensemble + +2166368Andre ComeAndré CômeAmerican trumpeter, born 15 April 1934 and died 12 June 1987.Needs VoteAndré ComeAndré ComéAndré CômeBoston Pops OrchestraBoston Symphony OrchestraBoston Symphony Chamber PlayersNew England Brass Ensemble + +2166484David McRae (3)David McRaeHard Dance DJ, producer and remixer based in Manchester, UK. +Label co-owner of [l=Transfixion Digital] alongside [a=Jay P (5)].Needs Votehttps://soundcloud.com/dmcraemusicDave McRaeDave McraeMc RaeMcRaeMcraeMang TheoryCode Blue (10) + +2166581Goetz RichterViolinist and educator, born in Hamburg, professor at the Sydney Conservatorium.Needs VoteMelbourne Symphony OrchestraSydney Symphony OrchestraQueensland Philharmonic Orchestra + +2166582David Jackson (10)Australian classical viola player.Needs VoteSydney Symphony Orchestra + +2166891Meng WangClassicial violist, born in Sheng-Yang, China.Needs VoteThe Philadelphia OrchestraPittsburgh Symphony OrchestraPittsburgh SinfoniettaThe Kansas City Symphony + +2166998L. Z. CooperCredited as pianist.Needs VoteElzie CooperL. Z CooperLouis Armstrong And His Sebastian New Cotton OrchestraLeon Elkin's Orchestra + +2167427John GrassiJohn Joseph Grassi Jr..American jazz trombonist. + +Born : February 15, 1912 in Stamford, Connecticut. +Died : May 31, 1956 in Stamford, Connecticut. (Car accident) + +Johnny played with : Benny Goodman, Jan Savitt, Teddy Powell, Gene Krupa, Paul Whiteman, Bobby Hackett, "ABC staff orchestra".Needs Votehttps://www.allmusic.com/artist/john-grassi-mn0001596375John GrussiGene Krupa And His OrchestraTeddy Powell And His OrchestraBobby Hackett And His Orchestra + +2167428Sam ListengartAmerican saxophonist and clarinetist of the swing era.Needs VoteSam ListengardGene Krupa And His Orchestra + +2167476Julian FarrellClarinetist.CorrectJulian FarrelThe Academy Of St. Martin-in-the-FieldsCapricorn (14) + +2167542Magdalena MartínezClassical flutistCorrectMagdalena MartinezThe Chamber Orchestra Of Europe + +2168650Tore Tom DenysBelgian tenor, born in 1973 in Roeselare. +He has sung with various ensembles, including [a848756], [a1893214] and [a1052026]. He now divides his time professionally between the Belgian ensemble [a1643503], [a2168644] and the baroque ensemble [a2135884], which he founded in 2000.Needs Votehttp://www.ensemblecinquecento.com/tore-tom-denyshttp://www.vivante.at/ensemble.php?lang=enTore DenysTore Denys [Belgium]Collegium VocaleCapilla FlamencaCurrendeVivanteCinquecentoLa Grande ChapelleBeauty FarmDionysos Now + +2168656Frank Van Den Brink (2)Classical clarinetist and hornistNeeds VoteFrank v.d. BrinkFrank van den BrinkAsko EnsembleNederlands Blazers EnsembleNieuw Sinfonietta AmsterdamRadio Filharmonisch OrkestRadio Kamer FilharmonieVan Swieten Society + +2168687Jos De LangeDutch bassoonist, born 1955 in Hengelo, Netherlands.CorrectJos de LangeConcertgebouworkest + +2169044Marie-Claude LebeyClassical violinist.CorrectLes Musiciens Du LouvreEnsemble Matheus + +2169045Emmanuel CurialClassical viol and violin player.Needs VoteLe Concert D'AstréeEnsemble Matheus + +2169050Valérie BalssaFrench classical flute & recorder instrumentalistNeeds VoteV. BalssaV.BalssaValérie Balssa-JaffrèsLes Arts FlorissantsEnsemble Pian & ForteLa Simphonie Du MaraisLes Musiciens Du LouvreEnsemble MatheusA Deux Fleustes Esgales + +2169054Daniel DéhaisClassical oboist.Needs VoteDaniel DehaisIl Seminario MusicaleLa Petite BandeEnsemble Matheus + +2169631Doreen Murray (2)Soprano.Needs VoteThe Ambrosian Singers + +2169700Anna ColmanViolinist.Needs VoteBBC Symphony Orchestra + +2169955Howard McGhee And His BandNeeds Major ChangesHoward McGhee & His Band + +2171416Stefano BencivengaItalian violinistNeeds VoteOrchestra Di Padova E Del VenetoAndrea Centazzo Mitteleuropa Orchestra + +2171514Elizabeth HuntClassical violinist.Needs VoteThe Academy Of Ancient MusicL'Estro Armonico + +2173745Fanny PaccoudClassical violinistNeeds VoteConcerto SoaveThe English Baroque SoloistsAmarillisPygmalionOrfeo 55Ensemble MasquesBlue Shroud BandLes Ambassadeurs (6)Quatuor Umlaut + +2174003Kevin PritchardClassical hornist.CorrectKevinBournemouth Symphony Orchestra + +2174004Oliver Yates (2)PercussionistNeeds VoteOlly YatesLondon Philharmonic OrchestraThe Chamber Orchestra Of Europe + +2174005Ed LockwoodClassical hornist.CorrectBournemouth Symphony Orchestra + +2174007Peter TurnbullClassical trumpeterNeeds VotePete TurnbullBournemouth Symphony Orchestra + +2174010Robert Harris (7)Classical hornist.CorrectBournemouth Symphony Orchestra + +2174404George Davis (9)American jazz saxophonist.Needs VoteHarry James And His OrchestraHarry James & His Music Makers + +2174775Simona IemmoloDouble bassist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +2175894Gregorio Martínez SierraGregorio i María Martínez SierraSpanish libretto writer (1881 - 1947), most of them written along with his wife, [a6751152]: "Las Golondrinas" (1913, with [a=José María Usandizaga]), "El Amor Brujo" (1915, with [a=Manuel de Falla]), "El Corregidor y la Molinera" (1917, with [a=Manuel de Falla], that later would become "El Sombrero de Tres Picos"), ...Needs Votehttp://es.wikipedia.org/wiki/Gregorio_Mart%C3%ADnez_Sierrahttps://en.wikipedia.org/wiki/Gregorio_Mart%C3%ADnez_SierraG. Martínez SierraG. M. SieraG. M. SierraG. Martinez SierraG. Martínez SierraG. martinez sierraGregori Martinez SierraGregori Martínez SierraGregori Martínez-SierraGregori Matinez-SierraGregorio Martinez SierraGregorio Martínez-SierraGregorio i María Martínez SierraMartinezMartinez SierraMartínez SierraMaría Martínez SierraSierraSierra Gr. Martinez + +2176072Diana Doherty (2)Australian oboistNeeds VoteSydney Symphony Orchestra + +2176133Rebecca Nichols (2)ViolinistNeeds VoteRebecca NicholisBaltimore Symphony OrchestraAtlantic String Quartet (2) + +2176135Paul Arnold (9)American violinistCorrectThe Philadelphia Orchestra + +2176139Christian WoehrClassical violistNeeds VoteSaint Louis Symphony Orchestra + +2176594Consortium Musicum (2)German classical instrumental ensembleCorrectDas Consortium MusicumDas Consortium musicumMitglieder Des Consortium MusicumThe Consortium Musicumコンソルティウム・ムジクムWolfgang Meyer (2)Michel PiguetRuth NielenWenzel PrichaHelmut HuckeHeinrich HaferlandWerner NeuhausErich PenzelHartmut StrebelRudolf ZartnerMichael SchäfferRudolf EwerhartHorst HedlerHeiner SpickerAlfred LessingManfred SaxJosef FeckEmil MornewegHellmut SchneidewindEmil SeilerHans PlumacherWerner SattelHans-Ludwig HauckHelga ThoeneValerie NoackWerner Schulz (2)Heinz JopenRolf MaschkeHerrman Baumann + +2176600Valerie NoackGerman classical wind instrumentalistNeeds VoteNoackConsortium Musicum (2) + +2176953Jiří VodičkaClassical violinist. For the Czech guitarist, use [a6166467].Needs VoteThe Czech Philharmonic OrchestraSmetana Trio + +2177546Susan SynnestvedtAmerican violinist, born in New York City.Needs VoteChicago Symphony Orchestra + +2177548Russell HershowAmerican violinist.Needs VoteChicago Symphony Orchestra + +2177551David Taylor (20)American violinist, born in Canton, Ohio.Needs VoteThe Cleveland OrchestraChicago Symphony OrchestraChicago Philharmonic + +2177641Attilio CremonesiItalian harpsichordist and conductor.Needs VoteCremonesiConcerto VocaleConcerto KölnSchola Cantorum BasiliensisArcadia (6)Arcadia EnsembleEnsemble ExplorationsIl Teatro Armonico + +2177884Peter ScheitzPeter Scheitz is a German horn player.Needs VoteRundfunk-Sinfonieorchester Berlin + +2178069Chuck Wilson (4)Drummer.Needs Vote + +2178796Susan MarrsBritish mezzo sopranoCorrecthttp://www.suemarrs.co.uk/Sue MarrsLondon Voices + +2178798Jake ReaEnglish classical violinist.Needs VoteEnglish Chamber Orchestra + +2178799Duncan Ferguson (2)Classical violist.Needs VoteThe Academy Of St. Martin-in-the-FieldsBritten Sinfonia + +2178819Gregor SiglGerman classical violinist, born 1976 in Burghausen (Upper Bavaria).CorrectArtemis QuartettCis Collegium Mozarteum Salzburg + +2179538Christine Anderson (2)Christine AndersonScottish violinist and violist.Needs VoteHallé OrchestraPhilharmonia OrchestraLondon Mozart PlayersXenia EnsembleAurea QuartetUnited Strings Of Europe + +2180223Alessandro LanaroClassical viola playerNeeds VoteEnsemble CordiaVenice Baroque OrchestraLa Magnifica ComunitàOrchestra Barocca G.B. TiepoloArchicembalo Ensemble + +2180240Alberto SalomonClassical viola player.Needs VoteOrchestra Di Padova E Del VenetoLa Magnifica Comunità + +2180275Simone TieppoClassical cellist. +Prof. Simone Tieppo was born in Castelfranco Veneto in 1975, he started the violin studio in the hometown, graduating in the Conservatory in the class of Pietro Serafin with the highest marks and praise.Needs VoteOrchestra Di Padova E Del VenetoMusica FioritaLa Magnifica ComunitàEnsemble Lorenzo Da Ponte + +2180277Ernie HughesPiano, CelestaNeeds VoteE. HughesErnest HughesErnest HughsHughesWingy Manone & His OrchestraJack Teagarden And His OrchestraRay Conniff And His Orchestra & ChorusThe Frankie Capp Percussion GroupThe Jerry Fielding OrchestraJerry Gray And His OrchestraHerschel Burke Gilbert Orchestra + +2180534А. ГусевNeeds Major ChangesA. GusevAleksandr Gusev + +2181402Jan MachatJan MachatCzech flutist.Needs VoteThe Czech Philharmonic OrchestraTransjazz + +2181625Toni Salar-VerdúSpanish classical clarinetist.Needs Votehttps://www.facebook.com/toni.salarverduhttps://soundcloud.com/tonisalarverduToni Salar VerduTony Salar-VerdúAkademie Für Alte Musik BerlinConcerto KölnOrchester Der Ludwigsburger SchlossfestspieleNachtmusiqueOpera FuocoEnsemble CristoforiMusicaeterna + +2181630Chen-Ying Lu-RiebutschClassical viola player.Needs VoteChen Ying LuChen-Ying LuMusica Antiqua KölnOrchester Der Ludwigsburger SchlossfestspieleIl Gusto Barocco + +2181633Stefan KnoteClassical violinist.Needs VoteRadio-Sinfonieorchester StuttgartSüdwestdeutsches KammerorchesterOrchester Der Ludwigsburger SchlossfestspieleKlassische Philharmonie StuttgartSWR Symphonieorchester + +2182371Wolfgang TalirzGerman classical violistCorrectBerliner PhilharmonikerPhilharmonisches Streichtrio, BerlinBerliner Philharmonisches Streichquintett + +2182372Romano TommasiniClassical violinistNeeds VoteBerliner PhilharmonikerPhilharmonisches Oktett BerlinPhilharmonisches Streichtrio, BerlinQuatuor YsaÿeBerliner Philharmonisches Streichquintett + +2182386Jacques BlancClassical hornist.Needs VoteIl Seminario MusicaleFrançois Jeanneau Pandemonium + +2182486Karl-Heinz SchröterGerman cellist.Needs VoteStaatskapelle BerlinKammerorchester Carl Philipp Emanuel BachErben-QuartettStreichquartett der Deutschen Staatsoper BerlinBeethoven-Trio + +2182487Bernd Müller (7)Violin, East GermanyCorrectJunge Deutsche PhilharmonieStaatskapelle BerlinStreichquartett der Deutschen Staatsoper Berlin + +2182946Ewald FaissAustrian sound engineer.CorrectEwald FaißIng. Ewald Faiss + +2183346Christel BoironFrench classical soprano vocalistNeeds VoteChristelle BoironLe Concert SpirituelHuelgas-EnsembleEnsemble Gilles BinchoisEnsemble Musica Nova + +2183349Guillaume OlryFrench classical bass / baritone vocalist.Needs Votehttp://www.onartis.de/vokalisten_alte_musik/guillaume_olry/43OlryLe Concert SpirituelHuelgas-EnsembleEnsemble Gilles BinchoisBremer Barock ConsortLe Parnasse FrançaisPygmalionDoulce MémoireEnsemble CorrespondancesInaltoCantus ThuringiaEnsemble ScandicusUtopia EnsembleL'ultima Parola + +2183524Rosetta CrawfordBlues and jazz singer, who first recorded in 1923, but is most known for four titles recorded in 1939, with backing from a James P. Johnson group.Needs Votehttps://adp.library.ucsb.edu/names/107060CrawfordR. CrawfordRossetta CrawfordRosetta Crawford And Her Hep Cats + +2183539Benjamin AugerFrench Photographer (1942-2002). +Has worked for "Salut Les Copains" and "OK Magazine" of Daniel Filipacchi group. + +Not to be confused with the French horn player [a12275029].Needs VoteAugerB. AugerB.AugerBenjamim AugerBenjaminBenjamin "Salut les Copains"Benjamin Auger (S. L. C.)Salut Les Copains Benjaminb. augerbenjamin S.L.C. + +2183655Volkmar LehmannGerman classical pianist, born 1935. Former professor at Hochschule für Musik "Franz Liszt" Weimar.Needs VoteVolkmar LahrmannBrahms-Trio + +2183666Klaus Becker (2)Classical oboist, born in 1953.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksLinos EnsembleBundesjugendorchester + +2183667Philippe BouclyClassical flautist. He was a member of the [a604396] from 1988 to 2023.Needs VotePhilippe BenclySymphonie-Orchester Des Bayerischen RundfunksLinos Ensemble + +2183668Norbert DausackerGerman horn player.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksLinos EnsembleBundesjugendorchester + +2183669Dietrich CramerGerman classical viola player, born in 1967 in Stuttgart, Germany.Correcthttp://www.dietrichcramer.de/vita.htmlBayerisches StaatsorchesterOrchester der Bayreuther FestspieleLinos Ensemble + +2183678Fred KoyenTrumpet PlayerCorrectHarry James And His OrchestraLes Brown And His Band Of Renown + +2183691Joachim BänschGerman hornist.Needs VoteRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterDetmolder HornquartettSWR Symphonieorchester + +2183904Peter KallenseeGerman trumpeter and music professor.CorrectBamberger Symphoniker + +2184522Christopher KennyClassical countertenor.CorrectPomerium + +2184524Betsy BeattieClassical vocalist.CorrectPomerium + +2184525Jeffrey DooleyClassical countertenor.CorrectPomeriumThe Bach Ensemble + +2185049A. BelgranoCrescencio Ramos PradaSpanish adapter and composer, alias of Crescencio Ramos Prada (1913 - 1998).Needs VoteA. BelgradoA.BelgranoBalgradoBelgradoBelgranoCrescencio Ramos Prada + +2185381Marja InkinenMarja Inkinen-EngströmSwedish classical violinist born in Helsinki, Finland March 8, 1964. + +She is principal violin 2 in the Gothenburg Symphony Orchestra since 1998. She teaches violin, orchestra playing and chamber music since 2002 at the Academy of Music and Drama, University of Gothenburg. + +Marja appears as a violin teacher /coach/ instructor in various courses for young people. Marja is also a member of the Göteborg Baroque. Before moving to Sweden in 1998 she was a member of AVANTI!-chamber orchestra and Tapiola Sinfonietta in Finland. + +She has studied violin playing at Sibelius-Academy with prof. [a5120298] and graduated there with Masters degree. She also holds a solo diploma and violin pedagogue diploma from Utrechts Conservatorium, Holland, where she studied with prof. [a1913712] and prof. Keiko Wataya for 6 years. + +She has also studied privately with prof. Sandor Végh in Salzburg, Lenk and Prussia Cove, with prof. [a3017016] in Tel Aviv and prof. [a1605595] in Berlin. These violinists have influenced her playing and teaching greatly and given her a very special violin tradition and passion for music to give further. + +As a principal in Gothenburg Symphony Orchestra Marja has had a great pleasure to perform several times as a soloist with GSO and chamber musician with international artists including among others Lynn Harrell, Christian Zacharias, Brett Dean and Daniel Müller-Scott.She has also played as a soloist in Finland, Italy, Holland, Belgium and Greece. + +Marja plays on a Francesco Ruggieri violin from 1668 which is kindly on loan from Gothenburg Symphony Orchestra.Needs Votehttps://www.facebook.com/people/Marja-Inkinen-Engstr%C3%B6m/1191848037https://www.linkedin.com/in/marja-inkinen-engstr%C3%B6m-86999b84/Marja Inkinen EngströmAvanti!Göteborgs SymfonikerTapiola SinfoniettaGöteborg Baroque + +2185398Georg KekeisenDouble bass player.CorrectBamberger SymphonikerCis Collegium Mozarteum SalzburgBundesjugendorchester + +2185437Tessa BadenhoopDutch violinist.Needs Votehttps://www.orkest.nl/muzikant/tessa-badenhoophttps://www.linkedin.com/in/tessa-badenhoop-31318a117https://www.facebook.com/tessa.badenhoopNetherlands Chamber OrchestraNederlands Philharmonisch Orkest (2) + +2185819Alexander BaderClassical clarinettist. He's a member of the [a=Berliner Philharmoniker] since 1 May 2006.CorrectBerliner PhilharmonikerLinos EnsembleScharoun Ensemble BerlinDeutsche Kammerphilharmonie Bremen + +2185820Till HeineClassical bassoonist.Needs VoteMünchner RundfunkorchesterLinos EnsembleStaatsphilharmonie Rheinland-PfalzDeutsche Kammerphilharmonie BremenBundesjugendorchester + +2185823Ursula KepserClassical horn player.CorrectRadio-Sinfonie-Orchester FrankfurtSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieLinos EnsembleBundesjugendorchester + +2186264Anne-Hélène MoensBelgian Soprano vocalistNeeds VoteAnne Helene MoensChoeur de Chambre de Namur + +2186431Johannes WallbrecherJohannes J. WallbrecherGerman producer at label [l=Resonando]; co-owner of label [l101498].Needs Votehttps://de.linkedin.com/in/johannes-j-wallbrecher-03935a4Johannes J. Wallbrecher + +2186611Peter MirringGerman violinistCorrectStaatskapelle DresdenDresdner BarocksolistenMirring QuartetCappella Sagittariana Dresden + +2186612Gerhard PluskwikGerman cellistCorrectStaatskapelle DresdenDresdner Barocksolisten + +2186613Friedwart DittmannFriedwart Christian DittmannGerman cellist, born 1960 in Zwickau, GDR.CorrectFriedrich DittmannFriedwart Christian DittmannFriedwart-Christian DittmannStaatskapelle DresdenDresdner BarocksolistenVirtuosi Saxoniae + +2186614Peter SchikoraGerman viola playerCorrectStaatskapelle DresdenDresdner Barocksolisten + +2186639Peter MolanderSwedish classical cellistNeeds VoteSveriges Radios Symfoniorkester + +2187336José Rodríguez (3)José Rodríguez AlvaradoPuerto Rican Trumpeter, conductor, arranger and orchestra leader ([a1607295]) born in Ponce as José Rodríguez Alvarado, also appears as Joe Rodriguez. +Cousin of fellow musician [a2187354] "Chalina". He participated as a trumpeter in various Municipal Bands and in the Johnny Torruella Orchestra. +In 1968 he recorded with Sonora Ponceña and later founded the Orquesta La Terrífica. + +For the Brazilian born trombonist with with Eddie Palmieri and Cal Tjader, please use [a391514].Needs Votehttps://es.wikipedia.org/wiki/Joe_Rodr%C3%ADguezJ. RodriguezJoe RodriguezJoe RodríquezJose RodriguezJose Rodriguez "Joe"José RodriquezLa Sonora PoncenaWoody Herman And His OrchestraLa TerrificaJuan Rafael Y Su Orquesta Coqui Magic + +2187340Lawrence Lomax"Despite appearing in the OKeh Race series, this African-American artist is a popular vocalist and not a blues or jazz singer." (Blues and gospel records 1890-1943 (1997), p. 552) +His duets with [a=Eva Taylor] in 1923 have been reissued several times, due to the jazz accompaniment.Needs Vote + +2187848Ondřej RoskovecClassical bassoonist.Needs Voteオンドジェイ・ロスコヴェッツThe Czech Philharmonic Orchestra + +2188422Frank WorrellCredited as guitarist.Needs VoteF. WorrellWorrellGene Krupa And His Orchestra + +2188423Bill CulleyTrombone player in the Swing eraCorrectB. CullyBill CullyBilly CullyGene Krupa And His Orchestra + +2188424Sid BrownBaritone Saxophone, Bass Clarinet player for Swing, Big Band Jazz bands. +For Folk/World guitarist please use [a=Sid Brown (2)]Needs VoteS. BrownSidney BrownBuddy Rich And His OrchestraLucky Millinder And His OrchestraOscar Rabin And His Band + +2188425Bill HitzAmerican saxophonistNeeds VoteHitzGene Krupa And His OrchestraBill Hitz And His Orchestra + +2188426Irv LangAmerican bassist (swing era)Needs VoteI. LangIrv. LangIrving Langirving langGene Krupa And His OrchestraJoe Marsala And His Orchestra + +2188427Vince HughesAmerican trumpeter in the swing era.Needs VoteV. HughesVincent HughesVinnie HughesGene Krupa And His Orchestra + +2188453David WakefieldAmerican hornist.Needs VoteDavid Wakefi eldOrchestra Of St. Luke'sAmerican Brass QuintetSt. Luke's Chamber EnsembleAspen Music Festival Contemporary EnsembleThe American Brass Quintet Brass Band + +2188820Alain ManfrinFrench trombonistNeeds VoteOrchestre Philharmonique De Radio FranceL'Ensemble De Trombones De ParisLe Quatuor de Trombones de Paris + +2188821Yves DemarleFrench classical trombonist.Needs VoteOrchestre National De FranceOrchestre De ParisL'Ensemble De Trombones De Paris + +2188825Isabel SchauGerman classical violinist born in Kassel +Needs Votehttp://www.isabelschau.com/Isabel_Schau/Isabel_Schau_Vita.htmlMusica Antiqua KölnLa Grande ChapelleLa Chapelle RhénaneNeue Innsbrucker Hofkapelle + +2188826Hauko WesselClassical violinist.Needs VoteMusica Antiqua Köln + +2188827Karin GutscheClassical violinist.Needs VoteMusica Antiqua KölnCasco Phil + +2188834Thad MarciniakAmerican orchestra librarian, active for the New York Philharmonic from 1985 to 2008. Passed away March 18, 2015.Needs VoteNew York Philharmonic + +2188835Lawrence TarlowAmerican tubist and orchestra librarian from Great Neck, New York. He joined the New York Philharmonic as a librarian in 1985.Needs VoteLarry TarlowNew York Philharmonic + +2188837Louis J. PatalanoAmerican stage manager. Active for the New York Philharmonic from the 1980's until 2011.Needs VoteNew York Philharmonic + +2188838Carl R. SchieblerAmerican horn player and orchestra personnel manager from New York City. +He was active for the New York Philharmonic from 1986 and passed away December 22, 2016.Needs VoteNew York Philharmonic + +2188888East Coast MasifNeeds Major Changes + +2189749Günther DieckmannAudio engineer for classical releases.Needs VoteGuenther DieckmannGünter DieckmannGünther B. Dieckmann + +2189971Hermann VoerkelSwiss double-bass player.Needs VoteFestival Strings LucerneKammermusik-Ensemble ZürichTonhalle-Orchester Zürich + +2190686Norman BaltazarAmerican jazz trumpeter during the Big Band era, and younger brother of [a281327]. Needs VoteNorm BaltazarStan Kenton And His Orchestra + +2190763Karina BellmannKarina Bellmann is a German classical violinist.Needs VoteEnsemble »Alte Musik Dresden«Ensemble CourageGustav Mahler JugendorchesterBatzdorfer HofkapelleCappella Sagittariana DresdenThe Quohren Quartet + +2191373Ilya KorolClassical violinist.Needs VoteMusica Antiqua Köln + +2191374Gudrun HöboldGerman classical violinist.Needs VoteMusica Antiqua KölnHarmonie Universelle + +2191375Stephan SchardtClassical violinist.Needs VoteСтефан ШардтMusica Antiqua Köln + +2191377Ilka EmmertGerman double bassist and violone player.Needs VoteMusica Antiqua KölnRundfunk-Sinfonieorchester SaarbrückenBundesjugendorchester + +2191378André HenrichClassical lutenist and theorbo player.Needs Votehttps://www.andrehenrich.com/PulcinellaMusica Antiqua KölnModo AntiquoLes Folies FrançoisesOrnamente 99Les Musiciens De Saint-JulienNew Dutch AcademyAl Ayre EspañolEnsemble 1700Il DesiderioLe Banquet CélesteFuoco E CenereEnsemble L'YriadeEnsemble Trictilla + +2191643Jaroslav TachovskýJaroslav TachovskýCzech classical trombonist. CorrectThe Czech Philharmonic OrchestraPražské Žesťové Trio + +2191895Daniel KemperGerman recording engineer for classical and symphonic releases + +Kemper did Tonmeister studies from 1999 to 2004 at the following Universities: +- Hochschule für Musik Detmold +- University of Music and Performing Arts Vienna, with organ as main instrument + +Note: this profile page should not be confused with [a=Daniel Kemper (2)], a producer, sound designer and studio owner from Germany who often recorded for rock releases (hard rock, heavy metal, prog rock, progressive metal, acoustic, etc)Correcthttp://www.kemper-recording.com/index_en.html + +2191896Gilles VanssonsClassical oboistNeeds VoteThe English Baroque SoloistsLes Talens LyriquesGli Angeli GenèveOrchestre de Chambre de GeneveDie FreitagsakademieLes Ambassadeurs (6) + +2192657Chelsea QuealeyAmerican jazz trumpeter. +Born : 1905 in Hartford, Connecticut. +Died : May 06,1950 in Las Vegas, Nevada. + +Chelsea played with : Jan Garber (1925), "California Ramblers" (1926-'27), Fred Elizalde (in England), Don Worhees, again with "The California Ramblers", Paul Whiteman, Ben Pollack, Isham Jones (1935-'36), Red McKenzie, Joe Marsala, Frankie Trumbauer (1937), "Bob Zurke's Orchestra" (1939-'40) and others. + +Needs Votehttp://www.allmusic.com/artist/chelsea-quealey-mn0000591856http://en.wikipedia.org/wiki/Chelsea_Quealeyhttps://adp.library.ucsb.edu/names/338685C, QuealeyC. QuealeyChecksea QuealeyChelsea QualeyChelsey QuealeyBob Zurke And His Delta Rhythm BandMezz Mezzrow And His OrchestraCalifornia RamblersIsham Jones OrchestraThe Vagabonds (6)University SixIsham Jones' Juniors + +2192937Zuzana HájkováClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +2192985Günter KöppGerman hornist.Needs VoteBerliner PhilharmonikerPhilharmonisches Oktett BerlinWaldhornquartett der Berliner Philharmoniker + +2192986Peter GeislerGerman clarinetist and basset horn playerNeeds VoteBerliner PhilharmonikerScharoun Ensemble Berlin + +2192988Manfred BraunGerman bassoonist.Needs VoteBerliner PhilharmonikerOrchester der Bayreuther FestspielePhilharmonisches Oktett Berlin + +2192989Alfred MalecekAlfred Malecek (10 February 1929 —19 March 1997) was a German classical violinist.Needs VoteAlfred MalecakAlfred MalećekAlfred MalečekAlftred MalečekFred MalacekBerliner PhilharmonikerRIAS Symphonie-Orchester BerlinPhilharmonisches Oktett Berlin + +2192990Mitglieder der Berliner PhilharmonikerCorrectElementi Dei Berliner PhilharmonikerInstrumentalisten der Berliner PhilharmonikerMembers Of The BPO (Telefunken)Members Of The Berlin PhilharmonicMembers Of The Berlin Philharmonic OrchestraMembers Of The Berliner PhilharmonikerMembers Of The · Mitglieder Der · Membres Du Berliner PhilharmonikerMembers of the Berliner PhilharmonikerMembres De L'Orchestre Philharmonique De BerlinMembres Du Berliner PhilharmonikerMitglieder Berliner PhilharmonikerMitglieder D. Berliner Philharmonischen OrchestersMitglieder Der Kammermusikvereinigung Der Berliner PhilharmonikerMitglieder Des Berliner Philh. OrchestersMitglieder Des Berliner Philharmonischen OrchestersMitglieder Des Philharmonischen Orchesters BerlinMitglieder des Berliner Philharmonischen OrchestersMitgliedern Des Philharmonischen Orchesters BerlinSoloists From The Berlin Philharmonic OrchestraThe Berlin PhilharmonicThe Berlin Philharmonic Jazz GroupThe Members Of Berlin PhilharmonicČlenové Orchestru Berlinských FilharmonikůBerliner Philharmoniker + +2192991Heinrich MajowskiGerman classical cellist, born 1923 in Herne, Germany and died 1991 in Berlin, Germany.CorrectHeinrich MasowskiHeinz MajowskiHeinz MajowskyГенрик МайовскиГенрих МайовскиBerliner PhilharmonikerDrolc-QuartettDie 12 Cellisten Der Berliner PhilharmonikerPhilharmonisches Oktett Berlin + +2193358Gian Paolo VendittiNeeds Major ChangesG. P. VenditiG. P. VendittiG. Paolo VendittiG.P. VendittiPaolo Venditti + +2194402Othmar BergerOthmar Berger jun.Austrian horn player, born 11 January 1940 in Krems, Austria.Needs VoteVienna Symphonic Orchestra ProjectOrchester Der Wiener StaatsoperWiener PhilharmonikerConcentus Musicus WienDie Instrumentisten Wien + +2194616David BruchezDavid Bruchez-LalliSwiss trombonist.Needs Votehttps://davidbruchez.com/fr/home/tromboniste/Orchestre Mondial Des Jeunesses MusicalesTonhalle-Orchester Zürich + +2194978Daniele CernutoDaniele CernutoClassical musician and singer from Italy. He plays cello and viola da gamba.Needs Votehttp://www.dolciaccenti.it/cv_cernuto.htmlI BarocchistiAccademia Strumentale Italiana, VeronaVenice Baroque OrchestraDe LabyrinthoLa VenexianaConsortium CarissimiConsort VenetoDolci Accenti Ensemble + +2195490Conrad SteinmannSwiss [b]recorderist[/b]. +Born 1951. Director of [a=Ensemble Melpomen].Needs Votehttps://conradsteinmann.ch/C. SteinmannSteinmannMünchener Bach-OrchesterEnsemble 415Oscura LuminosaEnsemble Melpomen + +2195815Ricardo Ochoa (2)Venezuelan born violinist, keyboardist and theremin player, now based in Savannah, Georgia.CorrectRichard OchoaSimón Bolívar Symphony Orchestra Of VenezuelaRichard Leo Johnson Trio + +2195829Michael LudwigMichael Ludwig (born 1967) is an American violinist and conductor.Needs VoteThe Philadelphia OrchestraBuffalo Philharmonic Orchestra + +2197089Toivo RosovaaraNeeds Major Changes + +2197090Markku SeppänenNeeds Major Changes + +2197092Tapani LuuppalaTeuvo Tapani LuuppalaFinnish trumpeter. Died in 2019.Needs VoteTapani LuuppolaTapsa LuuppalaThe Smokings + +2197100Voitto JoveroVoitto Ilmari JoveroFinnish musician. Born on August 16, 1912 in Pori, Finland and died on September 14, 1996 in Helsinki, Finland.Correct + +2197177Gert-Inge AnderssonSwedish violinist, born in Helsingborg, Sweden in 1964.Needs VoteGerd-Inge AnderssonGert Inge AndersonGert Inge AnderssonGert-Inge AndersonThe Chamber Orchestra Of EuropeDet Kongelige KapelDen Danske Kvartet + +2197302Jan-Erik Gustafsson (2)Finnish classical cellist, born December 11, 1970 in Helsinki. + +Since winning the 1986 EBU "Young Musician of the Year" Competition, Mr. Gustafsson has performed as soloist with orchestras in the USA, the Far East and Europe, including the London Symphony Orchestra, The City of Birmingham Symphony Orchestra, the Vienna, Avanti!, the Camerata Bern and Lausanne chamber orchestras, the Helsinki Philharmonic, the Stockholm Philharmonic and Stockholm Sinfonietta; the Jerusalem, Iceland, Bournemouth Symphony Orchestras and the Berlin, Swedish, Finish, Danish and Dutch Radio Symphonies. He was a guest soloist on a tour of Spain with the Amadeus Chamber Orchestra, and has appeared with such conductors as Jukka-Pekka Saraste, Andrew Litton, Neeme Järvi, Paavo Järvi, Leonid Grin, Okko Kamu, Leif Segerstam, and Hans Graf. In Asia, Mr. Gustafsson has performed with the Hong Kong Philharmonic and given recitals in Japan, culminating in a major recital at Suntory Hall in Tokyo. In South America he toured as a soloist of the Helsinki Philharmonic Orchestra and Leif Segerstam in spring 2004. + +He has also appeared in London at Wigmore Hall and the Purcell Room, in Stuttgart at the Süddeutsche Rundfunk, for the Royal Dublin Society, RIAS (Radio) Berlin, in the Brahms Hall of the Musikverein in Vienna, at St. Petersburg's Musical Olympus Festival, and on a tour of South Africa. + +Mr. Gustafsson's United States tours have included recitals in Boston and in venues in Iowa, Florida, Kansas, Missouri, Texas and Michigan. In recital, he performs regularly also throughout Scandinavia at music festivals. + +Jan-Erik Gustafsson is the Director of Loviisa Sibelius Festival in Finland. + +He is the winner of the 1994 Young Concert Artists International Auditions. +Just prior to winning a place on the YCA roster, Mr. Gustafsson won Second Prize at the 1993 Leonard Rose International Cello Competition at the University of Maryland. He performed the Prokofiev Sinfonia Concertante with the National Symphony Orchestra conducted by Yan-Pascal Tortelier, and the Washington Post wrote that he "set the work ablaze with fury and grandeur." Mr. Gustafsson has also performed this work with the St. Petersburg Philharmonic, at the 1997 Rostropovich Cello Congress. + +He is the son of [a2826200] and brother of [a517293] and [a816453].Needs Votehttps://musicalworld.com/artists/jan-erik-gustafsson/https://sv.wikipedia.org/wiki/Jan-Erik_GustafssonGustafssonSveriges Radios SymfoniorkesterNew Helsinki QuartetEngegård Quartet + +2198228Thomas JöbstlAustrian hornist, born 15 January 1978 in Wolfsberg, Austria.Needs Votehttps://de.wikipedia.org/wiki/Thomas_J%C3%B6bstl_(Hornist)Orchester Der Wiener StaatsoperWiener PhilharmonikerWiener KammerensembleVienna HornsWiener Horn EnsembleWien-Berlin Brass Quintet + +2198229Wolfgang KoblitzBassoonist.CorrectOrchester Der Wiener StaatsoperWiener Philharmoniker + +2198230Ronald JanezicAustrian hornist, born 1968 in Neunkirchen, Austria. He's the son of [a1941775].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle WienWiener OktettPhil Blech Wien + +2198231Stepan TurnovskyŠtěpán TurnovskýBassoon & Dulcian instrumentalist , born 1959 in Prague, Czech Republic. He's the son of [a835187]. +Needs VoteStephan TurnovskyOrchester Der Wiener StaatsoperWiener PhilharmonikerConcentus Musicus WienWiener OktettWiener Virtuosen + +2198232Wolfgang VladarAustrian hornist, born in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerRuse Philharmonic OrchestraConcilium MusicumWiener Virtuosen + +2198233Martin GabrielAustrian oboist, born 1956 in Vienna, Austria. He's the son of [a3774955].Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +2198234Alexander ÖhlbergerAlexander Öhlberger (2 April 1956 in Vienna, Austria) is an Austrian oboist and composer. He's the son of [a1905983] and the brother of [a3856839].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Volksopernorchester + +2198235Andreas WieserAustrian clarinetist, born 1967 in Leoben, Austria.CorrectOrchester Der Wiener StaatsoperWiener Philharmoniker + +2198299Maurice WesterbyBritish classical cello player, and teacher. +Former member of the [a=London Symphony Orchestra] (1938-1939).Needs VoteLondon Symphony OrchestraPhilharmonia OrchestraDirections In Jazz UnitLondon Baroque EnsembleThe Freddie Alexander Cello Ensemble + +2198651Chœur Des Musiciens Du LouvreCorrectChorus Of Les Musiciens Du LouvreChorus Of The Musiciens Du LouvreChœur Des Musiciens Du Louvre • GrenobleChœur Des Musiciens Du Louvre-GrenobleLe Choeurs Des Musiciens Du LouvreLes Musiciens Du LouvreLes Musiciens Du Louvre ChorusMonteverdi ChoirChoeur de Chambre Des Musiciens Du LouvreLes Musiciens Du Louvre + +2198903Toby TurnerBig band reeds playerNeeds VoteEarl Hines And His Orchestra + +2198904Benny WashingtonJazz drummerCorrecthttps://adp.library.ucsb.edu/names/105558Benjamin WashingtonBennie WashingtonBuddy WashingtonWashingtonEarl Hines And His OrchestraJimmie Noone And His OrchestraBenny Washington's Six Aces + +2199227Willis PageWillis Howard PageAmerican double bassist and conductor, born 18 September 1918 in Rochester, New York and died 9 January 2013.CorrectBoston Symphony Orchestra + +2199623Gabriel BartoldA highly respected Trumpeter and Conductor. He holds a Masters degree in music education.Needs VoteBartoldBoston Pops OrchestraBoston Symphony OrchestraHouston Symphony OrchestraNational Symphony OrchestraKansas City Philharmonic + +2200268Alison StampClassical soprano vocalistNeeds VoteAlison StampsThe Tallis ScholarsThe Clerkes Of Oxenford + +2200273John Crowley (2)Classical tenor vocalistNeeds VoteThe Tallis ScholarsThe Choir Of Christ Church Cathedral + +2200330Dempsey WrightAmerican Jazz guitarist and fiddler. +Born: July 14, 1929 in Calumet, Oklahoma. Died: April 24, 2001 in Hot Springs, Arizona. +He began playing guitar at four. He got his first taste of jazz at age twelve by listening to records of violinists Joe Venuti, Stéphane Grappelli, Stuff Smith, and Eddie South. That year he began to play with a string band that played Saturday night parties. It wasn't until after he left Oklahoma's Eastern A&M Junior College in 1948 that he became serious about guitar as a jazz instrument. +He moved to California in 1953, determined to concentrate on jazz guitar, and not the fiddle, which he had dabbled with. His first job in California was with Frankie Carle. He joned a Special Services company for a tour of service bases in Japan, Korea, and Okinawa during 1955-56. +Back in California he joined up with [a2841546]. Dempsey again found himself playing the fiddle as much as the guitar. In the 1960's, he played with [a265635].Needs VoteGeorge Dempsey WrightGeorge WrightHarry James And His OrchestraHarry Babasin And The Jazz Pickers + +2200334Pierre-Joseph-Justin BernardPierre-Joseph BernardPierre-Joseph Bernard (1708 - 1775), called Gentil-Bernard by Voltaire for the measured grace of his discreetly erotic verses, was a French military man and salon poet with the reputation of a rake, the author of several libretti for Rameau. His libretto for Jean-Philippe Rameau's Castor et Pollux (1737), a resounding success, rendered him fashionable in the salons. For Rameau, Bernard also provided libretti for the operas Les surprises de l'Amour (1748) and Anacréon (1757). +Needs VoteGentil-BernardP. J. Gentil BernardP.J. Gentil BernardPierre Joseph BernardPierre-Joseph BernardPierre-Joseph Bernard* + +2200768Milo Adamo[b]Soul Songwriter[/b]Needs VoteAdamoM. A. AdamoM. AdamoM.A.AdamoMilo + +2200923Giulio Di AmicoItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2201084George IvesBritish cellist and Principal Cellist at the [l335984].Needs Votehttps://myspace.com/georgeivescelloPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent Garden + +2201330Doug TalbertFred Douglas TalbertAmerican jazz pianist. +Born 1926, died in 2013.Needs VoteTalbertThe Dorsey Brothers Orchestra + +2202258Gadi LedermannGad LedermanIsraeli classical bassoonist, born in Jerusalem.Needs Voteגדי לדרמןIsrael Philharmonic OrchestraEnsemble Aisthesis + +2202449Francesca BarritFrancesca BarrittViolin player (concert soloist, orchestral leader and chamber musician).Needs Votehttps://www.berkeleyensemble.co.uk/about/francesca-barritt/https://lawsontrio.com/francesca-barritt-violinFrancesca BarrittCity Of London SinfoniaLondon Contemporary OrchestraLawson TrioOrchestra Of The SwanBerkeley Ensemble + +2202450Triona MilneIrish viola player. Originally from Cork, Ireland. +She studied at the [l527847] before completing a post graduate degree from the [l290263]. A member of [a=The Royal Philharmonic Orchestra] but also with a varied career as a freelance violist alternating between orchestral, chamber music and solo playing.Needs Votehttps://www.trionamilne.com/https://www.chambermusicbox.com/triona-milne/https://www.soundcloud.com/triona-milnehttps://open.spotify.com/artist/1OTum83nKIfvUXF8CyoCAZhttps://www.youtube.com/channel/UC0veEjUaJzDC72KsdMuSR8Q/https://www.twitter.com/treemilnehttps://www.facebook.com/triona.milnehttps://www.instagram.com/trionamilne/https://www.linkedin.com/in/triona-milne-0106261a8/London Symphony OrchestraRoyal Philharmonic Orchestra + +2202778Niamh MolloyClassical cellistNeeds VoteScottish Chamber Orchestra + +2203117Christopher Cooper (3)US-American Horn player +Born in 1967 in California and raised in Rockport, Massachusetts. +Needs VoteChris CooperChristopher J. CooperSan Francisco SymphonyThe Empire Brass QuintetThe Canadian Brass + +2203832Wolf ReinholdWolf Reinhold (28 July 1933 - 7 April 2020) was a German tenor vocalist, pianist and university teacher.Needs VoteRundfunkchor LeipzigThomanerchorCapella LipsiensisCapella Fidicinia + +2204243Eberhard ZummachClassical oboist and flautist.Needs VoteEberhard ZumachAkademie Für Alte Musik BerlinMusica Antiqua KölnConcerto KölnGanassi-Consort + +2204244Jimmy Johnson And His OrchestraNeeds Major ChangesJam P. Johnson's New York OrchestraJames P Johnson & His OrchestraJames P. Johnson & His OrchestraJames P. Johnson And His OrchestraJames P. Johnson And OrchestraJames P. Johnson OrchestraJames P. Johnson's New York OrchestraJimmie Johnson And His OrchestraJimmie Johnson & His OrchestraJimmie Johnson And His OrchestraJimmy (James P.) Johnson And His OrchestraJimmy Johnson & His Orch.Jimmy Johnson & His OrchestraJimmy Johnson (James P. Johnson) And His OrchestraJimmy Johnson OrchestraJimmy Johnson's OrchJimmy Johnson's Orch.Fats WallerCootie WilliamsJames Price JohnsonBingie MadisonCharlie HolmesHenry JonesFred SkerrittRichard "Dick" FullbrightBill BeasonEugene FieldsWard PinkettFernando ArbelloGoldie Lucas + +2204686King JacksonKingsley JacksonAmerican jazz trombone player. + +Needs Votehttp://www.allmusic.com/artist/king-jackson-mn0001191546"King" JacksonSpike Jones And His City SlickersRed Nichols And His Five PenniesSeger Ellis And His Choirs Of Brass Orchestra + +2204862Dr DeviceNeeds Major Changes + +2205674Becki BourneNeeds Major Changes + +2205828Felicie Huni-Mihacsek☆ - 3 IV 1891 [Pécs] +† - 26 III 1976 [Munich] + +Hungarian operatic soprano, largely based in Germany, one of the greatest Mozart singer of the inter-war period. +Needs Votehttp://en.wikipedia.org/wiki/Felicie_Huni-Mihacsekhttps://adp.library.ucsb.edu/names/104451F. Hüni-MihacsekFelice Hüni-MihacsekFelicie Huni-MihacekFelicie Hüni-MihacsekFelicie Hüni-MihaczekFelicie MihacsekHüni-Mihacsek + +2206367Wardell Gray SextetNeeds Major ChangesHampton HawesHoward RobertsArt FarmerShelly ManneJoe MondragonWardell GrayGene Phipps + +2206461Florin PaulClassical violinist, born in Romania in 1958 and based in Germany since 1982.Needs VoteMünchner PhilharmonikerStuttgarter PhilharmonikerNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +2206467Jean RieberSwiss-born classical violist.Needs VoteJ. RieberL'Orchestre De La Suisse RomandeSymphonie-Orchester Des Bayerischen RundfunksMozart Klavierquartett + +2206642Dodo Marmarosa TrioNeeds Major ChangesDodo Mararosa TrioRichard Evans (2)Ray BrownBarney KesselSam JonesDodo MarmarosaHarry BabasinJackie MillsGene EnglundMarshall Thompson (2)Thomas MandrusJoe Wallace (10) + +2206644George Wallington TrioNeeds Major ChangesGeorge WallingtonGeorge Wallington TriosGeorges Wallington TrioThe George Wallington TrioThe George Wellington TrioCharles MingusMax RoachOscar PettifordCurly RussellArt TaylorGeorge Wallington + +2206645Johnny Guarnieri Swing MenNeeds Major ChangesJohnny Guarnieri's Swing MenCozy ColeLester YoungHank D'AmicoBilly ButterfieldBilly Taylor Sr.Johnny GuarnieriDexter Hall + +2206647George ZackGeorge J. ZackJazz pianist and singer, born c. 1908 in Chicago, Illinois.Needs Votehttps://adp.library.ucsb.edu/names/211312G. ZackZackMuggsy Spanier's Ragtime Band + +2206839Cormac Ó hAdodáinFrench horn player, conductor, and teacher. Born in 1971 in Dublin, Ireland. +He studied at the [l1333965]. He continued his studies at the [l459222] (1990-1994) and [l305416] (1994-1995). He represented Ireland in the [a=European Union Youth Orchestra] (1993-1996). In 1997 he joined the [a=Royal Philharmonic Orchestra]. In 1999 he moved to the [a=Philharmonia Orchestra]. Principal Horn of the [a349147] since 2009. Founding member of [b]Cassiopeia Winds[/b] (a Wind Quintet), [b]Vox Merus[/b] (a Brass Quintet) and [b]Musici Ireland[/b] (a Chamber Ensemble). He joined the teaching staff of the Royal Irish Academy of Music in 2015.Needs Votehttps://www.feenotes.com/database/artists/ohaodain-cormac-1971-present/https://irishcomposerscollective.com/concerts/horn-2019https://www.riam.ie/about/our-people/cormac-o-haodainhttps://journalofmusic.com/listing/08-07-20/july-master-class-series-cormac-o-haodain-french-hornCormac Ó hÁodáinRoyal Philharmonic OrchestraRTÉ Concert OrchestraPhilharmonia OrchestraBBC PhilharmonicEuropean Union Youth OrchestraThe Mike Gibbs OrchestraRTE National Symphony OrchestraThe London Horn SoundSolstice Ensemble (2) + +2207204Vincenzo BologneseItalian violinist. Needs VoteBologneseOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Da Camera 'In Canto' + +2207375Salvatore AccardiClassical hornist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaQuel Giorno Di Uve Rosse + +2207376Antonio LoporchioItalian cellist. Needs VoteLoporchio AntonioOrchestra dell'Accademia Nazionale di Santa Cecilia + +2209027Joseph PettitClassical tenor and conductor.Needs VoteLa Petite Bande + +2209033Nigel CliffeEnglish classical baritone vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +2209110Dylan NaylorGerman violinist.CorrectPhilharmonisches Staatsorchester HamburgGürzenich-Orchester Kölner Philharmoniker + +2209317Otmar GaiswinklerAustrian trombonist.Needs VoteWiener SymphonikerLa Grande ChapellePeter Furtner & EnsembleWiener Posaunenquartett (2)Ensemble Tonus (2) + +2209319Josef SteinböckAustrian tuba player and trombonist.Needs VoteDas Mozarteum Orchester SalzburgÖsterreichisches Ensemble Für Neue MusikAlbert Kreuzer Bigband + +2209320Matthias Schulz (2)Flutist. +Son of [a=Wolfgang Schulz (3)]Needs VoteBühnenorchester Der Wiener Staatsoper + +2209478Kurt Owen RichardsClassical bass vocalistNeeds VoteKurt-Owen RichardsPomeriumThe Waverly ConsortLionheart (9)Voices Of AscensionThe New-York Baroque Ensemble + +2211014Björn WestlundSwedish flute player, born 1962 in Stockholm, Sweden.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgHanseCompagnie + +2211020Catherine FagesClassical cellistNeeds VoteOrchestre National Bordeaux Aquitaine + +2211065Thomas RohdeGerman oboist, born 1962 in Bremen, Germany.Needs VoteThe NDR Big BandOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgSaito Kinen OrchestraKnabenchor Unser Lieben FrauenHanseCompagnie + +2211274Osamu NagakawaNeeds Major ChangesO. NagakawaO.Nagakawa + +2211537Watson ForbesWatson Douglas Buchanan ForbesScottish classical violist, classical music arranger, and Professor of Viola. Born 16 November 1909 in St Andrews, Scotland, UK - Died 25 June 1997 in Moreton-in-Marsh, Gloucestershire, England, UK. +He studied the violin at the [l527847]. While studying, he was encouraged to take up the viola. The invitation to join the [b]Stratton Quartet[/b] set the direction of his career and remained with them for the rest of its existence. He was Joint Leader of the [a=London Symphony Orchestra] (1935-1939), but, from 1940 onwards, he joined [a=The Royal Air Force Orchestra]. After the war, he continued with the Stratton Quartet, (but now, following the departure of [a=George Stratton (2)], renamed [a=Aeolian String Quartet]). In 1954, he became Professor of Viola and chamber music at the Royal Academy of Music. In 1964, he moved to Glasgow to take up the post of Head of Music for [l=BBC Radio Scotland]. +Father of [a=Sebastian Forbes] and [a=Rupert Oliver Forbes].Needs Votehttps://open.spotify.com/artist/2kJxHqWI9oB7f80pldiCm7https://en.wikipedia.org/wiki/Watson_Forbeshttps://www.independent.co.uk/news/people/obituary-watson-forbes-1249054.htmlForbesワトソン・フォーブズLondon Symphony OrchestraAeolian String QuartetThe Royal Air Force OrchestraStratton Quartet + +2213548Maarten VeezeDutch violin and viola playerNeeds VoteNieuw Sinfonietta AmsterdamGemini Ensemble (2) + +2213844Janis OlssonSwedish violinist, born 1979 in Lund, Sweden.CorrectBayerisches StaatsorchesterThe Royal Copenhagen Chamber Orchestra + +2214144Roger BrayClassical bass vocalistCorrectThe Clerkes Of Oxenford + +2214478Gary Tole (2)American jazz trombonistNeeds VoteHarry James And His OrchestraThe Glenn Miller OrchestraThe Buddy Bregman Big BandBill Tole And His OrchestraScott Whitfield Jazz Orchestra West + +2214524Helge BartholomäusHelge Bartholomäus (13 January 1949 - 22 January 2022) was a German bassoonist.Needs VoteOrchester Der Deutschen Oper BerlinOctetto Tokyo-BerlinBerliner FagottquartettStaatsorchester BraunschweigKammerensemble Classic Der Deutschen Oper Berlin + +2215170Al Walker (2)Alvin E. WalkerDrummer and songwriter.Needs Votehttp://repertoire.bmi.com/writer.asp?blnWriter=True&blnPublisher=True&blnArtist=True&page=1&fromrow=1&torow=25&querytype=WriterID&cae=0&affiliation=NA&keyid=359453&keyname=WALKER+ALVIN+EA WalkerA.WalkerAlvin WalkerArnett Cobb & His OrchestraJohnny Hodges And His Orchestra + +2215290Dorothée ZimmerClassical cellistCorrectDorothee ZimmerCapella Agostino Steffani + +2215294Volker MühlbergClassical violin and viola player.Needs VoteCapella Agostino SteffaniL'ArpeggiataCantus CöllnLa Stravaganza KölnDas Kleine KonzertMusica Alta RipaJohann Rosenmüller EnsembleAffetti Musicali (3) + +2215900The Four Instrumental StarsNeeds Major ChangesFour Instrumental Stars + +2216670Héloïse GaillardFrench recorder and oboe instrumentalist and coductor of [a=Amarillis]Needs VoteLe Concert SpirituelLe Concert D'AstréeAmarillis + +2216889Billy Richards (2)US jazz sax player.Needs VoteBill RichardsRay Miller And His OrchestraBilly Wynne's Greenwich Village Inn Orchestra + +2217139Michele TazzariItalian classical cellist, active in recordings since 2000.CorrectAuser MusiciOrchestra Del Maggio Musicale Fiorentino + +2217171Anna NoferiniAnna Noferini (died 1 December 2025) was an Italian classical violinist and violist. The daughter of [a5562848] and pianist Maria Grazia, and the sister of [a3005960] and [a1696418], she won 1st prize with distinction in violin at Bruxelles' music school in 1986 as a student of [a=Arthur Grumiaux]. She also graduated from Milano's music school in 1990, then graduated Summa cum Laude in viola in 2010 from Florence's music school. + +From 1991, she played first violin in the [a=Orchestra Del Maggio Musicale Fiorentino], with [a=Zubin Mehta] as principal conductor. She played chamber music, especially duos with piano and trios, with her two brothers Andrea and Roberto. She also played early music in other ensembles.Needs VoteAuser MusiciOrchestra Del Maggio Musicale FiorentinoQuartetto NoferiniSemperconsort + +2217175Flavio FlaminioItalian classical viola player, active in recording from 2000.CorrectAuser MusiciOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale FiorentinoSemperconsort + +2217273Nikolaus WalchAustrian classical horn player, born in 1958 in Innsbruck, Austria.Needs VoteAkademie Für Alte Musik BerlinConcerto Kölnmoderntimes_1800Tiroler Symphonieorchester Innsbruck + +2217460Don Young (3)American jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdBay Bones Trombone Choir + +2217580Frederic GoodwinClassical alto vocalistCorrectThe Clerkes Of Oxenford + +2217581Michael SmedleyClassical vocalistCorrectThe Clerkes Of Oxenford + +2217582Philip SibthorpClassical alto vocalistCorrectThe Clerkes Of Oxenford + +2217583Richard BrettClassical bass vocalistNeeds VoteThe Choir Of Christ Church CathedralThe Clerkes Of OxenfordThe Sarum Consort + +2217584Joseph PolglaseClassical tenor vocalistCorrectThe Clerkes Of Oxenford + +2217585Richard Stevens (7)Countertenor vocalist.CorrectThe Tallis ScholarsThe Clerkes Of Oxenford + +2217586Jane GoddardClassical soprano vocalistCorrectThe Clerkes Of Oxenford + +2217588Hilary PhelpsClassical soprano vocalistCorrectThe Clerkes Of Oxenford + +2217589Michael CockerhamClassical alto vocalistNeeds VoteCockerhamMichael CokershamThe Choir Of Christ Church CathedralThe Clerkes Of Oxenford + +2217590Elisabeth NormanClassical vocalistNeeds VoteElizabeth NormanThe Clerkes Of Oxenford + +2217591Elisabeth MacNamaraClassical vocalistCorrectElizabeth MacNamaraThe Clerkes Of Oxenford + +2218115Sami TurunenNeeds Major Changes + +2218131Julia HuberClassical violinist.Needs VoteJulia Huber WarzechaJulia Huber-WarzechJulia Huber-WarzechaJulia Huber-WarzeckaMusica Antiqua KölnL'Orfeo BarockorchesterNeue Düsseldorfer HofmusikTrio Fortepiano + +2219032Bernardino PenazziItalian cellist.Needs VoteB. PenazziBenny PenazziBernardino "Benny" PenazziOrchestra dell'Accademia Nazionale di Santa CeciliaD.O.M. Alia OrchestraGabriele Coen Quintet + +2219508Derek HanniganBritish clarinetistNeeds VoteDerek HaniganCity Of London SinfoniaBBC Concert Orchestra + +2219539Preben IwanDanish French horn player, sound engineer and classical music producer.Needs VotePreben Ivan + +2219660Giorgio SassoItalian violinistNeeds Votehttp://www.giorgiosasso.comLes Talens LyriquesInsieme Strumentale Di RomaEnzo Pietropaoli Strings ProjectEnsemble Harmonia Urbis + +2219661Francesco Fiore (2)Viola player and liner notes authorNeeds VoteF. FioreFioreOrchestra da Camera ItalianaInsieme Strumentale Di RomaEnzo Pietropaoli Strings ProjectEnrico Pieranunzi & String QuartetTrio Pieranunzi, Gorna, Fiore + +2220087Francesco MeucciClassical horn player.Needs VoteФранческо МеуччиVenice Baroque OrchestraAuser MusiciIl Complesso BaroccoEnsemble Barocco Sans SouciCappella Della Pietà De' TurchiniZefiroConsort Del Collegio Ghislieri + +2220787Robert Nagy (3)Róbert NagyRóbert Nagy (born in 1966 in Mako, Hungary) is a Hungarian classical cellist and Professor at University of music and performing arts in Vienna.Needs Votehttp://www.cellist.at/de/deutsch.htmRobert NađOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Wiener Philharmonia TrioKüchl-QuartettWiener Ring Ensemble + +2220788Dieter FluryClassical flutist, born 8 July 1952 in Küsnacht, Switzerland.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerFlury-Prinz Duo + +2220789Martin LembergClassical viola player.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Wiener Philharmonia Trio + +2220858Stéphanie PauletFrench violinist.Needs VoteIl Seminario MusicaleLe Concert D'AstréeLes Musiciens De Saint-JulienLes Basses RéuniesLa RéveuseDa Pacem (2)LunaisiensIl ConvitoI Gemelli (2)AliquandoLa Petite SymphonieTrio Pantoum + +2221290Thilo BuschGerman tenor vocalist born in UnnaCorrecthttp://www.bach-cantatas.com/Bio/Busch-Thilo.htmRIAS-Kammerchor + +2221292Johannes SchendelGerman classical bass vocalist born 1975 in KaufbeurenCorrectJohannes Schendel [Germany]RIAS-Kammerchor + +2221295Dagmar WietschorkeClassical soprano & mezzo-soprano vocalistNeeds VoteRIAS-Kammerchor + +2221297Ingolf SeidelGerman classical bass / baritone vocalist born in 1972 in LeipzigNeeds Votehttps://ingolf-seidel.deIngolf HorenburgDresdner KammerchorRIAS-KammerchorEnsemble »Alte Musik Dresden« + +2221298Johannes WeisserNorwegian bass / baritone vocalistNeeds VoteJ. WeisserWeisserRIAS-Kammerchor + +2221299Simone Alex-KummerGerman mezzo-soprano vocalistCorrectSimone AlexRIAS-Kammerchor + +2221300Franziska MarkowitschClassical alto vocalistCorrectRIAS-Kammerchor + +2221302Hannelore StarkeClassical soprano vocalistCorrectRIAS-Kammerchor + +2221303Claudia BuhrmannClassical soprano vocalistCorrectRIAS-Kammerchor + +2221305Regina JakobiGerman mezzo-soprano vocalistNeeds Votehttp://www.regina-jakobi.de/RIAS-Kammerchor + +2221653MellowairesVocal group. +Members: Bobbie Canvin, Patty Morgan, Sally Sweetland, Tony Paris and Lee Gotch.Needs VoteThe MellowairesBobby CanvinPaul Whiteman And His Orchestra + +2222056Friedrich GeyerhoferClassical cellistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +2222061Gerhard BreuerClassical violinist.Needs VoteWiener Symphoniker + +2223540Angélique MauillonFrench harpist.Needs VoteIl Seminario MusicaleLe Concert D'AstréeLe Poème HarmoniqueLes PaladinsDoulce MémoireLa RéveuseEnsemble CorrespondancesL'AchéronTasto SoloEnsemble CéladonGalilei ConsortGround Floor (6) + +2223547Chantal SantonFrench soprano vocalistNeeds Votehttps://www.chantalsanton.comChantal Santon JefferyChantal Santon JeffreyChantal Santon-JefferyChantal Santon-JeffreySanton JefferySanton JeffreyLe Concert SpirituelLa Réveuse + +2223725Mike Hyatt(British?) pianist.Needs VoteMichael HyattPhilharmonia Orchestra + +2223929David WitczakClassical bass & baritone vocalist.Needs Votehttps://www.david-witczak.com/https://www.facebook.com/david.witczak.73WitczakLe Concert SpirituelLes Chantres Du Centre De Musique Baroque De VersaillesEnsemble Desmarest + +2224510Lucy GoddardBritish mezzo soprano.Needs Votehttp://www.lucygoddard.com/Lucy GoddaardLondon VoicesExaudiThe Eric Whitacre Singers + +2224512Scott LumsdaineBritish percussionist.Needs VoteRoyal Liverpool Philharmonic Orchestra + +2224516Louise WaymanEnglish classical soprano vocalistNeeds Votehttps://louisewayman.comCollegium VocaleLaudibus + +2224518Katy HillBritish soprano vocalistNeeds Votehttps://thesixteen.com/team/katy-hill/https://www.bach-cantatas.com/Bio/Hill-Katy.htmKatie HillLondon VoicesThe SixteenThe Monteverdi ChoirGalanStile AnticoTenebrae (10)AlamireConsortium (8) + +2224525Peter FoggittBritish classical bass vocalistNeeds VoteThe King's College Choir Of Cambridge + +2224767Daniel Carlsson (4)Classical countertenor born in 1980 in Sweden. Correcthttp://www.danielcarlsson.org/index.htmCarlssonTheatre Of Voices + +2224950Maria GrochowskaPolish classical flutist, she teaches at the Karol Szymanowski Academy of Music in Katowice.CorrectGrochowskaSinfonia VarsoviaPolish National Radio Symphony OrchestraPolish Chamber Orchestra + +2225453Heinrich MarschnerHeinrich August Marschner German composer and conductor ([i]Hofkapellmeister[/i]) of the Romantic era (* 16 August 1795 in Zittau, Germany; † 14 December 1861 in Hanover, Germany).Needs Votehttps://www.deutsche-biographie.de/sfz58555.htmlhttps://inlibris.com/de/authors/heinrich-marschner/https://de.wikipedia.org/wiki/Heinrich_Marschnerhttps://www.geschichte.sachsen.de/heinrich-august-marschner-5882.html?_pp=%7B%7Dhttps://adp.library.ucsb.edu/names/104026H. A. MarschnerH. MarschnerHeinr. MarschnerHeinrich A. MarschnerHeinrich August MarschnerMarachnerMarschnerMarshnerMarsner + +2225506Helman JungGerman classical bassoon & dulcian instrumentalist, born in 1937Needs VoteBamberger SymphonikerConsortium ClassicumBamberger Bläserquintett + +2225535Kornelia BrandkampClassical flautist.Needs Votehttps://www.dso-berlin.de/de/orchester/personen/pultnotiz/?detail=273/Deutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleConsortium ClassicumMa'alot Quintett + +2225536Ulrich WolffClassical double bass player, born in 1955 in Wuppertal, Germany.Needs VoteBerliner PhilharmonikerNew Seasons EnsembleEnsemble BerlinConcerto MelanteEnsemble Berlin PragCollegium Der Berliner Philharmoniker + +2225739Heleen ResoortMezzo-soprano/alto vocalist.Needs VoteNederlands Kamerkoor + +2225926Edwige ParatFrench soprano and Chorus Master of [a=La Chorale Des Enfants De L'Opera De Paris]Needs VoteLe Concert SpirituelLes Cris de ParisLudus ModalisLe Parnasse FrançaisArsys Bourgogne + +2226294Béatrice Martin (2)Classical keyboard instrumentalistNeeds VoteBéatrice MartinLes Arts FlorissantsLes Folies Françoises + +2227819TermalNeeds Major ChangesŁukasz Marek + +2227895Jordi Ricard NovelleSpanish classical bass vocalistNeeds VoteJordi RicartHespèrion XX + +2227926Timothy HaywardClassical trumpeter.Needs VoteTim HaywardOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsThe Academy Of Ancient Music + +2227929Lars Henriksson (2)Swedish oboist. Oboist and responsible for artistic development and sales in [a3548474].Needs VoteLars HenrikksonLars HenriksonThe Academy Of Ancient MusicDunedin ConsortConcerto CopenhagenThe Illyria Consort + +2227936Zoe ShevlinClassical bassoonist from the UK.Needs VoteThe SixteenThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersThe King's ConsortLondon Early OperaRetrospect EnsembleThe MozartistsOrpheus Britannicus + +2227949Julian Chou-LambertClassical (bass-baritone) vocalist and film composer from London, UK.Needs Votehttps://julianchoulambert.com/https://www.imdb.com/name/nm8749510/London Voices + +2227950Lara James (2)Classical violinist.CorrectThe Academy Of Ancient Music + +2227953Zoë BrownEnglish classical soprano vocalistNeeds VoteZoe BrownCollegium VocaleThe Monteverdi ChoirTenebrae (10)The Choir Of Trinity College, Cambridge + +2227960Emily DickensClassical soprano vocalistNeeds Votehttps://www.facebook.com/emily.dickens.92The Choir Of Trinity College Of CambridgeLondon VoicesVoces8 + +2227962Eugene KohnConductorCorrectE. KohnEugene Kohns Orkestras + +2228222Helen MacDougallAustralian classical hornist, based in The Netherlands.Needs VoteHelen McDougalHelen McDougallAnima EternaConcerto KölnLa Petite BandeOrchestra Of The 18th CenturyEnsemble CristoforiOsmosis (24) + +2228228Jane GowerJane GowerClassical bassoonist. She is a specialist in historic bassoon performance and scholarship. Needs Votehttps://www.arco.org.au/jane-gowerAnima EternaThe English Baroque SoloistsAustralian Brandenburg OrchestraOrchestra Of The Age Of EnlightenmentMusica Ad RhenumCollegium 1704NachtmusiqueConcerto CopenhagenLes Ambassadeurs (6)Island (33) + +2228279Rebecca OckendenClassical soprano.CorrectOckendenLes Arts Florissants + +2228316Eyal StreettBassoon & Dulcian instrumentalist.Needs VoteEyal StreetFreiburger BarockorchesterLes Talens LyriquesNachtmusiqueEnsemble CristoforiEuropean Brandenburg EnsembleLa Grande Chapelle{oh!} Orkiestra Historyczna + +2228580Gautier CapuçonFrench cellist, born 3 September 1981 in Chambéry, France. +Brother of [a1557875]Needs Votehttp://www.gautiercapucon.com/https://en.wikipedia.org/wiki/Gautier_CapuçonCapuçonGauthier Capuçonゴーティエ・カピュソンCapuçon QuartetCapucelli + +2228582Aki SaulièreFrench-Japanese violinistNeeds VoteAki SauliereThe Chamber Orchestra Of EuropeCapuçon Quartet + +2228583Gustav Mahler JugendorchesterA pre-professional orchestral training program serving talented young instrumentalists from Europe. It was founded in 1986 by [a368137] and is based in Vienna, Austria.Needs Votehttps://gmjo.at/Gustav Mahler Jugend OrchesterGustav Mahler Youth OrchestraThe Gustav Mahler Youth OrchestraYannick DondelingerJames BuckleMatthias BäckerAdele BitterBernhard RichterMaria GoudimovHeidrun LanzendörferMatthieu Gauci-AncelinSaskia OttoMarkus DäunertHarald DemmerJulius RönnebeckNicola DomeniconiFranz PicklKarina BellmannAnnette Zu CastellPaweł PańtaJoost BosdijkBénédicte RoyerMaximilian JunghannsCéline MoinetAngelo BardYoungkun KwakElisabeth GöringMaria GrünAndreas PlanyavskyJesper KorneliusenLiisa RandaluZora SlokarDiana TishchenkoBarbara KehrigHeinrich LohrBlaise DejardinAnne AngererEduardo CalzadaStefan ThurnerGerald PachingerUwe SchrodiAline SaniterJúlia GállegoSaskia OgilvieDavid PennetzdorferDoga SacilicAntonia SchreiberTanja van der KooijAnna-Theresa SehmerHerbert Zimmermann (5)Stefan ArzbergerSebastian BruMarije GrevinkJoachim HuschkeFilipa NunesEmanuel MatzAndrea KimDavid BroxGiovanni MennaMarjan HesseSusanne Schmidt (4)Barbara GruszcynskaPhilippe TondreJens KreuterAlexandra Scott (2)Isabella UntererFilipe AlvesBernhard KuryMartin GromYunna WeberJohane Gonzalez SeijasMiriam Olga Pastor BurgosPaolo LambardiMichele FattoriDorian XhoxhiAnna Vasilyeva (2)Christian MiglioranzaEdward Jones (9)Katarzyna HorbowiczIsabelle ReinischPhilipp TutzerGabriele MarangoniRobert LangbeinRichard Wheeler (4)Laura Salcedo RubioSandrine VasseurMarcos Pérez MirandaStefan Albers (2)Gonzalo Berná PicRebekka Wittig-VogelsmeierLorenzo LuccaOlga DraguievaJosé Manuel Álvarez LosadaAlvaro Octavio DiazCésar Altur de los MozosLia PrevitaliIgnacio Molins BoschDaniela Steiner (2)Laia Puig TornéTeresa ZimmermannHubert SalmhoferMarcello EnnaAndreas RitzingerJaka StadlerOleguer BeltranSiret LustBlaž OgričHarald KrumpöckVéronique BastianJákup LützenJonathan WegloopTherese Auf Der MaurLionel PointetAnna Luisa VolkweinJeremy BagerAndraž GolobRiccardo TerzoJosé Trigo (2)Marlene PschorrAnna FirsanovaEva Klambauer + +2228829Joe CiavardoneJoseph E. Ciavardone Sr.American Jazz trombonist. +Born: 1928 in Waltham, Massachusetts - died: March 26, 2012 in Staten Island, New YorkNeeds VoteJoe CiavarroJoseph CiavardoneStan Kenton And His OrchestraJazz In The ClassroomThe Herb Pomeroy Orchestra + +2228830Everett LongstrethAmerican trumpet playerCorrectE. LongstrethLongstrethWoody Herman And His OrchestraJazz In The ClassroomWoody Herman And The Fourth HerdThe Herb Pomeroy OrchestraFred Radke & His Swingin' Big Band + +2228958Russell SmytheIrish operatic baritone, born 19 December 1949 in Dublin, Ireland.Needs Votehttps://www.rcm.ac.uk/vocal/vocalprofessors/details/?id=01820Russel Smythe + +2229042Al LorraineAmerican jazz trombonist.Needs VoteTommy Dorsey And His OrchestraBuddy Rich And His OrchestraJerry Gray And His Orchestra + +2229084Dorothee MüllerFlute and recorder player.Needs VoteDorothee Müller-KunstTelemannisches Collegium MichaelsteinHandel's CompanyBoston Early Music Festival Orchestra + +2229413Agnieszka RychlikClassical violinist born 1973 in Crakow PolandNeeds Votehttp://novacasamusic.com/page10.htmLe Concert Des nationsLe Concert D'AstréeLes Musiciens Du LouvreLa Grande ChapelleLa Tempesta (2) + +2229470Frank TheunsClassical Traverso flautist and director of ensemble [a=Les Buffardins]Needs VoteF. TheunsFranck TheunsAnima EternaIl FondamentoLe Concert Des nationsLa Petite BandeEnsemble ExplorationsLes MuffattiLes Buffardins + +2229493Tim Crawford (3)Lutenist and musicologist.Needs VoteT.C.Timothy CrawfordThe Parley Of InstrumentsThe English Baroque SoloistsSocieta Cameristica Di Lugano + +2229722Emilian SzczygielClassical violistNeeds VoteOrquesta Sinfónica De Madrid + +2230788David InmonTrumpeter.Needs VoteChicago Symphony OrchestraChicago PhilharmonicBrian Conn New Music Ensemble + +2230941Aurore BucherFrench classical soprano & mezzo-soprano vocalistNeeds VoteChoeur de Chambre de NamurLe Poème HarmoniqueAkadêmiaLa Chapelle RhénaneGalilei Consort + +2230942Frédérick HaasPianist and harpsichord player. Head of Ensemble Ausonia.Correcthttp://www.ensemble-ausonia.org/bio.php?id=1Frédérik HaasCollegium VocaleAusonia + +2231223Ari Þór VilhjálmssonViolin player.Needs Votehttps://www.facebook.com/ariviolinAri VilhjalmssonAri VilhjálmssonIsrael Philharmonic Orchestra + +2231598Reginald NewNeeds VoteLondon Philharmonic Orchestra + +2232405Beth GrahamFrench Horn player.Needs VoteBaltimore Symphony Orchestra + +2232594Rufeng XingSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +2232595Alice ErteFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +2232596David Defiez David DéfiezFrench horn player.CorrectOrchestre National De L'Opéra De Paris + +2232597Grzegorz StaskiewiczTenor VocalistNeeds VoteGregorz StaskiewiczChoeur National De L'Opéra De Paris + +2232601Gérard NoizetFrench tenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232605Bernard SchirrerClassical hornistNeeds VoteOrchestre De ParisLes Cuivres Français + +2232609Fabien WallerandFrench tuba player.CorrectOrchestre National De L'Opéra De Paris + +2232611Emmanuel CeyssonFrench harpist.Needs Votehttp://www.emmanuelceysson.com/en/emmanuel/biographyCeyssonLos Angeles Philharmonic OrchestraOrchestre National De L'Opéra De ParisThe Metropolitan Opera House Orchestra + +2232612Paolo BondiTenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232613Sylvie DelaunaySoprano vocalistCorrectChoeur National De L'Opéra De Paris + +2232617Jian-Hong ZhaoBaritone vocalistCorrectChoeur National De L'Opéra De Paris + +2232624Vincent LeonardVincent LéonardClassical hornistNeeds VoteVincent LéonardOrchestre National De France + +2232625Francisco SimonetTenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232630Jian ZhaoMezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +2232631Guillaume VarupenneFrench bass trombonist.CorrectOrchestre National De L'Opéra De Paris + +2232632Caroline VerdierFrench mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +2232634Gilles RancitelliPercussionistNeeds VoteOrchestre National De France + +2232635Alexandre GattetFrench oboist.Needs VoteAlexandre GatterOrchestre De ParisEuropean Camerata + +2232636Alicia Garcia MunozSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +2232637Isabelle ZoccolaAlto vocalistCorrectChoeur National De L'Opéra De Paris + +2232639Nicole DubrovitchSoprano vocalistCorrectLes Arts Florissants + +2232642Stéphane LabeyrieFrench tubist. + +Born: 1975 + +Stéphane Labeyrie studied tuba with [a7620404] at the CNR de Toulouse where he won the gold medal in 1991. That same year, he entered the [l787461] in the class of [a2856538]. He graduated with honors. In 1992, he won the Special Prize for Musicality at the Markneukirchen International Competition. Stéphane is a laureate of several international competitions: First Prize unanimously at the International Tuba Competition in Sydney, Australia in 1995; First Prize at the Markneukirchen International Competition in 1996; First Prize at the International Competition of Riva Del Garda, Italy in 1997; and in 2008, Second Prize at the International Porcia Competition. After playing at the [a1868155] with [a649582] and spending 2 years at the [a880293] under the direction of [a931368], he has held the position of Principal Tuba at the [a744724] for several years.Needs VoteStephane LabeyrieOrchestre De ParisOrchestre National Du Capitole De ToulouseOpéra National De LyonMichel Becquet Et L'ensemble Octobone + +2232643Frédéric GuieuBaritone vocalistCorrectChoeur National De L'Opéra De Paris + +2232648Robert CataniaTenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232649Ghislaine RouxFrench mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +2232652Isabelle EscalierSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +2232654Andrea NelliBass vocalistCorrectChoeur National De L'Opéra De Paris + +2232655Se-Jin HwangTenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232656Caroline BibasFrench mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +2232657Nicolas MarieTenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232659Vania BonevaSoprano vocalistCorrectVanya BonevaChoeur National De L'Opéra De Paris + +2232663Yves CochoisBass vocalistCorrectChoeur National De L'Opéra De Paris + +2232666Sophie ClaisseSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +2232669Olivier BergTenor vocalistCorrectChoeur National De L'Opéra De Paris + +2232800Anthea KrestonClassical American violist/violinist.Needs VoteArtemis QuartettAmelia Piano TrioThe Avalon String Quartet + +2233758Sébastien d'HérinHarpsichordist and organist.Needs Votehttps://www.nouveauxcaracteres.com/en/sebastien-dherin-2/Sébastian D'HérinSébastian d'HérinLes Musiciens Du LouvreCapriccio StravaganteLes Nouveaux Caractères + +2233759Virginie PochonFrench classical soprano vocalistNeeds VoteChoeur de Chambre de Namur + +2234651Nathalie StreichardtGerman violinist.CorrectGürzenich-Orchester Kölner Philharmoniker + +2234876Clive BardaPhotographer of musicians and stage performers since the late 60s.Needs Votehttp://www.clivebarda.comBardaBarda, LondonC. BardaC. Barda, LondonClive BandaClive Barba-LondonClive Barda (PAL)Clive Barda / PALClive Barda / Performing Arts LibraryClive Barda, LondonClive Barda, PALClive Barda-PALClive Barda/Arena PALClive Barda/EMIClive BurdaCrive BardaDaubignyDecca / Clive BardaPhoto Clive Barda + +2235929Stefano Rossi (2)Italian classical violinist.Needs VoteMusica Ad RhenumIl Complesso BaroccoTrio ArsZefiroL'EstravaganteHolland Baroque SocietyIl Pomo d'OroLes Ambassadeurs (6)Concerto SciroccoEnsemble La DafneAnimantica + +2236001John Thomson (2)PhotographerNeeds Vote + +2237582Roman KoudelkaClassical double bassistNeeds VoteThe Czech Philharmonic OrchestraCzech National Symphony Orchestra + +2237613Pierre Fournier (2)French photographer. +Not to be cionfused with the French cellist [a834051].Needs VoteFournierP. FournierParimage - Pierre FournierPh. FournierPierre FournierPierre Tournier + +2238314José Luis Sogorb JoverSpanish hornist. Born in Pinoso, Alicante (Spain)Needs VoteJose Luis SogorbJosé Luis SogorbJosé SogorbConcertgebouworkestOrquesta Sinfonica De GaliciaThe Arnhem Philharmonic Orchestra + +2238469Erich LessingAustrian photographer, born 13 July 1923 in Vienna, Austria. + +For © copyrights, see [l=Erich Lessing].Needs VoteAKG London/Erich LessingAKG/Erich LessingEric LessingErich Lessing / Museum Mayer van Den Bergh, Antwerp / Archiv Für Kunst Und Geschichte, BerlinErich Lessing-MagnumF. Lessing - MagnumLessingProf. Erich LessingĒrihs LessingsMagnum Photos + +2239163Michael Evans (10)Photographer, mainly on Decca, Philips and Deutsche Grammophon classical releases. Active 1964 to about 1991. +When credited as “Mike Evans”, add an ANV to Mike Evans.Needs VoteDecca/Mike EvansDecca/Mike Evans;M. EvansMIke EvansMichaël EvansMike EvansMike Evans, London + +2239359Simon Murphy (3)Classical viola/violinistNeeds VoteMurphyNetherlands Bach CollegiumNew Dutch Academy + +2239504Marie-Pierre LanglametFrench harpist, born 1967 in Grenoble, France.Needs Votehttps://en.wikipedia.org/wiki/Marie-Pierre_LanglametLanglametBerliner PhilharmonikerThe Metropolitan Opera + +2239808Francis GoldsteinPhotographerNeeds VoteF. GoldsteinGoldsteinFrançois De La Pierre Dorée + +2240215Friedhelm MayClassical timbales playerNeeds VoteF. MayCollegium VocaleAkademie Für Alte Musik BerlinOrchester Der Komischen Oper Berlin + +2240398Antje SchurrockClassical flautistNeeds VoteAkademie Für Alte Musik BerlinKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +2240733Stuart Olsen (2)American saxophonist (Baritone) of the swing eraNeeds VoteSt. OlsonStewart OlsonStu OlsonStuart OlsonGene Krupa And His Orchestra + +2240799Johan Döden DahlrothJohan DahlrothSwedish writer, photographer, producer, publisher. +Started playing punk/hardcore/trash/metal in an early age. +Oberon (later Auberon) amongst other.... + +Played drums in Umeå Hardcore bands Eclipse and Beyond Hate, Abandon and later bass in Drift Apart. +Founder of [l224298]. +Black Weekend +Purple Tapes +Ritualen +and moreNeeds VoteDödenDöden DahlrothDöden, DödenbeatsDödenbeatsDödenbeats, Döden (3)J. DahlrothJohanJohan "Döden" DahlrothJohan DJohan DahlrotJohan DahlrothJohan DalrothJohnJohn D.Johnny "Döden" DahlrothJohnny Death Dahlrothjohan dAbandonAuberonEclipse (22)Drift ApartBeyond Hate + +2241287Albert BrinkhuizenBelgian trombonist.Needs VoteA. BrinkhuyzenAlbert BrinkhuisenAlbert BrinkhuyzenAlbert BrynkhuisenBrinkhuizenBrinkhuizen A.BrinkhuysenBrinkhuyzenBrinkuysenThe RamblersFud Candrix Et Son OrchestreInternational's Dance Orchestra + +2241339Tom ReindersClassical flutist.Needs VoteRadio Kamerorkest + +2241400Sueddeutsche ChorvereinigungNeeds Major ChangesSouth German Choral SocietySüddeutsche Chorvereinigung + +2241401Josef BloserMusic teacher and choir director from Mühlacker, Germany.Needs Vote + +2241492Michael HamannViolinist.Needs VoteBamberger SymphonikerMusica Antiqua Köln + +2241560Olivier ThouinOlivier ThouinViolinist. +Born in Joliette, Québec (Canada). +Needs VoteLes Violons du RoyOrchestre symphonique de MontréalLes Solistes OSM + +2241597Jan ZegalskiPolish music professor, photographer and musician, born in 1932.Needs VotePolish National Radio Symphony Orchestra + +2242146Frank-Ulrich WurlitzerFrank-Ulrich Wurlitzer (born 22 October 1942) is a German classical clarinetist and former Professor of Clarinet at the [l514105]. He was a member of the [a260744] from 1965 to 1981.Needs VoteFrank-Ullrich WurlitzerUlrich WurlitzerBerliner Philharmoniker + +2242149Karl-Heinz Duse-UteschKarl-Heinz Duse-Utesch (30 August 1930 - 29 December 2023) was a German trombonist.Needs VoteBerliner PhilharmonikerRIAS Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleBlechbläser-Ensemble Der Berliner Philharmoniker + +2242150Klaus StollGerman contrabass player. +Born in May 1943, in Rheydt, Germany.Needs Votehttp://www.klausstoll.comClaus StollK. StollProf. Klaus StollStollクラウス・シュトールBerliner PhilharmonikerThe Mullova EnsembleBerliner Barock SolistenDie Deutschen BläsersolistenKontrabaßquartett Der Berliner PhilharmonikerBerliner Solisten (2) + +2242233Heidrun GanzClassical string instrumentalistNeeds VoteHeidrun Ganz-Dittbernerヘイドラン・ガンズDeutsches Symphonie-Orchester BerlinRadio-Symphonie-Orchester BerlinHaydn-Quartett Berlin + +2242952Karine CrocquenoyFrench violinistNeeds Votehttps://karinecrocquenoy.com/Carine CrocquenoyKarine CroquenoyLes Talens LyriquesLe Cercle De L'HarmonieQuatuor CambiniLe Concert de la Loge + +2242953Atsushi SakaïBorn in Japan, Atsushi Sakaï studied the cello in USA and at the Paris Conservatory where he also developed his interest in viol. He annually holds several recitals in Japan and Europe and performs in top-class chamber music ensembles such as Les Talens Lyriques, Le concert d’Astrée and Prager Chamber Philharmonic where he also has had soloist roles. Sakaïs interest in music is versatile and he also plays jazz, modern music and Romantic music with period instruments.Needs Votehttps://www.atsushi-sakai.com/A. SakaïAtsushi SakaiSAKAISakaïLes Talens LyriquesLe Concert D'AstréeL'ArpeggiataConcerto PalatinoLe Poème HarmoniqueLe Cercle De L'HarmonieQuatuor CambiniQuatuor IXISit FastTrio IXILa Chambre ClaireThe Scale Knitters + +2243434Franzmichael FischerViolinist. + +Born in Vienna in 1961.Needs VoteFranz FischerFranz Michael FischerWiener SymphonikerWiener Concert-Verein + +2243436Maximilian DobrovichViolinist. + +Born in 1963 in Wiener Neustadt. Studied from 1980 in the master class of Franz Samohyl at the University of Music and Performing Arts in Vienna. A member of the first violinist of the [a696225] from 1985 to 2025.Needs VoteMax DobrovichMaximilian DubrovichVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinThe Vienna Chamber Ensemble + +2243438Martin LehnfeldAustrian violinist, born 1959 in Vienna, Austria.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +2243492Marc SchachmanClassical oboist and lecturer on music at the Boston University College of Fine Arts.Needs Votehttps://aconyc.org/bio/marc-schachman-oboe/https://www.helicon.org/artists/marc-schachmanhttps://web.archive.org/web/20170224213112/http://www.bu.edu/cfa/profile/marc-schachman/Marc SchachmannМарк ШахманMozzafiatoSmithsonian Chamber OrchestraBoston BaroqueThe Handel & Haydn Society Of BostonThe Bach EnsembleAmadeus WindsThe Aulos EnsembleBoston Early Music Festival OrchestraThe Smithsonian Chamber PlayersCANTATA COLLECTIVE + +2243511David Murray (7)Trombone player and educator, US, member of the National Symphony Orchestra in Washington since 2014Needs Votehttps://www.kennedy-center.org/artists/m/mo-mz/david-murray/National Symphony Orchestra + +2245858Christian SimonpietriFrench photographerNeeds VoteC. SimonpietriCh. SimonpietriCh. SimonpiètriChristian SimonpeitriChristian Simonpietri, SygmaSimonpietriSygma (2) + +2245859Sygma (2)French photography agency, founded in 1973 by Hubert Henrotte. It was bought in June 1999 by the American agency [a=Corbis] and was renamed [a=Corbis Sygma]. Disappeared in 2010. +Photographers whose images have been licensed by Sygma: +[a=Christian Simonpietri] +[a=Eric Robert] +[a=Fabian Cevallos] +[a=Francis Goldstein] +[a=Frédéric Meylan] +[a=Gérard Schachmes] +[a=James Andanson] +[a=Jean-Marie Leroy] +[a=Léonard de Raemy] +[a=Michael Childers] +[a=Moune Jamet] +[a=Philippe Ledru] +[a=Richard Melloul] +[a=Thierry Orban] +[a=Tony Frank]Needs Votehttps://fr.wikipedia.org/wiki/SygmaAgence SygmaAgence Sygma-FranceSYGMASigmaChristian SimonpietriLéonard de RaemyGérard SchachmesRichard MelloulJames AndansonEric RobertFrédéric DeLafosse + +2245977AlamyAlamy (registered as Alamy Limited) is a privately owned stock photography agency launched in 1999. + +For company roles, please use [l=Alamy].Needs Votehttps://www.alamy.com/ART Collection/Alamy Stock PhotoAlamy ImagesAlamy Sock PhotoAlamy Stock FotoAlamy Stock PhotoAlamy Stock PhotosFineArt / Alamy Stock PhotoGoodshoot AlamyStockfolio/Alamy + +2246098Jean-Louis RancurelPhotographer from France.CorrectJ-L RancurelJ. L. RancurelJ.-L. RancurelJ.-L; RancurelJ.L RancurelJ.L. Jean-Louis RancurelJ.L. RancurelJ.L.RancurelJL RancurelJean Louis RancurelJean-Louis Rancurel PhotothèquePhotothèque J.L. RancurelRancurelRancurel PhotothequeRancurel PhotothèqueRancurel PhototèquePhotothèque Rancurel + +2246104Léonard de RaemySwiss photographer (born 19 September 1924 in Belfaux, Switzerland - died 5 March 2000 in Ajaccio, France). He is one of the founders of the photography agencies [a=Gamma (4)] and [a=Sygma (2)].CorrectDe RaemyDeremyL de RaemyL. DE RAEMYL. DE RAEMY /SYGMAL. De RaemyL. De RaenyL. de RaemyL.De RaemyL.de RaemyLeo de RaemyLeonard De RaemyLeonard de RaemyLéo De RaemyLéo de RaemyLéonard De RaemiLéonard De RemyLéonard De RémyLéonard DeraemyLéonard RaemyLéonard de RaemiLéonard de Raemy (SYGMA)Léonard de RaymyLéonard de RaémyLéonard de RemyLéonard de RémyMichel L. de RaemyRagmyGamma (4)Sygma (2) + +2246658Jean-Pierre MascletPhotographerCorrectJean Pierre MacletJean Pierre Masclet + +2248181Michael ChildersPhotographer. He worked for the French agency [a=Sygma (2)].CorrectChildersM. Childers + +2249224Gilles PaquetNeeds Major ChangesG. PaquetGil PaquetGill Paquet + +2249460Linnea NymanSwedish classical violistNeeds VoteSveriges Radios Symfoniorkester + +2249467Ylva MagnussonSwedish classical violinistNeeds VoteSveriges Radios Symfoniorkester + +2249994Gérard SchachmesFrench photographer. After having worked for [a=Sygma (2)], he founded his own agency, Regards. In 2009 he published a photography book about [a=Céline Dion].Needs VoteA. SchachmesB. SchacmesC. SchachmesG SchachmesG. SchachmesG. Schachmes (Sygma)G. SchachmesG. SchachmezG. ShachmesGerard SchachmesGérard SchachnesGérard ShaechmesParimageSchachmesGamma (4)Sygma (2) + +2250503Theodor-Peeter SinkEstonian cellistNeeds VoteSinkTheodor SinkEstonian National Symphony OrchestraTallinn Chamber OrchestraEstonian Festival Orchestra + +2251405Hans HäubleinHans Häublein (29 January 1940 in Schwabach, German Empire - 9 August 2019) was a German cellist.Needs VoteHans HaubleinStaatsorchester StuttgartBamberger SymphonikerBachcollegium StuttgartBadische Staatskapelle + +2251450Manuel Fischer-DieskauGerman cellist. +Born 1963, third son of [a=Dietrich Fischer-Dieskau] and [a=Irmgard Poppen]. Brother of [a6872947] and [a7020661].Needs Votehttp://www.manuelfischer-dieskau.de/Fischer-DieskauDeutsche Radio Philharmonie Saarbrücken KaiserslauternCherubini-QuartettThe Mullova Ensemble + +2252497François GaillardA French photographer.Needs VoteF. GaillardF. Gaillard S.L.C.F.GaillardFrancois GaillardFrançois Gaillard / SalutFrançois GiaillardGaillardJ.-F. Gaillard + +2252684Karl Friedrich Wilhelm HerroseeGerman poet and lyricist, born 31 July 1754 in Berlin, died 8 January 1821 in Züllichau, Germany.Needs Votehttps://adp.library.ucsb.edu/names/111968HerosseeHerroseHerroseeHerrosenHerrosseK. F. HerroseeK. F. HerroseeK. F. W. HerroseeK.F. HerroseeK.F.W. HerroseeKarl F. HerroseeKarl Friedrich HerroseeГеррозееК. ХерозееК.Херозее + +2252773Harry Shapiro (2)US classical hornist.Needs VoteH. ShapiroBoston Symphony OrchestraThe Boston Woodwind Ensemble + +2252809Niklas Andersson (5)Swedish classical clarinetist. + +He studied at the Gothenburg Academy of Music with Sten Pettersson and with Walther Boyekens in Antwerp and in London with John McCaw. + +He is employed as principal clarinetist in the Swedish Radio Symphony Orchestra since 1992 after five years as principal clarinetist in the Trondheim and Helsingborg symphony orchestras. For 15 years he was also a member of the prominent contemporary music ensemble KammarensembleN where he participated in and premiered a large number of works by Swedish and foreign composers. In a chamber music context, he has also played with, among others, the Tale, Lysell, Zetterqvist and Nya Stenhammark Quartets and with the Czech Skampak Quartet. Composers such as Daniel Nelson and Victoria Borisova-Ollas have composed works for him and as a soloist he has appeared with Swedish orchestras at home and abroad in clarinet concertos by Mozart, Copland, Wallin, Nelson, Henze and Nielsen.Needs Votehttps://www.linkedin.com/in/niklas-andersson-744ba383/?originalSubdomain=seSveriges Radios SymfoniorkesterKammarensembleNAmadékvintettenThe Amadé QuintetSvenska Serenadensemblen + +2252810Mats Nilsson (6)Swedish classical percussionistNeeds VoteSveriges Radios SymfoniorkesterKammarensembleNSolna Brass + +2253180Massimo BartolettiItalian trumpeter.Needs VoteM. BartolettiOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Città Aperta + +2253755Nicholas Morris (2)British classical bass vocalist and organistNeeds VoteMorrisThe King's College Choir Of Cambridge + +2253759Thomas HobbsEnglish tenor vocalist, born in Exeter.Needs Votehttp://www.thomashobbs.co.uk/http://www.bach-cantatas.com/Bio/Hobbs-Thomas.htmHobbsCollegium VocaleEx Cathedra Chamber ChoirEnsemble Plus UltraGli Angeli GenèveConsortium (8) + +2254573Thomas TercieuxFrench violinist, founder member of the Quatuor Rosamonde in 1981.CorrectOrchestre Philharmonique De Radio FranceQuatuor PratQuatuor Rosamonde + +2255202Rachel SchmidtClassical violinist. She's a member of the [a=Berliner Philharmoniker] since 1 March 2001.Needs Votehttps://de.wikipedia.org/wiki/Rachel_Schmidt_(Violinistin)Berliner PhilharmonikerScharoun Ensemble Berlin + +2255203Alessandro CapponeAlessandro Cappone is an classical violinist. Son of [a928271]. +He was a member of the [a260744] from 1980 to 2024.Needs VoteAllesandro CapponeBerliner PhilharmonikerScharoun Ensemble BerlinHerzfeld-Quartett + +2255204Aleksandar IvićCroatian violinist.CorrectAleksandar IvicAlexsandar IvićBerliner PhilharmonikerTrio BerlinBerliner Barock Solisten + +2255208Julia GartemannGerman viola player, born in 1975 in Münster, Germany.Needs VoteBerliner PhilharmonikerTrio BerlinBerliner Barock SolistenBundesjugendorchester + +2256331Gilbert MoreauGilbert MoreauPhotographerNeeds VoteG, MroeauG. MoreauG.MoreauG.t MoreauMoreauMoreau Podium© Gilbert Moreau + +2256334Marco BertonaItalian hornistNeeds VoteOrchestra Di Padova E Del VenetoLydian Sound Orchestra + +2256917Carmen LeggioAmerican jazz saxophonist (tenor and alto), born September 30, 1927 in Tarrytown, New York, USA, died April 17, 2009 in New York, USA.Needs VoteC. LeggioCarmen Leggio & His Midnight SaxLeggioWoody Herman And His OrchestraWoody Herman And The Swingin' HerdMaynard Ferguson & His OrchestraCarmen Leggio QuintetBill Crow QuartetCarmen Leggio QuartetThe Carmen Leggio GroupThe Cal Collins QuintetCarmen Leggio SextetThe Jake Hanna Quintet + +2257291Archiv Für Kunst Und GeschichteImage Archive in Berlin, Germany. For the company tag see also [l333145]. + +akg-images ("akg" stands for Archiv für Kunst und Geschichte) is one of the big European picture archives with over 10 million images in its collection. It has been collecting images worldwide for over 70 years, especially in the fields of arts and culture, history and politics, sciences and media.Needs Votewww.akg-images.deA.K.G., GermanyAKGAKG Archiv Für Kunst Und GeschichteAKG BerlinAKG ImagesAKG, BerlinArchiv F. Kunst Und GeschichteArchiv F. Kunst Und Geschichte, BerlinArchiv Für Kunst & Geschichte, BerlinArchiv Für Kunst Und Geschichte BerlinArchiv Für Kunst Und Geschichte, BerlinArchiv Für Kunst Und Geschichte, Berlin, GermanyArchiv Für Kunst Und Geschichte, BerlínArchiv Für Kunst und Geschichte, BerlinArchiv für Kunst Und Geschichte, BerlinArchiv für Kunst und Geschichte, BerlinArchives AKG BerlinArchivo De Artye E Historia, BerlínArchivs Für Kunst Und GeschichteBerlin, Archiv Für Kunst Und GeschichteBildarchiv Für Kunst & GeschichtePhoto Archiv Für Kunst Und Geschichte, Berlinakg-imagesAKG GermanyAKGAKG Berlin + +2257503Nicolas KrügerFrench pianist and conductor, born in 1972. +From 1995 to 2001, he worked with Orchestre de Paris as vocal coach and pianist, and as repetiteur then assistant chorus master with the Orchestre de Paris Chorus. From 2002 to 2007, he was associate chorus master of the chamber choir Accentus. He then won the competition for the position of associate conductor of the BBC Singers. +He now frequently conducts the Orchestre National de Lille and the Orchestre de l'Opéra de Toulon, while also accompanying solo singers, notably his established recital partner, [a2694958].Needs Votehttp://www.nicolas-kruger.comNicolas KrugerBBC SingersOrchestre De ParisChœur De Chambre AccentusChœur De L'Orchestre De Paris + +2257854Wolfgang SallmonGerman double bassist and composer.Needs VoteWolfgang SallmanGürzenich-Orchester Kölner Philharmoniker + +2257891Jan SpencerClassical cello, double bass and violone player.Needs Votehttps://thesixteen.com/team/jan-spencer/The Scholars Baroque EnsembleThe SixteenI FagioliniThe Consort Of Musicke + +2257893Keith MariesClassical hornist.CorrectThe Academy Of Ancient Music + +2257897Rosalind HarrisClassical violinistNeeds VoteThe Consort Of Musicke + +2257900Angela VossGerman Viola, Violin and Viol instrumentalist.Needs VoteThe Consort Of MusickeThe English Fantasy Consort of Viols + +2258311Max StrubGerman violinist born 28 September 1900 in Mainz, Germany and died 23 March 1966 in Bad Oeynhausen, Germany.Needs VoteProf. StrubStaatskapelle DresdenStaatskapelle WeimarStaatskapelle BerlinDas Strub-QuartettElly Ney Trio + +2258359Madeline GreenMadeline Samantha GreeneAmerican jazz singer. Worked with: Earl Hines, Benny Goodman, Lionel Hampton and Erskine Hawkins. +Born: May 30, 1921 (or) 1922 in Saint Matthews, South Carolina. +Died: May 30, 1976 in Cleveland, Ohio.Needs Votehttps://www.uncamarvy.com/MadelineGreene/madelinegreene.htmlMadeleine GreeneMadeline GreeneEarl Hines And His Orchestra + +2258360The Three VarietiesJazz vocal group (male vocal trio).Needs VoteEarl Hines And His Orchestra + +2258466Sophie LarivièreRecorder player and baroque flautist, co-artistic director of [a=Ensemble Caprice].Needs VoteLes Violons du RoyEnsemble CapriceTheatre Of Early Music + +2258485Karl RuchtKarl Magnus RuchtKarl Rucht (10 May 1918 - 27 October 1994) was a German trumpeter and conductor.Needs VoteF. RuchtK. RuchtKarl KuchtRuchtBerliner Philharmoniker + +2259136Maurice MeekMaurice John MeekBritish violist. Died on 17 June 2014 aged 89. +Son-in-law of [a=Marie Goossens].CorrectMarice MeekJohn MeekPhilharmonia OrchestraThe Thames Chamber Orchestra + +2259801Pierre GuyotVisual credits (Layout, Photo, Artwork, ...) on late 70s and 80s French releases.Needs VoteGuyotP. Guyot + +2260166Karl StieglerAustrian hornist and composer, born 26 January 1876 in Vienna, Austria and died 5 June 1932 in Vienna, Austria.CorrectK. StieglerK. StiglerStieglerWiener Philharmoniker + +2261367Clarence KarellaAmerican tubistCorrectClarance KarellaThe Philadelphia OrchestraBilly May And His Orchestra + +2261512Michel DreyfussPhotographer.Needs Votehttp://www.encyclopedisque.fr/artiste/10408.htmlM DreyfussM. DreyfusM. DreyfussMichel DreyfusMichel-Derek Dreyfuss + +2261656Richard MelloulFrench Photographer. Has worked for the French agency [a=Sygma (2)].Needs Votehttp://www.richardmelloul.com/RMELLOUL/Richard_Melloul/Home.htmlMelloulR. MelhoulR. MelloulR. Melloul (Sygma)R. Melloul - SygmaR. Melloul / SygmaR. Melloul-SygmaR.MelloulRichard MeloulSygma (2) + +2261700Lester Young-Buddy Rich TrioUS jazz trio, mainly recorded materials in 1946 (while releases date are from early-mid 1950s), supervised by [a=Norman Granz]. + +[b]Do not confuse with [a446625][/b] (performing in early 40s), which may have the same name on some releases: "[i]Lester Young Trio[/i]", but with a different artists line-up (see members).Needs VoteLester Young & Buddy RichLester Young - Buddy Rich TrioLester Young TrioLester Young – Buddy Rich TrioThe Lester Young - Buddy Rich TrioThe Lester Young Buddy Rich TrioThe Lester Young TrioBuddy RichNat King ColeLester Young + +2261758Valery PonomarevВалерий ПономарёвJazz trumpeter born January 20, 1943 in Moscow, Russia. +He has lived in the United States since 1973 and teaches in Newark, New Jersey.Needs Votehttps://vponomarev.comhttp://en.wikipedia.org/wiki/Valery_PonomarevPonomarevV. PonomarevValeri PanamaryovValeri PonomarevValeric PonomarevValerie PonomarevValerie PonomorenValeriy PonomarevValery PonomarovValery PonomorevВалерий ПономаревArt Blakey & The Jazz MessengersUlulationSuper All StarКвинтет Вадимa СакунаUgetsuPeter Hand Big BandValery Ponomarev Big Band + +2262666Martha SchusterGerman classical harpsichordist, organist, church musician and university lecturer (* 27 March 1948 in Dorn-Dürkheim, Germany).Needs Votehttps://de.wikipedia.org/wiki/Martha_Schusterマルタ・シュースターBachcollegium StuttgartWürttembergisches Kammerorchester + +2262681Günther SchlundSwiss horn player.Needs VoteG. SchlundKammermusik-Ensemble ZürichTonhalle-Orchester Zürich + +2263364Michele BerrinoClassical wind instrumentalistNeeds VoteM. BerrinoOrchestra Del Teatro Alla Scala + +2264354Alan CuckstonAlan George CuckstonBorn July 2, 1940, Horsforth (then West Riding of Yorkshire), West Yorkshire +Died March 24, 2025 +English classical harpsichordist, pianist, and conductor.Needs Votehttps://www.telegraph.co.uk/obituaries/2025/03/28/alan-cuckston-harpischordist-bbc-sound-archives/http://www.harpsichordist.co.uk/http://en.wikipedia.org/wiki/Alan_Cuckstonhttp://www.naxos.com/person/Alan_Cuckston/144.htmhttps://www.imdb.com/name/nm12821387/Allan CuckstonThe Academy Of St. Martin-in-the-FieldsThe RomerosYorkshire Sinfonia + +2266131Antonio LolliAntonio Lolli (ca. 1725 – 1802) was an Italian violinist and composer.Needs Votehttps://en.wikipedia.org/wiki/Antonio_LolliLolli + +2266278Leon ScottJazz trumpeter in ChicagoNeeds VoteEarl Hines And His OrchestraFranz Jackson And His Original Jass All-StarsThe State Street RamblersSammy Stewart's Orchestra + +2266385Mark GigliottiAmerican bassoonistNeeds VoteThe Philadelphia Orchestra + +2266398Marco PostinghelClassical bassoonist.CorrectSymphonie-Orchester Des Bayerischen RundfunksConcerto ItalianoThe Mullova Ensemble + +2266400Emiliano RodolfiClassical woodwind instrumentalistNeeds VoteLe Concert Des nationsLa Petite BandeConcerto ItalianoIl Giardino ArmonicoLa RisonanzaZefiroAccademia Dell'AnnunciataControcorrente (2) + +2266404Rodney PradaCosta Rican born classical string player who specialises in the study of viola da gamba.Needs VoteQuartetto Italiano Di Viole Da GambaConcerto ItalianoEnsemble ElymaL'ArpeggiataIl Giardino ArmonicoI BarocchistiIl GardellinoIl Suonar ParlanteLa VenexianaL'Aura Soave CremonaEnsemble La FeniceEnsemble 1700Accademia Del PiacereL'EstravaganteEnsemble Arte-MusicaHolland Baroque SocietyInaltoDelitiæ MusicaeRetablo BaroccoL'AmorosoIl Concerto Delle VioleOpera Prima (5)Compagnia De Musici + +2266650Patrick SoubiranPhotographerNeeds VoteP. SoubiranPatrick Soubiran "Salut"Soubiran + +2266766Jim Falzone (2)Jazz drummer.Needs VoteJimmy FalzoneStan Kenton And His Orchestra + +2267391Markku SöderströmNeeds Major Changes + +2267403Vuokko LehmustoNeeds Major ChangesLehmusto + +2267668Elena PozhidaevaRussian contralto/mezzo-sopranoNeeds VoteChoeur de Chambre de NamurDe Nederlandse BachverenigingVocalconsort Berlin + +2267671Joshua CheathamClassical string instrumentalistNeeds Votehttps://www.piccolaaccademia.org/josh-cheatham/J. CheathamJosh CheathamJoshua CheatamMusica Ad RhenumDe Nederlandse BachverenigingCantus CöllnCapriccio StravaganteNew Dutch AcademyPygmalionVox LuminisConcerto CopenhagenMusicall HumorsSit FastI Gemelli (2)Jupiter (55)Neighbor (5)La Violetta + +2267673Doretthe JanssensClassical Traverso FlautistNeeds VoteDe Nederlandse BachverenigingCamerata TrajectinaTafelmusik Baroque OrchestraNetherlands Bach Collegium + +2267674Wanda VisserDutch classical viola and violin player.Needs VoteWanda ViserCappella Musicale Di S. Petronio Di BolognaAnima EternaConcerto KölnLes Musiciens Du LouvreDe Nederlandse BachverenigingCantus CöllnTafelmusik Baroque Orchestra + +2267675Anneke van HaaftenClassical violinist.Needs VoteMusica Ad RhenumDe Nederlandse Bachvereniging + +2267676Philippe FavetteBelgian classical bass vocalistNeeds VoteChoeur de Chambre de NamurPsallentesEnsemble Clematis + +2267677Annabelle FerdinandDutch classical violinist.Needs VoteAnnabel FerdinandMusica Ad RhenumDe Nederlandse BachverenigingCaecilia Concert + +2267678Lidewij van der VoortDutch classical violinistNeeds VoteAnima EternaLes Musiciens Du LouvreDe Nederlandse BachverenigingNew Dutch AcademyCapriola Di GioiaHolland Baroque SocietyBachPlus + +2267680Diego NadraClassical oboistNeeds VoteMusica Antiqua KölnDe Nederlandse BachverenigingOrchestra Of The 18th CenturySwiss Baroque SoloistsOrchester Der J.S. Bach StiftungOrchestre De L'Opéra Royal + +2267682Oeds van MiddelkoopClassical Traverso FlautistNeeds VoteAnima EternaDe Nederlandse BachverenigingNetherlands Bach Collegium + +2267684Dorothea JakobGerman soprano.Needs Votehttps://www.bach-cantatas.com/Bio/Jakob-Dorothea.htmDorothea JacobCappella AmsterdamSchola HeidelbergLe Miroir De Musique + +2267858Maury BeesonNeeds VoteMaurice BeesonMovey BeesonStan Kenton And His Orchestra + +2268207Jacques BarbignantJacques Berbingant Jacques Berbingant (fl.1445-1460) was a French composer. Until 1960, he was widely confused with the later composer Jacobus Barbireau, partly because there is no known documentation for anybody named Barbingant.Needs Votehttp://papalin.yas.mu/W081/BarbignantBarbingantJacques Barbigant + +2268409Stan Getz OrchestraNeeds Major ChangesStan Getz Et Son OrchestreStan Getz OrchStan Getz + +2268412Stan Getz BoppersNeeds Major ChangesNew Sound Stars + +2268488Susan DoreyCellist.Needs VoteDoreySue DoreyCity Of London SinfoniaTrio ZingaraThe London Cello SoundAmbache Chamber Ensemble + +2268525Ross BuddieScottish Tenor Ross Buddie was born in Edinburgh and studied at the Royal Academy of Music in London.Needs VoteCappella Amsterdam + +2269596Justyna JaraClassical violinistNeeds VoteGöteborgs Symfoniker + +2270072Charles Harris (4)An alto and tenor saxophonist as well as trombonist.Needs Vote? HarrisHarrisLovie Austin's Blues SerenadersMillard Thomas & His Chicago Novelty Orchestra + +2270074George WaltersClarinetist and trumpeterNeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/210739/Walters_GeorgeBarbecue Joe And His Hot Dogs + +2270338Tom SlaneyTrumpet PlayerCorrectStan Kenton And His OrchestraMaynard Ferguson And His Original Dreamband + +2270571Anthony Martin (6)Classical violinist and viola player.Needs VoteA. MartinA.MartinBoston CamerataChanticleer SinfoniaPhilharmonia Baroque OrchestraOrchestra Of The 18th CenturySmithsonian Chamber OrchestraThe Bach EnsembleAston MagnaThe Artaria QuartetBoston Early Music Festival OrchestraArchetti Baroque String EnsembleCANTATA COLLECTIVE + +2270801Naja HelmerViola player from Denmark.Needs VoteGöteborgs SymfonikerDet Kongelige Kapel + +2271488Raymond MaseAmerican classical Trumpet & Cornett playerNeeds VoteRay MaseRay maseRaymound MaseSpeculum MusicaeOrpheus Chamber OrchestraSummit BrassNew York City Ballet OrchestraThe Bach EnsembleAmerican Brass QuintetThe American Brass Quintet Brass BandThe New York Cornet & Sacbut Ensemble + +2271490John Cooper (6)John CooperEnglish composer, lutenist and violist performer to the royal court of England (born c. 1570, died 1626). He changed his name for Giovanni Coprario or Coperario to give an Italian touch popular in the 17th century. +CorrectCooperCoperarioCoperario (John Cooper)CoprarioDr. CooperGiovani CoperarioGiovanni CaprorioGiovanni CoperarioGiovanni CoprarioJ. CoperarioJ. Coperario ?J. CoprarioJ. CorprarioJohan CoperarioJohn Cooper [Giovanni Coperario]John Cooper dit Giovanni CoprarioJohn CoperarioJohn Coperario (Cooper)John CoprarioJohn Coprario (alias Cooper)John Corprario + +2271895Timothy HutchinsCanadian classical flute player.Needs Votehttps://en.wikipedia.org/wiki/Timothy_HutchinsTimothy HutchinsonOrchestre symphonique de MontréalMontreal Chamber Players + +2272372Gewandhaus-Quartett LeipzigGewandhaus-QuartettFounded in 1808, the Gewandhaus-Quartett is one of the oldest German string quartets. It is formed by members of the [a522210] and has had more than 200 members so far.Needs Votehttp://www.gewandhausquartett.comCuarteto del Gewandhaus de LeipzigDas Gewandhaus-QuartettDas Gewandhaus-Quartett, LeipzigGewandhaus QuartetGewandhaus QuartettGewandhaus String QuartetGewandhaus-QuartetGewandhaus-QuartettGewandhaus-Streichquartett, LeipzigGewandhausquartett LeipzigMitglieder Des Gewandhaus-QuartettMitglieder Des Gewandhaus-QuartettsThe Leipzig String QuartetГевандхауз-КвартетKurt StiehlerGeorg WilleFriedemann ErbenDietmar HallmannGerhard BosseVolker MetzJürnjakob TimmFritz HändschkeKarl SuskeVincent AucanteAlwin BauerGünter GlassJulius KlengelHans Münch-HollandFranz GenzelMax KalkiConrad SuskeFrank-Michael ErbenLuke TurrellOlaf HallmannGiorgio KröhnerEdgar WollgandtKarl WolschkeCarl HerrmannAnton JivaevHorst SannemüllerValentino WorlitzschLeonard Frey MaibachYun-Jin ChoGewandhausorchester Leipzig + +2272590Anna Magdalena Den HerderViola playerNeeds Votehttp://www.annadenherder.nl/Anna Den HerderAnna den HerderNetherlands Chamber OrchestraAmsterdam SinfoniettaNederlands Jeugd Strijkorkest + +2272597Marije PloemacherClassical violinist.Needs VoteMarje PloemacherMarije JohnstonEnglish Chamber OrchestraNavarra String Quartet + +2272600Joris Van Den Berg (2)Classical cellistNeeds Votehttps://www.jorisvandenberg.comConcertgebouworkestNederlands Jeugd StrijkorkestLudwig Orchestra + +2272602Babette Van Den BergClassical violinistNeeds VoteRotterdams Philharmonisch OrkestNederlands Jeugd Strijkorkest + +2272605Michael WatermanDutch violinist, born in 1984. He's the grandchild of [a3970885].Needs Votehttps://www.concertgebouworkest.nl/en/orchestra/musicians/michael-waterman/MIchael WatermanConcertgebouworkestConcertgebouw Chamber OrchestraNederlands Jeugd Strijkorkest + +2272611Joost KeizerViola playerNeeds VoteJoost KeizerStaatskapelle BerlinNederlands Jeugd StrijkorkestEnsemble Caméléon + +2272660Otis KlöberClassical bassoonistNeeds VoteThe Czech Philharmonic OrchestraBläsersolisten Der Deutschen Kammerphilharmonie BremenValerius EnsembleSyrinx Ensemble + +2272661Mihoko Fujimura藤村実穂子Japanese operatic mezzo-soprano vocalist, Needs Votehttp://www.mihokofujimura.com/Fujimura藤村美穂子 + +2272936Anne Marie KjærulffDanish violinist.Needs VoteAnne-Marie KjærulfAnne-Marie KjærulffKøbenhavns Yngre StrygereDR SymfoniOrkestret + +2272977Bill MilesU.S. traditional jazz baritone saxophonist.Needs VoteWild Bill Davison And His Commodores + +2272978Joe GrausoJazz drummer, born 1897 in New York City, died June 11, 1952 in the same city. +Professional musician from 1914. Formed own Happy Five Melody Boys in 1918 for year's residency at Arcadia Cabaret in Brooklyn, then worked for many years as percussionist in vaudeville theatres. Joined [a=Art Hodes] in 1941, own band for two years at club in Forest Hills. Worked at Nick's in New York from 1944, recorded with [a=Miff Mole], [a=Eddie Condon] and others, regularly with [a=Muggsy Spanier] until 1945. In [a=Billy Butterfield]'s band in 1948.Needs VoteJoe CarusoJoe GrassoJoe GraucoJoe GraussoMuggsy Spanier And His RagtimersMiff Mole And His Nicksieland BandPee Wee Russell RhythmakersPee Wee Russell Jazz Ensemble + +2272980Teddy RoyTheodore Gerald Roy.American jazz pianist. + +Born : April 09, 1905 in Du Quoin, Illinois. +Died : August 31, 1966 in New York City, New York. + +Teddy played with : "Coon-Sanders Original Nighthawk Orchestra", Jean Goldkette, Frankie Trumbauer, Bobby Hackett, Pee Wee Russell, Max Kaminsky, "Original Dixieland Jazz Band" (new version), Eddie Edwards, Wild Bill Davison and from 1946 as a freenlance musician in New York City and Long Island.Needs VoteOriginal Dixieland Jazz Band + +2273754Augusto GiardinoNeeds VoteA. GiardinoI Cantori Moderni di AlessandroniI Vocalisti Di Roma + +2273755Renzo AndreiniNeeds VoteR. AndreiniRenzoI Cantori Moderni di AlessandroniClan Alleluia + +2273756Fiorella GranaldiItalian singer.Needs VoteI Cantori Moderni di Alessandroni + +2273829Emil MłynarskiEmil Szymon MłynarskiBorn July 18, 1870 in [url=https://pl.wikipedia.org/wiki/Kibarty]Kibarty[/url], died April 5, 1935 in Warszawa. Polish violinist, composer, conductor and pedagogue. +He was co-founder of the Warsaw Philharmonic Orchestra and subsequently served as principal conductor of the Scottish Orchestra in Glasgow from 1910 to 1916. He conducted the premiere of Karol Szymanowski's opera King Roger. + +He composed, among other things, a symphony dedicated to his homeland (Symphony in F major, Op. 14, Polonia), and two violin concertos (1897, 1917). The latter concerto, in D major, Op. 16, has been recorded by Konstanty Kulka and Nigel Kennedy.Needs Votehttp://pl.wikipedia.org/wiki/Emil_M%C5%82ynarskihttps://adp.library.ucsb.edu/names/332040E. MlynarskiE. MłynarskiF. MłynarskiMlynarskiMłynarskiМлынарскiйЭ. МлынарскийOrkiestra Symfoniczna Filharmonii Narodowej + +2273882Nick White (4)Photographer.CorrectCollins Classics / Nick White + +2273942Hein WiedijkDutch clarinetist.Needs VoteConcertgebouworkestConcertgebouw Chamber OrchestraEbony BandOrkest Amsterdam DramaTrio Dante + +2273949Eduard WeslyClassical oboistNeeds VoteEdouard WesleyEdouard WeslyEduard WesleyThe English Baroque SoloistsWeser-RenaissanceNetherlands Bach CollegiumOrkest Amsterdam DramaCalefax Reed QuintetAl Ayre EspañolBergen BarokkLeipziger BarockorchesterLes FavoritesGrundmann-QuartettWrocławska Orkiestra Barokowa + +2273951Marie-Pierre ChavarocheFrench harpist and pianist.CorrectOrchestre De ParisOrkest Amsterdam Drama + +2274934Peter SeagoBritish saxophonist and clarinetist.Needs VotePhilharmonia OrchestraDelta Saxophone Quartet + +2274936Ian BousfieldIan Leslie BousfieldBritish trombonist, Professor of Trombone, conductor, orchestral coach, commentator, and podcaster. Born 16 February 1964 in York, England, UK. +Former Principal Trombone of [a=The National Youth Brass Band Of Great Britain] (at age 13), and the [a=Yorkshire Imperial Band] (for 4 years). He studied for 6 months at the [l305416] before he was appointed Principal Trombone at the [a=Hallé Orchestra] in March 1983, the [a=London Symphony Orchestra] (1988-09/2001), and the [a=Wiener Philharmoniker] (09/2001-09/2012). He has conducted the [a=Oslo Filharmoniske Orkester], [a4065882], [a5597960], Copenhagen Opera, Sonderborg Symphony, [a2020903], [a2742245] and the [a=New World Symphony Orchestra]. Professor of Trombone at the [l527847] (since 1992) and the [l479039] (since 2011). International Fellow of Brass at the [l516659].Needs Votehttps://www.ianbousfield.com/https://www.facebook.com/ian.bousfield.7https://x.com/ianbousfieldhttps://www.instagram.com/ianbousfieldofficial/https://www.linkedin.com/in/ian-bousfield-bb8b69193/https://www.youtube.com/channel/UC2OsD2LTrQp0pBMxMiz26MAhttps://en.wikipedia.org/wiki/Ian_Bousfieldhttps://www.rcs.ac.uk/staff/ian-bousfield/https://www.kesselblech.com/ian-bousfieldhttps://www.tobs.ch/fr/tobs/team/portrait/pers/732/Ian BousefieldLondon Symphony OrchestraHallé OrchestraWiener PhilharmonikerEuropean Union Youth OrchestraJohn Harle BandThe National Youth Brass Band Of Great BritainSixteen Trombones Of Seven London OrchestrasYorkshire Imperial BandAries Trombone Quartet + +2276911Marcello ScandelliItalian classical cellist.Needs VoteM. ScandelliIl Giardino ArmonicoLa Magnifica ComunitàL'Aura Soave CremonaCappella GabettaEnsemble Il FalconeAccademia Dell'AnnunciataArchipelago (8)La Follia BaroccaString Trio Il Furibondo + +2277280Ray Brown (12)Raymond Harry Brown[b]Not to be confused with Los Angeles session trumpet/flugelhorn player [a=Ray Brown (2)][/b]. + +American jazz trumpeter, arranger, composer, bandleader and teacher born November 7, 1946 in Oceanside, New York. Ray Brown earned his trumpet chops touring with the [a=Stan Kenton Orchestra]. Based in Northern California since 1975, he has played with or arranged for a variety of groups, including bands fronted by [a=Bill Watrous], [a=Frank Capp] & [a=Nat Pierce], [a=Bill Berry And The LA Band] and the [a=Full Faith & Credit Big Band], which he also conducted and wrote most of the music for three projects. His Great Big Band debuted in 1994 with "Impressions of Point Lobos", a written and executed recording of contemporary big band jazz. The band performed for 27 years, playing its final show in late 2016. + +For over the past 40 years, Brown has also been an educator, composer, and jazz instructor at Cabrillo College in Aptos and at UC-Santa Cruz. + +In 1999, Brown teamed up with his wife, [a=Sue Brown (2)], also a music educator at Cabrillo College and a classical violinist, to work with trumpeter [a=Roy Hargrove] on a project titled "Hargrove with Strings". Sue Brown, concertmaster of the Monterey Jazz Festival's chamber orchestra, led the ensemble backing Hargrove while husband Ray conducted the recording sessions. +Needs Votehttp://www.metroactive.com/papers/metro/08.10.00/cover/jazz5-0032.htmlhttps://kcsm.org/jazzprograms/desertislandcastaways.php?gid=418http://en.wikipedia.org/wiki/Raymond_Harry_Brownhttps://www.ascap.com/repertory#ace/writer/75650857/BROWN%20RAYMOND%20HBrownR. BrownRaymond BrownStan Kenton And His OrchestraFull Faith & Credit Big BandThe Frank Wess - Harry Edison Orchestra + +2277708Harry BicketBritish conductor, harpsichordist and organist, born 1961 in Liverpool. +He has been Artistic Director of [a4713045] since 2007, and Chief Conductor of [a6662817] since October 2013.Needs Votehttps://www.askonasholt.com/artists/harry-bickethttps://en.wikipedia.org/wiki/Harry_Bickethttps://www.bach-cantatas.com/Bio/Bicket-Harry.htmHarry Bickettハリー・ピケットThe English ConcertThe Santa Fe Opera + +2277732Markus WerbaAustrian classical bass / baritone vocalist.Needs Votehttp://markuswerba.blogspot.com/https://en.wikipedia.org/wiki/Markus_Werbahttps://www.bach-cantatas.com/Bio/Werba-Markus.htmWerba + +2278183Johannes CornagoJuan Cornago (Johannes Cornago) (c. 1400 – after 1475) was a Spanish composer in the transition from Ars nova to the Renaissance.Correcthttp://en.wikipedia.org/wiki/Juan_CornagoCornagoJ. CornagoJoan CornagoJuan Cornago + +2278333Martin WalchAustrian classical violinistNeeds VoteThe Chamber Orchestra Of EuropeMerlin Ensemble + +2278560Evan KuhlmannAmerican bassoonistNeeds VoteEven KuhlmannLos Angeles Philharmonic OrchestraOregon Symphony OrchestraThe Bassoon Brothers + +2278892Members Of The City Of Birmingham Symphony OrchestraNeeds Major Changes + +2279498Michael CharryAmerican classical keyboardist and conductor, born in New York, New York. He was a member of the conducting staff of the Cleveland Orchestra for nine years under [a=George Szell] and for two years after Szell’s death.Needs VoteThe Cleveland Orchestra + +2279977Ulf BorgwardtClassical cellist.Needs VoteUlf BorgwartBerliner SymphonikerCellomania + +2280181James Wilson (14)American cellist.Needs VoteShanghai QuartetOrpheus Chamber OrchestraThe Saint Paul Chamber Orchestra + +2280836Daniela DessìDaniela Dessì (born May 14, 1957, Genoa, Italy - died August 21, 2016, Brescia, Lombardy, Italy) was an Italian operatic lirico-spinto soprano & mezzo-soprano vocalist.Needs Votehttp://www.danieladessi.com/https://en.wikipedia.org/wiki/Daniela_Dess%C3%ACD. DessíDaniela DessiDaniela DessyDaniela Dessy CerianiDaniela DessíDessyDessì + +2281098Helge BriliothHelge Ansgar Åke BriliothSwedish operatic tenor, born 7 May 1931 in Växjö, Sweden and died 26 December 1998 in Stockholm, Sweden.Needs Votehttps://sv.wikipedia.org/wiki/Helge_BriliothBriliothHelge BrilliothХельге Бриллиот + +2281170Peter SchulmeisterGerman violinist, born in 1977.CorrectOrchestra Of The Royal Opera House, Covent Garden + +2281310Peter SimenauerAmerican clarinetist, born in Berlin, Germany and died 13 September 2013 in Naples, Florida. +Simenauer was active for the New York Philharmonic from 1960 to 1998.Needs VoteNew York PhilharmonicIsrael Philharmonic OrchestraQuatuor Pascal + +2281311Susan HeinemanAmerican bassoonist.Needs VoteSue HeinemanSue HeinemenNew Zealand Symphony OrchestraNational Symphony OrchestraContinuum (4) + +2281877Vincent de KortConductor, violist and cellist.Needs Votehttp://www.vincentdekort.com/Les Arts Florissants + +2281878Christiane Lagny-DetrezClassical soprano.CorrectChristiane LagnyLes Arts Florissants + +2281879Alain GolvenBass vocalist.Needs VoteLes Arts FlorissantsQuatuor Vocal Ad Libitum + +2281881David BowesClassical viola player.CorrectLes Arts Florissants + +2281882Michel PonsClassical viola player.CorrectLes Arts Florissants + +2281883Isabelle VillevieilleClassical percussionist.Needs VoteIsabelle Gascuel-VillevieilleLes Arts FlorissantsEnsemble Stradivaria + +2281884Anne Crabbe-PulciniClassical soprano.CorrectAnne CrabbeLes Arts Florissants + +2281885Cathy MissikaClassical soprano.CorrectLes Arts Florissants + +2281886Olivier GalClassical tenor.Needs VoteLes Arts FlorissantsLes Cris de Paris + +2281887Daniel Spector (2)Classical violinist.Needs VoteLes Arts FlorissantsHuelgas-Ensemble + +2281889Frédéric LairCountertenor.Needs VoteLes Arts FlorissantsIndigo (34)Compagnie Nonna Sima + +2281890Peter PietersBelgian classical guitarist (1951-1999).Needs Vote't KliekskeLes Arts Florissants + +2281891Edouard AudouyCountertenor.CorrectLes Arts Florissants + +2281892Pierre-Yvan GalBass vocalist.CorrectP.-Y. GalLes Arts Florissants + +2281894Masao Takeda (2)Classical tenor.CorrectLes Arts Florissants + +2281895Daniel BonnardotBass vocalist.CorrectLes Arts Florissants + +2281897Christophe MazeaudFrench classical oboist.Needs VoteLes Arts FlorissantsLa Grande Ecurié Et La Chambre Du Roy + +2281898Frédéric Marie (2)Countertenor.CorrectLes Arts Florissants + +2281899Philippe Choquet (2)Bass vocalist.CorrectLes Arts Florissants + +2281900Michèle TellierRecorder player.CorrectMichelle TellierLes Arts Florissants + +2282267Cyril AuvityFrench alto and tenor vocalist +Graduated in Physics at Lille’s University, Cyril Auvity completes his musical studies at the conservatory in Lille in 1999, and won the International singing contest in Clermont Ferrand the same year.Needs Votehttp://www.allegorica.it/cyril-auvity/https://www.facebook.com/cyrilauvityAuvityLes Arts FlorissantsL'ArpeggiataLe Poème HarmoniqueAkadêmialaBaroccaEnsemble DesmarestEnsemble L'Yriade + +2282270Wolfgang KonradRecording supervisor and violinist.CorrectBamberger Symphoniker + +2282407Joe MegroUS Jazz saxophonist of the Swing EraNeeds Votehttps://www.allmusic.com/artist/joe-megro-mn0001191391Joe MagroThe Glenn Miller OrchestraGene Krupa And His OrchestraStan Kenton And His OrchestraBoyd Raeburn And His OrchestraPete Rugolo OrchestraGeorgie Auld And His Orchestra + +2283520Arnaud RaffarinFrench Countertenor & Alto vocalist.Needs VoteLe Concert SpirituelChoeur de Chambre de NamurLes Chantres Du Centre De Musique Baroque De Versailles + +2283521Dominique BonnetainClassical tenor.Needs VoteChoeur de Chambre de NamurLes Chantres Du Centre De Musique Baroque De Versailles + +2283522Laurent Le ChenadecClassical bassoonist.Needs VoteLaurent LechenadecLe ChenadecLe Concert SpirituelCafé ZimmermannLes Sacqueboutiers De ToulouseEnsemble Vocal SagittariusIl GardellinoAmarillisEnsemble Jean-Walter Audoli + +2283523Etienne MangotFrench classical cello and viol player. Founder of the ensemble Filigrane in 2008.Needs VoteÉtienne MangotLa Simphonie Du MaraisCafé ZimmermannMusica Antiqua ProvenceLes PassionsLes Traversées BaroquesThe Arianna Ensemble + +2283525Pedro Martin GandiaClassical violinist.CorrectPedro GandiaPedro GandíaPedro Gandía MartínLes Musiciens Du LouvreCafé Zimmermann + +2284601Jimmy PupaJames Pupa Jr.Born into a Pittsburgh, PA family of well-known professional musicians, he was a top-notch jazz musician who played First-Trumpet for all the major bandleaders including [a269594], [a430829], [a229639], and [a254768] during the Big Band era. He passed away in October 2007.Needs VoteJames PupaJim PupaArtie Shaw And His OrchestraCharlie Barnet And His OrchestraBuddy DeFranco And His Orchestra + +2284602Sam HysterSammy HysterAmerican jazz trombonist.Needs VoteTommy Dorsey And His OrchestraBuddy Rich And His OrchestraThe Dorsey Brothers Orchestra + +2284609Tommy AllisonAmerican Jazz trumpeter.Needs VoteT. D. AllisonThomas Parker AllisonBoyd Raeburn And His Orchestra + +2284637Germain PrévostAmerican classical violist and violinist, born 23 August 1891 in Belgium and died in May 1987 in the United States.Needs Votehttps://adp.library.ucsb.edu/names/110112Germain PrevostPrevostPrévostSan Francisco SymphonyPro Arte Quartet + +2284751Donald MolineAmerican classical cellist.Needs Votehttp://www.donaldmoline.com/Don MolineChicago Symphony OrchestraChicago Pro Musica + +2285322Geneviève GilardeauCanadian violinist +Geneviève Gilardeau has been a core member of Tafelmusik since 1999. She has been featured as a soloist several times with the group, in recordings of concertos by Vivaldi and Leclair, and in concert playing concertos by Bach and Telemann. She was introduced to baroque performance practice by the violinist and conductor Jean-François Rivest, at the Conservatoire de Musique du Québec à Chicoutimi and at the Université de Montréal, where she obtained her Master's degree. A core member of Les Violons du Roy from 1995 to 1998, she commuted during those years from Quebec City to Toronto in order to study baroque violin with Jeanne Lamon at the Glenn Gould School of the Royal Conservatory. Geneviève also performs with several groups in Toronto (Aradia, Toronto Consort, Classical Consort) and in Montreal (Masques, Les voix humaines). With her husband, lutenist Lucas Harris, she released the CD The Bach-Weiss Sonata. She is the proud mother of eight-year-old Daphnée Gilardeau Harris.Needs VoteLes Violons du RoyTafelmusik Baroque OrchestraAradia EnsembleLe Nouvel Opéra + +2285627Hans LiviabellaItalian classical violinist and orchestra leader, born in Torino.Needs Votehttps://www.orchestradellasvizzeraitaliana.ch/en/osi/musicians/detail/id/4011/hans-liviabellaThe Chamber Orchestra Of EuropeOrchestra Della Radio Televisione Della Svizzera ItalianaQuartetto Energie Nove + +2286125Hubert NettingerGerman classical vocalist, born in 1969 in Landshut, Germany.Needs Votehttp://www.hubert-nettinger.de/Regensburger DomspatzenSächsisches Vocalensemble + +2286786Claudio PettanniceNeeds VoteC. PettanniceC. PettanninceC. PettinanceClaudio PetaniceClaudio PettinanceDJ GiottoDJ EmergencyS.H.O.K.K.Sound Of OverdoseWoodshokk32 °FSpaceshokkers + +2287042Jean-Marc PerrouaultClassical hornistNeeds VoteOrchestre Philharmonique De Strasbourg + +2287054Andriy BurkoClassical viola playerNeeds VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +2288031Sami HokkanenNeeds Major ChangesSami "Kärppä" Hokkanen + +2288056William ShislerAmerican violinist, percussionist, photographer and librarian. He was the librarian for the [a395913] from 1957 to 2014 and was married to [a2927980].Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2288416Krystian AdamClassical tenor vocalistNeeds Votehttp://krystianadam.comAdamKrystian Adam KrzeszkowiakKrystian Adam KrzeszowiakKrystian Adam KrzeszkowiakThe Monteverdi Choir + +2288664Christoph HellmannGerman cellist.CorrectBayerisches Staatsorchester + +2288731Hannes PeerAustrian trumpet player.CorrectH. PeerBruckner Orchestra LinzPro Brass + +2290132Walter HilgersGerman tuba player and conductor, born 1959 in Stolberg, Germany.Needs Votehttp://www.walterhilgers.de/Prof. Walter HilgersOrchester der Bayreuther FestspieleBundesjugendorchesterGerman BrassDüsseldorfer SymphonikerHamburger BlechbläsersolistenLäubin Brass Ensemble + +2290385Adolfo StrappoItalian hornistNeeds VoteA. StrappoStrappo AdolfoOrchestra Del Teatro Alla Scala + +2290392Guy BesnardFrench classical cellist, born 26 December 1942 in Paris.Needs VoteOrchestre De ParisOrchestre De Chambre Jean-François PaillardTrio EuterpeQuatuor De ParisTrio Brigitte Haudebourg + +2291183Angelo PersichilliItalian classical flautist. +Angelo Persichilli (Castellino del Biferno, February 15, 1939 - Roma, January 15, 2017) was an Italian flutist.Needs VoteAngelo PersichelliPersichilliOttetto ItalianoEnsemble Boccherini + +2291890Knife PartyKnife Party is an Australian Electro House/Dubstep duo founded by two members of [url=http://www.discogs.com/artist/Pendulum+%283%29]Pendulum[/url]: Rob Swire and Gareth McGrillen.Needs Votehttp://www.knifeparty.comhttp://www.facebook.com/knifepartyhttp://twitter.com/knifepartyinchttps://www.instagram.com/knifepartyinc/https://whatgear.com/pro/knife-partyhttp://soundcloud.com/knifepartyinchttp://www.youtube.com/knifepartyinchttp://equipboard.com/knife_partyhttps://music.apple.com/gb/artist/knife-party/440719207https://www.beatport.com/artist/knife-party/198642http://www.last.fm/music/Knife+Partyhttp://www.amazon.com/Knife-Party/e/B00BY6X6GEhttps://www.billboard.com/artist/305992/knife-partyRob SwireGareth McGrillen + +2292183James AndansonJean-Paul Christian AndansonFrench photographer very known for being photographer of music and movie star during 30 years (70's to 2000). He was one of the founder of the Famous SYGMA agency. In the 90's, one of the greatest "paparazzi" in the world. +Born March 30, 1946 in Clermont-Ferrand, France. +Died May 4, 2000 in Nant, France.Needs Votehttps://fr.wikipedia.org/wiki/James_AndansonAndansonAndanzonJ. AndansonJ. AudansonJames AndanssonJames AndanzonSygma (2) + +2293047Martin SonneveldClassical viola player.Needs VoteM. J. SonneveldMartin SonnefeldThe Academy Of Ancient MusicLa Grande Ecurié Et La Chambre Du RoyLa Petite Bande + +2293048Michel LecoqClassical tenor.CorrectLa Petite Bande + +2293049Dorothea JungmannClassical soprano.Needs VoteDorle JungmannLa Petite BandeKölner Vocal-consort + +2293052Norbert LohmannClassical tenor.CorrectLa Petite Bande + +2293054Franz Müller-HeuserGerman classical bass/baritone vocalist and educator, 1932 to 2010. + +Since 1963 he was professor at the Hochschule für Musik Köln, in 1976 he became director of that institution, a position he held until 1997. From 1988 to 2003 he also was president of the Deutscher Musikrat. +Needs VoteDr. Franz Müller-HeuserFranz MüllerProfessor Dr. Franz Müller-HeuserLa Petite BandeKölner Vocal-consort + +2293056Klaus HeiderClassical tenor and composer, died in 2014.Needs VoteLa Petite BandeOdhecatonKölner Vocal-consort + +2293426Edmond Hall's All Star QuintetNeeds Votehttps://en.wikipedia.org/wiki/Edmond_Hall#With_Louis_ArmstrongEdmond Hall & His All Star QuintetEdmond Hall QuintetJohnny WilliamsTeddy WilsonRed NorvoEdmond Hall + +2293583Michel SassonConductor and violinist, born 18 May 1935 in Alexandria, Egypt and died 26 March 2013 in Boston, Massachusetts. He was married to [a114116] (divorced).CorrectBoston Symphony Orchestra + +2294448Régis ChenutClassical harpistCorrectHespèrion XX + +2295435Bill Harris And His OrchestraNeeds Major ChangesBill Harris E Sua OrquestraBill Harris Und Sein OrchesterBill Harris' OrchestraBill HarrisLou Stein + +2295632Frank Marshall (2)Jazz drummerNeeds VoteEric Winstone & His OrchestraEddie Condon And His All-StarsPete Winslow And The King Size Brass + +2295910Giulio D'AlessioViolin & Viola instrumentalistNeeds VoteLa Petite BandeIl Complesso BaroccoIl Pomo d'Oro + +2296081Monika FischalekMonika FischaleckClassical wind instrumentalistNeeds VoteMoni FischalekMonica FischalekTheatre Of VoicesConcerto CopenhagenBoston Early Music Festival OrchestraCapricornus Ensemble StuttgartLe Concert BriséLes Traversées BaroquesInstrumenta MusicaEnsemble Schirokko HamburgCapella Augusta Guelferbytana + +2296082Henrieke GoschClassical violin & viola playerNeeds VoteBoston Early Music Festival Orchestra + +2296086Nils JönssonSwedish classical oboe playerNeeds VoteBoston Early Music Festival OrchestraToutes Suites + +2296089Mary RiccardiClassical violinist ans liner notes translator Needs VoteL'Aura Soave CremonaBoston Early Music Festival OrchestraCompagnia De Musici + +2296090Jörg JacobiGerman harpsichordist & liner notes authorNeeds VoteWeser-RenaissanceElbipolis Barockorchester HamburgDeutsche Kammerphilharmonie BremenAtalanteHimlische Cantorey + +2296091Bodo LönartzClassical violin & viola playerNeeds VoteBodo LonartzHandel's CompanyJohann Rosenmüller EnsembleBoston Early Music Festival Orchestra + +2296092Han TolClassical recorder playerNeeds VoteThe Parley Of InstrumentsFreiburger BarockorchesterFlanders Recorder QuartetLa Fontegara AmsterdamBoston Early Music Festival OrchestraLa Dada Amsterdam + +2296095Saskia FikentscherGerman classical wind instrumentalistNeeds VoteMusica Antiqua KölnFreiburger BarockorchesterNova StravaganzaSüdwestdeutsche BarocksolistenBoston Early Music Festival OrchestraBarockorchester L'ArcoCapella Hilaria + +2296096Corinna Hildebrand-MalcolmClassical violinistNeeds VoteConcerto KölnBoston Early Music Festival Orchestra + +2296097Gregor DuBucletClassical violin & viola playerNeeds VoteBoston Early Music Festival Orchestra + +2296100Sarah MöllerClassical recorder playerNeeds VoteSara MöllerLes FavoritesBoston Early Music Festival Orchestra + +2296101Laura PudwellClassical soprano / mezzo-soprano vocalistNeeds VoteLe Concert SpirituelBoston Early Music Festival ChorusTenet Vocal Artists + +2296102Simon LinnéSwedish lute, archlute, theorbo and baroque guitar artist born 1976, Hilleshög.Needs VoteBarocktrompeten Ensemble BerlinWeser-RenaissanceNew Dutch AcademyVox LuminisScherzi MusicaliLes Passions De L'Ame (2)Leipziger BarockorchesterBoston Early Music Festival OrchestraLa Villanella BaselLes Escapades (2)La Festa MusicaleL'Onda ArmonicaAbendmusiken BaselBarockwerk HamburgIl Gusto BaroccoEnsemble La NinfeaNicolai-Ensemble Hameln + +2296107Annette JohnClassical recorder playerNeeds Votehttps://www.annettejohn.de/Weser-RenaissanceBoston Early Music Festival OrchestraTrio Viaggio + +2296341Gino CioffiGino B. Cioffi(b. Naples, 1912-after 2001), clarinettist; Principal Clarinet of the Boston Symphony and Cleveland Orchestra. Played with other major American orchestras.Needs Votehttp://www.stokowski.org/Principal_Musicians_Cleveland_Orchestra.htm#Clarinet%20Index%20Point_Gino B. CioffiBoston Symphony OrchestraThe Cleveland OrchestraBoston Symphony Chamber PlayersThe Boston Woodwind Ensemble + +2296406Rudolf ReschAustrian singer, born 22 July 1922 in Vienna, Austria.Needs VoteR. ReschDie MonteCarlosDie Blauen JungsWiener Staatsopernchor + +2296972André MorinClassical timpanistNeeds VoteLes Violons du Roy + +2297237Anne Helga MartinsenClassical violin player from NorwayNeeds VoteAnna Helga MartinsenBergen Filharmoniske OrkesterHansakvartetten + +2297239Walter HeimGerman cellist, based in Norway.Needs VoteBergen Filharmoniske OrkesterHansakvartetten + +2297416Egle MartinEgle Lucía Martínez Furque(Buenos Aires, June 17, 1936 - August 14, 2022) was an Argentine actress, vedette, choreographer, and singer. +Briefly involved romantically and professionally with [a=Astor Piazzolla]Needs Votehttps://es.wikipedia.org/wiki/Egle_Martinhttps://www.imdb.com/name/nm0552243/EgleEgle (Negra) MartinAstor Piazzolla Y Su Orquesta + +2297619Erben-QuartettGerman string chamber ensembleNeeds VoteDas Erben-QuartettDas ErbenquartettErben QuartetErben QuartettFriedrich-Carl ErbenArnim OrlamündeRalf-Rainer HaaseWolfgang BernhardtKarl-Heinz SchröterLutz Steiner (2) + +2299210Christiane HörrClassical viola player.CorrectChristiane HoerrSymphonie-Orchester Des Bayerischen RundfunksThe Chamber Orchestra Of EuropeConsortium ClassicumBundesjugendorchester + +2300188London Cornett And Sackbut EnsembleBritish renaissance / baroque wind ensembleNeeds VoteEnsemble Londonnien de Saqueboutes Et de Cornets à BouquinLondon Cornet & Sackbut EnsembleLondon Cornett & Sackbut EnsembleThe London Cornett & Sackbut EnsembleThe London Cornett And Sackbut EnsembleStephen SaundersPaul NiemanAlan LumsdenAndrew Van Der BeekPaul BeerTheresa Caudle + +2300191Trevor HerbertClassical trombone instrumentalistNeeds Vote + +2300704Inga SchneiderAlto & Mezzo-soprano vocalistNeeds VoteCappella AmsterdamVocalconsort Berlin + +2300712Angus Van GrevenbroekClassical bass vocalist, born in 1969.Needs VoteCappella AmsterdamPA'DAM + +2301221Mario BenzecryArgentinian violinist and conductor (born 1936), father of [a8008145]Needs VoteGulbenkian OrchestraOrquestra De Cámara Mayo + +2303648František DykFrantišek DykCzech conductor. Needs VoteF. DykFrant. DykSlovak Radio Symphony Orchestra + +2303921Jan Keller (2)Classical cellistNeeds VoteThe Czech Philharmonic OrchestraCollegium 1704Noční Optika + +2303966Marleen AsbergClassical violinist.CorrectConcertgebouworkestEbony Band + +2304063Nikolaus SimkowskyAustrian tenor, born 17 October 1935.CorrectNikolaus SimkovskyWiener Staatsopernchor + +2304852Mladen BašićCroatian pianist and conductor, born 1 August 1917 in Zagreb, Croatia, died 21 November 2012 in Zagreb, Croatia. +Mozarteumorchester Salzburg conductor from1960 to 1969.Needs VoteBasicM. BašićMalten BasicMladen BashichMladen BasicMladen Bašić (Cond.)Das Mozarteum Orchester Salzburg + +2304883Gerrit BoonstraClarinet and basset horn player.Needs VoteNederlands Blazers EnsembleRadio KamerorkestEbony Band + +2305249Nova StravaganzaGerman ensemble founded in 1988 (as La Stravaganza Salzburg) is specialised in classical music of the 17th century.Correcthttp://www.bach-cantatas.com/Bio/Nova-Stravaganza.htmhttp://www.siegbertrampe.de/html/frameset_ns_e.htmlLa StravaganzaLa Stravaganza (Hamburg)La Stravaganza SalzburgAndreas GerhardusChristian BindeAdrian RovatkayRuth FunkeLudek BranyDane RobertsMargarete AdorfGabriele SteinfeldTrudy Van Der WulpAntje SabinskiRenate GentzMonika SchwambergerJuris TeichmanisIngeborg ScheererChristine AllanicPeter HörrKai KöppSaskia FikentscherMaria ManermannSiegbert RampeIldikó KertészChristoph Hesse (2)Claudia HofertHans-Martin KotheBarbara GerberHelene LerchChristoph Danne (2)Georg NöldeckeEbba-Maria KünningAnette BaheAnnette WehnertDieter ThienhausCornelius FroweinGesine Hildebrandt + +2305250Maria ManermannClassical violinist.CorrectNova Stravaganza + +2305252Siegbert RampeHarpsichordist and conductor of [a=Nova Stravaganza]. Also credited as liner notes author.Needs VoteProf. Siegbert RampeNova StravaganzaHannover Baroque Ensemble + +2305253Ildikó KertészHungarian classical flautist.Needs VoteNova StravaganzaIl Desiderio + +2305255Christoph Hesse (2)Classical violinist.Needs VoteFreiburger BarockorchesterI CiarlataniBarockorchester L'Arpa FestanteNova StravaganzaSüdwestdeutsche BarocksolistenAlte Musik Köln + +2305256Claudia HofertClassical viola player, born 1963.Needs VoteCamerata Academica SalzburgThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraNova StravaganzaMerlin EnsembleMozart Quartett Salzburg + +2305480Noëlle ProbstBassoonist.Needs VoteNieuw Sinfonietta AmsterdamEbony BandBeaufort Kwintet + +2305484Harke WiersmaDouble bass player.Needs VoteRotterdams Philharmonisch OrkestOrquesta De CadaquésDoelen Ensemble + +2305487Anna De Vey MestdaghDutch classical violinist.Needs VoteAnna de Veij-MestdaghConcertgebouworkestConcertgebouw Chamber OrchestraEbony Band + +2305641Lydia ForbesClassical violinistNeeds VoteNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaZephyr Quartet + +2305663Nicoline AltDutch oboist.Needs VoteConcertgebouworkestEuropean Union Youth OrchestraConcertgebouw Chamber OrchestraNetherlands Ballet Orchestra + +2305666Hendrik Jan RenesDutch tubistNeeds VoteHendrik-Jan RenesRotterdams Philharmonisch OrkestNederlands Fanfare Orkest + +2305689Mary O'ReillyMary O'Reilly was an American violinist. She passed away on January 17th, 2025 at the age of 71.Needs VoteM. O'ReillyRotterdams Philharmonisch Orkest + +2306501Sara TrobäckSara Katarina Trobäck HesselinkSwedish classical violinist, born January 30, 1978. + +As a sixteen-year-old, Trobäck began studying at the Gothenburg Academy of Music for [a3107961] and then continued at the Royal Academy of Music in London for [a1063052]. She became alternating first concertmaster in [a1015406] in 2002 and has been the first concertmaster there since 2009. She has been a member of the Royal Academy of Music since 2008. Together with cellist Claes Gunnarsson and pianist Per Lundberg, she is part of the Gothenburg-based piano trio [a5634155]. + +She received Sten A Olsson's cultural scholarship in 2003.Needs Votehttps://en.wikipedia.org/wiki/Sara_Trob%C3%A4ckhttps://sv.wikipedia.org/wiki/Sara_Trob%C3%A4ckSara Trobäck HesselinkGöteborgs SymfonikerTrio Poseidon (2)Ensemble Darcos + +2307057Benar HeifetzClassical cellist, born December 11, 1899 in Mogilyov, Russia (today in Belarus) and died in 1974.Needs Votehttps://adp.library.ucsb.edu/names/116401B. HeifetzBenar HeifitzHeifetzThe Philadelphia OrchestraNBC Symphony OrchestraThe Albeneri TrioKolisch QuartetThe New York String Sextet + +2307617Romy BischoffFrench classical clarinettist, born in Toulon.Needs VoteOrchestre De ParisMusique Des Gardiens De La Paix + +2307982Friedemann WinklhoferGerman classical organistNeeds VoteProf. Friedemann WinkelhoferSymphonie-Orchester Des Bayerischen RundfunksBach-Collegium München + +2309242Unit 13Hard dance DJ / producers [a=Jay Flynn] & [a=David James Lee] based in Newcastle, UKCorrecthttp://www.soundcloud.com/Unit13officialhttp://www.facebook.com/Unit13official?sk=wallJay FlynnDavid James Lee + +2309265Simon Powell (2)Trombonist.Needs VoteRoyal Liverpool Philharmonic Orchestra + +2311898Richard De FournivalRichard de Fournival or Richart de Fornival (1201 – ?1260) was a medieval philosopher and trouvère perhaps best known for the Bestiaire d'amour ("The Bestiary of Love").Needs Votehttps://en.wikipedia.org/wiki/Richard_de_FournivalRichart De FournivalRichart de Fournival + +2311901Mail SildosEstonian classical violinist, born May 16, 1958.Needs VoteHortus MusicusEstonian National Symphony Orchestra + +2312300Wilhelm MiddelschulteGerman organist and composer (April 3, 1863, Werve, Kreis Hamm, now part of Kamen – May 4, 1943, Dortmund) who resided in America for most of his career.Needs Votehttp://en.wikipedia.org/wiki/Wilhelm_MiddelschulteMiddelschultePaul MiddelschulteWilhelm MiddleschulteChicago Symphony Orchestra + +2312317Catherine JonesAlto vocalistNeeds VoteCatherine V. JonesTaverner Choir + +2313112Yamei YuClassical violinist and teacher, born in 1975 in Tianjin, China.Needs Votehttps://yameiyu.com/Bayerisches StaatsorchesterOrchester Der Komischen Oper BerlinTrio Parnassus + +2313947Bela ZedlakClassical string instrumentalistNeeds VoteHespèrion XX + +2314236Pavel Sokolov (2)Russian classical oboist, born in 1975.Needs VoteDeutsches Symphonie-Orchester BerlinOslo Filharmoniske OrkesterConsortium Classicum + +2314245Mischa Mischakoffborn Mischa Isaakevich FischbergAmerican violinist, born 16 April 1895 in Russia and died 1 February 1981 in Petoskey, Michigan.Needs VoteMischa MischakovMischa MishakovMischa MisschakoffMischa ViolinMisha MishakoffThe Philadelphia OrchestraNBC Symphony OrchestraChicago Symphony Orchestra + +2315258Fernando SerafimPortuguese tenor vocalist, born in Alcobaça.Needs Votehttp://www.meloteca.com/canto-tenor.htm#serafimGulbenkian OrchestraSegréis de Lisboa + +2315428Kenneth HarbisonAmerican percussionist.CorrectNational Symphony Orchestra + +2315430Moritz HauptmannMoritz Hauptmann (13 October 1792 - 3 January 1868) was a German violinist and composer.Needs Votehttps://en.wikipedia.org/wiki/Moritz_Hauptmannhttps://www.britannica.com/biography/Moritz-Hauptmannhttps://www.bach-cantatas.com/Lib/Hauptmann-Moritz.htmHauptmannStaatskapelle Dresden + +2315799Natale De CarolisItalian operatic baritone, born 25 July 1957. He's married to [a1092539].Needs Votehttp://www.nataledecarolis.com/index.aspx?AspxAutoDetectCookieSupport=1De CarolisN. De CarolisNatale de Carolis + +2315876Jindřich VáchaClassical violinistNeeds VoteJind Ich VáchaThe Czech Philharmonic Orchestra + +2315877Jiří ZelbaClassical oboistNeeds VoteThe Czech Philharmonic OrchestraCamael (2) + +2315879Václav PrudilClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +2315880Ivan PazourClassical string instrumentalistNeeds VoteThe Czech Philharmonic OrchestraArs Rediviva Ensemble + +2315881Jaromír ČerníkClassical double bassistNeeds VoteThe Czech Philharmonic Orchestra + +2316264Florian SonnleitnerViolinist and instrument technician. A member of the [a604396] from 1977 to 2018.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchner Solisten Ensemble + +2316269Katharina OttSoprano vocalist.CorrectCoro Della Radio Televisione Della Svizzera ItalianaEnsemble Trazom + +2316304Tommy GwaltneyThomas O. GwaltneyUS jazz clarinetist, vibraphonist and bandleader, born 28 February 1921 in Norfolk, Virginia, died 11 February 2003 in Virginia Beach, Virginia.Needs Votehttps://en.wikipedia.org/wiki/Tommy_GwaltneyGwaltneyTom GwaltneyEddie Condon And His All-StarsBobby Hackett And His Jazz BandThe Bobby Hackett SextetTommy Gwaltney's Kansas City NineTommy Gwaltney And The Jolly RogersClaude Hopkins Swingsters + +2316319Hans-Martin RuxClassical trumpeterNeeds VoteHannes RuxHannes Rux BrachtendorfHannes Rux-BrachtendorfHans RuxConcerto KölnMusica FiataCollegium 1704Main-Barockorchester FrankfurtDresdner BarockorchesterHarmonie UniverselleKölner AkademieLa Grande ChapelleApollo EnsembleJohann Rosenmüller EnsembleGaechinger Cantorey + +2316606Edna PhillipsAmerican harpist (also known as Edna Phillips Rosenbaum), born 7 January 1907 in Reading, Pennsylvania and died 2 December 2003.Needs Votehttps://adp.library.ucsb.edu/names/116488PhillipThe Philadelphia Orchestra + +2316858Annette Zu CastellGerman violinist.Needs VoteJunge Deutsche PhilharmonieMahler Chamber OrchestraGustav Mahler JugendorchesterBundesjugendorchesterSwonderful Orchestra + +2316860John Timothy SummersAmerican violinistNeeds Votehttp://www.timsummers.org/?page_id=17Timothy SummersMahler Chamber Orchestra + +2316864Eoin AndersenAmerican violinistNeeds VoteMelbourne Symphony OrchestraMahler Chamber Orchestra + +2316865Hong Sung HyuckClassical double-bassistNeeds VoteSung-Hyuck HongMahler Chamber Orchestra + +2317260Moritz KlaukMoritz Klauk (born 1993) is a German cellist. +Needs VoteGewandhausorchester Leipzig + +2317327Paul GrizzellClassical bass vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/paul-grizzell/Chicago Symphony Chorus + +2317328Sally SchweikertClassical soprano vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/sally-schweikert/Chicago Symphony Chorus + +2317330William KirkwoodClassical bass vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/william-kirkwood/Chicago Symphony Chorus + +2317331Barbara PearsonClassical soprano vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/barbara-pearson/Chicago Symphony Chorus + +2317332Daniel HarperAmerican tenorNeeds Votehttps://csoarchives.wordpress.com/tag/daniel-harper/David HarperChicago Symphony Chorus + +2317333Elizabeth GottliebClassical mezzo-soprano vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/elizabeth-gottlieb/Chicago Symphony Chorus + +2317334Herbert WittgesClassical baritone vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/herbert-wittges/W. Herbert WittgesChicago Symphony Chorus + +2317335Karen BrunssenClassical contralto vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/karen-brunssen/Chicago Symphony Chorus + +2317336Jean BrahamClassical soprano vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/jean-braham/JeanChicago Symphony Chorus + +2317337Roald HendersonClassical tenor vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/roald-henderson/Chicago Symphony Chorus + +2317338Thomas DymitClassical tenor vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/thomas-dymit/https://www.northcentralcollege.edu/profile/tedymitThomas E. DymitChicago Symphony Chorus + +2317339Kurt LinkClassical baritone vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/kurt-link/Chicago Symphony Chorus + +2317340Bradley NystromClassical baritone vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/bradley-nystrom/Chicago Symphony Chorus + +2317341Karen ZajacClassical contralto vocalist.Needs Votehttps://csoarchives.wordpress.com/tag/karen-zajac/Chicago Symphony Chorus + +2318207Hilary Jane ParkerClassical violinist. +She has pursued a performing career alongside teaching, accompanying and examining.Needs VoteH. ParkerHilary-Jane ParkerHilaryjane PakerHilaryjane ParkerLondon Symphony OrchestraLondon SinfoniettaPhilharmonia OrchestraThe Orchestra Of St. John's + +2318804Barbara PazourováClassical harpistNeeds VoteThe Czech Philharmonic Orchestra + +2318891Antonio Lopez (3)Antonio Lopez (b. February 11, 1943; d. March 17, 1987) +Fashion illustrator, generally signed his works as "Antonio." +Also credited for photography.Needs VoteAntonioAntonio López, 166Lopez + +2319450Erzsébet RáczHungarian freelance violinist living in London, England, UK since 2006. +She graduated from the [l290263]. Violin and piano teacher since 2009.Needs Votehttps://twitter.com/erzsebetracz2https://yoopies.co.uk/piano-lessons/london/piano-violin-teacher/3816519Erzsebet RaczRácz ErzsébetLondon Symphony OrchestraAura MusicaleGereben EnsembleQuartetto Luigi TomasiniEscher String Quartet + +2320229ClownyElectronic dance music DJ / producer and owner of [l759118] imprint, from Bridgewater, Somerset, United Kingdom +Style: Happy Hardcore, UK Hardcore what ever you wanna call it. Typically edging on the harder bouncier side. + +Needs Votehttps://twitter.com/djclownyhttps://www.mixcloud.com/clownydeejay/https://soundcloud.com/clowny_ukDJ ClownyDJ ClownyTekneek (8)Clowny & Reminisce + +2320595Daniele CaminitiClassical Theorbe + Guitar player born in Messina, ItalyNeeds VoteCaminitiL'Orfeo BarockorchesterEpoca BaroccaVenice Baroque OrchestraLa Cetra Barockorchester BaselIl ProfondoL'Onda ArmonicaNeue Innsbrucker HofkapelleL'Orfeo BläserensembleIl Gusto BaroccoBasel Baroque ConsortLa Centifolia + +2320597Giorgio BaldanClassical ViolinistNeeds VoteVenice Baroque OrchestraDelitiæ MusicaeL'Opera Stravagante Di Venezia + +2320598Johannes KellerSwiss classical keyboardist.Needs Votehttp://www.kellerjohannes.com/Schola Cantorum BasiliensisVenice Baroque OrchestraLa Cetra Barockorchester BaselGli Angeli GenèveIl ProfondoAbchordis EnsembleEnsemble Domus ArtisLa Centifolia + +2320599Michele FavaroClassical flute and oboe playerNeeds VoteI BarocchistiVenice Baroque OrchestraDelitiæ MusicaeEnsemble Il Mosaico + +2320600Alessandro SbrogiòItalian violone / double bass player and composer.Needs Votehttps://www.alessandrosbrogio.comVenice Baroque OrchestraMagister Espresso OrchestraAndrea Tich e Magister Espresso OrchestraL'Opera Stravagante Di Venezia + +2320601Massimiliano TieppoItalian classical violinistNeeds Votehttps://crescereinmusica.it/artists/massimiliano-tieppo/Orchestra Di Padova E Del VenetoVenice Baroque OrchestraOrchestra Barocca G.B. TiepoloI Musicali AffettiL'Opera Stravagante Di VeneziaEnsemble Lorenzo Da Ponte + +2320602Nicola MansuttiViolinistNeeds VoteVenice Baroque Orchestra"Pezzè" String 4tetAndriani String Quartet + +2320603Alessandra Di VincenzoClassical viola playerNeeds Votehttp://www.aracneeditrice.it/index.php/autori.html?auth-id=654917Venice Baroque OrchestraL'Opera Stravagante Di Venezia + +2320605Massimiliano SimonettoItalian classical violinistCorrectVenice Baroque Orchestra + +2320606Luca MaresClassical violinistNeeds Votehttps://www.naxos.com/person/Luca_Mares/252733.htmVenice Baroque OrchestraAccademia Di San RoccoDelitiæ MusicaeL'Opera Stravagante Di Venezia + +2320608Giuseppe CabrioClassical violinistNeeds Votehttps://www.facebook.com/people/Giuseppe-Cabrio/100013005033442/https://www.instagram.com/cabriogiuseppe/Venice Baroque OrchestraDelitiæ Musicae“Il Tempio Armonico” - Orchestra Barocca Di VeronaL'Opera Stravagante Di Venezia + +2320609Gianpiero ZanoccoItalian violinistNeeds Votehttp://www.istitutomichelangeli.it/insegnanti-e-collaboratori/giampiero-zanocco/Giampiero ZanoccoVenice Baroque OrchestraEnsemble Lorenzo Da Ponte + +2320611Marta PeroniItalian violinistCorrectVenice Baroque Orchestra + +2320612Josias RodriguezSpanish classical luthenist + theorbist born 1978 in BarcelonaNeeds VoteJosias Rodriguez GándaraJosías Rodríguez GándaraThe English Baroque SoloistsVenice Baroque OrchestraLa Cetra Barockorchester BaselIl ProfondoA Corte MusicalIl Gusto Barocco + +2320613Francesco ZanottoClassical keyboard instrumentalist & technicianNeeds VoteFrancesco Zanotti (2)Quadro Asolano + +2320731Sylvain FabreClassical percussionistNeeds Votehttp://www.sylvainfabre.com/Le Concert D'AstréePygmalionEnsemble CorrespondancesEnsemble Les SurprisesLa Chapelle Harmonique + +2320752Michel Poels (2)Classical bass vocalist, born in 1968 in Nijmegen, Netherlands.Needs Votehttp://michelpoels.nl/Cappella AmsterdamKoor Nieuwe Muziek + +2320756Annet LansDutch soprano vocalist, born in 1965 in Haarlem, Netherlands.Needs VoteNederlands Kamerkoor + +2320878Steve Freeman (4)Stephen FreemanClassical bass clarinetist and clarinetist (died 25 February 2014). He played with the New York Philharmonic (NYP) from 1966 to 2009. He played in the Air Force Band for 4 years beginning in 1953 and then with the Ottawa Philharmonic, the St. Louis Symphony, Baltimore Symphony, and Pittsburgh Symphony before joining the NYP.Needs Votehttps://www.legacy.com/obituaries/nytimes/obituary.aspx?n=stephen-freeman&pid=170262097https://archives.nyphil.org/index.php/artifact/33fbacf0-a98b-42af-bd50-2961f4129022-0.1/fullview#page/1/mode/2upStephen FreemanNew York PhilharmonicSaint Louis Symphony OrchestraBaltimore Symphony OrchestraPittsburgh Symphony OrchestraUnited States Air Force BandOttawa Symphony OrchestraNew York Philharmonic Ensembles + +2321395Leonor Braga SantosPortuguese viola player.Needs VoteGulbenkian Orchestra + +2321558Hendrik-Jan HoutsmaClassical trumpeterNeeds VoteHendrik Jan HoutsmaCollegium Vocale + +2322369André KerverDutch clarinet playerNeeds VoteAndre KerverNieuw Sinfonietta AmsterdamValerius EnsembleHet Brabants Blazersensemble + +2322372Gijs BethsGijsbert Petrus BethsDutch violinist (1933-2019). Son of Barend Gijsbert (Gijs) Beths (b. 1903- d.1998) and brother of violinist [a=Vera Beths]. Concertmaster of the [a=Rheinisches Kammerorchester] and first violin of the [a=Kölner Streichquartett]. Violinist in the [a=Concertgebouworkest], he was appointed concertmaster of the [a=Orchestra Of The Netherlands Opera]. He was subsequently appointed first concertmaster of [a=Noordhollands Philharmonisch Orkest], a position which he last occupied.Needs VoteGijsbert BethsGijsberth BethsGysbert BethsGÿsbert BethsConcertgebouworkestL'ArchibudelliRheinisches KammerorchesterNoordhollands Philharmonisch OrkestRogier Van Otterloo And His OrchestraOrchestra Of The Netherlands OperaGijs Beths StrijkkwintetKölner StreichquartettGijsbert Beths Section + +2324412David WetherillAmerican hornistNeeds VoteThe Philadelphia OrchestraThe Canadian Brass + +2324413Blair BollingerAmerican trombonistNeeds VoteBlairThe Philadelphia OrchestraThe Canadian Brass + +2324415Roger Blackburn (2)American trumpet playerCorrectThe Philadelphia Orchestra + +2324419Daniel Williams (3)Daniel Williams is an American horn player. A member of [a27519] from 1975 to 2019. +Married to [a3079654]Needs Votehttps://musicbrainz.org/artist/791b815a-7c5b-4e28-91ba-8cf9f730e996The Philadelphia Orchestra + +2324420Eric Carlson (2)American trombonist. A member of [a27519] from 1986 to 2020.Needs VoteThe Philadelphia Orchestra + +2324696Paweł PańtaPolish double bass player.Needs VotePańtaPhilharmonie Der NationenGustav Mahler JugendorchesterWłodek Pawlik TrioTrio Marcina MałeckiegoAndrzej Antolak - Bogdan Hołownia QuartetAndrzej Kurylewicz TrioKarolak Piano TrioKostov Pańta Konrad Trio + +2324880Leijona-OrkesteriNeeds Major ChangesLeijona OrkesteriLeijona-orkesteri + +2324935Cyril PreedyBritish pianist (1920 - 1965).Needs VoteCyril PredeyMelos Ensemble Of London + +2325677Clinton Walker (2)Tuba player and songwriter from the Golden Age of Jazz.CorrectC. WalkerWalkerKing Oliver & His Orchestra + +2325720Eric FrankerJazz pianist, playing included 1920's sessions with [a=King Oliver]s' ensembles.CorrectKing Oliver & His Orchestra + +2325723Edmund JonesEarly jazz drummer.Needs VoteDrummerE. JonesEd. JonesEdmond JonesKing Oliver & His Orchestra + +2325726Norman LesterPianistNeeds VoteN. LesterKing Oliver & His Orchestra + +2325727Walter Wheeler (2)Sax playerNeeds VoteW. WalterW. WheelerKing Oliver & His Orchestra + +2325904Hilary RobinsonClassical cellist. +Former member of the [a=London Symphony Orchestra] (1962-1965). + +Same as [a=H. Robinson (2)]?Needs VoteLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraThe London Jazz Orchestra + +2325907Herbert WegrichtAustrian violinist and conducter. Former chairman of the board of the [a696225].Needs VoteH. WegrichtWiener Symphoniker + +2325925Ike Isaacs (2)Charles Edward IsaacsAmerican jazz bassist, born March 28, 1923 in Akron, Ohio, died February 27, 1981 in Atlanta, Georgia +He was married to [a34183].Needs Votehttp://en.wikipedia.org/wiki/Ike_Isaacs_%28bassist%29https://adp.library.ucsb.edu/names/322625Charles "Ike" IsaacsCharles "Ikes" IsaacsCharles E. IsaacsCharles IsaacsCharles IssacsCharlie "Ike" IsaacsCharlie IsaacsIke IsaacIke IssacsCount Basie OrchestraTiny Grimes QuintetEarl Bostic And His OrchestraRay Bryant TrioThe Ike Isaacs TrioCarmen McRae's TrioRusty Bryant And The Carolyn Club BandWes Montgomery All-Stars + +2326274Art LondonArthur Earl Lund Jr.Alias for Big Band Era vocalist [a1267261]Needs Votehttps://archive.org/search?query=creator%3A%22Art+London%22Art LundBenny Goodman And His OrchestraJimmy Joy And His Orchestra + +2327234Camille PoulFrench soprano vocalistNeeds Votehttps://www.camille-poul.com/Choeur de Chambre de NamurLe Poème HarmoniqueLe Mercure GalantLes Épopées + +2327983Roman NovotnýClassical flautistNeeds VoteRoman Novotnyロマン・ノヴォトニーThe Czech Philharmonic Orchestra + +2328173Tomaso Antonio VitaliTomaso Antonio Vitali (March 7, 1663 – May 9, 1745) was an Italian composer and violinist from Bologna. +Eldest son of [a1921145]Needs Votehttp://en.wikipedia.org/wiki/Tomaso_Antonio_Vitalihttps://adp.library.ucsb.edu/names/349435Antonio Tommaso VitaliT. A. VitaliT. VitaliT. VitalisT.A. VitaliT.VitaliTomaso VitaliTomaso Vitali (?)Tomaso VitalinoTomasso VitaliTommaso Antonio VitaliTommaso VitaleTommaso VitaliTommaso-Antonio VitaliVitaleVitaliVitalliТ. ВиталиТ. А. ВиталиТ. Виталиトマーゾ・アントニオ・ヴィターリヴィターリ + +2328549Luis LeguiaLuis Grey LeguiaLuis Leguia (29 July 1935 in Los Angeles, California - 15 September 2024 in Milton, Massachusetts) was an American cellist.Needs Votehttps://cellistluisleguia.com/Boston Pops OrchestraBoston Symphony OrchestraHouston Symphony OrchestraNational Symphony Orchestra + +2328550Jerome PattersonAmerican cellist, born 1943 in New York, New York.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraBaltimore Symphony OrchestraPittsburgh Symphony Orchestra + +2328551Jonathan MenkisAmerican horn player.Needs VoteMenkisBoston Pops OrchestraBoston Symphony OrchestraSacramento Symphony Orchestra + +2328554Richard RantiAmerican bassoonist. Associate Principal Bassoon with the [a=Boston Symphony Orchestra]Needs Votehttps://www.bso.org/profiles/richard-rantiRantiThe Philadelphia OrchestraBoston Pops OrchestraBoston Symphony Orchestra + +2328555Robert SheenaAmerican classical oboist and English horn player.Needs Votehttps://www.bso.org/profiles/robert-sheenaBoston Pops OrchestraBoston Symphony OrchestraSan Antonio Symphony OrchestraChanticleer Sinfonia + +2328556Carol ProcterCarol Ann ProcterAmerican cellist, born in 1942.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328557John SalkowskiAmerican double bassist, born in 1937.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraThe Cleveland Orchestra + +2328559Wendy PutnamAmerican violinist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328561Scott Andrews (4)Clarinettist CorrectBoston Symphony OrchestraSaint Louis Symphony Orchestra + +2328562Marianne GedigianAmerican flute player and Professor of Flute.Needs VoteBoston Pops OrchestraChamber Soloists Of Austin + +2328563Martha BabcockAmerican cellist.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraCollage New Music + +2328565Aza RaykhtsaumAmerican violinist, born in St. Petersburg, Russia. Married to [a1055112].Needs Votehttps://www.bso.org/profiles/aza-raykhtsaumBoston Pops OrchestraBoston Symphony OrchestraHouston Symphony Orchestra + +2328568Craig NordstromAmerican bass clarinetist.Needs VoteNordstromVancouver Symphony OrchestraBoston Pops OrchestraBoston Symphony OrchestraCincinnati Symphony Orchestra + +2328569Ronald WilkinsonAmerican violinist and violist, born in 1947. He's married to [a1413763].Needs VoteBoston Pops OrchestraBoston Symphony OrchestraBaltimore Symphony Orchestra + +2328572Nicole MonahanAmerican violinist. She's married to [a2105558].Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328573Douglas YeoDouglas Edward YeoAmerican trombonist and trumpet player, born in 1955.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328574Elizabeth OstlingAmerican flutist.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraBoston Symphony Chamber Players + +2328575Elita KangAmerican violinist, Assistant Concertmaster at Boston Symphony Orchestra.Needs Votehttps://www.bso.org/strings/elita-kang-violin.aspxE. KangBoston Pops OrchestraBoston Symphony Orchestra + +2328576Geralyn CoticoneAmerican piccolo player, born 1965 in New Jersey.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraNational Symphony Orchestra + +2328577Thomas Martin (6)American clarinetist, saxophonist, and flutist. Associate principal clarinet with the [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/thomas-martinMartinBoston Pops OrchestraBoston Symphony OrchestraThe Eastman-Dryden Orchestra + +2328579Fred BudaAmerican percussionist and timpanist.Needs VoteBoston Pops OrchestraThe Wayland QuartetFred Buda's Orchestra + +2328580Valeria KuchmentValeria Vilker KuchmentClassical violinist.Needs VoteValeria Vilker KuchmentValerie KuchmentВалерия ВилькерВалерія ВількерBoston Pops OrchestraBoston Symphony Orchestra + +2328581Joseph PietropaoloJoseph Placido PietropaoloAmerican violist, born 21 August 1934 and died 5 December 2014 in Westborough, Massachusetts.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328582Jonathan Miller (9)American cellist. Has performed as soloist with the Hartford Symphony; The Boston Pops; The Cape Ann Symphony, North Shore Philharmonic, Newton Symphony, San Diego Symphony, and the Metropolitan Symphony Orchestra of Boston.Needs Votehttps://gramercytrio.com/about/jonathan-miller/https://bostonartistsensemble.org/jonathan-miller/Boston Pops OrchestraBoston Symphony OrchestraSan Diego SymphonyThe Hartford Symphony OrchestraThe Gramercy Trio + +2328583Mark Henry (6)Bass player from Massachusetts. Performs with both classical and jazz oriented performers. An instructor at Wellesley College.Needs Votehttps://www.wellesley.edu/people/mark-henryMark S. HenryBoston Pops Orchestra + +2328584Andrew Pearce (2)American cellist (born in 1962).Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328586Edward GazouleasAmerican violist and professor of viola at the Indiana University. He's married to [a2328613].Needs VoteBoston Pops OrchestraBoston Symphony OrchestraPittsburgh Symphony Orchestra + +2328587Nancy BrackenAmerican violinist.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraThe Cleveland Orchestra + +2328589Gregg HenegarAmerican contrabassoonist. +Needs VoteK. Gregg HenegarBoston Pops OrchestraBoston Symphony OrchestraHouston Symphony Orchestra + +2328590Dennis RoyAmerican double bassist.Needs Votehttps://www.bso.org/profiles/dennis-royBoston Pops OrchestraBoston Symphony OrchestraSpringfield Symphony OrchestraNational Symphony Orchestra + +2328592John StovallAmerican double bassist, born 1958 in Casper, Wyoming.Needs Votehttps://www.bso.org/profiles/john-stovallBoston Pops OrchestraBoston Symphony Orchestra + +2328593James OrleansAmerican double bassist, born 1952 in Newark, New Jersey.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraMilwaukee Symphony OrchestraThe Boston Musica VivaGriffin Music Ensemble + +2328594James Cooke (2)American violinist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328595Keisuke WakaoJapanese oboist. Associate Principal Oboist with the [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/keisuke-wakaohttps://www.facebook.com/Keisuke-Wakao-若尾圭介-148717838626182/WakaoBoston Pops OrchestraBoston Symphony Orchestra + +2328596Robert Barnes (2)American viola player, born in 1942 in Lexington, Kentucky, grew up in Detroit. Twin brother of [a4690636]. Uncle of [a3298999].Needs Votehttp://www.stokowski.org/Boston_Symphony_Musicians_List.htmBoston Symphony Orchestra + +2328597Chester SchmitzChester Brian SchmitzAmerican tubist, born in 1940.Needs Votehttp://chesterschmitz.com/Tubby The TubaBoston Pops OrchestraBoston Symphony Orchestra + +2328599Mark McEwen (2)Canadian oboist.Needs Votehttps://www.bso.org/profiles/mark-mcewenMark McEwanBoston Pops OrchestraBoston Symphony Orchestra + +2328603Michael ZaretskyClassical violist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328604Joseph McGauleyAmerican violinist, born 1951 in New York, New York.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraAlbany Symphony Orchestra + +2328605Lucia LinAmerican classical violinist and Professor of Violin. Born in Champaign-Urbana, Illinois, USA. +She studied at the [l=Rice University]. In 1985, she became a member of the [a=Boston Symphony Orchestra] and in 1988 rose to the position of Assistant Concertmaster. In 1991, she transferred orchestras when she joined the [a=Milwaukee Symphony Orchestra] as their Acting Concertmaster for a year. In 1994, she acted as Joint Concertmaster of the [a=London Symphony Orchestra] for the season and she performed in that position again for the 1996 season. When she had completed her second stint with the LSO in 1996, she returned to the Boston Symphony Orchestra as Assistant Concertmaster. She remained with them in that position until 1998 which was around the same time that she married the [a392677] conductor [a=Keith Lockhart]. They had a son in 2003/4 but sadly separated in 2005. She then became a member of [a=The Muir String Quartet] in 1998. Associate Professor of Violin at the [l=Boston University] since 1999.Needs Votehttps://www.lucialin.com/https://www.facebook.com/lucia.lin.1257https://www.twitter.com/lin_lucialinhttps://www.instagram.com/lucialinviolin/https://www.linkedin.com/in/lucia-lin-92ba479a/https://open.spotify.com/artist/51XNYYFWrEEctz41t292mDhttps://music.apple.com/us/artist/lucia-lin/122114414https://www.feenotes.com/database/artists/lin-lucia/https://www.bso.org/profiles/lucia-linhttps://www.lighthousechamberplayers.org/lucia-linhttps://www.bu.edu/cfa/about/contact-directions/directory/lucia-lin/https://www.classicsforkids.org/lucia-lin/London Symphony OrchestraBoston Pops OrchestraBoston Symphony OrchestraMilwaukee Symphony OrchestraThe Muir String Quartet + +2328606Victor RomanulAmerican violinist and professor of violin.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraPittsburgh Symphony Orchestra + +2328607Bonnie BewickAmerican violinist.Needs VoteBonnie Bewick BrownColumbus Symphony OrchestraBoston Pops OrchestraBoston Symphony Orchestra + +2328608Roland SmallAmerican bassoonist, born in 1934.Needs VoteSmallVancouver Symphony OrchestraBoston Pops OrchestraBoston Symphony OrchestraDallas Symphony OrchestraYomiuri Nippon Symphony OrchestraNational Symphony Orchestra + +2328610Rachel FagerburgAmerican violist.Needs Votehttps://www.bso.org/profiles/rachel-fagerburgBoston Pops OrchestraBoston Symphony Orchestra + +2328611Ronald KnudsenAmerican violinist and conductor (b. 1931 - d. 29th March 2015).Needs Votehttps://www.feenotes.com/database/artists/knudsen-ronald-1931-29th-march-2015/Boston Pops OrchestraBoston Symphony Orchestra + +2328612Robert OlsonAmerican double bassist, born in 1933.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraMinneapolis Symphony OrchestraKansas City Philharmonic + +2328613Kazuko MatsusakaAmerican violist.Needs Votehttps://necmusic.edu/former-faculty/kazuko-matsusakaKatsuko MatsusakaBoston Pops OrchestraBoston Symphony OrchestraThe Boston Musica Viva + +2328614Todd SeeberAmerican double bassist. +Eleanor L. and [url=https://en.wikipedia.org/wiki/Levin_H._Campbell]Levin H. Campbell[/url] chair, [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/todd-seeberBoston Pops OrchestraBoston Symphony OrchestraBuffalo Philharmonic Orchestra + +2328616J. William HudginsAmerican classical percussionist.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraFlorida Symphony Orchestra + +2328618Timothy GenisAmerican timpanist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328619Ronald FeldmanAmerican cellist and conductor, born 1947 in New York, New York.Needs VoteRonald L. FeldmanBoston Pops OrchestraBoston Symphony Orchestra + +2328621Jennie ShamesAmerican violinist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2328854Susanna BertuccioliItalian harpist, active from the 2000s.Needs VoteOrchestra Del Maggio Musicale FiorentinoEnsemble D'Allegrezza + +2328931Luigi Cozzolino (2)Italian classical violinist, active from the 2000s.Needs VoteAuser MusiciOrchestra Del Maggio Musicale FiorentinoNova Ars CantandiCappella Di Santa Maria Degli AngioliniSemperconsort + +2328995Jeremy Taylor (6)Classical tenor vocalist.Needs Votehttps://uk.linkedin.com/in/jeremy-taylor-47863718Gabrieli ConsortThe Cambridge SingersThe Stephen Hill SingersHarvey & The Wallbangers + +2329008Peter GrittonClassical alto vocalist.Needs VoteGrittonP. GrittonThe Cambridge SingersThe Choir Of Christ Church CathedralI FagioliniTenebrae (10) + +2329009Alison SmartEnglish soprano vocalist.Needs Votehttp://web.archive.org/web/20040326105159/http://www.long-lane.demon.co.uk/https://www.bach-cantatas.com/Bio/Smart-Alison.htmhttps://divineartrecords.com/artist/alison-smart/BBC SingersThe SixteenCambridge Taverner Choir + +2329011Otakar SroubekAmerican violinist, born 1923 in Czechoslovakia and died 6 May 2008 in Downers Grove, Illinois.Needs VoteOttokar SroubekThe Czech Philharmonic OrchestraThe Cleveland OrchestraChicago Symphony OrchestraThe New Orleans Symphony + +2329014Gary StuckaGary Stucka is an American cellist. He was a member of the [a837562] from 1986 to 2023.Needs VoteGary M. StuckaThe Cleveland OrchestraChicago Symphony Orchestra + +2329015James SmelserAmerican horn player.Needs VoteJim SmelserJim SmeslerChicago Symphony OrchestraPhilharmonia HungaricaOrchester Der Deutschen Oper Am Rhein + +2329016Blair MiltonBlair Milton is an American violinist. He was a member of the [a837562] from 1975 to 2023.Needs VoteChicago Symphony Orchestra + +2329074Hélène Couvert-SuignardFrench classical violinist & viola player.Needs VoteHélène SuignardEuropa GalanteEnsemble europeen William Byrd + +2329326Daniela EntchevaBulgarian alto vocalistCorrecthttps://www.facebook.com/daniela.entcheva?ref=br_rsChoeur National De L'Opéra De Paris + +2329736Antal PappDouble bassist.Needs VoteSüdwestdeutsches KammerorchesterPhilharmonisches Orchester Freiburg + +2329827Satu VänskäClassical violinist.CorrectSatu VanskaMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksAustralian Chamber Orchestra + +2329913Robert StarkRobert Stark (19 September 1847 - 29 October 1922) was a German clarinetist and composer.Needs VoteR. StarkStarkStarkeOrchester der Bayreuther Festspiele + +2329916Eddie Robinson (4)Edward RobinsonAmerican jazz bassist, active during the swing and bop eras.Needs VoteEd RobinsonEd. RobinsonEddie "Bass" RobinsonEdward "Basie" RobinsonEdward "Bass" RobinsonEdward RobinsonBass RobinsonColeman Hawkins QuartetNoble Sissle Swingsters + +2330093Emily FowlerCanadian violinist.Needs VoteEnsemble MidtVestDR SymfoniOrkestret + +2330242Camille AvellanoViolinist.Needs Votehttps://www.linkedin.com/in/camille-avellano-25928140/Los Angeles Philharmonic Orchestra + +2330246Bing WangChinese classical violinist.Needs VoteDallas Symphony OrchestraLos Angeles Philharmonic OrchestraThe SW Santa Ana Winds + +2330986Susanne MathéGerman violinist, born 7 December 1979. She's the younger sister of [a2816188].CorrectCamerata BernBasler StreichquartettBundesjugendorchester + +2331120Katharina WulfClassical violinist.Needs VoteLa Petite BandeMain-Barockorchester Frankfurt + +2331381Erik Nordström (2)Swedish jazz saxophonist, see [a1197349]Needs VoteE. NordströmErik NordstromNordstromNordströmErik NorströmStan Getz QuintetStan Getz And His Swedish JazzmenOscar Pettiford And His Jazz Groups + +2331998Alain Philippe MalagnacAlain-Philippe Malagnac d'Argens de VillèleBorn in France, 1951, Malagnac married singer [a51229] in Las Vegas, April 1979. Died 49 years old in a fire on December 16, 2000, when their house in Saint-Étienne-du-Grès burned down to the ground.Needs VoteA. P. MalagnacAlain-Philippe Malagnac + +2332066Zbigniew PilchPolish classical violinist and conductor.Needs Votehttps://zbigniewpilch.pl/Collegium VocaleWrocławska Orkiestra BarokowaCollegio Di Musica Sacra + +2332464Amber Davis (2)Classical violinistNeeds VoteSydney Symphony OrchestraAustralian Chamber Orchestra + +2332469Jeroen QuintDutch violist and violinist, born 1971 in Eindhoven, Netherlands.Needs VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +2332886Imogen ParrySoprano singer.Needs Votehttps://www.imdb.com/name/nm13677326/London Voices + +2333219Vic MinichielloBig Band Jazz Trumpet player in the 1950s.Needs VoteVic MinichelloVin MinichelloZiggy MinichielloVic MinichelliStan Kenton And His Orchestra + +2333224Sam RubinowitchAmerican baritone and alto sax player and flautist. He was active between 1937 and 1956 and was member of [a239399]'s orchestra in the swing era. +In the literature and on releases there occur several spellings of his name, e.g. Sam Rubinwich, Sam Rubinowich and Sam Rubinwitch.Needs VoteRubinowitchSam RabinovitchSam RubenwitchSam RubinawitzSam RubinovichSam RubinowSam RubinowichSam RubinwichSam RubinwitchSam RunbinwitchSammy RubinwitchWoody Herman And His OrchestraJimmy Dorsey And His OrchestraWoody Herman & The HerdFlip Phillips BoptetIrving Aaronson And His CommandersThe Band That Plays The Blues + +2333227Bob LesherAmerican jazz guitaristNeeds VoteGene Krupa And His OrchestraStan Kenton And His Orchestra + +2333530Sergio MenozziSwiss clarinetist, saxophonist and composer, born 9 July 1960 in Bellinzona, Switzerland.Needs VoteOrchestre De L'Opéra De LyonIvano Torre QuintettoEBU/UER Big BandDuo ControversiaEnsemble Haute Trahison + +2333550Milton PrevesAmerican violist and conductor, born 18 June 1909 in Cleveland, Ohio and died 11 June 2000 in Glenview, Illinois.Needs VoteChicago Symphony OrchestraChicago Symphony String QuartetThe Weicher QuartetThe Weicher Quintet + +2334987Dankwart SchmidtClassical horn player and composer, born 1951 in Ochenbruck, Germany.Needs VoteDankwardt SchmidtDankwart SchmidDonhwart SchmidtSchmidt DankwartMünchner PhilharmonikerConsortium ClassicumGerman BrassBlechschadenPosaunenquartett Aus Nürnberg + +2335207Otto UrackGerman cellist, pianist, conductor, composer and arranger, born 13 May 1884 in Berlin, Germany and died 11 November 1963 in Berlin, Germany.CorrectKapellmeister Otto UrackO. UrackBoston Symphony Orchestra + +2335356Gillian KeithThe Canadian soprano, Gillian Keith, is a graduate of the McGill University in Montréal with a degree in Piano Performance.Needs Votehttps://www.gilliankeithsoprano.com/https://www.linkedin.com/in/gillian-keith-78486343/https://www.bach-cantatas.com/Bio/Keith-Gillian.htmhttps://en.wikipedia.org/wiki/Gillian_KeithThe Monteverdi Choir + +2335667Bozidar VukoticBožidar VukotićClassical cellist, born in London. He is the founder member of the Tippett String Quartet.Needs Votehttps://bozidarvukotic.tripod.com/Bozidar VuloticBožidar VukotićEnglish Chamber OrchestraTippett QuartetLondon Piano Trio + +2336140Singknabe Der Regensburger DomspatzenA single (unnamed) boy soloist from the [a=Regensburger Domspatzen] Choir.CorrectRegensburger DomspatzSoloist Of Regensburg Cathedral ChoirSoloist Of The Regensburger DomspatzenSoloist of Regensburg Cathedral ChoirSoloist of the Regensburger DomspatzenRegensburger Domspatzen + +2336661Fred WoodsAmerican jazz trombonist in the 1950s.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And His Third Herd + +2336662Red WoottenLawrence Bernard WoottenJazz bassist, born November 5, 1921 in Social Circle, Georgia. +Wooten played with [a=Jan Savitt] 1945, [a=Tony Pastor] 1947, [a=Tommy Dorsey] 1949, [a=Woody Herman] 1951, [a=Charlie Barnet] 1956, [a=Red Norvo] 1957-1958, [a=Benny Goodman] 1959-1960. Thereafter more studio work than jazz; also composed and arranged film score. +Born November 5, 1921, Social Circle, Georgia, USA. Married to singer [a=Eva Summers].Needs Votehttps://www.allmusic.com/artist/red-wootten-mn0001207200L. B. "Red" WootenL. B. "Red" WoottenLarry WootenLaurence WootenLawrence "Red" WootenLawrence "Red" WoottenLawrence B. 'Red' WootenLawrence B. Red WootenLawrence WootenRed WoodtonRed WootenRed WoottonWootenWoottenWoody Herman And His OrchestraWoody Herman And His WoodchoppersRed Norvo QuintetWoody Herman And His Third HerdBob Harrington QuartetBenny Goodman And His Jazz GroupBenny Goodman Tentet + +2336863Cy BakerAmerican jazz trumpeter.Needs Votehttps://www.allmusic.com/artist/cy-baker-mn0002287424BakerS. BakenJimmy Dorsey And His OrchestraCharlie Barnet And His OrchestraLarry Clinton And His OrchestraBenny Goodman And His OrchestraGlen Gray & The Casa Loma Orchestra + +2336902Karl ElmendorffKarl Eduard Maria ElmendorffConductor, born 25 October 1891 in Düsseldorf, Germany and died 21 October 1962 in Hofheim am Taunus, Germany.Needs Votehttps://en.wikipedia.org/wiki/Karl_ElmendorffCarl ElmendorffElmendorffGeneralmusikdirektor Karl ElmendorffStaatskapelle Dresden + +2337081Tanja TetzlaffGerman classical cello player and liner notes author, sister of [a960934].Needs Votehttps://tanjatetzlaff.comhttps://en.wikipedia.org/wiki/Tanja_TetzlaffT. TetzlaffTetzlaffターニャ・テツラフDeutsche Kammerphilharmonie BremenTetzlaff QuartettBundesjugendorchester + +2337177Zdeněk StarýClassical violinistNeeds VoteStarý ZdeněkZden K StarýThe Czech Philharmonic OrchestraSeveročeská Filharmonie Teplice + +2337730Unolf WäntigGerman clarinetistCorrectStaatskapelle BerlinModern Art Sextet + +2337732Matthias LeupoldGerman violinist.Needs VoteModern Art SextetKammerakademie PotsdamTango Real QuartettSwonderful Orchestra + +2339130Nicola ProtaniClassical flautist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2340051Walter IoossWalter C. Iooss Sr.American jazz bassist. Father of photographer [a4239916]. +Died 15 November 1987 aged 73 in Riverhead, Long Island. +Mr. Iooss performed with Benny Goodman, Dizzy Gillespie, Billie Holiday and other well-known jazz musicians and swing bands during the 1940's and 50's. +He later played with the now-defunct WNEW radio band and the Brooklyn Philharmonic Orchestra, and was active as a studio musician in New York for many years.Needs Votehttp://www.nytimes.com/1987/11/17/obituaries/walter-c-iooss-sr-jazz-bassist-73.htmlWalter IoosWalter LoosWalter YostBenny Goodman SextetHonky Tonk Rag Pickers + +2340257David HendryClassical trumpet playerNeeds VoteMusica Antiqua KölnGabrieli Players + +2340465Gerald GrünbacherAustrian clarinetist.Needs VoteGrünbacherEnsemble Wiener CollageWiener Mozart OrchesterThalia-SchrammelnBühnenorchester Der Wiener Staatsoper + +2341464Jānis LielbārdisClassical violist.Needs VoteJanis LielbardisKremerata BalticaRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +2342052Dave KoonseAmerican jazz guitaristNeeds VoteDaveDavid KoonseHarry James And His OrchestraBarney Bigard And His OrchestraThe Phil Norman TentetJohn Tirabasso Jazz All StarsThe John "Terry" Tirabasso Orchestra + +2342560Pavel PolívkaClassical percussionistNeeds VoteThe Czech Philharmonic Orchestra + +2344420Manfred GurlittManfred Ludwig Hugo Andreas GurlittGerman conductor and composer, born 6 September 1890 in Berlin, Germany and died 29 April 1972 in Tokyo, Japan.Needs Votehttps://en.wikipedia.org/wiki/Manfred_Gurlitthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/104468/Gurlitt_Manfredhttps://www.bach-cantatas.com/Bio/Gurlitt-Manfred.htmGeneralmusikdir. Manfred GurlittGeneralmusikdirektor Manfred GurlittGurlittM. GurlittMr. Manfred Gurlitt + +2344541Siegfried SchäfrichSiegfried Schäfrich (26 November 1920 - 30 November 1999) was a German horn player. +A member of the [a260744] from 1948 to 1985.Needs VoteBerliner PhilharmonikerOrchester der Bayreuther FestspieleDresdner PhilharmonieChursächsische PhilharmonieGrosses Rundfunkorchester Dresden + +2345455Peter Henderson (3)PianistNeeds Votehttp://www.aamrecordings.com/artists/133-peter-hendersonSaint Louis Symphony Orchestra + +2345458Jonathan ReycraftClassical trombonistNeeds VoteJoanthan ReycraftJon ReycraftSaint Louis Symphony Orchestra + +2345577Marco Bianchi (3)Italian classical violinist and conductor.Needs VoteAccademia BizantinaIl Giardino ArmonicoI BarocchistiLa Gaia ScienzaEnsemble VanitasConsort Del Collegio Ghislieri + +2345578Maria Cristina VasiItalian violinist born in RavennaNeeds VoteM. Cristina VasiIl Giardino ArmonicoIl QuartettoneImaginarium EnsembleArsenale Sonoro + +2345981Judith EnglishSoprano vocalistNeeds VoteThe Cambridge SingersThe English Concert Choir + +2346545Erik SalumäeEstonian tenor vocalist.Needs VoteEstonian Philharmonic Chamber ChoirVox Clamantis + +2346731Ellen DePasqualeAmerican violinist, born in 1973. She's the daughter of [a543673].CorrectEllen De PasqualeEllen dePasqualeThe Cleveland OrchestraSaint Louis Symphony OrchestraThe Florida Orchestra + +2347850Hans AltmannClassical pianist and composer (November 27, 1904 - February 25, 1961)CorrectAltmannH. AltmannProfessor Hans Altmann + +2350448Hans RijkmansClassical violinistNeeds VoteAmsterdam Bach SoloistsStraccAlouda Quartet + +2350683Walter LexuttClassical horn player and music professor.Needs VoteW. LexuttWalter LexcuttCollegium AureumLa Petite BandeKölner Kammerorchester + +2351195Иван ИрхинIvan IrkhinRussian trombonist.Needs VoteИ. ИрхинRussian National Orchestra + +2351491Craig Mulcahy (2)American trombonist.CorrectNational Symphony Orchestra + +2352269Fiona McNamaraAustralian bassoonistNeeds VoteSydney Symphony OrchestraSydney Alpha Ensemble + +2353597Jörg LehmannGerman trombonist CorrectLehmannRundfunk-Sinfonieorchester BerlinPosaunenquintett BerlinGenesis Brass + +2353598Ralf ZankGerman trombone player, born in 1960 in Templin, GDR.Correcthttp://www.staatsoper-berlin.de/de_DE/person/ralf-zank.24474Staatskapelle BerlinPosaunenquintett Berlin + +2353601Jens-Peter ErbeGerman tubist, born in 1965 in Eisenach, GDR.Needs VoteJens Peter ErbeStaatskapelle DresdenRundfunk-Sinfonieorchester BerlinPosaunenquintett BerlinSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +2353643Diego CantalupiClassical lutenist and guitarist & sound engineerNeeds Votehttps://www.diegocantalupi.com/Ensemble RespighiAlessandro Stradella ConsortL'Aura Soave CremonaParnassi MusiciKammerakademie PotsdamCanto FioritoEnsemble Salomone RossiBariantiquaAccademia FarneseAccademia Degli AstrusiConcerto Mediterraneo + +2353682Michael MeeksClassical trumpeterNeeds Votehttps://web.archive.org/web/20200920051405/https://www.veridiansymphony.org/profile/michael-meeks/https://www.elysiansociety.org/in-memory/michael-meeks/https://www.feenotes.com/database/artists/meeks-michael/M. MeekesMichael MeekesLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraCity Of London SinfoniaRoyal Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraUlster OrchestraThe Academy Of St. Martin-in-the-FieldsOrchestra Of The Royal Opera House, Covent GardenThe London Gabrieli Brass EnsembleThe English National Opera OrchestraThe BBC Northern Ireland OrchestraSacramento Choral Society & Orchestra + +2354651Karl MayrhoferAustrian oboist, born in 1927 and died in 1976.Needs VoteKarl MayerhoferOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchester der Bayreuther FestspieleBläservereinigung Der Wiener PhilharmonikerKammerorchester Der Wiener KonzertvereinigungHofmusikkapelle WienWiener Oktett + +2354931Dave LaLamaAmerican jazz pianist. Brother of jazz saxophonist [a318741].Needs VoteDave LalamaDave LamamaWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdWoody Herman And The Thundering HerdThe Joe Ascione TrioThe Lalama BrothersThe Dave LaLama Big Band + +2355301Marleene GoldsteinThe Dutch contralto and mezzo-soprano, Marleene Goldstein, studied with Peter Kooy and Lucia Meeuwsen at the Sweelinck Conservatorium in Amsterdam.Needs Votehttp://www.bach-cantatas.com/Bio/Goldstein-Marleene.htmThe Amsterdam Baroque ChoirDe Nederlandse BachverenigingNederlands Kamerkoor + +2356127John Williams' Memphis StompersJohn Williams and his Memphis Stompers was a pseudonym for Andy Kirk's Clouds of JoyNeeds VoteJohn Williams & His Memphis StompersJohn Williams And His Memphis StompersAndy Kirk And His Clouds Of JoyThe Seven Little Clouds Of JoyMary Lou WilliamsAndy KirkBud FreemanAllen DurhamHarry LawsonJohn HarringtonClaude WilliamsJohn Williams (14)Gene PrinceEdward McNeilWilliam DirvinLawrence Freeman + +2356722Erling SunnarvikNorwegian bassist, born 1954 in Florø, Norway.Needs VoteOslo Filharmoniske Orkester + +2357621Peter Carter (3)Classical violinist, born 1935 in Durban, South Africa. +Co-founder of the [a=Dartington String Quartet] in 1958. 1st Violin with [a=The Allegri String Quartet] (1976-2005).Needs VoteEnglish Chamber OrchestraPhilharmonia OrchestraThe Allegri String QuartetDartington String Quartet + +2358844Stefan SolteszStefan SoltészHungarian-Austrian conductor, born 6 January 1949 in Nyíregyháza, Hungary; died 22 July 2022 in Munich, Germany.Needs Votehttps://en.wikipedia.org/wiki/Stefan_Solteszhttps://de.wikipedia.org/wiki/Stefan_Solt%C3%A9szhttps://www.imdb.com/name/nm3185485/SolteszStefan SoltészStetan SolteszСтефан Сольтежステファン・ゾルテス + +2358917Bart De VreesPercussionist.Needs Votehttps://www.bartdevrees.com/Radio KamerorkestNederlands Fanfare Orkest + +2359559Jonathan QuirkClassical trumpeterNeeds VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +2360625Trist Ethan CurlessNeeds Votehttps://manhattantransfer.net/trist-curless/https://de.wikipedia.org/wiki/Trist_CurlessT. CurlessT. E. CurlessTris CurlessTristTrist CurlessThe Manhattan TransferM-Pact (2) + +2361229Lois SchaeferLois Schaefer (10 March 1924 - 31 January 2020) was an American flute and piccolo player. She's the sister of [a874821].Needs VoteBoston Pops OrchestraBoston Symphony OrchestraChicago Symphony OrchestraNew York City Opera Orchestra + +2361289Stephan LogesClassical bass / baritone vocalist.Needs Votehttps://www.rayfieldallied.com/artists/stephan-logeshttps://www.gsmd.ac.uk/staff/stephan-logesLogesStephen LogesThe Monteverdi Choir + +2361311Martin Winter (2)Trumpeter. + +Graduate of the Royal Northen College of Music in Manchester, where he studied trumpet with [a883768] and John Dickinson. He has been a freelance trumpeter with most of the major British orchestras, and was associate Principal Trumpet of the [a837699] from 1992 to 2000. From the 2000/2001 season, he has been Co-Principal Trumpet with [a1036751]. (Source: 2003) + +Winter started playing cornet at 5 years old. +After winning many Slow Melody and Air Varie competitions, he auditioned for [a2916289], and became their Principal Cornetist 3 years later. Since then, he has played Principal Cornet with other brass bands, notably [a3480448], [a29759], [a3484380] and the National Youth Brass Band of Great Britain. + +In 1988, he entered the Royal Northern College of Music, and after graduating he became a Junior Fellow in teaching, and commenced playing with [a837699], and started teaching at the RNCM. + +After joining [a1036751], he has also played lead trumpet with [a2052621], started teaching at the Grieg Academy in Bergen, and has become a member of [a2057894].Needs VoteMartin WinterWinterBergen Filharmoniske OrkesterBergen Big BandEikanger-Bjørsvik Musikklag + +2361312Kjell Erik HusomBass trombonist.Needs VoteKjell-Erik HusomBergen Filharmoniske OrkesterBergen Big Band + +2361600Leon MerianLeon MegerdichianAmerican jazz trumpeter as well as composer, arranger, and conductor. Born: September 17, 1923 South Braintree, Massachusetts Died August 15, 2007. He played in the [a344328], making him one of the first whites to play in an all-black band. He learned trumpet from [a10001164]. Merian was also a French teacher and public school administrator. +Needs Votehttps://en.wikipedia.org/wiki/Leon_Merianhttps://adp.library.ucsb.edu/names/331266L. MerianLeon MeriamLeon Merian And His TrumpetMerianLucky Millinder And His OrchestraLeon Merian And His Mood Recording OrchestraThe Leon Merian Jazz QuartetLeon Merian And His OrchestraSpecs Powell & Co. + +2361879Ernest RomboutDutch oboist, born in 1959.Needs VoteNieuw Sinfonietta AmsterdamValerius EnsembleXenakis Ensemble + +2362236Matt Parker (4)Matt Parker is a saxophonist, composer, and producer exploring the intersections of jazz, improvisation, and sound design. His work spans live performance, film scoring, and experimental music.Needs Votehttps://www.mattparkermusic.com/Maynard FergusonHess Is MoreMatt Parker Trio + +2363091Matthew McDonaldAustralian double bassist.Needs VoteEnsemble ModernBerliner PhilharmonikerRundfunk-Sinfonieorchester BerlinDR RadioSymfoniOrkestretSwonderful Orchestra + +2363399Benoît ArnouldFrench bass / baritone vocalist studied singing at the Conservatoire in Metz before going to work with Christiane Stutzmann at the Conservatoire in Nancy, where he obtained a gold medal, a diploma and a first interregional prize improvement in lyrical chant, which concluded his studies in June 2007.Needs Votehttp://www.bach-cantatas.com/Bio/Arnould-Benoit.htmhttp://www.benoitarnould.com/fr/Les Arts FlorissantsLes CyclopesLe Poème HarmoniqueGli Angeli GenèveLa Chapelle RhénaneLa Guilde Des MercenairesLes Épopées + +2363516Edmund KurtzCellist, born 29 December in St Petersburg, Russia and died 19 August 2004 in London, England.Needs VoteKurtzChicago Symphony Orchestra + +2363517Joseph SchusterJoseph Schuster (23 May 1903 - 16 Febraury 1969) was a Cellist born Constantinople of Russian-Jewish descent. +A member of the [a260744] from 1929 to 1934.Needs Votehttps://en.wikipedia.org/wiki/Joseph_Schuster_(cellist)https://adp.library.ucsb.edu/names/109386J. SchusterJosef SchusterBerliner PhilharmonikerNew York Philharmonic + +2363755Tony LeonardiAnthony Salvatore LeonardiAmerican jazz bassist, educator, and conductor. Faculty at Youngstown State University from 1979 to 2001, and founder of the jazz studies program at YSU's Dana School of Music. Born March 14, 1939; died July 12, 2001.Needs Votehttps://www.youtube.com/@TonyLeonardihttps://www.facebook.com/TonyLeonardiTribute/Anthony LeonardAnthony LeonardiWoody Herman And His OrchestraWoody Herman And The Swingin' HerdRob Bulkley Quintet + +2364182Stefanie HeichelheimClassical viola player.Needs VoteStephanie HeichelheimThe SixteenCollegium Musicum 90I FagioliniGabrieli PlayersThe Symphony Of Harmony And InventionLondon Early OperaThe English ConcertSpiritato! + +2364184Christopher SucklingClassical cellist & bass violin instrumentalistNeeds Votehttp://christophersuckling.com/Chris SucklingI FagioliniGabrieli PlayersFeinstein EnsemblePassacaglia Ensemble + +2364185Thomas KirbyClassical violin + viola playerNeeds VoteLa SerenissimaGabrieli PlayersThe Avison Ensemble + +2364187Anna Holmes (2)Anna Lesceline HolmesClassical cellist and actress, born in England, since based in Germany.Needs Votehttp://www.annaholmes.de/I FagioliniLondon Classical PlayersGabrieli Players + +2364188Jean PattersonClassical violinistCorrectGabrieli Players + +2364189Nia LewisViolinist from the UK.Needs VoteOrchestra Of The Age Of EnlightenmentGabrieli PlayersThe King's ConsortDunedin ConsortClassical OperaRetrospect EnsembleThe Mozartists + +2364190Emma AlterEnglish viola player.Needs Votehttps://www.emmaalter.co.uk/The SixteenThe English Baroque SoloistsThe Academy Of Ancient MusicCollegium Musicum 90Gabrieli PlayersHanover BandLa Nuova MusicaArcangelo + +2364191Katy BircherClassical flutist.Needs VoteKatherine BircherLa SerenissimaNew London ConsortGabrieli PlayersThe King's ConsortDunedin ConsortConcerto CopenhagenEuropean Brandenburg EnsembleRetrospect EnsembleThe Mozartists + +2364192Julia BlackClassical violin/viola player.Needs VoteCollegium Musicum 90Gabrieli PlayersLa Nuova Musica + +2364193Siv ThomassonClassical violinistCorrectGabrieli Players + +2364194Robert HowarthClassical keyboard instrumentalistNeeds VoteGabrieli ConsortLa SerenissimaThe King's ConsortThe Avison EnsembleEnsemble Guadagni + +2364195Debbie Diamond (3)Classical violinist, specialising in Baroque historical performance. She was born in Toronto, Canada.Correcthttp://debbiediamond.co.uk/bio.htmlThe English Baroque SoloistsOrchestra Of The Age Of EnlightenmentGabrieli Players + +2364196Claire DuffIrish classical violinistNeeds Votehttps://claireduffviolin.com/The SixteenCollegium Musicum 90Gabrieli PlayersThe Irish PhilharmoniaAtalanteIrish Baroque OrchestraThe English ConcertRetrospect Ensemble + +2364197Daniela BraunGerman violinist, born in Potsdam, Germany.Needs VoteGabrieli PlayersOrchester Der Komischen Oper BerlinJohann Rosenmüller EnsembleSwonderful OrchestraCapella Vitalis Berlin + +2364200Kirra ThomasAustralian classical violinist, based in London, UK.Needs VoteGabrieli PlayersNew Dutch AcademyLa Nuova MusicaLondon Early OperaThe English Concert + +2364201Rachel RowntreeClassical violinistNeeds VoteGabrieli PlayersLes SièclesThe Avison Ensemble + +2364202Hiroko MoiseyClassical violinist + groupCorrectGabrieli Players + +2364204Camilla ScarlettClassical violinistNeeds VoteLa SerenissimaGabrieli Players + +2364757Hebe MensingaViolin playerNeeds VoteNieuw Sinfonietta AmsterdamHolland SymfoniaAmsterdam Soloist Quintet + +2365741Malcolm LayfieldJohn Malcolm LayfieldClassical violinist from Manchester, England. As of 2014 he is being charged with rape of a former student.Needs VoteLayfieldRaglan Baroque PlayersThe Goldberg Ensemble + +2365743Nina HarriesNina HarriesClassical cellist. + +For the double bassist and vocalist, please use [a=Nina Harries (2)]Needs VoteRaglan Baroque Players + +2365801Janet HiltonBritish clarinetist and teacher.Needs Votehttps://samekmusic.com/artist/janet-hilton/Scottish Chamber OrchestraThe Welsh National Opera OrchestraThe Manchester Camerata + +2365877Peter ThorleyClassical trombonist.Needs VoteGabrieli ConsortThe Academy Of Ancient MusicLa Petite BandeLondon Classical PlayersThe London Gabrieli Brass Ensemble + +2366172Brett StampsAmerican jazz trombone player. Brett Stamps held the position of Director of Jazz Activities at Southern Illinois University-Edwardsville (SIUE) from 1979 -2019 where he initiated the Jazz Performance Degree. He directed the SIUE Concert Jazz Band and taught jazz combo, improvisation, arranging, trombone, education, and history. After his retirement he was honored with the title of Professor Emeritus. He obtained his BA in Music from the College of William and Mary (1970) and his MM in Studio Music and Jazz Pedagogy from the University of Miami (1975). Brett performed, recorded and arranged for the United States Army Field Band Jazz Ambassadors (1970-1973), the Stan Kenton Orchestra (1973-1974), and the University of Miami Concert Jazz Band (1974-1978) before accepting a teaching position at Miami-Dade Community College New World Center (1978-1979). St. Louis area performance credits include the Jim Widner, Kim Portnoy, Mo Bottom and Gary Dammer Big Bands; Fox Theater & MUNY Orchestras; the St. Louis Rivermen; Cornet Chop Suey, Legacy; Galaxy; the SIUE Jazz Faculty; and various clinics, concerts and recordings (including his new CD release In Your Own Sweet Way for Victoria Records). Brett remains active as a composer/arranger and clinician. Past endeavors include directing Missouri and Illinois All-State/All-District Jazz Bands, presenting trombone ensemble masterclasses (USF), writing music commissioned by the IMEA, private individuals and local schools, directing annual concerts of his original music at the historic Sheldon Concert Hall in St. Louis, writing for trombone quintet, touring nationally with Cornet Chop Suey and the St. Louis Rivermen and teaching/performing at the Jim Widner Band Camps.Needs Votehttps://web.archive.org/web/20180527020810/http://www.brettstamps.com/Stan Kenton And His OrchestraCornet Chop SueyThe Big Bad Bones + +2366278Morten AgerupMorten AgerupSwedish classical tubist of Norwegian descent based in Gothenburg, born on March 25, 1959 in Norway. + +Morten Agerup has earlier been a member and musician of the Swedish symphony orchestra [a1015406]. + +Morten Agerup is married to the Swedish violinist [a253120].Needs Votehttps://www.facebook.com/morten.agerup.96https://se.linkedin.com/in/morten-agerup-2624aa88Göteborgs SymfonikerGageego! + +2366429Leonard HirschIrish violin player & professor, and conductor. Born 19 December 1902 in Dublin, Ireland - Died 4 January 1995 in Bristol, England, UK. +He studied at the [url=https://www.discogs.com/label/459222-Royal-Northern-College-Of-Music]Royal Manchester College of Music[/url] (1919-1927). In 1921, he became Principal & Soloist of the [a374006]. In 1925, he founded the [b]Hirsch String Quartet[/b]. Leader of the [b] BBC Empire Orchestra[/b] from 1937 until its disbanding in 1939. Leader and 1st Violin of the [a=Philharmonia Orchestra] (1945-1949). Leader of [a=Sinfonia Of London]. Conductor of his own ensemble, the [a=Hirsch Chamber Players]. Professor of Violin at the [l290263] (1967-1979).Needs Votehttps://www.oxfordmusiconline.com/grovemusic/view/10.1093/gmo/9781561592630.001.0001/omo-9781561592630-e-0000013075https://www.independent.co.uk/news/people/obituaries-leonard-hirsch-1568529.htmlhttps://www.imdb.com/name/nm6315047/The Hirsch QuartetHallé OrchestraPhilharmonia OrchestraThe Central Band Of The Royal Air ForceSinfonia Of LondonHirsch Chamber Players + +2366695Jan Damen (2)Jan Dahmen (30 June 1898 - 20 December 1957) was a Dutch violinist.Needs VoteJan DamenStaatskapelle DresdenConcertgebouworkestGöteborgs Symfoniker + +2367873Jan VobořilCzech hornistNeeds VoteJan Jr. VobořilThe Czech Philharmonic Orchestra + +2367880Ondřej SkopovýClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +2368078Carmen GuillemClassical oboistNeeds VoteCarmen GuillenOrquesta Sinfónica De Madrid + +2368637Stephan VanaenrodeClassical tubistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +2369544Carolyn HopkinsCellist. Liner notes translator. She's married to [a1204595].Needs VoteCarolyn Hopkins MartiEnsemble Eduard MelkusTonhalle-Orchester ZürichTrio Mersson + +2369549Alexandre SteinCellist.Needs VoteA. SteinDie Kammermusiker ZürichChumachenco StreichquartettNeues Zürcher Quartett + +2369755Edward ChanceClassical wind instrumentalist.Needs VoteThe Academy Of Ancient Music + +2369756Jennifer McLaren(British?) Classical clarinettist. +She studied at the [l290263]. She has performed as a member of the [a212726]. Principal E Flat Clarinet of the [a=Philharmonia Orchestra]. +E Flat Clarinet teacher at [l305416].Needs Votehttps://www.linkedin.com/in/jennifer-mclaren-01b6351b7/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/mclaren-jennifer/https://philharmonia.co.uk/bio/jennifer-mclaren/London Symphony OrchestraPhilharmonia OrchestraColin Towns Mask OrchestraLondon Winds + +2369967Sara GentileClassical cellist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2371048Frank AnepoolTrumpeterNeeds VoteCollegium VocaleCamerata TrajectinaCombustion ChamberClazz Ensemble + +2371349Ulrike SchaarCellist.CorrectConcerto KölnLe Concert Des nations + +2371354Gabriele NußbergerViolinist.Needs VoteGabriele NussbergerConcerto KölnLa Stravaganza KölnEpoca BaroccaDas Neue OrchesterNeue Düsseldorfer HofmusikSalzburger Hofmusik + +2371471François DupuichNeeds Major ChangesF. DupuichFrancois Dupuich + +2371481Maria ReiningAustrian soprano vocalist born August 7, 1903 in Vienna, Austria-Hungary, died March 11, 1991 in Deggendorf, Bavaria, Germany.Needs Votehttp://en.wikipedia.org/wiki/Maria_ReiningEva-Maria ReiningM. ReiningReiningМария Райнинг + +2372183Harsányi ZsoltClassical recorder + bassoon playerNeeds VoteHarsányiHarsányi Zs.Zs. HarsányiZsolt HarsányiCamerata HungaricaLiszt Ferenc Chamber Orchestra + +2372788Johanna QvammeDanish violinistNeeds VoteDR SymfoniOrkestret + +2373231Mark KelloggAmerican trombonist and euphonium player.CorrectRochester Philharmonic Orchestra + +2373232William Williams (4)American trumpet player.Needs VoteSan Francisco SymphonyRochester Philharmonic Orchestra + +2373858Volker WorlitzschVolker Worlitzsch (17 August 1944 - 4 May 2023) was a German violinist and former Konzertmeister of the [a895986]. He's the father of [a6712842].Needs VoteBerliner PhilharmonikerBerliner SymphonikerRadio-Philharmonie Hannover Des NDRZürcher KammerorchesterJoachim-Quartett Hannover + +2373863Richard CallaciNeeds Major ChangesRich Callaci + +2374482Sydney FierroClassical bass/baritone vocalistNeeds Votehttps://www.sydneyfierro.comLe Concert D'AstréePygmalionChœur Marguerite Louise + +2375060Sam KennedyLondon, UK-based string player (mainly violin and viola).Needs VoteThe Academy Of Ancient MusicThe Niche London String Quartet + +2375182Nico BrandonDutch violinist, conductor and composer (born 1944)Needs VoteBrandonN. BrandonRadio KamerorkestCaecilia Consort + +2375237Angela PresuttiAngela Presutti KorbitzSoprano vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +2375652Jimmy Robinson (8)American jazz trumpeterNeeds VoteDexter Gordon Quartet + +2375929Radomír PivodaCzech flautist.Needs VoteThe Czech Philharmonic Orchestra + +2376276Jule Styne And Sammy CahnProlific American songwriter-duo.Needs Votehttps://theculturalcritic.com/songwriters-sammy-cahn-julie-styne/-S. Cahn-Styne-C. Cahn - J. StyneC. Kahn-J. StyneC.Kahn-J. StyneC.Kahn-J.StyneCahnCahn & SteinCahn & StyneCahn , StyneCahn - SteinCahn - SteineCahn - SteyneCahn - StryneCahn - StyneCahn -StyneCahn / Julie StyneCahn / SteynCahn / StineCahn / StyneCahn And StyneCahn Sammy, Styne JuleCahn StyneCahn y StyneCahn, J. StyneCahn, Sammy / Styne, JulesCahn, SteinCahn, StyneCahn- StyneCahn--StyneCahn-Jule-StyneCahn-SteinCahn-StryneCahn-StyneCahn-StynesCahn. S/Styne, JCahn/ StyneCahn/SteinCahn/SteyneCahn/StyneCahn/SytneCahn; StyneCahn[-StyneCahne / StyneCahne • StyneCahn–StyneChan - StyneChan, Jule StyneChan-StyneChan/StyneCohn & StyneCohn - StyneCohn And StyneCohn-StyneI. Styne/S. CahnI. Styne–S. CahnJ Styne - S CahnJ Styne / S CahnJ Styne, S CahnJ. Stein, S. CahnJ. Stein-S. CahnJ. Steyne, S. CahnJ. Stryne/S. CahnJ. Stune / S. CahnJ. Style-S. CahnJ. StyneJ. Styne & S. CahnJ. Styne & Sammy CahnJ. Styne - C. CahnJ. Styne - KahnJ. Styne - S. CahnJ. Styne - S. KahnJ. Styne - Sammy CahnJ. Styne . S. CahnJ. Styne / C. CahnJ. Styne / S. CahmJ. Styne / S. CahnJ. Styne And S. CahnJ. Styne S. CahnJ. Styne y S. CahnJ. Styne — S. CahnJ. Styne, S. CahnJ. Styne, S. KahnJ. Styne, S.CahnJ. Styne- S. CahnJ. Styne-CahnJ. Styne-KahnJ. Styne-S. CahnJ. Styne-S. KahnJ. Styne-S.CahnJ. Styne/ S. CahnJ. Styne/S, CahnJ. Styne/S. CahnJ. Styne/S. ChanJ. Styne/S. KahnJ. Styne/S.CahnJ. Styne–S. CahnJ. Styne—S. CahnJ.Styn-S.CahnJ.Styne - S. CahnJ.Styne - S.CahnJ.Styne, S.ChanJ.Styne,S.CahnJ.Styne-S. CahnJ.Styne-S.CahanJ.Styne-S.CahnJ.Styne-S.ChanJ.Styne/S. CahnJ.Styne/S.CahnJule - Styne - Sammy CahnJule Cahn And Sammy StyneJule Stein, Sammy CahnJule Stein/Sammy CahnJule Style - Sammy CahnJule Styn & Sammy CahnJule Styne & Sammy CahnJule Styne , Sammy CahnJule Styne - KahnJule Styne - Sammy CahnJule Styne - Sammy Cohen CahnJule Styne - Samuel CahnJule Styne - Samuel Cohen CahnJule Styne / S. CahnJule Styne / Sammy CahnJule Styne / Sammy KahnJule Styne / Sammy KhanJule Styne and Sammy CahnJule Styne, Sammy CahnJule Styne, b Julius Kerwin Stein, Sammy CahnJule Styne-KahnJule Styne-Sam CahnJule Styne-Sammy CahnJule Styne-Sammy CohnJule Styne-Samuel CahnJule Styne/Manny CahnJule Styne/S. CahnJule Styne/Sammy CahmJule Styne/Sammy CahnJule Styne/Sammy KahnJule Styne; Sammy CahnJule Stynn, Sammy CahnJule-Styne-Sammy CahnJules Stryne, Sammy CahnJules Styne & Sammy CahnJules Styne - Sammy CahnJules Styne And Sammy CahnJules Styne, Sammy CahnJules Styne-Sammy CahnJules Styne-Sammy CohanJules Styne/S. CahnJules Styne/Sammy CahnJulie Styne & Sammy CahnJulie Styne - Sammy CahnJulie Styne / Sammy CahnJulie Styne And Sammy CahnJulie Styne, Sammy CahnJulie Styne, Sammy KahnJulie Styne-Sammy CahnJulie Styne/Sammy CahnJuly Styne, Sammy CahnJuly Styne-Sammy CahnJuly Styne/CahnJune Styne & Sammy CahnJyle Styne-Sammy CahnKahn & StineKahn - SteyneKahn - StineKahn - StyneKahn / StyneKahn And SteinKahn And StineKahn StyneKahn, StyneKahn-SteinKahn-StineKahn-StyneKahn/StyneLahn/StyneMule Styne, Sammy CahnP.J. Styne/S.CahnQuaver-BarrowS Cahn/J StyneS. CahnS. Cahn & J. StyneS. Cahn - J. SteinS. Cahn - J. StynS. Cahn - J. StyneS. Cahn - StyneS. Cahn / J. StyneS. Cahn / Jule StyneS. Cahn / StyneS. Cahn And J. SlyneS. Cahn And J. StyneS. Cahn J. StyneS. Cahn – J. StyneS. Cahn, J. SteyneS. Cahn, J. StyleS. Cahn, J. StyneS. Cahn- J. StyneS. Cahn-J. StyneS. Cahn-J.StyneS. Cahn-S. StyneS. Cahn-StyneS. Cahn-j. StyneS. Cahn/ J. StyneS. Cahn/J. StynS. Cahn/J. StyneS. Cahn/J. SytneS. Cahn/StyneS. Cahn; J. StyneS. Cahne/J. StyneS. Cahn–J. StyneS. Cahn—J. StyneS. Cahn—StyneS. Cann - J. StyneS. Cann-J. StyneS. Chan - J. StyneS. Chan, J. SteinS. Chan-H. StyneS. Chan-J. StyneS. Chan/ J. StyneS. Cohn, J. StyneS. Cohn-J. SteinS. Hahn/J. StyneS. Kahn & J. StineS. Kahn & J. StyneS. Kahn & J.StyneS. Kahn - J. StyneS. Kahn Et J. StyneS. Kahn, J. StyneS. Kahn-J. StyneS. Kahn.J. StyneS. Kahn/J.StyneS. Khan-J. StyneS. Skylar-J. ShaftelS.Cahn - J. StyneS.Cahn - J.StyneS.Cahn / J.StyneS.Cahn-J. StyneS.Cahn-J.StyneS.Cahn/J. StyneS.Cahn/J.StyneS.Kahn,J.StyneS.Kahn-J.StyneSammy Cahn & JUle StyneSammy Cahn & Jule StyneSammy Cahn & Jules StyneSammy Cahn & Julie StyneSammy Cahn & StyneSammy Cahn - J. StyneSammy Cahn - Jule StyneSammy Cahn - Jules StyneSammy Cahn - Julie StyneSammy Cahn / Jule StyneSammy Cahn / Jule Styne And Sammy CahnSammy Cahn / Jules StyneSammy Cahn / Julie StyneSammy Cahn And Jule StyneSammy Cahn And Julie StyneSammy Cahn Jule StyneSammy Cahn Og Jule StyneSammy Cahn and Jule StyneSammy Cahn and Julie StyneSammy Cahn ~ Jule StyneSammy Cahn, Jule SteinSammy Cahn, Jule StyleSammy Cahn, Jule StyneSammy Cahn, Jules StineSammy Cahn, Jules StyneSammy Cahn, Julia StyneSammy Cahn, Julie SteinSammy Cahn, Julie StyneSammy Cahn-James Van HeusenSammy Cahn-Jule SteinSammy Cahn-Jule StyneSammy Cahn-Jules StyneSammy Cahn. Jule StyneSammy Cahn/Jule SteinSammy Cahn/Jule StyneSammy Cahn/Jules StyneSammy Cahn/Julie StyneSammy Cash-Jules StyneSammy Chan - Jule StyneSammy Chan / Jules StyneSammy Chan, Jule StyneSammy Chan-Jules StyneSammy Cohn/Jule SteinSammy Kahn / Jule StyneSammy Kahn And Julie StyneSammy Kahn Jule StyneSammy Kahn and Jule StyneSammy Kahn, Jule StyneSammy Kahn/Jule StyneSammy Khan - J.StyneSammy Khan, Jule StyneSammy O'nhn / Jule StynerSammy O'nhn- Jule StynerSamuel Cahn - Jule StyneSiyne-CahnStayne / KahnStayne-CahanStayne/KahnStein-CahnStein/CahnSteyne - CahnSteyne / CahnSteyne, CahnSteyne/CahnStine & KahnStine - Cahn - AndrewsStine, KahnStine,KahnStine-CahnStine/CohnStone-KahnStye-CahnStyle - CahnStyle / CahnStyle, CahnStyle-CahnStyle/CahnStyn/CahnStyneStyne & CahnStyne & KahnStyne & S. CahnStyne - CahnStyne - CahnStyne - CarrStyne - ChanStyne - KahnStyne - S. CahnStyne - Sammy CahnStyne / CahnStyne / CahnStyne / CarfurtStyne / Samy KahnStyne ; CahnStyne And CahnStyne CahnStyne y CahnStyne — CahnStyne(CahnStyne, CahnStyne, CahneStyne, CarfurtStyne, J. / Cahn, S.Styne, Jule - Cahn, SammyStyne, KahnStyne, VahnStyne- CahnStyne-CahnStyne-CarrStyne-KahnStyne-KohnStyne/ CahnStyne/CahlStyne/CahnStyne/CainStyne/CarfurtStyne/KahnStyne/S. CahnStyne/Sammy CahnStyne; CahnStynes - CahnStynes/CahnStyne—CahnSyyne-Cahnchan, StynwДж. Стайн — С. КанЖуль Стайн, Семмі КаннСтайн/КанSammy CahnJule Styne + +2376623Sol SchoenbachAmerican bassoonist and teacher, born in 1915, died in 1999.Needs VoteSchoenbachThe Philadelphia OrchestraThe New Music Of Reginald ForesythePhiladelphia Woodwind Quintet + +2377167Welsh National Opera ChorusNeeds Major ChangesChoeursChorusChorus Of The Welch National OperaChorus Of The Welsh National OperaChorus Of Welsh Nationa OperaChorus Of Welsh National OperaChorus Welsh National OperaChorus of Welsh National OperaChorus of the Welsh National OperaCoro De La Opera Nacional De GalesCoro Nacional de la Opera de GalesCoro de la Opera Nacional de GalesThe Orchestra Of Welsh National OperaThe Welsh National Opera ChoraleThe Welsh National Opera ChorusWelsh National OperaWelsh National Opera ChoraleAlexander Martin (5) + +2378270Nanja BreedijkFrench harpist. +She teaches baroque harp at the Conservatoire National de Région in Toulouse and continuous bass at the Conservatoire National Superieur de Musique de Paris and at the Higher School of Music of the Basque Country (Musikene) San Sebastián (Spain).Needs VoteNanja BreedjikLes Arts FlorissantsLe Poème HarmoniqueEnsemble ArtaserseLes PaladinsAkadêmia + +2378815Howard EthertonHoward David EthertonSwedish bassoon player from Jonsered (outside of Gothenburg), born on 29 January 1942.Needs VoteHenry Mancini And His OrchestraEnglish Chamber OrchestraGöteborgsmusiken + +2379961Karen Clark YoungAmerican classical alto vocalistCorrectPomerium + +2381404Duck And Cover (2)Hardcore punk band from Oakland, CA, USA, formed in November 2007.Needs Vote + +2381502Westminster Symphonic ChoirThe Westminster Symphonic Choir is composed of students at Westminster Choir College, a division of Rider University’s Westminster College of the Arts, in Princeton, New Jersey, USA. + +Correcthttp://www.rider.edu/wcc/academics/choirs/westminster-symphonic-choirCoro de WestminsterDer Westminster ChorSolistes Westminster ChoirSymphonic Coro WestminsterThe Men of the Westminster ChoirThe Westminster ChoirThe Westminster Symphonic ChoirWashington Westminster Symphonic ChoirWestminster ChoirWestminster Choir College Male ChorusWestminster ChorWestminster College ChoirWestminster Symphony ChorWestminster-ChorВестминстерский ХорВестминстерский хорウェストミンスター合唱団Westminster ChoirWestminster Williamson VoicesGlenn Parker (2) + +2381781Elsa FrankClassical wind instrumentalistNeeds VoteElsa FranckLe Concert SpirituelLe Poème HarmoniqueDoulce MémoireEnsemble ClematisSyntagma AmiciEnsemble Ludwig SenflEnsemble EolusLes Ombres (3)La Guilde Des Mercenaires + +2381784The Choir Of Westminster AbbeyChoir of the Westminster Abbey, located in the City of Westminster, London, U.K. + +The ensemble is directed by [a918932], Organist and Master of the Choristers.Needs Votehttps://www.westminster-abbey.org/worship-music/music/the-abbey-choir-and-musicians/the-choirBoys Of The Choir Of Westminster AbbeyChoeursChoir Of Westminster AbbeyChoir Of Westminster Abbey & OrchestraChoir of Westminster AbbeyChoiristers Of Westminster AbbeyChoristers Of Westminster AbbeyChoristers Of Westminster Abbey ChoirChoristers of Westminster AbbeyChœurs De L'Abbaye De WestminsterHet Koor Van Westminster AbbeyLe Choeur De L'Abbaye De WestminsterThe Choir And Congregation Of Westminster AbbeyThe Choirs Of Westminster AbbeyThe Choristers Of Westminster AbbeyThe Westminster Abbey ChoirWestminster AbbeyWestminster Abbey ChoirWestminster ChoirWestminster-apátság Kórusaウエストミンスター寺院聖歌隊Martin Neary (2)Julian EmpettFrancis BrettRobert MacdonaldLawrence WallingtonSimon BirchallLeigh NixonJohn AlleyJames O'Donnell (2)Roger CleverdonAndrew Giles (2)Michael LeesSimon GaySteven HarroldJoseph CrouchJulian StockerDavid Martin (22)Gabriel CrouchWilliam RowlandWilliam BalkwillBeans BalawiChristopher TippingJohn NewWilliam FairbairnHee-Rak YangTrojan NakadeSamuel SlatteryCameron Roberts (2)Dominic ChambersJamie ElliottRaphael Taylor-DaviesMaxim Del MarWilliam Kitchen (2)Shaun WoodAshley Waters (2)Daniel ParrBenedict KearnsNicholas TrappBenedict MorrisAugustus StreetingDavid Warren (4)Humphrey ClucasAlexander Martin (3)Matthew JeffersThomas SneddonIan Page (7)Barnaby Smith (2)Adam Aiken (2)Benedict Macklow-SmithCharles Shaw (12)Edward Maxwell (2)Edward SylvaFreddie GoffGeorge PurvesJames Jordan (11)James Thomson (14)Michael Francis (17)Omar ByrneOscar WickhamPatrick Maxwell (2)Ruihan Bao-SmithSamuel Turner (2)Sasha Del MarStephen Lam (4)Thomas ByrneZebedee BuckeridgeJames Tweedie (3) + +2381888Robert Robinson (4)US jazz trombonistCorrectBob RobinsonHarry James And His Orchestra + +2382781Robert Ferrentino BrownClassical violin / viola playerNeeds VoteRobert FerrentinoRoberto Ferrentino-BrownEuropa GalanteEnsemble Baroque De Nice + +2382844Beverly LeBeckAmerican cellist. She was married to [a3014533].Needs VoteBeverly Le BeckLos Angeles Philharmonic OrchestraThe Metropolitan Opera House Orchestra + +2383087Corrado GiuffrediClassical clarinettist.Needs VoteGiuffrediOttetto ItalianoOrchestra Della Radio Televisione Della Svizzera ItalianaI Filarmonici Di Busseto + +2383088Gabriele ScrepisClassical bassoonist.Needs VoteOttetto ItalianoFilarmonica Della ScalaI Solisti Della Filarmonica Della Scala + +2384360Christoph August TiedgeGerman poet, born 14 December 1752, died 8 March 1841.Needs VoteA.C. TiedgeC. A. TiedgeC.A. TiedgeCh. A. TiedgeChr. A. Tiedge ("Urania")Christian August TiedgeChristoph A. TiedgeTiedgeХристофер Авґуст Тідґе + +2384361Paul Von HaugwitzCount Paul von Haugwitz (22 January 1791 – 1856) wrote the poem used by [a= Ludwig van Beethoven] on the lied "Resignation" (WoO 149).CorrectGraf v. HaugwitzHaugwitzP. Graf Von HaugwitzP. Graf von HaugwitzP. Von HaugwitzPaul Graf Von HaugwitzPaul Graf von Haugwitz + +2385669Baron LeeJimmy FergusonLeader 1932-1933 of [a=The Mills Blue Rhythm Band].Needs VoteBaron Lee And The Blue Rhythm BandThe Mills Blue Rhythm Band + +2385676Gene MikellFrancis Eugene MikellEarly jazz violinist, cornetist and saxophonist +Born 1880 or 17 March 1885, in Charleston, South Carolina +Died 19 January 1932, in Brooklyn, New YorkNeeds Votehttps://www.imdb.com/name/nm0586392/biohttps://digitalcommons.unl.edu/musicfacpub/60/https://books.google.de/books?id=jsnYCwAAQBAJ&pg=PT459&lpg=PT459&dq=%22Gene+Mikell%22++1880+1932&source=bl&ots=tn0G-zrn-j&sig=ACfU3U2uHKiZOUaIoa8ZWSM06HPRSuKwOQ&hl=de&sa=X&ved=2ahUKEwiQ2-bI3-vlAhXCjqQKHQdXD4kQ6AEwDXoECAkQAQ#v=onepage&q=%22Gene%20Mikell%22%20%201880%201932&f=falsehttps://www.allmusic.com/artist/gene-mikell-mn0001558914/biographyGene MikelMikellThe Mills Blue Rhythm Band + +2386617Ted Wallace & His OrchestraNeeds Major ChangesTed Wallace & His Orch.Ted Wallace And His OrchestraTed Wallace OrchestraTed Wallace's OrchestraTeddy Wallace And His OrchestraHal Kemp And His OrchestraCalifornia RamblersFred Rich And His OrchestraThe BostoniansBroadway NitelitesOriole Dance OrchestraBen Selvin & His OrchestraEddie Thomas' CollegiansGolden Gate OrchestraCloverdale Country Club OrchestraHollywood Dance OrchestraThe HarmoniansJoseph Samuels' Jazz BandLou Gold And His OrchestraMills Musical ClownsEd Parker And His OrchestraCarolina Club OrchestraThe Columbia Photo PlayersFrisco SyncopatorsEarl Lee And His SongstersEarl Marlow's OrchestraEd Loyd & His OrchestraWally Edwards & His OrchestraUniversity SixBroadway Music MastersErnie Golden And His OrchestraBuddy Campbell & His OrchestraThe Dixie PlayersThe AstoritesSam Lanin & His OrchestraNathan Glantz And His OrchestraDale's Dance OrchestraJack Pettis And His BandThe Columbians (3)Dick Cherwin & His OrchestraBaltimore Society OrchestraLa Palina BroadcastersChicago RedheadsHarry Barth's MississippiansJoseph Samuels' OrchestraThe Broadway RevelersTed White's CollegiansJack Marshall's OrchestraPaul Sanderson And His OrchestraThe Bostonians (3)Club Wigwam OrchestraMoana OrchestraThe SaxopatorsLouis Katzman's Dance OrchestraDan Crawford's SyncopatorsPalace Garden OrchestraOriole SerenadersBob Willard's OrchestraFred Rich & His La Palina OrchestraGeorgia Moonlight SerenadersLloyd Hall And His OrchestraBuddy Fields And His OrchestraLouis Katzman And His OrchestraBrown's Dixieland OrchestraParamount Novelty OrchestraParamount Jazz Band (2)Jazzazza Jazz BandCarolina CollegiansTed Raph And His OrchestraAl Epps & His Hotel Astor OrchestraLos Toreros MúsicosJoe Ryan & His OrchestraThe Broadway StrollersGolden Gate Orchestra (2)Al Dollar & His Ten CentsCliff Roberts' Dance OrchestraOstend Society OrchestraAdrian RolliniEd KirkebyJack Powers + +2388064George W. SmithAmerican big-band reed player (clarinet, saxophone) of the 1950s. + +For the British dance-band reed player (clarinet, saxophone) of the 1920s to 1940s, see [a=George Smith (5)].Needs VoteGeo. W. SmithGeorge SmithLouis Armstrong And His Orchestra + +2388573Kevin HathwayBritish classical percussionist, educator, and author. +He studied trombone and percussion at the [l290263]. He was Principal Percussion of the [a=BBC Philharmonic] before joining the [a=Philharmonia Orchestra] in 1979 as Co-Principal Percussion. Founding member of [a=The Wallace Collection]. Head of Percussion at the Royal College of Music (1986-2007). In 2008, he was appointment as Head of Wind, Brass and Percussion at [l=The Purcell School]. Professor of Percussion at [l305416] (2008-present). Owner of a publishing company devoted exclusively to educational percussion books.Correcthttps://en.wikipedia.org/wiki/Kevin_Hathwayhttps://www.feenotes.com/database/artists/hathway-kevin/https://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/1381-kevin-hathway/http://194.82.127.2/other/biography/percussion/kevin_hathway.aspxhttps://web.archive.org/web/20050408175531/http://www.brittfest.org/meetkevin.htmhttps://web.archive.org/web/20061002113918/http://www.rcm.ac.uk/prof.asp?display=professors&link=80https://www.imdb.com/name/nm2146212/Philharmonia OrchestraBBC PhilharmonicThe Wallace Collection + +2388575Robin HaggartBritish tubistCorrectRoyal Liverpool Philharmonic Orchestra + +2388825François PolgárFrançois PolgárFrench chorus master, born October 19, 1946 in Boulogne-BillancourtNeeds Votehttp://polgar.orghttps://fr.wikipedia.org/wiki/Fran%C3%A7ois_Polg%C3%A1rhttp://www.petitschanteurs.com/#!la-direction/cgs2http://pcscn.free.fr/Le_Choeur_dHommes_de_Paris/Le_Chef.htmlFrancois PolgarFrançois PolgarFrançoise PolgárChœur de Radio FranceChœur Grégorien De ParisLes Petits Chanteurs De Sainte-Croix De Neuilly + +2388898Finlandia-YhtyeNeeds Major Changes + +2389873Milton SchatzJazz saxophonistNeeds VoteMilt SchatzMilton ChatzMilton ShatzLouis Armstrong And His OrchestraBob Haggart And His Orchestra + +2389874Nat LobovskyAmerican trombonistNeeds VoteLobovskyN. LoboskyN. LobovskyNat LovobskyNat LubovskyNathan 'Nat' LobowskyBunny Berigan & His OrchestraJimmy Dorsey And His OrchestraLarry Clinton And His OrchestraBunny Berigan's Rhythm-Makers + +2389900Richard PoppGerman bassoonist and teacher.Needs VoteMünchner PhilharmonikerMünchner Nonett + +2390740Sipa PressSipa Press is a French photo agency based in Paris.Needs Votehttp://www.sipa.com/enhttps://en.wikipedia.org/wiki/Sipa_PressAlfred (SIPA Press)SIPASIPA PressSIPA PresseSIPA-PressSipaSipa Press, ParisSipa PresseSipa-PressSipaPressPhilippe Warrin + +2390879The Gotham StompersNeeds Major ChangesJohnny HodgesCootie WilliamsIvie AndersonHarry CarneyChick WebbBernard AddisonBarney BigardSandy WilliamsBilly Taylor Sr.Tommy Fulford + +2391181Paul KeaneyAmerican horn player, born in 1912 and died in 1994.CorrectP. KeaneyBoston Symphony Orchestra + +2391184Josef OroszAmerican trombonist, born in 1903 and died in 1983.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +2391185William MoyerWilliam C. MoyerWilliam Moyer (1929 - 18 December 2024) was an American trombonist.Needs VoteBoston Symphony Orchestra + +2391186Kilton Vinal SmithAmerican trombonist, born in 1909 and died in 1987.CorrectBoston Symphony Orchestra + +2391187Harold MeekAmerican French hornist, played 1st horn with the Boston Symphony from 1943-1963. + +Meek played under such conductors as [a=Otto Klemperer], [a=Serge Koussevitzky], [a=Charles Munch], and others.Needs Votehttps://www.bso.org/exhibits/heroes-of-the-hornH. MeekBoston Symphony OrchestraRochester Philharmonic Orchestra + +2392048Fiona BrettClassical violinist.Needs VoteBBC Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of Europe + +2392551Daniel SaidenbergConductor and cellist, born 12 October 1906 in Winnipeg, Canada and died 18 May 1997 in New York City, New York.Needs VoteD. SaidenbergThe Philadelphia OrchestraChicago Symphony Orchestra + +2392570Michel GusikoffAmerican violinist and composer, born 15 May 1893 in New York City, New York and died 10 July 1978 in New York City, New York.CorrectGusikoffM. GusikoffMichael GusikoffThe Philadelphia OrchestraSaint Louis Symphony Orchestra + +2392750Marc UllrichClassical and Jazz trumpeterNeeds Votehttp://www.baselbrassquintet.com/marcullrich_e.htmMarc UlrichUllrichSinfonieorchester BaselCappella Musicale Di S. Petronio Di BolognaThe English Baroque SoloistsCompulsion (7) + +2392751Bartholomäus RiedlBartholomäus Riedl (before 1650-1688) was an Austrian composer during the Baroque period.Needs VoteBartholomäo Riedl + +2392876Tom HoldenAmerican Trumpet PlayerNeeds VoteThomas HoldenHarry James And His OrchestraHarry James & His Music Makers + +2393037Frans de GuiseNeeds VoteF. De GuiseThe RamblersFrans de Guise & Zijn Barquintet + +2393038Ferry BarendseFerdinand Heinriek BarendseDutch trumpet player and vocalist. Born in Purwokero (Indonesia) in 1911, died in 1991. Moved to Holland in 1925 and to Belgium in 1942. Released a handful of early francophone rock 'n' roll singles under the name Ferry "Rock" Barendse.Needs Votehttp://amourdurocknroll.fr/pages/ferry_rock_barendse.htmlhttps://www.nldiscografie.nl/ferry-barendseBarendsBarendseF. BarendseFerry "Rock" BarendseThe RamblersKlaas Van Beeck And His OrchestraDavid Bee And His OrchestraRed Debroy's SwingersDavid Bee And His Dixieland Band + +2393076Jan de Vries (3)Dutch tenor vocalist from the 1930's and 1940's.Needs VoteJan DevriesJan de Vries met De Decca Melodiansde Vriesde Vries Jr.The RamblersDick Willebrandts En Zijn OrkestErnst Van 't Hoff En Zijn Orkest + +2394474Bud Smith (2)US jazz saxophonist and trombone player from the swing-era. + +CorrectWilliam "Bud" SmithWoody Herman And His OrchestraVan Alexander And His OrchestraGlenn Miller And His OrchestraClaude Thornhill And His OrchestraRay Noble And His OrchestraMuggsy Spanier And His OrchestraThe Band That Plays The Blues + +2394641Timothy Day (3)American flute player.Needs VoteTim DayTimothy A. DaySan Francisco Symphony + +2394642Barry JekowskyAmerican timpanist, music director and conductor, born 1952 in New York, New York.Needs Votehttp://www.barryjekowsky.com/Barry JekofskyBarry JekowskiSan Francisco Symphony + +2395073Per HannisdalNorwegian bassoonist, born 1958.Needs VotePerPer HannesdalOslo Filharmoniske OrkesterBorealis (3)Oslo Philharmonic Chamber Group + +2396216Miguel BorregoSpanish violin playerNeeds VoteOrquesta Sinfónica de RTVETrío Arbós + +2396237Jean-Pierre LaffontNeeds Major ChangesJ. P. LaffontJ. Pierre LaffontJ.-P. LaffontJ.P. LaffontJP LaffontLaffont + +2396573Peter Esser (3)Peter Joseph Maria EsserGerman actor, voice actor and dubbing speaker, born on April 4, 1888 and died on June 24, 1970.Needs Votehttps://de.wikipedia.org/wiki/Peter_Esser_(Schauspieler) + +2397559Rudolf SchulzRudolf Schulz (born in Hanover) was a German classical violinist and music professor. He was the first Konzertmeister for the [a841431].Needs VoteProfessor Rudolf SchulzR. SchulzRudolf SchultzRudolph SchulzStaatskapelle BerlinRIAS Symphonie-Orchester BerlinOrchester Der Deutschen Oper BerlinRudolf Schulz Quartet + +2397922Saxie MansfieldMaynard MansfieldUS jazz saxophonist from the swing-era. As a former member of the [a750213], he joins the 'hot'-core of this orchestra after Isham retiring from the band. He becomes a member of the founding co-operative of [a284746] in 1936. + +Needs Votehttps://www.allmusic.com/artist/saxie-mansfield-mn0001760043MansfieldMaynard "Saxie" MansfieldS. MansfieldWoody Herman And His OrchestraIsham Jones OrchestraIsham Jones' JuniorsThe Band That Plays The Blues + +2398587B.R.KMarko AnzuElectronic dance music producer [a2398587] (or BornRuleKult) from Rome, Italy +Style: Hard Trance | Dark NRG Needs Votehttps://www.instagram.com/bornrulekult/https://soundcloud.com/bornrulekulthttps://myspace.com/bornrulekulthttps://www.youtube.com/user/BORNRULEKULThttps://www.mixcloud.com/bornrulekult/B. R. K.B.R.K.BRKInfernalien + +2399606Ken WenzelAmerican trombonist and flugelhornistNeeds VoteKenneth WenzelKenny WenzelWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJazz In The ClassroomThe Mighty Horns + +2399683Enrico GianellaClassical tenor vocalistCorrectCoro Della Radio Televisione Della Svizzera ItalianaVos Da Locarno + +2400122Sarah PendleburyClassical soprano vocalist.Needs VoteGabrieli Consort + +2401209Hans-Martin KotheClassical trumpeter.CorrectHans Martin KotheAkademie Für Alte Musik BerlinCantus CöllnNova Stravaganza + +2401287Mauro BorgioniClassical Bass / Baritone vocalistNeeds Votehttps://www.facebook.com/mauro.borgioniBorgioniAccademia I Filarmonici Di VeronaEnsemble MicrologusCantica SymphoniaCoro Della Radio Televisione Della Svizzera ItalianaCantar LontanoEnsemble Festina LenteOdhecaton (2)La Fonte MusicaRossoPorporaMusica PerdutaRomabarocca EnsembleOrientis PartibusVenice Monteverdi Academy Choir + +2401367Roderick ShawClassical hornist, pianist, harpsichodist, organist, musicologist and conductor.Correcthttp://www.roderickshaw.de/en/home.htmThe Academy Of Ancient Music + +2401368Lucas BarrAustralian classical violinist, born January 23, 1974 in Melbourne.Needs VoteWDR Sinfonieorchester KölnOrchester der Bayreuther Festspiele + +2401887Hristo KostadinovClassical violinist.CorrectKostadinovХристо КостадиновBamberger Symphoniker + +2401888Wolfgang BülowWolfgang Bülow (1933 - 2000) was a German violinist.Needs VoteStaatskapelle DresdenUlbrich-Quartett + +2403989Lothar FriedrichLothar FriedrichViolinist and teacher (professor). Honorable member of [a833446].Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/lothar-friedrich.26298Staatskapelle BerlinCamerata Musica + +2404233Bernard LoonenDutch classical tenor vocalistNeeds Votehttp://www.bernardloonen.org/cv/#sthash.ujmgdVyc.dpbsLes Arts Florissants + +2404250Walter NeulistWalter Neulist (born 1941) is a classical percussionist.Needs VoteMusik Unserer ZeitDas Mozarteum Orchester Salzburg + +2404251Hermann DechantAustrian flutist, conductor, composer, musicologist and music publisher, born 29 November 1939 in Vienna, Austria. +Married to [a=Margit Haider].Needs VoteDechantProf. Dr. Hermann DechantProfessor Dr. Hermann DechantMusik Unserer ZeitBamberger SymphonikerMusica Canterey Bamberg + +2404253Hermann HollerGerman timpanist and percussionist, born 1952 in Erding, Germany.Needs VoteBayerisches StaatsorchesterMusik Unserer Zeit + +2406241Henry WardClassical harpsichordistCorrectEnglish Chamber Orchestra + +2406295Raymond MartinezClassical vocalist.CorrectMartinezTheatre Of VoicesChanticleer + +2407693Instrumental-Ensemble Werner KeltschNeeds Major ChangesEin InstrumentalensembleInstrumental-EnsembleInstrumentalensemble Werner KeltschWerner Keltsch Instrumental Ensemble + +2408160The Ben Webster QuintetNeeds Major ChangesBen WebsterBen Webster And His QuintetBen Webster QuintetBen Webster's Wax QuintetKenny DrewRay BrownOscar PetersonHerb EllisBen WebsterAl HaigStan LeveyFrans WieringaDonald McKyreNiels-Henning Ørsted PedersenBill De ArangoJohn SimmonsJames CannadyCharlie McLean (2)John Dailey (2)Ray White (2) + +2409336Rita DamsClassical alto vocalistCorrectNederlands Kamerkoor + +2410308Marlene ItoJapanese classical violinistNeeds VoteBerliner PhilharmonikerSwonderful Orchestra + +2410361Mary WiegoldSoprano vocalist.Needs VoteLondon Voices + +2410477Gilad NezerClassical bass vocalist, born in 1973.Needs VoteGilad Nezer (Nederlands Vocal Laboratorium)Nederlands Kamerkoor + +2412701Scott Lee (5)American jazz bassist and composer.Needs VoteLeeS. LeeChet Baker QuartetThe John Payne BandThe Joe Roccisano OrchestraJoe Lovano Street BandOpera House EnsembleAndy Statman QuartetRoland Heinz QuartettLoren Stillman QuartetThe Scott Lee QuartetCloning Americana + +2413102Pierre Del VescovoPierre del VescovoFrench classical horn player.Needs Votehttp://www.lesnuitsmusicales.com/prog/2006/260506/vescovo.htmP. Del VescovoP. DelvescovoP. DelvoscovoPierre DelvescovoOrchestre symphonique de MontréalMainzer KammerorchesterEnsemble Instrumental SinfoniaPro Arte Wind Quintet + +2413499Judith FalkusClassical violinist.Needs VoteThe Academy Of Ancient Music + +2413500Kay UsherClassical violinistNeeds VoteThe Amsterdam Baroque OrchestraThe Academy Of Ancient Music + +2413501William Prince (3)Classical hornist.Needs VoteEnglish Chamber OrchestraBournemouth Symphony OrchestraThe English Baroque SoloistsThe Academy Of Ancient MusicLondon Mozart PlayersLondon Classical PlayersHanover Band + +2413502Robin StowellClassical violinist. Emeritus Professor in the School of Music, Cardiff University and one of the Society’s Fellows. Winner, along with his co-editor [a1183577], the C.B. Oldman prize, 2019, for The Cambridge Encyclopedia of Historical Performance in Music (Cambridge University Press, 2018).Needs Votehttps://www.learnedsociety.wales/professor-robin-stowell-flsw-awarded-prize-for-music-encyclopedia/The Academy Of Ancient Music + +2413503Stanley King (2)Classical oboist. +A former faculty member of the Baroque Performance Institute at Oberlin College and currently at the University of Wisconsin-River FallsNeeds Votehttps://lyrabaroque.org/about/musicians/stanleyking/The Academy Of Ancient MusicPhilharmonia Baroque OrchestraSmithsonian Chamber Orchestra + +2413504Judith GarsideClassical violinist and violist.Needs VoteJudy GarsideThe Academy Of Ancient Music + +2413943Isabel AdamOboe player.Needs VoteEnsemble Modern + +2414270Peter Franks (2)British trumpet playerCorrectPeter FranksScottish Chamber Orchestra + +2415399Heinz RadzischewskiGerman trumpet player.CorrectDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleKammerorchester Carl Philipp Emanuel BachBach-Collegium Berlin + +2415409Karl-Bernhard SebonGerman flutist, born on 6 March 1935 in Düsseldorf and died on 21 April 1994 in Berlin, Germany.Needs VoteBernhard SebonK. B. SebonK.-B. SebonKarl Bernhard SebonKarl SebonSebonRadio-Symphonie-Orchester BerlinBaden-Badener PhilharmonieSebon-QuintettRIAS SinfoniettaSebon-Quartett + +2416284Claus EttrupDanish classical flautistNeeds VoteClaus Ettrup LarsenAalborg Symfoniorkester + +2417234Adrian BrendelClassical cellist, born 1976 in London. He is the artistic director of the Plush Festival, Dorset. +Son of [a=Alfred Brendel] and half-brother of [a1503786].CorrectThe Nash EnsembleDSCH - Shostakovich Ensemble + +2417519Peter HadcockAmerican clarinetist, born 11 April 1940 and died 24 October 1993.Needs VoteBoston Symphony OrchestraBuffalo Philharmonic OrchestraBoston Symphony Chamber Players + +2417710Jaroslav HalířJaroslav HalířBorn June 30, 1975, Děčín +Czech trumpet player. Needs VoteJ. HalirJ.A.R.oslav HalířJarda HalirJarda HalířThe Czech Philharmonic OrchestraSplash Horns + +2417807Alan WoodrowClassical tenor vocalistNeeds VoteWoodrowThe Monteverdi Choir + +2418190Kathrin GrafKathrin Graf (born 1942) is a Swiss classical soprano vocalist, violist and former lecturer for singing at the "Zürcher Hochschule der Künste". +Needs Votehttps://www.kathringraf.chCollegium Musicum ZürichTonhalle-Orchester ZürichEnsemble Mobile (3) + +2418504Paul Katz (3)Classical violist. +Former member of the [a=London Symphony Orchestra] (1948-1976). + +[b]For [a=The Cleveland Quartet] classical [u]cellist[/u], please use [a=Paul Katz (2)][/b].Needs VoteLondon Symphony Orchestra + +2421516Robert LangevinCanadina flutist, born in Sherbrooke, Quebec.Needs VoteNew York Philharmonic + +2421871Delmar KaplanCredited as bass player.Needs VoteD. KaplanDelmar KaplinGlenn Miller And His OrchestraRay Noble And His OrchestraThe Dorsey Brothers Orchestra + +2423060Michael Francis (3)British conductor and double bass player (initially). Born in 1976 in Wales, UK. +He was a member of the [a=European Union Youth Orchestra]. He then attended the [l527847]. He played the double bass for the [a=London Symphony Orchestra] (2003-2012) before he began conducting. +He became chief conductor and artistic adviser to the [a=Norrköping Symphony Orchestra] in 2012, and held the post through 2016. In December 2018, the [a=Staatsphilharmonie Rheinland-Pfalz] announced the appointment of Francis as its next chief conductor, effective with the 2019-2020 season, with an initial contract of 5 years. Music Director of [a=The Florida Orchestra] as of the 2015-2016 season, with an initial contract of 3 years, extended through 2025.Needs Votehttp://michaelfrancisconductor.com/https://en.wikipedia.org/wiki/Michael_Francis_(conductor)https://www.feenotes.com/database/artists/francis-michael-1976-present/https://floridaorchestra.org/conductors/michael-francis/https://www.kdschmid.de/en/artists/artist-information/informationen-zum-kuenstler/show/details/michael-francis-575/London Symphony OrchestraEuropean Union Youth Orchestra + +2423069Joost BosdijkDutch classical bassoonist and Professor of Bassoon. +In his student years, Joost was a member of the [a=National Youth Orchestra Of The Netherlands] and later the [a2228583], as a bassoonist and contra bassoonist. Then with the [a1024263] as 2nd Bassoon for four years. Member of the [a=London Symphony Orchestra] since 2007. +Professor of Bassoon at the [l290263].Needs Votehttps://open.spotify.com/artist/18MGlqTQwjvNebIiAqWaR5https://music.apple.com/us/artist/joost-bosdijk/516626266https://lso.co.uk/orchestra/players/woodwind.htmlhttps://www.feenotes.com/database/artists/bosdijk-joost/https://vgmdb.net/artist/22843London Symphony OrchestraRotterdams Philharmonisch OrkestGustav Mahler JugendorchesterNational Youth Orchestra Of The Netherlands + +2423076Miya IchinoseJapanese classical violinist. +She attended the [l527847].Needs Votehttps://www.feenotes.com/database/artists/ichinose-miya/London Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsWorld Orchestra For Peace + +2423087Angela BarnesBritish classical hornist, and Professor of Horn. Born in Rossendale, Lancashire, England, UK. +She studied at [l305416], graduating in July 2005. Her career combines orchestral, solo and chamber music playing. She was a member of both the [a=National Youth Orchestra Of Great Britain] and the [a=European Union Youth Orchestra]. In January 2005, she was appointed 2nd Horn of the [a=London Symphony Orchestra], becoming the first female member of the orchestra's brass section in the orchestra's history. Professor of Horn at the Guildhall School of Music & Drama.Needs Votehttps://www.facebook.com/angela.barnes.223https://twitter.com/lalabarneshttps://www.feenotes.com/database/artists/barnes-angela/https://www.hornsociety.org/home/ihs-news/678-angela-barneshttps://en.everybodywiki.com/Angela_Barnes_(musician)https://lso.co.uk/orchestra/players/brass.htmlhttps://thesymphonicbrassoflondon.com/about/players#angela-barneshttps://three-worlds-records.com/artist/angela-barnes/https://vgmdb.net/artist/14120London Symphony OrchestraNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraYoung Musicians Symphony OrchestraThe London Horn SoundThe Symphonic Brass Of London + +2423868Helmut BöhmeGerman classical flutist.Needs VoteHelmut BoehmeGewandhausorchester Leipzig + +2425628Arthur DaveyAlto saxophonistCorrectLouis Armstrong And His Orchestra + +2425629Benny Hill (3)Swing drummerNeeds VoteLouis Armstrong And His Orchestra + +2425630Wesley RobinsonSwing pianistNeeds VoteLouis Armstrong And His Orchestra + +2425631Ed Hayes (2)Jazz bassist and tuba playerNeeds VoteLouis Armstrong And His Orchestra + +2425632Ellsworth BlakeCredited as jazz saxophone player.Needs VoteLouis Armstrong And His Orchestra + +2425802Bernie MackeyBernard Arthurneal MackeyBernard “Bernie” Arthurneal Mackey, a singer and guitarist for the Ink Spots, a famed quartet of the ‘30s and ‘40s, was a Black trailblazer, leaving an imprint on pop culture and paving the road for other African American vocal groups, from the Ravens to the Orioles to Motown’s Temptations. + +Born in the Bahamas on July 29, 1909-1980Needs VoteBernard MackeyBernard McKayBernhard McKayBernie MackayBernie McKayBuddy Johnson And His OrchestraThe Ink SpotsLucky Millinder And His OrchestraThe Milt Buckner TrioEbony In RythemThe Fabulous InkspotsThe Fabulous Ink SpotsThe Ink Spots (3) + +2426218Fabio MendittoItalian mandolin and guitar player.Needs VoteF. MendittoMendittoLunar SexOrchestra dell'Accademia Nazionale di Santa CeciliaMusica Ficta (7) + +2426501Al PlankAmerican jazz pianist. +Born November 22, 1932 in Muncie, Indiana. Died April 2003 in Novato, California. +He started playing piano at the age of 11 and clarinet at the age of 13. He went to the University of Indiana. There he met Max Hartstein and later Benny Barth. He left IU in 1953 to go on the road with Max and Benny. In 1958, he recorded an album with Woody Herman and Tito Puente. +He moved to San Francisco in the early 1960s. He was Musical Director at the San Francisco Playboy Club 1965-1976, backing up singers and comedians at the club. He was Jazz singer [a2279058]'s musical director and a fixture in the San Francisco Jazz scene for over forty years. He continued to play and record right up until his death.Needs Votehttps://www.allaboutjazz.com/al-plank-1932-2003-by-forrest-dylan-bryanthttps://www.sfgate.com/bayarea/article/Al-Plank-Jazz-pianist-with-a-gentle-touch-2655889.phpAl Planckal planckWoody Herman And His OrchestraWoody Herman And The Fourth HerdBill Perkins And His San FranciscansThe Lee Katzman Quartet + +2427189Marcel DarrieuxFrench violinist (1891-1989).Needs Votehttps://fr.wikipedia.org/wiki/Marcel_DarrieuxM. DarrieuxM. Marcel DarrieuxMarcel DarreuxWalther Straram Concerts OrchestraOrchestre ColonneOrchestre Du Théâtre National De L'Opéra-Comique + +2427436János MátéJanos MatéHungarian born French violinist, born 16 April 1944 in Budapest, Hungary.Needs VoteJanos MatéMáté JánosBayerisches StaatsorchesterMünchner RundfunkorchesterPhilharmonie Van AntwerpenOrchester Heinz StörrleMaté-Quartett + +2427713Andreas OttensamerAndreas OttensamerAndreas Ottensamer (born April 4, 1989 in Vienna) is an Austrian clarinetist and conductor. A member of the [a260744] from 2011 to 2025. +He is the son of [a=Ernst Ottensamer] and the brother of [a3241108].Needs Votehttp://www.andreasottensamer.com/http://de.wikipedia.org/wiki/Andreas_OttensamerBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinEnsemble Wien-Berlin + +2427714Peter WhelanIrish-born bassoonist, harpsichordist, conductor and Director of [a=Ensemble Marsyas]Needs Votehttp://www.peterwhelan.co.uk/La SerenissimaScottish Chamber OrchestraDunedin ConsortLe Cercle De L'HarmonieArcangeloEnsemble MarsyasIrish Baroque OrchestraScottish Chamber Orchestra Wind SoloistsArion Orchestre BaroqueJupiter (55) + +2427721Luke WhiteheadBritish classical contrabassoon/bassoon player and lecturer. Born in Thorne, South Yorkshire, England, UK. +He studied at the [l459222]. Principal Contrabassoon of the [a2398334], Portugal (2001), the [b]Orquesta Filharmonica de Santiago[/b], Chile (2008), and the [a=Philharmonia Orchestra] (since 2011). Lecturer at the [l1379071].Needs Votehttps://www.facebook.com/luke.whitehead.777https://maslink.co.uk/client-directory?client=WHITL3&instrument=BASSO1https://philharmonia.co.uk/bio/luke-whitehead/Philharmonia OrchestraOrquestra Nacional do Porto + +2428179Tijmen HuisinghDutch violin playerNeeds Votehttps://www.muziekinstrumentenfonds.nl/59/tijmen-huisingh/?id=1645Edinburgh String QuartetNetherlands Chamber OrchestraAmsterdam SinfoniettaNorthern Sinfonia + +2428343Marie LenormandMezzo-soprano & Soprano vocalist.Needs VoteLenormandLe Concert Spirituel + +2428570Donatella RaminiItalian contralto vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +2428576Flavia CanigliaItalian contralto vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +2428579Patrizia RadiciItalian harpist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2429740Zebeded PhillipsNeeds Major ChangesZ. PhillipZ. PhillipsZebedee Phillips + +2430852Wolfgang LiebscherGerman classical bassoonistCorrectStaatskapelle DresdenCappella Sagittariana Dresden + +2430853Gerhard NeumerkelGerman double bassist. +CorrectStaatskapelle Dresden + +2431233Bob TrowersAmerican jazz trombonist. Born in Brooklyn, New York City, New York, USA.Needs VoteCount Basie OrchestraIllinois Jacquet & His Big Band + +2431632Ian Thompson (12)Tenor vocalist.Needs VoteIan ThompsonPro Cantione AntiquaThe Harmonious Society Of Tickle-Fiddle Gentlemen + +2431640Stephen AlderEnglish bass-baritone vocalist.Needs Votehttp://www.bach-cantatas.com/Bio/Alder-Stephen.htmLondon VoicesThe Academy Of Ancient Music ChorusThe English Concert ChoirThe Schütz Choir Of LondonChoir Of The Carmelite Priory LondonThe Friends Of Apollo + +2431812David EltonAustralian classical trumpeter, and Professor of Trumpet. Raised in Sydney, New South Wales, Australia. +He graduated from [l441870] in 1999. Former Principal Trumpet of the [a=Adelaide Symphony Orchestra] (2000-2004), the [a=West Australian Symphony Orchestra] (2005-2011), and the [a=London Symphony Orchestra] (11/12/2017-01/2021). Principal Trumpet of the [a=Sydney Symphony Orchestra] since 2011. Professor of Trumpet at the [l290263], and a member of the [l=Australian National Academy Of Music] brass faculty. +Needs Votehttp://davidelton.com.au/https://www.facebook.com/daveltonhttps://twitter.com/daveltontrphttps://www.instagram.com/daveltontrp/https://www.linkedin.com/in/david-elton-0763344a/?originalSubdomain=auhttps://open.spotify.com/artist/0Iu3rLwiL0Y84ciKezjz6Dhttps://music.apple.com/us/artist/david-elton/1345806960http://www.sydneysymphony.com/about-us/meet-the-musicians/brass/trumpets/david-elton.aspxhttps://anam.com.au/about/artists/david-elton-1377https://www.ayo.com.au/content/david-elton/gjlakv?permcode=gjlakvhttps://www.musicacademy.org/profile/david-elton/https://lso.co.uk/more/blog/821-welcome-to-our-new-principal-trumpet-david-elton.htmlDave EltonLondon Symphony OrchestraWest Australian Symphony OrchestraAdelaide Symphony OrchestraSydney Symphony OrchestraSBS Radio & Television Youth Orchestra + +2431976Karine Jean-BaptisteFrench classical cellistNeeds VoteOrchestre Philharmonique De Radio France + +2432961José Oliveira (3)Mandolin and Spanish guitar. Often appears with Nestor Amaral.CorrectJose "Joe Carioca" OliveraJose OliveiraJose OliveraJosé OliveiraJosé OliveraHarry James And His Orchestra + +2433943Rudolf WatzelGerman double bassist.CorrectBerliner Philharmoniker + +2433945Hans SpenglerHans Spengler is a German cellist and viola da gamba player.Needs VoteSüdwestdeutsches KammerorchesterCapella MonacensisSüdwestdeutsches Gambenconsort Hans Spengler + +2433946Günther LinnebachGerman classical cellistCorrectSüdwestdeutsches Kammerorchester + +2434059Christian L'EgruCarl Julius GrüelBorn 1809, died 1850 (?). German poetNeeds VoteC. L'egruC. L'ÉgruCh. L'ÉgruCh. L`EgruChristian L'ÉgruL'Egru + +2434085Bernt LysellBernt Henrik Rune LysellSwedish violinist, born 21 May 1949.Needs VoteSveriges Radios SymfoniorkesterKungliga HovkapelletUppsala KammarorkesterUppsala KammarsolisterNya BerwaldtrionLysellkvartetten + +2434276Simon StreatfeildSimon Nicholas StreatfeildBritish-Canadian violist, conductor, and music educator. Born 5 October 1929 in Windsor, Berkshire, England, UK - Died 7 December 2019. +He studied viola with [a=Frederick Riddle] at the [l=Royal College of Music, London], graduating in 1950. He had been performing with the [a=London Philharmonic Orchestra] and [a=Orchestra Of The Royal Opera House, Covent Garden], and acted as a Principal Viola in the [a=Sadler's Wells Orchestra] (1953-1955) and the [a=London Symphony Orchestra] (1956-1965). He was also a founding member of [a=The Academy Of St. Martin-in-the-Fields] (1958-1965) and spent ten years in Oslo, teaching orchestral conducting and leading the orchestra at [l=Norges Musikkhøgskole]. +After moving to Canada in 1965, he started his decade-long tenure at the [a=Vancouver Symphony Orchestra], where he acted as a Principal Viola (1965-1969), Assistant Conductor (1967-1971), Music Director (1971-1972), and Associate Conductor (1972-1977). He was a founding member of the [a=Baroque Strings of Vancouver] (1966-1968). He also conducted the [a=Vancouver Bach Choir] from 1969 to 1981, and was founder of the [a=Purcell String Quartet] (1968-1969), which disbanded in 1991. As a conductor & director of the [a=Manitoba Chamber Orchestra] (1982-2000), he led the world premiere of [i]Between the Wings of the Earth[/i] by [a=Michael Matthews (2)] in 1983. Making his way east, he began dividing his time between leading the [a=Regina Symphony Orchestra] (1981-1984), and the [a1709636] (1983-1991) as conductor and director. In his later years, he served as Principal Guest Conductor and Artistic Advisor of the [b]Orchestra London Canada[/b], the [a=Symphony Nova Scotia], and the [a3425939] (2004-2007). +In 1987, he received a Canadian Music Council Medal for outstanding service to music in Canada.Needs Votehttps://open.spotify.com/artist/2uwOQ8ggFfCH3JlPvvoZa0https://music.apple.com/us/artist/simon-streatfeild/170256554https://www.thecanadianencyclopedia.ca/en/article/simon-streatfeild-emchttps://en.wikipedia.org/wiki/Simon_Streatfeildhttps://www.ludwig-van.com/toronto/2019/12/11/memoriam-simon-streatfeild-influential-british-canadian-conductor-died/https://atom.archives.sfu.ca/streatfeild-simonhttps://www.thestrad.com/news/violist-and-conductor-simon-streatfeild-has-died/9868.articlehttps://myscena.org/newswire/in-memory-of-simon-streatfeild/https://www.therecord.com/entertainment/2019/12/10/simon-streatfeild-former-k-w-symphony-conductor-and-adviser-dies-at-90.htmlSimon StreatfieldLondon Symphony OrchestraLondon Philharmonic OrchestraVancouver Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsOrchestra Of The Royal Opera House, Covent GardenSadler's Wells OrchestraPurcell String QuartetBaroque Strings Of Vancouver + +2434500Heinrich ZieheGerman violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksDas Keller QuartettMünchner Nonett + +2434503Rudolf GallClassical clarinettistNeeds VoteMünchener Bach-Orchester"In Dulci Jubilo" Ensemble + +2434944Sreten KrstićSreten KrstićBorn 1953 in Belgrade. He has been a concertmaster of the [a261451] from 1982 to 2019. +Needs VoteKrstic SretenScreten KrsticSreten KristicSreten KrsticStr. KrsticStreten KrsticMünchner PhilharmonikerGudači Svetog ĐorđaSymphonisches Orchester LiechtensteinGelius TrioGasteig-Trio + +2435444Thomas KoberGerman tenor vocalistCorrectRundfunkchor Berlin + +2435445Tatjana SotinClassical alto vocalist.Needs VoteRundfunkchor Berlin + +2436521Sam Allen (4)Sam "Christopher" Allen was a jazz guitarist. +Needs VoteS. AllenSam "Christopher" AllenSamuel AllenRoy Eldridge And His OrchestraCootie Williams And His OrchestraHot Lips Page And His Orchestra + +2438192Bob DawesAmerican jazz saxophonist (Baritone)Needs VoteBob DavisBob DawsRobert DawesTommy Dorsey And His OrchestraCharlie Barnet And His OrchestraBob Keene Orchestra + +2439816Jan SchultszDutch conductor, pianist and fortepiano instrumentalist, born 1965 in Amsterdam, based in Switzerland. +He initially played horn in various orchestras. Then he divided his time between conducting, performing as a pianist and teaching. +He is the father of [a=Leonard Schultsz].Needs Votehttp://www.schultsz.com/en/biographyJ. SchultszConcerto KölnEnsemble Il Trittico + +2440048Paul Manley (2)Classical violinistNeeds VoteP. ManleyScottish Chamber OrchestraThe Dorian Ensemble + +2441181Klaas BoonDutch Viola player. Born in Den Helder, April 18th 1915, died in Ruurlo, November 18th 2002.Needs Votehttps://nl.wikipedia.org/wiki/Klaas_BoonConcertgebouworkestConcerto AmsterdamConcertgebouw-Pianokwartet + +2442754Albert CiceroneCredited as saxophone player.Needs VoteA. J. CiceroneA.J. CiceroneLouis Armstrong And His Orchestra + +2443049Gerald HobsonJazz drummerNeeds VoteDave Nelson And The King's MenDave's Harlem Highlights + +2443537Iain GibbsUK violinist. +1st violin with [a=The Welsh National Opera Orchestra].Needs VoteThe Welsh National Opera OrchestraYoung Musicians Symphony Orchestra + +2443586Guy BraunsteinIsraeli violinist, born 1971 in Tel Aviv, Israel.Needs VoteG. Braunsteinגיא ברונשטייןBerliner PhilharmonikerHamburger Symphoniker + +2443589Louis LangréeFrench conductor, born 11 January 1961 in Mulhouse, France. He's the son of [a845410].Needs Votehttps://en.wikipedia.org/wiki/Louis_Langr%C3%A9ehttps://www.imdb.com/name/nm1132658/L. LangréeLangréeLouis Langree + +2443731Wolfgang NestleGerman double bassist.Needs VoteMünchner PhilharmonikerRadio-Symphonie-Orchester BerlinOrchester Des Nationaltheaters MannheimMünchener Bach-OrchesterThe Richard Laugs Piano QuintetBach-Collegium München + +2443981Frances BourneBritish classical mezzo-soprano vocalist born in LondonNeeds Votehttp://www.bach-cantatas.com/Bio/Bourne-Frances.htmhttps://www.facebook.com/Frances-Bourne-46639230418/The Monteverdi ChoirTenebrae (10) + +2443991Jimmy Oliver (3)American jazz saxophonist (tenor). + +Born : 1924 (or) 1925 in Columbia, South Carolina. +Died : February 04, 2005 in North Philadelphia, + Pennsylvania. + +Jimmy played with Mickey Roker, Bootsie Barnes, Heath Brothers, Philly Joe Jones, Bobby McFerrin, Bobby Hutcherson, John Handy, Pharoah Sanders, Ray Drummond, Dizzy Gillespie.Needs VoteJim OliverDizzy Gillespie Sextet + +2444073Sammy Davis (2)Credited as tenor saxophonist.Needs VoteSam DavisSamuel DavisBenny Carter And His OrchestraHot Lips Page And His Band + +2444623Nancy Johnson (3)British classical freelance viola player, and viola/violin teacher. Born in Derbyshire, England, UK. +She graduated from the [l459222] and [l477743]. Whilst in New York, she was the viola player of the [b]Degas String Quartet[/b] and, after moving to London, she became a member of the [b]Tavec Quartet[/b]. Member of [a=Triocca], the [b]Bloomer Piano Quartet[/b] the [b]Zoltan Ensemble[/b] and [a=Cambria String Quartet]. Viola & violin teacher at the [l925143] and [l331651]. +Needs Votehttps://www.cardiff.ac.uk/music/people/instrumental-and-vocal-tutors/nancy-johnsonhttps://triocca.com/en/page/about-us/237https://www.chambermusiconvalentia.com/home-page-2016/artists/nancie-johnson/https://stringsection.co.uk/viola-hire-an-online-violist-for-recording-sessions/https://www.naxos.com/Bio/Person/Nancy_Johnson/357967London Symphony OrchestraEnglish Chamber OrchestraRed Skies String SectionTrioccaCambria String Quartet + +2444767Billy Banks And His OrchestraNeeds Major ChangesBilly Banks & His Orch.Billy Banks & His OrchestraBilly Banks And His Orch.Billy Banks' Chicago Rhythm KingsBilly Banks' RhythmakersThe Billy Banks OrchestraPee Wee RussellZutty SingletonJoe SullivanAl MorganEddie CondonHenry "Red" AllenJack BlandBilly Banks (2) + +2446519Ольга ТомиловаOlga Tomilova is a russian classical oboist.Needs VoteOlga TomilovaRussian National Orchestra + +2446924Leslie MalowanyClassical viola / violin player and viola teacher. +Former Principal Viola of the [a=London Symphony Orchestra] (1962-1964). Principal Viola with the [a931253].Needs Votehttps://open.spotify.com/artist/3eQnipeOmVwB0PF847u7b8https://music.apple.com/mx/artist/leslie-malowany/1584775196?l=enLes MalowayLeslie MallowanyLeslie MalowaneyLeslie MalowayLondon Symphony OrchestraOrchestre symphonique de Montréal + +2447631Vladimir HaklikViola playerNeeds VoteProf. Vladimir HaklikV. HaklikVienna Symphonic Orchestra ProjectWiener Symphoniker + +2447883Stéphane FugetClassical keyboard instrumentalist; conductor of [a12290104].Needs VoteLes Talens LyriquesLes Musiciens De Saint-JulienAkadêmiaEnsemble ClematisEnsemble Il GroviglioLes Épopées + +2449227Mark Lewis (18)Jazz trumpet player, son of [a1991442]. He joined [a284746] in the 1980's.Needs VoteMarc LewisWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And The Thundering Herd + +2449244Mike Hall (11)Jazz bassistNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandJens Wendelboe & His New York Big BandPratt Brothers Big Band + +2450206Daire FitzgeraldDaire FitzGeraldIrish cellist.Needs VoteDaire FitzGeraldOrchestra Of St. Luke'sSt. Luke's Chamber Ensemble + +2450732Karen HuttDrummer and percussionist, born 18 September 1979. +She studied at [l305416] (1998-2002).Needs Votehttp://www.myspace.com/karenhutthttps://www.tonal.org.uk/tonal/https://maslink.co.uk/client-directory?client=HUTTK1&instrument=TYMPA1London Symphony OrchestraThe Tonal Ensemble + +2451706Bayerischer Rundfunk / Hörspiel und MedienkunstNeeds Votehttp://www.br-online.de/bayern2/hoerspiel-und-medienkunst/index.xmlBR / Hörspiel und MedienkunstBR Hoerspiel und MedienkunstBR Hörspiel Und MedienkunstBR Hörspiel und MedienkunstBayerischer Rundfunk (Hörspiel und Medienkunst)Bayerischer Rundfunk / Hörspiel 1994Bayerischer Rundfunk HörspielBayerischer Rundfunk, Hoerspiel Und MedienkunstBayerischer Rundfunk/HörspielBr Hörspiel Und MedienkunstBayerischer Rundfunk + +2451928Yves SavarySwiss cellist.Needs VoteI. SavaryBayerisches StaatsorchesterPhilharmonische Cellisten + +2452112Karol LimanClassical violinist, born in 1965 in Poznan, Poland.Needs VoteMünchner Rundfunkorchester + +2452624Cormac HenryClassical flutistNeeds VoteRoyal Liverpool Philharmonic OrchestraEnsemble 10:10 + +2452860Rachel GoldsteinClassical violinist.Needs VoteChicago Symphony Orchestra + +2453298Nicholas Cox (2)Clarinet, Director - UKNeeds VoteThe Academy Of St. Martin-in-the-FieldsChamber DomaineEnsemble 10:10 + +2453559Emanuele AntoniucciItalian classical trumpeter, born in Montevarchi in 1973. He graduated in trumpet in 1993 under the guidance of Maestro Walter Carpano at the L. Cherubini Conservatory in Florence. In the following years he perfected himself with various teachers including [a=Rex Martin], Steven Burns and [a=Andrea dell'Ira]. He has collaborated with various Italian and foreign orchestral formations including the [a=Orchestra Sinfonica Di Roma Della RAI], the [a=Orchestra Del Teatro Dell'Opera Di Roma], the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia], and the [a=Orchestra Della Radio Televisione Della Svizzera Italiana]. He specializes in the Baroque repertoire, and interprets the second Brandenburg Concerto with an original instrument and small trumpet (also performed in 2000 for the aperitif concert season of the Teatro alla Scala in Milan), the Cantata No. 51, the Christmas Oratorio by J.S. Bach, Handel's Messiah, etc. + +He currently holds the position of second trumpet with the [a=Orchestra Del Maggio Musicale Fiorentino].CorrectOrchestra Del Teatro Dell'Opera Di RomaOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Sinfonica Di Roma Della RAIBologna Youth Symphonic OrchestraOrchestra Del Maggio Musicale FiorentinoOrchestra Della Radio Televisione Della Svizzera Italiana + +2453657Diego BaroniItalian bass clarinetist, born in 1971.CorrectEAOrchestra Electro Acoustic OrchestraTonhalle-Orchester Zürich + +2454109Eino VatanenEino Markus VatanenFinnish musician, conductor, composer and arranger who later lived in Sweden. Died on April 4, 2007.Needs VoteE. VatanenE.VatanenE.vatanenEino "Nacke" VatanenNacke Vatanen + +2454582Vance RegerAmerican oboist and conductor.CorrectThe Cleveland OrchestraThe Los Angeles Chamber Orchestra + +2455980Thomas MeiningGerman violinist.CorrectStaatskapelle Dresden + +2455981Kristian SchwertnerGerman violinist.CorrectStaatskapelle DresdenRheinische Philharmonie + +2456308Siobhán ArmstrongClassical harpist.Needs Votehttp://www.siobhanarmstrong.com/Siobhan ArmstrongThe Chamber Orchestra Of EuropeOrchestra Of The RenaissanceSonnerieCamerata KilkennyStylus PhantasticusArcangeloAtalanteTheatre Of The AyreThe Illyria Consort + +2456613Burl LaneBurl Lane (born in 1939) is an American contrabassoonist and saxophonist. He was a member of the [a837562] from 1965 to 2008.Needs VoteBurt LaneChicago Symphony OrchestraChicago Pro Musica + +2458383Didier BenettiFrench percussionist and conductorNeeds VoteBenettiD. BenettiDidier BenetiOrchestre National De FranceLes Cuivres Français + +2458409Simone MangelsdorffGerman operatic soprano, born 19 January 1931 in Bad Dürrenberg, Germany and died 26 November 1973 in Cologne, Germany. She was married to [a382105].Correct + +2458874Marco RadaelliItalian Bass / Baritone vocalistNeeds VoteCoro Della Radio Televisione Della Svizzera ItalianaLa VenexianaStirps IesseI Madrigalisti AmbrosianiEnsemble Cantimbanco + +2459078Karen BaskinAmerican classical cellistNeeds VoteOrchestre symphonique de MontréalLuba Zuk Trio + +2462060Ulrich BeckerGerman oboist, born in 1954 in Krefeld, Germany. He was a member of the [a261451] from 1977 to 2020.Needs VoteMünchner Philharmoniker + +2464744Koloman Von PátakyKálmán Pataky de DéstalvaHungarian tenor vocalist (14 November 1896 - 3 March 1964).Needs Votehttp://de.wikipedia.org/wiki/Koloman_von_Patakyhttp://www.bach-cantatas.com/Bio/Pataky-Kalaman.htmKoloman Von PatakyKoloman von PatakyKolomann von PatakyKolomon Von PatakyPatakyKálmán Pataky + +2464796Evangelina MascardiItalian lute, baroque guitar, and theorbo player.Needs VoteE. MascardiEvangelina MarscardiThe English Baroque SoloistsEnsemble 415Venice Baroque OrchestraCollegium MarianumLa Magnifica ComunitàLa Cetra Barockorchester BaselLa RisonanzaZefiroLa PifareschaIl PegasoHelianthus EnsembleEstro Cromatico + +2465113David Singer (4)Clarinet player.Needs VoteOrpheus Chamber OrchestraMarlboro Festival OrchestraThe Aulos Quintet + +2465512Max RabinovitsjClassical ViolinistNeeds VoteRabinovitsjMarlboro Festival Orchestra + +2465700Mariusz NiepiekłoClassical trumpeterNeeds VoteM. NiepiekłoOrkiestra Symfoniczna Filharmonii NarodowejLa Tempesta (2) + +2466536Beate SpringorumGerman violinistCorrectMünchner PhilharmonikerGiancarlo Schiaffini Quintet + +2466667Hervé JoulainHorn player born 1966 in France.Needs Votehttp://paris.bastille.free.fr/joulain.htmlhttps://en.wikipedia.org/wiki/Herv%C3%A9_Joulainhttps://www.naxos.com/person/Herve_Joulain/913.htmH. JoulainHervé JoulinOrchestre National De FranceCamerata RCOLes Cuivres Français + +2466714Scott DixonClassical bass player.Needs VoteThe Cleveland OrchestraInternational Contemporary Ensemble + +2467728Peter Berry (3)Peter BerryHard Dance DJ/Producer from Glasgow now based in Basingstoke, UK.Needs Votehttps://soundcloud.com/ng_rezonancehttps://myspace.com/ngrezonanceP. BerryP.BerryNG RezonanceBegbie (3)Avaxx + +2467965Jan Bastiaan NevenDutch classical cellist.Needs Votehttp://www.cellist.nl/database/showcellist.asp?id=742Jan-Bastiaan NevenNetherlands Chamber OrchestraErard Ensemble + +2470643Jean-François DurezFrench composer, arranger, professor, percussionist and pianistNeeds VoteJF DurezJean François DurezOrchestre Des Concerts LamoureuxOrchestre De La Garde Républicaine + +2470648Nathalie GantiezFrench timpanist and percussionist.Needs VoteNathalie Geujon-GantiezOrchestre Des Concerts LamoureuxOrchestre De Chambre De Paris + +2472248Francesco ValgrandeFrancesco TamponiItalian violinist, conductor, arranger and composer of music film (Modane - a small town located in the department of Savoie, France -, January 18, 1925 - † December 30, 2010).Needs Votehttps://it.wikipedia.org/wiki/Franco_Tamponihttps://www.imdb.com/name/nm0848746/F. ValgrandeM F. ValgrandeValgrandeFranco Tamponi + +2472706Luigi Milani (2)Italian classical double bassist.Needs VoteLuigi MilaniOttetto Italiano + +2473395Isadore ZverowAmerican violist, born 1909 in Chicago, Illinois and died in Februarry 1999.Needs VoteIsadore ZveronChicago Symphony OrchestraKansas City Philharmonic + +2473396Perry CraftonPerry E. CraftonAmerican violinist, died on May 1, 2001 at the age of 80 in Chicago, Illinois.Needs VoteChicago Symphony Orchestra + +2474056Loren BrownAmerican cellist.Needs VoteChicago Symphony OrchestraMilwaukee Symphony Orchestra + +2474057Lawrie BloomJ. Lawrie BloomAmerican clarinetist. He was a member of the [a837562] from 1980 to 2020.Needs VoteJ. Lawrie BloomChicago Symphony OrchestraThe Contemporary Chamber Players Of The University Of Chicago + +2474827John Sparrow (3)American jazz and Rhythm 'N' Blues saxophonist and band leader.CorrectJ. SparrowJohnny SparrowSparrowLouis Armstrong And His OrchestraLionel Hampton And His OrchestraJohnny Sparrow & His OrchestraJohnny Sparrow & His Bows And Arrows + +2474828Waddet WilliamsCredited as jazz trombonist.Needs VoteWaddey WilliamsLouis Armstrong And His Orchestra + +2474829Ludwig JordanLudwig Joe JordanBig band trumpeterNeeds VoteJoe JordanLudwig "Joe" JordanLudwig Joe JordanLucky Millinder And His OrchestraTaylor's Dixie Orchestra + +2474830Nathaniel AllenTrombone player.Needs VoteNat AllenNathanael AllenLouis Armstrong And His Orchestra + +2474831Edmund McConneyDrummer in the Swing Era.Needs Votehttps://www.allmusic.com/artist/edmond-mcconney-mn0001270417Ed McConneyEd. McConneyEdmond McConneyEdward McConneyLouis Armstrong And His OrchestraErskine Hawkins And His OrchestraHot Lips Page And His Band + +2474835Don Hill (5)US American jazz, rhythm and blues and rock and roll saxophonist, born 6th December, 1921. In the late 40's he played alto saxophone in Louis Armstrong's & Jay McShann's big bands. Around the same time he was one of the founding members of [a=The Treniers], band with whom he would stay over 5 decades, until 2003. His autobiography "House Party Tonight" was published in 2012.Needs Votehttps://www.lventertainershalloffame.com/apps/photos/photo?photoid=197955980D. HillDonald HillHillLouis Armstrong And His OrchestraThe TreniersGene Gilbeaux OrchestraDon Hill And His Orchestra + +2474836Ernest Thompson (2)Jazz saxophonist (mainly baritone)Needs VoteE. ThompsonErnest "Cocky" ThompsonErnest ThompErnest ThomsonErnie ThompsonThompsonLouis Armstrong And His OrchestraBill Doggett's OctetArt Blakey's Band + +2474837Louis GrayCredited as trumpeter.Needs VoteLouis Armstrong And His OrchestraBenny Carter And His Orchestra + +2474838Robert Butler (4)Jazz trumpeter who worked with [a38201]Needs VoteBob ButlerLouis Armstrong And His Orchestra + +2475727Henriette LuytjesHenriëtte LuytjesHenriette Luytjes is a Dutch Violinist. + +Henriette Luytjes studied with Viktor Liberman at the Utrecht Conservatory. After graduating, she continued her studies with Herman Krebbers. In 1986, she moved to Vienna for three years, where her teachers included Gerhart Hetzel, principal violinist of the Vienna Philharmonic Orchestra. Luytjes then joined the Vienna Chamber Orchestra. + +After returning to the Netherlands, she joined the first violin section of the Concertgebouw Orchestra in March 1991. In the same period, she co-founded the acclaimed Euridice Quartet with colleagues from the orchestra. The quartet has made several CD recordings and given numerous concerts. She is also a member of the Concertgebouw Chamber Orchestra and the Aemstel Ensemble, and performs regularly on chamber music concerts. + +Henriette Luytjes plays an 1800 violin built by David Hopf.Needs Votehttps://www.concertgebouworkest.nl/en/musicians/henriette-luytjesHenriëtte LuytjesConcertgebouworkestConcertgebouw Chamber OrchestraWiener KammerorchesterEuridice Quartet + +2476341Philippe HanonFrench bassoonistNeeds Votehttps://www.facebook.com/philippehanonbassonPh. HanonOrchestre National De France + +2476342Olivier DoiseFrench oboist.Needs VoteOrchestre Philharmonique De Radio France + +2476345Marc BauerTrumpet playerNeeds VoteOrchestre National De FranceEnsemble Epsilon + +2476347Céline NessiFrench flute player.CorrectOrchestre National De L'Opéra De Paris + +2476349Sabine ToutainFrench violist, born in 1966.Needs VoteS. ToutainOrchestre National De France + +2476350Pierre LaniauFrench classical guitarist, born in 1955.Needs Voteピエール・ラニオー + +2476400Laura MariannelliItalian classical violinist, active in recording since 1994.CorrectOrchestra da Camera ItalianaOrchestra Del Maggio Musicale Fiorentino + +2477476Chicago Symphony WindsNeeds VoteMembers Of The Chicago Symphony WindsMembers of the Chicago Symphony WindsChicago Symphony Orchestra + +2478376Martin KerschbaumMartin Kerschbaum (born 1961) is an Austrian classical percussionist/vibraphonist and conductor.Needs Votehttps://www.martinkerschbaum.com/Vienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienMallet-Trio + +2478377Wiener KammermusikerAustrian chamber ensemble from Vienna, founded in 1972 as the chamber music ensemble of the Vienna Symphony Orchestra ([a=Wiener Symphoniker]).Needs VoteDie Wiener KammermusikerWiener Symphoniker + +2478660Klaus-Dieter BrandtClassical cellistNeeds VoteKlaus Dieter BrandtMusica Antiqua KölnEpoca BaroccaNew Seasons EnsembleKölner AkademieJansa DuoAlte Musik Köln + +2479226David ChickeringAmerican cellist.Needs VoteNew Zealand Symphony OrchestraChicago Symphony OrchestraDominion QuartetNew Zealand Piano Quartet + +2479945Günter SeifertAustrian violinist, born in 23 May 1948 in Weyer, Austria.Needs VoteProf. Günter SeifertOrchester Der Wiener StaatsoperWiener PhilharmonikerCamerata Academica SalzburgEnsemble WienSeifert String Quartet + +2480145Tajana NovoselTajana Novosel-WeitzerCroatian classical violinistNeeds VoteTajana Novosel-WeitzerBruckner Orchestra Linz + +2480612Tomislav ŠestakClassical violinistNeeds VoteTmislav SestakTomislav SestakWiener SymphonikerZagrebački Gudački KvartetNew Vienna String Quartet + +2480750Lester & Lee Young's OrchestraNeeds Major ChangesLee & Lester Young's OrchestraLee And Lester Young's BandLester And Lee Young's BandLester YoungJimmy RowlesRed CallenderLee Young (2)McLure "Red Mac" MorrisBumps MyersPaul Campbell (5)Louis Gonzales (3) + +2481296Peter Schreiber (2)Austrian classical oboist, born 1965 in Vienna, Austria.Needs Votehttp://www.peterschreiber.at/Vienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinAustro-Hungarian Haydn Orchestra + +2481455Kai RapschGerman oboist and English horn player, born 1976 in Berlin, Germany.Needs Votehttp://www.kai-rapsch.de/home.htmlhttps://de.wikipedia.org/wiki/Kai_Rapschhttps://www.mphil.de/ueber-uns/musikerinnen-und-musiker/details/kai-rapschMünchner PhilharmonikerDeutsches Symphonie-Orchester BerlinEnsemble Oriol BerlinDas Mozarteum Orchester Salzburg + +2481730Doc BehrendsonNeeds VoteDoc BerensonLadd's Black AcesBailey's Lucky Seven + +2481771Hubert LéonardBelgian composer and violinist. + +B.: April 7, 1938 +D.: May 6, 1890 + +Needs Votehttp://fr.wikipedia.org/wiki/Hubert_L%C3%A9onardhttps://adp.library.ucsb.edu/names/105799G. LeonardH. LéonardHenri LéonardLeonardLéonardГ. Леонард + +2482325Placide CappeauMary-Placide CappeauNeeds VoteCappeauCappeau de RoquemaureMarie CappeauMary CappeauP. CappeauP. ClappeauPlacide Cappeau De RoqueinaurePlacide Cappeau de RoquemairePlacide Cappeau de RoquemaurePlacide CappeaunPlacide ChappeuPlacide ClappeauPlacido Cappeau de RoquemaureTraditionalde RoquemaureCappeau De Roquemaure + +2482581Rudolf KlepačRudolf Klepač (1913 - 1994) was a classical bassoonist.Needs VoteRudolf KlepacRudolf KlepazFestival Strings LucerneDas Mozarteum Orchester Salzburg + +2483126Ray Rossi (2)American jazz pianist.Needs VoteR. RofferBoyd Raeburn And His OrchestraSam Donahue And His Orchestra + +2483147Ed FrommAmerican jazz trombonist.Needs VoteEdward FrommCharlie Barnet And His OrchestraSam Donahue And His Orchestra + +2483501Barbara GórzyńskaBarbara Górzyńska (b. 1953) is a Polish violinist and music educator, a soloist of [a=Hallé Orchestra]. In 1972, Barbara won the third prize at the 6th International Henryk Wieniawski Violin Competition. Gorzynska also became a laureate of the International George Enescu Competition (1970) and the winner of International Carl Flesch Competition (1980) in London. She graduated from the Academy of Music in Łódź. + +As a soloist, Barbara Górzyńska had been performing with [a=London Philharmonic Orchestra], [a=The Royal Philharmonic Orchestra], [a=English Chamber Orchestra], [a=Staatskapelle Dresden], and [a=The National Warsaw Philharmonic Orchestra]. In 1981, she debuted at the [l=Royal Festival Hall] in London and joined the Hallé Orchestra. For many years, Barbara was a visiting professor at the Hochschule Für Musik Und Darstellende Kunst In Graz.Needs Votehttp://www.wieniawski.com/gorzynska_barbara.htmlBarbara GórzýnskaHallé Orchestra + +2483583Radovan VlatkovićRadovan VlatkovićRadovan Vlatković (b. 1962, Zagreb - Croatia) is a Croatian hornist. He studied at the Zagreb Music Academy in the class of prof. Prerad Detiček and in Detmold, Germany with prof. Michael Höltzel. Vlatković gained numerous national and international awards (Premio Ancona, Italy 1979, ARD Award, Munich, Germany 1983). He was a solo player for the Radio Berlin Symphonic Orchestra (1982-1990). Since 1992 he taught at many music schools (Stuttgart, Salzburg, Madrid, London). His international appearances as solo and chamber musician are uncountable. He recorded many records for EMI, DECCA, Philips, Deutsche Grammophon, Teldec, Dabringhaus & Grimm and Denon. He won the 2012 Croatian Porin Music Award for Lifework.Needs Votehttps://www.radovanvlatkovic.com/https://en.wikipedia.org/wiki/Radovan_Vlatkovi%C4%87R. VladkovichRadovan VlapkovecRadovan VlatkovicRadovan VlatkoviãRadovan VlatkovičRadovan VlatkowicVlatkovicVlatkovićラドヴァン・・ヴラトコヴィッチRadio-Symphonie-Orchester BerlinCamerata Academica SalzburgOrkestar GaudeamusOrchestre De Chambre De ParisGerman BrassBerliner Solisten (2)Les Vents Français + +2483707Ulrich Von WrochemGerman violist, born 13 September 1944 in Dippoldiswalde, Germany.Needs VoteBamberger SymphonikerOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +2484150Ingvill HafskjoldClassical clarinetistNeeds VoteOslo SinfoniettaOslo Filharmoniske OrkesterKringkastingsorkestretEnsemble Ernst + +2484359Bettina Ejlerts JensenDanish bassoonist, born in 1963.Needs Votehttps://soundcloud.com/bettinaejBettina Ejlerts-JensenAalborg Symfoniorkester + +2484367Andres KontusEstonian trombonist, born August 25 1981 in Tallinn.Needs VoteEstonian National Symphony OrchestraNYYD EnsembleArs Nova CopenhagenEstonian Festival Orchestra + +2484371Simon SigfussonSimon W. SigfussonDanish percussionist (born in 1971).Needs VoteAalborg Symfoniorkester + +2484395Jacob RingsmoseJacob Ferlev RingsmoseDanish bassoonist, born in 1982CorrectAalborg Symfoniorkester + +2484405Jesper Busk SørensenDanish classical trombonistCorrectBerliner PhilharmonikerArs Nova Copenhagen + +2484971Sybil MichelowSouth-African contralto/mezzo-soprano vocalist, born: 12 August 1925 in Johannesburg, South Africa; died: 05 January 2013 in London, England.Needs Votehttp://www.bach-cantatas.com/Bio/Michelow-Sybil.htmMichelowSibyl MichelowSybill Michelow + +2485112Pauline ByrnePauline Byrns (all other spellings of her last name, including "Byrne" are incorrect). American singer. +Born May 6, 1917 in Beaver Township., Missouri, USA. +Died September 18, 1990 in Sherman Oaks, California, USA (age of 73). +Married 1941 to Jerry Preshaw of Six Hits and a Miss (divorced 1947). Married 1949 to Howard Hudson of The Starlighters (also formerly of Six Hits and a Miss). + +She performed the vocal duties on "Reckon I'm in Love" by Paul Weston and His Orchestra, which hit #23 in 1949 in the U.S. Sometimes incorrectly credited as Pauline Byrnes.Needs Votehttp://en.wikipedia.org/wiki/Pauline_Byrnshttps://www.imdb.com/name/nm3688346/Pauline ByrnesPauline ByrnsThe StarlightersArtie Shaw And His OrchestraSix Hits And A Miss + +2485385Louise Martin (4)British classical harp playerNeeds VoteBBC Symphony Orchestra + +2485401Jim Ross (4)Trumpeter at The Metropolitan Opera since 1995, and also an active session musician in New York. Has held trumpeter positions in various orchestras in the US and Canada.Correcthttps://www.metorchestramusicians.org/portfolio/james-ross-trumpet/https://nyoc.org/james-ross/James RossNew York PhilharmonicSeattle Symphony OrchestraThe Vancouver Opera OrchestraThe Metropolitan Opera House Orchestra + +2485672Iwona FüttererClassical harpsichordistNeeds VoteFüttererMünchener Bach-Orchester + +2485673Ulrike SchottClassical harpsichordistNeeds VoteSchottMünchener Bach-Orchester + +2486399Siegfried UhlClassical musician credited for double bass, violin and organ.Needs VoteWürttembergisches Kammerorchester + +2486505BR-KlassikClassical music branch of the German broadcast [a639838]. +See also: [l247601] label page.Needs Votehttps://www.br-klassik.de/https://www.facebook.com/brklassikBR KlassikMeret ForsterBayerischer Rundfunk + +2486544Emil TchakarovЕмил ЧакъровBulgarian conductor, born 29 June 1948 in Burgas, Bulgaria and died 4 August 1991 in Paris, France.CorrectEmil CeakarovEmil ChakalovEmil ChakarovEmil ChakurovEmil TchararovEmil TschakarowEmil TschakirovTchakarovЕ. ЧакаровЕмил ЧакъровЭмил ЧакъровЭмил Чакыровエミール・チャカロフ + +2486944Lorenzo SpadoniLorenzo Spadoni (Roma, May 27, 1937) is an Italian singer, actor and dubber.Needs Votehttp://it.wikipedia.org/wiki/Lorenzo_SpadoniL. SpadoniI Cantori Moderni di AlessandroniClan AlleluiaI Vocalisti Di Roma + +2486945Anna Maria RipaniNeeds VoteA. M. RipaniA.M. RipaniI Cantori Moderni di Alessandroni + +2486946Renato OrioliNeeds VoteR. OrioliI Cantori Moderni di Alessandroni + +2488536Jan HawryszkówClassical bassoonistNeeds VotePolish National Radio Symphony Orchestra + +2488545Aureli BłaszczokAureli Błaszczok (born 24 July 1955 in Gliwice) is a Polish violinist. Concertmaster of the [a990584] from 2001 to 2021.Needs VoteStuttgarter PhilharmonikerBusch Kollegium Karlsruhe + +2489127Art MastersBig band saxophonistNeeds VoteArtie Shaw And His OrchestraArt Shaw And His New Music + +2489540Gregorian (4)Gregorian refers to anonymous (medieval) composers of Gregorian chants. + +Gregorian chants were believed to be composed by God and written down through man. The illustration depicts Gregory I who receives Gods music through a dove. + +This artist does not refer to a specific group of named individuals (such as a band or musical group) but rather defines the collective term for composers of plainchant melodies of medieval Christian tradition.Needs Votehttps://en.wikipedia.org/wiki/Gregorian_chantAmbrosianischer ChoralAnonymus (Ca 1452)Anonymus (I Poł. XV W.)Anonymus (I Poł. XVI W.)Anonymus (I poł. XV w.)Anonymus (I poł. XVI w.)Anonymus (II Poł. XV W.)Anonymus (II poł. XV w.)Anonymus (Wg Rękopisu Z 1407 R.)Anonymus (XV W.)Anonymus (XV w.)Anonymus (ca 1452)Anonymus (wg Rękopisu z 1407 r.)Antica Melodia GregorianaAntienne GrégorienneCamto GregorianoCanto GregorianoChant GrégorienGegorian ChantGergorian ChantGregoirian ChantGregoriaansGregoriaanse GezangenGregorianGregorian ChantGregorian ChantsGregorianikGregorianischGregorianischer ChoralGregorianoGregorianskGregoriansk SangGregoriuan ChantGrégorienHymne Grégorienne de l'AventPlain ChantPlainchantPlainsongPremonstratenser Gregoriaans[Gregoriano] + +2489713Vladimír KubátVladimír KubátCzech hornist. Needs VoteV. KubatV. KubátVlad. KubátVladimir KubatVladimir KubátVladimír KubatВладимир КубатThe Czech Philharmonic OrchestraThe Bohemian FivePrager MusiciPrague Woodwind Octet + +2490189George LawsonRhythm & blues saxophonist, who recorded with his orchestra for Rockin' in West Memphis, Arkansas, in early 1953. +He also recorded with [a=Joe Hill Louis] at the same occasion.Needs VoteRoy Eldridge And His OrchestraGeorge Lawson Orchestra + +2490570Steffen BarkawitzGerman classical tenor vocalist. +Also appears as director of echo effects on classical releasesNeeds VoteRIAS-Kammerchor + +2491679Nicolae SarpeItalian cellist. Needs Votehttp://yaracultura.blogspot.it/2011/07/cuartetos-de-camara-de-yaracuy-se.htmlNicola SarpeOrchestra dell'Accademia Nazionale di Santa Cecilia + +2491682Krystyna PawloskaViolinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2491685Adriano CanettaItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaTrio SalonGli Scaligeri + +2492887Margaret MorseCanadian classical oboistNeeds VoteOrchestre symphonique de Montréal + +2492996Lenore SmithClassical flutistCorrectLenor SmithThe Academy Of St. Martin-in-the-Fields + +2493534Egert LeinsaarEstonian violinistNeeds VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraEstonian Festival Orchestra + +2493542Maris VallsaluClassical cellistNeeds VoteEstonian National Symphony Orchestra + +2494381Edzard BurchardsGerman Countertenor & Alto vocalist, born 1966 in OldenburgNeeds Votehttp://www.edzardburchards.deCollegium VocaleEnsemble HofkapelleRheinische KantoreiVocalconsort Berlin + +2494382Hiltrud HampeClassical violinist & viola palyerNeeds VoteCollegium VocaleKlassische Philharmonie StuttgartEnsemble Il CapriccioHofkapelle Stuttgart + +2494383Tami TromanClassical violinistNeeds VotePulcinellaLes Arts FlorissantsCollegium VocaleAusoniaLe Cercle De L'HarmonieOpera FuocoLes MuffattiEnsemble Les SurprisesEnsemble Rosasolis + +2494384Julien DebordesFrench bassoon & recorder player +Born in 1980, Julien Debordes began studying modern bassoon at Poitiers, before continuing to Paris at the Conservatoire National Supérieur de Musique, where he won first prize in 2005 in the bassoon class Gilbert Audin.Needs VoteOrchestre Des Champs ElyséesCollegium VocaleAusoniaEnsemble MasquesNorthernlightLe Banquet Céleste + +2494387Bernd FröhlichBernd Oliver FröhlichAustrian tenor vocalist. Also plays saxophone. +b.: 1970 in InnsbruckNeeds Votehttp://www.bach-cantatas.com/Bio/Frohlich-Bernd.htmhttps://www.berndoliverfroehlich.comB.FröhlichBend Oliver FröhlichBernd O. FröhlichBernd Oliver FröhlichBernd Oliver FrölichBernd Oliver FöhlichBernd Olivier FröhlickHuelgas-EnsembleCollegium VocaleWeser-RenaissanceMSSQLe Miroir De MusiquePer-SonatEnsemble Vox ArchangeliDionysos NowEnsemble Rosarum FloresL'ultima ParolaMarini Consort Innsbruck + +2494388Koen Van StadeClassical tenor vocalistNeeds VoteCollegium VocaleGesualdo Consort AmsterdamLa Chapelle RhénaneIl Concerto Barocco + +2494390Bénédicte PernetBorn in Reims, France, Bénédicte Pernet followed her studies at the conservatorium here where she obtained her diplomas on violin, music education and chamber music.Needs Votehttp://www.ensemble-ausonia.org/bio.php?id=48Collegium VocaleLe Poème HarmoniqueAusoniaAl Ayre Español + +2494782Phil GiacobbiNeeds VoteGeorge Williams And His Orchestra + +2494783Joe ParksNeeds VoteJoe ParkParksGeorge Williams And His Orchestra + +2495111Neil LunceClassical tenor.CorrectThe Academy Of Ancient Music + +2495597Justin EmerichAmerican trumpeter. +Needs VoteSan Francisco SymphonyThe Canadian BrassBurning River Brass + +2496488Patrick Mason (2)Classical baritone / bass vocalist.Needs Votehttps://www.naxos.com/person/Patrick_Mason/5343.htmMasonSchola AntiquaThe Waverly ConsortEnsemble Vocal Sagittarius + +2496585Lynton AtkinsonBritish tenor vocalist.Needs VoteCorydon SingersThe Schütz Choir Of LondonEnglish Harmony Choir + +2496591Felix GargerleGerman violinist, engineer and producer.CorrectBayerisches Staatsorchester + +2497557John Lloyd YoungAmerican actor and singer, born 4 July 1975 in Sacramento, California, USA.CorrectJohn Lloyd Young (Tony Award Winner)"Jersey Boys" Original Broadway Cast + +2497574Daniel ReichardCorrectThe Midtown Men"Jersey Boys" Original Broadway Cast + +2497747J. Robert SpencerNeeds VoteThe Midtown Men"Jersey Boys" Original Broadway Cast + +2498581Perry DreimanPercussionist.Needs VoteLos Angeles Philharmonic OrchestraArch Ensemble + +2498690Fredrik August DahlgrenSwedish writer and lyricist. +Born September 20, 1816 in Nordmark parish, Värmland, Sweden — died February 16, 1895 in Djursholm, Sweden.Needs Votehttps://en.wikipedia.org/wiki/Fredrik_August_DahlgrenDahlgrenDahlgren F. A.F A DahlgrenF. A. DahlgrenF. DahlgrenF.A. DahlgrenFA DahlgrenFredrik A DahlgrenFredrik A. DahlgrenFredrik På Rannsätt + +2498795Georges MiquelleClassical cellist, born 24 March 1896 in Lille, France and died in 1977.Needs Votehttps://en.wikipedia.org/wiki/Georges_MiquelleBoston Symphony OrchestraDetroit Symphony Orchestra + +2499623Marie-Noëlle de CallataÿBelgian sopranoNeeds Votehttp://www.bach-cantatas.com/Bio/Callatay-Marie-Noelle-de.htmMarie-Noelle De CallatayChoeur de Chambre de NamurCurrende + +2501561Richard MotzClassical violinist.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienUlsamer CollegiumEnsemble Eduard Melkus + +2501563Christin BuchnerClassical violinist.CorrectConcentus Musicus Wien + +2501564Veronika SchmidtClassical violinist.Needs VoteVeronica SchmidtVeronikca SchmidtConcentus Musicus WienLa Grande Ecurié Et La Chambre Du Roy + +2503275John Young (16)John Merritt YoungJohn Young (born March 16, 1922, Little Rock, Arkansas, USA - died April 16, 2008, Chicago, Illinois, USA) was an American jazz pianist. + +A longtime fixture of the Chicago bop scene, pianist John Young collaborated with jazz giants ranging from [a=Sarah Vaughan] and [a=Ella Fitzgerald] to [a=Dexter Gordon] during a career spanning more than six decades. Young continued performing until severe sciatic nerve inflammation forced him to retire in 2005. +Needs Votehttp://www.jazzdocumentation.ch/john_young/young.htmlhttps://en.wikipedia.org/wiki/John_Young_(jazz_pianist)John YoungJohnny YoungYoungAndy Kirk And His OrchestraVon Freeman QuartetThe John Young TrioTommy Palmer TrioFrank Foster Sextet + +2503785Jozef PodhoranskýSlovak cello player, born 29 March 1951.Needs Votehttps://www.facebook.com/podhoranskyhttp://www.scholaarvenzis.eu/pedagogues/jozef-podhoransky-/http://www.collegiumwartberg.com/hostia/hostia-2013/podhoransky-jozef/J. PodhoranskýJosef PodhoranskyJozef PodhoranskyJozef PodhoránskyPodhoranský J.Capella Istropolitana + +2505561Sébastien RoulandChorus Master of Choir Les Musiciens du Louvre CorrectLes Musiciens Du Louvre + +2506262Robert KetteGerman classical percussionist, born 1956 in Weimar.Needs VoteRadio-Sinfonieorchester StuttgartTafelmusik Baroque OrchestraSWR Symphonieorchester + +2506267Christof SkupinClassical trumpet player.Needs VoteChristoph SkupinRadio-Sinfonieorchester StuttgartStuttgart Radio BrassElbeblechSWR Symphonieorchester + +2506271Franz BachGerman classical percussionist and educator, born 1965 in Baden-Baden.Needs VoteRadio-Sinfonieorchester StuttgartTafelmusik Baroque OrchestraSWR Symphonieorchester + +2506306Frank Szathmáry-FilipitschClassical trombonist.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleStaatsphilharmonie Rheinland-PfalzSWR Symphonieorchester + +2506352Michael RoundBritish classical solo & orchestral pianist, celesta & keyboard player, teacher, accompanist, arranger, writer (for 'Music Teacher', 'International Piano', & other Rhinegold magazines), music editor, and occasional conductor. Born in Halesowen, West Midlands, England, UK. +Arranger for, pianist with, and conductor of the [b]St Clements Wind Ensemble[/b], a group founded in 2004. Teacher of Piano at the [l820171].Needs Votehttps://www.facebook.com/michael.round.779http://www.kingstonphil.org.uk/docs/KPP_Jul-11_page_ALL.pdfhttps://www.musiconthursdays.org/22nd-may-2014---1230pm.htmlwww.pianostudycentre.org.uk/michael_round_may_2015.htmlM. RoundLondon Symphony OrchestraPhilharmonia Orchestra + +2506554Lily FrancisClassical violinistNeeds Votehttp://www.lilyfrancis.net/about.htmlThe Chamber Orchestra Of EuropeMetropolis Ensemble + +2506811Giorgia SimbulaGiorgia SimbulaItalian violinistCorrectLe Concert D'AstréeEnsemble ArtaserseTrio Solista & FriendsLa Petite Symphonie + +2508855Anthony Leggett (2)Classical wind instrumentalist (Sackbut & Cornett)Needs VoteGabrieli PlayersThe King's ConsortQuintEssential Sackbut And Cornett Ensemble + +2508856Adrian France (2)Classical wind instrumentalist (bass sackbut, tenor trombone).Needs Votehttps://adrianfrance.co.uk/Collegium Musicum 90Gabrieli PlayersThe King's ConsortQuintEssential Sackbut And Cornett EnsembleEx Cathedra Baroque OrchestraCappella Mediterranea + +2509627Hasso van der WestenClassical lutenistNeeds VoteConcertgebouworkest + +2510170Veronika NovotnaVeronika NovotnáCzech classical violinist living in Stockholm, Sweden, born on 24 April 1981.Needs Votehttps://www.linkedin.com/in/veronika-novotna-30783829/?originalSubdomain=seVeronica NovotnaVeronika NovotnáSveriges Radios Symfoniorkester + +2511179Leah ArsenaultAmerican flute player.Needs Votehttp://www.leahfisher.com/Leah Arsenault BarrickNational Symphony OrchestraThe Tanglewood Orchestra + +2511183Mary Lynch (2)American oboist.Needs VoteMary Lynch VanderKolkMary Lynch VanderkolkThe Cleveland OrchestraSeattle Symphony OrchestraThe Tanglewood Orchestra + +2511184Andrew CuneoClassical bassoonistNeeds VoteSaint Louis Symphony OrchestraThe Tanglewood Orchestra + +2511209Rui DuClassical violinistNeeds VoteBaltimore Symphony OrchestraMinnesota OrchestraThe Tanglewood Orchestra + +2511710Landon BeardNeeds Major Changes + +2511716Noah RiveraNeeds Major Changes + +2511744Glauco CortiniItalian PhotographerNeeds VoteCortiniG. Cortini + +2512433Rob DigginsClassical violinist.Needs Votehttp://robdiggins.com/Musica Ad RhenumPortland Baroque OrchestraMagnificat Baroque Ensemble + +2512540Angus Davidson (2)Classical countertenor & alto vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Davidson-Angus.htmThe Scholars Baroque EnsembleThe Monteverdi ChoirTaverner ChoirThe English Concert + +2512545Jerzy WołochowiczClassical cellistNeeds VoteJerzy WolochowiczOrkiestra Symfoniczna Filharmonii Narodowej + +2513738Ilse WolfGerman-born (later British) soprano vocalist and teacher (Düren, Germany, June 7 1921 - September 6, 1999).Correcthttp://www.bach-cantatas.com/Bio/Wolf-Ilse.htm + +2513832Noah BrandmarkAmerican jazz saxophonist and clarinetistNeeds VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdAbbey Rader Quartet + +2514518Harold NashTrombonistCorrectPhilip Jones Brass Ensemble + +2514519Calvin WiersmaAmerican classical viola player and teacher.Needs VoteCal WiersmaRochester Philharmonic OrchestraMusica Antiqua New YorkEos OrchestraThe Manhattan String QuartetMeliora QuartetMembers Of The Manhattan String QuartetCygnus Ensemble + +2515522Keal CouperAustralian classica trombonistNeeds VoteConcerto KölnAustralian Brandenburg OrchestraCapella De La TorreAbendmusiken Basel + +2516253The Charlie Shavers QuintetNeeds Major ChangesCharley Shavers QuintetCharlie Shavers QuintetCharlie Shavers' QuintetThe Gang (44)Earl HinesAlvin StollerJo JonesCharlie ShaversTab SmithAl LucasBuddy DeFrancoJohnny PotokerSandy Block + +2516538Mathieu LussierCanadian bassoonist, composer and tutor.Needs Votehttp://www.early-music.com/artists/mathieu-lussier/LussierLes Violons du RoyLes Voix HumainesPentaèdreClavecin en concertArion Orchestre BaroqueOrchestre Baroque De MontrealBataclan!Les Jacobins + +2518108Raymund KosterBritish double bass player.CorrectThe Academy Of St. Martin-in-the-Fields + +2518320Robert FranenbergClassical [b]double-bassist[/b].Needs Votehttps://www.facebook.com/robert.franenberghttps://www.linkedin.com/in/robert-franenberg-2920341a/Gabrieli PlayersDe Nederlandse BachverenigingRotterdams Philharmonisch OrkestMusica AmphionOrchestra Of The 18th CenturyApollo Ensemble + +2518321Kees KoelmansDutch classical [b]violinist[/b].Needs Votehttp://www.irmgardschaller.de/index.htmlMusica AmphionOrchestra Of The 18th Century + +2519326Kris KautzmanAmerican contralto and flautistNeeds Votehttps://www.facebook.com/kris.kautzmanBach Society Of Minnesota + +2519869AudiofreqSam GonzalezHardstyle DJ and producer from Sydney, AustraliaNeeds Votehttp://www.audio-freq.comhttps://www.facebook.com/audiofreqdjhttps://twitter.com/audiofreqdjhttps://www.instagram.com/audiofreqdj/https://soundcloud.com/audiofreqdjhttps://www.youtube.com/channel/UC0X_Up8oTCWF4SozovQdYRgAfqAudiofreq.The AcolyteSam GonzalezMitosisOrbit1BRK3 + +2520212Nicolas ValladeFrench trombonist.Needs Voteニコラ・ヴァラードOrchestre National De L'Opéra De ParisLe Concert Des nations + +2520216Tamás VargaCellist, born 1969 in Budapest, Hungary. +Needs Votehttp://www.tamasvarga.com/Tamas VargaOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Wiener CollageWiener Kammerensemble + +2520460Julian Baker (4)British hornist.Needs VoteThe Academy Of St. Martin-in-the-FieldsThe Music PartyThe Military Ensemble Of London + +2520472Sun YiClassical violinistNeeds Vote孫儀Sydney Symphony Orchestra + +2521280George TudoracheClassical violinist.Needs VoteLondon Symphony OrchestraOrchestre Philharmonique De Liège + +2521336Benjamin BucktonClassical violinist.Needs VoteBen BucktonEnglish Chamber OrchestraThe Academy Of Ancient MusicGuildhall String EnsembleThe Chamber Orchestra Of London + +2522400Terence KernWelsh conductor.Needs VoteTerrence Kern + +2522401The London Festival Ballet OrchestraThe [b]London Festival Ballet Orchestra[/b], currently known as [b][a=English National Ballet Philharmonic][/b], is a British philharmonic orchestra associated with the [i]London Festival Ballet[/i] (now "English National Ballet") company, established in 1950 by ballet dancers and choreographers Sir [a=Anton Dolin] (1904—1983) and Dame Alicia Markova (1910—2004).Needs Votehttps://www.ballet.org.uk/the-company/enb-philharmonic/London Festival Ballet OrchestraOrchestra Of London Festival BalletOrchestra Of The London Festival BalletEnglish National Ballet PhilharmonicPaul PritchardJohn Wallace (4)Linda Kidwell + +2522970Fierce DJsElectronic dance music DJ, producer project from Torquay, UK +Style: Hard Dance +email: fiercedjs@rocketmail.com Correcthttp://soundcloud.com/user8972625http://www.facebook.com/pages/Fierce-DJs/206345782735540Fierce DJ'sSteve Davies (7)Daniel Bortoli Wyatt + +2523100Paul Powell (5)Viola playerCorrectGene Krupa And His Orchestra + +2523102Tony D'AmoreAmerican jazz pianistNeeds VoteD'AmoreT. D'AmoreGene Krupa And His OrchestraRoy Eldridge And His Orchestra + +2523103Emil MazaneoUS American big band trombonist of the swing era.CorrectEmil MazancoGene Krupa And His Orchestra + +2523104Jimmy MillazzoAmerican trombonist of the swing era.CorrectJimmy MilazzoJimmy MillazzioGene Krupa And His Orchestra + +2523107Ed BadgleyAmerican jazz trumpeterNeeds VoteEd BadgelyWoody Herman And His OrchestraGene Krupa And His OrchestraStan Kenton And His OrchestraWoody Herman & The Second HerdJimmy Dale Band + +2523108Don BrassfieldJazz saxophonistNeeds Votehttps://www.allmusic.com/artist/don-brassfield-mn0001210657/creditsD. BrassfieldGene Krupa And His OrchestraBob Keene OrchestraSpike Jones & His Other OrchestraDon Brassfield And His Swing Sextette + +2523109Nick GaglioAmerican trombonist of the swing era.CorrectGene Krupa And His Orchestra + +2523110Benny FemanBenjamin C. FemanAmerican jazz alto saxophonist/clarinetist. Needs Votehttps://www.allmusic.com/artist/ben-feman-mn0001605262B. FemanBen FemanBen FenmanBen FreemanBenjamin FemanGene Krupa And His OrchestraLarry Clinton And His OrchestraRoy Eldridge And His Orchestra + +2523111Louis Zito (2)American jazz drummerCorrectGene Krupa And His Orchestra + +2523112Al JordanAmerican trombonistCorrectGene Krupa And His OrchestraJimmy Dorsey And His Orchestra + +2523113Andy PinoAmerican jazz tenor saxophone player. Joined [a=Gene Krupa]'s band in 1943. Joined [a1903222]'s group in late 1944. Played with [a913747]'s group in July 1946.Needs VoteAndy PineAndy PinotWoody Herman And His OrchestraGene Krupa And His OrchestraCharlie Barnet And His OrchestraWoody Herman And The Swingin' Herd + +2523119Dave SchultzeJazz trumpet playerCorrectGene Krupa And His Orchestra + +2523120Ben SeamanUS Trombonist Swing EraCorrectBen SeemanGene Krupa And His Orchestra + +2523121Nick ProsperoUS American big band trumpeter of the swing era.Needs VoteGene Krupa And His OrchestraCasino Royal Orchestra + +2523122Mike TriscariGuitar PlayerCorrectGene Krupa And His Orchestra + +2523124Bill Conrad (2)William Claire ConradAmerican jazz trumpeter (swing era) who played with Gene Krupa, Ted Weems, Joe Venuti, Frankie Masters and others. He married vocalist [a=Marianne Dunne] in 1948. Soon after they retired from the show business, moved to Detroit, and went to work for the Volunteers of America. Eventually the couple relocated to California and became lieutenant colonels in the national charity. + +Born: 7 March 1913 in Peatone, Illinois, USA +Died: 14 October 2008 in Orange, California, USANeeds VoteGene Krupa And His Orchestra + +2523126Mitch MelnickAmerican jazz saxophonistCorrectMitch MelnicMitchell MelnicMitchell MelnickGene Krupa And His Orchestra + +2523129Chuck Evans (2)Jazz trombonistNeeds VoteGeorge Williams And His Orchestra + +2523133Buddy NealAmerican jazz pianistCorrectNealGene Krupa And His Orchestra + +2523135Tony AnelliUS American big band trumpeter of the swing era.Needs VoteGene Krupa And His Orchestra + +2523137Carl BiesackerJazz saxophonistCorrectBieseckerCarl BiesacherCarl BieseckerGene Krupa And His Orchestra + +2523139Jack Zimmerman (2)American jazz trombonist from the Gene Krupa Orchestra.Needs VoteJack ZimmermanGene Krupa And His Orchestra + +2523140Bob Curtis (2)Jazz pianistCorrectGene Krupa And His OrchestraJerry Gray And His Orchestra + +2523141Greg PhillipsAmerican jazz trombonistNeeds Votehttps://www.allmusic.com/artist/greg-phillips-mn0000188806/creditsAinleyG. PhillipsTommy Dorsey And His Orchestra + +2523145Clay HerveyAmerican jazz trombonistCorrectCley HerveyGene Krupa And His Orchestra + +2523148Bob MunozUS American bassist of the swing era.Needs VoteGene Krupa And His Orchestra + +2523150Buddy Wise[b]Caution: This is the US tenor saxophonist from the 1950's. He is sometimes mixed up with the British 1930's jazz musician [a1788703] (alto, baritone saxophone)![/b] + +US Jazz tenor saxophonist from the 1950's era.CorrectBob WiseRaymond WiseRobert 'Buddy' WiseRobert Raymond WiseWiseWoody Herman And His OrchestraGene Krupa And His OrchestraRay Anthony & His OrchestraWoody Herman And His Third Herd + +2523153Stan DoughtyAmerican jazz guitarist of the swing era.CorrectStan DoughtGene Krupa And His Orchestra + +2523154George Walters (2)Jazz pianistCorrectG. WaltersGeorge WalterGeorge WalthersGeorgie WaltersGeorgie WalthersGene Krupa And His OrchestraGene Krupa TrioGene Krupa/Charlie Ventura Trio + +2523155Gordon BoswellAmerican jazz trumpeterCorrectGene Krupa And His Orchestra + +2523159Julius EhrenworthAmerican Cello PlayerCorrectGene Krupa And His Orchestra + +2523272Vincent LucasFrench classical flautist.Needs VoteLucasOrchestre De Paris + +2523692Eoghan McCarthyNeeds VoteLiberaThe Young Musicians London + +2523697Peter SnippBritish operatic and swing singerCorrecthttp://petersnipp.com/Metro VoicesLondon Voices + +2523708Tom BullardBritish Bass & Baritone vocalistNeeds Votehttp://www.tombullard.net/index.htmlThomas BullardMetro VoicesLondon VoicesChoral Scholars of King's College, Cambridge + +2523716Vanessa HeineBritish mezzo soprano and jazz singerCorrectMetro VoicesLondon Voices + +2526402Ben HilliardNeeds Major ChangesHilliard + +2526459Konradin GrothGerman trumpeter and music professor, born 18 April 1947 in Berlin, Germany.Needs Vote"Groth"Conradin GrothK. GrothK.GrothProf. GrothProf. Konradin GrothBerliner PhilharmonikerOrchester Der Deutschen Oper BerlinBlechbläser-Ensemble Der Berliner PhilharmonikerGerman Brass + +2526461Paul HümpelGerman tuba player.CorrectPaul HumpelBerliner PhilharmonikerBlechbläser-Ensemble Der Berliner Philharmoniker + +2526605Stéphanie MeyerCellist.Needs VoteStephanie MeyerStêphanie MeyerCamerata BernAmp (11)Swiss Baroque SoloistsEnsemble Phoenix Basel + +2526965Magali PrevotMagali PrévôtClassical violist.Needs VoteMagali PrévôtOrchestre National Bordeaux Aquitaine + +2527502Claus KleinGerman horn player.CorrectBamberger SymphonikerBamberger Bläserquintett + +2527503Georg MeerweinGerman oboist & bombarde instrumentalist and music professor, born 1932 in Bickensohl.Needs VoteGeorge MeerweinBamberger SymphonikerBamberger BläserquintettMusica Canterey BambergKammerorchester Wolfgang Marschner + +2527795Mel Powell & His All-StarsNeeds Major ChangesMel Powell And His All StarsMel Powell And His All-StarsMel Powell's All-StarsTony Scott (2)Mel PowellMilt HintonGene KrupaJo JonesUrbie GreenTeddy NapoleonBuck ClaytonBuddy TateRuby BraffVernon BrownEddie ShuSteve Jordan (3)Lem Davis + +2527870Phil Cook (4)American jazz trumpeterCorrectPhilip CookHarry James And His OrchestraWoody Herman And His OrchestraHarry James & His Music MakersThe Woody Herman Big BandWoody Herman And His Third Herd + +2527992Karoliina KriisClassical soprano vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/karoliina-kriis/Karolina KriisEstonian Philharmonic Chamber Choir + +2527993Ave HännikäinenClassical alto vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/ave-hannikainen/Ave HännikläinenEstonian Philharmonic Chamber ChoirEesti Raadio Segakoor + +2527994Hele-Mai PoobusFormer classical soprano vocalist, now archivist at the [l922523], born in 1978 in Tallinn, Estonia.Needs VoteEstonian Philharmonic Chamber Choir + +2527995Annika LõhmusEstonian soprano vocalist.Needs Votehttps://www.linkedin.com/in/annikal%C3%B5hmus/https://ridadevahel.wordpress.com/Estonian Philharmonic Chamber Choir + +2528000Merili KristalClassical alto vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +2528003Helis NaerisClassical alto vocalist.Needs Votehttps://www.facebook.com/helis.naeris/https://www.epcc.ee/en/inimesed/helis-naeris/Estonian Philharmonic Chamber Choir + +2528004Marianne PärnaClassical alto vocalist.Needs Votehttps://www.epcc.ee/inimesed/marianne-parna/Estonian Philharmonic Chamber Choir + +2528112Louella AlatiitClassical violinist.Needs Votehttp://louellaalatiit.com/Opera FuocoLes Passions De L'Ame (2)The English ConcertTrondheim Barokk + +2528114Kristin DeekenGerman classical violinistNeeds VoteConcerto KölnHarmony Of Nations Baroque OrchestraDunedin ConsortHarmonie UniverselleThe English ConcertThe Mozartists + +2528115Huw DanielClassical violinist. +Huw Daniel was a pupil at Ysgol Gymraeg Castell-nedd and Ysgol Gyfun Ystalyfera, South Wales, and continued his education as an organ scholar at Robinson College, Cambridge, where he graduated with first-class honours in music in 2001.Needs Votehttps://thesixteen.com/team/huw-daniel/The SixteenCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe King's ConsortHarmony Of Nations Baroque OrchestraDunedin ConsortIrish Baroque OrchestraEuropean Union Baroque OrchestraThe English ConcertOrquestra Barroca Casa Da Música + +2528116Nadja ZwienerGerman born violinist Nadja Zwiener studied in Berlin and at the Guildhall School of Music and Drama in London, where she specialised in historic performance practice of music from the 17th to the 19th Century. She is the co-founder of [a=Collegium Musicum '23]Needs Votehttp://www.englishconcert.co.uk/biographies/detail.php?ID=1294http://nadjazwiener.com/Nadja ZweinerAkademie Für Alte Musik BerlinEuropean Brandenburg EnsembleCamerata LipsiensisThe English Concert + +2528117Alfonso Leal Del OjoClassical viola player.Needs Votehttps://twitter.com/osnoflalealAlfonso LealThe Amsterdam Baroque OrchestraCollegium Musicum 90Dunedin ConsortClassical OperaThe English ConcertThe Mozartists + +2528907Bruno SchneiderSwiss hornist, born in 1957.Needs Votehttp://www.bruno-schneider.ch/Symphonie-Orchester Des Bayerischen RundfunksBachcollegium StuttgartOrchestra MozartBläserensemble Sabine MeyerQuintett Chalumeau + +2529206David HultAmerican violinist and violist.Needs VoteRochester Philharmonic OrchestraThe Hampshire String Quartet + +2530300Frantz LemsserDanish flute player born 3 July 1934. Joined [a=Tivolis Koncertsals Orkester] in 1956 after graduation from [l=Det Kongelige Danske Musikkonservatorium]. From 1963 member of [a=Danmarks Radios Symfoniorkester]. Appointed second solo flutist in 1966 and from 1968 first solo flutist during 26 years. Retired in 1997.Needs Votehttps://da.wikipedia.org/wiki/Franz_LemsserFrantz LemmserFrantz LemmsserTivolis Koncertsals OrkesterDanmarks Radios Symfoniorkester + +2531401Torunn HoltlienClassical violist.Needs VoteBergen Filharmoniske Orkester + +2531418Harald BløViolinist.Needs VoteBergen Filharmoniske OrkesterBergen Chamber Ensemble + +2531830Harold NewtonAmerican violist, born in 1906 and died in 1995.Needs VoteChicago Symphony Orchestra + +2532528Murni SuwetjaDutch lyrical sopranoNeeds Votehttps://suwetja.wordpress.comCollegium Vocale + +2532798Jan ŠtrosJan Štros (born 1935) is a Czech classical cellist.Needs VoteJ. ŠtrosJan ŠtrossThe Czech Philharmonic OrchestraSuk Quartet + +2533153Wieland WelzelGerman timpanist and percussionist.Needs VoteBerliner PhilharmonikerBrass PartoutBundesjugendorchester + +2533154Wenzel FuchsWenzel Fuchs is an Austrian classical clarinetist. He's a member of the [a260744] since 1993.Needs VoteFuchsBerliner PhilharmonikerWiener VolksopernorchesterPhilharmonisches Oktett BerlinORF Radio-Symphonieorchester Wien + +2533155Dominik WollenweberGerman classical woodwind instrumentalist.Needs VoteBerliner PhilharmonikerEnsemble Berlin PragCollegium Der Berliner Philharmoniker + +2533156Stefan SchweigertGerman classical bassoonistCorrectSchweigertBerliner PhilharmonikerBerliner Barock SolistenBundesjugendorchester + +2533384Daniela LiebClassical traverso Flute & Piccolo Flute instrumentalistNeeds VoteConcerto KölnFreiburger BarockorchesterKammerorchester BaselLes Passions De L'Ame (2)Orchester Der J.S. Bach StiftungIl Pomo d'OroDarmstädter Hofkapelle + +2533985Vincent PirroNeeds VotePaul Whiteman And His Orchestra + +2533986Lyle BowenAmerican clarinetist and saxophonist. + +Played with [a=Johnny Bond & His Red River Valley Boys] and with [a=Artie Shaw].Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/371493/Bowen_LyleArtie Shaw And His Orchestra + +2534055Sharon St. OngeAmerican hornist.Needs VoteSharon St OngeConcertgebouworkestEbony Band + +2534058Bart ClaessensDutch trombonistNeeds VoteConcertgebouworkestEbony BandNew Trombone Collective + +2534076Raymond MunnecomDutch trombonist, born 1968 in Neeritter, Netherlands. +Needs VoteConcertgebouworkestNederlands Fanfare OrkestFlexible Brass + +2534101Perry HoogendijkDutch tuba player, born in 1971.CorrectConcertgebouworkestNoordhollands Philharmonisch Orkest + +2534105Hans AltingDutch trumpet player, born in 1963.Needs VoteConcertgebouworkestEbony BandNederlands Fanfare Orkest + +2534243Edgar Campbell (3)Clarinet player.Correcthttp://www.allmusic.com/artist/edgar-campbell-mn0001365864/creditsFletcher Henderson And His OrchestraEurope's Society OrchestraCordy Williams' Jazz MastersThe Jazz Masters + +2534359Bénédicte RoyerFrench violist and violinist, born 1987 in Paris, France.Needs VoteBenedicte RoyerOslo Filharmoniske OrkesterÖsterreichisches Ensemble Für Neue MusikGustav Mahler Jugendorchester + +2534361Daishin KashimotoClassical violinist and First Concertmaster of the [a260744].Needs Votehttps://en.wikipedia.org/wiki/Daishin_KashimotoDaishin樫本大進Berliner PhilharmonikerPhilharmonisches Oktett Berlin + +2535102Máté SzücsMáté SzűcsHungarian violistNeeds VoteMàtè SzücsBerliner PhilharmonikerBerlin Chamber Duo + +2536442Frederik BoitsBelgian violist.Needs VoteConcertgebouworkestConcertgebouw Chamber OrchestraAmsterdam Sinfonietta + +2537711Kevin Morgan (5)Tuba playerNeeds VoteRoyal Philharmonic Orchestra + +2537947Vojtech SamecClassical flautistNeeds VoteVoitech SamecSlovak Chamber Orchestra + +2538550Toshie SugibayashiJapanese violist.CorrectDas Mozarteum Orchester Salzburg + +2538552Michiko IiyoshiClassical violinistNeeds VoteMichiko PrysiaznikMichiko Prysiaznik-IiyoshiKammerakademie PotsdamSwonderful Orchestra + +2540086Brigitte PfretzschnerGerman Alto & Contralto vocalist, born 6 January 1936 in Dresden, Germany.Needs Vote + +2540133Alan EwingIrish bass vocalist.Needs Votehttp://www.roh.org.uk/people/alan-ewingEwingNew London ConsortThe English Concert ChoirThe Consort Of Musicke + +2540357John Mills (8)British classical violinist and orchestra leader. He plays on a 1735 Januarius Gagliano violin.Needs Votehttps://www.linkedin.com/in/john-mills-1632823a/English Chamber OrchestraTippett QuartetThe Pale Blue Orchestra + +2542022Raymond WarnierDutch hornist, born 1973 in Sittard, Netherlands.Needs VoteR.E.M. WarnierRadio-Sinfonieorchester StuttgartSüdwestdeutsches KammerorchesterSWR Symphonieorchester + +2542336Joseph MengozziJoseph Gaetan MengozziNeeds Votehttps://fr.wikipedia.org/wiki/Jerry_MengoGaetan MengozziJ. MengozziJoseph Gaetan MengozziMengoMengozziJerry MengoGiuseppe MengozziTeddy Martin (2)Johann OrthJao PandeiroQuintette Du Hot Club De FranceAlix Combelle Et Son OrchestreDanny Polo TrioEddie Barclay Et Son OrchestreChristian Bellest Et Son OrchestreDany Kane Et Son EnsembleDjango's MusicNoel Chiboust Et Son OrchestreBill Coleman & His OrchestraPierre Spiers Et Son OrchestreJao Pandeiro Et Son OrchestreJerry Mengo Et Son OrchestreLe Jazz De ParisDanny Polo & His Swing StarsAlex Renard Et Son OrchestreDick Rasurell Et Ses BerluronsChico Cristobal And His Boogie-Woogie BoysThe Teddy Martin Dance OrchestraAlain Romans Et Ses RythmesJerry Mengo Et Ses Deux OrchestresFrançois Guin Et Les SwingersTeddy Martin And His Las Vegas TwistersJerry Mengo's TwistbandLes Petits FrançaisJerry Mengo Et Son Orchestre A CordesJerry Mengo Et Sa Petite FormationJerry Mengo Et Ses Solistes Du Jazz De ParisLe Septuor Jazz De ParisLes 3 Du RythmeJerry Mengo SextetBlue Star Swing Band + +2542828Wolfgang ZuserAustrian flutist.Needs VoteZuserBühnenorchester Der Wiener Staatsoper + +2544021Deirdre Dundas-GrantClassical bassoonist.Needs VoteDeidre Dundas-GrantDeirdre Dundas GrantEnglish Chamber Orchestra + +2544517Georg HaagClassical viola player.Needs VoteGeorghe HangSharon QuartetVlach Quartet Prague + +2544830Elizabeth PageEnglish Viol playerNeeds VoteThe Early Music Consort Of London + +2545046Alfred GaalAustrian trumpet player, born in 1964.Needs VoteEnsemble 20. JahrhundertBühnenorchester Der Wiener Staatsoper + +2545048Mark GaalAustrian tromponist, born 1978 in Vienna, Austria. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle WienPhil Blech Wien + +2545049Anneliese FuchslugerAustrian classical flautistNeeds VoteBruckner Orchestra LinzEnsemble 20. Jahrhundert + +2546316ORF Studio WienNeeds Votehttp://wien.orf.at/ORF WienORF, WienÖsterreichischer Rundfunk, WienORF (2) + +2546521Kaori YamagamiCello player.Needs Votehttp://www.kaoriyamagami.comSydney Symphony OrchestraAmsterdam Sinfonietta + +2546531Petra WolffClassical viola player.Needs VoteSüdwestdeutsches KammerorchesterPhilharmonic Orchestra Of Europe + +2546845Gerhard SteegerGerman conductor and chorus master.Needs VoteGerh. SteegerGerhard Steger + +2547320Michail GantvargМихаил Ханонович ГантваргMikhail Gantvarg (born February 25, 1947, Leningrad, RSFSR, USSR) is a Soviet and Russian violinist, teacher. Founder in 1987 and music director of [a1471771] Chamber Ensemble, professor at [l1513139].Needs Votehttps://ru.wikipedia.org/wiki/%D0%93%D0%B0%D0%BD%D1%82%D0%B2%D0%B0%D1%80%D0%B3,_%D0%9C%D0%B8%D1%85%D0%B0%D0%B8%D0%BB_%D0%A5%D0%B0%D0%BD%D0%BE%D0%BD%D0%BE%D0%B2%D0%B8%D1%87Michael GantvargMihail GantvargMikhail GantvargMlchael GantvargМ. ГантваргМ. ГартвангМихаил ГантваргLeningrad Philharmonic OrchestraThe St. Petersburg Soloists + +2547374Ruth EhrlichViolinist.Needs Votehttps://divineartrecords.com/artist/ruth-ehrlich/Ruth ErlichEnglish Chamber OrchestraBritten SinfoniaApartment HouseMichaelangelo Chamber OrchestraFairfield Quartet + +2547946Kaarlo PoijärviNeeds Major Changes + +2547952Jalmari HölttäNeeds Major Changes + +2547955Decca-OrkesteriNeeds Major ChangesDecca Ork.Decca OrkesteriDecca-ork.Decca-orkestariDecca-orkesteriDecca-orkesternDeccaorkesternFrcca-orkesteriOrk.Orkesteri + +2548127Olle SchillSwedish classical clarinetist, born February 17 1938 in Lerum, died February 26 2019. + +He was from 1974 solo clarinetist in [a1015406].Needs VoteGöteborgs SymfonikerMusica Da Tre + +2549279Ture AraCarl Henrik Lorenz Ture Ara (previously Åberg)Finnish baritone opera / schlager singer and actor. +Born January 29, 1903 in Stockholm – died July 29, 1979 in Helsinki.Needs Votehttp://fi.wikipedia.org/wiki/Ture_Arahttps://adp.library.ucsb.edu/names/107995Ture Ara (Topi Aaltonen)Topi Aaltonen + +2549782Francesco BossoneFrancesco BossoneItalian bassoon player.Needs Votehttp://www.francescobossone.it/Orchestra dell'Accademia Nazionale di Santa CeciliaOrchestra MozartL'Arte Della FugaTrio Hormus + +2550342Torbjørn EideDouble bass player.Needs VoteBergen Filharmoniske Orkester + +2551944Vladimir KafelnikovUkrainian classical Trumpeter & Trombonist +Born on 1951Needs VoteВ. КафельниковВладимир КафельниковOrchestre National Bordeaux Aquitaine + +2552415Alejandro MettlerArgentine violin and viola player.CorrectCamerata Bern + +2552416Sibylla LeuenbergerSwiss violinistNeeds VoteSibylla LeutenbergerSybilla LeuenbergerCamerata BernBerner KammerorchesterPlawner Quintet + +2552417Nathalie VandroogenbroeckViolinistCorrectCamerata Bern + +2552418Käthi SteuriSwiss double bassist.Needs VoteKäthy SteuriCamerata BernCollegium Novum ZürichBerner Kammerorchester + +2552419Hyunjong KangClassical violinist.Needs VoteHyunjong Kang-ReentsCamerata BernEnsemble ExplorationsEnsemble Antipodes + +2553429Harry JohnstoneBritish classical hornistNeeds VoteScottish Chamber OrchestraScottish Chamber Orchestra Wind Soloists + +2554777Duke Ellington SextetNeeds Major ChangesDuke Ellington's SextetDuke EllingtonJohnny HodgesHarry CarneyWellman BraudRex StewartBilly Taylor Sr. + +2554779Luigi ChiapperinoItalian cellist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2554781Rosario GenoveseItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +2555257Eva LindalSwedish violinist and violist, born in 1958. + +She grew up in Stockholm, Sweden. She studied at the Royal College of Music in Stockholm (1973–76), with further studies in Switzerland and Banff (Canada). In 1998 she met and began studying improvisation with Connie Crothers and continued the association for almost a decade. + +During 1986–2000 Eva was a member of the Swedish Radio Symphony Orchestra. Since then she has been a freelance musician, with a special focus on improvisation, and contemporary music, as well as the baroque era. Eva is a member of Katzen Kapell, [a4408908] and also the contemporary groups MA and [a1322999]. + +She regularly performs in a trio with Bill Payne (clarinet) and Carol Liebowitz (piano), in a duo with Anna Lindal (violin), in the trio WE with Mattias Windemo (guitar), Jonny Axelsson (percussion), in the trio Filip Augustson/Viva Black: Filip Auguston (bass), Christopher Cantillo (drums) as well as collaborations with Connie Crothers (piano), Oskar Schönning, Barriärorkestern Stockholm, Cullberg Ballet, Ensemble Recherche (Freiburg), Bit 20 (Bergen), Sonanza, Karlsson Barock and Drottningholm Theatre. + +Her sister is violinist [a=Anna Lindal], and their grandfather is Greek composer [a=Nikos Skalkottas].Needs Votehttps://evalindal.com/http://kammarensemblen.com/?p=308https://www.facebook.com/eva.lindalLindalVoSveriges Radios SymfoniorkesterSnykoKammarensembleNKatzen KapellRebaroqueWe (15)Mattias Risbergs MiningShinken Shobu + +2556272Sophia WilsonClassical oboist.CorrectSophie WilsonThe Academy Of Ancient Music + +2556637Samuel BarsegianArmenian classical viola playerNeeds VoteGulbenkian Orchestra + +2557356Joop DiepenbroekCredited as tuba player.Needs VoteThe RamblersAVRO band Kovacs Lajos + +2557515Gerhardt KochAmerican clarinetist.Needs Votehttps://www.oslmusic.org/bios/gerhardt-koch/Orchestra Of St. Luke'sNew York City Ballet Orchestra + +2557516Louis HanzlikAmerican trumpeter.Needs VoteOrpheus Chamber OrchestraAmerican Brass QuintetAtlantic Brass QuintetConcert RoyalRiverside Symphony + +2557517Alana VegterAmerican hornistNeeds VoteNew York PhilharmonicMetropolis Ensemble + +2557518Rosalyn ClarkeAmerican cellist from New York City, long-term member of [a526576].Needs VoteOrchestra Of St. Luke's + +2558110Earl PiersonJazz reeds player.Needs VoteOriginal Tuxedo Jazz Orchestra + +2558124Jeanette SalvantJeanette Kimball née SalvantJazz pianist. + +Married to [a=Narvin Kimball]. +Needs Votehttps://en.wikipedia.org/wiki/Jeanette_Kimballhttps://salon726.com/home/2017/10/4/ladiesofpreshall-jeanette-kimballJeanette SalvandJeannette SalvantJeanette KimballOriginal Tuxedo Jazz Orchestra + +2558125Sid CarriereSaxophonist (tenor, soprano) and clarinetistNeeds VoteSidney CarriereOriginal Tuxedo Jazz Orchestra + +2558127August RousseauCredited as jazz trombone player.Needs VoteOriginal Tuxedo Jazz Orchestra + +2558633Elizabeth StanbridgeClassical flautist & recorder playerNeeds VoteNew London Consort + +2558750Herbert LindsbergerAustrian classical viola player.Needs VoteClemencic ConsortWiener AkademieDas Mozarteum Orchester SalzburgÖsterreichisches Ensemble Für Neue MusikMozarteum QuartettArmonico Tributo + +2558777Susan BisattClassical soprano vocalist.Needs VoteThe Schütz Choir Of London + +2559315Hanno HaagHanno Haag (21 February 1939 - 6 May 2005) was a German violinist, composer, conductor and teacher.Needs VoteOrchester Des Nationaltheaters MannheimKurpfälzisches Kammerorchester MannheimDas Mannheimer Kammerduo + +2559562Francis Le MaguerFrench guitarist player.Needs VoteF. Le MaguerF. Le MaguereF. LemaguerFrancis Le MagerFrancis LeMaguerFrancis LemagerFrancis LemaguerFrancis le MagerFrançis LemaguerFrançois Le MaquerEnsemble Musique VivanteGrand Orchestre De L'OlympiaJean-Claude Pelletier Et Son OrchestreThe Guitars UnlimitedClaude Bolling & Le Show Biz BandOrchestre Francis Le Maguer + +2559982Werner BreinigGerman lead singer, guitarist (also plays violin and flute) and composer.Needs VoteBreinigW. BreinigWernerRegensburger DomspatzenThe Blackbirds (2) + +2559990John G. PritchardBritish trombone and sackbut player.Needs VoteJohn PritchardLondon Philharmonic Orchestra + +2559992Derek HonnerClassical flute player.Needs VoteLondon Philharmonic Orchestra + +2560110George Scott (7)Hot jazz reedistNeeds VoteGeo. W. ScottGeorge W. ScottAndy Preer And The Cotton Club OrchestraThe Missourians + +2560963Chubby Jackson And His Fifth Dimensional Jazz GroupNeeds Major ChangesChubby Jackson And His Fifth Dimensional JazzgroupChubby Jackson And His OrchestraChubby Jackson SextetChubby Jackson's Fifth Dimensional Jazz GroupDenzil BestChubby JacksonConte CandoliLou LevyTerry GibbsFrank Socolow + +2560966Chubby Jackson SextetNeeds Major Changes"Chubby" Jackson's SextetChubby Jackson + +2561060Seppo VirtanenNeeds Major ChangesS. VirtanenVirtanen + +2561246Lise MilletClassical bassoonistNeeds VoteLes Violons du RoyL'orchestre De Chambre De MontréalLes Jacobins + +2562212Bill FritzWoodwind player, arranger, especially for the Stan Kenton Orchestra.Needs VoteB. FritzWilliam FritzStan Kenton And His Orchestra + +2562348Pierre-Alain BouvretteCanadian cellist & sound engineerNeeds VotePierre Alain BouvretteLes Violons du RoyQuatuor MolinariAppassionata + +2562439Mike CicchettiBig Band Jazz Tenor Saxophone player in the 1960s.Needs VoteStan Kenton And His Orchestra + +2562441Vic MinichelliBig Band Jazz Trumpet player in the 1950s.Needs VoteZiggy MinichelliVic MinichielloStan Kenton And His Orchestra + +2563419Benny Meroff And His OrchestraNeeds VoteBenny Meroff & His OrchestraBenny Meroff OrchestraJoe VenutiBix BeiderbeckeChauncey MorehouseFrank SignorelliBill RankDon Murray (2)Adrian RolliniFrankie TrumbauerBobby Davis (4)Benny MeroffJoe QuartellAl King (16) + +2563553Michael KrasnopolskyAmerican double bassist.Needs VoteChicago Symphony Orchestra + +2563575Bill Holcombe (2)Wilford Lawshe Holcombe II Born November 9, 1924 in Trenton, New Jersey, +† April 25, 2010 in Trenton, New Jersey, + As a American composer, arranger, studio musician, and administrator. Bill worked with [a229639], [a22041], [a367936], and over 100 symphony orchestras, nationally and internationally. He also wrote more than 15 film scores. Studies at Julliard led to individual work with [a258007] and [a837024]. Bill founded [l=Musicians Publications] and wrote hundreds of compositions for smaller ensembles as well as educational works and arrangements for students. As a musician, Bill played flute, clarinet and saxophone and in his early career performed with [a253855], [a254907], [a388298], and the New York radio station WMGM "Theatre of the Air." He was also a Decca Records staff player. + +His son is [a=Bill Holcombe].Correcthttps://billholcombe.com/?page_id=29https://www.imdb.com/name/nm0390127/https://de.wikipedia.org/wiki/Bill_Holcombe"Wild Bill" HolcombeB HolcombeB. HolcombeB. HolcomeB.HolcombeBill - HolcombeBill HolcombBob HolcombHalcombeHolcombHolcombeHolcomeW. HalcombeW. HolcombeW.HolcombeWilford HalcombeWilford HolcombWilford HolcombeWilford HolcomeWilfred HolcombeWilliam HolcombeBetty GeorgeWilford LawsheSeth MarkhamWes TompkinsArtie Shaw And His OrchestraSy Oliver And His Orchestra + +2563782Mary BeverleyClassical soprano vocalist.CorrectM. BeverlyMary Beverly + +2564223Aubrey BrainAubrey Harold BrainBritish horn player and teacher. Born 12 July 1893 in London, England, UK – Died 21 September 1955. +In 1911 he was appointed Principal Horn of [a=The New Symphony Orchestra Of London], and in 1912 he went on the [a=London Symphony Orchestra]'s tour of the United States (Principal Horn, 1912-1929). He played horn in [a=The Band Of The Welsh Guards] until 1920. Aubrey was appointed First Horn of the [a=Royal Philharmonic Society] in 1922. He then joined the [a2541855] when it was formed in 1927, and became Principal Horn of the [a=BBC Symphony Orchestra] when it made its debut in 1930; he remained there until illness caused his premature retirement in 1943. His son [a=Dennis Brain] arranged for him to play with the [a=Philharmonia Orchestra] as 4th horn from October 1948, and until May 1950 he played fairly regularly with them. +In 1923 he became Professor of Horn at the [l=Royal Academy of Music], where his son Dennis was among his students. +Brother of [a=Alfred Brain]. He married [a=Marion Brain] in 1914. They had two sons, [a=Leonard Brain] and [a=Dennis Brain].Needs Votehttps://open.spotify.com/artist/6bdWL632LRMbiF3Mdi3gSvhttps://music.apple.com/us/artist/aubrey-brain/190100256http://en.wikipedia.org/wiki/Aubrey_Brainhttps://www.hornsociety.org/ihs-people/past-greats/28-people/past-greats/652-aubrey-brainhttp://www.dennisbrain.net/aubrey/http://www.dennisbrain.net/aubrey/introduction.htmlhttps://www.hornmatters.com/2011/06/website-aubrey-brain-1893-1955-master-of-his-instrument/A. BrainAubreyLondon Symphony OrchestraThe New Symphony Orchestra Of LondonBBC Symphony OrchestraPhilharmonia OrchestraBand Of The Welsh GuardsBBC Wireless Symphony OrchestraThe London Wind QuintetBusch Chamber PlayersRoyal Philharmonic Society + +2566067Michelle DjokicAmerican cellist, born in 1969 and is currently a member of the New Century Chamber Orchestra.Needs VoteThe Philadelphia OrchestraSan Francisco SymphonyThe New Century Chamber OrchestraQuartet San Francisco + +2566596Sy BakerAmerican jazz trumpeterNeeds VoteSemour BakerSeymour 'Sy' BakerSeymour BakerJimmy Dorsey And His OrchestraCharlie Barnet And His Orchestra + +2567002Wolfgang Ritter (2)German flute player, born 1956 in Oberhausen, Germany.Needs VoteWolfgang RitterOrchester der Bayreuther FestspieleNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +2567003Paulus van der MerweSouth African oboist, born 1960 in Johannesburg, South Africa. Now based in Germany.Needs Votehttps://za.linkedin.com/in/paulus-van-der-merwe-1617b1aPaul v. d. MerwecPaul van Der MaerwePaul van der MervePaul van der MerwePaulus Van Der MervePaulus van der MerveOrchester der Bayreuther FestspieleNDR SinfonieorchesterNDR Elbphilharmonie OrchesterNational Symphony Orchestra Of The S.A.B.C. + +2567307Alison WrayCredited as Lanuage Advisor & CoachNeeds VoteDr Alison WrayDr. Alison Wray + +2567926Joseph Thomas (7)Joseph William ThomasNew Orleans based American jazz clarinetist and vocalist, nicknamed "Brother Cornbread". +Born : December 03, 1902 in New Orleans, Louisiana - Died : February 18, 1981 in New Orleans, Louisiana. + +[b]Not to be confused with [a=Joe Thomas (3)][/b].Needs Votehttps://en.wikipedia.org/wiki/Joe_Thomas_(clarinetist)https://www.allmusic.com/artist/joe-cornbread-thomas-mn0001411813Brother CornbreadJ. ThomasJoe "Cornbread" ThomasJoe ThomasJoe „Cornbread“ ThomasJoseph "Cornbread" ThomasJoseph ''Cornbread'' ThomasJoseph (Cornbread) ThomasThomasOriginal Tuxedo Jazz OrchestraThe Tradition Hall Jazz BandJoe Thomas' Dixieland Band + +2568636Paolo PiomboniItalian classical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +2569297Sergey ArsenievClassical violinist, born in St. Petersburg, Russia. He studied at the Rimsky-Korsakov Music School of the St. Petersburg Conservatory, continuing in Groningen (Netherlands), and finishing in Amsterdam. Became assistant leader of the 2nd violin section of [a970420] in 2006. Needs Votehttps://www.orkest.nl/muzikant/sergey-arsenievNetherlands Chamber OrchestraResidentie OrkestNederlands Philharmonisch Orkest (2) + +2570635Red Norvo SeptetNeeds Major ChangesRed Norvo All Star SeptetRed Norvo All-Star SeptetRed Norvo's All Star SeptetThe Red Norvo SeptetDexter GordonPete JollyBarney KesselJimmy GiuffreLarry BunkerRed CallenderDodo MarmarosaRay LinnRed NorvoShorty RogersTal FarlowJack Mills (2) + +2570715Daniel Jordan (5)Swedish 50's/60's jazz bassist, often just credited as Dan JordanNeeds VoteDan JordanStan Getz Quartet + +2571011Steven DevineClassical keyboard instrumentalist and Director from the UK.Needs Votehttps://stevendevine.com/S. DevineStephen DevineOrchestra Of The Age Of EnlightenmentThe Consort Of MusickeArcangeloClassical OperaThe MozartistsThe Illyria ConsortDa Camera (3)AmyasThe Gonzaga BandApollo & PanSprezzaturaensemble F2Benedetti Baroque Orchestra + +2571060Raoul RomeroJazz saxophonist , composer/arranger and band leaderNeeds VoteRomeroRoneroWoody Herman And His OrchestraWoody Herman And The Swingin' HerdRaoul Romero And His Jazz Stars OrchestraThe Las Vegas Jazz Orchestra + +2571062Billy Hunt (2)American jazz trumpeter.Needs VoteBill HunBill HuntBilly HuntWoody Herman And His OrchestraWoody Herman And The Swingin' HerdRaoul Romero And His Jazz Stars Orchestra + +2571063Bob StroupCanadian jazz trombonistNeeds VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdBob Stroup TrioThe Marvin Stamm / Bob Stroup QuintetTommy Banks Jazz Band + +2571554Jorma TaivainenJorma TaivainenFinnish violinist and violist. Born on March 23, 1943 and died on April 20, 1987.Needs Vote + +2572043Misha AsterCultural historian, producer and manager for the label [l=Deutsche Grammophon], born in 1978 in Hamilton, Ontario, Canada,Needs Votehttps://en.wikipedia.org/wiki/Misha_AsterMisha Aster (DG) + +2573633William MelvinClassical violinist. Born in 1988. +He graduated from the [l527847]. Member of the [a=London Symphony Orchestra] since 19 February 2014 and Leader of the [b]Bernadel Quartet[/b].Needs Votehttps://www.facebook.com/william.melvin.5011https://lso.co.uk/orchestra/players/strings.html#First_violinsB. MelvinLondon Symphony OrchestraRoyal Academy Of Music Manson Ensemble + +2573820Elisa FranzettiThe Italian soprano, Elisa Franzetti, began her musical training at the Scuola Civica di Musica di Milano, graduating in classical guitar under the guidance of Aldo Minella, at the "Dall'Abaco" of Verona. She studied singing with Gabriella Ravazzi, and later graduated in Baroque performance practice at the Civica Scuola di Musica di Milano with Roberto Gini and Cristina Miatello. In 1992 she was ranked among the winners of the Concorso As.Li.Co. per voci monteverdiane.Needs Votehttp://www.bach-cantatas.com/Bio/Franzetti-Elisa.htmLe Parlement De MusiqueConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaLa RisonanzaI Madrigalisti AmbrosianiEnsemble Gli Erranti + +2574026Denys DeromeCanadian classical hornistNeeds VoteDenis DeromeOrchestre symphonique de Montréal + +2574592Henry Greenwood (3)British classical violinist and librarian. Passed away on 23rd February 2009. +Former longtime member of the [a=London Symphony Orchestra], first as a violinist (1948-1959) and then as a librarian (1960-1989).Needs Votehttps://www.legacy.com/obituaries/thetimes-uk/obituary.aspx?n=henry-joseph-greenwood&pid=125049708H. GreenwoodLondon Symphony Orchestra + +2575613Jonathan Stone (4)British violinist, chamber musician, concertmaster/director and Professor of Violin at the Royal Academy of Music. + +Born in 1980, London.Needs Votehttps://www.stoneviolin.com/The Nash EnsembleDoric String QuartetPhoenix Piano Trio + +2575777Grover SchiltzGrover Schiltz (1931 - 2012) was an American classical oboist and English horn player. He was a member of the [a837562] from 1959 to 2005.Needs VoteChicago Symphony Orchestra + +2575861Ayrton PintoAyrton Adelino Teixeira PintoBrazilian violinist, born in 1933 and died 17 November 2009 in São Paulo, Brazil.Needs VoteAyrtonAyrton A. T. PintoAyrton Adelino T. PintoBoston Symphony OrchestraOrquestra Sinfônica Do Estado De São Paulo + +2575958Louisiana Sugar BabesNeeds Major ChangesL'Orchestre Louisiana Sugar BabesLouisiana Sugar BabiesLouisianna Sugar BabesThe Louisiana Sugar BabesThe Louisiana Sugar BabiesFats WallerGarvin BushellJabbo SmithJames Price Johnson + +2576318Thomas MansbacherAmerican cellist, born in 1949.CorrectThe Cleveland Orchestra + +2577101Norman BowdenCreadit as trumpeter.Needs VoteZutty Singleton's Creole BandKing Perry & His Pied Pipers + +2577984Gene Krupa's Swing BandGene Krupa's Swing Band made a small number of recordings in 1936. +The band included [a=Benny Goodman], members of [a=Benny Goodman And His Orchestra], and other musicians. +Do not confuse with [a=Gene Krupa And His Swinging Big Band] or [a=Gene Krupa And His Orchestra], both which came later.Needs VoteGene Krupa & His All Star Swing BandGene Krupa & His Swing BandGene Krupa And His All Star Swing BandGene Krupa And His All Stars Swing BandGene Krupa And His All-Star Swing BandGene Krupa And His Swing BandGene Krupa BandGene Krupa Swing BandGene Krupa's All Star Swing Bandジーン・クルーパのスイング・バンドBenny GoodmanRoy EldridgeGene KrupaJess StacyLeon "Chu" BerryAllan ReussIsrael Crosby + +2577987Jam Session At VictorNeeds Major ChangesA Jam Session At VictorA Jam Session At Victor'sEine "Jam Session"Jam Session At Victor'sTommy DorseyBunny BeriganDick McDonoughGeorge Wettling + +2578624Lawrence White (2)British bass-baritone singer, born 7 May 1978.Needs Votehttps://www.naxos.com/Bio/Person/Lawrence_White/186884GregorianMetro VoicesMagnificatLondon VoicesThe Marian Consort + +2578625Ben Davies (5)Classical bass / baritone vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Davies-Ben.htmhttps://thesixteen.com/team/ben-davies/https://twitter.com/bendaviesbassBen DaviesMagnificatThe Cambridge SingersThe SixteenI FagioliniLaudibusRetrospect EnsembleConsortium (8) + +2579693Johann Christoph SchulzeJohann-Christoph SchulzeGerman cellist.CorrectJohann-Christoph SchulzeStaatskapelle DresdenDresdner PhilharmonieDresdner KapellsolistenSiering-Quartett Der Dresdner Philharmonie + +2580098Ove GottingOve Henning GottingSwedish choir conductor, soloist, cantor and music educator, living in Grönahög and works primarily in Jönköping, born 27 December 1957. + +He works as a teacher and previously also head of the music department at Södra Vätterbygdens folkhögskola. He is also conductor of [a7113568] and Jönköpings orkesterförening. Gotting is well known for his expertise in the choral field and in 2011 he received the award Choir Conductor of the Year for his work with professional as well as emerging choir singers.Needs Votehttps://sv.wikipedia.org/wiki/Ove_GottingO. GottingJönköpings Kammarkör + +2580428Michael RieberGerman double bassist and music professor, born in 1967 in Tübingen.Needs Votehttp://www.michaelrieber-kontrabass.de/Michael_Rieber-Kontrabass/Willkommen.htmlBayerisches StaatsorchesterRadio-Sinfonieorchester StuttgartNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +2581676DillageneDillagene PlumbAmerican jazz vocalistNeeds Votehttps://bandchirps.com/artist/dillagene/Woody Herman And His OrchestraThe Band That Plays The Blues + +2582889Renaud GuieuCellist, born in 1981. He started cello with François Baduel at the Ecole Nationale de Musique d'Aix en Provence then at the Conservatoire National Supérieur de Musique de Paris.Needs Votehttp://www.facebook.com/renaud.guieuhttp://www.concerts.fr/Biographie/renaud-guieuGiueu RenaudGuieu RenaudR. GuieuOrchestre Philharmonique De Radio FranceQuatuor Gabriel + +2583455Keith CummingsKeith Edward CummingsAustralian classical violist and teacher of viola. Born in 1909 in Perth, Western Australia - Died in 1992. +He moved to Mancester, England in the 1930s. Former member of the [a=London Symphony Orchestra] (1937-1939). +Father of the cellist [a=Douglas Cummings], and the violinists [a=Diana Cummings] & [a=Julian Cummings].Needs Votehttps://www.reidconcerts.music.ed.ac.uk/performer/cummings-keith-1906-1992https://www.the-paulmccartney-project.com/artist/keith-cummings/K CummingsK. CummingsK.CummingsLondon Symphony OrchestraLondon String QuartetRobert Farnon And His OrchestraLeslie Jones And His Orchestra Of LondonBlech String Quartet + +2583457Paul Draper (3)Paul Samuel Beaumont or Bramwell DraperBritish classical bassoonist/contra bassoonist (fl. 1930s-1950s). Born 15 November 1898 in London, England, UK. +He studied at the [l527847]. His London career started off in the [a=Royal Albert Hall Orchestra], followed by engagements with the [a=Royal Philharmonic Orchestra] (1930-1934), the [a=London Symphony Orchestra] (between 1933 and 1957, being its Principal Bassoon/Contra Bassoon two times (1938-1939 & 1955-1957)), [a=Orchestra Of The Royal Opera House, Covent Garden] (1946-1951), and [a=Philharmonia Orchestra] (1953-1955). He joined the [a=London Baroque Ensemble] and was a founder member of the [a=Melos Ensemble Of London]. +Son of [a=Charles Draper].Needs Votehttps://samekmusic.com/wp-content/uploads/2019/11/v2-CC0074-Draper-itunes-booklet-10-6-19.pdfLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenRoyal Albert Hall OrchestraMelos Ensemble Of LondonRobert Farnon And His OrchestraLeslie Jones And His Orchestra Of LondonLondon Baroque EnsembleBusch Chamber Players + +2583528Mike Taylor (22)Mike TaylorUK electronic dance music DJ / producer from Manchester, England +Styles: Hard HouseCorrecthttp://soundcloud.com/mike_taylor + +2583961Andrea Rebekka AlstedDanish violinist.Needs VoteAndrea AlstedAndrea R. AlstedAndrea Rebecca AlstedLittle Mermaid OrchestraDR SymfoniOrkestret + +2584046Bobby Clark (2)American jazz trumpeter.Needs VoteBob ClarkClarkRobert ClarkLes Brown And His Band Of RenownWoody Herman And His OrchestraWoody Herman And The Fourth HerdDan Terry And His OrchestraMark Masters' Jazz Composers OrchestraGerald Wilson Orchestra of The 90'sChico Marx And His Orchestra + +2584886Váša PříhodaCzech violinist +Born August 22, 1900 — died July 26, 1960Needs Votehttps://en.wikipedia.org/wiki/V%C3%A1%C5%A1a_P%C5%99%C3%ADhodahttps://adp.library.ucsb.edu/names/105613PrihodaPřihodaPříhodaVasa PirodaVasa PrigodaVasa PrihodaVasa PrihohaVasha PrihodaVaša PřihodaVaša PříhodaVaša PříhódaVása PřihódaVáša PrihodaVáša PřihodaВаша Пршигода + +2584911Giorgio SilzerGiorgio Silzer (1924 — 2014) was a classical violinist and art collector.Needs VoteG. SilzerOrchester Der Deutschen Oper BerlinBerner SymphonieorchesterSilzer - Quartett + +2585312Silvia FrigatoClassical soprano vocalistNeeds VoteThe Monteverdi ChoirLa Risonanza + +2586567Dick McQuarryAmerican trombonistCorrectDick McQuardyDick McQuaryJim McQuaryHarry James And His Orchestra + +2586909Tapley LewisCredited as saxophone and clarinet player.Needs VoteDon Redman And His Orchestra + +2586912Nicholas RodriguezNicholas 'Nick' Goodwin 'Rod' RodriguezCuban-born jazz pianist, born September 10, 1906 in Havana, Cuba. +Rodriguez worked as an ensemble pianist with Jelly Roll Morton in 1929-1930. He performed and recorded with Benny Carter (1932-1933) and Don Redman (1938-1943). In the 1950s and 1960s he taught piano and played with Johnny Coles (1953), Louis Armstrong (1961) and Doc Cheatham (mid-1960s).Needs VoteNicholas "Rod" RodriguezRod RodriguezRed RodriguezDon Redman And His Orchestra + +2587028Kent PopeSaxophonist and clarinetistNeeds VoteKenneth PopePopeJohnny Otis And His Orchestra + +2587147Sveinung BirkelandNorwegian oboist and cor anglais player.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +2587805Dave Miller (20)Jazz drummerNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big Band1:00 O'Clock Lab Band + +2587807George Baker (4)Trumpet and flugelhorn playerNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandLos Angeles Jazz Workshop + +2589064Danny NolanAmerican jazz trumpeter.Needs VoteDan NolanDaniel Nolan Jr.Daniel Nolan, Jr.Woody Herman And His OrchestraStan Kenton And His OrchestraWoody Herman And The Swingin' HerdJazz In The Classroom + +2589097Diego GabeteClassical violinist.Needs VoteHallé Orchestra + +2589430Alfred HallettClassical tenor vocalistNeeds VoteHallettWestminster Cathedral Choir + +2589808Richard BirchallBritish classical cellist, composer, arranger and orchestrator. +He studied as a postgraduate cellist at [l305416] (graduated in 2007). He has performed as Guest Principal cello with the [a=Philharmonia Orchestra], [a=The Royal Philharmonic Concert Orchestra], [a=Northern Sinfonia] and [a=Irish Chamber Orchestra]. Founder member of cello octet [a=Cellophony] and cellist of the [a11967164]. No. 3 Cello of the [a=Philharmonia Orchestra].Needs Votehttp://www.richardbirchall.co.ukhttps://twitter.com/rbirchallmusic?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthorhttps://soundcloud.com/user-626248257https://music.apple.com/tr/artist/richard-birchall/477973611https://philharmonia.co.uk/bio/richard-birchall/BirchallPhilharmonia OrchestraCellophonyPhilharmonia Chamber PlayersMinerva Piano Trio + +2589810Julia O'RiordanJulia Melvin-O'Riordan née O'RiordanIrish classical viola player. Born in Rochestown, Cork, Ireland. +She moved to London, England in 2003 to study at the [l527847]. Former member of the [a=Philharmonia Orchestra]. In 2009, she joined the [a=Tippett Quartet]. Member of the [a=London Symphony Orchestra] since 19 February 2014. +She has been married to [a=Joe Melvin] since 3 August 2017.Needs Votehttps://www.lso.co.uk/bio/julia-oriordan/https://www.imdb.com/name/nm8488617/Julia O' RiordanLondon Symphony OrchestraPhilharmonia OrchestraTippett Quartet + +2593440Sam CheifetzJazz bassistNeeds VoteS. ChiefitzSam CheifitzSam ChiefitzSam ChieftzSam ScheifetzSam. R. Cheifetzサム・シェイフィッツTommy Dorsey And His OrchestraThe Paul Smith TrioConrad Gozzo And His Orchestra + +2594778Virginia BrewerBaroque oboist.Needs VoteThe Bach EnsembleBrewer Chamber OrchestraThe Liberty Tree Wind PlayersBoston Early Music Festival Orchestra + +2594979Michel PenhaAmerican cellist, born 14 December 1888 in Amsterdam, Netherlands and died 10 February 1982 in Los Angeles, California.Needs VoteThe Philadelphia OrchestraSan Francisco Symphony + +2595786Paul JacobsonPaul Jacobson is a British House DJ. Since 2010 Paul Jacobson has made over 70 tracks & remixes under various alias. Just recently he has been delving into the deeper sounds of House music. Tracks under various names have been supported by some of the key players out in the clubs & on the radio. With new tracks ready to go & others in progress, this is not a one trick pony, the alias's may have gone but the creative power hasn't!!! + +Some names who have supported previous music: +Paul Van Dyk, Andi Durrant, Jochen Miller, Christopher Lawrence, Markus Schulz, Flash Brothers, Hayley Parsons, Davey Asprey, Giuseppe Ottaviani, Steve Haines, JD Miller, Michael Paterson, Blumenkraft, Steve Turnbull, Ant Nichols, Bassmonkeys, Danilo ErcoleNeeds Votewww.pauljacobson.co.ukwww.facebook.com/pauljacobsonfanpagewww.twitter.com/pjacobsonmusicwww.youtube.com/user/pauljacobsonmusicwww.instagram.com/pauljacobsonmusichttp://thedjlist.com/djs/paul-jacobson/info/ + +2596814Jimmy MiglioreJazz saxophonist, active in the early 1940's.Needs VoteJ. MiglioreJimmy MiglieroJimmy MilioreGene Krupa And His Orchestra + +2596832Colin CallowBritish violinist, born on the Isle of Man.Needs VoteLondon Classical PlayersEnglish String QuartetMichaelangelo Chamber Orchestra + +2597106Osvaldo Montes (2)Osvaldo José MontesArgentinian bandoneon player and composer (b. 1934), known as "El Marinero" (the Sailor). +The peak of his career was playing with [a3303735] and with Julio Sosa. +He has also worked with many other singers: Néstor Fabián in the Atilio Stampone’s orchestra, Alberto Marino, Floreal Ruiz, Edmundo Rivero, Roberto Goyeneche...Needs VoteMontesOsvaldo "Marinero" MontesOsvaldo "Marinero" MontesOsvaldo J. MontesLeopoldo Federico Y Su Orquesta TípicaJavier González TrioOcteto Tibidabo + +2599148Fred Roth (3)German classical violinist.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +2599551Mathurin MatharelClassical CellistNeeds VoteLes Folies FrançoisesLes Basses RéuniesDoulce MémoireOpera FuocoEnsemble ClematisLes Musiciens Du ParadisLa Petite Symphonie + +2599727Eli Epstein (2)American horn player, educator, conductor and author.Needs Voteww.eliepstein.comThe Cleveland OrchestraBoston Modern Orchestra ProjectOak Street Woodwinds + +2600701Ken HakiiJapanese violist, born in 1954.Needs VoteK. HakiiConcertgebouworkestOrlando Trio + +2601097Alain DejeanPhotographer.CorrectA. DejeanA. Dejean - Sygma + +2601152Elisabeth KinskyAustrian classical vocalist and voice coach, born in Vienna, Austria.CorrectWiener Staatsopernchor + +2601189Martin Jones (10)Classical violinist.CorrectPhilharmonia Orchestra + +2602152Lee KleinmanNeeds VoteL. KleinmanThe Herbie Mann-Sam Most Quintet + +2602563Gene Gifford And His OrchestraNeeds Major ChangesG. Gifford And His OrchestraGene Gifford & His Orch.Gene Gifford & His OrchestraGene Gifford And OrchestraBunny BeriganWingy ManoneDick McDonoughBud FreemanPete PetersonClaude ThornhillRay BauducMorey SamuelMatty MatlockH. Eugene Gifford + +2602867Jimmy MiddletonNeeds VoteJimmie MiddletonCharlie Spivak And His OrchestraJimmy Dorsey And His Orchestra + +2603896Oskar Blaesche Sr."Tonmeister" at the [l=Deutsche Grammophon] studio in the Alte Jakobstraße (Berlin).Needs VoteBDGDGEOskar Blaeschebd + +2603897Städtisches Orchester BerlinSymphony orchestra led by [a1661108] and sponsored by the city of Berlin, operating under this name since 1939 (before: Landesorchester Berlin) mainly in the first half of the 1940s.Needs VoteBerlin Municipal OrchestraBerlin Städtischen OrchesterStädtische Orchester BerlinStädtischen Orchester BerlinStädtisches Orchester, BerlinThe Orchestra Of The State, BerlinThe Städtisches Orchester Berlin + +2604347Katalin LukácsKatalin Szüts-LukácsHungarian classical violinistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +2604445Joseph PepperAmerican violinist.CorrectJoe PepperThe Philadelphia Orchestra + +2605757Harry BissAmerican jazz pianist. +Born: 9 August 1919 in New York, USA +Died: 17 May 1997 in Long Beach, New York, USA.Needs Votehttps://en.wikipedia.org/wiki/Harry_Biss#:~:text=Harry%20Biss%20(9%20August%201919,Allen%20Eager%2C%20and%20Eddie%20Bert.Zoot Sims QuartetGeorgie Auld And His OrchestraEddie Bert QuintetTerry Gibbs Octet + +2605908James D. KingAmerican jazz tenor saxophonistNeeds VoteJ. D. KingJ. KingJ.D. KingJames KingAndy Kirk And His OrchestraHoward McGhee And His OrchestraJ.D. King And His OrchestraDick Taylor Quartet featuring J.D. King & Nick Fatool + +2606241Frank SiegfriedFranklin SiegfriedUS violinist, born August 22, 1917 in Atlantic City, New Jersey – died May 5, 2000 in New York, New York) +(his name is often spelled "Frank Siegfield" in discographies.) + +Siegfried was a student of [a=Efrem Zimbalist] (along with [a=Felix Slatkin]). +Mr. Siegfried graduated from the Curtis Institute of Music in 1933 and joined Local 802 (American Federation of Musicians) the same year, at age 16. He served in World War II as a member of the 369th Army Air Force Band. During the 1930s and ’40s he worked for ten years at Radio City Music Hall, and in 1936-37 was a member of [a=Artie Shaw]’s first band. He also worked in bands led by [a=Phil Napoleon], [a=Enric Madriguera], and [a=E. Payson Re]. Mr. Siegfried subsequently was a member of the WOR house orchestra and also maintained a busy freelance career, doing such radio dates as the Gulf Program, Palmolive Hour, Celanese Hour, and Ford Hour. He backed up artists including [a=Gordon McCrae], [a=Jo Stafford], [a=Billie Holiday], [a=Andy Williams], [a=Della Reese], [a=Sarah Vaughan], [a=Sammy Davis Jr.] and [a=Sam Cooke]. He worked many Broadway shows, including "Mexican Hayride," "Carousel," "Two on the Aisle," "My Fair Lady," "How to Succeed in Business," "Jesus Christ Superstar","Annie," and "Peter Pan." He also played on many classical orchestral recordings conducted by [a=Robert Shaw], [a=Erich Leinsdorf], [a=Leopold Stokowski] and [a=Igor Stravinsky]. + +Mr. Siegfried was a member of ASCAP and BMI and was president of [l=Avant Garde Records, Inc.] and [l=Vanguard Music Corp.] from 1968 through 1984.Complete and Correcthttps://adp.library.ucsb.edu/index.php/mastertalent/detail/358003/Siegfield_Frankhttps://www.familysearch.org/ark:/61903/3:1:3Q9M-CSW5-DCKW-L?view=index&personArk=%2Fark%3A%2F61903%2F1%3A1%3AQ2SJ-VHFF&action=view&cc=2603579&lang=en&groupId=Franf SiegfieldFrank SiefieldFrank SiefielsFrank SiegfiedFrank SiegfieldFranklin SiegfriedArtie Shaw And His OrchestraArtie Shaw And His StringsBilly Moore and his Jumpin String Octette + +2606286The Stomp Six1920s Chicago jazz groupNeeds Votehttp://www.redhotjazz.com/stomp6.htmlMuggsy Spanier's Stomp SixStomp SixMuggsy SpanierBen PollackMel StitzelVolly De FautGuy CareyJoe Gish + +2607327Benjamin ForsterTimpanist and percussionist, born in 1979 in Vilsbiburg, Germany.Needs VoteBerliner PhilharmonikerZurich Opera OrchestraTonhalle-Orchester Zürich + +2607694James WarbisClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +2607695John Mac MasterTenor vocalistNeeds Votehttp://www.johnmacmaster.comJohn MacMaster + +2608093Lisa BatiashviliElisabeth Batiashvili (Georgian: ელისაბედ ბათიაშვილი, ლიზა ბათიაშვილი)Georgian classical violinist, born in 1979. +She is married to [a931337] and is the daughter of violinist [a3899644] (Tamas Batiashvili).Needs Votehttp://www.lisabatiashvili.com/home.htmlhttp://en.wikipedia.org/wiki/Lisa_BatiashviliBatiashviliElisabeth BatiashviliL. Batiashviliリサ・バティアシュヴィリリサ・バティアシュヴィリElisabeth Batiashvili + +2608617Horst HajekHorst Hajek (30 May 1944 in Wels, Austria - 22 August 2013) was an Austrian clarinetist. He was a member of the [a754974] from 1973 to 2007.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Mozarteum Orchester SalzburgEnsemble KontrapunkteEnsemble Eduard Melkus + +2608661Johnny De Droit And His New Orleans OrchestraNeeds Major ChangesJ. DeDroit And His New Orleans Orch.Johnny De Droit & His New Orleans OrchestraJohnny De Droit And His New Orleans Jazz BandJohnny De Droit And His New Orleans Jazz OrchestraJohnny De Droit And The New Orleans Jazz OrchestraJohnny De Droit's New Orleans Jazz OrchestraJohnny De Droits And His New Orleans OrchestraJohnny DeDroit & His New Orleans Jazz OrchestraJohnny DeDroit And His New Orleans Jazz OrchestraJohnny DeDroit And His New Orleans OrchestraGeorge PotterFrank CunyRudolph LevyHenry RaymondRuss PapaliaPaul De DroitJohnny De Droit + +2611581Miriam DavisBritish classical violinistCorrecthttp://www.miriamdavisviolin.com/Royal Liverpool Philharmonic Orchestra + +2611694Fritz SchneiderClassical oboist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester LeipzigRundfunk-Kammerorchester LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +2612908Michael DumouchelClassical clarinetistNeeds VoteOrchestre symphonique de Montréal + +2612909Luis GrinhauzClassical violinistNeeds VoteLouis GrinhauzOrchestre symphonique de MontréalQuatuor Classique De Montréal + +2612912Peter Knapp (2)Classical bass vocalist and Director of [a=The Travelling Opera] + +Peter Knapp grew up in St Albans, near London, where he was a cathedral chorister and lay clerk, and then studied at St John’s College Cambridge, where he sang in the Chapel Choir and read English. + +He studied singing privately in London and in Italy, where he worked with the Italian baritone Tito Gobbi, and after working in professional choirs and choruses, he made his solo debut in as Count Almaviva in Mozart’s Le Nozze di Figaro at Glyndebourne. + +Moving into training, directing and conducting performers, he was Director of Opera at the Royal Academy of Music, set up British Youth Opera and then set up his own company, [a=The Travelling Opera], which toured extensively in the UK and France and gave London seasons at Sadlers Wells, and the South Bank and Barbican concert halls. + +He has also created his own small-scale production, All you Ever Wanted to Know about Opera!, which he performs in theatres and festivals, as well as at corporate and charity fund-raising events.Needs Votehttps://www.peterknapp.org/biohttps://www.glyndebourne.com/persons/peter-knapp/KnappThe King's College Choir Of CambridgeThe Travelling Opera + +2613081Roman SimovicРоман Симовић = Roman ŠimovićYugoslavian classical violinist and conductor. Born in 1981 in Montenegro, Yugoslavia. +He graduated from the [l285011]. Leader of the [a=London Symphony Orchestra] and the [a=LSO String Ensemble] since 2010.Needs Votehttp://romansimovic.comhttps://www.facebook.com/roman.simovic.violinisthttps://www.instagram.com/romansimovic/?hl=hrhttps://www.youtube.com/channel/UCYziBzLZfRmI6HqC0NNhnAghttps://open.spotify.com/artist/6GZxHKNfwYPXkECb1gEYnGhttps://music.apple.com/us/artist/roman-simovic/927487699https://www.feenotes.com/database/artists/simovic-roman/https://www.mariinsky.ru/en/company/orchestra/violin/simovich_roman/http://www.wieniawski.com/simovic_roman.htmlhttps://www.violinist.com/directory/bio.cfm?member=romansimovichttps://lso.co.uk/orchestra/players/strings.htmlhttps://www.ram.ac.uk/people/roman-simovicRoman SimovićLondon Symphony OrchestraLSO String Ensemble + +2613331Phil Stevens (5)American jazz bassist.Needs VoteCharlie Barnet And His OrchestraThe Wilbert Baranco Quintet + +2614799David Quinn (6)Classical viola playerNeeds VoteOrchestre symphonique de MontréalQuatuor Molinari + +2614976Grady ChapmanRhythm 'n' blues singerNeeds VoteChapmanG ChapmanG. ChamanG. ChapmanThe Robins + +2615093Jany BronDutch singer, b 1920 in Werkendam. + +January 1951 to 1963 in [a374750]Needs VoteJanie BronThe RamblersOrkest Zonder NaamMarketentsters En MusketiersAns En Jans + +2616101Bob RudolphAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe CNIB Stereos + +2616112Benoit ChapeauxClassical cellistNeeds VoteOrchestre National Du Capitole De Toulouse + +2616117Gaël SeydouxClassical cellistNeeds VoteOrchestre National Du Capitole De ToulouseToulouse Wind Orchestra + +2616615Ed BergmanAmerican violinist from the swing era. +(name is sometimes spelled "Edgar Berman" in discographies.)Needs VoteBergmanEddie BergmanEdgar BergmanEdward BergmanHarry James And His OrchestraFreddy Martin And His OrchestraBen Pollack And His Park Central OrchestraHarry James & His Music MakersEddie Bergman And His Hotel Statler Hilton Orchestra + +2616616Norman McPhersonNeeds VoteN. McPhersonPaul Whiteman And His Orchestra + +2617173Steve HarrowTrumpet playerNeeds VoteHarrowWoody Herman And His OrchestraWoody Herman And The Thundering HerdSteve Harrow Quintet + +2617456Marijke van der HarstClassical soprano vocalist, producer and photographerNeeds VoteCappella AmsterdamGesualdo Consort AmsterdamPluto Ensemble + +2617852Yuka SaïtoJapanese Viola da Gamba playerNeeds VoteSai Tö YukaYuka SaitoYuka SaïtôLe Concert SpirituelThe Beggar's EnsembleEnsemble Almazis + +2618089Rolf OscherRolf Oscher was a German violinist and composer.Needs VoteOscherR. OscherRadio-Sinfonieorchester Stuttgart + +2619666Carlo RizzariItalian violinist and conductor, born 1964 in Catania, Sicily.Needs Votehttp://www.facebook.com/people/Carlo-Rizzari/1845424452Orchestra dell'Accademia Nazionale di Santa Cecilia + +2619943Nederlands Bach EnsembleNederlands Bach EnsembleDutch Classical Ensemble, founded in 1983. Specialized in performing baroque music. The ensemble went bankrupt in 2009 and from the remains, musical director [a=Krijn Koetsveld] created a new Ensemble, called "Nieuw Bach Ensemble".Correcthttp://www.nieuwbachensemble.nlChoir & Orchestra of the Netherlands Bach EnsembleNetherlands Bach EnsembleNetherlands Bah Ensemble + +2621396Hans-Joachim KehrGerman classical contrabassistNeeds VoteHans KehrRundfunk-Sinfonieorchester BerlinKammerorchester Berlin + +2621397Markus StrauchGerman double bassist.Needs VoteStaatskapelle DresdenRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleKammerorchester Berlin + +2621672Peter Blake (6)Classical hornist.Needs VoteLondon SinfoniettaThe Academy Of Ancient MusicLondon WindsThe English National Opera OrchestraMichael Thompson Horn Quartet + +2621673Arthur MahlerClassical oboist.CorrectThe Academy Of Ancient Music + +2622144Serge KrichewskyClassical oboist and hornistNeeds VoteSerge KrichevskySerge KrichewskiOrchestre National Du Capitole De ToulouseEnsemble Les Surprises + +2622146Machiko UenoClassical oboist.CorrectMachicko UenoMachico UenoMatchiko UenoLes Arts FlorissantsLes Musiciens Du Louvre + +2622328Jim FoyJazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +2622331Bob PiersonAmerican jazz saxophone playerCorrectWoody Herman And His OrchestraWoody Herman And The Swingin' HerdSi Zentner And His OrchestraThe College All-StarsThe Russ Gary Big Band ExpressHayes Kavanagh's New York City Jazz Band + +2622332John CrewsJazz trumpeterNeeds VoteWoody Herman And His OrchestraWoody Herman And The Swingin' Herd1:00 O'Clock Lab Band + +2622930Elizabeth McNultyClassical harpist.Needs VoteRoyal Liverpool Philharmonic OrchestraYoung Musicians Symphony Orchestra + +2623581Declan DalyBritish violin playerNeeds Votehttps://www.linkedin.com/in/declan-daly-33a69566Nieuw Sinfonietta Amsterdam + +2625345Lenie van den HeuvelDutch Lenie soprano obtained her diplomas as Teaching and Peforming Musician in 1983 at the Royal Conservatoire with Marianne DielemanCorrectNederlands Kamerkoor + +2625347Jelle DraijerDutch bass vocalist, Jelle Draijer (Drayer), was born to a family of musicians, but he initially decided to study English and history. However, his parents were both professional singers and Jelle Draijer early started to also have lessons of singinging with his aunt, Heleen Draijer, deciding in 1974 to enter the Conservatory of Amesterdam.Needs Votehttps://www.bach-cantatas.com/Bio/Draijer-Jelle.htmDraijerJ. DraijerJelle DraaierJelle DrayerJelle S. DraijerDe Nederlandse BachverenigingGesualdo Consort AmsterdamNederlands KamerkoorSette Voci + +2625348Jetse BremerBorn May 9th 1959 in Heereveen, The Netherlands. Dutch classical tenor, composer and conductor.Needs VoteJ. BremerThe Amsterdam Baroque ChoirNederlands Kamerkoor + +2625349Erica GrefeSoprano vocalist.Needs VoteNederlands Kamerkoor + +2625354Henk VelsClassical tenor vocalistCorrectNederlands Kamerkoor + +2625473Dardanelle BreckenbridgeMarcia Marie MullenAmerican blues & jazz singer, vibraphonist, pianist, composer & arranger. Besides having her own trio, she collaborated mainly with Lionel Hampton. +Born March 27, 1917 in Avalon, Massachusetts, USA. +Died August 8, 1997 in Memphis, Tennessee, USA. + +Can also appear as Dardanelle (or Dardenelle) Breckenridge. +After her marriage, she was named Marcia Hadley, but she appears often on records simply as Dardenelle.Needs Votehttps://en.wikipedia.org/wiki/Dardanelle_Breckenbridgehttps://fromthevaults-boppinbob.blogspot.com/2019/12/dardanelle-hadley-born-27-december-1917.htmlhttps://geezermusicclub.com/2013/03/12/the-mystery-of-dardanelle/https://sugarfootstomp.wordpress.com/2018/02/20/dardanelle-breckenridge/https://www.youtube.com/channel/UCjDyKLH3UegDJb8g-_lNnxghttps://adp.library.ucsb.edu/names/305481DardanelleDardanelle BreckenridgeDardanelleeDardenelle BreckenbridgeDardanelleLionel Hampton And His Orchestra + +2626721David Madison (2)American violinist, born in 1907 and died in 1992.CorrectDavid "Sweetnote" MadisonDavid 'Sweetnote' MadisonThe Philadelphia Orchestra + +2627954Trixie Smith And Her Down Home SyncopatorsNeeds Major ChangesHer Down Home SyncopatorsTrixie Smith & Her Down Home Sync.Trixie Smith & Her Down Home SyncopatorsTrixie Smith & Her Down Home Syncopators.Trixie Smith Accompanied By Her Down Home SyncopatorsTrixie Smith And Her Down Home SyncopatersTrixie Smith Down Home SyncopatorsTrixie Smith, Acc. Her Down Home SyncopatorsTrixie Smith, Her Down Home SyncopatorsTrixie's Down Home SyncopatorsLouis ArmstrongCharlie GreenBuster BaileyCharlie DixonFletcher HendersonTrixie Smith + +2630264Denis MatonClassical hornistNeeds VoteLes Arts FlorissantsFreiburger BarockorchesterLa Petite Bande + +2631274Piotr PołanieckiPolish drummer and percussionist.Needs VotePolish National Radio Symphony OrchestraKoniec Świata + +2632523Misa StefanovichClassical violinist.CorrectMisa StefanovicCamerata Bern + +2632524Daniel HauptmannGerman violinistCorrectCamerata Bern + +2632525Massimo PolidoriItalian cellistNeeds VoteCamerata BernOrchestra MozartTrio JohannesQuartetto D'Archi Della ScalaFilarmonica Della Scala + +2632526Jonas ErniSwiss violinistNeeds VoteL'Orchestre De La Suisse RomandeCamerata BernLuzerner Sinfonieorchester + +2632527Daniel Steiner (3)Cellist, born in 1970, died in September 2002.CorrectJunge Deutsche PhilharmonieCamerata Bern + +2632528Andreas PreisserViolinistCorrectCamerata Bern + +2632529Markus MaibachSwiss double bassistNeeds VoteCamerata BernArtichic Salon Ensemble + +2632530Bettina SartoriusSwiss violinistCorrectBerliner PhilharmonikerCamerata BernEnsemble Berlin + +2632531Monika Urbaniak LisikViolinist.Needs Votehttp://www.monikaurbaniak.ch/Monika UrbaniakMonika Urbaniak-LisikCamerata Bern + +2632532Natalie CheeAustralian violinist, born in 1976 in Sydney, Australia, based in Switzerland.Needs VoteRadio-Sinfonieorchester StuttgartCamerata Academica SalzburgCamerata BernGürzenich-Orchester Kölner PhilharmonikerMozart Piano QuartetAustralian World OrchestraEnsemble TiramisuHegel Quartet + +2633068Christine BrewerAmerican soprano, born 26 October 1955.Correcthttp://www.christinebrewer.com/Brewer + +2634185Loren N. LindLoren N. Lind is an American flutist. A member of [a27519] from 1974 to 2017.Needs VoteThe Philadelphia Orchestra + +2634786Stanislav PalúchStanislav PalúchSlovak violinist + +Born July 7, 1977 in Čadca (former Czechoslovakia). Member and collaborator of Mladí Bratislavskí Sólisti ([a=Komorní Sólisti Bratislava]?), Capella Istropolitana, PaCoRa Trio, Teagrass, etc. +Needs VotePalúchS. PalúchS. PalúvStanislav PaluchStanko PalúchStano PalúchStano PavlúchCapella IstropolitanaTeagrassPacora TrioInterJAZZional BandIl Suonar Parlante OrchestraVlčie Maky + +2636463Bruce Fowler (3)Bruce Lambourne FowlerAmerican trombone player, composer and arranger, born July 10, 1947 in Salt Lake City, Utah. He notably played trombone on many [a=Frank Zappa] records. In 2007 he received the Film & TV Music Awards for Best Score Conductor and Best Orchestrator. +He is the son of jazz educator, musician and composer [a=William Fowler (3)] and [a=Beatrice Fowler], brother of multi-instrumentalist [a=Walt Fowler], saxophonist [a=Steve Fowler], and bassists [a=Tom Fowler] and [a=Ed Fowler].Needs Votehttps://www.modularmusic.ca/https://www.facebook.com/modularmusictoronto/https://linkedin.com/in/bruce-fowler-667b0b22https://en.wikipedia.org/wiki/Bruce_Fowlerhttps://www.imdb.com/name/nm0288670/B FowlerB. FowlerBruceBruce "Crossbones" FowlerBruce "Fossil" FowlerBruce 'Fossil' FowlerBruce FlowerBruce L. FowlerBruce Lambourne FowlerFowlerブルース・フォーラーHarlem River DriveToshiko Akiyoshi-Lew Tabackin Big BandWoody Herman And His OrchestraThe MothersFowler BrothersThe Abnuceals Emuukha Electric OrchestraThe Magic BandLadd McIntosh Big BandSka Cha ChaThe Vinny Golia Large EnsembleWoody Herman And The Thundering HerdThe Band From UtopiaSteve Spiegl Big BandThe Mar Vista PhilharmonicKim Richmond Concert Jazz OrchestraWayne Peet's Doppler FunkJim Morris Brass Plus1:00 O'Clock Lab Band + +2637358Masif NRG DJ'sNeeds Major ChangesMasif NRG + +2637360Elmer Schoebel And His Friars Society OrchestraElmer Schoebel's band playing Copenhagen and his own Prince of Wails, was a studio group that recalled something of the [a339913] of seven years earlier.CorrectElmer SchoebelElmer Schoebel & His Friars Society OrchestraElmer Schoebel And His Friar's Society OrchestraElmer Schoebel And His Friars Society Orch.Elmer Schoebel's Friar Society OrchestraElmer Schoebel's Friars Society OrchestraElmer Schoebel's Friary Society OrchestraElmer Schoebel’s Friars Society OrchestraGeorge WettlingFrank TeschemacherElmer SchoebelCharles MelroseJohn Kuhn (2)Jack ReadCharlie BargerDick FeigeFloyd Townes + +2637529Nick HupferNick HupferAmerican jazz and swing violinist and arranger, first active with the [a750213], later one of the founding members of [a284746] around 1936. He later changed his name to "Nick Harper".Needs Votehttps://www.google.com/books/edition/The_Woodchopper_s_Ball/j-OWguyirgUC?hl=en&gbpv=1&dq=%22nick+hupfer%22+%22ISHAM+JONES%22&pg=PA20&printsec=frontcoverNick HupfnerNick Harper (2)Woody Herman And His OrchestraIsham Jones OrchestraThe Band That Plays The Blues + +2637530Chick ReevesAmerican jazz guitarist, early member of [a284746].CorrectWoody Herman And His OrchestraThe Band That Plays The Blues + +2637531Bruce WilkinsAmerican jazz saxophonist, early member of [a284746].Needs VoteWoody Herman And His OrchestraThe Band That Plays The Blues + +2637845Matthew BrookClassical bass and baritone vocalistNeeds Votehttps://matthewbrook.com/BrookMatthew BrookeMagnificatOxford CamerataThe SixteenI FagioliniPolyphonyDunedin ConsortEnsemble Plus UltraSeicentoGli Angeli GenèveTenebrae (10)The Bach Players + +2637861Dave Young (10)David A. YoungAmerican Jazz tenor saxophonist and bandleader. + +[b]For tenor saxophone credits, please also consider [a941450].[/b] + +Born: January 14, 1912 in Nashville, Tennessee. Died: December 25, 1992 in Chicago, Illinois. +Beginning his career in 1932; he also served in he Navy during World War II. After the service, Young led his own band in Chicago. In 1947, the group recorded several sides featuring the singers [a=Andrew Tibbs] and [a=Clarence Samuels]; they also recorded with the singer [a=Dinah Washington]. +He has worked for [a=Horace Henderson], [a=Fletcher Henderson], [a=Roy Eldridge], [a=Lucky Millinder], and [a=Sammy Price], among others.Needs VoteD. YoungDave YoungDavid YoungLucky Millinder And His OrchestraDave Young's OrchestraRoy Eldridge And His OrchestraFrankie Jaxon And His Hot ShotsGrover Mitchell And His OrchestraSam Price And His Texas Blusicians + +2640770Frankie Newton & His Cafe Society OrchestraNeeds Major ChangesFrank Newton & His Cafe Society OrchestraFrank Newton And His Cafe Society OrchestraFrank Newton And His Café Society OrchestraFrankie Newton And His Cafe Society OrchestraFrankie Newton And His Café Society OrchestraFrankie Newton OrchestraFrankie Newton y Su Orquesta Del "Café Society"Johnny WilliamsKenneth HollonFrank NewtonBig Joe TurnerKenny KerseyEddie DoughertyTab SmithStanley PayneSonny PayneUlysses Livingston + +2641655Stan MuncyAmerican percussionist.Needs Votehttp://www.stanmuncy.com/index.html#/San Francisco SymphonyPark St. Trio + +2641934Jack CarmanJohn R. CarmanUS Bop and Swing trombonist (??- July 24, 2005).Needs VoteJ. K. CormanJack CarmenJackie CarmanBoyd Raeburn And His OrchestraDon Redman And His OrchestraRobert Mavounzy And His Be-BoppersThe Be-Bop MinstrelsHubert Fol & His Be-Bop Minstrels + +2641935Ray Brown's All StarsNeeds Major ChangesRay Brown All StarsRay Brown OctetRay Brown With The All-Star Big BandRay Brown's All Stars Aka The Be Bop BoysThe Ray Brown All StarsGene HarrisGrady TateJames MoodyMilt JacksonDave BurnsRay BrownHank JonesAl GreyJohn Brown (3)Ron EschetéJoe Harris (3) + +2642944Christel RayneauFrench flute player.Needs VoteOrchestre Des Concerts LamoureuxEnsemble Jean-Walter AudoliEnsemble Hélios + +2643466Peter SteinmannDutch hornist, born 1954 in Brunssum, Netherlands.Needs VoteP. SteinmannConcertgebouworkestDanzi KwintetEbony BandResidentie OrkestAmsterdam Philharmonic Orchestra + +2643629Ciro ViscoItalian conductor.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +2644552Eddie BakerNeeds VoteEddy BakerEdward BakerMax Roach Quintet + +2645568Katharine FugeBritish classical soprano, born 1968.Needs Votehttp://www.katharinefuge.com/Katharina FugeKatherine FugeKatherine FugueThe Monteverdi ChoirConcerto Caledonia + +2646383John LingesjöJohn Olof LingesjöSwedish classical bass trombonist, born on 15 January 1957.Needs VoteSveriges Radios Symfoniorkester + +2647072Daniele RoccatoDaniele RoccatoDouble bass soloist and composer. Co-founder and principal member of the Italian double bass ensemble Ludus Gravis.Needs Votehttp://www.danieleroccato.com/D. RoccatoOrchestra dell'Accademia Nazionale di Santa CeciliaLudus Gravis + +2647352Manfred PreisManfred Preis is a German classical clarinetist, basset hornist and saxophonist. He was a member of the [a260744] from 1982 to 2022.Needs VoteManfred PreissBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinInterclarinet + +2647442Troy DexterSession guitarist, keyboardist and producer based in Los Angeles. Married to [a12572741]Needs Votehttps://www.troydextermusic.com/https://www.facebook.com/troy.dexter.9https://twitter.com/troycdexterhttps://www.youtube.com/user/TroyDexterguitarhttps://www.guitarinstructor.com/product/viewinstructor.action?biographyid=462DexterT. DexterRazzThe Carl Verheyen BandPhoenix (55) + +2648285Tom WhittakerAmerican trombonist.Needs VoteTom (Zig-Zag) WhittakerStan Kenton And His Orchestra + +2648344Davide LivermoreClassical tenor vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2648704Anna Smith (4)Baroque and classical viola playerNeeds Votehttps://www.linkedin.com/in/anna-smith-0b36659Anne SmithHallé OrchestraNederlands Philharmonisch Orkest (2) + +2648907Joanna HenselClassical hornist.CorrectJo HenselThe Academy Of St. Martin-in-the-Fields + +2649955Richard LeshinRIchard David LeshinViolinist based in Southern California. Died Jan. 6, 2009 +Needs Votehttps://www.legacy.com/us/obituaries/latimes/name/richard-leshin-obituary?id=23159219Richard LeshikLos Angeles Philharmonic Orchestra + +2649959Anne Diener GilesUS classical flautist.Needs VoteAnne DienerAnne GilesLos Angeles Philharmonic Orchestra + +2649961John SchiavoClassical double bassist.Needs VoteLos Angeles Philharmonic Orchestra + +2649966Tamara ChernyakClassical violinist.Needs VoteTamaa Chernyak-PeppLos Angeles Philharmonic Orchestra + +2649967John BartholomewJohn Bartholomew is an American violist. He was a member of the [a837562] from 1980 to 2019.Needs VoteJohn BarthalmewLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +2649972William TorelloAmerican double bassist.CorrectThe Philadelphia OrchestraLos Angeles Philharmonic Orchestra + +2649982Jack CousinAmerican classical double bassist.Needs VoteLos Angeles Philharmonic Orchestra + +2650027Bart WallaceJazz Trumpet Player.Needs VoteArtie Shaw And His Orchestra + +2650130Yuki KasaiSwiss-born violinist, born in 1979 in Basel, Switzerland.Needs VoteKammerorchester BaselKammerakademie PotsdamSheridan EnsembleSwonderful Orchestra + +2650174Nico de GierDutch classical oboe playerNeeds VoteAkademie Für Alte Musik BerlinNetherlands Bach Collegium + +2650177Susanne GrutzmacherClassical oboistCorrectSusanna GrutzmacherSusanne GrützmacherNetherlands Bach Collegium + +2650194Hymie GunklerHerman Carl GunklerAmerican jazz saxophonist and clarinetist +He played with [a=Buddy Collette], [a=Clyde McCoy], [a=Bob Chester], Stan Myers, and [a=Earl Burtnett] + +Born: 2 February 1914 in Forest Park, Illinois, USA +Died: 15 February 2006 in Rancho Mirage, California, USANeeds VoteH. C. GunklerH.C. GunklerHeinie GunklerHerman C. GunklerHerman GunklerHynie GunkerHynie GunklerJean Goldkette And His OrchestraKay Kyser And His OrchestraThe Jerry Fielding OrchestraHot Rod Rumble Orchestra + +2650390Walter BarylliAustrian violinist (* 16 June 1921 in Vienna, Austria; † 01 February 2022 in Vienna, Austria). He's the father of [a1444624]. +Needs Votehttps://www.musiklexikon.ac.at/ml/musik_B/Barylli_Walter.xmlhttps://de.wikipedia.org/wiki/Walter_Baryllihttps://en.wikipedia.org/wiki/Walter_Baryllihttps://www.plateamagazine.com/noticias/12727-fallece-walter-barylli-mitico-concertino-de-la-filarmonica-de-viena-a-los-100-anosBarylliOrchester Der Wiener StaatsoperWiener PhilharmonikerBarylli String EnsembleBarylli Quartet + +2651130Adam EsbensenAmerican cellist.Needs Votehttps://www.bso.org/profiles/adam-esbensenBoston Pops OrchestraBoston Symphony OrchestraOregon Symphony Orchestra + +2651185Maximilian JunghannsGerman violinist, born in 1987.CorrectGustav Mahler Jugendorchesterhr-Sinfonieorchester + +2651515Lion GroenClassical double-bass playerNeeds VoteGroenThe RamblersEnsemble Benedetto MarcelloThe Amsterdam Piano QuintetDe Decca-MelodiansHet Ramona Kwartet + +2652175Franz BartosekClassical clarinetist.Needs VoteF. BartosekWiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +2652177Hans KameschAustrian oboist, born 1901 and died 1975.CorrectWiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +2652597Berdien VrijlandDutch violistNeeds VoteNetherlands Chamber OrchestraMarieke de Bruijn String Quartet + +2652602Pierre VoldersDutch trombonistCorrectRotterdams Philharmonisch OrkestNew Trombone Collective + +2652607Martin SchippersDutch trombonist, born in 1982 in Enschede, The Netherlands.CorrectConcertgebouworkestNew Trombone Collective + +2652610Alexander VerbeekDutch trombonistNeeds VoteNederlands Blazers EnsembleRotterdams Philharmonisch OrkestNew Trombone Collective + +2654233Hayden BlanchardTenor vocalist.Needs VoteThe Roger Wagner Chorale + +2654764Anthony ZeccoEngineer, Professional Drummer, Percussionist, Producer, Director, Creative Media Executive, Publication Editor of Tour Link Publication, Marketing DirectorNeeds VoteMaynard FergusonU4EAAlan JacksonA To ZWhite Heart + +2654929Josine Van Den AkkerClassical violinist.Needs VoteJ.P. Van Den AkkerJ.v.d. AkkerKristiansand SymfoniorkesterMusica Ad Rhenum + +2655199Joseph Alessi, Sr.American trumpet player, born 2 September 1915 in Brooklyn, New York and died 21 December 2004. He was the father of [a1279345].Needs VoteJoseph AlessiSan Francisco Symphony + +2655734Marieke BoucheClassical violinistNeeds VotePulcinellaOrchestre Des Champs ElyséesCollegium VocaleLes Cris de ParisLe Cercle De L'HarmonieEnsemble CairnLe Concert de la LogeEnsemble Rosasolis + +2655736Thomas de PierrefeuFrench Double-Bass Violone & Bass Violin instrumentalist, born in 1975 in Paris, France.Needs VoteLes Folies FrançoisesLe Concert D'AstréeEnsemble Vocal SagittariusLe Poème HarmoniqueLes Musiciens De Saint-JulienLes PaladinsLe Cercle De L'HarmoniePygmalionLes InventionsSit FastLe Banquet CélesteEnsemble Marguerite LouiseI Gemelli (2)Les Épopées + +2656182Robert FailerClassical violinist. A member of the [a604396] from 1984 to 2011.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +2657585Andreas Sebastian WeiserGerman conductor.Needs Votehttps://www.tobs.ch/de/tobs/team/portrait/r/19/p/49/pers/435/Andreas WeiserStuttgarter Hymnus-Chorknaben + +2657589Petr VeverkaClassical flautistNeeds VoteThe Czech Philharmonic Orchestra + +2657590František HostClassical cellistNeeds VoteFrantisek HostThe Czech Philharmonic OrchestraDuo di BassoCzech Philharmonic Sextet + +2657591Jaroslav PondělíčekClassical violistNeeds VoteThe Czech Philharmonic OrchestraCzech Philharmonic Sextet + +2657595Jaromír PávičekCzech classical violist.CorrectJaromir PavicekJaromír Páví EkJaromír PávíčekThe Czech Philharmonic OrchestraPro Arte Antiqua Praha + +2657596Josef ŠpačekJosef ŠpačekCzech classical violoncellist, born in 1962. +Member of [a=The Czech Philharmonic Orchestra] since 1990, founding member of [a=Czech Philharmonic Sextet] in 1993. +Father of violinist [a=Josef Špaček (2)] (also a member of [a=The Czech Philharmonic Orchestra]) and cellist [a=Petr Spacek] (Petr Špaček).CorrectThe Czech Philharmonic OrchestraPro Arte Antiqua PrahaCzech Philharmonic Sextet + +2658456Stanley Smith (3)British oboist.Needs VoteS. SmithStan SmithPhilharmonia OrchestraThe Kingsway Symphony OrchestraThe London Wind QuintetThe Wind Virtuosi Of England + +2660070Johnny Harris (4)Credited as clarinet and saxophone player.Needs VoteJohn HarrisRex Stewart And His Orchestra + +2660494The Halfway House OrchestraJazz band. +Halfway House Orchestra was named after a dancehall called the Halfway House that was halfway between New Orleans and Lake PontchartrainCorrecthttps://syncopatedtimes.com/halfway-house-orchestra/Halfway House OrchestraThe Halfway House OrchAlbert Brunies + +2660725Joe Burke (3)Joseph Aloysius BurkeUS composer, pianist and actor (March 18, 1884 – June 9, 1950). He was born in Philadelphia and died in Upper Darby, Pennsylvania. His first acting break was in the 1915 film "The Senator", his last was "The Show of Shows" in 1929. He went on to compose film scores. + +He graduated from the Philadelphia Conservatory of Music and started as a pianist accompanying silent movies and an arranger in a music publishing firm. It was during this time that he started writing songs for publication. After he had a few hits he started composing full time. He partnered with some great lyricists; [a693653] ("Carolina Moon") and [a612651] ("Just the Same") and [a638132], Jr. ("Rambling Rose"). However, the partners he had the most successes with were, [a628267] ("Tip Toe Through the Tulips", "I'm Painting the Clouds with Sunshine, For You") and [a620388] ("On Treasure Island", "A Little Bit Independent", "In a Little Gypsy Tea Room", "Moon Over Miami", "It Looks Like Rain on Cherry Blossom Lane"). + +He was inducted into the Songwriters Hall of Fame in 1970. +167 song titles are listed at ASCAP. +Needs Votehttp://en.wikipedia.org/wiki/Joe_Burke_(composer)http://songwritershalloffame.org/exhibits/C80https://adp.library.ucsb.edu/names/109994https://adp.library.ucsb.edu/names/109995BerkBerkeBurkBurkeBurke (3)Burke, JosepfBurkoBurnsD. BurkeDurkHoseph A. BurkeJ BurkeJ. A. BurkeJ. BertJ. BurkeJ. PurkeJ.A. BurkeJ.BurkeJo BurkeJoe BourkeJoe BrukeJoe BurkeJoe BurksJohnny BurkeJos. A. BurkeJos. BurkeJoseph A. BurkeJoseph BurkeJosé BurkeJoé BurkeJoë BurkeL. BurkeLeslie J. BurkeДж. БеркДжо Берк + +2660837Luise BuchbergerGerman cellist, born in 1984 in Frankfurt am Main, Germany.Needs VoteThe Chamber Orchestra Of EuropeOrchestra Of The Age Of EnlightenmentEnsemble 1700The MozartistsThe Bach Players + +2660951Tobias HungerClassical alto/tenor.CorrectHungerCollegium VocaleLa Capella DucaleCappella AugustanaOpella Musica + +2661882Laurens van VlietLaurens van VlietDutch violinist.Needs VoteRotterdams Philharmonisch Orkest + +2662729HybridZ (2)Hard dance DJs / producers based in Newport, South Wales, UK.Correcthttps://www.facebook.com/HybridZDJshttp://soundcloud.com/hybridz-1Davin PalmerMark Tracey + +2664258Olle MarkströmSwedish classical violinist, originally fron Sundsvall.Needs VoteOlle MarkstrømSveriges Radios Symfoniorkester + +2664275Bernhard RainerClassical trombonistNeeds VoteConcerto KölnArs Antiqua AustriaEnsemble Dolce Risonanza + +2666961Dane JohansenClassical cellist.Needs VoteThe Cleveland OrchestraEscher String Quartet + +2666962Andrew EngViolinist.Needs VoteBaltimore Symphony Orchestra + +2666970Thomas van DyckAmerican double bassist.Needs Votehttps://www.bso.org/profiles/thomas-van-dyckBoston Pops OrchestraBoston Symphony OrchestraArcos Chamber Orchestra + +2667001Colin Sauer (2)British violinist and chamber musician who led the Dartington String Quartet for over 20 years. Born July 13, 1924 in Ilford, England, UK - Died January 9, 2015.Needs Votehttps://en.wikipedia.org/wiki/Colin_Sauerhttps://divineartrecords.com/artist/colin-sauer/?aelia_cs_currency=USDhttps://theviolinchannel.com/colin-sauer-dartington-string-quartet-obituary-died-aged-90/https://www.telegraph.co.uk/news/obituaries/11574211/Colin-Sauer-violinist-obituary.htmlhttps://web.archive.org/web/20150921144458/http://www.classicalmusicmagazine.org/2015/05/violinist-colin-sauer-dies-at-90/https://www.thestrad.com/violinist-and-dartington-quartet-co-founder-colin-sauer-dies-aged-90/5933.articleBBC Symphony OrchestraHallé OrchestraBournemouth SinfoniettaPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsAeolian String QuartetDartington String QuartetLondon Baroque Ensemble + +2667195Dexter Gordon And His OrchestraNeeds Major Changes + +2668888Günter SieringGerman violinist.CorrectGunter SieringDresdner PhilharmonieSiering-Quartett Der Dresdner Philharmonie + +2670193George Lee (5)American label executive and producer. +Former vocalist and guitarist with the Buddy Morris and [a212786] Orchestras, +he was operation manager and A&R producer for several major labels +including [l1124049] / [l157], [l8742] and [l878]. + +Died: March 2, 2014 in New York City, New York (age 96)Needs Votehttps://www.legacy.com/us/obituaries/nytimes/name/george-lee-obituary?id=23488079LeeStan Kenton And His Orchestra + +2671652Frederick RiddleFrederick Craig RiddleBritish classical violist, and Professor of Viola. Born 20 April 1912 in Liverpool, England, UK - Died 5 February 1995 in Newport, Isle of Wight, England, UK. +He studied at the [l290263] (1928-1933). He started his career both as a solo performer and with the [a=London Symphony Orchestra] (1933-1937) as Principal Viola. He was appointed Principal Viola of the [a=London Philharmonic Orchestra] in 1938. In 1953, he succeeded [a=Harry Danks] as principal violist of the [a=Royal Philharmonic Orchestra]. He was a Professor of Viola at the Royal College of Music from 1948 onwards. +He was appointed an Officer of the Order of the British Empire (OBE) in 1980. +He married [a=Helen Clare] (2nd wife) in 1946 in Kensington, whilst he was in the [a=BBC Salon Orchestra]. +Needs Votehttps://open.spotify.com/artist/1fqZi1awFixmkF3Wfq4L5uhttps://music.apple.com/us/artist/frederick-riddle/325230816http://en.wikipedia.org/wiki/Frederick_Riddlehttps://www.naxos.com/person/Frederick_Riddle/40641.htmhttps://www.thestrad.com/playing-and-teaching/frederick-riddle-modest-master-of-the-viola/2309.articlehttps://www.independent.co.uk/news/people/frederick-riddle-1574804.htmlF. RiddleFred RiddleFrederick Riddle - ViolaRiddleLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraPhilharmonia String QuartetLondon Baroque EnsembleRobles TrioBBC Salon OrchestraThe Philharmonic String Trio + +2672403Jelly Roll Morton's Kings Of JazzNeeds Major ChangesJ.R. Morton's Kings Of JazzJelly Roll Morton Jazz KingsJelly Roll Morton's King Of JazzJelly Roll Morton's Kings Of Jazz KidsJelly-Roll Morton's Jazz KingsJelly-Roll Morton's Kings Of JazzJelly Roll MortonLee Collins (2)Roy PalmerAlex Poole'Balls' Ball + +2672404Jelly Roll Morton's IncomparablesNeeds Major ChangesJ.R. Morton's IncomparablesJelly Roll Morton’s IncomparablesJelly-Roll Morton's IncomparablesJelly Roll MortonPunch MillerClay JeffersonRay Bowling (2) + +2672616Joe EstrenAmerican jazz saxophonist.CorrectWoody Herman And His OrchestraThe Band That Plays The Blues + +2672618Henry SaltmanAmerican Jazz Saxophonist in the swing-era.Needs VoteH. SaltmanHenry 'Hank' SaltmanBunny Berigan & His OrchestraCharlie Barnet And His Orchestra + +2672670Caroline GermondClassical alto vocalistNeeds VoteBasler MadrigalistenCoro Della Radio Televisione Della Svizzera Italiana + +2672673William DickinsonClassical bass vocalist and baroque flutist. + +Born 2 October 1948 in Santa Barbara, USA. +Died 18 July 2022 in Basel, Switzerland.Needs VoteCoro Della Radio Televisione Della Svizzera Italiana + +2672674Silvia PiccolloClassical Soprano VocalistNeeds VoteCoro Della Radio Televisione Della Svizzera ItalianaAlessandro Stradella ConsortCamerata Ligure + +2672675Bianca SimoneClassical contralto / mezzo-soprano vocalist Needs VoteCoro Del Centro Di Musica Antica Di PadovaConcerto ItalianoIl RuggieroCoro Della Radio Televisione Della Svizzera ItalianaMadrigalisti Del Centro Di Musica Antica Di Padova + +2672676Olaz GorrotxategiClassical soprano vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672677Liliana TamiClassical contralto vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672678Clemy ZarrilloClassical alto vocalistNeeds VoteClementina ZarrilloCoro Della Radio Televisione Della Svizzera ItalianaMusicale Collegium + +2672679Dorothee LabuschClassical alto vocalistNeeds VoteCoro Della Radio Televisione Della Svizzera ItalianaChor Der J.S. Bach StiftungAd Fontes (2) + +2672680Sergio AllegriniClassical tenor vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672681Axel EveraertClassical tenor vocalist, born 22 December 1965Needs VoteCoro Della Radio Televisione Della Svizzera Italiana + +2672682Luigi GariboldiClassical tenor vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaCoro Della Radio Televisione Della Svizzera ItalianaCorale Gioacchino RossiniCamerata Ligure + +2672683Fabian SchofrinArgentinian classical countertenor & alto vocalistNeeds VoteFabian SchoffrinFabián SchofrinFabían SchofrinSchofrinLes Arts FlorissantsConcerto ItalianoEnsemble ElymaCoro Della Radio Televisione Della Svizzera Italiana + +2672684Eva DedkovaClassical alto vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672685Ulrich RauschClassical bass vocalistCorrectUli RauschWDR Rundfunkchor KölnCoro Della Radio Televisione Della Svizzera Italiana + +2672686Ulrike ClausenClassical contralto vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672690Sandro MontiClassical tenor vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672691Achim SchwesigClassical bass vocalistCorrectAkim SchwesigCoro Della Radio Televisione Della Svizzera Italiana + +2672692Antonella LalliClassical soprano vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +2672851Michel PaquinetFrench jazz trombonist, born in 1931, died in 1970. +Son of [a=Guy Paquinet], brother of [a384819].Needs VoteM. PaquinetAndré Popp Et Son OrchestreLucien Lavoute Et Son OrchestreGrand Orchestre De L'OlympiaChristian Chevallier Et Son OrchestreClyde Borly Et Ses PercussionsParis All Stars (2) + +2672988Art BeckAmerican jazz saxophonist from the swing era. + +CorrectA. BeckJack Teagarden And His Orchestra + +2672991Truman QuigleyAmerican composer, arranger and swing trumpeter. + +Arranger for the Phillip Morris Radio Show, staff music member of [l=CBS] in New York and staff composer for [l=Ascot Music Inc.] + +Went by the nickname "Quigg".Needs VoteQuigleyJack Teagarden And His Orchestra + +2673325Rich DeRosaRichard Jerome DeRosab. Huntington, NY, 25 November 1955 + +Composer, arranger, drummer, university professor. His father is [a=Clem De Rosa], brother [a=Gary DeRosa]. + +He has toured and/or recorded with Gerry Mulligan Bob Brookmeyer Marian McPartland Peter Nero, Garry Dial, Dick Oatts, Jerry Dodgion, Jackie & Roy, Susannah McCorkle, Randy Sandke, Chris Potter, Conrad Herwig, Greg Gisbert, Alexander Gafa, Bucky Pizzarelli, Ken Peplowski, Howard Alden, Steve LaSpina, Christopher Gines, John Gabriel, Eric Comstock, Harry Sheppard, Chuck Wayne, Jay Leonhart, Mary Wooten, Andy Stein, and the Manhattan School of Music Jazz Orchestra. +Needs Votehttp://richderosa.com/http://www.imdb.com/name/nm3546002/DeRosaRich De RosaRichard De RosaRichard DeRosaRichie DeRosaRichie DerosaGerry Mulligan QuartetGerry Mulligan And His Orchestra + +2673853Tony KaticsAmerican vocalist, songwriter and arranger.Needs VoteKaticsThe Roger Wagner ChoraleThe Modern Men + +2673855Al OliveriAmerican vocalist.Needs VoteThe Roger Wagner ChoraleThe Modern Men + +2674470William TisdaleEnglish musician and composer, born ca. 1570.Needs Votehttps://en.wikipedia.org/wiki/William_TisdaleTisdallWilliam TisdalWilliam Tisdall + +2674680Juliane GreplingGerman horn player, born 1988.Needs VoteGewandhausorchester LeipzigJunge Deutsche PhilharmonieOrchester Der Komischen Oper BerlinBundesjugendorchester + +2674931Rolf WindingstadNorwegian bassist and cellist, 1922-2006. Employed as bassist at Filharmonisk Selskaps Orkester / Oslo Filharmoniske Orkester from 1948 to 1987. Also played in chamber orchestras as a cellist, as well as bass in various dance/swing/jazz ensembles. Was married to Marie Flagstad, the niece of soprano [a397619]Needs Votehttps://no.wikipedia.org/wiki/Rolf_WindingstadEgil Monn Iversens OrkesterOslo Filharmoniske OrkesterFilharmonisk Selskaps OrkesterEilif Holm's Kvartett + +2675301Manuel Moreno-BuendíaManuel Rodríguez Moreno BuendíaSpanish composer, arranger conductor (b. Murcia, 1932), he was married to [a2250178]. Music director of [l=Teatro de la Zarzuela] from 197o to 1981. +He used "Julio Moreno" and "Binario" as aliases on his light music compositions.Needs Votehttps://es.wikipedia.org/wiki/Manuel_Moreno-Buend%C3%ADahttps://www.mundoclasico.com/articulo/36767/En-el-Stabat-Mater-hice-cosas-que-nunca-hab%C3%ADa-hechoBuendíaM. MorenoM. Moreno BuendiaM. Moreno BuendíaM. Moreno-BuendíaManuel Moreno BuendiaManuel Moreno BuendíaMoreno BuendiaMoreno BuendíaMoreno-BuendiaMtro. Bueno BuendíaMtro. Moreno BuendiaThe Flaming Strings & Blazing Brass Of Moreno-BuendiaМануэль Морено БуэндиаJulio Moreno (8)Binario (3)Moreno Buendia y Su Gran OrquestaJulio Moreno Y Su Orquesta + +2675985Egbert SchimmelpfennigCellist, Fiddle, Organ and Crumhorn instrumentalist.Needs VoteStaatskapelle BerlinMusica MensurataSalonorchester Unter'n Linden + +2676319Sophie JonesBritish soprano vocalistNeeds VoteLondon VoicesThe Eric Whitacre Singers + +2676482MC D (3)Carlos FernandesNeeds Votehttps://www.facebook.com/carlos.fernandeshttps://www.instagram.com/MCD4THLTR/https://twitter.com/MCD4thltr + +2677896Andy PeeleAmerican jazz trumpet player.Needs VoteAndrew PeeleWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +2677908Buddy HarperElijah Jacob HarperUS jazz guitarist. 1903-1985. Uncle of [a1003480].Needs VoteB. HarperBuddy Harper's OrchestraE. HarperElijah "Buddy" HarperHarperWilbert Baranco OrchestraWilbert Baranco And His Rhythm BombardiersWilbert Baranco And His TrioEddie Beal And His SextetBuddy Harper And His All-StarsBuddy Harper OrchestraSylvester Scott And His Orchestra + +2679430Scat PowellCredited as singer.Needs Vote"Scat" PowellPowellDuke Ellington And His OrchestraCootie Williams & His Rug Cutters + +2679498Axel SjöstedtSwedish trumpeter, born 1986.Needs VoteOslo Filharmoniske OrkesterStockholm Brass Quintet + +2679781Devonia WilliamsDevonia Eloysie "Lady Dee“ WilliamsUS american Rhythm & Blues pianist and singer. Played with [a104676] and [a283284]. +b.: July 18, 1924 in Los Angeles County, CA, USA +d.: July 1, 1967 in Los Angeles, CA, USANeeds Votehttps://www.spontaneouslunacy.net/artists-dee-williams/https://de.wikipedia.org/wiki/Devonia_Williams"Lady Dee" Williams'Darby Hicks' Devonia WilliamsD. WilliamsDee WilliamsDevinia "Lady Dee" WilliamsDevoniaDevonia "Lady Dee" WilliamsDevonia 'Lady Dee' WilliamsLady DeeWilliamsDarby HicksJohnny Otis And His OrchestraPreston Love And His OrchestraDee Williams & The California Playboys + +2680182Sarina ZickgrafSarina Zickgraf (born 1991) is a German violist.Needs Votehttps://www.sarinazickgraf.com/The German Youth OrchestraSwonderful OrchestraTonhalle-Orchester Zürich + +2681253Mariusz MocarskiPolish drummer, session musician. He has collaborated with [a817845] and [a1566764].Needs Votehttp://www.mariuszmocarski.pl/http://www.facebook.com/mariusz.mocarski.9http://myspace.com/mariuszmocarskiM. MocarskiOrkiestra Symfoniczna Filharmonii NarodowejSinfonia Viva (2) + +2682949Luigi MapelliNeeds Major ChangesMapelli + +2683321Claire Stranger-FordBritish classical violinistNeeds Votehttp://www.violin4weddings.co.uk/Royal Liverpool Philharmonic OrchestraGood Vibrations (4) + +2683322Nick Byrne (2)British classical cellistCorrecthttps://twitter.com/byrne_nickNicholas ByrneRoyal Liverpool Philharmonic Orchestra + +2683980Ben Carr (4)Needs VoteTrap Two + +2684369Daryl "Flea" CampbellNeeds VoteDaryl CampbellFlea CampbellTommy Dorsey And His Orchestra + +2685044Christoph DrescherClassical bass vocalistNeeds VoteCappella AmsterdamKammerchor StuttgartZefiro TornaVocalconsort Berlin + +2685879Licco AmarClassical violinist, born in Hungary (1891-1959). He was co-founder, with [a=Paul Hindemith], of the string quartet ensemble [a=Amar-Quartett], named after him.Needs VoteAmar-Quartett + +2685880Walter CasparClassical violinist.Needs VoteAmar-QuartettAmar Trio + +2685881Amar-QuartettString quartet ensemble, also known as the Amar-Hindemith Quartet, co-founded by the composer [a=Paul Hindemith] in 1921, named after its principal violinist, [a=Licco Amar]. +The ensemble was disbanded in 1929. + +Not to be confused with the [a=Amar Quartett], a Swiss string quartet ensemble that adopted the same name since 1995. +Correcthttp://en.wikipedia.org/wiki/Amar_QuartetAmar QuartetAmar-Hindemith QuartetAmar-Hindemith QuartettAmar-Hindemith TrioThe Amar QuartetPaul HindemithRudolf HindemithLicco AmarWalter CasparMaurits Frank + +2686315Billy Robbins (2)US Trumpet Player of the Jazz and Big Band eraNeeds VoteBill RobbinsWoody Herman And His OrchestraTony Pastor And His OrchestraHal McIntyre And His OrchestraWoody Herman & The HerdThe Modern Jazz OrchestraThe Band That Plays The Blues + +2686397Pascal ThéryClassical violinist.CorrectOrchester der Bayreuther FestspieleOrchestre De Chambre Jean-François PaillardDüsseldorfer Symphoniker + +2686398Michael Flock-ReisingerGerman cellist.CorrectOrchester der Bayreuther FestspieleDüsseldorfer Symphoniker + +2686826Walter HanesworthClassical cellist.Needs VoteBournemouth Symphony Orchestra + +2686827Alan DanceyClassical violist.Needs VoteBournemouth Symphony Orchestra + +2686828Peter WithamViolin playerNeeds VoteMr. Peter WithamMr. WithamBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +2686830Sonia DanceyClassical violin player.Needs VoteSonya DanceyBournemouth Symphony Orchestra + +2687090Jungle Kings (2)Needs Major ChangesThe Jungle KingsMezz MezzrowGene KrupaJoe SullivanRed McKenzieMuggsy SpanierEddie CondonFrank TeschemacherJim Lannigan + +2688234Donald BridgerBritish classical oboist & cor anglais player, and composer for military band. +Former Principal Oboe with the [a=London Symphony Orchestra] (1950-1951).Needs VoteBridgerLondon Symphony OrchestraLondon Baroque Ensemble + +2689777Céline MoinetFrench oboist, born 1984 in Lille, France.CorrectStaatskapelle DresdenOrchester Des Nationaltheaters MannheimGustav Mahler Jugendorchester + +2689781Jeroen BerwaertsBelgian trumpet player, born in 1975.Needs Votehttps://de.karstenwitt.com/jeroen-berwaertsMahler Chamber OrchestraThe Canadian BrassStockholm Chamber Brass + +2689914Rennie YamahataRenie YamahataHarpist from Tokyo/Japan. +From 1981 to 1985 she worked as solo harpist at the Stadttheater Luzern. In this function she has been engaged at the Stuttgart Radio Symphony Orchestra since 1985. +As a soloist she performed among others with the Tokyo Metropolitan Symphony Orchestra, the New Japan Philharmonic Orchestra, the ensemble Ars Nova de Paris, the RSO Bruxelles, the Stuttgart Chamber Orchestra, the Prague Chamber Orchestra and the RSO Stuttgart. She was also from 1992 to 1993 representing the first solo harp at the Berlin Philharmonic Orchestra. +Currently she is a professor of University of Music in Trossingen. Since 1985 member of the Stuttgart Radio Symphony Orchestra.Needs VoteRene YamahataRenie YamahataRenié YamahataRadio-Sinfonieorchester StuttgartBudapest Strings + +2690381José CandelMaria Josephina Andres Candelb.: Augustus 16, 1907 (Maastricht, the Netherlands) +d.: September 03, 1995 (Oirschot, the Netherlands) + +Dutch operatic soprano. Needs Votehttp://401dutchdivas.nl/en/sopranos/255-jose-candel-.htmlJose CandelNederlands Kamerkoor + +2690405Coenraad BosCoenraad Valentijn Bos Dutch pianist born in Leiden, The Netherlands, 7 December 1875. He died on 5 August 1955 at Chappaqua, New York, USA. aged 79. +Needs VoteCoenraad V. BosCoenraad Valentijn BosCoenraad Valentyne BosCoenraad Van BosCoenraad v. BosCoenraad van BosCoenraad von BosCoenrad V. BosKonraad V. BösKonrad Bos + +2690424Julia CulpJulia Berta CulpDutch mezzo-soprano, born 6 October 1880 in Groningen, The Netherlands and died 13 October 1970 in Amsterdam, The Netherlands.Needs Votehttps://adp.library.ucsb.edu/names/107543Miss Julia Culp + +2690858Frédéric PotierFrench bass trombonist.Needs VoteOrchestre National De L'Opéra De ParisBekummernisLes Cuivres Français + +2690937Louis Taylor (3)Jazz trombonistNeeds VoteL. TaylorLewis TalylorLewis TaylorTaylorCount Basie OrchestraEarl Hines And His OrchestraBenny Carter And His Orchestra + +2690942Leora HendersonCredited as jazz trumpet player.Needs VoteHendersonConnie's Inn Orchestra + +2690944Mike Michaels (3)Trombonist from the swing-era.CorrectArtie Shaw And His OrchestraCalifornia Ramblers + +2691006Bobby CanvinBarbara Jane Ames née CanvinJazz and pop vocalist who sang with the orchestras of [a=Tommy Dorsey] and [a=Charlie Barnet], and dubbed various actresses on screen. She started her career as a member of [a=The Music Maids]. She initially performed as Bobby (or Bobbie) Canvin, but eventually started using her real name Barbara Canvin, and after getting married she performed as Barbara Ames. + +Born: 14 June 1922 in Silver Bow, Montana, USA +Died: 7 November 2012 in Los Angeles, California, USANeeds Votehttps://www.imdb.com/name/nm1579722https://adp.library.ucsb.edu/index.php/mastertalent/detail/356765/Canvin_BobbyBarbara CamdenBobbie CanvinBarbara Ames (2)The Music MaidsMellowaires + +2691122Kirby WalkerIrving Kirby WalkerJazz and blues singer and pianist, who first recorded as a featured vocalist with Freddy Jenkins and his Harlem Seven in 1935, and under his own name recorded for DeLuxe in 1946 and for Columbia in 1949.Needs VoteIrving Kirby WalkerK. WalkerWalkerWalker KirbyFreddie Jenkins And His Harlem Seven + +2691570Ulrich KircheisBassoonistCorrectBamberger SymphonikerThe Chamber Orchestra Of Europe + +2691574Sophie BesanconFrench classical violinistNeeds VoteSophie BesançonThe Chamber Orchestra Of Europe + +2691577Martin SpangenbergGerman classical clarinetist, born in 1965 in Wangen, Germany.Needs VoteYoung Romance OrchestraThe Chamber Orchestra Of EuropeWürttembergisches KammerorchesterBundesjugendorchester + +2691581Henriette ScheyttGerman classical violinistNeeds VoteHenrietta ScheyttThe Chamber Orchestra Of EuropeBundesjugendorchester + +2691583Birgit KolarAustrian violinist, born in 1970 in Waldhofen Austria.Needs Votehttp://birgit-kolar.com/The Chamber Orchestra Of EuropeSeraphin Quartett + +2691585Sylwia KonopkaPolish classical violinistCorrectSylvia KonopkaThe Chamber Orchestra Of Europe + +2691586Josef SterlingerJosef Sterlinger (born 1954) is an Austrian hornist.Needs VoteCamerata Academica SalzburgThe Chamber Orchestra Of EuropeDas Mozarteum Orchester Salzburg + +2691587Marie Lloyd (2)British classical clarinetist, born in 1972 in London, UK.Needs VoteThe Chamber Orchestra Of Europe + +2691589Eline Von EscheFlutistCorrectThe Chamber Orchestra Of Europe + +2691591Giorgi GvantseladzeGeorgian oboist, born in 1984.CorrectGvantseladzeBayerisches StaatsorchesterThe Chamber Orchestra Of EuropeFrankfurter Opern- Und Museumsorchester + +2691592Matilda KaulCanadian classical violinistNeeds VoteMathilda KaulThe Chamber Orchestra Of EuropeDaedalus String Quartet + +2691593Lutz Schumacher (2)German classical bassistCorrectThe Chamber Orchestra Of EuropeBundesjugendorchester + +2691599Geoffrey PrenticePercussionistNeeds VoteBournemouth Symphony OrchestraThe Chamber Orchestra Of Europe + +2691603Pascal SiffertSwiss violist, born in Fribourg in 1965. Since 1986 living in Sweden.Needs VotePascal SiffestPascall SiffertThe Chamber Orchestra Of EuropeKungliga FilharmonikernaZ Quartet + +2691605Rachel FrostClassical oboistNeeds VoteThe Chamber Orchestra Of EuropeTrio Roseau + +2691607Nicholas EastopBritish trombonist, born on March 10, 1961 in Reading, UK. + +He is living in Stockholm, Sweden. + +He is married to [a277778].Needs VoteNick EastopThe Chamber Orchestra Of Europe + +2691608Stefano MolloItalian classical violinist, born in 1964 in Rome, Italy.Needs VoteThe Chamber Orchestra Of Europe + +2691609Karl FriesendahlTrombonistCorrectThe Chamber Orchestra Of Europe + +2691784Bernard CoulonClassical vocalist.CorrectChoeur de Chambre de Namur + +2691785Françoise BronchainClassical soprano.CorrectChoeur de Chambre de Namur + +2691787Michel LoncinBaritone vocalistNeeds VoteChoeur de Chambre de Namur + +2691788Carl SansoneCountertenor vocalistCorrectChoeur de Chambre de Namur + +2691789Tom DevaereBelgian classical double bassist & violistNeeds VoteAnima EternaLa Petite BandeOltremontanoB'Rock Orchestra + +2691790Sandra PiauClassical soprano.CorrectPiauChoeur de Chambre de Namur + +2691792Bernard DoumainClassical vocalist.CorrectChoeur de Chambre de Namur + +2691794Etienne DebaisieuxClassical bass / baritone vocalist and organ builder. Needs Votehttp://users.skynet.be/orgues.debaisieux/EtienneÉtienne DebaisieuxIn PlugsChoeur de Chambre de NamurPsallentesWitloof Bay + +2691795Fabienne PétrisseClassical soprano.CorrectFabienne PetrisseChoeur de Chambre de Namur + +2691796Christine LejeuneClassical vocalist and viola de gamba player.Needs VoteChoeur de Chambre de Namur + +2691797Bernard GuiotClassical tenor.CorrectB. GuiotChoeur de Chambre de Namur + +2691799Danièle BodsonSoprano vocalistCorrectChoeur de Chambre de Namur + +2691800Bernard DemaetClassical vocalist.CorrectBernard De MaetChoeur de Chambre de Namur + +2691804Maarten van WeverwijkClassical trumpeter.Needs VoteCollegium VocaleCombattimento Consort AmsterdamLa Petite BandeCantus CöllnOrquesta Sinfónica Del Principado de Asturias + +2691805Alain De RijckereBelgian bassoonist.Needs VoteA. de RyckereAlain De RiyckereAlain De RyckereAlain DerijckereAlain DeryckereAlain de RyckereIl FondamentoLa Petite BandeRicercar ConsortIl GardellinoLes AgrémensVox LuminisLes MuffattiLa PastorellaThe Belgian Baroque SoloistsGroupe C + +2691806Florence DoyenClassical vocalist.CorrectChoeur de Chambre de Namur + +2691807Els JanssensMezzo-soprano, alto and soprano vocalistNeeds VoteEls JanssenEls Janssens VanmunsterEls Janssens-VanmunsterEls Janssens-VanmusterEls Janssens-VanmutterChoeur de Chambre de NamurLes FlamboyantsFerrara EnsembleLa MorraMusicatreizeChoeur Arsys BourgogneEnsemble Leones + +2691808Thierry LequenneBelgian tenor / countertenor vocalist and Chorus-MasterNeeds VoteChoeur de Chambre de Namur + +2691809Jean Joo KimClassical violinist.Needs VoteJean JooLa Petite BandeTafelmusik Baroque Orchestra + +2691811Sara KuijkenBelgian classical violinist, born in 1968.CorrectLa Petite Bande + +2691812Jean-Marie MarchalClassical bass / baritone vocalistNeeds VoteJ.-M. MarchalChoeur de Chambre de Namur + +2691813Ninka StulemeijerClassical vocalist.CorrectChoeur de Chambre de Namur + +2691814Igor BettensBelgian Classical clarinetist, composer and conductor +Born Wevelgem April 21st 1965Needs VoteLa Petite Bande + +2691815Thibaut LenaertsClassical tenor.Needs Votehttps://www.facebook.com/thibaut.lenaertsThibault LenaertsLes Arts FlorissantsChoeur de Chambre de Namur + +2691816Myriam SossonSoprano vocalistCorrectChoeur de Chambre de Namur + +2692155Conrad SuskeClassical violinist, born 1958 in Leipzig, GDR (today Germany). He's the son of [a4145516] and [a941942].Needs VoteGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +2692156Frank-Michael ErbenClassical violinist and conductor, born 1965 in Leipzig. He's the son of [a826824].CorrectGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +2692728Grzegorz FitelbergBorn October 18, 1879 in [url=https://pl.wikipedia.org/wiki/Dyneburg]Dyneburg[/url], died June 10, 1953 in Katowice. Polish conductor, composer, and violinist of Jewish origin. He belonged to the group of composers of [url=https://pl.wikipedia.org/wiki/Młoda_Polska]Młoda Polska[/url].Needs Votehttp://en.wikipedia.org/wiki/Grzegorz_FitelbergFitelbergG. FItelbergG. FitelbergGeorge FitelbergGregor FitelbergGregor FittelbergGzregorz FitelbergГ. ФительбергOrkiestra Symfoniczna Filharmonii Narodowej + +2693462The Flip Phillips QuintetNeeds Major ChangesFlip Phillips QuintetBuddy RichRay BrownOscar PetersonHerb EllisFlip Phillips + +2694566Germán ClavijoArgentinian classical violist, conductor and Professor of Viola. Born in La Plata, Argentina. +He trained at [l305416]. He was Principal Viola of the [a=Orquesta Ciudad de Granada] (11/2000-06/2009), and founder & Artistic Director of the [b]Ensamble Instrumental de Granada[/b]. In June 2009, he became a member of the [a=London Symphony Orchestra]. Artistic Director of the Chamber Music Festival '7 Lagos' since September 2011. Music Director of the [b]ALEPH Chamber Orchestra[/b] since 2013. Professor of Viola at the Guildhall School of Music & Drama since 2014.Needs Votehttps://www.facebook.com/german.clavijohttps://twitter.com/germanclavijoukhttps://www.linkedin.com/in/german-clavijo-a25a4166/?locale=en_UShttps://www.youtube.com/channel/UCgfEv_WhiJQUHlnEbU9jsGghttps://open.spotify.com/artist/5MUPs5cwfXEDxh4zgQ2ARjhttps://music.apple.com/fr/artist/german-clavijo/914153953https://www.feenotes.com/database/artists/clavijo-german/https://lso.co.uk/orchestra/players/strings.html#Violashttp://conciertosgrapa.com/BIOSPDF/BIO%20ENSAMBLE%20IINSTRUMENTAL%20DE%20GRANADA%20ENGLISH.pdfhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/1-department-of-strings-harp-and-guitar/1278-german-clavijo/https://filarmonica7lagos.com.ar/2020/?page_id=1150https://vgmdb.net/artist/22824German ClavijoLondon Symphony OrchestraOrquesta Ciudad de GranadaLSO String Ensemble + +2694583Friedemann BreuningerClassical violinistCorrectSüdwestdeutsches Kammerorchester + +2694602Agnieszka LewandowskaClassical violinistNeeds VoteWarsaw Philharmonic Chamber OrchestraOrkiestra Symfoniczna Filharmonii Narodowej + +2694958Salomé HallerClassical soprano vocalistNeeds Votehttp://salome.haller.free.fr/Le Concert SpirituelConcerto VocaleEnsemble La FeniceLa Chapelle Rhénane + +2695006Rebecca Jones (4)Viola player.Needs VoteBecky JonesBecky Jones (2)City Of London SinfoniaThe SixteenThe Callino QuartetArcangeloBenedetti Baroque Orchestra + +2696038Erhard WenigGerman musicianNeeds Votehttps://riasbigband-berlin.de/bilder/RIAS TanzorchesterErhard Wenig Quartett + +2696799Henry McCordEarly jazz trumpeterNeeds VoteMcCordJeanette's Synco JazzersJohn Williams' Synco JazzersHarlem House Rent Stompers + +2696801Bradley BullettEarly jazz trombonistCorrectJeanette's Synco JazzersJohn Williams' Synco Jazzers + +2696803Jeanette's Synco JazzersNeeds Major ChangesJeanette James & Her Synco JazzersJeanette James And Her Synco JazzersJeannette And Her Synco JazzersMary Lou WilliamsJohn Williams (14)Henry McCordBradley BullettRobert Prince (2)Joe Williams (21)Jeanette James (2) + +2696804Robert Prince (2)Early jazz drummerNeeds VoteRobert PriceJeanette's Synco JazzersJohn Williams' Synco Jazzers + +2696806Joe Williams (21)Jazz Banjoist from the 78 eraNeeds VoteJeanette's Synco JazzersJohn Williams' Synco Jazzers + +2696868David GruppAmerican timpanist and percussionist, born 31 March 1898 in Russia and died in December 1975 in the United States.CorrectGruppM. GruppThe Philadelphia OrchestraNBC Symphony Orchestra + +2697209Ludwig StreicherAustrian contrabassist and music pedagogue, born 26 June 1920 in Vienna, Austrian and died 11 March 2003 in Vienna, Austria.Needs Votehttp://www.ludwig-streicher.at/https://en.wikipedia.org/wiki/Ludwig_Streicherhttps://de.wikipedia.org/wiki/Ludwig_Streicherhttps://www.musiklexikon.ac.at/ml/musik_S/Streicher_Ludwig.xmlhttps://www.mdw.ac.at/magazin/index.php/2017/09/29/musizieren-das-kontrabass-konzept-des-ludwig-streicher-1920-2003/L. StreicherStreicherルートヴィヒ・シュトライヒャーWiener PhilharmonikerWiener KammerorchesterHofmusikkapelle Wien + +2697282Eva HahnGerman violinistNeeds VoteMünchner Rundfunkorchester + +2697283Franziska MantelGerman violinist, born 1980 in Frankfurt, Germany.Needs VoteDeutsches Symphonie-Orchester BerlinGewandhausorchester LeipzigNDR Sinfonieorchester + +2697968Edward GardnerConductor and former tenor vocalist, born November 22, 1974. Awarded the Order of the British Empire, OBE, in July 2012. +He has a son with the British classical trumpeter [a=Alison Balsom].Needs Votehttps://en.wikipedia.org/wiki/Edward_Gardner_(conductor)https://www.bach-cantatas.com/Bio/Gardner-Edward.htmConductorGardnerWestminster Cathedral ChoirBergen Filharmoniske OrkesterChapelle Du RoiGloucester Cathedral Choir + +2697969Robert Murray (6)Classical tenor.CorrectThe Monteverdi Choir + +2698331Kenneth StuartUS jazz trombonist from the swing-era. + +Needs VoteHenry Kenneth StewartKen StewartKen StuartKenneth StewartStuartEarl Hines And His OrchestraSammy Stewart's Orchestra + +2698333Frank FredericoAmerican jazz guitarist.Needs VoteFrankie FredericoBen Pollack And His OrchestraBourbon Street All-Star DixielandersLouis Prima & His BandLizzie Miles And Her New Orleans Rhythm BoysLouis Prima And His Gleeby Rhythm Orchestra + +2698767Åsta JørgensenViolinist.Needs VoteBergen Filharmoniske OrkesterHansakvartetten + +2699107Bachorchester Der Dresdner PhilharmonieCorrectDresdner Philharmonie + +2699520Claudio QuintavallaItalian classical trumpeter, active from 1999Needs VoteThe Orchestra Della ToscanaOrchestra Del Maggio Musicale Fiorentino + +2699710Miguel GrobaMiguel Groba GrobaSpanish musician, conductor, chorus master and composer (born in Gulans - Ponteareas (Pontevedra), 1935). +Active musician in 1946 and conductor from 1952 to 1959 of [a3575881]. Also chorus master of [a2763882] and [a5623431] both based in Madrid. +Founder of [a6743551] in 1984 and [a2035962] in 1987, conductor until his retirement in 2000.Needs Votehttp://galegos.galiciadigital.com/es/miguel-groba-grobaM. GrobaM. Grova GrovaMiguel Groba GrobaOrquesta De La Comunidad De MadridCoral Gallega Rosalía De CastroBanda A Union De GulansCoro Santo Tomás De AquinoCoro De La Comunidad De Madrid + +2699837Elisabeth LangAustrian mezzosoprano vocalist (circa 2000s/2020s: opera, operetta, contemporary)Needs Votehttp://kammerorchester.waidhofen.at/solisten/lang_elisabeth.htmlLang ElisabethWiener StaatsopernchorThe Longfield Gospel Choir + +2700288Breeze & ModulateHard Dance DJ project from the United Kingdom.Needs VoteMark Breeze & ModulateMagikstar (2)Mark Brady (2)Mike Stonebank + +2700491Joseph KrechterSaxophonist and clarinetistNeeds VoteJ. A. KrechterJ. A. KretcherJ.A. KrechterJoe KrechterJoe KrechtnerJoe KrectherJoe KretcherJoe KretchnerJos. KrechterJoseph A. KrechterKrechterWoody Herman And His OrchestraBilly May And His OrchestraArtie Shaw And His OrchestraJohn Scott Trotter And His OrchestraLou Bring And His Orchestra + +2700502Alfred BrainAlfred Edwin Brain Jr.British horn player and teacher. Born 24 October 1885 in London, England, UK - Died 29 March 1966 in Los Angeles, California, USA. +He studied at the [l527847] (1898-1901). His first professional job was as first horn with the [a627128] (1901-1904). He then became Principal Horn in the [a8226403] (1904-1921). In 1913, he was appointed Principal Horn of the [a=Royal Philharmonic Society]. When World War I broke out he joined [a=The Scots Guards]. After the war, he worked with several of the London orchestras, including [a855061] and the [a=London Symphony Orchestra] (Principal Horn, 1921-1924). In 1922 he emigrated to the United States. He played in [a=The New York Philharmonic Orchestra] (Co-Principal Horn, 1922-1923) and later, for the [a=Los Angeles Philharmonic Orchestra] (Principal Horn, 1923-1934, 1936-1937, 1943-1944) and [a=The Cleveland Orchestra] (Principal Horn, 1934-1936). He left the LAPO at age 60 to become a full-time studio session player, recording in Hollywood film studios including [l=MGM Studios] and 20th Century Fox. He taught horn at [l305416] from 1904 to 1921. +Brother of [a=Aubrey Brain] and brother-in-law of [a=Marion Brain]. Uncle of [a=Leonard Brain] and [a=Dennis Brain].Needs Votehttps://open.spotify.com/artist/31jjjUsWz2OFjItoTmgA1Jhttps://music.apple.com/za/artist/alfred-brain/458113626https://en.wikipedia.org/wiki/Alfred_Edwin_Brain_Jr.https://www.hornsociety.org/ihs-people/past-greats/28-people/past-greats/611-a-brainhttps://www.thefreelibrary.com/Alfred+Edwin+Brain+Jnr+(1885-1966)+Prince+of+Horn+Players+the...-a0434224365https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/brain-alfred-edwinAl BrainLondon Symphony OrchestraNew York PhilharmonicThe Cleveland OrchestraRoyal Scottish National OrchestraLos Angeles Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenRoyal Philharmonic SocietyThe Scots GuardsQueen's Hall Orchestra + +2700911Gerard GoguenAmerican trumpet player, born 2 February 1925 and died 28 July 2002 in Walpole, New Hampshire.CorrectBoston Symphony Orchestra + +2701505Cassino SimpsonWendell SimpsonAmerican jazz pianist (also vibraphonist). +Born : July 22, 1909 in Chicago, Illinois (or) in Venice, Italy. +Died : March 27, 1952 in Elgin, Illinois. (Mental hospital) + +Simpson played with : Augustus Zinky Cohn, Bernie Young, "Arthur Sims Creole Roof Orchestra", Jabbo Smith ("Jabbo Smith's Rhythm Aces"), Erskine Tate and others.Needs Votehttps://en.wikipedia.org/wiki/Cassino_Simpsonhttps://www.allmusic.com/artist/wendell-cassino-simpson-mn0001342961/biographyhttps://www.worldcat.org/identities/lccn-no93028463/https://adp.library.ucsb.edu/names/109740C. SimpsonCasino SimpsonCass SimpsonCassius SimpsonKing Oliver & His OrchestraBernie Young's Creole Jazz BandArthur Sims And His Creole Roof OrchestraJabbo Smith And His Rhythm AcesStarks Hot FiveJasper Taylor's 'Original Washboard Band' + +2701974Pedro Ribeiro (3)Portuguese classical oboist.Needs VoteGulbenkian OrchestraOpus EnsembleEnsemble Instrumental De Lausanne + +2702083Helmut MebertGerman violinist, born in 1943.Needs VoteHerbert MepertBerliner PhilharmonikerDas Kussmaul-QuartettPhilharmonische Geigen Berlin + +2702548Ferenc TarjániHungarian horn player (* 1938; † 27 December 2017 in Budapest, Hungary).Needs Votehttps://slippedisc.com/2017/12/death-of-a-major-horn-player-79/https://jamesboldin.com/tag/ferenc-tarjani/F. TarjaniF. TarjániFerenc TarjaniFerenc TarjánTarjáni FerencTarjáni FereniLiszt Ferenc Chamber OrchestraMagyar FúvósötösHungarian Wind Quartet + +2702577Raymond AllardClassical bassoon player.Needs VoteBoston Symphony Orchestra + +2704178Dr. Alexander BuhrExecutive producer for classical recordings.CorrectAlexander BuhrDr Alexander Buhr + +2704465John GardyNeeds VoteLittle John GardyThe Jungle BandThe G.A.'s + +2704466Jungle Man (2)Edward HallEdward 'Jungle Man' HallNeeds VoteEdward Hall (5)The Jungle Band + +2704468Derrick MingledolphNeeds VoteD. MingledolphMingledolphThe Jungle Band + +2704469Danny TanksleyNeeds VoteThe Jungle BandThe G.A.'s + +2704529Joe DunnSaxophonistNeeds VoteBarbecue Joe And His Hot Dogs + +2704532Jerome CarringtonJazz musician from the shellac era (piano, alto saxophone, vocal). + +Trained musician from Baltimore, Md. Mostly working as a 'pitman' in Chicago theatre orchestras, e.g. with Doc Cook (1926-7), Erskine Tate (1927, 1930-3) and Dave Peyton (1929). While with Cook, played at The Nest (name later changed to Apex Club) in a trio with Jimmie Noone (clarinet) and Zutty Singleton (drums). Recorded with Half Pint Jaxon (Chicago, 1933), Washboard Rhythm Kings (Camden, N.J., 1936) and probably Cook and His Dreamland Orchestra (Chicago, December 1926). Still living and playing in Washington, D.C., in 1965 (from "Deep South Piano" by Karl Gert zur Heide)Needs VoteWashboard Rhythm KingsDoc Cook And His 14 Doctors Of SyncopationFrankie Jaxon And His Hot Shots + +2704533Dash BurkisDrummerNeeds VoteBarbecue Joe And His Hot Dogs + +2704534Bill Newton (3)Credited for playing bass and tuba as a member of [a=Doc Cook And His 14 Doctors Of Syncopation] and [a=Cook's Dreamland Orchestra] for recordings from the shellac period.Needs VoteB. NewtonWilliam NewtonJimmie Noone's Apex Club OrchestraDoc Cook And His 14 Doctors Of SyncopationCook's Dreamland Orchestra + +2704535Maynard SpencerJazz pianistNeeds VoteBarbecue Joe And His Hot Dogs + +2704600Edward McNeilJazz drummer from the Swing eraNeeds VoteAndy Kirk And His Clouds Of JoyJohn Williams' Memphis Stompers + +2704601William DirvinBanjo and guitar player from the Swing periodNeeds VoteBill DirvinWilliam DervinAndy Kirk And His Clouds Of JoyJohn Williams' Memphis Stompers + +2705592Mac McCorquodaleNeeds VoteMac MacquodaleMac MacquordaleMcQuordaleWoody Herman And His Orchestra + +2705958Richard HarlowAmerican cellist, born in Dearborn, Michigan.Needs VoteThe Philadelphia Orchestra + +2706409Sebastian GaedeGerman cellist, born in Hamburg.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgThe Chamber Orchestra Of EuropeEuropean Union Youth OrchestraNDR SinfonieorchesterHanseCompagnieNDR Elbphilharmonie Orchester + +2706467Mati LukkClassical double bass player. +ERSOs aastail 1981–1990 ja alates 2000, +kontrabassirühma abikontsertmeister 1985–1991, +kontrabassirühma kontsertmeister alates 2000 + +Mati Lukk õppis Tallinna Muusikakeskkoolis tšellot Laine Leichteri juhendamisel ja alates 1974. aastast kontrabassi Kaupo Olti kontrabassiklassis. Ta lõpetas Tallinna Muusikakeskkooli (1979) ja seejärel Tallinna Riikliku Konservatooriumi (praegune Eesti Muusika- ja Teatriakadeemia, 1984), mõlemad Kaupo Olti juhendamisel. + +Mati Lukk on pälvinud diplomi üleliidulisel kontrabassimängijate konkursil Petroskois (1984). Talle on omistatud noorte lavajõudude I preemia (1985), Soome Sümfooniaorkestrite Ühingu (Suomen Sinfoniaorkesterit ry) kuldne teenetemärk (1992) ja Eesti Kultuurkapitali helikunsti sihtkapitali aastapreemia kontserttegevuse eest (2002). + +Lisaks ERSOle on Mati Lukk töötanud Eesti Raadio kammerorkestris (1980–1983) ja Soomes Turu Linnaorkestris (rühma abikontsertmeistrina, 1991–99) ning aastast 2001 ka Eesti Muusika- ja Teatriakadeemias õppejõuna (sügisest 2015 dotsendina). + +Mati Lukk on mänginud Põhjamaade Sümfooniaorkestris, Malmö Sümfooniaorkestris, Kuopio Linnaorkestris, Le Concert Olympique’is, Hortus Musicuse Akadeemilises Orkestris, Tallinna Kammerorkestris, Pärnu Linnaorkestris jm. Ta on teinud kaasa Barocco Revaliensise, Turku Ensemble’i, Corelli Consorti , Corelli barokkorkestri, Tallinna barokkorkestri, NYYD Ensemble’i ja YXUS Ensemble’i koosseisus. + +Mati Lukk on korduvalt soleerinud ERSO ees (Tubina Kontrabassikontsert, dirigendid Peeter Lilje, Vello Pähn, Arvo Volmer, 2002; Kussewitzky Kontrabassikontserdi esiettekanne Eestis, dirigent Toomas Vavilov, 2011; Rautavaara kontrabassikontserdi “Angel of Dusk” esiettekanne Eestis), Turu Linnaorkestri ees (Tubina Kontrabassikontsert, dirigent Paul Mägi) ja Eesti Raadio estraadiorkestri ees (Dragonetti Kontrabassikontsert A-duur, dirigent Peeter Saul). Esimese sooloõhtu andis Mati Lukk 1984. aastal koos pianist Signe Hiis-Kübaraga, tema ansamblipartneriteks on olnud ka Nata-Ly Sakkos, Lea Leiten, Kairi Vavilov ja Reet Ruubel. + +Aastail 2001–03 oli ta üks Hiiumaa Kammermuusikapäevade organiseerijaid. Aastail 2004 ja 2014 korraldas ta kontrabassimuusika päevi “Ludvig Juht 110” ja “Ludvig Juht 120”.Needs VoteEstonian National Symphony OrchestraNYYD EnsembleEstonian Festival Orchestra + +2706786Ruth RowlandsClassical cellistNeeds VoteRoyal Scottish National Orchestra + +2706787Kevin Price (3)Trumpet playerNeeds VoteRoyal Scottish National Orchestra + +2706788Jacqueline SpeirsBritish classical violinistNeeds VoteJacqueline SpiersRoyal Scottish National Orchestra + +2706789John Harrington (7)ViolistNeeds VoteJohn HarringtonRoyal Scottish National OrchestraCantilena + +2706791Michael Rae (2)British classical bassistNeeds VoteRoyal Scottish National Orchestra + +2706792Isabel GourdieBritish classical violinistNeeds VoteIsabel GourdleRoyal Scottish National Orchestra + +2706793Charles Floyd (2)Classical hornistNeeds VoteRoyal Scottish National OrchestraCantilena + +2706794Gerard DohertyClassical violinistNeeds VoteRoyal Scottish National Orchestra + +2706796Clare Johnson (2)Classical oboistNeeds VoteRoyal Scottish National OrchestraScottish National Orchestra Wind Ensemble + +2706798Barbara PatersonClassical violinistNeeds VoteRoyal Scottish National Orchestra + +2706799Susan BlasdaleClassical violist.Needs VoteRoyal Scottish National Orchestra + +2706803William Paterson (2)Classical cellistNeeds VoteRoyal Scottish National Orchestra + +2706804Gail DigneyClassical violinistNeeds VoteRoyal Scottish National Orchestra + +2706805Philip HoreTuba playerNeeds VoteRoyal Scottish National Orchestra + +2706806Alison McIntyreClassical violinistNeeds VoteRoyal Scottish National OrchestraCantilena + +2706807Wanda WojtasinskaClassical violinistNeeds VoteRoyal Scottish National OrchestraCantilena + +2706808Martin GibsonClassical timpanistNeeds VoteRoyal Scottish National Orchestra + +2706809Alan StarkPercussionistNeeds VoteRoyal Scottish National Orchestra + +2706810Andrew Martin (6)Violinist.Needs VoteRoyal Scottish National OrchestraCantilena + +2706812Peter Hunt (4)CellistNeeds VoteRoyal Scottish National Orchestra + +2706814Claire Dunn (2)British classical violistNeeds VoteRoyal Scottish National Orchestra + +2706816Elspeth RosePercussionistNeeds VoteRoyal Scottish National OrchestraCults Percussion Ensemble + +2706817Jeremy Fletcher (2)CellistNeeds VoteFletcherRoyal Scottish National Orchestra + +2706819Gordon Bruce (2)Classical double bassistNeeds VoteRoyal Scottish National Orchestra + +2706820David McClenaghanBritish hornistNeeds VoteRoyal Scottish National Orchestra + +2706821Lyn ArmourCellistNeeds VoteRoyal Scottish National Orchestra + +2706822Janet RichardsonBritish flutistNeeds VoteRoyal Scottish National Orchestra + +2706823John Clark (22)Scottish double bassist from Rutherglen. Member of Royal Scottish National Orchestra since 1987.Needs Votehttp://www.rsno.org.uk/info/john-clark/Royal Scottish National Orchestra + +2706824Marcus PopeClassical trumpet playerNeeds VoteRoyal Scottish National Orchestra + +2706826Pauline DowseCellistNeeds VoteRoyal Scottish National Orchestra + +2706827David AmonClassical violist.Needs VoteRoyal Scottish National Orchestra + +2706828Bryan FreeTrombonistNeeds VoteRoyal Scottish National Orchestra + +2706829John CushingEnglish classical clarinetist. He was born in London in 1949 and grew up in Liverpool.Needs VoteRoyal Scottish National OrchestraScottish National Orchestra Wind Ensemble + +2706831Rhona MackayBritish harp and clarsach player.Needs VoteR. MacKayR. MackayRhona Mac KayRhona MacKayRhona McKayRoyal Scottish National OrchestraThe Whistlebinkies + +2706832Stephen WestClassical oboe and cor anglais player.Needs VoteRoyal Scottish National Orchestra + +2706834Jane Reid (2)ViolinistNeeds VoteRoyal Scottish National OrchestraCantilena + +2706835Miranda Phythian-AdamsCellist +Miranda was born in Oxford, UK and grew up in Leicester, where she played Principal Cello in the Leicestershire schools Symphony Orchestra. After leaving school in 1984, she went to study cello with Derek Simpson at The Royal Academy of Music where she received LRAMs for teaching in both cello and piano, The Professional Certificate (Hons) and The Advanced Certificate for post graduate study. She also received a Principal's Discretionary Award for work she developed with children with disabilities. + +On leaving The Royal Academy of Music, she started to work as a freelancer with various British Orchestras including The Halle and BBC Welsh Symphony Orchestra. In 1989 she obtained a position in the Royal Scottish National Orchestra where she remained for ten years, being promoted to assistant principal cellist (number 3) after five years. She was also involved with the Royal Scottish National Orchestra's educational programme, mainly working with children. + +While in Glasgow, she gave regular recitals and played in the Allander Ensemble, a chamber group made up of principal members of the orchestra, and in the Paragon Ensemble which was dedicated to playing Contemporary Music. She played as soloist with various amateur and semi professional orchestras. + +In 1999 Miranda moved to Portugal. She played regularly with Portuguese orchestras, in particular the Orquestra Nacional do Porto and the Remix Ensemble. She maintained a busy chamber music schedule particularly with the Jacob Quartet. With this string quartet she organised and participated in a cycle of concerts at the Rivoli Teatro Municipal do Porto dedicated to chamber music. She performed regularly with this group all over Portugal, notably at the Casa da Música. Apart from her work with the Jacob Quartet she performed with popular Portuguese jazz and fado artists such as Pedro Abrunhosa, Misia and Andre Sahbib and worked with various groups and ensembles as a freelancer. + +She is a member of the Sábia String Quartet which has a successful following both in Portugal and also in Austria, where the quartet enjoys an annual concert tour. + +Alongside performance, she has always enjoyed helping children and organised and participated in various educational projects for children in different Porto hospitals and with children with disabilities in their special school. + +She had an intense cello and piano teaching schedule formally at Porto's German school and later at the music school Bando dos Gambozinos, at Oporto British School and at the new Escola de Rock da Academia de Artes "Jahas".Needs VoteMiranda Phythiam-AdamsRoyal Scottish National Orchestra + +2706836Paul Sutherland (3)British classical bassistNeeds VoteRoyal Scottish National Orchestra + +2706837Marion Wilson (3)Classical violinistNeeds VoteRoyal Scottish National Orchestra + +2706838Kenneth BlackwoodClassical hornistNeeds VoteRoyal Scottish National Orchestra + +2706840Allan Geddes (2)BassoonistNeeds VoteAlan GeddesRoyal Scottish National OrchestraCantilenaScottish National Orchestra Wind Ensemble + +2706841David Inglis (2)Double bass player.Needs VoteRoyal Scottish National OrchestraCantilena + +2706842Nigel Mason (3)Classical violinistNeeds VoteRoyal Scottish National OrchestraCantilena + +2706844Alastair SinclairBritish trombonistNeeds VoteAlistair SinclairGabrieli ConsortRoyal Scottish National Orchestra + +2706845Helen BrewBritish flutistNeeds VoteRoyal Scottish National Orchestra + +2706846Christopher FfoulkesBritish classical violinistNeeds VoteChristopher FoulkesRoyal Scottish National Orchestra + +2706847Robert Mitchell (7)Credited as double bassist for the Royal Scottish National OrchestraNeeds VoteRoyal Scottish National Orchestra + +2706848John Logan (3)Horn player and conductor. +He played in the City of Birmingham Symphony Orchestra from 1989 to 1994, was then appointed associate principal horn at the Royal Scottish National Orchestra and is now head of brass at the Royal Conservatoire of Scotland since 2011.Needs Votehttp://www.rcs.ac.uk/staff/john-logan/http://uk.linkedin.com/pub/john-logan/33/3b4/232http://www.linnrecords.com/artist-john-logan.aspxLoganCity Of Birmingham Symphony OrchestraRoyal Scottish National Orchestra + +2706849John Grant (13)Classical flutistNeeds VoteRoyal Scottish National Orchestra + +2706850Julian Roberts (2)BassoonistNeeds VoteRoyal Scottish National OrchestraBBC Scottish Symphony Orchestra + +2706851Penny DicksonBritish classical violinistNeeds VoteRoyal Scottish National Orchestra + +2706852Lance Green (2)Lance Green is an English-born trombonist living and working in Scotland. There are hundreds of recordings by the Royal Scottish National Orchestra available for purchase, mainly from the Naxos Label. Lance Green appears in many of these as principal trombone. The most notable recording featuring Lance with the Royal Scottish National Orchestra is Mahler's 3rd Symphony in which he plays the trombone solo. Green also appears on the American, Summit Records release Big Band Reflections of Cole Porter, he recorded with the Jazz Orchestra of the Delta while he was on a years sabbatical from the RSNO in Memphis, TN. As well as teaching the trombone at university level Lance contributes to the education of younger trombonists by attending the annual "side-by-side" event arranged between the Royal Scottish National Orchestra and the West of Scotland Schools Orchestra Trust. He also participates in various Brass Masterclasses for the same oraganisation. He spent a yer in the U.S. as the professor of trombone at the University of Memphis. Needs Votehttps://en.wikipedia.org/wiki/Lance_GreenRoyal Scottish National OrchestraJazz Orchestra Of The Delta + +2706853Michael Rigg (2)Classical violinistNeeds VoteRoyal Scottish National Orchestra + +2706855Nicola McWhirterBritish classical violistNeeds VoteRoyal Scottish National Orchestra + +2706856William ChandlerClassical violinistNeeds VoteBill ChandlerRoyal Scottish National Orchestra + +2706857Caroline ParryBritish classical violinistNeeds VoteRoyal Scottish National Orchestra + +2706858Neil GrayViola player.Needs VoteRoyal Scottish National Orchestra + +2706860David Davidson (7)BassoonistNeeds VoteRoyal Scottish National Orchestra + +2706861Katherine WrenBritish classical violist and liner notes authorNeeds VoteRoyal Scottish National Orchestra + +2706862Geoffrey ScordiaBritish cellistNeeds VoteRoyal Scottish National Orchestra + +2706863Fiona WestBritish classical violistNeeds VoteRoyal Scottish National Orchestra + +2706865David YellandClassical violinistNeeds VoteRoyal Scottish National Orchestra + +2706866Michael HuntrissClarinetistNeeds VoteRoyal Scottish National Orchestra + +2706869Rosalin LazaroffClassical violinistNeeds VoteRoyal Scottish National Orchestra + +2706870Ian BuddBritish violistCorrecthttps://www.linkedin.com/in/ian-budd-25215635/Royal Scottish National Orchestra + +2707287Itamar GolanIsraeli classical pianist, born 3 August 1970.Correct1, 6GolanMargolanイタマール・ゴランイタマール・ゴラン + +2707530Hetty SnellClassical cellistNeeds VoteHester SnellCity Of Birmingham Symphony Orchestra + +2708451Rainer JohannsenAustrian bassoonistNeeds Votehttp://www.austriabarockakademie.at/instructors/rainer-johannsenMusica Antiqua KölnConcerto KölnLa Petite BandeIl Gardellinomoderntimes_1800Das Neue OrchesterNeue Hofkapelle MünchenL'arte Del MondoEcho Du DanubeBarockorchester caterva musica + +2708452Anke BöttgerViolist.Needs VoteMusica Antiqua Köln + +2708797Árpád SándorHungarian-American pianist and music critic, born 1896 and died 1972. He was the cousin of [a1357413]. Needs Votehttps://adp.library.ucsb.edu/names/106321A. SandorArpad SandorArpad SándorArpas SandorArpád SándorSándor + +2709527April AmesAmerican female vocalist. +Mother of [a=Sean Hamilton (4)].Needs Votehttps://www.imdb.com/name/nm3288938/https://secondhandsongs.com/artist/108535Harry James And His Orchestra + +2710018Dorothea HemkenGerman violist, born 1 May 1969 in Halle, GDR (today Germany).Needs VoteGewandhausorchester LeipzigOrchester der Bayreuther Festspiele + +2712069Gary LefebvreAmerican tenor saxophonist, flutist and composer. + +Born February 18, 1939 +Died August 7, 2013 + +Originally from Ohio, Lefebvre grew up in southern California. Was part of the San Diego Symphony in 1956. He played mainly sideman among west coast jazz units during the late 1950`s through 1960`s. Recorded two albums as leader in the 1980`s.Needs Votehttps://en.wikipedia.org/wiki/Gary_LefebvreG. LeFebvreG.C. LefebvreGary LeFebvreGary LebFevreShorty Rogers And His GiantsShorty Rogers QuintetGary Lefebvre Quartet + +2712547Hans GieselerClassical violinist.CorrectBerliner Philharmoniker + +2712552Marie-Christine WitterkoerClassical string instrumentalistNeeds VoteM.C. WitterkoerOrchestre De ParisLes Talens Lyriques + +2712555Michael Schmidt-CasdorffClassical travers flautistNeeds Votehttps://www.hmtm.de/de/?option=com_content&view=article&id=592&Itemid=172Michael Schmidt-CasdorfConcentus Musicus WienCamerata Of The 18th CenturyCantus CöllnOrchestra Of The 18th CenturyEnsemble 1700Neue Düsseldorfer HofmusikMünchner Cammer-MusicBarockorchester Münster + +2713539Фёдор ГлинкаФёдор Николаевич ГлинкаFyodor Nikolaevich Glinka - russian poet, essayist, novelist, officer, member of the Decembrists Societies. +Born: June 19 (8 O.S.), 1786, Sutoki, Smolensk Governorate, Russian Empire. +Died: February 23 (11 O.S.), 1880, Tver, Russian Empire. +[b]Note:[/b] +Please do not confuse with the Russian composer [url=https://www.discogs.com/ru/artist/835128-Mikhail-Ivanovich-Glinka]Mikhail Glinka[/url].Needs Votehttps://ru.wikipedia.org/wiki/Глинка,_Фёдор_НиколаевичF. GlinkaFjodor GlinkaFédor GlinkaГлинкаФ. ГлинкaФ. ГлинкаФ. Глинки + +2713602Masha IakovlevaViolin playerNeeds VoteMaria IakovlevaNieuw Sinfonietta AmsterdamRadio Filharmonisch OrkestNederlands Philharmonisch Orkest (2) + +2713603Gerard van AndelDutch oboe playerNeeds VoteNederlands Blazers EnsembleNieuw Sinfonietta AmsterdamRadio Filharmonisch Orkest + +2713604Derck LittelCello playerNeeds VoteDerk LittelNieuw Sinfonietta AmsterdamConcertgebouw Chamber Orchestra + +2713605Herman DraaismaDutch clarinet player and conductor. Born 1959 in Bolsward, The Netherlands.Needs Votehttps://www.linkedin.com/in/herman-draaisma-96199917https://www.orkest.nl/muzikant/herman-draaismahttps://www.facebook.com/herman.draaismaNetherlands Chamber OrchestraNieuw Sinfonietta AmsterdamNederlands Philharmonisch Orkest (2) + +2713606Helma LeenhoutsDutch violin playerNeeds VoteNieuw Sinfonietta Amsterdam + +2713607Daniel RaiskinViolist, violinist and conductor. Principal conductor of the [a1331152] since 2005.Needs Votehttp://danielraiskin.com/enDaniel RaiskineRaiskinNieuw Sinfonietta AmsterdamBelcanto Strings + +2713608Nicoline van SantenViolinist.Needs VoteNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +2713610Karen McConemyViola playerNeeds VoteKaren McConomyNieuw Sinfonietta AmsterdamMinnesota Contemporary Ensemble + +2713612Liesbeth NiestenDutch flute player who later changed career path and became mental and personal coachNeeds Votehttps://www.linkedin.com/in/liesbeth-niesten-560b1325Nieuw Sinfonietta Amsterdam + +2713613Frances ThéViolinist & Liner Notes TranslatorNeeds VoteFrances TheNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +2713614Aljona TsoiViolin playerNeeds VoteNieuw Sinfonietta Amsterdam + +2713615Eva MalmbomClassical violist.Needs VoteBournemouth Symphony OrchestraNieuw Sinfonietta Amsterdam + +2713616Anneke HogenstijnDouble bass player who turned manager in the field of arts. In 1996 she started as programmer of de Kleine Zaal at [l290290]. In 2003 she was appointed as co-director of [l290290] and in 2007 artistic director. As of February 1, 2011 she has resigned (for personal reasons).Needs Votehttps://www.linkedin.com/in/anneke-hogenstijn-366b7a6Nieuw Sinfonietta Amsterdam + +2713617Brigitte KraamwinkelViolin playerNeeds VoteNieuw Sinfonietta Amsterdam + +2713619Clara JamesViolin playerNeeds VoteNieuw Sinfonietta Amsterdam + +2713620Guido Müller (2)Dutch violin player, violin teacher and conductor.Needs Votehttps://www.linkedin.com/in/guido-müller-81907ba7Guido MullerNieuw Sinfonietta AmsterdamRadio Filharmonisch Orkest + +2713621Liora Ish-HurwitzViolin playerNeeds VoteNieuw Sinfonietta Amsterdam + +2713622Barbara CiannameaBarbara Ciannamea-Monté Rizzi +Violin player + +She is originally from Tenero Contra (in the canton of Ticino, in the district of Locarno, Switzerland). He studied with T. Major graduating in 1995 at the "G. Verdi" Conservatory in Milan. It was then perfected with Maestro S. Accardo at the Accademia Stauffer in Cremona and with the teachers P. Vernikov, Z. Gilels and I. Gruber at the Music School of Fiesole and in Portogruaro. He obtained a concert diploma at the Conservatoire National Supérieur de Musique in Lyon, he also attended master classes with the masters R. Ricci, F. Gulli. Needs VoteBarbara Ciannamea Monte RizziBarbara Ciannamea, Monte RizziBarbara Ciannamea-Monté RizziBarbara CinnameaBarbara Ciannamea-Monté RizziNieuw Sinfonietta AmsterdamOrchestra Della Radio Televisione Della Svizzera ItalianaQuartetto Energie Nove + +2713623Walter van EgeraatDouble bass player.Needs Votehttps://www.linkedin.com/in/walter-van-egeraat-87b49215/W. van EgeraatMetropole OrchestraNieuw Sinfonietta AmsterdamRadio Filharmonisch Orkest + +2713624Marinus KomstDutch timpanist and percussionist. Grandson of trumpeter [a10678015]. +He died 7 May 2025 at the age of 72.Needs VoteConcertgebouworkestNieuw Sinfonietta AmsterdamLes Musiciens Du LouvreFrysk OrkestNederlands Fanfare Orkest + +2713625Els GoossensViola player.Needs VoteNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaNew Dutch Academy + +2713626Myrte van WesteropDutch violin player.Needs VoteNieuw Sinfonietta AmsterdamResidentie Orkest + +2713627Jozef SzafranskiDouble bass playerNeeds Votehttps://www.linkedin.com/in/jozef-szafranski-a94573a9/nlNieuw Sinfonietta Amsterdam + +2713628Harry Vorselen(Former) Dutch horn player who, due to professional injury, changed career path and now runs a vineyard in Thorn, Limburg.Needs VoteH. VorselenNieuw Sinfonietta AmsterdamFlexible Brass + +2713630Ingrid NissenDutch oboe playerNeeds VoteNieuw Sinfonietta Amsterdam + +2713631Ellen VergunstDutch flute playerNeeds Votehttps://www.orkest.nl/muzikant/ellen-vergunstNetherlands Chamber OrchestraNieuw Sinfonietta AmsterdamNederlands Philharmonisch Orkest (2) + +2713632Nikola VasiljevViolin playerNeeds VoteNikola VasilievNieuw Sinfonietta AmsterdamOrquestra Sinfónica do Porto Casa da Música + +2713633Lisa DomnischClassical violinistNeeds VoteCollegium VocaleNieuw Sinfonietta AmsterdamThe Amsterdam Baroque Choir + +2715526Lois DeppeEarly jazz vocalist and band leaderNeeds Votehttps://adp.library.ucsb.edu/names/109421Louis DeppeFletcher Henderson And His OrchestraDeppe's Serenaders + +2716298Roman BernhartClassical viola player.CorrectWiener SymphonikerEOS-Quartett Wien + +2716299Christian BlaslAustrian classical violinist, born in Vienna.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerTonkünstler OrchestraEOS-Quartett Wien + +2716300Christoph StradnerAustrian classical cellist, born 1970 in Vienna.Correcthttp://christophstradner.com/StradnerWiener SymphonikerAltenberg Trio Wien + +2716301Andreas PokornyAustrian classical cellist, born in Vienna.Needs VoteWiener SymphonikerEOS-Quartett Wien + +2717604John Williams (41)Classical countertenor vocalist.Needs VoteThe Monteverdi Choir + +2717798Waldemar LinderAmerican horn player.Needs VoteWally LinderThe Cleveland OrchestraMinneapolis Symphony OrchestraThe Horn Club Of Los Angeles + +2718272Dick Carter (2)American jazz bassistNeeds VoteGil Evans And His OrchestraThe John LaPorta Quartet + +2718603David Stewart (13)Canadian violin player Needs Votehttp://www.summermusicingalway.com/smg-faculty.htmlBergen Filharmoniske Orkester + +2718789Alf PörschmannGerman baritone vocalistNeeds VotePörschmannRundfunkchor LeipzigThomanerchor + +2719983Andrew Smith (30)Retired classical timpanist. +He worked with the [a=Guildford Philharmonic Orchestra], the Scottish Ballet, [a=The Welsh National Opera Orchestra] and the [a=Bournemouth Symphony Orchestra] before joining the [a=Philharmonia Orchestra] for which he was principal timpanist for 42 years. He retired in spring 2015.Needs Votehttps://www.rcm.ac.uk/percussion/professors/details/?id=02478http://orchestral.premier-percussion.com/artists/andy-smithhttps://slippedisc.com/2015/05/london-timpanist-retires-after-singular-42-years/Philharmonia OrchestraBournemouth Symphony OrchestraThe Welsh National Opera OrchestraGuildford Philharmonic Orchestra + +2720011Bradski (2)Brad TurnerUK electronic dance music producer from Devon, England +Style: HardcoreCorrecthttp://soundcloud.com/dj-bradskihttps://www.facebook.com/pages/Bradski/467502243291942Brad Turner (6) + +2720490Sali-Wyn RyanClassical violinistNeeds VoteS.Wyn RyanSali - Wyn RyanRoyal Philharmonic Orchestra + +2720551Ludmila MusterRussian harpist, born in Moscow, Russia.Needs VoteBamberger SymphonikerБольшой Симфонический Оркестр Всесоюзного РадиоNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +2720663Nitzan KanetyNitzan Canetty (or Kanety) is an Israeli classical violinist and session musician. Kanety is the first violinist of the [a=Israel Philharmonic Orchestra]. In popular and mizrahi music he has played with [a=The Idan Raichel Project].Needs Votehttp://philosophy.mouse.co.il/writers.asp?s=648http://pizmonet.co.il/wiki/%D7%A0%D7%99%D7%A6%D7%9F_%D7%A7%D7%90%D7%A0%D7%98%D7%99Nitzan CanettiNitzan CanettyNitzan Kanettiניצן קאנטיניצן קינטיניצן קנאטיניצן קנטאיניצן קנטיIsrael Philharmonic OrchestraThe Strings Of The Israel Philharmonic Orchestraשמיניית מאיה בלזיצמן + +2722484Walter John McTigertWalter John McTigertCalifornia, USA raised classical contrabassist, born on September 11, 1980, but in 2023 based in Uppsala, Sweden. + +He is married to [a2071826].Needs Votehttps://www.instagram.com/tuckefresh/https://se.linkedin.com/in/walter-mctigert-20273413bMr. Walter John McTigertWalter McTigertSveriges Radios SymfoniorkesterOslo Camerata + +2723381Joseph ZwilichAmerican violinist, born in 1919 and died in 1979. Married to [a1247021] ([a2162435]).Needs Votehttps://www.nytimes.com/1979/06/29/archives/joseph-zwilich-53-a-violinist-with-the-metropolitan-opera.htmlThe Cleveland Orchestra + +2723524Préda LászlóClassical trumpeterNeeds VoteLászlo PredaLászló PrédaLiszt Ferenc Chamber Orchestra + +2723977Holger FalkGerman baritone.Needs Votehttp://www.holgerfalk.com/https://de.wikipedia.org/wiki/Holger_FalkRegensburger Domspatzen + +2724166Erdey PéterErdei Péter Hungarian hornist, born in 1975.Needs VoteErdei PéterPeter ErdeiPéter ErdeiMahler Chamber OrchestraORF Radio-Symphonieorchester Wien + +2724513Hans-Peter HofmannViolinistNeeds VoteKurpfälzisches Kammerorchester MannheimLes DissonancesDeutsches Solisten EnsembleEnsemble Plus + +2725183Miriam HartmanClassical violist.Needs Voteהרטמן מריםמרים הרטמןIsrael Philharmonic Orchestra + +2725184Israel KastorianoTurkish-born, Israeli pianist.Needs Votehttp://www.bach-cantatas.com/Bio/Kastoriano-Israel.htmIsrael Philharmonic Orchestra + +2725185Peter MarckClassical double bassist.Needs VoteIsrael Philharmonic Orchestra + +2725186Menahem BreuerViolin and viola player.Needs Votehttps://www.rosenblumviolins.net/en/node/45Israel Philharmonic OrchestraIsrael Piano Trio + +2726536Diane LacelleClassical woodwind instrumentalistNeeds VoteLes Violons du RoyEnsemble De La Société De musique Contemporaine Du QuébecOrchestra Internazionale d'Italia + +2727448Claire McInerneyBritish saxophonist, clarinetist, flutist, based in LondonCorrecthttps://www.clairemcinerney.co.uk/https://web.archive.org/web/20160410143627/http://clairemcinerney.info/home.htmlhttps://twitter.com/maccasaxhttps://uk.linkedin.com/pub/claire-mcinerney/62/49/3a6Claire McKernernyCollegium Vocale + +2728973Kuan Cheng LuClassical violinist who has played in the New York Philharmonic since 2004.Needs Votehttps://nyphil.org/about-us/artists/kuan-cheng_luKuan LuKuan-Cheng LuNew York PhilharmonicOberlin College Conservatory OrchestraThe Oberlin Contemporary Music EnsembleMusic Academy Of The WestThe Manhattan School Of Music Chamber Sinfonia + +2728975Hyunju LeeSouth Korean violinist.Needs VoteNew York PhilharmonicNew York Chamber ConsortAvatar StringsStone Hill Strings + +2728976Quan GeClassical violinistNeeds VoteNew York PhilharmonicNew York Chamber Consort + +2728978Wei YuCellist, born in Shanghai, China. Based in the USA.Needs Vote魏羽New York PhilharmonicDetroit Symphony Orchestra + +2729341Raul PinillosRaúl Pinillos QuirogaSpanish cellist.Needs VoteRaúl PinillosCamerata Del PradoOrquesta Sinfónica de RTVE + +2729773Günter FederselAustrian flutist, born 24 July 1959 in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Wiener CollageHofmusikkapelle WienEnsemble "11" + +2730384Nolan E. MillerAmerican horn player, born in 1939 and died 7 April 2013 in Philadelphia, Pennsylvania.CorrectNolan MillerThe Philadelphia Orchestra + +2731772Peeter SarapuuEstonian classical bassoonist, concertmaster and teacher, born August 29, 1963 in Kiviõli.Needs VoteEstonian National Symphony OrchestraNYYD EnsembleEstonian Festival Orchestra + +2732297Rein RoosEstonian percussionist, born March 30, 1952 in Tapa.Needs VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +2732301Helen PoolmaSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +2732302Kaupo OltDouble bass player.Needs VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +2732304Andrus TorkViolinist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber Orchestra + +2733598Catherine Leroy (2)French double bassist.CorrectOrchestre National De L'Opéra De Paris + +2733602Arnaud LeroyFrench clarinetist.Needs Votehttps://www.imdb.com/name/nm8322118/Orchestre Des Concerts LamoureuxOrchestre De Paris + +2733766Lachlan O'DonnellClassical violinistNeeds VoteSveriges Radios Symfoniorkester + +2733913Philippe PouvereauFrench violinistNeeds VotePh. PouvereauPhilippe PouvreauPhilippe PouvrostPouvereauOrchestre National De France + +2733961Frank SaraccoTrombonist with several orchestrasCorrectF. SaraccoFrank SaracoFrank SaroccoFrank SarraccoFrank SarraciFrank SarracoFrankie SaraccoSaraccoSy Oliver And His OrchestraWarren Covington And His OrchestraHenry Jerome And His Orchestra + +2734284Jonathan KarolyCellistNeeds VoteLos Angeles Philharmonic Orchestra + +2735750Kay ImmerClassical trumpeter.Needs VoteMusica Antiqua Köln + +2735752Daniel SpektorClassical violin, viola & fiddle player.Needs VoteHuelgas-EnsembleMusica Antiqua KölnChursächsische Philharmonie + +2736124Alphonso TrentAmerican pianist and band leader, born August 24, 1905 in Fort Smith, Arkansas, died October 14, 1959 in the same town.Needs Votehttps://adp.library.ucsb.edu/names/111760A. TrentAlphonse TrentTrentAlphonso Trent And His Orchestra + +2736468Kristina LignellSvea Kristina LignellSwedish classical violist, living in Vällingby, born on December 26, 1957. + +She grew up in Roslagen.Needs VoteSveriges Radios Symfoniorkester + +2737327Michael WhightBritish clarinet/bass clarinet orchestral player, soloist, chamber musician, recording engineer & producer, conductor, and educator. +He studied at the [l290263] (1980-1984). Through the 1990s (July 1989 - July 1999), he was the principal clarinettist for the [a=Philharmonia Orchestra]. Subsequently, he led clarinet for a number of orchestras, including the [a=Northern Sinfonia] (March 2001 - March 2003), before taking a position as Principal Clarinet for the [a=Royal Philharmonic Orchestra] (June 2003 - March 2011). Conductor and woodwind coach at the [b]Capital Philharmonic Orchestra[/b]. Professor of Clarinet at the [l1379071] since September 2000.Needs Votehttps://www.michaelwhight.com/https://www.youtube.com/userhttps://www.facebook.com/audiorecordings/?notif_t=page_invite_accepted&notif_id=1461079566353744https://www.linkedin.com/in/whight-michael-95141143/https://en.wikipedia.org/wiki/Michael_Whighthttps://www.trinitylaban.ac.uk/study/teaching-staff/michael-whight/https://www.bsfo.org/michael-whighthttp://www.beyondstagefright.com/michael-whight/https://crosseyedpianist.com/2020/02/27/meet-the-artist-michael-whight-clarinettist/https://www.imdb.com/name/nm2764289/Royal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraNorthern SinfoniaHampshire County Youth Orchestra + +2737508William HectorAmerican violinist.Needs VoteBill HectorWilliam J. HectorChicago Symphony Orchestra + +2739223Calvin StricklandAmerican trumpeter Needs VoteBenny Carter And His Orchestra + +2739230Julius WatsonJazz trombonistNeeds VoteJulius "Hawkshaw" WatsonJulius "Hawshaw" WatsonBuddy Johnson And His OrchestraCootie Williams And His OrchestraThe Bee Jays + +2739740Ute FesquetGerman producer, mainly for classical releases. +Joined [l7703] in 1997, and left in 2019 to become a free-lance producer, after having been its vice president of A&R for many years.Needs Vote + +2740188Felix WinternitzAmerican violinist and composer, born 18 May 1872 in Austria-Hungary and died 1948 in the United States.Needs VoteWinternitzBoston Symphony Orchestra + +2740449Catherine DussautFrench classical soprano vocalistCorrectLes Arts Florissants + +2742159Indrek VauEstonian classical trumpeter, born April 9, 1971 in Tallinn.Needs VoteEstonian National Symphony OrchestraEstonian Festival Orchestra + +2742202Leif Johansen (3)Danish jazz trumpeteerNeeds VoteJohansenLeif Johansen Og Hans OrkesterThe Danish Jazzballet Society'-EnsembleBruno Henriksens OrkesterPeter Rasmussen And His OrchestraKai Ewans Og Hans OrkesterKai Ewans And His Swinging 16Bent Fabricius-Bjerres Orkester + +2742868Russell MatthewsBritish bass vocalist.Needs Votehttps://www.russellmatthewsbass.com/London VoicesPalace Voices + +2742869Andrew Walters (2)Tenor vocalistNeeds VoteLondon VoicesPalace Voices + +2743500Mizuho YoshiiJapanese classical oboistCorrectMahler Chamber Orchestra + +2743656Nazareno CicoriaCello & Viol player.Needs VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +2743773Kenneth Smith (6)Kenneth SmithBritish classical flute player. Born in 1946 in Wolverhampton, England, UK. +He joined the [a=Bournemouth Symphony Orchestra] in January 1973 as 2nd Flute. In 1983, he became a member of the [a=Philharmonia Orchestra] becoming its Principal Flute few months later. He remained with the Orchestra for twenty-seven years.Needs Votehttp://www.robertbigio.com/smith.htmhttps://www.feenotes.com/database/artists/smith-kenneth-1946-present/https://www.hyperion-records.co.uk/a.asp?a=A2833#:~:text=In%201983%2C%20after%20ten%20years,highest%20level%20the%20world%20over.https://divineartrecords.com/artist/kenneth-smith/https://www.arcomis.com/flute/kennethsmithKen SmithKenneth SmithSmithケネス・スミスPhilharmonia OrchestraBournemouth Symphony OrchestraThe Philharmonia Soloists + +2744654Philippe WarrinArtist photographer from France (EU).Needs VoteP. WarrinPhilippe VarinPhilippe WarinSipa Press + +2745750Pierre BeaudryCanadian classical trombonist.Needs VoteOrchestre symphonique de Montréal + +2747393Charles-Antoine Leclerc De La BruèreCharles-Antoine Leclerc de La Bruère (1716 in Crépy-en-Valois – 18 September 1754 in Rome) was an 18th-century French historian and diplomat. He is mostly known as the librettist of the tragédie lyrique Dardanus by [a=Jean-Philippe Rameau].Needs VoteCharles-Antoine Le Clerc De La BruèreCharles-Antoine Le Clerc de La Bruere + +2747395Klaus LohrerGerman bassoonist.Needs Votehttp://www.kontra-fagott.de/index.htmlGürzenich-Orchester Kölner PhilharmonikerLinos EnsembleBläserensemble Sabine MeyerQuintett Chalumeau + +2747396Thomas AdamskyGerman bass clarinetist and clarinetist.CorrectGürzenich-Orchester Kölner PhilharmonikerFrankfurter Opern- Und Museumsorchester + +2748169Jochen ScheererGerman trombonist, born in 1956 in Trossingen, Germany.Needs VoteEnsemble ModernSWR-Rundfunk-Orchester KaiserslauternDeutsche Radio Philharmonie Saarbrücken KaiserslauternBundesjugendorchesterThilo Berg Big BandDas Rennquintett + +2748187Karola ElßnerGerman jazz saxophonist.Needs VoteCarola ElssnerElßnerKarola ElsnerKarola ElssnerKlaus Lenz Big BandRundfunk-Sinfonieorchester BerlinLautten CompagneyMarc Muellbauer's KaleidoscopeRolf von Nordenskjöld OrchestraBigBand Deutsche Oper BerlinAngelika Neutschel und Gruppe + +2748823Jelly Roll Morton's Steamboat FourNeeds Major ChangesJ.R. Morton's Steamboat FourJelly Roll Morton's Stomp KingsJelly-Roll Morton's Steamboat FourJelly Roll MortonW.E. BurtonBoyd Senter'Memphis' + +2749545Thomas VerityBritish classical clarinetistCorrectRoyal Liverpool Philharmonic OrchestraThe Sterling Trio + +2750488Antxon AyestaránSpanish tenor vocal and chorus master (born in San Sebastian-Donostia, 14/04/1939 - died in San Sebastian-Donostia, 22/12/1986), since 18 years old in [a1169517] as tenor vocal and chorus master since 1968 until his car crash dead in1986.Needs Votehttp://www.euskomedia.org/aunamendi/25160Antxon AyestaranАнтхон АйестаранАнтхон АйстеранOrfeón Donostiarra + +2750541Виктор ВенгловскийВиктор Фёдорович ВенгловскийViktor Venglovsky (1927 – 1994) – Russian and Soviet trombonist and music teacher, professor of the Leningrad Conservatory, Honored Artist of the RSFSR.Needs Votehttps://ru.wikipedia.org/wiki/%D0%92%D0%B5%D0%BD%D0%B3%D0%BB%D0%BE%D0%B2%D1%81%D0%BA%D0%B8%D0%B9,_%D0%92%D0%B8%D0%BA%D1%82%D0%BE%D1%80_%D0%A4%D1%91%D0%B4%D0%BE%D1%80%D0%BE%D0%B2%D0%B8%D1%87https://www.100philharmonia.spb.ru/persons/33314/https://nekropol-spb.ru/kladbischa/severnoe-kladbische/venglovskiy_viktor-fedorovichhttps://www.conservatory.ru/esweb/venglovskiy-viktor-fyodorovich-1926-1994V. VenglovskyVictor BenglovskiVictor VenglovskyViktor VenglovskyВ. ВенгловскийLeningrad Philharmonic OrchestraКвартет Тромбонов Ленинградской ФилармонииАнсамбль солистов Академического симфонического оркестра Ленинградской государственной Филармонии + +2750622Anna-Liisa BezrodnyАнна-Лиза БезроднаяSoviet Union-born Estonian/Finnish classical violinist, and teacher. Born September 10, 1981 in Moscow, Soviet Union. +Already at the age of two she began her violin studies with her parents, and at the age of nine she began her studies at the [l=Sibelius-Akatemia] in Helsinki, Finland, in the class of her parents, Prof. [a=Igor Bezrodny] and Prof. [url=https://www.discogs.com/artist/3272438-Mari-Tampere]Mari Tampere-Bezrodny[/url]. Her later years took her to London, resulting in winning the most prestigious award in [l=The Guildhall School Of Music & Drama], the Gold Medal, in 2006. Recipient of countless awards and prizes, she was awarded the PROMIS Award for talented young musicians from [a=London Symphony Orchestra]. Over the years, she has appeared as soloist with many orchestras in concert venues around the world. Additionally to her solo career, since 2007 she teaches in both the [l=Estonian Music And Theatre Academy] as well as at the Guildhall School of Music & Drama.Needs Votehttp://annaliisabezrodny.com/https://www.instagram.com/annaliisabezrodny/https://www.youtube.com/channel/UCLwYKHVPp18iC5aGSkM2BFghttps://open.spotify.com/artist/7DhYEUQC2x1ZBlG7OpHRa1https://music.apple.com/ca/artist/anna-liisa-bezrodny/675262268https://en.wikipedia.org/wiki/Anna-Liisa_Bezrodnyhttps://vgmdb.net/artist/22813Anna Liisa BezrodnyAnna-Lisa BezrodnyLondon Symphony Orchestra + +2752080Tadd Dameron's Big TenNeeds Major ChangesTadd Dameron Big TenSahib ShihabKenny ClarkeCurly RussellKai WindingJohn Collins (2)Benjamin Lundy + +2752648Monika MalmquistMonika Malmquist EgholmClassical violinist.Needs VoteMonika Malmquist EgholmSeierøDR SymfoniOrkestretLiveStringsMichael Falch & VildfugleTrio Ismena + +2753391Jan WaterfieldClassical keyboard instrumentalistNeeds VoteNew London ConsortGabrieli PlayersLudus Baroque + +2753392Adrian TribeClassical trumpeterNeeds VoteGabrieli Players + +2753399Steady NelsonHorace Stedman NelsonAmerican jazz trumpeter from the swing-era. He joined [a284746] in early 1939. + +Needs Votehttps://en.wikipedia.org/wiki/Steady_Nelsonhttps://www.tshaonline.org/handbook/entries/nelson-steadyhttps://adp.library.ucsb.edu/names/207237Horace "Steady" NelsonHorace NelsonWoody Herman And His OrchestraHal McIntyre And His OrchestraThe Band That Plays The Blues + +2754244John Nixon (5)Tenor vocalist on classical releases.Needs VoteThe Hilliard Ensemble + +2754555Heinrich BrucknerAustrian wind instrumentalist, born 1965 in Vienna, Austria.Needs VoteWiener SymphonikerPro BrassLa Grande ChapelleArt Of Brass ViennaFlip Philipp - Ed Partyka OctetEnsemble Tonus (2) + +2755197Karl-Ernst SchröderClassical lutenist and guitarist, born in 1958, died in 2003.Needs VoteK.-E. SchröderKarl SchröderConcerto VocaleConcerto KölnEnsemble 415Freiburger BarockorchesterEnsemble AuroraBasel ConsortMala PunicaLa CacciaGruppe Für Alte Musik MünchenEnsemble Ludwig SenflEnsemble BadinerieEnsemble Musica Prattica + +2755352Vladimir FedotovВладимир Петрович ФедотовClassical flautist, born in 1942 in Perm, Soviet Union; died in 2008 in St. Petersburg, Russia.Needs Votehttps://ru.wikipedia.org/wiki/%D0%A4%D0%B5%D0%B4%D0%BE%D1%82%D0%BE%D0%B2,_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80_%D0%9F%D0%B5%D1%82%D1%80%D0%BE%D0%B2%D0%B8%D1%87V. FedotovВ. ФедотовВ. Федотов / V. FedotovВладимир ФедотовLeningrad Philharmonic OrchestraЛенинградский Ансамбль Старинной Музыки + +2756613John Bruce YehClassical clarinetist and producer.Needs VoteJohn YehChicago Symphony OrchestraThe Contemporary Chamber Players Of The University Of ChicagoChicago Pro Musica + +2756764Peter RiegelbauerGerman double bassist. He's a member of the [a=Berliner Philharmoniker] since 1 February 1982.Needs Votehttps://scharoun-ensemble.com/ensemble/peter-riegelbauer/RiegelbauerBerliner PhilharmonikerScharoun Ensemble BerlinBundesjugendorchester + +2758335Paulius SondeckisLithuanian violinist, born in 1968 in Vilnius, Russia (today Lithuania), based in Austria. Son of [a=Saulius Sondeckis] and brother of [a=Vytas Sondeckis].CorrectDas Mozarteum Orchester Salzburg + +2758639Alvar KolanenFinnish Photographer + +Born: 8th December 1921 +Died: 9th December 2007Needs VoteA. KolanenFoto A. Kolanen + +2758894Reiko IkehataJapanese classical violist, born in Tokyo.Needs VoteIkehata ReikoOrchestre National Bordeaux Aquitaine + +2760099Chœurs Du Conservatoire De ParisChœurs de la Société des concerts du Conservatoire de Paris no longer exists after 1925.Needs Votehttp://catalogue.bnf.fr/ark:/12148/cb13906382kChor Des Konservatoriums ParisChœursChœurs De La Société Des Concerts Du ConservatoireChœurs Du ConservatoireParis Conservatoire OrchestraParis Conservatory ChorusOrchestre De La Société Des Concerts Du Conservatoire + +2760941Wilson TownesNeeds VoteTownesJelly Roll Morton And His Orchestra + +2760943Jelly Roll Morton And His Jazz TrioNeeds VoteJ.R. Morton And His Jazz TrioJelly Roll Morton's Jazz TrioJelly Roll MortonW.E. BurtonVolly De Faut + +2760944Russell SenterCredited as kazoo player.Needs VoteJelly Roll Morton's Stomp Kings + +2760945Alex PooleAlto saxophonist.Needs VoteJelly Roll Morton's Kings Of Jazz + +2760946Clay JeffersonNeeds VoteC. JeffersonJelly Roll Morton's Incomparables + +2760947'Memphis'Comb player in [a2748823]Needs Vote"Memphis"Jelly Roll Morton's Stomp KingsJelly Roll Morton's Steamboat Four + +2760948'Balls' BallCredited as clarinet player.Needs Vote"Balls" BallJelly Roll Morton's Kings Of Jazz + +2763706Christian DufourClassical Viola playerNeeds VoteC. DufourLes EnfoirésOrchestre National De L'Opéra De Paris + +2763713Jérôme AkokaFrench classical violinistNeeds VoteAkokaJérome AkokaAlhambra (2)Le Concert D'Astrée + +2765789Kana MatsuiJapanese classical violinist.Needs VoteCamerata Academica SalzburgSimfonični Orkester RTV Slovenija + +2766210Oliver TriendlGerman pianist, born 1970 in Mallersdorf, Bavaria, Southern Germany.Needs Votehttps://www.oliver-triendl.com/http://jarmandi.eu/Artists/Triendl,-OliverTriendlMünchner RundfunkorchesterTammuz Piano QuartetEnsemble AchtOrsolino Quintett + +2767585Mark KraemerAmerican double bassist.Needs VoteChicago Symphony Orchestra + +2768237The Gulf Coast SevenNeeds Major ChangesGulf Coast SevenPerry Bradford's Jazz HoundsJohnny HodgesJoe NantonSonny GreerLouis MetcalfBarney BigardJames Price Johnson + +2769555InterfotoNeeds Votehttps://www.interfoto.de/Interfoto 00266788Interfoto/Millerwww.interfoto.de + +2769962Rebecca ProsserRecorder playerNeeds VoteGabrieli ConsortArcangelo + +2770146Hermann HirschfelderGerman viola playerNeeds VoteH. HirschfelderBerliner PhilharmonikerDas Strub-QuartettBarchet-QuartettBeethoven-Trio, Stuttgart + +2770386Alison AmesProducer for the label [l7703]. Also credited as a sleeve/liner notes translator. +Publicity director, Deutsche Grammophon, New York City, 1974-1976; product manager, Deutsche Grammophon, Hamburg, Germany, 1977-1980; label manager, Deutsche Grammophon, New York City, 1980-1989; executive producer, Deutsche Grammophon, New York City, 1989-1995; vice president, Electric and Music Industries Classics, New York City, since 1995.Correcthttps://prabook.com/web/alison_winthrop.ames/383388Allison Ames + +2770647Alain TrétoutCorrectLes Arts Florissants + +2770648Claire BruaClassical mezzo-soprano.CorrectBruaLes Arts Florissants + +2770649Jean DautremayCorrectLes Arts Florissants + +2770650Denis Léger-MilhauBass & Baritone vocalistNeeds VoteD. Léger-MilhauLes Arts Florissants + +2770825Monika TutschkuMonika Tutschku (19 September 1939 - 9 September 2017) was a German viol and Viola da Gamba player.Needs VoteNeues Bachisches Collegium Musicum LeipzigCapella Fidicinia + +2770837Günter AngerhöferGünter Angerhöfer (21 March 1926 - 11 December 2015) was a German classical dulcian player and bassoonist. He's the brother of [a1060422] and the uncle of [a977802].Needs VoteGünter AngerthöferGünther AngerhöferRundfunk-Sinfonie-Orchester LeipzigCapella LipsiensisCapella FidiciniaDie Bläservereinigung Des Rundfunk-Sinfonieorchesters LeipzigPro Arte Antiqua Lipsiensis + +2771315Flip Phillips And His OrchestraNeeds Major ChangesFlip Phillips & His OrchestraBuddy RichRay BrownBarney KesselOscar PetersonHarry EdisonBilly BauerHank JonesFlip PhillipsCharlie ShaversBill HarrisChuck Etter + +2771938Jochen UbbelohdeGerman horn player.CorrectStaatskapelle DresdenBrass PartoutBundesjugendorchester + +2771952George Smith (13)Violinist.Needs VoteScottish Ensemble + +2773821Adam Unsworth (2)French hornistNeeds VoteUnsworthThe Philadelphia OrchestraMeridian Arts EnsembleGil Evans Project + +2773920Jimmy DudleyJames DudleyAmerican jazz saxophonist (alto, tenor, baritone) and clarinetist, born June 11, 1903 in Hattiesburg, Mississippi.Needs Votehttps://www.allmusic.com/artist/jimmy-dudley-mn0001383714/biographyMcKinney's Cotton PickersElgar's Creole Orchestra + +2773923Allie RossViolinistNeeds VoteRossFletcher Henderson And His Orchestra + +2773935Cal Smith (2)Carl Lee SmithCal Smith (born 1903 in Cave City, KY, died of tuberculosis in 1937), banjo and guitar player. +He and his six brothers formed the Smith Brothers String Band, and in 1919 Cal Smith joined Henry Smith's Jug Band in Louisville. He also played and recorded with Earl McDonald's and Clifford Hayes' bands, and worked with W. C. Handy. +Needs Votehttp://www.uky.edu/Libraries/nkaa/record.php?note_id=1849C. SmithSmithDixieland Jug BlowersThe Old Southern Jug BandClifford Hayes' Louisville Stompers + +2773936Johnny GatewoodBlues and jug band pianistNeeds VoteJohhy GatewoodJohn GatewoodJohnny GateswoodDixieland Jug Blowers + +2773938Leroy Harris (2)Le Roy W. Harris, Sr.Jazz banjoist, guitarist and flutist, born c. 1900, died 1969. +Played with [a=King Oliver], [a=Fletcher Henderson] (1925), [a=Clarence Williams] (c.1925-1930), [a=Leroy Tibbs] (1928) and others. Later he played with [a=Jesse Stone] (1937), [a=Horace Henderson] (1940) and [a=Willie Bryant] (19467) and with rhythm & blues acts such as [a=Wynonie Harris] and [a=Tiny Bradshaw]. +Father of [a=Leroy Harris], brother of [a=Arville Harris].Needs VoteL. HarrisKing Oliver & His Dixie SyncopatorsClarence Williams' Blue FiveKing Oliver's Jazz BandTiny Bradshaw And His OrchestraClarence Williams And His OrchestraClarence Williams' Jazz KingsMemphis Jazzers + +2773945Manuel "Fess" ManettaJazz pianist, cornetist and saxophonist, born October 3, 1889 in New Orleans, died October 10, 1969 in the same city. +Manetta started as violinist, working with Buddy Bolden in 1906. From 1908 he performed as solo pianist. He played various instruments with the Tuxedo Orchestra, King Oliver and Kid Ory's Los Angeles band in 1919. He first recorded on piano in 1925 with Papa Celestin, playing a break on "Original Tuxedo Rag". He also recorded as a soloist in 1957. He spent the last 40 years of his life teaching; his pupils included Henry "Red" Allen and Buddy Petit.Needs VoteFess ManettaManuel ManettaOriginal Tuxedo Jazz Orchestra + +2773952Te Roy WilliamsNeeds VoteWilliamsTe Roy Williams And His Orchestra + +2773954Lawrence FreemanLawrence E. FreemanAfrican-American jazz tenor saxophonist. + +Not to be confused with [a=Bud Freeman], whose first name was also Lawrence.Needs VoteFreemanL. FreemanL.E. FreemanLawrence "Slim" FreemanAndy Kirk And His Clouds Of JoyJohn Williams' Memphis Stompers + +2774375Danijel PetrovicSwedish double bassistNeeds VoteD. PetrovicOslo Filharmoniske OrkesterBodies Without OrchestraDen Norske Operas Orkester + +2774377Karin ErikssonClassical violinistNeeds VoteK. ErikssonSveriges Radios SymfoniorkesterSymphony Orchestra Of Norrlands Opera + +2774380Riikka RepoRiikka Leena RepoA Finnish violist based in Stockholm, Sweden. Born on December 28, 1981 in Åbo, Finland. + +Riikka Repo has been a member of [a848261] since 2017. As a passionate and sought-after chamber musician, she regularly collaborates with a range of formations, performing in international concert halls and festivals. + +Riikka was earlier Co-Principal Viola of [a380036], a position she held from 2014 to 2020. Prior to this, she was a member of [a2770118] from 2008-2013. When not appearing with the Swedish Radio earlier or the Chamber Orchestra of Europe now, Riikka performs with her quartet, the Vamlingbo Quartet, has regular invitations to play with various other ensembles and orchestras and is a recording artist for [l51038]. + +After graduating from the Sibelius Academy in Helsinki, Finland following studies with [a1763209], Riikka continued her education with [a7239829] at [l305416] in London, United Kingdom and [a846587] at the Edsberg Chamber Music Institute in Denmark. + +Riikka Repo has earlier played on and performed with a viola built by Leonhard Maussiel in 1722. In 2022, she will perform with a [a5568459] viola from 1590.Needs Votehttps://www.instagram.com/riikka.repo/https://www.facebook.com/riikka.repohttps://www.coeurope.org/orchestra/about-us/#scroll-to-2https://www.instagram.com/vamlingbokvartetten/https://www.imdb.com/name/nm4785697/https://se.linkedin.com/in/riikka-repo-68b0991bR.RepoRiika RepoRikka RepoStockholm Session StringsSveriges Radios SymfoniorkesterThe Chamber Orchestra Of EuropeBodies Without OrchestraKungliga Filharmonikerna + +2774426Christina PoundClassical soprano.Needs VoteThe Academy Of Ancient MusicThe Consort Of Musicke + +2774468Joan ZelickmanAmerican violinist, born in San Diego, California. She's married to [a866839].CorrectMexico City Philharmonic OrchestraSan Diego SymphonyCalgary Philharmonic OrchestraOregon Symphony Orchestra + +2775269Mireille PidouxFrench violinist (mostly active in 1970's)Needs VoteMirelle PidouxLa Grande Ecurie Et La Chambre Du RoyLes Musiciens De ParisGiant (21) + +2775272Simone SéchetFrench classical harpistNeeds VoteSimone SechetLa Grande Ecurie Et La Chambre Du Roy + +2775274Pierre SéchetFrench classical flautistNeeds VoteP. SechetPierre SechetLa Grande Ecurie Et La Chambre Du Roy + +2775276Maurice PruvotFrench classical flautistNeeds VoteLa Grande Ecurie Et La Chambre Du Roy + +2775277Jean-Louis OlluFrench classical violinist.Needs VoteLa Grande Ecurie Et La Chambre Du RoyQuatuor De Paris + +2775278Louis FuzelierLouis Fuzelier (also Fuselier, Fusellier, Fusillier, Fuzellier;1672 or 1674 – 19 September 1752) was a French playwrighterNeeds Votehttps://en.wikipedia.org/wiki/Louis_FuzelierJean-Louis Fuzelier + +2775279Guy BénardFrench classical cellistNeeds VoteLa Grande Ecurie Et La Chambre Du Roy + +2776270William Tyler (4)Needs VoteWill TylerWilliam A. TylerWilliam S. TylerJohnny Dunn's Original Jazz Hounds + +2776471Carlo PallavicinoCarlo PallavicinoCarlo Pallavicino or Pallavicini; (c. 1630 – 29 January 1688) was an Italian composer born at Salò.Needs Votehttps://en.wikipedia.org/wiki/Carlo_PallavicinoC. PallavicinoCarlo PallavacinoStaatskapelle Dresden + +2776950Geoffrey SilverBritish-born Grammy-nominated record producer, conductor, and former vocalistNeeds Votehttps://www.acisproductions.com/Geoff SilverSt. John's College ChoirNew York PolyphonyThe Choir Of Trinity Wall StreetThe Washington ChorusThe Choir Of Saint Thomas ChurchThe Choir Of Trinity College, Cambridge + +2777182Marilyn TaylorClassical violinistNeeds VoteThe Academy Of St. Martin-in-the-FieldsAkron Symphony Orchestra + +2777187Sue PicknellClassical viola player.Needs VoteNew London Consort + +2777188Helen Brown (2)British violinist, born in 1961.Needs VoteNew London ConsortThe Academy Of Ancient MusicLondon Classical Players + +2777191Chizuko IshikawaViola playerNeeds VoteNew London ConsortLondon Classical Players + +2777192Robert EhrlichRecorder player, born in 1965 in Belfast, Northern Ireland.Needs VoteProf. Robert EhrlichRobert ErlichNew London ConsortThe Academy Of Ancient MusicNeues Bachisches Collegium Musicum LeipzigSolistengemeinschaft Der Berliner Bach AkademieEuropean Brandenburg EnsembleThe Cambridge Musick + +2777196Janet WaterfieldHarpsichordist and organist.Needs VoteNew London Consort + +2777584Reina BoelensDutch singer (soprano vocal range), comedien. 80'sNeeds VoteReinaNederlands KamerkoorEnsemble "Fien"Kabaret Guus Vleugel + +2778415Jisun YangAmerican violinist.CorrectSaint Louis Symphony OrchestraSan Diego Symphony + +2778421Jeffrey ZehngutAmerican violinist, born in Warren, Ohio.Needs VoteJeff ZehngutThe Cleveland OrchestraSan Diego Symphony + +2778589Corinne ContardoFrench classical viola player, born in 1966.Needs VoteOrchestre De L'Opéra De LyonOrchestre De LyonThe Chamber Orchestra Of EuropeOrchestra Mozart + +2778590Matthias DulackClassical cellist.CorrectThe Chamber Orchestra Of Europe + +2778591Elizabeth FyfeClassical oboist.CorrectElizabeth FyffeThe Chamber Orchestra Of Europe + +2778665Jon EtxabeJon Etxabe ArzuagaTenor vocalist Jon Etxabe Arzuaga was born in Tolosa, Basque Country, Spain. At the age of fourteen he started singing in a choir.Needs VoteJon Etxabe ArzuagaJon Etxabe-ArzuagaThe Amsterdam Baroque OrchestraCappella AmsterdamEgidius KwartetVocalconsort BerlinPluto Ensemble + +2778852Sam Lee (5)Samuel LeeJazz musician, born Louisiana February 1911. Moved to New Orleans in 1926 and learned to play clarinet, later adding tenor saxophone to his repertoire. + +By 1933 was playing in Sweet Emma's band and throughout the 30's with the Sam Morgan, Babe Ridgely and a trio featuring Buddy Charles and John Robichaux. Made his first recording in 1947 with Celestin's Tuxedo Band, and since then has recorded and played in numerous New Orleans jazz bands, most notably the Legends of Jazz and the Louisiana Shakers.Needs VoteS. LeeSammy LeeSamuel LeeRoy Eldridge And His OrchestraSam Lee And FriendsLouisiana Shakers Band + +2779831Linnhe RobertsonClassical organist and harpsichordist.Needs VoteLinnhe Robertson-ThomasThe English Baroque Soloists + +2781207Jabbo Smith And His Rhythm AcesNeeds Major ChangesJabbo Smith & His Rhythm AcesJabbo Smith And His RhythmJabbo Smith And His Rhythm Aces (Four Aces And The Joker)Jabbo Smith And The Rhythm AcesJabbo Smith's Rhythm AcesThe Rhythm AcesJabbo SmithIkey RobinsonEarl FrazierOmer SimeonLawson BufordWillard BrownCassino Simpson + +2781209"Banjo" Ikey Robinson And His BandNeeds Major ChangesIkey Robinson & His BandIkey Robinson And His BandJabbo SmithIkey Robinson + +2782266Lars Magnus SteinumClassical violinist.Needs VoteBergen Filharmoniske Orkester + +2782548Warren JeffersonUS jazz trumpeter from the swing-era. + +Needs VoteEarl Hines And His Orchestra + +2782550Marty BlitzUS jazz bassist from the swing-era. + +CorrectMark BlitzMonroe "Marty" BlitzWill Hudson And His OrchestraClaude Thornhill And His OrchestraBenny Goodman And His Orchestra + +2782553Carroll RidleyCarroll "Stretch" RidleyUS jazz saxophonist from the swing-era. + +Needs VoteCarrol RidleyStrectch RidleyStretch RidleyErskine Hawkins And His OrchestraFloyd Ray And His Orchestra + +2782556Slim TaftJames TaftUS jazz bassist from the swing-era. + +Needs VoteJ. TaftJames TaftJim "Slim" TaftJim TaftJim ToftSlim Jim TaftJimmy Dorsey And His OrchestraJohn Scott Trotter And His Orchestra + +2782565Milton RobinsonUS jazz trombonist from the swing-era. + +CorrectMilt RobinsonAndy Kirk And His Clouds Of JoyBenny Carter And His OrchestraAndy Kirk And His Orchestra + +2782566Ken BroadhurstUS jazz guitarist from the swing-era. + +Needs Votehttps://www.allmusic.com/artist/ken-broadhurst-mn0001228612/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/201101/Broadhurst_KenK. BroadhurstMuggsy Spanier And His RagtimersMuggsy Spanier And His Orchestra + +2782567Jack JarvisUS jazz bassist from the swing-era. + +Needs VoteCharlie Barnet And His OrchestraJimmy Mundy Orchestra + +2782569Herb TompkinsUS jazz saxophonist from the swing-era. + +Needs VoteHerb ThompkinsHerb TomkinsWoody Herman And His OrchestraThe Band That Plays The Blues + +2782574Lawrence DixonLawrence William DixonUS jazz guitarist and banjo player from the swing-era. +Born: September 5, 1894 in Chillicothe, Ohio. +Died: January 1970 in Chicago, Illinois. + +Needs VoteDixonL. DixonLawrence W. DixonDixon's Jazz ManiacsEarl Hines And His OrchestraFranz Jackson And His Original Jass All-StarsSammy Stewart's Ten Knights Of Syncopation + +2782577George BoneUS jazz saxophonist from the swing-era. + +Needs VoteGeorge E. BoneCharlie Barnet And His Orchestra + +2782580Pokey CarriereHilliard Simon CarriereUS jazz trumpeter from the swing-era +He also played with [a=Tommy Gonsoulin] + +Born: 15 July 1907 in Port Barre, Louisiana, USA +Died: 3 December 1983 in Huntington Beach, California, USANeeds VoteH. Pokey CarriereP. CarrierePoker CarrierePorky CarriereJack Teagarden And His OrchestraKay Kyser And His OrchestraHerbie Kay And His Orchestra + +2782590Eddie ScalziEdward ScalziUS jazz saxophonist from the swing-era. + +Needs VoteE. ScalziEd ScalsiEd ScalziEd Scalzi OrchestraEdward ScalziScalziTommy Dorsey And His OrchestraWoody Herman And His OrchestraBob Chester And His OrchestraGeorge Williams And His OrchestraThe Band That Plays The Blues + +2782596Fritz HummelUS jazz trombonist from the swing-era. + +Needs VoteHummelCasa Loma OrchestraGlen Gray & The Casa Loma Orchestra + +2782601Wally BarronUS jazz trombonist from the swing-era. + +Needs VoteWally "Blue" BarronWally BaronCharlie Barnet And His Orchestra + +2783166Anu JämsäFinnish classical flutistNeeds Votehttps://soundcloud.com/anujamsaSveriges Radios Symfoniorkester + +2783168Bengt NySwedish classical hornistNeeds VoteSveriges Radios Symfoniorkester + +2783256Druie BessDruie R. BessUS jazz trombonist, born July 24, 1901 in Montgomery City, Missouri. Trombonist Druie Bess moved to St. Louis in the 1930's. He is a veteran of the Jesse Stone Blue Serenaders and the famed Oklahoma Blue Devils. His only two recorded solos were with Jesse Stone in St. Louis in 1926. He was one of the two leading trombones in the Midwest during the late 1920’s and early 1930’s. He had a long and distinguished career in St. Louis. Later, he played with the Earl Hines band in 1944-6. + +Needs VoteDruie BossEarl Hines And His OrchestraWalter Page's Blue DevilsJesse Stone And His Blue Serenaders + +2783552Benjamin RaymondCanadian trumpeterNeeds VoteLes Violons du RoyTheatre Of Early MusicOrchestre Symphonique de Longueuil + +2783966Art Moore (2)US jazz saxophonist from the swing-era. + +Needs VoteA. MooreJack Teagarden And His Orchestra + +2784251Florian DondererGerman classical violinist, conductor and concertmasterNeeds Votehttp://www.floriandonderer.de/https://en.wikipedia.org/wiki/Florian_DondererDondererフローリアン・ドンデラーDeutsche Kammerphilharmonie BremenSignum QuartettEstonian Festival OrchestraSheridan Ensemble + +2784585Charles Zimmermann (2)US composer, trumpeter.Needs VoteCharles "Chuck" ZimmermanCharles ZimmermanCharlie ZimmermanCharlie ZimmermannChuck ZimmermanChuck ZimmermannCharlie Barnet And His Orchestra + +2784586Tom Moore (6)Swing era guitaristNeeds VoteTommy MooreBunny Berigan & His OrchestraCharlie Barnet And His Orchestra + +2784953John Mayfield (3)Jazz trombonist who was active in the 1920s.Correcthttp://www.harlem-fuss.com/pdf/soloists/harlem_fuss_soloists_mayfield_john.pdfJ. MasefieldJohn MansfieldJohn MasefieldMasefieldClarence Williams' Blue Five + +2784954John BasleyJazz Age Banjo playerNeeds VoteOllie Powers' Harmony Syncopators + +2784955Horace DiemerAlto SaxophonistNeeds VoteOllie Powers' Harmony Syncopators + +2784960Alex CalameseCornetistNeeds VoteAlec CalimiceCalimeseOllie Powers' Harmony Syncopators + +2785288Mattias FrostensonSwedish violoncellist and double bass player.Needs VoteMattias FrostenssonTheatre Of VoicesAnima EternaGugge Hedrenius Big Blues BandBarokksolisteneEnsemble Ars Nova (2)Höör BarockPhemius Consort + +2785364Igor KellerFrench violinist, born in 1973.Needs VoteAmar QuartettOrchestre Philharmonique De StrasbourgSinfonieorchester St. Gallen + +2785365Péter SomodariHungarian cellist, born 1977 in Veszprem, Hungary.CorrectPeter SomodariAmar QuartettOrchester Der Wiener StaatsoperWiener PhilharmonikerLuzerner Sinfonieorchester + +2785689Diane MatherAmerican cellist, born in 1942.CorrectThe Cleveland Orchestra + +2786262Angelo BardGerman violinist.CorrectEuropean Union Youth OrchestraGustav Mahler JugendorchesterEssener Philharmoniker + +2786278Birgitta RoseGerman violist, born 1980 in Lübeck, Germany.CorrectBayerisches StaatsorchesterGewandhausorchester LeipzigGöteborgs Symfoniker + +2786612Matt Morris (5)Needs VoteMatt Farker EJFarkerCaddyshack + +2786614Dirty Harry (23)Melvin SheppardHard dance / trance DJ / producer from Somerset, EnglandCorrecthttps://www.facebook.com/dirtyharrydjhttp://soundcloud.com/dj_dirty_harryhttp://twitter.com/dj_dirty_harryDJ Dirty HarryMelvin Sheppard + +2786616RY ProjectNeeds Major ChangesRY Movement + +2786841Irwin KatzAmerican trumpet player and record executive. Owner, Helicon Records Ltd.Needs VoteThe Cleveland Orchestra + +2786918Don DarcyAmerican jazz singer of the swing era.Needs VoteBoyd Raeburn And His OrchestraSonny Dunham And His OrchestraJohnny Bothwell And His Orchestra + +2788082Andrzej KilianPolish born violinist, born in 1955.Needs VoteLuzerner SinfonieorchesterZürcher StreichersolistenTonhalle-Orchester Zürich + +2788083Karl-Heinz BenzingerClassical timpanist and percussionist. [b]For the contemporary classical trumpeter, use [a2003661][/b].CorrectSymphonie-Orchester Des Bayerischen RundfunksTonhalle-Orchester Zürich + +2788085Andrea HelesfaiHungarian born violinist.CorrectTonhalle-Orchester Zürich + +2788086Wolfgang BognerClassical cellist.CorrectBamberger SymphonikerTonhalle-Orchester Zürich + +2788087Martin HösliMartin Hösli (born 1955) is Swiss bassoonist. He was a member of the [a8551878] from 1990 to 2020. +Needs VoteTonhalle-Orchester Zürich + +2788088Mary BradyMary Brady FriedrichIrish born cellist and pianist. She was a member of the [a8551878] for 38 years.Needs VoteTonhalle-Orchester Zürich + +2788089Harald FriedrichSwiss double bassist and music professor.CorrectTonhalle-Orchester Zürich + +2788090Eiko FurusawaViolinist, born in Tokyo, Japan.Needs VoteEiko FurusavaZürcher KammerorchesterTonhalle-Orchester ZürichStreichsextett ZürichOrion Trio (2) + +2788091Luzia MeierSwiss violinist.Needs VoteTonhalle-Orchester Zürich + +2788092Rafael RosenfeldSwiss cellist, born in 1973.CorrectRaphael RosenfeldMerel QuartettTonhalle-Orchester Zürich + +2788093Robert MerklerClassical cellist. Born in Oravitza, Romany, 1944.Needs VoteUngarisches StreichtrioTonhalle-Orchester ZürichZürcher Streichtrio + +2788094Beatrice MössnerClassical violinist.Needs VoteEuler-QuartettTonhalle-Orchester Zürich + +2788096Gerd VosselerSwiss bassoonist. +CorrectTonhalle-Orchester Zürich + +2788097Johannes GürthAustrian violist, born 1961 in Vienna, Austria.CorrectCamerata Academica SalzburgTonhalle-Orchester Zürich + +2788098Andreas SamiSwiss cellist, born in 1963.CorrectTonhalle-Orchester Zürich + +2788100Kilian SchneiderGerman violinist, born in 1964.CorrectTonhalle-Orchester Zürich + +2788101Micha RothenbergerGerman violist, born in 1955. He was a member of the [a8551878] from 1985 to 2020.Needs VoteBachcollegium StuttgartTonhalle-Orchester Zürich + +2788102Karl FässlerKarl FässlerSwiss classical French Horn player. Born 1960 in Zug, Switzerland.CorrectCharly FässlerTonhalle-Orchester Zürich + +2788103Kaspar ZimmermanKaspar ZimmermannSwiss oboist, born in 1964.CorrectKaspar ZimmermannTonhalle-Orchester Zürich + +2788105Richard Kessler (4)Classical violist.CorrectTonhalle-Orchester Zürich + +2788107Mischa GreullMischa Greull (born 1969) is a Swiss classical hornist and Professor of Horn at the [l1402972].Needs VoteMischa GreulConcerto KölnBaden-Badener PhilharmonieTonhalle-Orchester Zürich + +2788108Simon FuchsSwiss classical oboist. Born 1961 in Zurich, Switzerland. He's the son of [a3505719].Needs VoteTromp Fuchs SimonTromp Simon FuchsDas Orchester Des Collegium Musicum LuzernBanda ClassicaSpiel Inf RS 5 AarauTonhalle-Orchester Zürich + +2788110Hans Martin UlbrichSwiss oboist and English horn player.CorrectTonhalle-Orchester Zürich + +2788111David Newman (9)ViolinistNeeds VotePaul Whiteman And His Orchestra + +2788112Cornelia AngerhoferGerman violinist.CorrectTonhalle-Orchester Zürich + +2788113Sophie SpeyerClassical violinist.CorrectTonhalle-Orchester Zürich + +2788115Endre GuranSwiss violist.CorrectTonhalle-Orchester Zürich + +2788116Keiko HashiguchiViolinist, born 1956 in Japan.Needs VoteOrchestre De L'Opéra De LyonTonhalle-Orchester Zürich + +2788119Elisabeth BundiesGerman violinist, born in 1969.CorrectKlassische Philharmonie StuttgartTonhalle-Orchester Zürich + +2788123Frank SanderellClassical double bassist.CorrectTonhalle-Orchester Zürich + +2788125Jörg HofSwiss trumpet player, born in 1959.CorrectTonhalle-Orchester Zürich + +2788126Samuel LangmeierSwiss cellist and composer.Needs VoteS. LangmeierS.L.Sattler TrioTonhalle-Orchester Zürich + +2788127Nigel DowningBritish horn player, born in 1959.Needs VoteTonhalle-Orchester Zürich + +2788129Cornelia Messerli-OttSwiss classical violinist.Needs VoteTonhalle-Orchester Zürich + +2788130Andra UlrichsAndra Ulrichs KrederClassical violist.Needs VoteAndra Ulrichs KrederSinfonieorchester BaselTonhalle-Orchester Zürich + +2788131Peter KosakPolish born double bassist, born in 1965.CorrectTonhalle-Orchester Zürich + +2788132Rudolf BamertClassical violinist.CorrectTonhalle-Orchester Zürich + +2788133Felix NaegeliSwiss violist, born in 1956.CorrectLuzerner SinfonieorchesterTonhalle-Orchester Zürich + +2788137Marc LuisoniSwiss violinist.CorrectTonhalle-Orchester Zürich + +2788140Thomas GrossenbacherSwiss cellist, born in 1963. He was a member of the [a8551878] for 26 years.Needs VoteSwiss Chamber SoloistsNDR SinfonieorchesterTrio CaleidoscopioTonhalle-Orchester Zürich + +2788337Simon Channing (2)British chorister. Credited as treble vocalist in recordings from the mid-1970s.Needs VoteThe King's College Choir Of Cambridge + +2789177Louis SouchetNeeds Major ChangesL. Souchet + +2789582Domenic SewellCorrectWestminster Cathedral Choir + +2789583Anthony Oliver (3)CorrectWestminster Cathedral Choir + +2789584Francis SheperdCorrectWestminster Cathedral Choir + +2789585Marc Stevens (6)CorrectWestminster Cathedral Choir + +2789586Robert OgdenClassical alto vocalist.Needs VoteWestminster Cathedral Choir + +2789587Sean Evans (5)CorrectWestminster Cathedral Choir + +2789588Roderic UnwinCorrectWestminster Cathedral Choir + +2789627Bubber Miley And His Mileage MakersNeeds Major ChangesBubber Miley & His Mileage MakersBubber Miley + +2790153Andreas StriederClassical tenor.CorrectCollegium VocaleVokalensemble Frankfurt + +2790163Uwe MaibaumClassical bassoonist.CorrectConcerto Köln + +2790166Joachim HeldGerman lutenist, born 1963 in Hamburg, Germany.Needs Votehttp://www.joachim-held.de/https://de.wikipedia.org/wiki/Joachim_Held_(Lautenist)Concerto KölnEnsemble 415Il Giardino ArmonicoWeser-RenaissanceNeue Hofkapelle MünchenNeue Düsseldorfer HofmusikInstrumentalensemble "Il Basso"Münchner Cammer-MusicEuropäisches Hanse-Ensemble + +2790168Jean-Baptiste LapierreClassical trumpeter.Needs VoteJean Baptiste LapierreConcerto KölnLa Simphonie Du MaraisLes Musiciens Du Louvre + +2790169Jürg AllemannClassical hornist.Needs VoteJürg AlemannConcerto KölnWiener AkademieQuatuor De Cors Punto + +2790670Benny Moten (2)Clarinet and alto saxophone player, not to be confused with the [b]bassist [a=Benny Moten][/b] or the [b]pianist [a311057][/b]. Needs VoteBennie MortonBennie MotenBenny MortonClarence Williams' Blue FiveWilliams' Washboard BandDixie Washboard BandBlue Grass Foot WarmersJoe Jordan's Ten Sharps & Flats + +2790796Fritz DemmlerGerman flutist, born 2 April 1916 in Ludwigsburg and died 4 January 1997.Needs VoteBerliner PhilharmonikerMünchner PhilharmonikerStuttgarter PhilharmonikerSchola Cantorum Basiliensis + +2791065Benedetto FocarinoItalian violinist.Needs VoteFocarino BenedettoOrchestra Del Teatro Alla Scala + +2791079Freddy White (2)Jazz guitarist +[B]not to be confused with the producer [a1049836], +the drummer of [a22164]: [a299677] +or the session soul vocalist [a342235] ![/B] +Needs VoteFreddie WhiteFletcher Henderson And His OrchestraSavoy Bearcats + +2791133Noëlla BouchardClassical violinistNeeds VoteLes Violons du Roy + +2791140Marie-André ChevretteClassical violinistNeeds VoteOrchestre symphonique de Montréal + +2791166Youngkun KwakYoungkun Kwak (born 1985 in Hamburg, Germany) is a classical violinist.Needs Votehttps://www.youngkunkwak.de/Young Kun KwakJunge Deutsche PhilharmonieGustav Mahler JugendorchesterBrandenburgisches Staatsorchester FrankfurtBundesjugendorchesterWorld Youth Symphony Orchestra + +2791172Luke TurrellLuke Turrell is an English violist.Needs Votehttp://www.luketurrell.comLuke TurrelGewandhausorchester LeipzigStaatskapelle DresdenGewandhaus-Quartett Leipzig + +2791482Julie ElhardClassical Viol & Viola da Gamba instrumentalistNeeds VoteBach Society Of MinnesotaTrio Atlantica + +2792155Arnold AdamsSwing-era jazz guitaristNeeds VoteBenny Carter And His OrchestraWillie Bryant And His OrchestraPutney Dandridge And His Orchestra + +2792400William Lewis (4)American jazz guitarist.Needs VoteSam Price And His Texas Blusicians + +2793881Anthony WeedenConductor and orchestrator.Correcthttp://www.anthonyweeden.com + +2794071Josée MarchandOboist & English Horn instrumentalistNeeds VoteOrchestre symphonique de MontréalL'Orchestre Symphonique De Trois-RivièresOrchestre Symphonique de Longueuil + +2794073Alain DesgagnéCanadian classical clarinetistNeeds VoteAlain DesgagnésOrchestre symphonique de Montréal + +2794537Kari TikkaKari Juhani TikkaFinnish composer, conductor and oboist. Born on April 13, 1946 in Siilinjärvi, Finland and died on October 17, 2022.Needs VoteTikka + +2794989Eero JantunenFinnish hornistNeeds Vote + +2795577Nicolae Ochi AlbiRomanian musicianNeeds VoteG. OchialbiGN. Ochi-AlbiN. Ochi AlbiNicholas Ochi-AlbiNicolae Ochi-AlbiArtie Shaw And His Orchestra + +2795604Владимир ЧинаевВладимир Петрович ЧинаевVladimir Chinaev is a Russian musicologist, professor at [l285011], doctor of art history. +In 1992–1997 he worked as artistic director of the [a1032218] under the direction of [a926728].Needs Votehttps://www.mosconsv.ru/ru/person/8755Chinayev' Vladimir-VladimirovichV. ChinaevV. ChinayevVladimir ChinaevVladimir ChinayevVladimir TchinaevВ. ЧинаевRussian National Orchestra + +2796127Monique PoitrasClassical violinistNeeds VoteM. PoitrasOrchestre symphonique de Montréal + +2796379Simon Crawford PhillipsSimon Crawford-PhillipsClassical pianist and conductor.Needs Votehttp://www.simoncrawford-phillips.com/Simon Crawford-PhillipsSimon Crawford‐PhillipsSimon PhillipsKungsbacka Piano TrioLSO Percussion EnsembleColin Currie GroupStockholm Syndrome EnsembleBartolozzi Trio + +2796757Sylvie SummerederA French flutist, composer and teacher (born in 1959 in Lyon, France), now based in Austria.Needs Votehttps://sylvielacroix.at/Sylvie LacroixConcentus Musicus Wien + +2796758Dorice KöstenbergerAustrian violinist, born 1961 in Vienna, Austria.Needs VoteDoris KöstenbergerVienna Symphonic Orchestra ProjectWiener SymphonikerConcentus Musicus WienWiener Kammerorchester + +2796759Kathleen PutnamKathleen Putnam is an American classical hornist, based in Germany. +Needs VoteWDR Sinfonieorchester KölnConcentus Musicus WienCollegium Aureum + +2797084Misha BayardNeeds Major Changes + +2797085Gil LuañoNicolás Suris PaloméNicolás Suris was a Spanish writer (1903 - 1991), using Gil Luaño as alias.Needs VoteG. LuanoG. LuañoGilGil LuaneGil LuanoJulio César Gil LuanoLuañoN. SurisЛ. ЛуаньоN. Suris + +2797154Erik HammarbergSwedish classical cellistNeeds VoteErik "Smooth Punch"Erik "Smooth Punch" HammarbergGöteborgs SymfonikerA New GroundGrave Consort + +2797159Björn JohannessonSwedish classical violistCorrectGöteborgs Symfoniker + +2797166Bengt GustafssonSwedish classical violinistCorrectGöteborgs Symfoniker + +2797281Torsten FrankGerman violist, born in 1968 in Freital, East Germany.Needs VoteT. FrankDresdner PhilharmonieNDR SinfonieorchesterNDR Elbphilharmonie OrchesterFabergé-Quintett + +2798324George PotterEarly jazz banjoistNeeds VoteGeorge PorterJohnny De Droit And His New Orleans Orchestra + +2798325Frank CunyEarly jazz pianistNeeds VoteJohnny De Droit And His New Orleans Orchestra + +2798326Sam Speed (2)BanjoistNeeds Vote"Speed"Samuel SpeedMamie Smith And Her Jazz HoundsLeroy Smith And His OrchestraPerry Bradford Jazz PhoolsJohnny Dunn's Original Jazz Hounds + +2798327Rudolph LevyEarly jazz saxophonistNeeds VoteLevyJohnny De Droit And His New Orleans Orchestra + +2798329Henry RaymondEarly jazz clarinetistNeeds VoteJohnny De Droit And His New Orleans Orchestra + +2798330Russ PapaliaEarly jazz trombonistNeeds VotePapaliaR. PapaliaRuss PapliaJohnny De Droit And His New Orleans OrchestraRuss Papalia & His Orchestra + +2798331Paul De DroitEarly jazz drummerNeeds VotePaul DeDroitPaul DedroitPaul G. DeDroitJohnny De Droit And His New Orleans Orchestra + +2798333Johnny De DroitEarly jazz cornetist and band leaderNeeds Votehttps://adp.library.ucsb.edu/names/112330De DroitDeDroitJ. De DroitJ. DeDroitJohnny DeDroitJohnny DedroitJohnny de DroitJohnny De Droit And His New Orleans Orchestra + +2799067Elisabeth GöringGerman bassoonist, born 1982 in Erfurt, GDR.Needs Votehttp://www.elisabethgoering.de/Gustav Mahler JugendorchesterOrchestra La ScintillaQuadriga Fagott EnsembleOrchester Des Schleswig-Holstein Musik FestivalsBundesjugendorchesterPhilharmonia Zürich + +2799076Matthias RaczGerman bassoonist, born 1980 in Berlin, Germany. Correcthttp://www.matthiasracz.de/Matthias RàczMatthias RáczGürzenich-Orchester Kölner PhilharmonikerLucerne Festival OrchestraQuadriga Fagott EnsembleBundesjugendorchesterTonhalle-Orchester Zürich + +2799077Michael von SchönermarkGerman bassoonist, born 1981 in Berlin, Germany. +Needs Votehttp://www.vonschoenermark.de/Michael_von_Schoenermark/Start.htmlZürcher KammerorchesterKonzerthausorchester BerlinQuadriga Fagott EnsembleKonzerthaus Kammerorchester BerlinBundesjugendorchesterTonhalle-Orchester Zürich + +2799367Вениамин МарголинВениамин Савельевич МарголинSoviet classical trumpeter and trumpet teacher at the Leningrad Conservatory +(Petrograd, 12 Jan. 1922 - Saint-Pétersbourg, 19 Mar. 2009) + + +Needs VoteVeniamin MargolinВ. МарголинLeningrad Philharmonic Orchestra + +2799371Лев ПечерскийЛев Израилевич ПечерскийRussian bassoonist. Born 1923, died 2010, in Saint Petersburg, Russia [latin: Lev Pechersky / Petcherski / Petchersky / Perchersky]Needs Votehttps://ru.wikipedia.org/wiki/Печерский,_Лев_ИзраилевичL. PecherskyL. PechervskyLev PecherskyLev PetcherskiLev PetcherskyLeve PercherskyЛ. ПечерскийЛенинградский Квинтет Духовых Инструментов + +2800163John Fielding (2)Needs VoteThe Jungle Band + +2800715Jerry CokerAmerican jazz clarinetist and saxophonist, born 28 November 1932 in South Bend, Indiana, USA. Retired after many years on the jazz faculty of The University of Tennessee in Knoxville. Died 14 January 2024 in Knoxville, Tennessee. Needs Votehttps://adp.library.ucsb.edu/names/309056https://en.wikipedia.org/wiki/Jerry_CokerCokerJ. CokerJerry Coker QuartetWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdThe Mystery Band (3)The Nat Pierce-Dick Collins NonetThe Charlie Spivak OrchestraThe HerdmenThe Mel Lewis Septet + +2801021Carles Mas I GarciaClassical percussionistNeeds VoteCarles MasCarles Mas i GarciaLa Simphonie Du MaraisCompagnie Maître Guillaume + +2802374Christopher TippingAlto vocalistNeeds VoteChris TippingThe Choir Of Westminster AbbeyBuckfast Abbey Choir + +2802375John NewClassical tenor vocalistNeeds VoteThe Choir Of Westminster Abbey + +2802977Johnny Morris (8)Jazz trombonistNeeds VoteJohn MorrisLionel Hampton And His OrchestraBenny Carter And His Orchestra + +2802979Joe EppsAmerican saxophonist in the swing era.Needs VoteJoseph EppsBenny Carter And His Orchestra + +2802981Harold Clark (3)Jazz saxophonistNeeds VoteH. ClarkH.C. ClarkHal ClarkHarold ClarkeLucky Millinder And His OrchestraBenny Carter And His Orchestra + +2804052Roy "King David" Eldridge & His Little JazzNeeds Major Changes"King David" And His Little JazzKing David & His Little JazzKing David And His Little JazzRoy EldridgeRoy Eldridge & His Little JazzRoy Eldridge And His "Little Jazz"Roy Eldridge And His Little JazzRoy Eldridge And His Little Jazz EnsembleRoy Eldridge QuartetRoy Eldridge Septet“King David” And His Little JazzDick HymanPierre MichelotRoy EldridgeZoot SimsEd Shaughnessy + +2804909Georg TaubeClassical alto / tenor vocalistNeeds VoteRundfunkchor BerlinBerliner Solisten + +2804910Friedrich RechenbergClassical alto vocalistCorrectBerliner Solisten + +2804911Matthias NeubertClassical Viol & Viola da Gamba instrumentalistNeeds VoteStaatskapelle DresdenCappella Sagittariana Dresden + +2804912Klaus SilberClassical tenor vocalistNeeds VoteRundfunkchor Berlin + +2804919Johannes SprangerClassical alto vocalistNeeds VoteRundfunkchor Berlin + +2804920Günter FriedrichGerman classical violinistCorrectGünter FredrichStaatskapelle DresdenCappella Sagittariana DresdenDresdner Kapellsolisten + +2804921Friedrich MilatzClassical violistCorrectStaatskapelle DresdenCappella Sagittariana Dresden + +2804925Siegfried HausmannGerman classical vocalist (Bass + Baritone)Needs VoteRundfunkchor BerlinCapella Lipsiensis + +2805757Tom Berry (5)UK trombonist.Needs Votehttps://www.facebook.com/tom.berry.10https://www.linkedin.com/in/tom-berry-958a86b0/London Symphony Orchestra + +2805886Knut WeberAustrian cellist, born in 1974 in Klagenfurt, Austria.Needs VoteBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerOrchestre Mondial Des Jeunesses Musicales + +2805894Claudine St-ArnauldClassical violinistNeeds VoteLes Violons du RoyOrchestre Mondial Des Jeunesses MusicalesWinnipeg Symphony Orchestra + +2805895Steffen WeiseGerman violist (viola player), born in Berlin, Germany.Needs VoteGewandhausorchester LeipzigStaatskapelle DresdenEuropean Union Youth OrchestraOrchestre Mondial Des Jeunesses MusicalesOrchester Des Schleswig-Holstein Musik Festivalshr-Sinfonieorchester + +2805899Gersia Sanchez JaimeGersia del Carmen Sánchez JaimeSpanish classical violinist.Needs VoteOrquesta Sinfónica de RTVEOrchestre Mondial Des Jeunesses Musicales + +2805902Elke BärGerman violist.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgOrchestre Mondial Des Jeunesses Musicales + +2805910Lelie ResnickClassical oboistNeeds Votehttps://www.facebook.com/lelie.resnickLelie Ann ResnickThe Hollywood Studio SymphonyLos Angeles Philharmonic OrchestraHollywood Bowl OrchestraPacific Symphony OrchestraOrchestre Mondial Des Jeunesses Musicales + +2805911Jens Kristian SogaardJens Kristian SøgaardClassical trombonistNeeds VoteJens Kristian SøgaardJens-Kristian SöögardGöteborgs SymfonikerOrchestre Mondial Des Jeunesses MusicalesGageego! + +2805923Ralf Dietze (2)German classical violist.Needs VoteStaatskapelle DresdenOrchestre Mondial Des Jeunesses MusicalesDresdner Kapellsolisten + +2805940Ana LebedinskiAna Vladanovic-LebedinskiClassical violinist, born in 1974.Needs VoteAna Lebedinski-VladanovicAnna LebedinskiMünchner PhilharmonikerSüdwestdeutsche PhilharmonieOrchestre Mondial Des Jeunesses Musicales + +2805959Annika ThielGerman violinist.CorrectStaatskapelle DresdenOrchestre Mondial Des Jeunesses Musicales + +2805962Volkhard SteudeGerman violinist, born 1971 in Leipzig, Germany. He's a concertmaster of the [a754974] and [a696188].Needs Voteフォルクハルト・シュトイデOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Chamber Orchestra Of EuropePhilharmonia Schrammeln WienOrchestre Mondial Des Jeunesses MusicalesWiener VirtuosenSteude Quartett + +2806056William J. ScottAmerican tenor saxophonist, arranger, composer from the Swing era, known for his work with [a=Jay McShann]Needs VoteBill ScottScottW. J. ScottW. ScottWilliam ScottWillie ScottJay McShann And His Orchestra + +2807557Robert CrowleyCanadian classical clarinetistNeeds VoteOrchestre symphonique de MontréalMontreal Chamber Players + +2807991Claus KörferClassical double bassist.Needs VoteMusica Antiqua KölnLa StagioneCappella ColoniensisDas Kleine KonzertDas Neue OrchesterDüsseldorfer Symphoniker + +2808175Helena Kollback-HeumanHelena Britta Maria Kollback HeumanSwedish classical violinist, born July 18, 1968.Needs VoteHelena K HeumanHelena K. HermanHelena K. HeumaHelena K. HeumanHelena KollbackHelena Kollback HeumanGöteborgs SymfonikerSommarkvintetten + +2808177Cecilia HultkrantzEva Maria Cecilia HultkrantzSwedish classical violinist, living in Björboholm outside of Gothenburg, born on 23 April 1979. + +She is married to [a10357729].Needs VoteCecilia HulkrantzCecilia HultcrantzCecilia HunlkrantzGöteborgs SymfonikerSexteto Tangotica + +2808967Philip Moore (3)British pianist, born in 1976.Needs VoteHebrides EnsembleLSO Percussion EnsembleColin Currie Group + +2808988Sol MarcossonAmerican violinist, born 10 June 1869 in Louisville, Kentucky and died 10 January 1940.CorrectMarcossonThe Cleveland Orchestra + +2809135Julia HarguindeyArgentinian-born classical bassoonistNeeds VoteLes Violons du RoyNashville Symphony OrchestraL'Orchestre Symphonique De Trois-Rivières + +2809404Norbert AngerGerman cellist, born in 1987 in Freital, GDR.Needs Votehttp://norbertanger.com/en/home/Staatskapelle DresdenOrchester der Bayreuther FestspieleDresdner KammersolistenDuo Anger-GerassimezDresdner Oktett + +2811044Jasper Taylor's State Street BoysNeeds Major ChangesJasper Tayler And His State Street BoysJasper Taylor & His State Street BoysJasper Taylor And His State St. BoysJasper Taylor And His State Street BoysJasper Taylor' & His State Street BoysJohnny DoddsFreddie KeppardJasper TaylorTiny ParhamEddie Ellis (2) + +2811050Thomas RieblAustrian violist and music professor, born 1956 in Vienna, Austria.Needs Votehttps://db.musicaustria.at/node/70992T. RieblThomas Riebelトマス・リーブルFranz Schubert Quartet Of ViennaWiener Streichsextett + +2811053Erich SchagerlAustrian violinist, born 1953 in Wilhelmsburg, Austria.Needs Votehttps://www.facebook.com/pages/Erich-Schagerl/436745799769786E. SchagerlOrchester Der Wiener StaatsoperWiener Philharmoniker + +2811424KrewellaJahan Yousaf, Yasmine Yousaf, and Kris Trindl (aka Rain Man) formed the EDM trio Krewella in Chicago, Illinois. They got together in 2007 but didn't release their first material until 2011, when they uploaded a handful of songs — including the jagged, celebratory "Life of the Party" — to their Soundcloud page. In 2012, they self-released their first two EPs: Play Hard (June), featuring the reggae-flavored "Killin It," and Play Harder (December). The former reached number ten on Billboard's Top Dance/Electronic Albums chart. The same year, the trio became a staple of the festival circuit, including New York's Electric Zoo and Texas' Meltdown.Needs Votehttp://www.krewella.net/http://www.facebook.com/krewellahttp://twitter.com/krewellahttp://soundcloud.com/krewellahttp://www.youtube.com/user/krewellahttp://www.equipboard.com/krewellaJahan YousafYasmine YousafKris Trindl + +2811784Sam Lewis (5)Early jazz trombonist (born December 2, 1897 in Boston, MA) + +Lewis received his first musical training from age 8 on alto horn in the Leopold Morse Home orphanage in Mattapan, MA in the institution's brass band. + +He soon upgraded to cornet. From age 13, he studied slide trombone, harmony, solfeggio and tympani while attending the English High School in Boston, MA to become a symphony musician. + +After graduating from high school, Sam Lewis moved to New York City for theater work. Dance and jazz band work started around 1918, and studio work soon followed. In November 1920 Lewis joined [a341395] and stayed until late 1923. After that, Lewis joined [a=Ben Selvin & His Orchestra] full-time. He stayed with Selvin until late 1927 or early 1928. + +From 1937, he played trombone with the NBC Symphony Orchestra headed by [a=Arturo Toscanini]. Lewis corresponded with discographers like Brian Rust or Joseph W. Freeman and provided information on recordings on which he played, but the circumstances, dates and locations of his later life and death are unknown. +Needs Votehttp://georgeborgman.blogspot.com.es/2015/05/article-on-trombonist-sam-lewis-from.htmlhttp://www.oocities.org/vienna/strasse/1937/nbcplayers.htmlSammie LewisSammy LewisPaul Whiteman And His OrchestraBen Selvin & His Orchestra + +2813220Didier VéritéFrench timpanist and percussionist.CorrectOrchestre National De L'Opéra De Paris + +2813831Spencer OdomJohn Spencer OdomUS American pianist, arranger and conductor. +b.: August 19, 1913 in Chicago, IL +d.: December 24, 1962 in New York City, NYCorrectS. OdonSpencer OdonSpencer OdumSpencer OdunLionel Hampton And His OrchestraThe MarinersThe Southernaires (4) + +2813837Kelly MitropoulouΚαλλιόπη Μητροπούλου (Kalliopι Mitropoulou)Greek classically trained violinist (other instruments include keys and glockenspiel), vocalist, and violin teacher. Born in 1988 in Athens, Greece. +Also member of the ensemble Rembetiki Serenata.Needs Votehttps://www.instagram.com/onerandomkalliopi/?hl=enhttps://www.facebook.com/mitropouloukalliopi/https://submersionrecords.bandcamp.com/album/betweenhttps://hyper-opera.bandcamp.com/album/hyper-operahttps://www.sinfoniasmithsq.org.uk/people/kalliopi-mitropoulou/https://open.spotify.com/artist/7I8JYEfXuzzMkS9Z32KGCvKalliopi MitropoulouKalliopi MitroupouloΚαλλιόπη ΜητροπούλουGürzenich-Orchester Kölner PhilharmonikerAthens State OrchestraHis Majesty The King Of SpainΕπισκέπτεςSouthbank SinfoniaHeiner Schmitz SymprophonicumEcho Tides + +2816413Brett CoxSound EngineerNeeds Vote + +2818788Bill Moore (9)William Henry MooreAmerican jazz trumpet player, born 1901, New York City, NY, died June 17, 1964 in the same city. +Moore played and recorded with the California Ramblers in the 1920s. He also recorded with Ben Bernie 1925-1927, Jack Pettis 1926-1929, irving Mills 1929-1930, Fred Rich 1930, and Dorsey Brothers 1930. Later he worked in radio and studio orchestras.Needs Votehttps://yestercenturypop.com/2013/04/25/finding-bill-moore/Bill MoreBilly MooreMooreMoreWilliam MooreWillie MooreWillie Moore Jr.Willie Moore, Jr.Erskine Hawkins And His OrchestraCalifornia RamblersIrving Mills And His Hotsy Totsy GangThe Dorsey Brothers And Their New DynamiksThe Vagabonds (6)Ben Bernie And His Hotel Roosevelt Orchestra + +2818789Lloyd "Ole" OlsenUS jazz trombonistNeeds VoteLloyd OlsenOlsenCalifornia RamblersThe Vagabonds (6)Ole Olson And His Orchestra + +2818790Freddy CusickDixieland jazz clarinet and tenor sax playerNeeds VoteFrank CusickFred CusickFreddie CusickCalifornia RamblersThe Vagabonds (6) + +2818791Joe LaFaroNeeds VoteJoe LafaroCalifornia Ramblers + +2818792Frank CushHot jazz and dance-band trumpet player active over records from the early 1920s to the early 1930s. Among the other groups listed, he is believed to have played with Frankie Trambauer's orchestra in 1927. Needs Votehttps://78records.files.wordpress.com/2020/05/rust_jazz-records_free-edition-6.pdf California RamblersJohnny Johnson And His OrchestraBert Lown And His OrchestraThe Vagabonds (6)University Six + +2818794Ray KitchingmanNeeds VoteRay KitchinghamThe Original Memphis FiveThe Vagabonds (6) + +2818795Arthur HandNeeds VoteHandCalifornia Ramblers + +2819098Penny PayClassical wind instrumentalistNeeds VoteGabrieli ConsortNew London Consort + +2819100Kenneth HamiltonSackbut player.Needs VoteNew London Consort + +2819101Jean McCreeryRecorder player.Needs VoteNew London Consort + +2819999Herb WeilJazz drummer active in the 1920s & 1930sNeeds VoteHerbert WeilCalifornia RamblersUniversity Six + +2820017Tommy FellineTommy FelliniDixieland jazz tenor banjo & guitar player. Recorded from 1924 to 1936.Needs VoteTom FelliniTommy FelliniCalifornia RamblersMiff Mole's MolersThe Vagabonds (6)University Six + +2820459Klaus KirbachClassical harpsichordistNeeds Voteクラウス-キルバッハKammerorchester Carl Philipp Emanuel Bach + +2820506Michael Martin KoflerAustrian flutist, born April 9, 1966 in Villach. Studied in Vienna and Basel. +Solo flutist of the [a261451] and Professor at the University Mozarteum, Salzburg.Correcthttp://de.wikipedia.org/wiki/Michael_Martin_Koflerhttp://www.michaelkofler.de/Michael KoflerMünchner Philharmoniker + +2820510Albert OsterhammerGerman clarinetist. +Needs VoteMünchner PhilharmonikerD'Lustigen Gederer + +2820846Geraint Watkins (3)Classical vocalist.CorrectWinchester Cathedral Choir + +2820911Rebecca GoldbergClassical horn and bassoonistNeeds VoteThe Academy Of Ancient MusicNorthern Chamber Orchestra + +2821024Nicolas GeremusViolinist, composer and arranger. Born 1959 in Munich, Germany. Lives in Austria since 1978. Brother of [a=Christian Tramitz].Needs VoteN. GeremusNicolas TramitzNiki GeremusWiener SymphonikerModern String QuartetAmbassade String Quartet + +2821550Jean-Noël MelleretClassical hornistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +2821678GD (4)Needs Major Changes + +2821764Joachim KlierClassical double-bass playerCorrecthttp://www.staatsoper-berlin.de/de_DE/person/joachim-klier.24530Staatskapelle BerlinConcerto Palatino + +2822995Jean-Paul BurgosClassical violin and viol player.CorrectLes Arts FlorissantsLa Petite Bande + +2822999Françoise RojatClassical viola playerNeeds VoteLe Concert SpirituelRicercar ConsortLe Poème HarmoniqueDoulce Mémoire + +2824338Jessica O'LearyBritish violinistNeeds VoteThe Academy Of St. Martin-in-the-FieldsLondon Classical PlayersThe Orchestra Of St. John's + +2824340Michael Evans (12)Cellist.Needs VoteThe Academy Of St. Martin-in-the-FieldsThe Dartington Trio + +2824958Wilbert Baranco And His Rhythm BombardiersShort-lived jazz band (1946) from Los Angeles, California, led by pianist [a=Wilbert Baranco], and with guest appearance by [a=Dizzy Gillespie] (aka "John Burk"/[a=John Birks]).Needs VoteWilbert Baranco And His OrchestraDizzy GillespieCharles MingusVic DickensonLucky ThompsonHoward McGheeSnooky YoungMarvin JohnsonGeorge WashingtonWillie Smith (2)Henry CokerEarl WatkinsKarl GeorgeFreddie SimonWilbert BarancoGene PorterBuddy HarperRalph Bledsoe + +2824959Ralph BledsoeAmerican trombonist of the swing era.CorrectR. BledsoeGerald Wilson OrchestraWilbert Baranco OrchestraWilbert Baranco And His Rhythm Bombardiers + +2825654Richard SteuartRichard Carson SteuartCanadian trumpeter and music professor, born in 1956 in Weyburn, Canada.CorrectRichard StewartBamberger SymphonikerGerman Brass + +2825655Katharina WürzlClassical obistNeeds VoteWiener Akademie + +2825657István Kertész (2)Hungarian Violinist. Born in 1945 outside of Budapest. In 1985 he founded the Festetics Quartet. +[b]For the Hungarian-born conductor (1929-1973), use [a838929].[/b]Needs VoteIstvan KertészIstván KertészKertész IstvánWiener AkademieCapella SavariaBudapest Baroque StringsFestetics Quartet + +2825912Henry RevelNeeds Major ChangesH. RevelRevel + +2826005Tom VissgrenNorwegian timpanist, percussionist and music teacher, born 1958 in Oslo, Norway.Needs VoteT. VissgrenOslo Filharmoniske OrkesterBergen Filharmoniske OrkesterCooly Horn + +2826077Lutz KlepelGerman bassoonist, born 2 August 1955.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigCapella FidiciniaArmonia Ensemble + +2826322Arthur KullingArthur Kulling (1926 - 18 September 2009) was a German classical violinist and conductor. He's the father of [a980639] and [a2875564].Needs VoteA. KullingHans KullingKullingStaatsorchester StuttgartOrchester der Bayreuther FestspieleBremer Philharmonisches StaatsorchesterAlt-Wiener Strauss-EnsemblePhilharmonisches Orchester Hagen + +2826448Zutty Singleton And His OrchestraNeeds Major ChangesZutty Singleton & His Orch.Zutty Singleton & His OrchestraZutty Singleton's OrchestraZutty Singleton + +2826889Julia Rebekka AdlerJulia Rebekka Adler, née MaiGerman viola and viola d'amore player, born 1978 in Heidelberg.Needs Votehttp://www.maerchenbilder.comhttp://en.wikipedia.org/wiki/Julia_Rebekka_AdlerAdlerJulia MaiMünchner Philharmoniker + +2827543Luis Russell And His Burning EightNeeds Major ChangesBurning EightLuis Russell & His Burning EightLuis Russell + +2827727Pater Ignatius AugustinerNeeds Major ChangesPater Ignatius + +2827728Christopher PigramClassical trumpet player from the UK.Needs VoteChris PigramThe SixteenThe Academy Of Ancient MusicHanover BandOrchestra Of The 18th CenturyConcerto Copenhagen + +2827729Robert FarleyBritish freelance classical trumpet, natural trumpet, baroque trumpet & cornetto player, and Professor of Trumpet. Born in 1963 in Dartford, Kent, England, UK. +He studied at the [l290263]. Principal Trumpet in [a=The Sixteen], [a=Orpheus Britannicus], [a=Hanover Band], [a=Concerto Copenhagen], [a=The Carmel Bach Festival Chorale & Orchestra], & the [a=Oregon Bach Festival Orchestra]. Professor of Trumpet, Natural Trumpet & Baroque Trumpet at both the [l527847] and the [l1379071].Needs Votehttps://www.facebook.com/robertfarleybaroquetrumpet/https://open.spotify.com/artist/3e1d9OqNWlkKhakOLMyM6shttps://music.apple.com/us/artist/robert-farley/253477482https://musiciansunion.org.uk/profile/robert-farley-663c8985https://www.highresaudio.com/en/artist/view/a5ae90c8-5a98-4470-b5eb-a3ba82bc5006/robert-farley-orpheus-britannicus-andrew-arthurhttps://www.resonusclassics.com/collections/robert-farley-baroque-trumpethttps://www.trinitylaban.ac.uk/study/teaching-staff/robert-farley/https://www.brasswindpublications.co.uk/acatalog/Farley.htmlBob FarleyLondon BrassPhilharmonia OrchestraThe SixteenOregon Bach Festival OrchestraMusica Antiqua KölnHanover BandCantus CöllnThe Symphony Of Harmony And InventionThe Wallace CollectionThe Carmel Bach Festival Chorale & OrchestraConcerto CopenhagenThe London Trumpet SoundOrpheus Britannicus + +2827730Kate Hamilton (2)Classical soprano / alto vocalist.Needs VoteGabrieli Consort + +2827731Adrian ChandlerBritish violinist, conductor and founder of [a=La Serenissima] ensemble in 1994.Needs Votehttps://www.laserenissima.co.uk/ChandlerLa SerenissimaNew London ConsortConcerto Caledonia + +2827732Juliet SchiemannBritish soprano vocalist and viola instrumentalist.Needs Votehttp://www.julietschiemann.com/Juliette SchiemannGabrieli ConsortMetro VoicesThe Cambridge SingersLondon VoicesGabrieli PlayersEx Cathedra Chamber ChoirThe Arianna Ensemble + +2828076Larrie HowardAmerican violinist/violist.Needs VoteCincinnati Symphony OrchestraNational Symphony OrchestraCincinnati Pops OrchestraEnsemble Sans Frontiere + +2829431Roger BullivantClassical harpsichordistNeeds VoteEnglish Chamber Orchestra + +2829583Peter Solomon (2)Classical keyboardist and organist.Needs VoteSwiss Chamber SoloistsStrings Of ZürichTonhalle-Orchester Zürich + +2830539Данило КрижанівськийДанило Якович КрижанівськийUkrainian pedagogue, composer. Best known for writing the music to the Taras Shevchenko poem «Реве та стогне Дніпр широкий» - "The Broad Dnieper (River) Roars And Moans". + +Данило Якович Крижанівський (*29 грудня 1856 — †26 лютого 1894) — український педагог, композитор, автор музики до пісні «Реве та стогне Дніпр широкий». +Needs Votehttp://uk.wikipedia.org/wiki/%D0%9A%D1%80%D0%B8%D0%B6%D0%B0%D0%BD%D1%96%D0%B2%D1%81%D1%8C%D0%BA%D0%B8%D0%B9_%D0%94%D0%B0%D0%BD%D0%B8%D0%BB%D0%BE_%D0%AF%D0%BA%D0%BE%D0%B2%D0%B8%D1%87Daniil KryzhanovskiDaniil KryzhavnoskiDanylo KryzhanivskyД. Крижанівський + +2831694Frank Newton QuintetNeeds Major ChangesThe Frankie Newton QuintetJohnny WilliamsFrank NewtonTeddy BunnAlbert AmmonsSidney CatlettMeade "Lux" Lewis + +2831848Jean GaudyClassical cellist.Needs VoteLa Camerata De BourgogneLes Musiciens Du Louvre + +2831849Pascale HaarscherClassical bassoonist.CorrectLes Musiciens Du Louvre + +2831850Laurence DuvalClassical viola player.Needs VoteLaurence Duval MadeufLe Concert D'AstréeLes Musiciens Du Louvre + +2831853Simon-Joseph PellegrinNeeds Major ChangesAbbe PellegrinAbbé PellegrinAbbé Simon-Joseph De PellegrinAbbé Simon-Joseph PellegrinPellegrinSimon Joseph De PellegrinSimon Joseph de Pellegrin + +2831855Gilles de TalhouëtClassical flautist.CorrectLes Musiciens Du Louvre + +2831856Pascale JardinClassical viola player.CorrectLes Musiciens Du Louvre + +2832504Alain JuddBritish baritoneCorrectLondon Voices + +2832895Heinz FügnerHeinz Fügner is a German flute player.Needs VoteRundfunk-Sinfonie-Orchester LeipzigRundfunk-Kammerorchester LeipzigDie Bläservereinigung Des Rundfunk-Sinfonieorchesters Leipzig + +2833385Jean-Pierre Mathieu (3)Jean-Pierre MathieuClassical sackbut & trombone player.Needs VoteJ.P MathieuJean-Pierre MathieuHespèrion XXLes Sacqueboutiers De Toulouse + +2833849Phillip KaplanAmerican flute player, born in 1914 and died in 2009.Needs VoteNew York PhilharmonicBoston Symphony Orchestra + +2834815Daniel SaidiNeeds Major ChangesD. Saïdi + +2835089Sergei DovgalioukRussian French horn player.Needs VoteSergei DovgaljukSergei DovglioukSergei DovkalioukSergej DovgalinkSerguei DovgalioukSerguei DovgaljoukNieuw Sinfonietta AmsterdamConcertgebouw Chamber OrchestraTrio St. PetersburgRadio Kamer FilharmonieAsko|Schönberg + +2835947Maritie CarpentierNeeds VoteMaritie Et Gilbert Carpentier + +2835998Tina BonifacioMaria Umbertina BonifacioUK born Harpist (1900 to 1983) of Italian/French descent. + +Trained at the Paris Conservertoire. Worked as music teacher and preformed as part of the Harp Trio in the 1930s with Harry Dyson (flute) and Gethyn Wykeham-George (cello). Early member of the [a=Royal Philharmonic Orchestra], and travelled with the orchestra on its debut tour of the US in October 1950.Needs VoteRoyal Philharmonic Orchestra + +2837131Luis JouveLuis Carlos Jouve JiménezSpanish violin player.Needs VoteOrquesta Sinfónica de RTVE + +2837281Saturday Night Swing SessionNeeds Major ChangesJohnny GuarnieriHenry "Red" AllenRoy Ross + +2837606Tony HoughamClassical bassistNeeds VoteOrchestra Of The Royal Opera House, Covent GardenThe Orchestra Of St. John's + +2838044Johann NowakClassical double bass player, active in the 1960s in Berlin.Needs VoteH. NowakHans NowakRadio-Symphonie-Orchester Berlin + +2839321Ben AldenTenor vocalistNeeds Votehttps://www.ben-alden.comBenjamin AldenLondon VoicesPolyphonyThe Cardinall's MusickExaudiThe Eric Whitacre SingersTenebrae (10) + +2839322Timothy Murphy (2)Bass vocalist.Needs VoteT. MurphyTim MurphyLondon VoicesThe Brabant EnsembleThe Eric Whitacre Singers + +2839323Amy Wood (4)Soprano vocalistNeeds VoteLondon VoicesEx Cathedra Chamber ChoirThe Exon SingersThe Eric Whitacre SingersArmonico ConsortTenebrae (10) + +2839325Laura OldfieldSoprano vocalistNeeds VoteLondon VoicesThe Eric Whitacre SingersTenebrae (10) + +2839326Martha McLorinanBritish mezzo soprano and alto vocalistNeeds Votehttps://www.marthamclorinan.comMartha McClorinanMartha McLorianMartha MclorinanLondon VoicesThe SixteenI FagioliniThe Eric Whitacre SingersTenebrae (10)Alamire + +2839333Elizabeth DruryEnglish sopranoNeeds Votehttp://www.elizabethdrurysoprano.co.ukhttps://www.facebook.com/drury.lizzieLizzie DruryLondon VoicesThe Eric Whitacre SingersArmonico ConsortTenebrae (10)Papagena + +2839336Gareth Dayus-JonesBritish baritoneNeeds VoteGareth Dayus JonesGareth JonesThe Cambridge SingersLondon VoicesThe Eric Whitacre Singers + +2839586Hermann LeebClassical lute playerNeeds VoteDr. Herman LeebHerman LeebElizabethan Consort Of ViolsTonhalle-Orchester Zürich + +2839833Alan Jeffries (2)Credited as trumpeter of the swing era.Needs VoteAlan JeffreysDon Redman And His Orchestra + +2840786The Little RamblersNeeds Major ChangesLittle RamblersDanny BarkerAdrian RolliniSam WeissJack RussinWard PinkettEd KirkebyJoe Watts (2) + +2841047Carla SpletterGerman operatic soprano, born 9 November 1911 in Flensburg, Germany and died 19 October 1953 in Hamburg, Germany.CorrectSpletter + +2841656Levee SerenadersNeeds Major ChangesLevée SerenadersJelly Roll Morton's Levee SerenadersJelly Roll Morton + +2841751Kathi ReichstallerKatharina ReichstallerGerman violinist, born in Hamburg, Germany.Needs Votehttp://www.musikerportrait.com/kathi-reichstaller/home.phpK. ReichstalerMünchner Philharmoniker + +2842012Louis Varney1844 - 1908, a French composer, specializing in the operetta register. +Needs Votehttps://fr.wikipedia.org/wiki/Louis_Varneyhttps://adp.library.ucsb.edu/names/103089L. VarneyLouis VarnayVarnayVarney + +2842700Otto PereiraClassical violinist, born in 1983, in Sofia, Bulgaria.Needs VoteGulbenkian Orchestra + +2842905Russ Phillips (2)Credited as jazz trombonist.Needs VoteRuss PhilipsLouis Armstrong And His OrchestraLouis Armstrong And His All-Stars + +2842913George Rose (2)Big band guitaristNeeds VoteFrankie Trumbauer And His OrchestraJean Goldkette And His OrchestraLarry Clinton And His Orchestra + +2843505Hans LatourClassical tenor.CorrectCollegium VocaleLa Petite Bande + +2843506Marjan SmitClassical soprano.Needs VoteCollegium VocaleCurrende + +2843661Ian Thompson (13)Classical horn player.Needs VoteBournemouth Symphony Orchestra + +2843788Josef FrohlichClassical violinist.Needs VoteJ. FrohlichJo FrohlichJo FrolichJoe FrohlichJoe FrolichJosef FrochlichJosef FröhlichJosef FrölichJoseph FroehlichJoseph FrohlichJoseph FröhlichThe Academy Of Ancient MusicConsort Of LondonOrchestra Of The Age Of EnlightenmentThe New Symphonia + +2844148Emily White (4)British trombonist and sackbut player; also plays violin (along with trombone) on one release. + +Emily White studied trombone with Alan Hutt at Wells Cathedral School, then at the Royal Academy of Music and Guildhall School of Music and Drama. She developed an enjoyment of both contemporary and early music, and works in both fields. + +Emily is a member of English Cornett and Sackbut Ensemble, whose 12 discs have won awards such as the Gramophone Early Music Award, Diapaison D'Or and Classic FM disc of the month. Their BBC Proms Debut was in 2012. + +Emily is also a member of Chaconne Brass, a quintet that specialises in new music, and Pandora's Box, a contemporary performance ensemble with John Kenny and Miguel Tantos. + +Emily has played for productions with Shakespeare's Globe Theatre since its opening in 1997, including tours to Chicago, Seoul, London West End and Barbados. She freelances regularly with The Academy of Ancient Music, The Gabrieli Consort, The Orchestra of the Age of Enlightenment, The BBC National Orchestra of Wales and the English National Ballet. Emily recently recorded sackbut for Paul McCartney on his current album, appeared on Eastenders playing the trombone, and performed sackbut in the Edinburgh International Festival with The Tiger Lilies. + +Emily teaches trombone and sackbut at RWCMD. She also directs the early trombone course at Dartington International Summer School and co-directs Huntly Summer School. She also teaches at Wells Cathedral School and at The Guildhall School of Music & Drama.Needs Votehttp://www.princeregentsband.com/musicians#/associate-membersThe SixteenCollegium Musicum 90His Majestys Sagbutts And CornettsThe Illyria ConsortThe Prince Regent's BandIn Echo + +2846755Neil FrielAmerican trumpet player, played with Woody Herman at 1967 Monterey Jazz Festival.Needs VoteNeil FreilWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +2846843Alphonso Trent And His OrchestraNeeds Major ChangesAl Trent And His OrchestraAlphonse Trent And His OrchestraAlphonse Trent's OrchestraAlphonso Trent And His Orch.Alphonso Trent OrchestraAlphonso Trent's OrchestraBandHarry EdisonIrving RandolphPeanuts HollandStuff SmithA. G. GodleyGeorge HudsonLeo "Snub" MosleyAlphonso TrentChester Clark (2)Lee Hilliard (2)Robert "Eppie" JacksonJames JetterHayes PillarsEugene CookCharles PillarsAnderson Lacy + +2848430Wolfgang TraunerAustrian violinist.Needs VoteWiener SymphonikerConcentus Musicus Wien + +2848431Lisa Autzinger-KubizekHarpsichordistNeeds VoteLisa KubizekConcentus Musicus Wien + +2848432Wolfgang PfeifferViolinistNeeds VoteW. PfeifferConcentus Musicus Wien + +2848433Fritz GeyerhoferClassical cellistNeeds VoteConcentus Musicus Wien + +2848434Wolfgang AichingerAustrian cellist, born in Wolfsberg, Austria.Needs VoteWiener SymphonikerConcentus Musicus Wien + +2848435Peter WaiteViola playerNeeds VotePeter J. WaiteVienna Symphonic Orchestra ProjectConcentus Musicus Wien + +2852232Anton PauwClassical organistNeeds VoteGabrieli Players + +2852233Rosemary TusaSoprano VocalistNeeds VoteGabrieli Consort + +2852428Ronnie RubinAmerican jazz saxophonist +Born: July 8, 1933.Needs VoteR. RubinStan Kenton And His Orchestra + +2853059George Nicholas (3)George Walker NicholasAmerican jazz saxophonist and vocalist. + +b. August 2, 1922 (Lansing, MI, USA) +d. October 29, 1997 (Queens, New York City, NY, USA)Needs VoteBig Nick "Toc"G. NicholasGeorge "Big Nick" NicholasGeorge NicholasGeorge W. NicholasBig Nick NicholasDizzy Gillespie And His OrchestraDizzy Gillespie Big BandLucky Millinder And His OrchestraTic & TocBennie Green Septet + +2853181Steven Smith (15)British classical mandolin playerNeeds VoteThe English Baroque Soloists + +2853699Gustavo MaasTenor saxophone player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdAndre's All Stars + +2854632Harald Winkler (5)German double bass player.Correcthttp://www.staatsoper-berlin.de/de_DE/person/harald-winkler.24534Staatskapelle DresdenStaatskapelle BerlinAkademie Für Alte Musik BerlinOrchester der Bayreuther Festspiele + +2857023Alfons EggerAustrian violinist, born 15 May 1947 in Vienna, Austria.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerPhilharmonia Schrammeln WienWiener Streichtrio + +2857644Morten DulongMorten Kjær DulongClassical violinist.Needs VoteDR SymfoniOrkestret + +2859344Elisabeth DingstadNorwegian violinist.Needs VoteGewandhausorchester Leipzig + +2860240Red Norvo & His Swing OctetNeeds Major ChangesOctetRed Norvo And His Swing OctetRed Norvo OctetRed Norvo Swing OctetThe Red Norvo OctetTeddy WilsonGene KrupaBunny BeriganGeorge Van EpsRed NorvoLeon "Chu" BerryArtie BernsteinJohnny MinceJack Jenney + +2860632Tove BekkenNeeds VoteBergen Filharmoniske Orkester + +2860653Claude DunsonAmerican trumpet player, Swing style.Needs VoteBenny Carter And His OrchestraAndy Kirk And His Orchestra + +2860796ActivistJyle SaundersHardstyle DJ and producer from Newcastle, Australia. + +Correcthttps://www.facebook.com/ActivistAus/https://soundcloud.com/activistaus?fbclid=IwAR02zpvGPhEJtyVyoxPIyb7UpnpeArjwxW5NOGVm_CK2nBW724pS22fkAMUhttps://www.youtube.com/channel/UCwaGlVQismirfjVlnhjnhughttps://www.instagram.com/activistaus/ + +2861444Colin WalshClassical organist & Chorus MasterNeeds VoteWalshThe Academy Of Ancient Music + +2861886Jonathan Morgan (3)Classical wood-wind instrumentalistNeeds VoteGabrieli ConsortNew London ConsortThe Guildhall WaitsThe Friends Of Apollo + +2861887Bernard Robertson (2)Classical organist and harpsichord player.Needs VoteGabrieli ConsortThe Academy Of Ancient MusicNorthern Chamber OrchestraOrchestra Of The Golden AgeThe English Concert + +2861888Robert Wilson (11)Classical tenor vocalist.Needs VoteGabrieli Consort + +2862055Ingar Ben NordbyNeeds VoteIngar Ben. NordbyBergen Filharmoniske Orkester + +2862074Alex BurnNeeds VoteA.BurnA.Burn.BurnIntra & Spherix + +2862553Jay FlynnJay FlynnDJ / producer based in Newcastle, UK +Collaborates with [a=David James Lee] in duo project, [a=Unit 13] and produces under the alias "Prohibited" +Needs Votewww.jayflynnmusic.comwww.soundcloud.com/jayflynnmusicwww.instagram.com/jayflynnmusicwww.facebook.com/jayflynnmusicJay FProhibited (4)Unit 13 + +2862560David James LeeDavid James LeeHard dance DJ / producer based in Newcastle, UK +Collaborates with [a=Jay Flynn] in duo project [a=Unit 13] +CorrectDave James LeeDave LeeDavid LeeDavid Lee JamesUnit 13 + +2863633Hyman ArluckHyman ArluckPianist, singer and composer, born 15 February 1905 in Buffalo, New York, died 23 April 1986 in New York, New York.Needs Votehttps://haroldarlen.com/https://en.wikipedia.org/wiki/Harold_Arlenhttps://www.britannica.com/biography/Harold-Arlenhttps://www.imdb.com/name/nm0002182/https://www.songhall.org/profile/Harold_Arlenhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103935/Arlen_HaroldArluckH. ArlenHarold ArlenJoe Venuti's Blue FourJoe Venuti's Rhythm BoysHarold Arlen & Johnny MercerThe West Coast Workshop + +2864152James Pattinson (2)Violinist. + +Second Violin with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +2864766Jaime Antonio RoblesJaime Antonio Robles PérezSpanish cpontrabass player. +On Orquesta Sinfónica de RTVE in the70s.Needs VoteJaime Robles PerezOrquesta Sinfónica de RTVE + +2864784Christopher Henry Hudson Booth(1865-1908) composer, organist. +Came to the United States, 1895, naturalized citizen, 1905. Organist and conductor in England. Organist First Reformed Church, Brooklyn, then organist St. Paul’s Lutheran Church, New York, 1899-1905. With Victor Talking Machine Company, 1900-1905, playing for Red Seal artists. Organist and choirmaster Church of the Advent, since 1909.Needs Votehttps://prabook.com/web/christopher_henry_hudson.booth/1095043https://hymnary.org/person/Booth_ChristopherBoothC. H. H. BoothC.H.H. BoothChristopher H. H. BoothCristopher Booth + +2864893Walther TheurerClassical wind instrumentalistNeeds VoteMünchener Bach-Orchester"In Dulci Jubilo" Ensemble + +2864895Wolfgang HaagClassical flautist, born in 1928 in Munich, Germany. +Son of composer/conductor [a3204388], husband of harpist [a935437] and father of percussionist [a2181641].Needs VoteBayerisches StaatsorchesterMünchener Bach-Orchester + +2865427Frankie MarvinFrank James MarvinVocalist, vaudeville artist, musician (guitar, washboard and steel guitar) & actor - b. Butler, Oklahoma, January 27, 1904 — died January, 1985 + +Best known as a country musician, but started out as a vaudeville artist (often working with his brother Johnny) and began his recording career as a pop & jazz vocalist in the 1920s. Later moved more into the country music field as a recording artist & performer, and worked with Gene Autry early in his career. Made some films in the late 1930s & 1940s.Needs Vote"Lazy" LarryF. MarvinF. WallaceFrank MarvinFrank Marvin & His UkeFrank Marvin And His GuitarFrankie Marvin & His GuitarFrankie Marvin & His UkeFrankie Marvin (Frankie Wallace)Frankie Marvin And His GuitarMarvinDwight ButcherJohnnie Moore (2)Ray BallFrank Wallace (2)Frankie WallaceGeorge White (13)Cowboy RogersSlim TexWalter DaltonHank Hall (3)Johnny Hart (2)Happy Jackson (2)Andy Anderson (18)Louis WarfieldBob Star (4)Andy Long (2)Joe Wright (16)Duke Ellington And His Orchestra + +2865562Ru-Pei YehClassical cellist.Needs Votehttps://www.nyphil.org/about-us/artists/ru-pei-yeh/Ru Pei YehRu Pie YehRupei YehNew York PhilharmonicNew York Chamber ConsortFormosa Quartet + +2865575Mark RomatzMark L. RomatzClassical bassoonistNeeds VoteMarc RomatzOrchestre symphonique de MontréalThe Metropolitan Opera House Orchestra + +2865987Janika LentsiusEstonian classical flautist, born January 3, 1973 in Tartu.Needs VoteJaanika LentsiusEstonian National Symphony Orchestra + +2866277Max FiedlerAugust Max FiedlerGerman composer, conductor and pianist, born 31 December 1859 in Zittau, Germany and died 1 December 1939 in Stockholm, Sweden.Needs Votehttps://adp.library.ucsb.edu/names/116746August Max Fiedler + +2866385Marit EgenesNorwegian violinist, born 1964 in Oslo, Norway.Needs VoteMarit EgernesOslo Filharmoniske Orkester + +2867860Paolo BorgonovoClassical tenor.Needs Votehttp://www.paoloborgonovo.euP. BorgonovoAccademia I Filarmonici Di VeronaCoro Della Radio Televisione Della Svizzera ItalianaLa VenexianaStirps IesseCappella AugustanaLa Compagnia Del MadrigaleVoces SuavesLa PedrinaFantazyas + +2871428Marleen KuijkenClassical viola player.Needs VoteMarlène KuijkenLa Petite Bande + +2871430Martin VijverClassical timpani artistNeeds VoteLa Petite BandeFiori Musicali + +2872192Hans Herbert WinkelHans Herbert Winkel (15 June 1913 in Hamburg, Germany - 1999) was a German pianist, cellist, conductor and composer.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +2872260Elisa CitterioItalian classical violinistNeeds Votehttps://www.tafelmusik.org/about/orchestra/bios/elisa-citterioElisa CiterrioEuropa GalanteTafelmusik Baroque OrchestraAccordoneLa VenexianaLa RisonanzaI Talenti VulcaniciQuartetto "Joseph Joachim"Divertissement (2) + +2872288Børge NordlundDanish jazz pianist and band leaderNeeds VoteBørge Nordlund Klaver Et RytmeNordlundLeo Mathisens BandBørge Nordlunds OrkesterBørge Nordlunds EnsembleKai Ewans Og Hans OrkesterKai Ewans And His Swinging 16Peter Rasmussen SeptetEtly Lizette And Her OrchestraIngelise Rune And Her Swing SextetPeter Rasmussen's SekstetBørge Nordlunds KvartetBørge Nordlunds KvintetSvend Asmussen Og Hans Swing-Quintet + +2872296Georg OlsenDanish jazz alto saxophonist and clarinetistNeeds VoteBruno Henriksens OrkesterLeo Mathisens BandKai Ewans Og Hans OrkesterAll Danish StarbandBent Fabricius-Bjerres Orkester + +2873193James Burton (4)British Countertenor & Alto vocalist and Choral Conductor, born 1974 in London. Named conductor of the [a1174797] and to the newly created position of BSO choral director in February 2017.Needs Votehttps://www.bso.org/profiles/james-burtonhttp://www.bach-cantatas.com/Bio/Burton-James.htmBoston Symphony OrchestraThe Monteverdi ChoirTanglewood Festival Chorus + +2873684Brendan BallBritish classical trumpeterNeeds Votehttps://www.linkedin.com/in/brendan-ball-5663205a/?originalSubdomain=ukRoyal Liverpool Philharmonic OrchestraMalta Philharmonic Orchestra + +2873685Robert HollidayBritish classical orchestral & chamber trombonist, and trombone tutor. +He studied at the [l459222] and [l305416]. He was a member of the [a=European Union Youth Orchestra] and [a=Foden's Band]. Former Principal Trombone with the [a=Royal Liverpool Philharmonic Orchestra], he has also held the Sub-Principal Trombone positions with the [a=BBC Philharmonic] and [a=BBC Scottish Symphony Orchestra]. He has played on many TV and film soundtracks. Sub-Principal Trombone in [a=Orchestra Of The Royal Opera House, Covent Garden] since 2015. Tutor of trombone at the Royal Northern College of Music since 2000 and the [l290263] since 2018.Needs Votehttps://centerstage.conn-selmer.com/artists/robert-hollidayhttps://www.facebook.com/RNCMtrombones/photos/a.153022231750829/327269594326091/?type=3https://www.imdb.com/name/nm12013228/Rob HolidayLondon Symphony OrchestraLondon SinfoniettaBBC Scottish Symphony OrchestraBBC PhilharmonicOrchestra Of The Royal Opera House, Covent GardenEuropean Union Youth OrchestraRoyal Liverpool Philharmonic OrchestraFoden's BandLondon Symphony Orchestra Brass + +2874250Paul OlefskyAmerican cellist, born January 4, 1926 in Chicago, Illinois and died June 1, 2013 in Austin, Texas. He was the son of pianist/conductor, [a=Maxim Olefsky].Needs VotePaul Olefsky (Cello)The Philadelphia OrchestraDetroit Symphony Orchestra + +2874385Havard LyseboHåvard LyseboSwedish classical flautist and senior lecturer at Högskolan för scen och musik from Gothenburg, born June 14, 1971.CorrectHåvard LyseboGöteborgs Symfoniker + +2874578Jerome SimasAmerican clarinetist and Assistant Professor of Clarinet at the University of Oregon.Needs VoteJeremy SimasJerry SimasSimasSan Francisco SymphonyIris Chamber OrchestraCalifornia Symphony + +2875237Dave HallettTrombonist.Needs VoteDaniel HalletDaniel HallettDave HalettDave HalletDavid HalletDavid HallettCharlie Barnet And His Orchestra + +2875536Constantin MeierCellistNeeds VoteStuttgarter Philharmoniker + +2875557Claudiu RupaRomanian violinist, based in Germany.CorrectSüdwestdeutsches Kammerorchester + +2875566Ariane VolmViolinist.Needs VoteArian VolmSüdwestdeutsches Kammerorchester + +2875662Marina SturmAmerican clarinetist. +Needs VoteThe American Symphony OrchestraOrchestra Of St. Luke'sNew Zealand Symphony OrchestraNew York City Opera Orchestra + +2875679Kathleen Ann ParkerUS songwriter.Needs Votehttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=260829&subid=0K. A. ParkerK.A ParkerK.A. Parker + +2877479Bläserensemble Sabine MeyerWind ensemble from Switzerland.Needs VoteSabine Meyer BläserensembleSabine Meyer Wind EnsembleAlbrecht MayerDiethelm JonasSabine MeyerJoachim KlemmSergio AzzoliniGeorg KlütschBruno SchneiderKlaus LohrerReiner WehleKarl-Theo AdlerDietmar UllrichNikolaus FrischRichard Schneider (4)Niklaus Frisch + +2878009Peppina Von DeringerNeeds Major ChangesPeppinPeppina + +2878898Jonathan Cohen (7)British conductor, cellist and keyboardist, born in 1977. +He was a founder member of the London Haydn Quartet, and is currently Artistic Director of Arcangelo, and Associate Conductor of Les Arts Florissants.Needs Votehttps://www.askonasholt.com/artists/jonathan-cohenhttps://en.wikipedia.org/wiki/Jonathan_Cohen_%28conductor%29https://www.arcangelo.org.uk/artist/artistic-director-jonathan-cohen/CohenJonathan CohenLes Arts FlorissantsThe London Haydn QuartetArcangelo + +2879760Nels LindebladClassical flutistNeeds VoteOrchestre Philharmonique De Radio France + +2880825Alexandra MitchellAustralian classical violinistNeeds VoteAlex MitchellSydney Symphony Orchestra + +2881535Emmanuel GauguéFrench cellist.CorrectEmmanuel GaugueEmmanuel GuogueOrchestre De ParisQuatuor Prat + +2881682Signe AsmussenDanish singer, sopranoNeeds Votehttp://www.signeasmussen.dk/Signe Asmussen ManuittTheatre Of VoicesArs Nova CopenhagenSalsa LocaVoz Nueva + +2883258Fokke van HeelDutch hornist.Needs VoteFokke HeelNieuw Sinfonietta AmsterdamXenakis EnsembleNederlands Philharmonisch Orkest (2) + +2883389Juha UusitaloFinnish bass / baritone and flautist, born 1964 in Vaasa, Finland.Needs Votehttp://www.juhauusitalo.com/ + +2883620Victor YampolskyВиктор Владимирович ЯмпольскийVictor Yampolsky (Russian: Виктор Ямпольский) (born in 1942) is an American violinist and conductor, son of a pianist [a1428247]. He was born in the USSR and studied with [a=David Oistrach] at the Moscow Conservatory (1961–66) and [a=Nikolai Semyonovich Rabinovich] at the Leningrad Conservatory (from 1968 to 1973). + +In 1973, Victor Yampolsky immigrated to the USA, where [a=Zubin Mehta] introduced him to [a=Leonard Bernstein]. Maestro offered Victor a scholarship to study at the [l=Berkshire Music Center]. Soon after Yampolsky started performing with [a=Boston Symphony Orchestra] and later became the concertmaster of the 2nd violin group. He was an artistic director of [a=The Atlantic Symphony Orchestra] (since 1977) and [a=Omaha Symphony Orchestra] (1995–2004).Needs Votehttp://meloman.ru/performer/viktor-yampolskijBoston Symphony Orchestra + +2883807Lise AferiatFrench classical violinistNeeds VoteLisa AferiatBBC Scottish Symphony OrchestraScottish Chamber Orchestra + +2883872Jacques GrimbertFrench conductor and chorus master, born in 1929.Needs Votehttp://fr.wikipedia.org/wiki/Jacques_GrimbertJ. GrimbertJaques GrimbertFlorilegium Musicum De ParisChœur de Radio FranceOrchestre De Paris-SorbonneChœur De L'Université De Paris-Sorbonne + +2884245Chiefy ScottCredited as trumpeter.Needs VoteWilliam "Chiefy" Scott (Abdul Salaam)Louis Armstrong And His Orchestra + +2885970Sebastian ManzGerman clarinetist, born 1986 in Hanover, Germany. He's the son of [a6260795] and [a867816].Needs Votehttps://www.sebastianmanz.com/ManzRadio-Sinfonieorchester StuttgartJunge Deutsche PhilharmonieKnabenchor HannoverDuo RiulVariation5SWR Symphonieorchester + +2887653Jan DiesselhorstGerman cellist, born 18 March 1954 in Marburg, Germany and died 5 February 2009.CorrectJ. DiesselhorstBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerPhilharmonia Quartett Berlin + +2887654Gerhard WoschnyGerman cellist, born 1922 in Meißen, Germany and died 1 March 2008 in Bad Reichenhall, Germany.CorrectBerliner PhilharmonikerStaatskapelle DresdenUlbrich-QuartettDie 12 Cellisten Der Berliner Philharmoniker + +2887655Rudolf WeinsheimerRudolf Weinsheimer (2 July 1931 in Wiesbaden, Germany - 11 April 2023) was a German cellist. He was a member of the [a260744] from 1956 to 1996.Needs VoteBerliner PhilharmonikerNordwestdeutsche PhilharmonieDie 12 Cellisten Der Berliner Philharmoniker + +2887656Klaus HäusslerGerman cellist, born 1929 in Levenhagen, Germany and died 1 October 2012 in Berlin, Germany.Needs VoteBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerHerzfeld-Quartett + +2887657Alexander WedowAlexander WedowGerman cellist, born in 1933. +He studied by [a=Gerhard Stenzel] and Richard Klemm. +From 1962 to 1999 he was a Member of the [a=Berliner Philharmoniker]. +CorrectBerliner PhilharmonikerDie 12 Cellisten Der Berliner Philharmoniker + +2887658Christoph KaplerGerman cellist, born 1933 in Eberswalde, Germany and died in 2010.CorrectCh. KaplerBerliner PhilharmonikerDie 12 Cellisten Der Berliner Philharmoniker + +2888796Catherine Jones (2)Catherine JonesAustralian classical cellistNeeds Votehttps://www.catherinejones.it/The Amsterdam Baroque OrchestraThe Academy Of Ancient MusicDunedin ConsortGli Angeli GenèveCapriola Di GioiaEuropean Brandenburg EnsembleVan Diemen's BandIsland (33) + +2889969Tabea Haarmann-ThiemannGerman violist, born in 1992.Needs VoteStuttgarter Philharmoniker + +2891786Clarence Wheeler (2)Trumpet playerCorrectC. WheelerRoy Eldridge And His OrchestraAlex Jackson's Plantation OrchestraLem Fowler's Washboard Wonders + +2891964Dottie SmithDorothy May Gayla née HawesVocalist and percussionist from Philadelphia, who is best known for recording and touring with the bandleader [a=Louis Jordan] in the 1950s and 60s. She also owned a nightclub, La Gayla in Philadelphia. + +Smith was born as Dorothy Hawes in Wilmington, North Carolina, but her family moved to Philadelphia in 1930. She grew up singing in the church choir, and knew nothing about singing secular music until she met pianist [a=Beryl Booker]. During a club show, Booker invited Smith on stage, and [a=Percy Joell], bassist with the Harlemaires, was in the audience. He eventually offered Smith a spot in the group. + +Four years later the Harlemaires disbanded, and Smith returned to Philadelphia and formed her own group. About a year later, in 1952, she joined [a=Louis Jordan]'s troupe, and stayed with them for almost ten years. Afterward, Smith returned to Philadelphia, again to front her own band. Eventually she opened her own club, La Gayla, booking local musicians like Bootsie Barnes, Jimmy Oliver, and Philly Joe Jones. + +Born: 27 March 1925 in Wilmington, North Carolina, USA +Died: 27 December 2012 in Philadelphia, Pennsylvania, USANeeds VoteDorothea "Dottie" SmithDorothea SmithDorothy "Dotty" SmithDorothy SmithDotty SmithLouis Jordan And His Tympany Five + +2892147Alexander Voigt (2)German bassoon player, born 1964 in Sondershausen, GDR.CorrectVoigtRundfunk-Sinfonieorchester BerlinWenzel & Band + +2892156Howard Scott (5)Trombone player from the 1940s - 1950s + +[b] Do not confuse with Dixieland cornetist [a=Howard Scott (2)][/b] +Needs VoteHoward "Scotty" ScottBilly Eckstine And His OrchestraDeLuxe All Star BandSavoy Dictators + +2893492Isadore ZirViola and violin player.Needs Votehttps://rateyourmusic.com/artist/isadore_zir/credits/https://adpprod1.library.ucsb.edu/index.php/mastertalent/detail/211372/Zir_Isadore?Matrix_page=100000I. ZirI. ZivIsador ZirIsadore ZirrIsadore ZorIsdaore ZirIsidor ZirIsidore ZirIssadore ZirIzadore ZirIzzy ZirCharlie Parker With Strings + +2893710Mathieu HarelCanadian classical bassoonistNeeds VoteOrchestre symphonique de Montréal + +2895691Max AronoffMax Aronoff (25 December 1906 - 22 April 1981) was an American violist.Needs VoteThe Philadelphia OrchestraThe Curtis String Quartet + +2895738Robert KuppelwieserClassical organistCorrectRobert KoppelwieserRobert KuppelweiserCamerata Academica Salzburg + +2896458Katharina DargelKatharina Dargel is a German violist. She's married to the organist [a918983]. +Needs VoteGewandhausorchester LeipzigMerseburger Hofmusik + +2897498Nina Kristi SeverinsenClassical hornist.Needs VoteBergen Filharmoniske Orkester + +2898777Michael Mann (6)Michael Thomas MannGerman-American violist, violinist and literary scholar, born 21 April 1919 in Munich, Germany and died 1 January 1977 in Orinda, California. He was the son of [a247337] and the brother of [a=Erika Mann], writer, [a=Klaus Mann], writer and essayist and [A=Golo Mann], historian.Needs VoteSan Francisco Symphony + +2899031Sammy PaganSalsa percussionist, also appears as Samy Pagan, nicknamed Timbalón (died 30 Dec. 2011)Needs VoteSammy " Timbolón" PaganSammy "Timbalon" PaganSammy "Timbalón" PaganSammy "Timbalón" PagánSammy (Timbalon) PaganSammy (Timbalón) PaganSamuel "Timbalon" PaganSamy "Timbalon" PaganSamy "Timbalón" PagánMachito And His OrchestraGrupo FascinacionGrupo Ñ + +2900298Andrew Knight (3)Classical harpist.Needs Votehttps://open.spotify.com/artist/5vhNB9IZeR1xWqYtVjKplXhttps://music.apple.com/us/artist/andrew-knight/295858583KnightPhilharmonia OrchestraBBC Concert Orchestra + +2900545Harry SampGerman trumpeterNeeds Votehttps://riasbigband-berlin.de/bilder/RIAS TanzorchesterHelmut Brandt OrchestraWalter Dobschinski Und Seine Swing-Band + +2902420Rex Stewart's Big SevenNeeds Major ChangesLawrence BrownBilly KyleWellman BraudRex StewartBarney BigardDave ToughBrick Fleagle + +2903282Brad Williams (2)Jazz pianistNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandThe Metroplexity Big BandZebras NTSU + +2903448Jacques PloquinNeeds VoteJ. PloquinJacques PlocainJacques PlocquinPloquinThe Blackburds + +2905008Ben UlleryViolist.Needs VoteBenjamin UlleryBenn UlleryLos Angeles Philharmonic Orchestra + +2906240Katherine Henderson (3)Vaudeville blues singer, born June 23, 1909 in St. Louis, Missouri, who recorded for Brunswick, QRS and Velvet Tone in 1927-1930. +Niece of [a=Clarence Williams], whose groups accompanied all her recordings.Needs Votehttps://en.wikipedia.org/wiki/Katherine_Hendersonhttps://adp.library.ucsb.edu/names/113025Catherine HendersonClarence Williams' Blue Five + +2907476Sarah KwakClassical violinistCorrecthttps://www.orsymphony.org/discover/orchestra/strings/sarah-kwak/https://www.pcmsconcerts.org/artist/sarah-kwak-violin/The Harvey Rosencrantz OrchestraMinnesota OrchestraOregon Symphony Orchestra + +2907477Gina DiBelloAmerican violinist. She's married to [a1182809] and is the daughter of [a1591760].Needs VoteChicago Symphony OrchestraMinnesota OrchestraJames Matheson String Quartet + +2907479Thomas Turner (4)American violist.Needs VoteThomas C. TurnerRadio-Symphonie-Orchester BerlinMinnesota OrchestraHartog Quartett + +2907480Anthony Ross (4)American cellist.Needs VoteRossMinnesota OrchestraWilliam Schrickel's Heavy Rescue + +2907740Marcy RosenClassical cellist.Needs VoteOrpheus Chamber OrchestraCantilena Chamber PlayersMendelssohn String QuartetEnsemble BoccheriniGreenleaf Chamber Players + +2908649Reinhold SieglReinhold Siegl (29 September 1940 in Cologne, Germany) is a German cellist. He was a member of the [a754974] from 1969 to 2000.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +2910128Laurent DeckerClassical oboist Needs VoteOrchestre National De France + +2910782Vilho Luolajan-MikkolaVilho Luolajan-MikkolaBorn on November 22, 1911 in Vanaja, Finland. Died on November 14, 2005 in Helsinki, Finland. A Finnish composer. Father of [a=Mikko-Ville Luolajan-Mikkola] and [a=Markku Luolajan-Mikkola].Needs VoteV. Luojalan-MikkolaV. Luolajan-MikkolaViljo Luolajan-MikkolaViljo Mikkola + +2911327Thierry BarbéFrench double bassist.Correcthttp://www.thierrybarbe-contrebasse.com/Thierry BarbeOrchestre National De L'Opéra De Paris + +2912233German AragoBass player.Needs VoteGerman AracoGerman ArangoO. AragoLouis Armstrong And His OrchestraOrchestre Del's Jazz BiguineLouis Armstrong And His Hot Harlem Band + +2912270Lionel GuimaraesCredited as jazz trombonist.Needs VoteL. GoimaraesL. GuimaraesLionel GuimaracsLionel GuimaresLouis GuimaraesLouis Armstrong And His OrchestraLouis Armstrong And His Hot Harlem Band + +2913150Ernie FigueroaAmerican Jazz trumpet player from California. +Born 1918 Died December 24, 2005 (87 years old). +His career began in Los Angeles but he lived more than half his life in San Francisco. +He played with greats such as Benny Goodman and Gil Evans. He and his nephew, vibraphonist [a29968] had a special bond. +Needs VoteStan Kenton And His OrchestraCharlie Barnet And His OrchestraThe Nob Hill GangFreddie Slack And His OrchestraVido Musso And His OrchestraEarl Hines' Dixieland BandThe Ralph Sutton QuartetEarl Hines And His All-StarsJoe Bushkin Sextet + +2913612Dieter SonntagFlute player and score editor. Born in Regensburg/Germany, 1958-63 Solo Flute player in Baden-Baden, than with Sinfonieorchester des Bayerischen Rundfunks, München.Needs Vote + +2914717Efim BoicoIsraeli violinist.Needs VoteJesim BoicoYefim BokyoYefim BoykoOrchestre De ParisIsrael Philharmonic OrchestraThe Fine Arts QuartetThe Tel Aviv String Quartet + +2914892Ott KaskEstonian classical bass vocalist.Needs VoteEstonian Philharmonic Chamber ChoirVox Clamantis + +2915040Hansjörg SchäferGerman Viola instrumentalistNeeds VoteSüdwestdeutsches Kammerorchester + +2915041Joseph SchröcksnadelJoseph Schröcksnadel (1910 - 2006) was an Austrian classical violinist and music professor.Needs VoteJosef SchröcksnadelJoseph SchroecksnadelDas Mozarteum Orchester SalzburgDie Salzburger MozartspielerDas Mozarteums-Trio + +2915043Theo Von SchönClassical bouble bass playerCorrectTheo v. SchönSüdwestdeutsches Kammerorchester + +2915047Alois AignerAlois Aigner (born 30 May 1941) is an Austrian horn player, teacher, and former leader of the Salzburger Kammersolisten.Needs VoteA. AignerDas Mozarteum Orchester SalzburgSalzburger Kammerorchester + +2915051Fritz StrowitzkyGerman classical oboistNeeds VoteSüdwestdeutsches Kammerorchester + +2915053Hans RuderstallerJohann RuderstallerHans Ruderstaller (born 6 June 1932) is an Austrian horn player.Needs VoteH. RuderstallerDas Mozarteum Orchester Salzburg + +2915220Åke HasselgårdSten Åke Henry HasselgårdSwedish jazz clarinetist, born October 04, 1922 in Sundsvall, Sweden, died November 23, 1948 outside in Decatur, Illinois in a car accident. + +He got his clarinet of his step father when he has 16 and joined [a=Royal Swingers] during high school. In 1945 he started to work for [a=Arthur Österwall] and played in Artur Österwalls Kvinett and [a=Arthur Österwalls Orkester]. In 1946 he was part of [a=Simon Brehms Kvintett] but later that year he return to finish his studies. After he had graduated in May 1947, Hasselgård left Sweden for New York to study journalism. He continued to play jazz under the alias [a=Stan Hasselgard]. + +His career suddenly ended at the age of 26 in a car accident outside Decatur, Illinois, November 23, 1948.Needs Votehttps://sv.wikipedia.org/wiki/%C3%85ke_Hasselg%C3%A5rdhttps://orkesterjournalen.com/biografi/hasselgard-ake-klarinettist/Ake "Stan" HasselgardAke 'Stan' HasselgardStan HasselgardÅke "Stan" HasselgårdÅke 'Stan' HasselgårdStan HasselgardBenny Goodman SeptetBenny Goodman & FriendsStan Hasselgard SextetSimon Brehms KvintettThe International All-Stars (2)Stan Hasselgard And His All Star SixSimon Brehms SextettRoyal SwingersArnold Ross QuartetArthur Österwalls Orkester + +2915875Varsity EightA small group drawn from the personnel of the The [a=California Ramblers].Needs VoteThe RamblersThe Varsity EightJohnny Johnson And His OrchestraUniversity SixUniversity SextetteWonder SextetteThe Musical ComradesUniversity EightAdrian RolliniEd Kirkeby + +2916679Emma Black (2)Emma Black (born 1968) is an Australian classical oboist. Now based in Austria.Needs VoteEmma DavislimThe Australian Opera & Ballet OrchestraWiener AkademieBalthasar-Neumann-EnsembleOrfeo 55Kammerakademie PotsdamLe Concert de la LogeDas Zürcher Bläserquintett + +2917985George OrnerAmerican classical violinist, born February 19, 1939 in Jacksonville (Florida), and died December 13, 2019 in Baltimore (Maryland)Needs VoteBaltimore Symphony Orchestra + +2918257Daniel RaclotClassical cellistNeeds VoteOrchestre Philharmonique De Radio FranceTrio Bergamasque + +2919503Maire PohjanheimoMaire Pohjanheimo née TammenlaaksoA Finnish accordionist, schlager music composer and lyricist.Needs VoteMaire TammenlaaksoRani ArantoTuruttaret + +2919719Teddy Hill And His NBC OrchestraNeeds Major ChangesTeddy Hill & His NBC OrchestraTeddy Hill And His NBC Orch.Teddy Hill And His NBC Orch. With Dizzy GillespieTeddy Hill And His OrchestraTeddy Hill With His NBC OrchestraTeddy Hill and His N.B.C. OrchestraRussell ProcopeSam AllenTeddy HillShad CollinsDickie WellsJohn Smith (6)Bill DillardRichard "Dick" FullbrightBill BeasonRobert CarrollHoward Johnson (6) + +2920512Yves d'HauClassical bassoonistNeeds VoteИв д'ОLa Grande Ecurie Et La Chambre Du RoyOctuor À Vent Maurice Bourgue + +2920516Alain Denis (3)Alain Denis is a French classical oboist and English Horn player.Needs VoteАлен ДениOrchestre De ParisOrchestre De Chambre Jean-François PaillardOctuor À Vent Maurice Bourgue + +2921229Kaarlo Väinö ValveNeeds VoteA. VartiK. V. ValveK. ValveK.V. ValveKaarlo V. ValveKaarlo ValveV. VesalaV. ArtiKaarlo Väinö Vesala + +2922786Tilmann KögelClassical tenor.Needs VoteTillman KögelTilman KögelCappella AmsterdamThe Amsterdam Baroque ChoirBalthasar-Neumann-Chor + +2923332Hugo KreislerAustrian cellist, born 1 January 1884 in Vienna, Austria and died 10 September 1929 in Baden, Austria. He was the brother of [a620186].CorrectH. KreislerKreislerThe Philadelphia OrchestraWiener Philharmoniker + +2923346Michael Martin (11)American classical trumpeter.Needs VoteBoston Symphony Orchestra + +2923699Caroline HjeltCaroline Elisabeth Hjelt LapogianSwedish singer and songwriter, born 8 November 1987.Needs VoteC. HjeltCaroline HjeitIcona Pop + +2923701Aino JawoAino Jawo FredrikssonSwedish singer and songwriter, born 7 July 1986.Needs VoteA. JawoAino JawaIcona Pop + +2925110Ed BimmEdward Lawrence BimmCanadian keyboard player, vocalist, and songwriter from Pembroke, Ontario. During his career he spent 2 years in Los Angeles as a session musician. +Inducted into the Ottawa Valley Country Music Hall of Fame in 2017.Needs Votehttp://www.ottawacountrymusichof.org/inductees/eddiebimm.htmE. BimmEddy BimmFace Dancer (2) + +2925585Stephen Sanders (2)Trombonist.Needs VoteSteve SandersThe English Concert + +2926234Desmond NeysmithBritish (from London, England) freelance cello player and teacher. +He studied at the [l290263] (1996-2000). Founding member of the [a=Harlem Quartet]. Principal Cello of the [a=Chineke! Orchestra].Needs Votehttps://www.facebook.com/desmond.neysmith.1https://twitter.com/desneysmith?lang=enhttps://www.instagram.com/neysmithdesmond/?hl=enhttps://www.linkedin.com/in/desmond-neysmith-8329723/?originalSubdomain=ukhttps://lionsgatemusic.com/blog/f/desmond-neysmith-cellohttps://www.musicteachers.co.uk/teacher/e295b7cfbbe42446f7c4Philharmonia OrchestraHarlem QuartetChineke! Orchestra + +2927980Carol BaumCarol Baum ShislerAmerican harpist, born 11 July 1929 and died 15 July 2011. She was married to [a2288056].Needs VoteMiss Carol BaumChicago Symphony OrchestraSymphonic Strings + +2929847Jaakko JuteiniJacob JudénJaakko Juteini (born Jaakko Heikinpoika Juutila) was a Finnish writer. + +Born: July 14, 1781 in Hattula, Sweden [now Finland] +Died: June 20, 1855 in Vyborg, Grand Duchy of Finland [now Russia]Needs VoteJ. Juteini + +2930066Hannes Korpi-AnttilaNeeds Major Changes + +2930178Bruno BorralhinhoPortuguese classical conductor and cellist, born 1982 in Covilhã (Portugal). +Artistic Director of the Ensemble Mediterrain and member of the Dresdner Philharmonie.Needs Votehttp://www.brunoborralhinho.comDresdner PhilharmonieEnsemble Mediterrain + +2930259Adrian PucciAdrián Ricardo Pucci PardoBorn in Buenos Aires (1948). Viola player, previous member of the [a4515131] until his retirement, in 2015. He has been part of different tango ensembles.Needs VoteAdrian PuciAdrián PucciLeopoldo Federico Y Su Orquesta TípicaOrquesta Sinfónica Del Principado de Asturias + +2931106Manja SmitsDutch harp player and teacherNeeds Votehttp://www.manjasmits.com/Nieuw Sinfonietta AmsterdamResidentie OrkestRenoir Ensemble + +2931456Jakob SoelbergDanish bass vocalist, born in 1981.Needs Votehttps://www.facebook.com/jakob.soelbergMusica FictaArs Nova CopenhagenEnsemble Vox Gregoriana + +2933010Raymond DelnoyeDutch flutist.CorrectR. DelnoyeRotterdams Philharmonisch Orkest + +2933546Walter ZagatoClassical violinist. +Originally from Turin (Italy). He graduated in Turin with honors at the "G. Verdi" Conservatory. He then obtained the "Prix de Virtuosité" at the Conservatoire de musique in Geneva with C. Romano. He has completed specialization courses with V. Brodsky in Rome. +He is a founding member of the Quintetto Bislacco. Needs Votehttps://www.osi.swiss/de/osi/musiker/detail/id/4009/walter-zagatoOrchestra Della Radio Televisione Della Svizzera Italiana + +2933706Robert Ross (7)Swing trumpet player.Needs VoteBob RossR. RossRossGerald Wilson Orchestra + +2933966Annabelle HoffmanAmerican cellist.Needs VoteThe American Symphony OrchestraOrpheus Chamber OrchestraPhilharmonia VirtuosiTrioConcertant + +2934303John NesbittAmerican jazz trumpeter and arranger (born around 1900 in Norfolk, West Virginia, died 1935 in Boston, Massachusetts). John Nesbitt played with "Lillian Jones' Jazz Hounds" and [a=Amanda Randolph], then from 1925 to 1931 was part of [a=McKinney's Cotton Pickers]. He also worked as an arranger for the orchestras of Fletcher Henderson and Luis Russell. After leaving the Cotton Pickers he worked with Zach White, Speed ​​Webb and before his death with Earle Warren.Needs Votehttps://www.britannica.com/biography/John-Nesbitthttps://www.allmusic.com/artist/john-nesbitt-mn0001256520https://en.wikipedia.org/wiki/John_Nesbitt_(musician)https://adp.library.ucsb.edu/names/111533J. NeJ. NebittJ. NesbitJ. NesbittJNeJohn NesbitNeisbittNesbitNesbittMcKinney's Cotton PickersThe Chocolate Dandies + +2934865Attila DemusAttila Demus is a Hungarian violinist.Needs VoteStuttgarter KammerorchesterOrchester der Bayreuther Festspiele + +2934873Julie NeanderViolinist.Needs VoteStuttgarter KammerorchesterLes Musiciens Du Louvre + +2934877Annette SchützGerman oboistNeeds VoteRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterOrchester Des Staatstheaters Am GärtnerplatzStuttgart WindsSWR Symphonieorchester + +2934878Josef WeissteinerGerman horn player.Needs VoteRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterOrchester der Bayreuther FestspieleStuttgart WindsSWR SymphonieorchesterSzigeti Quartett + +2934881Christof BaumbuschGerman bassoonist.Needs VoteStuttgarter KammerorchesterStuttgarter PhilharmonikerEnsemble KontrasteOrchester Des Schleswig-Holstein Musik Festivals + +2934884György BognarClassical cellist born in Hungary; studied in Budapest; +later member of the Vienna Symphony Orchestra, +then principal cellist of the Stuttgart Chamber Orchestra until his retirement. +In 2023 still active as teacher and as soloist. Needs VoteGyörgy BognárStuttgarter KammerorchesterWiener Symphoniker + +2934949Peter Mountain (2)English classical violin player. Born 3 October 1923 in Shipley, West Yorkshire - Died 11 January 2013. +[b]For the photographer, please use [a1262310][/b]. + +He studied at the [l527847]. In 1943 he was conscripted into [a1581813]. In 1947 he joined [a2277962] and later was a founding player of the [a=Philharmonia Orchestra]. He was appointed leader of the [a=Royal Liverpool Philharmonic Orchestra] in 1955. In 1966 he returned to London, joining the [a=London Philharmonic Orchestra] as principal second violin; in London he also played with the [a=English Chamber Orchestra] and other ensembles. In 1968 the [a=BBC Training Orchestra] (later known as the Academy of the BBC), based in Bristol, was founded, and Mountain was appointed leader. The orchestra closed in 1975. In that year he became head of strings at The Royal Scottish Academy Of Music And Drama in Glasgow. During this period of his career he was chief string coach of [a=The National Youth Orchestra Of Scotland] from its formation in 1979, and was guest leader of orchestras including the [a=BBC Scottish Symphony Orchestra]. +He was also a chamber musician, and performed as a duo with his wife [a=Angela Dale], a pianist; the duo continued through his career. +Correcthttps://en.wikipedia.org/wiki/Peter_Mountainhttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/9825142/Peter-Mountain.htmlhttps://www.thestrad.com/uk-violinist-peter-mountain-former-rlpo-concertmaster-dies/5701.articlehttps://www.heraldscotland.com/opinion/13088258.peter-mountain/London Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraRoyal Liverpool Philharmonic OrchestraThe Band Of HM Royal MarinesThe Boyd Neel String OrchestraThe National Youth Orchestra Of ScotlandBBC Training Orchestra + +2935376Charles MindenhallClassical bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +2935428Sebastian LadwigGerman classical violist and cellist, born 3 August 1929 in Königsberg; died 15 November 2015.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksDas Münchener Barock-Trio + +2935721Lauren SteelBritish classical cello player and tutor who grew up on the Isle of Lewis in the Outer Hebrides, Scotland, UK. +She graduated from the [l=Royal Academy of Music]. She was cellist in the [a=Royal Academy Of Music Manson Ensemble]. Member of the Live Music Now scheme. Tutor at the Purcell Chamber Music Academy.Needs Votehttps://purcellcma.wordpress.com/our-tutors/lauren-steel/Lauren SteelePhilharmonia OrchestraRoyal Academy Of Music Manson Ensemble + +2935730Christopher AvisonClassical trumpeterNeeds VoteChris AvisonBournemouth Symphony OrchestraCelestia Brass (2) + +2936698Jorge de MontemayorJorge de Montemayor, Montemayor also spelled Montemor, (born c. 1520, Montemor-o-Velho, Coimbra, Port.— † Feb. 26, 1561, Turin, duchy of Savoy [Italy]), Portuguese-born author of romances and poetry who wrote the first Spanish pastoral novel.Needs VoteJorge de Montemor + +2936699George CliffordNeeds Major ChangesGeorge Clifford, Earl Of CumberlandGeorge, Earl Of CumberlandGeorge, Earl of Cumberland + +2936701Robert Devereux (2)Robert Devereux, 2nd Earl of Essex, English nobleman, born 10 November 1565, died 25 February 1601. Devereux was also a poet, and some of his poems were set to music by [a=John Dowland] and others.Needs VoteRobert Devereux, Earl Of EssexRobert, Earl Of EssexRobert, Earl of Essex + +2937209Bo Nilsson (2)Swedish Trumpet player. +Born In Stockholm 19 september 1940 + +1956 – 1961 Studies at the Royal Music Academy in Stockholm +1963 – 1968 Studies with Knut Hovaldt in Copenhagen, Denmark +1968 – 1971 Studies with Pierre Thibaud, Paris +1974 – 1975 Studies with Adolph Herseth, Chicago + +1961 – 1962 Solo-Trumpet in Norrköping Orchestra, Sweden (Herbert Blomstedt, Conductor.) +1962 – 2008 Solo-Trumpet in Malmö Symphony Orchestra, Sweden + +Mostly known as a formidable trumpet-teacher and clinician. +Had a position as Teacher all over in the world; such as Malmö, Melbourne, Stavanger, Tokyo, Bremen... +Needs VoteLiszt Ferenc Chamber OrchestraDrottningholms Barockensemble + +2937210Erika SebőkHungarian classical flautistNeeds VoteSebők ErikaLiszt Ferenc Chamber Orchestra + +2937325Harry FordNeeds VoteFordOriginal Indiana FiveSherry Magee And His Dixielanders + +2937739Teijo JoutselaTeijo Reino JoutselaTeijo Reino Joutsela (August 29, 1912 Helsinki – September 15, 1999 Helsinki) was a Finnish singer, violinist and actor, who is remembered as a member of the [a698045] and the vocal soloist of [a2447482].Needs Votehttps://fi.wikipedia.org/wiki/Teijo_JoutselaT. JoutselaKipparikvartettiHumppa-Veikot + +2938118Suomen KuvapalveluFinnish photographer.Needs VoteSKOYSkoySuomen Kuvapalvelu Oy + +2938209Friedrich PfeifferAustrian conductor and hornist, born in Hainburg, Austria.Correctwww.friedrichpfeiffer.atOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +2939570Stephen Miles (2)Classical tenor vocalist, born in London, UK.Needs Votehttps://www.milestenor.co.uk/London Voices + +2939583Kenneth Fraser AnnandNeeds VoteLondon Voices + +2939585Penny VicarsNeeds VoteLondon Voices + +2939586Carole CourtNeeds VoteLondon Voices + +2939587Christopher HobkirkNeeds VoteLondon VoicesBBC Singers + +2940376Michael SchnitzlerAustrian-American classical violinist and ecologist, born August 7, 1944 in Berkeley. First Konzertmeister of the [a696225] from 1967 to 1983.Needs Votehttp://en.wikipedia.org/wiki/Michael_SchnitzlerSchnitzlerWiener SymphonikerHaydn-Trio, WienDie Wiener Solisten + +2940518Annette DählerClassical viola playerCorrectCamerata Bern + +2940519Alexander BesaClassical viola player.Needs VoteCamerata BernCamerata ZürichLuzerner SinfonieorchesterEnsemble Tiramisu + +2940520Bernd HaagClassical viola player, born in Mannheim, Germany.Needs VoteCamerata BernLuzerner SinfonieorchesterEuler-Quartett + +2940926Kaarle KrohnKaarle Leopold KrohnFinnish folklorist. +Son of [a1725001]. Needs Votehttps://en.m.wikipedia.org/wiki/Kaarle_KrohnK. KrohnK.Krohn + +2942014Philippe d'ArgencéNeeds Major ChangesD'ArgencéPh. d'ArgencePh. d'ArgencéPhilippe d'Argenced'Argencé + +2942024Maria Del Mar EscarabajalViolinist.Needs VoteRadio KamerorkestInsomnio EnsembleRadio Filharmonisch OrkestRadio Kamer Filharmonie + +2942766Yasmine YousafYasmine YousafYasmine Yousaf (born Feb 18th, 1992) is a Pakistani-​American rapper, singer, songwriter, and one of the two female members of Krewella. Sister of [a1602881] +Needs VoteY. YousafKrewella + +2944019Reinhard WolfReinhard Wolf (born September 5, 1904, Berlin-Wilmersdorf, died April 11, 1975, Hamburg) was a German violist. He was first principal violist of the [a260744] from 1934 to 1945. After 1945 he was principal violist of the [a463867]. Brother of the pianist [a6236742]. + +Do not confuse with photographer [a=Reinhart Wolf].Needs VoteR. WolfBerliner PhilharmonikerNDR SinfonieorchesterThe Rosé Quintet + +2944097Auld-Hawkins-Webster SaxtetNeeds Major ChangesAuld - Hawkins - Webster - SaxtetAuld - Hawkins - Webster SextetAuld/Hawkins/Webster SaxtetColeman HawkinsBen WebsterCharlie ShaversGeorgie AuldSpecs PowellIsrael CrosbyBilly RowlandHy WhiteJohn Altwerger + +2945447Craig CadyNeeds Major Changes + +2947150Ilta KoskimiesIlta Eveliina KoskimiesNeeds VoteI. KoskimiesKoskimiesElina Vuorenala + +2947736Pedro ChaoCuban saxophonist. Was part of [a239399]'s orchestra in November 1962.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdAntobal's Cuban All-StarsAntobal's Latin All Stars + +2950123Daniela IvanovaBulgarian violist, born 1977 in Burgas, Bulgaria.Needs Votedanielaivanova.euOrchester Der Wiener StaatsoperWiener PhilharmonikerCasco Phil + +2950126Clemens MüllnerAustrian cellist.CorrectBayerisches Staatsorchester + +2950329Kristóf BarátiHungarian violinist, born in 1979.Correcthttp://kristofbarati.com/BaratiBarátiKristof Barati + +2950607Helen CassanoClassical soprano & alto vocalist.Needs Votehttp://www.helencassano.beHélène CassanoHuelgas-EnsembleChoeur de Chambre de NamurPsallentesVox LuminisVlaams Radio KoorChoeur Arsys Bourgogne + +2950609Robert BucklandClassical tenor vocalistNeeds VoteRBChoeur de Chambre de NamurDe Nederlandse BachverenigingCappella PratensisVox Luminis + +2950613Olivier BertenClassical tenor vocalistNeeds Votehttp://www.olivierberten.infoOBChoeur de Chambre de NamurVox LuminisScherzi Musicali + +2950614Zsuzsi TóthHungarian classical soprano vocalist.Needs VoteTóth ZsuzsiZTZsuzsanna TothTóth ZsuzsannaCollegium VocalePsallentesVox LuminisEnsemble MasquesSette Voci + +2950617Lionel MeunierLionel Meunier was born in France. He began his musical education in the music school of his town, Clamecy where he studied solfege, recorder and trumpet. +He is the artistic director of the ensemble Vox Luminis, group that he created in 2004 with his friend pianist Needs Votehttps://www.facebook.com/lionel.meunier.10/aboutL. MeunirLMChoeur de Chambre de NamurCappella PratensisVox Luminis + +2950618Bertrand DelvauxClassical bass vocalistNeeds VoteChoeur de Chambre de NamurVox Luminis + +2951791Gustav SwobodaGustav Swoboda (8 May 1917 - 1 March 1996) was an Austrian classical violinist.Needs VoteG. SwobodaGustav SvobodaWiener PhilharmonikerWiener Philharmonisches StreichquartettDas Europäische Streichquartett + +2952762Tessa RobbinsBritish violinist, and professor of violin. Born in 1930. +She studied at the [l290263] and [l957772]. She won the 8th prize in the 1955 sixth edition of the [l114993] and subsequently became a professor of violin at the Royal College of Music. Later known as Tessa Robbins-Khambatta.Needs Votehttps://open.spotify.com/artist/2hlIrHGQU02n1ZnKOFeNB3https://music.apple.com/de/browse?l=enhttps://www.beaumarisartgroup.org.au/t-artist/tessa-robbins-artist.htmlhttps://queenelisabethcompetition.be/en/candidates/tessa-robbins/149/Philharmonia Orchestra + +2952937Bläser Des Orchesters Der Wiener StaatsoperCorrectBlas-Orchester Der Staatsoper, WienBlaser StaatsopernorchestersBläser Des Orchesters Der Staatsoper WienBläser Des Orchesters Der Wiener Staatsoper In Der VolksoperBläser Des Orchesters Der Wiener VolksoperBrass Ensemble Of The Vienna State Opera OrchestraBrass Ensemble of The Vienna State Opera OrchestraEnsemble Instruments A Vent Opéra De VienneHigh Fidelity BrassWind Players Of Vienna State Opera OrchestraOrchester Der Wiener Staatsoper + +2953034Walter Stangl (2)Walter Stangl (23 December 1942 - 6 May 2008) was a German violist.Needs VoteW. StanglMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterMünchner Nonett + +2953065František BláhaClassical clarinetistNeeds VoteBláha FrantišekThe Czech Philharmonic Orchestra + +2954573Helga WeberGerman classical woodwind instrumentalist, born 1927 in the city of Leipzig where she studied piano and composition until 1947. Then her interest and activities focused on historic wind instruments.Needs VoteHamburger Bläserkreis Für Alte MusikEnsemble Helga Weber + +2955047Arno BonsClassical violinistNeeds VoteRotterdams Philharmonisch Orkest + +2955475Anthony Parenti And His Famous Melody BoysNeeds Major ChangesAnthony Parenti & His Famous Melody BoysAnthony Parenti's Famous MelodyAnthony Parenti's Famous Melody BoysTony ParentiLeon PrimaMike Holloway (4)Vic LubowskiGeorge TriayTony Papalia + +2955579Tatjana VassiljevaТатьяна Николаевна ВасильеваRussian classical cellist, born in 1977 in Novosibirsk, Russia. +Born into a musical family in Novosibirsk, Russia and began studying the cello at the age of six with Eugenij Nilov at the Special Music School. From 1989 to 1995 she was in the class of Maria Zhuravleva at the Central Music School in Moscow and, having won second prize at the Munich Competition in 1994, she moved there to study with Walter Northas at the Music High School. After graduating with distinction, completed her postgraduate degree with [a878991] at the Hanns Eisler Music College in Berlin. Needs Votehttp://www.tatjanavassiljeva.com/https://ru.wikipedia.org/wiki/%D0%92%D0%B0%D1%81%D0%B8%D0%BB%D1%8C%D0%B5%D0%B2%D0%B0,_%D0%A2%D0%B0%D1%82%D1%8C%D1%8F%D0%BD%D0%B0_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%D0%BD%D0%B0Tatiana VassilievaTatjana VassilievaTatyana VassilyevaWDR Sinfonieorchester KölnConcertgebouworkestNDR SinfonieorchesterBerliner Philharmonisches Streichquintett + +2955821Maud LangloisCanadian classical violinistNeeds VoteLes Violons du Roy + +2955824Véronique VychytilCanadian classical violinistNeeds VoteVéronique VichytylVéronique VyLes Violons du Roy + +2955826Bertrand RobinClassical viola player.Needs VoteLes Violons du RoyOrchestre symphonique de MontréalHarmonia Nova + +2955827Dominic GirardClassical double-bass (contrabass) playerNeeds VoteLes Violons du RoyLe Nouvel OpéraArion Orchestre BaroqueOrchestre Baroque De Montreal + +2955828Jean-Louis BlouinCanadian classical viola playerNeeds VoteLes Violons du Roy + +2955830Daniel CabenaCanadian countertenor vocalist Daniel Cabena holds an Honours Bachelor of Music from Wilfrid Laurier University and a Doctorate of Music from lUniversité de Montréal. Needs Votehttp://www.danielcabena.comhttps://www.facebook.com/daniel.cabenaLe Concert SpirituelMusica FioritaSchola Cantorum BasiliensisBasler MadrigalistenLa Chapelle De QuébecAbendmusiken Basel + +2955833Peter ShakletonClassical wind instrumentalistNeeds VoteLes Violons du Roy + +2955834Marie-Claude PerronCanadian classical violist.Needs VoteLes Violons du RoyQuatuor BoréalOrchestre Symphonique De Québec + +2955841Nathalie GiguèreCanadian classical cellist.Needs VoteLes Violons du RoyQuatuor Boréal + +2955846Pascale GiguèreCanadian classical violinistNeeds VotePascale GiguereLes Violons du Roy + +2955847Jean-Michel MaloufClassical trombonistNeeds VoteLes Violons du Roy + +2956974Clifford JenkinsCredited as jazz tenor saxophonist.Needs VoteC. JenkinsJay McShann And His Orchestra + +2958355Robert GetchellClassical tenor vocalistNeeds Votehttp://www.robertgetchell.com/GetchellChœur De Chambre AccentusLes CyclopesLes Musiciens De Saint-JulienLes Pages Et Les Chantres Du Centre De Musique Baroque De VersaillesGli Angeli GenèveLa Chapelle Rhénane + +2958759David Stone (17)Trombone player.Needs VoteRoyal Philharmonic Orchestra + +2961402Eric RobertFrench photographer. Has worked for the French agency [a=Sygma (2)] from 1989 to 2003. Now runs Vip Production.Needs Votehttp://eric-robert.com/E. RobertE. Robert - SYGMAE. Robert . SYGMARobert EricÉric RobertSygma (2) + +2961550Anna Maria SalvatoriItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaFilarmonica Della Scala + +2962004Karsten WittGerman artist manager and violinist.Correcthttp://en.karstenwitt.com/Bundesjugendorchester + +2962275Jimmy WadeEarly jazz cornetist, trumpeter, pianist and band leader, born c. 1895 in Jacksonville, Illinois, died February 1957 in Chicago, Illinois. +After leading own band at Queen's Hall in Chicago c. 1916, Wade was director of the band that accompanied vaudeville blues singer [a=Lucille Hegamin], working in Seattle and New York. He left in early 1920s and returned to Chicago to play with [a=Doc Cook]. Later formed own band again, playing in Chicago and also in New York at the Savoy Ballroom in 1926 and the Club Alabam in 1927. During the 1930s mainly own ensembles.Needs VoteWadePerry Bradford Jazz PhoolsWades Moulin Rouge Orch.Jimmy Wade And His DixielandersJimmy Wade's Orchestra + +2962586Samuel KraussSamuel George KraussAmerican trumpet player, born 3 December 1909 in Salem, Ohio and died 8 May 1992 in Chicago, Illinois.CorrectThe Philadelphia OrchestraSaint Louis Symphony OrchestraNational Symphony Orchestra + +2963024Markus KruscheGerman clarinetist.Needs VoteSüdwestdeutsches KammerorchesterBundesjugendorchesterKammerakademie Potsdam + +2963441Thorsten RosenbuschThorsten Rosenbusch (born 1953 in Schwerin) is a German violinist and former first concertmaster of the [a833446].Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/thorsten-rosenbusch.24433Staatskapelle BerlinKammerorchester Carl Philipp Emanuel Bach + +2963633Julia RovinskyHarpist.Needs VoteIsrael Philharmonic Orchestra + +2964491Ed LovingCredited as saxophone player.Needs VoteEddie LovingAndy Kirk And His Orchestra + +2964493Bob Murray (3)American trombonist with Andy Kirk (1940s).Needs VoteAndy Kirk And His Orchestra + +2964495John Taylor (41)US saxophonist. + +Could be the same person as [a=John Taylor (9)].Needs VoteAndy Kirk And His Orchestra + +2964498Wayman RichardsonCredited as trombone player.Needs VoteAndy Kirk And His Orchestra + +2964499John Porter (9)US baritone sax playerNeeds VoteAndy Kirk And His Orchestra + +2965874E. C. Cobb And His Corn-EatersNeeds Major ChangesE. C. Cobb And His Corn EatersJune CobbFrank MelrosePunch MillerJimmy BertrandJunie Cobb + +2966158Petra NagelGerman hornistNeeds VoteRundfunk-Sinfonie-Orchester LeipzigMDR Sinfonieorchester + +2966393Kristin MuldersAlto + mezzo-soprano vocalist.Needs Votehttp://operatilfolket.no/artister/kristin-mulders/https://kristin.mulders.no/agendaK. MuldersTheatre Of VoicesArs Nova Copenhagen + +2966578Vladimir KurlinВладимир Михайлович Курлин(March 3, 1933 - November 29, 1989) - Russian Soviet oboist and music teacher. Professor of the Leningrad Conservatory. Honored Artist of the RSFSR (1972), Honored Artist of the RSFSR (1983).Needs Votehttps://ru.wikipedia.org/wiki/%D0%9A%D1%83%D1%80%D0%BB%D0%B8%D0%BD,_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80_%D0%9C%D0%B8%D1%85%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2%D0%B8%D1%87https://100philharmonia.spb.ru/persons/21021/V. KurlinVladimir KarulovVladimir KourlineВ. КурлинВладимир КурлинKirov OrchestraLeningrad Chamber OrchestraЛенинградский Квинтет Духовых Инструментов + +2966676Bud GouldNeeds VoteBob GouldBob GouldJay McShann And His Orchestra + +2966680Dizzy Gillespie-Charlie Parker QuintetNeeds Major ChangesCharlie Parker & Dizzy GillespieCharlie Parker-Dizzy Gillespie QuintetCharlie Parker/Dizzy Gillespie QuintetDizzy Gillespie Charlie Parker QuintetDizzy Gillespie/Charlie Parker QuintetCharlie Parker + +2966683Norman Granz' Jam SessionNeeds Major ChangesJam SessionNorman Granz Jam Session + +2966684Clark Monroe's BandNeeds Major Changes + +2967850Helmut ReimannHelmut Reimann (1906 - 1994) was a German cellist.Needs VoteH. ReimannHelmuth ReimannRadio-Sinfonieorchester StuttgartBarchet-QuartettZernick-QuartettBeethoven-Trio, Stuttgart + +2968662Barbara LombardiNeeds Major Changes + +2969103Tom Hart (2)Needs VoteTheatre Of Voices + +2969108Linda LiebschutzAlto vocalistNeeds VoteTheatre Of VoicesMagnificat Baroque Ensemble + +2969109David VarnumAmerican bass vocalistNeeds VoteTheatre Of VoicesSan Francisco Symphony Chorus + +2969115Elisabeth EliassenAmerican mezzo-soprano & alto vocalist from Berkeley CA.Needs Votehttps://www.bach-cantatas.com/Bio/Eliassen-Elisabeth.htmTheatre Of VoicesAmerican Bach Choir + +2969120Edward BettsAmerican tenor vocalist and stage directorNeeds Votehttps://www.bach-cantatas.com/Bio/Betts-Edward.htmEd BettsTheatre Of Voices + +2969125Annette Rossi PutnamNeeds VoteTheatre Of Voices + +2969132Paul FlightAmerican choral conductor and countertenor & alto vocalistNeeds VotePFThe Pro Arte SingersThe Choir Of Christ Church Cathedral + +2969961Leelanee SterrettAmerican horn player.Needs Votehttps://www.facebook.com/leelaneenycLeeLanee SterrettLeelanee StreetLeelannee SterrettNew York Philharmonic + +2971316Ami LovénCarl Armas August LovénFinnish singer born on August 26, 1922 and died on August 19, 1982.Needs VoteAmi LovenAntti RautuRallineloset + +2971739RallinelosetFinnish vocal group. Lineup was Pekka Nuotio, Urho Niemelä, Reino Ahtiainen and Ami Lovén. CorrectAmi LovénPekka NuotioReino AhtiainenUrho Niemelä + +2972328Renate RuscheRenate Rusche-StaudingerGerman bass clarinettist, born in Würzburg.Needs Votehttp://www.renate-rusche-staudinger.deOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +2972854Arnold LangPercussionNeeds VoteArnie LangNew York PhilharmonicThe All Star Percussion Ensemble + +2972888Marco MasseraClassical violistNeeds VoteAccademia BizantinaLes Musiciens Du LouvreEnsemble RisognanzeEnsemble MatheusOrfeo 55 + +2973029Irene GibbonsReal name of vaudeville blues and jazz singer [a=Eva Taylor], the stage name by which she was most generally known.Needs VoteEva TaylorIrene Williams (3)The Riffers + +2974706Pascal GourgandFrench bass / baritone vocalistNeeds VoteChoeur de Chambre de NamurIndigo (34)Ensemble Jacques ModerneEnsemble Vocal Aedes + +2976462Enrique LannooArgentinian cellist, composer, arranger, orchestra director (Buenos Aires, 13 Apr. 1940), also known as Quique LannooNeeds Votehttps://www.todotango.com/creadores/ficha/3813/Enrique-LannooQuique LannooEduardo Rovira Y La Agrupación De Tango ModernoLeopoldo Federico Y Su Orquesta TípicaQuique Lannoo y Su QuintetoCuarteto Musical Buenos AiresQuique Lannoo And His Orchestra + +2976479Original Indiana FiveNew York-based band of the 1920s playing jazz music in the style of the [a=The Original Memphis Five] or the [a=Original Dixieland Jazz Band]. + +Under the name "Original Indiana Syncopators" the band made its first recordings for John Fletcher's [l=Olympic (11)] label in April and May 1923. At that point, it comprised leader Newman Fier on piano, [a=Johnny Sylvester] on trumpet, [a=Vincent Grande] on trombone, [a=Johnny Costello] on clarinet, and [a=Tommy Morton] on drums. For the May session, they added [a=Nick Vitalo] on sax and clarinet (Costello soon left) and [a=Tony Colucci] on banjo. + +In September 1923, Sylvester took over the band, which then recorded for [l=Pathé], and [a=Harry Ford] replaced Fier on piano. + +In 1925, when the band recorded with [l=Gennett], Morton became its leader. Trumpeter [a=James Christie (6)] and trombonist [a=Charles Panelli] replaced Sylvester and Grande. For the band's first [l=OKeh] sessions in September 1925, [a=Pete Pellezzi] took over from Panelli. In October 1926, Christie also left. His replacement, trumpeter [a=Tony Tortomas], joined the band for some of its best recordings until it disbanded in 1929.Needs Votehttp://www.allmusic.com/artist/original-indiana-five-mn0000402432/biographyhttps://syncopatedtimes.com/the-original-indiana-five/https://de.wikipedia.org/wiki/Original_Indiana_FiveIndiana FiveIndiana SyncopatersOriginal Indiana SyncopatorsThe Indiana FiveThe Original Indiana FiveHenderson's Dance OrchestraJohn Sylvester And His OrchestraManhattan Imperial OrchestraCharley Straight And His OrchestraThe Birmingham FiveNew Orleans Five (2)Original Tampa FiveThe Jazz Masters (2)Tony ColucciJohnny CostelloCharles PanelliVincent GrandeHarry FordTommy MortonTony TortomasNick VitaloPete PelizziPete PellezziJames Christie (6) + +2977303Magnus Skavhaug NergaardNorwegian bassistNeeds Votehttps://magnusskavhaugnergaard.bandcamp.com/Magnus NergaardMagnus S. NergaardNergaardSkavhaug NergaardIch Bin N!ntendoMonkey PlotMummuKarokhTorg (3)Juxtaposition (3)Ronja (8)PropanionsDelish + +2977677Angus AndersonScottish classical violinist. He studied at the [l527847] (1964-1968). Retired leader of [a5010570]. Associate leader of [a627128]. Co-leader of [a1622582]. Principal with the [a835546] and member of the [a=BBC Scottish Symphony Orchestra] and the [a=Philharmonia Orchestra].Needs Votehttps://twitter.com/eumeliaensemble?lang=enhttps://uk.linkedin.com/in/angus-anderson-a58b3826https://www.musicteachers.co.uk/teacher/8928bff1b9581807057dhttps://www.islay.blog/article.php/whisky-music-cantilena-festivalAngus AndėrsonBBC Symphony OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraBBC Scottish Symphony OrchestraCantilenaThe Wren OrchestraDenny Laine's Electric String BandScottish Opera Orchestra + +2978929Bud Freeman And His OrchestraNeeds Major ChangesBud Freeman & His OrchestraBud Freeman And His Orch.Bud Freeman OrchestraBud FreemanBilly ButterfieldGeorge WettlingErnie CaceresVernon BrownBob HaggartGene SchroederCarl Kress + +2978963Mildred Bailey And Her Alley CatsNeeds Major ChangesMildred Bailey & Her Alley CatsMildred Bailey And Her Alley CastTeddy WilsonJohnny HodgesBunny BeriganMildred BaileyGrachan Moncur + +2979060Mihkel PeäskeEstonian classical flutist, born April 13, 1971 in Tallinn.Needs VoteEstonian National Symphony OrchestraNYYD Ensemble + +2980203Aníbal Troilo Y Su Orquesta TípicaFamous Argentinian tango ensemble founded 1937, directed by [a777470]. Many new guard tango composers participated such as [a162564] and singer [a=Francisco Fiorentino].Needs VoteA. Troilo Y Su Orq. Típ.A. Troilo Y Su OrquestaA. Troilo Y Su Orquesta TípicaAnibal TroiloAnibal Troilo "Pichuco" Y Su Orq. TípicaAnibal Troilo "Pichuco" Y Su Orquesta TípicaAnibal Troilo & His OrchestraAnibal Troilo (Pichuco)Anibal Troilo (Pichuco) E Sua OrquestraAnibal Troilo (Pichuco) Y Su OrquestaAnibal Troilo (Pichuco) Y Su Orquesta TipicaAnibal Troilo (Pichuco) Y Su Orquesta TípicaAnibal Troilo -Pichuco- Su Orquesta Y Sus CantoresAnibal Troilo And His OrchestraAnibal Troilo E A Sua OrquestraAnibal Troilo E Sua Orquesta TípicaAnibal Troilo E Sua OrquestraAnibal Troilo Pichuco Y Su Orquesta TipicaAnibal Troilo Pichuco Y Su Orquesta TípicaAnibal Troilo Y Su OrquestaAnibal Troilo Y Su Orquesta TipicaAnibal Troilo Y Su Orquesta TíipicaAnibal Troilo Y Su Orquesta TípicaAnibal Troilo Y Sus CantoresAnibal Troilo y su OrquestaAnnibal Troilo Y Se Orq TipAníbal "Pichuco" Troilo Y Su Orquesta TípicaAníbal TroiloAníbal Troilo y Su OrquestaAníbal Troilo "Pichuco" Y Su Orq. TípicaAníbal Troilo "Pichuco" Y Su Orquesta TipicaAníbal Troilo "Pichuco" Y Su Orquesta TípicaAníbal Troilo "Pichuco" y su Orq. TípicaAníbal Troilo 'Pichuco' Y Su Orquesta TípicaAníbal Troilo (Pichoco) Y Su Orquesta TípicaAníbal Troilo (Pichucho) E Sua Orquestra TipicaAníbal Troilo (Pichucho) Y Su Orq. TípicaAníbal Troilo (Pichucho) Y Su OrquestaAníbal Troilo (Pichuco)Aníbal Troilo (Pichuco) Y Su Orq. Típ.Aníbal Troilo (Pichuco) Y Su Orq. TípicaAníbal Troilo (Pichuco) Y Su Orq.TípicaAníbal Troilo (Pichuco) Y Su OrquestaAníbal Troilo (Pichuco) Y Su Orquesta TipicaAníbal Troilo (Pichuco) Y Su Orquesta TípicaAníbal Troilo (Pichuco) Y Su Orquesta Típica*Aníbal Troilo And His OrchestraAníbal Troilo E Sua OrquestraAníbal Troilo Pichuco Y Su Orquesta TípicaAníbal Troilo Y Orq.Aníbal Troilo Y OrquestaAníbal Troilo Y Su Orq TipAníbal Troilo Y Su Orq TípicaAníbal Troilo Y Su Orq.Aníbal Troilo Y Su Orq. Típ.Aníbal Troilo Y Su Orq. TípicaAníbal Troilo Y Su OrquestaAníbal Troilo Y Su Orquesta TipicoAníbal Troilo Y Su Orquesta Típica ArgentinaAníbal Troilo y Su Orq TípicaAníbal Trolio y Su OrquestraLa Orquesta De Anibal TroiloOrchestre D'Anibal TroiloOrq. Anibal TroiloOrq. Aníbal TroiloOrq. De Aníbal TroiloOrq. Tipica Anibal TroiloOrquesta Anibal TroiloOrquesta Aníbal TroiloOrquesta De A. TroiloOrquesta De Anibal TroiloOrquesta De Aníbal TroiloOrquesta TípicaTroiloTroilo and His Orchestra TipicaKicho DiazFrancisco FiorentinoMarcos TroiloOrlando GoñiDavid Diaz (6)Angel Cárdenas (2)Carmelo Cavallaro + +2980640Morfan EdwardsHarpist.Needs VoteBournemouth Symphony Orchestra + +2980784Lerida DelbridgeAustralian classical violinistNeeds VoteSydney Symphony OrchestraTinalley String Quartet + +2981245Caitriona YeatsDanish harpistNeeds VoteDet Kongelige KapelDanmarks Radios Symfoniorkester + +2982159Glynn Lea LongEarly jazz pianist and songwriterNeeds VoteG. LongGlyn "Red" LongGlyn Lea "Red" LongGlyn Lea «Red» LongGlynn (Red) LongGlynn Lea "Red" LongLea "Red" LongLongRed LongRed LongNew Orleans Rhythm Kings + +2982160Albert BruniesJazz cornetist, nicknamed "Abbie" + +born January 19, 1900 in New Orleans, Louisiana. +died October 2, 1978 in Biloxi, Mississippi. + +Leader of [a=The Halfway House Orchestra] from 1919 to 1927 + +Brother of [a=George Brunies] and [a=Merritt Brunies] +Do not confuse with his cousin, drummer [a=Abbie Brunies].Needs Votehttps://en.wikipedia.org/wiki/Albert_Brunieshttps://books.google.de/books?id=qM16DwAAQBAJ&printsec=frontcover&dq=early+jazz+trumpet+legends+larry+kemp&hl=de&sa=X&ved=0ahUKEwilg9OJr6fkAhXE26QKHYGNAOcQ6AEIKDAA#v=onepage&q=early%20jazz%20trumpet%20legends%20larry%20kemp&f=false, p.32https://adp.library.ucsb.edu/names/110652Abbie BruniesAlbert "Abbie" BruniesBruniesThe Halfway House OrchestraAlbert Brunies And His Halfway House OrchestraBrunies Brothers Dixieland Jazz Band + +2983552Thomas HerzogGerman oboist and English hornist, born 1967 in Potsdam, GDR.Needs VoteRundfunk-Sinfonieorchester BerlinPotsdamer Turmbläser + +2984638David RabinovichClassical violinist.Needs VoteDave RabinovichDavid RabinovichiDavid RabinoviciThe Amsterdam Baroque OrchestraMusica Ad RhenumEnsemble OdysséeApollo EnsembleStile GalanteEnsemble Marguerite LouiseThe Beggar's EnsembleStracc + +2984645New Orleans RamblersNeeds Major ChangesBen's Bad BoysThe Kentucky GrasshoppersLouisville Rhythm KingsThe Dean And His Kids + +2984761Alain MehayeFrench violist.CorrectOrchestre De Paris + +2984789Christoph KnittGerman bassoonistNeeds VoteChristof KnittKammerakademie PotsdamEnsemble 4.1 + +2984791Oliver Link (2)German saxophonist, born in 1966 in Mundelsheim, Germany.Needs VoteLinkRundfunk-Sinfonieorchester BerlinBigBand Deutsche Oper BerlinEast Side Oktett + +2986765Stephen MilneBritish cellist.Correcthttps://www.imdb.com/name/nm2378732/Philharmonia OrchestraThe National Youth Orchestra Of Scotland + +2986906Harry KerrBritish classical violinistNeeds Votehttp://harrykerr.co.uk/KerrLondon Philharmonic OrchestraClosed Circuit Strings + +2986915Peter Graham (5)Classical violinistNeeds VotePete GrahamRoyal Philharmonic Orchestra + +2986918Daniel Gardner (3)Classical cellist. +He studied at the [l290263]. After studying in the US and the [l459222] (graduated in 2002), he joined the [url=https://www.discogs.com/artist/837699-BBC-Philharmonic]BBC Philharmonic Orchestra[/url] and later made the move to London as number four cello with the [a=Philharmonia Orchestra], before becoming a member of the [a=London Symphony Orchestra] in 2009.Needs Votehttps://www.feenotes.com/database/artists/gardner-daniel/https://lso.co.uk/orchestra/players/strings.html#CellosLondon Symphony OrchestraPhilharmonia OrchestraBBC Philharmonic + +2986922Rebecca ChambersClassical violist.Needs VoteBecky ChambersBBC Symphony OrchestraThe English National Opera Orchestra + +2988410John B. ArnoldAmerican jazz drummer, composer, programmer and teacher. Has performed as a leader and sideman with Gary Thomas, Greg Osby, John Pattitucci, Matthew Garrison, Kenny Garrett, DAvid Binney, Adam Pieronczyk, Jean Paul Bourelly, Larry Goldings, Uri Caine, John Abercrombie, Jamaaladeen Tacuma, Adam Rogers, Robert Kubiszyn, Tim Le Febvre, Orlando Le Fleming, Steve Grossman, George Garzone, Reggie Washington, Alfonso Johnson, George Colligan, Chet Baker, Ray Bryant, Larry Schneider, Maurizio Giammarco, Antonio Faraò, Greg Burk, Michael Rosen, Jim Beard, Martha Reeves and The Vendellas and many others. +Grandson of [a=Hoagy Carmichael].Needs Votehttps://www.johnbarnoldmusic.comArnoldJohn ArnoldJon ArnoldChet Baker QuartetTown StreetRiccardo Fassi Tankio BandFassi_Tessarollo SestettoCosmo Intini & “The Jazz Set”TricyclesJohn Arnold & Black MarketRené Sandoval 4Danilo Zanchi TrioAntonangelo Giudice Stefano Coppari QuartetMalastrana Quartet + +2988948Ragnhild LotheClassical hornist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +2988949Agnese RugevicaAgnese RugēvicaLatvian cellist, active in Norway since 2000.Needs VoteAgnese RugevicováAgnese RugēvicaBit 20 EnsembleBergen Filharmoniske Orkester + +2988951Geir Atle StangenesViolinist.Needs VoteBit 20 EnsembleBergen Filharmoniske OrkesterBergen Chamber Ensemble + +2990253Fred FarrarEarly jazz trumpeterNeeds VoteF. FarrerFred "Fuzzy" FarrarFuzzy FarrarFuzzy FarrarJean Goldkette And His OrchestraThe Dorsey Brothers OrchestraJoe Venuti And His New Yorkers + +2991070Markus PoschnerGerman conductor, born in 1971 in Munich, Germany.Needs Votehttp://www.markusposchner.de/poschner/index.phpM. PoschnerBruckner Orchestra Linz + +2991691Marc BéliveauCanadian classical violinistNeeds VoteOrchestre symphonique de Montréal + +2991694Sophie DugasClassical violinistNeeds VoteSophie DucasOrchestre symphonique de Montréal + +2991697Eric ChappellClassical bassistNeeds VoteE. ChappellOrchestre symphonique de Montréal + +2991698Jennifer SwartzCanadian classical harpistNeeds VoteJennifer SchwartzOrchestre symphonique de MontréalThe Chamber Players of CanadaMontreal Chamber Players + +2991699Brian MankerCanadian classical cellistNeeds Votehttp://www.brianmanker.com/Orchestre symphonique de MontréalNew Orford String QuartetLes Solistes OSMMontreal Chamber Players + +2991700Brigitte RollandCanadian violinist, born 8 October 1964.Needs VoteOrchestre symphonique de Montréal + +2991702Vivian Lee (5)Canadian classical trombonist +Born in 1960 and died septembre 30, 2023Needs VoteOrchestre symphonique de Montréal + +2991704Isabelle LessardClassical violinistNeeds VoteOrchestre symphonique de Montréal + +2991705Natalie RacineClassical violistNeeds VoteNathalie RacineOrchestre symphonique de Montréal + +2991707Marie DoréClassical violinist.Needs VoteOrchestre symphonique de MontréalMcGill Chamber OrchestraOrchestre Métropolitain du Grand MontréalOrchestre De Radio-CanadaI Musici De Montréal + +2991708Jean Fortin (3)Canadian viola playerNeeds VoteOrchestre symphonique de Montréal + +2991712Daniel YakymyshinClassical violinistNeeds VoteDaniel YakymyshynOrchestre symphonique de Montréal + +2991713Anna-Belle MarcotteCanadian viola playerNeeds Votehttps://www.osm.ca/fr/anna-belle-marcotte/Annabelle MarcotteOrchestre symphonique de MontréalAmati Ensemble + +2991715Katherine MankerClassical violinistNeeds VoteOrchestre symphonique de Montréal + +2992054Tomáš FrantišClassical bassoonistNeeds VoteTomáš FrantisThe Czech Philharmonic OrchestraPrague PhilharmoniaPrague Philharmonia Wind Quintet + +2992869Jammin' The Blues (2)Needs Major Changes + +2993086Gabriella HegyesiHungarian classical flautistNeeds VoteHegyesi GabriellaLiszt Ferenc Chamber OrchestraMagyar Rádió Szimfonikus Zenekara + +2993089Ernő KlepochClassical viola player.Needs VoteErnó KlepochErnö KlepochKlepoch ErnőCapella LipsiensisLiszt Ferenc Chamber OrchestraGruppe Neue Musik "Hanns Eisler" Leipzig + +2993558Johann Gottlob HarrerJohann Gottlob HarrerJohann Gottlob Harrer ( 8 May 1703 - 9 July 1755) was a German composer and conductor. He was the Thomaskantor for the [a791789], Leipzig from 1750 to 1755. +Needs VoteGottlob HarrerHarrerStaatskapelle Dresden + +2993575Christiane SilberGerman conductor and viola player, born in Berlin, Germany.CorrectRundfunk-Sinfonieorchester BerlinDas Inselorchester + +2994105Cliff Jackson (3)American jazz saxophonist (Baritone)Needs VoteJacksonHarry James And His OrchestraJimmy Dorsey And His OrchestraMerle Koch And Michele's Silver Stope Jazz BandMerle Koch's Polite Jazz QuartetBarclay Allen And His Orchestra + +2994205Robert Yeomans (2)English born classical violinist.Needs VoteRob YeomansRoyal Scottish National OrchestraMarylebone CamerataYeomans String Quartet + +2994499Alison PlaceMezzo-soprano vocalistNeeds VotePlaceThe Monteverdi ChoirTaverner Choir + +2994646Woody Herman's Four ChipsAmerican jazz ensemble in 1940. [a239399] took a quartet from 'The Band That Plays the Blues' ([a284746] - Carlson, White, Linehan and Yoder) in order to produce records in studio. This selection were the main musicians of the contemporary big band. The first recording sessions took place in New York, September 9, 1940. +The ensemble was reactivated in February 1947, shortly after Herman disbanded the first herd. Those sessions lasted until March 31st, 1947 and were made with a different ensemble but with the same name.Needs VoteThe Four ChipsWoody Herman With The Four ChipsWoody Herman & Four ChipsWoody Herman & His 4 ChipsWoody Herman & His Four ChipsWoody Herman & The Four ChipsWoody Herman And His Four ChipsWoody Herman Four ChipsWoody Herman With The Four ChipsWoody Herman Y Su ConjuntoWoody HermanBarry GalbraithTiny KahnDon LamondJoe ShulmanRalph BurnsJ.C. HeardJackie MillsFrank CarlsonChuck WayneTrigger AlpertWalt YoderGene SargentHy WhiteTommy LinehanDick KaneAndy Lambert (4) + +2994908Marshall Thompson (2)Chicago jazz drummer, percussionist and uncle of [a=Marshall Thompson] of [a=The Chi-Lites]. Born August 24, 1942 in Chicago, Illinois, United States. +Recorded with artists such as [a=Eddie Higgins], [a=Dodo Marmarosa], [a=Gene Shaw], [a=James Moody], [a=Eddie Harris] & [a=Wayne Shorter].Needs VoteMarshal ThompsonMarshall ThompsonWoody Herman And His OrchestraDodo Marmarosa TrioWoody Herman And The Thundering HerdThe Eddie Higgins Trio + +2995520Wilhelm SchwinghammerGerman operatic bass, born 1977 in Vilsbiburg, Germany.Needs Votehttps://de.wikipedia.org/wiki/Wilhelm_Schwinghammerhttps://www.bach-cantatas.com/Bio/Schwinghammer-Wilhelm.htmWilly SchwinghammerRegensburger DomspatzenCollegium Vocale + +2995827Erich Graf (2)Erich Graf was an Austrian violinist and violin professor. He was a member of the [a754974] from 1936 to 1972.Needs VoteProfessor Erich GrafOrchester Der Wiener StaatsoperWiener Philharmoniker + +2995949Isabelle SchmittGerman Soprano vocalist from BerlinNeeds Votehttp://isabellschmitt.com/Startseite/Le Concert Spirituel + +2996256Béla KovácsHungarian clarinetist, born May 1, 1937 in Tatabánya, Hungary. Died November 7, 2021.Needs Votehttps://hu.wikipedia.org/wiki/Kov%C3%A1cs_B%C3%A9la_(klarin%C3%A9tm%C5%B1v%C3%A9sz)https://en.wikipedia.org/wiki/B%C3%A9la_Kov%C3%A1cs_%28clarinetist%29https://www.imdb.com/name/nm8913582/: Greetings From The BalkanB. KovacsB. KovácsB.KovacsBela KovacBela KovacsBéla KovacsBéla KováčKovacsKovacs BèlaKovácsKovács BélaБ. КовачБела КовачLiszt Ferenc Chamber OrchestraMagyar FúvósötösSwing & Musical Orchester GrazThe Budapest Clarinet Quintet + +2996287Werner BinderTrumpet player. + +Musical training at the Bavarian Conservatory, Würzburg with Special Advancement Award 1962; 1964-75 solo trumpet Munich Philharmonic From 1975 to 2007 a member of the [a604396].Needs VoteW. BinderSymphonie-Orchester Des Bayerischen RundfunksDas Mozarteum Orchester SalzburgBlechschadenJean Cooler's OrchestraMünchner BlechbläsersolistenGeorg Schwenk Und Seine Musikanten + +2996793Edan DoverNeeds VoteThe Score (9) + +2996794Eddie Anthony (2)Needs VoteThe Score (9) + +2998101Neil Marshall (3)Jazz drummer. +Played with Joe Venuti, Jack Teagarden, Benny Goodman +Needs VoteN. MarshallJoe Venuti And His Blue SixEddie Lang-Joe Venuti And Their All Star Orchestra + +2998160Ingrid MatthiessenClassical violinistNeeds VoteOrchestre symphonique de Montréal + +2999822Pär ÖjeboSwedish cellist, conductor, composer and music professor from Karlskoga, born 4 March 1940, died 22 April 2016. + +He was the son of [a6576456] and the brother of [a3243986].Needs VoteSveriges Radios Symfoniorkester + +3000264Trevor WyeClassical flautistCorrectMr. Trevor WyeThe Academy Of St. Martin-in-the-Fields + +3001540Marius JärviClassical cellist, born in 1981 in Tallinn, Estonia.Needs VoteEstonian National Symphony OrchestraEstonian Festival OrchestraEstonian National Opera OrchestraEstonian Cello Ensemble + +3001790Jonathan Jensen (2)Versatile musician, Jonathan Jensen, grew up listening to his older brother's 78 rpm records and hearing folk music and jazz. He loves to play a diverse array of music and on various instruments including percussion, mandolin, banjo and tin whistle--all of which he has played on stage with the BSO. Although his primary instrument in the orchestra is bass, he often doubles on keyboards and has been known to come up with original compositions. He once won a contest at the Mill Bridge Village Ragtime Festival for a ragtime piece he composed. When not playing with the Symphony, he plays piano for contra/English country dances, performs with the Baltimore Mandolin Orchestra and the Mandolin Quartet. Mr. Jensen studied with Warren Benfield and attended Interlochen Arts Academy and Northwestern University. Before joining the Baltimore Symphony, he held the position of Principal Bass with the Winnipeg Symphony Orchestra in Canada, and during the summer, he played bass for the Grant Park Orchestra of Chicago.Needs Votehttps://www.bsomusic.org/musicians/musician/jonathan-jensen/Jon JensenBaltimore Symphony Orchestra + +3002030Jack MootzAmerican jazz trombonist and trumpeterNeeds VoteThe Glenn Miller OrchestraCharlie Barnet And His OrchestraBob Crosby And His OrchestraSpike Jones & His Other Orchestra + +3002379Georges LaurentClassical flute player.Needs Votehttps://en.wikipedia.org/wiki/Georges_LaurentBoston Symphony Orchestra + +3003071Didier BoutureFrench conductor & countertenor vocalist.Needs Votehttps://bach-cantatas.com/~bachcant/Bio/Bouture-Didier.htmLe Concert Spirituel + +3003581Peter McGuireAmerican violinist, born 1976 in Minnesota.CorrectMinnesota OrchestraTonhalle-Orchester Zürich + +3003582Aaron JanseAaron Janse is an American classical violinist, violist and teacher.Needs Votehttp://www.aaronjanse.comMinnesota OrchestraThe Juilliard Orchestra + +3004966London Philharmonic ChoirThe London Philharmonic Choir was founded at the end of 1946 by former members of the [a2877846] and was attached to the [a271875]. + +[b]Not to be confused with the [a833169][/b].Needs Votehttp://en.wikipedia.org/wiki/London_Philharmonic_Choirhttp://www.lpc.org.uk/https://www.bach-cantatas.com/Bio/LP-Choir.htmhttps://www.facebook.com/LondonPhilharmonicChoir/Choeurs Du Philharmonique De LondresChoirChoir LondonChorChorusChorus Of The London PhilharmonicChorus Of The London Philharmonic OrchestraChœurChœur Philharmonique De LondresChœursChœurs De L'Orchestre Philharmonique De LondresChœurs Du "London Philharmonic"Chœurs Du London PhilharmonicChœurs Philharmonique De LondresChœurs Philharmoniques De LondresChœurs de L'Orchestre Philharmonique de LondresCoroCoro De La Filarmónica De LondresCoro Filarmonica Di LondraCoro Filarmonico De LondresCoro Filarmónica De LondresCoro Filarmónica de LondresCoro Filarmónico de LondresCorosCoros De La Filarmónica De LondresCoros De La Orquesta Filarmónica De LondresCoros Filarmónica De LondresDer Londoner Philharmonische ChorDer Philharmonische ChorEl CoroEl Coro Filarmónico de LondresFilarmonica De LondresKoorLPO ChoirLes Chœurs Du London PhilharmonicLondens Philharmonisch KoorLondon ChoralLondon Philh. ChorusLondon Philharmonic ChorLondon Philharmonic ChorusLondon Philharmonic CoroLondoner Philharmonische ChorLondoner Philharmonischer ChorLontoon Filharmoninen KuoroMembers Of The London Philharmonic ChoirMembres Du London Philarmonic ChoirMembres Du London Philharmonic ChoirPhilharmonic Choir & Orchestra LondonPhilharmonischer ChorSingersThe 100-Voice London Philharmonic ChoirThe 100-Voice Philharmonic ChoirThe London Philarmonic ChoirThe London Philharmonic ChoirThe London Philharmonic Chorus合唱団Ladies Of The London Philharmonic ChoirNeville CreedGentlemen Of The London Philharmonic Choir + +3005035Helena WiklundClassical soprano vocalistCorrectNederlands Kamerkoor + +3005960Roberto NoferiniRoberto Noferini (born 1973) is an Italian classical violinist. He's the son of [a5562848] and the brother of [a1696418] and [a2217171].Needs Votehttp://www.robertonoferini.com/Orchestra da Camera ItalianaQuartetto NoferiniEnsemble Pietro Antonio LocatelliOrchestra Da Camera Di Ravenna + +3006887James Darling (3)American trumpet player.Needs VoteJim DarlingThe Cleveland Orchestra + +3006890Allen KofskyAmerican trombonist.CorrectThe Cleveland Orchestra + +3006891Julius DrossinAmerican composer and cellist, born 17 May 1918 in Beachwood, Ohio and died 11 February 2007 in Beachwood, Ohio.CorrectThe Cleveland Orchestra + +3008203Jin KimKorean born violinistNeeds VoteLa Petite BandeRicercar ConsortThe Metropolis Chamber Players + +3008351Robert Cattermole (2)British classical oboe player.Needs VoteLondon Philharmonic OrchestraThe Wind Virtuosi Of England + +3009093Johanna MartzyHungarian violinist, born 26 October 1924 in Timișoara (Romania) and died 13 August 1979 in Glarus (Switzerland)Needs Votehttps://en.wikipedia.org/wiki/Johanna_Martzyhttps://web.archive.org/web/20151031064435/http://fischer.hosting.paran.com:80/music/Martzy/discography-martzy.htmJ. Martzy + +3009353Ruth OwensBritish classical cellistCorrectRoyal Liverpool Philharmonic Orchestra + +3009655Christopher KimberClassical violinist.CorrectBoston Symphony OrchestraMarlboro Festival OrchestraBaltimore Symphony Orchestra + +3009657Bernard GoldbergAmerican classical flautist, born in 1923.Needs VoteB. GoldbergGernard GoldbergThe Cleveland OrchestraMarlboro Festival OrchestraPittsburgh Symphony OrchestraPittsburgh Musica Viva Trio + +3009666Ling TungAmerican classical violinist and conductor, born 25 March 1933 in China and died 14 May 2011 in the United States.CorrectConductorThe Philadelphia OrchestraMarlboro Festival OrchestraMinneapolis Symphony Orchestra + +3009667Sidney CurtissClassical viola player, born 1931 in New York, New York.Needs VoteThe Philadelphia OrchestraMarlboro Festival OrchestraNational Symphony OrchestraThe New Orleans SymphonyThe Philarte QuartetThe New Philadelphia Quartet + +3010208Alexander Ott (3)German oboist, born 1955 in Wangen, Germany.Needs VoteAlex OttSinfonieorchester Des SüdwestfunksOrchester der Bayreuther FestspieleEnsemble 13Ensemble AventureSWR Sinfonieorchester Baden-Baden Und FreiburgSWR SymphonieorchesterNew Wind Quintet Of The Südwestfunk + +3010569Antoni Ros-MarbàSpanish composer, arranger and conductor born in Barcelona in 1937. He`s been [a2098343] (1965-1967) conductor, then [a3245762] conductor from1967 to 1978 and [a1275956] (1978-1981). He collaborated with [a521546] in "Ara que tinc vint anys" (1967) and on other records. Since 1998 to 2012 principal conductor of [a6370736]. He was [a840069] disciple.Needs Votehttps://en.wikipedia.org/wiki/Antoni_Ros-Marb%C3%A0A. Ros MarbaA. Ros MarbàA. Ros MarbáA. Ros-MarbàAntoni Ros BarbàAntoni Ros MarbaAntoni Ros MarbàAntoni Ros MarbáAntoni Ros-MarbaAntoni Ros-MarbáAntonin Ros MarbaAntonio Ros MarbaAntonio Ros MarbàAntonio Ros MarbáAntonio Ros-MarbaAntonio Ros-MarbàAntonio Ros-MarbáAntonio Rós MarbáAntoní Ros MarbàAntoní Ros-MarbàRos MarbáRos-MarbaRos-MarbàRos-MarbáOrquesta Nacional De EspañaOrquesta Sinfónica de RTVEOrquestra Ciutat De BarcelonaReal Filharmonía De Galicia + +3011251Felix ViscugliaAmerican clarinetist and saxophonist, born 13 January 1927 in Niagara Falls, New York and died 10 April 2009 in Goodsprings, Nevada.Needs VoteF. ViscugliaBoston Pops OrchestraBoston Symphony OrchestraUtah Symphony Orchestra + +3011447Eberhard FiedlerClassical trombonistNeeds VoteHamburger Bläserkreis Für Alte MusikArchiv Produktion Instrumental Ensemble + +3013379Triola-YhtyeNeeds Major Changes"Triola" Yhtye"Triola"-Yhtye"Triola"-yhtyeTriola YhtyeTriola-yhtye + +3013668Philippe-Olivier DevauxFrench bass clarinetist.CorrectOrchestre De Paris + +3013812Györgyi FarkasHungarian Bassoonist Needs VoteGyörgi FarkasGyörgyi FarkaschThe English Baroque SoloistsAkademie Für Alte Musik BerlinElbipolis Barockorchester HamburgCollegium 1704Camerata LipsiensisAmphion BläseroktettOrfeo Orchestra BudapestAntichi StrumentiGaechinger CantoreyWrocławska Orkiestra Barokowa + +3013866Joe Marsala SextetNeeds Major ChangesJoe Marsala SextettJoe Marsala-SextetJoe Marsala + +3013985Tom BeerThomas BeerClassical violistNeeds VoteThomas BeerBournemouth Symphony Orchestra + +3014084Auguste Mariette BeyNeeds Major ChangesAugust MarietteAuguste MarietteMariette Bey + +3014169Frank MazzoliBig band trombonistCorrectLucky Millinder And His Orchestra + +3015003Damon TaheriClassical violist.Needs VoteBergen Filharmoniske Orkester + +3015723Gabriele ZimmermannClassical flautistCorrectWürttembergisches Kammerorchester + +3015877Gaby VilainFrench trombonist.Needs VoteGabriel VilainGrand Orchestre De L'OlympiaMichel Legrand Et Sa Grande Formation + +3016319Robert DowlandRobert Dowland (ca. 1591 – 1641) was an English lutenist and composer. He was the son of the lutenist and composer [a=John Dowland]. He published two collections of music, A Varietie of Lute Lessons and A Musical Banquet (an anthology of work by other composers including his father). In 1626 his father died and Robert succeeded him as royal lutenist.Needs Votehttp://en.wikipedia.org/wiki/Robert_DowlandDowlandR. Dowland + +3016490Chicago Symphony ChorusThe history of the Chorus began in 1957, when sixth music director [a=Fritz Reiner] invited [a=Margaret Hillis] to establish a chorus to equal the quality of the [a=Chicago Symphony Orchestra]. Hillis accepted the challenge, and the Chicago Symphony Chorus first performed in March and April 1958. + +[b]Chorus Directors[/b] + +[a880605] (1957-1994) +[a999182] (1994-2022)Needs Votehttps://www.cso.org/about/performers/chicago-symphony-chorus/Chicago ChorusChicago SymphonyChicago Symphony ChoeursChicago Symphony ChorChicago Symphony OrchestraChicago Symphony Orchestra ChorusChicago Symphony Women's ChorusChoeur Orchestre Symphonique De ChicagoChoeur Symponique De ChicagoChoeursChoeurs Symphonique De ChicagoChoeurs de L'Orchestre Symphonique De ChicagoChorChorusChœurChœur De L'Orchestre Symphonique De ChicagoChœur Symphonique De ChicagoChœursChœurs Symphonique De ChicagoChœurs Symphoniques De ChicagoCoroCoro De La Orquesta Sinfonica de ChicagoCoro De La Orquesta Sinfónica De ChicagoCoro De La Sinfónica De ChicagoCoro SInfónico de ChicagoCoro Sinfonica De ChicagoCoro Sinfonico de ChicagoCoro Sinfónica De ChicagoCoro Sinfónico de ChicagoCoro Sinfônica De ChicagoCoro de la Orquesta Sinfónica de ChicagoCorosMembers Of The Chicago Symphony ChorusMen Of The Chicago Symphony ChorusSolistas y Coro Orquesta Sinfónica De ChicagoThe Chicago Symphony And ChorusThe Chicago Symphony ChorusThe Chicago Symphony Orchestra ChorusWomen Of The Chicago Symphony ChorusWomen Of The Chicago Symphony Orchestra ChorusWomen Or The Chicago Symphony Orchestra Chorusand Chorusシカゴ交響合唱団Cynthia AndersonRichard CohnMichael CavalieriDebra WilderAntonio P. QuarantaJennifer GingrichPaul GrizzellSally SchweikertWilliam KirkwoodBarbara PearsonDaniel HarperElizabeth GottliebHerbert WittgesKaren BrunssenJean BrahamRoald HendersonThomas DymitKurt LinkBradley NystromKaren ZajacAngela PresuttiNida GrigalavičiūtėNathalie ColasDouglas PetersMicah DinglerBill McMurrayFrank VillellaDimitri GermanHannah Dixon-McConnellMáire O'BrienDavid GovertsenRich BrunnerWilliam VallandighamBrett PottsJess KoehnMary Ann BeattyJames P. YarbroughEdward K. OsakiKip SnyderCharles M. OlsonKathy KerchnerGail FriesemaElizabeth HareSarah Herbert (2)Alicia MonasteroVince Wallace (4)Garrett JohannsenSarah PonderEmily Price (5)Chris FilipowiczElvira PonticelliBeena DavidMelissa ArningDiane BuskoMelinda AlbertyAmy Becker (2)Betsy HoatsCari PlachyCarla JanzenCole SeatonEric Miranda (2)Geoffrey AgpaloJoseph CloonanKatarzyna DorulaKathleen MaddenKlaus GeorgLee LichamerMadison BoltMark James MeierMathew LakeMichael BoschertRobin A. KesslerRyan J. CoxScott UddenbergStacy EckertRosalind LeeLiana GermanClaire DiVizioStephen MollicaSean WatlandIan Prichard (2)Ryan Townsend StrandMatthew Brennan (6)Alison Kelly (5)Bridget SkaggsMichael Brauer (2)Evan BravosJoe LabozettaKatelyn LeeKristin LelmAce GangosoPeder ReiffSusan Nelson (2) + +3016694Hani SongSwiss classical violinistNeeds VoteConcertgebouworkestSchweizer Jugend-Sinfonie-Orchester + +3017016Chaim TaubIsraeli violinist, born in 1925.Needs VoteIsrael Philharmonic OrchestraThe Tel Aviv String Quartet + +3017283Mark HybridZMark TraceyElectronic dance music DJ / producer from Newport, South Wales, UK +Styles: Hard Dance | Hardstyle | Hard House| Hardcore Correcthttp://soundcloud.com/markhybridz/trackshttp://www.facebook.com/Mark.HybridZhttp://www.youtube.com/user/DJMRT86http://twitter.com/Mark_HybridZMark HybridMark TraceyMr T (6) + +3018016Paolo CastellucciItalian composer and critic. Founder of Edizioni Feuvert.Needs VoteCastellucciP. CastellucciAndysastroBogyard + +3019804Helmut ElblSound engineerNeeds Vote + +3020923Matthias CordesGerman classical violinistCorrectDeutsche Kammerphilharmonie Bremen + +3021435Alain ViauFrench classical violinist born 1966Needs VoteLa Grande Ecurié Et La Chambre Du RoyLes Talens LyriquesLa Simphonie Du MaraisEnsemble Matheus + +3021710Ed MacyJazz singer, in early period.Needs VoteRussell Gray And His Orchestra + +3021711John Ryan (15)Jazz singer of early period.Needs VoteRussell Gray And His Orchestra + +3021870John Harper (5)John S. HarperClassical bassoonist. Born in 1933 - Died October 6, 2015 in Sydney, Australia. +He studied at the [l290263]. In 1951, he spent his National Service in the [a4780854] and his first important London orchestral experience was gained with the [a=London Mozart Players] in 1954. A year later he was appointed Principal Bassoon of the [a=London Symphony Orchestra] (1955-1965). He emigrated to Australia in the late 1960s and worked with the ABC orchestras around the country. In 1991, he joined the [a=Australian Chamber Orchestra] as Orchestra Manager.Needs Votehttps://lso.co.uk/more/news/483-obituary-john-harper-1933-2015.htmlLondon Symphony OrchestraLondon Mozart PlayersThe Band of the Royal Corps of Signals + +3021872Alex LindsayAlex Sylvester LindsayNew Zealander classical violinist, conductor, and teacher. Born 28 May 1919 in Invercargill, Southland, New Zealand - Died 5 December 1974 at Okiwi Bay, Rai Valley, Marlborough, New Zealand. +He left New Zealand in 1937 to study at the [l290263]. In 1941, he joined the [a=London Philharmonic Orchestra] as a member of the second violin section. After nearly three years in the orchestra, he was drafted for war service in the Royal Navy and in October 1945 he transferred to the Royal New Zealand Navy. Shortly before being discharged he auditioned in Wellington on 26 July 1946 to become a founder member of the new [url=https://www.discogs.com/artist/575941-The-New-Zealand-Symphony-Orchestra?anv=National+Orchestra+Of+New+Zealand]National Orchestra[/url]. He quickly rose to Sub-Leader. He resigned after a year to devote himself to teaching and to conducting his own ensemble, [a=The Alex Lindsay String Orchestra], which he founded in 1948. In 1956, he rejoined the National Orchestra as Leader of the second violins. In 1963, he returned to Europe freelancing with London orchestras. He became Principal Second Violin in the London Philharmonic Orchestra and then in the [a=London Symphony Orchestra] (1964-1966). In 1967, he was appointed Leader of the New Zealand Symphony Orchestra; within two years, his position was upgraded to Concertmaster, a position he held until his sudden death in 1974. +He was appointed MBE. +Note that the date on his birth certificate, 28 May 1919, may be wrong, for he always celebrated his birthday on 28 April.Needs Votehttps://en.wikipedia.org/wiki/Alex_Lindsay_(violinist)https://teara.govt.nz/en/biographies/5l10/lindsay-alex-sylvesterhttps://sounz.org.nz/contributors/1464https://www.nzso.co.nz/nzso-engage/learning/alex-lindsay-awards/about/Alex Lindsay & The Folk Dance OrchestraAlex Lindsay And The Folk Dance OrchestraThe Alex Lindsay OrchestraLondon Symphony OrchestraLondon Philharmonic OrchestraNew Zealand Symphony OrchestraThe Alex Lindsay String Orchestra + +3022057Amyn MerchantBritish violinist and leader of [a835739] since 2012.CorrectAmy MerchantBBC Symphony OrchestraBournemouth Symphony Orchestra + +3022060Ellie FaggClassical violinistNeeds VoteEleanor FaggEllie FagLondon Symphony OrchestraMarylebone CamerataEuropean CamerataPuertas Quartet + +3023376Günter WagnerChorus MasterNeeds VoteG. WagnerGunter WagnerGunther WagnerGünther WagnerChœur de L'Opéra National Du Rhin + +3025437Erich KrügerGerman violist, born in 1954 in Güstrow, GDR.Needs VoteKammerorchester Carl Philipp Emanuel BachThe Mullova EnsembleStreichquartett Jens Naumilkat + +3025631Abigail YoungViolinistNeeds VoteEnglish Chamber Orchestra + +3026032Giancarlo De FrenzaClassical double-bass playerNeeds VoteGiancarlo De-FrenzaIl Giardino ArmonicoI BarocchistiEnsemble AuroraZefiroEnsemble ClaudianaEnsemble Labirinto Armonico + +3026034Elena RussoItalian Elena Russo is a graduate of the Conservatory of Music "G. Verdi" in Milan. +Later she attended the courses of the baroque cello with Anner Bijlsma M ° and M ° Hidemi Suzuki.Correcthttp://accademiastupormundi.it/elena-russo/Il Giardino ArmonicoLe Bizzarrie Armoniche + +3026035Elena ConfortiniItalian classical violinistNeeds VoteIl Giardino ArmonicoEnsemble MatheusLa Follia Barocca + +3026036Liana MoscaItaloamerican violinist born in Zurich, SwitzerlandNeeds Votehttp://www.lianamosca.com/styled/page12.htmlIl Giardino ArmonicoCantica SymphoniaSwiss Baroque SoloistsEnsemble 1700Cappella GabettaConcerto MadrigalescoAnimanticaString Trio Il Furibondo + +3026037Riccardo DoniItalian organ and harpsichord player (* 1965 in Milan, Italy); he obtained the Organ and the Composition Diploma at Parma.Needs Votehttps://www.facebook.com/riccardo.doni/https://outhere-music.com/de/kunstler/riccardo-doniIl Giardino ArmonicoMusica LaudantesAccademia Dell'AnnunciataImaginarium EnsembleDivino SospiroConcerto Mediterraneo + +3026590Holm BirkholzHolm Birkholz (born 1952) is a German classical violinist.Needs VoteBerliner PhilharmonikerRundfunk-Sinfonie-Orchester LeipzigStaatskapelle WeimarStreichquartett Jens Naumilkat + +3026593Christian TromplerChristian Trompler, (born 1953) is a German violinist and former 2nd concertmaster of the [a833446].Needs Votehttps://www.staatsoper-berlin.de/de/kuenstler/christian-trompler.162/Staatskapelle BerlinOrchester der Bayreuther FestspieleKammerorchester Carl Philipp Emanuel BachRobert-Schumann-PhilharmonieStreichquartett Jens NaumilkatBarbara Thalheim EnsembleCamerata Musica + +3027107Eduardo PausáEduardo Pausá CandelSpanish flute player, specialized in Contemporanean music. Former First Piccolo on Orquesta Sinfonica de Madrid.Needs VoteEduardo PausaVega PausaOrquesta Sinfónica De MadridBanda Sinfónica Municipal de Madrid + +3027382Luigi TansilloNeeds Major Changes + +3029482Izso BajuszClassical violinistCorrecthttps://www.facebook.com/izso.bajuszCamerata Academica SalzburgStadler Quartett + +3029483Frank StadlerAustrian classical violinist.Needs Votehttps://www.instantencore.com/contributor/bio.aspx?CId=5074353Das Mozarteum Orchester SalzburgStadler Quartett + +3029775Walter Harris (2)Credited as trombonist.Needs Vote"Slide" HarrisBennie HarrisHarrisSlide HarrisWalter "Slide" HarrisWalter 'Slide' HarrisEarl Hines And His OrchestraSchapiro 17 + +3029985Mihaly VirizlayAmerican cellist and composer, born 1931 in Hungary and died in October 2008 in Princeton, New Jersey.Needs VoteMihaly - VirizlayChicago Symphony OrchestraBaltimore Symphony OrchestraPittsburgh Symphony Orchestra + +3031640Ingrid SweeneyIngrid Sweeney is a Canadian violinist. Now based in Austria.Needs VoteI. SweeneyCamerata Academica SalzburgWiener AkademieWiener KammerorchesterOrchestra New EnglandElm City Ensemble + +3031645Megan TamCanadian violist.CorrectMinnesota Orchestra + +3031717Van FlemingEarly jazz guitarist and banjoist.Needs VoteJean Goldkette And His Orchestra + +3031803Klaus Florian VogtGerman tenor vocalist and hornist, born in 1970 in Heide, Holstein, Germany.Correcthttp://www.klaus-florian-vogt.de/Klaus Florian VoigtVogtStaatskapelle DresdenPhilharmonisches Staatsorchester HamburgBundesjugendorchester + +3032498Anneleen LenaertsBelgian harpist (°26 April 1987, Peer). Sister of [a7796628].Needs Votehttp://www.anneleenlenaerts.com/https://de.wikipedia.org/wiki/Anneleen_LenaertsLenaertsOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchestre De Chambre De Paris + +3032694Andreas SchablasClassical clarinetistNeeds VoteBayerisches StaatsorchesterDas Mozarteum Orchester SalzburgÖsterreichisches Ensemble Für Neue Musik + +3032698Gertrud WeinmeisterGertrud Weinmeister (born 3 November 1965) is an Austrian classical violist, violinist and music professor. She's the sister of [a1160359] and [a4022180].Needs VoteKlangforum WienConcentus Musicus WienThe Chamber Orchestra Of EuropeHugo Wolf Quartett + +3033186Jelly Roll Morton's Jazz BandNeeds Major ChangesJelly Roll Morton Jazz BandJelly Roll Morton's Jazz Orch.Jelly Roll Morton's JazzbandJelly-Roll Morton's Jazz Band + +3033720David VainsotClassical violistNeeds Votehttp://www.orchestrepelleas.com/_David-Vainsot-altoLondon Symphony OrchestraL'Orchestre National d'Ile De FranceOrchestre De Chambre PelléasUrban String Quartet + +3034066Ray BellerNeeds VoteBenny Goodman And His Orchestra + +3034265Regis PagniezGraphic designerNeeds VoteRégis Pagniez + +3034783Josef HellAustrian trumpeter, born 28 November 1925 in Innsbruck, Austria and died 6 January 2017.Needs VoteHell JosefJoseph HellOrchester Der Wiener StaatsoperWiener PhilharmonikerZagrebački SolistiVagener Hornmusi + +3034784Josef PombergerAustrian trumpeter and trumpet professor, born 15 September 1944.Needs VoteJoseph PombergerOrchester Der Wiener StaatsoperWiener PhilharmonikerPhilharmonia Schrammeln WienEnsemble Eduard Melkus + +3034785Richard HochrainerRichard Hochrainer (26 September 1904 - 1986) was an Austrain classical percussionist, timpanist, educator and instrument builder. +He was a member of the [a754974] from 1939 to 1970.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Eduard Melkus + +3035056Frank D. Siegrist(b. Jul. 14, 1901, Dubuque, IA; d. Sep. 21, 1947, Los Angeles, CA), lead trumpet player and teacher. Affiliated with [a341395] intermittently between 1918 - 1930. Widely admired by. his peers for his upper register prowess.Needs VoteFrank SiegristSiegristPaul Whiteman And His OrchestraIsham Jones Orchestra + +3035057Ленинградский Квинтет Духовых ИнструментовWind Quintet with musicians from the [a343871] +Members (circa 1967): +[a3546642] / Лев Перепелкин (flute) +[a2966578] / Владимир Курлин (oboe) +Valery Bezruchenko / [a3035063] (clarinet) +Vitali Buyanovsky / [a1651831] (French horn) +Lev Pechersky / [a2799371] (bassoon) + +For the wind & percussions ensemble, please use [a=Ансамбль Духовых И Ударных Инструментов Симфонического Оркестра Ленинградской Филармонии]. +Needs VoteLeningrad State Philharmonic Wind QuintetQuintet Of Wind Instruments Of Leningrad State Philharmonic SocietyWind and Percussion Ensemble of the Leningrad Philharmonic OrchestraКвинтет Духовых Инструментов Ленинградской Гос. ФилармонииКвинтет Духовых Инструментов Ленинградской Государственной ФилармонииКвинтет Духовых Инструментов Ленинградской ФилармонииВиталий БуяновскийЛев ПечерскийVladimir KurlinВалерий БезрученкоLev PerepelkinLeningrad Philharmonic Orchestra + +3035063Валерий БезрученкоВалерий Павлович Безрученко(1940 - 2011) - Soviet and Russian clarinetist, soloist of the [a=Leningrad Philharmonic Orchestra], professor of the St. Petersburg Conservatory, Honored Artist of the RSFSR (1972), Honored Artist of the RSFSR (1983),Needs Votehttps://ru.wikipedia.org/wiki/%D0%91%D0%B5%D0%B7%D1%80%D1%83%D1%87%D0%B5%D0%BD%D0%BA%D0%BE,_%D0%92%D0%B0%D0%BB%D0%B5%D1%80%D0%B8%D0%B9_%D0%9F%D0%B0%D0%B2%D0%BB%D0%BE%D0%B2%D0%B8%D1%87http://old.conservatory.ru/node/2166V. BezruchenkoValeriy BezruchenkoValery BezruchenkoВ. БезрученкоВ. П. БезрученкоЛенинградский Квинтет Духовых Инструментов + +3035819Jesse Levine (4)Classical trumpeter.Needs Votehttps://handelandhaydn.org/about/musicians/orchestra-and-chorus/jesse-levine/Boston BaroqueThe Handel & Haydn Society Of BostonThe Bach EnsembleMonadnock Festival OrchestraBoston Early Music Festival Orchestra + +3035976Jiří Pospíšil (3)Slovak ViolinistNeeds VoteJirí PospíšilCapella Istropolitana + +3036748Stuart McKay (2)American sax player in 1940s & 1950sNeeds VoteMcKayS. MacKayS. McKaySmart MacKayStewart McKayStuart MacKayStuart MackayStuart McKay And His WoodsGeorge Williams And His OrchestraBrick Fleagle And His Orchestra + +3037129Patricia LyndenClassical flautistNeeds VoteThe Academy Of St. Martin-in-the-FieldsThe Nefer Ensemble + +3038774Ulrich König (2)German oboist.Needs VoteBläsersolisten Der Deutschen Kammerphilharmonie BremenDeutsche Kammerphilharmonie Bremen + +3038983Peggy GilmoreClassical violinist.CorrectPeggy GilmourThe Academy Of Ancient Music + +3039353Rudolf GleißnerGerman cellist and Professor of cello, born 1942 in Nuremberg, Germany.Needs VoteRudolf GleissnerRadio-Sinfonieorchester StuttgartRadio-Symphonie-Orchester BerlinBachcollegium StuttgartStuttgarter SolistenKalafusz-TrioDie Münchner Solisten + +3039430Antonio SpillerArgentine violinist. He's the son of [a2416418].Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchner StreichtrioJoachim-Koeckert-QuartettSpiller Trio + +3041747Raimar OrlovskyGerman violinist & conductorNeeds VoteRaimar OrlovskiBerliner PhilharmonikerBerliner Barock SolistenBundesjugendorchesterConcerto MelanteApos Quartett BerlinPhilharmonische Geigen Berlin + +3042378Walter GötzClassical Double Bassist.Needs VoteWalter GoetzMünchener Bach-Orchester + +3042866Sylvia DimizianiItalian Language CoachNeeds Vote + +3043522Genadi GurevichRussian classical violinist, born 1964 in Minsk.Needs Votehttps://www.ipo.co.il/orckestra_member/%D7%92%D7%A0%D7%93%D7%99-%D7%92%D7%95%D7%A8%D7%91%D7%99%D7%A5/גינדי גורביץ'‏גנדי גורביץגנדי גורביץ'גנדי גורביץ'‏Israel Philharmonic Orchestra + +3043697Nico van VlietDutch classical hornistNeeds VoteRotterdams Philharmonisch Orkest + +3043731Dorothee MerkelGerman alto vocalistNeeds VoteCollegium VocaleRheinische Kantorei + +3043746Anja SchumacherGerman alto / contralto vocalistNeeds VoteRIAS-KammerchorVocalconsort BerlinEnsemble Alta Musica + +3043791Arthur Bennett LipkinAmerican conductor and violinist, born in 1902 and died in 1974.CorrectLipkinThe Philadelphia Orchestra + +3045092Russell GreenJazz trumpet playerNeeds VoteRuss GreenRussel GreenRussell GreeneJimmie Lunceford And His OrchestraMaurice King & His Wolverines + +3045098Marty GreenbergJazz drummerNeeds VoteMarthy GreenbergMuggsy Spanier's Ragtime Band + +3045099Ray McKinstryJazz saxophonistNeeds VoteRay Mc KinstryMuggsy Spanier's Ragtime Band + +3045782Frauke RossGerman flutistCorrectDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther Festspiele + +3046990Christoph KulickeClassical violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3046991Katja PlagensClassical viola playerNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3046992Sayako KusakaJapanese classical violinist born 1979Needs VoteYomiuri Nippon Symphony OrchestraKonzerthaus Kammerorchester Berlin + +3046993Nerina ManciniClassical cellistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3046994Ernst-Martin SchmidtGerman classical viola playerNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinBerlin Session Orchestra + +3046995Ying GuoChinese cellist born 1982 in PekingNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3046996Ulrike TöppenGerman classical violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3046997Jana KrämerClassical violinistNeeds VoteKonzerthaus Kammerorchester BerlinHorenstein Ensemble + +3046998Karoline BestehornClassical violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3046999Alicia LaggerClassical violinistCorrectAlicia A. LaggerKonzerthaus Kammerorchester Berlin + +3047000David DrostGerman classical cellist, born in 1978 in Göttingen, Germany.Needs VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinBerliner Cellharmoniker + +3047001Cornelia DillGerman classical violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3047002Konzerthaus Kammerorchester BerlinChamber orchestra formed in 2009 by members of [a=Konzerthausorchester Berlin]. Its Artistic Director is [a=Sayako Kusaka].Needs Votehttps://www.konzerthaus-kammerorchester.deDaniel HopePirmin GrehlRonith MuesRaphael AlpermannMatthias BenkerDmitri BabanovAndré de RidderMelanie RichterAntje SchurrockMichael von SchönermarkChristoph KulickeKatja PlagensSayako KusakaNerina ManciniErnst-Martin SchmidtYing GuoUlrike TöppenJana KrämerKaroline BestehornAlicia LaggerDavid DrostCornelia DillAlexander KahlJorge Villar ParedesGeorg SchwärskyJohannes JahnelFelix KorinthSandor TarAnna BabenkoTeresa KammererSilvia CaredduAndreas FinsterbuschChristian Löffler (2) + +3047003Alexander KahlClassical cellistNeeds VoteAlex KahlKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3047004Jorge Villar ParedesClassical double-bassistCorrectKonzerthaus Kammerorchester Berlin + +3047005Georg SchwärskyClassical double-bassist, born in 1968 in Berlin, GDR.CorrectRundfunk-Sinfonieorchester BerlinKonzerthaus Kammerorchester Berlin + +3047006Johannes JahnelClassical violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3047007Felix KorinthClassical viola playerNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3047008Sandor TarClassical double-bassistNeeds VotePhilharmonia HungaricaKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +3047446Original Jazz HoundsNeeds Major Changes + +3047525Frances Jackson (2)Classical vocalist.Needs VoteThe Tallis ScholarsThe Sixteen + +3047789Dieter EckertGerman trombonist.Needs VoteStuttgarter Philharmoniker + +3047791Philipp StubenrauchGerman double bassist, born 1978 in Mainz, Germany. He first played piano and switched to double bass at the age of 13. He started to compose experimental double bass music and performed temporarily in duet with [a827190], where he also played African mbaqamba. He was educated in Munich and Geneva, where he graduated with an award. Before, he was twice granted the 'Jugend musiziert' award and also won awards in Covilha and Markneukirchen. +He is part of the quartet [a5138821] and in 2004, he additionally joined the [a604396].Needs VoteSymphonie-Orchester Des Bayerischen RundfunksOrchester der Bayreuther FestspieleBundesjugendorchesternonSordino + +3048029Jürgen GerlingerJürgen Gerlinger (born 1947) is a German classical cellist.Needs VoteStaatsorchester StuttgartOrchester der Bayreuther FestspieleNürnberger SymphonikerOrchester Der Ludwigsburger SchlossfestspieleDüsseldorfer Symphoniker + +3048119אסף מעוזAsaf Maoz (born 1979) is an Israeli violinist.Needs Votehttp://jcmf.org.il/artists/asaf-maoz/Asaf MaozAssaf MaozIsrael Philharmonic OrchestraQuintet Of The Deutsches Kammerorchester Berlin + +3048255Wendell HossAmerican hornist (1892-1980).Needs Votehttp://www.hornsociety.org/home/ihs-news/26-people/honorary/95-wendell-hossThe Cleveland OrchestraLos Angeles Philharmonic OrchestraChicago Symphony OrchestraRochester Philharmonic OrchestraPittsburgh Symphony OrchestraThe Horn Club Of Los Angeles + +3051707Eddie Smith (11)US jazz trumpeter.Needs VoteEd SmithEarl Hines And His OrchestraEarl Hines' Dixieland BandEarl Hines And His Band + +3052246Johannes HaaseGerman violinist and improviser, born 1983 in Wolfenbüttel, Germany.Needs Votehttp://www.johanneshaase.com/HaaseDeutsche Kammerphilharmonie Bremen + +3052248Beate WeisGerman classical violinistCorrectDeutsche Kammerphilharmonie Bremen + +3052249Konstanze LerbsGerman classical violinistCorrectDeutsche Kammerphilharmonie Bremen + +3052250Jörg AssmannGerman classical violinistCorrectDeutsche Kammerphilharmonie Bremen + +3052251Klaus HeidemannGerman classical violist and pianistCorrectKlaus HeidlemannDeutsche Kammerphilharmonie BremenBundesjugendorchester + +3052252Jürgen Winkler (2)German classical violistCorrectDeutsche Kammerphilharmonie Bremen + +3052254Ulrike RübenGerman classical cellistNeeds VoteDeutsche Kammerphilharmonie BremenBundesjugendorchesterCamerata Berolinensis + +3052255Marc FroncouxBelgian classical cellistCorrectDeutsche Kammerphilharmonie Bremen + +3052256Stefan LatzkoGerman classical violinist, born 21 July 1961.CorrectDeutsche Kammerphilharmonie Bremen + +3052258Timofei BekassovClassical violinistCorrectTimofei BekasovDeutsche Kammerphilharmonie Bremen + +3052335Christian Hoff (3)Tony Award-winning actor, singer, entertainer.Correcthttp://christianhoff.com/https://en.wikipedia.org/wiki/Christian_Hoffhttps://www.imdb.com/name/nm0388706/The Midtown Men"Jersey Boys" Original Broadway Cast + +3053148Tricky Sam NantonJoseph N. NantonAmerican jazz trombonist with Duke Ellington's orchestra from 1926 until his death. Born February 1, 1904 in New York City, New York, USA, died July 20, 1946 in San Francisco, California, USA Needs Votehttps://en.wikipedia.org/wiki/Tricky_Sam_Nantonhttps://www.imdb.com/name/nm0620961/biohttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/201862b38fd594254e0d31ebc30db2c46a6982/biographyhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/109787/Nanton_Tricky_Samhttps://www.treccani.it/enciclopedia/nanton-joseph-irish-detto-tricky-sam/"Tricky Sam""Tricky Sam" Nanton"Tricky" Sam Nanton"Tricky-Sam" Nanton'Tricky Sam' NantonJ. NantonJo "Tricky Sam" NantonJoe "Tricky Sam"Joe "Tricky Sam" NantonJoe "Tricky Sam" NontonJoe "Tricky" Sam NantonJoe 'Tricky Sam' NantonJoe (Tricky Sam) NantonJoe NantonJoe TrickyJoe «Tricky Sam» NantonJoseph "Tricky Sam" NantonNantonSam NantonTricky Joe NantonTricky SamTricky-Sam Nanton«Tricky Sam» NantonJoe NantonDuke Ellington And His Orchestra + +3053810Leon FrengutAmerican violist, born 8 Febraury 1904 in Maryland and died in 1970.Needs VoteLeon FrengottThe Philadelphia OrchestraThe Cleveland OrchestraBilly Moore and his Jumpin String Octette + +3054097Alfred DukesClassical percussionist. +Former member of the [a=London Symphony Orchestra], 1956-1961.Needs Votehttps://www.imdb.com/name/nm9888252/Alf DukesLondon Symphony Orchestra + +3054709Jane GilchristClassical soprano vocalist.Needs VoteJane Gilchrist CarrollJane Gilchrist-Carroll + +3057436Andrew Malcolm (2)Oboist and English horn player.Needs VoteOrchester der Bayreuther FestspieleBremer Philharmonisches Staatsorchester + +3058446William StokkingAmerican cellist, born 6 April 1933 in Ventnor, New Jersey.CorrectThe Philadelphia OrchestraBoston Symphony OrchestraThe Cleveland Orchestra + +3060383Lanin's Arkansaw TravelersNeeds VoteFrankie TrumbauerRube BloomMiff MoleChuck Miller (4)Sam LaninRoy JohnstonFrank Di PrimaWard Archer (2) + +3060385Peter AxelssonNeeds VoteGerry Mulligan QuartetBengt Stark Med PolareMatti Ollikainen Trio + +3060386Ronnie GardenerNeeds VoteGerry Mulligan Quartet + +3060507Olav KiellandOlav Løchen KiellandNorwegian composer and conductor (16 August 1901 in Trondheim – 5 August 1985 in Bø, Telemark).Needs Votehttp://en.wikipedia.org/wiki/Olav_KiellandBergen Filharmoniske Orkester + +3060739Ulrich FritzeGerman violist and conductor, born in Berlin, Germany.Correcthttp://ulrich-fritze.de/Berliner PhilharmonikerPhilharmonisches Oktett Berlin + +3060895Friedrich DotzauerFriedrich Justus Johann DotzauerGerman cellist and composer, born June 20, 1783 in Hässelrieth, and died March 6, 1860 in Dresden.Needs VoteDotzauerJ.J. DotzauerJustus Johann Friedrich DotzauerStaatskapelle Dresden + +3061442Paul van ZelmDutch horn player and music professor, born in 1964 in Alkmaar, The Netherlands.Needs VoteWDR Sinfonieorchester KölnLinos EnsembleNederlands Radio Symfonie OrkestDüsseldorfer Symphoniker + +3061472Ulrich BerggoldClassical double bassist, born in Munich, Germany.Needs VoteOrchester Der Deutschen Oper Berlin + +3061746Jan GippoClassical flautistCorrectSaint Louis Symphony Orchestra + +3064429Hedda RothweilerClassical oboistNeeds VoteBachcollegium StuttgartWürttembergisches KammerorchesterSüdwestdeutsches Kammerorchester + +3064430Daisuke Mogi茂木大輔 (Daisuke Mogi)Japanese classical oboist and conductor. +Born in Tokyo, Japan in 1959. + +Bachcollegium Stuttgart from 1987 +NHK Kokyogakudan from Apr 1, 1991Needs Votehttp://blogs.yahoo.co.jp/mogidaisukehttp://www007.upp.so-net.ne.jp/mogijepage/茂木大輔Symphonie-Orchester Des Bayerischen RundfunksNHK Symphony OrchestraBamberger SymphonikerBachcollegium StuttgartYosuke Yamashita Special Big Band + +3064431Helmut VeihelmannClassical cellist. A member of the [a604396] from 1975 to 2013.Needs VoteH. VeihelmannVeihelmannSymphonie-Orchester Des Bayerischen RundfunksBachcollegium Stuttgart + +3064432Hans-Joachim ErhardGerman classical harpsichordist, pianist, organist and chorus master (* 18 October 1948 in Aschaffenburg, Germany; † 11 June 1990 in Munich, Bavaria, Germany). Needs VoteHans Joachim ErhardJoachim ErhardBachcollegium StuttgartWürttembergisches KammerorchesterHessisches Bach-Collegium + +3065189Edward Johnson (9)Clarence Edward JohnsonUS jazz songwriter/trombonist mostly known for co-writing "Jersey Bounce". +Born July 12, 1910, Baltimore, MD - Died October 26, 1961, Bronx, NY. + +Needs Votehttps://www.hitsvillesoulclubs.com/carnivalrecords.htmhttp://campber.people.clemson.edu/johnson.htmlB. JohnsonBruceE. JohnsonE.JohnsonEd "Jack Raggs" JohnsonEd JohnsonEddie "Jack Raggs" JohnsonEddie JohnsonEdward "Jack Raggs" JohnsonEdward JohnsonJohnsonJonsonRaggsT. JohnsonЭ. ДжонсонClarence Johnson (7)Rags (13)Cootie Williams And His OrchestraEdward Johnson Orchestra + +3065454Chu Berry And His Stompy StevedoresNeeds Major Changes"Chu" Berry Et Ses Déménageurs"Chu" Berry e i suoi Stompy StevedoresChu Berry & His Stompy StevedoresChu Berry E I Suoi "Stompy Stevedores"Chu Berry Et Ses DéménageursKeg JohnsonCozy ColeMilt HintonIrving RandolphBuster BaileyHot Lips PageDanny BarkerLeon "Chu" BerryLeroy MaxeyHorace HendersonLawrence LucieBennie PayneGeorge Matthews (2)Israel Crosby + +3065557Vicki KellyNeeds VoteHoward McGhee And His Orchestra + +3066527Susanne Müller-HornbachGerman classical cellist and music professor, born in 1956 in Lübeck, Germany. She's married to [a3057457].Needs VoteSusanne MüllerBachcollegium StuttgartDas Mozarteum Orchester SalzburgMutare Ensemble + +3066661Edicson RuizClassical bassist, born in Caracas, Venezuela.Needs Votehttp://www.edicsonruiz.com/Berliner PhilharmonikerSwiss Chamber SoloistsOrchestra Mozart + +3067621Róbert MarečekClassical violinistNeeds VoteRobert MarecekCapella Istropolitana + +3067698Branimir SlokarSlovene classical and jazz trombonist. Born 1946 in Maribor, former Yugoslavia. Needs Votehttp://www.branimirslokar.com/Brane SlokarSymphonie-Orchester Des Bayerischen RundfunksSimfonični Orkester RTV LjubljanaSlokar PosaunenquartettBerner BlechbläserquartettSlokar Brass EnsembleSlokar Trio + +3068457Paul KimberBritish bassistNeeds VotePaul Kimber QuartetThe London Session OrchestraLondon Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenThe London Double Bass SoundThe Chamber Orchestra Of London + +3068466Helmut SchlövogtGerman oboist, born 19 September 1911 and died in 2002.Needs VoteBerliner PhilharmonikerSchola Cantorum Basiliensis + +3068549Tina KimGerman violinist, born in Stuttgart, Germany.Correcthttp://www.deutscheoperberlin.de/de_DE/ensemble/tina-kim.42639#Orchester Der Deutschen Oper Berlin + +3068552Susanne SonntagGerman bassoonist, born in Hamburg, Germany.CorrectSymphonie-Orchester Des Bayerischen Rundfunks + +3068553Anselm TelleGerman violinistCorrectStaatskapelle DresdenOrchester der Bayreuther Festspiele + +3069078Libor SimaGerman saxophonist, bassoonist and orchestra musician, born 1967.Needs Votehttps://de.wikipedia.org/wiki/Libor_%C5%A0%C3%ADmahttps://obijenne.de/seite/libor-sima/https://www.swr.de/swr-classic/symphonieorchester/mitglieder-des-swr-symphonieorchesters-libor-sima/-/id=17055322/did=17779428/nid=17055322/1w625jy/index.htmlLibor ShimaLibor ŠímaRadio-Sinfonieorchester StuttgartRight Or WrongSWR SymphonieorchesterMartin Schrack QuartettSzigeti Quartett + +3070172Ulrike BassengeGerman violinist, born in 1981 in Berlin, GDR.Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/ulrike-bassenge.42642Staatskapelle BerlinOrchester der Bayreuther Festspiele + +3071844Chicago Symphony StringsNeeds VoteChicago StringsChicago Symphony Orchestra + +3072662Mal Waldron's All StarsNeeds Major ChangesAll StarsAll-StarsMal Waldron & All StarsMal Waldron & All-StarsMal Waldron & The All StarsMal Waldron All StarsMal Waldron All-StarsMal Waldron All-starsMal Waldron And All StarsMal Waldron And All-StarsMal Waldron and All-StarsMal Waldron's All-StarsMal Wandrom All StarsThe Mal Waldron All-StarsGerry MulliganColeman HawkinsBen WebsterLester YoungRoy EldridgeMilt HintonVic DickensonJo JonesOsie JohnsonMal WaldronDanny BarkerDoc CheathamJim Atlas + +3072663Sam Price And His Texas BlusiciansSam Price And His Texas Blusicians was a New York-based group of septets and octets, led by [a=Sammy Price] put together especially for recordings during the 1940's-1950's.Needs VoteSam Price & His Texas BluesiciansSam Price & His Texas BlusiciansSam Price And His BlusiciansSam Price And His TexansSam Price And His Texas BluesiciansSam Price BandSam Price's (Texas) BlusiciansSam Price's BlusiciansSammy Price & His BluesiciansSammy Price & His BlusiciansSammy Price & His Texas BlusiciansSammy Price & Hs Texas BlusiciansSammy Price And His BluesiciansSammy Price And His BlusiciansSammy Price And His Texas BluesiciansSammy Price And His Texas BlusiciansSammy Price BluesiciansSammy Price Und Seine Texas BluesiciansSammy Price's "Bluesicians"Sammy Price's BluesiciansSammy Price's BlusiciansLester YoungLeonard GaskinHarold "Doc" WestPops FosterSammy PriceShad CollinsHerman AutreyEmmett BerryO'Neil SpencerBobby DonaldsonFreddie MooreCurtis OusleyGeorge StevensonWilbert KirkEd MullensVernon KingYack TaylorDon StovallHerb HallMcHouston BakerDave Young (10)William Lewis (4)Bill Johnson (34)Duke Jones (2)Joe Brown (34)Ray Hill (8)Raymond Hills + +3073097Andreas HallingSwedish tenor vocalistNeeds VoteAndreas Halling [Sweden]Choeur de Chambre de NamurLes Pages Et Les Chantres Du Centre De Musique Baroque De VersaillesThunder Music Ensemble + +3073226Marie-Pierre WattiezFrench classical soprano vocalistNeeds Votehttp://www.mariepierrewattiez.org/Marie-Pierre WattierLe Concert SpirituelMaîtrise De Notre-Dame De ParisArsys Bourgogne + +3073236Joël LahensClassical trumpeterNeeds VoteJoel LahensLe Concert SpirituelLes Arts FlorissantsIl Seminario MusicaleLa Petite BandeLes Talens LyriquesLe Concert D'AstréeLe Poème HarmoniqueLe Cercle De L'HarmonieOpera FuocoEnsemble CristoforiThe Arianna Ensemble + +3073251Michelle TellierFrench-American classical Recoder player.Needs Votehttps://www.michelletellier.com/michelle-tellier/Le Concert SpirituelLes Sacqueboutiers De Toulouse + +3073256György SchweigertDouble bassist.Needs VoteSchweigert GyörgyRadio KamerorkestI FiamminghiRadio Kamer FilharmonieConcerto Budapest + +3073311Sofia NiklassonSoprano singer born in 1978 in Uppsala.Correcthttps://www.sofianiklasson.com/Radiokören + +3074887Pamela Priestley-SmithNeeds VoteBBC SingersThe Monteverdi Choir + +3074893Geoffrey DavidsonClassical vocalist.CorrectThe Monteverdi Choir + +3074899Paul ParfittClassical bass vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +3076028Heinz HeinischHeinz Heinisch (born 6 August 1934) is a German trumpet player.Needs VoteStaatskapelle DresdenNeues Bachisches Collegium Musicum LeipzigDie Blasewitzer + +3076036Werner BeyerGerman trombonist, born 11 September 1920 in Schmölln, Germany and died 17 February 1997 in Dresden, Germany.CorrectStaatskapelle Dresden + +3076429Martin Anthony BurrageBritish classical violinistCorrecthttp://martinanthonyburrage.com/Martin BurrageRoyal Liverpool Philharmonic Orchestra + +3076430Carolyn TregaskisClassical violistCorrectC. TregaskisCarolyn WegaskisRoyal Liverpool Philharmonic Orchestra + +3076431Donald TurnbullClassical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076432Rebecca WaltersBritish classical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076433Katharine RichardsonBritish classical violinistCorrectKate RichardsonRoyal Liverpool Philharmonic Orchestra + +3076434Adi BrettBritish classical violinistCorrectRoyal Liverpool Philharmonic OrchestraThe Manchester Camerata + +3076435Noel AndersonClassical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076436Steven WilkieViolinistCorrectRoyal Liverpool Philharmonic OrchestraThe Goldberg Ensemble + +3076437David RimbaultClassical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076438David RubyClassical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076439Sheila GascoyneClassical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076440Concettina Del VecchioClassical violinistCorrecthttps://www.facebook.com/concettina.delvecchio.3Royal Liverpool Philharmonic Orchestra + +3076441James Justin EvansClassical violinistCorrectJustin EvansRoyal Liverpool Philharmonic Orchestra + +3076442David Whitehead (2)Classical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076443Ian FairClassical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076444Alexander MarksClassical violinistNeeds VoteAlex MarksRoyal Liverpool Philharmonic OrchestraThe Light Fantastic String Quartet + +3076445Ros CabotClassical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076446Michael Dale (3)Credited for playing viola in Liverpool, UK, in 2011 +Possibly a dupe of [a=Mike Dale]CorrectRoyal Liverpool Philharmonic Orchestra + +3076447Robert John HebbronClassical violinistCorrectJohn HebbronRoyal Liverpool Philharmonic Orchestra + +3076448Richard Wallace (3)Classical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076449Joanna WeslingClassical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076450Patrick James HuttonClassical violinistCorrectJames HuttonRoyal Liverpool Philharmonic Orchestra + +3076451Kathryn CropperClassical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076452Helen BoardmanBritish classical violinistCorrectRoyal Liverpool Philharmonic Orchestra + +3076453Daniel SanxisBritish classical violistCorrectRoyal Liverpool Philharmonic Orchestra + +3076637John Robert ShepleyClassical violistNeeds VoteJR ShepleyJohn ShepleyRob ShepleyRoyal Liverpool Philharmonic OrchestraThe Light Fantastic String Quartet + +3076638Daniel HammertonBritish classical double bassistCorrectRoyal Liverpool Philharmonic Orchestra + +3076639Alan PendleburyBritish classical bassoonistCorrectRoyal Liverpool Philharmonic Orchestra + +3076641Claire FillhartClassical flutist, born in 1978 in The Netherlands, raised up in Canada, based in the UK.CorrectBBC PhilharmonicRoyal Liverpool Philharmonic Orchestra + +3076642Stephen MannClassical cellistCorrectRoyal Liverpool Philharmonic Orchestra + +3076643Joanna LanderBritish cellistCorrectRoyal Liverpool Philharmonic Orchestra + +3076644Marcel BeckerClassical double bassistNeeds Votehttps://www.facebook.com/pages/Marcel-Becker-Home-Page/122281031131225Royal Liverpool Philharmonic OrchestraEuropean Camerata + +3076645Katherine LacyBritish classical clarinetistNeeds Votehttps://www.facebook.com/katherine.lacy.90BBC Symphony OrchestraRoyal Philharmonic OrchestraRoyal Liverpool Philharmonic Orchestra + +3076646Gethyn Jones (2)British cellistNeeds VoteRoyal Liverpool Philharmonic OrchestraThe Light Fantastic String Quartet + +3076647Alexander HolladayBritish cellistCorrectRoyal Liverpool Philharmonic Orchestra + +3076648Fiona PatersonClassical flutistCorrectRoyal Liverpool Philharmonic Orchestra + +3076649Lowri MorganClassical double bassist, born in 1983.CorrectRoyal Liverpool Philharmonic Orchestra + +3076650Ashley FramptonBritish classical double bassistCorrectRoyal Liverpool Philharmonic Orchestra + +3076651Genna SpinksBritish classical double bassistCorrectRoyal Liverpool Philharmonic Orchestra + +3076652Nigel DuftyClassical double bassistCorrectRoyal Liverpool Philharmonic Orchestra + +3076653Rachael PankhurstClassical oboistNeeds VoteCity Of Birmingham Symphony OrchestraRoyal Liverpool Philharmonic OrchestraEnsemble 10:10 + +3076654Gareth TwiggBritish bassoonistCorrectRoyal Liverpool Philharmonic Orchestra + +3076691Simon ChappellBass trombonistCorrectRoyal Liverpool Philharmonic Orchestra + +3076692Rhys OwensBritish trumpet playerCorrectRoyal Liverpool Philharmonic Orchestra + +3076693Josephine FriezeClassical percussionistCorrectRoyal Liverpool Philharmonic Orchestra + +3076695Simon GriffithsClassical hornistCorrectRoyal Liverpool Philharmonic Orchestra + +3076697Neil HittBritish percussionistCorrectRoyal Liverpool Philharmonic Orchestra + +3076698Timothy NicholsonClassical hornistCorrectTim NicholsonRoyal Liverpool Philharmonic Orchestra + +3076699Christopher MorleyBritish classical hornist. + +For the American journalist, novelist and poet, please use [a=Christopher Morley (4)] +For the British music critic and liner notes author, please use [a=Christopher Morley (6)]Needs VoteChrisChris MorleyRoyal Liverpool Philharmonic OrchestraEnsemble 10:10 + +3076700Timothy Jackson (3)Classical hornistNeeds VoteTim JacksonRoyal Liverpool Philharmonic OrchestraEuropean Brandenburg EnsembleEuropean Camerata + +3076701Paul MarsdenBritish trumpet playerCorrectRoyal Liverpool Philharmonic Orchestra + +3076702James Blyth LindsayBritish classical trombonistNeeds VoteBlyth LindsayRoyal Liverpool Philharmonic OrchestraEnsemble 10:10 + +3076704Henry BaldwinVibraphonist and percussionist.CorrectLondon Philharmonic OrchestraRoyal Liverpool Philharmonic OrchestraAurora OrchestraYoung Musicians Symphony Orchestra + +3077465Matthias StichGerman saxophonist, born in 1961 in Freiburg, Germany. + +Needs Votehttp://www.matthiasstich.deMathias StichEnsemble ModernEnsemble Modern OrchestraFree Dig BigbandZeitwärtsStitches Brew + +3078149Danilo SquitieriItalian classical cellist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +3078154Diego RomanoClassical cellist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +3078217Martin Knowles (2)British tubist and tuba professor. +He studied at [l305416] (1977-1980). Since then he has been a freelance professional tuba player and teacher in the UK. He has been a member of the Orchestra of [a=English National Ballet Philharmonic] (Principal) since 1989. Tuba professor at the Junior Dept of the Guildhall School of Music.Needs Votehttps://twitter.com/mjknowles_tuba?lang=enhttps://www.linkedin.com/in/martin-knowles-2310bb101/?originalSubdomain=ukhttps://www.gsmd.ac.uk/staff/martin-knowlesLondon Symphony OrchestraEnglish National Ballet Philharmonic + +3078305Martina ForniItalian violist.Needs VoteConcertgebouworkestAnima EternaRadio Filharmonisch OrkestZefiro + +3078632Han-Na ChangSouth Korean cellist and conductor, born 23 December 1982.Needs Votehttps://www.hannachangmusic.com/https://en.wikipedia.org/wiki/Han-na_ChangHa-Na ChangHah-Na ChangHan-Na Chañg + +3078816George FavorsSaxophonistNeeds VoteFavorsG. FavorsGeorges FavorsCootie Williams And His OrchestraTodd Rhodes And His Toddlers + +3079059Alfons OrpkyGerman trombonist, born 2 December 1909 in Radebeul, Germany and died 25 September 1978.CorrectStaatskapelle Dresden + +3079663Jesse McCormickAmerican horn player.Needs VoteThe Colorado Symphony OrchestraThe Cleveland Orchestra + +3079757Attilio De PalmaAmerican french horn player and studio musician, born 29 June 1911 and died 2 December 2008.Needs VoteA. De PalmaA. DePalmaAttilio DePalmaAttillio DePalmaSan Francisco SymphonyNational Symphony Orchestra + +3080167Catherine RimerBritish cellist.Needs Votehttp://www.rcm.ac.uk/hp/professors/profile/?id=5042The English Baroque SoloistsCollegium Musicum 90Orchestra Of The Age Of EnlightenmentThe Avison Ensemble + +3081003Glenn Lewis GordonAmerican bassist, born 1969 in Huntington, New York.Needs VoteGlenn GordonOslo Filharmoniske Orkester + +3082759Curt Berg (2)American jazz trombonist and arranger.Needs Votehttps://originarts.com/artists/artist.php?Artist_ID=164https://www.ejazzlines.com/big-band-arrangements/by-arranger/curt-berg/Kurt BergWoody Herman And His OrchestraWoody Herman And The Thundering HerdCurt Berg & The Avon Street Quintet + +3082762Jim Thomas (11)American jazz baritone saxophonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3082764Evan DinerJazz drummerNeeds VoteDinerEvan DinnerWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3082765Lotten TaylorAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3084893Jana AndraschkeGerman classical violinist and composer.CorrectEuropean Union Youth OrchestraGürzenich-Orchester Kölner PhilharmonikerBayerische Kammerphilharmonie + +3086163Sergio SolaSergio Sola ArocenaSpanish viola player.Needs VoteOrquesta Sinfónica de RTVE + +3086170David Mata (2)David Mata PayeroDavid Mata Payero is a Spanish classical violinist.Needs VoteOrquesta Sinfónica de RTVE + +3086223Emilio RoblesEmilio Robles FélixSpanish lassical violinist.Needs VoteOrquesta Sinfónica de RTVE + +3086550Alexandre ChabodFrench Clarinetist & Bassett Horn playerNeeds Votehttps://www.imdb.com/name/nm1923363/Alexandre ChabotOrchestre National De L'Opéra De Paris + +3086801Roy JohnstonDixieland jazz trumpet playerNeeds VoteLeRoy "Roy" JohnstonLeroy JohnstonRoy JohnsonCalifornia RamblersLanin's Arkansaw TravelersThe Collegians (4) + +3086802Sam RubyReeds player.Needs VoteCalifornia RamblersThe Vagabonds (6)University Six + +3087229Vérène WestphalFrench classical violin, bass violin + cellist, born in Valence.Needs VoteVerene WestphalVerénè WestphalLes Musiciens Du LouvreLes DominosOrchestre De Chambre Pelléas + +3090747Heinz BöttgerHeinz Böttger (29 January 1929 — 28 August 2022) was a German classical violinist. He was a member of the [a260744] from 1955 to 1996.Needs VoteHeinz BottgerBerliner PhilharmonikerDrolc-QuartettRIAS-Kammerorchester + +3090818Rodrigo BauzáClassical violinist, born in 1983 in Argentina, based in Germany.Needs VoteRodrigo BauzaMetropole OrchestraRundfunk-Sinfonieorchester BerlinBeat Freisens SpelunkenorchesterCuareim Quartet + +3090900Denis SimonsViolinist, fl. 1970s.Needs VoteLondon Philharmonic Orchestra + +3091337Douglas WoottonBritish tenor vocalist and lutenist.Needs VoteDoug WootonDoug WoottonDouglas WootonTaverner ChoirThe City WaitesThe London Early Music Group + +3091496Artt FrankAmerican jazz drummer, born March 9, 1933 – died November 2024.Needs Votehttps://en.wikipedia.org/wiki/Artt_Frankhttps://arttfrank.com/https://www.imdb.com/name/nm2946076/Art FrankChet Baker QuartetThe Artt Frank Jazz Ensemble + +3093055Godfrey LayefskyAmerican violist, born 28 October 1915 and died 16 May 1997.Needs VoteGodfrey LayofskyNew York PhilharmonicThe Cleveland OrchestraThe Kohon String QuartetPittsburgh Symphony Orchestra + +3093087Eddie WaltersAmerican jazz and novelty vocalist, known in the 20's and the 30's. Needs Votehttps://adp.library.ucsb.edu/names/113441The Charleston Chasers + +3093476Hubert CrütsHubert Crüts (1949 - 2008) was a classical hornist.Needs VoteHubert CrützCollegium AureumGürzenich-Orchester Kölner Philharmoniker + +3094514Lucia PeraltaClassical string instrumentalistNeeds VoteLucía PeraltaLes Arts FlorissantsEnsemble Aleph + +3096798Triola-OrkesteriNeeds Major Changes"Triola" Orkester"Triola" Orkesteri"Triola” OrkesteriOrkesteriTriola OrkTriola Ork.Triola OrkesteriTriola ork.Triola- KonserttiorkesteriTriola-KonserttiorkesteriTriola-OrkTriola-Ork.Triola-SolistiorkesteriTriola-TanssiorkesteriTriola-konserttiorkesteriTriola-ork.Triola-orkesteriTriola-tanssiorkesteri + +3097608Kurt PetersenDanish trumpet playerNeeds VoteDet Kongelige KapelDanmarks Radios SymfoniorkesterDen Danske Brass Kvintet + +3098125České KvartetoCzech classical string quartet, founded in 1891, disbanded in 1934. + +Also known as Czech Quartet, Bohemian Quartet or Prague Quartet (Pražské Kvarteto). + +Photo (from left): Karel Hoffmann, Josef Suk, Jiří Herold, Ladislav Zelenka. Needs Votehttp://en.wikipedia.org/wiki/Bohemian_Quartet"Виган-квартет"Bohemian String QuartetMembers Of Bohemian QuartetThe Bohemian String QuartetČeské KvartettoJosef Suk (2)Jiří HeroldLadislav ZelenkaKarel Hoffmann (2) + +3098126Jiří HeroldCzech classical violinist, 1875–1934.Needs VoteJ. HeroldČeské Kvarteto + +3098127Ladislav ZelenkaLadislav ZelenkaCzech cellist. Needs Votehttps://de.wikipedia.org/wiki/Ladislav_Zelenkahttps://ru.wikipedia.org/wiki/%D0%97%D0%B5%D0%BB%D0%B5%D0%BD%D0%BA%D0%B0,_%D0%9B%D0%B0%D0%B4%D0%B8%D1%81%D0%BB%D0%B0%D0%B2https://www.wikidata.org/wiki/Q931338L. ZelenkaCzech TrioČeské Kvarteto + +3099373Carlos DourthéClassical cellist and conductor, born in Santiago du Chile.Needs VoteCarlos DourtheOrchestre National De FranceOrchestre De Chambre Jean-François PaillardQuatuor YsaÿeTrio Henry + +3099374Richard SiegelAmerican classical harpsichordist and organist.Needs VoteR. SiegelOrchestre National De FranceOrchestre De Paris + +3099711Frank Lo PintoFrank LoPintoAmerican jazz trumpeter. Born March 20, 1924, died July 16, 2012 in Las Vegas, NVNeeds VoteFrank Le PintoFrank LePintoFrank LoPintoBenny Goodman And His OrchestraTito Puente And His Orchestra + +3101243Jean-Baptiste BrunierFrench violistCorrectJB. BrunierOrchestre Philharmonique De Radio France + +3101386Silver AinomaeSilver AinomäeEstonian cellist, born January 21, 1982 in Tallinn.Needs Votehttp://www.silvercello.com/Silver AinomäeThe Colorado Symphony OrchestraMinnesota Orchestra + +3101634Ann BakerAnna Beatrice Wagner née BakerAmerican jazz singer, 2008 inductee of West Virginia Music Hall of Fame. + +Musical career began in Pittsburgh jazz outlets alongside Harry and Jerome Betters and Bernie Crenshaw. First national notice after Louis Armstrong featured her on Broadway with his group in the early 1940s. Baker also did stints with Lionel Hampton and Count Basie. She is probably best known as Sarah Vaughan's replacement as vocalist with Billy Eckstine. + +Born: 21 August 1915 in Homestead, Pennsylvania, USA +Died: 29 August 1999 in Charleston, West Virginia, USANeeds Votehttps://www.wvencyclopedia.org/articles/2358https://en.wikipedia.org/wiki/Ann_Baker_(singer)https://www.wvmusichalloffame.com/hof_baker.htmlA. BakerAnn BaxterAnn Hathaway Or BaxterBakerC. Baker + +3103110Erez OferClassical violinist, born 1959 in Israel. He was the concertmaster of [a=The Philadelphia Orchestra] from 1995 to 1998, of the [a604396] from 1993 to 1998 and of the [a796211] since 2002.Needs VoteOferThe Philadelphia OrchestraSymphonie-Orchester Des Bayerischen RundfunksRundfunk-Sinfonieorchester Berlin + +3103548Percy KaltWest German violinist, active from the 1960s.CorrectPersy KaltSüdwestdeutsches Kammerorchester + +3103931Maarten SmitClassical timpani (percussion) artistNeeds VoteNetherlands Bach CollegiumRadio Kamer Filharmonie + +3104496Jacqueline Roscheck-MorardJacqueline Roscheck-MorardViolinist, born in Fribourg, Switzerland, based in Vienna. Wife of [a4279045] and mother of [a3611463]Needs Votehttps://www.mdw.ac.at/hbi/lehrende/violine/univ__prof__jacqueline_roscheck_morardChacline RoschekJacqueline RoscheckJacqueline RoschekConcentus Musicus Wien + +3106290Annie MorrierCanadian classical violistCorrectLes Violons du RoyQuatuor Cartier + +3106446Владимир Попов (5)Владимир Павлович ПоповBorn June 26, 1945 +Soviet and Russian conductor. Honored Artist of the Russian Federation (1995)Needs Votehttps://ru.wikipedia.org/wiki/%D0%9F%D0%BE%D0%BF%D0%BE%D0%B2,_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80_%D0%9F%D0%B0%D0%B2%D0%BB%D0%BE%D0%B2%D0%B8%D1%87V. PopovVladimir PopovВ. ПоповРусский Народный Оркестр Имени В. Андреева + +3107609John Adams (22)Jazz bassist, composer and arrangerNeeds VoteWoody Herman And His OrchestraThe Woody Herman Big BandPete Petersen & The Collection Jazz OrchestraThe John Adams GroupJoe LoCascio Trio1:00 O'Clock Lab Band + +3108417Kendall BettsAlton Kendall Betts was an American french horn player. Former principal horn of the [a973130] from 1979 until 2004. +Born September 24, 1947 in Woodbury, NJ +Died August 16, 2016 (aged 68)Needs Votehttps://www.legacy.com/us/obituaries/nytimes/name/alton-betts-obituary?pid=181601530H. Kendall BettsKendal BettsKendell BettsThe Philadelphia OrchestraMinnesota Orchestra + +3108652Chunhe GaoChinese classical violinistNeeds VoteChun He GaoGao Chun HeOrchestra Della Radio Televisione Della Svizzera Italiana + +3109868Timothy HawesClassical trumpet player and soloist + +- trumpet soloist with the Israel Chamber Orchestra and tours in Europe and Japan +- trumpet organ recitals with organist [a4086681] and Pianist Julian Gallant. +- director of OffStage Brass +- principal trumpet of the orchestra of LES MISERABLES, London. +- Former member of the Philip Jones Brass Ensemble Needs VoteTim HawesPhilip Jones Brass EnsembleThe Academy Of Ancient MusicIsrael Chamber OrchestraOrchestra Of The 18th Century + +3112738Tine RudloffViolinist.Needs VoteAnne Mette Iversen's Double LifeDR SymfoniOrkestret + +3112741Sarah McClelland JacobsenClassical violinist.Needs VoteDR SymfoniOrkestret + +3113963MKN (2)Kyle NurseNeeds VoteFacebook: https://www.facebook.com/DJMKNOfficial/ Twitter: https://twitter.com/DJMKN SoundCloud: https://soundcloud.com/DJMKN93 YouTube: https://www.youtube.com/DJMKN93 Instagram: DJMKN93FMKNT + +3114410Anja BölkowClassical viola player.CorrectAnja BolkowLes Arts Florissants + +3115120Philip Sheffield (2)British tenor vocalistNeeds Votehttp://philipsheffield.com/Philip John SheffieldThe Cambridge SingersLondon VoicesThe Arianna Ensemble + +3115571Marcos TroiloArgentine musician. +Brother of [a=Aníbal Troilo]Needs VoteAníbal Troilo Y Su Orquesta Típica + +3115620Reynaldo NicheleReynaldo Fidel NicheleArgentinian tango violinist (Zarate, 1 Jun. 1918 - 25 Apr. 1998)Needs Votehttps://www.todotango.com/creadores/ficha/1758/Reynaldo-NicheleReinaldo NicheleReinaldo NichelleSexteto MayorFrancisco Canaro Y Su Orquesta TipicaAnibal Troilo Y Su Orquesta TipicaEduardo Rovira Y La Agrupación De Tango ModernoReynaldo Nichele Y La Agrupación De Tango ModernoLeopoldo Federico Y Su Orquesta TípicaOrquesta Osvaldo RequenaOcteto TibidaboCuarteto Lorenzo + +3115621Orlando GoñiOrlando Cayetano GogniArgentinian pianist and composer. B. Buenos Aires, 26 Jan.1914 - 5 Feb.1945 + +Debuted in 1927 in a juvenile orchestra with [a=Alfredo Calabró], and the two formed part of a sextet orchestra under lifelong friend [a=Alfredo Gobbi]. +Worked for [a=Anselmo Aieta]'s orchestra by the turn of 1930, then he participated briefly in [a=Miguel Caló]'s orchestra. +Worked for [a=Manuel Buzón]'s orchestra up to 1936. +In 1937 became a founding member of [a=Aníbal Troilo]'s ensemble as pianist and arranger until 1943. +Founded his own orchestra 1943-1944 then briefly associated with [a=Francisco Fiorentino]. +Needs VoteAníbal Troilo Y Su Orquesta TípicaMiguel Caló Y Su Orquesta TípicaAlfredo Gobbi Y Su Orquesta TípicaFrancisco Fiorentino Y Su Orquesta TípicaOrquesta Anselmo AietaOrquesta Tipica Orlando GoñiManuel Buzón Y Su Orquesta Típica + +3115623David Diaz (6)David DíazArgentinian violinist and composer (Tandil, Argentina, 17 May 1906 - 8 May 1977), he played with Aníbal Troilo (1914-1975) +Brother of [a892578] and [url=https://www.discogs.com/artist/3464326-Pepe-Diaz]José Díaz[/url], contrabassist. + +Needs VoteDavid J. DiazAníbal Troilo Y Su Orquesta Típica + +3116677Ted RosenAmerican violinist from the big band era.Needs VoteT. RosenHarry James And His OrchestraBenny Goodman With Strings + +3118811Zeb JulianSebastian R. JulianJazz guitarist in 1930's and 1940's. Born September 29, 1910. Died January 17, 1974.Needs Votehttps://steveherberman.com/zeb-julian-guitaristZeb JullianWingy Manone & His OrchestraHal McIntyre And His Orchestra + +3118812Buck ScottSwing era trombonistNeeds VoteWingy Manone & His Orchestra + +3119650Felix KhunerClassical violin player born 1906 and died June 10, 1991 in California. He joined the Kolisch Quartet in 1927 as its second violinist. Member of San Francisco Symphony from 1938 until the mid 1970s.Needs Votehttp://en.wikipedia.org/wiki/Felix_KhunerSan Francisco SymphonyKolisch Quartet + +3119651Ernst FriedlanderErnst Peter FriedlanderClassical cellist, composer, and teacher. Born on October 6, 1906 in Vienna, naturalized Canadian in 1963, died on October 28, 1966 in North Vancouver. Married to +He studied 1928-30 in Vienna with Anton Walter (cello) and Heinrich Schenker (theory), among others. After an active concert career in Europe he moved in 1937 to the USA, where he was principal cellist with the Pittsburgh, Indianapolis, New Orleans, Kansas City, and Chicago SOs, was a member 1943-55 of the Pro Arte Quartet, and taught at the universities of Wisconsin and Oklahoma. He made his US solo debut at Town Hall, New York, 19 November 1943. In 1958, he moved to Vancouver, where he served as principal cellist 1958-66 with the CBC Vancouver Chamber Orchestra and the Vancouver Symphony Orchestra. He was cellist 1960-66 with the Vancouver String Quartet and taught 1958-66 at the University of British Columbia. With his wife, the pianist Marie (Elisabeth) Werbner (born 4 March 1911; died 2 March 1995), he performed on CBC Radio, premiered Milhaud's Sonata for Cello at the 1959 Vancouver International Festival, and recorded works by Malipiero, Cowell and Coulthard on Contemporary Music for Cello (1964, Col MS-6542/Odyssey XLP-75842), an LP that also includes Friedlander's performance of his own Sonata (1963) for solo cello. His other compositions include a Cello Concerto (1959), Minnelied for cello and piano (1964, Empire 1972), a Rhapsody for cello or bassoon and orchestra (1964), and works for string quartet, brass sextet, and chamber orchestra. Needs VoteErnst FiedlanderChicago Symphony OrchestraPro Arte Quartet + +3119654Eugene LehnerLehner JenőHungarian-born classical viola player and music educator (1906 – 13 September 1997).Needs Votehttps://en.wikipedia.org/wiki/Eugene_Lehnerhttps://hu.wikipedia.org/wiki/Lehner_Jen%C5%91Eugen LehnerLehnerBoston Symphony OrchestraKolisch Quartet + +3119661Jascha VeissiJoseph WeissmanClassical viola player. Born in Ukraine (then Russia) near Odessa, on January 25, 1898; died in Carmel, California, on October 11 1983.Needs VoteSan Francisco SymphonyThe Cleveland OrchestraLos Angeles Philharmonic OrchestraKolisch Quartet + +3120247Spiegle WillcoxNewell Lynn “Spiegle” WillcoxEarly Jazz trombonist, most famous for his involvement with [a282067] and [a338450]. + +Born 2 May 1903 in Sherbourne, Chenango County, New York, USA. +Died 25 August 1999 in Cortland, New York, USA. + +Youngest of four children and only son of Lynn Dee and May Newell Willcox of the village of Sherbourne, Chenango County, New York. In 1927, Spiegle “retired” from the music business to run his father’s coal business. Spiegle led the company’s transition to fuel oil and developed a successful business while running a big band on the weekends in the Cortland, Ithaca, and Syracuse areas. Occasionally, old friends like Benny Goodman, the Dorsey brothers, and others would drop by to jam. His active life, which always included music, kept his chops in shape for his “rediscovery” in the 1970s. His association with Bix Beiderbecke brought him recognition that he continued to enjoy until his unexpected death at 96. Needs Votehttp://bixbeiderbecke.com/Willcox/Complete.htmlhttps://adp.library.ucsb.edu/names/111706"Spiegle" WillcoxN. WilcoxNewell "Spiegle" WillcoxS. WilcoxSpeigal WillcoxSpeigel WilcoxSpeigel Wilcox Of Jean Goldkette BandSpeigel WillcoxSpeilgel WilcoxSpiegal WilcoxSpiegle WilcoxWillcoxJean Goldkette And His OrchestraCalifornia RamblersThe Collegians (4) + +3121988Jan Hoffmann (4)Classical Bass vocalistNeeds VoteJan HoffmanCappella AmsterdamPA'DAM + +3122827William GauntBass vocalist.Needs Votehttps://www.linkedin.com/in/william-gaunt-a3094024/https://www.bach-cantatas.com/Bio/Gaunt-William.htmhttps://www.allmusic.com/artist/william-gaunt-mn0001968491https://rateyourmusic.com/artist/william-gaunt/credits/Will GauntMagnificatThe SixteenI FagioliniPolyphonyUniversity College Dublin Choral ScholarsTenebrae (10)AlamireChoral Scholars of King's College, CambridgeGallicantusThe Gonzaga Band + +3124487John Corigliano (2)(d. September 1, 1975) Violinist, father of composer [A=John Corigliano]; concertmaster of the New York Philharmonic from 1943 to 1966 and San Antonio Symphony Orchestra from 1966 until his death.Needs Votehttps://www.nytimes.com/1975/09/02/archives/john-corigliano-is-dead-at-74-exphilharmonic-concertmaster.htmlDžon KoriljanoJ. CoriglianoJohan CoriglianoJohn CoriglianoJohn Corigliano Sr.John Corigliano, Sr.ジョン・コリリアーノNew York PhilharmonicSan Antonio Symphony Orchestra + +3125281The Goofus FiveRecording jazz group, led in the 1920s by [a=Adrian Rollini].Needs VoteGoofus FiveThe Goofus Five & Their OrchestraThe Goofus Five And Their OrchestraCalifornia RamblersThe Goofus WashboardsAdrian RolliniEd KirkebyBobby Davis (4)The Goofus Five And Their Orchestra + +3125282Andrea Oliva (2)Italian classical flutist, born 1977 in Modena.Needs Votehttp://www.andreaoliva.com/?lang=enOrchestra dell'Accademia Nazionale di Santa CeciliaPhilharmonic Orchestra Of Europe + +3125445Raphael FliederAustrian cellist, born 1962 in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerFlieder Trio + +3126237Els CrommenBelgian soprano vocalist, born in Tongres.Needs VoteChoeur de Chambre de Namur + +3126870Jimmy Shine (2)Alto saxophonistNeeds VoteJ. ShineJimmie ShineShineWashboard Rhythm KingsAlabama Washboard Stompers + +3126875Jimmy Spencer (2)Washboard playerNeeds VoteJimmie SpencerWashboard Rhythm Kings + +3126877Steve Washington (3)American early jazz banjo/guitar player and vocalist (also recorded on piano and clarinet), born c. 1900 in Philadelphia, died c. January 1936 in Boston. +From 1931 worked with bands in Pennsylvania, recorded with [a=Washboard Rhythm Kings] 1931-1933, as a leader in 1933, and with [a=The Georgia Washboard Stompers] 1934-1935. From 1934 a principal soloist with pianist [a=Ace Harris]'s Sunset Royal Orchestra.Needs VoteS. WashingtonWashingtonWashboard Rhythm KingsAlabama Washboard StompersThe Georgia Washboard StompersChicago Hot FiveSteve Washington And His Orchestra + +3127092Daniele Bovo (2)Italian cellistNeeds Votehttp://www.danielebovo.it/home/https://romechamberfestival.org/it/performer/daniele-bovo-2/https://www.facebook.com/daniele.bovo.violoncelloVenice Baroque OrchestraAlessandro Stradella ConsortDelitiæ MusicaeEnsemble Il FalconeL'Opera Stravagante Di Venezia + +3127218Jean-Louis BindiFrench classical bass vocalistNeeds VoteBindiJ.L. BindiJean Louis Bindi + +3127220Patrick HenckensClassical tenor vocalistNeeds Votehttp://www.patrickhenckens.com/Chorus Of The Frankfurt Opera + +3127221Eric HuchetClassical tenor vocalistNeeds VoteHuchetÉric Huchet + +3128282Carroll MartinAmerican trombonist.Needs VoteMartinIsham Jones OrchestraChicago Symphony Orchestra + +3128283John Kuhn (2)Brass bass [Tuba] player working from the 1920ies on.Needs VoteJohn "Chief Red Cloud" KuhnElmer Schoebel And His Friars Society Orchestra + +3128644David Thomas (27)OboistNeeds VoteEnglish Chamber OrchestraYoung Musicians Symphony Orchestra + +3129093Christa JardineChrista Jardine is a classical violist from Australia.Needs VoteMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksBerner SymphonieorchesterOrchester Des Staatstheaters Am GärtnerplatzLumina QuartettSwiss Orchestra + +3131443Axel SchacherSwiss / French violinist, born in 1981 in Paris, France.Needs VoteSinfonieorchester BaselAmati QuartetBelcea Quartet + +3132330Mark Slater (2)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3132842Piroska BaranyayHungarian classical cellist, born in Budapest.Needs VoteThe English Baroque SoloistsAkademie Für Alte Musik BerlinThe Academy Of Ancient MusicLautten CompagneyArcangeloEnsemble Sans Souci BerlinLes FavoritesOrfeo Orchestra Budapest + +3132844Adam RömerClassical violistNeeds VoteAdam RomerRőmer ÁdámCity Of Birmingham Symphony Orchestra + +3132973Louis Davidson (2)American trumpet player, born 16 March 1912 in New York City, New York and died 30 March 1999 in Studio City, California.CorrectThe Cleveland Orchestra + +3133099Kurt JanetzkyKurt Joseph Johann Janetzky Kurt Janetzky (1906 - 1994) was a German horn player.Needs VoteKurt JanebskyYanetzkyК. ЯнецкийRundfunk-Sinfonie-Orchester LeipzigCapella LipsiensisDresdner PhilharmonieHornquartett Des Rundfunk-Sinfonie-Orchester Leipzig + +3133400William J. HebertAmerican piccolo player and teacher, born in 1923.CorrectThe Cleveland Orchestra + +3134107Heiner StolleGerman violist, born 24 June 1952 in Querfurt, GDR (today Germany).Needs VoteGewandhausorchester Leipzig + +3134335Hilary BrowningBritish classical cellist.Needs VoteRoyal Liverpool Philharmonic Orchestra + +3134337Amelia JonesU.K. violinist.Needs VoteAmelia Conway-JonesRoyal Liverpool Philharmonic Orchestra + +3134341Susanna JordanViolinist. + +First Violin with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +3134344Sarah Hill (5)Liverpool, England classical and modern pop violist/violinistNeeds VoteRoyal Liverpool Philharmonic Orchestra + +3134346Fiona StundenViolist with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +3134574Reiner WehleGerman clarinetist, born on 27 May 1954 in Kiel, Germany. He is married to [a859030].Correcthttp://www.reinerwehle.de/R. WehleRainer Wehleライナー・ヴェーレBläserensemble Sabine MeyerTrio Di ClaroneEnsemble Kontraste (2)Quintett Chalumeau + +3135088Red Rodney's Be-BoppersNeeds Major ChangesRed RodneyRed Rodney's BepoppersCurly RussellAl HaigTiny KahnStan LeveyAllen EagerChubby JacksonSerge ChaloffRed Rodney + +3137830John PurtonBritish classical violinistCorrectHallé Orchestra + +3138358Paul Sharp (4)Classical trumpeterNeeds VoteLa SerenissimaThe English Baroque SoloistsDunedin ConsortLa Nuova MusicaArcangeloThe MozartistsMusicians Of Shakespeare's Globe + +3138624Jérôme CosteFrench graphic designer.Needs VoteCactus Design + +3139127Yrjö Saarnion PolkkayhtyeNeeds Major ChangesSaarnion PolkkayhtyeYrjö Saarnio's BandYrjö Saarnion YhtyeYrjö Saarnio + +3140846Earl OliverEarle Preston OliverJazz trumpeter. + +Oliver was born in Cambridge, Massachussetts on October 21 of 1894. +He seems to started trumpet lessons when he was a child. +Oliver served as trumpeter for the General Pershing's Military band during the World War I. +After the World War I, he started making recordings on 1919 as member of several Harry A. Yerkes units & joined Ray Miller's band, with whom Oliver recorded from 1920 to August 12 of 1922. +It was also the beginning of Oliver's growling trumpet style, which started its developement that was modeled after [a=Nick LaRocca] & [a=Jules Levy Jr.] among other trumpeters. +Oliver's style consisted of varying the melody with the frequent use of flutter tongue effects that he started using around 1921 & gave birth also to his growling trumpet playing style. +According to Michael May, Oliver developed & started using 6 solo routines when he was playing either on live gigs or on recording sessions, a fact which attests his ability to read. +That isn't all, Oliver was also very good with the mutes, which were the wah-wah mute, the straight mute & even the derby mute. +He also played in open horn too. +Trombonist Tom Brown was with Oliver on both bands. +Oliver left Miller's Orchestra on mid August of 1922 to join [a=Clyde Doerr]'s Orchestra, with whom he recorded for Victor "I Wish I Knew", "Swanee Smiles" & "Suez", although as 2nd trumpeter alongside William Nappi. +It was on March of 1923 that Oliver started recording with [a=Bob Haring] (his first session with Haring was on March 19 of 1923, when he recorded "By The Shalimar" & "Starlight Bay"), and April of 1923 that [a=Ben Selvin] (the grandpa of David Eric Selvin & Emily Selvin) hired Earl Oliver for his band on recording sessions alongside Ray Stillwell, Arnold Brilhart, Thomas/Tom "Spatty" Timothy & Lew/Louis/Lou Cobey, who in their case were hired by Selvin on November of 1922. +Oliver's first recording session with Selvin was between April 27 & 28 of 1923, when they backed Billy Jones & Ernest Hare in their recordigns of "I Love Me (I'm Wild About Myself)" (Jones's solo recording) & "Barney Google" (vocal duet by Jones & Hare), both originally issued on Vocalion 14556. +And if that's not enought, [a=Arthur Lange] hired Oliver for his Orchestra on mid 1923. +Thanks to his good work with Ben Selvin, Arthur Lange & Bob Haring, Oliver also started & was also allowed by Selvin to record with [a=Roger Wolfe Kahn], [a=Sam Lanin], [a=Charlie Fry], [a=Nathan Glantz], [a=Lou Gold], [a=Eddie Peabody], [a=Adrian Schubert], [a=Harry Reser], [a=Joe Raymond] (Oliver is on Raymond's 1923 to 1924 Victor sides), [a=Egizi Olympic Theatre Orchestra] (under Umberto Egizi's direction) & many more bandleaders & orchestras, as well as backing vocalists [a=Irving Kaufman], [a=William Robyn], [a=Peggy English], [a=Lee Morse], [a=Betty Morgan], [a=Healy & Cross], [a=Lucille Hegamin], [a=Evelyn Preer], [a=George Watts (5)], [a=Frank Richardson (2)], [a=Dolly Kay], Blanche Kaise, [a=Arthur Fields], [a=Arthur Hall (2)], [a=John Ryan (14)], [a=Isabella Patricola], etc. +According to Joe W. Freeman's book "[a=Henry Levine] and the "recording" trumpeters", Henry "Hot Lips" Levine described Earl Oliver as being a tall & skinny guy that was more or less a loner & it was his good playing that the recording bandleaders wanted. +Oliver lived with his wife, Marcella at 435 East 57 St Manhattan, New York. He died on January 2, 1933. He was 38 years old when he passed. +[Information about Oliver's first recording with Ben Selvin from Richard Johnson & Bernard Shirley's book "American Dance Bands On Record & Film, 1915-1942", who is also the source of the information about Oliver's recording career.]Needs Votehttps://familysearch.org/ark:/61903/1:1:M95J-TW1https://familysearch.org/ark:/61903/1:1:JG7R-C27http://musicsack.com/PersonFMT_ItemPK.cfm?ItemPK=2438Earl T. OliverOliverRay Miller And His OrchestraSix Jumping JacksBen Selvin & His OrchestraThe Happy SixHarry Reser & His OrchestraArthur Lange And His OrchestraThe Volunteer FiremenEarl Oliver's Jazz BabiesGreen Bros. Xylophone OrchestraRay Miller's Black And White Melody BoysPhil Hughes And His High HattersThe Four MinstrelsOkeh SyncopatorsBill Wirges And His OrchestraThe Jazz PilotsPerry's Hot DogsEarl Oliver's Melody MenEgizi Olympic Theatre Orchestra + +3141533Kurt WallnerKurt Wallner (27 February 1902 - 1985) was a German classical bassist and lecturer for contrabass at the "Akademische Hochschule für Musik" (today [l1125469]. +Also known as Curt Wallner.Needs VoteBerliner Philharmoniker + +3141579Gerald SchubertGerald Schubert is an Austrian violinist.Needs VoteWiener Philharmoniker + +3143920Dr. Marion ThiemCredited as executive producer for label [l=Deutsche Grammophon]Needs Vote + +3145434Chung TrioNeeds Major ChangesMyung-Whun ChungKyung-Wha ChungMyung-Wha Chung + +3145903Soila AhlgrenNeeds Major ChangesSoila Ahlgrén + +3145904Martti PajanneNeeds Major Changes + +3147185Norman Nelson (3)Norman Richard NelsonIrish classical violinist, concertmaster, conductor, and Professor of Violin & Chamber Music. Born 1 August 1931 in Dublin, Ireland - Died 23 February 2018 on Vncouver Island, British Columbia, Canada. +He studied at the [l290263] (1945-1951). He joined the [a=London Philharmonic Orchestra] in 1951 and the [a=Sadler's Wells Orchestra] in 1952. He was assistant concertmaster of the [a=London Symphony Orchestra] (1956-1957 & 1959-1962), the [a=Royal Philharmonic Orchestra] (1957-1959) and the [a=BBC Symphony Orchestra] (1962-1965). He recorded as soloist with [a=The Academy of St. Martin-in-the-Fields], of which he was a founding member. He served 1965-1973 as concertmaster of the [a=Vancouver Symphony Orchestra] and 1966-72 and in 1976 as concertmaster and director of the [a=Baroque Strings Of Vancouver]. He founded and served 1968-1979 as first violin of the [a=Purcell String Quartet] and founded in 1973 and directed until 1979 the Academy Strings, an ensemble for advanced students. In 1979, he was appointed Professor of Violin & Chamber Music at the University of Alberta and became first violin with the [a=University Of Alberta String Quartet]. In 1985, he became concertmaster of [a=The Alberta Baroque Ensemble]. In 1986, he became conductor of the [b]University of Alberta Chamber Orchestra[/b].Needs Votehttps://www.facebook.com/people/Memories-of-Norman-Nelson/100063559268973/https://open.spotify.com/artist/1XrgKx3nx2db5SZs0srVhPhttps://music.apple.com/us/artist/norman-nelson/18082007https://www.thecanadianencyclopedia.ca/en/article/norman-nelson-emchttps://sookeregionchamber.com/directory/scoc_tag/norman-nelson/https://www.facebook.com/VSOrchestra/posts/norman-nelson-1931-2018-violinist-concertmaster-educator-and-conductor-the-vso-w/10156021126913815/https://www.legacy.com/ca/obituaries/timescolonist/name/richard-nelson-obituary?pid=188324543https://www.tributearchive.com/obituaries/21757978/norman-nelsonLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraVancouver Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsSadler's Wells OrchestraPurcell String QuartetUniversity Of Alberta String QuartetBaroque Strings Of VancouverThe Alberta Baroque Ensemble + +3147188Ian Hampton (2)Ian (Chalmers) HamptonBritish, naturalized Canadian in 1974, classical cellist, conductor, cello teacher, and author. Born 13 March 1935 in London, England, UK. +He studied at [l305416] (1945-1947). He was a member of the [a=London Symphony Orchestra] (1957-1959), and a founding member of [a=The Academy of St. Martin-in-the-Fields] in 1959. He was the cellist of the [a=Edinburgh String Quartet] (1959-1965). He emigrated to Canada via Berkley, California where he taught for a year with his father, [a=Colin Hampton], and was cellist of the [a=Oakland Symphony Orchestra] and the [b]Persinger String Trio[/b]. In 1966, he was appointed Principal Cello of the [a=Vancouver Symphony Orchestra] (1967-1973) and also of the [a=CBC Vancouver Orchestra] (for 29 years). He was a founding member and cellist of the [a=Baroque Strings Of Vancouver] (to 1988) and also the [a=Purcell String Quartet] (1968-1989). In 1979, he became principal & Artistic Director of the Langley Community Music School and, in 1982, Principal Cello of [a=The Vancouver Opera Orchestra], both positions which he continued to hold until 2000, along with his role as Principal Cello of the CBC Vancouver Orchestra. He was a member of the [b]Masterpiece Piano Trio[/b] (1978-1981). He conducted the [url=https://www.discogs.com/artist/6540968-Vancouver-Island-Symphony-Orchestra]Nanaimo Symphony Orchestra[/url] (1978-1981) and the [b]Surrey Youth Orchestra[/b] (1978-1982). He taught at the [l=University Of British Columbia] (1970-1971). +In recognition of his contribution to Canadian new music, in 2009, he was named a Canadian Music Centre ambassador.Needs Votehttps://open.spotify.com/artist/7rddPkXKf3L3ql2s1sJoYfhttps://music.apple.com/jm/artist/ian-hampton/283202347https://www.thecanadianencyclopedia.ca/en/article/ian-hampton-emchttps://langleymusic.com/faculty/ian-hampton-cello/https://www.portmoodylibrary.ca/en/news/featured-white-pines-local-author-ian-hampton.aspx#:~:text=Ian%20Hampton%20is%20a%20professional,for%20the%20CBC%20Radio%20OrchestraLondon Symphony OrchestraVancouver Symphony OrchestraEdinburgh String QuartetOakland Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsThe Vancouver Opera OrchestraCBC Vancouver OrchestraPurcell String QuartetBaroque Strings Of Vancouver + +3147312Helena AltmanisClassical violistNeeds VoteEstonian National Symphony OrchestraString Quartet Prezioso + +3148232Markus Wolf (2)Classical violinist, born 1962 in Vienna. Concertmaster of the [a451535].Needs VoteBayerisches StaatsorchesterMünchner Horntrio + +3148233Johannes DenglerGerman horn player, born 1973 in Traunstein.Needs VoteDenglerBayerisches StaatsorchesterMünchner Horntrio + +3150762Karim StrahmFrench horn player.CorrectOrchestre Des Concerts Lamoureux + +3150994Jeffrey LangJeffrey C. LangAmerican orchestral horn player, educator and studio musician in the greater New York-Philadelphia area.Correcthttps://www.jeffrey-lang.com/Jeff LangJeffrey C. LangLangThe Philadelphia Orchestra + +3151177Marek MarczykClassical violistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +3152292Ralf-Carsten BrömselRalf-Carsten Brömsel is a German violinist and Professor of Violin at the [l517392]. He was a member of the [a854918] from 1981 to 2022.Needs VoteStaatskapelle DresdenDresdner PhilharmonieJugendsinfonieorchester Der Spezialschule Für Musik Der Musikhochschule „Carl Maria von Weber” Dresden + +3152919Giuseppe De IesuGiuseppe De IesuItalian trance and hardstyle producer.Needs VoteArpa's DreamJesus P.DJ Vortex & Arpa's Dream4 Navigators2 ExplorersMa-Pe-RoMa-Pe-RookPhat 4StartrackersEngland06 (3) + +3153204Martin And FinleySoft Rock Duo formed by Tony Martin. Jr and Guy Finley. They were signed by Mowest label in 1972 releasing a couple of singles before being switched to the main Motown label. As a result their only album, Dazzle 'Em With Footwork was originally scheduled for release on Mowest and subsequently got switched to Motown, appearing in 1974. Produced by Bob Gaudio the album saw them working with an abundance of Stalwart musicians, but Motown were unsure how to promote or market the album and it soon disappeared from view. Needs VoteMartin & FinleyT. Martin, Jr. - G. FinleyTony Martin, Jr / Guy FinleyGuy FinleyTony Martin, Jr + +3153643Yuki Sato佐藤由起 (Yuki Sato)Japanese bassoon (faggot) player. +Born in Nagano, Japan. + +NHK Symphony Orchestra from May 1, 2009Needs VoteNHK Symphony OrchestraSydney Symphony Orchestra + +3154579Jaap MeyerNeeds VoteJ. MeyerThe Ramblers + +3155878Muriel LaneMuriel E. Carpenter née LaubscherAmerican jazz vocalist mainly active in the late 1930s and 1940s, singing with the orchestras of [a=Bob Crosby], [a=Bing Crosby], [a=Woody Herman], and [a=Ray Noble]. She retired from singing full-time when she got married in the 1940s. + +Born: 1 June 1914 in Bridgeport, Connecticut, USA +Died: 7 February 2010 in New Haven, Connecticut, USANeeds Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/326424/Lane_MurielWoody Herman And His OrchestraWoody Herman And His WoodchoppersThe Band That Plays The Blues + +3156155Florence RoussinFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +3156237Howard RattayAmerican violinist.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/116220/Rattay_HowardRattayThe Philadelphia OrchestraVictor Symphony OrchestraNeapolitan TrioVenetian TrioVictor String QuartetVictor Brass Quartet + +3157552Hal Smith (4)Harold R. SmithAmerican trombonist (born on March 5, 1938, in Newton, Kansas; died on January 10, 2024, at Stone Crest Assisted Living in Freeland, MI.Needs VoteHarold SmithHarry James And His OrchestraBoyd Raeburn And His Orchestra + +3157636Earl Baker (3)Jazz trumpeterNeeds VoteBakerJean Goldkette And His OrchestraSeattle Harmony KingsEarl Baker And His Friends + +3158071Lewis Van HaneyAmerican trombone player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York PhilharmonicNew York Brass Ensemble + +3158166Ray HopfnerAmerican alto saxophone player, part of Woody Herman's 'The Band That Plays the Blues'.Needs VoteRay HopnerWoody Herman And His OrchestraCharlie Barnet And His OrchestraSonny Dunham SextetThe Band That Plays The Blues + +3158171Jack LeMaireAmerican Jazz guitarist. +Born July 1, 1911 in Bronxville, New York, USA. +Died October 18, 2010 in North Hollywood, California, USA. +Son of [a=George Le Maire] and nephew of [a=William Le Maire]. +Jack Le Maire started working vaudeville as a toddler with his father, George. Jack toured with Bob Hope and Johnny Grant doing stand-up for USO shows, ending each set with a song on his guitar. Later in life, LeMaire appeared as Colonel Sanders in a number of KFC advertisements.Needs Votehttps://www.imdb.com/name/nm1468272/Jack Le MairoJack LemaireJackie LeMaireLeMaireWingy Manone & His OrchestraCharlie Barnet And His OrchestraHal Kemp And His OrchestraJoe Marsala And His Chicagoans + +3158173Tommy ReoJazz trombonistNeeds VoteTom ReoBenny Goodman And His Orchestra + +3158926Cedric SharpeBritish classical chamber & orchestral cellist, composer, and Professor of Cello (born 13 April 1891, Maida Vale, London, England - Died 1978 in Steyning, Sussex, England). + +He graduated from the [l=Royal College Of Music, London] in 1912. In 1915, he co-founded the [b]Philharmonic Quartet[/b]. In 1924, he founded the [a=Virtuoso String Quartet]. He was also a member of several other ensembles ([b]Chamber Music Player[/b], [b]Chamber Music Trio[/b], [b]English Trio[/b], [b]Trio Players[/b], [b]Harp Ensemble[/b], and [a=Cedric Sharpe Sextet] (formed in 1930). Former Principal Cello with [a=The New Symphony Orchestra Of London] (1930s & 1940s), the [a=London Symphony Orchestra] (1931-1939), [a=Royal Albert Hall Orchestra] (1940s), and [a=Orchestra Of The Royal Opera House, Covent Garden] (1940s). In 1928, he became Professor of Cello at the [l527847] for nearly 40 years. +In 1913, he married [a=Evelyn Sharpe].Needs Votehttps://open.spotify.com/artist/138lfp2OEYr3Whav6asqvvhttps://music.apple.com/us/artist/cedric-sharpe/262259074https://en.wikipedia.org/wiki/Cedric_Sharpehttps://adp.library.ucsb.edu/names/106549C SharpeC. SharpeM. C. SharpeMr. Cedric SharpeSharpeLondon Symphony OrchestraThe New Symphony Orchestra Of LondonOrchestra Of The Royal Opera House, Covent GardenRoyal Albert Hall OrchestraVirtuoso String QuartetCedric Sharpe Sextet + +3161257Chuck CampbellAmerican trombonist.Needs Vote"Chuck Campbell"George Olsen's MusicCalifornia Ramblers + +3161258Al ArmerAlus Kendall Armer(b. May 6, 1897, Nashville, TN; d. May 15, 1954, Hollywood, CA), bassist and tuba player. Al Armer was a widely known circus man before going into dance bands. He recorded with several bands in the 1920s before retiring from music in the 1930s. He spent the remainder of his career as a band contractorNeeds VotePaul Whiteman And His OrchestraBen Bernie OrchestraArt Kahn's OrchestraEddie Elkins' OrchestraNathaniel Shilkret And His Orchestra + +3161361Renaud LorangerProducer at label [l=PentaTone]Needs Vote + +3161568Richard FleischmanAmerican violist. Born in New York, New York and currently based in Miami, Florida. He is currently the solo violinist at the Santa Fe Opera Orchestra and the Miami City Ballet Orchestra. + +Previously he was a member of the San Francisco Symphony from 1990 to 1995 and guest Principal Violist with the Hong Kong Philharmonic from 2005 to 2007. From 2006 to 2017 he was a member of the Delray String Quartet.Needs Votehttps://nwsa.mdc.edu/music/faculty/fleischman-bio.aspxRichard FlieschmanRick FleischmanSan Francisco SymphonyHong Kong Philharmonic OrchestraDelray String QuartetThe Santa Fe Opera Orchestra + +3161640Herschel BrassfieldNeeds VoteBrassfieldH.L. BrassfieldHersal BrassfieldHershal BrassfieldHershall BrassfieldMamie Smith And Her Jazz HoundsPerry Bradford Jazz PhoolsJohnny Dunn's Original Jazz Hounds + +3162168James PelleriteAmerican flute player, born in 1926.Needs VoteJames J. PelleriteThe Philadelphia OrchestraDetroit Symphony OrchestraIndianapolis Symphony Orchestra + +3162769Stephen WilliamsonStephen Reese WilliamsonPrincipal Clarinetist of the [a837562], and currently on the faculty of [l867736] in Chicago, Illinois. An avid soloist and chamber musician, Mr. Williamson has performed extensively in the United States, Europe and Asia. Needs Votehttps://music.depaul.edu/faculty-staff/faculty-a-z/Pages/stephen-williamson.aspxStephen Reese WilliamsonChicago Symphony OrchestraEos Orchestra + +3162770Robert Chen陳慕融 (Chén Mùróng)Robert Chen (b. 1969) is an American-Taiwanese violinist who serves as a concertmaster of the [a=Chicago Symphony Orchestra] since 1999. He was born in Taipei and began violin studies at the age of seven. In 1979, Chen family moved to Los Angeles where Robert continued his education with [a=Robert Lipsett] and attended [a=Jascha Heifetz]'s master classes. When he was twelve, Chen debuted with [a=Los Angeles Philharmonic Orchestra]. He received BMus and MMus degrees from the [l=Juilliard School] after studying with Dorothy DeLay and [a=Masao Kawasaki]. + +As a soloist, Robert Chen has been performing with various prestigious ensembles, including LA Phil, [a=Sveriges Radios Symfoniorkester], [a=Moscow Philharmonic Orchestra], [a=New Japan Philharmonic], [a=Orchester Der Deutschen Oper Berlin], [a=Radio-Philharmonie Hannover Des NDR], and [a=Bournemouth Symphony Orchestra]. He appeared on stage with [a=Myung-Whun Chung], [a=Esa-Pekka Salonen], [a=Manfred Honeck], [a=Pavel Kogan], [a=Andreas Delfs] and other notable conductors. + +In 2000, Chen debuted with CSO and Maestro [a=Daniel Barenboim]. During his tenure at the orchestra, the musician participated in the premieres of [a=György Ligeti]'s and [a=Elliott Carter]'s [i]Violin Concertos[/i], [a=Witold Lutoslawski]'s [i]Chain Two[/i], as well as the world premiere of [i]Astral Canticle[/i] by [a=Augusta Read Thomas]. Robert was a featured soloist with [a=Riccardo Muti], [a=Pierre Boulez], [a=Bernard Haitink], [a=Christoph Eschenbach], [a=Charles Dutoit], [a=Ton Koopman], [a=Osmo Vänskä], [a=Vasily Petrenko], [a=Nicholas Kraemer] and [a=James Conlon]. + +He collaborated with [a=Emanuel Ax], [a=Richard Goode], [a=Itzhak Perlman], [a=Pinchas Zukerman], [a=Yo-Yo Ma] and other chamber musicians, participating in [a=Marlboro Music Festival], [l=Aspen Music Festival], and multiple international events. + +Chen won several high-profile awards, including the top prize at the Hanover International Violin Competition (1994), Taipei International Violin Competition (1988), the National Young Musicians Foundation Debut Competition (1984), and Aspen Music Festival Concerto Competition (1986).Needs Votehttp://cso.org/about/performers/chicago-symphony-orchestra/violins/robert-chenhttps://en.wikipedia.org/wiki/Robert_ChenChicago Symphony Orchestra + +3162771Daniel GingrichClassical hornistNeeds VoteDan GingrichChicago Symphony OrchestraRochester Philharmonic OrchestraChicago Pro Musica + +3162831Florian Schmitt (4)German tenor vocalistNeeds VoteFlorian SchmidtFlorian T. SchmittCollegium VocaleKammerchor StuttgartRheinische KantoreiChorWerk RuhrVocalconsort BerlinEnsemble Officium + +3162832Matthias JahrmärkerClassical baritone vocalist.CorrectJahrmärkerCollegium VocaleVocalconsort Berlin + +3162834Anne-Kristin ZschunkeClassical soprano, alto & mezzo-soprano vocalistNeeds VoteDresdner KammerchorRundfunkchor BerlinCollegium VocaleVocalconsort Berlin + +3162836Johannes KlüglingGerman tenor vocalistNeeds VoteRundfunkchor BerlinZefiro TornaVocalconsort BerlinGruppe Für Alte Musik München + +3162869University SixNeeds Major ChangesThe University SixThe WesternersUniversity Six And Their OrchestraHal Kemp And His OrchestraCalifornia RamblersFred Rich And His OrchestraThe BostoniansBroadway NitelitesBen Selvin & His OrchestraEddie Thomas' CollegiansGolden Gate OrchestraCloverdale Country Club OrchestraTed Wallace & His OrchestraThe HarmoniansJoseph Samuels' Jazz BandLou Gold And His OrchestraMills Musical ClownsVarsity EightEd Parker And His OrchestraCarolina Club OrchestraThe Columbia Photo PlayersFrisco SyncopatorsEd Loyd & His OrchestraBroadway Music MastersErnie Golden And His OrchestraBuddy Campbell & His OrchestraSam Lanin & His OrchestraNathan Glantz And His OrchestraDale's Dance OrchestraUniversity SextetteJack Pettis And His BandThe Columbians (3)Dick Cherwin & His OrchestraBaltimore Society OrchestraLa Palina BroadcastersChicago RedheadsHarry Barth's MississippiansJoseph Samuels' OrchestraJack Marshall's OrchestraClub Wigwam OrchestraMoana OrchestraLouis Katzman's Dance OrchestraWonder SextetteDan Crawford's SyncopatorsBob Willard's OrchestraGeorgia Moonlight SerenadersLloyd Hall And His OrchestraBuddy Fields And His OrchestraLouis Katzman And His OrchestraBrown's Dixieland OrchestraParamount Novelty OrchestraParamount Jazz Band (2)Jazzazza Jazz BandCarolina CollegiansTed Raph And His OrchestraAl Epps & His Hotel Astor OrchestraLos Toreros MúsicosJoe Ryan & His OrchestraThe Broadway StrollersAl Dollar & His Ten CentsUniversity EightCliff Roberts' Dance OrchestraOstend Society OrchestraTommy DorseyPete PumiglioIrving BrodskyAdrian RolliniStan kingJack RussinAbe LincolnFred Van EpsChauncey GrayCarl LoefflerCliff WestonBobby Davis (4)Spencer Clark (2)Chelsea QuealeyFrank CushHerb WeilTommy FellineSam Ruby + +3163820Daniela KochAustrian flustist, born in 1989. +Mit 16 Jahren nahm sie ihr Studium an der Universität Mozarteum Salzburg bei Michael Martin Kofler auf. +2008 konnte sie den renommierten 42. Internationalen Rundfunkwettbewerb »Concertino Praga« gewinnen. Zusätzlich zum 1. Preis in der Kategorie Flöte ging sie als absolute Siegerin über alle Kategorien hervor und wurde mit dem »Helena Karaskova Preis« ausgezeichnet. +Nach Stipendien der Orchesterakademie der Münchner Philharmoniker, sowie der Sommerakademie der Wiener Philharmoniker ist Daniela Koch seit April 2011 Soloflötistin der Bamberger Symphoniker.Needs Votehttp://www.danielakoch.comBamberger SymphonikerMonet Quintett + +3164237Armin BrunnerSwiss conductor and musician, born 1933 in Zurich.Needs Votehttp://www.arminbrunner.ch/Berliner PhilharmonikerScharoun Ensemble Berlin + +3165609Southern SerenadersNeeds Major Changes + +3165670Janet TrentClassical violin and viol player.Needs VoteThe Academy Of Ancient MusicThe Extempore String Ensemble + +3165671June BainesElizabeth HardyClassical violinist. Married to double bassist [a430744] (1911-1999) and cofounder of [a1976788].Needs VoteJune HardyThe Academy Of Ancient MusicThe Music Party + +3165773Peggy ThomasVocalist and dancer who was with [a320597] in the late 1940s and early 1950sNeeds VoteLouis Jordan And His Tympany Five + +3165971William FairbairnTreble chorister in [a=The Choir Of Westminster Abbey].Needs VoteThe Choir Of Westminster Abbey + +3165972Hee-Rak YangVocalist.CorrectThe Choir Of Westminster Abbey + +3165973Trojan NakadeVocalist.CorrectThe Choir Of Westminster Abbey + +3165974Samuel SlatteryVocalist.CorrectThe Choir Of Westminster Abbey + +3165975Cameron Roberts (2)Vocalist.CorrectThe Choir Of Westminster Abbey + +3165976Dominic ChambersVocalist.CorrectThe Choir Of Westminster Abbey + +3165977Jamie ElliottVocalist.CorrectThe Choir Of Westminster Abbey + +3165978Raphael Taylor-DaviesVocalist.CorrectThe Choir Of Westminster Abbey + +3165979Maxim Del MarClassical vocalist & violinistNeeds VoteMax Del MarThe Choir Of Westminster AbbeyLondon Early Opera + +3165980William Kitchen (2)Vocalist.CorrectThe Choir Of Westminster Abbey + +3165982Shaun WoodVocalist.CorrectThe Choir Of Westminster Abbey + +3165983James Birchall (2)English bass / baritone vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Birchall-James.htmBirchallOxford CamerataThe Cambridge SingersLondon VoicesPolyphonyEx Cathedra Chamber ChoirLa Nuova MusicaAlamire + +3165984Ashley Waters (2)Vocalist.CorrectThe Choir Of Westminster Abbey + +3165985Daniel ParrVocalist. + +For the Dallas, Texas bassist, use [a=Daniel Parr (2)].Needs VoteThe Choir Of Westminster Abbey + +3165986Benedict KearnsVocalist.CorrectThe Choir Of Westminster Abbey + +3165987Nicholas TrappVocalist.CorrectThe Choir Of Westminster Abbey + +3165988Benedict MorrisVocalist.CorrectThe Choir Of Westminster Abbey + +3165989Augustus StreetingVocalist.CorrectThe Choir Of Westminster Abbey + +3166173Jack Russell (8)Early jazz pianistNeeds VoteRussellBoyd Senter & His SenterpedesJelly Roll Morton's Stomp Kings + +3166432Priska EserGerman soprano vocalist, born in Augsburg, Germany.Needs Votehttp://priska-eser.de/https://www.bach-cantatas.com/Bio/Eser-Streit-Priska.htmPriska Eser-StreitChor Des Bayerischen Rundfunks + +3167802Alan Thomas (8)British classical trumpeter. +Principal Trumpet with the [a=City Of Birmingham Symphony Orchestra].Needs VoteCity Of Birmingham Symphony OrchestraLondon Mozart PlayersOnyx BrassYoung Musicians Symphony OrchestraSeptura + +3169261Walter GrossmannWalter GroßmannGerman baritione (1900-1973).Needs VoteW. GrossmannWaiter GroßmannWalter GroßmanWalter GroßmannWalther Grossmann + +3169444Claude HobdayBritish classical double bass player, and Professor of Double Bass. Born 12 May 1872 in Faversham, Kent, England, UK - Died 10 March 1954 in Surbiton, South West London, England, UK. +He studied at the [l290263] (1888-1892). He was a founder member of the [a=London Symphony Orchestra] (1904-1909). He then joined the [a=Beecham Symphony Orchestra] (1910-1916), and the [a=Royal Philharmonic Orchestra], before becoming a founder member of the [a=BBC Symphony Orchestra] in 1930. He retired from playing in 1940. He was Professor of Double Bass at the Royal College of Music (1902-1946). +Younger brother of [a=Alfred Hobday] and brother-in-law of [a=Ethel Hobday].Complete and Correcthttps://music.apple.com/mx/artist/claude-hobday/306885357?l=enhttps://en.wikipedia.org/wiki/Claude_HobdayC. HobdayClaude HodbayLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraPro Arte QuartetBeecham Symphony Orchestra + +3169641John Mitchell (19)Early jazz and swing guitarist and banjoist, born 1902 in Baltimore. +Mitchell moved to New York in 1921 and recorded with Johnny Dunn's band. He joined Sam Wooding and traveled with him to Europe in 1925 and again in 1931; he remained in Europe, working as a guitarist in Willie Lewis' band 1931-1941. He returned to the USA in 1944 to be with Jimmie Lunceford's orchestra until 1946, when he left music.Needs Votehttps://adp.library.ucsb.edu/names/113113? John MitchellJ. MitchellJohnny MitchellJon MitchellMitchellJimmie Lunceford And His OrchestraWillie Lewis And His OrchestraOscar Aleman TrioJohnny Dunn's Original Jazz HoundsSam Wooding And His OrchestraJohnny Dunn And His Jazz BandWillie Lewis & His EntertainersJohnny Dunn And His BandSam Wooding And His Chocolate Kiddies + +3170171Claudio EstayClaudio Andrés Estay GonzálezChilean timpanist and percussionist, born in Santiago de Chile. Now based in Germany.CorrectBayerisches StaatsorchesterMahler Chamber Orchestra + +3170972Boris BegelmanRussian classical violinist born in MoscowNeeds Votehttp://borisbegelman.com/Accademia BizantinaConcerto ItalianoIl Giardino ArmonicoI BarocchistiIl Complesso BaroccoCappella GabettaIl Pomo d'OroArion Orchestre BaroqueImaginarium EnsembleArsenale SonoroNew Century BaroqueOrchestra Barocca Les Elèments + +3170975Barbara AltobelloItalian classical violinistNeeds VoteEuropa GalanteIl Complesso BaroccoL'Aura Soave CremonaLa RisonanzaZefiroConsort Del Collegio GhislieriStile Galante + +3173783Herve BaillargeonHervé BaillargeonCanadian flutist and teacher, born 30 September 1899 in L'Acadie, Quebec, Canada and died 29 December 1991 in Montreal, Quebec, Canada. He was the father of [a1589890] and [a1778225].Needs VoteOrchestre symphonique de Montréal + +3174044Daniel Lee (5)Classical cellistNeeds Votehttps://www.danielleecello.com/home.htmlSaint Louis Symphony Orchestra + +3174058Gerard PaganoClassical trombonistNeeds VoteGerry PaganoSaint Louis Symphony Orchestra + +3174059Shawn WeilAmerican violinistNeeds VoteSaint Louis Symphony OrchestraThe 442s + +3174060Melissa BrooksClassical cellistNeeds VoteMelissa Brooks RubrightSaint Louis Symphony Orchestra + +3174061Elizabeth DziekonskiClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174062Gregory RoosaGregory S. RoosaAmerican hornist. Married to [a3174118].Needs Votehttps://www.laphil.com/musicdb/artists/4558/gregory-roosaGreg RoosaGregory S. RoosaSaint Louis Symphony OrchestraLos Angeles Philharmonic Orchestra + +3174063Catherine LehrClassical cellistCorrectSaint Louis Symphony Orchestra + +3174065Tina WardClassical clarinetistNeeds VoteSaint Louis Symphony Orchestra + +3174066Manuel Ramos (5)US violin player.CorrectSaint Louis Symphony Orchestra + +3174067Ling Ling GuanClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174069Darwyn AppleClassical violinistCorrectSaint Louis Symphony Orchestra + +3174070Takaoki SugitaniClassical violinistCorrectSaint Louis Symphony Orchestra + +3174071Carolyn WhiteClassical double bassistNeeds VoteCarolyn White BuckleySaint Louis Symphony Orchestra + +3174072Shannon Farrell WilliamsClassical violistNeeds VoteShannon Williams (10)Saint Louis Symphony Orchestra + +3174073Karin UrsinAmerican flute player.Needs VoteChicago Symphony OrchestraSyracuse Symphony OrchestraChicago Philharmonic + +3174074Richard Holmes (4)Classical percussionistCorrectSaint Louis Symphony Orchestra + +3174075Warren GoldbergClassical double bassistNeeds VoteSaint Louis Symphony Orchestra + +3174077Sarah HoganSarah Hogan KaiserClassical double bassistNeeds VoteSarah Hogan KaiserSaint Louis Symphony Orchestra + +3174079James Meyer (2)Classical clarinetistNeeds VoteSaint Louis Symphony Orchestra + +3174080Sébastien GingrasClassical cellistNeeds VoteSan Francisco SymphonySaint Louis Symphony Orchestra + +3174081David Kim (3)Classical cellistCorrectSaint Louis Symphony Orchestra + +3174082Wendy Plank RosenClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174083Leonid GotmanClassical violist, born 11.27.1951 in Moscow, died 06.10.2018CorrectSaint Louis Symphony Orchestra + +3174084Emily HoClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174085Andrew GottClassical bassoonistNeeds VoteSaint Louis Symphony Orchestra + +3174086Joo KimClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174087Jooyeon KongClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174093Susan GordonClassical violistNeeds VoteSaint Louis Symphony Orchestra + +3174094Charlene ClarkClassical violinistCorrectSaint Louis Symphony Orchestra + +3174095Jenny Lind JonesClassical violinistCorrectJenny JonesSaint Louis Symphony Orchestra + +3174096Joshua MaccluerClassical trumpeterNeeds Votehttp://joshuamaccluer.com/Joshua McCluerSaint Louis Symphony Orchestra + +3174097Chris TantilloClassical violistNeeds VoteSaint Louis Symphony Orchestra + +3174098John Macfarlane (2)Classical violinistCorrectSaint Louis Symphony OrchestraChicago Lyric Opera Orchestra + +3174100Kristin AhlstromClassical violinistCorrectSaint Louis Symphony Orchestra + +3174101Erik HarrisAmerican double bassist.CorrectSaint Louis Symphony OrchestraChicago Symphony Orchestra + +3174102Heidi Harris (2)Classical violinistNeeds Votehttps://heidimarieharris.com/Saint Louis Symphony Orchestra + +3174103Christopher CarsonClassical double bassistNeeds VoteSaint Louis Symphony Orchestra + +3174104Alison HarneyAmerican classical violinist.CorrectSaint Louis Symphony Orchestra + +3174107Thomas Stubbs (2)Classical percussionistNeeds VoteTom StubbsSaint Louis Symphony Orchestra + +3174108Stephen LangeAmerican trombonist + +A native of Dallas, Texas, Stephen Lange joined the Boston Symphony Orchestra trombone section in fall 2010. Previously, he held the assistant principal trombone chair of the Saint Louis Symphony Orchestra from 2000 to 2010, making his solo debut with the orchestra in 2007 in Frank Martin's Concerto for Seven Wind Instruments. During his time in St. Louis, Mr. Lange helped found, and was a member of, The Trombones of the Saint Louis Symphony, a chamber group composed of the SLSO trombone section. Needs Votehttps://www.bso.org/profiles/stephen-langeBoston Symphony OrchestraSaint Louis Symphony Orchestra + +3174110Nicolae Bica (2)Classical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174111Justin BerrieClassical flautistNeeds VoteSaint Louis Symphony Orchestra + +3174112Dana Edson MyersClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174113James CzyzewskiClassical cellistNeeds VoteSaint Louis Symphony Orchestra + +3174114Carolyn BanhamClassical oboistNeeds VoteCally BanhamSaint Louis Symphony Orchestra + +3174116Kyle LombardClassical violinist.Needs VoteSaint Louis Symphony Orchestra + +3174119Haruka WatanabeClassical violinistCorrectSaint Louis Symphony Orchestra + +3174122Ronald MoberlyClassical double bassistCorrectSaint Louis Symphony Orchestra + +3174123Angie SmartClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174124Hiroko YoshidaClassical violinist. +Born in Tokyo. Studied at the University of Arts in Tokyo, graduating in 1971. Member of the 1st violins of the [a451535] from 1973.Needs VoteSaint Louis Symphony OrchestraLeopolder Quartett + +3174125Gerald FlemingerClassical violistNeeds VoteSaint Louis Symphony Orchestra + +3174126Donald Martin (2)Classical double bassistNeeds VoteSaint Louis Symphony Orchestra + +3174127Kathleen MattisClassical violistNeeds VoteSaint Louis Symphony OrchestraAmabile Piano Quartet + +3174128Erin SchreiberClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174129Felicia FolandClassical bassoonistNeeds VoteSaint Louis Symphony Orchestra + +3174130Richard BrewerClassical cellistNeeds VoteSaint Louis Symphony Orchestra + +3174131Jennifer NitchmanAmerican flute player.CorrectBoston Symphony OrchestraSaint Louis Symphony Orchestra + +3174132Eva KozmaViolinist born in Targu Mures, Romania. +Appointed Assistant Principal Second Violin with the St. Louis Symphony Orchestra in September 2004.Needs VoteSaint Louis Symphony Orchestra + +3174134Celeste GoldenCeleste Golden BoyerAmerican violinist and soloistNeeds Votehttp://www.celestegoldenboyer.com/Celeste Golden BoyerSaint Louis Symphony OrchestraCincinnati Chamber Orchestra + +3174138Morris JacobClassical violistNeeds VoteSaint Louis Symphony Orchestra + +3174139Robert Silverman (3)Robert George SilvermanAmerican classical cellist from Unionville, Pennsylvania. He played with the Saint Louis Symphony Orchestra for 42 years. Born 20 December 1940 in Unionville, PA; died 2 May 2018 in Saint Louis, MO.Needs VoteSaint Louis Symphony Orchestra + +3174140Silvian IticoviciClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174141Jessica ValeriAmerican horn player.Needs VoteSan Francisco SymphonySaint Louis Symphony OrchestraBrian Conn New Music Ensemble + +3174142Diana HaskellClassical clarinetistNeeds Votehttp://www.dianahaskellclarinet.com/Saint Louis Symphony Orchestra + +3174143Lisa ChongClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174144Timothy MyersClassical trombone and euphonium playerNeeds VoteTim MyersSaint Louis Symphony OrchestraThe Northwestern University Symphonic Wind Ensemble + +3174145Michael WalkClassical trumpeterNeeds VoteSaint Louis Symphony Orchestra + +3174147Bjorn RanheimAmerican cellistNeeds Votehttps://www.facebook.com/bjorn.ranheimSaint Louis Symphony OrchestraThe 442s + +3174148James WehrmanClassical hornistCorrectSaint Louis Symphony Orchestra + +3174149Jonathan VinocourAmerican violist.Needs VoteSan Francisco SymphonySaint Louis Symphony Orchestra + +3174150Thomas DrakeClassical trumpeterNeeds VoteSaint Louis Symphony Orchestra + +3174151Deborah BloomClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174153Barbara OrlandClassical oboistNeeds VoteSaint Louis Symphony Orchestra + +3174154Lynn HagueClassical violistCorrectSaint Louis Symphony Orchestra + +3174155David HalenClassical violinistCorrectSaint Louis Symphony Orchestra + +3174156Bradford BuckleyClassical bassoonistCorrectSaint Louis Symphony Orchestra + +3174157Michael Sanders (7)Classical tubistNeeds VoteSaint Louis Symphony Orchestra + +3174159Asako KubokiClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3174160Andrea KaplanClassical flautistNeeds VoteSaint Louis Symphony Orchestra + +3174161David DerisoDavid DeRisoClassical double bassistNeeds VoteSaint Louis Symphony Orchestra + +3174162Mike ChenClassical violistNeeds VoteDetroit Symphony OrchestraSaint Louis Symphony OrchestraIndianapolis Symphony Orchestra + +3174163Philip RossClassical oboistNeeds VoteSaint Louis Symphony Orchestra + +3174164Lawrence StriebyAmerican French hornist. In 1967, he joined the St. Louis Symphony as Assistant Principal Horn. Strieby was a longtime member of the St. Louis Brass Quintet and a founder of Summit Brass.Needs VoteLarry StriebyLawrence StiebySaint Louis Symphony OrchestraSt. Louis Brass QuintetSummit Brass + +3174165George BerryClassical bassoonist.Needs VoteSaint Louis Symphony Orchestra + +3174166Tod BowermasterClassical hornistCorrectBowermasterSaint Louis Symphony Orchestra + +3174167Ken KulosaClassical cellistNeeds VoteKenneth KulosaSaint Louis Symphony Orchestra + +3174168Lorraine Glass-HarrisClassical violinistCorrectSaint Louis Symphony Orchestra + +3175061Anna StarrGerman oboe instrumentalistNeeds VoteThe Amsterdam Baroque OrchestraMusica Ad RhenumEnsemble CristoforiLeipziger BarockorchesterLes Ambassadeurs (6) + +3175062Cassandra L. LuckhardtClassical Viol, Viola da Gamba and Cello instrumentalistNeeds VoteCassandra LuckhardtThe Amsterdam Baroque OrchestraThe Academy Of Ancient MusicMusica Ad RhenumMusica AmphionApollo EnsembleLe Nuove MusicheLa Suave Melodia + +3175188Jan Ingmar FabritiusJan Ingmar FabritiusComposer, producer & audio engineer from Berlin, Germany. +Contact: c@jan-fabritius.com + +Composition, Sound Design, Mixing, Mastering, Vinyl Cut +JF MasteringNeeds Votehttps://www.instagram.com/_fabritius_/http://www.jan-fabritius.comhttp://www.ebp-records.comhttp://www.colourful-music.comhttp://www.calyx-mastering.com/WJANJanJan FabritiusɈanCalyx Mastering + +3175428Eileen GraingerBritish viola player, fl. from 1950s. +Former member of the [a=London Symphony Orchestra] (1948-1954).Needs VoteLondon Symphony OrchestraSinfonia Of LondonThe Virtuoso EnsembleBath Festival OrchestraLondon Baroque EnsembleThe Carter String TrioThe Thames Chamber OrchestraDavid Martin Quartet + +3176022Ingrid HasseClassical flute player, born in Pretoria, South Africa.CorrectHasseCamerata Academica SalzburgDas Mozarteum Orchester Salzburg + +3176451Gottfried JusthAustrian violinist.Needs VoteGottfried JustVienna Symphonic Orchestra ProjectWiener Symphoniker + +3176452Walter PflügerAustrian violinist.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +3176454Helmut KinatederViolinist.Needs VoteWiener Symphoniker + +3177045Jonathan SherwinAmerican bassoonist and contrabassoonist.Needs VoteThe Colorado Symphony OrchestraThe Cleveland Orchestra + +3177046Jenny DouglassAmerican violistNeeds VoteJenny DouglasThe Colorado Symphony OrchestraOrpheus Chamber OrchestraThe New Century Chamber OrchestraMarin Symphony + +3177066Laura OkuniewskiAmerican harpist.CorrectThe Colorado Symphony OrchestraThe Cleveland Orchestra + +3177075Charles Burrell(October 4, 1920 – June 17, 2025) was an American classical and jazz bass player.Needs Votehttps://en.wikipedia.org/wiki/Charles_Burrell_(musician)https://www.imdb.com/name/nm13119835/Charlie BurrellThe Colorado Symphony OrchestraSan Francisco SymphonyDenver Symphony Orchestra + +3177106Oscar ZimmermanAmerican musician, teacher and double-bass player, born 21 September 1910, died 2 April 1987.CorrectZimmermanThe Philadelphia OrchestraNBC Symphony OrchestraSaint Louis Symphony OrchestraRochester Philharmonic Orchestra + +3177388Rachel MajorBritish soprano vocalistCorrectLondon Voices + +3177567Miguel LawrenceClassical wind instrumentalistNeeds Votehttps://www.miguellawrence.com/Miguel LawerenceNew London ConsortMexican Baroque Orchestra + +3178593James DeSanoAmerican trombonist and Professor of Trombone.Correcthttp://en.wikipedia.org/wiki/James_DeSanoThe Cleveland OrchestraSyracuse Symphony Orchestra + +3178772Ion GeorgescuClassical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +3179350Pete Johnson's HousewarmingNeeds Major ChangesPete Johnson's Housewarmin' + +3180297Frederick William HeimAmerican flutist and former principal piccolo player for the New York Philharmonic Orchestra. Died of a heart attack in November 1986 at the age of 72. + +Mr. Heim grew up in Dallas. + +He attended the Curtis Institute of Music, where he worked with William Kincaid. In the early stages of his career, he played with the Pittsburgh Symphony under Fritz Reiner, toured with the orchestra of the Ballet of Monte Carlo and played in the NBC Symphony under Arturo Toscanini. + +He joined the New York Philharmonic in 1944 and remained a member of the orchestra until 1979. In the early 1960's, he recorded Vivaldi's Concerto in C for Piccolo and Orchestra (P. 79), under the direction of Leonard Bernstein, for Columbia Masterworks. Mr. Heim taught for several years at Hofstra University. + +Needs VoteF. William HeimFrederick HeimWilliam HeimNew York PhilharmonicColumbia Symphony Orchestra + +3182001Gábor Dienes (2)OboistNeeds VoteDienes GáborG. DienesGábor DienesConcentus HungaricusLiszt Ferenc Chamber OrchestraBudapest Wind Ensemble + +3183530Artur RumetschGerman classical string instrumentalist (mandolin).Needs VoteA. RumetschArtur RumerschWürttembergisches Kammerorchester + +3183531Rudolf BreitschmidClassical violinistNeeds VoteR. BreitschmidWürttembergisches Kammerorchester + +3184202Don Clark (5)SaxophonistNeeds VoteDon ClarkePaul Whiteman And His OrchestraThe Virginians (3) + +3184949Johannes MartiniJohannes Martini (also Johannes De Sancto Martino) was a Flemish composer of the Renaissance period - born c. 1440, died 1497/8 - who spent his entire documented career at the ducal court of Ferrara in Italy.Needs Votehttps://fr.wikipedia.org/wiki/Johannes_MartiniJ. MartiniJohannes De Sancto MartinoMartini + +3185920Reporters AssociésNeeds Major ChangesLes Reporters AssociesReporters & Associés + +3188036Joseph FuchsJoseph Fuchs (1899–1997) was an American violinist and music teacher, a brother of violist [a3462761] and cellist [a=Harry Fuchs]. Originally from New York, he was a successful and universally recognized musician, praised by the critics as 'one of the most important US violinists in the XX century.' Fuchs studied with Franz Kneisel at the Institute of Musical Art in New York. Since 1946, he had been working as a violin teacher at the [l=Juilliard School]. + +In 1926, Joseph Fuchs became a Concert Master of [a=The Cleveland Orchestra], remaining in this position till 1940. After that, the violinist pursued a solo career. He toured extensively throughout Europe, South America, Japan, and Russia, and participated in various festivals, including [l=Prades Festival] in 1953 and '54. Fuchs also co-founded [i]Musicians' Guild[/i], a chamber music organization, and served as the director until 1956.Needs VoteFuchsJ. FuchsJosef FuchsJosephThe Cleveland Orchestra + +3189052Max MozartNeeds Votehttps://soundcloud.com/max-mozartMax Moxart + +3189378Christof RoosClassical organistNeeds VoteWürttembergisches Kammerorchester + +3190270Elizabeth Bishop (2)American dramatic mezzo-soprano, born in Greenville, South Carolina, USACorrect + +3190482Hugo LowensternHugo LoewensternAmerican jazz saxophonist from Amarillo, Texas + +Hugo was born in Nara Visa, New Mexico to Mildred Henderson Loewenstern and Hugo H. Loewenstern. His family included brother Morris Loewenstern and sister Julia Loewenstern Glick. They moved to Amarillo, Texas in 1929. + +Hugo was given his first saxophone at the age of six. A child prodigy on sax and clarinet, he won first honors in national competitions and at age 9 was featured in Ripley’s Believe It Or Not for memorizing 76 classical compositions. An Amarillo High School graduate, he trained at the Eastman School of Music. Hugo toured extensively with the famous big bands of Jack Teagarden, Harry James, Tommy Dorsey and Sonny Burke appearing as a soloist, on the Burke Orchestra’s recording of Ella Fitzgerald 1951. In between gigs, he returned to Amarillo to lead his own band at the Nat, the Avalon, and the Aviatrix. He married Mary Lou Parr in 1951. Years before as a teenager, she’d danced to the music of the bandleader on stage who would later become her future husband of sixty-five years. Eventually settling in Amarillo, Hugo joined his father and brother in the family business, Hugo H Loewenstern Real Estate Co. + +In 1943, Hugo joined the armed services and was in the Air Force Band, then later transferred to the Infantry until his discharge in 1946. + +He volunteered his band to the community, including the Lake Tanglewood (Amarillo, Texas) 4th of July celebrations, and nursing homes with singer wife Mary Lou. His professional career saw a solo album for Capitol Records, Who Said Good Music Is Dead, with the late composer Johnny Richards, who wrote original pieces for Hugo including The Magic of Arabis, which he performed as guest artist with the Amarillo Symphony in 1966. He continued musical associations with trumpeter, Doc Severinsen, Laurindo Almeida and others. Amarillo saw performances with friends and family in a newly formed jazz group. He was a founding member of the Amarillo Woodwind Quintet. The recording Music for Art, features songs by daughter, Tara Hugo and album sleeve artwork by Mary Lou. In 2001, KACV public television (Amarillo, Texas) produced the documentary "That Alto Man" celebrating his life and career.Needs Votehttp://www.amarillo.com/obituaries/2016-07-09/hugo-loewensternH. LowensternHugo LoewensternHugo LowensteinHugo LöwensternTommy Dorsey And His OrchestraHarry James And His Orchestra + +3190484James Grimes (2)US Trumpet Player of the Swing EraNeeds VoteJimmy GrimesHarry James And His OrchestraHarry James & His Music Makers + +3190539Paul GoddéClassical tenor.CorrectLa Petite Bande + +3190540Marc BarbierBelgian Classical bass vocalist.Needs VoteLa Petite BandeCurrendeGents Madrigaalkoor + +3190541Peter Van HeyghenPeter Van Heyghen was trained as a recorder player and singer at the Royal Conservatory in Gent (Belgium). Through the years he developed into an internationally acknowledged specialist in the field of historical performance practice of both Renaissance and Baroque music.Needs VoteLa Petite BandeCappella PratensisCurrendeFlanders Recorder QuartetLes MuffattiLa CacciaMezzaluna (2)Syntagma AmiciMore Maiorum + +3190544Elisabeth HermannsClassical soprano.CorrectLa Petite Bande + +3191504Stephen Fitzpatrick (2)British harpist and Professor of Harp at the Mozarteum in Salzburg.Correcthttp://www.stephenfitzpatrick.com/Stephen FitzpatrickStaatskapelle BerlinOrchester der Bayreuther FestspieleGöteborgs SymfonikerGöteborgsOperans Orkester + +3192277David Warren (4)Vocalist.CorrectThe Choir Of Westminster Abbey + +3192481Jan Willem Van Der WeyClassical tenor.CorrectLa Petite Bande + +3192483Ludy VrijdagClassical tenor.Needs VoteLa Petite BandeCappella PratensisArti Vocali + +3192484Piet Brummer (2)Classical vocalist.CorrectLa Petite Bande + +3192485Jef GulinckClassical vocalist.CorrectJes GulnickJo GulinckLa Petite Bande + +3194140Paul Van Der BemptClassical tenor.CorrectLa Petite Bande + +3194148Ulrich LönsClassical tenor.Needs VoteRundfunkchor BerlinLa Petite Bande + +3194158Thomas DobmeierClassical vocalist.CorrectLa Petite Bande + +3194169Xavier Julien-La FerrièreClassical violinist.Needs VoteXavier Julien LaferrièreXavier Julien-LaferrièreXavier Julien-LafferièreXavier-Julien LaFerriereEnsemble IntercontemporainIl Seminario MusicaleLa Petite BandeLa Simphonie Du Marais + +3194384Adrian CruftAdrian Francis CruftBritish composer and double bass player. Born 10 February 1921 in Mitcham, Surrey, England, UK - Died 20 February 1987 in London, England, UK. +He studied composition and double bass at the [l290263] (1938-40 & 1946-47). Played with major London orchestras (1947-1969). Appointed teacher of harmony (composition) at the Royal College of Music in January 1962. He became Chairman of the Composers' Guild of Great Britain in 1966. +Son of [a=Eugene Cruft] and father of [a=Ben Cruft].Needs Votehttps://aim25.com/cgi-bin/search2?coll_id=5671&inst_id=25https://en.wikipedia.org/wiki/Adrian_Crufthttps://musicalics.com/en/node/88583CruftPhilharmonia OrchestraBath Festival Orchestra + +3195059Giuseppe Palomba(before 1765-after 1825), Italian librettist.Needs Votehttps://it.wikipedia.org/wiki/Giuseppe_PalombaMore is found in the Oxford Music Online which cannot be linked to without a subscription.G. PalombaPalomba + +3195725Jerry Jones (9)Born 1938 in Texas. Past minister of music at Memorial Baptist Church (Grapevine, TX). +Needs VoteJerry O. JonesJonesThe Roger Wagner ChoraleBaptist Hour ChoirBison Glee ClubThe Singing ChurchmenThe Embellishments + +3195820Mathias BreitschaftGerman church musician, chorus master, conductor and university teacher, born in 1950.Needs Votehttps://en.wikipedia.org/wiki/Mathias_BreitschaftDomkantor Mathias BreitschaftDomkapellmeister Mathias BreitschaftMatthias BreitschaftRegensburger Domspatzen + +3196548Heikki AsuntaNeeds Major ChangesAsuntaH. Asunta + +3197010Eluned PierceClassical harpistNeeds VoteBournemouth Symphony Orchestra + +3197107Heli ErnitsEstonian classical oboist, born April 21, 1983 in Tartu.Needs VoteEstonian National Symphony Orchestra + +3197302Michael SabolAmerican Saxophonist in the swing-era.Needs VoteMickey SabolTommy Dorsey And His OrchestraCharlie Spivak And His Orchestra + +3197503Robert "Cookie" MasonShellac era jazz trumpeterNeeds VoteC. MasonCookie MasonR. MasonRobert 'Cookie' MasonRobert MasonRoss De Luxe SyncopatersRoy Eldridge And His Orchestra + +3199728Pierre VavasseurFrench classical cellistNeeds VoteOrchestre National De France + +3199731Benjamin EstienneClassical violinistNeeds VoteOrchestre National De FranceParis Symphonic Orchestra + +3199733Jonathan ReithFrench Trombonist.Needs VoteOrchestre De ParisEstonian Festival OrchestraParis Brass Quintet + +3199736Laurent BourdonFrench trumpet player.CorrectOrchestre De Paris + +3199737Oana Unc-MarchandClassical cellistNeeds VoteOana UncOrchestre National De France + +3199740Caroline RitchotClassical violinistNeeds VoteOrchestre National De France + +3199741Benjamin ChareyronFrench horn player.Needs VoteOrchestre National De L'Opéra De ParisQuatuor Olifant + +3199742Angélique LoyerFrench violinist.CorrectAngelique LoyerAngélique Loyer DalmassoOrchestre De Paris + +3199743Stéphane GourvatFrench trumpet player.CorrectOrchestre De Paris + +3199747Marie PoulangesFrench violist.Needs VoteMarie PoulangeOrchestre De ParisQuatuor Wolfmeier + +3200154Chen ZhaoClassical violinist.Needs VoteSan Francisco Symphony + +3200165Nicole CashFrench horn player.Needs VoteSan Francisco Symphony + +3200491Alain de RudderClassical wind instrumentalist Alain De Rudder studied at the Lemmensinstituut Leuven and at the Brussels Royal Music Conservatory, where he won a first class diploma for trumpet and the higher diploma for chamber music.Needs VoteOrchestre Des Champs ElyséesCollegium VocaleIl GardellinoInaltoAntwerp Symphony OrchestraBeaux-Arts Brass Quintet + +3200492Holger BronnerGerman trumpeter.CorrectBamberger SymphonikerBaden-Badener PhilharmonieBundesjugendorchester + +3200542Elspeth DutchClassical hornistNeeds VoteCity Of Birmingham Symphony Orchestra + +3201133Werner BuchmannAustrian double bassist.CorrectWiener Symphoniker + +3201723Olaf HallmannGerman violist, born in Leipzig. He's the son of [a826827].Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigGewandhaus-Quartett Leipzig + +3201896Joe Long (4)Joseph Louis LaBracio(Born : September 05, 1941 in Elizabeth, New Jersey, USA - Died : April 21, 2021) was a American bass guitarist and singer. + +Joe Long was a member (as bass guitarist) of the doo-wop group of "The Four Seasons". +Long died from COVID-19 in April 2021 at the age of 88.Needs Votehttps://en.wikipedia.org/wiki/Joe_Longhttps://www.imdb.com/name/nm3982333/Joseph LabracioJoseph Labracio + +3202342Bob Spangler (2)American drummer. + +Recorded with [a=Glenn Miller And His Orchestra] in 1938, [a=Jan Savitt And His Top Hatters] in early 1939, and with [a=Vincent Lopez And His Orchestra] from May 1939 to February 1940.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/344782/Spangler_Bob?Matrix_page=100000Jan Savitt And His Top HattersGlenn Miller And His OrchestraVincent Lopez And His Orchestra + +3202870Russ WagnerBassistNeeds VoteCharlie Barnet And His Orchestra + +3203047John Schroeder (7)Long Lake, Minnesota born, Los Angeles based guitarist, singer, songwriter and producerNeeds Votehttp://www.johnschroedermusic.comhttps://www.facebook.com/johnschroedermusic/John SchroederSheriffs Of Schroedingham + +3203403Kai Winding SextetNeeds Major Changes + +3204012Ferdinand StanglerFerdinand Stangler (1902 - 1983) was an Austrian violist.Needs VoteFerdinand StranglerStanglerWiener Philharmoniker + +3204131Sara De CorsoSara DeCorsoClassical violinist, born in Fairbanks, AlaskaNeeds Votehttps://www.decorso.com/Sara DeCorsoSara DecorsoMusica Ad RhenumTempesta Di MareThe Avison EnsembleFestspielorchester GöttingenB'Rock OrchestraNew CollegiumLa Cicala (2) + +3204134Gwyn Roberts (2)Gwyn Roberts, a recorder and traverso soloist, and educator, is a founding co-director of the Philadelphia baroque orchestra Tempesta di Mare with Richard Stone. Roberts also serves as the Director of Early Music at the University of Pennsylvania and is on faculty at the Peabody Conservatory of The Johns Hopkins University.Correcthttps://peabody.jhu.edu/faculty/gwyn-roberts/GRWashington Bach ConsortTempesta Di MarePiffaro, The Renaissance Band + +3204138Richard Stone (4)American lutenist, music director, educator and music editor. He performs on lute and theorbo as a soloist and accompanist; he co-founded and co-directs Tempesta di Mare, The Philadelphia Baroque Orchestra.Needs Votehttps://en.wikipedia.org/wiki/Richard_Stone_(musician)R.S.Orpheus Chamber OrchestraTempesta Di Mare + +3205188Michael Powell (7)Trombone playerNeeds VoteMike PowellOrchestra Of St. Luke'sSpeculum MusicaeAmerican Brass QuintetAspen Music Festival Contemporary EnsembleThe American Brass Quintet Brass Band + +3205198Stephanie FrickerAmerican viola player, who performs in Broadway, New York City.Needs VoteOrchestra Of St. Luke's + +3205416Stanley HastyDonald Stanley HastyAmerican clarinetist and music professor, born 21 February 1920 and died 22 June 2011.Needs Votehttps://en.wikipedia.org/wiki/D._Stanley_HastyD. Stanley HastyThe Cleveland OrchestraBaltimore Symphony OrchestraRochester Philharmonic OrchestraPittsburgh Symphony Orchestra + +3206898Remy AbrahamClassical hornistNeeds VoteRémy AbrahamOrchestre Philharmonique De StrasbourgStrasbourg Quintette + +3206901Eric KirchhoffClassical flautist, twin brother of [a8278611].Needs VoteErik KirchhoffOrchester Der Deutschen Oper BerlinStrasbourg Quintette + +3208056Matthias KirchnerGerman cellist.CorrectOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper Berlin + +3208267Ali YazdanfarClassical bassist.Needs VoteAli Khan YazdanfarAli Kian YazdanfarOrchestre symphonique de MontréalAustralian Chamber Orchestra + +3208268Rebecca ChanAustralian classical violinist. Born in Melbourne. +She studied at the [l1596349] and [l482780]. She has played as soloist with many of Australia's major orchestras. Rebecca was a member of the [a=Australian Chamber Orchestra] (2010-2015). She has been a member of the [a6089534]. Associate Leader 1st Violin with the [a=Philharmonia Orchestra] and member of the [a=Australia Piano Quartet] and [b]Hamer Quartet[/b]. Core member and regular guest director of [a=The Melbourne Chamber Orchestra].Needs Votehttps://philharmonia.co.uk/bio/rebecca-chan-2/https://www.australianworldorchestra.com.au/751-rebecca-chan/https://australiapianoquartet.com/about/apq-members/rebecca-chan/https://mco.org.au/event/the-gypsy-palace/https://www.stcatherines.net.au/old-girls/rebecca-chan/Philharmonia OrchestraAustralian Chamber OrchestraAustralian World OrchestraThe Melbourne Chamber OrchestraAustralia Piano QuartetSakuntala Trio + +3208336Ann ChoomackClassical flautistNeeds VoteOssiaSaint Louis Symphony Orchestra + +3208749Thomas KlugGerman violinist, conductor and concertmaster.Needs Votehttps://www.thomasklug.net/トーマス・クルークDeutsche Kammerphilharmonie BremenBundesjugendorchester + +3209057Frederick VogelgesangAmerican violinist, violist, pianist and french hornist, died on August 30, 2010 at the age of 89.Needs VoteThe Philadelphia OrchestraNBC Symphony OrchestraNew York PhilharmonicDenver Symphony Orchestra + +3209324Benjamin WalbrodtGerman cellistNeeds VoteBerliner SymphonikerTrio Fado + +3209676Ruggero AllifranchiniClassical Violinist +Associate Concertmaster of the [a=The Saint Paul Chamber Orchestra]Needs Votehttp://content.thespco.org/people/ruggero-allifranchini/The Saint Paul Chamber OrchestraCamerata BernBorromeo String Quartet + +3209696Che-Hung ChenClassical violist.Needs VoteThe Philadelphia OrchestraThe Saint Paul Chamber Orchestra + +3209756Michael GastClassical hornistNeeds VoteThe Saint Paul Chamber OrchestraMinnesota Orchestra + +3209757Douglas CarlsenDouglas C. CarlsenClassical trumpeterNeeds VoteMinnesota Orchestra + +3210106Joe WeidmanAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraHal McIntyre And His Orchestra + +3210118Tommy GrecoAmereican jazz trombonist.CorrectTom GrecoHarry James And His OrchestraHal McIntyre And His OrchestraHarry James & His Music Makers + +3210907Jim BeiterAmerican baritone saxophonist from the swing era.Needs VoteJim BeitenJim BeitusJimmy BeitusBobby Hackett And His OrchestraHorace Heidt And His Musical Knights + +3210911Jerry BorshardTrombone player from the swing era.Needs VoteBobby Hackett And His OrchestraHorace Heidt And His Musical Knights + +3211393Veronika PassinGerman classical violinist, born in 1980 in Berlin, Germany.Needs VoteBerliner PhilharmonikerKonzerthausorchester BerlinNDR SinfonieorchesterBundesjugendorchesterEnsemble BerlinNDR Elbphilharmonie Orchester + +3211397Erik Wenbo XuChinese violist, based in Germany.Needs VoteErik-Wenbo XuDresdner PhilharmonieNDR SinfonieorchesterJade QuartettNDR Elbphilharmonie Orchester + +3212935Clarence HutchenriderClarence Behrens HutchenriderUS jazz saxophonist and clarinetist, born 13 June 1908 in Waco, Texas, died 18 August 1991. His name is often misspelled Hutchinrider. +Hutchenrider played with the [a=Casa Loma Orchestra] 1931-1943.Needs Votehttps://en.wikipedia.org/wiki/Clarence_Hutchenriderhttps://adp.library.ucsb.edu/names/204774C. HutchenriderClarence HutchenreiderClarence HutchinriderCasa Loma OrchestraGlen Gray & The Casa Loma OrchestraDavid Ostwald's Gully Low Jazz Band + +3213737Ditlev DamkjærClassical double bassist.Needs VoteDR SymfoniOrkestret + +3215143Cody SandiferCody W. SanderfordAmerican drummer of the swing era.Needs VoteCody W. Sanderford (Sandifer)Glenn Miller And His Orchestra + +3215295Andrea IkkerGerman flutist, born 1969 in Székesfehérvár, Hungary.CorrectBayerisches StaatsorchesterBundesjugendorchester + +3215297Sașa BotaAlexandru-Mihai BotaRomanian violinist +Son of [a2312890]Correcthttps://www.facebook.com/saschabotahttps://www.oculiensemble.co.uk/musicians/sascha-bota/Sascha BotaSasha BotaCamerata Academica SalzburgMoody StuffPaperjamNuevo Tango QuintetNavarra String QuartetSakuntala Trio + +3216695Fulke GrevilleNeeds Major ChangesF. GrevilleFulke (Greville), Lord BrookeFulke Greville, Lord BrookeFulke [Greville], Lord Brooke + +3217188Artie FosterAmerican trombonist.Needs VoteA. ForsterArt FosterBob Crosby And His OrchestraVic Berton And His OrchestraBunny Berigan's Rhythm-Makers + +3217189Joe Kearns (2)American jazz saxophonist.Needs Votehttps://www.allmusic.com/artist/joe-kearns-mn0002337500Joe KearnsBob Crosby And His Orchestra + +3217196Lauran JurriusSound engineerNeeds VoteLauran JurrisLauren Jurrius + +3218030Adolph WeissAmerican bassoonist and composer, born 12 November 1891 in Baltimore, Maryland and died 21 February 1971 in Van Nuys, California.Needs VoteWeissNew York PhilharmonicSan Francisco SymphonyLos Angeles Philharmonic OrchestraChicago Symphony OrchestraRochester Philharmonic Orchestra + +3219821Eric WahlinEric H. WahlinEric H. Wahlin ( 25 October 1920 – 9 June 2010) was an American classical cellist.Needs VoteMinnesota OrchestraPittsburgh Symphony OrchestraThe Macalester Trio + +3219825Joseph RocheJoseph Roche (1935 - 24 July 2007) was a classical violinist. He was a member of the [a973130] from 1959 to 1994.Needs VoteMinnesota OrchestraThe Macalester Trio + +3220247Vic D'IppolitoVictor D'Ippolito(b. Dec. 25, 1890, Abruzzi, Italy; d. Feb. 18, 1967, Philadelphia, PA), cornet and trumpet player. Joined the [a3912778] in 1921, where he played with [a229639], [a299282], [a301357] and [a632254]. After playing with several dance bands in the early 1920s, he joined [a341395] in April 1927, where he stayed for just six months. D'Ippolito played in several other bands in the 30s and 40s, and formed his own Philadelphia-based band under the pseudonym "Victor Hugo".Needs VotePaul Whiteman And His OrchestraVincent Lopez And His OrchestraSam Lanin & His OrchestraAl Burt's Dance OrchestraScranton Sirens OrchestraFerde Grofe And His Orchestra + +3220672Dag HenrikssonSwedish classical clarinetistNeeds VoteSveriges Radios SymfoniorkesterSymfonikernas Musikkår I Stockholm + +3220772Laura AntonazClassical soprano vocalistNeeds Votehttps://www.facebook.com/Laura-Antonaz-soprano-338889236206832/Coro Della Radio Televisione Della Svizzera Italiana + +3220774Maurizio DalenaClassical tenor vocalistNeeds VoteConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaCantar Lontano + +3220775Massimiliano PasucciClassical tenor vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +3220780Silvia FinaliClassical alto vocalistNeeds Votehttps://www.facebook.com/silviafinali.iniziativegeaCoro Della Radio Televisione Della Svizzera Italiana + +3220784Brigitte RavenelSwiss classic mezzo soprano and alto vocalistNeeds Votehttp://www.brigitte-ravenel.ch/index-fr.php?page=brigitteSchweizer KammerchorCoro Della Radio Televisione Della Svizzera Italiana + +3220787Elena CarzanigaItalian Alto & Contralto vocalist.Needs Votehttp://www.elenacarzaniga.it/Intro.htmlE. CarzanigaLa Capella Reial De CatalunyaConcerto ItalianoCoro Della Radio Televisione Della Svizzera ItalianaCantar LontanoLa Compagnia Del MadrigaleIl Pomo d'OroLa Fonte MusicaRossoPorporaIl Pomo d'Oro ChoirBiscantores + +3220788Davide ZaltronClassical viola playerNeeds VoteOrchestra da Camera ItalianaI BarocchistiArchicembalo EnsembleI Virtuosi Della Rotonda + +3220789Emanuele NoccoClassical bass vocalistNeeds VoteCoro Della Radio Televisione Della Svizzera ItalianaWorld Chamber Choir + +3220793Giulia PanzeriItalian violinistNeeds VoteIl RuggieroI BarocchistiVenice Baroque OrchestraIl Complesso BaroccoIl Teatro ArmonicoOrchestra Barocca ItalianaIl Pomo d'OroLa Follia Barocca + +3220794Pier Luigi FabrettiClassical oboe playerNeeds Votehttps://www.facebook.com/FabrettiPierluigi FabbrettiPierluigi FabrettiLes Arts FlorissantsConcerto KölnL'Arte Dell'ArcoLa Petite BandeIl Giardino ArmonicoI BarocchistiArs Antiqua Austria + +3221768Valeria MignacoArgentinean-born sopranoNeeds Votehttps://www.valeriamignaco.comCappella Amsterdam + +3221967Frithjof GrabnerFrithjof-Martin GrabnerFrithjof-Martin Grabner is a German classical double bassist and Professor of Double Bass at the [l1167199].Needs Votehttp://www.grabner.de/Friethjof GrabnerFrithjof Martin GrabnerMartin Frithjof GrabnerФритхьёф ГрабнерBachcollegium StuttgartCapella FidiciniaKammerorchester Carl Philipp Emanuel BachNeues Berliner KammerorchesterSolistengemeinschaft Der Berliner Bach AkademieGaechinger CantoreyThüringer Bach Collegium + +3221969Frank ForstFrank Forst (born in 1969 in Aalen, Germany) is a German bassoonist and Professor of Bassoon at the "Hochschule für Musik Franz Liszt Weimar".Needs Votehttp://www.frankforst.com/Berliner Sinfonie OrchesterJunge Deutsche PhilharmonieCamerata Academica SalzburgLinos EnsembleSolistengemeinschaft Der Berliner Bach AkademieEnsemble Il CapriccioL'Onda ArmonicaThüringer Bach Collegium + +3221971Michael Kern (5)German clarinetist, born in 1971 in Stuttgart, Germany.Needs VoteRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleSolistengemeinschaft Der Berliner Bach Akademie + +3222857John Sperzel(d. Sep 1936) John "Jack" Sperzel was a tuba player, singer and amateur wrestler from Minnesota. He played with [a341395] from June 1925 to August 1927. He lent his vocals to two Whiteman sides, "I Miss My Swiss (My Swiss Miss Misses Me)" and "The Kinky Kids' Parade", both recorded on August 12, 1925.Needs VotePaul Whiteman And His Orchestra + +3222858E. Lyle SharpeLyle Edwin "Eddie" Sharpe(b. Nov. 25, 1898, Attica, IN; d. Jan. 9, 1988, Vista, CA). Reed musician and arranger. Served in the U.S. Army during World War I and played with [a7140422] before joining [a341395] in May 1924.Needs VoteLyle E. SharpeLyle SharpePaul Whiteman And His OrchestraMax Fisher & His California Orchestra + +3223105J. H. ErkkoJuhana Heikki (Johan Henrik) ErkkoFinnish poet, aphorist and playwright, born January 16, 1849 in Orimattila; died November 16, 1906 in Helsinki. A lot of his poems have been turned into songs.Needs Votehttp://sivustot.tuusula.fi/museot/jherkkohttp://www.erkkola.fihttp://fi.wikipedia.org/wiki/J._H._ErkkoErkkoH. J. ErkkoJ. K. ErkkoJ.H. ErkkoJ.H.ErkkoJuhana Heikki ErkkoJuhana Henrik ErkkoН. Бунеберг + +3224113Louis Gay Des CombesLouis Gay Des Combes (1914 - 1997) was a Swiss classical violinist and violin teacher.Needs VoteM.o Louis Gay Des CombesOrchestra Della Radio Televisione Della Svizzera Italiana + +3224366Enrico FagoneItalian classical double bassistNeeds VoteOrchestra Della Radio Televisione Della Svizzera ItalianaReEncuentros (2)Beatrice Rana & FriendsQuartetto Suarez PazI Filarmonici Di Busseto + +3225721Wayne NicholsTrumpet PlayerCorrectCharlie Barnet And His Orchestra + +3229261Charles YancichCharles Theodore YancichAmerican horn player, born 11 December 1921. He's the twin brother of [a1500871].Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +3229392RJ & RuskulRick Eastham & James HumesDuo from Preston, UK.Needs Votehttps://soundcloud.com/rj-ruskulhttp://www.youtube.com/user/BassTherapyMusic + +3229760Tom ZajacThomas Edward Zajac Jr.Classical wind and string instrument player (Shawm, sackbut, bagpipes, recorders, percussion) 1956 - 2015Needs Votehttps://newberryconsort.org/tom-zajac-in-memorium/TZThomas ZajacTom Zajac (TZ)The Newberry ConsortPiffaro, The Renaissance BandEx UmbrisThe Texas Early Music Project + +3230035Edward OrmondAmerican violist, died on May 23, 2012 at the age of 91 Needs VoteThe Cleveland OrchestraSaint Louis Symphony OrchestraIndianapolis Symphony OrchestraThe Cleveland Octet + +3230167Audun BreenNorwegian classical trombonistNeeds VoteOslo Filharmoniske OrkesterGöteborgs SymfonikerThe Norwegian Wind EnsembleRed Hot (11)Norsk Tromboneensemble + +3230275Peter Fry (3)British classical percussionist, born in London, England. +He started playing orchestral percussion with the [b]London Schools' Symphony Orchestra[/b]. He left school to study at the [l=Royal College Of Music] (1974-1977). On leaving, he joined [a=The English National Opera Orchestra] (1977-1984) before joining the [a=Philharmonia Orchestra] in 1985. He regularly freelances with other London orchestras and [a=The Chamber Orchestra Of Europe].Correcthttps://www.linkedin.com/in/peter-fry-174aa456/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/fry-peter/https://www.philharmonia.co.uk/orchestra/players/13047/peter_fryhttps://music.metason.net/artistinfo?name=Peter%20Fry%20%283%29Philharmonia OrchestraThe English National Opera OrchestraYoung Musicians Symphony Orchestra + +3230278Jackie KendleJacqueline KendleBritish classical timpanist/percussionist, and teacher of timpani/percussion. Born in Norwich, England, UK. +She graduated from the [l290263]. Early in her career, she held positions as Principal Timpanist of the Royal Ballet Touring Orchestra (now the [a=Birmingham Royal Ballet]) and with the [a=BBC National Orchestra Of Wales]. She had a long association with the [a=Philharmonia Orchestra] up until 2020. She has over 30 years' teaching experience at all levels.Needs Votehttps://www.jackiekendle.com/https://www.facebook.com/jackie.kendle.5/https://www.instagram.com/jkpercs/https://www.linkedin.com/in/jackie-kendle-696ba9173/?originalSubdomain=ukhttps://www.percworks.co.uk/jackiekendlehttps://www.nottinghamyouthorchestra.org/meet-the-team/jackie-kendleJacqueline KendleRoyal Philharmonic OrchestraPhilharmonia OrchestraBBC National Orchestra Of WalesBirmingham Royal Ballet + +3230434Chian LimClassical violistNeeds VoteRoyal Philharmonic Orchestra + +3231296Russell's Hot SixNeeds Major ChangesLouis Russell's Hot SixLuis Russel's Hot SixLuis RussellLuis Russell's Hot SixKid OryAlbert NicholasJohnny St. CyrLuis RussellBarney BigardGeorge Mitchell (3) + +3231663Denis Fournier (3)Saxophonist and clarinet playerNeeds VoteD. FournierDenisGrand Orchestre De L'OlympiaJean-Claude Pelletier Et Son OrchestreClaude Bolling & Le Show Biz Band + +3231865Reinhold HelbichReinhold Helbich (born 1936) is a German clarinetist. He was a member of the [a604396] from 1975 to 1999.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksResidenz Kammerorchester MünchenDie Deutschen Bläsersolisten + +3231866Wolfgang GaagClassical hornist from Germany.Needs Votehttps://de.wikipedia.org/wiki/Wolfgang_GaagW. GaagMünchner PhilharmonikerRadio-Sinfonieorchester StuttgartBamberger SymphonikerDie Deutschen BläsersolistenGerman Brass + +3231867Ralf SpringmannRalf Springmann (born 1959) is a German hornist. He was a member of the [a604396] from 1985 to 2025.Needs Votehttp://www.br.de/radio/br-klassik-english/symphonieorchester/orchestra/members-horn-ralf-springmann100.htmlSymphonie-Orchester Des Bayerischen RundfunksOrchester Der Deutschen Oper BerlinDie Deutschen BläsersolistenBundesjugendorchester + +3231868Joachim OlszewskiClassical wood-wind instrumentalistNeeds VoteSymphonie-Orchester Des Bayerischen RundfunksMünchener KammerorchesterDie Deutschen Bläsersolisten + +3232143Jack BergJack PalmerAmerican singer during the big band eraCorrectJack PalmerHarry James And His Orchestra + +3232976Olga CaceanovaClassical violinist, born in Chisinau (Moldavia).Needs VoteNetherlands Chamber Orchestra + +3233265House Of VirusDJ/Producer partnership between Manchester based idea machine & home grown Lithuanian music addict has spawned a virus so delightfully infectious you’ll feel no regrets catching it! Watch out - it’s already spreading around the globe!Needs Votehttps://soundcloud.com/houseofvirushttps://www.facebook.com/houseofvirus/https://twitter.com/houseofvirushttps://soundcloud.com/houseofvirushttps://www.residentadvisor.net/dj/houseofvirus + +3234658Rainer VogtGerman trombonist.CorrectDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleStaatsphilharmonie Rheinland-Pfalz + +3234660Hans GelharHans Gelhar is a classical tubist and music professor.Needs VoteOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner Philharmoniker + +3234665Christhard GösslingChristhard Gössling is a German classical trombonist. He was a member of the [a260744] from 1984 to 2023.Needs VoteChristhard GosslingProf. Christhard GösslingBerliner PhilharmonikerBundesjugendorchesterWestfälisches Blechbläser-EnsembleKuhlo-Horn-Sextett 1991Westfälisches Posaunenquartett + +3234666Leo SiberskiLeo Siberski (born 1969 in Hanover) is a German conductor, pianist and classical trumpet playerNeeds Votehttp://leosiberski.com/Leo SiberrskiStaatskapelle BerlinOrchester der Bayreuther FestspieleDas Junge Deutsche Blechbläserquintett + +3234669Siegfried GöthelSiegfried Göthel (2 September 1942 — 2004) was a German classical trumpeter.Needs VoteSiegfried GoethelOrchester der Bayreuther FestspieleBachcollegium StuttgartRadio-Philharmonie Hannover Des NDRNiedersächsisches Staatsorchester Hannover + +3234670Ernst GiehlClassical trombonist. A member of the [a604396] from 1975 to 2004.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBavaria Blechbläsersolisten, München + +3234672Siegfried CieslikGerman trombonist and music professor.Needs VoteBerliner PhilharmonikerBlechbläser-Ensemble Der Berliner PhilharmonikerGerman Brass + +3234673Wolfram ArndtGerman trombonist and music professor, born 2 March 1964 in Stuttgart, Germany.CorrectBerliner PhilharmonikerOrchester der Bayreuther FestspieleBundesjugendorchesterDüsseldorfer Symphoniker + +3234675Thomas ClamorGerman trumpet player and conductor.Needs VoteBerliner PhilharmonikerWestfälisches Blechbläser-EnsembleKuhlo-Horn-Sextett 1991 + +3235118Roy PattenHarold Roy PattenClassical violist. +Former member of the [a=London Symphony Orchestra] (1946-1951).Needs VoteLondon Symphony OrchestraPhilharmonia OrchestraVic Lewis And His Orchestra + +3235147Torsten JanickeGerman violinist, born in 1958 in Dresden, Germany.Needs Votehttp://www.torstenjanicke.de/Torsten JahnickeRundfunk-Sinfonie-Orchester LeipzigOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerEssener Philharmoniker + +3235493Cappy CrouseTrombone player from the swing era.Needs VoteBobby Hackett And His Orchestra + +3235496Bob JulianAmerican guitarist from the swing era.Needs VoteBobby Hackett And His Orchestra + +3235501Jerry CaplanAlto saxophonist from the swing era. Played with Bobby Hackett.Needs VoteBobby Hackett And His Orchestra + +3235503George TroupDixieland trombone player.Needs VoteBobby Hackett And His Orchestra + +3235504Hank KusenTenor saxophonist. Played with Bobby Hackett.Needs VoteBobby Hackett And His Orchestra + +3235987Fred RadkeAmerican trumpeter, big band conductor, composer and arranger. Married to [a5330254]. Leader of the Harry James Orchestra since 1989.Needs Votehttp://www.fredradke.com/fredradkebio.aspF. RadkeHarry James And His OrchestraHB Radke And The Jet City SwingersFred Radke OrchestraFred Radke & His Swingin' Big BandFred Radke•Mike Vax Quintet + +3236741Agathe BoudetFrench soprano vocalist.Needs VoteLe Concert SpirituelEnsemble Vocal Aedes + +3236743Marie GriffetFrench soprano vocalist.Needs VoteLe Concert SpirituelLes Pages Et Les Chantres Du Centre De Musique Baroque De Versailles + +3236748Caroline MarçotFrench mezzo-soprano, pianist and composer, born 15 November 1974.Needs VoteCaroline MarcotMarçotLe Concert SpirituelLes Cris de ParisChoeur Arsys BourgogneL'Échelle + +3237015Klaus Winkler (2)German violinist and conductor. A member of the [a604396] from 1975 to 1999.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksI CiarlataniResidenz Kammerorchester MünchenWinkler QuartettWerner-Egk-Quartett + +3237401Lisamarie VanaClassical violinist.Needs VoteLisa Marie VanaLes Musiciens Du Louvre + +3238299Charles DonaldsonBritish classical percussionist. +Former Principal Percussion with the [a=London Symphony Orchestra] (1953-1962). He was also member of [b]The New Music Ensemble[/b].Needs VoteLondon Symphony OrchestraLondon Symphony Orchestra Chamber Group + +3239220Steve Davies (7)Steven Davies Electronic dance music DJ, producer from Torquay, UK +Style: Hard DanceCorrecthttp://www.facebook.com/steven.f.davies.7S.DavisFierce DJs + +3239221Daniel Bortoli WyattDaniel Bortoli Wyatt Electronic dance music DJ, producer from Torquay, UK +Style: Hard Dance +Needs Votehttps://www.facebook.com/daniel.b.wyatt.3D.Bortoli WyattDaniel WyattBoy WanderFierce DJs + +3240652Frank TackmannGerman percussionistCorrectRundfunk-Sinfonieorchester BerlinPercussion Project Rostock + +3240933Sarah StobartClassical soprano vocalistNeeds VoteThe Hilliard Ensemble + +3241038Lloyd Anderson (5)BassistNeeds VoteJay McShann And His OrchestraBus Moten & His Men + +3241106Shkëlzen DoliAlbanian violinist, born 9 August 1971 in Elbasan, Albania.Needs VoteShkelzen DoliOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Philharmonics + +3241107René StaarAustrian violinist, pianist, conductor and composer, born on 30 May 1951 in Graz, Austria.Needs Votehttp://www.staar.at/StaarOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Wiener Collage + +3241108Daniel OttensamerAustrian clarinetist. He's the son of [a843305] and the brother of [a2427713].CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Philharmonics + +3241113Tibor KováčSlowakian violinistNeeds Votehttp://thephilharmonics.com/about/tibor-kovac/Tibor KovacOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Philharmonics + +3241115Stephan KonczAustrian cellistCorrectKonczBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerThe Philharmonics + +3241116Thilo FechnerGerman viola playerCorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Philharmonics + +3241117Ödön RáczHungarian double-bass player, born 6 October 1981 in Budapest, Hungary.Needs Votehttps://www.odonracz.comhttps://de.wikipedia.org/wiki/Ödön_RáczRácz ÖdönOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Philharmonics + +3242135Charys GreenClassical clarinetistNeeds VoteLondon Philharmonic Orchestra + +3242700Davin PalmerDavin PalmerElectronic dance music DJ / producer from Newport, South Wales, UK +Also known as DJ Streamline +Styles: Hard Dance | Hardstyle | Hard House| Hardcore +email: dj-streamline@hotmail.com + +Needs Votehttp://soundcloud.com/davinhybridzpalmerhttp://www.facebook.com/pages/DJ-Streamline/34205730017http://www.youtube.com/user/DJStreamline?feature=mhumD PalmerD.PalmerStreamline (6)HybridZ (2) + +3242701Mark TraceyMark TraceyElectronic dance music DJ / producer from Newport, South Wales, UK +Styles: Hard Dance | Hardstyle | Hard House| Hardcore + + +Correcthttp://soundcloud.com/markhybridz/trackshttp://www.facebook.com/Mark.HybridZhttp://www.youtube.com/user/DJMRT86http://twitter.com/Mark_HybridZM TraceyM.TraceyMark HybridZMr T (6)HybridZ (2) + +3243825John Fisher (11)Harpsichord player.Needs VoteScottish Chamber Orchestra + +3245334Dagny BakkenNorwegian violinist and pianist, born 1959 in Oslo, Norway.Needs VoteOslo Filharmoniske Orkester + +3245337Arne Jørgen ØianNorwegian violinist.Needs VoteArne I. ØianArne Jorgen ØianArne ØianOslo Filharmoniske Orkester + +3247926Adolf HollerAustrian trumpet/post horn player and music professor (17 June, 1929 in Schärding, Austria - 19 April, 2012 in Perchtoldsdorf, Austria).Needs VoteAdolph HollerWiener PhilharmonikerZagrebački SolistiHofmusikkapelle Wien + +3248530Danny Altier And His OrchestraNeeds Major ChangesDanny Altier's Orch.Pat PattisonDanny AltierJohnny Carsella + +3248532Frank Teschemacher's ChicagoansNeeds Major ChangesFrank Teschmacher's ChicagoansFrank Teschmaker's ChicagoansGene KrupaBud FreemanJoe SullivanFrank TeschemacherJim LanniganRod Cless + +3251785Rebecca Lloyd-JonesAustralian percussionist, researcher and educator. Based in San Diego as of 2019.Needs Votehttps://rebeccalloydjones.org/ABMUSN Rebecca Lloyd-JonesMelbourne Symphony OrchestraSydney Symphony OrchestraQueensland Symphony OrchestraThe Royal Australian Navy BandAdmiral's Own Big Band + +3252553Frank Ludwig (2)Credited as jazz tenor saxophonist.Needs VoteF. LudwigFranck LudwigSy Oliver And His Orchestra + +3253250Sandra SchuhmacherGerman oboist, born in 1982 in Brühl, Germany.Needs VoteStuttgarter PhilharmonikerBundesjugendorchester + +3253482Geoffrey HardcastleAmerican trumpet player +Member of The Buffalo Philharmonic Orchestra section since 2004. He also served as second trumpet with The Cleveland Orchestra from 1997-1999. He is a graduate of the Cleveland Institute of Music receiving a Bachelors and Masters in music performance. He has studied with James Stamp, Bernard Adelstein and David Zauder. Geoffrey is also a very active chamber musician performing worldwide with the Center City Brass Quintet and Proteus 7. He is currently on faculty at Canisius College.Needs VoteGeoff HardcastleThe Cleveland OrchestraBuffalo Philharmonic OrchestraCleveland Chamber SymphonyProteus 7Burning River BrassCenter City Brass Quintet + +3254143Joy RobinsonClassical alto vocalist.Needs VoteThe Schütz Choir Of London + +3254390Ludwig UmbreitLudwig Umbreit (29 September 1930 — 10 May 2019) was a German classical violinist.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Orchester Der Hansestadt Lübeck + +3254391Detlev GrevesmühlDetlev Grevesmühl is a German violinist and formart concertmaster of the [a841431].Needs Votehttp://www.deutscheoperberlin.de/de_DE/ensemble/detlev-grevesmuehl.16972#Wiener SymphonikerOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinBerliner Streichquintett + +3254393Alfred HinzAlfred Hinz (born 12 April 1924) is a German classical violinist.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspiele + +3254397René HenriotRené Henriot is a classical violinist. Needs VoteRenée HenriotOrchester der Bayreuther FestspieleBielefelder Philharmoniker + +3254400Roland Heuer (2)Classical violinistNeeds VoteStaatsorchester StuttgartOrchester der Bayreuther Festspiele + +3254402Jean BiscigliaFrench classical violinist and teacher.Needs VoteOrchestre De LyonOrchester der Bayreuther Festspiele + +3254403Herbert SiebertHerbert Siebert (5 December 1931 — 9 October 2020) was a German conductor and violinist, who has worked in Wiesbaden and Bayreuth. +Use with caution when credited alongside the bogus likes of [a=Alfred Scholz] and [a=Albert Lizzio].Needs VoteOrchester der Bayreuther FestspieleHessisches Staatsorchester Wiesbaden + +3254404Werner LuppaWerner Luppa (13 March 1938 — 28 August 2022) was a German classical violinist.Needs VoteOrchester der Bayreuther FestspieleDüsseldorfer Symphoniker + +3254406Rolf GronemannClassical violinist.Needs VoteOrchester der Bayreuther FestspieleSinfonieorchester WuppertalMartfeld Quartett + +3254408Albrecht AndersAlbrecht Anders (born 3 February 1942) is a German violinist.Needs VotePaul Kuhn Mit Seinem OrchesterOrchester der Bayreuther Festspiele + +3254410Michael StricharzMichael Stricharz (born 1946) is a German classical violinist and teacher.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgSolistes Européens Luxembourg + +3254414Wolfgang CamphausenWolfgang Camphausen (born 1933) is a German classical violinist and writer.Needs VoteW. CamphausenOrchester der Bayreuther Festspiele + +3254415Gustav KolbeGustav Kolbe (25 February 1931 — 1 February 2016) was classical violinist, conductor and violin teacher.Needs VoteMünchner PhilharmonikerOrchester der Bayreuther FestspieleOrquesta Sinfonica Nacional de Colombia + +3254416Min KimMin Kim is a Korena classical violinist and artistic director of the Korean Chamber Orchestra.Needs VoteOrchester der Bayreuther FestspieleKBS Symphony Orchestra + +3254418Thomas Berg (7)German violinist and Professor of Violin, born in Trier, Germany.CorrectJunge Deutsche PhilharmonieOrchester Der Deutschen Oper BerlinPhilharmonisches Orchester DortmundBundesjugendorchester + +3254419Erwin SchnurErwin Schnur is a German classical violinist.Needs VoteOrchester der Bayreuther FestspieleOrchester Des Staatstheaters Kassel + +3254420Gerd HulverscheidtGerman classical violinist (1 May 1932 — 15 August 1999).Needs VoteGert HulverscheidtOrchester der Bayreuther FestspieleSinfonieorchester WuppertalMartfeld Quartett + +3254421Wilfried SchadowWilfried Schadow (5 November 1940 — 25 December 2015) was a German violinist.Needs VoteW. SchadowWilfred SchadowOrchester der Bayreuther Festspiele + +3254423Edward ZienkowskiEdward Zbigniew ZienkowskiEdward Zienkowski (born 15 May 1951 in Lublin) is a Polish-Austrian classical violinist and Professor at the [l1209200].Needs VoteE. ZienkowskiBerliner PhilharmonikerOrchester der Bayreuther FestspielePhilharmonisches Oktett BerlinKölner Rundfunk-Sinfonie-OrchesterPhilharmonia Quartett BerlinPhilharmonia Ensemble Berlin + +3254425Heinz-Joachim HeimbrockHeinz-Joachim Heimbrock is a German classical violinistNeeds VoteOrchester der Bayreuther FestspieleStaatsorchester Braunschweig + +3254428István Szentpáli-GavallérIstván Szentpáli Gavallér (born 26 July 1947) is a Hungarian-German classical violinist and conductor.Needs VoteMecklenburgische Staatskapelle SchwerinOrchester der Bayreuther FestspieleSiegerland OrchestraNiedersächsisches Staatsorchester Hannover + +3254431Oswald KästnerOswald Kästner (20 November 1925 - 16 December 1999) was a classical violinist.Needs VoteOrchester der Bayreuther Festspiele + +3254493Robert ReitbergerGerman cellist, died in January 2001 at the age of 67.CorrectBamberger SymphonikerPhilharmonisches Staatsorchester Hamburg + +3254494Peter Schulz-WickPeter Schulz-Wick (born 1948) is a German classical violist and violinist.Needs VoteOrchester der Bayreuther FestspieleNiedersächsisches Staatsorchester HannoverNeue Philharmonie Westfalen + +3254495Ewald WittenhorstEwald Wittenhorst (1939 — 2007) was a German classical violist.Needs VoteOrchester der Bayreuther Festspiele + +3254498Klaus GreinerKlaus Greiner is a German cellist.Needs VoteBamberger SymphonikerOrchester der Bayreuther Festspiele + +3254499Siegfried KalesseSiegfried Kalesse (1935 — 16 December 2018) was a German classical cellistNeeds VoteSigi KalesseOrchester der Bayreuther Festspiele + +3254500Hans-Ernst MeixnerHans-Ernst Meixner (born 23 November 1920) is a German classical cellist.Needs VoteOrchester der Bayreuther Festspiele + +3254503Roland FenebergRoland Feneberg was a German classical violist. He passed away in 2018.Needs VoteStaatsorchester StuttgartOrchester der Bayreuther Festspiele + +3254508Walter Müller (5)Walter Müller (9 July 1909 - ?) was a German violist.Needs VoteBerliner PhilharmonikerStaatskapelle BerlinDas Strub-QuartettBastiaan-Quartett + +3254513Peter DobrosmissloffPeter Dobrosmissloff (6 May 1929 — 28 March 2000) was a German classical cellist.Needs VoteOrchester der Bayreuther Festspiele + +3254515Klaus WundererKalus Wunderer is a German classical cellist.Needs VoteOrchester der Bayreuther FestspieleNiedersächsisches Staatsorchester Hannover + +3254518Hartwig HönleHartwig Hönle (born 12 August 1943) is a German classical cellist.Needs VoteWDR Sinfonieorchester KölnOrchester der Bayreuther FestspieleFrankfurter Opern- Und MuseumsorchesterKeramion Quartett + +3254520Walter MederusWalter Mederus is a classical cellist and cello teacher.Needs VoteOrchester der Bayreuther FestspieleBadische Staatskapelle + +3254521Roland KuntzeRoland Kuntze is a German classical cellist and music professor.Needs VoteOrchester Des Nationaltheaters MannheimStaatskapelle BerlinOrchester der Bayreuther Festspiele + +3254522Hans-Wilhelm KufferathHans-Wilhelm Kufferath (11 September 1939 - 3 May 2016) was a German cellist, conductor and educator. He was the uncle of [a2010611].Needs VoteOrchester der Bayreuther FestspieleBremer Philharmonisches StaatsorchesterOldenburgisches StaatsorchesterProteus-Ensemble + +3254549Bernd HasselBernd Hassel is a German clarinetist.Needs VoteOrchester der Bayreuther FestspieleRundfunk-Sinfonieorchester SaarbrückenDeutsche Radio Philharmonie Saarbrücken Kaiserslautern + +3254550Joachim WelzGerman clarinetist, born 1951 in Frankfurt, Germany.Needs VoteDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther Festspiele + +3254552Wolfgang Raumann (2)Wolfgang Raumann (5 June 1956 — 17 July 2011 in Erftstadt, Germany) was a German classical clarinetist, .Needs VoteWDR Sinfonieorchester KölnOrchester der Bayreuther Festspiele + +3254554Nothard MüllerNothart MüllerNothart Müller (born 1957) is a German clarinetist. +Needs VoteNorthart MüllerOrchester der Bayreuther FestspieleDas Orchester Der Staatsoper BerlinNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +3254558Joachim MeyerGerman double bass player. +CorrectBamberger Symphoniker + +3254560Helmut SchützeichelHelmut Schützeichel was a German classical oboist and teacher at the [l2335015] from 1971 to 2002. He passed away on March 27, 2002 at the age of 56.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspiele + +3254563André SebaldGerman flute player, conductor and music professor.Needs VoteOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner Philharmonikerduo da camera + +3254595Jürgen DankerJürgen Danker is a German classical hornist.Needs VoteOrchester der Bayreuther FestspieleBadische Staatskapelle + +3254602Karl-Heinz WeberGerman classical trombonistNeeds Votehttp://karlheinzweber.de/index.htmlKarlheinz WeberOrchester der Bayreuther FestspieleCollegium AureumClemencic ConsortDresdner PhilharmonieGürzenich-Orchester Kölner PhilharmonikerTrompeten Consort Friedemann ImmerCappella ColoniensisThe Edward Tarr Brass EnsembleOdhecatonSertum Musicale Coloniense + +3254603Horst ZieglerGerman hornist, born 1957 in Lahr, Germany.Needs VoteSinfonieorchester Des SüdwestfunksJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleSWR Sinfonieorchester Baden-Baden Und FreiburgSWR Symphonieorchester + +3254607Joachim MittelacherJoachim Mittelacher (15 March 1938 — October 2017) was a German classical trombone player, composer, trombone pedagogue and music publisher.Needs Votehttps://de.wikipedia.org/wiki/Joachim_Mittelacherhttps://joachim-mittelacher.de.tl/BIOGRAPHISCHES.htmOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgPhilharmonia HungaricaBremer Philharmonisches StaatsorchesterGerman Brass + +3254661Anne HüttenGerman harpist and music professor.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspiele + +3254664Gabriele BambergerGabriele Bamberger is an Austrian harpist.Needs VoteOrchester der Bayreuther FestspieleEssener Philharmoniker + +3254665Joachim WeigertGerman trumpeterNeeds VoteJochen WeigertOrchester Der Deutschen Oper Berlin + +3254667Eckhard FiebigSwiss classical percussionist, conductor, arranger and orchstra leader from Ebmatingen, Maur, Kanton Zürich. +Fiebig was percussionist for the [a931294] in the 1960s. There, he met his later spouse, [a12607109]. After their marriage in 1972, they moved to Fiebigs origin in Switzerland, where Fiebig got a position in the ensemble of the [a8551878]. In the 1970's, his both children [a3854901] and [a12607091] were born. +In 1992, Fiebig became co-founder and conductor of the [a12607046] in his home village. He maintained in this position until the orchestra disbanded in 2012. Later, he and his wife were members of the more folk-oriented band "Wiener Kranzl". + +CorrectNürnberger SymphonikerTonhalle-Orchester ZürichOrchester Maur + +3254668Rainer SeegersRainer Seegers (born 1952) is a German classical percussionist. He was a member of the [a260744] for 33 years.Needs VoteRainer SegersReiner SeegersBerliner PhilharmonikerBundesjugendorchester + +3254781Theresa BlankGerman mezzo-sopranoNeeds VoteTeresa BlankChor Des Bayerischen Rundfunks + +3255001Martin EdelmannGerman classical violist, born in 1969 in Bretten, later active in Vienna.Needs VoteWiener SymphonikerORF Radio-Symphonieorchester WienGlière String Quartet + +3255028Stefanie GanschAustrian oboist, born 1989 in Vienna, Austria.CorrectWiener SymphonikerORF Radio-Symphonieorchester Wien + +3255034Yishu JiangChinese classical cellistNeeds VoteBruckner Orchestra Linz + +3255037Wolfgang StrasserAustrian trombonist, born 14 September 1968.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerORF Radio-Symphonieorchester WienAlpha Big Band SoundPhil Blech Wien + +3255044Maria GrünAustrian cellist, born in 1982.Needs VoteWiener SymphonikerGustav Mahler JugendorchesterORF Radio-Symphonieorchester WienLissy Quartett + +3255049Paul RabeckClassical violistNeeds VoteWiener Symphoniker + +3255072Aurora Irina Zodieru-LucaClassical violinist.Needs VoteWiener Symphoniker + +3255075Andreas PlanyavskyAustrian flute player, born 1977 in Vienna, Austria. He's the son of [a1471859].CorrectA. PlanyavskyWiener Jeunesse OrchesterGustav Mahler JugendorchesterORF Radio-Symphonieorchester Wien + +3255257Roger LunnCellist.CorrectLondon Philharmonic OrchestraThe London Cello Sound + +3255258Matthias FeileGerman classical cellist, conductor and teacher. Born ~1959 in Munich, West Germany. +He relocated to Britain in 1984. During the second half of the 1980s and most of the 1990s he was Principal Cellist with the [a=London Philharmonic Orchestra] and also the [a=Philharmonia Orchestra] with whom he performed world-wide. He was conductor and artistic director of a youth and student orchestra in South-West London for 8 years. After obtaining a medical degree, coupled with a few years spent as a house officer in Dundee, and indeed in Forfar, he now works as a trainee psychiatrist in Perth. +Husband of [a=Maya Iwabuchi].Correcthttp://taysidesymphonyorchestra.org.uk/soloists.htmMatthian FeileLondon Philharmonic OrchestraPhilharmonia Orchestra + +3255261Lawrence Evans (2)Needs VotePhilip Jones Brass Ensemble + +3255262John LowdellCellist.CorrectLondon Philharmonic OrchestraThe London Cello Sound + +3256083Martin Morris (2)Classical horn player.Needs VoteThe Cleveland Orchestra + +3256105Anton BarachovskyClassical violinist, born 1973 in Novosibirsk, Union of Soviet Socialist Republics (today Russia). Now based in Germany.Needs VoteAnton BarachosevAnton BarachovskiAnton BarachowskyAnton BaracovskyAnton BarakhovskyАнтон БараховскийSymphonie-Orchester Des Bayerischen RundfunksСнежные Дети + +3256110Jesper KorneliusenJesper Tjærby KorneliusenDanish classical percussionist, born in 1972 in Copenhagen.Needs VotePhilharmonisches Staatsorchester HamburgStrange Party OrchestraGustav Mahler JugendorchesterSiegerland Orchestra + +3256257Povilas Syrrist-GelgotaLithuanian violist, born 1976. Husband of [a4693248].Needs VotePovilas SyrristOslo Filharmoniske Orkester + +3256769Santi InterdonatoItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaVirtuosi Di Roma "Collegium Musicum Italicum" + +3258802Sue MitchellBig band and radio vocalist who sang with the orchestras of [a=Bunny Berigan] (1937), [a=Woody Herman], Jimmy French, and [a=Barney Bigard].Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/110575/Mitchell_SueBarney Bigard And His Jazzopaters + +3258973Anthony Dean GriffeyAmerican operatic tenor.Needs VoteAnthony DeanAnthony GriffeyGriffey + +3260346Katie Jackson (2)Classical violinist.Needs VoteHallé Orchestra + +3260545Alan Read (3)American bassist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3260546Gene SmooklerAmerican jazz saxophonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3261620Lynn HammannAmerican drummerNeeds VoteThe Steve March BandThe Kenny Rogers Band + +3262136Kirsty Lee JamesNeeds Major Changes + +3262378David Thomas (28)Classical violinist.Needs VotePhilharmonia Orchestra + +3262435Ian Hall (3)British classical double bass player.Needs Votehttps://www.linkedin.com/in/ian-hall-b5834291/?originalSubdomain=ukPhilharmonia OrchestraThe London Double Bass EnsembleEnglish Symphony Orchestra + +3262442Suzy Willison-KawalecHarpist.Needs Votehttps://www.ram.ac.uk/people/suzy-willison-kawalecSuzy Willison-KavalecRoyal Philharmonic Orchestra + +3262545David CribbClassical tuba playerCorrectGewandhausorchester LeipzigGewandhaus Brass Quintett + +3262546Peter WettemannGerman trumpet player, born 17 October 1974 in Ravensburg, Germany.CorrectGewandhausorchester LeipzigJenaer PhilharmonieGewandhaus Brass Quintett + +3262547Otmar StrobelGerman trombonist, born 8 July 1965 in Brigachtal, Germany.Needs VoteGewandhausorchester LeipzigOrchester der Bayreuther FestspieleGewandhaus Brass Quintett + +3262549Lukas BenoTrumpet player, born in 1980 in London, UK, based in Germany.CorrectGewandhausorchester LeipzigOrchester der Bayreuther FestspieleGewandhaus Brass QuintettBundesjugendorchester + +3262792Sabine Tanguy-RheinClassical violinistNeeds VoteOrchestre De Chambre De Toulouse + +3262793Anaïs HolzmannClassical violinistNeeds VoteOrchestre De Chambre De Toulouse + +3262795Anne GaurierClassical cellistNeeds Votehttp://www.anne-gaurier.com/Orchestre De Chambre De Toulouse + +3262796Nicolas KononovitchClassical violinistNeeds VoteOrchestre De Chambre De Toulouse + +3262799Ana SanchezAna Sanchez HernandezClassical violinistNeeds VoteAna SánchezAna Sanchez HernandezOrchestre De Chambre De Toulouse + +3263968Erich TrogGerman timpani playerCorrectDeutsches Symphonie-Orchester BerlinNDR Hannover Pops OrchestraOrchester der Bayreuther Festspiele + +3263971Michael Pohl (2)German violinist & organistNeeds VoteNDR Hannover Pops OrchestraOrchester der Bayreuther FestspieleRadio-Philharmonie Hannover Des NDR + +3263983Katrin StrobeltGerman violinist, born in 1968.Correcthttps://www.facebook.com/katrin.strobeltNDR Hannover Pops OrchestraOrchester der Bayreuther FestspieleRadio-Philharmonie Hannover Des NDR + +3263995Klaus RedaGerman drummerNeeds VoteNDR Hannover Pops OrchestraRadio-Philharmonie Hannover Des NDRDeutsche Kammerphilharmonie Bremen + +3264003Christian Heilmann (2)German trombonist, born in 1961 in Braunschweig, Germany.Needs VoteNDR Hannover Pops OrchestraOrchester der Bayreuther FestspieleRadio-Philharmonie Hannover Des NDRMusikgruppe Rot-Weiss + +3265655David Read (4)Classical vocalist + conductorNeeds VoteWestminster Cathedral Choir + +3265688Jonas WalkerAmerican jazz trombonist. Needs Vote"Sweet Papa" Jonas Walker"Sweet" Papa Jonas WalkerCootie Williams And His OrchestraEddie Heywood & His Jazz SixLeon Abbey's Band + +3265768Gerhard Meyer (4)Gerhard Meyer is a German classical pianist, double bassist and piano teacher.Needs VoteBerliner Symphoniker + +3266840Giorgio KröhnerGerman classical violinist.CorrectGiorgio KrohnerKröhnerギョルギォ・クレーナーGewandhausorchester LeipzigOrchester Des Nationaltheaters MannheimGewandhaus-Quartett Leipzig + +3266841Wolfgang BilfingerGerman clarinetistNeeds VoteGewandhausorchester Leipzig + +3267306"Little Jazz" And His Trumpet EnsembleNeeds Major Changes"Little Jazz" (Roy Eldridge) And His Trumpet EnsembleJohnny GuarnieriLittle Jazz And His Trumpet EnsembleRoy Eldridge & The Swing TrumpetersCozy ColeRoy EldridgeEmmett BerryJoe Thomas (4)Johnny GuarnieriIsrael Crosby + +3267887Ulf ÅbergClassical violistNeeds VoteCity Of Birmingham Symphony Orchestra + +3267984Massimo IannoneItalian tenor vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +3267990Daniela GentileItalian contralto vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +3268062Margaret LenskyBritish mezzo-soprano, composer, singing teacher and choral conductor, born 19 August 1929.Correcthttp://www.margaretrizza.com/Margaret Rizza + +3268611Cara BerridgeBritish cellistCorrecthttps://twitter.com/cazziebevThe Academy Of St. Martin-in-the-FieldsMarylebone CamerataThe Sacconi Quartet + +3269742Franz Koch (4)Franz Koch was an classical french horn player and teacher at the Konservatorium der Stadt Wien.Needs VoteF. KochKochWiener Philharmoniker + +3269953Crispin WardClassical hornist.CorrectLes Arts Florissants + +3269954Eric VignauClassical tenor.CorrectLes Arts Florissants + +3269955Nicolas PouyanneClassical bassoonist.CorrectLes Arts Florissants + +3269956Simon GrowcottClassical hornist.CorrectLes Arts Florissants + +3270667Marianne BindelClassical violinist.Needs VoteDR SymfoniOrkestret + +3273787Rachael Quinlan-YatesCorrectRachael QuinlanRachael YatesRachel QuinlanLes Arts Florissants + +3273788Nicola HaystonClassical violinist.CorrectLes Arts Florissants + +3273789Russell TheodoreClassical vocalist.CorrectLes Arts Florissants + +3273790Michael DollendorfClassical bassoonist.Needs VoteLes Arts FlorissantsThe Smithsonian Chamber Players + +3273791Patrick FoucherClassical tenor.CorrectLes Arts Florissants + +3273793Yuki TerakadoClassical violinist.Correct寺門 有紀寺門有紀Les Arts Florissants + +3273794Jorien Van TuinenClassical viola player.CorrectLes Arts Florissants + +3274476Adolpho ValdezNeeds VoteAdolpho ValdesGerald Wilson Orchestra + +3274705Hannah PerowneBritish violinist, born 1974 in Norwich, England,Needs Votehttps://twitter.com/hannahperowne?lang=deGewandhausorchester LeipzigCamerata Academica SalzburgOrchester Der Komischen Oper Berlin + +3275258Constantin BogdanasFrench violinist.Needs VoteConstantin BogdamasOrchestre Philharmonique De Radio FranceOrchestre ColonneQuatuor Enesco + +3277120Gary Simmons (3)Needs Major ChangesG. Simmons + +3277141Marco MartelliItalian classical double bassist, born in Livorno in 1987. In 2005, he graduated in double bass with full marks and honours from the l’Istituto Mus. Par. P. Mascagni di Livorno, under the guidance of M ° P.A. Tommasi. He undertook further studies with M ° A. Bocini, attending the special double bass course at the Fiesole music school and the Master of interpretation at the Haute école de musique de Genève (Geneva HEM) and with M ° F. Petracchi at the Stauffer Academy. + +From 2006 to 2008 he was the first double bass of the [a=Italian Youth Orchestra]. He has collaborated in various productions with the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia], after entering the double bass competition in 2008. He is currently double bassist with the [a=Orchestra Del Maggio Musicale Fiorentino].Correcthttps://nbbrecords.com/author-book/marco-martelli/Orchestra dell'Accademia Nazionale di Santa CeciliaOrchestre De La Haute École De Musique De GenèveOrchestra Del Maggio Musicale FiorentinoItalian Youth Orchestra + +3278821David GaragherNeeds Major Changes + +3279360Ray Miller (4)American drummer and bandleader (1896–1974). + +During the l920's, Ray Miller was a well-known, highly respected bandleader whose orchestra made many recordings for various companies.Needs VoteMIllerMillerRay Miller And His OrchestraRay Miller's Black And White Melody Boys + +3279490Liisa RandaluViola player, born 1986 in Tallin, EstoniaNeeds VoteGustav Mahler JugendorchesterBundesjugendorchesterhr-SinfonieorchesterSchumann Quartett + +3281351Louis SauvêtreClassical percussionistNeeds VoteIl Seminario MusicaleOrchestra Della Radio Televisione Della Svizzera Italiana + +3281354Natalia MargulisClassical cellistNeeds VoteOrquesta Sinfónica De Madrid + +3281394Billie Rogers (2)Zelda Louise SmithAmerican jazz trumpeter (b. May 31, 1917 North Plains, Oregon - d. January 18, 2014) + +The first woman to hold a horn position in a major swing orchestra, Rogers studied music at the University of Montana. She entered [a284746] as side musician in 1941, playing trumpet and occasionally singing. In 1943, she left the band to form her own orchestra. At the end of 1944, she joined the Jerry Wald band. In October 1945, she left to form her own sextet. In 1947, she retired from show business to raise her family with booking agent Jack Archer (1909-1962), whom she met when he was the road manager of the Woody Herman Orchestra and married in 1944. Sometimes appears as 'Billy Rogers', especially on sheet music.Needs Votehttp://greatentertainersarchives.blogspot.com/2012/10/billie-rogers-big-band-pioneer.htmlhttps://en.wikipedia.org/wiki/Billie_RogersB. RogersBillie RogersBilly RogersWoody Herman And His OrchestraBillie Rogers OrchestraThe Band That Plays The Blues + +3281822Maria Sanchez RamirezMaria Sanchez RamirezClassical cellist and string player.Needs VoteMaria RamírezMaría SánchezMaría Sánchez RamírezThe English Baroque SoloistsEnsemble DENEBMusica Poëtica + +3284930Martin Nelson (2)British bass vocalistNeeds VoteLondon VoicesVoices From Somewhere + +3287063Krzysztof JaguszewskiClassical percussionistNeeds VotePolish National Radio Symphony Orchestra + +3287294Achim Von LorneAchim Von Lorne (born 1939) is a German classical bassoonist.Needs VoteAchim v LorneAchim v. LorneSymphonie-Orchester Des Bayerischen RundfunksMünchener KammerorchesterMünchner Bläseroktett + +3287295Manfred SchweigerGerman violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerMünchener Kammerorchester + +3287520Barbara FraserBarbara Anne FraserBarbara Fraser (1951 - 20 September 2008) was an American violinist and violin teacher. She was a member of the [a837562] from 1975 to 1996.Needs VoteChicago Symphony OrchestraMilwaukee Symphony Orchestra + +3287521Roger ClineAmerican double bassist. Member of the [a837562] from 1973 to 2018.Needs VoteRoger W. ClineChicago Symphony Orchestra + +3287943Gottfried HahnGottfried Hahn is a German cellist. +Needs VoteRadio-Sinfonieorchester Stuttgart + +3287944Horst StrohfeldtHorst Strohfeldt (5 December 1936 - 4 April 2017) was a German classical viola player.Needs VoteHorst StrommfeldsRadio-Sinfonieorchester StuttgartBachcollegium StuttgartHamburger SymphonikerAbert-Quartett Stuttgart + +3287983Karl StumpfKarl Stumpf (1907 - 1988) was an Austrian violist and Viola d'Amore player.Needs VoteK. StumpfProf. Karl StumpfOrchester Der Wiener StaatsoperWiener Philharmoniker + +3288391John Ryan (18)Bass playerNeeds VoteJohn H. RyanPaul Weston And His OrchestraBenny Goodman With Strings + +3288755Rigoberto Marin-PolopBaritone vocalistCorrectChoeur National De L'Opéra De Paris + +3289106Gabriel PasqualiniNeeds Major ChangesG. PascaliniG. PasqualiniPascaliniS. PascaliniCharles Matton + +3289219Madis KariClassical clarinetistNeeds VoteEstonian National Symphony Orchestra + +3290464Arrigo PietrobonClassical woodwind playerNeeds VoteVenice Baroque OrchestraQuadro Asolano + +3290599Susanne BrannyGerman violinistNeeds VoteBrannyStaatskapelle DresdenDresdner BarocksolistenOrchester Des Schleswig-Holstein Musik FestivalsDresdner KapellsolistenCappella Musica Dresden + +3290600Christian RolleGerman contrabassistCorrectStaatskapelle DresdenDresdner Kapellsolisten + +3290650Joe PameliaJazz saxophonistNeeds VoteTommy Dorsey And His OrchestraThe Dorsey Brothers Orchestra + +3290651Kenny DeLangeJazz saxophonistNeeds VoteDeLangeTommy Dorsey And His OrchestraThe Dorsey Brothers Orchestra + +3290925Zora SlokarSwiss horn player, born 1980 in Berne, Switzerland.Needs Votehttp://www.zoraslokar.comZoraMelbourne Symphony OrchestraFestival Strings LucerneGustav Mahler JugendorchesterOrchestra Della Radio Televisione Della Svizzera ItalianaSlokar Trio + +3291563Steve Trowell (2)Stephen TrowellTenor singer, saxophonist, composer and arranger.Needs Votehttps://www.stevetrowell.com/https://www.imdb.com/name/nm9611432/Metro VoicesLondon VoicesThe Magnets + +3291938Giovanni FerrettiGiovanni Ferretti (c. 1540 – after 1609) was an Italian composer of the Renaissance, best known for his secular music. He was important in the development of the lighter kind of madrigal current in the 1570s related to the villanella, and was influential as far away as England. + +For Folk guitarist see [a=Giovanni Ferretti (2)] +For electronic music producer see [a=Giovanni Ferretti (3)]Needs Votehttps://en.wikipedia.org/wiki/Giovanni_FerrettiG. Ferretti + +3291997Livio PicottiItalian classical countertenor and director of [a=Coro Del Centro Di Musica Antica Di Padova]Needs VoteCoro Del Centro Di Musica Antica Di PadovaSchola GregorianaCapella Dvcale VenetiaMadrigalisti Del Centro Di Musica Antica Di Padova + +3292223Yeree SuhSouth-korean soprano vocalist.Needs Votehttp://www.bach-cantatas.com/Bio/Suh-Yeree.htmSuhY. SuhRundfunkchor BerlinCollegium VocaleLa Petite Bande + +3292890Renaud MalauryFrench cellist.Needs VoteOrchestre Des Concerts LamoureuxBelli Celli + +3293085Arthur TroesterArthur Troester (11 June 1906 - 26 August 1997) was a German cellist. He was first principal cellist of the [a260744] from 1935 to 1945.Needs VoteBerliner PhilharmonikerNDR SinfonieorchesterHansen-Trio + +3293913Nick SquireLead recording engineer for the [a395913]. Squire has won 4 Grammy Awards for his work with the BSO since 2015.Needs Votehttp://www.nicksquire.com/https://www.grammy.com/artists/nick-squire/19525Nicholas Squire + +3294689Clare HowickClassical violinist. +She studied at the [l527847]. She was in the 1st violin section of the [a=Philharmonia Orchestra].Needs Votehttp://www.clarehowick.co.uk/https://www.facebook.com/ClareHowickviolin/https://twitter.com/ClareHowickhttps://open.spotify.com/artist/7a1ZMYCXQdIJOPW23Y5mDXhttps://music.apple.com/ie/artist/clare-howick/378110748https://www.naxos.com/Bio/Person/Clare_Howick/118931Clair HowickClaire HowickPhilharmonia Orchestra + +3295005Neill SandersNeill Joseph SandersBritish French horn player and Professor of Horn. Born 24 November 1923 - Died 19 April 1992. +Aged 18 he was Principal Horn with the [a=London Symphony Orchestra] for a short time. After the war, he was again Principal Horn with the orchestra and also with the [a=BBC Symphony Orchestra]. 2nd Horn with the [a=Philharmonia Orchestra]. Member of the [a=London Baroque Ensemble]. He was a founding member of the [a=Melos Ensemble] and played with them for 29 years. Also Principal Horn of the [a=London Philharmonic Orchestra]. In 1970, he was appointed Professor for Horn at [l692076] in Kalamazoo, Michigan, USA. Founder of the [b]Fontana Ensemble[/b] and, in 1980, the [i]Fontana Concert Society[/i] with its summer Festival.Needs Votehttps://www.youtube.com/channel/UCC3PDAIL3dp_sQOvc5gk8Lw/featuredhttps://open.spotify.com/artist/07p6CfNKspq0OttqULHeXOhttps://music.apple.com/us/artist/neill-sanders/141258266https://en.wikipedia.org/wiki/Neill_Sandershttps://www.the-paulmccartney-project.com/artist/neil-sanders/https://www.geni.com/people/Neill-Joseph-Sanders/6000000003265212821N. SandersNeil SandersNeil SaundersNiels SandersLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraCCSEnglish Chamber OrchestraPhilharmonia OrchestraFrank Cordell OrchestraThe Kingsway Symphony OrchestraMelos Ensemble Of LondonThe English Opera GroupDennis Brain Wind EnsembleRobert Farnon And His OrchestraLeslie Jones And His Orchestra Of LondonLondon Baroque Ensemble + +3296303Antonio MameliItalian bass vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +3296305Corrado AmiciItalian tenor vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa CeciliaChappelle Musicale de la Trinité des monts, Mura + +3296307Andrea D'AmelioItalian baritone and bass vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa Cecilia + +3296309Francesco TomaItalian tenor vocalist.Needs VoteCoro dell'Accademia Nazionale di Santa CeciliaIl RuggieroL'Homme Armé + +3296574Walter ReichardtGerman classical cellist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterOrchestre Pro Arte De Munich"In Dulci Jubilo" EnsembleMünchner Streichquartett + +3296575Andreas SchwinnClassical oboist and cor anglais player, born 13 October 1920 in Bamberg, Germany; died 22 July 2008 in Dachau, Germany.Needs Votehttps://de.wikipedia.org/wiki/Andreas_SchwinnMünchner PhilharmonikerMünchener Bach-OrchesterOrchester der Bayreuther Festspiele + +3296576Konrad HamkeClassica wind instrumentalistNeeds VoteMünchener Bach-Orchester + +3296590Marta VulpiItalian soprano vocalist and music consultant.Needs VoteMarta Vulpi SingersCoro dell'Accademia Nazionale di Santa CeciliaPentarte Ensemble + +3297095Karl StierhofKarl Stierhof (22 December 1917 in Vienna, Austria - 1998) was an Austrian classical violist. He was a member of the [a754974] from 1962 to 1981.Needs VoteKarl TierhofProf. Karl StierhofOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Volksopernorchester + +3297872Bernard Schwartz (2)Keyboardist.Needs VoteBernie Schwartz + +3298252Louis ZimmermannLouis Johann Heinrich ZimmermannDutch violinist, composer, and teacher born 19 July 1873 in Groningen, Netherlands and died 6 March 1954 in Amsterdam, Netherlands.Needs VoteConcertgebouworkestConcertgebouw Trio + +3298999Derek BarnesAmerican cellist. Son of [a4690636]. Nephew of [a2328596].Needs VoteThe Philadelphia Orchestra + +3300464Ralph SabowGerman bassoonist, born 1956 in Berlin, Germany. He was a member of the [a3578838] from 1987 to 2019.Needs VoteRadio-Sinfonieorchester StuttgartMünchener KammerorchesterAulos-Bläserquintetthr-Sinfonieorchester + +3300465Karl-Theo AdlerGerman clarinetistNeeds VoteKarl Theo AdlerRadio-Sinfonieorchester StuttgartBläserensemble Sabine MeyerAulos-Bläserquintett + +3300466Dietmar UllrichGerman hornist.Needs VoteDittmar UllrichRadio-Sinfonieorchester StuttgartBamberger SymphonikerBläserensemble Sabine MeyerAulos-BläserquintettGerman Brass + +3301236Ross RadfordClassical double bassistNeeds VoteAdelaide Symphony OrchestraSydney Symphony OrchestraChristchurch Symphony Orchestra + +3301245Baden McCarronNeeds VoteSydney Symphony Orchestra + +3301402Peter Walmsley (2)Australian trumpeter, cornetist, tenor hornist and conductor. Needs Votehttps://www.ameb.nsw.edu.au/about-us/examiners/Peter-Walmsley-OAMhttps://www.linkedin.com/in/peter-walmsley-7249ba38/Sydney Symphony Orchestra + +3302141Denise Chirat-ComtetClassical keyboard instrumentalistNeeds VoteDenise ChiratOrchestre De La Société Des Concerts Du Conservatoire + +3302699Julius RietzAugust Wilhelm Julius RietzGerman composer, conductor and cellist, born 28 December 1812 in Berlin, Germany, died 12 September 1877 in Dresden, Germany.Needs Votehttp://en.wikipedia.org/wiki/Julius_RietzRietzStaatskapelle Dresden + +3303013William GrunerAmerican bassoonist and music director, born in 1881 and died in 1971.Needs VoteThe Philadelphia OrchestraVictor Symphony Orchestra + +3303735Leopoldo Federico Y Su Orquesta TípicaNeeds Major ChangesL. Federico Y Su Orq.L. Federico Y Su OrquestaL. Federico Y Su Orquesta TípicaL. Federico y Su Orq.L. Federico y su orq. típ.La Gran Orquesta De Leopoldo FedericoLeopoldo Federico & His OrchestraLeopoldo Federico & Tango-OrkesteriLeopoldo Federico And His OrchestraLeopoldo Federico E Sua OrquestraLeopoldo Federico E Sua Orquestra TípicaLeopoldo Federico OrchestraLeopoldo Federico Su Grand OrquestaLeopoldo Federico Y OrchestaLeopoldo Federico Y OrquestaLeopoldo Federico Y Su Orq.Leopoldo Federico Y Su Orq. TípicaLeopoldo Federico Y Su OrquestaLeopoldo Federico Y Su Orquesta TipicaLeopoldo Federico y Orq.Leopoldo Federico y Su OrquestaLeopoldo Federico y su Orq.Leopoldo Federico y su Orq. TípicaLeopoldo Federiso Y Su Orq. TípicaOrchestra Of Leopoldo FedericoOrquesta De Leopoldo FedericoOrquesta Leopoldo Federicoレオポルド・フェデリコとグラン・オルケスタAntonio AgriEmilio GonzálezLeopoldo FedericoMauricio MiseAntonio PrincipeHéctor LetteraJosé VottiHoracio CabarcosOsvaldo Montes (2)Adrian PucciEnrique LannooReynaldo NicheleMario FioccaDomingo MancusoEduardo MataruccoJosé SarmientoSimón BroitmanAngel SanzoHenry Ballestro + +3305227Staffan Lindberg (2)Staffan Lars LindbergSwedish bass vocalist, musician, arranger, composer and stand-up comedian, born February 9, 1966 in Uppsala. + +He has mostly made himself known with the singing group Viba Femba where he sang second bass. In 2003 he quit the singing group to continue as a freelance musician, artist and writer. He has collaborated with other musicians around the country and in Uppsala, where he comes from. He has also sung in Octavox, Radiokören and Eric Ericson's Chamber Choir, where he appeared on records and live performances. + +He came up with the basic idea for, and participated in, the Swedish television program program Musikministeriet.Needs Votehttp://www.koldioxidbantaren.se/http://www.staffanlindberg.comhttps://sv.wikipedia.org/wiki/Staffan_Lindberg_(musiker)StaffanStaffan LRadiokörenEric Ericsons KammarkörViba FembaOctavox + +3305502Henry Moss (3)British tenor singer.Needs VoteLondon Voices + +3305639Bojan CicicBojan ČičićClassical violinist, born 1979 in Zagreb. He is a graduate in modern violin from The Zagreb Academy of Music.Needs Votehttp://www.bojancicic.com/Bojan ČičićThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentPygmalionCharivari AgréableLa Nuova MusicaArcangeloEuropean Brandenburg EnsembleEuropean Union Baroque OrchestraLudovice EnsembleThe MozartistsThe Illyria ConsortFlorilegiumIn EchoLa Chambre ClaireNoxwode + +3305641Claire SansomClassical violinist from the UK.Needs VoteThe SixteenThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentThe Symphony Of Harmony And Invention + +3305643Kathryn ParryBritish classical violinist. Married to [a875354].Needs VoteOrchestra Of The Age Of EnlightenmentLondon Handel OrchestraThe Brook Street BandThe Revolutionary Drawing Room + +3305644Claire HoldenBritish classical violinist.CorrectOrchestra Of The Age Of Enlightenment + +3305646Ken AisoJapanese classical violinist, born and raised in Japan. He currently resides in the UK.Needs Votehttp://www.kenaiso.net/Ken Ichiro AisoOrchestra Of The Age Of EnlightenmentArcangelo + +3305647Emily WorthingtonBritish clarinetist & liner notes authorNeeds VoteThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentBoxwood & Brass + +3305681Xander Van VlietDutch violinistNeeds Votehttps://www.facebook.com/xander.vlietRoyal Scottish National OrchestraScottish EnsembleNavarra String Quartet + +3305757Lera AuerbachВалерия Львовна АвербахRussian-born American composer and pianist, poet and writer, born 21 October 1973 in Chelyabinsk (USSR) as Valeria Lvovna Averbakh (Валерия Львовна Авербах). +Lera Averbakh also writes poetry and prose works in Russian. She is the author of six collections of poetry and prose (the first collection of poems was published when she was 14 years old), her literary works are published in Russian magazines and Russian-language foreign publications.Needs Votehttps://leraauerbach.com/https://en.wikipedia.org/wiki/Lera_Auerbachhttps://ru.wikipedia.org/wiki/%D0%90%D0%B2%D0%B5%D1%80%D0%B1%D0%B0%D1%85,_%D0%92%D0%B0%D0%BB%D0%B5%D1%80%D0%B8%D1%8F_%D0%9B%D1%8C%D0%B2%D0%BE%D0%B2%D0%BD%D0%B0AuerbachL. AuerbachЛера АвербахStaatskapelle Dresden + +3306408Svein SkrettingNorwegian violinist, born 1974 in Bærum, Norway.Needs VoteOslo Filharmoniske Orkester + +3306907David BilgerDavid Bilger (born 1961) is an American trumpet player. A member of [a27519] from 1995 to 2022.Needs VoteDave BilgerThe Philadelphia OrchestraDallas Symphony OrchestraNew York Trumpet Ensemble + +3307290Lucy Ballard English alto & mezzo-soprano vocalistNeeds VoteGabrieli ConsortMetro VoicesThe Monteverdi ChoirEx Cathedra Chamber ChoirThe Clerks' GroupMayfield Chamber Opera ChorusOriel College Chapel Choir + +3309558Sam HopkinsSaxophone player.CorrectLightnin' HopkinsSammy HopkinsLucky Millinder And His Orchestra + +3310131Billy Jones (10)English jazz trumpeter active since the mid-'40s. +Played with Johnny Otis.Needs VoteJohnny Otis And His Orchestra + +3310364Joe MacDonald (2)Jazz drummerNeeds VoteJoe McDonaldWoody Herman And His OrchestraWoody Herman And His Third HerdCharlie Mariano SextetThe Jackson-Harris HerdThe Ray Borden BandNat Pierce ComboCharlie Mariano OctetCharlie Mariano & Nat Pierce Sextet + +3311911Burkhard KräutlerBurkhard Kräutler (3 July 1928 in Poysdorf , Austria) is a classical double-bass player. He was a member of the [a754974] from 1966 to 1993.Needs VoteBurghard KräutlerBurkhardt KrautlerBurkhart KräutlerOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener KammerensembleWiener Oktett + +3311912Franz SöllnerAustrian horn player born in 1945 in Steyr/OÖ. Studied with [a=Erich Pizka] and [a=Josef Veleba].Needs VoteFranz SoellnerOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenBruckner Orchestra LinzWiener KammerensembleDas Philharmonia Hornquartett WienEnsemble "11"The Erich Pizka Memorial Horn Quartett + +3312675Alfred Schmidt (2)Alfred Franz SchmidtGerman conductor, born 1904 in Elberfeld, Germany, died 1939 in Hamburg, Germany due to an accident. He was married to [a12117676]. Franz Alfred Schmidt recorded for Schallplatten-Volksverband, Telefunken and Deutsche Grammophon/Polydor.Needs VoteF. A. SchmidtFranz A. SchmidtFranz Alfr. SchmidtFranz Alfred SchmidtFranz-Alfred SchmidtKapellmeister Alfdred SchmidtKapellmeister Alfred Schmidt + +3313737Nathan BraudeBelgian-Israeli violistNeeds Votehttps://www.facebook.com/nathan.braudeBraude NathanGürzenich-Orchester Kölner PhilharmonikerBrussels PhilharmonicEstonian Festival OrchestraEuropean Camerata + +3313957Junie CobbJunius C. CobbJazz multi-instrumentalist, born c. 1896 in Hot Springs, Arkansas, died c. 1970. +Cobb could play many instruments, but was best on reed instruments and piano. He began as pianist in [a=Johnny Dunn]'s Band as a teenager, then moved from New Orleans to Chicago, where he led his own band at the Club Alvadere in 1920 and 1921. He played banjo with [a=King Oliver] and with [a=Jimmie Noone], and also recorded as a leader on clarinet, alto and tenor sax with Junie Cobb's Hometown Band. His brother [a=Jimmy Cobb (2)] often played cornet in his bands. He backed vocalist [a=Annabelle Calhoun] throughout the 1930s and 1940s, on many club and recording dates. He retired from full time playing in 1955, but kept playing gigs until 1967.Needs Votehttp://www.redhotjazz.com/cobb.htmlhttp://www.museumstuff.com/learn/topics/Junie_Cobbhttps://adp.library.ucsb.edu/names/107254C. CobbCobbCobbsEugene C. "Junie" CobbJ. CobbJ.C. CobbJCJunee CobbJunie (E.C.) CobbJunie C. CobbJimmie Noone's Apex Club OrchestraLovie Austin's Blues SerenadersParham-Pickett Apollo SyncopatorsJimmy Bertrand's Washboard WizardsJunie Cobb's Hometown BandJunie C. Cobb And His Grains Of CornE. C. Cobb And His Corn-EatersJunie C. Cobb And His New Hometown BandWindy Rhythm KingsState Street Stompers + +3313994Madison VaughanCredited as trombone player.Needs VoteBenny Carter And His Orchestra + +3314214Allen FieldsNeeds VoteAllan FieldsCharlie Spivak And His OrchestraBoyd Raeburn And His Orchestra + +3314444Anne Søe HansenViolin playerNeeds VoteAnne Söe HansenAnne Søe IwanNieuw Sinfonietta Amsterdam + +3314547Franz HoletschekFranz Holetschek (26 December 1911 - 21 November 1990) was an Austrian harpsichordist, pianist and piano accompanist.Needs VoteF. HoletschekFranz HolletschekHoletschekProf. F. HoletschekProf. Franz HoletschekProf. HolletschekSolistenensemble Der Wiener Staatsoper + +3316294Garry Clarke (2)Classical violinist, originally from Britain, currently a member of Chicago-based period instrument orchestra The Baroque Band.Needs Votehttp://www.baroqueband.org/meet-the-baroque-band/artistic-director/Garry ClarkGary ClarkeGary CllarkeLes Arts FlorissantsThe Academy Of Ancient MusicHanover BandEx Cathedra Baroque OrchestraL'Ensemble Portique + +3316356Bernd SchoberGerman oboist, born 5 March 1965.Needs VoteStaatskapelle DresdenOrchester der Bayreuther FestspieleVirtuosi SaxoniaeHändelfestspielorchester HalleLeipziger Bach-CollegiumBläserquintett Der Staatskapelle Dresden + +3317474Otto A. GraefOtto A. Graef (6 April 1901 - 24 April 1975) was a German pianist, piano accompanist and piano teacher.Needs VoteO. A. GraefOtto GraefOtto A. GraetOtto GraefProfessor Otto A. Graef + +3318968Miranda Davis (2)English violistNeeds VoteLondon Philharmonic OrchestraThe Ceruti Quartet + +3319388Guy CareyJazz trombonistNeeds VoteThe Benson Orchestra Of ChicagoThe Stomp SixThe Bucktown Five + +3321005Christoph BachhuberGerman flutist, born 1970 in Munich, Germany.CorrectBayerisches StaatsorchesterBundesjugendorchester + +3321104Donald MontanaroDonald Montanaro (1933 - 30 November 2016) was an American clarinetist. He was married to [a4419071].Needs VoteThe Philadelphia OrchestraThe Philadelphia Chamber Ensemble + +3321105Marcel FaragoAmerican cellist and composer, born 1924 in Romania.CorrectThe Philadelphia Orchestra + +3321715Horst TitscherGerman violinist.CorrectStaatskapelle DresdenUlbrich-Quartett + +3322573Dagmar StiehlerBerlin-based viola playerNeeds VoteBerliner Symphoniker + +3322580Christiane BuchenauClassical violist.Needs VoteBerliner Symphoniker + +3326145Karol LipińskiKarol Józef LipińskiBorn October 30, 1790 in [url=https://pl.wikipedia.org/wiki/Radzyń_Podlaski]Radzyń[/url], died December 16, 1861 in [url=https://pl.wikipedia.org/wiki/Urlów]Urłów[/url]. Polish violinist, composer, conductor and pedagogue.Needs VoteK. LipinskyK. LipińskiKarol J. LipińskiKarol Josef LipinskiKarol Józef LipińskiKarol LipinskiLipinskiLipińskiК. ЛипинскийК. ЛипиньскийStaatskapelle Dresden + +3326634Diane FarrellAmerican cellist, born in 1959.Needs VoteSan Francisco Symphony + +3327373Quinto MaganiniQuinto Ernesto MaganiniAmerican flute player, conductor and composer, born 30 November 1897 in Fairfield, California and died 10 March 1974 in Greenwich, Connecticut.Needs VoteMaganiniNew York PhilharmonicSan Francisco Symphony + +3329747Kenneth Cooper (2)British contrabassoonist and composer.Needs VoteKen CooperEnglish Chamber Orchestra + +3329968Tommy MortonNeeds VoteMortonTom MortonBob MerwinOriginal Indiana FiveTom Morton's OrchestraTommy Morton's Grangers + +3330831Elida PaliItalian classical cellist, active in recordings since 2001. Recently (2019) playing in a string trio with [a=Dezi Herber] (viola) and [a=Lorenzo Fuoco] (violin).CorrectOversea OrchestraOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale Fiorentino + +3330891Isabelle Van GinnekenClassical violinist, Premier prix de violon du Conservatoire National Supérieur de Musique de Paris in 1980, based in Montpellier.Needs VoteIsabelle VanginnekenOrchestre Philharmonique De StrasbourgOrchestre National De Montpellier + +3331331Mathias LopezDouble bass player.Needs VoteOrchestre De ParisEstonian Festival OrchestraMathieu Névéol & Nomad Lib' + +3331629Levi-Danel MägilaClassical cellistNeeds VoteLevi-Danel MagilaEstonian National Symphony OrchestraTallinna KeelpillikvartettEnsemble U:C-JAM (2) + +3331632Merje RoomereClassical violinistNeeds VoteEstonian National Symphony OrchestraEnsemble U: + +3332853Christoph WynekenGerman conductor and violinist, born 1941 in Berlin.Needs VoteBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinRadio-Philharmonie Hannover Des NDRLandesjugendorchester Baden-Württemberg + +3332985John EvansonBritish bass vocalistNeeds VoteLondon Voices + +3333462Nikolai AlexeyevНиколай Геннадиевич АлексеевNikolai Alekseev (born May 1, 1956, Leningrad) is a Soviet and Russian conductor, People's Artist of the Russian Federation (2007). +Since 2000 he has been one of the conductors of the Honored Collective of Russia of the Academic Symphony Orchestra of the St. Petersburg Philharmonic = [a1065788] (under the direction of [a555458]). +In the 2002/2003 season he was also the principal guest conductor of the [l347605]. +Since January 2022, he has been Principal Conductor of the [a1065788] (he replaced [a555458] in this post).Needs Votehttps://ru.wikipedia.org/wiki/%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B5%D0%B5%D0%B2,_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B9_%D0%93%D0%B5%D0%BD%D0%BD%D0%B0%D0%B4%D0%B8%D0%B5%D0%B2%D0%B8%D1%87https://www.philharmonia.spb.ru/persons/biography/3715/https://newsmuz.com/news/classic/kamernyy-orkestr-sankt-peterburgskoy-filarmonii-udivil-vseh-na-festivale-yuriyaAlexeevNicolai AlexeievNicolaï AlexeievNikolai AlekseevNikolai AlekseyevNikolai AlexeevNikolaj AleksejevNikolaj AlexejewNikolay AlexeievSt. Petersburg Philharmonic OrchestraУльяновский Академический Симфонический ОркестрКамерный Оркестр Ульяновской ФилармонииКамерный Оркестр Санкт-Петербургской Филармонии + +3335343Peter Christoph HänselGerman violist.Needs VoteChristoph HänselStaatskapelle DresdenBamberger SymphonikerWührer-OktettWührer-Streich-Sextett + +3335344Lajos KraxnerClassical violinist.Needs VoteKajos KraxnerBamberger SymphonikerWührer-OktettWührer-QuartettWührer-Streich-Sextett + +3335453Zdzisław StolarczykClassical trombonistNeeds VoteStolarczyk ZdzisławPolish National Radio Symphony Orchestra + +3335564George EskdaleGeorge Salisbury EskdaleBritish versatile and influential trumpeter & cornetist, and teacher. Born 21 June 1897 in Tynemouth, North East, England, UK - Died 20 January 1960 in London, England, UK. +His career included being a member of bands of many styles including jazz, brass band, military band, dance band and classical. Best known as Principal Trumpet for the [a=London Symphony Orchestra] from 1933 to 1958. +After World War I, he played in the [a=Savoy Havana Band], in which he was the only non-American. He then became a member of [a=The New Queen's Hall Orchestra]. In 1930, he joined [a=The New Symphony Orchestra Of London] as Principal Trumpet, moving in 1933 to the London Symphony Orchestra. He taught at the [l680970] from 1937 and the [l527847] from 1938.Needs Votehttps://open.spotify.com/artist/1vudTJH1zB7NqIUo4TXAG3https://music.apple.com/ca/artist/george-eskdale/261829313https://howardsnell.wordpress.com/2013/03/31/hitting-the-high-notes/http://ojtrumpet.net/eskdale/https://adp.library.ucsb.edu/names/359022G. EskdaleGeorges EskdaleLondon Symphony OrchestraThe New Symphony Orchestra Of LondonSavoy Havana BandOrchester Der Wiener StaatsoperThe New Queen's Hall OrchestraBusch Chamber PlayersBert Ralton's Havana BandLondon Symphony Orchestra Chamber EnsembleSydney Baynes And His Orchestra + +3335861Leon LaFellNeeds VoteLeon La FellLeon LafellJohnny Hodges And His OrchestraBilly Kyle And His Swing Club Band + +3337551Torbjörn HultmarkTorbjörn HultmarkSwedish musician, composer and engineer. Plays trumpet, flugelhorn, electronics, soprano trombone. +Husband of [a=Carol Hultmark] with whom they have two children, one of which is [a=Emily Hultmark].Needs Votehttp://www.hultmark.me/https://soundcloud.com/torbjorn-hultmarkTorbgörn HultmarkTorbjorn HultmarkBournemouth SinfoniettaLondon SinfoniettaLondon MusiciGöteborgs BrassensembleBengt Eklund's Baroque Ensemble + +3337828Andrew NethsinghaEnglish choral conductor and organist, born 16 May 1968.Needs Votehttp://www.joh.cam.ac.uk/director-musichttp://www.sjcchoir.co.uk/about/choir/director-musichttps://en.wikipedia.org/wiki/Andrew_Nethsinghahttps://twitter.com/anethsinghaNethsinghaSt. John's College ChoirThe Cathedral Choir ExeterGloucester Cathedral ChoirTruro Cathedral Choir + +3338024Philip HighamBritish cellistNeeds Votehttps://www.philiphigham.com/enScottish Chamber Orchestra + +3338780Red JessupAmerican trombone playerNeeds VoteKeith "Red JessupKeith "Red" JessupKeith JessupBunny Berigan And His BoysChick Bullock & His Levee LoungersIrving Aaronson And His CommandersRed Jessup And His Melody Makers + +3339088Jack RanelliAmerican jazz drummer.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering HerdEckinger / Manning Quintet + +3340237René ForestClassical cellistNeeds VoteForestRene ForestRadio-Symphonie-Orchester BerlinGöbel-Trio Berlin + +3341083Sebastian ZechGerman trumpet player, born 1977 in Hofheim am Taunus, Germany.CorrectStuttgarter Philharmoniker + +3342089Andrej ŽustSlovenian Classical hornistNeeds VoteBerliner PhilharmonikerDie Hornisten Der Berliner PhilharmonikerAriartBerlin Counterpoint + +3342501Susan BierreViola player.Needs VoteRadio KamerorkestXenakis Ensemble + +3343133Margret HummelMargret Hummel is a German violinist and violin teacher. She's married to [a3343135].Needs VoteRadio-Sinfonieorchester StuttgartSeraphim-Quartett + +3343134Matthias NeupertMatthias Neupert was a German cellist. He passed away on May 19, 2021 at the age of 62.Needs VoteStuttgarter PhilharmonikerSeraphim-Quartett + +3343180Robin TicciatiBritish conductor, born 16 April 1983 in London.Needs Votehttps://en.wikipedia.org/wiki/Robin_Ticciatihttps://www.linnrecords.com/artist-robin-ticciatihttps://askonasholt.com/artist/robin-ticciatiScottish Chamber OrchestraGävle Symfoniorkester + +3343277David Jackson (18)Hard house producerNeeds VoteDigital MafiaSteffan DavidSpice Boys (2)Trap TwoHeadrockersDuck & Cover (2)The Sopranos (3)Red City (3) + +3346084Luca ScandaliItalian organist & harpsichordist +LUCA SCANDALI was born in Ancona (1965). + +He graduated in Organ and Organ Composition with top marks under the guidance of Maestro Patrizia Tarducci and in Harpsichord, again with top marks, at the “G. Rossini” in Pesaro where he subsequently obtained a diploma in composition under the guidance of Maestro [a1825314]. Of great importance for his artistic training were the lessons with the masters [a836665], [a1823637], [a1777234] and [a835006]. +He dedicates himself to the in-depth study of the problems inherent to the performance practice of Renaissance, Baroque and Romantic period music also through the study of treatises and instruments of the time. + +He won the first edition of the “F. Barocci” for young organists, established in Ancona in 1986. In 1992 he was awarded the 3rd prize at the 1st International Organ Competition "Città di Milano", and in 1994 the 4th prize at the 11th International Organ Competition of Brugge (Belgium). In 1998 he won first prize at the prestigious 12th “Paul Hofhaimer” International Organ Competition in Innsbruck (Austria), awarded only four times in its forty-year history.Needs Votehttp://www.lucascandali.itL. ScandaliVenice Baroque OrchestraEnsemble La Moderna PratticaEnsemble Musica Prattica + +3347406Chamber Ensemble Of The Bamberg Symphony OrchestraNeeds VoteBamberger Chamber OrchestraChamber Music Ensemble Of The Bamberg SymphonyKammermusikvereinigung Der Bamberger SymphonikerBamberger Symphoniker + +3347944Erich BrockhausBass vocalistCorrectRIAS-Kammerchor + +3348123Orchestre Du Théâtre National De L'Opéra-ComiqueOrchestra based in the Théatre de l'Opéra Comique (also known as Salle Favart) in Paris. +Active until 1971. +List of conductors include: François Rühlmann, André Messager, Albert Wolff, Maurice Frigara, Eugène Bigot, André Cluytens (1946-1953), Jésus Etcheverry (1957-1972), Jean Fournet, Jean-Claude Hartemann. +For the Chorus, please use [a1905793] + +> [b]Not to be confused with [a852709] with ANV "Orchestre Du Théâtre National De L'Opéra" [/b]Needs Votehttps://www.artlyriquefr.fr/dicos/Orchestre.htmlAnd ChorusArtiste, Chœurs Et Orchestre Du Théâtre National De L'Opéra-ComiqueArtistes Et Orchestre Du Théâtre National De L'opéra-ComiqueArtistes, ChœursChoeurs Et Orchestre Du Théâtre National De L'Opéra-ComiqueChoeurs et Orchestre Du Théâtre National De L'Opéra-ComiqueChorus And Orchestra Of The Opéra-ComiqueChorus And Orchestra Of The Théâtre National De L'Opéra-ComiqueChorus and Orchestra of the Opéra-ComiqueChœurs Et Orchestre Du Théâtre National De L'Opéra-ComiqueGrand Orch. De L'Op.-ComiqueGrand Orch. De L'Opéra-ComiqueGrand Orchestre De L'Opéra ComiqueGrand Orchestre De L'opéra ComiqueGrand Orchestre SymphoniqueGrand Orchestre de l'Opéra-ComiqueGroße Symphonie-Orchester der Komischen Oper, ParisGroßes Symphonie-Orchester Der Komischen Oper, ParisInstrumentistes De L'Opéra-ComiqueL'Opera Comique De Paris OrchestraL'Opèra-ComiqueL'Opéra - Comique OrchestraL'Opéra ComiqueL'Opéra-Comique Orchestra, ParisL'Orchestre De L'Opera ComiqueL'Orchestre De L'Opera Comique, ParisL'Orchestre De L'Opéra-ComiqueL'Orchestre De L'Opéra-Comique, ParisL'Orchestre De La Theatre De L'OpéraL'Orchestre Du Theatre National De L'OperaL'Orchestre Du Théâtre National De L'OpéraMusicisti Dell'Opera Di ParigiNational Theatre Of ParisNational Theatre OrchestraOpera-Comique OrchestraOpéra Comique De ParisOpéra Comique OrchestraOpéra-Comique OrchestraOpéra-Comique, ParisOrch. D. Opéra-Comique, ParisOrch. Opéra-ComiqueOrch. Symphonique RuhlmannOrchester Der Komischen Oper, ParisOrchester Der Opéra Comique, ParisOrchester Der Théatre National de L'Opéra-ComiqueOrchester der Komischen Oper, ParisOrchester der Opéra Comique ParisOrchester der Opéra Comique, ParisOrchestraOrchestra And Chorus Of The Théâtre National De L'Opéra-ComiqueOrchestra And Chorus Of The Théâtre National De L'Opéra.ComiqueOrchestra Del Teatro Nazionale Dell'Opera Di ParigiOrchestra Dell'Opéra-ComiqueOrchestra Of L'Opera ComiqueOrchestra Of L'Opera-Comique, ParisOrchestra Of L'Opéra-Comique De ParisOrchestra Of The L'Opéra-Comique, ParisOrchestra Of The Opera Comique ParisOrchestra Of The Opera Comique, ParisOrchestra Of The Opera-Comique, ParisOrchestra Of The Opéra Comique, ParisOrchestra Of The Opéra-Comique De ParisOrchestra Of The Opéra-Comique, ParisOrchestra Of The Paris OperaOrchestra Of The Paris OpéraOrchestra Of The Paris Opéra-ComiqueOrchestra Of The Theatra De L'Opera-Comique, ParisOrchestra Of The Theatre L'Opera-ComiqueOrchestra Of The Theatre National De L'Opera ComiqueOrchestra Of The Theatre National De L'Opéra-ComiqueOrchestra Of The Theatre National L'Opera De ParisOrchestra Of The Theatre National de L'Opera-Comique, ParisOrchestra Of The Theatre National de la Opera ComiqueOrchestra Of The Theatre Opéra-ComiqueOrchestra Of The Théatre National De L'Opera-Comique, ParisOrchestra Of The Théatre National De L'OpéraOrchestra Of The Théatre National De L'Opéra-ComiqueOrchestra Of The Théâtre National De L'Opera-ComiqueOrchestra Of The Théâtre National De L'OpéraOrchestra Of The Théâtre National De L'Opéra ComiqueOrchestra Of The Théâtre National De L'Opéra Comique De ParisOrchestra Of The Théâtre National De L'Opéra-ComiqOrchestra Of The Théâtre National De L'Opéra-ComiqueOrchestra Of The Théâtre National De L'Opéra-Comique, ParisOrchestra Of the Theatre National De L'Opera-Comique, ParisOrchestra del Teatro Nazionale dell'Opéra-ComiqueOrchestra of The Theatre National de L'Opera-Comique, ParisOrchestra of the Opéra-Comique, ParisOrchestra, ParisOrchestreOrchestre De L'Op,-ComiqueOrchestre De L'Opera ComiqueOrchestre De L'Opera-ComiqueOrchestre De L'Opéra ComiqueOrchestre De L'Opéra De ParisOrchestre De L'Opéra-ComiqueOrchestre De L'opéra ComiqueOrchestre De l'Opéra-ComiqueOrchestre De l’Opera-ComiqueOrchestre Du Th. National De L'Op. Com.Orchestre Du Theater National De L'Opéra-ComiqueOrchestre Du Theatre National De L'OperaOrchestre Du Theatre National De L'Opera - Comique ParisOrchestre Du Theatre National De L'Opera ComiqueOrchestre Du Theatre National De L'Opera ParisOrchestre Du Theatre National De L'Opera-ComiqueOrchestre Du Theatre National De L'Opéra - Comique ParisOrchestre Du Théatre National De L'OpéraOrchestre Du Théatre National De L'Opéra ComiqueOrchestre Du Théatre National De L'Opéra de ParisOrchestre Du Théatre National De L'Opéra-ComiqueOrchestre Du Théâtre De L'Opéra ComiqueOrchestre Du Théâtre De L'Opéra-ComiqueOrchestre Du Théâtre National De L'Opera-Comique, ParisOrchestre Du Théâtre National De L'OpéraOrchestre Du Théâtre National De L'Opéra ComiqueOrchestre Du Théâtre National De L'Opéra De ParisOrchestre Du Théâtre National De L'Opéra ParisOrchestre Du Théâtre National De L'Opéra, ParisOrchestre Du Théâtre National De L'Opéra-Com.Orchestre Du Théâtre National De L'Opéra-Comique De ParisOrchestre Du Théâtre National De L'Opéra-Comique ParisOrchestre Du Théâtre National De L'Opéra-Comique de Paris | Alberto EredeOrchestre Du Théâtre National De L'Opéra-Comique de Paris | André CluytensOrchestre Du Théâtre National De L'Opéra-Comique de Paris | Louis ForestierOrchestre Du Théâtre National De L'Opéra-Comique de Paris | Louis FourestierOrchestre Du Théâtre National De L'Opéra-Comique, ParisOrchestre Du Théâtre National De ParisOrchestre Du Théâtre National De l'Opéra Comique De ParisOrchestre Du Théâtre National De l'Opéra-ComiqueOrchestre Du Théâtre National de L'Opéra-ComiqueOrchestre Du Théätre National De L'OpéraOrchestre Et Choeurs Du Théâtre National De L'Opéra-ComiqueOrchestre National De L'Opera ComiqueOrchestre National De L'Opéra ComiqueOrchestre National De L'Opéra De ParisOrchestre National De L'Opéra-ComiqueOrchestre SymphoniqueOrchestre de L'OpéraOrchestre de L'opéra-ComiqueOrchestre de l'Opera-ComiqueOrchestre de l'Opéra ComiqueOrchestre de l'Opéra-ComiqueOrchestre du Theatre National de l'Opera de ParisOrchestre du Théâtre National de L'Opéra de ParisOrchestre du Théâtre National de L'Opéra-ComiqueOrchestre du Théâtre National de l'Opéra de ParisOrchestre du Théâtre National de l'Opéra-ComiqueOrchestre du Théâtre National de l’Opéra de ParisOrchestré Du Théâtre De L'Opéra-ComiqueOrkest Van L'Opéra ComiqueOrquesta Del Teatro Nacional De La Opera CómicaOrquesta Del Teatro Nacional De La Opera, ParisOrquesta Del Teatro Nacional De La Ópera Cómica De ParísOrquesta Del Teatro Nacional de la Opera Cómica de ParísOrquesta Teatro De ParisOrquestra de Teatro Nacional De Opera-ComiqueParis OperaParis Opera - Comique OrchestraParis Opera Comique OrchestraParis Opera GroupParis Opera Orchestra And ChorusParis Opera-ComiqueParis Opera-Comique OrchestraParis Opéra - Comique OrchestraParis Opéra Comique OrchestraParis Opéra- Comique OrchestraParis Opéra-Comique OrchestraSolistes de L'Orchestre Du Théâtre National De L'OpéraThe Orchestra Of The Opera Comique, ParisThe Orchestra Of The Opéra-Comique, ParisThe Orchestra Of The Paris OperaThe Paris Opera-Comique OrchestraTheatre National de L'Opéra-ComiqueTheatre National de L'opera-comiqThéâtre National De L'Opéra-ComiqueThéâtre National De L'Opéra-Comique OrchestraThéâtre National de L'Opéra-ComiqueThéâtre National de l'OperaThéâtre National de l'Opéra-Comiqueパリ・オペラ・コミック管弦楽団Paul HadjajeMaurice AndréMaxence LarrieuPierre PierlotAndré CluytensAlbert WolffJean FournetJésus EtcheverryElie CohenFrançois RuhlmannMarcel DarrieuxGustave CloëzGeorges GilletPierre CruchonLouis Masson + +3349702Johannes MartinJohannes Martin (born 1943) is a German musician, teacher, producer and founder of [l1067175]. He was a member of the [a931425] from 1965 to 1970. +Needs VoteMünchener Bach-Chor + +3350010Kammerakademie PotsdamGerman classical orchestraNeeds Votehttps://kammerakademie-potsdam.deFriedemann WerzlauAnnette GeigerSusanne ZapfLaura RajanenChristoph HampeAnne HofmannMeesun HongAntonello ManacordaPeter RainerTatjana ErlerAnna CareweMatthias LeupoldDiego CantalupiMichiko IiyoshiYuki KasaiEmma Black (2)Markus KruscheChristoph KnittKristina LungRalph GünthnerJan-Peter KuschelChristiane PlathTobias LampelzammerJan Böttcher (2)Isabel StegnerChristoph StarkeBettina LangeThomas Kretschmer (2)Judith Wolf (2)Renate LoockMatan DaganSilvia CaredduUlrike HofmannDavide Pozzi (2)Giovanni de AngeliJenny AnschelNathan PlanteJulita Forck + +3351807Henrik SchaeferGerman violist and conductor, born 27 April 1968 in Bochum, Germany. He is living in Stockholm, Sweden. + +He has been chief conductor at the [l3482284] and since 2013 is the musical director of the [a1328255]. He is the musical director/chief conductor of [l354442] in Stockholm, Sweden. He is also artistically responsible for the master's program in symphonic orchestral playing at the College of Stage and Music at the University of Gothenburg. +Needs Votehttps://www.henrikschaefer.com/https://sv.wikipedia.org/wiki/Henrik_Schaeferhttps://en.wikipedia.org/wiki/Henrik_SchaeferH. SchaeferHenri SchäferBerliner PhilharmonikerGöteborgsOperans OrkesterFolkoperans OrkesterWermland OperaApos Quartett Berlin + +3351947Benny Goodman's BoysNeeds Major ChangesBennie Goodman's BoysBenny Goodman & His BoysBenny Goodman And His BoysBenny Goodman and His BoysHis BoysWithBenny GoodmanBob ConselmanDick Morgan (7) + +3353083John Youngman (2)Jazz trombonist.Needs VoteJ. YoungmanTommy Dorsey And His Orchestra + +3353344Soledad CardosoSpanish-Argentinean classical soprano vocalistNeeds Votehttp://soledadcardoso.esCardosoLes Arts FlorissantsAnima EternaDe Nederlandse BachverenigingAl Ayre EspañolForma AntiqvaEl Concierto EspañolLos Músicos De Su AltezaMúsica Temprana + +3355279John HahessyFormer soprano (treble) vocalist. Today Alto & Tenor vocalist.Needs VoteJohn ElwesWestminster Cathedral ChoirThe Wilbye Consort + +3355449Martin LöhrClassical cello player, born 1967 in Hamburg, Germany.Needs VoteBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerTrio Jean PaulPhilharmonisches Streichsextett Berlin + +3355455Martin Heinze (2)German double bassist.Needs VoteZeitkratzerBerliner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksKlangArt Berlin + +3355615Flip Phillips QuartetNeeds Major ChangesThe Flip Phillips QuartetThe Flip Phillips' QuartetBuddy RichRay BrownHank JonesFlip Phillips + +3356167Heinz OrtlebHeinz Ortleb (11 March 1932 in Berlin, Germany - 6 October 2023) was a German classical violinist.Needs VoteBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinWestphal-Quartett + +3358321Julien Weber (3)French classical oboist.Needs VoteOrchestre De L'Opéra De Lyon + +3359132Jack ReadTrombonistNeeds VoteJack ReidElmer Schoebel And His Friars Society Orchestra + +3359133Charlie BargerJazz Banjo playerNeeds VoteElmer Schoebel And His Friars Society Orchestra + +3359786Jean SemperJean Semper is a French violist and violinist. +Needs VoteOrchestre Des Concerts LamoureuxBasler Sinfonie-OrchesterEnsemble Fauré + +3359844Gesine NowakowskiBerlin-based German soprano vocalist.Needs Votehttp://www.nowakowski.de/Rundfunkchor BerlinEnsemble X (2)Die Feinsliebchen + +3360629Ed MillisNeeds VoteC. E. MillisC. E. Millis, Jr.E. MillisE. Millis, Jr.E. MillsEdward MillisMillisPrairie Madness + +3361915Fergus ThirlwellTreble (Boy Soprano) vocalistNeeds VoteFergus Thirwell + +3361916Cellos Of The Royal Philharmonic OrchestraNeeds Major Changes8 Cellos From Royal Philharmonic OrchestraCellos Of Royal Philharmonic OrchestraEight Cellos Of The Royal Philharmonic OrchestraEnsemble De Violoncelles Du Royal Philharmonic OrchestraRoyal Philharmonic CellosRoyal Philharmonic Orchestra (Eight Cellos)The Cellos Of The Royal Philharmonic Orchestra + +3362715Giorgio ParonuzziHarpsichordist +Giorgio Paronuzzi continue, after completion of studies of piano, harpsichord and composition as well as the study of philosophy his education in the field of baroque performance practice at the Schola Cantorum in Basle.Needs VoteParonuzziKammerorchester BaselVenice Baroque OrchestraAlessandro Stradella ConsortLe Cercle De L'HarmonieSwiss Baroque SoloistsCappella Gabetta + +3364521Gianluca BaruffaClassical violinistNeeds VoteOrchestra Di Padova E Del VenetoI Solisti Veneti + +3365573Lucija KrišeljSlovenian violinist and violin teacher.Needs Votehttps://lucijakriselj.ch/Rara RožaTonhalle-Orchester Zürich + +3365793Jocelyn Davis-BeckAmerican cellistNeeds Votehttps://www.facebook.com/jocelyn.davisbeckChicago Symphony Orchestra + +3366388Álvaro PérezSpanish saxophone player born in Miranda de Ebro and based in Madrid since 2004. With classical studies Álvaro is focused in jazz, avant-garde and experimental style. + +Music studies in Conservatorio de Vitoria also with Perico Sambeat, David Binney, Miguel Zenon, Gary Bartz, Winton Marsalis, Bob Malach, Bobby Martínez or Víctor De Diego. +Teacher at Escuela de Música Creativa de Madrid, la Escuela de Música de Tres Cantos and other schools in Vitoria, Miranda de Ebro and Amurrio. +Played in Orquesta Sinfónica de Euskadi y la Orquesta Sinfónica de Bilbao and as soloist in [a2098343]. +Played jazz in: [a1988279] Big Band, EMC Big Band, Orquesta Nacional de Jazz, Swingfonic Orquestra, Duka Band, TJO +Pop/Rock: Potato, Luz Casal, Marta Sánchez, Tennesse, Guateque All Stars, Muchachito, Celofunk, Ortophonk, etc. +Jorge Pardo, Dan Rochlis, Walter Beltrami, George Garzone, Bob Sands, Bobby Martínez, Crhis Kase, Federico Lechner, Tony Heimer, Jamie Davis, Nicole Henry, Pedro Ruy Blas, Laika Fatién, German Kucich, Israel Sandoval, Toño Miguel, Miguel Benito, Ander García, Cherril Walters, Borja Barrueta, Norman Hogue, Daniel García, Sebastián Chames Quartet, Walter Beltrami Exit Quartet or Marcos Collado Quartet. +Recent years: Solo project as "Álvaro Pérez Trío", member of Zöbik-3, Dead Capo, Gran Masa, Paraphonic 3. +Needs Votehttps://www.facebook.com/alvaro.perez.9843http://musicacreativa.com/alvaro-perez/Alvaro PerezRabo (3)Orquesta Sinfónica de RTVEDead CapoGran MasaOrquesta Sinfónica de EuskadiOrquesta Sinfonica De BilbaoZöbik-3 + +3368386Johnny Hicks (2)Tenor sax player.Needs VoteTab Smith Orchestra + +3368917Burt JohnsonCredited as trombone player.Needs VoteBert JohnsonJohnsonCharlie Barnet And His Orchestra + +3368949Salvatore DeleggeJazz clarinetist.Needs VoteSlvatore DeleggeBill Harris & His New Music + +3368950Ted Wheeler (3)(Jazz) flute playerNeeds VoteBill Harris & His New Music + +3369630Pierre JosephsBass PlayerNeeds VoteJosephsPierre JosephStan Kenton And His Orchestra + +3370350Edgar WollgandtNeeds VoteGewandhaus-Quartett Leipzig + +3370354Karl WolschkeNeeds VoteGewandhaus-Quartett Leipzig + +3370357Carl HerrmannNeeds VoteGewandhaus-Quartett Leipzig + +3370688Antti TuokkoNeeds Major ChangesA. Tuokko + +3372064Gabriel BenloloFrench percussionistNeeds VoteOrchestre Philharmonique De Radio France + +3372352Juan GorostidiJuan Gorostidi GarmendiaSpanish chorus master from San Sebastian - Donostia (1900-1968). Long term associate to [a1169517]Needs Votehttp://www.euskomedia.org/aunamendi/67708Orfeón Donostiarra + +3372669Stéphan DudermelClassical violinist.Needs VoteStephan DudermelLe Concert SpirituelLa RêveuseEnsemble Stravaganza + +3372889Hermine GagnéCanadian violinist.Needs VoteChicago Symphony Orchestra + +3372898Angélique DuguayCanadian classical violinistCorrectLes Violons du Roy + +3373207Gunvor SihmDanis classical violinist, born in 1986.Needs VoteNightingale String QuartetDR SymfoniOrkestret + +3373834Bob Newman (3)American jazz tenor saxophonist.Needs VoteRobert NewmanWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3374205Georges BarthelClassical flautist.Needs VoteLes Talens LyriquesRicercar ConsortCollegium 1704AusoniaLe Cercle De L'HarmonieGli Angeli GenèveLa CacciaEnsemble DiderotEnsemble Stravaganza + +3374631Bill Matthews (5)Trombonist, originally a drummer, from New Orleans, La., U.S.A. Born May 9, 1899 in New Orleans, died on June 3, 1964. + +Brothers: Nathaniel “Bebe” Matthews and Ramos “Brown Happy” Matthews, notable jazz and brass band drummers. Started on drums, changed to trombone. +Needs Votehttp://www.knowlouisiana.org/entry/bill-matthewsBill MathewsWM. Bill MatthewsWilliam "Bill" MatthewsWilliam MathewWilliam MathewsWilliam MatthewsWm. Bill MatthewsOriginal Tuxedo Jazz OrchestraThe Paddock Jazz BandBill Matthews & His New Orleans Dixieland BandRene Hall SextetteBill Matthews And His New Orleans Ragtime Band + +3374964Blai JustoClassical violinistNeeds VoteIl FondamentoLa Petite BandeRicercar ConsortIl GardellinoCurrendeLes Agrémens + +3375709Fons VerspaandonkDutch hornist.Needs VoteConcertgebouworkestEbony BandHet Brabants OrkestRadio Filharmonisch OrkestFarkas Quintet + +3376036Nicola GrassiItalian classical violinist, active in recordings from 1994.CorrectOrchestra Del Maggio Musicale Fiorentino + +3376282Kreeta HaapasaloKreeta Haapasalo née JärviläLegendary Finnish kantele player and composer. Born on November 13, 1813 in Kaustinen, Finland and died on March 29, 1893 in Jyväskylä, Finland.Needs VoteG. HaapasaloGreta HaapasaloHaapasaloK. Haapasalo + +3377660Walther SchulzWalther Schulz (1944 – 9 July 2025) was an Austrian cellist. +He was first solo cellist with the Vienna Symphonic Orchestra ([a=Wiener Symphoniker]). + + +Needs VoteSchulzWalter SchulzVienna Symphonic Orchestra ProjectWiener SymphonikerTonkünstler OrchestraHaydn-Trio, Wien + +3378091Jeffrey ThompsonClassical tenor, Jeffrey Thompson, studied at the Cincinnati Conservatory of Music under William McGrawNeeds Votehttps://www.facebook.com/jeffrey.thompson.5836Les Arts FlorissantsRicercar ConsortLe Poème HarmoniqueLe Parnasse FrançaisLa RéveuseFaenzaLe Concert Étranger + +3378355Dave CooneAmerican jazz guitaristCorrectHarry James And His Orchestra + +3378377Ed PrippsTenor SaxophoneNeeds VoteE. PrippsEddie PrippsPrippsCharlie Barnet And His Orchestra + +3378380Joe MeisnerAlto saxophonistNeeds VoteJoe MeinsnerJoe MeissnerCharlie Barnet And His Orchestra + +3378382Harold HahnAmerican jazz drummerNeeds VoteHal HahnCharlie Barnet And His Orchestra + +3378387Phil WashburneAmerican trombonistCorrectBob Crosby And His Orchestra + +3379824Alexander BrigerAlexander Briger is an Australian conductor. Needs Votehttps://alexanderbriger.com/Alex Briger + +3379946Jaroslav KroftClassical violistCorrectThe Czech Philharmonic OrchestraCzech Philharmonic Quartet + +3380118Gilbert Carpentier (2)Gilbert Carpentier (March 20, 1920 - September 18, 2000) is a french producer of very popular TV shows in France, from the 1950s to the 1990s. +He was the husband of [a=Maritie Carpentier].Needs VoteMaritie Et Gilbert Carpentier + +3380450Werner SteinmetzAustrian classical trumpeter, composer and conductor.Needs Votehttp://www.wernersteinmetz.com/cms/Bruckner Orchestra LinzBläserkreis Der Hochschule Für Musik Und Darstellende Kunst Graz Und Der Expositur In OberschützenPeter Furtner & EnsembleJohann Strauß Ensemble Austria + +3380560Gilles CottinFrench classical flautistCorrectOrchestre De L'Opéra De Lyon + +3381418Maritie Et Gilbert CarpentierMarried couple, artistic producers of popular variety TV and radio shows in France and many French-speaking countries from the 1950s to the 1990s. +Related to [l2883839] and [l4062762] TV shows.Needs Votehttps://fr.wikipedia.org/wiki/Maritie_et_Gilbert_CarpentierMaritie & Gilbert CarpentierMaritie CarpentierGilbert Carpentier (2) + +3381920Ivonne FuchsClassical contralto vocalist born in Madgeburg, GermanyCorrectCollegium Vocale + +3381921Rafael PalaciosClassical oboe playerCorrectCollegium Vocale + +3382342Toivo PyörreToivo Pyörre (s. 1903 - k. 1975) toimi Lappeenrannan Työväenyhdistyksen musiikkiryhmien johtajana vuosina 1950-1973. Tasavallan presidentti Urho Kekkonen myönsi Pyörteelle Director Musices -arvonimen vuonna 1973.Needs VoteT. Pyörre + +3383212Holger LandmannClassical oboistNeeds VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +3383830Jonathan SpicherThe Swiss tenor, Jonathan Spicher, began singing as a child under the instruction of Marie-Françoise Schuwey at Fribourg Music Conservatory as a soprano and later as a tenor. +Needs VoteChoeur de Chambre de NamurEnsemble Vocal De LausanneChor Der J.S. Bach Stiftung + +3383836Simon SavoyClassical alto vocalistNeeds VoteCappella AmsterdamEnsemble Vocal De LausanneChor Der J.S. Bach Stiftung + +3383880Krzysztof MalickiClassical flautistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +3383881Aleksandra RojekAleksandra Rojek-DudaClassical oboist.Needs Votehttps://cdaccord.com.pl/artysci/aleksandra-rojek-duda/Orkiestra Symfoniczna Filharmonii Narodowej + +3384372Yuki KoikeClassical violinistNeeds VoteLes Talens LyriquesLe Concert D'AstréeLe Poème HarmoniqueLes Cris de ParisPygmalion + +3384572Louis-Pierre BergeronCanadian classical hornistNeeds VoteLouis Pierre BergeronLouis-Philippe BergeronLes Violons du RoyOrchestre Métropolitain du Grand MontréalNational Arts Centre OrchestraEnsemble CapriceL'Orchestre Symphonique De Trois-RivièresPentaèdreSextet De Cuivres De L'Institut ThoraciqueOrchestre symphonique de la Vallée-du-Haut-Saint-LaurentLes Jacobins + +3385014Werner KauffmannClassical keyboardistNeeds VoteWerner KauffmanCamerata Accademica Hamburg + +3385048Alexandra KidgellClassical soprano vocalist.Needs Votehttps://www.alexandrakidgell.com/The Sixteen + +3385058Mathias SchmutzlerGerman trumpet player, born July 23, 1960 in Karl-Marx-Stadt, GDR (today Chemnitz, Germany). +Since 1999 he has been the principal trumpet player of the Dresden Staatskapelle. +Needs Votehttp://www.staatskapelle-dresden.de/staatskapelle/orchestermitglieder/anzeige/mw/mathias-schmutzler/Markus SchmutzlerMatthias SchmutzlerSchmutzlerStaatskapelle DresdenDresdner PhilharmonieVirtuosi SaxoniaeKammerorchester Carl Philipp Emanuel BachSemper Brass DresdenTrompetenensemble Mathias SchmutzlerBlechbläserensemble Ludwig GüttlerCamerata Musica + +3385059Egbert EsterlGerman classical clarinetist, born 1957 in Klingenthal, Germany.CorrectEsterlStaatskapelle DresdenDresdner PhilharmonieVirtuosi Saxoniae + +3385269Martijn De Graaf BierbrauwerDutch bass vocalistNeeds VoteMGBMartijn De Graaf-BierbrauwerMartijn de Graaf BierbrauwerCollegium VocaleFrommermann + +3386378Julia HansonBritish violinistCorrectHallé Orchestra + +3386512Pierre TurpinClassical hornistNeeds VoteOrchestre National De L'Opéra De ParisLes Talens LyriquesLes Cuivres Français + +3386514Jonathan OfirClassical violinistNeeds VoteLes Talens Lyriques + +3386740Gordon BraggClassical violinistNeeds VoteEdinburgh String QuartetScottish Chamber Orchestra + +3386806Rosa SegretoItalian classical violinistCorrectEuropa Galante + +3386807Silvia CantatoreClassical violinistNeeds VoteSilvia CantoreEuropa Galante + +3387201Jerry Collins (2)Jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJazz In The Classroom + +3387748Duncan WhyteBritish jazz trumpeterNeeds VoteDuncan WhiteBenny Carter And His OrchestraBilly Mason And His Orchestra + +3387974Jean DoussardFrench conductor, born 1 July 1928 in Saint-Melaine-sur-Aubance, France.Correct + +3388009Dizzy Gillespie's Cool Jazz StarsNeeds Major ChangesDizzy Gillespie & The Cool Jazz StarsDizzy Gillespie And The Birdland StarsDizzy Gillespie And The Cool Jazz StarsDizzy Gilllespie And The Cool Jazz StarsThe Birdland StarsThe Cool Jazz StarsDizzy GillespieMax RoachAl McKibbonBuddy DeFrancoDon ElliottRay AbramsRonnie Ball + +3388095Alan WoodhouseChorus coachCorrectLes Arts Florissants + +3388096Roselyne Tessier-LemoineSoprano vocalistCorrectLes Arts Florissants + +3388097Anne-Catherine VinayChorus Master assistantCorrectLes Arts Florissants + +3388098Cassandra HarveySoprano vocalistCorrectLes Arts Florissants + +3388099Armand GavriilidèsClassical alto vocalistCorrectArmand GavriilidesArmand GavrilidèsLes Arts Florissants + +3388100Sophie Decaudaveinesoprano vocalistCorrectDecaudaveineLes Arts Florissants + +3388101Michael Loughlin-SmithTenor vocalistCorrectMichaël Loughlin SmithMickael Loughlin-SmithLes Arts Florissants + +3388102Pierre KuzorClassical vocalistCorrectLes Arts Florissants + +3388103Maurizio RossanoTenor vocalistNeeds VoteLes Arts FlorissantsLa Tempête + +3388105Jeanette Wilson-BestSoprano vocalistCorrectJeanette WilsonLes Arts Florissants + +3388323Otto EifertBassoonist.CorrectThe Cleveland Orchestra + +3388886Vasijlka JezovšekClassical soprano vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Jezovsek-Vasiljka.htmhttps://de.linkedin.com/in/vasiljka-jezovsek-b2a3145bVasiljka JezovšekCollegium VocaleSächsisches Vocalensemble + +3389144Jesse RalphAmerican jazz trombonist. He played amongst others with [a239399] in 1940.Needs VoteWoody Herman And His OrchestraThe Band That Plays The Blues + +3389512Cynthia StrotherWith sister [a=Kay Bell] as [a=The Bell Sisters]. +Born October 4, 1935 - died February 17, 2024, aged 88.Needs Votehttps://www.hollywoodreporter.com/news/music-news/cynthia-strother-dead-bell-sisters-1235830678/https://www.imdb.com/name/nm0835119/C. StrotherR. StrotherStrotherStrother CynthiaStrutherCynthia Bell (2)The Bell Sisters + +3389885Paul Klein (9)French horn playerNeeds VoteUlster OrchestraScottish Chamber OrchestraScottish National Jazz Orchestra + +3392013Billy Wood (4)Clarinet player.Needs VoteBill WoodBilly WoodRed Nichols And His Five Pennies + +3393211Peter Paul HoutmortelsClassical tenor vocalistCorrectPeter Paul HourmortelsPeter-Paul HoutmortelsCollegium Vocale + +3393215Patrick LaureisPatrick LaureysClassical flautist & recorder playerNeeds VotePatrick LaureysCollegium VocaleLes Enemis Confus + +3393216Lydia HubertClassical viola playerCorrectCollegium Vocale + +3393588Elisa JoglarClassical cellistNeeds VoteLes Musiciens Du LouvreEnsemble La FeniceOpera FuocoEnsemble europeen William ByrdLes AccentsEnsemble L'Yriade + +3393698Christine SticherClassical double bass player.Needs VoteOrchestra Of The Age Of EnlightenmentL'Orfeo BarockorchesterWeser-RenaissanceThe King's ConsortHarmony Of Nations Baroque OrchestraDunedin ConsortEnsemble MarsyasIrish Baroque OrchestraLa Festa MusicaleGaechinger Cantorey + +3393700Thomas DunfordClassical Lute and Theorbo player born 1988 in France. He founded the ensemble [a=Jupiter (55)]Needs Votehttps://www.thomas-dunford.comLes Arts FlorissantsLes Musiciens De Saint-JulienPygmalionEnsemble A Deux Violes EsgalesArcangeloEnsemble MarsyasLa Sainte Folie FantastiqueEnsemble ClematisLes Musiciens Du ParadisI Gemelli (2)Jupiter (55) + +3394957Franck RatajczykDouble bassist.Needs VoteLes Musiciens Du LouvreLes Paladins + +3395409Ulrich RinderleGerman bassoonist. +Needs VoteOrchester der Bayreuther FestspieleRundfunk-Sinfonieorchester SaarbrückenDeutsche Radio Philharmonie Saarbrücken KaiserslauternMithras Octet + +3395423Vladislav MarkovicClassical violinist.Needs VoteBamberger SymphonikerDas Mozarteum Orchester Salzburg + +3396508Bob Wyatt (2)Keyboard playerNeeds VoteEarl Hines And His Orchestra + +3396586Hannah McLaughlinOboe player.Needs Votehttps://englishconcert.co.uk/artist/hannah-mclaughlin/The SixteenGabrieli PlayersThe King's ConsortLe Cercle De L'HarmonieThe English ConcertRetrospect Ensemble + +3396589Elizabeth McCarthyViolinist.Needs VoteThe Academy Of Ancient MusicThe King's ConsortThe English ConcertRoyal Academy of Music Baroque Orchestra + +3396590Hannah TibellHannah Veronika Elin TibellSwedish classical violinist, born on July 7, 1980. + +She is trained in baroque violin in London. After 10 years there, she moved back to Malmö. She mostly works in the Öresund region, but sometimes she goes and plays with her old colleagues in Great Britain. Hannah has the great honor of playing an Amati brothers violin from 1618 or 1628. (The label inside the violin is so old it's hard to tell if it's a one or a two!).Needs VoteHanna TibellThe SixteenCollegium Musicum 90The King's ConsortAtalanteConcerto CopenhagenClassical OperaVox ScaniensisThe MozartistsHöör Barock + +3398065Uwe KöllerGerman trumpet player and professor for trumpet at the university of performing arts and music in Graz, Austria. He was born 1964 in Neuss, Germany.Needs VoteU. KöllerBerliner Sinfonie OrchesterOrchester Der Deutschen Oper BerlinGerman BrassBrass Band Berlin + +3398067Stephan CürlisGerman timpanist and percussionist, born in 1960 in Berlin, Germany.Needs VoteJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerNDR SinfonieorchesterStaatsorchester BraunschweigNDR Elbphilharmonie Orchester + +3398074Stefan AmbrosiusGerman tubist, born 1976 in Trier, Germany.Needs VoteBayerisches StaatsorchesterJunge Deutsche PhilharmonieGerman BrassOpera Brass + +3398075Florian MetzgerGerman trombonist, born 1974 in Munich, Germany.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleErnst Hutter & Die Egerländer MusikantenSWR Symphonieorchester + +3398501Jan HussSwedish classical percussionistNeeds VoteSveriges Radios SymfoniorkesterSolna BrassNationalmusei Kammarorkester + +3398826Pietro Antonio GiramoItalian composer of the 17th century (ca.1619 - aftrer 1630)CorrectGiramo + +3399265Lorna McGheeScottish-born flutist, based in North America.Needs VoteLorna McGhee ⁴BBC Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsPittsburgh Symphony OrchestraEuropean Soloists EnsembleMobius (7)Trio Verlaine + +3399267Raymond CurfsDutch classical drummer and percussionist.CorrectCurfsBayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen RundfunksMahler Chamber OrchestraLucerne Festival Orchestra + +3399273Jonathan Kelly (3)British oboist and cor anglais player, born 1966 in Petersfield, England.Needs VoteBerliner PhilharmonikerCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music GroupEnsemble Wien-BerlinEuropean Soloists Ensemble + +3399889Harry Forbes (2)Jazz trombonist. Born in Chicago, Illinois, 1913Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/315786/Forbes_Harryhttps://www.allmusic.com/artist/harry-forbes-mn0001280335/creditsMetronome All StarsStan Kenton And His OrchestraIrving Aaronson And His CommandersHenry Halstead And His Orchestra + +3400176Wynn ReevesH. Wynn ReevesClassical violinist. +A founding member and former Sub-Principal Violin of the [a=London Symphony Orchestra] (1904-1931). Also a former member of the [a=London String Quartet] in 1916.Needs VoteWynne ReevesLondon Symphony OrchestraLondon String Quartet + +3400183John WitzmannViolinist. +He is listed as "John Witzemann" in some sources. + +Witzmann was a permanent member of the Victor Symphony Orchestra and was previously, c. 1918, the assistant concertmaster and soloist with The Philadelphia Orchestra.Needs VoteJohn Taylor (70)The Philadelphia OrchestraVictor Symphony OrchestraFlorentine Quartet + +3400185Fred SchraderTrombonist.Needs VoteThe Philadelphia OrchestraVictor Symphony OrchestraVictor Brass Quartet + +3400480Andreas Richter (2)German trombonist.CorrectStuttgarter Philharmoniker + +3401456The Lamin8ersUK Bounce/Hard Trance/Chiptune DJ & producer duo from Basingstoke, England, UK. +Supposedly composed of Jo Ashton & John Notkin, but these names were in fact made up by Wain Johnstone & Alfie Bamford, the real people behind this project. +The Lamin8ers' fame culminated with their one and only appearance at Tidy Weekender 20 (Sunday March 29, 2015), actually only played by Wain Johnstone, because "Alfie kindly said Wain should play it solo because he deserved to get his own set at a weekender (Also Alf isn't a big fan of bounce!)". + +In 2020, duo [a=Re-Lamin8ers] payed tribute by releasing 2 tracks (for free) inspired by The Lamin8ers' productions. + +Contact: lamin8ers@hotmail.co.ukNeeds Votehttp://www.facebook.com/thelamin8ershttp://soundcloud.com/the-lamin8ershttp://www.youtube.com/Lamin8ersLamin8ersLamin8rsThe Lamin8er'sAlf BamfordWain JohnstoneJohn NotkinJo Ashton + +3401762Bob DockstaderNeeds VoteStan Kenton And His Orchestra + +3401763Lorraine RagonNeeds VoteStan Kenton And His Orchestra + +3401910Susie Park (2)American violinistNeeds VoteMinnesota OrchestraEroica Trio + +3402141Bill Harris SeptetNeeds Major ChangesBill Harris And His SeptetBill Harris and His SeptetBilly BauerFlip PhillipsChubby JacksonRalph BurnsPete CandoliBill HarrisAlvin Burroughs + +3402690Johannes TomboeckJohannes TomböckJohannes Tomböck (born 22 December 1983) is an Austrian violinist. A member of the [a754974] since 2007. +He's the son of [a8340543] and the grandson of [a2003566].Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +3402849Kreeta-Maria KentalaFinnish violinist from Kaustinen, who focuses on Baroque, Classical, Romantic classical music as well as folk musicNeeds Votehttps://kreetamariakentala.fi/https://www.facebook.com/viulukentalaKreta Maria KentalaMusica Antiqua KölnBattaliaAkkapelimannit + +3403763David SchmitterTenor saxophonistNeeds VoteArt Blakey & The Jazz Messengers + +3403789Vernon KirkClassical tenor.Needs Votehttp://vernonkirk.com/Rundfunkchor BerlinThe Monteverdi ChoirThe English Concert ChoirBalthasar-Neumann-Chor + +3405434Emmett PerkinsJug band banjoistNeeds VoteEmmet PerkinsDixieland Jug Blowers + +3405809Aloysia FriedmannAloysia Friedmann is an American violinist, violist, founder and artistic director of the [l1611105]. She's the daughter of [a4985315] and [a12466786] and is married to [a1707838].Needs Votehttps://www.aloysiafriedmann.com/Orchestra Of St. Luke'sThe Fairfield Orchestra + +3407713Albert BoesenAlbert Boesen is a German classical violinist.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleBachcollegium StuttgartStuttgarter SolistenSüddeutsche KammersolistenHeilbronner Sinfonie Orchester + +3409132Esther BrazilEsther BrazilAmerican-born English mezzo-soprano vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Brazil-Esther.htmThe Monteverdi ChoirLa Nuova MusicaContrapunctus (2) + +3409135Matthew HowardClassical tenor vocalistNeeds VoteMatt HowardMatthew HowradLondon VoicesTenebrae (10) + +3409529Simon Cox (3)British classical trumpeter, arranger, publisher, and administrator. Born in Cardiff, Wales, UK. +Following studies at [l554469] (2003-2006) and the [l527847] (2006-2007), he spent three years in Finland as Associate Principal Trumpet of the [a=Helsinki Philharmonic Orchestra] (February 2008-August 2011). Founder in April 2012 & artistic director of [a=Septura]. Principal Trumpet with the [a=Aurora Orchestra] since March 2010. Co-founder of [l1585728] in January 2013.Needs Votehttps://www.facebook.com/simon.cox.1614https://twitter.com/JumpinZackhttps://www.linkedin.com/in/simon-cox-7248947b/?originalSubdomain=ukhttps://open.spotify.com/artist/7aJzyPGhSShA8rR3IWa5Bchttps://music.apple.com/us/artist/simon-cox/212190894https://septura.org/about-us/players/simon-cox/https://www.bbc.co.uk/programmes/profiles/2G94vVfnqVRwgF3dBWNXVfh/simon-coxLondon Symphony OrchestraHelsinki Philharmonic OrchestraAurora OrchestraSepturaThe Symphonic Brass Of London + +3409946Jaroslav ObodaJaroslav Oboda was a Czech classical viol and contrabass player. He passed away on September 16, 2020 at the age of 84.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerClemencic Consort + +3410010Wanzhen LiChinese classical violinist.Needs VoteW. LiNational Symphony Orchestra + +3411605Harold WegbreitAmerican jazz trumpeter.Needs VoteH. WegbreitHarold WegbreilWoody Herman And His OrchestraTito Rodriguez & His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +3411606Jack ScardaAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +3411607Bobby StylesAmerican jazz trumpeter.Needs VoteBobby StyleWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third HerdThe Mystery Band (3) + +3411639Kirsty HiltonAustralian violinist, born 1976 in Sydney, Australia.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMahler Chamber OrchestraSydney Symphony Orchestra + +3411966Ma Si-HonClassical violinist, born 3 April 1925 in China and died 12 September 2009 in Philadelphia, Pennsylvania.CorrectThe Cleveland Orchestra + +3412030Friedrich StrackAustrian operatic baritone.CorrectWiener Staatsopernchor + +3412072Nicholas AshbyClassical bass vocalistNeeds VoteNick AshbyG4 (2)London VoicesThe King's SingersEx Cathedra Chamber ChoirTenebrae (10)The Marian Consort + +3413242Diana TishchenkoClassiscal violinist, born 1990 in Simferopol, Crimea.Needs VoteMünchener KammerorchesterGustav Mahler Jugendorchester + +3414084Nicolau de FigueiredoClassical keyboard instrumentalistNeeds VoteConcerto Köln + +3414537Jörg NiemandGerman trumpeter, born in 1959 in Dresden, GDR.CorrectRundfunk-Sinfonieorchester BerlinGenesis Brass + +3414540Ulrich Wittke-HußmannGerman tubistNeeds VoteUlli WittkeUlrich Wittke-HussmannOrchester Der Deutschen Oper BerlinBrass Band Berlin + +3414541Norbert PförtschNorbert Pförtsch-EckelsGerman horn player, born in 1967 in Munich, Germany.Needs VoteNorbertOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinGenesis BrassBläserfamilie Pförtsch Holzkirchen + +3414544Stefan Wagner (3)Classical trombone player.Needs VoteGewandhausorchester Leipzig + +3414546Tobias SchwedaGerman percussionistCorrectRundfunk-Sinfonieorchester BerlinGenesis Brass + +3414548Felix WildeGerman trumpet player, born in 1977 in Koblenz, Germany.CorrectStaatskapelle BerlinGenesis BrassEnsemble Ambrassador + +3414549Martin WagemannGerman trumpet player, born in 1979 in Wüpperfürth, Germany.Needs VoteOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinBigBand Deutsche Oper Berlin + +3414551Arndt WahlichGerman percussionist, born in 1966 in Crivitz, GDR.CorrectRundfunk-Sinfonieorchester BerlinGenesis Brass + +3414552Guntram HalderAustrian trombonistNeeds VoteOrchester Der Deutschen Oper BerlinBigBand Deutsche Oper Berlin + +3414553Annerose UngerCredited as sound engineerNeeds Vote + +3414554Thomas Keller (4)Thomas Keller (14 October 1975 in Oberkirchen, Germany - 3 October 2025) was a German tuba player.Needs VoteOrchester Des Nationaltheaters MannheimStaatskapelle BerlinBrass PartoutGenesis Brass + +3414556Frank StephanGerman horn player.CorrectRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleGenesis Brass + +3414557Thomas Richter (7)German trombonist, born in 1965 in Potsdam, GDR.Needs VoteOrchester Der Deutschen Oper BerlinPosaunenquintett BerlinGenesis BrassRolf von Nordenskjöld OrchestraBigBand Deutsche Oper Berlin + +3414669Sabine AhrendtSabine Akiko AhrendtSabine Akiko Ahrendt (b. 1980) is a German violinist from Rüsselsheim who currently lives in Cologne. She studied violin, contemporary music and philosophy in Berlin, Hannover, Budapest, and Frankfurt from 2001 to 2007. Particularly interested in multidisciplinary concert settings, Sabine often plays violin accompanied by electrical instruments and sound modulators, such as computer, synthesizer, whammy pedal, vocoder, etc. + +Ahrendt had been performing with [a=Ensemble Modern], [a=MusikFabrik], [a=Ensemble Ascolta], [a=Ensemble Resonanz], [a=ChorWerk Ruhr] and other renowned European new music groups. In 2011, she joined Contrechamps as a permanent member.Needs Votehttps://sabineakiko.net/https://soundcloud.com/sabine-akikohttps://ensemblegarage.de/sabine-akiko-ahrendt/Akiko AhrendtAkiko ArendtSabine Akiko AhrendtEnsemble ModernEnsemble ContrechampsEnsemble GarageCarl Ludwig Hübsch ArtblauRundfunk-Tanzorchester Ehrenfeld + +3414974Tony PicciottoCorrectTont PiccoottoTony PiccoottoTony PichatoJimmy Dorsey And His Orchestra + +3415005Jack AikenCorrectHarry James And His OrchestraJimmy Dorsey And His Orchestra + +3416074Nikolaus FrischGerman hornistCorrectBläserensemble Sabine Meyer + +3416075Richard Schneider (4)German hornistCorrectBläserensemble Sabine Meyer + +3416596Dale PearceDale Dees PearceAmerican jazz trumpeter with well know dance bands in 1940's and 1950's. + +Birth - 17 Mar 1924, Magna, Utah +Death - 14 Jun 1964, San Francisco, CaliforniaCorrectDPDale Pearce (DP)Dale PiercePearceTommy Dorsey And His OrchestraArtie Shaw And His OrchestraClaude Thornhill And His OrchestraBoyd Raeburn And His OrchestraBob Crosby And His OrchestraRed Norvo And His Overseas Spotlight Band + +3416599Royal Johnson (2)American violinist, born in 1913.Needs VoteChicago Symphony Orchestra + +3416600Paul Kahn (2)American violinist.Needs VoteChicago Symphony Orchestra + +3416852Leonard KayeAmerican saxophonist of the late swing-eraNeeds VoteL. KayeTommy Dorsey And His OrchestraBenny Goodman And His Orchestra + +3417078Naoko ShimizuJapanese classical violist and violinistNeeds Vote清水直子Berliner PhilharmonikerCine 6 + +3417521Charles La RueNeeds VoteCharles LarueCharlie La RueChas La RueTommy Dorsey And His Orchestra + +3417545Norman SeeligAmerican jazz bassistCorrectE. SeeligNorm SeeligTommy Dorsey And His OrchestraHarry James And His OrchestraPaul Smith QuartetHarry James & His Music MakersBob Keene Orchestra + +3418128Carl GroenAmerican jazz trumpet playerCorrectCari GroenBoyd Raeburn And His Orchestra + +3418129Hy MandelAmerican jazz saxophonistNeeds VoteHy MandellBoyd Raeburn And His OrchestraThe Tom Talbert Jazz Orchestra + +3418130Nelson ShelladyJazz trumpeterCorrectNelson ShelledayBoyd Raeburn And His Orchestra + +3418131Gus McReynoldsJazz saxophonistCorrectBoyd Raeburn And His Orchestra + +3418132Ralph Lee (2)Jazz saxophonist from the 1940-1950s Big Band era, having performed with [a299953], [a1903222] and [a2399634] jazz orchestrasNeeds VoteRalph KeeRalph W. LeeBoyd Raeburn And His OrchestraThe Tom Talbert Jazz Orchestra + +3418865Daniel BlendulfDaniel Per Rune BlendulfSwedish cellist and conductor, born 3 August 1981 in Stockholm. +Married to Dutch violinist [a949803].Needs Votehttps://sv.wikipedia.org/wiki/Daniel_BlendulfMahler Chamber OrchestraZ Quartet + +3419281Nida GrigalavičiūtėSoprano vocalist. Born 1967, near Klaipėda, Lithuania. Graduated by Lithuanian Conservatoire in 1990 (vocals). Ms. Grigalaviciute began her professional career at the Klaipeda Music Theatre as a chorister and later as a soloist. She arrived in the United States in 1998 to perform in her first North American production. Now resides in Chicago, U.S.A.Needs Votehttp://nidag.us/Nida GrigalaviciuteChicago Symphony Chorus + +3419330Nir ComfortyIsraeli classical double bassist.Needs Voteניר קומפורטיניר קונפורטיIsrael Philharmonic Orchestra + +3419372David Lawson (4)Credited for photography.Correctデヴィッド・ローソン + +3420236Rolf RankeGerman double bassist.CorrectBerliner Philharmoniker + +3421701Erin WallCanadian operatic soprano. +Born 4 November 1975 in Calgary, Alberta, Canada. +Died 8 October 2020 in Mississauga, Ontario, Canada.Needs Votehttp://www.erinwall.com/https://en.wikipedia.org/wiki/Erin_WallWallエリン・ウォール + +3422029Vinciane BaudhuinBelgian oboist and liner notes translator.Needs VoteAnima EternaLa Petite BandeLes Muffatti + +3422657Nicolas VaslierFrench violinistNeeds Votehttps://www.facebook.com/nicolas.vaslier.1Orchestre National De FranceParis Symphonic Orchestra + +3422874Iwona MuszynskaIwona Maria MuszyńskaOriginally from Warszawa. Polish violinist. +She graduated from [l305416] in 2004. Member of the [a=London Symphony Orchestra] since 2008.Needs Votehttps://www.linkedin.com/in/iwona-muszynska-7772a815/https://www.feenotes.com/database/artists/muszynska-iwona/https://lso.co.uk/orchestra/players/strings.html#Second_violinshttps://vgmdb.net/artist/22820https://www.wroclaw.pl/kultura/polscy-muzycy-w-wiener-philharmoniker-i-london-symphony-orchestraIwona MuszyńskaLondon Symphony OrchestraThe Academy Of Ancient MusicThe Avison EnsembleLSO String Ensemble + +3422877Jane GordonClassical violinist.Needs Votehttps://janegordon.co.uk/https://twitter.com/janegordonvlnThe English Baroque SoloistsCollegium Musicum 90La Nuova MusicaThe Avison EnsembleEuropean Brandenburg EnsembleRoyal Academy of Music Baroque OrchestraTheatre Of The AyreRautio Piano TrioUnited Strings Of EuropeBenedetti Baroque Orchestra + +3422882Joanne GreenClassical violinistNeeds VoteJo GreenScottish EnsembleThe Avison EnsembleThe Bristol EnsembleEnsemble Burletta + +3423386Edward Price (2)Bass vocalist.Needs Votehttp://www.edwardprice.co.ukhttp://www.bath-choral-society.org.uk/index.php?page=edward-priceThe Choir Of The King's ConsortThe King's College Choir Of CambridgeBBC SingersThe Choir Of Clare College + +3423788Steve Hill vs. D10Needs Major ChangesSteve Hill Vs D10Steve Hill Vs. D10Steve Hill vs D10Steve HillDarren Jones + +3424136Iain LedinghamBritish harpsichordistNeeds VoteThe English Concert + +3424262Christian FauschSwiss-born General Manager of Ensemble Modern and producer at Ensemble Modern Medien. Former manager of the Junge Deutsche Philharmonie and Collegium Novum Zürich. Needs Votehttps://www.ensemble-modern.comEnsemble Modern + +3424273Holly RandallClassical oboe & cor anglais player. +She studied at the [l527847] and the [l1841287]. From 2006 until 2011, she was a member of the [a=Zurich Opera Orchestra]. She has played with most of the UK's major symphony orchestras and since 2014 has been a member of the [a=Bournemouth Symphony Orchestra], holding the position of Sub-Principal Oboe / Cor Anglais.Needs Votehttps://twitter.com/holiorandolio?lang=enhttps://www.daspmusic.co.uk/holly-randall.htmlLondon Symphony OrchestraMahler Chamber OrchestraBournemouth Symphony OrchestraZurich Opera Orchestra + +3424642Louis-Philippe MarsolaisCanadian classical hornistNeeds VoteLouis Philippe MarsolaisLes Violons du RoyOrchestre Métropolitain du Grand MontréalEnsemble CapriceMontreal BaroquePentaèdreLes Jacobins + +3424655Gerhard GreifGerman trumpeterNeeds VoteOrchester Der Deutschen Oper BerlinBigBand Deutsche Oper Berlin + +3424657Matthias KuckuckMatthias Kuckuck is a German double bassist. +Needs VoteJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleFrankfurter Opern- Und MuseumsorchesterBundesjugendorchester + +3424895Sonny Wilson (4)Dutch singer-songwriter.Needs Votehttp://www.sonnywilson.com/https://www.facebook.com/sonnywilsonhttps://twitter.com/SonnyWilsonNLAnaconda Willy + +3425033Franz DraxingerGerman horn player, born 1964 in Waldkirchen, Germany.Needs VoteBayerisches StaatsorchesterMünchner RundfunkorchesterMünchener KammerorchesterArcis QuintettNeue Hofkapelle MünchenKlassische Philharmonie StuttgartHofkapelle StuttgartDeutsche Bläserphilharmonie (2) + +3425368Jean-Luc GirardFrench Classic & Jazz Composer.Needs Votehttps://www.culturejazz.fr/spip.php?article1415J.L. Girard + +3426185Thomas HammesGerman classical trumpet player + + +Needs Votehttp://www.thomashammes.deRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +3428079Laurent GasparClassical viola playerCorrectCollegium Vocale + +3428186Vincent LesageVincent Eurgéne LesageBelgian tenor vocalistNeeds VoteVincent Eurgéne LesageCollegium VocaleChoeur de Chambre de NamurL'ArpeggiataIl GardellinoLa Capella DucaleLes AgrémensAkadêmiaInaltoEnsemble Polyharmonique + +3428266Bernd EhrhardtClassical contrabassistCorrectBernd ErhardtConcerto Köln + +3428346Deborah DiamondClassical violinist.Needs VoteThe English Baroque SoloistsOrchestra Of The Age Of Enlightenment + +3428347Robert GoodhewClassical sackbutistNeeds VoteRob GoodhewThe English Baroque Soloists + +3428349Judith KliemanClassical contrabassistNeeds VoteThe English Baroque Soloists + +3428562Endel ValkenklauNeeds VoteE. ValkenklauEstonian Philharmonic Chamber Choir + +3428563Andrus PoolmaNeeds VoteEstonian Philharmonic Chamber Choir + +3428564Aivar HuntNeeds VoteEstonian Philharmonic Chamber Choir + +3428565Andres AlamaaNeeds VoteEstonian Philharmonic Chamber ChoirKuninglik Kvintett + +3428566Priit PõldmaaNeeds VoteEstonian Philharmonic Chamber Choir + +3428567Mati SildosNeeds VoteEstonian Philharmonic Chamber Choir + +3428633James EastawayClassical oboist.Needs VoteJames EasterwayThe English Baroque SoloistsCollegium Musicum 90London Handel OrchestraEuropean Brandenburg EnsembleThe MozartistsThe Bach Playersensemble F2 + +3429737Markus GählerGerman double bassist.Needs VoteJunge Deutsche PhilharmonieStuttgarter Philharmoniker + +3429774Bettina FaissGerman clarinetist.CorrectSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieBundesjugendorchester + +3429989Stephen Warner (2)American violinist. He's married to [a1380705].Needs VoteSteven WarnerThe Cleveland OrchestraThe Cleveland Duo + +3430167Jack AaronsonEarly jazz pianistNeeds VoteTed Lewis And His Band + +3431228Morris's Hot BabiesJazz ensemble fronted by [a326849] in the 1920's. +Different line-up than [a339919]. +Their 1927 recording backing [a=Fats Waller] on a pipe-organ recorded in a church.Correcthttp://www.redhotjazz.com/twmhb.htmlMorris Hot BabiesMorris' Hot BabiesThomas Morris & His Hot BabiesThomas Morris' Hot BabiesCharlie IrvisThomas MorrisBobbie LeecanJimmy ArcheyEddie King (2) + +3431529Emanuela GalliClassical soprano vocalistNeeds VoteEmanuele GalliGalliThe Monteverdi ChoirCoro Della Radio Televisione Della Svizzera ItalianaLa VenexianaStile GalanteMadrigalisti Della RSILa Sfera ArmoniosaVenice Monteverdi Academy Choir + +3431530Isabella HessMezzo soprano vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +3431533Alfredo GrandiniClassical bass / baritone & tenor vocalistNeeds VoteGrandiniCoro Della Radio Televisione Della Svizzera ItalianaTemplum Musicae + +3431646Dan PalladinoNeeds VoteArtie Shaw And His Orchestra + +3431682Heinz-Dieter SchwarzHeinz-Dieter Schwarz (20 March 1941 - 11 February 2025) was a German trombonist. +A member of the [a260744] from 1970 to 1991. +Needs VoteDieter SchwarzH. D. SchwarzH. Dieter SchwarzH.-D. SchwarzBerliner Philharmoniker + +3432311Keiko InoueClassical oboistNeeds VoteOrchestre National De L'Opéra De ParisZurich Opera Orchestra + +3432385Sophia BaltatziPlays violin.Needs VoteBerliner SymphonikerEnsemble Mondaine + +3432627Alvaro ParraÁlvaro ParraChilean classical violinist.CorrectÁlvaro ParraBerliner PhilharmonikerMünchener Kammerorchester + +3432629Anthony ManzoAmerican classical double bass player.Needs Votehttps://handelandhaydn.org/about/musicians/orchestra-and-chorus/anthony-manzo/https://mostlymusic.org/anthony-manzo/Münchener KammerorchesterNew World Symphony OrchestraBergen Filharmoniske OrkesterThe Handel & Haydn Society Of BostonThe New Century Chamber Orchestra + +3432630Nikolaus KneserClassical violinist.Needs VoteDeutsches Symphonie-Orchester BerlinMahler Chamber OrchestraMünchener KammerorchesterAdamello Quartett + +3432633Ruth PetrovitchClassical violinist, born 1974 in Aachen.Needs VoteDresdner PhilharmonieMünchener KammerorchesterRobert-Schumann-PhilharmonieMDR SinfonieorchesterEnsemble 01 + +3432634Christian van EggelenDutch classical violinist, born 1976 in Delft, Netherlands.CorrectConcertgebouworkestMünchener Kammerorchester + +3432863William OvertonWilliam J. OvertonClassical trumpeter and trumpet teacher. Died in 1976. +He was a member of the [a=London Symphony Orchestra] (1934-1939). Principal Trumpet in the [a=BBC Symphony Orchestra] and also Bandmaster of [b]Lewisham Salvation Army Band[/b] during the 1940/1950s. He taught at the [l527847].Needs Votehttps://www.themouthpiece.com/threads/william-overton-deceased-bbc-symphony-orchestra-s.4863/London Symphony OrchestraBBC Symphony Orchestra + +3432864Alfred G. ButlerClassical contra bassoon player.Needs VoteBBC Symphony Orchestra + +3432966Séverine DelforgeSoprano vocalistCorrectChoeur de Chambre de Namur + +3432968Rainer ArndtGerman violinist, producer and engineer, founder of label [l590842], husband of [a=Catherine Meeus].Needs Votehttps://be.linkedin.com/in/rainer-arndt-17710683https://www.deutschlandfunk.de/ramee-ein-label-fuer-alte-musik.727.de.html?dram:article_id=101139Reiner ArndtLa Petite BandeRicercar ConsortScherzi MusicaliLes MuffattiThe Belgian Baroque SoloistsJohann Rosenmüller Ensemble + +3432969Bruno CrabbéClassical bass vocalistCorrectChoeur de Chambre de Namur + +3432970Veerle Lindemanssoprano vocalist & liner notes translatorNeeds VoteChoeur de Chambre de Namur + +3432971Cécile CoteSoprano vocalistNeeds Votehttps://www.facebook.com/cecilecote28/Cécile CôteChoeur de Chambre de NamurLes Demoiselles De Saint-Cyr + +3432972Anne MauryClassical violinistNeeds VoteAnima EternaLes Talens LyriquesRicercar Consort + +3432975Philippe CrespinClassical bass vocalistCorrectChoeur de Chambre de Namur + +3432977Moshe HaasIsrael native Baritone / Tenor vocalistNeeds VoteChoeur de Chambre de NamurCantus Et Musica Freiburg + +3433871Laura CorollaItalian classical violinistNeeds VoteEuropa GalanteAlessandro Stradella ConsortEnsemble MatheusCappella GabettaOrfeo 55Il Pomo d'OroCappella MediterraneaMillenium OrchestraCappella TeatinaCapella TiberinaDivertissement (2) + +3433873Roberto BrownClassical viola playerCorrectEuropa Galante + +3433874Sergio PavanClassical violone (double-bass) playerCorrectEuropa Galante + +3433989Susanne WahmhoffClassical cellistNeeds VoteConcerto KölnNeue Philharmonie Westfalen + +3433991Fiona StevensClassical violinistNeeds VoteConcerto KölnNeue Hofkapelle MünchenHimlische CantoreyPauliner BarockensembleCamerata Berolinensis + +3434151Michel QuagliozziClassical recorder & flute instrumentalistNeeds VoteLes Talens LyriquesLa Simphonie Du MaraisCapriccio Stravagante + +3434152Arnaud PumirClassical harpsichordist.Needs VoteLa Simphonie Du MaraisEnsemble Concerto di Bassi + +3434153Dominique DujardinFrench cellist & double bass instrumentalistNeeds VoteLa Grande Ecurié Et La Chambre Du RoyLa Simphonie Du MaraisEnsemble europeen William Byrd + +3434154Romain PetitClassical violinist.Needs VoteLa Simphonie Du Marais + +3434155Ulrika WahlbergClassical violinistNeeds VoteUlrika WahlberLa Simphonie Du Marais + +3434156Anne-Laure GuerrinClassical violinist.Needs VoteLa Simphonie Du Marais + +3434649Haika LübckeGerman flute player, born in 1972.CorrectHaika LübkeJunge Deutsche PhilharmonieMünchner SymphonikerOrchester Des Staatstheaters Am GärtnerplatzTonhalle-Orchester Zürich + +3435021Verne GuertinAmerican trumpet playerCorrectVern GuertinHarry James And His Orchestra + +3436103Arkadiusz AdamskiPolish clarinetistNeeds VoteArkadiusz, Arek AdamskiPolish National Radio Symphony OrchestraThe Polish Sinfonia Iuventus Orchestra + +3437324Wilhelm FüchslClassical tenor vocalistCorrectRIAS-Kammerchor + +3437325Roswith Kehr-von MonkiewitschClassical soprano vocalistCorrectRoswith Kehr-Von MonklewitschRoswith Kehr-von MonklewitschRIAS-Kammerchor + +3437326Ulrike AndersenGerman contralto vocalist born in Halbinsel Eiderstedt in Nordfriesland.Correcthttp://www.bach-cantatas.com/Bio/Andersen-Ulrike.htmAndersenRIAS-Kammerchor + +3437407Marcus Norman (3)Needs VoteMarcus H. NormanMarcus MomanState Street RamblersAlabama Jim & GeorgeHarlem Trio (2) + +3437432Quirin WillertClassical trombonist.Needs VoteMünchner PhilharmonikerMünchener Kammerorchester + +3437433Samuel SeidenbergGerman hornist and music professor, born 2 August 1978 in Osterburg (Altmark), Germany.Needs VoteMünchner PhilharmonikerDeutsches Symphonie-Orchester BerlinBamberger SymphonikerMünchener KammerorchesterNürnberger Philharmonikerhr-Sinfonieorchester + +3437436Alexandra GruberGerman clarinetist.Needs VoteMünchner PhilharmonikerMünchener Kammerorchester + +3438318Larry Patton (2)SaxophonistNeeds VoteL. PattonGene Krupa And His OrchestraThe Tom Talbert Jazz Orchestra + +3438319Tommy Lucas (3)Saxophone player. Needs VoteTom LucasTommy LacasGene Krupa And His OrchestraShep Fields And His New Music + +3438654Eddie McKimmeyWilliam Edward McKimmeyAmerican bass player and songwriter on jazz releases. Born 1912, Joliet, Ill., where he attended grammar school; attended high school in Gary, Ind. Began violin studies at age 10, continuing throughout high school period at which time he also played brass bass in the school band. In 1930 he took up the string bass. Began his professional career in Chicago with Don Pedro. Successively played with [a3671178], [a2523123], [a2577413], [a1807616], [a269597] (1941-42) ; [a313112] (summer, 1941, between his Shaw engagements). Recorded with [a254893], [a269597].Needs VoteE McKimmeyEd McKimmeyEd McKinneyEddie McKinleyEddie McKinneyMcKimmeyMcKinneyArtie Shaw And His OrchestraHorace Heidt And His Musical Knights + +3438865Barry Ulanov's All Star Modern Jazz MusiciansNeeds Major ChangesBarry Ulanov's All StarsBarry Ulanov's All Stars Modern Jazz MusiciansBarry Ulanov's All-Star Modern Jazz MusiciansDizzy GillespieCharlie ParkerMax RoachRay BrownLennie TristanoBilly BauerJohn Laporta + +3438866Francesco LattuadaItalian viola & viola da braccio instrumentalistNeeds VoteIl Giardino ArmonicoLa VenexianaOrchestra AglàiaFilarmonica Della ScalaQuartetto "Joseph Joachim" + +3438882Dagny Wenk-WolffNorwegian classical violinist, based in Austria.Correcthttps://www.facebook.com/dagny.wenkwolffCamerata Academica SalzburgEnsemble Modern Orchestra + +3440224Kurt HolzerClassical HornistCorrectConcerto Köln + +3440225Heide RosenzweigClassical harpistNeeds VoteHeidrun RosenzweigConcerto KölnLa Stagione + +3440226Antje KellerClassical violinistCorrectConcerto Köln + +3440569Curtis MurphyBig band trumpeterNeeds VoteLucky Millinder And His Orchestra + +3440572Ernest LeavyBaritone saxophonistNeeds VoteErnest LeaveyLucky Millinder And His Orchestra + +3440644Eric TewaltSaxophonist based in Las Vegas, originally from Indiana.Needs VoteErick TewErick Tewalt + +3441116Timothy WaldenBritish classical cellist. Born in London, England. +He studied at [l305416]. After leaving the Guildhall, he was appointed Principal Cellist of the [a=Royal Scottish National Orchestra], becoming the youngest Principal in the UK at the age of 21. Principal Cello with the [a=Bournemouth Symphony Orchestra] (1995-2008). Principal Cello of the [a=Philharmonia Orchestra] since January 2010. Member of the [b]Corinthian Chamber Orchestra[/b].Needs Votehttps://www.linkedin.com/in/tim-walden-45635a33/?originalSubdomain=ukhttps://open.spotify.com/artist/5RaaElEuLATZuwivSXyU1bhttps://philharmonia.co.uk/bio/timothy-walden/http://www.corinthianorchestra.org.uk/content/tim-walden-cellohttps://www.facebook.com/EmanuelSchoolAlumni/posts/in-the-mid-seventies-mr-timothy-walden-oe1973-78-played-cello-in-numerous-school/2141353295965694/https://www.musicalorbit.com/product-page/timothy-waldenhttps://www.the-paulmccartney-project.com/artist/timothy-walden/https://www.imdb.com/name/nm1274385/https://vgmdb.net/artist/23302WaldenPhilharmonia OrchestraRoyal Scottish National OrchestraBournemouth Symphony OrchestraRoyal Liverpool Philharmonic OrchestraCantilenaThe John Wilson Orchestra + +3441160Billy Jones (11)Jazz pianist.Needs VoteBilly Jones And His Dixieland BandOriginal Dixieland Jazz Band + +3441417Hans-Joachim TinnefeldClassical double bassist.CorrectJ. TinnefeldJoachim TinnefeldEnsemble ModernWiener Symphoniker + +3441418Barbara KehrigBarbara Kehrig is a German bassoonist. She's a member of the [a260744] since December 2022.Needs VoteEnsemble ModernBerliner PhilharmonikerMünchner PhilharmonikerGustav Mahler JugendorchesterKonzerthausorchester BerlinLandesjugendorchester Baden-WürttembergBundesjugendorchester + +3441437Willie Davis (5)US jazz bassistNeeds VoteWillie 'Stomp' DavisWillie Stump JuniorStan Getz Quartet + +3441769David Parsons (3)Classical guitarist and lutenist.Needs VoteD.P.The Consort Of Musicke + +3441773Phil Woods (3)Philip WoodsFrench horn / Horn player. +Principal Horn for all [l527847] orchestras and [a=Britten-Pears Orchestra] (1988-1993) and [a=Young Musicians Symphony Orchestra] (1992-1993). He freelanced with many of the major London orchestras.Needs Votehttps://twitter.com/philwoodshorn?lang=enhttps://maslink.co.uk/client-directory?client=WOODP2&instrument=HORN1https://www.musicteachers.co.uk/teacher/2dbfeb99c3953d183d5dhttps://www.imdb.com/name/nm10539301/Philip WoodsPhillip WoodsRoyal Philharmonic OrchestraPhilharmonia OrchestraBritten-Pears OrchestraThe New Blood OrchestraYoung Musicians Symphony Orchestra + +3441950Rodney OgleAmerican jazz trombonist, musician for [a239399] in 1943.Needs VoteRod OgleWoody Herman And His OrchestraThe Band That Plays The Blues + +3441952Dick MunsonAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraWoody Herman & The Herd + +3441966Katherine PalygaClassical violinistNeeds VoteCatherine PalygaKathy PalygaOrchestre symphonique de Montréal + +3442086Esther MisbeekClarinetist.Needs VoteEsther MisbeekeRadio KamerorkestRadio Filharmonisch OrkestRadio Kamer FilharmonieLudwig Orchestra + +3442087Hessel BumaTrumpeter.Needs VoteRadio KamerorkestRadio Filharmonisch Orkest + +3442088Marjolijn van der Grinten-Da Silva RosaViola player.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442090Judith Vrijma-HasselaarViola player.Needs VoteRadio Kamerorkest + +3442091Pedja MilosavljevicViolinist.Needs VoteRadio KamerorkestRadio Filharmonisch OrkestRadio Kamer Filharmonie + +3442092Michael Müller (19)Dutch cellistNeeds VoteMichaël MullerMichaël MüllerRadio KamerorkestRadio Filharmonisch OrkestPárkányi QuartetRadio Kamer FilharmonieLudwig Orchestra + +3442093Kerstin ScholtenHarpist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442094Jan Roel HamersmaPercussionist.Needs VoteRadio KamerorkestHet Gelders OrkestPhion + +3442095Angela StevensonCellist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442096Elfride ZeldenrustCellist.Needs VoteRadio Kamerorkest + +3442097Hans SmitHornist.Needs VoteThe BrommersRadio Kamerorkest + +3442098Peter de Wit (4)Violinist.Needs VoteRadio Kamerorkest + +3442099Lev FriedmanViolinist.Needs VoteRadio Kamerorkest + +3442100Astrid AbasViolinist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442101Marjolijn OonkViolinist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442102Joan MooneyViolinist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442103Annet KarstenBassoonist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442105Caroline Wagner (2)Violinist.Needs VoteRadio Kamerorkest + +3442106Carolien van 't HofFlautist.Needs VoteRadio KamerorkestRadio Kamer Filharmonie + +3442107Norma BrooksDouble bassist.Needs Votehttps://www.linkedin.com/in/norma-brooks-88bbb414/Metropole OrchestraRadio KamerorkestRadio Kamer Filharmonie + +3442108Caroline WoltjerViolinist.Needs VoteRadio Kamerorkest + +3442109Luuk TuinstraTrombonist.Needs VoteRadio Kamerorkest + +3442110Michelle MaresPianist; born and living in Vancouver, CanadaNeeds Votehttp://michellemares.ca/Radio Kamerorkest + +3442111Anneke VreugdenhilHornist.Needs VoteAnneke VreugdenhillRadio KamerorkestBeaufort KwintetHague Wind Ensemble Oktopus + +3442112Dick TeunissenDutch trumpeter and conductor.Needs VoteKees VlakRadio KamerorkestGroot Harmonieorkest + +3442114Marjan van de BergViola player.Needs VoteRadio Kamerorkest + +3442115Mieke van DaelBassoonist.Needs Votehttps://www.miekevandael.com/Radio Kamerorkest + +3442117Rebecca GrannetiaHornist.Needs VoteRebecca GranetiaRadio KamerorkestRadio Filharmonisch OrkestRadio Kamer Filharmonie + +3442119Henk SwinnenOboist.Needs VoteCombattimento Consort AmsterdamRadio Kamerorkest + +3442173Adam KieszekAdam Kieszek OttesenBassist.Needs VoteBergen Filharmoniske OrkesterBergen Chamber Ensemble + +3442176Elisabeth SvanesViolinist.Needs VoteElisabeth M. SvanesBergen Filharmoniske OrkesterBergen Chamber Ensemble + +3442602Charlotte ReidBritish violinistNeeds VoteCity Of London SinfoniaLondon SinfoniettaLondon Contemporary Orchestra + +3442952Niels FossNiels Hartvig FossDanish jazz bassist (also guitar, trombone) and band leader, born January 28, 1916 in Copenhagen, Denmark, died May 16, 2018 in Zürich, Switzerland. +Foss began as a guitarist in [a=Svend Asmussen]'s group 1933-1934, then played bass with Asmussen and others 1935-1937. From 1940 to 1948 he led and played trombone in own bands, 1949-1951 with [a=Peter Rasmussen] and in 1957 moved to Switzerland, where he continued to play part-time.Needs VoteN. FossNiels VossNils FossSvend Asmussens OrkesterNiels Foss' Shortwave BandNiels Foss' OrkesterKai Ewans Og Hans OrkesterNiels Foss' Scala OrchestraEtly Lizette And Her OrchestraAll Danish StarbandKaj Timmermann's SeptetThe Swingin' BirdsThe Kordt Sisters Med SwingtetSvend Asmussen Og Hans Swing-Quintet + +3443070Country WashburneJoseph WashburneAmerican composer, vocalist, author, bassist and tuba player, nicknamed "Country", born December 28, 1904 in Houston, Texas; died January 21, 1974 in Santa Ana, California.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/110043/Washburne_Country"Country" Washburn"Country" WashburneC. WashburnC. WashburneCountry WashburnJ. WashburneJoseph Howard 'Country' WashburneWashburnWashburneJoe WashburneButtermilk TussieBob Crosby And His OrchestraTed Weems And His OrchestraPete Daily's Dixieland BandSextette From Hunger + +3443273Dieter SalewskiGerman oboist.Needs VoteDieter SalevskySymphonie-Orchester Des Bayerischen RundfunksCamerata Academica SalzburgResidenz Kammerorchester MünchenBach-Collegium MünchenBundesjugendorchesterSyrinx Quintett + +3443414Koen PlaetinckBelgian classical percussionistNeeds Votehttp://www.koenplaetinck.com/Koen PlaetinkAnima EternaRotterdams Philharmonisch OrkestIl GardellinoIl Pomo d'OroInsula OrchestraB'Rock OrchestraA Nocte TemporisMillenium OrchestraWes10brassArt'uur + +3443418Esther Van Der EijkDutch string instrumetalistNeeds VoteEsther Van Der EyckEsther Van EijkAnima EternaConcerto KölnDe Nederlandse BachverenigingMusica AmphionNew Dutch AcademyMillenium OrchestraThe Northern Consort + +3443426Uli HübnerClassical hornist.Needs VoteHübnerUlrich HübnerUlrich HübnerAnima EternaConcerto Köln + +3444201Stephan SchraderClassical cellistNeeds Votehttps://www.stephan-schrader.com/Deutsche Kammerphilharmonie BremenParnassi Musici + +3445049Marc Williams (9)Needs VoteMark WilliamsMaison All Stars + +3445693Vincent Jacobs (2)French horn player.Needs VoteVinneis JacobsVinnie JacobsClaude Thornhill And His OrchestraNeal Hefti's Orchestra + +3446006Stefan DrexlmeierStefan Q. DrexlmeierClassical Bass vocalistNeeds VoteStefan DrexelmeierStefan Q. DrexlmeierRIAS-KammerchorCollegium VocaleVocalconsort BerlinEnsemble OfficiumAthesinus Consort Berlin + +3446007Paul Van LoeyClassical bassoon & recorder playerNeeds VoteCollegium VocaleCapilla FlamencaFlanders Recorder QuartetPaul Rans Ensemble + +3446047Christophe SamClassical bass vocalist.Needs VoteChristoph SamCollegium VocaleLes Cris de ParisEnsemble Jacques ModerneArsys Bourgogne + +3446414Marcel KozánekClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +3446420Karel MalimánekKarel MalimánekClassical tuba player. Correcthttps://www.ceskafilharmonie.cz/en/players/karel-malimanek/The Czech Philharmonic OrchestraVeselkaCollegium 1704Czech Brass Ensemble + +3446423Karel StralczynskýKarel StralczynskýClassical cello player. + +Brother of [a3541817]. Needs VoteThe Czech Philharmonic Orchestra + +3446424Karel KučeraClassical trombonistNeeds VoteKarel KuceraThe City of Prague Philharmonic OrchestraThe Czech Philharmonic OrchestraCzech Brass Ensemble + +3446429Miroslav VilímecMiroslav VilímecCzech classical violinist and concertmaster. Born 1958 in Klatovy (former Czechoslovakia).Needs Votehttps://www.miroslavvilimec.cz/https://www.imdb.com/name/nm2076510/M. VilímecMiroslav VilimecMiroslav VilimetzMiroslav VillimecThe Czech Philharmonic Orchestra + +3446437Jiří VopálkaClassical double bassistNeeds VoteJiri VopalkaVopálka JiríThe Czech Philharmonic Orchestra + +3446445Jan MarečekClassical violistNeeds VoteJan MarcecekJan Mare EkJan MarecekMareček JanThe City of Prague Philharmonic OrchestraThe Czech Philharmonic Orchestra + +3446447Robert KozánekClassical trombonistNeeds VoteRobert KozanekThe Czech Philharmonic OrchestraF-dur Jazzband + +3446448Zdeněk TesařClassical clarinetistNeeds VoteThe Czech Philharmonic OrchestraCollegium Musicum Pragense + +3446474Martin Hilský (2)Classical double bassistNeeds VoteThe Czech Philharmonic Orchestra + +3446957Jules DelsartJules Delsart (24 November 1844 – 3 July 1900)[1] was a 19th-century French cellist and teacher. He is best known for his arrangement for cello and piano of César Franck's Violin Sonata in A major. Needs Votehttps://en.wikipedia.org/wiki/Jules_Delsarthttps://adp.library.ucsb.edu/names/104796DelsartJ. DelsardJ. DelsartSh. DelsarЖ. Дельсар + +3447365Marleen VertommenClassical recorder playerCorrectCollegium Vocale + +3447870Gard GarsholNorwegian percussionist.Needs VoteBergen Filharmoniske Orkester + +3448320Jan ZwerverClassical countertenor/alto vocalistNeeds VoteCollegium VocaleHolland Boys Choir + +3449668Frank Bradley (2)TrombonistNeeds VoteCharlie Barnet And His Orchestra + +3449670Harold HerzonHarold Stanford HerzonUS-American alto saxophonist and clarinetist, originally from Chicago, Illinois, with a master’s in music from Northwestern University. Coming to Hollywood he opened his own recording studio at Hollywood and Vine. +Later in life he became talent agent for films, died 18 January 2003 in Southern California aged 84.Needs VoteHal HerzonHal HerzoneHarold HarzoneHarold HerzoneCharlie Barnet And His OrchestraHal Herzon And His Orchestra + +3449676John ChanceBassist during the swing era.Needs VoteCharlie Barnet And His Orchestra + +3450004Mercedes LarioSpanish soprano vocalistCorrectNederlands Kamerkoor + +3450026Irving GreenwaldJazz saxophonist.Needs VotePaul Whiteman And His Orchestra + +3450028Allan Thompson (2)Jazz trombonist.Needs VoteAllan W. ThompsonWingy Manone & His OrchestraPaul Weston And His Orchestra + +3450500Fats Navarro And His BandNeeds Major ChangesFats Navarro & His BandArt BlakeyCharlie RouseTadd DameronNelson BoydFats Navarro + +3450858Pete JohnsAmerican jazz saxophonist, part of Woody Herman's 'The Band That Plays the Blues'.CorrectPet JohnsWoody Herman And His OrchestraThe Band That Plays The Blues + +3450859Mac MacQuordaleAmerican jazz trumpeter.CorrectWoody Herman And His OrchestraThe Band That Plays The Blues + +3450861Joe DentonAmerican jazz saxophonist.Needs VoteWoody Herman And His OrchestraThe Band That Plays The Blues + +3450862Sammy ArmatoAmerican jazz saxophonist.Needs VoteWoody Herman And His OrchestraThe Band That Plays The Blues + +3450863Walter NimmsAmerican jazz trombonist, nickname Wally Nimms. Was part of [a239399]'s orchestra in 1942.Needs VoteNimmsWoody Herman And His OrchestraThe Band That Plays The Blues + +3450864Tommy FarrAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraThe Band That Plays The Blues + +3450917Thomas Eberhardt (2)German bassoonist.Needs VoteDresdner SinfonikerStaatskapelle DresdenFestival Strings LucerneEnsemble Courage + +3451381Gabriel BaniaPolish-Swedish baroque violinist.Needs VoteTheatre Of VoicesCollegium VocaleLes Talens LyriquesConcerto Copenhagen + +3452392Tino IsgrowTenor SaxophoneCorrectTino IsgroTony IsgroHarry James And His OrchestraDan Terry And His Orchestra + +3452480Gilbert KoernerCorrectJimmy Dorsey And His Orchestra + +3452491Anthony FernerNew Zealand classical flautistNeeds Votehttps://www.rnz.co.nz/concert/programmes/upbeat/audio/2018772671/anthony-ferner-passionate-about-the-fluteTony FernerThe Australian Opera & Ballet OrchestraSydney Symphony OrchestraChristchurch Symphony OrchestraThe New Zealand Sinfonietta + +3452751Charlie McLean (2)US Saxophone PlayerNeeds VoteThe Ben Webster QuintetThe Las Vegas Jazz Orchestra + +3452752John Dailey (2)Needs VoteJohn DailyThe Ben Webster Quintet + +3452753Ray White (2)Needs VoteThe Ben Webster Quintet + +3453317Antonius SchröderClassical contrabassistNeeds VoteA. SchröderSymphonie-Orchester Des Bayerischen RundfunksCapella Clementina + +3453482Harold AbleserTrumpet player.Needs VoteTommy Dorsey And His Orchestra + +3453760Tom AzzarelloAmerican jazz bassist.Needs VoteTom AzzereloWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3453798Jean CrosContrabass playerNeeds VoteOrchestre De Chambre De Toulouse + +3454537James GourlayJames Gourlay is a British conductor and internationally renowned tuba soloist. + +He was born in Scotland and began to play in his local brass band at an early age. He took part in numerous solo competitions at that time and soon became Scottish Champion at junior and open levels. After studying at the Royal College of Music Gourlay became principal tuba of the City of Birmingham Symphony Orchestra where he remained for four years. There followed posts in the BBC Symphony Orchestra and the Orchester der Oper in Zürich where he worked with most of the World’s top conductors. In 2010 he became the Musical Director of the River City Brass Band located in Pittsburgh Pennsylvania.Needs Votehttps://en.wikipedia.org/wiki/James_Gourlay https://www.rncm.ac.uk/people/james-gourlay/http://www.besson.com/artist/james-gourlay/BBC Symphony OrchestraThe London Symphony Brass Ensemble + +3454739Anneke HodnettClassical harpist, and harp teacher. +She studied at [l305416]. She has performed with orchestras including the [a=London Symphony Orchestra], the [a=BBC Symphony Orchestra], the [a=London Philharmonic Orchestra], the [a=Philharmonia Orchestra], the [a=City Of London Sinfonia], and the [a=Royal Ballet Sinfonia]. As a chamber musician, she formed her chamber group [b]Trio Anima[/b]. Harpist of the [a=Suoni Ensemble] in Copenhagen.Needs Votehttps://www.annekehodnett.com/https://www.facebook.com/anneke.hodnetthttps://open.spotify.com/artist/0ZU7Hl6CXXkZsv7ohUq8OUhttps://music.apple.com/th/artist/anneke-hodnett/572301992https://londonconcertchoir.org/people/anneke-hodnetthttps://www.gsmd.ac.uk/youth_adult_learning/junior_guildhall/staff/department/33-string-training-programme/1201-anneke-hodnett/London Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraCity Of London SinfoniaPhilharmonia OrchestraRoyal Ballet SinfoniaSuoni EnsembleOctandre EnsembleTrio Anima + +3455141Elisabeth AdkinsElisabeth Adkins is an American violinist and Professor of Violin. She's married to [a7536580]. +. +Needs VoteNational Symphony OrchestraThe American Chamber Players + +3455161Wolfgang PieskGerman bassoonist. A member of the [a604396] from 1971 to 2017.Needs VoteW. PieskSymphonie-Orchester Des Bayerischen Rundfunks + +3455668John InglissAmerican trumpet player, played with Woody Herman at the 1967 Monterey Jazz Festival.Needs VoteWoody Herman And His OrchestraWoody Herman And The Thundering Herd + +3456728Victor ApostleClassical wind instrumentalistNeeds VoteLes Arts Florissants + +3457178Sylke SchwabGerman soprano vocalistNeeds VoteRundfunkchor BerlinHallenser Madrigalisten + +3457422Lucile RichardotFrench classical alto / mezzo-soprano vocalistNeeds VoteRichardotLes Arts FlorissantsPygmalionEnsemble CorrespondancesGli Angeli GenèveLes Épopées + +3457430Juliette PerretFrench soprano vocalist, born in 1985 in Grenoble, France.Needs VoteLes Demoiselles De Saint-CyrEnsemble Jacques ModernePygmalionEnsemble CorrespondancesChœur Marguerite Louise + +3457882Maarten Van Der HeijdenClassical Double-Bass & Violone playerNeeds VoteMaarten van der HeijdenCappella Amsterdam + +3458847Laurent LaberdesqueFrench baritone vocalist.Correcthttp://www.laberdesque.com/Choeur National De L'Opéra De Paris + +3459636Wolfgang WipflerGerman horn player, born 1965 in Baden-Baden, Germany.Needs VoteStaatsorchester StuttgartRadio-Sinfonieorchester StuttgartEuropean Union Youth OrchestraBachcollegium StuttgartPhilharmonisches Orchester DortmundStuttgart WindsSWR SymphonieorchesterCompass-KammerensembleSzigeti Quartett + +3460157Aidan PendletonCanadian classical violist.Needs VoteJakalopeMünchener KammerorchesterRadio KamerorkestMusica Vitae + +3460300Øivin FjeldstadØivin Fjeldstad (2 May 1903—16 October 1983) was a Norwegian conductor and violinist who led the [a=Oslo Filharmoniske Orkester] from 1962 to 1969. Needs Votehttp://en.wikipedia.org/wiki/%C3%98ivin_FjeldstadDivin FjeldstadFjeldstadIlvin FjeldstadKapellmester Øivin FjeldstadO. FjelstadOiven FjeldstadOivin FjedlstadOivin FjeldstadOivin FjelstadOlvin FjeldstadÖivin FjeldstadÖivind FjeldstadÖrvin FjeldstadØivind FjeldstadØivind Fjellstadエイヴィン・フィエルスタードOslo Filharmoniske Orkester + +3460441Isolde FerenbachClassical violinist.Needs VoteOrchestre National Du Capitole De ToulouseStar Pop Orchestra + +3461207Harry CurbyHarold CurbyAustralian violinist. +He and [a=Della Woods] worked together professionally from 1948 and they were married in 1958. From 1961, they lived in London, England where he worked with the [a=London Symphony Orchestra] for two years (1961-1962). Then, from 1968 until 1974, they lived in the Netherlands, where he joined the [a=Dekany Quartet]. After they returned to Australia in 1974, Harry became a member of [a=The Sydney String Quartet]. In the late 1980s, they opened the [b]Curwood Music Academy[/b] on Sydney's north shore.Needs VoteHarry ČurbyLondon Symphony OrchestraDekany QuartetThe Sydney String Quartet + +3461457Jerry SokolovUS trumpeter & flugelhornist, and Real Estate owner & manager. Lead trumpeter of [a=Blood, Sweat And Tears] (1987-1995). +Born in 1964.Needs Votehttps://www.facebook.com/jerry.sokolov.1https://www.instagram.com/jerrysokolov/https://www.linkedin.com/in/jerry-sokolov-90b17421/https://en.wikipedia.org/wiki/Jerry_SokolovJerry SokoloooBlood, Sweat And TearsLionel Hampton And His OrchestraDave Stahl BandBill Warfield Big Band + +3461745Thomas BaetéThe Belgian classical violist started to study the violin at the Royal Conservatory of Antwerp, but soon went for further schooling in viola da gamba at the Conservatoire de Bruxelles. +He is the founder and musical director of ensemble [a=Transports Publics].Needs VoteThomas BaeteCollegium VocaleLa Petite BandeCapilla FlamencaGraindelavoixMala PunicaHathor ConsortLa CacciaThe Spirit Of GamboInaltoTransports PublicsClubMediévalRedherring Baroque Ensemble + +3461862Paolo Amerigo CassellaItalian lyricist and producer.Correcthttp://it.wikipedia.org/wiki/Paolo_Amerigo_CassellaA, CassellaA. CassellaA. CaselaA. CasellaA. CaselloA. CassellaA. CasselloA. CostelloA. GasalleA. GassellaA. GasselleA. GazalleA. P. CassellaA.CassellaA.P. CassellaA.P.CasselaA.P.CassellaAmerico CassellaAmerigo CaselaAmerigo CasellaAmerigo CassellaAmerigo P. CassellaAmerigo Paolo CassellaAmerigo Paolo CassellaAnerigo CassellaC. AmerigoC. CasselaC. CassellaCasellaCasella AmerigoCaselloCassanellaCasselaCassellCassellaCassella A.Cassella/AmergioCasselloCassettaD. CassellaL. CassellaP CassellaP CassellaP. CassellaP. A. CassellaP. CasellaP. CaselleP. CassalaP. CasseellaP. CasselaP. CassellaP.A.CassellaP.CasellaP.CasseellaP.CassellaPamela RichiniPaolo CasellaPaolo CassellaPiero CassellaS. CassellaSosella + +3461950Penelope SpencerClassical violinist, born in New-Zealand.Needs Votehttps://www.penelopespencer.eu/en/Penny SpencerThe English Baroque SoloistsGabrieli PlayersFlorisma + +3461952Frøde JakobsenNorwegian classical trumpeterNeeds VoteThe English Baroque Soloists + +3462414Olivier BaumontFrench harpsichordist (born 15 August 1960 in Annecy, France).Correcthttp://www.olivierbaumont.fr/BaumontО. Бомон + +3462570Winona FifieldClassical violinist.Needs VoteWinona VogelmannThe Academy Of St. Martin-in-the-Fields + +3462792Stan Getz And His Five BrothersNeeds Major ChangesStan Getz Five BrothersStan Getz Five Brothers (Stan Getz Five Brothers Bop Tenor Sax Stars)Stan Getz Five Brothers Bop Tenor Sax Stars + +3463352Gino BozzaccoAmerican trumpet playerCorrectGino BozaccoHarry James And His Orchestra + +3463353John CochranAmerican big band trombonist and vocalist. He performed with Freddy Martin's big band and other groups.Needs VoteJohnny CochranJohnny CochraneHarry James And His OrchestraFreddy Martin And His OrchestraThe Martin MenHarry James And His Big Band + +3463358Norman ParkerJazz pianist.CorrectHarry James And His Orchestra + +3463453Michel NguyenFrench violist.CorrectOrchestre National De L'Opéra De Paris + +3463982Antoine SiguréFrench (born in Orléans, France) classical Timpani/Timbal player and Timpani Professor (at the London Performing Academy Of Music). +Percussionist in [a=Oxalys]. He joined the [a=Philharmonia Orchestra] as Principal Timpani in October 2016. +Also keen cyclist and audiophile enthusiast.Needs Votehttps://www.facebook.com/antoinesigurehttps://twitter.com/antoinesigure?lang=enhttps://philharmonia.co.uk/bio/antoine-sigure/Antoine SigurePhilharmonia OrchestraSydney Symphony OrchestraPygmalionOxalys + +3463983Randol RodriguezClassical tenor vocalistNeeds Votehttps://www.facebook.com/randol.rodriguezRandol Rodriguez RubioLe Concert SpirituelLes Cris de ParisPygmalionEnsemble CorrespondancesChoeur Arsys BourgogneGalilei ConsortLa Chapelle Harmonique + +3463987Violaine Le ChenadecFrench classical soprano vocalistNeeds VoteLe Concert SpirituelPygmalionEnsemble CorrespondancesLa Guilde Des Mercenaires + +3463993Benoit Vanden BemdenBelgian Violone (Double-Bass) + Viola da Gamba playerNeeds VoteBenoît Vanden BemdenLa Petite BandeRicercar ConsortEnsemble StradivariaCapriccio StravaganteNew Dutch AcademyPygmalionVox LuminisScherzi MusicaliLa RêveuseHathor ConsortLes MuffattiEnsemble MasquesThe Belgian Baroque SoloistsLe Concert Étranger + +3463996Marie RouquiéFrench classical violinistNeeds VoteMarie RouquieLe Concert SpirituelConcerto SoaveEnsemble StradivariaPygmalionEnsemble AuroraEnsemble CorrespondancesInaltoL'AchéronGalilei ConsortEnsemble Les SurprisesLe Banquet CélesteLes Ombres (3)Le Mercure GalantL'Escadron Volant de la Reine + +3464172Muriel CarmenMuriel R. CarmenAmerican violist and teacher, died in February 2009 at the age of 86 in Cleveland, Ohio. She was the aunt of [a180926].CorrectThe Cleveland Orchestra + +3464174Joan SiegelJoan Siegel née HowieAmerican violinist, died on August 23, 2014 in Sarasota, Florida at the age of 83.CorrectThe Cleveland Orchestra + +3464177Catharina MeintsAmerican cellist and Associate Professor of Viola da Gamba and Cello. Wife of the oboist [a=James Caldwell (2)]Needs Votehttps://www.oberlin.edu/catharina-meintsCatharine MeintsMeintsThe Cleveland OrchestraNational Symphony OrchestraSmithsonian Chamber OrchestraThe Oberlin Baroque Ensemble + +3464178Marie SetzerAmerican violinist, born in 1920 and died in October 2006. She was married to [a3518407].CorrectThe Cleveland Orchestra + +3464180Keiko FuriyoshiAmerican violinist, born 1946 in Japan.CorrectThe Cleveland Orchestra + +3464181Elizabeth CamusAmerican oboist and English horn player.CorrectThe Cleveland Orchestra + +3464183Yoko MooreClassical violinist.CorrectThe Cleveland OrchestraTulsa Philharmonic OrchestraDallas Symphony Orchestra + +3464184Lisa WellbaumAmerican harpist, born in 1948. She's married to [a784712].Needs VoteThe Cleveland OrchestraThe New Orleans SymphonyPanorámicos + +3464185Roberta StrawnAmerican violinist.CorrectThe Cleveland Orchestra + +3465574Székely AttilaClassical cellistNeeds VoteAttila SzekelyAttila SzékelySzekely AttilaWiener SymphonikerThe Vienna Chamber Ensemble + +3466525Francis BradleyFrancis G. Bradley born BorsdorfBritish classical horn player. Born ~1899 in London, England, UK. +He changed his name from Borsdorf during the 1st World War. He was in [a=The Scots Guards] from about 1914 and he later played for the [b]Margate Municipal Orchestra[/b] in Kent, England. He was 2nd Horn in the [a=London Symphony Orchestra] (1924-1931) and in the [a=BBC Symphony Orchestra] from its foundation in 1930 until about 1932. [a=Sir Thomas Beecham] chose him as his Principal Horn when he formed the [a=London Philharmonic Orchestra] in 1933; he held the post until 1954. He ended up at [a=The English National Opera Orchestra], where he retired in 1976, aged 77. +His father was the classical horn virtuoso, Adolf Borsdorf (a German who became British national in 1887), who was one of the founder members of the London Symphony Orchestra in 1904.Needs Votehttps://www.genealogy.com/forum/surnames/topics/bradley/2291/F. BradleyLondon Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraThe English National Opera OrchestraBusch Chamber PlayersThe Scots Guards + +3466941William MassingillAmerican jazz saxophonistNeeds VoteBill MasinghillBill MasingillBill MassinghillBill MassingillJeff MasingillJeff MassingillWilliam MasingillHarry James And His OrchestraClaude Thornhill And His OrchestraMed Flory Orchestra + +3466942Harold MoeAmerican jazz trumpeterCorrectHal MoeHarry James And His Orchestra + +3467351Sam ScavoneAmerican jazz trumpeter.Needs VoteSam ScavoniWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467352Tony PhillatoniAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467353Freddy WoodAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467354Joe ClarvadoneAmerican jazz trombonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467355Larry MosherAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467356Bo BoydAmerican tenor saxophone player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467357Al PuccinAmerican tenor saxophone player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3467959Domenic Romeo (3)American Banjo and Guitar player in the 1920's.Needs VoteRoger Wolfe Kahn And His OrchestraTom Timothy And His Frivolity Club Orchestra + +3467961Harold SturrDixieland/Swing era clarinet and tenor sax playerNeeds VoteRoger Wolfe Kahn And His Orchestra + +3470430Ramón Ortega QueroSpanish oboist.Needs Votehttps://ramonortegaquero.com/about-2https://es.wikipedia.org/wiki/Ramón_Ortega_QueroSymphonie-Orchester Des Bayerischen RundfunksVariation5 + +3470910Michael GläserGerman chorus master, born in Chemnitz, Saxony.Needs VoteMichael GlaserRundfunkchor LeipzigThomanerchor + +3471374José Basso Y Su Orquesta TípicaNeeds Major ChangesJ. Basso Y Su Orq. Tip.J. Basso Y Su Orq. TípicaJ. Basso Y Su Orq.TípicaJ. Basso Y Su Orquesta TípicaJose Basso And His Argentine OrchestraJose Basso And His OrchestraJose Basso Y Su Orq. TípicaJose Basso Y Su OrquestaJose Basso Y Su Orquesta TipicaJose Basso Y Su Orquesta TípicaJosé Basso And His OrchestraJosé Basso E Sua OrquestraJosé Basso Y Su Orq.José Basso Y Su Orq. Típ.José Basso Y Su Orq. TípicaJosé Basso Y Su OrquestaJosé Basso and His OrchestraJosé Basso y Su OrquestaOrq. De José BassoOrq. de José BassoOrquesta De José BassoOrquesta Jose BassoNéstor MarconiJosé Basso + +3471386José BassoJosé Hipólito BassoArgentinian pianist, composer and orchestra leader +Also used alias: Raúl Román +(30 Jan. 1919 - 14 Aug. 1993) +Needs Votehttp://www.todotango.com/creadores/ficha/435/Jose-BassoBassoJ BassoJ. BassoJose BassoJosé BasoRaul RománJosé Basso Y Su Orquesta Típica + +3471531Raúl Garello Y Su Orquesta TípicaNeeds Major ChangesOrq. Dir. Raúl GarelloOrquesta De Raúl GarelloOrquesta Raúl GarelloOrquesta Típica PorteñaRaul Garello Y OrquestaRaul Garello Y Su Gran Orq.Raul Garello Y Su Gran OrquestaRaúl GarelloRaúl Garello & His Grand OrchestraRaúl Garello Y Su Gran OrquestaRaúl Garello Y Su OrchestaRaúl Garello Y Su OrquestaRaúl Garello y Su OrquestaRaúl GarelloRodolfo FernandezSimón Broitman + +3471588Thomas HorchGerman trombonist, born 1964 in Hanau, Germany.Needs VoteT. HorchTh. HochTh. HorchホックスSymphonie-Orchester Des Bayerischen RundfunksGerman BrassMünchner Posaunen QuartettBrass Quintet München + +3471589Heiko TriebenerGerman tubist, born 24 November 1964 in Berlin, Germany.Needs Votehttps://en.wikipedia.org/wiki/Heiko_TriebenerOrchester Der Beethovenhalle BonnBamberger SymphonikerRundfunk-Sinfonieorchester SaarbrückenGerman BrassMelton Tuba QuartettWestfälisches Blechbläser-EnsembleKuhlo-Horn-Sextett 1991 + +3471813Gish GilbertsonAmerican Saxophonist in the swing era.Needs VoteHoward "Gish" GilbertsonJack Teagarden And His OrchestraBenny Goodman And His Orchestra + +3471814John PragerCredited as jazz alto saxophonist of the Swing Era.Needs VoteBenny Goodman And His Orchestra + +3471818Hud DaviesCredited as drummer.Needs VoteBenny Goodman And His Orchestra + +3471821John Pepper (2)Big band baritone saxophonist.Needs VoteJohnny PepperLarry Clinton And His OrchestraBenny Goodman And His OrchestraYank Lawson And His Orchestra + +3471929William Franklin (2)American jazz trombonist and singer. +Born : 1906 in Memphis, Tennessee. +Died : ? .Needs Votehttp://en.wikipedia.org/wiki/William_Franklin_(singer)Billy FranklinW. FranklinEarl Hines And His OrchestraKing Oliver & His OrchestraRichard Jones And His Jazz Wizards + +3472022Sarah Bevan-BakerClassical violinistNeeds VoteSarah Bevan BakerThe Chamber Orchestra Of EuropeScottish Chamber OrchestraConcerto CaledoniaDunedin ConsortHebrides Ensemble + +3472042Thomas Rose (2)Credit for boy treble vocals.Needs VoteThe King's College Choir Of Cambridge + +3473656Harriet CawoodClassical cellistNeeds VoteThe English Baroque Soloists + +3473657Deirdre WardClassical violinistNeeds VoteThe English Baroque Soloists + +3473659Ulli EngelThe Austrian violinist Ulli Engel studied with Ernst Kovacic at the Musikhochschule in Vienna before attending the Royal College of Music in London to study with Andrew Manze. +Since 2001 Ulli has been concert master with the Wiener Akademie and Capella Leopoldina, Graz.Needs VoteThe English Baroque SoloistsEnsemble AccentusCapella LeopoldinaSaitsiing + +3473743Richard DegenkolbeNeeds Major Changes + +3474104Bixie CrawfordBirdie Marjorie HairstonBorn 1921 +Died: 1988 +Born Birdie Marjorie Hairston in 1921 in Guthrie, seat of the Logan County, in north-central Oklahoma just to the north of Oklahoma City. She attended Fisk and Lincoln Universities, where she majored in music, studying the piano, the alto sax, and the congas. Benny Carter heard her singing at a picnic in a park one day and hired her the next day. After about a year in Carter's band, she worked in the Jimmie Lunceford Orchestra shortly before the leader died in 1947. + +She did three months with Count Basie and gigged with Louis Jordan in 1949-1950, then became a schoolteacher in Los Angeles. When Count Basie reestablished his big band in 1951, she was invited to join and remained with him for about three years. In the early sixties, she returned to school teaching. She was then known as Bixie Crawford Wyatt. She died in 1988 in Culver Cirty, California.Needs Votehttps://adp.library.ucsb.edu/names/355669B. CrawfordBixie Crawford And OrchestraCrawfordBixie HarrisCount Basie Orchestra + +3474338Josef BierlmeierGerman classical trumpeterNeeds VoteMünchner RundfunkorchesterGerman Brass + +3474346Siegfried HungerClassical cellistNeeds VoteNeues Bachisches Collegium Musicum Leipzig + +3474348Jürgen DietzeClassical oboist, born in 1954 in Leipzig, GDR.Needs VoteRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigMDR Sinfonieorchester + +3474400Jimmy EmmertJazz trombonistNeeds VoteWill Bradley And His OrchestraBob Crosby And His Orchestra + +3474658Hubert KollerClassical violistNeeds VoteOrchester Der Wiener Staatsoper + +3475423Ellen KomorowskyRecorder playerNeeds VoteMusica Antiqua Köln + +3475424Eva BartosClassical viol player.Needs VoteEva BartorMusica Antiqua Köln + +3475543Eva-Liisa EhalaEstonian violinist, born July 6, 1978 in Tallinn.Needs VoteEeva-Liisa EhalaEeva-Liisa TammikuEstonian National Symphony OrchestraPärnu Linnaorkester + +3475564Anne IlvesEstonian violist/violinist, born in 1985.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraString Quartet Prezioso + +3476482Owen RobertsNeeds Major ChangesOwen Morgan Roberts + +3477147Julia FalkGerman alto vocalistCorrectFalkChor Des Bayerischen Rundfunks + +3477903Christa ZecherleClassical violinist. A member of the [a604396] from 1960 to 1995.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-Orchester + +3478263Nicholas Hill (3)French horn playerNeeds VoteNick HillEnglish Chamber Orchestra + +3478510Bill Palmer (3)American trombonistCorrectJimmy PalmerPalmerHarry James And His OrchestraHarry James & His Music Makers + +3479322Philippe PoncetFrench timpanist and percussionist.CorrectPhililppe PonsetOrchestre National De L'Opéra De Paris + +3479323Sylvie DukaezFrench timpanist and percussionist.CorrectOrchestre National De L'Opéra De Paris + +3479408Klaus BehrendNeeds Major Changes + +3480057Kerstin HüllemannGerman violistNeeds VoteKerstin Hüllemann-WatsonEnsemble ModernBundesjugendorchesterhr-Sinfonieorchester + +3480410Kris TrindlKristopher TrindlMusician, music producer and songwriter. Was the third member of Krewella but split from the group on 20 September 2014Needs VoteK. TrindlKris "Rain Man" TrindlKristopher "Rain Main" TrindlKristopher "Rain Main" TrindleKristopher "Rain Man" TrindlKristopher 'Rain Man' TrindlKristopher TrindlRain Man (3)Krewella + +3480900Kate HellerBritish classical viola playerNeeds VoteThe English Baroque SoloistsOrchestra Of The Age Of Enlightenment + +3480955Kate LathamClassical oboistNeeds VoteThe English Baroque SoloistsClassical Opera + +3480956Penny SpencerClassical violinistNeeds VoteThe English Baroque Soloists + +3482611Francesco CollettiClassical violinistNeeds VoteIl Giardino ArmonicoCappella GabettaDivino Sospiro + +3483338Colin BradburyBritish classical clarinettist and academic +Born: 4th March 1933 Blackpool, England +Died: 28th May 2023 London, England +Founding member of [a=National Youth Orchestra Of Great Britain]. Principal Clarinet of the [a=BBC Symphony Orchestra] from 1960 to 1993. Professor of the clarinet at the Royal College of Music from 1963 to 2000. +Father of [a=John Bradbury (4)].Needs Votehttps://www.imdb.com/name/nm4901294/?ref_=nv_sr_srsg_1_tt_0_nm_8_q_colin%2520bradburyBBC Symphony OrchestraNational Youth Orchestra Of Great BritainLondon Wind OrchestraThe Military Ensemble Of London + +3484177Larry TiceEarly jazz reedistNeeds VoteJean Goldkette And His OrchestraSam Ross Silvertown Orchestra + +3484532Simon GabrielClassical trumpeter. +Member of [b]The Gascoigne Orchestra[/b].Correcthttps://www.linkedin.com/in/simon-gabriel-3a593358/?originalSubdomain=ukPhilharmonia OrchestraThe English Baroque Soloists + +3486279Adrian SpillettClassical percussionistNeeds VoteAidy SpillettCity Of Birmingham Symphony OrchestraColin Currie Group + +3488582Uwe KleinsorgeGerman oboist, born in 1954.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +3488771Ottavio CortiSwiss solo violist (1911-2003) in Zürich, father of [a2695302], co-founder of [a1483476] in 1960. He was student of [a6591665].Needs Votehttps://www.nzz.ch/article92LLI-1.298482Die Kammermusiker ZürichTonhalle-Orchester Zürich + +3489376Mark Kennedy (8)Former chorister at [l266090] (1988-1993). +In 1999, he won a choral scholarship to New College, Oxford. He was appointed Assistant Director of Music at Summer Fields, Oxford, in 2003, and in 2008 he succeeded Paul Ekins as Director of Music at the Westminster Cathedral Choir School.Needs Votehttp://www.boysoloist.com/artist.asp?VID=679Westminster Cathedral Choir + +3490536William NowinskiViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +3490780Daphna RavidClassical violinist.Needs VoteDafna Ravidדפנה רבידThe English Baroque SoloistsAccademia Daniel + +3491132Gerben HoubaDutch classical tenor vocalistNeeds Votehttp://www.gerbenhouba.com/1/home.htmlCappella Amsterdam + +3491871David CarpNeeds VoteD. M. CarpDavid M. CarpOrchestra Of St. Luke's + +3491917Michele SantiClassical trumpeterNeeds VoteI BarocchistiVenice Baroque OrchestraArmonia delle Sfere + +3492311Martin MerkerCellist.Needs VoteCamerata BernAargauer Symphonie OrchesterOffenburg String Trio + +3492312Valentina BernardoneClassical violinist.Needs VoteLondon Symphony OrchestraCamerata BernResidentie OrkestOrchestra MozartNederlands Philharmonisch Orkest (2) + +3492370Dan BriscoeJazz pianist.Needs VoteDixieland Jug Blowers + +3493953Gene KomerJazz trumpeterCorrectEugene KomerHarry James And His Orchestra + +3493954Joe BarbaryAmerican violinist during the big band eraCorrectJoesph BarbaryHarry James And His Orchestra + +3493955Lenny CorrisAmerican jazz trumpeterNeeds VoteLeonard CorrisHarry James And His OrchestraHarry James & His Music Makers + +3493961Paul LowenkronAmerican violinist from the big band eraCorrectPaul LoenkronPaul LovenkronPaul LowekronHarry James And His Orchestra + +3493962Bob BeinAmerican violinist during the big band eraNeeds VoteRobert BeinHarry James And His OrchestraHarry James & His Music Makers + +3494034Bob Morgan (6)American jazz guitaristCorrectHarry James And His Orchestra + +3495319Bernd KünkeleGerman horn player, born 1964 in Kiel, Germany.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgGerman Brass + +3495744Melvyn JerniganBass trombonist, booking and arts manager, recording and television producer from St. Louis, MissouriNeeds VoteMel JerniganSaint Louis Symphony OrchestraSt. Louis Brass QuintetSummit Brass + +3495773Malu LinClassical violinistNeeds VoteMalu Lin SwayneGabrieli PlayersThe Music PartyYorkshire Baroque SoloistsThe MozartistsApollo Chamber Orchestra + +3495775Kate CookMezzo-Sopranos, Alto VocalistCorrecthttp://www.musicaglotz.com/musiciens/cook-allison-mezzo-soprano/?lang=enGabrieli Consort + +3495850Richard Stout (2)American trombonist.Needs VoteThe Cleveland OrchestraSummit BrassJacksonville Symphony Orchestra + +3496035Henrik Wahlgren (2)Swedish oboist, born in 1967 in Stockholm, Sweden.CorrectGewandhausorchester LeipzigStaatskapelle DresdenArmonia Ensemble + +3497449Matthias EttmayrGerman bass vocalist.Needs VoteChor Des Bayerischen RundfunksBalthasar-Neumann-ChorGruppe Für Alte Musik München + +3498005Dick MartinezBig Band/Swing jazz Trumpet and mellophonium player. Needs VoteStan Kenton And His Orchestra + +3498064Maddox & TownendNeeds Votehttps://www.facebook.com/maddoxtownendhttps://soundcloud.com/maddoxtownendPaul Maddox & Sam TownendPaul MaddoxSam Townend + +3498158Robert Ward (9)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +3498163Kimberly Wright (3)American horn player.Needs VoteSan Francisco SymphonyChicago Symphony Orchestra + +3498464Marcio Soares-HolandaBrazil born countertenor vocalistNeeds Votehttps://www.casademateus.pt/en/participantes/biographical-note-marcio-soares-holanda/Marcio Soares HollandaLes Arts FlorissantsChoeur de Chambre de NamurEnsemble Correspondances + +3498568Frank Di PrimaCredited as banjo player.Needs VoteLanin's Arkansaw Travelers + +3498569Ward Archer (2)Early jazz drummerNeeds VoteLanin's Arkansaw Travelers + +3498812Heinrich RehkemperGerman operatic baritone, born 23 May 1894 in Schwerte, Germany and died 30 December 1949 in Munich, Germany.CorrectHeinrich Rehkemper With Piano Ace.Heinrich Rehkemper, With Piano Acc.Rehkemper + +3499879Nicholas BretonNeeds Major ChangesBretonNicolas Breton + +3501164Валентин ЛукинRussian violin player from Saint Petersburg +Born: 1954, LeningradNeeds Votehttp://www.philharmonia.spb.ru/persons/biography/4649/Valentin LukinLeningrad Philharmonic Orchestra + +3501165Николай ТкаченкоRussian violin player from Saint PetersburgNeeds VoteNikolay TkachenkoLeningrad Philharmonic Orchestra + +3501166Ольга РыбальченкоОльга Фёдоровна Рыбальченко Russian violin player from Saint Petersburg +Born: 1949, LeningradNeeds Votehttp://olgarybalchenko.com/bio/Olga RibaltchenkoLeningrad Philharmonic Orchestra + +3501302Ioannis VassilakisClassical bass vocalistCorrectCoro Della Radio Televisione Della Svizzera Italiana + +3501303Renato MoroClassical Tenor vocalistNeeds VoteCoro Della Radio Televisione Della Svizzera ItalianaChappelle Musicale de la Trinité des monts, Mura + +3501307Andrea InghiscianoItalian classical cornett & trumpet player Needs VoteCollegium VocaleConcerto ItalianoI BarocchistiCantar LontanoEnsemble San FeliceLa PifareschaConcerto RomanoIl Gusto BaroccoEnsemble CantimbancoI Cavalieri Del CornettoEnsemble Primi ToniEnsemble ClaudianaEnsemble Il NarvaloThe Italian Consort + +3501308Salvo VitaleItalian bass vocalistNeeds Votehttp://www.larisonanza.it/soloist/salvo-vitale/VitaleChoeur de Chambre de NamurConcerto ItalianoEnsemble "Concerto"Coro Della Radio Televisione Della Svizzera ItalianaI Madrigalisti AmbrosianiTemplum MusicaeWorld Chamber Choir + +3501309Baltazar ZunigaBaltazar ZúñigaMexican Tenor vocalist and EngineerNeeds Votehttp://www.bach-cantatas.com/Bio/Zuniga-Baltazar.htmBaltazar ZuñigaBaltazar ZúñigaCollegium VocaleLa Petite BandeCoro Della Radio Televisione Della Svizzera ItalianaCoro "Color Temporis"Ensemble San FeliceConcerto RomanoContrArco ConsortEnsemble A Musicall BanquetAccademia Degli Imperfetti + +3501310Silvia PozzerClassical soprano vocalistNeeds VotePozzerSylva PozzerCoro Della Radio Televisione Della Svizzera ItalianaEnsemble Weltgesang + +3502347Robert Evans (8)Classical hornistNeeds VoteThe Academy Of Ancient MusicGabrieli PlayersHanover Band + +3504369Galahad SamsonClassical dutch violistNeeds VoteRotterdams Philharmonisch Orkest + +3504371David WorswickBritish classical violinist, composer, arranger, and violin teacher. Born in 1983 in Liverpool, England, UK. +He studied at the [l527847]. Former member of the [a=London Symphony Orchestra] (2010-2017).Needs Votehttps://www.facebook.com/davidworswickhttps://twitter.com/dworswick?lang=enhttps://www.youtube.com/channel/UCG5RSLVPMtOdtjKOwVC6OqQhttps://open.spotify.com/artist/2NGTZ1DliIuPebrn6JVPGzhttps://music.apple.com/ba/artist/david-worswick/1014519113https://www.cityshowcase.co.uk/biographies/show/david-worswickhttps://www.theossianensemble.com/david-worswickDave WorswickLondon Symphony OrchestraThe London Steve Reich EnsembleOssian EnsembleChoir Of London Orchestra + +3505543David Baumgarten (2)US folk singer, guitarist and curator of sea shanties and mariner folk music. Longtime resident of Monterey, California and founder of the Cannery Row Historical Society.Needs VoteDave BaumgartenThe Roger Wagner Chorale + +3508320Donald E. McComasDonald Earl McComasAmerican trumpet player, born 3 December 1932 and died 16 March 2011.Needs VoteDon McComasThe Philadelphia OrchestraNational Symphony OrchestraRed Johnson And His Orchestra (2) + +3508321Stevens HewittAmerican oboist and author, born 1924 in New York City, New YorkCorrectThe Philadelphia OrchestraBaltimore Symphony OrchestraNational Symphony Orchestra + +3508322Charles M. MorrisClassical wood-wind instrumentalistNeeds VoteThe Philadelphia Orchestra + +3508323William De PasqualeAmerican violinist, born 15 July 1933 in Philadelphia, Pennsylvania and died 8 April 2012 in Philadelphia, Pennsylvania. He was the brother of [a395914] and [a543673].CorrectThe Philadelphia Orchestra + +3508596Mario SerritelloAmerican jazz trumpeter in the Swing era.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/343173/Serritello_MarioMarion SerritelloHarry James And His OrchestraWoody Herman And His OrchestraThe Band That Plays The Blues + +3509288Natalie James (2)Evelyn Natalie James née CaineBritish classical wood-wind instrumentalist (cor anglais / oboe). Born 6 June 1909 - Died 28 December 2008. +She was Principal Cor Anglais with the [a=London Symphony Orchestra] (1935-1940). +She married [a=Cecil James] in 1938, thus becoming daughter-in-law of [a=Wilfred James].Needs Votehttps://en.wikipedia.org/wiki/Natalie_Cainehttps://www.theguardian.com/music/2009/feb/17/obituary-natalie-caineNathalie JamesNatalie CaineLondon Symphony OrchestraLondon Baroque Ensemble + +3510303Georg SumpikGeorg Sumpik (born in Prague, Czech Republic) is a classical violinist.Needs VoteGeorg SumpigSinfonieorchester Des SüdwestfunksThe Prague Symphony OrchestraThe Czech Philharmonic OrchestraWiener SymphonikerNew Vienna String QuartetEnsemble 13Badisches KammerorchesterStuttgarter Horn-TrioDie Instrumentisten Wien + +3510658Alberto MacchiniClassical percussion + timpani playerNeeds VoteOrchestra Di Padova E Del VenetoSonatori De La Gioiosa MarcaMala PunicaL'AmorosoLa Bande des Hautbois du RoyGruppo Di Strumenti Antichi Del Concentus Musicus Patavinus + +3511750John NotkinJohn NotkinUK hardcore, hard dance producer from Windsor, EnglandNeeds VoteJ.NotkinThe Lamin8ers + +3511751Jo AshtonUK hardcore, hard dance producer from Windsor, EnglandNeeds VoteJ.AshtonThe Lamin8ers + +3512356Kathleen StubbingsClassical wind player.Needs VoteNew London Consort + +3513340Paulette BayleyViolinistNeeds VotePaulette BaileyHallé Orchestra + +3513342Dale CullifordBritish cellistNeeds VoteHallé OrchestraApollo Chamber Orchestra + +3513343Nick TrygstadAmerican cellist, based in the UK.CorrectNicholas TrygstadHallé Orchestra + +3513436Hanna KappelinHanna Margareta KappelinClassical soprano vocalist based in Copenhagen, Denmark, born on May 8, 1980 in Söndrum, Halmstad, Halland, Sweden. + +From 2002 to 2008, Kappelin studied singing at [l348703] in Copenhagen, Denmark where she graduated in 2009.Needs Votehttp://www.bach-cantatas.com/Bio/Kappelin-Hanna.htmhttps://www.facebook.com/hanna.kappelin.5https://www.imdb.com/name/nm12071101/https://www.linkedin.com/in/hanna-kappelin-48584a4/Theatre Of VoicesArs Nova CopenhagenVisa Röster + +3514359Erich Hartmann (2)Erich Hartmann (26 January 1920, Leipzig, Germany - 6 July 2020) was a German composer and contrabassist.Needs VoteHartmann-QuartettBerliner PhilharmonikerKontrabaßquartett Der Berliner Philharmoniker + +3514754Edward HoffmanAmerican trumpeterNeeds Votehttps://www.facebook.com/edward.hoffman.1420/Baltimore Symphony Orchestra + +3515070George DrexlerAmerican flute player, born 27 September 1906 in New York, New York and died 21 September 1975 in Los Angeles, California.CorrectDrexlerThe Cleveland OrchestraLos Angeles Philharmonic Orchestra + +3516614Sidney WeissSidney Albert WeissAmerican violinist, born 28 June 1928 in Chicago, Illinois. He's married to [a3516612]. Concertmaster of the [a837562], 1967-1972. +Invented a [url=https://en.wikipedia.org/wiki/Bow_frog]bow frog[/url] and applied for a patent, later withdrawn.Needs Votehttp://pronetoviolins.blogspot.com/2012/11/sidney-weiss.htmlhttps://www.summitrecords.com/artist/the-weiss-duo-2/https://www.stokowski.org/Principal_Musicians_Chicago_Symphony.htmhttps://patents.google.com/patent/EP0283624A2/enSid WeissSidney A. WeissSydney WeissThe Cleveland OrchestraOrchestre Philharmonique De Monte-CarloLos Angeles Philharmonic OrchestraChicago Symphony OrchestraThe Weiss Duo + +3516700Arben SpahiuClassical violinist, born in Albania.CorrectBayerisches StaatsorchesterAmbassade Orchester Wien + +3516701Peter WöpkeGerman cellist.CorrectP. WöpkePeter WoepkeWöpkeBayerisches StaatsorchesterThe Sinnhoffer QuartetMünchner Solisten EnsembleBudapest Trio (2) + +3518405Kurt LoebelAmerican violinist, born 19 December 1921 in Vienna, Austria and died 18 October 2009 in Cleveland, Ohio. He was the father of [a2518099].Needs Votehttp://www.cleveland.com/obituaries/index.ssf/2009/10/kurt_loebel_longtime_cleveland.htmlThe Cleveland OrchestraDallas Symphony OrchestraThe Symphonia Quartet + +3518406Thomas LibertiAmerican classical cellist born April 24, 1922, died October 16, 1995. +Liberti was part of the New York Philharmonic from 1966 until his death in 1995.Needs VoteNew York PhilharmonicThe Cleveland OrchestraThe Symphonia Quartet + +3518407Elmer SetzerAmerican violinist, born 1920 in Jacksonville, Florida and died 30 January 2007. He was married to [a3464178].Needs VoteThe Cleveland OrchestraBaltimore Symphony OrchestraThe Symphonia Quartet + +3519292Horst PietschGerman violinist.Needs VoteRundfunk-Sinfonieorchester BerlinBrahms-StreichquartettHantzschk-Quartett + +3520410Hermann BethmannGerman violist (1910 - 1977).Needs VoteBerliner PhilharmonikerDrolc-QuartettPhilharmonisches Oktett Berlin + +3520411Alfred BürknerGerman clarinetist.Needs VoteAlfred BuerknerBerliner PhilharmonikerPhilharmonisches Oktett Berlin + +3520412Die Kammermusikvereinigung Der Berliner PhilharmonikerNeeds VoteBerlin Philharmonic Chamber EnsemblesBerliner KammermusikensembleChamber Music Ensemble Of The Berlin Philharmonic OrchestraChamber Music Ensemble of the Berlin Philharmonic OrchestraDie Kammermusikvereinigung der Berliner PhilharmonikerEnsemble De Musique De Chambre De L'Orchestre De BerlinEnsemble De Musique De Chambre De L'Orchestre Philharmonique De BerlinInstrumentalisten des Philharmonischen Kammerorchesters BerlinKammermusik-Vereinigungen der Berliner PhilharmonikerKammermusikvereinigung Der Berliner PhilharmonikerKammermusikvereinigungenKomorni Orkestar Berlinske FilharmonijePhilharmonisches Oktett BerlinBerliner Philharmoniker + +3520789William Marshall (8)Gerard William MarshallAmerican singer, bandleader, actor, director and producer, born October 12, 1917 in Chicago, Illinois, USA, died June 8, 1994 in Paris, France. +He was married to +[a=Michèle Morgan] from 1942 to 1948 (divorced) +[a=Micheline Presle] from 1950 to 1954 (divorced), their daughter is [a=Tonie Marshall] and to +[a=Ginger Rogers] from 1961–1969 (divorced). +He became a vocalist for Fred Waring and his band, the "Pennsylvanians " before forming his own band in 1937.Needs Votehttp://en.wikipedia.org/wiki/William_Marshall_%28bandleader%29http://www.imdb.com/name/nm0550777/G. William MarshallGerald Wilson Orchestra + +3522350Andrea Jones (2)Classical violinist.Needs Votehttps://www.linkedin.com/in/andrea-jones-a817b2136/The SixteenThe English Baroque SoloistsThe Avison Ensemble + +3522353Stella WilkinsonClassical viola player.Needs VoteThe English Baroque Soloists + +3522354Anneke ScottBritish horn player, specializing in natural horn. + +One of the leading period performers of her generation, Anneke Scott has been described as "one of the finest horn soloists" (Early Music Review). Anneke plays frequently in the UK and continental Europe. She is principal horn of many ensembles including Sir John Eliot Gardiner’s Orchestre Révolutionnaire et Romantique and The English Baroque Soloists, The Orchestra of the Sixteen, Europa Galante, Dunedin Consort and Players and The King's Consort. + +Recent solo recordings have included sonatas for horn and fortepiano with fortepianist Kathryn Cok (Challenge Classics), the solo works of Jacques-François Gallay (Resonus Classics) and the first volume of a series of discs featuring instruments from the Bate Collection, Oxford. Forthcoming releases include a disc of works by Mozart with the Australian ensemble Ironwood and the Danzi horn sonatas with ensembleF2. + +In 2007 Anneke was elected an Associate of the Royal Academy of Music, an honour awarded to past students of the Academy who have distinguished themselves in the music profession and made a significant contribution to their field.Needs Votehttps://www.annekescott.com/http://www.princeregentsband.com/anneke-scotthttps://www.resonusclassics.com/anneke-scottThe SixteenThe English Baroque SoloistsLe Concert D'AstréeThe King's ConsortDunedin ConsortCollegium 1704Irish Baroque OrchestraGli Angeli GenèveInaltoLes Ambassadeurs (6)The Harmonious Society Of Tickle-Fiddle GentlemenThe Prince Regent's BandSyrinx (27)Boxwood & Brassensemble F2Divertissement (2) + +3523163Marianne SchumannGerman sopranoCorrectRIAS-Kammerchor + +3523164Jens Winkelmann (2)Tenor vocalistCorrectRIAS-Kammerchor + +3523165Horst-Heiner BlößGerman tenor vocalistCorrectRIAS-Kammerchor + +3523166Iris Anna DeckertClassical soprano vocalistNeeds VoteIris-Anna DeckertRIAS-KammerchorGli Scarlattisti + +3523168Gudrun BarthGerman sopranoCorrectRIAS-Kammerchor + +3523169Ursula KraemerGerman alto vocalistCorrectRIAS-Kammerchor + +3523172Dorte KüstersGerman alto vocalistCorrectRIAS-Kammerchor + +3523173Roland HartmannGerman bass vocalistCorrectRIAS-Kammerchor + +3523174Johannes NiebischGerman bass vocalistCorrectRIAS-Kammerchor + +3523480Richard King (8)American horn player.Needs VoteThe Cleveland OrchestraCenter City Brass QuintetThe Cleveland Octet + +3523481Joshua Smith (9)American flutist. +Joined The Cleveland Orchestra in September 1990.Needs Votehttp://www.soloflute.com/The Cleveland Orchestra + +3525217Wolfgang TluckGerman violist, born 1974 in Dachau, Germany.Needs VoteOrchester der Bayreuther Festspielehr-SinfonieorchesterEnsemble Frankfurt Concertant + +3525397Andréa BureauNeeds Major ChangesA. BureauAndreaAndrea BureauAndré Bureau + +3525477Johann Jakob WaltherJohann Jakob WaltherGerman violinist and composer (1650 – 2 November 1717).Needs Votehttp://en.wikipedia.org/wiki/Johann_Jakob_WaltherJ. J. WaltherJohann J. WaltherJohann Jacob WalterJohann Jacob WaltherJohann Jacob Walther IIJohann Jakob Walther IIJohann-Jakob WaltherWaltherStaatskapelle Dresden + +3525848Phil Brown (23)Philip R. BrownJazz drummerNeeds VoteStan Getz QuintetAl Haig QuartetRed Rodney New Stars + +3526463Jim Hewitt (3)American jazz trombonist.Needs VoteWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +3526657Ralph RudderJazz saxophonistNeeds VoteRalp RudderCharles Pierce And His Orchestra + +3526659Johnny MuellerUS american string and brass bassistNeeds VoteJohn MuellerCharles Pierce And His Orchestra + +3526660Dan LiscombEarly jazz pianistNeeds VoteDan LipscombDanny LipscombDanny LipscombeRay LitscombeCharles Pierce And His Orchestra + +3526661Stuart BranchJazz banjoistNeeds VoteCharles Pierce And His Orchestra + +3526662Paul KettlerEarly jazz drummerNeeds VotePaul KepplerCharles Pierce And His Orchestra + +3526663Charlie AltiereUS American cornetistNeeds VoteAltierAltiereAltieriAltieveCharles AltierCharlie AltierCharles Pierce And His Orchestra + +3527291Marco Pereira (2)Portuguese cellistNeeds VoteGulbenkian OrchestraRodrigo Leão & Cinema EnsembleQuarteto De Cordas De MatosinhosMatosinhos String Quartet + +3527529Susie MészárosSusie MészárosClassical violinist and violist. +She is currently professor at the Royal College of Music and member of the Chilingirian String Quartet. +She has been principal viola with the Camerata Salzburg and was also co-founder of the Villiers Piano Quartet and leader of Kent Opera for several years, as well as leader of several chamber groups including the Fitzwilliam Quartet. +Needs Votehttp://www.susiemeszaros.com/http://www.chilingirianquartet.co.uk/profiles.htm#susieSusie MeszarosSuzie MeszarosSuzie MészárosOrchestre Révolutionnaire Et RomantiqueChilingirian String QuartetCamerata Academica SalzburgFitzwilliam String QuartetThe Arc Of Light OrchestraThe Pleyel Ensemble + +3530399Carl Gottlieb ReißigerGerman composer, born 31 January 1798 in Belzig, Germany, died 7 November 1859 in Dresden, Germany. +Brother of [a3301819].Needs Votehttps://adp.library.ucsb.edu/names/103407C. G. ReissigerC. G. ReissingerCarl G. ReißigerCarl Gottlieb ReissigerCarl Gottlieb RessigerCarl Gottlob ReissigerCarl ReissigerCarl ReissingerK. ReißigerK.G. ReissigerKarl Gottlieb ReissigerKarl Gottlieb ReißigerKarl Gottlieb RessigerReissigerReissingerStaatskapelle Dresden + +3530755Jacques PosellAmerican double bassist, born 16 March 1909 in New York, New York and died 20 January 2000 in Cleveland, Ohio.CorrectThe Cleveland Orchestra + +3530757George GosleeAmerican bassoonist, born 31 December 1916 in Celina, Ohio and died 19 October 2006 in Chagrin Falls, Ohio.Needs VoteThe Philadelphia OrchestraThe Cleveland OrchestraRochester Philharmonic Orchestra + +3530760Bernhard GoldschmidtAmerican violinist, born 12 August 1925 in Berlin, Germany and died 29 October 1994 in Cleveland, Ohio. Moved to Shanghai in 1939, studied with Alfred Wittenberg. Emigrated to United States in 1947, joined the Baltimore Symphony the next year. Served in U.S. Air Force, then member of Houston Symphony as Principal Second Violinist. Joined Cleveland Symphony in 1958.Needs VoteThe Cleveland OrchestraHouston Symphony Orchestra + +3530898Gerhard CanzlerGerman violinist.CorrectBamberger Symphoniker + +3530928Stuart Johnson (8)Australian viola player.Needs VoteSydney Symphony Orchestra + +3531032Charles McCracken, Jr.Classical bassoonistNeeds VoteCharles McCrackenCharles McCracken Jr.Charles Pusey McCrackenMcCracken Charles PuseyThe American Symphony OrchestraOrpheus Chamber OrchestraEos OrchestraThe New York PopsSylvan Winds + +3531420Alexandra WoodEnglish classical violinist, born 1977 in Cookham. +She plays a violin made by Nicolo Gagliano in 1767.Needs Votehttp://www.alexandrawood.com/Home.htmlCity Of London SinfoniaThe London Telefilmonic OrchestraAurora Orchestra + +3532216Paul Madeira MertzPaul Madeira MertzAmerican pianist, jazz composer and arranger, born September 1, 1904 in Reading, Pennsylvania and died October 19, 1998 in Los Angeles, California. +Wrote the jazz classic "I'm Glad There Is You".Needs VoteMadeifaMadeiraMadeiralMaderiaMaderiraMadieraMadreiraMedeiraMertzModeiraP. MadeiraP. M. MertzP. MadeifaP. MadeiraP. Madeira MertzP. MaderiaP. MadieraP. MedieraP. MedifraP. MertzP. ModeiraP.M. MertzP.MadeiraP.MedifraPaul M. MertzPaul M. Mertz aka Paul MadeiraPaul MadeirPaul MadeiraPaul Madeira (Paul Mertz)Paul MadeirsPaul MaderiaPaul MadieraPaul MedeiraPaul MeretzPaul MertzPaul MetzPaul PertzPaulo MadeiraFrankie Trumbauer And His OrchestraBix And His Rhythm JugglersJean Goldkette And His Orchestra + +3533449Katherine BryanBritish flautist & liner notes author, born 1982 in ManchesterNeeds Votehttps://en.wikipedia.org/wiki/Katherine_Bryanhttp://www.katherinebryan.com/Royal Scottish National Orchestra + +3533484Jessie Anne RichardsonCellistNeeds VoteJessie Ann RichardsonLondon Symphony OrchestraPiatti Quartet + +3534208Jacques AutreauNeeds Major Changes + +3536236Domenico CeccarossiDomenico CeccarossiItalian French hornist, composer, arranger, conductor, music teacher and essayist. Husband of [a3536235]. + +Born November 19th, 1910 in Orosgna, Italy. +Died January 24th, 1997 in Ciampino, Italy. + +Born in Orosgna, Ceccarossi first started studying French horn in La Banda di Orsogna. He moved to Milan in 1931 and joined [a1229932]. A few years later he moved to Rome and played with [a1032278], and in 1944, he was appointed solo hornist with [a1229928], a position he held until 1970. From 1951 he taught at the Accademia Nazionale di Santa Cecilia and Conservatorio Statale di Musica "Giachino Rossini". In 1958, he founded [a3536234] together with his wife [a3536235] and pianist [a3722560]. +In 1982, he stopped giving concerts to focus on teaching, writing and arranging.Needs Votehttp://www.profesnet.it/ceccarossi/https://www.hornsociety.org/component/content/article/26/45-domenico-ceccarossi-1910-1997https://de.wikipedia.org/wiki/Domenico_Ceccarossihttps://it.wikipedia.org/wiki/Domenico_CeccarossiCeccarossiCorno SolistaD. CeccarossiDominico CeccarossiOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Sinfonica Di Roma Della RAIOrchestra Sinfonica Di Milano Della RAITrio Ceccarossi + +3537855Bram WigginsBramwell William WigginsBritish classical trumpeter & cornetist, arranger, composer, and teacher. Born 28 September 1921 in London, England, UK - Died 19 October 2014 in Buckingham, Buckinghamshire, England, UK. +He studied trumpet at the [l527847] under [a=George Eskdale], who, later, invited him to join the [a=London Symphony Orchestra] as Assistant 1st Trumpet and Principal Cornet. In 1941, whilst still a student, Bram enlisted into the [a=Band Of The Welsh Guards] based in London. He joined the LSO after he was demobbed, in 1947. In 1957, after ten years with the LSO, he accepted an appointment in Canada where he was Principal Trumpet with the [a=CBC Winnipeg Orchestra] and the [b]Royal Winnipeg Ballet[/b]. In Canada, he also worked as band director, conductor, trumpet soloist and adjudicator. On returning to the UK in 1960, he freelanced with all the major orchestras, and taught at the Royal Academy of Music. He examined regularly at the Royal Academy, [l680970], and [l=Birmingham Conservatoire].Needs Votehttps://open.spotify.com/artist/2dLmpqsYBthdPFur2WwcwDhttps://nl.wikipedia.org/wiki/Bram_Wigginshttps://www.hebu-music.com/en/musician/bram-wiggins.2288/https://warwickmusicgroup.com/2019/06/12/bram-wiggins/http://www.spartanpress.co.uk/spweb/creators.php?creatorid=1033https://lso.co.uk/more/news/272-bram-wiggins.htmlB. WigginsWigginsLondon Symphony OrchestraBand Of The Welsh GuardsCBC Winnipeg Orchestra + +3538242Michael Hunt (4)Lutenist.Needs VoteThe Consort Of Musicke + +3539886Benoît GaudelettePercussionistNeeds VoteOrchestre Philharmonique De Radio France + +3540357Louis SeguinClassical oboistNeeds VoteOrchestre National Du Capitole De Toulouse + +3541064Eddie Condon's QuartetNeeds Major ChangesEddie Condon QuartetEddy Condon's QuartetEddie Condon + +3541139Dantiez SaundersonDantiez Deandre SaundersonMiddle son of [a=Kevin Saunderson] and singer-songwriter [a=Ann Saunderson]. Born in Detroit, currently based in Chicago.Needs Votehttp://www.linkedin.com/in/dantiez-saunderson-8b333684http://www.mixcloud.com/dantiezsaundersonhttp://soundcloud.com/dantiezhttp://twitter.com/dantiez_sDantiezSaundersonE-DancerInner CityThe Saunderson BrothersSupply & Demand (4) + +3541251Aubrey MurphyAubrey Murphy (28 May 1965 - 1st July 2025) was an Irish violinist who was Concertmaster of the Cleveland Opera Theater and Opera Project Columbus. Previously Concertmaster of the Opera Australia (OA) Orchestra in Sydney, Australia and was Principal Violinist for the Royal Opera House Orchestra, London, UK.Needs Votehttp://en.wikipedia.org/wiki/Aubrey_MurphyOrchestra Of The Royal Opera House, Covent GardenOpera Australia + +3541253Claire DochertyBritish violinistCorrectScottish Chamber Orchestra + +3541255Michael LeaClassical double-bass playerCorrectThe English Baroque Soloists + +3542003Gunter TeuffelViola player, born in Stuttgart, Germany.Needs VoteGunther TeuffelRadio-Sinfonieorchester StuttgartCamerata Academica SalzburgRaphael-TrioSWR SymphonieorchesterLinos Harp Quintet + +3543718Anne MarckardtGerman oboist, born in 1973 in Berlin, GDR.Needs Votehttp://www.orsolino.de/marckard.htmRadio-Sinfonieorchester StuttgartPotsdamer Turmbläser + +3543720Alexander BarthaGerman violinistNeeds VoteOrchester der Bayreuther FestspieleHessisches Staatsorchester WiesbadenEnsemble Viardot + +3544631Caterino MazzolàCaterino Tommaso MazzolàCaterino Tommaso Mazzolà (18 January 1745 at Longarone – 16 July 1806 in Venice) was an Italian poet and librettist.Needs Votehttps://en.wikipedia.org/wiki/Caterino_Mazzol%C3%A0C. MazzolàMazzolaMazzolàMazzolà,Mazzolá + +3544995Lisa EmenheiserAmerican pianist and keyboardist.Needs Votehttps://www.lisaemenheiser.comLisa Emenheiser LoganNational Symphony OrchestraOpus 3 Trio + +3545008Jack EagleAmerican jazz trumpeter during the Big Band era. He is usually better known as a comedian and actor who appeared in commercials, most notably as Brother Dominic in a Xerox ad that first aired during the 1977 Super Bowl. He passed away in January 2008.Needs Votehttps://en.wikipedia.org/wiki/Jack_Eaglehttps://www.imdb.com/name/nm0247095/Georgie Auld And His OrchestraBuddy DeFranco And His Orchestra + +3546642Lev PerepelkinЛев Владимирович Перепёлкин1928 — 1972 +Russian classical flutist +Cyrilic spelling: Лев ПерепелкинNeeds VoteL. PerepyolkinЛ. ПерепелкинЛев ПерепелкинЛенинградский Квинтет Духовых Инструментов + +3547377Hans Georg FischerGerman violinist, born 1965 in Aalen, Germany.CorrectWürttembergisches KammerorchesterSüdwestdeutsche Philharmonie + +3548027Matt BaldoniNeeds Major ChangesM. Baldoni + +3549221Curtis HitchJazz band leader and pianistNeeds VoteHitHitchHitch's Happy Harmonists + +3549373Tony SpargoAmerican jazz DrummerNeeds VoteTony SbarbaroOriginal Dixieland Jazz BandNapoleon's EmperorsPee Wee Erwin And His Dixieland All-Stars + +3551605Ulla MiilmannClassical flautist.Needs VoteUlla Miilmann JørgensenDR SymfoniOrkestret + +3553772Peteris SokolovskisPeteris SokolovskisCellist.Needs Votehttps://twitter.com/peteriscellohttps://encoremusicians.com/Peteris-Sokolovskishttps://www.lamariette.co.uk/peteris-sokolovskisPēteris SokolovskisLondon Symphony OrchestraKremerata BalticaLondon Contemporary Orchestra + +3553776Daniel PioroEnglish violinist and composer.Needs Votehttps://danielpioro.com/https://twitter.com/danielpioroDaniel QuillScottish EnsembleChroma (5)The London Recording OrchestraHortus EnsembleSonderling Quartet + +3554032Claudio GarofaloNeeds Major ChangesGarofalo + +3555036Rachael BeeslyRachael BeesleyClassical violinist/directorNeeds Votehttp://rachaelbeesley.comRachael BeesleyLes Arts FlorissantsAnima EternaAustralian Brandenburg OrchestraLa Petite BandeIronwoodOrchestra Of The AntipodesIl Complesso BaroccoNew Dutch AcademyLes MuffattiLa Suave Melodia + +3555038Sean BishopAustralian viola player, and violin & bow dealer. +After studying violin and viola in Australia and the UK he worked with London's finest orchestras including [a=English Chamber Orchestra], [a=Philharmonia Orchestra], [a=BBC Symphony Orchestra] and [a=The Royal Philharmonic Orchestra]. +Director at Bishop instruments & bows (established in 2004).Correcthttps://bishopstrings.com/https://www.facebook.com/bishopstrings/https://twitter.com/bishopstringshttps://www.instagram.com/bishopstrings/https://www.linkedin.com/in/sean-bishop-9423301a/?originalSubdomain=ukhttps://www.youtube.com/channel/UCipnf8zD_A-UXmDfsg1lxUghttps://www.the-exhale.com/artist/sean-bishopPhilharmonia Orchestra + +3555359Tuula FleivikTuula Fleivik NurmoFinnish classical violistNeeds VoteTuula NurmoTuula Fleivik NurmoGöteborgs Symfoniker + +3555361Ragnar ArnbergLars Ragnar Wolter ArnbergSwedish classical clarinetist, born September 19, 1976.Needs VoteGöteborgs SymfonikerGageego! + +3555365Anders JonhällBo Anders JonhällSwedish classical flutist, born March 3, 1966.Needs VoteSveriges Radios SymfoniorkesterGöteborgs SymfonikerGageego! + +3555368Jenny RyderbergJenny Karin Margareta RyderbergSwedish classical double bassist, living outside of Gothenburg, active in [a1015406], born on November 6, 1979. + +Studies at, among others, the Kopparbergs Läns High School of Music in Falun, the Royal Academy of Music in Stockholm and the Hochschule der Künste in Berlin.Needs VoteGöteborgs SymfonikerGageego! + +3555965Bernard Altmann (2)Cellist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +3556366Heinz LohanClassical hornist.Needs VoteStaatskapelle DresdenCollegium Aureum + +3557293Noémie GatzlerCredited as liner notes translatorNeeds Vote + +3557766Martin Elliot (2)Bass vocalist.Needs VoteMartin ElliottSingcircleThe English Concert ChoirThe London Early Music Group + +3557824Erna GruberClassical harpistNeeds VoteConcentus Musicus Wien + +3557825Elisabeth HarnoncourtElisabeth Juliana de la Fontaine und d'Harnoncourt-UnverzagtAustrian classical mezzo-soprano and she studied recorder in Vienna. +Born May 29, 1954, Vienna, AustriaNeeds VoteElisabeth Von MagnusConcentus Musicus Wien + +3557826Karl JeitlerClassical trombonist and conductor, born 25 March 1947 in Neunkirchen, Austria.Needs Votehttp://www.karljeitler.at/Wiener PhilharmonikerConcentus Musicus WienDas Philharmonia Hornquartett WienEnsemble "11" + +3557832Edmund HastingsBritish tenor vocalistNeeds Votehttp://edmundhastings.comLondon VoicesCelestia Singers + +3557833John Robb (3)British classical tenor vocalistNeeds VoteThe King's College Choir Of Cambridge + +3557834John McMunnBritish classical tenor vocalistNeeds VoteThe King's College Choir Of CambridgeThe Choir Of Clare College + +3557835Benjamin WilliamsonBritish Alto & Countertenor vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Williamson-Benjamin.htmBen WilliamsonThe King's College Choir Of Cambridge + +3557839Rupert Reid (2)Classical bass/baritone vocalist.Needs Votehttp://www.rupertreid.co.ukThe King's College Choir Of CambridgeThe Monteverdi Choir + +3557894Rod AdamAmerican saxophonist and clarinetistCorrectRod AdamsRoderick AdamHarry James And His OrchestraWalt Boenig Big Band + +3557895Jim HuntzingerUS Trombone PlayerNeeds VoteJames HuntzingerJimmy HuntzingerHarry James And His OrchestraOhio State University Jazz Workshop BandThe Las Vegas Jazz Orchestra + +3558007Mónica PustilnikArgentine-born classical lutenist, guitarist and organist.Needs VoteLaura Monica PostilnikLaura Monica PustilnikLaura Mónica PustilnikLaura-Mónica PustilnikMonica PustilnikMonika PustilnikConcerto SoaveIl Seminario MusicaleLes Talens LyriquesLe Concert D'AstréeEnsemble ElymaAmarillisEnsemble AuroraCappella MediterraneaLes Libertins + +3558585Massimo TataClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3558803Ruth HeinonenNeeds Major ChangesR. Heinonen + +3559556Göran BrinkSwedish classical trombonistNeeds VoteSveriges Radios Symfoniorkester + +3559828Christa MilradGerman violinist, born in Munich, Germany.Needs VoteBayerisches StaatsorchesterMaté-Quartett + +3560644Marcel DickAmerican violinist and composer, born 28 August 1898 in Miskolc, Austria-Hungary (today Hungary) and died 13 December 1991 in Cleveland, Ohio.CorrectThe Budapest Philharmonic OrchestraDetroit Symphony OrchestraThe Cleveland OrchestraWiener SymphonikerKolisch Quartet + +3562378Isabelle CornélisClassical percussionistNeeds VoteIsabelle CornelisIsabelle CornellisEnsemble Ars NovaLe Concert SpirituelEnsemble Les Surprises + +3562380Philippe GrauvogelFrench classical oboist.Needs VoteEnsemble IntercontemporainOrchestre Poitou-Charentes + +3562484Kjell-Åke Andersson (2)Classical swedish trumpeter, and occasionally plays cornett [zink] in classical musicNeeds VoteKjell Åke AnderssonKjell-Åke AndersonLiszt Ferenc Chamber OrchestraCopenhagen Phil + +3562900John Williams' Synco JazzersNeeds Major ChangesDuke Jackson’s SerenadersJohn Williams Synco JazzersJohn Williams' JazzersJohnny Williams Synco JazzersMary Lou WilliamsJohn Williams (14)Henry McCordBradley BullettRobert Prince (2)Joe Williams (21) + +3564318Peter Harris (13)Tenor vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Harris-Peter.htmhttps://web.archive.org/web/20190323093807/http://peterharris.ie/London VoicesThe Monteverdi Choir + +3565040Lysiane MétryFrench violinist.CorrectLysiane MetryOrchestre Des Concerts Lamoureux + +3565114Walter GleissleGerman classical trumpet player, 1919, Mannheim - 1961, Leonberg, Germany + +Trumpet studies with Kurt Müller, worked with +1947-1948 Paul Kuhn +1948-1951 Südwestfunk Rundfunkorchester Koblenz +1951-1961 SWR Sinfonieorchester Baden-Baden, Hans Rosbaud, + -1961 J.S. Bach cantatas Fritz Werner, Heilbronn, (recorded for ERATO)Needs VoteWalter GleisleWalter GleissnerWalter GleißleSüdwestdeutsches Kammerorchester + +3565492Assia CunegoHarp playerNeeds Votehttp://www.assiacunego.com/Estonian National Symphony Orchestra + +3566750Karl-Heinz ZögerKarlheinz ZögerGerman double bass player.CorrectBamberger Symphoniker + +3566974Karl RosnerAustrian violinist and composer, born 24 November 1904 in Vösendorf, Austria and died 13 June 2001 in Mödling, Austria.CorrectKarl RossnerOrchester Der Wiener StaatsoperWiener Philharmoniker + +3568408Ivano ZanenghiItalian lutenist, born in 1952 in Venice, Italy.Needs VoteIwano "Testa " ZanenghiL'Arte Dell'ArcoVenice Baroque OrchestraEnsemble ConSerto MusicoQuadro AsolanoL'Opera Stravagante Di Venezia + +3568684Ernesto MampaeyClassical violinist.CorrectErnesto MampayBamberger SymphonikerPhilharmonisches Staatsorchester Hamburg + +3568965Bernard ShoreBritish viola player, author, and Professor of Viola. Born 17 March 1896 - Died 2 April 1985. +He studied viola, organ, & composition at the [l527847]. From 1922 on he was an orchestral player, first with the [a8226403], the [a=London Symphony Orchestra] (1921-1928), and, from 1930, as Principal Viola of the [a=BBC Symphony Orchestra]. In 1940 he left the BBC Symphony Orchestra to join the Royal Air Force. Shortly after the end of the war he retired from the BBC Symphony Orchestra, and took on a professorship at the Royal College of Music. +He was made a CBE in 1955.Needs Votehttps://open.spotify.com/artist/2dOeptGvp1OmH9trN4FFHehttps://music.apple.com/us/artist/bernard-shore/352979222https://en.wikipedia.org/wiki/Bernard_ShoreB. ShoreLondon Symphony OrchestraBBC Symphony OrchestraQueen's Hall OrchestraSpencer Dyke String Quartet + +3569103Orchestre De Chambre Des Concerts LamoureuxNeeds VoteL'Orchestre De Chambre Des Concerts LamoureuxLamoureux Chamber OrchestraLamoureux Orchestra, ParisOrchester Lamoureux, ParisOrchestra Da Camers Dei Concerti LamoureuxOrchestre De Chambre LamoureuxOrchestre Des Concerts LamoureuxOrchestre LamoureuxOrquesta de Camara de Conciertos LamoreuxOrchestre À Cordes De L'Association Des Concerts LamoureuxOrchestre Des Concerts Lamoureux + +3569689Kristina LungGerman violinistNeeds VoteKammerakademie Potsdam + +3569690Ralph GünthnerGerman violistNeeds VoteGünthnerRalph GuenthnerKammerakademie Potsdam + +3569692Jan-Peter KuschelGerman cellistNeeds VoteKammerakademie Potsdam + +3569695Uwe HoljewilkenGerman hornist, born in 1959 in Potsdam, GDR.Needs VoteRundfunk-Sinfonieorchester BerlinKammerorchester Carl Philipp Emanuel BachEast Side Oktett + +3569697Christiane PlathClassical violinistNeeds VoteKammerakademie PotsdamCorda Quartett + +3569699Tobias LampelzammerGerman double bassist.Needs VoteGewandhausorchester LeipzigMünchener KammerorchesterLucerne Festival OrchestraBundesjugendorchesterKammerakademie PotsdamCamerata Lipsiensis + +3569700Jan Böttcher (2)German oboistNeeds VoteKammerakademie Potsdam + +3569702Isabel StegnerGerman violinistNeeds VoteEnsemble Oriol BerlinKammerakademie Potsdam + +3569703Christoph StarkeGerman violist, born in Leipzig.Needs VoteBerliner Sinfonie OrchesterEnsemble Oriol BerlinOrchester der Bayreuther FestspieleKammerakademie PotsdamFinsterbusch-Trio + +3569705Bettina LangeGerman flutistNeeds VoteKammerakademie Potsdam + +3569706Thomas Kretschmer (2)German violinistNeeds VoteEnsemble Sans Souci BerlinKammerakademie PotsdamEnsemble1800berlin + +3569707Anna Theresa SteckelClassical violinist, born in 1985 in Pirmasens, Germany.Needs VoteAnna SteckelGewandhausorchester Leipzig + +3569710Judith Wolf (2)German violinistNeeds VoteEnsemble Oriol BerlinKammerakademie Potsdam + +3569711Renate LoockGerman classical violinistNeeds VoteKammerakademie Potsdam + +3569712Georg BogeGerman cellist, born in 1980 in Berlin, GDR.CorrectRundfunk-Sinfonieorchester Berlin + +3569715Matan DaganClassical violinistNeeds Votehttp://fbmc.co.il/%D7%9E%D7%AA%D7%9F-%D7%93%D7%92%D7%9F-%D7%9B%D7%99%D7%A0%D7%95%D7%A8/מתן דגןThe Israel CamerataKammerakademie PotsdamSheridan EnsembleCapella Hilaria + +3570413Ramsey HusserClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3570415Myriam PellerinClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3570555Klaus-Peter WeraniClassical viola player. He studied at the music academies in Vienna and Munich. Needs VoteSymphonie-Orchester Des Bayerischen RundfunksPhilharmonisches Staatsorchester HamburgAuritus QuartetEnsemble CoriolisTrioCoriolis + +3571337Westminster Williamson VoicesThe Grammy® nominated Westminster Williamson Voices, named for the founder of Westminster Choir College, John Finley Williamson, is praised by reviewers on both sides of the Atlantic. Williamson Voices is the resident choir of the Choral Institute at Oxford (CIO) (www.rider.edu/oxford). The CIO has become of the leading institutes in the world for the training of conductors that emphasizes artistry in performance. + +The Williamson Voices, founded by James Jordan, has distinguished itself in the choral world for its distinctive artistry, recordings, educational outreach and its mission to perform new music. The choir is also recognized as a living choral laboratory. It is one of the few ensembles in the world that use chant as the center of their musicianship study and performance. This emphasis has grown out of its performance and study at the Choral Institute at Oxford. The choir has completed a three-year project studying the performance practice and spirituality surround the works of Arvo Pärt, which culminated in the performance of his monumental Kanon Pokajanen in the fall of 2017. Williamson Voices was the first college choir to be a part of The Metropolitan Museum’s LiveArts series, and it performed in museum’s Temple of Dendur in partnership with the Arvo Pärt Project. + + +In July, 2013, The Williamson Voices performed as part of the world-wide Britten 100 celebration, participating in the 50th anniversary re-enactment performance of the premiere of St. Nicolas in the Lancing College Chapel in Sussex where the work was premiered with the composer conducting. In 2013, the choir also gave its UK debut performance at Oxford as part of the Westminster Choral Institute at Oxford and the SJE Artist series. In 2015 the choir performed Bernstein’s Chichester Psalms under the baton of the newly appointed music director of New York’s St. Thomas Church, Daniel Hyde, on the day of the 50th Anniversary of the work’s premiere. This past summer, Williamson Voices presented the finale concert at the Oxford International Choral Festival, following Cinqucento, The Magdalen College Choir of Oxford and Tenebrae. + +The ensemble has established itself as a voice of composers of our time, and it has been acclaimed for its creative programming and collaborations with other art forms. Most notable were the ensemble’s performance at The Philadelphia Cathedral of Eric Whitacre’s Leonardo Dreams of His Flying Machine with the renowned Spiral Q Puppet Theater and the premiere of James Whitbourn’s Luminosity with The ArcheDream Blacklight Dance Theater Company of Philadelphia. + +The choir has premiered more than 40 choral works and presented several early performances and premieres by noted composers Jackson Hill, William Duckworth, Paul Mealor, Tarik O’Regan, Roger Ames,, Blake Henson, Jaakko Mäntyjärvi, Ugis Praulins, Gerald Custer, James Whitbourn, Thomas LaVoy, Cortlandt Matthews and Kile Smith, Damijan Mocnik, and Dan Forrest. The choir has premiered three major works by British composer James Whitbourn that have attracted international attention. In 2007, it performed the world premiere of the chamber version of Annelies, the first major choral setting of the diary of Anne Frank. In 2008, it shared in a commission of Luminosity, a work for triple choir, dancers, viola solo, organ and tanpura. In 2010, the choir premiered Whitbourn’s Requiem Canticorum. Past seasons have also included performances of Debussy’s Nocturnes with The Princeton Symphony Orchestra conducted by Rossen Milanov. In 2013, the choir performed the US premiere in New York of Paul Mealor’s Crucifixus for choir, orchestra and baritone soloist. In April 2014, the choir made its Lincoln Center debut at Alice Tully Hall performing James Whitbourn’s Annelies. + +The choir has assembled an impressive recorded discography. It has recorded more than 30 choral masterworks on the Teaching Music through Performance CD box sets that are used by conductors around the world. The ensemble can also be seen and heard in the DVD The Empowered Choral Rehearsal: Choral Masterclasses with Simon Carrington. It has six world premiere recordings to its credit, including its 2011 recording on the Naxos label, Living Voices: The Music of James Whitbourn. James Whitbourn’s Annelies, performed with The Lincoln Trio; Arianna Zukerman, soprano, and Bharat Chandra, clarinet, was released by Naxos in 2013. London’s Guardian newspaper wrote about the recording “The performance as a whole…is well prepared and palpably committed as befits a premiere recording.” Gramophone lauded Williamson Voices on the Annelies recording as “exhilarating” and described the ensemble as singing “with a precision and finesse normally found in the best of the UK’s large chamber choirs.” + +In 2016, the choir released its third recording on the Naxos label, a recording of Christmas music featuring the Missa Carolae of James Whitbourn, which is performed each year at the Westminster Choir College’s An Evening of Readings and Carols concert, as well as the CD Hole in the Sky on the GIAChoralworks label distributed by Naxos. Both CDs were No. 1 on the Amazon Classical Charts, and both appeared at the top of the BILLBOARD Classical Charts. In February 2018 Silence into Light was released on the GIAChoralworks label. A disc featuring the music of Ola Gjeilo will be released in the fall. Its 2017-2018 season also includes the world premiere of Peter Relph's Requiem.Needs Votehttps://www.rider.edu/wcc/academics/choirs/westminster-williamson-voicesEric RiegerDaniel WellsMoira Susan GannonStorm KowaleskiJames Roman (3)Jonathon FeinsteinLauren LazzariJose G. ProençaMicaela BottariConner AllisonHolden BihlJohn Roper (3)Corrine CostellChristopher NappaLawrence J BeschBenjamin NorkusElizabeth RichterHunter Thomas (3)Igor CorreaJoshua AcampadoEmily SebastianWilliam Sawyer (2)Esther TehPeter Carter (8)Corey EverlyJoslyn ThomasCaitlin SchararAustin Turner (4)Sara MunsonDavid Ross LawnKathleen DunnKathryn TraveNeathery FullerVictor CristobalEmily Maclain HardinBrian PemberEmily RosoffColton MartinAmanda AgnewBrian V. SengdalaKristin SchenkJesse BorowerRyan ManniDavid FalatokJohn Brewer (6)Anthony KurzaKatelyn HemlingJohn Burke (16)Christina ReganKate MiksitsLiana BookerNicole Michel (2)Max ClaycombMarigrace MaleyAldo ArazullaSamantha GoldbergMegan Gallagher (2)Robin Scott (7)Megan PendletonAllison GriffithsAlexandra MeakemIsabella BurnsChristian Koller (3)Joshua PalagyiWestminster Choir CollegeWestminster Symphonic Choir + +3571383Rolf KoskinenRolf KoskinenFinnish singer born on July 21, 1939 in Helsinki, Finland and died on January 8, 2010 in Helsinki, Finland.Needs VoteRolle KoskinenRolf Koskinen Ja Studio-orkesteri + +3571420Edward Johnson (10)English composer. fl. 1572 - 1601Needs Votehttp://en.wikipedia.org/wiki/Edward_Johnson_(composer)E. JohnsonEdward(?) JohnsonJohnson[Edward] Johnson + +3571833Jan SchlichteGerman classical drummerNeeds VoteBerliner PhilharmonikerBrass PartoutKlangArt Berlin + +3572457Richard StegmannRichard Stegmann (9 March 1889 - 3 April 1984) was a German trumpet player, brass music composer and Professor at the [l954127].Needs VoteR. StegmannStegmannBerliner PhilharmonikerMünchner PhilharmonikerTonhalle-Orchester Zürich + +3573467Ronald PisarkiewiczRonald J. PisarkiewiczRonald Pisarkiewicz (21 December 1943 - 2 January 2001) was an American classical tubist and jazz musician. He was a member of the [a754974] from 1983 to 2001.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchester der Bayreuther FestspieleOslo Filharmoniske OrkesterOrchester Der Staatsoper HamburgFrankfurter Opern- Und MuseumsorchesterFatty George Crew + +3573514Otto KuttnerOtto Kuttner (17 June 1927 in Ybbsitz, Austria — 2018) was an Austrian classical oboe player. Father of [a4279081].Needs VoteWiener VolksopernorchesterWiener Johann Strauss OrchestraORF SymphonieorchesterKammermusikvereinigung Des ORF + +3573797Kurt Richter (6)German hornist, born 21 June 1916 and died 31 August 2007 in Munich, Germany.Needs VoteКурт РихтерSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterMünchner Bläseroktett + +3574708Gerald DruckerBritish classical double bass player, photographer and double bass teacher. Born 5 August 1925 London, England, UK - Died 19 March 2010. +He studied at [l305416]. He started his career as a violinist or violist with [a1888195] and [a1353280]. Principal Double Bass of the [a=BBC Symphony Orchestra] (1953-1964), and Principal Double Player & Principal Photographer of [a=New Philharmonia Orchestra] (1964-1977) and [a=Philharmonia Orchestra] (1977-1990). He formed [a=The London Double Bass Ensemble] in 1980.Needs Votehttps://en.wikipedia.org/wiki/Gerald_Druckerhttps://www.theguardian.com/music/2010/may/13/gerald-drucker-obituaryhttps://www.telegraph.co.uk/news/obituaries/culture-obituaries/music-obituaries/7804184/Gerald-Drucker.htmlhttps://www.imdb.com/name/nm5186290/https://www2.bfi.org.uk/films-tv-people/4ce2ba063af3dДжералд ДракерBBC Symphony OrchestraPhilharmonia OrchestraNew Philharmonia OrchestraThe Little Orchestra Of LondonThe London Double Bass EnsembleThe Boyd Neel OrchestraJacques String Orchestra + +3576513Oskar HagenOskar Hagen (4 June 1931 - 18 January 2021) was an Austrian violist and composer. He's the father of [a4352059], [a754967], [a754970] and [a754955].Needs VoteHagenOscar HagenCamerata Academica SalzburgDas Mozarteum Orchester SalzburgDie Salzburger Mozartspieler + +3576518Josef Schneider (2)Josef Schneider (born 1932) is a German classical cellist and cello teacher. He's married to [a3576515].Needs VoteJoseph SchneiderDas Mozarteum Orchester SalzburgDie Salzburger Mozartspieler + +3576730Bernhard GüntherGerman cellist. Honorable member of [a833446]. +[b]Do not confuse with musician (drummer/guitarist) [a538]![/b]Needs Votehttp://www.staatsoper-berlin.de/de_DE/person/bernhard-guenther.83717B. GüntherBernhard GuntherStaatskapelle BerlinStreichquartett der Deutschen Staatsoper BerlinHanke-Quartett + +3576979Esquire All American Award WinnersNeeds Major ChangesEsquire All -merican Award WinnersEsquire All American 1946 Award WinnersEsquire All American 1946 Award Winners (2)Esquire All American 1946 Award Winners (3)Esquire All American 1946 Award Winners (4)Esquire All American WinnersEsquire All-American Award WinnersFirst Esquire All American Jazz ConcertFirst Esquire All-American Jazz ConcertThe Esquire All-American Award WinnersDuke EllingtonColeman HawkinsJ.J. JohnsonTeddy WilsonDon ByasJohnny HodgesBilly StrayhornBuck ClaytonCharlie ShaversChubby JacksonHarry CarneyRemo PalmieriSonny GreerJimmy HamiltonJohn Collins (2)Shadow Wilson + +3577313Russell Gray And His OrchestraNeeds VoteRussell Gray & His OrchestraFrankie Trumbauer And His OrchestraTom Barker And His OrchestraFrankie And Her BoysJoe VenutiChauncey MorehouseFrank SignorelliEddie LangBill RankDon Murray (2)Adrian RolliniFrankie TrumbauerArthur SchuttBobby Davis (4)Ed MacyJohn Ryan (15) + +3577728Ilona BondarClassical violist, and viola tutor. +She studied at the [l527847] (2005-2009) and the [l290263] (2009-2011). She played (freelance work) with the [a=London Symphony Orchestra] (10/2010-01/2013). She was the violist of the [b]Muse Piano Quintet[/b] (09/2009-09/2013).Needs Votehttps://www.facebook.com/ilona.bondar.5https://twitter.com/bondarilonahttps://www.linkedin.com/in/ilona-bondar-485aba72/?originalSubdomain=ukhttps://maslink.co.uk/client-directory?client=BONDI1&London Symphony Orchestra + +3578228Markus TomasiAustrian violinist, born in Vienna in 1960. +He is the leader of the Mozarteumorchester Salzburg since 1983, of the Mozarteum Quartett since 1998, and was leader of the Melbourne Symphony Orchestra from 2005 to 2010.Needs Votehttp://www.mozarteumorchester.at/markus-tomasi.htmlMelbourne Symphony OrchestraDas Mozarteum Orchester SalzburgMozarteum Quartett + +3578266JoJo (47)Joanna ParsonsHard House DJ/Producer from Leeds, UK.Needs Votehttps://soundcloud.com/jojohardhouseJo JoBeauty & The Beast + +3578274Agustín Clemente MartínezClassical viola/violin.Needs VoteAgustín ClementeOrquesta Sinfónica de RTVE + +3578277Socorro Martín PulgarSpanish violin player.Needs VoteOrquesta Sinfónica de RTVE + +3578280Joaquín Alda JiménezSpanish contrabass player. On Orquesta Sinfónica de RTVE in the 70s.Needs Votehttps://www.youtube.com/watch?v=iME7BVeiiCUhttps://www.youtube.com/watch?v=e4yF-5FrSi4Joaquin AldaJoaquín AldaGrupo KoanOrquesta Sinfónica de RTVE + +3578282José María Navidad ArceSpanish viola player.Needs VoteJ. Mª NavidadJose M. Navidad ArceJosé María NavidadJosé Mª Navidad ArceGrupo KoanOrquesta Sinfónica de RTVE + +3578288José González del AmaSpanish cello player.Needs VoteAma José GonzálezJose G. Del AmaJosé Gonzales Del AmaJosé Gonzales del AmaJosé GonzalezJosé GonzálezOrquesta Sinfónica de RTVE + +3578300Alexandre Salles (2)French BassoonistNeeds VoteThe Academy Of Ancient MusicNew Dutch AcademyOrfeo 55Ensemble Pierre RobertEnsemble europeen William ByrdLes Épopées + +3578841Clara Andrada de la CalleSpanish flute player, born 1982 in Salamanca, Spain.Needs VoteAndradaClara AndradaThe Chamber Orchestra Of EuropeEuropean Union Youth Orchestrahr-Sinfonieorchester + +3578842Sebastian WittiberGerman flute player.Needs VoteOrchester der Bayreuther Festspielehr-Sinfonieorchester + +3579854Stewart UndemAmerican trombonist and sackbut playerCorrectStew UndemHarry James And His OrchestraHarry James And His Big Band + +3580161Nick BrooksSinger in the Jimmie Lunceford orchestraNeeds VoteBrooksJimmie Lunceford And His Orchestra + +3580192Mike TinnesAmerican jazz saxophonist.Needs VoteWoody Herman And His OrchestraWoody Herman And The Fourth Herd + +3580229Clarke KesslerClarke Smith KesslerAmerican bassoonist, contrabassoonist, keyboardist, conductor and arranger, born in 1899 and died in 1958.Needs VoteClarke S. KesslerChicago Symphony Orchestra + +3580246Dick Johnson (8)Early jazz reeds playerNeeds VoteBroadway Bell-HopsThe Charleston ChasersThe HottentotsThe Westerners (2) + +3580382Johanna WinkelJohanna WinkelGerman soprano vocalist.Needs Votewww.johanna-winkel.comWinkelRIAS-Kammerchor + +3580914Chicago HottentotsNeeds VoteAlbert Nicholas With The Chicago HottentotsThe Chicago HottentotsAlbert NicholasJohnny St. CyrLuis Russell + +3580978The Bucktown Five1920s Jazz group.Needs Votehttps://web.archive.org/web/20220000000000*/http://www.redhotjazz.com/buck5.htmlhttps://en.wikipedia.org/wiki/The_Bucktown_FiveBucktown FiveMuggsy Spanier And His Bucktown FiveMuggsy Spanier And The Bucktown FiveThe Buckton FiveMuggsy SpanierMel StitzelVolly De FautGuy CareyMarvin Saxbe + +3581477Jeannelotte HertzbergerDutch violinist, born in 1935.CorrectJeannelotte HerzbergerSchönberg EnsembleNetherlands Chamber OrchestraAmsterdams Strijkkwartet + +3581479Jan HulstDutch violinist and teacher, born 1937 in Groningen, Netherlands.CorrectConcertgebouworkestAmsterdams Strijkkwartet + +3582130Christel WieheClassical violinist.Needs VoteCristel WieheThe Academy Of Ancient Music + +3583413Josef Hell (2)Josef Hell (12 October 1954 in Vienna, Austria) is an Austrian violinist and violin professor, born in Vienna, Austria. He's the son of [a3034783].Needs VoteHellOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Kammerensemble + +3583414Norbert TäublAustrian clarinetist.Needs VoteNorbert Täubl a.G.TäublOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Wien-BerlinInterclarinetEnsemble "11" + +3584685Daniel Bell (4)British violinist, born in Nottingham, England. Now based in Germany.Needs VoteBerliner PhilharmonikerHenschel QuartettMannheimer StreichquartettPetersen QuartettEssener Philharmoniker + +3585982Greg WalmsleyClassical cellistNeeds VoteGregory Bennett WalmsleyGregory WalmsleyLondon Philharmonic Orchestra + +3586077Michael HöltzelGerman hornist, conductor and university lecturer (* 22 April 1936 in Tübingen, German Empire; † 05 August 2017 in Hamburg, Germany). +Needs Votehttps://de.wikipedia.org/wiki/Michael_H%C3%B6ltzelhttps://www.hmt-rostock.de/aktuelles-service/medieninformationen/detail/n/trauer-um-michael-hoeltzel-15605/https://magazin.klassik.com/news/teaser.cfm?ID=13651Dirigent: Michael HöltzelHöltzelMIchael HoeltzelMichael HoeltzelBamberger SymphonikerDetmolder Hornisten + +3586237Serge GanzlNeeds Major Changes + +3587014Albert LandertingerAustrian classical trombonistNeeds VoteAlbertoBruckner Orchestra Linz + +3587471George Allen (12)Saxophonist in jug bands.Needs VoteDixieland Jug Blowers + +3587800Emer McDonoughClassical flutist and pedagogue, based in London.Needs VoteRoyal Philharmonic OrchestraBritten Sinfonia + +3588588Legacy (42)Electronic dance music project consisting of [url=https://www.discogs.com/artist/5148559-N-Vereijken]Nick Vereijken[/url] and [url=https://www.discogs.com/artist/5148558-E-van-den-Ouweland]Erwin van den Ouweland[/url] from the Netherlands +Style: HardstyleCorrecthttps://www.facebook.com/LegacyOfficial/https://www.mixcloud.com/legacymusicnl/https://twitter.com/LegacyMusicNLhttps://www.youtube.com/user/LegacyMusicNL?feature=watchhttps://www.instagram.com/legacymusicnl/https://soundcloud.com/legacy-music-nlE. van den OuwelandN. Vereijken + +3589122Jun Sasaki (3)Classical cellistCorrectGöteborgs Symfoniker + +3590055Chubby Jackson's RhythmNeeds Major Changes"Chubby" Jackson's RhythmChubby JacksonArnold FishkinBilly BauerTony AlessShelly ManneChubby Jackson + +3590606Emma ChesterChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +3590607Isabella RadcliffeChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +3590608Christina de LupisChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +3590609Emilia O'ConnorChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +3590610Sara MaraniChoirister (vocalist)Needs VoteThe London Oratory Junior Choir + +3591925Paweł GusnarBorn June 20, 1976 in Sosnowiec. Polish saxophonist, soloist, chamber musician, session musician and pedagogue.Needs Votehttp://www.gusnar.eu/http://pl-pl.facebook.com/pgusnarSinfonia VarsoviaOrkiestra Symfoniczna Filharmonii NarodowejKukla BandKrzysztof Herdzin Big BandPolska Orkiestra Radiowa + +3593551Lou BlackLouis Thomas BlackEarly jazz banjoist. "Lew" (or) "Lou" Black played with "New Orleans Rhythm Kings" and with Jelly Roll Morton, among others. From the mid-20s onwards he worked as a staff musician on radio WHO in Des Moines, IA. Black retired from music in 1931 and became a businessman. He got back into music in the early 1960s but his revived music career was cut short when he died from a heart attack while still recuperating from a car accident in 1965. The inlay at the 11th fret of his 5-string banjo reads "Louis Black".  +Born: June 08, 1901 in Rock Island, Illinois. +Died: November 18, 1965 in Rock Island, Illinois.Needs Votehttps://en.wikipedia.org/wiki/Lou_BlackBlackL. BlackLew BlackLouis BlackNew Orleans Rhythm KingsOriginal Memphis Melody BoysMidway Garden Orchestra + +3593574George BaratiGyorgy BraunsteinHungarian cellist, conductor and composer, born 3 April 1913 in Győr, Hungary and died 22 June 1996 in San José, California. (Born as Gyorgy Braunstein.)Needs Votehttp://www.nytimes.com/1996/07/01/arts/george-barati-83-composer-conductor-cellist-and-teacher.htmlhttps://de.wikipedia.org/wiki/George_BaratiBaratiGeo. BaratiGeorg BaratiSan Francisco Symphony + +3594957Stephen RyleTenor vocalist and liner notes + sung text translatorNeeds VoteWestminster Cathedral Choir + +3595199Richard Roberts (10)Classical violinistNeeds VoteThe Cleveland OrchestraOrchestre symphonique de Montréal + +3595391Barton WeberClassical pianist. A member of the [a604396] from 1991 to 2010.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +3595477Frank Lee (8)American big band guitarist. Played with [a=Harry James And His Orchestra] in 1953.CorrectFrancis LeeHarry James And His Orchestra + +3595584Steven EmeryAmerican trumpet player, born in 1952. He's married to [a2234589].Needs VoteSteve EmeryColumbus Symphony OrchestraBoston Symphony OrchestraThe Empire Brass QuintetKansas City PhilharmonicProteus 7 + +3596166Francis CummingsViolinist. Needs VoteThe Chamber Orchestra Of Europe + +3596405Gottfried Schmidt-EndersGerman violoncello playerNeeds VoteOrchester Der Deutschen Oper Berlin + +3596410Matthias RoitherGerman violinist, born in 1956 in Berlin, Germany.CorrectDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther Festspiele + +3597319Hannah MorrisonHanna MorrisonThe Dutch-born soprano, Hanna Morrison, was born into a Scottish-Icelandic family, and grew up in Holland where she studied singing and piano at the Maastricht Academy of Music from 1998 to 2003.Needs Votehttp://www.bach-cantatas.com/Bio/Morrison-Hannah.htmMorrisonPantagruelLes Arts FlorissantsThe Monteverdi ChoirGli Angeli GenèveEcho Du Danube + +3599586Richard GraefRichard Graef is an American classical flautist. He was a member of the [a837562] from 1968 to 2019.Needs VoteChicago Symphony OrchestraMinnesota OrchestraChicago Pro Musica + +3599587Alison DaltonAlison Dalton is an American violinist, born in Rochester, New York. She was a member of the [a837562] from 1987 to 2023.Needs VoteChicago Symphony OrchestraORF Symphonieorchester + +3599589Patricia DashAmerican classical percussionist.Needs VoteChicago Symphony Orchestra + +3600906Erich MarkwartGerman hornist, born in 1956 in Borxleben, GDR.Needs VoteErich MarquartStaatskapelle DresdenVirtuosi SaxoniaeSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3603105Tom AppletonClassical bass vocalistNeeds VoteThe Monteverdi Choir + +3603106Meg BragleAmerican classical mezzo-soprano vocalistNeeds Votehttps://megbragle.com/home.htmlThe Monteverdi ChoirLes Voix BaroquesMagnificat Baroque Ensemble + +3603295Eric SammutFrench timpanist and percussionist.CorrectOrchestre De Paris + +3603329Zsolt-Tihamér VisontayGerman-Hungarian violinist, born in 1983 in Schonebeck (former East Germany). +When he was sixteen, he helped co-found the [a4301583]. In 2005, he was appointed concertmaster of the [a=European Union Youth Orchestra], and a year later he also became Concert Master of the [url=https://www.discogs.com/artist/1586328-Altenburg-Gera-Symphony-Orchestra]Philharmonic Orchestra[/url] in Altenburg-Gera. In 2007, he became Joint Concert Master of the Philharmonia Orchestra. In addition he has acted as violinist/director with the Philharmonia Orchestra and [a832962].Needs Votehttps://open.spotify.com/artist/2HxF1ULS6DiSnia6WFCpLshttps://music.apple.com/tr/artist/zsolt-tiham%C3%A9r-visontay/id578595211https://www.feenotes.com/database/artists/visontay-zsolt-tihamer-1983-present/https://philharmonia.co.uk/bio/zsolt-tihamer-visontay/https://www.hyperion-records.co.uk/a.asp?a=A6052https://malmolive.se/biografi/zsolt-tihamer-visontayhttps://www.imdb.com/name/nm6652351/?mode=desktopVisontayZsolt Tihamer VisontayZsolt, Tihamer VisontayZsolt-Tihamer VisontayPhilharmonia OrchestraEuropean Union Youth OrchestraAltenburg-Gera Symphony OrchestraOrchester Des Musikgymnasiums Schloss BelvedereWest-Eastern Divan OrchestraEuropean Chamber Players + +3603671Luiz Alves Da SilvaClassical countertenor vocalistNeeds VoteL. Alves da SilvaL.A. Da SilvaLuis Alves Da SilvaLuiz Alves de SilvaLuiz Alvez Da SilvaOrchestra Of The RenaissanceHespèrion XXEnsemble Turicum + +3604206Ernst MühlbacherAustrian horn player.CorrectE. MühlbacherErnest MühlbacherErnst Muhlbacherエルンスト・ミュールバシェールWiener Symphoniker + +3604284Stefano TuzzatoItalian alto vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604285Augusto BellonClassical tenor vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604286Alina MartinelloItalian contralto vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604288Flavio TronchinItalian classical bass vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604289Chiara MuraroItalian contralto vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604290Ulrike WurdakGerman born classical soprano vocalist (1955-2010).Needs VoteCoro Del Centro Di Musica Antica Di PadovaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604292Vittorino CiatoItalian classical tenor vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaLa Stagione ArmonicaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604293Patrizia SartoreClassical soprano vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604295Roberto MoroItalian classical bass vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604296M. Teresa OrlandoClassical soprano vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604297Hélène KuhnAmerican born classical soprano vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604299Valentino PereraItalian classical bass vocalistNeeds VoteCoro Del Centro Di Musica Antica Di PadovaSchola GregorianaMadrigalisti Del Centro Di Musica Antica Di Padova + +3604300Gloria CappellatoClassical soprano vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604301Marina BurriClassical soprano vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604302Roberto TeatiniItalian classical bass vocalistCorrectCoro Del Centro Di Musica Antica Di Padova + +3604532Humphrey ClucasBritish composer, singer and author (born 1941). Former chorister with [a=The Choir Of Westminster Abbey] and [a=The Guildford Cathedral Choir]Needs Votehttps://en.wikipedia.org/wiki/Humphrey_ClucasClucasHumphey ClucasThe Guildford Cathedral ChoirThe Choir Of Westminster Abbey + +3605478Eberhard FreibergerClassical string instrumentalist (Violist).Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigMendelssohn-Quartett Leipzig + +3605480Hermann WeicheGerman classical violinist.Needs VoteHerrmann WeicheRundfunk-Sinfonieorchester Berlin + +3606154Georges Marty[a703271] conductor from 1901 to 1908.Needs Votehttps://adp.library.ucsb.edu/names/360083MartyOrchestre De La Société Des Concerts Du Conservatoire + +3606992Alex Harris (5)English trumpeter in Halle Orchestra from c. 1925- 1950s, at which time he held the principle position.Needs VoteHallé Orchestra + +3607290Michaela HasseltGerman harpsichord & organ playerNeeds VoteNeues Bachisches Collegium Musicum LeipzigDresdner BarockorchesterJohann Rosenmüller EnsembleGaechinger CantoreyLeipziger CembaloDuo + +3607292Annegret TeichmannGerman classical violinistNeeds VoteDresdner PhilharmonieDresdner Barockorchester + +3607860Alessio AllegriniItalian Hornist. +Born 1972, in Poggio Mirteto, Italy.Needs VoteAllegriniOrchestra dell'Accademia Nazionale di Santa Cecilia + +3607887Alfred Hertz (July 15,1872 - April 17,1942): German conductor, who was from 1915 to 1930 conductor of the San Francisco Symphony Orchestra +Needs Votehttps://adp.library.ucsb.edu/names/106930A. HertzHertzMaestro HertzMtro. Alfred HertzRichard Wagner + +3608679Franz MichelClassical pianist.Needs VoteOrchestre National De France + +3609158Aleksandra LewandowskaPolish classical soprano vocalistNeeds VoteCollegium VocaleGli Angeli Genève + +3609159Griet De GeyterBelgian soprano vocalistNeeds VoteCollegium VocaleEx TemporeZefiro TornaScherzi MusicaliInaltoBachPlusUtopia EnsemblePluto Ensemble + +3609861The Guildhall WaitsNeeds Major ChangesPaul NiemanAndrew Watts (2)Jeremy WestJonathan Morgan (3)Martin Pope + +3610276Andreas HartogsGerman hornist.CorrectBamberger Symphoniker + +3611556Andreas MoglGerman tenor vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3611557Jutta NeumannClassical alto vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3611559Marion RambausekMarion Rambausek-FärberGerman operatic alto.Needs VoteMarion Rambausek-FärberChor Des Bayerischen Rundfunks + +3611897The New McKinney's Cotton PickersA New McKinney's Cotton Pickers was organized in the early 1970s by [a6535261] using the arrangements by [a307171]. The band recorded several albums and featured banjoist [a307230], who was the only surviving original member. Needs Votehttps://www.revolvy.com/page/McKinney%27s-Cotton-PickersThe New McKinney Cotton PickersDave WilbornDavid Hutson + +3612155Timothy OrpenClassical clarinetist. +Principal Clarinet with [a=Aurora Orchestra] and the [a=Royal Scottish National Orchestra]. +Needs Votehttp://www.timothyorpen.com/Royal Scottish National OrchestraOrchestra Of The Royal Opera House, Covent GardenAurora Orchestra + +3612506Ian Watson (10)South African classical violinist.Needs VoteHallé OrchestraNorthern SinfoniaAurora OrchestraDante Quartet + +3612788Naomi AnnerClassical violinistCorrectLondon Classical Players + +3613206Horst WiednerGerman bassoonist.CorrectStaatskapelle Dresden + +3613207Erich MühlbachErich Mühlbach (21 November 1908 - 19 July 1968) was a German violinist. He was the father of [a1763203].Needs VoteStaatskapelle Dresden + +3613339Miroslav Kejmar Jr.Miroslav KejmarCzech percussionist, son of trumpeter [a842827].Needs Votehttp://www.supraphonline.cz/umelec/9820-miroslav-kejmar-mlMiroslav KejmarMiroslav Kejmar Jn.Miroslav Kejmar jn.The Czech Philharmonic OrchestraPrague Percussion Project + +3613341Petr SinkuleCzech clarinetist and saxophonistNeeds VoteThe Czech Philharmonic Orchestra + +3614176Werner Schulz (2)German oboist and English horn player.CorrectStaatskapelle DresdenConsortium Musicum (2)Cologne Soloists Ensemble + +3614689Ida Marie SørmoNorwegian flutist, born in 1983.CorrectTrondheim Jazz OrchestraAalborg Symfoniorkester + +3614920Del ThomasErnest D. ThomasEarly jazz brass bass player, composer.Needs VoteDell ThomasThomasFletcher Henderson And His OrchestraChick Webb And His OrchestraHenderson's Roseland Orchestra + +3616041Eckart WiewinnerGerman trombonist, born 1959 in Osnabrück, Germany.CorrectEckardt WiewinnerEckhard WiewinnerEckhardt WiewinnerBerliner PhilharmonikerPhilharmonisches Staatsorchester HamburgBundesjugendorchesterGerman Brass + +3617611Homer SchmittAmerican violinist.CorrectThe Cleveland OrchestraThe Walden String Quartet + +3617612Robert SwensonAmerican cellist.CorrectR. SwensonThe Cleveland OrchestraThe Walden String Quartet + +3617613Bernard GoodmanAmerican violinist, conductor and music pedagogue, born 12 June 1914 in Cleveland, Ohio and died 3 October 1999 in New Harbor, Maine.CorrectB. GoodmanThe Cleveland OrchestraThe Walden String Quartet + +3617729George HambrechtGeorge Russell Hambrecht American flute player, died on October 13, 2011 in Cincinnati, Ohio at the age of 87.CorrectThe Cleveland OrchestraCincinnati Symphony Orchestra + +3618854Gudrun GreindlGudrun Greindl-RosnerGerman alto vocalistNeeds VoteGudrun Greindl-RosnerGudrun Griendl-RosnerGudrun Rosner-GreindlChor Des Bayerischen Rundfunks + +3618855Albert GassnerGerman tenorNeeds VoteAlbert GaßnerChor Des Bayerischen RundfunksCapella Bavariae + +3620368Szabolcs ZempléniHungarian French horn player, born 8 Januar 1981 in Budapest, Hungary.Correcthttp://www.zempleni.com/Bamberger SymphonikerEnrique Crespo Brass Ensemble + +3622117Andre SchochAndre Schoch (born 1987) is a German trumpet player and Professor of Trumpet at the [l2335015] since 2024.Needs Votehttp://www.andreschoch.de/André SchochBerliner PhilharmonikerGewandhausorchester LeipzigJunge Deutsche PhilharmoniePhilharmonisches Staatsorchester HamburgOrchester Des Schleswig-Holstein Musik FestivalsLandesjugendorchester Baden-Württemberg10forBrass + +3622121Paolo MendesGerman horn player, born 1988 in Hamburg, Germany.Needs VoteBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther Festspiele + +3622124Swantje VesperGerman hornist, born in 1988 in Bremen, Germany.Needs VoteBamberger Symphoniker10forBrass + +3622218Roy WaasRoy C. WaasRoy Waas (5 January 1930 - 12 February 2025) was an American horn player.Needs VoteThe Cleveland OrchestraBuffalo Philharmonic OrchestraKansas City Philharmonic + +3622219Maurice SharpAmerican flute player, born in 1908 and died 1986.Needs VoteThe Cleveland Orchestra + +3622220Ernani AngelucciAmerican horn player, born in 1914 and died in 1995.Needs VoteErnie AngelucciThe Cleveland Orchestra + +3622221Marc LifscheyAmerican oboist, born 16 June 1926 in New York City, New York and died 8 November 2000 in Portland, Oregon.Needs VoteSan Francisco SymphonyThe Cleveland OrchestraBuffalo Philharmonic OrchestraNational Symphony OrchestraThe Metropolitan Opera House Orchestra + +3622277Robert Vernon (3)Classical violist and music educator who served as principal viola of [a=The Cleveland Orchestra] from 1976 to 2016. In addition, he has appeared as soloist with various orchestras across the United States and has performed and taught at leading North American music festivals. He is a member of the faculty and co-chair of the viola department at the Cleveland Institute of Music, and serves on the Faculty at Kent/Blossom, the National Orchestral Institute in Maryland, the New World Symphony Orchestra, and the Encore School for Strings, and was a member of the viola faculty at The Juilliard School in New York. + +Born: 5 May 1949 in Toronto, Ontario, CanadaNeeds Votehttps://en.wikipedia.org/wiki/Robert_Vernon_(musician)https://www.kent.edu/blossom/robert-vernonhttps://www.cim.edu/faculty/robert-vernonThe Cleveland Orchestra + +3622651Alan HareAlan E. HareBritish jazz composer, bandleader, trombonist and pianist. + +b. July 22, 1928 in Warrington, Lancashire +d. August 3, 2007 + +trombone: +1951: Jazz Saints Band +1952 to 58: Bluenote Jazzmen +piano: +1962 Southside Band +1963/64: Gordon Robinson's Septet + +1965: accompanied Earl Hines +1968 to 76 played residency in Didsbury with his own big band +in the 1980s arragements with the National Youth Orchestra in ManchesterNeeds Votehttp://www.alanhare.com/A. HareAllan HareEarl Hines And His OrchestraThe Saints Jazz Band (2)Gordon Robinson Septet + +3623631Milan SagatClassical double bassist and conductor, born 30 May 1946 in Krajné, Slovakia.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Oktett + +3624038Gillian SteelClassical cellist.CorrectGillian SteeleThe Academy Of Ancient Music + +3624920Ikki OpitzViolinist.Needs Votehttp://www.deutscheoperberlin.de/de_DE/ensemble/ikki-opitz.16975#Orchester Der Deutschen Oper BerlinKahedi Radio OrchestraNayon Han Ensemble + +3625539Fabio FrapparelliClassical hornist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3625598Johnny FrescoSaxophonist during the big band eraCorrectJ. FrescoJohn FrescoHarry James And His Orchestra + +3625654David Van OoijenClassical guitarist and lutenist.CorrectDavid Van OooienMusica Ad Rhenum + +3625906Hank HeyinkClassical lute player + +Not to be confused with trumpeter [a=Henk Heyink]Needs VoteHank HeijinkMusica Amphion + +3626058Zvi HarellIsraeli cellist, born in Berlin, Germany.Needs Votehttps://www.bach-cantatas.com/Bio/Harell-Zvi.htmZ. H.Z.H.Israel Philharmonic OrchestraJapan Philharmonic OrchestraIsrael Piano Trio + +3627525Jan LudvíkClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +3627532František HavlínClassical violinistNeeds VoteF. HavlínThe Czech Philharmonic Orchestra + +3627535Otakar BartošClassical violinistNeeds VoteOta BartošThe Czech Philharmonic OrchestraCzech Philharmonic Sextet + +3627547Pavel HerajnClassical violinistNeeds VoteThe Czech Philharmonic Orchestra + +3627549Luboš DudekClassical violinist + +Founded the ensemble Cinque Archi in 2018 CorrectThe Czech Philharmonic Orchestra + +3627578Pavel CiprysPavel CiprysClassical viola player. Needs VoteThe Czech Philharmonic OrchestraQuartet Apollon + +3627795Claudia MarinoItalian violist, active from the 2010s.CorrectBerner KammerorchesterOrchestra Del Maggio Musicale FiorentinoDas Seltene Orchester + +3629461Karl RisslandAmerican violinist, born in 1872 and died in 1960.Needs VoteK. RisslandRisslandКарл РиссляндBoston Symphony OrchestraElman String Quartet + +3629965Alfons HartensteinClassical wind instrumentalistNeeds VoteSymphonie-Orchester Des Bayerischen Rundfunks + +3629984Johann DomsGerman classical trombonist, born 23 April 1923 and died 7 January 2011.Needs VoteJ. DomsBerliner Philharmoniker + +3630995Adriano BertozziItalian classical string instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +3631104Tara BungardBritish soprano vocalistNeeds Votehttp://www.bungard.co.uk/page5.htmlTara OverendLondon VoicesSynergy Vocals + +3631105Robyn PartonRobyn Allegra PartonBritish soprano vocalistCorrectLondon Voices + +3631106Natalie Clifton GriffithBritish soprano vocalist, born in Cornwall, UKNeeds VoteNatalie C. GriffithNatalie Clifton GriffithsNatalie Clifton-GriffithLondon VoicesEx Cathedra Chamber ChoirTenebrae (10) + +3631108Prudence SandersAustralian born soprano, based in the UK.Correcthttp://prudencesanders.com/London Voices + +3631109Philippa MurrayBritish soprano vocalistCorrecthttp://www.philippamurray.co.uk/London Voices + +3631110Ruth KerrBritish soprano vocalistCorrecthttp://www.ruthkerr.co.uk/London Voices + +3631111Wendy NieperBritish classical soprano and jazz vocalist.Needs Votehttps://www.wendynieper.com/https://www.facebook.com/wendy.nieperW NieperWendy NeiperMetro VoicesLondon VoicesSwingle Singers + +3633362Cathy Bell (2)British mezzo-soprano, born in Buckinghamshire, UK.Needs Votehttp://cathybell.co.uk/London VoicesExaudi + +3633363Dominic BlandBritish tenor singer.Needs VoteLondon VoicesThe Binchois ConsortThe Queen's Six + +3633364Clemmie FranksBritish mezzo-soprano, based in London, UK.Needs Votehttps://soundcloud.com/clemmie-frankshttps://www.youtube.com/channel/UCjKQM1nGCS374gPHATJXpKQClememtine FranksClementine FrankClementine FranksLondon VoicesThe City MusickVoice (51) + +3633365Matthew MinterBritish tenor, born in 1972.Needs VoteMetro VoicesLondon Voices + +3633367Julian Alexander SmithBritish tenor singerCorrecthttp://julianalexandersmith.com/Julian A. SmithJulian Alexander-SmithJulian SmithLondon Voices + +3633368Freya JacklinBritish alto / mezzo-soprano vocalist.Needs Votehttps://web.archive.org/web/20160314052049/http://www.freyajacklin.com/London Voices + +3633369Norbert MeynGerman tenor, born in Weimar, GDR.CorrectLondon Voices + +3633370Amanda DeanAlto vocalist and composer.Needs VoteLondon Voices + +3633371Tamsin DalleyBritish mezzo sopranoCorrecthttp://www.tamsindalley.co.uk/London Voices + +3633372Polly MayBritish mezzo soprano, composer and singing teacherCorrecthttp://www.pollymay.com/MayLondon Voices + +3633373Richard FallasBass vocalistCorrectLondon Voices + +3633374Ashley TurnellBritish tenor singer, born 5 January 1973.Needs VoteLondon VoicesEx Cathedra Chamber ChoirThe Exon Singers + +3633376Adrian HorsewoodBritish bass / baritone vocalist and composer, born in Hong Kong in 1983,Needs Votehttp://adrianhorsewood.com/Andian HorsewoodLondon VoicesEx Cathedra Chamber Choir + +3633377Andrew FriedhoffBritish tenorCorrectLondon Voices + +3633378Richard ArundelBritish baritoneCorrectLondon Voices + +3633379Clara KanterBritish mezzo-soprano based in London, UK.Needs Votehttp://www.clarakanter.com/Clara CanterMetro VoicesLondon Voices + +3633841Michael PeternekGerman cellist.CorrectGewandhausorchester LeipzigOrchester der Bayreuther FestspieleQuattrocelli + +3634437Eddie Ellis (2)Jazz trombonist active in the 1920's.Needs VoteE. EllisJasper Taylor's State Street BoysOriginal Midnight Ramblers Orchestra + +3635769John Harrod (2)American percussionistNeeds VoteNew London Consort + +3636335Mathilde SevrinClassical soprano vocalistCorrectChoeur de Chambre de Namur + +3636338Julie CalbeteClassical soprano vocalistCorrectJulie CalbèteChoeur de Chambre de Namur + +3636341Marian MinnenClassical cellistNeeds VoteLa Petite BandeLes AgrémensLes MuffattiLe Jardin SecretLes Goûts-Authentiques + +3636347Benoît DouchyClassical viola & violin playerNeeds VoteBenoit DouchyLa Petite BandeLes Talens LyriquesLes AgrémensScherzi MusicaliA Nocte TemporisBachPlus + +3636510Uwe VoigtGerman trombonist, born in 1963 in Dresden, GDR.Needs VoteUwe VogtVoigtStaatskapelle DresdenDresdner PhilharmonieSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636511Lars ZobelGerman trombonist, born 2 February 1966.Needs VoteStaatskapelle DresdenSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636513Gerd GranerGerman trumpet player, born in 1961.Needs VoteGert GranerStaatskapelle DresdenSemper Brass DresdenBlechbläserensemble Ludwig GüttlerBlechbläser Der Staatskapelle Dresden + +3636515Andreas LangoschGerman hornist, born 1966 in Meiningen, GDR.Needs VoteStaatskapelle DresdenRundfunk-Sinfonieorchester BerlinDresdner KapellsolistenSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636518Siegfried SchneiderGerman trumpet player, born in 1952 in Lomske, GDR.Needs VoteStaatskapelle DresdenDresdner KapellsolistenSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636519Jürgen UmbreitGerman trombonist, born 17 April 1960 in Wölfis, GDR.Needs VoteStaatskapelle DresdenElb Meadow RamblersRobert-Schumann-PhilharmonieSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636520Guido UlfigGerman trombonist, born in 1960 in Gotha, GDR.Needs Votehttp://www.ulfig.eu/index.phpStaatskapelle DresdenSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636521Volker Stegmann (2)German trumpet player.Needs VoteStaatskapelle DresdenVirtuosi SaxoniaeSemper Brass DresdenBlechbläserensemble Ludwig Güttler + +3636522Jürgen MayGerman percussionist and timpani player.CorrectStaatskapelle DresdenSemper Brass Dresden + +3636538Heinz Walter ThieleHeinz-Walter ThieleHeinz-Walter Thiele (25 October 1912 - 9 October 1976) was a German trombonist. +A member of the [a260744] from 1935 to 1976.Needs VoteBerliner PhilharmonikerEssener Philharmoniker + +3636993Dick KaneAmerican jazz pianist in the swing era of the 1940's.Needs VoteWoody Herman And His OrchestraWoody Herman's Four ChipsThe Band That Plays The Blues + +3636994Benny StablerAmerican jazz trumpeter in the 1940's.Needs VoteBen StablerWoody Herman And His OrchestraThe Band That Plays The Blues + +3637552Jam Session (4)Needs Major Changes + +3637910Mario FolenaClassical flautist.Needs VoteM. FolenaOrchestra Di Padova E Del VenetoI Solisti VenetiL'Arte Dell'ArcoEnsemble Barocco Sans SouciEnsemble ConSerto MusicoEnsemble Festina Lente + +3637911Gawain GlentonClassical violinist and cornettist and founder of Ensemble [a=In Echo].Needs Votehttp://www.gawainglenton.com/biography.htmlRicercar ConsortMusica AmphionConcerto PalatinoEnsemble ConSerto MusicoAkadêmiaEnsemble LeonesProfeti Della QuintaThe English Cornett And Sackbut EnsembleThe Illyria ConsortIn EchoThe Gonzaga BandEnsemble Dolce RisonanzaI Fedeli (2) + +3638062Bill Vitale (2)American jazz saxophonist.Needs VoteWoody Herman And His OrchestraBrick Fleagle And His OrchestraThe Band That Plays The Blues + +3639206Lorraine HuntLorraine Hunt-LiebersonBorn: March 1, 1954 - San Francisco, California, USA; Died: July 3, 2006 - Santa Fe, New Mexico, USA +The American mezzo-soprano, Lorraine Hunt, was born to musical parents: Randolph Hunt, a music teacher and a conductor of community ensembles and operas, and Marcia Hunt, a contralto and a voice teacherNeeds Votehttp://www.bach-cantatas.com/Bio/Hunt-Lorraine.htmHuntHunt (Dido)Hunt-LiebersonLorraine Hunt LiebersonLorraine Hunt LiebersonLes Arts FlorissantsWilhelmshavener Vokalensemble + +3640327Sebastian Vogel (3)Classical viola playerNeeds VoteStuttgarter Philharmoniker + +3640793Dave Nichols (6)Trumpet player during the Big Band era of the 1940s, primarily for [a269594].Needs VoteCharlie Barnet And His Orchestra + +3642223Genuzio GhettiGenuzio Ghetti (1925 - 1970) was an Italian classical cellist & Viola da Gamba instrumentalist.Needs VoteG.GhettiGenunzio GhettiOrchestra Del Teatro Alla ScalaI Solisti Di MilanoQuartetto della Scala + +3642542Marc Daniel Van BiemenDutch violinist.Needs VoteConcertgebouworkestAlma Quartet + +3642566Alessandro DenabianHorn playerNeeds VoteConcerto KölnLa Petite BandeI BarocchistiVenice Baroque OrchestraLa Cetra Barockorchester BaselStile GalanteQuartetto DelficoNew Century BaroqueControcorrente (2) + +3642567Sébastien GalleyClassical trumpeterNeeds VoteFestival Strings LucerneI BarocchistiOrchestra Della Radio Televisione Della Svizzera Italiana + +3642695Piotr SzalszaPolish violist, producer and author, born 26 May 1944 in Bytom, Poland. Now based in Vienna, Austria.CorrectMag. Piotr SzalszaPjotr SzalszaPolish National Radio Symphony Orchestra + +3643398Francesco SiragusaItalian contrabass player, born in 1974.Needs Votehttp://www.francescosiragusa.it/en/F. SiragusaOrchestra dell'Accademia Nazionale di Santa CeciliaFilarmonica Della ScalaI Solisti Della Filarmonica Della Scala + +3644545Ernst PamperlErnst Pamperl (8 December 1920 - 2007) was an Austrian classical bassoonist. He was a member of the [a754974] from 1946 to 1985.Needs VoteWiener PhilharmonikerHofmusikkapelle WienWiener Oktett + +3644546Ferenc MihalyFerenç MihályFerenç Mihály (1922 - 16 June 2017) was an Hungarian cellist.Needs VoteFerenc MihályHungarian State Opera OrchestraWiener PhilharmonikerGürzenich-Orchester Kölner PhilharmonikerWiener Oktett + +3645555Xaver Paul ThomaXaver Paul Thoma (born 5 February 1953) is a German violist and composer.Needs Votehttp://www.xaverpaulthoma.de/Xaver ThomaStaatsorchester StuttgartOrchester der Bayreuther FestspieleBadische Staatskapelle + +3645583Nina Janßen-DeinzerGerman clarinet-player, specialized in contempory classical music. Married to [a658979].Needs Votehttps://www.ninajanssen.com/Nina JanßenEnsemble ModernDelos-Quintett + +3645815Nat Brown (3)Nathan Brown Jazz reeds player + + + +Born on August 28, 1909, he played tenor sax, alto sax, clarinet, bass clarinet & flute. He joined Gene Kardos's Orchestra, with whom he recorded for Victor, Crown (as Joel Shaw's Orchestra) & ARC group at least until 1933 as replacement for Jules Harrison. +Played & sang with Willie Farmer's Orchestra from 1937 to 1938 in its recordings for Bluebird. Joined Paul Whiteman's Orchestra in late July 1939 as replacement for Art Drelinger, recording with Whiteman for Decca and left Whiteman after May 1940. He joined Larry Clinton's Orchestra on 1941. + +Died on January 12, 1997 at Encino, California.Correcthttps://books.google.es/books?id=n-hYmPstZmIC&pg=PA464&dq=Willie+Farmer+orchestra&hl=es&sa=X&ved=2ahUKEwiC15m_tI_7AhX-gv0HHQspBNQQ6AF6BAgCEAI#v=onepage&q=Willie%20Farmer%20orchestra&f=falsePaul Whiteman And His OrchestraLarry Clinton And His OrchestraGene Kardos And His OrchestraWillie Farmer And His Orchestra + +3647398Scott FelthamClassical bassistNeeds VoteOrchestre symphonique de Montréal + +3647400Claire SegalCanadian classical violinistNeeds VoteOrchestre symphonique de MontréalQuatuor Classique De Montréal + +3647403Gary Russell (5)Canadian classical cellistNeeds VoteOrchestre symphonique de Montréal + +3647404Paul MerkeloAmerican classical trumpet playerNeeds Votehttp://www.paulmerkelotrumpet.com/Orchestre symphonique de Montréal + +3647406Nadia CôtéCanadian horn player.Needs VoteOrchestre symphonique de Montréal + +3647407Pierre DjokicClassical cellistNeeds VoteOrchestre symphonique de Montréal + +3647410Sylvain MurrayCanadian classical cellistNeeds VoteOrchestre symphonique de Montréal + +3647412Van ArmenianClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3647413Chantale BoivinClassical violistNeeds VoteChantal BoivinChantale BoisvinOrchestre symphonique de Montréal + +3647415Mary Ann FujinoClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3647416Marie LacasseCanadian classical violinistNeeds VoteOrchestre symphonique de Montréal + +3647418Christopher P. SmithClassical trumpet playerNeeds VoteChristopher SmithOrchestre symphonique de MontréalSan Diego Symphony + +3647420Jean-Luc GagnonCanadian trumpet playerNeeds VoteJ. L. GagnonJ.L. GagnonOrchestre symphonique de Montréal + +3648101Alessandro CarbonareItalian clarinetist and music teacher, born in Desenzano Del Garda, Italy.Needs VoteCarbonareOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Mozart + +3648397Patrick Williams (7)Classical flautist. Needs Votehttp://www.patrickwilliamsflute.com/The Philadelphia Orchestra + +3648910Chœur Du Capitole De ToulouseChorus from Toulouse, France +also named Chœur Du Théatre du Capitole de Toulouse +Generally associated with the [a880293]Needs Votehttp://www.theatreducapitole.fr/1/le-theatre/le-choeur-du-capitole/historique.htmChoeur Du Capitole De ToulouseChoeurs Du Capitole De ToulouseChorusChorus Of The Capitole De ToulouseChorus Of The Capitole, ToulouseChorus of the Capitole de ToulouseChœurChœur Du Théätre Du Capitole De ToulouseChœur National Du Capitole De ToulouseChœursChœurs Du Capitole De ToulouseCity Of Toulouse Choir + +3649121Nieder MayrClassical FlautistNeeds VotePhilharmonia Orchestra + +3649512Inki VargaViolinist.Needs VoteNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +3649516Kerstin HoelenDutch classical violinist and teacher.Needs VoteNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaHet Gelders Orkest + +3649521Mirjam MichelViolin playerNeeds VoteNieuw Sinfonietta AmsterdamAmsterdam Sinfonietta + +3649525Benjamin Marquise GilmoreViolin playerNeeds VoteBenjamin GilmorePhilharmonia OrchestraThe Chamber Orchestra Of EuropeAmsterdam SinfoniettaNavarra String QuartetOctandre Ensemble + +3651009Joakim SchusterBass vocalistCorrectRadiokören + +3651010Niklas EngquistSwedish tenorNeeds Votehttps://www.bach-cantatas.com/Bio/Engquist-Niklas.htmhttps://www.artefact.no/artist/niklas-engquist/niklas-engquist-biography/Radiokören + +3651011Love EnströmTenor vocalistCorrectLove EngströmRadiokörenGustaf Sjökvists Kammarkör + +3651013Lars Johansson BrissmanSwedish baritone and bass vocalistCorrecthttps://larsjohanssonbrissman.comLars BrissmanLars Johansson [Sweden]Radiokören + +3651014Marika ScheeleSoprano vocalistCorrectMarika SchéeleRadiokören + +3651018Marie AlexisSwedish sopranoCorrectRadiokören + +3651493Vladimir OvcharekВладимир Юрьевич ОвчарекVladimir Ovcharek (1927-2007) - Soviet and Russian violinist. People's Artist of the RSFSR (1990). + +In adolescence he studied with V. I. Sher / [a5641561], in 1950 he graduated from the Leningrad Conservatory named after [a115466] (now the [l=St. Petersburg Conservatory]). While still in his second year, in 1946, he organized the [a2424438], in which he played first violin for 55 years. + +At the same time, Vladimir Ovcharek was the concertmaster of the [a343871] for many years. + +Since 1963, Ovcharek taught the violin class at the Leningrad Conservatory, headed the department of violin and viola.Needs Votehttps://ru.wikipedia.org/wiki/%D0%9E%D0%B2%D1%87%D0%B0%D1%80%D0%B5%D0%BA,_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80_%D0%AE%D1%80%D1%8C%D0%B5%D0%B2%D0%B8%D1%87V. OvcharekVladimir OvtcharekWladimir OwtscharekВ. ОвчарекВениамин ОвчарекВл. ОвчарекВладимир ОвчарекОвчарекLeningrad Philharmonic OrchestraTaneyev Quartet + +3651720Ernesto DoimoClassical violinistNeeds VoteOrchestra Del Teatro Alla Scala + +3651721Aldo NardoItalian violinist.Needs VoteOrchestra Del Teatro Alla Scala + +3651722Giovanni BraghirolliItalian violinist.Needs VoteGiovanni BraghiroliOrchestra Del Teatro Alla Scala + +3651724Franco ScottoClassical double bass artistNeeds VoteF.ScottoFranco SottoOrchestra Del Teatro Alla ScalaI Solisti Di Milano + +3651725Giacomo PoglianiItalian violinist.Needs VoteOrchestra Del Teatro Alla Scala + +3652140Ezio PederzaniClassical string instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +3652141Guido ToschiClassical woodwind instrumenalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +3652142Battistino BacchettaItalian classical violinistNeeds VoteTino BacchettaTino BachettaOrchestra Del Teatro Alla ScalaI Solisti Di MilanoEnsemble Instrumental SinfoniaMusicorum ArcadiaSolisti Del Teatro Alla Scala + +3652143Alfredo PanciroliClassical woodwind instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +3652144Bruno CavalloItalian wind instrumentalistNeeds VoteB. CavalloOrchestra Del Teatro Alla ScalaI Solisti Di MilanoI Solisti Del Teatro Alla Scala + +3652145Enzo BertelliClassical violinistNeeds VoteOrchestra Del Teatro Alla Scala + +3652146Enrico LongariClassical wind instrumentalistNeeds VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +3652615John Francis (17)John Francis Cook[b]John Francis[/b] (February 1908, London — 1992) was a British classical flutist and music educator, husband of harpsichordist [a2133821] (1905—1986), with whom they co-founded the [b][a=London Harpsichord Ensemble][/b] in 1945, and father of oboist [a=Sarah Francis] (b. 1938) and operatic soprano [a=Hannah Francis]. Between 1954 and 1980, Francis was a professor of flute at the [url=https://discogs.com/label/290263]Royal College of Music[/url] in London, awarded the Fellowship (FRCM) in 1971. Some of his notable students include [a325672] and [a381053]. + +John was born in an artistic family — named after his maternal grandfather, John Francis Barnett (1837—1916), a Victorian pianist and composer, a friend of [a95542] and [a844248], and the [url=https://discogs.com/label/290263]RCM[/url] co-founder; his mother was a prolific miniature painter, Alice May Cook (1876—1960). John learned the piano in early childhood but only picked up the flute when he was seventeen. In 1927, John F. Cook enrolled in the [url=https://discogs.com/label/290263]Royal College of Music[/url], earning a scholarship by his sophomore year, and trained under [a=Robert Murchie] and [a=Marcel Moyse]. His fellow RCM students were [a=Benjamin Britten], [url=https://discogs.com/artist/729646]Michael Tippett[/url], [a=Imogen Holst], [a=Cecil James], [a3954202], [a=Leonard Isaacs], and [a=Arthur Gleghorn]. After graduating in the early 1930s, John Francis briefly worked for [l=BBC] in Northern Ireland. In 1932, he married a fellow RCM alumna, [a=Millicent Silver]. They returned to London, where John freelanced for the [a=London Philharmonic Orchestra], playing third flute in the LPO's inaugural concert under [a846301]. + +After the Second World War, John Francis performed as the first flute in [a=Benjamin Britten]'s [b][a980526][/b] (between 1946 and 1956). He participated in premieres of "The Rape of Lucretia," "Turn of the Screw," and "Albert Herring," and played at [l931659]. In 1945, John Francis and Millicent Silver established the [b][a=London Harpsichord Ensemble][/b], the first contemporary chamber group solely focused on authentic early harpsichord music. They had a prolific career, with numerous concert tours, radio broadcasts, and a critically acclaimed concert series at the 1950 [l=Edinburgh Festival] for [url=https://discogs.com/artist/95537]Bach[/url]'s bi-centennial. In 1953, Francis presented the debut performance of [a1202437]'s [i]Flute Concerto[/i], written for him, at BBC Proms. + +John Francis and Millicent Silver retired from their stage careers in early 1981, passing over the London Harpsichord Ensemble's direction to their eldest daughter, [a=Sarah Francis]. After Silver died in 1986, John re-married the following year to Lorna Lewis, a former editor of [i]Pan[/i], the Journal of the British Flute Society.Needs Votehttps://www.reidconcerts.music.ed.ac.uk/performer/francis-john-1908-1992J. FrancisLondon Philharmonic OrchestraThe English Opera GroupLondon Harpsichord Ensemble + +3652682Andrew Bain (4)Australian hornist. +Brother of [a3845855] and [a10158583].Needs Votehttps://www.andrewbainhorn.com/Andrew BainLos Angeles Philharmonic Orchestra + +3652683Patricia GarveyAmerican cellistCorrectRochester Philharmonic Orchestra + +3653374Francesco Di RosaItalian oboe playerNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaQuintetto Briccialdi + +3654617Julie Barnes (3)Julia BarnesViola playerNeeds VoteNieuw Sinfonietta Amsterdam + +3654849Emil BuchnerClassical cellist and viola da gamba player.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBamberger Symphoniker + +3655556Patrizio SerinoItalian classical cellist, active in recordings from 2001. Born in Rome, he graduated in cello at Santa Cecilia Conservatory, receiving the Sinopoli award under the patronage of the President of the Republic. + +He received further training with [a=Ivan Monighetti] in Basel and attended the masterclasses of [a=Enrico Dindo], [a=Enrico Bronzi], [a=David Geringas] and [a=Gary Hoffman (3)]. +From October 2005 to May 2007, he played as first cello with the [a=Orchestra Del Teatro Massimo Bellini di Catania], and he collaborated in the same role with the [a=Orchestra di Roma E Del Lazio], the Tuscany region's [a=Ensemble Symphony Orchestra], the [a=Orchestra Sinfonica Del Teatro Carlo Felice Di Genova], the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia], and Claudio Abbado’s Mozart Orchestra. + +Since 2011, he has been chosen by [a=Zubin Mehta] as first cello in the [a=Orchestra Del Maggio Musicale Fiorentino].CorrectOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Di Roma E Del LazioOrchestra Sinfonica Del Teatro Carlo Felice Di GenovaArs TrioOrchestra Del Teatro Massimo Bellini Di CataniaOrchestra Del Maggio Musicale FiorentinoEnsemble Symphony OrchestraDavid Trio + +3656239Heidi LitschauerAustrian cellist and music professor, born 14 December 1944. She's the daughter of [a1419517] and [a3513775].Needs VoteCamerata Academica SalzburgWiener TrioWiener Flötentrio + +3657751Anton JivaevUzbek violinist and violist, born 1976 in Tashkent, UzbekistanNeeds VoteGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +3658082Francesco LambardiFrancesco Lambardi (1587–1642) was an Italian Baroque composer born in Napoli who participated in the staging of feste a ballo with Giovanni Maria Trabaci. CorrectF. LambardiFrancesco LambardoG. LambardoLambardi + +3658202Franziska ZehnderClassical violinistCorrectVenice Baroque Orchestra + +3658203Margherita ZaneClassical violinistNeeds VoteVenice Baroque Orchestra“Il Tempio Armonico” - Orchestra Barocca Di Verona + +3658205Meri SkejicClassical violin / viola playerNeeds VoteVenice Baroque Orchestra + +3658207Marco Ruggeri (4)Italian classical harpsichord & organ playerCorrectVenice Baroque Orchestra + +3660947Theresa PopleClassical violinist.CorrectTeresa PoplePhilharmonia OrchestraLondon Classical PlayersHanover Band + +3660948John PeskettBritish hornistCorrectLondon Classical Players + +3660949Nia HarriesClassical cellistNeeds Votehttp://niaharries.blogspot.de/2008/05/nia-harries-cello.htmlThe Academy Of St. Martin-in-the-FieldsLondon Classical Players + +3660951Antonia BakewellBritish classical bassistCorrectLondon Classical Players + +3660953Jeremy Gordon (2)British classical double bassist.Correcthttps://www.linkedin.com/in/jeremy-gordon-81a24986The Academy Of Ancient MusicLondon Classical PlayersTheatre Of Early Music + +3660954Catherine RickettsBritish classical bassistCorrectLondon Classical Players + +3660955Julia PlautClassical bassoonistNeeds VoteLondon Classical PlayersHanover Band + +3660956Sheila HoldsworthBritish viola playerCorrectLondon Classical Players + +3660957Paul BandaHungarian classical cellistCorrectLondon Classical Players + +3661017Iagoba FanloSpanish classical cellistNeeds Votehttp://www.iagobafanlo.com/London Classical PlayersCuarteto Canales + +3661443Maude GrattonBorn in 1983, French Maude Gratton performs studied harpsichord and organ with Dominique Ferran, Pierre Hantaï, Louis Robilliard then arrives at the Paris Conservatory 1st prize harpsichord, bass, organ, Renaissance counterpoint.Needs Votehttps://www.facebook.com/maude.gratton.9https://www.mmfestival.fr/maude-grattonhttps://web.archive.org/web/20180726003149/http://maudegratton.fr/https://en.wikipedia.org/wiki/Maude_Grattonhttps://www.bach-cantatas.com/Bio/Gratton-Maude-2.htmOrchestre Des Champs ElyséesCollegium VocaleLes Musiciens De Saint-JulienGli Angeli GenèveIl ConvitoLe Banquet CélesteAliquando + +3661493Jeno AntalAmerican violinist, born 1901 in Hungary and died 1981 in the United States.CorrectJ. AntalJenö AntalThe Cleveland OrchestraRoth String Quartet + +3661869Romana PezzaniSwiss violinistNeeds VoteRomana Iten-PezzaniCollegium Musicum ZürichDie Kammermusiker Zürich + +3661952Women's Voices Of The Philharmonia ChorusNeeds VoteWomen Of The Philharmonia ChorusLadies Of The Philharmonic ChorusPhilharmonia Chorus + +3661953Bernardino MolinariItalian conductor. +Born April 11th, 1880. +Died December 25th, 1952.Needs Votehttps://adp.library.ucsb.edu/names/363138B. MolinariMolinariMolinaruOrchestra dell'Accademia Nazionale di Santa Cecilia + +3661979Joachim BrandlAustrian classical violistNeeds VoteBrandlBruckner Orchestra Linz + +3662818Harold Jackson (5)British classical cornettist and trumpeter. +Born 5 July 1886 in Eccleshill, Yorkshire, England, UK. +Died 30 May 1957 in Surrey, England, UK. +He first played with the [a212726] on 22 May 1916. He attested on 19 June 1916 and was assigned to the Royal Engineers Railway Troops. He was discharged on 5 November 1919 at Calais, France. He returned to the ranks of the LSO in 1920 and performed with the Orchestra until 1935. He played solo cornet for [a=Besses O' Th' Barn band] (1930-?), [a=The Central Band Of The Royal Air Force], then, in 1934, became Principal Trumpet of [a350723] and later on Principal Trumpet of the newly formed [a=Philharmonia Orchestra]. +In 1967, Jackson played the trumpet on The Beatles’ “A Day In The Life” during the Sgt. Pepper's Lonely Hearts Club Band sessions.Correcthttps://open.spotify.com/artist/0NPRMBlw8uEVrObyTlKG2Chttps://music.apple.com/th/artist/harold-jackson/140588144https://lso.co.uk/whats-on/alwaysplaying/read/295-15the-lso-in-world-war-i-harry-jackson.htmlhttp://www.besses.co.uk/members/previous-members/item/259-jackson-haroldhttp://usir.salford.ac.uk/id/eprint/45871/1/Brass_Band_News_1938_03.pdfhttps://charm.kcl.ac.uk/discography/search/search_advanced?operatorSel_0=and&parameterSel_0=performer&parameterKey_0=artist_018375&parameterKeyTxt_0=Harold%20Jackson,%20trumpetLondon Symphony OrchestraThe Black Dyke Mills BandPhilharmonia OrchestraThe Central Band Of The Royal Air ForceBesses O' Th' Barn bandLondon Baroque EnsembleHarton Colliery Band + +3662926Kotowa MachidaKotowa Machida is a Japanese violinist. She's a member of the [a260744] since 1997.Needs VoteBerliner PhilharmonikerWürttembergische Philharmonie ReutlingenBerliner Barock SolistenEnsemble Berlin + +3662929Christoph Hartmann (2)German oboist, born in 1965 in Landsberg an der Lech, Germany.Correcthttp://www.christophhartmann.com/de/home.htmlHartmannBerliner PhilharmonikerStuttgarter PhilharmonikerEnsemble Berlin + +3662930Martin Von Der NahmerGerman violist, born in Wuppertal, Germany.CorrectM.v.d. NahmerBerliner PhilharmonikerEnsemble Berlin + +3663127Marie-Hélène LandreauClassical violinistNeeds VoteIl Seminario MusicaleLes Talens Lyriques + +3663129Christine FreysmuthClassical violinistNeeds VoteLes Talens LyriquesEnsemble Baroque De NiceOrchesterforum + +3663130Gésine MeyerClassical cellistNeeds VoteGesine Meyer EggenGesine Meyer-EggenGésine Meyer-EggenLe Concert SpirituelLes Talens Lyriques + +3663131Samantha MontgomeryClassical string instrumentalistNeeds VoteLe Concert SpirituelLes Talens LyriquesLes Folies FrançoisesLe Poème HarmoniqueEnsemble europeen William ByrdEnsemble ClematisCappella MediterraneaEnsemble Marguerite Louise + +3664271Orchestra Del Maggio Musicale FiorentinoOrchestra del Maggio Musicale FiorentinoOrchestra of the Maggio Musicale Fiorentino. This translates as the Florence May Festival Orchestra (Florence being the city and May being the month). + +The orchestra was founded in 1928 by [a=Vittorio Gui], as the Stabile Orchestrale Fiorentina, with its home the [l=Teatro Comunale di Firenze]. It took its current name in 1933, when the Festival was instituted. After Gui, [a=Mario Rossi] became music director in 1937. Then, after the war, [a=Bruno Bartoletti] was appointed to the post. From 1969-1981, the position was given to [a=Riccardo Muti], then to [a=Zubin Mehta], who became Principal conductor from 1985, and then to [a=Fabio Luisi], who became Principal conductor from 2018 to 2019. Zubin Mehta was made Honorary Conductor for life in 2006. + +For the chorus, please use [a=Coro del Maggio Musicale Fiorentino].Needs Votehttps://www.maggiofiorentino.com/orchestra-del-maggio-musicale-fiorentinohttps://en.wikipedia.org/wiki/Orchestra_del_Maggio_Musicale_FiorentinoA Firenzei Maggio Musicale Fiorentino ZenekaraA Firenzei Maggio Musicale ZenekaraDas Orchester des Maggio Musicale FiorentinoFlorence Maggio Musicale OrchestraFlorence May Festival Chorus & OrchestraFlorence May Festival OrchestraFlorence May Festival Orchestra & ChorusFlorence May Music Festival OrchestraFlorence May-Festival OrchestraFlorence Symphony Orch.Florence Symphony OrchestraHet Koor en Orkest van de Maggio Musicale FiorentinoHet Orkest "Maggio Musicale Fiorentino"Het Orkest Van De Maggio Musicale FiorentinoL'Orchestra Stabile Del Maggio FiorentinoLa Orquesta Del Festival De Mayo FlorentinoLa Orquesta Del Maggio Musicale FiorentinoMaggio FiorentinoMaggio Fiorentino OrchestraMaggio Florentino OrchestraMaggio Musicale FiorentinoMaggio Musicale Fiorentino OrchestraOrcgestra Of The Maggio Musicale FiorentinoOrch. "Maggio Mus. Fiorentino"Orch. Del Maggio FiorentinoOrch. Del Maggio Musicale FiorentinoOrch. Maggio FiorentinoOrch. Maggio Mus. FiorentinoOrch. Maggio Musicale FiorentinoOrchesre Du Mai Musical De FlorenceOrchestaOrchesta Des Maggio Musicale FiorentinoOrchesterOrchester Der "Maggio Musicale Fiorentino"Orchester Der Maggio Musicale FiorentinoOrchester Des "Maggio Musicale Fiorentino"Orchester Des Florentiner Maggio MusicaleOrchester Des Maggio FiorentinoOrchester Des Maggio Musicale FiorentinoOrchester Des Maggio Musicale FlorentinoOrchester Des Maggio Musicale FlorenzOrchester Des Maggio Musicale, FlorenzOrchester Des „Maggio Musicale Fiorentino“Orchester Maggio Musicale FiorentinoOrchester des Maggio Musicale FiorentinoOrchester des Maggio Musicale FlorenzOrchestraOrchestra "Maggio Musicale Fiorentino"Orchestra And Chorus Of The Maggio Musicale FiorentinoOrchestra Del „Maggio Musicale Fiorentino‟Orchestra Del "Maggio Musicale Fiorentino"Orchestra Del Maddio Musicale FiorentinoOrchestra Del Maggio FiorentinoOrchestra Del Maggio Maggio Musicale FiorentinoOrchestra Del Maggio Musical FiorentinoOrchestra Del Maggio Musicale FiorentinoOrchestra Del Maggio Musicale FlorentinoOrchestra Del Maggio Musicale, FiorentinoOrchestra Del Teatro Alla Scala Di MilanoOrchestra Del Teatro Maggio Musicale FiorentinoOrchestra Del The Maggio Musicale FiorentinoOrchestra Del „Maggio Musicale Fiorentino‟Orchestra Dell Maggio Musicale FiorentinoOrchestra Des Maggio Musicale FiorentinoOrchestra EOrchestra E Coro Del Maggio Musicale FiorentinoOrchestra Maggio Musicale FiorentinoOrchestra Magio Musicale FiorentinoOrchestra Of "Maggio Musicale Florentino"Orchestra Of "Maggio Musicale Fiorentino"Orchestra Of Maggio Fiorentino OperaOrchestra Of Maggio Musicale FiorentinoOrchestra Of Maggio Musicale Fiorentino (Florence)Orchestra Of Maggio Musicale, FiorentinoOrchestra Of Teatro ComunaleOrchestra Of The Florence 'Maggio Musicale'Orchestra Of The Florence Maggio MusicaleOrchestra Of The Florence May FestivalOrchestra Of The Florence May Festival 1953Orchestra Of The Maggio FiorentinoOrchestra Of The Maggio MusicaleOrchestra Of The Maggio Musicale FiorentinoOrchestra Of The Maggio Musicale Orchestra FiorentinoOrchestra Of The Maggio Musicale, FiorentinoOrchestra Of The Maggio Musicale, FlorenceOrchestra Sinfonica Del Maggio Musicale FiorentinoOrchestra Sinfonica Maggio Musicale FiorentinoOrchestra StabileOrchestra Stabile Del Maggio Musicale FiorentinoOrchestra del Maggio Musicale FiorentinoOrchestra of The Maggio Musicale FiorentinoOrchestra of The Maggio Musicale Fiorentino (Florence)Orchestra of the Maggio Musicale FiorentinoOrchestra »Maggio Musicale Fiorentino»OrchestreOrchestre De Mai Musical FlorentinOrchestre Del Maggio Musicale FiorentinoOrchestre Du Maggio Musicale FiorentinoOrchestre Du Mai FlorentinOrchestre Du Mai Musical De FlorenceOrchestre Du Mai Musical FiorentinOrchestre Du Mai Musical FlorentinOrchestre Du Mai Musicale FlorentinOrchestre de Maggio Musicale FiorentinoOrchestre du Maggio Musicale FiorentinoOrchestre du Mai Musical FlorentinOrchestre du Mai musical florentinOrkest Maggio Musicale FiorentinoOrkest Van De Maggio Musical FiorentinoOrkest Van De Maggio Musicale FiorentinoOrkest van de Maggio Musicale FiorentinoOrkestar Maggio Musicale FiorentinoOrq. Del Maio Musical FlorentinoOrquestaOrquesta De Maggio Musicale FiorentinoOrquesta Del Maggio Musicale FiorentinoOrquesta Del Mayo Musical FlorentinoOrquesta del Maggio Musicale FiorentinoOrquestra Estavel Do Maio Musicale FiorentinoOrquestra Of The Maggio Musicale FiorentinoOrquestra do Maggio Musicale FiorentinoThe Florence May Festival OrchestraThe Florence May Music Festival OrchestraThe Florence May-Festival OrchestraThe Florence-May Festival OrchestraThe Maggio Musicale Fiorentino OrchestraThe OrchestraThe Orchestra Of The Maggio FiorentinoThe Orchestra Of The Maggio Musicale FiorentinoThe Orchestra of the Maggio Musicale FiorentinoОркестрОркестр Фестиваля "Флорентийский Музыкальный Май"フィレンツェ五月音楽祭管弦楽団Jörg WinklerAlberto NegroniMassimiliano SalmiLeonardo MatucciAndrea Dell'IraAlberto SerpenteStefano VicentiniGiovanni RiccucciGianfranco DiniLuca BenucciAndrea PaniDezi HerberSara SpiritoMarco SalvatoriNicola DomeniconiAlessandra ArtifoniLadislau HorvathAugusto VismaraMichele TazzariAnna NoferiniFlavio FlaminioSusanna BertuccioliLuigi Cozzolino (2)Emanuele AntoniucciLaura MariannelliClaudio QuintavallaMarco MartelliElida PaliNicola GrassiClaudia MarinoPatrizio SerinoSara NanniCorinne CurtazLuigi AntonioloAnton HorvathDomenico PieriniDavid Kuehn (3)Riccardo DonatiRaffaele GiannottiRiccardo CrocillaMarco CruscaAntonio PavaniGiovanni Bellini (2)Fabiano FiorenzaniAlberto BoccacciAlessandro PotenzaMattia PetrilliNicola Mazzanti (2)Emanuele UrsoLia PrevitaliMario BarsottiLorenzo Fuoco + +3664842Margaret CampbellClassical flute player. She studied at the [l290263]. At the age of twenty, she left the RCM to take up her appointment as Principal Flute with the [a=City Of Birmingham Symphony Orchestra]. In October 1986, she moved back to London as Principal Flute with the [a=Orchestra Of The Royal Opera House, Covent Garden].Needs Votehttps://www.facebook.com/margaret.campbell.3958https://www.linkedin.com/in/margaret-campbell-21b4673b/?originalSubdomain=ukMargareth CampbellCity Of Birmingham Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenI FiamminghiYoung Musicians Symphony Orchestra + +3664843Colin LilleyFlutist.Needs VoteCollin LilleyCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +3664844Audrey DouglasClassical harpistNeeds VoteОдри ДугласRoyal Philharmonic Orchestra + +3666302Robert Montgomery (5)Classical hornistNeeds VoteThe English Concert + +3667459Igor GruppmanAmerican violinist and conductor, born 4 July 1956 in Kiev, USSR. He's married to [a3667457].Needs VoteIgor GruppmannRotterdams Philharmonisch Orkest + +3668067Victoria SimonsenNew Zealander classical cellist, and tutor. Born in 1983 in Auckland, New Zealand. +She studied at the [l459222] and [l305416]. She became Principal Cellist with [a=Opera North] in 2005. From 2008 until 2017 she was a member of the [a=Philharmonia Orchestra]. She played in the early [url=https://www.discogs.com/artist/9186589-Barbirolli-Quartet]Barbirolli String Quartet[/url]. In 2015 she was appointed cellist of the [a=Rautio Piano Trio]. Tutor in cello at the Royal Northern College of Music.Needs Votehttps://www.victoriasimonsen.com/https://www.facebook.com/simonsenvictoriahttps://www.instagram.com/simonsencellist/https://www.feenotes.com/database/artists/simonsen-victoria-1983-present/https://www.rncm.ac.uk/people/victoria-simonsen-2/https://www.musicalorbit.com/product-page/victoria-simonsenhttps://michaelhillviolincompetition.co.nz/national-string-competition/judges/https://www.musicteachers.co.uk/teacher/6156df88268e3d782466London Symphony OrchestraPhilharmonia OrchestraOpera NorthRautio Piano TrioBarbirolli Quartet + +3668073Eva ÞórarinsdóttirIcelandic violinist Needs Votehttp://www.evathorarinsdottir.com/Eva_Thorarinsdottir_Violin/h_o_m_e.htmlEva ThorarinsdottirHallé Orchestra + +3668078Sally MatthewsSally Helanna MatthewsSoprano vocalist.Needs Votehttps://web.archive.org/web/20160310204756/http://www.sallymatthews.com/https://en.wikipedia.org/wiki/Sally_Matthews + +3668834Marion DesbrueresMarion DesbruèresFrench violinist.Needs VoteMarion DesbruèresOrchestre National De L'Opéra De ParisQuatuor Monticelli + +3668911Ron Perry (3)American saxophonist.Needs VotePerryRonnie PerryWoody Herman And His OrchestraFrank De Vol And His OrchestraGeorgie Auld And His Orchestra + +3669135Dick "Slyde" HydeRichard John HydeAmerican trombone and tuba player. He has played with Stan Kenton, Blue Mitchell, Chet Baker and many others in and out of jazz. +Born July 4, 1936 in Lansing, Michigan, U.S. +Died July 15, 2019 in Honolulu, Hawaii, U.S. due to pneumonia.Correcthttp://www.myspace.com/slydehydehttps://en.wikipedia.org/wiki/Dick_Hyde_(musician)"Slide" Hyde"Slyde" Dick Hyde"Slyde" Dick Slyde"Slyde" Hyde'Slide' Hide'Slide' Hyde'Slyde' HydeDick "R.J." HydeDick "Slide" HydeDick "Slyd" HydeDick 'Slide' HydeDick 'Slyde' HydeDick ("Slide") HydeDick ("Slide") hydeDick ("Slyde") HydeDick (Slide) HydeDick (Slyde) HydeDick HideDick HydeDick SlideDick Slide HideDick Slide HydeDick Slyde HydeDick hydeDick"Slyde"HydeDick.HydeHydeR. HydeRichard "Slide" HydeRichard "Slyde" HydeRichard HydeRichard J. HydeRichard “Slide” HydeSlide HydeSlide HydiSly HydeSlyde "Willie" HydeSlyde HydeSlydeHydeHarry James And His OrchestraHenry Mancini And His OrchestraLalo Schifrin & OrchestraBob Jung And His OrchestraL'il Jack Horn SectionSlyde Hyde QuintetThe Wrecking Crew (6) + +3669425Josep Domènech LafontJosep Domènech LafontClassical oboist +Josep Domènech Lafont had his formative training in his hometown of Amposta (Catalonia) later moving to Barcelona to continue his studies with Josep Julià at the Conservatori Superior de Barcelona. Josep is a graduate of the Musik­akademie der Stadt Basel and also studied at the Conservatorium van Amsterdam where he completed his studies with Alfredo Bernardini.Needs Votehttp://www.hyperion-records.co.uk/a.asp?a=A2521Josep DomenechJosep DomènechLe Concert Des nationsFreiburger BarockorchesterLes Talens LyriquesHarmony Of Nations Baroque OrchestraEnsemble Dialoghi + +3669430Clara MühlethalerSwiss classic violinistNeeds VoteSan Francisco SymphonyHarmony Of Nations Baroque OrchestraLa Cetra Barockorchester BaselLes PaladinsLes RécréationsLes Épopées + +3669432Katrin LazarClassical recorder and bassoon player +Katrin Lazar studied at the Hochschule für Musik und Darstellende Kunst, Frankfurt am Main with Prof. Michael Schneider (recorder) and Christian Beuse (baroque bassoon) and at the Koninklijk Conservatorium, Den Haag with Peter van Heyghen (recorder) and Donna Agrell (baroque bassoon). Needs VoteAkademie Für Alte Musik BerlinHarmony Of Nations Baroque OrchestraEpoca BaroccaCollegium 1704Batzdorfer HofkapelleNeue Hofkapelle MünchenNeue Düsseldorfer HofmusikLes Passions De L'Ame (2)Il Pomo d'OroThe English ConcertNeue Innsbrucker Hofkapelle + +3671809Katherine WatsonBritish soprano vocalist. Watson was a choral scholar at Trinity College, Cambridge and won the John Christie award at Glyndebourne in 2012.Needs Votehttp://www.katherinewatsonsoprano.com/WatsonLe Concert SpirituelArcangeloAtalante + +3671875Jörg EggebrechtJörg Eggebrecht is a German classical violist and barytone player.Needs VoteMünchner PhilharmonikerMünchner Baryton-Trio + +3672344Elisabeth RappSoprano vocalistNeeds VoteCollegium Vocale + +3672345Gudrun KöllnerGerman alto / contralto vocalistNeeds VoteCollegium VocaleKammerchor StuttgartRheinische KantoreiGli ScarlattistiPeñalosa-Ensemble + +3672364Henrike PetteClassical violinist.CorrectConcerto Köln + +3672379Stefan Schmidt (17)Classical violinistNeeds VoteCollegium VocaleConcerto KölnNeue Düsseldorfer HofmusikMarcolini Quartett + +3672528Alexander Martin (3)Chorister Treble (Boy Soprano) vocalistNeeds VoteThe Choir Of Westminster AbbeyChoir Of Hereford Cathedral + +3673052Malcolm Warne-HollandBritish trombonist.Needs VoteBournemouth Symphony OrchestraThe London Tijuana Band + +3673308Brew Moore QuartetNeeds Major Changes + +3674450Dora WagnerGerman harpist. +Born in 1908 and died in 2005. +Member of [a833446] from 1933 until 1949.Needs VoteStaatskapelle Berlin + +3676227Werner Scholz (2)Werner ScholzGerman violin player, born July 7, 1926 in Dresden; died on October 10, 2012 in Berlin.Needs VoteBerliner Sinfonie OrchesterDresdner Philharmonie + +3676231Michael NellessenGerman cellist, born in 1957.Needs VoteStaatskapelle Berlin + +3676233Joachim Scholz (2)German violinistCorrectЙоахим ШольцRundfunk-Sinfonieorchester Berlin + +3677745Maximiliano MartinSpanish clarinetist, born in La Orotava, Tenerife, Spain.Needs Votehttp://maximilianomartin.com/Max MartinMaximiliano MartínScottish Chamber OrchestraHebrides EnsembleScottish Chamber Orchestra Wind SoloistsLondon Conchord EnsembleKarolos (2) + +3677747Niamh LyonsClassical violinistCorrectScottish Chamber Orchestra + +3677748Shaun HarroldBritish trumpet playerCorrectScottish Chamber Orchestra + +3677749Rosie StaniforthBritish oboistNeeds VoteScottish Chamber OrchestraScottish Chamber Orchestra Wind Soloists + +3677750Adrian BornetBritish classical bassistCorrectScottish Chamber Orchestra + +3677751Ursula LeveauxClassical bassoonist.Needs Votehttp://www.ursulaleveaux.com/Ursula LevauxCity Of London SinfoniaCappella Musicale Di S. Petronio Di BolognaThe Academy Of Ancient MusicThe Nash EnsembleScottish Chamber OrchestraOrchestra Da Camera Del Locarneseensemble F2 + +3677752Eilidh MartinBritish classical cellistNeeds VoteElidh MartinScottish Chamber OrchestraRed Skies String Section + +3677753Anna Jones (2)Classical flutistCorrectScottish Chamber Orchestra + +3677754Victoria SaylesVictoria Margaret Ellen SaylesBritish violinist living in Stockholm, born on 19 October 1984.Needs VoteVicky SaylesThe London Chamber OrchestraKungliga HovkapelletLondon Mozart PlayersScottish Chamber Orchestra + +3677755Caroline GardenBritish percussionistCorrectScottish Chamber Orchestra + +3677756Fiona AlexanderClassical violinistCorrectScottish Chamber Orchestra + +3677829Berl SenofskyAmerican violinist, born 19 April 1926 in Philadelphia, Pennsylvania and died 21 June 2002 in Baltimore, Maryland.CorrectBeryl SenofskySenofskyThe Cleveland Orchestra + +3677849Ruth Ellis (3)British clarinetistCorrectEllisScottish Chamber Orchestra + +3678019Brian Robinson (9)Classical bassistNeeds VoteOrchestre symphonique de Montréal + +3678022Susan PulliamClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3679448David Jones (38)British cellist, born in Shrewsbury, England, UK. +He studied at the [l459222]. Co-Principal Cello first in the [a374006] and then in the [a=Philharmonia Orchestra]. Cellist with [a=The London Ensemble] from 1994 to 2005. He was appointed Associate Principal Cello of the [a855061] in 2002. He joined the [a=London Piano Trio] in spring 2009.Needs Votehttp://www.londonpianotrio.com/about.htmlhttps://www.guildmusic.com/shop/wbc.php?sid=120026c690a8&tpl=produktdetail.html&pid=14918&recno=2&tpl=artistdetails.html&recno={wbc.srecord}Hallé OrchestraPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenThe London EnsembleOrmesby EnsembleLondon Piano TrioThe Philharmonia Soloists + +3679449Brian MoyesViolinist who has performed with the [a454293].Needs Votehttps://www.feenotes.com/database/artists/moyes-brian/Philharmonia Orchestra + +3679457Inge ClerixClassical soprano / mezzo-soprano vocalistNeeds VoteCollegium VocaleVocalconsort BerlinAthesinus Consort Berlin + +3679569Karl FreundKarl Freund (7 February 1904 - 1955) was a German violinist and Professor of Violin. Her was the father of [a4788597].Needs VoteBerliner PhilharmonikerEdwin Fischer Chamber Orchestra + +3680046Udo MehrpohlGerman chorus master; since 1984 with the [a1933252] in Munich, Bavaria.Needs Votehttps://www.staatsoper.de/biographien/mehrpohl-udohttps://www.staatsoper.de/en/chorus?mdrv=www.staatsoper.de&cHash=528e3bfc74d5eb809008dad40393b505Chor Der Bayerischen Staatsoper + +3680277Marianne RørholmDanish classical mezzo-soprano vocalist.CorrectMarianna RørholmMarianne RorholmConcerto Köln + +3680470Aidan OliverFormer treble vocalist, now Bass vocalist, conductor and chorus master.Needs Votehttps://www.aidanoliver.co.ukhttps://twitter.com/aidanoliver1Westminster Cathedral ChoirThe King's ConsortThe Sarum ConsortPhilharmonia Voices + +3680709Leonidas BinderisClassical violinist, born 1965 in Alma-Ata, Kazakhstan.CorrectDas Mozarteum Orchester Salzburg + +3680745Rachel IngletonClassical oboist. +She studied at the [l290263]. Sub-Principal Oboe with [a=The Academy Of St. Martin-in-the-Fields].Needs Votehttps://www.facebook.com/rachel.ingleton.3https://open.spotify.com/artist/3V9PpAcPGSWpoQl1TzDqouhttps://music.apple.com/us/artist/rachel-ingleton/337011232https://www.asmf.org/musician-profiles/London Symphony OrchestraThe Academy Of St. Martin-in-the-Fields + +3680746Ricardo ZwietischBrazilian violist, based in the UK.Correcthttp://www.ricardozwietisch.co.uk/The Academy Of St. Martin-in-the-Fields + +3681191Heinz Hofer (3)Swiss clarinet player Needs VoteH. HoferSchola Cantorum BasiliensisZürcher BläseroktettTonhalle-Orchester Zürich + +3681513Niek IdemaClassical viola playerNeeds VoteNic IdemaNik IdemaCollegium VocaleLe Parlement De MusiqueLa Stravaganza KölnLa Fantasia + +3681742Hermann EistererAustrian double bassist, born 1963 in Vienna, Austria.Needs VoteWiener SymphonikerTonkünstler OrchestraConcilium MusicumViola Da Gamba Consort Wien + +3682022Marvin ShoreAmerican upright bass playerCorrectHarry James And His Orchestra + +3682043Niklaus FrischNiklaus Frisch (born 1951) is a Swiss classical hornist.Needs VoteOrchester der Oper ZürichBläserensemble Sabine MeyerQuintette Pro Arte - Zürich + +3682134Ruth GleaveClassical alto singer.Needs VoteThe English Concert ChoirEx Cathedra Chamber ChoirThe Schütz Choir Of London + +3685583Gregor HorschGerman cellist, married to [a=Pascale Went], father of [a5459710]Needs VoteG. HorschConcertgebouworkestResidentie OrkestNetherlands Ballet OrchestraCellokwartet Amsterdam + +3686621Quinny (3)Craig QuinnNeeds Votehttps://soundcloud.com/quinnyukofficial/EQ (42) + +3687097Tatiana UhdeTatjana UhdeClassical cellistNeeds VoteOrchestre National De L'Opéra De Paris + +3687098Ana MilletViolinist, born in 1984 in Buenos Aires.Needs VoteOrchestre Philharmonique De Radio France + +3687099Jeremy PasquierFrench viola player, born 2 June 1983.Needs VoteJérémy PasquierOrchestre Philharmonique De Radio FranceOrchestre Colonne + +3687100Clara StraussFrench cellist.CorrectOrchestre National De L'Opéra De Paris + +3687237Heinz-Henning PerschelHeinz-Henning Perschel (born 28 December 1941) is a German classical violinist and painter.Needs VoteH. Henning PerschelBerliner PhilharmonikerBerliner Barock SolistenNDR SinfonieorchesterPhilharmonia Ensemble Berlin + +3687243Rainer SonneRainer Sonne (born 1950) is a German classical violinist.Needs VoteBerliner PhilharmonikerCharis-Ensemble + +3687244Herbert RotzollHerbert Rotzoll (19 March 1910 - 31 January 1999) was a German trumpet player. He's the father of [a3828052]. +A member of the [a260744] from 1929 to 1976.Needs VoteBerliner PhilharmonikerBerliner Sinfonie-Orchester (2) + +3687249Axel GerhardtGerman violinist, born 8 January 1943 in Wuppertal, Germany.Needs Votehttp://axelgerhardt.com/Berliner PhilharmonikerHerzfeld-Quartett + +3687253Walter ScholefieldClassical violinist, born 1939 in Venice, Italy.Needs VoteW. ScholefieldBerliner PhilharmonikerPhilharmonia Quartett Berlin + +3687259Gustav ZimmermannGustav Zimmermann (14 August 1932 - 2018) was a German violinist, photographer and coleopterist. +A member of the [a260744] from 1962 to 1997.Needs VoteBerliner Philharmoniker + +3687262Wolfgang HerzfeldWolfgang Herzfeld (10 April 1937 in Berlin, Germany - 1 January 2026) was a German violinist. +A member of the [a260744] from 1960 to 2002.Needs VoteBerliner PhilharmonikerOrchester Der Deutschen Oper BerlinBerliner KammerorchesterRias JugendorchesterHerzfeld-Quartett + +3687264Peter DohmsGerman violinist, born in 1939.CorrectBerliner Philharmoniker + +3687687Alan Cave (3)British classical bassoon / contrabassoon player. +After the Second World War, Captain Cave K.O.Y.L.I. played bassoon and contrabassoon at [a=Sadler's Wells Orchestra] and with [a=The London Symphony Orchestra] (double bassoon 1955-1962). He then taught music at Habadashers Aske's Boys School in New Cross in the 1970s and became Head of woodwind at London's Centre for Young Musicians. He possessed an extensive collection of printed wind chamber music, known as [b]Alan Cave Collection[/b] (now at [l1379071]).Needs Votehttps://www.horniman.ac.uk/agent/agent-9436/London Symphony OrchestraSadler's Wells Orchestra + +3689743Albert TiptonAmerican flute player.Needs VoteMr. Albert TiptonThe Philadelphia OrchestraDetroit Symphony OrchestraSaint Louis Symphony OrchestraNational Symphony OrchestraThe Tipton Trio + +3690172Valentin KoshinВалентин Васильевич КожинValentin Vasilyevich Kozhin (1943, Leningrad - 1992, Montgeron, near Paris) - Russian conductor, opera director, composer. +Honored Artist of the RSFSR (1983).Needs Votehttps://ru.wikipedia.org/wiki/%D0%9A%D0%BE%D0%B6%D0%B8%D0%BD,_%D0%92%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%B8%D0%BD_%D0%92%D0%B0%D1%81%D0%B8%D0%BB%D1%8C%D0%B5%D0%B2%D0%B8%D1%87Валентин КожинLeningrad Philharmonic OrchestraThe Ural Philharmonic OrchestraОркестр Ленинградского Государственного Академического Малого Театра Оперы И Балета + +3690220Julian SperryClassical flautist. +He has been performing and recording with [a=The Adderbury Ensemble] for over 20 years.Needs Votehttps://mobile.twitter.com/sperryjulianhttps://www.adderburyensemble.com/julian-sperry-flute/https://londonserenata.com/biohttps://maslink.co.uk/client-directory?client=SPERJ1&instrument=FLUTE1London Symphony OrchestraThe Arc Of Light OrchestraThe Adderbury Ensemble + +3690315Steffen Neumann (2)Classical viola playerNeeds VoteDresdner PhilharmonieEnsemble »Alte Musik Dresden«Dresdner Barockorchester + +3690342Martin PopeClassical trumpeter, sackbutist and drummerNeeds VotePopePeasants AllThe Medieval Ensemble of LondonLondon Pro MusicaThe Guildhall Waits + +3690353Antoine GanayeFrench trombomistNeeds VoteOrchestre Philharmonique De Radio FranceDenis Levaillant Music Ensemble + +3691204Timothy PooleyViolist. +Husband of [a=Sarah Ewins].Needs VoteTim PooleyHallé OrchestraYoung Musicians Symphony Orchestra + +3691551Stanislaw DziewiorClassical trumpeterNeeds VotePolish National Radio Symphony Orchestra + +3691552Marek BarańskiClassical bassoonistNeeds VotePolish National Radio Symphony Orchestra + +3691553Michał MazurkiewiczClassical trombonistNeeds VotePolish National Radio Symphony Orchestra + +3691555Michał PaliwodaClassical double bassistNeeds VotePolish National Radio Symphony Orchestra + +3692445Charles BarbierFrench tenor and countertenor vocalist, born in 1979.Needs Votehttp://www.addictio.fi/charles.htmLe Concert SpirituelL'Échelle + +3694052Simona VenslovaitėClassical violinist from LithuaniaNeeds VoteSimona VenslovaiteGewandhausorchester LeipzigKremerata BalticaMünchener KammerorchesterEnsemble 20. Jahrhundert + +3694054Daniil TrifonovДаниил ТрифоновRussian classical pianist. +Born March 5, 1991 in Nizhny Novgorod.Correcthttp://www.daniiltrifonov.com/D. TrifonovTrifonov + +3694352Piffaro, The Renaissance BandFounded in Philadelphia in 1980, Piffaro performs 15th- through 17th-century music. +current members [url=https://www.piffaro.org/players/greg-ingles/]Greg Ingles[/url] and [url=https://www.piffaro.org/players/erik-schmalz/)]Erik Schmalz[/url] not on Discogs 1/2020.Needs Votehttps://www.piffaro.org/PiffaroPiffaro – The Renaissance BandPiffaro, EnsembleAdam GilbertGwyn Roberts (2)Tom ZajacRotem GilbertGrant HerreidJoan KimballRobert WiemkenChrista PattonPriscilla HerreidGeorge Hoyt (2)Eric Anderson (31)Greg InglesErik SchmalzKris Kwapis + +3694364Fred HarmerFrederick HarmerClassical pecussionist. +He was Principal Percussion of the [a341104].Needs VoteRoyal Philharmonic OrchestraPhilharmonia OrchestraLondon Baroque Ensemble + +3694447Rotem GilbertClassical wind instrument player, native of Haifa, Israel. Currently Associate Professor of Practice, Early Music, Musicology, USC Thornton School of MusicNeeds Votehttps://music.usc.edu/rotem-gilbert/RGRotem Gilbert (RG)CiaramellaPiffaro, The Renaissance Band + +3694515Santa VižineLatvian classical violist.Needs VoteKremerata BalticaConcertgebouworkestSinfonietta Rīga + +3694724Ewald WinklerEwald Winkler (11 April 1925 in Vienna, Austria - 10 April 2010) was and Austrian cellist. He was married to [a3694721].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener KammerorchesterGensler-Winkler Trio + +3694900Rudolf HuberAustrian flute player, born 1953 in Telfs, Austria.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +3694901Peter RoczekPeter Roczek (born 17 December 1945) is a classical cellist and music director.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerDie Instrumentisten Wien + +3694902Friedrich WächterAustrian oboist.Needs VoteF. WächterFriedrich WachterWiener Symphoniker + +3694903Reinhard WieserClarinetist. + +Began his clarinet studies in 1980 at the University of Music and Performing Arts in Vienna with Alfred Prinz. As early as 1985 he was appointed as principal clarinetist member of the Vienna Symphony Orchestra. Wieser continued his studies and graduated in 1988 with honors diploma. +Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinThe Vienna Chamber Ensemble + +3694905Kurt WeidenholzerAustrian violinist.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +3694944Kaarlo KramsuNeeds Vote + +3695385Friedrich Wührer (2)Friedrich Wührer jun.Austrian-German violinist, born 22 January 1925 in Vienna, Austria and died 21 April 2000 in Hamburg, Germany. He's the son of the pianist [a=Friedrich Wührer].Needs VoteFreidrich WührerFriedrich WuehrerFriedrich WuhrerFriedrich Wührer Jr.Symphonie-Orchester Des Bayerischen RundfunksPhilharmonisches Staatsorchester HamburgDas Wührer-KammerorchesterHamburger KammerorchesterWührer-OktettWührer-QuartettWührer-Streich-Sextett + +3695973Rossella BorsoniItalian classical violinistNeeds VoteEuropa GalanteAcademia Montis RegalisAlessandro Stradella ConsortLa RisonanzaStile Galante + +3696438Charlotte Scott (2)Classical violinist. +Founder member of the Piatti Quartet, she joined the Badke Quartet in 2003Needs Votehttp://maslink.co.uk/client-directory?client=SCOTC3&http://www.badkequartet.co.uk/charlotte-scott/Scottish Chamber OrchestraThe Badke QuartetMarylebone CamerataOculi Ensemble + +3698335Alan JeffreysAmerican Jazz trumpeter.Needs VoteAllan JeffreysJeffreysJeffriesBoyd Raeburn And His OrchestraHubert Fol & His Be-Bop Minstrels + +3698574Major Tamás (2)Violin PlayerNeeds VoteTamas MajoTamas MajorTamás MajorBudapest Festival OrchestraÓbudai Danubia ZenekarOrchestra Della Radio Televisione Della Svizzera Italiana + +3698580Ács GyörgyClassical violinistCorrectCamerata Academica Salzburg + +3700434Carolyn SpareyClassical string player.Needs VoteCaroline SpareyCarolyn Gillies-SparyCarolyn Sparey-GilliesThe Academy Of Ancient MusicDeller ConsortThe Music PartyYorkshire Baroque Soloists + +3701019Barbara FleckensteinSoprano from Munich, GermanyNeeds Votehttp://www.bach-cantatas.com/Bio/Fleckenstein-Barbara.htmFleckensteinChor Des Bayerischen Rundfunks + +3701020Max HanftClassical keyboard instrumentalistNeeds VoteMünchner Rundfunkorchester + +3701809Bridget Evans (2)CellistCorrectLondon Philharmonic OrchestraThe London Cello Sound + +3703407Louis De CahusacFrench writer and librettist, born 6 April 1706 in Montauban, died 22 June 1759 in Paris, known for his work with [a671328].Needs Votehttps://en.wikipedia.org/wiki/Louis_de_Cahusachttp://www.rameau2014.fr/eng/RESSOURCES/Librettists/CAHUSAC-Louis-de-1706-1759 + +3704061Fiona PoupardPoupard Fiona-EmilieFrench classical violinistNeeds VoteFiona Emilie PoupardFiona- Emilie PoupardFiona-Emilie PoupardFiona-Émilie PoupardLa Petite BandeLe Poème HarmoniqueLa RéveuseLe Banquet CélesteEnsemble Marguerite LouiseEnsemble Il CaravaggioThe Scale Knitters + +3704068Alain PégeotFrench classical violinistNeeds VoteLe Concert SpirituelLe Poème HarmoniqueLa RéveuseLes Ombres (3) + +3704077Jean-François MadeufFrench classical trumpeter and hornist.Needs VoteLe Concert SpirituelLes Arts FlorissantsIl Seminario MusicaleMusica FioritaBach Collegium JapanLe Poème HarmoniqueLes Ambassadeurs (6)Le Concert BriséEnsemble EolusThe Arianna Ensemble + +3704087Helena PoczykowskaPolish classical vocalistNeeds VoteRIAS-KammerchorCapella CracoviensisEuropäisches Hanse-Ensemble + +3704372Albert IgolnikovRussian born classical violinist, born in 1935.Needs VoteLeningrad Philharmonic OrchestraChicago Symphony OrchestraChicago Pro Musica + +3704374Willard ElliotAmerican classical bassoonist, born 18 July 1926 in Fort Worth, Texas and died 7 June 2000 in Fort Worth, Texas.Needs VoteElliotW. ElliotWillard S. ElliotDallas Symphony OrchestraChicago Symphony OrchestraHouston Symphony OrchestraChicago Pro Musica + +3704376Donald KossAmererican classical perussionist and timpanist, born in 1939.Needs VoteChicago Symphony OrchestraChicago Pro Musica + +3704571Gary Potter (2)American jazz bassist, but also plays trombone and acted as an arranger for jazz pieces.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdThe Woody Herman Big Band + +3704597Eli EbanIsraeli-American clarinetist, born in New York City.Needs Votehttps://www.elieban.com/Israel Philharmonic OrchestraMarlboro Festival OrchestraJerusalem Symphony Orchestra + +3710439Desirée VerlaanDutch alto/mezzo-soprano vocalist.Needs VoteCappella Amsterdam + +3710479Al King (5)TrombonistCorrectAl KingAlphonso KingJimmie Lunceford And His OrchestraArnett Cobb & His Orchestra + +3710591Franz KittlFranz Kittl is an Austrian songwriter and clarinetist.Needs VoteF. KittlF.KittlKittlDas Mozarteum Orchester SalzburgMozarteum QuartettFranz Kittl Und Die Salzburger MusikantenTrio Wallner + +3710938Simón ZlotnikViolistNeeds VoteSimon ZlotnikSimón ZleotnikAstor Piazzolla Y Su Orquesta + +3711213Helmut ZehetnerAustrian violinist, born 1955 in Amstetten, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerJoseph Haydn-Quartett Wien + +3711224Ants ÕnnisEstonian classical double bassist, born 1956Needs VoteA. ÕnnisАнтс ЫннисEstonian National Symphony OrchestraKontor + +3711504Wiesław GrochowskiClassical hornistNeeds Votehttps://waltornia.pl/biografie/364-wieslaw-grochowskiPolish National Radio Symphony OrchestraKwintet Instrumentów Dętych „Da Camera” + +3712448Bruce Hudson (3)American hornistCorrectMinnesota OrchestraBurning River Brass + +3712596Jean-Claude CadrésClassical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +3712600Gilles ApparaillyClassical violistNeeds VoteOrchestre National Du Capitole De Toulouse + +3714738Fabien BrunonFrench classical violinistNeeds VoteOrchestre De L'Opéra De Lyon + +3714745Dominique DelbartClassical violinistNeeds VoteOrchestre De L'Opéra De Lyon + +3714926Marco BrolliAppears as producer and classical Traverso flautistNeeds VoteIl Giardino ArmonicoLa RisonanzaRetablo Barocco + +3715010Willi ForsterWilli Forster is a Swiss drummer, percussionist and drum teacher. He's the father of [a4577711].Needs VoteRadio-Sinfonieorchester Stuttgart + +3715551Dave Mitchell (11)Jazz trumpet playerNeeds VoteJay McShann And His Orchestra + +3715552Jesse Jones (12)Jazz trumpet playerNeeds VoteJay McShann And His Orchestra + +3715555Rudy MorrisonJazz trombonistNeeds VoteJay McShann And His Orchestra + +3715556Rudolph DennisJazz saxophonistNeeds VoteJay McShann And His Orchestra + +3715895Kyle Turner (4)American tuba player.Needs Votehttps://www.kturnertuba.com/Kyle TurnerNew York PhilharmonicThe American Symphony OrchestraOrchestra Of St. Luke'sSolid BrassChamberlain Brass + +3716237Patrick DingleClassical clarinet player.Needs VoteBournemouth Symphony Orchestra + +3716238Colin VerrallClassical violin player. Principal violin, Bournemouth Symphony Orchestra, ca. 1971.Needs VoteBournemouth Symphony Orchestra + +3716241John FulkerClassical violin playerNeeds VoteBournemouth Symphony Orchestra + +3716242Josephine BarnesClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716243Molly KirbyViolin player.Needs VoteBournemouth Symphony Orchestra + +3716244Barry GlynnClassical double bass player.Needs VoteBournemouth Symphony Orchestra + +3716245Sheila WhitmoreClassical violinist.Needs VoteBournemouth Symphony Orchestra + +3716246Ian Harvey (4)Classical violin player.Needs VoteBournemouth Symphony Orchestra + +3716247Jacqueline GushClassical percussionist. Principal percussionist, Bournemouth Symphony Orchestra ca. 1971.Needs VoteBournemouth Symphony Orchestra + +3716248Cedric MorganClassical violist.Needs VoteBournemouth Symphony Orchestra + +3716249Timothy ColmanClassical violinist. +In 1971 he performed with the [a=Bournemouth Symphony Orchestra]. He joined the [a=Philharmonia Orchestra] in 1974.Correcthttps://www.feenotes.com/database/artists/colman-timothy/Philharmonia OrchestraBournemouth Symphony Orchestra + +3716250Denis WiseClassical trombonist. Principal trombone, Bournemouth Symphony Orchestra ca. 1971.Needs VoteBournemouth Symphony Orchestra + +3716251Peter Hastings (2)English horn player. For the songwriter, use [a1218302]. For the unofficial photographer for [a547971], use [a6737541].Needs VoteBournemouth Symphony Orchestra + +3716252Laurence BeersFlute player; principal flute for the Bournemouth Symphony Orchestra, ca. 1971Needs VoteBournemouth Symphony Orchestra + +3716253Alfred JuppClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716254Michael FroudClassical percussionist.Needs VoteBournemouth Symphony Orchestra + +3716255Richard WillettsClassical violist.Needs VoteBournemouth Symphony Orchestra + +3716256Lyndon Thomas (2)Double bass player.Needs VoteBournemouth Symphony Orchestra + +3716257Leslie MuskViolinist.Needs VoteBournemouth Symphony Orchestra + +3716258Malcolm PfaffClassical horn player.Needs VoteBournemouth Symphony Orchestra + +3716259Alison MyersClassical cellistNeeds VoteAllison MyersBournemouth Symphony Orchestra + +3716260William HuddartClassical violist.Needs VoteBournemouth Symphony Orchestra + +3716261Bernadette HumeClassical double bass player.Needs VoteBournemouth Symphony Orchestra + +3716262Eric ButtPrincipal bassoonist (ca. 1971), Bournemouth Symphony OrchestraNeeds VoteBournemouth Symphony Orchestra + +3716263Eric Joseph (2)Classical violist.Needs VoteBournemouth Symphony Orchestra + +3716264Helen ReynoldsClassical cellist.Needs VoteBournemouth Symphony Orchestra + +3716265Judith RodmellClassical violinist.Needs VoteBournemouth Symphony Orchestra + +3716266Caroline BerthoudViolin player.Needs VoteBournemouth Symphony Orchestra + +3716267Hubert DownsDouble bass player.Needs VoteBournemouth Symphony Orchestra + +3716268Barrington LatchemClassical trumpet player.Needs VoteBournemouth Symphony Orchestra + +3716269Alan CutterClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716270Raymond CarpenterClassical clarinet player, principal for Bournemouth Symphony Orchestra ca. 1971Needs VoteBournemouth Symphony Orchestra + +3716271Donald Macdonald (4)Classical violin player. Principal, Bournemouth Symphony Orchestra, ca. 1971.Needs VoteBournemouth Symphony Orchestra + +3716272Anthony Godwin (2)Former (bass) clarinet player with [a835739] and founder of [a3402363], specialising in performing salon, theatre and dance orchestra music from the period 1900 - 1945.Needs VoteGodwinMr Anthony GodwinMr. Anthony GodwinMr. GodwinBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +3716273Donald FroudClassical horn player.Needs VoteBournemouth Symphony Orchestra + +3716274David Johnson (42)Double Bassoon player.Needs VoteBournemouth Symphony Orchestra + +3716275Graham BeazleyClassical double bass player, jazz bass player and trombonist.Needs VoteGraham BeazeleyBournemouth Symphony Orchestra + +3716276William HallettClassical violist.Needs VoteBournemouth Symphony Orchestra + +3716277Graham CooteClassical trumpet player.Needs VoteBournemouth Symphony Orchestra + +3716278Sidney ToddClassical violist.Needs VoteBournemouth Symphony Orchestra + +3716279Christopher Gale (2)Bassoonist.Needs VoteBournemouth Symphony Orchestra + +3716280John Butterworth (3)Classical violin player.Needs VoteBournemouth Symphony Orchestra + +3716281Daphne MaxwellClassical violoist.Needs VoteBournemouth Symphony Orchestra + +3716282Susan Smith (6)Classical violinist.Needs VoteBournemouth Symphony Orchestra + +3716283Alwyn GreenBritish trombone player and occasionally arranger.Needs VoteGreenMr Alwyn GreenCity Of Birmingham Symphony OrchestraBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +3716284Laurence GrayDouble bass player.Needs VoteBournemouth Symphony Orchestra + +3716285Charles BarnesViolin player.Needs VoteBournemouth Symphony Orchestra + +3716286Aoife FroudClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716287Andrew Clunies-RossClassical cellist.Needs VoteBournemouth Symphony Orchestra + +3716288William Kitchen (3)Classical trumpet player.Needs VoteBournemouth Symphony Orchestra + +3716289Julia BrocklehurstClassical violin player.Needs VoteBournemouth Symphony OrchestraHanover Band + +3716290Valentine AbazaClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716291Gillian KayeClassical cellist.Needs VoteBournemouth Symphony Orchestra + +3716292Brian ForeshawClassical trumpet player.Needs VoteBournemouth Symphony Orchestra + +3716293Charles ThorgilsonClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716294Ian PillowClassical violist.Needs VoteBournemouth Symphony Orchestra + +3716295Robert Colman (2)Classical violin layer.Needs VoteBournemouth Symphony Orchestra + +3716296Sally Brown (4)British violist. +Sister of [a393383], [a926325] and [a890910].Needs VoteBournemouth Symphony Orchestra + +3716297Marilyn DownsClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716298Jeffrey PlentyViolin player.Needs VoteBournemouth Symphony Orchestra + +3716299George FolprechtDouble bass player. Principal double bass, Bournemouth Symphony Orchestra, ca. 1971Needs VoteBournemouth Symphony Orchestra + +3716300Peter Baird (2)Classical flute player.Needs VoteBournemouth Symphony Orchestra + +3716301John Braddock (2)British flute player. Principal piccolo, Bournemouth Symphony Orchestra, ca. 1971Needs VoteMr. BraddockMr. John BraddockBournemouth Symphony OrchestraThe Palm Court Theatre Orchestra + +3716302Stefan ReveszClassical cellist.Needs VoteBournemouth Symphony Orchestra + +3716303David SheanClassical violin player.Needs VoteBournemouth Symphony Orchestra + +3716880Randall BellerjeauAmerican trombonist. Born in 1918.Needs VoteRandy BellerRandy BellerjeanRandy BellerjeauGene Krupa And His Orchestra + +3717557Hans Peter SchuhAustrian trumpeterNeeds VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerBläserkreis Der Hochschule Für Musik Und Darstellende Kunst Graz Und Der Expositur In OberschützenEnsemble "11" + +3719101Gene PhippsAmerican jazz trumpet player active late 1940sNeeds VoteWardell Gray SextetWardell Gray and his Quintette + +3719778Lester Bass (2)American jazz trombonist.Needs VoteLionel Hampton And His Orchestra + +3719804Maria Luisa TorchioItalian harpist.Needs VoteM. Luisa TorchioOrchestra dell'Accademia Nazionale di Santa Cecilia + +3719806Carlo TamponiCarlo TamponiItalian flautist. Needs Votehttp://carlotamponi.altervista.orgC. TamponiOrchestra dell'Accademia Nazionale di Santa CeciliaTrio Hormus + +3720294Ladies Of The Philharmonic ChorusNeeds VoteLadies Of The Philharmonia ChorusWomen's Voices Of The Philharmonia ChorusPhilharmonia Chorus + +3722411Timothy ConstableAustralian percussionistNeeds VoteSydney Symphony OrchestraSynergy Percussion + +3723215Steven ProctorViolinist.Needs VoteHallé OrchestraUp North Session Orchestra + +3723216Rosemary AttreeBritish violinistCorrecthttps://twitter.com/attreerHallé OrchestraLeos Strings + +3723217Jane HallettClassical cellistCorrectHallé Orchestra + +3723219Elizabeth BosworthViolinistCorrectHallé Orchestra + +3723220Grania RoyceViolinistCorrectHallé Orchestra + +3723221Caroline AbbottViolinistCorrectHallé Orchestra + +3723223Daniel StorerBritish classical double bassistCorrectDan StorerHallé OrchestraThe Manchester Camerata + +3723225Rachel MeerlooBritish classical bassistCorrecthttps://twitter.com/rachelmeerlooHallé Orchestra + +3723227Julian MottramBritish violistCorrectHallé Orchestra + +3725288Johnny Bayersdorffer And His Jazzola Novelty OrchestraNeeds Major ChangesJohnny BayersdorfferJohnny Bayersdorffer & His Jazzola Novelty OrchestraJohnny Bayersdorffer & His Orch.Johnny Bayersdorffer & His OrchestraJohnny Bayersdorffer And His Jazzola Jazz OrchestraTom BrownLeon AddeChink MartinJohnny BayersdorfferJohnnie Miller (3)Charlie ScaglioneSteve Loyocano + +3725368Art Gronwall"Pianist Art Gronwall goes back to the Volstead era when he played with Ray Miller, Gene Goldkette, and jobbed with jazz names like Eddie Condon, Wingy Manone, and the immortal Bix Beiderbecke, who inspired his full-chord piano style." (From [r14061980])Needs VoteJean Goldkette And His OrchestraFreddy Aune And His Speakeasy Trio + +3726084Irish HenryCredited as bass player.Needs VoteJean Goldkette And His Orchestra + +3726203Rebecca Knight (2)English cellist Rebecca Knight has been a member of the Lawson Trio since 2007. Born in east London, she was brought up in the south downs by the sea, She’s a member of [a=City of London Sinfonia] and a regular extra with Academy St Martin-in-the-Fields chamber orchestras. You can hear her improvisations within the Academy's recent Sound Walk installation ‘A City of Stories’. Rebecca has also guest-led cello sections of the CBSO, Ulster Orchestra and Wexford Festival Opera, and has been a section tutor and workshop leader with the National Youth Orchestra since 2021. Needs Votehttps://lawsontrio.com/rebecca-knight-celloCity Of London SinfoniaLawson Trio + +3726592Patricia MoynihanIrish orchestral & chamber classical flautist. +She studied at [l305416].Needs Votehttp://www.morgensternsdiaryservice.com/WebProfile/moynihan_p_4117.shtmlhttp://www.deirdremoynihan.com/projects/the-moynihans/14-soprano/the-moynihans/62-patricia-moynihan-profileLondon Symphony OrchestraThe Arc Of Light Orchestra + +3727689Peter Zimmermann (4)German classical cellist.Needs VotePeter Zimmermannペーター-ツメルマンRundfunk-Sinfonieorchester BerlinBrahms-Streichquartett + +3727975Pavel NejtekClassical double bassistNeeds VoteNejtek PavelP. VestekThe Czech Philharmonic Orchestra + +3728566David RosensweigViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteD. RosensweigNew York Philharmonic + +3730815Clare PenkeyClassical hornist from the UK.Needs VoteClaire PenkeyThe SixteenThe Mozartists + +3730816Claire Mera-NelsonScottish classical violinist.Needs Votehttps://www.linkedin.com/in/claire-mera-nelson-musiccoach/https://twitter.com/clairemn_musicClaire NelsonThe SixteenGabrieli Players + +3730817Sarah MoffattIrish classical violinist.Needs Votehttps://www.linkedin.com/in/sarah-moffatt-2489133a/https://x.com/sarahmoffattvlnThe SixteenThe King's ConsortEuropean Brandenburg EnsembleLondon Early OperaThe Band Of InstrumentsRoyal Academy of Music Baroque OrchestraThe Mozartists + +3730818Benjamin BaylAustralian organist and harpsichordist born 1978 in SydneyNeeds Votehttp://www.benjaminbayl.com/The SixteenOrchestra Of The Antipodes + +3730819Siona SpillettClassical bassoonist from the UK.Needs VoteThe Sixteen + +3730820Allison Hill (2)Alison Ponsford-HillBritish soprano vocalist.Needs Votehttps://www.alisonhill.org.uk/https://www.bach-cantatas.com/Bio/Hill-Alison.htmThe Sixteen + +3731398Dale Hikawa-SilvermanClassical violistNeeds VoteDale Endres HikawaDale HikawaDale Hikawa SilvermanDale SilvermanLos Angeles Philharmonic Orchestra + +3732756Martin OrtnerAustrian violist and singer, born 1 February 1955 in Waidhofen / Ybbs.Needs Votehttp://martin-ortner.at/Wiener SymphonikerWiener Volksopernorchester + +3732933Konosuke OnoJapanese violist, born in 1936.CorrectKounosuke Ono小野耕之助小野耕之輔Boston Symphony Orchestra + +3733596Jane OdriozolaClassical cellist, oboist and violone playerNeeds VoteBergen Filharmoniske Orkester + +3733785Charles WoodhouseCharles John WoodhouseBritish violinist, arranger, composer, and conductor (leader). Born in 1879 in London, England, UK - Died on the 2th of May, 1939 in Beare Green, Surrey, England UK. +Founder member of the [a=London Symphony Orchestra] (1904-1928, Principal Second Violin in 1913). During his career he played in various orchestras including the [a=Royal Philharmonic Orchestra], and that at the [url=https://www.discogs.com/artist/855061-Orchestra-Of-The-Royal-Opera-House-Covent-Garden]Royal Opera House, Covent Garden[/url], but he was particularly associated with the [url=https://www.discogs.com/artist/835737-Sir-Henry-Wood]Henry J. Wood[/url] Promenade Concerts, taking over as leader of the [a=Queen's Hall Orchestra] for the 1920 summer Prom season. He was to remain as Wood's leader for fourteen years through two changes of orchestra title. One was purely for copyright reasons, to [a=The New Queen's Hall Orchestra] in 1927; the other was when the [a=BBC Symphony Orchestra] was formed in 1930, mostly from the members of the New Queen's Hall and London Wireless Orchestras. He led the BBC Orchestra during the winter 1929-30 and, subsequently, as Sub-Leader, led it for the Proms until ill health compelled him to resign in 1934.Needs Votehttp://www.musicweb-international.com/amateurs/Woodhouse.htmlC. WoodhouseCh. WoodhouseCharles J. WoodhouseChas WoodhouseWoodhouseProsper MorandLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenThe New Queen's Hall OrchestraQueen's Hall Orchestra + +3734735Te Roy Williams And His OrchestraNeeds Major ChangesTe Roy Williams & His Orch.Te Roy Williams & His OrchestraTe Roy Williams And His Orch.Te Roy WilliamsFreddy Johnson (5) + +3735218Philip B. CatelinetPhilip Bramwell Catelinet(b. December 3, 1910 in Guernsey, UK - d. November 21, 1995) British composer, arranger, musician (tubist and euphoniumist), conductor, Professor of Tuba and writer. +He received diplomas from the [l=Royal Academy Of Music], [l=Trinity College Of Music, London] and the Incorporated London Academy of Music. +Trained as a pianist, he became an arranger for the Salvation Army and composed or arranged over 100 vocal and instrumental pieces just for the Army. He taught himself to play the tuba and euphonium. His abilities on these instruments earned him a position with the BBC Military Band from 1937 to 1942. After the war, he became the principal tubist for [a=The BBC Theatre Orchestra] and performed with the London Symphony and Philharmonia Orchestras as well. He premiered the [a=Ralph Vaughan Williams] Tuba Concerto with [a=Sir John Barbirolli] & the [a=London Symphony Orchestra] on June 13, 1954. In 1956 moved to Pittsburgh, PA, USA to teach music at [l=Carnegie Institute Of Technology]. Catelinet was active throughout his life with the Salvation Army as an arranger. After retirement, moved back to England to continue composing and arranging.Needs Votehttp://philipcatelinet.com/https://open.spotify.com/artist/6BkfMqJTgITWJUwSx6rnIChttps://www.windsongpress.com/brass%20players/tuba/Catelinet.pdfBandmaster Phil Catalinet L.R.A.M.Bandmaster Phil CatelinetCatalinetCatelinetCatlineeP. CatelinetPhil B. CatelinetPhil CatelinetPhilip CatelinetLondon Symphony OrchestraPhilharmonia OrchestraThe BBC Theatre Orchestra + +3736313Eduard RabClassical viola playerNeeds VoteMusica Antiqua WienSolistenensemble Der Wiener Staatsoper + +3736394Jennifer Hardy (2)English classical cellistNeeds VoteLes Musiciens Du LouvreEnsemble MatheusLes SièclesHarmonie Universelle + +3736640Joe GishJazz sousaphonistCorrectThe Stomp Six + +3736641Marvin SaxbeEarly Jazz banjoist, guitarist and percussionistNeeds VoteMarvin SaxbySaxbeSaxbyThe Bucktown FivePaul Mares & His Friars Society Orchestra + +3736642Dick FeigeJazz cornetist, active in Chicago in the 1920's.Needs VoteDick FegeDick FeigieDick FiegeCharles Pierce And His OrchestraElmer Schoebel And His Friars Society Orchestra + +3737415Einar SchøyenNorwegian bassist, born 1952 in Stavanger, Norway.Needs VoteOslo Filharmoniske Orkester + +3737681Renaud LeippHornist.Needs Votehttp://www.vsp-orkestra.com/renaud-leipp.htmlOrchestre Philharmonique De StrasbourgVSP OrkestraOrchestre Régional De Jazz D'AlsaceVibraphone Spécial Project + +3738311Roland BüchnerCredited as chorus master of [a=Regensburger Domspatzen]CorrectBüchnerDomkapellmeister Roland BüchnerRegensburger Domspatzen + +3738918Wolfgang AdlerGerman classical tenor vocalist born in BerlinCorrectConcentus Musicus Wien + +3739448Mitglieder der Münchner PhilharmonikerTo be used for members of the orchestra [a261451]. + +For the string ensemble, please use [a2016984].Needs Vote6 Münchner PhilharmonikerEnsemble Der Münchner PhilharmonikerLos Miembros De La Filarmónica De MunichMembers Of The "Munich Philharmonic Orchestra"Members Of The "Münchner Philharmoniker"Members Of The Munich Philharmonic OrchestraMembers Of The Philharmonic Orchestra MunichMembers Of The Philharmonic Orchestra, MunichMembers of Münchner PhilharmonikerMembers of The Munich Philharmonic OrchestraMembers of the Munich Philharmonic OrchestraMembres Of The Munich Philharmonic OrchestraMembres de l'Orchestre Philharmonique de MunichMemebers of the Munich PhilharmonicMiembros de la Filarmónica de MunichMitglieder Der Münchener PhilharmonieMitglieder Der Münchener PhilharmonikerMitglieder Der Münchner PhilharmonieMitglieder der Münchener PhilharmonikerMitglieder der Münchner PhilharmonieMusicicians Of The Munich Philharmonic OrchestraSymphonieorchester Aus Mitgliedern Der "Münchner Philharmoniker"The Members Of "The Munich Philharmonic Orchestra"Münchner Philharmoniker + +3739721Jian LiuClassical violinistNeeds VoteRoyal Philharmonic Orchestra + +3739772Orazio GrossiItalian classical violistNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739773Basilio SanfilippoClassical trombonist.Needs VoteBasilo SanfilippoOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739774Domenico BurioniNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739775Alessandro Lugli (2)Italian classical violinistNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739776Diego PetreraItalian classical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaI Romans + +3739777Maryse RegardClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739778Paolo CapponiNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739779Jo Lane BeversCellist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739780Agostino SperaClassical trombonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739781Vincenzo CamagliaNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739782Antonio Marchetti (2)Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739783Pietro GaburroNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739784Giorgio Di CrostaClassical violinistNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaFilarmonica Della Scala + +3739785Umberto VassalloItalian viola player. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739786Roberto SaluzziItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739787Margherita CeccarelliItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +3739788Fiorenza GinanneschiItalian violinist. Needs VoteI Solisti VenetiOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739789Arcangelo LosavioClassical hornist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739790Bruno GonizziItalian classical trumpeter.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739791Marco BugariniClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739792Giovanni LeonettiItalian viola player. Needs VoteLeonetti GiovanniOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739793Guido CasaranoItalian violinist. Needs VoteCasarano GuidoOrchestra dell'Accademia Nazionale di Santa CeciliaI Filarmonici Di Roma + +3739794Antonio Del VecchioItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739795Luciano CapicchioniNeeds VoteCapicchioni LucianoOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739796Adolf NeumeierNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739797Antonio BologneseItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739798Giuseppe Consiglio (2)Italian trombonistNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Jazz Del Mediterraneo + +3739799Romolo BalsaniNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739800Riccardo PiccirilliItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739801Federico Rossi (2)Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3739802Dante MilozziItalian flutist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Sinfonica Nazionale Della RAIQuintetto BriccialdiEuropean Wind Soloists + +3739803Vincenzo BuonomoItalian clarinet player. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +3740167Miguel Angel Gomez-MartinezSpanish conductor and composer born 17 September 1949 in Granada. Died 4 August 2024. +Orquesta Sinfónica de RTVE principal conductor from 2016 to 2019. Needs Votehttp://miguelgomezmartinez.net/http://figm.org/es/fundacion.htmlhttps://en.wikipedia.org/wiki/Miguel_%C3%81ngel_G%C3%B3mez_Mart%C3%ADnezhttps://www.imdb.com/name/nm5200216/Gómez-MartínezM. A. Gómez MartínezMiguel A. Gòmez MartínezMiguel Angel Gomez MartinezMiguel Gomez MartinezMiguel Gomez MartínezMiguel Gomez-MartinezMiguel Gómez MartínezMiguel Gómez-MartínezMiguel Ángel Gómez MartínezMiguel Ángel Gómez-MartínezOrquesta Sinfónica de RTVEOrquesta de ValenciaOrquesta Sinfónica de Euskadi + +3740288Emma HeathcoteBritish classical violin & viola instrumentalistNeeds Votehttps://www.hyperion-records.co.uk/a.asp?a=A3750Royal Philharmonic Orchestra + +3741512Mateusz MarczykClassical violinistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejSinfonia Viva (2) + +3742189Clay NicholasNeeds Major Changes + +3742219Michael L. AbramsonNeeds Major ChangesMichael Abramson + +3742907Jonathan GuyonnetItalian violinist, born in San Remo, Italy.Needs VoteVenice Baroque OrchestraI Virtuosi Delle Muse + +3742908Matteo FusiItalian cellistCorrectVenice Baroque Orchestra + +3742909Gisella CurtoloItalian violin / viola player and music teacher.Needs Votehttp://www.gisellacurtolo.com/http://www.orchestramozart.com/en/musicians/gisella-curtolo.htmlhttps://www.conservatoriliceu.es/es/professors/gisella-curtolo/https://www.leonelmoralesandfriends.com/en/curtolo-gisella/Venice Baroque OrchestraOrchestra Mozart + +3742935St. Louis Levee BandNeeds Major ChangesSt. Louis Levée BandJelly Roll Morton + +3744110Fiona RussellClassical cornettistNeeds VoteGabrieli PlayersCaecilia ConcertOltremontano + +3745917Juan Francisco PadillaClassical string and wind instrumentalistNeeds VoteJuanfra PadillaIl Giardino Armonico + +3746046Gustave CloëzFrench conductor (born 3 August 1890 in Roubaix, France - died 15 March 1970).Needs Votehttp://en.wikipedia.org/wiki/Gustave_Clo%C3%ABzhttps://adp.library.ucsb.edu/names/368061CloezCloëzG. CloezG. CloëzG. GloezG. GloêzG. GloëzGustav CloezGustav CloëzGustave CloezGustave ClœzM .G. CloezM. G. CloëzM. G. CloezM. G. CloëezM. G. CloëzM. G. ClöezM. G. GloezM. Gustave CloëzM.G. CloezOrchestre Du Théâtre National De L'Opéra-ComiqueGustave Cloëz Et Son Orchestre + +3746602Gabriele WeinfurterGerman mezzo-soprano vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3746606Isolde MitternachtGerman sopranoCorrectIsolde Mitternacht-GeisendörferChor Des Bayerischen Rundfunks + +3746607Claudia UlbrichSoprano vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3746608Michael MantajGerman bass-baritone vocalist.Needs VoteChor Des Bayerischen RundfunksSingphonikerNederlands Kamerkoor + +3746610David StinglGerman classical bass vocalist born in Brühl (Baden)Needs VoteRundfunkchor BerlinChor Des Bayerischen RundfunksGächinger Kantorei Stuttgart + +3746612Hilke BrosiusSoprano vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3746615Simona BrüninghausGerman soprano born in 1968.Needs VoteSimona BrünighausChor Des Bayerischen Rundfunks + +3746619Hanne WeberGerman mezzo-soprano & alto vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3746621Gisela UhlmannGerman classical contralto vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3746624Theodor WeimerClassical tenor vocalist, born in Bonn, Germany.Needs VoteChor Des Bayerischen Rundfunks + +3746625Sabine StaudingerClassical alto vocalist.Needs VoteChor Des Bayerischen Rundfunks + +3746626Atsuko SuzukiSoprano vocalist form Osaka, JapanNeeds Votehttp://www.bach-cantatas.com/Bio/Suzuki-Atsuko.htmChor Des Bayerischen Rundfunks + +3746627Lorenz Fehenberger (2)Lorenz FehenbergerTenor vocalist, son of [a1340360].Needs VoteChor Des Bayerischen Rundfunks + +3747736Bernhard RoseGerman bassoonist. +CorrectStaatskapelle Dresden + +3748545Sjaan OomenDutch violinist. She's the daughter of [a1693990].Needs VoteConcertgebouworkestAmsterdam SinfoniettaNederlands Jeugd Strijkorkest + +3748547Ying Lai GreenDouble bassist.Needs VoteYing-Lai GreenYing-lai GreenRotterdams Philharmonisch OrkestAmsterdam SinfoniettaEuropean Camerata + +3749359Edward AtkatzAmerican percussionist, born 1971 in New York, NY.Needs VoteE. AtkatzEdward "Ted" AtkatzEdward J. AtkatzEdward Ted AtkatzTed AtkatzChicago Symphony OrchestraNew England Conservatory Wind EnsembleNyco (4)"Joe Bonamassa Live At The Hollywood Bowl" Orchestra + +3750514Lionel PartyClassical harpsichordist originally from Chile. Lionel joined the New York Philharmonic in 1986 and retired in 2012.Needs VoteNew York PhilharmonicAston Magna + +3751693Walter JoachimGerman-born Canadian cellist and teacher, born 5 May 1912 in Düsseldorf, Germany and died 20 December 2001 in Montreal, Canada. He's the brother of [a419440].Needs VoteOrchestre symphonique de MontréalMontreal String Quartet + +3751694Mildred GoodmanCanadian violinist, born 13 November 1922 in Montreal, Canada.Needs VoteOrchestre symphonique de MontréalMcGill Chamber OrchestraMontreal String Quartet + +3751748Marvin KoralMarvin A. KoralReeds player. He served in the U.S. Army during WW II. After the war, he was hired by [a=Tommy Dorsey] to replace [a=Buddy Franco]. In 1954, he settled in Las Vegas where he played with the Dick Rice Orchestra and headed sessions at the Sneak Joint in the mid-1960s. In 1992, he formed the group "Marv Koral & The All Stars". +b.: Jan. 3, 1926 in Oakland Park, IL +d.: Jan. 31, 2005 in Las Vegas, NV.Needs VoteMartin KoralTommy Dorsey And His OrchestraMarv Koral & The All Stars + +3752203Ed StannardDixieland jazz alto sax playerNeeds VoteEddie StannardEdward StannardCalifornia Ramblers + +3752231Johannes LörstadNils Johannes LörstadSwedish classical violinist, born July 15, 1970.Needs VoteMahler Chamber OrchestraLucerne Festival OrchestraKungliga FilharmonikernaMalmö OperaorkesterThe Maier Quartet + +3752234Ulrika DahlbergUlrika Dahlberg-DanielssonSwedish classical trumpeter.Needs VoteGöteborgs SymfonikerGöteborgsOperans Orkester + +3752753Erin KeefeAmerican violinist.Needs Votehttps://www.minnesotaorchestra.org/about/our-people/orchestra-musicians/erin-keefe/https://www.seattlechambermusic.org/artists/erin-keefe/https://www.pcmsconcerts.org/artist/erin-keefe-violin/Minnesota OrchestraSeattle Chamber Music Society + +3752848Jürgen Wirth (2)German tuba player.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleGerman BrassSWR Symphonieorchester + +3752913Вадим КалентьевВадим Васильевич КалентьевVadim Kalentiev is a Soviet Russian conductor.Needs Votehttps://100philharmonia.spb.ru/persons/42277/Vadim KalentievВ. КалентьевLeningrad Kirov Theater OrchestraРусский Народный Оркестр Имени В. Андреева + +3754695James BoxAmerican classical trombonist.Needs VoteOrchestre symphonique de MontréalBurning River Brass + +3754759Matthew GuilfordAmerica trombonist and bass trombonist.Needs VoteNational Symphony OrchestraWashington Trombone Ensemble + +3754944David DelacroixFrench cellistNeeds VoteOrchestre Des Concerts LamoureuxSinfonieorchester BaselEuropean Union Youth Orchestra + +3754945Nikolaus RömischGerman cellist, born in 1972 in Berlin, Germany.CorrectBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerBundesjugendorchester + +3754946Uta Damm-KühnerGerman alto vocalist and yoga educatorCorrecthttp://deinyoga.de/3.htmlRundfunkchor Berlin + +3754947Christoph IgelbrinkGerman cellist, born in 1958 in Düsseldorf, Germany.Needs VoteBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerPhilharmonisches Oktett BerlinBundesjugendorchesterBerlin Philharmonic Piano Trio + +3754949Beate ThiemannGerman soprano vocalistCorrectRundfunkchor Berlin + +3754950Richard DuvenGerman cellist, born in 1958 in Cologne, Germany.Needs VoteDuvenBerliner PhilharmonikerScharoun Ensemble BerlinDie 12 Cellisten Der Berliner PhilharmonikerBundesjugendorchester + +3755001Franz SchindlbeckGerman drummer, born in 1967.CorrectFranz SchindelbeckBerliner Philharmoniker + +3755189Szentirmay ElemérNémeth JánosHungarian composer (especially folk-songs, csárdáses). +Born: 9 November 1836, Horpács, Hungary. +Died: 3 October 1908, Budapest, Hungary.Needs Votehttp://hu.wikipedia.org/wiki/Szentirmay_Elem%C3%A9rhttps://adp.library.ucsb.edu/names/109911E. SzentirmayE. ZentirmayE.SzentirmayElemer SzentirmayElemér SzentirmaiElemér SzentirmayElemér Szentirmay (né János Németh)Elmer SzentirmayNémeth - SzentirmayS. ElemerScentirmaySzantirmaySzentirmai E.SzentirmaySzentirmay E.Szentirmay ElmerSzontirmayШентермай + +3755237Dóczy JózsefDóczy JózsefHungarian composer, songwriter (especially folk-songs). +Born: 11 May 1863, Miskolc, Hungary. +Died: 1 July 1913, Budapest, Hungary.Needs Votehttps://hu.wikipedia.org/wiki/D%C3%B3czy_J%C3%B3zsef_(n%C3%B3taszerz%C5%91)https://adp.library.ucsb.edu/names/312416Doczy J.Doczy JozsefDoczy JózsefDócziDóczi JózsefDóczyDóczy J.Dóczy JózsofJ. DóczyJosef BoczyJosef DoczyJosef DóczyJoszef DóczyJozsef DoczyJósef DoczyJózsef Dóczy + +3757187Samuel BrillSamuel Brill (12 July 1903 - 5 February 1985) was a Dutch classical cellist.Needs VoteConcertgebouworkestRotterdams Philharmonisch OrkestUtrechts Stedelijk OrkestDivertimento Quartet + +3758446Antoni AdamusClassical trumpeterNeeds VotePolish National Radio Symphony Orchestra + +3758448Damian WalentekClassical hornistNeeds Votehttps://waltornia.pl/biografie/962-damian-walentekPolish National Radio Symphony Orchestra + +3758450Zbigniew KaletaClassical clarinetistNeeds VoteKaletaPolish National Radio Symphony Orchestra + +3758453Adrian TicmanClassical hornistNeeds VotePolish National Radio Symphony Orchestra + +3758456Rudolf BrudnyClassical hornistNeeds VotePolish National Radio Symphony Orchestra + +3758460Joanna DziewiorClassical flautistNeeds VotePolish National Radio Symphony Orchestra + +3759682Valentine KitaineAlto vocalistCorrectChoeur National De L'Opéra De ParisChœur De Chambre Féminin De L'Ile De France + +3760416Yuki Numata ResnickViolinist.Needs Votehttp://www.yukinumata.com/Yuki NumataSignal (9)Arcana Orchestra + +3760423Emilie-Anne GendronViolinist.Needs VoteEmile-Anne GendronEmilie Anne GendronOrpheus Chamber OrchestraArcana OrchestraMomenta Quartet + +3760430Michael Nicolas (2)Canadian classical cellist, based in New York City, USA.Needs Votehttp://michaelnicolascellist.com/Mike NicolasOrchestre symphonique de MontréalBrooklyn RiderInternational Contemporary EnsembleArcana OrchestraThe Ars Combinatoria String Quartet + +3760498Maud GnidzazClassical soprano vocalistNeeds Votehttps://maudgnidzaz.comhttps://www.facebook.com/Maud-Gnidzaz-Soprano-124046627702045/Les Arts FlorissantsPygmalionChoeur Arsys Bourgogne + +37609432PopVisual artist, designer, FranceNeeds Vote2 Pop + +3761231Marie MacleodMarie Louise Wilhelmsson-MacleodBritish classical cellist and teacher of cello, born June 13, 1980. +She graduated from [l305416]. She was appointed principal cellist of the [url=https://www.discogs.com/artist/2770118-Kungliga-Filharmonikerna]Royal Stockholm Philharmonic Orchestra[/url] in 2013. She has performed as soloist with orchestras including the [a=London Symphony Orchestra] and [a=Ulster Orchestra] and with the [a=Royal Stockholm Philharmonic Orchestra], with which she performed [a=Sir Edward Elgar]’s "Cello Concerto" in 2016. She regularly performs in [l=Konserthuset, Stockholm]'s chamber music series. Since 2004, she has also been a member of the [a=Lendvai String Trio] and the [a=Aronowitz Ensemble]. She has also collaborated for many years with Swedish pianist [a=Martin Sturfält].Needs Votehttps://www.linkedin.com/in/marie-macleod-10536273/https://www.konserthuset.se/en/royal-stockholm-philharmonic-orchestra/members-in-the-orchestra/cello/marie-macleod/Marie McLeodMary McLeodMary McleodLondon Symphony OrchestraRoyal Philharmonic OrchestraUlster OrchestraKungliga FilharmonikernaLendvai String TrioPhoenix Piano TrioAronowitz EnsembleAntiphon (4) + +3762083Ulrike HöfsGerman flutistNeeds VoteDeutsche Kammerphilharmonie BremenHamburger Camerata + +3762086Sophie MatherBritish violinistNeeds Votehttps://www.berkeleyensemble.co.uk/about/sophie-mather/Royal Philharmonic OrchestraLondon Contemporary OrchestraThe Manchester CamerataBerkeley EnsembleNova Music Opera Ensemble + +3762924Jasmine SchnarrCanadian classical viola playerNeeds VoteOrchestre symphonique de MontréalQuatuor MolinariLa Pietà + +3762925Alison Mah-PoyClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3762926Peter ParthunClassical cellistNeeds VoteOrchestre symphonique de Montréal + +3762927Li-Ke ChangClassical cellistNeeds VoteOrchestre symphonique de Montréal + +3762928Peter Rosenfeld (2)Classical bassistNeeds VoteOrchestre symphonique de Montréal + +3762929Renaud LapierreClassical violinistNeeds VoteOrchestre symphonique de MontréalSymphony Nova Scotia + +3762930Martin MangrumClassical bassoonistNeeds VoteOrchestre symphonique de Montréal + +3762931Éveline Grégoire-RousseauCanadian classical harpistNeeds VoteEveline RousseauEvelyne Grégoire-RousseauOrchestre symphonique de MontréalMcGill Symphony Orchestra + +3762932Xiao-Hong FuClassical violinistNeeds VoteOrchestre symphonique de Montréal + +3762934Hugues Tremblay (2)Canadian percussionistNeeds VoteOrchestre symphonique de Montréal + +3762935Lindsey MeagherClassical bassistNeeds VoteLindsay MeagherOrchestre symphonique de Montréal + +3762936Stéphane Lévesque (2)Classical bassoonistNeeds VoteOrchestre symphonique de MontréalLes Solistes OSM + +3762937Andrei MalashenkoClassical timpanist.Needs Votehttps://www.hardtketimpani.com/timpanists/andrei-malachenko/Andrei MalaschenkoNew Zealand Symphony OrchestraOrchestre symphonique de Montréal + +3762938Gerald MorinClassical cellistNeeds VoteOrchestre symphonique de Montréal + +3762939Russell DevuystClassical trumpet playerNeeds VoteRussel Edward DevuystOrchestre symphonique de Montréal + +3762940Carolyn ChristieCanadian classical flutistNeeds VoteOrchestre symphonique de Montréal + +3762942Andrew Beer (2)Canadian classical violinistNeeds VoteAuckland Philharmonia OrchestraOrchestre symphonique de Montréal + +3762943Rémi Nakauchi PelletierClassical viola playerNeeds VoteRemi PelletierRémi PelletierNew York PhilharmonicToronto Symphony OrchestraOrchestre symphonique de MontréalOrchestre Métropolitain du Grand MontréalMcGill Symphony Orchestra + +3765758Emmanuel Petit (3)Classical cellistNeeds VoteE. PetitOrchestre National De FranceZ Quartett + +3767090John Milner (5)Classical hornistNeeds VoteOrchestre symphonique de Montréal + +3767992Roger TomlinsonUK Regimental Bandmaster. + +Roger Tomlinson was educated at the Duke Of York's Royal Military School, where as a member of the School Band, he played the trombone. In 1957 he joined the Royal Signals Band under the Directorship of the legendary Lt. Col. John L. Judd. As a Student Bandmaster at the Royal Military School of Music he was the winner of the Worshipful Company of Musicians Medal for the best Student Bandmaster of his class in addition to winning many of the Class Competition prizes. His first appointment as a Bandmaster was to the Argyll and Sutherland Highlanders in 1969, and in 1971, he was re-appointed as Bandmaster of the 16th/5th The Queen's Royal Lancers.Needs VoteCaptain R.G. Tomlinson BA, FTCL, ARCM, LGSMDirector of Music, Lieutenant Colonel R.G. Tomlinson BA, FTCL, ARCM, LGSM, psmLieutenant Colonel R.G.TomlinsonLt. Col. R.G. TomlinsonMajor R.G. Tomlinson BA, FTCL, LRAM, ARCM, LGSM PsmMajor R.G. Tomlinson, BA, FTCL, ARCM, LGSM, psmMajor R.G.TomlinsonR. TomlinsonTomlinsonW.O.1. R. G. Tomlinson, F.T.C.L., A.R.C.M., L.G.S.M.The 16th/5th Queen's Royal LancersThe Band Of The Royal Military School Of MusicThe Argyll And Sutherland HighlandersThe Band of the Royal Corps of Signals + +3768146Chink WilliamsAmerican Jazz drummer. Born 1927.Needs VoteHarold WingJames Moody And His Orchestra + +3768863Lucile ChionchiniFrench Lucile Chionchini was born in Lyon where she started to play the violin at the age of six. After her first diploma in chamber music and violin at the conservatory in Villeurbanne, she moved to Paris and studied viola with Bruno Pasquier and chamber music with the famous Ysaÿe String Quartet.Needs Votehttp://lespassions.ch/cms/en/orchestra/musicians?start=6Lucile ChiochiniSüdwestdeutsches KammerorchesterCapricornus Consort BaselLes Passions De L'Ame (2)Ensemble Concerto GrossoOrchester Der J.S. Bach Stiftung + +3772047Daniel BonadeDaniel Louis BonadeFrench clarinetist and professor of clarinet, born 4 April 1896 in Geneva, Switzerland and died 30 October 1976 in Cannes, France.CorrectThe Philadelphia OrchestraThe Cleveland Orchestra + +3772828Bud AikenAmerican trombonist.Needs VotePerry Bradford Jazz PhoolsEthel Waters And The Jazz Masters + +3772981Calvin Jones (7)Early jazz trombonistNeeds VoteCalvin "Fuzz" JonesPerry Bradford Jazz PhoolsThe Plantation OrchestraEubie Blake And His Orchestra + +3773271Zinky CohnZinky Augustus CohnAmerican jazz pianist, born August 18, 1908 in Oakland, California, died April 26, 1952 in Chicago. +Lived in Chicago from 1917, played with [a=Roy Palmer] c. 1928, [a=Jimmie Noone] 1929-1931, and recorded with Noone 1933-1935. Also worked with [a=Erskine Tate] 1932, [a=Eddie South] 1933-1934, 1936. From 1938 played only part-time.Needs VoteZ. CohnZincy CohnJimmie Noone's Apex Club OrchestraFrankie Franko & His LouisianiansJimmie Noone And His OrchestraHarry Dial And His Blusicians + +3773272Eddie PollackAmerican jazz saxophonistNeeds VoteEd PollackEd PollockJimmie Noone's Apex Club OrchestraJimmie Noone And His Orchestra + +3773425Francesco Morlacchi(14 June 1784 – 28 October 1841), Italian composer.Needs Votehttps://en.wikipedia.org/wiki/Francesco_MorlacchiD. MorlacchiF.MorlacchiMorlacchiStaatskapelle Dresden + +3774618Yulia IglinovaClassical violinistNeeds VoteOrquesta Sinfónica de RTVEFatum String Trio + +3774949Laszlo BarkiLászló BarkiLászló Barki (born 1958 in Vienna) is an Austrian violinist.Needs VoteDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener Symphoniker + +3774953Kurt MelzerViolinist.Needs VoteWiener Symphoniker + +3776041Clarence Williams And His Bottomland OrchestraNeeds Major ChangesClarence Williams & His Bottomland OrchestraEd AndersonClarence Williams + +3779125James NickelAmerican classical horn player. He is married to flutist [a4182854].Needs Votehttps://music.gmu.edu/staff/james-nickel/J. NickelDallas Symphony OrchestraNational Symphony OrchestraOrchestre symphonique de MontréalNew England Conservatory Wind Ensemble + +3779126Roger KazaAmerican horn player, born 1955 in Buffalo, New York and raised in Portland, Oregon.Needs Voterogerkaza.comVancouver Symphony OrchestraBoston Symphony OrchestraSaint Louis Symphony OrchestraHouston Symphony OrchestraThe Kansas City Symphony + +3779223Milton Jackson And His New GroupNeeds Major ChangesMilt Jackson And His New Sound GroupMilt Jackson New Sound GroupLou DonaldsonArt BlakeySahib ShihabThelonious MonkMilt JacksonKenny ClarkePercy HeathWalter Bishop, Jr.John Lewis (2)Nelson BoydJulius WatkinsAl McKibbonBilly MitchellBill Massey + +3780064Fiddlestix (2)Needs Major Changes + +3782525Thomas MichalakPolish born conductor and violinist, born in 1941 in Krakow, Poland and died in July 1986 in Newark, New Jersey.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +3782787Sandro RebelSandro Rebel is a Los Angeles based Brazilian pianist and musician from Rio De Janeiro.Correctساندر ربل + +3783056Friedrich August KummerNeeds VoteF.A. KummerFr. KummerKummerStaatskapelle Dresden + +3784715Bo Juel ChristiansenBo Juel-ChristiansenDanish flautist, born 18 November 1941 in Copenhagen. Member of [a=Aalborg Symfoniorkester] since 1964. Father to [a=Nikolaj Juel] and [a=Bastian Juel].Needs VoteAalborg Symfoniorkester + +3785620Adela PeñaAmerican violinistNeeds VoteAdela PenaOrpheus Chamber OrchestraEroica Trio + +3785621David Perry (11)ViolinistNeeds VoteOrpheus Chamber OrchestraPro Arte Quartet + +3786924Jan Valta (2)Jan ValtaCzech violinist, composer, conductor. + +Born in 1977. Son of pianist and conductor [a=Jan Valta]. Needs Votehttp://www.projectfulcanelli.com/valta.htmhttp://www.heroldq.cz/EN/EN2nd.htmhttp://cs.wikipedia.org/wiki/Jan_ValtaHonza ValtaThe Czech Philharmonic OrchestraHeroldovo KvartetoHněddé Smyčce + +3786948Kai Ewans Og Hans OrkesterDanish 30's to 40's jazz orchestraNeeds VoteKai Ewan's OrchestraKai Ewans And His OrchestraKai Ewans BandKai Ewans Med Sit OrkesterKai Ewans OrkesterKai Ewans' OrchestraKai Ewans' OrkesterThe Kai Ewans OrchestraSvend AsmussenChristian JensenUlrik NeumannErik FrederiksenAmdi RiisAxel SkoubyAage VossKnut KnutssonPalmer TraulsenKai EwansPeter RasmussenLeif Johansen (3)Børge NordlundGeorg OlsenNiels FossErik KraghKaj Møller (2)Anker SkjoldborgOtto Banner-JansenKurt PedersenEric KirschnerOluf CarlssonEvald AndersenKnut KnutsønKelof Nilsson + +3788070Karl SchütteGerman clarinetist (1891 - 1977). Alongside [a1183542], [a16612262] and [a16612256] he was a member of the "Erste Bläser-Vereinigung der Staatsoper Dresden" and the "Kapelle der Staatsoper Dresden" in the 1920sNeeds Votehttps://de.wikipedia.org/wiki/Karl_Sch%C3%BCtte_(Klarinettist)カール・シュッテStaatskapelle DresdenBläserquintett Der Staatskapelle Dresden + +3788071Alfred TolksdorfGerman oboist.Needs Voteアルフレード・トルスクドルフStaatskapelle DresdenBläserquintett Der Staatskapelle Dresden + +3788072Günter SchaffrathGerman horn player.Needs Voteギュンター・ シャフラッシュRundfunk-Sinfonie-Orchester LeipzigStaatskapelle DresdenHornquartett Des Rundfunk-Sinfonie-Orchester LeipzigBläserquintett Der Staatskapelle Dresden + +3788628Maurizio MoroNeeds Major ChangesM. MoroMauritio MoroMoro + +3788629Ridolfo Arlottitalian poet (1546 - 1613) and librettistNeeds VoteArlotti + +3788883Nelson ShelladayNeeds VoteNelson ShalladayBoyd Raeburn And His OrchestraGeorgie Auld And His Orchestra + +3788889Evan VailFrench hornistCorrectBoyd Raeburn And His Orchestra + +3788974Sam PersoffViola player.Needs VoteSamuel PersoffArtie Shaw And His OrchestraArtie Shaw And His Strings + +3788975Gene StultzGuitarist from the swing era.CorrectGene StulzArtie Shaw And His Orchestra + +3789196Kalman LevinClassical violinist born in Riga, Latvia.Needs VoteIsrael Philharmonic Orchestra + +3789202Ram OrenClassical trumpeter. + +Hebrew: רם אורןNeeds Voteרם אורןIsrael Philharmonic Orchestra + +3789205Robert MosesRobert MozesRobert Mozes is a Romanian-born Israeli violinist, violist and classical composer. He is a graduate of the Cluj Academy of Music. After immigrating to Israel in 1977 he earned a master's degree at the Tel Aviv Rubin Academy of Music. He has been a member of the [a=Israel Philharmonic Orchestra] since 1978. He is also a member of the Israel String Quartet and a former member of the Jerusalem String Trio.Needs VoteRobert Mozesרוברט מוזסIsrael Philharmonic Orchestra + +3789213Marina DormanClassical violinist. + +Hebrew - מרינה דורמןNeeds Voteמרינה דורמןIsrael Philharmonic Orchestra + +3789215Emanuel GruberIsraeli classical cellist and teacher.Needs VoteEmaunuel GruberIsrael Philharmonic OrchestraIsrael Chamber OrchestraThe Los Angeles Chamber OrchestraThe Sequoia String QuartetThe Israel Flute Ensemble + +3789810Hans ReznicekAustrian flutist, born 10 September 1910 in Vienna, Austria and died 30 August 1979 in Vienna, Austria. He's the father of [a3908545].Needs VoteHans RecnicekHans RezniceckReznicekWiener PhilharmonikerBläservereinigung Der Wiener PhilharmonikerChamber Orchestra of the Vienna State Opera + +3790054Fortunatus "Fip" RicardFortunatus Paul RicardAmerican jazz trumpet. +b. April 4, 1923 in Chicago, Illinois. +d. April 26, 1996 in Los Angeles, California.Needs Vote"Flip" RicardF. P. RicardF.P. RicardF.P. RichardFip RicardFip RichardFlip RicardFlip RicardoFlip RichardFortunatos RicardFortunatus RicardPaul RicardPaul RichardPortunatos RicardRicardo FortunatusRickie FortunatusCount Basie OrchestraIllinois Jacquet And His OrchestraAndy Kirk And His OrchestraRed Saunders & His Orchestra + +3790104Maciej KostrzewaPolish hornist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +3790427Michaela GirardiClassical violinistNeeds VoteCamerata Academica SalzburgÖsterreichisches Ensemble Für Neue MusikMarylebone Camerata + +3790429Laura DixonBritish classical violinist. Born in Surrey, England, UK. +She studied at the [l290263]. She joined the First Violin section of the [a=London Symphony Orchestra] in 2018. +Fiancée of [a=Michael McHale].Needs Votehttps://lso.co.uk/more/blog/1280-welcome-to-new-members.htmlhttps://lso.shorthandstories.com/lso-local-chamber-ensemble/index.htmlLondon Symphony OrchestraPhilharmonia OrchestraMarylebone Camerata + +3790433Jonathan SellsEnglish bass / baritone vocalist born 1982 in LondonNeeds Votehttp://www.bach-cantatas.com/Bio/Sells-Jonathan.htm16 to 21SellsLes Arts FlorissantsChor Der J.S. Bach StiftungSolomon's Knot + +3790435Alice HalsteadClassical soprano vocalistNeeds VoteThe Choir Of Clare College + +3790439Ronan BusfieldBritish tenor vocalistNeeds Votehttps://twitter.com/ronanbusfield?lang=dehttp://www.ronanbusfield.comRónan BusfieldLondon Voices + +3790703Nicholas HoughamBritish horn playerNeeds VoteBBC Symphony Orchestra + +3790779David WhistonBritish classical violinist, concertmaster, and violin teacher. Born 8 October 1941 in South Elmsall, West Yorkshire, England, UK. +He studied at the [l290263]. In the early 1960s, he went on tour with the [a=London Philharmonic Orchestra]. Former member of the [a=London Symphony Orchestra] (1963-1964), Co-Leader of the [a=Royal Philharmonic Orchestra], concertmaster of [a=The London Palladium Orchestra], and Concertmaster of [b]The Royal Ballet Orchestra[/b]. In the late 1970s, he moved to Switzerland and led the second violins of the [a=Zurich Opera Orchestra]. He accompanied the [a1204589] as second Concertmaster on a tour of England. Member of the [b]Bristol Symphony Orchestra[/b]. He taught at the Guiseley School.Needs Votehttps://www.facebook.com/david.whiston.92https://www.linkedin.com/in/david-whiston-b89a68108/?originalSubdomain=ukhttps://www.linkedin.com/in/david-whiston-5823b3bb/?originalSubdomain=zahttps://en.wikipedia.org/wiki/David_Whistonhttps://www.famousbirthdays.com/people/david-whiston.htmlLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraZürcher KammerorchesterZurich Opera OrchestraThe London Palladium Orchestra + +3790881Beatrice SchirmerDouble bassist and composer, born in Hannover, Germany.Needs Votehttps://www.beaschirmer.com/Bea SchirmerHallé Orchestra + +3791619Frank SonnabendGerman oboist.CorrectStaatskapelle WeimarVirtuosi SaxoniaeLeipziger Bach-Collegium + +3792267William Little Jr.Early jazz vocalistCorrectWilliam Little, Jr.Bennie Moten's Kansas City Orchestra + +3792268Sam TallPseudonym for an unidentified banjoist who recorded with Benny Moten. + +"[Music critic Sinclair Traill] listed the banjo player on one very early recording as 'Sam (?),' which the typesetter mistakenly changed to 'Sam Tall.' The error slipped through proofreading and into print. 'And so he has remained ever since,' recalled Traill. 'Rust, Delaunay, and even one LP sleeve, all have his surname as dreamed up or mis-set by some unknown compositor.'" Bruce D. Epperson, "More Important than the Music - A History of Jazz Discography", p. 108 (University of Chicago Press, 2013)Needs VoteBennie Moten's Kansas City Orchestra + +3792269Willie Hall (4)Shellac era jazz drummerNeeds VoteBennie Moten's Kansas City Orchestra + +3794175Victor VecchioniClassical oboistNeeds VoteOrchestra Di Padova E Del VenetoI Solisti Veneti + +3794178Jean-Marie PoupelinJean-Marie Poupelin (born 1960) is a French classical oboist.Needs VoteOrchestre National De FranceI Solisti Veneti + +3794271Buddy PoorBernard RichBuddy Rich used the pseudonym "Buddy Poor" when he recorded with Harry James's band on the 1957 album [i]Wild About Harry![/I] Rich was under contract to Verve records at the time, and his contract prevented him from recording on competing labels.Needs Votehttps://en.wikipedia.org/wiki/Wild_About_Harry!https://en.wikipedia.org/wiki/Buddy_Richhttps://www.drummerworld.com/drummers/Buddy_Rich.htmlhttps://www.radioswissjazz.ch/it/banca-dati-musicale/musicista/55637881938a69e064d604d6bd709f2165e20/biographyhttps://downbeat.com/news/detail/the-drums-chose-buddy-richhttps://www.drummermauri.it/443218985https://www.imdb.com/name/nm0723608/https://www.britannica.com/biography/Buddy-Richhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/103419/Rich_BuddyBuddy RichBernard TrappsHarry James And His Orchestra + +3794471Reinhard DürrerReinhard Dürrer (8 June 1932 in Vienna, Austria) is an Austrian classical double bassist. He was a member of the [a754974] from 1966 to 1996.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler Orchestra + +3794472Franz ZamazalFranz Zamazal 18 July 1939 in Vienna, Austria - 23 January 2016) was an Austrian timpanist and percussionist.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +3795191Kenneth WillesClassical vocalistNeeds VoteWestminster Cathedral Choir + +3795192Nicholas JardineClassical soprano (treble) vocalistNeeds VoteWestminster Cathedral Choir + +3795193Dante Smith (2)Classical alto vocalistNeeds VoteWestminster Cathedral Choir + +3795194Jonathan SteeleClassical countertenor vocalistNeeds VoteJ. SteeleSteeleWestminster Cathedral Choir + +3795195Robin WillesClassical alto vocalistNeeds VoteWestminster Cathedral Choir + +3795196Ivor EvansClassical vocalistNeeds VoteWestminster Cathedral Choir + +3795197Denis HookerClassical alto vocalistNeeds VoteWestminster Cathedral Choir + +3795198Roy LockeClassical baritone vocalistNeeds VoteWestminster Cathedral Choir + +3795199Paul Harriman (3)Classical alto vocalistNeeds VoteWestminster Cathedral Choir + +3795200Michael RonayneClassical soprano (treble) vocalistNeeds VoteWestminster Cathedral Choir + +3795201Anthony AveraryClassical soprano vocalistNeeds VoteWestminster Cathedral Choir + +3795202Wilfred EatonClassical soprano (treble) vocalistNeeds VoteWestminster Cathedral Choir + +3795203Wilfred PurneyClassical baritone vocalistNeeds VoteWestminster Cathedral Choir + +3795204Christopher WindersClassical soprano vocalistNeeds VoteWestminster Cathedral Choir + +3795205Wildor ThérouxClassical tenor vocalistNeeds VoteWestminster Cathedral Choir + +3795242Tino PattieraMartin Anton Marcus PattieraCroatian-born operatic tenor, prominent member of the Dresden State Opera (1916 until 1941), with notable guest appearances in Chicago (1921/22) and throughout Europe. +Born 27 June 1890 in Cavtat (Ragusa Vecchia), Kingdom of Dalmatia, died 24 April 1966 in Cavtat, SR Croatia.Needs Votehttps://de.wikipedia.org/wiki/Tino_Pattierahttps://en.wikipedia.org/wiki/Tino_Pattierahttps://adp.library.ucsb.edu/names/104465https://www.opera.hr/index.php?p=article&id=3023Kammers. Tino PattieraKammersanger Tino PattieraKammersänger Tino PattieraT. PattieraТино ПатиераStaatskapelle Dresden + +3795806Thomas SelditzGerman violist and violinist.CorrectSelditzBerliner Sinfonie OrchesterStaatskapelle BerlinHugo Wolf QuartettGaede Trio + +3796090Clara DentClassical oboistNeeds VoteClara Dent-BoganyiStuttgarter KammerorchesterRundfunk-Sinfonieorchester BerlinBudapest Festival Orchestra + +3797570Edward HaugAmerican trumpet player, born in 1925 and died in 2001.Needs VoteSan Francisco Symphony + +3797571Carl ModellAmerican double bassist, born 15 March 1918 and died 12 August 1996.Needs VoteSan Francisco Symphony + +3797573Detlev OlshausenAmerican violist, born in 1918.Needs VoteSan Francisco SymphonySan Francisco Opera Orchestra + +3797576Raymond OjedaRaymond Anthony OjedaAmerican bassoonist, born 11 November 1923 and died 23 April 1989.Needs VoteSan Francisco SymphonySan Francisco Opera Orchestra + +3797577Frealon BibbinsAmerican clarinetist, born 9 April 1925 and died 23 July 2013.Needs VoteSan Francisco Symphony + +3797609Electric Monk (2)Needs Votehttps://www.facebook.com/faultymonkhttp://www.mixcloud.com/electricmonkhttps://soundcloud.com/electricmonk + +3797635Daniel GeissGerman cellist.Needs VoteOrchester der Bayreuther FestspieleHessisches Staatsorchester Wiesbaden + +3797948Peter WilmanBritish tenor vocalistCorrectLondon Voices + +3798747John MacombeAmerican jazz trumpeterNeeds VoteJohnny MacombeWoody Herman And His OrchestraWoody Herman And His Third Herd + +3799631Lene LindquistClassical flautist.Needs VoteBergen Filharmoniske Orkester + +3800512Romina LischkaAustria born classical viol player and founder and director of [a=Hathor Consort] Needs Votehttp://hathor-consort.eu/biographies,Romina-Lischkahttps://www.linnrecords.com/artist-romina-lischkaCollegium VocaleLes FlamboyantsZefiro TornaScherzi MusicaliHathor ConsortGli Angeli GenèveRatas del viejo MundoLe Jardin SecretLa Tempesta BaselRedherring Baroque Ensemble + +3801118Henry DiCeccoViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteHenry Di CeccoNew York Philharmonic + +3802687Karel Hoffmann (2)* 12.12.1872 Prague - Smíchov (former Austro-Hungarian Empire), † 30.3.1936 Prague - Podolí (former Czechoslovakia) +Czech violin virtuoso and music educator. First violinist of the České Kvarteto (Bohemian Quartet) and the Czech Trio, a professor of violin at themaster school of the Prague Conservatory. Propagator of Czech music abroad. He raised a number of domestic and foreign violinists, some of whom, such as Stanislav Novák, Francis Daniel, Kitty Červenková etc., have become well-known soloists. Was awarded the State Prize for the year 1927 and several foreign decorations.Needs Votehttp://www.starysmichov.cz/view.php?cisloclanku=2008070001K. HoffmannČeské Kvarteto + +3802689August SeiderGerman operatic tenor, born 11 February 1901 in Leverkusen, Germany and died 18 November 1989 in Gräfelfing, Germany.CorrectSeider + +3802691Hans MaederNeeds Major ChangesDr. MaederH. MaederMaeder + +3803617W. HyerNeeds Major ChangesW Hyer + +3803618George DilworthNeeds Major ChangesDilworth + +3803619H. BeebeNeeds Major ChangesH Beebe + +3803620Carmine De PalmaNeeds Major ChangesCarmine DePalmaDe PalmaDePalma + +3803722Timme Rosenkrantz And His Barrelhouse BaronsBand assembled by Timme Rosenkrantz for the production of a 1938 session for the Victor label. It was composed of Rex Stewart, Don Byas, Russell Procope, Tyree Glenn, Jo Jones and others.Needs Votehttps://en.wikipedia.org/wiki/Timme_RosenkrantzA3The BaronsTimme Rosenkrantz And His BaronsTimme Rosenkranz & The Barrelhouse BaronsTimmie Rosenkrantz And His "Barons"Timmie Rosenkrantz And His BaronsDon ByasRussell ProcopeJo JonesBilly KyleWalter PageRex StewartTyree GlennRudy WilliamsTimme RosenkrantzBrick FleagleBilly Hicks + +3804016Minat LyonsClassical cellist, teacher of cello, and psychoanalytic psychotherapist. +She graduated from the [l290263] in 2009. Former Co-Principal Cellist of the [a=London Symphony Orchestra] (2007-July 2021).Needs Votehttps://www.minatlyons.live/https://www.minatlyons.com/https://www.feenotes.com/database/artists/lyons-minat/https://vgmdb.net/artist/22830London Symphony Orchestra + +3804017Nele DelafonteyneBelgian classical clarinetist and teacher of clarinet. +From 2003 to 2005 she was solo clarinettist with the [a=European Union Youth Orchestra]. From 2007 to 2011, she was Principal Clarinet of the [a=London Symphony Orchestra]. Since September 2011, she has been solo clarinettist with the [a=Antwerp Symphony Orchestra]. Member of the wind ensemble [b]I Solisti[/b]. Teacher of clarinet at the music academy of Beveren.Needs Votehttps://www.facebook.com/nele.delafonteyne/https://www.antwerpsymphonyorchestra.be/nl/nele-delafonteynehttps://www.festival-resonances.be/artist/nele-delafonteyne/London Symphony OrchestraEuropean Union Youth OrchestraHet CollectiefAntwerp Symphony Orchestra + +3804018Philip NolteSouth African classical violinist and violist. Born in 1978 in Pretoria, South Africa. +He became First Violin with the [a=Orquestra Do Algarve] in 2002. Former 2nd violinist of the [a=London Symphony Orchestra] and member of the [a=LSO String Ensemble] (2005-2016). Sub-Principal Viola with the [a=Tonkünstler Orchestra].Needs Votehttps://www.facebook.com/philip.nolte.75https://www.feenotes.com/database/artists/nolte-philip-1978-present/https://www.facebook.com/CMADubai/photos/philip-nolte-is-a-violinist-in-the-london-symphony-orchestra-in-this-capacity-he/785645794835341/https://vgmdb.net/artist/22821London Symphony OrchestraTonkünstler OrchestraLSO String EnsembleOrquestra Do AlgarveTiroler Symphonieorchester Innsbruck + +3804019Jani PensolaJani PensolaFinnish classical bassist, also known as the [b]Funky Finn[/b]. Born in 1975 in Helsinki, Finland. +He studied at the [l530083] (graduated in 2000) and the [l527847]. He has been a member of the [a=London Symphony Orchestra] (the first ever Finn in the orchestra) since 2009. +Son of [a=Risto Pensola] and brother of [a=Minna Pensola].Needs Votehttps://www.facebook.com/jpensolahttps://www.feenotes.com/database/artists/pensola-jani-1975-present/https://lso.co.uk/orchestra/players/strings.html#Double_basseshttps://fi.wikipedia.org/wiki/Jani_Pensolahttp://www.kontrabassoklubi.fi/vanhatlehdet/Kontra-C-2005-1.pdfLondon Symphony OrchestraLSO String EnsembleHelsingin JuniorijousetAlakulo Ensemble + +3804021Elisabeth TriggElizabeth TriggBritish classical freelance bassoonist, and bassoon teacher. +She studied at the [l459222] (1998-1999) and the [l527847] (1999-2000). Member of the [b]Daunt Trio[/b] and [b]The Fortuna Trio[/b]. Bassoon teacher at [l305416].Needs Votehttps://www.facebook.com/elizabeth.trigg.37https://music.apple.com/us/artist/elizabeth-trigg/1471036111https://maslink.co.uk/client-directory?client=TRIGE1&instrument=BASSO1https://www.bachtobaby.com/guest-artistshttps://www.chirton.net/two.htmlhttps://www.imdb.com/name/nm10413864/Elizabeth TriggLondon Symphony OrchestraBritten Sinfonia + +3804022Thomas WatmoughBritish classical clarinetistNeeds VoteLondon Philharmonic OrchestraRoyal Philharmonic Orchestra + +3804024Amanda TrueloveBritish classical cellist, and Professor of Cello. Born in 1961. +She studied at the [l290263] and later became Professor of Cello at the same college. She worked and toured extensively with [a832962], [a848261], the [a855061], and the [a=Philharmonia Orchestra]. Member of the [a=London Symphony Orchestra] since 2007.Needs Votehttps://www.facebook.com/amanda.truelove.39https://www.instagram.com/amandastrings1/https://en.wikipedia.org/wiki/Amanda_Truelovehttps://www.facebook.com/amanda.truelove.39https://lso.co.uk/orchestra/players/strings.html#Celloshttps://www.rcm.ac.uk/strings/professors/details/?id=01428London Symphony OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsThe Chamber Orchestra Of EuropeOrchestra Of The Royal Opera House, Covent Garden + +3804025Niall KeatleyIrish classical trumpeter and Trumpet Professor. +While studying in Belfast, he was a member of the [a=City Of Belfast Youth Orchestra (CBYO)]. In addition, he was principal trumpet with the [a=National Youth Orchestra Of Great Britain]. He then studied at the [l527847] (1997-2001). During his studies at the RAM, he was a member of the [a=European Union Youth Orchestra] and also the [a=UBS Verbier Festival Orchestra] in Switzerland. He also spent a short time with the [a=Black Dyke Mills Band]. After graduating from RAM, he played as a freelancer with many UK orchestras and also joined the chamber group [a=Onyx Brass]. On 28 April 2017, after six years in the [a=Royal Philharmonic Orchestra], he joined the [a=London Symphony Orchestra] as Third Trumpet and in 2022 joined the [a=BBC Symphony Orchestra] as Co Principal Trumpet. Trumpet professor at the [l290263]. +Married to [a=Naoko Keatley].Needs Votehttps://www.facebook.com/niall.keatley/https://mobile.twitter.com/niallkeatleyhttps://www.instagram.com/niallkeatley/?hl=enhttps://www.linkedin.com/in/niall-keatley-47b9329/?originalSubdomain=ukhttps://open.spotify.com/artist/6c1rRkdYx3EbRQ6xFFkWtrhttps://onyxbrass.co.uk/promoters/niall-keatley/https://lso.co.uk/orchestra/players/brass.html/#Trumpetshttps://www.rcm.ac.uk/brass/professors/details/?id=95251https://maslink.co.uk/client-directory?client=KEATN1&instrument=TRUMP1London Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraThe Black Dyke Mills BandNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraOnyx BrassUBS Verbier Festival OrchestraLondon Symphony Orchestra BrassCity Of Belfast Youth Orchestra (CBYO) + +3804027Tim Ball (2)British hornist. +He studied at [l305416] (1996-1997). Starting from July 1997, he spent 16 years in the classical music industry as a freelance hornist, playing the French horn across most of London's symphony orchestras, the west end and in commercial recordings. In 2013, he sought a change of direction and pursued a love of the outdoors and boats.Needs Votehttps://hornblower.co.uk/about-hornblower/https://www.facebook.com/profile.php?id=100069236274922https://www.linkedin.com/in/tim-ball-a969175b/?originalSubdomain=ukhttps://www.imdb.com/name/nm7654138/Timothy BallLondon Symphony OrchestraPhilharmonia Orchestra + +3804029Alexandra Mackenzie (2)British classical cellist and cello teacher. +She studied at the [l527847] graduating with a BMus. She gained a Masters degree and Artists Certificate from the [l484524]. She has played with the [a=English Chamber Orchestra] for over a decade, in Greece with the [a=London Symphony Orchestra], and with numerous other orchestras in New York and Europe. Cello teacher at the Royal Academy of Music, Junior Department.Needs Votehttps://www.alexandramackenzie.co.uk/https://twitter.com/alexmaccello?lang=enhttps://stringsection.co.uk/cellos-hire-an-online-session-cellist-for-recordings/https://www.ram.ac.uk/people/alexandra-mackenzieLondon Symphony OrchestraEnglish Chamber OrchestraThe Goldberg Ensemble + +3804030Katherine Baker (3)British classical flutist and Professor of Flute, born in 1975. +She graduated from the [l527847]. Principal flute of the [a855061], having previously held the same position at the [a=BBC National Orchestra Of Wales] (2000-2004) and the [a374006]. After relocating down south, she had to give up her professorship at the [l459222].Needs Votehttps://www.fluteschoollondon.co.uk/kate-gracehttps://issuu.com/northernchamberorchestra/docs/1989793_jan_19_programmesLondon Symphony OrchestraHallé OrchestraOrchestra Of The Royal Opera House, Covent GardenBBC National Orchestra Of Wales + +3804641Joelle PerdaensBelgian classical violinistCorrectJoelle PerdaenConcerto KölnCafé Zimmermann + +3805025Claire McIntyreBorn in Stockton-on-Tees, England, Claire McIntyre discovered the sackbut during her Bachelor degree at the University of Birmingham, UK, where her particular interest in early music was encouraged and developed. Needs Votehttp://www.clairemcintyre.net/Collegium VocaleConcerto PalatinoLa FeniceVox LuminisGli Angeli GenèveAbendmusiken BaselConcerto SciroccoLa Fonte MusicaLes Traversées BaroquesLes Meslanges + +3805032Krzysztof LewandowskiPolish born Recorder, Dulcian and Bassoon instrumentalist.Needs VoteLe Concert SpirituelLe Poème HarmoniqueEnsemble La FeniceEnsemble CorrespondancesInaltoSyntagma AmiciLes Ambassadeurs (6)La TempêteEnsemble Les SurprisesAbendmusiken BaselLa PifareschaLes Épopées + +3806561Korneel BernoletBelgian harpsichordist, pianist, composer, conductor and recording engineer (born in Bruges, July 14th, 1989). Founder of [a=Apotheosis (8)]. Assistant-conductor with [a=Anima Eterna] between 2015-2018. Currently assistant at [a=Collegium Vocale].Needs Votehttp://www.bernolet.comAnima EternaCollegium VocaleLa Petite BandeLes Talens LyriquesIl GardellinoVlaams Radio KoorScherzi MusicaliTransports PublicsApotheosis (8)B'Rock OrchestraMannheimer HofkapelleBachPlusThe 1750 Project + +3806606Erik KraghDanish jazz drummer, band leader, often nicknamed "Spjæt"Needs VoteE. KraghEric KraghErik "Spjaet" KraghErik "Spjæt" KraghErik „Spjæt“ KraghRik KraghLeo Mathisens OrkesterKai Ewans Og Hans Stjerne-SolisterErik Tuxen Og Hans OrkesterMatadorerne (2)Kai Ewans Og Hans OrkesterPeter Rasmussen And His Swingin' SevenIngelise Rune And Her Swing SextetErik "Spjæt" Kragh's OrkesterArthur Young And His Danish Friends + +3806607Kaj Møller (2)Kai MøllerDanish 1920's jazz clarinetist and alto saxophonist (December 18, 1912 - October 1, 1967). +Needs VoteKai MeollerKai MoellerKai MollerKai MøllerAnker Skjoldborgs DanseorkesterErik Tuxen Og Hans OrkesterKai Ewans Og Hans OrkesterWinstrup Olesen's Swingband + +3806613Anker SkjoldborgDanish jazz tenor saxophonist and drummer, born December 11, 1903 in Copenhagen, died April 3, 1986 in Los Angeles, California. Brother of jazz guitarist [a=Berthel Skjoldborg] +Emigrated to the US in 1939.Needs VoteAnker SkoldborgKai Julians OrkesterAnker Skjoldborgs DanseorkesterKai Ewans Og Hans OrkesterValdemar Eiberg Og Hans Jazz OrkesterValdemar Eiberg's Adlon Club BandKai Julians Danseorkester + +3806766Cecilia WilderViolist.Needs VoteOslo Filharmoniske Orkester + +3806954Johnny BurrisNeeds VoteAndy Kirk And His Clouds Of Joy + +3807182Otto Banner-JansenDanish jazz tenor saxophonist and clarinetist.Needs VoteBanner JansenBanner-JansenKai Julians OrkesterErik Tuxen Og Hans OrkesterKai Ewans Og Hans OrkesterKai Julians Danseorkester + +3807183Kurt PedersenKurt Arthur PedersenDanish jazz trumpeter (6 June 1917 – 26 July 1997).Needs Votehttps://da.wikipedia.org/wiki/Kurt_A._Pedersenhttps://trompeterlaug.dk/galleri-ii/kurt-pedersen-store-kurt/https://www.gravsted.dk/person.php?navn=kurtarthurpedersenKurt PedersonErik Tuxen Og Hans OrkesterWinstrup Olesen Og Hans Ambassadeur OrkesterKai Ewans Og Hans Orkester + +3807184Eric KirschnerDanish jazz bassistNeeds VoteKai Ewans Og Hans Orkester + +3808318Thomas GroscheGerman viola da gamba and contrabass instrumentalist, born 1962 in Dresden.Needs VoteStaatskapelle DresdenDresdner PhilharmonieEnsemble »Alte Musik Dresden«Cappella Sagittariana DresdenDresdner KapellsolistenDresdner Barockorchester + +3808320Donatus BergemannGerman classical contrabassistNeeds VoteDresdner PhilharmonieEnsemble »Alte Musik Dresden«Cappella Sagittariana Dresden + +3810612Milt WilliamsPiano and banjo player. +Played for everything from silent movies to [a341395]. +Longtime piano player for [a3810611].Needs VotePaul Whiteman And His OrchestraJerry Weaver (2) + +3811509The Eddie "Lockjaw" Davis QuintetNeeds Major ChangesEddie "Lockjaw" Davis & His QuintetEddie "Lockjaw" Davis QuintetEddie DavisEddie Davis & QuintetEddie Davis And His QuintetEddie Davis QuintetGeorge DuvivierEddie "Lockjaw" DavisShirley ScottArthur EdgehillSteve Pulliam + +3812178Clarence Williams' Washboard FourNeeds Major ChangesClarence Williams & His Washboard FourClarence Williams' Original Washboard BeatersClarence Williams' Washboard BandEd AllenClarence WilliamsHoward Nelson (2) + +3812179Clarence Williams' Washboard FiveNeeds Major ChangesClarence William's Washboard FiveClarence Williams & His Washboard FiveClarence Williams Washboard FiveClarence Williams' Washboard BandClarence Williams' Washboard BeatersBuster BaileyFloyd CaseyEd AllenCyrus St. ClairClarence Williams + +3812839Umberto ClericiClassical cellistNeeds Votehttp://www.umbertoclerici.itSydney Symphony OrchestraStreeton Trio + +3813258Jan DouwesClassical bass vocalistNeeds VoteCappella AmsterdamPA'DAM + +3813379Ilyoung ChaeSouth Korean violinistNeeds VoteIl Young ChaeLondon Philharmonic OrchestraOrchestre Philharmonique De Monte-Carlo + +3813380Jeongmin KimSouth Korean violinistNeeds VoteKim JeongminLondon Philharmonic OrchestraSeoul Philharmonic Orchestra + +3813381Jason KoczurClassical hornistNeeds VoteLondon Symphony OrchestraLondon Philharmonic Orchestra + +3813382Tim GibbsTimothy GibbsAmerican classical double bassist, teacher and educator. +Tim was the first double bassist to be invited to study at [a2987703] in 1991 and thereafter continued his studies at the [l290263]. He became a member of the [a=London Philharmonic Orchestra] as Co-Principal Double Bass in 2010. Principal Double Bass with the [a=Philharmonia Orchestra] since 2015. Professor of Double Bass at [l305416] since 2013.Needs Votehttps://www.feenotes.com/database/artists/gibbs-timothy/https://www.baroniet.no/en/artist/tim-gibbs/http://londoninternationalplayers.com/dvteam/tim-gibbs/https://philharmonia.co.uk/bio/tim-gibbs/https://www.gsmd.ac.uk/music/staff/teaching_staff/department/1-department-of-strings-harp-and-guitar/1239-tim-gibbs/https://sfcm.edu/events/tim-gibbs-double-bassLondon Philharmonic OrchestraPhilharmonia OrchestraThe John Wilson OrchestraThe Chamber Orchestra Of London + +3813383Isabel Pereira (2)Classical violist, born in 1982 in Paris, France.Needs VoteIsabel PerieraLondon Philharmonic Orchestra + +3813384Eugene Lee (4)South Korean orchestral and chamber classical violinist. +Moving to New Zealand in 1995, Eugene made his debut with the [a=Auckland Philharmonia Orchestra] at age 14 and subsequently performed with the New Plymouth Symphony, Auckland Youth Orchestra, [a=The Chamber Orchestra At St. Matthew's] and [b]The Auckland Symphony Orchestra[/b]. Eugene was invited to relocate to the UK in 2009 to join [a=Southbank Sinfonia] becoming its Associate Leader. Before joining the [a=Philharmonia Orchestra], as 1st Violin and Assistant Leader, he performed extensively with the [a=London Philharmonic Orchestra] and the [a=Orchestra Of The Royal Opera House, Covent Garden] as well as the [a=Bournemouth Symphony Orchestra].Correcthttps://www.southbanksinfonia.co.uk/musicians-profile/10051/eugene-lee/https://philharmonia.co.uk/bio/eugene-lee/London Philharmonic OrchestraPhilharmonia OrchestraAuckland Philharmonia OrchestraBournemouth Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenSouthbank SinfoniaThe Chamber Orchestra At St. Matthew'sPhilharmonia Chamber Players + +3813385Dean WilliamsonClassical violinist.Needs VoteLondon Philharmonic OrchestraBBC Symphony Orchestra + +3813386David Lale (2)British cellist, born in 1962.Needs VoteDave LaleLaleLondon Philharmonic OrchestraQueensland Symphony OrchestraThe Queensland OrchestraLondon Contemporary Orchestra + +3813387Susanne MartensGerman classical violistNeeds VoteLondon Philharmonic Orchestra + +3813388Caroline SimonBritish classical violinistNeeds VoteLondon Philharmonic OrchestraCity Of Birmingham Symphony Orchestra + +3813389Adrian UrenBritish hornistCorrectLondon Philharmonic OrchestraAdelaide Symphony OrchestraYoung Musicians Symphony Orchestra + +3813390Gregory AronovichClassical viola playerNeeds VoteLondon Philharmonic Orchestra + +3813392Clare RobsonClassical flute and piccolo player.CorrectLondon Philharmonic OrchestraNorthern SinfoniaYoung Musicians Symphony Orchestra + +3813393Emma HardingClassical bassoonistNeeds VoteLondon Philharmonic OrchestraLondon Mozart PlayersApartment House + +3813394John Roberts (15)British classical oboistNeeds Votehttp://www.englishchamberorchestra.co.uk/?/news/eco-announce-the-appointment-of-john-roberts-as-our-new-principal-oboLondon Philharmonic OrchestraRoyal Philharmonic Orchestra + +3813395Mark Templeton (2)British classical trombonist and Professor of Trombone. Born in 1975. +He studied at [l305416]. He was a founder member of the [a730828] and Principal Trombone with the [a1200733] prior to joining the [a=London Philharmonic Orchestra] in 2006 as Principal Trombone. Former Professor of Trombone at the [l527847], he joined the Guildhall teaching staff in September 2020.Needs Votehttps://twitter.com/mbonetempletonhttps://www.instagram.com/marktempleton_trombone/?hl=enhttps://en.wikipedia.org/wiki/Mark_Templeton_(trombonist)https://www.a-courtois.com/en/artist/mark-templeton/https://lpo.org.uk/people/mark-templeton/https://www.imdb.com/name/nm5260843/https://vgmdb.net/artist/19222London Symphony OrchestraLondon Philharmonic OrchestraMahler Chamber OrchestraLucerne Festival OrchestraYoung Musicians Symphony Orchestra + +3813396Katalin VarnagyHungarian classical violinistNeeds VoteLondon Philharmonic Orchestra + +3813397David WhitehouseBritish classical trombonist (also euphonium and bass trumpet player). +He studied at [l305416] before freelancing for 12 years. He was a member of the [a=Philharmonia Orchestra] (2002-2008) before joining the [a=London Philharmonic Orchestra] in 2008.Correcthttps://www.facebook.com/dave.whitehouse.56https://twitter.com/DrTrombonehttps://lpo.org.uk/people/david-whitehouse/https://rathtrombones.com/london-philharmonics-david-whitehouse-joins-the-rath-team/https://www.imdb.com/name/nm1133486/Dave WhitehouseLondon Philharmonic OrchestraPhilharmonia Orchestra + +3813399Galina TanneyClassical violinist.Needs VoteLondon Philharmonic OrchestraPhilharmonia Orchestra + +3814090Jan Van HoeckeJan Van Hoecke is a Belgian recorder player. In 2006 he obtained his masters degree - with the highest distinction - under the guidance of Bart Coen at the Royal Conservatory of Brussels. Correcthttp://www.janvanhoecke.com/index.htmlCollegium Vocale + +3814091Baptiste LopezClassical violinist +Born in 1980, Baptiste Lopez began his violin studies in Mexico, at the age of five years. Back in France, he worked with Marianne PikettyNeeds VoteOrchestre Des Champs ElyséesCollegium VocaleKammerorchester BaselNorthernlightLe Banquet Céleste + +3814219Delta FourNeeds Major ChangesThe Delta FourRoy EldridgeCarmen MastrenSid WeissJoe Marsala + +3814377Secundino EsnaolaSecundino Esnaola BerrondoSpanish composer and chorus master (Zumárraga, Guipúzcoa, 21 May 1878 - San Sebastián, 22 October 1929). He was [a1169517] chorus master for 25 years.Needs VoteEsnaolaS. EsnaolaOrfeón Donostiarra + +3815086Adrian SemoRomanian born violinist, arrived in the USA as a refugee in 1973, now retired.Needs VoteBaltimore Symphony OrchestraOrchestra Simfonică A Filarmonicii De Stat "George Enescu"Concertino (2) + +3815499Iva Nikolova (2)Bulgarian violinist.Needs VoteIva Hölzl-NikolovaBruckner Orchestra LinzThe Swimmers QuintetVogl String Trio + +3815618Gabor JanosiGábor JànosiGerman-Hungarian classical trumpeter.Needs VoteGürzenich-Orchester Kölner PhilharmonikerNeue Düsseldorfer Hofmusik + +3816180Gabriele EtzGerman violinistCorrectSüdwestdeutsches Kammerorchester + +3816235Georg SchreckenbergerGerman classical hornistCorrectBerliner PhilharmonikerDie Hornisten Der Berliner Philharmoniker + +3816236Zoltan AlmasiZoltán AlmásiHungarian violinistNeeds VoteZoltan AlmashiZoltan AlmásiZoltán AlmásiBerliner PhilharmonikerBerliner Barock SolistenApos Quartett BerlinPhilharmonische Geigen Berlin + +3816237Christoph StreuliSwiss violinist, born in Luzern, Switzerland.Needs VoteBerliner PhilharmonikerBerliner Barock SolistenFeininger Trio + +3816240Sebastian HeeschClassical violinist and violistNeeds VoteBerliner PhilharmonikerOrchester Der Wiener StaatsoperWiener PhilharmonikerBerliner Barock Solisten + +3816259Markus WeidmannMarkus Weidmann is a German bassoonist. He's a member of the [a260744] since September 1997.Needs Votehttp://www.marwei.de/Willkommen.htmMarkus WeitmannBerliner PhilharmonikerEuropean Union Youth OrchestraScharoun Ensemble BerlinSüdwestdeutsche PhilharmoniePhilharmonisches Orchester Kiel + +3816839Maria Martinez-AyerzaMaría Martínez Ayerza was born in Cuenca, Spain, where she started her musical training. In 2000 she moved to The Netherlands to continue her studies with Paul Leenhouts at the Amsterdam Conservatoire (MMus 2006). She also studied Musicology at the University of Amsterdam (MA cum laude 2009). As a performer, María was awarded several prizes at international music competitions, amongst them the First Prize and the Walter Bergmann Prize at the Moeck/SRP Solo Recorder Competition in 2005.Needs Votehttps://www.mariayerza.com/Maria Martinez AyerzaMaría Martínez AyerzaMusica Ad RhenumEnsemble OdysséeThe Royal Wind MusicSeldom Sene + +3816845Amy PowerAustralian classical wood-wind instrumentalist.Needs VoteMusica Ad RhenumZefiroOrchester Der J.S. Bach StiftungSatyr's BandKirchheimer BachConsortLuthers Bach Ensemble + +3817348Rémi BernardFrench percussionist.Needs VoteOrchestre Des Concerts LamoureuxD'ixie Et D'ailleursLa Houlère + +3818438Laura VallejoSpanish classical violistNeeds VoteLondon Philharmonic Orchestra + +3820638Jean-Pierre NoiseuxClassical recorder instrumentalist Needs VoteLes Violons du RoyLa Nef + +3822692Vidar NordliNorwegian trombonist and conductor, born 1984 in Sauda, Norway.Needs VoteFenr Vidar NordliBergen Filharmoniske OrkesterEikanger-Bjørsvik MusikklagForsvarets Stabsmusikkorps + +3824287Ricardo Morales (2)Puerto Rican classical clarinetist.Needs VoteRiccardo MoralesRichardo MoralesThe Philadelphia Orchestra + +3825704Kenneth KrohnKenneth Krohn (29 June 1946 - 3 June 2024) was an American percussionist and educator. He was married to [a11759012] (divorced).Needs VoteIsrael Philharmonic OrchestraU.S. Navy BandCapital University Symphonic Wind Ensemble + +3825999Nathalie ColasFrench soprano vocalist.Needs VoteChicago Symphony ChorusGrant Park ChorusFonema Consort + +3826471Bram FournierBelgian classical trombonistNeeds Votehttps://www.bramfournier.be/Bram Fournier & FriendsOrchestre Du Théâtre Royal De La MonnaieThe Bone Project + +3828052Manfred RotzollManfred Rotzoll (born 3 October 1941) is a German classical trumpeter and former Professor at the [l445948]. He's the son of [a3687244].Needs VoteManfredBerliner PhilharmonikerRadio-Symphonie-Orchester BerlinRias Jugendorchester + +3828211Wolfgang GrögerWolfgang Gröger is a classical cellist.Needs VoteOrchester Der Deutschen Oper BerlinSilzer - Quartett + +3828212Kurt KratzGerman trumpeterNeeds VoteOrchester Der Deutschen Oper Berlin + +3829151Vladislav KrasnovVladislav KrasnovVladislav "Vlad" Krasnov is a classical violist originally from Kiev, Ukraine who immigrated to Israel in 1991. He played in the Young Israel Philharmonic, the Jerusalem Symphony and the Israel Chamber Ensemble before joining the Israel Philharmonic Orchestra in 2000.Needs Votehttp://www.ipo.co.il/eng/About/Members/%D7%9B%D7%9C%D7%99%20%D7%A7%D7%A9%D7%AA/%D7%95%D7%99%D7%95%D7%9C%D7%94/Musicians,196.aspxולדיסלב קרסנובולדיסלב קרשנובIsrael Philharmonic OrchestraJerusalem Symphony Orchestra + +3830050James Beck (5)Classical horn player.Needs VoteEnglish Chamber Orchestra + +3832044Arnold Ross QuintetNeeds Major ChangesArnold RossBenny CarterArtie BernsteinAllan ReussNick Fatool + +3832182Helmut PietschGerman classical violinistNeeds VoteH. PietschKammerorchester BerlinMichailow-Quartett + +3832239Vineta SareikaVineta Sareika-VölknerViolinist, born in Jurmala, Latvia.Needs Votehttp://www.vineta-sareika.com/#biographiehttps://de.wikipedia.org/wiki/Vineta_SareikaSareikaBerliner PhilharmonikerArtemis QuartettRoyal Flemish PhilharmonicTrio DaliAntwerp Symphony Orchestra + +3832369Simon Haynes (2)Tenor vocalistNeeds VoteMetro VoicesLondon Voices + +3832372Stefan BerkietaStefan Aleksander BerkietaPolish-British bass-baritone living in Gothenburg, Sweden, born March 4, 1988. + +He is employed by the GöteborgsOperans Kör since 2021. He has previously worked at Glyndebourne Festival Opera, Festival Aix-en-Provence, Holland Park and Wexford Festival Opera. + +Berkieta has a BA in English Literature from Cambridge University and is educated at the Alexander Gibson Opera School at the Royal Conservatoire of Scotland. + +During his studies he performed the roles of Claudio in Handel's Agrippina, Spencer Coyle in Britten's Owen Wingrave, Don Alfonso in Mozart's Cosí fan tutte and Le Duc Hoël in Martin's Le Vin Herbé. Other roles include Ariodate in Handel's Xerses, Somnus in Handel's Semele, Zuniga in Bizet's Carmen, Varsonofyev in Mussorgsky's Khovanshchina and Konrad Nachtigall in Wagner's Mastersongs in Nuremberg with Sir Mark Elder and the Halle Orchestra. + +Stefan Berkieta is interested in contemporary music and newly written operas. He recently covered the role of the Magician in the world premiere of Errollyn Wallen's Dido's Ghost with The Dunedin Consort at the Buxton International Festival.Needs VoteLondon Voices + +3832375Garth BardsleyBritish tenor vocalistNeeds Votehttp://www.garthbardsley.co.ukLondon Voices + +3832377Benjamin BevanBritish bass vocalistCorrecthttp://www.benbevan.com/Ben BevanLondon Voices + +3834699Erks Jan DekkerDutch bass, born in 1975.Needs Votehttp://www.erksjandekker.com/Collegium Vocale + +3835309Iver HolterIver Paul Fredrik HolterNorwegian composer and conductor. +Born December 13th, 1850 in Gausdal, Norway. +Died January 27th, 1941 in Oslo, Norway. + +Studied the violin in Gausdal at a young age, and after studying medicine in Christiania, and after encouragement from his conductor [a95542] and, later, his conductor and teacher [a873812], he enrolled as a student at the conservatory in Leipzig, studying there from 1879 to 1881. +In 1882, he succeeded [a95542] as conductor of [a1036751], and stayed in this position until 1886. When Johan Selmer resigned as conductor of "Musikforeningen" (later [a900448]) in 1886, Holter took his place. He remained in this position for 25 years. There he became an important figure for music in Norway, focusing on newer music, and regularly giving first Norwegian hearings not only to the works of his younger fellow Norwegian composers, but also to foreign composers such as Wagner, Bruckner, Brahms, Sibelius and Carl Nielsen. During this time he also made many successful guest appearances with well-known orchestras all over Europe. +He also conducted several choirs, and founded "Holters Korforening", a choral society, in 1897.Needs Votehttp://nbl.snl.no/Iver_Holterhttp://en.wikipedia.org/wiki/Iver_Holterhttp://no.wikipedia.org/wiki/Iver_Holterhttps://adp.library.ucsb.edu/names/106332Bergen Filharmoniske OrkesterOslo Håndverkersangforening + +3835398Steffanie ChristianSinger, Songwriter Composer. Born: November 2 in Detroit, Michigan, U.S.A. +Guest vocalist with Inner City.Needs Votehttp://www.steffchris.comhttp://innercitydetroit.comhttp://steffchris.bandcamp.comhttp://www.facebook.com/steffchrishttp://www.facebook.com/InnerCityDetroithttp://www.instagram.com/steffchrishttp://www.instagram.com/xosteffchrisxohttp://linktr.ee/Steffchrishttp://soundcloud.com/steffchrishttp://twitter.com/steffchrishttp://en.wikipedia.org/wiki/Inner_City_%28band%29http://www.youtube.com/user/steffchrisSteffanie Christi'anSteffanie Christi’anInner City + +3835902David Hart (8)Lutenist.CorrectPomerium + +3836522John TattersdillClassical double bassist, born in Harrogate, England.Needs VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +3836819Cinzia MaurizioItalian harpist.Correcthttps://www.facebook.com/cinzia.maurizioOrchestra dell'Accademia Nazionale di Santa Cecilia + +3837254David Nissen (2)Classical bassoonist.Needs Votehttp://www.davidnissen.com/musician.htmThe Chamber Orchestra Of EuropeThe Whispering Wind Band + +3837343George Wettling Jazz TrioNeeds Major ChangesGeorge Wettling TrioMezz MezzrowGeorge WettlingGene Schroeder + +3837346Barbara Wolf (2)Barbra Brown Wolf[b]Barbara Wolf[/b] (b. December 1948) is an American piano tuner, technician, and maker of clavichords, harpsichords, early fortepianos, and other stringed keyboard instruments. With her husband, [b][url=https://discogs.com/artist/5459447]Thomas Wolf[/url][/b], they began building historical reproductions in 1969 and established [i]Wolf Instruments[/i] company in 1975; it has operated in The Plains, Virginia (near Washington, DC) since 1992. They offer an extensive range of historical fortepiano designs, from [a=Bartolomeo Cristofori] and [a=Gottfried Silbermann] to [url=https://discogs.com/artist/10194454]J.D. Dulcken[/url], [a=Anton Walter (2)], and [a=Nannette Streicher]. Besides keyboards, Wolfs make violones and basses and provide tuning, setups, repairs, and maintenance of antique instruments for concerts and studio recordings. + +Initially trained as musicians at the [l=Interlochen Arts Academy] and [l=New England Conservatory Of Music], Barbara and Thomas apprenticed as instrument-makers in Boston with [a=Eric Herz] and later with renowned maker and scholar [b][a=Frank Hubbard][/b] (1920—1976). They further undertook conservation training at the [l=Smithsonian Institution], establishing a long-lasting collaboration with the NMAH's [url=https://discogs.com/label/2456986]musical instruments collection[/url]. In 1975, Thomas and Barbara launched their private workshop; when a veteran harpsichord maker, [b][a=William Dowd][/b] (1922—2008), closed his Boston firm in 1988, he joined Wolfs and spent the next five years at their atelier in semi-retirement. Some notable institutions and musicians who own Wolf's instruments include the [l543577], the [l477743], [l275380], [url=https://discogs.com/label/350923]Harvard[/url], [url=https://discogs.com/label/319016]Stanford[/url], and [l520929], the [url=https://discogs.com/label/1272701]National Music Museum[/url] in South Dakota, [a=Malcolm Bilson], [a=Christopher Hogwood], [a=Katia Et Marielle Labèque], [a=Robert Levin], [a=Nicholas McGegan], [a=Jacques Ogg] and [a=Kenneth Slowik].Needs Votehttps://wolfinstruments.com/https://www.si.edu/object/archives/components/sova-sia-faru0485-refidd1e5539https://www.washingtonpost.com/archive/lifestyle/magazine/1979/03/25/tom-and-barbara-wolf-keyboard-jewels/8a20ca52-a91d-4640-a9d2-379a326c4b5e/ + +3838407Andreas BurkhartGerman Bass & Baritone vocalist, born in 1984 in Munich, Germany.Needs VoteBurkhartChor Des Bayerischen Rundfunks + +3838408Norbert BernklauGerman violinist, born 2 December 1956. +Son of [a=Ludwig Bernklau] and brother of [a=Hannes Bernklau].Needs VoteMünchner Rundfunkorchester + +3838409Susanne GargerleGerman classical violinistNeeds VoteSusanne GargerieBayerisches StaatsorchesterYoung Romance Orchestra + +3838410Rita RoszaRita Kunert née RózsaHungarian classical violinist, born in 1982, based in Germany.Needs VoteBayerisches Staatsorchester + +3838416Michaela KnabGerman soprano vocalistCorrectChor Des Bayerischen Rundfunks + +3838417Ilona CudekPolish classical violinistCorrectMünchner Philharmoniker + +3838420Martin ManzGerman violinist, born in 1958 in Augsburg, Germany. He was a member of the [a261451] from 1983 to 2022.Needs VoteMünchner PhilharmonikerYoung Romance Orchestra + +3838423Wolfram LohschützGerman violinistNeeds VoteMünchner PhilharmonikerYoung Romance OrchestraBundesjugendorchester + +3838427Ursula MannGerman soprano vocalist, born in Duisburg, Germany.Correcthttp://www.ursulamann.de/Chor Des Bayerischen Rundfunks + +3838428Michael ChristiansMichael Christians (born 1957) is a German violinist. A member of the [a604396] from 1986 to 2023.Needs Votehttp://michael-christians.de/Münchner RundfunkorchesterSymphonie-Orchester Des Bayerischen Rundfunks + +3839173Jacques JarmassonClassical trumpeterCorrectEnsemble Orchestral De Paris + +3839174Jean-Paul LeroyClassical trumpeterNeeds VoteJ.P. LeroyEnsemble Orchestral De ParisConcert ArbanQuintette De Cuivres Jean-Baptiste Arban + +3840134Elisabeth BayerAustrian harpist.Needs VoteElisabeth Bayer (Plattenliesl)Wiener Symphoniker + +3840230Yoobin SonSouth Korean born flutist.Needs VoteNew York PhilharmonicMostly Mozart Orchestra + +3840653Susanne Scholz (2)Classical violinist.Needs Votehttp://www.susannescholz.com/Suzanne ScholzLes Arts FlorissantsLa Petite BandeMusica FreybergensisLeipziger ConcertCompagnia Transalpina + +3840819Stefanie TroffaesStefanie Troffaes was born in Bruges (Belgium), where she learnt to play the recorder at a very young ageNeeds Votehttps://www.facebook.com/stefanie.troffaesLes Talens LyriquesLes Folies FrançoisesArte Dei SuonatoriPygmalionLes MuffattiLa CacciaThe Belgian Baroque Soloists + +3841108Patrick HenrichsGerman classical trumpeter born in Freiburg i.B.Needs VoteVenice Baroque OrchestraBell'Arte SalzburgEnsemble Il CapriccioOrchester Der J.S. Bach Stiftung + +3841129Isabelle FarrClassical violinistCorrectStuttgarter PhilharmonikerEnsemble Il Capriccio + +3841502June HardyElizabeth June HardyClassical violinist (died in 1999). Married to the double bassist [a=Francis Baines].CorrectJune BainesThe Academy Of Ancient Music + +3841877Philip Wilby (2)Classical viola player.CorrectThe Academy Of Ancient Music + +3842183Anita LeuzingerSwiss cellist, born in 1982 near Zurich.CorrectTonhalle-Orchester Zürich + +3842243Huw Jenkins (2)Classical Horn/French Horn player. +Studied at the [l527847].Needs Votehttps://www.linkedin.com/in/huw-jenkins-4a86857/?originalSubdomain=ukhttps://www.superprof.co.uk/french-horn-teacher-fulham-west-london-huw-jenkins.htmlhttps://www.musicteachers.co.uk/teacher/afa8f30cf32b5254b1f1https://www.imdb.com/name/nm10718662/https://www2.bfi.org.uk/films-tv-people/4ce2bd08ceceaH. JenkinsPhilharmonia OrchestraThe Michael Nyman BandThe Academy Of Ancient Music + +3843522Milton PrinzAmerican cellist, born in 1903 and died in 1957.Needs VoteThe Philadelphia OrchestraNBC Symphony OrchestraNew York Philharmonic + +3843793Ursula SchochGerman violinist, born in Ludwigsburg, Germany.CorrectU. SchochBerliner PhilharmonikerConcertgebouworkest + +3843794Samuel ColesBritish classical flutist and professor. +He was educated at [l305416] and the [l1014340]. He has played both as guest principal and as soloist with many orchestras. Principal Flute with the [a=Philharmonia Orchestra], member of [a1112265], and Professor of Flute at the [l527847].Needs Votehttps://www.linkedin.com/in/samuel-coles-7521ab44/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/samuel-coles/https://www.ram.ac.uk/people/samuel-coleshttps://auroramusic.se/samuel-coles/https://www.hyperion-records.co.uk/a.asp?a=A6107https://www.opera-bordeaux.com/samuel-coles-555ColesSam Colesサミュエル・コールPhilharmonia OrchestraOrchestre National Bordeaux Aquitaine + +3844521Ivan VukcevicIvan VukčevićViola & Violin player.Needs VoteAustralian Youth OrchestraOrchestra Della Radio Televisione Della Svizzera ItalianaQuartetto Energie Nove + +3844784Klaus SchaffererTuba playerNeeds VoteVienna Symphonic Orchestra ProjectWiener SymphonikerEnsemble Prisma + +3845302Nicole King (2)Australian bassoonist.Needs VoteAustralian Youth OrchestraDeutsche Kammerphilharmonie BremenOrchester Des Staatstheaters KasselNiedersächsisches Staatsorchester HannoverHessisches Staatsorchester Wiesbaden + +3845856Alison Rayner (2)Australian violinist, born 1979 in Adelaide, Australia.Needs VoteAli RaynerAdelaide Symphony OrchestraAustralian Brandenburg OrchestraOslo Filharmoniske OrkesterAustralian Youth Orchestra + +3845903Giada BrozClassical viola playerNeeds VoteOrchestra Di Padova E Del VenetoTrio Broz + +3846368Johnny LathemJazz bassist.CorrectJohn LathamJohnny LathamJames Moody And His Orchestra + +3846606Manon StassenBelgian violinist.Needs VoteBamberger SymphonikerWintherSinfonieorchester Aachen + +3846754Joe Miller (17)Conductor of the Westminster Choir and the Westminster Symphonic Choir. He is also director of choral activities at Westminster Choir College of Rider University.Needs Vote + +3847976Hugh Davies (5)Classical trumpeter.Needs VoteOrchestra Of The SwanThe English Concert + +3850614Brian McGuinessAustralian musician playing the cornet, trumpet and flugelhorn.Needs Votehttps://www.linkedin.com/in/brian-mcguinness-658ab8a5http://www.willoughbyband.com.au/principal-cornet-brian-mcguinness/Brian McGuinnessThe Australian Opera & Ballet OrchestraSydney Symphony OrchestraAustralian National BandAustralian Youth OrchestraThe Mell-O-Tones + +3850783Wolfgang Witte (3)Austrian operatic tenor. A member of the [a855072] since 1976.Needs VoteВолфганг ВитеWiener Staatsopernchor + +3851585Archie RosateJazz clarinetist and saxophonist.Needs VoteA. RosatiArchie RosatiArchie RosatieTeddy Wilson And His Orchestra + +3851672Jessica Orit SindellAmerican classical flautistNeeds Votehttps://web.archive.org/web/20161114042823/http://www.jessicasindell.com/Jess SindellJessica SindellThe Cleveland OrchestraRochester Philharmonic Orchestra + +3851701Aaron LaVereAmerican trombonistCorrectBaltimore Symphony Orchestra + +3851807Gus MasUS Saxophone PlayerNeeds VoteWoody Herman And His OrchestraThe Modern Jazz Orchestra + +3851808Jimmy Bennett (5)American jazz trumpet player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +3852200Oluf Carlsson30's jazz trumpet playerNeeds VoteOlof CarlssonOluf CarlsenKai Julians OrkesterAnker Skjoldborgs DanseorkesterKai Ewans Og Hans OrkesterKai Julians Danseorkester + +3852204Evald AndersenDanish 30's jazz alto saxophonist and clarinetistNeeds VoteEwald AndersenKai Julians OrkesterErik Tuxen Og Hans OrkesterKai Ewans Og Hans Orkester + +3852458Mehli MehtaIndian conductor and violinist, born 25 September 1908 in Bombay, former British India, died 19 October 2002 in Santa Monica, California, USA. He was the founder of the [a3148545]. +Zarin and [a538821] are his sons.Needs Votehttps://en.wikipedia.org/wiki/Mehli_MehtaHallé OrchestraThe Curtis String QuartetMehli Mehta And His Sextette + +3852645Barbara GerberClassical cellistCorrectNova Stravaganza + +3852646Helene LerchClassical harpsichordistNeeds VoteNova StravaganzaParnassi MusiciBayerisches Kammerorchester + +3852647Christoph Danne (2)Classical violinistNeeds VoteNova StravaganzaEssener PhilharmonikerEnsemble Rossi + +3852648Georg NöldeckeClassical violone / double bass playerCorrectNova Stravaganza + +3852649Ebba-Maria KünningClassical recorder playerNeeds VoteEbba Maria Künning-ZeijlNova StravaganzaBell'Arte Salzburg + +3852650Anette BaheClassical recorder playerNeeds VoteNova StravaganzaBell'Arte Salzburg + +3852651Annette WehnertClassical violinistNeeds VoteLa StagioneTrio 1790Nova StravaganzaOrchester Damals Und Heute + +3852653Dieter ThienhausClassical violinistNeeds VoteNova StravaganzaCamerata Accademica Hamburg + +3852654Cornelius FroweinClassical harpsichordist and conductor.Needs VoteNova StravaganzaSinfonietta Köln + +3852655Gesine HildebrandtClassical violinistCorrectCesine HildebrandtNova Stravaganza + +3854231John Maynard (4)English composer at the time of James I of England (baptised 1577 - died in or before 1633).Correcthttp://en.wikipedia.org/wiki/John_Maynard_%28composer%29Maynard + +3854560Gene NortonJazz trombonistCorrecthttp://www.legacy.com/obituaries/app/obituary.aspx?n=gene-h-norton&pid=145387613Harry James And His Orchestra + +3855507Markus SchreiterGerman flutist, born in 1978.CorrectRundfunk-Sinfonieorchester Berlin + +3855508Johanna HelmGerman cellist, born in 1986 in Bremen, Germany.Needs VoteStaatskapelle BerlinBundesjugendorchesterCellists Of The Staatskapelle Berlin + +3855512Stanislava StoykovaBulgarian violist, born in 1980, based in Germany.Needs Votehttps://www.facebook.com/stanislava.stoykova.7Staatskapelle BerlinSalonorchester Unter'n Linden + +3855513Gaby BastianGabriele BastianGerman oboistCorrectRundfunk-Sinfonieorchester Berlin + +3856839Reinhard ÖhlbergerAustrian bassoonist, born 4 June 1950 in Vienna, Austria. He's the brother of [a2198234]. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenEnsemble "11" + +3857894Fino RoveratoNeeds Major Changes + +3858474Maarten EngeltjesDutch classical countertenor born 1984 and founding director of [a=PRJCT Amsterdam]Needs Votehttp://www.maartenengeltjes.com/nl/Holland Boys ChoirPRJCT Amsterdam + +3859654Les Petits Chanteurs À La Croix PotencéeMaîtrise de la Cathédrale Saint-Étienne de ToulouseFrench boys choir of several centuries of existence refounded in 1936 in Toulouse by [a8336151] (choir master until 1976). Today, the [i]Maîtrise de la Cathédrale[/i] is composed by a boys choir (ages 8 to 25), a girls choir and more than eight children choirs. Needs Votehttp://www.maitrise.online.fr/https://en.wikipedia.org/wiki/Ma%C3%AEtrise_de_la_Cath%C3%A9drale_Saint-%C3%89tienne_de_ToulouseLa Manécanterie Des Petits Chanteurs À La Croix PotencéeLes Petits Chanteurs A La Croix Potencée De ToulouseLes Petits Chanteurs À La Croix Potencée De ToulouseLes Petits Chanteurs À La Croix Potencée de ToulouseManécanterie Des Petits Chanteurs À La Croix PotencéePetits Chanteurs À La Croix PotencéePetits Chanteurs à la Croix PotencéeGeorges Rey + +3860052Michael TomasiAustrian cellist, born 1958 in Vienna, Austria.Needs VoteCamerata Academica SalzburgTiroler Symphonieorchester Innsbruck + +3860487Alice FoccroulleBelgian soprano vocalist born 1985 in BrusselsNeeds Votehttps://m.facebook.com/alice.foccroulleCollegium VocalePygmalionInalto + +3861412Gunvor HoltlienNorwegian classical violinistNeeds VoteGunnvor HoltlienBergen Filharmoniske OrkesterBergen Chamber Ensemble + +3863266Alex DonaldsonClassical alto vocalistNeeds VoteThe Hilliard EnsembleThe Cambridge Singers + +3863520Matthew HunterAmerican violist, born in Bellaire, Ohio.Needs VoteBerliner PhilharmonikerNational Arts Centre OrchestraPhilharmonisches Streichsextett Berlin + +3863605Joachim Fiedler (2)Classical bass vocalistNeeds VoteRundfunkchor Berlin + +3863832Herbert BaumelAmerican violinist, born 1919 in New York, New York and died 22 April 2010 in Yonkers, New York.Needs VoteBaumelH. BaumelHerb BaumelThe Philadelphia OrchestraBobby Hackett And His Swinging Strings + +3863902Kelof NilssonJazz bassistNeeds VoteKelof NielsenKai Ewans Og Hans OrkesterArthur Young And His Danish Friends + +3865556Elin LannemyrAlto vocalistNeeds VoteRadiokören + +3865722Jacob Berg (2)American flutist (1931-2004) who served as principal flute of the [a834226].Needs Votehttps://www.geni.com/people/Jacob-Berg/6000000009394078901Saint Louis Symphony Orchestra + +3865918Peter ElbertseDutch percussionist, drummer and conductor. Chief timpanist for [a5094895] and [a871496], also teaches drumming and percussion.Needs Votehttps://www.theaterkantoor.nl/_dsc2575-2/Peter ElberseNetherlands Chamber OrchestraNederlands Philharmonisch Orkest (2) + +3867405Christoph RombuschGerman violinistNeeds VoteOrchester der Bayreuther FestspieleGürzenich-Orchester Kölner PhilharmonikerStudierende Der Kammermusikklasse Der Musikhochschule Frankfurt Am Main + +3868385Angelo MaccabianiAngelo Maccabiani was an Swiss classical violinist and violist. He was married to [a5707927].Needs VoteDie Kammermusiker ZürichTonhalle-Orchester Zürich + +3869018Hans GartnerHans GärtnerAustrian timpanist and percussionist, born in 1895 and died in 1974.CorrectHans GärtnerWiener Philharmoniker + +3869366Russ DelunaRuss deLunaAmerican oboist and English horn player.Needs VoteRuss deLunaRussell De LunaSan Francisco Symphony + +3872087Ernest Scott (2)Ernest Harry ScottBritish classical violinist. Died 18 October 2016 in Northallerton, North Yorkshire, England, UK. +Also member of the [b]Quartet Pro Musica[/b].Needs Votehttps://www.the-paulmccartney-project.com/artist/ernest-scott/https://www.darlingtonandstocktontimes.co.uk/announcements/deaths/deaths/14821093.Ernest_Scott/Philharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsThe Boyd Neel String Orchestra + +3872950Lawrence DaleClassical tenor vocalistNeeds VoteAnthony Rolfe JohnsonThe Monteverdi Choir + +3873017Eric Pritchard (2)British classical timpani and percussion player, who formerly was a trumpeter. +Former Principal Timpani with the [a=BBC Symphony Orchestra] and the [a=London Symphony Orchestra] (1963).Needs VoteLondon Symphony OrchestraBBC Symphony OrchestraThe Academy Of St. Martin-in-the-Fields + +3874455Iva BarbosaPortuguese classical clarinetist. +She is a founding member of the "Quarteto Vintage".Needs Votehttp://www.ivabarbosa.com/Gulbenkian Orchestra + +3875089Jens MetznerGerman violinist.CorrectStaatskapelle DresdenDas Krauß-Quartett + +3875090Uwe KroggelGerman cellist.CorrectStaatskapelle DresdenDas Krauß-Quartett + +3875091Reinhard KraußGerman violinist, born 1956 in Dresden, GDR.CorrectStaatskapelle DresdenDas Krauß-Quartett + +3878746Frank SnyderEarly jazz drummer and songwriterNeeds VoteF. SnyderSnyderNew Orleans Rhythm KingsOriginal Memphis Melody Boys + +3880171Hazel Smith (3)Pseudonym on OKeh for two 1928 titles with Irene Mims.Needs VoteHazel Smith (Irene Mims)Hazel Smith, Irene MimsIrene Mims + +3880859Charles-Étienne MarchandCanadian classical violinist.Needs Votehttps://quatuorbozzini.ca/en/artiste/marchand_chQuatuor BozziniLe Concert D'AstréeEnsemble L'YriadeMaud Giguet-Vernhes + +3881155Baldy McDonaldClarinetist and alto sax player active in the 1920's.Correct"Baldy" McDonaldState Street Ramblers + +3881158Marie GrinterVaudeville blues singer, who recorded for Gennett in 1925 and 1928, and for OKeh in 1926.Needs VoteState Street Ramblers + +3881375Nicola-Jane KempBritish coloratura soprano from the UK.Needs Votehttp://www.nicolajanekemp.co.uk/Nicky-Jane KempThe Cambridge SingersThe Sixteen + +3881413Heinrich LohrRussian / German hornist, born in 1975 in Novosibirsk, USSR.Needs VoteLöhrKlassische Philharmonie BonnGustav Mahler JugendorchesterWestfälisches Blechbläser-EnsemblePhilharmonisches Orchester HeidelbergWiesbadener Knabenchor + +3882585William James (6)Classical percussionistNeeds VoteSaint Louis Symphony Orchestra + +3882633Ben GusickNeeds VoteMezz Mezzrow And His Orchestra + +3882635Freddy GoodmanAmerican trumpeter. +Brother of [a=Benny Goodman], [a=Harry Goodman], and [a=Irving Goodman].Needs VoteMezz Mezzrow And His Orchestra + +3882684Rebecca Boyer HallClassical violinistNeeds VoteRebecca BoyerRebeccaxer HallSaint Louis Symphony Orchestra + +3882852Caroline SchaferClassical trumpeterNeeds VoteSaint Louis Symphony Orchestra + +3882853Timothy ZavadilAmerican clarinetist and bass clarinetist.CorrectTim ZavadilSaint Louis Symphony OrchestraMinnesota Orchestra + +3882855Jacob NisslyAmerican classical percussionist.Needs VoteSan Francisco SymphonyDetroit Symphony OrchestraThe Cleveland Orchestra + +3882856Thomas JöstleinClassical hornistNeeds VoteThomas JostleinSaint Louis Symphony Orchestra + +3882857Michelle DuskeyClassical oboistNeeds VoteSaint Louis Symphony Orchestra + +3882858Di ShiClassical violistNeeds VoteSaint Louis Symphony OrchestraChicago Lyric Opera Orchestra + +3882859Eva SternClassical violistNeeds Votehttp://www.evasternmoves.com/Saint Louis Symphony Orchestra + +3882860Jessica ChengClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3882861Ann Fink (2)Classical violinistNeeds VoteSaint Louis Symphony Orchestra + +3882863Alan Stewart (4)American classical percussionist.Needs VoteSaint Louis Symphony Orchestra + +3882865Allegra LillyClassical harpistNeeds VoteSaint Louis Symphony Orchestra + +3882866Andrew Thompson (15)Contrabassoon playerNeeds VoteSaint Louis Symphony Orchestra + +3882869Elizabeth ChungClassical cellistNeeds VoteSaint Louis Symphony Orchestra + +3882870Anna Spina (2)Classical hornistNeeds VoteSaint Louis Symphony Orchestra + +3882872Melody Lee (2)Classical violinistNeeds VoteSaint Louis Symphony OrchestraThe Colburn Orchestra + +3882874Davin RubiczClassical cellistNeeds Votehttps://davinrubicz.weebly.com/Saint Louis Symphony Orchestra + +3882875Cecilia BelcherAmerican violinistNeeds VoteSaint Louis Symphony OrchestraMinnesota Orchestra + +3882876Xiaoxiao QiangClassical violinistNeeds VoteSaint Louis Symphony Orchestra + +3882877Julia ErdmannClassical hornistNeeds VoteSaint Louis Symphony Orchestra + +3882878Karin BliznikClassical trumpeterNeeds Votehttps://www.kbliz.com/Saint Louis Symphony Orchestra + +3883445Семен МеерсонСемён Самуилович МеерсонSemyon Meerson (born in 1952 in Samara (then Kuibyshev) is a Russian violinist, accompanist and conductor.Needs Votehttps://100philharmonia.spb.ru/persons/38890/#:~:text=%D0%9C%D0%B5%D0%B5%D1%80%D1%81%D0%BE%D0%BD%20%D0%A1%D0%B5%D0%BC%D0%B5%D0%BD%20%D0%A1%D0%B0%D0%BC%D1%83%D0%B8%D0%BB%D0%BE%D0%B2%D0%B8%D1%87%20%E2%80%93%20%D1%81%D0%BA%D1%80%D0%B8%D0%BF%D0%B0%D1%87%2C%20%D1%81,%D0%B3%D0%BE%D0%B4%D1%83%20%D0%BF%D0%BE%D1%81%D1%82%D1%83%D0%BF%D0%B8%D0%BB%20%D0%B2%20%D0%9B%D0%B5%D0%BD%D0%B8%D0%BD%D0%B3%D1%80%D0%B0%D0%B4%D1%81%D0%BA%D1%83%D1%8E%20%D0%BA%D0%BE%D0%BD%D1%81%D0%B5%D1%80%D0%B2%D0%B0%D1%82%D0%BE%D1%80%D0%B8%D1%8E.Semyon MeersonLeningrad Philharmonic OrchestraRotterdams Philharmonisch OrkestNew European Strings Chamber Orchestra + +3883447Исаак ГеллерIsaak Geller is a Russian violinist.Needs VoteIsaak GellerLeningrad Philharmonic Orchestra + +3883871François EtienneFrançois Marius Louis EtienneFrench clarinettist, born Avril 12, 1901 in Toulon, died July 12, 1970 in Toulon.Needs Votehttp://www.musimem.com/Etienne.htmEtienneEtienne FrançoisF. EtienneF.EtienneFrançois ÉtienneM. EtienneOrchestre De La Société Des Concerts Du ConservatoireOrchestre National De L'Opéra De ParisQuatuor LoewenguthOrchestre Hewitt + +3884504Georg ter VoertGerman bassoonist and composer, born in 1951 in Anholt, Germany.Correcthttp://www.c-script.deGeorge Ter VoertHans-Georg ter VoertRadio-Sinfonieorchester Stuttgart + +3885117Walter Robinson (4)Jazz trombone playerNeeds VoteW. C. RobertsonWalt RobinsonWalter C. RobertsonWalter C. RobinsonWalter RobertsonBoyd Raeburn And His Orchestra + +3885400Khoi Nam Nguyen HuuVietnamese violinistNeeds VoteKhoa-Nam NguyenKhoo-Nam NguyenNam Nguyen HuuOrchestre National De France + +3886388Dominic Black (2)Double bass player.Needs Votehttps://www.imdb.com/name/nm11737746/Philharmonia OrchestraEnglish National Ballet Philharmonic + +3886676Phil Cobb (2)Philip CobbBritish trumpet, cornet, flugelhorn & piccolo trumpet player. +In 2000, he gained a place in [a=The National Youth Brass Band Of Great Britain], where he became Principal Cornet. He graduated from [l305416] in 2009. While studying, he played in the [a=International Staff Band Of The Salvation Army]. In 2008, he played with the [a=European Union Youth Orchestra] as Principal Trumpet. Former Principal Trumpet with the [a=London Symphony Orchestra] (2009-2020). Principal Trumpet of the [a=BBC Symphony Orchestra] since 2020 and member of [a=Superbrass (2)], [a=Eminence Brass] & [a=Barbican Brass Ensemble]. +Son of [a1667708] and grandson of [a4251386].Needs Votehttps://open.spotify.com/artist/4XuscvwjaUicE7LwAy6yWbhttps://open.spotify.com/artist/37iXLOcHnuPSTI4OmA7kBhhttps://music.apple.com/us/artist/philip-cobb/711381431https://music.apple.com/za/artist/philip-cobb/711381431https://www.feenotes.com/database/artists/cobb-philip/http://www.b-and-s.com/artists-172.html?id=379http://barbicanbrass.co.uk/members/PhilipCobb/https://warburton-usa.com/products/philip-cobb-trumpetPhilip CobbPhillip CobbLondon Symphony OrchestraBBC Symphony OrchestraEuropean Union Youth OrchestraInternational Staff Band Of The Salvation ArmyThe National Youth Brass Band Of Great BritainWorld of Brass EnsembleOrchestre de GrandeurEminence BrassSuperbrass (2)Barbican Brass Ensemble + +3886711Lu Van AlbadaClassical violinist.Needs VoteIl Seminario MusicaleFiori Musicali + +3887138Sir Edward DyerEnglish courtier and poet (Sharpham Park, Glastonbury, Somerset, October 1543 – Southwark, May 1607).Needs Votehttps://en.wikipedia.org/wiki/Edward_DyerE. Dyer + +3888734Aage WallinAage Georg WallinNorwegian violinist and conductor, 1914-1996. Was the first Concertmaster for the Norwegian Broadcasting Orchestra (Kringkastingsorkestret) upon its formation in 1946, and remained their Concertmaster for over three decades, until 1978.Needs Votehttps://no.wikipedia.org/wiki/Aage_Georg_Wallinhttps://snl.no/Aage_WallinAage WalinBerliner PhilharmonikerKringkastingsorkestretFilharmonisk Selskaps OrkesterDen Norske StrykekvartettAlf Blyverkets KvintettAage Wallins Ensemble + +3890318Amy Lyddon-TowlBritish mezzo-soprano vocalistNeeds Votehttp://www.amylyddon.co.uk/home/4561627051Amy LyddonAmy Lyddon-TowleAmy LyddonLondon VoicesTenebrae (10) + +3890492Dave PitmanTrombone player.Needs VoteTommy Dorsey And His Orchestra + +3890495Gene KutchPianist.Needs VoteG. KutchGene KotchGene KutzTommy Dorsey And His Orchestra + +3890496George CherubTrumpet player.Needs VoteTommy Dorsey And His Orchestra + +3890863Lou Obergh Jr.Trumpet playerNeeds VoteLew OberghLou OberghLouis OberghLouis Obergh JrLouis Obergh, Jr.Ike Carpenter And His OrchestraThe Tom Talbert Jazz Orchestra + +3894100Dale BreidenthalViolinist. + +Married to the bassoonist [a=David Breidenthal].Needs VoteLos Angeles Philharmonic Orchestra + +3894101Nitzan HarozIsraeli trombonist. Member of the New York Philharmonic from 1993 to 1996.Needs VoteNitzan Har-OzThe Philadelphia OrchestraNew York PhilharmonicLos Angeles Philharmonic Orchestra + +3894103Dana HansenClassical violist.Needs VoteLos Angeles Philharmonic Orchestra + +3894105Tao NiClassical cellist.Needs VoteLos Angeles Philharmonic Orchestra + +3894106Christopher StillAmerican trumpet playerNeeds VoteC. StillChris StillLos Angeles Philharmonic OrchestraNew England Conservatory Wind Ensemble + +3894109Mischa LefkowitzNeeds VoteLos Angeles Philharmonic Orchestra + +3894110Serge OskotskyClassical cellist.Needs VoteLos Angeles Philharmonic Orchestra + +3894111Ingrid ChunIngrid Kuo ChunViolinistNeeds VoteIngrid C. ChunLos Angeles Philharmonic Orchestra + +3894112Judith MassClassical violinist.Needs VoteJudith C. MassJudy MassLos Angeles Philharmonic Orchestra + +3894115Leticia Oaks StrongViolistNeeds VoteLeticia OaksLeticia StrongLos Angeles Philharmonic Orchestra + +3894116Kristine WhitsonKristine WhitsonViolinist. Needs Votehttp://www.laphil.com/philpedia/kristine-whitsonKristine HedwallLos Angeles Philharmonic Orchestra + +3894117Ethan BearmanAmerican hornistCorrectEthan BermanLos Angeles Philharmonic Orchestra + +3894118Elise ShopeClassical flutist.Needs VoteElise Shope HenryElise HenryLos Angeles Philharmonic Orchestra + +3894120Minor L. WetzelClassical violist.Needs VoteMick WetzelMike WetzelMinor WetzelLos Angeles Philharmonic Orchestra + +3894121Anne Marie GabrieleNeeds VoteAnne GabrieleLos Angeles Philharmonic Orchestra + +3894122John LoftonAmerican trombonist.Needs Votehttps://www.laphil.com/musicdb/artists/3190/john-loftonJohn E. LoftonLos Angeles Philharmonic OrchestraEnsemble 21 (4) + +3894123Joanne Pearce MartinClassical pianist.Needs Votehttps://www.facebook.com/joannepearcemartinpianist/https://www.laphil.com/musicdb/artists/3406/joanne-pearce-martinJoanne Pearce-MartinLos Angeles Philharmonic Orchestra + +3894124Varty ManouelianClassical violinist. She won the first prize at the 1993 Bryan International Competition.CorrectLos Angeles Philharmonic Orchestra + +3894127Paul Stein (2)Classical violinist.Needs VoteLos Angeles Philharmonic Orchestra + +3894128Ariana GhezClassical oboist.Needs VoteLos Angeles Philharmonic Orchestra + +3894129Monica KaenzigClarinetist.Needs VoteLos Angeles Philharmonic Orchestra + +3894133Robert Vijay GuptaClassical violinist.Needs VoteRobert GuptaRobert V. GuptaVijay GuptaLos Angeles Philharmonic Orchestra + +3894135Ingrid HutmanClassical violist.Needs VoteLos Angeles Philharmonic Orchestra + +3894136Raynor CarrollClassical percussionist.Needs VoteCarroll RaynorLos Angeles Philharmonic Orchestra + +3894138Johnny Lee (16)Johnny LeeViolinist. Needs Votehttp://www.laphil.com/philpedia/johnny-leeLos Angeles Philharmonic Orchestra + +3894139Michael Myers (9)Classical trumpet player.Needs VoteLos Angeles Philharmonic OrchestraSeattle Symphony Orchestra + +3894143David Allen MooreClassical double bassist.Needs VoteDavid MooreLos Angeles Philharmonic Orchestra + +3894144Ben HongClassical cellist.Needs VoteLos Angeles Philharmonic Orchestra + +3894145Elizabeth Cook-ShenHorn playerNeeds VoteLos Angeles Philharmonic Orchestra + +3894146Whitney CrockettBassoonistNeeds VoteLos Angeles Philharmonic Orchestra + +3894147Stacy WetzelViolinistNeeds VoteLos Angeles Philharmonic Orchestra + +3894148James BaborPercussionistNeeds VoteLos Angeles Philharmonic Orchestra + +3894149Suli XueClassical violinist.Needs VoteLos Angeles Philharmonic Orchestra + +3894152David Howard (8)David HowardClarinetist. Needs Votehttp://davidhowardclarinet.com/http://www.laphil.com/philpedia/david-howardDavid HowardDavid J. HowardLos Angeles Philharmonic Orchestra + +3894156Robert deMaineAmerican cellist.Needs Votehttps://www.robertdemaine.com/Robert De MaineRobert DeMaineRobert DemaineRobert MaineLos Angeles Philharmonic OrchestraEhnes Quartet + +3894158Nickolai KurganovНиколай КургановNikolai Kurganov (born 1973 in St. Petersburg) is an American classical violinist of Russian origin.Needs Votehttps://gfhome.ru/articles/na-volne-russkii-skripach-iz-amerikiNikolay KurganovLos Angeles Philharmonic Orchestra + +3894159James WiltAmerican classical trumpeter. From 1993 to 1995 member of the trumpet section of the New York Philharmonic.Needs Votehttps://www.colburnschool.edu/faculty-listing/james-wilt/New York PhilharmonicLos Angeles Philharmonic OrchestraHouston Symphony Orchestra + +3894161Shawn MouserClassical bassoonist.Needs VoteLos Angeles Philharmonic Orchestra + +3894162Jason LippmannCellistNeeds VoteJason LippmanJustin LippmanLos Angeles Philharmonic Orchestra + +3894165Michele BovyerNeeds VoteMichele Kane BovyerMichelle BovyerLos Angeles Philharmonic Orchestra + +3894169Chao Hua-JinViolinistNeeds VoteChao-Hua JinLos Angeles Philharmonic Orchestra + +3894172Eric OverholtClassical hornist.Needs Votehttps://www.imdb.com/name/nm10630597/Los Angeles Philharmonic Orchestra + +3894173Thomas Hooten (2)Trumpet playerCorrectThomas HootenTom HootenLos Angeles Philharmonic Orchestra + +3894175Hui LiuClassical violist.Needs VoteLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +3894176Catherine Ransom KarolyAmerican flute player, born in Minneapolis, Minnesota.CorrectCatherine KarolyCatherine RansomCathy KarolyLos Angeles Philharmonic OrchestraNew World Symphony OrchestraDorian Quintet + +3894177Marion Arthur KuszykOboistNeeds VoteMarion KuszykLos Angeles Philharmonic Orchestra + +3894179Jin-Shan DaiClassical violinist.Needs VoteJin DaiJin Shan DaiLos Angeles Philharmonic Orchestra + +3894559Johann LudwigGerman cellist, born in 1980 in Cologne. Germany.Needs Votehttp://www.johannludwig.de/LudwigOrchester der Bayreuther FestspieleHessisches Staatsorchester Wiesbaden + +3894971Jim BonebrakeAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraThe Woody Herman Big BandWoody Herman And His Third Herd + +3894998Andreas Nowak (2)German classical percussionistNeeds VoteConcerto KölnNeue Düsseldorfer HofmusikPhilharmonie Merck + +3894999Raphael VangEuropean Trombone player, born in Sweden. +Also producer / arranger / engineer, mostly under pseodenym R4DtNeeds VotePhelicaan M.R4DtAnima EternaLa Chapelle RoyaleMusica Antiqua KölnConcerto KölnCappella ColoniensisDas Neue OrchesterHeidelberger SinfonikerL'arte Del MondoKölner AkademieHandel's CompanyThe Netherlands Bach SocietyNuovo Aspetto + +3895000Martin FritzGerman cellistNeeds VoteConcerto KölnMarcolini Quartett + +3898170Lothar ZirkelbachClassical trombonist.Needs VoteL. ZirkelbachSymphonie-Orchester Des Bayerischen RundfunksMünchener Bach-OrchesterHarold's BandBavaria Blechbläsersolisten, München + +3898171Karsten HeymannGerman classical violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksDas Keller QuartettNDR SinfonieorchesterMozart KlavierquartettMünchner Nonett + +3899134Matthias BrunsMatthias A. BrunsGerman violinist.Needs VoteOrchester der Bayreuther FestspieleDuisburger PhilharmonikerKölner KammerorchesterSwiss Orchestra + +3899523Nicholas Jones (6)American classical double bassistNeeds VoteBuffalo Philharmonic OrchestraBaltimore Symphony OrchestraPittsburgh Symphony Orchestra + +3899644Тамаз Батиашвилиთამაზ ბათიაშვილიTamaz Batiashvili (born 1941) is a Georgian violinist. Father of violinist [a2608093].Needs Votehttp://www.nplg.gov.ge/bios/ka/00002287/Tamas BatiashviliTamaz BatiaschviliTamaz BatiashviliTamás BatiashviliTomas BatiashviliТ. Батиашвилиタマーシュ・バティアシュヴィリString Quartet Of Georgia + +3899877Benjamin RiviniusGerman violist, born in 1976. He's the brother of [a2089252], [a3899875] and [a2076277].Correcthttp://www.benjaminrivinius.de/de/homeCamerata Academica SalzburgRundfunk-Sinfonieorchester SaarbrückenDeutsche Radio Philharmonie Saarbrücken KaiserslauternKonzerthausorchester BerlinBundesjugendorchester + +3900787Andrea van BeekDutch classical soprano vocalist.Needs VoteCappella AmsterdamThe Amsterdam Baroque Choir + +3900788Dorien LieversDutch alto/mezzo-soprano vocalist.Needs VoteThe Amsterdam Baroque OrchestraCappella AmsterdamNederlands Kamerkoor + +3901816Daniel BorowskiPolish Bass vocalistNeeds VoteD. Borowski + +3902606Daniel DraganovClassical violinistNeeds VoteChristo DraganovD. DraganovOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinDaniel-Draganov-Quartett + +3902706Guillaume HumbrechtFrench violinistNeeds VoteLes Folies FrançoisesEnsemble ArtaserseLes PaladinsLe Cercle De L'HarmonieOrfeo 55La Chapelle RhénaneEnsemble Rosasolis + +3902707Olivier BenichouFrench flutistNeeds VoteLe Concert D'AstréeLe Cercle De L'HarmonieOpera Fuoco + +3902708Ludovic CoutineauFrench classical double bass & violone instrumentalistNeeds VoteLe Concert D'AstréeAmarillisLe Cercle De L'HarmonieOpera FuocoLes Plaisirs Du ParnasseLes Ambassadeurs (6)Les Épopées + +3902709Emmanuel VigneronFrench bassoonistNeeds VoteLes Arts FlorissantsLe Concert D'AstréeLe Cercle De L'HarmonieLa Grande ChapelleLa Chapelle HarmoniqueL'Échelle + +3903257Karl ReitzKarl Ludwig Peter ReitzGerman viola player, born 31 Januar 1887 in Cologne, Germany and died 10 February 1943 in Berlin, Germany.Needs VoteКарл РайтцStaatskapelle BerlinDeman-Streichquartett + +3903887Morag BoyleAlto vocalist.Needs Votehttps://eno.org/artists/morag-boyle/Gabrieli ConsortThe Choir Of The King's Consort + +3905955Craig PiloAmerican drummer, born 21 April 1972.Needs Votehttp://www.craigpilo.comRed Elvises + +3906749Daniele DamianoItalian bassoonist, born 1961 in Asti, Italy.Correctダニエル・ダミアーノBerliner PhilharmonikerWiener SymphonikerOrchestra Sinfonica Di Torino Della RAI + +3907943Christopher Robson (2)Classical bassoonist. Died in 2003 in a paragliding accident at the age of 46. For the classical countertenor vocalist, use [a561407].Needs VoteScottish Chamber OrchestraHanover BandOrchestra Of The Golden AgeThe Symphony Of Harmony And Invention + +3908545Herbert ReznicekAustrian flutist, born 2 February 1939 in Vienna, Austria, died 30 October 2006. He was the son of [a3789810].Needs VoteWiener PhilharmonikerEnsemble Eduard Melkus + +3909866Myriam CambrelingMyriam Bis-Cambreling French classical violinistNeeds VoteMyriam Bis-CambrelingLe Concert SpirituelEnsemble 415Le Concert D'AstréeLe Concert de l'Hostel DieuQuinta d'Isula + +3911007John CarboneAmerican bassistNeeds VoteOrchestra Of St. Luke's + +3911279Harry ValentinNeeds VoteValentinEnsio Rislakki + +3912214The Original Crescent City JazzersNeeds Major ChangesOriginal Crescent City JazzersOriginal Crescent City Rhythm KingsSterling BoseFelix GuarinoCliff HolmanSlim Hall (2)Johnny RiddickAvery LoposerEddie Powers (4) + +3913341Magali CazalFrench classical bassoonist (born 1968), Premier Prix du conservatoire de Paris in 1990.Needs Votehttp://mardigraves.free.fr/textes/artistes/magali_cazal.htmlhttps://www.opera-orchestre-montpellier.fr/intervenants/magali-cazal/Orchestre Des Concerts LamoureuxOrchestre National De Montpellier + +3913955Leslie Scott (3)Credited as jazz singer.Needs VoteLes ScottLeslie "Porgy" ScottLeslie ScottColeman Hawkins And His Orchestra + +3916718Sal FranzellaAmerican clarinetist and saxophonist, born April 25, 1915 in New Orleans, died November 8, 1968 in the same city.Needs Votehttps://de.wikipedia.org/wiki/Sal_Franzellahttps://louisianadigitallibrary.org/islandora/object/lsm-jaz%3A14630https://www.allmusic.com/artist/sal-franzella-mn0002240604/creditshttps://adp.library.ucsb.edu/index.php/mastertalent/detail/203399/Franzella_SalFranzellaS. FranzellaSal FrangellaSal Franzella Jr.Salvator FranzellaNapoleon's EmperorsThe Original Memphis FiveLeith Stevens & His OrchestraLouis Prima & His New Orleans GangLeith Stevens' All StarsPaul Whiteman's Swing WingSal Franzella And His QuintetFrank Signorelli And His Quintet + +3917707Leon BerendseDutch classical flautist.Needs Votehttp://leonberendse.com/https://www.orkest.nl/muzikant/leon-berendseCombattimento Consort AmsterdamNetherlands Chamber OrchestraNederlands Philharmonisch Orkest (2) + +3917963Saar BergerIsraeli hornist, born in 1980 in Tel Aviv, Israel.Needs VoteEnsemble ModernEnsemble Modern OrchestraSaVaSa Trio + +3917964Rafal Zambrzycki-PayneRafał Zambrzycki-Payne Classical violinist.Needs VoteRafal PayneRafał ZambrzyckiRafał Zambrzycki-PaynePolish National Radio Symphony OrchestraDimension Piano Trio + +3918876Jonathan Small (2)British Classical oboist.Needs VoteJonathon SmallRoyal Liverpool Philharmonic Orchestra + +3918954Ruth Davies (3)Ruth DaviesEnglish oboist, who has been with the Royal Liverpool Philharmonic since 1st March 1994. + +[b]Born:[/b] c.1969, Southport, Lancashire, England.Needs Votehttps://www.liverpoolphil.com/the-orchestra/our-musicians/woodwind/ruth-davies/Catrin Ruth DaviesRoyal Liverpool Philharmonic Orchestra + +3919447Marialuisa BarbonItalian classical violinistNeeds VoteVenice Baroque OrchestraCapella Tiberina + +3919449Margherita OrlandiItalian classical viola playerCorrectVenice Baroque Orchestra + +3919450Stefano MolardiBorn: March 1, 1970 - Cremona, Italy +The Italian organist, musicologist, harpsichordist, conductor and music pedagogue, Stefano Molardi, studied music with some of the most famous international personalities, such as [a1612664], [a2465256], [a1312844], [a1777234]. He attended the class of [a1638237] in the Hochschule für Musik in Vienna, and collaborated, with the same musician, as part of the basso continuo at the Académie Bach of Porrentruy (Switzerland). He received numerous awards in national and international organ competitions, including Paisan di Prato (Udine) in 1998, Viterbo in 1996, Brugge and Innsbruck (Paul Hofhaimer). + +Born in Cremona, Molardi has undertaken a Renaissance career as not only organist but harpsichordist, conductor and scholar, not only at home in the rarified confines of early music but a virtuoso who has performed the complete organ works of J.S. Bach, Liszt and Franck and made an extraordinary recording of Verdi arranged for organ. Needs VoteS. MolardiVenice Baroque OrchestraI Virtuosi Delle MuseEnsemble La Moderna PratticaDuo Seraphim + +3919451Lavinia TassinariItalian classical violinistNeeds Votehttps://www.orchestrarossini.it/lavinia-tassinari/Venice Baroque OrchestraOrchestra Giovanile Italiana + +3921165Celeste RushAmerican classical violinist, and tutor. +She was a member of the [a=London Symphony Orchestra] (1993-1996) and then became Principal 1st Violin with the [a=Royal Philharmonic Orchestra]. She was eventually forced to retire from orchestral performing due to a shoulder injury. +Sister of [a=Mark Rush (2)] and sister-in-law of [a=Tannis Gibson].Needs Votehttps://www.conservatoire.org.uk/tutors/265-celeste-rushLondon Symphony OrchestraRoyal Philharmonic Orchestra + +3921395Walter OesterreicherFlute player.CorrectThe Philadelphia Orchestra + +3922054Robin SwensonNeeds Major Changes + +3923625Irving Brown (2)Irving B. BrownIrving "Skinny" Brown was a clarinetist and tenor saxophonist from the swing era. Needs VoteIrvin BrownIrving "Skinny" BrownIrving 'Skinny' BrownSkinny BrownCab Calloway And His OrchestraLouis Jordan And His OrchestraAl Cooper And His Savoy Sultans + +3923786Laura Murphy (5)Laura MurphyDouble bass playerNeeds Votehttps://www.lpo.org.uk/people/laura-murphy/https://www.southbanksinfonia.co.uk/musicians-profile/10580/laura-murphy/https://cy.newsinfonia.org.uk/musiciansLondon Philharmonic OrchestraRoyal Liverpool Philharmonic OrchestraSouthbank Sinfonia + +3926656Tommy EnochCreadited as jazz trumpet player.Needs Votehttps://www.allmusic.com/artist/tommy-enoch-mn0001935320/creditsEnochEarl Hines And His Orchestra + +3926659Jake WileyCredited as trombonist.Needs VoteTeddy Wilson And His Orchestra + +3928146Markus Van HornClassical double bass playerNeeds VoteMarkus van HornCity Of London SinfoniaLondon SinfoniettaThe Academy Of St. Martin-in-the-FieldsThe Arc Of Light Orchestra + +3929565Adriana BreukinkDutch classical recorder player. +(died 6 October 2022)Needs Votehttp://www.adrianabreukink.com/https://de.wikipedia.org/wiki/Adriana_Breukinkhttps://en.wikipedia.org/wiki/Adriana_BreukinkAdri BreukinkMusica Antiqua KölnFlanders Recorder QuartetBassano Quartet + +3929566Fumiharu YoshimineJapanese classical recorder playerNeeds VoteMusica Antiqua KölnCapilla FlamencaFlanders Recorder Quartet + +3929955Matz PettersenMatz Johan PettersenNorwegian oboist and cor anglais player, born 1953 in Sortland, Norway.Needs VoteOslo Filharmoniske Orkester + +3930080Andrew BerdahlAmerican violist, born in 1942. He's married to [a1793842].Needs VoteSan Francisco SymphonyThe Manhattan String Quartet + +3932114Yusef KifahTrance DJ and Producer from Kuala Lumpur, Malaysia.Needs Vote + +3932981John Stefan (2)Needs VoteThe Mooncalves + +3933533Johannes GrossoFrench oboist, born in 1987.Needs VoteGewandhausorchester LeipzigBudapest Festival OrchestraOrchestre Philharmonique De Radio FranceFrankfurter Opern- Und Museumsorchester + +3933535Ludovic TissusBassoonist.CorrectOrchestre National De L'Opéra De Paris + +3934075Ulrich PoschnerViolinist, concertmaster.Needs Votehttps://ulrich-p.blogspot.com/Orchester der Bayreuther FestspieleLuzerner Sinfonieorchester21st Century Symphony OrchestraAargauer Symphonie OrchesterArgovia Philharmonic + +3934081Simone RoggenSimone Muriel RoggenClassical violinistNeeds VoteCamerata BernBerner KammerorchesterAargauer Symphonie OrchesterSpira Mirabilis + +3934226Oliver CorchiaSwiss double bassist, born 1972 in Zürich, Switzerland.CorrectTonhalle-Orchester Zürich + +3934614Léonor de RécondoBorn: 1976 + +French classical violinist and novelist.Needs VoteLeonor De RecondoLeonor RecondoLeonore De RecondoLéonor de RecondoLes Folies FrançoisesLe Poème HarmoniqueOpera FuocoEnsemble L'Yriade + +3937537Simon Robinson (8)Classical bass vocalistNeeds VoteRIAS-KammerchorVocalconsort Berlin + +3938447Joe Brown (22)American jazz trombonist, active during the 1930s-40s.Needs VoteFletcher Henderson And His OrchestraJoe Jordan's Ten Sharps & Flats + +3940118Rubberlegs Williams & His OrchestraNeeds Major Changes"Rubberlegs" Williams & Band"Rubberlegs" Williams And Band"Rubberlegs" Williams OrchestraRubber Legs Williams & OrchestraRubber Legs Williams And His OrchestraRubberlegs Williams OrchestraRubberlegs Williams + +3940880Melanie Marshall (2)British mezzo-soprano vocalist.Needs Votehttps://www.facebook.com/melanie.marshall.1000https://www.bach-cantatas.com/Bio/Marshall-Melanie.htmMelaine MarshallMelanie E. MarshallMetro VoicesThe Cambridge SingersThe English Concert Choir + +3941601Marie SchreerLondon based violinist, born in Germany.Correcthttps://www.marieschreer.com/Hallé OrchestraRiot EnsembleThe Guastalla Quartet + +3942108Eric Reed (6)American horn player.Needs Votehttps://www.facebook.com/reederhorn/Orpheus Chamber OrchestraNew World Symphony OrchestraThe Canadian BrassAmerican Brass QuintetOregon Symphony OrchestraBurning River BrassBrassology + +3942246Sulki YuClassical violinistNeeds VoteRoyal Philharmonic OrchestraOrchestra VictoriaFournier Trio + +3942633Saul CastonSolomon Gusikoff CohenAmerican trumpet player and orchestra conductor (1901-1970). + +Saul Caston was born Solomon Gusikoff Cohen on August 22, 1901 in New York City, N. Y. By age 11, Caston was a student of the famous trumpet teacher Max Schlossberg (1873-1936) of the Russian (or Russian Jewish) school of trumpet playing. Saul Caston also studied conducting with [a=Abram Chasins]. He joined [a=The Philadelphia Orchestra] (1918-1945), and became principal trumpet in the 1923-1924 season. In 1936, Caston, who was a protégé of conductor [a=Leopold Stokowski], became associate conductor of the Philadelphia Orchestra and was also conductor for [a=The Reading Symphony Orchestra] (1941-1944). His conducting experience led to his appointment as conductor of the [a=Denver Symphony Orchestra] for 19 seasons (1945-1964). Saul Caston died in Winston Salem, N. C. on July 28, 1970.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/100426/Caston_Saulhttps://www.nytimes.com/1960/11/25/archives/saul-caston-honored-denver-conductor-receiver-national-music-group.htmlDr. Saul CastonThe Philadelphia Orchestra + +3942704Malcolm LoweAmerican violinist. Former concertmaster of the [a395913], 1984 to 2019.Needs Votehttps://en.wikipedia.org/wiki/Malcolm_LoweBoston Symphony OrchestraBoston Symphony Chamber Players + +3943021Jeffrey BenjaminProducerNeeds Vote + +3943491Hildegard NiebuhrClassical violinist, born in 1991 in Leipzig, Germany.Needs VoteMahler Chamber Orchestra + +3944227Richard BeechingDesigner. + +Head Of Production & Design for [l5723], Nov 2011 - presentCorrecthttps://www.linkedin.com/in/richard-beeching-you-91074226Beech (4) + +3944683Bruno GrossiSwiss classical flautistNeeds VoteGrossiOrchestra Della Radio Televisione Della Svizzera Italiana + +3945408Hikaru SatoCellist.CorrectOrchestre De Paris + +3945409Alice Lawrence BakerAmerican cellist, born in 1913 and died about 1984.Needs VoteChicago Symphony Orchestra + +3945868Marc SchaefferClassical organistNeeds VoteOrchestre De La Société Des Concerts Du Conservatoire + +3946842James Moffitt (3)Clarinet player, based in Honolulu, Hawaii since years.Needs Votehttps://manoa.hawaii.edu/music/about-us/faculty/james-moffitt/Saint Louis Symphony OrchestraChicago Pro Musica + +3947468Benoît LaurentClassical oboistNeeds Votehttp://www.benoitlaurent.eu/biografie-2?langue=deBenoit LaurentConcerto KölnKammerorchester BaselLes AgrémensScherzi MusicaliLes MuffattiLa PastorellaMannheimer HofkapelleBachPlusSolstice EnsembleCappella Academica FrankfurtThe 1750 Project + +3947768Ronan KernoaClassical cellist & violistNeeds VoteLa Petite BandeScherzi MusicaliLes MuffattiInaltoPer FlautoApotheosis (8)A Nocte TemporisLes Abbagliati + +3949285Joseph BastianBorn on November 9th, 1981 in Forbach (France), the swiss-french conductor and trombone player Joseph Bastian is principal conductor of the Abaco-Orchester - Orchestra of the Munich University since 2011. Needs Votehttp://www.josephbastian.fr/welcome-bienvenue-willkommenSymphonie-Orchester Des Bayerischen RundfunksLes Cornets NoirsLa Chapelle RhénaneCapricornus Ensemble Stuttgart + +3950293Wilbur GorhamDixieland banjo player and guitarist.Needs VoteJimmie Noone's Apex Club Orchestra + +3951669Andrew Green (8)British classical tenor vocalist and Liner Notes author on classical releases.Needs VotePro Cantione Antiqua + +3952709Boris BrovtsynRussian violinist, born in 1977 in Moscow, USSR.Needs VoteBoris Brovtsinボリス・ブロフツィンSpectrum Concerts BerlinDeutsche Kammerphilharmonie Bremen + +3952935Kenneth RolesClassical bass vocalistNeeds VoteKen RolesThe Choir Of Christ Church Cathedral + +3952936James Murray-BrownClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952937Rory JeffesClassical tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952938Jeremy KitchenClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952939Roger LilleyClassical alto vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952940Laurie MilnerClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952941Matthew King (7)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952942Timothy RoweClassical bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952943Nicholas PondClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952944Adrian Harris (3)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952945Jonathan Cooke (7)Classical alto vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952946Andrew SpringClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952947Edmund WearingClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952948Simon Evans (4)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952949Simon Williamson (2)Classical treble vocalistNeeds VoteSimon WilliamsThe Choir Of Christ Church Cathedral + +3952950Matthew Bell (3)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3952951Richard Cranmer (2)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +3954856Anne Yuuko AkahoshiGerman violinist, born in Berlin, Germany.Needs VoteSWR-Rundfunk-Orchester KaiserslauternCamerata Academica SalzburgStaatsphilharmonie Rheinland-PfalzDeutsche Radio Philharmonie Saarbrücken Kaiserslautern + +3955609Matthew TaltyNeeds VoteBelcea Quartet + +3955613Jan Brabec (2)Classical clarinetistNeeds VoteThe Czech Philharmonic OrchestraPrague PhilharmoniaPrague Philharmonia Wind Quintet + +3957168Haddon SquireNeeds Votehttps://www.britishmusicsociety.co.uk/2024/05/seeking-news-of-a-prominent-pianist/ + +3958368Ursula WexAustrian cellist, born 4 April 1975 in Ehenbichl, Austria.CorrectUschi WexOrchester Der Wiener StaatsoperWiener Philharmoniker + +3958372Martin ZalodekAustrian violinist, born 1971 in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerZalodek Ensemble Wien + +3958374Elmar LandererAustrian violist, born in 1974.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VirtuosenSteude Quartett + +3966256Benjamin GlorieuxBenjamin Glorieux (born 1979) is a Belgian cellist.Needs VoteIl GardellinoAusoniaEnsemble Clematis + +3968625Michael Winter (6)classical French hornist, joined the Boston Symphony in September 2012, had been acting principal horn for the Buffalo PhilharmonicNeeds VoteBoston Symphony OrchestraElbeblech + +3969281Andreas Schmidt (13)Classical Violinist.Needs VoteAndreas SchmidAndreas SchmidtSüdwestdeutsches Kammerorchester + +3971504Richard GostingRichard St. John GostingAmerican singer and songwriter. +Best know as [a731169], male half of the duo [a731174]. + +Born: December 2, 1940 in Santa Monica, California +Died: December 27, 2003 in Santa Monica, CaliforniaNeeds Votehttps://fromthevaults-boppinbob.blogspot.com/2020/12/dick-st-john-born-2-december-1940.htmlDick GostingDick St. JohnDick And Dee Dee + +3971708Charlie Stewart (4)Trumpet playerCorrectCharles "Bruck" StewartCharles "Buck" StewartCharles "Buck" StewartCharles "Chuck" StewartCharles StewartJimmie Lunceford And His Orchestra + +3971797Aarno WalliAarno Rafael Waldemar WalliFinnish conductor and pianist born on October 26, 1920 in Helsinki, Finland and died on August 16, 2007 in Helsinki, Finland. Father of [a=Hasse Walli] and [a=Petri Walli].Needs VoteA. WalliAarno ValliWalliAarno Walli Yhtyeineen + +3971879Mikael BeierClassical flautist.Needs VoteDR SymfoniOrkestret + +3972134Trance-Pennine ExpressTrance / Hard Trance project by UK Hard House DJ's & producers Paul Maddox & Ben Stevens.Needs VoteTrance Pennine ExpressTrance-PennineTrancepennine ExpressPaul MaddoxBen Stevens + +3972349Luca KocsmarszkyClassical violinist/soprano vocalist.Needs VoteLondon Symphony Chorus + +3972676Oliver Brooks (2)Needs VoteThe Virtuosi Of England + +3972983Goody And His Good TimersPseudonym for Mills Merry Makers on Pathe Actuelle and Perfect.Needs VoteGoody & His Good TimersIrving Mills And His Hotsy Totsy GangMajestic Dance OrchestraWhoopee MakersMills Merry MakersDixie DaisiesMills Musical ClownsPaul Mills And His Merry MakersJack Winn And His Dallas DandiesGil Rodin's BoysVincent Richards And His OrchestraJimmy Bracken's Toe TicklersThe Cotton Pickers (8) + +3973593Norman Burns (2)Jazz drummerNeeds VoteN. BurnsGeorge Shearing TrioNorman Burns QuintetSteve Race Bop GroupAlan Dean And His Be-BoppersNorman Burns And His Band + +3973761Karin HautermannGerman soprano vocalistCorrectChor Des Bayerischen Rundfunks + +3974809Rudolph SimsCellist. +Member of the New York Philharmonic Orchestra from 1939-1960s.Needs Votehttps://archives.nyphil.org/index.php/artifact/0ba92ceb-bb25-4c55-997e-345fe969cbcf-0.1R. SimsNew York PhilharmonicBen Webster With Strings + +3978203Michel Boulanger (2)Classical cellistNeeds VoteOrchestre Des Champs ElyséesLa Petite BandeLes Muffatti + +3979337Alexander PorteousClassical tenor vocalistNeeds VoteAlex PorteousThe Choir Of Clare College + +3979957Michal StadnickiClassical double bassist.Needs VoteDR SymfoniOrkestret + +3983093Richard StrablAustrian violist.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +3984036Grant HerreidMultiple early classical music instrument player. +On the [url=https://yalemusic.yale.edu/people/grant-herreid]faculty at Yale University[/url], he directs their Collegium Musicum and is artistic and music director of the [url=https://ybop.yale.edu/]Yale Baroque Opera Project[/url] (YBOP). Needs Votehttp://grantherreid.com/https://ybop.yale.edu/https://www.piffaro.org/players/grant-herreid/GHGrant Herreid (GH)Piffaro, The Renaissance BandEx UmbrisYale Institute Of Sacred Music + +3984037Joan KimballClassical wind instrument player. A founding member of and artistic co-director with [a3984038] of [a3694352].Needs Votehttps://www.piffaro.org/players/joan-kimball/JKJoan Kimball (JK)Piffaro, The Renaissance Band + +3984038Robert WiemkenClassical wind instrument player & guitarist. A founding member of and artistic co-director with [a3984037] of [a3694352].Needs VoteBob WiemkenRWRobert Wiemken (RW)rwPiffaro, The Renaissance BandEarly Music New York + +3987644Wardell Gray Los Angeles All StarsNeeds Major Changes + +3987649Bud Powell QuartetNeeds Major ChangesThe Bud Powell QuartetBud PowellSonny StittMax RoachCurly Russell + +3987898Julia KuhnGerman classical string instrumentalistNeeds VoteThe Academy Of Ancient MusicCollegium Musicum 90Orchestra Of The Age Of EnlightenmentLa Nuova MusicaThe MozartistsGaechinger Cantorey + +3987904Emily DupereClassical violin player.Needs VoteThe English Baroque Soloists + +3988356Aline MarciacqClassical violinistNeeds VoteOrchestre National Du Capitole De ToulouseDelta Ensemble + +3989600Serotonin SoulNeeds Major Changes + +3990049Rie KimuraJapanese classical violinistNeeds VoteMusica AmphionEnsemble OdysséeFantasticus (2)Ensemble StravaganzaPRJCT Amsterdam + +3990220Dietmar KüblböckAustrian trombonist, born 8 June 1963 in Linz, Austria. He's the son of [a1667447].Needs VoteVienna Symphonic Orchestra ProjectOrchester Der Wiener StaatsoperWiener PhilharmonikerConcentus Musicus WienMusica Antiqua WienGrazer Philharmonisches OrchesterRichard Österreicher Big BandWiener Posaunenquartett (2)The Vienna Chamber EnsembleWien-Berlin Brass Quintet + +3992087Nicolas KraemerClassical keyboard instrumentalistNeeds VoteThe Academy Of St. Martin-in-the-Fields + +3993960Katarina AgnasEva Katarina Nordström AgnasSwedish classical bassoonist, born October 2, 1968.Needs VoteSveriges Radios Symfoniorkester + +3994075Andreas LendEstonian cellist Andreas Lend was born into a family of musicians. He has studied in Helsinki at the Sibelius Academy (Prof. Hannu Kiiski and Heikki Pekkarinen) and received his B.A and M.A. degree from the Estonian Academy of Music and Theatre (Prof Peeter Paemurru 2008, 2010).Needs Votehttp://www.plmf.ee/andreas-lend-cello_engEstonian National Symphony OrchestraC-JAM (2)String Quartet Prezioso + +3998709Julie Schwartz (2)Alto SaxophonistNeeds VoteBenny Goodman And His Orchestra + +3999062Franz MoschnerAustrian violist, born 1953 in Eisenstadt, Austria.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +3999727John WhitenerAmerican tubistNeeds VoteRoyal Scottish National Orchestra + +3999728Adrian Wilson (2)British oboistNeeds VoteRoyal Scottish National OrchestraEnsemble 360 + +4000002Johan PejlerFrans Johan Reinhold PejlerSwedish baritone vocalist, born April 21, 1963.Needs Votehttps://www.linkedin.com/in/johan-pejler-4267a456RadiokörenFjedurOctavox + +4000438Margaret GutierrezMargaret Soper GutierrezViolinist.Needs Votehttps://arts.unco.edu/music/faculty-staff/gutierrez-margaret.aspxNational Symphony Orchestra + +4000621Wolfram BrandlGerman violinist, born 1975 in Würzburg, Germany.Needs Votehttps://scharoun-ensemble.com/en/ensemble/wolfram-brandl/Berliner PhilharmonikerStaatskapelle BerlinScharoun Ensemble BerlinBundesjugendorchester + +4000622Stanley DoddsViolinist and conductor, born 1970 in Edmonton, Canada. Now based in Berlin, Germany.Correcthttp://www.stanleydodds.de/home.htmlスタンリー・ドッズBerliner Philharmoniker + +4000623Christian StadelmannChristian Stadelmann (11 January 1959 in Berlin, Germany - 26 July 2019) was a German violinist.Needs Votehttps://en.wikipedia.org/wiki/Christian_StadelmannBerliner PhilharmonikerJunge Deutsche PhilharmonieDeutsche Kammerphilharmonie BremenPhilharmonia Quartett Berlin + +4000624Martin StegnerGerman violist, born 1967 in Nuremberg, Germany.Correcthttp://www.martinstegner.de/MARTIN_STEGNER_VIOLA/Start.htmlBerliner PhilharmonikerDeutsches Symphonie-Orchester Berlin + +4000625Eva - Maria TomasiAustrian classical violinist, born in Salzburg, Austria.CorrectEva TomasiEva-Maria TomasiBerliner Philharmoniker + +4000627Maja AvramovicSerbian classical violinistCorrectMaja AvramovičBerliner Philharmoniker + +4000628Armin SchubertClassical violinist.CorrectBerliner Philharmoniker + +4000630Walter KüssnerClassical viola playerNeeds VoteW. KüssnerWalter KüstnerBerliner PhilharmonikerBerliner Barock SolistenBundesjugendorchesterPhilharmonisches Streichsextett Berlin + +4000631Bastian SchäferGerman violinist.CorrectBerliner PhilharmonikerBundesjugendorchester + +4000632Laurentiu DincaLaurentiu Dinca (born 1953) is a Romanian classical violinistNeeds VoteLaurentius DincaBerliner PhilharmonikerRadio-Sinfonie-Orchester FrankfurtPhilharmonische Geigen Berlin + +4000633Zdzislaw PolonekClassical violist.CorrectZ. PolonekZdzisław PolonekBerliner Philharmoniker + +4000635Felicitas HofmeisterFelicitas Clamor-HofmeisterGerman violinist, born in 1972 in Kaiserslautern, Germany.CorrectFelicitas Clamor-HofmeisterBerliner Philharmoniker + +4000636Amadeus HeutlingGerman violinist. He's the son of [a1719620].CorrectBerliner PhilharmonikerHeutling-Quartett + +4000637Madeleine CarruzzoMadeleine Carruzzo is a Swiss violinist. She was a member of the [a260744] from 1982 to 2023.Needs VoteMadelaine CaruzzoBerliner PhilharmonikerCollegium Der Berliner PhilharmonikerErlenbusch Quartet + +4000638Aline ChampionSwiss violinist, born 31 July 1971 in Geneva, Switzerland.CorrectAline Champion-HenneckaBerliner PhilharmonikerWDR Sinfonieorchester Köln + +4000639Andreas Neufeld (2)Classical violinist, born 1976 in Krasnodar, Russia.Needs VoteAndreas NeufeldtBerliner PhilharmonikerRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther Festspiele + +4000640Rüdiger LiebermannRüdiger Liebermann (born in Sprötau, Germany) is a German Classical violinist. He was a member of the [a260744] from 1980 to 2023.Needs VoteBerliner PhilharmonikerBerliner Barock SolistenPhilharmonisches Streichsextett BerlinBerlin Philharmonic Piano Trio + +4001469Pernilla CarlzonSwedish classical violinistCorrectPernilla CarizonGöteborgs Symfoniker + +4002028Ralf GötzHorn player from Germany. Born 1961 in Gera. Principal horn Gewandhausorchester Leipzig since1984Needs VoteGewandhausorchester LeipzigGewandhaus-Hornquartett + +4003035Sando ShiaChinese violinist.Needs VoteSando XiaChicago Symphony Orchestra + +4003036Heidi TurnerAmerican violinist.Needs VoteChicago Symphony Orchestra + +4003037Cornelius ChiuAmerican violinist, born in in Ithaca, New York.Needs VoteChicago Symphony Orchestra + +4003038Ella BrakerElla Braker is a classical violinist. She was a member of the [a837562] from 1976 to 2003.Needs VoteChicago Symphony Orchestra + +4003536Lior EitanIsreali flutist, born in 1963.Needs Voteליאור איתןIsrael Philharmonic OrchestraEshel Trio + +4003544Tamar MelzerTamar Narkiss-MelzerClassical oboist.Needs VoteIsrael Philharmonic Orchestra + +4003569Jelka WeberJelka Weber is a German flute player.Needs VoteBerliner PhilharmonikerMagdeburgische Philharmonie + +4003571Marion ReinhardGerman bassoonist.Needs VoteBerliner PhilharmonikerBerlin Philharmonic Wind QuintetFilarmonica Della ScalaOrsolino Quintett + +4003573Wolfgang KohlyGerman double bassist, born in 1944.Needs VoteBerliner PhilharmonikerKontrabaßquartett Der Berliner Philharmoniker + +4003613Maxwell RaimiAmerican violist.Needs VoteMax RaimeMax RaimiChicago Symphony Orchestra + +4003614Diane MuesAmerican violist.Needs VoteChicago Symphony Orchestra + +4003615Thomas Wright (4)Thomas Wright (born 1950 in Washington, D.C.) is an American violist, guitarist and mandoline player. He was a member of the [a837562] from 1981 to 2014.Needs VoteChicago Symphony Orchestra + +4003616Eric WicksAmerican violinist.Needs VoteChicago Symphony OrchestraBaltimore Symphony Orchestra + +4003617Daniel OrbachDaniel Orbach is an American violist. He was a member of the [a837562] from 1988 to 2017.Needs VoteChicago Symphony Orchestra + +4003618Nancy ParkAmerican violinist.Needs VoteChicago Symphony OrchestraChicago Pro Musica + +4003619Arnold BrostoffArnold Brostoff (born in 1935) is an American violinist. He was a member of the [a837562] from 1964 to 2011.Needs VoteBoston Pops OrchestraChicago Symphony OrchestraNordwestdeutsche PhilharmonieEastman-Rochester Orchestra + +4003709Michael HovnanianMichael Hovnanian is an American classical bass player, born in Seattle, Washington. He was a member of the [a837562] from 1989 to 2019.Needs VoteChicago Symphony OrchestraChicago Philharmonic + +4003711Bradley OplandAmerican double bassist. A member of the [a837562] since 1984.Needs VoteBrad OplandChicago Symphony OrchestraMinnesota OrchestraThe Chicago Chamber Musicians + +4003874Richard KanterAmerican oboist, born 7 July 1935 in Chicago, Illinois, and died 10 October 2014 in Chicago, Illinois.Needs VoteChicago Symphony Orchestra + +4003875Michael HenochMichael Henoch is an American oboist. He was a member of the [a837562] from 1972 to 2022.Needs VoteChicago Symphony OrchestraThe Chicago Chamber MusiciansChicago Pro Musica + +4003877David Griffin (2)American horn player.Needs VoteChicago Symphony OrchestraHouston Symphony OrchestraOrchestre symphonique de MontréalRochester Philharmonic Orchestra + +4003879William BuchmanAmerican bassoonistNeeds VoteDallas Symphony OrchestraChicago Symphony OrchestraThe Chicago Chamber Musicians + +4003881Louise Dixon (2)Louise Dixon is an American flute player. She was a member of the [a837562] from 1973 to 2015.Needs VoteChicago Symphony Orchestra + +4003884Sarah BullenAmerican harpist and educator who serves as the [a837562] principal harpist from 1997 to 2021. She was active for New York Symphonic from 1986 to 1998.Needs VoteNew York PhilharmonicChicago Symphony OrchestraUtah Symphony Orchestra + +4003890Lynne TurnerAmerican harpist.Needs VoteChicago Symphony Orchestra + +4003893Walfrid KujalaWalfrid E. KujalaWalfrid Kujala (19 February 1925 - 10 November 2024) was an American flute player and Professor emeritus of Flute.Needs VoteChicago Symphony OrchestraRochester Philharmonic OrchestraChicago Pro Musica + +4004061James GilbertsenJames Gilbertsen is an American trombonist. He was a member of the [a837562] from 1968 to 2011.Needs VoteChicago Symphony OrchestraFlorida Symphony Orchestra + +4004062James Ross (16)American classical percussionist, born in Cincinnati, Ohio.Needs VoteChicago Symphony OrchestraChicago Pro Musica + +4005606Gunnar HarmsGerman violinistNeeds VoteGewandhausorchester Leipzig + +4006352Count Basie And His All-American Rhythm SectionAmerican jazz ensemble in the big band era. The relation of Count Basie with the Rhythm Section trio lasted estimated from 1934 to 1948.CorrectCount Basie & His All American Rhythm SectionCount Basie & His All-American Rhythm SectionCount Basie And His All American RhythmCount Basie And His All American Rhythm SectionCount Basie And His All-American RhythmCount Basie And His Orchestra All-American Rhythm SectionCount Basie And His RhythmCount Basie And His Rhythm SectionCount Basie And His-All-American Rhythm SectionCount Basie Y Su Ritmo AmericanoCount Basie's All American Rhythm GroupCount Basie. All American Rhythm Section.Count BasieDon ByasJo JonesBuck ClaytonWalter PageFreddie Green + +4006397Eva OertleThe Swiss flutist Eva Oertle is active as a soloist and chamber musician throughout Europe and performs with such internationally renowned orchestras as Il Giardino Armonico and Al Ayre Español. Eva Oertle is also active as a presenter and music editor with Swiss Radio SRF2 Kultur.Needs Votehttp://www.eva-oertle.com/index2.phpIl Giardino Armonico + +4006399Hedwig ReffeinerViolinistNeeds VoteIl Giardino Armonico + +4010376Paul Martin (38)Classical bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010743Aleksandra KolasinskaClassical violinist.Needs VoteAleksandra KolasińskaBergen Filharmoniske Orkester1B1 + +4010936George HumphreysBass - baritone and former treble vocalist.Needs Votehttps://www.george-humphreys.co.uk/The Choir Of Christ Church CathedralChoir Of London (2) + +4010938Tobias SheppardClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010940David Evans (26)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010943Benedict McCareyClassical treble vocalistNeeds VoteBen McCareyThe Choir Of Christ Church Cathedral + +4010946Julian Wright (5)Classical bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010948Luke SchofieldClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010950Thomas Waller (2)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010951Oliver WingClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4010954Justin RamellClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4012535Dennis FerryClassical trumpet & trombone instrumentalist + +Dennis has a Bachelor’s degree from Carnegie-Mellon University and a Master’s degree from Catholic University, having studied there with Lloyd Geisler. Born in Latrobe, Pennsylvania, he began his musical education with his father, Anthony Ferry, a big band trumpeter in southwestern PA. Dennis grew up listening to his dad’s bands rehearsing in the room next to his bedroom. + +He was a member of The United States Air Force Band in Washington, D.C. for four years, and from 1983 to 1996 was Principal Trumpet of the Colorado Music Festival Orchestra. Dennis has participated in over 700 live radio broadcasts and appears on over 30 commercially available recordings. + +As an active free-lancer in the DC area, Dennis has performed with the National Symphony, the Baltimore Symphony, the Kennedy Center Opera House Orchestra, Alexandria Symphony, Maryland Symphony, Concert Artists of Baltimore and has played 1st trumpet in numerous shows at Arena Stage. Dennis is also a member of the Virginia Grand Military Band. + +He is an active performer on the baroque trumpet (a “natural” trumpet without valves) playing with the Washington Bach Consort and Opera Lafayette. Dennis has come full-circle to his first love -- big-band music – and is thrilled to be starting a new chapter as a member of the Olney Big Band.Needs VoteFerryדניס פריConcerto VocaleWashington Bach ConsortBoston Early Music Festival Orchestra + +4013348PHD (11)Paul DockerHard dance DJ/producer based in Basingstoke, UK.Needs Votehttps://www.facebook.com/pages/PHDLunar-Project/536393719831281https://soundcloud.com/djphd-1Paul Docker + +4013581Danny Logan (3)Credited as trombone player.Needs VoteDan LoganDaniel LoganDon LoganErskine Hawkins And His Orchestra + +4014183Otto BrucknerClassical keyboard instrumentalistNeeds VoteProf. Otto BrucknerOrchester Der Wiener Staatsoper + +4014800Russell RoysterJazz trumpet player.Needs VoteRovsterRoysterRoystonTab Smith Orchestra + +4014872Stan KosowCredited as jazz tenor saxophone player.Needs VoteBenny Goodman And His Orchestra + +4016777Teddy Peters (2)Female vaudeville blues singer, who recorded two titles for Vocalion in Chicago on 11 March 1926.Needs Vote'Teddy' Peters + +4017062Ingrid BockAmerican cellist.CorrectRochester Philharmonic OrchestraThe Eastman-Dryden Orchestra + +4017065Thomas SperlAmerican double bassist, born in Buffalo, New York.Needs VoteThe Cleveland OrchestraBuffalo Philharmonic OrchestraRochester Philharmonic OrchestraThe Eastman-Dryden Orchestra + +4017067Douglas ProsserAmerican trumpet and cornet player.CorrectRochester Philharmonic OrchestraThe Eastman-Dryden Orchestra + +4017085Christopher WuAmerican violinist and Professor of Violin from Rochester, NY.Needs VoteChristopher J. WuBoston Symphony OrchestraBuffalo Philharmonic OrchestraRochester Philharmonic OrchestraPittsburgh Symphony OrchestraOklahoma City Philharmonic + +4017873The HerdmenMembers of [a284746] (in the period of [a2122869]) touring Europe starting from April 1954, also known as "The Third Herdmen" or "The Herdsmen". +Dick Collins - Trumpet, Cy Touff - Basstrumpet, Bill Perkins - Tenorsax, Dick Hafer - Tenorsax, Red Kelly - Bass, Jerry Coker - Tenorsax, Ralph Burns - Piano, Chuck Flores - DrumsNeeds VoteThe HerdsmenThe Third HerdmenThe Herdsmen (2)Dick HaferChuck FloresBill PerkinsRalph BurnsDick CollinsCy TouffRed KellyJerry CokerWoody Herman And His OrchestraWoody Herman And His Third Herd + +4018060Caroline MaguireClassical double-bass instrumentalistNeeds VoteOrchestra Of The Age Of EnlightenmentHanover BandThe English ConcertThe Music Collection + +4018809Tim RundleTimothy RundleBritish oboist (mainly) & flutist, and professor & teacher. Born in 1981 in Derby, England. +He attended the [l459222]. In 2005 he was appointed Co-Principal Oboe with the [a=BBC Scottish Symphony Orchestra], a position he held for six years. Principal Oboe with the [a=Philharmonia Orchestra]. Professor of Oboe at [l305416] and teacher of reed making at the [l527847].Needs Votehttps://philharmonia.co.uk/bio/timothy-rundle/https://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/1279-timothy-rundle/Timothy RundlePhilharmonia OrchestraBBC Scottish Symphony Orchestra + +4019121Kathryn GreenbankClassical oboist.Needs VoteCathy GreenbankThe Saint Paul Chamber OrchestraMinnesota OrchestraMinnesota Chamber Players + +4019254Dominique CitroenClassical harpsichordist, currently musicians booking manager.Needs Votehttps://www.dominiquecitroen.com/dominique-citroen-management/ + +4019542Franz PatakClarinet playerNeeds VoteBruckner Orchestra LinzBläserseptett Des Brucknerorchesters Linz + +4019543Alfred Heinrich (2)Bassoon playerNeeds VoteBruckner Orchestra LinzBläserseptett Des Brucknerorchesters Linz + +4019544Manfred ViellechnerClassical oboe playerNeeds VoteBruckner Orchestra LinzBläserseptett Des Brucknerorchesters Linz + +4019545Ludwig HultschTrumpet playerNeeds VoteBruckner Orchestra LinzBläserseptett Des Brucknerorchesters Linz + +4019546Heribert WatzingerClassical hornistNeeds VoteBruckner Orchestra LinzBläserseptett Des Brucknerorchesters Linz + +4019547Erich PumClassical hornistNeeds VoteBruckner Orchestra LinzBläserseptett Des Brucknerorchesters Linz + +4021716Sara EganSoprano vocalistNeeds VoteLe Concert Spirituel + +4022180Bruno WeinmeisterBruno Weinmeister (born 22 November 1972) is an Austrian cellist and conductor. He's the brother of [a3032698] and [a1160359].Needs Votehttp://www.brunoweinmeister.com/Staatskapelle DresdenLucerne Festival Orchestra + +4023062Arthur AckroydClassical flute/piccolo flute player.Needs VoteA AckroydPhilharmonia Orchestra + +4023243Marianne CotterillDanish classical soprano vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +4023771Jerry SirucekJerry E. SirucekAmerican oboist, born 30 June 1922 in Chicago, Illinois and died in August 1996.Needs VoteJerry E. SirucekChicago Symphony OrchestraThe American Woodwind Quintet + +4024352John WoehrmannAmerican jazz bass trombonist, composer and arranger. He died in a car crash in 1963. +Tragically, this happened shortly, before his first own arrangements for [a336415], after being active mainly with [a229639]. Those arrangements were first published in 1964. +Needs Votehttp://swingandbeyond.com/2016/10/18/gershwins-piano-prelude-2-played-by-buddy-morrow-1964/Woody Herman And His OrchestraWoody Herman And The Swingin' Herd + +4024688Lonnie BrownEarly jazz saxophonistNeeds VoteLannie BrownFletcher Henderson And His Orchestra + +4025050Billy StuartDrummerNeeds VoteBilly ShuartW. ShuartStan Kenton And His OrchestraThe Tom Talbert Jazz Orchestra + +4025928John McCormick (9)Trumpet player.Needs VoteTommy Dorsey And His OrchestraThe Dorsey Brothers OrchestraThe Dixieland Express + +4027247Richard Roberts (11)countertenor vocalistNeeds VoteWestminster Cathedral Choir + +4027845Simon Williams (15)Classical tenor vocalist.Needs VoteThe King's College Choir Of Cambridge + +4028633Rupert JohnstonCredit for boy treble vocals.Needs VoteThe King's College Choir Of Cambridge + +4028634James CrookesCredit for boy alto vocals.Needs VoteThe King's College Choir Of Cambridge + +4028635Marcus BodyCredit for boy treble vocals.Needs VoteThe King's College Choir Of Cambridge + +4028636John McFadzeanCredit for boy treble vocals.Needs VoteThe King's College Choir Of Cambridge + +4028776Luc DevanneFrench classical Double Bass & Violone instrumentalistNeeds VoteLe Concert Spirituel + +4029857James Sherlock (2)British classical keyboard instruentalist and conductor.Needs Votehttp://www.sherlox.org/james/http://en.wikipedia.org/wiki/James_SherlockEnglish Chamber Orchestra + +4030722Charles SimonUS jazz drummerNeeds VoteHoward McGhee And His Orchestra + +4030919Eduard WimmerEduard Wimmer (born 1944) is an Austrian bassoonist.Needs VoteCamerata Academica SalzburgDas Mozarteum Orchester Salzburg + +4030923Wolfgang SchlachterWolfgang Schlachter (27 February 1942 - 21 January 2020) was an Austrian oboist. +Needs VoteDas Mozarteum Orchester Salzburg + +4030924Kurt BirsakKurt Birsak (born 1936 in Vienna) is an Austrian clarinetist. +Needs VoteDas Mozarteum Orchester Salzburg + +4031457Karl-Bernhard Von StumpffGerman cellist.Needs VoteKarl Bernhard v. StumpffDresdner PhilharmonieDresdner Kapellsolisten + +4032228Krishna NagarajaItalian classical violist, violinist, vocalist, composer, arranger and more, Krishna Nagaraja is an Italian musicianNeeds VoteEuropa GalanteIl Complesso BaroccoEnsemble Les NationsConcerto SciroccoStile Galante“Il Tempio Armonico” - Orchestra Barocca Di VeronaDivino Sospiro + +4034125Vincent LindgrenSwedish classical oboist, born March 8, 1946 died June 9 2015.Needs VoteWincent LindgrenKungliga HovkapelletGöteborgs SymfonikerGöteborgs Blåsarkvintett + +4036203Roderick Williams (3)British baritone & bass vocalist and composer, born 1965 in North London.Needs Votehttps://en.wikipedia.org/wiki/Roderick_Williamshttps://www.bach-cantatas.com/Bio/Williams-Roderick.htmRoddy WilliamsThe English Concert ChoirI FagioliniBach Collegium Japan + +4036365Cecil GalloisFrench classical counter-tenor vocalistNeeds Votehttp://www.harmoniasacra.com/page-1036.htmlChoeur de Chambre de NamurLes Pages Et Les Chantres Du Centre De Musique Baroque De VersaillesEnsemble Almazis + +4036375Guy DuvergetFrench classical trombonist & sackbuttistNeeds VoteLe Concert SpirituelLes Ambassadeurs (6) + +4036630The Moses Hogan ChoraleNeeds Major Changesザ・モーゼス・ホーガン・コラール + +4039268Dominic WallisClassical Tenor & Bass vocalistNeeds VoteOxford CamerataThe Choir Of Clare College + +4039864Mike Holloway (4)New Orleans early jazz banjoistNeeds VoteHollowayM. HollowayAnthony Parenti And His Famous Melody Boys + +4039867Vic LubowskiNew Orleans early jazz pianistNeeds VoteLubowskiV. LubowskiVitaly Jaques LubowskiAnthony Parenti And His Famous Melody Boys + +4039871George TriayNew Orleans early jazz drummerNeeds VoteG. TriayGeorge TrieAnthony Parenti And His Famous Melody Boys + +4039872Tony PapaliaNew orleans early jazz saxophonist/clarinetistNeeds VoteT. PapaliaAnthony Parenti And His Famous Melody Boys + +4040439Matthew MidgleyClassical english double bassistNeeds VoteRotterdams Philharmonisch OrkestAmsterdam Sinfonietta + +4041716Ed GloverTrombonist, working in the 1940s.Needs VoteCootie Williams And His Orchestra + +4043149Eddie Boyd (5)Drummer With Louis Jordan And His Tympany Five. Do not confuse with soloist [a341573].CorrectEddie Byrd (2)Louis Jordan And His Tympany Five + +4043927Susanna PietschSusanna Baumgartner née PietschGerman classical violinist, born 1972 in Berlin.Needs VoteMünchner RundfunkorchesterSymphonie-Orchester Des Bayerischen RundfunksEnsemble Coriolis + +4044835Alexandre LecarmeFrench cellist, born in Grasse, France.Needs Votehttps://www.bso.org/profiles/alexandre-lecarmeBoston Pops OrchestraBoston Symphony Orchestra + +4044839Tatiana DimitriadesAmerican violinist.Needs VoteTatiani DimitriadesBoston Pops OrchestraBoston Symphony Orchestra + +4044843Toby OftPrincipal trombone, the [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/toby-oftBoston Pops OrchestraBoston Symphony Orchestra + +4044845Alexander VelinzonClassical violinist, born in St. Petersburg, Russia. Associate Concertmaster, [a=Boston Symphony Orchestra] and Concertmaster, [a=Boston Pops Orchestra].Needs Votehttps://www.bso.org/profiles/alexander-velinzonBoston Pops OrchestraBoston Symphony OrchestraSeattle Symphony Orchestra + +4044847Blaise DejardinBlaise DéjardinFrench cellist, born in Strasbourg, France.Needs VoteBlaise DéjardinBoston Pops OrchestraBoston Symphony OrchestraEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +4044852Glen CherryAmerican violinist.Needs VoteGlenn CherryBoston Pops OrchestraBoston Symphony OrchestraBoston Symphony Chamber Players + +4044853Sheila FiekowskyAmerican violinist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +4044854Ikuko MizunoClassical violinist, born in Tokyo, Japan.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +4044855Xin DingChinese violinist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +4044856Cynthia MeyersAmerican piccolo flutist, born in Somerset, Pennsylvania.Needs Votehttps://necmusic.edu/faculty/cynthia-meyersBoston Pops OrchestraBoston Symphony OrchestraHouston Symphony Orchestra + +4044857Rebecca GitterCanadian violist.Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +4044858Gerald EliasAmerican violinist, teacher, conductor, and composer, born in 1952.Needs Votehttp://www.geraldelias.comBoston Symphony OrchestraUtah Symphony OrchestraThe Abramyan String QuartetLong Island Youth Orchestra + +4045894Leonardo Loredo de SáBrazilian luthist, baroque guitart & theorbist and Director +CorrectLeonardo LoredoLa Simphonie Du Marais + +4046244Albert CayzerBritish viola player (1914 to 1998).Needs VoteRoyal Philharmonic OrchestraPhilharmonia Orchestra + +4046445Patrick GarveyClassical hornistNeeds VotePhilip Jones Brass EnsembleThe Academy Of Ancient MusicL'Estro Armonico + +4046607Marc GrueClassical double bassistCorrectGöteborgs Symfoniker + +4046763Norbert NielubowskiAmerican bassoonist and contrabassoonist.Needs VoteNorbert J. NielubowskiMinnesota OrchestraHollywood Bowl OrchestraThe Contemporary Chamber Players Of The University Of ChicagoWilliam Schrickel's Heavy Rescue + +4048525Alexander Martin (5)English chorus master, pianist and organist. +He studied music at St John’s College, Cambridge, where he was organ scholar in the late 1980s, and the piano at Royal College of Music, London. He then worked as repetiteur at Opéra National de Lyon, Hamburg State Opera and at the Hesse State Opera in Wiesbaden. He was chorus master at the Opéra National de Bordeaux from 2010 to 2014 before being appointed at the same place for the Welsh National Opera.Needs VoteWelsh National Opera ChorusChœur De L'Opéra National De Bordeaux + +4048862Ray Bowling (2)Credited as trumpet player.Needs VoteJelly Roll Morton's Incomparables + +4050153Martin HodelMartin Peter Hodel[b]Martin "Marty" Hodel[/b] (b. January 1964, Harlan, Kentucky) is an American trumpeter, flügelhorn player, and music pedagogue based in Northfield, Minnesota. He has served as Professor of Music at [l=St. Olaf College] since September 1997. Hodel studied with [a=Charles Geyer], [a=Barbara Butler], [a=Allen Vizzutti], [a=Raymond Mase], [a=David Hickman], and [a=Anthony Plog], among others; Martin graduated from the [l=Goshen College] in 1986 with his Bachelor's in Music Education, followed by a Master's of Music from [l=University Of North Carolina At Chapel Hill] and a Doctorate in Trumpet Performance from the [l=Eastman School Of Music]. + +Hodel is a principal and solo trumpet with the [a=Eastman Wind Ensemble], performed full-time with the [a=Minnesota Orchestra] (2005–06 season), and toured nationwide and abroad with various other notable ensembles, including the [a=Dallas Brass] and [url=https://discogs.com/artist/841440]St. Paul Chamber Orchestra[/url]. In 1997, Marty toured across Germany with organist and harpsichordist [a=Bradley Lehman] as [b][a=The Hodel-Lehman Duo][/b]; their debut album, [i][r=10691717][/i] CD, came out in January 2005 on Lehman's [url=https://discogs.com/label/1306455]LaripS.com[/url] private imprint. Hodel also recorded on several CD albums by [a=The St. Olaf Choir] and [a=St. Olaf Orchestra], and performed live on [a=Garrison Keillor]'s radio show, [i]A Prairie Home Companion[/i], and the [l=Minnesota Public Radio] nationally-broadcast program [i][url=https://discogs.com/label/1283924]PipeDreams[/url][/i], among others. Marty shared the stage with prominent jazz artists, such as [a=Joe Henderson], [a=Maria Schneider], [a=Slide Hampton], [a=Claudio Roditi], and [a=Jimmy Heath]. + +According to [url=https://discogs.com/label/1719243]The Minnesota Star Tribune[/url]'s October 2019 article, "[i]School officials walk fine line as they let disciplined professors return to classroom[/i]," Martin Hodel was suspended without pay and barred from St. Olaf campus for a year in 2018, following an investigation of his alleged use of sexualized language and inappropriate behavior toward a student. Hodel was subsequently reinstated, with restrictions on travel with student performers; Star Tribune reported that after their inquiry, Prof. Martin Hodel disclosed the investigation to his students and colleagues. He spent the "sabbatical" studying early Baroque valveless trumpet and 18th-century European trumpet literature with [a=Edward H. Tarr] (1936—2020).Needs Votehttps://stolaf.edu/profile/hodel/https://linkedin.com/in/martin-hodel-01543827/https://facebook.com/marty.hodel/The Saint Paul Chamber OrchestraMinnesota OrchestraEastman Wind EnsembleDallas BrassThe Hodel-Lehman Duo + +4051640Hitch's Happy HarmonistsNeeds VoteThe Happy HarmonistsCross Town RamblersHoagy CarmichaelCurtis HitchArnold HabbeDewey NealRookie NealJerry BumpMaurice MayHaskell SimpsonEarl McDowellHarry Wright (5)Fred Rollison + +4051653Thomas RugeGerman cellist, born in 1963 in Bremen, Germany.Needs VoteBerliner PhilharmonikerMünchner PhilharmonikerOrchester Der Deutschen Oper Berlinhr-SinfonieorchesterEstonian Festival Orchestra + +4051654Emilie JaulmesFrench / German harpistCorrecthttp://www.emiliejaulmes.de/index.htmlStuttgarter Philharmoniker + +4052695Annelies BrantsBelgian classical soprano vocalistNeeds Votehttp://anneliesbrants.synthasite.comAnnelies BrandsCollegium VocaleEx Tempore + +4052836Leo Phillips (2)Leo PhillipsBritish classical violinist and leader (* London, United Kingdom).Needs Votehttp://www.leophillips.com/index.htmhttps://www.lmfl.org.uk/teacher/leo-phillips-violin/The Chamber Orchestra Of EuropeThe Nash EnsembleHeidelberger Barockensemble + +4052837Kim Bak DinitzenDanish cellist, born in 1963.Needs VoteKim DinitzenThe Chamber Orchestra Of EuropeDet Kongelige Kapel + +4052839Vesna StankovicVesna Stankovic-MoffattClassical violinist and concertmaster of the [a833376].Needs VoteВесняна СтанковичWiener VolksopernorchesterThe Chamber Orchestra Of Europe + +4052841Hanno De KogelClassical violinistNeeds VoteThe Chamber Orchestra Of Europe + +4053252Jane CawardineClassical violinist.Needs Votehttps://www.janecarwardinealexandertechnique.com/The Academy Of Ancient Music + +4053254Pamela CresswellClassical viola player (b. 1964 in Sutton Coldfield near Birmingham).Needs VotePam CresswellPamela CreswellOrchestre Révolutionnaire Et RomantiqueThe English Baroque SoloistsLondon BaroqueThe Academy Of Ancient MusicThe English Fantasy Consort of Viols + +4053599Antonio SciancaleporeItalian contrabass player.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaI Solisti Di PaviaL'Arte Della FugaArchi Di Santa Cecilia + +4053838Rosemary HattrellSoprano vocalist.Needs VoteThe Sixteen + +4056246James Kent (4)James Justin KentTrombonistNeeds Votehttps://www.jamesjustinkent.com/Sveriges Radios Symfoniorkester + +4056342Kinga UjszásziHungarian classical violinistNeeds Votehttp://repicco.com/kinga/Kinga UjszasziOrchestra Of The Age Of EnlightenmentDunedin ConsortThe Wallfisch BandIrish Baroque OrchestraThe English ConcertThe Illyria ConsortNew Century BaroqueSpiritato!Repicco + +4057196Rudolf KönigGerman clarinetist, born 1958 in Sokolov, Czechoslovakia.Needs VoteRadio-Sinfonieorchester StuttgartStuttgart WindsSWR Symphonieorchester + +4057197Anne AngererGerman oboist.Needs VoteBerliner SymphonikerRadio-Sinfonieorchester StuttgartGustav Mahler JugendorchesterStuttgart WindsOrsolino QuintettSWR Symphonieorchester + +4057199Eduardo Calzada Eduardo Calzada (born 1978) is a Venezuelan bassoonist. Now based in Germany.Needs VoteRadio-Sinfonieorchester StuttgartMahler Chamber OrchestraGustav Mahler JugendorchesterStuttgart WindsSWR Symphonieorchester + +4057200Ryutaro HeiJapanese double bassist.Needs VoteRadio-Sinfonieorchester StuttgartStuttgart WindsSWR Symphonieorchester + +4057202Hanno DönnewegGerman bassoonist, born in 1977 +Needs VoteRadio-Sinfonieorchester StuttgartOrchestre Mondial Des Jeunesses MusicalesBundesjugendorchesterStuttgart WindsSWR Symphonieorchester + +4057203Thomas FlenderGerman horn player.Needs VoteRadio-Sinfonieorchester StuttgartOrchester Des Nationaltheaters MannheimRheinische PhilharmonieStuttgart WindsSWR Symphonieorchester + +4058035Phyllis Brown (3)Phyllis BoltzPhillis Boltz was born in Kitchener, Ontario. After she graduated from high school she started singing in a band called Landslide Mushroom. By the late 60s she was a lead vocalist in another Kitchener band called Rain, who she remained with into the early 70s. From the outset her stage name with Rain was Phyllis Brown. Among the singles they released was a “Out Of My Mind” in 1971. It became a Top 30 hit in a number of radio markets between the spring of 1971 and the winter of 1972. +In 1973 Brown left Rain. She was able to land a contract later that year with A&M Records. Though she still was called Phyllis Brown, she shortly changed her stage name again. Given her Motown-sound-alike vocals she bet that Charity Brown would be a name that was distinctive enough to help radio listeners remember her songs on the radio. Her debut single in 1974 was a cover version of the 1967 Martha & The Vandellas hit “Jimmy Mack”. Building on her modest success she next released a cover of the 1962 hit for Mary Wells, “You Beat Me To The Punch”. That year when Dionne Warwick first heard Charity Brown sing she said, “That lady has a big voice!”Needs Votehttps://citizenfreak.com/artists/92133-brown-charityBrownP. BrownCharity BrownPhyllis Boltz + +4060313Filarmonica Del Teatro Comunale Di BolognaBorn in 2008 by willing of the professors of the [a=Orchestra Del Teatro Comunale Di Bologna], the Filarmonica has its roots in the Orchestra of the Theatre itself.Needs Votehttp://www.filarmonicabologna.itFTCBFilarmonica Di BolognaI Filarmonici Del Teatro Comunale Di BolognaI Filarmonici del Teatro comunale di Bologna + +4060584Thom BakerClassical tenor vocalistNeeds VotePomeriumVoices Of Ascension + +4062154Matthew JeffersClassical treble vocalistNeeds VoteThe Choir Of Westminster Abbey + +4062156Thomas SneddonClassical treble vocalistNeeds VoteThe Choir Of Westminster Abbey + +4064829Josef WiendlClassical trumpeterNeeds VoteSymphonie-Orchester Des Bayerischen Rundfunks + +4065361Vladimir BrunnerClassical FlutistNeeds VoteSlovak Chamber Orchestra + +4065362Josef KopelmannClassical violinistNeeds VoteJosef KopelmanKopelmannSlovak Chamber Orchestra + +4065659Barbara BernhardAmerican flute player, born in 1946.Needs VoteSan Francisco Symphony + +4066122Stanley HoffmanStanley Herbert HoffmanClassical violinist and violist (born 8 December 1929 in Baltimore, Maryland). He played with the National Symphony of Washington DC from 1953 to 1954, Kansas City Philharmonic from 1955 to 1956, Brooklyn Philharmonic from 1957 to 1961, Radio City Music Hall Orchestra from 1959 to 1960, and The Metropolitan Opera Orchestra from 1959 to 1960. He was a member of the New York Philharmonic beginning in the 1960s.Needs Votehttps://archives.nyphil.org/index.php/artifact/249dfe6b-a2d9-48e3-b0b5-45bba9713b2f-0.1/fullview#page/1/mode/2upStanley M. HoffmanThe Brooklyn Philharmonic OrchestraNew York PhilharmonicNational Symphony OrchestraThe Metropolitan Opera House OrchestraRadio City Music Hall OrchestraKansas City Philharmonic + +4066864Markus Hauser (3)Austrian horn player, born 29 November 1972 in Salzburg, Austria.Needs Votehttp://vecchiolegno.de/en/musicians/Das Mozarteum Orchester Salzburg + +4067054Felix EckertFelix Eckert (born 1991) is a German trombonist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksPhilharmonisches Staatsorchester HamburgBundesjugendorchesterSalaputia Brass + +4069341Annemarie OrtnerAnnemarie Ortner-KläringAnnemarie Ortner-Kläring (22 December 1950 — 7 October 2022) was an Austrian classical violinist. She was a member of the [a867695] from 1972 to 2010. She was married to [a838408].Needs VoteAnnemarie Ortner-KläringAnnemarie KläringConcentus Musicus WienORF SymphonieorchesterRSO WienORF Radio-Symphonieorchester WienKläring-Quartett + +4070496Carlton McBeathAmerican trumpet playerCorrectCarleton McBeathCarlton MacBethCharlie Barnet And His OrchestraDan Terry And His Orchestra + +4070599Jack Holmes (5)Jazz trumpet playerCorrectBob Crosby And His Orchestra + +4071045Mario TorrijoMario Torrijo NavarroSpanish classical tubist.Needs VoteOrquesta Sinfónica de RTVEThe Sir Alligator's Company + +4071052Miguel Moreno (3)Miguel Moreno GunaMiguel Moreno Guna is a Spanish tuba player.Needs VoteOrquesta Nacional De EspañaJoven Orquesta Nacional de EspañaOrquesta Sinfónica de RTVEThe Sir Alligator's CompanyBanda Primitiva De LiriaOrquesta de ValenciaGrupo Español de Metales + +4072171Gardell SimonsAmerican trombonist and composer, born 16 August 1878 and died 22 March 1945 in Miami, Florida.Needs Votehttps://adp.library.ucsb.edu/names/107028SimonsThe Philadelphia OrchestraNBC Symphony Orchestra + +4072781Buddy Rich EnsembleNeeds Major ChangesFrank WessBuddy RichRay BrownOscar PetersonBen WebsterThad JonesFreddie GreenJoe Newman + +4073402Anne SorenDanish viola-player.Needs VoteKøbenhavns Yngre StrygereAnne Mette Iversen's Double LifeDR SymfoniOrkestret + +4073674Anja IgnatiusAnja Ignatius-HirvensaloViolinist. Born July 2nd 1911, in Tampere, Finland and died on April 10, 1995 in Helsinki, Finland.Needs Votehttps://fi.wikipedia.org/wiki/Anja_IgnatiusA. Ignatius + +4074815Mayumi Taniguchi谷口真弓 (Mayumi Taniguchi)Japanese viola player. +Born in Saitama, Japan in Jul 16, 1972. + +Berliner Philharmoniker from 2007 (Only one year) +NHK Symphony Orchestra from May 1, 2000Correct谷口真弓Berliner PhilharmonikerNHK Symphony OrchestraHitoshi Konno Strings + +4074991Ludwig DobronyClassical violinistNeeds VoteOrchester Der Wiener Staatsoper + +4074992Gerhardt ZatchekClassical cellistNeeds VoteOrchester Der Wiener Staatsoper + +4075216Betty BeveridgeNeeds VoteThe Mel-Tones + +4075622Marie-Laurence CamilleriClassical violinistNeeds VoteOrchestre Philharmonique De Radio France + +4075654Clayton DuerrNeeds VoteClayton "Sunshine" DuerrMezz Mezzrow And His Orchestra + +4075937Bob Baldwin (3)Bassist.Needs VoteTommy Dorsey And His Orchestra + +4075989Henry Morrison (2)Credited as drummers.Needs VoteBenny Carter And His Orchestra + +4076223Billy Marshall (2)Jazz trumpeterCorrectThe Dorsey Brothers Orchestra + +4076278Sid Harris (3)TrombonistCorrectHarrisS. HarrisSyd HarrisTommy Dorsey And His Orchestra + +4076710Jimmy GloverBass player from the days of yore (1940s to 1960s).Needs VoteJimmie GloverCootie Williams And His Orchestra + +4076711Everest GainesBig band jazz/swing Tenor Saxophone player during the 1940s.Needs VoteEverett GainesCootie Williams And His Orchestra + +4076712Otis GambleCredited as trumpeter.Needs VoteCootie Williams And His Orchestra + +4076713Chuck Clarke (3)Credited as saxophonist.Needs VoteCharles "Chuck" ClarkeCharlie ClarkeCootie Williams And His Orchestra + +4076714Dick GrayJazz vocalist.Needs VoteBenny Carter And His Orchestra + +4076715Fred TrainerTrumpet playerNeeds VoteBenny Carter And His Orchestra + +4076716Daniel Williams (9)Credited as jazz saxophonist.Needs VoteCootie Williams And His Orchestra + +4076717Edwin DavisTrumpet player.Needs VoteBenny Carter And His Orchestra + +4079315Stan StecklerAlto SaxophoneCorrectCharlie Barnet And His Orchestra + +4079316John ColtraineTrombonistCorrectColtraineCharlie Barnet And His Orchestra + +4079317Al Del SimoneTrumpet PlayerCorrectCharlie Barnet And His Orchestra + +4079655Giovanni Alberto RistoriGiovanni Alberto Ristori1692 - 7 February 1753. Italian opera composer and conductor.Needs Votehttp://en.wikipedia.org/wiki/Giovanni_Alberto_Ristorihttp://www.classical.net/music/comp.lst/acc/ristori.phpG. A. RistoriG. RistoriG.A. RistoriRistoriStaatskapelle Dresden + +4080190Count Basie And His SeptetNeeds Major ChangesCount Basie & His SeptetCount Basie Septet + +4080556DYOTNeeds Major Changes + +4080558Trap TwoBen Carr & David jacksonNeeds Votehttps://soundcloud.com/trap-twohttps://www.facebook.com/TrapTwoOfficialBen Carr (4)David Jackson (18) + +4082094Tobee TylerNeeds Major Changes + +4082560Bill Stegmeyer And His Hot EightNeeds Major ChangesBill Stegmeyer & His Hot EightBill Stegmeyer OctetBill Stegmeyer + +4083340Helmut Berger (4)Classical Trombone & Sackbut playerNeeds VoteH. BergerConcentus Musicus WienCapella Antiqua MünchenBläserensemble Des Münchner Motettenchors + +4084151Gerwin BaaschGerwin Baasch (3 March 1934 - 30 January 2020) was a German classical bassoonist.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +4084496Alexander PeterGerman percussionist and timpanist, born 1964 in Augsburg, Germany.Needs VoteDresdner PhilharmonieEnsemble »Alte Musik Dresden«Semper Brass DresdenPhilharmonisches Orchester Augsburg + +4085314Richard WearsNeeds Major Changes + +4086035Heinz PupkeGerman bassoonistNeeds VoteGewandhausorchester Leipzig + +4086036Karl JacobGerman (Solo-) trombonistNeeds VoteGewandhausorchester Leipzig + +4086037Karl SemschClassical trombonistNeeds VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +4086038Werner PilzGerman horn player (1926 — 2003), from 1946 - 1987 member of the Leipzig Gewandhaus OrchestraNeeds VoteGewandhausorchester LeipzigGewandhaus-Hornquartett + +4086039Rolf BachmannClassical trombonistNeeds VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +4086456Quedillas MartinNeeds VoteLes Hite And His Orchestra + +4087720Norman Knight (2)British Classical Flute Player. +Flute teacher of Royal Academy of MusicNeeds VoteEnglish Chamber Orchestra + +4087906Clemens RögerGerman horn player. Born 1966, Principal Horn of the Gewandhausorchester Leipzig since 1990.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigGewandhaus-HornquartettArmonia Ensemble + +4089735Éric De FontenayFrench Classical Countertenor & Alto Vocalist and TeacherNeeds Votehttps://www.ericdefontenay-chant.com/Eric de FontenayLe Concert SpirituelArsys Bourgogne + +4090014Allan YeagerJazz trumpeterCorrectAl YagerAl YeagerAllen YeagerHarry James And His Orchestra + +4090016Richard Winter (3)Trombone player.CorrectRichard A. WinterHarry James And His Orchestra + +4090285Rudolf Joachim KoeckertGerman violinist and founder of the [a4090286]. He's the son of [a883962].CorrectJoachim KoeckertR. Joachim KoeckertRudolf KoeckertRudolf Koeckert Jun.Rudolf Koeckert JuniorRudolf Koeckert junSymphonie-Orchester Des Bayerischen RundfunksJoachim-Koeckert-Quartett + +4090583Stephanie VialClassical cellistNeeds VoteLes Violons du RoyThe Vivaldi ProjectMallarmé Chamber Players + +4090584Julie-Anne Ferland-DorletClassical hornistNeeds VoteLes Violons du Roy + +4090585Lawrence ChargeClassical oboistNeeds VoteLes Violons du Roy + +4090586Pierre BéginClassical violinistNeeds VoteLes Violons du RoyOrchestre Symphonique De Québec + +4090787Elmar SpierGerman trombonist, born in 1974 in Traben-Trarbach, Germany.CorrectMünchner RundfunkorchesterBundesjugendorchesterEnsemble Ambrassador + +4091358Louis GesenswayAmerican violinist and composer, born 19 February 1906 in Dvinsk, Latvia and died 13 March 1976 in Philadelphia, Pennsylvania.Needs Votehttps://www.thepianonetwork.com/LouisGesensway.htmlThe Philadelphia Orchestra + +4091741Bianca MarinRomanian violist and violinist, born in Constanța, Romania.Needs VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +4092659Damo CassettiNeeds Votehttps://soundcloud.com/damocassetti + +4093175Gilat RotkopClassical bassoonist born in IsraelNeeds VoteIl Giardino ArmonicoCapriccio Barock OrchesterOrchester Der J.S. Bach Stiftung + +4093262Matthew PeeblesMatthew Peebles is an American violinist. +Needs VoteMünchner Rundfunkorchester + +4093658Robert BuschekRobert Buschek (born 2 July 1973 in Linz, Austria) is an Austrian bassoonist.Needs VoteWiener PhilharmonikerBruckner Orchestra Linz + +4094536Joe HambrickTrombone PlayerCorrectHarry James And His OrchestraDon Lamond & The Big Swing Band + +4095782Ian Page (7)English conductor. A former chorister at Westminster Abbey, he is the founder, conductor and artistic director of [a=Classical Opera] and [a=The Mozartists]Needs Votehttp://www.classicalopera.co.uk/about/our-performers/ian-page/http://www.rcm.ac.uk/about/stafflisting/profile/?id=JK435The Choir Of Westminster AbbeyClassical OperaThe Mozartists + +4096463Bill Harris All StarsNeeds Major ChangesBill Harris + +4096877Walter MonyWalter Alexander MonyCanadian classical violinist & violist, conductor, and educator. Born 14 April 1929 in Winnipeg, Canada - Died 1 January 2009. +He studied at the [l290263]. Former Assistant Principal Violin in the [a=London Symphony Orchestra] (1948-1955) and a member of the [a=Royal Philharmonic Orchestra]. He was the violin/viola member of the [b]Nederburg Harp Trio[/b] and the founder-conductor of the [b]SABC Youth Training Orchestra[/b].Needs Votehttp://waltermony.com/https://robertrollincomposer.wordpress.com/2011/10/07/walter-mony-1929-2009-2/London Symphony OrchestraRoyal Philharmonic Orchestra + +4097538Péter KonrádClassical timpani and percussion artist.Needs VoteKonrád PéterLiszt Ferenc Chamber Orchestra + +4097539Zaltán SzucuClassical trumpeterCorrectLiszt Ferenc Chamber Orchestra + +4097540Tibor Kiraly (2)Classical tumpeterNeeds VoteKirály TiborThe Budapest Philharmonic OrchestraHungarian State Opera OrchestraLiszt Ferenc Chamber Orchestra + +4097541Zoltán Molnár (2)Classical trumpeterNeeds VoteMolnár ZoltánZoltan MolnárLiszt Ferenc Chamber OrchestraHungarian National Philharmonic Orchestra + +4098009Christian NașClassical violist.Needs VoteChristian NasRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +4098189Joseph AndréJoseph AndréFrench violinist.Needs Votehttp://www.facebook.com/joseph.andre2Orchestre De ParisOrchestre Tous En Cœur + +4098782Nuno CarapinaPortuguese classical violinist, born 1981 in Aveiro, Portugal. +He studied at the Academia Nacional Superior de Orquestra in Lisbon and then at the [l527847]. After graduating with Distinction, he went on to win two positions in Portuguese orchestras before moving back to the UK, where he was a member of [a=Southbank Sinfonia]'s 2013 programme. Nuno went on to enjoy a successful freelancing career, performing with many of the UK's top orchestras before joining the first violin section at the [a=Royal Liverpool Philharmonic Orchestra] in 2015. He spent one year in Liverpool before he moved back to London to become a member of the [a=Philharmonia Orchestra] as 2nd Violin. Nuno is a member of the [b]Pythagoras Ensemble[/b], the [b]Young Virtuosi[/b] and a founding member of the [b]Carapina Trio[/b].Needs Votehttps://www.facebook.com/nuno.carapinahttps://twitter.com/nunocarapina?lang=enhttps://www.instagram.com/nunocarapina/?hl=enhttps://www.youtube.com/channel/UC_9rrBprRxvfEgqmxsn_vMQhttps://philharmonia.co.uk/bio/nuno-carapina/https://www.southbanksinfonia.co.uk/musicians-profile/10575/nuno-carapina/https://www.youngvirtuosi.com/legacy/2014-meet-the-artists.phphttps://vgmdb.net/artist/23292Philharmonia OrchestraRoyal Liverpool Philharmonic OrchestraSouthbank Sinfonia + +4100850Peter Gordon (8)American French horn player, born 1945 in New York, New YorkNeeds Votehttps://www.linkedin.com/in/peter-gordon-b5439a43/https://www.hornprofiles.com/profile-peter-gordonGordon Peter JonP. GordonPete GordonPeter G.Peter J. GordonPeter Jon GordonGil Evans And His OrchestraThe George Gruntz Concert Jazz BandBoston Symphony OrchestraJaco Pastorius Big BandPond Life (2)The Pond Life OrchestraFrench Toast (3)Michael Brecker QuindectetNew York Neophonic OrchestraPhilharmonia VirtuosiPer Husby OrchestraThad Jones & Mel Lewis + +4101093Bobby Donaldson (3)Alto saxophonistCorrectEarl Hines And His Orchestra + +4101198Dave LaroccaAmerican jazz bassist.Needs VoteDave LaRoccaWoody Herman And His OrchestraWoody Herman & The Young Thundering Herd + +4101199Tim Burke (4)Trumpet player and flugelhornistNeeds VoteTimothy BurkeWoody Herman And His OrchestraWoody Herman & The Young Thundering HerdWoody Herman And The Thundering Herd + +4101200Kitt ReidAmerican jazz trumpeter.Needs VoteWoody Herman And His OrchestraWoody Herman & The Young Thundering Herd + +4102229Elizabeth Walker (4)Classical flautistNeeds VoteNew London ConsortClassical Opera + +4102441Dick Forrest (2)American trumpet playerNeeds VoteGerald Wilson OrchestraClaude Gordon And His Orchestra + +4102888Emily Francis (3)Violinist.Needs VoteBBC Symphony Orchestra + +4102939Michele LotItalian violinist. Professor of Violin at Conservatorio Agostino Steffani in Castelfranco Veneto (Treviso).Needs VoteVenice Baroque Orchestra + +4102940Danielle RuzzaClassical violinistCorrectVenice Baroque Orchestra + +4102942Michele StraticoGiuseppe Michele StraticoVenetian composer and violinist, born 31 July 1728, died 31 January 1783.Needs Votehttps://en.wikipedia.org/wiki/Michele_StraticoStratico + +4104026Sylvie BrennerClassical violinistNeeds VoteOrchestre Philharmonique De Strasbourg + +4104030Philippe LindeckerClassical violinistNeeds VoteOrchestre Philharmonique De StrasbourgEnsemble Consonance (2) + +4104715Collegium InstrumentaleClassical ensemble located in Cologne (Köln), GermanyNeeds VoteCollegium Instrumentale Köln + +4105747Fritz HillerAustrian cellist.CorrectWiener Symphoniker + +4107490Anna BabenkoClassical violinist, based in Germany, Berlin.Needs VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +4107491Alf MoserGerman bassist, born in 1966 in Berlin, GDR.Needs VoteBerliner Sinfonie OrchesterStaatskapelle BerlinSalonorchester Unter'n Linden + +4107493Sandra TancibudekClassical violinistCorrectSandra Heinz-TancibudekWDR Sinfonieorchester KölnStaatskapelle Berlin + +4107494André WitzmannGerman violinistCorrectStaatskapelle Berlin + +4107497Peter PühnGerman classical bassist, born in 1955 in Bremen, Germany.Needs VotePeter KühnDeutsches Symphonie-Orchester BerlinThe Chamber Orchestra Of EuropeBundesjugendorchester + +4107499Holger HoldgrünGerman clarinetistNeeds VoteBerliner Symphoniker + +4107501Michael Engel (3)German classical violinistNeeds VoteStaatskapelle BerlinOrchester der Bayreuther Festspiele + +4107504Rüdiger ThalGerman violinist, born in 1980.CorrectRudiger ThalStaatskapelle BerlinElissa Lee Ensemble + +4107505Susanne SchergautGerman violinist, born in 1960 in Berlin, GDR.CorrectStaatskapelle Berlin + +4107506Clemens KönigstedtGerman bassoonist, born in 1971 in Frankfurt/Oder, GDR.CorrectRundfunk-Sinfonieorchester Berlin + +4107508Ulf-Dieter SchaaffGerman flutistNeeds VoteRundfunk-Sinfonieorchester BerlinDie 14 Berliner Flötisten + +4107669Parker & AachtNeeds Major Changes + +4108422Jean-Christophe MentzerTrumpeterNeeds VoteJean Christophe MentzerOrchestre Philharmonique De StrasbourgVSP OrkestraVibraphone Spécial Project + +4108548Meri DrobacClassical violin / viola playerNeeds VoteVenice Baroque Orchestra + +4108549Marco di GiacomoItalian violin / viola playerNeeds Votehttp://www.ilmozarteum.it/docente-4Marco Di GiacomoI BarocchistiVenice Baroque OrchestraCamerata Strumentale dell'Università di Salerno + +4108551Massimiliano RaschiettiItalian harpsichordist & organistNeeds VoteVenice Baroque OrchestraL'AmorosoIl Terzo Suono + +4108552Terri RatcliffTeresa RatcliffClassical violinistNeeds VoteTeresa RatcliffTerry RatcliffVenice Baroque Orchestra + +4109901Ernie Hood (2)Needs VoteCharlie Barnet And His OrchestraThe Tom Talbert Jazz Orchestra + +4110935Andrzej SienkiewiczBorn in Wrocław. Polish classical trombonist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4111098Siobhan GrealySiobhán GrealyBritish retired classical flutist, and Professor of Piccolo & Flute. +She began her studies at the [l290263] and went on to postgraduate studies at the [l527847]. She freelanced before eventually accepting a position with the [a=London Symphony Orchestra] as their Second Flute in 2009. She left the LSO in 2013 and moved to Scotland. Professor of Piccolo & Flute at the [l1379071].Needs Votehttps://www.facebook.com/siobhan.grealy.flute.LSO.teaching.performing/https://twitter.com/shivlsohttps://www.linkedin.com/in/siobhan-grealy-940409122/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/grealy-siobhan/https://www.trinitylaban.ac.uk/study/teaching-staff/siobhan-grealy/https://www.imdb.com/name/nm3909417/https://www2.bfi.org.uk/films-tv-people/4ce2be2f8c922London Symphony OrchestraEnglish Sinfonia + +4111711Mike LeaverViola player.Needs VoteMichael LeaverBBC Symphony Orchestra + +4111712Hania GmitrukClassical violinist.Needs VoteBBC Symphony Orchestra + +4111820Dieter ReinhardtGerman classical hornistNeeds VoteDieter ReinhardRundfunk-Sinfonie-Orchester LeipzigHornquartett Des Rundfunk-Sinfonie-Orchester Leipzig + +4112150Nadine ContiniGerman violinist, born in 1979 in Saarbrücken, Germany.CorrectRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther Festspiele + +4112398Mário KošíkMário KošíkConductor. Needs VoteMario KosikSlovak Radio Symphony Orchestra + +4114000Gerd GrötzschelGerman violist.CorrectOrchester der Bayreuther FestspieleDresdner PhilharmonieOrchester Der Deutschen Oper Am Rheinhr-Sinfonieorchester + +4114095Georg BöhnerGeorg Böhner (1903 - 1993) was a German horn player. He was a member of the [a522210] from 1929 to 1971.Needs VoteGewandhausorchester LeipzigGewandhaus-Hornquartett + +4114371Johannes FriemelGerman horn player.CorrectStaatskapelle Dresden + +4114372Dieter PansaGerman horn player.CorrectStaatskapelle Dresden + +4114373Klaus PietzonkaGerman horn player.CorrectStaatskapelle Dresden + +4114463Wolfgang HolzhäuserGerman oboist.CorrectStaatskapelle Dresden + +4115171Phil GirlingOrchestral percussionist.Needs VoteThe Welsh National Opera OrchestraBBC National Orchestra Of Wales + +4115172Sacha JohnsonBritish percussionist and teacher.Needs VoteThe Chamber Orchestra Of Europe + +4116493Noah ChavesAmerican violistNeeds VoteBaltimore Symphony OrchestraNew York All-State High School Orchestra + +4116632Yukino ThompsonOboist, born 1985 in Okinawa, Japan.CorrectBayerisches Staatsorchester + +4117227Henry MerckelHenri Jean Paul Marie MerckelFrench violinist. +Brother of [a4714154]. + +Born in Paris, December 22, 1897 +Died in Boulogne-Billancourt, December 10, 1969Needs Votehttp://data.bnf.fr/en/atelier/14015344/henri_merckel/https://adp.library.ucsb.edu/names/360235https://fr.wikipedia.org/wiki/Henri_MerckelH. MerckelHenri MerckelHenri MerkelHenryk MerckelM. H. MerckelM. Henry MerckelM. MerckelMerckelOrchestre National De L'Opéra De ParisOrchestre Pro Arte De MunichPro Musica Chamber Group + +4117565Nabil ShehataClassical double bassist and conductor, born 1980 in Kuwait.Correcthttp://nabilshehata.com/ShehataBerliner PhilharmonikerStaatskapelle BerlinOrchester Der Kammeroper MünchenBundesjugendorchesterBerliner Philharmonisches Streichquintett + +4117567Thomas TimmGerman classical violinistNeeds VoteBerliner PhilharmonikerBerliner Philharmonisches Streichquintett + +4119048Alistair MackieBritish (originally from Ayrshire) trumpet player, born in 1967. +In [a=Philharmonia Orchestra] since 1996 (from 2005-2011 he also served as Chairman of the orchestra). Principal Trumpet with the [a=London Sinfonietta] since 2009. He taught at the [l977818] for 15 years and since 2007 has been a professor at the [l290263]. Chief Executive at the [a627128] since April 2019.Correcthttps://www.rcm.ac.uk/brass/professors/details/?id=02753https://web.archive.org/web/20190702030742/https://www.rsno.org.uk/alistair-mackie-appointed-rsno-chief-executive/Alastair Mackieアラステア・マッキーLondon SinfoniettaPhilharmonia Orchestra + +4119596Tilo WidenmeyerGerman violist, born 1966 in Heilbronn, Germany.CorrectBayerisches Staatsorchester + +4120268Gil BreinesGilbert BreinesAmerican percussionist, born 1934 in New York, New York.Needs VoteChicago Symphony OrchestraNational Symphony OrchestraDavid Carroll & His Orchestra + +4120677Raymond GlatardClassical violist.Needs VoteOrchestre National De FranceOrchestre De Chambre Jean-François Paillard + +4120717Ulrich BodeGerman classical cellist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMozart KlavierquartettMünchner NonettWerner-Egk-Quartett + +4123244Caroline Radcliffe (2)Dr. Caroline Radcliffe is a classical oboistCorrecthttp://www.birmingham.ac.uk/staff/profiles/drama/radcliffe-caroline.aspxGabrieli Consort + +4125914Higinio ArruéSpanish bassoonist.Needs VoteHiginio Arrue ForteaEuropean Union Youth OrchestraMünchener KammerorchesterDeutsche Kammerphilharmonie BremenOrquesta De Cadaqués + +4127145Elmar EisnerAustrian horn player, born 1956 in Vienna, Austria.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +4127400Michael ZühlGerman trombonist, born 1983 in Suhl.Needs Votehttp://www.drp-orchester.de/pages/orchester/musiker/michael-zFChl.phpGürzenich-Orchester Kölner PhilharmonikerBadische StaatskapelleJenaer PhilharmonieOrchester Der Komischen Oper BerlinDeutsche Radio Philharmonie Saarbrücken KaiserslauternTrombone Unit Hannover + +4128389Albert CassidyAlbert L. "Jim" Casseday(b. Feb. 23, 1892; d. Mar. 10, 1970, Astoria, Queens, NY), trombonist. Played with Ernie Golden, Arnold Johnson and Vincent Lopez before joining Paul Whiteman in September 1923. Left Whiteman in May 1924 and returned to the Lopez band.Needs VotePaul Whiteman And His OrchestraVincent Lopez And His OrchestraErnie Golden And His OrchestraArnold Johnson And His Orchestra + +4128390Eddie Gale (2)Vocalist active in late 1920s & early 1930sNeeds VoteJack Teagarden And His Orchestra + +4129106Teresa KrahnertGerman classical violinist, born 1986 in Weimar.Needs VoteDR SymfoniOrkestret + +4129107Florian Richter (4)German violist, born in 1985.Needs VoteStaatsorchester StuttgartStaatskapelle DresdenStaatskapelle Weimar + +4129109Juliane BöckingGerman violist.CorrectStaatskapelle Dresden + +4129973Melvin HerbertEarly jazz trumpeter, from Richmond, Virginia. +Played with Johnson's Happy Pals at the Savoy in 1931, the Hardy Brothers Orchestra about the same time, and with [a=Andy Kirk] in the 1940s.Needs VoteRoss De Luxe SyncopatersCliff Jackson & His Crazy KatsDave Nelson And The King's MenDave's Harlem Highlights + +4130779Benjamin LiChinese violinist, born in 1959, based in Australia.Needs VoteBen LiSydney Symphony Orchestra + +4131939Kurt SchäfferKurt Schäffer (26 May 1913 - 28 August 1988) was a German violinist and former Konzertmeister of the [a866649]. + +Not to be confused with Austrian folk and jazz musician, multi-instrumentalist and composer [a358068].Needs VoteGürzenich-Orchester Kölner PhilharmonikerSchäffer-QuartettQuatuor Schäffer + +4132027Abdul Hamid (2)American jazz trombone player. Needs VoteAbdul HameedLionel Hampton And His Orchestra + +4133234Floyd Johnson (3)American Jazz saxophone player (tenor, baritone). Born May 1, 1922 in Madison, Illinois, died June 28, 1981 in Famingham, Massachusetts. +Started on drums, then sax Needs VoteFloyd "Candy" JohnsonFloyd 'Candy' JohnsonFloyd Harry JohnsonCandy JohnsonCount Basie OrchestraCandy Johnson & His Peppermint Sticks + +4133319Willem GrootClassical trumpeterNeeds VoteNetherlands Chamber OrchestraConcerto Amsterdam + +4133596Franco CampioniItalian drummer and percussionist.Needs VoteCampion FrancoI Solisti VenetiOrchestra dell'Accademia Nazionale di Santa CeciliaMario Pezzotta E I Suoi Solisti + +4134063Martin GrieblAustrian classical trumpeter, born in 1987 in Vorderweißenbach.Needs Votehttps://www.probrass.at/ueber-uns/Münchner RundfunkorchesterWDR Sinfonieorchester KölnArs Antiqua AustriaPro BrassOberösterreichisches Jugendsinfonieorchester + +4134066Stefan ThurnerAustrian trombone player.Needs VoteEnsemble 20. JahrhundertGustav Mahler Jugendorchester + +4134076Isi ToledoColombian drummer.Needs VoteI. ToledoKronos + +4134077David CorkidiColombian guitarist, composer and producer. He founded (in Cali) the rock band called [a=Krönös].Needs VoteCorkidiD. CorkidiKronos + +4134202Michael StreckerGerman violinist, +orchestrator and arranger, +manager and concert master +from Frankfurt am Main. + +Husband of [a=Ines Strecker].Needs Votehttp://www.strecker-music.com/https://www.facebook.com/michael.strecker.18https://de.linkedin.com/in/michael-strecker-30887a89https://sinfonie-badnauheim.de/michael-strecker/London Symphony OrchestraDie Neue Philharmonie FrankfurtSAP Sinfonieorchester + +4134223Christoph Kohler (2)Christoph KohlerGerman horn player.Needs VoteChristoph KöhlerBerliner Philharmoniker + +4136891JJ AinsleyJames Joseph AinsleyHard Dance producer from Portsmouth, UK.Needs Votehttps://soundcloud.com/j-j-ainsleyJ Ainsley + +4137098Gerhard Peter ThielemannGerhard-Peter Thielemann (born 1935) is a German violinist. +Needs VoteDresdner Philharmonie + +4137099Thomas BäzGerman cellist.Needs VoteDresdner Philharmonie + +4137100Heide SchwarzbachGerman string instrumentalistNeeds VoteDresdner PhilharmonieEnsemble »Alte Musik Dresden« + +4137101Erik KornekErik Kornek is a German violist. +Needs VoteDresdner Philharmonie + +4138026Howard Davis (8)Jazz alto saxophonist. Same as Howard Davis (4)?CorrectHoward L. DavisHarry James And His OrchestraLouis Armstrong And His Orchestra + +4139235Frédéric BourdinFrench classical tenor & countertenor vocalist.Needs VoteLe Concert SpirituelChoeur de Chambre de Namur + +4140649Johanna MittagGerman violinistCorrectStaatskapelle Dresden + +4140991Michael SteinkühlerMichael Steinkühler (born 1978) is a German trombonist. +Needs VoteJunge Deutsche PhilharmonieDresdner PhilharmonieNDR Radiophilharmonie + +4141317Anne MaugueFrench classical flautistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +4141319Thierry VeraFrench classical double bassistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +4141323Jean-Marc JourdinFrench classical oboist.Needs VoteOrchestre Philharmonique De Monte-Carlo + +4141324Frédéric GheorghiuFrench classical violinistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +4141325Jean-Louis DedieuClassical french clarinetistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +4141383Bertrand FreyssenedeClassical violinistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +4141526Charles LockieClassical viola playerNeeds VoteOrchestre Philharmonique De Monte-Carlo + +4142275Cari SearleAlto vocalist. Needs VoteChorus Of The Royal Opera House, Covent Garden + +4142704Sorin ȘtefanRomanian classical violinistNeeds VoteSorin StefanStefan SorinBruckner Orchestra LinzMelos Quartett (2) + +4143605Mi-Young KimKorean soprano vocalist.CorrectRIAS-Kammerchor + +4143606Barbara HöflingClassical alto vocalistCorrectRIAS-Kammerchor + +4143609Tobias MäthgerGerman classical tenor vocalist born December 14, 1977 - Bautzen, Saxony, GermanyNeeds Votehttps://www.bach-cantatas.com/Bio/Mathger-Tobias.htmhttps://www.facebook.com/tobias.maethgerMäthgerRIAS-KammerchorKammerchor StuttgartChor Der J.S. Bach StiftungCantus ThuringiaAelbgut + +4143610Friederike BüttnerClassical soprano vocalistNeeds VoteRIAS-Kammerchor + +4143611Volker NietzkeClassical tenor vocalistCorrectRIAS-Kammerchor + +4143612Anja PetersenGerman soprano vocalist.Needs Votehttps://www.anjapetersen.com/https://en.wikipedia.org/wiki/Anja_PetersenPetersenAnja MetzgerRIAS-Kammerchor + +4143613Claudia EhmannGerman soprano / mezzo-soprano vocalist born 1981 in WaiblingenNeeds Votehttp://www.claudia-ehmann.de/galerieRIAS-KammerchorKammerchor StuttgartVocalconsort BerlinAthesinus Consort Berlin + +4143614Jason SteigerwaltClassical alto vocalistCorrectRIAS-Kammerchor + +4143616Ursula ThurmairUrsula Thurmair is a German classical mezzo-soprano / contralto.Needs Votehttp://ursulathurmair.de/RIAS-KammerchorMDR RundfunkchorAthesinus Consort Berlin + +4143618Wiebke LehmkuhlGerman contralto vocalist born in OldenburgCorrecthttp://www.bach-cantatas.com/Bio/Lehmkuhl-Wiebke.htmLehmkuhlRIAS-Kammerchor + +4143620Katharina HohlfeldGerman soprano vocalist born in BerlinCorrectKatharina Hohlfeld-RedmondRIAS-Kammerchor + +4143621Masashi TsujiJapanese classical tenor vocalist, born in Nagasaki.Needs VoteRIAS-KammerchorDet Norske Solistkor + +4144149Hermann SchicketanzClassical viola playerNeeds VoteVirtuosi SaxoniaeCapella Fidicinia + +4145269Carroll HuxleyPianist and arranger from Chicago, born in 1903, died in 1999. Worked for [a=Paul Whiteman] and [a=McKinney's Cotton Pickers].Needs VoteC. HuxleyJean Goldkette And His Orchestra + +4145552Laura ManziniHarpsichordist and pianistNeeds VoteL. ManziniManziniOrchestra da Camera ItalianaEstrio + +4145897Marissa RegniAmerican violinist.CorrectSaint Louis Symphony OrchestraNational Symphony Orchestra + +4146311Stefanie HaegeleGerman classical oboist born 1977 in HamburgNeeds VoteStéfanie HaegeleCantus CöllnVenice Baroque OrchestraOrchester Der J.S. Bach Stiftung + +4147335Gerhard HundtClassical timpanist & percussionistNeeds VoteGewandhausorchester LeipzigFreiburger BarockorchesterBatzdorfer Hofkapelle + +4148933Donald Evans (2)American violist, born 4 October 1916 in Chicago, Illinois and died 24 April 2003 in Evanston, Illinois.Needs VoteChicago Symphony Orchestra + +4149101Jens Weber (3)The tenor Jens Weber was born in San Francisco and grew up in Santiago de Chile. Lives and works in Switzerland now.Needs Votehttp://www.bachstiftung.ch/mitwirkende/solisten/2007/jens_weber_tenor/La Petite Bande + +4149905Miff FrinkTrombonistNeeds VoteBarbecue Joe And His Hot Dogs + +4150286Nat AtkinsonUS jazz trombonist. Played in Earl Hines Orchestra.Needs VoteEarl Hines And His Orchestra + +4150472Kenny Williams (6)80's Trombone player. Associated with producer Tony Cook and The Hut Studio, Augusta, Georgia.Needs VoteThe Jungle Band + +4150857Joachim NaumannGerman Oboist & FlutistNeeds VoteGewandhausorchester Leipzig + +4151769Madeline FayetteCellist.Needs VoteOrpheus Chamber OrchestraHudson Valley PhilharmonicNew York Classical Players + +4153388Pat Lockwood (2)Big Band singerNeeds VoteArtie Shaw And His Orchestra + +4153591Thomas MeranerItalian classical oboist born in BolzanoNeeds VoteLes Talens LyriquesKammerorchester BaselLa Cetra Barockorchester BaselNeue Hofkapelle MünchenOrchester Der J.S. Bach Stiftung + +4153816Rémy LouisLiner Notes author (classical music)Needs Vote + +4154441Catherine FerroFrench classical flautistComplete and CorrectLes Folies Françoises + +4155945LSO String Ensemble[a=London Symphony Orchestra]'s string ensemble, led by [a=Roman Simovic], that features virtuoso players from each section of the [a=London Symphony Orchestra Strings]. +[b]Not to be confused with the [a=London Symphony Orchestra Strings][/b]. + +Please, consider also the following orchestra's sub-groups: +- [a=London Symphony Orchestra Chamber Group] +- [a=Members Of The London Symphony Orchestra] +- [a=London Symphony Orchestra Strings] +- [a=London Symphony Orchestra Brass] +- [a=London Symphony Orchestra Chamber Ensemble] +- [a=LSO Percussion Ensemble] +- [a=LSO Wind Ensemble]Needs Votehttps://lsolive.lso.co.uk/collections/lso-string-ensembleRebecca GilliverRobert Turner (2)Noel BradshawBelinda McFarlaneClaire ParfittTom NorrisLennox MackenzieRhys WatkinsEve-Marie CaravassilisJoel QuarringtonRoman SimovicGermán ClavijoIwona MuszynskaPhilip NolteJani PensolaAnna GreeneLondon Symphony Orchestra + +4157311Lisa CarliothLisa Sabina CarliothSwedish soprano vocalist, born on November 6, 1970.Needs VoteCarliothDoris DaysSlim & LisaRadiokören + +4159562Robin TritschlerIrish tenor vocalist.Needs Votehttps://www.facebook.com/robintritschlertenor/https://www.bach-cantatas.com/Bio/Tritschler-Robin.htmTritschlerCollegium Vocale + +4159693Raquel ReisPortuguese classical cellistNeeds VoteGulbenkian Orchestra + +4160392Paul Stein (3)Needs Major ChangesP. SteinStein + +4160393Charles Watts (4)Needs Major ChangesC. E. WattsC. WattsC.E. WattsWatts + +4161293Bruno TombaFrench trumpet player.CorrectOrchestre De Paris + +4161857Bob Stone (7)Robert StoneUS lyricist, producer, arranger born on Oct. 31st, 1941. Originally from Boston, MA, later moved to California. [b]Wrote [a=Cher]'s song "Gypsys, Tramps & Thieves"[/b], Bobby Vee’s "The Beauty and the Sweet Talk", Liza Minnelli’s "Mr. Emery Won’t Be Home" and Jackie DeShannon’s "A Proper Girl" and lyrics for movie soundtracks ("The Seven Minutes", "Jud", "The Appointment", "Evel Knieve", "Super Van", "Beyond The Valley Of The Dolls"...). Often associated with publishers [l=Metric Music], [l272292] and [l=Rock Garden Music], and co-writers [a=Mark Gibbons] and [a=Stu Phillips]. Lately worked with his relative Alex Taylor Stone on soundtracks such as "Cabin Fever 2". +(BMI IPI #: 29704479 / IPI #: 29697733)Needs Votehttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=stone+bob&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allhttps://repertoire.bmi.com/Search/Search?SearchForm.View_Count=&SearchForm.Main_Search=Writer%2FComposer&SearchForm.Main_Search_Text=Stone+robert&SearchForm.Sub_Search=Please+Select&SearchForm.Search_Type=allhttps://www.ascap.com/repertory#/ace/writer/29697733/STONE%20BOBhttps://www.linkedin.com/in/bob-stone-a1387117/B StoneB. StoneE. StoneR. StoneRobert StoneStoneСтоун + +4162007Iris RegevCellistNeeds VoteIsrael Philharmonic Orchestra + +4162389John Ashby (4)John Henry AshbyAlso known as [b]John (Jock) Ashby[/b]. +British classical tenor trombonist. Former member of the [a=London Symphony Orchestra] (1936-?1956, Principal Trombone in 1948).Needs VoteLondon Symphony OrchestraPhilharmonia Orchestra + +4166700Giovanni CostamagnaItalian cellist. Needs VoteCostamagna GiovanniOrchestra dell'Accademia Nazionale di Santa Cecilia + +4167911David JandorfDavid H. JandorfAmerican trumpet player, died on October 24, 2005 at the age of 78.Needs VoteThe Cleveland OrchestraArs Nova (13) + +4168052Fritz OrtnerDouble bass player.Needs VoteMünchener Bach-Orchester + +4168535Tal CanettiClassical cellistNeeds VoteThe Amsterdam Baroque OrchestraConcerto Köln + +4168948Anne FreitagClassical traverse flautist born 1984 in Leipzig.Needs VoteCollegium VocaleKammerorchester BaselLa Cetra Barockorchester BaselOrchester Der J.S. Bach StiftungLes Ambassadeurs (6)New Century Baroque + +4169025Masako GodaJapanese soprano vocalist.Needs VoteChor Des Bayerischen Rundfunks + +4169027Isabella StettnerGerman soprano vocalist.Needs VoteChor Des Bayerischen Rundfunks + +4169605Jörg Richter (2)German trombonist, born in February 1960 in Magdeburg, GDR.Needs VoteRichterRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester LeipzigCapella FidiciniaBlechbläserensemble Ludwig GüttlerNeuen Elbland PhilharmoniePosaunenquartett Opus 4 + +4169607Christian HöcherlGerman trumpet player, born in 1973.Needs VoteDresdner PhilharmonieBlechbläserensemble Ludwig Güttler + +4169608Hans-Werner LiemenGerman tubist, born 2 December 1952 in Waltershausen, GDR.Needs VoteStaatskapelle DresdenDie BlasewitzerBlechbläserensemble Ludwig Güttler + +4170101Andrei IkovАндрей Михайлович ИковAndrei Ikov (April 10, 1960, Moscow) is a Russian trumpeter and music teacher, teacher at the [l285011], Honored Artist of the Russian Federation (2009), laureate of the All-Russian and international competition.Needs Votehttps://ru.wikipedia.org/wiki/%D0%98%D0%BA%D0%BE%D0%B2,_%D0%90%D0%BD%D0%B4%D1%80%D0%B5%D0%B9_%D0%9C%D0%B8%D1%85%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2%D0%B8%D1%87https://chambermusic.ru/musicians/andrei-ikov-trumpetA. IkovAndrey IkovА. ИковАндрей ИковRussian State Symphony OrchestraRussian National OrchestraBolshoi Theatre Orchestra + +4170122Ann-Marie LysellAnn-Marie Doris Kristina LysellSwedish classical violinist, born July 29, 1949.Needs VoteSveriges Radios SymfoniorkesterDrottningholms BarockensembleBerwaldkvartetten + +4170605Fredrik ForsSwedish solo clarinetist, born 1973 in Borlänge, Sweden. + +Since 1995, he has been solo clarinetist in the Oslo Philharmonic. + +Started playing the clarinet at the age of 10 in Borlänge Music School. In 1988, at the age of 15, he made his debut as a soloist with the Helsingborg Symphony Orchestra (SVT made a documentary program about him in connection with this) and quickly got a series of engagements. The international debut took place in 1990 with the Austrian Radio Symphony Orchestra. Fors attended the Royal Academy of Music in Stockholm. (Even before he retired, he had been awarded "Best European musician under 25" by the Council of Europe.) Has later studied with leading clarinetists on the international stage: Karl Leister, Yehuda Gilad, Anthony Pay and Richard Stoltzman. Played in the Norrköping Symphony Orchestra. Invited as a visiting professor to teach clarinetists at the University of Minnesota. He is a frequently hired chamber musician with involvement at many music festivals in the Nordics and in the rest of Europe.Needs Votehttps://sv.wikipedia.org/wiki/Fredrik_ForsOslo Filharmoniske OrkesterOslo Kammerakademi + +4170989Hampton ChildressAmerican bassistNeeds VoteBaltimore Symphony Orchestra + +4171018Oliver GawlikGerman bass vocalistNeeds VoteRundfunkchor BerlinEnsemble Vokalzeit + +4171416Velenczei TamásHungarian trumpet playerCorrectTamas VelenczaiTamas VelenczeiTamás VelecnzeiTamás VelenceiTamás VelenczeiBerliner Philharmoniker + +4171465Georg BörgersClassical cellistNeeds VoteMusica Antiqua KölnDas Kölner Cello-Trio + +4171961Jan RohardClassical violinist.Needs VoteDR SymfoniOrkestret + +4172151David SchultheissDavid SchultheißGerman violinist, born 1979 in Ludwigshafen, Germany. He's the first concertmaster of the [a451535] since 2009.Needs VoteBayerisches StaatsorchesterDas Folkwang-KammerorchesterMünchener KammerorchesterWürttembergisches KammerorchesterKölner KammerorchesterAmira Quartet + +4172166Stephen CollardelleFrench classical alto / counter-tenor vocalist born 1984Needs Votehttp://www.bach-cantatas.com/Bio/Collardelle-Stephen.htmStéphen CollardelleChoeur de Chambre de NamurPygmalionEnsemble CorrespondancesEnsemble Les SurprisesChœur Marguerite Louise + +4172192Jean BataillonClassical cellist. Needs VoteOrchestre National Bordeaux AquitaineBise De Buse + +4172962Michael DauthMichael Dauth (born 1958) is a German-English violinist and conductor.Needs Votehttps://michaeldauth.orgBerliner PhilharmonikerMelbourne Symphony OrchestraOrchestra Ensemble KanazawaRundfunkorchester HannoverSydney Symphony Orchestra + +4173966Maria ValdmaaEstonian soprano vocalist, born 8 December 1982.Needs Votehttps://www.facebook.com/mvaldmaaEstonian Philharmonic Chamber ChoirHuelgas-EnsembleThe Amsterdam Baroque ChoirCollegium Vocale 1704Instruments Of Time & Truth + +4173973Guido GroenlandDutch Tenor vocalistNeeds VoteTenor De GuidoCappella AmsterdamThe Amsterdam Baroque Choir + +4174775Myung-Wha ChungSouth Korean cellist, born March 19, 1944 in Seoul. +Sister of conductor and pianist [a880725] and violinist [a1199356].Needs Votehttp://en.wikipedia.org/wiki/Myung-wha_ChungMyung Wha ChungChung Trio + +4175611Coro de tiples del Orfeón DonostiarraRelated to [a1169517]Needs Votehttp://www.orfeondonostiarra.org/es/Orfeón Donostiarra + +4176156Members Of The London Symphony OrchestraPlease, consider also the following orchestra's sub-groups: +- [a=London Symphony Orchestra Chamber Group] +- [a=London Symphony Orchestra Strings] +- [a=London Symphony Orchestra Brass] +- [a=London Symphony Orchestra Chamber Ensemble] +- [a=LSO String Ensemble] +- [a=LSO Percussion Ensemble] +- [a=LSO Wind Ensemble] +Needs VoteA Section Of The London Symphony OrchestraLondon Symphony OrchestraMedlemmar Ur London Symphony OrchestraMembers Of The Famous London Symphony OrchestraMembers Of The London SymphonyMembers of the L.S.O.Members of the London Symphony OrchestraMembri Della London Symphony OrchestraMiembros De La Orquesta Sinfónica De LondresMitglieder Des Londoner Sinfonie-OrchestersPrincipals From The London Symphony OrchestraSoloists Of The London Symphony OrchestraSymphony OrchestraHoward SnellLondon Symphony Orchestra + +4176605Bertal MaubonCollective pseudonym of Marcel Bertal (1882-1953) and Louis Maubon. French writers of songs and playsCorrecthttp://data.bnf.fr/14751767/bertal-maubonhttp://194.254.96.55/cm/?for=fic&cleaut=31https://fr.wikipedia.org/wiki/Bertal-MaubonB. MaubonBertalBertal & MaubonBertal - MaoubonBertal - MaubonBertal Et MaubonBertal MaubanBertal et MaubonBertal&MaubonBertal, MaubanBertal, MaubonBertal-MaubonBertal/MaubonBerthal MaubonBertral-MaubonL. MaubonMarcel Bertan & Louis MaubonMaubonLouis MaubonMarcel Bertal + +4177057Jiri TancibudekJiří TancibudekJiří Tancibudek (5 March 1921 – 1 May 2004) was a Czech-born Australian oboist, conductor and teacher. + +First studied violin and at 17 studied oboe at Prague Conservatorium, and later in England with Leon Goossens. Became principal oboist in the Czech Philharmonic under Rafael Kubelik (1945-1950) and toured Europe. Came to Australia in 1950 and worked at the NSW Conservatorium (1950-1953) and later with the Victorian Symphony Orchestra.Needs VoteThe Czech Philharmonic OrchestraCzech Chamber OrchestraVictorian Symphony Orchestra + +4178108Jeanine TétardFrench cellist.CorrectOrchestre De Paris + +4178169Michael HsuMichael Hsu-WarthaMichael Hsu-Wartha is a violinist and violin teacher.Needs VoteRadio-Sinfonieorchester StuttgartStatic GoldSWR SymphonieorchesterRosenstein String Quartet + +4178413Clarence Johnson (12)Jazz pianist active in the New York area. + +Not to be confused with [a=Clarence Johnson (2)].Needs VoteLouis Jordan And His Tympany FiveLouie Jordon's Elks Rendevouz Band + +4178649Marek Romanowski (2)Polish Double bassistNeeds VotePolish National Radio Symphony OrchestraBerner Symphonieorchester + +4179155Peter RiehmGerman violinist.CorrectRiehmSymphonie-Orchester Des Bayerischen RundfunksOrchester der Bayreuther Festspiele + +4180621Mike Harrison (13)Classical cornet playerNeeds VoteThe English Baroque Soloists + +4180943Gregory MassatGrégory MassatClassical percussionist, also credited as a photographer for a recording by Orchestre Philharmonique De Strasbourg.Needs VoteGrégory MassatOrchestre Philharmonique De Strasbourg + +4183299Raymond FalNeeds VoteJohnny Hodges And His Orchestra + +4183955Robert Anderson (18)Cellist.Needs VoteRobert AndersonRoyal Scottish National Orchestra + +4184191Harry Van OvenTrombone. 30's, 40'sNeeds VoteBenny Carter And His Orchestra + +4184192Rolf GoldsteinTrumpet player. 30'2, 40'sNeeds VoteR. GoldsteinRolf GoldstenBenny Carter And His Orchestra + +4184193Cliff WoodbridgeTrumpet player. 30's, 40'sNeeds VoteBenny Carter And His Orchestra + +4184194Sam DasbergTrumpet player. 30's, 40'sNeeds VoteSem DasbergBenny Carter And His OrchestraThe Ramblers + +4185010Rudolf DöblerGerman flutist, born in 1966 in Aachen, Germany.CorrectRundfunk-Sinfonieorchester BerlinRosetti Bläserquintett + +4185012Gudrun VoglerGerman oboist, born in 1966 in Berlin, GDR.CorrectGudrun ReschkeKammerensemble Neue Musik BerlinStaatskapelle WeimarRundfunk-Sinfonieorchester BerlinKammervereinigung BerlinRosetti Bläserquintett + +4185013Andreas WylezolGerman contrabassist and music professor, born in 1967 in Berlin, GDR.Needs VoteStaatskapelle DresdenOrchester der Bayreuther FestspieleLucerne Festival OrchestraDresdner Oktett + +4185861Barbora KabátkováBarbora Kabátková (born Sojková) is a Czech soprano vocalist.Needs VoteB. KabátkováBarbora SojkováCollegium VocaleCollegium Vocale 1704Tiburtina EnsembleBaroque Ensemble ”Hofmusici”Schola BenedictaBernvocal + +4186200John BockBock is a multi-media artist primarily known for his performances. Since 1991, he creates environments hand crafted from found materials which function as symbolic settings for his "lectures." More recently there has been an increased production of film and video work.[1] + +In his "lectures", Bock acts on "stages" built from tables, cupboards or multi-level wood constructions. The objects are handmade or re-modeled accessories of the lecture, made out of clothing, electrical equipment such as hoovers and mixers, or "plastic diagrams" that illustrate his mathematical explanations. After the lecture, they are left on the stage which thus forms a "theatrical collage". The "lectures" are structured by different scenes in which Bock sometimes works with (non-professional) actors; frequently he plays pop songs or classical pieces from a record player. The lecture is mostly recorded on video. The film is then integrated in the installation, documenting the lecture throughout the exhibition.[2] + +Bock has been professor for sculpture at the Academy of Fine Arts of Karlsruhe since 2004. + +Exhibitions +Bock participated in numerous international exhibitions, among others the Venice Biennial (1999 and 2005) and the documenta 11 in Kassel (2002). He has also had solo exhibitions in a number of international institutions including MoMA and the New Museum in New York, Kunst-Werke Institute for Contemporary Art in Berlin, Kunsthalle in Basel, Secession, Wien, and the Institute of Contemporary Arts in London. + +He has participated in various group shows including Martian Museum of Terrestrial Art, Barbican Centre, London, and "Laughing in a Foreign Language", The Hayward Gallery, London, both in 2008. John Bock: Maltreated Frigate, a monograph of his work, was published by Walther Koenig Ltd, 2007. + +Bock is represented by Galerie Klosterfelde, Berlin, Anton Kern Gallery, New York, and Regen Projects, Los Angeles.[3]Needs Votehttps://www.johnbock.deStan Kenton And His Orchestra + +4186924Raphaël DubéCanadian classical cellistNeeds VoteLes Violons du Roy + +4188793Antonio RuggeriClassical trumpeter.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4189122Mark KadinМарк Львович КадинMark Kadin (born April 28, 1965, Kramatorsk, Ukrainian SSR, USSR) is a Russian conductor. +From 1996 to 2004, at the invitation of [a926728], Mark Kadin was the conductor of the [a1032218]. +From 1999 to 2004, [a386761] invited a conductor to work with the legendary chamber orchestra “[a933318]”. With this group, M. Kadin performed more than 120 concerts in Russia and abroad, including tours in the Netherlands, Germany, and Switzerland. +From 2004 to 2014, Kadin was the artistic director and chief conductor of the Krasnoyarsk Academic Symphony Orchestra = [a2438838]. +Since 2017 - artistic director and chief conductor of the [a849765]. +Transliteration in Cyrillic - [i]Марк Кадин[/i].Needs Votehttps://ru.wikipedia.org/wiki/%D0%9A%D0%B0%D0%B4%D0%B8%D0%BD,_%D0%9C%D0%B0%D1%80%D0%BA_%D0%9B%D1%8C%D0%B2%D0%BE%D0%B2%D0%B8%D1%87https://www.markkadin.com/biographyhttps://fricsaycompetition.com/ru/mark-kadin-ru/https://newslab.ru/info/dossier/kadin-mark-lvovichBulgarian Radio Symphony OrchestraMoscow VirtuosiRussian National OrchestraКрасноярский Академический Симфонический Оркестр + +4189336William NoblesWilliam Myles NoblesBilly Myles, an alias of William Myles Nobles (August 29, 1924 – October 9, 2005), was an American R&B songwriter and singer active in the 1950s and 1960s. He is best known for writing "Tonight, Tonight" recorded by The Mello-Kings, "(You Were Made for) All My Love" recorded by Jackie Wilson (1960), and "Have You Ever Loved A Woman" recorded by Freddie King (1960), then Eric Clapton (1970). + +Billy Myles specialised in love ballads (sometimes in the doo-wop style) and 'Uptown Blues' songs, occasionally co-writing with vocalists such as Jackie Wilson and Brook Benton. Needs Votehttp://en.wikipedia.org/wiki/Billy_MylesBilly MylesBilly NoblesNoblesW. NoblesWilliam "Billy Myles" NoblesWilliam M. NoblesWilliam NobleWilliam “Billy Miles” NoblesBilly Myles + +4195756Rainer Johannes HomburgGerman chorus master, organist, conductor and composer, born 16 January 1966 in Gelsenkirchen, Germany.Needs Votehttps://de.wikipedia.org/wiki/Rainer_Johannes_Homburghttp://www.hymnus.de/chorleitung/chorleiter/Johannes HomburgStuttgarter Hymnus-Chorknaben + +4196697Rüdiger RuppertGerman drummer and classical percussionist.Needs VoteRüdiger "Rübe" RuppertOrchester Der Deutschen Oper BerlinBigBand Deutsche Oper BerlinTriologic + +4197180Artur MeyerGerman violist.CorrectStaatskapelle DresdenUlbrich-Quartett + +4197181Friedrich FrankeGerman violist.Needs VoteStaatskapelle DresdenWinkler Quartett (2) + +4198089Johannes EsserJohannes EßerGerman double bassistCorrectJ. EsserJohannes EßerConcerto KölnGürzenich-Orchester Kölner Philharmoniker + +4198095Elina Eriksson (2)Swedish violinistCorrectElin ErikssonElina EriksonConcerto Köln + +4198658Johannes KrallAustrian violinist, singer and composer.CorrectArnold Schoenberg ChorDas Mozarteum Orchester Salzburg + +4198667Harald HuemerAustrian violinist.Needs VoteMayflower OrchestraBühnenorchester Der Wiener Staatsoper + +4198668Eva RauscherClassical violistNeeds VoteDas Mozarteum Orchester Salzburg + +4198669Yuko KanoYuko Kano-BuchmannJapanese classical violinist.Needs VoteYuko Kano-BuchmannBruckner Orchestra LinzJohann Strauß Ensemble Austria + +4199907Sergei DubovRussian classical violist, born in 1983.Needs VoteRussian National Orchestra + +4200374Lois Wann[b]Lois Wann[/b] (30 January 1912, Monticello, Minnesota — 23 February 1999, Bronxville, New York) was an American oboist and distinguished pedagogue, one of the first female musicians to hold principal positions at major US orchestras. Wann taught at the [l=Juilliard School] in New York between 1936 and her retirement in 1992. + +She began playing piano at six and later self-taught on oboe; after graduating from high school, Lois Wann studied both instruments in Los Angeles. In 1933, she relocated to New York and attended the [l=Juilliard School], graduating in 1936. In pre-war America, major orchestras still barred female instrumentalists from entering; thus, Wann began her career in a few all-women ensembles, such as the Orchestrette Classique and [a=Antonia Brico]'s New York Women's Symphony Orchestra. In the mid-1930s, Lois got her first position with the [a=San Diego Symphony]. In subsequent years, she served as the principal oboist with [a=Pittsburgh Symphony Orchestra], [a=Saint Louis Symphony Orchestra], [a=New York City Ballet Orchestra], [a=Marlboro Festival Orchestra], and Chautauqua Symphony. Lois Wann regularly participated in the [l=Aspen Music Festival] between 1951 and 1957 and collaborated with many prominent chamber ensembles, including [a3466526], [a=Budapest String Quartet], [a=Juilliard String Quartet], and [a=The Cantata Singers] conducted by [a=Alfred Mann]. + +While primarily associated with early music repertoire, Lois Wann championed many contemporary works. In 1947, she premiered [a=Alberto Ginastera]'s [i]Duo for flute and oboe[/i] with [a=Carleton Sprague Smith]. A few composers commissioned exclusive compositions for Wann, including [a=Darius Milhaud] with his [i]Sonatina for Oboe and Piano[/i] (1954) and [a=Sam Morgenstern]'s five-movement [i]Combinations for oboe & strings[/i]. She accompanied composer [a=Mieczyslaw Kolinski] in the recordings of [i][m=2963539][/i] in 1959. Besides teaching at her alma mater, Juilliard, for over 55 years, Lois Wann held faculty positions at [l=The Mannes College Of Music] (1946–76), [l=Vassar College], [url=https://discogs.com/label/1573061]Henry Street Settlement[/url], and other institutions.Needs Votehttps://en.wikipedia.org/wiki/Lois_Wannhttps://www.nytimes.com/1999/03/08/arts/lois-wann-87-an-oboist-and-teacher.htmlhttps://news.hrvh.org/veridian/?a=d&d=bronxvillereviewpressreporterBRONXVILLE19990304.1.8&e=-------en-20--1--txt-txIN-------Saint Louis Symphony OrchestraMarlboro Festival OrchestraSan Diego SymphonyPittsburgh Symphony OrchestraNew York City Ballet Orchestra + +4200825Lukas Maria KuenGerman pianist, born in 1974 in Erlangen.Needs VoteKuenMaria LukasSymphonie-Orchester Des Bayerischen RundfunksDuo Dauenhauer Kuen + +4202509Francesco SquarciaItalian viola player.Needs VoteF. SquarciaSquarcia FrancescoOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202510Giovanni Bruno GalvaniItalian Violinist.Needs VoteGiovanni GalvaniOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +4202511Carla SantiniItalian viola player. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Giovanile ItalianaArchi Di Santa Cecilia + +4202512Andrea Vicari (2)Classical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202513Anna CalleriClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202514Bozena MozdzonekClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202515Michael KornelAustralian viola player. Needs VoteMexico City Philharmonic OrchestraOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202516Matteo Michele BettinelliItalian cellist. Needs VoteMatteo BettinelliOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +4202517Barbara CastelliItalian violinist. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +4202518Pierluigi CapicchioniClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202519Maurizio LottiniItalian violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202520Maria Tomasella PapaisClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +4202522Alberto MinaItalian violinist. Needs VoteMina AlbertoOrchestra dell'Accademia Nazionale di Santa CeciliaTrio Helbig + +4202523Antonio BossoneItalian viola player. Needs Votehttp://quartettodelsancarlo.com/antonio-bossone/Orchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Da Camera Di MantovaOrchestra Del Teatro Massimo Bellini Di Catania + +4202524Lorenzo BernabaiClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202525Riccardo BonacciniItalian violinist, born in 1969. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202526Sara SimonciniItalian viola player.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Giovanile ItalianaArchi Di Santa Cecilia + +4202527Carlo OnoriItalian cellist. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa CeciliaTrio Helbig + +4202528Roberto GranciItalian violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202529Cristina PucaItalian Violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +4202530Antonino PalmeriItalian viola player.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202531Maria BurugievaItalian viola player.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202532Raffaele Mallozzi (2)Italian viola player. Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaVirtuosi Di Roma "Collegium Musicum Italicum"L'Arte Della FugaArchi Di Santa Cecilia + +4202533Rosario CupolilloItalian viola player.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202534Kaoru KandaClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202749Antonio FlorianoItalian classical oboist.Needs VoteA. FlorianoOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202750Ermanno OttavianiTrumpet of Orchestra dell'Accademia Nazionale di Santa Cecilia.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202751Filiberto TentoniItalian bassoon player. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202752Andrea PighiItalian bass / contrabass player. Needs Votehttps://it-it.facebook.com/pighiandreahttp://www.thebassgang.org/componenti/pighi.htmlOrchestra dell'Accademia Nazionale di Santa CeciliaThe Bass Gang + +4202753Paolo MarzoItalian contrabass player. Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202754Giuseppe ViriItalian contrabass player. Needs VoteViri GiuseppeOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202755Bo PriceClassical pianist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202756Piero Franco CardarelliItalian contrabass player. Needs VotePiero CardarelliOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202758Dobrina Natalia GospodinoffClassical flautist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202760Marco Bellucci (2)Classical hornist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202761Aurelio IacolennaNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202762Romolo Balzani (2)Italian flautist. Needs Votehttp://www.romolobalzani.it/Orchestra dell'Accademia Nazionale di Santa Cecilia + +4202763Manlio PintoClassical pianist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202764Remo D'IppolitoClassical trumpeter.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202765Gianluca CamilliClassical trombonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202766Giuseppe AccardiItalian hornist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4202767Enrico RosiniItalian bass/contrabass player.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203034Giorgio AngeliniClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203035Fabio MarconciniClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203036Corrado TroianiNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203037Massimo NovelliItalian classical trumpeterNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203038Massimo PanicoItalian classical trombonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203039Salvatore DominaClassical trumpeter.Needs VoteDomina SalvatoreOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203040Sandro PippaClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203041Vincenzo ScaloneNeeds VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203042Luigino LeonardiLuigi LeonardiItalian classical trombonist & sackbutistNeeds Votehttps://myspace.com/luiginoleonardihttps://www.linkedin.com/pub/luigino-leonardi/66/323/765Orchestra dell'Accademia Nazionale di Santa CeciliaEnsemble SeicentonovecentoOrchestra Città ApertaOrchestra Da Camera 'In Canto' + +4203043Claudio MonacoClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203044Carlo Di BlasiClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4203120Daniele Rossi (5)Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +4205093Takaya UrakawaJapanese violinist, born 1940 in Tokyo, Japan.Correcthttp://takaya-urakawa.com/Bamberger Symphoniker + +4205248Ludwig RafaëlHedwig KiesekampComposer, lyrics. 1844 - 1919Needs VoteL. RafaelLudwig RafaelRafael + +4205493Brian DummBryan DummCellist.Needs VoteBryan DummThe Cleveland OrchestraThe Cleveland Octet + +4205783Simon Johnson (10)Trombonist.Needs VoteSimon JohnsonLondon Symphony Orchestra + +4205818Thomas GarocheClassical contrabassistNeeds VoteT. GarocheOrchestre National De France + +4205819Jessica Bessac-CaronFrench clarinetistNeeds VoteJessica BessacOrchestre National De France + +4205825Pascal SaumonFrench oboistNeeds VoteP. SaumonOrchestre National De France + +4205832Maria ChirokoliyskaClassical contrabassistNeeds Votehttps://www.facebook.com/maria.chirokoliyskaOrchestre National De FranceEuropean Camerata + +4206120Keiko Kinoshita (2)Japanese female classical flautistNeeds Votehttps://flute33.wixsite.com/keikokinoshita/bioCollegium VocaleSchola Cantorum BasiliensisCapriccio Barock OrchesterOrchester Der J.S. Bach Stiftung + +4206486Henning Hansen (8)Danish french horn player.Needs VoteRoyal Danish BrassDR SymfoniOrkestretDiamantEnsemblet + +4207551Christoph König (2)German conductor, born 1968 in Dresden, GDR. +Orquesta Sinfónica de RTVE principal conductor since late 2023. +Needs Votehttp://www.christophkoenig.at/Dresdner KreuzchorOrquesta Sinfónica de RTVEOrquestra Sinfónica do Porto Casa da Música + +4207881Nicolas BöneNicolas BôneClassical violistNeeds VoteNicolas BoneNicolas BôneOrchestre National De FranceQuatuor Kandinsky + +4207882Philippe AïcheFrench violinist and conductor.Needs VotePhilippe AicheOrchestre De ParisTrio ElégiaqueQuatuor KandinskyEstonian Festival Orchestra + +4208099Michael SimmMichael Simm is a Germa classical clarinet player.Needs VoteBerliner Sinfonie OrchesterBerliner OktettSalonorchester Eclair + +4209723Nikolai GorbunovRussian classical double bassist.Needs Votehttps://nfor.ru/en/nikolaj-gorbunov/Николай ГорбуновRussian National Orchestra + +4210199Michael Neuhaus (3)German violist, born 1956 in Leipzig, GDR.CorrectStaatskapelle DresdenOrchester der Bayreuther FestspieleDas Krauß-Quartett + +4210237Heinz JopenClassical viola playerNeeds VoteConsortium Musicum (2) + +4210850Walter RehbergSwiss classical concert pianist, composer and writer on musical subjects, b. 14 May 1900 in Geneva, d. 24 October 1957.Needs Votehttps://en.wikipedia.org/wiki/Walter_Rehberghttps://de.wikipedia.org/wiki/Walter_RehbergProfessor Walter RehbergRehberg + +4213707Franz UnterrainerAustrian trumpet player and composer.Needs VoteMünchner PhilharmonikerConsortium ClassicumTiroler QuintettBlechschadenWüde Koasa Blas'n + +4214913Members Of The John Alldis ChoirNeeds VoteMale Voices Of The John Alldis ChoirJohn Alldis Choir + +4215552Christiana Mariana von ZieglerChristiana Mariana von Ziegler (28 June 1695 – 1 May 1760) was a German poet and writer. She is best known for the texts of nine cantatas, which Johann Sebastian Bach composed after Easter of 1725.Correcthttp://en.wikipedia.org/wiki/Christiana_Mariana_von_ZieglerC.M. von ZieglerChristiane Mariane von ZieglerMarianne v. ZieglerZiegler I + +4217017Pascal OddonClassical violinistNeeds VoteOrchestre Philharmonique De Radio FranceEnsemble Syntonia + +4217314Nancy AndelfingerOboe playerNeeds VoteOrchestre National De France21st Century Symphony Orchestra + +4217936Orchestre National de Paris (section cuivres et bois)Needs VoteOrchestra National de ParisOrchestre National de ParisOrchestre De Paris + +4217945Johannes MirowGerman cellist.Needs Votehttp://www.johannes-mirow.de/Orchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinWolf Quartett + +4218293Amos Miller (2)Classical trombonistNeeds VoteCity Of London SinfoniaRoyal Ballet SinfoniaOnyx Brass + +4220428Erik KahlsonAmerican violist and conductor, born 11 October 1907 in Finland and died in July 1987 in Cincinnati, Ohio.CorrectThe Cleveland OrchestraCincinnati Symphony Orchestra + +4220429John KrellAmerican piccolo player born in 1915 and died in 1999.CorrectThe Philadelphia OrchestraNational Symphony Orchestra + +4221066Borja AntónClassical trumpeterNeeds VoteAntón BorjaOrquesta Sinfónica de RTVE + +4222627Michael StairsMichael Ogdon StairsMichael Ogdon Stairs (October 13, 1945 - August 11, 2018) was an American organist and teacher, primarily in the Philadelphia area. A member of [a27519] from 1985 to 2018.Needs Votehttp://wrti.org/post/michael-stairs-organists-organisthttps://www.legacy.com/us/obituaries/mainlinemedianews/name/michael-stairs-obituary?id=12722388The Philadelphia Orchestra + +4225742Katarzyna Alemany-EwaldCellist.CorrectOrchestre National De L'Opéra De Paris + +4226226Harry MoulinAmerican violinist, born in 1910 and died in 1999.CorrectSan Francisco SymphonyThe San Francisco Masters Of Melody + +4227539Sandy BlochJazz bass player.Needs VoteArtie Shaw And His Orchestra + +4228405Bert PhillipsBert Gates PhillipsAmerican cellist, born 3 December 1934 and died 8 October 2008 in Bethesda, Maryland.CorrectThe Philadelphia OrchestraThe Cleveland OrchestraThe Philarte Quartet + +4228407Davyd BoothDavyd Booth is an American violinist and harpsichordist. A member of [a27519] since 1973.Needs VoteThe Philadelphia OrchestraThe Philarte QuartetThe Wister Quartet + +4229537Stéphane CausseFrench violinist.CorrectOrchestre National De L'Opéra De Paris + +4230634Victor TolarskyNeeds Major ChangesTolarskyVon Tolarskyvon Tolarsky + +4231148Helen Rowland Helen Hannah Arak née RubinAmerican radio and big band singer + +Born: 22 September 1908 in the Bronx, New York, USA +Died: 15 October 1992Needs Votehttps://www.vjm.biz/174-helen.pdfHelen RolandGrace JohnstonHelene DanielsFrankie Trumbauer And His Orchestra + +4233750Salvador AragóSpanish bassoon player, first soloist bassoon on Orquesta Sinfónica de Madrid.Needs VoteOrquesta Sinfónica De Madrid + +4234535The Great Symphonic Brass And String Orchestra Of The Vienna State OperaNeeds VoteAOrchester Der Wiener Staatsoper + +4235174K. David Van HoesenKarl David van HoesenK. David Van Hoesen (born June 29, 1926, Rochester, New York, USA – died October 3, 2016, Pittsburgh, Pennsylvania, USA) was an American bassoonist and educator. He served as second bassoonist of [a547971] from 1952-1954 and as principal bassoonist of the [a933312].Needs Votehttps://en.wikipedia.org/wiki/K._David_van_HoesenThe Cleveland OrchestraRochester Philharmonic Orchestra + +4236661Jeanette James (2)Jazz and blues singer, who first recorded at least four titles for Paramount in 1927. Two titles for OKeh the same year were never released (listed as by Jeanette Seymour in company files). + +"This artist whose birth name was Jeanette Taylor, was married to Seymour James and recorded under the names Jeanette James and Jeanette Seymour." (Source: Blues and gospel records 1890-1943 (1997), p. 436)Needs VoteJeanette's Synco Jazzers + +4238546Sharon Cohen (3)Israeli violinistNeeds Voteשרון כהןIsrael Philharmonic OrchestraMetropolis Ensembleהתזמורת של יועד ניר + +4238572Rube Bloom And His Bayou BoysNeeds Major ChangesRube Bloom & His Bayou BoysAdrian RolliniRube Bloom + +4239847Katrin KraußKatrin Krauß-BrandiGerman classical recorder player.Needs VoteIl Giardino ArmonicoHimlische CantoreyFlautando KölnFortuna Canta + +4240844Franco PanozzoNeeds Major Changes + +4242677Natalie Taylor (3)Viola player.Needs VoteBBC Symphony Orchestra + +4243658Pauline LacambraClassical cellistNeeds VoteLes Arts Florissants + +4244838Franz VlashekФранц Иванович Влашек (Franz Ivanovich Vlashek)[b]Franz Vlashek[/b] (21 June 1902 — 15 June 1994, Arlington, Virginia) was a Latvian and American cellist who played in the [a=National Symphony Orchestra] under [a=Mstislav Rostropovich] for many years and recorded with several prominent jazz musicians, including [a=Charlie Byrd] and [a=Thelonious Monk]. Franz lived in Riga in the 1920s and later emigrated to the United States, settling in Washington, DC. His sister, Helena Vlashek, married pianist [a=Simon Barere] (1896—1951) and later was a prominent educator, teaching at the [l=New England Conservatory Of Music]; among her students were [a=Earl Wild] and [a=Edwin Hymovitz].Needs VoteFrank VlasekNational Symphony Orchestra + +4245725Vladislav Brunner (2)Classical violinist, born 1963 in Bratislava. He's the son of [a=Vladislav Brunner]. +Needs VoteVladislav Brunner Jun.Slovak Chamber OrchestraFrankfurter Opern- Und Museumsorchester + +4247145Michał WiśniowskiPolish double bassistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4247163Catherine SchaeferCatherine Schaefer-SchubilskeAmerican violinistNeeds Votehttps://www.minnesotaorchestra.org/about/our-people/orchestra-musicians/catherine-schubilske/https://www.feenotes.com/database/artists/schubilske-catherine-schaefer/Minnesota Orchestra + +4249431Judith VárbíróClassical contralto vocalist and keyboard instrumentalistNeeds VoteHungarian State Orchestra + +4250090Benjamin WittiberPercussionist, drummer and vibraphone player.Needs VoteSüdwestdeutsches KammerorchesterSound Factory Inc. + +4250108Margaret Johnson (5)Vaudeville blues singer, who recorded for OKeh and Victor 1923-1927. +"Johnson's early recordings were with Clarence Williams groups, and she may have been one of his protégées. Appearances on the vaudeville circuit are logged from 1922 to 1932, but nothing is known of her subsequent life." (The Penguin guide to blues recordings (2006), p. 325) + +Not to be confused with jazz pianist "Countess" [a=Margaret Johnson].Needs Votehttps://adp.library.ucsb.edu/names/108050JohnsonM. JohnsonMarg. JohnsonMiss Margaret Johnson + +4251332Bérengère MaillardFrench classical violinistNeeds VoteBérangère MaillardLe Concert SpirituelLes Talens LyriquesLes Folies FrançoisesGli IncognitiLunaisiensAliquandoEnsemble AlmazisLe Concert ÉtrangerLes Goûts RéunisLes Épopées + +4251333Odile PodpovitnyClassical violinistNeeds VoteLes Folies Françoises + +4251335François CostaClassical violinistNeeds VoteLes Folies Françoises + +4252470Michał KotowskiClassical double bassistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4252472Robert DudaPolish hornist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4255636Edgar HeßkeClassical clarinetist.CorrectGewandhausorchester LeipzigArmonia Ensemble + +4255637Anna Garzuly-WahlgrenClassical flutist.Needs VoteAnna GarzulyGewandhausorchester LeipzigLinos EnsembleArmonia EnsembleQuintessenz (4) + +4255638Simon SommerhalderSwiss oboist, born in 1987 in Detmold, Germany.Needs VoteSimone SommerhalderL'Orchestre De La Suisse RomandeGewandhausorchester LeipzigOrquestra De La Communitat ValencianaArmonia Ensemble + +4255639Ingolf BarchmannClassical clarinetist.Needs VoteGewandhausorchester LeipzigArmonia Ensemble + +4255640Andreas Pietschmann (2)German classical clarinet player.Needs VoteRundfunk-Sinfonie-Orchester LeipzigEnsemble AvantgardeArmonia EnsembleMDR SinfonieorchesterSächsische Bläserakademie + +4255641Gudrun HinzeClassical flutist.Needs VoteGudrun Hinze-HönigGewandhausorchester LeipzigOrchester der Bayreuther FestspieleArmonia EnsembleQuintessenz (4) + +4255643Tobias SchnirringGerman hornist, born in Freiburg.Needs VoteGewandhausorchester LeipzigBrass PartoutArmonia EnsembleBrass Primeur + +4255644Eckehard KupkeClassical bassoonist.Needs VoteGewandhausorchester LeipzigArmonia Ensemble + +4255647Christian Sprenger (5)German classical flutist, born 1968 in Berlin.Needs VoteRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester LeipzigArmonia EnsembleQuintessenz (4)MDR Sinfonieorchester + +4255649David Petersen (2)David PetersenGerman bassoonist, born in 1968 in Schwerin.CorrectGewandhausorchester LeipzigOrchester der Bayreuther FestspieleArmonia Ensemble + +4255772Young-Eun KooClassical violinistNeeds VoteYoung Eun KoOrchestre National De France + +4255775Allan SwietonClassical violistNeeds VoteOrchestre National De France + +4255777Ji-Hwan Park SongClassical violinistNeeds VoteOrchestre National De France + +4255778Nicolas LamothePercussionistNeeds VoteOrchestre Philharmonique De Radio France + +4256935Ashley FernellNeeds VoteHoward McGhee And His Orchestra + +4256937Leon ComigyNeeds VoteHoward McGhee And His Orchestra + +4257102Sam KrupitNeeds VoteBoyd Raeburn And His Orchestra + +4257103John BerisiNeeds VoteBoyd Raeburn And His Orchestra + +4257105Frank WebbNeeds VoteBoyd Raeburn And His Orchestra + +4257416Bobby GuyerAmerican jazz trumpeterNeeds Votehttps://www.allmusic.com/artist/bobby-guyer-mn0000728739/creditsBob GuyerRobert GuyerWoody Herman And His OrchestraWoody Herman & The HerdThe Band That Plays The Blues + +4259666Maximilian OberroitherGerman hornist.Needs VoteBamberger SymphonikerMünchner SymphonikerSüdwestdeutsches KammerorchesterBrasspur + +4259702Elisabeth PassotFrench classical oboistNeeds VoteLe Concert SpirituelLes Folies FrançoisesLe Concert de l'Hostel Dieu + +4259703François Saint-YvesBorn in Caen (1971), french organ playerNeeds VoteFrançois Saint YvesSt Yves FrançoisLe Concert SpirituelLes Folies FrançoisesEnsemble Suonare E Cantare + +4259788Friedrich Witt (2)Friedrich Witt (31 January 1930 in Bochum, Germany - 29 August 2015 in Berlin, Germany) was a German double bassist. He was a member of the [a260744] from 1954 to 1993.Needs Votehttps://friedrich-witt.de/F. WittFriedrich WittFriedrich WitteBerliner PhilharmonikerKontrabaßquartett Der Berliner Philharmoniker + +4260850Hans PizkaGerman hornist. Born 1942 in Metz/France. Studied horn with [a8446407], [a4995694] and [a2161600]Needs Votehttps://de.wikipedia.org/wiki/Hans_PizkaPizkaBayerisches StaatsorchesterBruckner Orchestra LinzDüsseldorfer SymphonikerThe Erich Pizka Memorial Horn Quartett + +4260871Dieter BinnikerDieter Binniker is a German horn player. +Needs VoteDas Mozarteum Orchester Salzburg + +4261046The Freak Brothers (3)Needs Major ChangesFreak BrothersRob TisseraBen StevensAdam Martin + +4261770John Mills Jr.American singer, guitarist, and tenor ukulele player. +Born 19 Okt 1910 , in Piqua, Miami County, Ohio, USA +Died 23 Jan 1936, in Bellefontaine, Logan County, Ohio, USA + +Original member of [a=The Mills Brothers], in which he provided bass vocals, often imitating tuba or upright bass lines, and at the same time playing a guitar or ukulele, the only instrument in the group at that point. The Mills Brothers performed at the Regal Theatre for a special audience: King George V and Queen Mary. While performing in England, John Jr. became ill. He died of tuberculosis at the beginning of 1936, aged just 25, and was replaced by his father, [a=John Mills] Sr.CorrectThe Mills Brothers + +4262571Betty LambertBetty Jane Lambert née AtkinsonAmerican violinist, died in 2003.Needs VoteChicago Symphony Orchestra + +4262572William ScarlettWilliam H. ScarlettWilliam Scarlett (born in 1933) is an American trumpet player. He was a member of the [a837562] from 1964 to 1997.Needs VoteChicago Symphony Orchestra + +4262574Albert PaysonAlbert E. PaysonAlbert Payson (born in 1935) is an American classical percussionist. He was a member of the [a837562] from 1958 to 1997.Needs VoteChicago Symphony Orchestra + +4262576Gregory Smith (4)American clarinetist born in California. Member of the Chicago Symphony Orchestra since 1983.Needs Votehttp://www.gregory-smith.com/https://cso.org/about/performers/chicago-symphony-orchestra/clarinet1/gregory-smith/Chicago Symphony Orchestra + +4262577Raymond NiwaRaymond Niwa (3 August 1922 - 27 May 2020) was an American violinist. He was a member of the [a837562] from 1951 to 1997.Needs VoteChicago Symphony OrchestraPittsburgh Symphony Orchestra + +4262578Timothy KentTimothy Joseph KentTimothy Kent (born in 1949) is an American trumpet player. He was a member of the [a837562] from 1979 to 1996.Needs VoteChicago Symphony Orchestra + +4262579David Sanders (6)American cellist.Correcthttps://cso.org/about/performers/cso-musicians/strings/cello/david-sanders/Chicago Symphony Orchestra + +4262866Anthony Jennings (3)British clarinettist, fl. 1960s.Needs VoteAnthony JenkinsMelos Ensemble Of LondonThe Military Ensemble Of London + +4263331William NamenAmerican horn player.Needs VoteW. NamenNew York PhilharmonicThe Cleveland Orchestra + +4263448Deborah BoyesOboe and Cor Anglais (English Horn) player.Needs Votehttps://www2.bfi.org.uk/films-tv-people/4ce2bc97a719eD. BoyesPhilharmonia Orchestra + +4264032Tone HagerupClassical clarinetist.Needs VoteBergen Filharmoniske Orkester + +4269486Kjetil SandumNorwegian bassist, born 1963 in Lillehammer, Norway.Needs VoteOslo Filharmoniske OrkesterØvrevoll Spelemannslag + +4270988Joe SinacoreJoseph SinacoreAmerican jazz/pop guitarist, teacher & guitar shop owner. +Sinacore was a New York studio musician. He recorded with The Andrews Sisters in 1938, Dardanelle (1940s) and Illinois Jacquet in 1952. He played with many others including Patti Page, Frankie Lane and Bennie Goodman.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/343943/Sinacore_JosephIllinois Jacquet And His OrchestraThe Dardanelle Trio + +4271573Mair Jones (3)Welsh harpist, active 1970s to early 1990sNeeds VoteRoyal Liverpool Philharmonic Orchestra + +4272606Johanna PichlmairJohanna Pichlmair (born 1990) is an Austrian violinist.Needs Votehttps://www.johanna-pichlmair.deBerliner PhilharmonikerSymphonie-Orchester Des Bayerischen Rundfunks + +4274304Michael PilgaardDanish percussionist (born in 1963).Needs VoteMichael PilgårdAalborg Symfoniorkester + +4274847Lucja MadziarŁucja MadziarPolish classical violinist, born in 1981.Needs Votehttp://www.lucjamadziar.com/cv.htmlŁucja MadziarMünchner PhilharmonikerORF SymphonieorchesterEssener PhilharmonikerNiedersächsisches Staatsorchester Hannover + +4274851Mircea MocanitaRomanian classical violistNeeds VoteWDR Sinfonieorchester KölnOrchester der Bayreuther FestspieleTrio Allegra + +4276701Katja LämmermannKatja Lämmermann is a German violinist. +Needs VoteDeutsches Symphonie-Orchester BerlinCamerata Academica SalzburgOrchester Des Staatstheaters Am Gärtnerplatz + +4277656Ruth KiangBritish mezzo-sopranoCorrecthttps://ruthkiang.com/about/Metro VoicesLondon Voices + +4277657Eleanor MinneyEnglish classical alto / mezzo-soprano vocalist from Kettering, NorthamptonshireNeeds Votehttps://twitter.com/minneymezzohttps://www.instagram.com/minneymezzo/https://soundcloud.com/ellie-minneyhttp://www.bach-cantatas.com/Bio/Minney-Eleanor.htmLondon VoicesI FagioliniTenebrae (10) + +4278891Yannick VarletFrench classical keyboard instrumentalistNeeds Votehttps://yannickvarlet.fr/La Simphonie Du MaraisDa Pacem (2)Ensemble Mensa SonoraEnsemble europeen William Byrd + +4279045Christian RoscheckDouble bass player. + +Christian Roscheck studied double bass at the University of Music and Performing Arts in Vienna with Ludwig Streicher and is a member of the Vienna Symphony Orchestra since 1980. In 1987 he founded the Wiener Concert-Verein, whose managing director he is since that time. Husband of [a3104496] and father of [a3611463].Needs VoteChristian RoschekWiener SymphonikerWiener Concert-Verein + +4279076Stan Kenton And The Innovations OrchestraNeeds Major ChangesKentonStan Kenton & His Innovations OrchestraStan Kenton And His Innovations OrchestraStan Kenton And The "Innovations" OrchestraStan Kenton Innovations OrchestraStan Kenton's Innovations OrchestraStan KentonAbe LuboffAaron Shapiro + +4279080Gottfried MayerBass clarinettist.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-Verein + +4279081Wolfgang KuttnerClassical bassoonist. + +Wolfgang Kuttner studied at the Universität für Musik und darstellendes Kunst in Vienna with Karl and Camillo Öhlberger and since 1976 as a bassoonist member of the Vienna Symphony Orchestra. Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinWiener Mozart-BläserDie Wiener Kammersolisten + +4279084Edwin ProchartViolinist. + +Born in 1966 in Vienna and studied from 1976 to 1984 with Grete Biedermann at the Vienna Conservatory and then at Alfred Staar. Since 1987, first violinist with the [a696225].Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinThe Vienna Chamber Ensemble + +4279085Siegfried KüblböckClarinet player. + +Siegfried Küblböck was born in 1947 in Rohrbach / Upper Austria and studied from 1966 at the University of Music and Performing Arts in Vienna under Karl Rudolf Jettel and Austrians concert clarinet . Between 1968 and 1970 he played in the Kurorchestern Bad Schallerbach and Bad Ischl and was from 1971 to 1973 first clarinet in the City Theatre Baden . Since September 1973 Küblböck as clarinetist of the Vienna Symphony Orchestra.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinThe Vienna Chamber Ensemble + +4279086Clemens HorakOboe player. + +Born in Vienna on November 29, 1969. in 1989, he graduated from the Musical High School, and only shortly thereafter received an engagement as first oboist with the Vienna Symphony Orchestra. In the following years, besides his work with the symphony, and making many solo and chamber music appearances, he continued his studies at the Vienna College of Music, acquiring his diploma in 1994.Needs VoteWiener Concert-VereinWiener Philharmoniker + +4279087Richard GallerRichard Galler (1967 in Graz, Austria) is an Austrian bassoonist. He's the principal bassoonist with the [a696225] since 1987.Needs VoteWiener SymphonikerWiener Concert-VereinEnsemble Wien-BerlinWiener KammerensembleEnsemble Contrasts Wien + +4279088Gerhard KanzianGerhard KanzianAustrian violist, arranger, composer, producer and engineer.Needs VoteG. KanzianGerhard Kanzian (KVK-Klangstudio)Wiener Symphoniker + +4279089Gerald PachingerGerald Pachinger (1967 in Ried Austria) is an Austrian classical clarinetist. +Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-VereinWiener KammerensembleGustav Mahler JugendorchesterEnsemble Contrasts Wien + +4279148Alexandra UhligFlutist. + +Born in Innsbruck, Austria. +A member of various chamber music ensembles such as the Vienna Symphony Orchestra, the Vienna Chamber musicians and "Bella Musica" . With harpist Maria Grazia Pistan she founded in 1989, the Kammerduo Vienna.Needs VoteAlexandra SchlenckAlexandra SchlenckVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-Verein + +4279847Louisa SchwabGerman classical cellist, born 1987 in Potsdam, Germany.Needs VoteNeubrandenburger PhilharmonieNightingale String QuartetDR SymfoniOrkestret + +4280299Talia Mense KlingNeeds Voteטליה קלינגIsrael Philharmonic Orchestra + +4280377Guido MarggranderGerman drummer, born in 1964 in Karlsruhe, Germany.CorrectSymphonie-Orchester Des Bayerischen RundfunksDarek Ensemble + +4280569Günther Weber (3)Classical horn player.Needs VoteGünther WeberSymphonie-Orchester Des Bayerischen Rundfunks + +4280571Olaf KlamandClassical Hornplayer + +Musical training in Darmstadt, Frankfurt/M. and Salzburg, Former member of the Symphony orchestra of Radio Irland and Radio Iceland and of the Munich Philharmonic; since 1968 member of the Bavarian Radio Symphony. + +Needs VoteO. KlamandOlav KlamandОлав КламандSymphonie-Orchester Des Bayerischen RundfunksResidenz-Quintett MünchenMünchner Blechbläsersolisten + +4280667Herman WeinbergAmerican violinist, born in 1895 and died in 1981.CorrectThe Philadelphia OrchestraNBC Symphony Orchestra + +4280795Yoshiko HagiwaraClassical violinistCorrect萩原芳子Camerata Academica Salzburg + +4283464Merlin HarrisonBritish recorder player and oboistNeeds VoteThe English ConcertThe Flautadors Recorder QuartetSpiritato! + +4283661Jost-Michael HaaseRecording engineer mostly for classical releases.Needs VoteJoost HaaseJoost Haase (DG)Jost Michael Haase + +4285138David Moore (32)Tuba playerCorrecthttp://www.sterlingbrass.co.uk/Sterling%20Customers/David%20Moore/David_Moore_fullbiog.htmPhilip Jones Brass Ensemble + +4285139Alan CumberlandBritish classical percussionist, he was notably principal timpanist of the London Philharmonic Orchestra for twenty years.Needs Votehttp://www.alancumberland.comhttp://www.youthorchestra.hk/index_topic.php?did=225099&didpath=/196635/225099London Philharmonic OrchestraQueensland Symphony OrchestraQueensland Philharmonic Orchestra + +4285496Jeffrey WeisnerAmerican double bass playerNeeds Votehttp://www.jeffreyweisner.com/Jeff WeisnerSan Francisco SymphonyNational Symphony Orchestra + +4286163William Stafford (2)English clarinettist, Sub Principal Clarinet with the Scottish Chamber Orchestra since 2011.Needs Votehttp://www.morgensternsdiaryservice.com/WebProfile/stafford_w_7218.shtml#http://www.hyperion-records.co.uk/a.asp?a=A3161William StaffordScottish Chamber OrchestraScottish Chamber Orchestra Wind Soloists + +4286168Alec Frank-GemmillEnglish classical horn player. Principal Horn of the Scottish Chamber Orchestra since 2009.Needs Votehttp://www.alecfrankgemmill.comhttp://www.bbtrust.com/2014/fellowships/alec_frank-gemmill_1.html?view=biographyhttp://www.sco.org.uk/experience/people/orchestra/alec-frank-gemmillScottish Chamber OrchestraGöteborgs SymfonikerEnsemble MarsyasScottish Chamber Orchestra Wind SoloistsEstonian Festival Orchestra + +4287307Leon KetchumIn the announcement press release for the Haven Records label, Ketchum is described as "Lee Skylark Ketchum", former Lucky Millinder vocalist who is a popular Chicago singer of romance tunes.Needs Votehttps://www.newspapers.com/article/the-call-haven-records-founded-by-jack-d/185540539/Leon "Skylark" KetchumSkylarkLucky Millinder And His OrchestraJimmy Dale Band + +4287535Johan LinderothSwedish classical tenorNeeds Votehttp://www.johanlinderoth.se/biography.htmlTheatre Of VoicesVox Scaniensis + +4289727Steven HendricksonAmerican trumpet player. (1951–2022)Needs VoteNational Symphony Orchestra + +4290964Albin CarlssonAxel Albin Mauritz CarlssonComposer of Arholmavalsen +Born November 13, 1880 i Össeby-Garns församling, Sweden — died October 6, 1958 in Stockholm, SwedenNeeds VoteA. CarlsonA. CarlssonAlbin KarlssonCarlsson + +4292026Angelos KritikosTrombonistNeeds VoteBamberger SymphonikerTrombone Unit HannoverSalaputia Brass + +4293455Ten Black BerriesTen Black Berries (or Mills' Ten Blackberries) was a pseudonym for [a=Duke Ellington And His Orchestra].Needs Votehttp://redhotjazz.com/millstbb.htmlDuke Ellington's Ten Black BerriesMill's Ten Black BerriesMills Ten Black BerriesMills Ten BlackberriesMills' Ten Black BerriesMills' Ten BlackberriesThe Ten Black BerriesThe Ten BlackberriesDuke Ellington And His OrchestraDuke Ellington + +4295460Claude DucrocqClaude Ducrocq (1943 - 2018) was a French violist and former principal violist with the [a1065000].Needs VoteClaude Ducrocq AltoOrchestre Philharmonique De Strasbourg + +4297669Thomas PfütznerClassical bass vocalistNeeds VoteDresdner KammerchorRundfunkchor Berlin + +4301216Yrjö LuukkonenNeeds VoteDallapéHumppa-Veikot + +4301584Mor BironMor Biron (born 1982) is a Classical israeli bassoonist. He was a member of the [a260744] from 2007 to 2021.Needs VoteBerliner PhilharmonikerPhilharmonisches Oktett BerlinEnsemble Berlin Prag + +4302342Françoise DuffaudFrench classical violinistNeeds VoteLes Musiciens Du LouvreEnsemble StradivariaLes Paladins + +4302620Veronika LenártováClassical slovakian violistNeeds VoteRotterdams Philharmonisch Orkest + +4305163Magnus WennerbergClassical tenor vocalistNeeds VoteOslo KammerkorRadiokören + +4305393Black BossHip Hop / RnB project from Ukraine.Needs VoteBBLVCKBX$$BxB`fffffAJ FranklinGenetic TranceVziel ProjetVxZxDas Gonob QuasiformaGraphic StandartMarasmatronics ProjetSomewhere At The Edge Of Our UniverseAtmalingamTextual Sound ProjectStryggaldvyrLiquid Music ProjectObscurejdGenetic ShitNo More LifeP. SadowFandorin ProjetAlex Usiel IschenkauGraphic Sound ProjectDefault ArtistVrendeferlAlex U. Ischenkau Avant-Garde Music BandYerunda ProjetStoner GenahDer SpaßfernsprecherWhile Walking In The Highest Depths Of Celestial Nothingness I Suddenly Realized The Existence Of The Mortal Intraception [...]Vdaqzad Madagnl DajadefUsielGenetic TrashALeXXXaTahNForuponofEmetic GrumeDJ N0BELArlene B GypseyApathiesChild PornRelative;VzielBumburumCaliph MutaborوأناجPurulent Headache{{{VVÜÜÜRZÜÜÜΛΛ}}}COM SurrogateSULEIMAN IBRAGIMOVHarsh Noise WallThrust PompSurrogate SigmaTiholazMerzluxТанцор из ФранцииSiberian MiceעוזיאלFemale RapistMe & IbrzuStarving For SevenUppercut ManagerArissa FranklinPrison ComfortIMY ScapesEntering OpeningWhite WoundDeformed Skeletal TouchSuicide WhoreЭто гавничDeep HatePurple AshGerman ChristiansSpækonaFeral WitnessRazorblade SublemmaPickelhaubeIvy AlleyWrong SexUnspeakable ProlegomenaScham der KunstЯ 2Я 3Яблочный сойузъ купидон скала тропинка спечьноПривет, это лохМедиакукишЯ 16Я 17Я 14Я 15Я 12Я 13Я 10Я 11Я 18Я 19Я 4Я 5Я 6Я 7Я 8Я 9Я 28Я 23Я 22Я 21Я 20Я 27Я 26Я 25Я 24YpopoZubotripobabotuponipomutogutosutoputocutolutozutorutomutogutovutoЯблочныйПижамчик с РутрекераДобрый и позитивныйАпельсиновыйОжидал, но не увиделОтзывчивыйZuzupupupupupupupupupupupupupupupupupupupupupupupupupuZurienZweider ZimmermansZxc 2ZXXXXXXXXXX 6677Why the Touch, Step of Darkness Series, Amplitude, Visible in Grains, Purple SteamAcacia FranklinAdelae FranklinAdelida FranklinAdrielle FranklinAishreen FranklinAishmeen FranklinAbbie FranklinAizza-Mckayla FranklinAashna FranklinAkayla FranklinAishani FranklinAda FranklinAbaigael FranklinAddisyn FranklinAaleah FranklinAdelee FranklinAdrienne FranklinAdhya FranklinAhana FranklinAdalind FranklinAaniya FranklinAarya FranklinAaiza FranklinAbrianna FranklinAirah-lee FranklinAbigaile FranklinAdaira FranklinAiden FranklinAkima FranklinAayah FranklinAditree FranklinAaryana FranklinAerith FranklinAaliyah-Faith FranklinAauriah FranklinAbigayle FranklinAdeline FranklinAdelia FranklinAdara FranklinAashi FranklinAileen FranklinAbem FranklinAeris FranklinAasiyah FranklinAidan FranklinAbbygail-Claire FranklinAdn FranklinAdya FranklinAiza FranklinAaliyah FranklinAaria FranklinAirabella FranklinAbbygale FranklinAbegail FranklinAdaeze FranklinAkiko FranklinAevyn FranklinAddie-Mae FranklinAdela FranklinAkeira FranklinAdesa FranklinAgam FranklinAhrianna FranklinAicha FranklinAdalia FranklinAdlee FranklinAayat FranklinAchan FranklinAdaisa FranklinAbigayl FranklinAhniyah FranklinAdilee FranklinAislyn FranklinAiden-Getne FranklinAidyn FranklinAbbagail FranklinAislinn FranklinAkaasha FranklinAbilleh FranklinAkasha FranklinAdeena FranklinAfshin FranklinAarvi FranklinAbbrianna FranklinAdrianna FranklinAgamjot FranklinAchsa FranklinAisling FranklinAddilynn FranklinAdriana FranklinAilish FranklinAimie FranklinAalaa FranklinAira-Bella FranklinAaminah FranklinAbigael FranklinAdreana FranklinAkaliah FranklinAisley FranklinAbeera FranklinAdia FranklinAayla FranklinAbeer FranklinAbby-lynn FranklinAdtheres FranklinAida FranklinAdvika FranklinAdhora FranklinAdelleda FranklinAbygail FranklinAbheri FranklinAjwah FranklinAbuk FranklinAeriana FranklinAkeysha FranklinAdhel FranklinAera FranklinAgasi FranklinAalia FranklinAddilyn FranklinAira FranklinAdaline FranklinAaira FranklinAdele FranklinAdina FranklinAddison FranklinAinsleigh FranklinAditi FranklinAbbygaile FranklinAdalina FranklinAiona FranklinAdriyah FranklinAddalyn FranklinAdriann FranklinAja FranklinAganetha FranklinAaliah FranklinAila FranklinAdleigh FranklinAJ Franklin (2)Ainslee FranklinAfsana FranklinAfrdita FranklinAi FranklinAizlynn FranklinAdelyn FranklinAadhya FranklinAiesha FranklinAbidaille FranklinAiryana FranklinAhlyssa FranklinAimen FranklinAdyson FranklinAbyan FranklinAbella FranklinAdeleigh FranklinAikam FranklinAdeleine FranklinAbbilene FranklinAirriana FranklinAbebaye FranklinAarolyn FranklinAdessa FranklinAdelaide FranklinAdley FranklinAbbygail FranklinAbinoor FranklinAdelina FranklinAisha FranklinAdna FranklinAbagayle FranklinAedre FranklinAdalyn FranklinAbbigail FranklinAddaline FranklinAbbigale FranklinAaliyah-noor FranklinAbeeha FranklinAiyanah FranklinAddie FranklinAinsley-Rae FranklinAbbi FranklinAirelle FranklinAderyn FranklinAbbegail FranklinAbeni FranklinAbbey FranklinAdelaine FranklinAhmiah FranklinAbby FranklinAaralyn FranklinAdysen FranklinAahliah FranklinAbigail FranklinAbigale FranklinAaleya FranklinAfreen FranklinAddalynn FranklinAdrika FranklinAdrianne FranklinAdisyn FranklinAinslie FranklinAjuni FranklinAdelynn FranklinAkiesha FranklinAashka FranklinAarohi FranklinAddelynn FranklinAdalie FranklinAdaya FranklinAdella FranklinAhliyah FranklinAizah FranklinAddi-Lynne FranklinAhin FranklinAbygale FranklinAcelyn FranklinAjulu FranklinAdaleigh FranklinAaneya FranklinAislynn FranklinAdria FranklinAavya FranklinAgatha FranklinAbbigaile FranklinAine FranklinAfrin FranklinAahna FranklinAiva FranklinAdetoke FranklinAbida FranklinAbabya FranklinAdrienn FranklinAangi FranklinAdayah FranklinAbbigayle FranklinAbba FranklinAdau FranklinAbbey-Gail FranklinAiryn FranklinAdalayde FranklinAdalynn FranklinAddyson FranklinAiyanna FranklinAilyn FranklinAasha FranklinAjwa FranklinAdeleah FranklinAdlynn FranklinAela FranklinAddley FranklinAhvaya-Leigh FranklinAayana FranklinAbagail FranklinAdisson FranklinAayushi FranklinAbrielle FranklinAireanna FranklinAishryia FranklinAkin-Lee FranklinAderinsola FranklinAfnan FranklinAdelade FranklinAgnes FranklinAbbygayle FranklinAbijot FranklinAjah FranklinAcasia FranklinAddy FranklinAdah FranklinAkaisha FranklinAchol FranklinAdedamisola FranklinAdanaya FranklinAeva FranklinAise FranklinAishah FranklinAdalyne FranklinAdalee FranklinAimee FranklinAjooni FranklinAinsley FranklinAdelise FranklinAísling FranklinAamina FranklinAiselle FranklinAddeline FranklinAikha FranklinAdelle FranklinAfnaan FranklinAiyana FranklinAili FranklinAirhanna FranklinAjia FranklinAanya FranklinAdelaide-Lucille FranklinЯкоб Садовников‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›Adria Franklin, 2Adeleigh Franklin, 2Abigaile Franklin, 2Ai Franklin, 2Adley Franklin, 2Aishah Franklin, 2Aaiza Franklin, 2Airah-lee Franklin, 2Abidaille Franklin, 2Abeer Franklin, 2Akasha Franklin, 2Aida Franklin, 2Adalind Franklin, 2Akiesha Franklin, 2Abilleh Franklin, 2Airriana Franklin, 2Abbigale Franklin, 2Adlee Franklin, 2Aderyn Franklin, 2Aimee Franklin, 2AJ Franklin, 2Adreana Franklin, 2Adelida Franklin, 2Aaleah Franklin, 2Airelle Franklin, 2Abeeha Franklin, 2Aaleya Franklin, 2Ainsley-Rae Franklin, 2Ailish Franklin, 2Adtheres Franklin, 2Adysen Franklin, 2Abbigail Franklin, 2Advika Franklin, 2Agamjot Franklin, 2Adriana Franklin, 2Adeena Franklin, 2Abegail Franklin, 2Addeline Franklin, 2Abbey-Gail Franklin, 2Abem Franklin, 2Abagail Franklin, 2Afrin Franklin, 2Akaisha Franklin, 2Aaliah Franklin, 2Adleigh Franklin, 2Aerith Franklin, 2Adalie Franklin, 2Adaya Franklin, 2Adelae Franklin, 2Aaryana Franklin, 2Aangi Franklin, 2Addalyn Franklin, 2Abigail Franklin, 2Aira Franklin, 2Aayla Franklin, 2Adelaide-Lucille Franklin, 2Aiselle Franklin, 2Adalynn Franklin, 2Ajwa Franklin, 2Aarohi Franklin, 2Adrianne Franklin, 2Addisyn Franklin, 2Akima Franklin, 2Abbygail-Claire Franklin, 2Aiyanah Franklin, 2Aishryia Franklin, 2Abygale Franklin, 2Abaigael Franklin, 2Aeva Franklin, 2Aisha Franklin, 2Aaralyn Franklin, 2Aísling Franklin, 2Aizah Franklin, 2Airhanna Franklin, 2Adeleah Franklin, 2Addley Franklin, 2Agasi Franklin, 2Abeni Franklin, 2Aimen Franklin, 2Aadhya Franklin, 2Aasha Franklin, 2Aila Franklin, 2Adisson Franklin, 2Abbagail Franklin, 2Adesa Franklin, 2Abigayle Franklin, 2Adeline Franklin, 2Abbilene Franklin, 2Aarya Franklin, 2Aishreen Franklin, 2Aadya Franklin, 2Adalayde Franklin, 2Afrdita Franklin, 2Akeysha Franklin, 2Ahrianna Franklin, 2Aaliyah Franklin, 2Ahlyssa Franklin, 2Abheri Franklin, 2Adele Franklin, 2Adrika Franklin, 2Aaniya Franklin, 2Aiyanna Franklin, 2Aalia Franklin, 2Ainslee Franklin, 2Abbygaile Franklin, 2Adhya Franklin, 2Adalina Franklin, 2Aauriah Franklin, 2Aaminah Franklin, 2Adhora Franklin, 2Ailyn Franklin, 2Adara Franklin, 2Abuk Franklin, 2Adelee Franklin, 2Addalynn Franklin, 2Adelise Franklin, 2Aimie Franklin, 2Adanaya Franklin, 2Aalaa Franklin, 2Abigale Franklin, 2Adalyne Franklin, 2Abebaye Franklin, 2Abigayl Franklin, 2Adelaine Franklin, 2Adn Franklin, 2Abbygale Franklin, 2Aaliyah-noor Franklin, 2Aidan Franklin, 2Aislyn Franklin, 2Abbegail Franklin, 2Abbi Franklin, 2Afton Franklin, 2Adelia Franklin, 2Adella Franklin, 2Aidyn Franklin, 2Adela Franklin, 2Abbigaile Franklin, 2Adyson Franklin, 2Ababya Franklin, 2Adelaide Franklin, 2Adrienne Franklin, 2Aasiyah Franklin, 2Adilee Franklin, 2Aela Franklin, 2Adrienn Franklin, 2Ainsley Franklin, 2Abbigayle Franklin, 2Aja Franklin, 2Akayla Franklin, 2Acasia Franklin, 2Addy Franklin, 2Aili Franklin, 2Aiona Franklin, 2Addie Franklin, 2Adna Franklin, 2Ajia Franklin, 2Aarna Franklin, 2Aayah Franklin, 2Akaasha Franklin, 2Aditree Franklin, 2Ajwah Franklin, 2Abigael Franklin, 2Aaliyah-Faith Franklin, 2Aira-Bella Franklin, 2Airyn Franklin, 2Achsa Franklin, 2Achan Franklin, 2Adaisa Franklin, 2Adedamisola Franklin, 2Abella Franklin, 2Abyan Franklin, 2Aayana Franklin, 2Aiden Franklin, 2Adau Franklin, 2Adah Franklin, 2Abbey Franklin, 2Aedre Franklin, 2Adalyn Franklin, 2Addie-Mae Franklin, 2Aaira Franklin, 2Aaria Franklin, 2Aiesha Franklin, 2Agnes Franklin, 2Adaira Franklin, 2Adelleda Franklin, 2Adayah Franklin, 2Aireanna Franklin, 2Abba Franklin, 2Aashi Franklin, 2Abrielle Franklin, 2Aahna Franklin, 2Adina Franklin, 2Aashka Franklin, 2Agatha Franklin, 2Adelynn Franklin, 2Addilyn Franklin, 2Aishani Franklin, 2Addi-Lynne Franklin, 2Aikha Franklin, 2Abby Franklin, 2Addison Franklin, 2Aditi Franklin, 2Aderinsola Franklin, 2Aeriana Franklin, 2Abbrianna Franklin, 2Aayat Franklin, 2Abygail Franklin, 2Addyson Franklin, 2Abby-lynn Franklin, 2Acelyn Franklin, 2Aayushi Franklin, 2Akaliah Franklin, 2Aislynn Franklin, 2Aarvi Franklin, 2Aevyn Franklin, 2Addilynn Franklin, 2Abbygail Franklin, 2Ahvaya-Leigh Franklin, 2Aiva Franklin, 2Abinoor Franklin, 2Aiden-Getne Franklin, 2Ahliyah Franklin, 2Aise Franklin, 2Aera Franklin, 2Adya Franklin, 2Ahmiah Franklin, 2Afnan Franklin, 2Adisyn Franklin, 2Abida Franklin, 2Adaeze Franklin, 2Adelyn Franklin, 2Adetoke Franklin, 2Aine Franklin, 2Aadhira Franklin, 2Aiza Franklin, 2Acacia Franklin, 2Aizlynn Franklin, 2Abeera Franklin, 2Aanya Franklin, 2Aashna Franklin, 2Akeira Franklin, 2Aislinn Franklin, 2Adalia Franklin, 2Adelle Franklin, 2Adelade Franklin, 2Ahana Franklin, 2Adia Franklin, 2Ainslie Franklin, 2Abbygayle Franklin, 2Ajuni Franklin, 2Aishmeen Franklin, 2Afnaan Franklin, 2Adlynn Franklin, 2Akin-Lee Franklin, 2Ahniyah Franklin, 2Adeleine Franklin, 2Aileen Franklin, 2Aeris Franklin, 2Agam Franklin, 2Aavya Franklin, 2Afreen Franklin, 2Ada Franklin, 2Aicha Franklin, 2Ajulu Franklin, 2Adriyah Franklin, 2Adhel Franklin, 2Adriann Franklin, 2Aisley Franklin, 2Abbie Franklin, 2Adessa Franklin, 2Aisling Franklin, 2Aizza-Mckayla Franklin, 2Adaleigh Franklin, 2Addaline Franklin, 2Adelina Franklin, 2Addelynn Franklin, 2Abagayle Franklin, 2Aaneya Franklin, 2Achol Franklin, 2Akiko Franklin, 2Ahin Franklin, 2Aiyana Franklin, 2Afsana Franklin, 2Adrielle Franklin, 2Ajah Franklin, 2Aarolyn Franklin, 2Aikam Franklin, 2Adalee Franklin, 2Aahliah Franklin, 2Airabella Franklin, 2Ainsleigh Franklin, 2Afshin Franklin, 2Ajooni Franklin, 2Airyana Franklin, 2Aamina Franklin, 2Aganetha Franklin, 2Adaline Franklin, 2Abrianna Franklin, 2Abijot Franklin, 2Adrianna Franklin, 2Adria Franklin, 3Abigaile Franklin, 3Adeleigh Franklin, 3Ai Franklin, 3Aishah Franklin, 3Adley Franklin, 3Aislyn Franklin, 3Aaiza Franklin, 3Abidaille Franklin, 3Airah-lee Franklin, 3Advika Franklin, 3Adalind Franklin, 3Aiyanah Franklin, 3Abilleh Franklin, 3Abbigale Franklin, 3Aimee Franklin, 3Aderyn Franklin, 3Aaleah Franklin, 3Adelida Franklin, 3Abeeha Franklin, 3Airelle Franklin, 3Aaleya Franklin, 3Ailish Franklin, 3Adrielle Franklin, 3Adtheres Franklin, 3Adysen Franklin, 3Aiyanna Franklin, 3Abbigail Franklin, 3Agamjot Franklin, 3Ainsley-Rae Franklin, 3Adalina Franklin, 3Adeena Franklin, 3Adriana Franklin, 3Abegail Franklin, 3Akiko Franklin, 3Addeline Franklin, 3Abagail Franklin, 3Aileen Franklin, 3Aarohi Franklin, 3Abem Franklin, 3Aaliah Franklin, 3Abbey-Gail Franklin, 3Adleigh Franklin, 3Aerith Franklin, 3Adalie Franklin, 3Adaya Franklin, 3Adhora Franklin, 3Aaryana Franklin, 3Addalyn Franklin, 3Aangi Franklin, 3Abigail Franklin, 3Akeysha Franklin, 3Adilee Franklin, 3Adelaide-Lucille Franklin, 3Aayla Franklin, 3Aiselle Franklin, 3Adrianne Franklin, 3Adalynn Franklin, 3Aira Franklin, 3Abaigael Franklin, 3Airhanna Franklin, 3Akima Franklin, 3Addisyn Franklin, 3Abbygail-Claire Franklin, 3Adelae Franklin, 3Abygale Franklin, 3Akeira Franklin, 3Aeva Franklin, 3Aaralyn Franklin, 3Aísling Franklin, 3Aisha Franklin, 3Adessa Franklin, 3Adeleah Franklin, 3Ajwa Franklin, 3Addley Franklin, 3Abeni Franklin, 3Aadhya Franklin, 3Aimen Franklin, 3Ajah Franklin, 3Aasha Franklin, 3Adisson Franklin, 3Aiva Franklin, 3Abbagail Franklin, 3Abigayle Franklin, 3Ada Franklin, 3Abbilene Franklin, 3Adeline Franklin, 3Aarya Franklin, 3Adalia Franklin, 3Aishreen Franklin, 3Afrdita Franklin, 3Adalayde Franklin, 3Adesa Franklin, 3Ahrianna Franklin, 3Aalaa Franklin, 3Aaliyah Franklin, 3Aida Franklin, 3Adele Franklin, 3Abheri Franklin, 3Adrika Franklin, 3Aayat Franklin, 3Aaniya Franklin, 3Ainslee Franklin, 3Aalia Franklin, 3Abbygaile Franklin, 3Aauriah Franklin, 3Acelyn Franklin, 3Aaminah Franklin, 3Abeer Franklin, 3Aditi Franklin, 3Adelee Franklin, 3Abuk Franklin, 3Adelise Franklin, 3Addalynn Franklin, 3Aimie Franklin, 3Adanaya Franklin, 3Abigale Franklin, 3Aadya Franklin, 3Adalyne Franklin, 3AJ Franklin, 3Abebaye Franklin, 3Abigayl Franklin, 3Adn Franklin, 3Adelaine Franklin, 3Aaliyah-noor Franklin, 3Abbygale Franklin, 3Aidan Franklin, 3Afnan Franklin, 3Abbi Franklin, 3Adelia Franklin, 3Afton Franklin, 3Aidyn Franklin, 3Abbegail Franklin, 3Adela Franklin, 3Adyson Franklin, 3Abbigaile Franklin, 3Ababya Franklin, 3Adelaide Franklin, 3Ahmiah Franklin, 3Akaisha Franklin, 3Aasiyah Franklin, 3Akiesha Franklin, 3Adrienn Franklin, 3Aela Franklin, 3Ainsley Franklin, 3Abbigayle Franklin, 3Aja Franklin, 3Aila Franklin, 3Acasia Franklin, 3Akayla Franklin, 3Addy Franklin, 3Addie Franklin, 3Aiona Franklin, 3Adna Franklin, 3Aarna Franklin, 3Aili Franklin, 3Aayah Franklin, 3Ahlyssa Franklin, 3Aditree Franklin, 3Airyn Franklin, 3Abigael Franklin, 3Akaasha Franklin, 3Aira-Bella Franklin, 3Aaliyah-Faith Franklin, 3Achan Franklin, 3Achsa Franklin, 3Aishryia Franklin, 3Adaisa Franklin, 3Abella Franklin, 3Abyan Franklin, 3Aikam Franklin, 3Aayana Franklin, 3Aiden Franklin, 3Adah Franklin, 3Adau Franklin, 3Abbey Franklin, 3Aedre Franklin, 3Adalyn Franklin, 3Aaira Franklin, 3Aaria Franklin, 3Adelleda Franklin, 3Agnes Franklin, 3Adaira Franklin, 3Adrienne Franklin, 3Aiesha Franklin, 3Adayah Franklin, 3Abrielle Franklin, 3Abba Franklin, 3Aireanna Franklin, 3Aashi Franklin, 3Ailyn Franklin, 3Aahna Franklin, 3Adina Franklin, 3Adella Franklin, 3Aashka Franklin, 3Agatha Franklin, 3Aishani Franklin, 3Adelynn Franklin, 3Addilyn Franklin, 3Ajooni Franklin, 3Addi-Lynne Franklin, 3Abby Franklin, 3Addison Franklin, 3Aikha Franklin, 3Aderinsola Franklin, 3Abygail Franklin, 3Aeriana Franklin, 3Abbrianna Franklin, 3Adlee Franklin, 3Ajwah Franklin, 3Addyson Franklin, 3Abby-lynn Franklin, 3Akaliah Franklin, 3Aayushi Franklin, 3Aarvi Franklin, 3Aevyn Franklin, 3Addilynn Franklin, 3Abbygail Franklin, 3Ahvaya-Leigh Franklin, 3Aise Franklin, 3Abinoor Franklin, 3Aiden-Getne Franklin, 3Ajulu Franklin, 3Ahliyah Franklin, 3Aera Franklin, 3Akasha Franklin, 3Adisyn Franklin, 3Adetoke Franklin, 3Abida Franklin, 3Adaeze Franklin, 3Adhya Franklin, 3Adelyn Franklin, 3Aislynn Franklin, 3Aadhira Franklin, 3Aine Franklin, 3Acacia Franklin, 3Adedamisola Franklin, 3Ahniyah Franklin, 3Abeera Franklin, 3Aashna Franklin, 3Aanya Franklin, 3Adya Franklin, 3Aizlynn Franklin, 3Aislinn Franklin, 3Aishmeen Franklin, 3Adelle Franklin, 3Ahana Franklin, 3Adelade Franklin, 3Ainslie Franklin, 3Adia Franklin, 3Abbygayle Franklin, 3Adlynn Franklin, 3Afnaan Franklin, 3Akin-Lee Franklin, 3Afrin Franklin, 3Adeleine Franklin, 3Aiza Franklin, 3Aeris Franklin, 3Agam Franklin, 3Addie-Mae Franklin, 3Airriana Franklin, 3Agasi Franklin, 3Aizah Franklin, 3Aavya Franklin, 3Aicha Franklin, 3Afreen Franklin, 3Adriyah Franklin, 3Adriann Franklin, 3Adhel Franklin, 3Abbie Franklin, 3Addaline Franklin, 3Aisling Franklin, 3Aisley Franklin, 3Aizza-Mckayla Franklin, 3Adaleigh Franklin, 3Ajia Franklin, 3Adelina Franklin, 3Abagayle Franklin, 3Addelynn Franklin, 3Achol Franklin, 3Aaneya Franklin, 3Ahin Franklin, 3Afsana Franklin, 3Aiyana Franklin, 3Adara Franklin, 3Airabella Franklin, 3Aarolyn Franklin, 3Adalee Franklin, 3Aahliah Franklin, 3Airyana Franklin, 3Adreana Franklin, 3Afshin Franklin, 3Ajuni Franklin, 3Ainsleigh Franklin, 3Aamina Franklin, 3Aganetha Franklin, 3Abrianna Franklin, 3Adaline Franklin, 3Adrianna Franklin, 3Abijot Franklin, 3Adley Franklin, 4Adrianne Franklin, 4Ai Franklin, 4Adeleigh Franklin, 4Abigaile Franklin, 4Adria Franklin, 4Abbey-Gail Franklin, 4Aislyn Franklin, 4Abem Franklin, 4Ainsley-Rae Franklin, 4Abidaille Franklin, 4Abilleh Franklin, 4Aisha Franklin, 4Adalind Franklin, 4Aida Franklin, 4Adreana Franklin, 4Abeer Franklin, 4Aderyn Franklin, 4Aimee Franklin, 4Abbigale Franklin, 4Aditi Franklin, 4Aaminah Franklin, 4Aaleya Franklin, 4Airelle Franklin, 4Abeeha Franklin, 4Adelida Franklin, 4Aaleah Franklin, 4Ajooni Franklin, 4Aiyanah Franklin, 4Adysen Franklin, 4Adtheres Franklin, 4Ailish Franklin, 4Aaiza Franklin, 4Abbigail Franklin, 4Addeline Franklin, 4Abegail Franklin, 4Adriana Franklin, 4Adeena Franklin, 4Akaisha Franklin, 4Aaliah Franklin, 4Akin-Lee Franklin, 4Aavya Franklin, 4Aileen Franklin, 4Adaya Franklin, 4Adalie Franklin, 4Aerith Franklin, 4Adleigh Franklin, 4Afrin Franklin, 4Abigail Franklin, 4Aangi Franklin, 4Addalyn Franklin, 4Aaryana Franklin, 4Adhora Franklin, 4Adalynn Franklin, 4Airyana Franklin, 4Aiselle Franklin, 4Aayla Franklin, 4Adelaide-Lucille Franklin, 4Ahniyah Franklin, 4Aadya Franklin, 4Aishah Franklin, 4Airhanna Franklin, 4Abaigael Franklin, 4Ahlyssa Franklin, 4Addisyn Franklin, 4Abygale Franklin, 4Advika Franklin, 4Abbygail-Claire Franklin, 4Akima Franklin, 4Aísling Franklin, 4Aaralyn Franklin, 4Aeva Franklin, 4Addley Franklin, 4Adeleah Franklin, 4AJ Franklin, 4Aira Franklin, 4Adisson Franklin, 4Aasha Franklin, 4Adilee Franklin, 4Aimen Franklin, 4Aadhya Franklin, 4Abeni Franklin, 4Aarya Franklin, 4Akasha Franklin, 4Adeline Franklin, 4Abbilene Franklin, 4Abigayle Franklin, 4Abbagail Franklin, 4Adara Franklin, 4Ahrianna Franklin, 4Aarohi Franklin, 4Adalayde Franklin, 4Afrdita Franklin, 4Airah-lee Franklin, 4Adalia Franklin, 4Adrika Franklin, 4Abheri Franklin, 4Adele Franklin, 4Airabella Franklin, 4Aaliyah Franklin, 4Akeysha Franklin, 4Aalia Franklin, 4Ainslee Franklin, 4Aislynn Franklin, 4Aaniya Franklin, 4Abagail Franklin, 4Adalina Franklin, 4Aauriah Franklin, 4Abbygaile Franklin, 4Adesa Franklin, 4Addalynn Franklin, 4Adelise Franklin, 4Abuk Franklin, 4Adelee Franklin, 4Adrielle Franklin, 4Adedamisola Franklin, 4Aalaa Franklin, 4Abigale Franklin, 4Aayat Franklin, 4Aikha Franklin, 4Aimie Franklin, 4Abigayl Franklin, 4Abebaye Franklin, 4Abbegail Franklin, 4Adalyne Franklin, 4Aidan Franklin, 4Abbygale Franklin, 4Aaliyah-noor Franklin, 4Adelaine Franklin, 4Adn Franklin, 4Adella Franklin, 4Aidyn Franklin, 4Afton Franklin, 4Adelia Franklin, 4Abbi Franklin, 4Adelaide Franklin, 4Akaasha Franklin, 4Ababya Franklin, 4Abbigaile Franklin, 4Adyson Franklin, 4Adela Franklin, 4Aela Franklin, 4Adrienn Franklin, 4Aasiyah Franklin, 4Aizah Franklin, 4Ahmiah Franklin, 4Aja Franklin, 4Abbigayle Franklin, 4Aiza Franklin, 4Ainsley Franklin, 4Aiona Franklin, 4Addie Franklin, 4Addy Franklin, 4Akayla Franklin, 4Acasia Franklin, 4Aditree Franklin, 4Aayah Franklin, 4Airyn Franklin, 4Ajia Franklin, 4Aarna Franklin, 4Adna Franklin, 4Aili Franklin, 4Aaliyah-Faith Franklin, 4Aira-Bella Franklin, 4Aila Franklin, 4Abigael Franklin, 4Abyan Franklin, 4Abella Franklin, 4Adaisa Franklin, 4Aishryia Franklin, 4Achsa Franklin, 4Achan Franklin, 4Abbey Franklin, 4Adau Franklin, 4Adah Franklin, 4Ajwa Franklin, 4Aiden Franklin, 4Aayana Franklin, 4Aaria Franklin, 4Aaira Franklin, 4Adelleda Franklin, 4Adalyn Franklin, 4Adrienne Franklin, 4Akiesha Franklin, 4Aedre Franklin, 4Airriana Franklin, 4Adaira Franklin, 4Agnes Franklin, 4Addie-Mae Franklin, 4Aiesha Franklin, 4Ailyn Franklin, 4Aashi Franklin, 4Aireanna Franklin, 4Abba Franklin, 4Abygail Franklin, 4Aashka Franklin, 4Adina Franklin, 4Aahna Franklin, 4Adanaya Franklin, 4Addilyn Franklin, 4Adelae Franklin, 4Adelynn Franklin, 4Agatha Franklin, 4Addison Franklin, 4Adayah Franklin, 4Abby Franklin, 4Addi-Lynne Franklin, 4Aeriana Franklin, 4Acelyn Franklin, 4Aderinsola Franklin, 4Abby-lynn Franklin, 4Addyson Franklin, 4Abrielle Franklin, 4Adlee Franklin, 4Abbrianna Franklin, 4Aikam Franklin, 4Addilynn Franklin, 4Aevyn Franklin, 4Aarvi Franklin, 4Aayushi Franklin, 4Akaliah Franklin, 4Abinoor Franklin, 4Aiva Franklin, 4Aishani Franklin, 4Ahvaya-Leigh Franklin, 4Abbygail Franklin, 4Agamjot Franklin, 4Adya Franklin, 4Akeira Franklin, 4Aera Franklin, 4Adetoke Franklin, 4Ahliyah Franklin, 4Ajulu Franklin, 4Aiden-Getne Franklin, 4Adelyn Franklin, 4Adhya Franklin, 4Adaeze Franklin, 4Abida Franklin, 4Afnan Franklin, 4Adisyn Franklin, 4Aadhira Franklin, 4Abeera Franklin, 4Acacia Franklin, 4Aislinn Franklin, 4Aizlynn Franklin, 4Aishmeen Franklin, 4Aanya Franklin, 4Aashna Franklin, 4Adelade Franklin, 4Ahana Franklin, 4Adelle Franklin, 4Abbygayle Franklin, 4Aine Franklin, 4Adia Franklin, 4Ainslie Franklin, 4Afnaan Franklin, 4Adlynn Franklin, 4Ajwah Franklin, 4Adeleine Franklin, 4Aishreen Franklin, 4Ajah Franklin, 4Akiko Franklin, 4Aisley Franklin, 4Agam Franklin, 4Aeris Franklin, 4Aicha Franklin, 4Ada Franklin, 4Agasi Franklin, 4Abbie Franklin, 4Adhel Franklin, 4Adriann Franklin, 4Adriyah Franklin, 4Adaleigh Franklin, 4Aizza-Mckayla Franklin, 4Aisling Franklin, 4Ahin Franklin, 4Aaneya Franklin, 4Achol Franklin, 4Addelynn Franklin, 4Abagayle Franklin, 4Adelina Franklin, 4Aarolyn Franklin, 4Afreen Franklin, 4Aiyana Franklin, 4Afsana Franklin, 4Afshin Franklin, 4Aahliah Franklin, 4Adalee Franklin, 4Aganetha Franklin, 4Aamina Franklin, 4Adessa Franklin, 4Aiyanna Franklin, 4Ajuni Franklin, 4Aise Franklin, 4Ainsleigh Franklin, 4Addaline Franklin, 4Abijot Franklin, 4Adrianna Franklin, 4Adaline Franklin, 4Abrianna Franklin, 4Antrim LogPythagorean CosmosПросто пацанHooligan FaustDJ CANVASProcedural 3y allegoric study — no original reference found (SD-s, by 1735, by 1735)АїGive Names to the Wires of the Cocoon of Golden WallaceMetaphysical FathersExtensional EmanationдэвидSee Notesgob (7)NKMDPDJ хуйСекс-молекулаЖиган-лимонN N Nkmdp [ ] NKMDPDP N N N N N, N<>357 575Historiography Of SpeleotherapyMan of ShrekсZaertyuiopDave GolyathformskgroznyНеизвестенibertokN.i.gMerzbrenoritvrezorkreBurz (2)I-O/O/OGreen Tea AssortmentNosferatu 1922Sperm Of Freddie Mercury Is GayAcerbic CompendiumCyan BossHomeland ManifoldRoyal CorgixYN-22Depot stemArrow bandageBiovaeieioaLeicester AgonyBent rotorSator arepo, opera ratosDeranged rotor - Through forceTranscendental FoilMan of GlobglogabgalabChannel ExpandedMerzkarlheinzChainsaw PenetrationThe Man of Shrekрепер гApollon FoundationAyurwedaDJ Bandcamp Viewerbloral shoppePenis WigglerShen Jo Ku Ji BoDark DepressionRectal ExcrementDreadful DecorationDj ТугосеряArt GeekTechnological SingularityMonth of RumorCleam HandСервис по обмену грязепоглощающих покрытийChoko CabinPositive TendencyAbdominothoracic GastrectomyAnal SexVarious Nosferatu 1922sDevil's SpitЦиклы биполярныеМне годВзрыв марганцовки в урне мойдодыраПонос актераNekroPutinПрежний яBigg PoutDistant ParticleОтвет ПутинаArchetypal 21st Century Postinternet RecluseIncarnadine ArchDJ Harry G. ▲BLᴥCK▼√ɿLU ○▬►│▼teh borders complinting t0 tymolody of generality sessions, aren't they cvteJohnny Locker's Wisdoms Corpse BandThe The, Funerality Corruption Access, TheThe Harry MordorsHalturaNeet (3)Синдром РаскольниковаBeware Fucker!BarvinokHolorimepostironic metamodernistBus Door Pen BookNewcastle upon Tyneапекс тSay TrendMeticulously Marked Mantra Movement MalfunctionScary Man (2)Nazar UmanetsNo CanvasТютюкаemerald drifterMaterial OtherTupoklalTulpa ArdorUkulele CalibriAjar CohortПрокуратор В ПерчаткахЭто ГандонPostrnodem AnguishV3NOh Yes The Prefixes Telling Of ItLabelhead DiscourseDepression (14)Cinematographic PatternsSvoy (2)V3UPlazaclubsMusorgsky FontManjohnStemcasterMarmalade FurnitureNatural BlondessYour TurnErnist Mod🍥🎀🍥Salieri BizarFrayerokDe-evaluation Of GeminiSolve et coagulaMichel PotateuxAcryl TalonНакладная рекламацияспинLIL JABOTHokhnny ASaureolin drifterSpleen Of SplendorМихаил ЮрковскийФедя Крюковпazxc047 (3)Dinosaur AstronautNausæamerzo merzmerz0zvezdoomerzabtuPushkin's StagecoachExperimental ArtistExperimental Stalker Perception#DSMAX STAFFAnother SmokeAt 5 Steps From GroundBlues StompN122 N122Nose BeuuusysQueeeeeeeeerSAA3 SAA3Stress Noise ProductionWhales Of The TSP0Авангардисты В КосмосеPrepare Your A̶n̶u LawyerLoyal Hostile EnvironmentFragile Wax PatternsIndustrial KaraokeDestabilization Of The Stationary FieldThe Joy Of CommunicationThe Only TheGarfield MusicDestablilisation Of The Stationary FieldThe Unabombers (6)agricultural recordsNaive Communication Projectແຜ່ນດິນໄຫວ, Étant Donné Que Agrippine La JeuneDe-evaluation Of CancerDouble Bind, Self-reference, Empirical Science, SophisticsTheft Is A MythEnvironment IndexMerzoutofcontextDJ TrollerShitter (3)Fghchjchj Agsdf Perfecjrth Ssereptuatation Xion Sadnasfgh Zdfvbnm And Deathdsgs TsthfhjCurrent 94Mom's Evil TwinGenetic Trance (3)V./M./E./S.669 M. - The Classification Of FantasiesA.or_or.E Aka Groctor-N (via X. For Y.)T:S:O:B:DdfgdfgdfgdfgdfggfdffgfdfdfggfdUnimportant I,potent ArtistCC5CC5meez (6)Optional TribulationBlabbathAnal Сuntmohrestoiaablyno ilrbrayLAGERBEERxPLANETEARTHNeanderthal ShareLittle Susie (2) + +4306020Kai-Rouven SeegerGerman classical bass / baritone vocalist , born in 1976.Needs Votehttp://www.kai-rouvenseeger.de/web/Anima EternaCollegium VocaleEx TemporeBachPlus + +4306062James Hall (11)Countertenor.Needs Votehttp://www.jdahall.comhttps://www.operamusica.com/artist/james-hallCollegium Vocale + +4306479Otto Winter (2)German oboist & bombarde instrumentalist, born 1937 in Mainz, Germany.Needs VoteOtto WinterBamberger SymphonikerCollegium AureumBachcollegium StuttgartSaito Kinen OrchestraViktor Lukas ConsortMusica Canterey Bamberg + +4308983Sophie TerrierClassical violistNeeds VoteOrchestre National De FranceOrchestre De Chambre Jean-François Paillard + +4312173Thomas KoslowskyAustrian classical violistNeeds VoteThomasThomas KoslowskiBruckner Orchestra LinzDas Open Mind QuartettQuin Tête-à-Tête + +4312732Hasko KrögerGerman hornistNeeds VoteHasko KroegerMahler Chamber OrchestraBamberger SymphonikerHamburger Camerata + +4314651Uwe SchrodiUwe Schrodi (born 1968) is a German classical trombonist.Needs VoteEnsemble ModernMünchner RundfunkorchesterSymphonie-Orchester Des Bayerischen RundfunksGustav Mahler JugendorchesterEssener PhilharmonikerOrchester Des Schleswig-Holstein Musik FestivalsDatura-PosaunenquartettBRassensemble MünchenNoPhilBrass + +4316300Rainer SchmitzRainer Schmitz (born 1954) is a German horn player.Needs VoteBayerisches StaatsorchesterMünchner BläserakademieOpera Brass + +4316302Kurt Meister (2)Kurt Meister (born 1 April 1946) is a German bassoon player and cultural manager.Needs VoteBayerisches StaatsorchesterBachcollegium StuttgartMunchner Blaserakademie + +4316305Gottfried SirotekGottfried Sirotek (born 1953) is a German oboist.Needs VoteG. SirotekBayerisches StaatsorchesterBundesjugendorchesterMünchner Bläserakademie + +4317905Elke Schulze-HöckelmannGerman classical hornistNeeds VoteElke Schulze HöckelmannEuropean Union Youth OrchestraBläsersolisten Der Deutschen Kammerphilharmonie BremenHannoversche HofkapelleDeutsche Kammerphilharmonie BremenWürttembergische Philharmonie ReutlingenStaatsorchester Kassel + +4318042Bernard DalyEarly jazz clarinetist and saxophonist.Needs VoteB. BaileyBernard J. "Lou" Dal(e)yBernard J. "Lou" DalyBernard J. DaleyPaul Whiteman And His OrchestraEddie Lang's OrchestraRay Miller And His OrchestraBen Selvin & His OrchestraHenri Gendron & His Strand Roof OrchestraThe Bar Harbor Society Orchestra + +4319128Lawrence Whitehead (2)Bass vocalist and former Chorister with the Choir of King's College, CambridgeNeeds VoteThe Sixteen + +4319769Vinni De CampoAmerican big band and pop singer. +He started his career as a featured vocalist with Harry James in the late 1940s. In 1950 he appeared regularly on the Kate Smith show and signed a contract with London Records. Over the next few years he recorded for B.B.S. and Coral. +He had semi-retired from show business, working in an appliance store in Cleveland, when in 1955 he was repackaged and began recording for Decca as [a4103994].Needs Votehttps://www.imdb.com/name/nm5022902/https://adp.library.ucsb.edu/index.php/mastertalent/detail/311233/De_Campo_VinniVinni DeCampoVinni DecampoVinnie DeCampoJoe Barrett (2)Harry James And His Orchestra + +4319788Charles Wesley EvansCharles Wesley EvansAmerican baritone/bass vocalist born in Macon, Georgia.Needs Votehttp://www.bach-cantatas.com/Bio/Evans-Charles-Wesley.htmhttps://conspirare.org/company-of-voices/charles-wesley-evans/https://bacharlotte.com/musicians/choir/charles-wesley-evanshttps://www.bachfestival.org/charles-wesley-evanshttp://musimelange.com/charles-wesley-evans-baritone/http://tenet.nyc/vocalist-info/charles-wesley-evanshttps://www.linkedin.com/in/charles-wesley-evans-55060aa5/Charles Wesley Michael EvansThe American BoychoirConspirareThe Choir Of Trinity Wall Street + +4320289Pertti PurhonenPertti Ilmari PurhonenFinnish boxer, active in the 1960s. Born on June 14, 1942 in Helsinki, Finland and died on February 5, 2011 in Porvoo, Finland.Needs Vote + +4320604Mark BittermannNeeds VoteDie Wiener SängerknabenChorus Viennensis + +4320833Johannes Suzoy14th century composerNeeds VoteJehan SuzayJohannes Suzoy (Jo Susay)Suzoy + +4320834Guido de Lange14th century composerNeeds VoteGuido + +4320836Johannes Galiot14th century French composerNeeds Votehttp://oxfordindex.oup.com/view/10.1093/gmo/9781561592630.article.10532Galiot + +4320868Usko AroSävel Aarre Usko AroFinnish violinist. Born on May 28, 1922. Dead on February 18, 1992. He was married to opera singer [a=Anita Välkki].Needs Vote + +4320926Sara NanniItalian classical cellist, active in recording from 2009.CorrectOrchestra Del Teatro Comunale Di BolognaOrchestra Del Maggio Musicale Fiorentino + +4321214Corinne CurtazItalian classical violinist, active from the 2010s.CorrectOrchestra Del Maggio Musicale Fiorentino + +4322605Myron Schultz (2)Early jazz violin player.Needs VoteMyron SchulzJean Goldkette And His Orchestra + +4322606Lorin SchultzAmerican jazz trombone player and vocalist.Needs VoteLorin SchulzJean Goldkette And His Orchestra + +4322860Jacqueline Fox (2)Mezzo-soprano / Alto vocalist.Needs Votehttps://uk.linkedin.com/in/jacqueline-fox-b4065338BBC SingersThe Consort Of Musicke + +4323063Rodrigo GutiérrezSpanish Rodrigo Gutiérrez studied Oboe at the Conservatori Superior de Barcelona. Needs Votehttp://www.zelenkafestival.cz/en/rodrigo-gutierrez/Rodrigo GutierrezRodruigo GutierrezConcerto KölnLa RitirataLe Banquet Céleste + +4323065Ann CnopViolinist born October 1981 in Vilvoorde, Belgium. Concertmaster of [a=Concerto Foscari].Needs Votehttp://www.anncnop.com/La Petite BandeScherzi MusicaliConcerto FoscariMillenium OrchestraProject Boussu + +4323067Pierre-Yves MadeufFrench hornist born in 1970 in Clermont-Ferrand Needs VoteLe Concert SpirituelLes Musiciens Du LouvreEnsemble PhilidorAmarillisLes Ambassadeurs (6)Ensemble EolusLa Petite SymphonieOrchestre GiourdinaEnsemble Haute TrahisonConsort Musica VeraEnsemble A Venti + +4323335Antonio Scandello(January 17, 1517 – January 18, 1580) was an Italian composer during the Renaissance period, born in Bergamo.Needs Votehttps://de.wikipedia.org/wiki/Antonio_Scandellohttps://adp.library.ucsb.edu/names/109196A. ScandelliA. ScandelloA. ScandellusA. SkandelusAntonino ScandelloAntonio ScandellaAntonio ScandelliAntonius ScandeliusAntonius ScandellusScandelliScandelloScandellusА. СканделлиStaatskapelle Dresden + +4325194Jonathan PetherBritish cellistNeeds VoteHallé OrchestraOrchestra Of Opera NorthZelkova Quartet + +4325372Thomas Kaufmann (2)Classical cellist, born 1981 in Graz, Austria.Needs VoteEnsemble ResonanzCamerata BernElissa Lee EnsembleTrio Imàge + +4326233Javier Jiménez CuevasSpanish classical bass vocalistNeeds VoteFrancisco Javier Jiménez CuevasJavier CuevasJavier JiménezJavier Jiménez-CuevasLa Capella Reial De CatalunyaChoeur de Chambre de NamurLa Grande ChapelleVandalia + +4326544Richard Hill (4)Countertenor vocalist and member of the early music ensemble Landini Consort Needs VoteThe Monteverdi ChoirThe Landini Consort + +4326864José Antonio Sainz AlfaroSpanish chorus master of [a1169517] since 1987. Born in San Sebastian in 1956Needs Votehttp://www.orfeondonostiarra.org/es/jose-antonio-sainz-alfaro-director.phpJ.A. Sainz AlfaroJosé A. Sainz AlfaroJosé Antonio SainzJosé Antonio Sáinz AlfaroJosé-Antonio SainzSainz AlfaroSáinz AlfaroOrfeón Donostiarra + +4328574Agesilao FerrazzanoAgesilao Francisco FerrazzanoArgentinian violinist, orchestra leader and composer (Buenos Aires, 31 Jul 1897 - Lebannon, 18 Jan 1980), he formed in 1927 the Ferrazzano-Pollero sextet orquesta with [a4304679], before forming his own orchestra.Needs Votehttp://www.todotango.com/english/artists/biography/967/Agesilao-Ferrazzano/A. FerrazzanoFerrazzanoRoberto Firpo Y Su Orquesta TípicaOsvaldo Fresedo Y Su Orquesta TípicaOrquesta Típica VictorAgesilao Ferrazzano Y Su Orquesta Típica + +4328619Zdeněk ZelbaClassical violinistNeeds VoteZden K ZelbaThe Czech Philharmonic Orchestra + +4328623Jiří PosledníClassical violistNeeds VoteJi Í PosledníThe Czech Philharmonic Orchestra + +4328866Horst SannemüllerGerman classical violin playerNeeds VoteGewandhaus-Quartett Leipzig + +4329301Alfred LennartzAmerican cellist, born 1878 in Germany and died after 1943 in the United States.CorrectLennartzThe Philadelphia OrchestraVictor Symphony OrchestraThe Kreisler String QuartetFlorentine Quartet + +4329774Yvon LeenartConductor.Needs VoteIvon Leenart + +4331343Nathalie PetibonFrench classical oboist and recorder playerNeeds VoteNathalie PetitionLe Concert SpirituelLes PaladinsKölner AkademieEnsemble Les SurprisesLe Banquet CélesteLes Épopées + +4332523Darren JefferyEnglish bass-baritone singer, born 3 April 1976.Correcthttp://www.darrenjefferyopera.com/Darren Jeffrey + +4333610Teresa KammererGerman violinistNeeds VoteKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +4333615Silvia CaredduItalian flute player and teacher, born in Cagliari, Italy.Needs Votehttps://www.silviacareddu.comCaredduOrchestre National De FranceWiener SymphonikerScottish Chamber OrchestraKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinKammerakademie Potsdam + +4334303Keith McNicollKeith Robert McNicollBritish trombone/bass trombone player and professor. +He studied at the [l742849]. Principal Trombone of the [a835546] (03/1992-03/1995), the [a=Philharmonia Orchestra] (03/1995-03/2001) and of the [a=Orchestra Of The Royal Opera House, Covent Garden] since March 2001. Professor of Trombone at [l305416] (09/1998-07/2011) and of Bass & Contrabass Trombone at the [l527847] since September 1999.Needs Votehttps://www.facebook.com/keith.mcnicollhttps://twitter.com/contraboneman?lang=enhttps://www.linkedin.com/in/keith-mcnicoll-hon-aram-ba-rsamd-52532b44/?originalSubdomain=ukKeith McNicolLondon Symphony OrchestraPhilharmonia OrchestraBBC Scottish Symphony OrchestraOrchestra Of The Royal Opera House, Covent Garden + +4335540Tomasz JanuchtaPolish double bassistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejOrkiestra Kameralna "Mała Filharmonia" + +4336104Thomas RatzakGerman bass vocalist and engineer from Leipzig.Needs VoteRundfunkchor LeipzigThomanerchorMDR Rundfunkchor + +4336355James HandyBritish classical French horn player. +He studied at the [l527847]. He has been a member of [a=The Albany Brass Ensemble], [a=Philip Jones Brass Ensemble], [a=The English Brass Ensemble] and performed with the [a=Philharmonia Orchestra] as No. 5 Horn since 1988.Needs Votehttps://www.feenotes.com/database/artists/handy-james/J. HandyJames HardyJim HandyPhilharmonia OrchestraPhilip Jones Brass EnsembleThe English Brass EnsembleThe Albany Brass Ensemble + +4337950ExoSunCasey BaldwinNeeds VoteBariuz & ExoSun + +4338144Igino ConforziClassical trumpeterNeeds VoteTrumpet BaroqueLe Concert SpirituelEnsemble SeicentonovecentoOrchestra Barocca Italiana + +4338338David EchelardAmerican countertenor / tenor | composer | conductor | multi-instrumentalist | hurdy gurdy | New Music | Early MusicNeeds Votehttps://echelard.com/David Lee EchelardZeitgeistSchola Antiqua + +4340896Jack TrainorCredited as trumpet player.Needs VoteGerald Wilson OrchestraThe Gerald Wilson Big Band + +4340960Rosemarie ArztGerman soprano vocalist.Needs VoteRundfunkchor Berlin + +4341085Aline SaniterGerman violist, born in 1978 in Stuttgart.Needs VoteGustav Mahler JugendorchesterNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +4342278Julian HelmsGerman singer, songwriter and engineerNeeds Votehttps://www.facebook.com/julian.helms.12A Kew's Tag + +4344103David AmsterdamAmerican violist from the big band era.CorrectDave AmsterdamHarry James And His Orchestra + +4345362Eberhard WünschGerman violist.Needs VoteOrchester der Bayreuther FestspieleOrchester Der Komischen Oper BerlinBarbara Thalheim Ensemble + +4345618Roman KowalkoClassical violinistNeeds VoteOrchestre Du Théâtre Royal De La MonnaieBrussels Chamber Orchestra + +4345737Ed ZadroznyEdward ZadroznyAmerican trombonist.CorrectThe Cleveland Orchestra + +4345959Frédéric DeLafosseFrench photographerNeeds VoteF. De LafosseFrederic de LafosseFrédéric De LafosseFrédéric de La FosseFrédéric de LafosseSygma (2) + +4346395Maria MachowskaPolish violinist (1987).Needs VoteMaria Machowska, Poland (18)Orkiestra Symfoniczna Filharmonii Narodowej + +4347704Søren ElboDanish classical clarinetist.Needs VoteDR SymfoniOrkestretDiamantEnsemblet + +4349313Hélène GuilmetteFrench classical soprano vocalist.Needs Votehttp://www.heleneguilmette.comhttps://www.facebook.com/heleneguilmettesopranoGuilmetteLe Concert Spirituel + +4349373Etienne LescroartFrench Tenor vocalist.Needs Votehttp://etienne.lescroart.chez-alice.fr/LescroartÉtienne LescroartChoeur National De L'Opéra De ParisChorus Musicus Köln + +4349375Choeur de Chambre Des Musiciens Du LouvreNeeds VoteChœur Des Musiciens Du Louvre + +4350733Renold SchilkeAmerican trumpet player instrument designer and manufacturer, born 30 June 1910 in Green Bay, Wisconsin and died 5 September 1982.Needs Votehttp://en.wikipedia.org/wiki/Renold_SchilkeChicago Symphony OrchestraThe Chicago Brass Ensemble + +4350744Hugh A. CowdenHugh Alan CowdenHorn player, born 1915 in England and died 1988 in the Unites States.Needs VoteBoston Symphony OrchestraChicago Symphony OrchestraThe Chicago Brass Ensemble + +4352059Angelika HagenAngelika Hagen is an Austrian violinist, ethnologist and social scientists. She the sister of [a754967], [a754970] and [a754955].Needs VoteAngelikaHagen Quartett + +4355166Charles WilkinsonAmerican timpanist and percussionist.CorrectNational Symphony Orchestra + +4358585Alice BisantiViola instrumentalistNeeds VoteAccademia BizantinaIl Giardino ArmonicoCappella Gabetta + +4358710Claudio PasceriCellist.Needs VoteClaudio Argentino PasceriOrchestra da Camera ItalianaXenia Ensemble + +4358731Antje HenselGerman recorder player.Needs VoteThe Academy Of Ancient MusicEuropean Brandenburg Ensemble + +4358865Pierre GuisClassical violinist.Needs VoteGöteborgs Symfoniker + +4359479Michael Haber (2)American cellist.Needs VoteThe Cleveland OrchestraFestival Casals Orchestra Of Puerto Rico + +4359822Hugh HetheringtonClassical tenorNeeds Votehttp://www.allmusic.com/artist/hugh-hetherington-mn0001832934/creditsThe Consort Of Musicke + +4359860Vinciane SoilleClassica alto vocalistNeeds VoteChoeur de Chambre de Namur + +4362370Dennis LidtkeAmerican designer, co-founder of [a1833351] Studio in 1972CorrectGribbitt! + +4363026Lewis Jones (7)Classical flautist — based in the United Kingdom.Needs VoteThe Consort Of Musicke + +4363079Henry TiismaEstonian musician and bass vocalist.Needs Votehttps://www.epcc.ee/inimesed/henry-tiisma/Estonian Philharmonic Chamber ChoirRevalia Kammermeeskoor + +4363439Paolo Michele BordignonAmerican harpsichordist.Needs VotePaolo BordignonNew York PhilharmonicThe Knights (10) + +4363772Johannes PramsohlerAustrian violinist.Needs Votehttp://johannespramsohler.com/Johannes PrahmsohlerJohannes PramsolerLe Concert D'AstréeEnsemble 1700ArcangeloEuropean Union Baroque OrchestraBrecon BaroqueEnsemble Diderot + +4363973Sir Walter Thomas And His All StarsNeeds Major ChangesSir Walter Thomas And His BandWalter Thomas And His Band + +4364466Alessandro AndrianiBorn in 1975 in Acqui Terme, Italy. +Cellist Needs VoteAccademia BizantinaEuropa GalanteAndriani String QuartetXenakis QuartetQuartetto Andriani + +4364835Hugo BurghauserHugo Franz Robert August Burghauser Hugo Burghauser (27 February 1896 in Vienna - 9 December 1982 in New York City) was an Austrian bassoonist. He was married to [a8556654].Needs VoteH. BurghauserNBC Symphony OrchestraOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Metropolitan Opera House Orchestra + +4365673Herman CroneCredited as pianist in early jazz period.Needs VoteCroneHerm CroneHerman CraneFrankie Trumbauer And His OrchestraSpike Jones & His Other Orchestra + +4365745Ulrich ZellerGerman contrabassistCorrectMünchner PhilharmonikerYxalag + +4365746Juliane FärberGerman violinist, born in 1989 in Hamburg, Germany.CorrectRundfunk-Sinfonieorchester BerlinYxalag + +4368253Tilbert WeigelGerman classical violist, born in 1970 in Ulm, Germany.Needs VoteMünchner RundfunkorchesterOrchester der Bayreuther Festspiele + +4368921Andreas GroßbauerAustrian violinistNeeds VoteAndreas GrossbauerAndreas GrossbrauerOrchester Der Wiener StaatsoperWiener PhilharmonikerPhilharmonia Schrammeln WienWiener KammerensembleOrbis Quartett + +4369272Luigi AntonioloItalian trombonist, active from 1963.CorrectOrchestra SeguriniOrchestra Jazz ColumbiaOrchestra Del Maggio Musicale FiorentinoCarlo Benzi Con La Sua Ambassador's Syncopated Orchestra + +4369322Hans AdomeitHans Joachim AdomeitHans Joachim Adomeit (20 July 1918 - 22 March 2006) was a German cellist.Needs VoteStaatskapelle BerlinOrkiestra Filharmonii Im. Karola Szymanowskiego w KrakowieRingelberg Quartett + +4371165Oscar LysyOscar Lysy (1943 - January 17, 2024) was a classical violist. Married to [a3094583]. +He was a member of the [a604396] from 1969 to 2004.Needs VoteOscar LysiSymphonie-Orchester Des Bayerischen RundfunksSpiller Trio + +4371403Keiko IwataClassical violinistNeeds VoteKeiko IwateKeiko Iwata-TakahashiConcertgebouworkestConcertgebouw Chamber Orchestra + +4371469Perikli PiteClassical violist and cellistNeeds VoteEuropa GalanteArmonia delle SfereAurata Fonte + +4371471Simone LaghiViolin and Viola playerNeeds VoteL'Arte Dell'ArcoEuropa GalanteEnsemble SymposiumQuartetto Eleusi + +4371574Katherine RoutleyAustralian classical violinistNeeds VoteKatherine RoutlyAlpha Centauri EnsembleDeutsche Kammerphilharmonie BremenUtrecht String Quartet + +4372850Andreas FinsterbuschGerman violinist, born in Döbeln.Needs VoteDresdner KreuzchorKonzerthausorchester BerlinKonzerthaus Kammerorchester BerlinFinsterbusch-Trio + +4372852Franziska DrechselGerman violinistNeeds VoteRundfunk-Sinfonieorchester BerlinEast Side Oktett + +4373260Maîtrise De La Cathédrale De StrasbourgFrench children choir resident of the [l820719] +See also the full choir [a8144481]Needs Votehttps://www.cathedrale-strasbourg.fr/association/la-maitrise-de-la-cathedraleMaitrise De La Cathédrale De StrassbourgMaîtrise De La CathédralMaîtrise De La Cathédrale + +4373749Yves Van HandenhoveClassical vocalist.Needs VoteCollegium VocaleEx TemporeDe Nederlandse BachverenigingGraindelavoixBachPlus + +4373780Anthony Van KampenAnthony van KampenClassical double bassist.Needs VoteAnthony Van KempenAnthony van KampenThe Academy Of Ancient MusicYorkshire Baroque SoloistsThe English Concert + +4375340Szakály ÁgnesSzakály ÁgnesHungarian cimbalom artist. +Born: 14 March, 1951. (Budapest, Hungary) + +Awards: Liszt Ferenc Award (1983) + Artisjus Award (14 times) +Order of Merit of the Hungarian Republic (2010)Needs VoteAgnes SzakályÁgnes SzakályLiszt Ferenc Chamber Orchestra + +4375372Yarone LevyNeeds Major Changes + +4376491Rob Van De LaarClassical hornist.Needs Votehttps://www.robvdlaar.com/Das Mozarteum Orchester Salzburg + +4378693Cloyd DuffAmerican timpanist, born 26 September 1915 in Marietta, Ohio and died 12 March 2000CorrectThe Cleveland OrchestraIndianapolis Symphony OrchestraThe All-American Youth Orchestra + +4378694Emil ScholleAmerican percussionist and violinist, born in 1900 and died in 1991.CorrectThe Cleveland Orchestra + +4379740Roland HorvathAustrian horn player, born 28 June 1945 in Vienna, Austria.Needs VoteMag. Roland HorvathOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Waldhorn VereinDas Große Wiener Rundfunkorchester + +4384097Zuzana Schmitz-KulanovaClassical violinistNeeds VoteZuzanna KulanovaDeutsche Kammerphilharmonie BremenKölner KammerorchesterPhilharmonic Orchestra Of EuropeEstonian Festival Orchestra + +4384746Jürgen BesigHorst-Jürgen BesigClassical violinist. He was a member of the [a604396] from 1974 to 2016.Needs VoteJ. BesigSymphonie-Orchester Des Bayerischen Rundfunks + +4386026Abel PereiraPortuguese horn player. Playing in the US.Needs VoteEuropean Union Youth OrchestraNational Symphony Orchestra + +4387449Gili RadyanGili Radian-SadeClassical violist.Needs VoteIsrael Philharmonic Orchestra + +4387489Andrew HendrieClassical trumpet player.Needs Votehttp://www.trinitylaban.ac.uk/students-and-staff/staff-biographies/andrew-hendrieBBC Symphony OrchestraLocke Brass ConsortBBC Concert OrchestraThe Scottish CWS Band + +4387492Tom WinthorpeClassical trombonist.Needs VoteBBC Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenLocke Brass Consort + +4387561Megumi KasakawaJapanese viola player and music teacher.Needs Votehttps://www.megumikasakawa.com/Ensemble ModernEnsemble Modern OrchestraOrchestre De La Haute École De Musique De Genève + +4388922Alberto Prat-MuntadasDouble bass player.CorrectConcentus Musicus Wien + +4388923Wolfgang PlankAustiran classical oboist, born 20 September 1971 in Eggenburg, Austria.CorrectDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerConcentus Musicus WienRSO Wien + +4388924Marie-Céline LabbéClassical Traverso Flautist +Born in Québec City.Needs VoteCéline LabbéMarie Celline LabbéConcentus Musicus WienEnsemble Ventus Lucundus + +4388926Reinhard CzaschReinhard Czasch is an Austrian classical flautist and music professor.Needs VoteConcentus Musicus WienConcilium MusicumHaydn Sinfonietta WienDie Instrumentisten WienEnsemble Ventus LucundusEnsemble Lyra Wien + +4390039Kristjan NölvakClassical violinistNeeds VoteKristjan NõlvakEstonian National Symphony Orchestra + +4390040Varje RemmelClassical violinistNeeds VoteEstonian National Symphony Orchestra + +4390250Luc HéryClassical violinist, born in 1961.Needs VoteOrchestre National De France + +4392639Delphine BironFrench classical cellist. Born in Nantes, France. +She studied at the [l1014340]. In 2002, she became a member of the [a863063]. In September 2005, she joined the cello section of the [a=Orchestre De Paris], becoming a permanent member in November of the same year. For a year, she has regularly been invited to perform with the cello section of the [a=London Symphony Orchestra]. In 2011 she also joined [b]Quatuor Thymos[/b].Needs Votehttps://www.facebook.com/delphine.bironhttps://twitter.com/delphinebironhttps://www.linkedin.com/in/delphine-biron-42a63929/https://open.spotify.com/artist/2lKrEHcmL5RHDksxUQN1jBhttps://music.apple.com/us/artist/delphine-biron/283295657http://parnumf.voog.com/parnu-music-festival/artists/delphine-bironhttps://10point15.com/delphine-biron/https://www.orchestredeparis.com/fr/orchestre/interview/38/delphine-bironLondon Symphony OrchestraOrchestre De ParisEuropean Union Youth OrchestraThymos Quartet + +4393074Shirley TrepelAmerican classical cellist.Needs VoteThe Cleveland OrchestraHouston Symphony OrchestraShepherd Quartet + +4394828Pierre Cordier (2)Classical cellistNeeds VoteOrchestre De LyonOrchestre National Du Capitole De ToulouseOrchestre Philharmonique De Strasbourg + +4395002Brian ChadwickBritish classical flautist.Needs VotePhilharmonia OrchestraBath Festival Chamber Orchestra + +4395224Júlia GállegoJúlia Gallego RondaFlutist, born in 1973.Needs VoteJùlia GàllegoJúlia Gállego RondaMahler Chamber OrchestraOrquesta De CadaquésGustav Mahler Jugendorchester0 (5) + +4396149Helena TuulingClassical clarinetist.Needs VoteEstonian National Symphony OrchestraEnsemble U:Ensemble For New Music Tallinn + +4396152Peeter MargusClassical trombonistNeeds VoteEstonian National Symphony Orchestra + +4396156Miina LaanesaarClassical violinistNeeds VoteEstonian National Symphony Orchestra + +4396157Liis ViiraLiis Jürgens (Viira)Classical harpistNeeds VoteLiis JürgensLiz WirestringEstonian National Symphony OrchestraUna Corda (2) + +4397370Tsuna SakamotoTsuna Sakamoto, violist with the [a915941] since 1998, was born in Tokyo. +Member of the Potomac String Quartet (Viola)Correcthttp://www.kennedy-center.org/MTM/Musician/1447National Symphony OrchestraPotomac String Quartet + +4397375Steven HonigbergSteven Honigberg is an American Cellist. +He is a graduate of the Juilliard School of Music where he studied with Leonard Rose and Channing Robbins. +Hired under the leadership of Mstislav Rostropovich, he is currently a member of the National Symphony Orchestra. +Founder of the Potomac Quartet in Washington DC. Needs Votehttp://www.kennedy-center.org/explorer/artists/?entity_id=3962&source_type=Ahttp://stevenhonigberg.com/National Symphony OrchestraPotomac String Quartet + +4399065Aniela FreyClassical flautistNeeds VoteOrquesta Sinfónica De MadridBundesjugendorchesterSadastan-Quartett + +4399111טלי שטיינרAvital Steiner (Hebrew: אביטל שטיינר) Tali Steiner is an Israeli classical violinist. She is a member of the Israel String Quartet and is a second violinist for the [a=Israel Philharmonic Orchestra].CorrectAvital Steinerאביטל שטיינרIsrael Philharmonic OrchestraHamburger SymphonikerThe Munich Philharmonic Orchestra + +4399759Ernst KobauErnst Kobau (born 1950) is an Austrian oboe player.Needs VoteMag. Ernst KobauVienna Symphonic Orchestra ProjectWiener Symphoniker + +4399762Gergely SugárHungarian classical hornist & conductor, married to the violinist [a=Korcsolán Orsolya]Needs Votehttps://www.sugargergely.com/Gergely SugarWiener Symphoniker + +4401067Gerd QuellmelzGerd Quellmelz (born 1943) is a German classical drummer and percussionist. +Needs VoteStaatskapelle WeimarRundfunk-Sinfonieorchester BerlinDresdner Philharmonie + +4402140Arvid FladmoeNeeds VoteBergen Filharmoniske Orkester + +4402374Matthias WollongGerman violinist, born in 1968 in Berlin, GDR.Needs Votehttps://en.wikipedia.org/wiki/Matthias_WollongStaatskapelle DresdenOrchester der Bayreuther FestspieleTrio Ex AequoDresdner Oktett + +4402718Helmuth PufflerAustrian violinist, born 1 April 1940 in Wels, Austria.Correctヘルムート・ピュッフラーOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterWiener BarockensembleWiener Philharmonisches Streichquartett + +4402719Reinhard ReppAustrian cellist, born 4 March 1941 in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerThe Vienna String Quartet + +4404753Gallus BurkardSwiss double bassist, born in 1964.CorrectGallus BurkhardSchweizer OktettTonhalle-Orchester Zürich + +4404779Eléonore WilliSwiss cellist.CorrectEleonore WilliLes Musiciens Du LouvreSchweizer OktettTonhalle-Orchester Zürich + +4407108Mikael OskarssonSwedish trombonist and trombone teacher and solo trombonist in the Swedish Radio Symphony Orchestra since 1999. + +He studied for Sven-Erik Eriksson, Jan Andersson and Michael Lind at the Royal Academy of Music in Stockholm and in Chicago for Michael Mulcahy, Charlie Vernon and Arnold Jacobs.Needs Votehttps://www.linkedin.com/in/michael-oskarsson-510353b6/?originalSubdomain=seMikael OscarssonMikael OskarssoSveriges Radios Symfoniorkester + +4407809Ruben KristensenDanish classical violistNeeds VoteRuben Bundgaard KristensenAalborg SymfoniorkesterAalborg Strygekvartet + +4408053Michel BenetMichel BénetOboist, member of the Orchestre de Paris between 1979 and 2019.Needs VoteOrchestre National De FranceOrchestre De Paris + +4408054André ChpelitchFrench trumpet player.Needs VoteAndré ChpelichtChpelitchシュプリッチOrchestre National De FranceOrchestre De Paris + +4408055Philippe HaicheViolinist, member of the Orchestre de Paris. Needs VoteOrchestre National De France + +4408920Cornelius HermannGerman violoncello player.Needs VoteStaatskapelle Dresden + +4408989Hélène HouzelFrench classical violinistNeeds VoteHelene HouzelLe Concert SpirituelDoulce MémoireEnsemble La FeniceEnsemble Suonare E CantareQuatuor Atlantis + +4409107Roy Sinclair (2)Classical percussionistNeeds VoteEnglish Chamber Orchestra + +4409151Jean-Pierre FaberClassical harpsichordistCorrectJeanPierre FaberJeanpierre FaberDas Mozarteum Orchester Salzburg + +4409692Stéphane CoutazFrench bassoonist.Needs VoteStephane CoutazOrchestre Philharmonique De Radio France + +4409693Hervé MoreauFrench double bassist.Needs VoteOrchestre Des Concerts LamoureuxDr Droopi (2) + +4410460Alain CivilClassical HornistNeeds VoteBerliner Philharmoniker + +4412366Christian ProskeSwiss classical cellist.Needs VoteC. ProskeTonhalle-Orchester Zürich + +4412571Electro-orkesteriNeeds Major ChangesElectro Tango-OrkesteriElectro Tango-orkesteriElectro-ork.Electro-orkesterElectro-orkestern + +4412596Guillermo LazcanoGuillermo Lazcano Lopez De Vadillo Spanish composer from San Sebastian Guillermo Lazcano Lopez De Vadillo (1910-2001)Needs Votehttps://es.wikipedia.org/wiki/Guillermo_Lazcanohttps://adp.library.ucsb.edu/names/358756G LazcanoG. LazcanoLazcanoOrfeón DonostiarraLos Xey + +4412710Bryan SecombeEnglish bass-baritone, born c.1955.Needs Votehttp://www.roh.org.uk/people/bryan-secombeChorus Of The Royal Opera House, Covent Garden + +4415161John ThiessenClassical trumpeterNeeds VoteDr. John ThiessenJohn ThiesenLondon BaroqueTafelmusik Baroque OrchestraTheatre Of Early MusicBoston Early Music Festival OrchestraTrinity Baroque Orchestra + +4415742Ingrid RådholmIngrid Rådholm KonvickaClassical alto vocalistNeeds VoteRadiokören + +4417800Joachim HöchbauerGerman bass vocalistNeeds Votehttp://www.joachim-hoechbauer.com/HöchbauerJoachim HöchtbauerCollegium VocaleLa Capella DucaleVox LuminisInaltoEnsemble OfficiumBeauty FarmVoces SuavesDionysos Now + +4417824Siegfried HäuslerClassical trumpeterCorrectRadio-Symphonie-Orchester Berlin + +4419071Margarita Csonka MontanaroMargarita Csonka Montanaro is an American harpist. A member of [a27519] from 1963 to 2014. +Married to [a3321104].Needs VoteMargarita Csonka MontanaraThe Philadelphia OrchestraThe Philadelphia Chamber Ensemble + +4420632Don Giovanni Maria SabinoGiovanni Maria Sabino (30 June 1588 – April 1649) was an Italian composer, organist and teacher. [a=Antonio Sabino] was his brotherNeeds Votehttps://en.wikipedia.org/wiki/Giovanni_Maria_SabinoDon Giovanni Maria SabiniGiovanni Maria SabinoGiovanno Maria SabinoSabini + +4420760Louis LowensteinAmerican cellist.Needs VoteLou LowensteinChicago Symphony OrchestraPittsburgh Symphony Orchestra + +4420893Siegfried JägerClassical cellistNeeds VoteGewandhausorchester Leipzig + +4420894Jens BorleisClassical flautistNeeds VoteGewandhausorchester LeipzigCapella Fidicinia + +4422074James Robinson (16)American jazz trombonist.Needs VoteJames "Geechy" RobinsonLionel Hampton And His OrchestraDon Albert And His Orchestra + +4422082Gene Morris (3)American jazz and rhythm & blues tenor saxophonist, who first recorded for Cleartone in Los Angeles, California, in 1946.Needs VoteMorrisLionel Hampton And His OrchestraGene Morris And His QuintetGene Morris And His Hamptones + +4422975Benjamin AlardClassical keyboard instrumentalistNeeds VoteB. AlardLa Petite BandeA Nocte TemporisLes Ombres (3) + +4423147Jack PosterAmerican trumpet playerNeeds VoteHarry James And His OrchestraHarry James & His Music Makers + +4423150Jack Watson (6)American saxophonistNeeds VoteHarry James And His OrchestraHarry James & His Music Makers + +4423598יורם אלפריןNeeds VoteYoram AlperinIsrael Philharmonic OrchestraThe Jerusalem String Trio + +4425030Derrick PurvisClassical Bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4425597Patrizia PoliaItalian soprano vocalist. Member of [a=Coro dell'Accademia Nazionale di Santa Cecilia] since 1996.Needs Votehttps://www.linkedin.com/in/patrizia-polia-811ba372/Coro dell'Accademia Nazionale di Santa Cecilia + +4426162Julius Schulman (2)America violinist, born 1 October 1915 in New York, New York and died 9 September 2000 in Culver City, California.Needs VoteJulius ShulmanThe Philadelphia OrchestraBoston Pops OrchestraBoston Symphony OrchestraPittsburgh Symphony OrchestraThe New Orleans Symphony + +4426172Malmi VilppulaNeeds Major Changes + +4427238Simon StylesSwiss classical tuba player. He was a member of the [a8551878] from 1982 to 2022.Needs VoteTonhalle-Orchester Zürich + +4427283Benjamin OrenClassical harpsichordist and pianistNeeds VoteNetherlands Chamber Orchestra + +4427668Adrian Robinson (2)US Jazz Age pianistNeeds VoteErskine Tate's Vendome Orchestra + +4432253Jan AlmSwedish classical double bassistNeeds VoteAlmJanne AlmGöteborgs SymfonikerFalu Kopparslagare + +4432549Ulf LehmannGerman classical trumpeterNeeds VoteGewandhausorchester LeipzigCapella Lipsiensis + +4432557Daniel SchäbeGerman timpani playerNeeds VoteConcerto KölnCollegium 1704Camerata LipsiensisMerseburger Hofmusik + +4432758Alfred AltenburgerAustrian violinist, born 3 March 1927 in Vienna, Austria and died 6 October 2015 in Vienna, Austria. He was the father of [a849143].CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Kammerorchester + +4434176Danilo KadovicClassical hornist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +4434725Miroslav PetkovBulgarian trumpeter, joined the Royal Concertgebouw Orchestra in 2016Needs VoteConcertgebouworkest + +4436422Loic Marie CoccianteNeeds Major ChangesCoccianteL. M. CoccianteL.L.M. CoccianteM. CoccianteR. Cocciante + +4438562Mary Kay FinkClassical flautist, piccolo player. Joined the Cleveland Orchestra in 1990.Needs VoteMary K. FinkThe Cleveland Orchestra + +4438896Toivo LehteläToivo Armas Kullervo LehteläFinnish musician (cello), conductor and composer. Born on June 14, 1914 and died on January 29, 1985.Needs VoteT. LehteläTrio Lehtelä + +4439318Richard WoodhamsAmerican oboist, born 17 June 1949 in Palo Alto, California, USA. A member of [a27519] from 1977 to 2018.Needs VoteThe Philadelphia Orchestra + +4439319Roland PandolfiAmerican hornist.Needs VoteSaint Louis Symphony Orchestra + +4440080Thomas Pilz (2)Classical violinist.CorrectThe Balanescu QuartetPhilharmonia Orchestra + +4442800Edward Percival CodeAustralian musician, conductor and composer. He was born in Melbourne on 3 July 1888 and died in Melbourne of cardiovascular disease on 16 October 1953. He was senior conductor for the [l=Australian Broadcasting Commission] for many years.Needs Votehttp://adb.anu.edu.au/biography/code-edward-percival-5707P. CodePercy CodeSan Francisco SymphonyBesses O' Th' Barn bandThe Australian Broadcasting Commission + +4443211Frederick ThurstonFrederick John ThurstonEnglish clarinettist. Born 21 September 1901 in Lichfield, Staffordshire, England, UK - Died 12 December 1953. +He graduated from [l290263]. During the 1920s he played with the [a=Orchestra Of The Royal Opera House, Covent Garden] and the [a=BBC Wireless Symphony Orchestra] before becoming principal clarinettist of the newly formed [a=BBC Symphony Orchestra]. He left the BBC Symphony Orchestra in 1946 to concentrate on chamber music. He was also Principal Clarinet of the [a=Philharmonia Orchestra]. +He taught at the Royal College of Music from 1930 to 1953. He married [a=Thea King], one of his pupils, in January 1953.Needs Votehttps://en.wikipedia.org/wiki/Frederick_Thurstonhttps://samekmusic.com/artist/frederick-thurston-1901-1953/F. ThurstonBBC Symphony OrchestraPhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenBBC Wireless Symphony OrchestraLondon Baroque Ensemble + +4443426Anaïs RamageFrench classical wood-wind instrumentalistNeeds VoteLe Concert SpirituelVox LuminisEnsemble CorrespondancesInaltoEnsemble ClematisEnsemble Les Surprises + +4443515Barbara Katherine JonesNeeds Major ChangesJones + +4444263Lutz Steiner (2)Lutz Steiner (21 June 1927 - 23 March 2005) was a German classical viola player. +A member of the [a260744] in 1958 and from 1961 to 1993.Needs VoteDEFA-SinfonieorchesterBerliner PhilharmonikerStaatskapelle BerlinErben-Quartett + +4444558Raphaël McNabneyClassical double bassistNeeds VoteLes Violons du Roy + +4446093Albert WiederAustrian helicon and tuba player, born in 1981.Needs VoteAdalbert WiederAlbert SchonwiederWiederMnozil BrassDa Blechhauf'nBühnenorchester Der Wiener Staatsoper + +4447240Maxwell WardEnglish classical viola d'amore player. +Former member of the [a=London Symphony Orchestra] (1951-1956).Needs VoteLondon Symphony OrchestraThe London Virtuosi + +4447316Buzz King (2)Jazz trumpeterCorrectHarry James And His Orchestra + +4447695Coro de Cámara del Orfeón DonostiarraChamber choir of [a1169517]. +Please, use capitals: Coro De Cámara Del Orfeón Donostiarra Needs Votehttp://www.orfeondonostiarra.org/es/Coro DonostiarraCoro De Camara Del Orfeon DonostiarraCoro De Camara Del Orfeon Donostiarra De S.S.Coro De Cámara Del Orfeón Donostiarra RondallaCoro Orfeón DonostiarraCoro de Camara del Orfeon DonostiarraCoro de Cámara del Orfeon DonostiarraOrfeon DonostiarraOrfeón DonostiarraOrfeón Donostiarra + +4448427Otto Hausmann (2)Classical violinist.CorrectMünchener Bach-Orchester + +4451334Wolfgang DüthornGerman cellist. +Needs VoteRadio-Sinfonieorchester StuttgartCello X 12SWR Symphonieorchester + +4451336Dirk HegemannDirk Hegemann (born 1969) is a German violist. +Needs VoteDirck HegemannRadio-Sinfonieorchester StuttgartRundfunk-Sinfonieorchester SaarbrückenSWR SymphonieorchesterRosenstein String Quartet + +4452067Andy CresciClassical tuba playerNeeds VoteBournemouth Symphony Orchestra + +4453319Martin ShillitoBirtish classical horn & flute player, teacher and examiner. Passed away in February 2004. +Former 4th horn in the [a=London Symphony Orchestra] (1966-1970) and 2nd horn in the [a=Northern Sinfonia].Needs Votehttps://www.mail-archive.com/horn@music.memphis.edu/msg07054.htmlMartin ShillitoeLondon Symphony OrchestraNorthern SinfoniaThe London Strings + +4454332Dominique LardinClassical violistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +4454334Corina LardinClassical cellistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +4454508Chris Davies (17)Welsh horn playerNeeds VoteOrchestra Of The Royal Opera House, Covent Garden + +4454601Elisabeth GlassGerman classical violinistNeeds VoteOrchester Der Deutschen Oper Berlin + +4456625Sigismund BachrichSigismund Bachrich aka Sigmund Bachrich or Siegmund BachrichViolist, violinist and composer, born 23 January 1841 in Zsámbokrét, Austrian-Empire (today Slovakia) and died 16 July 1913 in Grimmenstein, Austria-Hungary (today Austria). He was the grandfather of [a2369749].CorrectWiener Philharmoniker + +4457433Лина ВартановаLina Vartanova is a russian classical violinist.Needs VoteRussian National Orchestra + +4458287Barbara WitkowskaClassical harpist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4458373Philippe CuperFrench clarinetistNeeds VoteOrchestre National De L'Opéra De ParisTexas State University Clarinet Choir + +4461326Wim KnipClassical oboistNeeds VoteNetherlands Chamber Orchestra + +4462443Lidewei De SterckBelgian classical oboist, born in 1978.Needs VoteConcerto KölnIl GardellinoPygmalionEnsemble MasquesRedherring Baroque Ensemble + +4463553Karl-Heinz SchmidtpeterHeinz Schmidtpeter (born 1 May 1936) is a German classical vocalist, composer, conductor and actor. He was a member of the [a1933252] from 1961 to 2000.Needs VoteHeinz SchmidtpeterChor Der Bayerischen Staatsoper + +4463884Monika ZöllkauGerman alto vocalistCorrectRIAS-Kammerchor + +4465279Jimmy Saunders (5)American pianist active in the late 1940's.CorrectTiny Grimes Quintet + +4468296Gaëlle BissonFrench classical violinist.Needs VoteOrchestre De Paris + +4468466Dariusz SkoraczewskiClassical cellistCorrectBaltimore Symphony Orchestra + +4468494Bas DuisterDutch trumpeterNeeds VoteNederlands Blazers EnsembleRotterdams Philharmonisch OrkestHet Gelders Orkest + +4468893Arkansas TravelersNeeds Major Changes + +4469400Albert SettyClassical timpanist and percussionist. +Former member of the [a=Sadler's Wells Orchestra] (?-1961) and the [a=London Symphony Orchestra] (1962-1963).Needs VoteLondon Symphony OrchestraSadler's Wells Orchestra + +4469613Hector BurganFrench classical violinist.Needs VoteOrchestre National De France + +4469702Mieko TsubakiClassical violinist.Needs VoteLe Concert D'AstréeLe Cercle De L'HarmonieOrchestre Poitou-Charentes + +4469703Mario KonakaJapanese classical violinistNeeds VoteLes Musiciens Du LouvreLes PaladinsNew Dutch AcademyLe Cercle De L'HarmonieEnsemble Diderot + +4469704Satomi WatanabeJapanese classical violinistNeeds VoteLes Arts FlorissantsLe Cercle De L'HarmonieOrfeo 55 + +4469708Jérôme HuilleFrench classical cellist, born in 1981 in PithiviersNeeds Votehttp://www.duodialogues.com/fr_Jerome.htmlLes Talens LyriquesLe Poème HarmoniqueLes Cris de ParisLe Cercle De L'HarmoniePygmalionEnsemble ClematisMillenium OrchestraOrchestre De Chambre PelléasLe Stagioni + +4469709Guillaume CuillerFrench classical oboistNeeds VoteGuillaume CuillezPulcinellaLe Concert SpirituelOrchestre De L'Association Des Concerts PasdeloupEnsemble StradivariaLe Cercle De L'HarmonieOpera FuocoLe Banquet CélesteLa Chambre Claire + +4469728Gustav Schuster (2)Austrian timpanist and percussionist, born in 1910 and died in 1986. He was the father of [a802533].CorrectWiener Philharmoniker + +4471677Clifton PriorClassical percussionistNeeds VoteNew London Consort + +4472646Sigrid Schenker-ReintzSigrid Schenker-ReitzClassical violinist, born in Brasov (Romania)Needs VoteSigrid SchenkerStaatsorchester StuttgartOrchester der Bayreuther FestspieleOrchester Der Ludwigsburger Schlossfestspiele + +4472819Anaïs BenoitFrench classical flautist.Needs VoteOrchestre De ParisEuropean Camerata + +4473332Pentti TauroPentti TauroFinnish musician born on February 17, 1907.Needs Vote + +4474035Yuncong ZhangViolinistNeeds Votehttps://www.bso.org/strings/yuncong-zhang-violin.aspxVivian ZhangBoston Symphony Orchestra + +4474756Heinrich SchackerNeeds Major ChangesSchacker + +4476033Blechbläser Der Staatskapelle DresdenNeeds VoteBlechbläserensemble Der Sächsischen Staatskapelle DresdenBläserensemble Semperoper DresdenKammerharmonie Bläsersolisten der Staatskapelle DresdenGerd GranerPeter Conrad (3)Rolf Zimmermann (3)Thomas HolzThomas NeupertStaatskapelle Dresden + +4480371Paul HennevoglClassical string instrumentalistNeeds VoteBamberger SymphonikerCamerata Academica WürzburgThe Sinnhoffer QuartetBamberger Klavierquartett + +4480968Danny Yates (2)American violinist who played in dance bands during the 1920s.Needs VoteRay Miller And His OrchestraVincent Lopez And His OrchestraDanny Yates & His Orchestra + +4481562Susana CermeñoClassical harpistNeeds VoteOrquesta Sinfónica De Madrid + +4482100Hjalmar BackmanBruno Hjalmar BackmanNeeds VoteBackmanH. BackmanHj. BackmanHjalmar Bachman + +4483221Hilary FosterViolinist.Needs VoteBergen Filharmoniske OrkesterThe Orchestra Of Emmanuel Music + +4487511Константин СимеоновКонстантин Арсеньевич СимеоновKonstantin Simeonov - Soviet conductor, teacher. People's artist of the USSR (1962). 1910 ― 1987.Needs Votehttps://encyclopedia2.thefreedictionary.com/Konstantin+Simeonovhttps://fr.wikipedia.org/wiki/Konstantin_Simeonovhttps://ru.wikipedia.org/wiki/%D0%A1%D0%B8%D0%BC%D0%B5%D0%BE%D0%BD%D0%BE%D0%B2,_%D0%9A%D0%BE%D0%BD%D1%81%D1%82%D0%B0%D0%BD%D1%82%D0%B8%D0%BD_%D0%90%D1%80%D1%81%D0%B5%D0%BD%D1%8C%D0%B5%D0%B2%D0%B8%D1%87K. SimeonovKonstantin SimeonovKonstantin SimeyonovК. СiмеоновК. СимеоновК. СимєоновК. СімеоновLeningrad Philharmonic OrchestraОркестр Київського Театру Опери Та Балету Ім Т. Г. ШевченкаNational Radio Symphony Orchestra Of Ukraine + +4487784Ira PettifordTrumpeter. Older brother of [a=Oscar Pettiford].Needs VoteBenny Carter And His Orchestra + +4489786Jan ČižmářCzech theorba, Lute and baroque guitar player. Needs Votehttp://www.jancizmar.com/Orchestra Of The Age Of EnlightenmentCollegium 1704Collegium Gabriely DemeterovéEnsemble TourbillonPandolfis ConsortFantasticus (2){oh!} Orkiestra HistorycznaLa Tempesta (2) + +4489788Eric Le ChartierFrench classical trombonistNeeds VoteEric LechartierOrchestre De L'Opéra De LyonCollegium 1704 + +4489791Aurélien HonoréFrench TrombonistNeeds VoteLes Arts FlorissantsCollegium 1704Quart'Bone + +4494861Victor BrunsVictor Bruns (15 August 1904 - 6 December 1996) was a German bassoonist and composer. Honorable member of the [a833446].Needs VoteBrunsStaatskapelle BerlinKirov Orchestra + +4494939Barbara PalmaItalian-Slovenian viola instrumentalistNeeds VoteEuropa GalanteLes Musiciens Du LouvreEnsemble ArtaserseZefiro + +4496000Hans-Christian BraunGerman tenorCorrectRundfunkchor BerlinEnsemble Vokalzeit + +4497291Scott PingelClassical and jazz bassistNeeds VoteSan Francisco SymphonyThe University Of Wisconsin Eau Claire Jazz Ensemble I + +4501400Adam Wright (9)British trumpeterNeeds Votehttps://www.musicalorbit.com/musicians/Adam-WrightLondon Symphony Orchestra + +4501401Matthew Gee (2)British trombonist + +Do not confuse with American jazz trombonist [a295652]Needs Votehttp://matthewgee.infohttps://twitter.com/geetromboneRoyal Philharmonic OrchestraAurora OrchestraSeptura + +4501403Esther HarlingViolistNeeds VoteRoyal Philharmonic Orchestra + +4501406Charlotte AnsbergsViolinistNeeds VoteRoyal Philharmonic Orchestra + +4501615Stephen Payne (2)ViolinistNeeds VoteRoyal Philharmonic Orchestra + +4501616Jonathan AylingClassical cellist.Needs VoteRoyal Philharmonic OrchestraYoung Musicians Symphony OrchestraThe Tate Ensemble + +4501617Rosie WainwrightRosemary WainwrightClassical violinistNeeds VoteRoyal Philharmonic Orchestra + +4501618Rachel van der TangClassical cellistNeeds VoteRachel Van Der TangRoyal Philharmonic Orchestra + +4501620Jonathan HallettClassical violistNeeds VoteJonathan HálletRoyal Philharmonic Orchestra + +4501621Fraser GordonClassical bassoonistNeeds VoteLondon Symphony OrchestraRoyal Philharmonic OrchestraIlluminati Wind Quartet + +4501622Tamás AndrásHungarian violinistNeeds VoteTama AndrasTamas AndrasRoyal Philharmonic OrchestraI Musicanti (3) + +4501623Katy AylingClassical bass clarinetist. +She graduated from the [l527847] (2008-2009). Since leaving the Royal Academy of Music, she has been freelancing regularly. Principal bass clarinettist with the [a=Royal Philharmonic Orchestra] since 2014.Needs Votehttps://bluessupportingblues.com/case-study/katy-ayling/https://www.playwithapro.com/live/Katy-Ayling/https://maslink.co.uk/client-directory?client=AYLIK1&instrument=CLARI1London Symphony OrchestraRoyal Philharmonic OrchestraAntiphon (4) + +4501645Erik Chapman (2)American classical violinistNeeds VoteRoyal Philharmonic Orchestra + +4502383Sandrine François (2)Classical flautistNeeds Votehttp://www.flutesolo.fr/flutesolo.fr/Accueil.htmlOrchestre Philharmonique De Strasbourg'Accroche Note + +4502673Antonia SiegersAntonia Siegers-ReidGerman violistNeeds VoteEnsemble AchtTonhalle-Orchester Zürich + +4502675Katrin ScheitzbachGerman violinist, born in GreifswaldNeeds VoteRundfunk-Sinfonieorchester BerlinNDR SinfonieorchesterEnsemble AchtNDR Elbphilharmonie Orchester + +4503194Norbert MerkelNorbert Merkl Classical violistNeeds VoteMerkelNorbert MerklMünchner Rundfunkorchester + +4503195Mihnea EvianRomanian classical violinist, born 1951 in Bucarest.Needs VoteMünchner Rundfunkorchester + +4504437Emilio MateuEmilio Mateu NadalSpanish viola player and composer (b. 1940), soloist on Orquesta Sinfónica de RTVE in the 70s.Needs VoteOrquesta Sinfónica de RTVECuarteto Cassadó + +4506633Johannes AuerspergJohannes Auersperg (29 January 1934 – 24 April 2019) was an Austrian classical contrabassist, conductor and music professor.Needs VoteJohannes AuerspergerCamerata Academica SalzburgDas Mozarteum Orchester SalzburgBruckner Orchestra LinzWiener KammerorchesterCapella ClementinaWiener OktettDuo Cantabile + +4506980Mark KosowerAmerican classical cellist.Needs VoteThe Cleveland OrchestraSeattle Chamber Music Society + +4507603Ana-María RincónBritish soprano vocalist, specialising in early musicNeeds Votehttp://ana-maria-rincon.comAna Maria RínconInvocation (6) + +4512063Christopher LeubaJulian Christopher LeubaChristopher Leuba (28 September 1929 - 31 December 2010) was an American French Horn playerNeeds VoteChris LeubaChristopher LaubaChicago Symphony OrchestraPhilharmonia HungaricaMinneapolis Symphony OrchestraPittsburgh Symphony OrchestraPortland OperaSoni Ventorum Wind Quintet + +4512401Gary Smith (37)Trumpet player.Needs VoteSaint Louis Symphony Orchestra + +4513801Dominique GuérouetFrench double bass player.Needs VoteDominique GuerouetOrchestre National De L'Opéra De Paris + +4514026Georg Hübner (2)German violist and violinist, born in 1991 in Munich, Germany.Needs VoteBruckner Orchestra Linz + +4514923Wilburn StewartJazz bassistNeeds VoteWilbur StewartWoody Herman And His OrchestraThe Woody Herman Big Band + +4515960Lydie CallierNeeds VoteLygie CallierDacapo (4) + +4516739Ulrike HofmannGerman cellistNeeds VoteRadio-Sinfonieorchester StuttgartKammerakademie PotsdamSWR Symphonieorchester + +4516740Raphael HägerClassical percussionist and jazz pianist, born in Spaichingen, Germany.Needs VoteRaphael HaegerBerliner Philharmoniker + +4516798Stefan Schulz (4)German bass trombonist. + +Born: 30 June, 1971, in Berlin, Germany. + +Bass Trombone of the [a260744]. Professor at the Universität der Künste Berlin.Needs Votehttp://stefanschulztrombone.com/https://www.instagram.com/stefanschulztrombone/Prof. Stefan SchulzStefanBerliner PhilharmonikerStaatskapelle BerlinBlechbläser-Ensemble Der Berliner PhilharmonikerWorld Trombone Quartet + +4517324מיכאל הרןMicha (or Michael) Haran is an Israeli cellist and conductor. He was a member of the [a=Israel Philharmonic Orchestra] from 1976 until he retired in 2011. Needs Votehttps://www.facebook.com/micha.haran?fref=tshttp://opusmagazine.co.il/author/MichaHaran/https://he.wikipedia.org/wiki/%D7%9E%D7%99%D7%9B%D7%90%D7%9C_%D7%94%D7%A8%D7%9Fמיכה הרןIsrael Philharmonic Orchestra + +4517325דרורית פלקDrorit Falk (Hebrew: דרורית פלק)Drorit Falk (born 1972) is the first violinist of the [a=Israel Philharmonic Orchestra], which she joined in 1992.Correcthttp://www.ipo.co.il/heb/About/Members/%D7%9B%D7%9C%D7%99%20%D7%A7%D7%A9%D7%AA/%D7%9B%D7%99%D7%A0%D7%95%D7%A8%20%D7%A8%D7%90%D7%A9%D7%95%D7%9F/Musicians,24.aspxדרורית פאלקIsrael Philharmonic Orchestra + +4517749Mildred SpringerMildred Ray (Shirley) SpringerAmerican big band bass player and vocalist. +Born December 18, 1921 in Portland, Oregon Died April 08, 2009 (87 years old) Irvine, California. +At an early age, she became interested in music and began to play the bass and started playin in dance bands and traveling the U.S. with bands Hazel Fisher All Girl Band, Ada Lenard All Girl Orchestra, Ina Ray Hutton, Jack Teagarten Orchestra, Franki Carl and His Girlfriends, Hank Penny and the California Cowhands, Jaye P. Morgan, and George Liberace. +It was while she was on the road in Southern California that she met her future husband [a6144272], who was traveling with the Eddie Miller (Combo) Band. They were soon both employed by the Jack Teagarden And His Orchestra, both as bassists and Mildred as singer. They were married Sept. 11, 1945 and shared 62 years together. Mildred sang vocals with Hal Derwin And His Orchestra in 1947 while her husband played bass in the same band. +Mildred and Lloyd continued their love in the music business throughout their lives and were both life time members of the Professional Musician's Union in California. While living in southern California, Mildred and Lloyd enjoyed studio jobs and occasional movie work in live orchestras. Mildred appeared in, "Goodbye My Fancy", with Joan Crawford and Robert Young and "My Dream is Yours", with Doris Day, Jack Carson, Eve Arden, and the Ada Lenard Orchestra. +During the 1960's, Mildred was a bassist and vocalist for George Liberace at the Hollywood Roosevelt Hotel, in Hollywood, California. She and her husband both played bass, side by side in the Fresno Philharmonic during the 1970's.Needs Votehttps://www.legacy.com/obituaries/name/mildred-springer-obituary?pid=178235019https://www.oconnormortuary.com/obituaries/mildred-ray-springer/Jack Teagarden And His OrchestraGeorge Liberace And His OrchestraHal Derwin And His Orchestra + +4517842Ed CamdenEdward CamdenBig Band trumpet playerNeeds VoteEdward CamdenBarbecue Joe And His Hot DogsDon Bestor and His Orchestra + +4518736Willie Wells (3)Trumpet player from the Swing Era, mid-1940s with Fletcher HendersonNeeds VoteWillis WellsFletcher Henderson And His Orchestra + +4518737Lord Nelson And His BoppersNeeds VoteLord Nelson & His BoppersSonny StittWill Davis (2) + +4521139Marie-Christine ZupancícClassical flutist, born in Germany.Needs Votehttp://www.mariechristinezupancic.com/Berliner PhilharmonikerCity Of Birmingham Symphony OrchestraFestival Ensemble Spannungen + +4521397Vladislav PopyalkovskyClassical violinistCorrectBamberger Symphoniker + +4521403Christopher FranziusGerman cellistNeeds Votehttp://www.christopher-franzius.deStaatskapelle DresdenWDR Sinfonieorchester KölnOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper Am RheinNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +4523898Dirk LorenzGerman singer from Berlin, also played in the bands "Berlin Blues Brothers" and "Dean". +a.k.a. Dean Lorenz.Needs Votehttps://www.deutsche-mugge.de/live-berichte/9012-dean-dirk-lorenz-in-berlin.htmlhttps://www.linkedin.com/in/dirk-lorenz-365439102/?originalSubdomain=dehttps://www.dean-berlin.de/band/Modern Soul BandSchöneberger SängerknabenChor der Deutschen Oper Berlin + +4525513Allen Eager QuartetNeeds Major ChangesAllan Eager QuartetteAllen Eager QuartetteMax RoachAl HaigAllen EagerCharlie PerryClyde LombardiBob Carter (2)Edwin Finckel + +4528947Feliks GmitrukClassical hornistNeeds Votehttps://waltornia.pl/biografie/1287-feliks-gmitrukOrkiestra Symfoniczna Filharmonii Narodowej + +4533577James Austin SmithAmerican oboist.Needs Votehttp://www.jamesaustinsmith.com/Orpheus Chamber OrchestraInternational Contemporary EnsembleDecoda (2) + +4533735Maxim EmelyanychevМаксим Юрьевич ЕмельянычевMaxim Emelyanychev is a Russian conductor and harpsichordist, and since 2019 he has been the chief conductor of the [a926717]. +A versatile Russian conductor and soloist specializing in piano, harpsichord, fortepiano and cornetto born 1988. +Since 2016 - chief conductor of the orchestra [a4512828]. +In September 2019, Maxim Emelyanychev took over the post of chief conductor of the [a926717]. +Transliteration in Cyrillic - [i]Максим Емельянычев[/i]Needs Votehttps://en.wikipedia.org/wiki/Maxim_Emelyanychevhttps://www.veroniquejourdain.com/en/maxim-emelyanychev/https://ru.wikipedia.org/wiki/%D0%95%D0%BC%D0%B5%D0%BB%D1%8C%D1%8F%D0%BD%D1%8B%D1%87%D0%B5%D0%B2,_%D0%9C%D0%B0%D0%BA%D1%81%D0%B8%D0%BC_%D0%AE%D1%80%D1%8C%D0%B5%D0%B2%D0%B8%D1%87https://meloman.ru/performer/maksim-emelyanychev/Maxim EmilyanychevScottish Chamber OrchestraIl Pomo d'OroMusicaeternaNizhny Novgorod Soloists Chamber Orchestra + +4535580George Hanna (3)US trombone player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' HerdWoody Herman And The Fourth Herd + +4536331Manhattan-yhtyeNeeds Major ChangesManhattan Tango-yhtye + +4538230Jean-Michel FourquetClassical trombonistNeeds VoteOrchestre National Bordeaux AquitaineEnsemble de Cuivres D'aquitaine + +4538234Jean-françois DionClassical trumpeter.Needs VoteOrchestre National Bordeaux AquitaineEnsemble de Cuivres D'aquitaine + +4538236Jean-Jacques DionClassical trombonistNeeds VoteOrchestre National Bordeaux AquitaineEnsemble de Cuivres D'aquitaine + +4538238Bruno RivaClassical percussionist (Timbales).Needs VoteOrchestre National Bordeaux AquitaineEnsemble de Cuivres D'aquitaine + +4538406Ole Andersen (3)Danish classical trumpet player born 1942 in Slangerup. Professional musician from the age of 13 in 1955. Solo trumpeteer in [a759076] from 1961, [a=Det Kongelige Kapel] from 1966 and [a=Danmarks Radios Symfoniorkester] from 1968. in addition to a career based on classical music, Ole Andersen has participated in a number of popular music recording projects with [a5015473], for example.Needs VoteDR RadioUnderholdningsOrkestretDet Kongelige KapelBob Anders OrkesterDanmarks Radios SymfoniorkesterDen Danske Brass Kvintet + +4539095Gerda Wind-SperlichClassical hornistNeeds VoteGerda SperlichEnsemble ModernMutare Ensemblehr-Sinfonieorchester + +4539222Charles Linton (2)Vocalist with Chick Webb's Orchestra. +Needs VoteCharlie LintonChick Webb And His Orchestra + +4539607Christian LandsmannAustrian classical flautist, born in 1961 and died 29 july 2016Needs VoteBruckner Orchestra Linz + +4542463Ethica OgawaClassical violinistNeeds VoteOrchestre Philharmonique De Strasbourg + +4542519ClubstyleNeeds Major Changes + +4542520Disco SoldiersNeeds Major Changes + +4542521BiggzyNeeds Major Changes + +4543212Glenn Hardman & His TrioNeeds Major ChangesGlenn Hardman + +4543213Alice O'ConnellAlice Mildred O'Connell Hardman American singer. Older sister of [a299938]. Married to [a951867]. Born May 10, 1917 Lima, Ohio Died April 30, 2001 (aged 83) Redding, California. In the mid-1930s, she teamed up with Glenn Hardman, a young man with whom she had previously performed auditions. Glenn and Alice were married May 16, 1936. As a team, Hardman and O'Connell played hotels, nightclubs, and theatres throughout the East. It was during this time that they became a John Hammond "discovery." Hammond brought them to Chicago for some recordings in 1939. The Hardman/O'Connell professional duet continued until 1943, when Alice decided to have a baby. In 1953 the Hardmans left Oklahoma for California and took up residence in the Los Angeles area. +Needs Vote + +4543214Buddy Christian (2)American jazz drummer (1930's to approx 1950)Needs VoteGeorgie Auld And His OrchestraJoe Marsala And His OrchestraRay Stokes Trio + +4543468Liene KļavaLatvian viola player.Needs VoteLiene KlavaЛиене КляваBit 20 EnsembleBergen Filharmoniske Orkester + +4543723Tommy De RoseJazz drummerNeeds VoteTom de RoseWingy Manone & His OrchestraNew Orleans Jazz BandOriginal New Orleans Jazz Band + +4544157Jürgen FranzGerman flautist.Needs Votehttp://www.juergenfranz.comOrchester der Bayreuther FestspieleOrchestra Del Teatro Alla ScalaStuttgarter PhilharmonikerNDR SinfonieorchesterBielefelder PhilharmonikerNDR Elbphilharmonie Orchester + +4544360Ángel Jesús GarcíaSpanish violinist Needs VoteAngel GarciaAngel Jesus GarciaAngel-Jesus GarciaÁngel-Jesús GarcíaOrchester der Bayreuther Festspiele + +4545697Felix van DyckNeeds Major ChangesFelix Dyck + +4547913John Walton (6)British classical double bass player, fl. 1960s. +2nd Double Bass of [a=Sinfonia Of London]. +Brother of [a=Richard Walton] and [a=Bernard Walton (2)].Needs VoteSinfonia Of LondonThe Band Of The Irish GuardsBath Festival Orchestra + +4549903Tobias Haupt (2)Tobias Haupt is a German violinist.Needs VoteGewandhausorchester LeipzigEnsemble CourageReinhold-Quartett + +4550054Ray Price (6)Australian jazz banjoist, guitarist, bassist and bandleader, born November 20, 1921 in Canterbury, Sydney, Australia. Passed away August 5, 1990, Redcliffe, Queensland. +. +From at least 1947 he played intermittently with [a=The Port Jackson Jazz Band], of which he was leader 1955-1962. Formed the short lived Dixielanders in 1952. Also played bass with orchestras of the Australian Broadcasting Commission and the Sydney Symphony Orchestra. Defying an ultimatum from the ABC (who sponsored the SSO concerts) regarding his jazz activities, he was dismissed from the SSO amid considerable publicity in 1956. Soon after Price formed a trio for the Macquarie Hotel, which, ironically, was heard in 1959 by a guest SSO conductor, Constantin Silvestri, who gave it high praise. With changed personnel and augmented to a quartet, the group moved to the Adams Hotel's Tavern of the Seas on George Street Sydney; this residency concluded in 1966. Many famous names passed through the ranks of the band including Col Nolan, Dick Hughes and John Sangster. He formed the Dixieland Jazz band, The Ray Price Qintet in 1971 and toured through to about 1976. + +Price retired in 1982, but occasionally played at reunions of the Port Jackson Jazz Band. +Needs Votehttps://adb.anu.edu.au/biography/price-raymond-arthur-15532https://static1.squarespace.com/static/58bf64e6c534a5e3ac61401d/t/599d389e579fb3102efcf23b/1503475876625/JohnsonBruceRayPriceOBITUARY.pdfhttps://secondhandsongs.com/artist/70795Sydney Symphony OrchestraThe Port Jackson Jazz BandRay Price QuartetThe Dixielanders (4)The Pix All-Star Australian Jazz BandThe Ray Price QintetThe Australian Broadcasting Commission Philharmonic OrchestraRay Price And His Dixielanders + +4550390Adrian GnamAdrian Gnam (4 September 1940 - 16 April 2025) was an American oboist & English horn player.Needs VoteThe Cleveland OrchestraThe Heritage Chamber Quartet + +4551313Michel HoltzNeeds Major ChangesM. Holtz + +4553317Windy Rhythm KingsNeeds VoteLee's Black DiamondsJunie Cobb + +4556610Colin Davis (6)British violin player, moved to USA in 1989Needs VoteCollin DavisBBC Symphony OrchestraBoston Symphony OrchestraPro Arte Chamber OrchestraNew England String Ensemble + +4557109Katie StillmanClassical violinistNeeds VoteThe Academy Of St. Martin-in-the-FieldsThe Manchester CamerataBarbirolli Quartet + +4557112Jordan BowronBritish classical violistNeeds VoteThe Manchester CamerataIrish Baroque OrchestraThe English ConcertThe Mozartists + +4559183Werner ThärichenWerner Thärichen (18 August 1921 - 24 April 2008) was a German classical percussionist, timpanist and composer. He was married to [a1173711].Needs VoteBerliner PhilharmonikerStaatskapelle BerlinPhilharmonisches Staatsorchester Hamburg + +4559324Willy HarlanderWilly Harlander (30 April 1931 in Regensburg, Germany -20 April 2000 in Munich, Germany) was a German actor.Needs VoteWillhelm HarlanderWilli HarlanderRegensburger Domspatzen + +4563073Josef NiederhammerJosef Niederhammer (27 September 1954 in Linz, Austria) is an Austrian double bassist.Needs Votehttps://www.niederhammer.comJoseph NiederhammerMünchner PhilharmonikerBayerisches StaatsorchesterWiener SymphonikerWiener VolksopernorchesterBamberger SymphonikerEnsemble WienWiener Virtuosen + +4563479Yemi GonzalesViolinist and violistNeeds Votehttp://www.yemigonzales.comYemi GonzalezMünchner PhilharmonikerSwonderful Orchestra + +4564300David LocqueneuxFrench classical trombonist, sackbutist & trumpeter. + +He studied at the Conservatoire de Valenciennes and the [l1014340]. In 1996, he was unanimously awarded a first prize and an Antoine Courtois special prize. The same year, he won the Pierre Salvi Prize. He was then appointed Principal Trombone of the [a880293] under the direction of [a931368]. Since 1998, he has been teaching at the Conservatoire de Toulouse with [a1587357].Needs VoteOrchestre National Du Capitole De ToulouseHespèrion XXILes Sacqueboutiers De Toulouse + +4564898Väinö SyvänneVäinö Johannes SyvänneFinnish lyricist. Born on May 6, 1892 and died on January 17, 1982.Needs VoteV. SyvänneV.Syvänne + +4566192Karl ÖhlbergerKarl Öhlberger (30 April 1912 - 9 October 2001) was an Austrian bassoonist. He was the brother of [a1905983] and the uncle of [a3856839] and [a2198234].Needs VoteK.OehlbergerK.ÖhlbergerKarl OehlbergerKarl OhlbergerKarl ŒhlbergerProf. Karl ÖhlbergerOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +4566408Sebastian FörschlNeeds VoteFörschlMünchner PhilharmonikerMonokini (5) + +4569045Пётр ТосенкоПётр Васильевич ТосенкоSoviet and Russian oboist and soloist of [a838384] & [a343871]. Brother of [a2837363]. +Born: November 24, 1941, Leningrad +Died: June 27, 2013, Saint PetersburgNeeds Votehttps://ru.wikipedia.org/wiki/Тосенко,_Пётр_Васильевичhttp://www.conservatory.ru/ptosenkoPeter TosenkoPiotr TosenkoPjotr TosenkoPyotr TosenkoП. ТосенкоLeningrad Philharmonic OrchestraKirov Orchestra + +4569960Juliet DaveyViolinist and leader of the [a=Davey Chamber Ensemble].Needs Votehttps://divineartrecords.com/artist/davey-chamber-ensemble/https://tarisio.com/cozio-archive/property/?ID=59600The Academy Of Ancient MusicDavey Chamber Ensemble + +4571473Eugene EspinoEugene Santiago EspinoAmerican timpanist, born in Oakland, California, died 23 April 2005 at the age of 65.Needs VoteSaint Louis Symphony OrchestraCincinnati Symphony OrchestraCincinnati Pops Orchestra + +4579094Amy Kate RiachSoprano vocalist.Needs VoteAmy RiachThe Choir Of Clare College + +4581502Stewart WebsterClassical violinistNeeds VoteScottish Chamber Orchestra + +4581972Rolf MaschkeViolinistNeeds VoteR. MaschkeConsortium Musicum (2) + +4582326María Teresa Hernández UsobiagaSpanish contralto, soprano (in early years) and mezzo-soprano vocalist, born in Irún (1885-1975). +[a3814377] pupil, member of [a1169517] and soloist but left the chorus in 1929 to focus as teacher, retired in 1955. +Founder and chorus master of [a3277852] in 1943 which colaborated with male chorus [a1905993].Needs Votehttp://aunamendi.eusko-ikaskuntza.eus/es/hernandez-usobiaga-maria-teresa/ar-59057/Maria T. HernandezMaria T. HernándezMaría Teresa HernándezMª Teresa HernándezOrfeón DonostiarraCoro Maitea + +4582576Robert Rodriguez (9)PercussionistNeeds VoteArtie Shaw And His Orchestra + +4582633Oliver BroomeBritish singer, chorus master and conductor, born in Yorkshire.Needs VoteThe Ambrosian Singers + +4583010Serge Chaloff And The Herd MenNeeds Major ChangesSerge Chaloff And The HerdmenSerge Chaloff And The HerdsmenSerge Chaloff + +4583385Christine DumontSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583386Lina FaeschSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583387Aurélie MagnéeFrench mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583388Kim TaBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583389Pranvera LehnertSoprano vocalistCorrectPanvera LenhertChoeur National De L'Opéra De Paris + +4583390Chae Hoon BaekTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583391Ook ChungTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583392Luca SannaiTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583394Martine ChoppinSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583395Caroline de VriesSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583396Laetitia JeansonMezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583397Alexandra FoursacFrench mezzo-sopranoCorrecthttps://www.facebook.com/alexandra.foursacChoeur National De L'Opéra De Paris + +4583398François NosnyTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583399Marie-France GascardAlto vocalistCorrectChoeur National De L'Opéra De Paris + +4583400Adriana SimonSoprano vocalistCorrectAdriana Simon-DusclauxChoeur National De L'Opéra De Paris + +4583401Chae Wook LimBaritone vocalist, born in 1977.CorrectChac-Wook LimChoeur National De L'Opéra De Paris + +4583402Esthel DurandSoprano vocalistCorrectEsthel Durand-MartelChoeur National De L'Opéra De Paris + +4583403Guillaume Petitot-BellaveneBaritone vocalistCorrectGuillaume PetitotChoeur National De L'Opéra De Paris + +4583404Fabio BellenghiBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583405Laure MailfertSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583406So-Hee LeeSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583407Marc ChapronBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583408Virginia Leva-PoncetMezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583409Hyun-Jong RohTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583410Philippe MadrangeFrench bass vocalistCorrecthttp://philippemadrange.com/Choeur National De L'Opéra De Paris + +4583411Laure VerguetMezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583412Anne-Sophie DucretSoprano vocalistCorrectAnne DucretChoeur National De L'Opéra De Paris + +4583413Navot BarakBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583414Laurence CollatSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583415Myriam PiguetFrench mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583416Jean-Michel DucombsBaritone vocalistCorrectJean-Michel DucombChoeur National De L'Opéra De Paris + +4583417Enzo CoroBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583418Emile LabinyTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583419Claudia PalliniSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583420Julien JoguetBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583421Christian-Rodrigue MoungoungouClassical baritone vocalistCorrectChoeur National De L'Opéra De Paris + +4583422Jean-Philippe Elleouet-MolinaBaritone vocalistNeeds VoteJean-Philippe ElleouëtChoeur National De L'Opéra De ParisChoeurs De L'Opéra National De Montpellier + +4583423Annie KoganAlto vocalistCorrectChoeur National De L'Opéra De Paris + +4583424Constantin GhircauBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583425Emanuel MendesTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583426Olivier AyaultBaritone vocalistCorrectChoeur National De L'Opéra De Paris + +4583427Barbara CottiAlto vocalistCorrectChoeur National De L'Opéra De Paris + +4583428Florence Jouars-BrousseSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583429Claire ServianFrench soprano, born in 1962.CorrectChoeur National De L'Opéra De Paris + +4583430Joumana El-AmiouniSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583431Vadim ArtamonovBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583432Muriel LangerSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583433Caroline MénardFrench mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583434Olivier FillonTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583435Daejin BangBaritone vocalist, born in 1977.CorrectChoeur National De L'Opéra De Paris + +4583436Hyun-Gyum KimTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583437Myoung-Chang KwonTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583438Laura AgnoloniItalian mezzo-sopranoCorrecthttps://www.facebook.com/laura.agnoloniChoeur National De L'Opéra De Paris + +4583439Constance BradburnSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583440Slawomir SzychowiakPolish baritone vocalistCorrecthttp://szychowiak.free.fr/strpl02.htmSlavomir SzychowiakChoeur National De L'Opéra De Paris + +4583441Stephanie SemeraroSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583442Carole ColineauSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583443Carla Rita VeroAlto vocalistCorrectChoeur National De L'Opéra De Paris + +4583444Rodolfo CaveroPeruvian tenorCorrectChoeur National De L'Opéra De Paris + +4583445Pascal MesleTenor vocalistCorrectPascal MesléChoeur National De L'Opéra De Paris + +4583446Isabelle Wnorowska-PluchartPolish mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583447Marco PirettaBass vocalistNeeds VoteChoeur National De L'Opéra De ParisCoro del Teatro Carlo Felice di Genova + +4583448Katia HadjikinovaSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583449Dan SpeerschneiderFrench tenorCorrecthttps://www.facebook.com/dan.speerschneiderChoeur National De L'Opéra De Paris + +4583450Hyoung Min OhTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583451Patricia Guigui (2)Mezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583452Marina HallerAlto vocalistCorrectМарина Звиададзе-ХаллерChoeur National De L'Opéra De Paris + +4583453Olga OussovaAlto vocalistCorrectChoeur National De L'Opéra De Paris + +4583454Cyrille LovighiFrench tenorNeeds VoteLe Chœur D'Hommes De SartèneChoeur National De L'Opéra De Paris + +4583455Shin Jae KimBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583456Pascal ChouraquiTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583457Antoine NormandFrench tenorCorrecthttp://www.antoinenormand.net/Choeur National De L'Opéra De Paris + +4583459Irina KopylovaSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583460Catherine Hirt-AndréSoprano vocalistCorrectChoeur National De L'Opéra De Paris + +4583461John Bernard (3)Tenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583462Styliana OikonomouAlto vocalistCorrectChoeur National De L'Opéra De Paris + +4583463Marie-Cécile ChevassusMezzo-sopranoCorrectMarie-Cecile ChevassusChoeur National De L'Opéra De Paris + +4583464Alexandre EkaterininskiBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583465Philippe SauvezBass vocalistCorrectChoeur National De L'Opéra De Paris + +4583466Vincent MorellTenor vocalistCorrectChoeur National De L'Opéra De Paris + +4583467Gilles André (2)French tenor vocalistCorrectGilles AndreChoeur National De L'Opéra De Paris + +4583468Yingbin XieMezzo-sopranoCorrectChoeur National De L'Opéra De Paris + +4583469Caroline Petit (2)Alto vocalistCorrectChoeur National De L'Opéra De Paris + +4583659Martin OrmandyNew York cellist +Born Budapest, Hungary 1901 +Died June 4, 1996 + +Member of the New York Philharmonic Orchestra in the 1960s. + +Brother of [a=Eugene Ormandy]Needs VoteNew York Philharmonic + +4586205Lionel RenouxClassical hornist. Principal horn in [a960058].Needs VoteAccademia BizantinaLes Talens LyriquesAmarillisLes Muffatti + +4586394Andrew BalioAmerican trumpet playerCorrectBaltimore Symphony Orchestra + +4586665Bert Bailey (2)CorrectBery BaileyArthur Sims And His Creole Roof OrchestraFate Marable's Society Syncopators + +4590127Boris RojanskyClassical violinistNeeds VoteBoris RojanskiOrchestre National Bordeaux Aquitaine + +4590616Larry BeltonBaritone sax player.Needs VoteTab Smith Orchestra + +4591250Jaan PallandiClassical double bassist.Needs VoteSydney Symphony Orchestra + +4591254Rebecca GillClassical violinist.Needs VoteSydney Symphony Orchestra + +4591261Euan HarveyClassical hornistNeeds VoteSydney Symphony Orchestra + +4591409Antonin André-RequenaClassical violinist.Needs VoteAntonin RequenaOrchestre De Paris + +4592473Kleofas Immanuel NordlundNeeds Major ChangesK. I. NordlundK. J. NordlundK.I. NordlundK.I.NordlundK.J. NordlundKleofas I. NordlundKleofas Nordlund + +4594087Clifton HarrisonClifton Harrison was born in the USA and studied at the Juilliard School (New York) and Royal Academy of Music (London). He is the viola player in the acclaimed Kreutzer Quartet and has an active freelance career working with most of the London orchestras and ensembles including the London Chamber Orchestra, London Contemporary Orchestra, Aurora Orchestra, and London Sinfonietta. He records extensively with the Kreutzer Quartet and has appeared on many tv, film, and pop album soundtracks. +Needs Votehttps://www.imdb.com/name/nm10253172/Wired StringsThe London Chamber OrchestraThe Kreutzer QuartetLondon Contemporary OrchestraSantiago QuartetRambert OrchestraChineke! OrchestraSolomon's Knot + +4595508Billy Bell (8)William Henry BellBritish jazz tubaist. +[b]Not to be confused with the American tubaist [a=Bill Bell (5)][/b]. +Former member of the [a=London Symphony Orchestra] (1939-1949).Needs VoteBellLondon Symphony OrchestraCarlton Hotel Dance Orchestra + +4596409Eva-Maria RöllGerman classical violinist/violist.Needs VoteEva Maria RöllEva RöllLa Petite BandeQuatuor CambiniEnsemble Sans Souci BerlinLyra EnsembleJohann Rosenmüller Ensemble + +4600889Groove ComplexCharlie GoddardNeeds VoteGroove KomplexCharlie BoshCharlie Goddard (3)CG X + +4602130Ed MaterClassical OboistNeeds VoteNetherlands Chamber Orchestra + +4603484Cornelius HerrmannCornelius Herrmann is a German cellist. He was a member of the [a578737] from 1971 to 1973.Needs VoteStaatskapelle DresdenDie Salzburger Residenz-Solisten + +4603486Otfried RuprechtOtfried Ruprecht (born 1932) is a German oboist.Needs VoteDas Mozarteum Orchester SalzburgDie Salzburger Residenz-Solisten + +4606947John Tartaglia (3)American classical violist (1932-2018)Needs VoteMinnesota Orchestra + +4608801Hans ColbersDutch clarinet player.Needs Votehttp://www.hanscolbers.com/https://nl-nl.facebook.com/people/Hans-Colbers/100009334793907http://www.ahk.nl/conservatorium/docenten/klassiek/hanscolbers/Asko EnsembleNederlands Blazers EnsembleEbony BandResidentie OrkestRotterdams Philharmonisch OrkestAsko|Schönberg + +4610119Wilfred SimenauerNew Zealander classical cellist and author, born 1928. +In 1960, he took up the position of Principal Cello in the [a973597]. In 1964, he was appointed Principal Cello with the [url=https://www.discogs.com/artist/575941-The-New-Zealand-Symphony-Orchestra]NZBC Symphony Orchestra[/url]. +He married the opera singer, pianist, & vocal coach [a=Emily Mair] in England in 1951.Needs VoteWilf SimenauerPhilharmonia OrchestraNew Zealand Symphony OrchestraRoyal Liverpool Philharmonic Orchestra + +4610229Markus MesterMarkus Mester + +Classical trumpeter, trumpet soloist and trumpet pedagogue + +Born 1967 Troisdorf, North Rhine-Westphalia, Germany + +The German trumpeter, Markus Mester, studied after his graduation from school at the Hochschule für Musik in Köln and Hochschule für Musik in Düsseldorf, as well as at the Guildhall School for Music and Drama in England. He was in 1992 student at the Herbert von Karajan Foundation in Berlin. + +Markus Mester worked from 1988 to 1992 as a solo trumpeter in the European Community Youth Orchestra under the direction of Claudio Abbado. Since 1992 he has been solo trumpeter of the Bamberger Symphoniker and since 1996 first trumpeter in the Festspielorchester der Richard Wagner Sommerfestspiele Bayreuth. Further engagements have taken him to play with the Berliner Philharmoniker, NDR Sinfonieorchester Hamburg, Hessischer Rundfunk Sinfonieorchester, Bayerischer Rundfunk Symphonieorchester in Munich. He is co-founder of the ensembles "Bach, Blech, Blues" and "Blechblaeserquintetts der Bamberger Symphoniker". + +Markus Mester was a trumpet teacher at the "Music Camp '97 Brixen", and had from 1997 to 2000 a teaching assignment in trumpet at the Musikhochschule in Stuttgart. He is married and has four children.Needs VoteBamberger Symphoniker + +4611602Christian Löffler (2)German classical percussionistNeeds VoteLöfflerDas Mozarteum Orchester SalzburgKonzerthausorchester BerlinKonzerthaus Kammerorchester Berlin + +4612001Wilbur SimpsonWilbur J. SimpsonWilbur Simpson (6 December 1917 - 17 June 1997) was an American bassoonist.Needs VoteChicago Symphony OrchestraChicago Pro MusicaChicago Symphony Woodwind Quintet + +4614386Felix GuarinoJazz drummerNeeds VoteF. GuarinoGuarinoArcadian SerenadersThe Original Crescent City Jazzers + +4614387Cliff HolmanJazz clarinetist, alto saxophonistNeeds VoteHolmanArcadian SerenadersThe Original Crescent City Jazzers + +4614388Slim Hall (2)Banjo playerNeeds VoteSlim HillArcadian SerenadersThe Original Crescent City Jazzers + +4614389Johnny RiddickJazz pianistNeeds VoteJohnnie RiddickRiddickArcadian SerenadersThe Original Crescent City Jazzers + +4614390Avery LoposerTrombonist and vocalistNeeds VoteLoposerArcadian SerenadersThe Original Crescent City Jazzers + +4614729Urmas PõldmaTenor vocalist. +Soloist of the Estonian National Opera since 2002.Needs VoteUrmas PõldmaaEstonian Philharmonic Chamber ChoirKuninglik Kvintett + +4614920Serge And His Be Bop BuddiesNeeds Major ChangesSerge Chaloff SextetteCurly RussellGeorge WallingtonTiny KahnSerge ChaloffRed RodneyEarl Swope + +4615731Liza KerobFrench violinist, born in 1973. +She is "supersoliste" in the [a703269] since May 2000.Needs Votehttp://www.lizakerob.comLisa KerobOrchestre Philharmonique De Monte-CarloNouvel Ensemble Instrumental Du Conservatoire National Supérieur De ParisTrio Goldberg + +4615876Abo GumroyanNeeds VoteAbraham GumroyanVegas Band + +4618270Alice BorcianiClassical soprano vocalist born in Reggio Emilia, ItalyNeeds Votehttp://www.aliceborciani.it/index.htmlLa Capella Reial De CatalunyaChoeur de Chambre de NamurCappella MurensisChor Der J.S. Bach StiftungChor Der Schola Cantorum BasiliensisMusica Ficta (4)La Cetra Vokalensemble BaselI Cantori Di San MarcoIl Zabaione Musicale + +4618272Tiago MotaClassical bass vocalistNeeds Votehttps://www.facebook.com/tiago.daniel.motaChoeur de Chambre de NamurMusica FioritaBasler MadrigalistenChor Der Schola Cantorum Basiliensis + +4618546Marek StefulaMarek Stefula (born 1973) is a classical percussionist.Needs VoteMarek SteffulaGewandhausorchester LeipzigPhilharmonia Hungarica + +4619623Yifen ChenClassical traverso flautistNeeds VoteYifenLa Petite BandeOrchester Der J.S. Bach Stiftung + +4619624Sien HuybrechtsBelgian classical Traverso flautistNeeds VoteLa Petite BandeIl GardellinoCappella MediterraneaApotheosis (8)B'Rock OrchestraA Nocte TemporisLes Abbagliati + +4621630Sören RichterGerman classical tenor vocalist born in ChemnitzNeeds Votehttps://www.tenoreconcuore.deSøren RichterCollegium VocaleLa Petite BandeBalthasar-Neumann-ChorChor Der J.S. Bach StiftungHimlische CantoreyEnsemble Polyharmonique + +4622335Ingely LaivClassical oboistNeeds VoteEstonian National Symphony Orchestra + +4622337Marten AltrovEstonian classical clarinetist, born March 7, 1991 in TallinnNeeds VoteEstonian National Symphony OrchestraAbraham's CafeEstonian Festival OrchestraMODULSHTEINMadis Muul Hextet + +4622797Philipp ZellerGerman bassoonist and professor at the [l517392], born in 1982 in Stuttgart, Germany.Needs Votehttp://www.philipp-zeller.com/en/homeStaatskapelle DresdenRundfunk-Sinfonieorchester BerlinDresdner PhilharmonieGürzenich-Orchester Kölner PhilharmonikerBochumer SymphonikerDresdner KammersolistenJenaer PhilharmonieBundesjugendorchesterKlassische Philharmonie Stuttgart + +4622800Matthias DangelmaierGerman trombonistNeeds VoteStaatsorchester StuttgartOrchester der Bayreuther FestspieleKlassische Philharmonie Stuttgart + +4622806Ramin TrümpelmannGerman violinistNeeds Votehttp://www.ramintruempelmann.de/40020.htmlStuttgarter PhilharmonikerKlassische Philharmonie Stuttgart + +4622807Ehrhard WetzEhrhard Wetz is a German trombonist and professor of trombone at the [l2335015].Needs Votehttps://www.muho-mannheim.de/personal/Bios/wetz_ehrhard.htmEhrhardt WetzErhard WetzStaatsorchester StuttgartOrchester der Bayreuther FestspieleBachcollegium StuttgartNDR SinfonieorchesterKlassische Philharmonie StuttgartHofkapelle StuttgartHamburger BlechbläsersolistenLäubin Brass Ensemble + +4622811Murat ÖnceMurat Can ÖnceViolinistNeeds VoteStaatsorchester StuttgartWürttembergisches KammerorchesterKlassische Philharmonie Stuttgart + +4622812Peter FellhauerGerman clarinetistNeeds VoteStuttgarter PhilharmonikerKlassische Philharmonie StuttgartHofkapelle StuttgartVerbandsjugendorchester Karlsruhe + +4622817Stefan TrauerStefan Trauer (born in 1957) is a German cellist. He was a member of the [a604396] from 1985 to 2023.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBachcollegium StuttgartWürttembergisches KammerorchesterAuritus QuartetKlassische Philharmonie Stuttgart + +4623138Zeev SteinbergClassical violist (1918-2011).Needs Votehttps://he.wikipedia.org/wiki/זאב_שטיינברגhttps://de.wikipedia.org/wiki/Zeev_SteinbergZe'ev SteinbergZe’ev SteinbergIsrael Philharmonic OrchestraNew Israel String Quartet + +4624477Sid BalkinDrummerNeeds VoteS. BalkinBenny Goodman Sextet + +4625546Samuel CaviezelAmerican clarinetistCorrectThe Philadelphia Orchestra + +4625547Rachel KuClassical violistCorrectThe Philadelphia Orchestra + +4625549Anna Marie Ahn PetersenClassical violistCorrectThe Philadelphia Orchestra + +4625550Carol JantschAmerican tubistNeeds VoteThe Philadelphia OrchestraBrassology + +4625551Elina KalendarevaElina Kalendareva is a classical violinist from Uzbekistan. A member of [a27519] since 2002. + +Also known as: Elina KalendarovaNeeds VoteThe Philadelphia Orchestra + +4625552Alex VeltmanAlex Veltman is a Russian-born American classical cellist.Needs VoteThe Philadelphia OrchestraNew Jersey Symphony OrchestraThe New Haven Symphony OrchestraNew York Symphonic EnsembleHudson Valley Philharmonic + +4625554Daniel HanAmerican violinistCorrectThe Philadelphia Orchestra + +4625555Daniel MatsukawaClassical bassoonistCorrectThe Philadelphia Orchestra + +4625556Stephen WyrczynskiClassical violistCorrectThe Philadelphia Orchestra + +4625557Hirono OkaClassical violinistCorrectThe Philadelphia Orchestra + +4625558Jerome WiglerJerome Wigler (1920 - 2021) was an American violinist. He was the longest-serving member of [a27519], from 1951 until his retirement in 2011.Needs VoteThe Philadelphia Orchestra + +4625559Kimberly Fisher (2)Canadian classical violinistCorrectThe Philadelphia Orchestra + +4625560Matthew Vaughn (4)American trombonistNeeds VoteMatt VaughnTSgt Matthew VaughnThe Philadelphia OrchestraUnited States Air Force Band + +4625561John Hood (4)John Hood is an American classical bassist. A member of [a27519] from 1982 to 2020.Needs VoteThe Philadelphia OrchestraNational Symphony OrchestraNorth Carolina SymphonyThe Santa Fe Opera Orchestra + +4625562Robert W. EarleyRobert W. Earley is an American trumpeter. A member of [a27519] from 1992 to 2020.Needs VoteRobert EarleyThe Philadelphia OrchestraOrchestre symphonique de Montréal + +4625563Zachary de PueAmerican classical violinistNeeds VoteZach DePueThe Philadelphia OrchestraTime For ThreeIndianapolis Symphony OrchestraThe Depue Brothers Band + +4625564Yumi KendallAmerican classical cellistCorrectThe Philadelphia Orchestra + +4625565Kathryn Picht ReadAmerican classical cellistCorrectThe Philadelphia Orchestra + +4625566Shelley ShowersShelley Showers is an American hornist. A member of [a27519] from 1997 to 2024.Needs VoteShelly ShowersThe Philadelphia OrchestraThe Cleveland OrchestraCincinnati Symphony OrchestraUtah Symphony OrchestraNew Jersey Symphony Orchestra + +4625567Jonathan BeilerAmerican classical violinistCorrectThe Philadelphia Orchestra + +4625568Dmitri LevinRussian classical violinist. +Born in the Soviet Union in the city of Minsk, violinist Dmitri Levin studied at the School for the Musically Talented before entering the famed [l285011], where he was a student of Yuri Yankelevich. After completing his studies he served as principal second violin with the Minsk Opera and Ballet Theater. Mr. Levin emigrated to the United States in 1977 and joined the [a1043284] in 1979. During his five-and-one-half-year tenure there, he served as co-principal second violin for two seasons and gave two solo appearances with that orchestra. He joined [a27519] in 1984, and participates regularly in the Orchestra’s Chamber Music Concerts.Needs Votehttps://www.philorch.org/about-us/meet-your-orchestra/musicians/dmitri-levin/The Philadelphia OrchestraPittsburgh Symphony Orchestra + +4625569Herbert LightHerbert Light is an American violinist. A member of [a27519] from 1960 to 2016.Needs VoteThe Philadelphia OrchestraThe United States Army BandBaltimore Symphony OrchestraThe New Philadelphia Quartet + +4625570Burchard TangAmerican violistCorrectThe Philadelphia Orchestra + +4625571Elizabeth HainenAmerican harpistCorrectThe Philadelphia Orchestra + +4625572Choong-Jin ChangClassical violistCorrectThe Philadelphia Orchestra + +4625573Booker RoweBooker Rowe is an American classical violinist. A member of [a27519] from 1971 to 2020.Needs VoteBooker RoeThe Philadelphia OrchestraThe String Reunion + +4625574Kiyoko TakeutiJapanese classical pianist. A member of [a27519] from 1988 to 2025.Needs VoteThe Philadelphia OrchestraThe Philadelphia Chamber Ensemble + +4625575Henry G. ScottAmerican classical bassist, born in 1944. Married to [a4625595].Needs VoteThe Philadelphia Orchestra + +4625576Duane RosengardAmerican classical bassistCorrectThe Philadelphia Orchestra + +4625577Ohad Bar-DavidOhad Bar-David is an an American Israeli cellist. A member of the cello section of [a27519] from 1987 to 2025.Needs VoteOhad Bar Davidאוהד בר-דודUdi Bar-DavidThe Philadelphia Orchestra + +4625578Christopher DevineyClassical percussionistCorrectChris DevineyThe Philadelphia Orchestra + +4625579Richard Amoroso (2)Classical violinistNeeds Votehttps://www.philorch.org/about/musicians/richard-amoroso#/The Philadelphia Orchestra + +4625580Angela Zator NelsonAmerican classical percussionistCorrectAngela NelsonThe Philadelphia Orchestra + +4625581Albert FilosaClassical violistCorrectThe Philadelphia Orchestra + +4625582Harold Robinson (6)Harold Robinson is an American double bassist. A member of [a27519] from 1995 to 2022.Needs VoteHarold Hall RobinsonThe Philadelphia OrchestraHouston Symphony OrchestraNational Symphony OrchestraThe New Mexico Symphony Orchestra + +4625583Don S. LiuzziAmerican classical percussionistNeeds VoteDon LiuzziThe Philadelphia OrchestraThe Depue Brothers Band + +4625584Paul Roby (2)American classical violinistCorrectThe Philadelphia Orchestra + +4625585Michael ShahanAmerican classical bassistNeeds Votehttps://www.facebook.com/PhilOrch/posts/pfbid02FeyBRaTXhVsvNBHzD3L6XJ5JJxpJ94LriXY8kHyzcmDdXA5uEu8iDUEdbfstdFmplThe Philadelphia Orchestra + +4625586Angela Anderson (2)Angela Anderson SmithAmerican bassoonistNeeds VoteThe Philadelphia OrchestraSan Antonio Symphony OrchestraSan Jose Symphony + +4625587Jennifer HaasAmerican violinistCorrectThe Philadelphia Orchestra + +4625588Boris BalterClassical violinistCorrectThe Philadelphia Orchestra + +4625589Emilio GravagnoAmerican classical bassist, died 24 September 2016 at the age of 82.Needs VoteThe Philadelphia Orchestra + +4625590David Kim (7)American violinist and concert master, born in 1963.CorrectДэвид КимThe Philadelphia Orchestra + +4625591Herold KleinAmerican violinistCorrectThe Philadelphia Orchestra + +4625592Barbara GovatosClassical violinistCorrectThe Philadelphia Orchestra + +4625593David NicastroAmerican violistCorrectThe Philadelphia Orchestra + +4625594Jennifer MontoneAmerican hornistCorrectThe Philadelphia Orchestra + +4625595Yumi Ninomiya ScottYumi Ninomiya Scott (1943 - 10 September 2025) was a Japanese classical violinist. She was married to [a4625575].Needs VoteThe Philadelphia OrchestraThe Curtis String Quartet + +4625596Raoul QuerzeClarinetistCorrectThe Philadelphia Orchestra + +4625597David Cramer (2)American flutist. A member of [a27519] from 1981 to 2018.Needs VoteThe Philadelphia OrchestraOrchestre symphonique de MontréalPittsburgh Symphony Orchestra + +4625598Paul R. DemersAmerican clarinetistCorrectPaul DemersThe Philadelphia Orchestra + +4625599Lisa-Beth LambertLisa-Beth Lambert is an American violinist. A member of [a27519] from 2001 to 2015.Needs VoteThe Philadelphia OrchestraNational Symphony Orchestra + +4625601Miyo CurnowAmerican violinistCorrectThe Philadelphia Orchestra + +4625602Robert KesselmanRobert Kesselman is an American classical bassist. A member of [a27519] from 1987 to 2020.Needs VoteThe Philadelphia OrchestraPittsburgh Symphony Orchestra + +4625603Robert CafaroRobert 'Bob' Cafaro is an American classical cellist. A member of [a27519] from 1985 to 2024.Needs VoteThe Philadelphia OrchestraBaltimore Symphony Orchestra + +4625604Gloria De PasqualeGloria dePasquale Gloria dePasquale is an American classical cellist. A member of [a27519] from 1977 to 2022.Needs VoteThe Philadelphia Orchestra + +4625605Yayoi NumazawaJapanese classical violinistNeeds VoteThe Philadelphia Orchestra + +4625606Kazuo TokitoKazuo Tokito is a classical flutist. A member of [a27519] from 1981 to 2016.Needs VoteThe Philadelphia Orchestra + +4625607Philip KatesAmerican classical violinistCorrectPhil KatesThe Philadelphia Orchestra + +4625608Stephane DalschaertAmerican violinist, born in 1930, died in 2007.CorrectThe Philadelphia Orchestra + +4625609John KoenAmerican classical cellistCorrectThe Philadelphia Orchestra + +4626166Manfred KuhnAustrian violinist, born 5 January 1942 in Mistelbach, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +4626167Manfred GeyrhalterAustrian classical violinist, music professor and former Konzertmeister of the [a1208567].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener KammerorchesterTonkünstler Orchestra + +4626289Sebastian Schade (2)Classical tenorNeeds VoteRundfunkchor BerlinKammerchor Stuttgart + +4626293Alexander LauerGerman bass vocalistNeeds VoteRundfunkchor BerlinKammerchor Stuttgart + +4626760Yizhak SchottenYizhak Schotten (1943 - 2024) was an Israeli-born American violist and teacher.Needs VoteBoston Symphony OrchestraTokyo Philharmonic OrchestraCincinnati Symphony OrchestraHouston Symphony OrchestraPittsburgh Symphony Orchestra + +4628506Orchestra Of Clare CollegeNeeds Major ChangesClare College OrchestraClare College, CambridgeOrchestraOrchestra Of Clare College CambridgeOrchestra Of Clare College, CambridgeOrchestra, CambridgeThe Orchestra Of Clare College,Cambridge + +4628687Mark Peskanov[b]Mark Peskanov[/b] (b. 30 August 1956, Odesa, Ukrainian SSR) is a Soviet-born American violinist, composer, and conductor, brother of pianist [a=Alexander Peskanov], president and artistic director of [i][a=Bargemusic][/i] since 2005. + +Born in the Ukrainian Soviet Republic and initially educated at the Stoliarsky School of Music in Odessa, Peskanov immigrated to the United States in 1973. Mark studied with [a=Dorothy De Lay] at the [l=Juilliard School], earning his Bachelor's degree in 1979. He debuted with [a=National Symphony Orchestra] conducted by [a=Mstislav Rostropovich] in 1977, performing [url=https://discogs.com/artist/526579]Wieniawski[/url]'s [i]First Violin Concerto[/i]; Peskanov toured in the UK with Rostropovich and the [a=London Philharmonic Orchestra] during the 1978-79 season.Needs Votehttps://en.wikipedia.org/wiki/Mark_Peskanovhttps://isni.org/isni/000000008004875Xhttps://viaf.org/viaf/79766162/https://www.encyclopedia.com/arts/dictionaries-thesauruses-pictures-and-press-releases/peskanov-markhttps://thesob.org/guest-artists/mark-peskanov/https://www.nyys.org/community/alumni-network/student-alumni-profiles/mark-peskanov/The Philadelphia OrchestraThe Chamber Music Society Of Lincoln CenterString Orchestra Of Brooklyn + +4629947Jack Thompson (10)Trumpet playerCorrectBobby Hackett And His Orchestra + +4630404Hung-Wei HuangTaiwanese violistNeeds Votehttp://www.asiaphil.org/bbs/board.php?bo_table=bio2014&wr_id=36Hu-Wei Huang*Huang Hung WieNew York PhilharmonicVancouver Symphony Orchestra + +4632966Allen OstranderAmerican trombone player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteOstranderNew York Philharmonic + +4632995Katharina SchönbergClassical violinist.Needs VoteAmsterdam Bach SoloistsHolland Symfonia + +4633720Anton HorvathViolist, active in the 2010s.CorrectOrchestra Del Maggio Musicale Fiorentino + +4633869Meike LieserMusical coordinator and producer for classical releasesNeeds Vote + +4634055Jonathan JobClassical tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635589James Weeks (3)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635590Thomas Morris (4)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635591Benjamin Hughes (2)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635592James RidgwayClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635593David Guest (4)Classical bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635594Kieron MaiklemClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635596William Smith (28)English treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635597George GodsalClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635599Benjamin FitzgeraldClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635601James GorickClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635602Martin IllingworthClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4635603Ciaran O'Keeffe (2)Classical tenor vocalistNeeds VoteCiaran O'KeefeThe Choir Of Christ Church Cathedral + +4638046Lyle CoxTrombone player.Needs VoteDuke Ellington And His Orchestra + +4639167Barbara SanderlingGerman classical double-bass player born 1938 in Leipzig. Since 1963 she was the wife of the conductor [a=Kurt Sanderling]. +In 1961 she became the first double bassist in Germany at the [a=Berliner Sinfonie Orchester]. Sanderling was there until 1986 engaged as a 2nd solo double bassist. +1964 Founding member of the [a=Berliner Oktett] +1985 - 2003 Professor at the [l512906]. + +Needs VoteBerliner Sinfonie OrchesterBerliner Oktett + +4639260Joel BernacheCredited as piano technicianNeeds Vote + +4639363Paul Peter SpieringClassical violinist and conductorNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +4639748Francisco Javier ComesañaFrancisco Javier Comesaña ConcheiroSpanish violin player.Needs VoteFrancisco ComesañaJavier ComesañaOrquesta Sinfónica de RTVECuarteto Hispanico Numen + +4642872Jan Stewart (3)American singerCorrectHarry James And His Orchestra + +4643640Chuck Richards (2)Charles RichardsonBorn Charles Richardson in Baltimore (1913-1984). Jazz musician, lion tamer and radio DJ.Needs Votehttps://en.wikipedia.org/wiki/Chuck_RichardsChuck RichardsonRichards + +4643642Bill White (19)CorrectCalifornia Ramblers + +4643648Johnny McGhee (2)John Alexander McGheeAmerican big band and jazz trumpeter and bandleader who performed with various notable artists, including [a=Ella Fitzgerald], [a=The Andrews Sisters], and [a=Louis Armstrong]. His professional music career began in the early 1930s, and lasted until 1955 when he retired from the music business. + +Born: 3 October 1905 in Philadelphia, Pennsylvania, USA +Died: 3 July 1978 in Huntington, New York, USANeeds Votehttps://en.wikipedia.org/wiki/Johnny_McGheehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/206575/McGhee_JohnJ. Mc GheeJ. McGeeJ. McGheeJohn McGeeJohn McGheeJohnny McGeeLouis Armstrong And His OrchestraThe Erskine Butterfield TrioJohnny McGee And His Orchestra + +4644251Gene Ammons And His BandNeeds Major ChangesGene Ammons & BandGene Ammons & His BandGene Ammons BandGene Ammons' BandGene AmmonsSonny StittJunior ManceEugene WrightMatthew GeeBill MasseyTeddy StewartClarence AndersonAlfred "Chippy" OutcaltErnie ShepardCharles BatemanWes LandersLarry Townsend + +4645208Christoph BaumgartnerChristoph Baumgartner is a German drummer and percussionist. +Needs VoteG. Christoph BaumgartnerJunge Deutsche PhilharmonieGürzenich-Orchester Kölner PhilharmonikerHeeresmusikkorps 300 + +4645792Afanasy ChupinАфанасий Николаевич ЧупинAfanasy Chupin (born December 17, 1987, Omsk, USSR) is a Russian violinist and composer.Needs Votehttps://musicaeterna.org/participant/afanasy-chupin/?lang=enhttps://cyclowiki.org/wiki/%D0%90%D1%84%D0%B0%D0%BD%D0%B0%D1%81%D0%B8%D0%B9_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%D0%B8%D1%87_%D0%A7%D1%83%D0%BF%D0%B8%D0%BDAfanasii ChupinCamerata BernMusicaeterna + +4646608Orchestra Della Radio Televisione Della Svizzera ItalianaSwiss orchestra based in Lugano founded in 1935. + +The Orchestra Della Radio Televisione Della Svizzera Italiana (or Orchestra Della Radiotelevisione Della Svizzera Italiana) was the orchestra of [l=RTSI] until 1991 it became a Foundation and took its current name [url=https://www.discogs.com/artist/7393881-Orchestra-Della-Svizzera-Italiana-Lugano]Orchestra Della Svizzera Italiana[/url].Needs Votehttps://www.osi.swiss/https://en.wikipedia.org/wiki/Orchestra_della_Svizzera_ItalianaItalian Swiss Radio OrchestraMembers Of The Orchestra Della Svizzera ItalianaOrchester der Radio-Televisione Svizzera Italiana, LuganoOrchestraOrchestra Della Della Svizzera ItalianaOrchestra Della RSIOrchestra Della RTSIOrchestra Della Radio Della Svizzera ItalianaOrchestra Della Radio Della Svizzera Italiana, LuganoOrchestra Della Radio Svizzera ItalianaOrchestra Della Radiotelevisione Della Svizzera ItalianaOrchestra Della RtsiOrchestra Della Svizerra ItalianaOrchestra Della Svizzera ItalianaOrchestra Della Svizzeria ItalianaOrchestra Di Musica Leggera Della RTSIOrchestra R.T.S.I.Orchestra RTSIOrchestra RTSI LuganoOrchestra Sinfonica Della Svizzera ItalianaOrchestra Sinfonica della Radio della Svizzera ItalianaOrchestra Svizzera ItalianaOrchestra della Radio SvizzeraOrchestra della Radio della Svizzera ItalianaOrchestra della Svizzera ItalianaOrchestra della Svizzera italianaOrchestra e Solisti della Radio Televisione Svizzera ItalianaOrchestra of R.S.I.Orchestra of the Italian Radio and TelevisionOrchestre De La R.T.S.IOrchestre De La RTSIOrchestre De La Radio Suisse ItalienneOrchestre De La Radio Svizzera ItalianaOrchestre De La Radio Télévision Suisse - ItalienneOrchestre De La Radio-Télévision Suisse-ItalienneOrchestre De La RadioTélévision Suisse ItalienneOrchestre De La Suisse ItalienneOrchestre Della Svizzera ItalianaOrchestre de la R.T.S.I. (Lugano)Orchestre de la Radio Svizzera ItalianaOrquesta De La Radio Suiza ItalianaOrquesta de la Radio Suiza ItalianaOrquesta de la Radio Suiza-ItalianaR.T.S.I. OrchestraRTSI OrchestraRTSI Symphony OrchestraRadiotelevisione Della Svizzera ItalianaSolistas y Orquesta de la Radio Suissa - ItalianaSolisti Strumentali Della RSISwiss Italian OrchestraSwiss Italian Radio OrchestraSwiss-Italian Radio Orch.Symphony Orchestra Of The Italian-Swiss RadioThe OrchestraThe Orchestra Of The Swiss/Italian RadioThe Orchestra Of The Swiss/Italian RadioThe R.T.S.I. OrchestraKatie VitalieWilliam WaterhouseFederico CicoriaAnthony FlintDuilio M. GalfettiBeat HelfenbergerMaurice StegerHans LiviabellaAndriy BurkoCorrado GiuffrediEmanuele AntoniucciBarbara CiannameaWalter ZagatoChunhe GaoLouis Gay Des CombesEnrico FagoneLouis SauvêtreZora SlokarSébastien GalleyMajor Tamás (2)Ivan VukcevicBruno GrossiBianca MarinPiotr NikiforoffDavid DesimpelaereFabio ArnaboldiIrina RoukavitsinaJohann Sebastian PaetschAndreas LaakeFelix VogelsangDaniel Schmitt (7)Leopoldo CasellaLuca MagarielloAlberto BianoPaolo BeltraminiMarco SchiavonAlessandra Russo (2)Robert Kowalski (2)Vanessa RussellVittorio Ferrari (2)Aurélie Adolphe-EnglemannЕкатерина ВалиулинаJan Snakowski + +4647347Agata DaraškaitėLithuanian classical violinist.Needs Votehttps://www.agatadaraskaite.com/Agata DarashkaiteAgata DaraskaiteAgata Laima DaraškaitėLa SerenissimaKremerata BalticaThe Academy Of Ancient MusicLondon Contemporary OrchestraArcangeloConsone Quartet + +4647987Barnaby Smith (2)English countertenor, conductor and artistic director of the vocal ensembles Voices8 and Voces Cantabiles which he co-founded. He is a former treble of the choir of Westminster Abbey.Needs Votehttp://www.barnabysmith.netThe Choir Of Westminster AbbeyVoces8Voces CantabilesLes Inventions + +4648844Sneak's NoyseNeeds Major ChangesRobin JeffreyLucie SkeapingRoderick SkeapingMike BrainJeremy BarlowTim LaycockRay Attfield + +4649200Ian Mackintosh (2)British trumpet and bugle player. +He took his father's ([a=Jack Mackintosh (2)]) place in the trumpet section of the [a=BBC Symphony Orchestra] when he retired in 1952.Needs VoteBBC Symphony OrchestraLondon Baroque EnsembleThe Wind Virtuosi Of EnglandThe Military Ensemble Of London + +4649411Outlaw BrosMarco van Ophem & Wilfried van OphemHard Trance/Hardstyle/Electro DJ project from Wervershoof, Netherlands.Needs Votehttps://soundcloud.com/outlaw-bros-1MC van OphemWF van Ophem + +4650771Sharon RoffmanClassical violinistNeeds VoteOrchestre National Du Capitole De ToulouseEstonian Festival Orchestra + +4650928Piotr NikiforoffRussian classical violinistNeeds VotePetja NikiforoffPiotr NikiroffOrchestra Della Radio Televisione Della Svizzera Italiana + +4651300Edward KleinhammerEdward Marck KleinhammerEdward Kleinhammer (31 August 1919 - 30 November 2013) was an American trombone player. He was a member of the [a837562] from 1940 to 1985.Needs VoteChicago Symphony Orchestra + +4652607Amos WhiteAmos Mordechai WhiteAmerican jazz cornetist, born November 6, 1889 in Kingstree, South Carolina. +White entered Jenkins' Orphanage at age of nine, toured with the orphanage band, performed with circus and minstrel groups 1913-1918, led army band in France. In 1919 settled in New Orleans, played with [a=Oscar "Papa" Celestin], [a=Armand J. Piron], and on riverboat with [a=Fate Marable], with whom he performed intermittently until 1924. He may be heard with Marable on "Frankie and Johnny", the only record White ever made. Toured with [a=Mamie Smith] in 1927, worked as sideman and leader in Phoenix, Arizona after 1928 and in 1934 settled in Oakland, California; ceased full-time performing, but played occasionally into the 1960s.Needs VoteFate Marable's Society Syncopators + +4652608Fate Marable's Society SyncopatorsNeeds Votehttps://musicbrainz.org/artist/7e183032-b2b7-4546-beac-9fb32cc40fcfFate Marable Society SyncopatersFate Marable's Society OrchestraFate Marables Society SyncopatorsFate Morable's Society SyncopatorsWalter ThomasZutty SingletonNarvin KimballBert Bailey (2)Amos WhiteFate MarableFloyd Campbell (3)Norman Mason (2)Sidney DesvignesHarvey LankfordHenry KimballWillie Foster (2) + +4655221Ferdinand HügelClassical violist.Needs VoteF. HugelF. HügelConcertgebouw Chamber Orchestra + +4655223Roland KrämerClassical German violistNeeds VoteRoland KramerConcertgebouworkestConcertgebouw Chamber OrchestraEbony BandAmsterdam Bach SoloistsMembers Of The Royal Concertgebouw Orchestra + +4655224Arthur OomensDutch classical cellistNeeds VoteConcertgebouworkestConcertgebouw Chamber OrchestraRotterdams Philharmonisch Orkest + +4655294Oscar Pettiford And His 18 All StarsNeeds Major ChangesOscar Pettiford & His 18 All StarsDizzy GillespieDon ByasOscar PettifordVic DickensonClyde HartShelly ManneAl CaseyBill Coleman (2)Trummy YoungSerge ChaloffBenny HarrisJohnny Bothwell + +4657487Leah MatthewsAmerican jazz vocalistNeeds VoteWoody Herman And His OrchestraWoody Herman And His Third Herd + +4658752Arrigo GalassiFirst Oboe of the Philharmonic Orchestra and the Teatro alla Scala di Milano and died tragically in just 36 years.Needs VoteOrchestra Del Teatro Alla ScalaI Solisti Del Teatro Alla Scala + +4659668Anton MiesenbergerAustrian classical trombonistNeeds VoteBruckner Orchestra Linz + +4660156Christopher PidcockCello player from AustraliaNeeds VoteChris PidcockSydney Symphony Orchestra + +4660675Jason McCaldinUK treble vocalist, fl. 1970s.CorrectThe King's College Choir Of Cambridge + +4660815Emeline ConcéClassical violinistNeeds VoteÉmeline ConcéOrchestre Des Concerts LamoureuxQuatuor Akilone + +4663056Antonio Arias (2)Antonio Arias-Gago del MolinoSpanish flute player (b. 1951), son of [a=Antonio Arias (3)].Needs VoteLaboratorio de Interpretación MusicalOrquesta Sinfónica de RTVELIM: Solistas De Madrid + +4663562Il QuadrifoglioEnsemble which explores the repertoire of sonatas and dance suites from around the turn of the 18th century. +Elisabeth IngenHousz, violin; Abigail Graham, oboe, Barbara Kernig, violoncello and Miwako Hannya, harpsichord.Needs Vote + +4663620Angel Cárdenas (2)Ángel BartoliArgentinian tango singer, composer, and actor. +(18 Jul.1927 - 4 Dec.2005)Needs VoteA. CárdenasAngel CardenasÁngel CárdenasAníbal Troilo Y Su Orquesta Típica + +4664617Joachim GriesheimerGerman classical cellist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerGrüneburg Trio + +4665735Willem Van HoogstratenWillem van Hoogstraten (1884–1965) was a Dutch violinist and conductor. He was born in Utrecht and enrolled at the conservatory in Cologne at the age of sixteen. Van Hoogstraten also studied violin with [a=Otakar Ševčík] in Prague. The musician was married to the pianist [a=Elly Ney] from 1911 to 1927. + +He started performing as a conductor in 1914. Van Hoogstraten also conducted Brahms Festival in Vienna and Mozart Festival in Salzburg. In the twenties, Willem began his career in the United States. He led [a=The New York Philharmonic Orchestra] at the Lewisohn Stadium summer concert series from 1922 to 1939. In 1927, Van Hoogstraten conducted NYPhil playing [i]Rhapsody in Blue[/i] and [i]Concerto in F[/i] with George Gershwin as soloist. + +In 1925, Van Hoogstraten was appointed a music director of the [a=Oregon Symphony Orchestra] where he served for thirteen seasons. He also worked as a permanent conductor of [a=Das Mozarteum Orchester Salzburg] from 1939 to 1945.Correcthttps://en.wikipedia.org/wiki/Willem_van_HoogstratenDr. W. Van HoogstratenW. Van HoogstratenDas Mozarteum Orchester Salzburg + +4666212Leonid OgrinchukRussian classical pianist, born in Moscow in 1951.Needs VoteRussian National Orchestra + +4667930McKenzie's Mound City Blue BlowersName variant of the group more known as [a=The Mound City Blue Blowers].Needs VoteRed McKenzie's Mound City Blue BlowersRed McKenzie's Mound City Blues Blowers + +4669931Bass JumperNeeds Votehttps://www.facebook.com/basssjumper/https://soundcloud.com/bassjumperukMartin CookMartin Cook (11) + +4672249Josef BittnerGerman classical violinistNeeds VoteKammerorchester Berlin + +4673433Susan HendersonClassical violinist.Needs VoteRoyal Scottish National OrchestraRoyal Liverpool Philharmonic Orchestra + +4674372Peter Rosenberg (4)German violinist, born in 1 May 1950.Needs Votehttps://de.wikipedia.org/wiki/Peter_Rosenberg_(Musiker)Bamberger Symphoniker + +4674872Sumudu JayatilakaBritish alto vocalist born in London in 1980.Needs VoteSumuduLondon Voices + +4674874Günther ForstmaierClassical clarinetistNeeds VoteBamberger Symphoniker + +4679799Aldo D'AmicoAldo D'Amico is an Italian cellist.Needs VoteI MusiciOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Del Teatro La FeniceOrchestra Sinfonica Di Roma + +4679930Giuseppe PetroselliniItalian poet and librettist (29 November 1727 – 1799).CorrectGiuseppe Petroselli + +4680276Christian GeldsetzerGerman classical double bassist, born in Kirchen, Germany in May 1966. +Sub-principal Bass with [a301263], [a3010101], and [a848261]. Member of the [a490279] (1994-1997). Then he joined the [a=Philharmonia Orchestra] and, in 2008, he was appointed No.2 Double Bass.Needs Votehttps://philharmonia.co.uk/bio/christian-geldsetzer/https://www.feenotes.com/database/artists/geldsetzer-christian-1966-present/Radio-Sinfonie-Orchester FrankfurtPhilharmonia OrchestraCity Of Birmingham Symphony OrchestraThe Chamber Orchestra Of EuropeGürzenich-Orchester Kölner PhilharmonikerFrankfurter Opern- Und Museumsorchester + +4680277Imogen EastBritish classical violinist. +She attended the [l290263] and upon graduation joined the [a=BBC Symphony Orchestra]. In 1987, she became the youngest member of the [a=Philharmonia Orchestra], where she played for 30 years until 2017. She joined the [a=Oxford Philharmonic Orchestra], after being offered a Principal First Violin position, in 2018.Needs Votehttps://www.feenotes.com/database/artists/east-imogen/https://oxfordphil.com/violins/imogen-easthttps://vgmdb.net/artist/23273BBC Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraOxford Philharmonic Orchestra + +4680278Adrián VarelaUruguayan (Montevideo native) classical violinist, conductor, composer, and arranger. +Member of the [a=Philharmonia Orchestra] since 2002. Conductor and Artistic Director of the [b]Polish National Youth Orchestra[/b] and [b]One Tree Hill Sinfonia[/b], London.Needs Votehttp://www.adrianvarela.com/#https://www.facebook.com/adrian.varela.39108https://twitter.com/avarelamusic?lang=enhttps://www.linkedin.com/in/adrian-varela-92791244/?originalSubdomain=ukhttps://adrianvarelablog.tumblr.com/https://philharmonia.co.uk/bio/adrian-varela/https://www.dmu.ac.uk/dmu-music/musical-directors.aspxAdrian VarelaPhilharmonia Orchestra + +4680279Victoria IrishBritish classical violinist, and violin teacher. Born in Yeovil, Somerset, England. +She attended [l305416]. Victoria was a member of the [a861263] and the [a863063]. Member of the 1st violin section of the [a=Philharmonia Orchestra] since July 2002. With them she has performed string quartets as a member of the [url=https://www.discogs.com/artist/2644079-The-Philharmonia-Chamber-Orchestra]Philharmonia Orchestra Chamber Ensemble[/url].Needs Votehttps://www.facebook.com/victoria.irish.37https://twitter.com/victoriairish1?lang=enhttps://www.instagram.com/v4violin/?hl=enhttps://www.linkedin.com/in/victoria-irish-a68553a3/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/irish-victoria/https://philharmonia.co.uk/bio/victoria-irish/London Symphony OrchestraPhilharmonia OrchestraNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraThe Philharmonia Chamber Orchestra + +4680280Ellen BlytheBritish freelance classical viola player and teacher, born 27 January 1982 in London, England. +She obtained her Masters degree with Distinction from the [l=Royal Academy Of Music] in 2006. Member of the [a=Southbank Sinfonia] (2006-2007), the [a=Philharmonia Orchestra] (2007-2016), the [a=Royal Philharmonic Orchestra] (2007-present), and the [b]Oliveros Ensemble[/b]. She took a break from music in 2015 and joined the Metropolitan Police Service as a police constable in Lambeth, returning to her viola in 2017.Needs Votehttps://www.feenotes.com/database/artists/blythe-ellen-january-27-1982-present/http://www.violin-viola-maker.com/portfolio/ellen-blythe/https://www.musicteachers.co.uk/teacher/cfb4a347ebac21f3ac6ehttps://maslink.co.uk/client-directory?client=BLYTE1&instrument=viola1https://www.oliverosensemble.com/aboutRoyal Philharmonic OrchestraPhilharmonia OrchestraSouthbank Sinfonia + +4680281Ashok KloudaBritish classical cellist (specialised in chamber music and session recording, including remote recording), and teacher. +He studied at the [l481472] (2007-2009), [l305416] (2009-2010), and the [l527847] (2010-2011). He has performed in ensembles such as the [a=Chineke! Orchestra], [a=The Fibonacci Sequence], [a=Ensemble 360], and the [a=Jigsaw Players]. From 2009 to 2011 he was cellist in the [b]Barbirolli Quartet[/b]. Member of the [a=Artea Quartet], cello octet [a=Cellophony], the [b]London International Players[/b] and the [b]Klouda Ensemble[/b]. Co-founder and joint Artistic Director (with his wife [a=Natalie Klouda]) of [b]Highgate International Chamber Music Festival[/b].Needs Votehttp://ashokklouda.com/https://soundcloud.com/user-938588448https://www.facebook.com/ashok.kloudahttps://twitter.com/ashokklouda?lang=enhttps://www.linkedin.com/in/ashok-klouda-952603105/?originalSubdomain=ukhttps://www.soundklouda.com/https://www.chambermusicfestival.co.uk/ashok-klouda-c9vyhttps://www.chineke.org/news/2019/2/4/player-spotlight-ashok-kloudahttps://www.musicteachers.co.uk/teacher/275234a24c7fbb10b47cPhilharmonia OrchestraLondon Contemporary OrchestraThe London Recording OrchestraThe Fibonacci SequenceEnsemble 360Chineke! OrchestraCellophonyArtea QuartetJigsaw PlayersBarbirolli Quartet + +4680282Helen CochraneFreelance classical violinist. +She was a member of the [a1979861] (1980-1982), the [a=Philharmonia Orchestra] (1982-1985), and the [a855061] (1985-1986) before going freelance.Needs Votehttps://maslink.co.uk/client-directory?client=COCHH1&instrument=VIOLI1Philharmonia OrchestraOrchestra Of The Royal Opera House, Covent GardenBBC Northern Symphony Orchestra + +4680283Nathaniel Anderson-FrankCanadian classical violin player and educator. Born in March 1985 in Toronto, Ontario, Canada. +Holding a Bachelor of Music degree with academic honours from the [l=Cleveland Institute of Music], he then received his Masters of Music degree from the [l527847] in 2011. In February 2011, he was appointed to the No. 4 chair of the [a=Philharmonia Orchestra] first violins. In 2013, he joined the [a=Piatti Quartet] as first violinist. Leader of [a263416]. Regular leader of the [a=Orion Symphony Orchestra], [b]Paradisal Players[/b] & [b]City Side Sinfonia of London[/b] and a former member of the [b]LSO String Experience Scheme[/b].Needs Votehttps://twitter.com/Nathani89722098https://www.instagram.com/nathanielandersonfrank/https://soundcloud.com/nathaniel-anderson-frankhttps://www.linkedin.com/in/nathaniel-anderson-frank-91815352/?originalSubdomain=ukhttps://www.musicalorbit.com/product-page/nathaniel-anderson-frankhttps://purcellcma.wordpress.com/our-tutors/our-tutorsnathaniel-anderson-frank/http://files.coc.ca/pdfs/Anderson-FrankandBecke1129.pdfhttp://alexeykonkin.com/CLASSICA/2-instr-frank.htmhttps://www.list.co.uk/event/1492541-nathaniel-anderson-frank-violin-and-jan-leoffler-piano-lunchtime-recital/https://piattiquartet.com/whos-who/https://www.ram.ac.uk/alumni/meet-our-alumni#nathaniel-anderson-frankhttps://www.imdb.com/name/nm6652352/https://www2.bfi.org.uk/films-tv-people/50c309253fb8fhttps://www.kinopoisk.ru/name/6330394/Philharmonia OrchestraBBC Concert OrchestraYoung Musicians Symphony OrchestraPiatti Quartet + +4680284Karin TilchGerman classical violinist, born in Bremen, Germany. +She first studied at the [l543312] and continued her studies at the [l481472]. In 1988 she played for [a3206905]. She went on to play with the [a655161] (1991-1992), before joining the 1st Violin section of the [a=Philharmonia Orchestra] in 1993.Needs Votehttps://www.feenotes.com/database/artists/tilch-karin/https://philharmonia.co.uk/bio/karin-tilch/Philharmonia OrchestraJunge Deutsche PhilharmonieOrchester Des Schleswig-Holstein Musik Festivals + +4680285Soong ChooSouth Korean classical violinist, music director, and teacher, born in 1974 in Busan. +He studied at the [l527847]. His first professional work was with the [a=London Musici] while studying. In 2000, he joined the First Violin section of the [a=Philharmonia Orchestra]. Member of the [b]Meacenas Ensemble[/b].Needs Votehttps://www.facebook.com/soong.choohttps://twitter.com/soongchoo1?lang=enhttps://www.linkedin.com/in/soong-choo-009b56a/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/choo-soong-1974-present/https://philharmonia.co.uk/bio/soong-choo/https://londonkoreanlinks.net/2005/05/04/favourite-classics-at-st-giles-in-the-fields/https://vgmdb.net/artist/23276Philharmonia OrchestraLondon Musici + +4680286Anne Baker (2)British cellist. +She began playing the cello aged five and was the youngest ever student to be accepted by the [a=Royal Academy Of Music]. Member of the [a=Philharmonia Orchestra] since 1989.Needs Votehttps://www.linkedin.com/in/ann-baker-81840b58/https://philharmonia.co.uk/bio/anne-baker/Philharmonia OrchestraYoung Musicians Symphony Orchestra + +4680288Ella RundleClassical chamber and orchestral cellist. +She studied at [a2987703] and [l305416] (graduated in 2011). Member of the [a=Philharmonia Orchestra] since 2015. Also member of the cello octet [a=Cellophony].Needs Votehttp://www.ellarundle.comhttps://philharmonia.co.uk/bio/ella-rundle/Philharmonia OrchestraCellophony + +4680290Louise HawkerClassical viola player and teacher. +She studied at the [l290263]. She has played with the [a=Philharmonia Orchestra] and the [a=London Philharmonic Orchestra].Correcthttps://maslink.co.uk/client-directory?client=HAWKL1&instrument=VIOLA1https://www.musicteachers.co.uk/teacher/cd326c52e2d8f4f33afahttps://www.imdb.com/name/nm2653795/London Philharmonic OrchestraPhilharmonia Orchestra + +4680291Gareth SheppardWelsh classical double bassist. +He joined the [a=Philharmonia Orchestra] in December 2009 as a member of the double bass section.Needs Votehttps://philharmonia.co.uk/bio/gareth-sheppard/Philharmonia Orchestra + +4680292Cheremie Hamilton-MillerBritish classical violist. +She studied at [l305416] (1988-1992). Co-principal viola at [a5283441] (1993-1998) and at the [a=BBC National Orchestra Of Wales] (1998-2001) before joining [a=Philharmonia Orchestra] as a fully fledged member in 2009. She was appointed Director of the orchestra on 6th Decembeer 2018 and became orchestra's Deputy President in June 2019. +Born June 1969 in the South of England.Needs Votehttps://www.linkedin.com/in/cheremie-hamilton-miller-07326866/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/cheremie-hamilton-miller/https://www.feenotes.com/database/artists/hamilton-miller-cheremie/http://www.morgensternsdiaryservice.com/WebProfile/hamilton-miller_c_6433.shtmlCheremie Hamilton MillerPhilharmonia OrchestraBBC National Orchestra Of WalesRTÉ National Symphony Orchestra + +4680293Susan HedgerSusan Mary HedgerBritish classical violinist. Born on 4 March 1964 in London, England. +She attended the [l290263] and upon graduation joined the [a=Philharmonia Orchestra] (2nd Violin) as a full member in 1992.Needs Votehttps://www.feenotes.com/database/artists/hedger-susan/https://philharmonia.co.uk/bio/susan-hedger/https://vgmdb.net/artist/23289Philharmonia Orchestra + +4680294Lulu FullerClassical violinist. +She studied at the [l619629], the [l527847], and the [l484524]. At age eleven, she made her concerto debut with the [a=Singapore Symphony Orchestra]. She has toured with both the [a4960494] and the [a4847690]. She has performed with the [a=London Symphony Orchestra], the [a884062], and [a3380330], prior to joining the [a=Philharmonia Orchestra] in 2011 as 1st Violin.Needs Votehttps://philharmonia.co.uk/bio/lulu-fuller/https://vgmdb.net/artist/23279London Symphony OrchestraPhilharmonia OrchestraBaltimore Symphony OrchestraSingapore Symphony OrchestraThe English National Opera OrchestraUBS Verbier Festival Chamber OrchestraUBS Verbier Festival OrchestraPhilharmonia Chamber Players + +4680295Jan RegulskiPolish classical violinist, chamber musician, session player, teacher and coach. Born in Warsaw, Poland. +He graduated from [l305416]. He was a founding member of the [a11767403] and the [b]Alma Strings Ensemble[/b], and a member of the [a=European Union Youth Orchestra]. In 2009, he became a member of the [a=Philharmonia Orchestra] (2nd violin). Co-founder of the [b]Polish National Youth Orchestra[/b] in 2013.Needs Votehttps://www.playwithapro.com/live/Jan-Regulski/https://philharmonia.co.uk/bio/jan-regulski/https://www.musicteachers.co.uk/teacher/e6f8c4e585535250db62https://www.imdb.com/name/nm13465245/https://vgmdb.net/artist/23290London Symphony OrchestraPhilharmonia OrchestraEuropean Union Youth OrchestraThe Chamber Orchestra Of London + +4680296Eleanor WilkinsonBritish classical violinist, born in Lurgarn, Northern Ireland, UK. +She began playing the violin at the age of six. Whilst at school she was a member of the [a=National Youth Orchestra Of Great Britain] and led the [a=City Of Belfast Youth Orchestra (CBYO)]. She went on to study at the [l459222]. She continued her studies at the [l1209200]. Whilst in Vienna, Eleanor led the Wiener Kammeroper Orchestra, was a member of the [a5022617] as well as freelancing with other groups in particular the [a696225]. She joined the [a=Philharmonia Orchestra] in the late 1980s.Needs Votehttps://philharmonia.co.uk/bio/eleanor-wilkinson/https://www.feenotes.com/database/artists/wilkinson-eleanor/Elenor WilkinsonPhilharmonia OrchestraNational Youth Orchestra Of Great BritainEnsemble Des Xx.Jahrhunderts + +4680297Fiona DalglieshBritish freelance classical violist.Needs Votehttps://www.facebook.com/fiona.opieLondon Symphony OrchestraPhilharmonia Orchestra + +4680298Samuel BurstinBritish classical violist, music director, and conductor. Born 10 June 1981 in London, England. +He started out on the piano, saxophone and violin, but became enamoured of the viola at seventeen years of age. He joined the [a=National Youth Orchestra Of Great Britain] as a violist. He attended the [l680970] and graduated with a Bachelor's degree in 2003 and a post-graduate degree in 2004. He was a member of the [a=Southbank Sinfonia] from 2004 to 2005 and then joined the [a=Philharmonia Orchestra] of London. Founder and Principal Conductor of the [b]Paradisal Players[/b] in 2011. Another group to which Samuel is integral is [b]The Elena Trio[/b]. +He is married to the Slovenian pianist [a6279700].Needs Votehttps://twitter.com/samburstin?lang=enhttps://www.feenotes.com/database/artists/burstin-samuel-10-june-1981-present/http://chamberplayers.co.uk/sam-burstin/https://erso.london/erso-people/conductors/samuel-burstin/https://www.trinitylaban.ac.uk/alumni/alumni-profiles/samuel-burstin/https://www.svetlanov-evgeny.com/en/the-winners-biographies/samuel-burstin-3rd-prize-of-2014-competition/https://www.musicteachers.co.uk/teacher/b773e5693cbb0e22c9e4https://vgmdb.net/artist/23295Sam BurstinPhilharmonia OrchestraNational Youth Orchestra Of Great BritainSouthbank Sinfonia + +4680299Paula Clifton-EverestAustralian classical violinist and teacher. +She grew up in Cambridge, England, UK. Paula studied at [l305416] (graduated in 1997), and in her third year won a first violin job in [url=https://www.discogs.com/artist/1777083-Philharmonie-Der-Nationen]Die Philharmonie Der Nationen[/url]. On returning to the UK, Paula freelanced with many major British Orchestras and performed with her quartet in numerous chamber music festivals. She has been a member of the [a=European Union Youth Orchestra], and [a=London Musici]. Member of the second violin section of the [a=Philharmonia Orchestra] since 2003.Needs Votehttps://www.playwithapro.com/live/Paula-Clifton-Everest/https://www.feenotes.com/database/artists/clifton-everest-paula/https://mmsf.philharmonia.co.uk/orchestra/players/12747/paula_clifton-everesthttps://www.imdb.com/name/nm9000418/Philharmonia OrchestraEuropean Union Youth OrchestraPhilharmonie Der NationenLondon Musici + +4680300Gideon RobinsonClassical violinist. +He studied at the [l290263]. Gideon joined the [a=Philharmonia Orchestra] second violin section in 1992. Also member of [b]LeSoirée String Quartet[/b].Needs Votehttps://philharmonia.co.uk/bio/gideon-robinson/https://www.feenotes.com/database/artists/robinson-gideon/http://lesoiree.co.uk/who-are-wehttps://www.igdb.com/people/gideon-robinson/gameographyPhilharmonia Orchestra + +4681474David Fay (2)Classical bassist +Husband of [a=Pamela Fay (2)]Needs VoteThe Philadelphia Orchestra + +4684378The Southland SixNeeds VoteThe Original Memphis FiveLadd's Black AcesLanin's Southern SerenadersNubian FiveCarolina Cotton Pickers (2)The Kentucky Serenaders (3)T.N.T. Rhythm BoysThe Savannah SixKentucky Serenaders (3)Hollywood SyncopatorsKentucky FiveConnorized JazzersWhite Bros. OrchestraAlameda Wonder OrchestraBroadway Seven + +4685720Joseph Labracio Joseph Louis LaBracioJoseph Labracio (born September 5, 1941, Elizabeth, New Jersey, USA - died April 21, 2021) was an American bass guitarist and singer.Needs Votehttps://en.wikipedia.org/wiki/Joe_LongJoe Long (4)The Four SeasonsThe Wonder Who? + +4686018Thomas Forstner (2)Classical trumpeterNeeds VoteBamberger Symphoniker + +4686989Dietrich Von KaltenbornClassical cellistNeeds VoteBayerisches Staatsorchester + +4689090Horst SchönwälderHorst Schönwälder (born 1949) is a German cellist and conductor. +Needs VoteStaatskapelle DresdenOrchester der Bayreuther FestspieleFrankfurter Opern- Und Museumsorchester + +4690636Darrel BarnesDarrel Barnes, Adjunct Professor of Violin, Viola, and French horn has been a member of the Drury Faculty since 2001. His teachers include Esther Wyman, Henri Nosco, David Cerone, Ivan Galamian, William Preucil, Nathan Gordon and Joseph dePasquale (Violin and Viola) as well as Robert Fries and David Krehbiel (French Horn). Mr. Barnes was already a violist with the Detroit Symphony when he competed on French horn in the National Federation of Music Club's national competition, winning First Prize in the winds category. From there, he won an audition to become a member of the Viola section of the Philadelphia Orchestra, where he also doubled on French horn. For several years, Mr. Barnes was Principal Violist of the St. Louis and later the Indianapolis Symphonies. He has held two full-time positions, first at Florida State University and then at Ithaca College where he taught Viola and chamber music. In addition he was Violist of the internationally renowned Lenox Quartet, in residence at Ithaca College. In addition Mr. Barnes was an adjunct professor at Washington University (St.Louis), DePauw (Terre Haute), and Butler (Indianapolis). He has also recorded on the Vox label the Beethoven Trio for Flute, Violin and Viola and the Brahms Clarinet Quintet. More recently, he was a member of the Lawrence Welk Orchestra in Branson, MO. + +Presently, in addition to his teaching duties at Drury University, Mr. Barnes performs with the faculty woodwind quintet and brass quartet, and is Principal Violist of the Fort Smith, Arkansas Symphony. He holds memberships in the College Music Society, National Music Teachers Association, American Viola Society, International Horn Society, and the American Federation of Musicians. + +B.A., Wayne University + +Twin brother of [a2328596] and father of [a3298999].Needs Vote + +4693246Ann-Christin RaschdorfAnn-Christin Marie RaschdorfSwedish classical violinist, born February 19, 1977.Needs VoteGöteborgs Symfoniker + +4693248Toril Syrrist-GelgotaNorwegian cellist, born 1974 at Andøya, Norway. Wife of [a3256257].Needs VoteToril SyrristToril Syrrist GelgotaOslo Filharmoniske Orkester + +4693551Zoltan PaulichHungarian born cellist, now based in Germany.Needs VoteZoltán PaulichStaatsorchester StuttgartOrchester der Bayreuther FestspieleVerdi QuartettCello-Ensemble Peter Buck + +4694868Alfred ZigheraAlfred ZighéraClassical violistNeeds VoteA. ZigheraBoston Symphony OrchestraBoston Symphony Chamber Players + +4696415Amanda Stewart (3)American classical trombonist.Needs VoteSaint Louis Symphony OrchestraSan Antonio Symphony Orchestra + +4697265Davide Pozzi (2)Italian classical keyboardistNeeds VoteAlessandro Stradella ConsortLa VenexianaL'Aura Soave CremonaKammerakademie PotsdamI Madrigalisti AmbrosianiCanto FioritoBariantiquaEstro Cromatico + +4697742Gottfried Wilhelm SacerNeeds Major ChangesGottfried Wilh. SacerSacer + +4698348John Bradbury (4)British classical clarinetist, and clarinet teacher. Born in 1967. +He was the Principal Clarinet of the [a=National Youth Orchestra Of Great Britain]. He then studied at the [l527847]. 2nd Clarinet of [a=The Chamber Orchestra Of Europe] (1993-1995), and the [a=London Symphony Orchestra] (1995-1997). In 1997, he became Principal Clarinet of the [a=BBC Philharmonic]. He has taught at the [l459222]. +Son of [a=Colin Bradbury].Needs Votehttps://open.spotify.com/artist/75IqcPMpAigZTVd6A3VfyIhttps://music.apple.com/us/artist/john-bradbury/4421305https://www.musicalchairs.info/about/directorshttps://www.cassgb.org/features/post/meet-the-clarinets-of-the-bbc-philharmonic/https://divineartrecords.com/artist/john-bradbury/https://www.naxos.com/person/John_Bradbury_38125/38125.htmLondon Symphony OrchestraBBC PhilharmonicThe Chamber Orchestra Of EuropeNational Youth Orchestra Of Great BritainTrio Gemelli + +4698477Jack Stevens (4)John Stevens(September 25, 1940 - January 18, 2003) jazz saxophonist who played with Woody Herman.Needs VoteJackie StevensWoody Herman And His OrchestraWoody Herman And The Swingin' HerdJazz In The Classroom + +4699547Edward McMullanClassical alto and countertenor vocalist.Needs Votehttps://twitter.com/edwardmcmullanEdwards McMullanThe SixteenThe Erebus Ensemble + +4699742Gillian HullClassical alto vocalist.Needs VoteThe Schütz Choir Of London + +4699743Susan Anderson (3)Classical alto vocalist.Needs VoteThe Schütz Choir Of London + +4699763Elisabeth DoonerScottish classical piccolo player born in EdinburghNeeds Votehttps://www.naxos.com/Bio/Person/Elisabeth_Dooner/208651DoonerScottish Chamber OrchestraLondon Classical PlayersConcerto Caledonia + +4700274Richard TyackClassical trombone player.Needs VoteThe Academy Of Ancient MusicLondon Wind Orchestra + +4701572Petra Andrejewski-MeiningGerman oboist +born in Berlin, GermanyNeeds VoteVirtuosi SaxoniaeDresdner Kapellsolisten + +4701573Csaba KelemenHungarian trumpeterCorrectDresdner PhilharmonieVirtuosi Saxoniae + +4702234Pablo González (4)Spanish classical conductor. +Orquesta Sinfónica de RTVE principal conductor from 2019 to 2023. +Needs Votehttp://www.pablogonzalez.euPablo GonzálesOrquesta Sinfónica de RTVE + +4704209Alan Walker (8)Chorister vocalistNeeds VoteSt. John's College Choir + +4704210Marcus PolglaseTenor vocalistNeeds VoteSt. John's College Choir + +4704211Max JonasChorister vocalistNeeds VoteSt. John's College Choir + +4704212Dale AdelmannAmerican bass vocalist & chorus master.Needs VoteSt. John's College Choir + +4704213Thomas Holmes (3)Alto vocalistNeeds VoteSt. John's College Choir + +4704215Richard Griffin (4)Credited for chorister vocals on a British classical release (baroque, modern) from 1988 +Needs VoteSt. John's College Choir + +4704216David Thomson (4)Tenor vocalistNeeds VoteSt. John's College Choir + +4704217Jeremy HayterBass vocalistNeeds VoteSt. John's College Choir + +4704218Samuel ThorpChorister vocalistNeeds VoteSt. John's College Choir + +4704219Alistair FlutterChorister vocalistNeeds VoteSt. John's College Choir + +4704220Andrew McGeachinBass vocalistNeeds VoteSt. John's College Choir + +4704221Graham Walker (9)British cellist and conductor who studied and sang at St. John's College, CambridgeNeeds VoteSt. John's College ChoirKarolos (2) + +4704222Mike EntwisleAlto vocalistNeeds VoteSt. John's College Choir + +4704223James TurnbullClassical Alto vocalistNeeds VoteSt. John's College Choir + +4704224Benedict PerchChorister vocalistNeeds VoteSt. John's College Choir + +4704225John HewishChorister vocalistNeeds VoteSt. John's College Choir + +4704226Mark WhybourneChorister vocalistNeeds VoteSt. John's College Choir + +4704227William HamChorister vocalistNeeds VoteSt. John's College Choir + +4704228Johan Bergström-AllenChorister vocalistNeeds VoteSt. John's College Choir + +4704229Benedict GummerChorister vocalistNeeds VoteSt. John's College Choir + +4704230Timothy ParkerChorister vocalistNeeds VoteSt. John's College Choir + +4704231Robert Carey (4)Alto vocalist. Chorus master of [a=The Manchester Grammar School Choir].Needs VoteSt. John's College Choir + +4704413Jiří Havlík (2)Czech hornist, composer and conductorNeeds VoteJiří HavlíkThe Czech Philharmonic Orchestra + +4705819João Moreira (8)Portuguese classical tenor vocalist, born in 1980 in Évora.Needs Votehttp://www.bach-cantatas.com/Bio/Moreira-Joao.htmThe Amsterdam Baroque ChoirNederlands KamerkoorVox Luminis + +4707156Polien KostenzeViolinistNeeds VoteCollegium Vocale + +4707157Peter DeenenViola instrumentalistNeeds VoteCollegium Vocale + +4707158Mihiko KimuraJapanese ViolinistNeeds VoteCollegium Vocale + +4707225Jeremy Huw WilliamsJeremy Huw Williams (born 3 April 1969 in Cardiff) is a Welsh bass & baritone opera singer who studied at Ysgol Gyfun Gymraeg Glantaf, St John's College, Cambridge, at the National Opera Studio, and with April Cantelo. +Williams has appeared for Welsh National Opera, Opera Ireland and Music Theatre Wales amongst others, and has released numerous recordings, most notably of music by contemporary Welsh composers, including Alun Hoddinott, William Mathias and Mansel Thomas. In addition to these he has also given premieres of works by composers John Tavener, Martin Butler, John Metcalf, Julian Phillips, Edward Dudley Hughes, Ian Wilson, Richard Causton, Edward Rushton, Arlene Sierra and Huw Watkins.Needs Votehttps://en.wikipedia.org/wiki/Jeremy_Huw_Williamshttp://www.jeremyhuwwilliams.com/biography/http://arcadiamusic.org.uk/pages/node/52Jeremy WilliamsWilliamsSt. John's College ChoirThe Arianna Ensemble + +4707360Richard Temple SavageBritish bass clarinetist, born in 1909 and died in 1996.Needs VoteTemple SavageLondon Philharmonic Orchestra + +4708823Adelheid Blovsky-MillerGerman harpist and music professor.CorrectOrchester Der Wiener Staatsoper + +4709076Benedikt EnzlerClassical German cellistNeeds VoteBenedikt Maria EnzlerMünchner PhilharmonikerConcertgebouworkestConcertgebouw Chamber OrchestraMembers Of The Royal Concertgebouw Orchestra + +4709971Christine Herrmann-WewerGerman soprano vocalist.Needs VoteRIAS-Kammerchor + +4709972Jutta PotthoffClassical soprano vocalist.Needs Votehttp://www.jutta-potthoff.de/RIAS-Kammerchor + +4711160Václav MáchaCzech classical pianist. + +Born: January 31, 1979. +Died: April 23, 2022 (aged 43).Needs VoteThe Czech Philharmonic OrchestraJosef Suk Piano QuartetHalíř Trio + +4712037Mat HeighwayClassical double-bassistNeeds VoteRoyal Philharmonic Orchestra + +4713045The English ConcertThe English Concert was founded by harpsichordist [a=Trevor Pinnock] CBE in 1972. He retired as artistic director at the end of 2002. From 2003 to 2007, English Concert was directed by [a=Andrew Manze]. He was succeeded by [a=Harry Bicket].Needs Votehttps://englishconcert.co.uk/https://www.facebook.com/TheEnglishConcert/https://en.wikipedia.org/wiki/The_English_ConcertEnglish ConcertEnglish Concert OrchestraEnglish ConsortThe English Concert OrchestraThe English ConsortАнглийский КонцертКамерный Оркестр «Английский Концерт»Хор Английского КонцертаFrancis GrierNicholas ParkerPeter McCarthyUrsula HolligerStephen SaundersSimon FergusonRupert BawdenPhilip EastopAnthony PleethSimon StandageRoger GarlandMalcolm SmithBelinda SykesJames TylerSarah McMahonRobin JeffreyColin KitchingCatherine FinnisRichard WatkinsJohn WillisonDavid CoxRobert HowesPamela ThorbySteve HendersonPhilip PickettElizabeth KennyMark Bennett (2)Crispian Steele-PerkinsDavid StaffPeter HansonJonathan ByersLouise HoganAndrew Clark (3)Peter CollyerDominic O'DellJames HollandAbigail BrownEleanor SloanAnthony ChidellNatasha KraemerChi Chi NwanokuFrances TurnerDiane MooreStephen KeavyBenedict HoffnungRoy GoodmanAnn-Kathrin BrüggemannGraham CracknellValerie BotwrightJan SchlappElizabeth WilcockValerie DarkeRosemary NaldenPaul NicholsonRachel Brown (2)Alastair RossMiles GoldingJulie LehwalderMary SeersLynne DawsonSusie Carpenter-JacobsAnnette IsserlisJane NormanLisa BeznosiukAndrew Watts (2)Sophia McKennaGuy Williams (2)Rachel BeckettAlastair MitchellCharles MedlamIngrid SeifertStephen PrestonWilliam HuntRichard GwiltJohn TollAndrew ManzeJaap ter LindenNicola CleminsonMargaret FaultlessJonathan MansonJames GhigiTrevor Jones (4)Richard WebbMicaela CombertiKatherine HartFelix WarnockClare ShanksKenneth GilbertTrevor PinnockPauline SmithWilliam ThorpPaula ChateauneufMilan TurkovicAnthony RobsonWalter ReiterMaya HomburgerCatherine LathamMaurice WhitakerRichard TunnicliffeMichael Laird (2)Pauline NobesJakob LindbergLorraine WoodAnthony HalsteadDavid ReichenbergBeatrix HülsemannHelen VerneyRoy MowattIona DaviesAmanda McNamaraJulia BishopNigel NorthIvor BoltonDavid Miller (7)Risa BrowderJennifer Ward ClarkeDavid WatkinLevon ChilingirianMartin Lawrence (3)Iestyn DaviesDavid Gordon (5)David ChattertonStephen Jones (7)Paul Goodwin (2)Marion ScottMonica HuggettTimothy KraemerAlison CracknellJames Ellis (3)Jane CoeLisa CochraneSusan BicknellNicholas ParleLucy HowardLaurence CummingsChristian RutherfordIaan WilsonPolly WaterfieldSuki TowbPeter GoodwinRobert MaskellChristopher PoffleyAlberto GrazziRoger MontgomeryGavin EdwardsNeil McLaren (2)Susan AddisonAnne SchumannPhilip TurbettChristopher HindAnna McDonald (2)Raul DiazNeil BroughMichael Harrison (4)Theresa CaudleAlison McGillivrayRobert WoolleyMargaret ArchibaldGail HennessyTherese TimoneyJeremy WardColin LawsonKati DebretzeniFrank de BruineBrian SewellDavid WishKatharina ArfkenElizabeth RandellCatherine WeissFrances EustaceMatthew DixonSimon Jones (10)Clare SalamanColin HortonAlfredo BernardiniRachel IsserlisJaan WilsonKeith MarjoramWilliam CarterLiz MacCarthyKatherine McGillivrayTimothy LyonsRobert QuinneyAnthony CrossJoseph CrouchLars Ulrik MortensenNoel RainbirdJane Rogers (2)Cherry ForbesPaolo GrazziJosep BorràsDavid Bentley (4)Rodolfo RichterCatherine Martin (2)Alexandra BellamyPeter HoltslagFiona HuggettMarc Ashley CooperSally Jackson (2)Kerstin Linder-DewanKatrina RussellJane DownerMark Radcliffe (3)Hilary StockKatharina SpreckelsenBen NorburyNicholas Thompson (2)Neil Foster (3)Ena BurgessNicholas BendaAlberto GuerraNat HarrisonLaurice CampbellCaroline KershawRobin CaneNicholas Robinson (2)Carlos RieraUlrike EngelNaoki KitayaStephen BullYlvali ZilliacusMaurice StegerHarry BicketStefanie HeichelheimClaire DuffKirra ThomasAngus Davidson (2)Louella AlatiitKristin DeekenHuw DanielNadja ZwienerAlfonso Leal Del OjoBernard Robertson (2)Stephen Sanders (2)Hannah McLaughlinElizabeth McCarthyIain LedinghamRobert Montgomery (5)Katrin LazarHugh Davies (5)Caroline MaguireKinga UjszásziMerlin HarrisonAnthony Van KampenJordan BowronAnna CurzonJacek KurzydloTom Foster (6)Sergio BucheliUrsula Paludan MonbergAnnie GardSimon Stafford (3) + +4714520Friedhelm BießeckerFriedhelm Bießecker (born 30 March 1957) is a German classical trumpeter.Needs VoteJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleStaatsphilharmonie Rheinland-PfalzDie Blechbläsersolisten der Staatsphilharmonie Rheinland-Pfalz + +4716042Dom Dustan O'KeeffeNeeds Major Changes + +4718776Neill BlackClassical cellistNeeds VoteEnglish Chamber Orchestra + +4719810Marco Thomas (3)Clarinet playerNeeds VoteDeutsche Kammerphilharmonie BremenEnsemble Punto It + +4721124Elke FunkElke Funk-HoeverGerman classical cellist.Needs VoteMünchner Philharmoniker + +4721608Adriaan De KosterBelgian tenor vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Koster-Adriaan.htmAdriaan De CosterHuelgas-EnsembleCollegium VocaleDe Nederlandse BachverenigingPsallentesInaltoBeauty FarmLe Nuove MusicheBachPluscantoLXUtopia EnsembleCappella Mariana (2) + +4721609Bart UvynAlto / Countertenor vocalist, born 1985 in Gent, Belgium.Needs Votehttps://www.bartuvyn.beCollegium VocaleCurrendeGli Angeli GenèveInaltoBeauty FarmBachPlusSette VociUtopia EnsembleVictoria Consort + +4725031Harold StokesHarold Stokes was born in Nokomis, Illinois in 1905. Nokomis is about fifteen miles northeast of Hillsboro. When he was a child, his family moved to Saint Louis. He attended the University of Missouri. + +Harold had considerable musical talents which he directed toward jazz and popular music. He played a robust piano (with hints of Jelly Roll Morton) and occasionally accordion. He was an accomplished dance-band orchestrator. + +In 1928, Stokes became the musical director of the Chicago-based Jean Goldkette band (which the legendary Bix Beiderbecke had left not long before). The group appeared daily on WGN radio and regularly recorded for Victor. (One such session, which Stokes directed, included members of the "McKinney's Cotton Pickers" band. It was the first instance I know of where blacks and whites played together in a Chicago recording studio.) + +When NBC established a Chicago presence in 1929, Stokes became one of the networks staff conductors---leading groups of various sizes on various programs. He is said to have conducted the first coast-to-coast broadcast originating in Chicago. Stokes became known for his scorings of novelty numbers and his generally off-beat arrangements. The NBC-Chicago regulars he appeared with included Marian and Jim Jordan (in their pre-"Fibber McGee and Molly" days) and Don McNeill (in his pre-"Breakfast Club" days. On account of his looks he was called, behind his back, "Horse Face." + +When WGN moved into its opulent new quarters adjacent to the Tribune Tower in 1934, Stokes was hired to lead its newly-formed "WGN Dance Orchestra." He held this position until the summer of 1941 when he was fired. (His replacement was Bob Trendler whom many will remember as the band leader on WGN-TV's "Bozo's Circus" show.) His first marriage disintegrated shortly thereafter. + +Stokes retired to a chicken farm near Hillsboro that he had purchased during his palmier days at NBC. In the spring of 1944, the city fathers of Hillsboro asked him to put together an amateur variety show to raise funds for a proposed youth center. Stokes, with plenty of time on his hands, wrote an original score and assembled a cast of townsfolk. He also persuaded Jack Owen of the Blue Network's "Breakfast Club" and Lawrence Salerno (a WGN vocalist) to come to Hillsboro to appear in the show which was called "Hillsboro Hilarities." + +Mary Hartline appeared in this show as a dancer. Stokes took a liking to her. + +A year later, ABC hired Stokes as a radio producer. Almost simultaneously, Mary graduated from Hillsboro High. With Stokes encouragement, she decided to go to Chicago to become a model. Within a year, Stokes was assigned the new "Teen Town" show. He immediately made Mary a member of the cast. Stokes (age 42) and Mary (age 21) were married in June of 1947. + +When ABC began construction of its Chicago television facilities in 1948, Stokes was assigned to program development, both for the network and its local outlet, WENR-TV. + +"Super Circus" was one of Stoke's first ideas. Not surprisingly, Mary became a member of the cast to, in essence, bring her "Junior Junction" persona to the television screen. + +Mary divorced Stokes in 1951.Needs Votehttps://www.tapatalk.com/groups/bixography/viewtopic.php?p=45260#p45260https://www.richsamuels.com/nbcmm/hartline/contents.htmlH. StokesStokesJean Goldkette And His Orchestra + +4726190Anna BerylCellistNeeds VoteAnna Melita BerylAnna Melito BerylLondon Symphony Orchestra + +4726373Toby StreetClassical trumpeter.Needs VoteRoyal Philharmonic Orchestra + +4730761William R. HudginsClarinetist. Principal Clarinet for the [a=Boston Symphony Orchestra] +Married to fellow clarinetist [a7008327]. Needs Votehttps://necmusic.edu/faculty/william-r-hudginshttps://www.bso.org/profiles/william-r-hudginshttp://bostonsymphonychamberplayers.org/william-r-hudgins-clarinet/William HudginsBoston Symphony OrchestraBoston Symphony Chamber Players + +4730762John FerrilloPrincipal Oboist with the [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/john-ferrilloBoston Symphony Orchestra + +4730763Steven Ansell (2)Classical Violist. Principal violist, The [a=Boston Symphony Orchestra] since 1996.Needs Votehttps://www.bso.org/profiles/steven-ansellSteve AnsellBoston Symphony OrchestraThe Muir String Quartet + +4731307Mason Williams (5)Bass vocalistNeeds VotePro Cantione Antiqua + +4732981Edmund PuslClassical violinist.Needs VoteMünchner PhilharmonikerSymphonie-Orchester Des Bayerischen RundfunksPusl-Quartett + +4735183Douglas PetersBass vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +4735935Jason Evans (9)British classical trumpeter. Born on the Isle of Man, UK. +He graduated from the [l527847]. He was Principal Trumpet of the [a86163]. He worked with the [a=Royal Philharmonic Orchestra], the [a374006], the [a=BBC Symphony Orchestra], [a=Onyx Brass], and [a=Superbrass (2)]. Principal Trumpeter of the [a=Philharmonia Orchestra] since 2012. Founding member of the [b]Inner City Brass[/b] quintet. +Professor of Trumpet at the [l290263].Needs Votehttps://www.innercitybrass.co.uk/jasonhttps://www.rcm.ac.uk/brass/professors/details/?id=03918https://philharmonia.co.uk/bio/jason-evans/https://www.manxradio.com/news/isle-of-man-news/manx-musician-graduates-from-royal-academy/https://www.imdb.com/title/tt1688680/characters/nm4054178BBC Symphony OrchestraRoyal Philharmonic OrchestraHallé OrchestraPhilharmonia OrchestraNational Youth Orchestra Of Great BritainOnyx BrassSuperbrass (2) + +4735955Caroline FitzgeraldAlto vocalistNeeds Votehttps://twitter.com/caleyishere?lang=deMetro VoicesLondon Voices + +4735962Daniel BatesClassical oboistNeeds Votehttp://dsbates.com/Dan BatesCity Of London SinfoniaIrish Chamber OrchestraOrchestra Of The Age Of Enlightenment + +4735969Jo Marshall (2)Alto vocalistNeeds VoteMetro VoicesLondon Voices + +4735976Eleanor MeynellBritish singer and pianistNeeds Votehttp://www.eleanormeynell.co.uk/Metro VoicesThe Monteverdi Choir + +4738968Marie-Louise DuthoitFrench classical soprano vocalistNeeds VoteMarie-Louis DuthoitLe Concert SpirituelLes Arts FlorissantsCanticum Novum + +4739073Justine CailleJustine CailléFrench flautist.Needs VoteJustine CailléOrchestre Philharmonique De Radio France + +4739555Domenico PieriniClassical violinist and conductor, born in Livorno in 1967. + +In 1988 he was invited to join the [a=Orchestra Del Maggio Musicale Fiorentino] by [a=Zubin Mehta] who selected him as First Violinist the following year. He has played with the [a=Orchestra del Teatro Lirico di Cagliari], the [a=Orquestra Simfònica De Barcelona I Nacional De Catalunya], ​​the [a=Orquesta Sinfonica De Bilbao], the [a=Orchestra Del Teatro La Fenice], and the [a=Filarmonica Arturo Toscanini]. In 1999, [a=Giuseppe Sinopoli] invited him to join as First Violin of the [a=Orchestra Del Teatro Dell'Opera Di Roma] and of the [a=Orchestra dell'Accademia Nazionale di Santa Cecilia]. At the invitation of [a=Claudio Abbado], he collaborated from 2002 to 2007 with the [a=Lucerne Festival Orchestra]. + +In 2007 he conducted Cavalleria Rusticana at the Teatro della Pergola in Florence. Also in 2007, he founded [a=I Cameristi del Maggio Musicale Fiorentino], + +Also in 2010 he conducted [a=Orchestra Del Maggio Musicale Fiorentino]. As part of the 2010-2011 season, he conducted the [a=Orchestra Sinfonica Di Sanremo]. In March 2011 he was appointed General Musik Director of the Wiener Kammersymphonie, and in July 2011 he made his debut with the [a=Orchestra Del Teatro Comunale Di Bologna] as part of the Summer Season.CorrectOrchestra Del Teatro Dell'Opera Di RomaOrquestra Simfònica De Barcelona I Nacional De CatalunyaOrchestra dell'Accademia Nazionale di Santa CeciliaLucerne Festival OrchestraFilarmonica Arturo ToscaniniOrchestra Del Teatro La FeniceOrchestra Sinfonica Di SanremoOrchestra del Teatro Lirico di CagliariOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale FiorentinoOrquesta Sinfonica De Bilbao + +4739676Milana ReicheAmerican violinistNeeds VoteMinnesota Orchestra + +4740429Dennis GoodburnClassical bassoonistCorrectDennis GodburnOrchestra Of St. Luke's + +4740430Russell RinzerClassical hornistCorrectOrchestra Of St. Luke's + +4740432Daniel Olsen (4)Classical clarinetistCorrectOrchestra Of St. Luke's + +4740433Gary KochClassical hornistCorrectOrchestra Of St. Luke's + +4742079David DesimpelaereBelgican classical double bassistNeeds VoteKoninklijk Harmonieorkest VooruitLuzerner SinfonieorchesterOrchestra Della Radio Televisione Della Svizzera Italiana + +4743286Sara BrimerBritish soprano vocalistNeeds VoteSara Brimer-DaveySara DaveySara DaveyLondon Voices + +4743290Catherine BackhouseBritish sopranoNeeds Votehttp://catherinebackhouse.co.ukLondon Voices + +4743297Christian BarracloughBritish classical soloist, orchestral, chamber & session trumpet player, and tutor. Born in 1990 in London, England, UK. +In 2008, he was awarded a scholarship to study at the [l290263]. In his first year, he began working with various London orchestras and ensembles including the [a=Philharmonia Orchestra], [a=London Sinfonietta], and [a=London Brass]. He graduated in 2012. After his graduation, he has worked with major British orchestras and groups. Member of [a=The Symphonic Brass Of London] and the [b]Inner City Brass[/b]. A [a=London Sinfonietta] Emerging Artist. Tutor at the Yorkshire Young Sinfonia.Needs Votehttps://www.facebook.com/christian.barracloughhttps://www.linkedin.com/in/christian-barraclough-2188ab95/https://soundcloud.com/christian-barracloughhttps://open.spotify.com/artist/2UDgaSKXVl1Wxxqae2OvhLhttps://music.apple.com/us/artist/christian-barraclough/1297054461https://londonsinfonietta.org.uk/players/christian-barracloughhttps://thesymphonicbrassoflondon.com/about/players#christian-barracloughhttps://www.facebook.com/yysinfonia/photos/tutor-profile-christian-barracloughchristian-currently-works-as-a-soloist-orches/786517078194432/https://www.imdb.com/name/nm10526921/https://vgmdb.net/artist/23017London Symphony OrchestraThe London Studio OrchestraLondon SinfoniettaSepturaThe Symphonic Brass Of London + +4743299Shlomy DobrinskyШломи ДобринскийRussian classical violinist. Born in 1981 in Moscow. +He graduated with a Bachelor's of Music degree from the [l290263]. He then achieved a Masters at [l305416]. He debuted in London with the [a=Philharmonia Orchestra] in 2002. He left the orchestra in 2013 and now mainly works with the [a=London Symphony Orchestra]. Associate Leader of [a=Oxford Philharmonic Orchestra]. Member of the [b]Trio Morfeo[/b].Needs Votehttp://shlomydobrinsky.comhttps://twitter.com/dobrinskyshlomy?lang=enhttps://www.youtube.com/channel/UCNMF2xwbCBma3eWkYLBj9rghttps://music.apple.com/us/artist/shlomy-dobrinsky/566330153https://www.feenotes.com/database/artists/dobrinsky-shlomy-1981-present/https://www.oxfordphil.com/violins/shlomy-dobrinskyhttps://maslink.co.uk/client-directory?client=DOBRS1&category=10https://www.musicteachers.co.uk/teacher/78b72e8156096297195ahttps://www.musicalorbit.com/product-page/shlomy-dobrinskyhttps://www.imdb.com/name/nm12085617/Shlomo DobrinskyLondon Symphony OrchestraPhilharmonia OrchestraOxford Philharmonic Orchestra + +4743750Even EvensenClassical tubist. +Needs VoteGöteborgs SymfonikerGöteborgsOperans Orkester + +4743751Terje VikenNorwegian percussionist, born 1968 in Gjøvik, Norway.Needs VoteOslo Filharmoniske OrkesterBergen Filharmoniske Orkester + +4744166Les Chœurs René DuclosNeeds Major Changes,Chœurs René DuclosArtists, Chœurs René DuclosCheours René DulcosChoeur René DuclosChoeurs Rene DuclosChoeurs René DuclosChoreus René DuclosChœur René DuclasChœur René DuclosChœurs De FemmeChœurs Rene DuclosChœurs René DuclosCoeurs René DuclosCoro René DuclosCoros Rene DuclosCoros René DuclosKoor René DuclosRene Duclos ChoirRene Duclos ChorusRene Duclos With ChorusRené DuclosRené Duclos ChloursRené Duclos ChoirRené Duclos ChorusThe René Duclos ChorusZbor René Duclosルネ・デュクロ合唱団René Duclos + +4745010Lambert XavierClassical violinistNeeds VoteLes Talens Lyriques + +4745011Joëlle AzoulayClassical violinistNeeds VoteJoelle AzoulayLes Talens Lyriques + +4745407Mats Lindberg (6)Swedish classical cellist.Needs Votehttp://www.wulfsonquartet.com/Mats.htmlGöteborgs SymfonikerWulfson Quartet + +4747632Willi RüttenClassical hornistNeeds VoteWilli RuttenSüdwestdeutsches Kammerorchester + +4748052Martz AurélieAurélie MartzFrench classical violinistNeeds VoteLe Concert D'AstréeOrchestre national de Metz + +4748714Boris KoutzenBoris Koutzen (1 April 1901 – 10 December 1966) was a Russian-American violinist, composer and music educator. +He was the father of [a453856] and [a2982726].Needs VoteKoutzenKouzenБ. КутценThe Philadelphia OrchestraNBC Symphony Orchestra + +4749797Drifford XavierClassical violinistNeeds VoteXavier DriffordLes Talens Lyriques + +4751142Catherine NapoliCatherine Napoli initially studied the piano then singing with the conservatoire as well as musicology in the Sorbonne, and in 1983, she earned a master in this discipline. In 1987 she received a gold medal in lyric art in the class of Suzanne Sarroca and a unanimously first prize in singing in the class of Mady Mesplé. She has also had baroque training at Studio Versailles Opera.Needs VoteNapoliChoeur de Chambre de Namur + +4752161J. Baum (2)German violinist.Needs VoteJ. BaumGürzenich-Orchester Kölner Philharmoniker + +4753973William Bennett (4)Principal Oboist of the San Francisco Symphony and occupant of the Edo de Waart Chair from 1987 until 2013. + +born May 31, 1956, in New Haven, Conn. +died February 28, 2013, after having collapsed five days earlier onstage at Davies Symphony Hall in San Francisco while performing Richard Strauss' Oboe Concerto. + +After studying oboe with Robert Bloom at Yale University and the Juilliard School of Music, William Bennett joined the San Francisco Symphony in 1979 as Assistant Principal to Marc Lifschey, becoming Principal in 1987. Highlights of Mr. Bennett's quarter century plus in the orchestra include more than fifty recordings under three music directors, critically acclaimed performances of the major solo repertoire, and the commission and recording of an Oboe Concerto by John Harbison. +Needs Votehttp://www.sfsymphony.org/bennetttributehttp://www.sfgate.com/music/article/Bennett-S-F-Symphony-oboist-dies-at-56-4317151.phphttps://www.sfcv.org/article/in-memoriam-william-bennett-1956-2013Bill BennettWilliam R. BennettSan Francisco Symphony + +4754077Noam KriegerNoam Krieger studied orchestral conducting, musicology and harpsichord in Tel Aviv.CorrectLes Arts Florissants + +4758288Jessica BreitlowJessica Kimie Wylie BreitlowSwedish classical harpist, born September 22, 1974.Needs VoteGöteborgs SymfonikerGöteborgsOperans OrkesterGageego! + +4760241Christoph VietzChristoph Vietz is a German cellist.Needs VoteGewandhausorchester LeipzigReinhold-Quartett + +4760920Radion ViihdeorkesteriRadion Viihdeorkesteri = Finnish Radio Light Orchestra Needs Votehttps://fi.m.wikipedia.org/wiki/Radion_viihdeorkesterihttp://pomus.net/001828Finnish Radio Light OrchestraRVOSRVOViihdeorkesteri + +4761225Emma WalsheEnglish soprano vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Walshe-Emma.htmhttps://emmawalshe.co.ukMagnificatThe Tallis ScholarsThe Monteverdi ChoirTenebrae (10) + +4762894Christa Richter-SteinerChrista Richter-Steiner (2 December 1899 - 11 December 1962) was an Austrian classical violinist.Needs VoteCamerata Academica SalzburgDas Mozarteum Orchester SalzburgMozarteum Quartett + +4763175James LassenBassoonist.Needs VoteJ. LassenJames E. LassenJames Lassen Jr.Bit 20 EnsembleBergen Filharmoniske OrkesterCooly HornBarbro Husdal Quartet + +4763176Håkon KartveitNorwegian classical percussionist.Needs VoteBergen Filharmoniske Orkester + +4763179Christian SteneClassical clarinettist, born in Bergen, Norway.Needs VoteChristian SteeneBergen Filharmoniske OrkesterOdense SymfoniorkesterDen Norske Operas Orkester + +4765366Desiree WoudenbergClassical dutch flautistNeeds VoteRotterdams Philharmonisch OrkestCollegium Musicum Judaicum + +4765831Isabel JantschekGerman classical soprano vocalist from CottbusNeeds Votehttps://www.facebook.com/isabel.jantschekJantschekDresdner KammerchorRIAS-KammerchorOpella MusicaAbendmusiken Basel + +4767003Richard SpeetjensDutch horn playerNeeds VoteRotterdams Philharmonisch OrkestNederlands Fanfare OrkestFlexible Brass + +4767006Ward AssmannDutch horn playerNeeds VoteWard AssmanNieuw Sinfonietta AmsterdamHolland SymfoniaNederlands Fanfare Orkest + +4767013Douwe ZuidemaDutch classical percussionist.Needs VoteConcertgebouw Chamber OrchestraNederlands Fanfare Orkest + +4768076Stephan HaackStephan Haack is a German cellist. He was a member of the [a261451] from 1988 to 2021.Needs VoteMünchner PhilharmonikerJoachim-Quartett Hannover + +4768640Charlotte JuillardClassical violinistNeeds VoteOrchestre Philharmonique De StrasbourgQuatuor ZaïdeTrio KarénineTrio Miroir + +4768641Harriet KrijghDutch cello player.Needs Votehttp://www.harrietkrijgh.com/https://en.wikipedia.org/wiki/Harriet_KrijghH. KrijghArtemis QuartettSkride Piano Quartet + +4768646Benjamin ApplBenjamin Appl (born June 26, 1982 in Regensburg) is a German opera, concert baritone vocalist.Needs Votehttps://www.benjaminappl.de/ApplRegensburger DomspatzenSwiss Chamber Soloists + +4769895Robert Hope-SimpsonClassical violinist.Needs VoteRobert Hope SimpsonThe Academy Of Ancient Music + +4770290Gabor VadàszGábor VadàszGábor Vadàsz (born 1946 in Budapest, Hungary) is a Austrian violinist.Needs VoteDas Mozarteum Orchester SalzburgSalzburger Streich-Quartett + +4770292Dieter AmmererDieter Ammerer (born 1942) is an Austrian cellist.Needs VoteCamerata Academica SalzburgDas Mozarteum Orchester SalzburgSalzburger Streich-Quartett + +4773054Takako MasameClassical violinistNeeds VoteThe Cleveland Orchestra + +4773631Robert Sullivan (5)American classical trumpeter from Massachussetts. He was member of the New York Philharmonic trumpet section from 1993 to 2003.Needs VoteBob SullivanRobert SullivanNew York Philharmonic + +4773659Yun-Ting LeeTaiwanese-born classical violinist.Needs VoteThe Cleveland Orchestra + +4773677Steven Rosen (3)Classical violinist.Needs VoteCincinnati Symphony OrchestraCincinnati Pops OrchestraRotterdams Philharmonisch OrkestToledo Symphony Orchestra + +4774244Chiyuki OkamuraJapanese soprano vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Okamura-Chiyuki.htmhttp://www.chiyukiokamura.comOkamuraCollegium VocaleGli Angeli Genève + +4774944Triin RuubelTriin Ruubel-LillebergEstonian classical violinist, born October 12, 1988 in Tallinn.Needs Votehttps://www.triinruubel.com/Estonian National Symphony OrchestraEstonian Festival OrchestraEnsemble For New Music Tallinn + +4775366Cyprile MeierSoprano vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Meier-Cyprile.htmChoeur de Chambre de NamurMaîtrise De Notre-Dame De ParisEnsemble Jacques ModerneChoeur Arsys Bourgogne + +4775368Nadia LavoyerFrench soprano vocalist, born in Agen.Needs VoteLe Concert SpirituelLa Main Harmonique + +4775369Romain BocklerFrench classical bass & baritone vocalist.Needs Votehttps://romainbockler.com/Le Concert SpirituelLe Poème HarmoniqueEnsemble La FeniceLa Grande ChapelleEnsemble PerspectivesDulces Exuviae + +4775370Yann RollandClassical alto / countertenor vocalistNeeds VoteLe Concert SpirituelLes Arts FlorissantsChoeur de Chambre de NamurLe Parnasse FrançaisPygmalion + +4775372Frédéric BétousFrench Countertenor & Alto vocalist and musical director of the ensemble [a=La Main Harmonique]Needs VoteFrédéric BetousLe Concert SpirituelDiabolus In MusicaLa Main Harmonique + +4775384Boris BlinderCellist. Brother of violinist and SFO concertmaster [a4929345].Needs VoteSan Francisco Symphony + +4777580Libero LanzilottaClassical double bassist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaEnsemble Mare Nostrum + +4777760Edouard MacarezDouble bassist.Needs Votehttp://www.facebook.com/profile.php?id=100007159127043Orchestre Philharmonique De Radio France + +4778978José Vicente CastelloJosé-Vicente CastellóSpanish hornist and music teacher, born in Alicante, Spain.Needs Votehttps://www.naxos.com/person/Jose_Vicente_Castello/259929.htmCastellóJose Vincente CastelloJosé Vicente Castelló VicedoJosé-Vicente CastellóMahler Chamber OrchestraOrchestra Mozart + +4780150Coline DutilleulBelgian alto / mezzo-soprano vocalist Needs Votehttps://www.facebook.com/coline.dutilleulRIAS-KammerchorLa Capella Reial De CatalunyaPygmalion + +4780151Gabriel JublinFrench countertenor & alto vocalist born 1983Needs Votehttp://www.gabrieljublin.com/wp-content/uploads/2017/12/Gabriel-Jublin-Bio-2017-EN.pdfLe Concert SpirituelLa Capella Reial De CatalunyaChoeur de Chambre de NamurLe Parnasse FrançaisVoces SuavesLa PedrinaHarmonia Sacra (2) + +4780156Lucía Martín CartónSpanish soprano vocalist born in ValladolidNeeds Votehttps://www.luciamartincarton.comL. Martín-CartónLucía Martín-CartónMartín CartónMartín-CartónLa Capella Reial De CatalunyaChoeur de Chambre de Namur + +4780174Julián MillánSpanish classical bass vocalistNeeds VoteCollegium VocaleLa Capella Reial De CatalunyaBeauty FarmNumen Ensemble + +4780180Laia FrigoléSpanish soprano vocalist born in Girona.Needs Votehttp://laiafrigole.comJoseph De TorresLa Capella Reial De CatalunyaChoeur de Chambre de NamurLa Xantria + +4780640Anne MaugardClassical alto vocalistNeeds VoteChoeur de Chambre de NamurLes Demoiselles De Saint-CyrQuatuor Balkanes + +4780641Audrey KessedjianFrench singer in opera, pop, jazz, ethnic, electronic and movie music. Writer, composer and pianist.Needs Votehttps://www.facebook.com/audreykessedjianoff/Les Demoiselles De Saint-Cyr + +4780643Mélanie EmilienNeeds VoteLes Demoiselles De Saint-Cyr + +4780693Johan van IerselClassical cellist, born in Goes in 1972Needs VoteConcertgebouworkestEbony BandEnsemble Caméléon + +4783056Alan Jenkins (6)British doyen of brass band critics, conductor, writer, arranger, composer, tuba player and general man of letters. +He started his professional career as Principal Tuba with the [a374006], a position he held with the [a=London Symphony Orchestra] where he was also a member of the orchestra's Board of Directors (1963-1967). He studied choral music at the [l377274]. Upon his return to England, in 1982, he became a lecturer and head of vocal studies at Huddersfield Technical College from which position he retired in the summer of 1994 in order to concentrate on his work as a journalist with Brass Band World.Needs Votehttps://www.chandos.net/chanimages/Booklets/DO065.pdfLondon Symphony OrchestraHallé Orchestra + +4785213Hartmut FesterlingClassical oboist & bombarde instrumentalistNeeds VoteBamberger SymphonikerMusica Canterey Bamberg + +4785897James Smith (46)Classical trumpeter (died in 2000) who was a member of the New York Philharmonic Orchestra from 1942 to 1977.Needs Votehttps://www.nytimes.com/2000/04/26/classified/paid-notice-deaths-smith-james.htmlNew York Philharmonic + +4786147Steven Carter (4)Alto vocalist.Needs VoteGabrieli Consort + +4786875Karolina RadziejClassical violinistNeeds Votehttp://theatreofvoices.com/about-tov/karolina-radziej-violin/Theatre Of VoicesKringkastingsorkestret + +4787023Richard WilberforceBritish countertenor vocalist, born in London in 1984.Needs VoteThe Monteverdi ChoirChoir Of London (2) + +4787025Lester LardenoyeAlto vocalist.Needs VoteSt. John's College ChoirThe Choir Of Clare College + +4787110Kurt LamprechtSwiss violinist from the Zürich region.Needs VoteI Virtuosi ElveticiTonhalle-Orchester ZürichOrchester Maur + +4788238Jan PasJan Pas (born 1962) is a Belgian cellistNeeds VoteStaatsorchester StuttgartOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspieleOrchestre Du Théâtre Royal De La MonnaieLinos Harp QuintetEnsemble Nuanz + +4788597Mathias Amadeus FreundGerman violinist (1947 - 2009). He was the son of [a3679569].Needs VoteMathias FreundMatthias FreundMünchner PhilharmonikerChur Cölnisches Orchester Bonn + +4789877Richard Waters (5)Classical violist. +He studied at [l305416] and as postgraduate at the [l527847]. He has appeared as Principal Viola with the [a=London Sinfonietta], [a=Orchestra Of Opera North], [b]St. Endellion Festival Orchestra[/b], [a=Philharmonia Orchestra], the [a=Royal Philharmonic Orchestra] and [a=Royal Liverpool Philharmonic Orchestra]. He was appointed Co-Principal Viola of the [a=London Philharmonic Orchestra] in 2019. Founding member of the [b]Bernadel Quartet[/b].Needs Votehttps://www.facebook.com/richard.waters.587https://twitter.com/richwaters17?lang=enhttps://www.lpo.org.uk/viola/richard-waters.htmlhttp://www.violin-viola-maker.com/portfolio/richard-water/https://www.helpmusicians.org.uk/creative-programme/supported-artists/richard-watershttps://www.musicteachers.co.uk/teacher/dffcd7b80cb8e0ea5169/biographyLondon Philharmonic OrchestraRoyal Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraRoyal Liverpool Philharmonic OrchestraYoung Musicians Symphony OrchestraOrchestra Of Opera North + +4789943Geoffrey ClaphamBass vocalistNeeds VoteGeoff ClaphamSt. John's College ChoirTenebrae (10) + +4792314Leon TemersonViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +4792498Hap LawsonJazz Saxophonist.Needs VoteWingy Manone & His Orchestra + +4793245Akiko HiratakaJapanese-born classical violist.Needs VoteStuttgarter Philharmoniker + +4793519Earl SchusterEarl Vincent SchusterEarl Vincent Schuster was an American oboist and teacher. He passed away on November 5, 2003 at the age of 85.Needs VoteE. SchusterU.S. Marine BandRochester Philharmonic OrchestraSan Diego SymphonyRadio City Music Hall OrchestraIndianapolis Symphony Orchestra + +4793797Wally HaseWally Hase is a German classical flautistNeeds Votehttp://www.wallyhase.deStaatskapelle WeimarCamerata Academica SalzburgBachcollegium StuttgartEnsemble 13Orchester Der Ludwigsburger SchlossfestspieleThüringisches Kammerorchester Weimar + +4795376Clifford ListerTenor vocalistNeeds VoteWestminster Cathedral Choir + +4796346Ann Graham (4)An obscure dance band vocalist active in the 30s. She most likely only recorded one tune with Benny Goodman - "It Happens To The Best Of Friends"...Needs Votehttp://www.allmusic.com/artist/anne-graham-mn0002289153/biographyBenny Goodman And His Orchestra + +4797474Alexander GlücksmannGerman clarinetist.Needs VoteBerliner SymphonikerLandesjugendsinfonieorchester BrandenburgEnsemble 4.1 + +4798191Jennifer HelshamClassical violin player.Needs VoteThe Academy Of Ancient Music + +4798974Horst Karl HesselHorst Karl Hessel (born March 23, 1916 in Schrebitz as Karl Horst Hessel; † September 18, 2006 in Leipzig) was a German composer, organist and choir director.Needs Votehttps://de.wikipedia.org/wiki/Horst_Karl_Hesselhttps://www.rundfunkschaetze.de/mdr-klassik/mdr-rundfunkchor/17-zu-hause-in-leipzig/17-02-thomanerchor/H. K. HesselH. K. HessenHorst-Karl HesselRundfunkchor LeipzigThomanerchor + +4799750Jenny SjöströmJenny Caroline SjöströmSwedish violinist from Ytterby (Kungälv), born 30 July 1982.Needs Votehttp://jennysjostrom.se/om-2.htmlhttps://www.gso.se/upptack/podiet/mitt-instrument-violin-jenny-jonsson/Göteborgs SymfonikerSjöströmska String Quartet + +4801165Saskia OgilvieSaskia Ogilvie (b. 1966) is a cellist. She studied with [a=Klaus Storck] at Alanus Hochschule, [a=Martin Ostertag] in Karlsruhe, as well as [a=Ivan Monighetti] and [a=Reinhard Latzko] in Basel, graduating in 1985. + +Her career started with [url=https://www.discogs.com/artist/3117399]Anton Webern Ensemble[/url] in Vienna, where Saskia played under the baton of [a=Claudio Abbado]. Ogilvie served as a soloist of [url=https://www.discogs.com/artist/2228583]Gustav Mahler Youth Orchestra[/url] from 1992 to 1994, performing with [a=Michael Gielen], [a=Sir Neville Marriner], [a=Riccardo Chailly] and other conductors. Since 1997, she has been playing with [a=Ensemble Resonanz].Needs Votehttp://www.ensembleresonanz.com/en/ensemble/musicians/saskia-ogilvie.htmlEnsemble ResonanzGustav Mahler JugendorchesterOrquesta de Cámara Anton Webern + +4803857Vag PapianClassical pianistNeeds Vote + +4804487John Snow (4)American oboist +Needs Votehttp://www.minnesotaorchestra.org/about/who-we-are/musicians-soloists-conductors/orchestra-musicians/328-oboe/717-john-snowMinnesota Orchestra + +4805099Ralph AllenViolin playerNeeds Voteרלף אלןNieuw Sinfonietta AmsterdamThe North/South Chamber Orchestraעשיריית כלי מיתר + +4805408Nicola LolliItalian violinistNeeds VoteStaatsorchester StuttgartIceland Symphony OrchestraOrchestra dell'Accademia Nazionale di Santa CeciliaEnsemble Punto It + +4807369Kirsten Johnson (2)Classical violist.Needs VoteThe Philadelphia Orchestra + +4807830Cathy BasrakViolist. Assistant Principal, The Boston Symphony OrchestraNeeds Votehttps://www.bso.org/strings/cathy-basrak-viola.aspxhttps://necmusic.edu/faculty/cathy-basrakbso.orgKathy BasrakBoston Symphony Orchestra + +4807865Karen BasrakKaren Basrak is an American cellist. She's the younger sister of [a4807830].Needs VoteChicago Symphony OrchestraFort Worth Symphony Orchestra + +4810713Angelo CalvoItalian classical violinist from Milano.Needs VoteIl Giardino ArmonicoAccademia Dell'AnnunciataArsenale SonoroEstrovagante Ensemble + +4811300Adam Han-GorskiAdam Han-Gorski (born 23 March 1940) is a classical violinist and conductor.Needs Votehttps://www.hangorski.com/The Cleveland OrchestraORF SymphonieorchesterMinnesota OrchestraRSO WienTrio Koreny + +4812074Raymond RookDutch trumpet playerNeeds VoteConcertgebouw Chamber OrchestraRadio Filharmonisch OrkestSymphonic BrassRadio Kamer FilharmoniePhilharmonic Orchestra Of Europe + +4813127Tom Moore (14)American classical bass vocalistCorrectPomerium + +4813131Peter BannonClassica tenor vocalistNeeds VotePomeriumCappella Nova (2) + +4814434Stephanie MöllerClassical soprano vocalist.Needs VoteRIAS-Kammerchor + +4817517Adrien-Joseph Le Valois D'OrvilleFrench librettist from the 18th Century (1715-1780).Needs VoteLe Valois D'Orville + +4817518Antoine Gautier de MontdorgeNeeds Major ChangesGautier de Montdorge + +4817523Wladimir HaagClassical harpist.Needs VoteWl. HaagSymphonie-Orchester Des Bayerischen Rundfunks + +4818415Friedrich Kleinknecht (2)German cellist, born 22 April, 1944 in Ravensburg, Germany and died 11 December 2017 in Munich, Germany. +Studied with Prof. [a1697098] at the Conservatory (Hochschule für Musik) Stuttgart, graduating in 1972. Solo cellist in Freiburg, Nürnberg, and Aachen from 1972 to 1976, and concertmaster for the cellists of the [a451535] from 1976.Needs VoteKleinknechtBayerisches StaatsorchesterLeopolder Quartett + +4821643Konrad MonsbergerAustrian trumpeter.Needs VoteBühnenorchester Der Wiener Staatsoper + +4821646William McElheneyWilliam McElheney (20 May 1954) is an American trombonist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle WienStaatsorchester Kassel + +4823623Lukas HeringSwiss professional trumpet player from Zürich region, active also as musical school director in Winterthur and as trumpet teacher.Needs Votehttps://www.schule-zumikon.ch/personalms/33039Orchester der Oper ZürichBanda ClassicaTonhalle-Orchester ZürichRadio-Sinfonieorchester BaselOrchester Maur + +4824707Nat ComrassNathaniel ComrassBritish violinist.Needs VotePhilharmonia Orchestra + +4824797Broadway-OrkesteriNeeds Major ChangesBroadway Studio-orkesteri + +4825059Daniel Ivo De OliveiraNeeds Major Changes + +4825825Marie-Annick Caron Marie-Annick Caron is a Canadian violist. Now based in Dresden, Germany.Needs VoteStaatskapelle DresdenLes Violons du Roy + +4825827Karine RousseauClassical violistNeeds VoteLes Violons du RoyL'orchestre De Chambre De Montréal + +4828869Bill Johnson (34)US jazz/blues trumpeter, fl. 1940s.Needs VoteWilliam JohnsonSam Price And His Texas Blusicians + +4828870Duke Jones (2)Bass playerNeeds Vote"Duke" JonesDoug JonesJonesLynwood "Duke" JonesSam Price And His Texas BlusiciansErskine Butterfield Quartet + +4830871Pat Flaherty (5)née Patricia R. FlahertyAmerican vocalist from the big band era, from Milwaukee, Wisconsin + +Flaherty's professional career started a week before her 18th birthday, when she replaced [a=Doris Day] at the Hollywood Palladium as a vocalist with the [a269852]. She also sang with [a=Harry James], appeared in television and movies, and made recordings with Les Brown, Harry James, [a=Herbie Fields] and [a=Billy Butterfield]. She married Richard C. Roberts in 1950, and retired from show business with the exception of some live guest appearances.Needs VoteFlahertyHarry James And His OrchestraLes Brown And His Orchestra + +4833564Andrea ArenasNeeds Major Changes + +4833565Alejandro LavadoNeeds Major Changes + +4833566Martin HennPiano tunerNeeds Vote + +4834110Peter BirtsClassical tenor vocalistNeeds VoteSt. John's College Choir + +4835008Stuart James (9)Violinist and teacher. +In 1990, he joined the [a454293] for a period of 17 years. 2nd Violin with the [a=Orchestra Of The Royal Opera House, Covent Garden]. Leader of the [b]Bridgewater Sinfonia[/b]. Violin teacher at Berkhamsted Collegiate School where he was once a pupil himself.Needs Votehttps://www.linkedin.com/in/stuart-james-9256b593/https://www.bridgewater-sinfonia.org.uk/about/soloists/stuart-james/Philharmonia OrchestraOrchestra Of The Royal Opera House, Covent Garden + +4835009Justin Jones (8)British violinist. Born December 1952 - Died November 2012. +He attended the [l527847]. He played with the [a=London Mozart Players] and the [a=BBC Symphony Orchestra] before joining the [a454293] in 1979. He became the orchestra's Archivist in 2011.Needs Votehttps://www.linkedin.com/in/justin-jones-6a099b27/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/jones-justin-december-1952-november-2012/https://iml.esm.rochester.edu/polyphonic-archive/article/in-memoriam-2012/https://www.imdb.com/title/tt0361740/characters/nm1353783BBC Symphony OrchestraPhilharmonia OrchestraLondon Mozart Players + +4835018Olwen CastleClassical violinist from New Zealand, who has performed with the [a454293].Needs Votehttps://natlib.govt.nz/records/22449332Philharmonia Orchestra + +4835019Gillian CostelloViolinist who has performed with the [a454293].Needs VotePhilharmonia Orchestra + +4835020Andrew CourtClassical violinist who has performed with the [a454293] as a member of its 2nd violin section.Needs VotePhilharmonia Orchestra + +4835021Simon HorsmanClassical violinist. +He performed with the [a454293] before moving to the [a855061].Needs VotePhilharmonia OrchestraOrchestra Of The Royal Opera House, Covent Garden + +4835025Susan SalterViolist and pianist. Died in 2006. +She performed with the [a454293]. +She married the violinist and conductor [a=John Georgiadis] in 1961; divorced.Needs VoteSusan GeorgiadisHallé OrchestraPhilharmonia OrchestraThe Georgiadis Ensemble + +4835026Kathleen RuseViolist who has performed with the [a454293].Needs VotePhilharmonia Orchestra + +4835027Mary WhittleMary Whittle JonesViolist who has performed with the [a454293].Needs VotePhilharmonia Orchestra + +4835053Dominic WorsleyBritish Double bass player from Manchester, England. +He trained at The [l=Royal Northern College Of Music] and played the bass in both The National Children’s Orchestra and The [a=National Youth Orchestra Of Great Britain]. Member of the [a=Philharmonia Orchestra] (10/1998-08/2009). Principal Double Bass player with the [a=BBC Concert Orchestra] since November 2009.Needs Votehttps://www.linkedin.com/in/dominic-worsley-35926966/?originalSubdomain=ukhttps://www.cosc.co.uk/Orch.htmlhttps://www.imdb.com/name/nm9000440/Dom WorsleyPhilharmonia OrchestraNational Youth Orchestra Of Great BritainBBC Concert Orchestra + +4835054Anne BarberBritish classical cellist.Needs VoteAnn BarberPhilharmonia Orchestra + +4835055June ScottBritish flute player and professor, born in Perth, Scotland, UK. +She studied at the [l742849]. In 1978 she was a soloist with the [b]Perth Youth Orchestra[/b] and around 1984 she was invited to join the [a=Scottish Chamber Orchestra], where she remained for three years before moving to the the [a=Philharmonia Orchestra] in 1987 as Second Flute. Professor of Flute at the [l527847].Needs Votehttps://www.linkedin.com/in/june-scott-61098938/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/scott-june/https://philharmonia.co.uk/bio/june-scott/Philharmonia OrchestraScottish Chamber Orchestra + +4835056Natasha HughesClassical double bass player. +She studied at the [l925143]. She has played in the [a=Philharmonia Orchestra], the [a1036751] in Norway, and the [a=Hallé Orchestra].Needs Votehttps://intranet.kes.hants.sch.uk/music/departmental-information/where-are-they-nowHallé OrchestraPhilharmonia OrchestraBergen Filharmoniske OrkesterYoung Musicians Symphony Orchestra + +4835063Christian Jones (8)British classical trombone/bass trombone/contrabass trombone player, and trombone tutor. +He entered the [l527847] in 1998. In 2001, he was appointed bass trombone in the [a=BBC National Orchestra Of Wales]. He graduated in July 2002, a month before joining the [a=Philharmonia Orchestra]. After a decade of performing worldwide and a year as deputy chairman, he relocated to Yorkshire with wife [a=Katy Jones (2)]. Member of the [a=Opera North]. Trombone tutor at the [l459222].Needs Votehttps://www.facebook.com/christianjones.btshttps://www.youtube.com/c/ChristianJonesBasstrombone/featuredhttps://www.feenotes.com/database/artists/jones-christian/https://www.brass-academy.co.uk/tutors/christian-jones/https://centerstage.conn-selmer.com/artists/christian-joneshttps://www.playwithapro.com/live/Christian-Jones/https://www.rncm.ac.uk/people/christian-jones/https://vgmdb.net/artist/22868Chris JonesLondon Symphony OrchestraPhilharmonia OrchestraBBC National Orchestra Of WalesOpera North + +4835068Mark CalderBritish classical trumpeter. Born in 1961 in Inverness, Scotland, UK. +He studied at the [l742849]. He has held both Principal and Co-principal positions within several orchestras and ensembles including the [a=Royal Ballet Sinfonia], the [a=European Union Youth Orchestra], [a=The New London Orchestra], the [b]World Orchestra for Peace[/b], and the [a=Bournemouth Sinfonietta]. Later on, he held the position of 2nd Principal Trumpet with the [a=Philharmonia Orchestra]. 2nd Principal Trumpet with the [a=BBC Scottish Symphony Orchestra]. Professor of Trumpet at the [l290263].Needs Votehttps://www.feenotes.com/database/artists/calder-mark-1961-present/https://www.rcm.ac.uk/Brass/professors/details/?id=03105Bournemouth SinfoniettaPhilharmonia OrchestraBBC Scottish Symphony OrchestraEuropean Union Youth OrchestraRoyal Ballet SinfoniaThe New London Orchestra + +4835185Stefan JoppienGerman classical violinistNeeds VoteOrchester Der Deutschen Oper Berlin + +4835193Alexander MeyGerman violistNeeds VoteOrchester Der Deutschen Oper Berlin + +4835824Joe Brown (34)1930s blues and jazz trumpeterNeeds VoteBrownJoe Brown And His BandSam Price And His Texas Blusicians + +4836171Philipp MattheisClassical violinistNeeds VoteOrchester Der Wiener Staatsoper + +4840548Jean-Yves SebillotteFrench classical pianist.CorrectJean Yves SebillotteJean-Yves SébillotteOrchestre National De L'Opéra De Paris + +4841333Catherine Smith (5)Classical oboist.Needs VoteEnglish Chamber Orchestra + +4842092Ilkka LaaksoFinnish hornist.Needs VoteRadion SinfoniaorkesteriNummelan torvisoittokunta + +4842364Susanna FairbairnEnglish sopranoNeeds Votehttps://susannafairbairn.comCollegium VocaleThe Monteverdi ChoirTenebrae (10) + +4842739Jug TaylorNeeds VoteStan Getz Quartet + +4843728John Pennington (4)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1921-1924) and [a=London String Quartet] (first violin 1927-1934).CorrectPenningtonLondon Symphony OrchestraLondon String Quartet + +4844223Richard KrotschakRichard Krotschak (30 December 1904 - 9 March 1989) was an Austrian classical cellist.Needs VoteKrotschakOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerBarylli String EnsembleBarylli QuartetDas Schneiderhan-Quartett + +4845592George Wilson (16)Jazz trombonist.Needs VoteG. WilsonRoy Eldridge And His Orchestra + +4847612Karl Lange(East) German conductor, active in the second half of the 20th centuryNeeds VoteRundfunk-Sinfonieorchester BerlinStaatskapelle Berlin + +4850112Diana MorrisViolin playerNeeds VoteNieuw Sinfonietta AmsterdamRadio Kamer Filharmonie + +4850558Jodie EdwardsVaudeville singer (born July 19, 1893, died October 28, 1967), part of husband and wife team [a=Butterbeans & Susie], with which he recorded between 1924 and 1960.Needs VoteButterbeansEdwardsJ. EdwardsJadie EdwardsJodie "Butterbeans" EdwardsJoe EdwardsButterbeansButterbeans & SusieButterbeans And Grasshopper + +4851209Timo HandschuhTimo HandschuhGerman conductor and musical director, born 1975 in Lahr, Germany. +Conductor and artistic director of the [a1046945] Pforzheim since 2013.Needs Votehttp://www.swdko-pforzheim.de/leitung.htmlhttps://de.wikipedia.org/wiki/Timo_HandschuhHandschuhSüdwestdeutsches Kammerorchester + +4852450Christine SchönknechtChristine Schönknecht is a German soprano. +Needs VoteMDR Rundfunkchor + +4852451Cambridge University Musical Society ChorusNeeds Major ChangesCambridge Univ Musical Society ChorusCambridge University Musical Society + +4853213Michael Forbes (4)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853215Michael SpeightClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853216Peter Weir (3)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853217Angus McCareyClassical treble vocalistNeeds VoteAngas McCareyThe Choir Of Christ Church CathedralThe Choir Of Trinity College, Cambridge + +4853218Ranjeet GuptaraClassical treble vocalistNeeds VoteRanji GuptaraThe Choir Of Christ Church Cathedral + +4853287Richard Perry (6)Classical alto vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853710Christopher O'Donnell (2)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853711Nicholas Barker (2)Classical alto vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853755William BowesClassical treble vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +4853756David MohammedClassical treble vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +4853757Richard Ford (14)Classical treble vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +4853758Thomas GentryClassical treble vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +4853760Duncan HughesClassical treble vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +4853761Timothy FergusonClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853925Elias KalivasClassical tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853946Thomas CuttsClassical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853947Jonathan HargreavesClassical bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4853955Nicholas Smith (3)classical tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4854003Daniel Collins (5)Classical treble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +4855471Johannes StiehmGerman horn player.Needs VoteJoh. StiehmRundfunk-Sinfonie-Orchester LeipzigHornquartett Des Rundfunk-Sinfonie-Orchester Leipzig + +4856093Paul Gillham (2)Bass vocalistNeeds VoteWestminster Cathedral Choir + +4856094Dominic Walker (2)classical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856095William Dollardclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856096Timothy Semkenclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856097Edward Dickinsonclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856098Toby Bingleyalto vocalistNeeds VoteWestminster Cathedral Choir + +4856099Benedict Dollardclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856100Michael Usmaralto vocalistNeeds VoteWestminster Cathedral Choir + +4856101Nicholas Morrellclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856102Hugh Lydonalto vocalistNeeds VoteWestminster Cathedral Choir + +4856103Benedict Durbinalto vocalistNeeds VoteWestminster Cathedral Choir + +4856104Radon Reynolds (2)classical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856105Edmund Tuttonalto vocalistNeeds VoteWestminster Cathedral Choir + +4856106Timothy Lacyclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856107Trevor LingBass vocalistNeeds VoteWestminster Cathedral Choir + +4856108Hugo Walker (2)classical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856109Daniel Cuccioclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856110Gregory Brettclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856111Richard Anderton (2)classical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856112Joseph De Laceyclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856113Matthew Browneclassical treble vocalistNeeds VoteWestminster Cathedral Choir + +4856114Steven Lloyd (2)bass vocalistNeeds VoteWestminster Cathedral Choir + +4856205Heidi BrodwinAmerican classical violinistNeeds VoteRochester Philharmonic Orchestra + +4856733Marcus Pathanclassical alto vocalistNeeds VoteWestminster Cathedral Choir + +4856734Richard Poyserclassical countertenor vocalistNeeds VoteWestminster Cathedral Choir + +4858086Secret Police (3)Needs Major ChangesThe Secret Police + +4861806Kalervo KulmalaClassical hornist.Needs Votehttps://fi.wikipedia.org/wiki/Kalervo_KulmalaEstonian National Symphony OrchestraJärvenpää-Quintet + +4863461Rosetta Crawford And Her Hep CatsNeeds Major ChangesRosetta Crawford & Her Hep CatsRosetta Crawford & James P. Johnson's Hep CatsRosetta Crawford With The Hep CatsMezz MezzrowRosetta Crawford + +4863836Judith LängleAustrian classical violinistNeeds VoteBruckner Orchestra Linz + +4863837Evelyn DonnenbergAustrian classical violinistNeeds VoteBruckner Orchestra Linz + +4863838Peter BeerAustrian classical violinistNeeds VoteBruckner Orchestra Linz + +4863839Piotr GladkiPolish classical violinistNeeds VoteBruckner Orchestra Linz + +4863840Claudia FederspielerAustrian classical violinistNeeds VoteBruckner Orchestra Linz + +4863841Iva Hölzl-NikolovaBulgarian classical violinistNeeds VoteIva Nikolova (2)Bruckner Orchestra Linz + +4863842Chie Akasaka-SchauppJapanese classical violinistNeeds VoteBruckner Orchestra Linz + +4863843Ana PaukSerbian classical violinistNeeds VoteBruckner Orchestra Linz + +4863844Heinz HaunoldClassical violinistNeeds VoteProf. Heinz HaunoldBruckner Orchestra Linz + +4863845Josef HerzerAustrian classical violinist.Needs VoteBruckner Orchestra Linz + +4863846Lui ChanChinese classical violinistNeeds VoteBruckner Orchestra LinzFestival Sinfonietta Linz + +4863847Stefan PöchhackerClassical violinistNeeds VoteWiener Symphoniker + +4863848Radu CristecuClassical violinist.Needs VoteBruckner Orchestra Linz + +4863849Julia KürnerAustrian classical violinistNeeds VoteBruckner Orchestra LinzOberösterreichisches Jugendsinfonieorchester + +4863870Rieko AikawaJapanese classical violinistNeeds VoteBruckner Orchestra Linz + +4863871Thomas SchauppAustrian classical violinist, also freelance photographerNeeds Votewww.thomas-schaupp.atBruckner Orchestra LinzMaggiore Quartett + +4863873Alois MaresCzech classical violinistNeeds VoteAlois MarešBruckner Orchestra Linz + +4863874Wolfgang Zimmermann (3)German classical violinistNeeds VoteBruckner Orchestra Linz + +4863875Reinhold KronawittleithnerAustrian classical violinistNeeds VoteProf. Reinhold KronawittleithnerBruckner Orchestra Linz + +4863876Sayaka KiraSayaka Kira-TakeuchiJapanese classical violinistNeeds VoteBruckner Orchestra Linz + +4863877Johanna BohnenGerman classical violinistNeeds VoteBruckner Orchestra Linz + +4863878Sebastian GoglAustrian classical violinistNeeds VoteBruckner Orchestra LinzGrazer Philharmonisches Orchester + +4863879Jana KuhlmannGerman classical violinistNeeds VoteBruckner Orchestra LinzOrchestra Mozart + +4863912Monika HemetsbergerGerman classical violistNeeds VoteBruckner Orchestra Linz + +4863913Gunter GlösslAustrian classical violistNeeds VoteBruckner Orchestra LinzMelos Quartett (2) + +4863914Walter Haas (2)Austrian classical violistNeeds VoteBruckner Orchestra Linz + +4863915Clemens RechbergerAustrian classical violistNeeds VoteBruckner Orchestra Linz + +4863916Mathias FrauendienstClassical violist, born in 1988 in Vienna, Austria.Needs VoteBruckner Orchestra Linz + +4863917Gerda FritzscheAustrian classical viola player. Born in Vienna. +Studied viola at the Vienna University of Music and Performing Arts from 1994 with [a1297565] and Prof. [a2054085], as well as with [a954497] in Ghent.Needs VoteBruckner Orchestra LinzWagner-Quartett + +4863918Sabine LugerAustrian classical violistNeeds VoteBruckner Orchestra Linz + +4863919Gerhard PaalAustrian classical violist.Needs VoteBruckner Orchestra Linz + +4863920Gerhard PitschAustrian classical violistNeeds VoteBruckner Orchestra Linz + +4864023Madeleine DahlbergSwedish classical hornistNeeds VoteBruckner Orchestra LinzDaius Quintett + +4864024Markus EderAustrian classical trumpeterNeeds VoteBruckner Orchestra LinzBlechimperium + +4864025Susanne LehnerAustrian classical cellistNeeds VoteBruckner Orchestra Linz + +4864026José Antonio Cortez CortesMexican classical double bassistNeeds VoteBruckner Orchestra Linz + +4864029Verena WurzerVerena Wurzer is an Austrian double bassist. +Needs VoteDas Mozarteum Orchester Salzburg + +4864030Filip CortesFilip Cortés SchubertCzech classical double bassistNeeds VoteBruckner Orchestra Linz + +4864031Vladimir PetrovBulgarian classical percussionist + +For the Russian classical tenor, please use [a3438755].Needs VoteVladi PetrovBruckner Orchestra LinzThe Wave Quartet + +4864032Eva VoggenbergerAustrian classical cellistNeeds VoteBruckner Orchestra Linz + +4864033Christian PöttingerAustrian classical hornist born 1983.Needs Votehttps://db.musicaustria.at/print/pdf/node/82164/debughttps://www.probrass.at/ueber-uns/Bruckner Orchestra LinzPro Brass + +4864034Günter GradischnigAustrian classical clarinettist.Needs VoteProf. Günter GradischnigBruckner Orchestra Linz + +4864035Angela KirchnerAustrian classical flautistNeeds VoteBruckner Orchestra Linz + +4864036Alfred SteindlAustrian classical percussionistNeeds VoteBruckner Orchestra LinzVöcklamusikanten + +4864037Yamato MoritakeJapanese classical double bassistNeeds VoteBruckner Orchestra LinzORF Radio-Symphonieorchester Wien + +4864038Christian PenzAustrian classical tubistNeeds VoteBruckner Orchestra Linz + +4864039Andreas MendelGerman classical oboist.Needs VoteBruckner Orchestra Linz + +4864040Bernhard WalchshoferAustrian classical cellistNeeds VoteB. WalchshoferBruckner Orchestra LinzJohann Strauß Ensemble AustriaFrench Connection (18)Modern Symphonic Orchestra (2)LenZiaconZortMelos Quartett (2) + +4864041Walter SchifflerAustrian classical trombonist.Needs VoteBruckner Orchestra LinzJohann Strauß Ensemble Austria + +4864042Josef SchachreiterAustrian classical double bassistNeeds VoteBruckner Orchestra Linz + +4864043Josef FahrnbergerAustrian classical clarinetistNeeds VoteBruckner Orchestra Linz + +4864044Fabian HomarClassical percussionistNeeds VoteBruckner Orchestra Linz + +4864045Walter PauzenbergerAustrian classical horn player, born in 1965.Needs VoteBruckner Orchestra LinzJohann Strauß Ensemble AustriaHornisten Der Hochschule Mozarteum + +4864046Herwig KrainzAustrian classical double bassistNeeds VoteH. KrainzBruckner Orchestra LinzPeter Furtner & Ensemble + +4864047Ildiko DeakHungarian classical flautist.Needs VoteBruckner Orchestra LinzDaius Quintett + +4864048Stanislav PasierskiStanislaw PasierskiPolish classical double bassistNeeds VoteProf. Stanislav PasierskiBruckner Orchestra Linz + +4864050Johannes WreggAustrian classical bassoonistNeeds VoteBruckner Orchestra Linz + +4864051Karl HundstorferAustrian classical percussionistNeeds VoteDr. Karl HundstorferBruckner Orchestra Linz + +4864053Doris LeibovitzAustrian classical cellistNeeds VoteBruckner Orchestra Linz + +4864054Gudrun Hirt-HochrainerGudrun Hirt-HochreinerAustrian classical flautist.Needs VoteBruckner Orchestra Linz + +4864056Elisabeth Bauer (2)Austrian classical cellistNeeds VoteProf. Elisabeth BauerBruckner Orchestra Linz + +4864057Johannes PlatzerAustrian classical bassoonistNeeds VoteBruckner Orchestra Linz + +4864059Werner KarlingerAustrian classical harpistNeeds VoteBruckner Orchestra LinzThe Jku University Orchestra + +4864060Gerhard FluchAustrian classical trumpeterNeeds VoteBruckner Orchestra Linz + +4864063Bernhard ObernhuberAustrian classical hornistNeeds VoteBruckner Orchestra Linz + +4864064Un Mi HanClassical cellistNeeds VoteBruckner Orchestra Linz + +4864065Maria VorraberAustrian classical cellistNeeds VoteBruckner Orchestra Linz + +4864067Annekatrin FlickAnnekathrin FlickGerman classical cellistNeeds VoteBruckner Orchestra Linz + +4867435Toby KearneyClassical percussionist.Needs VoteCity Of Birmingham Symphony OrchestraBritten Sinfonia + +4868226Emitt SlayJazz and rhythm & blues guitarist and singer, born Jackson, Mississippi, died Detroit, Michigan, 13 September 1970. +Slay first recorded under his own name for Savoy in Detroit, Michigan, in 1953, but had earlier been featured with Todd Rhodes' orchestra in 1950.Needs VoteE. SlayEmmet SlayEmmitt SlayErmet SlayErmit SlaySlayLouis Armstrong And His OrchestraEmitt Slay TrioEmmitt Slay & His SlayridersGeorge Benson's All Stars + +4868788Andrea AnsaloneNeeds Major ChangesAnsalone + +4868789Giacomo SpiardoItalian composer from Napoli (*15?? - 16??).Needs VoteSpiardo + +4868790Hettore Della MarraHettore Della Marra also Ettore de la Marra (ca.1570 - 1634) was an Italian nobleman, musician, amateur madrigalist, and acquaintance of [a=Carlo Gesualdo].Needs VoteDella MarraHettore della MarraHettorre Della Marra + +4869503Pete "Guitar" LewisCarl LewisPete "Guitar" Lewis (probably July 11, 1913 – September 25, 1970) was a West Coast rhythm & blues and blues guitarist (and sometimes harmonica player and singer), often associated with [a=Johnny Otis]. +He made his first recordings under his own name for Federal in Los Angeles, California, in 1952.Needs Votehttps://en.wikipedia.org/wiki/Pete_%22Guitar%22_LewisLewisP. LewisPete LewisPete "Guitar" Lewis And His OrchestraPete 'Guitar' LewisPete (Guitar) LewisPete Guitar LouisPete LewisPete Lewis And His GuitarPeter "Guitar" LewisPeter LewisJohnny Otis And His OrchestraLittle Esther & The Blue Notes + +4870711Vali PhilipsVali PhillipsClassical violinistCorrecthttps://www.orsymphony.org/discover/orchestra/strings/vali-phillips/Vali PhillipsThe Harvey Rosencrantz OrchestraMinnesota OrchestraOregon Symphony Orchestra + +4874878Kirsten ZanderClassical oboistNeeds VoteLes Violons du RoyL'orchestre De Chambre De MontréalL'Orchestre Symphonique De Trois-Rivières + +4876242Andrew Meyer (2)Andrew Lepri MeyerOperatic tenor from Wilmington, Delaware, USA.Needs Votehttp://www.bach-cantatas.com/Bio/Meyer-Andrew.htmAndrew Lepri MeyerChor Des Bayerischen Rundfunks + +4876248Anton Bernhard FürstenauFlutist and composer, born 20th October 1792 in Münster, Germany and died 18th November 1852 in Dresden, Germany. +Son of [a=Kaspar Fürstenau].Needs Votehttps://en.wikipedia.org/wiki/Anton_Bernhard_F%C3%BCrstenauA. B. FurstenauA. B. FürstenauA.B. FürstenauAnton B. FürstenauBernhard FürstenauFürstenauStaatskapelle Dresden + +4877930Peter Stroud (4)Needs Major Changes + +4878542Steffen CottaSteffen Cotta is a German classical percussionist. +Needs VoteGewandhausorchester Leipzig + +4880661Mark Robinson (25)Classical violinist.Needs VoteCity Of Birmingham Symphony Orchestra + +4880812Danusha WaśkiewiczGerman violist and music teacher, born 1973 in Würzburg, Germany.Needs Votehttp://www.danushawaskiewicz.com/Dannschka WaskiewiczDanusha WaskiewiczDanuta WaskiewiczWaskiewiczBerliner PhilharmonikerRadio-Sinfonie-Orchester FrankfurtQuartetto PrometeoLucerne Festival OrchestraOrchestra MozartardeTrio + +4882423Julian LeangBritish operatic singerNeeds Vote + +4882424Jenevora WilliamsEnglish operatic mezzo-soprano singer, teacher, and author.Needs Votehttp://www.jenevorawilliams.com/Jenerova Williams + +4887336Roland LeonhardClassical cellistNeeds VoteLos Angeles Philharmonic Orchestra + +4887337Roland MoritzClassical flautistNeeds VoteLos Angeles Philharmonic Orchestra + +4889852Alex WideAlexander WideBritish classical hornist and horn tutor. Born in Southampton, England. +He graduated from [l305416] in 2014. In October 2017, he joined the [a=Britten Sinfonia] as the Co-Principal horn. In April 2021, he was appointed Principal Horn of the [a=Bournemouth Symphony Orchestra].Needs Votehttps://guild-of-hornplayers.co.uk/ensemble-members/alex-wide/https://www.alliancebrassltd.com/its-a-gold-for-french-horn-player-alex-wide/https://bsolive.com/news/welcome-to-our-new-principal-horn-alex-wide/https://brittensinfonia.com/people/alex-wide/Alexander WideLondon Symphony OrchestraBournemouth Symphony OrchestraBritten Sinfonia + +4890894Harry AzenViolinistNeeds VotePaul Whiteman And His Orchestra + +4891420Horst Berger (2)Horst Berger (25 March 1933 in Berlin, Germany - 13 May 2003 in Vienna, Austria) was an Austrian percussionist. He was the son of [a2007797]. +A member of the [a754974] from 1958 to 1995.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterHofmusikkapelle WienEnsemble Eduard Melkus + +4895309Peter Davis (19)Clarinetist.Needs VoteBBC Symphony Orchestra + +4895701Laurence JaboulayClassical violistNeeds VoteOrchestre National Bordeaux Aquitaine + +4898149Robert Davies (7)Classical baritone vocalist.Needs Votehttp://www.bobdaviesbaritone.com/London VoicesThe Monteverdi ChoirLaudibus + +4898340Ernst KissClassical Viola playerNeeds VoteSolistenensemble Der Wiener Staatsoper + +4898341Burkhart KraeutlerClassical ContrabassistNeeds VoteSolistenensemble Der Wiener Staatsoper + +4900038Thomas DoliéFrench classical Baritone & Bass vocalistNeeds VoteDoliéLe Concert Spirituel + +4900137Hans HadamowskyHans Hadamowsky (1906 - 1986) was an Austrian horn player.Needs VoteH. HadamouskyHans HadamouskyWiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +4900280Fate MarableAmerican jazz pianist, born Paducah, Kentucky, December 2, 1890, died St Louis, Mo., January 16, 1947. +Starting in 1907, he played piano and calliope on the Mississippi riverboat J.S. Marable recruited his sidemen in New Orleans, many of which later became famous: Louis Armstrong, Henry "Red" Allen, Baby Dodds, and Jimmy Blanton had all played with Marable. His band recorded only two titles, for OKeh in New Orleans in 1924; "neither of these recordings capture exceptional performances." (John Chilton, The New Grove dictionary of jazz, 1988)Needs VoteFate Marable's Society Syncopators + +4900294Johnny BayersdorfferJazz trumpeter, born 1899 in New Orleans, Louisiana.Needs VoteBayersdorfferJohnny Bayersdorffer And His Jazzola Novelty Orchestra + +4900448Stefan Wagner (6)German violinist, born 1962 in Augsburg.Needs VoteStuttgarter PhilharmonikerNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +4902506Frauenchor Des Rundfunkchores LeipzigNeeds VoteRundfunkchor Leipzig + +4904804Carl JohannisCarl Johannis (13 August 1908 in Vienna, Austria - 2002) was an Austrian violinist. He was a member of the [a754974] from 1935 to 1974. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +4905625Thierry CassardClassical hornistNeeds VoteOrchestre De L'Opéra De Lyon + +4906260Arnold HabbeJazz banjoistNeeds VoteHitch's Happy Harmonists + +4907693Michael DabelsteenClassical double bassist.Needs VoteMichael DabelstenMichael Rossander DabelsteenDR SymfoniOrkestret + +4907892Edgar Williams (3)British classical bassoon player, and woodwind teacher. Died 23 November 2010 in Northampton, East Midlands, England, UK, aged 84. +Former member of the [a=London Symphony Orchestra] (1965-1968) and woodwind teacher at the [l742849].Needs Votehttps://www.mesaieux.com/Obituary/Edgar_Williams/10301593London Symphony OrchestraMelos Ensemble Of London + +4911570Nicolas ProstFrench saxophonist. + +Solo Saxophonist of the [a448007], chamber musicians of the [a2920116] and [a4911569]. He is a laureate of the prestigious [l1014340] and 7 international chamber music competitions. Prost is a certified professor at the Conservatoire de St-Maur. It is supported by [l77770].Needs VoteNicolas Prost & GuestsProstOrchestre Des Concerts LamoureuxEnsemble VariancesTrio Saxiana + +4911814Collegium Musicum Universität TübingenNeeds Votehttp://www.uni-tuebingen.de/collegium/Camerata Vocalis Der Universität TübingenChoir Collegium Musicum Of The University Of TübingenChor Und Kammerorchester Des Collegium Musicum Der Universität TübingenChor der Universität TübingenChor und Orchester Collegium Musicum der Universität TübingenChœur Et Orchestre Du Collegium Musicum De TübingenCollegium Musicum Choir And Orchestra Of The University Of TübingenCollegium Musicum Of The University Of TübingenKammerorchester Collegium MusicumKammerorchester Collegium Musicum TübingenKammerorchester Des Collegium Musicum TübingenKammerorchester Tübinger StudentenKammerorchester des Collegium Musicum TübingenOrchestra Collegium Musicum Of The University Of TübingenOrchestre De Chambre Des Etudiants De TübingenOrchestre Universitaire De TübingenOrchestre de Chambre Du Collegium Musicum de TübingenTübingen Collegium MusicumTübingener Kammerorchester + +4912506Maria ScheidGerman classical violistNeeds VoteGürzenich-Orchester Kölner Philharmoniker + +4914884Harry Taylor (7)Henry W. TaylorEnglish classical timpanist, Professor of Timpani, and author. +Former Principal Timpani of the [a=London Symphony Orchestra] (1933-1950). Professor of Timpani at the [l290263]. He wrote the book 'The Art and Science of the Timpani'.Needs VoteLondon Symphony OrchestraLondon Bach Ensemble + +4915573Annette ZahnClassical double bassistNeeds VoteNetherlands Chamber Orchestra + +4917343Hans HindlerJohann HindlerAustrian clarinetist, born 3 September 1951.CorrectJohann HindlerOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenWiener OktettWiener Ring Ensemble + +4917344Hubert KroisamerHubert Kroisamer (20 April 1953 in Wallern an der Trattnach, Austria) is an Austrian classical violinist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener OktettThe Vienna String Quartet + +4918809Frode AmundsenNorwegian tubaist and conductor, born 1974 in Kongsvinger, Norway.Needs VoteOslo Filharmoniske OrkesterEikanger-Bjørsvik Musikklag + +4919109Matthias Perl (2)Classical flautist.Needs VoteMatthias PerlOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +4920061Luca FranzettiClassical cellist, born in 1969 in Parma, Italy.Needs Votehttps://www.lucafranzetti.it/Mahler Chamber OrchestraOrchestra Sinfonica Di Milano Giuseppe VerdiLucerne Festival OrchestraOrchestra MozartSilete Venti! + +4920408Earl Wilson (3)US big band vocalistNeeds VoteCount Basie Orchestra + +4921515Auriol EvansBritish cellist based in London who performs as a soloist and chamber musician.Needs Votehttp://auriolevans.com/https://twitter.com/auriolevansBournemouth Symphony Orchestra + +4923584Vera ReigersbergClassical violistNeeds VoteWiener SymphonikerZalodek Ensemble Wien + +4924068Jerzy ChudybaJerzy Władysław Chudyba(1933 - 2005). Polish flautist, member of [a910618]. Also collaborated with music ensemble [a4470322].Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4925293New Orleans Lucky SevenThis alias was used by [a326834] on their sole Race Series release, [r8212684].Needs VoteThe New Orleans Lucky SevenBix Beiderbecke And His GangBix Beiderbecke And His OrchestraBix BeiderbeckeChauncey MorehouseFrank SignorelliBill RankDon Murray (2)Adrian Rollini + +4925565Pekka NuotioPekka NuotioFinnish classical tenor singer. Born on February 21, 1929 in Viipuri, Finland and died on March 17, 1989 in Helsinki, Finland.Needs VoteRallineloset + +4925664Leopold KainzLeopold Kainz was a classical horn player.Needs VoteLeopold KrainzOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +4928225Felix SchwartzFelix Schwartz is a German classical violist.Needs VoteStaatskapelle BerlinAperto Piano QuartetClarens QuintetTrio Apollon + +4928226Ruth JarreProducer at DeutschlandradioNeeds Vote + +4929345Naoum BlinderViolinist and concertmaster of the [a446472] from 1931 to 1957. Brother of cellist [a4775384]. Teacher of Isaac Stern. Born 1889 in Lutsk, Zhitomir, Russia (now in Ukraine), died November 21,1965, San Francisco, California.Needs Votehttps://en.wikipedia.org/wiki/Naoum_Blinderhttp://pronetoviolins.blogspot.com/2015/12/naoum-blinder-was-russian-ukrainian.htmlSan Francisco Symphony + +4930931Charles Smith (24)Early jazz pianist.Needs VotePerry Bradford Jazz Phools + +4932899Hendrik VornhusenHendrik Vornhusen is a German violist.Needs VoteOrchester der Bayreuther FestspielePhilharmonisches Orchester KielBundesjugendorchesterLandesjugendorchester Nordrhein-Westfalen + +4933401john cockerillJohn Thomas CockerillBritish classical harpist and pianist. Born in 1890 in King's Norton, Worcestershire, England, UK - Died in 1962. +He studied at the [l290263]. Former Principal Harp of the [a=London Symphony Orchestra] (1921-1939).Needs Votehttps://www.elgar.org/6ccnewAF.htmJ. CockerillJohn CockerillJohn T. CockerillLondon Symphony OrchestraHallé OrchestraPhilharmonia Orchestra + +4934404Grzegorz GorczycaClassical pianistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +4936185Steven BartaAmerican clarinetistNeeds VoteBaltimore Symphony Orchestra + +4936714John DickensCredited as jazz singer.Needs VoteFletcher Henderson And His Orchestra + +4938663Ivan Lopez (4)Played bongos, latin percussion. +With Stan Kenton Orchestra in 1947.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/327969/Lopez_IvanWoody Herman And His OrchestraWoody Herman And His Third Herd + +4939207George TallNeeds VoteBennie Moten's Kansas City Orchestra + +4940109Zygmunt Marek KowalskiClassical violinist and concertmasterNeeds VoteZygmunt KowalskiOrchestre Du Théâtre Royal De La Monnaie + +4940667Ernst HöllerhagenGerman jazz clarinetist and alto saxophonist, born October 5, 1912 in Barmen [now Wuppertal], Germany, died July 11, 1956 in Interlaken, Switzerland. +Professional debut on alto saxophone with [a=Sam Wooding]'s band in 1930. Played and recorded with [a=Juan Llossas] 1933, [a=Jack Hylton] and [a=Coleman Hawkins] 1936, [a=Teddy Stauffer] 1936-1941, [a=Eddie Brunner] 1940-1948 and others. He led his own groups from 1942 to 1948.Needs VoteE. HoellerhagenE. HöllerhagenErnie HöllerhagenErnst HoellerhagenErnst HollerhagenErnst Hollerhagen, ClarinetTeddy Stauffer Und Seine Original TeddiesHazy Osterwald SextettOrchester Kurt HohenbergerErnst Höllerhagen QuintettErnst Höllerhagen QuartettThe Berry'sHazy Osterwald And His OrchestraPhilippe Brun SeptetEddie Brunner And His BandMelle Weersma And His Red, White & Blues Aces + +4942665Anton StrakaAustrian violinist and conductor, born 27 February 1942 in Vienna, Austria. He was a member of the [a754974] from 1964 to 2004.Needs VoteOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerEnsemble Kontrapunkte + +4945285Tony PrenticeAnthony PetruccioneAmerican pianist and keyboard player.Needs VoteWoody Herman And His OrchestraWoody Herman And The Swingin' Herd + +4945671Leszek WachnikPolish bassoon instrumentalistNeeds Votehttps://m.facebook.com/profile.php?id=100063601536728&_rdrOrkiestra Symfoniczna Filharmonii NarodowejGoldberg Baroque EnsembleLa Tempesta (2) + +4945998Exodus (45)Bill CorritoreUS based DJ & Producer, label owner of [l=Peak Hour Music] Needs Votehttps://www.facebook.com/DJExodusNYChttps://www.instagram.com/DJExodusNYChttps://www.twitter.com/DJExodusNYChttps://soundcloud.com/DJExodusNYCDJ ExodusExo + +4949511Irene KleinClassical string instrumentalistNeeds VoteCollegium VocaleArt D'echoLes FlamboyantsEnsemble »Alte Musik Dresden«Musica FiataBell'Arte SalzburgHathor ConsortHimlische CantoreyLa Villanella BaselMusicke & MirthEnsemble La Silla + +4949962Daniel ShaoBritish-Chinese flautist and composer, born (in 1995) and raised in London. +He was Co-Principal FLute in the [a=European Union Youth Orchestra] and Principal Flute with the [a718899]. Associated member of the [a=Philharmonia Orchestra].Needs Votehttps://www.facebook.com/asiacakeshttps://twitter.com/danjshao?lang=cahttps://www.instagram.com/danshaoflute/https://soundcloud.com/danshaohttp://www.leicesterinternationalmusicfestival.org.uk/daniel-shaohttps://philharmonia.co.uk/bio/daniel-shao/https://www.musicteachers.co.uk/teacher/b46e0a77bc2ed2469554https://www.mandy.com/uk/music-professional/dan-shaohttps://www.bbc.co.uk/programmes/profiles/2w7sjzb9cvtkSM83lWg2hJw/daniel-shaoPhilharmonia OrchestraBritten-Pears OrchestraEuropean Union Youth Orchestra + +4950837Sarah IancuFrench classical cellistNeeds VoteOrchestre National Du Capitole De Toulouse + +4950918Jörg FadleGerman clarinetist and music university lecturer. Needs Votehttps://www.udk-berlin.de/en/people/detail/person/joerg-fadle/FadleJ. FadleJorg FadleDeutsches Symphonie-Orchester BerlinRadio-Symphonie-Orchester BerlinRIAS SinfoniettaSebon-Quartett + +4951006Camille BasléFrench percussionist.Needs VoteOrchestre De ParisLes SièclesSarocchi + +4951260James Williams (29)US big band trombonist. +Needs VoteJimmie Lunceford And His Orchestra + +4952790Sarah OatesSouth African classical violin player. Born on 26 June 1976 in Johannesburg. +From 2008 until 2013 she was the concertmaster of the [a9585118] in Amsterdam. Associate Concertmaster of the [a=Philharmonia Orchestra] since 2013. Member of the [url=https://www.discogs.com/artist/2183632-Devich-Trio]Devich Piano Trio[/url]. Part writer of Music books.Needs Votehttps://sarahoates.eu/https://www.facebook.com/sarah.oates.560https://open.spotify.com/artist/2f7b2yKPjpmWqNSKWsrLzZhttps://philharmonia.co.uk/bio/sarah-oates/https://en.wikipedia.org/wiki/Sarah_Oateshttps://www.celebsagewiki.com/sarah-oateshttp://www.musicaerossitoscani.com/images/fotomusicisti/pagoateseng.htmhttps://www.brusselsmuzieque.com/phoenix-artistshttps://yuliasavikovskaya.com/sarah-oates-the-orchestra-feels-really-safe-if-they-can-trust-the-concertmaster/Philharmonia OrchestraDevich Trio + +4953309Lionel NiptonNeeds VoteArthur NiptonKing Oliver & His Orchestra + +4954221Julia LichtenJulia Lichten is an American cellist. +Needs VoteOrpheus Chamber OrchestraThe American Chamber Players + +4954699fmw (2)Felix Müller-WrobelCutting engineer at [l269429].Needs VoteFMWFelix MüllerCalyx Mastering + +4956496Jérémy SassanoJérémy Sassano (born 1987) is a French oboist and English horn player. +Needs VoteWDR Sinfonieorchester KölnOrchester der Bayreuther FestspieleFrankfurter Opern- Und Museumsorchester + +4956689Vincent MitterrandFrench trumpeterNeeds VoteOrchestre Des Concerts LamoureuxOrchestre D'Harmonie De La Région CentreVillette Brass + +4956697Stéphane BridouxStéphane BridouxFrench hornist (1985).Needs VoteOrchestre Philharmonique De Radio FranceOrchestre Tous En CœurEnsemble Initium + +4957049Paul FredricksPaul Gerald FredricksGerman-American brass musician of the Big Bands Era of the 1930s and 1940s. +Born July 14, 1918. Died July 4, 2010 (aged 91). +His parents were immigrants and he was raised near Philadelphia, Pennsylvania. He is known for his unique skills as a trumpeter and left his mark on a range of larger bands such as the orchestras of [a299945], [a335672], [a269852], and [a152707] and [a349797], in the jazz music scene of the period surrounding World War II. He later ventured off with his own New Orleans-style Dixieland jazz band The Paul Fredricks Orchestra, later The Crescent City Stompers. He was featured (uncredited) in some Hollywood films including "Sing Your Worries Away" (1942). +He had a lasting eight decade musical career.Needs Votehttps://en.wikipedia.org/wiki/Paul_Fredrickshttps://musicbrainz.org/artist/e94830a4-31b8-4388-b475-05f3bdea5aeahttps://adp.library.ucsb.edu/index.php/mastertalent/detail/355369/Fredricks_PaulLes Brown And His Band Of RenownThe King SistersCharlie Spivak And His OrchestraThe Mel-TonesAlvino Rey And His OrchestraJack Jenney And His Orchestra + +4957053Ted BergrenCredited as guitar player.Needs VoteLouis Armstrong And His Orchestra + +4958480Roland KofloffpercussionNeeds VoteConcertgebouworkestThe All Star Percussion Ensemble + +4958499Emilie De VoghtClassical soprano vocalist.Needs Votehttp://www.emiliedevoght.com/Collegium VocaleNadar Ensemble + +4959010Это гавничNeeds Votehttps://vk.com/etogavnichEGEto GavinchEto GavnichЦе ГавнічЭГЭто гвыничце гавнічэто шавничєто гавнич`Genetic TranceVziel ProjetVxZxDas Gonob QuasiformaGraphic StandartMarasmatronics ProjetSomewhere At The Edge Of Our UniverseAtmalingamTextual Sound ProjectStryggaldvyrLiquid Music ProjectObscurejdGenetic ShitNo More LifeP. SadowFandorin ProjetAlex Usiel IschenkauGraphic Sound ProjectDefault ArtistVrendeferlAlex U. Ischenkau Avant-Garde Music BandYerunda ProjetStoner GenahDer SpaßfernsprecherWhile Walking In The Highest Depths Of Celestial Nothingness I Suddenly Realized The Existence Of The Mortal Intraception [...]Vdaqzad Madagnl DajadefUsielGenetic TrashALeXXXaTahNForuponofEmetic GrumeDJ N0BELArlene B GypseyApathiesChild PornRelative;VzielBumburumCaliph MutaborوأناجPurulent Headache{{{VVÜÜÜRZÜÜÜΛΛ}}}COM SurrogateSULEIMAN IBRAGIMOVHarsh Noise WallThrust PompBlack BossSurrogate SigmaTiholazMerzluxТанцор из ФранцииSiberian MiceעוזיאלFemale RapistMe & IbrzuStarving For SevenUppercut ManagerArissa FranklinPrison ComfortIMY ScapesEntering OpeningWhite WoundDeformed Skeletal TouchSuicide WhoreDeep HatePurple AshGerman ChristiansSpækonaFeral WitnessRazorblade SublemmaPickelhaubeIvy AlleyWrong SexUnspeakable ProlegomenaScham der KunstЯ 2Я 3Яблочный сойузъ купидон скала тропинка спечьноПривет, это лохМедиакукишЯ 16Я 17Я 14Я 15Я 12Я 13Я 10Я 11Я 18Я 19Я 4Я 5Я 6Я 7Я 8Я 9Я 28Я 23Я 22Я 21Я 20Я 27Я 26Я 25Я 24YpopoZubotripobabotuponipomutogutosutoputocutolutozutorutomutogutovutoЯблочныйПижамчик с РутрекераДобрый и позитивныйАпельсиновыйОжидал, но не увиделОтзывчивыйZuzupupupupupupupupupupupupupupupupupupupupupupupupupuZurienZweider ZimmermansZxc 2ZXXXXXXXXXX 6677Why the Touch, Step of Darkness Series, Amplitude, Visible in Grains, Purple SteamAcacia FranklinAdelae FranklinAdelida FranklinAdrielle FranklinAishreen FranklinAishmeen FranklinAbbie FranklinAizza-Mckayla FranklinAashna FranklinAkayla FranklinAishani FranklinAda FranklinAbaigael FranklinAddisyn FranklinAaleah FranklinAdelee FranklinAdrienne FranklinAdhya FranklinAhana FranklinAdalind FranklinAaniya FranklinAarya FranklinAaiza FranklinAbrianna FranklinAirah-lee FranklinAbigaile FranklinAdaira FranklinAiden FranklinAkima FranklinAayah FranklinAditree FranklinAaryana FranklinAerith FranklinAaliyah-Faith FranklinAauriah FranklinAbigayle FranklinAdeline FranklinAdelia FranklinAdara FranklinAashi FranklinAileen FranklinAbem FranklinAeris FranklinAasiyah FranklinAidan FranklinAbbygail-Claire FranklinAdn FranklinAdya FranklinAiza FranklinAaliyah FranklinAaria FranklinAirabella FranklinAbbygale FranklinAbegail FranklinAdaeze FranklinAkiko FranklinAevyn FranklinAddie-Mae FranklinAdela FranklinAkeira FranklinAdesa FranklinAgam FranklinAhrianna FranklinAicha FranklinAdalia FranklinAdlee FranklinAayat FranklinAchan FranklinAdaisa FranklinAbigayl FranklinAhniyah FranklinAdilee FranklinAislyn FranklinAiden-Getne FranklinAidyn FranklinAbbagail FranklinAislinn FranklinAkaasha FranklinAbilleh FranklinAkasha FranklinAdeena FranklinAfshin FranklinAarvi FranklinAbbrianna FranklinAdrianna FranklinAgamjot FranklinAchsa FranklinAisling FranklinAddilynn FranklinAdriana FranklinAilish FranklinAimie FranklinAalaa FranklinAira-Bella FranklinAaminah FranklinAbigael FranklinAdreana FranklinAkaliah FranklinAisley FranklinAbeera FranklinAdia FranklinAayla FranklinAbeer FranklinAbby-lynn FranklinAdtheres FranklinAida FranklinAdvika FranklinAdhora FranklinAdelleda FranklinAbygail FranklinAbheri FranklinAjwah FranklinAbuk FranklinAeriana FranklinAkeysha FranklinAdhel FranklinAera FranklinAgasi FranklinAalia FranklinAddilyn FranklinAira FranklinAdaline FranklinAaira FranklinAdele FranklinAdina FranklinAddison FranklinAinsleigh FranklinAditi FranklinAbbygaile FranklinAdalina FranklinAiona FranklinAdriyah FranklinAddalyn FranklinAdriann FranklinAja FranklinAganetha FranklinAaliah FranklinAila FranklinAdleigh FranklinAJ Franklin (2)Ainslee FranklinAfsana FranklinAfrdita FranklinAi FranklinAizlynn FranklinAdelyn FranklinAadhya FranklinAiesha FranklinAbidaille FranklinAiryana FranklinAhlyssa FranklinAimen FranklinAdyson FranklinAbyan FranklinAbella FranklinAdeleigh FranklinAikam FranklinAdeleine FranklinAbbilene FranklinAirriana FranklinAbebaye FranklinAarolyn FranklinAdessa FranklinAdelaide FranklinAdley FranklinAbbygail FranklinAbinoor FranklinAdelina FranklinAisha FranklinAdna FranklinAbagayle FranklinAedre FranklinAdalyn FranklinAbbigail FranklinAddaline FranklinAbbigale FranklinAaliyah-noor FranklinAbeeha FranklinAiyanah FranklinAddie FranklinAinsley-Rae FranklinAbbi FranklinAirelle FranklinAderyn FranklinAbbegail FranklinAbeni FranklinAbbey FranklinAdelaine FranklinAhmiah FranklinAbby FranklinAaralyn FranklinAdysen FranklinAahliah FranklinAbigail FranklinAbigale FranklinAaleya FranklinAfreen FranklinAddalynn FranklinAdrika FranklinAdrianne FranklinAdisyn FranklinAinslie FranklinAjuni FranklinAdelynn FranklinAkiesha FranklinAashka FranklinAarohi FranklinAddelynn FranklinAdalie FranklinAdaya FranklinAdella FranklinAhliyah FranklinAizah FranklinAddi-Lynne FranklinAhin FranklinAbygale FranklinAcelyn FranklinAjulu FranklinAdaleigh FranklinAaneya FranklinAislynn FranklinAdria FranklinAavya FranklinAgatha FranklinAbbigaile FranklinAine FranklinAfrin FranklinAahna FranklinAiva FranklinAdetoke FranklinAbida FranklinAbabya FranklinAdrienn FranklinAangi FranklinAdayah FranklinAbbigayle FranklinAbba FranklinAdau FranklinAbbey-Gail FranklinAiryn FranklinAdalayde FranklinAdalynn FranklinAddyson FranklinAiyanna FranklinAilyn FranklinAasha FranklinAjwa FranklinAdeleah FranklinAdlynn FranklinAela FranklinAddley FranklinAhvaya-Leigh FranklinAayana FranklinAbagail FranklinAdisson FranklinAayushi FranklinAbrielle FranklinAireanna FranklinAishryia FranklinAkin-Lee FranklinAderinsola FranklinAfnan FranklinAdelade FranklinAgnes FranklinAbbygayle FranklinAbijot FranklinAjah FranklinAcasia FranklinAddy FranklinAdah FranklinAkaisha FranklinAchol FranklinAdedamisola FranklinAdanaya FranklinAeva FranklinAise FranklinAishah FranklinAdalyne FranklinAdalee FranklinAimee FranklinAjooni FranklinAinsley FranklinAdelise FranklinAísling FranklinAamina FranklinAiselle FranklinAddeline FranklinAikha FranklinAdelle FranklinAfnaan FranklinAiyana FranklinAili FranklinAirhanna FranklinAjia FranklinAanya FranklinAdelaide-Lucille FranklinЯкоб Садовников‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›‹br›‹br›‹br›f‹/br›‹/br›‹/br›Adria Franklin, 2Adeleigh Franklin, 2Abigaile Franklin, 2Ai Franklin, 2Adley Franklin, 2Aishah Franklin, 2Aaiza Franklin, 2Airah-lee Franklin, 2Abidaille Franklin, 2Abeer Franklin, 2Akasha Franklin, 2Aida Franklin, 2Adalind Franklin, 2Akiesha Franklin, 2Abilleh Franklin, 2Airriana Franklin, 2Abbigale Franklin, 2Adlee Franklin, 2Aderyn Franklin, 2Aimee Franklin, 2AJ Franklin, 2Adreana Franklin, 2Adelida Franklin, 2Aaleah Franklin, 2Airelle Franklin, 2Abeeha Franklin, 2Aaleya Franklin, 2Ainsley-Rae Franklin, 2Ailish Franklin, 2Adtheres Franklin, 2Adysen Franklin, 2Abbigail Franklin, 2Advika Franklin, 2Agamjot Franklin, 2Adriana Franklin, 2Adeena Franklin, 2Abegail Franklin, 2Addeline Franklin, 2Abbey-Gail Franklin, 2Abem Franklin, 2Abagail Franklin, 2Afrin Franklin, 2Akaisha Franklin, 2Aaliah Franklin, 2Adleigh Franklin, 2Aerith Franklin, 2Adalie Franklin, 2Adaya Franklin, 2Adelae Franklin, 2Aaryana Franklin, 2Aangi Franklin, 2Addalyn Franklin, 2Abigail Franklin, 2Aira Franklin, 2Aayla Franklin, 2Adelaide-Lucille Franklin, 2Aiselle Franklin, 2Adalynn Franklin, 2Ajwa Franklin, 2Aarohi Franklin, 2Adrianne Franklin, 2Addisyn Franklin, 2Akima Franklin, 2Abbygail-Claire Franklin, 2Aiyanah Franklin, 2Aishryia Franklin, 2Abygale Franklin, 2Abaigael Franklin, 2Aeva Franklin, 2Aisha Franklin, 2Aaralyn Franklin, 2Aísling Franklin, 2Aizah Franklin, 2Airhanna Franklin, 2Adeleah Franklin, 2Addley Franklin, 2Agasi Franklin, 2Abeni Franklin, 2Aimen Franklin, 2Aadhya Franklin, 2Aasha Franklin, 2Aila Franklin, 2Adisson Franklin, 2Abbagail Franklin, 2Adesa Franklin, 2Abigayle Franklin, 2Adeline Franklin, 2Abbilene Franklin, 2Aarya Franklin, 2Aishreen Franklin, 2Aadya Franklin, 2Adalayde Franklin, 2Afrdita Franklin, 2Akeysha Franklin, 2Ahrianna Franklin, 2Aaliyah Franklin, 2Ahlyssa Franklin, 2Abheri Franklin, 2Adele Franklin, 2Adrika Franklin, 2Aaniya Franklin, 2Aiyanna Franklin, 2Aalia Franklin, 2Ainslee Franklin, 2Abbygaile Franklin, 2Adhya Franklin, 2Adalina Franklin, 2Aauriah Franklin, 2Aaminah Franklin, 2Adhora Franklin, 2Ailyn Franklin, 2Adara Franklin, 2Abuk Franklin, 2Adelee Franklin, 2Addalynn Franklin, 2Adelise Franklin, 2Aimie Franklin, 2Adanaya Franklin, 2Aalaa Franklin, 2Abigale Franklin, 2Adalyne Franklin, 2Abebaye Franklin, 2Abigayl Franklin, 2Adelaine Franklin, 2Adn Franklin, 2Abbygale Franklin, 2Aaliyah-noor Franklin, 2Aidan Franklin, 2Aislyn Franklin, 2Abbegail Franklin, 2Abbi Franklin, 2Afton Franklin, 2Adelia Franklin, 2Adella Franklin, 2Aidyn Franklin, 2Adela Franklin, 2Abbigaile Franklin, 2Adyson Franklin, 2Ababya Franklin, 2Adelaide Franklin, 2Adrienne Franklin, 2Aasiyah Franklin, 2Adilee Franklin, 2Aela Franklin, 2Adrienn Franklin, 2Ainsley Franklin, 2Abbigayle Franklin, 2Aja Franklin, 2Akayla Franklin, 2Acasia Franklin, 2Addy Franklin, 2Aili Franklin, 2Aiona Franklin, 2Addie Franklin, 2Adna Franklin, 2Ajia Franklin, 2Aarna Franklin, 2Aayah Franklin, 2Akaasha Franklin, 2Aditree Franklin, 2Ajwah Franklin, 2Abigael Franklin, 2Aaliyah-Faith Franklin, 2Aira-Bella Franklin, 2Airyn Franklin, 2Achsa Franklin, 2Achan Franklin, 2Adaisa Franklin, 2Adedamisola Franklin, 2Abella Franklin, 2Abyan Franklin, 2Aayana Franklin, 2Aiden Franklin, 2Adau Franklin, 2Adah Franklin, 2Abbey Franklin, 2Aedre Franklin, 2Adalyn Franklin, 2Addie-Mae Franklin, 2Aaira Franklin, 2Aaria Franklin, 2Aiesha Franklin, 2Agnes Franklin, 2Adaira Franklin, 2Adelleda Franklin, 2Adayah Franklin, 2Aireanna Franklin, 2Abba Franklin, 2Aashi Franklin, 2Abrielle Franklin, 2Aahna Franklin, 2Adina Franklin, 2Aashka Franklin, 2Agatha Franklin, 2Adelynn Franklin, 2Addilyn Franklin, 2Aishani Franklin, 2Addi-Lynne Franklin, 2Aikha Franklin, 2Abby Franklin, 2Addison Franklin, 2Aditi Franklin, 2Aderinsola Franklin, 2Aeriana Franklin, 2Abbrianna Franklin, 2Aayat Franklin, 2Abygail Franklin, 2Addyson Franklin, 2Abby-lynn Franklin, 2Acelyn Franklin, 2Aayushi Franklin, 2Akaliah Franklin, 2Aislynn Franklin, 2Aarvi Franklin, 2Aevyn Franklin, 2Addilynn Franklin, 2Abbygail Franklin, 2Ahvaya-Leigh Franklin, 2Aiva Franklin, 2Abinoor Franklin, 2Aiden-Getne Franklin, 2Ahliyah Franklin, 2Aise Franklin, 2Aera Franklin, 2Adya Franklin, 2Ahmiah Franklin, 2Afnan Franklin, 2Adisyn Franklin, 2Abida Franklin, 2Adaeze Franklin, 2Adelyn Franklin, 2Adetoke Franklin, 2Aine Franklin, 2Aadhira Franklin, 2Aiza Franklin, 2Acacia Franklin, 2Aizlynn Franklin, 2Abeera Franklin, 2Aanya Franklin, 2Aashna Franklin, 2Akeira Franklin, 2Aislinn Franklin, 2Adalia Franklin, 2Adelle Franklin, 2Adelade Franklin, 2Ahana Franklin, 2Adia Franklin, 2Ainslie Franklin, 2Abbygayle Franklin, 2Ajuni Franklin, 2Aishmeen Franklin, 2Afnaan Franklin, 2Adlynn Franklin, 2Akin-Lee Franklin, 2Ahniyah Franklin, 2Adeleine Franklin, 2Aileen Franklin, 2Aeris Franklin, 2Agam Franklin, 2Aavya Franklin, 2Afreen Franklin, 2Ada Franklin, 2Aicha Franklin, 2Ajulu Franklin, 2Adriyah Franklin, 2Adhel Franklin, 2Adriann Franklin, 2Aisley Franklin, 2Abbie Franklin, 2Adessa Franklin, 2Aisling Franklin, 2Aizza-Mckayla Franklin, 2Adaleigh Franklin, 2Addaline Franklin, 2Adelina Franklin, 2Addelynn Franklin, 2Abagayle Franklin, 2Aaneya Franklin, 2Achol Franklin, 2Akiko Franklin, 2Ahin Franklin, 2Aiyana Franklin, 2Afsana Franklin, 2Adrielle Franklin, 2Ajah Franklin, 2Aarolyn Franklin, 2Aikam Franklin, 2Adalee Franklin, 2Aahliah Franklin, 2Airabella Franklin, 2Ainsleigh Franklin, 2Afshin Franklin, 2Ajooni Franklin, 2Airyana Franklin, 2Aamina Franklin, 2Aganetha Franklin, 2Adaline Franklin, 2Abrianna Franklin, 2Abijot Franklin, 2Adrianna Franklin, 2Adria Franklin, 3Abigaile Franklin, 3Adeleigh Franklin, 3Ai Franklin, 3Aishah Franklin, 3Adley Franklin, 3Aislyn Franklin, 3Aaiza Franklin, 3Abidaille Franklin, 3Airah-lee Franklin, 3Advika Franklin, 3Adalind Franklin, 3Aiyanah Franklin, 3Abilleh Franklin, 3Abbigale Franklin, 3Aimee Franklin, 3Aderyn Franklin, 3Aaleah Franklin, 3Adelida Franklin, 3Abeeha Franklin, 3Airelle Franklin, 3Aaleya Franklin, 3Ailish Franklin, 3Adrielle Franklin, 3Adtheres Franklin, 3Adysen Franklin, 3Aiyanna Franklin, 3Abbigail Franklin, 3Agamjot Franklin, 3Ainsley-Rae Franklin, 3Adalina Franklin, 3Adeena Franklin, 3Adriana Franklin, 3Abegail Franklin, 3Akiko Franklin, 3Addeline Franklin, 3Abagail Franklin, 3Aileen Franklin, 3Aarohi Franklin, 3Abem Franklin, 3Aaliah Franklin, 3Abbey-Gail Franklin, 3Adleigh Franklin, 3Aerith Franklin, 3Adalie Franklin, 3Adaya Franklin, 3Adhora Franklin, 3Aaryana Franklin, 3Addalyn Franklin, 3Aangi Franklin, 3Abigail Franklin, 3Akeysha Franklin, 3Adilee Franklin, 3Adelaide-Lucille Franklin, 3Aayla Franklin, 3Aiselle Franklin, 3Adrianne Franklin, 3Adalynn Franklin, 3Aira Franklin, 3Abaigael Franklin, 3Airhanna Franklin, 3Akima Franklin, 3Addisyn Franklin, 3Abbygail-Claire Franklin, 3Adelae Franklin, 3Abygale Franklin, 3Akeira Franklin, 3Aeva Franklin, 3Aaralyn Franklin, 3Aísling Franklin, 3Aisha Franklin, 3Adessa Franklin, 3Adeleah Franklin, 3Ajwa Franklin, 3Addley Franklin, 3Abeni Franklin, 3Aadhya Franklin, 3Aimen Franklin, 3Ajah Franklin, 3Aasha Franklin, 3Adisson Franklin, 3Aiva Franklin, 3Abbagail Franklin, 3Abigayle Franklin, 3Ada Franklin, 3Abbilene Franklin, 3Adeline Franklin, 3Aarya Franklin, 3Adalia Franklin, 3Aishreen Franklin, 3Afrdita Franklin, 3Adalayde Franklin, 3Adesa Franklin, 3Ahrianna Franklin, 3Aalaa Franklin, 3Aaliyah Franklin, 3Aida Franklin, 3Adele Franklin, 3Abheri Franklin, 3Adrika Franklin, 3Aayat Franklin, 3Aaniya Franklin, 3Ainslee Franklin, 3Aalia Franklin, 3Abbygaile Franklin, 3Aauriah Franklin, 3Acelyn Franklin, 3Aaminah Franklin, 3Abeer Franklin, 3Aditi Franklin, 3Adelee Franklin, 3Abuk Franklin, 3Adelise Franklin, 3Addalynn Franklin, 3Aimie Franklin, 3Adanaya Franklin, 3Abigale Franklin, 3Aadya Franklin, 3Adalyne Franklin, 3AJ Franklin, 3Abebaye Franklin, 3Abigayl Franklin, 3Adn Franklin, 3Adelaine Franklin, 3Aaliyah-noor Franklin, 3Abbygale Franklin, 3Aidan Franklin, 3Afnan Franklin, 3Abbi Franklin, 3Adelia Franklin, 3Afton Franklin, 3Aidyn Franklin, 3Abbegail Franklin, 3Adela Franklin, 3Adyson Franklin, 3Abbigaile Franklin, 3Ababya Franklin, 3Adelaide Franklin, 3Ahmiah Franklin, 3Akaisha Franklin, 3Aasiyah Franklin, 3Akiesha Franklin, 3Adrienn Franklin, 3Aela Franklin, 3Ainsley Franklin, 3Abbigayle Franklin, 3Aja Franklin, 3Aila Franklin, 3Acasia Franklin, 3Akayla Franklin, 3Addy Franklin, 3Addie Franklin, 3Aiona Franklin, 3Adna Franklin, 3Aarna Franklin, 3Aili Franklin, 3Aayah Franklin, 3Ahlyssa Franklin, 3Aditree Franklin, 3Airyn Franklin, 3Abigael Franklin, 3Akaasha Franklin, 3Aira-Bella Franklin, 3Aaliyah-Faith Franklin, 3Achan Franklin, 3Achsa Franklin, 3Aishryia Franklin, 3Adaisa Franklin, 3Abella Franklin, 3Abyan Franklin, 3Aikam Franklin, 3Aayana Franklin, 3Aiden Franklin, 3Adah Franklin, 3Adau Franklin, 3Abbey Franklin, 3Aedre Franklin, 3Adalyn Franklin, 3Aaira Franklin, 3Aaria Franklin, 3Adelleda Franklin, 3Agnes Franklin, 3Adaira Franklin, 3Adrienne Franklin, 3Aiesha Franklin, 3Adayah Franklin, 3Abrielle Franklin, 3Abba Franklin, 3Aireanna Franklin, 3Aashi Franklin, 3Ailyn Franklin, 3Aahna Franklin, 3Adina Franklin, 3Adella Franklin, 3Aashka Franklin, 3Agatha Franklin, 3Aishani Franklin, 3Adelynn Franklin, 3Addilyn Franklin, 3Ajooni Franklin, 3Addi-Lynne Franklin, 3Abby Franklin, 3Addison Franklin, 3Aikha Franklin, 3Aderinsola Franklin, 3Abygail Franklin, 3Aeriana Franklin, 3Abbrianna Franklin, 3Adlee Franklin, 3Ajwah Franklin, 3Addyson Franklin, 3Abby-lynn Franklin, 3Akaliah Franklin, 3Aayushi Franklin, 3Aarvi Franklin, 3Aevyn Franklin, 3Addilynn Franklin, 3Abbygail Franklin, 3Ahvaya-Leigh Franklin, 3Aise Franklin, 3Abinoor Franklin, 3Aiden-Getne Franklin, 3Ajulu Franklin, 3Ahliyah Franklin, 3Aera Franklin, 3Akasha Franklin, 3Adisyn Franklin, 3Adetoke Franklin, 3Abida Franklin, 3Adaeze Franklin, 3Adhya Franklin, 3Adelyn Franklin, 3Aislynn Franklin, 3Aadhira Franklin, 3Aine Franklin, 3Acacia Franklin, 3Adedamisola Franklin, 3Ahniyah Franklin, 3Abeera Franklin, 3Aashna Franklin, 3Aanya Franklin, 3Adya Franklin, 3Aizlynn Franklin, 3Aislinn Franklin, 3Aishmeen Franklin, 3Adelle Franklin, 3Ahana Franklin, 3Adelade Franklin, 3Ainslie Franklin, 3Adia Franklin, 3Abbygayle Franklin, 3Adlynn Franklin, 3Afnaan Franklin, 3Akin-Lee Franklin, 3Afrin Franklin, 3Adeleine Franklin, 3Aiza Franklin, 3Aeris Franklin, 3Agam Franklin, 3Addie-Mae Franklin, 3Airriana Franklin, 3Agasi Franklin, 3Aizah Franklin, 3Aavya Franklin, 3Aicha Franklin, 3Afreen Franklin, 3Adriyah Franklin, 3Adriann Franklin, 3Adhel Franklin, 3Abbie Franklin, 3Addaline Franklin, 3Aisling Franklin, 3Aisley Franklin, 3Aizza-Mckayla Franklin, 3Adaleigh Franklin, 3Ajia Franklin, 3Adelina Franklin, 3Abagayle Franklin, 3Addelynn Franklin, 3Achol Franklin, 3Aaneya Franklin, 3Ahin Franklin, 3Afsana Franklin, 3Aiyana Franklin, 3Adara Franklin, 3Airabella Franklin, 3Aarolyn Franklin, 3Adalee Franklin, 3Aahliah Franklin, 3Airyana Franklin, 3Adreana Franklin, 3Afshin Franklin, 3Ajuni Franklin, 3Ainsleigh Franklin, 3Aamina Franklin, 3Aganetha Franklin, 3Abrianna Franklin, 3Adaline Franklin, 3Adrianna Franklin, 3Abijot Franklin, 3Adley Franklin, 4Adrianne Franklin, 4Ai Franklin, 4Adeleigh Franklin, 4Abigaile Franklin, 4Adria Franklin, 4Abbey-Gail Franklin, 4Aislyn Franklin, 4Abem Franklin, 4Ainsley-Rae Franklin, 4Abidaille Franklin, 4Abilleh Franklin, 4Aisha Franklin, 4Adalind Franklin, 4Aida Franklin, 4Adreana Franklin, 4Abeer Franklin, 4Aderyn Franklin, 4Aimee Franklin, 4Abbigale Franklin, 4Aditi Franklin, 4Aaminah Franklin, 4Aaleya Franklin, 4Airelle Franklin, 4Abeeha Franklin, 4Adelida Franklin, 4Aaleah Franklin, 4Ajooni Franklin, 4Aiyanah Franklin, 4Adysen Franklin, 4Adtheres Franklin, 4Ailish Franklin, 4Aaiza Franklin, 4Abbigail Franklin, 4Addeline Franklin, 4Abegail Franklin, 4Adriana Franklin, 4Adeena Franklin, 4Akaisha Franklin, 4Aaliah Franklin, 4Akin-Lee Franklin, 4Aavya Franklin, 4Aileen Franklin, 4Adaya Franklin, 4Adalie Franklin, 4Aerith Franklin, 4Adleigh Franklin, 4Afrin Franklin, 4Abigail Franklin, 4Aangi Franklin, 4Addalyn Franklin, 4Aaryana Franklin, 4Adhora Franklin, 4Adalynn Franklin, 4Airyana Franklin, 4Aiselle Franklin, 4Aayla Franklin, 4Adelaide-Lucille Franklin, 4Ahniyah Franklin, 4Aadya Franklin, 4Aishah Franklin, 4Airhanna Franklin, 4Abaigael Franklin, 4Ahlyssa Franklin, 4Addisyn Franklin, 4Abygale Franklin, 4Advika Franklin, 4Abbygail-Claire Franklin, 4Akima Franklin, 4Aísling Franklin, 4Aaralyn Franklin, 4Aeva Franklin, 4Addley Franklin, 4Adeleah Franklin, 4AJ Franklin, 4Aira Franklin, 4Adisson Franklin, 4Aasha Franklin, 4Adilee Franklin, 4Aimen Franklin, 4Aadhya Franklin, 4Abeni Franklin, 4Aarya Franklin, 4Akasha Franklin, 4Adeline Franklin, 4Abbilene Franklin, 4Abigayle Franklin, 4Abbagail Franklin, 4Adara Franklin, 4Ahrianna Franklin, 4Aarohi Franklin, 4Adalayde Franklin, 4Afrdita Franklin, 4Airah-lee Franklin, 4Adalia Franklin, 4Adrika Franklin, 4Abheri Franklin, 4Adele Franklin, 4Airabella Franklin, 4Aaliyah Franklin, 4Akeysha Franklin, 4Aalia Franklin, 4Ainslee Franklin, 4Aislynn Franklin, 4Aaniya Franklin, 4Abagail Franklin, 4Adalina Franklin, 4Aauriah Franklin, 4Abbygaile Franklin, 4Adesa Franklin, 4Addalynn Franklin, 4Adelise Franklin, 4Abuk Franklin, 4Adelee Franklin, 4Adrielle Franklin, 4Adedamisola Franklin, 4Aalaa Franklin, 4Abigale Franklin, 4Aayat Franklin, 4Aikha Franklin, 4Aimie Franklin, 4Abigayl Franklin, 4Abebaye Franklin, 4Abbegail Franklin, 4Adalyne Franklin, 4Aidan Franklin, 4Abbygale Franklin, 4Aaliyah-noor Franklin, 4Adelaine Franklin, 4Adn Franklin, 4Adella Franklin, 4Aidyn Franklin, 4Afton Franklin, 4Adelia Franklin, 4Abbi Franklin, 4Adelaide Franklin, 4Akaasha Franklin, 4Ababya Franklin, 4Abbigaile Franklin, 4Adyson Franklin, 4Adela Franklin, 4Aela Franklin, 4Adrienn Franklin, 4Aasiyah Franklin, 4Aizah Franklin, 4Ahmiah Franklin, 4Aja Franklin, 4Abbigayle Franklin, 4Aiza Franklin, 4Ainsley Franklin, 4Aiona Franklin, 4Addie Franklin, 4Addy Franklin, 4Akayla Franklin, 4Acasia Franklin, 4Aditree Franklin, 4Aayah Franklin, 4Airyn Franklin, 4Ajia Franklin, 4Aarna Franklin, 4Adna Franklin, 4Aili Franklin, 4Aaliyah-Faith Franklin, 4Aira-Bella Franklin, 4Aila Franklin, 4Abigael Franklin, 4Abyan Franklin, 4Abella Franklin, 4Adaisa Franklin, 4Aishryia Franklin, 4Achsa Franklin, 4Achan Franklin, 4Abbey Franklin, 4Adau Franklin, 4Adah Franklin, 4Ajwa Franklin, 4Aiden Franklin, 4Aayana Franklin, 4Aaria Franklin, 4Aaira Franklin, 4Adelleda Franklin, 4Adalyn Franklin, 4Adrienne Franklin, 4Akiesha Franklin, 4Aedre Franklin, 4Airriana Franklin, 4Adaira Franklin, 4Agnes Franklin, 4Addie-Mae Franklin, 4Aiesha Franklin, 4Ailyn Franklin, 4Aashi Franklin, 4Aireanna Franklin, 4Abba Franklin, 4Abygail Franklin, 4Aashka Franklin, 4Adina Franklin, 4Aahna Franklin, 4Adanaya Franklin, 4Addilyn Franklin, 4Adelae Franklin, 4Adelynn Franklin, 4Agatha Franklin, 4Addison Franklin, 4Adayah Franklin, 4Abby Franklin, 4Addi-Lynne Franklin, 4Aeriana Franklin, 4Acelyn Franklin, 4Aderinsola Franklin, 4Abby-lynn Franklin, 4Addyson Franklin, 4Abrielle Franklin, 4Adlee Franklin, 4Abbrianna Franklin, 4Aikam Franklin, 4Addilynn Franklin, 4Aevyn Franklin, 4Aarvi Franklin, 4Aayushi Franklin, 4Akaliah Franklin, 4Abinoor Franklin, 4Aiva Franklin, 4Aishani Franklin, 4Ahvaya-Leigh Franklin, 4Abbygail Franklin, 4Agamjot Franklin, 4Adya Franklin, 4Akeira Franklin, 4Aera Franklin, 4Adetoke Franklin, 4Ahliyah Franklin, 4Ajulu Franklin, 4Aiden-Getne Franklin, 4Adelyn Franklin, 4Adhya Franklin, 4Adaeze Franklin, 4Abida Franklin, 4Afnan Franklin, 4Adisyn Franklin, 4Aadhira Franklin, 4Abeera Franklin, 4Acacia Franklin, 4Aislinn Franklin, 4Aizlynn Franklin, 4Aishmeen Franklin, 4Aanya Franklin, 4Aashna Franklin, 4Adelade Franklin, 4Ahana Franklin, 4Adelle Franklin, 4Abbygayle Franklin, 4Aine Franklin, 4Adia Franklin, 4Ainslie Franklin, 4Afnaan Franklin, 4Adlynn Franklin, 4Ajwah Franklin, 4Adeleine Franklin, 4Aishreen Franklin, 4Ajah Franklin, 4Akiko Franklin, 4Aisley Franklin, 4Agam Franklin, 4Aeris Franklin, 4Aicha Franklin, 4Ada Franklin, 4Agasi Franklin, 4Abbie Franklin, 4Adhel Franklin, 4Adriann Franklin, 4Adriyah Franklin, 4Adaleigh Franklin, 4Aizza-Mckayla Franklin, 4Aisling Franklin, 4Ahin Franklin, 4Aaneya Franklin, 4Achol Franklin, 4Addelynn Franklin, 4Abagayle Franklin, 4Adelina Franklin, 4Aarolyn Franklin, 4Afreen Franklin, 4Aiyana Franklin, 4Afsana Franklin, 4Afshin Franklin, 4Aahliah Franklin, 4Adalee Franklin, 4Aganetha Franklin, 4Aamina Franklin, 4Adessa Franklin, 4Aiyanna Franklin, 4Ajuni Franklin, 4Aise Franklin, 4Ainsleigh Franklin, 4Addaline Franklin, 4Abijot Franklin, 4Adrianna Franklin, 4Adaline Franklin, 4Abrianna Franklin, 4Antrim LogPythagorean CosmosПросто пацанHooligan FaustDJ CANVASProcedural 3y allegoric study — no original reference found (SD-s, by 1735, by 1735)АїGive Names to the Wires of the Cocoon of Golden WallaceMetaphysical FathersExtensional EmanationдэвидSee Notesgob (7)NKMDPDJ хуйСекс-молекулаЖиган-лимонN N Nkmdp [ ] NKMDPDP N N N N N, N<>357 575Historiography Of SpeleotherapyMan of ShrekсZaertyuiopDave GolyathformskgroznyНеизвестенibertokMerzbrenoritvrezorkreBurz (2)I-O/O/OGreen Tea AssortmentNosferatu 1922Sperm Of Freddie Mercury Is GayAcerbic CompendiumCyan BossHomeland ManifoldRoyal CorgixYN-22Depot stemArrow bandageBiovaeieioaLeicester AgonyBent rotorSator arepo, opera ratosDeranged rotor - Through forceTranscendental FoilMan of GlobglogabgalabChannel ExpandedMerzkarlheinzChainsaw PenetrationThe Man of Shrekрепер гApollon FoundationAyurwedaDJ Bandcamp Viewerbloral shoppePenis WigglerShen Jo Ku Ji BoDark DepressionRectal ExcrementDreadful DecorationDj ТугосеряArt GeekTechnological SingularityMonth of RumorCleam HandСервис по обмену грязепоглощающих покрытийChoko CabinPositive TendencyAbdominothoracic GastrectomyAnal SexVarious Nosferatu 1922sDevil's SpitЦиклы биполярныеМне годВзрыв марганцовки в урне мойдодыраПонос актераNekroPutinПрежний яBigg PoutDistant ParticleОтвет ПутинаArchetypal 21st Century Postinternet RecluseIncarnadine ArchDJ Harry G. ▲BLᴥCK▼√ɿLU ○▬►│▼teh borders complinting t0 tymolody of generality sessions, aren't they cvteJohnny Locker's Wisdoms Corpse BandThe The, Funerality Corruption Access, TheThe Harry MordorsHalturaNeet (3)Синдром РаскольниковаBeware Fucker!BarvinokHolorimepostironic metamodernistBus Door Pen BookNewcastle upon Tyneапекс тSay TrendMeticulously Marked Mantra Movement MalfunctionScary Man (2)Nazar UmanetsNo CanvasТютюкаemerald drifterMaterial OtherTupoklalTulpa ArdorUkulele CalibriAjar CohortПрокуратор В ПерчаткахЭто ГандонPostrnodem AnguishV3NOh Yes The Prefixes Telling Of ItLabelhead DiscourseDepression (14)Cinematographic PatternsSvoy (2)V3UPlazaclubsMusorgsky FontManjohnStemcasterMarmalade FurnitureNatural BlondessYour TurnErnist Mod🍥🎀🍥Salieri BizarFrayerokDe-evaluation Of GeminiSolve et coagulaMichel PotateuxAcryl TalonНакладная рекламацияспинLIL JABOTHokhnny ASaureolin drifterSpleen Of SplendorМихаил ЮрковскийФедя Крюковпazxc047 (3)Dinosaur AstronautNausæamerzo merzmerz0zvezdoomerzabtuPushkin's StagecoachExperimental ArtistExperimental Stalker Perception#DSMAX STAFFAnother SmokeAt 5 Steps From GroundBlues StompN122 N122Nose BeuuusysQueeeeeeeeerSAA3 SAA3Stress Noise ProductionWhales Of The TSP0Авангардисты В КосмосеPrepare Your A̶n̶u LawyerLoyal Hostile EnvironmentFragile Wax PatternsIndustrial KaraokeDestabilization Of The Stationary FieldThe Joy Of CommunicationThe Only TheGarfield MusicDestablilisation Of The Stationary FieldThe Unabombers (6)agricultural recordsNaive Communication Projectແຜ່ນດິນໄຫວ, Étant Donné Que Agrippine La JeuneDe-evaluation Of CancerDouble Bind, Self-reference, Empirical Science, SophisticsTheft Is A MythEnvironment IndexMerzoutofcontextDJ TrollerShitter (3)Fghchjchj Agsdf Perfecjrth Ssereptuatation Xion Sadnasfgh Zdfvbnm And Deathdsgs TsthfhjCurrent 94Mom's Evil TwinGenetic Trance (3)669 M. - The Classification Of FantasiesA.or_or.E Aka Groctor-N (via X. For Y.)T:S:O:B:DdfgdfgdfgdfgdfggfdffgfdfdfggfdUnimportant I,potent ArtistCC5CC5meez (6)Optional TribulationBlabbathAnal Сuntmohrestoiaablyno ilrbrayLAGERBEERxPLANETEARTHNeanderthal ShareLittle Susie (2)Апельсиновые участникиGovnosral + +4960496Philipp BohnenClassical violinist, born in Kiel, Germany.Needs Votehttp://www.philippbohnen.de/Berliner PhilharmonikerConcerto MelanteMariani Klavierquartett + +4962856Luc D'AoustNeeds VoteD'AoustLuc DaoustHeaven's CryLankhmar + +4963288Johannes RostamoSimo Ilkka Johannes RostamoSwedish-Finnish classical cellist, living in Stockholm, born December 7, 1980. + +Since 2008, Rostamo has been the solo cellist of the Royal Philharmonic Orchestra and since 2022 a professor at the Royal Academy of Music in Stockholm. + +Johannes Rostamo is also the artistic director of the baroque ensemble Orfeus Barock Stockholm, with its own concert series in the Grünewald Hall. He is also a dedicated chamber musician and one of the initiators of the Stockholm Syndrome Ensemble, which experiments with the concert form and works cross-border with artists. + +As a solo cellist, he has guested with the Concertgebouw Orchestra in Amsterdam, the Bavarian Radio Symphony Orchestra, the Mahler Chamber Orchestra, the Scottish Chamber Orchestra, Les Siècles in Paris and the Finnish Baroque Orchestra in Helsinki. Rostamo is represented on several CDs, including with Orfeus Barock in Carl Philipp Emanuel Bach's Cello Concerto in A minor and with Stockholm Syndrome. + +Johannes Rostamo trained in Helsinki, Stockholm and Oslo with Heikki Rautasalo, Torleif Thedéen, Truls Mörk and Frans Helmerson. In recent years he has delved into baroque interpretation and studied baroque cello with Emmanuel Balssa, Bruno Cocset and Gaetano Nasillo.Needs Votehttps://www.konserthuset.se/kungliga-filharmonikerna/orkestermedlemmar/cello/johannes-rostamo-solocellist/Mahler Chamber OrchestraKungliga FilharmonikernaStockholm Syndrome Ensemble + +4966196Christoph GiglerAustrian tuba player, born 26 August 1983 in Hartberg, Austria.Needs Votehttps://www.probrass.at/ueber-uns/Orchester Der Wiener StaatsoperWiener PhilharmonikerPro BrassGHO Orchestra + +4967221Margaret Richards (2)Classical viola instrumentalistNeeds VoteThe Academy Of Ancient MusicThe Apollo Consort + +4968616Benoît HuiClassical hornistNeeds VoteOrchestre National Du Capitole De Toulouse + +4972661Claudia NorzAustrian classical violinist and co-founder of [a=Klingzeug Barockensemble]Needs VoteClaudia Delago-NorzLa SerenissimaThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentOrchester Der Akademie St. BlasiusSolomon's KnotKlingzeug BarockensembleMusica Poetica (2) + +4973360Clarence Lee (2)Jazz vocalistNeeds VoteClarence ToddShufflin' SamWilliams' Washboard Band + +4973400Carmelo JariNeeds VoteCarmello JejoWilliams' Washboard Band + +4973640Floyd Campbell (3)b: Sept. 17, 1901, Helena, AK, USA. d: Sept. 30, 1993. +Big band and Jazz era drummer and vocalistNeeds Votehttps://adp.library.ucsb.edu/names/117011CampbellCharles Creath's Jazz-O-ManiacsFess Williams and His Joy BoysDewey Jackson's Peacock OrchestraFate Marable's Society SyncopatorsFloyd Campbell And His Orchestra + +4973701Christopher BorrettEnglish bass / baritone vocalist and conductorNeeds Votehttp://www.christopherborrett.comThe Monteverdi Choir + +4974450Emma JezekClassical violinist.Needs VoteSydney Symphony Orchestra + +4974938Patrick De RitisBassoonistNeeds Votehttps://www.facebook.com/Patrick-De-Ritis-Solo-Bassoonist-461622350607517/?paipv=0&eav=Afb139Tdi31qZMEqqbMk__aH3FbjswyI-og2aT2LxOMtCvIoo6ezfcM_5hB9v0jkRF8&_rdrWiener SymphonikerQuintetto BriccialdiEuropean Wind Soloists + +4977330Walter Wright (5)Early jazz bassist.Needs VotePerry Bradford Jazz PhoolsWades Moulin Rouge Orch.Harry Dial And His Blusicians + +4977334Stanley Wilson (3)Early jazz violinist, banjoist and tenor guitarist.Needs VoteStan WilsonPerry Bradford Jazz PhoolsWades Moulin Rouge Orch. + +4978823David PennetzdorferAustrian cellist, born 1984 in Vöcklabruck, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerGustav Mahler Jugendorchester + +4980332Christopher Swann (2)British clarinettist and saxophonist, formerly in the [a973597], but now freelance.Needs Votehttp://www.rncm.ac.uk/people/chris-swann/Royal Liverpool Philharmonic Orchestra + +4980680Paul Beard (2)Violin player.Needs VoteBBC Symphony Orchestra + +4980867Raimund LissyAustrian violinist, born 1966 in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble WienLissy QuartettMayseder QuartettIgnaz Pleyel Quartett + +4984960Reinhard Schmid (3)German double bassistNeeds VoteBayerisches Staatsorchester + +4985315Laila StorchLaila Storch (February 28, 1921 - December 2, 2022) was an American oboist and the first woman oboist to graduate from the Curtis Institute in Philadelphia, where she studied with Marcel Tabuteau. She was married to [a12466786] and is the mother of [a3405809].Correcthttps://en.wikipedia.org/wiki/Laila_Storchhttps://marceltabuteau.com/tabuteau-system/laila-storch/laila-storchs-oboe-lessons/L. StorchHouston Symphony OrchestraDas Mozarteum Orchester SalzburgSoni Ventorum Wind Quintet + +4986474Choeurs Du Théâtre Royal De La MonnaieLes Chœurs de la MonnaieChorus of the [l=Théâtre Royal De La Monnaie, Brussels], Belgium. +Also credited as: La Monnaie Chorus or Koor van de Munt in Flemish +For the orchestra, use [a934738]. +For the children's/youth chorus, use [a=Choeur D'Enfants De La Monnaie].Needs Votehttp://www.lamonnaie.be/en/static-pages/128-la-monnaie-chorusBrussels National Opera ChorusChildren's and Youth Choir of La MonnaieChoeursChoeurs De La MonnaieChoeurs Du Théâtre De La Monnaie, BruxellesChoeurs Du Théâtre Royal De La Monnaie De BruxellesChoeurs Du Théâtre Royal De La Monnaie, BruxellesChoeurs de l'Opera National du Théàtre Royal de la Monnaie, BruxellesChoeurs de la MonnaieChoir Of The National OperaChorusChorus Of The Théâtre De La MonnaieChorus Of Théâtre Royal De La Monnaie De BruxellesChorus of the Opéra National du Théâtre Royale de La MonnaieChorus of the Théatre de la MonnaieChœur De L'Opéra National Du Théatre Royal De La Monnaie, BruxellesChœurs De L'Opéra National Du Théâtre Royal De La Monnaie, BruxellesChœurs De La MonnaieChœurs Du Théatre Royal De La MonnaieChœurs Du Théâtre De La MonnaieChœurs Du Théâtre De La Monnaie, BruxellesChœurs de la MonnaieKoor Van De MuntLa MonnaieLa Monnaie / De Munt ChoirLa Monnaie ChorusLa Monnaie Royal Opera House Youth ChoirLa Monnaie Symphony ChorusLa Monnaie Youth ChoirLes Choeurs Du Théâtre Royal De La Monnaie De BruxellesThe Brussels Theatre De La Monnaie ChorusYoung Chorus of La Monnaie/De MuntΧορωδία του Βασιλικού Θεάτρου "La Monnaie" Των ΒρυξελλώνCatherine Alligon + +4987270Jack SutteClassical trumpeter, native of Oconomowoc, Wisconsin, began playing with the Cleveland Orchestra in 1999.Needs VoteThe Cleveland Orchestra + +4987515Christophe HorákClassical violinist, born in Neuchatel, Switzerland.Needs VoteCh. HorakChristophe HorakHorakBerliner PhilharmonikerScharoun Ensemble BerlinBerlin Piano Quartet + +4987517Micha AfkhamGerman violist.Needs VoteBerliner PhilharmonikerScharoun Ensemble BerlinBerlin Piano Quartet + +4987518Bruno DelepelaireFrench cellist, born 1989 in Paris, France.Needs VoteDelepelaireBerliner PhilharmonikerDie 12 Cellisten Der Berliner PhilharmonikerBerlin Piano Quartet + +4989416Chaim StellerDutch viola player, born 1983 in Amsterdam, Netherlands.Needs VoteGewandhausorchester LeipzigOrchestra Mozart + +4991041Paul PesthyPaul Pesthy (born 1964) is an American violist.Needs VoteRadio-Sinfonieorchester StuttgartOrchester Der Deutschen Oper Am RheinSWR SymphonieorchesterParnassus AkademieHegel Quartet + +4991043Hendrik Then-BerghHendrik Then-Bergh (born 1958) is a German cellist. +Needs VoteHendrik Then BergRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleBielefelder PhilharmonikerSWR Symphonieorchester + +4991644Al Haig QuintetNeeds Major ChangesAl Haig Quintet (The Five Bops)The Al Haig QuintetGene RameyTommy PotterAl HaigCharlie PerryWardell GrayJimmy RaneyCarlos VidalTerry Swope + +4995395Lucy PottertonBritish backing (alto) vocalist and session musician.Needs Votehttps://www.lucypotterton.comhttps://www.linkedin.com/in/lucy-potterton-10610389/Metro VoicesLondon VoicesCapital Voices + +4995443Amira Bedrush-McDonaldClassical violinistNeeds VoteScottish Chamber Orchestra + +4995694Gottfried von FreibergGottfried von Freiberg ( 8 April 1908 - 2 February 1962) was an Austrian horn player.Needs VoteFreibergGotfried Von FreibergGottfried FreibergGottfried FreidbergGottfried Ritter von FreibergGottfried Von FriebergGottfried v. Freibergvon FreibergOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchester der Bayreuther FestspieleBadische Staatskapelle + +4996355Adam Taylor (16)Adam TaylorElectronic dance music DJ, producer from Birmingham, England, UK +Styles include: Trance, Hard Trance, Hard DanceNeeds Votehttps://soundcloud.com/dj-adam-taylor-officialhttps://www.facebook.com/DJAdamTaylorOfficial/Adam Paul TaylorTaylorTaylor & West + +4996971Burt HaraClassical clarinetist.Needs Votehttps://en.wikipedia.org/wiki/Burt_HaraLos Angeles Philharmonic OrchestraMinnesota OrchestraAlabama Symphony Orchestra + +4998051Konstantin BoyarskyViolist. Son of [a=Alexander Boyarsky] and Natalya Boyarskaya.Needs Votehttp://www.konstantinboyarsky.comhttps://en.wikipedia.org/wiki/Natalya_BoyarskayaKonstantin BoyarskiOrchestra Of The Royal Opera House, Covent Garden + +4998888Jari MuikkuNeeds Major Changes + +5000502Ingo NawraGerman double bassistNeeds VoteMünchner Rundfunkorchester + +5001437Martin Linder (3)German classical oboistCorrectSüdwestdeutsches Kammerorchester + +5001438Werner Büttner (2)German classical hornistCorrectSüdwestdeutsches Kammerorchester + +5007311Gerard SpruytJazz trombonist, bassist and tenor saxophonist, recorded between 1929 and 1935.Correcthttps://www.lordisco.com/musicians/S33.htmlThe Ramblers + +5007312Joop HuismanJoseph HuismanDutch saxophone player, music teacher. +(10th December 1900, The Hague - 15th March 1964, Los Angeles)Needs VoteThe Ramblers + +5007313David van WeezelNeeds VoteThe Ramblers + +5007314Nap van der PloegDutch jazz saxophonistNeeds VoteThe Ramblers + +5007315Hans LachmanHeinz LachmannGerman jazz musician, born March 7, 1906 in Berlin, died 1990Needs Votehttp://www.leosmit.org/componisten.php?DOC_INST=18#.XLeIRHduKmQHeinz LachmannThe Ramblers + +5007316Maurits DreeseCredited as saxophone player. and vocalist.Needs VoteMaurits DresseThe Ramblers + +5007317Eddy MeenkDutch multi-instrumentist musician, vocalist and bandleader.Needs VoteEddy MeenckThe SkymastersThe RamblersKlaas Van Beeck And His OrchestraAVRO band Kovacs LajosEddy Meenk And His BoysEddy Meenk En Zijn Orkest + +5008100Annegret SchaubAnnegret Schaub is a Swiss classical recorder player.Needs VoteMünchener Bach-OrchesterBasler Barock Ensemble + +5008164Benny de GooyerSaxophone / clarinet playerNeeds VoteThe Ramblers + +5009698Yue Zhang (2)Classical violinistNeeds VoteYué ZhangOrchestre National De L'Opéra De Paris + +5009700Helene RoblinClassical violinistNeeds VoteHélène RoblinHéléne RoblinOrchestre National De L'Opéra De ParisParis Symphonic Orchestra + +5009712Sébastien WacheClassical bassoonistNeeds VoteOrchestre Des Concerts Lamoureux + +5010785Eugenia UmińskaEugenia Umińska (1910–1980) was a Polish violinist. She graduated from the Warsaw Conservatory in 1927 and continued her education under the guidance of [a=Otakar Ševčík] (1927–28) at the Prague Conservatory and [a=George Enescu] (1932–34) in Paris. Since 1927, Eugenia Uminska had been touring around Europe; she often performed [a=Karol Szymanowski]'s works. + +From 1932 to 1934, Umińska was a concertmaster of the [a=Polish National Radio Symphony Orchestra]. She became a second concertmaster of [a=Orkiestra Symfoniczna Filharmonii Narodowej] in 1937. During the Nazi occupation of Poland, Eugenia Umińska refused an offer to play for the Germans and joined the Polish resistance (Armia Krajowa) as a nurse. She also organized underground concerts in the occupied Warsaw with a cellist [a=Kazimierz Wiłkomirski] and his sister [a=Maria Wiłkomirska] on piano. Eugenia participated in the Warsaw Uprising and was captured by the Germans but managed to escape during transit. + +After the World War II, Eugenia Umińska continued her music career and became famous for performances with [a=Irena Dubiska]. Some compositions had been written for the duo, such as a [i]Suite for Two Violins[/i] by [a=Michał Spisak]. Eugenia also became a professor at the Academy of Music in Kraków in 1945. She served as Academy's Rector from 1964 to 1966.Needs Votehttp://mugi.hfmt-hamburg.de/Artikel/Eugenia_UmińskaE. UmińskaEugenja UmińskaЕвгения УминьскаOrkiestra Symfoniczna Filharmonii NarodowejOrkiestra Symfoniczna Polskiego Radia + +5011254Marie-Lise SchüpbachClassical English hornist and oboistNeeds Votehttps://www.concoursgeneve.ch/eng/people/marie_lise_schuepbachSymphonie-Orchester Des Bayerischen RundfunksBachcollegium StuttgartLucerne Festival OrchestraKölner Rundfunk-Sinfonie-Orchester + +5011831Kent TritleAmerican singer, choral conductor, organist and harpsichordist, born on 26 August 1960.Needs Votehttps://kenttritle.com/New York PhilharmonicThe Hanoverian Ensemble + +5011842Alexei GonzalesAlexei Yupanqui GonzalesAmerican classical cellistNeeds VoteAlexei Yupanqui GonzalesAlexei Yupunqui GonzalesNew York Philharmonic + +5012252Christine Schneider (3)Classical violist.Needs VoteBergen Filharmoniske Orkester + +5012286Sabina YordanovaBulgarian classical bassoonist born in SofiaNeeds VoteEstonian National Symphony OrchestraAkademie Für Alte Musik Berlin + +5013173Nicolas MartynciowFrench percussionist, drummer and composer, born in Saint-Etienne.Needs VoteOrchestre De ParisHarmonia Nova + +5013175Anne ChevallerauFrench violinist from AngersNeeds Votehttps://fr.linkedin.com/in/anne-chevallerau-47937462Le Concert SpirituelEnsemble StradivariaHarmonia Nova + +5013758Gerard McDonaldClassical oboistCorrectThe English Baroque Soloists + +5014103Ralph GriffinJazz Trumpet player.Needs VoteJimmie Lunceford And His Orchestra + +5014502YevEvgeny BogatyrDJ and producer based in Sydney, Australia.Correcthttps://www.facebook.com/djyevhttps://soundcloud.com/djyevhttps://www.youtube.com/user/yevdeejayhttps://twitter.com/djyev + +5017355Georges GilletGeorges-Vital-Victor GilletGeorges Gillet (17 May 1854 — 8 February 1920) was a French oboist, composer and educator.Needs VoteGilletOrchestre De La Société Des Concerts Du ConservatoireOrchestre Du Théâtre National De L'Opéra-Comique + +5018852Louis Bellson's Just Jazz All StarsNeeds Major ChangesLouis Bellson Just Jazz All StarsBuddy BakerClark TerryBilly StrayhornWendell MarshallWardell GrayHarry CarneyJuan TizolShorty RogersWillie Smith (2)Louis BellsonJohn Graas + +5020251Bernice RubensBernice or Beryl Ruth ReubenBernice Rubens (born July 26, 1923, Cardiff, Wales – died October 13, 2004) was a Welsh novelist. She won the Booker Prize for fiction in 1970 for [i]The Elected Member[/i] (1969). Before she devoted her time to writing, she was a classical cellist with [a=The Welsh National Opera Orchestra]. +Sister of [a=Cyril Reuben (2)].Needs Votehttps://en.wikipedia.org/wiki/Bernice_RubensThe Welsh National Opera Orchestra + +5024039Yakov MilkisЯков Миронович Милкис (1928–2019) +Yakov Milkis (Яков Милкис) was a Russian violinist, concertmaster and 2nd violin in the [a=Leningrad Philharmonic Orchestra]. The ensemble had been touring all over the world during the Soviet era, but Milkis was never able to get permission to exit USSR, without explanation. Once the officials gave him a hint - it was his aunt in Canada, and a "relative in the foreign country" was good enough reason to ban even the most promising artist from traveling to the Western world, let alone the Jewish musician. Eventually, he immigrated to Canada and became a concertmaster at the [a=Toronto Symphony Orchestra] and professor at the University Of Toronto.Needs Votehttps://100philharmonia.spb.ru/persons/21974/Я. МилкисLeningrad Philharmonic OrchestraToronto Symphony Orchestra + +5024465Celina BäumerCelina Bäumer is a German violinist. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksOrchester Des Staatstheaters Am Gärtnerplatz + +5024469Csilla PogànyClassical violinist. +Member of the 2nd violin section of the [a=London Symphony Orchestra] since 2019.Needs Votehttps://www.facebook.com/csilla.pogany.7Csilla PoganyLondon Symphony Orchestra + +5024470Darima TcyrempilovaDarima Tcyrempilova (born 1991 in Ulan-Ude, Republic of Buryatia) is a classical cellist. +Needs VoteBayerisches Staatsorchester + +5024472Florian EutermoserClassical violinistNeeds VoteMünchner RundfunkorchesterBayerische KammerphilharmonieOrchester der KlangVerwaltung + +5025189Emmanuel Blanc (2)Classical violistNeeds VoteOrchestre National De FranceParis Symphonic Orchestra + +5027039Monika KammerlanderShe is a native of Salzburg, where she studied violin at the Mozarteum Academy with Prof. Steinschaden and Prof. Zehtmair. She attended the Tschaikovsky Conservatoire in Moscow on a state scholarship, and later studied with Sandor Végh and Robert Soetens. Since 1986 she has been a sub-principal first violinist in the Mozarteum Orchestra, Salzburg, where she now is Konzertmeister.Needs VoteDas Mozarteum Orchester SalzburgSalzburger Solisten-Ensemble + +5027042Martin HebrMartin Hebr is a classical violinist. +Needs VoteDas Mozarteum Orchester Salzburg + +5027043Paul WiederinHe was born in Feldkirchen, Austria, where he studied at the Conservatoire. He later attend the Academy of Music in Vienna, where his teachers were Prof. Beyerie and Prof. Klos. During the course of his studies he won prizes in several Austrian competitions and was awarded a scholarship by the provincial government in Voraltberg.He was section leader in the Bruckner Orchestra, Linz, principial viola in the Freiburg Philharmonic Orchestra and in the Mozarteum Orchestra, Salzburg and later principal viola in the State Theatre Orchestra in Kassel.CorrectDas Mozarteum Orchester SalzburgBruckner Orchestra LinzPhilharmonisches Orchester FreiburgOrchester Des Staatstheaters KasselSalzburger Solisten-Ensemble + +5027044Beatrice RentschBeatrice Rentsch is a native of Basle where she studied flute at the Conservatoire, as well as with the Swiss scoiety for Musical Education. She went on to study with Michel Dehost in Paris and with Herbert Weissberg in the Academy of Music in Graz. Since 1980 she has been a member of the Mozarteum Orchestra, SalzburgCorrectDas Mozarteum Orchester SalzburgSalzburger Solisten-Ensemble + +5031795Aleksei KiseliovClassical cellist.Needs Votehttps://www.rsno.org.uk/info/aleksei-kiseliov/Sveriges Radios SymfoniorkesterRoyal Scottish National Orchestra + +5035020Joseph BernsteinMoldovan-born violinist, born in 1914, died in 1976. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteJos. BernsteinNew York Philharmonic + +5036028Philippe BaryFrench classical cellistNeeds VotePhilippe BarryOrchestre National De L'Opéra De ParisTrio Florent SchmittTrio Jean FrançaixTrio À Cordes Millière + +5039266Isaac ChalkClassical violistNeeds VoteLes Violons du Roy + +5039835J-TraxJamie JacksonHardstyle DJ and producer from York, UK.Correcthttps://www.facebook.com/jtraxofficialhttps://soundcloud.com/jtraxofficialhttps://www.youtube.com/channel/UCaECTfsDm10YLBs3x66_bswhttps://twitter.com/JTRAXOFFICIALhttps://www.instagram.com/jtraxofficial/DJ Trax (6) + +5043172Josef Dvořák (2)Josef DvořákCzech strings player.Needs VoteJ. DvořákThe Czech Philharmonic OrchestraMertův Smyčcový Kvartet + +5045138Bernie Cobbs (2)Credited as guitarist.Needs VoteJohnny Otis And His Orchestra + +5046992Don Lucas (2)Needs VoteExtension Chords + +5047892Mathieu Dufour (2)French flute player. Appointed principal flute of the The Chicago Symphony Orchestra in 1999 at the age of 25. Principal flute of the Berliner Philharmoniker from 2014 to 2021.Needs VoteMatthieu Dufourマチュー・ドュフールBerliner PhilharmonikerLos Angeles Philharmonic OrchestraChicago Symphony Orchestra + +5047917Sue-Ellen Hirshman-TcherepninSue-Ellen Hershman-Tcherepnin is an American flutist, co-director of [a=Dinosaur Annex Music Ensemble] and one of the founding members of [a=Pro Arte Chamber Orchestra Of Boston], an affiliated artist and Emerson flute instructor at the [l=Massachusetts Institute of Technology] since 1991. Sue-Ellen received her BMus degree from the [l=Boston University] and MMus from [l=Stony Brook University], with [a=Phillip Kaplan], [a=Jean-Pierre Rampal] and [a=Samuel Baron] as her principal teachers. In late December 1997, just a few months prior to his death, Sue-Ellen married an experimentalist composer [a=Ivan Tcherepnin] (it was Tcherepnin's third marriage). + +Hershman-Tcherepnin debuted as flute soloist with the [a=Boston Symphony Orchestra] and had been performing with BSO across Europe, Mexico, South America, Russia, and the United States. She joined [a=Dinosaur Annex Music Ensemble] in 1985, and has been an artistic co-director of the ensemble (with [a=Yu-Hui Chang]) since 2002. As a guest soloist, Sue-Ellen had appeared on stage with [a=The New England Conservatory Ragtime Ensemble], [a=Springfield Symphony Orchestra], Boston Pops Esplanade Orchestra and other notable Massachusetts and Boston-area ensembles. She also frequently performs with pianist David Witten as [b]Duo Clasico[/b]. The artist premiered several works by contemporary American composers, such as [a=Tom Flaherty]'s [i]Flute Concerto[/i], and a flute concerto by William Eldridge, dedicated to Tcherepnin.Correcthttp://mta.mit.edu/person/emerson-0Sue-Ellen HershmanSue-Ellen Hershman-TcherepninSuellen HershmanBoston Symphony OrchestraDinosaur Annex Music EnsemblePro Arte Chamber Orchestra Of Boston + +5047921David Kuehn (3)David W. KuehnDavid Kuehn (9 October 1941 - 14 April 2017) was an American classical trumpeter.Needs VoteDavid W. KuehnBuffalo Philharmonic OrchestraThe Phoenix SymphonyAnn Arbor Symphony OrchestraOrchestra Del Maggio Musicale FiorentinoArs Nova MusiciansBrass Band Of Battle CreekDetroit Chamber Winds & StringsMichigan Opera Theatre + +5047954Валентин МалковВалентин Александрович МалковBorn December 13, 1935, Leningrad +Soviet trumpeter and music teacher, soloist of the [a=Leningrad Philharmonic Orchestra], associate professor of the Leningrad Conservatory. Honored Artist of the RSFSR (1974)Needs Votehttps://ru.wikipedia.org/wiki/%D0%9C%D0%B0%D0%BB%D0%BA%D0%BE%D0%B2,_%D0%92%D0%B0%D0%BB%D0%B5%D0%BD%D1%82%D0%B8%D0%BD_%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B0%D0%BD%D0%B4%D1%80%D0%BE%D0%B2%D0%B8%D1%87Valentin MalkovВ. МалковLeningrad Philharmonic Orchestra + +5048300Adriana HorneClassical harpist.Needs VoteNational Symphony Orchestra + +5048303Alexander JacobsenClassical double bassist.Needs VoteNational Symphony Orchestra + +5049836Matthias WächterClassical violinistNeeds VoteStuttgarter Philharmoniker + +5052392Ana María Alonso (2)Violist.Needs Votehttps://es.linkedin.com/in/ema-alexeeva-63787b64Ana Mª AlonsoOrquesta De La Comunidad De MadridPlural EnsembleOrquesta FilmadridCuarteto Alexeeva + +5052600Riccardo DonatiItalian classical double bassist, born in Fucecchio, Florence, on 24 September 1972. He made his debut with the [a=Orchestre National De L'Opéra De Monte-Carlo] at the age of 22 and has since played with various other orchestras. At the age of 27, he won the Italian Bottesini Double Bass Competition. He is currently the first double bass with [a=Orchestra Del Maggio Musicale Fiorentino].CorrectOrchestre National De L'Opéra De Monte-CarloOrchestra Del Maggio Musicale Fiorentino + +5053399Nelson Alves (4)Portuguese classical oboist.Needs VoteGulbenkian Orchestra + +5053861Thomas BouzyClassical viola playerNeeds VoteOrchestre Philharmonique De Monte-Carlo + +5055697Berthold OpowerClassical violinistNeeds VoteBamberger Symphoniker + +5056083Gerhard MantelGerhard Friedrich Mantel German classical cellist, author and university lecturer (professor of cello) at the [l1802356] (* 31 December 1930 in Karlsruhe, German Empire; † 13 June 2012 in Frankfurt/Main, Germany). Needs Votehttps://de.wikipedia.org/wiki/Gerhard_MantelProfessor Gerhard MantelBachcollegium StuttgartBergen Filharmoniske OrkesterWDR Rundfunkorchester KölnDuo Mantel/Frieser + +5057338Sérgio Pires (2)Classical Clarinet player born in Portugal in 1995Needs Votehttps://www.sergio-pires.com/Sergio PiresLondon Symphony OrchestraSwiss Chamber Soloists + +5057680Barbara WeiskeBarbara Weiske (born 1987) is a German violist. +Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +5058315Adelheid BöckhelerClassical viola playerNeeds VoteSymphonie-Orchester Des Bayerischen RundfunksBachcollegium Stuttgart + +5058319Claus ZimmermannClassical contrabassistNeeds VoteBachcollegium StuttgartWürttembergisches Kammerorchester + +5058368Allan RasmussenDanish classical keyboard instrumentalistNeeds Votehttp://theatreofvoices.com/about-tov/allan-rasmussen/Theatre Of VoicesLes Ambassadeurs (6)Phemius ConsortElephant House Quartet + +5058369Mime Yamahiro BrinkmannJapanese classical cellist, living in Sweden, born on 19 June 1969. + +After graduating from Toho Gakuen University of Music in Tokyo, Mime Yamahiro Brinkmann specialized in historical performance with cello and viola da gamba at the Royal Conservatory in The Hague, where she completed her studies with a soloist diploma. + +She is a prize winner at the first "Concorso Internazionale Romano Romanini per strumenti ad arco" (Brescia, Italy, 1995; President: Gustav Leonhardt) and in 1996 she was the first to win the soloist prize with cello at the "Concours Musica" Antiqua Brugge" (Belgium) . + +Since then she has regularly performed as a soloist and member of the world's leading early music ensembles, participating in tours, festivals, opera productions and recordings with La Petite Bande (Belgium), Bach Collegium Japan, Tafelmusik Baroque Orchestra (Canada), Apollo's Fire, Joshua Rifkin & The Bach Ensemble and Seattle Baroque (USA), Australian Romantic & Classical Orchestra, Concerto Copenhagen and Paul Hillier's Theater of Voices (Denmark), as well as Barokksolistene and Barokkanerne (Norway). +Mime Yamahiro Brinkmann gives master classes around the world and supports orchestras at festivals in rehearsing their concert programs. + +She lives in Sweden, where she is a member of [a950550] and teaches baroque cello at the Royal Academy of Music in Stockholm.Needs Votehttp://coco.dk/en/musicians/cello/mime-yamahiro-brinkmann/Mime BrinkmannMime Yamahiro-BrinkmannMime YamahiroTheatre Of VoicesBarokksolisteneOslo Circles + +5058370Lars BaunkildeDanish classical violone playerNeeds Votehttp://theatreofvoices.com/about-tov/lars-baunkilde/Theatre Of VoicesTrinitatis Kammerorkester + +5059891Taverner Consort & PlayersTaverner Choir, Consort and Players, founded by [a=Andrew Parrott] in 1973 is a British music ensemble which specialises in the performance of Renaissance and Baroque music. The ensemble is made up of a Baroque orchestra (the Players), a vocal consort (the Consort) and a Choir. Needs Votehttps://www.taverner.org/Tavener Consort & PlayersTavener Consort And PlayersTaverner ConsortTaverner Consort & Taverner PlayersTaverner Consort And PlayersTaverner Consort, Choir And Players + +5062970Svetlin RoussevClassical violinist.Needs Votehttps://www.svetlinroussev.net/Sinfonia VarsoviaOrchestre Philharmonique De Radio FranceThe Rachmaninov Piano Trio + +5064396Angelika Grossmann-KippenbergClassical violinist Needs VoteDeutsche Kammerphilharmonie Bremen + +5064400Anja MantheyGerman classical violistNeeds VoteDeutsche Kammerphilharmonie Bremen + +5065094Streichquintett Der Bamberger SymphonikerNeeds VoteBamberger Symphoniker + +5066708Rick James (8)Hard House DJ & producer from Preston, UK.Needs Votehttps://www.facebook.com/rickjameshard/https://soundcloud.com/rickjameshardhouseRickJackhammer Siesta + +5067197Edward Kay (4)Classical oboistNeeds VoteBournemouth Symphony Orchestra + +5067527Joan Ambrosio DalzaJoan Ambrosio Dalza (fl. 1508) was an Italian lutenist and composer of the Renaissance era. + +His surviving works comprise the fourth volume of Ottaviano Petrucci's influential series of lute music publications, "Intabolatura de lauto libro quarto" (Venice, 1508). Dalza is referred to as "milanese" in the preface, so it must be assumed he was either born in Milan, or worked there, or both. Needs Votehttps://en.wikipedia.org/wiki/Joan_Ambrosio_DalzaA. DalzaAmbrosio DalzaD'AlzaDalzaDalza JoanambrosioGio. Ambrosio DalzaGiovanni AmbrogioGiovanni Ambrogio DalzaGiovanni Ambrosio DalzaGiovanni da NolaJ. A. DalzaJ. D'AlzaJ. DalzaJ. Dalza, 1508J.-B. DalzaJ.A. DalzaJoan Ambrosia DalzaJoan Ambrosio Dalza MilaneseJoan Ambroso DalzaJoan Ambrozio DalzaJoan Antonio DalzaJoanambrosia DalzaJoanambrosia Dalza, 1508Joanambrosio DaizaJoanambrosio DalzaДжанамброзио Дальца + +5068257Lucy CurnowBritish violin player.Needs VoteBBC Symphony Orchestra + +5068717Vanessa SzigetiFrench classical violinist.Needs VoteSzigetiTonhalle-Orchester Zürich + +5069783Charlie Thomas (4)1920s jazz cornetist. Worked with Clarence Williams.Needs Vote"Big Charlie" Thomas"Big" Thomas... ThomasBig Charlie ThomasThomasClarence Williams' Blue Five + +5069991Robert SchneppsAustrian classical hornistNeeds VoteBruckner Orchestra Linz + +5072730Bruno SteinschadenBruno Steinschaden (born 1936) is an Austrian violinist and professor emeritus of the [l1554951]. He's the father of [a6572205], [a7791537] and [a7791539].Needs VoteCamerata Academica SalzburgDas Mozarteum Orchester Salzburg + +5074231Juan Manuel González (2)Juan Manuel González HernándezVenezuelan born violinist and conductor, lived in London, UK in the early 2000s, then in Berlin, Germany, since 2005 -- also known under his full name Juan Manuel González Hernández or just as Juan GonzalezNeeds Votehttps://www.analitica.com/entretenimiento/cultura/juan-manuel-gonzalez-el-violinista-venezolano-que-cosecha-exito-en-europa/Juan GonzalezJuan GonzálezJuan Manuel Gonzalez HernandezBBC Symphony OrchestraOrchester Der Deutschen Oper BerlinBritten SinfoniaBBC Concert OrchestraBBC National Orchestra Of WalesLondon Contemporary OrchestraKonzerthausorchester BerlinDeutsches Kammerorchester BerlinBolivar SoloistsOrquesta Filarmónica de JaliscoOrquesta Sinfónica De Venezuela + +5076129Männerchor Der Berliner SingakademieNeeds VoteMale Chorus Of The Berliner SingakademieBerliner Singakademie + +5076455Sol RudenClassical violin player.Needs VoteThe Philadelphia Orchestra + +5076456Anton TorelloDouble bass player.Needs VoteT. TorelloThe Philadelphia Orchestra + +5076457Samuel RoensViola player, died 1954.Needs VoteThe Philadelphia OrchestraBoston Symphony OrchestraNew York Symphony Orchestra + +5077106Pierre MoraguèsClassical hornistNeeds VotePierre MoraguesOrchestre National De L'Opéra De ParisQuintette Moraguès + +5077108Raphaël MasFrench classical tenor / countertenor vocalist & percussionistNeeds VoteChoeur de Chambre de NamurMaîtrise De Notre-Dame De ParisMetamorphosesCoro "Color Temporis"PygmalionEnsemble DesmarestLes MeslangesEnsemble Consonance + +5077109Christophe GautierClassical bass / baritone vocalistNeeds Votehttps://www.facebook.com/christophe.gautier.505Les Arts FlorissantsMetamorphosesChœur Marguerite LouiseThe Viadana Collective + +5077238Trine Yang MøllerDanish classical violinist.Needs VoteEnsemble 2000DR SymfoniOrkestret + +5077660Scott Moore (13)Classical bass trombonist and professor of music.Needs VoteCincinnati Symphony OrchestraMinnesota OrchestraDayton Philharmonic Orchestra + +5077663Joseph SomogyiClassical violist.Needs VoteJoseph SornogyiCincinnati Symphony OrchestraBaltimore Symphony OrchestraCincinnati Pops Orchestra + +5077672Kristin FrankenfeldClassical violinist.Needs VoteKris FrankenfeldRochester Philharmonic OrchestraIndianapolis Symphony OrchestraCincinnati Chamber Orchestra + +5079472Clarence Williams Jazz BandNeeds Major ChangesClarence Williams JazzbandClarence Williams' Jazz BandEddie LangClarence WilliamsKing OliverOmer Simeon + +5080843Gianluca MangiarottiClassical double bassist.Needs VoteGian Luca MangiarottiEuropa Galante + +5083106Christoph Carl (3)Classical BassoonistNeeds VoteBachcollegium StuttgartWürttembergisches KammerorchesterDie Schweizer Bläser-Solisten + +5083892Robert Fleming (5)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1982-1990).Needs VoteLondon Symphony Orchestra + +5084877Franz MassonClassical trombonistNeeds VoteOrchestre Philharmonique De Radio France + +5086300Dominic TylerBritish freelance classical bassoonist. Born in Bedford, Bedfordshire, England, UK. +He studied at the [l527847] (2008-2012). Freelance orchestral engagements include the [a=London Symphony Orchestra], [a=The English National Opera Orchestra], [a=The John Wilson Orchestra], the [a=City Of Birmingham Symphony Orchestra], the [a=City Of London Sinfonia], and the [a=London Philharmonic Orchestra]. Member of the [b]Marylebone Wind Quintet[/b].Needs Votehttps://www.facebook.com/domtylermusichttps://open.spotify.com/artist/21vysi8tSiWJUAMMAiEcvHhttps://music.apple.com/mv/artist/dom-tyler/777241192https://maslink.co.uk/client-directory?client=TYLED1&instrument=BASSO2https://marylebonequintet.wordpress.com/members/Dom TylerLondon Symphony OrchestraRoyal Academy Of Music Manson EnsembleAntiphon (4) + +5086307Anna CurzonClassical violinistNeeds VoteThe English ConcertRoyal Academy Of Music Manson EnsembleThe MozartistsThe Bach Players + +5086652John AbendsternClassical percussionistCorrectHallé Orchestra + +5086712Radboud OomensClassical violinistNeeds Votehttp://www.radboudoomens.deRatbold OomensBachcollegium StuttgartWürttembergisches Kammerorchester + +5087274Ludwig Ebner (2)Classical trumpeterNeeds VoteL. EbnerSymphonie-Orchester Des Bayerischen RundfunksBachcollegium Stuttgart + +5088569Howard Nelson (2)Violin playerNeeds VoteClarence Williams' Blue FiveClarence Williams' Washboard Four + +5088740Rudolf LindnerClassical violinistNeeds VoteWiener Symphoniker + +5089030Rachel Thompson (2)Irish soprano singerNeeds Votehttps://www.anuna.ie/rachel-thompsonAnúnaCappella Amsterdam + +5090435Chuck LawsonAmerican standup bassistCorrecthttp://www.juneteenthjazz.com/lawson.htmlHarry James And His Orchestra + +5090504Cyrille GrenotClassical horn player.Needs VoteLe Concert SpirituelLe Concert D'AstréeEnsemble PhilidorVertige Brass Quintet + +5090542Elisabeth KisselClassical bassoonistNeeds VoteOrchestre National De France + +5091499Yvonne BarclayScottish soprano vocalist.Needs Votehttp://www.roh.org.uk/people/yvonne-barclayhttp://www.percheno.co.uk/singers/yvonne-barclay/Chorus Of The Royal Opera House, Covent Garden + +5092466Hayato NakaClassical violinist.Needs VoteBergen Filharmoniske OrkesterHansakvartetten + +5093490Charles Travis (2)Charles "Chuck" TravisAmerican tenor saxophonist and bandleader. +Born c.1921 in Berkeley, California and grew up in Palo Alto. +Died March 18, 2005 age of 84 in Palo Alto, California, USA. +Also credited as "Chuck Travis" including with his orchestra. +He began playing saxophone at age 15 and led his own band in high school. After World War II, Travis played with Jimmy Dorsey, Tommy Dorsey, Benny Goodman and Charlie Barnet. Travis then began his own group in the Bay Area in the late 1940s. +He played with some of the top big bands and was a stalwart on the San Francisco Bay Area jazz scene for 50 years. +He was co-owner of The Trio Room, Willow Glen, San Jose for a time in the 1960's and had the John Coppola/Chuck Travis Big Band in San Francisco.Needs Votehttps://www.sfgate.com/bayarea/article/Chuck-Travis-tenor-sax-stalwart-2717470.phphttps://adpprod2.library.ucsb.edu/index.php/mastertalent/detail/347510/Travis_ChuckCharles 'Chuck' TravisChuck TravisJimmy Dorsey And His Orchestra + +5094376Teddy Edwards QuintetNeeds Major Changes + +5095685Frédéric AlbouFrench classical Bass & Baritone VocalistNeeds VoteLe Concert SpirituelLes Musiciens Du Louvre + +5096809Emilian WerbowskiPolish oboist, member of [a910618]. Also collaborated with music ensemble [a4470322].Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +5096810Zygmunt HalamskiNeeds Votehttps://waltornia.pl/biografie/128-zygmunt-halamskiPolish National Radio Symphony Orchestra + +5097125Sergei AkopovСергей Сергеевич Акопов1943 г.р. Учился в СМШ при ЛГК в классе П. А Вейнблата. Окончил консерваторию в 1967 году и аспирантуру в 1971 году по классу М. М. Курбатова. Артист Симфонического оркестра Ленинградской филармонии, концертмейстер группы контрабасов (1969-1974). Артист ЗКР Академического симфонического оркестра Ленинградской филармонии (1974-1987), второй концертмейстер группы контрабасов с 1986 года. Артист Камерного ансамбля Московской филармонии с 1987 года. В то же время занял место в создаваемом камерном оркестре «Солисты Москвы» (впоследствии лауреата премии Grammy Awards), c которым выступал в престижнейших залах мира таких, как Карнеги Холл, Мюзик Ферайн в Вене, Альберт Холл в Лондоне и многих других. С 1992 по 1995 годы занимал пост солиста контрабасиста в симфоническом оркестре г. Бирмингем (Англия), а в 1995 занял такой же в симфоническом оркестре г. Бордо (Франция).Needs VoteSergeï AkopovСергей АкоповLeningrad Philharmonic OrchestraCity Of Birmingham Symphony OrchestraOrchestre National Bordeaux AquitaineLeningrad Academic Philharmonic Symphony OrchestraMoscow Soloists + +5098623Herre HalbertsmaClassical violinistNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +5099107David Burt (3)TrumpetNeeds VoteGulbenkian OrchestraMinnesota Contemporary Ensemble + +5099623Anja van Der MatenClassical Dutch oboist, born 1969 in RidderkerkNeeds VoteAnja v/d MatenRotterdams Philharmonisch OrkestPhilharmonic Orchestra Of Europe + +5100211Guy EshedClassical flautist.Needs VoteIsrael Philharmonic Orchestra + +5100499George BalfourTreble vocalist.Needs VoteSt. John's College Choir + +5100500Joel BranstonTreble vocalist.Needs VoteSt. John's College Choir + +5100501Augustus Perkins RayClassical bass vocalistNeeds VoteSt. John's College Choir + +5100502Xavier HetheringtonClassical tenor vocalist.Needs Votehttps://joinencore.com/Xavier-HetheringtonSt. John's College Choir + +5101016Aliye CornishClassical string instrumentalistNeeds VoteThe English Baroque SoloistsDunedin ConsortArcangelo + +5101017Leo Duarte (2)Classical wood-wind instrumentalist & liner notes author.Needs Votehttps://www.leoduarte.co.uk/The Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentDunedin ConsortLa Nuova MusicaIrish Baroque OrchestraThe MozartistsThe Harmonious Society Of Tickle-Fiddle GentlemenThe Illyria ConsortSolomon's Knot + +5101037Carrie Henneman ShawCarrie Henneman Shaw is an American soprano vocalist, a McKnight Performing Musician Fellow, a member of Chicago-based Ensemble Dal Niente and Quince Contemporary Vocal Ensemble, as well as a regular contributor to a few contemporary music projects and ensembles in St. Paul and Minneapolis.Needs Votehttp://www.shawsoprano.comhttp://www.dalniente.com/carrie-henneman-shawCarrie ShawBach Society Of MinnesotaDal NienteQuince EnsembleKwan / Pauly / Shaw Trio + +5101617Al King (7)Tenor saxophonistNeeds VoteKingGeorge Williams And His OrchestraAl King And His KingsmenAl King And His Royal CrownsAl King And His Band + +5101633Sijie ChenClassical violinistNeeds VoteThe Academy Of Ancient MusicLondon Mozart PlayersDunedin ConsortEnsemble MarsyasUnited Strings Of Europe + +5101969Korneel LecompteClassical double bassistNeeds VoteKorneel Le CompteOrchestre Du Théâtre Royal De La MonnaieIl Gardellino + +5103945Motoki Kinoshita (2)Classical tenor vocalist, based in Berlin.Needs VoteChor Der Staatsoper Berlin + +5105162Gertrude RossbacherGertrude Rossbacher (born 22 May 1961) is an Austrian violist. Principal violist of the [a1208567] since 2004.Needs VoteBerliner PhilharmonikerEnsemble "die reihe", WienWiener KammerorchesterTonkünstler Orchestra + +5105778Anne-Sophie CorrionFrench classical hornist.Needs VoteOrchestre De Paris + +5105779Maud GastinelClassical violistNeeds VoteMaude GastinelOrchestre Des Concerts LamoureuxOrchestre De MassyOrchestre Colonne + +5107002Dorine SchadeDutch flute playerNeeds VoteNieuw Sinfonietta AmsterdamResidentie Orkest + +5107003Remko KraamwinkelDutch horn player who changed career path to become a business advisor.Needs Votehttps://www.linkedin.com/in/remko-kraamwinkel-4602b22bRemco KraamwinkelRemco KraamwinkleNieuw Sinfonietta Amsterdam + +5107273Eric HerzErich Herz[b]Eric Herz[/b] (*10 December 1919 in Cologne ([i]Köln[/i]), German Empire; † 25 May 2002 in Barton, Vermont, USA) was a distinguished American harpsichord maker and flutist, former [a=Boston Early Music Festival] president, and one of the leaders of the "Boston School of harpsichord building," alongside [a=Frank Hubbard] (1920—1976) and [a=William Dowd] (1922—2008). Herz made almost 500 instruments between 1955 and 1996, equally prized for their acoustics and impeccable aesthetics. He was a prolific mentor and had numerous apprentices, including [url=https://discogs.com/artist/5459447]Thomas[/url] and [url=https://discogs.com/artist/3837346]Barbara Wolf[/url], [a=Hendrik Broekman], [url=https://discogs.com/artist/3856141]Robert A. Murphy[/url], [a5640409], and [a=Allan Winkler]. + +Born and raised in a Jewish family, Eric served at one of the so-called "training centers" for Jews, predecessors of full-blown concentration camps established across the country as [url=https://discogs.com/artist/223385]Hilter[/url] rapidly accumulated power and political influence. His older brother and sister, Walter Herz (1910—†) and Ruth Schoenfeld, née Herz (1912—2005), immigrated to Israel several years earlier. In 1939, Eric Herz followed his siblings, narrowly escaping Holocaust extermination. (Their parents, Josef (1879—19[i]42?[/i]) and Rebecka Herz, née Bucki (1886—1942), unfortunately, couldn't flee Germany on time, deported to the Litzmannstadt ghetto in Łódź, Poland, where they both died.) Herz studied flute at the [url=https://discogs.com/label/2664823]Jerusalem Conservatory[/url] while apprenticing as a cabinet-maker. During the Second World War, Eric joined the British Army in Egypt, where he played in a military band and self-taught as a piano tuner. + +Between 1945 and 1951, Eric Herz played flute and piccolo in the [a=Israel Philharmonic Orchestra]. In 1953, he relocated to the United States and joined the [url=https://discogs.com/label/95720]Baldwin Piano Company[/url] in Boston; Herz also served as [a=Claudio Arrau]'s piano tuner. Eric soon befriended two local Bostonian harpsichord-makers, [a=Frank Hubbard] and [a=William Dowd], and began making cabinets at their workshop on Tremont Street. In 1955, Herz launched his private workshop, assembling the first instruments in the living room and a garage at his home in Harvard. Eric followed Hubbard and Dowd's approach, rejecting the predominant trend for modern, "revival"-style harpsichords (with enhanced 16' disposition and contemporary features, like pedal controls) and instead focused on historically informed building techniques and methods, making faithful replicas of the XVII-XVIII-century antique instruments. The new venture soon expanded, and Eric established a proper workshop on Howard Street in Cambridge, Massachusetts; Herz retired in 1996 at seventy-seven.Needs Votehttps://collections.nmc.ca/people/400/eric-herzhttps://www.ushmm.org/online/hsv/person_view.php?PersonId=3570992https://www.findagrave.com/memorial/162936938/eric-herzhttps://pendragon.bsquaresite.com/product/the-boston-school-of-harpsichord-building/https://groups.google.com/g/bit.listserv.mla-l/c/sVuhn2KgFJkhttps://www.thediapason.com/content/nunc-dimittis-151Israel Philharmonic Orchestra + +5107628Jenny AhnViolinist.Needs Votehttps://www.bso.org/profiles/jenny-ahnJung-Eun AhnBoston Symphony Orchestra + +5108444Wilhelm KrauseWilli Krause (18 August 1914 - 16 March 2007) was an Austrian clarinetist.Needs VoteWilli KrauseOrchester Der Wiener StaatsoperWiener PhilharmonikerPhilharmonia Schrammeln WienTonkünstler OrchestraDie Spilar-Schrammeln + +5108890Antoine BedewiClassical timpanist & percussionist, and Professor of Timpani. +He completed his postgraduate studies at the [l527847] in 2005. In August 2006, he joined the [a=Colin Currie Group]. He served as the Principal Timpanist at [l1910952] (06/2007-01/2008). Former Co-Principal Timpanist of the [a=London Symphony Orchestra] (06/2012-08/2017). Principal Timpani of the [a=BBC Symphony Orchestra] since September 2017. Professor of Timpani at [l305416] (01/2013-07/2016) and the Royal Academy of Music since September 2014.Needs Votehttps://www.linkedin.com/in/antoine-bedewi-1ba78b218/?originalSubdomain=ukhttps://www.australianworldorchestra.com.au/660-antoine-tony-bedewi/https://sound-scotland.co.uk/site/2010/artists/BedewiTony.htmhttps://www.ram.ac.uk/people/antoine-bedewihttps://www.royalmusicacademy.ru/study/departments/timpani-and-percussion#antoine-bedewi-1https://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/1234-tony-bedewi/https://www.hyperion-records.co.uk/a.asp?a=A6519https://vgmdb.net/artist/22966Tony BedewiLondon Symphony OrchestraBBC Symphony OrchestraBritten SinfoniaLSO Percussion EnsembleAustralian World OrchestraColin Currie Group + +5108891Naoko KeatleyNaoko Keatly née MiyamotoAustralian classical violinist. +She joined the [a=London Symphony Orchestra] in 2014, having been in the [a=Royal Philharmonic Orchestra] for five years before that, and also has a busy freelance career in London. Member of the [b]Australia House Ensemble[/b] +Married to [a=Niall Keatley].Needs Votehttps://www.facebook.com/naoko.keatleyhttps://www.australianworldorchestra.com.au/1051-naoko-keatley-miyamoto/https://australiahouse-ensemble.com/ahe-biographies/https://lso.co.uk/orchestra/players/strings.htmlhttp://www.soundslikesydney.com.au/shows/sydney-youth-orchestras-ambition-and-virtuosity/23467.htmlhttps://www.imdb.com/name/nm8488599/Naoko MiyamotoLondon Symphony OrchestraRoyal Philharmonic OrchestraSydney Youth OrchestraAustralian World Orchestra + +5108892Lander EchevarriaLander EtxebarríaSpanish classical violinist & violist. Born in Portugalete, Bilbao, Spain. +He started playing when he was nine years old and became a member of the [a=European Union Youth Orchestra] and [b]National Youth Orchestra of Spain[/b]. He attended the [l290263] (1998-2000). Member of the [a=London Symphony Orchestra] since 2008.Needs Votehttps://www.facebook.com/lander.etxebarria/https://www.instagram.com/lander_etxebarria/?hl=enhttps://www.feenotes.com/database/artists/echevarria-lander/https://www.baravmusic.com/cms/?p=773London Symphony OrchestraEuropean Union Youth Orchestra + +5108893Robert O'NeillBass trombone playerNeeds VoteBBC Symphony Orchestra + +5108894Peter Moore (16)British classical trombonist, and Professor of Trombone, from Stalybridge, Greater Manchester, England. Born 1 January 1996 in Belfast, Northern Ireland, UK. +He was the winner of BBC Young Musician of the Year in May 2008, when he was only twelve years old. On 29 May 2014, it was announced that the [a=London Symphony Orchestra] had appointed Moore its Principal Trombone. Professor of Trombone at the [l527847] (?-?) and [l305416] (Autumn 2019-?).Needs Votehttps://www.facebook.com/pete.moore.9/https://twitter.com/pete_moore_?lang=enhttps://www.instagram.com/peter.moore_/https://en.wikipedia.org/wiki/Peter_Moore_(trombonist)https://lso.co.uk/orchestra/players/brass.html#Tromboneshttps://www.gsmd.ac.uk/staff/peter-moorehttps://www.britishtrombonesociety.org/news/guildhall-school-appoints-peter-moore-as-professor-of-trombone/https://www.edwards-instruments.com/artists/peter-moore/https://rubiconclassics.com/artist/peter-moore/London Symphony Orchestra + +5108895Alexander EdmundsonBritish hornist & pianist, and Professor of Horn. Born in Lancashire, England. +He studied at [l305416] until 2014, before continuing as a Master of Music scholar at the [l290263]. Co-Principal Horn of the [a=London Symphony Orchestra] since 6 January 2015.Needs Votehttps://www.facebook.com/alexedmundsonhttps://www.musicteachers.co.uk/teacher/a76ab015ee9db4e4484fhttps://lso.co.uk/orchestra/players/brass.html#Hornshttps://www.finchleysymphony.org/artists/Alexander%20Edmundsonhttps://www.bbc.co.uk/youngmusician/sites/contestants/pages/alexander_edmundson.shtmlAlex EdmundsonLondon Symphony OrchestraRoyal Philharmonic OrchestraYoung Musicians Symphony Orchestra + +5108899Clare DuckworthClassical violinist, and teacher. +She studied at the [l527847]. She was Leader of the [b]National Children's Orchestra[/b], [a=National Youth Orchestra Of Great Britain] (member for five years, Leader 1997-1998), and [a=European Union Youth Orchestra] (2000-2003, Leader for two years). She then held positions with the [a=Orchestra Of The Royal Opera House, Covent Garden], the [a=London Philharmonic Orchestra] (Co-Principal Second Violin), and the [a=Royal Philharmonic Orchestra] (Principal First Violin) before joining the [a=London Symphony Orchestra] as Sub-Principal First Violin in 2014. She also regularly performs as part of [a=The John Wilson Orchestra].Needs Votehttps://lso.co.uk/orchestra/players/strings.htmlhttps://www.euyo.eu/memberProfile?id=4411https://www.lancashiretelegraph.co.uk/news/6191682.clare-hits-high-note-orchestra/https://www.ingeniumacademy.com/clare-duckworthClaire DuckworthLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraThe John Wilson OrchestraThe Chamber Orchestra Of London + +5108900Miya VaisanenMiya VäisänenBiritish classical violinist. Born in London, England, UK. +Member of the Second Violins section of the [a=London Symphony Orchestra] since 2005.Needs Votehttps://lso.co.uk/orchestra/players/strings.html/https://www.imdb.com/name/nm8488596/Miya VäisänenLondon Symphony Orchestra + +5110440Raimo Pesonen (4)Needs Major Changes + +5110674Oskar MoserClassical double bassist and violone player.Needs VoteWiener SymphonikerDie Instrumentisten Wien + +5110954Jonathan AasgaardNorwegian cellistNeeds VoteRoyal Liverpool Philharmonic OrchestraSinfonia Of London Chamber EnsemblePixels Ensemble + +5111645Krystyna SakowskaClassical clarinetistNeeds VoteOrkiestra Symfoniczna Filharmonii NarodowejWarsaw Modern Duo + +5112394Ausiàs Garrigós MorantClassical bass clarinet player.Needs VoteAusias GarrigosAusiàs Garriogós-MorantRoyal Liverpool Philharmonic OrchestraYoung Musicians Symphony OrchestraRiot Ensemble + +5113636Gerrie RodenhuisDutch violin playerNeeds VoteNieuw Sinfonietta AmsterdamNederlands Radio Symfonie OrkestRadio Filharmonisch OrkestRadio Kamer Filharmonie + +5115044Johannes Wagner (3)Oboe playerNeeds VoteJohann WagnerGewandhausorchester Leipzig + +5115681Doga SacilicDoğa SaçılıkDoğa Saçılık is a Turkish oboist.Needs VoteGustav Mahler Jugendorchesterhr-Sinfonieorchester + +5117148Elmar BilligElmar Billig (born 1948) is a German violinist. He was a member of the [a604396] from 1970 to 2011.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksConvivium Musicum Of Munich + +5118143Herbert FrauhaufHerbert FrühaufHerbert Frühauf (2 September 1939 - 25 September 2017) was a classical violinist.Needs VoteHerbert FrühaufOrchester Der Wiener StaatsoperWiener Philharmoniker + +5118752Slay & CreweFrank C. Slay Jr. & Robert Stanley CreweSongwriters team with [a698563] and [a142834]. Their partnership's find success with [r4688011] and "Tallahassee Lassie" +The duo wrote and produced few records released with individual credits either asby "Slay & Crewe" or "Slay and Crewe".Needs Votehttps://en.wikipedia.org/wiki/Frank_SlayA Slay And Crewe ProductionB. Crew, F. SlayB. Crew-S. SlayB. Crewe - S. SlayB. Crewe And F. C. Slay Jr.B. Crewe, F. SlayB. Crewe-Slay, Jr.Bob Crew - Frank C Slay JrBob Crewe & Frank SlayBob Crewe / Frank SlayBob Crewe And Frank C Slay Jr.Bob Crewe/Frank SlayC, Slay Jnr. – B. CreweCrewe & SlayCrewe / SlayCrewe, SlayCrewe, Slay Jr.Crewe-SlayCrewe-Slay Jr.Crewe/SlayF. C. Slay Jr.F. C. Slay/B. CreweF. Slay - B. CreweF. Slay - R. CreweF. Slay / B. CreweF. Slay Jr - Bob CreweF. Solay Jr./B. CreweFlay - CreweFrank C. Slay Jr. & Bob CreweFrank C. Slay Jr. - Bob CreweFrank C. Slay Jr. / Bob CreweFrank C. Slay Jr. Und Bob CreweFrank C. Slay Jr., Bob CreweFrank C. Slay, Jr. - Bob CreweFrank C. Slay, Jr.-Bob CreweFrank C. Slay/Bob CreweFrank C. jun. Slay / Bob CreweFrank Slay & Bob CreweFrank Slay - Bob CreweFrank Slay Jnr.-Bob CreweFrank Slay Jr.-Bob CreweFrank Slay, Bob CreweFrank Slay, Jr. & Bob CreweFrank Slay, Jr./Bob CreweFrank Slay-Bob CreweFrank Slay/Bob CreweSalay Jr. CreweSlam Jr. / CreweSlam Jr.-CreweSlay - CrewSlay - CreweSlay / CreweSlay ; CreweSlay CreweSlay CrexeSlay Jnr. - CreweSlay Jr. - B. CreweSlay Jr. - CreweSlay Jr. / CreweSlay and CreweSlay, CreweSlay,F/Crewe,BSlay-CrewSlay-CreweSlay/B. CreweSlay/CrewSlay/CreweSlay; CreweSlug/CrewBob CreweFrank Slay Jnr. + +5123812Rachel Smith (11)ViolinistNeeds VoteScottish Chamber Orchestra + +5123815Laura CominiClassical violinistNeeds VoteScottish Chamber Orchestra + +5125766Louis BermanLouis Berman ( 1908 – 9 September 1994) was an American violinist.Needs VoteThe Cleveland OrchestraThe Curtis String Quartet + +5127585Jonas KrauseGerman Timpani playerNeeds VoteDeutsche Kammerphilharmonie BremenEnsemble GalinaRudens Turku Festival Ensemble + +5127736Justin Doyle (3)Justin DoyleBritish conductor, born 1975 in Lancaster. Chief conductor of the [a646860] since 2017/18.Needs VoteWestminster Cathedral Choir + +5130351Geraldine EversAustralian trombonist.Needs VoteSydney Symphony OrchestraOrchestra VictoriaSydney Youth OrchestraState Orchestra Of VictoriaThe Elizabethan Trust Melbourne OrchestraHornsby Concert Band + +5130355Victor I.G. GrieveEnglish Australian music director, educator and academic.Needs Votehttp://www.oocities.org/goldenkangaroos/victor/VictorGrieve.htmlThe Gordon HighlandersSydney Symphony OrchestraQueensland Symphony OrchestraHornsby Concert Band + +5131059Gareth ZehngutClassical violistNeeds VoteThe Cleveland OrchestraMinnesota OrchestraSan Diego Symphony + +5131586Sophie KlußmannGerman classical soprano vocalist Needs Votehttp://www.sophieklussmann.deSophie KlussmannRundfunkchor Berlin + +5132023James Casey (6)Classical trombone player. +Principal trombonist at the [a=BBC Concert Orchestra].Needs VoteRoyal Philharmonic OrchestraPhilharmonia OrchestraThe London Gabrieli Brass EnsembleBBC Concert Orchestra + +5132024Duncan SwindellsClassical clarinet and bass clarinet player.Needs VoteBBC Symphony OrchestraRoyal Scottish National Orchestra + +5133336Herbert FaltynekHerbert Faltynek is an Austrian classical clarinetist.Needs VoteConcentus Musicus WienWiener Nonett + +5135407Remko WildschutNeeds VoteAmsterdam Bach Soloists + +5135618Heinz SaurerSwiss classical trumpeter.Needs VoteTonhalle-Orchester Zürich + +5135950Gerhard IbererGerhard Iberer (born 1958) is an Austrian classical cellist.Needs VoteIbererOrchester Der Wiener StaatsoperWiener PhilharmonikerMusikvereinsquartett + +5136964Aleta BraxtonAleta Braxton (b. in Los Angeles, California, USA) is an American singer (mezzo-soprano/alto).Needs VoteAleta Braxton-O'BrienThe Roger Wagner ChoraleLos Angeles Master ChoraleHollywood Film ChoraleLos Angeles Opera Chorus + +5137615Hideo KomuroNeeds Major Changes + +5138221Christoph BielefeldGerman classical harpist, born in MünichNeeds VoteOrchester der Bayreuther FestspieleBruckner Orchestra Linz + +5138226Antonia SchreiberGerman classical harpistNeeds VoteAntonia Schulze-SchreiberOrchester Der Wiener StaatsoperWiener PhilharmonikerGürzenich-Orchester Kölner PhilharmonikerGustav Mahler JugendorchesterBundesjugendorchester + +5138616Giancarlo TrimboliItalian cello player.Needs Votehttp://www.triomalipiero.it/index.htmlGiancarlo TriboliOrchestra Di Padova E Del Veneto + +5141309Stephan SchottstädtClassical hornistNeeds Votehttp://www.germanhornsound.de/stephanJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleWürttembergische Philharmonie ReutlingenBundesjugendorchesterLandesjugendorchester Nordrhein-WestfalenNiedersächsisches Staatsorchester HannoverGerman HornsoundWeimarer Bläserquintett + +5141311Christoph EßGerman classical hornist, born in 1984.Needs Votehttp://www.germanhornsound.de/christophChristoph EssSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerBundesjugendorchesterGerman HornsoundTrio Tricolor + +5141592Triola-PelimannitNeeds Major ChangesTriola Pelimannit + +5142020Jenny SjöbergSwedish classical oboistNeeds VoteAalborg Symfoniorkester + +5143414Dmitri GolovanovClassical violist.Needs VoteDimitri GolovanovDmitri GolabanovDmitrij GolovanovDet Kongelige KapelString SwingDR SymfoniOrkestretThe Danish Schubert Trio + +5143895Fabien ThouandFrench oboe player. Actually (2016) he is the principal oboe at the Teatro alla Scala.Needs Votehttp://www.fabienthouand.comOrchestra dell'Accademia Nazionale di Santa CeciliaFilarmonica Della ScalaI Solisti Della Filarmonica Della Scala + +5144155Tanja van der KooijClassical oboist, born in 1974 in Bilthoven, Netherlands.Needs VoteTanja van der KooyEuropean Union Youth OrchestraNationaal Jeugd OrkestLimburgs Symfonie OrkestGustav Mahler JugendorchesterPhilharmonie Zuidnederland + +5144610Philip FarkasPhilip Farkas (March 5, 1914 – December 21, 1992) was the principal French horn player in the Chicago Symphony Orchestra for many years; he left in 1960 to join the music faculty at Indiana University Bloomington.Needs VoteFarkasPhillip FarkasChicago Symphony OrchestraChicago Symphony Woodwind QuintetThe American Woodwind Quintet + +5145256Melissa AlderClassical soprano vocalist.Needs VoteMelissaChorus Of The Royal Opera House, Covent Garden + +5145567Sebastian KrolGerman trombonist.Needs VoteSebastian "Sese" KrolOrchester Der Deutschen Oper BerlinBigBand Deutsche Oper Berlin + +5147490Aurélien DelageFrench harpsichordist, organist and flutist, born in 1979 in Touvre.Needs VoteLe Concert Spirituel + +5148007ZondervanLeon ClarkeHard Dance / Tech Trance DJ & producer from Carlow, Ireland. +Contact: danzondervan@yahoo.comNeeds Votehttp://www.facebook.com/zondervanIrelandhttp://soundcloud.com/dan-zondervanLeon Clarke + +5148558E. van den OuwelandNeeds VoteE van den OuwelandErwin van den OuwelandLegacy (42)Rekt (5) + +5148559N. VereijkenNick VereijkenElectronic dance music DJ / producer from the Netherlands +Style: HardstyleCorrecthttps://www.facebook.com/nick.vereijkenN VereijkenNick VereijkenLegacy (42) + +5150130Bonita BoydClassical flutist and Professor of Flute at Eastman School of Music. + +She has served as Principal Flutist of the Rochester Philharmonic Orchestra (1971-1984), Chautauqua Symphony (1971-1977), Filarmonica de las Americas (Mexico City), and the Aspen Festival Symphony Orchestra (1998-2015).Needs Votehttp://bonitaboyd.com/https://www.esm.rochester.edu/faculty/boyd_bonita/Bonita FloydBonnie BoydRochester Philharmonic OrchestraOrquesta Filarmonica de Las AmericasEastman Virtuosi + +5150921Kazimierz PiwkowskiBorn June 15, 1925 in [url=https://pl.m.wikipedia.org/wiki/%C5%BBnin]Żnin[/url], died April 3, 2012 in [url=https://pl.m.wikipedia.org/wiki/Lubeka]Lübeck[/url]. Polish bassoonist, specialist in the construction and playing of historical instruments. In 1953 he graduated from the [url=https://pl.wikipedia.org/wiki/Uniwersytet_Muzyczny_Fryderyka_Chopina]PWSM w Warszawie[/url] in the bassoon class. In 1964 he founded an early music ensemble [a4470322].Needs Votehttps://gtmusicalinstruments.com/pl/kazimierz-piwkowski-1925-2012-pro-memoria/K. PiwkowskiKazimierz PikowskiOrkiestra Symfoniczna Filharmonii NarodowejFistulatores et Tubicinatores VarsoviensesWarszawskie Trio Stroikowe + +5150993Gregory AhssIsraeli classical violinist, born in Moscow.Needs VoteAhssCamerata Academica SalzburgLuzerner SinfonieorchesterTal Trio + +5151318Cécile Garcia-MoellerClassical violinist.Needs VoteCécile GarciaLes Folies FrançoisesOpera Fuoco + +5152226Sachiya IsomuraJapanese classical cellistNeeds VoteMinnesota Orchestra + +5153479Diederik RookerClassical tenor vocalistNeeds VoteDiederick RookerCappella AmsterdamLa Capella Reial De Catalunya + +5153481Magdalena PodkoscielnaPolish classical soprano vocalistNeeds Votehttp://www.podkoscielna.deM. PodkoscielnaMagdalena PodkościelnaPodkoscielnaCollegium VocaleKammerchor StuttgartWeser-RenaissanceLa Capella DucaleEuropäisches Hanse-Ensemble + +5154475Ingrid SjönnemoClassical violinist.Needs VoteGöteborgs SymfonikerGothenburg Quartet + +5154477Elin AnderbergElin Anderberg StjärnaSwedish classical violinistNeeds VoteElin StjärnaGöteborgs SymfonikerGothenburg QuartetSommarkvintetten + +5154949Aleksander PokrywkaPolish classical hornist.Needs VoteBergen Filharmoniske OrkesterThe Norwegian Wind Ensemble + +5155250Anne MelseFormer classical violist, since a garden designer.Needs VoteRotterdams Philharmonisch Orkest + +5155255Sabine van der HeydenClassical alto/mezzo-soprano vocalist, born in Nijmegen, Netherlands.Needs VoteSabine Van Der HeijdenSabine van der HeijdenCappella AmsterdamEnsemble Antequera + +5155256Laurens WoudenbergDutch classical horn player, born in 1982.Needs VoteConcertgebouworkestHet Gelders Orkest + +5156631Fionn BockemühlClassical cellist, born in 1972 in Bochum, Germany.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleSWR Symphonieorchester + +5156633Xavier PignatXavier Pignat (born 1979) is a Swiss cellist. He's a member of the [a5794038] since 2006.Needs VoteOrchestra La ScintillaPhilharmonia ZürichTonhalle-Orchester ZürichTrio Nota Bene + +5157801Martin BaaiDutch percussionist.Needs Votehttps://www.rotterdamsphilharmonisch.nl/en/musicians/martin-baaiRotterdams Philharmonisch Orkest + +5159709Philippe CanguilhemFrench classical woodwind instrumentalistNeeds VoteLe Concert SpirituelLes Sacqueboutiers De ToulouseEnsemble Labyrinthes + +5159931Lisbeth Binderup-ThordalDanish classical clarinetistNeeds VoteLisbeth Binderup ThordalAalborg Symfoniorkester + +5162932David ToshDulcimer playerNeeds VoteNew London ConsortMartin Best Consort + +5167693Sarah KahaneClassical violistNeeds VoteOrchestre Des Concerts Lamoureux + +5167753Valerie ButtsRecorder playerNeeds VoteThe Early Music Consort Of London + +5168692Elias BenitoElíaz BenitoClassical bass vocalist.Needs Votehttps://www.eliasarranz.com/de/Elías BenitoCollegium VocaleLa Xantria + +5168693Carla BabelegotoItalian mezzo-soprano,, born 28 March 1983.Needs Votehttp://www.nahadi.comCarla Nahadi BabelegotoCollegium Vocale + +5168696Sofia GvirtsMezzosoprano vocalist, born in Leningrad.Needs VoteСофия ГвирцCollegium VocaleDe Nederlandse BachverenigingSmolny Cathedral Chamber Choir + +5168697Asim DelibegovicClassical violinist, born in 1959 in Sarajevo.Needs VoteOrchestre Des Champs ElyséesOrchestre National Du Capitole De Toulouse + +5168698Georg FingerGerman bass-baritone, born in 1985.Needs Votehttp://www.georgfinger.deCollegium VocaleCapella Daleminzia + +5168701Jean-Marc HaddadClassical violinistNeeds VoteJean Marc HaddadPulcinellaOrchestre Des Champs ElyséesLes Talens Lyriques + +5168702Lucia NapoliItalian classical mezzo-soprano / alto vocalist & violinistNeeds Votehttps://lucianapoli.com/Collegium VocaleConcerto Romano + +5168703Philipp KavenGerman bass / baritone vocalist, born 20 June 1984.Needs Votehttp://www.philippkaven.dePhilipp J. KavenCollegium VocaleBeauty Farm + +5168705Sylvie De PauwBelgian soprano vocalist from Eeklo.Needs VoteCollegium Vocale + +5168706Solenne GuilbertFrench classical violinistNeeds VoteLe Concert SpirituelOrchestre Des Champs ElyséesEnsemble Stradivaria + +5169663Wolfgang SeifenWolfgang Seifen (born 1956) is a German organist, composer and music professor.Needs Votehttp://www.wolfgangseifen.de/SeifenRegensburger Domspatzen + +5169848WNEW Saturday Night Swing SessionNeeds Major ChangesSaturday Night Swing (Or Jazz) SessionThe WNEW Saturday Night Swing SessionWNEW 'Saturday Night Swing Session'WNEW-Saturday Night Swing Session + +5171045Rory McCleeryScottish alto / counter-tenor vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/McCleery-Rory.htmThe SixteenThe Monteverdi ChoirContrapunctus (2)The Marian Consort + +5171047Gwendolen MartinBritish classical soprano & alto vocalistNeeds Votehttps://www.gwendolenmartin.com/#Gwen MartinThe Monteverdi ChoirThe Marian ConsortVox LunaMusica Poetica (2) + +5171049Graham NealClassical tenor vocalist.Needs Votehttps://grahamneal.com/https://www.bach-cantatas.com/Bio/Neal-Graham.htmThe Monteverdi ChoirArmonico Consort + +5171052Katie ThomasWelsh sopranoNeeds Votehttp://katiethomasconductor.comLondon VoicesThe Monteverdi Choir + +5171053Rory CarverClassical tenor vocalistNeeds Votehttps://www.facebook.com/rory.carver.3The Monteverdi Choir + +5171054Simon PonsfordEnglish classical counter-tenor & alto vocalistNeeds Votehttp://www.sjhponsford.comThe Monteverdi ChoirTenebrae (10) + +5171055Jessica CaleBritish classical soprano vocalistNeeds Votehttp://www.jessicacalesoprano.com/The Monteverdi ChoirTenebrae (10) + +5171056Charlotte AshleyClassical soprano vocalist and oboist from Salisbury, Wiltshire, EnglandNeeds Votehttp://www.bach-cantatas.com/Bio/Ashley-Charlotte.htmhttps://www.facebook.com/charlotte.ashley.581MagnificatThe Monteverdi ChoirContrapunctus (2)The Marian Consort + +5171059Emilia MortonClassical soprano vocalistNeeds Votehttp://emiliahughes.com/Emilia HughesLondon VoicesThe SixteenThe Choir Of Clare CollegeThe Eric Whitacre SingersTenebrae (10) + +5172232Otto BlechaOtto Blecha (3 April 1927) is an Austrian classical cellist.Needs VoteO. BlechaWiener Johann Strauss Orchestra + +5172475Andreas JankeClassical violinistNeeds VoteOliver Schnyder TrioMythenensembleorchestralTonhalle-Orchester ZürichThe European String Quartet + +5172696Beatrice ScaldiniClassical violinistNeeds VoteThe English Baroque SoloistsAuser MusiciIrish Baroque OrchestraNew Century BaroqueControcorrente (2)Divertissement (2) + +5173111Anna SkalovaAnna Skálová Classical violinist.Needs VoteSydney Symphony Orchestra + +5173116Alan NillesClassical violist, born in Wheaton, USA.Needs VoteA. J. NillesAllan NillesBerliner PhilharmonikerSan Diego Symphony + +5173855Joyce FieldsendClassical harpsichordistNeeds VoteLondon Philharmonic OrchestraCantilena + +5175632Bócsa JózsefHungarian classical hornistNeeds VoteJózsef BócsaLiszt Ferenc Chamber OrchestraBudapest Wind Ensemble + +5175921Herrmann DirrClassical cellist and cello teacher.Needs VoteMünchner PhilharmonikerPusl-Quartett + +5175922Julie HeßdorferViolinistNeeds VoteJ. HessdörferJulia HessdörferJulie HeßdörferMünchner PhilharmonikerPusl-Quartett + +5175924Christian SteinkraußPeter Christian SteinkraußClassical violist.Needs VoteChristian SteinkraussMünchner PhilharmonikerPusl-Quartett + +5176543Alfred HobdayAlfred Charles HobdayBritish classical violin & viola player, and teacher. Born 19 April 1870 in Faversham, Kent, England, UK - Died 23 February 1942 in Tankerton, Kent, England, UK. +He studied violin & viola, piano, organ, and theory at [l290263]. He played in several leading string quartet musical ensembles but much of his career was spent as an orchestral musician. He led the [a=Royal Philharmonic Society]'s violas for several years. In 1900, he was appointed solo violist at the [a=Orchestra Of The Royal Opera House, Covent Garden], remaining there until 1914. He was also the leading viola of the Royal Philharmonic, of the [a=Goossens' Orchestra], and of the [a=London Symphony Orchestra] from its inception in 1904 until 1930; he left the LSO in 1937. He taught at the London Academy of Music. +He married the pianist [a=Ethel Hobday] in 1895. Older brother of [a=Claude Hobday].Needs Votehttps://en.wikipedia.org/wiki/Alfred_Charles_Hobdayhttps://www.britishviolasociety.co.uk/alfred-hobday-a-valuable-violist-tully-potter/HobdayLondon Symphony OrchestraRoyal Philharmonic OrchestraOrchestra Of The Royal Opera House, Covent GardenRoyal Philharmonic SocietyGoossens' Orchestra + +5177846David Wright (28)English harpsichord, organ, and keyboard player.Needs VoteThe Academy Of Ancient MusicThe Harmonious Society Of Tickle-Fiddle Gentlemen + +5178679Tino MönksGerman trombonist.Needs VoteGewandhausorchester LeipzigWestfälisches Blechbläser-Ensemble + +5178684Matthias KieferMatthias Kiefer (born 1959) is a German trumpeter. + +Needs Votehttps://www.guerzenich-orchester.de/de/orchester/matthias-kiefer/118http://home.foni.net/~donatushaus/matthias.htmMathias KieferGürzenich-Orchester Kölner PhilharmonikerEnsemble AvanceWestfälisches Blechbläser-EnsembleKuhlo-Horn-Sextett 1991 + +5179435Chris Riley (6)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +5182194Steven CowlingClassical horn player.Needs VoteRoyal Scottish National Orchestra + +5183007Michael Adams (11)Viola playerNeeds VoteMinnesota OrchestraWilliam Schrickel's Heavy Rescue + +5184344Nora von BillerbeckClassical soprano vocalistNeeds VoteRundfunkchor Berlin + +5184346Johannes VoigtGerman classical tenor vocalistNeeds VoteRundfunkchor Berlin + +5184347Anett TaubeGerman soprano vocalist.Needs VoteRundfunkchor Berlin + +5184348Ingeborg RupprechtGerman classical alto vocalistNeeds VoteRundfunkchor Berlin + +5184350Jörg Schneider (5)German classical bass vocalist born in Berlin. +For the Austrian tenor, see [a7328029]Needs Votehttps://www.rundfunkchor-berlin.de/menschen/joerg-schneider/Rundfunkchor BerlinLes Épopées + +5186200Gaëtan BironClassical violinistNeeds VoteOrchestre National De France + +5186773Louis Gonzales (3)US jazz guitaristNeeds VoteLou GonzalesLester & Lee Young's OrchestraRed Callender Trio + +5187623Andrea HazellClassical alto/mezzo-soprano vocalist, born in Southampton, England.Needs VoteChorus Of The Royal Opera House, Covent Garden + +5189001Cynthia Koledo DeAlmeidaAmerican Oboe player. +Principal Oboe player of the [a=Pittsburgh Symphony Orchestra]. Has served on the faculty of Carnegie Mellon University, Temple University, and Trenton State College. Married to [a16882618].Needs Votehttps://www.facebook.com/ckdealmeidaoboe/CindyThe Philadelphia OrchestraPittsburgh Symphony Orchestra + +5189047The Brass Ensemble of The Vienna State Opera OrchestraNeeds VoteHigh Fidelity BrassOrchester Der Wiener Staatsoper + +5190084Harry PerellaAmerican pianist who worked with Ray Miller & His Orchestra (1923-1924) and Paul Whiteman & His Orchestra (1924-1928). Died from alcoholism at a young age.Needs VoteHarry ParellaPaul Whiteman And His Orchestra + +5190317Jacques Du BuissonNeeds Major ChangesDe BuissonDu BuissonLambert du Buisson + +5190491Teddy BartellSalvatore Bertuglia(b. Jul. 8, 1903, Brooklyn, NY; d. Mar. 28, 1980, Brooklyn, NY), trumpet player. Worked with several dance bands in the 1920s, including [a3392675], [a1541488], [a2883377] and [a2053208]. [a299946] hired Barbell in September 1925 and fired him in April 1927 for being late to a rehearsal. Bartell returned to the Whitman organization intermittently over the next twelve years. He also was a Navy bandmaster during World War II, served as music director for Yankee Stadium and worked for Mike Todd Jr. at the 1964 World's Fair. In later years, he led the Cook's. Band during the Carnevale festival at Mamma Leone's Italian restaurant in Manhattan.Needs VotePaul Whiteman And His OrchestraJan Garber And His OrchestraCarl Fenton's OrchestraBennie Krueger's OrchestraBilly Wynne's Greenwich Village Inn OrchestraSam Lanin & His Orchestra + +5192227Julius AdornoJulius Calvelli-AdornoClassical violinistNeeds VoteStuttgarter Philharmoniker + +5192232Nhassim GazaleContrabassist, born in 1983.Needs VoteRundfunk-Sinfonieorchester Berlin + +5196507Jack Reid (2)Early jazz trombonistNeeds VoteCharles Pierce And His Orchestra + +5197022Friedrich KettschauGerman horn player and professor for horn.Needs VoteDresdner PhilharmonieBrass Partout + +5197171John Donaldson (5)Classical percussionistNeeds VoteThe Early Music Consort Of LondonTristan Fry Percussion Ensemble + +5197601Julian FreibottGerman tenor, born in 1990.Needs VoteRegensburger Domspatzen + +5197604Anna-Theresa SehmerAnna-Theresa Sehmer is a German classical violinistNeeds VoteMünchner SymphonikerGustav Mahler JugendorchesterPhilharmonisches Orchester Augsburg + +5197611William GriggWilliam Grigg is an Australian violinist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerSinfonieorchester Der Robert Schumann Hochschule + +5197683Matthias BotzetClassical double bassist.Needs VoteSüdwestdeutsches Kammerorchester + +5197937Simon RoturierClassical violinist, born in Concarneau (Brittany-France)Needs VoteRoturierBerliner PhilharmonikerNoga QuartetCollegium Der Berliner Philharmoniker + +5198368Lothar UlrichClassical double bassist. A member of the [a604396] from 1977 to 2014.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +5199356Antonín ModrCzech musicologist, violist and composer. Born 17 May 1898 in Strašice near Rokycany, died 22 April 1983.CorrectA. ModrProf. Antonín ModrThe Czech Philharmonic OrchestraPro Arte Antiqua + +5199436Gunnar MånbergCarl Gunnar Fredrik MånbergSwedish classical oboist, born October 29, 1975.Needs VoteGöteborgs SymfonikerStockholm Sinfonietta + +5199440Renate KlavinaClassical violinistNeeds VoteSveriges Radios SymfoniorkesterStockholm Sinfonietta + +5199444Mira FridholmSwedish classical violinist, born November 18, 1972.Needs VoteSveriges Radios SymfoniorkesterStockholm Sinfonietta + +5200805Benjamin PicardBritish Music Librarian and arranger, copyist, & composer. +Former Music Librarian for the [a=London Symphony Orchestra] (03/2016-01/2020). Alongside his work with the LSO he also worked as a freelance arranger, copyist and composer. Music Librarian for [a835190] since January 2020.Needs Votehttps://uk.linkedin.com/in/benjamin-picard-93278567https://www.laphil.com/musicdb/artists/7494/benjamin-picardhttps://www.theford.com/press/releases/1930London Symphony OrchestraLos Angeles Philharmonic Orchestra + +5200806LSO Percussion EnsembleThe LSO Percussion Ensemble comprises members of the [a=London Symphony Orchestra]'s percussion section as well as distinguished orchestral players with enviable reputations. + +Please, consider also the following orchestra's sub-groups: +- [a=London Symphony Orchestra Chamber Group] +- [a=Members Of The London Symphony Orchestra] +- [a=London Symphony Orchestra Strings] +- [a=London Symphony Orchestra Brass] +- [a=The London Symphony Orchestra Wind Ensemble] +- [a=London Symphony Orchestra Chamber Ensemble] +- [a=LSO String Ensemble]Needs VoteLondon Symphony Orchestra PercussionSam WaltonDavid Jackson (5)Neil PercySimon Crawford PhillipsPhilip Moore (3)Antoine BedewiJacob Brown (5)London Symphony Orchestra + +5207667Cécile Pierrot (2)French soprano vocalistNeeds VoteLe Concert D'AstréeLes MétabolesLa Chapelle HarmoniqueL'Armée Des Douze Sages + +5208057Semion GavrikovRussian born classical violinist.Needs Votehttps://www.ipo.co.il/orckestra_member/%D7%A1%D7%9E%D7%99%D7%95%D7%9F-%D7%92%D7%91%D7%A8%D7%99%D7%A7%D7%95%D7%91/סימיון גבריקובסמי גבריקובסמיון גבריקובIsrael Philharmonic OrchestraOrchestre Philharmonique Du Luxembourg + +5208064Matan GilitchenskyMatan Gilitchensky is a violist.Needs Voteמתן גילישינסקימתן גילישנסקינתן גילישנסקיDresdner Philharmonie + +5208065David Segal (3)Israeli classical double bassist.Needs Voteדוד סגלIsrael Philharmonic Orchestra + +5208992Elaine AckersClassical cellistNeeds VoteRoyal Philharmonic Orchestra + +5211165Raffaele GiannottiItalian classical bassoonist, active from the 2010s.Needs VoteMünchner PhilharmonikerOrchestra Del Maggio Musicale Fiorentino + +5211315Markus RhotenClassical timpanist born 1978 in Hanover, Germany who has played in the New York Philharmonic as Principal Timpanist since 2006. He previously played in the [a604396] beginning in 2002. + +Born in 1978 in Hanover, Germany, Mr. Rhoten attended the College of Arts in Berlin, and continued his studies as an apprentice with the National Opera Orchestra Mannheim. Subsequently, he was awarded a stipend for the Academy of the Bavarian Radio Orchestra in Munich, and in 2002 became principal timpanist of the Bavarian Radio Orchestra under Lorin Maazel. He has also worked with conductors Mariss Jansons, Riccardo Muti, Esa-Pekka Salonen, Franz Welser-Möst, Valery Gergiev, Christoph von Dohnányi, and Charles Dutoit, among others. Mr. Rhoten has performed with the Hessen Radio Symphony Orchestra; Zurich Opera Orchestra; North German Radio Philharmonic; Lower Saxony State Opera Orchestra; and Munich Philharmonic Orchestra, and can be heard on all of the Deutsche Grammophon recordings with the New York Philharmonic made after September 2006.Needs Votehttp://www.hardtketimpani.com/timpanist-markus-rhoten.htmhttp://www.juilliard.edu/journal/markus-rhotenhttp://nyphil.org/about-us/artists/markus-rhotenNew York PhilharmonicSymphonie-Orchester Des Bayerischen Rundfunks + +5213161Katarina MalzewGerman cellist.Needs Votehttp://www.staatstheater-kassel.de/katarina-malzew,p10039.htmlKatharina MalzewStaatskapelle BerlinEssener PhilharmonikerStaatsorchester Kassel + +5213488Dominique DesjardinsDouble-bass playerNeeds VoteD. DesjardinsOrchestre National De France + +5214655Bühnenorchester Der Wiener StaatsoperThe stage orchestra of the Vienna State Opera, founded in 1854.Needs Votehttps://de.wikipedia.org/wiki/B%C3%BChnenorchester_der_Wiener_StaatsoperFranz GeroldingerMatthias HinkMarkus PichlerJulius DarvasJosef VelebaMatthias Schulz (2)Gerald GrünbacherWolfgang ZuserAlfred GaalHarald HuemerAlbert WiederKonrad MonsbergerJohannes KafkaWolfgang LindenthalElisabeth JöbstlHannes MoserGerhard BerndlStefan Neubauer (3)Erich PawlikDieter AngererOrchester Der Wiener Staatsoper + +5216793Giovanni GrancinoGiovanni GrancinoGiovanni Grancino (1637–1709), son of Andrea Grancino, was one of the early Milanese luthiers, and may have worked with his brother, Francesco. Grancino's workshops were all located on Contrada Larga, now Via Larga in Milan. His instruments bear the characteristic segno della corona (mark of the crown). Although the luthiers of Milan created instruments of varying quality, Grancino's violins, violas, cellos and double basses are considered superior.Needs Votehttps://en.wikipedia.org/wiki/Giovanni_Grancinohttps://tarisio.com/cozio-archive/browse-the-archive/makers/maker/?Maker_ID=220Gio. GrancinoGiov. GrancinoGiovanni Baptista GrancinoGiovanni Battista GrancinoGiovanni GracinoGrancino + +5217216Giovanni ZordanClassical string instrumentalistNeeds VoteGiovanni ZordaMusica Antiqua KölnAlessandro Stradella Consort + +5217217Kerstin de WittClassical recorder player and violinist.Needs Votehttp://www.kerstindewitt.de/http://kerstindewitt-praxis.de/Website/Musica Antiqua KölnElbipolis Barockorchester HamburgLeipziger BarockorchesterFlautando Köln + +5217218Susanne HochscheidClassical woodwind instrumentalistNeeds VoteMusica Antiqua KölnFlautando KölnBarockorchester caterva musica + +5217219Dorothea SeelClassical wind intrumentalistNeeds VoteMusica Antiqua KölnNeue Hofkapelle MünchenPetit Trianon + +5217220Katharina HessClassical Recorder instrumentalistNeeds Votehttps://www.katharina-hess.de/Musica Antiqua KölnFlautando Köln + +5218632Giovanni de AngeliItalian oboist born 1967 in TorinoNeeds VoteKammerakademie PotsdamParma Opera Ensemble + +5218633Jenny AnschelJennifer AnschelAmerical viola player born in MinneapolisNeeds VoteJennifer AnschelKammerakademie PotsdamSwonderful Orchestra + +5218845Guy ScaliseJazz guitaristCorrectGuy ScaliceHarry James And His Orchestra + +5219313Walter Schwarz (4)German drummer (* 1951 in Straubing) - From 1966 to 1969 he studied percussion at the Richard Strauss Conservatory in Munich, then spent time in Canada and the USA, in 1976 he became a member of the Munich Philharmonic. + +Correcthttps://www.yumpu.com/de/document/read/7785122/2-kammerkonzert-munchner-philharmonikerMünchner PhilharmonikerSoul of Bavaria + +5222231Conrado Del CampoConrado del Campo y ZabaletaConrado del Campo (28 October 1878 – 17 March 1953) was a composer, violinist and professor at the Real Conservatorio de Música in Madrid, was the principal conductor of the [a854120]. Founder in 1947 of [a6224928] with [a3248391]. + +His works were played in the Theatre Real of Madrid for José María Alvira. His opera Lola la Piconera made its debut at the Gran Teatre del Liceu, Barcelona, December 12, 1952. He was a major figure in the conservative musical climate of Franco's Spain, writing in a Late Romantic style. Since his death his music has fallen into comparative oblivion. He was born in Madrid, which is also where he died. +Among his pupils were Salvador Bacarisse, Julián Bautista, and Fernando Remacha.Needs Votehttps://en.wikipedia.org/wiki/Conrado_del_Campohttps://es.wikipedia.org/wiki/Conrado_del_CampoOrquesta Sinfónica De MadridOrquesta De Radio Nacional De España + +5223024Veikko VirtaNeeds Major Changes + +5224212Leo RostalClassical cellistNeeds VoteRostalNetherlands Chamber Orchestra + +5225839Nana KawamuraClassical violinistNeeds VoteOrchestre Du Théâtre Royal De La MonnaieTetra LyreBrussels Chamber Orchestra + +5226271Pierrette GuimasClassical french violistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +5226303Harald OrlovskyHarald Strauss-OrlovskyClassical violinist and conductor, born in Bremen, Germany.Needs Votehttps://strauss-orlovsky.com/Münchner PhilharmonikerJunge Deutsche PhilharmonieBamberger SymphonikerOrchestra Filarmonicii din Sibiu + +5226954Marc TrénelFrench classical bassoonist.Needs VoteOrchestre De ParisVariation5 + +5227846Hélène BoulègueClassical flutist, born in 1990.Needs Votehttps://www.facebook.com/helene.boulegueThe Chamber Orchestra Of EuropeOrchestre Philharmonique Du Luxembourg + +5227847Kai FrömbgenGerman oboist, born 1977 in Koblenz, Germany.Needs VoteThe Chamber Orchestra Of EuropeLinos EnsembleRudens Turku Festival Ensemble + +5227848Luis ZoritaClassical cellist +Born in León, Spain, living in Vienna/Wien, AustriaNeeds VoteThe Chamber Orchestra Of EuropeKreisler Trio Wien + +5227849Simone JandlClassical viola player.Needs VoteThe Chamber Orchestra Of EuropeOrchestra MozartConcerto CopenhagenThe MozartistsGaechinger CantoreyQuartetto BernardiniSpira Mirabilis + +5229483Rene WehrleClassical oboist, fl. 1960s.Needs VoteRené WehrleSüdwestdeutsches Kammerorchester + +5233812Malc BTrance/Psy Trance DJ from Scotland, United Kingdom.Needs Vote + +5239489Xavier FortinCanadian classical hornistNeeds VoteOrchestre symphonique de MontréalPentaèdreOrchestre Symphonique De Laval + +5241170Karen MartirossianClassical double bassistNeeds VoteOrquesta Sinfónica de RTVE + +5244035Paul SchröerPaul Schröer (6 January 1912 - 7 December 1985) was a German violist and violinist. +A member of the [a260744] from 1937 to 1968.Needs VotePaul SchroerBerliner PhilharmonikerOrchester Der Beethovenhalle BonnWDR Sinfonieorchester KölnDeutsche BachsolistenCologne Soloists Ensemble + +5244718Eckhard WeyandGerman conductor and musical director, born in 1940. Founded [a6860234] in 1992.Needs VoteEkhards VeilandsStuttgarter Hymnus-ChorknabenKnabenchor Capella Vocalis + +5244926Ed E.T & D.T.REdward Temple & Dave RobertsHardstyle DJ duo from Swansea, Wales.Needs Votehttps://soundcloud.com/ed-e-t-d-t-rhttps://www.facebook.com/ede.t.d.t.rhttps://twitter.com/EdETDTRED E.T. & D.T.R.ED-ET & DTREd E.T & DTREd E.T. & D.T.R.Ed ET & DTREd ET + DTREd Et & DTREd.E.T & D.T.REd E.T + +5245367Alexis DemaillyClassical trumpeterNeeds VoteA. DemaillyOrchestre National De L'Opéra De ParisParis Brass BandPrestige Brass QuartetVertige Brass Quintet + +5245372Pierre Gillet (2)Classical trumpeterNeeds VoteP. GilletOrchestre National De L'Opéra De ParisParis Brass BandLes Cuivres Français + +5246073Carlo RaviolaClassical double-bass player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +5246486Martin AdámekClarinet player.Needs Votehttps://www.martin-adamek.com/Ensemble IntercontemporainVeni Academy + +5248777John Barnett (8)Oboist.Needs VoteJohn BarnetEnglish Chamber Orchestra + +5248981Sonia Tedla ChebreabItalian classical soprano vocalistNeeds VoteSonia TedlaTedlaLe Concert SpirituelConcerto ItalianoCoro "Color Temporis"Consort Del Collegio GhislieriDramatodía + +5251648Jaanika KuusikSoprano vocalist.Needs VoteRadiokörenVox ClamantisDuo ObSolute + +5253605Kirtland BradfordBig band era alto saxophonist. Converted to Islam and changed name to Mustapha Hashim. Teacher of [a165824].Needs VoteBradfordKirk BradfordKirkland BradfordKirt BradfordKirt BratfordKurt BradfordJimmie Lunceford And His Orchestra + +5253752Marc GeujonFrench classical trumpeter + +Born 1974, Gonnehem, Département Pas-de-Calais +Since 2011 Opéra de Paris, super soliste +Needs VoteOrchestre National De L'Opéra De ParisVertige Brass Quintet + +5253755Gildas PradoFrench classical oboist.Needs VoteOrchestre De ParisEuropean Camerata + +5254463Jonathan LuxtonClassical wind instrumentalistNeeds VoteGulbenkian Orchestra + +5254464Kenneth BestClassical wind instrumentalistNeeds VoteGulbenkian Orchestra + +5254465Cyril DupuyClassical cimbalomistNeeds Votehttps://cyrildupuy.com/Cyril DupuisGulbenkian OrchestraEnsemble C Barré + +5254467Esther GeorgieClassical woodwind instrumentalistNeeds VoteGulbenkian Orchestra + +5256264Lachezar KostovClassical cellistNeeds VoteCincinnati Symphony OrchestraBaltimore Symphony Orchestra + +5258338Malfunction (10)Mark LeslieHard Trance/Hardstyle DJ from Elgin, Scotland, United Kingdom. +Needs Votehttps://soundcloud.com/malfunctionuk + +5259961Johnnie Miller (3)Early jazz pianist and songwriter from New Orleans.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/112950/Johnnie_Millers_New_Orleans_FrolickersJ. MillerJ. MillerJohnny MillerMillerJohnny Bayersdorffer And His Jazzola Novelty OrchestraJohnnie Miller's New Orleans Frolickers + +5261155Vasily IlisavskyВасилий Юрьевич Илисавский Russian pianist (* 21 January 1972 in Leningrad, Soviet Union; today: St. Petersburg, Russia).Needs Votehttps://www.facebook.com/ilisavsky/https://ru.wikipedia.org/wiki/%D0%98%D0%BB%D0%B8%D1%81%D0%B0%D0%B2%D1%81%D0%BA%D0%B8%D0%B9,_%D0%92%D0%B0%D1%81%D0%B8%D0%BB%D0%B8%D0%B9_%D0%AE%D1%80%D1%8C%D0%B5%D0%B2%D0%B8%D1%87Vasiliy Ilissavsky + +5261242Paul Bentley-AngellAustralian tenor vocalistNeeds Votehttps://www.bentley-angell.comPaul BentleyTheatre Of VoicesLondon VoicesMusica FictaHuelgas-EnsembleSchola Cantorum BasiliensisThe Brabant EnsembleArs Nova Copenhagen + +5261243Elenor WimanDanish mezzo-sopranoNeeds Votehttps://www.facebook.com/elenor.wimanArs Nova Copenhagen + +5263657Fats DennisCredited as jazz tenor saxophonist.Needs VoteF. DennisJay McShann And His Orchestra + +5263658Gene GriddinsCredited as jazz guitarist.Needs VoteG. GriddinsJay McShann And His Orchestra + +5263659Cooky JacksonCredited as jazz drummers.Needs VoteC. JacksonCookie JacksonJay McShann And His Orchestra + +5264120Anders Fog-NielsenClassical violinist.Needs VoteAnders Fog NielsenAnders Fogh NielsenDR SymfoniOrkestretThe Danish Schubert Trio + +5264737Walter HartwichProf. Walter Hartwich was a German violinist and concertmaster of the [a854918].Needs VoteDresdner Philharmonie + +5268125Christian GigerChristian Giger (born 1959) is a Swiss cellist.Needs Votehttps://www.christiangiger.chGewandhausorchester LeipzigEnsemble Avantgarde + +5268920Mette DueDanish recording & editing engineer and producer.Needs Vote + +5269070Robert Morris (11)Flutist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +5271850Rebekah JonesClassical alto/mezzo soprano vocalist and violinist.Needs Votehttps://joinencore.com/rebekahjoneshttps://www.nycgb.org.uk/fellowship/meet-the-fellows/rebekah-jonesNational Youth Choir Of Great BritainThe Brabant Ensemble + +5272374Josef LacknerJosef Lackner (1908 - 1986) was an Austrian horn player. He was a member of the [a754974] from 1941 to 1973.Needs VoteJoseph LacknerWiener PhilharmonikerWiener Oktett + +5272595Lee Howard (5)1940s jazz saxophonistNeeds VoteJimmie Lunceford And His Orchestra + +5273972Walter HolzhausWalter Holzhaus(b. Nov. 3, 1900, Castroville, TX; d. ?). Trumpet player active in jazz/dance bands during the mid-1920s to 1930s.Needs VotePaul Whiteman And His OrchestraJimmy Grier And His OrchestraGus Arnheim And His OrchestraWillard Robison & His OrchestraLouis Forbstein's Royal Syncopators + +5274995Edmond Hall's SwingtetNeeds Major ChangesEdmond Hall & His SwingtetEdmond Hall SwingtetThe Edmond Hall SwingtetHarry CarneyEdmond HallEverett BarksdaleBenny MortonSidney CatlettDon FryeAlvin Raglin + +5276019Hannah BishayAssociate arist manager / coordinator and classical alto vocalistNeeds Votehttps://askonasholt.com/people/Hannah-BishayBBC Symphony Chorus + +5276712Martin DirnbergerCredited as Project Manager, Deutsche Grammophon, BerlinNeeds Vote + +5276889Ivo LybeertClassical clarinetistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +5276890Rogier SteelClassical hornistNeeds VoteOrchestre Du Théâtre Royal De La MonnaieEnsemble Houthandel Antwerpen + +5276892Cian O'MahonyClassical bassoonistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +5277275Virtuosi11-member Israeli classical violin ensemble.Needs Vote + +5277415Clowny & ReminisceNeeds Major ChangesClowny + ReminisceClowny, ReminisceClowny, ReminsceDJ ClownyClowny + +5281460Hardy WenzelHardy WenzelGerman violinist and violist. Violist of the [a1949357] and Trio TriColore (with [a2181641], marimba and [a935437], harp) and former member of the Konzertmeister-Quartett of the Robert-Schumann-Philharmonie. Guest solo violist of the [a854918], the [a578737] and the [a841431], among others.Needs Votehttp://triotricolore.de/biographien.htmlhttp://www.triotricolore.dehttp://chursaechsische-philharmonie.de/de/klangkoerper-ensembles/konzertmeisterquartett.htmlStaatskapelle DresdenOrchester Der Deutschen Oper BerlinDresdner PhilharmonieRobert-Schumann-Philharmonie + +5281573Bill PaynterAmerican jazz trombonistNeeds VoteWilliam PaynterHarry James And His OrchestraHarry James & His Music Makers + +5281972Charlie Jones (18)Jazz trumpet player, credited with [a340734] on 1940s recordings.Needs VoteCharles JonesChuck JonesErskine Hawkins And His Orchestra + +5282805Emanuele SilvestriItalian classical cellist.Needs VoteIsrael Philharmonic OrchestraQuartetto D'Archi Del Teatro la Fenice + +5284553Peter Conrad (3)Peter Conrad (born 1972) is a German trombonist.Needs VoteMecklenburgische Staatskapelle SchwerinDresdner PhilharmonieBlechbläser Der Staatskapelle DresdenOrchester Der Staatsoperette Dresden + +5284558Rolf Zimmermann (3)Needs VoteBlechbläser Der Staatskapelle Dresden + +5284559Thomas HolzThomas Holz (born 1965) is a German classical hornist.Needs VoteBlechbläser Der Staatskapelle DresdenNeuen Elbland PhilharmonieSinfonieorchester Pirna + +5284567Thomas NeupertNeeds VoteBlechbläser Der Staatskapelle Dresden + +5286111Adrian Dunn (2)Violin playerNeeds VoteBBC Symphony Orchestra + +5286115Huw Clement EvansHuw Clement-EvansClassical Oboe and Cor Anglais (=English Horn) player. +He studied at the [l459222] and subsequently at [l305416]. Founder member of [b]Ensemble Cymru[/b].Needs Votehttps://www.facebook.com/huw.clementevanshttps://ensemble.cymru/en/performers/oboe-huw-clement-evans/Royal Philharmonic OrchestraPhilharmonia OrchestraUlster OrchestraBBC Scottish Symphony OrchestraBBC National Orchestra Of Wales + +5289459Elena KodinViolinistNeeds VoteWiener SymphonikerOrchester Der Akademie St. Blasius + +5291989Kirsten LinderClassical violinistNeeds VoteKirsten Linder-DewanThe Sixteen + +5292710María Ángeles NovoMaría de los Angeles Novo VelázquezSpanish cellist.Needs VoteMª Angeles NovoMª Angeles Novo VelazquezMª Angeles Novo VelázquezMª Ángeles Novo VelázquezGrupo KoanOrquesta Sinfónica de RTVE + +5294030Andrea JarrettClassical violinistNeeds Votehttps://andreajarrettviolin.com/Saint Louis Symphony Orchestra + +5294063Tzuying HuangClassical clarinetistNeeds VoteSaint Louis Symphony Orchestra + +5294064Jeffrey StrongClassical trumpeterNeeds VoteSaint Louis Symphony Orchestra + +5294065Christopher Dwyer (2)Classical hornistNeeds VoteThe Philadelphia OrchestraSaint Louis Symphony Orchestra + +5295099Mario FioccaArgentinean viola player.Needs VoteM. FioccaOrquesta Del Tango De Buenos AiresLeopoldo Federico Y Su Orquesta TípicaSeleccion Nacional De Tango + +5296095François Dumont (3)French classical pianist born in Lyon in 1985.Needs Votehttps://www.francoisdumont.com/en/https://en.wikipedia.org/wiki/Fran%C3%A7ois_Dumont_(pianist)Trio Elégiaque + +5302792Jacek KurzydloPolish classical violinistNeeds VoteJacek KurzydłoDunedin ConsortIl GardellinoVox LuminisEnsemble MarsyasEnsemble OdysséeThe English ConcertScorpio Collectief + +5304413Christian GoursaudBritish bass vocalist & Liner Notes authorNeeds Votehttp://www.christiangoursaud.co.ukLondon VoicesHampton Court Palace Chapel Choir + +5304416Melanie Sanders (2)Alto vocalistNeeds Votehttp://www.melaniesanders.co.uk/biogLondon Voices + +5304417Joanna GoldsmithJoanna Goldsmith-EtesonBritish soprano vocalist, session singer, songwriter and arranger. + +Married to [a895780].Needs Votehttps://www.facebook.com/JoGoldsmithEtesonhttps://twitter.com/JoGoldsmithEJoanna Goldsmith-EtesonThe Swingle SingersLondon VoicesNational Youth Choir Of Great BritainLaudibusThe SwinglesThe Ionian Singers + +5306656Michael JuenAustrian classical percussionist born 1985Needs VoteIl Giardino ArmonicoVox LuminisLes Cornets NoirsAargauer Symphonie OrchesterOrchester Der Akademie St. Blasius + +5307522Alice HabellionFrench classical alto/contralto vocalistNeeds Votehttps://www.facebook.com/alice.poitrineauhabellionLe Concert SpirituelLudus ModalisGalilei Consort + +5307524Gauthier FenoyFrench tenor vocalistNeeds VoteLe Concert Spirituel + +5308028Micah DinglerAmerican tenor vocalist.Needs VoteMicah A. DinglerChicago Symphony ChorusWilliam Ferris ChoraleThe Crossing (3)Grant Park ChorusBella VoceConstellation Men’s Ensemble + +5309778Alfonso FookCredited as trombone player.Needs VoteJay McShann And His Orchestra + +5312696Matthias NassauerMatthias Nassauer is a German trombone player and conductor.Needs VoteStabsmusikkorps Der BundeswehrStuttgarter PhilharmonikerWestfälisches Blechbläser-Ensemble + +5315159David Lyon (5)Violinist.Needs VoteRoyal Philharmonic Orchestra + +5315683Albert FransellaAlbert Fransella (1865 – 1935) was a virtuoso flutist and principal flutist of Dutch and British orchestras between 1880 and 1925.Needs Votehttps://en.wikipedia.org/wiki/Albert_FransellaA. FransellaMr. A. FransellaMr. Albert FransellaW. A. FransellaConcertgebouworkestThe New Queen's Hall Orchestra + +5316143Barney Bigard And His JazzopatersNeeds VoteBarney BigardBarney Bigard & His JazopatorsBarney Bigard & His JazzopatersBarney Bigard & His JazzopatorsBarney Bigard And His Jazzo PatersBarney Bigard And His JazzopatoBarney Bigard And His JazzopatersrsBarney Bigard And His JazzopatorsDuke EllingtonCootie WilliamsCharlie BarnetHarry CarneyJuan TizolSonny GreerRex StewartFred GuyBarney BigardBilly Taylor Sr.Sue Mitchell + +5319979Klara LocziSoprano vocalist.Needs Votehttps://www.opvorchestra.it/musicisti/klara-loczi/Klara LócziOrchestra Di Padova E Del VenetoLa Stagione Armonica + +5320171Ernst PanenkaClassical bassoon player. +He enrolled with the Boston Symphony in 1930. Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/336277/Panenka_ErnstE. PanenkaBoston Symphony OrchestraThe Boston Woodwind Ensemble + +5320174Attilio PotoClarinetist, conductor, and music educator (1915 - July 23, 2003). + +Attilio Poto was born in Boston in 1915 but moved with his family to Italy shortly thereafter, returning to Boston at the age of nine. As a very young man, he played clarinet in a Festival Band in Boston's North End, in a WPA orchestra, and in Boston's Youth Orchestra, conducted by Koussevitzky's nephew, Fabian Sevitzky. At 24, Poto went to New York City to play in the National Orchestral Association, a training orchestra, and to study conducting with its conductor, [a=Leon Barzin], who had played under Toscanini and absorbed Toscanini's baton technique. In 1939 Poto was solo clarinet with the [a=The Metropolitan Opera House Orchestra] for all the German repertory. Upon returning to Boston in 1940 he conducted the Massachusetts State Symphony in numerous concerts before enlisting in the Air Force in 1942. He played in the 628th Air Force Band until resuming civilian life in 1946. That same year he studied conducting with Koussevitzky at [l=Tanglewood (3)]. In 1949 he was engaged as second clarinet in the BSO under [a=Serge Koussevitzky] and, later, [a=Charles Munch]. As such, he participated in some of Koussevitzky's most memorable performances: the great Strauss Death and Transfiguration, the legendary Brahms First Piano Concerto with [a=Myra Hess] (both fortunately preserved as airchecks from the respective broadcasts), and various commercial recordings, including Don Juan, the Siegfried Idyll and the Brahms Fourth Symphony. In 1950 he began teaching clarinet and conducting at the Boston Conservatory, retiring in 1992, after 42 years. He died in Boston on July 23, 2003 at the age of 88.Needs Votehttp://www.classical.net/music/guide/society/krs/excerpt8.phphttps://www.thecrimson.com/article/1954/5/26/conductor-at-boston-conservatory-to-lead/https://italiausa.com/ra/1122.htmhttps://www.thecrimson.com/article/1959/4/18/harvard-radcliffe-orchestra-pattilio-poto-ended-his/P. A. PotoBoston Symphony Orchestra + +5322288Roxana DuraRomanian violin playerNeeds VoteWiener SymphonikerOrchestra de cameră din BucureştiThe Vienna Chamber Ensemble + +5324838Clive Driskill-SmithClassical keyboard instrumentalistNeeds Votehttp://www.organist.org.ukClive Driskell-SmithThe Choir Of Christ Church CathedralThe Lanyer Ensemble + +5326900Ernst Theo RichterGerman actor, born in 1949, died in 2002.Needs VoteE. RichterErnst T. RichterErnst-Theo Richter + +5328309Ana SalaberríaSpanish sopranoNeeds VoteAna SalaberriaOrfeón Donostiarra + +5328315Tobias BreiderGerman violist.Needs Votehttp://www.sydneysymphony.com/about-us/meet-the-musicians/stringsSydney Symphony Orchestra + +5328521Clarence O'NeilClassical timpanist. +Former member of the [a=London Symphony Orchestra] (1928-1939).Needs VoteLondon Symphony Orchestra + +5329666Ferruccio De PoliItalian string instrumentalistNeeds VoteOrchestra Del Teatro Alla Scala + +5329815Richard Walz (2)Classical mandolin, violin and viola player. +For the illustrator, use [a3601788]. +Needs Votehttps://rswalz.pagesperso-orange.fr/BIORW2.htmRichard WaltzLes Arts FlorissantsLa Chapelle RoyaleThe Academy Of Ancient MusicLa Petite BandeOrchestra Of The 18th CenturyFiori Musicali + +5331208Patrizia DöringerGerman violinist, born in 1977Needs VoteMünchner Philharmoniker + +5331428Jantien KassiesDutch violin player. Currently, she's 2nd violinist at [a4515131].Needs Votehttps://www.ospa.es/miembros/jantien-kassies/JantienNieuw Sinfonietta AmsterdamOrquesta Sinfónica Del Principado de Asturias + +5333298The Be Bop BoysNeeds Major Changes + +5334008George's Dukes And DuchessBand Of Trumpeter [a693032]. That is why it is called "George's Dukes ..." Versions like "George Dukes And The Dutchess" should be Used as ANVNeeds VoteGeorge Dukes And The DutchessGeorge's Dukes & DuchessGeorges Dukes And DuchessKarl George + +5334692Katy WoolleyBritish French horn player and professor. Born in Exeter, England, UK. +She studied at the [l290263]. She served as Principal Horn in the [a=European Union Youth Orchestra] for two years and undertook further study at the [l1125469]. She was appointed Principal Horn of the [a=Philharmonia Orchestra] at age 22, playing with the orchestra for seven years. In 2019, she became Principal Horn of the [a=Concertgebouworkest] in Amsterdam. Professor of French Horn at both the [l527847] and the [l1379071].Needs Votehttps://en.wikipedia.org/wiki/Katy_Woolleyhttps://www.bbc.co.uk/programmes/profiles/5nLrZ4rWyDqd3DRj3vZbCvm/katy-woolleyhttps://www.concertgebouworkest.nl/en/katy-woolleyhttps://nyphil.org/about-us/artists/katy-woolleyhttps://www.dublinbrassweek.com/katy-woolley.htmlhttps://sagegateshead.com/whats-on/inside-music-horn-player-katy-woolley-with-music-that-works-on-our-emotions/https://www.trinitylaban.ac.uk/study/teaching-staff/katy-woolley/https://vgmdb.net/artist/22802Katie WoolleyKaty WooleyPhilharmonia OrchestraConcertgebouworkestEuropean Union Youth Orchestra + +5336517Pepijn MeeuwsDutch cello playerNeeds VoteRotterdams Philharmonisch OrkestAmsterdam Sinfonietta + +5336518Erik SpaepenDouble bass playerNeeds VoteNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaNederlands Philharmonisch Orkest (2) + +5336519Melissa UsseryViolin playerNeeds VoteNetherlands Chamber OrchestraAmsterdam Sinfonietta + +5336619Laura FrenkelViolin playerNeeds VoteConcertgebouw Chamber OrchestraAmsterdam Sinfonietta + +5337258Nat Jones (5)US alto sax player active in the 40s in Chicago, ILNeeds Vote"Nat" JonesN. JonesDuke Ellington And His OrchestraFloyd Smith's ComboNat Jones And His Orchestra + +5337813Valérie KunzValérie Bouthiba-KunzClassical french violistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +5339340Christine KyprieClassical cellist.Needs VoteLes Arts Florissants + +5340646David van Dijk (3)Dutch violin player (born 1976 in Dirksland)Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +5341824James MildredClassical horn player.Needs VoteRoyal Scottish National Orchestra + +5341881Oliver Brown (10)Treble vocalist.Needs VoteSt. John's College Choir + +5342112Wendy LimbertieCanadian horn player who has changed career path and is now development officer at Mississauga Symphony Orchestra, Toronto, Canada.Needs Votehttps://www.linkedin.com/in/wendylimbertieNieuw Sinfonietta Amsterdam + +5342114Ioana GuenovaViolin playerNeeds VoteNieuw Sinfonietta Amsterdam + +5342116Eileen McEwanViolin playerNeeds VoteNieuw Sinfonietta AmsterdamHet Gelders Orkest + +5342117Peter Verduyn LunelDutch flute playerNeeds VoteNieuw Sinfonietta AmsterdamAmsterdam SinfoniettaHet Gelders OrkestPhionThe Lunel Quartet + +5343480Esther BrayerClassical double bassistNeeds VoteOrchestre National Bordeaux AquitainePasticcio Barocco + +5345172Hamilton (17)Hamilton Craig DeanDrum & bass alias of British producer and DJ Hamilton Dean.Needs Votehttps://www.facebook.com/hamiltondnb/https://soundcloud.com/hamiltondnbhttps://myspace.com/hamiltondnbDJ HamAluminaSlush & PuppieDJ Brian (2)Eclipse (9)John BarnardHamilton DeanRoland (7) + +5347670Mirjam SteymansViolin playerNeeds VoteMirjam Steymans-BrennerNieuw Sinfonietta AmsterdamKammerorchester BaselBayerische KammerphilharmonieSequenza String OrchestraKammerphilharmonie KarlsruheDeutsches Solisten Ensemble + +5347671Michiel EekhofViolin playerNeeds VoteNieuw Sinfonietta AmsterdamRadio Filharmonisch Orkest + +5347673Masha FerschtmanViola playerNeeds VoteNieuw Sinfonietta Amsterdam + +5347855Satu VaananenViola playerNeeds VoteSatu VäänänenNieuw Sinfonietta Amsterdam + +5347856Marjolein KnavenViola playerNeeds VoteMarjolein DispaNieuw Sinfonietta Amsterdam + +5347857Alexej PevznerRussian classical violinist, born in 1972 in Moscow.Needs VoteAljosja PevznerNieuw Sinfonietta AmsterdamHet Gelders OrkestPhion + +5347858Christian Höfer (2)Violin playerNeeds VoteNieuw Sinfonietta Amsterdam + +5347859Arianne In 't VeltViola player who later changed career path to become psychologist specialising in the field of autism.Needs Votehttps://www.linkedin.com/in/arianne-in-t-velt-0a857018Nieuw Sinfonietta AmsterdamRadio Filharmonisch Orkest + +5347860Nelleke ScholtenViolin playerNeeds VoteNieuw Sinfonietta AmsterdamHolland Symfonia + +5347861Erika EngegardViolin playerNeeds VoteNieuw Sinfonietta Amsterdam + +5348148Ingrid NiessenDutch oboe playerNeeds VoteNieuw Sinfonietta Amsterdam + +5349897Neil JohnstoneClassical cellistNeeds VoteJohnstoneScottish Ensemble + +5350552Terje SkomedalClassical violinistNeeds VoteMr. Terje SkomedalGöteborgs Symfoniker + +5351304Frank Meyers (2)US american saxophonist, clarinetist and clarinetist.Needs VoteBob Crosby And His OrchestraBlue Steele And His Orchestra + +5354072Adam WynterBritish classical double bassist. Originally from Beeston, Leeds, UK. +He studied at the [l527847]. He joined the [a=Philharmonia Orchestra] in 2013.Needs Votehttps://www.multi-story.org.uk/adam-wynterhttps://www2.bfi.org.uk/films-tv-people/4ce2be2f16cc9https://vgmdb.net/artist/23312London Symphony OrchestraLondon Philharmonic OrchestraLondon SinfoniettaPhilharmonia OrchestraNational Youth Orchestra Of Great BritainLondon Contemporary OrchestraChineke! OrchestraThe Multi-Story Orchestra + +5354323Laura GornaClassical violinistNeeds Votehttps://www.lauragorna.it/en/bioGornaOrchestra da Camera ItalianaEstrioTrio Pieranunzi, Gorna, Fiore + +5354986Joel NymanSwedish classical violinist.Needs VoteGöteborgs Symfoniker + +5356084Sandy Scott (5)American tenor saxophone player.Needs VoteJames Moody And His OrchestraTrumpet Young Und Sein Negerorchester + +5356967Hege SellevågClassical oboist (English Horn).Needs VoteHege Sellevåg AarøBergen Filharmoniske Orkester + +5357400Reg HarringtonNeeds VoteCalifornia Ramblers + +5357401Bunny DrownReeds player.Needs VoteBunnie DrownElmer "Bunny" DrownElmer DrownCalifornia Ramblers + +5357403Eddie LappeTrombone player.Needs VoteEdward LappCalifornia Ramblers + +5357404Ivan JohnstonTrombone player.Needs VoteCalifornia Ramblers + +5357406Bob FallonReeds player.Needs VoteCalifornia Ramblers + +5357944Doc RandoDr. Arthur J. Rando-GrillotAmerican big band alto saxophonist and clarinettist (born January 23, 1910 in New Orleans, Louisiana – died April 27, 2013). + +Rando was educated at the Samuel J. Peters School in New Orleans, He began playing clarinet and saxophone at age 16. At age 17, he left home to go on the road with Tommy Dorsey's Orchestra. For the next 25 years he performed with some of the era's biggest bands and studio orchestras, including Glenn Miller, Jimmy and Tommy Dorsey, and Bob Crosby, Bing’s younger brother. His final performance as a professional musician was with Crosby’s Bob Cats in 1951. + +When big bands gave way to rock and roll, Doc exchanged his musical instruments for medical instruments and become a doctor. He practiced medicine for more than 20 years, rising to serve as the head of the ER at Southern Nevada Memorial Hospital. He also became a founder of the College of Emergency Room Physicians. + +Doc Rando Hall, a recital venue at the University of Nevada, Las Vegas, is named in his honor.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/339184/Rando_Arthurhttps://de.wikipedia.org/wiki/Arthur_Randohttps://www.legacy.com/us/obituaries/lvrj/name/arthur-rando-grillot-obituary?id=9153693https://lasvegassun.com/news/2009/jan/29/rando-parties-99-he-has-his-whole-life/https://www.reviewjournal.com/local/local-las-vegas/downtown/doc-rando-had-expertise-in-music-medicine/Art RandoArthur "Doc" RandoArthur (Doc) RandoArthur RandoTommy Dorsey And His OrchestraEddie Miller And His OrchestraBob Crosby And His Orchestra + +5360254David PharrisClassical clarinetistNeeds VoteMinnesota Orchestra + +5360435Baard Winther AndersenNorwegian violin playerNeeds Votehttps://ofo.no/en/musicians/2-violin/baard-winther-andersenBaard AndersenBaard AndersonNieuw Sinfonietta AmsterdamOslo Filharmoniske Orkester + +5360487Eric Peters (9)Dutch horn playerNeeds VoteNieuw Sinfonietta Amsterdam + +5360488Roel SternDutch flute player turned mediator and concert organiser.Needs Votehttps://www.linkedin.com/in/roel-stern-97a63735Nieuw Sinfonietta Amsterdam + +5360489Ron de HaasDutch violin playerNeeds VoteNieuw Sinfonietta AmsterdamLagos Ensemble + +5360490Alexei DiorditsaDouble bass playerNeeds VoteNieuw Sinfonietta Amsterdam + +5360492Richard SoudantBassoon playerNeeds VoteNieuw Sinfonietta Amsterdam + +5360493Oscar RamspekDutch clarinet playerNeeds VoteNieuw Sinfonietta AmsterdamHet Gelders Orkest + +5361250Jan EngdahlSwedish classical violinistCorrectGöteborgs Symfoniker + +5362409Hans ZaalDutch clarinet player and teacherNeeds VoteNieuw Sinfonietta Amsterdam + +5363145David McQueenHorn player.Needs Votehttps://www.linkedin.com/in/david-mcqueen-0063a59/London Symphony OrchestraBritten SinfoniaLondon Contemporary Orchestra + +5363169Sebastian HerbergGerman classical viola player, also soloistNeeds VoteStaatskapelle DresdenDresdner KapellsolistenDresdner StreichtrioDresdner Oktett + +5364083Ben Dawson (3)British pianistNeeds VoteSinfonia Of London + +5364391Tomo KellerGerman classical violinist, orchestral leader, director, and Professor of Violin. Born in 1974 in Stuttgart, West Germany. +He attended the [l1632151] and the [l477743]. Assistant Leader of the [a=London Symphony Orchestra] (2009-2015). He was appointed Director and Leader of [a832962] in 2016. In early 2022, he was appointed Professor of Violin at the [l1167197] in Switzerland.Needs Votehttps://www.youtube.com/@tomokeller9288https://open.spotify.com/artist/3gPDv246KNvjf8F27tkPy5https://music.apple.com/us/artist/tomo-keller/1474351699https://www.feenotes.com/database/artists/keller-tomo-1974-present/https://www.bach-cantatas.com/Bio/Keller-Tomo.htmhttps://www.felsnerartists.com/artists/tomo-keller#biographiehttps://www.asmf.org/tomo-keller/https://www.hemu.ch/corps-professoral/corps-professoral-details?tx_collibrary_collibraryfe%5Baction%5D=show&tx_collibrary_collibraryfe%5Bcollaborateurs%5D=533&tx_collibrary_collibraryfe%5Bcontroller%5D=Collaborateurs&cHash=eafe11a9ee3d9d1e16aa7f7c7fe8c9behttps://www.imdb.com/name/nm4326314/London Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsAcademy Of St. Martin-in-the-Fields Chamber Ensemble + +5365258Richard SvobodaPrincipal Bassoon of the Boston Symphony Orchestra since 1989.Needs Votehttps://www.bso.org/profiles/richard-svobodaBoston Symphony Orchestra + +5365767Johannes SeidlJohannes Seidl is a German double bassist and bassist.Needs Votehttp://www.johannes-seidl.de/Gürzenich-Orchester Kölner Philharmoniker + +5366912Larry StoffelBig band alto saxophone player.CorrectLawrence StoffelHarry James And His Orchestra + +5367083Qianqian LiClassical violinistNeeds VoteNew York Philharmonic + +5367087Grace ShryockAmerican oboist and hornistNeeds VoteNew York PhilharmonicAlbany Symphony Orchestra + +5367091Nathan VickeryAmerican cellist who joined the New York Philharmonic in 2013 and is a member of the Rosamunde String Quartet.Needs Votehttps://nyphil.org/about-us/artists/nathan-vickeryNew York PhilharmonicRosamunde String QuartetAvatar Strings + +5367092Pascual FortezaSpanish clarinetistNeeds Votehttp://www.pascualmartinezforteza.comPascual Martinez FortezaPascual Martinez-FortezaNew York Philharmonic + +5368121Bill Harris Big EightOn September 21st, 1946, a group from [a284746] went to studio in order to record a couple of non-Herman pieces. Two names were used for the recording, this and [a3135092]. Actually, it was the identical ensemble playibng in the sessions.CorrectSonny Berman - Bill Harris Big EightSonny Berman's Big EightDon LamondFlip PhillipsRalph BurnsSerge ChaloffBill HarrisSonny Berman + +5368315José María FrancoJosé María Franco BordónsSpanish violinist, conductor and composer José María Franco Bordóns born in Irún (Guipuzcoa) in 1894, dead in Madrid 1971. +[b]Not to be mistaken with his son [a1377315], also composer and conductor.[/b] +Composer of "El Emigrante" played for the first time in 1921 at Teatro de la Zarzuela. Also premiered in 1923 his second work "Impresiones Españolas". +Played violin in "Quinteto Hispania" leaded by [a7629280] and toured in Spain and LatinAmerica. +As conductor he premiered in 1924 Buenos Aires en 1924. In 1925 was the general conductor of "Unión Radio Madrid". Since then he also conducted other Spanish main orchestras like [a854120] in1932, [a1275956] and [a2098343].Needs Votehttps://es.wikipedia.org/wiki/Jos%C3%A9_Mar%C3%ADa_Franco_BordonsFrancoJ. M.ᵃ FrancoJ. Mª FrancoJosé M. FrancoJosé M. a FrancoJosé M.ª FrancoJosé Mª FrancoOrquesta Sinfónica De Madrid + +5369667Santa Monica MihalacheClassical violinistNeeds VoteOrquesta Sinfónica De Madrid + +5372324Wilfried HedenborgWilfried Hedenborg (born 1977) is an Austrian violinist. +Needs Votehttp://hedenborg.atOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +5372464Ethna RobinsonMezzo-soprano & Contralto vocalistNeeds VoteChorus Of St Martin In The Fields + +5372520Herbert Zimmermann (5)Herbert Zimmermann (born 1978) is an Austrian trumpeter.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksGustav Mahler JugendorchesterTiroler Kammerorchester InnStrumentiBRassensemble MünchenNoPhilBrass + +5372533Thomas KöllClassical Violist and Tenor vocalistNeeds VoteCollegium VocaleGli Angeli GenèveTiroler Kammerorchester InnStrumentiEnsemble Polyharmonique + +5373201Johann-Wilhelm FurchheimJohann-Wilhelm Furchheim (Forchheim)Johann-Wilhelm Furchheim (c.1635 - 22 November 1682) was a German violinist, organist and composer. He was a member of the [a578737] from 1665 to 1692.Needs VoteFurchheimJ. Wilhelm FurchheimStaatskapelle Dresden + +5373694Nathalie LamoureuxClassical violinist.Needs VoteOrchestre De Paris + +5375368Larry Lloyd (2)Needs VoteLarryCalifornia Ramblers + +5375489Leopold LercherLeopold Lercher (born 1964) is an Italian violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksKammerorchester Des Symphonieorchesters Des Bayerischen RundfunksAuritus Quartet + +5375490Key-Thomas MärklKey-Thomas Märkl is a German-Japanese violinist.Needs VoteKey MärklSymphonie-Orchester Des Bayerischen RundfunksAuritus QuartetMärkl-Quartett + +5376296Eric RiegerTenor vocalist.Needs VoteWestminster Williamson Voices + +5376747Henrik HochschildGerman violinist.Needs VoteLondon Philharmonic OrchestraGewandhausorchester Leipzig + +5377141François Michel (2)Classical french cellist.Needs VoteOrchestre De ParisEnsemble Cristofori + +5378049Vera KralAustrian classical violinistNeeds VoteBruckner Orchestra Linz + +5379292Pierre Monty (2)Classical flautistNeeds VoteOrchestre Des Concerts Lamoureux + +5381224Stephanie EdmundsonBritish classical viola player. Born in Lancashire, England, UK. +She graduated from the [l527847]. During her time at the Academy she was a member of the [a=Royal Academy Of Music Soloists Ensemble]. Member of the [a=Philharmonia Orchestra] and the [b]Jubilee Quartet[/b].Needs Votehttps://www.facebook.com/stephanie.edmundson.1https://open.spotify.com/artist/7oAYrvlchRvnvhvlE6Utjihttps://music.apple.com/de/artist/stephanie-edmundson/1434429705?l=enhttps://philharmonia.co.uk/bio/stephanie-edmundson/https://purcellcma.wordpress.com/our-tutors/stephanie-edmundson/https://maslink.co.uk/.1/.1/client-directory?client=EDMUS1&preview%3Fclient=COWR1https://www.imdb.com/name/nm12226144/London Symphony OrchestraPhilharmonia OrchestraLondon Contemporary OrchestraRoyal Academy Of Music Soloists EnsembleOrchestrate + +5382210Giuseppe ScaglioneItalian classical Cellist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +5384024Guilhem BoudrantClassical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +5384025Nicolas Saint-YvesFrench cellist.Needs VoteOrchestre Philharmonique De Radio France + +5384026Estelle BartolucciClassical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +5384027Maïlyss CaïnClassical violistNeeds VoteOrchestre National Du Capitole De Toulouse + +5385647Alexander SomovBulgarian classical cellistNeeds VoteOrchestre Philharmonique De Strasbourg + +5387696François Bodin (2)Classical violist.Needs VoteFrancois BodinOrchestre National De L'Opéra De ParisQuatuor Monticelli + +5388279Olivier Patey (2)French clarinet player, Needs VoteMahler Chamber OrchestraConcertgebouworkestRotterdams Philharmonisch Orkest + +5388286Philippe Feret (2)Classical cellistNeeds VotePhilippe FerretPhilippe FéretOrchestre National De L'Opéra De Paris + +5395890Lois AuLois Lai-Yee AuBritish bassoonist. +She graduated from the [l290263] in 2012.Needs Votehttps://www.facebook.com/people/Lai-Yee-Au/100070889381236/https://twitter.com/aulaiyee9https://www.instagram.com/loislaiyeeau/?hl=enhttps://maslink.co.uk/client-directory?client=AUL1&https://www.revolutonarts.com/events/online-programme-fri-22-mayLondon Symphony OrchestraThe Heritage OrchestraThe Gelächter Trio + +5395895Julia RumleyJulia Quénelle né RumleyCanadian violinist. Born in 1982 in Vancouver, British Columbia, Canada. +She attended the [l=Vancouver Academy Of Music] when she was just three years old. In 1998, she went on a tour of Europe with the [a=National Youth Orchestra Of Canada] and by so doing became their youngest musician. She was made concertmaster in 1999. In 2004, she finished her Master's Degree at [l305416]. Member of [a3380330] since September 2013. Also a member of the [a=Jigsaw Players].Needs Votehttps://www.facebook.com/julia.e.rumley/https://www.feenotes.com/database/artists/rumley-julia-1982-present/https://www.eno.org/artists/julia-rumley-quenelle/London Symphony OrchestraThe Heritage OrchestraThe English National Opera OrchestraNational Youth Orchestra Of CanadaEuropean CamerataJigsaw Players + +5397319Michelle KimViolin player.Needs Votehttps://www.violinistmichellekim.com/aboutMichelle M. KimNew York Philharmonic + +5398928Adam Walker (6)British classical flautist and professor of flute. Born December 26, 1987 in Retford, Nottinghamshire, England, UK. +He graduated from the [l527847] in 2009 and shortly thereafter he was appointed Principal Flute of the [a=London Symphony Orchestra] at the age of 21, a position he held until 2020. In 2017, he was appointed Professor of Flute at the [l290263]. In 2018, he founded the [b]Orsino Ensemble[/b], a wind group, at the [l931659].Needs Votehttp://adamwalkerflute.com/https://www.instagram.com/adam.walker.flute/?hl=enhttps://open.spotify.com/artist/3nA5eiHOCzRHRqzSBW5A5bhttps://music.apple.com/us/artist/adam-walker/266514837https://en.wikipedia.org/wiki/Adam_Walker_(flautist)https://www.feenotes.com/database/artists/walker-adam-26-december-1987-present/https://www.sulivansweetland.co.uk/adam-walkerhttps://www.powellflutes.com/en/artist/adam-walker/https://www.rcm.ac.uk/woodwind/professors/details/?id=91046FluteLondon Symphony OrchestraYoung Musicians Symphony OrchestraLos Ambulantes + +5399132Santtu-Matias RouvaliFinnish conductor and percussionist, born November 5, 1985 in Lahtis. + +The parents both played in the symphony orchestra in Lahtis. Rouvali has studied under Leif Segerstam at the Sibelius Academy in Helsinki, and he and Hannu Lintu are the major inspirations. + +He has conducted orchestras in Finland as well as Stockholm, Paris, Tokyo, London, Berlin and Bergen. In 2013, Rouvali was appointed chief conductor of the [a1654954] and since 2017 he has held the same position at [a1015406]. + +Santtu-Matias Rouvali was appointed in 2019 as the new chief conductor of the [a454293] in London.Needs Votehttps://sv.wikipedia.org/wiki/Santtu-Matias_Rouvalihttps://en.wikipedia.org/wiki/Santtu-Matias_RouvaliSanttuPhilharmonia OrchestraGöteborgs SymfonikerTampere Philharmonic Orchestra + +5399302Ernst WeissensteinerClassical double bassistNeeds VoteVienna Art OrchestraVienna Symphonic Orchestra ProjectWiener SymphonikerThe Vienna Chamber Ensemble + +5399399Stephan Schulze (3)Stephan Schulze (born 13 February 1956 in Munich, Germany) is a German violinist. +A member of the [a260744] from 1983 to 2022.Needs VoteBerliner PhilharmonikerNDR SinfonieorchesterPhilharmonische Geigen Berlin + +5399502Vera BaurConcert program editor at the Symphonie-Orchester Des Bayerischen Rundfunks.Needs Votehttp://www.br-so.com/orchestra-history-staff/kontakt-team/Dr. Vera BaurSymphonie-Orchester Des Bayerischen Rundfunks + +5399926Wolfgang PfistermüllerClassical trombonistNeeds VoteWiener SymphonikerWiener Posaunenquartett (2)Black Brass + +5399928Dominik SchnaittDominik Schnaitt (born 1990) is an Austrian trombonist and entrepreneur.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerGrazer Philharmonisches OrchesterPrimus Brass + +5400666Rainer GreisGerman clarinetistNeeds VoteOrchester Der Deutschen Oper Berlin + +5401346Robert MozesViola playerNeeds VoteIsrael Philharmonic OrchestraThe Israel String Quartet + +5402331Harry FuchsHarry Fuchs (1908–1986) was a prominent American cellist, member of [a=The Cleveland Orchestra] for forty years, and a brother of violist [a=Lillian Fuchs] and violinist [a=Joseph Fuchs]. Perhaps not as famous as his siblings, Harry was just as talented, with his incredible gift evident since early childhood. Trained both as violinist and cellist in his youth, Fuchs chose cello for the professional career. In 1932, he admitted to the [l=Juilliard School] on a 3-year graduate fellowship to study with [a=Felix Salmond]. After graduating in 1935, Harry Fuchs joined [a=Metropolitan Opera Orchestra] for two seasons. + +In 1937, [a=Artur Rodzinski] invited Fuchs to join the cello section of [a=The Cleveland Orchestra]. Harry remained with the Orchestra for over four decades, working under five different Musical Directors throughout his tenure. In 1943, Harry Fuchs became a Principal Cello, taking over [a=Leonard Rose] who joined [a=The New York Philharmonic Orchestra]. Fuchs remained at this position for four seasons, until [a=George Szell] selected Ernst Silberstein as a new principal cellist in 1947. + +At this time, Harry Fuchs decided to leave the orchestra and pursue a business opportunity related to a different passion of his – pets. An avid animal lover, Harry had eight cats and a few large dogs at his house. Apparently, Fuchs developed a special lotion formula to ease dog's skin irritation, which he patented and successfully marketed under [i]Fox Salve[/i] brand, turning it into a rather profitable enterprise. In 1949, Harry Fuchs returned to the Cleveland Orchestra as Assistant Principal Cello, and continued playing with the ensemble until his retirement in 1979. + +In 1951, Harry Fuchs recorded Beethoven's [url=https://www.discogs.com/release/9672544]Trio in C Minor (Op. 9, No. 3)[/url] with Joseph and Lillian, released by [l=Decca] label to a huge critical success. He also participated in the recording of [a=Albert Roussel]'s [url=https://www.discogs.com/release/7456746]Trio For Flute, Viola And Cello, Op. 40[/url] with Lillian Fuchs and [a=Julius Baker] on flute, again for Decca, in 1955. While being relatives, Fuchs' were not necessarily the most compatible performers; a few recording sessions came to a halt and weren't finished due to a heated argument between brothers and sister, and unresolvable disagreement over Beethoven's interpretation. + +In addition to a long-running orchestral career, Harry was one of the original members of [a=The Cleveland Orchestra String Quartet], and had been teaching at [l=Cleveland Institute of Music] and Cleveland Music School Settlement, as well as privately. + +In May 1986, [a=Alan Shulman] premiered his [i]Elegy – In Memoriam: Felix Salmond[/i] in New York City. Written in honor of Harry's teacher and mentor, it was also dedicated to seven outstanding cellists. Harry Fuchs, who died in January 1986, was mentioned along with [a=Fortunato Arico], [a=Jascha Bernstein], [a=Pierre Fournier], [a=Frank Miller (3)], [a=Leonard Rose], and [a=Mischa Schneider].Needs Votehttp://www.stokowski.org/Principal_Musicians_Cleveland_Orchestra.htm#Harry_FuchsThe Cleveland OrchestraMetropolitan Opera Orchestra + +5402676Quirine ScheffersDutch violin playerNeeds Votehttp://quirinescheffers.jimdo.com/Rotterdams Philharmonisch OrkestAmsterdam SinfoniettaRubens QuartetThe Daniel String QuartetRadio Kamer FilharmoniePhilharmonic Orchestra Of EuropeBrunsvik String Trio + +5403703Rudolf DemanClassical violinist and former Konzertmeister of the [a833446], born 20 April 1880 in Vienna, Austria-Hungary and died 19 March 1960 in Berlin, Germany. He was married to [a868264].Needs Votehttps://en.wikipedia.org/wiki/Rudolf_DemanDemanKonzertmeister DemanProf. Rudolf DemanStaatskapelle BerlinDeman-Streichquartett + +5403704Emil KornsandGerman born violist, violinist, conductor and composer, born 12 February 1894 in Colmar, German Empire (now France) and died in June 1973 in Brookline, Massachusetts, United StatesNeeds VoteE. KornsandKornsandKornsand, E.Boston Symphony OrchestraStaatskapelle BerlinDeman-Streichquartett + +5407663Joel WattsAudio engineer.Needs Votehttps://www.joelwattsaudio.com/ + +5409907Hitomi ObaSaxophonist, composer and educator from CaliforniaNeeds Votehttps://www.hitomioba.com/https://www.laphil.com/musicdb/artists/5932/hitomi-obaLos Angeles Philharmonic OrchestraL.A. Signal Lab + +5410735Nik ImportNik PaolucciHardstyle producer from Sydney, Australia.Correcthttp://www.nikimport.com/https://www.facebook.com/nikimportmusichttps://soundcloud.com/nik-importhttps://www.youtube.com/user/djnikimporthttps://twitter.com/nikimportmusichttps://www.mixcloud.com/nikimport/https://www.instagram.com/nikimport/ + +5411609Edward RandellBass vocalistNeeds Votehttp://edward-randell.squarespace.com/London Voices + +5412871Vojtěch Jouza (2)Classical oboistNeeds VoteVojtech JouzaThe Czech Philharmonic OrchestraRožmberská Kapela + +5413428Frowald EppingerClassical violist.Needs VoteSonare Quartet + +5413429Eric PlumettazClassical cellist.Needs VoteSonare Quartet + +5414424Vyacheslav UritskyViolinist, born in Russia.Needs Votehttps://www.bso.org/strings/vyacheslav-uritsky-violin.aspxVyachaslav UritskyVyacheslav UritzkyBoston Symphony Orchestra + +5414431Catherine FrenchViolinistNeeds Votehttps://www.bso.org/strings/catherine-french-violin.aspxBoston Symphony Orchestra + +5416297David Wise (7)British classical violinist, active 1920s-1950s. +Principal 2nd Violin with the [a=Philharmonia Orchestra].Needs VoteWiseLondon Philharmonic OrchestraPhilharmonia OrchestraPhilharmonia String Quartet + +5419652Friedmann DreßlerClassical cellistNeeds VoteFriedmann DresslerOrchester der Bayreuther FestspieleDuisburger Philharmoniker + +5425014Norman Mason (2)Early jazz clarinetist, alto saxophonist, and trumpet player, born 1895 in Miami, Florida. +Grew up in the Bahamas, returned to the US and at 18 began touring with the Rabbit Foot Minstrel Show. Joined [a=Fate Marable] in New Orleans c. 1919, again working with Marable in 1927-1933. Based in St. Louis during 1930s, then moved to Chicago, began specilising on clarinet. Played in St. Louis in early 1950s, then started long association with [a=Singleton Palmer]. Suffered a stroke in 1969. +Brother of trumpet player [a=Henry Mason (2)].Needs VoteFate Marable's Society Syncopators + +5425015Sidney DesvignesSidney DesvigneJazz trumpeter and bandleader, born September 11, 1893 in New Orleans, died. December 2, 1959 in Pacoima, California. +From c. 1921 to 1925 he played with [a=Ed Allen] and [a=Fate Marable] on the riverboat Capitol; in the late 1920s he led the Southern Syncopaters on the SS Island Queen, and in the 1930s directed the Sidney Desvigne Orchestra aboard the SS Capitol. His riverboat career extended to the end of 1945, when he moved to southern California and operated a night club.Needs VoteSidney DesvigneFate Marable's Society Syncopators + +5425016Harvey LankfordEarly jazz trombonistNeeds VoteFate Marable's Society Syncopators + +5425043Dave Nelson And The King's MenTrumpets: Dave Nelson +Trombones: Clyde Barnhart, Henry Archer +Saxes: Hilton Jefferson, Glyn Pacque Cass McCord +Piano: Henry Duncan +Guitar: James Taylor +Bass: Walker +Drums: Fred Moore + +Needs VoteDavid Nelson And The King's MenArthur TaylorBuster BaileySam AllenWayman CarverWilbur De ParisSimon MarreroGlyn PaqueCharles FrazierDave Nelson (4)Gerald HobsonMelvin HerbertHarry Brown (15) + +5425920Tina LjungkvistSwedish classical flute player.Needs VoteGöteborgs Symfoniker + +5426294Lieve Van LanckerClassical soprano vocalistNeeds VoteChoeur de Chambre de Namur + +5426295Aldo PlatteauClassical tenor vocalistNeeds VoteAldo D. PlatteauChoeur de Chambre de Namur + +5426296Jacques DekoninckClassical tenor vocalistNeeds VoteChoeur de Chambre de Namur + +5426297Julie Vallée GendreClassical soprano vocalistNeeds VoteJulie Vallée-GendreChoeur de Chambre de Namur + +5426356Simon Oliver (3)British classical double bassist and tenor, born 1968 in Portsmouth, England. +He attended [l305416]. In late 1992, he joined the [a=Philharmonia Orchestra] as a member of the bass section. As a tenor vocalist, he has performed recitals in music club venues in the UK and overseas.Needs Votehttps://www.feenotes.com/database/artists/oliver-simon-1968-present/https://www.philharmonia.co.uk/orchestra/players/13850/simon_oliverhttps://vgmdb.net/artist/23315London Symphony OrchestraPhilharmonia Orchestra + +5429281Klaus TönshoffClassical clarinetist.Needs VoteDR SymfoniOrkestret + +5429624Myung Wung ChungNeeds Major ChangesM. Chung + +5432101Simo KorpelaSimo Oskari KorpelaNeeds Votehttps://fi.wikipedia.org/wiki/Simo_KorpelaS. Korpela + +5432450Ray Eberle (2)Ray EberleAlto Saxophone & clarinetNeeds VoteRay EberleCasa Loma OrchestraGlen Gray & The Casa Loma Orchestra + +5434446Blake HinsonClassical double bassist (born in West Des Moines, Iowa) who joined the New York Philharmonic in 2012. He previously played in the Grand Rapids Symphony for 2 years.Needs Votehttps://nyphil.org/about-us/artists/blake-hinsonNew York PhilharmonicGrand Rapids Symphony + +5434765Thomas Robson (3)Tenor vocalistNeeds VoteTom RobsonTom Robson (3)London Voices + +5434769Oliver GriffithsBritish tenor vocalist.Needs Votehttps://www.ojrgriffiths.com/https://twitter.com/oli_griffithsOliver GriffithLondon Voices + +5434772Mark Wood (21)British hornistNeeds VoteBBC Symphony OrchestraLouis Dowdeswell Big Band + +5434774Mike Solomon WilliamsBritish tenor vocalistNeeds Votehttp://www.m-s-w.co.ukMichael Sol WilliamsLondon Voices + +5434775Dani MayBritish soprano.Needs VoteLondon Voices + +5434776Robin TotterdellBritish classical trumpet player. Born in Basingstoke, Hampshire, England, UK. +He graduated from the [l290263] in 2009. He freelanced before joining the [a=Philharmonia Orchestra] as No. 2 Trumpet. Member of the [b]Pentagon Brass[/b].Needs Votehttps://www.facebook.com/robin.totterdell.7https://philharmonia.co.uk/bio/robin-totterdell/https://www.pentagonbrass.co.uk/robin-totterdell---trumpet.htmlhttps://www.imdb.com/name/nm10526920/London Symphony OrchestraPhilharmonia OrchestraLondon Symphony Orchestra Brass + +5434778Katherine Nicholson (2)British mezzo sopranoNeeds Votehttp://www.katherinenicholson.co.ukLondon VoicesThe Eric Whitacre Singers + +5434779David Gordon (15)Double bassistNeeds VoteRoyal Philharmonic Orchestra + +5434781Peter Smith (40)British tuba classical player. Born in Oldham, England. +He studied at the [l527847]. He first worked on a freelance basis with many orchestras and ensembles such as the [a835546], [a=London Brass], the [a=London Sinfonietta] and [a=The London Symphony Orchestra]. He has been Principal Tuba of the [a=Philharmonia Orchestra] since May 2008. He is also co-founder of the [b]Alberti Brass Quintet[/b] and the [b]Philharmonia Brass[/b]. +Professor of Tuba at the [l290263].Needs Votehttps://www.linkedin.com/in/pete-smith-6b18356a/?originalSubdomain=ukhttps://www.feenotes.com/database/artists/smith-peter/https://philharmonia.co.uk/bio/peter-smith/https://www.rcm.ac.uk/brass/professors/details/?id=03970Pete SmithLondon Symphony OrchestraPhilharmonia OrchestraSeptura + +5435658Grzegorz SabełBorn March 16, 1967 in Lublin. Polish french horn player.Needs Votehttps://waltornia.pl/biografie/984-grzegorz-sabelSinfonia VarsoviaOrkiestra Symfoniczna Filharmonii NarodowejConcerto AvennaOrkiestra Akademii BeethovenowskiejSinfonietta Cracovia + +5435997Dewey NealBass saxophonistNeeds VoteNealHitch's Happy Harmonists + +5436000Rookie NealJazz reedistNeeds VoteM. NealNealHitch's Happy Harmonists + +5436003Jerry BumpAmerican jazz trombonist.Needs VoteBumpHitch's Happy Harmonists + +5436004Maurice MayJazz tenor saxophonist and banjoistNeeds VoteMayHitch's Happy Harmonists + +5436006Haskell SimpsonJazz brass bassist (tuba, sousaphone)Needs VoteHitch's Happy Harmonists + +5436007Earl McDowellJazz drummerNeeds VoteEarl "Buddy" McDowellMcDowellHitch's Happy Harmonists + +5436008Harry Wright (5)Jazz clarinetistNeeds VoteHitch's Happy Harmonists + +5436013Fred RollisonJazz cornetistNeeds VoteFred RollinsonRollisonHitch's Happy Harmonists + +5440068William SchrickelAmerican classical bassistNeeds VoteMinnesota OrchestraThe Minneapolis Artists EnsembleWilliam Schrickel's Heavy Rescue + +5443504Olajos GyörgyHungarian classical bassoonistNeeds VoteGyörgy OlajosLiszt Ferenc Chamber Orchestra + +5443505Zempléni TamásHungarian classical hornistNeeds VoteTamás ZempléniLiszt Ferenc Chamber Orchestra + +5443771Ken "Goof" MoyerEarly jazz reed and mellophone player from Oklahoma City who was very active as a studio musician in New York from 1925 to 1929. Later returned to his hometown and formed a band under his own name around 1932.Needs Votehttps://adp.library.ucsb.edu/names/361026https://yestercenturypop.com/2016/06/27/much-more-than-a-goof-the-curious-case-of-ken-moyer/Goof MoyerMoyerFred Rich And His OrchestraSix Jumping JacksLadd's Black AcesLou Gold And His OrchestraJoe Candullo & His Everglades OrchestraAdrian Schubert And His OrchestraSam Lanin & His OrchestraPerry's Hot DogsKen Moyer's Novelty Trio + +5445803Sam Rice (2)Samuel RiceDouble bass player.Needs VoteSamuel RicePhilharmonia OrchestraBritten SinfoniaOctandre Ensemble + +5447497Alexander GrashenkovRussian Cellist. Born in Moscow in 1965. Currently [2016] a member of [a1032218]Needs Votehttp://russiannationalorchestra.org/about/musicians/biography/params/ID/266/Александр ГрашенковRussian National Orchestra + +5448203Giuliano SommerhalderClassical orchestra trumpeter and soloist. + +Born: 16 July 1985 in Zürich, Switzerland + +Son of [a=Max Sommerhalder].Needs Votehttp://www.giulianosommerhalder.comhttps://de.wikipedia.org/wiki/Giuliano_SommerhalderJulian SommerhalderL'Orchestre De La Suisse RomandeGewandhausorchester LeipzigConcertgebouworkest + +5449052Myron ShaplerAmerican Bassist in the swing era.Needs VoteJack Teagarden And His Orchestra + +5449056Fred KellerTrombonist in the swing era.Needs VoteJack Teagarden And His Orchestra + +5449919Kristina Borg (2)Swedish classical hornistCorrectGöteborgs Symfoniker + +5449969Dominik GausGerman trumpeter.Needs Votehttps://www.dominikgaus.net/Berliner SymphonikerBerlin Brass Quintet + +5452147Jean-Marc FollietFrench producer, manager. Created [l66877], [l579542], [l189014]CorrectJean Marc FollietLmlr + +5454339Matthieu AramaFrench classical violinistNeeds VoteOrchestre National Bordeaux Aquitaine + +5456586Axel GrünerFrench horn player.Needs VoteStaatskapelle BerlinBläserquintett der Staatskapelle Berlin + +5456587Thomas Beyer (2)Thomas Beyer (born 1958 in Stendal) is a German classical flautist.Needs VoteStaatskapelle BerlinBläserquintett der Staatskapelle Berlin + +5456589Gregor WittPlays Oboe and English horn.Needs VoteStaatskapelle BerlinBläserquintett der Staatskapelle Berlin + +5456712Christian Obermaier (2)German percussionist, born in 1967 in Passau, Germany.Needs VoteMünchner Rundfunkorchester + +5457100Akiko TodaJapanese soprano vocalistNeeds VoteLe Concert Spirituel + +5457101Richard BirenBaritone vocalist.Needs VoteBirenLe Concert Spirituel + +5457211Markus Kern (4)Classical violinistNeeds VoteBayerisches Staatsorchester + +5459139Lieselot De WildeBelgian soprano vocalist (born in Ghent, 1984).Needs Votehttp://www.lieselotdewilde.nethttps://muziekcentrum.kunsten.be/identity.php?ID=153544Liselot De WildeChoeur de Chambre de NamurPsallentesEncantar + +5459229Colin StartViolist.Needs VoteGabrieli Players + +5459447Thomas Wolf (9)Thomas Andre Wolf[b]Thomas Wolf[/b] (b. September 1947) is an American piano tuner, technician, researcher, and maker of clavichords, harpsichords, early fortepianos, and other types of stringed keyboard instruments. With his wife, [b][url=https://discogs.com/artist/3837346]Barbara Wolf[/url][/b], they began building historical reproductions in 1969 and established [i]Wolf Instruments[/i] company in 1975; it has operated in The Plains, Virginia (near Washington, DC) since 1992. They offer an extensive range of historical fortepiano designs, from [a=Bartolomeo Cristofori] and [a=Gottfried Silbermann] to [url=https://discogs.com/artist/10194454]J.D. Dulcken[/url], [a=Anton Walter (2)], and [a=Nannette Streicher]. Besides keyboards, Wolfs make violones and basses and provide tuning, setups, repairs, and maintenance of antique instruments for concerts and studio recordings. + +Initially trained as musicians at the [l=Interlochen Arts Academy] and [l=New England Conservatory Of Music], Thomas and Barbara apprenticed as instrument-makers in Boston with [a=Eric Herz] and later with renowned maker and scholar [b][a=Frank Hubbard][/b] (1920—1976). They further undertook conservation training at the [l=Smithsonian Institution], establishing a long-lasting collaboration with the NMAH's [url=https://discogs.com/label/2456986]musical instruments collection[/url]. In 1975, Thomas and Barbara launched their private workshop; when a veteran harpsichord maker, [b][a=William Dowd][/b] (1922—2008), closed his Boston firm in 1988, he joined Wolfs and spent the next five years at their atelier in semi-retirement. In 2002, Tom Wolf was a "James Smithson Fellow" at the [l=National Museum Of American History], researching early decades of fortepiano development. Following his extensive study and documentation of the 1722 [i][url=https://discogs.com/artist/6256125]Cristofori[/url][/i] piano from Rome, Thomas and Barbara created the first modern copy. + +Some notable institutions and musicians who own Wolf's instruments include the [l543577], the [l477743], [l275380], [url=https://discogs.com/label/350923]Harvard[/url], [url=https://discogs.com/label/319016]Stanford[/url], and [l520929], the [url=https://discogs.com/label/1272701]National Music Museum[/url] in South Dakota, [a=Malcolm Bilson], [a=Christopher Hogwood], [a=Katia Et Marielle Labèque], [a=Robert Levin], [a=Nicholas McGegan], [a=Jacques Ogg] and [a=Kenneth Slowik].Needs Votehttps://www.linkedin.com/in/tom-wolf-51915221/https://wolfinstruments.com/https://www.si.edu/object/archives/components/sova-sia-faru0485-refidd1e5539https://www.washingtonpost.com/lifestyle/style/a-couple-find-their-calling-in-harpsichords/2011/03/03/ABqwSOS_story.html + +5460085Jean-Pierre OdassoFrench trumpeterNeeds VoteOrchestre Philharmonique De Radio FranceJust'a 5 + +5460087Patrice BuecherFrench trombonistNeeds VoteOrchestre Philharmonique De Radio FranceJust'a 5Les Cuivres Français + +5460092Andy Lambert (4)American jazz bassistNeeds VoteWoody Herman's Four Chips + +5460095Dan Wilson (15)Jazz pianist, active in the 1920s.Needs VoteWilsonJohnny Dunn's Original Jazz Hounds + +5461172Marie JennesBelgian soprano vocalist.Needs VoteChoeur de Chambre de Namur + +5461770Julie MeileClassical violinist.Needs VoteDR SymfoniOrkestret + +5461772Astrid ChristensenDanish viola playerNeeds VoteDet Kongelige KapelDR SymfoniOrkestret + +5461998Billy Douglas (3)William DouglasJazz trumpeter and singer, born August 12, 1912 in New Haven, CT, died April 14, 1978 in Springfield, MA.Needs VoteBill DouglasEarl Hines And His OrchestraDon Albert And His Orchestra + +5461999Palmer DavisCredited as trumpeter.Needs VoteFats PalmerPalmer "Fats" DavisEarl Hines And His Orchestra + +5462000Gene Thomas (6)Credited as bassist.Needs VoteEarl Hines And His Orchestra + +5462143Bill McMurrayClassical bass vocalistNeeds VoteChicago Symphony ChorusEnsemble Cor & Vox + +5463071Grantley McDonaldClassical Bass & Baritone vocalist, and researcher on renaissance music.Needs VoteChoeur de Chambre de NamurCappella PratensisDiabolus In MusicaThe Brabant EnsembleLes Six (2)Salzburger BachchorFount & Origin + +5463161Петр АлексеевПётр Иванович АлексеевPyotr Ivanovich Alekseev (1892-1960) - domrist, conductor, Honored Artist of the RSFSR (1934). +Needs Votehttps://domrist.ru/news/13487-petr-ivanovich-alekseevhttps://100philharmonia.spb.ru/persons/9585/А. АлексеевОрк. Нар. Инстр. Под Упр. П. И. АлексееваОркестр Нар. Инстр. Под Упр. П. И. АлексееваП. АлексеевП. И. АлексеевПётр АлексеевНациональный Академический Оркестр Народных Инструментов России Имени Н.П. ОсиповаРусский Народный Оркестр Имени В. АндрееваОркестр Народных Инструментов п/у П. И. АлексееваКрасноармейский Балалаечный Оркестр ЦДКА + +5463234Krassimira KrastevaBulgarian violoncello player, born in Sofia in 1979.Needs VoteKrassimira KrasteraKrassimira KrastsevaStuttgarter PhilharmonikerSüdwestdeutsches Kammerorchester + +5464198Edwin IlgEdwin Ilg is a German violinist. +Needs VoteGewandhausorchester Leipzig + +5465111Regina Angerer-BründlingerAustrian classical trumpeterNeeds VoteBruckner Orchestra Linz + +5465178Tiago Oliveira (4)Tiago Pinheiro de OliveiraClassical tenor Tiago Pinheiro de Oliveira was born on the 29 of November 1981 in Porto, Portugal where he studied Singing, trumpet and Musical Theorie.Needs Votehttp://www.tiagoliveira.com/https://www.facebook.com/profile.php?id=100009177627517Thiago OliveraTiago Pinheiro de OliveiraLa Capella Reial De CatalunyaChoeur de Chambre de NamurBarockorchester L'Arpa FestanteLa FeniceChor Der J.S. Bach StiftungAbendmusiken Basel + +5465180Maria Chiara GalloItalian classical soprano, mezzo-soprano and alto vocalist, born in Reggio Emilia (Italy) in 1987.Needs Votehttps://www.facebook.com/maria.c.gallo.50La Capella Reial De CatalunyaNederlands KamerkoorConsort Del Collegio GhislieriCoro GhislieriDramatodía + +5466035Seong-Jin Cho조성진“To hear Cho breathe tenderness and freedom into this music while giving it a sturdy rhythmic profile was a striking thing” + +San Francisco Chronicle + +Seong-Jin Cho has established himself worldwide as one of the leading pianists of his generation and most distinctive artists on the current music scene. With an innate musicality and consummate artistry, his thoughtful and poetic, virtuosic, and colourful playing can combine panache with purity and is driven by an impressive natural sense of balance. He is celebrated unanimously across the globe for his expressive magic and illuminative insights. + +Cho was brought to the world’s attention in 2015 when he won First Prize at the Chopin International Competition in Warsaw, and his career has rapidly ascended since. In early 2016, he signed an exclusive contract with Deutsche Grammophon and, in 2023, Cho was awarded the prestigious Samsung Ho-Am Prize in the Arts in recognition of his exceptional contributions to the world of classical music. An artist high in demand, Cho works with the world’s most prestigious orchestras including Berliner Philharmoniker, Wiener Philharmoniker, London Symphony Orchestra, Concertgebouworkest, and Boston Symphony Orchestra. Conductors he regularly collaborates with include Myung-Whun Chung, Gustavo Dudamel, Andris Nelsons, Yannick Nézet-Séguin, Gianandrea Noseda, Sir Antonio Pappano, Sir Simon Rattle, Santtu-Matias Rouvali, Esa-Pekka Salonen, and Lahav Shani. In the 2024/25 season, Cho held the position of Artist in Residence with the Berliner Philharmoniker. + +In the 2025/26 season, Seong-Jin Cho is the London Symphony Orchestra’s Artist Portrait. The position sees him work with the orchestra on multiple projects across the season, with concerto performances including the world premiere of a new Piano Concerto by Donghoon Shin, written especially for him. The position also features touring performances across Europe, as well as chamber music concerts and in recital at LSO St Luke’s. Elsewhere, he notably returns to Pittsburgh Symphony Orchestra under Manfred Honeck with performances in Pittsburgh and Carnegie Hall, to Boston Symphony Orchestra with Andris Nelsons, and to Los Angeles Philharmonic under Gustavo Dudamel. Cho embarks on several international tours, including his notable return to Czech Philharmonic with Semyon Bychkov in Taiwan and Japan, and Münchner Philharmoniker with Lahav Shani in Korea, Japan, and Taiwan. He also performs with Gewandhausorchester Leipzig with Andris Nelsons throughout Europe in Autumn 2025. + +South Korean classical pianist, born 28 May 1994 in Seoul. Winner of the XVII International Chopin Piano Competition in 2015.Needs Votehttps://seongjin-cho.com/biography/チョ・ソンジン + +5466792Pierre CruchonPierre Charles Camille CruchonFrench oboe player and conductor (1908 - 1973), was married to soprano [a4053954]Needs VoteOrchestre De L'Opéra De LyonOrchestre De L'Opéra De MarseilleOrchestre Du Théâtre National De L'Opéra-Comique + +5467435Howard GaffneyJazz trumpet playerCorrectHoward GaffreyBob Zurke And His Delta Rhythm BandTeddy Powell And His Orchestra + +5467436Bobby DomenickAmerican jazz guitarist and banjo player who toured with Bob Chester, Buddy Rogers and Clyde McCoy. Born in 1915, he was the uncle of guitarist Bucky Pizzarelli and brother of fellow jazz guitarist/banjo player Peter Domenick. They taught both Bucky and his son John how to play guitar. He recorded with Raymond Scott, Joe Mooney, and Joe Venuti. Needs VoteBob DomenickBobby DominickRobert DomenickRobert DominickLouis Armstrong And His All-StarsTeddy Powell And His OrchestraBob Chester And His Orchestra + +5467704Janne Pulkkinen (2)Finnish classical bassoonistNeeds VoteOrchester der Bayreuther FestspieleSuomen Kansallisoopperan Orkesteri + +5469462Viktor GaskinNeeds VoteGerald Wilson Orchestra + +5472402Maria RocaViolinist.Needs VoteCollegium Vocale + +5473355Bertram BanzBertram Banz is a German classical violist.Needs VoteHertram BanzRadio-Sinfonie-Orchester FrankfurtOrchester der Bayreuther Festspiele + +5474384Matthias GromerMatthias Gromer is a German trombone player, composer and music professor.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspieleLandesjugendorchester Baden-WürttembergMannheim Brass Quintett + +5475392Stacy SimpsonTrumpet playerNeeds VoteSaint Louis Symphony Orchestra + +5476517Maider MúgicaExecutive producer, mainly for [l7703].Correct + +5476683Urszula Janik Urszula Janik-LipińskaPolish classical flautist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +5476787Maria FlaateClassical hornistNeeds VoteOslo Filharmoniske Orkester + +5478162Jonathan Hadasיונתן הדסClarinetist, born 1986 in Tel Aviv, Israel.CorrectIsrael Philharmonic Orchestra + +5478775Marine Lafdal-FrancFrench classical soprano vocalistNeeds VoteLafdal-FrancChoeur de Chambre de NamurGalilei Consort + +5479377Lea DesandreFrench-Italian mezzo-soprano, born in 1993.Needs Votehttp://www.leadesandre.comDesandreLes Arts FlorissantsPygmalionJupiter (55) + +5486337Edward ErwinAmerican trombone player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +5491333Christian Dior (2)French fashion designer born on January 21, 1905 in Granville (France) and died on October 24, 1957 in Montecatini Terme (Italy). Founder of the fashion house [a11735225].Needs Votehttp://www.biography.com/people/christian-dior-9275315Dior (7) + +5491453Zoe MatthewsLondon-based classical violistNeeds VoteZoë MatthewsLondon SinfoniettaLondon Contemporary Orchestra + +5492430Michael GoldschlagerCellist, born in New York City, active in both the US and Australia.Needs Votehttps://au.linkedin.com/in/michael-goldschlager-20866914West Australian Symphony OrchestraSydney Symphony OrchestraTasmanian Symphony OrchestraMacquarie Trio + +5492847Karl Brugger (2)Trumpet playerNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5493236Antoine DreyfussClassical hornistNeeds VoteEnsemble Court-CircuitOrchestre Philharmonique De Radio France + +5494508Spencer PrinzJazz drummer.Needs VoteArtie Shaw And His Orchestra + +5495585Stefan Arzberger[b]Stefan Arzberger[/b] (b. 1972) is a German classical violinist, best known as the 1st violin in the [a=Lucerne Festival Orchestra] (since 2003) and [url=/artist/838239]Leipzig String Quartet[/url] (since 2007). Before joining LSQ, he performed with the [url=/artist/837511]Bayreuth Festival[/url] and [url=/artist/522210]Leipzig Gewandhaus Orchestras[/url], among other ensembles. He plays a 1746 [i][a=Domenico Montagnana][/i] violin. + +In March 2015, Arzberger came to the United States on a mini-tour with the Leipzig Quartet. Days after [l=The Library Of Congress] concert, Stefan was arrested in New York City after a tremendously bizarre and troubling accident at the Hudson Hotel. Allegedly, Stefan physically assaulted and nearly choked a random hotel guest, 64-year-old Pamela Robinson from Asheville, North Carolina; furthermore, as claimed in her civil lawsuit, Arzberger was "completely naked." The artist was released on a $100,000 bail with "no-travel" restrictions and his passport seized. Several prominent musicians, including LSQ members and [a=New York Philharmonic] ex-director [a=Kurt Masur] (who worked with Arzberger at Leipzig's [l=Gewandhaus]), voiced their unanimous support and insisted on Stefan's innocence. In April, as the Manhattan Supreme Court hearings began, his lawyers published an official statement, claiming Arzberger himself fell "victim of a horrible attack" and was "involuntarily drugged with powerful agents" by an unknown person who also stole his belongings. After that, in an "unfathomable and entirely out-of-character" incident, Stefan assaulted a next-door guest "while in an unconscious state" and had "no present memory of the events." The defense team concluded they are "exploring all options to expeditiously resolve these false charges." + +Hotel CCTV footage presented in court confirmed that around 4 AM, Stefan Arzberger entered his room with a sex worker (male crossdresser prostitute well-known to local authorities), who left 40 minutes later, alone and carrying Stefan's iPad. Three hours later, Arzberger was shown stumbling naked in the hallway, knocking on doors. The [l=New York Post], [l=Bunte], and other US and European tabloids had a field day, savoring every salacious detail of the "naked violinist" drama. On 1st May 2015, Arzberger pleaded "not guilty" to charges of attempted murder, assault, and strangulation. The same month, the [url=/artist/838239]Leipzig Quartet[/url] announced that German violinist [b][a=Conrad Muck][/b] temporarily took over the 1st violin chair. In his June interview with [l=The New York Times], Stefan reiterated he didn't remember anything from the ill-fated night; the alleged victim refused to speak with the press. In December 2015, Arzberger announced his resignation from the LSQ. He pleaded guilty to the lesser charge, a "reckless assault in the third degree," in June 2016, with more serious accusations dropped; Stefan received no jail time and got unconditional discharge. Arzberger's stage career gradually recovered; in January 2018, Stefan quietly returned to LSQ, continuously performing and recording with the Quartet, as well as other ensembles.Needs Votehttps://theviolinchannel.com/leipzig-quartet-stefen-arzberer-conrad-muck-replacement-1st-violinist/https://www.nytimes.com/2015/06/13/arts/music/bizarre-court-case-puts-a-violinist-and-leipzig-string-quartet-in-an-unflattering-light.htmlhttps://nypost.com/2015/04/30/violinist-charged-in-naked-hotel-rampage-was-drugged-by-hooker-lawyer/https://slippedisc.com/2015/04/the-naked-quartet-leader-is-innocent-ok/https://slippedisc.com/2016/08/the-naked-violinist-case-takes-a-last-unhappy-twist/Gewandhausorchester LeipzigSymphonie-Orchester Des Bayerischen RundfunksOrchester der Bayreuther FestspieleLeipziger StreichquartettLucerne Festival OrchestraEuropean Union Chamber OrchestraGustav Mahler Jugendorchester + +5495666Kullervo Linnan SolistiorkesteriNeeds Major ChangesKullervo Linna + +5497448Mechthild von RysselMechthild von Ryssel is a German violinist. + +Needs Votehttp://www.staatskapelle-dresden.de/staatskapelle/orchestermitglieder/anzeige/mw/mechthild-von-ryssel/Staatskapelle DresdenRobert-Schumann-PhilharmonieDresdner KapellsolistenCappella Musica Dresden + +5497471Winfried Berger (2)German violist. He was a member of the [a578737] from 1977 to 2008. + +Needs VoteStaatskapelle Dresden + +5497899StudiumNeeds Major Changes + +5497961Marie-Josée RitchotMarie-Josée Romain-RitchotClassical violinist.Needs VoteMarie-Josée Romain-RitchotOrchestre Philharmonique De Radio France + +5500246Rudi LiebetrauClassical timpani playerNeeds VoteKammerorchester Carl Philipp Emanuel Bach + +5501412Boston Early Music Festival OrchestraOrchestra of the Boston Early Music Festival.Needs Votehttps://bemf.orghttps://www.facebook.com/bostonearlyhttps://en.wikipedia.org/wiki/Boston_Early_Music_FestivalBoston Early Music FestivalOrquesta Del Festival De Música Antigua De BostonDennis GodburnMyron LutzkeErin HeadleyStephen StubbsDagmar ValentováJean-Christophe Maillard (2)John Grimes (3)David DouglassFrauke HessWill WrothDaniel StepnerJohn Gibbons (6)Michael WillensRobert MealyKlaus BundiesMatthew JennejohnStephen HammerPeter ŠestákDavid Miller (15)Elizabeth BlumenstockMiloš ValentFrançois LazarevitchDorothee MüllerMarc SchachmanAnthony Martin (6)Monika FischalekHenrieke GoschNils JönssonMary RiccardiBodo LönartzHan TolSaskia FikentscherCorinna Hildebrand-MalcolmGregor DuBucletSarah MöllerSimon LinnéAnnette JohnVirginia BrewerJesse Levine (4)Dennis FerryJohn Thiessen + +5502076Phil Taylor (19)Philip TaylorClassical cellist.Needs VotePhilip TaylorLondon Philharmonic OrchestraBBC Symphony OrchestraThe London Cello Sound + +5502491Nicolas TulliezFrench classical harpist, born in Paris in 1971.Needs VoteTulliezOrchestre Philharmonique De Radio FranceTrio Nobis + +5502943Leandro MarziotteUruguayan counter-tenorNeeds Votehttp://leandromarziotte.comChoeur de Chambre de NamurScherzi MusicaliCappella Mediterranea + +5505322Scott Tucker (2)Needs Major Changes + +5507404Benedikt DinkhauserAustrian bassoonist, born in Innsbruck, Austria.Correcthttp://www.dinkhauser.net/benedikt_dinkhauser/benedikt_dinkhauser.htmlOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Jeunesse Orchester + +5507436Sebastian BruAustrian cellist, born 24 October 1987 in Vienna, Austria.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Jeunesse OrchesterGustav Mahler Jugendorchester + +5507439Holger GrohAustrian violinist, born 27 July 1976 in Weiz, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerGrazer Symphonisches OrchesterWiener VirtuosenSteude Quartett + +5511044Bernhard Naoki HedenborgAustrian cellist, born 24 July 1979 in Salzburg, Austria.Needs Votehttp://bn.hedenborg.com/enOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraThomas Christian EnsembleEnsemble RaroIgnaz Pleyel Quartett + +5511492Robert PadghamPiano technician.CorrectRob Padgham + +5512484Mischa MeyerGerman cellist, born in 1988 in Baden-Baden, Germany.Needs VoteDeutsches Symphonie-Orchester BerlinOrchester der Bayreuther FestspieleEisler Quartett + +5512654Julie ChouquerCellist.Needs VoteOrchestre Des Concerts Lamoureux + +5513195Domenico RighettiItalian viola player.Needs VoteOrchestra Del Teatro Alla Scala + +5514805Janet Ferguson (2)Flautist.Needs VoteLos Angeles Philharmonic Orchestra + +5514900Martin JakobsClarinetist.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther FestspieleErnst Hutter & Die Egerländer Musikanten + +5514903Volker HanemannVolker Hanemann (born 1966) is a German oboe and English horn player.Needs VoteStaatskapelle DresdenOrchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspiele + +5515181Leonard SimsCredited as jazz tenor saxophone player.Needs VoteBenny Goodman And His Orchestra + +5515442Stephan HoeverStephan Hoever (born 1965) is a German violinist. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksEuropean Union Youth OrchestraTonhalle-Orchester Zürich + +5515443Michael Friedrich (6)Michael Friedrich is a German violinist. +Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +5515444Marije GrevinkMarije Grevink is a Dutch violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksGustav Mahler JugendorchesterOrchester Des Schleswig-Holstein Musik Festivals + +5515445Franz ScheuererFranz Scheuerer (born 1961 in Munich) is a German violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksScheuerer KlavierquartettScheuerer Trio + +5517243Joe Wilson (17)US swing trumpeterNeeds VoteJubilee All Stars + +5517382Irmgard SeidlIrmgard Seidl is an Austrian violinist, pianist and music teacher. She's the sister of [a1476043].Needs VoteConcentus Musicus Wien + +5518747Fabio ArnaboldiHe was born in Novazzano (Switzerland). +He studied violin at the "G. Verdi" Conservatory of Como graduating with honors; he then perfected himself with D. Schwarzberg (at the "Romanini" Foundation of Brescia) and with M. Quarta (at the Conservatory of Italian Switzerland). He has also studied piano, organ, orchestra conducting and composition (with I. Fedele and A. Solbiati). He has been awarded in various interpretation competitions (Swiss Music Competition for Youth, National Violin Competition of the Music School of Milan, Kiefer Hablitzel Stiftung of Bern).Needs Votehttps://www.orchestradellasvizzeraitaliana.ch/en/osi/musicians/detail/id/4018/fabio-arnaboldiOrchestra Della Radio Televisione Della Svizzera ItalianaCamerata Giovanile Della Svizzera Italiana + +5518750Irina RoukavitsinaIrina Roukavitsina-Bellisario +She is native to Novosibirsk (Russia). He studied at the "Tchaikovsky" Conservatory in Moscow and at the Musikhochschule in Mannheim. He also attended master classes with T. Varga, I. Stern and R. Nodel. He graduated at the Biennial Course of Virtuosic Training according to the technical principles of the Paganinian School at the "N. Paganini "of Genoa. Needs Votehttps://www.osi.swiss/de/osi/musiker/detail/id/4016/irina-roukavitsina-bellisarioIrina RoukavitsynaOrchestra Della Radio Televisione Della Svizzera Italiana + +5518754Johann Sebastian PaetschAmerican cellist.Needs Votehttps://en.wikipedia.org/wiki/Johann_Sebastian_PaetschJohan S. PaetschJohann PaetschThe Yale CellosOrchestra Della Radio Televisione Della Svizzera Italiana + +5519271Annemieke van der PloegDutch classical alto/mezzo-soprano vocalist and singing coach.Needs Votehttps://www.annemiekevanderploeg.nl/Nederlands Kamerkoor"Robin Hood" De Musical Cast + +5519272Petra EhrismannClassical alto vocalist and flautist, born in Switzerland, since based in the Netherlands.Needs Votehttp://petraehrismann.com/Cappella AmsterdamNederlands Kamerkoor + +5519275Mattijs HoogendijkDutch Tenor vocalistNeeds VoteNederlands Kamerkoor + +5519846Klaidi SahatciBorn in Tirana, Albania. +First Concertmaster of Tonhalle Orchestra Zurich, soloist and professor in the University of Music of Italian Switzerland.Needs Votehttp://www.klaidisahatci.com/it/Klaidi SahatçiTonhalle-Orchester ZürichAltus Trio + +5520276Kazimierz AdamskiPolish classical trumpeter.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +5520428Andreas LaakeClassical violinist & conductorNeeds VoteAndreas LakeOrchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Da Camera Del Locarnese + +5520995Felix VogelsangGerman cellist, born in 1975.Needs Votehttp://www.felixvogelsang.comEuropean Union Youth OrchestraRadio-Philharmonie Hannover Des NDRDetmolder KammerorchesterOrchestra Della Radio Televisione Della Svizzera ItalianaQuartetto Energie Nove + +5523368Hubert AumereHubert Aumere (1919 - 1998) was an Estonian violinist.Needs VoteH. AumereSymphonie-Orchester Des Bayerischen Rundfunks + +5524725Alicja ŚmietanaViolinist.Needs VoteAlicja SmietanaThe Academy Of St. Martin-in-the-FieldsEstonian Festival Orchestra + +5526720Stefan LüghausenGerman classical trombonistNeeds VoteBamberger Symphoniker + +5528116Laurence Del VescovoClassical violinist.Needs VoteOrchestre National De FranceParis Symphonic Orchestra + +5528117Boris TrouchaudFrench double bassist.Needs VoteOrchestre Philharmonique De Radio FranceWild Jam Family + +5528118Marc Desjardins (3)ViolinistNeeds VoteOrchestre Du Théâtre Royal De La MonnaieAppassionato Orchestra + +5528119Adeliya ChamrinaClassical violist.Needs VoteOrchestre National De FranceQuatuor Elysée + +5528120Lucas HenriFrench double bassist.Needs VoteOrchestre Philharmonique De Radio France + +5530181Joachim HuschkeJoachim Huschker (born 1972) is a German bassoonist.Needs VoteStaatskapelle DresdenRundfunk-Sinfonieorchester BerlinDresdner PhilharmonieGustav Mahler JugendorchesterEnsemble Frauenkirche Dresden + +5530199Bernhard MetzGerman classical violinist, born in 1973 in Saarbrucken.Needs VoteMünchner Philharmoniker + +5530206Daniel Schmitt (7)Daniel Schmitt is a German violist. +CorrectBayerisches StaatsorchesterWest Australian Symphony OrchestraEuropean Union Youth OrchestraOrchestre Du Théâtre Royal De La MonnaieSWR Sinfonieorchester Baden-Baden Und FreiburgOrchestra Della Radio Televisione Della Svizzera ItalianaAntwerp Symphony Orchestra + +5530210Kersten McCallGerman classical flautistNeeds VoteKersten Mc CallConcertgebouworkestLinos Ensemble + +5530310Manfred Neumann (2)Manfred Neumann (born 1952) is a German horn player and conductor.Needs Votehttp://neuman-musicart.comManfred NeumanRundfunk-Sinfonieorchester SaarbrückenGürzenich-Orchester Kölner PhilharmonikerDeutsche Radio Philharmonie Saarbrücken Kaiserslautern + +5530574Joe MelvinBritish classical double bassist. Born in London, England, UK. +He graduated from the [l527847] in 2008. In 2013, he joined the [a=Philharmonia Orchestra], and a year later the [a=London Symphony Orchestra]. Performer in a musician's collective. +He has been married to [a=Julia O'Riordan] since 3 August 2017.Needs Votehttps://www.facebook.com/joe.melvin.7https://lso.co.uk/orchestra/players/strings.html#Double_bassesLondon Symphony OrchestraPhilharmonia OrchestraOrchestrate + +5531213Tim Lowe (3)British cellist. + +Tim enjoys a busy and varied career and is quickly emerging as one of the new generation of outstanding young British cellists. He is established as a recitalist and chamber musician appearing regularly in festivals throughout the UK and Europe. He has played as a soloist in all the main concert venues in the UK and in London many times at Wigmore Hall, Purcell Room, Cadogan Hall, St John’s Smith Square. Tim is Guest Principal Cello of the [url=https://www.discogs.com/artist/415725]English Chamber Orchestra[/url] and tours around the UK and internationally with the ECO and the ECO Ensemble. He has also been Guest Principal at other major orchestras including the [url=https://www.discogs.com/artist/835546]BBC Scottish Symphony Orchestra[/url] and the [url=https://www.discogs.com/artist/557187]Irish Chamber Orchestra[/url] and [url=https://www.discogs.com/artist/1260606]Royal Northern Sinfonia[/url]. [from: http://timlowecellist.com/biography.html]Needs Votehttp://timlowecellist.comTimothy LoweEnglish Chamber OrchestraThe Rossetti Ensemble + +5531216Tom LesselsThomas LesselsBritish clarinet & bass clarinet player, and educator. Born in Aberdeen, Scotland, UK. +He studied at the [l527847]. Principal Bass Clarinet in the [a=BBC Symphony Orchestra], Sub-Principal Clarinet in [a=The Academy Of St. Martin-in-the-Fields], founder member of the [a=Ossian Ensemble], and member of several chamber ensembles including the [b]European Chamber Players[/b] & the [b]Ensemble Amorpha[/b].Needs Votehttps://www.facebook.com/tom.lessels.3https://twitter.com/TomLesselshttps://www.instagram.com/tomlessels4/?hl=enhttps://open.spotify.com/artist/4Bibf9fU3qLl3TJERjucoKhttps://www.asmf.org/musician-profiles/https://www.theossianensemble.com/tom-lesselshttps://soundbetter.com/profiles/306776-thomas-lesselsThomas LesselsLondon Symphony OrchestraBBC Symphony OrchestraThe Heritage OrchestraThe Academy Of St. Martin-in-the-FieldsOssian EnsembleEuropean Chamber Players + +5533265Peter De LaurentiisItalian classical tenor vocalist born 1977 in GenoaNeeds Votehttp://www.bach-cantatas.com/Bio/Laurentiis-Peter.htmhttps://www.facebook.com/peter.delaurentiisChoeur de Chambre de NamurCappella PratensisChoeur Arsys BourgogneInaltocantoLX + +5534688Deborah NormanClassical soprano vocalist.Needs Vote + +5541858Jerry Cox (4)Big band bassistNeeds VoteLucky Millinder And His Orchestra + +5542767Marjorie NealMarjorie Odlivak née NealMarjorie Neal (2 November 1926 - 3 February 2005) was an American cellist.Needs VoteM. NealNew York City Symphony OrchestraBaltimore Symphony OrchestraNational Symphony OrchestraBergen Filharmoniske OrkesterRadio City Music Hall OrchestraThe Classic String Quartet (2) + +5545831Reinhold ErnstHorn playerNeeds VoteEnsemble Modern + +5547816Jörg PotratzDouble bassist.Needs VoteJoerg PotratzBerliner Symphoniker + +5548588Bill Thompson (21)Jazz pianistNeeds VoteBill "Nose" ThompsonWilliam ThompsonHenry "Red" Allen And His Orchestra + +5549858Mirte de KokClassical violinistCorrectConcertgebouworkest + +5550591Guillermo Fernández-ShawGuillermo Fernández-Shaw IturraldeSpanish poet, journalist and librettist, born 26 February 1893 and died 17 August 1965 in Madrid, Spain. Son of also writer [a=Carlos Fernández Shaw] and brother of [a5550588]. With [a1638152], he wrote the libretto for some of the best-known zarzuelas of the 20th century: "Doña Francisquita", "Luisa Fernanda", "La rosa del azafrán"...Needs Votehttps://es.wikipedia.org/wiki/Guillermo_Fern%C3%A1ndez-Shaw_Iturraldehttps://www.march.es/bibliotecas/repositorio-fernandez-shaw/archivo_guillermoFS.aspx?l=1D. GuillermoD. Guillermo, Fernandez ShawF. SawF. ShawF.ShawFdez ShawFdez-ShawFdez. ShawFernanderFernandezFernandez ShawFernandez-ShawFernándezFernández ShawFernández-ShawG. F. ShawG. Fdez ShawG. Fdez. ShawG. Fernandez ShawG. Fernandez-ShawG. Fernández ShawG. Fernández-ShawG.F. ShawG.Fernández ShawGuillermoGuillermo Fernandez ShawGuillermo Fernandez Shaw IturraldeGuillermo Fernandez-ShawGuillermo FernándezGuillermo Fernández ShawGuillermo Fernández-Shaw IturraldeShaw + +5552432Bogdan ŚnieżawskiPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +5553991Nicola ClarkClassical violinist.Needs VoteHallé Orchestra + +5553992Clare RoweAustralian cellist.Needs VoteHallé Orchestra + +5553996Martin Schäfer (7)Classical violist.Needs VoteHallé OrchestraUp North Session Orchestra + +5553997Rob CriswellClassical violist.Needs VoteRobert CriswellHallé Orchestra + +5553998John GralakClassical violinist.Needs VoteHallé Orchestra + +5554002Victor HayesClassical violinist.Needs VoteHallé Orchestra + +5555004Barbara Schmidt-GadenClassical alto vocalist & producerNeeds VoteChor Des Bayerischen Rundfunks + +5555977Hansjörg ProfanterHansjörg Profanter (born 28 November 1956) is an Italian classical trombonist. He was a member of the [a604396] from 1979 to 2022.Needs Votehttps://www.br-so.com/instrumentation/hansjoerg-profanter/Bayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen RundfunksOrchestra Del Teatro Regio Di TorinoBavaria Blechbläsersolisten, MünchenBRassensemble München + +5558626Danmarks Radios Symfoniorkester[i]For the royal Danish symphony orchestra, see [a=Det Kongelige Kapel].[/i] +[b]Danmarks Radios Symfoniorkester[/b], often referred to as [b]Radiosymfoniorkestret[/b], was the name from 1959 to 1996 of the symphony orchestra of [l=Danmarks Radio], the Danish national broadcasting corporation. The orchestra is also officially the national orchestra of Denmark, which is apparent in its official English name, [b]The Danish National Symphony Orchestra[/b]. + +It was the largest orchestra in Scandinavia with a permanent residency at [l= Radiohusets Koncertsal]. The first permanent conductor in this period was [a=Thomas Jensen] (1957-63). The first conductor to be appointed with the formal title of principal conductor was [a=Herbert Blomstedt] (1967 to 1977), followed by – after an interregnum of 9 years – [a=Lamberto Gardelli] (1986-88). Under his leadership the orchestra was extended to the current size of 99 musicians. Next principal conductors were [a=Leif Segerstam] (1988-95) and [a=Ulf Schirmer] (1995-98). + +The name of the orchestra has evolved over time as follows: +- From 1925 to mid-1930's: [a=Statsradiofoniens Orkester] +- From mid-1930's to 1959: [a=Statsradiofoniens Symfoniorkester] +- From 1959 to 1996: Danmarks Radios Symfoniorkester +- From 1996 to 2008: [a=DR Radiosymfoniorkestret] +- Since 2008: [a=DR SymfoniOrkestret]Correcthttps://www.imdb.com/name/nm5045939/https://www.imdb.com/name/nm14498166/ChorusDNRSODR Symphony OrchestraDanish Broadcast EnsembleDanish Concert Radio OrchestraDanish National OrchestraDanish National Orchestra Of The State RadioDanish National Orchestra of the State RadioDanish National Radio SoDanish National Radio Symphony OrchestraDanish National Radio Symphony Orchestra And ChorusDanish National Radio Symphony OrechestraDanish National Symphony OrchestraDanish National Symphony Orchestra / DRDanish National Symphony Orchestra/DRDanish Radio Concert OrchestraDanish Radio OrchestraDanish Radio Symphony OrchestraDanish Radio Symphony Orchestra And ChorusDanish Radio Symphony Orchestra*Danish State Radio OrchestraDanish State Radio SymphonyDanish State Radio Symphony OrchestraDanish Symphony OrchestraDanmarks Radio SymfoniorkesterDanmarks Radio' SymfoniorkesterDanmarks Radio's SymfoniorkesterDanmarks Radio-SymfoniorkesterDanmarks RadiosymfoniorkesterDanmarks RadiosymfoniorkestretDanmarks RadiosymphoniorkestretDansk RadiosymfoniorkesterDansk RadiosymfoniorkestretDanska Radions SymfoniorkesterDas Dänische Radio SinfonieorchesterDas Orchester des Dänischen Staats-RadiosDk. Radio Symfoni OrkesterDänisches Radio-Sinfonie-Orchester KopenhagenDänisches Radio-Symphonie-OrchesterMedlemmer Af Danmarks RadiosymfoniorkesterMedlemmer Af RadiosymfoniorkestretMembers Of The Danish Radio Symphony OrchestraMembers of the Danish Radio Symphony OrchestraNational Orchestra - Radio DenmarkOrchester Des Dänischen RundfunksOrchestraOrchestra Reale Di DanimarcaOrchestre De La Radio DanoiseOrchestre Symphonique De La Radio d'Etat Du DanemarkOrchestre Symphonique National Du DanemarkRadio-Sinfonieorchester KopenhagenRadiosymfoniorkestretSinfóníuhljómsveit Danska ÚtvarpsinsStaatliches Dänisches Radio-SinfonieorchesterSymphonie-Orchester Danmarks RadioSymphonie-Orchester Dänmarks RadioSymphonieorchester Des Dänischen RundfunksThe Danish National OrchestraThe Danish National Orchestra, Radio DenmarkThe Danish National Radio Symphony OrchestraThe Danish National Radio Symphony Orchestra And ChorusThe Danish National Symphony OrchestraThe Danish Radio Symphony Orch.The Danish Radio Symphony OrchestraThe Danish Radio Symphony Orchestra and ChorusThe Danish State Broadcast OrchestraThe Danish State Broadcasting Symphony OrchestraThe Danish State Radio Symphony OrchestraThe Royal Danish Orchestraデンマーク放送コンサート・オーケストラStatsradiofoniens SymfoniorkesterDR RadioSymfoniOrkestretDR SymfoniOrkestretStatsradiofoniens OrkesterKnut SönstevoldHerbert BlomstedtFrantz LemsserCaitriona YeatsKurt PetersenOle Andersen (3)Gerhard HamannEva Kristine Vasarhelyi + +5560187Kristin OstlingCellist (classical and rock) + +Kristin Ostling joined the Baltimore Symphony in 1995. She is a graduate of both the Curtis Institute of Music and the Mannes College of Music, where she received the Mannes College Performance Award. She has been a featured soloist with the Baltimore Symphony Orchestra, and has enjoyed chamber music roles with a roster that includes Pinchas Zukerman, Ralph Kirschbaum, and The Baltimore Symphony’s concertmaster, Jonathan Carney. Since 2002, she has served as principal cellist of the Baltimore Choral Arts Society Orchestra,under the direction of Tom Hall. + +She has appeared as a soloist and chamber musician at venues throughout the world including Lincoln Center, The Kennedy Center, The German and Icelandic Embassies, the U.S. State Department, The Pennsylvania Academy of Music, and the Academia Musicale Chigiana in Siena, Italy. She has also appeared at New York’s Bargemusic, the La Jolla Chamber Music Society’s SummerFest, the Pensacola Chamber Music Festival, at An Die Musik, and on the Baltimore Symphony's Chamber Music by Candlelight series. Most recently, she has been featured on the newly released "Works of Larry Hoffman," by the Baltimore based composer of that same name. Her performance of "Blues Suite for Solo Violoncello" has garnered rave reviews from such notable publications as the American Record Guide, Downbeat Magazine, and the Baltimore Sun. She plays a cello made by Giacomo Rivolta (Milan, 1828). + +In addition to playing the traditional classical repertoire, Kristin is also one of a growing number of cellists exploring the genre of rock cello. She was a member of the heavy metal cello band Primitivity, and is an honorary member of The Sofa Kings of Pittsburgh. She can also be heard on the rock album "Southern Barber Supply" by the Cashmere Jungle Lords.Needs Votehttps://www.bsomusic.org/musicians/musician/kristin-ostling.aspxBaltimore Symphony OrchestraCarpe Diem String QuartetThe Ives Quartet + +5560359Federico Del SordoFederico Del SordoItalian Federico Del Sordo (MA PhD), born in Rome in 1961, completed his musical studies (Diplomas in piano, harpsichord, organ and organ composition, composition, sacred music, choir conducting and sacred music.Needs VoteFrederico del SordoEnsemble Il Narvalo + +5565175Gerhard BreinlGerman violist. +Born in the vicinity of Regensburg. Studied violin at the Hochschule für Musik Munich with Prof. Beyer, graduating in 1973. Masster classes from 1973 to 1975, and viola player with the [a451535] from 1973.Needs VoteBayerisches StaatsorchesterLeopolder Quartett + +5565176Wolfgang LeopolderWolfgang Leopolder is a German violinist. He created the [a4812053] in 1976 from members of the [a451535]. +Born in Munich. Studied at the Conservatory in Munich (Hochschule für Musik) from 1967 with Prof. [a712722]. Took master classes from 1972 to 1974. He was part of the first violins of the [a451535] from the age of 19, and concert master of the 1st violins from 1983.Needs VoteBayerisches StaatsorchesterLeopolder Quartett + +5567252Chester Clark (2)Hot jazz trumpeterNeeds VoteAlphonso Trent And His Orchestra + +5567253Lee Hilliard (2)Hot jazz reeds playerNeeds VoteAlphonso Trent And His Orchestra + +5567254Robert "Eppie" JacksonHot jazz brass bass playerNeeds VoteEppi JacksonEppie JacksonRobert JacksonAlphonso Trent And His Orchestra + +5567255James JetterHot jazz reeds playerNeeds VoteJames JesterJames JeterJeterAlphonso Trent And His OrchestraJeter-Pillars "Club Plantation" Orchestra + +5567256Hayes PillarsEarly jazz tenor sax player and band leader, born April 30, 1906 in North Little Rock, Arkansas. +Worked with Alphonse Trent's orchestra 1927-1928, then became a leader of [a=Jeter-Pillars "Club Plantation" Orchestra]. Continued to perform in the St. Louis area from the 1950s into the mid-1980s.Needs VoteAlphonso Trent And His OrchestraJeter-Pillars "Club Plantation" Orchestra + +5567257Eugene CookHot jazz banjoist.Needs VoteEugene CookeEugene CrookEugene CrookeGene CrookeAlphonso Trent And His Orchestra + +5568457Julian Gil RodriguezJulián Gil RodriguezColombian classical violinist. Born in 1984 in Bogotá, Colombia. +in 2001, he joined the [a=Orquesta Sinfónica De Colombia], and two years later, he gained a position in the new [a=Orquesta Sinfonica Nacional de Colombia], a position he held until 2006. +In November 2005, he was invited by the [a=Orquesta Sinfónica de Castilla y León] in Valladolid in Spain to receive Masterclasses. Principal 2nd Violin of the [a=London Symphony Orchestra] since 2013.Needs Votehttps://www.facebook.com/julian.g.rodriguez.5https://www.instagram.com/juliangilro/?hl=enhttps://www.hyperion-records.co.uk/a.asp?a=A12470https://lso.co.uk/orchestra/players/strings.html#Second_violinshttps://filarmonica7lagos.com.ar/2020/?page_id=1332https://www.imdb.com/name/nm3558575/Julián Gil RodríguezLondon Symphony OrchestraOrquesta Sinfónica De ColombiaChineke! OrchestraOrquesta Sinfonica Nacional de Colombia + +5568569Florian HelgathGerman chorus master.Needs Votehttps://www.florianhelgath.de/Regensburger DomspatzenZürcher Sing-AkademieDon Camillo ChorSpitzwegquartett + +5568612Thomas LeplerPiano TechnicianNeeds Vote + +5570027Christiane DohnGerman flutistNeeds VoteDohnMünchner Rundfunkorchester + +5570136Sanne HunfeldClassical violinistNeeds VoteConcertgebouworkest + +5570233Anton Walter (2)Gabriel Anton Walter[b]Anton Walter[/b] (5 Feb 1752—11 Apr 1826) was a prominent German piano-builder who worked in Vienna since 1780. Considered one of the most iconic makers of "Vienna school," Walter's instruments continuously inspire prominent contemporary instrument-builders, such as [a1730849], [a1696657], and [a5744746]. Around 1782, [a95546] purchased Walter's piano and used it extensively. Walter proliferated within his lifetime, gaining a prestigious "Imperial Royal Chamber Organ Builder & Instrument Maker" title in 1790 and employing over 20 workers. The last surviving Anton Walter's piano is dated 1825. + +[b]Notable surviving pianos[/b] +♯ c.1782 – [a5938074], Austria +♯ c.1790 – [l612872], Nuremberg +♯ c.1800 – [l1145055], Croatia +♯ c.1805 – [l496900], BerlinNeeds Votehttps://en.wikipedia.org/wiki/Anton_WalterA. WalterAnton Walter & SohnOriginal Anton WalterWalter + +5570295Bastien PelatFlautistNeeds VoteOrchestre De ParisEuropean Camerata + +5572313David WedelDavid Wedel (born 1982 in Ukraine) is a German violinist. +Needs VoteGewandhausorchester Leipzig + +5572333'Cello ensemble of the Lamoureux Orchestra, ParisNeeds VoteOrchestre Des Concerts Lamoureux + +5574302Marijn MijndersClassical violinistCorrectConcertgebouworkestMargiono Quintet + +5574906Filipa NunesFilipa Margarida Sacramento NunesPortuguese clarinetist. She's a member of the [a5794038] since 2013.Needs VoteGustav Mahler JugendorchesterOrchester Des Schleswig-Holstein Musik FestivalsIl Fiato Delle AlpiPhilharmonia Zürich + +5575140Yann DubostClassical double bassist, born in Lyon, France.Needs Votehttp://yanndubost.com/DubostEnsemble L'ItinéraireOrchestre Philharmonique De Radio FranceThymos QuartetLes Tromano + +5575333Frank VillellaIllinois based tenor vocalist +Director, Rosenthal Archives of the [a=Chicago Symphony Orchestra] +Chicago Symphony Chorus +Schola Antiqua of Chicago +Bella Voce +The RookeryNeeds Votehttps://csoarchives.wordpress.comChicago Symphony ChorusWilliam Ferris ChoraleThe Cathedral Singers (4)Schola Antiqua Of ChicagoBella VoceBrian Conn New Music Ensemble + +5575500Carlo ColomboCarlo Colombo is an Italian classical bassoonistNeeds VoteOrchestre De L'Opéra De LyonI Solisti Veneti + +5575925Helen VollamTrombone player. +Principal Trombone with the [a=BBC Symphony Orchestra].Needs Votehttps://helenvollam.com/https://en.wikipedia.org/wiki/Helen_VollamBBC Symphony OrchestraYoung Musicians Symphony Orchestra + +5576241Charles PillarsHot jazz reeds player.Needs VoteChas. PillarsPillarsAlphonso Trent And His OrchestraJeter-Pillars "Club Plantation" Orchestra + +5576242Anderson LacyHot jazz violinistNeeds VoteAlphonso Trent And His Orchestra + +5577318Renate NollClassical keyboard instrumentalistNeeds VoteBayerisches Staatsorchester + +5577626Paula GilbertPaula GilbertAmerican radio, TV, and big band vocalist who sang with the orchestras of [a=Harry James (2)] (1954), and [a=Art Kassel]. Prior to her marriage to comedian Paul Gilbert (1951–1954), she had performed under the names of Paula Rae and Paula Wray. She worked as a network vocalist in Chicago, Los Angeles, and Florida. + +Born: 19 July 1928 in Edgar, Nebraska, USA +Died: 29 May 1973 in Springfield, Missouri, USANeeds VoteHarry James And His Orchestra + +5579728Matthew Williams (8)Classical trumpeterNeeds VoteRoyal Philharmonic Orchestra + +5582356Ernest TozierAmerican violinistCorrectHarry James And His Orchestra + +5583022Martin LefevreClassical oboistNeeds VoteOrchestre Philharmonique De Monte-CarloOrchestre De L'Association Des Concerts Pasdeloup + +5583023Vincent PenotClassical clarinetist Needs VoteOrchestre National De L'Opéra De ParisOrchestre De L'Association Des Concerts Pasdeloup + +5583025Anne-Sophie NevesClassical flautistNeeds VoteOrchestre De L'Association Des Concerts PasdeloupOrchestre Philharmonique De Radio France + +5583142Jessica BlackwellClassical violinist +Hometown: St. Louis, Missouri +Member of the Nashville Symphony since 2009Needs VoteJessica Lee Ann BlackwellThe New World OrchestraSaint Louis Symphony OrchestraBaltimore Symphony OrchestraSan Antonio Symphony OrchestraNashville Symphony OrchestraALIAS Chamber EnsemblePeabody Symphony Orchestra + +5583154Hari BernsteinViolist Hari Bernstein was born and raised in New York City. Receiving her bachelor’s degree from The Juilliard School, she continued her studies at The Cleveland Institute of Music, appearing frequently as a substitute with the Pittsburgh Symphony and The Cleveland Orchestra. Frequently performing in hospitals and shelters for individuals unable to make it to the concert hall, Hari is a firm believer in the healing power of music.Needs VoteHari Sofia BernsteinThe Cleveland OrchestraPittsburgh Symphony OrchestraNashville Symphony Orchestra + +5583871Richard KlemmKarl Oskar Richard KlemmRichard Klemm (25 March 1902 - 1988) was a German classical cellist, Viola da Gamba player, composer and educator.Needs VoteR. KlemmDresdner KreuzchorStaatskapelle BerlinSchola Cantorum BasiliensisRudolf Schulz Quartet + +5585094Johannes KafkaAustrian bassoonist, born in 1984 in Freistadt, Austria.Needs VoteWiener Jeunesse OrchesterBühnenorchester Der Wiener StaatsoperL' Aura Ensemble + +5585096Matthias SchornAustrian clarinetist, born 3 November 1982 in Hallein, Austria.Needs Votehttp://matthias-schorn.atOrchester Der Wiener StaatsoperWiener PhilharmonikerFaltenradioMaChlast + +5585102Thomas Lechner (2)Austrian percussionist, born 11 January 1986 in Schwarzach, Austria.Needs VoteWiener Philharmoniker + +5585107Josef ReifAustrian hornist, born 10 January 1980 in Amstetten, Austria. Studied with [a=Walter Reitbauer] and [a=Roland Berger]. + +Plays a Vienna horn by Robert Engel.Needs Votehttps://www.facebook.com/josef.reifOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterWiener Waldhorn VereinVienna HornsThe Percussive Planet Ensemble + +5585254Eleanora McKayEleanora McKay née Eleanora FaganOn some records "Fine and Mellow" is credited as "McKay". That stands for Eleanora McKay aka Billie Holiday. That was her official name after her marriage to Louis McKay.Needs Votehttps://books.google.be/books?id=0L0ULjto_OEC&pg=PT1345&lpg=PT1345&dq=%22eleanora+mckay%22%22+billie+holiday%22&source=bl&ots=Dg8gnsjNDp&sig=_4K5KG9SqN6OuxCDFrGousL8iBM&hl=nl&sa=X&ved=0ahUKEwip97yCzKPSAhVFvhQKHe36Am0Q6AEIODAE#v=onepage&q=%22eleanora%20mckay%22%22%20billie%20holiday%22&f=falsehttps://billieholiday.com/https://www.ladyday.net/https://en.wikipedia.org/wiki/Billie_Holidayhttps://www.britannica.com/biography/Billie-Holidayhttps://reset.me/story/how-billie-holiday-was-hunted-down-in-the-early-days-of-the-war-on-drugs/https://www.imdb.com/name/nm0390507/https://www.biography.com/musician/billie-holidayhttps://www.treccani.it/enciclopedia/billie-holiday/https://www.jazzdisco.org/billie-holiday/discography/https://adp.library.ucsb.edu/index.php/mastertalent/detail/102008/Holiday_Billiehttps://billieholiday.be/Louis Mc KayLouis McKayMcKayBillie HolidayEleanora FaganLady Day (2)Esquire All StarsBillie Holiday And Her OrchestraPaul Whiteman And His OrchestraTeddy Wilson And His OrchestraBenny Goodman And His OrchestraBillie Holiday And Her BandBillie Holiday And Her Lads Of JoyJATP All StarsHenry Allen SextetThe Sound Of Jazz All-StarsBillie Holiday TrioJam Session (10)Jam Session (11) + +5585515Simeon BellisonClarinetist and composer (1881–1953), born in Moscow. He was the solo clarinetist with [a388185] in the 1930s, 1940s and 1950s.Needs Votehttps://en.wikipedia.org/wiki/Simeon_BellisonBellisonS. BellisonNew York Philharmonic + +5589988Alexander KaganRussian classical violinist, Needs VoteSasha KeganBergen Filharmoniske Orkester + +5591157Bodo PrzesdzingBodo Przesdzing is a German violinist.Needs VoteБодо ПржестцингRundfunk-Sinfonieorchester BerlinCamerata MusicaStreichquartett Bodo Przesdzing + +5591233Mario MaesClassical hornistNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +5593317Sy Shaffer (2)Credited as jazz trombone player.Needs VoteSy ShaefferBenny Goodman And His OrchestraBob Chester And His Orchestra + +5593492Anne ClayetteFrench flautist.Needs VoteOrchestre Philharmonique De Strasbourg + +5593502Brodie SchroffCredited as jazz trumpeter.Needs VoteBrody SchroffBenny Goodman And His Orchestra + +5593982Michael Arlt (2)Michael Arlt is a German violinist.Needs VoteBayerisches StaatsorchesterOrchester der Bayreuther FestspieleMünchner Klaviertrio + +5595002Kevin GowlandClassical flautist. +Principal Flute of the [a=Opera North].Needs Votehttps://www.rncm.ac.uk/people/kevin-gowland/City Of Birmingham Symphony OrchestraOpera NorthYoung Musicians Symphony Orchestra + +5595662Riccardo CrocillaItalian classical clarinettist, active from the 2000s.CorrectOrchestra Del Maggio Musicale Fiorentino + +5597732Shachar IsraelIsraeli classical trombonist, once a member of the Canadian Brass.Needs VoteThe Cleveland OrchestraThe Canadian Brass + +5597960DR SymfoniOrkestret[b]DR SymfoniOrkestret [/b] is the name of the symphony orchestra of [l=DR], the Danish national broadcasting corporation, since 2008. The orchestra is also officially the national orchestra of Denmark, which is apparent in its English name, [b]The Danish National Symphony Orchestra[/b]. + +Principal conductors in this period were [a=Thomas Dausgaard] (2004-11) and [a= Rafael Frühbeck De Burgos] (2012-14). The current principal conductor [a=Fabio Luisi] is appointed for the period 2016-2029. + +The name of the orchestra has evolved over time as follows: +- From 1925 to mid-1930's: [a=Statsradiofoniens Orkester] +- From mid-1930's to 1959: [a=Statsradiofoniens Symfoniorkester] +- From 1959 to 1996: [a=Danmarks Radios Symfoniorkester] +- From 1996 to 2008: [a=DR Radiosymfoniorkestret] +- Since 2008: DR SymfoniOrkestretNeeds Votehttps://drkoncerthuset.dk/dr-symfoni-orkestret/danish-national-symphony-orchestra/https://www.facebook.com/DRSymfoniorkestret/https://en.wikipedia.org/wiki/Danish_National_Symphony_Orchestrahttps://denstoredanske.lex.dk/DR_SymfoniOrkestretDR SymphonyDanish National Radio Symphony OrchestraDanish National Symphony OrchestraDanish Radio Symphony OrchestraSymphonic Orchestra Of The Danish RadioThe Danish National Radio Symphony OrchestraThe Danish National Symphonic OrchestraThe Danish National Symphony OrchestraStatsradiofoniens SymfoniorkesterDanmarks Radios SymfoniorkesterDR RadioSymfoniOrkestretStatsradiofoniens OrkesterLasse MauritzenHenrik Dam ThomsenKatarzyna BugalaPeter MorrisonSabine BretschneiderJohan KrarupBirgitte ØlandPer SaloRafael Frühbeck De BurgosRené Felix MathiesenBodil KuhlmannCarsten TagmoseChristina ÅstrandKatrine BundgaardStine HasbirkAlexander ButzHeiðrun PetersenGert SørensenGunnar LychouThomas RøislandChristian EllegaardPatricia Mia AndersenClaus MyrupSophia BækVanja LouroBenedikte ThyssenJohannes Søe HansenKarl HusumMads L. KristensenDominika PiwkowskaAnna ZelianodjevoAnne Marie KjærulffEmily FowlerJohanna QvammeAndrea Rebekka AlstedMonika MalmquistMorten DulongTine RudloffSarah McClelland JacobsenDitlev DamkjærMarianne BindelGunvor SihmUlla MiilmannMikael BeierMichal StadnickiAnne SorenTeresa KrahnertJan RohardHenning Hansen (8)Louisa SchwabSøren ElboMichael DabelsteenTrine Yang MøllerDmitri GolovanovAnders Fog-NielsenKlaus TönshoffJulie MeileAstrid ChristensenSebastian StevenssonJakob Weber EgholmSven BullerRussell ItaniHelle HanskovSoo-Kyung HongMagda StevenssonKarol NasiłowskiKern WesterbergNikolaj HenriquesLine MostJohnny Teyssier + +5597993Catherine BottomleyCatherine Bottomley is an Australian violinist.Needs VoteCathy BottomleyDeutsche Kammerphilharmonie BremenPhilharmonisches Orchester Freiburg + +5600817Dalit SegalIsraeli classical hornist, born in Rehovot in 1970.Needs VoteIsrael Philharmonic Orchestra + +5601112Genevieve GuimondClassical cellist.Needs VoteOrchestre symphonique de Montréal + +5601355Stefan LangbeinStefan Langbein (born 1983) is a German trombonist.Needs VoteDresdner PhilharmonieLiepaja Symphony OrchestraNorddeutsche Philharmonie Rostock + +5602200The Herbie Mann-Sam Most QuintetNeeds Major ChangesHerbie Mann - Sam Most QuintetThe Herbie Mann / Sam Most QuintetHerbie MannSam MostJoe PumaJames GannonHerbert SolomonLee Kleinman + +5603988Richard Thomas (28)British classical trumpeter and cornettist. + +Richard Thomas studied at the University of Wales, the Royal Academy of Music and the Schola Cantorum, Switzerland. As part of his Master of Arts degree, Richard undertook research into the William Shaw Silver State Trumpets housed in the Jewel House, at the Tower of London. + +As well as being a regular performer at Shakespeare’s Globe Theatre, London Richard can be heard on the film sound tracks for Shrek III, The Golden Age and Bedtime Stories. + +Richard is a founder member and director the acclaimed sackbut and cornett ensemble QuintEssential as well as a founder member of waits band The City Musick. Richard also teaches cornetto and natural trumpet at the Royal College of Music and the Dartington International Summer School.Needs Votehttp://www.iquint.co.uk/thomas.htmlhttp://www.princeregentsband.com/musicians#/richard-thomasThe English Baroque SoloistsQuintEssential Sackbut And Cornett EnsembleThe City MusickThe Prince Regent's Band + +5604260John AlexandraJohn (Jack) AlexandraBritish bassoonist. Born in 1891 - Died in 1957. +He studied at the [l527847]. Former member of the [a=Royal Scottish National Orchestra] and the [a=London Symphony Orchestra] (1920-1932). He controversially defected to joining the [a=London Philharmonic Orchestra] in 1932 as 2nd Bassoon, eventually becoming Principal Bassoon for many years. +His younger brother, the classical bassoonist [b]George Alexandra[/b], joined him in the LPO in 1935.Needs Votehttps://etheses.whiterose.ac.uk/4503/1/complete.pdfLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Scottish National OrchestraLondon Baroque Ensemble + +5606332Benny BakerNeeds VoteBenny "Roll" BakerBenny Goodman And His OrchestraBilly Artz & His Orchestra + +5606433Adam Dixon (2)Needs Major Changes + +5607698Louis PressmanAmerican violinistCorrectHarry James And His Orchestra + +5607699Antonio AdameJazz percussionistCorrectHarry James And His Orchestra + +5607702Richard EliotBassistCorrectHarry James And His Orchestra + +5607703Anthony MarateaAmerican violinistCorrectHarry James And His Orchestra + +5608043Sidsel Garm NielsenClassical violinist, born 1973 in Thisted, Denmark.Needs VoteSidsel Garm-NielsenSidsel Garn NielsenStaatskapelle DresdenPhilharmonisches Staatsorchester HamburgLinos Ensemble + +5608209Matthias Schreiber (2)Matthias SchreiberMatthias Schreiber is a German classical violoncello player. He was a member of the [a522210] from 1981 to 2023.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +5608210Wolfgang GränitzWolfgang GränitzGerman classical viola player.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigHebecker-Streichquartett + +5608607Alessandro PivelliItalian Classical violone / double-bass instrumentalistNeeds Votehttps://www.ivirtuositaliani.eu/chi-siamo/alessandro-pivelliVenice Baroque OrchestraI Virtuosi ItalianiCappella Musicale di San Giacomo Maggiore In Bologna + +5609776Francesca BoncompagniClassical soprano vocalistNeeds Votehttp://www.francescaboncompagni.com/en/Collegium VocaleRossoPorpora + +5611200Leopoldo CasellaLeopoldo Casella (6 December 1908 - 26 October 1972) was a Swiss conductor and pianist.Needs Votehttps://www.naxos.com/person/Leopoldo_Casella/349684.htmOrchestra Della Radio Televisione Della Svizzera Italiana + +5612954Brew Moore All StarsNeeds Major ChangesBrew Moore SeptetGerry MulliganRoy HaynesCurly RussellGeorge WallingtonBrew MooreKai WindingJerry Hurwitz + +5613476Bob Manners (2)Jazz upright bass playerCorrectMannersHarry James And His Orchestra + +5615960Thomas Osborne (3)English classical trumpet player, born in Sheffield, also known as Tom OsborneNeeds VoteTom OsborneHallé Orchestra + +5616953George Clifford (2)Classical violinistNeeds Votehttps://www.georgecliffordviolin.com/The Academy Of Ancient MusicLa Nuova MusicaThe MozartistsSpiritato! + +5616959James TollBritish classical violinist.Needs Votehttps://www.winchestermusicclub.org.uk/orchestra-leader/The Academy Of Ancient MusicLa Nuova MusicaArcangeloEnsemble MarsyasThe MozartistsSolomon's Knot + +5616960Joel Raymond (2)English classical oboist.Needs VoteThe Academy Of Ancient MusicHanover BandLa Nuova MusicaIrish Baroque OrchestraEnsemble CristoforiEuropean Union Baroque OrchestraSpiritato! + +5617192Wolfhard PenczWolfhard Pencz is a German clarinetist.Needs VoteSinfonieorchester Des SüdwestfunksOrchester der Bayreuther FestspieleSWR Sinfonieorchester Baden-Baden Und FreiburgSWR SymphonieorchesterNew Wind Quintet Of The Südwestfunk + +5619555Maïa FrankowskiPlays violin in string quartet 'In Praise Of Folly' + +Maia studied violin at the Royal Conservatories of Brussels and currently plays as a fixed violinist for the renowned Royal Opera of the Monnaie in Brussels although she has also been a member of the Orkest de Filharmonie in Antwerp. + +She also plays with different international and Belgian ensembles including Musiques Nouvelles, Boho Orchestra, as well as electronic and rock bands like Woodkid, and The Jungle Syndrome.Needs VoteMaia FrankowskiOrchestre Du Théâtre Royal De La MonnaieIn Praise Of Folly String QuartetJune Road + +5620235Irene LachnerClassical violist.Needs VoteWürttembergisches KammerorchesterCompass-Kammerensemble + +5622343Alfred BoesenClassical violinistNeeds VoteWürttembergisches Kammerorchester + +5622621Кирилл ЛукьяненкоКирилл ЛукьяненкоKirill Lukyanenko is a Russian classical percussionist.Needs Votehttps://rnor.ru/rno_musicians?mus=Kirill_Lukiyanenko&scrollTo=muslist&duration=1500&scrollOffSet=60Kirill LukyanenkoRussian National Orchestra + +5625160Jueyoung YangClassical violinistNeeds VoteBamberger Symphoniker + +5627401Frank BehsingFrank Behsing is a German classical percussionist. He was a member of the [a578737] from 1973 to 2015.Needs VoteStaatskapelle Dresden + +5629246Павел ГорбенкоPavel Gorbenko is a russian classical violinist.Needs VotePavel GorbenkoRussian National Orchestra + +5631048Hildegard RützelAlto vocalist.Needs Votehttp://www.hildegard-wiedemann.de/Hildegard WiedemannRIAS-Kammerchor + +5631050Ingolf HorenburgIngolf Horenburg SeidelBass vocalist.CorrectIngolf SeidelRIAS-Kammerchor + +5631051Ramona Castillo OsunaAlto vocalist.CorrectRIAS-Kammerchor + +5631052Margret GiglingerSoprano vocalist.Correcthttp://www.margret-giglinger.de/RIAS-Kammerchor + +5631053Fabienne WeißSoprano vocalist.CorrectRIAS-Kammerchor + +5631054Sarah KrispinSoprano vocalist.Needs VoteRIAS-Kammerchor + +5631679Hugues AnselmoFrench bassoonist.Needs VoteOrchestre Philharmonique De Radio France + +5631687Adrien BellomFrench cellist.Needs VoteOrchestre Philharmonique De Radio France + +5636334Angus McPheeEnglish bass-baritone, composer and teacher, born in 1992.Needs VoteThe Sixteen + +5636336Joshua CooterBritish classical tenor vocalistNeeds VoteJosh CooterThe SixteenTenebrae (10)The Gesualdo SixApollo5Fieri Consort + +5636342Hannah ElyBritish classical soprano vocalist.Needs Votehttps://www.hannahely.co.uk/Huelgas-EnsembleCollegium VocaleInaltoFieri Consort + +5636837Hans BärClassical bassoonistNeeds VoteHans BärrBamberger Symphoniker + +5636857Sibylla Maria LöbbertAlto vocalist.CorrectSibylla LöbbertRIAS-Kammerchor + +5636902Indrek LeivategijaClassical cellistNeeds VoteEstonian National Symphony OrchestraBamberger SymphonikerEstonian Festival OrchestraTallinn Ensemble + +5638775Violoncello-Quartett Der Staatskapelle DresdenNeeds VoteStaatskapelle Dresden + +5638911Taverner Consort, Choir & PlayersUK ensemble, initially founded by [a875353] in 1973, as the Taverner Choir and made its debut in the same year at the Bath Festival. The Taverner Consort was founded soon after this, closely followed by the Taverner Players (originally formed to accompany the Choir and Consort but now also working independently). Needs Votehttps://www.taverner.org/Tavener Choir, Consort & PlayersTaverner Choir & PlayersTaverner Consort & ChoirThe Taverner Choir Consort & PlayersAndrew Parrott + +5639381Kirill TerentievKirill Terentiev (born 1980) is a Russian violinist. +Needs VoteRussian National OrchestraRheinische PhilharmonieOrchestra Of The Mariinsky Theatre + +5640800Robbert MuuseDutch Bass & Baritone vocalist born 1972Needs VoteMuuseEx TemporeNederlands Kamerkoor + +5641399Cyril NormandFrench classical hornist.Needs VoteOrchestre Des Concerts LamoureuxEnsemble À Vent De Bourgogne + +5641869Joan-Eric LlunaClassical woodwinf instrumentalistNeeds VoteEnglish Chamber Orchestra + +5643443Edouard HazebrouckFrench classical Tenor & Countertenor vocalist.Needs VoteLe Concert SpirituelLes Arts FlorissantsLe Concert D'AstréeLes Pages Et Les Chantres Du Centre De Musique Baroque De VersaillesLa Main HarmoniqueChœur Marguerite Louise + +5645650Rainer AuerbachRainer Auerbach (born 1956 in Zwickau) is a German trumpet player. +Needs VoteStaatskapelle BerlinHannes Zerbe BlechbandRobert-Schumann-Philharmonie + +5645913Gundel Jannemann-FischerGundel Jannemann-Fischer is a German English horn player +Needs Votewww.gundel-jannemann-fischer.deGundel JannemannGewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigRobert-Schumann-Philharmonie + +5645914Thomas ZieschThomas Ziesch was a German clarinestist. He passed away on August 9, 2022 at the age of 60. +Needs VoteGewandhausorchester Leipzig + +5645917Thomas HipperThomas Hipper is a German oboist.Needs VoteGewandhausorchester Leipzig + +5646089Ken HarpsterAmerican reeds player in the swing eraNeeds VoteJack Teagarden And His Orchestra + +5646092Wally WellsJazz trombonistCorrectJack Teagarden And His Orchestra + +5646095Don SeidelAmerican pianist in the swing era.Needs VoteJack Teagarden And His Orchestra + +5649389Lou HorvathAmerican violinist from the big band eraCorrectHarry James And His Orchestra + +5649715Constantin Christian DedekindConstantin Christian Dedekind (2 April 1628 – 1715) was a German poet, dramatist, librettist, composer and bass singer of the Baroque era. +Dedekind was born in Reinsdorf, Thuringia into a musical family, the son of musician Stefan Dedekind (1595–1636) and the grandson of composer [a=Henning Dedekind] (1562–1626). He was educated at Quedlinburg Abbey. From about 1647 he lived in Dresden. Early recognition of his poetic talent came in 1652 when Johann Rist, in his role of Imperial Count Palatine, awarded him the Dichterkrone (equivalent to making him Poet Laureate). A few years later Dedekind became a member of the Elbschwanenorden (Order of Elbe Swans), Rist's poetical society.Needs Votehttps://en.wikipedia.org/wiki/Constantin_Christian_DedekindC. C. DedekindC. Ch. DedekindCon. Chr. DedekindDedekindJohann Christian DedekindStaatskapelle Dresden + +5650198Rémi RièreRémi RièreFrench violinist.Needs Votehttp://www.remiriere.comhttp://twitter.com/remiriereRémi RiereLes Musiciens Du LouvreOrchestre National Des Pays De La LoireOrchestre Tous En CœurAppassionato Orchestra + +5650206Edouard SaboEdouard SaboRomanian flautist (1987 in Satu Mare).Needs Votehttp://www.facebook.com/edouard.saboÉdouard SaboOrchestre National De FranceOrchestre Tous En CœurEnsemble Initium + +5650691Jesús TroyaJesús Troya PérezSpanish horn (trompa) player. On Orquesta Sinfónica de RTVE in the 70s.Needs Votehttps://www.facebook.com/jesus.troyaperez.3J. TroyaJesus TroyaOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +5651189Larry EsparzaNeeds Major Changes + +5651192Marco CruscaItalian trumpeter, active from the 2000s.CorrectM. CruscaOrchestra Del Maggio Musicale Fiorentino + +5657169Martin KabasClassical double bassist.Needs VoteWiener SymphonikerEnsemble 20. Jahrhundert + +5657170Robert OberaignerRobert Oberaigner is an Austrian clarinetist. +Needs Votehttps://www.robertoberaigner.com/Rob. OberaignerStaatskapelle DresdenLes Musiciens Du LouvreDresdner KammersolistenCappella ColoniensisFritz Busch Quartett + +5659118Birte KulawikClassical soprano vocalistNeeds VoteKulawikDresdner KammerchorRundfunkchor BerlinEnsemble »Alte Musik Dresden« + +5660279Frida Fredrikke Waaler WærvågenClassical cellist.Needs VoteFrida F. W. WærvågenBergen Filharmoniske OrkesterEnsemble AllegriaTrio Brio + +5660625Raphaela PaetschRaphaela Paetsch is a classical cellist.Needs VoteStuttgarter PhilharmonikerEroica Berlin + +5660646Zeno FusettiClassical violist, born in 1995 in Switzerland.Needs VoteGewandhausorchester Leipzig + +5662603Jérémie MaillardClassical cellist.Needs VoteOrchestre Philharmonique De Radio France + +5664048Patrick BismuthFrench Violinist and conductor, born 15 December 1954.Needs Votehttps://fr.wikipedia.org/wiki/Patrick_Bismuthhttp://www.ensemblelatempesta.com/patrick-bismuth.htmlIl Seminario MusicaleLa TempestaLe Concert RoyalQuatuor Atlantis + +5666253Helmuth Matthias NitscheClassical flautistNeeds VoteHelmuth M. NitscheSüdwestdeutsches Kammerorchester + +5667103Martin FrutigerSwiss oboe player, born in 1977 in Berne. He was raised in Emmental and studied oboe in Berne and Munich, being a student of Prof. [a864616]. He played for two years (2001 to 2003) in Berlin with the [a260744], before he returned to Switzerland in 2004. Being back in Zurich, he joined the [a988712] as lead English horn. During that time, he also won numerous awards and was also active as soloist. He is teaching oboe and English horn at the Hochschule Luzern and the Hochchule der Künste Zürich.Correcthttp://ikarusquartett.ch/index.php/ensemble/oboeBerliner PhilharmonikerIkarusquartettTonhalle-Orchester Zürich + +5670274Emily HoileEmily Hoile (born 1992) is a British harpist.Needs Votehttps://www.emilyhoile.com/Symphonie-Orchester Des Bayerischen RundfunksWDR Sinfonieorchester Köln + +5670709Regina WochnikNeeds Major ChangesDr. Regina Wochnik + +5670785Kyu-Young KimArtistic Director and principal violinist for The Saint Paul Chamber OrchestraNeeds Votehttps://content.thespco.org/people/kyu-young-kim/Kim Kuy-YoungKim Kyu-YoungKuy-Young KimOrpheus Chamber OrchestraThe Saint Paul Chamber OrchestraDaedalus String Quartet + +5670915Carol Lee (8)Carolyn Jean YatesAmerican female vocalist from Columbus, Georgia. Yates started her career when she was about 14 year old. She made her first television appearance in Washington, D.C. in 1953. She sang with the [a=Harry James (2)] orchestra in 1962, and also with [a=Ray Anthony & His Bookends]. She also performed with the Carol Lee Quartet. + +Aunt of [a=Rusty Yates], and sister of [a=Charles Yates (2)]. + +Born: 30 June 1939 in Columbus, Georgia, USA +Died: 24 December 1983 in Clarksville, Tennessee, USANeeds VoteCarolyn Jean YatesHarry James And His Orchestra + +5671566Dylan HostetterClassical alto & countertenor vocalistNeeds VoteChanticleerThe Pro Arte SingersThe Choir Of Christ Church Cathedral + +5671981Tom Foster (6)British classical keyboard instrumentalistNeeds Votehttps://www.tomfosterharpsichord.com/The English ConcertSolomon's Knot + +5672737Robert Coleman (7)ClarinetistNeeds VoteSaint Louis Symphony Orchestra + +5672738Roger GrossheiderTrumpeterNeeds VoteSaint Louis Symphony Orchestra + +5673094Peter SulskiAmerican violinist & violist and teacher. +He was a member of [a2467146] (1983-1984). Former member of the [a=London Symphony Orchestra] (1993-1999). He toured with [a832962] (1994-1996). While in England he served on the faculty of the [l290263] (1996-1999) and [l680970] (1996-1999). He toured with [a4858200] (1996-2000). After a brief stint in the Middle East as Head of Strings of the [url=https://www.discogs.com/label/1332506-%D9%85%D8%B9%D9%87%D8%AF-%D8%A5%D8%AF%D9%88%D8%A7%D8%B1%D8%AF-%D8%B3%D8%B9%D9%8A%D8%AF-%D8%A7%D9%84%D9%88%D8%B7%D9%86%D9%8A-%D9%84%D9%84%D9%85%D9%88%D8%B3%D9%8A%D9%82%D9%89]National Palestinian Conservatory[/url] (1999-2000) and Principal Violist of the [b]Cyprus State Chamber Orchestra[/b] (1999-2001), he returned to the USA. Teacher of violin/viola/chamber music at [l=Clark University] and [l833874].Needs Votehttps://petersulski.com/https://www.facebook.com/peter.sulski.1https://www.linkedin.com/in/peter-sulski-9572bba/https://www.youtube.com/channel/UCJG9V1J0x0RL1iijSbQ0yWQ/videoshttps://open.spotify.com/artist/3wpVVPT60pvxgTS4hQsEbmhttps://music.apple.com/us/artist/peter-sulski/279448181https://bmop.org/explore-bmop/musicians/peter-sulskihttps://www.holycross.edu/academics/programs/music/peter-sulskiPeter SuskiLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsBoston Modern Orchestra ProjectThe Boston Musica VivaPro Musica Symphony OrchestraThe Apple Hill Chamber PlayersThe Pedroia String QuartetEt Cetera Ensemble + +5677293Philip White (8)British classical trombonist and Professor of Trombone. Born in London, England. +He graduated from the [l290263]. He has freelanced with most of the leading UK orchestras. In 2001 he was appointed 2nd Trombone in the [a=Royal Philharmonic Orchestra], a position he held until 2010 when he moved to the same position in the [a=Philharmonia Orchestra]. Professor of Trombone at the [l1379071].Needs Votehttps://philharmonia.co.uk/bio/philip-white/https://www.trinitylaban.ac.uk/study/teaching-staff/philip-white/http://www.morgensternsdiaryservice.com/WebProfile/white_p_989.shtmlPhil WhitePhillip WhiteLondon Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraSuperbrass (2) + +5677631Huang MitchellClassical violinist.Needs VoteOrchestre Philharmonique De Monte-Carlo + +5679818Karl SteinbergerClassical timpanistNeeds VoteSymphonie-Orchester Des Bayerischen Rundfunks + +5680075Anna GreeneAnna GreenClassical violist.Needs VoteAnna GreenLondon Symphony OrchestraLSO String Ensemble + +5680289Martin ZillerMartin Ziller (7 May 1913 - ?) was a German classical hornist and tenor. +A member of the [a260744] from 1935 to 1973.Needs VoteBerliner Philharmoniker + +5680290Otto MachutClassical hornistNeeds VoteBerliner Philharmoniker + +5681585J. Smith (18)US jazz musician. WashboardNeeds VoteWashboard Rhythm Kings + +5683323Lionel HallCredited as jazz guitar player.Needs VoteFrankie Trumbauer And His Orchestra + +5683324Jack Williams (16)Drummer. Recorded with Frankie Trumbauer And His Orchestra in 1934.Needs VoteFrankie Trumbauer And His Orchestra + +5683325Jack ShoreCredited as jazz saxophonist.Needs VoteFrankie Trumbauer And His Orchestra + +5685160Walter SommerfeldXylophonist.Needs VoteSommerfeldW. SommerfeldXylophon-Virtuose W. SommerfeldDas Orchester Der Staatsoper Berlin + +5689065Wolffie TannenbaumJazz saxophonist.Needs VoteWolf TannenbaumWolfe TannenbaumWolfie TannenbaumWolfe TaninbaumWolffe TayneSy Oliver And His Orchestra + +5689736Christoph AnackerChristoph Anacker (born 1979 in Berlin) is a German classical double-bassist.Needs VoteStaatskapelle BerlinKammerorchester Carl Philipp Emanuel BachBundesjugendorchester + +5691661Herman SvenoniusTure Herman Ludvig SvenoniusSwedish pharmacist, botanist and lyricist +Born March 10, 1879 in Stockholm, Sweden — died June 16, 1946Needs VoteH. SvenoniusSvenoniusT. H. Svenonius + +5692799Brigitte CrépinCellist.Needs VoteBrigitte CrepinLes Arts Florissants + +5693090Lauri ToomClassical cellist.Needs VoteEstonian National Symphony Orchestra + +5693091Tönu KünnapasClassical horn player.Needs VoteEstonian National Symphony Orchestra + +5693092Liina ZigursEstonian classical violist, born March 26, 1977 in Tallinn.Needs VoteLiina ŽigursEstonian National Symphony OrchestraEstonian Festival Orchestra + +5693095Marge UusEstonian classical violinist, born March 29, 1984, in Tallinn.Needs VoteEstonian National Symphony Orchestra + +5693099Svjatoslav ZavjalovClassical violist.Needs VoteEstonian National Symphony Orchestra + +5693101Astrid MuhelClassical violinist.Needs VoteEstonian National Symphony Orchestra + +5693106Urmas RoomereClassical violinist.Needs VoteEstonian National Symphony OrchestraString Quartet Noble Four + +5693107Kaja KihoClassical violist.Needs VoteEstonian National Symphony Orchestra + +5693109Kadi ViluClassical violinist.Needs VoteEstonian National Symphony Orchestra + +5693110Mari-Katrina SussClassical violinist.Needs VoteEstonian National Symphony OrchestraString Quartet Prezioso + +5694530Lawrence RiveraNeeds VoteSy Oliver And His Orchestra + +5694544Bob Carter (15)Jazz pianist + +Could be the same person as [a=Bob Carter (13)]Needs VoteTommy Dorsey And His Orchestra + +5696750Antonio FausAntonio Faus GarridoSpanish oboe player. +On Orquesta Sinfónica de RTVE in the 70s.Needs VoteOrquesta Sinfónica de RTVE + +5700548Fabio CataniaItalian Viola da Gamba instrumentalist born in RomaNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaL'Anello Musicale + +5703160Hermann Schmidt (3)Conductor, AustriaNeeds VoteHerrmann SchmidtBruckner Orchestra Linz + +5703416Fran HeinesFemale singer from the Big Band era.CorrectFrancis HainesHarry James And His Orchestra + +5703754Herwig OswalderHerwig Oswalder is a classical violist based in Berlin. He's married to [a853487]. +A member of the [a841431] since 1977.Needs VoteOrchester Der Deutschen Oper BerlinHerzfeld-Quartett + +5703832Vicens PratsSpanish born classical flautist.Needs Votehttps://www.ecolenormalecortot.com/enseignants/vicens-prats/Vincenç PratsOrchestre De ParisEnsemble Jean-Walter Audoli + +5704039Evan Hughes (5)Baritone vocalist.Needs Votehttps://www.evanhughesbassbaritone.com/Ensemble Intercontemporain + +5707564Todd CopeAmerican classical clarinetistNeeds VoteOrchestre symphonique de MontréalThe Colburn Orchestra + +5708827Jean HommelLuxembourger classical double bassist, born in 1988.Needs VoteBayerisches StaatsorchesterFrankfurter Opern- Und Museumsorchester + +5708938Jee-Hye BaeJee-Hye Bae is a Korean cellist. +Needs VoteStaatskapelle BerlinGürzenich-Orchester Kölner Philharmoniker + +5709874Carlos FagoagaCarlos Fagoaga FrancosSpanish tenor from San Sebastian - Donostia, born in 1933. +Member of [a1169517] from 1975 to 2000. Also on Coro Amalur. +Recording with Columbia since 1962 mainly on zarzuelas releases.Needs Votehttp://aunamendi.eusko-ikaskuntza.eus/eu/fagoaga-francos-carlos/ar-76836/C. FagoagaOrfeón Donostiarra + +5713472Jürgen PoppJürgen Popp is a German bassoonist. He was a member of the [a261451] from 1984 to 2020.Needs VoteMünchner Philharmoniker + +5718214Edward Chapman (3)Edward A. ChapmanBritish classical hornist. +Former 2nd Principal Horn of the [a=London Symphony Orchestra] (1926-1934).Needs VoteLondon Symphony OrchestraLondon Baroque Ensemble + +5718215Kathleen SturdyBritish classical violinist.Needs VotePhilharmonia OrchestraThe Boyd Neel OrchestraLondon Baroque Ensemble + +5718502Roman SpitzerClassical violinist and violist, born in 1969 in St. Petersburg, Russia.Needs VoteR. SpitzerIsrael Philharmonic Orchestra + +5719335Peter Ellis (11)English classical violinist.Needs VoteRoyal Philharmonic Orchestra + +5719767Raja HalderIndian classical violinist. Born in 1982 in Calcutta, India. +He studied at the [l527847]. He was a member of [b]The Vardanyan String Quartet[/b] (2007-2010). Co-founder and Festival Director of the Bromley & Beckenham International Music Festival.Needs Votehttps://www.facebook.com/raja.halder.980https://www.bbimf.com/raja-halderhttps://www.londonmusicteachers.co.uk/Instructors/16985776/Nirupam-HALDER.htmlhttps://www.imdb.com/name/nm9889709/Nirupam HalderNirupam Raja HalderLondon Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsLondon Contemporary OrchestraThe Orion Strings + +5723494Mariam Margaryan-PetkovaClassical violinist.Needs VoteWiener Symphoniker + +5723677Harold Lieberman (2)American violinistCorrectHarry James And His Orchestra + +5724451Yukiko IshibashiJapanese classical violinist.Needs VoteTrio OreadeTonhalle-Orchester Zürich + +5724453Elizaveta ChnaiderElizaveta Schnayder-TaubClassical violinist.Needs VoteTonhalle-Orchester Zürich + +5724454Herbert KistlerSwiss classical trumpet and cornet player.Needs VoteTonhalle-Orchester Zürich + +5724456Paulo Muñoz-ToledoSwiss classical hornist.Needs VoteTonhalle-Orchester Zürich + +5724457Sabine MorelSabine Poyé MorelFrench classical flautist.Needs VoteSabine Poyé MorelTonhalle-Orchester Zürich + +5724458Andrea WennbergGerman classical viola player. Born 1964.Needs VoteCamerata VitodurumTonhalle-Orchester Zürich + +5724459David GoldzycherClassical violinist from Argentina.Needs VoteTonhalle-Orchester Zürich + +5724460Christopher WhitingSwiss classical violinist.Needs VoteTonhalle-Orchester Zürich + +5724463Ulrike SchumannUlrike Schumann-GlosterGerman classical violinist.Needs VoteTonhalle-Orchester Zürich + +5724464Alexander NeustroevАлександр НеустроевAlexander Neustroev (born 1976 in Novosibirsk) is a Russian classical cellist.Needs Votehttp://homecoming.ru/people/neustoevhttps://www.herbst-helferei.ch/kuenstler-2015/alexander-neustroev-violoncello/https://audite.de/en/news/394-the_swiss_piano_trio_with_a_new_cellist.htmlSasha NeustroevSwiss Piano TrioTonhalle-Orchester ZürichValentin Berlinsky Quartet + +5724465Robert TeutschGerman classical hornist.Needs VoteTonhalle-Orchester Zürich + +5724466Seiko MorishitaSeiko Périsset-MorishitaJapanese classical violinist.Needs VoteTonhalle-Orchester Zürich + +5724467Anita RutzAnita Federli-RutzSwiss classical cellistNeeds VoteTonhalle-Orchester Zürich + +5724741Karin SarvEstonian violist.Needs VoteEstonian National Symphony OrchestraTallinn Chamber OrchestraPärnu LinnaorkesterEstonian Festival Orchestra + +5724743Juta Õunapuu-MocanitaJuta Õunapuu-Mocanita (born 1983) is an Estonian violinist. +Needs VoteJuta ÕunapuuGürzenich-Orchester Kölner Philharmoniker + +5724900Dawid KimbergClassical bass-baritone vocalist, born in Johannesburg, South Africa.Needs VoteChorus Of The Royal Opera House, Covent Garden + +5729545Christoph Christian Sturm(Born January 25, 1740 in Augsburg, † August 26, 1786 in Hamburg) was a German Lutheran theologian and hymn writer.Needs Votehttps://de.wikipedia.org/wiki/Christoph_Christian_Sturmhttp://www.deutscheslied.com/de/search.cgi?cmd=composers&name=Sturm%2C%20Christoph%20ChristianC. C. SturmC.C. SturmChr. Chr. SturmChristian Christoph SturmSturm + +5731458Giacomo MennaGiacomo Menna is an Italian cellist. +Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaHenao String Quartet + +5731636Charlie ScaglioneNew Orleans jazz clarinetistNeeds VoteC. ScaglioneCharles ScaglioniCharlie ScagleonaCharlie ScaglioniScaglioneJohnny Bayersdorffer And His Jazzola Novelty Orchestra + +5731637Steve LoyocanoNew Orleans jazz banjo playerNeeds VoteLoyocanoS. LoyocanoSteve LoyacanoJohnny Bayersdorffer And His Jazzola Novelty Orchestra + +5734856Eric ChopinFrench baritone and bass vocalistNeeds VoteLe Concert SpirituelLes Pages Et Les Chantres Du Centre De Musique Baroque De VersaillesMusicatreize + +5735077Julia Becker (4)German classical violinist.Needs Votehttp://www.tonhalle-orchester.ch/orchester/musikerinnenmusiker/1-violine/becker-julia/Tonhalle-Orchester Zürich + +5736630Leor MaltinskiClassical violinistNeeds VoteSan Francisco Symphony + +5736702Martin HofmeyerMartin Hofmeyer (born 1966) is a German trombone player.Needs VoteNDR Hannover Pops OrchestraOrchester der Bayreuther FestspieleDuisburger PhilharmonikerBundesjugendorchesterDüsseldorfer SymphonikerDas Junge Deutsche Blechbläserquintett + +5740060Art WamserBig band saxophonistNeeds VoteArt WasmerBob Zurke And His Delta Rhythm Band + +5740061John GassowayBig band saxophonistNeeds VoteJohn CassowayBob Zurke And His Delta Rhythm Band + +5740988Richard LasnetFrench classical double bassistNeeds VoteOrchestre De L'Opéra De Lyon + +5743335Gene Austin & His OrchestraNeeds Major ChangesGene Austin & His Orch.Gene Austin And His OrchestraGene Austin With Orchestra + +5743558Daniel Franck (2)Mario Daniel Jacques FilipacchiNeeds VoteD. FranckD. FrankDaniel FrankFranckDaniel FilipacchiMario Filip + +5744681John Schroeder (13)Classical Bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +5747936Ramon BenaventSpanish bass tuba playerNeeds VoteOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +5747937Ricardo GassentRicardo Gasent CastellanoSpanish trumpet player.Needs VoteRicardo GasentOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +5747939Jose ChicanoJosé Chicano CisnerosSpanish trumpet player. Soloist on Orquesta Sinfónica de RTVE in the 70s.Needs VoteOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +5747940Francisco Muñoz (3)Francisco Muñoz PavónSpanish trombone player in the Orquesta Sinfónica de RTVE in the 70s.Needs VoteOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +5747941Pedro BotiasSpanish classical trombone playerNeeds VoteOrquesta Sinfónica de RTVEGrupo Español de MetalesGrupo De Metal De la Orquesta Sinfonica De RTVE + +5748668Tobias SteymansTobias Steymans is a German violinist. +Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +5748670Regina MatthesRegina Matthes is a classical violinist. She was a member of the [a261451] from 1986 to 2019.Needs VoteMünchner Philharmoniker + +5748671Nils SchadClassical violinistNeeds VoteMünchner Philharmoniker + +5748677Veit Wenk-WolffGerman cellist, born in 1963.Needs VoteMünchner Philharmoniker + +5748836Oliver MathewsonAmerican jazz guitar player and arranger.CorrectOliver MatthewsonWoody Herman And His OrchestraThe Band That Plays The Blues + +5749738Rosemary CurtinViolist.Needs VoteSydney Symphony Orchestra + +5750382Dee OrrAmerican jazz drummer and singer in 1920's-30's.Needs VoteFrankie Trumbauer And His OrchestraJean Goldkette And His Orchestra + +5750819Alan Whitehead (3)Former principal trumpet with the [a490279]Needs VoteCity Of Birmingham Symphony Orchestra + +5753457Katharina LindenbaumKatharina Lindenbaum-Schwarz German violinist, born in Detmold, Germany.Needs VoteBayerisches Staatsorchester + +5753459Florian RufGerman violist, born 1960 in Munich, Germany. He's the son of [a1293996].Needs VoteBayerisches Staatsorchester + +5753460Agnes MalichAgnes Malich (born 1965) is a German violinist.Needs VoteRadio-Symphonie-Orchester BerlinPhilharmonisches Orchester AugsburgHartog QuartettAugsburger Philharmoniker + +5753625Phillip RoyCanadian violinistNeeds VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleSWR Symphonieorchester + +5753626Harald PaulViolinist, born in 1972.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +5753715Robert BrennandClassical Bassist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +5755579Chandra R. MäderClassical horn playerNeeds VoteIl Giardino Armonico + +5756109Joen SzmidtLacquer cutting engineer.Needs VoteJSZCalyx Mastering + +5756981Joe QuartellJoseph QuartellAmerican jazz trombonist, active from 1920s - 1940's. Discovered [a254768] in the 1920's. Was active in many contemporary orchestras.Needs VoteWoody Herman And His OrchestraFreddie Slack And His OrchestraDon Bestor and His OrchestraBenny Meroff And His OrchestraFrankie Quartell And His Melody BoysThe Band That Plays The Blues + +5757046Jim BurtchAmerican jazz trombonistNeeds VoteWoody Herman And His OrchestraThe Band That Plays The Blues + +5759960Edmund CostanzaAmerican alto saxophonist in the swing-era.Needs VoteEd ConstanzoWoody Herman And His OrchestraThe Band That Plays The Blues + +5760537Henry SingerTromboneNeeds VoteTony Pastor And His OrchestraSy Oliver And His OrchestraJack Jenney And His Orchestra + +5760539Bill Abel (4)William Wesley AbelAmerican trombonist from the big band/jazz era. +Died 2004-05-27 in Beaumont, Texas. Needs VoteHarry James And His OrchestraGlenn Miller And His OrchestraLes Brown And His OrchestraTony Pastor And His OrchestraLyle "Spud" Murphy And His Orchestra + +5761432Leonard CerrisTrumpetCorrectHarry James And His Orchestra + +5761622Olivier StankiewiczFrench classical oboe & cor anglain player and Professor of Oboe. Born 11 November 1989 in Nice, France. +He studied at the [l1014340] (2009-2014). Principal Oboe & Cor Anglais with the [a=London Symphony Orchestra] since 2015. Professor at the [l290263] Woodwind faculty.Needs Votehttps://www.facebook.com/olivier.stankiewicz/https://twitter.com/olivstankiewicz?lang=enhttps://soundcloud.com/olivier-stankiewiczhttps://open.spotify.com/artist/717jrfrUpyGyG8jIgM7d4Dhttps://music.apple.com/us/artist/olivier-stankiewicz/1561066014http://www.mc-klausen.com/eng/olivier_stankiewicz.phphttps://lso.co.uk/orchestra/players/woodwind.html/#Oboes_and_cor_anglaishttps://www.rcm.ac.uk/woodwind/professors/details/?id=04014London Symphony OrchestraLSO Wind Ensemble + +5763555Ed Bennett (5)American jazz trombonist in the 1940's.Needs VoteEdward BennettWoody Herman And His OrchestraThe Band That Plays The Blues + +5763603Al Esposito (2)Alexander EspositoAmerican jazz trombonist + +Esposito attended Duquesne University, and played with the [a=Pittsburgh Symphony Orchestra] under [a=Fritz Reiner] afterward. He also performed with Tommy Dorsey, Woody Herman, Ralph Flanagan, the Blue Barron Band and Frank Sinatra. He made numerous recordings with various bands and also appeared in several movies. He married Geraldine Hinds (also known as [a=Jeanne Carroll (2)]) on 23 April 1943 in New York, and performed with her under the stage name Tommy Allan. + +Born: 30 October 1916 in Ellwood City, Pennsylvania, USA +Died: 30 October 1983 in Newton City, Indiana, USANeeds VoteAlex EspositoEspositoWoody Herman And His OrchestraPittsburgh Symphony OrchestraThe Band That Plays The Blues + +5764674Dalibor KarvaySlovak violin musician.Needs VoteWiener Symphoniker + +5767175Alexandros KoustasViol player.Needs VoteThe Academy Of St. Martin-in-the-FieldsChoir Of London Orchestra + +5768459Helmut Schneider (2)Classical viola player. A member of the [a604396] from 1950 to 1992.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksWerner-Egk-Quartett + +5769011Heiko MürbeGerman violist, born in 1963 in Dresden, Germany.Needs VoteDresdner PhilharmonieDresdner KapellsolistenT.E.C.C. Quartet + +5769013Clemens KriegerGerman cellistNeeds VoteDresdner PhilharmonieT.E.C.C. Quartet + +5769014Constanze SandmannGerman violinistNeeds VoteConstanze NauDresdner PhilharmonieDresdner KapellsolistenT.E.C.C. Quartet + +5771565Hubert JelinekAustrian harp player and music instructor, born 1909, died 1980. +He studied at the "Staatsakademie für Musik und darstellende Kunst" from 1922 until 1929 and soon made a name for himself as being a very gifted harp player. In 1936 he received the coveted post of first harpist of the [a=Wiener Philharmoniker] (Vienna Philharmonic Orchestra) and [a=Orchester Der Wiener Staatsoper] (Vienna State Opera). In 1954 he joined the faculty of the "Akademie für Musik und darstellende Kunst" (Vienna State Academy of Music) and was awarded the title of Professor in 1956.CorrectHubert JellinekJellinekProf. Hubert JelinekOrchester Der Wiener StaatsoperWiener Philharmoniker + +5772421Alex Cirin, Jr.American jazz bassist.Needs VoteAlex Cirin Jr.Woody Herman And His OrchestraWoody Herman And The Swingin' Herd + +5773493Philip MiddlemanAmerican violinist, born in 1955, based in Germany. He was a member of the [a261451] from 1981 to 2021.Needs VoteMünchner Philharmoniker + +5773508Michael DurnerMichael Durner is a German violinist. + Needs VoteBayerisches StaatsorchesterOrchester der Bayreuther Festspiele + +5773806Johnson's JazzersNeeds Major ChangesJohnson JazzersLouis MetcalfJames Price JohnsonPerry Bradford + +5775757Joaquin IruretagoyenaJoaquín Iruretagoyena MendiluceSpanish composer and baritone vocal on Orfeón Donostiarra since 1920 to 1930. First composer for choral and then for txistu. +Born in Astigarraga 1898 and died in San Sebastián 1958. + +Needs Votehttp://www.euskomedia.org/aunamendi/149509J. IruretagoyenaOrfeón DonostiarraOchote Oleskariak De Zarauz + +5775955James KitchingmanBritish Tenor vocalistNeeds Votehttps://www.linkedin.com/in/james-kitchingman-281834249/?originalSubdomain=ukThe Choir Of Clare College + +5778200Marc ManodrittaFrench tenor vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Manodritta-Marc.htmChoeur de Chambre de NamurMaîtrise De Notre-Dame De ParisEnsemble Jacques ModerneCappella Mediterranea + +5778201Pierre VirlyFrench classical bass / baritone, born 1 March 1980.Needs VoteLe Concert D'AstréeEnsemble Jacques Moderne + +5780555Zachary WilderAmerican classical tenor vocalistNeeds Votehttp://zacharywilder.com/WilderLe Concert SpirituelLes Arts FlorissantsBach Collegium JapanPygmalionEnsemble ClematisBoston Early Music Festival Vocal & Chamber Ensembles + +5780713Judith DepoutotClassical violist.Needs VoteJudith Depoutot-RichardLe Concert SpirituelLes Talens LyriquesOrchestre Baroque de Montauban + +5780906Cyril CiabaudFrench oboist, born 1982.Needs Votehttps://multilaterale.fr/en/member/cyril-ciabaudOrchestre Philharmonique De Radio FranceMusique Des Gardiens De La PaixMultilatérale + +5786379Israel RosenbaumJazz bassist.Needs VoteIsrael RosembaumLouis Armstrong And His Orchestra + +5786382Bobby Guy (5)William Robert GuyTrumpeter from New Jersey who started his career in 1935 at age 20 with [a=Kay Kyser And His Orchestra]. +He married [a905976] in 1946. + +Born: 8 March 1916 in Lambertville, New Jersey, USA +Died: 27 May 1964 in Los Angeles, California, USANeeds VoteRobert GuyLouis Armstrong And His OrchestraKay Kyser And His OrchestraJohn Scott Trotter And His Orchestra + +5786387Earle PenneyCredited as trumpet player.Needs VoteLouis Armstrong And His Orchestra + +5786388Alex Massey (2)Credited as saxophone player.Needs VoteLouis Armstrong And His Orchestra + +5786773Georg DrakeGerman classical tenor vocalist born 1991Needs Votehttps://www.facebook.com/georg.depunktRundfunkchor BerlinKnabenchor HannoverLa Festa Musicaleensemble VOX WERDENSIS + +5788111Frank Howard (7)British classical violin & viola player, violin teacher, and bow maker. Born in 1868 - Died in 1930. +Former member of the [a=London Symphony Orchestra] (1921-1928) and the [b]Kutcher String Quartet[/b] (1922). +Needs VoteHowardLondon Symphony OrchestraInternational String Quartet + +5788628Philippe MalaterreNeeds Major ChangesP. Malaterre + +5789384Tranz-LinquantsAaron CurtisUK electronic dance music DJ, producer and remixer from Swansea, Wales +Style: HardstyleCorrecthttps://www.facebook.com/Tranzlinquantshttps://soundcloud.com/the-tranz-linquantshttps://www.mixcloud.com/discover/tranz-linquants/The TranzlinquantsTranz LinquantsTranz-LiquantsTranzlinquantsA.C_1Kujin-FuAaron Curtis + +5789486Jörg HassenrückJörg Hassenrück is a German cellist.Needs Votehttp://www.staatskapelle-dresden.de/staatskapelle/orchestermitglieder/Staatskapelle DresdenDresdner KapellsolistenEnsemble Frauenkirche Dresden + +5790235Gordon HallbergBass trombone player for the Boston Symphony Orchestra, 1971-1985.Needs Votehttps://www.stringacademyofthesouthwest.org/teamHallbergBoston Symphony OrchestraBoston Symphony Chamber Players + +5790236Matthew RuggieroBassoon player. Born 1932, died 2013. Assistant Principal bassoonist of [a395913] (1961 to ) and Principal bassoonist of the [a392677] (1974 to )Needs Votehttps://necmusic.edu/news/nec-mourns-death-matthew-ruggieroBoston Pops OrchestraBoston Symphony OrchestraBoston Symphony Chamber Players + +5790348Pat Ryan (14)Former principal clarinet with the [a374006] until 1957.CorrectRyanHallé Orchestra + +5791981Jerry Smith (47)Gerald SmithBass player. +He started out with Rod Piazza, Richard Innes and Buddy Reed which became Bacon Fat. Recorded with Big Joe Turner, T - Bone Walker. Jimmy "night train" Forest, Little Joe BlueNeeds Votehttp://wildfiretoday.com/2013/03/08/loop-fire-survivor-talks/https://www.youtube.com/watch?v=CHc_SNOobCA&t=1015sLittle RichardBig Joe TurnerBacon FatHollywood Fats BandBuddy Reed And The Rocket 88's + +5792338Helen Cox (4)Violinist. Former principal second violin with the [a835739]Needs VoteBournemouth Symphony Orchestra + +5794424Nicola FavaroOboe player.Needs VoteVenice Baroque OrchestraI Virtuosi Dell'Ensemble Di Venezia + +5796732John StulzClassical violist.Needs VoteEnsemble Intercontemporain + +5796816Julien DugersFrench classical trombonist, born 9 March 1979.Needs VoteJulien DuguersOrchestre National De France + +5796819Jean-Baptiste MagnonClassical viola playerNeeds VoteOrchestre De L'Opéra De LyonOrchestre De Lyon + +5799240Lindsey MarieMulti-Genre vocalist based out of Chicago.Needs Votehttps://www.facebook.com/lindseymariemusichttps://soundcloud.com/lindseymarie_vocalist + +5799716Christoph KonczClassical violinist, born in Konstanz, Germany.Needs VoteChristophe KonczOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Virtuosen + +5804888Matthais RüttersGerman classical flautistNeeds VoteBerliner Philharmoniker + +5804903Andrey GodikRussian classical oboistNeeds VoteMünchner PhilharmonikerMahler Chamber OrchestraBamberger Symphoniker + +5804934Olivier DerbesseFrench clarinetist.Needs VoteOrchestre De Paris + +5804977Jeroen BillietClassical hornist.Needs VoteLe Concert D'AstréeB'Rock OrchestraA Nocte TemporisMillenium OrchestraSolstice Ensemble + +5808837Williams' Washboard Band (2)Jazz group, that recorded a session for Victor/Bluebird in 1933. +For the Clarence Williams led group, mostly credited as Clarence Williams and his Washboard Band, use [a=Williams' Washboard Band].Needs VoteTinsley's Washboard BandJimmy Hill (10) + +5809062H. Smith (8)Washboard playerNeeds VoteWashboard Rhythm Kings + +5809063Jimmy Hill (10)US clarinet, alto saxophone player.Needs VoteWilliams' Washboard Band (2) + +5814649Paul Cannon (2)Paul CannonDouble bassist from the USA.Needs Votehttps://www.ensemble-modern.com/en/about-us/members/paul-cannonPaul CannonEnsemble ModernEnsemble Modern Orchestra + +5817498Fenella GillClassical cellist.Needs VoteFenela GillSydney Symphony Orchestra + +5818137Hanno Leichtmann (2)Lacquer cutting engineer at [l269429].Needs VoteHALHalCalyx Mastering + +5818456Aurélie MoreelsClassical soprano vocalistNeeds VoteChoeur de Chambre de Namur + +5819083Dimitry MarkevitchДимитрий Борисович МаркевичDimitry Borisovich Markevitch (March 16, 1923, La Tour-de-Peilz – January 29, 2002, Clarens) Swiss-born American cellist, researcher, teacher, and musicologist. Member of the [a327356] Orchestra in the 1960s. +Great-great-grandson of [a3014266]. Brother of [a448010]. Uncle of [a1754561].Needs Votehttps://en.wikipedia.org/wiki/Dimitry_MarkevitchDimitry MarkevichDmitri MarkevitchNew York Philharmonic + +5819571Joaquin VicedoJoaquín Vicedo DavóSpanish trombonist.Needs VoteJoaquin "Ximo" VicedoXimo VicedoOrquesta De CadaquésOrquesta Sinfónica de RTVE + +5822859Enrico Filippo MalignoItalian classical violinist.Needs VoteTonhalle-Orchester Zürich + +5823205Rie KoyamaRie KoyamaBassoon player, born 1991 in Stuttgart / Germany, is from a Japanese family of musicians and, at the age of 25, has already won top accolades in many important national and international competitions. Needs Votehttp://www.rie-koyama.com/Bamberger SymphonikerDeutsche Kammerphilharmonie BremenEstonian Festival OrchestraVeits QuintetFranz Ensemble + +5823231Stefan HelbigGerman classical hornist.Needs VoteStuttgarter Philharmoniker + +5823645Jun KellerJun Keller (born 1973) is a German violinist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerMünchener KammerorchesterWiener Virtuosen + +5824576Sol GeskinAmerican violin playerCorrectHarry James And His Orchestra + +5825474Solistes De La Société Des Concerts Du Conservatoire De ParisEnsemble with soloists from [a703271]Needs VoteBläser-Ensemble Des Orchestre De La Société Des Concerts Du Conservatoire ParisEnsemble De Solistes De L'Orchestre De La Société Des Concerts Du ConservatoireEnsemble De Solistes De L'orchestre De La Société Des Concerts Du Conservatoire De ParisLes Solistes Du ConservatoireSolistesSolistes De L'Orchestre De La Société Des Concerts Du ConservatoireSolistes de l'Orchestre De La Société Des Concerts Du ConservatoireSoloists Paris Conservatoire OrchestraOrchestre De La Société Des Concerts Du Conservatoire + +5827426Reino AhtiainenNeeds VoteRallinelosetKippari Kvintetti + +5827612Larry KurkdjieAmerican violinist from the big band era.Needs VoteL. N. KurkdjieL.N. KurkdjieHarry James And His OrchestraHarry James & His Music Makers + +5832113Tex BrewsterCredited as trumpet player.Needs VoteTex BrewstarTex BrusstarJean Goldkette And His Orchestra + +5832114George Williams (32)Jazz clarinettist and saxophonist.Needs VoteJean Goldkette And His Orchestra + +5832610Paul Skelton (3)Paul SkeltonSinger, songwriter, multi-instrumentalist - mainly piano - and Trance music producer from Tullamore, Ireland. +Also known as Skello. +Contact: paulskelton86@hotmail.comNeeds Votehttp://www.facebook.com/paulskeltonmusichttp://www.facebook.com/paul.skelton.50159http://www.facebook.com/groups/342611986873885/http://www.instagram.com/paulskeltonmusic/http://twitter.com/skelton_musichttp://soundcloud.com/user-863617398http://soundcloud.com/paulskelton-musichttp://soundcloud.com/piabloofficialhttp://open.spotify.com/artist/0EtDkY89lQmLn7eMm1fmmEhttp://www.youtube.com/channel/UCNioYgm69sJxDsAn9EglQpwSkeltonPiabloTullamore Gospel Choir + +5836113Meret ForsterGerman music journalist, born 1975 in Munich.Needs VoteDr. Meret ForsterBR-Klassik + +5836401Gina CuffariAmerican bassoonist.Needs VoteOrpheus Chamber Orchestra + +5836579Dimitri GermanBaritone vocalist.Needs VoteChicago Symphony ChorusWilliam Ferris ChoraleGrant Park Chorus + +5836580Hannah Dixon-McConnellSoprano vocalist.Needs VoteHannah McConnellChicago Symphony ChorusWilliam Ferris ChoraleGrant Park Chorus + +5839116Ha Thanh BertauxClassical violinist.Needs VoteOrchestre Des Concerts Lamoureux + +5840655Hella WeigmannNeeds VoteRundfunkchor Berlin + +5842027Gerhard DierigGermhard Dierig is a German violist and tenor vocalist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerKölner Streichsextett + +5843505Ludovic MilhetClassical trombonistNeeds VoteLudovic MilhietOrchestre Philharmonique De Monte-CarloFuturs-Musiques + +5844702Mihkel KeremEstonian violinist and composer, born January 23, 1981 in Tallinn.Needs VoteRoyal Liverpool Philharmonic Orchestra + +5845044John Holmes (20)Oboe playerNeeds VoteBoston Pops OrchestraBoston Symphony Orchestra + +5845324Shagan GrolierClassical double bass playerNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +5845449Cäcilie SproßGerman violinist, born in Emsdetten, Germany.Needs VoteBayerisches StaatsorchesterThe Cape Town Symphony OrchestraLeopolder Quartett + +5845995Lucia NigohossianClassical mezzo-soprano / alto vocalist.Needs Votehttps://fr.linkedin.com/in/lucia-nigohossian-01738453Loutchia NigohossinnLe Concert SpirituelDialogos + +5846535Dom Dunstan O'KeeffeNeeds Major Changes + +5847536Wilfried GottwaldClarinet playerNeeds VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Mozart-Bläser + +5848516Βασίλης Παπαβασιλείου (3)Greek classical contrabass player, and author. Born in 1961. +[b]Do not confuse with pop/rock bassist & songwriter [a=Βασίλης Παπαβασιλείου][/b]. +He has been Principal Contrabass in the [a6342459] since 1989.Needs Votehttps://www.nationalopera.gr/syntelestes/item/188-vasilis-papavasileiouhttps://www.facebook.com/286326327953/posts/10158679805612954/Vasilis PapavasileiouVasilis PapavasilioyVassilis PapavassiliouΒ. ΠαπαβασιλείουΠαπαβασιλείου ΒασίληςLondon Symphony OrchestraΟρχήστρα Δωματίου Της Εθνικής Λυρικής ΣκηνήςΟρχήστρα Εθνικής Λυρικής Σκηνής + +5848915Henrik KringDanish violinistNeeds VoteOrchestre De L'Opéra De Lyon + +5848957Tom Scully (4)Big band jazz bassistCorrectHarry James And His Orchestra + +5850031Tom Jones (28)American jazz trumpeterCorrectHarry James And His Orchestra + +5853117Carlo Grimaldi[b]Carlo Grimaldi[/b] (pre-1660 — 19 April 1717, Messina) was a Sicilian organ builder and harpsichord maker active in Messina in the late XVII century. His biography is scant, with the earliest known archival records in 1679 mentioning Grimaldi's organ built at Santi Pietro e Paolo church in Acireale, Catania. A posthumous inventory of his workshop from May 1717 listed various instruments and spare parts for them: organs, harpsichords, virginals, and several [i]tiorbinos[/i] (small "theorbos"). He also made claviorgans; Cardinal Francesco del Giudice (1647—1725), the Viceroy of King of Spain Felipe V (1683—1746) in Palermo, owned one built in 1704. (According to Giuliana Montanari's 2005 article "[i]Florentine Claviorgans (1492–1900)[/i]" in The Galpin Society Journal, the Giacomo Andronico's organ at Basilica Soluntina di Sant'Anna church in Santa Flavia, Palermo was initially combined with Grimaldi's harpsichord and a gut-strung upright piano.) + +There are only three of Grimaldi's extant instruments, copied many times by contemporary makers, including [a2592571], [url=https://discogs.com/artist/4787408]John Phillips[/url], and [a=Tony Chinnery]: +[b]❁ 1697 [i]Harpsichord[/i][/b] at [l=Germanisches Nationalmuseum] in Nuremberg, Germany, inscribed: "[i]Carolus Grimaldi fecit ✝ Messane, 1697[/i]. Single manual, 2×8' disposition, compass: [i]G₁–c³[/i] +[b]❁ 1703 [i]Harpsichord[/i][/b] at [l=Cité de la Musique] in Paris, France, inscribed: "[i]CAROLVS GRIMALDI MESSANENSIS FECIT MESSANÆ ANNO DONI-1703[/i]." In 1972, [a=Michel Robin] made detailed technical drawings. +[b]❁ ca.1690 [i]Folding Harpsichord[/i][/b] at [url=https://discogs.com/release/17898475]Museo Nazionale degli Strumenti Musicali[/url] in Rome, Italy; inscribed "[i]Carolus Grimaldi fecit[/i]" on the first key, undated. Short octave, 2×8' disposition, [i]C/E–c³[/i] compass, the case has a painted exterior, split into three hinged sections, fifteen keys each: [i]C/E–f#[/i], [i]g–a1[/i], and [i]b1–c3[/i]. It's the sole Italian instrument of this type, described by musicologist [a=John Henry Van Der Meer] as a "folding harpsichord-spinet, similar to a Marius clavecin brisé." When first acquired by the Museum, Grimaldi's unique instrument was converted into a "tangent piano" ([i]tangentenflügel[/i]), with the jacks cut off and replaced by round hammerheads; it was later fully restored.Needs Votehttps://boalch.org/instruments/makerprofile/274https://collectionsdumusee.philharmoniedeparis.fr/doc/MUSEE/0161932https://objektkatalog.gnm.de/objekt/MIR1075https://www.academia.edu/49932584Grimaldi + +5853119Eric KushnerClassical hornistNeeds VoteVienna Symphonic Orchestra ProjectWiener SymphonikerEnsemble Contrasts Wien + +5853120Wolfgang SchuchbaurAustrian classical violinistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853121Herbert StiglitzViolinistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853122Siegfried BernsteinClassical drummerNeeds VoteProf. Siegfried BernsteinVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853123Thorwald AlmassyViolinistNeeds VoteVienna Symphonic Orchestra ProjectWiener SymphonikerWiener Concert-Verein + +5853124Rainer HornekViolinistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853125Peter SiakalaClassical cellistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853126Helmut Lackinger (2)Austrian violinistNeeds VoteVienna Symphonic Orchestra ProjectWiener SymphonikerSeraphin Quartett + +5853128Raphael LeoneClassical flutist and piccolo player.Needs Votehttp://wienermusikakademie.at/professor/43-4-dep-winds/64-prof-leone-raphael.htmlVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853129Eugen HodosiViolinistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853130Walter SeitingerWalter Seitinger was an Austrian classical drummer, arranger and marimbaphon-player from Graz. He passed away in November 2018.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerMallet-Trio + +5853132Eberhard ZwölferEberhard Zwölfer was a classical cellist. He passed away in 2018.Needs VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853133Wolfgang Kühn (3)Wolfgang Kühn is an Austrain bassoon player.Needs VoteVienna Symphonic Orchestra ProjectWiener SymphonikerTonkünstler Orchestra + +5853134Karl WirtherleClassical drummerNeeds VoteProf. Karl WirtherleVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853135Werner LillClassical cellistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853136Andreas SohmClassical double bassistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853137Manfred HeinelViolinistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853138Timon HornigViolinistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853139Hermann KlugHorn playerNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853140Christian BirnbaumAustrian violinist, born in 1964.Needs Votehttps://www.christianbirnbaum.comVienna Symphonic Orchestra ProjectWiener SymphonikerVerein Ensemble "Neue Streicher" + +5853142Ulrich SchönauerClassical violistNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853144Georg HaselböckViola playerNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853146Friedrich LetzViola playerNeeds VoteVienna Symphonic Orchestra ProjectWiener Symphoniker + +5853832Basia DanilowViolinist.Needs VoteOrchestra Of St. Luke'sThe Lark Quartet + +5855143Rachel GiveletClassical violinist.Needs VoteOrchestre Philharmonique De Radio France + +5856276Zefira ValovaClassical violinist. Concertmaster of [a4512828].Needs VoteZefira Rumenova ValovaOrchestra Of The Age Of EnlightenmentArte Dei SuonatoriEuropean Union Baroque OrchestraIl Pomo d'OroEnsemble CordeventoLes Ambassadeurs (6) + +5857864Kristen WitmerAmerican/Korean soprano Kristen Witmer began her musical studies with piano and singing at age 8, and harmony at age 15. She studied classical and baroque singing at Tokyo University of the Arts where she was awarded the Yomiuri New Artist Prize.Needs Votehttp://www.kristenwitmer.com/KWCollegium VocaleBach Collegium JapanVox LuminisCapricornus Ensemble StuttgartLuthers Bach Ensemble + +5857997Codie NezbittNeeds Major Changes + +5857998ExpulzeFelixHard Trance and Hardstyle DJ and producer based in Bolzano, Italy +Also in duo project [A=Expulze & Narfos] +Needs Votehttps://www.facebook.com/expulzeofficial/https://soundcloud.com/expulzeofficialhttps://www.instagram.com/expulze_official/ + +5857999Audio NitrateDan CandyHardcore DJ / Producer from Porthcawl, UK.Needs Votehttps://soundcloud.com/audionitrate + +5858000Hyper ActivNeeds Major ChangesHyperactiv + +5858001DJ AarnyNeeds Major Changes + +5858002Jordan Clark (3)Needs Major Changes + +5858003Lofty (4)Needs Major Changes + +5858004DJ FredPNeeds Major Changes + +5858005KrioniksLos Angeles based DJ/Producer specializing in Hard Dance and UK Hardcore.Needs Votehttps://www.facebook.com/DjKrioniks/https://soundcloud.com/krioniks + +5859739Stephan PätzoldStephan Pätzold (born 1962) is a German classical violist.Needs VoteStaatskapelle DresdenDresdner PhilharmonieDresdner KapellsolistenDresdner BarockorchesterCappella Musica Dresden + +5859750Martin JungnickelClassical cellistNeeds VoteStaatskapelle DresdenDresdner Barockorchester + +5859754Ulrike ScobelUlrike Scobel (6 September 1957 - 20 September 2020) was a German classical violinistNeeds VoteBerliner Sinfonie OrchesterStaatskapelle DresdenDresdner KapellsolistenDresdner Barockorchester + +5861160Carsten DuffinCarsten Carey DuffinCarsten Carey Duffin (born 1987) is a German horn player.Needs VoteCarsten C. DuffinCarsten Carey DuffinStaatsorchester StuttgartSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleBundesjugendorchesterNoPhilBrass + +5861161François BastianFrançois Bastian (born 1987) is a horn player. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieOrchester der Bayreuther FestspieleOrchester Des Schleswig-Holstein Musik FestivalsWorldBrass + +5862500Thomas KollikowskiThomas Kollikowski is a German bassoonist and lecturer at the [l1125469].Needs VoteOrchester Der Deutschen Oper BerlinBerliner Fagottquartett + +5864038Craig LeitchCredited as guitarist in early jazz periodNeeds VoteFrankie Trumbauer And His Orchestra + +5864433Wolfgang LindenthalAustrian flutist, born 1976 in Vienna, Austria. +Needs VoteEuropean Union Youth OrchestraBühnenorchester Der Wiener StaatsoperWiener Imperial Orchester + +5865785Alice KamenezkyClassical soprano vocalist.Needs Votehttps://alicekamenezky.com/Le Concert SpirituelLa Tempête + +5866846James PillaiFrench Horn player.Needs VoteLondon Symphony Orchestra + +5868334Franz WittenbrinkGerman arranger, composer, pianist, conductor and producer, born in Bad Bentheim.Needs Votehttps://de.wikipedia.org/wiki/Franz_WittenbrinkF. WittenbrinkRegensburger Domspatzen + +5868878Emanuel MatzEmanuel Matz is a German cellist.Needs VoteJunge Deutsche PhilharmonieGustav Mahler JugendorchesterDortmunder PhilharmonikerPhilharmonisches Staatsorchester Halle + +5870477Eike BoehmSound engineer.Needs VoteEike BohmEike Böhm + +5870478Caroline StrumphlerDutch Violinist, born in Eibergen in 1961.Needs Votehttps://www.concertgebouworkest.nl/en/musicians/caroline-strumphlerC. StrumphlerConcertgebouworkestEbony BandEuridice Quartet + +5870485Paulien WeierinkPaulien Weierink-Goossen Dutch horn player.Needs Votehttps://www.concertgebouworkest.nl/en/paulien-weierink-goossenP. WeierinkPaulien Weierink-GoosenPaulien Weierink-GoossenConcertgebouworkest + +5872340Miami House PartyAaron Andrews & Robbie BrysonUK DJ duo.Needs Votehttps://soundcloud.com/mhp-1https://www.youtube.com/user/miamihousepartyhttps://x.com/MiamiHouseParty + +5876550Anna GracaClassical alto vocalistNeeds VoteRadiokören + +5877386Tobias KnausGerman alto / countertenor vocalist, born 1981.Needs VoteCollegium VocaleGächinger Kantorei StuttgartChor Der J.S. Bach StiftungFreiburger DomsingknabenVoces SuavesCantus Et Musica Freiburg + +5878319Abertijne MalcourtFlemish singer, music copyist, and composer of the Renaissance (died before 1519). He is considered to be the composer most likely to have written the song "Malheur me bat".Correcthttps://en.wikipedia.org/wiki/Abertijne_MalcourtMalcortMalcourt + +5879480Yoshinori TominagaYoshinori Tominaga-HondaYoshinori Tominaga-Honda is a Japanese bassoonist, now based in Austria. He was a member of [a901539] from 1977 to 2015.Needs VoteDas Mozarteum Orchester Salzburg + +5881942Louise GrindelViolinist.Needs VoteOrchestre Philharmonique De Radio France + +5881943Vincent BrunViolinist.Needs VoteOrchestre Des Concerts Lamoureux + +5881945Florence DelepineFlorence Souchard-DelépineFrench classical flautist.Needs Votehttps://www.imdb.com/name/nm8322114/Florence DelépineOrchestre De Paris + +5881952Grégoire MéaClassical trumpeter, born in 1973 in Reims, France.Needs VoteOrchestre National De FranceQuintette Magnifica + +5881953Nicolas DrabicNicolas DrabikTrombone player.Needs VoteNicolas DrabikOrchestre De ParisVertige Brass Quintet + +5881960Sébastien LentzHorn player.Needs VoteOrchestre Philharmonique De Strasbourg + +5881961Raphael JacobRaphaël JacobViolinist.Needs VoteOrchestre De Paris + +5881962Aude-Marie DuperretViola player.Needs Votehttps://linkedin.com/in/aude-marie-duperret-0658b54aAude Marie DuperretOrchestre Des Concerts Lamoureux + +5881964Ulysse VigreuxDouble bass player.Needs VoteOrchestre De Paris + +5883446Keith HubacherNeeds Major Changes + +5885474Wolfgang GaisböckAustrian classical woodwind instrumentalist, born 3 April 1972 in Taiskirchen, Austria.Needs VoteCamerata Academica SalzburgEuropean Union Youth OrchestraArs Antiqua AustriaEnsemble 1700 + +5886284Karl Richter (5)Classical horn player.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +5886379Robert BauerstatterRobert Bauerstatter (1971 in Linz, Austria) is an Austrian violist. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraLissy QuartettWiener KlavierquintettMayseder QuartettIgnaz Pleyel Quartett + +5886493Henrietta BoxClassical mezzo-soprano & alto vocalistNeeds VoteThe Choir Of Clare College + +5886495Caroline MeinhardtClassical soprano vocalistNeeds VoteSan Francisco Symphony ChorusThe Choir Of Clare College + +5886496Helena CookeClssical mezzo-soprano vocalistNeeds VoteThe Choir Of Clare College + +5886497Laurence HarrisClassical bass vocalistNeeds VoteThe Choir Of Clare College + +5886498Catherine Clark (2)Classical mezzo-soprano vocalistNeeds VoteThe Choir Of Clare College + +5886499Laurence Booth-ClibbornClassical tenor vocalistNeeds VoteThe Choir Of Clare College + +5888177George BujieAmerican tuba player.CorrectHarry James And His Orchestra + +5888219Mark HavenNeeds Major Changes + +5888540Diego LucchesiItalian classical clarinetist, born in 1978 in Piacenza.Needs VoteBergen Filharmoniske Orkester + +5889689Caterina DemetzItalian violin player.Needs VoteOrchestra da Camera Italiana + +5891304Jürgen KarwathJürgen Karwarth is a German violinist.Needs VoteStaatskapelle WeimarOrchester der Bayreuther FestspieleWeimarer Barock-EnsembleThüringer Bach Collegium + +5892034Manfred Herzog (4)German cellist.Needs VoteStaatskapelle BerlinCamerata MusicaSalonorchester Eclair + +5892037Axel WilczokAxel Wilczok (6 February 1952 - 11 March 2018) was a German violinist. +Needs VoteStaatskapelle BerlinSalonorchester Eclair + +5893889Alice GlaieFrench classical soprano vocalistNeeds VoteLe Concert SpirituelPygmalion + +5893897Tiphaine CoquempotFrench Violin & Viola instrumentalistNeeds VoteLe Concert SpirituelPygmalionEnsemble Les SurprisesLes Ombres (3) + +5895622Tove LundSwedish classical violinist.Needs VoteGöteborgs Symfoniker + +5896385Karin KnutsonSwedish musician and cello teacher graduate at the University of Music in Gothenburg. +1 year cello studies for William Pleeth in London. +Cellist in Göteborgs Symfoniker and in various chamber music contexts.CorrectGöteborgs Symfoniker + +5898022Ilona Then-BerghIlona Then-Bergh (born 14 May 1960) is a German violinist and Professor of Violin at the [l318570].Needs VoteBayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen RundfunksMünchner KlaviertrioPiano Trio Then-Bergh – Yang – Schäfer + +5898041Pierre BadolFrench classical hornist.Needs VoteOrchestre Des Concerts Lamoureux + +5899662Patrick Charton (3)French luthier & bassistNeeds Votehttps://www.charton-luthier.com/Les Talens Lyriques + +5899857John Locke (10)Classical percussionistNeeds VoteBaltimore Symphony Orchestra + +5900534David Gauger IITrumpet, arranger, conductor. + +The oldest son of David Gauger, Sr. and Virginia Gauger, he earned his Bachelor of Music degree from Wheaton College, and his Master of Music degree from Northwestern University, eventually earning a doctorate degree. He performed with The Hong Kong Philharmonic Orchestra in the early 1980s, also performing with the Tulsa Philharmonic Orchestra. Gauger joined the [l558003] faculty in 1994, becoming the director of instrumental music there in addition to conducting the 60-piece [a5899770], teaching music technology, instrumental conducting, applied trumpet, and contemporary worship courses as well as coaching small instrumental ensembles. He performed as a substitute trumpeter for The [a837562] from 1999 and as assistant principal trumpet for The [a2312521] since 1997.Needs Votehttps://moodyaudio.com/person/david-gaugerDave Jr.David GaugerChicago Symphony OrchestraThe Gauger Brass + +5901049Ernest Kelly (2)US trombonistNeeds VoteOriginal Tuxedo Jazz Orchestra + +5901713Hans Messner (3)Classical keyboard instrumentalistNeeds VoteDas Mozarteum Orchester Salzburg + +5904649Hermes KrialesSpanish violin player. Concertino soloist in Orquesta Sinfónica de RTVE in the 70s.Needs VoteH. KrialesOrquesta Nacional De EspañaOrquesta Sinfónica de RTVECuarteto Español + +5905015Maurice MorseJazz saxophone player, played in the 1920s with [a=Ray Miller And His Orchestra]Needs VoteRay Miller And His Orchestra + +5905025Llyod WallenJazz trumpet player working since the 1920s.Needs VoteS. WallenRay Miller And His Orchestra + +5906056Wies de BoevéBelgian classical bassistNeeds Votehttps://www.facebook.com/WdBDoubleBass/De BoevéSymphonie-Orchester Des Bayerischen Rundfunks + +5908897Gaston AdoleTrombone playerNeeds VoteOrchestre De Chambre De Toulouse + +5908899Georges MichonBassoon playerNeeds VoteOrchestre De Chambre De Toulouse + +5908900Gilbert VoisinClarinet playerNeeds VoteG. VoisinOrchestre De Chambre De Toulouse + +5909016Ruth ProvostEnglish soprano.Needs Votehttps://www.facebook.com/ruth.provost.98https://www.bach-cantatas.com/Bio/Provost-Ruth.htmThe Sixteen + +5909017Camilla HarrisClassical soprano vocalistNeeds Votehttps://www.camillaharrissoprano.com/The SixteenTenebrae (10)AlamireCeleste (31)The Erebus Ensemble + +5909072Olivier OpdebeeckChorus master of Choeur de Chambre de NamurNeeds VoteChoeur de Chambre de NamurMaîtrise Du Conservatoire De Caen + +5910041Fabian NeckermannGerman tubistNeeds Votehttps://www.facebook.com/neckermann.tuba/Rundfunk-Sinfonieorchester BerlinTrio 21meter60 + +5910056Constantin HartwigGerman tubist, born in 1992.Needs Votehttps://www.facebook.com/Constantin-Hartwig-1894968440738501/Staatskapelle DresdenJunge Deutsche PhilharmonieLandesjugendorchester Rheinland-PfalzBundesjugendorchesterDortmunder PhilharmonikerTrio 21meter60 + +5910061Laura MoinianLaura Moinian (born 1994) is a German-Iranian cellist.Needs Votehttp://laura-moinian.deLaura Moinian-BagheryDas Mozarteum Orchester Salzburg + +5910064Steffen SchmidGerman tubist, born in 1988.Needs VoteBayerisches StaatsorchesterOrchester der Bayreuther FestspieleTrio 21meter60 + +5914989Andreas WillwohlAndreas Willwohl is a German classical violist.Needs Votehttp://andreaswillwohl.de/Rundfunk-Sinfonieorchester BerlinMandelring QuartettMetamorphosen BerlinEast Side Oktett + +5918780Benjamin NyffeneggerSwiss classical cellistNeeds VoteNyffeneggerOliver Schnyder TrioMythenensembleorchestralLabyrinth EnsembleLumina QuartettTonhalle-Orchester ZürichThe European String Quartet + +5923102Charles GelruthGuitaristCorrectCharles GilruthJack Teagarden And His Orchestra + +5924007Hamish McLarenBritish classical countertenor vocalistNeeds Votehttps://hamish-mclaren.com/Hamisch MclarenSt. John's College ChoirHampton Court Palace Chapel Choir + +5924163Maria LundellAlto vocalistCorrectRadiokören + +5925377Rudolf NekvasilRudolf Nekvasil (25 June 1944) is an Austrian classical flute player. He was a member of the [a754974] from 1973 to 2004.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerORF SymphonieorchesterEichendorff-Quintett Wien + +5925492Elisabeth SchreinzerClassical Viola da Gamba instrumentalistNeeds VoteSolistenensemble Der Wiener Staatsoper + +5927172Marlène RivièreFrench classical cellist, born in 1980.Needs VoteOrchestre Des Concerts LamoureuxOrchestre National De FranceL'Instant Donné + +5927903Audefroid Le BâtardAudefroi Le BâtardAudefroi le Bastart (modern French Bâtard) was a French trouvère from Artois, who flourished in the early thirteenth century.Needs Votehttps://en.wikipedia.org/wiki/Audefroi_le_BastartAudefroiAudefroi Le BastartAudefroi Le BâtardAudefrois le BatardAudefroy-Le-Bastard + +5927962HertRenaissance-era composer, full name possibly John Herte, fl. c. 1440-60.Needs VoteHert [?John Herte] + +5928908Konrad UrbanGerman classical bass vocalistNeeds VoteRundfunkchor BerlinChor der Staatsoper Dresden + +5931599Håkan SjönnemoSwedish classical violinistNeeds VoteGöteborgs Symfoniker + +5933292Marie Roos (2)Needs VoteEstonian Philharmonic Chamber Choir + +5934203Yoni GertnerIsraeli classical violist, born in 1984.Needs VoteЙоні Гертнерיוני גדנריוני גרטנרIsrael Philharmonic Orchestra + +5935730Petra Van Der HeideClassical harpistNeeds VoteConcertgebouworkest + +5935731Jeroen BalDutch classical pianistNeeds VoteConcertgebouworkest + +5936347Margus UusEstonian classical cellist.Needs Votehttp://www.erso.ee/?people=margus-uusEstonian National Symphony OrchestraTallinn Chamber OrchestraC-JAM (2) + +5936349Pärt TarvasEstonian classical cellist.Needs VoteEstonian National Symphony OrchestraC-JAM (2) + +5936663Solistenensemble Der Wiener StaatsoperSoloists of the Vienna State Opera Orchestra (Orchester Der Wiener Staatsoper, to give its proper title).Needs VoteInstrumentalsolistenMembers Of The Vienna Staatsoper OrchestraMembers Of The Vienna State Opera OrchestraSolistas De La Opera Del Estado De VienaSolistesSolistes De La Société Orchestrale De VienneSolistiSolists Of The Vienna State OperaSoloistSoloist Of The Vienna State OperaSoloistsSoloists From The Vienna State OperaSoloists Of The Vienna OperaSoloists Of The Vienna State OperaSoloists Of The Vienna State Opera OrchestraViennese Concert SoloistsGeorge MalcolmWilli BoskovskyCamillo WanausekRichard HarandBeatrice ReichertFranz HoletschekEduard RabErnst KissBurkhart KraeutlerElisabeth SchreinzerOrchester Der Wiener Staatsoper + +5938938Camillo AngaritaCountertenor & Tenor vocalist.Needs VoteChoeur de Chambre de NamurLes Cris de ParisEnsemble Vocal AedesEnsemble Les Surprises + +5940249Tobias EinsiedlerClassical bassoonist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchner Bläseroktett + +5940480Manfred HoppertManfred Hoppert was a German classical tuba player. He died in 2021 at the age of 84. + +Musical training in Weimar and Köln. 1960-68 Radio Orchestra NDR, Hannover; Since 1968 member of the Bavarian Radio Symphony. Guest Engagements with the Swiss Festival Orchestra Lucerne. Teacher at the State "Hochschule für Musik" in Munich.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchner Blechbläsersolisten + +5941724Amandine DehantClassical double bassistNeeds VoteOrchestre National De L'Opéra De Paris + +5941805Lonneke van StraalenClassical violinistNeeds VoteNetherlands Chamber OrchestraLudwig OrchestraPynarello + +5942543Hugo HymasThe English tenor, Hugo Hymas, graduated from Durham University in 2014.Needs Votehttps://www.hugohymas.com/https://www.bach-cantatas.com/Bio/Hymas-Hugo.htmThe SixteenRicercar ConsortDunedin ConsortHathor ConsortTenebrae (10) + +5942921Wolfram TeßmerGerman baritone / bass vocalist, member of Rundfunkchor Berlin.Needs VoteRundfunkchor Berlin + +5943554Patrick Messina (2)Classical clarinettist, born in Nice, France.Needs VoteOrchestre National De France + +5944128Jörg BreuningerJörg Breuninger is a German cellist. He's the brother of [a6045554] and [a7009570].Needs VoteRundfunk-Sinfonieorchester BerlinLandesjugendorchester Baden-Württemberg + +5946717Christian Lampert (2)German classical hornist, professor at [l316267].Needs Votehttps://de.wikipedia.org/wiki/Christian_Lamperthttps://www.hmdk-stuttgart.de/unsere-hochschule/personenverzeichnis/personen/christian-lampert/?no_cache=1Radio-Sinfonie-Orchester FrankfurtOrchester der Bayreuther FestspieleConsortium ClassicumSwiss Chamber Soloists + +5947800Rytmin kvintettiNeeds Major ChangesRytmi-KvintettiRytmi-kvintettiRytmin Kvintetti + +5950910Emmanuel LavilleFrench classical oboist, born December 27, 1982.Needs VoteSveriges Radios Symfoniorkester + +5950921Gloria GashiViolinist.Needs VoteGloria Gashi PalermoOrchestre National De L'Opéra De ParisParis Symphonic Orchestra + +5950933Jean-Christophe GrallFrench classical violinist.Needs VoteJ. Christophe GrallOrchestre National De L'Opéra De ParisOctuor de France + +5951716Charles McConnellCredited as bassist in early jazz period.Needs VoteFrankie Trumbauer And His Orchestra + +5951717Dan GaebeAmerican jazz bass and tuba player in 1920's-30's.Needs VoteDan GaybeFrankie Trumbauer And His Orchestra + +5951718Gale StoutCredited as clarinet and alto saxophone player in early jazz period.Needs VoteGail StantFrankie Trumbauer And His Orchestra + +5951719Cedric SpringCredited as vibraphone violin and guitar player in early jazz periodNeeds VoteFrederick SapingFrankie Trumbauer And His OrchestraThe Three Spooks + +5953066Danny AltierJazz Saxophonist active 1920's ChicagoNeeds VoteDanny Altier And His Orchestra + +5953067Johnny CarsellaJazz Trombonist active in 1920's ChicagoNeeds VoteDanny Altier And His Orchestra + +5953069Floyd TownesJazz saxophonist active in 1920's ChicagoNeeds VoteFloyd TowneFloyd TownsElmer Schoebel And His Friars Society Orchestra + +5953494Billy KatoCredited as trombonist.Needs VoteBilly CatoColeman Hawkins And His Orchestra + +5957573Jack BohannonAmerican jazz trumpeterCorrectHarry James And His Orchestra + +5959080Colin CassonTrumpet player from Haworth, Yorkshire, UK. He has played in Brass Bands, UK Military Bands, Concert and Classical Orchestras. The often amusing tales of his musical career can be read in his own book "Blowing My Own Trumpet, Memoirs of a Yorkshire Bandsman" ISBN 9780752447193. Colin is now retired. +Needs VoteThe Black Dyke Mills BandCity Of Birmingham Symphony OrchestraBBC PhilharmonicThe Band Of The Irish GuardsBBC Welsh Symphony OrchestraBBC Northern Symphony OrchestraBBC Philharmonic BrassCity of Bradford Band + +5967126Woodrow Key (2)Woodrow H. KeyJazz tenor saxophonist +b. ca.1915-20 in Tuskogee, Alabama. + +Influenced by [a=Lester Young]. Played in local clubs, joined [a=Fletcher Henderson] ca. October 1943, stayed until May 1947.Needs VoteFletcher Henderson And His Orchestra + +5967128Elisha HannaTrumpet player and copyist in Fletcher Henderson's band during the 1940sNeeds VoteFletcher Henderson And His Orchestra + +5967131Matthew RuckerTrumpet player with Fletcher Henderson's band during the 1940sNeeds VoteFletcher Henderson And His Orchestra + +5972419William RheinClassical Bassist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +5975598Konstanze BodamerVioloncello player.Needs VoteSüdwestdeutsches Kammerorchester + +5975600Dariusz WasiakViola player.Needs VoteSüdwestdeutsches Kammerorchester + +5975601Cheryl SwobodaAmerican classical violist.Needs VoteSüdwestdeutsches Kammerorchester + +5975603Michael EwersGerman classical violinist and concertmaster, born in 1969 in Sindelfingen .Needs VoteSüdwestdeutsches Kammerorchester + +5975604Jakob LustigJakob Lustig (born 1971) is a German violist. +Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +5975605Julia Ströbel-BänschGerman classical oboistNeeds VoteSüdwestdeutsches KammerorchesterGaechinger Cantorey + +5975607Eleonore BodendorffViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +5975609Andrzej BrzeckiViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +5975610Vera KleimannViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +5975611Andrea HankeVioloncello player.Needs VoteSüdwestdeutsches Kammerorchester + +5976015Jan RemmersGerman tenor vocalistNeeds VoteRundfunkchor Berlin + +5976651Máire O'BrienMezzo-sopranoNeeds VoteChicago Symphony ChorusGrant Park Chorus + +5977980Jimmy Wilson (35)drummer 1920's jazzNeeds VoteCalifornia Ramblers + +5978769Colin ParrClarinetist. + +Was Principal Clarinet with the City of Birmingham Symphony Orchestra from 1969 to 2003. He appeared as soloist with the orchestra on many occasions as well as playing guest principal with the London Symphony, London Philharmonic, Philharmonia and BBC orchestras. Colin was also actively involved with the Birmingham Contemporary Music Group as well as other chamber music groups and was professor of clarinet at the Birmingham Conservatoire.Needs VoteCity Of Birmingham Symphony Orchestra + +5979081Mina FisherCellist. Based in Minneapolis, MN, USA.Needs Votehttps://gtcys.org/community/private-teachers/mina-fisherhttps://www.linkedin.com/in/mina-fisher-b45ba48/Minnesota OrchestraEnsemble Capriccio + +5979154Yoko Kanamaru金丸葉子Japanese classical viola player.Needs Votehttps://yokokanamaru.com/Yoko Kanamaru-BungerothConcertgebouworkest + +5979641Adam Aiken (2)Treble vocalistNeeds VoteThe Choir Of Westminster Abbey + +5980729Ary van LeeuwenArij Jan Jacob Elmert Willem Theodor van LeeuwenAry van Leeuwen (25 May 1875 - 6 November 1953) was a Dutch flute player and composer.Needs VoteThe Philadelphia OrchestraBerliner PhilharmonikerWiener PhilharmonikerCincinnati Symphony Orchestra + +5980896Robert Johnson (50)British folk singerNeeds VoteThe Roger Wagner Chorale + +5982147Cyrille DuboisFrench Tenor vocalistNeeds Votehttp://cyrille-dubois.frDuboisLe Concert SpirituelDuo Contraste + +5982148Josépha JégardFrench classical violinistNeeds VoteJosepha JegardLes Talens LyriquesLes Ambassadeurs (6) + +5982165Philippe GenestierClassical trumpeter.Needs VoteLe Concert SpirituelBach Collegium JapanLe Concert de la LogeLa Chapelle Harmonique + +5983009Arno PitersDutch classical clarinet playerNeeds VoteConcertgebouworkestEbony Band + +5984475Solisten des Rias - TanzorchestersNeeds VoteSolisten Des Rias-TanzorchestersSolisten d. Rias-Tanzorch.Solisten des Rias-Berlin-OrchesterRIAS Tanzorchester + +5987911Enzo LigrestiItalian classical violin player.Needs VoteI Solisti VenetiOrchestra da Camera Italiana + +5989555Dietmar BoeckGerman trumpeter and former lecturer at the music college in TrossingenNeeds VoteRadio-Sinfonieorchester Stuttgart + +5991730Renaud Guy-RousseauClarinet playerNeeds VoteOrchestre National De FranceMAÂT + +5992475Helga HusselsHelga Gmelin Hussels Helga Hussels (15 January 1930 in Berlin, Germany - 28 May 2018 in Sweden) was a Swedish violinist. She's from a German-Jewish family where women's professional identity is important. Her grandmother, Natalie Ferchland, was the first female doctor in Germany. In 1953, Helga Hussel graduated from the Mozarteum in Salzburg. After solo work in Europe, she was rejected by several major European orchestras, such as the Berlin Philharmonic, because she was a woman. + +Between the years 1969 to 1995, she played her Stradivarius as concertmaster of the Gothenburg Symphony Orchestra. During this time, "the Gothenburg Sound" developed, the internationally acclaimed string sound and the [a1015406] were named the Swedish National Orchestra.Needs VoteGöteborgs SymfonikerDuo Paganini (2) + +5993595Louis de Vries (3)Louis de VriesDutch jazz trumpet player (January 6, 1905, Groningen - September 5, 1935). Brother of [a=Jack de Vries], with whom he often performed.Needs VoteDe VriesL. de Vriesde VriesThe RamblersBen Berlin Und Sein OrchesterLouis de Vries And His Rhythm BoysThe Excellos Five + +5994276Gerda SchimmelClassical harpistNeeds VoteKammerorchester Berlin + +5995753Maiko MatsuokaJapanese classical violinist, born in 1982 in Tokyo.Needs VoteEnsemble ModernTrio Steuermann + +5995769Andrea KimAndrea Eun-Jeong KimClassical violinist born in Dinslaken, GermanyNeeds Votehttp://www.andreakim.de/Symphonie-Orchester Des Bayerischen RundfunksGustav Mahler JugendorchesterDas Neue Orchesterhr-Sinfonieorchester + +5995787Mátyás NémethClassical double bassistNeeds VoteBamberger SymphonikerEssener Philharmoniker + +5996094Sifei ChengTaiwanese violistNeeds VoteSi-Fei ChengThe Saint Paul Chamber OrchestraMinnesota Orchestra + +5997488Mikhail JouravlevClassical oboist.Needs VoteConcertgebouw Chamber OrchestraMusicaeterna + +5997490Hayk KhachatryanClassical double bassist.Needs VoteMahler Chamber OrchestraMusicaeternaPhilharmonia Zürich + +5997499Anna PaninaRussian Violinist.Needs VoteRussian National OrchestraMusicaeterna + +6003300Jérôme PingetFrench classical cellist.Needs VotePingetOrchestre Philharmonique De Radio FranceQuatuor Gabriel + +6004016Liza JohnsonAustralian violinistNeeds VoteScottish Chamber OrchestraScottish Ensemble + +6004019Emily Louise NennigerClassical violinistNeeds VoteEmily NennigerScottish Ensemble + +6005546Bill CastellAlto saxophonistCorrectHarry James And His Orchestra + +6007643Alfred SpilarA violinist with the Vienna Philharmonic Orchestra, Mr. Spilar had also assembled a group of like-minded individuals for his schrammel-ensemble (which was renamed to "Philharmonia Schrammeln" after his death).Needs VoteWiener PhilharmonikerDie Spilar-Schrammeln + +6012652Natalie SchwaabeFlute player.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6012653Franz KanefzkyGerman composer and hornistNeeds VoteMünchner Rundfunkorchester + +6016521Georg HopperdizelClassical hornistNeeds VoteBamberger Symphoniker + +6016522Rudolf BenzClassical clarinetistNeeds VoteBamberger Symphoniker + +6021556Bernice ByresAmerican singer during the big band era.Correcthttp://ilovebernice.blogspot.com/2004/12/glamour-shot.htmlBeatrice ByresBernice ByersHarry James And His Orchestra + +6022805Al PataccaAmerican jazz trumpeterCorrectHarry James And His Orchestra + +6022806Gary KrandAmerican jazz saxophonistCorrectHarry James And His Orchestra + +6022807Dave Johnson (52)American jazz saxophonistCorrectHarry James And His Orchestra + +6023358Tassis ChristoyannisGreek opera baritone vocalist, born 1967 in Athens.Needs Votehttps://en.wikipedia.org/wiki/Tassis_Christoyannishttp://www.roh.org.uk/people/tassis-christoyannishttps://web.archive.org/web/20170317233319/http://www.bfz.hu/en/biographies/tassis-christoyannis-2/ChristoyannisTassis ChristogiannisΤάσης ΧριστογιαννόπουλοςLe Concert SpirituelChoeur de Chambre de Namur + +6023359Marie KalinineFrench mezzo-soprano vocalist.Needs Votehttp://www.mariekalinine.com/Le Concert Spirituel + +6024158Conrad ZwickyConrad Zwicky (born 1946) is a Swiss violist, organist and composer.Needs Votehttps://www.zwicky.net/ZwickyFestival Strings LucerneZürcher StreichersolistenZürcher KlavierquintettZürcher KlavierquartettTonhalle-Orchester Zürich + +6027422Honorine SchaefferClassical cellistNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +6033384Juxtaposition (3)Needs Major ChangesUtku TavilAgnes HvizdalekMagnus Skavhaug NergaardNatali Abrahamsen Garner + +6033385Natali Abrahamsen GarnerNorwegian musician and composer from Trondheim (she was born in Oslo).Needs Votehttps://www.natali-abrahamsen-garner.com/Natali A. GarnerNatali Garner AbrahamsenTrondheim Jazz OrchestraTrondheim VoicesPropan (2)Juxtaposition (3)Susanna & The Brotherhood Of Our LadyDelish + +6033943Gerard MondolNeeds Major Changes + +6033944Simon VanderkamNeeds Major ChangesSimon Vandercam + +6033945Philippe PereronNeeds Major Changes + +6033946Gessre ReynoldsNeeds Major Changes + +6035615David GovertsenClassical Bass VocalistNeeds VoteChicago Symphony ChorusGrant Park Chorus + +6037404Heike PeetzHeike Peetz GlintenkampGerman classical soprano vocalistNeeds VoteRundfunkchor Berlin + +6037405Katrin Pohl-KanießGerman classical soprano vocalistNeeds VoteRundfunkchor Berlin + +6037406Uta SchwarzeGerman clssical soprano vocalistNeeds VoteRundfunkchor Berlin + +6037407Catherine HenseGerman classical soprano vocalist born 1963 in Ludwigslust Needs VoteRundfunkchor Berlin + +6037408Uta FabriciusClassical soprano vocalistNeeds VoteRundfunkchor Berlin + +6037409Gabriele WillertGerman classical soprano vocalist Needs VoteRundfunkchor Berlin + +6037411Ricarda VollprechtGerman classical soprano vocalist born in Dresden.Needs VoteRundfunkchor Berlin + +6037486Doris ZuckerGerman classical alto vocalistNeeds VoteRundfunkchor Berlin + +6037487Judith SimonisGerman classical alto vocalistNeeds VoteRundfunkchor Berlin + +6037488Christina SeifertGerman classical alto vocalistNeeds VoteRundfunkchor Berlin + +6037489Ingrid LizzioGerman classical alto vocalistNeeds VoteRundfunkchor Berlin + +6037490Katharina Thimm (2)German classical alto vocalistNeeds VoteRundfunkchor Berlin + +6037491Ute KehrerClassical alto vocalistNeeds VoteRundfunkchor Berlin + +6037492Sibylle JulingClassical alto vocalistNeeds VoteRundfunkchor Berlin + +6037493Bettina PieckClassical alto vocalistNeeds VoteRundfunkchor Berlin + +6037495Monika DegenhardtGerman classical mezzo-soprano / alto vocalistNeeds Votehttp://monikadegenhardt.com/Rundfunkchor Berlin + +6037496Stefanie BlumenscheinClassical alto vocalistNeeds VoteStefanie Gläser-BlumenscheinRundfunkchor Berlin + +6037497Ines MuschkaGerman classical alto vocalist born at Schwarzenberg/ErzgebirgeNeeds VoteRundfunkchor BerlinOpus 4 (6) + +6037897Wolfgang Weber (6)German, classical tenor vocalistNeeds VoteRundfunkchor Berlin + +6037898Seongju OhSoutn Korean classical tenor vocalist, composer, chorus and lyricist born in Busan.Needs Votehttp://seongju-oh.de/Rundfunkchor Berlin + +6037899Christoph LeonhardtClassical tenor vocalistNeeds VoteRundfunkchor Berlin + +6037900Norbert SängerGerman classical tenor vocalistNeeds VoteRundfunkchor Berlin + +6037901Kristiina MäkimattilaClassical alto vocalist from FinlandNeeds VoteRundfunkchor Berlin + +6038292Sören von BillerbeckGerman classical bass vocalist born in Mühlhausen/ ThüringenNeeds VoteRundfunkchor Berlin + +6038294Bernd Engel (2)German classical bass vocalistNeeds VoteRundfunkchor Berlin + +6038295Georg Witt (2)German classical bass vocalistNeeds VoteRundfunkchor Berlin + +6038296Axel ScheidigGerman classical bass vocalist born 1970 in Sonneberg/ThüringenNeeds VoteRundfunkchor Berlin + +6038297Sebastian SchwarzeClassical bass vocalistNeeds VoteRundfunkchor Berlin + +6038298Rainer SchnösGerman classical bass vocalist born 1964 in WürzburgNeeds VoteRundfunkchor Berlin + +6038315Christfried KanigClassical bass vocalistNeeds VoteRundfunkchor Berlin + +6038484Gabriel CzopkaPolish horn player.Needs Votehttps://waltornia.pl/biografie/994-gabriel-czopkaOrkiestra Symfoniczna Filharmonii Narodowej + +6039485Rodney StatfordContrabass (double-bass) playerNeeds VoteEnglish Chamber Orchestra + +6039916Nancy BittnerAmerican violist and member of the National Symphony Orchestra.Needs VoteNational Symphony Orchestra + +6040082Jean-Claude MontacClassical bassoonist.Needs VoteJ.-C. MontacOrchestre National De L'Opéra De ParisLes Bassons De L'Opéra + +6040083Sylvie PerretClassical harpistNeeds VoteOrchestre National De L'Opéra De Paris + +6040741Glenn DonnellanAmerican violinist, violist, and member of the [url=http://www.discogs.com/artist/915941-National-Symphony-Orchestra]National Symphony Orchestra[/url].Needs Votehttps://www.kennedy-center.org/nso/mtm/Musician/1417Glen DonnellenGlenn DonnellenNational Symphony Orchestra + +6041786Gabriel FerryClassical violinist + alto vocalistNeeds VoteLe Concert D'AstréePygmalionLa Chapelle RhénaneLes Ambassadeurs (6)Ensemble Les Surprises + +6041787Marie-Amélie ClémentClassical double bassist & cellist (Basse de Violon)Needs VoteLe Concert SpirituelEnsemble Les SurprisesLes Ombres (3) + +6042121Juha NumminenNeeds Major Changes + +6042215Giovanni GuzzoViolinist from Venezuela Needs VoteCamerata Academica Salzburg + +6043731Michael MietkeMichael Mietke (c.1656/71—1719) was a German musical instruments builder, maker of harpsichords and harps.Needs VoteM. MietkeMietke + +6044788Al LaneMembers of vocal group The Quintones.Needs VoteThe Quintones + +6047138Mark PaineBritish horn playerNeeds VoteMarkCity Of London SinfoniaEuropean Union Chamber OrchestraAmbache Chamber Ensemble + +6049192Charles PilonClassical violist.Needs VoteOrchestre symphonique de Montréal + +6049193Ann ChowCanadian classical violinist.Needs VoteVancouver Symphony OrchestraOrchestre symphonique de MontréalWinnipeg Symphony Orchestra + +6050262Sascha GlintenkampGerman bass vocalist.Needs VoteRundfunkchor Berlin + +6051184Pertti (2)Needs Major Changes + +6051246Hyewon LimHyewon Lim is a violinist from South Korea.Needs VoteMalmö Symphony OrchestraWiener SymphonikerStavanger SymfoniorkesterHelsingborgs SymfoniorkesterNorrbottens Kammarorkester + +6051884Matthias SimonsClassical violinist. A member of the [a604396] from 1965 to 2000.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksResidenz Kammerorchester München + +6052852Dr. Adolf J. EichenseerAdolf Johann Eichenseer(born January 27, 1934 in Schmidmühlen, † November 20, 2015 in Regensburg) was a German dialect poet, the first [i]Heimatpfleger[/i] (tradition researcher) of the district [b]Oberpfalz[/b] and carrier of the Federal Cross of Merit 1st class. He also played bagpipes.Needs Votehttps://de.wikipedia.org/wiki/Adolf_Eichenseerhttps://www.battenberg-gietl.de/heimat/autor/adolf-j-eichenseerAdolf EichenseerAdolf J. EichenseerDr. Adolf EichenseerRegensburger Domspatzen + +6054326Pascal ClarhautClassical trumpeterNeeds VoteOrchestre National De L'Opéra De ParisLes Cuivres Français + +6055019Clarence 'Skip' StineAmerican trumpeterNeeds Votehttp://www.svtos.org/pdf/skip%20stine%20bio.pdfClarence StyneHarry James And His OrchestraHarry James & His Music Makers + +6055020Dave MaytenAmerican trombonistCorrectHarry James And His Orchestra + +6057277Marion NickelNeeds VoteRundfunkchor Berlin + +6058157Alessio BernardiClassical hornist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +6058476Vincent CortvrintFlutist and piccolo player, born 1964 in Etterbeek, Belgium. He studied at the conservatories of Brussels and Paris. +Since 1996 he has been a flautist and piccolo player at the Royal Concertgebouw Orchestra in Amsterdam.Needs VoteConcertgebouworkestEbony Band + +6059147Jean-Philippe NavrezFrench Trombonist, born in 1983Needs Votehttps://www.jeanphilippenavrez.fr/Orchestre National De FranceL'Orchestre National de LilleQuart'Bone + +6060798Katharina KutnewskyGerman flute player, born 1970 in Mainz, Germany.Needs VoteBayerisches Staatsorchester + +6061000Timothy RidoutBritish classical viola instrumentalistNeeds Votehttp://www.timothyridout.com/RidoutTim RidoutRoyal Philharmonic OrchestraKronberg Academy Soloists + +6063405Aleksandra OharClassical cellist from Poland.Needs VoteAleksandra Ohar-SprawkaOrkiestra Symfoniczna Filharmonii Narodowej + +6063407Tai-Yang ZhangClassical cellist from China.Needs VoteGewandhausorchester Leipzig + +6066195Gösta StenbergNeeds Major ChangesDix DennieG. StenbergStenbergDix Dennie + +6068815Lucie LacosteFrench mezzo-soprano / soprano vocalist.Needs VoteLe Concert SpirituelEnsemble Kantika + +6069249Adam KrzeszowiecPolish cellistNeeds VotePolish National Radio Symphony OrchestraPolish Cello Quartet + +6069310Stefan VockSwiss classical bass vocalistNeeds Votehttp://www.stefanvock.ch/index.php/english/welcomeLa Petite Bande + +6071966Ben Thomson (4)Classical tuba player, and Professor of Tuba. +He studied at the [l459222]. Former member of the [a=National Youth Orchestra Of Great Britain] and the [a=European Union Youth Orchestra]. Former Principal Tuba with the [a=Orchestra Of The Royal Opera House, Covent Garden] and the [a=BBC Scottish Symphony Orchestra] (2011-?). Principal Tuba of the [a=London Symphony Orchestra] since April 2019. Professor of Tuba at [l305416].Needs Votehttps://twitter.com/big_benthomsonhttps://www.musicacademy.org/profile/ben-thomson/https://lso.co.uk/orchestra/players/brass.html#TubaLondon Symphony OrchestraBBC Scottish Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraThe Symphonic Brass Of London + +6072805Nicolas MoutierFrench Trombonist, born in 1983Needs Votehttp://www.nicolasmoutier.com/Orchestre Philharmonique De StrasbourgFeeling Brass Quintet + +6073827Marta PetrlikovaClassical violinistNeeds VoteCapella IstropolitanaOrchestre national d'Auvergne + +6073828Zdenek PetrlikClassical violinist.Needs VoteCapella Istropolitana + +6074195Harry Brown (15)Early jazz trumpeterNeeds VoteDave Nelson And The King's MenDave's Harlem Highlights + +6074198Jack Bradley (4)Early jazz alto saxophonistNeeds VoteDave's Harlem Highlights + +6075877Charles Pierce (3)Early jazz saxophonist and band leader from Chicago + +A butcher by day, Pierce played the saxophone and assembled pick-up jazz band for gigs and recordings.Needs Votehttps://syncopatedtimes.com/the-austin-high-gang/B. PierceBilly PierceCharlie PiercePierceCharles Pierce And His Orchestra + +6077592Charles Frank (3)American trumpet player.Needs VoteWoody Herman And His Orchestra + +6079465Benjamin PeledAmerican violinist.Needs VoteConcertgebouworkestAlma Quartet + +6079466Nitzan LasterClassical cellist.Needs VoteMahler Chamber OrchestraNederlands Philharmonisch Orkest (2)Alma Quartet + +6081868Alessandro ViottiClassical hornistNeeds VoteOrchestre De L'Opéra De LyonJohannes Maikranz' Zeitbloom + +6081871Marc HoodMarc Cardwell Hood Marc Cardwell Hood is a British trumpet player. Now based in Vienna, Austria.Needs VoteMarc Cardwell-HoodStuttgarter PhilharmonikerJohannes Maikranz' Zeitbloom + +6084545Siwan RhysBritish (from Wales) classical (solo, chamber, and ensemble/orchestral) pianist, and teacher. +She studied at the [l925143] (2005-2009) and [l305416] (2011-2013). She has performed with the [b]Clod Ensemble[/b] (05/2016-02/2021), [a=Birmingham Contemporary Music Group] (02/2016-12/2019), [a=London Sinfonietta] (02/2019-07/2021), [a=Northern Sinfonia] (04/2019-10/2019), [a=Philharmonia Orchestra] (06/2019), [a=Colin Currie Group] (07/2019-07/2021), [a=Aurora Orchestra] (08/2019), [a=BBC National Orchestra Of Wales] (09/2020), [a=London Symphony Orchestra] (07/2021-08/2021). Member of the percussion duo [a=GBSR Duo] and the music group [a=Explore Ensemble]. Piano teacher at the London Contemporary School of Piano since February 2015.Needs Votehttps://www.siwanrhys.co.ukhttps://www.facebook.com/siwan.rhyshttps://twitter.com/siwanrhyshttps://www.linkedin.com/in/siwan-rhys-a917392a/?originalSubdomain=ukhttps://www.youtube.com/channel/UCnUFL6w3cfLHM_nDuFBYBVghttps://open.spotify.com/artist/7995CJt4t1loAn7Be2Q71Nhttps://music.apple.com/us/artist/siwan-rhys/1240256981https://www.contemporaryschoolofpiano.com/about-us/siwan-rhys/https://crosseyedpianist.com/2014/05/29/meet-the-artist-siwan-rhys-pianist/London Symphony OrchestraLondon SinfoniettaPhilharmonia OrchestraBirmingham Contemporary Music GroupNorthern SinfoniaBBC National Orchestra Of WalesAurora OrchestraColin Currie GroupGBSR DuoExplore Ensemble + +6086047Carlo VistoliItalian countertenor & alto vocalist, born in Lugo in 1987.Needs Votehttps://www.carlovistoli.com/homeVistoliWistoliLes Arts FlorissantsCappella Musicale di San Giacomo Maggiore In Bologna + +6086910Wolfgang KlinserWolfgang Klinser (born 1965) is an Austrian clarinetist.Needs VoteMünchner PhilharmonikerCamerata Academica SalzburgWiener Kammerorchester + +6087542Benjamin SchmidingerBenjamin Schmidinger (born 1980 in Vienna, Austria) is an Austrian percussionist. He's the son of [a7534162].Needs VoteB. SchmidingerDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerArtists RhythmaniaPhil Blech Wien + +6088106Jamie Williams (9)Classical trombonist, born in 1979 in St. Petersburg, Florida, USA.Needs Votehttps://www.jamiewilliams.de/Orchester Der Deutschen Oper BerlinPhilharmonisches Orchester Dortmund + +6088493Samika HondaClassical violinist.Needs VoteOrchestre Philharmonique De Strasbourg + +6088494Etienne DurantelClassical double bass player.Needs VoteOrchestre Philharmonique De Radio France + +6088610Cécile RouvièreFrench classical violinistNeeds VoteOrchestre National Bordeaux Aquitaine + +6089529Roberto Chevalier Di MiceliRoberto Chevalier Di Miceli (May 14, 1952 Rome, Lazio, Italy) is an Italian actor, voice actor, director of dubbing and dialogist. + +Active since he was a child in cinema and especially on television, at 9 he gave Lucky's voice in Walt Disney's feature La carica dei 101 and at 13 he became known to the general public by impersonating the young David Copperfield in the homonymous television drama of the Rai. Correcthttps://films.discogs.com/credit/21991-roberto-chevalierhttps://www.imdb.com/name/nm0156671/?ref_=nv_sr_srsg_0https://it.wikipedia.org/wiki/Roberto_ChevalierC. Di MicheliR. ChevalierR. Chevalier Di MiceliRoberto Chevalier + +6089737Marjolein VermeerenMarjolein Maria Johanna Odilia VermeerenDutch classical flutist and conductor, born on December 28, 1991, living in Gothenburg, Sweden. + +She plays 2nd flute, with piccolo, in the Gothenburg Symphony Orchestra since 2018. + +She completed her Master’s degree with distinction from the Royal Academy of Music in London (2015) where she studied the flute with Karen Jones and William Bennett, piccolo with Patricia Morris and baroque flute with Lisa Beznosiuk. She was awarded the DipRAM, the Academy’s highest award for an outstanding performance in the final recital and the Katie Thomas Award for a combination of good work, conduct and general achievement. She won the Jonathan Myall Piccolo Prize in 2015 and recently Marjolein was awarded Associateship of the Royal Academy of Music (ARAM), an honorary degree for former students who have distinguished themselves in the profession. + +In The Netherlands she completed a double bachelor degree at the Fontys School of Arts in Tilburg, studying the flute with Leon Berendse and Edith Van Dyck, as well as wind band conducting with Hardy Mertens and Louis Buskens. She has been assistant professor of flute at this conservatory from September 2016 until she moved to Sweden.Needs Votehttps://www.gso.se/upptack/podiet/mitt-instrument-marjolein-vermeeren-flojt/https://soundcloud.com/marjolein-vermeerenhttp://www.marjoleinvermeeren.nl/https://marjoleinvermeerenflute.wordpress.com/Göteborgs SymfonikerLudwig Orchestra + +6091453Bernhard KlapprottProf. Bernhard Klapprott (* 1964 in Hagen) is a German harpsichordist, clavichord player, organist and ensemble leader. He harpsichord with Hugo Ruf in Cologne and Bob van Asperen, organ with Michael Schneider (3) and Ewald Kooiman, and church music. He graduated in Cologne and Amsterdam. In 1991 he won First Prize at the Tenth International Organ Competition in Bruges, as part of the Festival Musica Antiqua. Since 1994 he has taught harpsichord and early keyboard instruments at the Liszt Music College in Weimar. He previously taught at the conservatories of Detmold, Herford, Dortmund and Bremen.Needs Votehttp://www.bernhard-klapprott.de/Bernard KlapprottCapella Thuringia + +6092396Nathan PlanteClassical and contemporary trumpeter in Berlin, Germany.Needs Votehttp://themoderntrumpet.comKammerakademie PotsdamEnsemble Apparat + +6092534Jacques ChirinianClassical violistNeeds VoteOrchestre National De L'Opéra De Paris + +6092590Luca MagarielloClassical cellistNeeds VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +6093924Herbert WaldnerGerman tuba player.Needs VoteStuttgarter PhilharmonikerBrass Primeur + +6093926Klaus SchießerKlaus SchiesserGerman trombone player, born in 1965.Needs VoteGewandhausorchester LeipzigRheinische PhilharmonieBadische StaatskapelleSWR Sinfonieorchester Baden-Baden Und FreiburgBrass PrimeurSWR Symphonieorchester + +6094577Rupert BuchnerRupert Buchner is a German cellist.Needs VoteBayerisches StaatsorchesterMilander Quartet + +6095286Philippe DalmassoFrench hornist.Needs VoteOrchestre De ParisLes Cuivres Français + +6095537Katie SchofieldAlto vocalistNeeds VoteLondon Voices + +6095541Gordon WatersonClassical alto vocalist.Needs VoteThe Monteverdi Choir + +6097999Luca CervoniItalian classical tenor vocalistNeeds VoteCollegium VocaleConsort Del Collegio GhislieriConcerto RomanoCappella NeapolitanaIl Concerto D'AriannaCapilla Musical De La Iglesia Nacional Espangñola Da Roma + +6098002Raffaele PeRaffaele PéItalian classical countertenor / alto vocalistNeeds Votehttps://www.raffaelepe.it/aboutPeRaffaele PèRaffaele PéThe Monteverdi ChoirEnsemble Mare Nostrum + +6099026Mickey Katz (2)Israeli-born cellist.Needs Votehttps://www.bso.org/strings/mickey-katz-cello.aspxBoston Symphony Orchestra + +6099752Danielle BlanchardFrench countertenor vocalistNeeds VoteDaniel BlanchardLe Concert D'Astrée + +6100708Cathy Elliott (2)Cathy Elliott is a double bassist and educator. She first played with the [a861944] in December 1984 shortly after returning to the UK from Italy and is is now co-principal bass with the London Mozart Players as well as a member of [a832962] and the orchestra of the Rambert Dance Company.Needs Votehttp://londonmozartplayers.com/cathy-elliott/Catherine ElliotCatherine ElliottThe Academy Of St. Martin-in-the-FieldsLondon Mozart Players + +6101901Suyoen KimKorean classical violinist, born 1987 in Münster (Germany) + +Not to be confused with the Korean born violinist [a6814586]. +Needs Votehttps://de.wikipedia.org/wiki/Suyoen_Kimhttp://www.suyoenkim.com/Budapest Festival OrchestraArtemis QuartettKonzerthausorchester Berlin + +6103030Thomas MandrusNeeds VoteDodo Marmarosa Trio + +6103268Darja JerabekGerman violinistNeeds VoteOrchester Der Deutschen Oper Berlin + +6103275Sonja StarkeGerman violinistNeeds VoteMahler Chamber Orchestra + +6103279Konstanze GlanderGerman violinist.Needs VoteDeutsche Kammerphilharmonie BremenJunge Philharmonie Brandenburg + +6104061Leon Piwkowski(1930 - 2015). Polish trombonist, former member of the music ensemble [a4470322]. +Brother of [a5150921].Needs VoteOrkiestra Symfoniczna Filharmonii NarodowejFistulatores et Tubicinatores Varsovienses + +6104064Jacek PiwkowskiBorn in Warszawa. He studied oboe, piano and organ at the Warsaw Music High School. He continued his education in the specialization of oboe playing at the [url=https://pl.wikipedia.org/wiki/Uniwersytet_Muzyczny_Fryderyka_Chopina]Akademia Muzyczna w Warszawie[/url] with [a4817974]. +Privately son [a5150921].Needs VoteOrchestre De L'Opéra De LyonFistulatores et Tubicinatores Varsovienses + +6104067Jerzy KarolakPolish trombonist, member of [a910618]. Also collaborated with music ensemble [a4470322].Needs VoteJ. KarolakOrkiestra Symfoniczna Filharmonii Narodowej + +6106093Émilie GastaudFrench harpist.Needs VoteOrchestre National De France + +6106701Dmitri GoldermanClassical cellist born in Russia in 1961 and immigrating to Israel in 1979.Needs Voteגולדמן דימיטרידימטרי גולדרמןIsrael Philharmonic Orchestra + +6107565Frank RosenweinClassical oboist, joined the Cleveland Orchestra in 2005Needs VoteThe Cleveland Orchestra + +6107577Norbert PflanzerClassical percussionist.Needs VoteLa Petite BandeKölner KammerorchesterL'Astrella + +6107580Mayke SuurmondSoprano vocalist.Needs VoteNederlands Kamerkoor + +6108460Ernst Simon GlaserNorwegian cellist, born 1975 in ÅlesundNeeds Votehttps://www.ernstsimonglaser.com/https://ernstsimonglaser.bandcamp.com/Göteborgs SymfonikerKringkastingsorkestret + +6109091Bach Ensemble HeidelbergNeeds Major Changes + +6109092Mario D'AgostoItalian lutenistNeeds Vote + +6109473Anne McAnensClassical wind/brass instrumentalist (flugelhorn).Needs VoteLondon Symphony OrchestraLondon Symphony Orchestra Brass + +6112039מריאנה פובולוצקיMarianna PovolotzkyRussian classical violinist, born in Moscow in 1975Needs Votehttps://www.ipo.co.il/orckestra_member/%D7%9E%D7%A8%D7%99%D7%90%D7%A0%D7%94-%D7%A4%D7%95%D7%91%D7%95%D7%9C%D7%95%D7%A6%D7%A7%D7%99/מריאנה פובולוצקי־גרוIsrael Philharmonic Orchestraהתזמורת של יועד ניר + +6115668Amanda VernerClassical Viola PlayerNeeds VoteSydney Symphony Orchestra + +6115683Emily Long (3)Australian violinist.Needs VoteEmma LongSydney Symphony Orchestra + +6116039Joaquim BadiaClassical composer, pianist and tenor vocalist, born in 1993 in Barcelona, Spain.Needs Votehttps://www.joaquimbadiamusic.com/London Symphony Chorus + +6116334Henri KochFrançois-Henri KochHenri Koch (10 July 1903 - 2 June 1969) was a Belgian classical violinist. He was the father of [a1343103].Needs VoteHenry KochOrchestre Du Théâtre Royal De La Monnaie + +6116477Grupo De Metal De la Orquesta Sinfonica De RTVESpanish classical brass winds ensemble formed in 1973, renamed [a4720421] in 1987Needs VoteGrupo De Metales De R.T.V.E.Grupo Español de MetalesEnrique RiojaLuis MoratóJesús TroyaRamon BenaventRicardo GassentJose ChicanoFrancisco Muñoz (3)Pedro BotiasOrquesta Sinfónica de RTVE + +6116523Grupos De Percusión Y Viento De La Orquesta Sinfónica De R.T.V.E.Needs VoteOrquesta Sinfónica de RTVE + +6117457Chursächsische Capelle LeipzigChamber orchestra from Leipzig, Germany. Founded by [a1073059] in 1994.Needs Votehttps://de.wikipedia.org/wiki/Churs%C3%A4chsische_Capelle_LeipzigAnne Schumann + +6120783David BroxDavid Brox (born 1987) is a German horn player.Needs VoteOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinGustav Mahler JugendorchesterBundesjugendorchester + +6120820Jan SeifertJan Seifert (born 1973) is a German classical clarinetist.Needs VoteStaatskapelle DresdenEnsemble Courage + +6121342Elisabeth HärmandClassical violinist.Needs VoteEstonian National Symphony Orchestra + +6121349Madis JürgensClassical double bassist.Needs VoteEstonian National Symphony Orchestra + +6121454Jon BehnckeTrumpeter.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +6123671Enrique Parra (3)Enrique Parra ComesEnrique Parra Comes is a Spanish contrabass player. +On Orquesta Sinfónica de RTVE in the 70s.CorrectEnrique Parra CornesOrquesta Sinfónica de RTVE + +6123948Eugene R. StrotherNeeds Major ChangesE. StrotherR. StrotherStrother + +6124395Gaspard FrançoisFrench bass vocalistNeeds Votehttps://twitter.com/i/flow/login?redirect_after_login=%2FfransgaspLe Concert D'AstréeLes Chantres Du Centre De Musique Baroque De Versailles + +6125212David Nebel (2)David Nebel (born 1996) is a Swiss violinist.Needs Votehttps://www.david-nebel.com/Rundfunk-Sinfonieorchester BerlinLGT Young Soloists + +6127840Patrick WalleUS brass playerNeeds VotePatrick J WalleBuffalo Philharmonic OrchestraRochester Philharmonic OrchestraNashville Symphony OrchestraSyracuse Symphony Orchestra + +6129039Deacon DunnJazz saxophonist.Needs VoteArtie Shaw And His Orchestra + +6129604Peter GrunbergAustralian pianist, conductor, arranger.Needs VoteSan Francisco Symphony + +6130230Alexey SerovRussian french horn player, born in Moscow in 1983.Needs VoteRussian National Orchestra + +6130730Kilian HeroldKilian Herold (born 1981) is a German classical clarinetist and Professor of Clarinet at the [l976369]. +A member of the [a260744] since January 2026.Needs Votehttp://www.kilianherold.com/de/Berliner PhilharmonikerBläsersolisten Der Deutschen Kammerphilharmonie BremenDeutsche Kammerphilharmonie BremenSWR Sinfonieorchester Baden-Baden Und FreiburgEstonian Festival Orchestra + +6131344Robert OppeltClassical double bassist.Needs VoteRobert Oppelt & FriendsNational Symphony Orchestra + +6131870גילי רדיין-שדהGili Radian-Sade is an Israeli classical violist and violinist.Needs Votehttps://www.ipo.co.il/orckestra_member/%D7%92%D7%99%D7%9C%D7%99-%D7%A8%D7%93%D7%99%D7%99%D7%9F-%D7%A9%D7%93%D7%94/גילי רדיין שדהIsrael Philharmonic Orchestra + +6132516Gordon Walker (3)W. Gordon WalkerBritish self-taught classical flute/piccolo player. Born in 1885 in Yorkshire, England, UK - Died in 1965. +Former Principal Flute/Piccolo of the [a=Orchestra Of The Royal Opera House, Covent Garden] and Principal Flute & Chairman/Secretary (1945-1949) of the [a=London Symphony Orchestra] (1921-1954). He was succeeded, as Principal of the LSO, by his son [a=Edward Walker] (usually known as Eddie). In the mid-1950s Gordon and Eddie Walker formed [a=Sinfonia Of London]. He also was a member of the [b]London Flute Quartet[/b].Needs Votehttps://robertbigio.com/g-walker.htmLondon Symphony OrchestraOrchestra Of The Royal Opera House, Covent GardenSinfonia Of LondonVirtuoso Chamber Ensemble + +6134403Bob SanchezNeeds VoteGerald Wilson Orchestra + +6134404Leon TrommelNeeds VoteGerald Wilson Orchestra + +6134405Isaac LivingstoneNeeds VoteGerald Wilson Orchestra + +6134964Anna PuigClassical violist, born in 1982 in Anglesola, Catalunya, SpainNeeds VoteAnna Puig TornéAnna Puig-TornéMahler Chamber Orchestra0 (5)Berliner Camerata + +6144272Lloyd Springer (2)American big band bass player. +Born on March 8, 1919, in Union-town, Pennsylvania Died September 2, 2007 (age of 88) Lake Forest, California. +He was married to bass player [a4517749] for 62 years. +He always loved music. At the age of 13 he had his own band. He was the leader of the marching band in high school. Lloyd played with Lang Thompson, Jess Stacy, Jack Teagarden, Eddie Miller, Frankie Carl, Desi Arnez, Al Donahue, Hal Derwin, and many others. He joined the U.S. Marines in 1942 and was a member of the First Division Marine Corps band and served during WWII in the South Pacific. After his military service, he played bass in many of the big bands including Tommy Dorsey. Lloyd also had work in the movies playing in bands. One noteable movie was Cecil B. DeMille's Samson and Delilah. +Lloyd joined Bank of America in 1953 and retired in 1984. During this time, he continued to work in the music business including the Fresno Philharmonic (he and his wife stood next to each other as bass players). Lloyd performed with the Veteran's Band up into his 80's and had performed with the Fresno City College Orchestra for many years.Needs Votehttps://www.legacy.com/us/obituaries/ladailynews/name/lloyd-springer-obituary?id=24601218Jack Teagarden And His OrchestraAl Donahue And His OrchestraHal Derwin And His Orchestra + +6145429Sarah VerrueBelgian classical harpist, born 1988.Needs VoteTonhalle-Orchester Zürich + +6145432Simone BernardiniViolinist and conductor, born in Torino, Italy. On of the last students of [a379809].Needs VoteS. BernardiniSimon BernardiniBerliner PhilharmonikerOrchestre De LyonOrchestra Del Teatro Alla Scala + +6146165Mack SterlingJazz saxophonistCorrectHarry James And His Orchestra + +6146166Mario BabidilloJazz saxophonistCorrectHarry James And His Orchestra + +6148071Arnt MartinGerman violist, born 1939.Needs VoteRadio-Sinfonie-Orchester FrankfurtFestival Strings LucerneMusica AmorbacensisTonhalle-Orchester Zürich + +6148797Gilberto CrepaxGilberto Crepax (3 July 1890 - 8 December 1970) was an Italian cellist. Father of [a1827235] and [a2483875].Needs VoteGilberto GrepaxOrchestra Del Teatro Alla ScalaQuartetto della Scala + +6150604Gus Chappell And His OrchestraNeeds Major ChangesGus Chapell OrchestraGus Chappel's OrchestraGus Chappell OrchestraGus Chappell's OrchestraSonny CohnGus Chappell + +6152204Ted BaconNeeds VotePaul Whiteman And His Orchestra + +6152330Linda Speck (2)British violinist. +She studied at the [l290263] for five years and since then she has been a member of the [a=Scottish Opera Orchestra] and the [a=Philharmonia Orchestra] for 22 years, then as freelance player with [a3380330] and [a263416].Correcthttps://issuu.com/zonenewmedia/docs/norfolk_hall_of_famePhilharmonia OrchestraScottish Opera Orchestra + +6152331Gillian BaileyViolinist.Needs VotePhilharmonia Orchestra + +6152334Rebecca Carrington (2)Classical viola player. +[b]For the cellist, please use [a=Rebecca Carrington][/b].Needs VotePhilharmonia OrchestraYoung Musicians Symphony Orchestra + +6152335David MundenClassical trumpet player and librarian of the [a=Philharmonia Orchestra].Needs VoteLondon Symphony OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraCantilena + +6152336Lorna MelhuishViolinist.Needs VotePhilharmonia Orchestra + +6152337Bogden OffenbergClassical violinist.Needs VoteBogdan OffenbergPhilharmonia Orchestra + +6152339John Rogers (19)British classical (chamber & orchestral) violin, viola & baroque viola player and teacher. +He studied at the [l290263]. Has been Principal Viola with [a=The Honolulu Symphony Orchestra], and the [a=Hong Kong Philharmonic Orchestra]. Teacher of chamber music, violin & viola at the [l305416].Correcthttps://www.musicteachers.co.uk/teacher/1190e12bd1bf2c66638chttp://www.anglianensemble.co.uk/anglian-membershttps://www.wiltons.org.uk/files/2-Silver%20Electra%20-%20Teacher%27s%20Pack%20-%20low%20res%20version.pdfPhilharmonia OrchestraHong Kong Philharmonic OrchestraAnglian EnsembleThe Honolulu Symphony Orchestra + +6152341Mary White (3)(British?) classical viola player. + +[b]For the (New Zealander?) classical pianist, see [a=Mary White (2)][/b]. [b]For the (New Zealander?) classical violinist, see [a7366561][/b].Needs VotePhilharmonia Orchestra + +6152343Michael Lloyd (10)Michael Ian Lloyd born Juan Michael BulleyHalf-American half-British classical viola player, born in England in 1958, adopted in 1959. +He played with the [a=Philharmonia Orchestra] for 21 years before joining the [a=Royal Scottish National Orchestra] in 2004. Member of [b]The Kodály Orchestra[/b], and the [b]Fejes Quartet[/b].Needs Votehttps://www.pressreader.com/uk/the-herald-magazine/20090103/281569466599732Mike LloydPhilharmonia OrchestraRoyal Scottish National OrchestraFejes QuartetThe Philharmonia Soloists + +6152344Carol HultmarkCarol Jennifer HultmarkBritiish viola player. She became [a=Philharmonia Orchestra]'s full member since 1997. Head of Strings at the Bradfield College since 2006. She was appointed Director of the [a=Philharmonia Orchestra] on 14th December 2017. +Born September 1960. Wife of [a3337551] with whom they have two children, one of which is [a=Emily Hultmark].Needs Votehttps://www.facebook.com/carol.hultmarkhttps://www.bradfieldcollege.org.uk/co-curricular/music/staff/https://philharmonia.co.uk/bio/carol-hultmark/https://www.feenotes.com/database/artists/hultmark-carol/Philharmonia OrchestraIceland Symphony OrchestraLondon Musici + +6152345Jocelyn GaleCellist. +Sister of [a=Gwendoline Gale].CorrectPhilharmonia Orchestra + +6152347Andrew Fletcher (6)Classical French horn player. +4th horn with the [a=Royal Philharmonic Orchestra].Needs VoteRoyal Philharmonic OrchestraPhilharmonia Orchestra + +6152678Rich BrunnerAmerican singer, actor and teacherNeeds Votehttp://www.thecarolingcompany.com/richbrunner.htmlLos Angeles Master ChoraleChicago Symphony Chorus + +6157346Charles Gagnon (3)Recording engineerNeeds Vote + +6157499Jakob SpahnJakob Spahn is a German cellist. +Needs VoteBayerisches Staatsorchester + +6158021Miho SaegusaClassical violinist.Needs VoteOrpheus Chamber OrchestraIris Chamber OrchestraAizuri QuartetNew York Classical Players + +6161970Heinz GrünbergHeinz Grünberg (born 1933) is an Austrian violinist, composer and arranger.Needs VoteH. GrünbergHeinz GrangergWiener SymphonikerDie Instrumentisten Wien + +6162700Alberto BianoClassical bassoonistNeeds VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +6162701Paolo BeltraminiClassical clarinetist.Needs VoteBeltraminiBeltramini PaoloOrchestra Della Radio Televisione Della Svizzera ItalianaParma Opera EnsembleTrio Trilli + +6162703Marco SchiavonClassical oboist.Needs VoteSchiavonOrchestra Della Radio Televisione Della Svizzera Italiana + +6165181Max ZimolongMax Zimolong (12 September 1905 - 9 February 1986) was a Polish-German horn player and teacher.Needs Votehttps://waltornia.pl/biografie/41-maksymilian-zimolaghttps://www.french-horn.net/biographien/155-zimolong-max.htmlBerliner PhilharmonikerStaatskapelle DresdenPolish National Radio Symphony OrchestraOrchester der Bayreuther FestspieleStuttgarter PhilharmonikerOrkiestra Symfoniczna Filharmonii Wrocławskiej im. Witolda Lutosławskiego + +6165528Benjamin Wright (3)classical trumpeter, joined the Boston Symphony Orchestra in July 2002Needs VoteBoston Symphony OrchestraChicago Symphony Orchestra + +6168373Stefan KennedyClassical tenor vocalist.Needs Votehttps://www.stefankennedy.com/The Choir Of Clare CollegeThe Oxford ChoirLe Nuove MusicheAmici Voices + +6168856Christopher Webb (2)British bass / baritone vocalistNeeds VoteChris WebbLondon VoicesThe Marian ConsortMusica Poetica (2) + +6171189Marty LivingstonMorty M. LivingstonAmerican jazz-pop singer in the early 1920's. +Born c.1899. He sang with Art Kahn Orchestra and the Arcadian Serenaders.Needs Votehttps://www.tapatalk.com/groups/bixography/marty-morty-livingston-t10871.htmlhttps://adp.library.ucsb.edu/index.php/mastertalent/detail/327683/Livingston_MartyMorty LivingstonFrankie Trumbauer And His OrchestraArcadian Serenaders + +6171191Eddie Powers (4)Tenor saxophonistNeeds VoteThe Original Crescent City Jazzers + +6171683Iskandar KomilovClassical violinistNeeds VoteSveriges Radios Symfoniorkester + +6173235Ivan MalaspinaClassical violinist.Needs VoteOrchestra Di Padova E Del Veneto + +6173239Diego CalClassical trumpet playerNeeds Votehttps://www.farandola.eu/curricula/diego-cal/https://siapd.conservatoriodimusica.it/docenti/view/27Diego CallVenice Baroque OrchestraIl Pomo d'Oro + +6173241Caterina LiberoItalian classical violist (Viola da Gamba)Needs VoteOrchestra Di Padova E Del VenetoL'Arte Dell'Arco + +6173242Riccardo PozzatoClassical flautist.Needs VoteOrchestra Di Padova E Del Veneto + +6173244Roberto CateriniClassical trumpeter.Needs VoteOrchestra Di Padova E Del Veneto + +6173264Irene MendelinNeeds Major ChangesI. MelinIrene Mandelin + +6173884Jussef EisaJussef Eisa (born 1985) is a German clarinetist. +Needs VoteBayerisches StaatsorchesterStaatskapelle Berlin + +6174739Calogero PalermoItalian classical clarinetistNeeds VoteConcertgebouworkest + +6174742Aldo MatassaViolin playerNeeds VoteOrchestra da Camera Italiana + +6174745Ermanno CalzolariClassical bass player.Needs VoteOrchestra da Camera Italiana + +6175028Red SchepsAmerican jazz trumpeter.Needs VoteGeorgie Auld And His Orchestra + +6175042Bob Lord (2)Jazz trombonist.Needs VoteBobby LordGeorgie Auld And His Orchestra + +6175169Harry PalsingerNeeds VoteGeorgie Auld And His Orchestra + +6175171Dick HorvathJazz bassist.Needs VoteGeorgie Auld And His Orchestra + +6175993Christopher Johnson (9)Early jazz saxophonistNeeds VoteChris JohnsonRoy Eldridge And His Orchestra + +6175996Henry Clay (4)Early jazz trumpeterNeeds VoteRoy Eldridge And His Orchestra + +6179040Volker TessmannGerman bassoonistNeeds Votehttps://www.maalot-quintett.de/en/volker-tessmann-1/Bläsersolisten Der Deutschen Kammerphilharmonie BremenMa'alot Quintett + +6180384Jordan FrazierAmerican bassist from Cleveland, Ohio.Needs Votehttps://www.americansymphony.org/people/jordan-frazier/https://www.orpheusnyc.org/musicians/jordan-frazier/https://content.thespco.org/people/jordan-frazier/The American Symphony OrchestraOrpheus Chamber OrchestraThe Saint Paul Chamber OrchestraWestchester PhilharmonicPerspectives EnsembleNew York Bass QuartetThe Hanoverian Ensemble + +6181194Anna BurdenAmerican classical cellist. + +Needs VoteOrchestre symphonique de MontréalVersailles Quintet + +6182201Beverly SchieblerAmerican violinist.CorrectSaint Louis Symphony Orchestra + +6182599Vlad StanculeasaClassical violin player from Romania. +Concertmaster of the Gothenburg Symphony Orchestra since 2010. +Concertmaster of the Spanish National Orchestra in Madrid.Needs Votehttp://www.vladstanculeasa.com/Göteborgs SymfonikerTharice Virtuosi + +6184048Thaddeus RichThaddeus G. Richb.: March 21, 1885 (Indianapolis, Indiana, U.S.) +d. April, 1969 (Hartford, Connecticut, U.S.) + +American violinist and musical director. Needs Votehttp://prabook.com/web/person-view.html?profileId=1409845The Philadelphia OrchestraOrchester Des Theater Des Westens + +6184454Jean-François HattonFrench classical Organist.Needs VoteOrchestre National De L'Opéra De Paris + +6185277Katherine SharmanClassical string instrumentalist (Cello, Bass Viol), born in New Zealand.Needs Votehttp://www.londonhandelplayers.co.uk/kath-sharman-biog.htmlhttps://www.adderburyensemble.com/katherine-sharman-cello/Kath SharmanKatharine SharmanThe Parley Of InstrumentsThe Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentTaverner PlayersGabrieli PlayersHanover BandThe King's ConsortLondon Handel OrchestraEx Cathedra Baroque OrchestraLondon Handel Players + +6185466Pascal SavignonFrench classical trumpeterNeeds VoteOrchestre De L'Opéra De Lyon + +6187106City of London Baroque SinfoniaNeeds Major Changes + +6193096Louis CarringtonJazz bassistNeeds VoteRoy Eldridge And His Orchestra + +6195719Anne Thomas (9)Credited for liner notes translation.Needs Vote + +6197639James Whitehead (4)British cellist, conductor and, cello teacher. Born 14 June 1912 in Newchurch, Lancashire, England, UK - Died 1979. +He studied at the [l290263]. Member of the [a=London Symphony Orchestra] (1933-1938), [b]The Philharmonic Ensemble[/b], [b]The Philharmonic String Trio[/b], and the [b]Harry Isaacs Trio[/b]. Principal Cello with [a988712]. He relocated to Adelaide, Australia where he became member of [b]The Elder Trio[/b] (1959-1962), conductor, and cello teacher at the Elder Conservatorium. He is best remembered when, during a concert in London's [l=Wigmore Hall] performing [a=Anton Webern]'s "String Trio Op. 20", left the stage after several bars announcing "[i]I can't play this thing - a nightmare - not music at all, but mathematics.[/i]"Needs VoteLondon Symphony OrchestraPhilharmonia OrchestraLondon Baroque EnsembleTonhalle-Orchester Zürich + +6198321Giovanni Battista Giusti[b]Giovanni Battista Giusti[/b] (ca. 1624, Lucca, Tuscany — ca. 1693), or "Joannes Baptista Justi," was an Italian harpsichord maker. Only scarce historiographical sources exist, including a church registry listing "[i]Joannes Baptista, son of the late Antonio Justi of Lucca[/i]" uncovered in 1989 by Italian musicologist Patrizio Barbieri. Between 1648 and 1664, he apprenticed with a renowned master Giuseppe Boni 'il Cortona' (ca. 1629—1702), subsequently working under [a=Girolamo Zenti] (ca. 1609—ca. 1666), before Giusti opened his atelier in Lucca, active between 1676 and 1693. According to other sources, Giovanni worked in Rome. + +Around 12 to 20 extant instruments are currently attributed to Giusti, with at least half generally regarded as counterfeit; particularly, an infamous Italian antique dealer and fraudster, Leopoldo Franciolini (1844—1920), produced many blatant "Giusti" fakes. + +[b][u]Giovanni Battista Giusti instruments[/b][/u] +[b][i]1673[/i] Harpsichord[/b], owner and present location unknown +[b][i]1676[/i] Harpsichord[/b] at University of Leipzig's [i]Grassi Museum[/i] in Leipzig, Germany. Compass: [i]GG/BB–c3, short octave[/i] +[b][i]1676[/i] Harpsichord[/b], owner and present location unknown +[b][i]1677[/i] Harpsichord[/b], at [i]Museumsverband Schleswig-Holstein & Hamburg[/i] in Rendsburg, Germany; remodeled in France circa 1730s in a lustrously painted case with engravings by [a3585817], [a1827369], and [a2234848]. +[b][i]1677[/i] Harpsichord[/b] at [url=https://discogs.com/label/1239719]Händel-Haus[/url] in Halle, Germany. Compass: [i]C/E–c3, short octave[/i] +[b][i]1677[/i] Harpsichord[/b] at Stadtisches Museum in Flensburg, Germany +[b][i]1679[/i] Virginal[/b], private owner in Bologna, Italy; characterized by unusual disposition for Italian harpsichords, with two 8'- and one 4'-stops. +[b][i]1679[/i] Harpsichord[/b], formerly owned by [a1777234] in Bologna, Italy. Compass: [i]GG/AA–c3, short octave[/i] +[b][i]1681[/i] Harpsichord[/b] at [l612872] in Nuremberg, Germany. Compass: [i]C/E–c3, short octave[/i] +[b][i]1681[/i] Harpsichord[/b], owned by [a3036893] in Vermillion, South Dakota, USA. Compass: [i]C/Ed3, short octave (originally, C/E–c3)[/i] +[b][i]1693[/i] Harpsichord[/b] at [url=https://discogs.com/label/406745]Smithsonian[/url]'s National Museum of American History in Washington D.C., United States. Compass: [i]GG, AA–c3[/i] +[b][i]16??[/i] Harpsichord[/b] at [url=https://discogs.com/label/496900]Musikinstrumenten Museum[/url] in Berlin, Germany; property of [url=https://discogs.com/label/302164]Preußischer Kulturbesitz[/url]. Compass: [i]C/E–c3, short octave[/i]Needs Votehttps://en.wikipedia.org/wiki/Giovanni_Battista_Giusti_(harpsichord_maker)#https://boalch.org/instruments/makerprofile/255http://www.museen-sh.de/Objekt/DE-MUS-045414/lido/21601Gioivanni Batista GiustiGiovan. Battista GiustiGiustiGiusti, Italy, 17th Century + +6199786Hubertus BaumannClassical childrens soprano vocalistNeeds VoteRegensburger Domspatzen + +6203207Josef SmolaJosef Smola is a German violinist. +Needs VoteKammerorchester Des Saarländischen Rundfunks, SaarbrückenDas Mozarteum Orchester SalzburgMozarteum Quartett + +6203719Andrew Mackenzie-WicksEnglish tenor vocalist, born 1963. + +Originally a chorister with Chichester Cathedral, made his final treble recording in 1978 before continuing his career as a tenor.Needs Votehttp://mackenziewicks.weebly.com/Andrew WicksMackenzie-WicksThe Monteverdi Choir + +6203891Tony TortomasAntonino TortomasiAmerican trumpeter (b. April 22, 1907 in Brooklyn, New York, USA) + +Played trumpet in a style similar to Bix Beiderbecke; recorded with the [a=Original Indiana Five] between 1925 and 1929.Needs VoteOriginal Indiana Five + +6203892Nick VitaloClarinetist. Needs VoteOriginal Indiana Five + +6203893Pete PelizziTrombonist.Needs VoteOriginal Indiana Five + +6205662Henry Kimball1878-1931 +early jazz bassist +Father of [a1982739]Needs Votehttps://musicbrainz.org/artist/f16f2b39-32e4-44f4-9cbc-24244323e84a/http://www.allmusic.com/artist/mn0002017374Fate Marable's Society Syncopators + +6205671John Tobin's Midnight SerenadersNeeds Major ChangesTobin’s Midnight SerenadersJohn Tobin (5) + +6205672Willie Foster (2)Early jazz violinist, banjoist, and guitarist, born December 27, 1888 in McCall, Louisiana, died after 1959. +Brother of [a=Pops Foster].Needs VoteFate Marable's Society Syncopators + +6205673John Tobin (5)Pre-war jazz banjo player.Needs VoteJohn Tobin's Midnight Serenaders + +6207101H. RöselerViola player.Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6207102F. Zimmermann (3)German violinist.Needs VoteF. ZimmermannGürzenich-Orchester Kölner Philharmoniker + +6207103J. IppenViola player.Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6208207Chubby Jackson And His Orchestra[b]DO NOT USE.[/b]Needs Vote + +6209129Sebastian MyrusGerman classical bass / baritone vocalist born in Munich, GermanyNeeds Votehttp://www.bach-cantatas.com/Bio/Myrus-Sebastian.htmhttp://www.myrus.deMyrusSBSMSebastian N. MyrusCollegium VocaleWeser-RenaissanceVox LuminisAthesinus Consort BerlinVoces SuavesEnsemble Polyharmonique + +6211533Dave Conner (6)Needs Major Changes + +6212198Robert MurchieEarly 20th century British flute/piccolo player, and Professor of Flute. Born 2 March 1884 in Greenock, Renfrewshire, Scotland, UK - Died 26 July 1949 in Paddington, London, England, UK. +He studied at the [l290263]. Early in his career, he was a member of the [b]Royal Victory Band[/b]. He was successively principal flautist in the [a=The New Symphony Orchestra Of London], [a=Beecham Symphony Orchestra], [a=Queen's Hall Orchestra], [a=The New Queen's Hall Orchestra], [a=London Symphony Orchestra] (1914-1920), [a=Royal Philharmonic Society] (1925-1932), [a=BBC Symphony Orchestra] (1930-1938) and [a=London Philharmonic Orchestra]. In 1926 he founded a chamber ensemble of leading wind players known as [a=The London Wind Quintet]. He was also member of [a=The London Flute Quartet] (with Frank Almgill, Gordon Walker and Charles Stainer). He was Professor of Flute at the [l680970] and the Royal College of Music.Needs Votehttps://open.spotify.com/artist/5H3aGwcLLNGKwE1garsLFShttps://music.apple.com/ca/artist/robert-murchie/416926613https://en.wikipedia.org/wiki/Robert_Murchiehttps://www.robertbigio.com/murchie.htmhttps://www.dwsolo.com/flutehistory/rudallcarte/Robert%20Murchie.htmR. MurchieLondon Symphony OrchestraThe New Symphony Orchestra Of LondonBBC Symphony OrchestraThe New Queen's Hall OrchestraThe London Wind QuintetRoyal Philharmonic SocietyBeecham Symphony OrchestraThe London Flute QuartetQueen's Hall Orchestra + +6212761Tatjana KostjanajaТатьяна Егоровна Костяная / Tatyana Egorovna Kostyanaya +Russian mandolin player from Saint PetersburgNeeds Votehttps://andreyev-orchestra.ru/kollektiv/domryi-malyie-i/tatyana-kostyanaya-solistka-orkestra.htmlTatjana KostyanayaРусский Народный Оркестр Имени В. Андреева + +6213392Tony GirardiAnthony Ilardo GirardiBanjoist and guitarist with Ted Lewis And His Band. He joined in 1925 and was still in the band at the time of his death. From July 1926 to July 1927, he was replaced by [a7801305] after a fall out with [a=Ted Lewis] over a chorus girl, but was evidently rehired. +Born August 18, 1892 in Palermo, Sicily, Italy +Died December 5, 1945 in St. Louis, Missouri, buried December 9, 1945 in Brooklyn, New York, New York.Needs VoteTony GerardiTony GerhardiTed Lewis And His Band + +6213578Sandrine TillyFrench flautist.Needs VoteOrchestre National Du Capitole De Toulouse + +6214736Máximo MuñozMáximo Muñoz PavónSpanish clarinet player. Soloist on Orquesta Sinfónica de RTVE in the 70s.Needs VoteMaximo MuñozOrquesta Sinfónica de RTVE + +6215179Luis EstevarenaLuis Tomás Estevarena MillánSpanish violin player.Needs VoteOrquesta Sinfónica de RTVE + +6217568Olgierd StraszyńskiOlgierd Straszyński (1903-1971) was a Polish conductor & artistic director of the Warszawska Fabryka Płyt Gramofonowych „[l=Muza]”.Needs VoteO. StraszyńskiOlgierda StraszyńskiegoOrkiestra Symfoniczna Filharmonii Narodowej + +6218844Stanley KonopkaAmerican classical violist.Needs VoteThe Cleveland Orchestra + +6218845Richard Weiss (4)American classical cellist.Needs VoteThe Cleveland Orchestra + +6219519Norbert KandlbinderGerman cellistNeeds VoteBamberger SymphonikerJan Polášek Und Sein Ensemble + +6220151Matthias Michael BeckmannGerman cellist born 1st May 1966 in Nürnberg +Studied at [l466335] under [a1520626]Needs Votehttps://www.matthias-michael-beckmann.comhttps://www.facebook.com/Matthias-Michael-Beckmann-151805071505000/Matthias BeckmannDas Mozarteum Orchester SalzburgMozart Quartett Salzburg + +6224705Karl-Heinz DeutscherKarl-Heinz Deutscher is a German violinist.Needs VoteRundfunk-Sinfonieorchester BerlinCamerata Musica + +6225292Sébastian JacotSébastian Jacot (born in Geneva in 1987) is a French flute player.Needs Votehttps://www.sebastianjacot.com/Berliner PhilharmonikerGewandhausorchester LeipzigSaito Kinen OrchestraHong Kong Philharmonic Orchestra + +6225805Rizumu SugishitaClassical percussionist.Needs VoteRizumu SugichitaMahler Chamber OrchestraCamerata Academica SalzburgBach Collegium JapanArs Antiqua Austria + +6228538Rebecca TroxlerAmerican flautist. + +A native of Greensboro, North Carolina, Rebecca Troxler received her training at the North Carolina School of the Arts and Juilliard, and has been on the faculty of Duke University since 1981. She was a founding member of [a837570].Needs Votehttps://scholars.duke.edu/person/rtroxlerRebecka TroxlerOrpheus Chamber Orchestra + +6229887Eric SittnerNeeds Major Changes + +6230609Olivier Dubois (3)Classical Trombonist.Needs VoteLes Arts FlorissantsPygmalionLa Tempête + +6230610Cyril Bernhard (2)French Trombonist.Needs VoteLes Arts FlorissantsPygmalion + +6231681Christian Haller (3)BassistNeeds VoteChris HallerChristian + +6232366Elmer HarrellCredited as clarinet and alto saxophone player.Needs VoteCharlie Johnson & His Paradise Band + +6232367Cliff BrazzingtonCredited as trumpet player.Needs VoteCharlie Johnson & His Orchestra + +6233576Jack Kessler (2)British classical violinist, naturalized Canadian ca 1965. Born 23 November 1906 in Swindon, Wiltshire, England, UK - Died 8 August 1986 in Vancouver, British Columbia, Canada. +He studied at [l869714] (1916-1926). Assistant Concertmaster of the [a=Philharmonia Orchestra] of London (1945-1947) and Concertmaster of [a=Benjamin Britten]'s [a=The English Opera Group]. Moving to Canada in 1955 Kessler served 1956-67 as Concertmaster of the [a=CBC Vancouver Orchestra], [a=The Vancouver Opera Orchestra], and was Concertmaster 1964-5 of the [a=Vancouver Symphony Orchestra]. A founding member (1958) of the Vancouver String Quartet. +He taught 1964-1967 at the [l830472].Needs Votehttps://thecanadianencyclopedia.ca/en/article/jack-kessler-emcVancouver Symphony OrchestraPhilharmonia OrchestraThe English Opera GroupThe Vancouver Opera OrchestraCBC Vancouver OrchestraLondon Harpsichord EnsemblePhilharmonia String QuartetCassenti Players + +6235178EmoiryahJennifer LaurenSinger/Songwriter based in British Columbia, Canada.Needs Votehttps://www.emoiryah.com/https://www.facebook.com/emoiryahhttps://soundcloud.com/emoiryahEmoiyrahJennifer Lauren + +6236029Daniel WellsTenor vocalist, voice teacher and conductor.Needs Votehttps://www.dwellsmusic.com/Westminster Williamson VoicesThe Same Stream + +6236030Moira Susan GannonAlto vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236031Storm KowaleskiBass-baritone vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236032James Roman (3)Baritone vocalist.Needs VoteWestminster Williamson Voices + +6236033Jonathon FeinsteinTenor vocalist.Needs VoteWestminster Williamson Voices + +6236034Lauren LazzariAlto vocalist.Needs VoteWestminster Williamson Voices + +6236036Jose G. ProençaBaritone vocalist.Needs VoteWestminster Williamson Voices + +6236037Micaela BottariSoprano vocalist.Needs Votehttps://www.linkedin.com/in/micaela-bottari-987665159/Westminster Williamson VoicesThe Same Stream + +6236038Conner AllisonBaritone vocalist.Needs VoteWestminster Williamson Voices + +6236039Holden BihlBaritone vocalist.Needs VoteWestminster Williamson Voices + +6236041John Roper (3)Baritone vocalist.Needs VoteWestminster Williamson Voices + +6236043Corrine CostellSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236044Christopher NappaTenor vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236045Lawrence J BeschBass-Baritone vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236046Benjamin NorkusTenor vocalist.Needs VoteWestminster Williamson Voices + +6236047Elizabeth RichterSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236048Hunter Thomas (3)Baritone vocalist.Needs VoteWestminster Williamson Voices + +6236050Igor CorreaTenor vocalist.Needs VoteWestminster Williamson Voices + +6236052Joshua AcampadoBaritone vocalist.Needs Votehttps://www.linkedin.com/in/joshua-acampado/Westminster Williamson VoicesThe Same Stream + +6236053Emily SebastianSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236054William Sawyer (2)Tenor vocalist.Needs VoteWestminster Williamson Voices + +6236056Esther TehSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236057Peter Carter (8)Bass-Baritone Vocalist & OrganistNeeds VoteWestminster Williamson VoicesThe Same Stream + +6236058Corey EverlyBass-Baritone vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236059Joslyn ThomasAlto/Soprano vocalist.Needs Votehttps://www.linkedin.com/in/joslyn-thomas-32163b205/Westminster Williamson VoicesThe Same Stream + +6236061Caitlin SchararAlto vocalist.Needs VoteWestminster Williamson Voices + +6236063Austin Turner (4)Tenor vocalist.Needs VoteWestminster Williamson Voices + +6236065Sara MunsonSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236066David Ross LawnTenor vocalist, pianist, composer and photographer.Needs Votehttps://www.davidrosslawn.com/Westminster Williamson VoicesWestminster Jubilee SingersThe Same Stream + +6236068Kathleen DunnAlto vocalist.Needs VoteWestminster Williamson Voices + +6236069Kathryn TraveAlto vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236070Neathery FullerAlto vocalist.Needs VoteWestminster Williamson Voices + +6236071Victor CristobalTenor vocalist.Needs Votehttps://www.linkedin.com/in/victor-cristobal-167b18156/Westminster Williamson VoicesThe Same Stream + +6236072Emily Maclain HardinAlto vocalist.Needs VoteWestminster Williamson Voices + +6236073Brian PemberTenor vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236074Emily RosoffAlto vocalist.Needs VoteWestminster Williamson Voices + +6236075Colton MartinBass vocalist, pianist, composer and conductor.Needs Votehttps://www.coltonjamesmartin.com/Westminster Williamson VoicesThe Same Stream + +6236076Amanda AgnewAlto vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236077Brian V. SengdalaBass vocalist.Needs Votehttps://www.linkedin.com/in/brian-sengdala-7762a053/Westminster Williamson VoicesThe Same Stream + +6236078Kristin SchenkAlto vocalist.Needs Votehttps://www.linkedin.com/in/kristinschenkmusic/Westminster Williamson VoicesThe Same Stream + +6236079Jesse BorowerTenor vocalist.Needs Votehttps://www.linkedin.com/in/jesse-borower-66494818a/Westminster Williamson VoicesThe Same Stream + +6236080Ryan ManniBaritone vocalist.Needs VoteWestminster Williamson Voices + +6236081David FalatokAlto vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236083John Brewer (6)Bass vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236084Anthony KurzaTenor vocalist.Needs VoteWestminster Williamson Voices + +6236086Katelyn HemlingSoprano vocalist.Needs Votehttps://www.linkedin.com/in/katelyn-hemling-922644226/Westminster Williamson VoicesThe Same Stream + +6236087John Burke (16)Tenor vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236088Christina ReganSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236089Kate MiksitsSoprano vocalist.Needs Votehttps://www.linkedin.com/in/kate-miksits-46598a16a/Westminster Williamson VoicesThe Same Stream + +6236090Liana BookerSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236091Nicole Michel (2)Soprano vocalist.Needs VoteWestminster Williamson Voices + +6236092Max ClaycombTenor vocalist.Needs VoteWestminster Williamson Voices + +6236093Marigrace MaleySoprano vocalist.Needs VoteWestminster Williamson Voices + +6236096Aldo ArazullaTenor vocalist.Needs VoteWestminster Williamson Voices + +6236097Samantha GoldbergAlto vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +6236098Megan Gallagher (2)Megan Page GallagherSoprano vocalist and actress.Needs Votehttps://www.meganpagegallagher.com/Westminster Williamson VoicesThe Same Stream + +6236099Robin Scott (7)Baritone vocalist.Needs VoteWestminster Williamson Voices + +6236100Megan PendletonSoprano vocalist.Needs VoteWestminster Williamson Voices + +6236101Allison GriffithsAlto vocalist.Needs VoteWestminster Williamson Voices + +6236102Alexandra MeakemAlto vocalist.Needs Votehttps://www.linkedin.com/in/alex-meakem-29595b234/Westminster Williamson VoicesThe Same Stream + +6236110Andreas Kratz (2)[b]Trombone Player[/b], member of [a6236111]Needs VoteGöteborgs SymfonikerBetlehemskyrkans Musikkår, Göteborg + +6236401Jean-Christophe GarziaFrench violist.Needs Votehttps://www.naxos.com/person/Jean_Christophe_Garzia/359630.htmOrchestre Philharmonique De Monte-CarloSWR Sinfonieorchester Baden-Baden Und FreiburgSWR Symphonieorchester + +6236554William VallandighamBass vocalist.Needs Votehttps://www.linkedin.com/in/william-vallandighamChicago Symphony Chorus + +6237262Jack Mackintosh (2)British cornet & trumpet player, and professor. Born 22 September 1891 in Sunderland, Tyne and Wear, England, UK - Died in 1979. +He joined [a=Silver Prize Band] at the Crystal Palace in 1912 and joined the front-row cornet section of [a=St. Hilda Colliery Band] lead by [a=Arthur Laycock] from 1913-1919. He joined the [a=Harton Colliery Band] after they won at Belle Vue in 1919 and was their solo cornetist through to 1930. In the same year he was invited to join the [a=BBC Symphony Orchestra] on its formation as Principal Cornet and 3rd trumpet in the trumpet section, and on retirement in 1952 his son, [a=Ian Mackintosh (2)], took his place in the trumpet section leaving Jack time to concentrate on teaching at the Royal Military School of Music, Kneller Hall. In 1933, he played with [a=Foden's Band]. 3rd trumpet with the [a=Philharmonia Orchestra]/[a=New Philharmonia Orchestra].Needs Votehttps://www.choicerecordings.com/jack-mackintosh-page-2/http://www.chrishelme-brighouse.org.uk/index.php/sunday-bandstand/item/108-sunday-bandstand-17-january-2016BBC Symphony OrchestraColdstream GuardsPhilharmonia OrchestraNew Philharmonia OrchestraSt. Hilda Colliery BandFoden's BandSilver Prize BandHarton Colliery Band + +6239669Markus LenzingMarkus Lenzing (born 1967) is a German trombonist, bass trumpet player, chorus master and composer. +Needs VoteJunge Deutsche PhilharmonieGürzenich-Orchester Kölner PhilharmonikerTiroler Symphonieorchester Innsbruck + +6239673Edgar ManyakEdgar Manyak (born 1967 in Romania) is a trombonist and music professor.Needs Votehttps://www.edgar-manyak.com/Staatskapelle DresdenRundfunk-Sinfonieorchester BerlinSlokar PosaunenquartettSatin Love And The Brass Connection + +6240492Linor KatzIsraeli classical cellist, born in Tel-Aviv in 1987.Needs VoteIsrael Philharmonic Orchestra + +6240577Giorgi KharadzeGeorgian Cellist born in 1984.Needs VoteOrchestre National De L'Opéra De ParisThe Orchid Ensemble + +6241167Steve DumaineTuba player.Needs VoteNational Symphony OrchestraWashington Symphonic Brass + +6241831Martin Unger (2)Martin Unger (27 December 1937) is an Austrian classical double bass player.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterTonkünstler Orchestra + +6241851Roberto TerrónRoberto Terrón BarreiroSpanish contrabass player.Needs VoteOrquesta Sinfónica de RTVE + +6243822Peter Di ToroBritish classical tenor vocalistNeeds VotePeter Di-ToroPeter DiToroThe London Oratory School ScholaCollegium VocaleGli Angeli GenèveDublin Consort Singers + +6248118Guillaume BégniClassical hornistNeeds VoteGuillaume BegniOrchestre National De L'Opéra De Paris + +6248821Christoph WigelbeyerChristoph Wigelbeyerborn Wels, Austria, 1973, choir conductor, singer, and pianist + +sometimes wrong written as [i]Wigelberger[/i]Needs Votehttps://de.wikipedia.org/wiki/Christoph_Wigelbeyerhttps://www.musicasacra.at/k%C3%BCnstler/details?kuenstler=194http://www.musiceducation.at/das-institut/fachbereiche/mentoring/mentoring-lehramt-me-ime/personen/christoph-wigelbeyer/http://www.neuewienerstimmen.at/wp-content/cv/cv_wigelbeyer.pdfhttps://www.classicalarchives.com/artist/27653.htmlhttps://rateyourmusic.com/artist/christoph_wigelbeyerMainstreet (3)Wiener SingvereinWiener KammerchorNeue Wiener Stimmen + +6250094Robert Shaw (13)American, New York City based violinist. He performed in various broadway productions as orchestra violinist.Needs VoteRobert T. ShawOrchestra Of St. Luke's + +6252103Lew White (2)Needs VoteCalifornia Ramblers + +6253313Women of the BBC Symphony ChorusNeeds VoteBBC Symphony Female ChorusBBC Symphony Chorus + +6254482Bernhard LörcherClassical cellist.Needs VoteLörcherStuttgarter Philharmoniker + +6255485Irvin RosenViolinist. +Member of The Philadelphia Orchestra - violin 1945-1954, principal second violin 1954-1984.Needs VoteИрвин РозенThe Philadelphia Orchestra + +6257069Cyril CostanzoClassical bass vocalist (Born 1985 in Toulon, France)Needs Votehttp://www.arts-florissants.com/personnes/cyril-costanzo.htmlhttp://lyricetco.fr/cyril-costanzohttps://www.salzburgerfestspiele.at/biografie/artistid/14045CostanzoLes Arts Florissants + +6261554Eran ReemyTrumpet player.Needs VoteIsrael Philharmonic Orchestra + +6261588Steven ReadingBritish classical French Horn player, music engraver, copyist, librarian, arranger & publisher at [b]Scores Reformed Ltd.[/b] +He studied at [l305416] (1971-1974). He has worked many years as music engraver, transcribing hard copy from publishers and composers onto Sibelius, the computer music typesetting software. For 35 years he was a leading freelance horn player in London, performing with almost all of the UK's orchestras, including [a=The Royal Philharmonic Concert Orchestra] & the [a=London Symphony Orchestra], and also with many European ensembles, spending two years as 2nd Horn in [a=I Flamminghi]. In 1996, a change of direction led to him becoming a music engraver, and arranger. He was a major copyist for [l=BBC Music Library] from 1996 to 2010 and worked as copyist for many commercial film and TV companies. He was librarian and copyist for the composer [a=Carl Davis (5)]. He has worked extensively in film and TV music preparation, and also for studio and concert work. +He has started a new Music Publishing company - Scores Reformed Ltd. - in 2009.Needs Votehttps://www.linkedin.com/in/stevereading/?originalSubdomain=ukhttps://scoresreformed.co.uk/about-us/https://www.scoringnotes.com/people/an-interview-with-scores-reformeds-steven-reading-and-ann-miller/S ReadingS. ReadingSteve ReadingLondon Symphony OrchestraThe Royal Philharmonic Concert OrchestraI FiamminghiTrinity Big BandThe Whispering Wind Band + +6262565Tadeusz TomaszewskiPolish hornist.Needs Votehttps://waltornia.pl/biografie/1068-tadeusz-tomaszewskiPolish National Radio Symphony Orchestra + +6266999Amy HarmanBritish orchestral & chamber bassoon player and professor . Born in 1987 in London, England, UK. +In 2009, she completed her undergraduate studies at the [l290263]. She then studied at the [a7482506]. She trained with the [a=European Union Youth Orchestra]. Principal Bassoon of the [a=Britten-Pears Orchestra] in 2007. Principal Bassoon at the [a=BBC National Orchestra Of Wales] (2009-2011) until being appointed Principal Bassoon of the [a=Philharmonia Orchestra] in 2011, a post she held until 2015. In 2016, she toured California with [a=Camerata Pacifica]. Member of [a=Ensemble 360] since 2010 and Principal Bassoon of [a=The English National Opera Orchestra] and [a=Aurora Orchestra]. Professor of Bassoon at the [l305416] and the [l527847].Needs Votehttps://www.facebook.com/https://twitter.com/amyharmanbsn?lang=enhttps://www.instagram.com/amyharmanbsn/?hl=enhttps://www.youtube.com/channel/UC1oR3LImAiebXQQqTuuXdfQhttps://www.musicintheround.co.uk/editorial.php?ref=amy-harman-bassoonhttps://ensemble360.co.uk/players/amy-harman/https://www.auroraorchestra.com/player-profile/amy-harman/http://www.adamwalkerflute.com/orsino-ensemble/amy-harman-bassoon/http://www.leicesterinternationalmusicfestival.org.uk/amy-harmanhttps://www.bbc.co.uk/programmes/profiles/2qqcXrm3Hqf1mJb6tZpMfT4/amy-harmanhttps://www.pharosartsfoundation.org/Pharos%20Music%20Festivals/Amy_Harman.htmhttps://musicforgalway.ie/profile/amy-harman/https://www.hyperion-records.co.uk/a.asp?a=A6235https://www.ram.ac.uk/people/amy-harmanPhilharmonia OrchestraBritten-Pears OrchestraEuropean Union Youth OrchestraBBC National Orchestra Of WalesThe English National Opera OrchestraAurora OrchestraEnsemble 360Camerata PacificaKaleidoscope Chamber Collective + +6267232David LefèvreFrench-Canadian classical violinist, brother of [a1386032].Needs Votehttp://www.davidlefevre.comhttps://www.facebook.com/lefevre.violinOrchestre Philharmonique De Monte-CarloOrchestre National Du Capitole De ToulouseGulbenkian Orchestra + +6268262Eric van ReenenDutch Oboe player.Needs VoteNieuw Sinfonietta Amsterdam + +6270549Alessandro GuariniAlessandro Guarini (c. 1565—1636) was an Italian librettistNeeds VoteA. Guarini + +6271172Kieran BruntClassical tenor vocalistNeeds Votehttps://www.kieranbrunt.com/https://twitter.com/kieran_bruntSt. John's College ChoirShards (5) + +6271179Sam OladeindeClassical tenor vocalistNeeds VoteSamuel OladeindeSt. John's College Choir + +6273516Laura LopesLaura Lopes Brazilian singer and songwriter. Born in Belo Horizonte in the 1980s.Needs Votehttp://www.lauralopes.me/Cappella Amsterdam + +6274651Thomas Sherwood (2)Percussionist.Needs VoteThe Cleveland Orchestra + +6275602Stefan GagelmannStefan Gagelmann (born 1965) is a German percussionist. +Needs VoteMünchner PhilharmonikerOrchester der Bayreuther Festspiele + +6277484Mathilde OrtscheidtFrench classical mezzo-soprano / alto vocalistNeeds VoteLes Arts FlorissantsCatastrophe (3) + +6282011Paolo BonominiPaolo Bonomini (born 1989) is an Italian cellist.Needs Votehttp://www.paolobonomini.com/Camerata Academica SalzburgTrio Boccherini + +6282075Sarah ChristianGerman violinist, born in Augsburg, Germany; since 2013 concertmaster of [a1930176].Needs Votehttp://sarah-christian.de/ChristianDeutsche Kammerphilharmonie BremenFranz Ensemble + +6282091Claire MorandClassical violinist.Needs VoteClaire HazeraClaire Hazera MorandOrchestre National De FranceOrchestre De Chambre Pelléas + +6282093Odile Simeon-DrevonClassical violist.Needs VoteOrchestre Philharmonique De Strasbourg + +6283364Philip Lewis (5)Philip John Newel LewisBritish classical violin player and conductor. +[b]Do not confound with [a=Philip Lewis (4)] or the US classical violinist [a=Philip Lewis (6)][/b]. +He was a founding member of the [a=London Symphony Orchestra] (1904-1920).Needs VoteMr. Philip LewisP. LewisLondon Symphony OrchestraPalladium Octette + +6287459Daina MateikaiteViolinist.Needs VoteGöteborgs Symfoniker + +6288111Anita PardoFrench double bass player.Needs VoteOrchestre Des Concerts Lamoureux + +6288602Brian Thornton (4)Classical cellistNeeds VoteThe Cleveland Orchestra + +6289573Gabrielle ZaneboniClassical oboist.Needs VoteOrchestre National Du Capitole De Toulouse + +6289769Léon LacourClassical percussionist.Needs VoteOrchestre De Chambre De Toulouse + +6290879Veronica RichterGerman violinistNeeds VoteMünchner RundfunkorchesterPhilharmonic Orchestra Of Europe + +6290880Makio KataokaMakio BachauerGerman trumpeter, born in 1979 in Hamburg, Germany.Needs VoteMünchner RundfunkorchesterBundesjugendorchester + +6290881Alexandre VayFrench cellist.Needs Votehttps://www.rundfunkorchester.de/besetzung/16018/Münchner RundfunkorchesterOrchestre National Des Pays De La Loire + +6290882Florian AdamGerman oboist, born in 1971 in Munich, Germany.Needs VoteMünchner Rundfunkorchester + +6290883Uta HannabachGerman violinistNeeds VoteMünchner Rundfunkorchester + +6290884Minea EvianViolinistNeeds VoteMünchner Rundfunkorchester + +6290885Ulrich Hahn (2)German violinist, born in 1955 in Kaufleuten, Germany. He's the father [a1110108]. +A member of the [a540187] from 1983 to 2018.Needs VoteMünchner Rundfunkorchester + +6290887Alexander FickelGerman drummerNeeds VoteMünchner Rundfunkorchester + +6290888Robert PolzerGerman bassoonist, born in 1954, died in 2017.Needs VoteMünchner Rundfunkorchester + +6290891Uladzimir SinkevichUladzimir Sinkevich is a Belarusian classical cellist. He's a member of the [a260744] since February 2022.Needs VoteSinkevichBerliner PhilharmonikerMünchner Rundfunkorchester + +6290892Maxim KosinovRussian violinist, born in 1983.Needs Votehttp://www.maximkosinov.comMünchner Rundfunkorchester + +6290893Martina LiesenkötterGerman violinist, born in 1970 in Munich, Germany.Needs VoteMünchner Rundfunkorchester + +6290894Markus BlecherGerman trombonist, born in 1963 in Usingen, Germany.Needs VoteMünchner RundfunkorchesterHR - BrassDatura-Posaunenquartett + +6290895Eberhard KnoblochGerman clarinetistNeeds VoteMünchner Rundfunkorchester + +6290896Hande ÖzyürekTurkish violinist, born in 1976.Needs VoteMünchner Rundfunkorchester + +6290897Maria AzovaClassical violinistNeeds Votehttp://www.maria-azova.com/Deutsch/Münchner Rundfunkorchester + +6290898Doren DinglingerGerman violist and violinistNeeds VoteMünchner RundfunkorchesterPhilharmonic Orchestra Of Europe + +6290899Stefana TiteicaClassical violinistNeeds VoteMünchner Rundfunkorchester + +6290900Malgorzata Kowalska-StefaniakPolish violist, born in 1966.Needs VoteMalgorsia Kowalska -StefaniakMalgorzata StefaniakMalgorzhta KowalskaMünchner Rundfunkorchester + +6290901Albert Frasch (2)German contrabassist, born in 1957 in Fürstenfeldbrück, Germany.Needs VoteMünchner Rundfunkorchester + +6290902Alexandra MuhrGerman flutistNeeds VoteMünchner Rundfunkorchester + +6290903Caroline RajendranGerman clarinetistNeeds VoteMünchner Rundfunkorchester + +6290905Julia BasslerGerman violinist, born in 1983 in Freiburg, Germany.Needs VoteMünchner Rundfunkorchester + +6290906Hans-Ulrich BreyerGerman violist, born in 1957 in Ulm, Germany.Needs VoteMünchner Rundfunkorchester + +6290907Martin SchöneGerman bassist, born in 1976Needs VoteMünchner Rundfunkorchester + +6290908Vladimir TolpygoRussian violinist, born in 1988.Needs VoteMünchner PhilharmonikerMünchner Rundfunkorchester + +6290909Georg LienerClassical violinistNeeds VoteMünchner Rundfunkorchester + +6290910Uta JungwirthGerman harpistNeeds VoteJungwirthMünchner Rundfunkorchester + +6290911Christopher ZackGerman violist, born in 1984.Needs VoteMünchner RundfunkorchesterThe Colburn Orchestra + +6290912So Jin KimClassical violinistNeeds Votehttps://www.sojinkim.comSo-Jin KimMünchner RundfunkorchesterLuzerner Sinfonieorchester + +6290913Marc OstertagGerman hornist, born in 1975 in Munich, Germany.Needs VoteOstertagMünchner Rundfunkorchester + +6290915Arpad GyörgyClassical contrabassistNeeds VoteMünchner Rundfunkorchester + +6290916Song-Le DoClassical cellistNeeds VoteMünchner Rundfunkorchester + +6290917Wolfram DierigGerman cellist, born in 1965 in Moers, Germany.Needs VoteMünchner Rundfunkorchester + +6290918Hanna SieberGerman hornist, born in 1987 in Mainz, Germany. She was a member of the [a540187] from 2013 to 2021.Needs VoteMünchner Rundfunkorchester + +6290919Ulf BreuerClassical percussionistNeeds VoteMünchner Rundfunkorchester + +6290920Ionel CraciunescuRomanian violinist, born 12 December 1959 in Bukarest, Romania.Needs VoteMünchner Rundfunkorchester + +6290921Andreas Moser (3)German percussionistNeeds VoteMünchner Rundfunkorchester + +6290922Emil RadutiuClassical cellistNeeds VoteMünchner Rundfunkorchester + +6290923Jürgen Evers (2)German oboistNeeds VoteMünchner Rundfunkorchester + +6290924Albert BachhuberGerman violist, born in 1965 in Munich, Germany.Needs VoteMünchner Rundfunkorchester + +6290925Julia KühlmeyerGerman violinist, born in 1984 in Munich, Germany.Needs VoteMünchner Rundfunkorchester + +6296226Fracture (26)Needs Major Changes + +6296723Noah Bendix-BalgleyClassical violinist, born in Asheville, USA.Needs Votehttps://noahbendixbalgley.com/https://en.wikipedia.org/wiki/Noah_Bendix-BalgleyBendix-BalgleyBerliner PhilharmonikerPittsburgh Symphony OrchestraMembers Of The Pittsburgh Jewish Music Festival + +6297540Anne-Fleur InizanFrench mezzo-soprano & alto vocalist, born in 1979 in Lannion, France.Needs VoteChoeur de Chambre de NamurChœur De L'Université De Paris-Sorbonne + +6298151Joaquín Riquelme GarcíaClassical violist, born in 1983 in Murcia, Spain.Needs Votehttps://en.wikipedia.org/wiki/Joaqu%C3%ADn_Riquelme_Garc%C3%ADaJoaquín RiquelmeBerliner PhilharmonikerOrquestra Simfònica De Barcelona I Nacional De CatalunyaCollegium Der Berliner Philharmoniker + +6299143The Sixth Sense (3)Peter JoostenElectronic dance music DJ / producer and label manager from Venlo, Netherlands +Style: Hard Trance | Uplifting Trance +Founder and owner of [l1196672] and previously [l112631]. +[a6299143] was originally a duo, but [a1077792] is now solely responsible for all the projects tracks and DJ sets.Correcthttps://www.facebook.com/sixthsensedj/https://soundcloud.com/sixthsensedjhttps://www.mixcloud.com/SixthSenseDeejay/Sixth SensePeter Joosten (2)Aurora ProjectSteve FalconErick van Rijswick + +6300760Csaba WagnerHungarian bass trombonist, born in 1980.Needs Votehttps://www.br-so.com/instrumentation/csaba-wagner/Gewandhausorchester LeipzigSymphonie-Orchester Des Bayerischen RundfunksStaatskapelle BerlinBudapest Festival Orchestra + +6301906Yin XiongChinese classical cellist.Needs VoteSaint Louis Symphony Orchestra + +6301950Reinhard HofbauerTrombonist.Needs VoteWiener Symphoniker + +6303153Louis MassonFrench conductor, composer and theater director, born August 6, 1878 in Étretat, and died March 28, 1957 in Ghétary.Needs VoteM. Louis MassonOrchestre Du Théâtre National De L'Opéra-Comique + +6304683Elizabeth DoonerFlute player.Needs VoteThe Academy Of Ancient Music + +6305082Anneleen SchuitemakerDutch classical harpistNeeds VoteConcertgebouworkest + +6305087Håkan BjörkmanSwedish classical trombonist, born in 1969.Needs Votehttps://www.coeurope.org/member/hakan-bjorkman-principal-trombone/Hakan BjörkmanHåkan BjorkmanSveriges Radios SymfoniorkesterThe Chamber Orchestra Of EuropeArméns Musikpluton + +6305090George CurranAmerican classical trombonist who has played in the New York Philharmonic since 2013 and previously was a member of Atlanta Symphony Orchestra.Needs Votehttp://www.lasttrombone.comhttps://nyphil.org/about-us/artists/george-curranNew York PhilharmonicAtlanta Symphony Orchestra + +6307581George 'Buddy' LeeTrumpet player in McKinney's Cotton Pickers.Needs VoteMcKinney's Cotton Pickers + +6307668Antonio PavaniItalian violist, active from the 2010s.CorrectOrchestra Del Maggio Musicale Fiorentino + +6310723Maria PflügerGerman classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +6311104Ekaterina ReshetnyakClassical violin playerNeeds VoteMünchner Rundfunkorchester + +6311109Toyomi SuzukiClassical violin playerNeeds VoteMünchner Rundfunkorchester + +6311112Tomoko ShimazakiClassical oboist from Japan.Needs VoteMünchner RundfunkorchesterOrchester Des Staatstheaters Am Gärtnerplatz + +6311114Damien LingardDamien Lingard (born 1982) is an Australian trombonist. +Needs VoteDamian LingardMünchner RundfunkorchesterJunge Deutsche PhilharmonieAustralian Youth Orchestra + +6312100Jean-Yves MonierClassical trombonistNeeds VoteOrchestre Philharmonique De Monte-Carlo + +6313873Elisabeth JöbstlAustrian horn player.Needs VoteBühnenorchester Der Wiener Staatsoper + +6313879Markus ObmannAustrian classical hornist.Needs VoteWiener SymphonikerVienna HornsThe Percussive Planet Ensemble + +6313882Manuel Huber (3)Austrian classical hornist. Born in 1988 in Ried/Innkreis. Studies at the Anton Bruckner Privatuniversität Linz with Albert Heitzinger and the Konservatorium Wien Privatuniversität with Volker Altmann. Member of the horn quartet Cordon Brass. Member and youth adviser of the marching band St. Willibald. International tours (also as soloist) | 2007-2008: Engagement at the stage orchestra at the Wiener Staatsoper. 2008-2014: 4th horn of the Wiener Staatsopernorchester and of the Wiener Philharmoniker. Since 2010: principal horn of the Wiener Staatsopernorchester and of the Wiener Philharmoniker.Needs Votehttp://www.vienna-brass-connection.at/en/the-ensemble/manuel-huber/Orchester Der Wiener StaatsoperWiener PhilharmonikerOberösterreichisches Jugendsinfonieorchester + +6313995Leah FergusonAmerican-born violoist.Needs VoteNew York PhilharmonicBoston Symphony Orchestra + +6314882Konstanze von GutzeitGerman classical cellist.Needs VoteRundfunk-Sinfonieorchester BerlinEast Side Oktett + +6315530Ann Elkjär GustafssonAnn Martina Elkjär GustafssonSwedish flutist, born on October 6, 1974. + +She holds a diploma from the Academy of Music at the University of Gothenburg and Royal Academy of Music. At the end of her English study time, she was awarded prestigious award for this year's best student, "The Queens Commendation for Excellence". She also holds the honorary title "Associate of the Royal Academy of Music”. She has won second prize in the Ljunggrenska competition, and won it International Kuhla competition for flutists in 2003. She has also performed in prestigious Concertgebouw in Amsterdam.Needs Votehttp://annelkjar.se/start/https://www.facebook.com/ann.elkjarAnn ElkjärAnn ElkjärhansenGöteborgs Symfoniker + +6318995Anne Taylor (3)British classical soprano vocalistNeeds VoteBBC Symphony Chorus + +6319139Paul-Henry VilaClassical Bass vocalistNeeds VoteLe Concert Spirituel + +6320983Katri MarteliusNeeds Major Changes + +6321869Delmas BoussagolAlphonse Joseph DelmasFrench double bass player (1891-1958).Needs VoteM. BoussagolOrchestre Des Concerts Lamoureux + +6321923Ye-Eun ChoiYe-Eun Choi is a Korean violinist.Needs Votehttps://ye-eun-choi.com/Ye Eun ChoiDresdner PhilharmonieThe Mutter Virtuosi + +6327988Guy LathurazFrench Bass vocalistNeeds VoteLe Concert Spirituel + +6328001Bart CypersClassical horn playerNeeds VoteCollegium VocaleMillenium OrchestraBelgian National Orchestra + +6328010Philip MundsA California native, Philip Munds attended the San Francisco Conservatory of Music, graduating in 1986 with a Bachelor of Arts degree in Music. After graduation, he remained in the Bay area and played for the San Francisco Symphony, the San Francisco Opera and Ballet Orchestras, the Berkeley Symphony and the Santa Cruz Symphony Orchestra. In 1989 he moved east to play with the United States Air Force Band in Washington, DC. While playing Associate Principal Horn in the band, he also performed extensively with the Air Force Woodwind Quintet. In 1997, Mr. Munds left the service and filled the position of Assistant Principal Horn with the Baltimore Symphony Orchestra and in 2004, was appointed Principal Horn under Maestro Temirkanov. He currently teaches at the University of Maryland.Needs VoteMSgt Philip MundsPhil MundsTSgt Philip MundsTechnical Sergeant Phillip MundsBaltimore Symphony OrchestraUnited States Air Force Band + +6328303Alfred Indigb.: September 18, 1892 (Brasso, Romania) +d.: ? + +(Probably) Jewish Hungarian violinist, who lived in the Netherlands and probably only recorded for the Dutch branch of Columbia. +Co-founder of the Budapest String Quartet, member from 1917 - 1920 +He also had his own string quartet ("Quatuor Indig" or "Indig Quartet") in Paris, France, in 1934 until ca. 1938. Frequent radio appearances as well as concerts during these years. +In the late 1940s he was a member of the Lener Quartet. +In the 1950s (1951 - 1956 or later) he performed with his own string quartet again.Needs VoteBerliner PhilharmonikerBudapest String QuartetConcertgebouworkest + +6328650Timothy HigginsAmerican classical trombonistNeeds Votehttps://www.timothyhigginsmusic.com/Tim HigginsSan Francisco Symphony + +6328651Cynthia YehClassical percussionist.Needs VoteChicago Symphony Orchestra + +6328652Vadim KarpinosClassical timpanist.Needs VoteChicago Symphony Orchestra + +6328655Tage LarsenTage Larsen is an American classical trumpeter.Needs VoteTage LarsonSaint Louis Symphony OrchestraChicago Symphony OrchestraU.S. Marine BandAnnapolis Symphony Orchestra + +6328657Christopher Martin (14)Christopher MartinChristopher Martin is an American trumpet player. + +Member of The Philadelphia Orchestra (associate principal trumpet, 1997-2000), Atlanta Symphony Orchestra (principal trumpet, 2000-2005), Chicago Symphony Orchestra (principal trumpet, 2005-2017), New York Philharmonic Orchestra (principal trumpet, 2016-present).Correcthttps://chrismartintrumpet.com/aboutChris MartinNew York PhilharmonicAtlanta Symphony OrchestraChicago Symphony OrchestraPhiladelphia Orchestra + +6328835Laurent LarceletFrench classical trombonist, born in 1970.Needs Votehttps://www.flaneriesreims.com/a-888-laurent-larcelet-flaneries-musicales-de-reims.htmlOrchestre Philharmonique De Strasbourg + +6328838Vincent GilligClassical trumpeter.Needs VoteOrchestre Philharmonique De Strasbourg + +6328839Renaud BernadFrench trombonist.Needs VoteOrchestre Philharmonique De Strasbourg + +6332661SilkandStonesNeeds Major ChangesEdwin van de Witte + +6332904Christian Schulz (9)Cellist from Vienna. Works as conductor, composer and musical director. Cooperations with the Wiener Musikverein.Needs Votehttp://www.richard-wagner-konservatorium.at/en/departments/theory-and-vocal-music-composition/christian-schulz/https://www.buchmann-kaspar.at/klassik/dirigent-christian-schulz/Wiener SymphonikerAmbassade Orchester Wien + +6332905Martin KlimekAustrian violinist.CorrectOrchester Der Wiener StaatsoperWiener Philharmoniker + +6333879Régis PoulainClassical bassoonist, born 13 July 1952 in Hamel, France.Needs Votehttps://fr.wikipedia.org/wiki/R%C3%A9gis_PoulainOrchestre National De FranceOrchestre National Bordeaux Aquitaine + +6335123Florence BinderFrench classical violinist.Needs VoteOrchestre National De France + +6335440Wind Group Of The Bamberg SymphonyNeeds VoteBamberger Symphoniker + +6336617Klaus PeisteinerKlaus Peisteiner (12 December 1935 - 24 September 2011) was an Austrian violist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraHofmusikkapelle WienWiener OktettThe Vienna String Quartet + +6338352Pilar SerranoPilar Serrano ZanónSpanish cello player.Needs VotePilar Serrano ZanonPilar Serrano ZardunPilar Serrano ZhaounOrquesta Sinfónica de RTVE + +6341103Siegfried RumpoldAustrian classical violinistNeeds VoteWiener PhilharmonikerWiener Philharmonisches Streichquartett + +6341104August PioroClassical violist (1910 - 1980). +He was a member of the [a754974] from 1945 to 1972.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Philharmonisches Streichquartett + +6342410Erwin ArosFrench tenor vocalist and clearinetist.Needs VoteLe Concert SpirituelLe Poème HarmoniqueLes Pages Et Les Chantres Du Centre De Musique Baroque De Versailles + +6342686Alexis LahensFrench Trombone and Sackbut instrumentalistNeeds VoteOrchestre De L'Opéra De LyonLa FeniceEnsemble CorrespondancesLa TempêteOctotrip + +6343506Jorge FresquetJorge Alberto Fresquet TobarColombian singer and composer. Born in Medellín, Antioquia (Colombia).Needs VoteFresquetJ. FresquetFresquetKronos + +6344517Otto SchiederOtto Archibald SchiederOtto Schieder (14 November 1910 - 26 October 1991) was an Austrian bassoonist. He was a member of the [a754974] from 1939 to 1975. +Also known as: Otto Schieder jun. +Needs VoteOtto ScheiderOrchester Der Wiener StaatsoperWiener PhilharmonikerBläservereinigung Der Wiener Philharmoniker + +6344519Josef LevoraJosef Levora (29 September 1912 in Vienna, Austria - 1993) was an Austrian classical trumpet player. He was a member of the [a754974] from 1934 to 1975.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +6344522Franz SchlafFranz Schlaf was a classical flute player. He passed away on August 7, 1985 at the age of 79. +A member of the [a754974] from 1939 to 1969.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +6345105David RadzynskiClassical violinist.Needs VoteIsrael Philharmonic Orchestra + +6345880Archives FilipacchiNeeds Major ChangesArchire Filipacchi + +6347183Cédric LaggiaFrench bassoonistNeeds VoteOrchestre De L'Opéra De LyonEnsemble Agora (2) + +6347325Robert Walters (5)Classical oboist, English horn player. Joined the Cleveland Orchestra in 2004.Needs VoteThe Cleveland Orchestra + +6348522Duncan Wilson (4)TrombonistNeeds VoteScottish Chamber Orchestra + +6348696Steve King (34)Violist with the Scottish Chamber Orchestra, Director of Music at Heriot-Watt University, Edinburgh.Needs VoteSteve KingScottish Chamber Orchestra + +6348778Andrew Saunders (4)British classical hornist.Needs Votehttps://newmusicscotland.co.uk/profile/andy-saunders/https://uk.linkedin.com/in/andy-saunders-92580220Andy SaundersScottish Chamber Orchestra + +6348780Ian Coulter (2)Classical percussionist.Needs VoteRoyal Scottish National Orchestra + +6348783David Prentice (3)Classical trumpeter.Needs VoteRoyal Scottish National Orchestra + +6348788Nicholas BayleyDouble Bassist and tutor. Principal Double Bass, BBC Symphony OrchestraNeeds VoteBBC Symphony Orchestra + +6350764Laurent MadeufFrench classical trombonist & trumpeterNeeds VoteLe Concert SpirituelL'Orchestre National d'Ile De FranceOrchestre Giourdina + +6352888Elitsa BogdanovaElitsa Bogdanova studied viola at the National School of Music in Sofia and the Guildhall School of Music and Drama. She is a member of the award-winning Consone Quartet, which is one of the BBC New Generation Artists. She performs regularly in chamber music ensembles, with orchestras and period instrument ensembles. She is principal viola of La Serenissima and United Strings of Europe and has lead the viola sections of the Academy of Ancient Music, Orchestra of the Age of Enlightenment, Florilegium, Irish Baroque Orchestra, 12 Ensemble and London Contemporary Orchestra. She has also worked with London Handel Orchestra, English Concert, Solomon's Knot, London Philharmonic Orchestra and Aurora Orchestra. As a studio musician, Elitsa Bogdanova has worked on music and film productions, including 'Suspiria' by Radiohead's Thom Yorke.Needs VoteLa SerenissimaThe Academy Of Ancient MusicConsone QuartetUnited Strings Of EuropeEnsemble 180° + +6353328Geoffrey Cox (3)Oboe player & Tenor vocalistNeeds VoteGöteborgs SymfonikerGöteborgsOperans OrkesterEnsemble Of The Fourteenth Century + +6353995Richard Deane (2)Richard DeaneRichard Deane has been third horn of the Atlanta Symphony Orchestra since 1987. Mr. Deane is a native of Richmond, Kentucky, where he began his horn studies with Stanley Lawson. Mr. Deane received the Master of Music degree from the Juilliard School, where he studied with Myron Bloom, and the Bachelor of Music degree summa cum laude from the Cincinnati College-Conservatory of Music, where he studied with Michael Hatfield. Other teachers have included Jerry Peel at the University of Miami and David Wakefield at the Aspen Music Festival. Mr. Deane was a first prize winner in the American Horn Competition in 1987. He has played principal horn with the Colorado Philharmonic and the Concerto Soloists of Philadelphia, and has performed with the New York Philharmonic, Cincinnati Symphony Orchestra, Soloisti New York, and the Lexington, KY Philharmonic. + +In Atlanta, Mr. Deane has performed with the Atlanta Chamber Players, and is a member of the Atlanta Symphony Brass Quintet, touring Norway with that group as part of the Olympic cultural exchange between Lillehammer and Atlanta. In May of 1999, he was a featured artist at the International Horn Society Convention held at the University of Georgia in Athens. In addition to teaching master classes at such schools as the University of Cincinnati College-Conservatory of Music, Georgia State University, Cleveland State University (Ohio) and Eastern Kentucky University, Mr. Deane is also visiting professor of horn at the University of Georgia. Mr. Deane also serves as principal horn of the Brevard Music Festival in Brevard, North Carolina each summer. His article "The Third Horn Brahms Experience" was published in the Spring 2007 edition of The Horn Call (the journal of the International Horn Society) and his first method book, "The efficient approach: Accelerated development for the French Horn" is slated for publication this year.Needs Votehttp://www.richarddeane.com/New York PhilharmonicAtlanta Symphony Orchestra + +6355497Giorgos PanagiotidisGiorgos Panagiotidis was born in Drama, Greece, in 1982 and started violin lessons with his father at the age of 5. At the age of 13 he won the first prize for young musicians at the Kocian violin competition in Ústí nad Orlicí of the Czech Republic. He was then accepted in the Academy of Music and Theatre in Munich, where he studied with Gottfried Schneider and graduated in 2004 with the loan of a Nicola Gagliano violin for two years. After graduation he joined Lydia Dubrovskaya's class and in 2007 he returned to Greece to take up the position of assistant concertmaster of the Athens Camerata - Orchestra of the Friends of Music. He has worked with many other ensembles, including the Ensemble Modern Frankfurt, and has collaborated with famous conductors such as Zubin Mehta, Pierre Boulez and Sir Neville Marriner. He has performed in many European concert halls, including the Concertgebouw Amsterdam, Herkulessaal München, Festspielhaus Baden-Baden and Salle Pleyel Paris. He is a founding member of the ERGON Ensemble and also a member of the Tetraktys Quartet and Ensemble Modern.Needs Votehttps://www.ensemble-modern.com/en/Ensemble ModernEnsemble Modern Orchestra + +6356072Dorothee GurskiDorothee Gurski (born 1977) is a German cellist. + Needs VoteStaatskapelle Berlin + +6356860Ivanna TernayIvanna Ternay is a Flute player from the Ukraine. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBamberger SymphonikerBachcollegium StuttgartSüdwestdeutsches KammerorchesterSymphonieorchester Innsbruck + +6362926Oliver MadasAustrian percussionist and composer, born 3 November 1979 in Vienna, Austria.CorrectOrchester Der Wiener StaatsoperWiener PhilharmonikerSupercussion ViennaArtists Rhythmania + +6366900Bruno AspelinNeeds Major Changes + +6368043Robert HeardClassical violinist, born in Ebbw Vale, Wales.Needs VoteRoyal Philharmonic OrchestraCity Of Birmingham Symphony OrchestraOrchestre Du Théâtre Royal De La MonnaieBirmingham Contemporary Music GroupAcademy Of St. Martin-in-the-Fields Chamber EnsembleFrith Piano Quartet + +6368466Fredrik FromSwedish classical violinist. + +He has specialized in the baroque violin and has been concertmaster in Concerto Copenhagen and Göteborg Baroque for many years. Fredrik has also played regularly with ensembles such as Les Ambassadeurs, Arte dei Suonatori and New Dutch Academy. He has had the privilege of working with early music profiles such as Lars Ulrik Mortensen, Alfredo Bernardini and Jordi Savall.Needs VoteFromTheatre Of VoicesNew Dutch AcademyConcerto Copenhagen + +6368817Pascal BenedettiFrench violinist.Needs VoteOrchestre Des Concerts Lamoureux + +6369860Jennifer GunnJennifer Gunn is an American classical flautist. She's married to [a4773671].Needs VoteChicago Symphony OrchestraThe Louisville OrchestraFort Wayne Philharmonic Orchestra + +6370169Kristian KatzenbergerClassical horn player, born 1991 in Oldenburg, Germany.Needs VoteBamberger SymphonikerFrankfurter Opern- Und MuseumsorchesterBundesjugendorchesterhr-Sinfonieorchester + +6370398Lorenzo FalconiClassical violist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +6371966Achim MelzerGerman classical cellistNeeds VoteBamberger Symphoniker + +6372077Sébastien LarrèreClassical trombonist, born April 28th, 1974.Needs VoteOrchestre National De France + +6372351Julia Kretz-LarssonClassical violinistNeeds VoteSveriges Radios Symfoniorkester + +6373990Wolfgang Singer (2)Wolfgang Singer (31 March 1944 - 2010) was an Austrian trombonist. He was the brother of [a1332155]. +A member of the [a754974] from 1977 to 1998.Needs VoteOrchester Der Wiener StaatsoperWiener SymphonikerWiener Philharmoniker + +6374923Roberto RuisiClassical violinist.Needs VoteHallé Orchestra12 Ensemble + +6374924Benjamin NewtonClassical violist, born in Manchester, England.Needs VoteBen NewtonMahler Chamber OrchestraDante QuartetThe John Wilson OrchestraYoung Musicians Symphony Orchestra + +6374926Andrew Harvey (4)Violinist + +First Violin and Joint Assistant Leader of [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +6375138Cédric LaroqueFrench violinistNeeds VoteOrchestre National De L'Opéra De Paris + +6375627Mitglieder Des Orchesters Der Staatsoper BerlinMembers of [a839986], Germany.Needs VoteDes Orchesters Der Staatsoper, BerlinGrand Symphony OrchestraHolzbläsergruppe Der Staatsoper BerlinM. Mitglieder D. Orchesters D. Staatsoper BerlinM. Mitgliedern D. Orchesters D. Staatsoper BerlinMembers Of The Berlin State Opera Orch.Members Of The Orchestra Of The Staatsoper, BerlinMembers Of The State Opera House Orchestra, BerlinMitgI. der Kapelle der Staatsoper, BerlinMitgl. D. Berliner StaatsopernorchestersMitgl. D. Kapelle Der Staatsoper, BerlinMitgl. D. Orch. D. Staatsoper BerlinMitgl. D. Orch. D. Staatsoper, BerlinMitgl. D. Orchesters D. Staatsoper BerlinMitgl. D. Orchesters D. Staatsoper, BerlinMitgl. D. Orchesters Der Staatsoper, BerlinMitgl. Der Kapelle Der Staatsoper BerlinMitgl. Der Kapelle Der Staatsoper, BerlinMitgl. Des Berliner StaatsopernorchestersMitgl. Des Orchesters D. Staatsoper, BerlinMitgl. Des Orchesters Der Staatsoper BerlinMitgl. Des Orchesters Der Staatsoper, BerlinMitgl. Des Orchesters d. Staatsoper, BerlinMitgl. d. Orch. d. Staatsoper, BerlinMitgl. d. Orch. u. Chores d. Staatsoper, BerlinMitgl. der Kapelle der Staatsoper, BerlinMitgl. des Orchesters d. Staatsoper, BerlinMitglieder Der Kapelle Der Staatsoper, BerlinMitglieder Der Staatsoper BerlinMitglieder Der Staatsoper, BerlinMitglieder Des Orchesters Der Staatsoper, BerlinMitglieder Des Orchesters Der Städt. Oper, BerlinMitglieder Des Orchestres Der Staatsoper, BerlinOrch.-Mitgl. D. Staats-Oper, BerlinOrchester-Mitgl. Der Staatsoper BerlinOrchesters Der Staatsoper, BerlinOrchestr Berlínské Státní OperyOrkestar Članova Berlinske OpereThe State Opera Orchestra, BerlinČlenové Státní Opery V BerlíněDas Orchester Der Staatsoper Berlin + +6375909Rainer KüblböckClassical trumpeterNeeds VoteWiener Symphoniker + +6380176Tatjana RuhlandTatjana Ruhland (born 1972) is a classical flute player.Needs Votehttps://www.tatjana-ruhland.dehttps://de.wikipedia.org/wiki/Tatjana_RuhlandRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +6381900Nicolas RamezClassical hornist.Needs VoteOrchestre Philharmonique De StrasbourgOrchestre De Chambre De ParisEnsemble Ouranos + +6383653Daniel LampertDaniel Lampert is a German flute player.Needs VoteOrchester der Bayreuther FestspieleSüdwestdeutsche PhilharmoniePhilharmonisches Orchester Freiburg + +6383875Alison ProcterBritish pianist and celesta player. +Principal Accompanist for the [a861263].Needs VotePhilharmonia OrchestraRoyal Scottish National OrchestraNational Youth Orchestra Of Great BritainBBC Concert Orchestra + +6384298Günter Müller (4)Günter Müller is a German cellist. He was a member of the [a578737] from 1968 to 1993.Needs VoteStaatskapelle Dresden + +6385315Arjen NapClassical countertenor vocalist.Needs VoteHolland Boys Choir + +6385316Sebastian HolzClassical bass vocalist.Needs VoteHolland Boys Choir + +6385317Peter van de KolkClassical treble vocalist.Needs VoteHolland Boys Choir + +6385318Jan Willem PrinsClassical countertenor vocalist.Needs VoteHolland Boys Choir + +6385319Aalt Jan van RoestClassical treble vocalist.Needs VoteHolland Boys Choir + +6385320Herjan PullenClassical treble vocalist.Needs VoteHolland Boys Choir + +6385321Frank TrosClassical tenor vocalist.Needs VoteHolland Boys Choir + +6385322Henk TimmermanClassical bass vocalist.Needs VoteHolland Boys Choir + +6385323Marijn TakkenClassical tenor vocalist.Needs VoteHolland Boys Choir + +6385324Richard GuldenaarClassical bass vocalist.Needs VoteHolland Boys Choir + +6385325Jelle StokerClassical treble vocalist.Needs VoteHolland Boys Choir + +6385326Peter BloemendaalClassical tenor vocalist.Needs VoteHolland Boys Choir + +6385327Gerald EngeltjesClassical countertenor vocalist.Needs VoteHolland Boys Choir + +6385328Willem van der HoornClassical bass vocalist.Needs VoteHolland Boys Choir + +6385329Nicky WesterinkClassical treble vocalist.Needs VoteHolland Boys Choir + +6385330Klaas AlbertsClassical bass vocalist.Needs VoteHolland Boys Choir + +6385331Hans van RoestClassical treble vocalist.Needs VoteHolland Boys Choir + +6385332Anne Jan LeusinkClassical treble vocalist.Needs VoteHolland Boys Choir + +6385333Edwin SmitClassical bass vocalist.Needs VoteHolland Boys Choir + +6385334Gerwin ZwepClassical treble vocalist.Needs VoteHolland Boys Choir + +6385335Vincent GroeneveldFormer classical countertenor and bass vocalist. +Inactive since 2008.Needs VoteHolland Boys Choir + +6385336Arjan DokterClassical countertenor vocalist.Needs Votehttps://www.facebook.com/arjan.dokter.1Holland Boys Choir + +6385337Jim GroeneveldClassical bass vocalist.Needs VoteHolland Boys Choir + +6385338Erik GuldenaarClassical treble vocalist.Needs VoteHolland Boys Choir + +6385339Gerrit van der HoornClassical treble vocalist.Needs VoteHolland Boys Choir + +6385340Cor van TwillertClassical tenor vocalist.Needs VoteHolland Boys Choir + +6385341Tanny KoomenClassical treble vocalist.Needs VoteHolland Boys Choir + +6385825Amine HadefMorrocan classical tenor vocalist born July 2, 1980 - Casablanca, MoroccoNeeds Votehttp://www.bach-cantatas.com/Bio/Hadef-Amine.htmLe Concert SpirituelCollegium Vocale + +6385868Owen WillettsOwen WillettsBritish classical countertenor vocalistNeeds Votehttps://www.owenwilletts.com/Owen WillitsWillettsCollegium Vocale + +6389107Marion DuchesneClassical viola instrumentalistNeeds VoteOrchestre National De L'Opéra De ParisThe Orchid Ensemble + +6389760Victor Hanna (2)French percussionist born in 1988. +After graduation from the Paris Conservatoire with first-class honours granted by a unanimous Jury vote, Hanna joined the Ensemble Intercontemporain in 2012.Correcthttp://www.ensembleinter.com/en/members-eng.php?nom=Hanna&id_soliste=312Ensemble Intercontemporain + +6390488Christophe VellaClassical percussionistNeeds VoteOrchestre National De L'Opéra De ParisLes Cuivres Français + +6390489Lionel PostollecClassical percussionistNeeds VoteOrchestre National De L'Opéra De Paris + +6390496Eric WatelleClassical cellist.Needs VoteOrchestre National De L'Opéra De Paris + +6390497Jérôme GaubertClassical flautist.Needs VoteOrchestre Des Concerts Lamoureux + +6390498Franck AubinClassical violinistNeeds VoteOrchestre National De L'Opéra De Paris + +6390622Oleguer AymamíOleguer Aymamí BusquéClassical Cello & Viola da Gamba instrumentalistNeeds VoteO. Aymané BusquéOleguerOleguer Aymamí BusquéOleguer Aymané BusquéLe Concert D'AstréeGli Angeli GenèveArtemandolineNew Century BaroqueEnsemble Du LémanEnsemble Art Of Nature + +6391439Lothar GumprechtGerman violinist.Needs VoteGewandhausorchester LeipzigCapella Fidicinia + +6392653Sylvia BorgSylvia Borg-BujanowskiSylvia Borg-Bujanowski is a German cellist.Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6392654Rose KaufmannRose Kaufmann is a German violinist. +Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6392656Daniel CahenClassical cellist. +Father of [a2074816].Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6392956Jonathan HanleyClassical tenor vocalistNeeds VoteThe SixteenInstruments Of Time & TruthSansara (5) + +6393129Richard Meyer (5)Classical trombonist. He was a member of the [a604396] from 1978 to 2015.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6394000Tamsin CoombsClassical soprano vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +6394001Louise ArmitBritish alto/mezzo-soprano vocalist.Needs VoteChorus Of The Royal Opera House, Covent GardenGlyndebourne Festival Chorus + +6395606Rudolf MetzmacherRudolf Hans Helmut Friedrich Carl MetzmacherRudolf Metzmacher ( 9 June 1906 in Schwerin, Germany - 20 January 2004 in Hanover, Germany) was a German cellist. He's the father of [a924076].Needs VoteР. МетцмахерMünchner PhilharmonikerOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester HamburgStross-QuartettMärkl-Quartett + +6396591Eric van der WelClassical violist.Needs VoteConcertgebouw Chamber Orchestra + +6397393Leonid BerkovichClassical violinistNeeds VoteBaltimore Symphony Orchestra + +6398539Roger Smith (35)Trombonist active in New York in 1945Needs VoteGeorgie Auld And His Orchestra + +6398540Joe PellicaneNeeds VoteJoe PilicaneGeorgie Auld And His Orchestra + +6400206Maya KochClassical violinist.Needs VoteOrchestre De ParisThe Schubert Ensemble Of LondonLondon Conchord Ensemble + +6400396Brian WendelClassical trombonist.Needs VoteVancouver Symphony OrchestraThe Cleveland Orchestra + +6400399Josh CirtinaJoshua CirtinaClassical trombonist.Needs VoteJosh CertinaRoyal Philharmonic Orchestra + +6401969Ken MatlockJazz trombonist during the Big Band/Swing era of the 1940s.Needs VoteCharlie Barnet And His Orchestra + +6402460Thorsten JohannsGerman classical clarinetist and saxophonist.Needs Votehttps://thorstenjohanns.com/Münchner RundfunkorchesterWDR Sinfonieorchester KölnSwiss Chamber SoloistsEssener PhilharmonikerDiogenes QuartettSaxemble (2) + +6405220Arno Tri PramudiaTrombonist.Needs VoteGöteborgs Symfoniker + +6405587Anne WiechmannAnne Wiechmann-MilatzViolist.Needs VoteAnne Wiechmann-MilatzGewandhausorchester Leipzig + +6405592Fred WeicheFred Weiche is a German double bassist.Needs VoteStaatskapelle DresdenOrchester der Bayreuther Festspiele + +6405598Thomas Otto (4)Thomas Otto is a German violinist.Needs VoteStaatskapelle BerlinDresdner Philharmonie + +6405599Thomas Herbst (3)Thomas Herbst is a classical double bassist.Needs VoteBayerisches Staatsorchester + +6405601Martin FraustadtMartin Fraustadt (born 1976) is a German violinist.Needs VoteStaatskapelle DresdenStaatskapelle Berlin + +6405605Harald HeimHarald Heim (born 1969) is a German horn player.Needs VoteStaatskapelle DresdenJunge Deutsche PhilharmonieEuropean Union Youth OrchestraDresdner Kapellsolisten + +6405606Anja KraußAnja Krauß is a German violinist.Needs VoteStaatskapelle DresdenOrchester der Bayreuther Festspiele + +6405961Reto KuppelReto Kuppel is a German violinist and Professor of Violin at the "Hochschule für Musik Nürnberg".Needs Votehttps://retokuppel.de/KuppelSymphonie-Orchester Des Bayerischen Rundfunks + +6409132Sarah AeschbachSarah Aeschbach is a Swiss violist. +Needs VoteGürzenich-Orchester Kölner PhilharmonikerUBS Verbier Festival Orchestra + +6409606近衛秀麿近衛 秀麿 (Konoe Hidemaro, 18 November 1898 – 2 June 1973) was a conductor and composer of classical music in [url=https://en.wikipedia.org/wiki/Sh%C5%8Dwa_period]Shōwa period[/url] Japan.Needs Votehttps://en.wikipedia.org/wiki/Hidemaro_KonoyeConductorGraf Hidemaro KanoyeHidemaro KonoeHidemaro KonoyeKonoyeViscount Hidemaro KonoyeNHK Symphony Orchestra + +6411632Sebastian StevenssonClassical bassoonist.Needs VoteDR SymfoniOrkestret + +6412664Stéphanie CorreClarinetistNeeds VoteOrchestre Philharmonique De StrasbourgQuintette Aquilon + +6415228Instrumentistes Du Grand Théâtre De BordeauxMusicians from the Orchestre National Bordeaux Aquitaine, FranceNeeds VoteOrchestre National Bordeaux Aquitaine + +6417784Charlotte TemplemanEnglish classical HarpistNeeds VoteEnglish Chamber Orchestra + +6417785David Johnston (15)Classical double bass playerNeeds VoteEnglish Chamber Orchestra + +6417786Shana Douglas (2)Classical violinistNeeds VoteRoyal Philharmonic OrchestraEnglish Chamber Orchestra + +6417789Helena Nichols (2)ViolinistNeeds VoteEnglish Chamber Orchestra + +6417791Pauline GilbertsonEnglish classical HarpistNeeds VoteEnglish Chamber Orchestra + +6418287Barbara BurgdorfBarbara Burgdorf is a classical violinist. She was married to [a387883]. +Needs VoteBayerisches Staatsorchester + +6427852Maria Angelika CarlsenClassical violinistNeeds VoteOslo Filharmoniske OrkesterEnsemble Allegria + +6429249Sarah CobboldNeeds VoteThe Clerkes Of Oxenford + +6429868Armance QuéroFrench cellist.Needs VoteOrchestre Philharmonique De Radio FranceEnsemble Des Équilibres + +6430524Jan KotulaClassical double bassist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/jan-kotulaPolish National Radio Symphony Orchestra + +6430525Dariusz KorczPolish violist.Needs VotePolish National Radio Symphony Orchestra + +6431919Quinten de RoosDutch classical violinistNeeds VoteBamberger Symphoniker + +6432724Craig MeyerNeeds Major Changes + +6435040Paweł RybkowskiPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +6435721Dave Williams (54)Big band drummer.Needs VoteArtie Shaw And His Gramercy FiveArtie Shaw And His Orchestra + +6436131Alya VodovozovaRussian classical flautistNeeds Votehttp://aliyavodovozova.com/oku/https://www.facebook.com/aliya.vodovozovaAliya VodovozovaRussian National OrchestraPacific Quintet + +6437829David TecchlerDavid Tecchler (1666–1748), also written Techler, Tekler, Deckler, Dechler, Decler, Teccler or Teckler, was a German luthier born in Augsburg and established in Rome.Needs Votehttps://en.wikipedia.org/wiki/David_TecchlerDavid TecclerDavid Techler + +6440007Väino PõlluClassical trombonist.Needs VoteEstonian National Symphony Orchestra + +6440015Ivar TillemannClassical trumpeter.Needs VoteEstonian National Symphony Orchestra + +6440019Aleksander HännikäinenClassical oboist.Needs VoteEstonian National Symphony Orchestra + +6440585Walter VoglmayrAustrian classical trombonist. +Born 1973 in Ried im Innkreis.Needs Votehttps://www.wienersymphoniker.at/person/walter-voglmayrhttps://www.probrass.at/ueber-uns/Walter VoglmayerWiener SymphonikerPro Brass + +6440698Bernhard KrabatschBernhard George KrabatschBernhard Krabatsch is a classical bassoon player. Born 1984 in Vienna. +Needs VoteKrabatsch BernhardDas Mozarteum Orchester SalzburgStadtkapelle GrieskirchenPenta Musica + +6442537Ernest Williams (3)Credited for tenor saxophone and clarinet player.Needs VoteEarl Hines And His Orchestra + +6443890Gebroeders KobaldNeeds Major Changes + +6445259Giovanni Bellini (2)Italian classical theorbist, lutenist and guitarist, active from the 2010s.Needs Votehttps://concertoscirocco.wordpress.com/giovanni-bellini/Le Concert Des nationsModo AntiquoOrchestra Del Maggio Musicale FiorentinoEnsemble Arte-MusicaCapella Musicale Di San Petronio Di BolognaOpera QvintaConcerto SciroccoI Talenti VulcaniciAccademia D'ArcadiaUtfasol EnsembleBassorilieviEnsemble Primi ToniRicercare AnticoEnsemble Bonne CordeAnima & CorpoDramatodía + +6446336Andrew Sinclair (7)Andrew H. SinclairClassical tenor vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +6449654Felix Fleischer-JanczakBorn April 14th 1886 in Leipzig; died August 20th 1964 in Konstanz. +German baritone.Needs Votehttps://www.deutsche-digitale-bibliothek.de/person/gnd/132410117Felix FleischerFelix Fleischer-Janacek + +6450243Roksolana ChraniukPolish classical alto/contralto vocalistNeeds Votehttps://www.facebook.com/pg/roksolana.contraltoRundfunkchor BerlinVocalconsort Berlin + +6452209Brigitte QuentinClassical double bassist.Needs VoteLe Concert SpirituelMusique Des Gardiens De La Paix + +6455194Cécile TêteFrench violinist.Needs VoteCecile TeteOrchester der Bayreuther FestspieleOrchestre National De L'Opéra De Paris + +6458317Émilie BelaudClassical violinistNeeds VoteEmilie BelaudOrchestre National De L'Opéra De ParisOrchestra Mozart + +6458618Adrien CarréFrench baroque and classical violinistNeeds Votehttp://www.adriencarre.com/Les Arts FlorissantsLes AmbassadeursGli Angeli GenèveInsula OrchestraEnsemble Les SurprisesLe Banquet Céleste + +6458684Charles Bernard (5)American Cellist.Needs VoteThe Cleveland Orchestra + +6460817Chris AugustineChristopher AugustineBritish trombonist, based in London. +2nd Trombone with [a=The Welsh National Opera Orchestra].Needs VoteChristopher AugustineThe Welsh National Opera OrchestraYoung Musicians Symphony Orchestra + +6463976Alexander Held (2)German actor, born 19 October 1958 in Munich, GermanyNeeds VoteRegensburger Domspatzen + +6464534Xander & The KeysNeeds Major Changes + +6465072James RevillNeeds Major Changes + +6468570Samantha NormanClassical violinistNeeds VoteRoyal Philharmonic OrchestraThe Old Dance School + +6468758Guido SegersTrumpet playerNeeds Votehttps://www.guidosegers.de/Münchner PhilharmonikerThe Czech Philharmonic Chamber OrchestraBlechschadenOpera Brass + +6473286Uli WittelerUlrich WittelerClassical cellist.Needs Votehttps://www.facebook.com/uli.witteler/WDR Sinfonieorchester KölnBamberger SymphonikerBundesjugendorchesterGémeaux Quartett + +6473290Anne SchoenholtzGerman violinist.CorrectAnne SchoenholzSymphonie-Orchester Des Bayerischen RundfunksFestival Strings LucerneGémeaux Quartett + +6475147François MontmayeurFrench double bassistNeeds VoteOrchestre De L'Opéra De Lyon + +6479927Carlos Vizcaíno GijónSpanish classical violist, born in 1987 in Puertoliano.Needs VoteOrchestre De Chambre De ToulouseAmaury Faye Ensemble + +6483412Duncan GouldBritish classical bass clarinet player. +Former member of the [b]Bedfordshire Youth Orchestra[/b].Needs VoteLondon Symphony Orchestra + +6483413Joao SearaJoão SearaPortuguese classical double bassist. Born in Coimbra, Portugal. +He studied at the [l305416] (2012-2014). He played with the [a=Gulbenkian Orchestra] (2010-2011), the [a=European Union Youth Orchestra] (2011-?), the [a=London Symphony Orchestra], and the [b]Newcastle Chamber Orchestra[/b]. Co-founder and member of the [b]Orquestra XXI[/b]. He has been Co-Principal Double Bass of the [a=Nederlands Philharmonisch Orkest (2)] since August 2014.Needs Votehttps://www.facebook.com/joao.seara.5https://www.linkedin.com/in/joao-seara-804a746b/https://www.dacapo.pt/seccao-Talenti&-Joao-Seara-na-Netherlands-Philharmonic-Orkesthttps://orkest.nl/nl/musici/103/joao-searaJoão SearaLondon Symphony OrchestraEuropean Union Youth OrchestraGulbenkian OrchestraAmsterdam SinfoniettaNederlands Philharmonisch Orkest (2) + +6483415Oriana KrisztenSwiss classical violinist. +She studied at [l305416]. In 2016, she became a member of the [a9475264].Needs Votehttps://www.lespassions.ch/en/orchestra/musicians/oriana-kriszten/https://absolutelyclassical.ch/wp-content/uploads/2017/06/Oriana-Kriszten.pdfhttps://www.imdb.com/name/nm5624240/London Symphony OrchestraLes Passions De L'Ame (2)Sinfonieorchester St. Gallen + +6483416Fraser MacAulayBritish freelance classical oboe & cor anglais player, and Professor of Oboe. +He studied at the [l742849] (2005-2007) and the [l290263] (2007-2009). He has freelanced as 2nd oboe with several orchestras since 2009. Professor of Oboe at [l305416] since 2015. +Needs Votehttps://www.facebook.com/fraser.macaulay.7http://www.morgensternsdiaryservice.com/WebProfile/macaulay_f_7188.shtmlhttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/1437-fraser-macaulay/London Symphony Orchestra + +6483417James Burke (9)Classical clarinet player, and Professor of Clarinet. +He studied at [l305416]. Principal Clarinet of [a=The Academy Of St. Martin-in-the-Fields] and Co-Principal Clarinet of the [a=BBC Symphony Orchestra] (since 2009). He has played as Guest Principal in other orchestras, including the [a=London Symphony Orchestra], the [a=London Philharmonic Orchestra], the [a=Philharmonia Orchestra], the [a=City Of Birmingham Symphony Orchestra] and the [url=https://www.discogs.com/artist/1260606-Northern-Sinfonia]Royal Northern Sinfonia[/url]. Professor of Clarinet at the Guildhall School of Music & Drama.Needs Votehttps://music.apple.com/be/artist/james-burke/1397933287https://www.davidroweartists.com/asm-winds-bios-2021https://www.asmf.org/musician-profiles/London Symphony OrchestraBBC Symphony OrchestraThe Academy Of St. Martin-in-the-FieldsYoung Musicians Symphony OrchestraWind Ensemble Of The Academy Of St. Martin In The Fields + +6483418Andrew Harper (4)Australian freelance Clarinet, Bass Clarinet, Basset Horn, Eb Clarinet player. +He studied at the [l527847] (200-2005). Orchestral positions include an extended contract with the [url=https://www.discogs.com/artist/1036751-Bergen-Filharmoniske-Orkester]Bergen Philharmonic Orchestra[/url] as Guest Principal Bass Clarinet for the 2010 calendar year and a one year sabbatical cover contract with the [a=Hong Kong Philharmonic Orchestra] as Associate Principal Clarinet and Principal E Flat Clarinet for the 2011/12 season. He has also played with the [a=London Symphony Orchestra]. +Needs Votehttps://maslink.co.uk/client-directory?client=HARPA1&instrument=CLARI1http://www.morgensternsdiaryservice.com/WebProfile/harper_a_6883.shtmlLondon Symphony OrchestraBergen Filharmoniske OrkesterHong Kong Philharmonic OrchestraAntiphon (4) + +6486505Oswald VoglerOswald Vogler (29 November 1930 - 26 December 2020) was a German timpanist. From 1970 to 1997 he was a member of the [a260744]. +Needs VoteBerliner PhilharmonikerBochumer SymphonikerPhilharmonisches Orchester Hagen + +6487976Sarah BachFrench hornist, based in Los Angeles.Needs VoteLos Angeles Philharmonic Orchestra + +6488843Bobby Johnson (27)Robert Johnson Jr.US jazz trumpeter from Pensacola, Florida, active in the late 40s/50s. Johnson traveled extensively, playing jazz music and keeping apartments in Kansas City, Chicago and New York. In the 1970s, as big band gave way to rock ‘n’ roll, Johnson made his home in Ellenville. He was the first black musician to play in a show band at the Granit Hotel in Kerhonkson. +Born in 1915. Died in 2001.Complete and Correcthttps://www.youtube.com/watch?v=J5oVXKefBZQBob JohnsonBobbie JohnsonBobby Johnson Jr.Robert "Bobby" JohnsonRobert JohnsonRobert Johnson Jr.Robert Johnson, Jr.William JohnsonErskine Hawkins And His OrchestraBuddy Tate's OrchestraBobby Smith And Orchestra + +6488877Jiyoon LeeJiyoon Lee (born 1992 in Seoul, Korea) is a South Korean violinist. She's the first concertmaster of the [a833446] since September 2017.Needs Votehttps://www.jiyoonlee.com/Staatskapelle Berlin + +6490152Joep van GeffenClassical bass vocalist, born in 1977.Needs VoteNederlands Kamerkoor + +6498363Mark Phillips (31)Classical horn player from England.Needs VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +6498979Mario SgobbaMario SgobbaFinnish clarinet player. Born on June 10, 1923 in Helsinki, Finland and died on January 29, 1990 in Helsinki, Finland.Needs Vote + +6499903Christopher Hart (2)British classical trumpeter.Needs VoteLondon Symphony OrchestraRoyal Scottish National Orchestra + +6500682Marco JubertiNeeds Major ChangesM. Juberti + +6502422Rudy MoercantTrumpet player.Needs VoteOrchestre Du Théâtre Royal De La MonnaieOrchestre De La Haute École De Musique De Genève + +6502430Ivan PodyomovClassical oboist.Needs VoteConcertgebouworkestOrchestre De La Haute École De Musique De GenèveIl Pomo d'OroPhilharmonic Orchestra Of Europe + +6502432Pierre-Louis MarquesTrumpet player.Needs VoteOrchestre Du Théâtre Royal De La MonnaieOrchestre De La Haute École De Musique De Genève + +6502434Eléazar CohenClassical horn player.Needs VoteGöteborgs SymfonikerOrchestre De La Haute École De Musique De Genève + +6502445Alessandra Russo (2)Classical flutist.Needs VoteOrchestre De La Haute École De Musique De GenèveOrchestra Della Radio Televisione Della Svizzera Italiana + +6502459Ewa Grzywna-GroblewskaPolish viola player.Needs VoteOrchestre De La Haute École De Musique De GenèveTonhalle-Orchester Zürich + +6502769Chu Berry And His Jazz Ensemble1941 band: Hot Lips Page (t), Chu Berry (ts), Clyde Hart (p), Al Casey (g), Al Morgan (sb), Harry Yaeger (d).Needs VoteChu Berry Jazz EnsembleClyde HartAl CaseyHot Lips PageLeon "Chu" BerryAl MorganHarry JaegerHarry Yaeger + +6507630Jakob Weber EgholmDanish percussionistNeeds VoteDR SymfoniOrkestret + +6507716Ben HulmeFrench horn player.Needs VoteLondon Symphony OrchestraRoyal Philharmonic Orchestra + +6510224Sophie Baird-DanielClassical harpistCorrectSophie Baird DanielIsrael Philharmonic Orchestra + +6512980Sven BullerClassical oboist.Needs VoteDet Kongelige KapelDR SymfoniOrkestret + +6512991Russell ItaniClassical flautist.Needs VoteDet Kongelige KapelDR SymfoniOrkestret + +6512995Helle HanskovClassical violinist.Needs VoteHelle Hanskov PalmDet Kongelige KapelDR SymfoniOrkestret + +6515426Brett PottsTenor vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +6518164Jonathan MagnessAmerican violinistNeeds VoteMinnesota Orchestra + +6519891Aurore DoiseClassical violinist.Needs VoteOrchestre Philharmonique De Radio France + +6520708Dominika FalgerDominka Ewa FalgerPolish native Violinist from CracowNeeds Votehttps://www.dominikafalger.com/cms/en/biography/Wiener SymphonikerGlière String Quartet + +6521837Jack de VriesJacob de VriesDutch jazz double bassist and trombonist (24 August 1906, Amsterdam - 28 December 1976, Antwerp). Brother of [a=Louis de Vries (3)], father of [a=Louis de Vries].Needs VoteThe RamblersBen Berlin Und Sein OrchesterThe Excellos FiveInternational's Dance Orchestra + +6525005Martial PauliatFrench classical tenor vocalist from LimogesNeeds VoteLe Concert SpirituelMaîtrise De Notre-Dame De ParisLes Traversées Baroques + +6528649Lars-Göran DimleLars-Göran Bernhard DimleSwedish trombonist from Väröbacka, born on April 10, 1957.Needs VoteGöteborgs SymfonikerGöteborg Wind OrchestraLasse Lindgren Big Constellation + +6529460Claire BerliozClassical cellistNeeds VoteOrchestre National Bordeaux Aquitaine + +6532756Elżbieta Szymańska Elżbieta Szymańska-DrzewieckaPolish violinistNeeds VoteWiener SymphonikerPoznań Philharmonic Orchestra + +6535261David HutsonDavid HudsonArranger. Formed [a3611897] in 1972.Needs VoteHutsonThe New McKinney's Cotton Pickers + +6535758Mirko LandoniHorn player.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +6535959Glenn Parker (2)Glenn Parker, a pianist who accompanied singers and directed the accompanying and coaching program at Westminster Choir College in Princeton, N.J. + +Born: April 18, 1955 (Rantoul, IL) +Died: February 15, 1996 (Manhattan, NY)Needs Votehttps://www.nytimes.com/1996/02/25/nyregion/glenn-parker-40-accompanist-for-singers.htmlWestminster Choir CollegeWestminster ChoirWestminster Symphonic Choir + +6540595Michael Lloyd (12)Trombonist.Needs VoteBBC Symphony Orchestra + +6540611SystemShock (4)Alex JenkinsonElectronic dance music DJ / producer from Stoke-on-Trent, United Kingdom +Style focus: Hard Trance Needs Votehttps://soundcloud.com/systemshock_musichttps://www.facebook.com/alex.j.jenkinsonSYSTEM SHOCKSystem ShockSystemshockAlex Jenkinson + +6542424Christina RoterbergGerman classical soprano vocalistNeeds Votehttp://www.bach-cantatas.com/Bio/Roterberg-Christina.htmRIAS-Kammerchor + +6544357Uforia (6)Dave ForemanHardstyle DJ and MC based in Melbourne, Australia.Correcthttps://www.facebook.com/djuforiafanpage/https://soundcloud.com/uforia85 + +6544951Claire Vergnory-MionFrench classical clarinetist.Needs VoteClaire VergnoryOrchestre Des Concerts LamoureuxOrchestre De La Garde RépublicaineTrio Jean Françaix + +6550390Fritz FinschProf. Fritz FinschGerman classical bassoon player. +1964 founding member of the [a=Berliner Oktett] +Professor at the [l=Hochschule Für Musik "Hanns Eisler" Berlin]. Needs VoteBerliner Sinfonie OrchesterBerliner Oktett + +6550434Julie GuédonJulie Guédon-JolyClassical violinist.Needs VoteOrchestre National Du Capitole De Toulouse + +6550564Richard CzerwonkyRichard Rudolph Czerwonky[b]Richard Czerwonky[/b] (23 May 1886, Birnbaum {Międzychód, Poland} — 16 April 1949, Chicago, Illinois) was an American virtuoso violinist, composer, and conductor of Polish descent, concertmaster of the [a=Boston Symphony Orchestra] (1906–1909) and the [a=Minneapolis Symphony Orchestra] (1909 to 1918). As a distinguished pedagogue, he taught at Bush Conservatory and [l=DePaul University] in Chicago. Czerwonky was an outspoken promoter of women in classical music, notably serving as the inaugural conductor of the Women's Symphony Orchestra of Chicago from the ensemble's first rehearsals in 1924 and through the first two seasons before passing the baton to [a=Ethel Leginska] in 1927. + +Born in Birnbaum ([i]Międzychód[/i] in Polish), a town in present-day Greater Poland Voivodeship ruled by Germany between 1871 and 1919, Czerwonky showed an outstanding natural talent in early childhood. Between 1902 and 1905, he studied with renowned [a=Joseph Joachim] at [url=https://discogs.com/label/1167199]Hochschule für Musik[/url] in Leipzig; during his tenure, Richard won the Mendelssohn Prize and went on his first extensive European tour. In 1906, twenty-year-old Richard Czerwonky made his orchestral debut with [a=Berliner Philharmoniker]. The same year, he relocated to the USA on the [a=Boston Symphony Orchestra]'s invitation to join as an assistant concertmaster. In 1909, he left Boston and became the concertmaster, soloist, and assistant conductor of the [a=Minneapolis Symphony Orchestra]. Czerwonky produced his first recordings at the dawn of the industry, with three "long-playing" [i][url=https://discogs.com/label/112011]Edison Blue Amberol[/url][/i] cylinders released between 1914 and 1916, featuring [i][r=12475434][/i] by [a=Felix Borowski], [i]Liebesfreud[/i] by [a=Fritz Kreisler], and [url=https://discogs.com/artist/526579]Wieniawski[/url]'s [i]Legende[/i] with piano accompaniment by [a=Robert Gayler]. (Richard continued recording throughout the 78 RPM gramophone era, releasing his [i]Waltz[/i] and other chamber violin pieces.) + +In 1918, Czerwonky moved to Chicago and joined the Bush Conservatory of Music faculty, serving as Head of the Violin Department between 1919 and 1935. He remained in the Chicago area for the rest of his career, teaching at the [l=DePaul University School Of Music] since 1935 and serving as the [url=https://discogs.com/artist/7466172]DePaul Symphony[/url] conductor. As a composer, Czerwonky wrote extensively for violin, piano, and orchestra, with many works published by [l=Carl Fischer Music] and [url=https://discogs.com/label/306589]Oliver Ditson[/url]. He is well-known for the 1940 arrangement of [url=https://discogs.com/artist/641495]V. Monti[/url]'s [i]Csárdás[/i] for violin and piano.Needs Votehttps://findingaids.library.northwestern.edu/agents/people/2779https://imslp.org/wiki/Category:Czerwonky,_Richardhttps://cylinders.library.ucsb.edu/search.php?nq=1&query_type=author&query=Czerwonky,+RichardCzerwonkyM. Richard CzerwonkyBoston Symphony OrchestraMinneapolis Symphony OrchestraThe Depaul Symphony Orchestra + +6551713Robert WoolfreyCanadian classical clarinetist.Needs VoteThe Cleveland Orchestra + +6551727Yuna LeeClassical violinist & cellistNeeds VoteSan Francisco SymphonyLes Paladins + +6554023Frank Lehmann (2)BassoonistNeeds VoteStuttgarter Philharmoniker + +6554457Monika MłynarczykClassical violist.Needs VoteOrchestre Du Théâtre Royal De La MonnaieWrocławska Orkiestra Kameralna Leopoldinum + +6557865Raphaëlle RubioClassical violinistNeeds VoteOrchestre De L'Opéra De Lyon + +6559271Jérôme PrincéFrench classical trumpeterNeeds VoteLe Concert SpirituelLa Petite BandeEnsemble Les Surprises + +6559272Mathieu LouxFrench woodwind instrumentalistNeeds VoteLa Petite BandeEnsemble MasquesRedherring Baroque Ensemble + +6561006Vincent BoilardClassical oboist.Needs VoteOrchestre symphonique de MontréalHarmonie de Charlesbourg + +6563018Christa PattonShawm, Harp, Recorder and Bagpipe instrumentalist and liner notes authorNeeds VoteCHCPThe Hollywood Studio SymphonyBoston CamerataPiffaro, The Renaissance BandEx UmbrisEarly Music New York + +6563045Minsub HongSouth Korean tenor vocalist.Needs VoteRIAS-KammerchorCapella De La Torre + +6563046Johanna KnauthGerman classical soprano vocalist from DresdenRIAS-KammerchorNeeds Votehttps://www.johannaknauth.de/RIAS-Kammerchor + +6563584Gunter PretzelGunter Pretzel (born in 1954 in Hamburg) is a German violist. He was a member of the [a261451] from 1984 to 2020. +Needs Votehttp://www.peltzer-pv.de/index.htmlPretzelMünchner PhilharmonikerKlaus Treuheit Orgel TrioDebussy Trio München + +6566692Wawrzyniec PeikerWawrzyniec Peiker is a Polish violinist.Needs VoteStuttgarter Philharmoniker + +6566752Johann Gottfried SchichtJohann Gottfried Schicht (29 September 1753 – 16 February 1823) was a German violinist, conductor and composer. From 1753–1823 he was Thomaskantor at Leipzig. +Needs VoteGewandhausorchester Leipzig + +6567622David Murray (22)David Murray is a double bass player and a music educator, has performed with the Indianapolis Chamber Orchestra, Sinfonia da Camera in Urbana and Dallas Chamber Orchestra, he is part of the double bass quartet the Bad Boyz of Double Bass. As an educator he has taught at the School of Music at Butler University in Indianapolis and at West Texas A&M University.Needs Votehttps://www.icomusic.org/team/david-murray/Sydney Symphony OrchestraBad Boyz of Double Bass + +6568157Hartmut SchuldtHartmut Schuldt (born 1960 in Rostock) is a German bass clarinetist. +Needs VoteRundfunk-Sinfonie-Orchester LeipzigStaatskapelle BerlinOrchester der Bayreuther FestspieleNorddeutsche Philharmonie Rostock + +6568216W. Hollis (2)Needs Major Changes + +6568218Equitis RomaniPossibly [a2165503].Needs Vote + +6568219Thomas SmytheAlways styled ?Thomas Smythe.Needs Vote(?Thomas Smith)T.S. + +6569808Koppel SmolarKoppel SmolarFinnish clarinet player who played both jazz and classical music. Born on January 9, 1935 in Helsinki, Finland and died on September 10, 1977 in Helsinki, Finland.Needs VoteErna Tauro Quartet + +6571271David Delgado (7)David Delgado is a Spanish violinist.Correcthttps://www.staatskapelle-berlin.de/de/kuenstler/david-delgado.167/Staatskapelle BerlinDuo DS + +6571424Fabiano FiorenzaniItalian classical trombone player, active from the late 1990s.CorrectOrchestra Del Maggio Musicale Fiorentino + +6572214Bruno HartlBruno Hartl (16 March 1963 in Vienna, Austria) is an Austrian percussionist and composer.Needs VoteDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Mozarteum Orchester Salzburg + +6572221Marianne RiehleMarianne Riehle is a German classical violinist. She's the daughter of [a9216670].Needs VoteDas Mozarteum Orchester SalzburgMozarteum QuartettSalzburger Kammerphilharmonie + +6573630Lionel CottetLionel Cottet (born 1987) is a Swiss cellist. +Needs VoteL'Orchestre De La Suisse RomandeSymphonie-Orchester Des Bayerischen RundfunksOrchestre De Chambre De Lausanne + +6575817Ralf WeinerRalf Weiner is a German trombonist.Needs VoteGewandhausorchester LeipzigCapella Fidicinia + +6579347Tobias LindnerClassical keyboard instrumentalistNeeds VoteVenice Baroque OrchestraLes Cornets NoirsOrchester Der J.S. Bach Stiftung + +6580180Giuliano FurlanettoClassical recorder player.Needs VoteVenice Baroque Orchestra + +6580333Stefano MeloniClassical bassoon player.Needs VoteVenice Baroque Orchestra + +6581671Katri HuttunenKatri Huttunen-PatelFinnish cellist.Needs Votehttp://www.nlcolourstrings.co.uk/katri_patel.htmlRoyal Scottish National Orchestra + +6582117Sasha NeustroevАлександр НеустроевRussian born classical cellist.Needs VoteAlexander NeustroevSwiss Piano TrioTonhalle-Orchester Zürich + +6582139Jürgen Schneider (6)Needs Major Changes + +6584104John McGrossoViolinist.Needs VoteSaint Louis Symphony OrchestraArianna String Quartet + +6585175Benjamin LashAmerican cellist.Needs Votehttps://www.benjaminlash.comBen LashLos Angeles Philharmonic OrchestraThe Los Angeles Chamber OrchestraPacific Symphony OrchestraThe Colburn Orchestra + +6586283Ilian GarnetzClassical violinistNeeds VoteBamberger SymphonikerPaian Trio + +6588564Felix Kay WeberGerman violinistNeeds VoteFelix Key WeberFelix WeberBayerisches StaatsorchesterThe Paranormal String Quartet + +6590587Jennifer DearClassical violinistNeeds VoteRoyal Philharmonic Orchestra + +6590591Ian MullinFlute player.Needs VoteRoyal Scottish National Orchestra + +6593832William H. BaileyDr. William H. BaileyBorn in Detroit on Feb. 14, 1927, Bailey was raised in Cleveland and graduated from Morehouse College in Atlanta, where he was a classmate of Martin Luther King Jr. + +He toured and recorded with the [a=Count Basie Orchestra] as a featured singer in the late 1940s and began performing as Bob Bailey to avoid being confused with a cousin, Bill Bailey, who was a tap dancer, actor and also sang professionally. He is also a cousin to [a=Pearl Bailey]. + +While attending Morehouse on a musical scholarship, Bailey was singing in a nightclub when bandleader [a=Benny Goodman] approached him with an invitation to audition for [a=Count Basie]. Bailey’s recordings with the Count Basie Orchestra include "Blue and Sentimental" and "The Worst Blues I Ever Had." He also recorded a version of the popular Irish ballad "Danny Boy." The Basie gig ended in 1950 when Basie broke up his big band. + +Bailey went on to become a civil rights defender helping break down barriers in the Las Vegas casinos, and hosted a long running show on Las Vegas TV, amongst other important accomplishments. Bailey received a Doctorate of Humane Letters from National University, San Diego, in 1987. He died on May 24, 2014 in Las Vegas, at the age of 87.Needs Votehttps://lasvegassun.com/news/2014/may/26/bob-bailey-will-be-remembered-leading-civil-rights/Bill BaileyBob BaileyCount Basie Orchestra + +6594791Marcin GortelClassical violinist.Needs VoteSüdwestdeutsches KammerorchesterPhilharmonie Merck + +6594800Luis Martinez-EisenbergPeruvian violinist, based in Germany.Needs VoteSüdwestdeutsches KammerorchesterPhilharmonie Merck + +6595506Christophe BaskaClassical countertenor vocalistNeeds VoteLe Concert SpirituelLes Nouveaux CaractèresLa Fenice + +6601907Erwin KlambauerAustrian flutist born in 1968.Needs VoteWiener SymphonikerEnsemble "die reihe", WienVienna Radio Winds + +6603455Simon KalbhennSimon Kalbhenn (born 1969) is a German cellist.Needs VoteStaatskapelle DresdenCappella Musica Dresden + +6603643Cyrille RoseChrysogone Cyrille Rose[b]Cyrille Rose[/b] (13 February 1830, Lestrem, Pas-de-Calais — 24 June 1902, Meaux, Seine-et-Marne) was a French clarinetist, composer, and pedagogue. He served as principal clarinet at the [url=/label/1133618]Paris Opera[/url]. Rose studied at [url=/label/1014340]Paris Conservatory[/url] with [a=Hyacinth Eléonore Klosé] (1808—1880). Subsequently, Cyrille Rose taught many prominent clarinetists, including [a=Louis Cahuzac] (1880—1960), [url=/artist/2070084]Paul Jeanjean[/url] (1874—1928), [url=/artist/10191808]Manuel[/url] and [url=/artist/6233601]Francisco Gomez[/url] (1866—1938), [a=Henri Lefèbvre] (1867—1923), and [a=Henri Paradis] (1861—1940).Needs Votehttps://en.wikipedia.org/wiki/Cyrille_Rosehttps://imslp.org/wiki/Category:Rose,_CyrilleOrchestre National De L'Opéra De Paris + +6605708Fiona CornallClassical violinist. +She attended [l1727868] and the [l527847] and won a spot with [a262940] strings while completing her post-graduate work. No 3 2nd Violin with the [a=Philharmonia Orchestra] since February 2007.Needs Votehttps://www.instagram.com/cornell.fiona/https://www.linkedin.com/in/fiona-cornall-b9860374/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/fiona-cornall/https://www.feenotes.com/database/artists/cornall-fiona/Philharmonia Orchestra + +6613238Terry Ross (5)US jazz and latin trumpeterNeeds VoteWoody Herman And His OrchestraWoody Herman And The Fourth HerdWoody Herman And The Swingin' Herd (2) + +6613828Michael Vogt (7)Classical cellist.Needs VoteWiener SymphonikerWiener Concert-Verein + +6613834Stefan AchenbachStephan AchenbachClassical violinist.Needs VoteWiener SymphonikerWiener Concert-Verein + +6616591Marcel LaFosseMarcel LafosseClassical trumpet player.Needs VoteBoston Symphony Orchestra + +6618057Gary BrodieClassical clarinet player.Needs VoteThe Academy Of Ancient MusicHanover Band + +6619597Erwin KellnerTrombone & Cornett playerNeeds VoteOrchester Der Wiener StaatsoperArchiv Produktion Instrumental Ensemble + +6619598Elisabeth Charlotte GabrielCredited for ViolettaNeeds VoteOrchester Der Wiener Staatsoper + +6619599Hans Kraus (4)Classical trumpeterNeeds VoteOrchester Der Wiener Staatsoper + +6620758Elisabeth BischoffClassical violinist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6620807Gregory KoellerDouble bass player.Needs VoteGreg KoellerBergen Filharmoniske OrkesterThe Orchestra Of Emmanuel Music + +6623431William Hickman (2)Credited as trumpet player.Needs Vote"Jeepy"Jeepy RickmanWilliam "Jeepy" HickmanJay McShann And His Orchestra + +6623919Sigurd MichaelClassical oboist.Needs VoteMichael SigurdSigurt MichaelBachcollegium StuttgartSüdwestdeutsches KammerorchesterStuttgarter BläserquintettPaul Angerer Ensemble + +6626394Kristina KärlinClassical horn player.Needs VoteKungliga HovkapelletGöteborgs Symfoniker + +6628211Peter Taylor (12)Credited as former leader of the [a454293].Needs VotePhilharmonia Orchestra + +6628302Graham HenningsClassical violist.Needs VoteSydney Symphony Orchestra + +6629464Stephan ScherpeGerman classical tenor vocalist born in MerseburgNeeds Votehttp://www.stephan-scherpe.de/en/ScherpeLa Petite BandeThe Muses' Fellows + +6629465Marrie MooijBelgian classical violinistNeeds VoteLa Petite BandeLes MuffattiApotheosis (8)A Nocte TemporisMillenium OrchestraRedherring Baroque EnsembleThe Rossetti Players + +6630251Frank Devenport QuintetteNeeds Major ChangesFrank Davenport QuintetLucky ThompsonAl HendricksonBob Stone (2)Frank DevenportGeorge Styles + +6633794Junko Naito (2)Japanese classical violinistNeeds VoteConcertgebouworkest + +6635724Bruno Knauer (2)Bruno KnauerGerman church musician, violin player and choral instructor. +He was born in 1910 in Reichenberg, Saxony and died in 1977 in Dresden.Needs VoteStaatskapelle DresdenDresdner Kreuzchor + +6636458Jimmy Taylor (18)Jazz saxophonist. Member of the Count Basie Orchestra.Needs VoteCount Basie Orchestra + +6640713Werner BoozGerman classical double bassist. He was a member of the [a604396] from 1975 to 2007.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksResidenz Kammerorchester München + +6640715Pedro CanhotoPortuguese classical trombonistNeeds VoteGulbenkian Orchestra + +6647769Giovanni MennaGiovanni Menna is an Italian violist. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +6648291Markus GundermannMarkus Gundermann is a German violinist. +Needs VoteDresdner PhilharmonieMalaysian Philharmonic Orchestra + +6653997Tönis TraksmannClassical oboist.Needs VoteEstonian National Symphony Orchestra + +6657687Big Band & Chorus of the Bamberg Symphony OrchestraBamberger SymphonikerNeeds VoteBamberg Symphony Choir And Big BandBamberger Symphoniker + +6659946Gustav GrossmanNeeds Major ChangesGustav GrossmannГ. Гроссман + +6661736Laura VolkweinLaure Volkwein is a German violinist.Needs Votehttps://www.staatskapelle-berlin.de/de/kuenstler/laura-volkwein.99/Staatskapelle BerlinSalonorchester Unter'n Linden + +6661971Shalom BardPrincipal clarinetist at the Toronto Symphony Orchestra, conductor of its youth symphony, and former principal clarinetist at the Israel Philharmonic OrchestraNeeds VoteIsrael Philharmonic OrchestraToronto Symphony OrchestraYiddish Glory + +6662366Anja HoppeCredited for artwork, design, and composition.Needs VoteAnja Hoppe DesignAnja Hoppe I DesignAnja Hoppe | Design + +6663148Martin BarthGerman percussionistNeeds VoteStaatskapelle BerlinPostmusik Linz OberösterreichBlack Brass + +6663848Jeremy BucklerAmerican trombonist.Needs Votehttps://www.aso.org/artists/detail/jeremy-bucklerAtlanta Symphony OrchestraBaltimore Symphony OrchestraNational Symphony Orchestra + +6663850Boris AllakhverdyanClassical clarinetist. He was appointed Principal Clarinet of the Los Angeles Philharmonic in 2016.Needs Votehttps://www.borisallakhverdyan.com/https://www.laphil.com/musicdb/artists/267/boris-allakhverdyanLos Angeles Philharmonic OrchestraThe Kansas City Symphony + +6666252蘇顯達蘇顯達[b]Shien-Ta Su[/b] (b. 7 May 1957, Shanhua Township, Tainan County) is a Taiwanese violinist and music pedagogue. He is the concertmaster of [url=/artist/4692814]Taipei Sinfonietta & Philharmonic Orchestra[/url] and serves as the Dean of the College of Music at [url=/label/1925452]Taipei National University of the Arts[/url], also teaching at [l=National Taiwan Normal University]. Shien-Ta Su studied with renowned [a=Henryk Szeryng] and his student [a=Gérard Poulet] at [l=École Normale de Musique de Paris], graduating in 1986. During his tenure in France, the violinist performed with [url=/artist/448007]Concerts Lamoureux Orchestra[/url] and served as the concertmaster of the [url=/artist/5727682]Orchestre De L'École Normale De Musique[/url]. Upon returning to Taiwan, Shien-Ta Su pursued a stage career in parallel with teaching. A few highlights of his career included the Taiwan's 1989 debut of "[i]The Butterfly Lovers[/i]" Violin Concerto, composed in 1959 by [a=He Zhan Hao] and [a=Chen Gang] and often cited among the most popular Chinese works for traditional Western symphonic orchestra. In 1990, his performance with [a=Cho-Liang Lin] on two [i][url=/artist/3610124]Stradivarius[/url][/i] violins gained a nationwide critical acclaim.Needs Votehttps://en.wikipedia.org/wiki/Shien-Ta_Suhttps://facebook.com/shientasuhttps://instagram.com/shien_ta_suShien-Ta SuOrchestre Des Concerts LamoureuxTaipei Philharmonic OrchestraOrchestre De L'École Normale De Musique, Paris + +6666943Jean-Claude GengembreClassical percussionist.Needs VoteClaude GengembreOrchestre Philharmonique De Radio France + +6667093Eric CassenClassical oboe playerNeeds VoteÉric CassenOrchestre National Bordeaux Aquitaine + +6667097Mathieu SternatClassical double bassistNeeds VoteMatthieu SternatOrchestre National Bordeaux Aquitaine + +6669206Susanne HörbergSwedish classical flutist at Kungliga Operan.Needs Votehttps://www.linkedin.com/in/susanne-h%C3%B6rberg-96124554/?originalSubdomain=seSveriges Radios SymfoniorkesterAmadékvintettenThe Amadé Quintet + +6669422Maximilian Mayer (2)German tenor, born in 1991 Regensburg, Germany.Needs Votehttps://de.wikipedia.org/wiki/Maximilian_Mayer_(S%C3%A4nger)https://maximilian-mayer.com/index.php/en/Regensburger DomspatzenFive11 + +6670919Michael Lösch (2)Michael Lösch (born 1962) is a German horn player.Needs VoteOrchester der Bayreuther FestspieleNürnberger PhilharmonikerMunich BrassStaatsphilharmonie Nürnberg + +6671096Alan BaerTuba playerNeeds VoteNew York PhilharmonicThe Principal Brass + +6671097Matthew MuckeyAmerican classical trumpeter. Dismissed from New York Philharmonic in November 2024 over sexual misconduct accusations.Needs VoteMatt MuckeyNew York PhilharmonicThe Principal BrassMetropolitan Opera Brass + +6671228Corbis LeloupNeeds Major Changes + +6671229Laurent DostesFrench painterNeeds Votehttp://laurent-dostes.com/ + +6671581Lucien Roger MaryNeeds Major ChangesL. MaryM. Lucien + +6671753Katja LinfieldAmerican cellistNeeds VoteMinnesota Orchestra + +6672146Francesco CelataClassical clarinetist.Needs VoteFrank CelataSydney Symphony Orchestra + +6672206Andrew WanCanadian classical violinistNeeds VoteOrchestre symphonique de MontréalNew Orford String Quartet + +6672207Cynthia PhelpsCynthia PhelpsAmerican violist, born 1961 in Hollywood, California. She plays in the New York Philharmonic and is also a member of the New York Philharmonic String Quartet. She is married to [a3329665]. +She joined the New York Philharmonic in 1992.Needs Votehttp://www.concordiaplayers.org/phelps.htmhttps://nyphil.org/about-us/artists/cynthia-phelpsCindy PhelpsCynthia M. PhelpsCynthia Marie PhelpsNew York PhilharmonicNew York Philharmonic String Quartet + +6672254Alfred StreiberAlfred Streiber (3 October 1907 - 30 December 2002) was a German classical double bassist. He was the father of [a6672251].Needs VoteBerliner Philharmoniker + +6674549Martin GráficosNeeds Major ChangesMartin + +6678197The Score (9)Alternative band from New York/USA, now based in Los Angeles. Members Eddie Anthony & Edan Dover.Needs Votehttps://www.facebook.com/TheScoreOfficial/http://www.thescoremusic.comhttps://www.youtube.com/channel/UCqzGLavT7stfyWMAfCXW-CAhttps://twitter.com/thescoremusichttps://www.instagram.com/thescoremusic/Edan DoverEddie Anthony (2) + +6680634Arthur PlashaertNeeds Major Changes + +6683907Astrid von BrückProf. Astrid von BrückGerman harpist and university lecturer (* 1966 in Leipzig, German Democratic Republic; today Germany). +Needs Votehttps://www.hfmdd.de/personen/person/136-kv-prof-astrid-von-brueckStaatskapelle DresdenOrchester der Bayreuther FestspieleSalonorchester Eclair + +6686163James Fountain (3)Classical trumpeter & cornettist, and Professor of Trumpet. Born in Kettering, Northamptonshire, England, UK. +He joined the [a=Kettering Citadel Young People's Band] at an early age. Aged 14, he joined [a=The National Youth Brass Band Of Great Britain] and sat Principal Cornet of the band for eight consecutive courses. From 14 years of age, he was the Principal Cornet with the [a=Virtuosi GUS Band] for three years. In 2011, aged 17, he was appointed Principal Cornet of [a=The Grimethorpe Colliery Band]. Leaving the band in 2012, to study trumpet in London, he returned to [a=The GUS Band]; he relinquished his position with GUS as Principal Cornet in October 2015. He studied at [l305416] from 2012 to 2015. In June 2014, at only 20 years of age, he was appointed as the Principal Trumpet of the [a=Royal Philharmonic Orchestra], a position he held until February 2020. From February 2020 to December 2021 he held the post of Principal Trumpet with the [a=London Philharmonic Orchestra]. Principal Trumpet of the [a=London Symphony Orchestra] since December 2021. Member of the brass ensemble [a=Septura] and the innovative new music group [b]Neoteric Ensemble[/b]. Professor of Trumpet at the [l290263] since April 2019. +Older brother of [a=Thomas Fountain], who succeeded James as Principal in The GUS Band in 2015.Needs Votehttps://www.jamesfountaintrumpet.com/https://www.facebook.com/jgfountainhttps://twitter.com/jamesfountain94https://www.instagram.com/jamesfountain94/?hl=enhttps://www.linkedin.com/in/james-fountain-19040616b/?originalSubdomain=ukhttps://open.spotify.com/artist/4bvsBhemYdV5d8cJDoHtq3https://music.apple.com/bs/artist/james-fountain/415357611https://lso.co.uk/orchestra/players/brass.html/#Trumpetshttps://lso.co.uk/whats-on/alwaysplaying/read/1738-welcome-to-our-new-principal-trumpet-james-fountain.htmlhttps://septura.org/james-fountain/https://www.brassbandsummerschool.com/staff/james-fountainhttps://www.itgconference.org/project/james-fountain/James A. FountainLondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe Grimethorpe Colliery BandThe National Youth Brass Band Of Great BritainThe Gus BandVirtuosi GUS BandSepturaKettering Citadel Young People's Band + +6686872Patrick Mason (4)Needs Major ChangesP. MasonPatrick + +6687672D. Valencia (2)Needs Major Changes + +6689878Marcel Van EysteNeeds Major Changes + +6689879Catherine ClémentNeeds Major Changes + +6689880Claude Thompson (4)Needs Major Changes + +6689881François ComtetNeeds Major Changes + +6689882Alain RondNeeds Major Changes + +6691785Jean-Yves CastorNeeds Major Changes + +6691786Jacques MondoliniNeeds Major Changes + +6692507Johnny Blake (4)Jazz Singer of early period.Needs VoteFrankie Trumbauer And His Orchestra + +6692902Jonathan FrigaNeeds VoteJ. Friga + +6693536Corentin AubryFrench percussionist.Needs VoteOrchestre De L'Opéra De Lyon + +6694763Nick Pritchard (2)English tenor & countertenor vocalistNeeds VoteThe Monteverdi ChoirLa Nuova Musica + +6694892Benny DaviesNeeds Major Changes + +6699517Sarah SchwartzClassical violinist.Needs Votehttps://www.sandiegosymphony.org/about/musicians/violin/sarah-schwartz/https://www.linkedin.com/in/sarah-s-89b606173/Sara SchwartzOrchestra Of St. Luke'sSan Diego SymphonyThe North/South Chamber Orchestra + +6700842Mike YavelNeeds Major ChangesM. Yavel + +6704385James Manson (4)BassistNeeds VoteScottish Ensemble + +6707247Rachel Silver (3)Australian french horn player who has performed with the [a=Melbourne Symphony Orchestra] as well as other major Australian state orchestras.Needs VoteSydney Symphony Orchestra + +6707925Anton HyökkiNeeds Major Changes + +6709694Leroy BuckCredited as drummer.Needs VoteFrankie Trumbauer And His OrchestraThe Three Spooks + +6709695Harold Jones (12)Credited as tenor saxophone player in early jazz period.Needs VoteFrankie Trumbauer And His OrchestraThe Three Spooks + +6709696Cappy KaplanCredited as violin and guitar player in early jazz period.Needs VoteLeo KaplanLeon KaplanFrankie Trumbauer And His Orchestra + +6709697Malcolm ElstadCredited as alto saxophone player in early jazz period.Needs VoteMac ElsteadFrankie Trumbauer And His Orchestra + +6709698Vance RiceCredited as trumpeter in early jazz period.Needs VoteFrankie Trumbauer And His Orchestra + +6711351Carmel De JagerAustralian mezzo soprano, based in London, UK.Needs VoteCarmel de JagerLondon Voices + +6711352Robbie MacDonald (4)Bass vocalistNeeds VoteLondon Voices + +6711353Amy BlytheBritish alto vocalistNeeds Votehttps://twitter.com/am_blythe?lang=deLondon VoicesTenebrae (10)Vox LunaSansara (5) + +6711356David George LeeTenor vocalistNeeds VoteLondon Voices + +6711357Amy Carson (2)British soprano.Needs Votehttps://www.amycarsonsoprano.com/Amy Clare CarsonLondon VoicesThe SixteenSolomon's Knot + +6711358Jenni HarperBritish sopranoNeeds Votehttps://twitter.com/jenniharper96?lang=deHarperLondon VoicesCeruleo + +6712299Ray Hill (8)Tenor SaxophoneNeeds VoteRay HillsSam Price And His Texas Blusicians + +6712842Valentino WorlitzschGerman cellist, born in 1989.Needs Votehttp://www.valentino-worlitzsch.comGewandhausorchester LeipzigGewandhaus-Quartett Leipzighr-Sinfonieorchester + +6713131Célestin GuérinFrench trumpeter.Needs VoteCelestin GuérinOrchestre De ParisParis Brass Band + +6713132Mathilde LebertFrench classical oboist, born in Nantes.Needs VoteOrchestre National De France + +6716138Gautier BlondelFrench classical double bass instrumentalist. (same as [a2088294] ?).Needs VoteLes Talens LyriquesLe Banquet CélesteEnsemble Marguerite Louise + +6717763Daniel DangendorfDaniel Dangendorf is a German violinist. +Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6726756Eve FrançoisBaroque cellist. Graduate of the Koninklijk Muziekconservatorium, both in Ghent and in Brussels.Needs VoteLa Petite BandeThe Belgian Baroque Soloists + +6727673Andre TõnnisClassical bass vocalist.Needs VoteEstonian Philharmonic Chamber ChoirEesti Noorte Segakoor + +6727828Anne SchinzAnne Schinz (born 1987) is a German violinist.Needs VoteEnsemble ResonanzOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinLucerne Festival Academy Orchestra + +6727830Florian GrubeGerman oboist, born in 1978.Needs VoteRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleChantily Quintet + +6730027Anton SorokowRussian classical violinist, residing in Vienna, Austria.Needs Votehttps://www.facebook.com/anton.sorokowWiener Symphoniker + +6730760The Just Bop All-StarsNeeds Major Changes + +6732953Frederick JudeCurrent Executive-Producer. +Managing Director of Snapper Music Ltd, Jan 1997 - PresentCorrecthttps://www.linkedin.com/in/frederick-jude-14000a8 + +6734342Greta MutluГрета МутлуLondon-based Bulgarian freelance classical violinist. +She studied at the [l282050] (2006-2010, Bachelor of Music), and the [l=Carnegie Mellon University] (2012-2015, Master of Music]. Freelancing since 2007, she has played in some of the best orchestras and chamber ensembles for classical music. In 2019, she toured with the [a=Aurora Orchestra], the [a=London Symphony Orchestra] (all over South America, China and Hong Kong), and [a=The London Chamber Orchestra] (in six Asian countries). In early 2020, she began playing musicals in London's West End. She has appeared in recitals and as a soloist in Bulgaria, Canada, the UK and the US. A devoted chamber musician, she has been a member of the [b]Honors String Quartet[/b] at Carnegie Mellon University, and [b]Myriad[/b] quartet. Her recent engagements include recitals with pianist Veneta Neynska. +Her surname translates from Turkish as "Happiness". +Needs Votehttps://www.facebook.com/greta.mutluhttps://twitter.com/ingrettablehttps://www.linkedin.com/in/greta-mutlu-42402b89/?originalSubdomain=ukhttps://music.apple.com/mx/artist/greta-mutlu/1505359659?l=enhttp://motifconcerts.info/en/Myriad.p386https://www.naxos.com/person/Greta_Mutlu/360617.htmhttps://webcafe.bg/story/familiyata-i-znachi-shtastie-a-tya-obikoli-sveta-s-tsigulkata-si.htmlhttps://www.sofialive.bg/day/new-thing/greta-mutlu-782891.htmlhttps://theatre.art.bg/%D0%B3%D1%80%D0%B5%D1%82%D0%B0-%D0%BC%D1%83%D1%82%D0%BB%D1%83__4404London Symphony OrchestraThe London Chamber OrchestraAurora OrchestraColin Currie Group + +6738737Lonn AkahoshiViolistNeeds VoteStuttgarter Philharmoniker + +6740853James Anderson (44)Jazz trumpet player.Needs VoteGerald Wilson Orchestra + +6742309Ingrid StenslandNorwegian cellist.Needs VoteBergen Filharmoniske Orkester + +6743052Fernando Malvar-RuizNeeds Major Changes + +6744547Eugene FeildBritish freelance classical oboe & cor anglais player. Born in 1966 in London, England, UK. +He graduated from the [l527847]. Member of the [b]Cantia Quorum[/B] ensemble.Needs Votehttp://www.morgensternsdiaryservice.com/WebProfile/feild_e_2303.shtmlEugene FieldLondon Symphony OrchestraLondon Philharmonic OrchestraPhilharmonia OrchestraBelmont Ensemble Of London + +6745546Lembi VeskimetsClassical violist.Needs VoteThe Cleveland Orchestra + +6746090Frances Evans (2)English classical violinist.Needs VoteRoyal Liverpool Philharmonic Orchestra + +6746236Yulia DeynekaYulia Deyneka (born 1982 in Russia) is a classical violist.Needs Votehttps://yuliadeyneka.com/Julia DeynekaStaatskapelle Berlin + +6751893Thomas GropperGerman baritone vocalist, conductor, chorus master and university lecturer (* 1969 in Braunlage, Germany).Needs Votehttps://www.arcis-vocalisten.de/ueber-uns/thomas-gropper.htmlhttps://de.wikipedia.org/wiki/Thomas_Gropperhttps://www.obrassoconcerts.ch/kuenstler/gropper-thomashttp://www.kammermusik-pasing.de/Kuenstler/k-gropper.htmlhttps://www.birnauer-kantorei.de/kuenstlerischer-leiter/index.htmlGropperRegensburger DomspatzenBirnauer KantoreiBarockorchester L'Arpa FestanteArcis-Vocalisten München + +6752474Alberto BoccacciItalian classical violinist, active from the 1990s.CorrectOrchestra Del Maggio Musicale Fiorentino + +6755533Rolf LorenzGerman horn playerNeeds VoteGewandhausorchester Leipzig + +6755534Gustav LinkGerman violinist +born in Magdeburg +died in Leipzig +Father of German Conductor, Composer and Teacher Joachim Dietrich Link and German Actress Andrea Link +Needs VoteGewandhausorchester Leipzig + +6755535Heinz WeißkopfGerman trumpet playerNeeds VoteGewandhausorchester Leipzig + +6756542Charles BenaroyaTrombonist.Needs VoteOrchestre symphonique de Montréal + +6756858Harold WebsterSaxophone player.Needs VoteRoy Eldridge And His Orchestra + +6756859Sandy Watson (2)Big Band trombonistNeeds VoteRoy Eldridge And His Orchestra + +6756991Al RidingNeeds VoteAlbert RidingRoy Eldridge And His Orchestra + +6757072Katarzyna Bryla-WeissViolistNeeds Votehttps://classicaltahoe.org/orchestra/katarzyna-bryla-weiss/Katarzyna BrylaKatarzyna BryłaSan Francisco SymphonyPhoenix Ensemble + +6758028Ernest BentonErnest Charles BentonClassical pianist. +Former member of the [a=London Symphony Orchestra] (1947-1949).Needs VoteLondon Symphony Orchestra + +6759114Anca NikolauViolinistCorrecthttps://www.smithsonianchambermusic.org/about/artists/anca-nicolauOrchestra Of St. Luke's + +6764806Frank Powell (3)Alto saxophonist in Cootie Williams' Orchestra (1944-1945)Needs VoteCootie Williams And His Orchestra + +6769609Andrew BarnellClassical bassoonist.Needs VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +6769686Robert Kowalski (2)Polish violinistNeeds Votehttps://ch.linkedin.com/in/robert-kowalski-995843148KowalskiOrchestra Della Radio Televisione Della Svizzera Italiana + +6769893Naomi PavriClassical cellist.Needs VoteScottish Ensemble + +6769894Andrew BerridgeClassical violistNeeds VoteScottish Ensemble + +6771720Stephane BeaulacStéphane BeaulacCanadian classical trumpeter and teacher.Needs VoteStéphane BeaulacLos Angeles Philharmonic OrchestraToronto Symphony OrchestraOrchestre symphonique de MontréalOrchestre Métropolitain du Grand MontréalNational Arts Centre OrchestraSeoul Philharmonic Orchestra + +6774086Brian ForshawTrumpet player.Needs VoteRoyal Scottish National Orchestra + +6777251Chouchane SiranossianArmenian-French classical violinist, born 1984. +Daughter of [a3041875], sister of [a5782082].Needs Votehttps://www.chouchane-siranossian.com/en/Chouchanne SiranossianAnima EternaVenice Baroque OrchestraEnsemble 1700Neue Hofkapelle MünchenCapriccio Barock OrchesterMillenium Orchestra + +6778076Jauvon GilliamClassical percussionist.Needs VoteNational Symphony Orchestra + +6779475Lore Agusti GarmediaSpanish classical soprano vocalistNeeds Votehttps://www.facebook.com/lore.garmendiahttps://www.bach-cantatas.com/Bio/Agusti-Lore.htmLore AgustiLore AgustíCollegium VocaleMusica Ficta (4)La Boz Galana + +6780068Johannes KiikEstonian trombonistNeeds Votehttps://www.facebook.com/johannes.kiikEstonian National Symphony OrchestraEstonian Festival OrchestraTrump ConceptionNew Wind Jazz Orchestra + +6784669Robert LisRobert Lis (born 1987) is a Polish violinist. He's the second concertmaster of the [a578737] since 2018. +Also a member of Tobalita String QuartetNeeds Votehttps://www.orkest.nl/muzikant/robert-lisStaatskapelle DresdenNederlands Philharmonisch Orkest (2)Café Des Chansons + +6792209Howard McGhee & His ComboNeeds Major ChangesHoward McGhee And His Combo + +6792297William Parker (5)Tenor saxophonist.Needs VoteBill ParkerWillie ParkerCootie Williams And His Orchestra + +6793936Eliot HeatonAmerican classical violinist.Needs Votehttps://www.eheatonviolin.com/The Philadelphia Orchestra + +6794942Kıvanç TireKıvanç Tire (born 1989) is a Turkish violinist. +Needs VoteKıvanc TireGewandhausorchester Leipzig + +6794959Moritz HellerClassical treble vocalist (boy soprano)Needs VoteStuttgarter Hymnus-Chorknaben + +6794960Jan-Philipp NoirhommeClassical bass vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6794961Delix DemelClassical bass vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6794962Felix HaberlandClassical tenor vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6794964Jakob WürfelClassical tenor vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6794965Levin AltinisikClassical treble vocalist (boy soprano)Needs VoteStuttgarter Hymnus-Chorknaben + +6794966Balduin LauxmannClassical treble vocalist (boy soprano)Needs VoteStuttgarter Hymnus-Chorknaben + +6794967Maximilian WolfClassical bass vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6794968Julian MalikClassical treble vocalist (boy soprano)Needs VoteStuttgarter Hymnus-Chorknaben + +6794969Felix WeiserClassical tenor vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6794970Sebastian Sturm (2)Classical tenor vocalistNeeds VoteStuttgarter Hymnus-Chorknaben + +6797292Sung Kwon YouSouth Korean classical bassoonist.Needs VoteRundfunk-Sinfonieorchester BerlinEast Side Oktett + +6800101Ilya KonovalovRussian violinist and teacher. Now residing in Israel.Needs Votehttps://en-arts.tau.ac.il/story/ilyakonovalov#:~:text=Ilya%20Konovalov%20is%20the%201st,at%20the%20Tel%20Aviv%20University.Israel Philharmonic Orchestra + +6800853Jean-Luc HoClassical keyboard instrumentalistNeeds VoteJean Luc HoLe Concert SpirituelLudus ModalisOpera FuocoLe Petit TrianonLa Guilde Des Mercenaires + +6802127Christof MörtlNeeds VoteWiener SingvereinChor Von St. Augustin, WienSinggemeinschaft OisternigQuintett Oisternig + +6807800Francesca HuntClassical violist.Needs VoteRoyal Scottish National Orchestra + +6807801Kennedy LeitchClassical cellist.Needs VoteRoyal Scottish National OrchestraYoung Musicians Symphony Orchestra + +6808734Robert BurtenshawBritish retired classical trombonist and teacher of trombone. Originally from Scarborough, North Yorkshire, England, UK. +He studied at the [l290263]. In 1978, he joined the newly formed [a=Orchestra Of Opera North] as Sub-Principal Trombone; he retired on 23 September 2021, after more than 40 years with the orchestra. He also freelanced with many London orchestras. He taught at the [l871972] and the [l=University Of Leeds].Needs Votehttps://www.facebook.com/profile.php?id=100010442771233https://open.spotify.com/artist/3Zy8PfvlDDiRGjfrgnqifLhttps://music.apple.com/gb/artist/robert-burtenshaw/1454111158https://issuu.com/britishtrombonesociety/docs/the_trombonist_-_winter_2021/s/14274473London Symphony OrchestraOrchestra Of Opera NorthLondon Symphony Orchestra Brass + +6811171Marjan HesseGerman violist, born in 1981.Needs VoteGustav Mahler JugendorchesterOrchester Der Deutschen Oper Am RheinDortmunder Philharmoniker + +6814236Andrea GötschItalian clarinetist and conductor, born 1994. +She's a member of the [a754974] since 2022. +Needs Votehttps://www.andreagoetsch.comOrchester Der Wiener StaatsoperWiener PhilharmonikerEuropean Union Youth Orchestra + +6814586So Yeon KimKorean classical violinist. Also spelled as " Soyeon Kim". + +Not to be confused with the German violinist [a6101901]. + +Needs VoteSoyeon KimOrchestra dell'Accademia Nazionale di Santa CeciliaHenao String QuartetArchi Di Santa Cecilia + +6814588Stefano TrevisanItalian violist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaHenao String Quartet + +6814763Ulla Sjöblom (2)Soprano vocalistCorrectRadiokören + +6815942Hannes MoserAustrian clarinetist, born 1959 in Vienna, Austria.Needs VoteBühnenorchester Der Wiener Staatsoper + +6816474Daniel Weitz (2)Classical wind instrumentalist.Needs Votehttps://www.linkedin.com/in/daniel-weitz-91251329/The SixteenLondon Early Opera + +6816592Maria ZachariadouCello player and teacher, born in Stockholm, Sweden of Greek parents. +She studied at [l419723] and the [l527847]. She worked with the [a4046023] for two years before moving to London to become a member of the [a=Philharmonia Orchestra] for seven years. Assistant Principal Cello of the [a=BBC Philharmonic].Correcthttps://www.mariazachariadou.com/https://www.facebook.com/maria.zachariadou.3532https://twitter.com/mariazach14?lang=enhttps://www.bbc.co.uk/programmes/articles/4BsszwDKM5ZHDcvdBC0LCY2/celebrating-international-women-s-day-2018https://the-dots.com/users/maria-zachariadou-835765https://www.musicteachers.co.uk/teacher/30a4427a129a2df4c165https://vgmdb.net/artist/23307Philharmonia OrchestraBBC PhilharmonicDüsseldorfer SymphonikerThe Orion StringsCordeography + +6819505Jasenka Balić ŽunićClassical violinist born 1982 in Zagreb, Croatia.Needs Votehttp://theatreofvoices.com/about-tov/jesenka-balic-zunic/Jasenka Balic ZunicJesenka Balic ZunicTheatre Of VoicesConcerto CopenhagenTrinitatis Kammerorkester + +6821897Dirk Lehmann (2)German trombonist, born in 1966.Needs VoteGewandhausorchester LeipzigPosaunenquartett Opus 4 + +6823563Sophie de BardonnècheBaroque violin player.Needs Votehttps://www.sophiedebardonneche.com/Les Arts FlorissantsLe ConsortLes Ombres (3)Jupiter (55) + +6824053Zoltán MácsaiHornist, born 1985 in Berettyóújfalu, Hungary.Needs VoteStaatskapelle DresdenDas Mozarteum Orchester SalzburgÖsterreichisches Ensemble Für Neue MusikDresdner Kammersolisten + +6830942Karol GajdaPolish trombonist.Needs VoteCarol GajdaPolish National Radio Symphony OrchestraTrombone Unit Hannover + +6835263Robert Johnson (56)Big band jazz and R&B pianistCorrectLucky Millinder And His Orchestra + +6836514Dania LempDaniela Lemp is a German violinist.Needs VoteNorrköping Symphony OrchestraBayerisches StaatsorchesterMünchner Rundfunkorchester + +6838735Clarence Matthews (2)Needs VoteOriginal Tuxedo Jazz Orchestra + +6839259Michael GebauerClassical violinist.Needs VoteFranz Schubert Quartet Of Vienna + +6839616Korbinian AltenbergerKorbinian Altenberger is a German violinist. +Needs Votehttps://korbinianaltenberger.com/de/Symphonie-Orchester Des Bayerischen RundfunksWDR Sinfonieorchester KölnTrio Tricolor + +6842189Roberto González-MonjasRoberto González-Monjas (born 23 February 1988 in Valladolid, Spain) is a Spanish classical violinist and conductor. +He's the principal conductor of the [a3369561] since season 2020/2021 and music director of [a3316444] since 2023. +Chief Conductor of the Mozarteumorchester Salzburg (beginning September 2024).Needs Votehttps://www.robertogonzalezmonjas.com/https://en.wikipedia.org/wiki/Roberto_Gonz%C3%A1lez-MonjasRoberto González MonjasDas Mozarteum Orchester SalzburgOrchestra dell'Accademia Nazionale di Santa CeciliaOrquesta Sinfonica De GaliciaMusikkollegium WinterthurWinterthurer Streichquartett + +6843268Olivier RoussetClassical oboistNeeds VoteOrchestre National De L'Opéra De ParisQuatuor Erell + +6843419מיכל מוסקMichal Mossek is an Israeli french hornist.Needs VoteIsrael Philharmonic Orchestraתזמורת הנשיפה של ליאור רון + +6844157Jess KoehnBass vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +6844414Anna StuartClassical cellistNeeds VoteRoyal Philharmonic OrchestraRoyal Liverpool Philharmonic Orchestra + +6846031Rogier MichaelRogier Michael von BergenRogier Michael (1552 - 1619) was a Flemish composer and, a notable late representative of the Dutch school.Needs Votehttp://oxfordindex.oup.com/view/10.1093/gmo/9781561592630.article.18577https://en.wikipedia.org/wiki/Rogier_MichaelMichaelStaatskapelle Dresden + +6847778Kate BrowtonClassical soprano vocalistNeeds VoteTheatre Of Voices + +6849234Paul PriestleyHard dance/trance producer based in Leeds, UK. Passed away in March 2022. Needs Votehttps://soundcloud.com/user-928948136Paul Priestly + +6849769Joachim WohlgemuthGerman cellistNeeds VoteJoachim WolgemuthMünchner Philharmoniker + +6852482Michael Pyne (2)Enlisted into the Army in 1964 as a band boy. He is a graduate of the Royal Military School of Music, London and travelled throughout Britain during the Queen's Silver Jubilee in 1977 as a member of the famous Kneller Hall Trumpeters. Major Pyne was a senior instructor at the Army School of Music, Victoria, Director of the Band of the First Recruit Training Battalion, Kapooka and Officer Commanding / Music Director of the Band of the Royal Military College, Duntroon to which he was appointed in January 1983Needs VoteMajor M.B. PyneTrumpeters Of The Royal Military School Of MusicThe Band Of The Royal Military CollegeThe 1st Recruit Training Battalion Band + +6852819Rodrigo BlumenstockClassical oboistNeeds VoteBläsersolisten Der Deutschen Kammerphilharmonie BremenDeutsche Kammerphilharmonie Bremen + +6852820Hanna NebelungClassical violinistNeeds VoteDeutsche Kammerphilharmonie Bremen + +6853882Christiane HöjlundClassical alto vocalistNeeds VoteChristiane HøjlundRadiokören + +6853883Tove Nilsson (2)Alto and mezzo-soprano vocalistCorrecthttps://www.bach-cantatas.com/Bio/Nilsson-Tove.htmRadiokören + +6854704Alexander HaseClassical bassoonist.Needs VoteBerliner Symphoniker + +6854713Jörg SteinbrecherJörg Steinbrecher (born 1965) is a German bassoonist.Needs VoteGürzenich-Orchester Kölner Philharmoniker + +6855749Alexander MasseyClassical tenor vocalist.Needs VoteThe Choir Of Christ Church Cathedral + +6858079José Vicente Simeo MáñezA Spanish trumpeter, professor, composer and arranger. Ruben Simeo is his son.Needs VoteRuben Simeo + +6858370Christian BrühlChristian Brühl is a German classical double bassist. +Needs VoteMünchner Rundfunkorchester + +6859698Joe Swanson And His OrchestraNeeds Major ChangesJoe Swanson Orch. The Supersonic Sound Of TomorrowJoe Swanson Orchestra + +6861674Siegfried NittSiegfried Nitt (born 1953 in Leipzig) is a German classical bassoonist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigRundfunk-Sinfonieorchester SaarbrückenDeutsche Radio Philharmonie Saarbrücken KaiserslauternMusikalische Komödie Leipzig + +6862440The Three T's (2)Jack Teagarden, Frank Trumbauer and Charlie TeagardenNeeds VotePaul Whiteman's Three T's + +6862864Samuel TupinClassical trumpet playerNeeds VoteLa Camerata De BourgogneOrchestre Philharmonique De Monte-Carlo + +6863514Susanne MironDutch soprano, sings opera, oratorio, German and French song repertoire.Needs Votehttps://www.operaballet.nl/nl/opera/1984-1985/voorstelling/la-belle-h-l-neNederlands Kamerkoor + +6863523Dorothée ErbinerDorothée Erbiner is a German cellist. +Needs VoteGewandhausorchester LeipzigReinhold-Quartett + +6864151Tomasz ŻymłaPolish classical wind instrumentalistNeeds Votehttps://pl.wikipedia.org/wiki/Tomasz_%C5%BBym%C5%82aTomasz ZymłaPolish National Radio Symphony OrchestraThe Polish Sinfonia Iuventus Orchestra + +6865581Robert Witt (2)German violoncello playerNeeds VoteStaatskapelle DresdenDresdner KapellsolistenDuo Perfetto + +6865955Walter Auer (2)Austrian flutist, born 1971 in Villach, Austria.Needs Votehttps://walterauer.at/enhttps://sankyoflutes.com/sankyo-artists/walter-auerW. AuerOrchester Der Wiener StaatsoperWiener PhilharmonikerDresdner PhilharmonieRadio-Philharmonie Hannover Des NDRWiener VirtuosenDie 14 Berliner Flötisten + +6868382Benjamin GlaubitzGerman tenor, born in 1986 in Karl-Marx-Stadt, Germany.Needs Votehttp://benjamin-glaubitz.deCollegium VocaleCantus ThuringiaCapella DaleminziaAelbgutThe Muses' Fellows + +6868839Nora FarkasViolinistNeeds VoteBayerische KammerphilharmonieDeutsche Kammerphilharmonie BremenOrchester Des Staatstheaters Am GärtnerplatzTaschenphilharmonie + +6870093Sandrine AbelloFrench chorus Master, musical director of the Opéra Studio at the Opéra national du Rhin since August 2021Needs Votehttps://www.operanationaldurhin.eu/fr/les-artistes/details/sandrine-abelloMaîtrise & Choeurs de L'Opéra de ToursChoeur de L'Opera de ToulonChœur de L'Opéra National Du RhinChoeurs d'Angers Nantes Opéra + +6870223Helena BuckieBritish violinist. +She graduated from the [l290263] in July 2014. Member of the [a=European Union Youth Orchestra] since May 2013. 2nd Violin with the [a=Philharmonia Orchestra] (01/2016-2018). Principal 2nd Violin of [a374006] (2018-2020). +She worked at [l1581784] (01/2014-12/2015). Violin teacher at [l1020071].Needs Votehttps://soundcloud.com/hbuckie/setshttps://twitter.com/hbuckie?lang=enhttps://www.instagram.com/helenabuckie/?hl=enhttps://www.linkedin.com/in/helena-buckie-5bb6b546/?originalSubdomain=ukhttps://www.musicteachers.co.uk/teacher/b3ad99a8ca1d91cce600/biographyhttp://www.tch.gr/default.aspx?lang=en-GB&page=44&id=2863https://www.euyo.eu/memberProfile?id=1196https://rocketreach.co/helena-buckie-email_144486788Hallé OrchestraPhilharmonia OrchestraEuropean Union Youth OrchestraUnited Strings Of Europe + +6870224Sophie CameronBritish classical violinist. +She graduated from the [l459222] in 2012. She was a member of [b]Gildas Quartet[/b] and Principal 2nd Violin with the [a835739] for two years (2014-2016) before she joined the [a=Philharmonia Orchestra] as 2nd Violin in October 2016. Regular member of the English Arts Orchestra or Ensemble.Needs Votehttps://www.linkedin.com/in/sophie-cameron-05994ab7/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/sophie-cameron/http://englisharts.org/about/biographies/cameron-sophiePhilharmonia OrchestraBournemouth Symphony Orchestra + +6870226Minhee LeeMin Hee LeeSouth Korean classical violinist, born in 1985. +In 2006, she relocated to Germany, where she graduated from the [l1125469] in 2015. Before joining the [a=Philharmonia Orchestra], she gained orchestral experience with the [a=Orchester Der Deutschen Oper Berlin], [a=Deutsches Symphonie-Orchester Berlin], and [a=Munich Chamber Orchestra].Needs Votehttps://www.minheelee.de/https://www.facebook.com/min.h.lee.315https://www.instagram.com/minhee_vn/https://www.linkedin.com/in/lee-min-hee-65047669/?originalSubdomain=dehttps://philharmonia.co.uk/bio/minhee-lee/Philharmonia OrchestraDeutsches Symphonie-Orchester BerlinOrchester Der Deutschen Oper BerlinMünchener Kammerorchester + +6870227Fabrizio FalascaItalian violinist, born 1988 near Naples, Italy. +He graduated from the [l527847]. 1st Violin and Assistant Leader of the [a=Philharmonia Orchestra] since 2016.Needs Votehttps://www.facebook.com/fabrizio.falasca.10https://twitter.com/fabriziofalasca?lang=enhttps://philharmonia.co.uk/bio/fabrizio-falasca/https://evmelia-festival.org/2018/07/04/fabrizio-falasca-violin-italy/FalascaPhilharmonia OrchestraPhilharmonia Chamber Players + +6870230Tamás SándorHungarian classical violinist. +He studied at the [l869714]. Following a move to Antwerp, he joined the [a=Royal Flemish Philharmonic]. In 2013, Tamás began playing with the [a=Philharmonia Orchestra], and he joined as a full member in 2014 as Principal 2nd violin. Member of the [b]Scalda Ensemble[/b].Needs Votehttps://philharmonia.co.uk/bio/tamas-sandor/https://arte-amanti.be/artists/scalda-ensemble/#english-versionhttps://www.imdb.com/name/nm11954126/Tamas SandorPhilharmonia OrchestraRoyal Flemish Philharmonic + +6870659Laurent Ben SlimaneFrench bass clarinet player and professor. Born in 1975 in Nogent-le-Rotrou, Eure-et-Loir, France. +He studied at the [l1014340] (1997-1999). He joined the [a=Philharmonia Orchestra] in May 2005 as Principal Bass Clarinet. Founder member of [a=Ailleur5] in France. Professor of Bass Clarinet firstly at [l305416] for ten years and then at the [l527847] (since September 2014).Needs Votehttps://www.facebook.com/laurent.benslimanehttps://twitter.com/lo_bassclarinet?lang=enhttps://www.linkedin.com/in/laurent-ben-slimane-5b315335/?originalSubdomain=ukhttps://www.linkedin.com/in/laurent-ben-slimane-677a1969/?originalSubdomain=ukhttps://www.youtube.com/channel/UCvkLUpQDNqFHFbmBFfXvNMQ/nullhttps://www.playwithapro.com/live/Laurent-Ben-Slimane/http://www.mousikos.fr/index.php?page=redacteur_benslimanehttps://www.feenotes.com/database/artists/slimane-laurent-ben-1975-present/https://philharmonia.co.uk/bio/laurent-ben-slimane/https://www.ram.ac.uk/people/laurent-ben-slimanehttps://www.gsmd.ac.uk/music/staff/teaching_staff/department/2-department-of-wind-brass-and-percussion/87-laurent-ben-slimane/Laurent BenslimanePhilharmonia OrchestraGrasse MatinéeAilleur5 + +6870660Jonathan MaloneyBritish classical hornist from Glasgow, Scotland. +Co-Principal Horn of the [a=Southbank Sinfonia] in 2014. 4th Horn of the [a=Philharmonia Orchestra] (2016-2018). He joined the [a=London Symphony Orchestra] in March 2022.Needs Votehttps://lso.co.uk/whats-on/alwaysplaying/read/1806-welcome-to-our-new-lso-horn-jonathan-maloney.htmlhttps://maslink.co.uk/client-directory?client=MALOJ1&instrument=HORN6https://vgmdb.net/artist/23317London Symphony OrchestraPhilharmonia OrchestraEuropean Union Youth OrchestraSouthbank Sinfonia + +6870661Tom BlomfieldBritish oboist. Born in North Wales. +He was a member of both the [a=National Youth Orchestra Of Wales] and the [a=National Youth Orchestra Of Great Britain] for a number of years. He graduated from the [l527847] in the summer of 2017, shortly before joining the [a=Philharmonia Orchestra], as their new Joint Principal Oboe, in September 2017 at the age of 22.Needs Votehttps://www.facebook.com/tomblom11https://twitter.com/blom_oboe?lang=enhttps://www.instagram.com/tom_blomfield/https://www.linkedin.com/in/tom-blomfield-71b2a6149/?originalSubdomain=ukhttps://philharmonia.co.uk/bio/tom-blomfield/https://www.ram.ac.uk/people/tom-blomfieldhttps://www.londonfirebird.com/2017/09/17/musician-month-tom-blomfield/https://www.marigaux.com/en/artists/https://www.helpmusicians.org.uk/creative-programme/supported-artists/tom-blomfieldThomas BlomfieldPhilharmonia OrchestraThe Academy Of St. Martin-in-the-FieldsNational Youth Orchestra Of Great BritainNational Youth Orchestra Of WalesRoyal Academy Of Music Soloists Ensemble + +6870662Michael Fuller (5)American classical (orchestral & chamber) double bass player, and instructor. +He grew up in California, USA, where he recorded several rock albums as electric bass player. Aged 19, he begun playing double bass and after a year he joined the [a6428170]. Another year later, he was accepted into the [l484524]. Member of the [a6913032] (June 2001 - November 2005). He served as Assistant Principal Bass of [a6732053] (2005-2006). He was founding member and Principal Bass of the [a4847690] (2005-2008). He played in the [a=Minnesota Orchestra] for two years (September 2008 - August 2010) before joining the [a=Philharmonia Orchestra] in September 2010. Double Bass Instructor at the [b]Royal Holloway University of London[/b].Needs Votehttps://uk.linkedin.com/public-profile/in/michael-fuller-1aa43410https://philharmonia.co.uk/bio/michael-fuller/https://www.royalholloway.ac.uk/research-and-teaching/departments-and-schools/music/about-us/instrumental-and-vocal-tutors/michael-fuller/Michael FullerLondon Symphony OrchestraPhilharmonia OrchestraMinnesota OrchestraUBS Verbier Festival Chamber OrchestraSan Francisco Symphony Youth OrchestraThe New Haven Symphony OrchestraUBS Verbier Festival Youth OrchestraPhilharmonia Chamber Players + +6870698Yukiko Ogura (2)Japanese classical violist. Born in Nara. +Having studied the violin at [a=Kyoto City University of Arts], she won a position as a member of the [a=Kobe City Chamber Orchestra]. She received her bachelor's degree in 1995. She eventually gave up the violin completely in order to study the viola in Tokyo. She emigrated to Chicago, IL, USA in 2000 and became the violist of the [a=Eusia String Quartet]. In May 2001, she was appointed a member of [a=The Chicago Symphony Orchestra]. She joined the [a=Philharmonia Orchestra] in 2015 as Principal Viola.Needs Votehttps://www.feenotes.com/database/artists/oqura-yukiko/https://philharmonia.co.uk/bio/yukiko-ogura/https://www.classicalconnect.com/Yukiko_Ogura/187https://musica148.jimdofree.com/profile-1/yukiko-ogura/https://vgmdb.net/artist/23294Philharmonia OrchestraChicago Symphony OrchestraKobe City Chamber OrchestraPhilharmonia Chamber PlayersEusia String Quartet + +6871546Aurélie FranckMezzo-soprano & Alto vocalist.Needs Votehttps://aureliefranck.com/Collegium VocaleChoeur de Chambre de NamurChorWerk Ruhr + +6872479Elizabeth Adams (2)British soprano vocalist.Needs Votehttps://www.facebook.com/ElizabethAdamssop/Lizzie AdamsLondon VoicesVox LunaExcelsis (4) + +6872636Isabel CharisiusClassical violist.Needs Votehttps://en.wikipedia.org/wiki/Isabel_CharisiusAlban Berg QuartettDSCH - Shostakovich Ensemble + +6872701Marian DijkhuizenDutch mezzo-soprano & alto vocalistNeeds Votehttps://mariandijkhuizen.com/de/DijkhuizenCappella Amsterdam + +6874646Bläser der Berliner PhilharmonikerNeeds Vote13 Bläser Der Berliner PhilharmonikerBläser Des Philharmonischen Orchesters BerlinBlåsare Ur Berliner PhilharmonikerBlæsere Fra Berliner PhilharmonikerneWind Ensemble Of The Berlin Philharmonic OrchestraWind Players Of The Nerlin Philharmonic OrchestraBerliner Philharmoniker + +6874858Susanne Schmidt (4)Susanne Schmidt (born 1988) is a German classical violinist.Needs VoteGustav Mahler JugendorchesterDortmunder Philharmoniker + +6874881Waldemar SchwiertzWaldemar Schwiertz is a German classical double bassist. +Needs VoteGewandhausorchester LeipzigOrchester der Bayreuther FestspieleNeues Bachisches Collegium Musicum LeipzigOrchestra Mozart + +6874901Eberhard SpreeGerman classical double bassist and music historian. +Needs VoteGewandhausorchester Leipzig + +6874928Peter Gerlach (2)Peter Gerlach is a German violinist.Needs VoteGewandhausorchester Leipzig + +6876217P. BianculliPasquale BianculliItalian-born American mandolin and violin player and occasional conductor (born November 16, 1878 in Marsico Vetere, Provincia di Potenza, Basilicata, Italy – died June 11, 1940 in Philadelphia, Pennsylvania, U.S.A.) +He is also listed as "Pasqualino" in some sources. + +Bianculli accompanied baritone [a=Carlos Francisco] on a 1904 [l=Victor] recording. From 1909 to 1927, he worked as a studio musician for the [l=Victor Talking Machine Co.], playing in the Victor orchestra and accompanying singers like [a=Enrico Caruso], [a=Emilio De Gogorza], [a=Frances Alda] and many others on the mandolin and [a=Olive Kline], [a=Harry Lauder], and [a=Laura Littlefield] on the violin.Needs Votehttps://www.findagrave.com/memorial/216697310/pasquale-biancullihttps://adp.library.ucsb.edu/index.php/mastertalent/detail/200800/Bianculli_P?Matrix_page=100000BiancucciBianculliPasqualli BianculliThe Philadelphia OrchestraVictor Symphony Orchestra + +6879893Felix Andreas GennerSwiss classical clarinetist. He was a member of the [a8551878] from 1991 to 2022.Needs VoteF. A. GennerFelix-Andreas GennerTonhalle-Orchester Zürich + +6880113James OlinAmerican trombonistNeeds Votehttps://www.linkedin.com/in/james-olin-b30b425/Jim OlinBaltimore Symphony Orchestra + +6882168Brynjar KolbergsrudClassical trumpeterNeeds VoteOslo Filharmoniske Orkester + +6882169David Friedemann StrunckGerman classical oboistNeeds VoteOslo Filharmoniske Orkester + +6882234Benoît DescampsFrench Bass & Baritone vocalsNeeds VoteLe Concert SpirituelLudus Modalis + +6883230Johnny Ross (6)Needs VoteFrankie Trumbauer And His Orchestra + +6883341René Urtreger QuartetNeeds Major ChangesRene Urtreger Quartet + +6888014Emil Huckle-KleveClassical violinistNeeds VoteOslo Filharmoniske Orkester + +6891692Sigurd GreveOboist.Needs VoteBergen Filharmoniske Orkester + +6892013Tuula Fleivik NurmoTuula Johanna Irmeli Fleivik NurmoFinnish classical violist, living in Gothenburg, Sweden, born May 14, 1977.Needs VoteTuula NurmoTuula FleivikGöteborgs SymfonikerGageego! + +6894586Stephan Graf (2)German trumpeterNeeds VoteOrchester der Bayreuther FestspieleNDR SinfonieorchesterNiedersächsisches Staatsorchester HannoverNDR Elbphilharmonie Orchester + +6894590Barbara GruszcynskaPolish violinistNeeds VoteGustav Mahler JugendorchesterNDR SinfonieorchesterNDR Elbphilharmonie OrchesterJunge Österreichische Philharmonie + +6896980Cyprien SemayneClassical viola playerNeeds VoteOrchestre National Bordeaux Aquitaine + +6897551Sarah Nelson (10)Cello playerNeeds VoteScottish Chamber Orchestra + +6898182Hans HölzlClassical percussionist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898183Nikolaus GlasslNikola GlasslComposer and pianist, born 26 March 1920 in Budapest, Hungary; died 21 June 2017.Needs VoteNikola GlasslSymphonie-Orchester Des Bayerischen Rundfunks + +6898184Vladimir HaasClassical harpist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898185Ludwig SchesslClassical percussionist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898186Kurt BartlClassical violist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898187Josef HeidenreichClassical contrabassist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898189Josef Listl (2)Classical bassoonist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898190Toni Fischer (2)Classical clarinettist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898191Bruno LenzClassical violinist, born 8 November 1911 in Bollenbach (now Haslach im Kinzigtal), Germany; died 16 June 2006. +From 1950 to 1970 he was second concertmaster at Symphonie-Orchester des Bayerischen Rundfunks.Correcthttps://de.wikipedia.org/wiki/Bruno_LenzSymphonie-Orchester Des Bayerischen Rundfunks + +6898192Günther SüssmayrClassical violist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6898193Karl HennClassical contrabassist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +6900205Matthias GlanderMatthias Glander is a German clarinetist.Needs VoteStaatskapelle BerlinOrchester der Bayreuther FestspieleTrio ApollonSalonorchester Unter'n Linden + +6904678קיריל מיכנובסקיKirill MihanovskyRussian classical cellist, emigrated to Israel in 1990.Needs VoteIsrael Philharmonic Orchestra + +6905942Richard Wolfe (4)American violist born 1953 in New York City. Based in the Netherlands.Needs Votehttps://www.conservatoriumvanamsterdam.nl/en/study/studying-at-the-cva/faculty/classical-music/richard-wolfe/https://www.rietveld-ensemble.com/index.php/10-musicians/10-richard-wolfehttp://www.stringacademy.nl/viola.htmlhttp://www.francigenafestival.it/eng/docenti/richard-wolfe/Netherlands Chamber Orchestra + +6906035Emily GreenleafAmerican mezzo-soprano, born in 1987.Needs Votehttp://emilygreenleaf.comBach Society Of Minnesota + +6908034Helge StieglerAustrian classical wind instrumentalistNeeds VoteWiener Akademie + +6908063Demetrius PolyzoidesDemetrius Polyzoides (born 1959) is an Austrian violinist. He's married to [a2114493] and is the brother of [a3032691]. +Needs VoteDimitri PolyzoidesLeonardo QuartettBayerisches StaatsorchesterGürzenich-Orchester Kölner PhilharmonikerHamburger SymphonikerKölner StreichsextettVerein Ensemble "Neue Streicher" + +6909481Kaspar LoyalGerman bassist, born in 1983.Needs VoteStaatskapelle BerlinThe Heaven And Hell Orchestra + +6910732Andreas Berger (5)Swiss percussionist. Born in Thun, CH, he studied at the Richard-Strauss-Konservatorium in Munich, Germany, from 1990 to 1994. +Worked as percussionist at the state opera in Nuremberg. Germany. an der Staats-oper Nürnberg. SInce 1994, he's the percussion soloist with [a=Orchester Der Tonhalle Zürich].CorrectTonhalle-Orchester Zürich + +6911957Gemma DunneClassical violist.Needs VoteHallé Orchestra + +6914296Matija BizjanClassical bass vocalist, born in 1988 in Ljubljana, Slovenia.Needs VoteCappella Amsterdam + +6919002Lukas SteppGerman classical violinist, born 1989 in Stuttgart.Needs VoteStaatskapelle DresdenJunge Philharmonie Brandenburg + +6919636Stéphane PfisterClassical violinist.Needs VoteLe Concert D'Astrée + +6923737John Davies (32)Former chorister at Worcester Cathedral in England.Needs VoteChoir Of Worcester Cathedral + +6926445Magdalena SmoczyńskaClassical violinistNeeds VoteWarsaw Philharmonic Chamber OrchestraOrkiestra Symfoniczna Filharmonii Narodowej + +6930353Mark Hampson (2)British trombonist and tubistNeeds VoteMahler Chamber OrchestraSwonderful Orchestra + +6932044Alexander CazzanelliClassical hornistNeeds VoteStuttgarter PhilharmonikerHofkapelle Stuttgart + +6932085Marcio SoarèsClassical tenor vocalistNeeds VoteChoeur de Chambre de Namur + +6933175Tom Watson (19)British classical trumpeter, arranger, composer, and co-founder of/engineer at [l=Prozone Music]. +In 1997, he took a place at the [l527847]. Whilst still at college, he began to enjoy a varied professional freelance career. Member of the [b]Watford Symphony Orchestra[/b] and Musical Director for harpist [a=Catrin Finch]. +Commercially, he has worked with artists including [a=Elton John], [a=Paul McCartney], [a=Jarvis Cocker], [a=Pete Doherty], [a=Nick Cave] , [a=Beth Orton], [a=Grace Jones], [a=Ed Hardcourt], [a=Karl Jenkins], [a=Sarah Brightman], [a=Cast], and [a=Victoria Wood]. +In 2006, he formed [l=Prozone Music] with his brother [a=William Watson (3)]. +Son of [a=James Watson (2)].Needs Votehttp://watfordsymphonyorchestra.co.uk/TomWatson.htmlhttps://www.superbrass.co.uk/product/ob1-fanfarehttps://vgmdb.net/artist/22965T. WatsonThomas WatsonLondon Symphony OrchestraSinfonia Sfera Orchestra + +6940422Carl SiebelNeeds Major ChangesSiebel + +6941236Maria SawerthalViolinist born in 1981 and founding member of the Trio FrühstückNeeds Votehttp://triofruehstueck.com/mariaCamerata Academica SalzburgTrio Frühstück + +6942338Adela FrasineanuClassical violinist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerMayseder Quartett + +6944147Esther SeitzClassical cellist.Needs VoteMinnesota Orchestra + +6944289BugianaNeeds VoteKenny BarronGeorge MrazLew TabackinHisao Anabuki + +6946839Matthew Knight (6)Classical trombonistNeeds VoteRoyal Philharmonic OrchestraSeptura + +6947475Alexandra OsborneClassical violinist.Needs VoteSydney Symphony Orchestra + +6954107Ángel García JermannSpanish violoncello player.Needs VoteOrquesta Sinfónica de RTVE + +6954108Miguel EspejoMiguel V. Espejo PlaSpanish clarinet player.Needs VoteOrquesta Sinfónica de RTVE + +6954762Stewart BlakeSaxophone player.Needs VoteSy Oliver And His Orchestra + +6956163Albert B. TownsendNeeds VoteAl TownsendAlbert TownsendRoy Eldridge And His Orchestra + +6956164Melvin SaundersDrummer.Needs VoteMel SaundersSaundersRoy Eldridge And His Orchestra + +6956165Lucius FowlerCredited as guitar player.Needs VoteLike FowlerLucky FowlerLuke FowlerRoy Eldridge And His Orchestra + +6956222Richard Dunlap (3)Trombone player.Needs VoteRoy Eldridge And His Orchestra + +6956223James Thomas (37)US jazz trumpeter active in the mid-40s.Needs VoteJim ThomasRoy Eldridge And His Orchestra + +6956623Matthias RanftGerman classical cellistNeeds VoteBamberger Symphoniker + +6957039Leonard Frey Maibach Léonard Frey-MaibachLéonard Frey-Maibach (born 1991) is a French cellist.Needs VoteL'Orchestre De La Suisse RomandeGewandhausorchester LeipzigGewandhaus-Quartett Leipzig + +6959654Dave's Harlem HighlightsJazz group from the early 1930's. +They had one release under the alias Harlem Hot Shots ("St. Louis Blues" on Electradisk 1931) and one as Memphis Stompers ("Somebody Stole My Gal" on Electradisk 1930).Needs VoteDave Nelson's Harlem HighlightsHarlem Hot ShotsMemphis StompersBuster BaileyDanny BarkerSam AllenWayman CarverWilbur De ParisSimon MarreroGlyn PaqueCharles FrazierDave Nelson (4)Gerald HobsonMelvin HerbertHarry Brown (15)Jack Bradley (4) + +6960925Domenico Orlando (2)Domenico Orlando (born 1979) is an Italian oboist.Needs Votehttps://www.domenicoorlando.it/Gewandhausorchester Leipzig + +6960929Geremia IezziAntonio-Geremia IezziItalian classical hornist. Born in 1987 in Pescara, Italy. +He graduated from the [l290263]. A member of the [a=Orchestra Mozart] since 2006. In February 2013, he joined the [a=Philharmonia Orchestra]'s horn section.Needs Votehttps://www.facebook.com/geremia.iezzihttps://open.spotify.com/artist/7Emh8k0ET4EO7ptDIIOLeJhttps://music.apple.com/mv/artist/geremia-iezzi/1292835300http://www.frenchhornmagazine.com/2018/04/intervista-geremia-iezzi-interview.htmlhttp://www.corno.it/Membri/GeremiaIezzi/Geremia_Iezzi.htmlhttps://vgmdb.net/artist/23316Antonio Geremia IezziLondon Symphony OrchestraPhilharmonia OrchestraOrchestra MozartOrchestra Città ApertaPentarte Ensemble + +6960931Andrea ZuccoClassical bassoonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +6961715Jean-Claude VelinFrench violinist and violist, studied under [a1342774] in Saint-Maur, under [a2433785] at [l1014340] and under Dorothy Delay at [l959262].Needs VoteOrchestre De ParisStaatskapelle BerlinThe Metropolitan OperaModern Art Sextet + +6962466Andrzej BudejkoClassical bassoonist, born in 1963 in Warsaw, Poland.Needs VoteOrkiestra Symfoniczna Filharmonii NarodowejPolish Chamber Orchestra + +6962467Mariusz OczachowskiPolish classical bassoonist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +6963216Andrew Peebles (2)Trombonist who's known to have played in the Los Angeles Philharmonic Orchestra. Born 1931, Died 2017.Needs VoteAndrew S. PeeblesLos Angeles Philharmonic Orchestra + +6963269Alexia CammishBritish classical horn player.Needs Votehttps://maslink.co.uk/client-directory?client=CAMMA1&https://londonserenata.com/bioBBC Symphony OrchestraThe Gallimaufry Ensemble + +6966849Martin AngererMartin Angerer (born 1977 in Graz, Austria) Austrian trumpet player.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksEnsemble Wiener CollageGrazer Symphonisches OrchesterNoPhilBrass + +6968304Marie-Paule FaytClassical vocalistNeeds VoteMarie-Paule FaylChoeur de Chambre de Namur + +6970527Diana MathewsViola player pursuing a performing career as soloist, chamber and orchestral musician.Needs Votehttp://www.diana-mathews.co.uk/Diana MatthewsLondon Symphony OrchestraLondon Contemporary OrchestraLongbow + +6970746Rafael AngsterClassical bassoonist, born in 1992.Needs VoteRafaël AngsterOrchestre Philharmonique De StrasbourgEnsemble Ouranos + +6971571Patrik HoferAustrian classical trumpeter.Needs VotePatrick HoferRundfunk-Sinfonieorchester Berlin + +6971657Wolfgang GürtlerWolfgang Gürtler (11 April 1947 in Vienna, Austria) is an Austrian classical double bassist. He was a member of the [a754974] from 1977 to 2012. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraThe Vienna String Quintet + +6972167Riccardo PisaniItalian classical tenor vocalistNeeds Votehttps://concertoscirocco.wordpress.com/about/membres/singers/870-2/Choeur de Chambre de NamurCoro "Color Temporis"Ensemble Festina LenteAccademia D'ArcadiaRicercare AnticoEnsemble Quadriga MusicaBiscantoresSchola Cantorum BarensisDramatodía + +6972568Kammarkörens DamerArtist used to signify the soprano and alto parts of [a1210845], i.e. the ladies.Needs VoteKammarkören + +6976146Alexander PinderakAlexander Pinderak is a German tenor and guitarist.Needs VotePinderakChor der Staatsoper DresdenWiener StaatsopernchorHofmusikkapelle WienSolisten Der Wiener Volksoper + +6976263Dmitri HochlovRussian conductor. + +probably same as [a=Dmitry Khokhlov]Needs Vote + +6976324Haden AndrewsTenor VocalistNeeds VoteTaverner Choir + +6977720Jam Session At The RiversideAll-star ensemble that recorded the LP [m=659782]. Needs VoteJam Session At RiversideColeman HawkinsMilt HintonJerry JeromeUrbie GreenOsie JohnsonCharlie ShaversArt RyersonBilly ButterfieldLou McGarityEarle WarrenArvell ShawPeanuts HuckoLou Stein + +6978559Jérôme VavasseurFrench classical countertenor vocalistNeeds VoteChoeur de Chambre de Namur + +6978563Matthieu Le LevreurClassical baritone vocalist.Needs VoteChoeur de Chambre de NamurEnsemble Jacques ModerneDoulce MémoireLe Miroir De Musique + +6978565Maxime MelnikBelgian classical tenor vocalistNeeds VoteChoeur de Chambre de Namur + +6978566Estelle LefortClassical soprano vocalist.Needs VoteChoeur de Chambre de Namur + +6978567Camille HubertClassical soprano vocalist.Needs Votehttps://www.academie-auderghem.be/wp2015/wp-content/uploads/2019/09/Chant-Hubert-Camille-2019.pdfChoeur de Chambre de NamurVox Luminis + +6982699Richard FomisonBritish classical trumpet player. + +Richard Fomison studied the trumpet at the Royal Academy of Music under the tuition of Ray Allen, Paul Archibald, Robert Farley and David Staff (natural trumpet). Engagements have included performances with the Philharmonia, City of London Sinfonia, Trafalgar Ensemble, Gabrielli Consort, Florilegium, Ex Cathedra, Academy of Ancient Music ,Orchestra of the Age of Enlightenment, Kings Consort, Freiburg Baroque Orchestra, Armonico Consort, Drottingholm Baroque, Belmont Ensemble of London, Australian Chamber Orchestra and Deutsche Kammerphilarmonie Bremen. + +Whilst being in demand as a freelance modern trumpet player, Richard is also a specialist on the Baroque Trumpet and has been invited as Principal Trumpet to perform with Canadian based group Tafelmusic, Santa Fe Baroque Orchestra (New Mexico) , Le Concert Lorrain and recorded Bach's B Minor Mass with the Leipzig Baroque Orchestra in partnership with the famous Thomas Kirche Boys Choir.Needs Votehttp://www.princeregentsband.com/richard-fomisonThe Academy Of Ancient MusicAustralian Brandenburg OrchestraGabrieli PlayersThe Harmonious Society Of Tickle-Fiddle GentlemenThe Prince Regent's Band + +6984442Nicole AlbringArt director, designer, and creative production manager for [l7703].Needs Vote + +6986526Fabian DirrFabian Dirr is a German classical clarinetist and Professor of clarinet.Needs VoteJunge Deutsche PhilharmonieDresdner Philharmonie + +6990442Sayaka ChibaSayaka Chiba = 千葉清加Japanese violinist / violist. Japanese: 千葉清加. +Assistant concertmaster of [a=Japan Philharmonic Symphony Orchestra].Correcthttps://www.sayakachiba.comhttps://www.facebook.com/%E5%8D%83%E8%91%89%E6%B8%85%E5%8A%A0official-237215927177107https://www.instagram.com/sayakachibahttps://vgmdb.net/artist/19583千葉清加Japan Philharmonic Symphony Orchestra + +6991996Pavel Popov (4)Russian classical violinist, born in 1975 in Novosibirsk .Needs Votehttps://www.balletandopera.com/people/pavel_popov/http://trio-victoria.narod.ru/popov.htmlhttps://www.mariinsky-theatre.com/company/orchestra/violin/pavel_popov/https://www.philharmonia.spb.ru/en/persons/biography/4004/Paval PopovПавел ПоповSt. Petersburg Philharmonic Orchestra + +6992019Oscar LampeBritish Violinist. Needs VoteRoyal Philharmonic Orchestra + +6992038William HulsonBritish classical violinist. +Former member of the [b]National Fire Service String Quartet[/b]/[b]London Fire Forces String Quartet[/b] and the [a=London Symphony Orchestra] (1946-1965).Needs VoteLondon Symphony OrchestraLeslie Jones And His Orchestra Of London + +6992041Aubrey ThongerClassical hornist., +Former Principal Horn with the [a=London Symphony Orchestra] (1928-1932), and the [a=BBC Symphony Orchestra] (1945-1949). He joined the [a=Philharmonia Orchestra] in 1949 as fifth horn, and then the [a=London Philharmonic Orchestra].Needs VoteA. ThongerLondon Symphony OrchestraBBC Symphony OrchestraRoyal Philharmonic OrchestraPhilharmonia OrchestraLeslie Jones And His Orchestra Of London + +6993332Bernhard JauchBernhard Jauch is a trombone player.Needs VoteDas Mozarteum Orchester SalzburgSüddeutsches Blechbläserensemble + +6993337Ralf ScholtesTrumpet player.Needs VoteSüddeutsches BlechbläserensembleOpera Brass + +6994466Woody Herman And His V-Disc All StarsNeeds Major Changes + +6995371Philippe TondrePhilippe Tondre (born in 1989) is a French oboist.Needs Votehttp://www.philippetondre.com/TondreThe Philadelphia OrchestraRadio-Sinfonieorchester StuttgartGustav Mahler JugendorchesterSWR Symphonieorchester + +6995372Gábor TarköviGábor Tarkövi is a Hungarian classical trumpet player and Professor of Trumpet at the [l1125469].Needs Votehttp://www.tarkoevigabor.com/Gabor TarköviGabór TarköviBerliner PhilharmonikerBerliner Sinfonie OrchesterSymphonie-Orchester Des Bayerischen RundfunksWürttembergische Philharmonie ReutlingenPro BrassWien-Berlin Brass Quintet + +6996534Caroline Tremblay (2)Canadian recorder instrumentalistNeeds Votehttps://www.carolinetremblaymusique.com/accueilLes Violons du RoyFlûte Alors! + +6997779Raúl BenaventRaúl Benavent SanabreSpanish percussionist, percussion teacher on University Alfonso X El Sabio, member of RTVE Orchestra. +Member of Neopercusión from 1996 to 2001.Needs VoteOrquesta Sinfónica de RTVENeopercusiónBanda Unió Musical De Torrent + +6997810Мирра ФурерМирра Львовна ФурерMirra Furer (1927–2003) was a Soviet violinist.Needs Votehttps://100philharmonia.spb.ru/persons/22020/М. ФурерLeningrad Philharmonic OrchestraLeningrad Chamber Orchestra + +6999107Eun-Hee JoeViolinistNeeds Votehttps://www.operadeparis.fr/en/artists/eun-hee-joeOrchestre National De L'Opéra De ParisQuatuor Monticelli + +6999697Cornelia GartemannClassical violinist, born in Herford, England. +Sister of violist [a2255208].Needs Votehttps://www.berliner-philharmoniker.de/en/about-us/orchestra/musicians/cornelia-gartemann/Berliner PhilharmonikerSwonderful Orchestra + +7003916Julianne Lee (2)Classical violinist, Assistant Principal, The Boston Symphony OrchestraNeeds Votehttps://www.bso.org/strings/julianne-lee-violin.aspxBoston Symphony OrchestraAtlanta Symphony Orchestra + +7003917Bracha MalkinViolinist.Needs VoteBoston Symphony Orchestra + +7004883John Morin (2)Sound EngineerNeeds Vote + +7004894Ala JojatuClassical violinist. Born in Moldova, Jojatu began her Bachelor of Music at Bucharest National University of Music where she studied with [a2140254].Needs Votehttps://www.bso.org/strings/ala-jojatu-violin.aspxBoston Symphony Orchestra + +7005188Oliver AldortCellist.Needs Votehttps://www.bso.org/strings/oliver-aldort-cello.aspxBoston Symphony Orchestra + +7005189Rebekah EdewardsVioloist.Needs VoteBoston Symphony Orchestra + +7005190Daniel Getz (2)American-born violist.Needs Votehttps://www.bso.org/strings/daniel-getz-viola.aspxBoston Symphony Orchestra + +7005192Danny Kim (3)American-born violoist.Needs Votehttps://www.bso.org/strings/danny-kim-viola.aspxBoston Symphony Orchestra + +7005461Sergey DubovRussian classical viola player, born in 1963.Needs VoteRussian National Orchestra + +7005710Benjamin Levy (2)Double BassistNeeds Votehttps://www.bso.org/strings/benjamin-levy-bass.aspxBen LevyBoston Symphony Orchestra + +7005864Marianne BoiesClassical trumpeterNeeds VoteLes Violons du RoyFanfarniente Della Strada + +7006900Suzanne NelsenBassoonist.Needs Votehttps://www.bso.org/woodwinds/suzanne-nelsen.aspxBoston Symphony Orchestra + +7006901Clint ForemanFlutist.Needs Votehttps://www.bso.org/profiles/clint-foremanBoston Symphony Orchestra + +7006902Michael Wayne (3)Clarinettist.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraThe University Of Michigan Symphony Band + +7007090Kyle Brightwellhttps://www.bu.edu/cfa/about/contact-directions/directory/kyle-brightwell/Classical percussionist. Lecturer in Music, Percussion; Director, Percussion Workshop, BU Tanglewood InstituteNeeds Votehttps://www.bu.edu/cfa/about/contact-directions/directory/kyle-brightwell/Boston Symphony Orchestra + +7007097Mark FabulichMusic librarian.Correcthttps://www.bso.org/librarians-managers-staff/mark-fabulich.aspxBoston Symphony OrchestraThe Colburn Orchestra + +7007098Thomas SidersAssociate Principal Trombonist at The Boston Symphony Orchestra.Needs Votehttps://www.bso.org/brass/thomas-siders.aspxBoston Symphony Orchestra + +7007099Rachel ChildersClassical (French) horn player.Needs Votehttps://www.bso.org/brass/rachel-childers.aspxhttps://necmusic.edu/faculty/rachel-childersBoston Symphony Orchestra + +7007101Matthew McKay (2)Classical percussionist.Needs Votehttps://www.bso.org/percussion-timpani-harp/matthew-mckay.aspxBoston Symphony Orchestra + +7007376Mary FerrilloViolist.Needs Votehttps://www.bso.org/strings/mary-ferrillo-viola.aspxBoston Symphony Orchestra + +7007377Kathryn SieversViolistNeeds Votehttps://www.bso.org/strings/kathryn-sievers-viola.aspxBoston Symphony Orchestra + +7007378Lisa Ji Eun KimViolinistNeeds Votehttps://www.bso.org/strings/lisa-ji-eun-kim-violin.aspxLisa KimBoston Symphony Orchestra + +7008318Mike RoylancePrincipal tuba, the [a=Boston Symphony Orchestra].Needs Votehttps://www.bso.org/profiles/mike-roylanceMike W. RoylanceBoston Symphony Orchestra + +7009568Susanne WettemannSusanne Wettemann is a German oboist and English horn player.Needs VoteGewandhausorchester LeipzigNeues Bachisches Collegium Musicum Leipzig + +7009569Cornelia GrohmannCornelia Grohmann is a German flute player. +Needs VoteGewandhausorchester Leipzig + +7009570Sebastian BreuningerSebastian Breuninger is a German violinist. He's the 1st concert master for the [a522210] since 2001. +Brother of [a6045554] and [a5944128]. +Needs VoteBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinGewandhausorchester LeipzigLucerne Festival Orchestra + +7009936Iris AhrensGerman classical bassist, born in 1967 in Bremen, Germany.Needs VoteRundfunk-Sinfonieorchester BerlinEast Side OktettSwonderful Orchestra + +7012056Wesley CollinsViolist.Needs Votehttps://www.bso.org/strings/wesley-collins-viola.aspxWesley P. CollinsBoston Symphony OrchestraThe Cleveland OrchestraAtlanta Symphony Orchestra + +7012057John PerkelLongtime classical music librarian for the Boston Symphony Orchestra and others. Librarian for the New York Symphonic from 1988 to 1999. He retired as orchestra librarian in 2016.Needs VoteNew York PhilharmonicBoston Symphony Orchestra + +7016271Libor MeislClassical violinist.Needs VoteWiener Symphoniker + +7023248Sarah Humphries (2)Oboe and recorder player.Needs Votehttps://www.tcmusick.com/sarah-humphrysThe SixteenThe City Musick + +7023278Manuel HofstätterAustrian classical percussionist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +7023280Martin ShultzAmerican classical violinist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +7023282Sigrid HolmstrandClassical flautist.Needs VoteBit 20 EnsembleBergen Filharmoniske Orkester + +7023793Gottfried KronfeldClassical bassoonist.Needs VoteGewandhausorchester Leipzig + +7023796Daniel FusterDaniel Fuster (born 1976) is a Spanish classical oboist and professor of oboe.Needs VoteGewandhausorchester LeipzigSymphonie-Orchester Des Bayerischen RundfunksOrchestra Del Teatro Regio Di TorinoSymphony Orchestra Of The Gran Teatre Del Liceu De Barcelona + +7026305Tessie PrakasSoprano vocalist.Needs VoteThe Choir Of Clare College + +7028694Thomas BilowitzkiThomas Bilowitzki is a German violinist.Needs VoteStaatsorchester StuttgartRadio-Sinfonieorchester StuttgartSWR Sinfonieorchester Baden-Baden Und Freiburg + +7028700Michael Kiefer (2)Michael Kiefer is a German oboist.Needs VoteStaatsorchester StuttgartOrchester der Bayreuther FestspieleOrchester Der Ludwigsburger Schlossfestspiele + +7028706Almut BeyerAlmut Lucia BeyerAlmut Lucia Beyer is a German violist.Needs VoteStaatsorchester StuttgartOrchester der Bayreuther Festspiele + +7030528Marjorie TremblayCanadian oboe instrumentalistNeeds VoteLes Violons du RoyOrchestre Métropolitain du Grand MontréalPentaèdre + +7032568Gerhard BerndlAustrian trumpet player, born in 1981.Needs VoteMaChlastBühnenorchester Der Wiener Staatsoper + +7032956Werner Neugebauer (2)Werner Neugebauer (born 1967) is an Austrian classical violinistNeeds VoteHyperion EnsembleCamerata Academica SalzburgMozart Quartett SalzburgTrio FontaineScaramouche Quartett + +7033776Lois LandsverkClassical violistNeeds VoteBamberger Symphoniker + +7034977Mary Ann BeattyClassical soprano vocalist and section leader of the Chicago Symphony Chorus.Needs VoteChicago Symphony ChorusBrian Conn New Music Ensemble + +7034978James P. YarbroughClassical tenor vocalist and section leader of the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034979Edward K. OsakiClassical tenor vocalist and section leader of the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034980Kip SnyderClassical bass vocalist and section leader of the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034981Charles M. OlsonClassical bass vocalist and section leader of the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034982Kathy KerchnerClassical alto vocalist and section leader of the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034983Gail FriesemaClassical alto vocalist and section leader of Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034984Elizabeth HareAssociate Artistic Administrator for the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7034994Sarah Herbert (2)Chorus Manager for the Chicago Symphony Chorus.Needs VoteChicago Symphony Chorus + +7038699Samuel RetaillaudClassical oboist.Needs VoteOrchestre Philharmonique De Strasbourg + +7038864Emmanuelle Deaudon Emmanuelle Deaudon-StaneseClassical violist.Needs VoteOrchestre Des Concerts LamoureuxOrchestre De La Garde Républicaine + +7040008József VörösHungarian classical trombonist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7040027Eva ZaïcikFrench classical mezzo-soprano vocalist.Needs Votehttps://evazaicik.com/ZaïcikÈva ZaïcikÉva ZaïcikLe Concert SpirituelLe Poème HarmoniquePygmalion + +7040149Domenico CorriDomenico Corri (4 October 1746 – 22 May 1825) was an Italian composer, impresario, music publisher, and voice teacher.Needs Vote + +7040950David PiaDavid Pia is a Swiss cellist. + Needs VoteMünchner RundfunkorchesterOrchester Des Staatstheaters Am Gärtnerplatz + +7041252Peter KoganAmerican drummer and percussionistNeeds Votehttp://www.peterkoganmusic.comMinnesota Orchestra + +7043267Gernot AdrionGerman violist, born 1969 in Hersbruck.Needs VoteAdrionJunge Deutsche PhilharmonieRundfunk-Sinfonieorchester BerlinBundesjugendorchester + +7043667Danaé MonniéFrench soprano vocalist.Needs VoteLe Concert SpirituelLes Talens Lyriques + +7045126Andrea MaccagnanClassical trombonist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +7046224Christian FrohnChristian Frohn (17 June 1964 in Vienna, Austria) is an Austrian violinist and violist. +Needs Votehttp://www.christianfrohn.at/Orchester Der Wiener StaatsoperWiener Philharmoniker + +7047434Traudel ReichGerman violinist, born in 1983 in Calw.Needs VoteMünchner Philharmoniker + +7049682Rui Sul GomesPortuguese classical percussionistNeeds VoteGulbenkian Orchestra + +7051762Andreas BuschatzGerman classical violinist, Needs VoteBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinGewandhausorchester Leipzig + +7052924Norman HallamBritish clarinettist and composer (1945-2025).Needs VoteBournemouth Symphony Orchestra + +7053322Jane HazelwoodClassical violist.Needs VoteSydney Symphony Orchestra + +7053420Hannes BiermannGerman contrabassistNeeds VoteOrchester der Bayreuther FestspielePhilharmonisches Staatsorchester Hamburg + +7055672Cahn-Chaplin OrchestraNeeds Major ChangesCahn Chaplin OrchestraSammy CahnSaul Chaplin + +7055832Mark DummAmerican violinistNeeds VoteThe Cleveland Orchestra + +7055838Joseph KleemanClassical double bassist.Needs VoteSaint Louis Symphony Orchestra + +7056441Freddy Johnson (5)US jazz pianist and vocalist. +Born 12 March 1904 in New York, died 23 March 1961 in the same city. He worked and lived in Europe from 1928 until 1944. Needs Votehttp://en.wikipedia.org/wiki/Freddy_JohnsonF. C. JohnsonF. JohnsonF. JohsonF.E. JohnssonFJFreddie JohnsonFreddy Johnson (?)G. JohnsonJohnsonBenny Carter And His OrchestraFreddy Johnson, Arthur Briggs & Their All-Star OrchestraFreddy Johnson & His OrchestraThe Coleman Hawkins TrioFreddy Johnson Et Son JazzFreddy Johnson And His HarlemitesSam Wooding And His OrchestraLouis Bacon Et Son OrchestreMister Freddy & His BandTe Roy Williams And His OrchestraFreddy Johnson & Lex Van Spall And Their OrchestraSam Wooding And His Chocolate Kiddies + +7056456Alexander NeubauerClassical clarinet and bass clarinet player.Needs VoteWiener SymphonikerEnsemble 20. JahrhundertFaltenradio + +7056475Kai MoserKai Moser (born 1944) is a German classical cellist. Son of [a3019747] and brother of [a459665]. +He was a member of the [a604396] from 1974 to 2009.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksWinkler QuartettRöhn-Trio + +7060991Edvin RönnqvistEdvin Albin RönnqvistFinnish clarinet player born on March 8, 1909 and died on May 1, 1962.Needs Vote + +7060992Erkki KiilasNeeds Major Changes + +7060993Urho NiemeläNeeds VoteRallineloset + +7060994Juho AlvasNeeds Major Changes + +7060995Jorma RoustiNeeds Major Changes + +7060996Vili PullinenNeeds Major Changes + +7062582Dejan PrešičekSaxophonistNeeds VoteEnsemble Modern + +7062738Johann KolroseNeeds Major Changes + +7062782Erika ÖhmanSwedish classical percussionist.Needs VoteHallé OrchestraUmeDuo + +7063054Leevi PaasonenNeeds Major Changes + +7063055Maila Rautio-MäkinenNeeds Major Changes + +7063057Valdemar KuutioNeeds Major Changes + +7063058Liisa KivekäsNeeds Major Changes + +7063812Tam Mott (2)Classical violinist. +2nd violin with [a=The Welsh National Opera Orchestra].Needs VoteThe Welsh National Opera OrchestraYoung Musicians Symphony Orchestra + +7063816Zanete UskaneViolin playerNeeds VoteŽanete UskaneBBC Symphony Orchestra + +7069205Ray Mitchell (7)Credited as vocalist.Needs VoteR. MitchellDuke Ellington And His Orchestra + +7072883Jean-Marc Leclerc (2)Canadian violinistNeeds VoteOrchestre symphonique de Montréal + +7076201Janse van RensburgViolinist. Based in England, UK.Needs VoteLondon Symphony OrchestraLondon Symphony Orchestra Strings + +7078657Seweryn ZapłatyńskiSeweryn ZapłatyńskiPolish flautist. Needs Votehttp://filharmonia.pl/artysci/seweryn--zaplatynskiOrkiestra Symfoniczna Filharmonii Narodowej + +7080699Ruben ToméTrombone player, born in Caldas da Rainha, Portugal.Needs VoteOrchester Der Deutschen Oper BerlinMr. SC And The Wild Bones Gang + +7084206Hugh Cherry (2)Classical string instrumentalist (Viola da Gamba, Theorbo, Lute)Needs VoteH.C.The Academy Of Ancient MusicRose Consort Of ViolsEnglish Consort Of Viols + +7085824Simon Van HolenDutch classical bassoonistNeeds VoteConcertgebouworkestEbony Band + +7085826Mirelys Morgan VerdeciaCuban classical violinistNeeds VoteMirelys MorganConcertgebouworkest + +7085827Sylvia HuangBelgian violinist, born in 1994. +She is the sister of [a7887832].Needs VoteConcertgebouworkestOrchestre Du Théâtre Royal De La MonnaieBelgian National Orchestra + +7085828Pierre-Emmanuel de MaistreFrench classical double bassistNeeds VoteConcertgebouworkest + +7088167Charles Gregory (7)Charles H. GregoryBritish horn player, and Professor of Horn. Died in 1985. +He was a member of the [a=London Symphony Orchestra] in the 1930s. Principal Horn of the [a=London Philharmonic Orchestra] from 1932 and made Chairman of the orchestra after it had gone into liquidation and the players took control in 1939. He was later an original member of the [a=Philip Jones Brass Ensemble] in 1951. He revived [a=The Boyd Neel Orchestra] (as [a=Philomusica Of London]). Principal Horn with the [a=Orchestra Of The Royal Opera House, Covent Garden]. Professor of Horn at the [l527847].Needs Votehttps://open.spotify.com/artist/1lzeOxjvrZfAkprZaJxSg5https://music.apple.com/ca/artist/charles-gregory-horn/301052555https://www.feenotes.com/database/artists/gregory-charles/London Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraPhilip Jones Brass EnsembleOrchestra Of The Royal Opera House, Covent GardenThe English Opera GroupLondon Baroque Ensemble + +7088892Gabriela Peña-KimViolinistNeeds VoteGabriela Peña KimLos Angeles Philharmonic OrchestraFort Worth Symphony Orchestra + +7090130Jens KreuterGerman classical hornistNeeds VoteGürzenich-Orchester Kölner PhilharmonikerGustav Mahler JugendorchesterEssener Philharmoniker + +7090135Christopher CorbettChristopher Corbett (born 1979) is a German classical clarinetistNeeds VoteDeutsches Symphonie-Orchester BerlinSymphonie-Orchester Des Bayerischen RundfunksGürzenich-Orchester Kölner PhilharmonikerOrchester Des Schleswig-Holstein Musik FestivalsBundesjugendorchester + +7096524Gerhard ProschingerGerhard Proschinger (11 April 1971 - 25 July 2017) was an Austrian trombonist. +Needs VoteDas Mozarteum Orchester Salzburg + +7097104Maria MelahaClassical soprano vocalist.Needs Votehttps://www.facebook.com/mariamelahasoprano/Estonian Philharmonic Chamber Choir + +7098888Guillaume HouckeBelgian classical countertenor, chorus master and organist, born Junze 10, 1987 in Montignies-sur-Sambre.Needs VoteChoeur de Chambre de Namur + +7098889Pierre DerhetBelgian classical tenor vocalistNeeds Votehttp://www.nordicartistsmanagement.com/artists/pierre-derhetChoeur de Chambre de Namur + +7099629Jörg KettmannJörg Kettmann (born 1956) is a German classical violinist.Needs VoteStaatskapelle DresdenDresdner PhilharmonieDresdner Kapellsolisten + +7099630Martina GrothGerman classical violinistNeeds VoteStaatskapelle DresdenDresdner Kapellsolisten + +7099631Matthias Meißner (2)German classical violinistNeeds VoteStaatskapelle DresdenDresdner KapellsolistenEnsemble Frauenkirche Dresden + +7099637Jörg FaßmannJörg Faßmann (born 1966) is a German classical violinist.Needs VoteStaatskapelle DresdenDresdner KapellsolistenEnsemble Frauenkirche DresdenDresdner StreichtrioDresdner Oktett + +7099639Ulrich MilatzUlirch Milatz (born 1968) is a German violist.Needs VoteStaatskapelle DresdenDresdner Kapellsolisten + +7099641Alexander ErnstGerman classical violinistNeeds VoteStaatskapelle DresdenDresdner Kapellsolisten + +7101415Florian Kirner (2)German trumpeterNeeds VoteMahler Chamber OrchestraWDR FunkhausorchesterWes10brass + +7101438Konstantin KrellClassical double bassistNeeds VoteGürzenich-Orchester Kölner PhilharmonikerKölner KammerorchesterWDR Funkhausorchester + +7102034Michael ScharfetterMichael Scharfetter is an Austrian double bassist. +Needs VoteDas Mozarteum Orchester Salzburg + +7103320Dick HilariusBassistNeeds VoteThe Ramblers + +7104865Natalie MichaudCanadian recorder instrumentalistNeeds Votehttps://ca.linkedin.com/in/natalie-michaud-27324a14Les Violons du RoyFiati Virtuosi + +7106200Ylenia MontaruliClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +7106201Roberto MansuetoItalian CellistNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa CeciliaWolferl Trio + +7106203Brunella ZantiClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +7106205Leonardo MicucciItalian ViolinistNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa CeciliaWolferl TrioOrchestra Da Camera "Società Dei Concerti di Bari" + +7106207Andrea SantarsiereClassical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +7106208Lavinia MorelliClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +7106209William Esteban Chiquito HenaoClassical violinist from Medellín, Colombia now based in Italy.Needs VoteWilliam ChiquitoWilliam Esteban ChiquitoOrchestra dell'Accademia Nazionale di Santa CeciliaHenao String QuartetArchi Di Santa Cecilia + +7106948Priscilla HerreidClassical oboe and dulcian player.Needs Votehttps://www.priscillaherreid.com/https://handelandhaydn.org/about/musicians/orchestra-and-chorus/priscilla-herreid/The Handel & Haydn Society Of BostonTempesta Di MarePiffaro, The Renaissance Band + +7110113Frederico ProjectoSpanish classical tenor vocalistNeeds VoteChoeur de Chambre de Namur + +7110114Kamil Ben Hsain LachiriClassical bass / baritone vocalistNeeds VoteBen Hsaïn LachiriKamil Ben Hsaïn LachiriChoeur de Chambre de Namur + +7111655Bill DoverEarly jazz trombonist.Needs VotePerry Bradford Jazz Phools + +7112976Karl Seegerswas a classical trumpet player, music educator and chamber virtuoso. +Born on December 23, 1897 in Suttdorf, died 1977 in HannoverNeeds VoteGewandhausorchester Leipzig + +7113741Dominik NeunteufelDominik Neunteufel is an Austrian double bassist.Needs VoteDas Mozarteum Orchester SalzburgPeter Madsen's Seven Sins Ensemble + +7118592Miguel Tantos-SevillanoJazz and classical trombonistNeeds Votehttps://www.tromboneprofiles.com/profile-miguel-tantos-sevillanoMiguel TantosThe English Baroque SoloistsVox LuminisI Gemelli (2) + +7120913Domenico CatalanoDomenico Catalano is a Swiss bass trombonist.Needs VoteDomenico CatalanaGewandhausorchester LeipzigSinfonieorchester BaselTonhalle-Orchester Zürich + +7121610Bob Jones (50)US trumpeter. + +Could be the same as [a=Bobby Lee Jones].Needs VoteRay Miller And His Orchestra + +7121613Pete PellezziEarly jazz trombonist.Needs VotePete PellizziOriginal Indiana FiveSt. Louis Rhythm Kings + +7122981Martin RienerAustrian trombonist, born in 1987.Needs VoteWiener SymphonikerWiener PhilharmonikerWiener VolksopernorchesterWiener Jeunesse OrchesterTrombone Attraction + +7122982Franz Winkler (2)Austrian tuba player.Needs VoteWiener SymphonikerThe Percussive Planet EnsemblePostmusik Linz Oberösterreich + +7126052Romain DavazoglouFrench TrombonistNeeds VoteOrchestre Des Concerts LamoureuxLes Arts Florissants + +7128283Johannes SchusterGerman hornistNeeds VoteGürzenich-Orchester Kölner Philharmoniker + +7129390László KutiHungarian classical clarinettist.Needs VoteKutiMünchner Philharmoniker + +7129520Franziska van OoyenClassical oboistNeeds VoteThe Czech Philharmonic Orchestra + +7131067Rebecca LeggettMezzo-soprano & Alto vocalist.Needs Votehttps://www.rebeccaleggett.com/https://www.facebook.com/becca.leggett/https://bach-cantatas.com/Bio/Leggett-Rebecca.htmThe Sixteen + +7131070Daisy WalfordBritish soprano vocalist.Needs Votehttps://www.daisywalfordsoprano.com/https://www.bach-cantatas.com/Bio/Walford-Daisy.htmLondon VoicesSansara (5) + +7131432Michelle TsengViolinistNeeds VoteLos Angeles Philharmonic Orchestra + +7131703Jérémie DelvertFrench tenor & bass vocalist.Needs Votehttps://www.olyrix.com/artistes/13846/jeremie-delvert/biographieLe Concert SpirituelChœur Marguerite Louise + +7132816Karl TrötzmüllerKarl Trötzmüller (5 July 1908 - 30 November 1982) was an Austrian violist, Viola d’amore and recorder player.Needs VoteWiener Symphoniker + +7133349Sarah White (7)ViolinistNeeds VoteRoyal Philharmonic Orchestra + +7135227Sebastian EybSebastian Eyb is an Austrian classical viola player.Needs VoteWest Australian Symphony OrchestraOrchester der Bayreuther FestspieleHong Kong Philharmonic OrchestraPhilharmonia ZürichLabyrinth Ensemble + +7136562Ulrich HaiderGerman hornistNeeds VoteMünchner Philharmoniker + +7137510Ralf KosubekRalf Kosubek is a German violist.Needs VoteRalf KobusekOrchester Der Deutschen Oper BerlinBerliner Streichquintett + +7139785Paco VarochSpanish classical flautist.Needs Votehttps://www.pacovaroch.com/Paco Varoch EstarellesMahler Chamber Orchestra + +7139808Andrei ShamidanovАндрей Шамиданов Russian classical bassoonist.Needs VoteRussian National Orchestra + +7139815Georgi AnichenkoClassical cellist.Needs VoteOrchestre Du Théâtre Royal De La MonnaieOrchestre Philharmonique Du LuxembourgEstonian Festival Orchestra + +7139817Maxim RubtsovМаксим РубцовRussian classical flautist.Needs VoteМаксим РубцовRussian National Orchestra + +7140084Markus KünzigGerman hornistNeeds VoteDeutsche Kammerphilharmonie Bremen + +7143999Pauline LeroyFrench mezzo-soprano & alto vocalist.Needs VoteLe Concert SpirituelLes Cris de ParisEnsemble Vocal Aedes + +7144915Emilio Aguilar (2)Argentinean tenor vocalistNeeds VoteEmílio AguilarNederlands KamerkoorMusica TempranaLe Nuove MusicheSeconda Prat!caCantus Modalis + +7144916Berend EijkhoutDutch baritone singer, born 1989.Needs Votehttps://www.berendeijkhout.nl/Collegium Vocale + +7144962Sophie WangTaiwanese violinist (* 1999 in Taiwan). In 2008, her family moved to Germany; she currently lives in Berlin.Needs Votehttps://en.sophiewang.de/deutschBoston Symphony Orchestra + +7145048Marie van RhijnFrench harpsichordist and vocal conductor.Needs Votehttps://marievanrhijn.com/Marie Van RhijnLes Arts FlorissantsLes Musiciens De Saint-JulienCappella MediterraneaTrio DauphineLes Épopées + +7147765Hayz (2)Nick HaywardNeeds Votehttps://soundcloud.com/nick-hayward-462938914Nico LussNick Hayward (2) + +7148120Adriana FerreiraClassical flautist.Needs Votehttps://www.adriana-ferreira.com/fr/Orchestra dell'Accademia Nazionale di Santa Cecilia + +7148166Patrick JeeCellist + +New York debut recital in November of 1998 at Weill Recital Hall at Carnegie Hall under the auspices of The Korea Society. +In May of 1999 he received his Masters of Music degree from the Yale School of Music under the tutelage of Aldo Parisot. +Jee has worked with members of the Emerson, Orion, Tokyo, and Vermeer Quartets along with other distinguished artists such as Emanuel Ax. Boris Berman, Claude Frank, David Shifrin, Janos Starker, and Isaac Stern.Needs VoteNew York Philharmonic + +7150975Analise KukelhanAnalisé Denise KukelhanCleveland, Ohio violinist. + +She received her bachelor of music degree from Rice University in Houston, Texas. She joined the first violin section of The Cleveland Orchestra in January 2015. She was previously a member of the first violin section of the North Carolina Symphony for two seasons, and has also been a member of the Akron Symphony Orchestra, Canton Symphony Orchestra, and the West Virginia Symphony. Needs VoteThe Cleveland Orchestra + +7152754Claudius MüllerClaudius Müller is a German horn player.Needs VoteStaatsorchester StuttgartMünchner RundfunkorchesterOrchester Des Schleswig-Holstein Musik FestivalsPhilharmonisches Orchester Der Hansestadt Lübeck + +7152867František BábušekFrantišek BábušekSlovak conductor. Needs VoteFrantišek BabušekSlovak Radio Symphony Orchestra + +7157029Seth QuistadAmerican trombonistNeeds VoteMcGill Jazz BandTonhalle-Orchester Zürich + +7160896Rinaldo dall'ArpaRinaldo dall'ArpaRinaldo dall'Arpa (b. late 16th century – 12 July 1603) was an Italian composer, singer, and harpist. He was a valuable member of Carlo Gesualdo's retinue, and accompanied him to Ferrara on the occasion of Gesualdo's marriage in 1594. He may have remained in Ferrara as a member of the Este court until its dissolution in 1598. He wrote at least two keyboard pieces which survive.Needs Votehttps://en.wikipedia.org/wiki/Rinaldo_dall%27Arpa?ArpaArpa (?)Rinaldo TrematerraRinaldo dell' ArpaRinaldo dell’Arpa + +7161917Kevin Owen (3)American classical (French) horn player.Needs VoteBoston Pops OrchestraBoston Modern Orchestra ProjectBoston Philharmonic OrchestraPortland Symphony OrchestraRhode Island Philharmonic Orchestra + +7163202Bas TreubClassical violinist.Needs VoteNetherlands Chamber OrchestraPhion + +7163379Torsten HoppeTorsten Hoppe (born in Dresden) is a German classical double bassist and violone instrumentalist.Needs VoteStaatskapelle DresdenOrchester der Bayreuther FestspieleStuttgarter PhilharmonikerLucerne Festival OrchestraBatzdorfer Hofkapelle + +7165198Lorenz Nasturica-HerschcowiciLorenz Nasturica-Herschcowici (born 1962 in Bucharest, Romania) is a Romanian violinist and former concertmaster for the [a261451] from 1992 to 2022.Needs Votehttps://www.mphil.de/personen/lorenz-nasturica-herschcowici.htmlLorenz NasturicaMünchner PhilharmonikerPhilharmonisches Oktett BerlinSuomen Kansallisoopperan OrkesteriTrio Celibidache + +7165764Nadia DebonoClassical violinist born in MaltaNeeds VoteRoyal Liverpool Philharmonic OrchestraNew Century Baroque + +7165766Pierre BoudevilleClassical bass vocalistNeeds VoteChoeur de Chambre de Namur + +7165768Céline RémyBelgian classical soprano vocalist, born in Marche-en-FamenneNeeds Votehttp://celineremy.be/Choeur de Chambre de Namur + +7165770Anicet CastelFrench classical bass vocalist born in OrléansNeeds Votehttps://www.bach-cantatas.com/Bio/Castel-Anicet.htmhttps://www.facebook.com/anicet.castelLes Arts FlorissantsChoeur de Chambre de NamurLes Cris de ParisLes Épopées + +7165776Josquin GestFrench classical countertenor vocalistNeeds VoteChoeur de Chambre de Namur + +7165968François DesforgesClassical percussionist.Needs VoteOrchestre National De FranceQUAI N°5 + +7168268Bernardo AltmannCellist. Born in Buenos Aires, Argentina. Member of New York Philharmonic from 1952 to 1996. +Passed away February 4, 2008.Needs VoteNew York PhilharmonicPhilharmonia String Quartet (2) + +7169064Jean-Sébastien Roy (2)Canadian violinistNeeds VoteOrchestre symphonique de Montréal + +7170716Oliver Schwarz (3)Oliver Schwarz is a German clarinetist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerDuisburger SinfonikerStudierende Der Folkwang-Hochschule, Essen + +7171689Rodney Stewart (2)Classical double bass player, and author (1932-2023). +Former member of the [a=London Symphony Orchestra] (1959-1960). His many achievements included simultaneously being a member of the [a=Philharmonia Orchestra] and the [a=London Philharmonic Orchestra]. Former chairman of the Philharmonia Orchestra; after he retired from being chairman, he stayed in the orchestra.Needs VoteLondon Symphony OrchestraLondon Philharmonic OrchestraEnglish Chamber OrchestraPhilharmonia OrchestraNorthern Sinfonia + +7171691David H. JonesClassical bassist.Needs VotePhilharmonia Orchestra + +7171692Robert Leighton (2)British classical viola player (1943-2004). +Professional musician who played the viola with the [a=Royal Philharmonic Orchestra]. +Second husband of [a=Hannah Gordon].Needs VoteRoyal Philharmonic OrchestraPhilharmonia Orchestra + +7171693Roger Clark (5)British hornist.Needs VoteRoger ClarkeRoyal Philharmonic OrchestraPhilharmonia OrchestraLondon Classical Players + +7171695Andrew Wickens (2)Classical violinist. +He was with the [a=BBC Concert Orchestra] initially and in 1972 he joined the [a=New Philharmonia Orchestra] (in 1977, it regained its former name [a=Philharmonia Orchestra]), from which he retired in 2009.Needs Votehttps://www.aahorsham.co.uk/content/classicalfolkhttps://dorsetcountymuseum.wordpress.com/tag/andrew-wickens/https://markjenningsmusic.com/events-diary-2013/Philharmonia OrchestraNew Philharmonia OrchestraBBC Concert OrchestraThe Paganini Duo + +7171697Colin CourtneyBritish clarinetist and clarinet teacher. Died in 2009 aged 74. +Studied at [l290263]. Principal Clarinet in one of the two orchestras then employed by [a=Sadler's Wells Opera Company] (until 1960). His teaching career also blossomed in the 1960s with his appointment to the woodwind staff at the Royal College, a post he held until his retirement, as well as, more recently, that of tutor to the clarinettists of the [a546443] at Uxbridge. +In 1959, he married [a2956159].Needs Votehttps://www.theguardian.com/theguardian/2009/aug/23/obituary-colin-courtneyBBC Symphony OrchestraPhilharmonia OrchestraLondon Wind OrchestraSadler's Wells Opera CompanyThe Carl Rosa Orchestra + +7171698Margaret LambBritish viola & violin player and teacher, born in Exeter, Devon, England, UK. +She was a member of the [a861263], and was later awarded a scholarship to the [l=Royal Academy of Music]. She went on to become Co-principal Viola with [a=The English National Opera Orchestra] for nine years before spending eight years playing with the [a=Philharmonia Orchestra]. She left the Philharmonia in 1995 to take up the post of Head of Strings at St Peter's school in York. Since being in York, as well as teaching the violin and viola, playing in [b]The York String Quartet[/b], and conducting student orchestras, she has continued to play the viola, freelancing with orchestras including the Philharmonia Orchestra, the [a=BBC Philharmonic], [a=The Manchester Camerata] and [a=Opera North]. In 2001, she founded a chamber orchestra, the [b]York Young Soloists[/b].Needs Votehttps://www.linkedin.com/in/margaret-lamb-75536b72/?originalSubdomain=ukhttps://www.yorkstringquartet.co.uk/abouthttps://yso.org.uk/history/biographies/maggie-lamb/https://www.familiesonline.co.uk/local/wiltshire/listing/violin-and-viola-tuitionPhilharmonia OrchestraNational Youth Orchestra Of Great BritainThe English National Opera Orchestra + +7171951Margaret Hunt (2)Viola player.CorrectPhilharmonia Orchestra + +7173127Siegfried JungSiegfried Jung is a German tuba player. He's married to [a7173126].Needs Votehttps://www.siegfriedjung.de/Orchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspiele + +7176287David HextClassical percussionist.Needs VoteHallé Orchestra + +7176477Oliver Janes (2)Classical clarinetist, born in Manchester, England.Needs VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +7177540Peter Becher (2)German violinistNeeds VoteMünchner PhilharmonikerYoung Romance OrchestraStaatskapelle Dresden + +7184633William Polk (2)American classical violinist.Needs VoteThe Philadelphia Orchestra + +7186645Thomas Garcia (5)Swiss classical violinistNeeds VoteTonhalle-Orchester ZürichThe European String Quartet + +7187268Irina RusuIrina Rusu-WeichenbergerIrina Rusu is a Moldovan violinist.Needs VoteDas Mozarteum Orchester Salzburg + +7188429Carey Bell (2)Classical clarinetist.Needs VoteSan Francisco Symphony + +7188652Isabelle SauveurFrench classical keyboard instrumentalistNeeds VoteLes Folies FrançoisesEnsemble L'Yriade + +7194249Carlos García Y Su Orquesta TípicaNeeds Major ChangesC. García Y Su Orquesta TípicaCarlos Garcia Y Su OrquestaCarlos Garcia y Su OrquestaCarlos García Y Su OrquestaOrq. Dir. Carlos GarcíaCarlos García + +7198213Madeline AdkinsAmerican violinistNeeds Votehttp://www.madelineadkins.net/aboutBaltimore Symphony OrchestraUtah Symphony OrchestraPro Musica Rara + +7202767Margreet RietveldDutch soprano vocalist, born in 1988.Needs Votehttps://www.margreetrietveld.com/Collegium VocaleLe Nuove Musiche + +7203064Corentin BordelotClassical violist.Needs VoteOrchestre National De FranceL'Orchestre National de Lille + +7204104Victor GrindelClassical oboist.Needs VoteL'Orchestre National de LilleOrchestre Philharmonique De Strasbourg + +7206470Arek TesarczykArek Tesarczyk was a Polish classical cellist. He passed away in June 2025.Needs VoteMinnesota OrchestraWinnipeg Symphony OrchestraThe American String Project + +7207823Emily Rowley JonesClassical soprano vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +7207936Juhana Fredrik GranlundNeeds VoteJ.F. GranlundJ.Fr. GranlundJohan Fredrik GrandlundJohan Fredrik Granlund + +7208684Felix Rumpf (2)Classical bass / baritone vocalist, born 1984 in Halle, GDR (now Germany).Needs Votehttp://felixrumpf.de/RumpfRIAS-KammerchorCollegium VocaleKammerchor StuttgartEnsemble Polyharmonique + +7209670Carlos Brito-FerreiraCarlos Alexandre Brito FerreiraPortuguese classical clarinetist. Born 18 November 1993 in Sao Nicolau, Porto. +Former 2nd Clarinet and Bass Clarinet Soloist at [a=Fundação Orquestra Estúdio]. Former E-flat & 2nd Clarinet soloist at [a703269] (joined February 2017). Principal Clarinet at both [a673061] and the [a=Philharmonia Orchestra].Needs Votehttps://www.carlosferreiraclarinet.comhttps://www.facebook.com/people/Carlos-Ferreira/1244143896https://www.concoursgeneve.ch/laureate/carlos_ferreirahttps://festival-salon.fr/en/artists/37-carlos-ferreirahttps://philharmonia.co.uk/bio/carlos-ferreira/https://www.claralaurent.fr/musique/carlos-ferreira-clarinettiste/Carlos Brito FerreiraCarlos FerreiraPhilharmonia OrchestraOrchestre National De FranceL'Orchestre National de LilleOrchestre Philharmonique De Monte-CarloFundação Orquestra EstúdioOrquestra Sinfónica da ESMAEOrquesta de Cámara de la Escuela Superior de Música Reina Sofía + +7211979Alexander StarkLithuanian classical violinist, born in Vilnius.Needs VoteIsrael Philharmonic OrchestraThe Stark Trio + +7212156Pablo StrongTreble vocalist (as a boy). Tenor singer. +Made his operatic debut as Cricket (The Cunning Little Vixens) in February 2001 with English National Opera. In Febrary 2003 he made his debut at The Royal Opera, Covent Garden.Needs Votehttps://www.eno.org/artists/pablo-strong/London Voices + +7214888Emmanuel RescheEmmanuel Resche-Caserta is a franco-italian baroque violin player born in 1988. He has recently created his own ensemble, [a=Ensemble Exit]Needs VoteEmmanuel Resche-CasertaLes Arts FlorissantsA Nocte TemporisEnsemble Marguerite LouiseEnsemble Exit + +7215426Vincent BurrowsClassical horn player. +He was a member of the [a=London Symphony Orchestra] (1953-1957).Needs VoteLondon Symphony OrchestraLondon Baroque Ensemble + +7215507Dashiel NesbittDashiel Stoner NesbittAmerican violist, born September 1, 1987.Needs VoteSveriges Radios Symfoniorkesterhr-Sinfonieorchester + +7218461Klaas van SlagerenDutch classical trombonistNeeds VoteMusica Amphion + +7220203Joseph VielandViolist (March 21, 1885 - September 27, 1972). +Played with the New York Philharmonic from 1930-1960.Needs Votehttps://archives.nyphil.org/index.php/artifact/0bc4f6bd-335f-40c2-b6b8-e778a80ab946-0.1https://www.nytimes.com/1972/09/28/archives/joseph-vieland.htmlJ. VielandNew York PhilharmonicDecca Little Symphony Orchestra + +7223106Natalia BinkowskaNatalia Binkowska is a classical violist. Born in Warsaw, Poland - now based in Vienna, Austria. +Needs VoteWiener SymphonikerAuner Quartett + +7226376Anna BastowBritish classical viola player. +She grew up in East Yorkshire and studied at the [l459222]. She then continued her viola studies in Linz, Austria. Soon after graduating, she spent five years as Co-Principal Viola of the [a=Bournemouth Symphony Orchestra] before joining the [a=London Symphony Orchestra] in 2011.Needs Votehttps://www.facebook.com/anna.green.524https://lso.co.uk/orchestra/players/strings.html#ViolasLondon Symphony OrchestraBournemouth Symphony Orchestra + +7226941Elle MariachiElle MariachiSongwriter, vocalist & producer from Scotland, UK. +Styles: Trance, Hard Trance, Dance/Electro +Also half of the duo The Rhetoriks alongside London-born rapper Jay Active. +Contact: elle@ellemariachi.comNeeds Votehttp://web.archive.org/web/20130528021839/http://www.ellemariachi.com/http://www.facebook.com/ElleMariachiMusichttp://www.facebook.com/elle.mariachihttp://www.instagram.com/ellemariachimusic/http://open.spotify.com/artist/16GJH7ZlDVulpvX4jJrnfYhttp://www.tidy.management/artists/elle-mariachi/ + +7227076David LootloetDavid LootvoetClassical harpistNeeds VoteOrchestre National De L'Opéra De Paris + +7229288Geneviève LeSecqFrench classical organistNeeds VoteOrchestre De La Société Des Concerts Du Conservatoire + +7229458Marianne SohlerGerman classical violinist, born in 1990Needs VoteStuttgarter Philharmoniker + +7231219State Street StompersJazz and blues recording group, that recorded three sides for Victor in 1928.Needs VoteTampa RedAlexander HillJimmy BertrandJunie Cobb + +7235881Cecilia RadicVioloncellistNeeds VoteOrchestra da Camera ItalianaEstrio + +7238816Federico MarchettiClassical violist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaHovercraft Ensemble + +7239829David TakenoTokyo-born British violinist.Needs Votehttps://www.gsmd.ac.uk/staff/david-takeno-fgsThe Academy Of St. Martin-in-the-Fields + +7241046Aisling O'DeaIrish violinistNeeds VoteScottish Chamber OrchestraBlack Glass EnsembleBlack Glass Strings + +7241255Peter MarschatPeter Marschat (born 31 August 1952 in Vienna) is an Austrian bassoonist.Needs VoteDie Wiener SängerknabenWiener SymphonikerWiener Volksopernorchester + +7243185Eliesha NelsonAmerican classical violist.Needs VoteThe Cleveland Orchestra + +7247919Mei-Ching HuangMei-Ching Huang is a classical violinist.Needs VoteMei Ching HuaMei Ching HuangThe Philadelphia OrchestraNew York PhilharmonicSan Diego SymphonyLucerne Festival OrchestraGrant Park Orchestra + +7249383Tadhg FitzgeraldVocalistNeeds VoteLibera + +7250225Björn KadenbachGerman classical trumpeterNeeds VoteDresdner PhilharmonieBremer Philharmonisches StaatsorchesterVox Luminis + +7250248Marc Gordon (5)Oboe and English horn player.Needs VoteSaint Louis Symphony Orchestra + +7250318Karl August Varnhagen von EnseNeeds Major Changes + +7250946Marc Jeanneret (2)Violist, born 1938. Retired, 2012Needs VoteBoston Pops OrchestraBoston Symphony Orchestra + +7251645William Brown (38)Saxophonist.Needs VoteBenny Carter And His Orchestra + +7258311Jose Luis IruretagoyenaSpanish chorus vocalistNeeds VoteOrfeón Donostiarra + +7258813Åse SolheimClassical violinist.Needs VoteBergen Filharmoniske Orkester + +7258945Jenny LewisohnBritish/Danish classical viola player. Originally from London, England, UK. +She studied at [l305416]. She has been a member of the [b]Hieronymus Quartet[/b] and the [b]Lipatti Piano Quartet[/b]. She has regularly performed with the [a=London Symphony Orchestra] and the [a=Aurora Orchestra]. Member of the [b]Kleio Quartet[/b] and [b]The Bilitis Trio[/b]. Artistic advisor and co-founder of the [b]Marryat Players Chamber Music Festival[/b] and Co-Artistic Director of the [b]Jigsaw Players Concert Series[/b].Needs Votehttps://jennylewisohn.co.uk/https://www.facebook.com/lewisohnhttps://twitter.com/jennylewisohnhttps://www.instagram.com/jennylewisohn/?hl=enhttps://www.vibratefestival.ro/jenny-lewisohn/https://www.imdb.com/name/nm12279042/London Symphony OrchestraLondon Contemporary OrchestraParallax Orchestra + +7259615Paul GraenerPaul Graener (11 January 1872 – 13 November 1944) was a German composer and conductor. +He composed numerous operas and orchestral works in the Romanticism style. +He was the conductor of Mozarteumorchester Salzburg from 1911 to 1913.Needs Votehttp://www.paul-graener.de/en/welcome.htmlhttps://en.wikipedia.org/wiki/Paul_GraenerGraenerP. GraenerDas Mozarteum Orchester Salzburg + +7266956Michael HusslaMichael Hussla is a classical cellist.Needs VoteOrchester Der Deutschen Oper BerlinBerliner Streichquintett + +7266958Juan Pastor (4)Juan Pastor is a classical violinist.Needs VoteOrchester Der Deutschen Oper BerlinBerliner Streichquintett + +7267051Lukasz BeblotŁukasz BebłotPolish double bassist.Needs VoteŁukasz BebłotPolish National Radio Symphony OrchestraOrkiestra Muzyki Nowej + +7271567Leon Bosch (2)Dutch classical clarinetist.Needs VoteLeo BoschLéon BoschWDR Sinfonieorchester KölnRotterdams Philharmonisch OrkestNederlands Philharmonisch Orkest (2) + +7273350Günther SzkokanGünther Szkokan (11 April 1939 - 23 December 2011) was an Austrian violist. He was a member of the [a754974] from 1965 to 2001.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Volksopernorchester + +7273769Jørgen SkadhaugeDanish bassistNeeds VoteOrchestre De L'Opéra De LyonViseværket + +7276788Helen Thomson (2)Helen ThomsonScottish freelance harpist based in Glasgow mainly playing with the [a835546] as well as other orchestras throughout the UK.Needs Votehttps://twitter.com/helenharpson?lang=enhttp://www.astrasound.co.uk/Helen ThompsonScottish Ensemble + +7276849Philippe PerottoClassical violinist.Needs VoteBerliner SymphonikerThe Composers' Orchestra Berlin + +7277511Soo-Kyung HongClassical cellist. Sister of [a7277510].Needs VoteDR SymfoniOrkestretTrio con Brio Copenhagen + +7282971Julie Thayer (2)Classical hornistNeeds VoteSaint Louis Symphony Orchestra + +7282994Peter Otto (5)German-born violinist. Now First Associate Concertmaster of [a547971].Needs Votehttps://www.clevelandorchestra.com/About/Musicians-and-Conductors/Meet-the-Musicians/M-S-Musicians/Otto-Peter/The Cleveland OrchestraSaint Louis Symphony OrchestraNashville Symphony Orchestra + +7283235Nils De DinechinFrench classical cellist.Needs VoteLe Concert SpirituelLes Musiciens De Saint-Julien + +7283601Francesco PoveriniViolin player.Needs VoteOrchestra da Camera Italiana + +7283602Chiara MorandiViolinistNeeds VoteThe Orchestra Della ToscanaOrchestra da Camera Italiana + +7284003Joe Wallace (10)Needs VoteDodo Marmarosa Trio + +7285069Alexandra Scott (2)English classical double bassist.Needs Votehttp://www.alexandra-scott.com/Symphonie-Orchester Des Bayerischen RundfunksMahler Chamber OrchestraEuropean Union Youth OrchestraRadio-Philharmonie Hannover Des NDRGustav Mahler JugendorchesterArcangeloUBS Verbier Festival OrchestraL'Accademia Giocosa + +7288342Sumire Kudo工藤すみれ (くどう すみれ Kudō, Sumiré)Classical cellistNeeds Vote工藤すみれNew York Philharmonic + +7288344Priscilla Lee (2)associate principal cello of the Philadelphia Orchestra. +2005 Avery Fisher Career Grant recipien; made her solo debut in 1998 with the Los Angeles Philharmonic. She was a member of Lincoln Center’s Chamber Music Society Two for three seasons, participated in the concert that opened New York’s Zankel Hall, and premiered Osvaldo Golijov’s Ayre with Dawn Upshaw in New York, Boston, London, and Paris. +Previously was the principal cello of Opera Philadelphia and the Chamber Orchestra of Philadelphia. +Ms. Lee studied with Ronald Leonard at the Colburn School of Performing Arts and with David Soyer at the Curtis Institute of Music. +She received her Master of Music (MM) degree from the Mannes College of Music, studying with Timothy Eddy. +Needs Votehttps://www.curtis.edu/academics/faculty/summerfest-faculty-bios/priscilla-lee/The Philadelphia OrchestraTrio Cavatina + +7288515Mati KõrtsMati Kõrts (born on January 27, 1962 in Tartu) is an Estonian opera singer (Tenor)Needs Votehttps://et.wikipedia.org/wiki/Mati_K%C3%B5rtsKõrtsKörts Mati + +7288519Valdek PõldClassical hornistNeeds VoteValdek PoldEstonian National Symphony Orchestra + +7288597Teele JõksEstonian mezzo-soprano vocalist, born November 11, 1975 in Tallinn.Needs VoteJöks Teele + +7289218Vincent PouchetClassical cellist.Needs VoteOrchestre National Du Capitole De Toulouse + +7290127Dávur Juul MagnussenDávur Juul MagnussenDávur Juul Magnussen (born 1986) is a Faroese Trombonist from Tórshavn, Faroe Islands, who now lives in Scotland.Needs Votehttps://en.wikipedia.org/wiki/Davur_Juul_MagnussenRoyal Scottish National OrchestraYggdrasil (8) + +7290309Kirsti LaitinenNeeds Major Changes + +7290537Sebastian WeyererSebastian Weyerer (born 1941) is a German conductor, composer, arranger and teacher.Needs VoteRegensburger Domspatzen + +7291008María Antonia RodríguezSpanish flute and piccolo player. First piccolo on Orquesta Sinfonica de Madrid (1986-1990), and first flute on Orquesta de RTVE since 1990. +Needs VoteMª Antonia RodríguezOrquesta Sinfónica De MadridOrquesta Sinfónica de RTVE + +7296411Varoujan BartikianArmenian classical cellist.Needs VoteGulbenkian OrchestraTrio Aeternus + +7304625Anton WeigertGerman classical violinist and violist.Needs VoteBamberger Symphoniker + +7305400Eric Picard (2)French cellist.Needs VoteÉric PicardOrchestre De ParisTrio Hoboken + +7305518Sabrina MaaroufiClassical flautistNeeds VoteOrchestre National De L'Opéra De Paris + +7305519Genevieve MeletGeneviève Mélet French classical violinist, born in 1978.Needs VoteOrchestre National De L'Opéra De ParisParis Mozart Orchestra + +7305524Philippe GiorgiClassical oboistNeeds VoteOrchestre National De L'Opéra De Paris + +7305525Isabelle Pierre (2)Classical flautistNeeds VoteOrchestre National De L'Opéra De Paris + +7305526Lise MartelClassical violinistNeeds VoteOrchestre National De L'Opéra De Paris + +7305531Tsuey-Ying TaiClassical percussionistNeeds VoteOrchestre National De L'Opéra De Paris + +7305532Carolyn Kalhorn-PeyrinClassical violinistNeeds VoteOrchestre National De L'Opéra De Paris + +7305533Yoori LeeSouth Korean Classical cellistNeeds VoteOrchestre National De L'Opéra De ParisÔ-CELLI + +7305664Gerhard HamannGerhard Hamann (27 January 1935 – 11 September 2000) was a German cellist and Professor at [l518015]. He was the son of [a573113] and the brother of [a525067].Needs VoteStockholms Filharmoniska OrkesterDanmarks Radios Symfoniorkester + +7308886Matti HeinoNeeds Major Changes + +7313442Norina SeminoNorina Semino (1901—1980) was a British cellist of Italian origins. She married cellist and conductor, Livio Mannucci, in 1928, and settled in the UK. Semino gave her debut radio broadcast performance in 1929 at Savoy Hill. Semino performed with the [a2874878] under [a1653619] and the [a2873287] under [a2994038] and [url=https://discogs.com/artist/2603886]Richard Austin[/url]. She was a member of the New London Trio, established in 1932 with violinist [url=https://discogs.com/artist/5416297]David Wise[/url] and pianist John Pauer, and the original member of [a=Zorian String Quartet] in 1942.Needs Votehttps://www.reidconcerts.music.ed.ac.uk/performer/semino-norina-1901-1980Philharmonia OrchestraBournemouth Municipal OrchestraHastings Municipal OrchestraZorian String Quartet + +7315070Madis EnsonEstonian tenor vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/madis-enson/Estonian Philharmonic Chamber ChoirRevalia Kammermeeskoor + +7324044Isabelle Lucas (2)Classical violinist.Needs VoteLe Concert D'AstréeFons MusicaeMaud Giguet-Vernhes + +7326679Francesca RussillSoprano.Needs VoteThe London Oratory Junior ChoirChoir of the London Oratory + +7327136Levis GarsonDouble bassist.Needs VoteRoyal Philharmonic Orchestra + +7327645Olivier Thiery (2)French classical double bassistNeeds VoteOlivier ThieryConcertgebouworkest + +7328299Alois SchlemerGerman hornist, born in Rosenheim.Needs VoteMünchner Philharmoniker + +7332306Brian Johnson (42)Classical double bass player.Needs VoteBrian JohnsonLos Angeles Philharmonic OrchestraOregon Symphony OrchestraThe Kansas City Symphony + +7333124Sergio BucheliSergio Bucheli SusarreyMexican native thorbo, lute and guitar instrumentalistNeeds VoteThe English Concert + +7333752Guy ComentaleClassical violinist.Needs VoteOrchestre Philharmonique De Radio France + +7333947Heather LeDoux GreenClassical violinist.Needs VoteNational Symphony Orchestra + +7335235Afendi YusufClassical clarinetist born in Addis Ababa, EthiopiaNeeds Votehttps://www.cim.edu/faculty/afendi-yusufThe Cleveland Orchestra + +7335279Lionel DesmeulesSwiss classical countertenor, keyboard instrumentalist and chorus-masterNeeds Votehttp://genevebaroque.ch/lionel-desmeules-organ/Choeur de Chambre de NamurEnsemble ClematisEnsemble Affetti Cantabili + +7336292Robert CürlisGerman classical percussionist.Needs VoteBamberger Symphoniker + +7342162Mariët KaasschieterDutch soprano VocalistNeeds Votehttps://marietkaasschieter.nl/Mariet KaasschieterNederlands Kamerkoor + +7342390Jeremy FindlayJeremy Findlay is a Canadian cellist.Needs Votehttp://www.jeremyfindlay.com/Camerata Academica Salzburg + +7343361Isabelle DesbatsClassical hornistNeeds VoteOrchestre National Bordeaux AquitaineEnsemble Les Surprises + +7343557Sergio LaduItalian classical bass / baritone vocalist born in SardegnaNeeds Votehttps://www.facebook.com/people/Sergio-Ladu/pfbid0ZBsXBEn7rayypJq8nAxTD5rBEsZEUN33KH88Qy64ENigsfdGHbTQS8hKTCyKGAYbl/Choeur de Chambre de NamurWorld Chamber ChoirLa Chapelle HarmoniqueCoro Ghislieri + +7344960John Porter (17)US bassistNeeds VoteOriginal Tuxedo Jazz Orchestra + +7351346Claudia StrenkertClaudia Strenkert (born 1970) is a German horn player. +Needs VoteClaudia StrenckertStuttgarter PhilharmonikerNDR SinfonieorchesterSWR Sinfonieorchester Baden-Baden Und FreiburgNDR Elbphilharmonie Orchester + +7351422Alberto PrandinaHorn player.Needs VoteOrchestra Di Padova E Del VenetoThe Lester Brass Project + +7352290Marjorie Jones (3)Teacher and gospel singer, originally from Portland Oregon, based in California. She was a member of [a656620] and [a753240] and has been teaching at Compton College and performed in churches in the greater Los Angeles area with the Christian Artists Associates.Needs VoteThe Roger Wagner ChoraleLos Angeles Master Chorale + +7352437Robert KamleiterGerman trombone player.Needs VoteBayerisches StaatsorchesterDie Stadtkapelle Rottenburg Am NeckarHessisches Staatsorchester WiesbadenOpera Brass + +7364404Alicia MonasteroSoprano vocalist.Needs VoteAlicia Monastero AkersChicago Symphony Chorus + +7365154Katarzyna KitrasiewiczKatarzyna Kitrasiewicz-LosiewiczPolish classical viola player.Needs VoteTonhalle-Orchester Zürich + +7366885Joe Johnson (52)Joseph JohnsonCello playerNeeds Votehttps://www.joecello.comhttps://www.tso.ca/performer/joseph-johnsonJoseph Johnson (12)Toronto Symphony OrchestraMinnesota OrchestraMilwaukee Symphony Orchestra + +7369955Haydn BeckFrank Denton BeckNew Zealander violinist and conductor. Born 16 March 1899 in Whanganui (or Wanganui), New Zealand - Died 17 April 1983 in Porto, Portugal. +A child prodigy who gave many concerts in New Zealand 1907-1909. Studied in Brussels 1912-1914 at [l1133062]/[l957772]. Came to Australia in 1920 and became a member of the [a3624089], later becoming deputy leader in 1922. Moved to JCW Productions and worked at the Brisbane Wintergarden Theatre 1924-1929. Joined the A.B.C. as a soloist, and later orchestra leader for The Australian tour of the Russian Ballet 1939-40. In 1938 became principal in the [a=Sydney Symphony Orchestra]. Various teaching positions 1940-1945. Orchestra leader for Colgate-Palmolive shows 1945-1947. First conductor of the [url=https://www.discogs.com/artist/7369956-Strings-Of-The-Civic-Symphony-Orchestra]Civic Symphony Orchestra[/url] in Sydney 1947-1952. Joined the [a=London Philarmonic Orchestra] and the [a=Philharmonia Orchestra] and, in 1949, became principal of the [a374006]. In 1956, he became principal with the [a=London Symphony Orchestra] and later went to Portugal, in the late 1950s. Leader of the [url=https://www.discogs.com/artist/736606-Orchestre-National-De-LOp%C3%A9ra-De-Monte-Carlo]Monte Carlo Opera House Orchestra[/url] string section during the 1960s.Needs Votehttps://www.nzherald.co.nz/whanganui-chronicle/news/museum-notebook-haydn-beck-a-child-violin-prodigy/DKFMOWAUNKEPGQCATQJFISLPTE/https://sonic-archaeology.com/tag/haydn-beck/https://paperspast.natlib.govt.nz/newspapers/WH19071114.2.79https://paperspast.natlib.govt.nz/newspapers/WC19071123.2.4.1https://trove.nla.gov.au/newspaper/article/18034375https://nla.gov.au/nla.obj-724547614/view?sectionId=nla.obj-725850117&partId=nla.obj-724565582#page/n11/mode/1upLondon Symphony OrchestraLondon Philharmonic OrchestraHallé OrchestraPhilharmonia OrchestraOrchestre National De L'Opéra De Monte-CarloSydney Symphony OrchestraN. S. W. State Conservatorium Of Music Opera School SingersStrings Of The Civic Symphony Orchestra + +7372026Janik MartensClassical cellist.Needs VoteOrchestre Du Théâtre Royal De La Monnaie + +7373094Alvin StapleDouble bass player.Needs VoteAlvinBruckner Orchestra LinzQuin Tête-à-TêteDie Österreichischen Salonisten + +7374601Adele FiorucciItalian singer.Needs VoteI Cantori Moderni di Alessandroni + +7378268David Rivière (2)French classical violinist.Needs VoteOrchestre National De France + +7378547Robert Mayer (8)Oboe player.Needs VoteChicago Symphony OrchestraChicago Symphony Woodwind Quintet + +7378880David Brubaker (3)American classical violinist, born in Tucson, Arizona.Needs Votehttps://www.minnesotaorchestra.org/about/who-we-are/musicians-soloists-conductors/orchestra-musicians/317-first-violin/672-david-brubakerHouston Symphony OrchestraMinnesota Orchestra + +7378881Sae ShiragamiClassical violinist.Needs Votehttps://www.clevelandorchestra.com/About/Musicians-and-Conductors/Meet-the-Musicians/M-S-Musicians/Shiragami-Sae/Sai ShiragamiThe Cleveland OrchestraHouston Symphony Orchestra + +7379574Françoise De MaubusFrench harpist.Needs VoteOrchestre Des Concerts Lamoureux + +7383072Marc RovettiViolinist +Joined the Philadelphia Orchestra en 2007; Assistant Concertmaster since 2009. Needs VoteThe Philadelphia Orchestra + +7384231Max HilpertMax Hilpert is a German horn player. +Needs VoteOrchester der Bayreuther FestspieleMDR SinfonieorchesterLeipziger HornquartettHeiner Rennebaum Doppelquartett + +7387659Govaart HachéBelgian classical tenor / countertenor vocalistNeeds VoteChoeur de Chambre de NamurPsallentesBachPlusPluto Ensemble + +7388952Teresa PerrettClassical alto singer.Needs VoteThe English Concert Choir + +7391057Iason KeramidisGreek classical violinist, born in 1985 in Kavala.Needs VoteMünchner Philharmoniker + +7391475Cornelis BomCornelis Anthonij BomCornelis Bom (1938-2023) was a Dutch luthier who built harpsichords from 1972. He worked with his son, [a15834971], at a workshop in Schoonhoven, Netherlands. Hubrecht Bom has continued the business.Needs Votehttps://bomharpsichords.com/enCornelis A. BomCornelius Bom + +7392618Rainer PehrischRainer Pehrisch is a German cellist.Needs VoteRainer PehrichOrchester der Bayreuther FestspieleNiedersächsisches Staatsorchester Hannover + +7393198Reiner Schmidt (2)Classical violistNeeds VoteSonare Quartet + +7393349Anna DõtõnaAlto vocalist.Needs Votehttps://www.elab.ee/inimene/14946/anna-dotona/biograafia/Estonian Philharmonic Chamber ChoirVox ClamantisEstonian Concert Choir + +7398288Sergej KhvorostukhinRussian classical violinistNeeds VoteGürzenich-Orchester Kölner Philharmoniker + +7398291Henrik RabienHenrik Rabien (born 1971) is German classical bassoon player.Needs VoteWDR Sinfonieorchester KölnGürzenich-Orchester Kölner Philharmoniker + +7398292Michael PeusMichael PéusMichael Péus (born 1963) is a German classical double bassist.Needs VoteWDR Sinfonieorchester KölnOrchester der Bayreuther Festspiele + +7404284Peter BussereauClassical violinist.Needs VoteBournemouth Symphony OrchestraBBC Concert Orchestra + +7406562William Johnson (23)US jazz guitaristNeeds VoteJelly Roll Morton's Red Hot Peppers + +7407803Martyn Jones (4)British classical violinist. +Co-leader of the [a=Bournemouth Symphony Orchestra] before moving to London to play in the [a=Philharmonia Orchestra] of which he became archivist and Chairman. +Father of [a=Karen Jones (3)], father-in-law of [a=Andrew Barclay], and brother of [a=Michael Jones (6)].Needs VotePhilharmonia OrchestraBournemouth Symphony Orchestra + +7409727Ilka van Der PlasViolinistNeeds VoteConcertgebouw Chamber Orchestra + +7409843Jonathan de la Paz ZaensClassical bass-baritone vocalist born in the Philippines.Needs Votehttp://www.bach-cantatas.com/Bio/Zaens-Jonathan.htmhttps://www.rias-kammerchor.de/ueber-uns/chormitglieder/bass/de-la-paz-zaens/index_ger.htmlJonathan E. D. Paz ZaensJonathan E. d. Paz ZaensJonathan E. de la Paz ZaensJonathan ZaensJonathan dela Paz ZaensRIAS-Kammerchor + +7409993Julita ForckPolish violinistNeeds VoteKammerakademie PotsdamSwonderful Orchestra + +7409995Karola HausburgClassical alto vocalistNeeds VoteRIAS-Kammerchor + +7412609Davina ClarkeBritish ViolinistNeeds Votehttp://www.davinaclarke.com/The English Baroque SoloistsThe Academy Of Ancient MusicThe Mozartists + +7415111Per IvarssonSwedish classical trumpeter.Needs Votehttps://stenastiftelsen.se/en/bidrag/per-ivarsson/Göteborgs Symfoniker + +7415831Thomas KiechleThomas Kiechle (born 1976 in Munich) is a German trumpet player. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksStaatskapelle BerlinBundesjugendorchesterBrass Quintet MünchenBRassensemble München + +7415838Stefan FaludiClassical cellist, born in 1976 in Neuss, Germany.Needs VoteMahler Chamber OrchestraBerliner Cellharmoniker + +7416453Dennis MichelDennis Michel is an American bassoonist. He was a member of the [a837562] from 1998 to 2022.Needs VoteDennis P. MichelChicago Symphony OrchestraThe Chicago Chamber Musicians + +7416456William WelterWilliam Welter is an American oboist. Principal Oboe of the [a837562] since 2018.Needs VoteChicago Symphony Orchestra + +7416477Nathaniel SilberschlagClassical hornistNeeds VoteThe Cleveland OrchestraThe New York Festival Brass Quintet + +7422670Liis-Helena VäljamäeEstonian violinist.Needs VoteEstonian National Symphony Orchestra + +7422887Peter LiangClassical violinist.Needs VoteHallé OrchestraRoyal Liverpool Philharmonic Orchestra + +7422888Philippa HeysNeeds VoteHallé Orchestra + +7422889Cameron CampbellViolistNeeds VoteHallé OrchestraPhilharmonia Orchestra + +7422890Michelle Marsh (2)Classical violinist. +1st violin of the [a=Hallé Orchestra].Needs VoteHallé OrchestraYoung Musicians Symphony Orchestra + +7422891Yi Xin SalvageClassical double bassist.Needs VoteYi Xin HanHallé Orchestra + +7423925Eva ÁlvarezEva María Álvarez González Spanish flute / piccolo player.Needs VoteOrquesta Sinfónica de RTVE + +7426547Grégory DecerfClassical bass vocalist, son of the organist [a=Firmin Decerf]Needs VoteChoeur de Chambre de Namur + +7426550Jean BallereauClassical bass vocalist.Needs VoteChoeur de Chambre de Namur + +7431012Steven GrossClassical horn player.Needs Votehttp://stevengrosshorn.comDr. Steven GrossAtlanta Symphony OrchestraCincinnati Symphony OrchestraNational Symphony OrchestraThe Santa Fe Opera Orchestra + +7431015Stephen UlleryClassical double bassist and teacher, born in Wapakoneta, Ohio, USA.Needs VoteCincinnati Symphony OrchestraRochester Philharmonic OrchestraCincinnati Chamber Orchestra + +7434688Amy YuleClassical flautist.Needs VoteHallé Orchestra + +7435270Richard RimbertClassical clarinetist.Needs VoteOrchestre National Bordeaux Aquitaine + +7436763Andrea SteinbergClarinetist.Needs VoteSüdwestdeutsches Kammerorchester + +7438326Bertrand BraillardCellist.Needs VoteB. BraillardOrchestre Des Concerts LamoureuxL'Orchestre National d'Ile De France + +7444782Hervé LafonFrench double bassist.Needs VoteOrchestre National Bordeaux Aquitaine + +7445341Fritz Leitermeyer Friedrich Alfred LeitermeyerFritz Leitermeyer (4 April 1925 - 8 February 2006) was an Austrian violinist and composer. He was a member of the [a754974] from 1946 to 1985.Needs VoteFritz LeitermeierOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +7445825Charlotte LeitnerAustrian soprano vocalist.Needs VoteWiener Staatsopernchor + +7446997Isabella UntererIsabella Unterer is an Austrian oboist.Needs VoteDas Mozarteum Orchester SalzburgGustav Mahler Jugendorchester + +7446998Willi SchwaigerWilli Schwaiger is an Austrian horn player. +Needs VoteDas Mozarteum Orchester Salzburg + +7447247Filipe AlvesFilipe Alves is a Portuguese trombonist.Needs VoteFilipe Alves PereiraRemix EnsembleStaatskapelle BerlinPhilharmonisches Staatsorchester HamburgEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +7448403Session At MidnightNeeds Major Changes + +7448404Count Basie EnsembleNeeds Major Changes + +7448405New Jazz SoundsNeeds Major Changes + +7458841Vince Wallace (4)American bass-baritoneNeeds VoteChicago Symphony ChorusGrant Park Chorus + +7459571Andreas KißlingAndreas Kißling is a German flute player. +Needs VoteStaatsorchester StuttgartStaatskapelle DresdenStuttgarter PhilharmonikerDeutsche Radio Philharmonie Saarbrücken Kaiserslautern + +7459575Teodor ComanClassical violist, born in 1965 in Bucharest. Romania.Needs VoteOrchestre National De FranceTrio À Cordes De Paris + +7459576Philippe LitzlerFrench classical trumpet and cornet player.Needs VoteTonhalle-Orchester Zürich + +7459667Bernhard KuryBerhard Kury (born 1966) is an Austrian flute player.Needs VoteStaatskapelle DresdenRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleDresdner PhilharmonieGustav Mahler JugendorchesterDresdner Kapellsolisten + +7462050Elayna DuitmanAmerican classical violinist.Needs VoteThe Cleveland Orchestra + +7464963Joachim ElserJoachim Elser is a German trombonist.Needs VoteDeutsches Symphonie-Orchester BerlinStaatskapelle BerlinOrchester der Bayreuther Festspiele + +7465163Martin LogarSlovenian tenor vocalist.Needs Votehttps://martinlogar.com/Cappella Amsterdam + +7472265Diem TranClassical violinist.Needs VoteDiem Truc TranOrchestre National Bordeaux AquitaineOrchestre De L'Alhambra + +7472941Saténik KhourdoïanClassical violinistNeeds Votehttps://www.satenikhourdoian.com/Saténik KhourdoianOrchestre Du Théâtre Royal De La MonnaieTrio Brancusi + +7475563George Stratton (2)George Robert StrattonBritish classical violinist, and Professor of Violin. Born in 1897 in Southgate, Middlessex, England, UK - Died in 1954. +He studied at the [l305416]. Former longtime member (1925-1952) & Leader (1937-1952) of the [a=London Symphony Orchestra]. In 1925, he formed and led the [b]Stratton String Quartet[/b] from which he withdrew in 1944 (after the War the group was re-founded as the [a=Aeolian String Quartet]). He also led the [a3009494] from its founding in 1934. He was Professor of Violin at the [l290263].Needs Votehttps://www.historyforsale.com/george-stratton-autograph-sentiment-signed/dc153859https://www.elgar.org/6ccnewQZ.htmGeorge StrattonLondon Symphony OrchestraGlyndebourne Festival OrchestraStratton Quartet + +7476335Garrett JohannsenTenor vocalist.Needs VoteChicago Symphony ChorusGrant Park ChorusBella Voce + +7476639Max PottagHorn player, teacher and composer/arranger. ( June 22 1876 in Eulo (Forst (Lausitz)) - November 22, 1970 in Indianapolis)Needs Votehttps://www.windsongpress.com/brass%20players/horn/Pottag.pdfhttps://de.wikipedia.org/wiki/Max_PottagPottagChicago Symphony Orchestra + +7479640Richard PolleClassical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7481538Maîtrise d'AntonyMaîtrise Sainte Marie d'AntonyChildren's choir composed of students from the Institution Sainte Marie in Antony, France. They were previously called [a4448542] at a time where only boys were included in the choir.Needs Votehttp://www.maitrise-antony.com/Maîtrise de Sainte Marie d'AntonyMaîtrise de Ste-Marie d'Antony + +7487067Benedict MitterbauerAustrian classical violist, born in 1994 in Vöcklabruck.Needs VoteBruckner Orchestra LinzLGT Young Soloists + +7488370Christian LofererChristian LofererChristian Loferer, geboren 1981, wuchs in Schleching/Chiemgau auf und erhielt seinen ersten Hornunterricht an der Musikschule Grassau bei Wolfgang Diem. Es folgten ein Hornstudium bei Johannes Ritzkowsky und Wolfgang Gaag in München. Die ersten Orchestererfahrungen sammelte er im Bayerischen Landesjugendorchester. Unter der Leitung von Claudio Abbado war er Mitglied im Gustav Mahler Jugendorchester, der Talentschmiede für europäische Orchestermusiker und dem Lucerne Festival Orchestra. Aushilfstätigkeiten führten Ihn zu den führenden deutschen Klangkörpern, als auch dem Tonhalle-Orchester Zürich, dem Mahler Chamber Orchestra, oder nach Washington an die National Opera, wo er in 3 RING-Zyklen mitgewirkt hat. Zusammen mit dem Bläserquintett PentAnemos ist er mehrfacher Preisträger internationaler Wettbewerbe. 2011/2012 folgte die Aufnahme in die Bundesauswahl Konzerte Junger Künstler. Seitdem konzertiert er mit dem Ensemble weltweit, wie in Zentralamerika, der Ukraine und Bolivien u.a. Er war langjähriges Gründungsmitglied der munich brass connection. 2005 folgte die Aufnahme in das Bayerische Staatsorchester. 2010 erweiterte er sein musikalisches Spektrum und ist seitdem zu Gast in Bands wie der Singer-Songwriterin Gudrun Mittermeier, den Banana fishbones, bei DJANGO3000 oder bei Konstantin Wecker. Ein weiteres großes Augenmerk Christian Loferers gilt dem Alphorn, mit dem er regelmäßig solistisch auftritt. + +Needs Votehttps://www.staatsoper.de/unser-haus/bayerisches-staatsorchester.htmlwww.munichoperahorns.comwww.pentanemos.deOpera Brass + +7489274Emma YoonClassical violinistNeeds VoteDeutsche Kammerphilharmonie Bremenhr-SinfonieorchesterEstonian Festival Orchestra + +7489275Juliane BruckmannGerman classical Contrabass & Violone instrumentalist and teacherNeeds VoteWeser-RenaissanceDeutsche Kammerphilharmonie BremenEstonian Festival OrchestraFranz Ensemble + +7490549Louis Armstrong's Jazz FourNeeds Major Changes + +7493193Piotr DomańskiPolish classical percussionist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7493194Krzysztof BednarczykPolish classical trumpeter, born in 1958 in Gostynin.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7493195Daniel KamińskiClassical percussionist.Needs VoteDaniel KaminskiOrkiestra Symfoniczna Filharmonii Narodowej + +7493196Marzena HodyrPolish classical violist, born in 1985.Needs VoteWarsaw Philharmonic Chamber OrchestraOrkiestra Symfoniczna Filharmonii Narodowej + +7493197Arkadiusz WiędlakBorn October 18, 1972 in Tarnowskie Góry. Polish tubist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7493198Piotr CegielskiClassical violinist and orchestra leader.Needs VoteOrkiestra Symfoniczna Filharmonii NarodowejОркестр Київського Театру Опери Та Балету Ім Т. Г. Шевченка + +7493199Piotr TadzikClassical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7494262Ottavia KortnerClassical violinist.Needs VoteOttavia KostnerSüdwestdeutsches Kammerorchester + +7495295Tanja ObalskiSoprano VocalistNeeds VoteNederlands Kamerkoor + +7495552Jonathan Hyde (3)Chorister with [a=Lincoln Cathedral Choir] and Bass VocalistNeeds VoteSt. John's College Choir + +7496506Ingrid LormandFrench classical violist, born in Toulouse.Needs VoteIngrid Lormand-PadieuOrchestre National De France + +7496583Jean-Christophe LamacqueFrench classical violinistNeeds VoteJ.C. LamacqueOrchestre Philharmonique De Radio FranceEnsemble Quentin Le Jeune + +7501885Evert-Jan SchuurDutch classical violinist.Needs VoteLa Chapelle RoyaleLa Grande Ecurie Et La Chambre Du RoyLa StagioneCappella ColoniensisHet Nederlands BegeleidingsorkestDas Neue Orchester + +7501895Ekkehart KleinbubClassical trumpet player, born in Stuttgart, Germany.Needs VoteRadio-Sinfonieorchester StuttgartStuttgarter KammerorchesterStuttgarter PhilharmonikerCappella Coloniensis + +7507587Callum Jennings (2)Canadian bassistNeeds VoteBergen Filharmoniske OrkesterSwonderful Orchestra + +7507599Yavor PetkovBulgarian bassoonist, born in 1980.Needs VoteIavor PetkovDeutsche Kammerphilharmonie BremenSwonderful Orchestra + +7509301Alexandre WormsFrench classical oboist.Needs VoteOrchestre National De France + +7509882Peter DykesBritish classical oboist.Needs VoteRoyal Scottish National Orchestra + +7513334David Kendall (7)Tuba playerNeeds VoteLondon Symphony Orchestra + +7516078Brad AnnisAmerican double bassist, born in Wisconsin.Needs VoteIsrael Philharmonic Orchestra + +7517984Bobby Burns (7)US clarinet, alto sax player active in the 30s/40sNeeds VoteMervin BurnsRobert BurnsMildred Bailey And Her OrchestraJack Purvis And His OrchestraAlec Wilder's Orchestra + +7520221Ben OdhnerAmerican classical violinist.Needs VoteThe Colorado Symphony OrchestraMinnesota Orchestra + +7521657Wei Lian HuangTaiwanese born soprano vocalistNeeds VoteWei-Lian HuangChoeur de Chambre de NamurScherzi Musicali + +7521661Gwendoline BlondeelClassical soprano vocalistNeeds Votehttps://www.gwendolineblondeel.com/BlondeelChoeur de Chambre de NamurScherzi MusicaliLa Chapelle HarmoniqueLes Épopées + +7523266Stephen Nicholls (4)British horn playerNeeds VoteRoyal Liverpool Philharmonic OrchestraYoung Musicians Symphony Orchestra + +7523385Katherine MackintoshClassical oboist.Needs VoteKatherine MacKintoshRoyal Scottish National OrchestraScottish Ensemble + +7523397Hayley ColleenHayley RamsayNeeds VoteHayley Coleen + +7523753Axel SchwesigClassical double bassist, born in 1962 in Stuttgart, Germany.Needs VoteEnsemble VariantiRadio-Sinfonieorchester StuttgartBachcollegium StuttgartEnsemble AvanceSWR Symphonieorchester + +7523755Ingrid Philippi-SeyfferGerman classical violist.Needs VoteIngrid PhilippiRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523756Alina AbelClassical violinist, born in 1971 in Pitesti, Romania.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523758Marin SmesnoiClassical cellist, born in Moldavia.Needs VoteRadio-Sinfonieorchester StuttgartRussian State Symphony OrchestraPhilharmonie Van AntwerpenSWR SymphonieorchesterPaian Trio + +7523759Arvid Christoph DornClassical double bassist, born in 1973 in Jena, Germany.Needs Votehttps://www.dorn-bass.de/Radio-Sinfonieorchester StuttgartJunge Deutsche PhilharmonieRundfunk-Sinfonieorchester BerlinSWR Symphonieorchester + +7523760Lukas FriederichLukas Friederich is a German classical violinist.Needs VoteOrchester der Bayreuther FestspieleSWR Symphonieorchester + +7523761Carl-Magnus HellingClassical violinist, born in 1974 in Turku, Finland.Needs VoteStaatskapelle DresdenRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523762Astrid StutzkeGerman classical double bassist.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523763Frederik StockClassical double bassist, born in 1971 in Frankfurt/Main, Germany.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523764Stefan BornscheuerClassical violinist and teacher, born in 1965 in Marburg, Germany.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523765Insa Andrea FritscheClassical violinist, born in Essen, Germany.Needs VoteInsa FritscheRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523767Sylvia SchniedersClassical violinist, born in 1970 in Lemgo, Germany.Needs VoteStaatsorchester StuttgartRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523768Gesa Jenne-DönnewegClassical violinist, born in 1968 in Freiburg, Germany.Needs VoteRadio-Sinfonieorchester StuttgartOrchester Des Schleswig-Holstein Musik FestivalsSWR Symphonieorchester + +7523772Andreas Kraft (2)Andreas Kraft (born 1961) is a classical trombone player and conductor.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleHR - BrassSWR Symphonieorchester + +7523773Helke BierClassical violinist.Needs VoteRadio-Sinfonieorchester StuttgartSWR Symphonieorchester + +7523774Teresa JansenClassical violist, born in 1963 in Düsseldorf.Needs VoteRadio-Sinfonieorchester StuttgartResidentie Orkest + +7523776Monika Renner-AuersClassical violinist, born in 1968 in Ulm, Germany.Needs VoteRadio-Sinfonieorchester StuttgartStuttgarter PhilharmonikerSWR Symphonieorchester + +7523777Felix von TippelskirchClassical double bassist.Needs VoteRadio-Sinfonieorchester StuttgartStuttgart WindsSWR Symphonieorchester + +7523780Silke Meyer-EggenClassical violinist.Needs VoteStaatsorchester StuttgartRadio-Sinfonieorchester StuttgartEnsemble Modern OrchestraSWR Symphonieorchester + +7523782Peter Lauer (4)Peter Lauer (born 1967) is a German classical violinist.Needs VoteRadio-Sinfonieorchester StuttgartOrchester der Bayreuther FestspieleSWR Symphonieorchester + +7526056Alessandro PotenzaItalian classical oboist, active from the 2000s.CorrectOrchestra Del Maggio Musicale Fiorentino + +7530981J. McDonaghJames MacDonaghIrish classical woodowind instrumentalist. Born in 1881 in Cloughjordan, Ireland - Died in 1931 or 1933. +He was a founder member of the [a=BBC Symphony Orchestra], in which he played cor anglais and oboe. He became first oboist and performer on the cor anglais with [a=British Symphony Orchestra]. He was a cor anglais player with the [a=London Symphony Orchestra] from 1920 to 1928. +Father of [a1970882] and younger brother of [a=Thomas MacDonagh].Needs Votehttps://www.macdonaghmuseum.ie/musical-legacy-of-the-macdonagh-family/https://inspiring-ireland.ie/object-detail/qn603j705London Symphony OrchestraBBC Symphony OrchestraBritish Symphony Orchestra + +7531015E. F. JamesEdwin Frederick JamesClassical bassoon player, circa early 20th century. +Founding member and Joint Principal Bassoon of the [a=London Symphony Orchestra] (1904-1921). +Brother of [a=Wilfred James] and uncle of [a=Cecil James].Needs VoteLondon Symphony Orchestra + +7531070Martin RonchettiBritish retired classical clarinetist and teacher. Born in Bedford, England, UK. +He studied at the [l527847]. On leaving he became Principat Clarinet in the [a=BBC Northern Symphony Orchestra] and later became Co-Principal clarinet in the [a=London Symphony Orchestra] for a year (1966). After several years freelancing in London, he became Principal Clarinet in the [a=BBC National Orchestra Of Wales], a position he held for +24 years. On retiring, in 1998, he has taught and coached in many colleges and schools.Needs Votehttps://stmichaelshitchin.files.wordpress.com/2016/03/img_0039.pdfLondon Symphony OrchestraBBC Northern Symphony OrchestraBBC National Orchestra Of Wales + +7531457Leopold BuchmannClassical violinist.Needs VoteWiener SymphonikerJohann Strauß-Ensemble Der Wiener Symphoniker + +7532348Wolfgang BreinschmidWolfgang Breinschmid (1967 in Vienna, Austria) is an Austrian classical flutist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerCamerata Academica SalzburgWiener Johann Strauss OrchestraWiener KammerorchesterOrchester Der Vereinigten Bühnen WienEnsemble 20. Jahrhundert + +7532349Stefan Neubauer (3)Austrian classical clarinetist.Needs VoteWiener VolksopernorchesterPhilharmonia Schrammeln WienEnsemble Wiener CollageEnsemble 20. JahrhundertBühnenorchester Der Wiener StaatsoperEnsemble Clarinettissimo + +7532586Gilbert Große BoymannGerman organist and musicologist, born 1947.Needs Votehttp://www.komponistenlexikon.de/komponisten.php?id=1504&name=grosse--boymann&vorname=gilbertGilbert Grosse BoymannGilbert Grosse-BoymannMusica Antiqua KölnMusica Fiata + +7534162Rudolf SchmidingerRudolf Schmidinger (15 July 1942) is a classical percussionist. He was a member of the [a754974] since 1979. Father of [a6087542]Needs VoteRudolf SchmiedingerOrchester Der Wiener StaatsoperWiener PhilharmonikerClemencic ConsortEnsemble KontrapunkteEnsemble 20. JahrhundertOrchestra Of The Österreichische Bundestheater + +7534201Timothy N. JohnsonTenor vocalistNeeds VoteTimothy JohnsonLe Concert Spirituel + +7538454Kenneth FreedKenneth Howard FreedKenneth Freed (27 January 1961 – 29 June 2025) was an American classical violinist and violist.Needs VoteKen FreedMinnesota OrchestraThe Manhattan String Quartet + +7543259Venâncio Rodrigues Dos Santos NetoBrazilian classical double bassist, born in Campinas in 1994.Needs VoteVenancio R Dos Santos NetoOrchestre National De France + +7545987Manuel PortaClassical violinistNeeds VoteRoyal Philharmonic Orchestra + +7545990Mark O'Leary (5)Classical bassistNeeds VoteLondon Symphony OrchestraPhilharmonia Orchestra + +7545991Ben WolstenholmeClassical double bassist.Needs VoteRoyal Philharmonic Orchestra + +7545994Rosemary WainwrightClassical violinist.Needs VoteRoyal Philharmonic Orchestra + +7545997Esther Kim (3)Classical violinist.Needs VoteRoyal Philharmonic Orchestra + +7545998Pamela FerrimanClassical violist.Needs VoteRoyal Philharmonic Orchestra + +7546000Ugnė TiskutėLithuanian classical violist and teacher.Needs Votehttps://www.ugnetiskute.co.uk/Ugne TiškutéUgne TiškutėRoyal Philharmonic Orchestra + +7546358Marc DamoulakisAmerican classical percussionist.Needs VoteThe Cleveland Orchestra + +7549009Ein Regensburger Domspatz Mit KlavierbegleitungNeeds VoteRegensburger Domspatzen + +7549094Nancy McRaeAmerican cellist, in the 1990's active for the New York Philharmonic.Needs VoteNew York Philharmonic + +7549440Tomasz KarwanPolish classical violist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7549443Justyna BogusiewiczPolish violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7549734Brendan Fitzgerald (5)Classical bassistNeeds VoteBrandon FitzgeraldSaint Louis Symphony OrchestraSeattle Symphony Orchestra + +7549758Elisa BarstonClassical violinist.Needs VoteSaint Louis Symphony OrchestraSeattle Symphony Orchestra + +7551506EDMasifNeeds Major Changes + +7553045Ursula SarntheinClassical violist.Needs Votehttps://ursulasarnthein.chTrio OreadeTonhalle-Orchester Zürich + +7554877Irene KokDutch classical cellist.Needs Votehttp://www.irenekok.com/en/Concertgebouw Chamber OrchestraTrio ImmersioChimaera Trio + +7555614Martin GromMartin Grom is a German horn player. +Needs VoteStaatsorchester StuttgartEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +7555865Cathrin KudelkaGerman classical violinist.Needs VoteTonhalle-Orchester Zürich + +7555866Katja FuchsSwiss classical viola player.Needs VoteTonhalle-Orchester Zürich + +7556043Joe Scott (22)Joseph ScaputoUS keyboardist, conductor, composer and arranger from New Jersey. Active in the 60s; stopped arranging in the early 70s. +Often associated with publisher [l=Jefmark Music] and producer [a=Roy Cicala].Correcthttps://www.songfacts.com/blog/writing/anatomy-of-an-arrangement-the-letter-by-the-arborshttp://repertoire.bmi.com/Catalog.aspx?detail=writerid&page=1&fromrow=1&torow=25&keyid=304688&subid=1https://www.ascap.com/repertory#ace/writer/28182097/SCOTT%20JOSEPHhttps://llsjuponline.com/llsjup_online/Catalog/CatalogCourses.aspx?InstructorID=39J ScottJ. ScottJ.ScottJoey ScottJoseph ScottScottJoe Scott and his Orchestra + +7556532Nathan Harrison (3)Classical bass vocalist.Needs Votehttps://twitter.com/nathansharrisonThe SixteenWillow Consort + +7562900Marzena MichałowskaBorn September 5, 1979 in Poznań. Polish classical soprano singer.Needs VoteOrkiestra Polskiego RadiaConcerto KölnConcerto PalatinoArte Dei SuonatoriIrish Baroque OrchestraGli Angeli GenèveWrocławska Orkiestra Barokowa{oh!} Orkiestra HistorycznaCantus Humanus + +7565436Siobhan KelleherBassistNeeds Votehttps://www.facebook.com/siobhan.kelleher.906Boston Pops Orchestra + +7566650Guido GualandiClassical oboist.Needs VoteEstonian National Symphony Orchestra + +7566654Yunna WeberClassical violin player, born in 1985 in St. Petersburg, Russia.Needs VoteYunna ShevchenkoStaatskapelle BerlinLucerne Festival OrchestraGustav Mahler JugendorchesterOrchestra Mozart + +7566655Johane Gonzalez SeijasClassical double bassist, born in Venezuela.Needs VoteJohane GonzalezJohanee GonzalezMahler Chamber OrchestraGustav Mahler JugendorchesterOrchestra MozartOrquesta Filarmónica De Gran Canaria + +7566660Manfred HeckingClassical double bassist and professor in medicine, born in Wiesbaden, Germany.Needs VoteMünchner PhilharmonikerWiener Philharmoniker + +7566661Mattia PetrilliClassical flautist, born in 1984 in Como, Italy.Correcthttps://soundcloud.com/mattia-petrilliOrchestra MozartOrchestra Del Maggio Musicale FiorentinoQuintetto Papageno + +7566668Miriam Olga Pastor BurgosClassical oboist and teacher, born in Cartagena, Spain in 1987.Needs VoteMiriam PastorMiriam Pastor BurgosConcertgebouworkestEuropean Union Youth OrchestraGustav Mahler JugendorchesterOrchestra Mozart + +7566672Paolo LambardiItalian violinist and teacher.Needs VoteEuropean Union Youth OrchestraGustav Mahler JugendorchesterOrchestra MozartEnsemble Alraune + +7566675Alberto CasadeiItalian cellist and composer.Needs Votehttp://www.albertocasadei.com/Rotterdams Philharmonisch OrkestOrchestra Mozart + +7568194Magdalena Loth-HillBritish-Polish classical violinist.Needs Votehttps://www.magdalenaloth-hill.com/Magda Loth-HillLa SerenissimaThe Academy Of Ancient MusicThe MozartistsConsone QuartetEnsemble Hesperi + +7569992Michele FattoriClassical bassoonist and teacher, born in 1982 in Trento, Italy.Needs Votehttp://www.michelefattori-bassoon.com/European Union Youth OrchestraIl Giardino ArmonicoGustav Mahler JugendorchesterOrchestra MozartIrish Baroque OrchestraSpira Mirabilis + +7570398Doris Steffan-WagnerClassical soprano vocalist and teacher, born 12 December 1964 in Freilassing, Germany.Needs VoteDoris SteffanCoro Della Radio Televisione Della Svizzera Italiana + +7570632Clara MesdagDutch alto vocalist and teacher.Needs Votehttp://www.claramesdag.nl/Nederlands Kamerkoor + +7572467Pierre-Guy le Gall WhiteClassical bass-baritone vocalist, born in San Francisco, USA.Needs VoteCappella AmsterdamDe Nederlandse Bachvereniging + +7572468Mieke van LarenClassical Mezzo-soprano & Alto vocalist and teacher, born in Rotterdam, Netherlands.Needs VoteCollegium VocaleCappella AmsterdamNederlands Kamerkoor + +7572469Marielle KirkelsDutch soprano.Needs Votehttp://www.mariellekirkels.nl/Cappella Amsterdam + +7572470Bart OenemaClassical Bass & Baritone vocalist and vocal coach, born in 1967 in Amsterdam, Netherlands.Needs VoteCappella Amsterdam + +7572471Christian van EsDutch Bass & Baritone vocalist, born 8 March 1979; died 29 January 2017.Needs VoteCappella Amsterdam + +7572472Marjo van SomerenMarjo van Someren, born Amersfoort, is a Dutch vocal soprano and teacher. She was educated at the Amersfoortse Muziekschool and the [l472103] (May, 1997). Marjo is connected to [a858441] and [a835650] of Gent, Belgium.Needs Votehttps://www.facebook.com/marjovan.somerenCappella Amsterdam + +7572848Thomas LeyendeckerClassical trombonist, born in Adenau, Germany in 1980.Needs Votehttps://www.facebook.com/thomas.leyendecker.5/?locale=de_DEBerliner PhilharmonikerBlechbläser-Ensemble Der Berliner PhilharmonikerBundesjugendorchester + +7572849Janusz WidzykClassical double bassist and teacher, born in Zywiec, Poland.Needs VoteBerliner PhilharmonikerBerliner Philharmonisches Streichquintett + +7573909Rachel Helleur-SimcockClassical cellist, born in Ipswich, England.Needs Votehttps://en.wikipedia.org/wiki/Rachel_HelleurRachel HelleurBerliner PhilharmonikerOrchester Der Deutschen Oper BerlinDie 12 Cellisten Der Berliner Philharmoniker + +7573910Guillaume JehlClassical trumpeter, born in Saint-Louis, France.Needs VoteBerliner PhilharmonikerBasler Sinfonie-OrchesterOrchestre National De FranceOrchestre National Bordeaux AquitaineBlechbläser-Ensemble Der Berliner PhilharmonikerWien-Berlin Brass Quintet + +7573911Krzysztof PolonekClassical violinist, born in Krakow, Poland.Needs VoteChristoph PolonekBerliner PhilharmonikerRundfunk-Sinfonieorchester BerlinOrchester Der Deutschen Oper BerlinDresdner PhilharmonieBerolina Trio + +7573912Fora BaltacigilClassical double bassist, born in Istanbul, Turkey. +Brother of [a1086440].Needs VoteBerliner PhilharmonikerMünchner PhilharmonikerNew York PhilharmonicMinnesota Orchestra + +7573913Ignacy MiecznikowskiClassical violist, born in Krakow, Poland.Needs VoteMiecznikowskiBerliner PhilharmonikerOpéra National De LyonCollegium Der Berliner Philharmoniker + +7573914Dorian XhoxhiClassical violinist, born in Tirana, Albania.Needs VoteBerliner PhilharmonikerDeutsches Symphonie-Orchester BerlinGewandhausorchester LeipzigGustav Mahler JugendorchesterBerliner Barock Solisten + +7574012Simon RösslerClassical percussionist, born in Schwäbisch Gmünd, Germany.Needs Votehttps://www.felsnerartists.com/artists/simon-roesslerBerliner PhilharmonikerEuropean Union Youth OrchestraOrchester Des Schleswig-Holstein Musik FestivalsPhilharmonisches Orchester Der Hansestadt LübeckBruckner Symphony Orchestra Stuttgart + +7574453Helena Madoka BergClassical violinist, born in 1984 in Berlin, Germany.Needs VoteBerliner PhilharmonikerOrchestre Mondial Des Jeunesses Musicales + +7574454Stanisław PajakClassical double bassist, born in Bielsko-Biała, Poland.Needs VoteStanislav PajakBerliner PhilharmonikerBamberger SymphonikerDresdner Philharmonie + +7574455Luis EsnaolaClassical violinist, born in Madrid, Spain.Needs VoteLuis Esnaola LópezBerliner PhilharmonikerPhilharmonisches Klavierquartett BerlinTonhalle-Orchester Zürich + +7574456Anna MehlinClassical violinist, born in 1994 in Düsseldorf, Germany.Needs VoteBerliner PhilharmonikerBerliner Barock SolistenDeutsche Streicherphilharmonie + +7574457Michael KargClassical double bassist, born in Amberg, Germany.Needs VoteBerliner Philharmoniker + +7574458Luíz Fïlíp CoelhoClassical violinist, born 14 November 1984 in Sao Paulo, Brazil.Needs Votehttps://en.wikipedia.org/wiki/Luiz_Filipe_CoelhoLuiz Felipe CoelhoLuiz Filipe CoelhoLuiz Fïlipe CoelhoLuíz FílipLuíz FïlípBerliner PhilharmonikerBerliner Philharmonisches Streichquintett + +7574459Václav VonášekClassical bassoonist, born in 1980 in Strakonice in the Czech Republic.Needs Votehttps://en.wikipedia.org/wiki/V%C3%A1clav_Von%C3%A1%C5%A1ekBerliner PhilharmonikerThe Czech Philharmonic OrchestraPrague PhilharmoniaGrand Valley State University Symphonic Wind Ensemble + +7574460Gunars UpatnieksClassical double bassist, born 8 October 1983 in Jelgava, Latvia.Needs Votehttps://en.wikipedia.org/wiki/Gunars_UpatnieksBerliner PhilharmonikerBergen Filharmoniske OrkesterLatvian National Symphony OrchestraBerliner Philharmonisches Streichquintett + +7574461Egor EgorkinClassical (piccolo) flautist, born in St Petersburg, Russia.Needs Votehttps://egorkins.com/Berliner PhilharmonikerLeningrad Academic Philharmonic Symphony Orchestra + +7576650Juhan Palm-PeipmanClassical violist.Needs VoteJuhan Palm-PeipmannEstonian National Symphony Orchestra + +7576671Woodwinds Section Of The National Symphony OrchestraNeeds VoteWoodwindsNational Symphony Orchestra + +7578158Sy SchafferNeeds VoteSy Oliver And His Orchestra + +7578516Robert Ross (18)German horn & Wagner tuba player.Needs VoteOrchester der Bayreuther Festspiele + +7578519Mairit MittClassical violist.Needs VoteEstonian National Symphony OrchestraEstonian Festival Orchestra + +7579247Martin LüdenbachBassistNeeds Votehttps://martinludenbach.com/#home-sectionMartin LudenbachRoyal Philharmonic Orchestra + +7579707François JeandetSwiss classical violist.Needs VoteLes Musiciens Du Louvre + +7579922James O'Toole (4)Violin and viola player.Needs VoteLa SerenissimaThe Academy Of Ancient Music + +7581332Rupert BirsakClassical violist.Needs VoteDas Mozarteum Orchester Salzburg + +7581333Stephan RuhlandStephan Ruhland (13 December 1952 - 15 November 2014) was a German double bassist and violone player. +Needs VoteDas Mozarteum Orchester Salzburg + +7581644Mechthild SchlaudClassical violist.Needs VoteBamberger Symphoniker + +7582121Martin OxenhamClassical singer (bass-baritone) born in England. +Oratorio soloist, recitalist. +St Paul's Cathedral Choir, London since 1990Needs Votehttp://www.oxenham.org.uk/Gabrieli ConsortThe Monteverdi ChoirSt. Paul's Cathedral ChoirGlyndebourne Festival Chorus + +7583899George-Cosmin BanicaRomanian classical violinist.Needs VoteTonhalle-Orchester Zürich + +7584042Franziska DallmannGerman flutistNeeds VoteRundfunk-Sinfonieorchester BerlinBerolina Ensemble + +7587727Peter Smith (57)Classical horn playerNeeds VoteLondon Symphony Orchestra + +7588883Gwenaëlle CleminoClassical soprano vocalist.Needs VoteLe Concert Spirituel + +7588884Pierre PernyClassical tenor vocalist, born in France.Needs VoteLe Concert SpirituelEnsemble Correspondances + +7588885Eugénie de MeyMezzo-soprano from Belgium.Needs Votehttps://www.eugeniedemey.com/Le Concert SpirituelEnsemble De CaelisLa Tempête + +7588886Pascal RichardinClassical tenor vocalist.Needs VoteLe Concert SpirituelLe Concert D'AstréeLe Poème Harmonique + +7588887Benjamin LescoatFrench classical violist.Needs VoteLe Concert SpirituelAmarillisLa FeniceLa Chapelle RhénaneL'Escadron Volant de la Reineensemble3 + +7588888Marion MallevaesMarion MallevaësClassical double bassist.Needs VoteLe Concert SpirituelLes Siècles + +7588889Clément DebieuvreClassical tenor & countertenor, born in 1992 in France.Needs Votehttps://www.clementdebieuvre.com/DebieuvreLe Concert SpirituelEnsemble Les SurprisesLes Épopées + +7588890Marianne BylooMezzo-soprano.Needs VoteLe Concert Spirituel + +7588891Matthieu CamilleriFrench classical violinist.Needs Votehttp://matthieucamilleri-impro.fr/Le Concert SpirituelAmarillisLa FeniceLes Récréations + +7588892Aude FenoyFrench soprano vocalist.Needs VoteLe Concert Spirituel + +7588893Ana MeloClassical clarinetist.Needs VoteLe Concert SpirituelLe Concert de la Loge + +7588894Marc ScaramozzinoClassical countertenor.Needs VoteLe Concert SpirituelChoeur de Chambre de NamurChœur Marguerite Louise + +7588895Jean-Baptiste AlcouffeClassical bass vocalist.Needs VoteLe Concert Spirituel + +7588897Koji Yoda (2)Classical violinist, born in 1983 in Chiba, Japan.Needs VoteLe Concert SpirituelLes PaladinsLa TempêteOrchestre De L'Opéra Royal + +7588898Simon BaillyClassical bass vocalist.Needs VoteLe Concert Spirituel + +7589246David Campbell (36)Australian Double bassist.Needs VoteDave CampbellSydney Symphony Orchestra + +7591279Juan Pechuan RamirezSpanish oboist, now based in Germany.Needs VoteOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper BerlinOrquesta Sinfónica de RTVEOrchestra Mozart + +7592242Fabian BolkeniusGerman oboistNeeds VoteFabian BolekniusStuttgarter Philharmoniker + +7592316V. D.V. GuerraCongasNeeds VoteDizzy Gillespie And His Orchestra + +7592401James W. Brown (2)OBE awarded British classical French horn player, and Professor of French Horn. Born 1928 - Died 1992. +[b]Not to be confused with the British oboist/cor anglais player [a=James Brown (10)][/b]. +[b]For the Atlanta, GA based US hornist, please check [a=James Brown (11)][/b]. +He recorded all Mozart's Horn Concertos with [a=The Virtuosi Of England]. Principal French Horn of the [a=Royal Philharmonic Orchestra]. Assistant Principal Horn of the [a=London Symphony Orchestra] (1977-1992). He was Professor of French Horn at the [l527847], and Chairman of a management company that ran the [a=London Chamber Orchestra]. +Father of [a=Jennifer Brown (3)].Needs Votehttps://www.imdb.com/name/nm10718695/J. BrownJames BrownJames Brown Management Ltd.James Brown, OBEJim BrownJimmy BrownДжеймс БраунДжеймс Браун, OBELondon Symphony OrchestraLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe Alan Tew OrchestraThe Virtuosi Of EnglandPolished Brass Of LondonLondon Wind SoloistsThe Wind Virtuosi Of England + +7592448Julienne MbodjéGerman classical soprano & alto vocalistNeeds VoteRIAS-Kammerchor + +7593595Charbel MattarClassical bass-baritone vocalist.Needs Votehttp://charbelmattar.com/Chorus Of The Royal Opera House, Covent GardenGlyndebourne Festival Chorus + +7593857Mark O'Brien (8)Classical clarinetist.Needs VoteCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +7593859Margaret CookhornClassical bassoonist, born in Birmingham, England.Needs Votehttps://www.margaretcookhorn.com/Margaret CookhonCity Of Birmingham Symphony OrchestraBirmingham Contemporary Music Group + +7596024Elisabeth WiklanderSwedish classical cellist, born in 1981.Needs VoteLondon Philharmonic OrchestraNederlands Philharmonisch Orkest (2) + +7596033Joanna TrzcionkowskaPolish classical violinistNeeds VoteJoanna TzrcionkowskaOrkiestra Symfoniczna Filharmonii NarodowejNederlands Philharmonisch Orkest (2) + +7596034Marc SpeetjensDutch classical trumpeter.Needs VoteMark SpeetjensNetherlands Chamber OrchestraNederlands Philharmonisch Orkest (2)Flexible Brass + +7596050Philip DingenenBelgian classical violinist.Needs VoteNetherlands Chamber OrchestraConcertgebouw Chamber Orchestra + +7596051Theun van NieuwburgDutch classical timpanist / percussionist and teacher.Needs VoteFreiburger BarockorchesterNetherlands Chamber OrchestraCircle PercussionNederlands Philharmonisch Orkest (2) + +7598351Anna Vasilyeva (2)Classical violinist, born in 1986 in St. Petersburg, Russia.Needs VoteOrchestre De Chambre De LausanneGustav Mahler Jugendorchester + +7600352Matthieu PetitjeanClassical oboist.Needs VoteOrchestre Philharmonique De Monte-Carlo + +7600353Franck LavogezClassical bassoonist.Needs VoteOrchestre Philharmonique De Monte-Carlo + +7602351Nigel Cox (3)TrombonistNeeds VoteScottish Chamber Orchestra + +7602363Nicola Mazzanti (2)Italian classical piccolo player. Served as Solo Piccolo in the [a=Orchestra Del Maggio Musicale Fiorentino] from 1988.Correcthttp://www.piccoloflute.itOrchestra Del Maggio Musicale Fiorentino + +7602386Robert Ashworth (2)Horn playerNeeds VoteBob AshworthThe Academy Of Ancient MusicCollegium Musicum 90 + +7604019Hans-Ludwig RaatzClassical cellist, born in 1985 in Rochlitz, Germany.Needs VoteDresdner PhilharmonieDresdner KapellsolistenErzgebirgische Philharmonie Aue + +7604020Zsuzsanna Schmidt-AntalHungarian classical violist, born in 1969.Needs VoteStaatskapelle DresdenDresdner Kapellsolisten + +7604025Helmut Fuchs (2)Classical trumpet player, born in 1984 in Oberndorf, Austria.Needs VoteStaatskapelle DresdenDresdner KapellsolistenThe Percussive Planet EnsemblePhil Blech Wien + +7604592Sarah PonderAlto vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +7604593Emily Price (5)American mezzo-soprano vocalistNeeds VoteChicago A CappellaChicago Symphony ChorusGrant Park Chorus + +7604958Johnny Allen (19)US jazz drummer.Needs VoteJimmie Noone's Apex Club Orchestra + +7606073Helen Roberts (5)British classical cornettist.Needs Votehttps://www.hmsc.co.uk/our-team/helen-roberts-cornett/The SixteenHis Majestys Sagbutts And CornettsThe Gonzaga Band + +7607422Hendrik Jacobs[b]Hendrik Jacobs[/b] (ca.1629 — 1704, Amsterdam) was a Dutch luthier and maker of violins and other related bowed stringed instruments. Despite his celebrated status among the leading 17th-century luthiers in Holland, the maker's biography remains largely unknown. Authors of the early reference literature often claimed that Jacobs spent his youth and learned the oeuvre in Italy; most contemporary researchers agree it's more likely that Hendrik resided and worked in Amsterdam for his entire life, simply following the renowned Cremona tradition based on available instruments and technical drawings that widely circulated across the continental Europe. + +In his early period, from circa 1650 to the late 1670s, Hendrick Jacobs, indeed, followed the [i][url=/artist/7534119]Amati[/url][/i] models very closely, albeit with slightly wider F-holes. Gradually, with more experience and refined craftsmanship, Jacobs began showcasing a more original style. After 1685, the luthier was increasingly influenced and inspired by his stepson, apprentice, and eventual successor, [b][url=/artist/14714935]Pieter Rombouts[/url][/b] (1667—1728/40) — thus, adopting the equally popular and iconic [i][url=/artist/7593741]Stainer[/url][/i] outline. A relatively broad selection of the instruments by Hendrik Jacobs survived, including violins, small violins, violas & violoncellos (to a lesser extent), as well as rarer varieties, such as viola da braccio, bass viol, bass viola da gamba, and pochettes (so-called "dance master's violins" or "kit violins"). According to John Dilworth, however, most of the cellos attributed to Jacobs likely were built by Rombouts; reportedly, he also continued using his teacher's labels for at least a decade after Hendrick's death. + +[i]Labels[/i] +➭ Small, narrow rectangular, printed in heavy, [i]Garamond[/i]-like serif typeface: +[b]𝐇ENDRIK 𝐉ACOBS ME FECIT +IN 𝐀MSTERDAM 16__[/b]Needs Votehttps://tarisio.com/cozio-archive/browse-the-archive/makers/maker/?Maker_ID=309https://amati.com/maker/jacobs-hendrik/https://mimo-international.com/MIMO/search.aspx?SC=DEFAULT&QUERY=Hendrik+Jacobs#/https://www.rijksmuseum.nl/en/collection/object/Bass-Viol-and-Bow--7ca412395dbd012b6ffa4f3ff2f76882https://collections.ram.ac.uk/IMU/#/details/ecatalogue/397Hendrik Jacobs, AmsterdamHendrick Jacobs + +7608524Carl Smith (26)Classical Alto & Tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +7609444Ayako OyaClassical violist, born in Tokyo, Japan.Needs VoteBasler Sinfonie-OrchesterOrchestre De L'Opéra De Lyon + +7612275Riina ErinClassical cellist.Needs VoteEstonian National Symphony Orchestra + +7613058Lauri MetsvahiLauri Metsvahi is a percussionist in the Estonian National Symphony Orchestra. He has a bachelor’s degree in classical percussion from the Estonian Academy of Music and Theatre (2012) and a master’s degree from the Royal College of Music in Stockholm (2015) where he also received a diploma in solo percussion in 2018. Between 2016-19 Lauri was the principal percussionist of the Swedish Wind Ensemble.Needs Votehttp://laurimetsvahi.eu/Estonian National Symphony OrchestraEstonian Festival Orchestra + +7613973Magda StevenssonViola player.Needs VoteDR SymfoniOrkestret + +7614551Herrman BaumannClassical hornistNeeds VoteConsortium Musicum (2) + +7616388Emanuele UrsoItalian band leader, and swing and classical horn player, active from the 2000s.Needs VoteEmanuele Urso Big BandOrchestra Del Maggio Musicale FiorentinoI Solisti Della Filarmonica Della Scala + +7619468Jessie FellowsClassical violinist.Needs VoteSan Francisco Symphony + +7620388François LugueClassical hornist.Needs VoteOrchestre National Du Capitole De Toulouse + +7620392Hugo BlacherFrench trumpet player, born 1985 in Toulouse.Needs VoteOrchestre National Du Capitole De ToulouseToulouse Wind Orchestra + +7620411Aymeric FournesAymeric FournèsFrench trombonist & sackbuttist.Needs VoteA. FournesL'Orchestre National de LilleOrchestre Philharmonique De Radio FranceToulouse Wind Orchestra + +7620415Damien-Loup VergneClassical double bassist.Needs VoteOrchestre National Du Capitole De ToulouseToulouse Wind Orchestra + +7620607Peter Cook (17)British Sound EngineerNeeds VotePeter Cooke + +7625420Johanna FuchsJohanna Fuchs (1983 - 17 April 2017) was a German violinist. She was a member of the [a578737] from 2008 to 2017. +Needs VoteDresdner SinfonikerStaatskapelle DresdenStaatskapelle WeimarDresdner Kammerorchester + +7628513Cezary RembiszClassical bassoonist.Needs VotePolish National Radio Symphony Orchestra + +7628525Karol NasiłowskiPolish classical double bassist.Needs VoteOrkiestra Symfoniczna Filharmonii Im. Mieczysława Karłowicza W SzczecinieThe Polish Sinfonia Iuventus OrchestraDR SymfoniOrkestretThe Danish National Chamber Orchestra + +7629733Daniele CiccoliniClassical violinist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +7631174Leopoldo ThompsonArgentinian tango double bassist, guitarist and composer (Buenos Aires, 1890 - 21 August 1925)Needs Votehttps://www.todotango.com/english/artists/info/2462/Leopoldo-ThompsonThompsonJuan Carlos Cobián Y Su Orquesta TípicaOsvaldo Fresedo Y Su Orquesta TípicaJulio de Caro Y Su Orquesta TípicaCuarteto Típico Criollo "La Armonía" + +7631569Tom Klausen (2)Tom KlausenNorwegian oboist b. July 18, 1927, d. May 28, 1980.Needs Votehttps://no.wikipedia.org/wiki/Tom_KlausenT. ClausenTom ClausenOslo Filharmoniske OrkesterKringkastingsorkestretHans Majestet Kongens GardeDen Norske BlåsekvintettForsvarets Stabsmusikkorps + +7632321Nikita NaumovClassical double bassist, born in Novosibirsk, Russia.Needs Votehttps://www.nikitanaumov.com/Scottish Chamber OrchestraLondon Conchord EnsembleBenedetti Baroque Orchestra + +7632322Simo VäisänenClassical double bassist.Needs VoteSimo VaisanenSimo VäisanenLondon Symphony Orchestra + +7632324Katy Jones (2)Katy Jones née PryceEnglish classical trombonist and Senior Tutor in Trombone. +From 2001 to 2004, she was second trombone with the [a=BBC National Orchestra Of Wales]. Then she became one-fifth of [a=The Fine Arts Brass Ensemble], before moving to become Co-Principal Trombone (the first female brass principal in the history of the orchestra) in the [a=London Symphony Orchestra] (2007-2012). After leaving the LSO, she became the principal trombone of the [a374006]. +Senior Tutor at the [l459222] since 2015. +Wife of [a=Christian Jones (8)].Needs Votehttps://katyjonestrombone.co.uk/https://www.facebook.com/katy.jonestrombone.1https://twitter.com/fineartskatyhttps://www.instagram.com/kjtrombonebreathe/https://open.spotify.com/artist/13kzWRdnxX6xrmrX7HGrEehttps://music.apple.com/us/artist/katy-jones/467349234?l=zhhttps://www.feenotes.com/database/artists/jones-katy-1979-present/https://www.nyo.org.uk/profiles/44/team_viewhttps://www.rncm.ac.uk/people/katy-jones-2/Katy PryceLondon Symphony OrchestraHallé OrchestraBBC National Orchestra Of Wales + +7633058Dara MoralesClassical violinistNeeds VoteThe Philadelphia Orchestra + +7634779Cécile LucasFrench classical violinist.Needs VoteLe Concert D'Astrée + +7636191Alex KidneyClassical bass vocalist.Needs VoteLondon Symphony Chorus + +7636193Andrew Fuller (5)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636196Claire HusseyClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +7636199Damian DayClassical bass vocalist.Needs VoteLondon Symphony Chorus + +7636203Yoko HaradaClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636204Simon GoldmanClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636207Gina BroderickClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636208Peter SedgwickClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636209Linda Evans (4)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +7636213Paul AllattClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636214Susannah PriedeClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636215Alastair MathewsClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636219Matt FernandoClassical tenor vocalist.Needs VoteMatthew FernandoLondon Symphony Chorus + +7636228Lis SmithClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636236Vanessa KnappClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636239Liz ReeveClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +7636240Maggie OwenClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +7636242Carole RadfordClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +7636243Aoife McInerneyClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636251Richard Street (2)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636254Kuan HonClassical soprano vocalist.Needs Votehttps://www.kuan0.com/BBC Symphony ChorusLondon Symphony Chorus + +7636255Gavin BuchanClassical bass vocalist.Needs VoteLondon Symphony Chorus + +7636261Malcolm Taylor (5)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636265Andy Chan (2)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +7636268Lucy FeldmanClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +7636270Owen HanmerClassical bass vocalist, former chairman of the [a839085].Needs VoteLondon Symphony Chorus + +7636272Amanda FreshwaterClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636273John Graham (23)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +7636275Jane MorleyClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +7636277Thomas FeaClassical bass vocalist.Needs VoteLondon Symphony Chorus + +7636279Jo Buchan (2)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +7636284Mikiko RiddClassical soprano vocalist, born in Japan.Needs VoteLondon Symphony Chorus + +7636298Alan RochfordClassical bass vocalist.Needs VoteLondon Symphony Chorus + +7636299Robert GarbolinskiClassical bass vocalist.Needs VoteLondon Symphony Chorus + +7636302Maggie DonnellyClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7636305David AldredClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +7636311Elisabeth IlesClassical alto vocalist.Needs VoteLondon Symphony Chorus + +7637474Dag Anders EriksenViolinist. + +possibly same as [a=Dag Eriksen (2)]Needs VoteDag A. EriksenBergen Filharmoniske Orkester + +7638147Elisabeth BlomClassical soprano vocalist and conductor, born 31 August 1976 in Tholen, Netherlands.Needs Votehttps://www.facebook.com/elisabeth.vanduijn.1Cappella BredaNederlands Kamerkoor + +7638150Mónica MonteiroClassical soprano vocalist, born in 1982 in Figueira da Foz, Portugal.Needs Votehttp://www.monicamonteirosoprano.com/Nederlands KamerkoorLe Nuove Musiche + +7638151Florian JustClassical Bass VocalistNeeds Votehttps://www.florianjust.com/Nederlands Kamerkoor + +7638152Varvara TishinaClassical soprano vocalist, born in Novgorod, Russia.Needs Votehttp://varvaratishina.com/Groot OmroepkoorNederlands Kamerkoor + +7640114Bläserquintett Der Staatskapelle DresdenWind ensemble of the [a578737]. + +Also known as "Bläsersolisten der Staatskapelle Dresden"Needs VoteBläsersolisten Der Staatskapelle DresdenFritz RuckerBernd SchoberKarl SchütteAlfred TolksdorfGünter SchaffrathHans WapplerRobert LangbeinWolfram GroßePaul BlödnerStaatskapelle Dresden + +7640115Hans WapplerHans Wappler was a German bassoonist. He was a member of the [a578737] form 1935 to 1975. +Needs VoteStaatskapelle DresdenBläserquintett Der Staatskapelle Dresden + +7644093Sercan DanisTurkish-born classical violinist.Needs VoteSydney Symphony Orchestra + +7644174Josef MärklJosef Märkl (16 January 1928 -14 October 2010) was a German violinist, composer and a pedagogue. He's the father of [a1928180] and [a5375490].Needs VoteSymphonie-Orchester Des Bayerischen RundfunksSiegerland OrchestraDüsseldorfer SymphonikerSüdwestfunkorchester Baden-BadenStross-QuartettMärkl-Quartett + +7644176Bernhard PietrallaBernhard Pietralla is a German violist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerMärkl-Quartett + +7646434Paulien HolthuisDutch classical violinist.Needs VoteMahler Chamber OrchestraHet Gelders Orkest + +7646435Sebastian PoschClassical horn player and lecturer, born in Berlin, Germany.Needs VoteMahler Chamber OrchestraStaatskapelle BerlinLandesjugendsinfonieorchester BrandenburgEnsemble 4.1 + +7646436Burak MarlaliBurak Marlali (born in 1980 in Ankara, Turkey) is a Classical double bassist and Professor at the [l1125469].Needs VoteGewandhausorchester LeipzigMahler Chamber OrchestraStaatskapelle Berlin + +7646437Christian MiglioranzaClassical percussionist and teacher from Italy.Needs VoteMahler Chamber OrchestraGustav Mahler Jugendorchester + +7646438Igor CaiazzaClassical percussionist, composer/arranger and jazz player.Needs Votehttp://www.igorcaiazza.com/Mahler Chamber Orchestra + +7646439Susanne LinderClassical violist and teacher from Germany.Needs VoteMahler Chamber OrchestraAdamello Quartett + +7646440Gaël GandinoFrench classical harpist.Needs VoteGael GandinoBayerisches StaatsorchesterMahler Chamber Orchestra + +7646441Benoît SavinClassical clarinetist from France.Needs VoteMahler Chamber Orchestra + +7646442Johnathan RandallClassical trombonist.Needs VoteMahler Chamber Orchestra + +7646443Özgür UluçinarClassical double bassist from Turkey.Needs VoteÖzgür UlucinarMahler Chamber Orchestra + +7646444Christian HeubesClassical violinist, born in 1976 in Koblenz, Germany.Needs VoteMahler Chamber Orchestra + +7648518Kathryn MeanyClassical oboist, born in Minnesota, USA.Needs VoteThe Colorado Symphony OrchestraTulsa Philharmonic OrchestraNational Symphony OrchestraNew World Symphony Orchestra + +7648521Michael Mayhew (2)Classical horn player, born in Denton, Texas, USA..Needs VoteThe Cleveland OrchestraNew World Symphony OrchestraSyracuse Symphony Orchestra + +7648956Victor Fournelle-BlainClassical violist.Needs VoteOrchestre symphonique de MontréalLes Solistes OSMTrio Hochelaga + +7650663Karolina JaroszewskaKarolina Jaroszewska-Rajewska Polish classical cellist.Needs Votehttp://www.jaroszewska.org/Karolina Jaroszewska-RajeewskaOrkiestra Symfoniczna Filharmonii Narodowej + +7651795Thomas RolstonThomas Edmund RolstonCanadian violinist, violist, conductor, and teacher. Born October 31, 1932 in Vancouver, British Columbia - Died May 29, 2010 in Vancouver, British Columbia. +He studied at the [l527847] (1950-1953). Member of the [a=Philharmonia Orchestra] (1951-1958). He attended the [l1133062] (1956-1957). Concertmaster (1958-1960) and Associate Conductor (1960-1964] of [a382531]. He taught at the University of Alberta in Edmonton until 1979, where he helped found the [a=University Of Alberta String Quartet] in 1969. Between 1988 and 1991, he taught at the [l=University Of Calgary]. He created the [a=Canadian Chamber Orchestra]. The [a=Rolston String Quartet] took its name from him. +Husband of [a=Isobel Moore] & father of [a=Shauna Rolston]. Uncle of [a=Darcy Hepner].Needs Votehttps://en.wikipedia.org/wiki/Tom_Rolstonhttps://www.thecanadianencyclopedia.ca/en/article/thomas-rolston-emchttps://prabook.com/web/tom.rolston/1783263https://en-academic.com/dic.nsf/enwiki/3306405https://calgaryherald.com/entertainment/theatre/remembering-tom-rolstonhttp://gregoryoh.com/uncategorized/rest-in-peace-tom-rolston/Philharmonia OrchestraUniversity Of Alberta String QuartetBanff Festival Strings + +7651796Michael Bowie (3)British classical violist. Born 5 March 1933 in Hastings, Sussex, England, UK. +He studied at the [l290263]. Former member of the [a=London Symphony Orchestra] (1956-1960). Co-founder of the [a=University Of Alberta String Quartet] in 1969. He has taught at several western Canadian universities, has performed extensively as a violist and conductor, and has written articles on related subjects.Needs Votehttps://www.thecanadianencyclopedia.ca/en/article/university-of-alberta-string-quartet-emcLondon Symphony OrchestraUniversity Of Alberta String QuartetQuarteto Amati + +7654463Teng Li (2)Chinese Canadian violist, currently the principal violist of the Los Angeles Philharmonic.Needs Votehttp://www.tengliviola.com/site/https://en.wikipedia.org/wiki/Teng_LiTeng LiLos Angeles Philharmonic Orchestra + +7654474Joachim FrankeGerman classical trombonist.Needs Votehttps://www.dresdnerphilharmonie.de/orchester/posaunen/joachim-frankeFrankeDresdner PhilharmonieBlechbläserensemble Ludwig Güttler + +7656009J. H. MarshallNeeds Major ChangesProf. J. H. Marshall + +7656542Fred MurellCredited as bass trombone player.Needs VoteGerald Wilson Orchestra + +7658421Marlen HerzogGerman alto vocalistNeeds VoteDresdner KammerchorCollegium Vocale + +7659049Barbara Müller (7)Contralto vocalist from Munich, Germany. +Needs Votehttp://www.bach-cantatas.com/Bio/Muller-Barbara.htmChor Des Bayerischen Rundfunks + +7659675Johannes HehrmannJohannes Hehrmann is a German violinist. +Needs VoteWürttembergisches KammerorchesterHeilbronner Sinfonie Orchester + +7660424Michel FréchinaFrench classical double bassist.Needs VoteOrchestre Des Concerts LamoureuxLa Ritirata + +7663302Johannes Fedé"Johannes Fedé (also Jean Sohier) (c. 1415 – 1477?) was a French composer of the early Renaissance."Needs Votehttps://en.wikipedia.org/wiki/Johannes_Fed%C3%A9 + +7663396Edward Jones (9)Classical trombonist, born in 1984 in Aberystwyth, Wales.Needs VoteCity Of Birmingham Symphony OrchestraNational Youth Orchestra Of Great BritainEuropean Union Youth OrchestraGustav Mahler JugendorchesterThe National Youth Brass Band Of Great Britain + +7663397Katarzyna HorbowiczPolish classical cellist and teacher.Needs VoteGustav Mahler Jugendorchester + +7663398Isabelle ReinischClassical violinist, born in Vienna, Austria.Needs VoteTonkünstler OrchestraGustav Mahler Jugendorchester + +7663401Philipp TutzerClassical bassoonist and teacher, born in Bolzano, Italy.Needs Votehttp://www.philipptutzer.com/European Union Youth OrchestraDas Mozarteum Orchester SalzburgGustav Mahler Jugendorchester + +7663409Gabriele MarangoniClassical violist from Italy.Needs VoteGustav Mahler JugendorchesterOrchestra Haydn Di Bolzano E Trento + +7663410Robert LangbeinClassical horn player, born in Chemnitz, Germany.Needs VoteStaatskapelle DresdenGustav Mahler JugendorchesterBläserquintett Der Staatskapelle DresdenDresdner Oktett + +7663412Janka RyfJanka Felicitas RyfFormer classical violinist, now mental coach, born in 1980 in Erlach, Switzerland.Needs VoteLondon Philharmonic OrchestraMahler Chamber OrchestraDresdner PhilharmonieLucerne Festival Orchestra + +7663414Jonathan FocquaertClassical double bassist from Belgium.Needs VoteRotterdams Philharmonisch OrkestHet Collectief + +7663415Richard Wheeler (4)British classical trombonist. Born in Liverpool, England. +When he was 15 years old he gained a place in the [a=National Youth Orchestra Of Great Britain]. He studied at the [l527847]. During his time at the RAM he gained a place in the Vienna based [a=Gustav Mahler Jugendorchester] as Principal Trombone. Before graduating from the RAM, he was appointed Principal Trombone of the [a899550]. After two full seasons he left the orchestra in 2005 pursuing a freelance career, collaborating with many Italian and British orchestras. In 2012, he was appointed Principal Trombone of the [a=Orchestra Del Teatro Dell'Opera Di Roma]. In the same year, he also successfully auditioned for the joint principal trombone position of the [a=Philharmonia Orchestra]. Since January 2018 he occupies the position of Principal Trombone of the [url=https://www.discogs.com/artist/1116100-Beogradska-Filharmonija]Belgrade Philharmonic Orchestra[/url].Needs Votehttps://www.bgf.rs/en/orkestar_cp/richard-wheeler-principal-trombone/Philharmonia OrchestraOrchestra Del Teatro Dell'Opera Di RomaNational Youth Orchestra Of Great BritainOrchestra Sinfonica Di Milano Giuseppe VerdiBeogradska FilharmonijaGustav Mahler Jugendorchester + +7663417Laura Salcedo RubioClassical violinist, born in 1977 in Pamplona, Spain.Needs VoteGustav Mahler JugendorchesterNational Symphonic Orchestra Of Spain + +7663419Sandrine VasseurFrench classical clarinetist.Needs VoteOrchestre National Bordeaux AquitaineGustav Mahler Jugendorchester + +7663420Marcos Pérez MirandaClassical clarinetist, born in 1981 in La Orotava, Spain.Needs VoteGustav Mahler Jugendorchester + +7663422Stefan Albers (2)Classical flautist and teacher from Germany.Needs VoteGustav Mahler Jugendorchester + +7663423Gonzalo Berná PicClassical clarinetist, conductor and teacher from Spain.Needs VoteGustav Mahler JugendorchesterOrchester Des Schleswig-Holstein Musik Festivals + +7663429Christoph KrügerClassical double bassist from Germany.Needs VoteGewandhausorchester Leipzig + +7663430Rebekka Wittig-VogelsmeierClassical cellist, born in 1980 in Magdeburg, Germany.Needs VoteRebekka WittigGewandhausorchester LeipzigGustav Mahler JugendorchesterNiedersächsisches Staatsorchester Hannover + +7663432Lorenzo LuccaClassical violinist, born in 1985 in Assisi, Italy.Needs VoteGustav Mahler Jugendorchester + +7663433Olga DraguievaBulgarian classical violinist and teacher.Needs VoteNew Symphony Orchestra SofiaGustav Mahler Jugendorchester + +7663434José Manuel Álvarez LosadaClassical violinist and teacher from Mallorca, Spain.Needs VoteJosé M. Álvarez LosadaGustav Mahler JugendorchesterOrquesta Sinfónica de Galicia + +7663435Alvaro Octavio DiazÁlvaro Octavío DíazClassical flautist, born in Alcázar de San Juan, Spain.Needs VoteEuropean Union Youth OrchestraJoven Orquesta Nacional de EspañaOrquesta De CadaquésGustav Mahler JugendorchesterPlural EnsembleOrchester Des Schleswig-Holstein Musik FestivalsNational Symphonic Orchestra Of Spain + +7663437Katarzyna DulPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +7663439Dennis NottenFormer classical bassoonist, now a spiritual guide.Needs Votehttps://www.sacredjourney.earth/Walking-with-the-SerpentConcertgebouworkest + +7663445César Altur de los MozosClassical oboist, born in 1978 in Valencia, Spain.Needs VoteGustav Mahler JugendorchesterOrquesta Sinfonica De BilbaoOrquesta Sinfónica de Castilla y León + +7663447Lia PrevitaliClassical violist, born in Verscio, Switzerland. Has been the second violist of the [a=Orchestra Del Maggio Musicale Fiorentino] since 2005, after being selected by [a=Zubin Mehta] + +She was a member of the [a=Gustav Mahler Jugendorchester] and first violist of the [a=Schweizer Jugend-Sinfonie-Orchester]. She trained with [a=Wolfram Christ] at the Conservatory of Italian Switzerland, with [a=Jodi Levitz] in San Francisco and then with [a=Veronika Hagen] at the Salzburg Mozarteum. She has performed in chamber music festivals in Europe, Japan and America with the likes of [a=Norbert Brainin], [a=Richard Stolzman], [a=Sadao Harada] and the [a=Trio di Parma]. + +She regularly collaborates with the [a=Mahler Chamber Orchestra], and has been invited to participate in tours with the [a=Israel Philharmonic Orchestra], the [a=West-Eastern Divan Orchestra], the Mozart Orchestra and [a=Les Dissonances], thus having the opportunity to work with conductors such as [a=Claudio Abbado], [a=Pierre Boulez], [a=Daniel Barenboim], [a=Riccardo Muti] and [a=Seiji Ozawa]. She has also played first viola with the [a=Orchestra Del Teatro La Fenice] in Venice and with the [a=Orchestra Della Svizzera Italiana Lugano]. + +Interested in exploring both the ancient repertoire and that of contemporary music, she collaborates with the [a=Musica Saeculorum] orchestra, the [a=Alter Ego (9)] ensemble of Rome and [a=The San Francisco Conservatory New Music Ensemble]. She has taught at the advanced specialisation courses of the Gustav Mahler Academy of Bolzano and the [l=Orchesterzentrum NRW, Dortmund]. +CorrectAlter Ego (9)The San Francisco Conservatory New Music EnsembleMahler Chamber OrchestraIsrael Philharmonic OrchestraOrchestra Del Teatro La FeniceGustav Mahler JugendorchesterSchweizer Jugend-Sinfonie-OrchesterOrchestra Del Maggio Musicale FiorentinoTrio Di ParmaLes DissonancesWest-Eastern Divan OrchestraMusica SaeculorumOrchestra Della Svizzera Italiana Lugano + +7663448Ignacio Molins BoschClassical percussionist, born in 1978 in Valencia, Spain.Needs VoteEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +7663452Daniela Steiner (2)Classical violinist, born 9 Aug 1977 in Bobingen, Germany.Needs Votehttps://daniela-steiner.de/Junge Deutsche PhilharmonieOrchester der Bayreuther FestspieleWiener Jeunesse OrchesterGustav Mahler JugendorchesterOrchester Des Staatstheaters Am Gärtnerplatz + +7663453Laia Puig TornéClassical cellist, born in 1980 in Cervera, Spain.Needs VoteEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +7663457Teresa ZimmermannGerman classical harpist, and harp lecturer, born in 1982 in Hannover. +Since September 2014 she has been principal harpist with the [url=https://www.discogs.com/label/1103302-M%C3%BCnchner-Philharmoniker]Munich Philharmonic[/url]. Before that, she played since 2013 in the same position in the [a=Philharmonia Orchestra]. From 2011-2015 she taught a major class as a harp lecturer at the [url=https://www.discogs.com/label/312890-Hochschule-f%C3%BCr-Musik-und-Theater-Hannover]Hanover University of Music, Drama and Media[/url].Needs Votehttps://www.teresazimmermann.com/https://open.spotify.com/artist/3kKVxK2eUu8dfhfCJicly1https://www.mphil.de/en/orchestra/musicians/details/teresa-zimmermannhttps://www.munich.travel/en/topics/arts-culture/all-eyes-on-culture/teresa-zimmermann-harphttp://www.deutsche-stiftung-musikleben.de/stipendiaten/solistenMaske.html?TID=20070328144330Münchner PhilharmonikerPhilharmonia OrchestraGustav Mahler JugendorchesterBundesjugendorchester + +7663467Ferdinand BreyerClassical double bassist.Needs VoteWiener Symphoniker + +7665272Joe Romano (8)Needs VoteBoyd Raeburn And His Orchestra + +7673377Salvador BarberaSalvador BarberáSpanish oboe player.Needs VoteOrquesta Sinfónica de RTVE + +7675931Sir Henry LeaNeeds Major Changes + +7676891Juraj KlettSlovakian Oboe instrumentalistNeeds VoteSlovak Chamber Orchestra + +7676893Josef HanukowskySlovakian classical oboist. +Same as [a4199995] ?Needs VoteJosef Hanukowsky Jun.Slovak Chamber Orchestra + +7677789Andrew LowyClassical clarinetist, born in Hastings-on-Hudson, New York, USA.Needs VoteLos Angeles Philharmonic OrchestraNorth Carolina SymphonyHarvard-Radcliffe Orchestra + +7677790Dana LawsonClassical violist, born in Massachusetts, USA.Needs VoteSaint Louis Symphony OrchestraLos Angeles Philharmonic Orchestra + +7677791Denis BouriakovClassical flautist, born 25 October 1981 in Simferopol (at the time part of the Soviet Union).Needs Votehttps://www.bouriakov.com/https://en.wikipedia.org/wiki/Denis_BouriakovLos Angeles Philharmonic OrchestraOrquestra Simfònica De Barcelona I Nacional De CatalunyaThe Metropolitan Opera House OrchestraTampere Philharmonic Orchestra + +7677792Dahae KimClassical cellist, born in Seoul, South Korea.Needs VoteDetroit Symphony OrchestraLos Angeles Philharmonic OrchestraThe National Repertory Orchestra + +7679260Joshua SylvesterNeeds Major Changes + +7680323Reggie CoatesNeeds Major Changes + +7680324Ben Dover (21)Needs Major Changes + +7680449John Hopkins (26)English Psalmist (1520-1570), who co-wrote the first English metrical version of the Psalms, originally attached to the Prayer-Book, with [a=Thomas Sternhold].CorrectHopkins + +7680463Edward De VereEdward de Vere, 17th Earl of Oxford (1550-1604)Needs Votehttps://en.wikipedia.org/wiki/Edward_de_Vere,_17th_Earl_of_OxfordEdward, Earl Of Oxford + +7680469Andreas RieplAndreas Riepl is a classical double bassist.Needs VoteBayerisches StaatsorchesterJunge Deutsche PhilharmonieBayerisches Landesjugendorchester + +7682817Lisa BoykoAmerican classical violist.Needs VoteThe Cleveland Orchestra + +7685396Valentin HärtlValentin Georg Härtl Valentin Härtl (20 June 1894 -13 August 1966) was a German violist and violinist.Needs VoteHärtlValentin HaertlValentin HärtelВ. ХертльMünchener Bach-OrchesterStross-Quartett + +7690245Willa FinckAmerican classical violinist.Needs Votehttps://www.willafinck.comThe Philadelphia Orchestra + +7693190Frank DemmlerClassical horn player from Germany.Needs VoteOrchester Des Nationaltheaters MannheimStaatskapelle BerlinOrchester der Bayreuther Festspiele + +7693192Ignacio Garcia (4)Ignacio GarcíaIgnacio García is a classical horn player and teacher, born in Valparaiso, Chile.Needs VoteStaatskapelle Berlin + +7693195Fabian BorchersClassical horn player, born in 1979 in München, Germany.Needs VoteNürnberger PhilharmonikerDeutsche Kammerphilharmonie BremenFrankfurter Opern- Und MuseumsorchesterStaatsphilharmonie Nürnberg + +7693197Vladlen ChernomorClassical violinist, born in 1978 in Taschkent, Uzbekistan.Needs Votehttps://de.wikipedia.org/wiki/Vladlen_ChernomorRadio-Symphonie-Orchester Berlin + +7693344Robert James (23)American violist, based in Sweden since 1964.Needs VoteGöteborgs SymfonikerArs Intima EnsembleMirchevtrion + +7696590Yves BellecFrench cellist (1949-2019)Needs VoteBellecOrchestre Philharmonique De Radio France + +7696992Herb MoiseNeeds VoteIke Carpenter And His Orchestra + +7697205Bob Hummel (2)American swing drummerNeeds VoteIke Carpenter And His Orchestra + +7698753Hubert SalmhoferHubert Salmhofer (born 14 July 1964) is an Austrian basset horn player.Needs VoteGustav Mahler JugendorchesterVienna Clarinet ConnectionTrio Gemärch + +7698797Erich Kaufmann (3)Erich Kaufmann (25 May 1940) is an Austrian violist. He was a member of the [a754974] from 1975 to 2002.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener VolksopernorchesterTonkünstler Orchestra + +7698832Gerhard Kaufmann (2)Gerhard Kaufmann (11 May 1943) is an Austrian cellist. He was a member of the [a754974] from 1973 to 2008.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +7699184Charlotta Grahn-WetterAnna Maria Charlotta Grahn WetterSwedish classical violinist living in Gothenburg, born on February 24, 1988. + +She studied at the Royal Academy of Music in Stockholm.Needs Votehttps://www.gso.se/upptack/podiet/en-karlek-i-flammande-lonntra/?fbclid=IwAR1u93QxZ93Df_RKdUxHAIqcJKTB33KabD5IICg-1B2TiKswNlNALmukT0YGöteborgs Symfoniker + +7699672Stephen Rose (5)ViolinistNeeds VoteThe Cleveland OrchestraEverest String Quartet + +7699674Joanna Patterson ZakanyViolistNeeds VoteThe Cleveland Orchestra + +7700001Andrea Conti (5)Italian classical trombone playerNeeds VoteOrchestra dell'Accademia Nazionale di Santa CeciliaOrchestra Mozart + +7702958James OpieJames Alexander OpieBritish classical viola player, living in Stockholm, Sweden, born on 5 June 1976. + +He studied Viola at the Royal Northern College of Music in Manchester (RNCM) under the guidance of Yuko Inoue and Roger Benedict. + +Having taken his first job in the BBC National Orchestra of Wales while finishing his studies and later became co-principal in the renowned BBC Philharmonic. After many happy years in the BBC James Opie moved to Sweden where he currently plays co-principal in the Royal Swedish Opera (Kungliga Hovkapellet) in Stockholm. + +Opie frequently plays guest principal in the Royal Stockholm Philharmonic (Kungliga Filharmonikerna) and Swedish Radio Orchestra (Sveriges Radios Symfoniorkester), while also travelling back to his native England to work with old colleagues and friends. + +James Opie joined Opera by the Fjord for the first time in 2022, and has been a teacher at this summer academy every year since.Needs VoteBBC Symphony OrchestraKungliga Hovkapellet + +7703078Eva Kristine VasarhelyiEva Kristine Boulekbache VasarhelyiDanish violinist.Needs VoteEva Kristine VasarhelyEva Kristine VasarhelylEva VasarhelyiEva VásárhelyiDet Kongelige KapelDanmarks Radios Symfoniorkester + +7705353Mark Petersen (5)Bass vocalist, probably the same as [a961388].Needs VoteThe English Concert Choir + +7707393Ted Black (3)Theodore AbousslemanSyrian-American bandleader, musician, conductor, and producer. +Born July 20, 1902 in Brooklyn, New York, USA. +Died July 31, 1970 in Brooklyn, New York, USA. + +Black began playing music professionally at age 14. In 1929, he founded his first dance band. [a=Ted Black And His Orchestra] began recording with [l=Victor] in 1931 with a hit coming out that year, followed by four more in 1932. Black played multiple instruments on recordings, mostly clarinet and saxophone, but also the piano. After touring Britain and Europe in 1933, the band proudly called themselves “The Prince of Wales’ favorite band.” Interest in his band's sweet dance music began to wane after 1934, however, and in 1941, Black had to declare bankruptcy. Black shifted careers and became a professional manager at music publisher Witmark Music. + +In 1949, Black assembled a second band that recorded for smaller labels such as [l=Dana] and [l=Manor]. By 1952, however, he went back to the music publishing business. In that field he worked for Pine Rider (1953), Republic (1954), Miller Music (1957), becoming head in 1959, and Peer Southern (1966). + +Black got married first in May 1930, to Sophie A. Sohr. In 1940, he married singer and dancer [a=Gloria Whitney (2)] (née Florence Healy), with whom he had two sons, Philip "Flip" and Bill. [a=Flip Black] became a singer himself before also joining and later becoming the head of A&R Creative Services Division of Music Sales Group, where he remained for over 30 years.Needs Votehttps://www.findagrave.com/memorial/189689115https://adp.library.ucsb.edu/index.php/mastertalent/detail/346446/Ted_Black_Orchestra?Matrix_page=100000BlackCalifornia RamblersTed Black And His OrchestraTed Black And The Boys UpstairsTeddy Black & His Orchestra + +7707734Teddy Charles' West CoastersNeeds Major ChangesTeddy Charles West CoastersTeddy Charles + +7709034David Romano (6)Italian violinist (* 1972 in Naples, Italy).Needs Votehttps://www.sestettostradivari.com/en/david-romano/https://www.facebook.com/accademiamusicale.europea.9/posts/david-romano-docente-del-corso-di-alta-formazione-musicale-dedicato-al-violino-e/741778562639949/Orchestra dell'Accademia Nazionale di Santa CeciliaArchi Di Santa Cecilia + +7715293Johnny Williams (39)John C. WilliamsUS jazz, blues and soul saxophonist, born as John C. Williams on October 31, 1936 in Orangeburg, South Carolina. + +Best known for his longtime association with the Count Basie Orchestra from 1970 until May 2013. +He also worked as a session musician in the horn sections of soul and blues groups like Ike and Tina Turner, The Four Tops, Marvin Gaye, Stevie Wonder, Gladys Knight and the Pips and The Temptations. + +Not to be confused with English baritone saxophonist John Williams (9). Needs Votehttps://en.wikipedia.org/wiki/Johnny_Williams_(saxophonist%29https://www.facebook.com/TheCountBasieOrchestra/posts/we-also-honored-the-great-john-williams-who-played-baritone-saxophone-in-the-cou/10152540710880415/J. C. WilliamsJohn C. WilliamsJohn WilliamsJohnnie WilliamsCount Basie Orchestra + +7718079Roldán Barnabé-CarriónSpanish classical violinistNeeds VoteRoldán BarnabéLes Arts FlorissantsLes Talens Lyriques + +7719165Adrian MusteaAdrian Mustea is a Moldovan violist. +Needs VoteBayerisches Staatsorchesterhr-Sinfonieorchester + +7719301Jane Bowyer-StewartJane Bowyer Stewart is a first violinist with the National Symphony Orchestra, which she joined in 1981. She earned both her Bachelor of Arts summa cum laude, Phi Beta Kappa) and Master of Music degrees from Yale University. A devoted chamber musician, Stewart is a regular guest artist with the Kennedy Center Chamber Players and the 21st Century Consort. +She has since performed extensively at the Terrace Theater, the Phillips Collection, the Corcoran Gallery, and the Library of Congress. Currently a member of the Columbia String Quartet and the Eclipse Chamber Orchestra, she has also performed and recorded with the Chamber Soloists of Washington, the U.S. Holocaust Memorial Museum Chamber ensemble, and the Manchester String Quartet. Her several chamber music CDs include one Grammy nominee. +As a concerto soloist, Stewart has appeared with the National Symphony, the New Jersey Symphony, and the Eclipse Chamber Orchestra. She plays a violin made in 1691 by Venetian master Matteo GoffrillerNeeds Votehttps://www.kennedy-center.org/artists/s/so-sz/jane-stewart/https://www.chandos.net/products/catalogue/TR%200157National Symphony Orchestra + +7723101Alessandro ZuppardoItalian born pianist and chorus master, he conducted various chorus, incl. [a2307448] (2003-2008), [a3931327] (2010-2011), Chor der Oper Leipzig (2011-2018), [a8048858] since 2018Needs Votehttps://alessandrozuppardo.com/https://www.operanationaldurhin.eu/en/les-artistes/details/alessandro-zuppardoChorus Of The Frankfurt OperaCoro Del Teatro Giuseppe Verdi Di TriesteChœur de L'Opéra National Du Rhin + +7724994Rebecca AlbersAmerican classical violist.Needs VoteMinnesota Orchestra + +7727420Thomas KlaberClassical trombonistNeeds VoteThe Cleveland Orchestra + +7728371Ben VennardBen VennardNeeds Votehttps://soundcloud.com/ben-vennardhttps://www.facebook.com/benvennardofficialhttps://www.youtube.com/@benvennardDJVennardProblematic (5) + +7728474Peter Michael Borck Peter Michael Borck is a German classical viola player.Needs VotePeter BorckGewandhausorchester LeipzigOrchester der Bayreuther FestspieleNeues Bachisches Collegium Musicum Leipzig + +7731805Nicola BruzzoClassical violinist, born in 1989 in Ferrara, Italy.Needs VoteMahler Chamber OrchestraRundfunk-Sinfonieorchester Berlin + +7731806Kosuke YoshikawaJapanese classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731807Anna MorgunowaRussian classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731811Misa YamadaJapanese classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731812Karin KynastGerman classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731828Maximilian SimonGerman violinistNeeds Votehttp://www.maximilian-simon.com/Rundfunk-Sinfonieorchester BerlinBerlin Session Orchestra + +7731829Sylvia PetzoldClassical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731831Anne-Kathrin SeidelAnne-Kathrin Seidel is a German violinist.Needs VoteRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleBerlin Session Orchestra + +7731832Brigitte DraganovClassical violinist.Needs VoteBrigitte DraganowRundfunk-Sinfonieorchester Berlin + +7731835Maciej BuczkowskiClassical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731837Juliane ManyakClassical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731862Peter Albrecht (4)German classical cellist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731865Alejandro RegueiraSpanish classical violist, born in 1991 in Malaga.Needs VoteAlejandro Regueira CaumelAlejandro Regueira-CaumelRundfunk-Sinfonieorchester Berlin + +7731866Claudia BeyerClassical violist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731867Alexey DoubovikovRussian classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731893Christoph Korn (2)German classical clarinetist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731896Axel BuschmannGerman classical double bassist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731898Silke UhligGerman classical flautist.Needs VoteRundfunk-Sinfonieorchester BerlinVirtuosi Saxoniae + +7731904Hannes HölzlAustrian classical trombonist, born in Bad Hofgastein in 1987.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731905Anne MentzenGerman classical hornist, born in Brauschweig in 1981.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731906Maud EdenwaldClassical harpist.Needs VoteRundfunk-Sinfonieorchester Berlin + +7731907Ingo KlinkhammerIngo Klinkhammer (born 1968) is a German horn player.Needs VoteRundfunk-Sinfonieorchester BerlinOrchester der Bayreuther FestspieleWürttembergische Philharmonie ReutlingenStaatsorchester Braunschweig + +7732785Angelo de LeoClassical violinist, born in 1991 in Böblingen, GermanyNeeds VoteBerliner Philharmoniker + +7732786Kyoungmin ParkClassical violist, born in 1990 in Seoul, South Korea.Needs VoteBerliner Philharmoniker + +7732787Sophie DervauxClassical bassoonist, born in 1991 in Clamart, France.Needs Votehttps://sophiedervaux.com/https://de.wikipedia.org/wiki/Sophie_DervauxS. DervauxSophie DartigalongueBerliner PhilharmonikerOrchester Der Wiener StaatsoperWiener PhilharmonikerVienna Reed Quintet + +7732788Florian PichlerClassical trumpeter from Austria.Needs VoteBerliner PhilharmonikerFrankfurter Opern- Und Museumsorchester + +7739221Paul SpjuthSwedish classical trumpeter.Needs VoteGöteborgs Symfoniker + +7740779Gershom ParkingtonFrederic Gershom ParkingtonBritish classical cellist, and actor. Born in 1886 in Bury St. Edmunds, Suffolk, England, UK - Died 23 January 1952 in Saint-Hélier, Jersey, Channel Islands, UK. +He trained at the [l527847]. Later, he joined the [a=Queen's Hall Orchestra]. Former member of the [a=London Symphony Orchestra] (1915-1920). Founder and leader of [a=The Gershom Parkington Quintet]. +He was a collector of rare clocks, watches, sundials and sand-glasses.Needs Votehttp://www.stedmundsburychronicle.co.uk/clocks/clocksintro.htmhttps://www.facebook.com/moyseshall/posts/2928311157237200https://www.visit-burystedmunds.co.uk/blog/2017/bury-st-edmunds-blue-plaqueshttps://www.ancestry.com/genealogy/records/frederic-gershom-parkington-24-8tmsdthttps://www.imdb.com/name/nm0662806/London Symphony OrchestraThe Gershom Parkington QuintetQueen's Hall Orchestra + +7742765Timea IvánHungarian violinist.Needs VoteTimea IvanThe Chamber Orchestra Of EuropeBudapest Festival Orchestra + +7744511Jamie McIntoshJamie "Mac" McIntosh was a trumpet player. + +Needs VoteJamie MacIntoshBen Pollack And His OrchestraBob Wills & His Texas Playboys + +7746913Tibor GyengeRomanian classical violinist, born in Déva in 1959. +Needs VoteStaatskapelle DresdenCamerata Pro Musica Chamber OrchestraStaatsphilharmonie NurnbergFritz Busch Quartett + +7748303Anna FusekCzech Recorder, Violin and Keyboard instrumentalist Needs VoteVenice Baroque OrchestraGöttinger BarockorchesterBasel Baroque Consort + +7751575Dale SchroffAmerican big band trumpet player.Needs VoteDale Brodie ShroffBenny Goodman And His Orchestra + +7757296Jane Campbell (2)Classical string instrumentalistNeeds VoteThe Sixteen + +7760777Erich PawlikErich Pawlik (1957 – December 2020) was an Austrian oboist.Needs VoteEnsemble 20. JahrhundertBühnenorchester Der Wiener Staatsoper + +7761602Mario BarsottiItalian classical tuba player, active from the late 1980s.CorrectOrchestra Giovanile ItalianaOrchestra Del Maggio Musicale Fiorentino + +7762546Myriam BullozClassical string instrumentalistNeeds VoteLes Arts FlorissantsEnsemble Les SurprisesLe Banquet CélesteLa Chapelle Harmonique + +7762601Taverner Choir & PlayersNeeds Major ChangesTavener Choir & Players + +7763960Jason DepueAmerican violinist and fiddlerNeeds VoteJason De PueThe Philadelphia OrchestraThe Depue Brothers Band + +7767128Leila ZlassiLeïla ZlassiClassical soprano vocalistNeeds VoteLeïla ZlassiLes Arts FlorissantsSanacore + +7767130Justin BonnetClassical Bass & Baritone vocalistNeeds VoteLe Concert SpirituelLes Arts Florissants + +7767131Alice GregorioClassical Mezzo-soprano vocalistNeeds VoteLes Arts Florissants + +7767132Julien NeyerFrench classical bass vocalistNeeds VoteLes Arts Florissants + +7767459Robin McKeeNeeds VoteRobin E. McKeeSan Francisco Symphony + +7767474Sayaka ShinodaJapanese classical violinistNeeds VoteLes Arts FlorissantsEnsemble CorrespondancesLe Concert de l'Hostel Dieu + +7768350Marcello EnnaMarcello Enna (born 1997 in Palermo) is an Italian classical violinist and violist.Needs VoteMünchner PhilharmonikerStaatskapelle DresdenGustav Mahler Jugendorchester + +7776402Alcide CarpanaItalian viola player.Needs VoteOrchestra Del Teatro Alla Scala + +7781018Abigail FennaBritish violistNeeds VoteRoyal Philharmonic Orchestra + +7781182Jennifer BorghiJennifer Borghi is an Italian-American Soprano & Mezzo-soprano vocalist and recording artist.Needs Votehttp://jenniferborghi.com/Choeur de Chambre de Namur + +7781269Milena ViottiMilena Viotti is a horn player.Needs VoteBayerisches Staatsorchester + +7782618Chamber Music Society of Amsterdam[b]Not to be confused with [a3573359]![/b] +Dutch ensemble from Amsterdam, started in 1942 by some members of the [a=Concertgebouworkest]. It disbanded in 1961.Needs VoteSociété De Musique De Chambre D'AmsterdamThe Amsterdam Chamber Music SocietyConcertgebouworkest + +7783447Chris Filipowicz Christopher Filipowicz Bass vocalist.Needs VoteChicago Symphony Chorus + +7785038Dasol JeongClassical violinistNeeds VoteNew York Philharmonic + +7785043Na SunClassical violinist Needs VoteNew York Philharmonic + +7785044Sarah Pratt (2)Classical violinistNeeds VoteNew York Philharmonic + +7785494Matthew Head (4)British classical hornistNeeds Votehttps://matthewhorn.co.uk/Hallé OrchestraThe Waldegrave Ensemble + +7785728Rion WentworthAmerican classical bassistNeeds VoteNew York Philharmonic + +7785733Harrison MillerAmerican bassoonistNeeds VoteBaltimore Symphony Orchestra + +7785736Liam BurkeAmerican clarinetist.Needs Votehttp://www.liamburke.orgNew York Philharmonic + +7786274Christine LichtenbergGerman alto vocalist.Needs VoteRundfunkchor Berlin + +7788499Robert GladstoneClassical Bassist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +7789248Helen Wilson (9)British woodwind player.Needs VoteRoyal Liverpool Philharmonic OrchestraNational Youth Jazz Orchestra + +7790581Harry AtkinsonHarry Atkinson is a British classical double bassist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +7792476Alexander BurggasserViolinist, born in 1975.Needs VoteWiener SymphonikerDuo Giocoso + +7796417Jan Šimon (2)Jan ŠimonCzech classical violinist. +Son of cellist [a=Jan Šimon]. +Founder of [a=Pro Arte Antiqua Praha] in 1984, member of [a=The Czech Philharmonic Orchestra] since 1986.Correcthttps://www.ceskafilharmonie.cz/en/about-us/orchestra/players/jan-simon/The Czech Philharmonic OrchestraPrague Madrigal SingersMusica BohemicaOriginální Pražský Synkopický OrchestrPrague Radio Symphony OrchestraPro Arte Antiqua PrahaCzech Symphony OrchestraCzech Philharmonic Sextet + +7796519Josef Špaček (2)Josef ŠpačekCzech classical violinist, born in 1986. Recording artist since 2006, member of [a=The Czech Philharmonic Orchestra] since 2011. +Son of cellist [a=Josef Špaček], brother of cellist [a=Petr Spacek] (Petr Špaček).Correcthttp://www.josefspacek.com/https://www.ceskafilharmonie.cz/en/about-us/orchestra/players/josef-spacek/The Czech Philharmonic Orchestra + +7797753Ben SchriebmanViolin player.Needs VoteJean Goldkette And His Orchestra + +7799652Oliver CaveBritish classical violinist from Kent.Needs VoteLa SerenissimaThe Academy Of Ancient Music12 EnsembleRuisi Quartet + +7801305Maurice AtenMaurice E. AtenEarly jazz banjoist and guitarist. Replaced [a6213392] between July 1926 and July 1927 in [a=Ted Lewis And His Band].CorrectTed Lewis And His BandLen And Joe HigginsThe Brothers Bertini + +7801930Isabel NeliganSwiss-Irish classical violinist born in Nyon, in 1976.Needs VoteTonhalle-Orchester Zürich + +7802051Mark Robinson (38)Classical percussionist.Needs VoteSydney Symphony Orchestra + +7806655Don Byas Et Ses RythmesGroup name mostly used in France.Needs VoteDon Byas & His RhythmDon Byas & Ses RythmesDon Byas And His RhythmDon Byas And His RhytmDon Byas E I Suoi RitmiDon Byas E Seu RitmoDon Byas Et Ses RhythmesDon Byas Son Saxo Ténor Et Ses RythmesDon Byas Son Tenor Sax Et Ses RythmesDon Byas, His Tenor Sax And RhythmDon Byas And His OrchestraJoe BenjaminBill ClarkDon ByasArt Simmons + +7809731Geza StullerClassical violinistNeeds VoteThe Chamber Orchestra Of Europe + +7811178Isaac Duarte (2)Swiss oboist.Needs VoteTonhalle-Orchester Zürich + +7815506Horst OrnimertLars WernerPseudonym for Swedish pianist [a=Lars Werner], used on an Onyx LP where Werner played behind Lester Young.Needs VoteLars WernerLester Young Quartet + +7819168Friedrich ThomasClassical flautist.Needs Vote + +7821943Bobby Greene (4)US jazz tenor saxophonist, composer, active late 1940s/early 1950sNeeds Votehttps://www.1540brewster.com/artists/7OSn46XHnRwYBobby GreenGreeneErskine Hawkins And His OrchestraBobby Greene Orchestra + +7825065Bruno LabateBruno LabateAmerican oboist. (1883–1968)Needs VoteNew York Philharmonic + +7826071Wallace GoodrichJohn Wallace Goodrich[b]J. Wallace Goodrich[/b] (27 May 1871, Newton, Massachusetts — 6 June 1952, Boston, MA) was an American organist, conductor, composer, writer, and director of the [l=New England Conservatory Of Music] in Boston from 1931 until his retirement in 1942. Goodrich served as the organist with the [a=Boston Symphony Orchestra] (1897 to 1900) and was a titular organist and concertmaster at Boston's [url=https://discogs.com/artist/13187421]Trinity Church[/url] (1902-1907). He was also the conductor and director of [a=The Boston Cecilia] (1907-1910) and [a=The Boston Opera Company] (1909-1912). + +Goodrich enrolled in the New England Conservatory in 1888, studying organ with [a=Henry Morton Dunham] and composition with [a=George Whitefield Chadwick]. He then traveled to Europe to further his education under [a=Josef Rheinberger] in Munich and [a=Charles-Marie Widor] in Paris. In 1897, John Wallace returned to the United States and joined the NEC faculty; he was promoted to Dean in 1907 and served as the Conservatory's director between 1931 and 1942.Needs Votehttps://imslp.org/wiki/Category:Goodrich,_John_Wallacehttps://necmusic.edu/archives/wallace-goodrichBoston Symphony OrchestraThe Boston CeciliaThe Boston Opera Company + +7827560Reiko Sijpkens-ShioyamaClassical violinist.Needs VoteConcertgebouw Chamber Orchestra + +7827562Peter HoekstraClassical violinist.Needs VoteConcertgebouw Chamber Orchestra + +7827565Janke TammingaClassical violinist.Needs VoteConcertgebouw Chamber Orchestra + +7828009Marc Aixa SiuranaPercussionist.Needs Votehttps://www.naxos.com/person/Marc_Aixa_Siurana/359620.htmhttp://esmuc.cat/Viu-l-Esmuc/Actualitat/Noticies/Nou-professorat-del-curs-2017-2018https://www.preludium.nl/marc-aixa-siuranaMarc AixaConcertgebouw Chamber OrchestraNederlands Philharmonisch Orkest (2) + +7828020Jesus VillaBassoonistNeeds VoteScottish Chamber Orchestra + +7828153Wolfram HollWolfram Michael HollClassical percussionist.Needs VoteGewandhausorchester Leipzig + +7828769James WilcockeBritish classical flute & piccolo player, and teacher of flute. Born in 1853 - Died in 1927. +Founding member of the [a=London Symphony Orchestra] (1904-1912). He taught the flute at [l305416].Needs Votehttps://www.dwsolo.com/flutehistory/piccolo/The%20Piccolo%20Soloists.htmJas. WilcockeMr. James WilcockeWilcockeLondon Symphony OrchestraThe New Queen's Hall OrchestraQueen's Hall Orchestra + +7830484Anne WolfeClassical violist.Needs VotePhilharmonia OrchestraThe Marie Wilson String Quartet + +7830932Billy Williams (31)US tenor saxophonist active in the 40s.Needs Votehttps://adp.library.ucsb.edu/index.php/talent/detail/155769/Williams_Billy_instrumentalist_tenor_saxophoneBilly "Smallwood" WilliamsBilly «Smallwood» WilliamsSmallwood WilliamsLionel Hampton And His Orchestra + +7832201George Hall (15)Clarinetist and soxophonist active 1940sNeeds VoteLouis Armstrong And His Orchestra + +7833114Eugena ChangClassical cellist.Needs VoteNational Symphony Orchestra + +7834965Marie Wilson (8)English Violinist. Born 30 November 1903, Epping Forest, England, UK - Died 1959, London, England, UK. +She studied at the [l290263]. Her first broadcast was with the [a=BBC Wireless Symphony Orchestra] in 1926. She played with [a=The New Queen's Hall Orchestra] for about three years and she was an original member of the [a=BBC Symphony Orchestra].Needs Votehttps://www.thestrad.com/from-the-archive-a-female-concertmaster-comes-out-from-the-shadows/2368.articlehttps://www.gettyimages.ie/detail/news-photo/marie-wilson-cigarette-card-wills-cigarette-card-from-news-photo/102725751https://robertmeyer.wordpress.com/2007/12/07/famous-orchestral-players-of-yesteryear-marie-wilson/https://www.classical-music.com/features/works/when-was-the-first-performance-recording-broadcast-and-proms-performance-of-vaughan-williamss-the-lark-ascending/London Symphony OrchestraLondon Philharmonic OrchestraBBC Symphony OrchestraPhilharmonia OrchestraThe New Queen's Hall OrchestraBBC Wireless Symphony OrchestraThe Marie Wilson String Quartet + +7834975Georg Donderer (2)Georg DondererGerman trumpeter, born October 8th, 1906, died August 6th, 1960 +Principal trumpet at the Munich OperaNeeds VoteBayerisches Staatsorchester + +7839535Lou PainoJazz drummer.Needs VotePaul Whiteman And His Orchestra + +7840735Sol BlumenthalAppears as strings players.Needs VotePaul Whiteman And His Orchestra + +7841573Damián ArenasDamián Arenas BerrugaSpanish contrabass player.Needs VoteOrquesta Sinfónica de RTVEOrquesta Filmadrid + +7847836Philippe DesorsFrench TrumpeterNeeds VoteOrchestre De L'Opéra De Lyon + +7848164Ben FreimuthClarinettist.Needs VoteSan Francisco Symphony + +7852473Claire HerrickClassical violinist.Needs VoteSydney Symphony Orchestra + +7853806Reinhard DörrNeeds Major Changes + +7854857Bobby Sherwood (2)Credit as trumpet player.Needs VoteBenny Carter And His OrchestraRed Norvo's Nine + +7856412Jimmy Edwards (13)Credited as trumpeter.Needs VoteBenny Carter And His Orchestra + +7856576Werner RollenmüllerClassical bass vocalist, born in 1966 in Augsburg, Germany.Needs VoteChor Des Bayerischen Rundfunks + +7860742Catherine VaradyClassical violinistNeeds VoteSüdwestdeutsches Kammerorchester + +7860743Ulrich WeißenburgCredited as Conductor of [a=Südwestdeutsches Kammerorchester]Needs VoteSüdwestdeutsches Kammerorchester + +7861190George Ross (7)Classical cellistNeeds VoteThe Academy Of Ancient MusicSolomon's KnotProfili BarocchiConsone QuartetHerschel Ensemble + +7864093Gavin KibbleClassical cellist and viola da gamba player.Needs VoteThe SixteenThe MozartistsInstruments Of Time & TruthThe Lanyer EnsembleThe Restoration ConsortLondon Handel Players + +7864536Steven Wise (2)Needs Major Changes + +7864537Shannon GaudioNeeds Major Changes + +7869568Katsunobu HirakiSwiss percussionist, pianist, drummer, timbal and marimbaphone player, born in Tokyo. He moved to Switzerland for his studies at the Zürich conservatory. +He played in various orchestras in Japan, Zürich and Italy. He was also accompanying actress [a756984] on piano.CorrectTonhalle-Orchester ZürichOrchester Maur + +7869622Krzysztof FirlusPolish double-bass and a viola da gamba player, born in 1983.Needs Votehttps://www.facebook.com/krzysztof.firlusPolish National Radio Symphony OrchestraArte Dei SuonatoriNikola Kołodziejczyk Orchestra{oh!} Orkiestra Historyczna{oh!} trio + +7870428Polina SedukhRussian classical violinist.Needs VoteSan Francisco Symphony + +7870834Marion de VegaCredited as saxophone player.Needs VoteMarion DevitoColeman Hawkins All Stars + +7872743Matías PiñeiraMatías Ignacio PiñeiraMatías Piñeira is an Chilean horn player. Now based in Germany.Needs Votehttps://matiaspineira.com/Matías Ignacio PiñeiraMünchner PhilharmonikerOrquesta Sinfónica de Chile + +7875516Lodewijk van der ReeDutch classical tenor vocalist and choirmaster.Needs VoteEstonian Philharmonic Chamber ChoirVox Clamantis + +7875567Stéphane PauletFrench classical violinist.Needs Votehttps://stephaniepaulet.com/Les Talens LyriquesLe Concert D'AstréeInsula Orchestra + +7875918Federico KasikFederico Kasik (born 1984) is a German violinist.Needs VoteStaatskapelle DresdenDresdner KammersolistenFritz Busch Quartett + +7876198Beth RapierAmerican classical cellistNeeds Votehttps://www.minnesotaorchestra.org/about/our-people/orchestra-musicians/beth-rapier/RapierMinnesota OrchestraWilliam Schrickel's Heavy Rescue + +7879717Sweet Pea (Addie Spivey)Needs Major Changes + +7879719Clarence Williams & His Novelty FourNeeds Major Changes + +7879725The Jungle Band (Chick Webb)Needs Major Changes + +7879744New Orleans Black BirdsNeeds Major Changes + +7879752Jackson & His Southern StompersMade up of members of [a2093970].Needs VoteCharlie Johnson + +7879760Jelly James And His Fewsicians[b]DO NOT USE.[/b]Needs Vote + +7879774Lou & His Ginger SnapsPseudonym for Luis Russell And His OrchestraNeeds VoteLou & His Ginger-SnapsLou & His GingersnapsLou And His Ginger SnapsLou And His GingersnapsLuis Russell And His OrchestraJ.C. Higginbotham And His Six HicksThe Jungletown Stompers + +7879778The Musical StevedoresNeeds Major Changes + +7887707Traudi PauerTraudi Pauer is a German violinist. +Needs VoteBayerisches Staatsorchester + +7889547Yumi Olsson KimachiClassical PianistNeeds VoteEnsemble Modern + +7890166John Moore (55)John R. MooreClassical cellist. +Former member of the [a=London Symphony Orchestra] (1935-1939).Needs VoteLondon Symphony OrchestraAeolian String QuartetStratton Quartet + +7893949Wendy KongClassical violinist.Needs Votehttps://www.sydneysymphony.com/about-us/meet-the-musicians/strings/wendy-kongSydney Symphony Orchestra + +7893950Steve RosséClassical tubist.Needs Votehttps://www.sydneysymphony.com/about-us/meet-the-musicians/brass/steve-rosseSteve RosseSydney Symphony Orchestra + +7895877Brian BrighamAn American actor, singer and entrepreneur.Needs Votehttp://brianbrigham.info/https://www.facebook.com/officialbrianbrighamhttps://www.imdb.com/name/nm2564139/ + +7897374Sandrine PoncetClassical flautist.Needs VoteOrchestre Philharmonique De Strasbourg + +7899261Christina SingerChristina Singer (born 1964) is a German flute player. +Needs VoteRadio-Sinfonieorchester StuttgartStaatsphilharmonie Rheinland-PfalzSWR Symphonieorchester + +7902305Stefan FritzenTrombonist and conductor, born 29th May 1940 in Rötha, Germany and died 31st May 2019 in Dresden, Germany.Needs VoteStef FritzenStaatskapelle Dresden + +7903536Jörgen FogJørgen FogJörgen Fog (born 2 September 1946) is a Danish cellist. Now based in Vienna, Austria. He's married to [a8939395].Needs VoteJørgen FogOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener StreichersolistenWiener KlavierquintettKlavierquartett-Wien + +7905656Yun ChuClassical violinist.Needs VoteSan Francisco Symphony + +7908693Ed E.TEdmund TempleInternational Hardstyle / Hard Techno DJ & Producer, UK. + +From early beginnings at the dawn of the Hardstyle boom in the early 2000s and a 12 year reign as one half of one of the UK’s leading Hardstyle duos, Ed E.T has has a whirlwind of a musical journey spanning over 2 decades and is ready to start the next chapter. + +During his time as one half of Ed E.T & D.T.R he attained over 20 No.1 Hardstyle chart positions on well reputed hardstyle labels such as DJ’s United Records, Blutonium Records, Loverloud, RVRS Bass, Ourstyle, Bionic Digital and many more and has had support from leading hardstyle headliners globally. + +His stage appearances as an unstoppable tour de force of high energy mixing and white hot track selection has seen him share line ups internationally with the A to Z of leading Hardstyle icons such as Headhunterz, Technoboy, Tuneboy , Showtek, Frontliner, Wildstylez, D-Block & S-te-fan, Noisecontrollers, Atmozfears, Audiofreq, Brennan Heart, Thera, Da Tweekaz, Sound Rush, DJ Isaac, Coone, Yoji Biomehanika, Davide Sonar, Tatanka, Pavo, Luna, Deepack, Daniele Mondello, Zany, Activator to name just a few. + +He has been dubbed one of the pioneers of the reverse bass hardstyle sound in the UK and a fine purveyor of speaker blasting, dance floor destroying and roof raising, full throttle intelligent DJ performances, coming armed with a fully stocked armoury of crowd pleasing weapons, comprising a set choc full of his own high energy productions. + +He has become seasoned at taking pride of place high atop the line up of many very well attended events for well over a decade, from touching down on the mainstage of the prestigious Hardclassics On The Beach Festival in Holland, to jetting off on multiple tours in Japan, to bringing his infectious sound to Spain and many more countries, to taking every major player in the UK scene by storm including the likes of Keeping The Rave Alive, HDUK, Bionic, Westfest, Goodgreef, Slammin Vinyl, Unity, Outrage, Ravers Reunited and many, many more. + +Ed E.T's solo career marks a new chapter in his musical journey, as he ventures into the realm of Hard Techno in the studio. His change in musical direction has been met with acclaim and his tracks have been supported by leading artists such as Shlomo, I Hate Models, Nico Moreno, Rebekah, Pawlowski, AZYR, Lessss, Dax J, PETDUO, Isabela Clerc, OMAKS, Luciid, Luca Agnelli, Lee Ann Roberts, N.O.B.A, Bastet, Vendex, Scot Project, Mark Sherry, Christian Cambas, DXPE, Barbara lago and many more. With his signature high-energy productions and innovative approach, Ed E.T is poised to transcend the boundaries of Hardstyle and Hard Techno, taking his career to new heights. + +Needs Votehttps://www.facebook.com/ede.t.ukhttps://www.instagram.com/ed_e.t/https://soundcloud.com/ed_e_t_ukED E.T.Ed E.T & D.T.R + +7909086Michael Hell (2)Michael Hell is an Austrian cellist. Konzertmeister of the [a261451] from 1981 to 2023. He's the son of [a3034783] and brother of [a3583413].Needs VoteMihael HellMünchner PhilharmonikerThomas Christian EnsembleGelius TrioGasteig-TrioThe Vienna String Quintet + +7909087Martin-Albrecht RohdeMartin-Albrecht Rohde is a classical violist and lecturer at the [l318570].Needs VoteMartin Albrecht RohdeMünchner PhilharmonikerGasteig-TrioThe Vienna String Quintet + +7910848Mathias BrorsonSwedish baritone and bass vocalist, born 1970.CorrectMathias BrosonRadiokören + +7916262Eric CoronFrench classical trombonist.Needs VoteOrchestre National Bordeaux Aquitaine + +7916263Zorica MilenkoviczClassical flautist from North Macedonia.Needs VoteOrchestre National Bordeaux Aquitaine + +7916266Marie SteinmetzClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +7916268Jérôme SimonpoliFrench classical oboist, born in 1962 in Limoges.Needs VoteOrchestre National Bordeaux AquitaineLa Compagnie Des Arts + +7916269Catherine FischerClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +7916275Roma VayspapirВайспапир Рувим МееровичAmerican contrabassist and music pedagogue, born 2 February 1930 in Polotsk, Belarus and died 25 April 2019 in Kennewick, USA. + +Roma Vayspapir, famous Russian Double Bassist, was born in the former Soviet Union and received his musical education (Doctor of Fine Arts in String Bass) from the excellent St. Petersburg Conservatory. At the age of 19, Roma auditioned and was hired by the St. Petersburg Philharmonic, one of the world's best orchestras, under the direction, at that time, of the famous Eugene Mravinsky. After playing there for many years, Roma became the Principal Double Bass in the St. Petersburg Symphony Orchestra. In 1980, Roma, together with his family, left the Soviet Union and came to live in the USA. Here, in the US, he continues to gather praise from his numerous admirers by frequently performing solos, working in the orchestra, teaching at universities and by recording CDs.Needs VoteLeningrad Philharmonic OrchestraLeningrad Academic Philharmonic Symphony Orchestra + +7916349Philippa BallardClassical violinist.Needs VoteBBC Symphony Orchestra + +7916350Dawn BeazleyClassical violinist.Needs VoteBBC Symphony Orchestra + +7916351Richard AlsopClassical double bassist.Needs VoteBBC Symphony Orchestra + +7916352Michael Clarke (19)Classical double bassist.Needs VoteBBC Symphony Orchestra + +7916353Adolf MinkClassical double bassist.Needs VoteBBC Symphony Orchestra + +7916354Charles Martin (18)Classical cellist.Needs VoteBBC Symphony OrchestraThe London Cello Sound + +7916355Patrick WastnageBritish classical violinist from PlymouthNeeds VoteBBC Symphony Orchestra + +7916356Jenni WorkmanClassical double bassist.Needs VoteBBC Symphony Orchestra + +7916357Emma GreenwoodClassical horn player.Needs VoteBBC Symphony Orchestra + +7916358Ruth Ben-NathanClassical violinist.Needs VoteBBC Symphony Orchestra + +7916359Danny FajardoClassical violinist.Needs VoteBBC Symphony Orchestra + +7916360Peter FurnissClassical bass clarinetist.Needs VoteBBC Symphony Orchestra + +7916362Joseph Cooper (6)Classical percussionist.Needs VoteBBC Symphony Orchestra + +7916363Rachel Samuel (2)Classical violinist.Needs VoteBBC Symphony Orchestra + +7916364Christopher NewportClassical horn player and conductor.Needs Votehttps://www.slinfoldconcertband.org/Musical-DirectorBBC Symphony Orchestra + +7916365Ruth SchultenClassical violinist.Needs VoteBBC Symphony Orchestra + +7916366Graham Mitchell (8)Scottish classical double bassist.Needs VoteBBC Symphony OrchestraPhilharmonia Orchestra + +7916368Sarah Hedley MillerClassical cellist.CorrectSarah Hedley-MillerBBC Symphony OrchestraThe London Cello Sound + +7917145Heather Thompson (8)New Zealander hornist.Needs Votehttps://www.linkedin.com/in/heather-thompson-93643723New Zealand Symphony OrchestraRoyal Liverpool Philharmonic Orchestra + +7917147Ken IchinoseBritish cellist, now situated in New Zealand.Needs Votehttps://www.nzso.co.nz/new-zealands-orchestra/meet-the-players/ken-ichinose/London Symphony OrchestraNew Zealand Symphony Orchestra + +7917156David MoonanHornist situated in New Zealand.Needs Votehttps://www.nzso.co.nz/new-zealands-orchestra/meet-the-players/david-moonan/New Zealand Symphony OrchestraMexico City Philharmonic OrchestraOrquesta Sinfónica De La Universidad Nacional Autónoma De MexicoSinfonietta Ventus + +7917325Dominic Moore (3)English classical violinist.Needs Votehttps://sgco.co.uk/about/leader/BBC Symphony Orchestra + +7918011Domenico Dall'OglioDomenico dall'Oglio (c. 1700–1764) was an Italian violinist, composer and music educator.Needs Votehttps://en.wikipedia.org/wiki/Domenico_Dall'OglioDall'OglioDall’Oglio + +7918502Chœur D'enfants de L'Union EuropéenneNeeds Major Changes + +7919596David ChernyavskyRussian classical violinist.Needs Votehttps://www.linkedin.com/in/david-chernyavsky-721b0158/San Francisco Symphony + +7922405Luke Price (3)Classical tenor vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +7924868Werner MittelbachWerner Mittelbach is a German clarinetist. +Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +7924886Ekkehard BeringerEkkehard Beringer (born 1969) is a German classical double bassist. +Needs Votehttp://www.beringer-kontrabass.de/Münchner PhilharmonikerGewandhausorchester LeipzigOrchester Der Deutschen Oper BerlinNDR SinfonieorchesterNDR Elbphilharmonie OrchesterRudens Turku Festival Ensemble + +7925901Richard CowenTrumpeter with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +7925902Emily MowbrayViolinist. + +First Violin with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +7925903Nina AshtonLead bassoonist with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +7925904Sameeta GahirPiccolo player with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +7925905Anthony Williams (27)Double bassist with [a973597].Needs VoteRoyal Liverpool Philharmonic Orchestra + +7925907Elizabeth LambertonViolinist. + +First Violin with [a973597].Needs VoteLiz LambertonRoyal Liverpool Philharmonic Orchestra + +7925911Olga SmolenViolinist. + +Second Violin with [a973597].Needs VoteOlga SmolaRoyal Liverpool Philharmonic Orchestra + +7927047Avery "Kid" HowardAvery HowardAmerican jazz trumpeter, born April 22, 1908 in New Orleans, Louisiana, died March 28, 1966 in the same city. +Played with Eureka Brass Band, Allen's Brass Band, Tuxedo Brass Band, Sam Morgan, Jim Robinson, Captain John Handy, Original Zenith Brass Band, George Lewis and others.Needs Votehttps://en.wikipedia.org/wiki/Kid_Howard"Kid" HowardAvery "Kid Howard"Avery 'Kid' HowardAvery HowardAvery Kid HowardAvery « Kid » HowardAvery »Kid« HowardHowardKid HowardKip HowardThe Original Zenith Brass BandGeorge Lewis' Ragtime BandGeorge Lewis And His New Orleans StompersLouis Cottrell And His New Orleans Jazz BandKid Howard's New Orleans BandKid Howard's Olympia BandKid Howard's Band"Kid" Howard And His New Orleans Jazz BandSayles' Silver Leaf RagtimersKid Howard's La Vida Band + +7927642Alex Mitchell (16)Violist with [a973597]. + +Needs VoteRoyal Liverpool Philharmonic OrchestraZelkova Quartet + +7927785Mark Lindley (2)Cellist.Needs VoteRoyal Liverpool Philharmonic Orchestra + +7929578Jeffrey PowersHornistNeeds VoteThe Cleveland OrchestraRoyal Flemish PhilharmonicHong Kong Philharmonic OrchestraThe Baylor Woodwind QuintetBaylor Brass + +7932068Wen Xiao ZhengChinese classical violist, born in 1981.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBamberger Symphoniker + +7936090Simon CobcroftAustralian classical cellistNeeds VoteAdelaide Symphony OrchestraSydney Symphony OrchestraQueensland Symphony OrchestraMalaysian Philharmonic OrchestraThe Friends Of Shentons' String EnsembleLyrebird Trio + +7941890Andreas PößlGerman trumpeter, born in Krumbach-Schwaben in 1965.Needs VoteStuttgarter Philharmoniker + +7942038Benoît MaurinClassical percussionist.Needs VoteEnsemble Intercontemporain + +7942425Juliana KochClassical oboist and Professor of Oboe. +Principal Oboe of the [a=London Symphony Orchestra] since 1 June 2018. Since September 2018, Professor of Oboe at the [l290263].Needs Votehttps://julianakoch.com/https://www.facebook.com/juliana.koch.75https://www.instagram.com/juliana.koch_/https://open.spotify.com/artist/4NYAtbtGjoARss1qcUp4hwhttps://music.apple.com/us/artist/juliana-koch/1479080516https://lso.co.uk/more/blog/968-welcome-to-our-new-principal-oboe-juliana-koch.htmlhttps://www.rcm.ac.uk/woodwind/professors/details/?id=94842London Symphony OrchestraEstonian Festival OrchestraLSO Wind Ensemble + +7948345Anna GschwendSwiss classical soprano vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Gschwend-Anna.htmLa Petite BandeEnsemble 333 + +7951392Lorenzo FuocoItalian classical violinist, active from the 1990s. Recently (2019) playing in a string trio with [a=Dezi Herber] (viola) and [a=Elida Pali] (cello).Needs VoteI Solisti VenetiOrchestra Del Maggio Musicale FiorentinoI Cameristi Del Maggio Musicale Fiorentino + +7951932Wolfram HauserGerman classical violist, born in Aalen.Needs VoteBamberger Symphoniker + +7951933Andreas RitzingerAndreas Ritzinger (born 1983) is a German violinist. +Needs VoteRadio-Sinfonieorchester StuttgartGustav Mahler JugendorchesterSWR SymphonieorchesterI Virtuosi Di Paganini + +7952400Bengt Danielsson (3)Swedish classical trumpeter.Needs VoteGöteborgs SymfonikerGageego! + +7952701Georg SonnleitnerGeorg Sonnleitner (born 1967) is an Austrian classical horn player and conductor.Needs VoteWiener SymphonikerRundfunk-Sinfonieorchester BerlinConcentus Musicus Wien + +7952702Elisabeth StifterElisabeth Stifter is an Austrian classical violinist.Needs Votehttps://www.elisabeth-stifter.info/geigeConcentus Musicus WienArnold Schoenberg Chor + +7954870Stephan FinkenteyStephan Finkentey is a German violist. +Needs VoteBayerisches StaatsorchesterSWR Sinfonieorchester Baden-Baden Und Freiburg + +7956014David Johnson (94)David Johnson is an English violinist, based in Cologne since 1980.Needs VoteGürzenich-Orchester Kölner PhilharmonikerKammerorchester Tibor VargaThe Spanish Art QuartetMärkl-Quartett + +7956342Marie LeclercqFrench classical cellist.Needs VoteMary*Orchestre De Paris + +7959170Tom Castle (4)English tenor vocalist.Needs Votehttps://soundcloud.com/tom-castle-8The SixteenSansara (5)The Erebus Ensemble + +7962067Ronald WoodcockAustralian classical violinist (concerto & recital soloist, and chamber player), teacher and orchestral conductor. Born ca 1930. +After completing his formal training at the [l482780], he studied in London, in Brussels, and in Prades. He toured extensively, with concerts in over 90 countries. He was leader of the [a=Symphonia Of Auckland]. He served for twenty years as senior lecturer in violin at the University of Adelaide. Member of the [b]Fleurieu Ensemble[/b].Needs Votehttps://ketteringconcerts.org.au/concerts/2011-03-06.phphttp://bso.org.au/wp-content/uploads/2016/08/19830803.pdfhttps://natlib.govt.nz/records/22393671Philharmonia OrchestraAdelaide Symphony OrchestraSydney Symphony OrchestraSymphonia of Auckland + +7965279Stella SeidenbergCredited as harpist.Needs VoteWoody Herman And His Orchestra + +7967483Iván Martín MateuSpanish viola playerNeeds Votehttps://es.wikipedia.org/wiki/Iv%C3%A1n_Mart%C3%ADn_Mateuhttps://www.youkalimusic.com/index.php/artistas/113-ivan-martin-mateuhttps://www.facebook.com/ivan.martinmateuIván MartinIván MartínOrquesta De La Comunidad De MadridOrquesta De CadaquésZarabanda (4)Cuarteto Bretón + +7968270Ole Kristian DahlNorwegian bassoonist, born in Trondheim.Correcthttps://www.olekristiandahl.com/Ole DahlGöteborgs Symfoniker + +7969413Ulf-Guido SchäferGerman clarinetist, composer, arranger and visual artist. +Since 2003 teacher at [l312890].Needs Votehttp://ulf-guido-schaefer.de/https://www.maalot-quintett.de/en/ulf-guido-schfer-1/Guido SchäferNDR Hannover Pops OrchestraRadio-Philharmonie Hannover Des NDRBläsersolisten Der Deutschen Kammerphilharmonie BremenArte EnsembleMa'alot QuintettEnsemble AchtTrio Roseau + +7974720Robert RignoldRobert "Bob" RignoldBob began his musical life as a cornet player in a Salvation Army Band. In 1949 he raised [a=The Northern Command Band]. Between 1950 and 1952 he studied at the Royal Military School of Music, Kneller Hall. While studying he was a member of the [a=Trumpeters Of The Royal Military School Of Music] and performed at the Coronation of [a=Queen Elizabeth II]. He was the first Bandmaster of [a=The Band Of The Royal Military College] when it was raised in 1954. After service as Bandmaster of [a=The 1st Recruit Training Battalion Band], he retired from the Army. Needs VoteW.O.1 R. Rignold L.T.C.L., B.B.C.M., L.L.C.M.WO.R.RignoldTrumpeters Of The Royal Military School Of MusicThe Band Of The Royal Australian EngineersThe Band Of The Royal Military CollegeSt. Mary's District Band ClubThe 1st Recruit Training Battalion Band + +7975757Josef FuchslugerAustrian classical violinist.Needs VoteBruckner Orchestra Linz + +7975758Svetlana TeplovaClassical violinist.Needs VoteBruckner Orchestra Linz + +7975847Christoph Schmidt (7)Christoph Schmidt (born 1962) is a German classical double bassist and music professor.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksRadio-Sinfonieorchester StuttgartOrchester der Bayreuther Festspiele + +7975848Mayra SalinasClassical violinist. +Former member of the [a=London Symphony Orchestra] (1998).Needs VoteMayra-Inke SalinasMayra-Adjei SalinasLondon Symphony OrchestraTrio Echnaton + +7977880Irving DeutschMembers of vocal group [a313024]. +Twin brother of [a=Murray Deutsch].Needs VoteThe QuintonesThe Blue Flames (4) + +7977881Lloyd HundlingAmerican trumpeter and vocalist. +Born: 1908 Died: Aug. 21, 1941 (33 years old) Culver City, California. +He died in a car accident while driving with [a335571]. +Member of vocal group The Quintones.Needs VoteThe Quintones + +7977882Murray DeutschAmerican singer, music executive and publisher. +Twin brother of [a7977880] and faher of [a2148458]. +Member of vocal group [a313024]. +General manager of the music division at [l4898] in the mid-60s. +Head of the publishing companies [l291585] (50s) and [l295098] (70s). +Founder/Owner of [l352738] (1976). +Retired from music industry in 1995. + +Born: March 23, 1920 in Bronx, New York City, New York. +Died: October 2, 2010 in Scottsdale, Arizona.Needs Votehttps://www.imdb.com/name/nm0222092/The QuintonesThe Blue Flames (4) + +7977883Patti Davis (4)Member of vocal group The Quintones.Needs VoteThe Quintones + +7980168Bart CromheekeClassical flautist.Needs VoteOrchestre Du Théâtre Royal De La Monnaie + +7981397Alfred BürgschwendtnerAlfred Bürgschwendtner (23 November 1928 - 20 June 2010) was an Austrian classical double bassist and Professor of double bass at the [l326345].Needs VoteAlfred BuergschwendtnerCamerata Academica SalzburgDas Mozarteum Orchester SalzburgDie Salzburger Mozartspieler + +7985111Vukan MilinVukan Milin (born 1972) is a German flute player.Needs VoteOrchester der Bayreuther FestspieleKölner KammerorchesterOrchestre Mondial Des Jeunesses MusicalesNiedersächsisches Staatsorchester Hannover + +7989212Alexander NaderNeeds VoteDie Wiener SängerknabenChorus Viennensis + +7989213Thomas PucheggerNeeds VoteDie Wiener SängerknabenChorus Viennensis + +7991243David RejanoDavid Rejano CanteroClassical trombonistNeeds VoteDavid CanteroDavid Rejano CanteroLos Angeles Philharmonic Orchestra + +7991315Angela MeadeItalian Soprano voocalistNeeds Vote + +7995712Casey RipponCasey Rippon is an Australian horn player. +Needs VoteBayerisches StaatsorchesterSydney Symphony OrchestraAustralian Youth OrchestraFrankfurter Opern- Und MuseumsorchesterAustralian World Orchestra + +7995715Tahlia PetrosianTahlia Petrosian is an Australian violist.Needs Votehttps://www.tahlia-petrosian.com/Gewandhausorchester LeipzigNeues Bachisches Collegium Musicum LeipzigAustralian World Orchestra + +7995716Brielle ClapsonClassical violinist.Needs VoteSydney Symphony Orchestra + +7995718Scott Stiles (2)Classical violinist.Needs VoteScott Allan StilesDas Mozarteum Orchester Salzburg + +8000171Ayse OsmanClassical double-bassistNeeds VoteRoyal Philharmonic Orchestra + +8000310Michael SundellBassoonist.Needs VoteCincinnati Philharmonia OrchestraOrchestre symphonique de Montréal + +8000314Alexander ReadClassical violinist.Needs VoteOrchestre symphonique de Montréal + +8003124Ifan WilliamsCanadian cellist, and Professor of Cello. Born 10 July 1945, in Halifax, Nova Scotia, Canada. +He studied at the [l484524] (1964-1966). Former member of the [a=National Youth Orchestra Of Canada] (1961-1962), [a=Bournemouth Symphony Orchestra] (1967), [a=New Philharmonia Orchestra] (1968), and the [a=London Symphony Orchestra] (1969). Upon his return to Canada in 1970, he came to University of New Brunswick, became the first resident cellist in Canadian universities, and was the cellist for the [b]UNB Pach String Quartet[/b] for 3 year. In the meantime, he was also the Principal Cello of [a=The Atlantic Symphony Orchestra], [url=https://www.discogs.com/artist/3425939-Kitchener-Waterloo-Symphony]Kitchener-Waterloo Symphony Orchestra[/url], and [a=The Stratford Ensemble]. After leaving UNB, he played in chamber groups such as [a=Quatuor Classique De Montréal], [a=Musica Camerata Montreal], and [a=Canadian Chamber Ensemble]. He has been performing with [b]Nova Sinfonia[/b] and is a member of the [b]Perseus Trio[/b]. He has been director of the Maritime Conservatory of Performing Arts and the Musique Royal and Opera Nova Scotia. He has also been a Professor of Cello at Mount Allison University and the École Normale de Musique in Montreal.Needs Votehttps://www.unb.ca/cel/enrichment/music/the-past/musicians/ifan-williams.htmlhttps://novasinfonia.ca/artists/Ifan-Williams.htmlhttp://musiqueroyale.com/event/2019/2019-02-10-perseus-trio/https://de.wikipedia.org/wiki/Ifan_Williams_(Cellist)London Symphony OrchestraNew Philharmonia OrchestraBournemouth Symphony OrchestraQuatuor Classique De MontréalCanadian Chamber EnsembleKitchener-Waterloo SymphonyMusica Camerata MontrealNational Youth Orchestra Of CanadaThe Stratford EnsembleThe Atlantic Symphony OrchestraBrunswick String Quartet + +8010053Eduardo Meneses (2)PercussionistNeeds VoteEddie MenesesLos Angeles Philharmonic OrchestraSan Diego Symphony + +8012361Hitoshi Tamada Japanese tenor, born 12 September 1984Needs Votehttps://www.facebook.com/hitoshi.tamada.9Collegium Vocale + +8013735Emily HultmarkClassical bassoon player. +Daughter of [a3337551] and [a=Carol Hultmark].Needs Votehttps://www.rcm.ac.uk/woodwind/professors/details/?id=95252https://www.stenastiftelsen.se/wp-content/uploads/2014/02/stena15_2011.pdfHallé OrchestraPhilharmonia OrchestraThe Academy Of St. Martin-in-the-Fields + +8013736Laura JellicoeClassical flute player.Needs Votehttps://www.rncm.ac.uk/people/laura-jellicoe/The Academy Of St. Martin-in-the-Fields + +8013737Milena SimovicViola player.Needs Votehttps://milenasimovic.com/about-2/The Academy Of St. Martin-in-the-FieldsUnited Strings Of Europe + +8018875Steve Kretzmer (2)1920s jazz pianist and composer.Needs VoteKretzmerS. KretzmerNapoleon's EmperorsAlex Hyde Mit Seinem New Yorker Original Jazz Orchester + +8019748Michael Thornton (8)Credited with alphorn on a performance of Symphony No.1 by Johannes Brahms.Needs VoteLondon Philharmonic Orchestra + +8021254Christian DollfußChristian Dollfuß (born 1969) is a German clarinetist. +Needs VoteStaatskapelle DresdenDas Folkwang-KammerorchesterGürzenich-Orchester Kölner PhilharmonikerDuisburger PhilharmonikerTrio Contrasts + +8023810Vital Julian FreySwiss harpsichordistNeeds Votehttp://www.vitalfrey.com/index/start.htmlFestival Strings LucerneCamerata BernAntichi Strumenti + +8025379Benjamin Lambert (4)Credited as violinist.Needs VoteColeman Hawkins And His Orchestra + +8025886Pierre DumoussaudFrench bassoonist and conductor (born 1990)Needs Votehttps://www.opera-bordeaux.com/pierre-dumoussaud-710https://www.angers-nantes-opera.com/biographie-de-pierre-dumoussaudhttps://www.lagence-management.com/en/conductors/pierre-dumoussaud/https://www.facebook.com/pierre.dumoussaudOrchestre National Bordeaux Aquitaine + +8026958Ruud BastiaanseClassical double bassist.Needs VoteConcertgebouw Chamber Orchestra + +8026959Jan van der VlietClassical hornist.Needs VoteConcertgebouw Chamber Orchestra + +8026960Peter SteimannClassical hornist.Needs VoteConcertgebouw Chamber Orchestra + +8026962Tomoko KuritaClassical violinist.Needs VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +8026963Kirsti GoedhartKirstina-Jacoba GoedhartDutch classical violinist, born March 27, 1945 in UtrechtNeeds VoteKrisi GoedhartConcertgebouworkestConcertgebouw Chamber Orchestra + +8034776William Bender (2)American violist, and teacher. Born in Nashville, Tennessee. +He studied at the [l477743] (2011-2015) and [l282050]. He was principal viola of the orchestras at both schools. Prior to moving to London, he played regularly with [a=The Cleveland Orchestra] and [a=Pittsburgh Symphony Orchestra]. No. 3 Viola with the [a=Philharmonia Orchestra].Needs Votehttps://www.linkedin.com/in/william-bender-23aa283b/https://philharmonia.co.uk/bio/william-bender/https://www.musicteachers.co.uk/teacher/ff14fe06807256e95b84https://www.playwithapro.com/live/William-Bender/Philharmonia OrchestraThe Cleveland OrchestraPittsburgh Symphony OrchestraThe Juilliard OrchestraCleveland Institute Of Music Orchestra + +8039954Daniel Molloy (2)Double bass playerNeeds VoteBBC Symphony Orchestra + +8040392Paul Clark (30)Hard Dance DJ & Producer from Bath, England. Co-owner of [l1498404]Needs Votehttps://www.paulclarkmusic.co.ukhttps://soundcloud.com/paulclarkofficialhttps://www.facebook.com/paulclarkofficial/Paul 'DJ CLK' ClarkPaul 'DJCLK' ClarkPaul ClarkPaul Clark (CLK)Paul Clark (UK )Paul Clark (UK)Paul Clark (Uk)CLK (6) + +8042745Roger Davenport (4)Trombone player.Needs VoteSaint Louis Symphony Orchestra + +8048858Chœur de L'Opéra National Du RhinFrench chorus based in Strasbourg, they use to perform both great classics as well as rarities or world premieres, they regularly perform with the Orchestre symphonique de Mulhouse and the Orchestre philharmonique de Strasbourg. +Chorusmaster: [a3023376] (1972 to 1980), .., [a3508338] (1983), [a6870093] ( 2013 to 2018), [a7723101] since 2018Needs Votehttps://www.operanationaldurhin.eu/fr/l-opera-national-du-rhin/le-choeur-5b238d26d8d38https://www.olyrix.com/artistes/12898/choeur-de-lopera-national-du-rhinChoers De L'Opera Du RhinChoeur de L’Opera du RhinChoeur de L’Opéra du RhinChoeurs De L' Opéra Du RhinChoeurs De L'Opera Du RhinChoeurs De L'Opéra Du RhinChoeurs de L'Opera Du RhinChoeurs de L'Opéra Du RhinChoeurs de l'Opera du RhinChoeurs de l'Opéra du RhinChorus Of L'Opera Du RhinChorus Of L'Opéra Du RhinChorus Of L'Opéra du RhinChorus Of The Opera Du RhinChorus Of The Opéra Du RhinChorus Of The Rhine OperaChorus of L'Opéra du RhinChœur De L'Opéra Du RhinChœur de L'Opéra Du RhinChœur de L'Opéra du RhinChœur de l'OnRChœur de l'Opéra Du RhinChœurs De L'Opera Du RhinChœurs De L'Opéra Du RhinChœurs De L’Opéra Du RhinChœurs de L'Opéra Du RhinChœurs de l'Opéra du RhinCoeur de L'Opéra Du RhinCoro De L'Opera Du RhinCoro Dell'Opéra Du RhinCoro Dell’Opera Du RhinCoro dell'Opera du RhinLa Maîtirse de L'Opéra National du RhinLes Chœurs De L'ONRLes Chœurs De L'Opéra National Du RhinLes Chœurs De L'Opéra National Du RhinLes Chœurs de L'opéra National Du RhinRhine Opera ChorusSolistes, Chœurs De L'Opéra Du RhinSoloists And Chorus Of The Opera Du RhinХор Страсбургской ОперыGünter WagnerSandrine AbelloAlessandro Zuppardo + +8050041Ricky TrentJazz trumpeter.Needs VoteBenny Goodman And His Orchestra + +8052157Jimmie's Blue Melody BoysNeeds Major ChangesJimmie Noone's Apex Club Orchestra + +8052972Thomas PeatfieldClassical violinist. +Former member of the [a=London Symphony Orchestra] (1912-1920) and Leader of the [a=BBC Symphony Orchestra].Needs VoteLondon Symphony OrchestraBBC Symphony Orchestra + +8055651Christoph Eberle (3)Christoph Eberle is a German classical cellist.Needs VoteKurpfälzisches Kammerorchester Mannheim + +8058438Domingo MancusoArgentinean violinist.Needs VoteLeopoldo Federico Y Su Orquesta Típica + +8058439Eduardo MataruccoArgentinean violinist.Needs VoteEduardo MattaruccoLeopoldo Federico Y Su Orquesta Típica + +8058440José SarmientoArgentinean violinist.Needs VoteLeopoldo Federico Y Su Orquesta Típica + +8058441Simón BroitmanArgentinean violinist.Needs VoteLeopoldo Federico Y Su Orquesta TípicaRaúl Garello Y Su Orquesta Típica + +8058754Brian PrechtlAmerican percussionist, composer and educator.Needs VoteBaltimore Symphony Orchestra + +8060168James Christie (6)1920s American Jazz trumpeter.Needs VoteOriginal Indiana Five + +8060654George Wallington SeptetNeeds Major ChangesGeorge Wallington BandGerry MulliganCurly RussellBrew MooreKai WindingCharlie PerryJerry Hurwitz + +8061498Eric Anderson (31)Renaissance musician, played with [i]Piffaro[/i] 1989-1995Needs VoteEAPiffaro, The Renaissance Band + +8061820Renaud TaupinardClassical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +8065293Virginia ShawEnglish Oboist + +A member of the Hallé Orchestra in Manchester. +Joint first prize winner in the 1995 Isle of Wight International Oboe Competition. +A strong advocate of contemporary music, she is a founding member of Okeanos, the new music collective based in London.Needs VoteHallé Orchestra + +8068567Thibault LepriClassical percussionist.Needs VoteT. LepriOrchestre National Bordeaux Aquitaine + +8068940Sihvo V. JuhaniNeeds Major ChangesT. SihvoT.SihvoV. SihvoV.Sihvo + +8068944Jodie BeversJodie Bevers was an American cellist. She passed away in January 2026 at the age of 81-Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +8072849Bernhard BiberauerBernhard Biberauer (born 1964) is an Austrian violinist. +Bom in Oberösterreich near Linz in 1964, he has studied Alfred with Prof. Staar, a member of Die Wiener Philharmoniker since 1974, Biberauer won the first place in 1980 in the Karl Bōhm Competition, organized by the philharmonic. He became a member of the first violinists at the Vienna State Opera Orchestra in Vienna in 1984. Since 1987 till now, he has been one of the first violinists of Die Wiener Philharmoniker. Beginning in 1990, he has performed four times in Japan as the first violinist of Das Gustav-Mahler Quartett, with great success. He often collaborates with Wiener ORF Orchester, while playing as a soloist in Austria and abroad. He also participates Die Wiener Sinfonietta as the concertmaster. He is very active in symphonic orchestra, chamber music, and as a soloist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerBiedermeier Ensemble WienGustav Mahler Quartett + +8073332Frank-Michael GuthmannFrank-Michael Guthmann (born 1975) is a German cellist.Needs VoteMahler Chamber OrchestraSWR Sinfonieorchester Baden-Baden Und FreiburgSWR SymphonieorchesterTrio Echnaton + +8075093Алексей ХуторянскийАлексей ХуторянскийAlexey Khutoryansky - Russian violinist.Needs Votehttps://rno.ru/rno_musicians?mus=Aleksei_Hutoryanskiihttp://www.chamberorchestrakremlin.ru/orch/05r.htmAleksey KhutoryanskiyAlexey KhutorianskyAlexey KhutoryanskiyRussian National OrchestraMusica Viva Chamber Orchestra + +8075155Jamie Shield (2)British hornistNeeds VoteScottish Chamber Orchestra + +8075156Colin HysonPercussionistNeeds VoteScottish Chamber Orchestra + +8075157Jake FawcettPercussionistNeeds VoteScottish Chamber Orchestra + +8075158Kate OpenshawBritish percussionistNeeds VoteScottish Chamber Orchestra + +8075159Alasdair Kelly (2)TimpanistNeeds VoteAlasdair KellyScottish Chamber Orchestra + +8075160Loan CazalFrench viola instrumentalistNeeds Votehttps://www.facebook.com/loan.cazalL'Orchestre National de LilleScottish Chamber OrchestraLibertalia Ensemble + +8075161Hatty HaynesBritish violinistNeeds Votehttps://www.hattyhaynes.comLa SerenissimaLondon Mozart PlayersScottish Chamber Orchestra + +8075162Kana KawashimaClassical violinistNeeds VoteScottish Chamber Orchestra + +8076183Larry Anderson (11)Credited as trombonist.Needs VoteLouis Armstrong And His Orchestra + +8079090Michael MitterlehnerMichael Mitterlehner-RommMichael Mitterlehner is an Austrian drummer and percussionist. +Needs VoteDas Mozarteum Orchester SalzburgÖsterreichisches Ensemble Für Neue Musik + +8079155Wolfgang SpitzerWolfgang Spitzer (born 1964) is an Austrian double bassist and composer. +Needs VoteDas Mozarteum Orchester Salzburg + +8083480Maiu MägiEstonian classical violinist.Needs VoteEstonian National Symphony Orchestra + +8085022Orion MillerDouble bassist.Needs VoteSan Francisco Symphony + +8093299Emilie HaagenrudNorwegian classical violinist.Needs VoteBergen Filharmoniske Orkester + +8093383Bibi BlackUS classical trumpet player from Huntsville, Alabama. + +She began to study trumpet when she was 11 years old. She furthered her musical education by attending the Interlochen Arts Academy and then went on to receive a Bachelor's degree in Music from the Curtis Institute of Music. During her classical career, Bibi Black has completed a few solo recordings, won the Philadelphia Orchestra's Young Artists Competition, and the Grahm-Stahl Competition. Before reaching her 24th birthday, Black had landed a spot as Second Trumpet in the Philadelphia Orchestra. She was the first female to ever hold that position. She has also toured worldwide and performed with the Vancouver Symphony, the London Philharmonic Orchestra, the Camerate Musica of Berlin, and others.Needs Votehttps://www.allmusic.com/artist/bibi-black-mn0001899928The Philadelphia Orchestra + +8094817Gaetano D'EspinosaGaetano D'Espinosa (born 1978 in Palermo) is an Italian violinist and conductor. He was a member of the [a578737] from 2002 to 2008. +Needs VoteStaatskapelle Dresden + +8098265Hendrik HeilmannGerman pianist, born in Berlin.Needs VoteTonhalle-Orchester Zürich + +8099131Håkan Wikström (2)Violinist and ConductorNeeds VoteHakan WikstromThe English Baroque Soloists + +8100841Jordann MoreauFrench classical Bass & Baritone vocalistNeeds Votehttps://www.linkedin.com/in/jordann-moreau-28b8364a/?originalSubdomain=frLe Concert SpirituelLes Chantres Du Centre De Musique Baroque De Versailles + +8100842Samuel GuibalFrench classical bass vocalist.Needs VoteLe Concert SpirituelLes Chantres Du Centre De Musique Baroque De VersaillesEnsemble Les Surprises + +8100845Xavier MiquelClassical woodwind instrumentalistNeeds VoteLe Concert SpirituelAmarillisOpera FuocoEnsemble Les SurprisesLes Passions + +8101223Benjamin Vonberg-ClarkClassical tenor vocalistNeeds VoteThe Sixteen + +8101842Catherine de VencayCatherine de VençayClassical cellist.Needs VoteOrchestre Philharmonique De Radio France + +8101845Florence OryClassical violinist.Needs VoteOrchestre Philharmonique De Radio France + +8101846François LaprevoteFrançois LaprévoteClassical violinist.Needs VoteFrançois LaprevotteFrançois LaprévoteOrchestre Philharmonique De Radio France + +8101848Michaela SmoleanMihaëla SmoleanRomanian classical violinist, born in 1966 in Bucharest.Needs VoteMihaela SmoleanOrchestre Philharmonique De Radio France + +8102701Henry TongClassical violinist from TaiwanNeeds Votehttps://www.henrytongviolin.com/The Academy Of Ancient MusicOrchestra Of The Age Of EnlightenmentIrish Baroque OrchestraThe MozartistsThe Lanyer EnsembleSpiritato! + +8104729Андрей КолоколовAndrey KolokolovAndrey Kolokolov is a russian trumpeter, born in Moscow in 1971.Needs VoteRussian National Orchestra + +8104730Леонид КоркинLeonid KorkinLeonid Korkin is a russian trumpeter.Needs VoteRussian National Orchestra + +8107224Billy Wilson (18)1930's vocalistCorrecthttps://adp.library.ucsb.edu/names/351153The Mound City Blue BlowersBen Bernie OrchestraDick Stabile And His Orchestra + +8107276Dave Mathes (3)Sax playerNeeds VoteBenny Goodman And His Orchestra + +8108553Joachim HansGerman classical bassoonistNeeds VoteStaatskapelle DresdenDresdner Oktett + +8108554Wolfram GroßeWolfram Große (born 1966) is a German clarinetist. +Needs VoteWolfram GrosseBerliner Sinfonie OrchesterStaatskapelle DresdenOrchester der Bayreuther FestspieleFrankfurter Opern- Und MuseumsorchesterBläserquintett Der Staatskapelle DresdenDresdner Oktett + +8108774Sylvain SeaillesSylvain SéaillesBorn in 1987, Sylvain has been playing the viola since the age of six.Needs VoteSylvain SéaillesPhilharmonia OrchestraQuatuor VarèseTrio Varèse + +8110382Elisabeth Paul (2)Classical mezzo-soprano and alto vocalistNeeds Votehttps://twitter.com/lissiepaulThe SixteenTenebrae (10)Ensemble Pro Victoria + +8110383Sophie OverinBritish classical alto vocalist.Needs VoteLondon Voices + +8112596Massimiliano ToniItalian classical harpsichord, organ and carillion player.Needs VoteConcerto KölnFreiburger BarockorchesterArcadia EnsembleEnsemble SeicentonovecentoL'arte Del Mondo + +8113522Daniel G. SmithClassical double bassist.Needs VoteSan Francisco Symphony + +8113524Amos YangCellist formerly in the Pacific North-West and currently in San Francisco on the faculty of the San Francisco Conservatory of Music (SFCM), and playing for the San Francisco Symphony Orchestra. He is married to violinist [a=Alicia Yang].Needs Votehttps://www.sfsymphony.org/Data/Event-Data/Artists/Y/Amos-Yanghttps://www.sfsymphony.org/Discover-the-Music/Articles-Interviews/Articles/MOM-Amos-YangSan Francisco SymphonySeattle Chamber Orchestra + +8113525Shu-Yi PaiClassical cellist.Needs VoteSan Francisco Symphony + +8113532Nick PlatoffClassical trombonist.Needs Votehttps://nickplatoff.com/Nicholas PlatoffSan Francisco Symphony + +8113536Jeffrey Anderson (5)US West Coast tuba playerNeeds VoteSan Francisco Symphony + +8113539Matthew Young (9)Classical violist.Needs VoteSan Francisco Symphony + +8113540Adam SmylaClassical violist.Needs VoteSan Francisco Symphony + +8113541Raushan AkhmedyarovaClassical violinist, born in Kazakhstan.Needs VoteSan Francisco Symphony + +8113596Joseph ConyersAmerican classical double bassist.Needs Votehttps://discoverdoublebass.com/joseph-conyersThe Philadelphia Orchestra + +8113628Carlo SchützeGerman bassoonist.Needs VoteVirtuosi Saxoniae + +8118755Tobias LeaTobia Lea is an Australian violist. Now based in Austria.Needs Votehttp://www.tobiaslea.com/Orchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +8136239Wayne BalmerAustin Wayne BalmerWayne Balmer (1921 - 2010) was an American classical double bassist. He was a member of the [a837562] from 1956 to 1992.Needs VoteChicago Symphony OrchestraSan Antonio Symphony Orchestra + +8136240Leonore GlazerLeonore B. GlazerLeonore Glazer is an American classical cellist. She was a member of the [a837562] from 1964 to 1993.Needs VoteChicago Symphony Orchestra + +8144620Taverner Consort & ChoirNeeds Major ChangesTavener Consort & ChoirTaverner Consort And Choir + +8146428Duncan Johnstone (2)Duncan Johnstone (15 September 1957 – 7 December 2025) was a Scottish violist. He was the son of [a1182753].Needs VoteRoyal Scottish National OrchestraOrchestra Of The Royal Opera House, Covent Garden + +8154579Beate AanderudGerman oboist, English horn player, oboe de amore player and professor.Needs VoteBeate AnderudKungliga HovkapelletOrchester der Bayreuther FestspieleBruckner Orchestra LinzFrankfurter Opern- Und MuseumsorchesterNDR SinfonieorchesterNDR Elbphilharmonie Orchester + +8158176Heli JürgensonEstonian chorusmaster, born May 9, 1969 in Kiviõli.Needs Votehttps://www.epcc.ee/heli-jurgenson/Estonian Philharmonic Chamber Choir + +8160194Berry PeritzBernhard PeritzSwiss drummer and bandleader of [a1815855] and [a6351618]. Brother of [a1456185]. Born 1911, died 2000.Needs Votehttps://www.fonoteca.ch/cgi-bin/oecgi3.exe/inet_jazzbionamedetail?NAME_ID=55303.011https://www.jazzdocumentation.ch/oh_peritz.htmlBenny PeritzBernard PeritzBerryBerry PerlitzThe Berry'sPiero Paganelli TrioBerry Et Son Orchestre + +8160262Marine Chaboud-CrouzazClassical mezzo-soprano vocalistNeeds VoteMarine ChaboudChoeur de Chambre de Namur + +8160365Guglielmo Dandolo MarchesiGuglielmo Dandolo Marchesi is an Italian violinist. +Needs VoteGürzenich-Orchester Kölner PhilharmonikerAlinde QuartettVerita Baroque Ensemble + +8161222Yukiko TezukaYukiko Tezuka is a Japanese violinist. Now based in Austria. +Needs VoteCamerata Academica SalzburgOrchestre D'AuvergneKammerorchester Basel + +8165792Christopher ElchicoAmerican saxophonist and clarinetist.Needs Votehttps://www.bso.org/profiles/christopher-elchicoBoston Symphony OrchestraBarkada Saxophone Quartet + +8168710Fredrik Mattsson (3)Tenor vocalistNeeds VoteRadiokören + +8171014William White (17)Credited as jazz saxophone player.Needs VoteWilliam White Jr.Duke Ellington And His Orchestra + +8172745Claudia Stein (2)German flutistNeeds VoteStaatskapelle Berlin + +8172827Kirsty LovieClassical violinist.Needs VoteCity Of Birmingham Symphony Orchestra + +8173452Suzanne VerburgDutch classical alto vocalist.Needs VoteCappella Amsterdam + +8173455Mari-Liis VihermäeClassical flautist.Needs VoteEstonian National Symphony Orchestra + +8173458Erki MöllerClassical trumpeter.Needs VoteEstonian National Symphony Orchestra + +8173459Kenti KadarikClassical violist.Needs VoteEstonian National Symphony Orchestra + +8173460Marika HellermannClassical violinist.Needs VoteMarika HellermanEstonian National Symphony Orchestra + +8173461Sirje PalialeClassical violinist.Needs VoteEstonian National Symphony Orchestra + +8173462Triin KrigulClassical violinist.Needs VoteEstonian National Symphony Orchestra + +8173463Ülle AlladeClassical violinist.Needs VoteEstonian National Symphony Orchestra + +8173464Kristiina KunglaClassical violinist.Needs VoteEstonian National Symphony Orchestra + +8173465Kätlin IvaskClassical violinist.Needs VoteEstonian National Symphony Orchestra + +8173466Piret SandbergClassical violinist.Needs VoteEstonian National Symphony Orchestra + +8173467Tõnis Pajupuu (2)Classical violinist.Needs VoteEstonian National Symphony Orchestra + +8173469Katrin OjaClassical cellist.Needs VoteEstonian National Symphony Orchestra + +8181268Geir LuhtEstonian bass vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +8181269Olari ViikholmEstonian bass-baritone vocalist.Needs Votehttps://www.linkedin.com/in/olariviikholm/https://www.facebook.com/profile.php?id=61574105081913https://www.epcc.ee/inimesed/olari-viikholm/Estonian Philharmonic Chamber Choir + +8181450Jaka StadlerJaka Stadler is a classical cellist from Slovenia. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksGustav Mahler Jugendorchester + +8181666Daniel HandsworthSwedish bassoon player, born in 1996.Needs VoteSveriges Radios Symfoniorkester + +8182544Malin KlingborgSwedish classical oboistNeeds VoteSveriges Radios Symfoniorkester + +8184637José Maria BlumenscheinJosé Maria Blumenschein (born 1985 in Freiburg, Germany) is a German-Brazilian violinist. + +Studied in Germany at Pfluegar Institute for gifted children prior to studies at the Curtis Institute of Music where he was mentored by Joseph Silverstein.Needs VoteJosé M. BlumenscheinJosé M. BlumenscheinWDR Sinfonieorchester KölnOrchester Der Wiener StaatsoperMahler Chamber OrchestraWiener Philharmoniker + +8184761Eryl RoyleWelsh classical soprano vocalist.Needs VoteChorus Of The Royal Opera House, Covent Garden + +8185011Petra SchwiegerGerman violinistNeeds VoteStaatskapelle BerlinErlenbusch Quartet + +8189312Saeko OgumaJapanese classical violistNeeds VoteConcertgebouworkest + +8197109Christine GearClassical oboist.Needs VoteEnglish Chamber Orchestra + +8197110John Clementson (3)Classical oboist.Needs VoteEnglish Chamber Orchestra + +8198812Jenny BoulangerFrench double-bassistNeeds VoteOrchestre Philharmonique De Monte-CarloNouvel Ensemble Instrumental Du Conservatoire National Supérieur De Paris + +8198817Delphine MillourFrench viola playerNeeds VotePulcinellaNouvel Ensemble Instrumental Du Conservatoire National Supérieur De ParisLe Concert D'AstréeLe Poème HarmoniqueLe Concert de la Loge + +8198900Stefano Monti (2)Italian classical bass clarinet player.Needs VoteOrchestra Del Teatro Alla Scala + +8198901Renato MusiItalian classical bassoon player.Needs VoteOrchestra Del Teatro Alla Scala + +8198902Mario Moretti (4)Italian classical clarinet player.Needs VoteOrchestra Del Teatro Alla Scala + +8198903Miles TurollaItalian classical clarinet player.Needs VoteOrchestra Del Teatro Alla Scala + +8198904Paolo Del Pistoia (2)Italian classical clarinet player.Needs VoteOrchestra Del Teatro Alla Scala + +8198905Carlo CapriataItalian classical double bass player.Needs VoteOrchestra Del Teatro Alla Scala + +8198906Luigi Del CarmineItalian classical double bass player.Needs VoteOrchestra Del Teatro Alla Scala + +8198907Luigi GramaticaItalian classical double bass player.Needs VoteOrchestra Del Teatro Alla Scala + +8198908Oreste Canfora (2)Italian classical contrabassoon player.Needs VoteOrchestra Del Teatro Alla Scala + +8198909Alfonso FededegniItalian english horn player.Needs VoteOrchestra Del Teatro Alla Scala + +8198910Aldo GaraviniItalian classical flute player.Needs VoteOrchestra Del Teatro Alla Scala + +8198911Giuseppe Rocca (2)Italian classical flute player.Needs VoteOrchestra Del Teatro Alla Scala + +8198912Lidia Borri MottolaItalian classical harp player.Needs VoteOrchestra Del Teatro Alla Scala + +8198913Alberto MorettiItalian classical horn player.Needs VoteOrchestra Del Teatro Alla Scala + +8198914Michelangelo MojoliItalian classical horn player.Needs VoteOrchestra Del Teatro Alla Scala + +8198915Francesco RanzaniItalian classical oboe player.Needs VoteOrchestra Del Teatro Alla Scala + +8198916Angelo AbruzziItalian percussionistNeeds VoteOrchestra Del Teatro Alla Scala + +8198917Domenico RenzettiItalian percussionist.Needs VoteOrchestra Del Teatro Alla Scala + +8198918Renato Romano (2)Italian classical viola player.Needs VoteOrchestra Del Teatro Alla Scala + +8198919Edgardo MacchinizziItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198920Gianni PorzioItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198921Giuseppe VolpatoItalian classical violinist.Needs VoteOrchestra Del Teatro Alla ScalaFonè Ensemble + +8198922Luigi GoviItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198923Mariano FrigoItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198924Michele Seccia-pesceItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198925Vittorio ErniniItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198926Walter FalcomerItalian classical violinist.Needs VoteOrchestra Del Teatro Alla Scala + +8198927Luigi VecciaItalian classical cello player.Needs VoteOrchestra Del Teatro Alla Scala + +8198928Walter CalettiItalian classical cellist.Needs VoteOrchestra Del Teatro Alla Scala + +8202275ZAWNeeds Major Changes + +8202790Helen StoreyClassical bassoonistNeeds VoteLondon Philharmonic OrchestraRoyal Philharmonic OrchestraThe Galliard Ensemble (2) + +8202791Richard IonScottish classical oboe and bassoon player. Principal bassoon with the [a=Royal Philharmonic Orchestra] (2021 - present).Needs Votehttps://www.rpo.co.uk/news-and-press/513-welcome-to-new-principal-bassoon-richard-ionRoyal Philharmonic Orchestra + +8202792Sonia SielaffClassical clarinetist.Needs VoteRoyal Philharmonic Orchestra + +8202794Finlay BainClassical hornist.Needs VoteLondon Symphony OrchestraRoyal Philharmonic OrchestraYoung Musicians Symphony Orchestra + +8202796Rupert WhiteheadClassical trombonist.Needs VoteRoyal Philharmonic Orchestra + +8204727Mitglieder Des Symphonie-Orchesters Des Bayerischen RundfunksMitglieder Des Symphonieorchesters Des Bayerischen RundfunksIn English, Members of the Bavarian Radio Symphony Orchestra.Needs VoteLeden Van Het Beiers Radio-Symfonie-orkestLeden van het Beiers Radio-Symfonie-OrkestMember Of Symphony Orchestra Of The Bavarian RadioMember Of Symphony Orchestra Of The Bavarian State RadioMembers De L'Orchestre De La Radio BavaroiseMembers Of Symphony Orchestra Of The Bavarian RadioMembers Of The Bavarian Radio OrchestraMembers Of The Bavarian Radio SymphonyMembers Of The Bavarian Radio Symphony OrchestraMembers Of The Symphonieorchester Des Bayerischen RundfunksMembers of the Bavarian Radio Symphony OrchestraMembers of the Symphony Orchestra of the Bavarian Broadcasting CorporationMembres De L'Orchestre Symphonique De La Radiodiffusion BavaroiseMiglieder Des Bayerischen RundfunkorchestersMitglieder Des Bayerischen Rundfunk-OrchestersMitglieder Des Bayerischen RundfunkorchestersMitglieder Des Orchesters Des Bayerischen RundfunksMitglieder Des Sinfonie-Orchesters Des Bayerischen RundfunksMitglieder Des Symphonieorchesters Des Bayerischen RundfunksMitglieder Vom Symphonie-Orchester Des Bayerischen RundfunksMitglieder Vom Symphonieorchester Des Bayerischen RundfunksMitglieder des Bayerischen Rundfunk OrchestersMitglieder des Sinfonie-Orchester des Bayerischen RundfunksOrchesterSolisten Des Symphonieorchesters Des Bayerischen RundfunksSoloists Of Bavarian Radio Symphony OrchestraSymphonie-Orchester Des Bayerischen Rundfunks + +8208208Walter BlovskyWalter BlovskyClassical violist, born 29 July 1939 in Vienna, Austria. +He was a member of the [a754974] from 1966 to 2004.Needs VoteProf. Walter BlovskyWalter BlowskyOrchester Der Wiener StaatsoperWiener PhilharmonikerDie Wiener Solisten + +8208834Helmut ZangerleHelmut Zangerle is an Austrian flute player. +Needs VoteDas Mozarteum Orchester Salzburg + +8210817Josef RauttenbacherNeeds Major ChangesRauttenbacher + +8212561Alexander Kovalev (3)Russian cellist, born in 1992.Needs VoteStaatskapelle BerlinCellists Of The Staatskapelle Berlin + +8212562Claire Sojung HenkelClassical cellistNeeds VoteStaatskapelle BerlinCellists Of The Staatskapelle Berlin + +8212563Isa Von WedemeyerClassical cellistNeeds VoteStaatskapelle BerlinCellists Of The Staatskapelle Berlin + +8212564Nikolaus PopaHungarian cellist, born in 1969.Needs VoteStaatskapelle BerlinCellomaniaEsBé-QuartettCellists Of The Staatskapelle Berlin + +8212565Teresa BeldiClassical cellistNeeds VoteStaatskapelle BerlinCellists Of The Staatskapelle Berlin + +8212566Otto Tolonen (2)Classical bassistNeeds VoteStaatskapelle Berlin + +8213068Gonçal ComellasGonçal Comellas FàbregaSpanish violin player and conductor (b. 1945), active since 1962. +Needs Votehttps://ca.wikipedia.org/wiki/Gon%C3%A7al_Comellas_F%C3%A0bregaGoncal ComellasOrchestra Di Padova E Del Veneto + +8214476William Moore (20)Tuba playerNeeds VoteBess MooreBass MooreJelly Roll Morton And His Orchestra + +8218939Elke Janssens (2)Belgian classically trained soprano vocalist & vocal coach. + +Do not confuse with [a=Elke Janssens], artistic coordinator at [l=Needcompany] (also vocal & violin credits).Needs Votehttps://www.linkedin.com/in/elke-janssens-bba41814/Choeur de Chambre de NamurcantoLX + +8219723Jean-Marc VoltaClassical (bass) clarinettist, born 30 July 1951 in Tucquegnieux, France.Needs Votehttps://fr.wikipedia.org/wiki/Jean-Marc_VoltaJ.M VoltaOrchestre National De FranceClassic Jam Quartet + +8220683Krisztina MegyesiKrisztina Megyesi (born 1986) is a Hungarian cellist. +Needs VoteDas Mozarteum Orchester SalzburgPhilharmonisches Orchester Kiel + +8221328Alexandre CollardFrench Horn playerNeeds Votehttps://www.alexandrecollard.com/L'Orchestre National de LilleOrchestre Philharmonique De Radio FranceEnsemble Polygones + +8222523Sophie LangBritish classical violinist and violist.Needs VoteRoyal Scottish National Orchestra + +8222524Tamas FejesHungarian violinist and assistant leader of the Royal Scottish National Orchestra.Needs Votehttps://www.rsno.org.uk/info/tamas-fejes/Tamás FejesRoyal Scottish National OrchestraFejes Quartet + +8222841Florian KlinglerFlorian Klingler (born 1977) is an Austrian trumpet player and professor of trumpet at the [l1358685].Needs VoteMünchner PhilharmonikerNDR Sinfonieorchester + +8223567The Numb SkullsNeeds Major ChangesThe Asylm Seekers + +8225968Anna KosinskaClassical violinist.Needs VoteBerliner Symphoniker + +8226000Michael ScheppClassical violinist.Needs VoteBerliner Symphoniker + +8234070Ambroisine BréFrench Mezzo-soprano, Alto & Soprano vocalist.Needs Votehttps://www.ambroisinebre.com/BréLes Talens LyriquesLe Poème HarmoniqueLes Épopées + +8234072Julie VercauterenBelgian soprano & alto vocalist.Needs Votehttps://www.julievercauteren.com/Choeur de Chambre de Namur + +8235293Jenny RostClassical flautist.Needs VoteBerliner Symphoniker + +8236085Lola DescoursBassoonist. Lola Descours joined the Orchestre de Paris at the age of 19 and played there for ten years.Needs VoteOrchestre De ParisFrankfurter Opern- Und Museumsorchester + +8240578Roland FaustAustrian Countertenor, Alto and Bass vocalist from SalzburgNeeds Votehttps://www.bach-cantatas.com/Bio/Faust-Roland.htmRadiokörenChor Der J.S. Bach StiftungThe Viadana Collective + +8246123Ema AlexeevaBulgarian Violinist and found of the Cuarteto AlexeevaNeeds Votehttps://es.linkedin.com/in/ema-alexeeva-63787b64Orquesta De La Comunidad De MadridPlural EnsembleCuarteto Alexeeva + +8257024Anne FeltzGerman violinistNeeds VoteAnna FeltzRundfunk-Sinfonieorchester BerlinBerlin Session Orchestra + +8258139David Cooper (30)David Cooper is an American horn player from Michigan.Needs Votehttps://cooperhorn.comBerliner PhilharmonikerDallas Symphony OrchestraChicago Symphony OrchestraFort Worth Symphony OrchestraVictoria Symphony Orchestra + +8258819Sally Davis (3)Classical double bassist.Needs VoteRoyal Scottish National Orchestra + +8258820Janet LarssonClassical flute player.Needs VoteRoyal Scottish National OrchestraDocklands Sinfonietta + +8258821Anne DunbarClassical oboist.Needs VoteRoyal Scottish National Orchestra + +8258822Joanne MacDowellClassical percussionist.Needs VoteRoyal Scottish National Orchestra + +8258823John PoulterClassical percussionist.Needs VoteRoyal Scottish National Orchestra + +8258824Martin Willis (4)Classical percussionist.Needs VoteRoyal Scottish National Orchestra + +8258825Michael Bennett (18)Classical trumpet player.Needs VoteRoyal Scottish National Orchestra + +8258826Olwen KirkhamClassical violist.Needs VoteRoyal Scottish National Orchestra + +8258827Sheila McGregorClassical violinist.Needs VoteRoyal Scottish National Orchestra + +8258828Harriet WilsonOxford-born classical violinist.Needs Votehttps://www.rsno.org.uk/info/harriet-wilson/Harriet HunterRoyal Scottish National Orchestra + +8258829Rachael Lee (2)Cellist.Needs Votehttps://www.rsno.org.uk/info/rachael-lee/Royal Scottish National OrchestraFejes Quartet + +8261669Oleguer BeltranOleguer Beltran Pallarés Oleguer Beltran Pallarés (born 1984) is a Spanish violinist.Needs VoteEuropean Union Youth OrchestraGulbenkian OrchestraJoven Orquesta Nacional de EspañaGustav Mahler JugendorchesterDortmunder Philharmoniker + +8265251Richard TýnskyRichard TýnskySlovak conductor. Needs VoteR. TýnskySlovak Radio Symphony Orchestra + +8265637Ida ZackrissonSwedish soprano vocalistNeeds Votehttps://www.idazackrisson.se/Radiokören + +8267818Kenneth Moore (6)Kenneth Alfred MooreClassical violinist. +Former member of the [a=London Symphony Orchestra] (1949-1950).Needs VoteLondon Symphony OrchestraNew Philharmonia Orchestra + +8268735Markus Schön (2)Markus Schön is a German clarinetist.Needs VoteBayerisches StaatsorchesterJunge Deutsche PhilharmonieBundesjugendorchester + +8270001Édouard CatalanÉdouard CatalanFrench classical cellist + violist born 1992Needs Votehttps://www.barrocotout.com/edouard-catalanEdouard CatalanLa Petite BandeLe Poème HarmoniqueInaltoA Nocte TemporisTerra Nova CollectiveBarrocotout + +8273328Aleck BelcherAmerican classical double bassist.Needs VoteSaint Louis Symphony Orchestra + +8278599Muriel GallienClassical cellist.Needs VoteOrchestre National De France + +8278600Pierre-André LeclercqClassical bassoonist.Needs VotePierre André LeclercqOrchestre National De France + +8278601François Merville (2)Classical oboist and cor anglais pla\yer.Needs VoteOrchestre National De France + +8278602Didier BoginoClassical double bassist, died in 2019.Needs VoteOrchestre National De FranceOrchestre De Lyon + +8278603Françoise VerhaegheClassical double bassist.Needs VoteOrchestre National De France + +8278604Grégoire BlinClassical double bassist.Needs VoteOrchestre National De France + +8278605Jean-Edmond BacquetClassical double bassist.Needs VoteOrchestre National De France + +8278606Jean-Olivier BacquetClassical double bassist, born in Douai, France.Needs VoteJean-Olivier BaquetOrchestre National De FranceL'Orchestre National de LilleLes Archets De ParisOctuor de FranceOrchestre De Chambre Pelléas + +8278607Jean PinceminClassical horn player.Needs VoteOrchestre National De France + +8278608Jocelyn WillemFrench classical horn player, born in 1986.Needs VoteOrchestre National De France + +8278610Hubert de VilleleClassical flautist.Needs VoteHubert de VillèleOrchestre National De France + +8278611Patrice KirchhoffClassical flautist, twin brother of [a3206901].Needs VoteOrchestre National De France + +8278613Cyril BouffyesseClassical violist, born in 1978.Needs VoteOrchestre National De France + +8278617Agnès QuennessonClassical violinist.Needs VoteOrchestre National De France + +8278619Bertrand WalterClassical violinist.Needs VoteBertand WalterOrchestre National De France + +8278621Hélène Bouflet-CantinClassical violinist.Needs VoteOrchestre National De France + +8278623Sumiko Hama-PrévostJapanese classical violinist, born in Tokyo.Needs VoteSumiko HamaOrchestre National De France + +8278624Véronique CastegnaroClassical violinist and teacher.Needs VoteOrchestre National De FranceOrchestre De Chambre Jean-François PaillardL'Orchestre National d'Ile De France + +8278626Josiane RaoulClassical violinist.Needs VoteOrchestre National De France + +8278628Xavier GuilloteauClassical violinist.Needs VoteOrchestre National De France + +8282849Maarja HelsteinEstonian choir conductor and soprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +8288378Hilary Wilson1960s harpist.Needs VoteMelos Ensemble Of London + +8290567Carmelo CavallaroArgentinian violinist.Needs VoteAníbal Troilo Y Su Orquesta TípicaAstor Piazzolla Y Su Orquesta TípicaAtilio Stampone Y Su Gran Orquesta + +8291063Victoria BihunClassical violinist.Needs VoteSydney Symphony Orchestra + +8291896Anton HubertAnton Hubert (born 1978 in Novosibirsk, Russia) is a classical violist. +Needs VoteJunge Deutsche PhilharmonieCamerata WürzburgOrchester Der Tiroler FestspieleStädtisches Philharmonisches Orchester WürzburgDas Orchester Des Pfalztheaters Kaiserslautern + +8299389Albert BrouwerClassical flutist.Needs VoteOrchestre symphonique de Montréal + +8303792Anne-Marie GayFrench oboist.Needs VoteOrchestre Philharmonique De Radio France + +8317560Henrik NaimarkJoel Henrik Naimark MeyersSwedish-American violinist living in Stockholm, born on 19 June 1989.Needs Votehttps://www.instantencore.com/concert/details.aspx?PId=5126581Henrik Naimark MeyersSveriges Radios Symfoniorkester + +8327283Catherine AlligonFrench chorus master - Chœur de l'Opéra de Montpellier (1982-1992), Choeurs Du Théâtre Royal De La Monnaie (1992 - ?)Needs VoteChoeurs Du Théâtre Royal De La MonnaieChoeur D'Enfants Opera JuniorChoeurs De L'Opéra National De Montpellier + +8328042Andrew MacnairClassical tenor vocalist.Needs Votehttp://andrewmcnair.com/Chorus Of The Royal Opera House, Covent Garden + +8328993Anders Hellman (3)Swedish classical trombonist.Needs VoteGöteborgs SymfonikerGöteborgsOperans OrkesterGöteborgsmusiken + +8336127Kern WesterbergViolinist.Needs VoteDR SymfoniOrkestretMisceo + +8336151Georges ReyFrench priest and long-time boy choir leader in Toulouse (* 1911 in Lombez, Ɨ February 22, 2003)Needs Votehttp://neep.free.fr/pccp/abbe.htmlAbbé Georges ReyL'Abbe ReyL'Abbé G.ReyL'abbé ReyLes Petits Chanteurs À La Croix Potencée + +8340543Wolfgang Tomböck (2)Wolfgang Tomböck jun.Wolfgang Tomböck (born 28 September 1957) is an Austrian horn player. A member of the [a754974] since 1978. +He's the son of [a2003566] and the father of [a3402690].Needs VoteWolfgang TomboeckWolfgang Tomböck Jr.Wolfgang Tomböck jun.Wolfgang Tomböck, Jr.Wolfgang Tomböck, Jun.Orchester Der Wiener StaatsoperWiener PhilharmonikerWiener BläsersolistenWiener Horn Ensemble + +8353638Alfred FlaszynskiPolish classical trombonist, died in 1985. +Upon his arrival in Scotland in 1944 he did forestry work, then played the violin professionally, and became 1st trombone of the [a=Royal Scottish National Orchestra] .In 1953, he arrived on the London scene, as the new 1st trombonist of the [a=Philharmonia Orchestra].Needs Votehttps://www.facebook.com/140534429358787/posts/20th-century-orchestral-trombone-styles-in-ukin-july-1950-my-career-as-a-profess/1537757569636459/https://www2.bfi.org.uk/films-tv-people/4ce2b9fde35efA. FlaszynskiAlfred FlaszinskiAlfried FlazynskiBBC Symphony OrchestraPhilharmonia OrchestraRoyal Scottish National OrchestraMelos Ensemble Of LondonApollo Orchestra + +8355753Harry FinkelmanNeeds VoteH. FinkelmanZiggy ElmanTommy Dorsey And His OrchestraHarry James And His OrchestraMetronome All StarsLionel Hampton And His OrchestraZiggy Elman & His OrchestraBenny Goodman And His OrchestraPaul Weston And His OrchestraJohn Scott Trotter And His OrchestraMetronome All-Star Band + +8358753Andres VelaDouble Bass player.Needs Votehttps://www.bso.org/profiles/andres-velaBoston Symphony Orchestra + +8361387Eli MatthewsViolinist.Needs VoteCincinnati Philharmonia OrchestraThe Cleveland Orchestra + +8361405Laetitia AbrahamViolinist.Needs VoteCincinnati Philharmonia OrchestraOrchestre Philharmonique De Monte-Carlo + +8366580George Crozier (2)George Delues CrozierAmerican arranger and trombonist. +Born August 23, 1896 in Osceola, Nebraska, USA - Died June 4, 1949 in Los Angeles, California, USA. +Brother of [a=Rube Crozier].Needs Votehttp://bixography.com/GeorgeCrozier.htmlCrozierJean Goldkette And His OrchestraDon Parker's Western Melody BoysEddie Elkins' OrchestraMcMurray's California Thumpers + +8380431Wolfgang DunstGerman trombone player, born 1953. +Grew up in a musical family with his five siblings in Bochum.Needs Votehttp://www.gabrieli.de/index.php?/wolfgang-dunst-posaune/Wolfgang DurstBerliner Symphoniker + +8385645Filipe JohnsonBrazilian classical violinist.Needs VoteTonhalle-Orchester Zürich + +8407032"Stoogy" GelzUS 40s jazz tenor saxophonist from Gary, IndianaNeeds VoteJay McShann And His Orchestra + +8416236Hermann Wömmel-StützerAustrian classical double bassist.Needs VoteHermann StützerRundfunk-Sinfonieorchester BerlinOberösterreichisches Jugendsinfonieorchester + +8425938Dagmar HesseDagmar Hesse is a German soprano and vocal coach.Needs Votehttps://vocalcoaching-hagen.de/HesseChor der Bayreuther Festspiele + +8433375Tavi UngerleiderClassical cellist.Needs VoteOrchestre symphonique de Montréal + +8433378Corey RaeClassical percussionist.Needs VoteOrchestre symphonique de Montréal + +8433381Austin HowleClassical tubist.Needs VoteOrchestre symphonique de Montréal + +8435415Eva DebonneFrench classical harpist.Needs Votehttps://www.cbarre.fr/en/musicien/eva-debonne-en/Ensemble ModernEnsemble Modern OrchestraEnsemble C Barré + +8471190Si LISi LiClassical violinist.Needs VoteOrchestre Philharmonique De Strasbourg + +8475390Junior Jazz At The AuditoriumNeeds Major Changes + +8487531Andrea CellacchiItalian classical bassoonistNeeds Votehttps://www.bossbassoon.com/andreacellacchiConcertgebouworkest + +8491221Laure Le DantecFrench classical cellist. +She studied at the [l1014340] for five years and then at the [l512906]. Member of the [a=London Symphony Orchestra] since 9 August 2019.Needs Votehttps://lso.co.uk/orchestra/players/strings.html#CellosLondon Symphony OrchestraCamerata RCO + +8491224José Moreira (4)Portuguese classical bassist. +He moved to London, where he spent three years completing his bachelor’s degree at [l=The Guildhall School Of Music & Drama]. He joined the [a=London Symphony Orchestra] in 2019.Needs Votehttps://twitter.com/josemoreira95https://www.linkedin.com/in/jos%C3%A9-moreira-786732238/?trk=public_profile_browsemap&originalSubdomain=ukhttps://lso.co.uk/more/blog/1280-welcome-to-new-members.htmlLondon Symphony Orchestra + +8491227Carol EllaBritish classical violist. Born in Wick, Scotland, UK. +She studied at the [l290263]. She joined the [a=BBC Symphony Orchestra] as 4th Viola for ten years, before joining the [a=London Symphony Orchestra] on 16 April 2018.Needs Votehttps://www.musicteachers.co.uk/teacher/df92dbfe6bb185caa668https://lso.co.uk/orchestra/players/strings.html#ViolasLondon Symphony OrchestraBBC Symphony Orchestra + +8496450Francois ThiraultFrançois ThiraultFrench chamber, orchestral, and solo cellist. Born in Reims, France. +He graduated from the [l787461] and studied further at the [l1125469]. Member of the duo [b]Thirault-Joubert[/b], the [b]Pergamon String Trio[/b], and [b]Cellibass[/b]. +Son of the cellist [a=Marc-Didier Thirault].Needs Votehttps://francoisthirault.comhttps://www.facebook.com/francois.thiraulthttps://www.alpenarte.at/Musiker.aspx?id=61London Symphony Orchestra + +8496453Daniel Finney (3)Classical woodwind instrumentalist (oboe, cor anglais, & clarinet player). +Studied at the [l290263] (2010-2012). 2nd Oboe with [a=The English National Opera Orchestra], and the [a=Orchestra Of The Royal Opera House, Covent Garden]. 3rd Oboe with the [a=London Sinfonietta].Needs Votehttps://maslink.co.uk/client-directory?client=FINND1&instrument=oboe1http://www.morgensternsdiaryservice.com/WebProfile/finney_d_7651.shtmlLondon Symphony OrchestraLondon SinfoniettaOrchestra Of The Royal Opera House, Covent GardenThe English National Opera Orchestra + +8496456Siret LustEstonian freelance classical bassist, born February 10, 1990 in Tallinn, living in England. +She graduated from [l305416]. While studying, she also toured with the [a=European Union Youth Orchestra] (2010-2011) and the [a=Gustav Mahler Jugendorchester] (August 2011-August 2014). She has freelanced since January 2015. Member of [b]Camerata Alma Viva[/b].Needs Votehttps://www.facebook.com/siretlust/https://www.linkedin.com/in/siretlust/?originalSubdomain=ukhttps://www.musique-a-marsac.com/siret-lust-2015-2018.htmlhttps://www.emic.ee/?sisu=interpreedid&mid=59&id=332&lang=eng&action=view&method=biograafiahttps://www.camerataalmaviva.com/member/siret-lust-2/London Symphony OrchestraPhilharmonia OrchestraEuropean Union Youth OrchestraGustav Mahler JugendorchesterEstonian Festival Orchestra + +8496465Alec HarmonBritish classical orchestral & chamber oboist, and teacher. +He studied the violin from the age of 6 and the oboe from 15. He graduated with distinction from the [l290263] in 2019.Needs Votehttps://www.facebook.com/alec.harmon.16https://ncym.co.uk/tutors/https://www.helpmusicians.org.uk/creative-programme/supported-artists/alec-harmonhttps://www.musicteachers.co.uk/teacher/6c7681f487754d72e18d/biographyLondon Symphony Orchestra + +8496480Luca CasciatoClassical violistNeeds VoteLondon Symphony OrchestraL'Orchestre De La Suisse Romande + +8496483Sofia Silva SousaPortuguese classical violist. +She graduated from the [l527847] in 2018 and, in 2020, she completed her Masters's degree at the [l290263]. On 28 October 2020, she became a member of the [a=London Symphony Orchestra].Needs Votehttps://lso.co.uk/orchestra/players/strings.html#Violashttps://musicchapel.org/en/sofia-silva-sousa-viola/https://www.islingtonfestival.com/sofia-sousa.htmlLondon Symphony OrchestraEuropean Union Youth Orchestra + +8496486Alexandra LomeikoNew Zealander freelance solo/chamber/orchestral classical violinist based in London, England, UK. Born 2 August 1991 in Christchurch, New Zealand. +In 2006, she moved to London where she was awarded a full scholarship to study at [l=The Purcell School]. In 2010, she was awarded a scholarship to study at [l305416]. Following her graduation in 2014, she commenced her postgraduate studies at [url=https://www.discogs.com/label/290263-Royal-College-of-Music-London]The Royal College of Music[/url] graduating in July 2017 with a Masters in Music Performance and the Artist Diploma Qualification. In 2013, she founded the unconducted orchestra [b]Silk Street Sinfonia[/b] of which she is concertmaster and Artistic Director. An active chamber musician, she has performed with [b]Ensemble Mirage[/b] amongst others.Needs Votehttp://www.alexandralomeiko.comhttps://www.facebook.com/alexandra.lomeiko/https://twitter.com/alex_lomeikohttps://www.instagram.com/alex_lomeiko/?hl=enhttps://open.spotify.com/artist/2mn86JsHs1oB9tMqFzyS66https://www.playwithapro.com/live/Alex-Lomeiko/https://www.musicteachers.co.uk/teacher/b97b50b04cdf35828d5ehttps://www.medici.tv/en/artists/alexandra-lomeiko/London Symphony Orchestra + +8496489Alix LagasseBelgian violinist and Professor of Violin. Born 25 November 1991 in Antwerp, Belgium. +During 2014-2015 she was a member of the [b]LSO String Experience Scheme[/b] and the [a=European Union Youth Orchestra]. She completed her Masters Degree at the [l290263] in July 2016. In 2015-2016 she was a member of the [a=London Philharmonic Orchestra]. She joined the [a=The Symphony Orchestra] in January 2019. Professor of Violin at the Royal College of Music Junior Department.Needs Votehttps://www.facebook.com/alix.lagassehttps://www.linkedin.com/in/alix-lagasse-30504550/?originalSubdomain=behttps://www.youtube.com/channel/UCHplS4mSJcA3W7Lfo0w_7jwhttps://wcom.org.uk/yeoman/alix-lagasse/https://www.musicteachers.co.uk/teacher/9d49e92b30d20327de37https://lso.co.uk/orchestra/players/strings.htmlhttps://www.rcm.ac.uk/junior/rcmjdteachers/details/?id=04471London Symphony OrchestraLondon Philharmonic OrchestraEuropean Union Youth Orchestra + +8496492Julian AzkoulBritish-Lebanese classical violinist. +He graduated from the [l527847] (2011-2013). Artistic director and leader of the [a=United Strings Of Europe] since March 2013. +Son of [a=Jad Azkoul].Needs Votehttps://twitter.com/julianazkoul?lang=enhttps://www.instagram.com/julianazkoul/?hl=enhttps://www.linkedin.com/in/julian-azkoul-73bb9517b/?originalSubdomain=ukhttps://open.spotify.com/artist/1S66SaZZamHWwVHDaG0SHchttps://music.apple.com/us/artist/julian-azkoul/1122446607https://www.violinist.com/directory/bio.cfm?member=jazkoulhttps://www.camerataalmaviva.com/member/julian-azkoul/AzkoulJ. AzkoulLondon Symphony OrchestraLondon Contemporary OrchestraUnited Strings Of Europe + +8499873Mitglieder des Bläserkreises für Alte Musik, HamburgMembers of [a855182].Needs VoteHamburger Bläserkreis Für Alte Musik + +8503986Michael Hartley (2)Choir singer, Oxford, Oxfordshire, UKNeeds VoteThe Clerkes Of Oxenford + +8510466Blaž OgričBlaž Ogrič is a Slovenian horn player.Needs VoteOrkester Slovenske FilharmonijeGustav Mahler JugendorchesterSimfonični Orkester RTV Slovenija + +8515425Base 22Needs VoteBase22Park & Ride (4) + +8515626Mats TärnebergMaths TärnebergPercussionistNeeds VoteMaths TärnebergGöteborgs Symfoniker + +8526654Ramón VarónRamón Varón CiudadSpanish oboe player.Needs VoteOrquesta Sinfónica de RTVE + +8535741Maxime DelattreTrombone player.Needs Votehttps://www.imdb.com/name/nm9253264/Orchestre Des Concerts LamoureuxOrchestre De La Garde Républicaine + +8538567Nicolas Rosenfeld (2)French classical bassoonistNeeds VoteLe Concert D'AstréeEnsemble ClematisCappella Mediterranea + +8545065Kerstin RosenfeldtGerman classical alto vocalist.Needs VoteChor Des Bayerischen Rundfunks + +8545068Mareike BraunGerman classical alto vocalist.Needs VoteChor Des Bayerischen Rundfunks + +8545077Timo JanzenGerman classical bass vocalist.Needs Votehttps://www.timojanzen.de/Chor Des Bayerischen Rundfunks + +8545086Anna-Maria PaliiClassical soprano vocalist, born in Erding, Germany.Needs VoteChor Des Bayerischen Rundfunks + +8545089Diana Fischer (2)Classical soprano vocalist, born in Baden-Baden, Germany.Needs VoteChor Des Bayerischen Rundfunks + +8545092Margit PennartzClassical soprano vocalist, born in 1961 in Erding, Germany.Needs VoteChor Des Bayerischen Rundfunks + +8545095Monika SchelhornClassical soprano vocalist, born in Nuremberg, Germany.Needs VoteChor Des Bayerischen Rundfunks + +8545098Sonja PhilippinClassical soprano vocalist and flautist, born in Augsburg, Germany.Needs VoteChor Des Bayerischen Rundfunks + +8545107Moon Yung OhClassical tenor vocalist, born in 1980 in Seoul, South Korea.Needs VoteChor Des Bayerischen Rundfunks + +8545110Nikolaus PfannkuchClassical tenor vocalist, born in 1989 in Penzberg, Germany.Needs Votehttps://nikolaus-pfannkuch.de/Chor Des Bayerischen Rundfunks + +8545113Q-Won HanClassical tenor vocalist, born in South Korea.Needs VoteChor Des Bayerischen Rundfunks + +8545116Taro Takagi (3)Classical tenor vocalist, born in Osaka, Japan.Needs VoteChor Des Bayerischen Rundfunks + +8545119Judith Huber (2)Classical violinist.Needs VoteIl Giardino ArmonicoL'Onda Armonica + +8548947Jesse SolwayClassical double bass instrumentalistNeeds Votehttps://www.facebook.com/jesse.solway/La Petite BandeDas Neue Mannheimer Orchester + +8550624Jean-Michel JavoyFrench classical bassoonist.Needs VoteOrchestre Des Concerts Lamoureux + +8551878Tonhalle-Orchester ZürichSwiss symphony orchestra based in Zürich founded in 1868. Its principal residence is the [l584203] concert hall. + +Chief conductors: +[a2479772] (1868–1906) +[a1731752] (1906–1949) +[a3259906] (1949–1957) +[a502826] (1957–1962) +[a526592] (1965–1972) +[a539272] (1967–1971) +[a844606] (1975–1980) +[a839412] (1982–1986) +[a578743] (1987–1991) +[a576026] (1995–2014) +[a3894137] (2014–2018) +[a564749] (2019– )Needs Votehttps://www.tonhalle-orchester.ch/https://www.facebook.com/tonhalleorchester/https://x.com/tonhallehttps://www.instagram.com/tonhalleorchester/https://www.youtube.com/user/TonhalleOrchesterZHhttps://en.wikipedia.org/wiki/Tonhalle-Orchester_Z%C3%BCrichBläser Vom Zürcher Radio- Und Tonhalle-OrchesterDas Tonhalle Orchester ZürichDas Tonhalle Orchester, ZürichDas Tonhalle-Orchester ZürichDas TonhalleorchesterL'Orchestre Tonhalle de ZurichMembers Of The Tonhalle Orchestra ZürichMitglieder Des Tonhalleorchesters ZürichMitgliedern Des Tonhalleorchesters ZürichMusiker Des Tonhalle-OrchestersOrch. Zurich TonhalleOrchesterOrchester Der Oper ZürichOrchester Der Tonhalle ZürichOrchester Der Zürcher Oper (Tonhalle)Orchestra "Tonhalle" Di ZurigoOrchestra Della Tonhalle Di ZurigoOrchestra Della Tonhalle di ZurigoOrchestra Tonhalle Di ZurigoOrchestra Tonhalle di ZurigoOrchestre De Tonhalle ZürichOrchestre "Tonhalle" De ZurichOrchestre "Tonhalle" De ZürichOrchestre "Tonhalle" Du ZurichOrchestre "Tonhalle" de ZurichOrchestre "Tonhalle" de ZürichOrchestre "Town Hall" De ZurichOrchestre De La Tonhalle De ZurichOrchestre De La Tonhalle De ZürichOrchestre De La Tonhalle, ZurichOrchestre Du Tonhalle De ZürichOrchestre Du Tonhalle, ZurichOrchestre Symphonique Tonhalle De ZurichOrchestre Symphonique Tonhalle de ZurichOrchestre Tonhalle De ZurichOrchestre Tonhalle De ZürichOrchestre Tonhalle de ZurichOrchestre Zurich TonhalleOrchestre de la Tonhalle de ZurichOrchestre « Tonhalle » de ZurichOrchestre “Tonhalle” De ZurichOrchestres De ZurichOrquesta Tonhalle De ZurichOrquesta Tonhalle De ZürichOrquesta Tonhalle de ZurichOrquesta Tonhalle, De ZurichOrquesta Tonhalle, ZurichOrquesta Tonhalle, de ZürichSolisten des Tonhalleorchesters ZürichSolistenensemble Der Tonhalle ZürichThe Tonhalle Orch. ZürichThe Tonhalle OrchestraThe Tonhalle Orchestra Of ZurichThe Tonhalle Orchestra Of ZürichThe Tonhalle Orchestra ZurichThe Tonhalle Orchestra ZürichThe Tonhalle Orchestra, ZurichThe Tonhalle Orchestra, ZürichThe Zurich Tonhalle OrchestraThe Zürich Tonhalle OrchesterTonhalle - OrchestraTonhalle De ZürichTonhalle OrchTonhalle Orch. Of ZurichTonhalle Orch. Of ZurichTonhalle Orch. ZürichTonhalle Orch., ZürichTonhalle OrchesterTonhalle Orchester ZuerichTonhalle Orchester ZurichTonhalle Orchester ZürichTonhalle Orchester, ZürichTonhalle OrchestraTonhalle Orchestra Of ZurichTonhalle Orchestra (Zurich)Tonhalle Orchestra Of ZurichTonhalle Orchestra ZUrichTonhalle Orchestra ZurichTonhalle Orchestra ZürichTonhalle Orchestra, ZurichTonhalle Orchestra, ZürichTonhalle Orchestra, ZürichTonhalle Orkest, ZürichTonhalle Symphony OrchestraTonhalle Zurich OrchestraTonhalle Zürich OrchestraTonhalle- Orchester, ZürichTonhalle- Und TheaterorchesterTonhalle-OrchesterTonhalle-Orchester, ZürichTonhalle-Orchestra ZürichTonhallenorchester ZürichTonhalleorchester ZürichTonnhalle Orchester ZurichWinds of the Zurich Tonhalle OrchestraTonhalle-Orchester ZürichZurich Symphony OrchestraZurich TonhalleZurich Tonhalle OrchesterZurich Tonhalle OrchestrZurich Tonhalle OrchestraZurich Tonhalle Orchestra & ChoirZurich Tonhalle Orchestra And ChorusZurich Tonhalle Orchestra, TheZurich Tonhalle-OrchesterZürcher Tonhalle-OrchesterZürich Tonhalle OrchesterZürich Tonhalle OrchesteraZürich Tonhalle OrchestraZüricher Tonhalle-Orchesterチューリッヒ・トーンハル管弦楽団チューリッヒ・トーンハレ管弦楽団Marius UngureanuGilad KarniRudolf KempeUte GrewelEsther PitschenChristoph EschenbachGerd AlbrechtEduard MelkusMathias SchesslClaude RippasJakob HeftiJosef GazsiClaude StarckWerner SpethElemer GlanzPrimož NovšakMichel WilliFlorian WalserElisabeth HarringerJost MeierLaurent LefèvreMichael Reid (4)Florenz JennyRonald DangelMichel RouillyHeinz WehrleDieter DykKamil ŁosiewiczGünter RumpelPaul GrümmerWolfgang KlosMattia ZappaDavid GreenleesHermann VoerkelDavid BruchezGünther SchlundCarolyn HopkinsKathrin GrafDiego BaroniBenjamin ForsterSarina ZickgrafAndrzej KilianKarl-Heinz BenzingerAndrea HelesfaiWolfgang BognerMartin HösliMary BradyHarald FriedrichEiko FurusawaLuzia MeierRafael RosenfeldRobert MerklerBeatrice MössnerGerd VosselerJohannes GürthAndreas SamiKilian SchneiderMicha RothenbergerKarl FässlerKaspar ZimmermanRichard Kessler (4)Mischa GreullSimon FuchsHans Martin UlbrichCornelia AngerhoferSophie SpeyerEndre GuranKeiko HashiguchiElisabeth BundiesFrank SanderellJörg HofSamuel LangmeierNigel DowningCornelia Messerli-OttAndra UlrichsPeter KosakRudolf BamertFelix NaegeliMarc LuisoniThomas GrossenbacherMatthias RaczMichael von SchönermarkPeter Solomon (2)Hermann LeebPeter McGuireEckhard FiebigLucija KrišeljHaika LübckeOttavio CortiRichard StegmannHeinz Hofer (3)Anita LeuzingerAngelo MaccabianiOliver CorchiaGallus BurkardEléonore WilliChristian ProskeSimon StylesAntonia SiegersKurt LamprechtLukas HeringVanessa SzigetiHeinz SaurerXavier PignatAndreas JankeStephan HoeverKlaidi SahatciMartin FrutigerYukiko IshibashiElizaveta ChnaiderHerbert KistlerPaulo Muñoz-ToledoSabine MorelAndrea WennbergDavid GoldzycherChristopher WhitingUlrike SchumannAlexander NeustroevRobert TeutschSeiko MorishitaAnita RutzJulia Becker (4)Enrico Filippo MalignoBenjamin NyffeneggerConrad ZwickySarah VerrueArnt MartinJames Whitehead (4)Ewa Grzywna-GroblewskaSasha NeustroevFelix Andreas GennerAndreas Berger (5)Domenico CatalanoSeth QuistadThomas Garcia (5)Katarzyna KitrasiewiczPhilippe LitzlerUrsula SarntheinCathrin KudelkaKatja FuchsLuis EsnaolaGeorge-Cosmin BanicaIsabel NeliganIsaac Duarte (2)Katsunobu HirakiHendrik HeilmannFilipe JohnsonMio Yamamoto (2)Ivo GassSayaka TakeuchiAmelia Maszonska + +8562309Jonas Karlsson (14)Classical trombonist.Needs VoteGöteborgs SymfonikerSymfoniorkestern Filialen + +8570622Juliette GilJuliette Gil-PerraudClassical violistNeeds VoteOrchestre National Du Capitole De Toulouse + +8571258Johann Christoph Schmidt* 6 August 1664 in Hohnstein; † 13 April 1728 in Dresden, German composer and court music director. Needs Votehttps://de.wikipedia.org/wiki/Johann_Christoph_Schmidt_(Komponist)Staatskapelle Dresden + +8588397Hans HanakHans Hanak (7 April 1910 — 15 July 1973) was an Austrian oboist.Needs VoteOrchester Der Wiener StaatsoperWiener SymphonikerWiener PhilharmonikerHofmusikkapelle Wien + +8589807Alice Maria WeberAlice Maria Weber is a German violist. +Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +8591208Germán Muñoz (5)Germán Muñoz PalazónSpanish contrabass player.Needs VoteOrquesta Sinfónica de RTVELa Maestranza + +8592696Laurel Bennert OhlsonNational Symphony Orchestra Associate Principal Horn Laurel Bennert Ohlson has appeared as a concerto soloist with the National Symphony Orchestra and Eclipse Chamber Orchestra and in numerous solo engagements across the U.S. and South America. + +Ms. Ohlson is on the faculty of The Catholic University of America, and has been an active performer and teacher through the NSO’s Youth Fellowship Program, Summer Music Institute, and the American Residencies. She also conducts master classes and Wagner tuba clinics at International Horn Society Symposiums and International Women's Brass Conferences (IWBC). + +Ms. Ohlson presents “History of the Horn” lecture-demonstrations, playing on at least a dozen horn-related instruments including the alphorn, shofar, natural horn, Wagner tuba, and the ever-popular garden hose. She has been on the Board of Directors of the IWBC since its founding in 1991.Needs Votehttp://laurelohlson.comLaurel B. OhlsonLaurel OhlsonNational Symphony OrchestraEclipse Chamber Orchestra + +8592699Steven Wilson (16)Bassoonist. +Originally from Dodge City, Kansas, he now lives in Alexandria, VA with his wife, NSO English hornist Kathryn Meany & their children. +He joined the National Symphony in 2001 after three seasons as principal bassoonist in the Virginia Symphony. Previously, he served as second bassoonist in the Tulsa Philharmonic and the Abilene Philharmonic. He has participated in the Round Top, Chautauqua, and Colorado Music Festivals.Needs Votehttps://www.stevenawilson.com/index.htmlNational Symphony Orchestra + +8592702Paul CiganClarinetist. + +Appointed to the National Symphony Orchestra’s clarinet section by Maestro Leonard Slatkin in 1999, Paul Cigan enjoys a career as orchestral clarinetist, chamber musician, teacher and concerto soloist. In addition to the NSO, Mr. Cigan can frequently be heard performing with the Eclipse Chamber Orchestra, 21st Century Consort, and the Smithsonian Chamber Players as well as recordings with those ensembles on Dorian, Bridge, and Naxos labels. Prior to the NSO, Mr. Cigan held principal posts with the San Antonio Symphony, Colorado Symphony, and Virginia Symphony. +An active teacher in the Washington, DC area, Mr. Cigan is currently on the faculties of The University of Maryland at College Park. Mr. Cigan is also active in the NSO’s education department, instructing members of the Youth Fellowship Program and Summer Music Institute. +Other activities include performing at the Grand Teton Music Festival and returning to the National Orchestral Institute at The University of Maryland as coach and teacher.Needs Votehttp://halcyonmusicfestival.org/artist-bio-paul-cigan-clarinet/National Symphony Orchestra + +8592705Aaron Goldman (3)Flutist. +Lecturer, Flute at the Catholic University of America (2017), and principal flute for the National Symphony Orchestra since 2013.Needs Votehttps://music.catholic.edu/faculty-and-research/faculty-profiles/goldman-aaron/index.htmlNational Symphony Orchestra + +8592708Carole BeanFlute & piccolo player. +Carole Bean is the Piccoloist with the National Symphony Orchestra. Before joining the NSO, she performed with the Xalapa Symphony Orchestra in Mexico and the Honolulu Symphony Orchestra. She also performs with the Eclipse Chamber Orchestra, Verge Ensemble, and Fessenden Ensemble. Ms. Bean has presented numerous children’s concert performances as part of the Outreach Program of the NSO. She also has performed with the Grand Teton Music Festival in Jackson Hole, Wyoming, since 1992. A native of Columbus, Ohio, Ms. Bean attended Bowling Green State University and Northwestern University, where she studied with Judith Bentley and Walfrid Kujala, respectively.Needs Votehttps://www.beausoir.org/carolebeanNational Symphony Orchestra + +8592711Nicholas StovallOboist. +Principal oboe of the National Symphony Orchestra since September 2008, and a member of the Washington-based Eclipse Chamber Orchestra. +Faculty member at the Peabody Institute of Johns Hopkins University and teaches in the National Symphony’s Youth Fellowship Program and Summer Music Institute.Needs Votehttps://www.nicholasstovall.comNational Symphony OrchestraEclipse Chamber Orchestra + +8613231Malgorzata CalvayracClassical violinist.Needs VoteMagorzata CalvayralOrchestre Philharmonique De Strasbourg + +8628183Elvira PonticelliSoprano vocalist.Needs VoteChicago Symphony Chorus + +8641320Jeanne Preucil RoseClassical violinistNeeds VoteJeanne PreucilThe Cleveland OrchestraEverest String Quartet + +8644545Beena DavidAlto vocalist.Needs VoteChicago Symphony Chorus + +8644557Melissa ArningAlto vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +8652969Salvador BolónClassical cellistNeeds VoteLondon Symphony OrchestraMoonwindsElan Quintet + +8653374Maria Rebekka StöhrMaria Rebekka StöhrGerman-Mexican mezzo-soprano born in 1979 in Tübingen, Germany +Aka +> Rebekka Stöhr +> Maria Rebekka Stoehr +> Rebekka StoehrNeeds Votehttp://www.rebekka-stoehr.de/en/https://www.staatstheater-wiesbaden.de/programm/spielplan/arabella-2017-2018/rebekka-stoehr/http://www.haller-bach-tage.de/portal/seiten/stoehr-maria-rebekka-900000459-22700.htmlMaria Rebekka StoehrRebekka Stöhr + +8656590Kenneth Essex (2)British violin initially but eventually viola player. Born 20 July 1920 in Hinckley, Leicestershire, England, UK. +In 1937, he entered the [l527847]. During World War 2 he joined [a1581813]. After the war, he was accepted by the [a=London Philharmonic Orchestra]. Shortly afterwards the [a874943] was formed and Kenneth played in their quintet dates. He was for a number of years Principal Viola of the [a=Goldsbrough Orchestra], [a=The Boyd Neel Orchestra], the [a=Royal Philharmonic Orchestra], and the [a=London Symphony Orchestra] (1955). He left the LSO to go freelance and worked extensively as a session musician from the late 1940s onwards. He did TV, film and popular music recordings including playing in the string quartet backing [a=The Beatles] on "Yesterday". He also played in Royal Variety Performances, and Eurovision Song Contests (he was in the orchestra in Brighton when [a=ABBA] won).Needs Votehttps://www.leicestermercury.co.uk/news/local-news/viola-talent-who-played-beatles-4375634https://going-postal.com/2020/07/kenneth-ken-essex-hits-a-century/https://www.naxos.com/person/Kenneth_Essex/77641.htmhttps://www.the-paulmccartney-project.com/artist/kenneth-essex/EssexK. EssexKen EssexLondon Symphony OrchestraLondon Philharmonic OrchestraThe Chitinous EnsembleRoyal Philharmonic OrchestraPat Halling's String EnsembleLondon SinfoniettaPhilharmonia OrchestraThe London Chamber OrchestraThe Academy Of St. Martin-in-the-FieldsThe Nash EnsembleThe Virtuosi Of EnglandMelos Ensemble Of LondonThe London Jazz Chamber GroupThe London StringsThe Starcoast OrchestraGoldsbrough OrchestraThe Band Of HM Royal MarinesTunnell Piano QuartetThe Boyd Neel OrchestraPrometheus EnsembleThe Lansdowne String QuartetRobert Farnon And His OrchestraNew London QuintetThe Nefer EnsembleAriel Quartet + +8715277Rabia AydinRabia Aydin (born 1990) is a Turkish cellist. +Needs VoteMünchner Rundfunkorchester + +8719258Robert DorerAmerican classical trumpeter.Needs VoteMinnesota Orchestra + +8725504Philippe AudinClassical bassoonist.Needs VoteOrchestre National De L'Opéra De Paris + +8725516Marielle CaglioClassical Viola playerNeeds VoteOrchestre National De L'Opéra De Paris + +8725519Nicolas CambournacClassical Viola playerNeeds VoteOrchestre National De L'Opéra De Paris + +8736622Lionel MichelenaLionel MichélénaFrench classical violinist.Needs VoteStuttgarter Philharmoniker + +8737753Hande KüdenClassical violinist, born in 1992 in Adana, Turkey.Needs VoteBerliner PhilharmonikerDeutsches Symphonie-Orchester Berlin + +8744338Isabella BurnsSoprano vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +8744716Tolga AkmanTrombonist.Needs VoteMünchner Philharmoniker + +8746858Lucy PageEnglish classical soprano vocalist from LondonNeeds Votehttps://www.lucy-rose-page.com/Le Concert D'AstréeGalanChœur Marguerite LouiseLes Épopées + +8760136Daniel LivermoreClassical Tenor vocalistNeeds VoteThe Choir Of Clare College + +8762821Alexander UszkuratClassical violinist.Needs VoteAlexander UszkoratMünchner PhilharmonikerConsortium ClassicumWinkler Quartett + +8766928Chris van BalenDutch classical cellist, born in 1973 in Zaandam.Needs VoteConcertgebouworkest + +8771701Micky MendiCredited as bassist.Needs VoteMickey MendiBoyd Raeburn And His Orchestra + +8774953Sergey LevitinСергей ЛевитинSergei Levitin is a Russian violinist. Born in Saint-Petersburg, then Leningrad, he started playing violin at the age of six and made his first appearance as a soloist with Kharkiv Philharmonic at the age of twelve. As a soloist and chamber musician, he became a prize-winner of several national and international competitions including Paganini violin competition in Genova. At the age of twenty three he became a youngest ever Concert Master of the orchestra of the Mariinsky Theatre in Saint-Petersburg, subsequently starting touring and recording intensively with the company. He was on high demand as a guest leader in the UK and across Europe and as a soloist he performed under such conductors as Gergiev, Pappano and Noseda. For Dutton Epoch he has made a number of world premier recordings of violin concertos with leading UK orchestras under Martin Yates. He joined the Orchestra of the Royal Opera House as Associate Concert Master in 2003, was made Co-Concert Master in 2009 and Concert Master in 2018.Needs Votehttps://prim.mariinsky.ru/ru/company/persons/musicians/sergei_levitin/https://www.rbo.org.uk/people/sergey-levitinhttps://prim.mariinsky.ru/en/company/persons/musicians/sergei_levitin/https://capella-spb.ru/ru/artisty-gosti/levitin-sergejSergei LevitinKirov OrchestraOrchestra Of The Royal Opera House, Covent GardenOrchestra Of The Mariinsky Theatre + +8776555Sergio Castelló LópezClassical clarinetist.Needs VoteHallé Orchestra + +8777539Starquake (2)Needs Major Changes + +8777542Lia BNeeds Major Changes + +8782468Raphaelle TruchotRaphaëlle Truchot-BarrayaFrench classical flautist.Needs VoteOrchestre Philharmonique De Monte-Carlo + +8785288Kristi GjeziViolinistNeeds VoteOrchestre National Du Capitole De Toulouse + +8785306Aurélienne BraunerClassical cellistNeeds VoteOrchestre National De FranceOrchestre National Bordeaux Aquitaine + +8787973Cécile AgatorClassical violinist.Needs VoteOrchestre Philharmonique De Radio FranceQuatuor Capriccio + +8791576Esther TschimpkeGerman classical soprano vocalistNeeds VoteRIAS-KammerchorCollegium Vocale Hannover + +8795416Dominic ChildsSaxophone playerNeeds VoteBBC Symphony Orchestra + +8801995Dorothea Schönwiese Dorothea Schönwiese-GuschlbauerDorothea Schönwiese is an Austrian cellist.Needs VoteDorothea Schönwiese-GuschlbauerDorothea GuschlbauerConcentus Musicus Wien + +8801998Herbert MaderthanerHerbert Maderthaner (born 1981) is an Austrian oboist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerORF Radio-Symphonieorchester Wien + +8802901Joanna WestersDutch classical violinistNeeds VoteConcertgebouworkest + +8808469Earl Wright (10)US violinistNeeds VoteJean Goldkette And His Orchestra + +8809738Tonio HenkelGerman cellist. Son of [a849155]. Brother of [a7639343].Needs Votehttps://www.staatskapelle-berlin.de/de/kuenstler/tonio-henkel.195/Staatskapelle Berlin + +8812411Don Kirkpatrick (4)Donald E. KirkpatrickAmerican jazz pianist and arranger, born June 17, 1905 in Charlotte, North Carolina, died May 13, 1956 in New York City. +Kirkpatrick worked with Chick Webb, Don Redman , Harry White, Elmer Snowden, Zutty Singleton, Mezz Mezzrow, Benny Goodman, Count Basie, Cootie Williams, among others. +Needs VoteD. KirkpatrickDonald E. KirkpatrickKirkpatrickR. KirkpatrickLouis Armstrong And His OrchestraChick Webb And His OrchestraWilbur De Paris And His OrchestraWilbur De Paris And His New New Orleans JazzHenry Allen-Coleman Hawkins And Their OrchestraSidney Bechet & His Hot SixBenny Morton And His OrchestraBunk Johnson & His BandWilbur De Paris And His Rampart Street RamblersThe Jungle Band (3)Hawkins Orchestra + +8815714Immanuel RichterImmanuel Richter (born 1974) is a Swiss trumpet player.Needs VoteSinfonieorchester BaselFestival Strings LucerneOrchestra Del Teatro Alla Scala + +8828188Zigmārs GrasisLatvian bass vocalist.Needs VoteZigmars GrasisCappella Amsterdam + +8828926Lara KusztrichLara Kusztrich (born 1994 in Vienna) is an Austrian classical violinist. She's the daughter of [a2308254].Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerOrchester Des Wiener Musikgymnasiums + +8839522Davide LattuadaItalian classical clarinetistNeeds Votehttps://www.bassclarinetwork.com/davide-lattuadaConcertgebouworkestCamerata RCO + +8840227Lisa LisztaLisa Liszta is a classical bass clarinetist.Needs VoteStaatskapelle DresdenStaatskapelle Weimar + +8840230Hannes SchirlitzGerman classical bassoonistNeeds VoteStaatskapelle Dresden + +8840233Bernward GrunerClassical cellistNeeds VoteStaatskapelle Dresden + +8840236Tom HöhnerbachClassical cellistNeeds VoteStaatskapelle Dresden + +8840239Andreas BörtitzClassical bassoonistNeeds VoteStaatskapelle Dresden + +8840242Reimond PüschelClassical double-bassistNeeds VoteStaatskapelle Dresden + +8840245David HarloffClassical hornistNeeds VoteStaatskapelle Dresden + +8840248Eberhard KaiserGerman classical hornistNeeds VoteStaatskapelle DresdenDie Blasewitzer + +8840251Michael GoldammerGerman classical oboistNeeds VoteStaatskapelle Dresden + +8840254Anya MuminovichClassical viola playerNeeds VoteStaatskapelle Dresden + +8840257Annette ThiemClassical violinistNeeds VoteStaatskapelle Dresden + +8840260Franz Schubert (3)German classical violinistNeeds VoteStaatskapelle Dresden + +8840263Paige KearlClassical violinistNeeds VoteStaatskapelle Dresden + +8840266Wieland HeinzeClassical violinistNeeds VoteStaatskapelle Dresden + +8840269Yuki Manuela JankeYuki Manuela Janke (born 1986 in Munich) is a German classical violinist.Needs VoteStaatskapelle DresdenStaatskapelle Berlin + +8844622Harrison LinseyOboe, Bass Oboe.Needs Votehttp://www.avie-records.com/artists/harrison-linsey/National Symphony Orchestra + +8846740Marcin WilińskiPolish classical double bassist, born in 1980 in WarsawNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846746Urszula NowakowskaPolish harpist and pedagogue.Needs VoteSinfonia VarsoviaOrkiestra Symfoniczna Filharmonii NarodowejOrkiestra Polskiego Radia W Warszawie + +8846761Jakub KowalikPolish classical violist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846764Katarzyna HenrychPolish classical violist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846767Agnieszka PodłuckaPolish violinist and violist.Needs VotePolish National Radio Symphony Orchestra + +8846773Grzegorz GroblewskiPolish violinistNeeds VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846776Grzegorz OsińskiPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846779Izabela HodorPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846785Marzena MazurekPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8846788Michał SzałachPolish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +8849380Dieter AngererDieter Angerer (born 6 April 1952) is an Austrian horn player, composer and arranger.Needs VoteD. AngererWiener Waldhorn VereinBühnenorchester Der Wiener Staatsoper + +8850607Bob Strong (4)Clarinet and saxophone (Alto) player as well as band leader working in the 1920ies Needs VoteJean Goldkette And His OrchestraCharley Straight And His Orchestra + +8862976Tristan LiehrClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +8868388Diane BuskoAlto vocalist.Needs VoteDiane Busko BryksLira Chamber ChorusChicago Symphony Chorus + +8876362George Martin (14)US drummer, around 1940sNeeds VoteStan Kenton And His Orchestra + +8879911Eric AbeijonClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +8889805Christian Gray (2)Classical double bassist.Needs VoteThe Philadelphia Orchestra + +8889946Michael Rau (3)Classical violinist.Needs VoteBaltimore Symphony Orchestra + +8893456AeOnFireNeeds Major Changes + +8893459D3AFNeeds Major Changes + +8893462Joe EsNeeds Major Changes + +8895940Thomas Cole (2)Choral singer from the UK.Needs VoteLibera + +8900029Nana RaitaluotoA Finnish violist. She was the first Finnish musician in the European Union Youth Orchestra in 1995.Needs VoteLondon Philharmonic OrchestraBBC Symphony OrchestraLahti Symphony OrchestraEuropean Union Youth OrchestraTurku Philharmonic OrchestraSuomen Kansallisoopperan OrkesteriVaasan Kaupunginorkesteri + +8914471Lette VosDutch soprano vocalist.Needs Votehttp://www.lettevos.com/Cappella AmsterdamLe Nuove MusichePRJCT Amsterdam + +8920807Daniel Armstrong (4)Daniel Armstrong is a classical double bass player. Former member of the [a837562] from 1995 to 2023.Needs Votehttps://www.cso.org/about/performers/chicago-symphony-orchestra/bass/daniel-armstrong/Dan ArmstrongChicago Symphony OrchestraMilwaukee Symphony OrchestraJason Seed StringtetWinnipeg Symphony Orchestra + +8927221Harry YeagerNeeds VoteGeorge Williams And His Orchestra + +8927224Budy SavareseNeeds VoteGeorge Williams And His Orchestra + +8971399Éliane Charest-BeauchampClassical violinistNeeds Votehttps://ossherbrooke.com/eliane-charest-beauchamp/Orchestre symphonique de MontréalTrio Hochelaga + +8988379Maurits FrankMaurits Frank (29 July 1892, Rotterdam – 3 March 1959, Cologne) was a Dutch cellist and music educator. A student of [a1005954], Frank taught in Heidelberg and Neustadt/Palatinate before he moved to the Hoch Conservatory in Frankfurt in 1915. During this time, he was the musical partner of [a567511] in the Rebner Quartet and the [a2685881]. + +After the seizure of power by the Nazis, he had to leave Germany for the Netherlands. In 1949, he returned to Germany and taught cello and chamber music at the Hochschule für Musik und Tanz Köln. He continued to work as a chamber musician and devoted himself especially to contemporary music. He played the world premiere of Hindemith's Cello Concerto in E flat and, with Eduard Zuckmayer, the world premiere of [a294480]'s Two Little Pieces. In 1957 he founded the Rheinisches Kammerorchester Köln. He published a collection of studies and exercises for the cello titled [i]Tonleitern und Dreiklänge[/i].Needs Votehttps://en.wikipedia.org/wiki/Maurits_FrankMaurice FrankAmar-Quartett + +9005776Wolfgang NavratilWolfgang Navratil (born 1972) is an Austrian trumpet player.Needs VoteDas Mozarteum Orchester SalzburgORF Radio-Symphonieorchester WienThe Percussive Planet Ensemble + +9006763Michael RuppelFlutistNeeds VoteSymphonie-Orchester Des Bayerischen Rundfunks + +9009409Rex KittingCredited as saxophone player.Needs VoteGene Krupa And His Orchestra + +9012451Mattia LaurellaClassical flutist.Needs VoteIl Giardino ArmonicoEnsemble Il FalconeStile GalanteDivino Sospiro + +9017617Andrea GavagninItalian classical alto vocalist born in 1997. He graduated with special mention in Renaissance and Baroque singing at the Conservatorio Benedetto Marcello in Venice, and is currently studying at the Conservatoire Royale in Brussels. Needs Votehttps://andreagavagnin.com/Choeur de Chambre de NamurScherzi MusicaliInaltoFaenzaEnsemble Polyharmonique + +9017815Len BakerBritish vocalist, trumpeter, pianist and violinist. Born in Manchester 1905, died in Lenzerheide (Switzerland). +Came to Switzerland in the 1930s, worked first in the band of Leo Laurent, then in the band of the brothers Peritz, [a1815855], until 1948. Later he worked as bar pianist and skiing instructor in Lenzerheide.Needs Votehttps://www.fonoteca.ch/cgi-bin/oecgi4.exe/inet_jazzbionamedetail?NAME_ID=55318.011&LNG_ID=ENUThe Berry's + +9019402Patrick FlanaghanCor Anglais instrumentalistNeeds VoteRoyal Philharmonic Orchestra + +9031210Damian LipieńPolish classical bassoonist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/damian-lipienhttps://www.facebook.com/RzeszowskaJesienMuzyczna/photos/a.105982454128631/729939408399596/?type=3&_rdrPolish National Radio Symphony OrchestraOrkiestra Akademii Beethovenowskiej + +9031213Antoni SmołkaPolish cello player.Needs VotePolish National Radio Symphony Orchestra + +9031216Natalia Kurzac-KotulaCellist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/natalia-kurzac-kotulaPolish National Radio Symphony Orchestra + +9031219Łukasz FrantPolish cellist.Needs Votehttps://www.lukaszfrant.pl/https://nospr.org.pl/pl/orkiestra/muzycy/lukasz-frantPolish National Radio Symphony Orchestra + +9031222Bartosz PacanPolish clarinetist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/bartosz-pacanPolish National Radio Symphony Orchestra + +9031225Dorota CieślińskaPolish violinist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/dorota-cieslinskaPolish National Radio Symphony Orchestra + +9031228Dorota PaliwodaPolish violin player.Needs VotePolish National Radio Symphony Orchestra + +9031231Jacek SiemekPolish violin player.Needs VotePolish National Radio Symphony Orchestra + +9031234Krystyna KowalskaPolish violin player and concertmaster.Needs VotePolish National Radio Symphony Orchestra + +9031237Lucyna FiedukiewiczPolish violinist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/lucyna-fiedukiewiczPolish National Radio Symphony Orchestra + +9031240Małgorzata OtrembaPolish flautist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/malgorzata-otrembaPolish National Radio Symphony Orchestra + +9031243Karolina StalmachowskaPolish oboist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/karolina-stalmachowskahttps://www.linkedin.com/in/karolina-stalmachowska-1436b391/https://www.facebook.com/karolina.stalmachowskaPolish National Radio Symphony OrchestraLutosAir Quintet + +9031246Maksymilian LipieńPolish oboist.Needs Votehttps://nospr.org.pl/pl/orkiestra/muzycy/maksymilian-lipienSinfonia VarsoviaPolish National Radio Symphony Orchestra + +9031252Adam GajdoszPolish violin player.Needs VotePolish National Radio Symphony Orchestra + +9031255Antoni Nowina-KonopkaPolish violin player.Needs VotePolish National Radio Symphony Orchestra + +9031258Joanna SzafraniecPolish violin player.Needs VotePolish National Radio Symphony Orchestra + +9031264Teresa Mercik-SzopaPolish violin player.Needs VotePolish National Radio Symphony Orchestra + +9033784Chœurs de la RTB-BRTChorus of the Belgian state broadcaster [l=RTB (7)] (Radio-Télévision Belge).Needs VoteChoeurs De La RTBChoeurs De La RTB/BRTChœursChœurs de la R.T.B./B.R.T.Chœurs de la RTB-BRT-BruxellesChœurs de la Radiodiffusion-télévision BelgeRTB-BRT Chorus + +9064231Olga ChepizhnayaRussian classical violinist.Needs VoteRussian National Orchestra + +9066808"Jersey Boys" Original Broadway CastJersey Boys2005 Original Broadway Cast.Needs VoteCast Of "Jersey Boys"Jersey BoysJersey Boys 2005 Broadway CastJersey Boys Original CastOriginal Broadway CastThe Jersey BoysJohn Lloyd YoungDaniel ReichardJ. Robert SpencerChristian Hoff (3) + +9070789Florianne TardyFloriane TardyFrench clarinetistNeeds VoteOrchestre National Du Capitole De Toulouse + +9086899Melinda AlbertySoprano vocalist.Needs VoteChicago Symphony Chorus + +9089086Zander ClubAlex PowellFormerly one half of [a=The Squatters], Alex Powell aka [a=Zander Club] is a house music DJ and Producer from Leeds, UK. He is also the owner of the [l=Human Only] label.Needs Votehttps://soundcloud.com/zanderclubZanderClubAlex Powell (5) + +9089089Babushka (4)Needs Major Changes + +9089092Drew DabbleIrish Electronic music producer based in Sydney, Australia.Needs Votehttps://www.facebook.com/drewdabbledjhttps://soundcloud.com/drewdabblehttps://twitter.com/drew_dabble + +9089095Temple Of Boom (4)Needs Major Changes + +9089098Undergroove (5)Tech & Harder House duo from Scotland. Also produce Hard House as [a=The Hoover Jocks].Needs Votehttps://www.facebook.com/OfficialUndergroovehttps://soundcloud.com/officialundergrooveJohn Wright (4) + +9089101Mata Leão (2)Needs Major Changes + +9089104Whomp BatNeeds Major Changes + +9089107De La RivaNeeds Major Changes + +9101374Brigitte LiebermannBrigitte Liebermann is a German oboist.Needs VoteWürttembergisches KammerorchesterPhilharmonisches Orchester Freiburg + +9104029Vitaly NazarovRussian classical oboist.Needs VoteRussian National Orchestra + +9116572William McDonnellChoir vocalistNeeds VoteThe London Oratory Junior Choir + +9119320Corinna LardinGerman cellistNeeds VoteOrchestre Du Théâtre Royal De La MonnaieÔ-CELLI + +9119485Lidija CvitkovacLidija Cvitkovac began her cello studies at the age of 7 in Belgrade, she later studied cello in Munich, winning numerous prizes from an early age. During her higher studies she performed in various chamber ensembles and symphony orchestrasNeeds VoteOrchestre Du Théâtre Royal De La Monnaie + +9123853Ewan EastonTuba player.Needs VoteHallé Orchestra + +9124240Brass Of The Hollywood Bowl Symphony OrchestraNeeds VoteHollywood Bowl Symphony OrchestraThe Hollywood Bowl Symphony Orchestra + +9126622Yu-Mien SunTaiwanese violinist who has lived in the UK since 2007. +Founder of Verbunkos Trio, as well as Fletcher Quartet.Needs Votehttp://harrisonfrankfoundation.com/artist-yu-mien-sun/Hallé Orchestra + +9127978David Castro-BalbiDavid Castro-Balbi is a French classical violinist. He's the brother of [a9127981].Needs VoteGewandhausorchester LeipzigStaatskapelle WeimarThüringer Bach CollegiumLibertalia Ensemble + +9130813Xavier GendreauFrench classical trumpeter.Needs VoteStuttgarter PhilharmonikerRicercar ConsortGli Angeli Genève + +9132613Annely LeinbergChoral singer and soloist.Needs VoteEstonian Philharmonic Chamber Choir + +9132616Helina KuljusChoral singer.Needs VoteEstonian Philharmonic Chamber Choir + +9132622Kristel MarandChoral singer.Needs VoteEstonian Philharmonic Chamber Choir + +9137281Judith MayerClassical alto / mezzo-soprano vocalist, born in Speyer am Rhein, Rhineland-Palatinate, Germany. +Also known as Judith Rautenberg.Needs Votehttp://www.judith-rautenberg.de/Rundfunkchor BerlinGächinger Kantorei StuttgartChorWerk RuhrVocalconsort Berlin + +9137290Patricia Wagner (3)Classical alto / mezzo-soprano vocalist, born in Mannheim, Germany.Needs Votehttps://patriciawagner-gesang.jimdo.com/Chor Des Bayerischen RundfunksGächinger Kantorei Stuttgart + +9137359Uta ScheirleClassical soprano vocalist, born in Stuttgart, Germany.Needs Votehttp://www.uta-und-kai.de/Gächinger Kantorei StuttgartWürttembergischer Kammerchor + +9140368Anne Gottschalk Anne Hyvon-GottschalkClassical violist.Needs VoteOrchestre Des Concerts Lamoureux + +9153376Takumi TaguchiAmerican classical violinist [b]Takumi Taguchi [/b] joined the violin section of the Boston Symphony Orchestra at the start of the 2022-2023 season. He is a recent graduate of the Curtis Institute of Music, where he studied with Shmuel Ashkenasi, Midori, and Aaron Rosand. His prior teachers include Simon James, Hiro David, Mihoko Hirata, Chikako Araki, and Makiko Fujiwara. + +Taguchi served as co-concertmaster of the Curtis Symphony Orchestra in the 2021-22 season and appeared with the Princeton Symphony and Symphony in C. He has also performed as soloist with numerous orchestras in his hometown of Seattle, including the Seattle Symphony. A passionate chamber musician, he has collaborated with members of the Dover and Calidore quartets in performance and received extensive coaching from members of the Guarneri, Vermeer, Tokyo, Takacs, Orion, and Borromeo quartets. He joined Curtis on Tour in July 2022, performing in New England with Roberto Díaz and David Shifrin.Needs Votehttps://www.bso.org/profiles/takumi-taguchiBoston Symphony Orchestra + +9166117Natalia ChahinNatalia Alves ChahinBrazilian baroque oboe player, born 1972 in São Paulo.Needs Votehttp://emesp.org.br/natalia-chahin/Natalia Alves ChahinLa Petite Bande + +9177169Frédéric MellardiFrench trumpeteer born 1969 in Mulhouse.Needs VoteFrederic Mellardiフレデリック・メラルディOrchestre De ParisPro Brass + +9177175Alexandre BatyAlexandre Baty (born 1983) is a French classical trumpeter.Needs VoteMünchner PhilharmonikerL'Orchestre De La Suisse RomandeDeutsches Symphonie-Orchester BerlinConcertgebouworkestOrchestre Philharmonique De Radio FranceSeoul Philharmonic OrchestraOrchestre National Des Pays De La Loire + +9189466Bianca Maria FioritoItalian classical flautist, born 1999 in Rome.Needs VoteMünchner PhilharmonikerPentarte Ensemble + +9190204Steven MageeContrabassoon playerNeeds VoteBBC Symphony Orchestra + +9190228Carolyn Scott (2)Viola playerNeeds VoteBBC Symphony Orchestra + +9190234Ni DoViolin playerNeeds VoteBBC Symphony Orchestra + +9190240Lucica TritaViolin playerNeeds VoteBBC Symphony Orchestra + +9191626Paul GrennanClassical cellist from Ireland.Needs VoteHallé Orchestra + +9208159Zeyu Victor LiChinese violinist, born in 1996.Needs VoteNew York PhilharmonicToronto Symphony Orchestra + +9212263Andreas Väljamäe (2)Bass vocalist.Needs Votehttps://www.linkedin.com/in/andreas-v%C3%A4ljam%C3%A4e-45188b99/https://www.facebook.com/andreas.valjamae/Estonian Philharmonic Chamber Choir + +9212266Kristine MuldmaEstonian soprano vocalist.Needs Votehttps://www.epcc.ee/inimesed/kristine-muldma/K. MuldmaEstonian Philharmonic Chamber Choir + +9212482Cätly TalvikEstonian alto vocalist.Needs Votehttps://www.linkedin.com/in/catly-talvik/https://www.epcc.ee/inimesed/catly-talvik/Estonian Philharmonic Chamber Choir + +9212485Kaarel KukkEstonian baritone vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/kaarel-kukk/Estonian Philharmonic Chamber Choir + +9212491Greesi LangovitsGreesie Desiree LangovitsEstonian soprano / choral vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +9212494Karolis KaljusteEstonian soprano vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/karolis-kaljuste/Estonian Philharmonic Chamber Choir + +9212497Sander SokkEstonian tenor vocalist and composer, born October 31, 1987 in Tartu.Needs Votehttps://www.linkedin.com/in/sander-sokk-64a53a226/https://www.emic.ee/?sisu=heliloojad&mid=58&lang=eng&action=view&method=biograafia&id=199Estonian Philharmonic Chamber Choir + +9212506Villu VihermäeEstonian classical cellist, born April 15, 1984.Needs VoteEstonian National Symphony OrchestraTallinn Ensemble + +9216670Albrecht RiehleClassical cellist. A member of the [a604396] from 1973 to 2010.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +9222181Patrick CurlettBritish violinist and Assistant Principal Violin in the Royal Scottish National Orchestra.Needs Votehttps://www.rsno.org.uk/info/patrick-curlett/Royal Scottish National OrchestraFejes Quartet + +9235990Andrés Eloy MedinaAndrés Eloy Medina RieraVenezuelan oboe player, composer (born 1965), married with harpsichordist Adela BarretoNeeds Votehttps://es-la.facebook.com/aemedinariera/Simón Bolívar Symphony Orchestra Of Venezuela + +9237562Weijing WangViolistNeeds VoteChicago Symphony OrchestraJames Matheson String Quartet + +9237565Ni MeiNi Mei is a classical violinist.Needs VoteDetroit Symphony OrchestraChicago Symphony Orchestra + +9238474Frans HodellNeeds Major Changes + +9241174Christa-Maria StangorraGerman-Latvian violinist, born 1995. Studies in Hamburg, London and Berlin, among others.Needs Votehttps://stangorra.wordpress.com/Berliner PhilharmonikerLGT Young Soloists + +9245107Victoria HarrildBritish session classical cellist and cello teacher. +She freelanced with the [a=London Symphony Orchestra] from March 2012 to March 2020. She was founder, Manager and Artistic Director of the [b]Eschenburg Trio[/b] from January 2013 to September 2015. She became Principal Cello in the [a=Orquestra Sinfônica Do Estado De São Paulo] from December 2018 to September 2019. Member of [b]The Pythagoras Ensemble[/b].Needs Votehttps://www.facebook.com/vharrildhttps://www.linkedin.com/in/victoria-harrild-ab5bab14b/?originalSubdomain=ukhttps://royalarsenalschoolofmusic.com/stringshttps://www.imdb.com/name/nm9536884/London Symphony OrchestraOrquestra Sinfônica Do Estado De São Paulo + +9245929Joanna TwaddleCellistNeeds VoteLondon Symphony Orchestra + +9249982JLF (4)JLF (Josh Foster) is a DJ on mission to bring the fun and party vibe back into hard house and make it once again accessible to the masses. + +Carving his own niche with high energy sets packed full of mashups and reworks of his own creation, his over-the-top edits are a combination of classic tracks, acapellas and unreleased material – tongue in cheek bootlegs that whip the crowd into a frenzy and leave them begging for more… + +The last 2 years have seen sets at Fixate, Happy Vibes and Anarchy, the Sundissential North livestream and an acclaimed performance at The Tidyland Weekender to round it all off. He counts heavyweights like Amber D, Jon Hemming and General Bounce amongst his fans and is slowly amassing the kind of adulation usually reserved for legacy artists – a recognition of his unique approach to DJing and performance. + +He’s had 20 tracks released since 2021 with another 10 slated for 2024, with his music showing up on labels including Tidy Trax, Cheeky Tracks, Boxt and Faculty One. His productions have support from industry titans Hannah Laing, Viviana Casanova, Yomanda, The Tidy Boys, Andy Farley, Amber D, Digital Mafia, General Bounce and Jon Hemming and have featured on numerous albums and compilations. + +Josh is now looking to focus on making the transition to headlining and supporting established headliners, whilst working through his bucket list of major brands to represent and target labels to release with.Needs Votehttps://www.facebook.com/djJLFPagehttps://soundcloud.com/djjlfhttps:/www.jlf.digitalhttps://www.twitch.tv/dj_jlfhttps://www.beatport.com/artist/jlf/72541https://www.youtube.com/channel/UCdGi_TiAqPjODW7DK-iCVrghttps://www.instagram.com/dj_jlfhttps://www.tiktok.com/@dj_jlfhttps://open.spotify.com/artist/0LjEAbdOf8a6WnDrhWiOeSFJL (3)Josh Foster (6) + +9254419Robert LauverAmerican classical hornist.Needs VoteSaint Louis Symphony OrchestraPittsburgh Symphony Orchestra + +9264487Emilio LlinásClassical violinist (Assistant principal second violin) for The Cleveland Orchestra. He joined The Cleveland Orchestra in 1968 at the invitation of George Szell..Needs Votehttps://www.clevelandorchestra.com/discover/meet-the-musicians/second-violins/llinas-emilio/The Cleveland Orchestra + +9266383Harald KrumpöckHarald Krumpöck is an Austrian violinist. +Born in Vienna in 1968, Krumpöck has studied with Prof. M. Schnitzler and Prof. G. Hetzel since 1984. Krumpöck won a prize at the International Youth Competition of the Western Classical Music Festival in the U.S.A. He has been a member of the Vienna State Oprera Orchestra and Die Wiener Philharmoniker since 1993. He won the first place in chamber music at the Brahms Competition, held in Austria, 1994. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerEnsemble Wiener CollageEnsemble KontrapunkteGustav Mahler JugendorchesterHofmusikkapelle WienSeifert String QuartetGustav Mahler Quartett + +9269548Daniel FroschauerDaniel Froschauer (born 30 December 1965 in Vienna, Austria) is an Austrian violinist. He's the son of [a833161].Needs VoteDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerWiener Ring EnsembleKlavierquartett-Wien + +9294592Wolfgang ZimmerlWolfgang Zimmerl (8 February 1965 — 27 April 2011) was an Austrian oboist.Needs VoteWiener SymphonikerWiener Kammerorchester + +9312796Marko MilenkovićViola playerNeeds VoteCamerata Bern + +9331237Brendan KaneClassical double bassist.Needs VoteIsrael Philharmonic Orchestra + +9332719Andrés MoraColombian bassist and composer.Needs VoteAndres MoraKronos + +9343030Ernest Hall (3)(Alexander) Ernest HallBritish classical trumpeter, and trumpet teacher. Born in 1890 - Died in 1984. +He came to the [l290263] in 1910 on a scholarship to study the trumpet (1910-1914). He arrived at the RCM having already been a member of the [a=Royal Liverpool Philharmonic Orchestra] and was a veteran performer on the cornet. In 1911, he joined the [a=London Symphony Orchestra]; he was appointed Principal Trumpet in 1924 holding the post until 1928. He then joined the [a=BBC Symphony Orchestra] as Principal Trumpet (1929-1953). He taught at the Royal College of Music. +He was awarded an OBE in 1962.Needs Votehttps://www.robbstewart.com/f-trumpet-history-part-4https://www.wikitree.com/wiki/Hall-84123London Symphony OrchestraBBC Symphony OrchestraRoyal Liverpool Philharmonic Orchestra + +9352309Rosario MazzeoAmerican clarinetist and clarinet system designer (April 5, 1911 – July 19, 1997). + +He was born in Pawtucket, Rhode Island, grew up in Worcester, Massachusetts, and afterward lived in Boston, Massachusetts. He played first E-flat clarinet and later bass clarinet in the Boston Symphony Orchestra from 1933 to 1966. Personnel manager with the Boston Symphony for much of his performance tenure, Rosario Mazzeo was also chairman of the woodwind department at the [l=New England Conservatory of Music]. After his retirement from the BSO, he lived in Carmel, California, where he had an extensive private studio and was a faculty member at the [l=University Of California Santa Cruz], [l=San Francisco Conservatory of Music] and [l=Stanford University]. He was the designer of the Mazzeo system of clarinet keywork.Needs Votehttps://en.wikipedia.org/wiki/Rosario_MazzeoBoston Symphony Orchestra + +9356509Semiramis CostaSemiramis von Bülow-CostaBrazilian classical cellist.Needs VoteSemíramis da Silva CostaStuttgarter Philharmoniker + +9356548Anthony PriskClassical trumpeter.Needs VoteThe Philadelphia Orchestra + +9360772Laurent SauronFrench classical percussionistNeeds VoteLe Concert SpirituelCappella MediterraneaSyntagma AmiciEnsemble Marguerite LouiseEnsemble El SolLa PalatineInto The Winds + +9371833Laurent Rossi (2)Laurent RossiFrench horn player (b, Montauban, 6 October 1972-) who works in Teatro Nacional de São Carlos, in LisbonNeeds Votehttps://www.saocarlos.pt/profile/laurent-rossi/https://fr.ulule.com/users/ldrossi/#/Orchestre National Du Capitole De ToulouseGulbenkian OrchestraOrquestra Sinfónica Do Teatro Nacional De São Carlos, LisboaOrquestra Sinfónica PortuguesaOrchestre Baroque de MontaubanEnsemble Haute Trahison + +9373603Siegfried MeikGerman conductor, pianist and violist, born 12 October 1933 in Coburg - died 29 April 2017, Salzburg. He was the son of a musician, also named Siegfried - Siegfried August Ernst Meik (1905-1990). He served as 2nd Kapellmeister in Passau und Coburg, and played in the [a=Orchester des Landestheaters Coburg]. Moving to Austria, from 1966 to 1969 he played in the [a=Orchester des Landestheaters Linz], which became the [a=Bruckner Orchestra Linz] in 1967. From 1972 to 1993, he was a member of [a=Das Mozarteum Orchester Salzburg]. He also taught violin at the Music School in Ried. He was the father of [a=Alexander Meik]. He also played in the Innviertler Künstlergilde.Correcthttps://regiowiki.at/wiki/Siegfried_MeikDas Mozarteum Orchester SalzburgBruckner Orchestra LinzOrchester des Landestheaters CoburgOrchester Des Landestheaters Linz + +9375718Rosemary Shaw (2)Classical violist.Needs VoteOrchestre symphonique de Montréal + +9375721Victor EichenwaldClassical violinist, born 14 October 1944; died 31 December 2018.Needs VoteOrchestre symphonique de Montréal + +9390253Michał Kowalczyk (3)Born 1979. Polish violinist, composer and arranger.Needs Votehttp://michalkowalczyk.com/https://nospr.org.pl/pl/orkiestra/muzycy/michal-kowalczykPolish National Radio Symphony OrchestraŚląska Orkiestra Kameralna + +9390373Greg InglesAmerican Trombone + sackbut instrumentalistNeeds VoteGIGiacosaGregory InglesChatham BaroquePiffaro, The Renaissance BandEarly Music New YorkTrinity Baroque OrchestraQuicksilver Baroque + +9390961Chiara MeneghinelloItalian classical violinist, born in 2000 in Padua.Needs VoteOrchestra Di Padova E Del Veneto + +9391765Felix NemirovskyUzbek classical cellist, born in Tashkent in 1963.Needs VoteIsrael Philharmonic Orchestra + +9391978Flore-Anne BrosseauFrench classical violistNeeds VoteFlore-Anne BrousseauOrchestre De Paris + +9393190Harry BennettsClassical violinist.Needs VoteSydney Symphony Orchestra + +9399805Gerald BrinnenBritish classical double bass player. Born in May 1932 in Stockport, England, UK - Died in September 2020 in Ashtead, Surrey, England, UK. +He became a member of the [a=National Youth Orchestra Of Great Britain]. By the age of 20, he himself had joined the [a=Hallé Orchestra]. He was offered a place in the [a=BBC Symphony Orchestra]. Within a couple of years, he moved to the [a=London Symphony Orchestra] as Co-Principal Double Bass. He then joined the [a=New Philharmonia Orchestra] on its formation in 1964. He then auditioned and successfully won the Principal Bass seat at the [a=BBC Symphony Orchestra] where he remained until his retirement in 1992.Needs Votehttps://slippedisc.com/2020/09/london-mourns-a-second-principal-bass/https://www.thestrad.com/news/obituary-double-bassist-gerald-brinnen-former-principal-bass-of-the-bbc-symphony-orchestra/11228.articleLondon Symphony OrchestraBBC Symphony OrchestraHallé OrchestraNew Philharmonia OrchestraNational Youth Orchestra Of Great Britain + +9410128Erica PeelFlute player.Needs VoteThe Philadelphia OrchestraUniversity Of Miami Wind Ensemble + +9416566Vanessa RussellVanessa Hunt RussellCanadian classical cellist.Needs VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +9416572Benedikt BüscherBenedikt Büscher is a German classical double bassist.Needs VoteStaatsorchester StuttgartWürttembergisches KammerorchesterBayerisches LandesjugendorchesterParnassus Akademie + +9416575Dániel EmberClassical horn player, born in 1982 in Debrecen, Hungary.Needs VoteRundfunk-Sinfonieorchester Berlin + +9416590Anna Matz (2)Classical violinist, born in 1991 in Dresden, Germany.Needs VoteMahler Chamber Orchestra + +9416599Stephanie BaubinClassical violinist, born in 1983 in Salzburg, Austria.Needs VoteMahler Chamber OrchestraCamerata Academica Salzburg + +9416602Tristan TheryClassical violinist, born in 1984 in Bordeaux, France.Needs VoteGewandhausorchester Leipzig + +9417595Anne Solveig WeberClassical violinist and festival director.Needs Votehttps://www.annesolveigweber.com/Anne WeberSymphonie-Orchester Des Bayerischen RundfunksBamberger Symphoniker + +9417676Konstantin YefimovКонстантин ЕфимовRussian classical flautist.Needs VoteRussian National Orchestra + +9423685Bruce Benson (5)American baritone saxophonist in the 40ties.Needs VoteTommy Dorsey And His Orchestra + +9425890Klaus LeopoldGerman bassistNeeds VoteDeutsche Kammerphilharmonie Bremen + +9425893Hannah GladstonesClassical bassoonistNeeds VoteDeutsche Kammerphilharmonie Bremen + +9425896Nuala McKennaGerman-Irish cellist, born in 1993.Needs Votehttps://nuala-mckenna.com/Deutsche Kammerphilharmonie BremenEstonian Festival Orchestra + +9425899Luisa LohmannGerman clarinetistNeeds VoteDeutsche Kammerphilharmonie Bremen + +9425902Maximilian KromeClassical clarinetistNeeds Votehttps://www.maximiliankrome.de/Deutsche Kammerphilharmonie Bremen + +9427330Ellinor RossingSwedish viola player.CorrectGöteborgs Symfoniker + +9433270Natalia WächterRussian-born classical violist, and also a jazz singer.Needs VoteStuttgarter Philharmoniker + +9439015Willard Spencer (2)Willard O. SpencerTrombonist, Oakland Tech graduate and member of Musician's Union Local 6, he performed in numerous orchestras and bands for over 70 years, including the San Francisco Symphony and Opera, the KFRC radio and KGO television staff bands, the Golden Gate Park and San Francisco Municipal bands, the California Grays band, and the California National Guard and U.S. Maritime Service military bands, as well as numerous casual engagements for shows, theater, dance and clubs. In addition to performing, Willard taught and arranged music and repaired brass instruments. + +b. December 30, 1915 - d. February 5, 2006Needs VoteWillardLouis Armstrong And His Orchestra + +9443911Hélène DusserreFrench classical flautist.Needs VoteOrchestre Des Concerts LamoureuxParis Mozart Orchestra + +9453976Stéphane KwiatekFrench clarinetist.Needs VoteOrchestre National Bordeaux Aquitaine + +9459904Stanko MadicStanko Madić Stanko Madić (born 1984) is a classical violinist.Needs VoteStanko MadićMünchner RundfunkorchesterStaatskapelle DresdenJunge Deutsche PhilharmonieNo Borders OrchestraStaatsphilharmonie Nürnberg + +9461230Hanna GromGerman classical hornist.Needs VoteStuttgarter Philharmoniker + +9461233Nikola StolzOboist.Needs VoteStuttgarter PhilharmonikerSüdwestdeutsches Kammerorchester + +9462553Armand NeveuxViolinist and personnel manager at the New York Philharmonic Orchestra in the 1960sNeeds VoteNew York Philharmonic + +9462556Joseph De Angelis (2)Personnell Manager at the New York Philharmonic Orchestra in the 1960sNeeds VoteNew York Philharmonic + +9462559Benjamin SchlossbergClassical Bassist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462562John Schaeffer (4)American classical bassist, member of the New York Philharmonic Orchestra from 1951 until 1996. +He passed away on May 30, 2016.Needs VoteNew York Philharmonic + +9462565Mario PolisiClassical Bassist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462568Leonard SchallerBass Clarinetist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteL. SchallerNew York Philharmonic + +9462571Frank RuggieriBassoon player. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462574Asher RichmanClassical cellist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462577George FeherCellist. Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462580Naoum DingerClassical cellist who was a member of the New York Philharmonic Orchestra in the 1960s and retired in 1964.Needs VoteNew York Philharmonic + +9462583Bert BialContrabassoon player. Member of the New York Philharmonic Orchestra under [A=Leonard Bernstein] from 1957, active until 2005. +He passed away May 20, 2020.Needs VoteNew York Philharmonic + +9462586John CarabellaHornist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462589Louis Ricci (2)Hornist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462592Ranier De IntinisHornist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462595Howard KereseyLibrarian of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462598Howard ZizzaAssistant librarian of the New York Philharmonic Orchestra in the 1960s.Needs VoteJoseph ZizzaNew York Philharmonic + +9462601Francis NelsonMember of the stage personnell at the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462604Peter Regan (4)Member of the stage personnel at the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462607Michael de StefanoViolin player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462610Edward HermanAmerican trombone player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteEdward Herman, Jr.New York Philharmonic + +9462613Josef Novotny (2)Tuba player. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462616David Kates (2)Violist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462619Henry NigrineViolist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462622Larry Newland (2)Violist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462625Ralph MendelsonViolist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462628Robert WeinrebeViolist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462631Selig PosnerViolist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462634William CarboniViolist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462637Bjoern AndreassonViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462640Carlo RenzulliViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462643Frank GullinoViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462646George RabinViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteG. RabinNew York Philharmonic + +9462649Jesse CeciViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462652Joachim FishbergViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462655Leopold BuschViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462658Leopold RybbViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462661Louis CarliniViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462664Louis FishzohnViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462667Max Weiner (2)Violinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462670Mordecai DayanClassical violinist and member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9462673Morris BorodkinClassical violinist, born 1 February 1904 in Russia and emigrated to the United States in 1914. He was a member of the New York Philharmonic Orchestra beginning in 1924.Needs VoteNew York Philharmonic + +9462676Morris KreiselmanViolinist and violist who was a member of the New York Philharmonic Orchestra in the 1960s. Born in Kiev, Russia on 21 August, 1899.Needs VoteNew York Philharmonic + +9462679William DembinskyViolinist. +Member of the New York Philharmonic Orchestra in the 1960s.Needs VoteNew York Philharmonic + +9463159Fabien MastrantonioClassical violinist.Needs VoteOrchestre National Du Capitole De Toulouse + +9469048Margit RingleMargit Ringle is a German violist. +Needs VoteKurpfälzisches Kammerorchester Mannheim + +9469051Akemi HasegawaAkemi Hasegawa is a classical violinist. +Needs VoteKurpfälzisches Kammerorchester Mannheim + +9469054Darius DurczokDarius Durczok is a classical violinist. +Needs VoteKurpfälzisches Kammerorchester Mannheim + +9469057Izabela Wiza-Kochann Izabela Wiza-Kochann (born 1980) is a Polish violinist.Needs VoteKurpfälzisches Kammerorchester Mannheim + +9469060Marie-Denise HeinenMarie-Denise Heinen is a German violinist.Needs VoteKurpfälzisches Kammerorchester Mannheim + +9469063Robert Korn (3)Robert Korn is a classical violinist.Needs VoteKurpfälzisches Kammerorchester Mannheim + +9469066Wolfgang GroschWolfgang Grosch is a German violinist. +Needs VoteKurpfälzisches Kammerorchester Mannheim + +9474706Orkiestra Symfoniczna Polskiego Radia W KrakowiePolish Radio Symphony Orchestra in Krakow. +Conductors: +[a=Jan Krenz]Needs VoteCracow Radio Symphony OrchestraKrakowska OrkiestraKrakowska Orkiestra PRKrakowska Orkiestra Polskiego RadiaKraków Radio & Symphony OrchestraOrchestra Of KrakowOrchestra Of Polish RadioOrchestre De CracovieOrchestre De La Radio Polonaise CracovieOrchestre Symphonic De La Radio Nationale PolonaiseOrchestre Symphonique De La Radio Polonaise CracovieOrkiestra P. R. W KrakowieOrkiestra PR W KrakowieOrkiestra Polskiego Radia W KrakowieOrkiestra Symfoniczna Krakowskiej Rozgłośni Polskiego RadiaOrkiestra Symfoniczna PR W KrakowieOrkiestra Symfoniczna i Chór Polskiego Radia W KrakowiePolish National Radio OrchestraPolish Radio National Symphony Orchestra Of KrakowPolish Radio Orchestra Of KrakowPolish Radio Orchestra, KrakówPolish Radio Symphony OrchestraPolish Radio Symphony Orchestra In KrakowPolish Radio Symphony Orchestra In KrakówPolish Radio Symphony Orchestra Of KrakowPolish Radio Symphony Orchestra Of KrakówPolish Radio Symphony Orchestra of KrakówPolish Radio Symphony Orchestra, CracowPolish Radio Symphony Orchestra, KrakowPolnisches Radio-Symphonieorchester KrakauPolnisches Rundfunk Symphonie Orchester KrakauRadio Symphony Orchestra Of CracowRadiowa Orkiestra Symfoniczna KrakówRadiowa Orkiestra Symfoniczna W KrakowieRadiowa Orkiestra Symfoniczna, KrakowSinfonie-Orchester Des Polnischen Rundfunks KrakauSymphony OrchestraThe Polish Radio Symphony Orchestra In CracowОркестр Польского Радио В КраковеAdam Kozłowski (5) + +9496324Ben SolomonowClassical cellist.Needs VoteBen SolomonovLos Angeles Philharmonic OrchestraSan Diego Symphony + +9497248Jon ÅsnesNorwegian double bass playerNeeds Votehttps://www.facebook.com/jon.asnesBergen Filharmoniske Orkester + +9528589Vittorio Ferrari (2)Classical hornist.Needs VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +9528910Adam Harris (11)Singer and former member of the UK boys choir 'The St. Philip's Boys Choir' in the 90s'.Needs VoteLiberaThe St. Philip's Boys Choir + +9531439Katharina HeiligtagGerman alto / mezzo-soprano vocalistNeeds Votehttps://katharina-heiligtag.de/RIAS-Kammerchor + +9531445Marcel RaschkeGerman classical bass vocalist from BerlinNeeds VoteRIAS-KammerchorLa Capella Ducale + +9531457Viktoria WilsonGerman classical soprano & mezzo-soprano vocalist from DresdenNeeds Votehttps://www.viktoriawilson.de/RIAS-Kammerchor + +9531460Shimon YoshidaJapanese classical tenor vocalistNeeds VoteRIAS-Kammerchor + +9534031Sarah Bennett (5)British flute player Needs VoteHallé Orchestra + +9541012Frida Hallén BlixtFrida Liliane Hallén BlixtSwedish violinist, born August 18, 1972. + +She has played in the Swedish Radio Symphony Orchestra since 2001. In addition to orchestral playing, chamber music is an important part of her making music. She has played string trio with her orchestra colleagues, viola player Linnea Nyman and cellist Helena Nilsson, since 2014 and in recent years also in piano quartet with pianist David Wärn. She studied at the Royal Academy of Music in Stockholm, where she received a soloist diploma in 1997, followed by further studies at the Royal Academy of Music in London.Needs VoteFrida HallénSveriges Radios Symfoniorkester + +9545212Joanna KozłowskaJoanna KozłowskaPolish opera soprano singer. Born 1959 in Poznań, Poland.Needs Votehttp://www.kozlowska.pl/http://pl.wikipedia.org/wiki/Joanna_Koz%C5%82owskaJoanna KoslowskaJoanna Kozlowska + +9551983David GrunschlagDavid GrünschlagAustria-born Israeli. Lead violinist in the [a837568] and its forerunner, the Palestine Symphony Orchestra. Brother of [a=Rosi Grünschlag] and [a=Toni Grünschlag].Needs Votehttps://holocaustmusic.ort.org/resistance-and-exile/grunschlag-family/Israel Philharmonic Orchestra + +9553504Karin Teresa BonelliAustrian flute player.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerOberösterreichisches Jugendsinfonieorchester + +9556327Billy Richard (2)William Gene RichardUS rhythm & blues singer, songwriter. Born January 31st, 1928 in Crockett, TX - Died December 10th, 2007 in Los Angeles, CA. Brother of [a=Roy Richard]. Sometimes credited as "William Richard, Jr." for songwriting. + +Do NOT confuse with his nephew [a=Billy Richards (3)] who sang in a reformed version of [a=The Coasters] in the 80s.Needs VoteB. RichardB. RichardsBill RichardBill RichardsBilly RichardsRichardRichardsW. RichardW. Richard, Jr.W.RichardWilliam RichardWilliam Richard, Jr.The RobinsThe Ding Dongs (2)The Nic NacsThe Buzzards (5)The Four Bluebirds + +9556390Billy Richards (3)William Richards, Jr.US singer, songwriter, producer. In 1962, he joined forces with the original bass singer of [a=The Coasters], [a=Bobby Nunn]. They performed side by side in a Coasters group for over 24 years until Bobby Nunn's untimely death in 1986. Chauffeur and occasional member of [a=The Robins]. + +Nephew of [a=Billy Richard (2)] of [a=The Robins]Needs Votehttps://gotofirstclass.com/talentroster.talent_CD0D24027ABF2E68E1DC7177F970860D.htmB. RichardsBill RichardRichardRichardsW.Richard Jr.The CoastersThe Robins + +9558475Omri BlauPercussionist.Needs VoteIsrael Philharmonic OrchestraJerusalem Symphony Orchestra + +9558535Nicolas PeyratFrench classical violist.Needs VoteOrchestre De Paris + +9562066Aurore DassesseBelgian classical cellist.Needs Votehttps://aurore-dassesse.yolasite.com/Orchestre National Du Capitole De ToulouseEnsembl’Arenski + +9562975Marie FavierFrench alto vocalistNeeds VoteLe Concert Spirituel + +9562984Roland Ten WegesFrench Bass & Baritone vocalistNeeds VoteLe Concert D'AstréeLe Poème HarmoniqueChœur De L'Opéra Royal + +9563812Michael Staab (2)Michael "Misar" StaabThis is Mike Misar, the producer who often works with Uwe Wagenknecht. Not to be confused with Michael "Mike" Staab, the producer of Magic AffairCorrectM. StaabMikeMisarXyloniteKernkraftRandom Access (3)Doc ThorPro-ActiveA3YakoozaMikadoBasic Inc.Mind XNightclubFreebassUBMCosmik VisionFlash (2)KnorzSyntexVelvet LippsRandom Access (3)Le Voyage (2) + +9567904Mio Yamamoto (2)Japanese classical violinist.Needs VoteTonhalle-Orchester Zürich + +9573181Jeanette BittarJeannette L. BittarJeanette Bittar is a classical oboist. She's married to [a1705769]. + +Born in Cambridge, England 1968 and raised in Madison, Wisconsin.Needs VoteChicago Symphony OrchestraThe Florida Orchestra + +9573646Dima BawabClassical soprano vocalist, born in 1981 in Jordan from Palestinian parents.Needs Votehttps://www.dimabawab.com/https://www.bach-cantatas.com/Bio/Bawab-Dima.htmThe Monteverdi Choir + +9577045Ian Davidson (12)ViolinistNeeds VoteRoyal Philharmonic OrchestraAlmira String Quartet + +9582718Bob Taylor (39)Tenor saxophonist, in 1943 member of Benny Goodman and his Orchestra.Needs VoteBenny Goodman And His Orchestra + +9583003Carl Anderson (13)Carl Anderson.US double bassist. +Joined the Boston Symphony Orchestra at the start of the 2019-2020 season.Needs Votehttp://www.bso.org/profiles/carl-andersonhttp://www.bu.edu/cfa/about/contact-directions/directory/carl-anderson/http://www.youtube.com/watch?v=G3dpy8Gtl5sBoston Symphony Orchestra + +9583009Steven LaraiaViolist.Needs Votehttps://www.bso.org/strings/steven-o-laraia-viola.aspxSteven O. LaraiaBoston Symphony Orchestra + +9583012David Lau (4)ViolistNeeds Votehttps://www.gewandhausorchester.de/en/orchester/person/lau-david/Gewandhausorchester Leipzig + +9583015Youming ChenViolist.Needs VoteChicago Symphony Orchestra + +9584116Grzegorz GołąbPolish classical bassoonist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +9597901Clémence DupuyClassical violist.Needs VoteOrchestre Philharmonique De Radio France + +9598684Suzana StefanovicClassical violoncello player settled in Spain.Needs VoteOrquesta Sinfónica de RTVE + +9606895Benedict BywaterVocalistNeeds VoteBen BywaterBen bywaterLibera + +9607027Daniel White (13)Member of the boy choir 'Libera'Needs VoteLibera + +9612754Andreas MuckClassical violist. A member of the [a604396] from 1973 to 2015.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksResidenz Kammerorchester München + +9624589Véronique BastianVéronique Bastian (born 1984) is a French violinist. + Needs VoteSymphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieJeunesses MusicalesGustav Mahler Jugendorchester + +9624592Daniela JungDaniela Jung is a German violinist. +Needs VoteSymphonie-Orchester Des Bayerischen RundfunksOrchester Der Deutschen Oper BerlinEuropean Union Youth OrchestraNDR Radiophilharmonie + +9628039Jeffrey RathbunClassical oboist and composer.Needs VoteThe Cleveland Orchestra + +9630775Frank MarsalesFrank A. Marsales(b. Aug. 31, 1886, Parker, Ontario, Canada; d. Aug. 15, 1975, Long Beach, CA). Tuba player and composer. Played with [a=Paul Whiteman And His Orchestra] from September 1924 until early May 1925. Marsales was also a symphony musician who became the music director for Warner Bros. Cartoons. Best known for his work scoring many classic animated films of the early 1930s, including every Harman & Ising Looney Tune and Merrie Melodie. In the mid-1930s, Marsales began work at Walter Lantz Studios as musical director for the Andy Panda cartoons, among others. Music from Marsales's work for Lantz also found its way into the 1957 animated television series The Woody Woodpecker Show.Needs Votehttps://en.wikipedia.org/wiki/Frank_Marsaleshttps://looneytunes.fandom.com/wiki/Frank_MarsalesPaul Whiteman And His Orchestra + +9632623Drax NelsonPaul NorrisNeeds Votehttps://soundcloud.com/draxnelsonNoggerCupraPaul Norris (2)Agent JackThe Sticky BanditsDirty Toe RagsC.A.N.Phoenix (108)Junction 33Coffin Dodgers (3) + +9651298John Chisholm (6)Classical violin playerNeeds VoteSan Francisco Symphony + +9654793Barbara MenierBelgian soprano vocalist.Needs VoteChoeur de Chambre de Namur + +9654796Cécile DalmonFrench classical soprano vocalistNeeds Votehttps://www.facebook.com/villededole/photos/la-soprano-c%C3%A9cile-dalmon-a-interpr%C3%A9t%C3%A9-des-cantates-de-haendel-et-sarri-%C3%A0-la-chap/845317628989533/Le Concert D'AstréeLes Meslanges + +9654799Samuel NamotteBelgian Bass & Baritone vocalist, born December 2, 1990.Needs Votehttps://www.samuelnamotte.com/Choeur de Chambre de Namur + +9655228John Thomas SteeleJohn Thomas "Scooter" Steele, bass singerNeeds VoteSteelSteeleThe WillowsThe 5 Willows + +9655480Luke Collins (7)Former member of the UK boy choir 'Libera'Needs VoteLibera + +9655483Frederick InglesFormer member of the UK boy choir 'Libera'Needs VoteFreddie InglesLibera + +9660655Benedict Macklow-SmithClassical treble vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660658Charles Shaw (12)Credited as classical vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660661Edward Maxwell (2)Credited as classical vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660664Edward SylvaCredited as classical vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660667Freddie GoffCredited as classical vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660670George PurvesCredited as classical vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660673James Jordan (11)Credited as classical vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660676James Thomson (14)British classical choir vocalistNeeds VoteThe Choir Of Westminster Abbey + +9660679Michael Francis (17)Credited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660682Omar ByrneCredited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660685Oscar WickhamCredited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660688Patrick Maxwell (2)Credited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660691Ruihan Bao-SmithCredited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660694Samuel Turner (2)Credited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660697Sasha Del MarCredited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660700Stephen Lam (4)Credited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660703Thomas ByrneCredited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9660706Zebedee BuckeridgeCredited as classical choir vocalist Needs VoteThe Choir Of Westminster Abbey + +9663832Jakub Urbańczyk (2)Polish tuba player.Needs VotePolish National Radio Symphony Orchestra + +9667480Jérôme FruchartFrench classical cellistNeeds VoteConcertgebouworkest + +9669532Jochen Neuffer (2)Jochen NeufferConductor, Arranger, ProducerNeeds Votehttp://www.jochenneuffer.comBBC Symphony OrchestraMetropole OrchestraThe Heritage OrchestraNetherlands Chamber OrchestraTobias Becker Bigband + +9676750Agnieszka HałuzoPolish classical violist.Needs VotePolish National Radio Symphony Orchestra + +9676753Beata RaszewskaPolish Viola Player, born in 1966Needs VotePolish National Radio Symphony OrchestraTono Quartet + +9676756Joanna TesarczykPolish classical violist.Needs VotePolish National Radio Symphony Orchestra + +9698125Nienke van RijnViolinistNeeds VoteConcertgebouworkestMembers Of The Royal Concertgebouw Orchestra + +9710533Kathrin MoserClassical clarinetist.Needs VoteBruckner Orchestra LinzDaius Quintett + +9723694André Cruz (4)Tenor vocalistNeeds VoteNederlands KamerkoorPA'DAM + +9730561Elisabeth BuchnerElisabeth Buchner (born 1998 in London) is an English classical violist.Needs VoteBuchnerSymphonie-Orchester Des Bayerischen Rundfunks + +9746350Tatjana UhdeGerman violoncellist, born in Freiburg, soloist for L'Orchestre National De L'Opéra De Paris.Needs Votehttps://tatjanauhde.com/https://twitter.com/tatjanauhdehttps://www.instagram.com/tatjana_cello/Orchestre National De L'Opéra De Paris + +9751987Sébastien Dubé (2)Canadian double-bassist, born in 1966, now residing in Sweden.Needs VoteDubéS. DubéSebastian DubéSebastien DubeSebastien DubéSebastién DubéAle Möller BandBergen Filharmoniske OrkesterRoyal Swedish Chamber OrchestraSymphony Orchestra Of Norrlands OperaBerndt Egerbladh TrioIvar Kolve Trio + +9753061Daniel Katz (3)Daniel Katz is an American classical cellist.Needs Votehttps://www.facebook.com/dan.katz.16/https://cso.org/about/performers/cso-musicians/strings/cello/daniel-katz/Chicago Symphony Orchestra + +9753064Kenneth Olsen (5)Kenneth Olsen is an American classical cellist.Needs VoteKen OlsenChicago Symphony OrchestraCivitas EnsembleAll-American Cello Band + +9753067Scott HostetlerScott Hostetler is an American classical oboist.Needs VoteChicago Symphony OrchestraKalamazoo Symphony Orchestra + +9753088Lora SchaeferLora Schaefer is an American classical oboist.Needs VoteChicago Symphony OrchestraThe Kansas City Symphony + +9753094Kozue FunakoshiClassical violinist.Needs Votehttps://cso.org/about/performers/cso-musicians/strings/violin/kozue-funakoshi/Chicago Symphony Orchestra + +9753097Rong-Yan TangClassical violinist.Needs VoteChicago Symphony OrchestraFort Wayne Philharmonic Orchestra + +9753100Wendy Koons MeirClassical violinist.Needs VoteChicago Symphony Orchestra + +9753103Stephanie JeongStephanie Jeong is an American classical violinist.Needs VoteNew York PhilharmonicChicago Symphony Orchestra + +9753112Amy Becker (2) Amy Gwinn-Becker Soprano vocalist.Needs VoteChicago Symphony Chorus + +9753118Betsy HoatsSoprano vocalist.Needs VoteChicago Symphony Chorus + +9753121Cari PlachyAmerican Soprano vocalistNeeds VoteChicago A CappellaChicago Symphony Chorus + +9753124Carla JanzenAlto vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +9753127Cole SeatonTenor vocalist.Needs VoteChicago Symphony Chorus + +9753133Eric Miranda (2)Bass vocalist.Needs VoteChicago Symphony ChorusGrant Park ChorusBella Voce + +9753136Geoffrey AgpaloTenor vocalist.Needs VoteChicago Symphony Chorus + +9753139Joseph CloonanTenor vocalist.Needs VoteChicago Symphony Chorus + +9753142Katarzyna DorulaSoprano vocalist.Needs VoteChicago Symphony Chorus + +9753145Kathleen MaddenAlto vocalist.Needs VoteChicago Symphony Chorus + +9753151Klaus GeorgTenor vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +9753157Lee LichamerBass vocalist.Needs VoteChicago Symphony Chorus + +9753160Madison BoltTenor vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +9753169Mark James MeierTenor vocalist.Needs VoteChicago Symphony Chorus + +9753172Mathew LakeBass vocalist.Needs VoteChicago Symphony Chorus + +9753175Michael BoschertBass vocalist.Needs VoteChicago Symphony Chorus + +9753184Robin A. KesslerAlto vocalist.Needs VoteChicago Symphony Chorus + +9753187Ryan J. CoxBass vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +9753190Scott UddenbergBass vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +9753196Stacy EckertAlto vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +9764350Reino VeijalainenNeeds Major Changes + +9764737Lev KlychkovЛев Леонидович КлычковLev Klychkov (born 1960) is a Soviet and Russian violinist and music teacher, soloist and accompanist.Needs Votehttps://ru.wikipedia.org/wiki/%D0%9A%D0%BB%D1%8B%D1%87%D0%BA%D0%BE%D0%B2,_%D0%9B%D0%B5%D0%B2_%D0%9B%D0%B5%D0%BE%D0%BD%D0%B8%D0%B4%D0%BE%D0%B2%D0%B8%D1%87https://100philharmonia.spb.ru/persons/38179/Lev KlõtškovSt. Petersburg Philharmonic Orchestra + +9766345Rosalind LeeSoprano vocalist and a member of the [a=Chicago Symphony Chorus]. + +Not to be confused with [a=Rosalind Ashford], who was once credited as Rosalind Lee Holmes.Needs Votehttp://rosalindlee.sitehappy.com/Chicago Symphony ChorusGrant Park Chorus + +9770917Magdalena HoffmannBorn in Basel, Switzerland in 1990, Magdalena Hoffmann is a German harpist. She has been invited as soloist and chamber musician to many festivals such as the Davos Festival or the Festival Alpenklassik. She is currently known for her constant works on interdisciplinary concepts.Needs Votehttp://www.magdalenahoffmann.org/home.htmlSymphonie-Orchester Des Bayerischen Rundfunks + +9776785Tjeerd TopDutch violinistNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +9798484John Jarman (2)John J. JarmanJazz mellophone and euphonium player from the 1920s-30s. Joined [a341395] in March 1926 and left the band in August 1926. Then joined [a1998409] and made several recordings with that group. Next, he played with [a3349535] during their 1931-32 engagement at The Hotel New Yorker.Needs VotePaul Whiteman And His OrchestraWillard Robison & His OrchestraCoon-Sanders Orchestra + +9799867Jonathan RandazzoClassical trombonist.Needs VoteSaint Louis Symphony OrchestraAmalgam Brass Ensemble + +9807868Axel BenoitAxel Benoit (born 1992) is a French classical bassoonist.Needs VoteGewandhausorchester LeipzigOrchestre De Chambre De Lausanne + +9817177James CluteJames Lewis CluteAmerican classical double bassist, born July 17, 1933 in Iowa City, and died March 7, 2012.Needs VoteMinnesota Orchestra + +9817189Ronald BalazsAmerican classical violinist, born April 16, 1930, and died September 12, 2012.Needs VoteMinnesota OrchestraFlorida Symphony OrchestraSarasota Orchestra + +9827863Benoît De BarsonyFrench classical hornist.Needs VoteBenoy de BarsonyOrchestre De ParisParis Brass Quintet + +9830920Zoé PireauxBelgian flautist & soprano vocalistNeeds VoteChoeur de Chambre de NamurOgives + +9849106Sheila PopkinAmerican born bassoonist.Needs Votehttps://www.aalborgsymfoni.dk/OM-OS/M%C3%B8d-orkestrets-musikere/Sheila-PopkinAalborg Symfoniorkester + +9849109Leah AksnesAmerican born clarinetistNeeds Votehttps://www.aalborgsymfoni.dk/OM-OS/Mød-orkestrets-musikere/Leah-AksnesAalborg Symfoniorkester + +9849112Judith BlauwDanish oboistNeeds Votehttps://www.aalborgsymfoni.dk/OM-OS/M%C3%B8d-orkestrets-musikere-OLD/Judith-Johanna-M.-BlauwAalborg Symfoniorkester + +9849934Marina GillamAustralian violinistNeeds VotePhilharmonia OrchestraBingham String Quartet + +9853801Florian WallezFrench classical violist.Needs VoteOrchestre De ParisLe Quatuor Denis Clavier + +9875764Bert VanderhoeftClassical hornist.Needs VoteOrchestre Du Théâtre Royal De La MonnaieFrescamente + +9877516Sin-tung ChiuClassical violinist and founding member of [a837570].Needs VoteOrpheus Chamber Orchestra + +9877519Susan Lang (3)Classical violinist and founding member of [a837570].Needs VoteSusan Lang EddlemonOrpheus Chamber Orchestra + +9893737Jaime SavanCornett player.Needs VoteThe English Baroque Soloists + +9894373Catherine Turner (3)American classical hornist.Needs VoteOrchestre symphonique de Montréal + +9900505Alyson FrazierBritish based American flautist.Needs Votehttps://www.alysonfrazier.com/Philharmonia Orchestra + +9903340Ingrid Lindström (2)Swedish violinistNeeds VoteIngrid LindstromThe English Baroque SoloistsVästerås Sinfonietta + +9903457Andreas SundénAndreas Taube SundénSwedish classical clarinet player.Needs Votehttps://vandoren.fr/fr/artistes-vandoren/sunden-andreas/Sveriges Radios Symfoniorkester + +9903466Herman van KogelenbergDutch classical flautist, born in Thorn.Needs VoteMünchner PhilharmonikerFarkas Quintet + +9903472Valentina SvyatlovskayaRussian classical violinistNeeds VoteConcertgebouworkest + +9908461Adam Szabo (2)Cellist and Artistic Director and General Manager of [a10355359].Needs VoteUlster OrchestraBournemouth Symphony OrchestraAustralian Youth OrchestraThe Welsh National Opera OrchestraAustralian World OrchestraManchester Collective + +9913963Maud Caille-ArmengaudFrench Recorder & Cornett instrumentalist and teacher at Conservatory d'Orsay.Needs Votehttps://fr.linkedin.com/in/maud-caille-armengaud-72739968?trk=people-guest_people_search-cardLes Arts Florissants + +9916255Jákup LützenJákup Højgaard LützenFaroese viola player born in Tórshavn in 1988. Graduated from [l=Det Kongelige Danske Musikkonservatorium] in 2013. From 2013 to 2015 member of the [a=Gustav Mahler Jugendorchester]. Since 2014 member of [a=Copenhagen Phil]. Son of [a=Herluf Lützen].Needs Votehttps://www.dacapo-records.dk/da/kunstnere/jakup-lutzenhttps://www.sonningmusik.dk/jakup-luetzen/Jakup LützenJákup Højgaard LützenGustav Mahler JugendorchesterCopenhagen PhilMorten Kargaard Septet + +9916945Annemarie BöschAustrian classical flautistCorrectWiener Akademie + +9916948Grazyna MilanClassical viola instrumentalistNeeds VoteWiener Akademie + +9919633Neil Gillespie (3)Classical tenor vocalist and photographer, born in Glasgow, Scotland.Needs VoteChorus Of The Royal Opera House, Covent Garden + +9926758RambalayaRambalaya es una banda liderada por la batería de Anton Jarl, principal compositor de la mayoría de canciones, que completaban originalmente Jonathan Herrero a la voz, Héctor Martín a la guitarra, Matías Míguez al bajo, y Fernando Tejero al piano y el Hammond, a los que se unen ahora los vientos de Pol Prats, saxo tenor y barítono, y David Pastor, trompeta, para dar forma a un disco homónimo que da continuidad al EP que publicaban hace apenas año y medio, todavía bajo el nombre de The Ramblers. + +Más que solventes en la composición, y sobrados de pericia instrumental, un auténtico all-star de músicos dan nacimiento a este proyecto como complemento a su presencia en bandas como Los Mambo Jambo, A Contra Blues, Koko-Jean & The Tonics o Los Saxofonistas Salvajes, y lo hacen buscando ampliar los horizontes que siempre han caracterizado a su música. Optan por la luminosidad y la superposición de estilos, y la jugada les sale fantástica. Logrando un sorprendente equilibrio entre lo clásico y lo actual. + +Con el Rhythm & Blues de los 50 y los 60 como base, el grupo suena perfectamente contemporáneo en piezas tan excelsas como «Bootlegger Man», «Chip On Your Shoulder» o «Talking To Myself», cuyo componente cinematográfico, otras de las características de su música, se ve enfatizado por la magnífica producción del siempre infalible Dani Nel.lo. Un disco de esos difíciles de olvidar porque están destinados a permanecer mucho, mucho tiempo, al lado de tu reproductor de música. + +biography From https://www.buenritmo.esNeeds Votehttps://www.buenritmo.eshttps://www.facebook.com/rambalaya/The Ramblers + +9927250Rushana BrandangerClassical violist.Needs VoteBergen Filharmoniske Orkester + +9937654Alexander HannaAlexander Hanna is an American classical double bassist.Needs VoteDetroit Symphony OrchestraChicago Symphony OrchestraThe Alec Wilder Project Orchestra + +9942253Simon Hoffmann (2)German cellist, born in Hamburg.Needs VoteIsrael Philharmonic Orchestra12 CelliVela Quartett + +9943789Claire KrausenerFrench cellist, born in Nancy.Needs VoteStuttgarter Philharmoniker + +9943822Alexis ScharffAlexis Scharff (born 1981) is a classical double bassist.Needs VoteKurpfälzisches Kammerorchester Mannheim + +9945958Dominik StegemannTrumpet playerNeeds VoteDeutsche Kammerphilharmonie BremenRamsø-Quartett + +9946516Douglas Morris (3)Classical cellist.Needs VoteBournemouth Symphony Orchestra + +9964003Gabriel-Ange BrussonCountertenor (Haut-Contre) vocalistNeeds VoteLe Concert SpirituelLes Chantres Du Centre De Musique Baroque De Versailles + +9975838Simon Gibson (4)OrganistNeeds Vote + +9977446Мирослав МаксимюкMiroslav Maksimyuk is a russian classical double bassist.Needs VoteMiroslav MaksimyukRussian National Orchestra + +9982648Stéphane Rougier (2)French classical violinist, born in 1972.Needs VoteStephane RougierOrchestre National Bordeaux Aquitaine + +9984883Caroline ChurchillClassical violinist.Needs VoteThe Academy Of Ancient Music + +9984889Shelagh ThomsonClassical bassoon player, formerly a violinist.Needs VoteThe Academy Of Ancient MusicLeicester Symphony Orchestra + +9990385Mathis KochGerman classical bass vocalist from Herford.Needs VoteRundfunkchor Berlin + +9990637Inger Kindlund-StarkAlto vocalistCorrectInger Kindlund StarkRadiokören + +10001161Jacob RaichmanClassical trombone player.Needs VoteBoston Symphony Orchestra + +10001164Georges MagerGeorges C. MagerFrench classical trumpet player, violinist and teacher. +Born 1885 Died 1950. +He was the principal trumpet with the Boston Symphony Orchestra from 1919 until his death in 1950. Mager was on the faculty of the New England Conservatory, and was the teacher of many great trumpet players including [a2361600], [a400261], [a871112], [a1860033], [a2057463], and Irving Sarin. Mager was trained in France by French trumpet player [a1496002] (who was a student of [a1021565]) at the Paris Conservatoire. +He was a renowned trumpeter in Paris before the First World War, playing at the Paris Opera, Concerts Lamoureux, and the Concerts of the Society of the Conservatory. He also had an alternate career as a singer in the duo with his wife Claire, a well-known soprano, and had hoped for an operatic career. After serving in the French army during the war he came to America as flugelhorn soloist with the Garde Republicaine Band and was engaged to play in the Boston Symphony, first as a violist, since there was no vacancy for trumpet, sharing a stand with Arthur Fiedler. He assumed the first trumpet position in 1920.Needs Votehttps://en.wikipedia.org/wiki/Georges_Magerhttps://dbpedia.org/page/Georges_MagerBoston Symphony Orchestra + +10001167John Coffey (6)Classical trombone player. John Coffey (bass trombonist of the Cleveland Orchestra 1937-1941, and bass trombonist of the Boston Symphony, 1941-1952), and student of Joannès Rochut, trombonist of the Boston Symphony.Needs Votehttps://thelasttrombone.com/2020/10/Boston Symphony Orchestra + +10008391Michael SalmMichael Salm is a German violinist and conductor.Needs VoteStaatskapelle BerlinOrchester der Bayreuther FestspieleKorean Symphony OrchestraPhilharmonia ZürichGstaad Festival Orchestra + +10019380Mattias VihmannEstonian French Horn player.Needs VoteEstonian National Symphony OrchestraPärnu LinnaorkesterEstonian Festival Orchestra + +10038796Bertrand Chatenet (2)French classical horn player, and Professor of Horn. Born in 1990 in Paris, France. +He studied at the [l1014340], Musikhochschule Stuttgart (2009), and [l1125469] (2013). Since 2010, he has been performing with major orchestras, mostly as a soloist. These include the [a610799], the [a3010101], the [a990584], the [a451535], the [a578737], the [a833686], and the [a=London Symphony Orchestra]. After he was an academic and guest of the [a=Staatskapelle Berlin] as PrincipalHhorn, he has been employed there since June 2015 as principal horn. As a soloist, he has performed with the [a462180], the brass ensemble of the Frankfurt Opera, the [a1320717], the [b]Zielena Gora Philharmonic[/b], and the [a261451]. Assistant Professor of Horn at the Universität der Künste Berlin, and Professor of Horn at the Haute école de musique Genève – Neuchâtel.Needs Votehttps://www.facebook.com/bertrand.chatenethttps://www.hesge.ch/hem/en/teachers/new-professors-2022-2023https://www.berlinerfestspiele.de/de/berliner-festspiele/programm/bfs-kuenstler/bfs_kuenstler_detail_135383.htmlhttps://www.jkp.berlin/uber-uns/solisten/London Symphony OrchestraMünchner PhilharmonikerStaatskapelle BerlinKonzerthausorchester Berlin + +10040992Julien Lo PintoClassical violinist.Needs VoteOrchestre Des Concerts Lamoureux + +10068829Callum HoganAustralian classical oboist.Needs VoteSydney Symphony Orchestra + +10087873Giuseppe Gentile (2)Italian clarinetist.Needs VoteOrchestra dell'Accademia Nazionale di Santa CeciliaRadion Sinfoniaorkesteri + +10096795Mirjam TöwsClassical viola player.Needs VoteIl Giardino ArmonicoOrchestra La Scintilla + +10108825Meillane WilmotteFrench recorder player.Needs VoteLe Concert D'AstréeAmarillis + +10108828Hugo LiquièreFrench trombonist and sackbutist, born in Saint-Affrique (Aveyron).Needs VoteLe Concert D'Astrée + +10112068Mark BraafhartDutch percussionistNeeds VoteConcertgebouworkest + +10115212Paul Rousseau (2)French Viol & Viola da Gamba instrumentalistNeeds VotePaul RousseauLa Simphonie Du MaraisOrchestre Baroque de Montauban + +10115512Gina SarabinskiSoprano vocalist.Needs VoteRundfunkchor Berlin + +10115524Martin SchubachBass-baritone vocalist.Needs VoteRundfunkchor Berlin + +10120636Hans Adler (3)Swedish classical double bass player.Needs VoteGöteborgs SymfonikerSvenska Serenadensemblen + +10128592Orit MesserCellistNeeds VoteVenice Baroque Orchestra + +10130584Jonathan MartindaleBritish violinist.Needs Votehttps://cbso.co.uk/profile/jonathan-martindaleCity Of Birmingham Symphony OrchestraEblana String Trio + +10135930Jean-François LungFrenc Tenor vocalistNeeds VoteLe Concert Spirituel + +10152196Solistes de L'Orchestre National de L'Opéra de ParisMembers of the [a852709]. Use for "members of", "solists from" type-credits.Needs VoteInstrumental Ensemble Of Members Of L'Orchestre Du Théâtre National De L'OperaMembers Of L'Orchestre Du Théâtre National De L'OpéraSolistes De L'Orchestre Du Théâtre National De L'OpéraSolistes De L´Orchestre Du Théâtre National De L'OpéraOrchestre National De L'Opéra De Paris + +10153528Thomas HeissbauerThomas HeißbauerThomas Heißbauer (born 1968) is an Austrian horn player and artistic director of the [a2661119] since 2018.Needs VoteThomas HeißbauerCamerata Academica SalzburgDas Mozarteum Orchester Salzburg + +10157608Yevgeny FaniukUkrainian classical flutist active in the United States.Needs VoteChicago Symphony OrchestraPittsburgh Symphony OrchestraManhattan School Of Music Philharmonia + +10160800Christophe DewarumezClassical percussionist.Needs VoteOrchestre National Du Capitole De Toulouse + +10174633Сергей ИгруновSergei Igrunov is a russian classical flautist.Needs VoteRussian National Orchestra + +10178776Elma DekkerSoprano VocalistNeeds VoteNederlands Kamerkoor + +10181416Géza RhombergGéza Rhomberg (born 1966) is a German violinist and orchestra manager of the [a1924968] since 2006. +Needs VoteCamerata Academica SalzburgMozarteum Quartett + +10183927Nikolaj HenriquesClassical bassoonist, born in Copenhagen, Denmark.Needs VoteCity Of Birmingham Symphony OrchestraEuropean Union Youth OrchestraDR SymfoniOrkestret + +10186231Игорь Макаров (2)Igor MakarovRussian french horn player.Needs VoteRussian National Orchestra + +10186372Константин Григорьев (3)Konstantin GrigoryevKonstantin Grigoryev is a russian trumpeter.Needs VoteRussian National Orchestra + +10191781Ralph ClarkeClassical clarinettist. +He was Principal Clarinet with the [a=BBC Symphony Orchestra].Needs VoteBBC Symphony Orchestra + +10192192Esther ValentinGerman classical mezzo-soprano vocalistNeeds Votehttps://www.esthervalentin.com/Esther Valentin-FieguthChor Des Bayerischen Rundfunks + +10202020Hugues ViallonFrench horn player.Needs VoteOrchestre Philharmonique De Radio FranceFeeling Brass Quintet + +10205755Mitzi GardnerClassical violinist.Needs VoteLondon Symphony Orchestra + +10216675Albin UusijärviSwedish classical violist, born in 1995 in Nyköping Needs VoteSveriges Radios Symfoniorkester + +10225585Eun Joo Lee (2)Classical violinist.Needs VoteOrchestre Philharmonique De Radio FranceQuatuor Elysée + +10228309Julia BeaumierFrench mezzo-soprano & soprano vocalist.Needs Votehttps://www.juliabeaumier.com/accueilLe Concert SpirituelEnsemble Vocal AedesEnsemble Les SurprisesLa Chapelle Harmonique + +10230859Rodrigo Moro MartínSpanish classical double bassist.Needs VoteLondon Symphony OrchestraMahler Chamber Orchestra + +10235014Sandra KlimaitėLithuanian classical violist.Needs VoteEstonian National Symphony OrchestraEstonian Festival OrchestraEnsemble For New Music Tallinn + +10263496Fuzzy FarrarTrumpet playerNeeds Vote"Fuzzy" FarrarF. FarrarFarrarFred "Fuzzy" FarrarFred FarrarFred “Fuzzy” FarrarFuzzy FerrarFred FarrarJean Goldkette And His OrchestraThe Dorsey Brothers Orchestra + +10272163Jan BöhmeJan Böhme is a German trombonist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerSinfonieorchester MünsterDuisburger PhilharmonikerQuadriga Posaunenquartett + +10272169Carsten LuzCarsten Luz (born 1975) is a German trombonist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerDortmunder PhilharmonikerQuadriga Posaunenquartett + +10284520Konstantin SellheimGerman classical violist, born in 1978.Needs VoteMünchner PhilharmonikerEstonian Festival OrchestraTertis Viola Ensemble + +10301293Wilf WylieGeorge Wilfred WylieCanadian pianist, composer and bandleader from Vancouver, British Columbia (1913-1985). Born and raised in Vancouver, he lived in Los Angeles for a year or so in the late 1940s. +Needs VoteWylieTommy Dorsey And His OrchestraWilf. Wylie and his Orchestra + +10329922Matthias LienerNeeds VoteDie Wiener SängerknabenChorus Viennensis + +10330531Franziska LeubeFranzisak Leube is a German cellist.Needs VoteGürzenich-Orchester Kölner PhilharmonikerGürzenich Cello Trio + +10334788Sam BergmanAmerican classical violist.Needs VoteMinnesota Orchestra + +10334797Natsuki KumagaiAmerican classical violinist.Needs VoteMinnesota Orchestra + +10343398Carl Friedrich EhrichRecording and sound engineer, working for Deutsche Grammophon in the 1920s.CorrectGRGSHerr Ehrichbr + +10349137Rolph SchroederRolph Schroeder (28 September 1900 - 16 October 1980) was a German violinist.Needs VoteDresdner PhilharmonieOrchester Des Staatstheaters Kassel + +10357726Kaitlyn CameronClassical bassoonist.Needs VoteGöteborgs Symfoniker + +10357729Henrik NordqvistBert Henrik NordqvistSwedish classical clarinet player, living in Björboholm outside of Gothenburg, born March 14, 1972. + +He is married to [a2808177].Needs VoteGöteborgs Symfoniker + +10357732Selena Markson-AdlerClassical clarinet player.Needs VoteGöteborgs SymfonikerSvenska Serenadensemblen + +10357735Soran LeeKorean violinist.Needs Votehttp://www.artsglobal.org/en/people/soran-lee/이소란Göteborgs Symfoniker + +10357738Ida RostrupIda Beate RostrupSwedish classical double bassist, born June 21, 1967.Needs VoteGöteborgs SymfonikerSommarkvintetten + +10357741Jennifer Downing OlssonJennifer Rebecca Downing OlssonSwedish classical double bassist, born on October 17, 1977.Needs VoteSveriges Radios SymfoniorkesterGöteborgs Symfoniker + +10357744Mats Larsson (14)Swedish classical double bassist.Needs VoteMats LarssonGöteborgs SymfonikerGöteborgsOperans Orkester + +10357747Alexander HambletonSwedish classical horn player.Needs VoteAlex HambletonGöteborgs SymfonikerGöteborgsOperans OrkesterCosmopolitan Brass + +10357750Claudio FlueckigerClassical horn player.Needs VoteGöteborgs Symfoniker + +10357753Fernando C De AndradeClassical horn player.Needs VoteGöteborgs Symfoniker + +10357756Gregoire NenertClassical horn player.Needs VoteGöteborgs Symfoniker + +10357759Ida BrissachClassical horn player.Needs VoteGöteborgs Symfoniker + +10357762Ingrid Bakke KarlstedtClassical horn player.Needs VoteGöteborgs SymfonikerGöteborgsOperans Orkester + +10357765Ingrid Kornfält WallinSwedish classical hornist.Needs VoteGöteborgs Symfoniker + +10357768Jonatan OlofzonClassical horn player.Needs VoteGöteborgs Symfoniker + +10357771José Raul Tenza RamirezClassical horn player.Needs VoteGöteborgs Symfoniker + +10357774Karin Lindberg (2)Classical horn player.Needs VoteGöteborgs SymfonikerHelsingborgs SymfoniorkesterSvenska Serenadensemblen + +10357777Leonardo FeroletoClassical horn player.Needs VoteGöteborgs Symfoniker + +10357780Erik Groenestein-HendriksClassical harpist +Needs VoteErik GroenesteinGöteborgs Symfoniker + +10357783Carolina GrinneSwedish classical oboist.Needs VoteGöteborgs Symfoniker + +10357789David GlenneskogClassical trumpeter.Needs VoteGöteborgs Symfoniker + +10357792Dusica CvijanovicClassical viola player.Needs VoteDûsica CvijanovicGöteborgs Symfoniker + +10357795Kejo MillholmClassical viola player.Needs VoteGöteborgs Symfoniker + +10357798Susanne BrunströmSwedish classical viola player. Her sister [a=Matilda Brunström] is also a violist.Needs VoteSusanne Brunstrom StighallGöteborgs Symfoniker + +10357801Kristina RybergSwedish classical violinist.Needs VoteGöteborgs Symfoniker + +10357810Annie SvedlundClassical violinist.Needs VoteAnnie SvedundGöteborgs Symfoniker + +10357816Oscar KlevängClassical cellist.Needs VoteGöteborgs Symfoniker + +10357819Pia EnblomSwedish classical cellist.Needs VoteGöteborgs Symfoniker + +10364962Lorenzo Antonio IoscoItalian classical bass clarinet player, conductor, And Professor of Bass Clarinet. Born in 1985 in Terranuova Bracciolini, Tuscany, Italy. +After graduation, he became a member of the [a2251410]. Former Principal Bass Clarinet with the [a854120] and the [a=London Symphony Orchestra] (September 2009-March 2017). Former Professor of Bass Clarinet at the [l527847] (September 2012-August 2014) and [l305416] (September 2014-November 2015). Based in Hong Kong, he has been a member of the [a=Hong Kong Philharmonic Orchestra] since 2015. Founder/Conductor of the [b]Ensemble Ubertini[/b].Needs Votehttps://www.lorenzoiosco.com/https://www.facebook.com/lorenzo.iosco/https://www.youtube.com/channel/UCmPiO-W-1inK-Ra-xeyAMLw?view_as=subscriberhttps://twitter.com/LorenzoIoscohttps://www.instagram.com/ubertinicastle/https://www.linkedin.com/in/lorenzo-antonio-iosco-82429070/?originalSubdomain=hkhttps://www.feenotes.com/database/artists/iosco-lorenzo-1985-present/Lorenzo IoscoLondon Symphony OrchestraOrquesta Sinfónica De MadridHong Kong Philharmonic OrchestraOrchestra Sinfonica Di Roma + +10370122Jerome Rosen (2)Bachelor of Music (Cleveland Institute of Music,, Artist diploma (Curtis Institute) +A first Violinist with the Cleveland Orchestra,1959-1967. Studied violin with Joseph Gingold and composition with Herbert Elwell at the Cleveland Music School Settlement. Continued his study at the Curtis Institute of Music for four years he studied with Ivan Galamian. For three years he was a member of the famed Pablo Casals Festival Orchestra. Appointed as a Kulas Foundation Apprentice Conductor of the Cleveland Orchestra in 1959, and served Dr. Szell as a conductor, violinist, and keyboard instrumentalist. +Violinist and keyboardist with the [a395913] from September 1972 to December 1998. +Music Director of Independence Sinfonia of Philadelphia.Needs VoteBoston Pops OrchestraBoston Symphony OrchestraDetroit Symphony OrchestraThe Cleveland OrchestraBoston Symphony Chamber PlayersThe Cleveland Piano Trio + +10412836Anthony Judd (2)Classical bassoonist, and teacher. +Former member of the [a=London Symphony Orchestra] (1953-1954). He taught at the [l527847].Needs VoteLondon Symphony OrchestraThe Simon Park OrchestraGeraint Jones OrchestraVirtuoso Chamber EnsembleThe Francis Chagrin Ensemble + +10421752Norman Freeman (3)Classical violinist. +Former member of the [a=London Symphony Orchestra] (1976-1978).Needs VoteN. FreemanLondon Symphony OrchestraNew London Quintet + +10461703Clément PeignéFrench classical cellist.Needs VoteConcertgebouworkestAlma Quartet + +10477198Nina DeCesareClassical double bass playerNeeds Votehttp://www.ninadecesare.com/https://www.bsomusic.org/musicians/musician/nina-decesare/https://www.orsymphony.org/discover/orchestra/strings/nina-decesare/http://www.goldengatebasscampsanfrancisco.com/members/nina-decesare/https://www.svmusicfestival.org/people/nina-decesare/https://www.facebook.com/nina.decesarehttps://www.instagram.com/nina_decesare/https://www.youtube.com/channel/UCS-18Idk_dit0drfsgodU7ABaltimore Symphony OrchestraOregon Symphony Orchestra + +10477204Martha LongMartha Conwell LongClassical flutistNeeds Votehttp://www.marthaclong.com/https://www.orsymphony.org/discover/orchestra/woodwinds/martha-long/Baltimore Symphony OrchestraSan Antonio Symphony OrchestraOregon Symphony OrchestraThe 45th Parallel + +10483507Jean DelobelClassical bass vocalistNeeds VoteChoeur de Chambre de Namur + +10483510Maria Nunez de FatimaPortuguese classical mezzo-soprano vocalistNeeds VoteChoeur de Chambre de Namur + +10483513Mariana MoldaoClassical soprano vocalistNeeds VoteMariana MoldãoChoeur de Chambre de Namur + +10493155Dana Kelley (2)American classical violist.Correcthttps://oslmusic.org/bios/dana-kelley/Orpheus Chamber OrchestraThe Saint Paul Chamber Orchestra + +10509247Georg StrakaGeorg Straka (14 February 1969 - 3 November 2010) was an Austrian double bassist. He was the son of [a4942665]. +Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Mozarteum Orchester Salzburg + +10510969Damen Des Wiener StaatsopernchorThe Women's Chorus of The Vienna State Opera.CorrectDamen Des Wiener StaatsopernchorsDamenchor Der Konzertvereinigung Wiener StaatsoperFemale Voices Of The Wiener StaatsopernchorWomen's Chorus Of The Vienna State OperaWomen's Chorus of the Vienna State OperaWiener Staatsopernchor + +10518988Ivo GassIvo Gass (born 1981) is a Swiss horn player.Needs VoteMünchner PhilharmonikerLucerne Festival OrchestraOrchester Des Schleswig-Holstein Musik FestivalsLuzerner SinfonieorchesterTonhalle-Orchester Zürich + +10523158Christina GillAlto (mezzo-soprano) vocalist.Needs Votehttps://chambermusiccircle.org/christinagillLondon Voices + +10523161George Cook (9)Classical bass vocalist. + +Do not confuse with [a2652400].Needs VoteLondon Voices + +10524898Ania BaraClassical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +10530367Sophie PradelFrench classical violinist.Needs VoteOrchestre Philharmonique De Radio France + +10530439Aurélie Adolphe-EnglemannClassical violist.Needs VoteOrchestra Della Radio Televisione Della Svizzera Italiana + +10532317Lilia d'AlboreNeeds Major Changes + +10535629George Yates (3)George A. W. Yates(British?) classical double bass player. +Former mermber of the [a=London Symphony Orchestra] (1934-1956), serving as Principal Double Bass from 1948 to 1956.Needs VoteLondon Symphony OrchestraVirtuoso Chamber EnsembleRobert Farnon And His OrchestraLeslie Jones And His Orchestra Of LondonLondon Symphony Orchestra Chamber Ensemble + +10538065Hilde AhlendorfNeeds Major Changes + +10541992Helen Chang HaertzenCredited as violinist & producerNeeds VoteMinnesota Orchestra + +10559506Céline MartelFrench violinist.Needs VoteLe Concert D'AstréeOpera FuocoEnsemble Almazis + +10573288Gianluca GrossoClassical tubist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +10576369Clémence SchamingFrench classical violinistNeeds VoteLe Concert D'AstréeLa Chapelle RhénaneLes Traversées Baroques + +10577680Mathilde CalderiniFrench classical flautist.Needs Votehttps://www.mathildecalderini.com/fr/Orchestre Philharmonique De Radio FranceEnsemble Ouranos + +10590349Claude RoubichouClassical flautist.Needs VoteOrchestre National Du Capitole De Toulouse + +10595005Filip ErakovićAccordionist.Needs Votehttps://filiperakovic.com/Filip ErakovicEnsemble ModernEnsemble Modern Orchestra + +10595596Veronika WilhelmClassical cellist.Needs VoteGewandhausorchester Leipzig + +10607179George Reynolds (6)British classical trumpeter, conductor, and Professor of Trumpet. Died 11 November 2016. +He was a member of the [a=National Youth Orchestra Of Great Britain] and studied trumpet and conducting at the [l=Royal Scottish Academy Of Music And Drama]. Before joining the [a=London Symphony Orchestra] (1963-1978), he was a member of the [a=City Of Birmingham Symphony Orchestra] and was also a member of the [a=London Brass Virtuosi]. He was Professor of Trumpet at [url=https://www.discogs.com/label/280159-Cambridge-University]Homerton College[/url]. He founded the Anglia Brass Academy in 1993. He was the Musical Director and Conductor of the [b]Colchester Youth Chamber Orchestra[/b] from 1984. Latterly he devoted most of his time to teaching, freelancing, solo work and conducting.Needs Votehttps://lso.co.uk/more/news/597-obituary-george-reynolds.htmlLondon Symphony OrchestraCity Of Birmingham Symphony OrchestraNational Youth Orchestra Of Great BritainLondon Wind OrchestraLondon Brass Virtuosi + +10609948Nicolas GourbeixFrench classical violinist.Needs VoteOrchestre De L'Opéra De Lyon + +10611601Jonathan WegloopJonathan Wegloop (born 1986) is a Dutch horn player.Needs VoteWDR Sinfonieorchester KölnMahler Chamber OrchestraPhilharmonisches Staatsorchester HamburgEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +10639036Wulf SchaefferWulf Schaeffer is a classical cellist. He was a member of the [a604396] from 1973 to 2012.Needs VoteWulf SchefferSymphonie-Orchester Des Bayerischen RundfunksResidenz Kammerorchester MünchenPhilharmonische Cellisten + +10639042Piotr StefaniakPiotr Stefaniak is a classical double bassist. He was a member of the [a604396] from 1993 to 2024.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +10639687Félix Pando (3)Needs Major Changes + +10640668Alexander Simpson (2)Classical countertenor vocalistNeeds VoteSt. John's College Choir + +10640671Oliver El-HolibyClassical countertenor vocalistNeeds VoteSt. John's College Choir + +10640674Guy Edmund-JonesClassical tenor vocalistNeeds VoteSt. John's College Choir + +10640680Tom BlackieClassical tenor vocalistNeeds VoteSt. John's College Choir + +10640683Alec D'OylyBritish classical treble vocalistNeeds Votehttps://m.facebook.com/theincognitos/posts/1463090747035568St. John's College Choir + +10640686Robert Murray JohnBritish classical former treble vocalist, now tenor.Needs VoteSt. John's College Choir + +10646893Christof HartkopfGerman classical baritone vocalistNeeds Votehttps://www.christof-hartkopf.de/vitaChor Des Bayerischen Rundfunks + +10664221Justine MarsdenAustralian violistNeeds Votehttps://www.sydneysymphony.com/musicians/justine-marsdenSydney Symphony OrchestraLinden String Quartet + +10666378Ernst SonnemannNeeds Major Changes + +10666381Josua WegelinNeeds Major Changes + +10666384Matthäus AvenariusNeeds Major Changes + +10668247Josef KoenigsbergerNeeds Major Changes + +10686589Adriana Iacovache-PanaClassical violinist.Needs VoteRoyal Philharmonic Orchestra + +10687681Anja KreynackeGerman violist (born 1967 in Goslar, Low Saxony)Needs VoteSymphonie-Orchester Des Bayerischen RundfunksEuropean Union Youth Orchestra + +10688896Odette CouchClassical violinist.Needs VoteMünchner Philharmoniker + +10696480Tom HootenTrumpet playerNeeds Votehttps://www.tomhooten.comLos Angeles Philharmonic Orchestra + +10699663Thomas Reif (2)Thomas Reif (born 1991) is a German violinist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksBundesjugendorchesterCuarteto Soltango + +10702987Rosa María Campos FernándezClarinettist, born in Vigo, Spain.Needs VoteRosa Campos FernandezRosa Campos FernándezRosa Campos-FernandezRosa Mª Campos FernándezHallé Orchestra + +10709062Raffaele BracaleItalian conductorNeeds VoteM.° Raffaele BracaleR. BracaleOrchestra Del Teatro Alla Scala + +10710784Charles Horvath (2)Jazz drummer of the early XXth Century.Needs VoteCharles HorwathJean Goldkette And His Orchestra + +10713184Filip ZaykovViolin player. Needs VoteDeutsche Kammerphilharmonie BremenTrio Incendio + +10718254Volker KempfHarpistNeeds Votehttps://volkerkempf.com/Wiener SymphonikerThe Vienna Chamber Ensemble + +10720720Stan Hasselgard And His SmorgasbirdsNeeds Major Changes + +10720723The Bop Jam All StarsNeeds Major Changes + +10720726The West Coast Jam SessionsNeeds Major Changes + +10722319Slawomir RozlachClassical double bassist.Needs VoteGewandhausorchester Leipzig + +10722580Kaspar EiselClassical percussionist.Needs VoteEstonian National Symphony Orchestra + +10722886Dietmar PesterDietmar Pester (born 1959) is a German classical trombonist.Needs VoteDresdner PhilharmonieEnsemble »Alte Musik Dresden« + +10753816Kirill KobantschenkoRussian violinist, now based in Vienna, Austria.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +10757119Vincent De SoomerClassical bass vocalistNeeds VoteChoeur de Chambre de Namur + +10757125Logan Lopez GonzalezBelgian classical countertenor vocalistNeeds Votehttps://www.nationaloperastudio.org.uk/pages/category/logan-lopez-gonzalezChoeur de Chambre de Namur + +10757140Cindy Favre-VictoireFrench classical soprano vocalist from Thonon-les-BainsNeeds Votehttps://www.bach-cantatas.com/Bio/Favre-Victoire-Cindy.htmChoeur de Chambre de Namur + +10771306Paolo DuttoItalian classical bassoonist.Needs VoteRoyal Scottish National OrchestraSpira MirabilisQuintetto Sinestesia + +10791727Liana GermanAlto vocalist.Needs VoteChicago Symphony Chorus + +10794577Milan RadičMilan Radič (born 1965) is a classical violist.Needs VoteDas Mozarteum Orchester SalzburgMozarteum Quartett + +10796101Claire DiVizioTransgender singer (Soprano turning to Tenor), arts educator, opera producer, director and creator.Needs Votehttps://www.linkedin.com/in/claire-divizio-ab5aab112/Chicago Symphony Chorus + +10799539Piotr SapilakPolish classical cellist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +10799548Krzysztof SzczepanskiKrzysztof SzczepańskiPolish classical violist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +10799557Marek PowidelMarek Powideł Polish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +10799566Krzystof TrzcionkowskiKrzysztof Trzcionkowski Polish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +10799569Marian KowalskiPolish violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +10800103Carl WendlingJakob Carl WendlingCarl Wendling (10 August 1875 - 27 March 1962) was a German violinist and Professor at the [l316267]. He's the father of [a4360727].Needs VoteKarl WendlingProfessor Carl WendlingStaatsorchester StuttgartBoston Symphony OrchestraOrchester der Bayreuther FestspieleOrchestra Of The Royal Opera House, Covent GardenWendling-Streich-QuartettMeininger Hofkapelle + +10801744Matthias AmbrosiusGerman saxophonist and clarinetist, born in 1975 in Bernkastel-Kues.Needs VoteMünchner Philharmoniker + +10801747Teja AndresenTeja Andresen is a German classical double bassist. He's a member of the [a604396] since 1995.Needs Votehttps://www.brso.de/besetzung/teja-andresen/Symphonie-Orchester Des Bayerischen RundfunksOrchester Des Schleswig-Holstein Musik FestivalsBundesjugendorchester + +10805917Line MostViolinist; with the Danish National Symphony Orchestra since 1991.Needs Votehttps://drkoncerthuset.dk/dr-symfoni-orkestret/om-dr-symfoniorkestret/dr-symfoniorkestret-musicians-1/#block-stringsDR SymfoniOrkestret + +10812244Therese Auf Der MaurSwiss violinist and violin teacher.Needs VoteGustav Mahler JugendorchesterLa PartitaOrchester-Verein Horgen + +10818067Alexandre BaldoClassical bass / baritone vocalist and string instrumentalistNeeds Votehttps://www.alexandrebaldo-art.com/biographyLe Concert SpirituelEnsemble Diderot + +10830622Cristina Gómez GodoyCristina Gómez Godoy (born 1990) is a Spanish oboist. +Needs Votehttps://www.cristinagomezgodoy.com/Staatskapelle Berlin + +10830709Jasper MertensClassical percussionistNeeds VoteOrchestre National Du Capitole De Toulouse + +10834180Jean-Yves GicquelClassical oboist & hornistNeeds VoteOrchestre National Bordeaux Aquitaine + +10842472Isaac TrapkusClassical bassist who has played in the New York Philharmonic since 2016. He has previously played in the Detroit Symphony Orchestra and the New Haven Symphony.Needs Votehttps://nyphil.org/about-us/artists/isaac-trapkusNew York PhilharmonicDetroit Symphony OrchestraThe New Haven Symphony Orchestra + +10842475Roger NyeAmerican bassoonistNeeds VoteNew York Philharmonic + +10842484Alison FierstAmerican flutist.Needs VoteNew York Philharmonic + +10842487Ryan Roberts (12)OboistNeeds VoteNew York Philharmonic + +10842493Kyle ZernaAmerican percussionist who has played in the New York Philharmonic since 2010.Needs Votehttps://nyphil.org/about-us/artists/kyle-zernaNew York Philharmonic + +10842496Ethan BensdorfAmerican trumpeterNeeds VoteNew York Philharmonic + +10842499Cong WuViolistNeeds VoteNew York Philharmonic + +10842502Andi ZhangViolinist (born in Dandong, China) who has played in the New York Philharmonic since 2019.Needs Votehttps://nyphil.org/about-us/artists/andi-zhangNew York Philharmonic + +10842505Hannah ChoiViolinistNeeds VoteNew York Philharmonic + +10842508Jin Suk YuViolinistNeeds VoteNew York Philharmonic + +10842511Joo Young OhClassical violinist born in Jinju, South Korea. He has played in the New York Philharmonic since 2010.Needs Votehttps://nyphil.org/about-us/artists/joo-young_ohNew York PhilharmonicQatar Philharmonic Orchestra + +10842514Kyung Ji MinViolinistNeeds VoteNew York Philharmonic + +10842517Marie SchwalbachMarié SchwalbachClassical violinist born in Japan who has been a member of the New York Philharmonic since 2016. She was concertmaster in the Malaysian Philharmonic in 2015.Needs Votehttps://nyphil.org/about-us/artists/marie-schwalbachNew York PhilharmonicMalaysian Philharmonic Orchestra + +10842520Su Hyun ParkViolinistNeeds VoteSuhyun ParkNew York Philharmonic + +10844197Walter Schwarz (6)German member of a symphony orchestraNeeds VoteSymphonie-Orchester Graunke + +10847173Lura JohnsonClassical pianist active in the Baltimore/Washington areaNeeds Votehttps://www.lurajohnson.com/Baltimore Symphony Orchestra + +10847233Jacob Brown (5)Jacob William BrownBritish classical percussionist and drummer. Born in Leeds, West Yorkshire, England, UK. +He studied at the Junior [l459222] and the [l527847]. During his studies at the RAM, he was made Principal Percussion of the [a=National Youth Orchestra Of Great Britain]. In 2016, he was the touring drummer for art pop duo [a=Cat's Eyes] playing on the UK tour and festival dates around Europe. He has played with the [a=London Symphony Orchestra].Needs Votehttps://www.helpmusicians.org.uk/creative-programme/supported-artists/jacob-william-brownLondon Symphony OrchestraNational Youth Orchestra Of Great BritainLSO Percussion Ensemble + +10854169Alex Garcia (12)BassoonistNeeds VoteLos Angeles Philharmonic Orchestra + +10854172Michael YoshimiClarinetistNeeds VoteLos Angeles Philharmonic Orchestra + +10854175Mark Almond (3)Mark Almond is an British horn player, now based in the United States.Needs VoteSan Francisco SymphonyPhilharmonia OrchestraChicago Symphony Orchestra + +10854181Wesley SumpterPercussionistNeeds VoteLos Angeles Philharmonic Orchestra + +10854184Paul RadkeTrombonistNeeds VoteLos Angeles Philharmonic Orchestra + +10854187Jeff Strong (5)Trumpet playerNeeds VoteLos Angeles Philharmonic Orchestra + +10854193Jordan KoranskyViolinistNeeds VoteLos Angeles Philharmonic Orchestra + +10854196Justin WooViolinistNeeds VoteLos Angeles Philharmonic Orchestra + +10854199Rebecca RealeAmerican violinistNeeds VoteLos Angeles Philharmonic Orchestra + +10854202Shelley BovyerViolinistNeeds VoteLos Angeles Philharmonic Orchestra + +10854205Tianyun JiaViolinistNeeds VoteLos Angeles Philharmonic Orchestra + +10868974Alison RyanClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +10873006Dayna HeplerAmerican violinist.Needs VoteNational Symphony Orchestra + +10883167Jerry White (17)TrombonistNeeds VoteThe Mills Blue Rhythm Band + +10896898Joseph Stephenson (3)Joseph W. Stephenson IIIBass / Baritone choral vocalist. +Graduate of Westminster Choir College. +Born 1932 Fuquay-Varina, NC +Died 2018 Charlotte, NCNeeds VoteWestminster Choir + +10898101Peter LandgrenHorn playerNeeds VoteBaltimore Symphony Orchestra + +10906075Christopher LipscombBritish classical bass vocalistNeeds VoteThe King's College Choir Of Cambridge + +10906078Jesse BillettBritish classical bass vocalistNeeds VoteThe King's College Choir Of Cambridge + +10906081Peter Lindsay (2)British classical bass vocalistNeeds VoteThe King's College Choir Of Cambridge + +10906087Timothy IstedBritish classical tenor vocalistNeeds VoteThe King's College Choir Of Cambridge + +10906447Joseph Adams (4)British classical alto vocalistNeeds VoteThe King's College Choir Of Cambridge + +10906645Emily SkalaClassical flautistNeeds VoteBaltimore Symphony Orchestra + +10910365Fadrique JogobaClassical bass vocalistNeeds VoteChoeur de Chambre de Namur + +10916056Erica GailingViola playerNeeds VoteBaltimore Symphony Orchestra + +10916863Karol KowalPolish classical double bassist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +10926805Bénédicte FadeuxClassical mezzo-soprano vocalistNeeds VoteChoeur de Chambre de Namur + +10926808Sarah VerhoevenBelgian classical soprano vocalistNeeds Votehttp://www.sarahverhoeven.com/Choeur de Chambre de Namur + +10936727Heike JanickeHeike Janicke is a German violinist.Needs VoteLondon Symphony OrchestraBerliner PhilharmonikerDresdner Philharmonie + +10949816Cécile GrangerFrench classical soprano vocalistNeeds VoteLe Concert D'AstréeIsabella D'Este + +10966829Stanley Brown (5)Australian classical trombonist, and trombone teacher. Born in January 1900. +He played with the [a=Australian Commonwealth Band] in the 1920s. He was a member of the [a=ABC Military Band], and Principal Trombone with the [a=Sydney Symphony Orchestra] (1948-02/1961). He relocated to England and became a member of the [a=Philharmonia Orchestra]. +Father of [a=Ray Brown (8)].Needs Votehttps://ses.library.usyd.edu.au/bitstream/handle/2123/25449/991010629779705106_d.pdf?sequence=3&isAllowed=yPhilharmonia OrchestraSydney Symphony OrchestraABC Military BandAustralian Commonwealth Band + +10973144Lionel PointetLionel Pointet is a Swiss classical hornist. He's a member of the [a5794038] since 2014.Needs VoteGustav Mahler JugendorchesterGli Angeli GenèveUBS Verbier Festival OrchestraPhilharmonia Zürich + +10980833Chor Des Landestheaters LinzNeeds Major ChangesChoir Of The Landestheater LinzChorus Of The Landestheater Linz, Upper Austrian State TheaterChorus Of The Linz Landes Theater + +11026976Gabriella JonesViolinist.Needs VoteThe Academy Of Ancient MusicLa SerenissimaThe Academy Of Ancient Music + +11034620Anne-Katrin SchenckGerman classical soprano vocalist from BerlinNeeds Votehttp://www.archilegio.com/en/ospiti_a_schenck.htmlLa Petite Bande + +11034623Masanobu TakuraJapanese classical violistNeeds VoteLa Petite Bande + +11036450Mari Birgitte Halvorsen Mari Birgitte Bølgen Halvorsen Classical violinist.Needs VoteMari Birgitte Bølgen HalvorsenBergen Filharmoniske Orkester + +11036453Yumi Sagiuchi ShultzClassical violinist.Needs VoteBergen Filharmoniske Orkester + +11052956Hans Peter KammererItalian-Austrian classical baritone vocalist (a "Kammersänger"), born 2 April 1965 in Brunico, Italy.Needs Votehttps://de.wikipedia.org/wiki/Hans_Peter_KammererWiener Staatsopernchor + +11057696Erik SchmalzErik SchmalzAmerican trombonist specializing in period instrumentsNeeds Votehttps://handelandhaydn.org/about/musicians/orchestra-and-chorus/erik-schmalz/https://www.piffaro.org/the-players/CiaramellaNew York Ensemble For Early MusicTafelmusik Baroque OrchestraThe Handel & Haydn Society Of BostonYale Schola CantorumPiffaro, The Renaissance BandEarly Music New YorkTrinity Baroque OrchestraGreen Mountain ProjectSpiritus Collective + +11057699Kris KwapisAmerican classical trumpeterNeeds Votehttps://kriskwapis.com/Kris InglesPiffaro, The Renaissance BandEarly Music New YorkTrinity Baroque Orchestra + +11058443Membres De L'Ensemble InterContemporainNeeds VoteMembers Of The Ensemble InterContemporainEnsemble Intercontemporain + +11058551Caroline DubéCanadian violinistNeeds VoteLes Violons du Roy + +11065946Moritz Ferdinand WeigertGerman classical cellist.Needs VoteMoritz WeigertMahler Chamber OrchestraAkademie-Quartett München + +11065949Vicente AlberolaSpanish classical clarinettist and conductor.Needs VoteMahler Chamber OrchestraLes Dissonances + +11065955Paula ErnesaksPaula Ernesaks is an Estonian horn player. She's a member of the [a260744] since March 2022.Needs VoteBerliner PhilharmonikerEuropean Union Youth OrchestraUBS Verbier Festival OrchestraEstonian Festival OrchestraOrkester NordenUBS Verbier Festival Youth Orchestra + +11065958Rémi GrouillerFrench classical oboist.Needs VoteOrchestre De Paris + +11065961Matthew SadlerBritish classical trumpeter.Needs VoteMahler Chamber OrchestraLucerne Festival OrchestraOrchester Der J.S. Bach Stiftung + +11065967Nanni MalmClassical violinist, born in Salzburg, Austria.Needs VoteMahler Chamber OrchestraCamerata Academica SalzburgMozart Quartett Salzburg + +11065973Alexandra PreucilClassical violinist, born in Atlanta, Georgia, USA.Needs VoteThe Cleveland OrchestraMahler Chamber Orchestra + +11091155Dagmar Spengler-SüßmuthDagmar Spengler-Süßmuth née SpenglerDagmar Spengler-Süßmuth is a German cellist.Needs VoteDagmar Spengler-SüssmuthStaatskapelle DresdenStaatskapelle WeimarThüringer Bach Collegium + +11094233Connie BlessingNeeds VoteFrankie Trumbauer And His Orchestra + +11094236Joe KieferNeeds VoteFrankie Trumbauer And His Orchestra + +11094239Joe SchlesNeeds VoteJoe SchesFrankie Trumbauer And His Orchestra + +11094242Dave Becker (7)Needs VoteFrankie Trumbauer And His Orchestra + +11094248Bernie BahrNeeds VoteFrankie Trumbauer And His Orchestra + +11094251Del MentonNeeds VoteFrankie Trumbauer And His Orchestra + +11094254Dick DunneNeeds VoteFrankie Trumbauer And His Orchestra + +11094257Howard LamontNeeds VoteFrankie Trumbauer And His Orchestra + +11094959Colette OverdijkClassical violinist.Needs VoteCity Of Birmingham Symphony OrchestraStavanger Symfoniorkester + +11094962Sayaka TakeuchiClassical violinist.Needs VoteStavanger SymfoniorkesterTonhalle-Orchester Zürich + +11106176Stephen CusterClassical cellist associated with Los Angeles Philharmonic. +Born October 18th, 1943 +Died March 4th, 2025 in Williamsburg, VA.Needs Votehttps://en.wikipedia.org/wiki/Stephen_CusterLos Angeles Philharmonic Orchestra + +11106179Britton RileyClassical cellist.Needs VoteNational Symphony Orchestra + +11125823Aleksander MazanekPolish classical double bass playerNeeds VotePolish National Radio Symphony Orchestra + +11125835Grzegorz WitekPolish ViolinistNeeds VotePolish National Radio Symphony OrchestraTono Quartet + +11157461Augustin LaudetFrench classical tenor vocalistNeeds Votehttps://www.augustinlaudet.com/https://www.bach-cantatas.com/Bio/Laudet-Augustin.htmChoeur de Chambre de NamurGli Angeli GenèveVocal De Poche + +11180495Eline WelleDutch Mezzo-soprano & Alto vocalist.Needs Votehttps://www.elinewelle.com/Cappella AmsterdamNederlands KamerkoorDutch Symphonic Wind Orchestra + +11186465Roland BaarRoland Baar is an Austrian classical hornist.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +11191061Paul LestreUK born classical and jazz violinist, based in NZ from the 1950s.Needs VoteRoyal Philharmonic OrchestraThe John Dankworth OrchestraPaul Lestre Group + +11191487Jim Buck SrJames BuckBritish classical hornist, also known as [b]Jim Buck Snr.[/b] +Former member of the [a=London Symphony Orchestra] (1948-1949). +Father of [a=Jim Buck Jr]. + +[u][b]Note[/b][/u]: For releases on which it is not ascertained whether the hornist is [u]Jim Buck Sr[/u] or [u][a=Jim Buck Jr][/u], please use [b][a=Jim Buck][/b].Needs VoteJ. Buck (Snr.)J. Buck Sr.J.Buck Snr.Jim BuckJim Buck SnrJim Buck Snr.Джим Бак (Старший)London Symphony Orchestra + +11205572Damien FerranteFrench countertenor & alto vocalistNeeds Votehttps://www.facebook.com/ensemblecosmos/photos/a.361981744180872/1168729010172804/?type=3Le Concert SpirituelChoeur de Chambre de NamurLe Poème HarmoniqueLes Cris de ParisL'Escadron Volant de la ReineHarmonia Sacra (2) + +11223989Clement LoscoClément LoscoClassical percussionist.Needs VoteOrchestre Philharmonique De Strasbourg + +11227226Manfred Ludwig (2)Classical flautist.Needs VoteGewandhausorchester LeipzigQuintessenz (4) + +11227238Daniel KerdelewiczPolish horn player.Needs VoteBuffalo Philharmonic OrchestraPolish National Radio Symphony OrchestraArs Nova Musicians + +11227271Veronika StarkeClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230034Felicia HamzaFelicia Joanna Gelsomina HamzaFelicia Hamza is a classical cellist, born in Haan, Germany.Needs VoteStuttgarter PhilharmonikerBundesjugendorchesterDüsseldorfer Symphoniker + +11230037Vincent Lo (2)Classical cellist, born in 1994 in Australia.Needs VoteGewandhausorchester Leipzig + +11230040Christian ErbenClassical cellist.Needs VoteGewandhausorchester Leipzig + +11230043Daniel Pfister (5)Classical cellist.Needs VoteGewandhausorchester Leipzig + +11230046Gayane KhachatryanArmenian classical cellist.Needs VoteGewandhausorchester Leipzig + +11230049Heiko SchumannClassical cellist.Needs VoteGewandhausorchester Leipzig + +11230052Kristin ElwanClassical cellist.Needs VoteGewandhausorchester Leipzig + +11230055Nicolas DefranouxClassical cellist.Needs VoteGewandhausorchester Leipzig + +11230058Pedro PelaezPedro Peláez RomeroClassical cellist.Needs VoteGewandhausorchester Leipzig + +11230061Ulrike Strauch (2)Ulrike Strauch (born 1956) is a German classical cellist.Needs VoteGewandhausorchester Leipzig + +11230064Bernd Meier (5)Classical double bassist.Needs VoteGewandhausorchester Leipzig + +11230067Christoph Winkler (3)Classical double bassist.Needs VoteGewandhausorchester Leipzig + +11230073Karsten HeinsClassical double bassist, born in 1979 in Hamburg, Germany.Needs VoteGewandhausorchester Leipzig + +11230076Michail-Pavlos SemsisMichail-Pavlos Semsis is a Greek classical double bassist and Professor at the [l1740537].Needs VoteMichaeil Pavlos SemsisMichail SemsisGewandhausorchester LeipzigWDR Sinfonieorchester KölnOrchester Der Deutschen Oper BerlinThe Apollon Ensemble + +11230079Elizabeth Ostling KleinAmerican classical flautist. Associate Principal Flute, Boston Symphony Orchestra and Principal Flute, Boston Pops Orchestra.Needs Votehttps://www.bso.org/profiles/elizabeth-kleinhttps://elizabethostlingklein.com/Elizabeth KleinBoston Pops OrchestraBoston Symphony Orchestra + +11230082Alice WedelClassical violist.Needs VoteGewandhausorchester LeipzigQuatuor Ardeo + +11230085Birgit Weise (2)Classical violist.Needs VoteGewandhausorchester Leipzig + +11230088Claudia BussianGerman classical violist.Needs VoteGewandhausorchester Leipzig + +11230091Immo SchaarClassical violist, born in 1970 in Gotha, Germany.Needs VoteGewandhausorchester Leipzig + +11230094Ivan BezpalovUkrainian classical violist.Needs VoteGewandhausorchester Leipzig + +11230097Ruth BernewitzClassical violist.Needs VoteGewandhausorchester Leipzig + +11230100Sara Kim (3)Classical violist, born in 1988 in South Korea.Needs Votehttp://www.sarakimviola.com/Gewandhausorchester LeipzigStaatsorchester Braunschweig + +11230106Anna Luisa VolkweinAnna Luisa Volkwein is a German classical violinist.Needs VoteAnna VolkweinBochumer SymphonikerGustav Mahler JugendorchesterBundesjugendorchester + +11230112Sophie SchülerClassical violinist, born in 1994 in Chemnitz, Germany.Needs VoteBamberger Symphoniker + +11230115Anna Schuberth-RichwienClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230118Brita ZühlkeClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230121Chiara AstoreClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230124Christian Hofmann-KrugChristian Hofmann-Krug is a German classical violinist.Needs VoteGewandhausorchester LeipzigOrchester der Bayreuther FestspielePhilharmonisches Orchester Kiel + +11230127Ina WieheIna Wiehe is a German classical violinist.Needs VoteGewandhausorchester LeipzigMDR Sinfonieorchester + +11230130Johanna BerndtClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230133Julius BekeschClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230136Kana OhashiClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230139Liane UngerClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230142Mao ZhaoClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230145Regine KorneliClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230148Sara AstoreClassical violinist.Needs VoteGewandhausorchester LeipzigBamberger Symphoniker + +11230151Stefanie CribbClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230154Susanne HallmannClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230157Thomas TauberClassical violinist.Needs Votehttps://www.tauber-leipzig.de/Gewandhausorchester Leipzig + +11230160Yun-Jin ChoClassical violinist.Needs VoteGewandhausorchester LeipzigPhilharmonisches Staatsorchester HamburgGewandhaus-Quartett Leipzig + +11230163Aleksander DaszkiewiczClassical violinist.Needs VotePolish National Radio Symphony Orchestra + +11230166Andrea PleßClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230169Anna BaduelClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230172Bernadette WundrakClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230175Camille GoutonClassical violinist, born in 1990 in Heilbronn. Germany.Needs VoteGewandhausorchester Leipzig + +11230178Ewa HelmersClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230181Katharina WachsmuthClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230184Kathrin PantzierClassical violinist.Needs VoteGewandhausorchester LeipzigLaetitia-Quartett + +11230187Lars Peter LeserClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230190Lydia DoblerClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230193Markus PinquartMarkus Pinquart is a German classical violinist.Needs VoteGewandhausorchester LeipzigReinhold-Quartett + +11230196Miho Tomiyasu-Palma MarquesClassical violinist.Needs VoteGewandhausorchester Leipzig + +11230199Minah LeeMinah Lee is a German-Korean classical violinist.Needs VoteGewandhausorchester LeipzigJunge Deutsche PhilharmonieOrchester Des Schleswig-Holstein Musik Festivals + +11230202Nemanja BugarcicClassical violinist.Needs VoteGewandhausorchester Leipzig + +11231483Jeremy BagerJeremy Bager (born 1996) is an Anglo-Swiss classical bassoonist.Needs VoteGustav Mahler JugendorchesterSchweizer Jugend-Sinfonie-OrchesterOrchester Des Schleswig-Holstein Musik FestivalsUBS Verbier Festival Youth Orchestra + +11231486Albert KegelClassical bassoonist.Needs VoteGewandhausorchester Leipzig + +11231492Peter SchurrockClassical clarinettist.Needs VoteRundfunk-Sinfonie-Orchester LeipzigGewandhausorchester Leipzig + +11231495Hans SchlagHans Schlag is a German classical bassoonist.Needs VoteBachorchester des Gewandhauses zu LeipzigGewandhausorchester LeipzigDas Gewandhaus-Bläserquintett + +11231498Johanna SiglerClassical flautist.Needs VoteBerliner SymphonikerGewandhausorchester LeipzigHallesche Philharmonie + +11231501Katalin StefulaClassical flautist.Needs VoteGewandhausorchester Leipzig + +11231507Cornelia SmacznyCornelia Smaczny (born 1957) is a German classical harpist. She's the daughter of [a941942].Needs VoteGewandhausorchester Leipzig + +11231510Gabriella VictoriaClassical harpist.Needs VoteGewandhausorchester Leipzig + +11231516Christian Kretschmar (2)Classical horn player.Needs VoteGewandhausorchester Leipzig + +11231519Jürgen MerkertClassical horn player.Needs VoteGewandhausorchester Leipzig + +11231522Simen FegranGerman-Norwegian classical horn player.Needs VoteGewandhausorchester LeipzigConcertgebouworkest + +11231528Amanda TauriņaClassical oboist.Needs VoteGewandhausorchester Leipzig + +11231531Andres Otin MontanerAndrés Otín MontanerAndrés Otín Montaner is a Spanish classical oboist.Needs VoteGewandhausorchester LeipzigJunge Deutsche Philharmonie + +11231534Johann-Georg BaumgärtelClassical percussionist.Needs VoteJohann BaumgärtelGewandhausorchester Leipzig + +11231537Philipp Schroeder (2)Classical percussionist.Needs VoteGewandhausorchester Leipzig + +11231540Severin StitzenbergerClassical percussionist.Needs VoteGewandhausorchester LeipzigSalaputia Brass + +11231543Tünde MolnárHungarian classical piccolo flautist.Needs VoteTünde Molnár-GreplingGewandhausorchester Leipzig + +11231546Tom GreenleavesClassical timpanist, born in Swanage, Dorset, UK.Needs VoteGewandhausorchester Leipzig + +11231549Tomáš TrnkaClassical trombone player.Needs VoteTomás TrnkaGewandhausorchester Leipzig + +11231552Gábor RichterClassical trumpeter, born in 1981 in Veszprém, Hungary.Needs VoteGewandhausorchester Leipzig + +11231555Johann ClemensClassical trumpeter.Needs VoteGewandhausorchester Leipzig + +11231558Jonathan Müller (2)Classical trumpeter.Needs VoteGewandhausorchester LeipzigSalaputia Brass + +11231561Szabolcs SchüttClassical trumpeter.Needs VoteGewandhausorchester Leipzig + +11242229Simone GruppeGerman classical trumpeter, born in 1984 in Frankfurt am Main.Needs VoteRundfunk-Sinfonieorchester Berlin + +11243621Barbara LeoTrombonistNeeds VoteDeutsche Kammerphilharmonie Bremen + +11249210Anna SchaumlöffelGerman classical mezzo-soprano & alto vocalist.Needs Votehttps://www.anna-schaumloeffel.de/en/vitaRIAS-Kammerchor + +11250422Laura Griffiths (3)Classical oboist.CorrectLaura Griffi thsThe Cleveland OrchestraRochester Philharmonic OrchestraSan Francisco Ballet Orchestra + +11264492Members Of The Cello Section Of The Baltimore Symphony OrchestraNeeds VoteBaltimore Symphony Orchestra + +11273846Ursula Paludan MonbergDanish classical hornist, born 1982 in Aalborg.Needs Votehttps://www.ursulapaludanmonberg.com/Ursula PaludanThe English Concert + +11280179Oliver John RuthvenBritish Oliver John Ruthven is an early keyboards specialist and conductor. Equally at home at the harpsichord, chamber organ or conducting and co-director of the ensemble, [a=Musica Poetica (2)]Needs Votehttp://www.oliverjohnruthven.co.uk/Oliver-John RuthvenThe English Baroque SoloistsMusica Poetica (2) + +11304344Peter Stumpf (2)Classical cellist.Needs VoteLos Angeles Philharmonic OrchestraBridgehampton Chamber Music FestivalWeiss Kaplan Stumpf Trio + +11304773Burghard SiglClassical violist.Needs VoteMünchner PhilharmonikerTertis Viola Ensemble + +11304776Julio Lopez (7)Julio LópezHonduran classical violist, born in 1980.Needs VoteMünchner PhilharmonikerTertis Viola Ensemble + +11304779Valentin EichlerGerman classical violist, born in 1980 in Dettelbach am Main.Needs VoteMünchner PhilharmonikerTertis Viola Ensemble + +11315315Stefan Schmitz (5)Stefan Schmitz (born in 1963 in Kürten, Germany) is a German classical trombonist.Needs VoteStephan SchmitzWDR Sinfonieorchester KölnOrchester der Bayreuther FestspieleBach, Blech & Blues + +11319044Sławomir GrendaPolish classical double bassist, born in 1968.Needs VoteMünchner Philharmoniker + +11338334Roswitha SchmelzlGerman soprano vocalist, born in 1975 in Mainburg.Needs Votehttps://www.roswitha-schmelzl.de/Collegium Vocale + +11349116Kalmer KiikClassical hornist.Needs VoteEstonian National Symphony Orchestra + +11351957Benedikt SchneiderBenedikt Schneider (born 1982) is a German classical violist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksDeutsche Radio Philharmonie Saarbrücken Kaiserslautern + +11352611Wolfgang MirlachWolfgang Mirlach is a actor and singer.Needs VoteRegensburger Domspatzen + +11362124Savitri GrierSavitri Grier is a British classical violinist.Needs Votehttps://www.savitrigrierviolin.com/Symphonie-Orchester Des Bayerischen RundfunksBudapest Festival OrchestraOrchestre Philharmonique De Radio FranceKaleidoscope Chamber Collective + +11368847Omar TomasoniItalian classical trumpeterNeeds VoteConcertgebouworkest + +11372399Holgen GjoniClassical cellist.Needs Votehttps://www.holgengjoni.com/Baltimore Symphony OrchestraBoston Modern Orchestra Project + +11376503Louise OgnoisFrench trombonistNeeds VoteOrchestre National Du Capitole De Toulouse + +11394617Helen GaskellClassical oboe & cor anglais player. +In 1932, she joined the [a=BBC Symphony Orchestra].Needs VoteBBC Symphony Orchestra + +11399654Tobias Segura PeraltaClassical countertenor born 1992Needs Votehttps://www.tobiasseguraperalta.com/tobias-segura-peraltaCappella AmsterdamLe Nuove Musiche + +11400716Kei TojoJapanese classical violist.Needs VoteOrchestre National Du Capitole De Toulouse + +11404868Ferdinand SteinerBorn : December 4, 1970 +Ferdinand Steiner is a clarinetist. He is principal clarinetist in the Mozarteum Orchestra Salzburg.Correcthttp://steiner-clarinet.atDas Mozarteum Orchester Salzburg + +11404871Ivaylo IordanovClassical double bassist.Needs VoteWiener Symphoniker + +11413328Brendan StackChoir vocalistNeeds VoteThe London Oratory Junior Choir + +11413331James ClerkinChoir vocalistNeeds VoteThe London Oratory Junior Choir + +11416655LD (23)Leroy van DrieDJ in the harder styles from The Netherlands. Teamed up with DJ Thanoz in the 90s and together they played back 2 back at loads of events like Ghosttown, Gezellige Oldskool Feest, Masters of Hardcore. Is also MC and co-producer in the group Human Resource (Dominator). Nowadays performs under the name L3roy Brown.Needs VoteHuman Resource + +11421323Audrey DupontViolinist.Needs VoteOrchestre De Chambre De ToulouseToulouse Wind OrchestraAmaury Faye Ensemble + +11431685Maria OłdakClassical violinist.Needs VoteMaria OldakRoyal Philharmonic OrchestraYoung Musicians Symphony Orchestra + +11448062Andrew ChappellAmerican classical trombonist.Needs VoteMinnesota OrchestraBurning River Brass + +11455496Catherine SymondsClassical alto vocalist.Needs VoteThe Choir Of Clare College + +11455499Charlotte HoClassical alto vocalist.Needs VoteThe Choir Of Clare College + +11455502Elisabeth FlemingClassical alto vocalist.Needs VoteThe Choir Of Clare College + +11455505Jessica Thomas (5)Classical alto vocalist.Needs VoteThe Choir Of Clare College + +11455508Madeleine Bradbury RanceClassical alto vocalist.Needs VoteThe Choir Of Clare College + +11455511Sarah ShorterClassical alto vocalist.Needs VoteThe Choir Of Clare College + +11455514Edward Ballard (2)Classical Bass & Baritone vocalist.Needs VoteThe Choir Of Clare College + +11455517Edward ParkesClassical bass vocalist.Needs VoteEd ParkesThe Choir Of Clare College + +11455520George MullanClassical bass vocalist.Needs VoteThe Choir Of Clare College + +11455523Matthew Graham (4)Classical bass vocalist.Needs VoteThe Choir Of Clare College + +11455526Richard BannonClassical bass vocalist.Needs VoteThe Choir Of Clare College + +11455529Will HaggardClassical bass vocalist.Needs VoteThe Choir Of Clare College + +11455532Caroline Smith (6)Classical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455535Charlotte KingstonClassical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455538Eleanor HelpsClassical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455541Esther ChadwickClassical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455544Laura HoneySoprano vocalist.Needs VoteThe Choir Of Clare College + +11455547Philippa BoyleClassical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455550Suzanne SzczetnikowiczClassical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455553Zoe VanderwolkClassical soprano vocalist.Needs VoteThe Choir Of Clare College + +11455556Benjamin Walton (2)Classical tenor vocalist.Needs VoteThe Choir Of Clare College + +11455559Benjamin WinpennyClassical tenor vocalist.Needs VoteThe Choir Of Clare College + +11455562Jonathan Bird (2)Classical tenor vocalist.Needs VoteThe Choir Of Clare College + +11455565Jonathan LangridgeClassical tenor vocalist. Son of [a838409] and [a625651].Needs VoteThe Choir Of Clare College + +11455568Philip Martin (17)Classical treble, later tenor vocalist.Needs VoteThe Choir Of Clare College + +11472842Javier RossettoClassical trumpeter.Needs VoteOrchestre Philharmonique De Radio FranceLocal Brass Quintet + +11473850Ken CharmerNeeds Major Changes + +11477348Andrea Lucchi (2)Italian trumpeter.Needs Votehttp://www.andrealucchi.com/biografia.htmlOrchestra dell'Accademia Nazionale di Santa Cecilia + +11500757Amelie BöckhelerAmelie Böckheler-KharadzeAmelie Böckheler-Kharadze (born 1992) is a German classical violinist from MunichNeeds VoteSymphonie-Orchester Des Bayerischen RundfunksAkademie-Quartett München + +11516096Chiharu AsamiChiharu Asami is a Japanese bassoonist.Needs VoteSüdwestdeutsches KammerorchesterDuisburger PhilharmonikerOrchester Der Deutschen Oper Am RheinPhilharmonisches Orchester FreiburgEssener Philharmoniker + +11516105Peter PudilDouble bassist.Needs VoteSüdwestdeutsches Kammerorchester + +11516111Heinrich HerpichTimpani and vibraphone player.Needs VoteSüdwestdeutsches Kammerorchester + +11516114Attila SzegediTrumpeter.Needs VoteSüdwestdeutsches Kammerorchester + +11516117Agnieszka KornilukViola player.Needs VoteSüdwestdeutsches KammerorchesterBadische Staatskapelle + +11516120Alexandra BossakViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +11516123Joanna GortelViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +11516126Jutta KühnelViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +11516129Editha KonwitschnyViolinist.Needs VoteSüdwestdeutsches Kammerorchester + +11530700The String Quartet From The Graunke Orchestra Of MunichNeeds VoteEl Ccuarteto De Cuerdas De La Graunke Orchestra De MunichSymphonie-Orchester Graunke + +11538821Opera BrassOne of the chamber music ensembles of the [a451535]. +First appearance was in 1996.Needs VoteUwe FüsselSven StrunkeitStefan AmbrosiusRainer SchmitzGuido SegersRalf ScholtesRobert KamleiterChristian LofererAndreas KittlausPeter MorigglBayerisches Staatsorchester + +11538824Andreas KittlausTrumpet player.Needs VoteOpera Brass + +11538827Peter MorigglTrumpet player.Needs VoteSinfonieorchester St. GallenOpera Brass + +11542490Carolyn Harris (6)Australian classical flautist.Needs VoteSydney Symphony Orchestra + +11560706Michael Greenberg (7)Classical double bassist.Needs VoteLes Arts Florissants + +11591657Gerhard StarkeGerhard Starke is a classical clarinetist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +11597084Léo GenetFrench classical double bassistNeeds Votehttps://www.facebook.com/leo.genet.71/?locale=fr_FRConcertgebouworkest + +11597087Coraline GroenDutch classical violinistNeeds Votehttps://en.coralinegroen.com/ConcertgebouworkestThe Vondel Strings + +11597090Leonie BotDutch classical violinistNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +11632946Maria MealeyClassical bassoon instrumentalistNeeds VoteRoyal Philharmonic Orchestra + +11632949Rebecca Gibson SwiftClarinet & saxophonistNeeds VoteRoyal Philharmonic Orchestra + +11632958Clare-Louise ApplebyClassical flautistNeeds VoteRoyal Philharmonic Orchestra + +11632961John Woolf (4)KeyboardistNeeds VoteRoyal Philharmonic Orchestra + +11632967Graeme Adams (2)Classical oboistNeeds VoteRoyal Philharmonic Orchestra + +11632970Kevin WatermanClassical percussionistNeeds VoteRoyal Philharmonic Orchestra + +11664533Harvey ThurmerHarvey Thurmer has had a career as a soloist, concertmaster, chamber musician and pedagogue. A native of Tennessee, his studies included work with mentors Dorothy DeLay and Louis Krasner at the New England Conservatory, and Sandor Vegh at the Mozarteum in Salzburg, Austria. + +After finishing his studies in Austria, he performed extensively as a chamber musician in Europe, with appearances at the Salzburg Festival, the Cheltenham Festival in England, London’s Wigmore Hall, Zurich Tonhalle, Leipzig Gewandhaus, Paris Salle Gavaeu, and Amsterdam’s Concertgebouw. As a member of the Franz Schubert Quartet of Vienna, he held teaching positions at the Graz Musikhochschule and the Royal College of Music in Manchester England. He has taught at the Lappland Festival in Sweden, the Lake District Summer Music Festival in England, and the Summer Academy in Graz, Austria. He has collaborated with artists such as cellist David Soyer of the Guarneri quartet, pianists Anon Nel, Sandra Rivers, Jörg Demus and Cyprien Katsaris, and clarinetists Peter Schmiedl and Alois Brandhoffer of the Vienna Philharmonic. Mr. Thurmer performed annually from 1997 -2006 as concertmaster of the Echternach Festival Chamber Orchestra in Luxemburg. As a member of the Oxford String Quartet he has performed in Venezuela, Austria, Seoul, South Korea and Nagasaki, Japan and in the US in New York, Ohio, Indiana, Maryland, West Virginia, and Virginia. + +As a soloist Mr. Thurmer toured with the Salzburg Philharmonie in South America performing in Santiago, Chile, Lima, Peru, and Buenos Aires Argentina, as well as in Salzburg and Vienna, Austria. In the US he has appeared in recital and as soloist in Tennessee, Colorado, Indiana, Ohio, and Florida, and Washington D.C.Needs Votehttp://www.miamioh.edu/cca/academics/departments/music/about/faculty-staff/strings/harvey-thurmer/index.htmlFranz Schubert Quartet Of Vienna + +11667980Louise DesjardinsFrench classical violist.Needs VoteLouise DesjardinOrchestre National De FranceQuatuor Akilone + +11672489Sylvain DelcroixFrench classical hornist.Needs VoteOrchestre Philharmonique De Radio France + +11672492Xavier AgoguéClassical hornistNeeds VoteXavier AgogueOrchestre Philharmonique De Radio France + +11672495David MaquetFrench classical trombonist.Needs VoteOrchestre Philharmonique De Radio France + +11680976Tiina ZahnGerman classical alto vocalist.Needs Votehttp://www.voice-at-home.de/?Wer_bin_ich%3F:Tiina_ZahnCollegium Vocale + +11680979Ursula EbnerClassical alto vocalist.Needs VoteCollegium Vocale + +11684351Mélanie RihouxClassical soprano vocalist.Needs VoteChoeur de Chambre de Namur + +11684354Kenny FerreiraClassical tenor vocalist.Needs VoteChoeur de Chambre de Namur + +11692895Domingo HindoyanDomingo Garcia HindoyanArmenian-Venezuelan conductor and violinist. Chief conductor of [a973597] as of September 2021. + +Born: 15 February 1980 in Caracas. Needs Votehttps://domingohindoyan.com/Royal Liverpool Philharmonic Orchestra + +11702705Jackie JoslinVocalist that won a talent contest in 1949 for Horace Height in Nashville, Tennessee with [a5486784] and then joined [a972378]. She later married talent agent/film producer [a8258534] while performing with [a972378] on the Colgate Comedy Hour with [a10533] and [a1248950].Needs VoteThe SkylarksThe Pepperettes + +11708198Laura Rodrigues LopesPortuguese mezzo-soprano & soprano vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Lopes-Laura.htmCappella Amsterdam + +11711171Elena SoltanKazakh classical violinist.Needs VoteMünchner Rundfunkorchester + +11714273Meng HanViolinistNeeds VoteCollegium Vocale + +11721446Mathieu MontagneFrench tenor vocalist.Needs VoteChoeur de Chambre de Namur + +11722109Laura ŠtomaLatvian conductor and soprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +11735432Anne-Sophie Le RolFrench classical violinistNeeds Votehttps://www.orchestredeparis.com/fr/orchestre/interview/57/anne-sophie-le-rolAnne-Sophie LerolOrchestre De ParisThymos Quartet + +11738675Zohar LernerNeeds VoteZohar Lerner (Konzertmeister)Württembergisches KammerorchesterArc Verona Ensemble + +11747708Emmanuelle LaineClassical violinist.Needs VoteLaine EmmanuelleLe Concert Spirituel + +11749523Andraž GolobAndraž Golob a Slovenian bass clarinetist. He's a member of the [a260744] since October 2021.Needs VoteBerliner PhilharmonikerGustav Mahler Jugendorchester + +11749526Matic KuderMatic Kuder is a Slovenian clarinetist. He's a member of the [a260744] since December 2021.Needs VoteBerliner PhilharmonikerNürnberger SymphonikerPihalni Orkester "Svea" Zagorje + +11750585Ona Ramos TintóOna Ramos Tintó (born 1993 in Barcelona, Spain) is a Spanish horn player. A member of the [a990584] since 2025.Needs Votehttps://www.internationale-em-akademie.de/de/student/2019/ona-ramos-tintoJunge Deutsche PhilharmonieStuttgarter PhilharmonikerEnsemble Modern OrchestraWürttembergische Philharmonie Reutlingen + +11760323De Vere MooreClassical oboe playerNeeds VoteChicago Symphony Orchestra + +11761322Sébastien BatutClassical clarinetist.Needs VoteS. BatutOrchestre National Bordeaux Aquitaine + +11766968Ernst SarinNeeds Major Changes + +11767760Triola-tanssiorkesteriNeeds Major Changes + +11799398Annie-May PageViolistNeeds VoteLondon Symphony Orchestra + +11816255Nenad DaleoreNenad Daleore is a classical violinist.Needs VoteMünchner Philharmoniker + +11832413Anna Chomicka-GoreckaAustralian violinist, violist and pedagogue of Polish descent.Needs VoteWest Australian Symphony OrchestraSydney Symphony OrchestraMexico City Philharmonic Orchestra + +11842301Russell King (7)Australian classical flutist.Needs VoteBBC Symphony Orchestra + +11843219Markus Rainer (2)Markus Rainer (born 1977) is an Austrian trumpet player.Needs VoteMünchner PhilharmonikerFranui + +11844431Kristjan-Jaanek MölderChoral singer.Needs VoteEstonian Philharmonic Chamber Choir + +11849285Aleksander SzebesczykPolish french horn player.Needs Votehttps://pl.wikipedia.org/wiki/Aleksander_Szebesczykhttps://chopin.edu.pl/pracownicy/203_aleksander-szebesczykOrkiestra Symfoniczna Filharmonii Narodowej + +11850158Osiris StanziolaPanamanian soprano vocalist from ChiriquíNeeds Votehttps://www.laestrella.com.pa/cafe-estrella/cultura/100919/camino-volverhttps://www.metrolibre.com/cultura/la-lirica-no-es-un-juego-LBML66951Coro Del Teatro Dell'Opera Di Roma + +11853008Piotr TarcholikPolish classical violinist.Needs VoteSinfonia VarsoviaPolish National Radio Symphony Orchestra + +11858756Martin CandelaFrench classical tenor vocalistNeeds Votehttps://mcandela537522.wixsite.com/candelamartin-tenor/homeLe Concert SpirituelEnsemble Les SurprisesChœur Marguerite Louise + +11879339Tobias Schmitt (3)Tobias Schmitt is a German oboist and english horn player.Needs VoteStabsmusikkorps Der BundeswehrGewandhausorchester LeipzigAnhaltische Philharmonie DessauErzgebirgische Philharmonie AueStaatstheater Darmstadt + +11884235Brage SæbøNorwegian violinist, currently (2022) playing with The Oslo Philharmonic OrchestraNeeds Votehttps://ofvenner.no/mot-orkesterets-yngste-musiker-fiolinisten-brage-saebo/Oslo Filharmoniske Orkester + +11887829Zoë TweedClassical hornist.Needs VoteLondon Symphony OrchestraRoyal Philharmonic Orchestra + +11891033Ray Olsen (3)Trombonist.Needs VoteJack Teagarden And His Orchestra + +11898878Jersey BabysNeeds Major Changes + +11901581François HéraudFrench Bass vocalistNeeds VoteLe Concert SpirituelChoeur de Chambre de Namur + +11901584Jérôme Collet (2)French Bass & Baritone vocalistNeeds VoteLe Concert Spirituel + +11901590Marguerite HumberFrench oboistNeeds VoteLe Concert Spirituel + +11901593Armelle MarqFrench soprano vocalist.Needs Votehttps://armellemarq.wixsite.com/armellemarqLe Concert Spirituel + +11901596Marie SerriSoprano vocalistNeeds VoteLe Concert Spirituel + +11905202Bruno Perret (2)French classical bassoonist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905205Claude Del MedicoClassical bassoonist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905208Franck VaginayClassical clarinetist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905211Manuel MetzgerClassical clarinetist.Needs VoteOrchestre National Bordeaux AquitaineOrchestre Philharmonique De Radio France + +11905217Christophe DubosclardClassical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905220Jeanine SoubourouClassical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905223Marc BrunelClassical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905226Patrice LambourClassical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905229Roland GaillardClassical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905232Rémi HalterClassical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905235Valérie PetiteFrench classical contrabassist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905238Dominique BaudouinClassical contrabassoonist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905241Bernard DoriacClassical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905244Bruno ArmigniesClassical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905247Gilles BalestroFrench classical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905250Jacques RomanoClassical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905253Jean-Marc DalmassoClassical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905256Julien Blanc (2)French classical hornist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905259Dominique DescampsFrench classical oboist, born in Lille.Needs VoteOrchestre National Bordeaux Aquitaine + +11905262Francis WillaumezClassical oboist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905265Jean-Daniel LecocqFrench classical percussionist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905268Patrice Guillon (2)French classical percussionist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905277Frédéric DemarleFrench classical trombonist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905280Francis PedemayFrench classical trumpeter.Needs VoteOrchestre National Bordeaux Aquitaine + +11905283Gilles FaubertClassical trumpeter.Needs VoteOrchestre National Bordeaux Aquitaine + +11905286Cécile BerryFrench classical violist, born in 1973.Needs VoteOrchestre National Bordeaux Aquitaine + +11905289Emmanuel GautierClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905292Françoise CagniartClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905295Frédérique GastinelFrench classical violist, born in 1969.Needs VoteOrchestre National Bordeaux Aquitaine + +11905298Geoffroy GautierClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905301Jean-Marie CurtoClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905304Mayorga DenisClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905307Nicolas MouretFrench classical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905310Philippe Girard (4)Classical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905313Véronique KnoellerClassical violist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905316Adrian NemtanuClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905319Agnès VitonClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905322Alan MoratinClassical violinist, born in 1974.Needs VoteMoratinOrchestre National Bordeaux Aquitaine + +11905325Angelica BorgelClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905328Carole MerinoClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905331Catherine JailletClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905334Cécile CoppolaClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905337Daniela GrecuClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905340Doru DogaruClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905343Ewgeni SawikowskiClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905346Fabienne Perret-BancillonClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905352François MarcelClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905355Frédéric DebandeClassical violinist.Needs VoteFrédérick DebandeOrchestre National Bordeaux Aquitaine + +11905358Ghislaine RobertClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905364Jean-Michel DaillatClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905367Jean-Michel FeuillonClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905370Judith NemtanuClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905373Laurence EscandeClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905376Lidia GrigoreClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905379Lilian LacosteClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905382Marius AcaruClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905385Masako Ono (3)Classical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905388Michael LavkerClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905391Mireille RougerClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905394Nathalie Mule-DonzacClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905397Patricia AndréClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905400Renaud LargillierClassical violinist, born in 1975.Needs VoteOrchestre National Bordeaux Aquitaine + +11905403Yann BaraneckFrench classical violinist, born in 1971 in Bordeaux.Needs VoteYann BaranekOrchestre National Bordeaux Aquitaine + +11905406Yves SoulasClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905409Anne-Marie AndreuClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905412François Perret (2)Classical cellist, born in 1965.Needs VoteOrchestre National Bordeaux Aquitaine + +11905415Françoise JeanneretClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905418Ghislaine TortosaClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905421Jean-Étienne HaeuserClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905424Marie-Claude PerretClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905427Mircea PaladeClassical cellist.Needs VoteOrchestre National Bordeaux Aquitaine + +11905763Sébastien Jean (2)French classical trumpeter, born in Neuvic sur L'Isle.Needs VoteOrchestre National Bordeaux Aquitaine + +11905844Florian MurtazaClassical violinist.Needs VoteOrchestre National Bordeaux Aquitaine + +11920493Moritz PlasseGerman flutistNeeds Votehttp://www.moritz.plasse.atDas Mozarteum Orchester Salzburg + +11926910Catherine Ardagh-WalterClassical cellist, born in Winchester, Hampshire, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +11926916Kate SetterfieldEnglish classical cellist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926922Julian AtkinsonScottish classical double bassist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926925Damián Rubido GonzálezSpanish classical double bassist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926928Julian WaltersClassical double bassist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926934Jeremy BushellClassical horn player.Needs VoteCity Of Birmingham Symphony Orchestra + +11926937Martin Wright (18)Scottish classical horn player.Needs VoteCity Of Birmingham Symphony Orchestra + +11926940Emmet ByrneClassical oboist, born in Waterford, Ireland.Needs VoteCity Of Birmingham Symphony Orchestra + +11926943Andrew Herbert (2)Classical percussionist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926955Helen BensonClassical piccolo flautist.Needs VoteCity Of Birmingham Symphony OrchestraOslo Filharmoniske OrkesterOrquesta Sinfónica De Minería + +11926958Matthew Hardy (4)Classical timpanist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926961Anthony Howe (2)Classical trombone player.Needs VoteCity Of Birmingham Symphony Orchestra + +11926964Richard WatkinClassical trombone player.Needs VoteCity Of Birmingham Symphony Orchestra + +11926967David BaMaungClassical violist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926970Michael JenkinsonClassical violist, born in Rotherham, Yorkshire, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +11926973Amy Thomas (5)Classical violist, born in Nottingham, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +11926976Angela SwansonClassical violist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926979Catherine BowerClassical violist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926982Elizabeth GoldingClassical violinist, born in Watford, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +11926985Ruth Lawrence (2)Classical violinist, born in Stourbridge, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +11926988Stefano MengoliClassical violinist, born in Bologna, Italy.Needs VoteLondon Symphony OrchestraCity Of Birmingham Symphony Orchestra + +11926994Jane Wright (3)Classical violinist.Needs VoteCity Of Birmingham Symphony Orchestra + +11926997Julia Åberg (2)Classical violinist, born in Nuremberg, Germany.Needs VoteJulia AbergCity Of Birmingham Symphony Orchestra + +11927000Glenn Christensen (3)Classical violinist, born in Mackay, Australia.Needs VoteQueensland Symphony OrchestraAustralian Chamber OrchestraDeutsche Kammerphilharmonie BremenLyrebird Trio + +11927003Amy Jones (10)Classical violinist, born in Leamington Spa, Warwickshire, UK.Needs VoteCity Of Birmingham Symphony Orchestra + +11927006Bryony MorrisonClassical violinist.Needs VoteCity Of Birmingham Symphony OrchestraUlster Orchestra + +11927009Catherine ArlidgeClassical violinist.Needs Votehttps://www.catherinearlidge.co.uk/City Of Birmingham Symphony Orchestra + +11927012Gabriel DykerClassical violinist.Needs VoteCity Of Birmingham Symphony Orchestra + +11927015Moritz PfisterGerman classical violinist.Needs VoteCity Of Birmingham Symphony Orchestra + +11927018Peter Campbell-KellyClassical violinist.Needs VoteCity Of Birmingham Symphony OrchestraScottish Chamber OrchestraNorthern Sinfonia + +11927024Wendy Quirk (2)Classical violinist.Needs VoteCity Of Birmingham Symphony Orchestra + +11956685Wilhelm SchimmelWilhelm Schimmel (2 April 1898 - 25 July 1983) was a classical percussionist. +A member of the [a260744] from 1926 to 1962.Needs VoteBerliner Philharmoniker + +11967491Imogen RoyceClassical flautist.Needs VoteLondon Symphony Orchestra + +11967494Daniel CurzonClassical hornist.Needs VoteDan CurzonLondon Symphony Orchestra + +11967497Henrietta CookeClassical oboist, born in 1996 in Watford, UK.Needs VoteLondon Symphony Orchestra + +11967521May DolanClassical violist.Needs VoteLondon Symphony Orchestra + +11967524Steve Doman (2)Classical violist.Needs VoteStephen DomanLondon Symphony Orchestra + +11967527Joonas PekonenFinnish classical violinist.Needs VotePhilharmonia Orchestra + +11969558Blake Thomson (2)Double bass player. Born in Albuquerque (USA), came to Germany in 2006 to study there and since then played with various german orchestras, as well as with international jazz ensembles. Since 2013 member of Württembergisches Kammerorchester.Needs VoteWürttembergisches KammerorchesterArc Verona Ensemble + +11973938Camille LaurentClassical double bassist.Needs VoteOrchestre National Du Capitole De ToulouseLe Concert de la Loge + +11998318Pierre Gil (2)Classical cellist.Needs VoteOrchestre National Du Capitole De Toulouse + +12009001Naomi ShahamNaomi Shaham (born 1997) is a classical double bassist.Needs VoteGewandhausorchester LeipzigSymphonie-Orchester Des Bayerischen RundfunksBudapest Festival OrchestraOrchester Des Schleswig-Holstein Musik FestivalsUBS Verbier Festival Chamber Orchestra + +12015835Christian Heiß (2)Christian Heiß (born 1 June 1967) is a German church musician, composer and Domkapellmeister of the [l2656702].Needs VoteChristian Matthias HeißRegensburger Domspatzen + +12022210Fábio Brum (2)Classical & Jazz wind instrumentalistNeeds VoteRoyal Liverpool Philharmonic Orchestra + +12037369Christelle PochetBelgian classical clarinetist.Needs VoteOrchestre National De France + +12060310Tobias Sturm (2)German violinist, born in 1978 in Bielefeld, Germany.Needs VoteStaatskapelle BerlinMainzer Streichquartett + +12066244Liv Elise NordskogNorwegian soprano vocalist and violinist.Needs VoteBergen Filharmoniske Orkester + +12073840Juan PaviaSpanish horn playerNeeds VoteOrquesta Sinfónica De MadridCorniloquio + +12076897Male Voices Of The John Alldis ChoirNeeds VoteJohn Alldis Choir (Men's Voices)Men's Voices Of John Alldis ChoirMen's Voices Of The John Alldis ChoirJohn Alldis Choir + +12082963John ClouserAmerican classical bassoonist.Needs VoteThe Cleveland Orchestra + +12085237Federico PiccottiClassical violinistNeeds Votehttps://federicopiccotti.comOrchestra dell'Accademia Nazionale di Santa CeciliaHopper Piano Trio + +12099391Francesco CastelluccioFrancesco Stephen CastelluccioAmerican singer and actor, best known as [a107784]. Born on May 3, 1934, in Newark, New Jersey (USA).Needs VoteFrancis CastelluccioFrankie ValliFrankie TylerThe Four SeasonsJersey Artists For MankindThe Wonder Who?The Four LoversFrankie Valley & The TravelersFrankie Valli & The RomansBill Cecere with The New Boys + +12104434Zsófia MészárosZsófia Günther-MészárosClassical cellist.Needs VoteWiener Symphoniker + +12109534Erik MofjellSwedish cellist, double bassist and photographer.Needs VoteGöteborgs Symfoniker + +12114091Roland OrlikClassical violinist.Needs VotePolish National Radio Symphony Orchestra + +12156337Erik BatesNeeds Major Changes + +12165151Jose Eber (2)Hair stylistNeeds Votehttp://www.joseeber.com/JoseebertJosé Eber + +12165481Emma BurgessEnglish clarinetist.Needs VoteRoyal Liverpool Philharmonic OrchestraColin Currie Group + +12174676Léa BirnbaumClassical cellistNeeds VoteOrchestre National Du Capitole De Toulouse + +12178135Keith Hodgson (4)American jazz bassist.Needs VoteHerbie Mann Quartet + +12178459MC van OphemNeeds VoteOutlaw Bros + +12178462WF van OphemNeeds VoteOutlaw Bros + +12182539Martin KühnerGerman hornistNeeds VoteRundfunk-Sinfonieorchester Berlin + +12186970Mariliis TiiterSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +12187924Verena ObermayerGerman cellistNeeds VoteBamberger SymphonikerCello X 12 + +12188761Thomas JordansGerman hornist, born in 1972 in Düsseldorf, GermanyNeeds VoteThomas JordonsStaatskapelle Berlin + +12190243Andre Robles FieldClassical violinistNeeds VoteOrchester Der Deutschen Oper BerlinMetamorphosen Berlin + +12190249Annette Köhler (3)Annette Köhler is a German classical violinist.Needs VoteStaatsorchester StuttgartOrchester der Bayreuther FestspieleStuttgarter PhilharmonikerMetamorphosen Berlin + +12198853Billy Schmidt (5)Billy Schmidt is a German clarinetist and saxophonist.Needs VoteJunge Deutsche PhilharmonieDresdner PhilharmonieSächsische BläserphilharmonieOrchester Der Staatsoperette Dresden + +12207634Michel Rousseau (4)French classical flautist.Needs VoteOrchestre Philharmonique De Radio France + +12207646Ayako KurokiBassonistNeeds Vote黒木綾子Das Mozarteum Orchester Salzburg + +12207649Riccardo TerzoRiccardo Terzo (born 1990) is an Italian bassoonist.Needs Votehttps://www.terzoriccardo.comGewandhausorchester LeipzigEuropean Union Youth OrchestraDas Mozarteum Orchester SalzburgGustav Mahler JugendorchesterOrchestra Giovanile Luigi Cherubini + +12207652Florian SimmaAustrian cellist, born in 1980Needs VoteDas Mozarteum Orchester Salzburg + +12207655Johanna FurrerCellistNeeds VoteDas Mozarteum Orchester Salzburg + +12207658Margit Elisabeth TomasiCellistNeeds VoteDas Mozarteum Orchester Salzburg + +12207661Ursula EgerCellistNeeds VoteDas Mozarteum Orchester Salzburg + +12207664Margarete KnoglerClarinetistNeeds VoteDas Mozarteum Orchester Salzburg + +12207670Maximilian VolbersRecorder and keyboard instrumenatalistNeeds Votehttps://maxvolbers.dehttps://de.wikipedia.org/wiki/Max_VolbersMax VolbersDas Mozarteum Orchester Salzburg + +12207673Samuele BertocciHornistNeeds VoteDas Mozarteum Orchester Salzburg + +12207676Federica LongoOboistNeeds VoteDas Mozarteum Orchester Salzburg + +12207679Ernst LeitnerTrumpet playerNeeds VoteDas Mozarteum Orchester Salzburg + +12207682Johannes Moritz (2)Trumpet playerNeeds VoteDas Mozarteum Orchester Salzburg + +12207685Barnaba PoprawskiPolish violistNeeds Votehttps://barnabapoprawski.comOrchester Der Wiener StaatsoperWiener PhilharmonikerDas Mozarteum Orchester Salzburg + +12207688Götz SchleiferViolistNeeds VoteDas Mozarteum Orchester Salzburg + +12207691Manuel DörschViolistNeeds VoteDas Mozarteum Orchester Salzburg + +12207694Carsten Leonard NeumannViolinistNeeds VoteCarsten NeumannDas Mozarteum Orchester SalzburgDuo Tassai + +12207697Elzbieta PokoraViolinistNeeds VoteDas Mozarteum Orchester Salzburg + +12207700Enikö Agnes DomonkosViolinistNeeds VoteDas Mozarteum Orchester Salzburg + +12207703Irene Castiblanco BricenoViolinistNeeds VoteDas Mozarteum Orchester Salzburg + +12207706Johannes BiloViolinistNeeds VoteDas Mozarteum Orchester Salzburg + +12207709Riro MotoyoshiViolinistNeeds VoteDas Mozarteum Orchester Salzburg + +12207712Romana RauscherViolinistNeeds Votehttp://www.salzburgvioline.comDas Mozarteum Orchester Salzburg + +12207781Brigitta BürgschwendtnerDouble bassistNeeds VoteDas Mozarteum Orchester Salzburg + +12210892Thomas Gautier (2)French violinist.Needs VoteOrchestre Philharmonique De Strasbourg'Accroche Note + +12233221Yuval ShapiroIsraeli trumpeter.Needs Voteיובל שפיראIsrael Philharmonic Orchestra + +12240514Al King (16)Trumpeter, cornetist, and vocalist active from the 1920s to the 1940s.Needs VoteFreddy Martin And His OrchestraBob Crosby And His OrchestraVaughn Monroe And His OrchestraCalifornia RamblersBenny Meroff And His OrchestraBerlyn Baylor And His Orchestra + +12246103Niels Collins CoppalleClassical bassoon instrumentalistNeeds VoteNiels Collins-CoppalleLes Folies FrançoisesLes Paladins + +12253357SooEun LeeSoo Eun LeeSoo Eun Lee is a Korean violinist, now based in Germany.Needs VoteMünchner PhilharmonikerRadio-Sinfonieorchester StuttgartSWR SymphonieorchesterRosenstein String Quartet + +12258205Robert IssellViolinist. Originally from Auckland, New Zealand. He moved to London and became 1st violinist with the Royal Philharmonic Orchestra. In the 1990's he returned to Auckland. Died Aug. 5, 2017.Needs Votehttps://www.ayo.org.nz/1460-2/https://notices.nzherald.co.nz/nz/obituaries/nzherald-nz/name/robert-issell-obituary?id=43693362Robert IsselRoyal Philharmonic Orchestra + +12271093Екатерина ВалиулинаЕкатерина ВалиулинаEkaterina Valiulina is a Russian violinist. +Ekaterina plays the violin by [a6078494].Needs Votehttps://meloman.ru/performer/ekaterina-valiulina/https://www.mosconsv.ru/ru/person.aspx?id=33738https://meloman.ru/performer/ekaterina-valiulina/Orchestra Della Radio Televisione Della Svizzera Italiana + +12281812Christian BischofGerman organistNeeds Votehttps://christianbischof.de/Regensburger Domspatzen + +12282586Mario SarrechiaBelgian harpsichordist born 1988Needs Votehttp://www.mariosarrechia.com/Mario SarecchiaLa Petite Bande + +12296500Sasha CalinOboistNeeds VoteDas Mozarteum Orchester Salzburg + +12303412Franz Meiswinkel (2)Franz Meiswinkel (4 October 1930 — 29 June 2006) was a German classical violinist.Needs VoteOrchester Des Nationaltheaters MannheimOrchester der Bayreuther Festspiele + +12312847Amal GochenourClassical flautistNeeds VoteBaltimore Symphony Orchestra + +12312853James FerreeHornist.Needs VoteBaltimore Symphony Orchestra + +12313678Richard Simon (6)American violinist from New York City, member of the [a327356] from 1965 to 1997. He was married to his colleague [a473440]. Richard Simon died in February 2002 in New York City.Needs VoteNew York PhilharmonicPhilharmonia String Quartet (2) + +12315820Thomas Lefebvre (4)Classical Viola playerNeeds VoteOrchestre National De L'Opéra De Paris + +12330814Jesse ClevengerHorn playerNeeds VoteSan Francisco SymphonyThe Rice Horn Crew + +12330847Adam WuClassical violinist.Needs VoteBaltimore Symphony Orchestra + +12330877MuChen HsiehTaiwanese classical violinist.Needs VoteThe Philadelphia OrchestraHouston Symphony Orchestra + +12346648Laurence HoltCello playerNeeds VoteRoyal Philharmonic Orchestra + +12346651Michael Wright (28)Classical clarinet playerNeeds VoteRoyal Philharmonic Orchestra + +12346654David Broughton (3)Double bass playerNeeds VoteRoyal Philharmonic Orchestra + +12346657Neil Watson (13)Double bass player.Needs VoteRoyal Philharmonic Orchestra + +12346660Peter Hodges (3)Double bass playerNeeds VoteRoyal Philharmonic Orchestra + +12346669Jonathan RookeClassical horn player. + +Possibly the same as [a=John Rooke].Needs Votehttps://www.hitchinsymphony.org.uk/Soloists/jonathan-rookeRoyal Philharmonic Orchestra + +12346672Christopher Cole (7)Viola playerNeeds VoteRoyal Philharmonic Orchestra + +12346675Georgina PayneViola playerNeeds VoteRoyal Philharmonic Orchestra + +12369484Harry BasonEarly jazz pianist.Needs VoteJean Goldkette And His Orchestra + +12369496Red GinslerAmerican jazz trombone player.Needs VoteJean Goldkette And His Orchestra + +12369499Harold George (2)American early jazz bassist.Needs VoteJean Goldkette And His OrchestraGeorge Hamilton And His Music Box Music + +12371179Shelly OrganClassical bassoonistNeeds VoteShelley OrganLondon Symphony OrchestraPhilharmonia Orchestra + +12393736Maurizio Augusto BenomaClassical percussionistNeeds VoteVenice Baroque Orchestra + +12402631Annie GardViolinist born in AustraliaNeeds Votehttps://www.anniegard.com/Orchestra Of The AntipodesThe English ConcertFalse Consonance + +12404476Daniel McKelwayAmerican classical clarinetist.Needs VoteThe Cleveland Orchestra + +12409645Rickard CollinBass vocalistCorrectRadiokören + +12421945Răzvan PopescuRăzvan Popescu (born 1987) is a Romanian double bassist.Needs VoteStaatskapelle DresdenDresdner PhilharmonieStaatsphilharmonie Nürnberg + +12443983Jung-Min Amy LeeClassical violinist.Needs VoteAmy LeeThe Cleveland Orchestra + +12443989Paul KushiousAmerican classical cellist.Needs VoteThe Cleveland Orchestra + +12447598Laurence KetelsLaurence Ketels-DufourFrench classical violinist.Needs VoteOrchestre De L'Opéra De Lyon + +12474925Johnny TeyssierFrench-American clarinettist.Needs VoteThe Colburn OrchestraDR SymfoniOrkestret + +12476329Lucie MinaudierSoprano vocalistNeeds Votehttps://www.instagram.com/lucieminaudier/?hl=deChoeur de Chambre de NamurInalto + +12476332Maud Bessard-MorandasFrench Soprano vocalistNeeds Votehttps://maudbessard-morandas.com/Choeur de Chambre de Namur + +12485716Stefan BalleGerman classical violinist, born in Stuttgart in 1966.Needs VoteStuttgarter Philharmoniker + +12495763Nicolò DottiItalian oboistNeeds VoteOrchestra Di Padova E Del VenetoAccademia Dell'AnnunciataEnsemble Il Mosaico + +12502411Xun KimClassical violinistNeeds VoteLa Petite Bande + +12506887Valery ToenesClassical vocalistNeeds VoteSchola Antiqua + +12520864Joachim HantzschkHans-Joachim HantzschkJoachim Hantzschk (born 1929) is a German violinist and former Professor of Violin at the [l512906].Needs VoteGewandhausorchester LeipzigRundfunk-Sinfonieorchester BerlinHantzschk-Quartett + +12533578Thomas WightmanThomas Albert WightmanClassical bassoonist and bassoon teacher. +Former member of the [a=London Symphony Orchestra] (1942-?)Needs VoteLondon Symphony OrchestraThe University Of Adelaide Wind Quintet + +12541175Thomas Grote (2)Thomas Grote (born 1956) is a German violinist.Needs VoteOrchester Der Deutschen Oper BerlinDas Folkwang-KammerorchesterBach-Collegium Berlin + +12545627Stéphane SuchanekFrench classical oboist.Needs VoteOrchestre Philharmonique De Radio France + +12557360Dominika FehérHungarian violinistNeeds VoteDominika FeherOrchestra Of The Age Of EnlightenmentThe MozartistsApollo Baroque Consort + +12582224Michel FresnayNeeds Major Changes + +12585170Stephan SkibaStephan Skiba is a German violinist. He's married to [a8465073].Needs VoteStefan SkibaRegensburger DomspatzenBadische Staatskapelle + +12612053Grazina SonnakGrazyna Maria SonnakViola player.Needs VoteOrquesta Sinfónica de RTVE + +12612062Marta JareñoMarta Jareño LicerasSpanish viola player.Needs VoteOrquesta Sinfónica de RTVE + +12612896Hannah Dienes-WilliamsBritish-Newzealandian soprano vocalist, daughter of [a7114999].Needs VoteThe Choir Of Clare College + +12638270Alison RozarioClassical violinist.Needs VoteThe Academy Of Ancient Music + +12640295Heinz HankeHeinz Hanke (13 April 1941 - 13 January 2013) was an Austrian violinist.Needs VoteDie Wiener SängerknabenOrchester Der Wiener StaatsoperWiener PhilharmonikerTonkünstler OrchestraSeifert String Quartet + +12650189Euchar GravinaEuchar Gravina (b. 1994) is a composer and artistic director from Malta based in London.Needs Votehttps://www.euchargravina.com/London Symphony Chorus + +12662006Christian Koller (3)Tenor vocalist and composer.Needs Votehttps://www.linkedin.com/in/christian-koller-743137127/Westminster Williamson VoicesThe Same Stream + +12664073Frank Huang (4)Frank Xin HuangClassical violinist, born September 5, 1978 in Beijing, China. Currently the concertmaster of New York Philharmonic since 2015.Needs Votehttps://en.wikipedia.org/wiki/Frank_Huanghttps://nyphil.org/about-us/artists/frank-huangNew York PhilharmonicHouston Symphony OrchestraNew York Philharmonic String Quartet + +12686288Marcin Mazurek (2)Polish classical violinist.Needs VoteOrkiestra Symfoniczna Filharmonii Narodowej + +12686351Stefan Tischler (2)Stefan Tischler is a German tuba player.Needs VoteBayerisches StaatsorchesterSymphonie-Orchester Des Bayerischen RundfunksEssener PhilharmonikerNoPhilBrass + +12711029Björn AndresenGerman hornist, born in 1971 in Kiel.Needs VoteSinfonieorchester MünsterDeutsche Kammerphilharmonie BremenEmbrassy + +12715697Joshua Barton (2)Treble VocalistNeeds VoteThe Choir Of Christ Church CathedralRainbow Kids Children's Choir + +12730361George Goad (2)Trumpet playerNeeds VoteSaint Louis Symphony OrchestraMSBOA All-State HS Band & Orchestra + +12731453Sandrine Pastor-CavalierFrench classical clarinetistNeeds VoteOrchestre De L'Opéra De LyonEnsemble Agora (2) + +12733676Johannes LamotkeClassical horn player, born in 1985 in Cologne, Germany.Needs VoteBerliner Philharmoniker + +12749567Tanner TanyeriAmerican classical percussionist from Madison, Wisconsin.Needs VoteThe Cleveland Orchestra + +12752039Michelle BühlerMake-up artist, mostly known for her work in the motion picture industry.Needs Votehttps://www.imdb.com/name/nm0127273/Michele BuhlerMichelle Buhler + +12770792Katrin Hoffmann (2)German bassoonist. Studied with Frank Dietzelt and [a=Klaus Thunemann]Needs VoteBayerisches Staatsorchester + +12770798Gerhard ReuberGerman horn player. Born 1960. Studied with [a=Theo Molberg] and [a=ERich Penzel]Needs VoteOrchester Des Nationaltheaters MannheimGürzenich-Orchester Kölner Philharmoniker + +12773720Rosmarie Schmid-MünsterGerman harpistNeeds VoteBamberger SymphonikerDebussy Trio München + +12777146Irving Manning (2)Violist based in California +He was a member of [a=Los Angeles Philharmonic Orchestra] from 1956 until his retirement in 1994 (age 78).Needs VoteLos Angeles Philharmonic OrchestraThe Baroque String Quartet + +12781169Randall Montgomery (2)Tuba player. Needs VoteNew World SymphonyRochester Philharmonic OrchestraHuntington Brass Quintet + +12782858Robbie AngelucciNeeds Major Changes + +12794798Nathalie SchmalhoferNathalie Schmalhofer is a German-Canadian violinist.Needs VoteGewandhausorchester Leipzig + +12796418Barbora ValečkováClassical violinist.Needs VoteBára ValečkováWiener Symphoniker + +12811418Armin Berger (3)Classical hornist.Needs VoteWiener Symphoniker + +12826184Joshua Peters (3)Classical violinist.Needs VoteOrchestre symphonique de Montréal + +12831437Paolo Rossi (14)Classical percussionist.Needs VoteOrchestra dell'Accademia Nazionale di Santa Cecilia + +12832199Joshua BattyBritish born flautist.Needs Votehttps://www.sydneysymphony.com/musicians/joshua-battySydney Symphony Orchestra + +12834536Jenny Cassidy (2)Alto vocalistNeeds VoteGabrieli Consort + +12834539Kathryn CookeAlto vocalist.Needs VoteGabrieli Consort + +12835874Florencia GómezClassical traverso flautist from Salta, ArgentinaNeeds Votehttps://www.florenciagomez.nl/Musica AmphionDas Neue Mannheimer Orchester + +12849854Miguel Franco (5)Miguel Franco GarcíaSpanish contrabass player.Needs VoteOrquesta Sinfónica de RTVE + +12862853Nathan Hughes (4)Classical oboist.Needs VoteMinnesota Orchestra + +12876056Vlad CrosmanClassical Bass & Baritone vocalistNeeds VoteVlad Catalin CrosmanLe Concert SpirituelChoeur de Chambre de NamurLe Poème HarmoniqueLes Talents LyriquesLes Épopées + +12880913Johan VermeerDutch bass vocalist.Needs VoteCappella AmsterdamLaurens Collegium Rotterdam + +12880919Jelle LeistraDutch tenor vocalist and conductor.Needs Votehttp://www.jelleleistra.nl/Cappella Amsterdam + +12892337Samuel LutzkerSamuel Lutzker is a German cellist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksQuinteto Ángel + +12892904Kinga GáborjániHungarian classical cello and viola da gamba playerNeeds Votehttps://www.facebook.com/kinga.gaborjaniKinga GaborjaniThe English Baroque SoloistsLa Nuova MusicaArcangeloThe Harmonious Society Of Tickle-Fiddle GentlemenSpiritato! + +12900053Katharine HamiltonSoprano vocalist.Needs VoteGabrieli Players + +12901805Martina MiedlMartina Miedl (born 27 April 1996) is an Austrian violinist.Needs VoteOrchester Der Wiener Staatsoper + +12921974Yaroslava TrofymchukClassical cellist, also credited as photographerNeeds VotePhilharmonia Orchestra + +12923282Pascal DeuberSwiss classical hornist, born in 1992 in Rheinfelden.Needs Votehttps://pascaldeuber.ch/Symphonie-Orchester Des Bayerischen RundfunksPhilharmonisches Staatsorchester HamburgSinfonieorchester Wuppertal + +12923345Elin SkorupElin Maria SkorupSwedish classical soprano vocalist, born on 13 August 1979.Needs Votehttps://www.elinskorup.se/https://goodcompany.se/portfolio_page/elin-skorup/Radiokören + +12927293Julita SmoleńPolish classical violinist.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +12949803Florian SchuegraffFlorian SchuegrafFrench tuba playerNeeds VoteFlorian SchuegrafOrchestre Philharmonique De Radio FranceParis Brass BandHauts-de-France Brass Band + +12961407Robert FrankeGerman tenor vocalist.Needs VoteRundfunkchor Berlin + +12961422Judith LöserClassical alto vocalist.Needs VoteRundfunkchor Berlin + +12962133Andreas WeigleGerman classical cellist, born in 1978 in Neubrandenburg .Needs VoteRundfunk-Sinfonieorchester Berlin + +12962139Stefanie RauGerman classical double bassist, born in 1964 in Ludwigsburg.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksRundfunk-Sinfonieorchester Berlin + +12962142Felix HetzelFelix Hetzel de FonsekaAustrian classical hornist, born in 1976 in Vienna.Needs VoteFelix Hetzel de FonsekaRundfunk-Sinfonieorchester Berlin + +12962157Elizaveta B. ZolotovaClassical violist.Needs VoteRundfunk-Sinfonieorchester Berlin + +12962160Emilia MarkowskiClassical violist.Needs VoteRundfunk-Sinfonieorchester Berlin + +12962169Marina BondasUkrainian classical violinist, born in 1979 in Kiev and moved to Germany in 1992.Needs VoteRundfunk-Sinfonieorchester Berlin + +12962172Susanne BehrensGerman classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +12962175Susanne HerzogGerman classical violinist.Needs VoteRundfunk-Sinfonieorchester Berlin + +12962187Enrico PalascinoItalian classical violinist, born in 1982 in Turin.Needs VoteRundfunk-Sinfonieorchester Berlin + +12964710Peter Pfeifer (5)German classical clarinetist.Needs VoteRundfunk-Sinfonieorchester Berlin + +12966240Bianca ReimClassical soprano vocalist.Needs VoteRundfunkchor Berlin + +12966279Holger Marks (2)Holger Marks-SimonisGerman tenor vocalist.Needs VoteRundfunkchor Berlin + +12986058Laurentiu DinkaClassical violinist.Needs VoteSonare Quartet + +12991110Maxim BrilinskyMaxim Brilinsky (born in Lviv, Ukraine) is a classical violinist.Needs Votehttp://www.brilinsky.comOrchester Der Wiener StaatsoperWiener PhilharmonikerHofmusikkapelle Wien + +13019196Martin Dörfler (2)CellistNeeds VoteStuttgarter Philharmoniker + +13033983Joshua PalagyiBass vocalist.Needs VoteWestminster Williamson VoicesThe Same Stream + +13036959Asbjørn FinessNorwegian violist, violinist and music teacher. Born 1909, died 1997 in San Francisco. Was employed at San Francisco Symphony Orchestra from 1949, and also played with movie orchestras in Hollywood.Needs VoteSan Francisco SymphonyKringkastingsorkestretDen Norske Strykekvartett + +13047903Lorena (24)Female Italian singer.Needs VoteI Cantori Moderni di Alessandroni + +13047966Stéphane LoyerFrech bass trombone player. Settled in Spain since 1994.Needs VoteOrquesta Sinfónica de RTVEThe Sir Alligator's Company + +13073844Joseph Ott (2)Needs Major Changes + +13073847Alfredo Lopez (2)Needs Major Changes + +13073853Wil Roberts (2)Needs Major Changes + +13073856Daniel Donnelly (3)Needs Major Changes + +13073859Gary Wolfe (3)Needs Major Changes + +13073862Paul Wilson (63)Needs Major Changes + +13073865Ronald RoachNeeds Major Changes + +13073868Ronnie CarangeloNeeds Major Changes + +13073871James ArentNeeds Major Changes + +13073874Alan CowdellNeeds Major Changes + +13073877Brian Brock (2)Needs Major Changes + +13073880Zuma Press, Inc.Photo agency, founded by Scott Mc Kiernan in 1993. + +See also [l2741861] (label) and [a11165900] (artist)Needs Votehttps://zumapress.com/aboutzuma/overview.html + +13073883Ed Wynn (3)Needs Major Changes + +13073886Morgan Winters (3)Needs Major Changes + +13073889Aaron Gordon (5)Needs Major Changes + +13073892Andy Tyler (3)Needs Major Changes + +13073895BB CrossNeeds Major Changes + +13073898Bobby Hudson (7)Needs Major Changes + +13073901Brad Sharp (3)Needs Major Changes + +13073904Brandon BrighamNeeds Major Changes + +13073907Jason Martinez (6)Needs Major Changes + +13073910Ray Reynolds (6)Needs Major Changes + +13073913Ronen BeyNeeds Major Changes + +13073916Sandra ChrissNeeds Major Changes + +13073919Val Martinez (3)Singer. Son of [a2640360]Needs Vote + +13077750Luke Batteson DalpiazMember of the boy choir [a93945] from South London, UKNeeds VoteLibera + +13077753Nathan Slater (2)Member of the boy choir [a93945] from South London, UKNeeds VoteLibera + +13077756Morgan WiltshireMember of the boy choir [a93945] from South London, UKNeeds VoteLibera + +13077759Mitchel GuyMember of the boy choir [a93945] from South London, UKNeeds VoteLibera + +13077762Joseph Hill (8)Member of the boy choir [a93945] from South London, UKNeeds VoteLibera + +13079043Ingo ReuterGerman bassoonistNeeds VoteStaatskapelle Berlin + +13083252Zia RichterHornistNeeds VoteZia Richter-SonnenBläsersolisten Der Deutschen Kammerphilharmonie BremenDeutsche Kammerphilharmonie Bremen + +13085622Andrew GoodlettDouble bassist.Needs VoteOrchestre symphonique de Montréal + +13087053Jennifer Mc LeodNeeds VoteJenifer Mc LeodJennifer McLeodJennifer McLeod SneydBläsersolisten Der Deutschen Kammerphilharmonie Bremen + +13087290Friedrich GumpertFriedrich Adolph Gumpert (* 27. April 1841 in Lichtenau (Thüringen) +† 31. Dezember 1906 in Leipzig) war ein deutscher Hornist und Professor am Konservatorium Leipzig. +Carl Reinecke holte ihn nach Leipzig, er war vom 1. Oktober 1864 bis 1899 Solohornist im Gewandhausorchester zu Leipzig. +1896 war er Mitbegründer des Gewandhausbläserquintetts. +Am 15.12.1866 spielte er in einem Kammermusikabend im Gewandhaus von Johannes Brahms das Horntrio op.40 zusammen mit Clara Schumann und Ferdinand David. Needs VoteFriedrich GumbertGewandhausorchester Leipzig + +13095639Silke MaurerSilke Maurer is a German classical violinist.Needs VoteStuttgarter Philharmoniker + +13098087James Tweedie (3)Treble Vocalist (Choirister)Needs VoteThe London Oratory School ScholaThe Choir Of Westminster Abbey + +13101804Thomas MachtingerClassical oboist.Needs VoteWiener Symphoniker + +13119771Stephen MollicaTenor vocalist.Needs VoteChicago Symphony Chorus + +13120647Matthias Konrad (4)Trombonist from AmsterdamNeeds Votehttps://www.matthiaskonrad.com/matthias.htmlKarl Matthias KonradThe Glenn Miller OrchestraBuJazzOThe RamblersNew Generation Big BandToro EnsambleBernie's LoungeTetzepiThe Konrad Koselleck Big BandDual City Concert BandThe BvR Flamenco Big BandHolland Bigband + +13123494Gérald RollandFrench cornetist, trumpeterNeeds VoteOrchestre Philharmonique De Monte-Carlo + +13130427Margaret Cowen (2)English classical violinist and founding member of the English Chamber Orchestra (1930-2024).Needs VoteEnglish Chamber Orchestra + +13145595Marietta FeltkampMariëtta FeltkampDutch classical double bassistNeeds VoteMariëtta FeltkampConcertgebouworkestEbony Band + +13156377Dorothee AppelhansDorothee Appelhans (born 1994) is a German violinist. She's the sister of [a5857696].Needs VoteGewandhausorchester Leipzig + +13160415Dick Morgan (7)1920s era jazz banjo and guitar player.Needs VoteBen Pollack And His OrchestraJimmy McHugh's BostoniansBen's Bad BoysMills Musical ClownsBenny Goodman's BoysPaul Mills And His Merry Makers + +13166829Rainer EudeikisAmerican classical cellist.Needs Votehttps://www.rainereudeikis.com/San Francisco Symphony + +13167720James V. CandidoAmerican classical bassist and contrabassist. He was active there from 1966 to 1999.Needs VoteNew York Philharmonic + +13167726Judith GinsbergAmerican classical violinist, active for the New York Philharmonic from 1984 to 2014. She is married to [a1787194].Needs VoteNew York Philharmonic + +13173429Solistenknaben Der Regensburger DomspatzenAn ad hoc group of several (unnamed) boy soloists from the [a=Regensburger Domspatzen] Choir.Correct2 Knaben Des Regensburger Domchores2 Knaben-Solostimmen Des Regensburger DomchorsChœur De Garçons De RatisbonneDrei Regensburger DomspatzenKnaben Des Regensburger DomchorKnaben Des Regensburger DomchorsKnabenstimmen Des Regenburger DomchoresKnabenstimmen Des Regensburger DomchoresRegensburger Domspatzen + +13189440Peter DorfmayrClassical hornist.Needs VoteWiener Symphoniker + +13203447Julia KahnViolinist.Needs VoteThe Academy Of Ancient Music + +13203453Silje ChenViolinist.Needs VoteThe Academy Of Ancient Music + +13203456Kinga UjaszásziViolinist.Needs VoteThe Academy Of Ancient Music + +13215483Alan Mitchell (6)Classical viola player.Needs VoteThe Academy Of Ancient Music + +13219722Sean WatlandClassical tenor vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +13230477Ian Prichard (2)American bass vocalistNeeds VoteChicago Symphony ChorusWilliam Ferris ChoraleBella VoceConstellation Men’s Ensemble + +13230486Ryan Townsend StrandAmerican tenor vocalistNeeds Votehttps://www.ryantownsendstrand.com/learnChicago Symphony ChorusWilliam Ferris ChoraleGrant Park ChorusBella VoceConstellation Men’s Ensemble + +13230531Matthew Brennan (6)American Bass & Baritone vocalistNeeds VoteChicago A CappellaChicago Symphony ChorusGrant Park ChorusConstellation Men’s Ensemble + +13231437Alicia KoelsAmerican classical violinist.Needs VoteThe Cleveland Orchestra + +13231440Katherine BormannClassical violinist.Needs VoteThe Cleveland Orchestra + +13262559Herrenchor Des Chors Der Deutschen Oper BerlinNeeds VoteHerrenchor D. Chors D. Deutschen Oper BerlinChor Der Staatsoper Berlin + +13280700Jan SnakowskiPolish classical violist, Needs Votehttps://jansnakowski.com/Orchestra Della Radio Televisione Della Svizzera ItalianaSinfonieorchester St. Gallen + +13286694Mitglieder Des Rundfunk-Sinfonie-Orchesters LeipzigMembers of the former GDR radio symphony orchestra, LeipzigNeeds VoteRundfunk-Sinfonie-Orchester Leipzig + +13291392Otto KronthalerClarinetistNeeds VoteDeutsche Kammerphilharmonie BremenTrio Giocoso + +13310601Bettina AustGerman classical clarinetist.Needs Votehttp://www.bettina-aust.de/https://de.wikipedia.org/wiki/Bettina_AustGewandhausorchester LeipzigAugsburger Philharmoniker + +13350027Paul BialekGerman violinistNeeds VoteCollegium VocaleGöttinger Barockorchester + +13352898Nicholas SchwartzAmerican bassist and cellistNeeds Votehttps://www.nicholassantangeloschwartz.com/Nicholas_Santangelo_Schwartz,_double_bass_and_cello/Home.htmlNicholas Santangelo SchwartzNicky SchwarzConcertgebouworkestStift Festival OrchestraOyster Duo + +13363629Ron SelkaClassical clarinetist.Needs Votehttps://www.ronselka.com/Israel Philharmonic Orchestra + +13373997Matthew Carter (4)Treble/tenor vocalist.Needs VoteWestminster Cathedral ChoirContinuo Arts Symphonic Chorus + +13374624Jonathan Rees (4)British cellist and viol player.Needs Votehttps://www.jonathanreescello.co.uk/The SixteenThe Academy Of Ancient MusicThe Mozartists + +13402989noisehzJaiden Morgan MacintoshExperimental noise & field recordings project of [a=Jaiden (5)]. Active from 2023 to 2024, and revived in 2025.Needs Votehttps://noisehz.bandcamp.com/DJ Noisehz💊. (7)Im BackUBIS𐌱𐌰𐍃𐌹𐌳𐌹𐍃𐍂Color StatusJoshua DonnellyQ#0_0Tsuki (5)Tribute (21)ᐛ⠳⠳⡹บ๕ᐂ⢗ΔΔ⡣⣟ᐛᐛLake Michigan (2)Digital Life (2)********************___ TurntableRobloxSk8er2002⊂(´・◠・⊂ )∘˚˳°&student494Heaven's Wall Of SoundTaumatawhakatangihangakoauauotamateaturipukakapikimaungahoronukupokaiwhenuakitanatahuemetraJaiden (5)DJ AwawaField Recordings Artist))))))))))))))))))))... / ... / ... / ... / ... / ... / ... / ... /Real Photo Of The Big Bang 13.8 Billion Years AgoBnuyThe Bbbbbbbbbbbbbbbbbbbb☎️Pill (8)QueryJMM (3)Untitled Noise ProjectTheresa PradaWhite !! NoisefuckfuckkillkillDark Orange FuzzboxInstall (3)Control V (3)Lil USB X(๑°꒵°๑)・*♡♡♡♡♡♡♡♡♡♡7 (22)MurrzbowBowl Of Heaven1 Second ArtistUnvarious ArtistThat's The Pop Band8767456798324674397524572852252652The CogIdk What Alias To Use For This Onex❤️New Crystals HorizonApril LeppingHelga BolzFloy NistlerLeatrice DressEna SaxbyRuthanne ChumleyChante CanipeTammera BrasfieldArlie GriseRosalva WorthingShawnna BlierHarold PrinziGiuseppina GonsoulinEdgar TronLee JolerWillian LaudemanGustavo SoiferSiu StampNora ShadwickPearle LockieShayna RapaloEdith RocherLashaun PawlusiakStan LuickReatha SpellaneCaleb KalarKip ToranColin UriarteBrendon OgerEusebia ReingTruman RailsbackRodolfo DiscipioStella FavieriJenni DetwilerSarina PaladinMalcolm GarterWillodean RobisonRandell GreverCiera StumpoStanton Boon65351040927402069728324489610113425879250414476582322891498869309060601440637729221805879671583118248747533245431490886658618979225503671356025569264157812219719468928851784761479984466520898200831614725604145576359513352150644871484821888341263408189212414865386634887003562106363288195812437200058162052063889357575182516309668563914296677406567497915656845104853400101480841141216749025400478524888657522978335553364094649338720683561913600400682327257540265848135266569997641428153470601981825676581037100065372006532129070980581878217005836335603035428577526589142696024981264494840045819559354839171194592649792295767307757238034524664839984510250631290396616927983813450732374347407103780024417436862024414225779783702338817052529415977432761520818590955050820200971672843966760412452931288095ซากปรักหักพังCD_Do Not Add This To RYM Or DiscogsMiles "Tails" ProwerTiny SoundsMeditatingNull Of Limbo𒄆𒀱𒂝𒀱𒂝𒀱𒂝𒈔𒅒𒇫𒄆𒇫𒄆𒇫𒄆𒇫𒄆𒇫𒄆𒂝𒀱𒂝𒀱𒂝𒅒𒈔𒅒𒇫𒄆𒇫𒄆𒇫𒄆𒇫𒄆𒇫𒄆𒀱𒂝𒀱𒂝𒈔𒅒𒈔𒅒𒈔𒅒Raine (12)E.M.T. (5)DrumbfuckExtra Jumpscares At The EndFuck You I'm Out Of HereMy Brain Might Get Tired By The Time I Get To Track 10Hi MeWe The Best MusicI Already Forgot What Alias I Was Going To Use For This OnePost Nut DepressionThat Last Alias I Did For Track 9 Is Actually GoodPost Traumatic Demon PossessionThat Last One Was AssXanax CumshotAnal PieGruntshitfuckassanalI Used To Unironically Consume Furry Art And Thought I Wasnt A FurryLmao At The Person Adding This To DiscogsBart Simpson BouncingHomoerotic AnalplowI Need A Sip Of Water NowMy Take On EmoviolenceYippiePee Pee Poo Poo Pee Pee Poo PooSebstainerAverage Shitcore ArtistSorry For Yelling But I Cant Unyell NowLord PooLaugh Out Loud You DiedWhat's With The BuzzBurcumWater ArtistCum ObamaDJ Shit (3)Hello Guys, I'm GayGorey Feldman (2)SxxxxPxxLxxxxxxxxxIxxTxxxxxxxxSex WetNamewasterComing Up With New Names SpeedrunShitcompressorFuck A Melody, My Name Is Corey FeldmanFuck UpTrying To Not Give UpCziel ProjecStfu Mom Im Tryna Listen To Noise MusicI Will Regret ThisYou Can Tell I Put Effort Into This AliasEccojam Fuckjam YeahI Need Help ImmediatelyBruh LolThumpthumpthumpthumpthumpWe Are Already At Song 52Now Look At This At A Logical StandpointPercentage (2)This Is What We Have Cum ToLeftrightrightleftThe Yeah People That Go Like YeahThe Amount Of Effort I Put Into This So-called Split Is Probably ConcerningDistortion PanelsSocial Media WarriorWaowThis Is No Longer FunNo Fun Allowed (2)Breakdancing John F. KennedyCompileshitTrack 66Where Did All The Gecs GoHnwSLOPPITHaha Funny Number LolFreddy Fatbear0 SexGays Clan1973 (2)Where Did The Cube Go, What Is That ThingI Think We Are Almost ThereSave As A Shit FileScratch ArtistAir Balloon AliasHelium (20)080 (4)Bored ArtistHshsplititSpsgsghjkfjskhjsfkghjsa1984 (35)The Fourth CuckCuck NestThe Incident Where Max Headroom Hijacked The TV StationNone Of These Names Are GoodGay Furry Furraro10 More To GoTop 10 Reasons Why You Should Become A FurryGaysex TwinkPure ♡ ShitBitconnektVipper Rappper VipppppPoopertonDundadahfuckHeaven Or Hell, You Choose Your AdventureWindowpisserYay We Are Donepure ♡ gazeBlåhaj Noise WallCDRWClaustraSleep (33)PjcaColumn SpaceVideoplaybackj (130).h (2)the mysterious beatle極簡主義是關鍵Gaped Anuses Stretched Out And Filled With SpermOrange Country RoadUntitled (44)CementeTamagokuriRainbow Sparkle Dog Fantasy336k Views • 4 Days AgoLuna KaeVisceral Coprophiliac Ingestion + +13403751Rebecca Hammond (3)British classical bassoonist.Needs VoteThe Academy Of Ancient Music + +13404861David Alonso (7)Horn Player. +[b]Not to be confused with the Spanish drummer, [a1351731].[/b] + +David Alonso was born in Vigo, Spain and started playing the horn at the age of 12. After studying in Karlsruche with Professor [a997682], he passed the soloist exam with honors. At the age of 17, he was appointed principal horn of JONDE (National Youth Orchestra of Spain). A year later, he became a member of the [a863063] and was chosen as Principal Horn. In 1999 he became assistant principal horn of the Galician Symphony Orchestra. In 2000 he was principal horn with the Gustav Malher Youth Orchestra and in the same year he won the position of horn 3/2 of the [a604396], conducted by [a604396]. He was then principal horn of the [a1024263]. In 2001 he won with the Miro ensemble the first prize and the audience prize at the ARD competition in Munich. During his studies, he won the prize for the best horn player in German music schools and also returned to the Sparda Bank Horn Competition. In 2012, he won the ECHO Award for Best Chamber Music Recording of the Year. David Alonso is principal horn at the Palau de les Arts Orchestra in Valaence under the direction of [a538821].Needs VoteSymphonie-Orchester Des Bayerischen RundfunksEuropean Union Youth OrchestraRotterdams Philharmonisch Orkest + +13417737Alexander RoltonClassical cellist.Needs VoteAlex RoltonPhilharmonia OrchestraThe Mozartists + +13420923Joseph CowieClassical double bassist.Needs VoteRoyal Philharmonic Orchestra + +13420926Owen NicolaouClassical double bassist.Needs VotePhilharmonia Orchestra + +13420938Paul StonemanClassical percussionist.Needs VotePhilharmonia Orchestra + +13420944Emanuela ButaRomanian-born classical violinist.Needs VotePhilharmonia Orchestra + +13422561Lisa ViguierLisa Viguier VallgårdaClassical harpistNeeds VoteSveriges Radios Symfoniorkester + +13424337Stefan Reuter (4)Stefan Reuter is a German percussionist and timpanist. He was a member of the [a604396] from 1986 to 2021.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +13435147Kaitlin WildTrumpet playerNeeds VoteLondon Symphony Orchestra + +13493791Gert-Heiko KütaruBass vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +13493794Janari JorroNeeds VoteEstonian Philharmonic Chamber Choir + +13493797Triin SakermaaSoprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +13493800Danila FrantouBelarusian tenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +13493803Joosep TrummTenor vocalist.Needs Votehttps://www.epcc.ee/en/inimesed/joosep-trumm/Estonian Philharmonic Chamber Choir + +13505662Gabriel FaurClassical cellist.Needs Votehttps://www.gabriel-faur.com/Württembergisches Kammerorchester + +13505767Andrei KavalinskiAndreï KavalinskiClassical trumpeter.Needs VoteAndrei KovalinskyOrchestre National De France + +13512916Konstanze FelberGerman violinist.Needs VoteWürttembergisches Kammerorchester + +13533640Gustav NorlanderBass vocalistCorrectRadiokören + +13535416Bonnie Lake (2)Bonnie Josephine LakeAmerican classical flautist who was a member of the Baltimore Symphony Orchestra flute section for 47 years (1957–2004). Prior to BSO, she had been a member of Indianapolis, North Carolina, and Akron Symphony Orchestras. She also taught flute at the Peabody Institute of the Johns Hopkins University (1957–2005) and Goucher College (1962–2000). + +Born: 22 April 1930 in Cleveland, Ohio, USA +Died: 18 February 2018 in Cleveland, Ohio, USANeeds VoteBaltimore Symphony OrchestraNorth Carolina SymphonyAkron Symphony OrchestraIndianapolis Symphony Orchestra + +13535923Ансамбль Солистов Академического Симфонического Оркестра Ленинградской Государственной ФилармонииАнсамбль Солистов Академического Симфонического Оркестра Ленинградской Государственной ФилармонииEnsemble Soloists Academic Symphony Orchestra Of Leningrad State Philharmonic +Soloists Ensemble Of [a343871].Needs VoteEnsemble Of Soloists Of Leningrad Philharmonic OrchestraSolistenensemble Der Leningrader Philharmonikersolistenensemble Der Leningrader PhilharmonikerSoloists Ensemble Of The Leningrad Philharmonic Academic Symphony OrchestraАнсамбль Солистов Академического Симфонического Оркестра Ленинградской ФилармонииАнсамбль Солистов Ленинградской Государственной ФилармонииАнсамбль Солистов Симф. Оркестра Лен. Гос. ФилармонииАнсамбль Солистов Симфонического Оркестра Ленинградской Гос. ФилармонииАнсамбль Солистов Симфонического Оркестра Ленинградской Государственной ФилармонииLeningrad Philharmonic Orchestra + +13540579Wolfgang Engel (4)German contrabass playerNeeds VoteOrchester Der Deutschen Oper Berlin + +13555699Michael DöringerMichael Döringer is a German bassoonist. A member of the [a604396] from 1975 to 2007.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksSinfonieorchester MünsterOrquesta Sinfónica Nacional Del PerúSinfonieorchester WuppertalHofer Symphoniker + +13568155Dylan EdgeViolinistNeeds VoteHallé OrchestraThe Northern Film Orchestra + +13587934Markéta VokáčováCzech classical violinist, born in Plzeň. + +Prague Radio Symphony Orchestra: 2009 - 2014 +The Czech Philharmonic Orchestra: since 2014Needs Votehttps://www.ceskafilharmonie.cz/clenove-orchestru/marketa-vokacova/The Czech Philharmonic OrchestraPrague Radio Symphony Orchestra + +13591711David Lopez IbañezDavid López IbañezClassical violinist.Needs VoteDavid López IbañezDavid López IbáñezPhilharmonia OrchestraExplore Ensemble + +13592086Christina BischoffGerman soprano vocalistNeeds VoteRundfunkchor Berlin + +13592869Simon Stafford (3)Classical violin player.Needs VoteThe English Concert + +13600312Anna-Clara CarlstedtAlto VocalistNeeds VoteRundfunkchor Berlin + +13600315Sabine EyerAlto VocalistNeeds VoteRundfunkchor Berlin + +13600318Zsuszanna Kausz OhláAlto VocalistNeeds VoteRundfunkchor Berlin + +13601278Nicolas KuntzelmannFrench classical countertenor / alto vocalistNeeds VoteLes Arts Florissants + +13602160Stefano CardoStefano Cardo (born 1976) is an Italian clarinettist & basset hornistNeeds Votehttps://bassclarinetwork.com/stefano-cardoOrchestra Del Teatro Alla ScalaStuttgarter PhilharmonikerOrchestra Sinfonica Nazionale Della RAII Solisti Della Filarmonica Della Scala + +13602163Balthasar Hens (2)German clarinettist.Needs Votehttps://www.balthasarhens.de/Stuttgarter Philharmoniker + +13603912Jens HorenburgGerman tenor vocalistNeeds VoteRundfunkchor Berlin + +13608700Kim Young WookKorean native bass vocalistNeeds VoteRundfunkchor Berlin + +13609495Bob HutsellEarly jazz reedistNeeds VoteJean Goldkette And His Orchestra + +13609498Ray Porter (8)Early jazz reedistNeeds VoteJean Goldkette And His Orchestra + +13609501Reggie BylethEarly jazz reedist.Needs VoteJean Goldkette And His Orchestra + +13618663Nimrod KlingDouble bassistNeeds VoteIsrael Philharmonic Orchestra + +13625857Vilém ZemánekConductorNeeds VoteDr. V. ZemánekThe Czech Philharmonic Orchestra + +13642039Franske Van Der WielDutch Alto vocalistNeeds VoteNederlands Kamerkoor + +13642042Bobbie BlommesteijnDutch Soprano VocalistNeeds VoteNederlands Kamerkoor + +13642045Elise Van EsSoprano vocalistNeeds VoteNederlands Kamerkoor + +13654636Higinia ArruéClassical BassoonistNeeds VoteBläsersolisten Der Deutschen Kammerphilharmonie Bremen + +13654642Anne PasemannGerman classical HornistNeeds VoteBläsersolisten Der Deutschen Kammerphilharmonie Bremen + +13656265Richard Field (6)Richard L. FieldAmerican classical violist, born July 21, 1947, and died December 16, 2019.Needs VoteBaltimore Symphony Orchestra + +13671130Amelia MaszonskaAmelia Mirella MaszońskaAmelia Maszońska (born 20 July 1993) is a Polish violinist.Needs VoteTonhalle-Orchester Zürich + +13678888Andrew SandwickBass clarinet player.Needs Votehttps://www.bso.org/profiles/andrew-sandwickBoston Symphony Orchestra + +13678891Jonah EllsworthCellist.Needs Votehttps://www.bso.org/profiles/jonah-ellsworthBoston Symphony Orchestra + +13678894Will ChowCellist.Needs Votehttps://www.bso.org/profiles/will-chowBoston Symphony Orchestra + +13678906Leonardo Vásquez ChacónViolist.Needs Votehttps://www.bso.org/profiles/leonardo-v%C3%A1squez-chac%C3%B3nBoston Symphony Orchestra + +13685374Alison Kelly (5)Soprano vocalist, executive director and co-founder of [a=Chicago Folks Operetta].Needs VoteChicago Symphony Chorus + +13685386Bridget SkaggsMezzo-soprano vocalist.Needs VoteChicago Symphony Chorus + +13707529Dominicus Pisaurensis[b]Dominicus Pisaurensis[/b], or [b]Domenico da Pesaro[/b] (1533, Pesaro — 1575), was a notable Italian maker of harpsichords and other stringed keyboard instruments primarily active in Venice. His early years are unknown; by 1548, Domenico was already an established Venetian maker, as evidenced by a harpsichord with an enharmonic keyboard that he delivered for composer and music theorist [a=Gioseffo Zarlino] (1517—1590). (In their 1994 "Italian Split-Keyed Instruments with <19 Divisions to the Octave" article published in [i]Performance Practice Review[/i] journal, [a=Christopher Stembridge] and [a=Dr. Denzil Wraight] provided archival evidence of the 1566 harpsichord with a 2×8' disposition that also had the enharmonic keyboard.) + +As argued in Wraight's biographical entry for Pisaurensis in the Oxford's [i]Grove Dictionary[/i], there are more extant instruments by him than any other XVI-century maker, with seven harpsichords, seven polygonal virginals, and a clavichord. There are also plenty of misattributed builds with fake inscriptions, likely produced by notorious antique dealer and fraudster Leopoldo Franciolini (1844—1920). Archival evidence shows that Domenico da Pesaro created some hybrid instruments, including the claviorgan at [i]Compagnia dell'Arcangelo Raffaello[/i] confraternity in Florence that once belonged to [a=Galileo Galilei] (1564—1642); composer [a=Giulio Caccini] (1551—1618) and other Compagnia members occasionally performed on it. In 1695, [a=Bartolomeo Cristofori] (1655—1731) restored the instrument.Needs Votehttps://boalch.org/instruments/makerprofile/185http://www.claviantica.com/Publications_files/Pisaurensis_clavichord_files/Pisaurensis_Introduction_files/Introduction.htmhttps://id.smb.museum/object/1106435/vieleckiges-virginalhttps://objektkatalog.gnm.de/objekt/MIR1068https://objektkatalog.gnm.de/objekt/MIR1081Domenicus PisaurensisDomenicus VenetusDominicus Of Venice + +13716034Jean-Marc SavignyFrench baritone vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Savigny-Jean-Marc.htmLe Concert D'Astrée + +13716037Marduk Serrano LopezMexican baritone vocalistNeeds VoteLe Concert D'Astrée + +13716040Thibault DaquinFrench baritone vocalistNeeds VoteLe Concert D'Astrée + +13716049Elizabeth BazFrench soprano vocalistNeeds VoteElisabeth BazLe Concert D'Astrée + +13716052Isabelle RozierFrench soprano vocalist and voice coach.Needs Votehttps://fr-fr.facebook.com/isacoachvocal/Le Concert D'Astrée + +13716055Arnaud Le DûFrench tenor vocalistNeeds VoteChoeur de Chambre de NamurLe Concert D'Astrée + +13716058Tarik BousselmaFrench tenor vocalistNeeds Votehttps://fr.linkedin.com/in/tarik-bousselma-48190bb8Le Concert D'AstréeLes Cris de Paris + +13723018Marcia PeckAmerican classical cellist.Needs Votehttps://www.marciapeck.com/https://web.archive.org/web/20151222213225/https://www.minnesotaorchestra.org/about/who-we-are/musicians-soloists-conductors/orchestra-musicians/320-cello/705-marcia-peckMarica PeckMaricia PeckMarsha PeckMinnesota Orchestra + +13723810Daniel BlazeBritish Organist and Alto vocalist for the Choir of Clare College, CambridgeNeeds VoteThe Choir Of Clare College + +13729498Franz SamohylFranz Samohyl (born April 3, 1912 in Vienna; † June 14, 1999 in Vienna) was an Austrian violinist, concertmaster of the [a696188] and university professor.Needs Votehttps://de.wikipedia.org/wiki/Franz_Samohylhttps://phd.kug.ac.at/fileadmin/03_Microsites/01_Kuenstlerisch_wissenschaftliche_Einheiten/02_Doktorratsschulen/Doktoratsschule_fuer_das_wissenschaftliche_Doktoratsstudium/04_Laufende_Dissertationen/Zetocha_Praes1.pdfOrchester Der Wiener StaatsoperWiener Philharmonisches Streichquartett + +13740991Станислав КортСтанислав Сигизмундович КортStanislav Kort - cello player and conductor. +Real name Solomon Samuilovich Kort +Born in Warsaw (Poland) in 1891. +Cello player. Worked in Warsaw Philharmonic orchestra. In 1920-s he moved to Moscow and worked in Bolshoi Theatre orchestra. Was the member of the first orchestra without a conductor - Персимфанс ([b]ПЕР[/b]вый [b]СИМФ[/b]онический [b]АНС[/b]амбль) (The First Symphonic Ensamble). +With his colleagues from Bolshoi Theatre orchestra organized a small ensemble. With this ensemble, as conductor made a number of records in 1920-s. Worked as the record engineer in [l171265] studio. +In 1933 he was arrested by USSR regime for espionage. Rehabilitated in 2003. +-------------------------------------------- +Родился в 1891 г., Польша, Варшава; еврей; образование высшее; б/п; заключенный. +Арестован 1 ноября 1933 г. +Приговорен: 22 декабря 1933 г., обв.: ст.58-14, шпионаж. +Приговор: 12 лет поражения в правахNeeds Votehttps://ru.openlist.wiki/%D0%9A%D0%BE%D1%80%D1%82_%D0%A1%D1%82%D0%B0%D0%BD%D0%B8%D1%81%D0%BB%D0%B0%D0%B2_%D0%A1%D0%B8%D0%B3%D0%B8%D0%B7%D0%BC%D1%83%D0%BD%D0%B4%D0%BE%D0%B2%D0%B8%D1%87_(1891)https://www.russian-records.com/details.php?image_id=11782&l=russianhttps://smyslpesni.ru/music/%D0%B4%D1%83%D1%85%D0%BE%D0%B2%D0%BE%D0%B9%20%D0%BE%D1%80%D0%BA%D0%B5%D1%81%D1%82%D1%80%2C%20%D0%B4%D0%B8%D1%80%D0%B8%D0%B6%D1%91%D1%80%20%D1%81%D1%82%D0%B0%D0%BD%D0%B8%D1%81%D0%BB%D0%B0%D0%B2%20%D1%81%D0%B8%D0%B3%D0%B8%D0%B7%D0%BC%D1%83%D0%BD%D0%B4%D0%BE%D0%B2%D0%B8%D1%87%20%D0%BA%D0%BE%D1%80%D1%82Корт С. С.С. КортOrkiestra Symfoniczna Filharmonii NarodowejBolshoi Theatre OrchestraОркестр-джаз Под Управлением С. КортаДуховой Оркестр Под Управлением Станислава Корта + +13759543Miguel Gonçalves SilvaPortuguese tenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +13759546Ryan Adams (14)Tenor vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +13761295Wladimir WeimerFrench classical bassoonist.Needs VoteOrchestre Philharmonique De Radio France + +13761298Bruno FayolleFrench classical hornist.Needs VoteOrchestre Philharmonique De Radio France + +13787515Ramblers-yhtyeNeeds Major Changes + +13809970Erhard LitschauerErhard Litschauer is an Austrian violinist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerOriginal Wiener Deutschmeister Schrammeln + +13820065Sunghee ChoiViolistNeeds Votehttps://www.linkedin.com/in/sunghee-choi-96ba2a7b/Chicago Symphony Orchestra + +13865176Kyle MacCorquodaleScottish bass trombone player.Needs VoteHallé Orchestra + +13865182Billy Cole (11)William ColeClassical double bassist.Needs VoteHallé OrchestraUlster Orchestra + +13865188Natasha Armstrong (2)Classical double bassist.Needs VoteHallé Orchestra + +13865200Julian PlummerClassical horn player.Needs VotePlummerHallé OrchestraHallé Brass + +13865203Richard BournClassical horn player.Needs VoteHallé Orchestra + +13865215Rosalyn DaviesTrombone player.Needs VoteHallé Orchestra + +13865218Kenneth Brown (15)Classical trumpeter.Needs VoteHallé Orchestra + +13865230Eva PetrarcaClassical violinist.Needs VoteHallé Orchestra + +13865233Helen BridgesClassical violinist.Needs VoteHallé Orchestra + +13865248Christine DaveyClassical violinist.Needs VoteHallé Orchestra + +13867819George Alexander (18)Classical violist.Needs VoteLondon Philharmonic OrchestraHallé Orchestra + +13869493Jack Grimm (3)American trombonistNeeds VoteThe Philadelphia OrchestraConstellation Big Band + +13871239LSO Wind EnsembleWind ensemble of the [a=London Symphony Orchestra]. + +Please, consider also the following orchestra's sub-groups: +- [a=London Symphony Orchestra Chamber Group] +- [a=Members Of The London Symphony Orchestra] +- [a=London Symphony Orchestra Strings] +- [a=London Symphony Orchestra Brass] +- [a=London Symphony Orchestra Chamber Ensemble] +- [a=LSO String Ensemble] +- [a=LSO Percussion Ensemble]Needs VoteBläserensemble Des London Symphony OrchestraBläserensemble Des London Symphony OrchestrasLondon Symphony Orchestra Wind EnsembleWind Ensemble Of The London Symphony OrchestraAndrew MarrinerChris Richards (3)Rachel GoughTimothy Jones (3)Olivier StankiewiczJuliana KochLondon Symphony Orchestra + +13874125Martin HöflerGerman violinist and violist.Needs VoteStuttgarter Philharmoniker + +13880668Kelton KochKelton Koch is an American trombonist.Needs VoteOrchester Der Wiener StaatsoperWiener PhilharmonikerNew World Symphony Orchestra + +13929277Judith MengGerman classical trombonist from Öhringen (Stuttgart)Needs VoteRundfunk-Sinfonie-Orchester LeipzigStuttgarter PhilharmonikerCapricornus Ensemble Stuttgart + +13959973Boaz MeirovitchIsraeli classical flautist, born in 1972.Needs VoteIsrael Philharmonic Orchestra + +13959976Ziv SteinIsraeli classical percussionist, born 1992 in Tel Aviv.Needs VoteIsrael Philharmonic Orchestra + +13959982Yigal MeltzerIsraeli classical trumpeterNeeds VoteIsrael Philharmonic Orchestra + +13959985Matan NoussimovitchIsraeli classical violist, born 1990 in Haifa.Needs VoteIsrael Philharmonic Orchestra + +13959988Saida Bar-Levסעידה ברלבIsraeli classical violinist born in Switzerland.Needs VoteIsrael Philharmonic Orchestra + +13981192José AlamáJosé Alamá IbáñezSpanish bass/contrabass player.Needs VoteJ. AlamáOrquesta Sinfónica de RTVEErrantes (3) + +13982041Hannah MackenzieEnglish trumpeter.Needs VoteRoyal Liverpool Philharmonic Orchestra + +13987564Jennifer CearnsSoprano singer.Needs Votehttps://www.jennifercearns.com/Jenny CearnsLondon Voices + +14007907Cellists Of The Staatskapelle BerlinNeeds VoteJohanna HelmAlexander Kovalev (3)Claire Sojung HenkelIsa Von WedemeyerNikolaus PopaTeresa BeldiStaatskapelle Berlin + +14008099George UngerAmerican violinist. Born: Jan. 4, 1892, Denver CO. Died: November 1, 1952, Oklahoma City, OK. Unger played in the Denver Symphony with [a299946], and was with [a341395] for about one year, from late July 1921 to late July 1922. He later led and played with the Oklahoma City Symphony from 1937 - 1952.Needs Votehttps://www.findagrave.com/memorial/214657755/george-ungerPaul Whiteman And His Orchestra + +14012263Manuel ArrutiSpanish tenor vocalist, born in San Sebastián. Soloist of [a1169517].Needs VoteOrfeón Donostiarra + +14017183Nels SassersonNels Sasserson(b. Oct. 8, 1896, Minnewaukan, ND; d. Sep. 20, 1996, Shelton, WA) Violinist who played with [a341395] from April 1925 until late July 1926. He served as concertmaster during [a307175]'s absence due to pneumonia in 1925. After playing for several regional groups in the midwest, he retired from music in the 1930s and returned to the printing business. Nearly 100 years old when he died, Sasserson was the last surviving member of Whiteman's 1920s bands.Needs Votehttps://www.findagrave.com/memorial/89035202/nels-sassersonPaul Whiteman And His Orchestra + +14027263Moritz KässmayerMoritz Kässmayer (20 March 1831 - 9 November 1884) was an Austrian violinist, conductor and composer.Needs VoteKässmeyerMoritz KässmeyerMoriz KässmayerWiener PhilharmonikerHofmusikkapelle Wien + +14027980Victor PolatschekAustrian clarinetist and clarinet teacher (29 January 1889 – 27 July 1948). +He was principal clarinetist with the [a=Orchester Der Wiener Staatsoper] and [a=Wiener Philharmoniker] and the [a=Boston Symphony Orchestra]. + +Born in Chotzen, Böhmen (today Choceň), Polatschek began studying clarinet in 1903 at the Conservatory of the Gesellschaft der Musikfreunde (today [l=University of Music and Performing Arts Vienna]) with the then principal clarinetist of the Vienna Philharmonic, Franz Bartolomey, who is considered the founder of the Viennese clarinet school. He graduated in 1907 and studied harmony with [a=Hermann Grädener] at the same institution in 1909/10. After a successful audition, Polatschek became the first clarinettist of the Vienna State Opera/Vienna Philharmonic in 1913. His engagement was interrupted by the First World War, as he was drafted into the Austro-Hungarian Armed Forces. After the war, Polatschek was given a temporary teaching assignment at the Academy of Music, which had been renamed "Akademie" in the meantime, and on 1 September 1921 he was officially appointed professor of clarinet there. Among his most important students were Rudolf Jettel, Leopold Wlach and Alfred Boskovsky. At the request of the conductor [a=Serge Koussevitzky], Polatschek accepted the solo clarinet position with the Boston Symphony Orchestra in 1930. He resigned from his position with the Vienna Philharmonic in 1932 as well as his professorship at the Academy of Music and Performing Arts Vienna. He played with Boston until his death in 1948. Polatschek taught clarinet both at the [l=Berkshire Music Center] and Tanglewood Summer Festival, where [a=David Glazer] was as student of his. On 27 July 1948, the clarinettist died of a heart condition aged 59 in Lenox, Massachusetts, just hours before he was to take part in a series of Bach-Mozart concerts at the [l=Tanglewood (3)] Festival. + +Although Polatschek was a leading clarinettist of his time and also appeared as a soloist with the Boston Symphony Orchestra, there are no solo recordings of him. The only chamber music recording he participated in was Stravinsky's Histoire du soldat, which was recorded under the direction of [a=Leonard Bernstein] at Tanglewood in the summer of 1947. His tenure as an orchestral musician with the Boston Symphony Orchestra resulted in several recordings featuring Polatschek on first clarinet, such as Tchaikovsky's 5th Symphony in E minor, Debussy's Prélude à l'après-midi d'un faune (both in 1944) and Richard Strauss' Don Juan (1946), all conducted by principal conductor Koussevitzky.Needs Votehttps://en.wikipedia.org/wiki/Viktor_PolatschekViktor PolatschekBoston Symphony OrchestraOrchester Der Wiener StaatsoperWiener Philharmoniker + +14027983Boaz PillerContrabassoonist with the Boston Symphony.Needs VoteBoston Symphony Orchestra + +14027992Willem ValkenierWillem Adriaan ValkenierFrench hornist (1887 - 1986). +Principal horn with the Boston Symphony from 1923-1950 (1923-1937 co-principal; 1937-1950 principal). + +Valkenier is recognized as one of the "founding fathers" of horn-playing in the United States. He came from the European (Czech and German) tradition, and his tenure in Boston influenced players and his many students. Valkenier was born in 1887 in Rotterdam, The Netherlands. He had piano lessons as a child and started horn with a military clarinetist, who, when Valkenier was 14, sent him to Edward Preus. Preus was a natural horn player from Bohemia (Czechoslovakia) who had played first horn in a German opera company in Rotterdam and settled there. He was a strict taskmaster, sparing with praise, who taught the Czech cantabile tradition. After two years studying with Preus, Valkenier started playing in a vaudeville theater orchestra. In the summer, he played in a Civil Guard symphonic band with Preus playing first horn, a continuation of his education. His first major professional job was third horn in a symphony orchestra in Gronignen (Netherlands), then a year as first horn in Haarlem. Wanting a better living than he could attain in the Netherlands, he found a job as first horn in the Collegium Musicum in Winterthur [a=Musikkollegium Winterthur], Switzerland. After a year, he saw an advertisement for first horn in Breslau (Silesia, later part of Poland), a larger city, where he won the job and got an excellent grounding in opera. + +Valkenier applied for a summer engagement in Bad Kissingen, Germany, where the Konzertverein Orchestra from Vienna played ([a=Orchester Der Wiener Konzertvereinigung]). After he had performed the Aria from the Bach B Minor Mass, Valkenier was offered the permanent first horn position; the orchestra bought out the remainder of his Breslau contract. In Vienna, Valkenier played a lot of Mahler (Mahler had died the year before) as well as chamber music. World War I wreaked havoc with the orchestras in Vienna, so in 1914 Valkenier found a position as first horn with the [a=Staatskapelle Berlin], where he stayed nine years and played under [a=Wilhelm Furtwängler] and [a=Richard Strauss], among others. In 1923, Valkenier, a pacifist and still a Dutch citizen, began to see that conditions in Germany were going to "go wrong" in response to the Treaty of Versailles that ended World War I. He was friendly with cellist [a=Pablo Casals] and considered settling in Barcelona, but finally decided to try America. Valkenier talked with conductors in New York and Chicago, but both had six month union waiting periods, so he went to Boston (a non-union orchestra +until 1942) as first horn of the second horn section. + +Valkenier was a member of the Boston Symphony Orchestra from 1923 to 1950. His first year was under [a=Pierre Monteux], then [a=Serge Koussevitsky] took over for 25 years. Around 1950, Valkenier started having trouble with his teeth and so decided to stop playing. He had not liked playing under Koussevitsky, so he stayed long enough to play a season under [a=Charles Munch]. While in Boston, Valkenier delighted in performing chamber music, in both professional engagements and informal pick-up sessions with his colleagues in the BSO or with visiting artists such as [a=Arthur Schnabel], [a=Arnold Schoenberg[, and [a=Paul Hindemith]. He also played viola and cello parts on his horn. Valkenier taught many students at [l=New England Conservatory Of Music] during his BSO tenure and others on Cape Cod during his retirement. He had high standards and insisted on everything being played correctly, but he was also gentle and encouraging, and he was an advisor and confidant to his students, taking a paternal interest in them. Valkenier started playing on a hand horn, then a Slot single horn. His first double horn was a Kruspe, and the second a Schmidt. Later he used a Kruspe single B-flat horn for operas and a Schmidt single high F horn for high Bach cantatas.Needs Votehttps://www.windsongpress.com/brass%20players/horn/Valkenier.pdfhttps://www.hornsociety.org/fr/ihs-people/honoraries?view=article&id=69:willem-valkenier&catid=26https://www.bso.org/exhibits/heroes-of-the-hornBoston Symphony Orchestra + +14027995William GebhardtWilliam Carl GebhardtFrench hornist (born December 5, 1884). +Played with the Boston Symphony from 1907-1913; 1918-1927; 1933-1948 + +William Gebhardt was born on December 5, 1884, shortly after his parents had moved to Boston. His father tried to encourage him to play the violin at the age of ten, however, he showed little interest. Meanwhile, his grandmother in New York had a paying guest, -a horn player in the Metropolitan Opera Orchestra. The guest left suddenly and neglected to pay. In recompense, he left his horn behind in his room . The grandmother thought it was a bugle, and no matter how hard she tried to blow it she could not make a sound, so she sent it to William. Mr. Gebhardt sent his son to Albert Hackebarth, then a member of the Boston Symphony, for lessons. He studied for five years, then joined the Boston Symphony in 1907 as second horn. He left at the end of the 1912-1913 season. He played third horn in the [a=Saint Louis Symphony Orchestra] from 1914 to 1915, as well as the Maine Festival Orchestra. From 1918 to 1924 , he was the fourth hornist in the section of the [a=Boston Symphony Orchestra], and second horn there from 1924 to 1926. The next year he was fourth again, and then returned to St. Louis to play fourth horn from 1928 to 1933. After that he returned to Boston once more to play until his retirement in 1948. However, he came out of retirement in 1952 to play fourth horn in the Substitute Boston Symphony while the regular orchestra was on tour. [a=Willem Valkenier] recalls that William Gebhartdt died where he lived in Stoughton, Mass. He is remembered as the man who revised and augmented the well-known Complete Method for the French Horn by Oscar Franz, published by Cundy-Bettony Co., Inc., Boston, 1942. + +He was a member of the "Waldhorn Quartette" of the Boston Symphony Orchestra (along with Max Hess, Franz Hain, and Heinrich Lorbeer). Needs Votehttps://www.bso.org/exhibits/heroes-of-the-hornhttps://www.rjmartz.com/horns/Bopp_085/Boston Symphony OrchestraSaint Louis Symphony Orchestra + +14032453Jarosław AugustyniakJarosław AugustyniakPolish bassoonist, born in 1965. +He was appointed as principal bassoon of the BBC National Orchestra of Wales in December 2004, after thirteen years as principal bassoon with the Basque National Orchestra, Spain.Needs Votehttps://www.jaroslawaugustyniak.com/https://www.facebook.com/augustyniak.bassoon/https://www.youtube.com/channel/UC-qpO8_P5_5FjWPf3FvnfxAJarek AugustyniakJaroslaw AugustyniakOrkiestra Symfoniczna Filharmonii NarodowejNova Filarmonia PortuguesaBBC National Orchestra Of WalesOrquesta Sinfónica de EuskadiRoyal Welsh Chamber Players + +14036947Pauline LarretaClassical violinistNeeds VoteOrchestre National Bordeaux Aquitaine + +14037199Ulrike EschenburgGerman violinistNeeds VoteStaatskapelle Berlin + +14039740Henry PeyrebruneHenry Peyrebrune joined the bass section of The Cleveland Orchestra in 1997.Needs Votehttps://www.clevelandorchestra.com/discover/meet-the-musicians/basses/Payrebrune-Henry/The Cleveland Orchestra + +14062480Keiko WaldnerJapanese Violinist from TokyoNeeds VoteStuttgarter Philharmoniker + +14063911Dominic OelzeDrummer and percussionistNeeds VoteStaatskapelle Berlin + +14066320Scott Chancey (2)Classical violist.Needs VoteOrchestre symphonique de Montréalcollectif9 + +14070385Cynthia BlanchonFrench classical violistNeeds Votehttps://www.cynthia-blanchon.com/London Symphony Orchestracollectif9Orchestre De L'agora + +14080141Andreas StockhammerNeeds VoteDie Wiener SängerknabenChorus Viennensis + +14080144Stefan BleiberschnigNeeds VoteDie Wiener SängerknabenChorus Viennensis + +14081545Matous MichalMatous Michal is a Czech classical violinist. He's the brother of [a14081548].Needs VoteChicago Symphony Orchestra + +14081548Simon MichalSimon Michal is a Czech classical violinist. He's the brother of [a14081545].Needs VoteChicago Symphony Orchestra + +14081551So Young BaeSo Young Bae is a Korean violinist.Needs VoteChicago Symphony Orchestra + +14081554Sylvia Kim KilcullenSylvia Kim Kilcullen is a classical violinist. +Needs VoteSilvia Kim KilcullenChicago Symphony OrchestraPittsburgh Symphony Orchestra + +14081653Aiko Noda (2)Aiko Noda is a Japanese violinist, now based in the United States. She was a member of the [a837562] from 2008 to 2023.Needs VoteChicago Symphony Orchestra + +14081698Danny Lai (3)Danny Lai is a classical violist.Needs VoteChicago Symphony Orchestra + +14081701Wei-Ting KuoWei-Ting Kuo is a classical violist.Needs VoteChicago Symphony OrchestraMilwaukee Symphony Orchestra + +14081770Miles ManerMiles Maner is an American bassoon and contrabassoon player.Needs VoteChicago Symphony OrchestraThe Kansas City Symphony + +14081773Keith BunckeKeith Buncke is an American bassoonist. Principal Bassoon of the [a837562] since July 2015.Needs VoteAtlanta Symphony OrchestraChicago Symphony Orchestra + +14084767Stefán Ragnar HöskuldssonStefán Ragnar HöskuldssonStefán Ragnar Höskuldsson is a classical flutist from Iceland. Principal flutist of the [a837562] from 2015 to 2025 and of the [a260744] since September 2025.Needs Votehttp://www.stefanragnarhoskuldsson.com/Stefan HoskuldssenStefan HoskuldssonBerliner PhilharmonikerChicago Symphony OrchestraThe Metropolitan Opera House Orchestra + +14096143Mathilde KleinFrench classical violinist, born in 1996 in Le Mans.Needs VoteOrchestre Philharmonique De Radio France + +14108692Hélène KimbladAlto and mezzo-soprano vocalistCorrecthttps://helenekimblad.se/Radiokören + +14108695Ulrika Kyhle-HäggAlto vocalistCorrectUlrika Kyhle HäggUlrika KyhleRadiokören + +14108698Bengt Eklund (5)Bass vocalistCorrecthttps://www.bach-cantatas.com/Bio/Eklund-Bengt.htmRadiokören + +14108701Jenny Ohlson AkreSoprano vocalistCorrectJenny OhlsonRadiokören + +14108704Gunnar Sundberg (4)Tenor vocalistCorrectRadiokören + +14108707Magnus Ahlström (3)Tenor vocalistCorrectRadiokören + +14108710Mattias LilliehornTenor vocalistCorrectRadiokören + +14108812Caroline FrenkelViolinistNeeds VoteLondon Symphony Orchestra + +14108818José Nuno MatiasViolinistNeeds VoteLondon Symphony Orchestra + +14114713Marco JadraItalian instrument builder, 16th century.Needs Vote + +14114716Thomas White (24)17th century London instrument builder.Needs VoteThomas White, London + +14116528Николай Титов (2)Николай Антонович Титов(1923 - 1973) - domrist, teacher.Needs Votehttps://www.conservatory.ru/esweb/titov-nikolay-antonovich-1923-1973Н. ТитовРусский Народный Оркестр Имени В. Андреева + +14151529Romed WieserClassical cellist.Needs VoteWiener Symphoniker + +14172697Martin KlepperGerman violinistNeeds VoteBayerisches StaatsorchesterNeue Hofkapelle München + +14174980Christian VasileClassical violinistNeeds VoteSymphonie-Orchester Des Bayerischen RundfunksMusica Rinata + +14176909Orchestra Del Teatro Della Scala Di MilanoNeeds Major ChangesCoro y Orquesta del Teatro de la Scala de MilánOrchestra & Coro Del Teatro Alla Scala Di MilanoOrchestra Del Teatro Alla Scala Di Milano + +14180026Michael Brauer (2)Classical vocalistNeeds VoteChicago Symphony ChorusBrian Conn New Music Ensemble + +14210632Lorraine CarrolLorraine CarrollSession singer: Beaumont, Dan NichollsNeeds VoteEvolver + +14234650Lord PoozixAlex IschenkauImprovised blackened acoustic noisecore, field recordings, dungeon synth act from Kyiv, Ukraine.Needs Votehttps://lordpoozix.bandcamp.comRemix PoozixMerzluxLord JokerLord Blasphemer (3)Lord Maniac (2) + +14237971Alice BartschAmerican classical violinist.Needs VoteSydney Symphony Orchestra + +14239231Bernard O'Reilly (3)Violinist.Needs VoteRoyal Philharmonic Orchestra + +14242810Emmanuel BaissaClassical cellistNeeds VoteLa Petite Bande + +14242813Marie-Paule VerlindeClassical hornist.Needs VoteLa Petite Bande + +14243770Helmut SkalarHelmut Skalar is a classical violinist.Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +14270521Anna Gordon (5)Choral singer.Needs VoteThe Ambrosian Singers + +14271337Bernhard BerwangerOboistNeeds VoteMünchner Philharmoniker + +14289829Glen Howard (2)Needs Votehttps://www.goodwillexcelcenter.org/gec-board-of-directors/glen-s-howard/Howard ScottNational Symphony OrchestraChoral Arts Society of WashingtonWashington Performing Arts Society + +14294440Barnabe BarnesNeeds Major Changes + +14315057Napalm Death Is Dead Is GayNeeds Major ChangesMerzluxGummi Batushka + +14315060Gummi BatushkaNeeds VoteMerzluxNapalm Death Is Dead Is Gay + +14332508Monica TietzeGerman soprano and choir singer.Needs Votehttps://www.rundfunkschaetze.de/mdr-klassik/mdr-rundfunkchor/16-zeitenwende/16-05-oper-chorsinfonik/1979-hauschild-reger-100-psalm/Rundfunkchor Leipzig + +14338622Beth StoneBritish classical flute player.Needs Votehttps://lumaswinds.com/members-of-lumas-winds/The Academy Of Ancient MusicLumas Winds + +14342054Members Of The New York PhilharmonicCorrectMembers Du New York PhilharmonicMembers Of New York PhilharmonicMembers Of The New York Philharmonic OrchestraMembers Of The Philharmonic OrchestraMembres Du New York PhilharmonicMembri Della New York PhilharmonicMiembros De La Orquesta Filarmónica De Nueva YorkMiembros De The New York Philharmonic OrchestraMitglieder Der New Yorker PhilharmonikerNew York Philharmonic + +14346434Laura UrbinaLaura Urbina is a Costa Rican oboist, now based in Austria.Needs VoteCamerata Academica SalzburgStudierende Der Folkwang-Hochschule, Essen + +14346485Ekkehardt FeldmannEkkehardt Feldmann is a German clarinetist, lecturer, arranger and conductor.Needs VoteEkkehard FeldmannGürzenich-Orchester Kölner Philharmoniker + +14350385Bläser Des Symphonie-Orchester Des Bayerischen RundfunksNeeds VoteBläser Des Bayerischen RundfunksFiati Dell'Orchestra Sinfonica Della Radio BavareseFiati Dell'Orchestra Sinfonica Della Radio Della BavieraWinds Of The Bavarian Radio Symphony OrchestraWinds of the Symphonieorchester des Bayerischen RundfunksSymphonie-Orchester Des Bayerischen Rundfunks + +14352929Janos EcseghyJanos Ecseghy is a German violinist.1st Concertmaster of the [a1357304] since 2002.Needs VoteStaatskapelle DresdenBadische Staatskapelle + +14388071Antoine CuréClassical trumpet player. +(born in Bar-Le-Duc, France in 1951) +has been student and teacher (1988 to 2018) at the Conservatoire de Paris. +solo trumpeter in the Ensemble Contemporain conducted by Pierre Boulez from 1981 to 2012.Needs Votehttps://fr.wikipedia.org/wiki/Antoine_CuréAntoine CureEnsemble IntercontemporainEnsemble 2E2M + +14391299René FetterléCredited as saxophone and clarinet player.Needs Votehttps://www.fonoteca.ch/cgi-bin/oecgi4.exe/inet_jazzbionamedetail?NAME_ID=55319.011&LNG_ID=ENUThe Berry'sFred Böhler And His Band + +14391302Willy MartiCredited as pianist.Needs Votehttps://www.fonoteca.ch/cgi-bin/oecgi4.exe/inet_jazzbionamedetail?NAME_ID=41950.011&LNG_ID=ENUThe Berry's + +14391887Josef Koller (3)Viennese horn player (1897-1978) Member of the Vienna Philharmonic, who recorded in the 1950s. Do not confuse with [a3934224], who started recording in the 1990s. + +http://www.pizka.de/VPOHorns.htmNeeds VoteJoseph KollerWiener Philharmoniker + +14450711Waynne KwonAustralian CellistNeeds VoteLondon Symphony OrchestraRuthless Jabiru + +14455553Pauline De LannoyMezzo-soprano & Alto vocalistNeeds VoteChoeur de Chambre de Namur + +14472473Audran Bournel-BossonBassoonistNeeds VoteOrchestre De Chambre De Toulouse + +14472476Jennifer SabiniHornistNeeds VoteOrchestre De Chambre De Toulouse + +14472479Virginie ResmanHornistNeeds VoteOrchestre De Chambre De Toulouse + +14472512Arthur MenrathFrench bassoonistNeeds VoteOrchestre Philharmonique De Monte-CarloQuatuor Nis'tanbul + +14486342Eunsley ParkEunsley Park is a rising British/South Korean violinist based in London. Needs Votehttps://wcom.org.uk/yeoman/eunsley-park/Philharmonia OrchestraQueen Charlotte's Global Orchestra + +14487479Heather MacLeod (2)Classical violinist.Needs VoteHallé Orchestra + +14496304Veikko VihreävirtaNeeds Major ChangesVeikko Vihreäranta + +14503120Peter MinklerClassical violist.Needs VoteBaltimore Symphony Orchestra + +14534131Aurelie FauthousAurélie FauthousViolinistNeeds VoteOrchestre De Chambre De ToulouseAmaury Faye Ensemble + +14543905Susanne DabelsGerman classical violinist.Needs VoteStaatskapelle Berlin + +14547970Ana Carolina CouthinoBarazilian soprano vocalistNeeds Votehttps://www.facebook.com/anaccoutinhos/RIAS-Kammerchor + +14547973Carmen CallejasSpanish soprano vocalistNeeds Votehttps://www.facebook.com/carmen.callejas.794/RIAS-Kammerchor + +14547976Ji Yoon (2)Korean soprano vocalistNeeds VoteRIAS-Kammerchor + +14558863Simon Thompson (6)Classical cellist, born in Okinawa, Japan.Needs VoteLondon Symphony Orchestra + +14560477Carol CapperClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560483Deborah StauntonClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560486Denise HoiletteClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560492Gill O'NeillClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560498Isobel HammondClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560501Jasmine SpencerClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560507Joanna Gueritz (3)Classical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560510Laura Catala-UbassyClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560513Lizzie Webb (2)Classical soprano vocalist.Needs VoteLiz WebbLondon Symphony Chorus + +14560519Marylyn LewinClassical soprano vocalist.Needs VoteLondon Symphony Chorus + +14560615Gilly LawsonClassical alto vocalist.Needs VoteLondon Symphony Chorus + +14560621Helen Palmer (5)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +14560627Jane Muir (3)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +14560630Jill Jones (7)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +14560633Kate Harrison (7)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +14560639Linda Thomas (9)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +14560642Lynn EatonClassical alto vocalist.Needs VoteLondon Symphony Chorus + +14560648Rachel Green (8)Classical alto vocalist.Needs VoteLondon Symphony Chorus + +14562070Bryan HammersleyClassical bass vocalist.Needs VoteLondon Symphony Chorus + +14562076Dan GosselinClassical bass vocalist.Needs VoteLondon Symphony Chorus + +14562079Daniel Thompson (18)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562085Gordon Thompson (5)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562091Josué Garcia (2)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562094Peter Kellett (2)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562097Richard Tannenbaum (2)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562100Robin Thurston (2)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562103Rocky HirstClassical bass vocalist.Needs VoteLondon Symphony Chorus + +14562106Simon Backhouse (2)Classical bass vocalist.Needs VoteLondon Symphony Chorus + +14562109Steve ChevisClassical bass vocalist.Needs VoteLondon Symphony Chorus + +14562112Colin Dunn (3)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562115Davide PrezziClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562118Erik AzzopardiClassical tenor vocalist.Needs Votehttps://www.erikazzopardi.com/London Symphony Chorus + +14562127Jude LenierClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562136Michael Delany (3)Classical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562139Michael HarmanClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562142Oliver BurrowsClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562145Patrizio GiovannottiClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562148Philipp BoeingClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14562154Simon WalesClassical tenor vocalist.Needs VoteLondon Symphony Chorus + +14563537Herng-Yu Elen PanClassical double bassist.Needs VoteHerng-Yu PanBBC Symphony Orchestra + +14563555Ariane LebigreClassical violinist.Needs VoteOrchestre Philharmonique De Strasbourg + +14564131Robert Pierce (8)Horn playerNeeds VoteBaltimore Symphony Orchestra + +14580877Ralph CurryClassical CellistNeeds VoteThe Cleveland Orchestra + +14596742Jerome StowellAssistant Principal / Eb Clarinet with the Chicago Symphony Orchestra.Needs VoteChicago Symphony OrchestraChicago Symphony Woodwind Quintet + +14611794Alex LiedtkeClassical oboist.Needs Votehttps://oboealex.com/Toronto Symphony OrchestraOrchestre symphonique de Montréal + +14617416Eva Smit (2)Eva Smit is a Dutch Violinist. + +Eva Smit studied violin in Frankfurt with Dieter Vorholz and viola in Düsseldorf with Jürgen Kussmaul. She has participated in masterclasses with Serge Collot and Daniel Benyamini, among others. + +For five years, she was a member of the Robert Schumann Chamber Orchestra, with which she also gave solo performances. As a member of the Düsseldorf Viola Quartet and the Euridice String Quartet (Amsterdam), Eva Smit has built up a large chamber music repertoire. She received chamber music coaching from Jürgen Kussmaul, Eugene Lehner (of the Kolisch Quartet) and Nikolaus Harnoncourt. + +Smit joined the viola section of the Concertgebouworkest in 1990. She also plays in various chamber music groups with orchestra members.Needs Votehttps://www.concertgebouworkest.nl/en/musicians/eva-smitEva MüllerConcertgebouworkestRobert-Schumann-KammerorchesterEuridice Quartet + +14618049Anna PadalkoRussian native Mezzo-soprano / Alto vocalist from St. PetersburgNeeds Votehttps://www.annapadalko.com/https://www.facebook.com/anna.padalko.7/?locale=de_DERIAS-Kammerchor + +14618259Bruno MeichsnerGerman bass / baritone vocalistNeeds VoteRIAS-Kammerchor + +14618262Johannes D. SchendelGerman bass / britone vocalistNeeds Votehttps://www.bach-cantatas.com/Bio/Schendel-Johannes.htmRIAS-Kammerchor + +14618265Johannes Schwarz (5)German bass / baritone vocalistNeeds Votehttps://www.johannesschwarz-bassbariton.de/https://www.bach-cantatas.com/Bio/Schwarz-Johannes.htmRIAS-Kammerchor + +14630820Yao Guang ZhaiClassical clarinetistNeeds VoteBaltimore Symphony Orchestra + +14637144James McKillop (2)James McKillopb. Nov. 24, 1889, Chicago, IL - d. Mar. 24, 1970 + +American violinist who played with [a341395] from August 1925 until February 1926.Needs VotePaul Whiteman And His Orchestra + +14641632Åke SchierbeckÅke Viktor SchierbeckSwedish clarinetist in [a1015406], born on 17 August 1940. + +He was also music teacher at [l3710391].Needs VoteGöteborgs Symfoniker + +14645115Ha Young JungSouth-Korean classical double bassistNeeds VoteBaltimore Symphony Orchestra + +14707729Christoph Wimmer (2)Christoph Wimmer-SchenkelDouble bassist, born 1983 in Steyr, Austria +Professor at the Universität für Musik und darstellende Kunst Wien +Needs VoteOrchester Der Wiener StaatsoperWiener Philharmoniker + +14707732José Trigo (2)José Sebastião TrigoDouble bassist, born 1997 in Portugal +Principal double bassist with the Symphonie-Orchester Des Bayerischen RundfunksNeeds VoteSymphonie-Orchester Des Bayerischen RundfunksEuropean Union Youth OrchestraGustav Mahler Jugendorchester + +14737945Nicholas Ong (2)Tenor vocalistNeeds Votehttps://www.linkedin.com/in/nicholasongrt/?originalSubdomain=ukThe Choir Of Clare CollegeThe Choir Of The Queen's College, Oxford + +14766791Luis EisenGerman classical bassoonist.Needs VoteRoyal Scottish National Orchestra + +14766794Gunda BaranauskaitéLithuanian classical cellist.Needs VoteRoyal Scottish National Orchestra + +14766797Sarah DiggerClassical cellist.Needs VoteRoyal Scottish National Orchestra + +14766812Alison Murray (2)Classical hornist.Needs VoteRoyal Scottish National Orchestra + +14766815Andrew McLean (9)Classical hornist. + +Needs VoteRoyal Scottish National Orchestra + +14766845Maria TrittingerClassical violist.Needs VoteRoyal Scottish National Orchestra + +14766848Susan BuchanScottish classical violist.Needs VoteRoyal Scottish National Orchestra + +14766851Alan MansonScottish classical violinist.Needs VoteRoyal Scottish National Orchestra + +14766857Susannah LowdonBritish classical violinist.Needs VoteRoyal Scottish National Orchestra + +14766866Kirstin DrewClassical violinist.Needs VoteRoyal Scottish National Orchestra + +14768555André CebriánSpanish classical flautist.Needs Votehttps://www.andrecebrian.com/André CebrianScottish Chamber Orchestra + +14768561Robert LoomanClassical flautist.Needs VotePhilharmonia Orchestra + +14768564Martin Murphy (11)British classical hornist.Needs VoteRoyal Scottish National Orchestra + +14768573Paul PhilbertEnglish classical timpanist, from Caribbean origins.Needs VoteRoyal Scottish National OrchestraNational Arts Centre Orchestra + +14768582Lisa RourkeScottish classical violist.Needs VoteRoyal Scottish National Orchestra + +14768591Lena ZeliszewskaPolish classical violinist.Needs VoteRoyal Scottish National Orchestra + +14768672Anne BünnemanGerman classical violinist.Needs VoteRoyal Scottish National Orchestra + +14770217Marlene PschorrMarlene Pschorr (born in 1993 in Heubach) is a German classical hornist.Needs Votehttps://www.brso.de/besetzung/marlene-pschorr/Symphonie-Orchester Des Bayerischen RundfunksWDR Sinfonieorchester KölnOrchester der Bayreuther FestspieleGustav Mahler Jugendorchester + +14773175Margarida CastroClassical double bassist.Needs VoteRoyal Scottish National Orchestra + +14775494Maura MarinucciClassical clarinetist.Needs VotePhilharmonia Orchestra + +14775509Tomohiro AndoJapanese classical timpanist, born in 1991 in Tokyo.Needs VoteConcertgebouworkest + +14776631Sergei KazantsevRussian Cello PlayerNeeds Votehttps://hancher.uiowa.edu/sites/hancher.uiowa.edu/files/russiannationalorchestra_playbill_11_web.pdfRussian National OrchestraMusica Viva Chamber Orchestra + +14788718Charlotte FairbairnClassical violin and viola player.Needs Votehttps://about.me/charlottefairbairnThe Academy Of Ancient MusicArmonico Consort + +14790020Willy StuhlfauthGerman violinist and Viola d'Amore player.Needs VoteStuhlfauthSymphonie-Orchester Des Bayerischen RundfunksMünchner Violen-Quintett + +14797319Ernst Richard SchliephakeErnst Richard Schliephake (born 23 May 1962) is a German violinist and clarinetist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksMünchner SymphonikerKammerorchester Tibor VargaDüsseldorfer Symphoniker + +14805959Anthony Roberts (15)Credited as trumpet player.Needs VoteLouis Armstrong And His Orchestra + +14824060Susanne Von HaynGerman bassoonistNeeds VoteBayerisches StaatsorchesterBundesjugendorchester + +14824132Sebastian WagemannGerman tubistNeeds VoteOrchester der Bayreuther FestspieleOrchester Der Komischen Oper BerlinBundesjugendorchester + +14824180Julia SchautzGerman violinist, born in 1981.Needs VoteStuttgarter PhilharmonikerBundesjugendorchester + +14824207Martin HennekenClassical cellistNeeds VoteGulbenkian OrchestraBundesjugendorchester + +14829379Minami YoshidaMinami Yoshida is a Japanese violinist. She's a member of the [a260744] since August 2025.Needs VoteBerliner Philharmoniker + +14830156Trina StrubleClassical harpist.Needs VoteThe Cleveland Orchestra + +14841874Mitglieder Des Gürzenich-OrchestersNeeds VoteGürzenich-Orchester Kölner Philharmoniker + +14868449Maria SemesClassical violinist and violist.Needs VoteBaltimore Symphony OrchestraThe Louisville Orchestra + +14874035Yena Choi (2)South-Korean soprano vocalist.Needs VoteEstonian Philharmonic Chamber Choir + +14883753Evan BravosAmerican Bass & Baritone vocalist.Needs Votehttps://www.bach-cantatas.com/Bio/Bravos-Evan.htmChicago Symphony ChorusGrant Park Chorus + +14906476Nat Walter (2)Needs VoteLes Hite And His Orchestra + +14971109Jae-Won Lee (2)Korean classical violinistNeeds VoteConcertgebouworkest + +14985859Matthias HoneckViolin PlayerNeeds VoteWiener Symphoniker + +15011986Reide Mc LeodNeeds Major ChangesMcCleod + +15057416Константин ВаренбергКонстантин Семенович Варенберг Varenberg Konstantin Semenovich – violinist. +(1923–1999) +A graduate of the Moscow Central Music School (1941) and the Moscow Conservatory (1946), Konstantin Varenberg moved to Leningrad and from 1951 to 1977 played in the Honored Collective of the Republic, the Leningrad Philharmonic Orchestra: he performed orchestral solos in the Great Hall, participated in organ evenings, and was a soloist in the programs of the Leningrad Chamber Orchestra, with which he often performed in the Glinka Small Hall. Numerous concerts of the ZKR Soloists String Quartet took place here on the chamber philharmonic stage, which included violinists Lazar Gozman (1st violin) and Konstantin Varenberg (2nd violin), violist Vladimir Tsiporin (this place would be taken by Yuri Kramarov in 1957, and later by Igor Malkin) and cellist Lev Fishkov (he would be replaced by Anatoly Nikitin in 1964 ). + +A busy concert life did not prevent Konstantin Semenovich from devoting time to his hobby. A passionate radio amateur, he was on first-name terms with technology and could not only repair, but also assemble a new radio receiver. + +In 1977, Konstantin Varenberg emigrated from the USSR together with his entire musical family – the violinist of the Philharmonic Symphony Orchestra Vera Dobrzynets and three sons: the youngest Ilya, a violinist (he was named after his grandfather – Ilya Dobrzynets), the eldest Vladislav, a cellist (in the 1970s he also played in the Philharmonic Symphony Orchestra) and the pianist Alexander Varenberg. + +Выпускник московских ЦМШ (1941) и консерватории (1946), +Константин Варенберг переехал в Ленинград и с 1951-го по 1977 год играл в Заслуженном коллективе Республики оркестре Ленинградской филармонии: в Большом зале исполнял оркестровые соло, участвовал в органных вечерах, солировал в программах Ленинградского камерного оркестра, с которым часто выступал и в Малом зале имени Глинки. + +В 1977 году Константин Варенберг эмигрировал из СССР вместе со всей музыкальной семьей – скрипачкой Симфонического оркестра филармонии Верой Добржинец и тремя сыновьями: младшим Ильей, скрипачом (его назвали в честь деда – Ильи Добржинеца), старшим Владиславом, виолончелистом (в 1970-е он тоже играл в Симфоническом оркестре филармонии) и пианистом Александром Варенбергом.Needs Votehttps://100philharmonia.spb.ru/persons/20667/К. ВаренбергLeningrad Philharmonic OrchestraLeningrad Chamber Orchestra + +15059150Nele LamersdorfNele LamersdorfGerman classical flutist. +Born 1985 in Hamburg, Germany. +Lamersdorf initially received lessons from Prof. [a=Imme-Jeanne Klett] in her hometown. She continued her education at the Mozarteum Salzburg under Prof. [a2820506] and later at the Conservatoire National Supérieur de Paris with Prof. [a826720]. Lamersdorf has been awarded in competitions such as "Jugend musiziert," the Karel Kunc Competition, and the Lions Club Music Competition. At the Schleswig-Holstein Music Festival, she gained valuable experience working with renowned conductors like [a839412], [a508213], and [a926728]. After receiving a scholarship as an academy student with the [l394092], the [a919064], [a882817], and the [a5533101], she has been a flutist with the [a990584] since 2011.Needs Votehttps://www.stuttgarter-philharmoniker.de/354.htmlOrchester Des Nationaltheaters MannheimKurpfälzisches Kammerorchester MannheimStaatsphilharmonie Rheinland-PfalzStuttgarter PhilharmonikerOrchester Des Schleswig-Holstein Musik FestivalsPhilharmonisches Orchester Heidelberg + +15075371Roger CuttsTrombonistNeeds VoteLondon Symphony Orchestra + +15082421Anna FirsanovaAnna Firsanova (born 1989) is a Russian violist.Needs VoteBruckner Orchestra LinzWiener Jeunesse OrchesterGustav Mahler Jugendorchester + +15082424Eva KlambauerEva Klambauer is an Austrian violist.Needs VoteBruckner Orchestra LinzGustav Mahler JugendorchesterSynchron Stage Orchestra + +15086213Heinz RötterTimpanistNeeds VoteSüdwestdeutsches Kammerorchester + +15111566Tomáŝ LaijtkepTenor VocalistNeeds VoteCollegium Vocale + +15122777Elodie GuillotFrench classical violist.Needs VoteOrchestre Philharmonique De Radio France + +15140548You Jung HanYou-Jung HanKorean Violinist.Needs VoteOrchestre National De FranceLe Balcon + +15151420Kristina YumerskaBulgarian classical hornist.Needs VoteLondon Symphony Orchestra + +15151423Olivia GandeeEnglish classical hornist.Needs VoteLondon Symphony Orchestra + +15151432Imogen DaviesClassical oboist.Needs VotePhilharmonia Orchestra + +15151456Joseph Fisher (3)English classical violist.Needs VoteRoyal Philharmonic Orchestra + +15151465Sara SheppardClassical violist.Needs VotePhilharmonia Orchestra + +15158347Lily Higson-SpenceClassical ViolinistNeeds VoteCamerata Bern + +15159250Todd Gibson-CornishNew Zealander classical bassoonist.Needs VoteSydney Symphony Orchestra + +15159265Gwendolyn FisherAmerican classical violistNeeds Votehttps://www.gwendolyncawdron.com/https://uk.linkedin.com/in/gwendolyn-cawdron-formerly-fisher-84183b64Philharmonia OrchestraRoyal Liverpool Philharmonic Orchestra + +15160546George StylesAmerican jazz pianistNeeds VoteG. StyleDodo MarmarosaFrank Devenport Quintette + +15164917Josie Ellis (2)Classical double bassist.Needs VoteLondon Symphony Orchestra + +15168922Joanna Marsh (2)Classical flautist.Needs VoteRoyal Philharmonic Orchestra + +15168961Naomi Watts (2)Classical cellist.Needs VoteRoyal Philharmonic Orchestra + +15172823Kai KimSouth-Korean classical double bassist.Needs VoteLondon Symphony Orchestra + +15181505Christopher BassettClassical trombonist.Needs VoteChrisopher BassetSan Francisco Symphony + +15181508Xiomara MassPuerto Rican classical oboist.Needs VoteSaint Louis Symphony Orchestra + +15183542Chris Harris (46)Christopher HarrisClassical trombonist, born in South-Africa.Needs VoteSydney Symphony Orchestra + +15190640María Gil MuñozMezzo-soprano vocalist, born in 1985 in Spain.Needs VoteChoeur de Chambre de Namur + +15197183Michael LisickyOboistNeeds VoteLisickyBaltimore Symphony OrchestraNational Chamber Players + +15213365Boram KangClassical violinistNeeds VoteBaltimore Symphony Orchestra + +15245706Brice Claviez-HombergFrench classical Alto vocalistNeeds Votehttps://ensembleconsonance.com/musiciens/brice-claviez-homberg/Le Concert SpirituelLes Cris de Paris + +15275331Peter VolpertClassical cellistNeeds VoteSveriges Radios Symfoniorkester + +15281715Harry Ward (4)Harry Ward is an Australian violinst. Brother of [a8012115]. +He's a member of the [a260744] since March 2023.Needs VoteBerliner PhilharmonikerAustralian World Orchestra + +15282891Dominique Brunet (5)French trumpeter.Needs VoteOrchestre National De France + +15286173Francesco Di GiovannantonioItalian classical double bassist.Needs VoteOrchestra Di Padova E Del Veneto + +15286188Simone LonardiItalian classical trumpeter.Needs VoteOrchestra Di Padova E Del Veneto + +15286191Floriano BolzonellaItalian classical violist.Needs VoteOrchestra Di Padova E Del Veneto + +15286194Elena MeneghinelloItalian classical violinist, born in Padua in 1995.Needs VoteOrchestra Di Padova E Del Veneto + +15286203Davide Dal PaosItalian classical violinist.Needs VoteOrchestra Di Padova E Del Veneto + +15286206Simone CastigliaItalian classical violinist.Needs VoteOrchestra Di Padova E Del Veneto + +15295191Фёдор НиманФёдор Августович Ниман (Фёдоров) = Theodor NiemannTheodor Niemann (pseudonym - Fedorov) (September 11, 1860 – September 5, 1936) was a Russian and Soviet musician, oboist, conductor, composer, and music teacher. Honored Artist of the RSFSR (1929). Teacher and professor at the Leningrad Conservatory (1921–1936).Complete and Correcthttps://ru.wikipedia.org/wiki/%D0%9D%D0%B8%D0%BC%D0%B0%D0%BD,_%D0%A4%D1%91%D0%B4%D0%BE%D1%80_%D0%90%D0%B2%D0%B3%D1%83%D1%81%D1%82%D0%BE%D0%B2%D0%B8%D1%87https://www.conservatory.ru/esweb/niman-fyodor-theodor-niemann-1860-1936https://100philharmonia.spb.ru/persons/5899/https://sv-barrisol.ru/stati/21951-niman-fedor-avgustovich.htmlФ. НиманРусский Народный Оркестр Имени В. Андреева + +15300498Miguel Guerra (6)Miguel Guerra ArévaloSpanish french horn player credited on a release from [a=Pasión Vega] (Spain, 2017/2018).Needs VoteOrquesta Sinfónica de RTVE + +15300984Jane CarlClarinet player.Needs VoteSaint Louis Symphony Orchestra + +15324609Horst Förster (2)Horst Förster (born March 13, 1920 in Dresden; † June 30, 1986 in Dresden) was a German conductor, choir director, violinist and university professor. In 1952 he was appointed the youngest general music director in the GDR at the time in Eisenach. He was then chief conductor of the [a11390648] and the Robert Franz Singing Academy in Halle (1956–1964) and the [a854918] (1964–1966).Needs Votehttps://de.wikipedia.org/wiki/Horst_F%C3%B6rster_(Dirigent,_1920)Dresdner PhilharmoniePhilharmonisches Staatsorchester Halle + +15347997Karl SöderströmClassical bass vocalistNeeds VoteRadiokören + +15358821Caroline de MahieuBelgian Mezzo-soprano & Alto vocalistNeeds Votehttps://carolinedemahieu.com/Choeur de Chambre de Namur + +15358824Florine GodFrench Mezzo-soprano & Alto vocalistNeeds Votehttps://www.florinegod.com/Choeur de Chambre de Namur + +15358833Louise Thomas (7)Belgian soprano vocalistNeeds Votehttps://www.louisethomas.be/index.htmlChoeur de Chambre de Namur + +15358836Maxence BilliemazTenor vocalistNeeds VoteChoeur de Chambre de Namur + +15358839Vincent MahiatTenor vocalistNeeds VoteChoeur de Chambre de Namur + +15416793Virgile PellerinFrench Countertenor vocalistNeeds VoteLe Concert Spirituel + +15439548Leonhard EbertViola playerNeeds VoteBamberger Symphoniker + +15458271Adam Kozłowski (5)Polish horn player.Needs VoteSinfonia VarsoviaCapella CracoviensisAuksoFilharmonia KrakowskaOrkiestra Akademii BeethovenowskiejSinfonietta CracoviaOrkiestra Symfoniczna Polskiego Radia W Krakowie + +15462480Nikolaus SinghaniaClassical trombonist.Needs VoteWiener Symphoniker + +15482835Agata SzmukPolish Alto vocalistNeeds VoteRIAS-Kammerchor + +15482838Michelle BaumMichelle Baum is a classical vocalist (mezzo-soprano & alto) from Berlin (Germany).Needs Votehttps://www.michellebaum.de/RIAS-Kammerchor + +15482841Manuel NickertManuel Nickert is a German Bass & Baritone vocalist and Chorus-Master from Berlin.Needs Votehttps://www.manuelnickert.de/RIAS-Kammerchor + +15482844Max BörnerThe German bass (and former Boy soprano), Max Börner, was a member of the Thomanerchor Leipzig. He has been singing with the Amici Musicae since 2016. He has been studying singing at the Leipziger Musikhochschule.Needs Votehttps://www.bach-cantatas.com/Bio/Borner-Max.htmhttps://ccg-stuhr.de/leitung/RIAS-Kammerchor + +15482847Katharina Hohlfeld-RedmondGerman Soprano vocalist from Berlin.Needs Votehttps://www.bach-cantatas.com/Bio/Hohlfeld-Katharina.htmRIAS-Kammerchor + +15482850Maria PujadesSpanish Soprano vocalist from Barcelona.Needs Votehttps://www.bach-cantatas.com/Bio/Pujades-Maria.htmRIAS-Kammerchor + +15482853Sophia LindenGerman Soprano vocalist born in Bonn.Needs Votehttps://www.sophia-linden.com/enRIAS-Kammerchor + +15511845Fergus Davidson (2)Classical flute playerNeeds VoteBBC Symphony Orchestra + +15535152Eliška Vondráček HorehleďováClassical flautist.Needs VoteEliska HorehledovaConcertgebouw Chamber Orchestra + +15536649César Álvarez (2)Spanish conductor and teacher (born 1973), formed in Oviedo, Madrid, Moscow, has been the principal conductor of the Tomsk Philharmonic Orchestra, Russia (2001-2011), Orquesta Sinfónica De La Región De Murcia, Russian National OrchestraNeeds Votehttps://mgartpro.com/alvarez.htmlhttps://www.instagram.com/cesaralvarezconductor/Cesar AlvarezRussian National OrchestraOrquesta Sinfónica De La Región De MurciaOviedo Filarmonía + +15540435Julian Gonzalez (4)Bassoonist, New York-based.Needs Votehttps://www.nyphil.org/about-us/artists/julian-gonzalez/New York Philharmonic + +15540438Nina LaubeClassical bassoonistNeeds VoteBaltimore Symphony Orchestra + +15551262Aseo FriesacherNeeds VoteDie Wiener SängerknabenChorus Viennensis + +15573129Guy PiddingtonAmerican trumpeter.Needs Votehttps://www.guypiddington.com/San Francisco Symphony + +15575124Flora TassinariAlto vocalistNeeds VoteThe Choir Of Clare College + +15575127Isabella TheodosiusAlto vocalistNeeds VoteThe Choir Of Clare College + +15575130Megan WebbBritish Alto vocalistNeeds VoteThe Choir Of Clare College + +15575133Thea Moe BjørangerAlto vocalistNeeds VoteThe Choir Of Clare College + +15575136Zoe ShuAlto vocalistNeeds VoteThe Choir Of Clare College + +15575142Cameron RileyBritish Bass vocalistNeeds VoteThe Choir Of Clare College + +15575145Derek SorensenClassical Bass vocalistNeeds VoteThe Choir Of Clare College + +15575148Jasper SchoffClassical Bass vocalistNeeds VoteThe Choir Of Clare College + +15575151John Gallant (2)Classical Bass vocalistNeeds VoteThe Choir Of Clare College + +15575154Julian ManresaClassical Bass vocalistNeeds VoteThe Choir Of Clare College + +15575157Julius KilnClassical Bass vocalistNeeds VoteThe Choir Of Clare College + +15575160Emma CaroeSoprano vocalistNeeds Votehttps://www.linkedin.com/in/emma-caroe-b945181a2/?originalSubdomain=ukThe Choir Of Clare College + +15575163Helen SouthernwoodBritish Soprano vocalistNeeds Votehttps://www.linkedin.com/in/helen-southernwood-062814148/?originalSubdomain=ukThe Choir Of Clare College + +15575166Holly SewelSoprano vocalistNeeds VoteThe Choir Of Clare College + +15575169Jessica FolwellSoprano VocalistNeeds VoteThe Choir Of Clare College + +15575172Lilly VandaneauxBritish composer, pianist and soprano vocalist based in London.Needs Votehttps://www.facebook.com/lillyvadaneauxcomposer/The Choir Of Clare College + +15575175Maggie TamSoprano vocalistNeeds VoteThe Choir Of Clare College + +15575178Gregory MayTenor vocalistNeeds VoteThe Choir Of Clare College + +15575181Joseph HancockBritish Tenor vocalist from Newbury, BerkshireNeeds Votehttps://www.josephhancocktenor.com/https://www.bach-cantatas.com/Bio/Hancock-Joseph.htmThe Choir Of Clare College + +15575184Luca Zucchi (2)Tenor vocalistNeeds Votehttps://www.facebook.com/luca.zucchi.777/The Choir Of Clare College + +15575187Samuel Jones (11)Classical Tenor vocalistNeeds VoteThe Choir Of Clare College + +15620745Lilian HarismendyFrench classical clarinetist.Needs VoteOrchestre Philharmonique De Radio France + +15620748Victor BourhisFrench classical clarinetist.Needs VoteOrchestre Philharmonique De Radio France + +15620757Marta FossasSpanish classical double bassist.Needs VoteOrchestre Philharmonique De Radio France + +15620760Wei-Yu ChangTaiwanese classical double bassist.Needs VoteOrchestre Philharmonique De Radio France + +15620781Rodolphe ThéryFrench classical percussionist.Needs VoteOrchestre Philharmonique De Radio France + +15620790Arno MadoniFrench classical violinist.Needs VoteOrchestre Philharmonique De Radio France + +15620796Ji-Yoon ParkSouth-Korean classical violinist.Needs VoteOrchestre Philharmonique De Radio France + +15620799Mireille JardonFrench classical violinist.Needs VoteOrchestre Philharmonique De Radio France + +15622026Jane MarvineOboistNeeds VoteBaltimore Symphony Orchestra + +15623334Clara Lefèvre-PerriotFrench classical violist.Needs VoteOrchestre Philharmonique De Radio France + +15624225Joe LabozettaAmerican Bass vocalistNeeds VoteChicago A CappellaChicago Symphony Chorus + +15624954Katelyn LeeAmerican Soprano vocalistNeeds VoteChicago A CappellaChicago Symphony ChorusGrant Park Chorus + +15624957Kristin LelmAmerican Soprano vocalistNeeds VoteChicago A CappellaChicago Symphony Chorus + +15624960Ace Gangoso Ace T. Gangoso American Tenor vocalistNeeds VoteChicago A CappellaChicago Symphony ChorusGrant Park Chorus + +15640542Alexander SchafftTenor vocalist, born 1982 in Merseburg, German Democratic Republic.Needs Votehttps://www.serkowitzer-volksoper.de/stage_detail.php?titel=Alexander%20SchafftChor der Staatsoper Dresden + +15641370Anton PolezhayevViolinistNeeds VoteNew York Philharmonic + +15642306Kathrin LorenzenGerman soprano, active in Sweden, living in Stockholm, born on November 3, 1994 in Flensburg, Germany. + +She has been singing in [a784693] since 2021, as a permanent member. + +She has a bachelor's degree in classical singing from Leipzig and Saarbrücken, and is studying for a master's degree at the Royal Academy of Music in Stockholm in 2024. + +She has won first prize at the international Telemann competition in Magdeburg in 2023, won the Royal Academy of Music competition Soloist Prize in January 2024, and in June 2024 Lorenzen was awarded 2nd prize in the international Mirjam Helin competition in Helsinki, in competition with 485 singers from 57 countries.Needs Votehttps://www.kathrinlorenzen.com/https://sv.wikipedia.org/wiki/Kathrin_LorenzenLorenzenRadiokören + +15651441Maurice Young (5)British violinistNeeds VotePhilharmonia Orchestra + +15661191German TcakulovRussian born violinistNeeds VoteSymphonie-Orchester Des Bayerischen Rundfunks + +15675405César ThomsonCésar Thomson (18 March 1857 – 21 August 1931) was a Belgian violinist, composer, and teacher.Needs VoteBerliner Philharmoniker + +15684468Diyang MeiDiyang Mei (born 1994) is a Chinese violist. 1st Principal Viola of the [a260744] since October 2022.Needs VoteBerliner PhilharmonikerMünchner Philharmoniker + +15699909Erich VenzkeErich Venzke (1 June 1896 - 8 December 1976) was a German oboist. +A member of the [a260744] from 1924 to 1961.Needs VoteErich VenskeBerliner PhilharmonikerPhilharmonisches Orchester Bremerhaven + +15722364Ernst DörflingerErnst Dörflinger was a classical horn player.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +15736140Николай СелицкийНиколай Модестович СелицкийNikolai Selitsky (1904–1985) was a Russian folk orchestra conductor.Needs Votehttps://100philharmonia.spb.ru/persons/9050/Н. М. СелицкийН. СелицкийРусский Народный Оркестр Имени В. АндрееваОркестр Народных Инструментов Ленинградского Комитета Радиоинформации + +15744486Daniel Hawkins (12)American classical hornist.Needs VoteSan Francisco SymphonyDallas Symphony Orchestra + +15765324Gabriel WernlyClassical CellistNeeds VoteCamerata Bern + +15765327Christina Merblum BollschweilerClassical ViolinistNeeds VoteCamerata Bern + +15765330Vlad Popescu (5)Classical ViolinistNeeds VoteCamerata Bern + +15768171Valerian ShirkovВалериан Фёдорович ШирковValerian Shirkov (1805 - 1856) - Russian poet and librettist.Needs Votehttps://bibra.ru/subject/shirkov-val/#tophttps://ru.rodovid.org/wk/%D0%97%D0%B0%D0%BF%D0%B8%D1%81%D1%8C:592552https://www.mke.su/doc/ShIRKOVY.htmlSchirkowShirkovV. F. ShirkovV. F. ŠirkovV. ShirkovV.F. ShirkovValerian ShirkinŠirkovВ. ШирковВалериан Ширков + +15769329Hans ClebschClassical hornist.Needs VoteThe Cleveland Orchestra + +15772281Robert Lewis (43)Classical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +15777798Gail SchwarzbartGail Ruth Denny SchwarzbartAmerican classical violinist, died of cancer in October 1996.Needs VoteSan Francisco Symphony + +15778725Lukas GassnerLukas Gassner is an Austrian trombonist and euphonium player.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +15790995Sávio De La CorteDouble bassist from Sau Paulo, BrazilNeeds VoteBamberger SymphonikerEnsemble Oriol BerlinFrankfurter Opern- Und MuseumsorchesterBerliner KammerorchesterSymphony Orchestra Of The Gran Teatre Del Liceu De Barcelona + +15806661Elizabeth Starr MasoudniaClassical oboist.Needs VoteElizabeth StarrThe Philadelphia Orchestra + +15829409Leonardo Ortega (2)Classical Baritone vocalistNeeds VoteLe Concert Spirituel + +15829613Cédric MeyerFrench Baritone VocalistNeeds VoteLe Concert Spirituel + +15829616Michael Smith (119)Tenor VocalistNeeds VoteLe Concert Spirituel + +15836621Etienne GarreauFrench Tenor vocalistNeeds VoteLe Concert Spirituel + +15836876Antoine StrubCountertenor & Alto vocalistNeeds VoteLe Concert Spirituel + +15841691Zhan ShuChinese classical violinist.Needs VoteThe Cleveland OrchestraPittsburgh Symphony Orchestra + +15844487Katherine SiochiAmerican classical harpist.Needs Votehttps://www.katherinesiochi.com/San Francisco Symphony + +15844532Steven Franklin (3)American classical trumpeter.Needs VoteSaint Louis Symphony OrchestraThe Kansas City Symphony + +15844589Wyatt UnderhillAmerican classical violinist.Needs VoteSan Francisco Symphony + +15888494Harriet Johnson (2)Soprano vocalistNeeds VoteTaverner Choir + +15909311Barry Squire (3)Violin player, fl. mid-20th century.Needs VoteBBC Symphony Orchestra + +15943035Aaron SchumanAmerican classical trumpeter.Needs VoteSan Francisco Symphony + +15953310Peder ReiffAmerican tenor vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +15953394Susan Nelson (2)Soprano vocalist.Needs VoteChicago Symphony ChorusGrant Park Chorus + +15970965Gita LaddCellistNeeds VoteBaltimore Symphony OrchestraAtlantic String Quartet (2) + +15970977Gregory MulliganViolinistNeeds VoteBaltimore Symphony OrchestraSan Antonio Symphony OrchestraAtlantic String Quartet (2) + +15982233Rudolf UschmannRudolf Uschmann (31 December 1884 - 23 May 1960) was a German cellist. +A member of the [a260744] from 1922 to 1925.Needs VoteBerliner PhilharmonikerRundfunk-Sinfonieorchester Berlin + +15988527Lenart ZihTrumpet playerNeeds VoteConcertgebouw Chamber OrchestraŠ'ta godba + +15994641Alma GrañaAlma Noemí Graña de DiegoSpanish classical harp player.Needs VoteOrquesta Sinfónica de RTVE + +16013319Barbara Andres (4)Classical cellist.Needs VoteSan Francisco Symphony + +16013325Brian Marcus (4)Classical double bassist.Needs VoteSan Francisco Symphony + +16013328Leonid Plashinov-JohnsonClassical violist, born in Russia.Needs VoteSan Francisco SymphonySaint Louis Symphony Orchestra + +16013331In Sun JangClassical violinist, born in Seoul, South Korea.Needs VoteSan Francisco Symphony + +16013334Cathryn DownAmerican classical violinist.Needs VoteSan Francisco Symphony + +16013337Dan Carlson (4)Classical violinist.Needs VoteSan Francisco Symphony + +16014000Steve SánchezClarinettist, born in San Francisco, California, USA.Needs VoteSan Francisco Symphony + +16014003Russ de LunaEnglish Horn player.Needs VoteSan Francisco Symphony + +16014009Marty ThenellClassical percussionist.Needs VoteSan Francisco Symphony + +16014117Fredrik MattsonSwedish singer.Needs VoteRadiokören + +16044648Beatrice ChenViolist.Needs Votehttps://cso.org/about/rosenthal-archives/former-musicians/beatrice-chen/Chicago Symphony Orchestra + +16048110Andrew Clarke (18)English classical horn player.Needs VoteEnglish Chamber Orchestra + +16048119Joanna GoddenViolinist.Needs VoteEnglish Chamber Orchestra + +16059735Bertold StecherTrumpet player born in 1987 in Schlanders, South Tyrol, Italy. +In August 2022, he joined the Berlin Philharmonic Orchestra as the second trumpet. +Since April 2022 lecturer for trumpet at the Hochschule für Musik und Theater Rostock.Needs Votehttps://www.musicsystemitaly.eu/menthors/bertold-stecher/https://www.hmt-rostock.de/hochschule/lehrende/institut-fuer-musik/blaeserabteilung/bertold-stecher/https://www.probrass.at/ueber-uns/Berliner PhilharmonikerPro Brass + +16068021Bernhard Eduard MüllerGerman composer and horn player. (born on June 2, 1842 in Altenburg).Needs Votehttps://www.french-horn.net/index.php/biographien/90-bernhard-eduard-mueller.htmlB. Ed MüllerBernhard Eduard MuellerMullerMüllerGewandhausorchester Leipzig + +16069281Christine Lee (7)Cellist. Joined the cello section of the Boston Symphony Orchestra in August 2023.Needs Votehttps://www.bso.org/profiles/christine-leeBoston Symphony Orchestra + +16069284Roric CunninghamAmerican cellist. Joined the Boston Symphony Orchestra cello section in August 2023 at TanglewoodNeeds Votehttps://www.bso.org/profiles/roric-cunninghamBoston Symphony Orchestra + +16073427Ellen PendletonAmerican classical violinistNeeds VoteEllen Pendleton TroyerBaltimore Symphony Orchestra + +16076562Silvestrs KalniņšClassical cellistNeeds VoteLondon Symphony Orchestra + +16076565Arvid Larsson (2)BassoonistNeeds VoteLondon Symphony Orchestra + +16076568Alexander BoukikovHornistNeeds VoteLondon Symphony Orchestra + +16076571Amadea Dazeley-GaistClassical hornistNeeds VoteLondon Symphony Orchestra + +16076574Gemma RileyClassical trombonistNeeds VoteLondon Symphony Orchestra + +16076577Jonathan HollickClassical trombonistNeeds VoteLondon Symphony Orchestra + +16076583Gustav MelanderClassical trumpet playerNeeds VoteLondon Symphony Orchestra + +16076589Alexander McFarlaneClassical violistNeeds VoteLondon Symphony Orchestra + +16076592Mizohu UeyamaClassical violinistNeeds VoteLondon Symphony Orchestra + +16076595Thomas Beer (2)ViolinistNeeds VoteLondon Symphony Orchestra + +16076598Angela WeeClassical violinistNeeds Votehttps://www.angelawee.com/London Symphony Orchestra + +16076601Naori TakahashiViolinistNeeds VoteLondon Symphony Orchestra + +16076604Patrycja MynarskaViolinistNeeds VoteLondon Symphony Orchestra + +16116489Anthony LindenAmerican flutistNeeds VoteLos Angeles Philharmonic Orchestra + +16120137Christian Schindler (2)Classical bassistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120140Marian GorskiViolistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120143Roland BierwaldViolistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120146Diethard LaxaViolinistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120149Edo FlickerViolinistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120152Eduard SperlingViolinistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120155Mark Lambert (10)ViolinistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120158Michael GudkinViolinistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16120161Jaroslaw BalcerCellistNeeds VoteKurpfälzisches Kammerorchester Mannheim + +16126659Eeva MeritähtiNeeds Major Changes + +16131894Jesús Villa OrdoñezJesús Villa Ordoñez (born 1993 in Córdoba) is s Spanish classical bassoon player.Needs VoteSymphonie-Orchester Des Bayerischen Rundfunks + +16131897Lukas Richter (4)Lukas Richter (born 1991 in Cologne) is a German classical double bassist.Needs Votehttps://www.brso.de/besetzung/lukas-richter/Symphonie-Orchester Des Bayerischen RundfunksJunge Deutsche PhilharmonieKölner Domchor + +16144128Renée KniggeBassoonistNeeds VoteConcertgebouw Chamber Orchestra + +16144131Anastasia FerulevaRussian cellist, born in 1992.Needs Votehttps://anastasiaferuleva.comConcertgebouw Chamber Orchestra + +16144134Erik Rojas (3)ClarinetistNeeds VoteConcertgebouw Chamber Orchestra + +16144137Xabier BilbaoOboistNeeds VoteConcertgebouw Chamber Orchestra + +16144146Alessandro Di GiacomoViolinistNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +16144149Arthur OrnéeViolinistNeeds VoteConcertgebouw Chamber OrchestraPhion + +16144152Caspar HorschViolinistNeeds VoteConcertgebouworkestConcertgebouw Chamber Orchestra + +16144155Marina WatermanViolinistNeeds VoteConcertgebouw Chamber Orchestra + +16156602Abigail KentClassical harpistNeeds Votehttps://www.abigailkentharp.com/Baltimore Symphony Orchestra + +16156991Till SchulerTill Schuler (born 2000 in Stuttgart) is a German cellist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksTrio E.T.A. + +16174714Tal Ben-ReiIsraeli classical trombonist.Needs VoteIsrael Philharmonic Orchestra + +16190533Helena LehteläNeeds Major Changes + +16199272Aarne LaukkanenNeeds Major Changes + +16199275Runar ÖhmanNeeds Major Changes + +16199278Liisa RaunioNeeds Major Changes + +16199281Olavi PaljakkaNeeds Major Changes + +16199284Lahja PuustinenNeeds Major Changes + +16204177Kai LindenNeeds Major Changes + +16204180Holger HarrivirtaNeeds Major Changes + +16204183Ilma Solin-IkonenNeeds Major ChangesIlma "Vilppu" Solin-Ikonen + +16204186Topi LaineNeeds Major Changes + +16204189Armas JokioNeeds Major Changes + +16204192Urho TolonenNeeds Major Changes + +16214806Sirkka HeinoNeeds Major Changes + +16232821Kaarina PunnaNeeds Major Changes + +16247644Allan Schiller (2)American classical violinist. He was member of the violin section of the New York Philharmonic from 1964 to 1999.Needs VoteNew York Philharmonic + +16248343Melanie RothmanMelanie Rothman is a British oboist.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksDuisburger PhilharmonikerOrchester Der Deutschen Oper Am RheinHessisches Staatsorchester Wiesbaden + +16261684Roger Hurt (2)Classical Bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261687Thomas WoodyClassical Bass & Baritone vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261705Andrew DuBoisClassical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261708Andrew WorthClassical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261711Bruce White (12)Classical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261714Carl Broemel (2)Classical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261717George Benn (2)Classical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261720Harry CarmackClassical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261723Michael Carter (26)Classical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261726Philip Van DeusenClassical Countertenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261768Alan MaysClassical Tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261771David Honoré (2)Tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261774Michael DuBois (5)Classical Tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261777Roy Jones (14)Classical Tenor vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261780Adam CloeClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261783Brian FirebaughClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261786Brose PartingtonClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261789Brown PartingtonClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261792David BennClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261795Elliot HostetterClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261798Jonathan ManningClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261801Justin Morris (9)Classical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261804Mark LokerClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261807Nicholas FennigClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261810Ryan Marshall (12)Classical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261813Scott ForemanClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261816William Ferguson-wagstaffeTreble vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261819Zachary BartonClassical Treble vocalist (Boy Soprano]Needs VoteThe Choir Of Christ Church Cathedral + +16261834Daniel Morris (12)Needs VoteThe Choir Of Christ Church Cathedral + +16261837Scott FirebaughChoirister vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16261840Sean ManterfieldChoirister vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16263502Arnold ColeBritish classical violin player, fl. 1950s-1960s.Needs VoteBBC Symphony Orchestra + +16282051Antero RaevuoriNeeds Major Changes + +16282054Hamilton MillardNeeds Major Changes + +16282057Lasse SaarikkoNeeds Major Changes + +16282060Olavi KallionpääNeeds Major Changes + +16282063Sigurd LehmuskoskiNeeds Major Changes + +16291357Richard MuehlmannClassical double bassist.Needs VoteSaint Louis Symphony Orchestra + +16291360Janice Coleman (2)Classical flutist.Needs VoteSaint Louis Symphony Orchestra + +16291363Janice Smith (7)Classical flutist.Needs VoteSaint Louis Symphony Orchestra + +16291366Frances TiClassical harpist.Needs VoteSaint Louis Symphony Orchestra + +16291372Thomas Parkes (3)Classical oboe player.Needs VoteSaint Louis Symphony Orchestra + +16291384Lee GronemeyerClassical violist.Needs VoteSaint Louis Symphony Orchestra + +16291387Margaret SalomonClassical violist.Needs VoteSaint Louis Symphony Orchestra + +16291390Susan KierClassical violist.Needs VoteSaint Louis Symphony Orchestra + +16291393William Martin (18)Classical violist.Needs VoteSaint Louis Symphony Orchestra + +16291396Eiko KataokaClassical violinist.Needs VoteSaint Louis Symphony Orchestra + +16291399Helen ShklarClassical violinist.Needs VoteSaint Louis Symphony Orchestra + +16291402John Lippi (2)Classical violinist.Needs VoteSaint Louis Symphony Orchestra + +16291405Judith RiedigerClassical violinist.Needs VoteSaint Louis Symphony Orchestra + +16291408M. Louise GrossheiderClassical violinist.Needs VoteSaint Louis Symphony Orchestra + +16291411Ilya FinkClassical cellist.Needs VoteSaint Louis Symphony Orchestra + +16291414Masayoshi KataokaClassical cellist.Needs VoteSaint Louis Symphony Orchestra + +16291417Savely SchusterClassical cellist.Needs VoteSaint Louis Symphony Orchestra + +16291468Louis Kampouris (2)Classical violinist.Needs VoteSaint Louis Symphony Orchestra + +16291513Robert Mottl (2)Classical bassoonist.Needs VoteSaint Louis Symphony Orchestra + +16292380Bruce Moore (11)Horn playerNeeds VoteBaltimore Symphony Orchestra + +16301101Mary BissonHorn playerNeeds VoteMary C. BissonBaltimore Symphony Orchestra + +16301104Mary WoehrMary Karen WoehrAmerican classical pianist and violist, born June 12, 1953, and died July 21, 2025Needs VoteBaltimore Symphony Orchestra + +16301371Uzi ShalevIsraeli bassoonist.Needs VoteIsrael Philharmonic OrchestraEshel Trio + +16301383Dan MoshayevIsraeli classical percussionistNeeds VoteIsrael Philharmonic Orchestra + +16301437Lotem BeiderLotem Beider Ben AharonIsraeli classical violistNeeds VoteIsrael Philharmonic Orchestra + +16311283Armin RadlherrNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311286Alexander ObranskyNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311289Clemens GaumannmüllerNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311292Lukas KarzelNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311295Maximilian AngerNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311298Michael FlorendoNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311301Michael Richter (12)Needs VoteDie Wiener SängerknabenChorus Viennensis + +16311304Oskar MaiwaldNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311307Philipp SchöllhornNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311310Sascha SopperNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311313Walter WieserNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311316Wolfgang MandlerNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16311319Yoon Sang ChoNeeds VoteDie Wiener SängerknabenChorus Viennensis + +16349875National Youth Choir Fellowship EnsembleEnsemble made up of past & present Fellows of the National Youth Choir.Needs VoteFellows of the National Youth Choirs of Great BritainNational Youth Choir Of Great Britain + +16393546Simon KovarskyRussian cellistNeeds VoteSt. Petersburg Philharmonic Orchestra + +16395727Vincenzo PanormoVincenzo Trusiano Panormo[b]Vincenzo Panormo[/b], né [b]Trusiano[/b] (30 November 1734, Monreale, Italy — bur. 19 March 1813, London) was a distinguished British luthier and maker of woodwind instruments of Italian descent. Three of his sons, [b][a=Joseph Panormo][/b] (1768—1837), [b]George[/b] (1776—1852), and [b][a=Louis Panormo][/b] (1784—1862), all became prolific luthiers. Primarily renowned for violoncellos and other bowed string instruments, Vincenzo also made woodwinds in his early career, such as recorders, oboes, and clarinets. Panormo lived during a tumultuous era, often forced to immigrate under political or economic pressures, and had worked in Italy (🇮🇹 1754–70), France (🇫🇷 1770–72 and ca.1779–90), Ireland (🇮🇪 ca.1797–80), and England (🏴󠁧󠁢󠁥󠁮󠁧󠁿 1772–79, 1790–97, and 1801–13). Today, Vincenzo and sons are universally recognized as the most impactful and significant early-19th-century UK luthiers, who broadly propagated the "Cremonese" tradition and profoundly influenced several generations of London violin-makers. In October 2016, Tarisio Auctions organized a large-scale exhibition in London featuring many instruments by the Palermo family, as well as Vincenzo's new comprehensive biography published in the catalog. + +Born in Monreale, a small cathedral town north of Palermo in Sicily, Vincenzo was the second son of instrument-maker [b]Gaspare Trusiano ❲Panormo❳[/b] (ca.1715—17??). Vincenzo, who presumably learned the oeuvre under his father, was already making instruments by 1752, at an early age of eighteen, evident by a double bass with a manuscript label "[b][i]Vincen[/i]z?*[i]s Trusiano | fecit Panormi | 1752[/i][/b]." The family began using the "Panormus" pseudonym (the Latin name of Palermo) sometime after settling in Naples in 1759, subsequently anglicized as "Panormo" and adopted as their legal name. Vincenzo eventually stepped away from the prosperous family business, dedicated solely to woodwind manufacturing, to pursue his passion for luthiery. Around 1770, he left Italy and immigrated to France, settling in Paris. Vincenzo's first tenure in the country lasted for just two years, as Panormo faced a hostile market environment with barren job prospects as an "unlicensed" craftsman ineligible to join the city's Guild of St. Luke. + +In 1772, Vincenzo left the country for England with his two sons, firstborn [b]Francesco Panormo[/b] (c.1763—1843), who was around ten, and four-year-old [b][url=/artist/16393216]Joseph[/url][/b]. The talented maker quickly gained a foothold in London's thriving musical scene, achieving both critical and financial success. By 1776, [i]Panormo’s Music Shop[/i] on Little Newport Street was praised in the local press among the leading London violin traders. In October 1779, the Panormo family had to flee their new home yet again, as tensions between catholics and protestants in London, fueled by the strong opposition to the Catholic Relief Act of 1778, only kept increasing. Vincenzo returned to Paris, where recent economic reforms triggered the modernization of the century-old guild system, and restrictions preventing women and foreigners from partaking in artisanal arts were lifted. Panormo settled at rue de l'Arbre-Sec, where his workshop excelled over the next decade. + +By 1791, the Panormo family returned to London, forced to immigrate for the fourth time to escape the outbreak of the French Revolution. According to many sources, Panormo briefly traveled to Ireland around 1797, where he spent two or three years in Dublin, presumably working with the "Irish Stradivari," renowned luthier [b][url=/artist/10194487]Thomas Perry[/url][/b] (1738/39—1818). Vincenzo returned to London soon after the 1801 Act of Union between Britain and Ireland, and spent his final years in Soho. + +[b]Labels/branding[/b] +Some violins had 'PANORMO' stamped on the back, underneath the button, and sometimes internally, on the woodblock. + +☛ Plain rectangular, handwritten: +[i]vincenzo Panormo italiano +fecit in londini Anno 1774[/i] + +☛ Printed/stamped, partially eligible: +[b]Panormo Fecit +Londrini {*} 18__[/b] + +☛ Handwritten, undecorated: +[i]Vincenzo Panormo +London 1791[/i] + +[i]Vincenzo Panormo +Londru 179_[/i] + +☞ [i][u]Fake label[/u][/i] — Printed facsimile manuscript, decorative frame, large heraldic symbol on the left: "griffin segreant" (in rampant pose) affronté with serpent tail, [i]Armi di Palermo[/i] upper-rim text, circled in a dotted frame with Maltese cross atop. Neither the source nor the original creator is known, but these labels appear on countless instruments; a notable UK expert and consultant, [b]Benjamin Hebbert[/b] (b. March 1977), wrote that he'd occasionally seen this faux label inside genuine Panormo violins: + +[i][b]Vincenzo Trusiano +Panormo fecit +Anno 17__[/i][/b]Needs Votehttps://tarisio.com/cozio-archive/browse-the-archive/makers/maker/?Maker_ID=515https://amati.com/maker/panormo-vincenzo-trusiano/https://de.wikipedia.org/wiki/Vincenzo_Panormohttps://tarisio.com/panormo-exhibition/ + +16424464John Stefan (3)Trumpet player +Former Lead Trumpet & Flugelhorn Player with "Frankie Valli & The Four Seasons," "Jay & The Americans," "Mitch Ryder & The Detroit Wheels," "Bobby Cruz & Richie Ray Latin Bands," Big Bands, Jazz Big Bands, Orchestras, Broadway Shows, Show Bands & Club Bands. +Over the years I had the good fortune of playing recording sessions for Quincy Jones, Bob Crewe, Frankie Valli & The Four Seasons, Mitch Ryder, Bobby Cruz and many other artists Needs Votehttps://www.youtube.com/@johnstefan-vn9sgThe Four SeasonsJay & The AmericansMitch Ryder & The Detroit WheelsChuck Trois & The National Bank + +16424470Gary VolpeDrummer from Vineland, New Jersey + +Also ran a Philly steak place called The Yellow Submarine in Chattanooga, TN on 101 River Street. + +Mostly known for being the Touring drummer for [a121112] from 1970-71. + +Was a part of many garage groups of the 60s - also including Sam Allen & The Monkey Men before they became Mud and eventually [a1503043] + + +Needs Votehttps://en.wikipedia.org/wiki/The_Four_Seasons_(band)https://www.youtube.com/watch?v=ikG3IT1_XN4The Four SeasonsChuck Trois & The National Bank + +16431328Gal NyskaClassical cellistNeeds VoteIsrael Philharmonic Orchestra + +16446820Łukasz SzyrnerPolish classical cellistNeeds VoteBaltimore Symphony Orchestra + +16498553Angel SanzoÁngel Fregoli SanzóArgentinean pianist.Needs VoteÁngel SanzóLeopoldo Federico Y Su Orquesta TípicaAngel Sanzo Cuarteto + +16498565Henry BallestroArgentinean viola & violin player — also appears as Enry or Enrique BallestroNeeds VoteEnry BalestroHenry BalestroOscar Cardozo Ocampo Y Su OrquestaLeopoldo Federico Y Su Orquesta TípicaAtilio Stampone Y Su Orquesta TípicaOsvaldo Piro Y Su OrquestaOrquesta Osvaldo RequenaRaul Garello Y Su Gran Orquesta + +16522103Dorota Woźniak-MocarskaBorn 1976 in Warszawa. Polish cellist. She has collaborated with artists such as [a3383882], [a487166], [a872066], [a467804], [a273050] and [a1234418].Needs VoteDorota MocarskaDorota WoźniakWarsaw Philharmonic Chamber OrchestraOrkiestra Symfoniczna Filharmonii NarodowejOrkiestra Opery I Filharmonii PodlaskiejOpium QuartetSinfonia Viva (2)I Solisti Di Varsavia + +16525514Bernardo Calcagno[b]Bernardo Calcagno[/b], also known as [b][i]Bernardus Calcanius[/b][/i] (ca.1680 — 1756, Genoa), was an Italian luthier and maker of violins, cellos, violas d'amore, and other bowed and plucked stringed instruments. Often hailed as the forefather of Genoese 18th-century luthiery school, he was one of the first native Italian violin-makers in the city (and, arguably, the most talented). Calcagno directly inspired several prominent luthiers in the following generation, such as [b][a=Paolo Castello][/b] (fl. ca.1740–80/1817) and [b]Giuseppe Cavaleri[/b] (fl. 1730–47). + +Very little is known about Calcagno's early life; evidently, Bernardo only engaged in luthiery in the early 1730s, when he was already over 40. Most likely, Calcanius learned the oeuvre and apprenticed under one of German lute-makers from Füssen, Bavaria, who settled in Genoa after immigrating in the early 17th century: [b]Cristoforo Rittig[/b] (1640—1695), [b]Martinus Heel[/b] (1630—1708), or, most likely, [b]Andreas Statler[/b] (1674—1732) — since 1730 census records listed Calcagno among his household residents. Statler, or "[i]Stelzer[/i]" in other sources (alternatively, [i]Stass(l)er[/i], or "[i]Stanzer[/i]"), who claimed to be a pupil of the [i][url=/artist/7534119]Casa Amati[/url][/i]'s last heir, [a=Girolamo Amati II] (1649—1740), on one of his 1723 violin labels, was also very close to [b]Jacopo Filippo Cordano[/b] (1660—1732), the first known Genoese-born luthier. + +In 1732, both Statler (who was only 58) and 72-year-old Cordano died, effectively leaving Calcanius as the sole active luthier in Genoa. Based on St Mary Magdalen Street, where most of the city's artisans and instrument-makers resided, Bernardo soon gained a strong foothold on the local scene. Circa 1740, he established a partnership with another obscure luthier, [b]Antonio Pazarini[/b] (17??—1744), as indicated by a few extant instruments bearing a joint label: [i]Antonius Pazarinius et Calcanius | Genuæ 𝟏𝟕𝟦𝟢[/i] (Nothing else is known about Pazarini's life or work). Calcagno remained active until his final years and died in his mid-70s; presumably, Bernardo was childless and didn't have well-known direct apprentices. + +[b]Labels[/b] +Printed, bold typeset, unframed, decorated with a Maltese cross. Some with cut corners: + +☞ [b]BERNARDUS CALCANIUS +Fecit Genuæ Anno 17[i]𝟦𝟩[/i] ✠[/b] +☞ [b]Bernardus Calcanius fecit +Genuæ annis 17_ _ ✠[/b]Needs Votehttps://tarisio.com/cozio-archive/cozio-carteggio/bernardo-calcagno-part-1/https://amati.com/maker/calcanius-bernardus/https://tarisio.com/cozio-archive/browse-the-archive/makers/maker/?Maker_ID=97https://emuseum.nmmusd.org/objects/6533/B. CalcaniusBernardus Calcanius + +16582619Vilém Kijonka (2)Czech classical violistNeeds VoteVilem KijonkaConcertgebouworkestThe Vondel Strings + +16587770Christian Hacker (3)German classical cellistNeeds VoteConcertgebouworkest + +16605536Haruka Katayama (2)Classical violinistNeeds VoteOrchestre National Du Capitole De Toulouse + +16612238Hendrik de Vries (4)Hendrik de Vries (1883-1957) was a Dutch flutist. After his graduation from the Amsterdam Conservatory he played in various Amsterdam orchestras. In 1907 he joined the Imperial Court Opera in Berlin. In 1912 he played flute in the ensemble that premiered [a465983]'s Pierrot Lunaire. As a soloist with the [a260744] in 1921 he premiered [a1032262]'s Divertimento for flute and orchestra. In 1926 he was playing with the Capitol Orchestra in New York, and in the late 1930s he joined [a888854]'s [a279614]. In 1940 he obtained a position with the [a1411686].Needs VoteBerliner PhilharmonikerNBC Symphony OrchestraThe Metropolitan Opera House Orchestra + +16612241Jacques van Lier (2)Jacques van Lier (1881 - 1934, OS 1937) was a Dutch classical flautist. Principal flautist with the [a754974] from 1907 until his death.Needs VoteWiener Philharmoniker + +16612262Paul BlödnerGerman Hornist. Alongside [a1183542] and [a3788070] he was a member of the "Erste Bläser-Vereinigung der Staatsoper Dresden" and the "Kapelle der Staatsoper Dresden" in the 1920s.Needs VoteStaatskapelle DresdenBläserquintett Der Staatskapelle Dresden + +16612268Jaques Van Lier (2)Flutist (1881-1934). He was the principal flautist with [a754974] from 1907 to his death in 1934.Needs VoteWiener Philharmoniker + +16674787Erik Williams (5)Swedish classical cellistNeeds VoteSveriges Radios Symfoniorkester + +16685881Kaoru NambaJapanese flautist.Needs Votehttps://www.facebook.com/nambakaoruJapan Philharmonic Symphony Orchestra + +16715254Manny Fox (2)Manuel “Manny” FoxAmerican trumpeter who played with the Georgie Auld orchestra, Coleman Hawkins, Ella Fitzgerald, Count Basie, Dizzy Gillespie and other big bands. +Born March 15, 1918 in Boston, Massachusetts, USA. +Died June 24, 1982 (aged 64) in Pasadena, California, USA.Needs Votehttps://www.findagrave.com/memorial/281127672/manuel-foxManuel FoxGeorgie Auld And His Orchestra + +16723366Julie Moulin (2)French classical flautistNeeds VoteConcertgebouworkestEbony Band + +16786495Richard ZhengClassical violinistNeeds VoteOrchestre symphonique de Montréal + +16803103Josef SteinhäuslerClassical violinist.Needs VoteJosef SteinhauslerJoseph SteinhäuslerSymphonie-Orchester Des Bayerischen Rundfunks + +16842688Ubald Schneider (2)German trumpet player.Needs VoteSymphonie-Orchester Des Bayerischen RundfunksOrchester Walter Schacht + +16855351Григорий НемеренецкийГригорий Маркович НемеренецкийGrigory Nemerenetsky (born 1904 – died?) is a Russian cellist. +Grigory Nemerenetsky graduated from the [l285011] in 1928, but linked his creative career with [a343871].Needs Votehttps://100philharmonia.spb.ru/persons/18140/Г.М. НемеренецкийLeningrad Philharmonic Orchestra + +16873312Martha Eikemo AndersenTrombonist with [a380036] 31 January 2023-present.Correcthttps://www.facebook.com/martha.e.andersen/Sveriges Radios Symfoniorkester + +16874566Arnold GregorianArnold Gregorian CarverAmerican classical double bassist, born September 11, 1944, and died September 3, 2023.Needs VoteBaltimore Symphony Orchestra + +16874572David Sheets (2)American classical double bassistNeeds VoteBaltimore Symphony Orchestra + +16874575Eric Stahl (2)American classical double bassistNeeds VoteBaltimore Symphony Orchestra + +16874578Mark Huang (2)American classical double bassistNeeds VoteBaltimore Symphony Orchestra + +16874584Randall S. CamporaAmerican classical trombonistNeeds VoteBaltimore Symphony Orchestra + +16874590Julie Green (6)Julia Green GregorianAmerican classical bassoonist, was married to the late [a=Arnold Gregorian]Needs VoteBaltimore Symphony Orchestra + +16874593Bo LiChinese classical cellistNeeds VoteBaltimore Symphony Orchestra + +16874596Chang Woo LeeSouth-Korean classical cellistNeeds VoteBaltimore Symphony OrchestraNational Arts Centre OrchestraThe Atlantic Symphony Orchestra + +16874602Seth LowAmerican classical cellistNeeds VoteBaltimore Symphony OrchestraBaltimore Chamber Orchestra + +16874611William JenkenCanadian classical clarinetist +Needs VoteBaltimore Symphony OrchestraBaltimore Chamber Orchestra + +16874620Marcia KamperMarcia KämperClassical flautistNeeds VoteBaltimore Symphony Orchestra + +16874662Laurie SokoloffAmerican classical flautistNeeds VoteBaltimore Symphony Orchestra + +16874665Dennis Kain (2)American classical percussionist, died September 15, 2012Needs VoteBaltimore Symphony Orchestra + +16874674Ge TaoChinese classical trumpeterNeeds VoteColumbus Symphony OrchestraThe Colorado Symphony OrchestraBaltimore Symphony OrchestraNew World Symphony OrchestraThe Atlantic Symphony Orchestra + +16874680Delmar StewartAmerican classical violist, born September 28, 1949, and died August 12, 2023.Needs VoteBaltimore Symphony Orchestra + +16874683Genia SlutskyClassical violistNeeds VoteBaltimore Symphony Orchestra + +16874686Jeffrey Stewart (6)American classical violistNeeds VoteBaltimore Symphony Orchestra + +16874692Sharon Pineo MyerClassical violistNeeds Votehttps://www.facebook.com/sharon.myerBaltimore Symphony Orchestra + +16874695Andrew WasyluszkoCanadian classical violinistNeeds VoteBaltimore Symphony Orchestra + +16874707Gregory KupersteinRussian-born classical violinistNeeds VoteBaltimore Symphony Orchestra + +16874713John Merrill (6)John Cutler MerrillAmerican classical violinist, died March 31, 2019.Needs VoteBaltimore Symphony Orchestra + +16874731Charles Underwood (6)Charles George UnderwoodAmerican classical violinist, born September 30, 1951, and died September 13, 2023 in Paris (France)Needs VoteBaltimore Symphony Orchestra + +16874737Colin SorgiAmerican classical violist and violinistNeeds VoteBaltimore Symphony Orchestra + +16874743Ivan StefanovicSerbian classical violinistNeeds VoteBaltimore Symphony Orchestra + +16874746James UmberAmerican classical violinistNeeds VoteBaltimore Symphony Orchestra + +16874752Leonid BriskinClassical violinistNeeds VoteBaltimore Symphony Orchestra + +16874758Qing LiChinese-born classical violinistNeeds VoteBaltimore Symphony Orchestra + +16940251Oliver Hirsch (4)English viol playerNeeds VoteThe Consort Of Musicke + +16946869Christopher Byler (2)Classical Bass vocalistNeeds VoteThe Choir Of Christ Church Cathedral + +16950193Mark Taylor (88)Scottish flautistNeeds VoteRoyal Scottish National Orchestra + +16950205Craig Anderson (23)Tuba PlayerNeeds Votehttps://www.craigandersonmusicbrass.com/Royal Scottish National Orchestra + +16978477Barbara WirthUS cellist from Saint Joseph, MI; cello instructor at [l472576].Needs Votehttps://www.linkedin.com/in/barbara-wirth-b6702b10/San Francisco SymphonyCincinnati Symphony OrchestraSan Francisco Opera OrchestraChicago Lyric Opera OrchestraSan Francisco Ballet Orchestra + +16999906Ralph Johnson (17)Needs VoteChicago Symphony OrchestraChicago Symphony Woodwind Quintet + +17007403Stephen Tavani (2)American classical violinist.Needs Votehttps://stephentavani.com/https://www.clevelandorchestra.com/people/stephen-tavaniThe Cleveland OrchestraChamber Symphony Of PhiladelphiaThe Colburn Orchestra + +17007418Sun Joo ParkSunjoo ParkKorean classical violinist.Needs Votehttps://www.bsomusic.org/bio/Sunjoo-Park/Baltimore Symphony OrchestraThe Colburn Orchestra + +17007526Mindy H. ParkClassical cellist and educator currently based in St. Louis, Missouri, where she is the operations manager for the Saint Louis Symphony Orchestra.Needs Votehttps://publish.illinois.edu/paul-rolland-workshop/faculty/mindy-park/https://www.npr.org/2007/11/13/16270705/mindy-park-age-17-celloSaint Louis Symphony OrchestraThe Colburn Orchestra + +17007553Elyse LauzonAmerican classical horn player from Long Island, New York.Needs Votehttps://www.laphil.com/musicdb/artists/8301/elyse-lauzonLos Angeles Philharmonic OrchestraThe Colburn Orchestra + +17007562Jamie Roberts (15)American classical oboist from Chicago, Illinois.Needs Votehttps://www.kennedy-center.org/artists/r/ro-rz/jamie-roberts/National Symphony OrchestraThe Colburn Orchestra + +17016109Anika PigorschContrabassistNeeds VoteDeutsche Kammerphilharmonie Bremen + +17016115David Sasowski (2)Trumpet playerNeeds VoteDeutsche Kammerphilharmonie Bremen + +17016118Florian KapitzaViolistNeeds VoteDeutsche Kammerphilharmonie Bremen + +17020990Theodotia HartmanAmerican opera singer (soprano), (1950 - 2014) +Theodotia "Theo" Hartman was born in Indiana (USA). She studied at Indiana University, Bloominton and Butler University, Indianapolis. She has worked as a music teacher and concert/opera singer. Hartman was a member of [l1044867] and finalised her training under Janet Parlova at Bel Canto Art. Following her participation in the final round of the 1988 Pavarotti Competition in Zurich and New York Hartman was appointed soloist by [a2089818] in Lugano (Switzerland). She then moved to [a7071678] (Germany). In 1990 she became a member of [l324443] (Germany). Her numerous guest appearances included performances in the USA, Canada, Europe and Japan (where she received rave reviews for her Ozawa concert series). In 1997 she starred as Leonore in Verdi's Il Trovatore at Schweriner Schlosshof. Her repertoire included opera as well as religious music and Lieder. Hartman became a sought-after masterclass teacher at San Francisco Conservatory, Wesleyen College Macon (USA) and Tsukuba University (Japan). She also routinely appeared in radio and television broadcasts.Needs Votehttps://www.linkedin.com/in/theodotia-hartman-b0698312/?originalSubdomain=dehttps://www.findagrave.com/memorial/133867485/theodotia-hartmanCoro Della Radio Televisione Della Svizzera ItalianaVereinigte Städtische Bühnen Krefeld Mönchengladbach + +17050426Oliver JearyArtist who teamed up with [a757229] aka [a5539].Needs VoteO. JearyOllie JayeJon The Dentist & Ollie JayeTekkerzLunatic Response UnitGlobal State Allstars + +17052727Owen Cummings (2)Classical double bassist.Needs VoteBaltimore Symphony OrchestraLong Island Youth Orchestra + +17062858Людмила ПавловскаяLyudmila Pavlovskaya is a Russian bayan player.Needs VoteL. PavlovskayaЛ. ПавловскаяРусский Народный Оркестр Имени В. Андреева + +17065093Emanuele Pedrani (2)Italian classical pianist and composer, also double bassist at Orchestra del Teatro alla Scala di MilanoNeeds VoteOrchestra Del Teatro Alla Scala + +17069119Андрей Шатский (2)Андрей Иванович ШатскийAndrei Shatsky (born November 23, 1944) is a Russian flutist and professor.Needs Votehttps://moscowflutecenter.com/legends/shatskiy-andrey-ivanovich/?srsltid=AfmBOorS-ZT8H9GaCLpmyLHBQvuPKtOpDQfLLiu3hINKD_eFobfgucWoА. ШатскийБольшой Симфонический Оркестр Всесоюзного РадиоRussian National OrchestraОркестр Ленинградского Государственного Академического Малого Театра Оперы И Балета + +17084299James Buck (3)British French Horn player. + +Session musician on [a=The Beatles], Sgt. Pepper's Lonely Hearts Club Band.Needs Votehttps://www.feenotes.com/database/artists/buck-james/https://en.wikipedia.org/wiki/List_of_people_who_performed_on_Beatles_recordings#BPhilip Jones Brass EnsembleLocke Brass Consort + +17098222Sebastian BreitAustrian classical oboe player, b. Jan 26, 1998; has been principal oboist of the Vienna Philharmonic Orchestra since 2019.Needs VoteWiener Philharmoniker + +17134516Jean-Claude TassiersFrench violinist.Needs VoteJ.-CL. TassiersOrchestre National De L'Opéra De Monte-Carlo + +17146090Berta Bermejo MoyaClassical OboistNeeds VoteMünchner Rundfunkorchester + +17146093Makio BachauerClassical trumpeterNeeds VoteMünchner Rundfunkorchester + +17146096Eugene NakamuraClassical ViolinistNeeds VoteMünchner Rundfunkorchester + +17173282Alfred DoucetOboist. + +Doucet was principal oboe for The Philadelphia Orchestra from 1902-1913.Needs Votehttps://adp.library.ucsb.edu/index.php/mastertalent/detail/312730/Doucet_Alfredhttps://www.google.com/books/edition/Twenty_five_Years_of_the_Philadelphia_Or/HvKWLK-9n2MC?hl=en&gbpv=1&dq=Alfred+Doucet+oboe&pg=PA203&printsec=frontcoverThe Philadelphia Orchestra + +17175718Daniel Burrows (2)Saxophone player.Needs VoteSy Oliver And His Orchestra + +17192239George E. EvansBritish cornetist and bandleader (1926 - 2011)Needs Votehttp://johnie73.blogspot.com/2011/06/obituary-lt-col-george-e-evans-obe-arcm.htmlCaptain G.E. EvansCaptain George E. EvansLt. Col. G. EvansTrumpeters Of The Royal Military School Of MusicThe Band Of The Blues & RoyalsRoyal Horse Guards And 1st DragoonsThe Royal Artillery Mounted Band + +17206321Dorothée Leclair-ToulemondeFrench soprano vocalistNeeds VoteDorothée Leclair + +17211649Paul SpörriPaul Spörri (21 August 1909 - 9 August 1991) was a Swiss trumpet player. +A member of the [a260744] from 1927 to 1943.Needs VoteBerliner PhilharmonikerBasler Sinfonie-Orchester + +17212162Jacques van Lier (3)Jacques van Lier (24 April 1875 – 25 February 1951) was a Dutch-British cellist, composer, arranger and teacher.Needs VoteJ. Van LierЖ. ван. ЛиерBerliner PhilharmonikerBasler Sinfonie-Orchester + +17229346Willi Rosenthal (2)Willi Rosenthal (13 January 1936 - 8 February 1994) was a German violinist and occasionally mandolin player from Berlin. He's the son of [a3008861]. +A member of the [a260744] from 1962 to 1994.Needs VoteBerliner PhilharmonikerStaatskapelle BerlinOrchester der Bayreuther FestspieleOrchester Der Deutschen Oper Berlin + + diff --git a/tests/fixtures/discogs_20260201_labels.xml b/tests/fixtures/discogs_20260201_labels.xml new file mode 100644 index 0000000..b39db9a --- /dev/null +++ b/tests/fixtures/discogs_20260201_labels.xml @@ -0,0 +1,1094 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/fixtures/discogs_20260201_masters.xml b/tests/fixtures/discogs_20260201_masters.xml new file mode 100644 index 0000000..a9a0170 --- /dev/null +++ b/tests/fixtures/discogs_20260201_masters.xml @@ -0,0 +1,10 @@ + +1946857598091Tapio Rautavaara,RockPopChildren'sFolk, World, & Country2008Kulkurin Taival (Kaikki Levytykset 1946-1979)Correct + +102898195546Wolfgang Amadeus Mozart,Classical2005Complete Works = L'Oeuvre Intégrale = GesamtwerkCorrect + +535536695537Johann Sebastian BachBach,Classical2012The Complete Bach EditionCorrect + +889086495544Ludwig van Beethoven,Classical2013Beethoven: Complete EditionCorrect + + diff --git a/tests/fixtures/discogs_20260201_releases.xml b/tests/fixtures/discogs_20260201_releases.xml new file mode 100644 index 0000000..4f0f867 --- /dev/null +++ b/tests/fixtures/discogs_20260201_releases.xml @@ -0,0 +1,3211 @@ + +194VariousThe Ultimate Jazz ArchiveCompilationJazzBluesGermany2005-08-24Correct0Classic Jazz - Ragtime - DixielandSet 11-1Original Rags272275Scott Joplin1-2Maple Leaf Rag272275Scott Joplin1-3Sun Flower Slow Drag272275Scott Joplin1-4Elite Syncopations272275Scott Joplin1-5The Entertainer272275Scott Joplin1-6Cleopha272275Scott Joplin1-7Something Doing272275Scott Joplin1-8The Chrysanthemum272275Scott Joplin1-9Eugenia272275Scott Joplin1-10Lily Queen272275Scott Joplin1-11Heliotrope Bouquet272275Scott Joplin1-12Pineapple Rag272275Scott Joplin1-13Paragon Rag272275Scott Joplin1-14Euphonic Sounds272275Scott Joplin1-15Country Club272275Scott Joplin1-16Stoptime Rag272275Scott Joplin1-17Scott Joplin's New Bag272275Scott Joplin1-18Reflection272275Scott Joplin2-1Livery Stable Blues309962Original Dixieland Jazz Band2-2Dixie Jass Band One Step309962Original Dixieland Jazz Band2-3At The Jazz Band Ball309962Original Dixieland Jazz Band2-4Ostrich Walk309962Original Dixieland Jazz Band2-5Skelton Jangle309962Original Dixieland Jazz Band2-6Tiger Rag309962Original Dixieland Jazz Band2-7Bluin' The Blues309962Original Dixieland Jazz Band2-8Fidgety Feet (War Cloud)309962Original Dixieland Jazz Band2-9Sensation Rag309962Original Dixieland Jazz Band2-10Mourin' Blues309962Original Dixieland Jazz Band2-11Clarinet Marmalade Blues309962Original Dixieland Jazz Band2-12Lazy Daddy309962Original Dixieland Jazz Band2-13Margie309962Original Dixieland Jazz Band2-14Palesteena309962Original Dixieland Jazz Band2-15Broadway Rose309962Original Dixieland Jazz Band2-16Sweet Mama309962Original Dixieland Jazz Band2-17Home Again Blues309962Original Dixieland Jazz Band2-18Crazy Blues309962Original Dixieland Jazz Band3-1Eccentric253861New Orleans Rhythm Kings3-2Farewell Blues253861New Orleans Rhythm Kings3-3Bugle Call Blues253861New Orleans Rhythm Kings3-4Panama253861New Orleans Rhythm Kings3-5Tiger Rag253861New Orleans Rhythm Kings3-6Sweet Lovin' Man253861New Orleans Rhythm Kings3-7That's A Plenty253861New Orleans Rhythm Kings3-8Shimmeshawabble253861New Orleans Rhythm Kings3-9Weary Blues253861New Orleans Rhythm Kings3-10Maple Leaf253861New Orleans Rhythm Kings3-11Rag Tin Roof Blues253861New Orleans Rhythm Kings3-12Clarinet Marmalade253861New Orleans Rhythm Kings3-13Mr. Jelly Lord253861New Orleans Rhythm Kings3-14London Blues253861New Orleans Rhythm Kings3-15She's Crying For Me Blues253861New Orleans Rhythm Kings3-16Golden Leaf Strut253861New Orleans Rhythm Kings3-17She's Crying For Me253861New Orleans Rhythm Kings3-18San Antonio Shout253861New Orleans Rhythm Kings3-19Tin Roof Blues253861New Orleans Rhythm Kings3-20Original Dixieland One-Step253861New Orleans Rhythm Kings3-21Sensation253861New Orleans Rhythm Kings3-22(Oh! Susanna) Durst Off That Old Pianna253861New Orleans Rhythm Kings4-1Crimes Blues309966King Oliver's Creole Jazz Band4-2Canal Street Blues309966King Oliver's Creole Jazz Band4-3Snake Rag309966King Oliver's Creole Jazz Band4-4Dippermouth Blues309966King Oliver's Creole Jazz Band4-5Chattanooga Stomp309966King Oliver's Creole Jazz Band4-6Camp Meeting Blues309966King Oliver's Creole Jazz Band4-7Riverside Blues309966King Oliver's Creole Jazz Band4-8Snag It326832King Oliver's Jazz Band4-9Sugar Foot Stomp326832King Oliver's Jazz Band4-10Wa Wa Wa326832King Oliver's Jazz Band4-11Showboat Shuffle326832King Oliver's Jazz Band4-12I'm Watchin' The Clock253853King Oliver & His Dixie Syncopators4-13Speakeasy Blues253853King Oliver & His Dixie Syncopators4-14Aunt Hagar's Blues253853King Oliver & His Dixie Syncopators4-15West End Blues373788King Oliver & His Orchestra4-16I Want You Just For Myself373788King Oliver & His Orchestra4-17New Orleans Shout373788King Oliver & His Orchestra4-18You're Just My Type373788King Oliver & His OrchestraSet 25-1New Orleans (Blues) Joys309976Jelly Roll Morton5-2Grandpa's Spells (A Stomp)309976Jelly Roll Morton5-3Thirty-Fifth Street Blues309976Jelly Roll Morton5-4Froggie Moore309976Jelly Roll Morton5-5London Blues309976Jelly Roll Morton5-6Tia Juana (Tee Wana)309976Jelly Roll Morton5-7Mamamita309976Jelly Roll Morton5-8Bucktown Blues309976Jelly Roll Morton5-9Tom Cat Blues309976Jelly Roll Morton5-10Perfect Rag309976Jelly Roll Morton5-11The Pearls309976Jelly Roll Morton5-12Sweethearts O'mine309976Jelly Roll Morton5-13Fat Meat And Greens309976Jelly Roll Morton5-14Black Bottom Stomp317883Jelly Roll Morton's Red Hot Peppers5-15The Chant317883Jelly Roll Morton's Red Hot Peppers5-16Doctor Jazz317883Jelly Roll Morton's Red Hot Peppers5-17Grandpa's Spells317883Jelly Roll Morton's Red Hot Peppers5-18Original Jelly-Roll Blues317883Jelly Roll Morton's Red Hot Peppers5-19Cannon Ball Blues317883Jelly Roll Morton's Red Hot Peppers5-20Wild Man Blues317883Jelly Roll Morton's Red Hot Peppers6-1Choo Choo (Gotta Hurry Home)370233The Washingtonians6-2Rainy Nights370233The Washingtonians6-3I'm Gonna Hang Around My Sugar370233The Washingtonians6-4Trombone Blues370233The Washingtonians6-5Georgia Grind370233The Washingtonians6-6Parlour Social Stomp370233The Washingtonians6-7(You've Got Those) Wanna-Go-Back-Again-Blues370233The WashingtoniansDuke Ellington And His Washingtonians6-8If You Can't Hold The Man You Love370233The WashingtoniansDuke Ellington And His Washingtonians6-9Animal Crackers370233The WashingtoniansDuke Ellington And His Washingtonians6-10Li'l Farina370233The WashingtoniansDuke Ellington And His Washingtonians6-11East St. Louis Toodle-O370230Duke Ellington And His Kentucky Club Orchestra6-12Birmingham Breakdown370230Duke Ellington And His Kentucky Club Orchestra6-13Immigration Blues370230Duke Ellington And His Kentucky Club Orchestra6-14The Creeper370230Duke Ellington And His Kentucky Club Orchestra6-15New Orleans Low-Down370230Duke Ellington And His Kentucky Club Orchestra6-16Song Of The Cotton Field370230Duke Ellington And His Kentucky Club Orchestra6-17Birmingham Breakdown370230Duke Ellington And His Kentucky Club Orchestra6-18East St. Louis Toodle-Oo370230Duke Ellington And His Kentucky Club Orchestra6-19East St. Louis Toodle-Oo370230Duke Ellington And His Kentucky Club Orchestra6-20Hop Head370230Duke Ellington And His Kentucky Club Orchestra7-1Oh Baby338451The Wolverine Orchestra7-2Riverboat Shuffle338451The Wolverine Orchestra7-3Tiger Rag338451The Wolverine Orchestra7-4Big Boy338451The Wolverine Orchestra7-5My Pretty Girl338450Jean Goldkette And His Orchestra7-6Singin' The Blues317889Frankie Trumbauer And His Orchestra7-7Slow River338450Jean Goldkette And His Orchestra7-8Riverboat Shuffle317889Frankie Trumbauer And His Orchestra7-9I'm Coming Virginia317889Frankie Trumbauer And His Orchestra7-10Way Down Yonder In New Orleans317889Frankie Trumbauer And His Orchestra7-11For No Reason At All In C301376Frankie TrumbauerTram,282067Bix BeiderbeckeBixAnd301357Eddie LangEddie7-12In A Mist282067Bix Beiderbecke7-13Clementine338450Jean Goldkette And His Orchestra7-14At The Jazz Band Ball326834Bix Beiderbecke And His Gang7-15Jazz Me Blues326834Bix Beiderbecke And His Gang7-16Sorry326834Bix Beiderbecke And His Gang7-17Since My Best Gal Turned Me Down326834Bix Beiderbecke And His Gang7-18Lonely Melody341395Paul Whiteman And His Orchestra7-19Mississippi Mud341395Paul Whiteman And His Orchestra7-20From Monday On341395Paul Whiteman And His Orchestra7-21Rhythm King326834Bix Beiderbecke And His Gang7-22I'll Be A Friend "With Pleasure"338449Bix Beiderbecke And His Orchestra8-1Copenhagen258698Buster Bailey8-2Santa Claus Blues258698Buster Bailey8-3Jazzbo Brown From Memphis Town258698Buster Bailey8-4Sensation Rag258698Buster Bailey8-5Kentucky258698Buster Bailey8-6There's A House In Harlem For Sale258698Buster Bailey8-7Wild Party258698Buster Bailey8-8Shanghai Shuffle258698Buster Bailey8-9Warming Up258698Buster Bailey8-10More Than That258698Buster Bailey8-11Rhythm, Rhythm258698Buster Bailey8-12I've Found A New Baby258698Buster Bailey8-13Dizzy Debutante258698Buster Bailey8-14Lorna Doone Short Bread258698Buster Bailey8-15Knock-Kneed Sal (On The Mourner's Bench)258698Buster Bailey8-16Corrine Corrini258698Buster Bailey8-17Royal Garden Blues258698Buster Bailey8-18I'm Cuttin' Out258698Buster Bailey8-19Eccentric Rag258698Buster Bailey8-20Can't We Be Friends?258698Buster Bailey8-21Coquette258698Buster Bailey8-22St. Louis Blues258698Buster BaileySet 39-1High Society Rag326832King Oliver's Jazz Band9-2Drop That Sack373804Lil's Hot Shots9-3Lonesome Blues307425Johnny Dodds9-4Perdido Street Blues307425Johnny Dodds9-5Gatemouth307425Johnny Dodds9-6Too Tight307425Johnny Dodds9-7Flat Foot307425Johnny Dodds9-8I Can't Say307425Johnny Dodds9-9Someday, Sweetheart307425Johnny Dodds9-10Memphis Shake307425Johnny Dodds9-11Carpet Alley-Breakdown307425Johnny Dodds9-12San307425Johnny Dodds9-13Clarinet Wobble307425Johnny Dodds9-14If You Want To Be My Sugar Papa307425Johnny Dodds9-15New Orleans Stomp307425Johnny Dodds9-16Billy Goat Stomp307425Johnny Dodds9-17Weavy Way Blues307425Johnny Dodds9-18After You've Gone307425Johnny Dodds9-19Come On And Stomp, Stomp, Stomp307425Johnny Dodds9-20Joe Turner Blues307425Johnny Dodds9-21Piggly Wiggly307425Johnny Dodds9-22Oriental Man307425Johnny Dodds10-1Cornet Chop Suey38201Louis Armstrong10-2Don't Forget To Mess Around38201Louis Armstrong10-3Skid-Dat-De-Dat38201Louis Armstrong10-4Twelfth Street Rag38201Louis Armstrong10-5Struttin' With Some Barbecue38201Louis Armstrong10-6Wild Man Blues38201Louis Armstrong10-7Fireworks38201Louis Armstrong10-8A Monday Date38201Louis Armstrong10-9West End Blues38201Louis Armstrong10-10Basin Street Blues38201Louis Armstrong10-11Weather Bird38201Louis Armstrong10-12Mahogany Hall Stomp38201Louis Armstrong10-13(What Did I Do To Be So) Black And Blue38201Louis Armstrong10-14Dear Old Southland38201Louis Armstrong10-15Dinah38201Louis Armstrong10-16If I Could Be With You One Hour Tonight38201Louis Armstrong10-17Tiger Rag38201Louis Armstrong10-18Them There Eyes38201Louis Armstrong10-19Shine38201Louis Armstrong10-20Lazy River38201Louis Armstrong10-21Star Dust38201Louis Armstrong11-129th And Dearborn307366Luis Russell11-2Sweet Mumtaz307366Luis Russell11-3Plantation Joys307366Luis Russell11-4Please Don't Turn Me Down307366Luis Russell11-5Dolly Mine307366Luis Russell11-6Broadway Rhythm307366Luis Russell11-7The Way He Loves Is Just Too Bad307366Luis Russell11-8I Got Rhythm307366Luis Russell11-9Saratoga Drag307366Luis Russell11-10Ease On Down307366Luis Russell11-11Honey, That Reminds Me307366Luis Russell11-12You Rascal You307366Luis Russell11-13Goin' To Town307366Luis Russell11-14Say The Word307366Luis Russell11-15Freakish Blues307366Luis Russell11-16At The Darktown Strutter's Ball307366Luis Russell11-17My Blue Heaven307366Luis Russell11-18Ghost Of The Freaks307366Luis Russell11-19Hokus Pokus307366Luis Russell11-20Primitive307366Luis Russell12-1Riverboat Shuffle269598Red Nichols12-2Indiana269598Red Nichols12-3Dinah269598Red Nichols12-4On The Alamo269598Red Nichols12-5Rose Of The Washington Square269598Red Nichols12-6Peg O' My Heart269598Red Nichols12-7Sweet Georgia Brown269598Red Nichols12-8China Boy269598Red Nichols12-9The Sheik Of Araby269598Red Nichols12-10Corrine Corinna269598Red Nichols12-11Fan It269598Red Nichols12-12Harlem Twist269598Red Nichols12-13The Darktown Strutter's Ball269598Red Nichols12-14Davenport Blues269598Red Nichols12-15Original Dixieland One-Step269598Red Nichols12-16Shim-Me-Sha-Wabble269598Red NicholsSet 413-1Four Or Five Times307341McKinney's Cotton Pickers13-2Put It There307341McKinney's Cotton Pickers13-3Crying And Sighing307341McKinney's Cotton Pickers13-4Milenberg Joys307341McKinney's Cotton Pickers13-5Forgetting You307341McKinney's Cotton Pickers13-6Cherry307341McKinney's Cotton Pickers13-7Stop Kidding307341McKinney's Cotton Pickers13-8Nobody's Sweetheart307341McKinney's Cotton Pickers13-9Some Sweet Day307341McKinney's Cotton Pickers13-10Shim-Me-Sha-Wabble307341McKinney's Cotton Pickers13-11My Blackbirds Are Bluebirds Now307341McKinney's Cotton Pickers13-12Don't Be Like That307341McKinney's Cotton Pickers13-13Don't Be Like That307341McKinney's Cotton Pickers13-14It's Tight Like That307341McKinney's Cotton Pickers13-15There's A Rainbow 'round My Shoulder307341McKinney's Cotton Pickers13-16It's A Precious Little Thing Called Love307341McKinney's Cotton Pickers13-17Save It, Pretty Mama307341McKinney's Cotton Pickers13-18I Found A New Baby307341McKinney's Cotton Pickers13-19Will You, Won't You Be My Baby?307341McKinney's Cotton Pickers13-20Beedle Um Bum307341McKinney's Cotton Pickers13-21Do Something307341McKinney's Cotton Pickers13-22Selling That Stuff307341McKinney's Cotton Pickers13-23Birmingham Bertha307341McKinney's Cotton Pickers13-24Plain Dirt307341McKinney's Cotton Pickers13-25Gee, Ain't I Good To You307341McKinney's Cotton Pickers14-1She's A Great Girl339917Roger Wolfe Kahn And His Orchestra14-2I Couldn't If I Wanted To301372Jack Teagarden14-3Makin' Friends373808Eddie Condon And His Footwarmers14-4That's A Serious Thing373806Eddie's Hot Shots14-5Knockin' A Jug317860Louis Armstrong And His Orchestra14-6My Kinda Love301372Jack Teagarden14-7Dirty Dog301372Jack Teagarden14-8Tailspin Blues301372Jack Teagarden14-9Ridin' But Walkin'373811Fats Waller And His Buddies14-10Loved One301372Jack Teagarden14-11Basin Street Blues301372Jack Teagarden14-12That's What I Like About You301372Jack Teagarden14-13Texas Tea Party301372Jack Teagarden14-14A Hundred Years From Today301372Jack Teagarden14-15I'm Down In The Dumps288268Bessie Smith&373815Buck And His Band14-16Stars Fell On Alabama340731Jack Teagarden And His Orchestra15-1Mahogany Hall Stomp338994Louis Armstrong And His Savoy Ballroom Five15-2It Should Be You307315J.C. Higginbotham15-3Swing Out307315J.C. Higginbotham15-4Feelin' The Spirit373807Luis Russell And His Orchestra15-5Jersey Lightning373807Luis Russell And His Orchestra15-6St. Louis Blues307315J.C. Higginbotham15-7Doctor Jazz373807Luis Russell And His Orchestra15-8Saragota Shout373807Luis Russell And His Orchestra15-9Give Me Your Telephone Number373814J.C. Higginbotham And His Six Hicks15-10Sugar Hill Friction307315J.C. Higginbotham15-11You Might Get Better, But You'll Never Get Well307315J.C. Higginbotham15-12On Revival Day307315J.C. Higginbotham15-13Muggin' Lightly307315J.C. Higginbotham15-14Ease On Down307315J.C. Higginbotham15-15Casa Loma Stomp373816Connie's Inn Orchestra15-16Symphony In Riffs307315J.C. Higginbotham15-17Roll Along, Praire Moon307315J.C. Higginbotham15-18That's How I Feel Today373809Mezz Mezzrow And His Orchestra15-19I Double Dare You317860Louis Armstrong And His Orchestra15-20Let That Be A Lesson To You317860Louis Armstrong And His Orchestra15-21When The Saints Go Marchign In317860Louis Armstrong And His Orchestra15-22The Sheik Of Araby373805Coleman Hawkins And His Orchestra16-1That's How I Feel317901The Chocolate DandiesThe Little Chocolate Dandies16-2Six Or Seven Times317901The Chocolate DandiesThe Little Chocolate Dandies16-3Goodbye Blues317901The Chocolate DandiesChocolate Dandies16-4Cloudy Skies317901The Chocolate DandiesChocolate Dandies16-5Got Another Sweetie Now317901The Chocolate DandiesChocolate Dandies16-6Bugle Call Rag317901The Chocolate DandiesChocolate Dandies16-7Dee Blues317901The Chocolate DandiesChocolate Dandies16-8Tell All Your Day Dreams To Me368184Benny Carter And His Orchestra16-9Swing It368184Benny Carter And His Orchestra16-10Synthetic Love368184Benny Carter And His Orchestra16-11Six Bells Stampede368184Benny Carter And His Orchestra16-12Love, You're Not The One For Me368184Benny Carter And His Orchestra16-13Nocturne373813Spike Hughes And His Negro Orchestra16-14Someone Stole Gabriel's Horn373813Spike Hughes And His Negro Orchestra16-15Pastorale373813Spike Hughes And His Negro Orchestra16-16Bugle Call Rag373813Spike Hughes And His Negro Orchestra16-17Arabesque373813Spike Hughes And His Negro Orchestra16-18Fanfare373813Spike Hughes And His Negro Orchestra16-19Sweet Sorrow Blues373813Spike Hughes And His Negro Orchestra16-20Music At Midnight373813Spike Hughes And His Negro Orchestra16-21Sweet Sue - Just You373813Spike Hughes And His Negro Orchestra16-22Air In D Flat373813Spike Hughes And His Negro Orchestra16-23Donegal Cradle Song373813Spike Hughes And His Negro OrchestraSet 517-1Whoop It Up307393Clarence Williams17-2I'm Not Worrying307393Clarence Williams17-3High Society307393Clarence Williams17-4Whoop It Up307393Clarence Williams17-5A Pane In The Glass307393Clarence Williams17-6Freeze Out307393Clarence Williams17-7Nervous Breakdown307393Clarence Williams17-8Railroad Rhythm307393Clarence Williams17-9You've Got To Give Me Some307393Clarence Williams17-10I've Got What It Takes307393Clarence Williams17-11You Don't Understand307393Clarence Williams17-12(Oh! Baby) What Makes Me Love You So?307393Clarence Williams17-13Zonky307393Clarence Williams17-14You've Got To Be Modernistic307393Clarence Williams17-15What If We Do307393Clarence Williams17-16Wipe 'em Off307393Clarence Williams17-17Left All Alone With The Blues307393Clarence Williams17-18I've Found A New Baby307393Clarence Williams17-19How Could I Be Blue?307393Clarence Williams17-20I've Found A New Baby307393Clarence Williams17-21Whip Me With Plenty Of Love307393Clarence Williams17-22Worn Out Blues307393Clarence Williams18-1Shuffling Sadie307323Fletcher Henderson18-2Fidgety Feet307323Fletcher Henderson18-3Sensation307323Fletcher Henderson18-4Wabash Blues307323Fletcher Henderson18-5The Wang-Wang Blues307323Fletcher Henderson18-6St. Louis Shuffle307323Fletcher Henderson18-7Swamp Blues307323Fletcher Henderson18-8Off To Buffalo307323Fletcher Henderson18-9St. Louis Shuffle307323Fletcher Henderson18-10Variety Stomp307323Fletcher Henderson18-11P.D.Q. Blues307323Fletcher Henderson18-12Livery Stable Blues307323Fletcher Henderson18-13Whiteman Stomp307323Fletcher Henderson18-14I'm Coming Virginia307323Fletcher Henderson18-15Cornfeld!307323Fletcher Henderson18-16Variety Stomp307323Fletcher Henderson18-17The St. Louis Blues307323Fletcher Henderson18-18Hop Off307323Fletcher Henderson18-19Rough House Blues307323Fletcher Henderson18-20Black Maria307323Fletcher Henderson18-21Goose Pimples307323Fletcher Henderson18-22Baltimore307323Fletcher Henderson18-23A Rhythmic Dream307323Fletcher Henderson18-24Hop Off307323Fletcher Henderson19-1Jazz Battle2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-2Little Willie Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-3Sleepy Time Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-4Take Your Time2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-5Sweet And Low Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-6Take Me To The River2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-7Ace Of Rhythm2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-8Let's Get Together2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-9Sau-Sha Stomp2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-10Michigander Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-11Decatur Street Tutti2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-12Till Times Get Better2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-13Lina Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-14Weird And Blue2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-15Croonin' The Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-16I Got The Stinger2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-17Boston Skiffle2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-18Tanguay Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-19Band Box Stomp2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-20Moanful Blues2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-21Rhythm In Spain2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-22Absolutely2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-23More Rain, More Rest2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces19-24How Can Cupid Be So Stupid?2781207Jabbo Smith And His Rhythm AcesJabbo Smith's Rhythm Aces20-1Bugle Call Rag339905The Rhythmakers20-2Oh! Peter339905The Rhythmakers20-3Margie339905The Rhythmakers20-4Spider Crawl339905The Rhythmakers20-5Who's Sorry Now?339905The Rhythmakers20-6Take It Slow And Easy339905The Rhythmakers20-7Bold-Headed Mama339905The Rhythmakers20-8Mean Old Bed Bug Blues339905The Rhythmakers20-9I Would Do Anything For You339905The Rhythmakers20-10Yellow Dog Blues339905The Rhythmakers20-11Yes Suh!339905The Rhythmakers20-12Who Stole The Lock?339905The Rhythmakers20-13Shine On Your Shoes339905The Rhythmakers20-14It's Gonna Be You339905The Rhythmakers20-15Someone Stole Gabriel's Horn339905The RhythmakersSet 621-1I've Found A New Baby373922Sidney Bechet And His New Orleans Feetwarmers21-2Sweetie Dear373922Sidney Bechet And His New Orleans Feetwarmers21-3Shag373922Sidney Bechet And His New Orleans Feetwarmers21-4Maple Leaf Rag373922Sidney Bechet And His New Orleans Feetwarmers21-5Really The Blues340732Tommy Ladnier And His Orchestra21-6Weary Blues340732Tommy Ladnier And His Orchestra21-7Polka Dot Rag373825Noble Sissle And His International Orchestra21-8Tain't A Fight Night Out For Man Or Beast334074Noble Sissle And His Orchestra21-9Characteristic Blues373831Noble Sissle Swingsters21-10Black Stick Blues258422Sidney Bechet21-11When The Sun Sets Down South (Southern Sunset)258422Sidney Bechet21-12Jungle Drums339514Sidney Bechet And His Orchestra21-13Chant In The Night339514Sidney Bechet And His Orchestra21-14Ja-Da340732Tommy Ladnier And His Orchestra21-15When You And I Where Young, Maggie340732Tommy Ladnier And His Orchestra21-16Summertime373819Sidney Bechet Quintet21-17Oh, Didn't He Ramble373824Jelly Roll Morton's New Orleans Jazzmen21-18I Thought I Heard Buddy Bolden Say373824Jelly Roll Morton's New Orleans Jazzmen21-19High Society373824Jelly Roll Morton's New Orleans Jazzmen21-20Winin' Boy Blues373824Jelly Roll Morton's New Orleans Jazzmen22-1Swing Gate373817Washboard Rhythm Band22-2Hustlin' And Bustlin' For Baby373817Washboard Rhythm Band22-3Going! Going! Gone373817Washboard Rhythm Band22-4A Ghost Of A Chance373817Washboard Rhythm Band22-5Midnight Rhythm373817Washboard Rhythm Band22-6Shuffle Off To Buffalo373817Washboard Rhythm Band22-7The Coming Home Of Hi-De-Hoo373817Washboard Rhythm Band22-8Sophisticated Lady373822Washboard Rhythm Kings22-9Nobody's Sweetheart373822Washboard Rhythm Kings22-10My Pretty Girl373822Washboard Rhythm Kings22-11Dinah373822Washboard Rhythm Kings22-12Bug-A-Boo373822Washboard Rhythm Kings22-13Happy As The Days Is Long373822Washboard Rhythm Kings22-14I Would If I Could But I Can't5808837Williams' Washboard Band (2)22-15Hard Corn5808837Williams' Washboard Band (2)22-16Hot Nuts5808837Williams' Washboard Band (2)22-17Shoutin' In The Amen Corner5808837Williams' Washboard Band (2)22-18Move Turtle5808837Williams' Washboard Band (2)22-19I Want To Ring Bells5808837Williams' Washboard Band (2)23-1Mutiny In The Parlor373827Mezz Mezzrow And His Swing Band23-2The Panic Is On373827Mezz Mezzrow And His Swing Band23-3I'se A-Muggin - Part 1373827Mezz Mezzrow And His Swing Band23-4I'se A-Muggin - Part 2373827Mezz Mezzrow And His Swing Band23-5Blues In Disguise373809Mezz Mezzrow And His Orchestra23-6Thats How I Feel Today373809Mezz Mezzrow And His Orchestra23-7Hot Club Stomp373809Mezz Mezzrow And His Orchestra23-8The Swing Session's Called To Order373809Mezz Mezzrow And His Orchestra23-9Revolutionary Blues373809Mezz Mezzrow And His Orchestra23-10Comin' On With The Come On - Part 1373809Mezz Mezzrow And His Orchestra23-11Comin' On With The Come On - Part 2373809Mezz Mezzrow And His Orchestra23-12Swingin' For Mezz (Careless Love)373809Mezz Mezzrow And His Orchestra23-13Royal Garden Blues373832Mezzrow-Ladnier Quintet23-14Everybody Loves My Baby373832Mezzrow-Ladnier Quintet23-15I Ain't Gonna Give Nobody None O'this Jelly Roll373832Mezzrow-Ladnier Quintet23-16If You See Me Comin'373832Mezzrow-Ladnier Quintet23-17Gettin' Together373832Mezzrow-Ladnier Quintet23-18I'm Tired Of Fattenin' Frogs For Snakes4863461Rosetta Crawford And Her Hep Cats23-19Stop It, Joe4863461Rosetta Crawford And Her Hep Cats23-20My Man Jumped Salty On Me4863461Rosetta Crawford And Her Hep Cats23-21Double Crossin' Papa4863461Rosetta Crawford And Her Hep Cats24-1Love Is Just Around The Corner373890Eddie Condon And His Windy City SevenEddie Condon And His Windy Seven24-2Embraceable You373890Eddie Condon And His Windy City SevenEddie Condon And His Windy Seven24-3Serenade To A Shylock373890Eddie Condon And His Windy City SevenEddie Condon And His Windy Seven24-4Sunday373830Eddie Condon And His Band24-5There'll Be Some Changes Made373820Eddie Condon And His Chicagoans24-6Friar's Point Shuffle373820Eddie Condon And His Chicagoans24-7(I Ain't Give Nobody) None Of My Jelly Roll261340Pee Wee Russell24-8Georgia Grind261340Pee Wee Russell24-9Jig Walk373821The Three Deuces24-10Deuces Wild373821The Three Deuces24-11The Last Time I Saw Chicago373821The Three Deuces24-12About Face373821The Three Deuces24-13Don't Leave Me Daddy373830Eddie Condon And His Band24-14Rosetta373823Muggsy Spanier And His Ragtimers24-15Someone To Watch Over Me373823Muggsy Spanier And His Ragtimers24-16Squeeze Me373828Wild Bill Davison And His Commodores24-17Take Me To The Land Of Jazz261340Pee Wee Russell24-18Rose Of Washington Square261340Pee Wee Russell24-19Keepin' Out Of Mischief Now261340Pee Wee Russell24-20D.A. Blues261340Pee Wee Russell24-21Wailin' D.A. Blues261340Pee Wee RussellSet 725-1At The Jazz Band Ball309979Muggsy Spanier25-2Sister Kate309979Muggsy Spanier25-3Dippermouth Blues (Sugar Foot Stomp)309979Muggsy Spanier25-4Riverboat Shuffle309979Muggsy Spanier25-5Relaxin' At The Touro309979Muggsy Spanier25-6At Sundown309979Muggsy Spanier25-7Bluin' The Blues309979Muggsy Spanier25-8Lonesome Raod309979Muggsy Spanier25-9Sweet Lorraine309979Muggsy Spanier25-10Four Or Five Times309979Muggsy Spanier25-11That's A Plenty309979Muggsy Spanier25-12Sweet Sue, Just You309979Muggsy Spanier25-13Oh! Lady Be Good309979Muggsy Spanier25-14Memphis Blues309979Muggsy Spanier25-15Whistlin' The Blues309979Muggsy Spanier26-1Sensation270026Bud Freeman26-2Fidgety Feet270026Bud Freeman26-3Tia Juana270026Bud Freeman26-4Copehagen270026Bud Freeman26-5I've Found A New Baby270026Bud Freeman26-6Easy To Get270026Bud Freeman26-7China Boy270026Bud Freeman26-8The Eel270026Bud Freeman26-9Oh! Baby270026Bud Freeman26-10I Need Some Pettin'270026Bud Freeman26-11Susie270026Bud Freeman26-12Big Boy270026Bud Freeman26-13As Long As I Live350089Bud Freeman's Summa Cum Laude Orchestra26-14The Sail Fish350089Bud Freeman's Summa Cum Laude Orchestra26-15Sunday350089Bud Freeman's Summa Cum Laude Orchestra26-16Satanic Blues350089Bud Freeman's Summa Cum Laude Orchestra26-17Jack Hits The Road270026Bud Freeman26-18Forty-Seven And State270026Bud Freeman26-19Muskat Rumble270026Bud Freeman26-20That Da-Da Strain270026Bud Freeman26-21Shim-Me-Sha-Wabble270026Bud Freeman26-22At The Jazz Band Ball270026Bud Freeman26-23Prince Of Wails270026Bud Freeman26-24After Awhile270026Bud Freeman26-25Love Is Just Around The Corner270026Bud Freeman27-1There'll Be Some Changes Made373820Eddie Condon And His Chicagoans27-2Nobody's Sweetheart373820Eddie Condon And His Chicagoans27-3Friar's Point Shuffle373820Eddie Condon And His Chicagoans27-4Someday, Sweetheart373820Eddie Condon And His Chicagoans27-5When Your Lover Has Gone373862Eddie Condon Dixieland All-Stars27-6Wherever There's Love373862Eddie Condon Dixieland All-Stars27-7Impromptu Ensemble No. 1373862Eddie Condon Dixieland All-Stars27-8's Wonderful373862Eddie Condon Dixieland All-Stars27-9Someone To Watch Over Me373862Eddie Condon Dixieland All-Stars27-10The Sheik Of Araby373862Eddie Condon Dixieland All-Stars27-11The Man I Love373862Eddie Condon Dixieland All-Stars27-12Somebody Loves Me373862Eddie Condon Dixieland All-Stars27-13I'll Build A Stairway To Paradise373862Eddie Condon Dixieland All-Stars27-14My One And Only373862Eddie Condon Dixieland All-Stars27-15Oh! Lady Be Good373862Eddie Condon Dixieland All-Stars27-16Swanee373862Eddie Condon Dixieland All-Stars27-17Farewell Blues373862Eddie Condon Dixieland All-Stars27-18Improvisation For The March Of Time373862Eddie Condon Dixieland All-Stars27-19(I've Got A Woman, Crazy For Me) She's Funny That Way373862Eddie Condon Dixieland All-Stars27-20Stars Fell On Alabama373862Eddie Condon Dixieland All-Stars28-1I've Found A New Baby373864George Wettling's Chicago Rhythm Kings28-2Bugle Call Rag373864George Wettling's Chicago Rhythm Kings28-3I Wish I Would Shimmy Like My Sister Kate373864George Wettling's Chicago Rhythm Kings28-4The Darktown Strutter's Ball373864George Wettling's Chicago Rhythm Kings28-5Some Of These Days3837343George Wettling Jazz TrioGeorge Wettling Trio28-6Everybody Loves My Baby3837343George Wettling Jazz TrioGeorge Wettling Trio28-7China Boy3837343George Wettling Jazz TrioGeorge Wettling Trio28-8That's A Plenty3837343George Wettling Jazz TrioGeorge Wettling Trio28-9Heebie Jeebies373864George Wettling's Chicago Rhythm Kings28-10Struttin' With Some Barbecue373864George Wettling's Chicago Rhythm Kings28-11How Come You Do Me Like You Do373864George Wettling's Chicago Rhythm Kings28-12Blues For Stu373864George Wettling's Chicago Rhythm Kings28-13Home, Cradle Of Happiness373863George Wettling's New Yorkers28-14Too Marvellous For Words373863George Wettling's New Yorkers28-15You Brought A New Kind Of Love373863George Wettling's New Yorkers28-16Somebody Loves Me373863George Wettling's New YorkersSet 829-1Fidgety Feet339912Lu Watters29-2Fidgety Feet [Alternative Take]339912Lu Watters29-3Milenberg Joys339912Lu Watters29-4High Society339912Lu Watters29-5High Society [Alternative Take]339912Lu Watters29-6Hot House Rag339912Lu Watters29-7Come Back Sweet Papa339912Lu Watters29-8Daddy Do339912Lu Watters29-9Daddy Do [Alternative Take]339912Lu Watters29-10Tiger Rag339912Lu Watters29-11London Cafe Blues339912Lu Watters29-12London Cafe Blues [Alternative Take]339912Lu Watters29-13Terrible Blues339912Lu Watters29-14Muskat Rumble339912Lu Watters29-15Muskat Rumble [Alternative Take]339912Lu Watters29-16Temptation Rag339912Lu Watters29-17Sunset Cafe Stomp339912Lu Watters29-18Sunset Cafe Stomp [Alternative Take]339912Lu Watters29-19Riverside Blues339912Lu Watters29-20Riverside Blues [Alternative Take]339912Lu Watters30-1That Da-Da Strain373898Bobby Hackett And His Orchestra30-2At The Jazz Band Ball373898Bobby Hackett And His Orchestra30-3Clarinet Marmalade373898Bobby Hackett And His Orchestra30-4After I Say I'm Sorry373898Bobby Hackett And His Orchestra30-5Love Is Just Around The Corner373890Eddie Condon And His Windy City Seven30-6Ja-Da373890Eddie Condon And His Windy City Seven30-7Sunday373830Eddie Condon And His Band30-8California Here I Come373830Eddie Condon And His Band30-9Rose Room373898Bobby Hackett And His Orchestra30-10's Wonderful373898Bobby Hackett And His Orchestra30-11Ja-Da [Alternative Take 1]373898Bobby Hackett And His Orchestra30-12Ja-Da [Alternative Take 2]373898Bobby Hackett And His Orchestra30-13Exactly Like You373898Bobby Hackett And His Orchestra30-14Sweet Georgia Brown373898Bobby Hackett And His Orchestra30-15Soon254893Bobby Hackett30-16When Days Is Gone254893Bobby Hackett30-17Skeleton Jangle254893Bobby Hackett30-18New Orleans254893Bobby Hackett30-19At Sundown254893Bobby Hackett30-20I Must Have That Man373891Miff Mole And His Nicksieland Band30-21When Your Lover Is Gone373891Miff Mole And His Nicksieland Band31-1Jammin' In Four311727Edmond Hall Celeste Quartet31-2Edmond Hall Blues311727Edmond Hall Celeste Quartet31-3Profoundly Blue No. 2311727Edmond Hall Celeste Quartet31-4Celestial Express311727Edmond Hall Celeste Quartet31-5Royal Garden Blues373888Edmond Hall's Blue Note Jazzmen31-6Blues At The Blue Note373888Edmond Hall's Blue Note Jazzmen31-7High Society373888Edmond Hall's Blue Note Jazzmen31-8The Man I Love373893Edmond Hall Sextet31-9Rompin' In '442293426Edmond Hall's All Star Quintet31-10Seein' Red2293426Edmond Hall's All Star Quintet31-11I've Found A New Baby2293426Edmond Hall's All Star Quintet31-12It's Been So Long5274995Edmond Hall's Swingtet31-13I Can't Believe That You're In Love With Me5274995Edmond Hall's Swingtet31-14Big City Blues5274995Edmond Hall's Swingtet31-15It's Only A Chanty In Old Chanty Town307864Edmond Hall31-16Walkin' The Dog373894James P. Johnson's Blue Note Jazzmen31-17Tishomingo Blues373894James P. Johnson's Blue Note Jazzmen31-18Caravan373896Edmond Hall Swing Sextet31-19The Sheik Of Araby373896Edmond Hall Swing Sextet32-1Sugar385599The Capitol International Jazzmen32-2Ain't Goin' No Place385599The Capitol International Jazzmen32-3Someday Sweetheart385599The Capitol International Jazzmen32-4That Old Feeling385599The Capitol International Jazzmen32-5Tea For Two307419Barney Bigard32-6Steps Steps Up307419Barney Bigard32-7Steps Steps Down307419Barney Bigard32-8Moonglow307419Barney Bigard32-9Oh, Didn't He Ramble373889Zutty Singleton's Creole Band32-10Crawfish Blues373889Zutty Singleton's Creole Band32-11Barney's Bounce373897Zutty Singleton's Trio32-12Lulu's Mood373897Zutty Singleton's Trio32-13A Portrait Of Louise307419Barney BigardWith373899The Roger Kay String32-14A Lull At Dawn307419Barney BigardWith373899The Roger Kay String32-15Wrap Your Troubles In Dreams307419Barney BigardWith373899The Roger Kay String32-16Soft And Warm307419Barney BigardWith373899The Roger Kay String32-17Salty Papa Blues307726Etta JonesWith373892Barney Bigard And His Orchestra32-18Evil Gal Blues307726Etta JonesWith373892Barney Bigard And His Orchestra32-19Blow Top Blues307726Etta JonesWith373892Barney Bigard And His Orchestra32-20Long, Long Journey307726Etta JonesWith373892Barney Bigard And His OrchestraSet 933-1Panama Rag307207Kid Ory33-2Sister Kate307207Kid Ory33-3Mahogany Hall Stomp307207Kid Ory33-4Margie307207Kid Ory33-5Chinatown, My Chinatown307207Kid Ory33-6Do You Know What It Means, To Miss New Orlans307207Kid Ory33-7Sugar Foot Stomp307207Kid Ory33-8Black And Blue307207Kid Ory33-9Oh! Didn't He Ramble307207Kid Ory33-10At The Jazz Band Ball307207Kid Ory33-11High Society307207Kid Ory33-12Sweet Georgia Brown307207Kid Ory33-13San307207Kid Ory33-14Shake That Thing307207Kid Ory33-15Ory's Boogie307207Kid Ory34-1Milenberg Joys313100Wilbur De Paris34-2Bill Bailey, Won't You Please Come Home313100Wilbur De Paris34-3Change Of Key Boogie, Part 1313100Wilbur De Paris34-4Change Of Key Boogie, Part 2313100Wilbur De Paris34-5Blues (My Naughtie Sweetie Gives To Me)313100Wilbur De Paris34-6Marchin' And Swingin'313100Wilbur De Paris34-7Original Jelly Roll Blues313100Wilbur De Paris34-8Too Much Mustard313100Wilbur De Paris34-9The Florida Blues313100Wilbur De Paris34-10The Pearls313100Wilbur De Paris34-11Russian Rag313100Wilbur De Paris34-12Blame It On The Blues313100Wilbur De Paris34-13Alexander's Ragtime Band313100Wilbur De Paris35-1South1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-2Hindustan1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-3Bourbon St. Parade1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-4When The Saints1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-5High Society1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-6Ice Cream1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-7Tishomingo Blues1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-8Panama1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-9Darktown Strutter's Ball1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans35-10Milenberg Joys1751552George Lewis' Ragtime BandThe George Lewis Ragtime Jazz Band Of New Orleans36-1When It's Sleepy Time Down South326657Louis Armstrong And His All-Stars36-2Some Day326657Louis Armstrong And His All-Stars36-3Tin Roof Blues326657Louis Armstrong And His All-Stars36-4My Buckets Got A Hole In It326657Louis Armstrong And His All-Stars36-5Rose Room326657Louis Armstrong And His All-Stars36-6Perdido326657Louis Armstrong And His All-Stars36-7Blues For Bass326657Louis Armstrong And His All-Stars36-8Me And Brother Bill326657Louis Armstrong And His All-Stars36-9When You're Smiling (The Whole World Smiles With You)326657Louis Armstrong And His All-Stars36-10Tain't What You Do326657Louis Armstrong And His All-Stars36-11Don't Fence With Me326657Louis Armstrong And His All-Stars36-12C'est Si Bon326657Louis Armstrong And His All-Stars36-13The Whiffenpoof Song326657Louis Armstrong And His All-Stars36-14Rockin' Chair326657Louis Armstrong And His All-Stars36-15Back O'town Blues326657Louis Armstrong And His All-StarsBluesSet 1037-1I'm Going Back To My Used To Be288268Bessie Smith37-2My Sweet Went Away288268Bessie Smith37-3Whoa, Willie, Take Your Time288268Bessie Smith37-4Any Woman's Blues288268Bessie Smith37-5Chicago Bound Blues288268Bessie Smith37-6Mistreating Daddy288268Bessie Smith37-7Frosty Morning Blues288268Bessie Smith37-8Easy Come Easy Go Blues288268Bessie Smith37-9Eavedropper's Blues288268Bessie Smith37-10Haunted House Blues288268Bessie Smith37-11Sorrowful Blues288268Bessie Smith37-12Rocking Chair Blues288268Bessie Smith37-13Ticket Agent, Ease Your Window Down288268Bessie Smith37-14Boweavil Blues288268Bessie Smith37-15Hateful Blues288268Bessie Smith37-16Pinchbecks - Take 'em Away288268Bessie Smith37-17Nashville Woman's Blues288268Bessie Smith37-18Sweet Mistreater288268Bessie Smith37-19Mean Old Bedbug Blues288268Bessie Smith37-20Blue Spirit Blues288268Bessie Smith37-21Black Mountain Blues288268Bessie Smith37-22The House Blues288268Bessie Smith38-1Farewell, Daddy Blues307316Ma Rainey38-2Shave 'em Dry Blues307316Ma Rainey38-3Booze And Blues373925Ma Rainey And Her Georgia Band38-4Toad Frog Blues373925Ma Rainey And Her Georgia Band38-5Jealous Hearted Beat373925Ma Rainey And Her Georgia Band38-6See See Rider Blues373925Ma Rainey And Her Georgia Band38-7Jelly Bean Blues373925Ma Rainey And Her Georgia Band38-8Countin' The Blues373925Ma Rainey And Her Georgia Band38-9Cell Bound Blues373925Ma Rainey And Her Georgia Band38-10Army Camp Harmony Blues373925Ma Rainey And Her Georgia Band38-11Explaining The Blues373925Ma Rainey And Her Georgia Band38-12Louisiana Hoo Doo Blues373925Ma Rainey And Her Georgia Band38-13Goodbye, Daddy Blues373925Ma Rainey And Her Georgia Band38-14Stormy Sea Blues373925Ma Rainey And Her Georgia Band38-15Rough And Tumble Blues373925Ma Rainey And Her Georgia Band38-16Night Time Blues373925Ma Rainey And Her Georgia Band39-1Frankie307249Mississippi John Hurt39-2Nobody's Dirty Business307249Mississippi John Hurt39-3Ain't No Tellin'307249Mississippi John Hurt39-4Avalon Blues307249Mississippi John Hurt39-5Big Leg Blues307249Mississippi John Hurt39-6Stack O'lee307249Mississippi John Hurt39-7Candy Man Blues307249Mississippi John Hurt39-8Got The Blues (Can't Be Satisfied)307249Mississippi John Hurt39-9Blessed Be The Name307249Mississippi John Hurt39-10Praying On The Old Camp Ground307249Mississippi John Hurt39-11Blue Harvest Blues307249Mississippi John Hurt39-12Louis Collins307249Mississippi John Hurt39-13Spike Driver Blues307249Mississippi John Hurt40-1(Honey) It's Tight Like That307268Tampa Red40-2Big Fat Mama307268Tampa Red40-3Juicy Lemon Blues307268Tampa Red40-4Uncle Bud307268Tampa Red40-5How Long, How Long Blues307268Tampa Red40-6It's Tight Like That307268Tampa Red40-7Kujine Baby307268Tampa Red40-8Friendless Gal Blues307268Tampa Red40-9Death Cell Blues307268Tampa Red40-10Have You Ever Been Worried In Mind (Part 1)307268Tampa Red40-11Have You Ever Been Worried In Mind (Part 2)307268Tampa Red40-12You Rascal You373924Tampa Red And His Hokum Jug Band40-13Boogie Woogie Dance307268Tampa Red40-14Bumble Bee Blues307268Tampa Red40-15Stop And Listen Blues307268Tampa Red40-16Down In Spirits Blues307268Tampa Red40-17Mean Old Tom Cat Blues307268Tampa Red40-18Don't Jive It Mama307268Tampa RedSet 1141-1Trinity River Blues307262T-Bone Walker41-2Wichita Falls Blues307262T-Bone Walker41-3T-Bone Blues374155Les Hite And His Orchestra41-4I Got A Break Baby307262T-Bone Walker41-5Mean Old World307262T-Bone Walker41-6Low Down Dirty Shame (Married Woman Blues)307262T-Bone Walker41-7Sail On Boogie307262T-Bone WalkerWith374154Marl Young And His Orchestra41-8Mean Old World Blues307262T-Bone WalkerWith374154Marl Young And His Orchestra41-9You Don't Love Me Blues307262T-Bone WalkerWith374154Marl Young And His Orchestra41-10T-Bone Boogie307262T-Bone WalkerWith374154Marl Young And His Orchestra41-11I'm Still In Love With You307262T-Bone WalkerWith374154Marl Young And His Orchestra41-12Evening307262T-Bone WalkerWith374154Marl Young And His Orchestra41-13My Baby Left Me (Blues)307262T-Bone WalkerWith374154Marl Young And His Orchestra41-14Come Back To Me Baby (Blues)307262T-Bone WalkerWith374154Marl Young And His Orchestra41-15She's Going To Ruin Me (Blues)307262T-Bone WalkerWith374154Marl Young And His Orchestra41-16I Can't Stand Being Away From You (Blues)307262T-Bone WalkerWith374154Marl Young And His Orchestra41-17No Worry Blues307262T-Bone WalkerWith374154Marl Young And His Orchestra41-18Don't Leave Me Baby307262T-Bone WalkerWith374154Marl Young And His Orchestra41-19Bobby Sox Blues307262T-Bone WalkerWith374154Marl Young And His Orchestra41-20I'm Gonna Find My Baby307262T-Bone WalkerWith374154Marl Young And His Orchestra42-1Black And Evil Blues128576Josh White42-2Howling Wolf Blues128576Josh White42-3Greenville Sheik128576Josh White42-4Double Crossing Woman128576Josh White42-5Lazy Black Snake Blues128576Josh White42-6Downhearted Man Blues128576Josh White42-7Low Cotton128576Josh White42-8Lord, I Want To Die Easy374157The Singing Christian42-9My Father Is A Husbandman374157The Singing Christian42-10Welfare Blues1248894Pinewood TomPinwood Tom42-11Stormy Weather No. 11248894Pinewood TomPinwood Tom42-12Friendless City Blues1248894Pinewood TomPinwood Tom42-13Milk Cow Blues1248894Pinewood TomPinwood Tom42-14Badly Mistreated Man1248894Pinewood TomPinwood Tom42-15New Milk Cow Blues1248894Pinewood TomPinwood Tom42-16Black Man1248894Pinewood TomPinwood Tom42-17Bed Springs Blues1248894Pinewood TomPinwood Tom42-18Paul And Silas Bound In Jail1248894Pinewood TomPinwood Tom42-19Did You Read That Letter?1248894Pinewood TomPinwood Tom42-20Silicosis Is Killin' Me1248894Pinewood TomPinwood Tom43-1Rough Alley Blues307361Blind Willie McTell43-2Experience Blues307361Blind Willie McTell43-3Painful Blues307361Blind Willie McTell43-4Low Rider's Blues307361Blind Willie McTell43-5Georgia Rag307361Blind Willie McTell43-6Low Down Blues307361Blind Willie McTell43-7Rollin' Mama Blues639751Ruby Glaze-639752Hot Shot Willie43-8Lonesome Day Blues639751Ruby Glaze-639752Hot Shot Willie43-9Mama, Let Me Scoop For You639751Ruby Glaze-639752Hot Shot Willie43-10Searching The Desert For The Blues639751Ruby Glaze-639752Hot Shot Willie43-11Warm It Up To Me307361Blind Willie McTell43-12It's Your Time To Worry307361Blind Willie McTell43-13It's A Good Little Thing307361Blind Willie McTell43-14You Was Born To Die307361Blind Willie McTell43-15Lord Have Mercy If You Please307361Blind Willie McTell43-16Don't You See How This World Made A Change307361Blind Willie McTell43-17Savannah Mama307361Blind Willie McTell43-18Broke Down Engine307361Blind Willie McTell43-19Broke Down Engine N°2307361Blind Willie McTell43-20My Baby's Gone307361Blind Willie McTell43-21Love-Makin' Mama307361Blind Willie McTell43-22Death Room Blues307361Blind Willie McTell43-23Lord, Send Me An Angel307361Blind Willie McTell44-1Too Too Train Blues307270Big Bill BroonzyBig Bill44-2Worrying You Out Of My Mind (Part 1)307270Big Bill BroonzyBig Bill44-3How You Want It Done307270Big Bill BroonzyBig Bill44-4Bull Cow Blues307270Big Bill BroonzyBig Bill44-5Long Tall Mama307270Big Bill BroonzyBig Bill44-6Good Jelly307270Big Bill Broonzy44-7Rising Sun Shine On307270Big Bill Broonzy44-8Good Liquor Gonna Carry Me Down307270Big Bill Broonzy44-9Friendless Blues307270Big Bill BroonzyBig Bill44-10Mississippi River Blues307270Big Bill BroonzyBig Bill44-11Come Home Early307270Big Bill BroonzyBig Bill44-12Southern Flood Blues307270Big Bill Broonzy44-13Horny Frog307270Big Bill Broonzy44-14It's Your Time Now307270Big Bill Broonzy44-15W.P.A. Blues307270Big Bill BroonzyBig BillAnd342496The Original Memphis Five44-16Big Billy Blues307270Big Bill BroonzySet 1245-1I'm Sorry Mama307307Leadbelly45-2Packin' Trunk307307Leadbelly45-3Four Day Worry Blues307307Leadbelly45-4Roberta Pt. 1307307Leadbelly45-5Death Letter Blues Pt.1307307Leadbelly45-6Fort Worth And Dallas Blues307307Leadbelly45-7Ox Drivin' Blues307307Leadbelly45-8TB Woman Blues307307Leadbelly45-9My Baby Quit Me307307Leadbelly45-10Midnight Special307307Leadbelly45-11Pigmeat307307Leadbelly45-12Black Snake Moan307307Leadbelly45-13See See Rider307307Leadbelly45-14Shorty George307307Leadbelly45-15You Don't Mind307307Leadbelly45-16The Bourgeois Blues307307Leadbelly45-17John Hardy307307Leadbelly45-18Pick A Ball Of Cotton307307Leadbelly45-19Grey Goose307307Leadbelly45-20Where Did You Sleep Last Night307307Leadbelly45-21Pretty Flower In Your Backyard307307Leadbelly46-1Little Leg Woman290581Big Joe Williams46-2Providence Help The Poor People290581Big Joe Williams46-349 Highway Blues290581Big Joe Williams46-4Stepfather Blues290581Big Joe Williams46-5Baby Please Don't Go290581Big Joe Williams46-6Wild Cow Blues290581Big Joe Williams46-7Stack O'dollars290581Big Joe Williams46-8I Know You Gonna Miss Me290581Big Joe Williams46-9Brother James290581Big Joe Williams46-10Rootin' Ground Hog290581Big Joe Williams46-11I Won't Be In Hard Luck No More290581Big Joe Williams46-12Meet Me Around The Corner290581Big Joe Williams46-13Crawling King Snake290581Big Joe Williams46-14I'm Getting Wild About Her290581Big Joe Williams46-15Peach Orchard Mama290581Big Joe Williams46-16Please Don't Go290581Big Joe Williams46-17Break 'em On Down290581Big Joe Williams46-18Someday Baby290581Big Joe Williams46-19His Spirit Is Alive290581Big Joe Williams46-20Vitamin A290581Big Joe Williams46-21Somebody's Been Worryin'290581Big Joe Williams47-1When You Got A Good Friend272142Robert Johnson47-2Come On In My Kitchen272142Robert Johnson47-3I Believe I'll Dust My Broom272142Robert Johnson47-4Phonograph Blues272142Robert Johnson47-5Terraplane Blues272142Robert Johnson47-6Come On In My Kitchen272142Robert Johnson47-7Kindhearted Woman Blues272142Robert Johnson47-8When You Got A Good Friend272142Robert Johnson47-9Rambling On My Mind272142Robert Johnson47-1032-30 Blues272142Robert Johnson47-11Dead Shrimp Blues272142Robert Johnson47-12I'm A Steady Rollin' Man272142Robert Johnson47-13Little Queen Of Spades272142Robert Johnson47-14From Four 'till Late272142Robert Johnson48-1Try Some Of That307277Kokomo Arnold48-2Mister Charlie307277Kokomo Arnold48-3Cutter Blues307277Kokomo Arnold48-4Money Tree Man307277Kokomo Arnold48-5Delmar Avenue307277Kokomo Arnold48-6Shake That Thing307277Kokomo Arnold48-7Backfence Picket Blues307277Kokomo Arnold48-8Fool Man Blues307277Kokomo Arnold48-9Long And Tall307277Kokomo Arnold48-10Sally Dog307277Kokomo Arnold48-11Cold Winter Blues307277Kokomo Arnold48-12Sister Jane Cross The Hall307277Kokomo Arnold48-13Wild Water Blues307277Kokomo Arnold48-14Laugh And Grin Blues307277Kokomo Arnold48-15Mean Old Twister307277Kokomo Arnold48-16Red Beans And Rice307277Kokomo Arnold48-17Set Down Gal307277Kokomo ArnoldSet 1349-1Worried Me Blues746951Sonny Boy Williamson49-2Black Gal Blues746951Sonny Boy Williamson49-3Frigidaire Blues746951Sonny Boy Williamson49-4Suzanna Blues746951Sonny Boy Williamson49-5Early In The Morning746951Sonny Boy Williamson49-6Sugar Mama Blues746951Sonny Boy Williamson49-7Skinny Woman746951Sonny Boy Williamson49-8My Little Cornelius746951Sonny Boy Williamson49-9Decoration Blues746951Sonny Boy Williamson49-10You Can Lead Me746951Sonny Boy Williamson49-11Miss Louisa Blues746951Sonny Boy Williamson49-12Sunnyland746951Sonny Boy Williamson49-13I'm Tired Trucking My Blues Away746951Sonny Boy Williamson49-14Beauty Parlour746951Sonny Boy Williamson49-15My Baby I've Been You're Slave746951Sonny Boy Williamson49-16Doggin' My Love Around746951Sonny Boy Williamson49-17Little Low Woman Blues746951Sonny Boy Williamson49-18Sugar Mama Blues No. 2746951Sonny Boy Williamson49-19Good Gal Blues746951Sonny Boy Williamson49-20I'm Not Pleasing You746951Sonny Boy Williamson49-21Honey Bee Blues746951Sonny Boy Williamson50-1Bye Bye Baby Blues290579Sonny Terry50-2Mistreater, You're Going To Be Sorry290579Sonny Terry50-3Mean And No Good Woman290579Sonny Terry50-4Pistol Slapper Blues290579Sonny Terry50-5Stop Jivin' Me Mama290579Sonny Terry50-6Train Whistle Blues290579Sonny Terry50-7New Love Blues290579Sonny Terry50-8I'm A Stranger Here290579Sonny Terry50-9I Want Some Of Your Pie290579Sonny Terry50-10I Don't Care How Long290579Sonny Terry50-11Blues And Worried Man290579Sonny Terry50-12Harmonica And Washboard Breakdown290579Sonny Terry50-13Harmonica Blues290579Sonny Terry50-14Somebody's Been Talkin'290579Sonny Terry50-15Harmonica Stomp290579Sonny Terry50-16Twelve Gates To The City374257Brother George And His Sanctified Singers50-17You Got To Have Your Dollar290579Sonny Terry50-18Don't Want No Skinny Woman290579Sonny Terry51-1Jack And Jill Blues307408Sleepy John Estes51-2Poor Man's Friend307408Sleepy John Estes51-3Hobo Jungle Blues307408Sleepy John Estes51-4Airplane Blues307408Sleepy John Estes51-5Floating Bridge307408Sleepy John Estes51-6Need More Blues307408Sleepy John Estes51-7Fire Department Blues307408Sleepy John Estes51-8New Someday Baby307408Sleepy John Estes51-9Liquor Store Blues307408Sleepy John Estes51-10Brownsville Blues307408Sleepy John Estes51-11Everybody Oughta Make A Change307408Sleepy John Estes51-12Easin' Back To Tennessee307408Sleepy John Estes51-13Clean Up At Home307408Sleepy John Estes51-14Special Agent (Railroad Police Blues)307408Sleepy John Estes51-15Drop Down (I Don't Feel Welcome Here)307408Sleepy John Estes51-16Jailhouse Blues307408Sleepy John Estes51-17Time Is Drawing Near307408Sleepy John Estes51-18Tell Me How About It (Mr. Tom's Blues)307408Sleepy John Estes51-19Mailman Blues307408Sleepy John Estes51-20Mary Come On Home307408Sleepy John Estes51-21Working Man Blues307408Sleepy John Estes51-22Don't You Want To Know374256The Delta Boys51-23Lawyer Clark Blues307408Sleepy John Estes51-24You Shouldn't Do That374256The Delta Boys51-25Little Laura Blues307408Sleepy John Estes51-26When The Saints Go Marching In374256The Delta Boys52-1Picking My Tomatoes322293Brownie McGhee52-2I'm Callin' Daisy322293Brownie McGhee52-3Me And My Dog Blues322293Brownie McGhee52-4Born For Bad Luck322293Brownie McGhee52-5Step It Up And Down322293Brownie McGhee52-6Let Me Tell You 'bout My Baby322293Brownie McGhee52-7Prison Woman Blues322293Brownie McGhee52-8Be Good To Me322293Brownie McGhee52-9My Barkin' Bulldog Blues322293Brownie McGhee52-10Not Guilty Blues322293Brownie McGhee52-11Coal Miner Blues322293Brownie McGhee52-12Back Door Stranger322293Brownie McGhee52-13Step It Up And Down No. 2322293Brownie McGhee52-14Got To Find My Little Woman322293Brownie McGhee52-15Dealing With The Devil322293Brownie McGhee52-16I'm A Black Woman's Man322293Brownie McGhee52-17Woman, I'm Done322293Brownie McGhee52-18Death Of Blind Boy Fuller322293Brownie McGheeSet 1453-1The Jive Blues322322Memphis Slim53-2Diggin' My Potatoes N°2322322Memphis Slim53-3Last Pair Of Shoes Blues322322Memphis Slim53-4Miss Ora Lee Blues322322Memphis Slim53-5Blue Evening Blues322322Memphis Slim53-6Blues At Midnight322322Memphis Slim53-7Beer Drinking Woman322322Memphis Slim53-8You Didn't Mean Me No322322Memphis Slim53-9Grinder Man Blues322322Memphis Slim53-10Empty Room Blues322322Memphis Slim53-11Shelby County Blues322322Memphis Slim53-12I See My Great Mistake322322Memphis Slim53-13Old Taylor322322Memphis Slim53-14I Believe I'll Settle Down322322Memphis Slim53-15Jasper' Gal322322Memphis Slim53-16You Got To Help Me Some322322Memphis Slim53-17Two Of A Kind322322Memphis Slim53-18Whiskey Store Blues322322Memphis Slim53-19Maybe I'll Loan A Dime322322Memphis Slim53-20Me, Myself, And I322322Memphis Slim53-21You Gonna Worry Too322322Memphis Slim53-22This Life I'm Living322322Memphis Slim53-23Caught The Old Coon Last Night322322Memphis Slim53-24Lend Me Your Love322322Memphis Slim54-1Country Blues59246Muddy Waters54-2I Be's Troubled59246Muddy Waters54-3Burr Clover Farm Blues59246Muddy Waters54-4Take A Walk With Me59246Muddy Waters54-5Burr Clover Blues59246Muddy Waters54-6Walkin' Blues59246Muddy Waters54-7Can't Be Satisfied59246Muddy Waters54-8Gypsy Woman59246Muddy Waters54-9Mean Red Spider59246Muddy Waters54-10I Feel Like Going Home59246Muddy Waters54-11Little Anna Mae59246Muddy Waters54-12Train Fare Home Blues59246Muddy Waters54-13Little Geneva59246Muddy Waters54-14Rollin' And Tumblin'59246Muddy Waters54-15Streamline59246Muddy Waters54-16Rolling Stone59246Muddy Waters54-17You Gonna Miss Me59246Muddy Waters55-1Black Pony Blues368543Arthur "Big Boy" Crudup55-2Death Valley Blues368543Arthur "Big Boy" Crudup55-3If I Get Lucky368543Arthur "Big Boy" Crudup55-4Kind Lover Blues368543Arthur "Big Boy" Crudup55-5Standing At My Window368543Arthur "Big Boy" Crudup55-6Mean Old Frisco Blues368543Arthur "Big Boy" Crudup55-7Gonna Follow My Baby368543Arthur "Big Boy" Crudup55-8Give Me A 32-30368543Arthur "Big Boy" Crudup55-9My Mama Don't Allow Me368543Arthur "Big Boy" Crudup55-10Raised To My Hand368543Arthur "Big Boy" Crudup55-11Who's Been Foolin' You368543Arthur "Big Boy" Crudup55-12Cool Disposition368543Arthur "Big Boy" Crudup55-13Rock Me Mama368543Arthur "Big Boy" Crudup55-14Keep Your Arms Around Me368543Arthur "Big Boy" Crudup55-15I'm In The Mood368543Arthur "Big Boy" Crudup55-16That's Your Red Wagon368543Arthur "Big Boy" Crudup55-17Dirt Road Blues368543Arthur "Big Boy" Crudup55-18She's Gone368543Arthur "Big Boy" Crudup55-19Boy Friend Blues368543Arthur "Big Boy" Crudup55-20No More Lovers368543Arthur "Big Boy" Crudup56-1Nobody In My Mind311742Big Joe Turner56-2Somebody Got To Go311742Big Joe Turner56-3Ice Man311742Big Joe Turner56-4Chewed Up Grass311742Big Joe Turner56-5Rocks In My Bed311742Big Joe TurnerWith374297The Freddie Slack Trio56-6Blues On Central Avenue311742Big Joe TurnerWith374297The Freddie Slack Trio56-7Goin' To Chicago Blues311742Big Joe TurnerWith374297The Freddie Slack Trio56-8Sun Risin' Blues311742Big Joe TurnerWith374297The Freddie Slack Trio56-9Blues In The Night311742Big Joe TurnerWith374297The Freddie Slack Trio56-10Cry Baby Blues311742Big Joe TurnerWith374297The Freddie Slack Trio56-11It's The Same Old Story311742Big Joe Turner56-12Rebecca311742Big Joe Turner56-13Little Gal's Blues311742Big Joe Turner56-14I Got A Gal (For Every Day In The Week)311742Big Joe Turner56-15S. K. Blues Part 1311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-Stars56-16S. K. Blues Part 2311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-Stars56-17Johnson And Turner Blues311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-Stars56-18Watch That Jive311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-Stars56-19Howlin' Winds311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-Stars56-20Doggin' The Blues (Low Dog Blues)311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-Stars56-21I Got My Discharge Papers311742Big Joe TurnerJoe TurnerWith374298Pete Johnson's All-StarsSet 1557-1Jivin' The Jive332327Roosevelt Sykes57-2Mellow Queen332327Roosevelt Sykes57-3Strange Woman332327Roosevelt Sykes57-4This Tavern Boogie332327Roosevelt Sykes57-5Anytime Is The Right Time332327Roosevelt Sykes57-6The Honeydripper332327Roosevelt Sykes57-7Sate Bait332327Roosevelt Sykes57-8Peepin' Tom332327Roosevelt Sykes57-9Sunny Road332327Roosevelt Sykes57-10Living In A Different World332327Roosevelt Sykes57-11Flames Of Jive332327Roosevelt Sykes57-12Homesick Blues332327Roosevelt Sykes57-13I'm Her Honeydripper332327Roosevelt Sykes57-14Bobby Sox Blues332327Roosevelt Sykes57-15Kilroy's In Town332327Roosevelt Sykes57-16Walkin' And Drinkin'332327Roosevelt Sykes57-17High Is A Georgia Pine332327Roosevelt Sykes57-18Until The Clowns Come Home332327Roosevelt Sykes57-19Southern Blues332327Roosevelt Sykes57-20My Baby Is Gone332327Roosevelt Sykes57-21Rock It332327Roosevelt Sykes57-22Drivin' Wheel332327Roosevelt Sykes58-1Feel So Bad290582Lightnin' Hopkins58-2Katie May290582Lightnin' Hopkins58-3Blues (That Mean Old Twister)290582Lightnin' Hopkins58-4I Can't Stay Here In Your Town290582Lightnin' Hopkins58-5Can't Do Like You Used To290582Lightnin' Hopkins58-6Short Haired Woman290582Lightnin' Hopkins58-7West Coast Blues290582Lightnin' Hopkins58-8Fast Mail Rambler290582Lightnin' Hopkins58-9Thinkin' And Worryin'290582Lightnin' Hopkins58-10Can't Get That Woman Out Of My Mind290582Lightnin' Hopkins58-11Picture On The Wall290582Lightnin' Hopkins58-12You're Not Going To Worry My Life Anymore290582Lightnin' Hopkins58-13You're Gonna Miss Me290582Lightnin' Hopkins58-14Have To Let You Go290582Lightnin' Hopkins58-15Someday Baby290582Lightnin' Hopkins58-16Come Back Baby290582Lightnin' Hopkins58-17My California290582Lightnin' Hopkins58-18Lightnin's Boogie290582Lightnin' Hopkins59-1Wednesday Evening Blues94557John Lee Hooker59-2My First Wife Left Me94557John Lee Hooker59-3Boogie Chillen94557John Lee Hooker59-4Sally Mae94557John Lee Hooker59-5Henry's Swing Club94557John Lee Hooker59-6Hobo Blues94557John Lee Hooker59-7Crawling King Snake94557John Lee Hooker59-8Alberta94557John Lee Hooker59-9Do My Baby Think Of Me94557John Lee Hooker59-10Three Long Years Ago94557John Lee Hooker59-11Strike Blues94557John Lee Hooker59-12Walkin' This Highway94557John Lee Hooker59-13Four Women In My Life94557John Lee Hooker59-14I Need Lovin'94557John Lee Hooker59-15Find Me A Woman94557John Lee Hooker59-16I'm In The Mood94557John Lee Hooker60-1I Gotta Guy86339Esther PhillipsLittle EstherWith374320Johnny Otis And His Orchestra60-2Mean Ole Blues86339Esther PhillipsLittle EstherWith374320Johnny Otis And His Orchestra60-3Thursday Night Blues374320Johnny Otis And His Orchestra60-4Good Ole Blues374320Johnny Otis And His Orchestra60-5Boogie Guitar (Three Guitars)98582The Johnny Otis Show60-6Ain't Nothin' Shakin'374319Leon SimsWith374320Johnny Otis And His Orchestra60-7Hangover Blues374320Johnny Otis And His Orchestra60-8Get Together Blues86339Esther PhillipsLittle EstherAnd374322Junior RyderWith374320Johnny Otis And His Orchestra60-9I'm Not Falling In Love With You104676Johnny Otis60-10If It's So Baby331401The RobinsWith374320Johnny Otis And His Orchestra60-11Our Romance Is Gone331401The RobinsWith374320Johnny Otis And His Orchestra60-12If I Didn't Love You So331401The RobinsWith374320Johnny Otis And His Orchestra60-13Rain In My Eyes331401The RobinsWith374320Johnny Otis And His Orchestra60-14Double Crossing Blues331401The RobinsWith374320Johnny Otis And His Orchestra60-15Head Hunter374320Johnny Otis And His Orchestra60-16Going To See My Baby374320Johnny Otis And His Orchestra60-17The Little Red Hen374320Johnny Otis And His Orchestra60-18New Orleans Shuffle374320Johnny Otis And His Orchestra60-19The Turkey Hop (Part 1)331401The RobinsWith374320Johnny Otis And His Orchestra60-20The Turkey Hop (Part 2)331401The RobinsWith374320Johnny Otis And His Orchestra60-21Blues Nocturne374320Johnny Otis And His Orchestra60-22Cry Baby374320Johnny Otis And His Orchestra60-23Lover's Lane Boogie98582The Johnny Otis Show60-24I Found Out My Troubles98582The Johnny Otis ShowSet 1661-1Miss Martha King37729B.B. King61-2When Your Baby Packs You Up And Goes37729B.B. King61-3Got The Blues37729B.B. King61-4Take A Swing With Me37729B.B. King61-5Mistreated Woman37729B.B. King61-6B.B. Boogie37729B.B. King61-7The Other Night Blues37729B.B. King61-8Walkin' And Cryin'37729B.B. King61-9My Baby Is Gone37729B.B. King61-10B.B. Blues37729B.B. King61-11Fine Looking Woman37729B.B. King61-12She's Dynamite37729B.B. King61-13She's A Mean Woman37729B.B. King61-14Hard Working Woman37729B.B. King61-15That Ain't The Way To Do It37729B.B. King61-16Three O'clock Blues37729B.B. King61-17She Don't Move No More37729B.B. King61-18Shake It Up And Go37729B.B. King61-19My Own Fault Darlin'37729B.B. King61-20I Gotta Find My Baby37729B.B. King62-1I'm Just A Lady's Man304917Jimmy Witherspoon62-2There Ain't Nothing Better304917Jimmy Witherspoon62-3Love My Baby304917Jimmy Witherspoon62-4Love And Friendship304917Jimmy Witherspoon62-5Good Jumping Aka Jump Children304917Jimmy Witherspoon62-6I'm Just A Country Boy304917Jimmy Witherspoon62-7Slow Your Speed304917Jimmy Witherspoon62-8Geneva Blues Aka Evil Woman304917Jimmy Witherspoon62-9I'm Just Wandering (Part 1)304917Jimmy Witherspoon62-10I'm Just Wandering (Part 2)304917Jimmy Witherspoon62-11Baby, Baby304917Jimmy Witherspoon62-12Sweet Lovin' Baby304917Jimmy Witherspoon62-13The Doctor Knows Business Aka Doctor Blues304917Jimmy Witherspoon62-14Rain, Rain, Rain304917Jimmy Witherspoon62-15Thelma Lee Blues304917Jimmy Witherspoon63-1Moanin' At Midnight340678Howlin' Wolf63-2How Many More Years340678Howlin' Wolf63-3Riding In The Moonlight340678Howlin' Wolf63-4Dog Me Around340678Howlin' Wolf63-5Morning At Midnight340678Howlin' Wolf63-6Keep What You Got340678Howlin' Wolf63-7Riding In The Moonlight340678Howlin' Wolf63-8House Rockin' Boogie340678Howlin' Wolf63-9Crying At Daybreak340678Howlin' Wolf63-10Passing My Blues340678Howlin' Wolf63-11My Baby Stole Off340678Howlin' Wolf63-12I Want Your Picture340678Howlin' Wolf63-13The Wolf Is At Your Door (Howlin' For My Baby)340678Howlin' Wolf63-14California Blues340678Howlin' Wolf63-15California Blues340678Howlin' Wolf63-16Look-A-Here340678Howlin' Wolf63-17Howlin' Wolf Boogie340678Howlin' Wolf63-18Smile At Me340678Howlin' Wolf63-19Getting Old And Grey340678Howlin' Wolf63-20Mr. Highway Man340678Howlin' Wolf63-21My Baby Walked Off340678Howlin' Wolf63-22C.V. Wine Blues340678Howlin' Wolf63-23My Troubles And Me340678Howlin' Wolf63-24Chocloate Drop340678Howlin' Wolf63-25Highway Man340678Howlin' Wolf64-1Roll With Me Baby30552Ray Charles64-2The Sun's Gonna Shine Again30552Ray Charles64-3Jumpin' In The Morning30552Ray Charles64-4The Midnight Hour30552Ray Charles64-5It Should Have Been Me30552Ray Charles64-6Heartbreaker30552Ray Charles64-7Sinner's Prayer30552Ray Charles64-8Mess Around30552Ray Charles64-9Losing Hand30552Ray Charles64-10Funny But I Still Love You30552Ray Charles64-11Feelin' Sad30552Ray Charles64-12I Wonder Who30552Ray Charles64-13Don't You Know30552Ray Charles64-14Ray's Blues30552Ray Charles64-15Nobody Cares30552Ray Charles64-16Mr. Charles Blues30552Ray Charles64-17Black Jack30552Ray Charles64-18I Got A Woman30552Ray Charles64-19Come Baby Come30552Ray Charles64-20Greenbacks30552Ray CharlesBoogie WoogieSet 1765-1Boogie Woogie Stomp310295Albert Ammons65-2Chicago In Mind310295Albert Ammons65-3Suitcase Blues310295Albert Ammons65-4Boogie Woogie Blues310295Albert Ammons65-5Untitled Ammons Original310295Albert Ammons65-6Bass Goin' Crazy310295Albert Ammons65-7Backwater Blue310295Albert Ammons65-8Changes In Boogie Woogie310295Albert Ammons65-9Albert's Special Boogie Woogie310295Albert Ammons65-10The Boogie Rocks310295Albert Ammons65-11Blues On My Mind310295Albert Ammons65-12Bugle Boogie310295Albert Ammons65-13Doin' The Boogie Woogie310295Albert Ammons65-14Oh, Lady Be Good310295Albert Ammons65-15Suitcase Blues310295Albert Ammons65-16Boogie Woogie At The CIVIC Opera310295Albert Ammons65-17Swanee River Boogie310295Albert Ammons65-18Why I'm Leaving You310295Albert Ammons65-19I Don't Want To See You310295Albert Ammons65-20Red Sails In The Sunset310295Albert Ammons66-1Honky Tonk Train Blues317893Meade "Lux" Lewis66-2Bass On Top317893Meade "Lux" Lewis66-3Six Wheel Chaser317893Meade "Lux" Lewis66-4Tell Your Story317893Meade "Lux" Lewis66-5Tell Your Story N° 2317893Meade "Lux" Lewis66-6Rising Tide Blues317893Meade "Lux" Lewis66-7Doll House Boogie317893Meade "Lux" Lewis66-8Denapas Parade317893Meade "Lux" Lewis66-9The Boogie Tidal317893Meade "Lux" Lewis66-10Randini's Boogie317893Meade "Lux" Lewis66-11Lux's Boogie317893Meade "Lux" Lewis66-12Yancey's Pride317893Meade "Lux" Lewis66-13Glendale Glide317893Meade "Lux" Lewis66-14Yancey Special317893Meade "Lux" Lewis66-15Blues Whistle317893Meade "Lux" Lewis66-16Chicago Flyer317893Meade "Lux" Lewis67-1Kaycee Feeling278781Pete Johnson67-2Lights Out Mood278781Pete Johnson67-3Drive Bomber278781Pete Johnson67-4Answer To The Boogie278781Pete Johnson67-5Mr. Freddy Blues278781Pete Johnson67-6Zero Hours278781Pete Johnson67-7Bottomland Boogie278781Pete Johnson67-8Rock It Boogie278781Pete Johnson67-9Backroom Boogie278781Pete Johnson67-101946 Stomp (1280 Stomp)278781Pete Johnson67-11Pete's Lonesome Blues278781Pete Johnson67-12Mr. Drums Meets Mr. Piano278781Pete Johnson67-13Mutiny In The Doghouse278781Pete Johnson67-14Pete Kay Boogie278781Pete Johnson67-15Central Avenue Drag278781Pete Johnson67-1666 Stomp278781Pete Johnson67-17Minuet Boogie278781Pete Johnson67-18Yancey Street Boogie278781Pete Johnson67-19Hollywood Boogie278781Pete Johnson67-20Wiley's Boogie278781Pete Johnson68-1Meade Lux Special335674Artie Shaw And His Orchestra68-2Boogie Woogie253855Tommy Dorsey And His Orchestra68-3Honky Tonky Train Blues374399Bob Crosby And His Orchestra68-4Indian Boogie Woogie284746Woody Herman And His Orchestra68-5Roll 'em374400Benny Goodman And His OrchestraWith310295Albert Ammons&317893Meade "Lux" Lewis68-6Back Beat Boogie265635Harry James And His Orchestra68-7Cow Cow Blues335673Bob Zurke And His Delta Rhythm Band68-8Basie Boogie145262Count Basie68-9Boogie Woogie On The St. Louis Blues341505Earl Hines And His Orchestra68-10Scrub Me Mama With A Boogie Beat341403Charlie Barnet And His Orchestra68-11Drum Boogie317887Gene Krupa And His Orchestra68-12Basie Boogie253011Count Basie Orchestra68-13Hamp's Boogie Woogie136133Lionel Hampton68-14Boogie Woogie340731Jack Teagarden And His Orchestra68-15Wild Bill's Boogie145262Count Basie68-16Hamp's Walking Boogie136133Lionel Hampton68-17Hamp's Boogie Woogie No. 2317907Lionel Hampton And His Orchestra68-18Gene's Boogie374398Gene Krupa And His Swinging Big Band68-19Hob Nail Boogie145262Count Basie68-20Pinetop's Blues284746Woody Herman And His OrchestraSwing To Bebop - Modern JazzSet 1869-1Black And Blue Bottom374502Joe Venuti & Eddie Lang69-2Stringin' The Blues374502Joe Venuti & Eddie Lang69-3Wild Cat374502Joe Venuti & Eddie Lang69-4Sunshine374502Joe Venuti & Eddie Lang69-5Goin' Places374502Joe Venuti & Eddie Lang69-6Doin' Things374502Joe Venuti & Eddie Lang69-7Kickin' The Cat334068Joe Venuti's Blue Four69-8Beatin' The Dog334068Joe Venuti's Blue Four69-9Cheese And Crackers334068Joe Venuti's Blue Four69-10Penn Beach Blues374502Joe Venuti & Eddie Lang69-11Dinah374502Joe Venuti & Eddie Lang69-12The Wild Dog374502Joe Venuti & Eddie Lang69-13Sweet Sue, Just You374502Joe Venuti & Eddie Lang69-14I've Found A New Baby374502Joe Venuti & Eddie Lang69-15I'll Never Be The Same374502Joe Venuti & Eddie Lang69-16Little Girl374502Joe Venuti & Eddie Lang69-17The Wolf Wobble374504Joe Venuti's Rhythm Boys69-18Raggin' The Scale374503Joe Venuti / Eddie Lang Blue Four70-1Handful Of Keys253482Fats Waller70-2The Minor Drags253482Fats Waller70-3Smashing Thirds253482Fats Waller70-4Do Me A Favour253482Fats Waller70-5I Wish I Were Twins253482Fats Waller70-6Armful O' Sweetness253482Fats Waller70-7Have A Little Dream On Me253482Fats Waller70-8You're Not The Only Oyster In The Stew253482Fats Waller70-9Mandy253482Fats Waller70-10Let's Pretend There's A Moon253482Fats Waller70-11Honeysuckle Rose253482Fats Waller70-12If It Isn't Love253482Fats Waller70-13I'm Growing Fonder Of You253482Fats Waller70-14Dream Man253482Fats Waller70-15African Ripples253482Fats Waller70-16Alligator Crawl253482Fats Waller70-17Viper's Drag253482Fats Waller70-18Sugar Blues253482Fats Waller70-19Shame! Shame! (Everybody Knows Your Game)314843Fats Waller & His Rhythm70-20Tell Me With Your Kisses314843Fats Waller & His Rhythm70-21I've Got My Fingers Crossed314843Fats Waller & His Rhythm71-1Hello, Lola251769Coleman Hawkins71-2If I Could Be With You One Hour Tonight251769Coleman Hawkins71-3Dismal Dan251769Coleman Hawkins71-4I Can't Believe That You're In Love With Me251769Coleman Hawkins71-5Jamaica Shout251769Coleman Hawkins71-6Rhythm Crazy251769Coleman Hawkins71-7It Sends Me251769Coleman Hawkins71-8I Ain't Got Nobody251769Coleman Hawkins71-9On The Sunny Side Of The Street251769Coleman Hawkins71-10Lullaby251769Coleman Hawkins71-11Oh! Lady Be Good251769Coleman Hawkins71-12Lost In A Fog251769Coleman Hawkins71-13Honeysuckle Rose251769Coleman Hawkins71-14Some Of These Days251769Coleman Hawkins71-15After You've Gone251769Coleman Hawkins71-16I Wish I Were Twins251769Coleman Hawkins71-17Blue Moon251769Coleman Hawkins71-18Avalon251769Coleman Hawkins71-19What A Difference A Day Makes251769Coleman Hawkins71-20Stardust251769Coleman Hawkins71-21Chicago251769Coleman Hawkins71-22Meditation251769Coleman Hawkins71-23What Harlem Is To Me251769Coleman Hawkins71-24Netcha's Dream251769Coleman Hawkins72-1Tea For Two265634Art Tatum72-2Sophisticated Lady265634Art Tatum72-3What Will I Tell My Heart374506Art Tatum And His Swingsters72-4I've Got My Love To Keep Me Warm374506Art Tatum And His Swingsters72-5The Sheik Of Araby265634Art Tatum72-6Stormy Weather265634Art Tatum72-7Gone With The Wind265634Art Tatum72-8I'll Get By265634Art Tatum72-9It Had To Be You265634Art Tatum72-10Tiger Rag265634Art Tatum72-11Get Happy265634Art Tatum72-12Sweet Lorraine265634Art Tatum72-13St. Louis Blues265634Art Tatum72-14Begin With The Beguine265634Art Tatum72-15Indiana265634Art Tatum72-16Rosetta265634Art Tatum72-17Stompin' At The Savoy265634Art Tatum72-18Battery Bounce265634Art TatumSet 1973-1The Blue Room317903Bennie Moten's Kansas City Orchestra73-2New Orleans317903Bennie Moten's Kansas City Orchestra73-3Milenberg Joys317903Bennie Moten's Kansas City Orchestra73-4Lafayette317903Bennie Moten's Kansas City Orchestra73-5Rug Cutter's Swing317895Fletcher Henderson And His Orchestra73-6Dream Lullaby368184Benny Carter And His Orchestra73-7Tea For Two342361Teddy Wilson And His Orchestra73-8Early Session Hop257115Ben Webster73-9Cotton Tail284747Duke Ellington And His Orchestra73-10Linger Awhile374632Rex Stewart And His Orchestra73-11Raincheck284747Duke Ellington And His Orchestra73-12Perdido284747Duke Ellington And His Orchestra73-13Woke Up Clipped374633Ben Webster And His Orchestra73-14After You've Gone373894James P. Johnson's Blue Note Jazzmen73-15Sleep257115Ben Webster73-16Memories Of You257115Ben Webster73-17Just A Riff257115Ben Webster73-18Blue Skies374634Ben Webster Quartet73-19Kat's Fur374634Ben Webster Quartet73-20I Surrender Dear374634Ben Webster Quartet74-1After You've Gone355185Quintette Du Hot Club De France74-2I Can't Give You Anything But Love355185Quintette Du Hot Club De France74-3Limehouse Blues355185Quintette Du Hot Club De France74-4Oriental Shuffle355185Quintette Du Hot Club De France74-5Nagasaki355185Quintette Du Hot Club De France74-6Swing Guitars355185Quintette Du Hot Club De France74-7Georgia On My Mind355185Quintette Du Hot Club De France74-8Shine355185Quintette Du Hot Club De France74-9Sweet Chorus355185Quintette Du Hot Club De France74-10Exactly Like You355185Quintette Du Hot Club De France74-11Charlston355185Quintette Du Hot Club De France74-12You're Driving Me Crazy355185Quintette Du Hot Club De France74-13Ain't Misbehavin'355185Quintette Du Hot Club De France74-14Rose Room355185Quintette Du Hot Club De France74-15When Day Is Done355185Quintette Du Hot Club De France74-16Runnin' Wild355185Quintette Du Hot Club De France74-17Chicago355185Quintette Du Hot Club De France74-18Minor Swing355185Quintette Du Hot Club De France75-1After You've Gone311733Benny Goodman Trio75-2Body And Soul [Take 1]311733Benny Goodman Trio75-3Body And Soul [Take 2]311733Benny Goodman Trio75-4Who?311733Benny Goodman Trio75-5Someday, Sweetheart311733Benny Goodman Trio75-6China Boy311733Benny Goodman Trio75-7More Than You Know311733Benny Goodman Trio75-8All My Life311733Benny Goodman Trio75-9Oh, Lady Be Good311733Benny Goodman Trio75-10Nobody's Sweetheart311733Benny Goodman Trio75-11Too Good To Be True311733Benny Goodman Trio75-12Moonglow311733Benny Goodman Trio75-13Dinah311733Benny Goodman Trio75-14Exactly Like You311733Benny Goodman Trio75-15Vibraphone Blues311733Benny Goodman Trio75-16Sweet Sue - Just You270025The Benny Goodman Quartet75-17My Melancholy Baby270025The Benny Goodman Quartet75-18Tiger Rag [Take 1]270025The Benny Goodman Quartet75-19Stompin' At The Savoy [Take 1]270025The Benny Goodman Quartet75-20Stompin' At The Savoy [Take 2]270025The Benny Goodman Quartet76-1When I Grow Too Old To Dream258459Roy Eldridge76-2(Lookie, Lookie, Lookie) Here Comes Cookie258459Roy Eldridge76-3Big Chief De Sota317895Fletcher Henderson And His Orchestra76-4Stealin' Apples317895Fletcher Henderson And His Orchestra76-5Blue Lou317895Fletcher Henderson And His Orchestra76-6Warmin' Up342361Teddy Wilson And His Orchestra76-7Blues In C Sharp Minor342361Teddy Wilson And His Orchestra76-8Mary Had A Little Lamb342361Teddy Wilson And His Orchestra76-9Heckler's Hop258459Roy Eldridge76-10Florida Stomp258459Roy Eldridge76-11Wabash Stomp258459Roy Eldridge76-12After You've Gone258459Roy Eldridge76-13When The Lazy River Goes By258459Roy Eldridge76-14That Thing258459Roy Eldridge76-15Wham (Be-Bop-Boom-Bam)258459Roy Eldridge76-16Fallin' In Love Again258459Roy Eldridge76-17I'm Nobody's Baby258459Roy Eldridge76-18Let Me Off Uptown317887Gene Krupa And His OrchestraSet 2077-1Angry257353Earl Hines77-2Grand Terrace Shuffle341505Earl Hines And His Orchestra77-3Piano Man341505Earl Hines And His Orchestra77-4G.T. Stomp341505Earl Hines And His Orchestra77-5Father Steps In341505Earl Hines And His Orchestra77-6Rosetta257353Earl Hines77-7Boogie Woogie On St. Louis Blues341505Earl Hines And His Orchestra77-8Deep Forrest341505Earl Hines And His Orchestra77-9Number 19341505Earl Hines And His Orchestra77-10Body And Soul257353Earl Hines77-11Child Of Disordered Brain257353Earl Hines77-12Tantalizing A Cuban341505Earl Hines And His Orchestra77-13Blues In Thirds374752Sidney Bechet And His Trio77-14Up Jumped The Devil341505Earl Hines And His Orchestra77-15On The Sunny Side Of The Street257353Earl Hines77-16My Melancholy Baby257353Earl Hines77-17Windy City Jive341505Earl Hines And His Orchestra77-18The Earl341505Earl Hines And His Orchestra77-19Second Balcony Jump341505Earl Hines And His Orchestra78-1Shoe Shine Boy374754Jones-Smith Incorporated78-2I Want A Little Girl311722Kansas City SixWith258433Lester Young78-3Countless Blues311722Kansas City SixWith258433Lester Young78-4China Boy374755Glenn Hardman And His Hammond Five78-5Exactly Like You374755Glenn Hardman And His Hammond Five78-6On The Sunny Side Of The Street374755Glenn Hardman And His Hammond Five78-7Upright Organ Blues374755Glenn Hardman And His Hammond Five78-8Who?374755Glenn Hardman And His Hammond Five78-9Jazz Me Blues374755Glenn Hardman And His Hammond Five78-10Dickie's Heaven317874Count Basie And The Kansas City Seven78-11Lester Leaps In317874Count Basie And The Kansas City Seven78-12What's Your Number253011Count Basie Orchestra78-13Five O'clock Whistle253011Count Basie Orchestra78-14Broadway253011Count Basie Orchestra78-15Afternoon On A Basie-Ite374751Lester Young Quartet78-16Sometimes I'm Happy374751Lester Young Quartet78-17Just You, Just Me374751Lester Young Quartet78-18I Never Knew374751Lester Young Quartet78-19Lester Leaps In311722Kansas City Six78-20I Got Rhythm311722Kansas City Six79-1Somebody Loves Me254769Teddy Wilson79-2I'm Painting The Town Red342361Teddy Wilson And His Orchestra79-3All My Life342361Teddy Wilson And His Orchestra79-4Why Do I Lie To Myself About You?342361Teddy Wilson And His Orchestra79-5The Way You Look Tonight254769Teddy Wilson79-6Sailin'254769Teddy Wilson79-7I've Found A New Baby342361Teddy Wilson And His Orchestra79-8Just A Mood374748Teddy Wilson Quartet79-9If Dreams Come True342361Teddy Wilson And His Orchestra79-10I Got Rhythm254769Teddy Wilson79-11Jumpin' For Joy254769Teddy Wilson79-12Wham (Re-Bop-Boom-Bam)342361Teddy Wilson And His Orchestra79-13Liza342361Teddy Wilson And His Orchestra79-1471342361Teddy Wilson And His Orchestra79-15China Boy254769Teddy Wilson79-16Indiana342361Teddy Wilson And His Orchestra79-17I Want To Be Happy254769Teddy Wilson79-18Rose Room254769Teddy Wilson79-19Just Like A Butterfly254769Teddy Wilson80-1Black Bottom258701Benny CarterAnd374750The Ramblers80-2Nightfall258701Benny Carter80-3Swinging The Blues258701Benny Carter80-4Gloaming258701Benny CarterMed374749Sonora Swing Band80-5Carry Me Back To Old Virginy374747Benny Carter And His Swinging Quintet80-6I've Got Two Lips258701Benny Carter80-7When Day Is Gone258701Benny Carter80-8Jingle Bells374747Benny Carter And His Swinging Quintet80-9Gin And Jive368184Benny Carter And His Orchestra80-10New Street Swing258701Benny CarterAnd374750The Ramblers80-11There'll Be Some Changes Made374747Benny Carter And His Swinging Quintet80-12Nagasaki368184Benny Carter And His Orchestra80-13There's A Small Hotel368184Benny Carter And His Orchestra80-14I Gotta Go258701Benny Carter80-15Bugle Call Rag258701Benny CarterWith3786948Kai Ewans Og Hans OrkesterKai Ewan's Orchestra80-16I'm In The Mood For Swing368184Benny Carter And His Orchestra80-17Swingin' At Maida Vale258701Benny CarterSet 2181-1China Stomp136133Lionel Hampton81-2I Know That You Know136133Lionel Hampton81-3On The Sunny Side Of The Street136133Lionel Hampton81-4Drum Stomp (Crazy Rhythm)136133Lionel Hampton81-5After You've Gone136133Lionel Hampton81-6Ring Dem Bells136133Lionel Hampton81-7Muskrat Ramble136133Lionel Hampton81-8Shoe Shiner's Rag136133Lionel Hampton81-9High Society136133Lionel Hampton81-10It Don't Mean A Thing (If It Ain't Got That Swing)136133Lionel Hampton81-11Sweethearts On Parade136133Lionel Hampton81-12Twelfth Street Rag136133Lionel Hampton81-13Memories Of You136133Lionel Hampton81-14One Sweet Letter From You136133Lionel Hampton81-15I've Found A New Baby136133Lionel Hampton81-16Four Or Five Times136133Lionel Hampton81-17The Sheik Of Araby136133Lionel Hampton81-18Dinah136133Lionel Hampton81-19Singin' The Blues136133Lionel Hampton81-20House Of Morgan136133Lionel Hampton81-21Jivin' With Jarvis136133Lionel Hampton81-22Blue Because Of You136133Lionel Hampton81-23Doug-Rey-Mi136133Lionel Hampton82-1Undecided374830John Kirby And His Onyx Club Boys82-2Rehearsin' For A Nervous Breakdown374830John Kirby And His Onyx Club Boys82-3Royal Garden Blues374830John Kirby And His Onyx Club Boys82-4Blue Skies374830John Kirby And His Onyx Club Boys82-5Opus 5374830John Kirby And His Onyx Club Boys82-6Front And Centre374830John Kirby And His Onyx Club Boys82-7Sweet Georgia Brown374830John Kirby And His Onyx Club Boys82-8It Feels Good374830John Kirby And His Onyx Club Boys82-9Andiology374830John Kirby And His Onyx Club Boys82-10Coquette374830John Kirby And His Onyx Club Boys82-11Zooming At The Zombie374830John Kirby And His Onyx Club Boys82-12Jumpin' In The Pump Room374830John Kirby And His Onyx Club Boys82-1320th Century Closet374830John Kirby And His Onyx Club Boys82-14Blues Petite374830John Kirby And His Onyx Club Boys82-15Can't We Be Friends?374830John Kirby And His Onyx Club Boys82-16Beethoven Riffs On374830John Kirby And His Onyx Club Boys82-17Prelude For Trumpet374830John Kirby And His Onyx Club Boys82-18The Peanut Vendor374830John Kirby And His Onyx Club Boys82-19Blue Fantasy374830John Kirby And His Onyx Club Boys82-20Revolutionary Etude374830John Kirby And His Onyx Club Boys82-21Ida! Sweet As Apple Cider374830John Kirby And His Onyx Club Boys82-22Echoes Of Harlem374830John Kirby And His Onyx Club Boys83-1Flying Home311730Benny Goodman Sextet83-2Stardust311730Benny Goodman Sextet83-3Soft Winds311730Benny Goodman Sextet83-4Seven Come Eleven311730Benny Goodman Sextet83-5Honeysuckle Rose374400Benny Goodman And His Orchestra83-6Ac-Dc Current311730Benny Goodman Sextet83-7Till Down Special311730Benny Goodman Sextet83-8Gone With 'what' Wind311730Benny Goodman Sextet83-9Poor Butterfly311730Benny Goodman Sextet83-10Good Enough To Keep (Air Mail Special)311730Benny Goodman Sextet83-11Six Appeal311730Benny Goodman Sextet83-12I Never Knew311730Benny Goodman Sextet83-13Lester's Dream311730Benny Goodman Sextet83-14Royal Garden Blues311730Benny Goodman Sextet83-15Wholly Cats311730Benny Goodman Sextet83-16As Long As I Live311730Benny Goodman Sextet83-17Benny's Bugle311730Benny Goodman Sextet83-18I Can't Give You Anything But Love311730Benny Goodman Sextet83-19Breakfast Feud311730Benny Goodman Sextet83-20I Found A New Baby311730Benny Goodman Sextet83-21Profoundly Blue311727Edmond Hall Celeste Quartet83-22A Smo-O-Oth One254768Benny Goodman83-23Solo Flight (Chonk, Charlie, Chonk)374400Benny Goodman And His Orchestra84-1I've Found A New Baby374827Dexter Gordon Quintet84-2Rosetta374827Dexter Gordon Quintet84-3Sweet Lorraine374827Dexter Gordon Quintet84-4I Blowed And Gone374827Dexter Gordon Quintet84-5If I Had You374828Sir Charles And His All Stars84-6Blow Mr. Dexter374831Dexter Gordon's All Stars84-7Dexter's Deck374831Dexter Gordon's All Stars84-8Dexter's Cuttin' Out374831Dexter Gordon's All Stars84-9Dexter's Minor Mood374831Dexter Gordon's All Stars84-10Long Tall Dexter374827Dexter Gordon Quintet84-11Dexter Rides Again374827Dexter Gordon Quintet84-12I Can't Escape From You374827Dexter Gordon Quintet84-13Dexter Digs In374827Dexter Gordon Quintet84-14Dextrose374826Dexter Gordon And His Boys84-15Index374826Dexter Gordon And His Boys84-16Dextivity374826Dexter Gordon And His BoysSet 2285-1White Rose Bounce262816Erroll Garner85-2Twistin' The Cats Tail262816Erroll Garner85-3Movin' Around262816Erroll Garner85-4Night And Day262816Erroll Garner85-5Sweet Lorraine262816Erroll Garner85-6Yesterdays262816Erroll Garner85-7Loot To Boot262816Erroll Garner85-8Gaslight262816Erroll Garner85-9Stardust262816Erroll Garner85-10Frantonality262816Erroll Garner85-11Laura262816Erroll Garner85-12Pastel262816Erroll Garner85-13Trio262816Erroll Garner85-14Frankie And Johnny Fantasy262816Erroll Garner85-15Play Piano Play262816Erroll Garner86-1Hop, Skip And Jump374922Slam Stewart Trio86-2Sherry Lynn Flip374922Slam Stewart Trio86-3Three Blind Mice374922Slam Stewart Trio86-4Blue, Brown And Beige374922Slam Stewart Trio86-5Play Fiddle Play374919Slam Stewart Quartet86-6Dark Eyes374919Slam Stewart Quartet86-7Laff Slam Slam (Laff Slam Laff)374919Slam Stewart Quartet86-8Jumpin' At The Deuces374919Slam Stewart Quartet86-9Haw Daw306395Slam Stewart86-10Dozin'306395Slam Stewart86-11Talkin' Back306395Slam Stewart86-12The One That Got Away (Three Feathers)306395Slam Stewart86-13Honeysuckle Rose374925Slam Stewart Quintet86-14Mood To Be Stewed374925Slam Stewart Quintet86-15The Voice Of The Turtle374925Slam Stewart Quintet86-16Slammin' The Gate374925Slam Stewart Quintet86-17Jingle Bell374925Slam Stewart Quintet86-18On The Upside Looking Down374925Slam Stewart Quintet86-19Time On My Hands374925Slam Stewart Quintet86-20A Bell For Norvo374925Slam Stewart Quintet86-21Oh Me, Oh My, Oh Gosh374928Slam Stewart And The Jazz Tones86-22Doctor Foo374928Slam Stewart And The Jazz Tones86-23Blues Collins374928Slam Stewart And The Jazz Tones86-24Coppin' Out374928Slam Stewart And The Jazz Tones87-1Dell's Bells374916Wardell Gray Quartet87-2One For Prez374916Wardell Gray Quartet87-3The Man I Love374916Wardell Gray Quartet87-4Easy Swing374916Wardell Gray Quartet87-5The Great Lie (Part 1 & 2)374916Wardell Gray Quartet87-6Blue Lou272019Wardell Gray87-7She's Got The Blues For Sale272019Wardell Gray87-8The Chase272019Wardell Gray87-9How High The Moon1326752International "Pop" All StarsInternational All Stars87-10C Jam Blues1326752International "Pop" All StarsInternational All Stars87-11Marry's Idea311730Benny Goodman Sextet87-12Bye Bye Blues Bop311730Benny Goodman Sextet87-13Stealin' Apples311730Benny Goodman Sextet87-14Lady Bird317882The Tadd Dameron Sextet87-15Symphonette317882The Tadd Dameron Sextet87-16Shawn374915Wardell Gray Quintet87-17The Hucklebuck374400Benny Goodman And His Orchestra87-18It's The Talk Of The Town272019Wardell Gray87-19Bedlam374832Benny Goodman Septet87-20In The Land Of Oo-Bla-Dee374832Benny Goodman Septet88-1Vout Rhythm374917Bob Mosely & All Stars88-2Stormy Mood374917Bob Mosely & All Stars88-3Bee Boogie Boo374917Bob Mosely & All Stars88-4Irresistible You262587Lucky Thompson88-5Phace262587Lucky Thompson88-6The Hour Of Parting5334008George's Dukes And DuchessGeorge Dukes And The Dutchess88-7Abernaty's Boogie5334008George's Dukes And DuchessGeorge Dukes And The Dutchess88-8Cherokee5334008George's Dukes And DuchessGeorge Dukes And The Dutchess88-9Slowin' Down The Blues5334008George's Dukes And DuchessGeorge Dukes And The Dutchess88-10Snowbound374921David AllynWith6630251Frank Devenport QuintetteFrank Davenport Quintet88-11Flight Of The Vout Bug262587Lucky Thompson88-12It Shouldn't Happen To A Dream262587Lucky Thompson88-13For You262587Lucky Thompson88-14Things Ain't What They Used To Be374924Ike Carpenter And His Orchestra88-15Jeep's Blues374924Ike Carpenter And His Orchestra88-16Day Dream374920Phil Moore And His Orchestra88-17Take The A Train262587Lucky Thompson88-18Hickory Dickory Dock317863Ernie AndrewsWith374918Eddie Beal And His Fourtette88-19Blue Rhythm Be-Bop1678805The Mills Blue Rhythm BandMill's Blue Rhythm BandSet 2389-1Slam-In' Around255563Don Byas89-2Harvard Blues255563Don Byas89-3Three O'clock In The Morning255563Don Byas89-4Stardust255563Don Byas89-5Dark Eyes255563Don Byas89-6Laura255563Don Byas89-7Nancy255563Don Byas89-8Embraceable You255563Don Byas89-9Annie Laurie255563Don Byas89-10I'm Beginning To See The Light255563Don Byas89-11Rosetta255563Don Byas89-12Ain't Misbehavin'255563Don Byas89-13Body And Soul255563Don Byas89-14Blue And Sentimental255563Don Byas89-15These Foolish Things7806655Don Byas Et Ses RythmesDon Byas And His Rhythm89-16Humoresque7806655Don Byas Et Ses RythmesDon Byas And His Rhythm89-17Stormy Weather7806655Don Byas Et Ses RythmesDon Byas And His Rhythm89-18Riffin' And Jivin'7806655Don Byas Et Ses RythmesDon Byas And His Rhythm89-19I Can't Explain7806655Don Byas Et Ses RythmesDon Byas And His Rhythm89-20Blues For Panassie7806655Don Byas Et Ses RythmesDon Byas And His Rhythm90-1Jumpin' Jacquet374982Illinois Jacquet Sextet90-2Blues Mood374982Illinois Jacquet Sextet90-3Jacquet In The Box374982Illinois Jacquet Sextet90-4Don't Blame Me374982Illinois Jacquet Sextet90-5Jacquet And No Vest374982Illinois Jacquet Sextet90-6Jacquet's Blues257114Illinois Jacquet90-7Jacquet And Coat257114Illinois Jacquet90-8Doggin' With Doggett257114Illinois Jacquet90-9You Left Me All Alone257114Illinois Jacquet90-10Blow, Illinois, Blow368181Illinois Jacquet And His Orchestra90-11Illinois Blows The Blues257114Illinois Jacquet90-12Goofin' Off257114Illinois Jacquet90-13It's Wild374984Illinois Jacquet And His All Stars90-14Don't Push Daddy374984Illinois Jacquet And His All Stars90-15Riffin' With Jacquet374984Illinois Jacquet And His All Stars90-16Sahara Heat374984Illinois Jacquet And His All Stars90-17I Surrender Dear374984Illinois Jacquet And His All Stars90-18Destination Moon374984Illinois Jacquet And His All Stars90-19For Truly374984Illinois Jacquet And His All Stars91-1Ko Ko75617Charlie Parker91-2Billie's Bounce317873Charlie Parker's Re-Boppers91-3Moose The Mooche272020The Charlie Parker Septet91-4Yardbird Suite272020The Charlie Parker Septet91-5Ornithology272020The Charlie Parker Septet91-6Night In Tunesia272028The Charlie Parker Quintet91-7Lover Man272028The Charlie Parker Quintet91-8The Gypsy272028The Charlie Parker Quintet91-9Be Bop272028The Charlie Parker Quintet91-10Bird's Nest272028The Charlie Parker Quintet91-11Cool Blues272028The Charlie Parker Quintet91-12Relaxin' At Camarillo374985Charlie Parker's New All-Stars91-13Cheers374985Charlie Parker's New All-Stars91-14Carvin' The Bird374985Charlie Parker's New All-Stars91-15Stupendous374985Charlie Parker's New All-Stars91-16Donna Lee272024The Charlie Parker All-Stars91-17Chasin' The Bird272024The Charlie Parker All-Stars91-18Cheryl272024The Charlie Parker All-Stars91-19Buzzy272024The Charlie Parker All-Stars91-20Dexterity272028The Charlie Parker Quintet91-21Bird Of Paradise272028The Charlie Parker Quintet92-1Good Bait358566Dizzy Gillespie Sextet92-2Blue 'n' Boogie64694Dizzy Gillespie92-3All The Things You Are358566Dizzy Gillespie Sextet92-4Dizzy Atmosphere358566Dizzy Gillespie Sextet92-5Salt Peanuts374983Dizzy Gillespie And His All Star Quintet92-6I Can't Get Started358566Dizzy Gillespie Sextet92-7Hot House374983Dizzy Gillespie And His All Star Quintet92-8Shaw 'nuff374983Dizzy Gillespie And His All Star Quintet92-9Hallelujah358566Dizzy Gillespie SextetDizzy Gillespie And His Selected Sextet92-10Dizzy Boogie64694Dizzy Gillespie92-11'round About Midnight374987Dizzy Gillespie Jazzmen92-12When I Grow Too Old To Dream374987Dizzy Gillespie Jazzmen92-13Night In Tunesia284744Dizzy Gillespie And His Orchestra92-14Ol' Man Rebop284744Dizzy Gillespie And His Orchestra92-15Anthropology284744Dizzy Gillespie And His Orchestra92-16Oop Bop Sh' Bam358566Dizzy Gillespie Sextet92-17One Bass Hit [Part 1]358566Dizzy Gillespie Sextet92-18That's Earl Brother358566Dizzy Gillespie Sextet92-1952nd Street Theme284744Dizzy Gillespie And His OrchestraSet 2493-1Surgery3811509The Eddie "Lockjaw" Davis QuintetEddie Davis And His Quintet93-2Lockjaw3811509The Eddie "Lockjaw" Davis QuintetEddie Davis And His Quintet93-3Afternoon In A Doghouse3811509The Eddie "Lockjaw" Davis QuintetEddie Davis And His Quintet93-4Athlete's Foot3811509The Eddie "Lockjaw" Davis QuintetEddie Davis And His Quintet93-5Callin' Dr. Jazz375012Eddie Davis And His Beboppers93-6Fracture375012Eddie Davis And His Beboppers93-7Hollerin' And Screaming375012Eddie Davis And His Beboppers93-8Stealing' Trash375012Eddie Davis And His Beboppers93-9Just A Mystery375012Eddie Davis And His Beboppers93-10Red Pepper375012Eddie Davis And His Beboppers93-11Spinal375012Eddie Davis And His Beboppers93-12Maternity375012Eddie Davis And His Beboppers93-13Licks A Plenty3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-14Foxy3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-15Sheila3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-16Real Gone Guy3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-17But Beautiful3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-18Leaping' On Lenox3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-19Raven' At The Haven3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-20Minton's Madhouse3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-21Huckle Bug3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-22Music Goes Down Around3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet93-23Lockjaw's Bounce3811509The Eddie "Lockjaw" Davis QuintetEddie Davis Quintet94-1Out On A Limb375009Lennie Tristano Trio94-2I Can't Get Started375009Lennie Tristano Trio94-3I Surrender Dear375009Lennie Tristano Trio94-4Interlude (Night In Tunesia)375009Lennie Tristano Trio94-5Blue Boy259086Lennie Tristano94-6Atonement259086Lennie Tristano94-7Collin' Off With Ulanow259086Lennie Tristano94-8Supersonic375009Lennie Tristano Trio94-9On A Planet375009Lennie Tristano Trio94-10Air Pocket375009Lennie Tristano Trio94-11Celestia375009Lennie Tristano Trio94-12Progression375014Lennie Tristano Quintet/375016Lennie Tristano Quartet94-13Subconscious-Lee375014Lennie Tristano Quintet/375016Lennie Tristano Quartet94-14Retrospection375014Lennie Tristano Quintet/375016Lennie Tristano Quartet94-15Judy375014Lennie Tristano Quintet/375016Lennie Tristano Quartet94-16Wow259086Lennie Tristano94-17Crosscurrent259086Lennie Tristano94-18Yesterdays259086Lennie Tristano94-19Marionette375010Lennie Tristano Sextet94-20Sax Of A Kind375010Lennie Tristano Sextet94-21Intuition375010Lennie Tristano Sextet94-22Disgression375010Lennie Tristano Sextet95-1Humph375011Thelonious Monk Sextet95-2Evonce375011Thelonious Monk Sextet95-3Suburban Eyes375011Thelonious Monk Sextet95-4Thelonious375011Thelonious Monk Sextet95-5Epistrophy145256Thelonious Monk95-6Evidence145256Thelonious Monk95-7Mysterioso145256Thelonious Monk95-8Nice Work If You Can Get It145256Thelonious Monk95-9Ruby My Dear145256Thelonious Monk95-10Well You Needn't145256Thelonious Monk95-11April In Paris145256Thelonious Monk95-12Off Minor145256Thelonious Monk95-13Introspection145256Thelonious Monk95-14In Walked Bud145256Thelonious Monk95-15Monk's Mood145256Thelonious Monk95-16Who Knows145256Thelonious Monk95-17'Round Midnight145256Thelonious Monk95-18Four In One145256Thelonious Monk95-19Four In One [Alternate Take]145256Thelonious Monk95-20Eronel145256Thelonious Monk95-21Straight No Chaser145256Thelonious Monk95-22Willow Weep For Me145256Thelonious Monk95-23Ask Me Now145256Thelonious Monk96-1The Chase317882The Tadd Dameron Sextet96-2The Squirrel317882The Tadd Dameron Sextet96-3Our Delight317882The Tadd Dameron Sextet96-4Dameronia317882The Tadd Dameron Sextet96-5A Bebop Carol309986Fats Navarro96-6The Tadd Walk309986Fats Navarro96-7Gone With The Wind309986Fats Navarro96-8That Someone Must Be You309986Fats Navarro96-9Nostalgia311724Fats Navarro Quintet96-10Barry's Bop311724Fats Navarro Quintet96-11Bebop Romp311724Fats Navarro Quintet96-12Fats Blows311724Fats Navarro Quintet96-13Jahbero317882The Tadd Dameron Sextet96-14Lady Bird317882The Tadd Dameron Sextet96-15Symphonette317882The Tadd Dameron Sextet96-16I Think I'll Go Away317882The Tadd Dameron Sextet96-17Sid's Delight309986Fats Navarro96-18Casbah309986Fats NavarroSet 2597-1When Darkness Falls59407George Shearing97-2So Rare375380George Shearing Trio97-3Buccaneer's Bounce59407George Shearing97-4Have You Met Miss Jones?375380George Shearing Trio97-5Sweet And Lovely59407George Shearing97-6Bop's Your Uncle59407George Shearing97-7Sophisticated Lady59407George Shearing97-8Cozy's Bop59407George Shearing97-9September In The Rain59407George Shearing97-10East Of The Sun (West Of The Moon)59407George Shearing97-11Conception59407George Shearing97-12Pick Yourself Up59407George Shearing97-13Jumpin' With Symphony Sid59407George Shearing97-14I'll Remember April59407George Shearing97-15Summertime59407George Shearing97-16I Didn't Know What Time It Was59407George Shearing97-17I'll Be Around59407George Shearing97-18Easy Living59407George Shearing97-19How High The Moon59407George Shearing97-20Lonely Momets59407George Shearing97-21Lullaby Of Birdland59407George Shearing97-22Love Is Just Around The Corner59407George Shearing98-1El Sino375381Leo Parker's All Stars98-2Ineta375381Leo Parker's All Stars98-3Wild Leo375381Leo Parker's All Stars98-4Leaping Leo375381Leo Parker's All Stars98-5You Go To My Head45107Gene Ammons98-6Jug Head Rumble45107Gene Ammons98-7Goodbye45107Gene Ammons98-8Don't Do Me Wrong45107Gene Ammons98-9My Foolish Heart45107Gene Ammons98-10Baby, Won't You Please Say Yes45107Gene Ammons98-11Prelude To A Kiss45107Gene Ammons98-12You're Not The Kind45107Gene Ammons98-13Just Chips45107Gene Ammons98-14Street Of Dreams45107Gene Ammons98-15Good Time Blues45107Gene Ammons98-16Travellin' Light45107Gene Ammons98-17Red Top45107Gene Ammons98-18Fuzzy45107Gene Ammons98-19Stairway To Heaven45107Gene Ammons98-20Jim Dawgs45107Gene Ammons99-1Elora135930Sonny Stitt99-2Afternoon In Paris135930Sonny Stitt99-3Teapot135930Sonny Stitt99-4Blue Mode135930Sonny Stitt99-5All God's Chillun Got Rhythm350615Sonny Stitt Quartet99-6Sonny Side350615Sonny Stitt Quartet99-7Bud's Blues350615Sonny Stitt Quartet99-8Sunset350615Sonny Stitt Quartet99-9Fine And Dandy135930Sonny Stitt99-10I Want To Be Happy135930Sonny Stitt99-11Taking A Chance Of Love135930Sonny Stitt99-12P.S. I Love You135930Sonny Stitt99-13This Can't Be Love135930Sonny Stitt99-14Can't We Be Friends135930Sonny Stitt99-15Liza (All The Clouds I'll Roll Away)135930Sonny Stitt99-16Imagination135930Sonny Stitt99-17Cherokee135930Sonny Stitt99-18After You've Gone375379Sonny Stitt Band99-19Our Very Own375379Sonny Stitt Band99-20Stitt's It350615Sonny Stitt Quartet99-21Cool Mambo350615Sonny Stitt Quartet99-22Blue Mambo350615Sonny Stitt Quartet99-23Sonny Sounds350615Sonny Stitt Quartet99-24Ain't Misbehavin'135930Sonny Stitt99-25Later135930Sonny Stitt100-1Tempus Fugit29992Bud Powell100-2Celia29992Bud Powell100-3Cherokee29992Bud Powell100-4I'll Keep Loving You29992Bud Powell100-5Strictly Confidential29992Bud Powell100-6All God's Chillun Got Rhtyhm29992Bud Powell100-7So Sorry Please317908The Bud Powell Trio100-8Get Happy317908The Bud Powell Trio100-9Sometimes I'm Happy317908The Bud Powell Trio100-10Sweet Georgia Brown317908The Bud Powell Trio100-11Yesterdays317908The Bud Powell Trio100-12April In Paris317908The Bud Powell TrioSet 26100-13Body And Soul375014Lennie Tristano Quintet101-1Progression375014Lennie Tristano Quintet101-2Tautology375014Lennie Tristano Quintet101-3Retrospection375014Lennie Tristano Quintet101-4Subconscious - Lee375014Lennie Tristano Quintet101-5Judy375014Lennie Tristano Quintet101-6Marshmallow375440Lee Konitz Quintet101-7Fishin' Around375440Lee Konitz Quintet101-8Tautology259092Lee Konitz101-9Sound - Lee259092Lee Konitz101-10Rebecca259092Lee Konitz101-11You Go To My Head259092Lee Konitz101-12Ice Cream Konitz375440Lee Konitz Quintet101-13Palo Alto375440Lee Konitz Quintet101-14Odjenar375439Lee Konitz Sextet101-15Hibeck375439Lee Konitz Sextet101-16Yesterdays375439Lee Konitz Sextet101-17Ezz-Thetic375439Lee Konitz Sextet101-18Indian Summer259092Lee Konitz101-19Duet For Saxophone And Guitar259092Lee Konitz102-1Move284743Miles Davis And His Orchestra102-2Jeru284743Miles Davis And His Orchestra102-3Budo284743Miles Davis And His Orchestra102-4Godchild284743Miles Davis And His Orchestra102-5Deception284743Miles Davis And His Orchestra102-6Down260757The Miles Davis Sextet102-7Blue Room260757The Miles Davis Sextet102-8Conception260757The Miles Davis Sextet102-9My Old Flame260757The Miles Davis Sextet102-10Bluing260757The Miles Davis Sextet102-11Dig23755Miles Davis102-12It's Only A Papermoon23755Miles Davis102-13Out Of The Blue23755Miles Davis102-14Tasty Pudding262586Miles Davis All Stars102-15Willie The Whailer262586Miles Davis All Stars102-16Tempus Fugit262586Miles Davis All Stars103-1Night And Day375441Zoot Sims Quartet103-2Slingin' Hash375441Zoot Sims Quartet103-3Tenorly375441Zoot Sims Quartet103-4I Understand375441Zoot Sims Quartet103-5Don't Worry 'bout Me375441Zoot Sims Quartet103-6Crystals (Linger Awhile)375441Zoot Sims Quartet103-7Zoot And Zoot375441Zoot Sims Quartet103-8Trotting375441Zoot Sims Quartet103-9It Had To Be You375441Zoot Sims Quartet103-10Zoot Swings The Blues375441Zoot Sims Quartet103-11Swingin' The Blues375441Zoot Sims Quartet103-12East Of The Sun (West Of The Moon)375441Zoot Sims Quartet103-13I Wonder Who375441Zoot Sims Quartet103-14Zootcase375438Zoot Sims Sextet103-15Tangerine375438Zoot Sims Sextet103-16The Red Door375438Zoot Sims Sextet103-17Sidewalks Of Cuba263796Zoot Sims103-18Prospecting263796Zoot Sims103-19Tasty Pudding263796Zoot Sims103-20While My Lady Sleeps263796Zoot Sims104-1Between The Devil And The Deep Blue Sea30721Herbie Mann104-2The Things We Did Last Summer30721Herbie Mann104-3After Work30721Herbie Mann104-4Chicken Little30721Herbie Mann104-5Deep Night30721Herbie Mann104-6Cuban Love Song30721Herbie Mann104-7Moon Dreams30721Herbie Mann104-8Scuffles30721Herbie Mann104-9The Purple Grotto30721Herbie Mann104-10A Spring Morning30721Herbie Mann104-11My Little Suede Shoes30721Herbie Mann104-12Autumn Nocturne30721Herbie Mann104-13Why Do I Love You5602200The Herbie Mann-Sam Most QuintetHerbie Mann - Sam Most Quintet104-14It Might As Well Be Spring5602200The Herbie Mann-Sam Most QuintetHerbie Mann - Sam Most Quintet104-15Woodchuck375436Herbie Mann Quartet104-16Love Is A Simple Thing375436Herbie Mann QuartetSet 27105-1Bootsie375877James Moody Quintet105-2Lover, Come Back To Me375877James Moody Quintet105-3That's My Desire375877James Moody Quintet105-4Aimer Comme Je T'aime120620James Moody105-5Les Feuilles Mortes120620James Moody105-6I'm Gone120620James Moody105-7A Hundred Years From Today120620James Moody105-8Keepin' Up With Jonesy120620James Moody105-9Workshop120620James Moody105-10That Man O' Mine120620James Moody105-11Over The Rainbow120620James Moody105-12Jack Raggs120620James Moody105-13Mambo With Moody120620James Moody105-14It Might As Well Be Spring [Take 1]120620James Moody105-15It Might As Well Be Spring [Take 2]120620James Moody105-16Blues In The Closet120620James Moody105-17Moody's Mood For Blues120620James Moody105-18Nobody Knows The Trouble I've Seen120620James Moody105-19I Got The Blues120620James Moody105-20Blue Walk120620James Moody105-21Faster James120620James Moody106-1On The Alamo372754Stan Getz Quartet106-2Yesterdays372754Stan Getz Quartet106-3You Go To My Head372754Stan Getz Quartet106-4Hershey Bar372754Stan Getz Quartet106-5Out Of Nowhere372754Stan Getz Quartet106-6's Wonderful372754Stan Getz Quartet106-7Strike Up The Band372754Stan Getz Quartet106-8Imagination372754Stan Getz Quartet106-9It Might As Well Be Spring372754Stan Getz Quartet106-10Penny372754Stan Getz Quartet106-11The Best Thing For You375876Stan Getz Quintet106-12Melody Express375876Stan Getz Quintet106-13Wildwood375876Stan Getz Quintet106-14Yvette375876Stan Getz Quintet106-15Potter's Luck375876Stan Getz Quintet106-16The Song Is You375876Stan Getz Quintet106-17Where Or When375876Stan Getz Quintet106-18Tabu375876Stan Getz Quintet106-19Moonlight Is Vermont375876Stan Getz Quintet106-20Jaguar375876Stan Getz Quintet106-21Stars Fell On Alabama30486Stan Getz106-22Sometimes I'm Happy30486Stan Getz107-1Back Home Again In Indiana37737Dave Brubeck107-2Body And Soul37737Dave Brubeck107-3Undecided37737Dave Brubeck107-4Perdido37737Dave Brubeck107-5Stardust37737Dave Brubeck107-6The Way You Look Tonight37737Dave Brubeck107-7These Foolish Things37737Dave Brubeck107-8All The Things You Are37737Dave Brubeck107-9For All We Know37737Dave Brubeck107-10I'll Never Smile Again37737Dave Brubeck107-11Lullaby In Rhythm37737Dave Brubeck108-1Milt Meets Sid254990The Modern Jazz Quartet108-2D & E254990The Modern Jazz Quartet108-3Yesterdays254990The Modern Jazz Quartet108-4Between The Devil And The Deep Blue Sea254990The Modern Jazz Quartet108-5Autumn Breeze254990The Modern Jazz Quartet108-6Moving Nicely254990The Modern Jazz Quartet108-7Bluesology254990The Modern Jazz Quartet108-8'round Midnight254990The Modern Jazz Quartet108-9Love Me Pretty Baby254990The Modern Jazz Quartet108-10Heart And Soul254990The Modern Jazz Quartet108-11True Blues254990The Modern Jazz Quartet108-12Ralph's New Blues254990The Modern Jazz Quartet108-13All Of You254990The Modern Jazz Quartet108-14I'll Remember254990The Modern Jazz Quartet108-15Gershwin Medley (Soon / For You For Me / Forevermore / Love Walked In / Our Love Is Here To Stay)254990The Modern Jazz QuartetSet 28109-1Teapot251778J.J. Johnson109-2Afternoon In Paris251778J.J. Johnson109-3Elora251778J.J. Johnson109-4Blue Mode [Take 1]251778J.J. Johnson109-5Blue Mode [Take 2]251778J.J. Johnson109-6Capri251778J.J. Johnson109-7Lover Man251778J.J. Johnson109-8Turnpike251778J.J. Johnson109-9Sketch251778J.J. Johnson109-10It Could Happen To You251778J.J. Johnson109-11Get Happy251778J.J. Johnson109-12Capri [Alternate Take]251778J.J. Johnson109-13Turnpike [Alternate Take]251778J.J. Johnson109-14Get Happy [Alternate Take]251778J.J. Johnson110-1It May Be Wrong375977Chubby Jackson And His All Stars Band110-2So What375977Chubby Jackson And His All Stars Band110-3Westwood Walk375981Gerry Mulligan Tentette110-4Flash375981Gerry Mulligan Tentette110-5A Ballad375981Gerry Mulligan Tentette110-6Ontet375981Gerry Mulligan Tentette110-7Half Nelson375981Gerry Mulligan Tentette110-8Walkin' Shoes375981Gerry Mulligan Tentette110-9Simbah375981Gerry Mulligan Tentette110-10Speak Low375981Gerry Mulligan Tentette110-11Taking A Chance On Love375981Gerry Mulligan Tentette110-12Varsity Drag375981Gerry Mulligan Tentette110-13Lady Bird375981Gerry Mulligan Tentette110-14Love Me Or Leave Me375981Gerry Mulligan Tentette110-15Swing House375981Gerry Mulligan Tentette110-16Rocker375981Gerry Mulligan Tentette111-1Scoops145264Sonny Rollins111-2With A Song In My Heart145264Sonny Rollins111-3Newk's Fadeaway145264Sonny Rollins111-4Time On My Hands145264Sonny Rollins111-5This Love Of Mine145264Sonny Rollins111-6Shadrack145264Sonny Rollins111-7On A Slow Boat To China145264Sonny Rollins111-8Mambo Bounce145264Sonny Rollins111-9I Know145264Sonny Rollins111-10Dig260757The Miles Davis Sextet111-11It's Only A Papermoon260757The Miles Davis Sextet111-12Denial260757The Miles Davis Sextet111-13Out Of The Blues260757The Miles Davis Sextet111-14Almost Like Being In Love145264Sonny RollinsWith254990The Modern Jazz Quartet111-15In A Sentimental Mood145264Sonny RollinsWith254990The Modern Jazz Quartet111-16No Moe145264Sonny RollinsWith254990The Modern Jazz Quartet111-17The Stopper145264Sonny RollinsWith254990The Modern Jazz Quartet111-18Friday The 13th261339The Thelonious Monk Quartet112-1Cross Fire311992Paul Quinichette112-2Sandstone311992Paul Quinichette112-3Prevue311992Paul Quinichette112-4No Time311992Paul Quinichette112-5Shad Roe375980Paul Quinichette And His Orchestra112-6Paul's Bunio375980Paul Quinichette And His Orchestra112-7Crew Cut375980Paul Quinichette And His Orchestra112-8The Hook375980Paul Quinichette And His Orchestra112-9Samie375979Paul Quinichette Quintet112-10I'll Always Be In Love With You375979Paul Quinichette Quintet112-11Sequel375979Paul Quinichette Quintet112-12Bustin' Suds311992Paul Quinichette112-13Let's Make It311992Paul Quinichette112-14P.Q. Blues (I)311992Paul Quinichette112-15Bot Bot (I)311992Paul Quinichette112-16Green's Blues375979Paul Quinichette Quintet112-17You Belong To Me375979Paul Quinichette Quintet112-18Birdland Jump375979Paul Quinichette Quintet112-19Sleepy Time Gal375979Paul Quinichette Quintet112-20Galshes And Rubbers375979Paul Quinichette Quintet112-21People Will Say We're In Love375979Paul Quinichette Quintet112-22Rose Of Birdland375979Paul Quinichette Quintet112-23No Parking375979Paul Quinichette QuintetSet 29113-1The Count On Rush Street251873Art Pepper113-2Pooch Mcgooch251873Art Pepper113-3Brown Gold376040Art Pepper Quartet113-4Holiday Flight376040Art Pepper Quartet113-5Surf Ride376040Art Pepper Quartet113-6Tickle Toe376040Art Pepper Quartet113-7Chilli Pepper376040Art Pepper Quartet113-8Susie The Poodle376040Art Pepper Quartet113-9Straight Life376045Art Pepper Quintet113-10Cinnamon376045Art Pepper Quintet113-11Thyme Time376045Art Pepper Quintet113-12The Way You Look Tonight376045Art Pepper Quintet113-13Nutmeg376045Art Pepper Quintet113-14Art's Oregano376045Art Pepper Quintet113-15Over The Rainbow376042Shorty Rogers And His Giants113-16Popo376042Shorty Rogers And His Giants113-17Didi376042Shorty Rogers And His Giants113-18Sam And The Lady376042Shorty Rogers And His Giants113-19Apropos376042Shorty Rogers And His Giants113-20Art Pepper4279076Stan Kenton And The Innovations OrchestraStan Kenton And His Innovations Orchestra114-1Moten Swing312417Shorty Rogers114-2Isn't It Romantic?376042Shorty Rogers And His Giants114-3Four Mothers376042Shorty Rogers And His Giants114-4Dickie's Dream312417Shorty Rogers114-5Over The Rainbow376042Shorty Rogers And His Giants114-6The Lady In Red376042Shorty Rogers And His Giants114-7Just A Few376039Bud Shank - Shorty Rogers Quintet114-8My Heart Stood Still376042Shorty Rogers And His Giants114-9Blues Way Up There312417Shorty Rogers114-10Blues Way Down There312417Shorty Rogers114-11Easy312417Shorty Rogers114-12Not Really The Blues376042Shorty Rogers And His Giants114-13Baklava Bridge312417Shorty Rogers114-14Clickin' With Clax312417Shorty Rogers114-15Twelfth Street Rag376042Shorty Rogers And His Giants115-1Quicksilver29973Horace Silver115-2Horace-Cope29973Horace Silver115-3Thou Swell29973Horace Silver115-4Safari29973Horace Silver115-5Ecaroh29973Horace Silver115-6Prelude To A Kiss29973Horace Silver115-7Yeah29973Horace Silver115-8I Remember You29973Horace Silver115-9Knowledge Box29973Horace Silver115-10Day In, Day Out29973Horace Silver115-11Opus De Funk29973Horace Silver115-12How About You29973Horace Silver115-13Buhaina29973Horace Silver115-14Silverware29973Horace Silver116-1Freeway375978Gerry Mulligan Quartet116-2My Old Flame31617Chet Baker116-3Five Brothers375978Gerry Mulligan Quartet116-4My Funny Valentine375978Gerry Mulligan Quartet116-5Come Out Wherever You Are376044Chet Baker - Stan Getz Quartet116-6What's New376044Chet Baker - Stan Getz Quartet116-7Half Nelson376044Chet Baker - Stan Getz Quartet116-8All The Things You Are310109Chet Baker Quartet116-9Bea's Flat310109Chet Baker Quartet116-10Moon Love310109Chet Baker Quartet116-11Happy Little Sunbeam310109Chet Baker Quartet116-12Pro Defunctus376043Chet Baker Ensemble116-13Moonlight Becomes You376043Chet Baker Ensemble116-14Bockhanal376043Chet Baker EnsembleSet 30117-1Speak Low255945Bud Shank117-2Atábaque255945Bud Shank117-3Acerte Mas255945Bud Shank117-4Amor Flamengo255945Bud Shank117-5Terra Séca255945Bud Shank117-6Baa-Too-Kee255945Bud Shank117-7Inquitacao255945Bud Shank117-8Tocata255945Bud Shank117-9Cariñoso255945Bud Shank117-10Noctambulism255945Bud Shank117-11Nonó255945Bud Shank117-12Hazardous255945Bud Shank117-13Blue Baiáo255945Bud Shank117-14Stairway To The Stars255945Bud Shank118-1Carvin' The Rock376092Lou Donaldson - Clifford Brown QuintetLou Donaldson/Clifford Brown Quintet118-2Bellarosa376092Lou Donaldson - Clifford Brown QuintetLou Donaldson/Clifford Brown Quintet118-3Cookin'376092Lou Donaldson - Clifford Brown QuintetLou Donaldson/Clifford Brown Quintet118-4Brownie Speaks376092Lou Donaldson - Clifford Brown QuintetLou Donaldson/Clifford Brown Quintet118-5De-Dah376092Lou Donaldson - Clifford Brown QuintetLou Donaldson/Clifford Brown Quintet118-6You Go To My Head376092Lou Donaldson - Clifford Brown QuintetLou Donaldson/Clifford Brown Quintet118-7Wail Bait376089Clifford Brown Sextet118-8Hymn Of The Orient376089Clifford Brown Sextet118-9Brownie Eyes376089Clifford Brown Sextet118-10Cherokee376089Clifford Brown Sextet118-11Easy Living376089Clifford Brown Sextet118-12Minor Mood376089Clifford Brown Sextet118-13Philly J J259082Clifford Brown118-14Choose Now259082Clifford Brown118-15Stockholm Sweetin'259082Clifford Brown/179055Art FarmerWith376090The Swedish All Stars118-16'scuse These Bluse259082Clifford Brown/179055Art FarmerWith376090The Swedish All Stars118-17Lover Come Back To Me259082Clifford Brown/179055Art FarmerWith376090The Swedish All Stars119-1Au Privave340586Charlie Parker And His Orchestra119-2K.C. Blues340586Charlie Parker And His Orchestra119-3She Wrote340586Charlie Parker And His Orchestra119-4Swedish Schnapps272028The Charlie Parker QuintetCharlie Parker Quintet119-5Laird Bird75617Charlie Parker119-6The Song Is You75617Charlie Parker119-7Kim75617Charlie Parker119-8Why Do I Love You75617Charlie Parker119-9My Little Suede Shoes75617Charlie Parker119-10Fiesta75617Charlie Parker119-11Lover Man272028The Charlie Parker QuintetCharlie Parker Quintet119-12Blues For Alice272028The Charlie Parker QuintetCharlie Parker Quintet119-13Begin With The Beguine272028The Charlie Parker QuintetCharlie Parker Quintet119-14I Can't Get Started376091Charlie Parker Big Band119-15What Is This Thing Called Love376091Charlie Parker Big Band119-16Almost Like Being In Love376091Charlie Parker Big Band119-17I Remember You272022The Charlie Parker QuartetCharlie Parker Quartet119-18Confirmation272022The Charlie Parker QuartetCharlie Parker Quartet119-19Chi Chi272022The Charlie Parker QuartetCharlie Parker Quartet119-20Now's The Time272022The Charlie Parker QuartetCharlie Parker Quartet119-21I Love Paris272028The Charlie Parker QuintetCharlie Parker Quintet119-22Love For Sale272028The Charlie Parker QuintetCharlie Parker Quintet120-1Seven Come Eleven253476Barney Kessel120-2Night And Day253476Barney Kessel120-3Long Ago And Far Away253476Barney Kessel120-4Somebody Loves Me253476Barney Kessel120-5Strike Up The Band253476Barney Kessel120-6's Wonderful253476Barney Kessel120-7I Got Rhythm253476Barney Kessel120-8Love Walked In253476Barney Kessel120-9Tenderly253476Barney Kessel120-10Bernardo253476Barney Kessel120-11Vicky's Dream253476Barney Kessel120-12Just Squeeze Me253476Barney Kessel120-13What Is There To Say?253476Barney Kessel120-14Salute To Charlie Christian253476Barney Kessel120-15I Let A Song Go Out Of My Heart253476Barney Kessel120-16Lullaby Of Birdland253476Barney Kessel120-17Barney's Blues253476Barney KesselSet 31121-1Roccus29958Lou Donaldson121-2Lou's Blues29958Lou Donaldson121-3Cheek To Cheek29958Lou Donaldson121-4The Things We Did Last Summer29958Lou Donaldson121-5Sweet Juice29958Lou Donaldson121-6Down Home29958Lou Donaldson121-7The Best Things In Life Are Free29958Lou Donaldson121-8If I Love Again29958Lou Donaldson121-9Caracas29958Lou Donaldson121-10The Stroller29958Lou Donaldson121-11Moe's Bluff29958Lou Donaldson121-12After You've Gone29958Lou Donaldson121-13Blues29958Lou Donaldson121-14Split Kick29958Lou Donaldson122-1Mau Mau179055Art Farmer122-2Work Of Art179055Art Farmer122-3The Little Bandmaster179055Art Farmer122-4Up In Quincy's Room179055Art Farmer122-5Wildwood179055Art Farmer122-6Evening In Paris179055Art Farmer122-7Elephant Walk179055Art Farmer122-8Tiajuana179055Art Farmer122-9When Your Lover Has Gone179055Art Farmer123-1Strike Up The Band339515Tal Farlow123-2Skylark339515Tal Farlow123-3Have You Met Miss Jones?339515Tal Farlow123-4Tenderly339515Tal Farlow123-5And She Remembers Me339515Tal Farlow123-6My Old Flame339515Tal Farlow123-7Cherokee339515Tal Farlow123-8Autumn In New York339515Tal Farlow123-9Tal's Blues339515Tal Farlow123-10I Like To Recognize The Tune339515Tal Farlow123-11There Will Be Never Be Another You339515Tal Farlow123-12Just One Of Those Things339515Tal Farlow123-13Tenderly339515Tal Farlow123-14It's You Or No One339515Tal Farlow124-1What Is This Thing Called Love200815Charles Mingus124-2Spur Of The Moment200815Charles Mingus124-3Thrice Upon A Theme200815Charles Mingus124-4Four Hands200815Charles Mingus124-5Minor Intrusions200815Charles MingusSet 32125-1Impromptu376337Dizzy Gillespie - Stan Getz Sextet125-2It's The Talk Of The Town376337Dizzy Gillespie - Stan Getz Sextet125-3I Let A Song Go Out Of My Heart376337Dizzy Gillespie - Stan Getz Sextet125-4Girl Of My Dream376337Dizzy Gillespie - Stan Getz Sextet125-5Exactly Like You376337Dizzy Gillespie - Stan Getz Sextet125-6Shiboney (Part 1 & 2)376337Dizzy Gillespie - Stan Getz Sextet125-7It Don't Mean A Thing376337Dizzy Gillespie - Stan Getz Sextet125-8One Alone327344Dizzy Gillespie Quintet125-9Sometimes I'm Happy64694Dizzy Gillespie125-10Pretty Eyed Baby64694Dizzy Gillespie126-1Stella By Starlight253777Phil Woods126-2Five253777Phil Woods126-3Joanne253777Phil Woods126-4Back And Blow253777Phil Woods126-5Woodlore253777Phil Woods126-6Falling In Love All Over Again253777Phil Woods126-7Be My Love253777Phil Woods126-8On A Slow Boat To China253777Phil Woods126-9Get Happy253777Phil Woods126-10Strollin' With Pam253777Phil Woods127-1It's You Or No One122384Jackie McLean&20956Donald Byrd127-2Blue Doll122384Jackie McLean&20956Donald Byrd127-3Little Melonae122384Jackie McLean&20956Donald Byrd127-4The Way You Look Tonight122384Jackie McLean&20956Donald Byrd127-5Mood Melody122384Jackie McLean&20956Donald Byrd127-6Lover Man122384Jackie McLean&20956Donald Byrd128-1Yesterdays262128Art Blakey & The Jazz Messengers128-2Prince Albert262128Art Blakey & The Jazz Messengers128-3I Waited For You262128Art Blakey & The Jazz Messengers128-4Lady Bird262128Art Blakey & The Jazz Messengers128-5Deciphering The Message262128Art Blakey & The Jazz Messengers128-6Just One Of Those Things262128Art Blakey & The Jazz Messengers128-7Hank's Symphony262128Art Blakey & The Jazz Messengers128-8Gone With The Wind262128Art Blakey & The Jazz MessengersBig BandsSet 33129-1New Moten Stomp311057Bennie Moten129-2As Long As I Love You311057Bennie Moten129-3When I'm Alone311057Bennie Moten129-4Professor Hot Stuff311057Bennie Moten129-5Get Goin' (Get Ready To Love)311057Bennie Moten129-6The Count311057Bennie Moten129-7Liza Lee311057Bennie Moten129-8Somebody Stole My Gal311057Bennie Moten129-9Now That I Need You311057Bennie Moten129-10Bouncin' Round311057Bennie Moten129-11I Wanna Be Around My Baby All The Time311057Bennie Moten129-12Ya Got Love311057Bennie Moten129-13Toby317903Bennie Moten's Kansas City Orchestra129-14Moten Swing317903Bennie Moten's Kansas City Orchestra129-15The Blue Room317903Bennie Moten's Kansas City Orchestra129-16Imagination317903Bennie Moten's Kansas City Orchestra129-17New Orleans317903Bennie Moten's Kansas City Orchestra129-18The Only Girl I Ever Loved317903Bennie Moten's Kansas City Orchestra129-19Milenberg Joys317903Bennie Moten's Kansas City Orchestra129-20Lafayette317903Bennie Moten's Kansas City Orchestra129-21Prince Of Wails317903Bennie Moten's Kansas City Orchestra129-22Two Times317903Bennie Moten's Kansas City Orchestra130-1In Dat Mornin'342801Jimmie Lunceford And His Chickasaw Syncopators130-2Sweet Rhythm342801Jimmie Lunceford And His Chickasaw Syncopators130-3Flaming Reeds And Screaming Brass317906Jimmie Lunceford And His Orchestra130-4While Love Lasts317906Jimmie Lunceford And His Orchestra130-5White Heat311058Jimmie Lunceford130-6Jazznocrazy311058Jimmie Lunceford130-7Chillun Get Up311058Jimmie Lunceford130-8Leavin' Me311058Jimmie Lunceford130-9Swingin' Uptown311058Jimmie Lunceford130-10Breakfast Ball311058Jimmie Lunceford130-11Here Goes (A Fool)311058Jimmie Lunceford130-12Remember When311058Jimmie Lunceford130-13Sophisticated Lady317906Jimmie Lunceford And His Orchestra130-14Mood Indigo317906Jimmie Lunceford And His Orchestra130-15Rose Room317906Jimmie Lunceford And His Orchestra130-16Black And Tan Fantasy317906Jimmie Lunceford And His Orchestra130-17Stratosphere317906Jimmie Lunceford And His Orchestra130-18Nana317906Jimmie Lunceford And His Orchestra130-19Miss Otis Regrets317906Jimmie Lunceford And His Orchestra130-20Stomp It Off317906Jimmie Lunceford And His Orchestra131-1Wild Party307323Fletcher Henderson131-2Rug Cutter's Swing307323Fletcher Henderson131-3Hotter Than 'ell307323Fletcher Henderson131-4Liza307323Fletcher Henderson131-5Christopher Columbus317895Fletcher Henderson And His Orchestra131-6Big Chief De Sota317895Fletcher Henderson And His Orchestra131-7Blue Lou317895Fletcher Henderson And His Orchestra131-8Stealin' Apples317895Fletcher Henderson And His Orchestra131-9I'm A Fool For Loving You307323Fletcher Henderson131-10Moonrise On The Lowlands307323Fletcher Henderson131-11I'll Always Be In Love With You307323Fletcher Henderson131-12Jangled Nerves307323Fletcher Henderson131-13Grand Terrace Rhythm307323Fletcher Henderson131-14Riffin'307323Fletcher Henderson131-15Mary Had A Little Lamb307323Fletcher Henderson131-16Shoe Shine Boy307323Fletcher Henderson131-17Sing, Sing, Sing307323Fletcher Henderson131-18Until Today307323Fletcher Henderson131-19Knock, Knock Who's There?307323Fletcher Henderson131-20Jim Town Blues307323Fletcher Henderson132-1Stompin' At The Savoy294491Chick Webb132-2Don't Be That Way294491Chick Webb132-3Blue Lou294491Chick Webb132-4Down Home Rag294491Chick Webb132-5Love And Kisses294491Chick Webb132-6I May Be Wrong294491Chick Webb132-7Facts And Figures294491Chick Webb132-8Go Harlem294491Chick Webb132-9Love Marches On294491Chick Webb132-10There's Frost On The Moon294491Chick Webb132-11Gee But You're Swell294491Chick Webb132-12Rusty Hinge294491Chick Webb132-13Wake Up And Live294491Chick Webb132-14It's Swell Of You294491Chick Webb132-15Clap Hands! Here Comes Charly294491Chick Webb132-16That Naughty Waltz294491Chick Webb132-17In A Little Spanish Town376385Chick Webb And His Little Chicks132-18I Got Rhythm376385Chick Webb And His Little Chicks132-19I Ain't Got Nobody376385Chick Webb And His Little Chicks132-20Strictly Jive376385Chick Webb And His Little ChicksSet 34133-1King Porter Stomp254768Benny Goodman133-2Goodbye374400Benny Goodman And His Orchestra133-3If I Could Be With You (One Hour Tonight)374400Benny Goodman And His Orchestra133-4Goody Goody374400Benny Goodman And His Orchestra133-5Stompin' At The Savoy374400Benny Goodman And His Orchestra133-6Christopher Columbus374400Benny Goodman And His Orchestra133-7Down South Camp Meeting374400Benny Goodman And His Orchestra133-8Bugle Call Rag374400Benny Goodman And His Orchestra133-9He Ain't Got Rhythm254768Benny Goodman133-10I Want To Be Happy254768Benny Goodman133-11Sing, Sing, Sing254768Benny Goodman133-12Roll 'em254768Benny Goodman133-13Sugar Foot Stomp254768Benny Goodman133-14St. Louis Blues254768Benny Goodman133-15Don't Be That Way374400Benny Goodman And His Orchestra133-16One O'clock Jump374400Benny Goodman And His Orchestra133-17Smoke House Rhythm374400Benny Goodman And His Orchestra133-18Topsy374400Benny Goodman And His Orchestra133-19The Kingdom Of Swing374400Benny Goodman And His Orchestra134-1Weary Blues253855Tommy Dorsey And His Orchestra134-2Royal Garden Blues253855Tommy Dorsey And His Orchestra134-3Tea On The Terrace229639Tommy Dorsey134-4I'm In A Dancing Mood229639Tommy Dorsey134-5Keepin' Out Of Mischief Now229639Tommy Dorsey134-6Jamboree229639Tommy Dorsey134-7Mr. Ghost Goes To Town253855Tommy Dorsey And His Orchestra134-8Lookin' Around Corners For You253855Tommy Dorsey And His Orchestra134-9Who'll Buy My Violets?229639Tommy Dorsey134-10On A Little Bamboo Bridge229639Tommy Dorsey134-11Melody In F229639Tommy Dorsey134-12Song Of India229639Tommy Dorsey134-13Marie229639Tommy Dorsey134-14In A Little Hula Heaven253855Tommy Dorsey And His Orchestra134-15I'll Dream My Way To Heaven253855Tommy Dorsey And His Orchestra134-16Liebestraum229639Tommy Dorsey134-17Mendelssohn's Spring Song229639Tommy Dorsey134-18The Sheik Of Araby312960Tommy Dorsey And His Clambake Seven134-19Boogie Woogie229639Tommy Dorsey134-20Hawaiian War Chant253855Tommy Dorsey And His Orchestra135-1Jubilee265635Harry James And His Orchestra135-2When You're Alone265635Harry James And His Orchestra135-3Can't It?265635Harry James And His Orchestra135-4Life Goes To A Party265635Harry James And His Orchestra135-5Texas Chatter265635Harry James And His Orchestra135-6Song Of The Wanderer265635Harry James And His Orchestra135-7It's The Dreamer In Me265635Harry James And His Orchestra135-8One O'clock Jump265635Harry James And His Orchestra135-9Out Of Nowhere265635Harry James And His Orchestra135-10Wrap Your Troubles In Dreams265635Harry James And His Orchestra135-11Lullaby In Rhythm265635Harry James And His Orchestra135-12Little White Lies265635Harry James And His Orchestra135-13Boo - Woo313097Harry James (2)And376498The Boogie Woogie Trio135-14Woo - Woo313097Harry James (2)And376498The Boogie Woogie Trio135-15Home James313097Harry James (2)And376498The Boogie Woogie Trio135-16Jesse313097Harry James (2)And376498The Boogie Woogie Trio135-17Ciribiribin265635Harry James And His Orchestra135-18Sweet Georgia Brown265635Harry James And His Orchestra135-19Blame It On My Last Affair265635Harry James And His Orchestra135-20Love Is A Necessary Thing265635Harry James And His Orchestra135-21'tain't What You Do265635Harry James And His Orchestra135-22Two O'clock Jump265635Harry James And His Orchestra136-1Rhythm Sundae341505Earl Hines And His Orchestra136-2Pianology341505Earl Hines And His Orchestra136-3Piano Man341505Earl Hines And His Orchestra136-4Tantalizing A Cuban341505Earl Hines And His Orchestra136-5G.T. Stomp341505Earl Hines And His Orchestra136-6Lightly And Politely341505Earl Hines And His Orchestra136-7Boogie Woogie On St. Louis Blues341505Earl Hines And His Orchestra136-8Deep Forest341505Earl Hines And His Orchestra136-9Number 19341505Earl Hines And His Orchestra136-10Call Me Happy341505Earl Hines And His Orchestra136-11Easy Rhythm341505Earl Hines And His Orchestra136-12Comin' In Home341505Earl Hines And His Orchestra136-13Up Jumped The Devil341505Earl Hines And His Orchestra136-14Jersey Bounce341505Earl Hines And His Orchestra136-15South Side341505Earl Hines And His Orchestra136-16Windy City Jive341505Earl Hines And His Orchestra136-17Swingin' On C341505Earl Hines And His Orchestra136-18The Father Jumps341505Earl Hines And His Orchestra136-19The Earl341505Earl Hines And His Orchestra136-20Blue Keys341505Earl Hines And His OrchestraSet 35137-1One O'clock Jump145262Count Basie137-2Topsy145262Count Basie137-3Swingin' The Blues145262Count Basie137-4Every Tub145262Count Basie137-5Jumpin' At The Woodside145262Count Basie137-6Texas Shuffle145262Count Basie137-7Jive At Five145262Count Basie137-8Oh! Lady Be Good145262Count Basie137-9Twelfth Street Rag145262Count Basie137-10Clap Hands! Here Comes Charley145262Count Basie137-11Tickle Toe145262Count Basie137-12I Never Knew145262Count Basie137-13Super Chief145262Count Basie137-14Love Jumped Out145262Count Basie137-15Fiesta In Blue145262Count Basie137-16Red Bank Boogie253011Count Basie Orchestra137-17Rhythm Man253011Count Basie Orchestra137-18Yeah Man!253011Count Basie Orchestra137-19Dance Of The Gremlins253011Count Basie Orchestra137-20Kansas City Stride253011Count Basie Orchestra137-21Beaver Junction253011Count Basie Orchestra137-22Circus In Rhythm253011Count Basie Orchestra137-23Basie Strides Again253011Count Basie Orchestra138-1Begin The Beguine335674Artie Shaw And His Orchestra138-2Indian Love Call335674Artie Shaw And His Orchestra138-3Yesterdays335674Artie Shaw And His Orchestra138-4Nightmare335674Artie Shaw And His Orchestra138-5Jungle Drums269597Artie Shaw138-6Rosalie269597Artie Shaw138-7The Man I Love269597Artie Shaw138-8Carioca269597Artie Shaw138-9The Donkey Serenade269597Artie Shaw138-10Deep Purple269597Artie Shaw138-11Serenade To A Savage269597Artie Shaw138-12Lady Be Good269597Artie Shaw138-13I Surrender Dear269597Artie Shaw138-14All The Things You Are269597Artie Shaw138-15I Didn't Know What Time It Was269597Artie Shaw138-16Diga Diga Doo269597Artie Shaw138-17Frenesi335674Artie Shaw And His Orchestra138-18Gloomy Sunday335674Artie Shaw And His Orchestra138-19Mister Meadowlark335674Artie Shaw And His Orchestra138-20Temptation335674Artie Shaw And His Orchestra138-21Blues From "Lenow Avenue Suite" [Part 1]335674Artie Shaw And His Orchestra138-22Blues From "Lenow Avenue Suite" [Part 2]335674Artie Shaw And His Orchestra138-23Moonglow335674Artie Shaw And His Orchestra139-1King Porter Stomp335671Glenn Miller And His Orchestra139-2Runnin' Wild77991Glenn Miller139-3Slip Horn Jive77991Glenn Miller139-4Sold American77991Glenn Miller139-5Pagan Love Song77991Glenn Miller139-6Glen Island Special77991Glenn Miller139-7Wham (Re-Bop-Boom-Bam)77991Glenn Miller139-8I Want To Be Happy77991Glenn Miller139-9My Isle Of Golden Dreams77991Glenn Miller139-10Rug Cutter's Swing335671Glenn Miller And His Orchestra139-11Slow Freight77991Glenn Miller139-12Bugle Call Rag77991Glenn Miller139-13My Blue Heaven77991Glenn Miller139-14What's Your Story Morning Glory77991Glenn Miller139-15I Dream I Dwelt In Harlem77991Glenn Miller139-16When That Man Is Dead And Gone77991Glenn Miller139-17The Spirit Is Willing77991Glenn Miller139-18Take The 'a' Train77991Glenn Miller139-19Swing Low Sweet Chariot77991Glenn Miller139-20Long Tall Mama77991Glenn Miller139-21Chip Off The Black77991Glenn Miller139-22Keep 'em Flying77991Glenn Miller140-1Can't Help Lovin' Dat Man269601Bunny Berigan140-2Russian Lullaby269601Bunny Berigan140-3Trees269601Bunny Berigan140-4Livery Stable Blues269601Bunny Berigan140-5High Society269601Bunny Berigan140-6Sobbin' Blues269601Bunny Berigan140-7Jelly Roll Blues269601Bunny Berigan140-8In A Mist269601Bunny Berigan140-9Flashes269601Bunny Berigan140-10Davenport Blues269601Bunny Berigan140-11Candlelights269601Bunny Berigan140-12Walkin' The Dog269601Bunny Berigan140-13In The Dark269601Bunny Berigan140-14Little Gate's Special269601Bunny Berigan140-15Jazz Me Blues269601Bunny Berigan140-16Patty Cake, Patty Cake269601Bunny Berigan140-17Peg O' My Heart269601Bunny Berigan140-18Night Song269601Bunny Berigan140-19Ay - Ay - Ay269601Bunny Berigan140-20Ain't She Sweet269601Bunny BeriganSet 36141-1Bolero At The Savoy258689Gene Krupa141-2I Know That You Know317887Gene Krupa And His Orchestra141-3Fare The Well, Annie Laurie317887Gene Krupa And His Orchestra141-4Wire Bush Stomp317887Gene Krupa And His Orchestra141-5Nagasaki317887Gene Krupa And His Orchestra141-6Jeepers Creepers258689Gene Krupa141-7Murdy Purdy258689Gene Krupa141-8Ta-Ra-Ra-Boom-Der-E258689Gene Krupa141-9Grandfather's Clock317887Gene Krupa And His Orchestra141-10Apurksody258689Gene Krupa141-11Never Felt Better, Never Had Less258689Gene Krupa141-12Do You Wanna Jump, Children?258689Gene Krupa141-13The Madam Swings It317887Gene Krupa And His Orchestra141-14Dracula317887Gene Krupa And His Orchestra141-15Symphony In Riffs317887Gene Krupa And His Orchestra141-16Drummin' Man258689Gene Krupa141-17Georgia On My Mind258689Gene Krupa141-18Fool Am I258689Gene Krupa142-1Swing Street Strut269594Charlie Barnet142-2Echoes Of Harlem269594Charlie Barnet142-3Scotch And Soda269594Charlie Barnet142-4Only A Rose269594Charlie Barnet142-5I Never Knew269594Charlie Barnet142-6Miss Anabelle Lee269594Charlie Barnet142-7Lazy Bug269594Charlie Barnet142-8Ebony Rhapsody341403Charlie Barnet And His Orchestra142-9Lament For A Lost Love341403Charlie Barnet And His Orchestra142-10Cherokee341403Charlie Barnet And His Orchestra142-11The All Night Record Man341403Charlie Barnet And His Orchestra142-12The Last Jump341403Charlie Barnet And His Orchestra142-13The Duke's Idea269594Charlie Barnet142-14The Count's Idea269594Charlie Barnet142-15The Right Idea269594Charlie Barnet142-16The Wrong Idea269594Charlie Barnet142-17Ogoun Badagris (Voodoo War God)269594Charlie Barnet142-18Oh What You Said (Are We Burnt Up?)269594Charlie Barnet142-19Night Claw269594Charlie Barnet142-20Between 18th And 19th On Chestnut Street269594Charlie Barnet142-21Clap Hands, Here Comes Charlie269594Charlie Barnet143-1Soft Winds270238Erskine Hawkins143-2Nona270238Erskine Hawkins143-3Riff Time270238Erskine Hawkins143-4No Use Squawkin'270238Erskine Hawkins143-5Uncle Bud270238Erskine Hawkins143-6Blackout270238Erskine Hawkins143-7Blue Sea270238Erskine Hawkins143-8Shipyard Ramble270238Erskine Hawkins143-9Hey Doc!270238Erskine Hawkins143-10Bicycle Bounce270238Erskine Hawkins143-11Lucky Seven (Bill's Tune)270238Erskine Hawkins143-12Country Boy270238Erskine Hawkins143-13Bear Mash Blues270238Erskine Hawkins143-14Tippin' In340734Erskine Hawkins And His Orchestra143-15Caldonia270238Erskine Hawkins143-16Drifting Along270238Erskine Hawkins143-17Good Dip270238Erskine Hawkins143-18Holiday For Swing270238Erskine Hawkins144-1Vibe Boogie136133Lionel Hampton144-2Screamin' Boogie136133Lionel Hampton144-3Doublin' With Dublin376539Lionel Hampton And His Septet144-4Ribs And Hot Sauce376539Lionel Hampton And His Septet144-5Blow Top Blues376539Lionel Hampton And His Septet144-6Two Finger Boogie376539Lionel Hampton And His Septet144-7Someday You'll Be Sorry317907Lionel Hampton And His Orchestra144-8Beulah's Boogie317907Lionel Hampton And His Orchestra144-9Playboy317907Lionel Hampton And His Orchestra144-10Punch And Judy317907Lionel Hampton And His Orchestra144-11Pinetop's Boogie164571Bing CrosbyWith317907Lionel Hampton And His Orchestra144-12On The Sunny Side Of The Street Punch And Judy164571Bing CrosbyWith317907Lionel Hampton And His Orchestra144-13Rockin' In Rhythm [Part 1]317907Lionel Hampton And His Orchestra144-14Rockin' In Rhythm [Part 2]317907Lionel Hampton And His Orchestra144-15Gay Notes317907Lionel Hampton And His Orchestra144-16Tempo's Birthday376540Lionel Hampton And His Quartet144-17Hamp's Salty Blues376540Lionel Hampton And His Quartet144-18Ridin' On The L And N376540Lionel Hampton And His QuartetSet 37145-1Chelsea Boogie145257Duke Ellington145-2What Am I Here For?145257Duke Ellington145-3Main Stem145257Duke Ellington145-4Johnny Come Lately145257Duke Ellington145-5The "C" Jam Blues284747Duke Ellington And His Orchestra145-6Perdido284747Duke Ellington And His Orchestra145-7Moon Mist284747Duke Ellington And His Orchestra145-8I'm Beginning To See The Light284747Duke Ellington And His Orchestra145-9Carnegie Blues145257Duke Ellington145-10Blue Cellophone145257Duke Ellington145-11Mood To Be Wooed145257Duke Ellington145-12The Mooche307241Sonny GreerAnd376566The Duke's Men145-13Black And Tan Fantasy145257Duke Ellington145-14It Don't Mean A Thing (If It Ain't Got That Swing)284747Duke Ellington And His Orchestra145-15In A Sentimental Mood284747Duke Ellington And His Orchestra145-16Things Ain't What They Used To Be (Time's A-Waistin')145257Duke Ellington145-17Magenta Haze145257Duke Ellington145-18Blue Skies145257Duke Ellington145-19Sultry Sunset145257Duke Ellington145-20Do Nothin' Till You Hear From Me145257Duke Ellington145-21Park At 106th145257Duke Ellington146-1The Good Earth284746Woody Herman And His Orchestra146-2Laura239399Woody Herman146-3Your Father's Moustache239399Woody Herman146-4Lady Mcgowan's Dream [Part I & II]239399Woody Herman146-5Apple Honey239399Woody Herman146-6Summer Sequence [Parts I-IV]239399Woody Herman146-7Not Really The Blues239399Woody Herman146-8More Moon239399Woody Herman146-9Rhapsody In Wood239399Woody Herman146-10Here Come The Blues284746Woody Herman And His OrchestraAnd311744Billy Eckstine146-11Life Is Just A Bowl Of Cherries284746Woody Herman And His OrchestraAnd311744Billy Eckstine146-12Cohn's Alley239399Woody Herman146-13Mulligantawny239399Woody Herman146-14Why Not?239399Woody Herman146-15Would He?239399Woody Herman146-16Off Shore239399Woody Herman146-17Hitting The Bottle239399Woody Herman146-18It Happens To Me239399Woody Herman146-19Strange239399Woody Herman146-20Moten Stomp239399Woody Herman147-1Easy Go320804Stan Kenton And His Orchestra147-2Love For Sale320804Stan Kenton And His Orchestra147-3Viva Prado320804Stan Kenton And His Orchestra147-4Something New (Sunset Tower)212786Stan Kenton147-5Theme For Alto212786Stan Kenton147-6Riff Rhapsody212786Stan Kenton147-7Dynaflow212786Stan Kenton147-8What's New212786Stan Kenton147-9Jump For Joe212786Stan Kenton147-10Night Watch320804Stan Kenton And His Orchestra147-11Francesca320804Stan Kenton And His Orchestra147-12Soliloquy320804Stan Kenton And His Orchestra147-13Lazy Daisy320804Stan Kenton And His Orchestra147-14Mambo Rhapsody320804Stan Kenton And His Orchestra147-15Riff Raff320804Stan Kenton And His Orchestra147-16Star Dust320804Stan Kenton And His Orchestra147-17Bags And Bagage212786Stan Kenton147-18Bill's Blues212786Stan Kenton147-19Cool Eyes212786Stan Kenton147-20Beehive212786Stan Kenton147-21Lover Man212786Stan Kenton147-22Fascinating Rhythm320804Stan Kenton And His Orchestra148-1Popo376042Shorty Rogers And His Giants148-2Over The Rainbow376042Shorty Rogers And His Giants148-3Didi376042Shorty Rogers And His Giants148-4Sam And The Lady376042Shorty Rogers And His Giants148-5Apropos376042Shorty Rogers And His Giants148-6Bunny376042Shorty Rogers And His Giants148-7Pirouette376042Shorty Rogers And His Giants148-8Morpo312417Shorty Rogers148-9Coup De Graas376567Shorty Rogers And His Orchestra148-10Infinity Promenade376567Shorty Rogers And His Orchestra148-11Short Stop376567Shorty Rogers And His Orchestra148-12Boar - Jibu376567Shorty Rogers And His Orchestra148-13Contours376567Shorty Rogers And His Orchestra148-14Tale Of An African Lobster376567Shorty Rogers And His Orchestra148-15Chiquito Loco376567Shorty Rogers And His Orchestra148-16The Sweetheart Of Sigmund Freud376567Shorty Rogers And His OrchestraVocalistsSet 38149-1Roll On Mississippi, Roll On307205The Boswell Sisters149-2Shout, Sister, Shout307205The Boswell Sisters149-3Sing A Little Jingle307205The Boswell Sisters149-4I Found A Million Dollar307205The Boswell Sisters149-5It's The Girl307205The Boswell Sisters149-6It's You307205The Boswell Sisters149-7Making Faces At The Man In The Moon307205The Boswell Sisters149-8I Can't Write The Words307205The Boswell Sisters149-9Shine On, Harvest Moon307205The Boswell Sisters149-10Heebie Jeebies307205The Boswell Sisters149-11River, Stay 'way From My Door307205The Boswell Sisters149-12An Evening In Caroline307205The Boswell Sisters149-13Nothing Is Sweeter Than You307205The Boswell Sisters149-14I Thank You, Mr. Moon307205The Boswell Sisters149-15Was That The Human Thing To Do307205The Boswell Sisters149-16Put That Sun Back In The Sky307205The Boswell Sisters149-17Stop The Sun, Stop The Moon307205The Boswell Sisters149-18Everybody Loves My Baby307205The Boswell Sisters149-19There'll Be Some Changes Made307205The Boswell Sisters149-20Between The Devil And The Deep Blue Sea307205The Boswell Sisters149-21If It Ain't Love307205The Boswell Sisters149-22Got The South In My Soul307205The Boswell Sisters149-23Whad Ja Do To Me307205The Boswell Sisters149-24When I Take My Sugar To Tea307205The Boswell Sisters150-1It Don't Mean A Thing258518The Mills Brothers150-2Doin' The New Low Down258518The Mills Brothers150-3St. Louis Blues258518The Mills Brothers150-4Sweet Sue, Just You258518The Mills Brothers150-5Diga Diga Doo258518The Mills Brothers150-6Tiger Rag258518The Mills Brothers150-7Loveless Love258518The Mills Brothers150-8Some Of These Days258518The Mills Brothers150-9Nagasaki258518The Mills Brothers150-10What's The Reason258518The Mills Brothers150-11Moanin' For You258518The Mills Brothers150-12Don't Be Afraid To Tell Your Mother258518The Mills Brothers150-13Since We Fell Out Of Love258518The Mills Brothers150-14Lulu's Back In Town258518The Mills Brothers150-15Solitude258518The Mills Brothers150-16London Rhythm258518The Mills Brothers150-17Shoe Shine Boy258518The Mills Brothers150-18Swing Is The Thing258518The Mills Brothers150-19Pennies From Heaven258518The Mills Brothers150-20Swing For Sale258518The Mills Brothers151-1Your Mother's Son-In-Law374400Benny Goodman And His Orchestra151-2Riffin' The Scotch374400Benny Goodman And His Orchestra151-3I Wished On The Moon342361Teddy Wilson And His Orchestra151-4What A Little Moonlight Can Do342361Teddy Wilson And His Orchestra151-5Miss Brown To You342361Teddy Wilson And His Orchestra151-6A Sunbonnet Blue342361Teddy Wilson And His Orchestra151-7What A Night, What A Moon, What A Girl33589Billie Holiday151-8I'm Painting The Town Red33589Billie Holiday151-9It's Too Hot For Words33589Billie Holiday151-10Twenty-Four Hours A Day33589Billie Holiday151-11Yankee Doodle Never Went To Town33589Billie Holiday151-12Eeny Meeny Miney Mo33589Billie Holiday151-13If You Were Mine33589Billie Holiday151-14These 'n' That 'n' Those33589Billie Holiday151-15You Let Me Down33589Billie Holiday151-16Spreadin' Rhythm Around33589Billie Holiday151-17Life Begins When You're In Love33589Billie Holiday151-18It's Like Reaching For The Moon33589Billie Holiday151-19These Foolish Things33589Billie Holiday152-1When Day Is Done376594Mildred Bailey And Her Swing Band152-2I've Got My Love To Keep Me Warm307409Mildred Bailey152-3Rockin' Chair307409Mildred Bailey152-4Thanks For The Money307409Mildred Bailey152-5Rock It For Me307409Mildred Bailey152-6'tain't What You Do307409Mildred Bailey152-7Daydreaming307409Mildred Bailey152-8A Cigarette & A Silhouette307409Mildred Bailey152-9You Leave Me Breathless307409Mildred Bailey152-10Savin' Myself For You307409Mildred Bailey152-11Put Your Heart In A Song307409Mildred Bailey152-12Wigwammin'307409Mildred Bailey152-13Jumps Jumps Here307409Mildred Bailey152-14St. Louis Blues307409Mildred Bailey152-15Barrelhouse Music307409Mildred Bailey152-16Arkansas Blues307409Mildred Bailey152-17There'll Be Some Changes Made307409Mildred Bailey152-18A Ghost Of A Chance307409Mildred Bailey152-19Darn That Dream307409Mildred Bailey152-20Peace, Brother!307409Mildred BaileySet 39153-1It Don't Mean A Thing284747Duke Ellington And His Orchestra153-2I've Got The World On A String265631Ivie Anderson153-3My Old Flame265631Ivie Anderson153-4Troubled Waters265631Ivie Anderson153-5Let's Have A Jubilee284747Duke Ellington And His Orchestra153-6Cotton284747Duke Ellington And His Orchestra153-7Truckin'284747Duke Ellington And His Orchestra153-8Isn't Love The Strangest Thing265631Ivie Anderson153-9Oh Babe! Maybe Someday265631Ivie Anderson153-10Shoe Shine Boy265631Ivie Anderson153-11It Was A Sad Night In Harlem265631Ivie Anderson153-12I've Got To Be A Rug Cutter284747Duke Ellington And His Orchestra153-13There's A Lull In My Life265631Ivie Anderson153-14All God's Chillun Got Rhythm265631Ivie Anderson153-15Alabamy Home265631Ivie Anderson153-16I'm Checkin' Out, Goo'm Bye265631Ivie Anderson153-17Killin' Myself284747Duke Ellington And His Orchestra153-18Me And You265631Ivie Anderson153-19Chocolate Shake265631Ivie Anderson153-20I Got It Bad And That Ain't Good265631Ivie Anderson153-21Jump For Joy265631Ivie Anderson153-22Rocks In My Bed284747Duke Ellington And His Orchestra153-23Hayfoot, Strawfoot265631Ivie Anderson154-1Organ Grinder's Swing376851Ella Fitzgerald And Her Savoy Eight154-2You Showed Me The Way342796Chick Webb And His Orchestra154-3Cryin' Mood342796Chick Webb And His Orchestra154-4Just A Simple Melody342796Chick Webb And His Orchestra154-5Rock It For Me342796Chick Webb And His Orchestra154-6I Want To Be Happy31615Ella Fitzgerald154-7The Dipsy Doodle31615Ella Fitzgerald154-8If Dreams Come True31615Ella Fitzgerald154-9Hallelujah!31615Ella Fitzgerald154-10A-Tisket, A-Tasket342796Chick Webb And His Orchestra154-11I'm Just A Jitterbug342796Chick Webb And His Orchestra154-12I Found My Yellow Basket342796Chick Webb And His Orchestra154-13Undecided342796Chick Webb And His Orchestra154-14'tain't What You Do342796Chick Webb And His Orchestra154-15Don't Worry 'bout Me31615Ella Fitzgerald154-16Stairway To The Stars376855Ella Fitzgerald And Her Famous Orchestra154-17Deedle-De-Dum376855Ella Fitzgerald And Her Famous Orchestra154-18Five O'clock Whistle376855Ella Fitzgerald And Her Famous Orchestra155-1Bei Mir Bist Du Schön299951The Andrews Sisters155-2Beer Barrel Polka299951The Andrews Sisters155-3Boogie Woogie Bugle Boy299951The Andrews Sisters155-4Beat Me Daddy, Eight To The Bar299951The Andrews Sisters155-5Near You299951The Andrews Sisters155-6Rumors Are Flying299951The Andrews Sisters155-7Bounce Me Brothers With A Solid Four299951The Andrews Sisters155-8Don't Sit Under The Apple Tree299951The Andrews Sisters155-9Gimme Some Skin, My Friend299951The Andrews Sisters155-10Ac-Cent-Tchu-Ate The Positive299951The Andrews Sisters155-11Rhumboogie299951The Andrews Sisters155-12Money Is The Root Of All Evil299951The Andrews Sisters155-13Straighten Up And Fly Right299951The Andrews Sisters155-14Shoo, Shoo Baby299951The Andrews Sisters155-15Rum And Coca Cola299951The Andrews Sisters155-16I Can Dream, Can't I299951The Andrews Sisters156-1That's What Love Did To Me334074Noble Sissle And His Orchestra156-2You're My Thrill341403Charlie Barnet And His Orchestra156-3The Captain And His Men341403Charlie Barnet And His Orchestra156-4Good-For-Nothin' Joe341403Charlie Barnet And His Orchestra156-5Haunted Town300050Lena Horne156-6St. Louis Blues376854The Dixieland Jazz Group Of NBC's Chamber Music Society Of Lower Basin Street156-7Careless Love376854The Dixieland Jazz Group Of NBC's Chamber Music Society Of Lower Basin Street156-8Aunt Hagar's Blues376854The Dixieland Jazz Group Of NBC's Chamber Music Society Of Lower Basin Street156-9Beale Street Blues376854The Dixieland Jazz Group Of NBC's Chamber Music Society Of Lower Basin Street156-10Love Me A Little Little335674Artie Shaw And His Orchestra156-11Don't Take Your Love From Me335674Artie Shaw And His Orchestra156-12Out Of Nowhere342361Teddy Wilson And His Orchestra156-13Prisoner Of Love342361Teddy Wilson And His Orchestra156-14As Long As I Live300050Lena HorneWith376853Horace Henderson And His Orchestra156-15Ill Wind300050Lena HorneWith376853Horace Henderson And His Orchestra156-16Stormy Weather300050Lena HorneWith376853Horace Henderson And His Orchestra156-17The Man I Love300050Lena HorneWith376853Horace Henderson And His Orchestra156-18Where Or When300050Lena HorneWith355Unknown ArtistOrchestra156-19Mad About The Boy300050Lena HorneWith355Unknown ArtistOrchestra156-20I Gotta Right To Sing The Blues300050Lena HorneWith355Unknown ArtistOrchestra156-21Moanin' Low300050Lena HorneWith355Unknown ArtistOrchestra156-22One For My Baby300050Lena HorneWith355Unknown ArtistOrchestra156-23I Didn't Know About You300050Lena HorneWith355Unknown ArtistOrchestraSet 40157-1Deep In The Blues317887Gene Krupa And His Orchestra157-2Let Me Off Uptown317887Gene Krupa And His Orchestra157-3Just A Little Bit South Of North Carolina317887Gene Krupa And His Orchestra157-4Slow Down317887Gene Krupa And His Orchestra157-5Georgia On My Mind317887Gene Krupa And His Orchestra157-6Green Eyes317887Gene Krupa And His Orchestra157-7Kick It317887Gene Krupa And His Orchestra157-8Bolero At The Savoy317887Gene Krupa And His Orchestra157-9The Walls Keep Talking317887Gene Krupa And His Orchestra157-10Stop, The Red Light's On317887Gene Krupa And His Orchestra157-11That's What You Think258903Anita O'Day157-12Massachusetts258903Anita O'Day157-13I'm Going Mad For A Pad320804Stan Kenton And His Orchestra157-14Murder, He Says258903Anita O'Day157-15Gotta Be Gettin'320804Stan Kenton And His Orchestra157-16And Her Tears Flowed Like Wine320804Stan Kenton And His Orchestra157-17Are You Livin' Old Man?320804Stan Kenton And His Orchestra157-18Travelin' Man320804Stan Kenton And His Orchestra157-19I Want A Grown-Up Man320804Stan Kenton And His Orchestra157-20Boogie Blues317887Gene Krupa And His Orchestra157-21Chickery Chick317887Gene Krupa And His Orchestra157-22Tea For Two258903Anita O'Day157-23Opus I258903Anita O'Day158-1I've Got A Date With Rhythm311744Billy EckstineWith376964DeLuxe All Star Band158-2I Stay In The Mood For You311744Billy EckstineWith376964DeLuxe All Star Band158-3Good Jelly Blues311744Billy EckstineWith376964DeLuxe All Star Band158-4I Want To Talk About You320609Billy Eckstine And His Orchestra158-5The Real Thing Happened To Me320609Billy Eckstine And His Orchestra158-6Blowing The Blues Away320609Billy Eckstine And His Orchestra158-7If That's The Way You Feel320609Billy Eckstine And His Orchestra158-8I Love The Rythm In A Riff311744Billy Eckstine158-9Last Night311744Billy Eckstine158-10Oo Bop Sh' Bam320609Billy Eckstine And His Orchestra158-11I Love The Loveliness Of You320609Billy Eckstine And His Orchestra158-12In The Still Of The Night320609Billy Eckstine And His Orchestra158-13Jelly Jelly320609Billy Eckstine And His Orchestra158-14My Silent Love320609Billy Eckstine And His Orchestra158-15Time On My Hands320609Billy Eckstine And His Orchestra158-16All The Things You Are320609Billy Eckstine And His Orchestra158-17In A Sentimental Mood320609Billy Eckstine And His Orchestra158-18All Of Me311744Billy Eckstine158-19Where Are You?311744Billy Eckstine158-20Prelude To A Kiss311744Billy Eckstine158-21She's Got The Blues For Sale311744Billy Eckstine159-1How Deep Is The Ocean79742Peggy Lee159-2Blues In The Night311730Benny Goodman Sextet159-3You're Easy To Dance With374400Benny Goodman And His Orchestra159-4Ain't Goin' No Place79742Peggy Lee159-5Somebody Loves Me376961Dave Barbour Orchestra159-6The Freedom Train376962Paul Weston And His Orchestra159-7Swing Low Sweet Chariot376961Dave Barbour Orchestra159-8Somebody Loves Me376961Dave Barbour Orchestra159-9There'll Be Some Changes Made79742Peggy Lee159-10Sugar376961Dave Barbour Orchestra159-11I Can't Give You Anything But Love376961Dave Barbour Orchestra159-12Happiness Is A Thing Called Joe376961Dave Barbour Orchestra159-13Them There Eyes79742Peggy Lee159-14Bye Bye Blues376961Dave Barbour Orchestra159-15I Let A Song Go Out Of My Heart79742Peggy Lee159-16You're Driving Me Crazy79742Peggy Lee159-17They Can't Take That Away From Me376963Peggy Lee Orchestra159-18Lover Come Back To Me376963Peggy Lee Orchestra159-19(When I Dance With You) I Get Ideas376963Peggy Lee Orchestra159-20Whee Baby376963Peggy Lee Orchestra159-21I Didn't Know What Time It Was79742Peggy Lee159-22A Woman Alone With The Blues79742Peggy Lee160-1Sweet Lorraine145288Nat King Cole160-2Embraceable You145288Nat King Cole160-3It's Only A Papermoon145288Nat King Cole160-4I Just Can't See For Looking145288Nat King Cole160-5I Realize Now145288Nat King Cole160-6I'd Love To Make Love To You145288Nat King Cole160-7Katusha145288Nat King Cole160-8You're Nobody 'till Somebody Loves You145288Nat King Cole160-9Don't Blame Me145288Nat King Cole160-10I'm Thru With You145288Nat King Cole160-11I'm In The Mood For Love145288Nat King Cole160-12I Don't Know Why145288Nat King Cole160-13Route 66145288Nat King Cole160-14Everyone Is Sayin' Hello Again145288Nat King Cole160-15What Can I Say After I Say I'm Sorry145288Nat King Cole160-16Could-'ja145288Nat King Cole160-17Baby, Baby All The Time145288Nat King Cole160-18You Call It Madness145288Nat King Cole160-19Look What You've Done To Me145288Nat King Cole160-20It Only Happens Once145288Nat King ColeSet 41161-1I Never Thought I'd Sing The Blues299948June Christy161-2On The Sunny Side Of The Street299948June Christy161-3Easy Street299948June Christy161-4No Baby, Nobody But You299948June Christy161-5I Got The Sun In The Morning299948June Christy161-6Come Rain Or Come Shine299948June Christy161-7Tampico320804Stan Kenton And His Orchestra161-8Ride On299948June Christy161-9That's The Stuff You Gotta Watch299948June Christy161-10Are You Livin' Old Man?299948June Christy161-11Shoo Fly Pie And Apple Pan Dowdy299948June Christy161-12Just A-Sittin' And A-Rockin'299948June Christy161-13It's Been A Long, Long Time299948June Christy161-14Ain't No Misery In Me299948June Christy161-15Willow Weep For Me299948June Christy161-16Across The Valley From The Alamo299948June Christy161-17I Let A Song Go Out Of My Heart299948June Christy161-18If I Should Lose You299948June Christy161-19Day Dream299948June Christy161-20Little Grass Skirt299948June Christy161-21Skip Rope299948June Christy161-22I'll Bet You Do299948June Christy162-1All Of Me52833Frank Sinatra162-2Come Out, Come Out, Wherever You Are52833Frank Sinatra162-3Saturday Night (Is The Loniest Night In The Week)52833Frank Sinatra162-4Embraceable You52833Frank Sinatra162-5Someone To Watch Over Me52833Frank Sinatra162-6Aren't You Glad You're You52833Frank Sinatra162-7You Brought A New Kind Of Love To Me52833Frank Sinatra162-8The Song Is You52833Frank Sinatra162-9Begin The Beguine52833Frank SinatraWith377050Axel Stordahl Orchestra162-10That Old Black Magic52833Frank Sinatra162-11Come Rain Or Come Shine52833Frank Sinatra162-12September Song52833Frank Sinatra162-13Blue Skies52833Frank Sinatra162-14There's No Business Like Show Business52833Frank SinatraWith377050Axel Stordahl Orchestra162-15The Brooklyn Bridge52833Frank SinatraWith377050Axel Stordahl Orchestra162-16Sweet Lorraine311056Metronome All Stars162-17One For My Baby (And One For The Road)52833Frank SinatraWith377050Axel Stordahl Orchestra162-18All Of Me52833Frank SinatraWith377050Axel Stordahl Orchestra162-19Night And Day52833Frank SinatraWith377050Axel Stordahl Orchestra162-20S'posin'377048Tony Mottola Trio162-21I've Got A Crush On You52833Frank SinatraWith377050Axel Stordahl Orchestra162-22Body And Soul52833Frank SinatraWith377050Axel Stordahl Orchestra162-23The Hucklebuck377045Ken Lane Singers&52833Frank SinatraWith377050Axel Stordahl Orchestra162-24It All Depends On You52833Frank SinatraWith395324Hugo Winterhalter Orchestra163-1Blues For A Day33587Dinah Washington163-2Rich's Man Blues33587Dinah Washington163-3Pacific Coast Blues33587Dinah Washington163-4Beggin' Mama Blues33587Dinah Washington163-5My Lovin' Papa33587Dinah Washington163-6Oo Wee Walkie Talkie341422Gerald Wilson OrchestraGerald Wilson And His Orchestra163-7Embraceable You6150604Gus Chappell And His OrchestraGus Chapell Orchestra163-8You Can Depend On Me377043Rudy Martin Trio163-9Blow Top Blues376539Lionel Hampton And His Septet163-10Joy Juice6150604Gus Chappell And His OrchestraGus Chapell Orchestra163-11A Slick Chick (On The Mellow Side)377041Tab Smith Orchestra163-12Just One More Chance374924Ike Carpenter And His OrchestraIke Carpenter's Orchestra163-13Ain't Nothin' Good33587Dinah Washington163-14Don't Get Around Much Anymore33587Dinah Washington163-15Go Pretty Daddy33587Dinah Washington163-16Feel Like I Wanna Cry33587Dinah Washington163-17Lean Baby33587Dinah Washington163-18Never, Never33587Dinah Washington163-19I Ain't Goin' To Cry Anymore33587Dinah Washington163-20Am I Blue33587Dinah Washington163-21Pennies From Heaven33587Dinah Washington163-22Set Me Free33587Dinah Washington163-23My Man's An Undertaker33587Dinah Washington164-1I Got The Sun In The Morning152707Mel Tormé164-2It Happened In Monterey152707Mel TorméWith377049Sonny Burke And His Orchestra164-3Born To Be Blue152707Mel TorméWith377049Sonny Burke And His Orchestra164-4What Is This Thing Called Love?152707Mel Tormé164-5Guilty152707Mel Tormé164-6Little White Lies152707Mel TorméWith377046Hal Mooney And His Orchestra164-7How High The Moon152707Mel Tormé164-8Blue Moon152707Mel Tormé164-9Stompin' At The Savoy152707Mel Tormé164-10Do Do Do152707Mel TorméWith377049Sonny Burke And His Orchestra164-11Sonny Boy152707Mel TorméWith353290Frank De Vol And His Orchestra164-12Recipe For Romance152707Mel TorméWith377051Pete Rugolo Orchestra164-13It's Too Late Now152707Mel TorméWith353290Frank De Vol And His Orchestra164-14Got The Gate On The Golden Gate152707Mel Tormé&349797The Mel-TonesThe Mel TonesWith377046Hal Mooney And His Orchestra164-15Cross Your Heart152707Mel TorméWith377046Hal Mooney And His Orchestra164-16You're A Heavenly Thing152707Mel Tormé164-17That Old Black Magic152707Mel Tormé164-18Goody Goody152707Mel Tormé164-19Bewitched152707Mel TorméWith377051Pete Rugolo Orchestra164-20It Don't Mean A Thing (If It Ain't Got That Swing)152707Mel TorméWith347273George Cates And His OrchestraGeorge Cates OrchestraSet 42165-1Nice Work If You Can Get It8284Sarah Vaughan165-2Can't Get Out Of This Mood8284Sarah Vaughan165-3Mean To Me8284Sarah Vaughan165-4Come Rain Or Come Shine8284Sarah Vaughan165-5It Might As Well Be Spring8284Sarah Vaughan165-6Ain't Misbehavin'8284Sarah Vaughan165-7The Nearness Of You8284Sarah Vaughan165-8If You Could See Me Now344335Tadd Dameron And His Orchestra165-9Can't Get Out Of This Mood377171George Treadwell And His All Stars165-10Shulie A Bop377174Sarah Vaughan And Her Trio165-11Lover Man377174Sarah Vaughan And Her Trio165-12They Can't Take That Away From Me377174Sarah Vaughan And Her Trio165-13Prelude To A Kiss^377174Sarah Vaughan And Her Trio165-14Polka Dots And Moonbeams377174Sarah Vaughan And Her Trio165-15Body And Soul377174Sarah Vaughan And Her Trio165-16You're Not That Kind8284Sarah Vaughan165-17September Song8284Sarah Vaughan165-18He's My Guy8284Sarah Vaughan165-19April In Paris8284Sarah Vaughan165-20Lullaby Of Birdland8284Sarah Vaughan166-1I'm Just A Lucky So And So31615Ella Fitzgerald166-2Oh! Lady Be Good357910Bob Haggart And His Orchestra166-3How High The Moon31615Ella Fitzgerald166-4Black Coffee377176Gordon Jenkins And His Orchestra166-5In The Evening When The Sun Goes Down368674Sy Oliver And His Orchestra166-6Basin Street368674Sy Oliver And His Orchestra166-7Solid As A Rock368674Sy Oliver And His Orchestra166-8Solid As A Rock [Alternate Take]368674Sy Oliver And His Orchestra166-9Ain't Nobody's Business But My Own320597Louis Jordan And His Tympany Five166-10But Not For Me31615Ella Fitzgerald166-11Smooth Sailing31615Ella Fitzgerald166-12Airmail Special377172Ray Brown's Orchestra166-13Rough Ridin'377172Ray Brown's Orchestra166-14Goody Goody368674Sy Oliver And His Orchestra166-15You'll Have To Swing It Mr. Paganini31615Ella Fitzgerald166-16Preview31615Ella Fitzgerald166-17Early Autumn31615Ella Fitzgerald166-18Melancholy Me368674Sy Oliver And His Orchestra166-19Blue Lou368674Sy Oliver And His Orchestra166-20Lullaby Of Birdland368674Sy Oliver And His Orchestra167-1Now You Tell Me377170Andy Kirk And His Orchestra167-2Detour Ahead37732Joe Williams167-3It's Raining Again37732Joe Williams167-4Every Day37732Joe Williams167-5They Didn't Believe Me37732Joe Williams167-6Blow Mr. Low37732Joe Williams167-7Time For Moving37732Joe Williams167-8When The Sun Goes Down37732Joe Williams167-9Kansas City Blues37732Joe Williams167-10Always On The Blues Side37732Joe Williams167-11Safe, Sane And Single37732Joe Williams167-12All Right, Okay, You Win253011Count Basie Orchestra167-13The Comeback253011Count Basie Orchestra167-14Ev'ry Day (I Fall In Love)253011Count Basie Orchestra167-15Every Day I Have The Blues253011Count Basie Orchestra167-16Teach Me Tonight253011Count Basie Orchestra167-17Roll 'em Pete253011Count Basie Orchestra168-1I Can't Face The Music33589Billie Holiday168-2Lover Come Back To Me33589Billie Holiday168-3Yesterdays33589Billie Holiday168-4How Deep Is The Ocean (How High Is The Sky)33589Billie Holiday168-5I Cried For You33589Billie Holiday168-6What A Little Moonlight Can Do33589Billie Holiday168-7Love Me Or Leave Me33589Billie Holiday168-8Stormy Blues33589Billie Holiday168-9Willow Weep For Me33589Billie Holiday168-10Too Marvellous For Words33589Billie Holiday168-11I Thought About You33589Billie Holiday168-12P.S. I Love You33589Billie Holiday168-13Stormy Weather33589Billie Holiday168-14Love For Sale33589Billie Holiday168-15I Get A Kick Out Of You33589Billie Holiday168-16Do Nothing Till You Hear From Me33589Billie Holiday168-17I Got A Right To Sing The Blues33589Billie Holiday168-18It Had To Be You33589Billie Holiday168-19Please Don't Talk About Me When I'm Gone33589Billie Holiday + +95546Wolfgang Amadeus MozartComplete Works = L'Oeuvre Intégrale = Gesamtwerk95546Wolfgang Amadeus MozartComposed By836010Eberhard HinzEngineer123-1 to 123-9560801Eberhard RichterEngineer127-1 to 128-8620727Horst KunzeEngineer124-1 to 124-9662015Jack RennerEngineer167-1 to 168-28554868Jaroslav StranavskyEngineer48-1 to 52-28915350Josef SladkoEngineer130-1 to 132-9882819Martin WöhrEngineer36-1 to 36-10915351Wolfgang DanzmayrEngineer130-1 to 132-9882792André DefossezEngineer [Recording]58-1 to 59-15882787Peter ArtsEngineer [Recording]82-1 to 86-12748966Robert Woods (2)Executive-Producer167-1 to 168-283837346Barbara Wolf (2)Instrument Builder [1983 Fortepiano]95-1 to 95-85459447Thomas Wolf (9)Instrument Builder [1983 Fortepiano]95-1 to 95-87391475Cornelis BomInstrument Builder [1992 Clavichord]12-1 to 12-147391475Cornelis BomInstrument Builder [1999 Harpsichord]12-1 to 12-14, 61-1 to 61-151730849Chris MaeneInstrument Builder [2000 Fortepiano]74-1 to 74-6, 88-1 to 88-5, 93-1 to 95-8, 125-1 to 126-166443890Gebroeders KobaldInstrument Builder [2001 Fortepiano]61-1 to 61-15, 89-1 to 89-77391475Cornelis BomInstrument Builder [2001 Harpsichord]60-1 to 60-135570233Anton Walter (2)WalterInstrument Builder [After, 1795 Fortepiano]61-1 to 61-15, 89-1 to 89-75570233Anton Walter (2)WalterInstrument Builder [After, Fortepiano]55-1 to 55-96043731Michael MietkeMietkeInstrument Builder [After, Harpsichord]60-1 to 60-131730849Chris MaeneInstrument Builder [Fortepiano]55-1 to 55-97607422Hendrik JacobsLuthier [1680 Viola]74-1 to 74-65216793Giovanni GrancinoLuthier [1695 Violin]73-1 to 74-66437829David TecchlerLuthier [1706 Baroque Violin]60-1 to 61-1516525514Bernardo CalcagnoB. CalcaniusLuthier [1721 Violin]73-1 to 73-716395727Vincenzo PanormoLuthier [1786 Cello]73-1 to 74-6882791Ad VinkProducer25-1 to 25-9899692Adolf HennigProducer116-1 to 116-14835920Andrew CornallProducer141-1 to 143-12639838Bayerischer RundfunkProducer36-1 to 36-10, 37-1 to 37-8431994Bernd RungeProducer123-1 to 123-9629913Dr. Wilfried DaenickeDr. W DaenickeProducerDr. Wilfried Daenicke836012Eberhard GeigerProducer124-1 to 124-9, 127-1 to 129-29, 157-1 to 157-14809356Gian Andrea LodoviciProducer112-1 to 113-14565422Heinz WildhagenProducer35-1 to 35-12624538James MallinsonProducer167-1 to 168-28392833John BoydenProducer47-1 to 47-7890996Jérôme LejeuneProducer72-1 to 72-6, 90-1 to 92-10882757Lodewijk ColletteLodewijk ColetteProducer23-1 to 23-6, 25-1 to 25-9480062Ulrich KrausProducer130-1 to 132-9834007Wolfram GraulProducer37-1 to 37-8882809Nicol MattProducer [Cm Production]30-1 to 32-14, 33-1 to 34-15282636Judith ShermanProducer [Recording Producer], Engineer17-1 to 21-9836587Mike HatchProducer [Recording Producer], Engineer17-1 to 21-9895709Peter SchneyderProducer [Recording]96-1 to 96-9, 117-1 to 117-5882773Pieter van WinkelProducer [Recording]82-1 to 86-12882823Jakob HändelProducer, Edited By30-1 to 32-14, 33-1 to 34-15885930Sebastian SteinProducer, Edited By33-1 to 33-16882790Antony HodgsonProducer, Engineer13-1 to 16-91885419Arts Music RecordingArts Music Recording RotterdamProducer, Engineer1-1 to 12-14, 29-1 to 29-6, 38-8 to 38-15, 40-1 to 45-26, 54-1 to 54-3, 55-1 to 55-9, 57-1 to 57-6, 60-1 to 61-15, 73-1 to 74-6, 87- to 89-7, 93-1 to 93-7, 119-1 to 120-9, 125-1 to 126-16, 133-1 to 140-12, 147-1 to 148-13, 169-1 to 170-25313649Bob AugerProducer, Engineer13-1 to 16-9, 54-4 to 54-61933006Dabringhaus Und GrimmProducer, Engineer75-1 to 76-24717366Jared SacksC. Jared SacksProducer, Engineer27-1 to 28-9882760Mark Brown (4)Producer, Engineer24-1 to 24-8885859Peter Nicholls (3)Producer, Engineer26-1 to 26-15890924Prof. Jakob StämpfliProducer, Engineer56-1 to 56-9882805Reinhard GellerProducer, Engineer97-1 to 111-25, 118-1 to 118-41, 121-1 to 122-11387615Robert von BahrProducer, Engineer69-1 to 71-9890912Simon LawmanProducer, Engineer54-4 to 54-6885858Theo MullerProducer, Engineer26-1 to 26-15171523Tony FaulknerProducer, Engineer24-1 to 24-8898397Adelheid GlattProducer, Recorded By158-1 to 163-3936805Adrian GlattProducer, Recorded By164-1 to 166-11882769Andreas GlattProducer, Recorded By158-1 to 166-11522505Adriaan VerstijnenRecorded By, Edited By149-1 to 150-15836664Tini MathotRecorded By, Edited By149-1 to 150-15885983Henk de GraafSupervised By [Artistic Supervisor]40-1 to 46-7CD-ROMCompilationClassicalEurope2005Including a CD-ROM with Texts and Libretti (Catalog#: 92734) +The CD-Rom contains song texts, biographies and booklet. + +Volume 1: Symphonies +CD 1 - 11: individual catalog numbers 92625/1-11 +CD 1-5: Recorded August-December 2001, Doopsgezinde Kerk Haarlem. +CD 7-11: Recorded Spring 2002, Maria Minor Utrecht, The Netherlands. + +Volume 2: Concertos +CD 12 - 29: individual catalog numbers 92626/1-18 +CD 12: Recorded June 2001, Maria Minor Utrecht/Doopsgezinde Kerk Deventer. +Instruments used- Mozart: Harpsichord built by Cornelis Bom (1999) After Ruckers. / J.C. Bach: Clavichord, built by Cornelis Bom (1992) after Hass. +CD 13-16: Recorded at St. Augustine Church, London 1992. +CD 17: Recorded at Henry Wood Hall, London 1992. +CD 18-19, 21: Recorded at Henry Wood Hall, London 1993. +CD 20: Recorded at Henry Wood Hall, London 1995. +CD 22: Licensed from Hungaroton (1-6); Licensed from Edel Classics GmbH, Germany (7-8). +CD 23, 25: Recorded at Muziekcentrum Frits Philips, Eindhoven, 1994. Licensed from AVRO (1-3). +CD 24: Recorded at Conway Hall, London November 1984. Licensed from Claves Records, Switzerland. +CD 26: Recorded 20-23 November 1996, Beurs van Berlage, Amsterdam. Licensed from Olympia, UK. +CD 27-28: Recorded at Muziekcentrum Enschede, The Netherlands, 1989. (Producer/engineer: C. Jared Sacks/Channel Classics) +CD 29: Recorded at Kerkrade, The Netherlands, 1996. Producer/engineer: Arts Music Recording, Rotterdam (1-3). 4-6: Licensed from OPUS, a product of Music deLux. + +Volume 3: Serenades-Divertimenti-Dances +CD 30 - 52: individual catalog numbers 92627/1-23 +CD 30-31: Recorded July 2002 at St. Maria Church, Schwetzingen. (Producer & editor: HCA, Jakob Händel, Schwetzingen) +CD 32: Track 1-14 recorded July 2002 at St. Maria Church, Schwetzingen. Track 15-20 recorded in Leipzig 1989, licensed from Edel Classics. +CD 33-34: Recorded June 2002 at St. Maria Church, Schwetzingen. (Producer and editor: HCA - Jakob Händel, Sebastian Stein) +CD 35: Recorded 28-30 November 1989 at Kirche Blumenstein, Thun, Switzerland. Licensed from Novalis/AVC Switzerland. +CD 36: Track 1-10 recorded October 1986 at Herkulessaal München; Licensed from Novalis/AVC Switzerland. Track 11-23: Licensed from Hungaroton. +CD 37: Recorded January 1988 at Herkulessaal München. Licensed from Novalis/AVC Switzerland. +CD 38: Track 1-7 licensed from Hungaroton; Track 8-15 recorded 1996 at Kerkrade, The Netherlands. +CD 39: Recorded November 2005, Bratislava. +CD 40-45: Recorded Spring 2001, Hervormde Kerk Rhoon. +CD 46: Recorded 1985 at Forde Abbey, UK. Licensed from ASV Ltd. UK +CD 47-52: Recorded May 2002, Zilina, Slovak Republic. + +Volume 4: Chamber Music-Violin Sonatas-Church Sonatas +CD 53 - 68: individual catalog numbers 92628/1-16 +CD 53: Recorded at Teldec Studio Berlin, 2-6 July 1995. Licensed from Nimbus, UK. +CD 54: KV 452 recorded at Hervormde Kerk Rhoon, 1997; KV 498 recorded in 1984, Licensed from CRD, UK. +CD 55: Fortepiano: after Walter, built by Chris Maene. Recorded at Huis Overcinge, Havelte, The Netherlands, June 1999. +CD 56: Recorded at Blumenstein Church, Switzerland, 1988. Licensed from BIS, Sweden. +CD 57: Recorded at Maria Minor, Utrecht, The Netherlands, 1998. +CD 58-59: Recorded at Mont St. Guibert, Belgium, 1989. +CD 60: Harpsichord: Cornelis Bom, Schoonhoven 2001, after Mietke. Baroque Violin: David Tecchler, Rome, 1706. Recorded 14/15 May 2001, Remonstrantse Doopsgezinde Gemeente, Deventer. +CD 61: Baroque Violin: The Jhr. J.L. van de Bergh-van Heemstede David Tecchler violin (Rome 1706), made available by the foundation "Nationaal Muziekinstrumenten Fonds." Harpsichord: Cornelis Bom, Schoonhoven 1999, after Ruckers 1624. Pianoforte: Gebroeders Kobald, Apeldoorn, 2001, after Walter 1795. Recorded at Remonstrantse Gemeente Deventer, Summer 2001. +CD 62-67: Recorded 1989. Licensed from Fonè, Italy. +CD 68: Licensed from Bayer Records, Germany. + +Volume 5: String Ensembles +CD 69 - 81: individual catalog numbers 92629/1-13 +CD 69-71: Recorded 11/13 December 1989, Oud Katholieke Kerk, Delft, The Netherlands. Licensed from BIS, Sweden. +CD 72: Recorded January 1991, Filosofisch Theologisch College van de Societeit van Jezus V.Z.W. Heverlee, Belgium. Licensed from Ricercar, Belgium. +CD 73: Violin (Rémy Baudet): Giovanni Grancino, Milano 1695; Violin (Staas Swiersta): B. Calcanius, Genua, 1721; Cello (Rainer Zipperling): Vincenzo Panormo, 1786. Recorded December 2001, Maria Minor, Utrecht. +CD 74: Violin: Giovanni Grancino, Milano 1695; Viola: Hendrik Jacobs, Amsterdam 1680; Cello: Vincenzo Panormo, 1786. Recorded November 2001, February 2002, Maria Minor, Utrecht. +CD 75: Recorded at Orangerie Darmstadt, Juli 1989. Licensed from Claves, Switzerland. +CD 76: Recorded at Zentralsaal Bamberg, 8-12 April 1991. Licensed from Claves, Switzerland. +CD 77-81: Recorded at Concert Hall Nimbus Foundation, Monmouth, UK, 1994. Licensed from Nimbus UK. + +Volume 6: Keyboard Works +CD 82 - 96: individual catalog numbers 92630/1-15 +CD 82-86: Recorded in Summer 1998 at Maria Minor, Utrecht, The Netherlands. +CD 87: Instrument: fortepiano after Walter ca 1795, by Chris Maene, Ruiselede, 2000. Recorded 27-29 November 2001, Doopsgezinde Remonstrantse Kerk, Deventer; September 1997 Hervormde Kerk Rhoon (track 5). +CD 88: Instrument: fortepiano after Walter ca 1795, by Chris Maene, Ruiselede, 2000. Recorded December 2001-January 2002, Remonstrantse Doopsgezinde Kerk, Deventer. +CD 89: Instrument: fortepiano after Walter 1795, by Gebroeders Kobald, Apeldoorn, 2001. Recorded 31 August 2001, Remonstrantse Doopsgezinde Kerk Deventer (KV 24, 25, 179, 460) and +18 October 2001, Maria Minor, Utrecht (KV 180, 256, 138a). +CD 90-92: Recorded May, June, July 1991. Licensed from Ricercar, Belgium. +CD 93: Fortepiano after Walter ca 1795, by Chris Maene, Ruiselede, 2000. Recorded 12-14 December 2001, Maria Minor, Utrecht (KV 381) and 11-13 July 2001, Remonstrantse Doopsgezinde Gemeente, Deventer (KV 401, 497). +CD 94: Fortepiano after Walter ca 1795, by Chris Maene, Ruiselede, 2000. Recorded 11-13 July 2001, Remonstrantse Doopsgezinde Gemeente Deventer (KV 19d, 608, 501) and 12-14 December 2001, Maria Minor, Utrecht (KV 521). +CD 95: Fortepiano after Walter ca 1795, by Chris Maene, Ruiselede, 2000. Fortepiano after Johann Schanz, by Thomas & Barbara Wolf, 1983. Recorded 11-13 July 2001, Remonstrantse Doopsgezinde Gemeente Deventer (KV 358) and 12-14 December 2001, Maria Minor, Utrecht (KV 594, 426, 448). +CD 96: Recorded September 1989, Dom zu Brixen (Tirol, Austria). Licensed from AVC, Switzerland. + +Volume 7: Sacred Works +CD 97 - 117: individual catalog numbers 92631/1-21 +CD 97-103: Recorded July 2001, Alte Kirche, Fautenbach, South Germany. +CD 104: Recorded 26-28 November 2001, Kloster Bronnbach, Wertheim, Deutschland. +CD 105: Recorded 11-13 February 2002 (KV 341), 9-11 November 2001 (KV 337), 23-26 October 2001 (KV 317), Kloster Bronnbach, Wertheim, Deutschland. +CD 106: Recorded 4-6 February 2002 (KV 275) Mannheim; 9-11 November 2001 (KV 262) Kloster Bronnbach, Wertheim, Deutschland. +CD 107: Recorded 11-13 February 2002 (KV 259, 258) Mannheim; 9-11 November 2001 (KV 257) Kloster Bronnbach, Wertheim, Deutschland. +CD 108: Recorded 11-13 February 2002 (KV 220), 4-6 February (KV 194, 192), Mannheim. +CD 109: Recorded 26-28 November 2001 (KV 167) Kloster Bronnbach Wertheim; 11-13 February 2002 (KV 140), Mannheim. +CD 110: Recorded 23-26 October 2001, Kloster Bronnbach Wertheim (KV 139); 4-6 February 2002, Mannheim, Deutschland. +CD 111: Recorded 4-6 February 2002, Mannheim (KV 49, 33); 23-26 October 2001, Kloster Bronnbach, Wertheim, Deutschland (KV 66). +CD 112-113: Recorded 15-21 June 1991, Palazzo Giusti, Padova. ℗1991, SLG, LLC 429 Santa Monica Blvd, Santa Monica, CA 90405. +CD 114-115: Recorded in 1980, Lindlar. Licensed from Koch International GmbH. +CD 116: Recorded in 1991, Bratislava. Licensed from Novalis/AVC Switzerland. +CD 117: Track 1-5 recorded in 1990, Bratislava. Licensed from Novalis/AVC Switzerland Track 6-15 licensed from Bayer Records. + +Volume 8: Concert Arias-Songs-Canons +CD 118 - 126: individual catalog numbers 92632/1-9 +CD 118: Recorded November 2002, Alte Kirche Fautenbach, Germany. +CD 119-120: Recorded August 2002, Nieuwe Kerk The Hague, The Netherlands. +CD 121-122: Recorded June 2002, Theater Bayreuth, Germany. +CD 123: Recorded March 1993, Jesus Christuskirche Berlin. Licensed from Edel Classics GmbH, Germany. +CD 124: Recorded April 1970, Lukaskirche Dresden. Licensed from Edel Classics GmbH, Germany. +CD 125: Fortepiano after Walter ca 1795, door Chris Maene, Ruiselede, 2000. Recorded: 28-29 November 2001, Remonstrantse Doopsgezinde Kerk, Deventer. +CD 126: Fortepiano after Walter ca 1795, by Chris Maene, Ruiselede, 2000. Recorded 13-14 May 2002, Remonstrantse Doopsgezinde Kerk, Deventer. + +Volume 9: Operas +CD 127 - 170: individual catalog numbers 92633/1-44 +CD 127-128: Recorded Leipzig 1990. Licensed from Edel UK. +CD 129: Recorded 1989/1990, Paul Gerhardtkirche, Leipzig. Licensed from Edel Classics GmbH, Germany. +CD 130-132: Recorded 16-20 January 1983, Mozarteum Salzburg. Licensed from Orfeo International Music GmbH, Germany. +CD 133-135, 139-140: Recorded: August 2001, Maria Minor, Utrecht. +CD 136-138: Recorded May 2002, Maria Minor, Utrecht. +CD 141-143: Recorded 19/20-1-1985, Théâtre Royal de la Monnaie, Brussels, Belgium. Licensed from La Monnaie. +CD 144-146: Live recording, June 1989, Théâtre Royal de la Monnaie, Brussels, Belgium. A production of De Munt/La Monnaie (Dir.: Gérard Mortier). Licensed from Ricercar, Belgium. +CD 147-148: Recorded September 2001, Maria Minor, Utrecht. +CD 149-150: Recorded 25 February 2001, Muziekcentrum Vredenburg Utrecht, The Netherlands. A radio production of TROS. Opname in licentie van het Muziekcentrum van de Omroep. +CD 151: Track 1-7: Licensed from VOX, USA; Track 8-15: Recorded May 2002, Zilina Slovak Republic. +CD 152-154: ℗ 1972 EMI Electrola GmbH, Köln, Germany. The copyright in these sound recordings is owned by EMI Records Ltd. +CD 155-156: Recorded 1997 Brucknersaal Linz, Austria. Licensed from Oehms Classics. +CD 157: Recorded 1968 Christuskirche Berlin. Licensed from Edel Classics GmbH, Germany. +CD 158-160: Recorded live at the Palacio de Congresos y Auditios, La Coruna (Spain), June 5th, 1998. Licensed from Accent, Belgium. +CD 161-163: Recorded October 1995, Auditorio de Galicia, Santiago de Compostela, Spain. Licensed from Accent, Belgium. +CD 164-166: Recorded live at the concert hall of the Franz Liszt Conservatory Budapest, Hungary, 7 October 1992. Licensed from Accent, Belgium. +CD 167-168: Recorded at Usher Hall, Edinburgh, Scotland, July 13-22 1991. Manufactured and sold under license from Telarc International Corporation. +CD 169-170: Recorded August 2002, Maria Minor Church Utrecht, The Netherlands.Needs Vote1168624Volume 1: SymphoniesSymphony No. 1 In E-Flat Major, K. 16837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra1-1I. Molto Allegro6:001-2II. Andante5:031-3III. Presto1:34Symphony No. 4 In D Major, K. 19837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra1-4I. Allegro2:281-5II. Andante3:461-6III. Presto3:03Symphony In F Major, K. 19a837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra1-7I. Allegro Assai5:121-8II. Andante4:421-9III. Presto1:25Symphony No. 5 In B-Flat Major, K. 22837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra1-10I. Allegro2:511-11II. Andante2:061-12III. Molto Allegro1:21Symphony No. 6 In F Major, K. 43837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra1-13I. Allegro5:361-14II. Andante5:131-15III. Menuetto - Trio1:571-16IV. Molto Allegro3:44Symphony No. 45 In D Major, K. 45837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra1-17I. Molto Allegro2:431-18II. Andante1:581-19III. Menuetto - Trio3:431-20IV. Molto Allegro2:44Symphony No. 8 In D Major, K. 48837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra2-1I. Allegro4:312-2II. Andante3:372-3III. Menuetto - Trio3:522-4IV. Molto Allegro3:23Symphony No. 9 In C Major, K. 73837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra2-5I. Allegro3:162-6II. Andante3:422-7III. Menuetto - Trio3:032-8IV. Molto Allegro2:09Symphony No. 10 In G Major, K. 74837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra2-9I. Allegro - Andante5:302-10II. Allegro2:13Symphony No. 12 In G Major, K. 110837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra2-11I. Allegro6:242-12II. Andante4:022-13III. Menuetto - Trio4:012-14IV. Allegro1:51Symphony No. 13 In F Major, K. 112837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra2-15I. Allegro5:222-16II. Andante3:092-17III. Menuetto - Trio2:122-18IV. Molto Allegro2:22Symphony No. 14 In A Major, K. 114837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra3-1I. Allegro Moderato7:493-2II. Andante4:233-3III. Menuetto - Trio3:323-4IV. Molto Allegro4:42Symphony No. 15 In G Major, K. 124837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra3-5I. Allegro5:303-6II. Andante4:353-7III. Menuetto - Trio2:133-8IV. Presto2:04Symphony No. 16 In C Major, K. 128837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra3-9I. Allegro Maestoso4:443-10II. Andante Grazioso5:253-11III. Allegro3:57Symphony No. 17 In G Major, K. 129837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra3-12I. Allegro6:233-13II. Andante5:293-14III. Allegro2:53Symphony No. 20 In D Major, K. 133837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra4-1I. Allegro7:184-2II. Andante5:494-3III. Menuetto - Trio4:044-4IV. Allegro5:42Symphony No. 21 In A Major, K. 134837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra4-5I. Allegro7:164-6II. Andante5:144-7III. Menuetto - Trio3:164-8IV. Allegro5:00Symphony No. 22 In C Major, K. 162837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra4-9I. Allegro Assai3:404-10II. Andantino Grazioso2:564-11III. Presto Assai1:47Symphony No. 23 In D Major, K. 181837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra4-12I. Allegro Spiritoso5:264-13II. Andantino Grazioso1:584-14III. Presto Assai2:11Symphony No. 27 In G Major, K. 199837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra5-1I. Allegro6:405-2II. Andantino Grazioso4:505-3III. Presto6:18Symphony No. 28 In C Major, K. 200837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra5-4I. Allegro Spiritoso7:235-5II. Andante7:445-6III. Menuetto - Trio4:185-7IV. Presto5:24Symphony No. 30 In D Major, K. 202837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra5-8I. Molto Allegro6:045-9II. Andantino Con Moto5:115-10III. Menuetto & Trio4:165-11IV. Presto4:54Symphony In D Major, K. 111a837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra6-1I. Allegro Assai3:336-2II. Andante Grazioso1:186-3III. Presto1:16Symphony No. 18 In F Major, K. 130837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra6-4I. Allegro7:446-5II. Andantino Grazioso6:536-6III. Menuetto2:276-7IV. Molto Allegro7:34Symphony No. 19 In E-Flat Major, K. 132837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra6-8I. Allegro4:216-9II. Andante6:526-10III. Menuetto4:056-11IV. Allegro3:59Symphony No. 25 In G Minor, K. 183837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra6-12I. Allegro Con Brio11:106-13II. Andante6:086-14III. Menuetto3:226-15IV. Allegro7:18Symphony No. 24 In B-Flat Major, K. 182837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra7-1I. Allegro Spiritoso4:187-2II. Andantino Grazioso2:407-3III. Allegro3:04Symphony No. 26 In E-Flat Major, K. 184837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra7-4I. Molto Presto3:237-5II. Andante3:067-6III. Allegro2:30Symphony In D Major, K. 196837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra7-7I. Allegro Molto2:447-8II. Andantino Grazioso2:417-9III. Allegro2:33Symphony No. 29 In A Major, K. 201837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra7-10I. Allegro Moderato10:247-11II. Andante10:197-12III. Menuetto3:097-13IV. Allegro Con Spirito7:14Symphony No. 32 In G Major, K. 318837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra7-14I. Allegro Spiritoso3:177-15II. Andante2:417-16III. Primo Tempo2:00Symphony No. 33 In B-Flat Major, K. 319837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra8-1I. Allegro Assai7:238-2II. Andante Moderato4:378-3III. Menuetto2:398-4IV. Allegro Assai9:18Symphony No. 34 In C Major, K. 338837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra8-5I. Allegro Vivace7:398-6Ii Andante Di Molto Più Tosto Allegretto6:488-7III. Allegro Vivace6:29Symphony No. 35 In D Major, K. 385 “Haffner”837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra8-8I. Allegro Con Spirito6:198-9II. Andante5:558-10III. Menuetto3:048-11IV. Presto4:16Symphony No. 31 In D Major, K. 297 “Paris”837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra9-1I. Allegro Assai8:329-2II. Andante5:419-3III. Allegro4:01Symphony No. 36 In C Major, K. 425 “Linz”837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra9-4I. Adagio - Allegro Con Spirito10:489-5II. Andante9:239-6III. Menuetto3:109-7IV. Presto7:49Symphony No. 40 In G Minor, K. 550 (first Version Without Clarinets)837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra9-8I. Molto Allegro 7:389-9II. Andante 10:019-10III. Menuetto 3:449-11IV. Allegro Assai 6:50Symphony No. 38 In D Major, K. 504 “Prague”837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra10-1I. Adagio - Allegro13:4910-2II. Andante11:3610-3III. Presto8:01Symphony No. 39 In E-Flat Major, K. 543837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra10-4I. Adagio - Allegro11:2310-5II. Andante Con Moto8:0110-6III. Menuetto3:5410-7IV. Allegro8:32Symphony No. 40 In G Minor, K. 550837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra11-1I. Molto Allegro7:3011-2II. Andante9:5311-3III. Menuetto3:4911-4IV. Allegro Assai6:54Symphony No. 41 In C Major, K. 551 “Jupiter”837037Jaap ter LindenConductor870984Mozart Akademie AmsterdamOrchestra11-5I. Allegro Vivace11:5111-6II. Andante Cantabile10:1411-7III. Menuetto4:2411-8IV. Molto Allegro9:02Volume 2: ConcertosConcerto No. 1 In D Major, K. 107 (Concerto For Harpsichord, 2 Violins & Basso Continuo, After Johann Christian Bach)884528Margaret UrquhartDouble Bass1205712Musica AmphionEnsemble884530Pieter-Jan BelderHarpsichord95546Wolfgang Amadeus MozartOrchestrated By884529Marten BoekenViolin [Baroque]884531Rémy BaudetViolin [Baroque]12-1I. Allegro5:2412-2II. Andante4:0212-3III. Tempo Di Menuetto 3:5995546Wolfgang Amadeus MozartW.A. MozartCadenzaConcerto No. 2 In G Major (Concerto For Harpsichord, 2 Violins & Basso Continuo, After Johann Christian Bach)884528Margaret UrquhartDouble Bass1205712Musica AmphionEnsemble884530Pieter-Jan BelderHarpsichord95546Wolfgang Amadeus MozartOrchestrated By884529Marten BoekenViolin [Baroque]884531Rémy BaudetViolin [Baroque]12-4I. Allegro4:1812-5II. Tema Con 4 Variazioni. Allegretto5:27884530Pieter-Jan BelderCadenzaConcerto No. 3 In E-Flat Major (Concerto For Harpsichord, 2 Violins & Basso Continuo, After Johann Christian Bach)884528Margaret UrquhartDouble Bass1205712Musica AmphionEnsemble884530Pieter-Jan BelderHarpsichord95546Wolfgang Amadeus MozartOrchestrated By884529Marten BoekenViolin [Baroque]884531Rémy BaudetViolin [Baroque]12-6I. Allegro5:3512-7II. Allegretto3:05884530Pieter-Jan BelderCadenzaSonata No. 2 In D Major Pour Le Clavecin Ou Piano Forte, Op. 5842307Johann Christian BachComposed By884530Pieter-Jan BelderHarpsichord12-8I. Allegro Di Molto4:3412-9II. Andante Di Molto3:1612-10III. Minuetto3:50Sonata No. 3 In G Major Pour Le Clavecin Ou Piano Forte, Op. 5842307Johann Christian BachComposed By884530Pieter-Jan BelderHarpsichord12-11I. Allegro5:1012-12II. Allegretto5:27Sonata No. 4 In E Major Pour Le Clavecin Ou Piano Forte, Op. 5842307Johann Christian BachComposed By884530Pieter-Jan BelderHarpsichord12-13I. Allegro4:5312-14II. Rondeau: Allegretto3:21Piano Concerto No. 24 in C Minor, K. 491882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano13-1I. Allegro13:2813-2II. Larghetto7:3613-3III. Allegretto8:20Piano Concerto No. 3 in D Major, K. 40882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano13-4I. Allegro Maestoso4:5813-5II. Andante4:3713-6III. Presto3:33Piano Concerto No. 13 in C Major, K. 415882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano13-7I. Allegro10:2613-8II. Andante7:5213-9III. Allegro7:48Piano Concerto No. 15 in B-Flat Major, K. 450882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano14-1I. Allegro11:0014-2II. Adagio5:1714-3III. Allegro Assai7:42Piano Concerto No. 11 in F Major, K. 413882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano14-4I. Allegro9:1014-5II. Larghetto7:3414-6III. Tempo Di Menuetto5:10Piano Concerto No. 23 in A Major, K. 488882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano14-7I. Allegro10:4414-8II. Andante6:1314-9III. Allegro7:58Piano Concerto No. 21 in C Major, K. 467 “Elvira Madigan”882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano15-1I. Allegro14:3315-2II. Andante6:2615-3III. Allegro Vivace Assai7:22Piano Concerto No. 1 in F Major, K. 37882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano15-4I. Allegro5:1515-5II. Andante5:3015-6III. Allegro5:44Piano Concerto No. 25 in C Major, K. 503882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano15-7I. Allegro Maestoso17:2115-8II. Andante7:2015-9III. Allegretto9:58Piano Concerto No. 9 in E-Flat Major, K. 271 “Jeunehomme”882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano16-1I. Allegro10:1916-2II. Andantino10:1016-3III. Rondeau. Presto9:15Piano Concerto No. 2 in B-Flat Major, K. 39882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano16-4I. Allegro Spiritoso5:2516-5II. Andante Staccato3:4816-6III. Molto Allegro3:35Piano Concerto No. 12 in A Major, K. 414882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano16-7I. Allegro9:4916-8II. Andante7:2316-9III. Rondeau. Allegretto6:51Piano Concerto No. 17 in G Major, K. 453882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano17-1I. Allegro12:2217-2II. Andante9:5017-3III. Allegretto - Presto8:00Piano Concerto No. 5 in D Major, K. 175882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano17-4I. Allegro8:0717-5II. Andante Ma Un Poco Adagio7:2217-6III. Allegro5:07Piano Concerto No. 6 in B-Flat Major, K. 238882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano17-7I. Allegro Aperto7:2217-8II. Andante Un Poco Adagio5:3217-9III. Rondeau. Allegro7:26Piano Concerto No. 16 in D Major, K. 451882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano18-1I. Allegro Assai10:5018-2II. Andante5:4518-3III. Rondo. Allegro Di Molto7:06Piano Concerto No. 8 in C Major, K. 246882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano18-4I. Allegro Aperto7:2518-5II. Andante7:1118-6III. Tempo Di Menuetto7:03Piano Concerto No. 19 in F Major, K. 459882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano18-7I. Allegro11:4018-8II. Allegretto7:1918-9III. Allegro Assai7:47Piano Concerto No. 20 in D Minor, K. 466882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano19-1I. Allegro13:5019-2II. Romanze8:2219-3III. Allegro Assai7:42Piano Concerto No. 22 in E-Flat Major, K. 482882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano19-4I. Allegro13:5419-5II. Andante8:4819-6III. Allegro12:16Piano Concerto No. 18 in B-Flat Major, K. 456882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano20-1I. Allegro Vivace12:2720-2II. Andante Un Poco Sostenuto9:3420-3III. Allegro Vivace7:58Piano Concerto No. 26 in D Major, K. 537 “Coronation”882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano20-4I. Allegro14:2320-5II. Larghetto6:0320-6III. Allegretto10:52Piano Concerto No. 14 in E-Flat Major, K. 449882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano21-1I. Allegro Vivace8:4721-2II. Andantino6:1921-3III. Allegro Ma Non Troppo6:08Piano Concerto No. 4 in G Major, K. 41882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano21-4I. Allegro4:5821-5II. Andante3:4921-6III. Molto Allegro3:40Piano Concerto No. 27 in B-Flat Major, K. 595882789Paul Freeman (3)Conductor454293Philharmonia OrchestraOrchestra882759Derek HanPiano21-7I. Allegro14:0621-8II. Larghetto6:5121-9III. Rondo. Allegro9:14Concerto In E-Flat Major For 2 Pianos And Orchestra, K. 365835090János FerencsikConductor885767Hungarian State OrchestraOrchestra1021032Dezső RánkiDezsö RankiPiano959744Zoltán KocsisPiano22-1I. Allegro9:4322-2II. Andante8:1122-3III. Rondo. Allegro6:48Concerto In F Major For 3 Pianos And Orchestra, K. 242835090János FerencsikConductor885767Hungarian State OrchestraOrchestra885766András SchiffPiano1021032Dezső RánkiDezsö RankiPiano959744Zoltán KocsisPiano22-4I. Allegro7:4722-5II. Adagio8:4522-6III. Rondo. Tempo Di Minuetto5:3622-7Rondo In D Major For Piano And Orchestra, K. 3828:39522209Kurt MasurConductor854918Dresdner PhilharmonieOrchestra885768Annerose SchmidtPiano22-8Rondo In A Major For Piano And Orchestra, K. 3867:54522209Kurt MasurConductor854918Dresdner PhilharmonieOrchestra885768Annerose SchmidtPianoClarinet Concerto in A Major, K. 622882761Harmen de BoerClarinet882806Lev MarkizConductor882824Nieuw Sinfonietta AmsterdamOrchestra23-1I. Allegro12:0523-2II. Adagio6:2423-3III. Rondo. Allegro8:49Concerto in C Major for Flute and Harp, K. 299882811Bernard LabadieConductor471201Marc GrauwelsFlute882822Giselle HerbertHarp882764Les Violons Du RoyOrchestra23-4I. Allegro9:3423-5II. Andantino8:0623-6III. Rondeau. Allegro9:27Flute Concerto No. 1 in G Major, K. 313841441Raymond LeppardConductor882825Peter-Lukas GrafFlute415725English Chamber OrchestraOrchestra24-1I. Allegro Maestoso9:4824-2II. Adagio Non Troppo9:4524-3III. Rondo. Tempo Di Menuetto7:4124-4Andante for Flute and Orchestra in C Major, K. 3156:18841441Raymond LeppardConductor882825Peter-Lukas GrafFlute415725English Chamber OrchestraOrchestraFlute Concerto No. 2 in D Major, K. 314841441Raymond LeppardConductor882825Peter-Lukas GrafFlute415725English Chamber OrchestraOrchestra24-5I. Allegro Aperto7:2424-6II. Andante Ma Non Troppo7:0524-7III. Allegro6:0324-8Rondo, Allegretto Grazioso, For Flute & Orchestra In D Major KV 3736:25841441Raymond LeppardConductor882825Peter-Lukas GrafFlute415725English Chamber OrchestraOrchestraOboe Concerto in C Major, K. 314882806Lev MarkizConductor262712Bart SchneemannOboe882824Nieuw Sinfonietta AmsterdamOrchestra25-1I. Allegro Aperto7:2525-2II. Andante Non Troppo7:0425-3III. Rondo. Allegretto6:09Bassoon Concerto in B-Flat Major, K. 191882818Ronald KartenBassoon882806Lev MarkizConductor882824Nieuw Sinfonietta AmsterdamOrchestra25-4I. Allegro6:2625-5II. Andante Ma AdagioNieuw Sinfonietta Amsterdam6:2025-6III. Rondo. Tempo Di Menuetto3:56Sinfonia Concertante In E-Flat Major For Oboe, Clarinet, Horn, Bassoon & Orchestra, K. 297b882818Ronald KartenBassoon882761Harmen de BoerClarinet882806Lev MarkizConductor882754Jacob SlagterFrench Horn262712Bart SchneemannOboe882824Nieuw Sinfonietta AmsterdamOrchestra25-7I. Allegro13:2225-8II. Adagio7:5525-9III. Andantino Con Variazioni8:07Horn Concerto No. 2 in E-Flat Major, K. 417836049Roy GoodmanConductor882771Herman JeurissenFrench Horn871496Netherlands Chamber OrchestraOrchestra26-1I. Allegro6:2326-2II. Andante3:1626-3III. Rondo. Allegro3:23Horn Concerto No. 3 in E-Flat Major, K. 447836049Roy GoodmanConductor882771Herman JeurissenFrench Horn871496Netherlands Chamber OrchestraOrchestra26-4I. Allegro6:3526-5II. Romance. Larghetto3:5326-6III. Allegro3:4026-7Concerto Movement in E Major, K. 494a. - Allegro 8:53836049Roy GoodmanConductor882771Herman JeurissenFrench Horn, Orchestrated By [Completed By]871496Netherlands Chamber OrchestraOrchestraHorn Concerto No. 1 in D Major, K. 412836049Roy GoodmanConductor882771Herman JeurissenFrench Horn871496Netherlands Chamber OrchestraOrchestra26-8I. Allegro4:4426-9II. Rondo. Allegro 3:55882771Herman JeurissenInstrumentation ByHorn Concerto in E-Flat Major, K. 370b836049Roy GoodmanConductor882771Herman JeurissenFrench Horn871496Netherlands Chamber OrchestraOrchestra26-10I. Allegro 7:17882771Herman JeurissenOrchestrated By [Reconstruction]26-11II. Rondeau. Allegro5:50882771Herman JeurissenInstrumentation ByHorn Concerto No. 4 in E-Flat Major, K. 495836049Roy GoodmanConductor882771Herman JeurissenFrench Horn871496Netherlands Chamber OrchestraOrchestra26-12I. Allegro7:3726-13II. Andante4:2226-14III. Allegro3:53Horn Concerto No. 1 in D Major, K. 41226-15II. Rondo. Allegro (with Mozart’s Original Text)3:55882829Giorgio MereuVoice [Voice Of Mozart]882771Herman JeurissenFrench HornViolin Concerto No. 1 in B-Flat Major, K. 207882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin27-1I. Allegro Moderato7:5527-2II. Adagio8:5727-3III. Presto5:31Violin Concerto No. 2 in D Major, K. 211882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin27-4I. Allegro Moderato8:0527-5II. Andante7:2427-6III. Rondeau. Allegro4:17Violin Concerto No. 3 in G Major, K. 216882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin27-7I. Allegro9:4027-8II. Adagio7:3827-9III. Rondeau6:21Violin Concerto No. 4 in D Major, K. 218882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin28-1I. Allegro Moderato8:4228-2II. Andante Cantabile7:0628-3III. Rondeau. Andante Grazioso - Allegro Ma Non Troppo6:54Violin Concerto No. 5 in A Major, K. 219882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin28-4I. Allegro Aperto9:2828-5II. Adagio10:0328-6III. Rondeau. Tempo Di Minuetto8:3328-7Adagio in E Major, K. 2618:16882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin28-8Rondo in B-Flat Major, K. 269. Allegro6:28882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolin28-9Rondo in C Major, K. 3735:49882820Eduardo MarturetConductor893904Concertgebouw Chamber OrchestraOrchestra870854Emmy VerheyViolinSinfonia Concertante In E-Flat Major, K. 364885969Amati Chamber OrchestraOrchestra882815Yuri GandelsmanViola882785Gil SharonViolin, Conductor29-1I. Allegro Maestoso12:3929-2II. Andante9:5429-3III. Presto6:02Concertone For 2 Violins In C Major, K. 190842825Bohdan WarchalConductor846158Slovak Chamber OrchestraOrchestra1604866Anna HölblingováAnna HöblingViolin1502779Quido HölblingGuido HöblingViolin29-4I. Allegro Spiritoso8:1129-5II. Andantino Grazioso9:5529-6III. Tempo Di Menuetto7:11Volume 3: Serenades-Divertimenti-DancesDivertimento in D Major, K. 136882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882779Olga NodelSoloist, Violin30-1I. Allegro5:3430-2II. Andante5:0730-3III. Presto3:40Divertimento in B-Flat Major, K. 137882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882779Olga NodelSoloist, Violin30-4I. Andante3:3630-5II. Allegro Di Molto3:1330-6III. Allegro Assai2:49Divertimento in F Major, K. 138882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882779Olga NodelSoloist, Violin30-7I. Allegro3:2630-8II. Andante4:5930-9III. Presto1:55Divertimento in D Major, K. 334882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882779Olga NodelSoloist, Violin30-10I. Allegro6:3830-11II. Andante8:1130-12III. Menuetto3:2130-13IV. Adagio4:3830-14V. Menuetto6:3930-15VI. Rondo. Allegro5:58Notturno in D Major, K. 286882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra31-1I. Andante5:1831-2II. Allegretto Grazioso2:2031-3III. Menuetto5:08Ein Musikalischer Spaß In F Major, K. 522 “Dorfmusikanten-sextett”882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra31-4I. Allegro3:4631-5II. Menuetto5:0131-6III. Adagio Cantabile6:0631-7IV. Presto3:56Serenade In G Major, K. 525 “Eine, Kleine Nachtmusik”882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra31-8I. Allegro5:1631-9II. Romance. Andante4:3631-10III. Menuetto1:4131-11IV. Rondo. Allegro3:56Cassation In G Major, K. 63 (Final-Musik)882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra32-1I. Marche2:5932-2II. Allegro3:2532-3III. Andante3:3332-4IV. Menuett3:0232-5V. Adagio5:0932-6VI. Menuett2:5132-7VII. Finale. Allegro Assai1:43Cassation in B-Flat Major, K. 99882828Florian HeyerickConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra32-8I. Marcia2:3732-9II. Allegro Moderato3:1332-10III. Andante3:2132-11IV. Menuett2:0632-12V. Andante2:1832-13VI. Menuett1:5632-14VII. Allegro5:51Divertimento in D Major, K. 251996805Burkhard GlaetznerConductor849128Neues Bachisches Collegium Musicum LeipzigNeues Bachisches Collegium MusicumOrchestra32-15I. Molto Allegro6:1332-16II. Menuetto3:4732-17III. Andantino3:0232-18IV. Menuetto. Tema Con Variazioni4:1932-19V. Rondeau. Allegro Assai5:3232-20VI. Marcia Alla Francese1:58Divertimento in D Major, K. 2051751857Jiří MalátConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra33-1I. Largo4:4833-2II. Menuetto2:4033-3III. Menuetto3:4333-4IV. Adagio2:3933-5V. Finale. Presto3:33Divertimento in E-Flat Major, K. 1131751857Jiří MalátConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra33-6I. Allegro4:1333-7II. Andante3:4633-8III. Menuetto1:5233-9IV. Allegro3:20Divertimento in D Major, K. 1311751857Jiří MalátConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra33-10I. Allegro5:1533-11II. Adagio4:4633-12III. Menuetto5:2933-13IV. Allegretto2:5333-14V. Menuetto3:4733-15VI. Adagio1:0233-16VII. Allegro Assai5:19Serenade in D Major, K. 1001751857Jiří MalátJirí MalátConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882779Olga NodelSoloist, Violin34-1I. Allegro4:1234-2II. Andante4:3634-3III. Menuetto2:3634-4IV. Allegro3:0134-5V. Menuetto2:2234-6VI. Andante2:5634-7VII. Menuetto2:0434-8VIII. Allegro2:34Serenade in D Major, K. 2041751857Jiří MalátJirí MalátConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882779Olga NodelSoloist, Violin34-9I. Allegro Assai4:2134-10II. Andante Moderato6:0034-11III. Allegro5:3534-12IV. Menuetto - Trio2:5934-13V. Andante3:2334-14VI. Menuetto - Trio3:3434-15VII. Andantino Grazioso - Allegro4:42Divertimento in F Major, K. 247 “Lodron Night Music No. 1”1023648Thomas FüriConductor858575Camerata BernOrchestra35-1I. Allegro6:0635-2II. Andante Grazioso4:3035-3III. Menuetto3:5835-4IV. Adagio5:0635-5V. Menuetto3:3735-6VI. Andante - Allegro Assai5:53Divertimento in B-Flat Major, K. 287 “Lodron Night Music No. 2”1023648Thomas FüriConductor858575Camerata BernOrchestra35-7I. Allegro6:4935-8II. Andante Grazioso Von Variazioni7:5735-9III. Menuetto3:4335-10IV. Adagio6:1435-11V. Menuetto3:4635-12VI. Andante - Allegro Molto6:55Serenata Notturna In D Major, K. 239835518Sir Colin DavisConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra36-1I. Marcia. Maestoso4:4236-2II. Menuetto3:5036-3III. Rondo. Allegro4:44Serenade in D Major, K. 320 “Posthorn”835518Sir Colin DavisConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra36-4I. Adagio Maestoso - Allegro Con Spirito7:5736-5II. Menuetto. Allegretto - Trio4:1036-6III. Concertante. Andante Grazioso8:0036-7IV. Rondeau. Allegro Ma Non Troppo6:1436-8V. Andantino6:0336-9VI. Menuetto - Trios Nos. 1 & 25:0236-10VII. Finale. Presto4:10Gallimathias Musicum, K. 32848161János RollaConductor848163Liszt Ferenc Chamber OrchestraFranz Liszt Chamber OrchestraOrchestra36-11I. Molto Allegro0:2536-12II. Andante1:3236-13IV. Allegro Finale0:3536-14V. Pastorella1:1636-15VI. Allegro - VII. Allegretto2:2236-16VIII. Allegro0:3736-17IX. Molto Adagio0:3136-18X. Allegro0:4636-19XI. Largo - XII. Molto Allegro1:1036-20XIII. Andante - XIV. Allegro2:1936-21XV. Menuett0:5136-22XVI. Adagio - XVII. Presto1:5236-23XVIII. Fuga3:10Serenade in D Major, K. 250 “Haffner”835518Sir Colin DavisConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra37-1I. Allegro Maestoso - Allegro Molto7:0237-2II. Andante10:1837-3III. Menuetto3:4737-4IV. Rondo. Allegro9:0237-5V. Menuetto. Galanta5:3937-6VI. Andante7:4837-7VII. Menuetto5:0737-8VIII. Adagio - Allegro Assai6:09Serenade in D Major, K. 185848161János RollaConductor848163Liszt Ferenc Chamber OrchestraFranz Liszt Chamber OrchestraOrchestra38-1I. Allegro Assai7:1738-2II. Andante7:1738-3III. Allegro3:1838-4IV. Menuetto3:2238-5V. Andante Grazioso6:2638-6VI. Menuetto5:3638-7VII. Adagio - Allegro Assai6:45Serenade in D Major, K. 203882785Gil SharonConductor885969Amati Chamber OrchestraOrchestra38-8I. Andante Maestoso - Allegro Assai4:3038-9II. Andante4:5138-10III. Menuetto2:3738-11IV. Allegro4:2638-12V. Menuetto3:0838-13VI. Andante4:3038-14VII. Menuetto4:0638-15VIII. Prestissimo3:40Marches882809Nicol MattConductor842822Capella IstropolitanaOrchestra39-1March in D Major, K. 623:5739-2March in D Major, K. 1894:0739-3March in C Major, K. 2143:2939-4March in D Major, K. 2153:0639-5March in D Major, K. 2373:5539-6March in F Major, K. 2484:1139-7March in D Major, K. 2493:1139-8March in D Major, K. 335 No. 13:5439-9March in D Major, K. 335 No. 23:4739-10March in C Major, K. 408 No. 14:4639-11March in D Major, K. 408 No. 23:3639-12March in C Major, K. 408 No. 34:0139-13March in D Major, K. 4452:3039-14Menuet, K. 4095:5239-15Adagio and Fugue, K. 5466:2839-16March in D Major, K. 2904:31Divertimento No. 1, K. 439b885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet40-1I. Allegto4:1540-2II. Menuetto3:0440-3III. Adagio2:4040-4IV. Menuetto2:3540-5V. Rondo2:39Divertimento No. 2, K. 439b885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet40-6I. Allegro2:2040-7II. Menuetto3:5140-8III. Larghetto2:5940-9IV. Menuetto3:5840-10V. Rondo3:56Divertimento No. 3, K. 439b885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet40-11I. Allegro4:3040-12II. Menuetto4:4940-13III. Adagio3:5740-14IV. Menuetto5:2940-15V. Rondo4:22Divertimento No. 4, K. 439b885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet41-1I. Allegro3:5441-2II. Larghetto3:2141-3III. Menuetto3:0041-4IV. Adagio2:1041-5V. Allegretto2:29Divertimento No. 5 K. 439b885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet41-6I. Adagio2:5541-7II. Menuetto2:4541-8III. Adagio2:1141-9IV. RomanceJan Jansen (2)2:3541-10V. Polonaise1:14Divertimento No. 6 K. 439b885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet41-11I. Rondo. Larghetto3:2041-12II. Voi Che Sapete (le Nozze Di Figaro)2:2241-13III. Non Più Andrai (le Nozze Di Figaro)3:2541-14IV. Là Ci Darem La Mano (don Giovanni)2:3741-15V. Vedrai, Carino (don Giovanni)3:12Serenade in E-Flat Major, K. 375885991Hans WisseBassoon885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn885988Katty HalvarsonOboe492246Remco de VriesOboe42-1I. Allegro Maestoso7:4542-2II. Menuetto4:0942-3III. Adagio5:5142-4IV. Menuetto - Trio2:4742-5V. Allegro3:53Serenade in C Minor, K. 388885991Hans WisseBassoon885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn885988Katty HalvarsonOboe492246Remco de VriesOboe42-6I. Allegro8:4242-7II. Andante3:4442-8III. Menuetto - Trio3:4942-9IV. Allegro6:20Divertimento in E-Flat Major, K. 166946618Dymphna van DooremaalBassoon885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet371586Irma KortEnglish Horn724088Ron TijhuisRon TyhuisEnglish Horn885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn492246Remco de VriesOboe890850Sandra ZoerOboe43-1I. Allegro3:1243-2II. Menuetto2:5443-3III. Andante Grazioso2:3943-4IV. Adagio1:1743-5V. Allegro2:00Divertimento in B-Flat Major, K. 186946618Dymphna van DooremaalBassoon885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet371586Irma KortEnglish Horn724088Ron TijhuisRon TyhuisEnglish Horn885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn492246Remco de VriesOboe890850Sandra ZoerOboe43-6I. Allegro Assai1:4043-7II. Menuetto2:0443-8III. Andante2:3843-9IV. Adagio2:5143-10V. Allegro2:11Divertimento in E-Flat Major, K. Anh. 226946618Dymphna van DooremaalBassoon885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet371586Irma KortEnglish Horn724088Ron TijhuisRon TyhuisEnglish Horn885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn492246Remco de VriesOboe890850Sandra ZoerOboe43-11I. Allegro Moderato3:2443-12II. Menuetto5:2043-13III. Romance3:4043-14IV. Menuetto3:0243-15V. Rondo4:45Divertimento in B-Flat Major, K. Anh. 227946618Dymphna van DooremaalBassoon885982Johan SteinmannBassoon885983Henk de GraafClarinet885981Jan Jansen (2)Clarinet371586Irma KortEnglish Horn724088Ron TijhuisRon TyhuisEnglish Horn885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn492246Remco de VriesOboe890850Sandra ZoerOboe43-16I. Allegro2:5743-17II. Menuetto2:3743-18III. Adagio3:0443-19IV. Menuetto2:4143-20V. Finale3:08Divertimento in F Major, K. 213885991Hans WisseBassoon885982Johan SteinmannBassoon885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn371586Irma KortOboe492246Remco de VriesOboe44-1I. Allegro Spiritoso4:1644-2II. Andante2:2644-3III. Menuetto1:2244-4IV. Contredanse En Rondeau1:22Divertimento in B-Flat Major, K. 240885991Hans WisseBassoon885982Johan SteinmannBassoon885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn371586Irma KortOboe492246Remco de VriesOboe44-5I. Allegro4:2344-6II. Andante Grazioso3:0844-7III. Menuetto2:1744-8IV. Allegro4:02Divertimento in E-Flat Major, K. 252885991Hans WisseBassoon885982Johan SteinmannBassoon885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn371586Irma KortOboe492246Remco de VriesOboe44-9I. Andante4:2744-10II. Menuetto2:3144-11III. Polonaise2:1144-12IV. Presto Assai1:31Divertimento in F Major, K. 253885991Hans WisseBassoon885982Johan SteinmannBassoon885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn371586Irma KortOboe492246Remco de VriesOboe44-13I. Tema Con Variazioni. Andante9:0244-14II. Menuetto2:4444-15III. Allegro Assai1:55Divertimento in B-Flat Major, K. 270885991Hans WisseBassoon885982Johan SteinmannBassoon885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn371586Irma KortOboe492246Remco de VriesOboe44-16I. Allegro Molto5:3544-17II. Andantino2:1244-18III. Menuetto2:4444-19IV. Presto1:4545-1Adagio in B-Flat Major, K. 411890867Diede BrantjesBasset Horn885981Jan Jansen (2)Basset Horn890868Romke Jan WijmengaBasset Horn885983Henk de GraafClarinet890874Laura RijsewijkClarinet45-2Adagio in F Major, K. 580a6:12890867Diede BrantjesBasset Horn885981Jan Jansen (2)Basset Horn890868Romke Jan WijmengaBasset Horn885983Henk de GraafClarinetNotturni, For Soprano, Alto, Bass, 2 Clarinets & Basset Horn5:04890870José ScholteAlto Vocals890873Bas RamselaarBass Vocals885981Jan Jansen (2)Basset Horn885983Henk de GraafClarinet890874Laura RijsewijkClarinet890876Clara de VriesSoprano Vocals45-3Notturno In F Major, K. 346 “Luci Care, Luci Belle”1:3945-4Notturno In E-Flat Major, K. 438 “Se Lontan Ben Mio Tu Sei”1:4045-5Notturno In F Major, K. 439 “Due Pupille Amabili”1:0245-6Notturno In B-Flat Major 549 “Più Non Si Trovano”2:5845-7Notturno In F Major, K. 436 “Ecco Quel Fiero Istante”2:0045-8Notturno In G Major, K. 437 “Mi Lagnero Tacendo”3:4812 Duos for Two Horns, K. 487885986Jos BuurmanFrench Horn885989Martin van de MerweFrench Horn45-9I. Allegro0:5445-10II. Menuetto2:4045-11III. Andante2:1745-12IV. Polonaise1:0645-13V. Larghetto1:1145-14VI. Menuetto3:2845-15VII. Adagio1:5145-16VIII. Allegro1:2445-17IX. Menuetto2:2145-18X. Andante1:1445-19XI. Menuetto2:1745-20XII. Allegro1:33Divertimento in C Major, K. 188262711Andre HeuvelmanPiccolo Trumpet890875Randy MaxTimpani890869Ad van ZonTrumpet [In C]890872Frank SteeghsTrumpet [In C]890871Simon WieringaTrumpet [In C]890877Arto HoornwegTrumpet [In D]890878Jacco GroenendijkTrumpet [In D]45-21I. Andante1:4545-22II. Allegro1:0545-23III. Menuetto0:5845-24IV. Andante1:2845-25V. Menuetto0:3545-26VI. Gavotte0:40Serenade For 13 Wind Instruments In B-Flat Major, K. 361 “Gran Partita”882784Alexander SchneiderConductor893854Wind Soloists Of The Chamber Orchestra Of EuropeOrchestra46-1I. Largo - Allegro Molto9:5646-2II. Menuetto9:2146-3III. Adagio5:1546-4IV. Menuetto. Allegretto5:0846-5V. Romanze. Adagio - Allegretto9:1146-6VI. Tema Con Variazioni9:3946-7VII. Finale. Molto Allegro3:327 Menuets, K. 65a890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra47-1I. Menuet In G Major2:2347-2II. Menuet In D Major2:2847-3III. Menuet In A Major2:3547-4IV. Menuet In F Major3:2447-5V. Menuet In C Major2:1047-6VI. Menuet In G Major2:4747-7VII. Menuet In D Major2:0947-8Kontretanz in B-Flat Major, K. 1231:1847-9Menuet in E-Flat Major, K. 1221:1320 Menuets, K. 103890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra47-10Menuet No. 13:1347-11Menuet No. 22:1447-12Menuet No. 33:0447-13Menuet No. 42:1947-14Menuet No. 52:1747-15Menuet No. 62:3547-16Menuet No. 72:5747-17Menuet No. 82:3147-18Menuet No. 93:1047-19Menuet No. 102:2747-20Menuet No. 112:5147-21Menuet No. 122:0947-22Menuet No. 132:2347-23Menuet No. 142:3947-24Menuet No. 152:0747-25Menuet No. 160:4347-26Menuet No. 170:4447-27Menuet No. 180:5447-28Menuet No. 190:4547-29Menuet No. 202:426 Menuets, K. 104890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra48-1Menuet No. 1 In C Major2:2848-2Menuet No. 2 In F Major2:2448-3Menuet No. 3 In C Major2:1248-4Menuet No. 4 In A Major0:5648-5Menuet No. 5 In G Major2:3248-6Menuet No. 6 In G Major2:326 Menuets, K. 105890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra48-7Menuet No. 1 In D Major2:2348-8Menuet No. 2 In D Major2:1548-9Menuet No. 3 In D Major2:2848-10Menuet No. 4 In G Major2:0448-11Menuet No. 5 In G Major2:1848-12Menuet No. 6 In G Major2:106 Menuets, K. 61h890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra48-13Menuet No. 1 In C Major2:3948-14Menuet No. 2 In A Major1:0548-15Menuet No. 3 In D Major2:2148-16Menuet No. 4 In B-flat Major0:5548-17Menuet No. 5 In G Major2:5448-18Menuet No. 6 In C Major2:4416 Menuets, K. 176890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra48-19Menuet No. 1 In C Major2:2048-20Menuet No. 2 In G Major2:5848-21Menuet No. 3 In E-flat Major0:4548-22Menuet No. 4 In B-flat Major0:5848-23Menuet No. 5 In F Major2:2648-24Menuet No. 6 In D Major2:1748-25Menuet No. 7 In A Major0:5248-26Menuet No. 8 In C Major2:2148-27Menuet No. 9 In G Major2:2548-28Menuet No. 10 In B-flat Major0:5448-29Menuet No. 11 In F Major2:1248-30Menuet No. 12 In D Major2:2048-31Menuet No. 13 In G Major2:2848-32Menuet No. 14 In C Major2:1448-33Menuet No. 15 In F Major2:5948-34Menuet No. 16 In D Major2:136 Menuets, K. 164890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-1Menuet No. 1 In D Major2:3149-2Menuet No. 2 In D Major2:3749-3Menuet No. 3 In D Major2:1849-4Menuet No. 4 In G Major2:3649-5Menuet No. 5 In G Major2:2049-6Menuet No. 6 In G Major2:164 Kontretänze, K. 101890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-7Kontretänz No. 1 In F Major. Gavotte1:3549-8Kontretänz No. 2 In G Major. Andantino1:4249-9Kontretänz No. 3 In D Major. Presto1:0149-10Kontretänz No. 4 In F Major. Gavotte1:574 Kontretänze, K. 267890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-11Kontretänz No. 1 In G Major1:2949-12Kontretänz No. 2 In E-flat Major1:3449-13Kontretänz No. 3 In A Major1:1649-14Kontretänz No. 4 In D Major1:423 Menuets, K. 363890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-15Menuet No. 1 In D Major1:0349-16Menuet No. 2 In B-flat Major1:1049-17Menuet No. 3 In D Major0:595 Menuets, K. 461890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-18Menuet No. 1 In C Major2:4849-19Menuet No. 2 In E-flat Major2:4049-20Menuet No. 3 In G Major2:4449-21Menuet No. 4 In B-flat Major2:3049-22Menuet No. 5 In F Major2:386 Kontretänze, K. 462890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-23Kontretänz No. 1 In C Major1:5249-24Kontretänz No. 2 In E-flat Major1:4149-25Kontretänz No. 3 In B-flat Major1:0249-26Kontretänz No. 4 In D Major1:3449-27Kontretänz No. 5 In B-flat MajorTaras Krysa1:0349-28Kontretänz No. 6 In F Major1:332 Quadrillen, K. 463890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra49-29Quadril No. 1 In F Major2:3349-30Quadril No. 2 In B-flat Major2:2749-316 German Dances, K. 50913:48890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra50-1Kontretanz in D Major, K. 534 “Das Donnerwetter”1:07890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra50-2Kontretanz in C Major, K. 535 “La bataille”1:20890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra6 German Dances, K. 536890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra50-3Dance No. 1 In C Major, K. 5362:3550-4Dance No. 2 In G Major, K. 5362:2450-5Dance No. 3 In B-flat Major, K. 5362:3950-6Dance No. 4 In D Major, K. 5362:1150-7Dance No. 5 In F Major, K. 5362:0750-8Dance No. 6 In B-flat Major, K. 5671:346 German Dances, K. 567890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra50-9Dance No. 1 In E-flat Major, K. 5671:5650-10Dance No. 2 In G Major, K. 5671:2650-11Dance No. 3 In D Major, K. 5671:3150-12Dance No. 4 In A Major, K. 5671:5250-13Dance No. 5 In F Major, K. 5362:1950-14Dance No. 6 In C Major, K. 5672:1512 Menuets, K. 568890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra50-15Menuet No. 1 In C Major2:2050-16Menuet No. 2 In F Major2:2850-17Menuet No. 3 In B-flat Major2:2250-18Menuet No. 4 In E-flat Major2:2350-19Menuet No. 5 In G Major2:2150-20Menuet No. 6 In D Major2:1650-21Menuet No. 7 In A Major2:2850-22Menuet No. 8 In F Major2:2150-23Menuet No. 9 In B-flat Major2:3150-24Menuet No. 10 In D Major2:2450-25Menuet No. 11 In G Major2:2950-26Menuet No. 12 In C Major2:286 German Dances, K. 571890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra50-27Dance No. 1 In D Major1:4650-28Dance No. 2 In A Major1:3550-29Dance No. 3 In C Major1:5350-30Dance No. 4 In G Major1:4050-31Dance No. 5 In B-flat Major1:3250-32Dance No. 6 In D Major2:4612 Menuets, K. 585890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra51-1Menuet No. 1 In D Major2:1851-2Menuet No. 2 In F Major2:2551-3Menuet No. 3 In B-flat Major2:1451-4Menuet No. 4 In E-flat Major2:2451-5Menuet No. 5 In G Major2:2551-6Menuet No. 6 In C Major2:2851-7Menuet No. 7 In A Major2:2351-8Menuet No. 8 In F Major2:1551-9Menuet No. 9 In B-flat Major2:2851-10Menuet No. 10 In E-flat Major2:2951-11Menuet No. 11 In G Major2:3251-12Menuet No. 12 In D Major2:262 Kontretänze, K. 603890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra51-13Kontretanz No. 1 In D Major1:4151-14Kontretanz No. 2 In B-flat Major2:0012 German Dances, K. 586890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra51-15Dance No. 1 In C Major1:4851-16Dance No. 2 In G Major1:4651-17Dance No. 3 In B-flat Major2:0151-18Dance No. 4 In F Major2:2951-19Dance No. 5 In A Major1:4951-20Dance No. 6 In D Major1:4551-21Dance No. 7 In G Major1:5051-22Dance No. 8 In E-flat Major1:5451-23Dance No. 9 In B-flat Major1:4051-24Dance No. 10 In F Major1:4951-25Dance No. 11 In A Major1:5751-26Dance No. 12 In C Major2:026 German Dances in B-Flat Major, K. 606890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra51-27Dance No. 10:5251-28Dance No. 20:4251-29Dance No. 31:0151-30Dance No. 40:4451-31Dance No. 50:4651-32Dance No. 61:145 Kontretänze, K. 609890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra51-33Dance No. 1 In C Major0:5551-34Dance No. 2 In E-flat Major0:4651-35Dance No. 3 In D Major1:0851-36Dance No. 4 In C Major2:5151-37Dance No. 5 In G Major1:196 Menuets, K. 599890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-1Menuet No. 1 In C Major2:5052-2Menuet No. 2 In G Major2:4952-3Menuet No. 3 In E-flat Major2:5452-4Menuet No. 4 In B-flat Major3:0452-5Menuet No. 5 In F Major2:3552-6Menuet No. 6 In D Major2:574 Menuets, K. 601890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-7Menuet No. 1 In A Major2:2752-8Menuet No. 2 In C Major2:4952-9Menuet No. 3 In G Major2:1752-10Menuet No. 4 In D Major2:292 Menuets, K. 604890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-11Menuet No. 1 In B-flat Major2:3452-12Menuet No. 2 In E-flat Major2:27German Dances, K. 600890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-13Dance No. 1 In C Major2:1652-14Dance No. 2 In F Major2:1952-15Dance No. 3 In B-flat Major2:1252-16Dance No. 4 In E-flat Major2:0252-17Dance No. 5 In G Major1:4352-18Dance No. 6 In D Major2:22German Dances, K. 602890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-19Dance No. 1 In B-flat Major1:5452-20Dance No. 2 In F Major2:2552-21Dance No. 3 In C Major2:1452-22Dance No. 4 In A Major1:53German Dances, K. 605890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-23Dance No. 1 In D Major2:1452-24Dance No. 2 In G Major2:1152-25Dance No. 3 In C Major3:2452-26Kontretanz in C Major, K. 5871:19890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-27Kontretanz in G Major, K. 6101:32890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra52-28Gavotte in B-Flat Major, K. 3001:56890888Taras KrysaConductor890887Slovak SinfoniettaOrchestraVolume 4: Chamber Music-Violin Sonatas-Church SonatasHorn Quintet in E-Flat Major, K. 4076:25882762Karl LeisterClarinet882756Brandis QuartetEnsemble845752Gerd SeifertFrench Horn882794Wilfried StrehleViola882768Thomas BrandisViolin [Ⅰ]882826Peter BremViolin [Ⅱ]53-1I. Allegro6:2553-2II. Andante4:0353-3III. AllegroOboe Quartet in F Major, K. 370882762Karl LeisterClarinet882756Brandis QuartetEnsemble882800Lothar KochOboe882794Wilfried StrehleViola882768Thomas BrandisViolin [Ⅰ]882826Peter BremViolin [Ⅱ]53-4I. Allegro7:1753-5II. Adagio4:5953-6III. Rondeau. Allegro4:55Clarinet Quintet in A Major, K. 581882796Wolfgang BoettcherCello882762Karl LeisterClarinet882756Brandis QuartetEnsemble882794Wilfried StrehleViola882768Thomas BrandisViolin [Ⅰ]882826Peter BremViolin [Ⅱ]53-7I. Allegro9:0453-8II. Larghetto6:4153-9III. Menuetto7:1953-10IV. Allegretto Con Variazioni9:28Piano Quintet in E-Flat Major, K. 452890913Peter GaasterlandBassoon885983Henk de GraafClarinet885989Martin van de MerweFrench Horn890911Hans MeijerOboe882804Klára WürtzPiano54-1I. Largo - Allegro Moderato9:3454-2II. Larghetto8:0054-3III. Rondo. Allegro Moderato5:19Clarinet Trio in E-Flat Major, K. 498 “Kegelstatt”883762Antony PayAnthony PayClarinet890910Ian Brown (4)Piano304525Roger ChaseViola54-4I. Andante6:1954-5II. Menuetto6:1054-6III. Rondeau. Allegretto8:40Divertimento in B-Flat Major, K. 25455-1I. Allegro Assai6:0655-2II. Adagio5:2655-3III. Rondo. Tempo Di Menuetto6:30Piano Trio in G Major, K. 496837037Jaap Ter LindenCello882827Bart van OortFortepiano890923Elizabeth WallfischViolin55-4I. Allegro8:3555-5II. Andante5:3055-6III. Allegretto12:19Piano Trio in B-Flat Major, K. 502837037Jaap Ter LindenCello882827Bart van OortFortepiano890923Elizabeth WallfischViolin55-7I. Allegro8:1455-8II. Larghetto6:5855-9III. Allegretto6:11Piano Trio in E Major, K. 54256-1I. Allegro7:3056-2II. Andante Grazioso4:3356-3III. Allegro6:47Piano Trio in C Major, K. 548834839Walter GrimmerCello894022Arion TrioEnsemble890926Ilse von AlpenheimPiano890925Igor OzimViolin56-4I. Allegro7:1856-5II. Andante Cantabile5:5956-6III. Allegro4:34Piano Trio in G Major, K. 564834839Walter GrimmerCello894022Arion TrioEnsemble890926Ilse von AlpenheimPiano890925Igor OzimViolin56-7I. Allegro5:0156-8II. Andante Con Variazioni6:1756-9III. Allegretto4:51Piano Quartet in G Minor, K. 478837037Jaap Ter LindenCello882827Bart van OortFortepiano882782Bernadette VerhagenViola736526Tjamke RoelofsViolin57-1I. Allegro10:2057-2II. Andante7:2357-3III. Rondeau7:24Piano Quartet in E-Flat Major, K. 493837037Jaap Ter LindenCello882827Bart van OortFortepiano882782Bernadette VerhagenViola736526Tjamke RoelofsViolin57-4I. Allegro10:1457-5II. Larghetto9:2957-6III. Allegretto8:26Flute Quartet in D Major, K. 285882781Luc DewezCello471201Marc GrauwelsFlute1188573Paul De ClerckPaul DeclerckViola882772Ulka GonriakViolin58-1I. Allegro6:4658-2II. Adagio2:2458-3III. Rondeau4:14Flute Quartet in G Major, K. 285a882781Luc DewezCello471201Marc GrauwelsFlute1188573Paul De ClerckPaul DeclerckViola882772Ulka GonriakViolin58-4I. Andante6:2258-5II. Tempo Di Menuetto3:22Flute Quartet in C Major, K. 285b882781Luc DewezCello471201Marc GrauwelsFlute1188573Paul De ClerckPaul DeclerckViola882772Ulka GonriakViolin58-6I. Allegro5:4458-7II. Tema Con Variazioni10:24Flute Quartet in A Major, K. 298882781Luc DewezCello471201Marc GrauwelsFlute1188573Paul De ClerckPaul DeclerckViola882772Ulka GonriakViolin58-8I. Tema Con Variazioni5:2558-9II. Menuetto2:2058-10III. Rondeau. Allegretto Grazioso, Ma Non Troppo Prestò, Pero Non Troppo Adagio, Così - Così - Con Molto Garbo Ed Espressione2:25Adagio and Rondo in C Major, K. 617882781Luc DewezCello471201Marc GrauwelsFlute561464Dennis JamesGlass Harmonica379683Joris Van Den HauweJoris van der HauweOboe1188573Paul De ClerckPaul DeclerckViola58-11I. Adagio4:2858-12II. Rondo8:14Flute Sonata in B-Flat Major, K. 10471201Marc GrauwelsFlute890944Guy PensonFortepiano [Pianoforte]59-1I. Allegro4:0159-2II. Andante2:5859-3III. Menuetto No. 1 - Menuetto No. 22:59Flute Sonata in G Major, K. 11890943Jan ScifferCello471201Marc GrauwelsFlute890944Guy PensonHarpsichord59-4I. Andante3:5459-5II. Allegro - Menuetto - Da Capo. Allegro5:51Flute Sonata in A Major, K. 12890943Jan ScifferCello471201Marc GrauwelsFlute890944Guy PensonFortepiano [Pianoforte]59-6I. Andante5:0859-7II. Allegro2:09Flute Sonata in F Major, K. 13Marc Grauwels471201Marc GrauwelsFlute890944Guy PensonFortepiano [Pianoforte]59-8I. Allegro5:1559-9II. Andante5:5859-10III. Menuetto No. 1 - Menuetto No. 22:19Flute Sonata in C Major, K. 14471201Marc GrauwelsFlute890944Guy PensonHarpsichord59-11I. Allegro5:0659-12II. Allegro2:5459-13III. Menuetto No. 1 - Menuetto No. 2 - Carillon2:38Flute Sonata in B-Flat Major, K. 15890943Jan ScifferCello471201Marc GrauwelsFlute890944Guy PensonHarpsichord59-14I. Andante Maestoso7:2059-15II. Allegro Grazioso2:57Violin Sonata In C Major, K. 6884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]60-1I. Allegro4:0860-2II. Andante4:0160-3III. Menuetto No. 1 - Menuetto No. 22:3260-4IV. Allegro Molto3:44Violin Sonata in D Major, K. 7884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]60-5I. Allegro Molto4:5760-6II. Adagio6:3460-7III. Menuetto No. 1 - Menuetto No. 23:00Violin Sonata in B-Flat Major, K. 8884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]60-8I. Allegro3:3260-9II. Andante Grazioso3:2460-10III. Menuetto No. 1 - Menuetto No. 23:13Violin Sonata in G Minor, K. 9884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]60-11I. Allegro Spiritoso3:5160-12II. Andante5:5460-13III. Menuetto No. 1 - Menuetto No. 24:37Violin Sonata in E-Flat Major, K. 26884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]61-1I. Allegro Molto2:5361-2II. Adagio Poco Andante3:0861-3III. Rondeaux. Allegro2:19Violin Sonata in G Major, K. 27884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]61-4I. Andante Poco Adagio3:2061-5II. Allegro3:44Violin Sonata in C Major, K. 28884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]61-6I. Allegro Maestoso4:0461-7II. Allegro Grazioso2:41Violin Sonata in D Major, K. 29884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]61-8I. Allegro Molto3:1961-9II. Menuetto3:20Violin Sonata in F Major, K. 30884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]61-10I. Adagio4:4561-11II. Rondeaux. Tempo Di Menuetto2:37Violin Sonata in B-Flat Major, K. 31884530Pieter-Jan BelderHarpsichord884531Rémy BaudetViolin [Baroque]61-12I. Allegro3:4961-13II. Tempo Di Menuetto. Moderato5:4961-14Twelve Variations In G Major On The French Song "La Bergère Célimène", Kv 359 (374a)14:36884530Pieter-Jan BelderFortepiano [Pianoforte]884531Rémy BaudetViolin [Baroque]61-15Six Variations in G Minor On The French Song "Hélas, J'Ai Perdu Mon Amant", KV 360 (374b)9:21884530Pieter-Jan BelderFortepiano [Pianoforte]884531Rémy BaudetViolin [Baroque]Violin Sonata in F Major, K. 376462043Bruno CaninoPiano846180Salvatore AccardoViolin62-1I. Allegro7:0162-2II. Andante5:3262-3III. Rondeau. Allegretto Grazioso6:10Violin Sonata in F Major, K. 377462043Bruno CaninoPiano846180Salvatore AccardoViolin62-4I. Allegro6:1362-5II. Tema. Andante1:1962-6Variation I1:0662-7Variation II1:0962-8Variation III1:0462-9Variation IV1:0162-10Variation V1:0962-11Variation VI. Siciliana2:0762-12III. Tempo Di Menuetto5:14Violin Sonata in B-Flat Major, K. 372462043Bruno CaninoPiano846180Salvatore AccardoViolin62-13I. Allegro8:04Sonata Movement in A Major, K. 402462043Bruno CaninoPiano846180Salvatore AccardoViolin62-14I. Andante, Ma Un Poco Adagio (fragment)6:4162-15II. Fuga. Allegro Moderato (fragment)4:02Sonata Movement in C Major, K. 404462043Bruno CaninoPiano846180Salvatore AccardoViolin62-16I. Andante (fragment)1:4962-17II. Allegretto (fragment)1:28Violin Sonata in G Major, K. 379462043Bruno CaninoPiano846180Salvatore AccardoViolin63-1I. Adagio - Allegro12:1463-2II. Tema. Andantino Cantabile1:0563-3Variation I1:0563-4Variation II1:0763-5Variation III1:0563-6Variation IV1:2463-7Variation V. Adagio1:1963-8Tema. Allegretto2:44Violin Sonata in E-Flat Major, K. 380462043Bruno CaninoPiano846180Salvatore AccardoViolin63-9I. Allegro10:0663-10II. Andante Con Moto9:3963-11III. Rondeau. Allegro4:47Violin Sonata in F Major, K. 547462043Bruno CaninoPiano846180Salvatore AccardoViolin63-12I. Andantino Cantabile6:2463-13II. Allegro9:1263-14III. Tema. Andante1:0063-15Variation I0:5563-16Variation II0:5663-17Variation III1:0063-18Variation IV0:5763-19Variation V1:0463-20Variation VI1:19Violin Sonata in A Major, K. 526462043Bruno CaninoPiano846180Salvatore AccardoViolin64-1I. Molto Allegro9:1464-2II. Andante10:3264-3III. Presto6:58Violin Sonata in C Major, K. 296462043Bruno CaninoPiano846180Salvatore AccardoViolin64-4I. Allegro Vivace8:5464-5II. Andante Sostenuto6:1864-6III. Rondeau. Allegro4:33Violin Sonata in A Major, K. 305462043Bruno CaninoPiano846180Salvatore AccardoViolin64-7I. Allegro Di Molto6:5164-8II. Tema. Andante Grazioso1:4864-9Variation I1:3664-10Variation II1:3964-11Variation III1:1364-12Variation IV2:0464-13Variation V1:2564-14Variation VI. Allegro0:47Violin Sonata in E-Flat Major, K. 481462043Bruno CaninoPiano846180Salvatore AccardoViolin65-1I. Molto Allegro7:3565-2II. Adagio7:5965-3III. Tema. Allegretto1:1365-4Variation I1:0865-5Variation Ii1:0865-6Variation Iii1:0865-7Variation Iv1:1165-8Variation V1:2765-9Variation VI. Allegro1:25Violin Sonata in C Major, K. 303462043Bruno CaninoPiano846180Salvatore AccardoViolin65-10I. Adagio - Molto Allegro5:4465-11II. Tempo Di Menuetto6:30Violin Sonata in G Major, K. 301462043Bruno CaninoPiano846180Salvatore AccardoViolin65-12I. Allegro Con Spirito11:2965-13II. Allegro5:38Violin Sonata in B-Flat Major, K. 378462043Bruno CaninoPiano846180Salvatore AccardoViolin66-1I. Allegro Moderato12:3466-2II. Andantino Sostenuto E Cantabile6:1666-3III. Rondeau. Allegro4:36Violin Sonata in E-Flat Major, K. 302462043Bruno CaninoPiano846180Salvatore AccardoViolin66-4I. Allegro8:1466-5II. Rondeau. Andante Grazioso6:44Violin Sonata in E Minor, K. 304462043Bruno CaninoPiano846180Salvatore AccardoViolin66-6I. Allegro10:1466-7II. Tempo Di Menuetto5:37Violin Sonata in C Major, K. 403462043Bruno CaninoPiano846180Salvatore AccardoViolin66-8I. Allegro Moderato7:3366-9II. Andante - Allegretto3:20Violin Sonata in B-Flat Major, K. 454462043Bruno CaninoPiano846180Salvatore AccardoViolin67-1I. Largo - Allegro10:0267-2II. Andante7:4267-3III. Allegretto7:02Violin Sonata in D Major, K. 306462043Bruno CaninoPiano846180Salvatore AccardoViolin67-4I. Allegro Con Spirito10:2767-5II. Andantino Cantabile11:1767-6III. Allegretto7:09Church Sonatas890976Collegium Jaroslav TumaOrchestra1129328Bohuslav MatoušekBohuslav MatousekViolin68-1Church Sonata in E-Flat Major, K. 672:2168-2Church Sonata in B-Flat Major, K. 683:4368-3Church Sonata in D Major, K. 693:3768-4Church Sonata in D Major, K. 1444:3268-5Church Sonata in F Major, K. 1452:5268-6Church Sonata in B-Flat Major, K. 2124:1668-7Church Sonata in G Major, K. 2413:4368-8Church Sonata in F Major, K. 2246:1468-9Church Sonata in A Major, K. 2255:1768-10Church Sonata in F Major, K. 2445:1268-11Church Sonata in D Major, K. 2454:5368-12Church Sonata in G Major, K. 2744:3868-13Church Sonata in C Major, K. 3286:0068-14Church Sonata in C Major, K. 3364:2468-15Church Sonata in C Major, K. 2634:3868-16Church Sonata in C Major, K. 2783:2668-17Church Sonata in C Major, K. 3293:59Volume 5: String EnsemblesString Quintet in B-Flat Major, K. 174890990Stefan MetzCello893638Orlando QuartetStrings890989Ferdinand ErblichViola894200Nobuko ImaiViola890992John Harding (3)Violin [Ⅰ]890993Heinz OberdorferViolin [Ⅱ]69-1I. Allegro Moderato12:2869-2II. Adagio12:0069-3III. Menuetto Ma Allegretto4:5869-4IV. Allegro8:37String Quintet in C Minor, K. 406890990Stefan MetzCello893638Orlando QuartetStrings890989Ferdinand ErblichViola894200Nobuko ImaiViola890992John Harding (3)Violin [Ⅰ]890993Heinz OberdorferViolin [Ⅱ]69-5I. Allegro12:0869-6II. Andante4:1769-7III. Minuetto In Canone - Trio Al Rovescio4:4269-8IV. Allegro6:47String Quintet in C Major, K. 515890990Stefan MetzCello893638Orlando QuartetStrings890989Ferdinand ErblichViola894200Nobuko ImaiViola890992John Harding (3)Violin [Ⅰ]890993Heinz OberdorferViolin [Ⅱ]70-1I. Allegro13:5070-2II. Andante9:3070-3III. Menuetto. Allegretto5:4870-4IV. Allegro7:02String Quintet in D Major, K. 593890990Stefan MetzCello893638Orlando QuartetStrings890989Ferdinand ErblichViola894200Nobuko ImaiViola890992John Harding (3)Violin [Ⅰ]890993Heinz OberdorferViolin [Ⅱ]70-5I. Larghetto - Allegro12:1270-6II. Adagio7:2970-7III. Menuetto. Allegretto5:4370-8IV. Finale. Allegro7:54String Quintet in G Minor, K. 516890990Stefan MetzCello893638Orlando QuartetStrings890989Ferdinand ErblichViola894200Nobuko ImaiViola890992John Harding (3)Violin [Ⅰ]890993Heinz OberdorferViolin [Ⅱ]71-1I. Allegro15:4271-2II. Menuetto. Allegretto5:2971-3III. Adagio Ma Non Troppo8:5671-4IV. Adagio2:5071-5V. Allegro7:45String Quintet in E-Flat Major, K. 614890990Stefan MetzCello893638Orlando QuartetStrings890989Ferdinand ErblichViola894200Nobuko ImaiViola890992John Harding (3)Violin [Ⅰ]890993Heinz OberdorferViolin [Ⅱ]71-6I. Allegro Di Molto11:1571-7II. Andante7:3371-8III. Menuetto. Allegretto4:2271-9IV. Allegro5:10String Trio Divertimento in E-Flat Major, K. 563890995Rainer ZipperlingCello836054Ryo TerakadoViola890997François FernandezViolin72-1I. Allegro12:0372-2II. Adagio13:1972-3III. Menuetto. Allegretto5:2272-4IV. Andante8:1272-5V. Menuetto. Allegretto5:3072-6VI. Allegro6:32Duo in G Major, K. 423884529Marten BoekenViola884531Rémy BaudetViolin73-1I. Allegro7:0273-2II. Adagio3:4473-3III. Rondeau. Allegro5:38Duo In B-Flat Major, K. 424884529Marten BoekenViola884531Rémy BaudetViolin73-4I. Adagio - Allegro8:3273-5II. Andante Cantabile3:1473-6III. Tema Con Variazioni8:3273-7Trio in B-Flat Major, K. 266 (Adagio - Menuetto)10:12890995Rainer ZipperlingCello884531Rémy BaudetViolin842648Staas SwierstraViolinPreludes & Fugues, K. 404a95546Wolfgang Amadeus MozartArranged By890995Rainer ZipperlingCello95537Johann Sebastian BachJ.S. BachComposed By842648Staas SwierstraViola884531Rémy BaudetViolin74-1Prelude (original?) & Fugue (J.S. Bach, Bwv 853) In D Minor8:0374-2Prelude (original?) & Fugue (J.S. Bach, Bwv 883) In G Minor5:5174-3Prelude (original?) & Fugue (J.S. Bach, Bwv 882) In F Major5:4374-4Prelude (J.S. Bach, Bwv 527/ii_ & Fugue (j.s. Bach, Bwv 1080-8) In F Major8:4374-5Prelude & Fugue in E-Flat Major (J.S. Bach, Bwv 526 Ii & Iii)7:2474-6Prelude (original?) & Fugue (Wilhelm Friedemann Bach) In F Minor7:50891601Wilhelm Friedemann BachComposed ByString Quartet in D Major, K. 155490084Emil KleinCello893771Sonare QuartetStrings891212Hideko KobayashiViola891211Jacek KlimkiewiczViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]75-1I. Allegro3:3375-2II. Andante3:3875-3III. Molto Allegro1:26String Quartet in G Major, K. 156490084Emil KleinCello893771Sonare QuartetStrings891212Hideko KobayashiViola891211Jacek KlimkiewiczViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]75-4I. Presto2:4575-5II. Adagio5:0475-6III. Tempo Di Minuetto3:42String Quartet in C Major, K. 157490084Emil KleinCello893771Sonare QuartetStrings891212Hideko KobayashiViola891211Jacek KlimkiewiczViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]75-7I. –5:1175-8II. Andante3:4075-9III. Presto1:49String Quartet in F Major, K. 158490084Emil KleinCello893771Sonare QuartetStrings891212Hideko KobayashiViola891211Jacek KlimkiewiczViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]75-10I. Allegro3:2675-11II. Andante Un Poco Allegretto4:0075-12III. Tempo Di Minuetto5:15String Quartet in B-Flat Major, K. 159891212Hideko KobayashiCello893771Sonare QuartetStrings490084Emil KleinViola891211Jacek KlimkiewiczViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]75-13I. Andante4:2575-14II. Allegro5:1275-15III. Rondo. Allegro Grazioso2:38String Quartet in E-Flat Major, K. 160490084Emil KleinCello893771Sonare QuartetStrings891212Hideko KobayashiViola891211Jacek KlimkiewiczViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]75-16I. Allegro3:1175-17II. Un Poco Adagio4:3375-18III. Presto3:01String Quartet in F Major, K. 168490084Emil KleinCello893771Sonare QuartetStrings891222Marius NichiteanuViola891221Ruxandra ConstantinoviciViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]76-1I. Allegro4:2076-2II. Andante1:5076-3III. Menuetto2:3776-4IV. Allegro2:04String Quartet in A Major, K. 169490084Emil KleinCello893771Sonare QuartetStrings891222Marius NichiteanuViola891221Ruxandra ConstantinoviciViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]76-5I. Molto Allegro3:3976-6II. Andante3:2076-7III. Menuetto3:0476-8IV. Rondeaux. Allegro2:10String Quartet in C Major, K. 170490084Emil KleinCello893771Sonare QuartetStrings891222Marius NichiteanuViola891221Ruxandra ConstantinoviciViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]76-9I. Tema Con Variazioni4:4276-10II. Menuetto2:5676-11III. Un Poco Adagio2:1576-12IV. Rondeaux. Allegro3:05String Quartet in E-Flat Major, K. 171490084Emil KleinCello893771Sonare QuartetStrings891222Marius NichiteanuViola891221Ruxandra ConstantinoviciViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]76-13I. Adagio - Allegro Assai - Adagio5:1276-14II. Menuetto3:0376-15III. Andante2:1476-16IV. Allegro Assai2:11String Quartet in B-Flat Major, K. 172490084Emil KleinCello893771Sonare QuartetStrings891222Marius NichiteanuViola891221Ruxandra ConstantinoviciViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]76-17I. Allegro Spiritoso4:1576-18II. Adagio2:3676-19III. Menuetto3:1276-20IV. Allegro Assai2:54String Quartet in D Minor, K. 173490084Emil KleinCello893771Sonare QuartetStrings891222Marius NichiteanuViola891221Ruxandra ConstantinoviciViolin [Ⅰ]891213Laurentius BonitzViolin [Ⅱ]76-21I. Allegro Ma Molto Moderato5:0476-22II. Andantino Grazioso3:1676-23III. Menuetto4:1076-24IV. Allegro3:08String Quartet in G Major, K. 387882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]77-1I. Allegro Vivace Assai7:4977-2II. Menuetto - Trio. Allegretto8:0177-3III. Andante Cantabile8:1277-4IV. Molto Allegro6:00String Quartet in D Minor, K. 421882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]77-5I. Allegro Moderato8:0077-6II. Andante6:4377-7III. Menuetto - Trio. Allegretto4:0477-8IV. Allegretto Ma Non Troppo - Più Allegro10:29String Quartet in E-Flat Major, K. 428882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]78-1I. Allegro Non Troppo7:5178-2II. Andante Con Moto8:4978-3III. Menuetto - Trio. Allegro6:3878-4IV. Allegro Vivace5:45String Quartet in B-Flat Major, K. 458 “The Hunt”882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]78-5I. Allegro Vivace Assai8:5678-6II. Menuetto - Trio. Moderato4:3078-7III. Adagio7:4078-8IV. Allegro Assai7:03String Quartet in A Major, K. 464882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]79-1I. Allegro7:2679-2II. Menuetto & Trio6:3279-3III. Andante14:3579-4IV. Allegro Ma Non Troppo7:32String Quartet in C Major, K. 465 “Dissonance”882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]79-5I. Adagio - Allegro8:4579-6II. Andante Cantabile8:1379-7III. Menuetto - Trio. Allegro5:3779-8IV. Allegro Molto7:58String Quartet in D Major, K. 499 “Hoffmeister”882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]80-1I. Allegretto10:1680-2II. Menuetto & Trio. Allegretto3:3780-3III. Adagio8:1780-4IV. Molto Allegro5:27String Quartet in D Major, K. 575882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]80-5I. Allegretto8:0080-6II. Andante5:0280-7III. Menuetto - Trio. Allegretto6:3080-8IV. Allegretto6:26String Quartet in B-Flat Major, K. 589882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]81-1I. Allegro6:2181-2II. Larghetto7:5981-3III. Menuetto - Trio. Moderato7:2981-4IV. Allegro Assai3:59String Quartet in F Major, K. 590882777Vincent StadlmairCello893898Franz Schubert Quartet Of ViennaStrings882814Hartmut PascherViola882774Florian ZwiauerViolin [Ⅰ]882813Helge RosenkranzViolin [Ⅱ]81-5I. Allegro Moderato9:2781-6II. Andante7:3081-7III. Menuetto - Trio. Allegretto4:3081-8IV. Allegro5:31String Quartet in G Major, K. 80891255Alexander HülshoffCello894023Sharon QuartetStrings891254Ron EphratViola882785Gil SharonViolin [Ⅰ]891256Rodica CiocoiuViolin [Ⅱ]81-9I. Adagio6:0581-10II. Allegro3:3081-11III. Minuetto3:0081-12IV. Rondo2:22Volume 6: Keyboard WorksPiano Sonata No. 1 in C Major, K. 279882804Klára WürtzPiano82-1I. Allegro4:5382-2II. Andante5:0882-3III. Allegro3:16Piano Sonata No. 2 in F Major, K. 280882804Klára WürtzPiano82-4I. Allegro Assai4:2782-5II. Adagio5:5682-6III. Presto2:49Piano Sonata No. 3 in B-Flat Major, K. 281882804Klára WürtzPiano82-7I. Allegro6:4182-8II. Andante Amoroso5:2782-9III. Rondeau. Allegro4:32Piano Sonata No. 4 in E-Flat Major, K. 282882804Klára WürtzPiano82-10I. Adagio6:5682-11II. Menuetto4:0682-12III. Allegro2:57Piano Sonata No. 5 in G Major, K. 283882804Klára WürtzPiano82-13I. Allegro5:2182-14II. Andante5:3682-15III. Presto3:46Piano Sonata No. 6 in D Major, K. 284882804Klára WürtzPiano83-1I. Allegro5:0883-2II. Rondeau En Polonaise. Andante4:2083-3III. Andante (tema Con Variazioni)15:31Piano Sonata No. 7 in C Major, K. 309882804Klára WürtzPiano83-4I. Allegro Con Spirito5:5383-5II. Andante Un Poco Adagio5:0383-6III. Rondeau. Allegretto Grazioso5:55Piano Sonata No. 8 in A Minor, K. 310882804Klára WürtzPiano83-7I. Allegro Maestoso5:5683-8II. Andante Cantabile Con Espressione7:0083-9III. Presto2:41Piano Sonata No. 9 in D Major, K. 311882804Klára WürtzPiano84-1I. Allegro Con Spirito4:2384-2II. Andante Con Espressione4:4684-3III. Rondeau. Allegro6:00Piano Sonata No. 10 in C Major, K. 330882804Klára WürtzPiano84-4I. Allegro Moderato6:3684-5II. Andante Cantabile6:2984-6III. Allegretto5:38Piano Sonata No. 11 in A Major, K. 331882804Klára WürtzPiano84-7I. Andante Grazioso12:5084-8II. Menuetto5:5084-9III. Alla Turca. Allegretto3:24Piano Sonata No. 12 in F Major, K. 332882804Klára WürtzPiano85-1I. Allegro6:3285-2II. Adagio4:4385-3III. Allegro Assai6:50Piano Sonata No. 13 in B-Flat Major, K. 333882804Klára WürtzPiano85-4I. Allegro7:2385-5II. Andante Cantabile5:5485-6III. Allegretto Grazioso6:36Piano Sonata No. 14 in C Minor, K. 457882804Klára WürtzPiano85-7I. Allegro Molto5:2885-8II. Adagio7:4385-9III. Allegro Assai4:20Piano Sonata No. 15 in F Major, K. 533882804Klára WürtzPiano86-1I. Allegro7:3286-2II. Andante6:3186-3III. Rondeau. Allegretto6:21Piano Sonata No. 16 in C Major, K. 545882804Klára WürtzPiano86-4I. Allegro3:1686-5II. Andante4:0686-6III. Rondo1:38Piano Sonata No. 17 in B-Flat Major, K. 570882804Klára WürtzPiano86-7I. Allegro5:4086-8II. Adagio7:2186-9III. Allegretto3:25Piano Sonata No. 18 in D Major, K. 576882804Klára WürtzPiano86-10I. Allegro5:0786-11II. Adagio5:2986-12III. Allegretto4:2287-1Nine Variations On The Arietta “Lison Dormait” From The Opera Julie By Nicolas Dezède, K. 264 (1778)14:20882827Bart van OortFortepiano87-2Twelve Variations On The French Song ‘La Belle Françoise’, K. 353 (1778)14:11882827Bart van OortFortepiano87-3Twelve Variations On The Romance ‘Je Suis Lindor’ From Le Barbier de Seville By Beaumarchais, Music By Antoine Laurent Baudron, K. 354 (1778)15:13882827Bart van OortFortepiano87-4Eight Variations On The Chorus ‘Dieu D’amour’ From The Opera Les Mariages Samnites By André Ernest Modeste Grétry, K. 352 (1781)11:16882827Bart van OortFortepiano87-5Six Variations On The Aria ‘Salve Tu, Domine’ From The Opera I Filosof I Immaginarii By Giovanni Paisiello, K. 398 (1783)6:47882827Bart van OortFortepiano88-1Six Variations On A Theme From The Clarinet Quintet (K581), K. Anh. 1379:01882827Bart van OortFortepiano88-2Ten Variations On The Aria ‘Unser Dummer Pöbel Meint’ From La Rencontre Imprévue By Christoph Willibald Gluck, K. 455 (1783-4)12:52882827Bart van OortFortepiano88-3Twelve Variations On An Allegretto, K. 500 (1786)8:39882827Bart van OortFortepiano88-4Nine Variations On A Menuet By Jean Pierre Duport, K. 573 (1789)13:34882827Bart van OortFortepiano88-5Eight Variations On The Song ‘Ein Weib Ist Das Herrlichste Ding’ From The Singspiel Der Dumme Gärtner By J. Schack Or F. Gerl, K. 613 (1791)13:58882827Bart van OortFortepiano89-1Twelve Variations On The French Song ‘Ah, Vous Dirai[je, Maman’ In C Major, K. 256 (1781-2)12:17884530Pieter-Jan BelderFortepiano89-2Eight Variations On The Dutch Song ‘Laat Ons Juichen, Batavieren!’ By Chr. E. Graaf In G Major, K. 24 (1766)5:38884530Pieter-Jan BelderFortepiano89-3Seven Variations On The Dutch Song ‘Wilhelmus van Nassau’ In D Major, K. 25 (1766)6:24884530Pieter-Jan BelderFortepiano89-4Twelve Variations On A Menuet By J.C. Fischer In C Major, K. 179 (1774)18:53884530Pieter-Jan BelderFortepiano89-5Eight Variations On ‘Come Un’agnello’ From Fra I Due Litiganti By G. Sarti In A Major, K. 460 (1782)3:58884530Pieter-Jan BelderFortepiano89-6Six Variations On ‘Mio Caro Adone’ From La F Iera di Venezia By Antonio Salieri In G Major, K. 180 (1772)7:33884530Pieter-Jan BelderFortepiano89-7Five Variations In F Major, K. 54 (K Anh. 138a)5:20884530Pieter-Jan BelderFortepiano90-1Andante in B-Flat Major, K. 15ii3:22894582Bernard FoccroulleOrgan90-2Klavierstück in F Major, K. 331:06894582Bernard FoccroulleOrgan90-3Molto allegro in G Major, K. 72a1:25894582Bernard FoccroulleOrgan90-4Andante in C Major, K. 1a0:24890944Guy PensonClavichord90-5Allegro in C Major, K. 1b0:15890944Guy PensonClavichord90-6Allegro in F Majorr, K. 1c0:39890944Guy PensonClavichord90-7Menuet in F Major, K. 1d1:22890944Guy PensonClavichord90-8Menuet in G Major, K. 1e0:53890944Guy PensonClavichord90-9Menuet in C Major, K. 1f1:01890944Guy PensonClavichord90-10Menuet in F Major, K. 20:42890944Guy PensonHarpsichord90-11Allegro in B-Flat Major, K. 31:03890944Guy PensonHarpsichord90-12Menuet in F Major, K. 41:24890944Guy PensonHarpsichord90-13Menuet in F Major, K. 50:57890944Guy PensonHarpsichord90-14Allegro in C Major, K. 9a (5a)2:32890944Guy PensonHarpsichord90-15Allegro in F Major, K. 15a1:19890944Guy PensonClavichord90-16Allegro in F Major, K. 15m1:22890944Guy PensonClavichord90-17Menuet in C Major, K. 61g II2:07890944Guy PensonHarpsichord90-18Menuet in D Major, K. 94 (73h)1:18890944Guy PensonHarpsichord90-198 Menuets, K. 315a (315g)15:07890944Guy PensonPiano [Tangentenflügel]90-20Sonatensatz in G Minor, K. 312 (189i, 590d)5:37890944Guy PensonHarpsichord90-21Capriccio in C Major, K. 395 (300g)4:56890944Guy PensonPiano [Tangentenflügel]90-22Fugue in G Minor, K. 401 (375e)4:43894582Bernard FoccroulleOrgan91-1Prelude and Fugue in C Major, K. 39410:05479121Luc DevosFortepiano [Pianoforte]91-2March in C Major, K. 408/13:30479121Luc DevosFortepiano [Pianoforte]91-3Fantasia in C Minor, K. 3968:09479121Luc DevosFortepiano [Pianoforte]91-4Fantasia in D Minor, K. 3975:37479121Luc DevosFortepiano [Pianoforte]Suite in C Major, K. 399890944Guy PensonHarpsichord91-5I. Ouverture4:0591-6II. Allemande5:0991-7III. Courante2:4091-8Sonatensatz in B-Flat Major, K. 400 (372a)4:44479121Luc DevosFortepiano [Pianoforte]91-9Marche funèbre, del Sign. Maestro Contrapunto, K. 453a1:55479121Luc DevosFortepiano [Pianoforte]91-10Fantasia in C Minor, K. 47511:59479121Luc DevosFortepiano [Pianoforte]91-11Rondo in D Major, K. 4856:11479121Luc DevosFortepiano [Pianoforte]92-1Six German Dances, K. 5098:53479121Luc DevosFortepiano [Pianoforte]92-2Rondo in A Minor, K. 5119:57479121Luc DevosFortepiano [Pianoforte]92-3Adagio in B Minor, K. 54012:25479121Luc DevosFortepiano [Pianoforte]92-4Allegro in F Major, K. Anh. 1356:14479121Luc DevosFortepiano [Pianoforte]92-5Allegretto in F Major, K. Anh. 1351:56479121Luc DevosFortepiano [Pianoforte]92-6Menuet in D Major, K. 355 (576b)3:28479121Luc DevosFortepiano [Pianoforte]92-7Andantino in E-Flat Major, K. 236 (588b)1:43479121Luc DevosFortepiano [Pianoforte]92-8Eine Kleine Gigue in G Major, K. 5742:02894582Bernard FoccroulleOrgan92-9Andante in F Major, K. 6167:09894582Bernard FoccroulleOrgan92-10Adagio in C Major, K. 356 (617a)4:40561464Dennis JamesGlass HarmonicaSonata in D Major, K. 381882827Bart van OortFortepiano [Primo]895682Ursula DütschlerFortepiano [Secundo]93-1I. Allegro5:4293-2II. Andante8:2393-3III. Allegro Molto4:1893-4Fugue in G Minor, K. 4013:38882827Bart van OortFortepiano [Primo]895682Ursula DütschlerFortepiano [Secundo]Sonata in F Major, K. 497882827Bart van OortFortepiano [Primo]895682Ursula DütschlerFortepiano [Secundo]93-5I. Adagio - Allegro Di Molto12:2293-6II. Andante13:3093-7III. Allegro7:46Sonata in C Major, K. 19d895682Ursula DütschlerFortepiano [Primo]882827Bart van OortFortepiano [Secundo]94-1I. Allegro6:1994-2II. Menuetto3:1194-3III. Rondeau. Allegretto5:3194-4Fantasy in F Minor for Mechanical Organ, K. 6089:11895682Ursula DütschlerFortepiano [Primo]882827Bart van OortFortepiano [Secundo]94-5Andante and Variations in G Major, K. 5017:48895682Ursula DütschlerFortepiano [Primo]882827Bart van OortFortepiano [Secundo]Sonata in C Major, K. 521895682Ursula DütschlerFortepiano [Primo]882827Bart van OortFortepiano [Secundo]94-6I. Allegro13:2094-7II. Andante6:4094-8III. Allegretto8:11Sonata in B-Flat Major, K. 358895682Ursula DütschlerFortepiano95-1I. Allegro5:3995-2II. Adagio6:5295-3III. Molto Presto4:1095-4Adagio and Allegro in F Minor for Mechanical Organ, K. 5949:01882827Bart van OortFortepiano95-5Fugue in C Minor for Two Pianos, K. 4264:14895682Ursula DütschlerFortepianoSonata in D Major for Two Pianos, K. 448882827Bart van OortFortepiano95-6I. Allegro Con Spirito11:3095-7II. Andante9:2995-8III. Molto Allegro6:37Organ Works895708Martin HaselböckOrgan96-1Große Fantasie in F Minor, K. 60810:0596-2Fantasie In F Minor: Adagio - Allegro - Adagio, K. 59411:1296-3Andante in F Major, K. 6167:2496-4Ouverture in C Major, K. 3994:4596-5Eine Kleine Gigue, KV 5741:3996-6Adagio in C Major, K. 536 (617a)3:0996-7Fugue In G Minor KV 154 (385k)2:4796-7Fugue In E Flat Major KV 153 (375f)2:4296-8Fugue In G Minor KV 401 (375e)4:53Volume 7: Sacred WorksRequiem in D Minor, K. 626882753Barbara WernerAlto Vocals882795Thomas PfeifferBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimOrchestra882803Pamela HeuvelmansSoprano Vocals2018544Robert MorvaiRobert MorvajTenor Vocals97-1I. Introitus. Requiem Aeternam4:4697-2II. Kyrie Eleison2:4597-3III. Dies Irae1:5897-4IV. Tuba Mirum3:0697-5V. Rex Tremendae2:0997-6VI. Recordare4:2497-7VII. Confutatis2:2997-8VIII. Lacrimosa3:0497-9IX. Domine Jesu3:4697-10X. Hostias4:0097-11XI. Sanctus1:4097-12XII. Benedictus4:2797-13XIII. Agnus Dei4:0397-14XIV. Lux Aeterna5:39Litaniae de Venerabili Altaris Sacramento In E-Flat Major, K. 243882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882799Annemarie KremerSoprano Vocals98-1I. Kyrie Eleison3:2498-2II. Panis Vivus5:0498-3III. Verbum Caro Factum0:5898-4IV. Hostia Sancta3:3398-5V. Tremendum2:3498-6VI. Dulcissimum Convivium4:0298-7VII. Viaticum1:3098-8VIII. Pignus Futurae Gloriae5:2198-9IX. Agnus Dei6:11Litaniae Lauretanae In B-Flat Major, K. 109882788Chamber Choir Of EuropeChoir882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra98-10I. Kyrie Eleison1:3898-11II. Sancta Maria3:3698-12III. Salus Infirmorum1:0098-13IV. Regina Angelorum1:4498-14V. Agnus Dei2:26Litaniae de Venerabili Altaris Sacramento In B-Flat Major, K. 125882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimOrchestra882803Pamela HeuvelmansSoprano Vocals99-1I. Kyrie Eleison4:0499-2II. Panis Vivus4:3099-3III. Verbum Caro Factum0:4999-4IV. Hostia Sancta3:3399-5V. Tremendum1:1999-6VI. Panis Omnipotentia6:5899-7VII. Viaticum1:2499-8VIII. Pignus Futurae Gloriae4:5299-9IX. Agnus Dei6:19Litaniae Lauretanae In D Major, K. 195882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882799Annemarie KremerSoprano Vocals99-10I. Kyrie Eleison5:3099-11II. Sancta Maria10:2999-12III. Salus Infirmorum2:3599-13IV. Regina Angelorum4:4699-14V. Agnus Dei6:23Vesperae Solennes de Dominica In C Major, K. 321882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882799Annemarie KremerSoprano Vocals100-1I. Dixit Dominus3:19100-2II. Confitebor5:35100-3III. Beatus Vir4:35100-4IV. Laudate Pueri4:15100-5V. Laudate Dominum4:55100-6VI. Magnificat4:50Vesperae Solennes de Confessore In C Major, K. 339882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882803Pamela HeuvelmansSoprano Vocals100-7I. Dixit Dominus4:17100-8II. Confitebor4:06100-9III. Beatus Vir5:07100-10IV. Laudate Pueri3:48100-11V. Laudate Dominum5:05100-12VI. Magnificat4:55Regina Coeli in C Major, K. 108882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimOrchestra882803Pamela HeuvelmansSoprano Vocals101-1I. Allegro3:20101-2II. Tempo Moderato3:48101-3III. Adagio Un Poco Andante4:21101-4IV. Allegro3:20Regine Coeli in B-Flat Major, K. 127882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882799Annemarie KremerSoprano Vocals101-5I. Allegro Maestoso3:41101-6II. Andante8:19101-7III. Allegro2:47101-8Sancta Maria, Mater Dei In F Major, K. 2733:23882788Chamber Choir Of EuropeChoir882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra101-9Regina Coeli In C Major, K. 2766:46882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimOrchestraScande Coeli Limina, K. 34882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra102-1I. Scande Coeli Limina3:06102-2II. Cara O Pignora1:42102-3Inter Natos Mulierium, K. 725:47882753Barbara WernerAlto Vocals882775Christof FischesserBass Vocals882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra897866Marietta FischesserSoprano Vocals897864Benoit HallerTenor VocalsBenedictus Sit Deus, K. 117882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra102-4I. Benedictus Sit Deus1:42102-5II. Aria3:57102-6III. Jubilate1:59102-7Sub Tuum Praesidium, K. 1984:19882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra102-8Misericordias Domini, K. 2227:36882753Barbara WernerAlto Vocals897867Manfred BittnerBass Vocals882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra897863Anja TilchSoprano Vocals897865Daniel Schreiber (2)Tenor Vocals102-9Venite Populi, K. 2604:59882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra102-10Alma Dei Creatoris, K. 2775:19882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra102-11God Is Our Refuge, K. 203:57882809Nicol MattConductorMiserere, K. 85882753Barbara WernerAlto Vocals897867Manfred BittnerBass Vocals882809Nicol MattConductor, Organ897863Anja TilchSoprano Vocals897865Daniel Schreiber (2)Tenor Vocals102-12I. Miserere0:35102-13II. Et Secundum1:01102-14III. Quoniam0:59102-15IV. Ecce0:47102-16V. Asperges0:55102-17VI. Averte0:42102-18VII. Ne Projicias0:51102-19VIII. Docebo1:29102-20Quaerite Primum Regnum Dei, K. 861:28897867Manfred BittnerBass Vocals882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestraZwei Deutsche, Kirchenlieder, K. 343882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra102-21I. O Gottes Lamm, K. 343a1:46102-22II. Als Aus Aegypten, K. 343b9:06103-1Veni Sancte Spiritus In C Major, K. 474:34882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimOrchestraTe Deum Laudamus, K. 141882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra103-2I. Te Deum Laudamus2:19103-3II. Te Ergo Quaesumus0:38103-4III. Aeterna Fac1:58103-5IV. In Te Domino Speravi2:02103-6Ergo Interest In G Major, K. 1435:58882788Chamber Choir Of EuropeChoir882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra882799Annemarie KremerSoprano Vocals103-7Kommet Her, Ihr Frechen Sünder In B-flat Major, K. 1464:02882788Chamber Choir Of EuropeChoir882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestra897863Anja TilchSoprano VocalsExsultate, Jubilate, K. 165882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüddeutsches Kammerorchester PforzheimOrchestra882799Annemarie KremerSoprano Vocals103-8I. Exsultate, Jubilate4:57103-9II. Recitativo. Tandem Ad Venit Hora0:55103-10III. Tu Virginum Corona7:40103-11IV. Alleluja2:55Dixit Dominus A Magnificat In C Major, K. 193882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra103-12I. Dixit Dominus4:33103-13II. Magnificat5:57103-14Tantum Ergo, In D Major KV 1973:27882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra103-15Ave Verum Corpus In D Major, K. 6183:05882788Chamber Choir Of EuropeChoir882809Nicol MattConductor896092Teatro Armonico StuttgartOrchestraMass in C Minor, K. 427882775Christof FischesserBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor893241Camerata WürzburgOrchestra882755Jens WollenschlägerOrgan882793Valentina FarcasSoprano Vocals [Ⅰ]882799Annemarie KremerSoprano Vocals [Ⅱ]882812Daniel SansTenor Vocals104-1I. Kyrie7:26104-2II. Gloria. Gloria In Excelsis2:27104-3II. Gloria. Laudamus Te5:02104-4II. Gloria. Gratias Agimus Tibi1:09104-5II. Gloria. Domine Deus2:44104-6II. Gloria. Qui Tollis5:12104-7II. Gloria. Quoniam Tu Solus3:51104-8II. Gloria. Jesu Christe0:46104-9II. Gloria. Cum Sancto Spiritu4:01104-10III. Credo. Credo In Unum Deum3:37104-11III. Credo. Et Incarnatus Est9:06104-12II. Gloria. Sanctus1:36104-13II. Gloria. Hosanna2:07104-14II. Gloria. Benedictus5:20105-1Kyrie in D Minor, K. 3417:25882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestraMissa Solemnis In C Major, K. 337882753Barbara WernerAlto Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan897866Marietta FischesserSoprano Vocals897864Benoit HallerTenor Vocals105-2I. Kyrie1:53105-3II. Gloria3:26105-4III. Credo5:49105-5IV. Sanctus1:41105-6V. Benedictus2:18105-7VI. Agnus Dei6:40Mass In C Major, K. 317 “Krönungs-Messe”882753Barbara WernerAlto Vocals882788Chamber Choir Of EuropeChoir1046945Südwestdeutsches KammerorchesterSüdwestdeutsches Kammerorchester PforzheimOrchestra882755Jens WollenschlägerOrgan882809Nicol MattOrgan882803Pamela HeuvelmansSoprano Vocals897864Benoit HallerTenor Vocals105-8I. Kyrie3:18105-9II. Gloria4:42105-10III. Credo6:55105-11IV. Sanctus2:03105-12V. Benedictus3:24105-13VI. Agnus Dei6:21Missa Brevis In B-Flat Major, K. 275898630Gabriele WundererAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimKammerorchester MannheimOrchestra882755Jens WollenschlägerJens WollenschägerOrgan898629Anja BittnerSoprano Vocals2018544Robert MorvaiRobert MorvajTenor Vocals106-1I. Kyrie1:51106-2II. Gloria2:54106-3III. Credo4:53106-4IV. Sanctus1:07106-5V. Benedictus2:55106-6VI. Agnus Dei5:30Missa Longa In C Major, K. 262882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimKammerorchester MannheimOrchestra882755Jens WollenschlägerJens WollenschägerOrgan897866Marietta FischesserSoprano Vocals882753Barbara WernerTenor Vocals897864Benoit HallerTenor Vocals106-7I. Kyrie3:15106-8II. Gloria5:29106-9III. Credo11:58106-10IV. Sanctus1:11106-11V. Benedictus2:03106-12VI. Agnus Dei4:04Missa Brevis In C Major, K. 259 “Orgelsolo-Messe”882753Barbara WernerAlto Vocals882775Christof FischesserBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerJens WollenslägerOrgan898908Petra LabitzkeSoprano Vocals882812Daniel SansTenor Vocals107-1I. Kyrie2:00107-2II. Gloria1:58107-3III. Credo3:39107-4IV. Sanctus0:57107-5V. Benedictus2:08107-6VI. Agnus Dei2:37Missa Brevis In C Major, K. 258 “Spaur-Messe”882753Barbara WernerAlto Vocals882775Christof FischesserBass Vocals882788Chamber Choir Of EuropeChoir882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerJens WollenslägerOrgan882809Nicol MattOrgan898908Petra LabitzkeSoprano Vocals882812Daniel SansTenor Vocals107-7I. Kyrie1:48107-8II. Gloria2:31107-9III. Credo4:47107-10IV. Sanctus1:05107-11V. Benedictus2:53107-12VI. Agnus Dei4:28Missa in C Major, K. 257 “Credo-Messe”882753Barbara WernerAlto Vocals882775Christof FischesserBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerJens WollenslägerOrgan897866Marietta FischesserSoprano Vocals897864Benoit HallerTenor Vocals107-13I. Kyrie2:17107-14II. Gloria3:38107-15III. Credo In Unum Deum1:58107-16IV. Et Incarnatus Est7:02107-17V. Sanctus1:08107-18VI. Benedictus5:39107-19VII. Agnus Dei6:04Missa Brevis In C Major, K. 220 “Spatzen-Messe”882753Barbara WernerAlto Vocals882775Christof FischesserBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan898908Petra LabitzkeSoprano Vocals882812Daniel SansTenor Vocals108-1I. Kyrie1:54108-2II. Gloria2:55108-3III. Credo4:26108-4IV. Sanctus0:49108-5V. Benedictus3:06108-6VI. Agnus Dei3:13Missa Brevis In D Major, K. 194898630Gabriele WundererAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan898629Anja BittnerSoprano Vocals2018544Robert MorvaiRobert MorvajTenor Vocals108-7I. Kyrie1:43108-8II. Gloria2:45108-9III. Credo5:34108-10IV. Sanctus1:16108-11V. Benedictus1:46108-12VI. Agnus Dei4:07Missa Brevis In F Major, K. 192898630Gabriele WundererAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan898629Anja BittnerSoprano Vocals2018544Robert MorvaiRobert MorvajTenor Vocals108-13I. Kyrie3:24108-14II. Gloria4:56108-15III. Credo5:42108-16IV. Sanctus1:14108-17V. Benedictus1:56108-18VI. Agnus Dei3:41Missa In C Major, K. 167 “In Honorem Ssmae Trinitatis”882788Chamber Choir Of EuropeChoir882809Nicol MattConductor893241Camerata WürzburgOrchestra109-1I. Kyrie2:55109-2II. Gloria4:12109-3III. Credo In Unum Deum2:28109-4IV. Et Incarnatus Est3:32109-5V. Et In Spiritum Sanctum2:46109-6VI. Et Unam Sanctam Catholicam1:10109-7VII. Et Vitam Venturi Saeculi2:36109-8VIII. Sanctus1:22109-9IX. Benedictus3:12109-10X. Agnus Dei4:50Missa Brevis In G Major, K. 140882753Barbara WernerAlto Vocals882775Christof FischesserBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan882812Daniel SansSoprano Vocals898908Petra LabitzkeSoprano Vocals109-11I. Kyrie1:17109-12II. Gloria3:52109-13III. Credo4:47CD109-14IV. Sanctus0:569-15V. Benedictus1:25109-16VI. Agnus Dei4:00Missa Solemnis In C Minor, K. 139 “Waisenhaus-Messe”882753Barbara WernerAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüdwestdeutsches Kammerorchester PforzheimOrchestra882755Jens WollenschlägerOrgan898629Anja BittnerSoprano Vocals899541Gerhard NennemannTenor Vocals110-1I. Kyrie. Kyrie Eleison No. 14:04110-2I. Kyrie. Christe Eleison1:05110-3I. Kyrie. Kyrie Eleison No. 22:17110-4II. Gloria. Gloria In Excelsis Deo0:43110-5II. Gloria. Laudamus Te1:50110-6II. Gloria. Gratias Agimus Tibi1:16110-7II. Gloria. Domine Deus1:52110-8II. Gloria. Qui Tollis1:50110-9II. Gloria. Quoniam Tu Solus Sanctus2:10110-10II. Gloria. Cum Sancto Spiritu2:34110-11III. Credo. Credo In Unum Deum2:06110-12III. Credo. Et Incarnatus Est2:59110-13III. Credo. Crucifixus2:01110-14III. Credo. Et Resurrexit1:24110-15III. Credo. Et In Spiritum Sanctum1:51110-16III. Credo. Et Unam Sanctam Catholicam0:54110-17III. Credo. Et Vitam Venturi Saeculi2:20110-18IV. Sanctus1:54110-19V. Benedictus2:48110-20VI. Agnus Dei. Agnus Dei3:55110-21VI. Agnus Dei. Dona Nobis Pacem1:53Missa Brevis In D Minor, K. 65898630Gabriele WundererAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan898629Anja BittnerSoprano Vocals2018544Robert MorvaiRobert MorvajTenor Vocals110-22I. Kyrie1:35110-23II. Gloria2:07110-24III. Credo4:55110-25IV. Sanctus0:55110-26V. Benedictus1:19110-27VI. Agnus Dei2:04Missa In C Major, K. 66 “Dominicus-Messe”882753Barbara WernerAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor1046945Südwestdeutsches KammerorchesterSüdwestdeutsches Kammerorchester PforzheimOrchestra882755Jens WollenschlägerOrgan882799Annemarie KremerSoprano Vocals [Solo Arias]897864Benoit HallerTenor Vocals111-1I. Kyrie3:37111-2II. Gloria. Gloria In Excelsis Deo0:29111-3II. Gloria. Laudamus Te2:48111-4II. Gloria. Gratias Agimus Tibi1:03111-5II. Gloria. Domine Deus2:40111-6II. Gloria. Qui Tollis3:16111-7II. Gloria. Quoniam Tu Solus Sanctus4:06111-8II. Gloria. Cum Sancto Spiritu2:50111-9III. Credo. Credo In Unum Deum2:07111-10III. Credo. Et Incarnatus Est3:40111-11III. Credo. Crucifixus2:15111-12III. Credo. Et Resurrexit1:11111-13III. Credo. Et In Spiritum Sanctum3:02111-14III. Credo. Et In Unam Sanctam Catholicam1:43111-15III. Credo. Et Vitam Venturi Saeculi2:14111-16IV. Sanctus2:26111-17V. Benedictus2:23111-18VI. Agnus Dei4:20Missa Brevis In G Major, K. 49898630Gabriele WundererAlto Vocals897867Manfred BittnerBass Vocals882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestra882755Jens WollenschlägerOrgan898629Anja BittnerSoprano Vocals2018544Robert MorvaiRobert MorvajTenor Vocals111-19I. Kyrie1:28111-20II. Gloria3:26111-21III. Credo7:16111-22IV. Sanctus1:30111-23V. Benedictus1:42111-24VI. Agnus Dei2:21111-25Kyrie in F Major, K. 332:22882788Chamber Choir Of EuropeChoir882809Nicol MattConductor882817Kurpfälzisches Kammerorchester MannheimOrchestraLa Betulia Liberata, K. 118 (Azione Sacra In Due Parte)899564Coro Del Centro Di Musica Antica Di PadovaChoir899565Peter MaagConductor861790Pietro MetastasioLyrics By [Text]848339Orchestra Di Padova E Del VenetoOrchestra Da Camera Di Padova E Del VenetoOrchestra899569Petteri SalomaaVocals [Achior]899563Lynda RussellVocals [Amital]899567Caterina Trogu RöhrichVocals [Cabri]899562Sabina MacculiVocals [Carmi]899570Gloria BanditelliVocals [Giuditta]899566Ernesto PalacioVocals [Ozia]112-1Sinfonia5:13112-2Recitativo. Popli De Betulia (Ozia)1:03112-3Aria. D’ogni Colpa (Ozia)7:20112-4Recitativo. E In C Majorhe Sperar? (Cabri, Amital)1:41112-5Aria. Ma Quel Virtù (Cabri)4:26112-6Recitativo. Gia Le Memorie Antiche (Ozia, Cabri, Amital)3:54112-7Aria. Non Hai Cor (Amital)5:05112-8Recitativo. E Quel Pace Sperate (Ozia, Amital, Coro)2:43112-9Aria. E Quel Pace Sperate (Ozia, Coro)5:06112-10Recitativo. Chi È Costei (Cabri, Amital, Ozia, Giuditta)3:48112-11Aria. Dal Pari Infeconda (Giuditta)7:14112-12Recitativo. Oh Saggia, Oh Santa (Ozia, Cabri, Giuditta)2:37112-13Aria. Pietà, Se Irato Sei (Ozia, Coro)5:07112-14Recitativo. Signor, Carmi A Te Viene (Cabri, Amital, Ozia, Achior)3:23112-15Aria. Terribile D’aspetto (Achior)4:43112-16Recitativo. Ti Consola, Achior (Ozia, Cabri, Achior, Giuditta)3:03112-17Aria. Parto Inerme, E Non Pavento (Giuditta)7:33112-18Coro. Oh Prodigo! Oh Stupor!2:28113-1Recitativo. Troppo Mal Corrisponde (Achior, Ozia)6:48113-2Aria. Se Dio Vender Tu Vuoi (Ozia)9:33113-3Recitativo. Confuso Io Son (Achior, Ozia, Amital)1:20113-4Aria. Quel Nocchier (Amital)6:54113-5Recitativo. Lungamente Non Dura (Ozia, Amital, Coro, Cabri, Giuditta, Achior)9:14113-6Aria. Prigionier Che Fa Ritorno (Giuditta)8:37113-7Recitativo (Achior)1:15113-8Aria. Te Solo Adoro (Achior)3:52113-9Recitativo. Di Tua Vittoria (Ozia, Amital)0:45113-10Aria. Con Troppa Rea Vilta (Amital)6:22113-11Recitativo. Quanta Cura (Cabri, Carmi, Ozia, Amital)3:11113-12Aria. Quei Moti Che Senti (Carmi)2:37113-13Recitativo. Seguansi, O Carmi (Ozia, Amital, Cabri, Achior, Giuditta)0:55113-14Coro. Lodi Al Gran Dio7:48Die Schuldigkeit Des Ersten Gebots, K. 35833792Roland BaderConductor899626Berliner DomkapelleOrchestra840437Sylvia GesztySoprano Vocals [Barmherzigkeit / Mercy]834067Krisztina LakiSoprano Vocals [Gerechtigkeit / Justice]899625Arleen AugerSoprano Vocals [Weltgeist / Worldliness]899624Claes-Håkan AhnsjöClaes H. AhnsjöTenor Vocals [Christ / Christian]696171Werner HollwegTenor Vocals [Christgeist / Christian Spirit]114-1Sinfonia114-2Recitativo. Die Löblich’ Und Gerechte Bitte (gerechtigkeit, Christgeist, Barmherzigkeit)1:59114-3Aria. Mit Jammer Muß Ich Schauen (christgeist)5:29114-4Recitativo. So Vieler Seelen Fall (barmherzigkeit, Gerechtigkeit)2:16114-5Aria. Ein E Majorrgrimmter Löwe Brüllet (barmherzigkeit)6:15114-6Recitativo. Was Glaubst Du (barmherzigkeit, Gerechtigkeit, Christgeist)3:52114-7Aria. Erwache, Fauler, K. Necht (gerechtigkeit)9:08114-8Recitativo. Er Reget Sich (christgeist, Barmherzigkeit, Gerechtigkeit)0:18114-9Recitativo. Wie, Wer Erwecket Mich (christ, Weltgeist)4:31114-10Aria. Hat Der Schöpfer Dieses Leben (weltgeist)7:19115-1Recitativo. Daß Träume Träume Sind (christ)1:39115-2Aria. Jener Donnerworte, K. Raft (christ)8:50115-3Recitativo. Ist Dieses, O So Zweifle Nimmermehr (weltgeist, Christ, Christgeist)2:03115-4Aria. Schildre Einen Philosophen (weltgeist)5:20115-5Recitativo. Wen Hör’ich Nun Hier In D Majorer Nähe (weltgeist, Christ, Christgeist)4:46115-6Aria. Manches Übel Will Zuweilen (christgeist)8:18115-7Recitativo. Er Hält Mich Einem, K. Ranken Gleich (christ, Christgeist, Weltgeist)2:23115-8Recitativo. Hast Du Nunmehr Erfahren (barmherzigkeit, Christgeist, Gerechtigkeit)1:29115-9Terzetto. Laßt Mir Euer Gnade Schein (christgeist, Barmherzigkeit, Gerechtigkeit)10:38Cantata "Laut Verkünde Unsre Freude" For 2 Tenors, Bass, Men's Chorus & Orchestra, KV 623899693Gottfried HornikBass Vocals899691Chorus ViennensisChorus895708Martin HaselböckConductor899690Wiener AkademieOrchestra835646Christoph PrégardienTenor Vocals899689Helmut WildhaberTenor Vocals116-1Choir: Laut Verkünde Unsre Freude3:52116-2Aria: Dieser Gottheit Allmacht Ruhet4:23116-3Duetto: Lange Sollen Diese Mauern2:42116-4Choir: Laut Verkünde Unsre Freude1:34116-5Lied "Zerfliesset Heut', Geliebte Brüder" For Tenor, Men's Chorus & Organ, KV 4831:59899691Chorus ViennensisChorus895708Martin HaselböckConductor, Organ835646Christoph PrégardienTenor Vocals116-6Lied "Lobgesang Auf Die Feierliche Johannisloge" For Tenor, Men's Chorus & Piano, KV 1483:47899691Chorus ViennensisChorus895708Martin HaselböckConductor, Fortepiano899689Helmut WildhaberTenor Vocals116-7Lied Zur Gesellenreise, For Tenor & Piano, KV 4681:39895708Martin HaselböckFortepiano899689Helmut WildhaberTenor Vocals116-8Lied "Ihr Unsre Neuen Leiter" For Tenor, Men's Chorus & Organ, KV 4682:57899691Chorus ViennensisChorus895708Martin HaselböckConductor, Organ835646Christoph PrégardienTenor Vocals116-9Cantata "Die Maurerfreude" For Tenor, Men's Chorus & Orchestra, KV 4716:33899691Chorus ViennensisChorus895708Martin HaselböckConductor899690Wiener AkademieOrchestra835646Christoph PrégardienTenor Vocals116-10Maurerische Trauermusik KV 4774:23895708Martin HaselböckConductor899690Wiener AkademieOrchestra116-11Cantata "Die Ihr Des Unermesslichen Weltalls SchöpfWiener Akademieer Ehrt" For Tenor & Piano, KV 6196:45895708Martin HaselböckFortepiano899689Helmut WildhaberTenor VocalsCantata "Dir, Seel Des Weltalls, O Sonne" For 2 Tenors, Bass, Men's Chorus & Orchestra, KV 429895709Peter SchneyderBass Vocals899691Chorus ViennensisChoir895708Martin HaselböckConductor899690Wiener AkademieOrchestra835646Christoph PrégardienTenor Vocals899689Helmut WildhaberTenor Vocals116-12Choir: Dir, Seele Des Weltalls2:57116-13Aria: Dir Danken Wir Die Freude3:59116-14Choir: Dir, Sonne Des Weltalls3:01Grabmusik, K. 42 (Cantata For Soprano (Angel), Bass (Soul), Choir, Organ & Orchestra)751505Thomas HampsonBass Vocals857321Concentus VocalisChoir895708Martin HaselböckConductor899690Wiener AkademieOrchestra881437Edith WiensSoprano Vocals117-1I. Recitativo. Wo Bin Ich, Bitt’re Schmerz? (soul) - Aria. Felsen, Spaltet Euren Rachen (soul)7:22117-2Ii. Recitativo. Geliebte Seel’, Was Redest Du? (angel) - Aria. Betracht Dies Herz (angel)4:54117-3III. Recitativo. O Himmel! Was Ein Traurig Licht (soul)1:22117-4IV. Duetto. Jesu, Was Hab Ich Getan? (soul, Angel)3:51117-5V. Recitativo. O Lobenswerter Sinn (angel) - Coro. Jesu, Wahrer Gottessohn4:52Davidde Penitente, K. 469 (Cantata For 2 Sopranos, Tenor, Choir & Orchestra)4911814Collegium Musicum Universität TübingenCollegium Musicum Of The University Of TübingenChoir, Orchestra901591Wilfried FischerConductor901588Gertraud Landwehr-HerrmannSoprano Vocals [Ⅰ]901589Susanne JohnsSoprano Vocals [Ⅱ]901590Hermann FischerTenor Vocals117-6I. Coro. Alzai Le Flebili Voci6:57117-7II. Coro. Cantiam Le Glorie2:34117-8III. Aria. Lungi Le Cure Ingrate (soprano)4:54117-9IV. Coro. Sei Pur Sempre1:21117-10V. Duetto. Sorgi, O Signore (soprano)2:50117-11VI. Aria. A Te, Fra Tanti Affanni (tenor)6:49117-12VII. Coro. Se Vuoi, Puniscimi4:47117-13VIII. Aria. Fra L’oscure Ombre Funeste (soprano)6:25117-14IX. Terzetto. Tutte Le Mie Speranze (two Sopranos, Tenor)4:49117-15X. Coro. Chi In Dio Sol Spera5:44Volume 8: Concert Arias-Songs-CanonsCanons882788Chamber Choir Of EuropeChoir882809Nicol MattChorus Master118-1Canon. Adagio, K. 4101:07118-2Canon. Leck mir den Arsch, K. 2331:46118-3Canon. Lieber Freistädtler, K. 2322:18118-4Canon, K. 508a No. 11:03118-5Canon. O du eselhafter Martin, K. 560b2:47118-6Canon. Bona nox, K. 5611:16118-7Canon, K. 508a No. 20:53118-8Canon. Leck mich im Arsch, K. 2311:59118-9Canon, K. 508a No. 31:08118-10Canon. Kyrie, K. 895:41118-11Canon. Alleluja, K. 5531:24118-12Canon. Ave Maria, K. 5541:52118-13Canon. Dona nobis pacem, K. 1091:11118-14Canon, K. 508a No. 41:19118-15Canon. Heiterkeit, K. 5071:14118-16Canon. Hei wenn die Gläser, K. 89a0:51118-17Canon, K. 508a No. 51:17118-18Canon. Essen, trinken, K. 2341:26118-19Canon. Auf das Wohl, K. 5080:58118-20Canon, K. 508a No. 61:01118-21Canon. Incipe, K. 89a II1:56118-22Canon. Cantate Domino, K. 89a II1:51118-23Canon. Confitebor tibi, K. 89a II1:48118-24Canon. Tebana bella, K. 89a II1:07118-25Canon, K. 508a No. 71:26118-26Canon. G’rechtelt’s enk, K. 5561:16118-27Canon. Gehn wir im Prater, K. 5582:00118-28Canon, K. 508a No. 81:23118-29Canon. V’amo di core, K. 3481:49118-30Canon. Lacrimosa, K. 5551:54118-31Canon. Caro bell’idol mio, K. 5621:55118-32Canon. Nascoso e il mio sol, K. 5572:37118-33Canon. Difficile lectu, K. 5591:22118-34Canon, K. 508b2:16118-35Canon. Seht, Sie ist dahin, K. 2292:18118-36Canon. Selig, selig alle, K. 2302:10118-37Canon. Heil dem Tag, K. 3471:44118-38Canon for 2 violins, viola and bass, K. 1911:10118-39Canon. Horch, ihr süßes Lied, K. 562a1:05118-40Canon. Lebet wohl, K. 2281:04118-41Canon. Sinkt die Nacht, K. 109d1:26Concert Arias I: Concert Arias For Soprano And Orchestra891267Ed SpanjaardConductor891269European SinfoniettaOrchestra837122Francine van der HeijdenFrancine van der HeydenSoprano Vocals119-1Der Liebe Himmlisches Gefühl, K. 1196:17119-2Vorrei Spiegarvi, Oh Dio, K. 4186:16119-3Cara, Se Le Mie Pene, K. Deest9:41119-4Se Tutti I Mali Miei, K. 837:51119-5Alcandro, Lo Confesso…Non Sò D’onde Viene, K. 2949:24119-6Se Ardire, E Speranza, K. 826:42119-7Ah, Spiegarti, Oh Dio, K. 1783:16Concert Arias II: Concert Arias For Soprano & Orchestra891267Ed SpanjaardConductor891269European SinfoniettaOrchestra891270Miranda van KralingenSoprano Vocals120-1Ch’io Mi Scordi di Te…Non Temer, Amato Bene, K. 50510:07120-2Alma Grande E Nobil Core, K. 5784:43120-3A Questo Seno…Or Che Il Cielo, K. 3748:12120-4Basta vincesti…Ah, non lasciarmi, K. 486a (295a)5:24120-5Al Desio, di Chi T’adora, K. 5775:55120-6Conservati Fedele, K. 236:59120-7Voi Avete Un Cor Fedele, K. 2177:02120-8Misero Mi…Misero Pargoletto, K. 7713:01120-9Nehmt Meinen Dank, K. 3833:12Concert Arias III: Concert Arias For Tenor & Orchestra891277Wilhelm KeitelConductor848261The Chamber Orchestra Of EuropeEuropean Chamber OrchestraOrchestra891278Marcel ReijansTenor Vocals121-1Va, Dal Furor Portata, K. 21 (19c)5:58121-2Or Che Il Dover…Tali E Cotanti Sono, K. 36 (33i)8:43121-3Si Mostra la Sorte, K. 2092:42121-4Con Ossequio, Con Rispetto, K. 2102:57121-5Clarice Cara Mia Sposa, K. 2561:46121-6Se Al Labbro Mio Non Credi, K. 29510:01121-7Per Pietà, Non Ricercate, K. 4205:43121-8Misero! o sogno...Aura, che intorno spiri, K. 4319:23Concert Arias IV: Concert Arias For Bass & Orchestra891289Ezio Maria TisiBass Vocals891277Wilhelm KeitelConductor848261The Chamber Orchestra Of EuropeEuropean Chamber OrchestraOrchestra122-1Io ti lascio, K. Anh. 2453:07122-2Così dunque tradisci...Aspri rimorsi atroci, K. 432 (421a)3:58122-3Dite almeno in C Majorhe mancai, K. 4796:29891288Christian TchelebievBass Vocals891287Caroline VitaleMezzo-soprano Vocals891278Marcel ReijansTenor Vocals122-4Mandina amabile, K. 4805:00891287Caroline VitaleMezzo-soprano Vocals891278Marcel ReijansTenor Vocals122-5Alcandro, lo confesso…Non sò, d’onde viene, K. 5127:07122-6Mentre ti lascio, K. 5136:59122-7Ich möchte wohl den, K. aiser sein, K. 5392:47122-8Un bacio di mano, K. 5412:19122-9Per questa bella mano, K. 6127:08Popoli di tessaglia, K. 316882799Annemarie KremerSoprano Vocals122-10I. Popoli Di Tessaglia122-11II. Io Non ChiedoConcert Arias V: Concert Arias For Soprano & Orchestra840036Hartmut HaenchenConductor1092669Kammerorchester Carl Philipp Emanuel BachOrchestra848540Christiane OelzeSoprano Vocals123-1Ah Se In C Majoriel, Benigne Stelle, K. 5387:23123-2Chi Sà, Chi Sà, Qual Sia, K. 5823:09123-3Vado, Ma Dove? Oh Dei!, K. 5834:02123-4Ch’io Mi Scordi Te? Non Temer, Amato Bene, K. 4908:43123-5Per Pietà, Bell’idol Mio, K. 78 (73b)3:15123-6Oh, temerario Arbace, K. 79 (73d)5:20123-7Bella mia fiamma, addio!…Resta, oh cara, K. 5288:49123-8Ah, lo previdi!…Ah, t’invola…Deh, non varcar, K. 27212:12123-9Misera, dove son!…Ah! non son’io che parlo, K. 3696:42Concert Arias VI: Concert Arias For Soprano & Orchestra833108Otmar SuitnerConductor578737Staatskapelle DresdenOrchestra840437Sylvia GesztySoprano Vocals124-1Mia Speranza Adorata! - Ah, Non Sai, Qual Pena Sia Il Doverti, KV 416 - Recitativo2:08124-2Mia Speranza Adorata! - Ah, Non Sai, Qual Pena Sia Il Doverti, KV 416 - Rondo6:25124-3Non curo l’affetto, K. 74b4:35124-4Fra cento affanni, K. 889:36124-5A Berenice... Sol Nascente, KV 70 - Recitativo: A Berenice2:43124-6A Berenice... Sol Nascente, KV 70 - Aria: Sol Nascente9:03124-7Ma, che vi fece, o stelle a Sperai vicino il lido, K. 368 - Recitativo: Ma, Che Vi Fece, O Stelle1:20124-8Ma, che vi fece, o stelle a Sperai vicino il lido, K. 368 - Aria: Sperai Vicino Il Lido7:05124-9No, no, che non sei capace, K. 4194:28Songs I890873Bas RamselaarBass-Baritone Vocals882827Bart van OortFortepiano125-1An die Freude, K. 534:24891328Johann Peter UzLyrics By125-2Auf die feierliche Johannisloge, K. 1483:14891324Ludwig Friedrich LenzLyrics By125-3Dans un bois solitaire, K. 3082:57891321Antoine Houdart de la MotteLyrics By125-4Die Zufriedenheit, K. 3492:47891330Johann Martin MillerLyrics By125-5Sei du mein Trost, K. 3913:02891323Johann Timotheus HermesLyrics By125-6Lied zur Gesellenreise, K. 4683:17891327Joseph Franz von RatschkyLyrics By125-7Die Zufriedenheit, K. 4732:15891325Christian Felix WeißeLyrics By125-8Die betrogene Welt, K. 4742:55891325Christian Felix WeißeLyrics By125-9Lied der Freiheit, K. 5062:12891329Johannes Aloys BlumauerLyrics By125-10Zwei Deutsche Kirchenlieder, K. 343 - O Gotteslamm1:41125-11Zwei Deutsche Kirchenlieder, K. 343 - Als Aus Ägypten2:22125-12Die Verschweigung, K. 5183:22891325Christian Felix WeißeLyrics By125-13Das Lied der Trennung, K. 5196:16891320Klamer Eberhard Karl SchmidtLyrics By125-14Abendempfindung an Laura, K. 5234:27125-15An Chloe, K. 5242:32891326Johann Georg JacobiLyrics By125-16Das Traumbild, K. 5304:10891322Ludwig Heinrich Christoph HöltyLyrics By125-17Lied beim Auszug in das Feld, K. 5522:47Songs II882827Bart van OortFortepiano379697Claron McFaddenSoprano Vocals126-1Oiseaux, si tous les ans, K. 3071:33891355Antoine FerrandLyrics By126-2Dans un bois solitaire, K. 3083:03891321Antoine Houdart de la MotteLyrics By126-3Wie unglücklich bin ich nit, K. 1470:59355Unknown ArtistLyrics By126-4Ich wurd’ auf meinem Pfad, K. 3903:04891323Johann Timotheus HermesLyrics By126-5Verdankt sei es dem Glanz der Großen, K. 3923:01891323Johann Timotheus HermesLyrics By126-6Der Zauberer, K. 4722:11891325Christian Felix WeißeChristian Friedrich WeißeLyrics By126-7Das Veilchen, K. 4762:40573251Johann Wolfgang von GoetheLyrics By126-8Die Alte, K. 5174:00891350Friedrich von HagedornLyrics By126-9Als Luise die Briefe ihres ungetreuen Liebhabers verbrannte, K. 5201:45891354Gabriele von BaumbergLyrics By126-10Abendempfindung an Laura, K. 5234:54355Unknown ArtistLyrics By126-11Des, Kleinen Friedrichs Geburtstag, K. 5292:59900268Johann Eberhard Friedrich SchallLyrics By891349Joachim Heinrich CampeLyrics By [Final Verse]126-12Die, Kleine Spinnerin, K. 5313:24355Unknown ArtistLyrics By126-13Sehnsucht nach dem Frühlinge, K. 5962:18891352Christian Adolf OverbeckLyrics By126-14Der Frühling, K. 5975:335729545Christoph Christian SturmChristian Christoph SturmLyrics By126-15Das Kinderspiel, K. 5982:41891352Christian Adolf OverbeckLyrics By126-16Ridente La calma, K. 1523:35355Unknown ArtistLyrics ByVolume 9: OperasApollo Et Hyacinthus, K. 38 (Ein Lateinisches Intermedium In Drei Akten Zu Dem Schuldrama "Clementia Croesi")914836Ralf PopkenAlto Vocals [Apollo, Friend Staying With Oebalus]914839Axel KöhlerAlto Vocals [Zephyrus, Confidant Of Hyacinthus]455839Rundfunkchor LeipzigChorus836608Max PommerConductor914838P. Rufinus WidlLibretto By [Text]425124Rundfunk-Sinfonie-Orchester LeipzigRundfunk-Sinfonieorchester LeipzigOrchestra2122989Věnceslava Hrubá-FreibergerVenceslava Hruba-FreibergerSoprano Vocals [Melia, His Daughter]914840John DickieTenor Vocals [Oebalus, King Of Lacedemonia]914837Arno RaunigVocals [Discantus, Hyacinthus, His Son]-Actus 1127-1Intrada2:56127-2Recitativo. Amice! Iam Parata Sunt Omnia3:20127-3No. 1 Chorus. Numen O Latonium…o Apollo5:38127-4Recitativo. Heu Me! Periimus1:45127-5No. 2 Aria. Saepe Terrent Numina9:02127-6Recitativo. Ah Nate! Vera Poqueris3:27127-7No. 3 Aria. Iam Pastor Apollo3:28-Actus 2127-8Recitativo. Amare Numquid Filia2:20127-9No. 4 Aria. Laetari, Iocari6:34127-10Recitativo. Rex! De Salute Filii6:01127-11No. 5 Aria. En! Duos Conspicis3:11128-1Recitativo. Heu! Numen! Ecce!2:16128-2No. 6 Duetto. Discede Crudelis!7:10-Actus 3128-3Recitativo. Non Est…quis Ergo2:56128-4No. 7 Aria. Ut Navis In A Majorequore Luxuriante7:49128-5Recitativo. Quocumque Me Converto3:07128-6No. 8 Duetto. Natus Cadit, Atque Deus6:07128-7Recitativo. Rex! Me Redire Cogit5:43128-8No. 9 Terzetto. Tandem Post Purbida Fulmina2:52Bastien und Bastienne, K. 50 (Singspiel In Einem Akt)289323René PapeBass Vocals [Colas]836608Max PommerConductor425124Rundfunk-Sinfonie-Orchester LeipzigOrchestra914842Dagmar SchellenbergerSoprano Vocals [Bastienne]914843Ralph EschrigTenor Vocals [Bastien]129-1I. Intrada1:49129-2II. Aria. Mein Liebster Freund Hat Mich Verlassen1:57129-3III. Dialog. Oh, Dieser Treulose0:15129-4IV. Aria. Ich Geh’ Jetzt Auf Die Weide1:19129-5V. Colas’ Auftritt (orchestra)0:25129-6VI. Aria. Befraget Mich Ein Zartes, K. Ind1:11129-7VII. Dialog. Guten Morgen, Herr Colas0:43129-8VIII. Aria. Wenn Mein B Majorastien Einst Im Scherze2:16129-9IX. Dialog. Das Schöne Fräulein, Kennt Sich Aus0:14129-10X. Aria. Würd’ich Auch, Wie Manche Buhlerinnen2:24129-11XI. Dialog. Sei Unbesorgt0:31129-12XII. Duetto. Auf Den Rat, Den Ich Gegeben1:37129-13XIII. Dialog. Da Läuft Sie Hin0:20129-14XIV. Aria. Grossen Dank Dir Abzustatten1:50129-15XV. Dialog. Also Hast Du Dich Besonnen0:31129-16XVI. Aria. Geh! Du Sagst Mir Eine Fabel1:16129-17XVII. Dialog. Es Ist Nun Mal Die Wahrheit0:36129-18XVIII. Aria. Diggi, Daggi1:17129-19XIX. Dialog. Ich Bitte Dich0:17129-20XX. Aria. Meiner Liebsten Schöne Wangen2:51129-21XXI. Dialog. Da Ist Sie! Was Tun?0:39129-22XXII. Aria. Er War Mir Sonst Treu Und Ergeben1:59129-23XXIII. Dialog. Verzeih, Bastienne! Ich War Verhext!0:36129-24XXIV. Aria. Geh Hin! Ich Will4:52129-25XXV. Dialog. Sieh An! Du Bist Noch Hier?0:31129-26XXVI. Aria. Dein Trotz Vermehrt Sich0:44129-27XXVII. Dialog. Was Ist? Was Hält Dich Auf ?0:23129-28XXVIII. Duetto. Geh! Geh! Geh! Herz Von Flandern5:04129-29XXIX. Terzetto. Kinder! Kinder! Seht, Nach Sturm Und Regen3:03La Finta Semplice, K. 51 (Opera Buffa In Drei Akten)848263Robert HollBass Vocals [Don Cassandro]937077Robert Lloyd (4)Bass Vocals [Simone]915355Leopold HagerConductor915354Carlo GoldoniLibretto By915352Marco ColtelliniLibretto By901539Das Mozarteum Orchester SalzburgMozarteum-Orchester SalzburgOrchestra837527Teresa BerganzaSoprano Vocals [Giacinta]915353Jutta-Renate IhloffSoprano Vocals [Ninetta]303060Helen DonathSoprano Vocals [Rosina]836152Anthony Rolfe JohnsonAnthony Rolfe-JohnsonTenor Vocals [Don Polidoro]696192Thomas MoserTenor Vocals [Fracasso]130-1I. Sinfonia5:57-Atto Primo-Scena I130-2II. Coro2:00130-3III. Recitativo (giacinta, Ninetta, Fracasso, Simone)2:24130-4IV. Aria (simone)2:54-Scena II130-5V. Recitativo (giacinta, Ninetta, Fracasso)1:25130-6VI. Aria (giacinta)4:10-Scena III130-7VII. Recitativo (fracasso)0:19130-8VIII. Aria (cassandro)2:01130-9IX. Recitativo (fracasso, Cassandro)4:18130-10X. Aria (fracasso)4:47130-11XI. Recitativo (cassandro)0:18-Scena IV130-12XII. Aria (rosina)2:49130-13XIII. Recitativo (ninetta, Rosina, Polidoro)3:44-Scena V130-14XIV. Recitativo (polidoro, Cassandro)2:28130-15XV. Aria (polidoro)3:34-Scena VI130-16XVI. Recitativo (cassandro, Rosina)6:07130-17XVII. Aria (cassandro)4:08-Scena VII130-18XVIII. Recitativo (fracasso, Rosina, Ninetta)1:13130-19XIX. Aria (rosina)7:11-Scena VIII130-20XX. Recitativo (polidoro, Ninetta, Fracasso)1:10130-21XXI. Aria (ninetta)1:55-Scena IX130-22XXII. Recitativo (polidoro)0:37130-23XXIII. Finale (rosina, Fracasso, Polidoro, Ninetta, Cassandro, Simone, Giacinta)7:08-Atto Secondo-Scena I131-1I. Recitativo (ninetta, Simone)1:42131-2II. Aria (ninetta)2:43-Scena II131-3III. Recitativo (simone, Giacinta)1:15131-4IV. Aria (simone)2:15-Scena III131-5V. Recitativo (giacinta, Polidoro)2:33131-6VI. Aria (giacinta)3:24-Scena IV131-7VII. Recitativo (polidoro, Ninetta)0:58-Scena V131-8VIII. Aria (rosina)4:00131-9IX. Recitativo (polidoro, Ninetta, Rosina)2:11-Scena VI131-10X. Aria (cassandro)1:45131-11XI. Recitativo (rosina, Cassandro, Polidoro)2:08131-12XII. Aria (polidoro)4:57-Scena VII131-13XIII. Recitativo (cassandro, Rosina)5:52131-14XIV. Aria (rosina)4:57-Scena VIII131-15XV. Recitativo (cassandro, Fracasso)2:53131-16XVI. Duetto (cassandro, Fracasso)2:48-Scena IX131-17XVII. Recitativo (rosina, Cassandro)0:21-Scena X131-18XVIII. Recitativo (rosina, Fracasso)1:49-Scena XI131-19XIX. Aria (fracasso)3:17-Scena XII131-20XX. Recitativo (ninetta, Simone)0:32-Scena XIII131-21XXI. Finale (cassandro, Polidoro, Ninetta, Rosina, Fracasso, Simone)7:12-Atto Terzo-Scena I132-1I. Aria (simone)2:26132-2II. Recitativo (ninetta, Simone)0:38132-3III. Aria (ninetta)3:14-Scena II132-4IV. Aria (giacinta)2:43132-5V. Recitativo (fracasso, Giacinta)1:32132-6VI. Aria (fracasso)7:34-Scena III132-7VII. Recitativo (cassandro, Rosina)2:09-Scena IV132-8VIII. Recitativo (Polidoro, Rosina)2:31132-9IX. Finale (Polidoro, Rosina, Cassandro) - Scena Ultima (Ninetta, Giacinta, Fracasso, Simone, Cassandro, Polidoro, Rosina)10:35Mitridate, Rè Di Ponto, K. 87 (Opera Seria)915370Franc PolmanConcertmaster915368Jed WentzConductor915375Michael BorgstedeHarpsichord915367Cécile van de SantMezzo-soprano Vocals [Farnace]915369Musica Ad RhenumOrchestra915372Erwin WieringaSoloist, Horn915371Young-Hee KimSoprano Vocals [Arbate]837122Francine van der HeijdenFrancine van der HeydenSoprano Vocals [Aspasia]837051Johannette ZomerSoprano Vocals [Ismene]915374Marijje van StralenSoprano Vocals [Sifare]915373Alexei GrigorevTenor Vocals [Marzio]891278Marcel ReijansTenor Vocals [Mitridate]-Act I133-1I. Sinfonia4:58133-2II. Recitativi (arbate, Sifare, Aspasia)5:03133-3III. Aria. Al Destinche La Minaccia (aspasia)6:32133-4IV. Recitativo Accompagnato (sifare)1:12133-5V. Aria. Soffre Il Mio Cor (sifare)8:05133-6VI. Aria. L’odio Nel Cor Frenate (arbate)4:53133-7VII. Recitativo (farnace, Sifare, Aspasia)0:15133-8VIII. Aria. Nel Sen Mi Palpita (aspasia)2:22133-9IX. Recitativo (farnace, Sifare)1:20133-10X. Aria. Nel Gran Cimento (sifare)4:12133-11XI. Recitativo (farnace, Marzio)1:08133-12XII. Aria. Venga Pur (farnace)7:12133-13XIII. Marcia3:08133-14XIV. Cavata. Se Di Lauri Il Crine Adorno (mitridate)4:13134-1XV. Recitativi (mitridate, Ismene, Arbate, Sifare, Farnace)3:29134-2XVI. Aria. In F Majoraccia All’oggeto (ismene)6:06134-3XVII. Recitativi (mitridate, Arbate)4:22134-4XVIII. Aria. Quel Ribelle E Quell’ingrato (mitridate)3:07-Act II134-5I. Recitativo (ismene, Farnace)2:02134-6II. Aria. Va, L’error Mio Palesa (farnace)2:55134-7III. Recitativi (ismene, Mitridate, Aspasia)3:37134-8IV. Aria. Tu, Che Fidel Mi Sei (mitridate)4:13134-9V. Recitativi (sifare, Aspasia, Arbate)7:00134-10VI. Aria. Lungi Da Te, Mio Bene (sifare)7:42134-11VII. Recitativo Accompagnato (aspasia)1:46134-12VIII. Aria. Nel Grave Tormento (aspasia)4:49134-13IX. Recitativi (mitridate, Ismene, Arbate, Sifare, Farnace, Marzio)4:46134-14X. Aria. So Quanto A Te Dispiace (ismene)5:15135-1XI. Recitativo (farnace)0:39135-2XII. Aria. Son Reo. L’error Confesso (farnace)3:32135-3XIII. Recitativo (sifare, Mitridate, Aspasia)4:04135-4XIV. Aria. Già Di Pietà Mi Spoglio (mitridate)2:19135-5XV. Recitativi (aspasia, Sifare)3:30135-6XVI. Duetto. Se Viver Non Degg’io (aspasia, Sifare)6:38-Act III135-7I. Recitativo (mitridate, Aspasia, Ismene)2:07135-8II. Aria. Tu Sai Per Chi M’accese (ismene)4:19135-9III. Recitativi (aspasia, Mitridate, Arbate)2:42135-10IV. Aria. Vado Incontro Al Fato Estremo (mitridate)2:39135-11V. Recitativo (aspasia)0:37135-12VI. Recitativo Accompagnato E Cavatina. Ah Ben Ne Fui Presaga! (aspasia)6:32135-13VII. Recitativi (sifare, Aspasia)2:16135-14VIII. Aria. Se Il Rigor D’ingrata Sorte (sifare)2:40135-15IX. Recitativi (farnace, Marzio)2:37135-16X. Aria. Si Di Regnar Sei Vago (marzio)4:26135-17XI. Recitativo Accompagnato (farnace)1:13135-18XII. Aria. Già Dagli Acchi Il Velo È Tolto (farnace)7:06135-19XIII. Recitativi (mitridate, Sifare, Aspasia, Ismene)3:59135-20XIV. Coro. Non Si Creda Al Campidoglio (aspasia, Sifare, Ismene, Arbate, Farnace)0:42Ascanio In Alba, K. 111 (Festa Teatrale In Two Acts)934629Vocaal Ensemble CocuChorus915368Jed WentzConductor1814609Giuseppe PariniAbbate Giuseppe PariniLibretto By915369Musica Ad RhenumOrchestra934632Tom Allen (2)Vocals [Aceste]934633Maaike BeekmanVocals [Ascanio]379697Claron McFaddenVocals [Fauno]934628Nicola WemyssVocals [Silvia]934631Claudia PataccaVocals [Venere]-Part 1136-1I. Sinfonia3:08136-2II. Ballet. Andante Grazioso0:59136-3III. Coro Di Geni E Grazie2:00136-4IV. Recitativo. Genie, Grazie, Ed Amori (venere)3:08136-5V. Aria. L’ombra De’rami Tuoi (venere)5:08136-6VI. Recitativo. Ma La Ninfa Gentil (ascanio, Venere)5:34136-7VII. Coro Di Geni E Grazie1:10136-8VIII. Recitativo. Perché Tacer Degg’io? (ascanio)4:23136-9IX. Aria. Cara Lontano Ancora (ascanio)4:44136-10X. Coro Di Pastore1:10136-11XI. Recitativo. Ma Qual Canto Risona? (ascanio, Fauno)1:17136-12XII. Coro Di Pastori1:09136-13XIII. Recitativo. Ma Tu Chi Sei (fauno, Ascanio)2:10136-14XIV. Aria. Se Il Labbro (fauno)4:34136-15XV. Recitativo. Quanto Soavi (ascanio, Fauno)2:02136-16XVI. Coro Di Pastori E Pastorelle3:28136-17XVII. Recitativo. Oh Generosa Diva (aceste)0:49136-18XVIII. Coro Di Pastori1:10136-19XIX. Recitativo. Di Propria Man La Dea (aceste)1:08136-20XX. Coro Di Pastori1:11137-1XXI. Recitativo. Oh Mia Gloria (aceste)0:40137-2XXII. Aria. Per La Gioia (aceste)5:28137-3XXIII. Recitativo. Misera! Che Faro? (silvia, Aceste)3:17137-4XXIV. Aria. Si, Si, Ma D’un Altro Amore (silvia)0:56137-5XXV. Recitativo. Ah No, Silvia T’inganni (aceste, Silvia)3:48137-6XXVI. Aria. Come È Felice Stato (silvia)4:17137-7XXVII. Recitativo. Silvia Mira (aceste)1:02137-8XXVIII. Coro Di Pastori1:09137-9XXIX. Recitativo. Cielo! (ascanio, Venere)1:02137-10XXX. Aria. Ah Di Sì Nobil Alma (ascanio)3:57137-11XXXI. Recitativo. Un Altra Prova (venere, Ascanio)1:47137-12XXXII. Aria. Al Chiaror (venere)3:54137-13XXXIII. Coro Di Geni E Grazie1:09-Part 2137-14II. Recitativo. Star Lontana (silvia)1:31137-15III. Aria. Spiega Il Desio (silvia)6:58137-16IV. Coro Di Pastorelle1:27137-17V. Recitativo. Cerco Di Loco (ascanio)1:02137-18VI. Recitativo Accompagnato. Oh Ciel! Che Miro? (silvia, Ascanio)3:13137-19VII. Recitativo. Silvia, Ove Sei? (silvia, Ascanio, Fauno)4:16138-1VIII. Aria. Gentil Sembiante (fauno)10:54138-2IX. Recitativo. Ahimè! Che Veggio Mai? (ascanio, Silvia)1:02138-3X. Aria. Al Mio Ben (ascanio)3:49138-4XI. Recitativo. Ferma, Aspetta, Ove Vai? (silvia)3:12138-5XII. Aria. Infelici Affetti Miei (silvia)4:48138-6XIII. Recitativo & Coro (ascanio, Silvia, Coro Di Pastorelle)0:40138-7XIV. Recitativo. Ahi La Crudel (ascanio)0:54138-8XV. Aria. Torna Mio Bene (ascanio)3:15138-9XVI. Coro Di Pastori1:11138-10XVII. Recitativo. Che Strana (aceste)0:39138-11XVIII. Aria. Sento, Che Il Cor Mi Dice (aceste)4:40138-12XIX. Recitativo. Si, Padre (silvia)0:27138-13XX. Coro Di Pastori E Ninfe O Pastorelle1:08138-14XXI. Recitativo. Ma S’allontani (silvia, Aceste, Ascanio)0:56138-15XXII. Coro Di Pastori E Pastorelle1:07138-16XXIII. Recitativo. Ecco, Ingombran L’altare (aceste)0:20138-17XXIV. Coro1:09138-18XXV. Recitativo. Invoca, O Figlia (aceste, Silvia, Ascanio, Venere)1:08138-19XXVI. Terzetto. Ah Caro Sposo (silvia, Ascanio, Aceste)4:54138-20XXVII. Recitativo. Eccovi Al Fin (venere)2:08138-21XXVIII. Terzetto. Che Bel Piacer Io Sento (silvia, Ascanio, Aceste)1:30138-22XXIX. Recitativo. Ah Chi Nodi (silvia, Ascanio, Aceste, Venere)1:44138-23XXX. Coro Ultimo Di Geni, Grazie, Pastori E Ninfe. Alma Dea0:54Il Sogno di Scipione, K. 126 (Azione Teatrale)858441Cappella AmsterdamChorus878386Daniel ReussChorus Master915370Franc PolmanConcertmaster915368Jed WentzConductor915375Michael BorgstedeHarpsichord861790Pietro MetastasioLibretto By915369Musica Ad RhenumOrchestra934631Claudia PataccaSoprano Vocals [Costanza]379697Claron McFaddenSoprano Vocals [Fortuna]837122Francine van der HeijdenFrancine van der HeydenSoprano Vocals [La Licenza]891278Marcel ReijansTenor Vocals [Emilio]934647Terence MierauTenor Vocals [Publio]934646François SoonsTenor Vocals [Scipione]139-1I. Sinfonia4:42139-2II. Recitativo. Vieni E Siegui Miei Passi (fortuna, Costanza, Scipione)2:41139-3III. Aria. Risolver Non Osa (scipione)7:10139-4IV. Recitativo. Giusta È La Tua Richiesta (costanza, Fortuna)0:31139-5V. Aria. Lieve Sono Al Par Del Vento (fortuna)7:01139-6VI. Recitativo. Dunque Ove Son? (scipione, Costanza, Fortuna)2:52139-7VII. Aria. Ciglio Che Al Sol Si Gira (costanza)7:28139-8VIII. Recitativo. E Quale Abitatori? (scipione, Fortuna, Costanza)0:36139-9IX. Coro. Germe Di Cento Eroi2:42139-10X. Recitativo. Numi! (scipione, Publio)2:35139-11XI. Aria. Se Vuoi Che Te Raccolgano (publio)7:26139-12XII. Recitativo . Se Qui Vivon Gli Eroi (scipione, Fortuna, Costanza, Publio, Emilio)3:52139-13XIII. Aria. Vol Colaggiu Ridete (emilio)8:02140-1XIV. Recitativo. Padre, Ah Lasciate (scipione, Fortuna, Costanza, Publio, Emilio)1:53140-2XV. Aria. Quercia Annosa Su L’erte Pendici (publio)3:06140-3XVI. Recitativo. Giacchè Al Voler De’fati (scipione, Costanza, Fortuna, Publio, Emilio)3:11140-4XVII. Aria. A Chi Serena Io Miro (fortuna)6:37140-5XVIII. Recitativo. E A Sì Enorme Possanza (scipione, Costanza)2:35140-6XIX. Aria. Biancheggia In Mar Lo Scolio (costanza)7:15140-7XX. Recitativo. Non Più (scipione, Fortuna)0:46140-8XXI. Aria. Di Che Sei L’arbitra Del Mondo Intero (scipione)6:52140-9XXII. Recitativo Accompagnato. E V’è Mortal (fortuna, Scipione)3:17140-10XXIII. Recitativo. Non È Scipio (la Licenza)0:51140-11XXIV. Aria. Ah, Perchè Cercar Degg’io (la Licenza)3:34140-12XXIVI. Coro. Cento Volte Con Pieto Sembiante1:16Lucio Silla, K. 135 (Dramma Per Musica In Tre Atti)4986474Choeurs Du Théâtre Royal De La MonnaieChorus579373Sylvain CambrelingConductor934710Giovanni de GamerraLibretto By934738Orchestre Du Théâtre Royal De La MonnaieOrchestra934709Ad van BaasbankVocals [Aufidio]838409Ann MurrayVocals [Cecilio]934707Christine BarbauxVocals [Celia]934708Britt-Marie AruhnVocals [Cinna]934706Lella CuberliVocals [Giunia]836152Anthony Rolfe JohnsonAnthony Rolfe-JohnsonVocals [Lucio Silla]-Ouvertüre141-1I. Sinfonia. Molto Allegro3:45141-2II. Sinfonia. Andante2:51141-3III. Sinfonia. Molto Allegro1:30-Atto Primo-Scena 1141-4IV. Recitativo (cecilio, Cinna)3:22141-5V. Aria (cinna)9:15-Scena 2141-6VI. Accompagnato (cecilio)1:55141-7VII. Aria (cecilio)8:11-Scena 3141-8VIII. Recitativo (silla, Celia, Aufidio)1:53141-9IX. Aria (celia)3:30-Scena 4141-10X. Recitativo (silla, Aufidio)0:53-Scena 5141-11XI. Recitativo (silla, Giunia)3:08CD141-12XII. Aria (giunia)6:15-Scena 6141-13XIII. Recitativo Ed Accompagnato (silla)1:44141-14XIV. Aria (silla)4:53-Scena 7141-15XV. Accompagnato (cecilio)4:22-Scena 8141-16XVI. Coro A (giunia)4:54141-17XVII. Accompagnato (giunia)1:01-Scena 9141-18XVIII. Accompagnato (giunia, Cecilio)0:55141-19XIX. Duetto (giunia, Cecilio)7:07-Atto Secondo-Scena 1142-1I. Recitativo (silla, Aufidio)2:08-Scena 2142-2II. Recitativo (celia, Silla)1:02-Scena 3142-3III. Recitativo Ed Accompagnato (cecilio, Cinna)5:45142-4IV. Aria (cecilio)2:36-Scena 4142-5V. Recitativo (cinna, Celia)1:23-Scena 5142-6VI. Recitativo Ed Accompagnato (cinna, Giunia)3:04142-7VII. Aria (giunia)8:31-Scena 6142-8VIII. Accompagnato (cinna)0:36142-9IX. Aria (cinna)4:47-Scena 7142-10X. Recitativo (aufidio, Silla)1:45-Scena 8142-11XI. Recitativo (giunia, Silla)0:52142-12XII. Aria (silla)2:12-Scena 9142-13XIII. Recitativo (giunia, Cecilio)3:35142-14XIV. Accompagnato (cecilio, Giunia)0:46142-15XV. Aria (cecilio)6:47-Scena 10142-16XVI. Recitativo (giunia, Celia)1:26142-17XVII. Aria (celia)4:54-Scena 11142-18XVIII. Accompagnato (giunia)3:09142-19XIX. Aria (giunia)4:14-Scena 12142-20XX. Coro7:53142-21XXI. Recitativo (silla, Giunia, Aufidio)1:49-Scena 13 & 14142-22XXII. Recitativo (cecilio, Cinna)2:08142-23XXIII. Terzetto (cecilio, Giunia, Cinna)3:42-Atto Terzo-Scena 1143-1I. Recitativo (cecilia, Celia, Cinna)1:47143-2II. Aria (celia)3:45-Scena 2143-3III. Recitativo (cecilio, Cinna)0:51143-4IV. Aria (cinna)4:41-Scena 3143-5V. Recitativo (giunia, Cecilio)1:11-Scena 4143-6VI. Recitativo (aufidio, Giunia, Cecilio)1:23143-7VII. Aria (cecilio)4:05-Scena 5143-8VIII. Accompagnato (giunia)3:20143-9IX. Aria (giunia)3:01-Scena 6 & 7143-10X. Recitativo (cinna, Silla, Celia, Giunia)2:12-Scena Ultima143-11XI. Recitativo (giunia, Cinna, Cecilio, Silla)3:57143-12XII. Finale3:03La Finta Giardiniera, K. 196 (Dramma Giocoso In Tre Atti)579373Sylvain CambrelingConductor934735Gérard MortierDirected By934738Orchestre Du Théâtre Royal De La MonnaieOrchestra934736Malvina MajorVocals [Arminda]934737Marek TorzewskiVocals [Belfiore]833821Ugo BenelliVocals [Il Podestà]2228958Russell SmytheRussel SmytheVocals [Nardo]934734Lani PoulsonVocals [Ramiro]9545212Joanna KozłowskaJoanna KozlowskaVocals [Sandrina]934732Elzbieta SzmytkaVocals [Serpetta]144-1I. Sinfonia. Allegro Molto2:13144-2II. Sinfonia. Andante Grazioso2:18-Atto Primo144-3III. Introduzione. Che Lieto Giorno (sandrina, Serpetta, Ramiro, Il Podestà, Nardo)5:24144-4IV. Recitativo. Viva, Viva Il Buon Gusto (il Podestà, Ramiro, Serpetta, Nardo, Sandrina)2:30144-5V. Aria. Se L’augellin Sen Fugge (ramiro)4:48144-6VI. Recitativo. Presto Nardo (il Podestà, Serpetta, Nardo, Sandrina)3:26144-7VII. Aria. Dentro Il Mio Petto Io Sento (il Podestà)5:54144-8VIII. Recitativo. Vo’subito Partire (sandrina, Nardo, Ramiro)2:24144-9IX. Aria. Noi Donne Poverine (sandrina)3:55144-10X. Recitativo. Sarei Felice Appieno (ramiro)0:14144-11XI. Recitativo. Questa Tardanza (arminda, Il Podestà, Serpetta)2:34144-12XII. Aria. Che Beltà (il Contino)3:52144-13XIII. Recitativo. Sposa, Arminda, Mio Sole (il Contino, Arminda, Il Podestà, Serpetta)4:24144-14XIV. Aria. Si Promette Facilmente (arminda)4:46144-15XV. Recitativo. Che Dite, Signor Conte (il Podestà, Il Contino, Serpetta)2:28144-16XVI. Aria. Da Scirocco A Tramontana (il Contino)4:12144-17XVII. Recitativo. Evviva, Evviva I Consoli Romani (il Podestà)0:13144-18XVIII. Recitativo. In Questa Casa (serpetta)0:39144-19XIX. Cavatina. Un Marito, Oh Dio (serpetta, Nardo)2:44144-20XX. Recitativo. Bravo, Signor Buffone (serpetta, Nardo)0:47144-21XXI. Aria. Appena Mi Vedon (serpetta)3:14144-22XXII. Cavatina. Geme La Tortorella (sandrina)4:25145-1XXIII. Recitativo. Questa Sarà La Bella Giardiniera (arminda, Sandrina, Il Contino)2:09145-2XXIV. Finale. Numi! (sandrina, Arminda, Ramiro, Il Contino, Il Podestà, Nardo)13:12-Atto Secondo145-3I. Recitativo. Non Fuggirmi Spietata (ramiro, Arminda)4:03145-4II. Aria. Vorrei Punirti Indegno (arminda)3:49145-5III. Recitativo. Ah Costei Non E Donna (il Contino, Serpetta, Nardo)1:53145-6IV. Aria. Con Un Vezzo All’italiana (nardo)3:30145-7V. Recitativo. Trovar L’amante (sandrina, Il Contino)2:14145-8VI. Aria. Care Pupille (il Contino)6:21145-9VII. Recitativo. Va Conte Disgraziato (il Podestà, Sandrina)1:42145-10VIII. Aria. Una Voce Sento Al Core (sandrina)4:37145-11IX. Recitativo. Ah Che Son Stato Un Sciocco! (il Podestà, Arminda, Ramiro)2:28145-12X. Aria. Una Damina, Una Nipote (il Podestà)1:32145-13XI. Recitativo. Sappi Arminda, Ben Mio (ramiro, Arminda)0:44145-14XII. Aria. Dolce D’amor Compagna (ramiro)7:00145-15XIII. Recitativo. Credimi Nipotina (il Podestà, Arminda, Serpetta, Il Contino, Sandrina)5:18145-16XIV. Recitativo Ed Aria. Ah Non Partir (il Contino)7:19145-17XV. Recitativo. Oh Poveretto Me! (nardo, Ramiro, Il Podestà, Serpetta)2:08146-1XVI. Aria. Chi Vuol Godere Il Mondo (serpetta)4:03146-2XVII. Aria. Crudeli, Fermate (sandrina)4:04146-3XVIII. Cavatina. Ah Dal Pianto (sandrina)3:02146-4XIX. Finale. Fra Quest’ombre (sandrina, Serpetta, Arminda, Ramiro, Il Contino, Il Podestà, Nardo)14:57-Atto Terzo146-5I. Recitativo. Sentimi, Nardo Mio (serpetta, Nardo)1:23146-6II. Aria. A Forza Di Martelli (nardo)3:11146-7III. Recitativo. Olà, Olà (il Contino, Nardo, Sandrina)1:30146-8IV. Aria E Duetto. Mirate Che Contrasto (nardo, Sandrina, Il Contino)3:03146-9V. Recitativo. Ma Si Puo Dare (il Podestà, Serpetta)1:40146-10VI. Aria. Mio Padrone, Io Dir Volevo (il Podestà)3:08146-11VII. Recitativo. Ramiro, Orsu (arminda, Ramiro)1:28146-12VIII. Aria. Va Pure Ad Altri In B Majorraccio (ramiro)3:03146-13IX. Recitativo E Duetto. Dove Mai Son! (sandrina, Il Contino)12:36146-14X. Recitativo. Ma Nipote, Mia Cara (il Podestà, Nardo, Arminda, Ramiro, Serpetta, Sandrina, Il Contino)1:43146-15XI. Finale. Viva Pur La Giardiniera (sandrina, Serpetta, Arminda, Ramiro, Il Contino, Il Podestà, Nardo)3:17Il Rè Pastore, K. 208 (Serenata In Zwei Akten - Komponiert In Salzburg, 1775)915368Jed WentzConductor915375Michael BorgstedeHarpsichord861790Pietro MetastasioLyrics By [Text]915369Musica Ad RhenumOrchestra837051Johannette ZomerSoprano Vocals [Aminta]837122Francine van der HeijdenFrancine van der HeydenSoprano Vocals [Elisa]934631Claudia PataccaSoprano Vocals [Tamiri]891278Marcel ReijansTenor Vocals [Agenore]915373Alexei GrigorevTenor Vocals [Alessandro]-Atto Prima147-1I. Sinfonia2:50-Scena I147-2II. Intendo Amico Rio (aminta)1:49147-3III. Recitativo. Bella Elisa? Idol Mio? (aminta, Elisa)4:16147-4IV. Aria. Alla Selva, Al Prato (elisa)5:59-Scena II147-5V. Recitativo. Perdono Amici (aminta, Agenore, Alessandro)3:55147-6VI. Aria. Aer Tranquillo E Di Sereni (aminta)5:55-Scena III147-7VII. Recitativo. Or Che Dici Alessandro? (agenore, Alessandro)1:10147-8VIII. Aria. Si Spande Al Sole In F Majoraccia (alessandro)5:11-Scena IV147-9IX. Recitativo. Agenore? T’arresta (tamiri, Agenore)2:36147-10X. Aria. Per Me Rispondete (agenore)3:27-Scena V147-11XI. Recitativo. No. Voi Non Siete, O Dei (tamiri)0:42147-12XII. Aria. Di Tante Sue Procelle (tamiri)4:25-Scena VI & VII147-13XIII. Recitativo. Oh Lieto Giorno! (elisa, Aminta) / XIV. Recitativo. Dal Più Fedel Vassallo (agenore, Elisa, Aminta)3:48-Scena VIII147-14XV. Recitativo. Elisa!…aminta!… È Sogno? (aminta, Elisa)3:58147-15XVI. Duetto. Vanne A Regnar Ben Mio (elisa, Aminta)5:35-Atto Secondo-Scena I148-1I. Recitativo. Questa Del Campo Greco È La Tenda Maggior (elisa, Agenore)2:38148-2II. Aria. Barbaro! Oh Dio Mi Vedi (elisa)5:34-Scena II, III & IV148-3III. Recitativo. Nel Gran Cor D’alessandro (agenore, Aminta) / IV. Recitativo. Per Qual Ragione Resta Il Re Di Sidone (alessandro, Aminta) - V. Recitativo. Or Per La Mia Tamiri È Tempo Di Parlar (agenore, Alessandro)8:57148-4VI. Aria. Se Vincendo Vi Rendo Felici (alessandro)6:46-Scena V & VI148-5VII. Recitativo. Oimè! Declina Il Sol (aminta) / VII. Recitativo. E Irresoluto Ancora (agenore, Aminta)2:17148-6VIII. Rondeaux. L’amerò, Sarò Costante (aminta)6:20-Scena VII-VIII-IX148-7IX. Recitativo. Uscite, Alfine Uscite (agenore, Elisa) - X. Recitativo. Povera Ninfa! (agenore, Tamiri)3:29148-8XI. Aria. Se Tu Di Me Fai Dono (tamiri)5:28-Scena X148-9XII. Recitativo. Misero Cor! (agenore)0:21148-10XIII. Aria. Sol Puo Dir Come Si Trova (agenore)3:06-Scena XI-XIII148-11XIV. Aria. Voi Che Fausti Ognor Donate (alessandro)4:30148-12XV. Recitativo. Olà! Che Più Si Tarda? X(alessandro, Tamiri, Agenore, Elisa, Aminta)4:05148-13XVI. Coro. Viva L’invito Duce (elisa, Tamiri, Aminta, Agenore, Alessandro)5:41Zaide, K. 344 (Deutsches Singspiel In Zwei Aufzügen)837131Klaus MertensBass Vocals [Allazim / Osmin]836665Ton KoopmanConductor934789Johann Andreas SchachtnerLibretto By895375Gregor Frenkel FrankNarrator870932Radio KamerorkestOrchestra834972Sandrine PiauSoprano Vocals [Zaide]934788Max CiolekTenor Vocals [Gomatz]934790Paul Agnew (2)Tenor Vocals [Sultan Soliman]149-1No. 1, Coro. Brüder, Laßt Uns Lustig Sein0:58149-2Text 10:55149-3No. 2, Melologo. Unerforschlige Fügung (gomatz)6:00149-4Text 21:45149-5No. 3, Aria. Ruhe Sanft, Mein Holdes Leben (zaide)6:28149-6Text 30:30149-7No. 4, Aria. Rase, Schiksal, Wüte Immer (gomatz)3:42149-8Text 41:34149-9No. 5, Duetto. Meine Seele Hüpft Vor Freuden (zaide, Gomatz)2:24149-10Text 51:00149-11No. 6, Aria. Herr Und Freund! (gomatz)3:47149-12Text 60:27149-13No. 7, Aria. Nur Mutig, Mein Herze (allazim)3:46149-14Text 70:20149-15No. 8, Terzetto. O Selige Wonne! (zaide, Gomatz, Allazim)6:27150-1Text 80:27150-2No. 9, Melologo & Aria (soliman)8:09150-3Text 90:23150-4No. 10, Aria. Wer Hungrig Bei Der Tafel Sitzt (osmin)3:47150-5Text 100:49150-6No. 11, Aria. Ich Bin So Bös’als Gut (soliman)5:41150-7Text 110:33150-8No. 12, Aria. Trostlos Schluchzet Philomele (zaide)7:31150-9Text 120:40150-10No. 13, Aria. Tiger! Wetze Nur Die, K. Lauen (zaide)4:21150-11Text 130:28150-12No. 14, Aria. Ihr Mächtigen Seht Ungerührt (allazim)4:52150-13Text 141:56150-14No. 15, Quartetto. Freundin! Stille Deine Tränen (gomatz, Allazim, Zaide, Soliman)6:37150-15Marsch3:41Thamos, König in Ägypten, K. 345 (336a) (Chöre Und Zwischenaktmusiken Zu Dem Heroischen Drama Von Tobias Philipp Freiherr Von Gebler)935815Rose ScheibleAlto Vocals935810Bruce AbelBass Vocals935816Württembergischer KammerchorChorus847372Jörg FaerberConductor935814Tobias Philipp Freiherr von GeblerLyrics By935812Württembergisches KammerorchesterOrchestra935813Charlotte LehmannSoprano Vocals935811Oly PfaffTenor Vocals151-1Act 1: Chorus, Soli. Schon Weichet Dir, Sonne6:58151-2Act 1: Entr’acte Music. Maestoso A Allegro5:17151-3Act 2: Entr’acte Music. Andante4:54151-4Act 3: Entr’acte Music. Allegro3:48151-5Act 4: Entr’acte Music. Allegro Vivace Assai3:39151-6Act 5: Chorus, Soli. Gottheit, Über Alle Mächtig!9:43151-7Act 5: Chorus. Ihr, K. Inder Des Staubes, Erzittert Und Bebet7:24Ballet Music Les Petits Riens, K. 299b890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra151-8I. Ouverture3:15151-9II. Andantino0:49151-10III. Allegro0:10151-11IV. Larghetto1:26151-12V. Gavotte1:20151-13VI. Gavotte Gracieuse0:48151-14VII. Pantomime2:10151-15VIII. Gavotte3:49Idomeneo Suite, K. 366890888Taras KrysaConductor890887Slovak SinfoniettaOrchestra151-16I. Chaconne8:53151-17II. Pas Seul3:57151-18III. Passepied2:56151-19IV. Gavotte2:24151-20V. Passacaille5:43Idomeneo, K. 366 (Opera Seria In Tre Atti)455839Rundfunkchor LeipzigChor Des Leipziger RundfunksChorus846970Hans Schmidt-IsserstedtConductor935828Abbate Giambattista VarescoLibretto By578737Staatskapelle DresdenOrchestra446577Peter SchreierVocals [Arbace, Confidant Of The King]497008Eberhard BüchnerVocals [Due Troiani]526412Günther LeibVocals [Due Troiani]459665Edda MoserVocals [Elettra, Daughter Of Agamemnon]497008Eberhard BüchnerVocals [Gran Sacerdote]696227Adolf DallapozzaVocals [Idamante, His Son]696215Nicolai GeddaVocals [Idomeneo, King Of Crete]683885Anneliese RothenbergerVocals [Ilia, Daughter Of Priam]526411Theo AdamVocals [La Voce, The Voice]526412Günther LeibVocals [Sacerdote, Priest]526419Adele StolteVocals [Two Cretan Girls]931363Ingeborg SpringerVocals [Two Cretan Girls]152-1Sinfonia5:00-Atto Primo152-2Recitativo. Quando Avran Fine Omai (ilia)4:15152-3Aria. Padre, Germani, Addio! (ilia)4:38152-4Recitativo. Radunate I Troiani (idamante, Ilia)2:08152-5Aria. Non Ho Colpa (idamante)6:23152-6Recitativo. Ecco Il Misero (ilia, Idamante)0:41152-7Coro. Godiam La Pace2:48152-8Recitativo. Prence, Signor (idamante, Arbace, Ilia)1:18152-9Recitativo. Estinto È Idomeneo? (elettra)2:08152-10Aria. Tutte Nel Cor Vi Sento (elettra)3:31152-11Coro. Pietà! Numi, Pietà!1:26152-12Recitativo. Ecco Ci Salvi Alfin (idomeneo)2:51152-13Aria. Vedrommi Intorno (idomeneo) - Recitativo. Cieli! Che Veggo! (idomeneo, Idamante)4:15152-14Recitativo. Spiagge Romite (idamante)1:56152-15Recitativo. Ah Qual Gelido Orror1:03152-16Aria. Il Padre Adorato (idamante)3:00152-17Marcia4:29152-18Coro. Nettuno S’onori!5:59-Atto Secondo153-1Recitativo. Siam Soli, Odimi Arbace (idomeneo, Arbace)2:14153-2Aria Arbace: Se Il Tuo Duol4:59153-3Recitativo Ilia, Idomeneo: Se Mai Pomposo1:18153-4Aria Ilia: Se Il Padre Perdei5:54153-5Recitativo. Qual Mi Conturba I Sensi2:14153-6Aria. Fuor Del Mar (idomeneo)5:25153-7Recitativo Idomeneo, Elettra: Frettolosa E Giuliva0:17153-8Recitativo Elettra: Parto, E L'Unico Oggetto1:31153-9Aria Elettra: Idol Mio, Se Ritroso5:22153-10Marcia E Recitativo Elettra: Odo Da Lunge1:56153-11Coro, Elettra: Placido È Il Mar3:58153-12Recitativo Idomeneo, Idamante: Vatene, Prence0:33153-13Terzetto Idamante, Elettra, Idomeneo: Pria Di Partir, O Dio!4:41153-14Coro: Qual Nuovo Terrore!2:07153-15Recitativo Idomeneo: Eccoti In Me, Barbaro Nume!1:51153-16Coro. Corriamo, Fuggiamo1:57-Atto Terzo153-16Recitativo Ilia: Solitudini Amiche0:57153-17Aria Ilia: Zeffiretti Lusinghieri5:28153-19Recitativo Ilia: Ei Stesso Vien0:37153-20Recitativo Idamante, Ilia: Principessa, A Tuoi Sguardi1:19153-21Duetto Ilia, Idamante: Spiegarti Non Poss'io3:15154-1Recitativo Idomeneo, Ilia, Idamante, Elettra: Cieli! Che Vedo?2:23154-2Quartetto Idamante, Ilia, Idomeneo, Elettra: Andrò Ramingo E Solo5:53154-3Recitativo Arbace: Sventurata Sidon!3:24154-4Aria Arbace: Se Colà Ne'Fati È Scritto8:46154-5Recitativo Gran Sacerdote, Idomeneo: Volgi Intorno Lo Sguardo4:39154-6Coro, Gran Sacerdote: O Voto Tremendo5:23154-7Marcia2:28154-8Duetto Idomeneo, Sacerdote: Accogli, O Rè Del Mar3:51154-9Coro E Recitativo Idomeneo, Arbace: Stupenda Vittoria!1:07154-10Recitativo Idamante, Idomeneo: Padre, Mio Caro Padre!3:52154-11Aria Idamante: No, La Morte Io Non Pavento4:41154-12Recitativo Idamante, Idomeneo, Ilia, Gran Sacerdote: Ma, Che Più Tardi?2:40154-13La Voce: Ha Vinto Amore1:52154-14Recitativo Idomeneo, Idamante, Ilia, Arbace, Elettra: O Ciel Pietoso!1:22154-15Aria Elettra: D'Oreste, D'Aiace3:24154-16Recitativo Idomeneo: Popoli! A Voi L'Ultima Legge5:31154-17Aria Idomeneo: Torna La Pace6:51154-18Coro: Scenda Amor3:41Die Entführung Aus Dem Serail, KV 384 (Singspiel In 3 Akten)935868Franz KalchmairBass Vocals [Osmin]10980833Chor Des Landestheaters LinzChoir Of The Landestheater LinzChorus935862Ernst DunshirnChorus Master935865Martin SieghartConductor935863Bruckner Orchestra LinzOrchestra935861Donna EllenSoprano Vocals [Blonde]935864Ingrid HabermannSoprano Vocals [Konstanze]935867Piotr BezcalaTenor Vocals [Belmonte]935869Oliver RingelhahnTenor Vocals [Pedrillo]935866Harald PfeifferVoice Actor [Bassa Selim]155-1Overture4:09-First Act154-2No. 1: Aria (Belmonte) Hier Soll Ich Dich Denn Sehen2:46155-3No. 2: Song (Osmin) - Duet (Osmin, Belmonte) Wer Ein Liebchen Hat Gefunden 6:42155-4Dialogue (Osmin, Pedrillo) Nun, Wie Steht’s, Osmin? / No. 3: Aria (Osmin) Solche Hergelauf ’ne Laffen5:43155-5Dialogue (Pedrillo, Belmonte) Was Bist Du Für Ein Grausamer Kerl / No. 4: Recitativo And Aria (Belmonte) Konstanze! Dich Wiederzusehen, Dich! 6:33155-6No. 5a & No. 5b: March And Chorus Of The Janissaries2:32155-7Dialogue (Selim, Konstanze) Immer Noch Traurig, Geliebte, Konstanze? / No. 6: Aria (Konstanze) Ach Ich Liebte, War So Glücklich5:28155-8Dialogue (Selim, Konstanze) Ihr Schmerz, Ihre Tränen / No. 7: Tercet (Osmin, Belmonte, Pedrillo) Trio. Marsch! Marsch! Marsch! Trollt Euch Fort! 3:46-Second Act155-9Dialogue (Osmin, Blonde) Gift Und Dolch / No. 8: Aria (Blonde) Durch Zärtlichkeit Und Schmeicheln4:36155-10Dialogue (Osmin, Blonde) Zärtlichkeit? Schmeicheln? / No. 9: Duet (Osmin, Blonde) Ich Gehe, Doch Rate Ich Dir4:31155-11Dialogue (Blonde) / No. 10: Recitativo And Aria (Konstanze) Welcher Kummer Herrscht In Meiner Seele9:06155-12Dialogue (Blonde, Selim, Konstanze) Nun Konstanze / No. 11: Aria (Konstanze) Martern Aller Arten9:11156-1Dialogue (Blonde, Pedrillo) Pst! Pst! Blondchen! / No. 12: Aria (Blonde) Welche Wonne, Welche Lust3:31156-2Dialogue (Pedrillo) / No. 13: Aria (Pedrillo) Frisch Zum Kampfe!3:10156-3Dialogue (Osmin, Pedrillo) Ha! Geht’s Hier So Lustig Zu? / No. 14: Duet (Osmin, Pedrillo) Da Nimm! A Vivat Bacchus!3:05156-4Dialogue (Osmin, Pedrillo) Das Ist Wahr / Dialogue (Pedrillo, Belmonte, Konstanze) Gift Und Dolch! / No. 15: Aria (Belmonte) Wenn Der Freude Tränen Fliessen5:26156-5Dialogue (Belmonte, Konstanze) / No. 16: Quartet (Konstanze, Belmonte, Blonde, Pedrillo) Ach Belmonte! Ach, Mein Leben!10:35-Third Act156-6Dialogue (Pedrillo, Belmonte) Pedrillo! So Lass Sie Uns Befreien / No. 18: Romance (Pedrillo) In Mohrenland Gefangen War2:54156-7Dialogue (Konstanze, Belmonte, Pedrillo, Osmin, Blonde) Belmonte!, Konstanze! / No. 19: Aria (Osmin) O, Wie Will Ich Triumphieren4:32156-8Dialogue (Selim, Osmin, Belmonte, Konstanze) Was Gibt's, Osmin? / No. 20: Recitativo And Duet (Konstanze, Belmonte) Welch Ein Geschick! O Qual Der Seele!9:58156-9Dialogue (Pedrillo, Blonde, Selim, Belmonte, Osmin) Nun, Zitterst Du? / No. 21a: Vaudeville, Finale, Chorus Of The Janissaries. Nie Werd' Ich Deine Huld Verkennen (Belmonte, Konstanze, Pedrillo, Blonde, Osmin, Chorus)6:48Der Schauspieldirektor, K. 486 (Complete Version)526416Hermann Christian PolsterBass Vocals [Buff]624749Helmut KochConductor838040Kammerorchester BerlinOrchestra840437Sylvia GesztySoprano Vocals [Madame Herz]936309Rosemarie RönischSoprano Vocals [Mademoiselle Silberklang]446577Peter SchreierTenor Vocals [Monsieur Vogelsang]338489Helmut Müller-LankowVoice Actor [Buff]449542Werner EhrlicherVoice Actor [Eiler]936310Heinz SuhrVoice Actor [Frank]936311Renate RennhackVoice Actor [Herz]589878Annemone HaaseVoice Actor [Madame Krone]430567Annekathrin BürgerVoice Actor [Madame Pfeil]432069Jutta HoffmannVoice Actor [Madame Vogelsang]431940Monika LennartzVoice Actor [Mademoiselle Silberklang]157-1Ouverture, Presto5:18157-2Scene 1: Lustig, Herr Direkteur, Wir Haben Permission4:49157-3Scene 2: Ihr Diener, Lieber Frank2:02157-4Scene 3: Wie, Herr Frank?7:41157-5Scene 4: Madame Krone!2:06157-6Scene 5: Mich Freut Es Recht Sehr, Sie Kennenzulernen10:08157-7Scene 6/7: Ah! Madame Vogelsang!8:48157-8Arietta: Da Schlägt Die Abschiedsstunde4:22157-9Scene 7/8: Göttlich! Unvergleichlich!0:49157-10Rondo: Bester Jüngling! Mit Entzücken3:37157-11Scene 8/9: Bravo! Bravo!0:56157-12Terzetto: Ich Bin Die Erste Sängerin6:31157-13Scene 9/10: Es Lebe Die Einigkeit0:53157-14Finale: Jeder Künstler Strebt Nach Ehre5:30Le Nozze di Figaro, K. 492 (Opera Buffa In Quattro Atti)882763Choeur De Chambre De NamurChorus836885Sigiswald KuijkenConductor862839Lorenzo da PonteLibretto By882758La Petite BandeOrchestra882807Jean-Guy DevienneVocals [Antonio, Giardiniere Del Conte]882778Marie KuijkenVocals [Barbarina, Figlia Di Antonio]835482Harry van der KampVocals [Bartolo, Medico]882776Yves SaelensVocals [Basilio, Maestro Di Musica]936807Monica GroopMonika GroopVocals [Cherubino, Paggio]882780Philip DefrancqVocals [Don Curzio, Giudice]882801Werner van MechelenVocals [Figaro, Cameriere Del Conte]882765Huub ClaessensVocals [Il Conte Di Almaviva]882816Patrizia BiccireVocals [La Contessa]882808Béatrice CramoixVocals [Marzellina, Governante]848540Christiane OelzeVocals [Susanna, Cameriera Della Contessa]158-1I. Overture4:28-Act 1158--2II. Duet. Cinque…dieci…venti…trenta (figaro, Susanna)3:35158-3III. Duet. Se A Caso Madama (figaro, Susanna)5:06158-4IV. Cavatina. Se Vuol Ballare (figaro)3:44158-5V. Aria. La Vendetta, Oh, La Vendetta (bartolo)3:59158-6VI. Duet. Via Resti Servita (marcellina, Susanna)4:17158-7VII. Aria. Non So Piu Cosa Non, Cosa Faccio (cherubino)6:22158-8VIII. Terzet. Cosa Sento! Tosto Andante (count, Basilio, Susanna)6:19158-9IX. Chorus. Giovani Liete5:08158-10X. Aria. Non Più Andrai, Farfallone Amoroso (figaro)4:20-Act 2159-1I. Cavatina. Porgi Amor (figaro)8:35159-2II. Canzona. Voi Che Sapete (cherubino)3:46159-3III. Aria. Venite, Inginocchiatevi (susanna)5:54159-4IV. Recitative. Che Novita! (count, Countess)1:17159-5V. Terzet. Susanna, Or Via, Sortite (count, Countess, Susanna)4:17159-6VI. Duet. Aprite, Presto, Aprite (susanna, Cherubino)2:44159-7VII. Finale. Esci, Ormai, Garzon Malnato (count, Countess, Susanna)8:08159-8VIII. Signori, Di Fuori (figaro, Count, Susanna, Countess)3:11159-9IX. Ah, Signor, Signor! (antonio, Count, Susanna, Countess, Figaro)5:25159-10X. Voi Signor, Che Giusto Siete (marcellina, Basilio, Bartolo, Susanna, Countess, Figaro, Count)4:39-Act 3159-11I. Recitative. Che Imbarazzo È Mai Questo (count, Countess, Susanna)2:35159-12II. Duet. Crudel! Perchè Finora (count, Susanna)3:17159-13III. Recitative & Aria. Hai Gia Finta La Causa!…vedrò, Mentr’io Sospiri (count)5:45159-14IV. Recitative & Aria. E Susanna Non Vien!…dove Sono (countess)8:15159-15V. Recitative. Riconosci In Questo Amplesso5:25160-1VI. Recitative. Io Vi Dico, Signor (antonio, Count)0:57160-2VII. Canzonetta Sull’aria…che Soave Zeffiretto (susanna, Countess)2:37160-3VIII. Chorus. Ricevete, O Padroncina4:16160-4IX. Finale. Ecco La Marcia (figaro, Susanna, Count, Countess)7:01-Act 4160-5I. Cavatina. L’ho Perduta, Me Meschina! (barbarina)4:12160-6II. Aria. Il Capro E La Capretta (marcellina)5:48160-7III. Cavatina. In Quegli Anni (basilio)3:51160-8IV. Recitative & Aria. Tutto È Disposto…aprite Un Po’ (figaro)4:45160-9V. Recitative & Aria. Giunse Alfin Il Momento…deh Vieni (susanna)5:12160-10VI. Finale. Pian Pianin Le Andro Più Presso (cherubino, Countess, Count, Susanna, Figaro)11:46160-11VII. Cavatina. Gente, Gente, All’armi, All’armi (tutti)4:42Don Giovanni, K. 527 (Il Dissoluto Punito, Ossia Don Giovanni - Dramma Giocoso In Due Atti)936380Collegium CompostellanumChorus836885Sigiswald KuijkenConductor862839Lorenzo da PonteLibretto By882758La Petite BandeOrchestra882801Werner van MechelenVocals [Don Giovanni]936381Markus Schäfer (5)Vocals [Don Ottavio]936382Elena VinkVocals [Donna Anna]857764Christina HögmanVocals [Donna Elvira]835482Harry van der KampVocals [Il Commendatore]882765Huub ClaessensVocals [Leporello]936383Nancy de VriesVocals [Masetto]836154Nancy ArgentaVocals [Zerlina]161-1I. Sinfonia6:10-Act I Introduzione161-2II. Notte E Giorno Faticar (leporello)4:58161-3III. Recitativo. Leporello, Ove Sei (don Giovanni, Leporello)0:43161-4IV. Recitativo Accompagnato E Duetto. Ma Qual Mai S’offre, Oh Dei (anna, Ottavio)2:37161-5V. Scene. Fuggi, Crudele, Fuggi! (anna, Ottavio)3:46161-6VI. Recitativo. Orsu, Spicciati Presto (don Giovanni, Leporello)1:38161-7VII. Aria. Ah, Chi Mi Dice Mai (elvira)3:20161-8VIII. Recitativo. Chi È La? (elvira, Don Giovanni, Leporello)2:41161-9IX. Aria. Madamina (leporello)5:47161-10X. In Questa Forma Dunque (elvira)0:34161-11XI. Scene, Coro. Giovinette Che Fate All’amore (zerlina, Coro)1:30161-12XII. Recitativo. Manco Male È Partita (don Giovanni, Leporello, Zerlina)2:11161-13XIII. Aria. Ho Capito, Signor Sì (masetto)1:29161-14XIV. Recitativo. Alfin Siam Liberati (don Giovanni, Zerlina)1:52161-15XV. Duettino. Là Ci Darem La Mano (don Giovanni, Zerlina)2:57161-16XVI. Recitativo. Fermati Scellerato (elvira, Zerlina, Don Giovanni)0:41161-17XVII. Aria. Ah Fuggi Il Traditor (elvira)1:10161-18XVIII. Recitativo. Mi Par Ch’oggi Il (don Giovanni, Ottavio, Anna)1:04161-19XIX. Quartetto. Non Ti Fidar (elvira, Anna, Ottavio, Don Giovanni)3:39161-20XX. Recitativo. Povere Sventurata! (don Giovanni)0:19161-21XXI. Recitativo Accompagnato Ed Aria. Don Ottavio, Son Morta! (anna, Ottavio)2:50161-22XXII. Aria. Or Sai Chi L’onore (anna)2:26161-23XXIII. Recitativo. Come Mai Creder Deggio (don Giovanni)0:36161-24XXIV. Recitativo. Io Deggio Ad Ogni Patto (leporello, Don Giovanni)1:27161-25XXV. Aria. Finch’han Dal Vino (don Giovanni)1:29161-26XXVI. Recitativo. Masetto Senti Un Po’! (zerlina, Masetto)1:09161-27XXVII. Aria. Batti, Batti (zerlina)3:25162-1XXVIII. Recitativo. Guarda On Po’ Come Seppe (masetto, Don Giovanni, Zerlina)0:39-Finale162-2XXIX. Finale. Presto, Presto (masetto, Zerlina)6:36162-3XXX. Protegga Il Giusto Cielo (anna, Ottavio)1:23162-4XXXI. Riposate, Vezzio Ragazze (don Giovanni, Leporello, Masetto, Zerlina)1:24162-5XXXII. Venite, Pur Avanti (tutti)7:52-Act II162-6I. Duetto. Eh Via, Buffone, Non Mi Seccar (don Giovanni, Leporello)1:10162-7II. Recitativo. Leporello! (don Giovanni, Leporello)1:56162-8III. Terzetto. Ah Taci, Ingiusto Core (elvira, Leporello, Don Giovanni)4:43162-9IV. Recitativo. Amico, Che Ti Par? (don Giovanni, Leporello)2:06162-10V. Canzonetta: Deh, Vieni Alla Fenestra (don Giovanni)2:01162-11VI. Recitativo. V’è Gente Alla Finestra! (don Giovanni, Masetto)1:10162-12VII. Aria. Metà Di Voi (don Giovanni)2:46162-13VIII. Scene. Zitto! Lascia (don Giovanni)0:40162-14IX. Recitativo. Ahi! Ahi! (masetto, Zerlina)1:22162-15X. Aria. Vedrai, Carino (zerlina)3:03162-16XI. Recitativo. Di Molte Face (leporello, Elvira)0:27162-17XII. Sestetto. Sola, Sola In B Majoruio Loco (elvira, Leporello, Ottavio, Anna)4:32162-18XIII. Quintetto. Mille Torbidi Pensieri (elvira, Anna, Leporello, Masetto, Ottavio)2:25162-19XIV. Recitativo. Dunque Quello Sei Tu (zerlina, Elvira, Ottavio, Masetto)0:26162-20XV. Aria. Ah, Pietà, Signore Miei! (leporello)1:45162-21XVI. Recitativo. Ferma, Perfido, Ferma! (elvira, Masetto, Zerlina, Ottavio)0:46162-22XVII. Aria. Il Mio Tesoro Intanto (ottavio)4:19162-23XVIII. Recitativo. Ah, Ah, Ah, Questa È Buona (don Giovanni, Leporello)4:09162-24XIX. Duetto. O Statua Gentillissima (leporello, Don Giovanni)3:49162-25XX. Scene: Calmatevi, Idol Mio (ottavio, Anna)0:45162-26XXI. Recitativo Accompagnato E Rondo: Crudele! Ah No, Mio Bene! (anna)1:15162-27XXII. Non Mi Dir, Bell’idol Mio (anna)3:52162-28XXIII. Ah, Si Segua Il Suo Passo (ottavio)0:25-Finale163-1I. Già La Mensa È Preparata (don Giovanni, Leporello, Elvira)8:18163-2II. Scene. Don Giovanni, A Cenar Teco (il Commendatore, Don Giovanni, Leporello)6:50163-3III. Scene. Ah, Dov’è Il Perfido? (anna, Elvira, Zerlina, Ottavio, Masetto, Leporello)6:26Così Fan Tutte, K. 588 (Ossia La Scuola Degli Amanti - Dramma Giocoso In Due Atti Di Lorenzo Da Ponte)836885Sigiswald KuijkenConductor862839Lorenzo da PonteLibretto By882758La Petite BandeOrchestra, Chorus836154Nancy ArgentaVocals [Despina]882765Huub ClaessensVocals [Don Alfonso]936807Monica GroopVocals [Dorabella]936381Markus Schäfer (5)Vocals [Ferrando]936804Soile IsokoskiVocals [Fiordiligi]936806Per VollestadVocals [Guglielmo]-Act 1164-1Ouverture4:50-Scene 1164-2Terzetto. La Mia Dorabella - Recitativo. Fuor La Spada!2:53164-3Terzetto. E La Fede Delle Femmine - Recitativo. Scioccherie Di Poeti!2:52164-4Terzetto. Una Bella Serenata (ferrando, Guglielmo, Don Alfonso)2:22-Scene 2164-5Duetto. Ah, Guarda - V. Recitativo. Mi Par, Che Stammatina (fiordiligi, Dorabella, Don Alfonso)5:46164-6Aria. Vorrei Dir - Vii. Recitativo. Stelle! Per Carità, Signor Alfonso (fiordiligi, Don Alfonso, Dorabella)1:49164-7Quintetto. Sento, O Dio, Che Questo Piede - Recitativo. Non Piangere, Idol Mio! (ferrando, Guglielmo, Don Alfonso, Fiordiligi, Dorabella)4:57164-8Duettino. Al Fatto Dan Legge - Recitativo. La Comedia È Graziosa (don Alfonso, Ferrando, Fiordiligi, Dorabella, Guglielmo)1:52164-9Coro. Bella Vita Militar - Recitativo. Non V’è Piu Tempo, Amici2:07164-10Quintetto. Di Scrivermi Ogni Giorno - Coro. Bella Vita Militar E Recit.. Dove Son (alfonso, Ferrando, Fiordiligi, Guglielmo, Dorabella)3:49164-11Terzettino. Soave Sia Il Vento - Xvii. Recitativo. Non Son Cattivo Comico - Recitativo. Che Vita Maledetta (despina, Dorabella, Don Alfonso, Fiordiligi)5:13-Scene 3164-12Recitivo. Ah! Scostati! - Aria. Smanie Implacabili - Recitativo. Signora Dorabella (despina, Dorabella, Fiordiligi)4:39164-13Aria. In Uomini - Recitativo. Che Silenzio! (don Alfonso, Despina)5:59164-14Sestetto. Alla Bella Despinetta (tutti) - Recitativo. Che Sussurro! Che Strepito6:44164-15Recitativo. Temerari! Sortite Fuori - Xxvii. Aria. Come Scoglio - Recitativo. Ah, Non Partite! (ferrando, Guglielmo, Alfonso, Dorabella, Fiordiligi)6:39164-16Aria. Non Siate Ritrosi (guglielmo)1:41164-17Terzetto. E Voi Ridete? - Recitativo. Si Può Sapere Un Poco1:56164-18Aria. Un’aura Amorosa (ferrando) - Xxxii. Recitativo. O La Saria Da Ridere7:09-Scene 4165-1Finale. Ah, Che Tutta In Un Momento (tutti)2:19165-2Si Mora, Sì, Si Mora (tutti)4:35165-3Eccovi Il Medico, Signore Belle (tutti)7:00165-4Dammi Un Bacio, O Mio Tesoro (tutti)3:43-Act 2-Scene 1165-5Recitativo. Andate Là, Che Siete Due… (despina, Fiordiligi, Dorabella)3:21165-6Aria. Una Donna A Quindici Anni - Recitativo. Sorrella, Cosa Dici? (despina)5:11165-7Duetto. Prederò Quel Brunettino (fiordiligi, Dorabella)3:04-Scene 2165-8Duetto Con Coro. Secondate, Aurette Amiche - Recitativo. Il Tutto Deponete Sopra…(ferrando, Guglielmo)4:39165-9Quartetto. La Mano A Me Date - Recitativo. Oh Che Bella Giornata (don Alfonso, Despina, Fiordiligi, Ferrando, Dorabella, Guglielmo)5:49165-10Duetto. Il Coro Vi Dono (guglielmo, Dorabella)4:08165-11Recitativo. Barbara! Perchè Fuggi! - Aria. Ah! Lo Veggio, Quell’anima Bella (ferrando)5:14165-12Recitativo. Ei Parte, Senti, Ah No! - Rondo. Per Pietà, Ben Mio, Perdona (fiordiligi)8:04166-1Recitativo. Amico, Abbiamo Vinto! (ferrando, Guglielmo)4:13166-2Aria. Donne Mie, La Fate A Tanti, A Tanti (guglielmo)3:07166-3Recitativo. In Qual Fiero Contrasto - Cavatina. Tradito, Schernito Dal Perfido - Recitativo. Bravo! Questo È Constanza! - Recitativo. Ora Vedo Che Siete (despina, Dorabella, Fiordiligi, Don Alfonso, Ferrando, Guglielmo)7:09-Scene 3166-4Aria. E Amore Un Ladroncello - Recitativo. Come Tutto Congiura A Sedurre (dorabella, Fiordiligi, Guglielmo, Despina, Don Alfonso)5:55166-5Duetto. Fra Gli Amplessi In Pochi Istanti - Recitativo. Ah, Poveretto Me (fiordiligi, Guglielmo, Don Alfonso, Ferrando)7:59166-6Andante. Tutte Accusan Le Donne - Recitativo. Vittoria Padroncini (despina, Ferrando, Guglielmo, Don Alfonso)1:39-Scene 4166-7Finale. Fate Presto, O Cari Amici (tutti)1:47166-8Benedetti I Doppi Coniugi3:58166-9E Nel Tuo, Nel Mio Bicchiero (fiordiligi, Dorabella, Ferrando, Guglielmo)1:35166-10Miei Signori, Tutto È Fatto3:19166-11Sani E Salvi Agli Amplessi Amorosi (tutti)9:48Die Zauberflöte, K. 620937076Scottish Chamber ChorusChorus832951Sir Charles MackerrasConductor926717Scottish Chamber OrchestraOrchestra937075Peter Svensson (2)Vocals [Erster Priester]837528June AndersonVocals [Königin Der Nacht]899689Helmut WildhaberVocals [Monostasos]832655Barbara HendricksVocals [Pamina]937078Ulrike SteinskyVocals [Papagena]289519Thomas AllenVocals [Papageno]937077Robert Lloyd (4)Vocals [Sarastro]899693Gottfried HornikVocals [Sprecher, Ein Alter Priester / Zweiter Priester]837535Jerry HadleyVocals [Tamino]167-1Ouvertüre6:30-Act 1167-2Introduktion. Zu Hülfe! Zu Hülfe! (tamino, Three Ladies)6:04167-3Monolog. Wo Bin Ich? (tamino)0:15167-4Arie. Der Vogelfänger Bin Ich (papageno)2:33167-5Dialog. He Da! (tamino, Papageno, Three Ladies)4:09167-6Arie. Dies Bildnis (tamino)3:41167-7Dialog. Rüste Dich (three Ladies, Tamino)1:40166-8Rezitativ Und Arie. O Zittre Nicht (queen Of The Night)4:42167-9Monolog. Ist’s Denn Auch Wirklichkeit (tamino)0:11167-10X. Quintett. Hm! Hm! Hm! Hm! (papageno, Tamino, Three Ladies)5:52167-11Dialog. Ha, Ha, Ha! (slaves, Monostatos) / XII. Terzett. Du Feines Täubchen (monostatos, Pamina, Papageno)1:39167-12Monolog. Mutter, Mutter (pamina) - Dialog. Bin Ich Nicht Ein Narr (pamina, Papageno)3:19167-13Duett. Bei Männern (pamina, Papageno)2:50167-14Erster Finale: Zum Ziele Führt Dich Diese Bahn (Drei Knaben, Tamino)1:38167-15Die Weisheitslehre Dieser, K. Naben (tamino, First Priest)7:59167-16Wie Stark Ist Nicht (tamino)2:45167-17Schnelle Füsse, Rascher Mut (pamina, Papageno, Monostatos, Slaves)3:03167-18Es Lebe Sarastro, Sarastro Lebe (chorus, Papageno, Pamina)7:25-Act 2167-19Marsch Der Priester2:36167-20Dialog. Ihr In Dem Weisheitstempel (sarastro, Priests, Speaker)0:45167-21Der Dreimalige Akkord - Dialog: Sarastro Dankt Euch (Sarastro, Sprecher)1:39167-22Arie Mit Chor. O Isis Und Osiris (sarastro, Chorus)2:33168-1Dialog. Eine Schreckliche Nacht! (tamino, Papageno, Speaker, Second Priest)3:31168-2Duett. Bewahret Euch Vor Weibertücken (priests)0:59168-3Dialog. He, Lichter Her! (papageno, Tamino)0:19168-4Quintett. Wie? Wie? Wie? (three Ladies, Papageno, Tamino)2:53168-5Dialog. Heil Dir, Jüngling (speaker, Second Priest, Papageno, Monostatos)1:53168-6IX. Arie. Alles Fühlt (monostatos)1:14168-7Dialog. Zurück! (Queen Of The Night, Pamina, Monostatos)1:12168-8Arie. Der Hölle Rache (Queen Of The Night)2:57168-9Monolog. Morden Soll Ich? (pamina) - Dialog. Woll Soll Ich Tun? (pamina, Monostatos, Sarastro)0:58168-10Arie. In Desen Heil’gen Hallen (sarastro)3:44168-11Dialog. Hier Seid Ihr Euch Beide Allein (speaker, First Priest, Papageno, Tamino, Papagena)2:58168-12Terzett. Seid Uns Zum Zweitenmal Willkommen (three Boys)1:32168-13Arie. Ach, Ich Fühl’s (pamina)1:23168-14Dialog. Hier Seid Ihr Euch Beide Allein (speaker, First Priest, Papageno, Tamino, Papagena)2:58168-15Monolog. Nicht Wahr, Tamino, Ich Kann Auch Schweigen (papageno)1:45168-16Chor. O Isis Und Osiris (chorus Of Priests)1:45168-17Prinz, Dein B Majoretragen (sarastro, Pamina, Tamino)0:37168-18Terzett. Soll Ich Dich, Teuer? (pamina, Stimme, Tamino)2:45168-19Dialog. Tamino! (papageno, Speaker)1:43168-20Arie. Ein Mädchen (papageno)3:58168-21Dialog. Da Bin Ich Schon, Mein Engel (papagena, Papageno, Speaker)2:03168-22Dreiter Finale. Bald Prangt, Den Morgen (three Boys, Pamina)5:40168-23Der, Welcher Wandert Diese Straße (armen Men, Tamino, Pamina)8:16168-24Wir Wandeln Durch Des Tones Macht (pamina, Tamino)3:04168-25Papagena! Papagena! Papagena! (papageno, Three Boys)7:45168-26Nur Stille! Stille! Stille! Stille! (monostatos, Queen Of The Night, Three Ladies)2:19168-27Die Strahlen Der Sonne (sarastro, Chorus)2:43168-28Anhang: Duett Tamino & Papageno "Pamina, Wo Bist Du"3:24La Clemenza di Tito, K. 621 937141Eric HoeprichBasset Horn, Clarinet [Basset Clarinet]934629Vocaal Ensemble CocuVocal Ensemble CocuChorus915370Franc PolmanConcertmaster915368Jed WentzConductor915369Musica Ad RhenumOrchestra2145818Valentina di TarantoRepetiteur [Italian And Vocal Coach]934628Nicola WemyssVocals [Annio]937144Marc PantusVocals [Publio]837122Francine van der HeijdenFrancine van der HeydenVocals [Servilia]915367Cécile van de SantVocals [Sesto]937142André PostVocals [Tito Vespasiano]934631Claudia PataccaVocals [Vitellia]-Atto Primo169-1I. Sinfonia4:20169-2II. Recitativo. Ma Che? Sempre L’istesso (vitellia, Sesto)3:40169-3III. Duetto. Come Ti Piace (vitellia, Sesto)1:45169-4IV. Recitativo. Amico, Il Passo Affretta (annio, Vitellia, Sesto)2:13169-5V. Aria. Deh Se Piacer Mi Vuoi (vitellia)5:29169-6VI. Recitativo. Amico, Ecco Il Momento (annio, Sesto)0:31169-7VII. Duetto. Deh Prendi (sesto, Annio)0:52169-8VIII. Marcia1:50169-9IX. Coro1:49169-10X. Recitativo. Te Della (publio, Annio, Tito)2:31169-11XI. Marcia1:02169-12XII. Recitativo. Adesso, Oh Sesto (annio, Sesto, Tito)3:19169-13XIII. Aria. Del Piu Sublime Soglio (tito)3:06169-14XIV. Recitativo. Non Ci Pentiam (annio, Servilia)1:47169-15XV. Duetto. Ah Perdona (servilia, Annio)3:03169-16XVI. Recitativo. Che Mi Rechi In Quel Foglio? (tito, Publio)3:28169-17XVII. Aria. Ah, Se Fosse Intorno (tito)2:08169-18XVIII. Recitativo. Felice Me (servilia, Vitellia)4:34169-19XIX. Aria. Parto, Ma Tu Ben Mio (sesto)6:46169-20XX. Recitativo. Vedrai, Tito (vitellia, Publio, Annio)0:53169-21XXI. Terzetto. Vengo Aspettate (vitellia, Annio, Publio)2:22169-22XXII. Recitativo Accompagnato. Oh Dei (sesto)3:27169-23XXIII. Quintetto Con Coro. Deh, Conservata, Oh Dei6:16-Atto Secondo170-1I. Recitativo. Come Tu Credi (annio, Sesto)2:09170-2II. Aria. Torna Di Tito A Lato (annio)2:39170-3III. Recitativo. Partir Deggio, O Restar? (sesto, Vitellia)0:44170-4IV. Recitativo. Sesto, Che Chiedi? (publio, Sesto, Vitellia)0:55170-5V. Terzetto. Se Al Volto Mai Ti Senti (vitellia, Sesto, Publio)5:00170-6VI. Coro. Ah Grazie Si Redano (tito, Publio)2:45170-7VII. Recitativo. Gia De’publici (publio, Tito)2:08170-8VIII. Aria. Tardi S’avede (publio)1:28170-9IX. Recitativo. No, Cosi Scellerato (tito, Annio, Publio)1:33170-10X. Aria. Tu Fosti Tradito (annio)3:21170-11XI. Recit. Accompagnato. Che Orror! (tito)2:51170-12XII. Recitativo. Ma Publio (publio, Tito)0:43170-13XIII. Terzetto. Quello Di Tito E Il Volto (sesto, Tito, Publio)3:28170-14XIV. Recitativo. Eppur Mi Fa Pieta (tito, Sesto)5:21170-15XV. Rondo. Deh Per Questo (sesto)7:10170-16XVI. Recitativo. Ove S’intese (tito, Publio)1:53170-17XVII. Aria. Se All’impero (tito)5:14170-18XVIII. Recitativo. Publio, Ascolta (vitellia, Publio, Annio, Servilia)3:05170-19XIX. Aria. S’altro Che Lacrime (servilia)1:53170-20XX. Recit. Accompagnato. Ecco Il Punto (vitellia)2:14170-21XXI. Rondo. Non Piu Di Fiori (vitellia)7:05170-22XXII. Coro. Che Del Ciel1:26170-23XXIII. Recitativo. Sesto, De’tuoi Delitti (tito, Annio, Servilia)2:35170-24XXIV. Recitativo Accompagnato. Ma Che Giorno E Mai Questo? (tito)1:36170-25XXV. Sestetto Con Coro. Eterni Dei, Vegliate3:32CDROM-1No Audio2562Hungaroton6Licensed From117377Edel Classics6Licensed From252406AVRO6Licensed From225289Claves Records6Licensed From131363Olympia (2)6Licensed From20727Opus6Licensed From107799Novalis6Licensed From278277AVC Audio Video Communications AG6Licensed From266230ASV Ltd.6Licensed From68856Nimbus Records6Licensed From120551CRD Records6Licensed From51038BIS6Licensed From178324Fonè6Licensed From114913Bayer Records6Licensed From110180Ricercar6Licensed From137224Claves6Licensed From11354Koch International6Licensed From264510Edel Classics GmbH6Licensed From61063Edel Records6Licensed From92458Orfeo International Music GmbH6Licensed From388706La Monnaie6Licensed From321331Muziekcentrum van de Omroep (MCO)6Licensed From277790Vox Productions, Inc.6Licensed From117769Oehms Classics6Licensed From96303Accent6Licensed From309725Telarc International Corporation6Licensed From291100SLG, LLC13Phonographic Copyright (p)108193EMI Electrola GmbH13Phonographic Copyright (p)63404EMI Records Ltd.14Copyright (c)268688Doopsgezinde Kerk, Haarlem23Recorded At266610Maria Minor, Utrecht23Recorded At276045St. Augustine's Church, Kilburn23Recorded At267691Henry Wood Hall, London23Recorded At316869Muziekcentrum Frits Philips23Recorded At330597Conway Hall, London23Recorded At465399Beurs Van Berlage, Amsterdam23Recorded At387211Muziekcentrum Enschede23Recorded At1479458Rodahal, Kerkrade23Recorded At387214St. Maria Church, Schwetzingen23Recorded At366495Kirche Blumenstein23Recorded At274527Herkulessaal, München23Recorded At319266Hervormde Kerk Rhoon23Recorded At266227Forde Abbey23Recorded At304865Teldec-Studio, Berlin23Recorded At320427Mont St. Guibert23Recorded At387357Huis Overcinge23Recorded At319268Doopsgezinde Remonstrantse Kerk Deventer23Recorded At387300Oud Katholieke Kerk, Delft23Recorded At387354Filosofisch Theologisch College van de Societeit van Jezus V.Z.W. Heverlee, Belgium23Recorded At387315Orangerie, Darmstadt23Recorded At387312Zentralsaal, Bamberg23Recorded At387292Wyastone Concert Hall23Recorded At387273Dom Zu Brixen23Recorded At309367Alte Kirche, Fautenbach23Recorded At385285Kloster Bronnbach23Recorded At387362Palazzo Giusti, Padova23Recorded At356086Nieuwe Kerk, The Hague23Recorded At387266Theater Bayreuth23Recorded At280422Jesus-Christus-Kirche, Berlin23Recorded At268579Studio Lukaskirche, Dresden23Recorded At269055Studio Paul-Gerhardt-Kirche, Leipzig23Recorded At326345Mozarteum, Salzburg23Recorded At388708Théâtre Royal De La Monnaie, Brussels23Recorded At388719Muziekcentrum Vredenburg, Utrecht23Recorded At467678Brucknerhaus Linz23Recorded At268983Studio Christuskirche, Berlin23Recorded At388932Palacio de Congresos y Auditios, La Coruna23Recorded At388939Auditorio de Galicia, Santiago de Compostela23Recorded At388943Franz Liszt Conservatory, Budapest23Recorded At295798Usher Hall, Edinburgh23Recorded At + +598091Tapio RautavaaraKulkurin Taival (Kaikki Levytykset 1946-1979)529504Jari HyttinenJari "cyde" HyttinenExecutive-Producer2288031Sami HokkanenExecutive-Producer697938Timo LindströmExecutive-Producer2218115Sami TurunenGraphic Design, Layout16282051Antero RaevuoriLiner Notes [Writer]4998888Jari MuikkuLiner Notes [Writer]6042121Juha NumminenLiner Notes [Writer]1978862Juha SeitajärviLiner Notes [Writer]653548Pekka NissiläLiner Notes [Writer]1037595Peter von BaghLiner Notes [Writer]5223024Veikko VirtaLiner Notes [Writer]2758639Alvar KolanenPhotography By [Book]16282054Hamilton MillardPhotography By [Book]16282057Lasse SaarikkoPhotography By [Book]16282060Olavi KallionpääPhotography By [Book]16282063Sigurd LehmuskoskiPhotography By [Book]1415659Åke GranholmPhotography By [Book]2938118Suomen KuvapalveluPhotography By [Front Cover]529504Jari HyttinenJari "cyde" HyttinenProducer [Production], Edited By [Editing]678694Juha NikulainenProducer [Production], Edited By [Editing]653548Pekka NissiläProducer [Production], Edited By [Editing]5110440Raimo Pesonen (4)Producer [Production], Edited By [Editing]816994Henkka NiemistöRestoration [Recordings], Mastered By [CD]CompilationRemasteredRockPopChildren'sFolk, World, & CountryFinland2008-10-01Boxset, includes a 245-page book, "Tapio Rautavaara – Kulkurin Taival". + +KAPPALEKOHTAISET TEKIJÄTIEDOT, s. 132–157: + +CD1: 1946–1951 +1. Äänitys: Rytmi-studio, Helsinki, talvi 1946. Alkuperäinen savikiekkojulkaisu: Sointu 725 (1946). +2. & 3. Äänitys: 31.10.1947. Alkuperäinen savikiekkojulkaisu: Electro 4016 (1947). +4. Äänitys: 11.11.1947. Alkuperäinen savikiekkojulkaisu: Electro 4017 (1947). +5. to 8. Äänitys: 3.3.1949. +5. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Sävel, S 9012 (1949). +6. Runo ilmestyi alun perin Dan Anderssonin kokoelmassa Kolvaktarens visor (1915). Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Sävel, S 9012 (1949). +7. & 8. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Sävel, S 9013 (1949). +9. to 15. Äänitys: 6.6.1949. Nämä kappaleet on äänitetty Yleisradion pikalevyjä varten, ja ovat aikaisemmin julkaisemattomia. +16. & 17. Äänitys: 16.9.1949. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Decca, SD 5094 (1949). +18. & 19. Äänitys: Rytmi-studio, 30.10.1950. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6090 (1950). +20. & 21. Äänitys: Rytmi-studio, 2.4.1951. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6107 (1951). +22. to 24. Äänitys: 24.9.1951. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Decca, SD 5148 (1951). +23. Oiva Paloheimon runon alkuperäinen nimi on Kerjäläislegenda. Tämä ilmestyi alun perin Paloheimon kokoelmassa Vaeltava laulaja (1935). +25. Äänitys: 5.11.1951. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Decca, SD 5168 (1951). +26. HUOM! Kappale kirjattu alkuperäiseen julkaisuun nimellä Villisorsa. V. A. Koskenniemen runon alkuperäinen nimi on Rannalta. Tämä ilmestyi alun perin Koskenniemen kokoelmassa Valkeat kaupungit (1908). Äänitys: 6.11.1951. Alkuperäinen savikiekkojulkaisu: Sointu, 1330 (1951). + +CD 2: 1951–1953 +1. Äänitys: 1951. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Leijona, T 5049 (1951). +2. Runo ilmestyi alun perin Heikki Asunnan kokoelmassa ”Metalliseppele” (1932). Äänitys: joulukuu 1951. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4035 (1952). +3. Äänitys: joulukuu 1951. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4035 (1952). +4. Kaarlo Kramsun runon alkuperäinen nimi on ”Mustalainen”. Tämä ilmestyi alun perin Kramsun kokoelmassa ”Runoelmia” (1878). +5. Äänitys: joulukuu 1951. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4036 (1952). +6. & 7. Äänitys: tammikuu 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4037 (1952). +8. & 9. Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4038 (1952). +10. & 11. Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Leijona, T5061 (1952). +12. & 13. Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Leijona, T5065 (1952). +14. HUOM! Sisältää otteita kappaleesta “No onkos tullut kesä”, sävellys trad., sanoitus: J. H. Erkko. Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Leijona, T5066 (1952). +15. Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Leijona, T5066 (1952). +16. & 17. Äänitys: 8.10.1952. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6157 (1952). +18. Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4075 (1952). +19. Runo ilmestyi alun perin Johan Ludvig Runebergin kokoelmassa ”Dikter” (1830). Äänitys: 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4075 (1952). +20. & 21. Äänitys: joulukuu, 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Leijona, T 5076 (1952). +22. & 23. Äänitys: 28.2.1953. Alkuperäinen savikiekkojulkaisu: Pohjoismainen Sähkö Oy, Finlandia, P 168 (1953). +24. & 25. Äänitys: 1953. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4093. + +CD 3: 1954–1955 +1. Yrjö Jylhän runon alkupeärinen nimi on ”Maan vanki”. Tämä ilmestyi alun perin Jylhän kokoelmassa ”Viimeinen kierros” (1931). Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4118 (1954). +2. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4118 (1954). +3. & 4. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4119 (1954). +5. & 6. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4126 (1954). +7. & 8. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4127 (1954). +9. & 10. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4141 (1954). +11. & 12. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4142 (1954). +13. & 14. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4149 (1954). +15. & 16. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4150 (1954). +17. & 18. Äänitys: 1954. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4151 (1954). +19. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4169 (1955). +20. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4169 (1955). +21. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4170 (1955). +22. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4170 (1955). +23. Runo ilmestyi alun perin Gustaf Frödingin kokoelmassa ”Gitarr och dragharmonika” (1891). Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4207 (1955). +24. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4207 (1955). + +CD 3: 1955–1957 +1. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4208 (1955). +2. HUOM: Kappale kirjattu alkuperäiseen julkaisuun nimellä ”Sayonara”. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4208 (1955). +3. & 4. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4209 (1955). +5. & 6. Äänitys: 1955. +7. & 8. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4221 (1955). +9. & 10. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4222 (1955). +11. Äänitys: 1956. Alkuperäinen savikiekkojulkaisu: Star, WS 627 (1956). +12. Äänitys: 1956. Alkuperäinen savikiekkojulkaisu: Star, WES 628 (1956). +13. & 14. Äänitys: 20.9.1956. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Decca, SD 5380 (1956). +15. & 16. Äänitys: 18.10.1956. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6322 (1956). +17. Irene Mendelinin runon alkuperäinen nimi on ”Kuin lammen laine”. Tämä ilmestyi alun perin Mendelinin kokoelmassa ”Koivikossa” (1893). Äänitys: 18.10.1956. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6323 (1956). +18. Äänitys: 18.10.1956. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6322 (1956). +19. Äänitys: 21.12.1956. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Decca, SD 5381 (1957). +20. & 21. Äänitys: 4.1.1957. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6328 (1957). +22. & 23. Äänitys: 19.1.1957. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6329 (1957). +24. HUOM: Kyseessä on sikermä, joka sisältää otteita mm. seuraavista sävelmistä: ”Forssasta pojat kotoisin ollaan” (trad.), ”Lautatarhan rimadonna” (Toivo Kärki), ”Luullahan, jotta on lysti olla” (trad.), ”Tuollʼ on mun kultani” (trad.) ja ”Sekajunan matkassa” (Toivo Kärki). Äänitys: 5.4.1957. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6334 (1957). +25. HUOM: Kyseessä on sikermä, joka sisältää otteita mm. seuraavista sävelmistä: ”Raviralli” (Toivo Kärki), ”Ajetaanpa, poijat” (trad.), ”Tula tullalla” (trad.), ”Minun kultani kaunis on” (trad.), ”Tili tuli lauantaina” (Toivo Kärki), ”Niin kauan minä tramppaan” (trad.). Äänitys: 5.4.1957. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6334 (1957). +26. Äänitys: 28.8.1957. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6343 (1957). +27. & 28. Äänitys: 1957. Nämä kappaleet on äänitetty Yleisradion kantanauhoja varten ja ovat aikaisemmin julkaisemattomia. + +CD 5: 1957–1959 +1. to 6. Äänitys: 1957. Nämä kappaleet on äänitetty Yleisradion kantanauhoja varten ja ovat aikaisemmin julkaisemattomia. +7. & 8. Äänitys: maaliskuu 1959. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4384 (1959). Alkuperäinen singlejulkaisu: Levytukku Oy, Triola, TS 384 (1959). +9. & 10. Äänitys: maaliskuu 1959. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4385 (1959). +11. & 12. Äänitys: maaliskuu 1959. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4386 (1959). Alkuperäinen singlejulkaisu: Levytukku Oy, Triola, TS 386 (1959). +13. to 16. Äänitys: 4.3.1959. Alkuperäinen EP-julkaisu: TAPIO RAUTAVAARA LAULAA J. ALFRED TANNERIN KUOLEMATTOMIA 1, Musiikki Fazer, Rytmi, RN 4172 (1959). +17. to 20. Äänitys: 4.3.1959. Alkuperäinen EP-julkaisu: TAPIO RAUTAVAARA LAULAA J. ALFRED TANNERIN KUOLEMATTOMIA 2, Musiikki Fazer, Rytmi, RN 4173 (1959). +21. to 24. Äänitys: 24.8.1959. Alkuperäinen EP-julkaisu: KOTIMAAN SÄVELMIÄ, Musiikki Fazer, Rytmi, RN 4188 (1959). + +CD 6: 1950–1962 +1. & 2. Äänitys: Ronnie Kranck, Akku-studio, Helsinki, 9.8.1960. Alkuperäinen singlejulkaisu: Musiikki-Fazer, Decca, SD 5508 (1960). +3. & 4. Äänitys: 11.10.1960. Alkuperäinen EP-julkaisu: TÄÄLLÄ POHJANTÄHDEN ALLA, Musiikki-Fazer, Decca, SDEP 1011 (1960). +5. Runo ilmestyi alun perin Yrjö Jylhän kokoelmassa ”Risti lumessa” (1937). Äänitys: 11.10.1960. Alkuperäinen EP-julkaisu: TÄÄLLÄ POHJANTÄHDEN ALLA, Musiikki-Fazer, Decca, SDEP 1011 (1960). +6. Runo ilmestyi alun perin Zacharias Topeliuksen libretossa ”Prinsessan af Cypern” (1860). Äänitys: 11.10.1960. Alkuperäinen EP-julkaisu: TÄÄLLÄ POHJANTÄHDEN ALLA, Musiikki-Fazer, Decca, SDEP 1011 (1960). +7. & 8. Äänitys: 1960. Alkuperäinen singlejulkaisu: Bonniers Folkbibliotek, BFB 204 (1960). +9. & 10. Äänitys: 19.12.1960. Alkuperäinen singlejulkaisu: Musiikki Fazer, Philips, PF 340531 (1960). +11. Runo ilmestyi alun perin V. A. Koskenniemen kokoelmassa ”Sydän ja kuolema” (1919). Äänitys: 1961. Alkuperäinen EP-julkaisu: SUOMI-SARJA 1, Levytukku Oy, Triola, NE 244 (1961). +12. Äänitys: 1961. Alkuperäinen EP-julkaisu: SUOMI-SARJA 1, Levytukku Oy, Triola, NE 244 (1961). +13. Runo ilmestyi alun perin Eino Leinon kokoelmassa ”Hiihtäjän virsiä” (1900). Äänitys: 1961. Alkuperäinen EP-julkaisu: SUOMI-SARJA 1, Levytukku Oy, Triola, NE 244 (1961). +14. Äänitys: 1961. Alkuperäinen EP-julkaisu: SUOMI-SARJA 1, Levytukku Oy, Triola, NE 244 (1961). +15. & 16. Äänitys: Helge Mechelin, Kirja-studio, Helsinki, tammikuu 1961. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 103 (1961). +17. & 18. Äänitys: syyskuu 1961. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 109 (1961). +19 & 20. Äänitys: tammikuu 1962. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 114 (1962). +21. & 22. Äänitys: huhtikuu 1962. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 119 (1962). +23. & 24. Äänitys: syyskuu 1962. Alkuperäinen singlejulkaisu: Levytukku Oy, Manhattan, MAN 71 (1962). + +CD 7: 1963–1964 +1. & 2. Äänitys: maaliskuu 1963. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 131 (1963). +3. & 4. Äänitys: maaliskuu 1963. Alkuperäinen singlejulkaisu: Levytukku Oy, Manhattan, MAN 78 (1963). +5. Äänitys: maaliskuu 1963. Alkuperäinen singlejulkaisu: Levytukku Oy, Manhattan, MAN 79 (1963). +6. & 7. Äänitys: 25.9.1963. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6531 (1963). +8. & 9. Äänitys: lokakuu 1963. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 132 (1963). +10. & 11. Äänitys: Helge Mechelin, Kirja-studio, Helsinki, 9.12.1963. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6537 (1963). +12. & 13. Äänitys: 7.4.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6541 (1964). +14. & 15. Äänitys: 8.6.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6545 (1964). +16. & 17. Äänitys: Helge Mechelin, Kirja-studio, Helsinki, 15.6.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Sävel, SÄ 1512 (1964). +18. & 19. Äänitys: kesäkuu 1963. Alkuperäinen singlejulkaisu: Levytukku Oy, Broadway, BD 142 (1964). +20. & 21. Äänitys: 28.7.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6547 (1964). + +CD 8 (1964–1965): +1. & 2. Äänitys: Helge Mechelin, Kirja-studio, Helsinki, elokuu 1964. Alkuperäinen singlejulkaisu: Finndisc Oy, Safir, S 121 (1964). +3. & 4. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 15.9.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6548 (1964). +5. & 6. Äänitys: Ronnie Kranck, Akku-studio, Helsinki, 24.9.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6550 (1964). +7. & 8. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 5.10.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Sävel, SÄ 1513 +9. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 15.10.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6551 (1964). +10. & 11. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 28.12.1964. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6553 (1965). +12. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 31.3.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi R 6555 (1965). +13. Ben Jonsonin runon alkuperäinen nimi on ”Song To Celia”. Tämä ilmestyi alun perin Jonsonin kokoelmassa ”The Forest” (1916). Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 31.3.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi R 6555 (1965). +14. & 15. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 10.5.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Rytmi, R 6557 (1965). +16. to 19. Äänitys: Helge Mechelin, Kirja-studio, Helsinki, 1.6.1965. Alkuperäinen LP-julkaisu: TAPSAN VANHOJA JA UUSIA LAULELMIA, Musiikki Fazer, Rytmi, RILP 7006 (1965). +20. & 21. Äänitys: Ronnie Kranck, Akku-studio, Helsinki, 3.6.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340707 (1965). +22. & 23. Äänitys: todennäköisesti Ronnie Kranck, Akku-studio, Helsinki, 16.6.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340711 (1965). + +CD 9: 1965–1966 +1. & 2. Äänitys: Ronnie Kranck, Akku-studio, Helsinki, 19.8.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340716 (1965). +3. & 4. Äänitys: 9.11.1965. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340723 (1965). +5. Äänitys: 3.12.1965. Alkuperäinen LP-levy: TOIVO KÄRKI SINGS AND SWINGS AND PLAYS TOIVO KÄRKI ON HIS OWN PIANO AND OTHERS, Isku TK 50 (1965). HUOM: Levy ei ole ollut yleisessä myynnissä. Valmistettu vain 150 numeroitua kappaletta Toivo Kärjen 50-vuotispäivän kunniaksi. +6. & 7. Äänitys: 19.1.1966. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340729 (1966). +8. & 9. Äänitys: 8.3.1966. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340732 (1966). +10. & 11. Äänitys: 15.6.1966. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340749 (1966). +12. & 13. Äänitys: 15.6.1966. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340763 (1966). +14. to 21. Äänitys: todennäköisesti Finnvox-studio, Helsinki, 1966. Alkuperäinen LP-julkaisu: KANSANLAULUJA 1, Musiikki Fazer, Rytmi, RTLP 7515 (1966). +22. HUOM: Kappale kirjattu alkuperäiseen julkaisuun nimellä ”On suuri sun rantas autius”. V. A. Koskenniemen runon alkuperäinen nimi on ”Rannalta”. Tämä ilmestyi alun perin Koskenniemen kokoelmassa ”Valkeat kaupungit” (1908). Äänitys: todennäköisesti Finnvox-studio, Helsinki, 1966. Alkuperäinen LP-julkaisu: KANSANLAULUJA 1, Musiikki Fazer, Rytmi, RTLP 7515 (1966). +23. to 30. Äänitys: todennäköisesti Finnvox-studio, Helsinki, 1966. Alkuperäinen LP-julkaisu: KANSANLAULUJA 1, Musiikki Fazer, Rytmi, RTLP 7515 (1966). + +CD 10: 1967–1968 +1. & 2. Äänitys: todennäköisesti Finnvox-studio, Helsinki, 7.2.1967. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340784 (1967). +3. & 4. Äänitys: todennäköisesti Finnvox-studio, Helsinki, 2.3.1967. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340789 (1967). +5. to 8. Äänitys: todennäköisesti Finnvox-studio, Helsinki, 15.6.1967. Alkuperäinen LP-julkaisu: TAPSA, Musiikki Fazer, Rytmi, RILP 7030 (1967). +9. & 10. Äänitys: todennäköisesti Finnvox-studio, Helsinki, 4.8.1967. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340800 (1967). +11. to 26. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 6.11.1967. Alkuperäinen LP-julkaisu: TAPSA LAULAA JA LAULATTAA, Musiikki Fazer, Rytmi, RILP 7036 (1967). + +CD 11: 1968–1969 +1. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 12.3.1968. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340810 (1968). HUOM! PF 340810 on mitä ilmeisimmin julkaisematta jäänyt levy. Yllä oleva singletieto Arto Kyläpään vinyylilevyluettelon (1994) mukaisesti. Kappaleen tämä versio on julkaistu CD:llä ”Nostalgia – Tapio Rautavaara”. +2. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 12.3.1968. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340810 (1968) HUOM! PF 340810 on mitä ilmeisimmin julkaisematta jäänyt levy. +3. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 10.10.1968. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340830 (1968). +4. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 12.3.1968 (orkesteritausta), 10.10.1968 (laulu). Alkuperäinen single: Musiikki Fazer, Phillips, PF 340830 (1968). +5. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 4.11.1968. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340832 (1968). +6. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 25.11.1968. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340832 (1968). +7. & 8. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 31.1.1969. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340836 (1969). +9. & 10. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 31.3.1969. Alkuperäinen single: Musiikki Fazer, Phillips, PF 340839 (19699. +11. to 22. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen LP-julkaisu: TAPIO RAUTAVAARA LAULAA JA LAULATTAA 2, Musiikki Fazer, Rytmi, RILP 7063 (1969). +23. Runo ilmestyi alun perin Topeliuksen kokoelmassa ”Boken om vårt land” (1875). Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen LP-julkaisu: TAPIO RAUTAVAARA LAULAA JA LAULATTAA 2, Musiikki Fazer, Rytmi, RILP 7063 (1969). +24. & 25. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen LP-julkaisu: TAPIO RAUTAVAARA LAULAA JA LAULATTAA 2, Musiikki Fazer, Rytmi, RILP 7063 (1969). +26. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 14.8.1969. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340850 (1969). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +27. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 8.9.1969. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, PF 340850 (1969). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). + +CD 12: 1970–1973 +1. & 2. Äänitys: Ronnie Kranck, Finnvox-studio, Helsinki, 22.4.1970. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034005 (1970). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +3. & 4. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 18.2.1971. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034015 (1971). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +5. & 6. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 24.5.1971. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034019 (1971). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +7. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 24.5.1971. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034402 (1976). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +8. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 24.5.1971. Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +9. Äänitys: Ronnie Kranck, Finnvox-studio, Helsinki, 1971. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034024 (1971). Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +10. Äänitys: Ronnie Kranck, Finnvox-studio, Helsinki, 1971. Alkuperäinen LP-julkaisu: MUISTOISSAIN MUUTTUMATON, Musiikki Fazer, Sävel, SÄLP 677 (1971). +11. & 12. Äänitys: Erkki Hyvönen tai Ronnie Kranck, Finnvox-studio, Helsinki, 15.6.1972. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034099 (1972). Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +13. Äänitys: Erkki Hyvönen tai Ronnie Kranck, Finnvox-studio, Helsinki, 25.8.1972. Alkuperäinen singlejulkaisu: Musiikki Fazer, Polydor, 2055033 (1972). Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +14. & 15. Äänitys: Jouko Ahera, Finnvox-studio, Helsinki, 17.2.1973. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034034 (1973). Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +16. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 10.10.1968 (orkesteritausta), 1973 (laulu). Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034034 (1973). Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +17. & 18. Äänitys: todennäköisesti Erkki Hyvönen, Finnvox-studio, Helsinki, 12.4.1973. Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +19. & 20. Äänitys: todennäköisesti Jouko Ahera, Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1973. Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +21. Äänitys: todennäköisesti Jouko Ahera, Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1973. Alkuperäinen LP-julkaisu: TÄNÄÄN EI LAULUJA SYNNY, Musiikki Fazer, Sävel, SÄLP 727 (1973). +22. Äänitys: Ronnie Kranck, Scandia-studio, Helsinki, 21.2.1973. Alkuperäinen LP-julkaisu: USKO KEMPPI: LAULUJENI LAPPI, Finnlevy, SFLP 8532 (1973). +23. Äänitys: Ronnie Kranck, Scandia-studio, Helsinki, 21.2.1973. Alkuperäinen LP-julkaisu: ERI ESITTÄJIÄ: REVONTULTEN LAULUJA, Musiikki Fazer, Finnlevy, SFLP 8545 (1973). +24. Äänitys: Ronnie Kranck, Scandia-studio, Helsinki, 7.8.1973. Alkuperäinen LP-julkaisu: ERI ESITTÄJIÄ: REVONTULTEN LAULUJA, Musiikki Fazer, Finnlevy, SFLP 8545 (1973). + +CD 13: 1973–1979 +1. Äänitys: 1970-luku. Alkuperäinen kasettijulkaisu: ISOISÄN OLKIHATTU, Musiikki Fazer, KAMPMC 50 (1989). +2. & 3. Äänitys: todennäköisesti Finnlevy-studio, Helsinki, 1974. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034049 (1974). +4. to 15. Äänitys: Finnlevy-studiot, Helsinki, 1976. Alkuperäinen LP-julkaisu: UNOHTUMATON ILTA, Musiikki Fazer, Finnlevy, SFLP 9595 (1976). +16. & 17. Äänitys: todennäköisesti Finnlevy-studiot, Helsinki, 1976. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034105 (1976). +18. & 19. Äänitys: todennäköisesti Finnlevy-studiot, Helsinki, 1976. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034111 (1976). +20. to 22. Äänitys: todennäköisesti Finnlevy-studiot, Helsinki, 1977. Alkuperäinen LP-julkaisu: VENÄLÄISSUOSIKKEJA SUOMALAISITTAIN, Musiikki Fazer, Finnlevy, FL/FK 5030 (1977). +23. & 24. Äänitys: Tom Vuori, Takomo-studio, Helsinki, 1979. Alkuperäinen singlejulkaisu: Musiikki Fazer, Phillips, 6034127 (1979). + +CD 14: 1970–1973 +1. & 2. Äänitys: 10.5.1951. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Decca, SD 5131 (1951). +3. Äänitys: 11.9.1952. Alkuperäinen savikiekkojulkaisu: Scandia, KS 202 (1952). +4. Äänitys: marraskuu 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4068 (julkaistu 4.12.1952). +5. Äänitys: 28.8.1957. Alkuperäinen savikiekkojulkaisu: Musiikki Fazer, Rytmi, R 6343 (1957). +6. & 7. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen EP-julkaisu: TAPSA LAPSENMIELELLÄ, Musiikki Fazer, Decca Pekka, DP 2009 (1969). +8. Runo ilmestyi alun perin kokoelmassa ”Kultainen aapinen” (1956). Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen EP-julkaisu: TAPSA LAPSENMIELELLÄ, Musiikki Fazer, Decca Pekka, DP 2009 (1969). +9. to 11. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen EP-julkaisu: TAPSA LAPSENMIELELLÄ, Musiikki Fazer, Decca Pekka, DP 2009 (1969). +12. Runo ilmestyi alun perin Zacharias Topeliuksen kokoelmassa ”Läsning för barn 8” (1896). Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen EP-julkaisu: TAPSA LAPSENMIELELLÄ, Musiikki Fazer, Decca Pekka, DP 2009 (1969). +13. & 14. Äänitys: Ronnie Kranck tai Erkki Hyvönen, Finnvox-studio, Helsinki, 1969. Alkuperäinen EP-julkaisu: TAPSA LAPSENMIELELLÄ, Musiikki Fazer, Decca Pekka, DP 2009 (1969). +15. Äänitys: marraskuu 1952. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4068 (1952). +16. Zacharias Topeliuksen runon alkuperäinen nimi on ”Sylvias hälsning från Sicilien”. Tämä ilmestyi alun perin Topeliuksen kokoelmassa ”Sånger” (1853). Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4220 (1955). +17. Äänitys: 1955. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, T 4220 (1955). +18. & 19. Äänitys: marraskuu 1960. Alkuperäinen savikiekkojulkaisu: Levytukku Oy, Triola, TS 434 (1960).Needs Vote3928181946-19511-1Lokki = Chaika3:11598091Tapio RautavaaraT.Rantanen355Unknown ArtistArranged By151641TraditionalTrad. (Venäläinen Kansanlaulu)Composed By, Lyrics By355Unknown ArtistMusician1415657Sointu-OrkesteriOrchestra355Unknown ArtistTranslated By [Finnish]598091Tapio RautavaaraVocals1-2Yhteinen Susannamme = Oh Susanna2:44562947Reino Helismaa&598091Tapio Rautavaara573704Harry BergströmArranged By615543Stephen FosterComposed By, Lyrics By [Original]4412571Electro-orkesteriOrchestra573704Harry BergströmOrchestra, Conductor355Unknown ArtistOrchestra, Musician587098J. Alfred TannerTranslated By [Finnish]562947Reino HelismaaTranslated By [Finnish]562947Reino HelismaaVocals598091Tapio RautavaaraVocals1-3Laulu On Iloni Ja Työni [1947 Versio]2:43598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)573704Harry BergströmArranged By151641TraditionalTrad. (Pohjalainen Kansansävel)Composed By4412571Electro-orkesteriOrchestra573704Harry BergströmOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-4Se Ei Käy2:58562947Reino Helismaa&598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)16126659Eeva MeritähtiArranged By151641TraditionalTrad. (Saksalainen Kansanlaulu)Composed By4412571Electro-orkesteriOrchestra355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraSpeech562947Reino HelismaaVocals1-5Päivänsäde Ja Menninkäinen [1949 Versio]2:56598091Tapio Rautavaara540727Ingmar EnglundArranged By562947Reino HelismaaComposed By, Lyrics By540727Ingmar EnglundGuitar598091Tapio RautavaaraVocals1-6Mä Odotan = Jag Väntar Vid Min Mila2:36598091Tapio Rautavaara540727Ingmar EnglundArranged By944662Gunnar TuressonComposed By540727Ingmar EnglundGuitar816180Dan AnderssonLyrics By [Original Poem]2921229Kaarlo Väinö ValveKaarlo V. ValveTranslated By [Finnish]598091Tapio RautavaaraVocals1-7Mitalin Molemmat Puolet3:11598091Tapio Rautavaara540727Ingmar EnglundArranged By711322Matti JurvaComposed By540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By1194418Tatu PekkarinenLyrics By598091Tapio RautavaaraVocals1-8Synkkä Yksinpuhelu = Put The Blame On Mame3:10598091Tapio Rautavaara540727Ingmar EnglundArranged By643500Allan RobertsComposed By, Lyrics By [Original]643633Doris FisherComposed By, Lyrics By [Original]540727Ingmar EnglundGuitar562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals1-9Viu-liu-lei [1949 Versio]1:55598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Ruotsalainen Kansansävel)Composed By4760920Radion ViihdeorkesteriOrchestra355Unknown ArtistOrchestra, Backing Vocals852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-10Kalle Kannelin2:36598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By4760920Radion ViihdeorkesteriOrchestra355Unknown ArtistOrchestra, Backing Vocals852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-11Jannen Hanuripolkka2:16598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Savolainen Kansansävel)Composed By4760920Radion ViihdeorkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-12Kantarella Ja Jimmy2:05598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Amerikkalainen Kansansävel)Composed By4760920Radion ViihdeorkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-13Römperin Tanssit0:54698040Georg Malmstén&598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Suomalainen Kansanlaulu)Composed By4760920Radion ViihdeorkesteriOrchestra355Unknown ArtistOrchestra, Backing Vocals852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician698040Georg MalmsténVocals598091Tapio RautavaaraVocals1-14Eikö Juu1:374426172Malmi Vilppula&598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By4760920Radion ViihdeorkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician4426172Malmi VilppulaVocals598091Tapio RautavaaraVocals1-15Niin Ameriikas2:06598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By4760920Radion ViihdeorkesteriOrchestra355Unknown ArtistOrchestra, Backing Vocals852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-16Cowboy-serenadi3:101754726Tuire Orri&598091Tapio Rautavaara1415662Eero LauresaloArranged By13787515Ramblers-yhtyeBacking Band1415662Eero LauresaloBacking Band, Bass1206069Klaus SalmiBacking Band, Conductor540727Ingmar EnglundBacking Band, Guitar1415778Veikko TamminenBacking Band, Piano1175600Matti ViljanenBacking Band, Violin889706Wolde JussilaBacking Band, Violin562947Reino HelismaaComposed By, Lyrics By598091Tapio RautavaaraVocals1754726Tuire OrriVocals1-17Reissumies Ja Kissa2:54598091Tapio Rautavaara589906Toivo KärkiArranged By13787515Ramblers-yhtyeBacking Band1175600Matti ViljanenBacking Band, Accordion592252Erik LindströmBacking Band, Bass1415771Leo KähkönenBacking Band, Clarinet1206069Klaus SalmiBacking Band, Conductor1415675Gösta HagelbergBacking Band, Drums540727Ingmar EnglundBacking Band, Guitar1415625Asser FagerströmBacking Band, Piano889701Pauli GranfeltBacking Band, Violin562947Reino HelismaaComposed By, Lyrics By598091Tapio RautavaaraVocals1-18Rakovalkealla3:20598091Tapio Rautavaara589906Toivo KärkiArranged By562947Reino HelismaaComposed By, Lyrics By598091Tapio RautavaaraLead Vocals7060995Jorma RoustiMusician [Additional], Backing Vocals698031Kauko KäyhköMusician [Additional], Backing Vocals965045Roine Richard RyynänenR.R.RyynänenMusician [Additional], Backing Vocals2937739Teijo JoutselaMusician [Additional], Backing Vocals1415639Rytmi-OrkesteriOrchestra7060992Erkki KiilasOrchestra, Bass1485430Mauno MaunolaOrchestra, Bass7060991Edvin RönnqvistOrchestra, Clarinet589906Toivo KärkiOrchestra, Conductor7060994Juho AlvasOrchestra, Flute540727Ingmar EnglundOrchestra, Guitar1415778Veikko TamminenOrchestra, Piano1923679Olavi LampinenOrchestra, Trombone3145904Martti PajanneOrchestra, Viola889713Olavi HaapalainenOrchestra, Violin1315851Pärre FörarsPer-Erik FörarsOrchestra, Violin1-19Kulkuri Ja Joutsen = Lite Grann Från Ovan [1950 Versio]3:26598091Tapio Rautavaara589906Toivo KärkiArranged By844086Lasse DahlquistComposed By, Lyrics By [Original]1415639Rytmi-OrkesteriOrchestra7060992Erkki KiilasOrchestra, Bass1485430Mauno MaunolaOrchestra, Bass7060991Edvin RönnqvistOrchestra, Clarinet589906Toivo KärkiOrchestra, Conductor, Vibraphone7060994Juho AlvasOrchestra, Flute540727Ingmar EnglundOrchestra, Guitar1415778Veikko TamminenOrchestra, Piano1923679Olavi LampinenOrchestra, Trombone3145904Martti PajanneOrchestra, Viola889713Olavi HaapalainenOrchestra, Violin1315851Pärre FörarsPer-Erik FörarsOrchestra, Violin562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals1-20Vain Merimies Voi Tietää [1951 Versio]2:57598091Tapio Rautavaara698040Georg MalmsténArranged By5947800Rytmin kvintettiRytmi-kvintettiBacking Band3971797Aarno WalliBacking Band, Accordion1485430Mauno MaunolaBacking Band, Bass698040Georg MalmsténBacking Band, Conductor540727Ingmar EnglundBacking Band, Guitar1415686Tapani ValstaBacking Band, Piano889713Olavi HaapalainenBacking Band, Violin598091Tapio RautavaaraComposed By1278900Heikki Saari (2)Lyrics By598091Tapio RautavaaraVocals1-21Tuo Aika Toukokuun = Sous Les Points de Paris2:57598091Tapio Rautavaara698040Georg MalmsténArranged By5947800Rytmin kvintettiRytmi-kvintettiBacking Band3971797Aarno WalliBacking Band, Accordion1485430Mauno MaunolaBacking Band, Bass698040Georg MalmsténBacking Band, Conductor540727Ingmar EnglundBacking Band, Guitar1415686Tapani ValstaBacking Band, Piano889713Olavi HaapalainenBacking Band, Violin537381Vincent ScottoComposed By830168Jean RodorLyrics By [Original]598091Tapio RautavaaraTranslated By [Finnish]598091Tapio RautavaaraVocals1-22Isoisän Olkihattu [1951 Versio]3:09598091Tapio Rautavaara698040Georg MalmsténArranged By1485430Mauno MaunolaBass598091Tapio RautavaaraComposed By, Lyrics By698040Georg MalmsténConductor1415649Ossi AaltoDrums540727Ingmar EnglundGuitar1415778Veikko TamminenPiano1626603Artto GranrothStrings, Cello1440217Emil KarppinenStrings, Cello889713Olavi HaapalainenStrings, Violin889701Pauli GranfeltStrings, Violin889706Wolde JussilaStrings, Violin598091Tapio RautavaaraVocals1-23Ontuva Eriksson3:49598091Tapio Rautavaara698040Georg MalmsténArranged By1485430Mauno MaunolaBass598091Tapio RautavaaraComposed By698040Georg MalmsténConductor540727Ingmar EnglundGuitar1458657Oiva PaloheimoLyrics By [Poem]1415778Veikko TamminenPiano889713Olavi HaapalainenStrings, Violin889701Pauli GranfeltStrings, Violin889706Wolde JussilaStrings, Violin598091Tapio RautavaaraVocals1-24Menen Enkä Meinaa3:02598091Tapio Rautavaara355Unknown ArtistAccordion698040Georg MalmsténArranged By1485430Mauno MaunolaBass598091Tapio RautavaaraComposed By698040Georg MalmsténConductor540727Ingmar EnglundGuitar1278900Heikki Saari (2)Lyrics By1415778Veikko TamminenPiano889713Olavi HaapalainenStrings, Violin889701Pauli GranfeltStrings, Violin889706Wolde JussilaStrings, Violin598091Tapio RautavaaraVocals1-25Auringon Lapset2:59598091Tapio Rautavaara698040Georg MalmsténComposed By, Arranged By698040Georg MalmsténConductor1278906Erkki KaruLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals1-26Älä Unhoita Minua3:22598091Tapio Rautavaara1609138Ernest PaananenAdapted By (Text), Lyrics By1175600Matti ViljanenArranged By151641TraditionalTrad.Composed By1415657Sointu-OrkesteriOrchestra1175600Matti ViljanenOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1-27Villisorsa (On Suuri Sun Rantas Autius) [1951 Versio]3:18598091Tapio Rautavaara1175600Matti ViljanenArranged By151641TraditionalTrad. (Suomalainen Kansansävel)Composed By1515376Veikko Antero KoskenniemiV.A.KoskenniemiLyrics By [Poem]1415657Sointu-OrkesteriOrchestra1175600Matti ViljanenOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals1951-19532-1Hawaii-idylli2:59598091Tapio Rautavaara355Unknown ArtistArranged By711322Matti JurvaComposed By, Lyrics By355Unknown ArtistMusician5495666Kullervo Linnan SolistiorkesteriOrchestra598091Tapio RautavaaraVocals2-2Huuhkaja2:58598091Tapio Rautavaara698040Georg MalmsténArranged By598091Tapio RautavaaraComposed By3196548Heikki AsuntaLyrics By [Poem]3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-3Yöhön Jäin3:00598091Tapio Rautavaara698040Georg MalmsténArranged By355Unknown ArtistComposed By, Lyrics By3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-4Älä Kysy2:59598091Tapio Rautavaara1841664Tapio IlomäkiArranged By598091Tapio RautavaaraComposed By3694944Kaarlo KramsuLyrics By [Poem]3096798Triola-OrkesteriOrchestra1841664Tapio IlomäkiOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-5Huippu-urheilija2:44598091Tapio Rautavaara1841664Tapio IlomäkiArranged By598091Tapio RautavaaraComposed By, Lyrics By3096798Triola-OrkesteriOrchestra1841664Tapio IlomäkiOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-6Viu-lulei [1952 Versio]2:39598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)1841664Tapio IlomäkiArranged By151641TraditionalTrad. (Ruotsalainen Kansansävel)Composed By3096798Triola-OrkesteriOrchestra1841664Tapio IlomäkiOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-7Pilanlaskija [1952 Versio]2:45598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)1841664Tapio IlomäkiArranged By151641TraditionalTrad. (Amerikkalainen Kansanlaulu)Composed By3096798Triola-OrkesteriOrchestra1841664Tapio IlomäkiOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-8Kun Minä Kotoani Läksin2:47598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text)540727Ingmar EnglundArranged By151641TraditionalTrad.Composed By540727Ingmar EnglundGuitar598091Tapio RautavaaraVocals2-9Pappa Se Valjasti Hoikan Varsan2:54598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text)540727Ingmar EnglundArranged By151641TraditionalTrad. (Pohjalainen kansanlaulu)Composed By540727Ingmar EnglundGuitar598091Tapio RautavaaraVocals2-10Rio Granden Merirosvot2:39598091Tapio Rautavaara355Unknown ArtistArranged By151641TraditionalTrad. (Perustuu Italialaissmelodiaan Vieni Sul Mar)Composed By1841664Tapio IlomäkiConductor869629Usko KemppiLyrics By [Adaptation]355Unknown ArtistMusician598091Tapio RautavaaraVocals2-11Balladi Peter Greystä = Peter Gray3:00598091Tapio Rautavaara355Unknown ArtistArranged By151641TraditionalTrad. (Amerikkalainen Kansanlaulu)Composed By, Lyrics By [Original]1841664Tapio IlomäkiConductor355Unknown ArtistMusician869629Usko KemppiTranslated By [Finnish]598091Tapio RautavaaraVocals2-12Kesäilta2:57598091Tapio Rautavaara852712George de GodzinskyArranged By151641TraditionalTrad. (Ruotsalainen Kansanlaulu)Composed By, Lyrics By2324880Leijona-OrkesteriLeijona OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-13Talonpoikaisserenadi2:53598091Tapio Rautavaara852712George de GodzinskyArranged By869629Usko KemppiComposed By, Lyrics By2324880Leijona-OrkesteriLeijona OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-14Oikeassa Kaupungissa (Mutta Väärällä Kadulla)2:52598091Tapio Rautavaara852712George de GodzinskyArranged By869629Usko KemppiComposed By151641TraditionalTrad.Composed By [No Onkos Tullut Kesä Extract]3223105J. H. ErkkoLyrics By [No Onkos Tullut Kesä Extract]2324880Leijona-OrkesteriLeijona OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-15Lähtövalssi2:52598091Tapio Rautavaara852712George de GodzinskyArranged By869629Usko KemppiComposed By, Lyrics By2324880Leijona-OrkesteriLeijona OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-16Lauluni Aiheet3:01598091Tapio Rautavaara592252Erik LindströmBass589906Toivo KärkiComposed By, Arranged By589906Toivo KärkiConductor, Accordion540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By1415778Veikko TamminenPiano7060996Vili PullinenStrings, Cello3145904Martti PajanneStrings, Viola889713Olavi HaapalainenStrings, Violin1315851Pärre FörarsPer-Erik FörarsStrings, Violin598091Tapio RautavaaraVocals2-17Laivat Puuta, Miehet Rautaa3:06598091Tapio Rautavaara2971316Ami LovénBacking Vocals4925565Pekka NuotioBacking Vocals5827426Reino AhtiainenBacking Vocals7060993Urho NiemeläBacking Vocals592252Erik LindströmBass2971739RallinelosetChoir [Backing Vocals]589906Toivo KärkiComposed By, Arranged By589906Toivo KärkiConductor, Accordion540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By1415778Veikko TamminenPiano7060996Vili PullinenStrings, Cello3145904Martti PajanneStrings, Viola889713Olavi HaapalainenStrings, Violin1315851Pärre FörarsPer-Erik FörarsStrings, Violin598091Tapio RautavaaraVocals2-18Kesäillalla3:24598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By151641TraditionalTrad.Composed By, Lyrics By3096798Triola-OrkesteriOrchestra1206069Klaus SalmiOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-19Joutsen = Svanen3:10598091Tapio Rautavaara355Unknown ArtistArranged By1655902Fredrik August EhrströmComposed By855785Johan Ludvig RunebergLyrics By [Original Poem]3096798Triola-OrkesteriOrchestra1206069Klaus SalmiOrchestra, Conductor355Unknown ArtistOrchestra, Musician1515372Yrjö WeijolaTranslated By [Finnish]598091Tapio RautavaaraVocals2-20Salakuljettajan Laulu3:00598091Tapio Rautavaara852712George de GodzinskyComposed By, Arranged By1278902Kaarlo NuorvalaLyrics By2324880Leijona-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-21Pohjolan Yö3:02598091Tapio Rautavaara852712George de GodzinskyComposed By, Arranged By1278902Kaarlo NuorvalaLyrics By2324880Leijona-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals2-22Pihalaulaja Vain2:49598091Tapio Rautavaara2388898Finlandia-YhtyeBacking Band852712George de GodzinskyBacking Band, Conductor355Unknown ArtistBacking Band, Musician852712George de GodzinskyComposed By, Arranged By791377Lauri JauhiainenLyrics By598091Tapio RautavaaraVocals2-23Sattuman Santtu2:52598091Tapio Rautavaara2388898Finlandia-YhtyeBacking Band852712George de GodzinskyBacking Band, Conductor355Unknown ArtistBacking Band, Musician852712George de GodzinskyComposed By, Arranged By791377Lauri JauhiainenLyrics By598091Tapio RautavaaraVocals2-24Kukkakaupan Ulkopuolella3:02598091Tapio Rautavaara852712George de GodzinskyArranged By598091Tapio RautavaaraComposed By, Lyrics By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals2-25Juokse Sinä Humma [1953 Versio]3:33598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text), Lyrics By852712George de GodzinskyArranged By598091Tapio RautavaaraArranged By151641TraditionalTrad.Composed By852712George de GodzinskyConductor1415684Ivan PutilinGuitar355Unknown ArtistMusician [Also]1315279Erkki ErtamaPiano889706Wolde JussilaViolin598091Tapio RautavaaraVocals1954-19553-1Maan Ja Meren Vanki2:52598091Tapio Rautavaara852712George de GodzinskyArranged By598091Tapio RautavaaraComposed By1685811Yrjö JylhäLyrics By [Poem]3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-2Merenkyntäjä Mikko Andersson = Sjöman Andersson2:40598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text), Translated By [Finnish]852712George de GodzinskyArranged By151641TraditionalTrad. (Ahvenanmaalainen Kansansävel)Composed By, Lyrics By [Original]5141592Triola-PelimannitOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-3Unohtunut Kitaravalssi2:52598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text), Lyrics By852712George de GodzinskyArranged By151641TraditionalTrad.Composed By3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-4Oi, Jos Nukkua Saisin Kerran3:09598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By1633702Hilja HaahtiLyrics By3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician3-5Kulkurin Valssi [1954 Versio]2:55598091Tapio Rautavaara852712George de GodzinskyArranged By151641TraditionalTrad. (Uusmaalainen Kansansävel)Composed By587098J. Alfred TannerLyrics By3096798Triola-OrkesteriOrchestra355Unknown ArtistOrchestra, Backing Vocals852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-6Aina Tukkipoika Tunnetaan = The Sunset Trail3:01598091Tapio Rautavaara852712George de GodzinskyArranged By556376Jimmy KennedyJames B. KennedyComposed By, Lyrics By [Original]695530Michael CarrComposed By, Lyrics By [Original]3096798Triola-OrkesteriOrchestra355Unknown ArtistOrchestra, Backing Vocals852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician789570Kerttu MustonenTranslated By [Finnish]598091Tapio RautavaaraVocals3-7Orpopojan Valssi3:15598091Tapio Rautavaara852712George de GodzinskyArranged By151641TraditionalTrad. (Ruotsalainen Kansansävel)Composed By587098J. Alfred TannerLyrics By3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-8Iltalaulu Tukkikämpällä3:04598091Tapio Rautavaara852712George de GodzinskyArranged By598091Tapio RautavaaraComposed By, Lyrics By3096798Triola-OrkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-9Vanha Riimu = There's A Briddle Hangin' On The Wall2:56598091Tapio Rautavaara355Unknown ArtistArranged By3013379Triola-YhtyeBacking Band710658Carson RobisonCarson J. RobinsonComposed By, Lyrics By [Original]355Unknown ArtistMusician1738506Tapio LahtinenTapio "Kullervo" LahtinenTranslated By [Finnish]598091Tapio RautavaaraVocals, Speech3-10Kulkurien Kuningas = Song Of The Vagabonds2:06598091Tapio Rautavaara355Unknown ArtistArranged By3013379Triola-YhtyeBacking Band628266Rudolf FrimlComposed By628264Brian HookerLyrics By [Original]355Unknown ArtistMusician789575Martti JäppiläTranslated By [Finnish]598091Tapio RautavaaraVocals, Speech3-11Viulun Tenho3:07598091Tapio Rautavaara698040Georg MalmsténComposed By, Arranged By698040Georg MalmsténConductor965045Roine Richard RyynänenR. R. RyynänenLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals3-12Sunnuntai-ilta = Söndagskväll3:01598091Tapio Rautavaara698040Georg MalmsténComposed By, Lyrics By [Original], Arranged By698040Georg MalmsténConductor355Unknown ArtistMusician965045Roine Richard RyynänenR. R. RyynänenTranslated By [Finnish]598091Tapio RautavaaraVocals3-13Raiteilta Poissa3:11598091Tapio Rautavaara698040Georg MalmsténComposed By, Arranged By1194420Helena EevaLyrics By11767760Triola-tanssiorkesteriOrchestra698040Georg MalmsténOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-14Kaunis Marie2:33598091Tapio Rautavaara698040Georg MalmsténComposed By, Arranged By1194420Helena EevaLyrics By11767760Triola-tanssiorkesteriOrchestra698040Georg MalmsténOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals3-15Chicago-Bill = Dans Les Plaines Du Far-west2:16598091Tapio Rautavaara355Unknown ArtistArranged By654970Charles HumelComposed By654970Charles HumelLyrics By [Original]699327Maurice VandairLyrics By [Original]355Unknown ArtistMusician598091Tapio RautavaaraTranslated By [Finnish]598091Tapio RautavaaraVocals3-16Sä Kaunehin Oot = Bei Mir Bist Du Schön3:17598091Tapio Rautavaara355Unknown ArtistArranged By695874Sholom SecundaComposed By695876Jacob JacobsLyrics By [Original]355Unknown ArtistMusician789575Martti JäppiläTranslated By [Finnish]598091Tapio RautavaaraVocals3-17Espanjan Muistoja2:41598091Tapio Rautavaara1248199Pentti ViherluotoComposed By, Arranged By602875Veikko LaviLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals3-18Ruusuja Lurjukselta3:20598091Tapio Rautavaara1248199Pentti ViherluotoComposed By, Arranged By602875Veikko LaviLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals3-19Lentäjän Valssi = Flygarvalsen3:01598091Tapio Rautavaara1073253Fred WinterArranged By1073253Fred WinterComposed By463881Jules SylvainComposed By1765707Valdemar DalquistWaldemar DahlqvistLyrics By [Original]355Unknown ArtistMusician1194420Helena EevaTranslated By [Finnish]598091Tapio RautavaaraVocals3-20Väliaikainen [1955 Versio]2:51598091Tapio Rautavaara355Unknown ArtistAccordion1158488Kaarlo ValkamaArranged By1485430Mauno MaunolaBass711322Matti JurvaComposed By1158488Kaarlo ValkamaConductor540724Kullervo LinnaDrums540727Ingmar EnglundGuitar1194418Tatu PekkarinenLyrics By1415625Asser FagerströmPiano889713Olavi HaapalainenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals3-21Anttilan Keväthuumaus [1955 Versio] = Sjösala Vals2:54598091Tapio Rautavaara355Unknown ArtistArranged By525849Evert TaubeComposed By, Lyrics By [Original]355Unknown ArtistMusician1768221Reino PalmrothReino "Palle" PalmrothTranslated By [Finnishm]598091Tapio RautavaaraVocals3-22Sunnuntaina Sataa Aina2:46598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By598091Tapio RautavaaraComposed By1158488Kaarlo ValkamaConductor1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals3-23Hyvästi Vaan = Farväll3:03598091Tapio Rautavaara1772434Mikko Von DeringerArranged By598091Tapio RautavaaraComposed By1772434Mikko Von DeringerConductor877886Gustaf FrödingLyrics By [Original]355Unknown ArtistMusician2930066Hannes Korpi-AnttilaTranslated By [Finnish]598091Tapio RautavaaraVocals3-24Pilvilinna2:28598091Tapio Rautavaara1772434Mikko Von DeringerArranged By598091Tapio RautavaaraComposed By1772434Mikko Von DeringerConductor1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals1955-19574-1Danakil2:33598091Tapio Rautavaara1175600Matti ViljanenArranged By1278905Jussi PirstosComposed By, Lyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-2Jää Hyvästi, Sayonara [1955 Versio]2:47598091Tapio Rautavaara1175600Matti ViljanenArranged By598091Tapio RautavaaraComposed By1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-3Villi Pohjola [Versio 1]3:04598091Tapio Rautavaara573704Harry BergströmComposed By, Arranged By573704Harry BergströmConductor1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-4Minun Onneni [Versio 1]2:49598091Tapio Rautavaara573704Harry BergströmComposed By, Arranged By573704Harry BergströmConductor1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-5Villi Pohjola [Versio 2]2:41598091Tapio Rautavaara573704Harry BergströmComposed By, Arranged By573704Harry BergströmConductor [Probably]1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-6Minun Onneni [Versio 2]2:06598091Tapio Rautavaara573704Harry BergströmComposed By, Arranged By573704Harry BergströmConductor [Probably]1194420Helena EevaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-7Taattoni Tupa2:42598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text), Lyrics By1772434Mikko Von DeringerArranged By151641TraditionalTrad. (Suomalainen Kansanlaulu)Composed By1772434Mikko Von DeringerConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals4-8Kotimaani Ompi Suomi3:13598091Tapio Rautavaara1772434Mikko Von DeringerArranged By151641TraditionalTrad. (Suomalainen Kansanlaulu)Composed By, Lyrics By1772434Mikko Von DeringerConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals4-9Lautturi Lassi3:07598091Tapio Rautavaara1175600Matti ViljanenArranged By1476565Lasse PihlajamaaComposed By1194420Helena EevaLyrics By355Unknown ArtistMusician3096798Triola-OrkesteriOrchestra598091Tapio RautavaaraVocals4-10Viimeinen Serenadi2:11598091Tapio Rautavaara698040Georg MalmsténComposed By, Arranged By1194420Helena EevaLyrics By355Unknown ArtistMusician3096798Triola-OrkesteriOrchestra598091Tapio RautavaaraVocals4-11Atlanta2:39598091Tapio Rautavaara355Unknown ArtistArranged By869629Usko KemppiComposed By, Lyrics By1158488Kaarlo ValkamaConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals4-12Margitta2:54598091Tapio Rautavaara355Unknown ArtistArranged By869629Usko KemppiComposed By, Lyrics By1158488Kaarlo ValkamaConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals4-13Pigallen Punaiset Lyhdyt = Place Pigalle2:05598091Tapio Rautavaara1175600Matti ViljanenArranged By355Unknown ArtistBacking Vocals520992Alex AlstoneComposed By1175600Matti ViljanenConductor283102Maurice ChevalierLyrics By [Original]355Unknown ArtistMusician562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals4-14Niin Sateinen On Tie = Just Walking In The Rain2:50598091Tapio Rautavaara1175600Matti ViljanenArranged By910587Robert S. RileyRobert RileyComposed By, Lyrics By [Orginal]703748Johnny BraggComposed By, Lyrics By [Original]1175600Matti ViljanenConductor355Unknown ArtistMusician562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals4-15Huutolaispojan Laulu3:04598091Tapio Rautavaara852712George de GodzinskyArranged By1923542Rytmi-YhtyeBacking Band852712George de GodzinskyBacking Band, Conductor355Unknown ArtistBacking Band, Musician151641TraditionalTrad. (Satakuntalainen Kansanlaulu)Composed By, Lyrics By598091Tapio RautavaaraVocals4-16Kulkuriveljeni Jan3:12598091Tapio Rautavaara852712George de GodzinskyArranged By1923542Rytmi-YhtyeBacking Band852712George de GodzinskyBacking Band, Conductor355Unknown ArtistBacking Band, Musician598091Tapio RautavaaraComposed By1194420Helena EevaLyrics By598091Tapio RautavaaraVocals4-17Hiljaa Juuri Kuin Lammen Laine = Vem Kan Segla Förutan Vind3:07598091Tapio Rautavaara852712George de GodzinskyArranged By1923542Rytmi-YhtyeBacking Band852712George de GodzinskyBacking Band, Conductor355Unknown ArtistBacking Band, Musician151641TraditionalTrad.Composed By786425Ion IvanoviciJosef IvanoviciComposed By [Based On A Seufzer-Waltz By]6173264Irene MendelinLyrics By [Poem]598091Tapio RautavaaraVocals4-18Sinä Tulit2:53598091Tapio Rautavaara852712George de GodzinskyArranged By1923542Rytmi-YhtyeBacking Band852712George de GodzinskyBacking Band, Conductor355Unknown ArtistBacking Band, Musician711357Walter RaeComposed By1037608Veikko VirmajokiLyrics By598091Tapio RautavaaraVocals4-19Muisto Italiasta = Souvenir D'Italie2:20598091Tapio Rautavaara355Unknown ArtistArranged By306935Lelio LuttazziComposed By355Unknown ArtistConductor, Musician1268695Giulio ScarnicciLyrics By [Original]1268696Renzo TarabusiLyrics By [Original]562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals4-20Milloin Saavut Yyteriin3:05598091Tapio Rautavaara1485430Mauno MaunolaBass589906Toivo KärkiComposed By, Arranged By589906Toivo KärkiConductor932061Erkki ValasteDrums9764350Reino VeijalainenFlute540727Ingmar EnglundGuitar11766968Ernst SarinLyrics By430629Osmo LindemanVibraphone1315851Pärre FörarsPer-Erik FörarsViolin598091Tapio RautavaaraVocals4-21Rakkauden Hauta2:43598091Tapio Rautavaara1485430Mauno MaunolaBass589906Toivo KärkiComposed By, Arranged By589906Toivo KärkiConductor932061Erkki ValasteDrums9764350Reino VeijalainenFlute540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By430629Osmo LindemanVibraphone1315851Pärre FörarsPer-Erik FörarsViolin598091Tapio RautavaaraVocals4-22Satu Pajupillistä2:15598091Tapio Rautavaara1175600Matti ViljanenArranged By2919503Maire PohjanheimoComposed By, Lyrics By1415639Rytmi-OrkesteriOrchestra1175600Matti ViljanenOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals4-23Kerro Mulle Miksi2:45598091Tapio Rautavaara1175600Matti ViljanenArranged By2919503Maire PohjanheimoComposed By, Lyrics By1415639Rytmi-OrkesteriOrchestra1175600Matti ViljanenOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals4-24Uutta Ja Vanhaa 27 (Taas Tavattiin)2:26598091Tapio Rautavaara589906Toivo KärkiArranged By1923542Rytmi-YhtyeBacking Band589906Toivo KärkiComposed By151641TraditionalTrad.Composed By562947Reino HelismaaLyrics By151641TraditionalTrad.Lyrics By355Unknown ArtistMusician562947Reino HelismaaVocals598091Tapio RautavaaraVocals4-25Uutta Ja Vanhaa 28 (Hevosen Vaihto)2:53598091Tapio Rautavaara589906Toivo KärkiArranged By1923542Rytmi-YhtyeBacking Band589906Toivo KärkiComposed By151641TraditionalTrad.Composed By562947Reino HelismaaLyrics By151641TraditionalTrad.Lyrics By355Unknown ArtistMusician562947Reino HelismaaVocals598091Tapio RautavaaraVocals4-26Sunnuntaiaamuna2:47598091Tapio Rautavaara852712George de GodzinskyArranged By4482100Hjalmar BackmanComposed By852712George de GodzinskyConductor5432101Simo KorpelaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals4-27Sinitakkien Marssi3:09598091Tapio Rautavaara852712George de GodzinskyArranged By698040Georg MalmsténComposed By852712George de GodzinskyConductor965045Roine Richard RyynänenR. R. RyynänenLyrics By355Unknown ArtistMusician4760920Radion ViihdeorkesteriOrchestra598091Tapio RautavaaraVocals4-28Saariston Sirkka3:13598091Tapio Rautavaara852712George de GodzinskyArranged By698040Georg MalmsténComposed By852712George de GodzinskyConductor789575Martti JäppiläLyrics By355Unknown ArtistMusician4760920Radion ViihdeorkesteriOrchestra598091Tapio RautavaaraVocals1957-19595-1Laulu On Iloni Ja Työni [1957 Versio]4:14598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Pohjalainen Kansansävel)Composed By852712George de GodzinskyPiano598091Tapio RautavaaraVocals5-2Kalle Aaltonen [1957 Versio]2:34598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By852712George de GodzinskyPiano598091Tapio RautavaaraVocals5-3Tytön Huivi [1957 Versio]5:15598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Alkuosa Napolilainen Kansanlaulu, Loppuosa Ruotsalainen Pelimannivalssi)Composed By852712George de GodzinskyPiano598091Tapio RautavaaraVocals5-4Pilanlaskija [1957 Versio]2:30598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Amerikkalainen Kansanlaulu)Composed By852712George de GodzinskyPiano598091Tapio RautavaaraVocals5-5Kulkurin Heila Ja Hevonen [1957 Versio]1:47598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Alkuosa Ruotsalainen Häävalssi)Composed By852712George de GodzinskyPiano598091Tapio RautavaaraVocals5-6Aika Poika1:31598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By852712George de GodzinskyPiano598091Tapio RautavaaraVocals5-7Lentävä Hollantilainen3:03598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By1175218Valto TynniläComposed By789575Martti JäppiläLyrics By3096798Triola-OrkesteriOrchestra1158488Kaarlo ValkamaOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals5-8Kalle Aaltonen [1959 Versio, Kaarlo Valkaman Sovitus]2:47598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)1158488Kaarlo ValkamaArranged By151641TraditionalTrad.Composed By3096798Triola-OrkesteriOrchestra1158488Kaarlo ValkamaOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals5-9Kun Tuulee, Kun Vinkuu = Windjammer2:52598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By3013379Triola-YhtyeBacking Band355Unknown ArtistBacking Band, Backing Vocals1158488Kaarlo ValkamaBacking Band, Conductor355Unknown ArtistBacking Band, Musician430840Frank MillerComposed By, Lyrics By [Original]657082Richard DehrComposed By, Lyrics By [Original]369576Terry GilkysonComposed By, Lyrics By [Original]1315283Pekka SaartoTranslated By [Finnish]598091Tapio RautavaaraVocals5-10Kerttu Oottaa Kaukana = Kari Waits For Me3:18598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By3013379Triola-YhtyeBacking Band1158488Kaarlo ValkamaBacking Band, Conductor355Unknown ArtistBacking Band, Musician430840Frank MillerComposed By, Lyrics By [Original]657082Richard DehrComposed By, Lyrics By [Original]369576Terry GilkysonComposed By, Lyrics By [Original]1315283Pekka SaartoTranslated By [Finnish]598091Tapio RautavaaraVocals5-111Kuu Souteli Vain3:32598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By711322Matti JurvaComposed By4564898Väinö SyvänneLyrics By3096798Triola-OrkesteriOrchestra1158488Kaarlo ValkamaOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals5-12Kaleeriorja = Le Galerien3:22598091Tapio Rautavaara1158488Kaarlo ValkamaArranged By699322Léo PollComposed By151641TraditionalVenäläinen KansansävelComposed By [Based On]648050Maurice DruonLyrics By [Original]3096798Triola-OrkesteriOrchestra1158488Kaarlo ValkamaOrchestra, Conductor355Unknown ArtistOrchestra, Musician1194420Helena EevaTranslated By [Finnish]598091Tapio RautavaaraVocals5-13Kalle Aaltonen [1959 Versio, George de Godzinskyn Sovitus]3:00598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-14Mun Eukkoni On Maalla2:29598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Amerikkalainen Kansansävel)Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-15Vihellän Vaan3:03598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Alkuosa Skottilainen Kansansävel)Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-16Tytöt Ja Pojat Samasta Kylästä2:38598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-17Laulu On Iloni Ja Työni [1959 Versio]3:29598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Pohjalainen Kansansävel)Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-18Pilanlaskija [1959 Versio]3:18598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Amerikkalainen Kansanlaulu)Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-19Tytön Huivi [1959 Versio]4:53598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad. (Alkuosa Napolilainen Kansanlaulu, Loppuosa Ruotsalainen Pelimannivalssi)Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-20Kulkurin Heila Ja Hevonen [1959 Versio]2:06598091Tapio Rautavaara587098J. Alfred TannerAdapted By (Text)852712George de GodzinskyArranged By151641TraditionalTrad.Composed By852712George de GodzinskyConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals5-21Lapsuuden Koti = The Banks Of The Wabah4:09598091Tapio Rautavaara1245113Ensio KostaArranged By706385Paul DresserComposed By, Lyrics By [Original]1245113Ensio KostaConductor355Unknown ArtistMusician1713846Väinö SolaWäinö SolaTranslated By [Finnish]598091Tapio RautavaaraVocals5-22Kotimaan Sävel2:45598091Tapio Rautavaara1245113Ensio KostaArranged By589906Toivo KärkiComposed By1245113Ensio KostaConductor562947Reino HelismaaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals5-23Hankoniemen Silmä = Värmlandsvisan3:48598091Tapio Rautavaara1245113Ensio KostaArranged By151641TraditionalTrad. (Ruotsalainen Kansansävel)Composed By1245113Ensio KostaConductor1682148Anders FryxellLyrics By [Original]2498690Fredrik August DahlgrenLyrics By [Original]355Unknown ArtistMusician1515384Paavo CajanderTranslated By [Finnish]598091Tapio RautavaaraVocals5-24Vanha Rantasauna [1959 Versio]3:42598091Tapio Rautavaara1245113Ensio KostaArranged By598091Tapio RautavaaraComposed By1245113Ensio KostaConductor562947Reino HelismaaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals1960-19626-1Mustalainen = Csak Egy Kislany van A Vilagon3:22598091Tapio Rautavaara492336Jaakko BorgArranged By3755189Szentirmay ElemérElemér SzentirmayComposed By492336Jaakko BorgConductor562947Reino HelismaaLyrics By355Unknown ArtistMusician [Also]492333Nacke JohanssonOrgan503479Ronnie KranckRecorded By492334Ossi RunneTrumpet598091Tapio RautavaaraVocals6-2Hiljainen Kesäyö = Gotländsk Sommarnatt2:55598091Tapio Rautavaara492336Jaakko BorgArranged By1485430Mauno MaunolaBass968106Svante PetterssonComposed By492336Jaakko BorgConductor2120912Arthur NilssonArthur A.NilssonLyrics By [Original]355Unknown ArtistMusician [Also]503479Ronnie KranckRecorded By1144055Solja TuuliTranslated By [Finnish]492334Ossi RunneTrumpet598091Tapio RautavaaraVocals6-3Täällä Pohjantähden Alla3:10598091Tapio Rautavaara852712George de GodzinskyArranged By151641Traditionaltrad. (suomalainen kansansävel)Composed By852712George de GodzinskyConductor7207936Juhana Fredrik GranlundJohan Fredrik GrandlundLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals6-4Kanteleeni3:03598091Tapio Rautavaara852712George de GodzinskyArranged By3376282Kreeta HaapasaloComposed By852712George de GodzinskyConductor4592473Kleofas Immanuel NordlundK.I.NordlundLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals6-5Häätanhu2:44598091Tapio Rautavaara852712George de GodzinskyArranged By2910782Vilho Luolajan-MikkolaComposed By852712George de GodzinskyConductor1685811Yrjö JylhäLyrics By [Poem]355Unknown ArtistMusician598091Tapio RautavaaraVocals6-6Laps' Suomen = O Barn Af Hellas3:43598091Tapio Rautavaara852712George de GodzinskyArranged By908380Fredrik PaciusComposed By852712George de GodzinskyConductor662608Zacharias TopeliusLyrics By [Original Poem]355Unknown ArtistMusician3370688Antti TuokkoTranslated By [Finnish]598091Tapio RautavaaraVocals6-7Toverukset = Partners2:22598091Tapio Rautavaara355Unknown ArtistArranged By1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals760791Danny DillComposed By, Lyrics By [Original]320237Gösta TheseliusConductor355Unknown ArtistMusician [Swedish]239071Era (2)Translated By [Finnish]598091Tapio RautavaaraVocals6-8El Paso = El Paso2:57598091Tapio Rautavaara573704Harry BergströmArranged By1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals310355Marty RobbinsComposed By, Lyrics By [Original]573704Harry BergströmConductor355Unknown ArtistMusician562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals6-9Viimeinen Vossikka2:59598091Tapio Rautavaara589906Toivo KärkiArranged By1797700Olavi KaruComposed By1415683Olli HämeConductor562947Reino HelismaaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals6-10Viikinki Ja Neito2:48598091Tapio Rautavaara1415683Olli HämeComposed By, Arranged By1415683Olli HämeConductor562947Reino HelismaaLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals6-11Minä Laulan Sun Iltasi Tähtihin2:10598091Tapio Rautavaara&2112954Trio Lehtelä573704Harry BergströmArranged By2112954Trio LehteläBacking Band4438896Toivo LehteläBacking Band, Cello1419764Ritva LehteläBacking Band, Piano16190533Helena LehteläBacking Band, Violin1493412Frans LinnavuoriComposed By1515376Veikko Antero KoskenniemiV.A.KoskenniemiLyrics By [Poem]598091Tapio RautavaaraVocals6-12Vaikein Hetki3:18598091Tapio Rautavaara&2112954Trio Lehtelä573704Harry BergströmArranged By2112954Trio LehteläBacking Band4438896Toivo LehteläBacking Band, Cello1419764Ritva LehteläBacking Band, Piano16190533Helena LehteläBacking Band, Violin151641Traditionaltrad. (ruotslaianen kansanlaulu)Composed By2549279Ture AraLyrics By598091Tapio RautavaaraVocals6-13Laulu Onnesta2:27598091Tapio Rautavaara&2112954Trio Lehtelä573704Harry BergströmArranged By2112954Trio LehteläBacking Band4438896Toivo LehteläBacking Band, Cello1419764Ritva LehteläBacking Band, Piano16190533Helena LehteläBacking Band, Violin1255280Ahti SonninenComposed By639945Eino LeinoLyrics By [Poem]598091Tapio RautavaaraVocals6-14Taivas On Sininen Ja Valkoinen2:29598091Tapio Rautavaara&2112954Trio Lehtelä573704Harry BergströmArranged By2112954Trio LehteläBacking Band4438896Toivo LehteläBacking Band, Cello1419764Ritva LehteläBacking Band, Piano16190533Helena LehteläBacking Band, Violin151641Traditionaltrad.Composed By, Lyrics By598091Tapio RautavaaraVocals6-15Kohti Alaskaa = North To Alaska3:02598091Tapio Rautavaara573704Harry BergströmArranged By1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals364545Johnny HortonComposed By, Lyrics By [Original]711658Tillman FranksComposed By, Lyrics By [Original]4824797Broadway-OrkesteriOrchestra573704Harry BergströmOrchestra, Conductor355Unknown ArtistOrchestra, Musician1446253Helge MechelinRecorded By1144055Solja TuuliTranslated By [Finnish]598091Tapio RautavaaraVocals6-16Kylmää Vettä = Cool Water3:20598091Tapio Rautavaara573704Harry BergströmArranged By1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals657271Bob NolanComposed By, Lyrics By [Original]4824797Broadway-OrkesteriOrchestra573704Harry BergströmOrchestra, Conductor355Unknown ArtistOrchestra, Musician239071Era (2)Translated By [Finnish]598091Tapio RautavaaraVocals6-17Exodus = Exodus3:00598091Tapio Rautavaara573704Harry BergströmArranged By505452Ernest GoldComposed By573704Harry BergströmConductor238690Pat BooneLyrics By [Original]355Unknown ArtistMusician562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals6-18Viisi Veljestä = Five Brothers2:06598091Tapio Rautavaara573704Harry BergströmArranged By355Unknown ArtistBacking Vocals415015Tompall GlaserComposed By, Lyrics By [Original]573704Harry BergströmConductor355Unknown ArtistMusician239071Era (2)Translated By [Finnish]598091Tapio RautavaaraVocals6-19Johnny, Mua Muistathan = Johnny Remember Me2:52598091Tapio Rautavaara573704Harry BergströmArranged By355Unknown ArtistBacking Vocals723407Geoffrey GoddardComposed By, Lyrics By [Original]573704Harry BergströmConductor355Unknown ArtistMusician1174166Veikko VallasTranslated By [Finnish]598091Tapio RautavaaraVocals6-20Rakastunut2:49598091Tapio Rautavaara355Unknown ArtistBacking Vocals573704Harry BergströmComposed By, Arranged By573704Harry BergströmConductor239071Era (2)Lyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals6-21Tukkipoikain Tulo = Nobody Else But You2:17598091Tapio Rautavaara573704Harry BergströmArranged By355Unknown ArtistBacking Vocals163085Frank IfieldComposed By, Lyrics By [Original]573704Harry BergströmConductor355Unknown ArtistMusician239071Era (2)Translated By [Finnish]598091Tapio RautavaaraVocals6-22Laula, Leivo, Laula = Sing, Nachtigall, Sing2:19598091Tapio Rautavaara573704Harry BergströmArranged By355Unknown ArtistBacking Vocals328270Michael JaryComposed By573704Harry BergströmConductor570822Bruno BalzLyrics By [Original]355Unknown ArtistMusician239071Era (2)Translated By [Finnish]598091Tapio RautavaaraVocals6-23Kun Ei Niin Ei = Ways Of A Woman In Love2:52598091Tapio Rautavaara573704Harry BergströmArranged By4536331Manhattan-yhtyeBacking Band573704Harry BergströmBacking Band, Conductor355Unknown ArtistBacking Band, Musician1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals229174Bill JustisComposed By, Lyrics By [Original]368542Charlie RichComposed By, Lyrics By [Original]598091Tapio RautavaaraTranslated By [Finnish]598091Tapio RautavaaraVocals6-24Yölinjalla = I Walk The Line [1962 Versio]3:45598091Tapio Rautavaara573704Harry BergströmArranged By4536331Manhattan-yhtyeBacking Band573704Harry BergströmBacking Band, Conductor355Unknown ArtistBacking Band, Musician135946Johnny CashComposed By, Lyrics By [Original]598091Tapio RautavaaraTranslated By [Finnish]1963-19647-1Isoisän Olkihattu [1963 Versio]3:27598091Tapio Rautavaara932065Erkki MelakoskiArranged By598091Tapio RautavaaraComposed By, Lyrics By4824797Broadway-OrkesteriOrchestra573704Harry BergströmOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals7-2Vain Merimies Voi Tietää [1963 Versio]3:12598091Tapio Rautavaara573704Harry BergströmArranged By598091Tapio RautavaaraComposed By1278900Heikki Saari (2)Lyrics By4824797Broadway-OrkesteriOrchestra573704Harry BergströmOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals7-3Kolmivaljas = Troika2:43598091Tapio Rautavaara573704Harry BergströmArranged By151641Traditionaltrad. (venäläinen kansansävel)Composed By573704Harry BergströmConductor2713539Фёдор ГлинкаFjodor GlinkaLyrics By [Original]355Unknown ArtistMusician1768221Reino PalmrothReino "Palle" PalmrothTranslated By [Finnish]598091Tapio RautavaaraVocals7-4Pikku Tellervo = Lebe Wohl Du Kleine Monika2:55598091Tapio Rautavaara573704Harry BergströmArranged By1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals533487Hans CarsteComposed By, Lyrics By [Original]573704Harry BergströmConductor355Unknown ArtistMusician1768221Reino PalmrothReino "Palle" PalmrothTranslated By [Finnish]598091Tapio RautavaaraVocals7-5Lauantaiehtoo = La Spagnola2:30598091Tapio Rautavaara573704Harry BergströmArranged By1658482NelosetChoir1658481Hannu MaristoChoir, Backing Vocals1658480Jaakko KyläsaloChoir, Backing Vocals598084Jukka KuoppamäkiChoir, Backing Vocals1655904Markku MarttinaChoir, Backing Vocals1439089Vincenzo Di ChiaraComposed By573704Harry BergströmConductor1768221Reino PalmrothReino "Palle" PalmrothLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals7-6Hiljainen Satama = U Vetra Net Nikakogo Druga2:55598091Tapio Rautavaara573704Harry BergströmArranged By2065378Pentti TiensuuBass811760Андрей ПетровAndrej PetrovComposed By573704Harry BergströmConductor1626606Ossi KuulaDrums310373Juhani AaltonenFlute1092018Mikko HynninenFrench Horn550033Herbert KatzGuitar1415684Ivan PutilinGuitar1162431Tommy NordströmGuitar355Unknown ArtistLyrics By [Original]592184Aito LeppänenStrings, Viola16199272Aarne LaukkanenStrings, Violin6707925Anton HyökkiStrings, Violin346373Jorma YlönenStrings, Violin7063054Leevi PaasonenStrings, Violin889713Olavi HaapalainenStrings, Violin1278900Heikki Saari (2)Translated By [Finnish]598091Tapio RautavaaraVocals7-7Metsäkukkia = Zhdi Menja3:06598091Tapio Rautavaara573704Harry BergströmArranged By589906Toivo KärkiArranged By2065378Pentti TiensuuBass151641Traditionaltrad. (venäläinen kansansävel)Composed By573704Harry BergströmConductor1626606Ossi KuulaDrums310373Juhani AaltonenFlute1092018Mikko HynninenFrench Horn550033Herbert KatzGuitar1415684Ivan PutilinGuitar1162431Tommy NordströmGuitar1746289Anu TuulosLyrics By592184Aito LeppänenStrings, Viola16199272Aarne LaukkanenStrings, Violin6707925Anton HyökkiStrings, Violin346373Jorma YlönenStrings, Violin7063054Leevi PaasonenStrings, Violin889713Olavi HaapalainenStrings, Violin598091Tapio RautavaaraVocals7-8Ensimmäisenä Iltana2:27598091Tapio Rautavaara573704Harry BergströmAdapted By [Music], Arranged By151641Traditionaltrad.Composed By573704Harry BergströmConductor3911279Harry ValentinValentinLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals7-9Seppä Samulin Portti2:31598091Tapio Rautavaara573704Harry BergströmArranged By1278900Heikki Saari (2)Composed By, Lyrics By573704Harry BergströmConductor355Unknown ArtistMusician598091Tapio RautavaaraVocals7-10Rosvo-Roope2:50598091Tapio Rautavaara1175600Matti ViljanenAccordion589906Toivo KärkiArranged By2065378Pentti TiensuuBass151641Traditionaltrad.Composed By492334Ossi RunneConductor2065364Unto SilanderDrums1277431Raimo SarkioGuitar1493409Rafu RamstedtRafael RamstedtLyrics By1446253Helge MechelinRecorded By2547952Jalmari HölttäStrings, Cello6707925Anton HyökkiStrings, Violin7063054Leevi PaasonenStrings, Violin4320868Usko AroStrings, Violin598091Tapio RautavaaraVocals7-11Tuopin Jäljet3:01598091Tapio Rautavaara1175600Matti ViljanenAccordion2065378Pentti TiensuuBass589906Toivo KärkiComposed By, Arranged By492334Ossi RunneConductor2065364Unto SilanderDrums1277431Raimo SarkioGuitar1278910Kari WilkmanLyrics By562947Reino HelismaaLyrics By1446253Helge MechelinRecorded By6707925Anton HyökkiStrings, Violin2547952Jalmari HölttäStrings, Violin7063054Leevi PaasonenStrings, Violin4320868Usko AroStrings, Violin598091Tapio RautavaaraVocals7-12Olkoon Näin = Slavonic Dance No. 2 In E Minor Op. 722:51598091Tapio Rautavaara492333Nacke JohanssonAccordion932065Erkki MelakoskiArranged By2065378Pentti TiensuuBass268272Antonín DvořákComposed By932065Erkki MelakoskiConductor540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By2197090Markku SeppänenMandolin [Probably]1626603Artto GranrothStrings, Cello889703Erkki InkinenStrings, Violin889701Pauli GranfeltStrings, Violin791643Rauno LehtinenStrings, Violin1626592Seppo KurkiStrings, Violin889704Unto MerjanenStrings, Violin2197100Voitto JoveroStrings, Violin598091Tapio RautavaaraVocals7-13Linnunrata = Wintergatan3:11598091Tapio Rautavaara492333Nacke JohanssonAccordion932065Erkki MelakoskiArranged By2065378Pentti TiensuuBass463881Jules SylvainComposed By932065Erkki MelakoskiConductor591085Ilpo KallioDrums540727Ingmar EnglundGuitar853228Sven-Olof SandbergLyrics By [Original]2197090Markku SeppänenMandolin [Probably]1626603Artto GranrothStrings, Cello889703Erkki InkinenStrings, Violin889701Pauli GranfeltStrings, Violin791643Rauno LehtinenStrings, Violin1626592Seppo KurkiStrings, Violin889704Unto MerjanenStrings, Violin2197100Voitto JoveroStrings, Violin562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals7-14Ohimennen2:13598091Tapio Rautavaara3139127Yrjö Saarnion PolkkayhtyeBacking Band1175600Matti ViljanenBacking Band, Accordion540733Gösta MöllerBacking Band, Bass1278901Yrjö SaarnioBacking Band, Conductor, Violin16199275Runar ÖhmanBacking Band, Drums540727Ingmar EnglundBacking Band, Guitar1978852Toivo LampénToivo LampenBacking Band, Piano589906Toivo KärkiComposed By, Arranged By1194418Tatu PekkarinenLyrics By598091Tapio RautavaaraVocals7-15Souvaripoikia2:28598091Tapio Rautavaara3139127Yrjö Saarnion PolkkayhtyeBacking Band1175600Matti ViljanenBacking Band, Accordion540733Gösta MöllerBacking Band, Bass1278901Yrjö SaarnioBacking Band, Conductor, Violin16199275Runar ÖhmanBacking Band, Drums540727Ingmar EnglundBacking Band, Guitar1978852Toivo LampénToivo LampenBacking Band, Piano589906Toivo KärkiComposed By, Arranged By1194418Tatu PekkarinenLyrics By598091Tapio RautavaaraVocals7-16Tokioon, Tokioon3:403571383Rolf Koskinen,4320289Pertti Purhonen,598091Tapio RautavaaraJa1441041Kai Pahlmanin Yhtye2454109Eino VatanenBass6569808Koppel SmolarClarinet492337Sven NygårdClarinet589906Toivo KärkiComposed By, Arranged By492334Ossi RunneConductor2065364Unto SilanderDrums1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By1446253Helge MechelinRecorded By4320289Pertti PurhonenVocals3571383Rolf KoskinenVocals598091Tapio RautavaaraVocals1441040Kai PahlmanVocals, Accordion7-17Parempi On Antaa Kuin Ottaa3:053571383Rolf Koskinen,4320289Pertti Purhonen,598091Tapio RautavaaraJa1441041Kai Pahlmanin Yhtye2454109Eino VatanenBass6569808Koppel SmolarClarinet492337Sven NygårdClarinet589906Toivo KärkiComposed By, Arranged By492334Ossi RunneConductor2065364Unto SilanderDrums1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By1446253Helge MechelinRecorded By4320289Pertti PurhonenVocals3571383Rolf KoskinenVocals598091Tapio RautavaaraVocals1441040Kai PahlmanVocals, Accordion7-18Muistatko2:23598091Tapio Rautavaara555490Veikko HuuskonenArranged By1248199Pentti ViherluotoComposed By555490Veikko HuuskonenConductor, Accordion602875Veikko LaviLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals7-19Pohjolan Kesäyö2:23598091Tapio Rautavaara555490Veikko HuuskonenComposed By, Arranged By555490Veikko HuuskonenConductor, Accordion16199278Liisa RaunioLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals7-20Bellona Ja Rodrigo = Estudiantina3:46598091Tapio Rautavaara852712George de GodzinskyArranged By540733Gösta MöllerBass16199281Olavi PaljakkaBassoon16199284Lahja PuustinenClarinet804818Emil WaldteufelÉmil WaldteufelComposed By852712George de GodzinskyConductor, Piano8210817Josef RauttenbacherFlute540727Ingmar EnglundGuitar1793415Hjalmar NortamoLyrics By1635938Viljo Ala-PietiläOboe653500Olavi RignellStrings, Violin653557Pertti KiriStrings, Violin653513Salme Joki-LötjönenStrings, Violin2197089Toivo RosovaaraStrings, Violin598091Tapio RautavaaraVocals7-21Imatran Rannalla3:17598091Tapio Rautavaara852712George de GodzinskyArranged By540733Gösta MöllerBass16199281Olavi PaljakkaBassoon16199284Lahja PuustinenClarinet151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By852712George de GodzinskyConductor, Piano, Accordion8210817Josef RauttenbacherFlute540727Ingmar EnglundGuitar1635938Viljo Ala-PietiläOboe653500Olavi RignellStrings, Violin653557Pertti KiriStrings, Violin653513Salme Joki-LötjönenStrings, Violin2197089Toivo RosovaaraStrings, Violin598091Tapio RautavaaraVocals1964-19658-1Ruska-aika2:59598091Tapio Rautavaara712217Arthur FuhrmannArranged By16204177Kai LindenBass592252Erik LindströmComposed By712217Arthur FuhrmannConductor1415638Mauri MustonenGuitar849733HilleviLyrics By1446253Helge MechelinRecorded By2547952Jalmari HölttäStrings, Cello592186Ahti PilviStrings, Viola346398Juhani TiainenStrings, Violin889713Olavi HaapalainenStrings, Violin889698Pentti YlönenStrings, Violin598091Tapio RautavaaraVocals8-2Tuntuu Kuin Maailma Pyörisi Väärinpäin2:28598091Tapio Rautavaara16204177Kai LindenBass712217Arthur FuhrmannComposed By, Arranged By712217Arthur FuhrmannConductor1415638Mauri MustonenGuitar562947Reino HelismaaLyrics By1446253Helge MechelinRecorded By2547952Jalmari HölttäStrings, Cello592186Ahti PilviStrings, Viola346398Juhani TiainenStrings, Violin889713Olavi HaapalainenStrings, Violin889698Pentti YlönenStrings, Violin598091Tapio RautavaaraVocals8-3Joensuun Elli3:32598091Tapio Rautavaara1278901Yrjö SaarnioArranged By3139127Yrjö Saarnion PolkkayhtyeBacking Band4301216Yrjö LuukkonenBacking Band, Accordion4473332Pentti TauroBacking Band, Bass1278901Yrjö SaarnioBacking Band, Conductor, Violin16199275Runar ÖhmanBacking Band, Drums540727Ingmar EnglundBacking Band, Guitar1978852Toivo LampénBacking Band, Piano698043Jorma IkävalkoComposed By960086Eino KettunenLyrics By503479Ronnie KranckRecorded By [Probably]598091Tapio RautavaaraVocals8-4Jätkän Lauantai1:36598091Tapio Rautavaara1278901Yrjö SaarnioArranged By3139127Yrjö Saarnion PolkkayhtyeBacking Band4301216Yrjö LuukkonenBacking Band, Accordion1854060Markku SuoknuutiBacking Band, Backing Vocals492337Sven NygårdBacking Band, Backing Vocals4473332Pentti TauroBacking Band, Bass1278901Yrjö SaarnioBacking Band, Conductor, Violin16199275Runar ÖhmanBacking Band, Drums540727Ingmar EnglundBacking Band, Guitar1978852Toivo LampénBacking Band, Piano869629Usko KemppiComposed By16204180Holger HarrivirtaLyrics By503479Ronnie KranckRecorded By [Probably]598091Tapio RautavaaraVocals8-5Peltoniemen Hintriikan Surumarssi3:23598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass773466Teppo TuominenCello151641Traditionaltrad. (kaustislainen hääsävel)Composed By492334Ossi RunneConductor540727Ingmar EnglundGuitar492333Nacke JohanssonHarmonium562947Reino HelismaaLyrics By503479Ronnie KranckRecorded By889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals8-6Merenneidon Kyynel3:13598091Tapio Rautavaara550031Heikki AnnalaBass773466Teppo TuominenCello589906Toivo KärkiComposed By, Arranged By492334Ossi RunneConductor540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By492333Nacke JohanssonOrgan503479Ronnie KranckRecorded By889701Pauli GranfeltViolin598091Tapio RautavaaraVocals8-7Ravimiesten Jenkka2:29598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By2454109Eino VatanenBass16204183Ilma Solin-IkonenIlma "Vilppu" Solin-IkonenComposed By, Lyrics By492334Ossi RunneConductor1626606Ossi KuulaDrums1277431Raimo SarkioGuitar503479Ronnie KranckRecorded By [Probably]889703Erkki InkinenViolin598091Tapio RautavaaraVocals8-8Hevos-Liisa2:01598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By2454109Eino VatanenBass16204186Topi LaineComposed By492334Ossi RunneConductor1626606Ossi KuulaDrums1277431Raimo SarkioGuitar16204183Ilma Solin-IkonenIlma "Vilppu" Solin-IkonenLyrics By503479Ronnie KranckRecorded By [Probably]889703Erkki InkinenViolin598091Tapio RautavaaraVocals8-9Olympiakronikka3:14598091Tapio Rautavaara1175600Matti ViljanenAccordion589906Toivo KärkiArranged By1854060Markku SuoknuutiBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad.Composed By492334Ossi RunneConductor, Backing Vocals1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By503479Ronnie KranckRecorded By [Probably]1626592Seppo KurkiViolin598091Tapio RautavaaraVocals8-10Neljän Tuulen Tiellä3:22598091Tapio Rautavaara1441040Kai PahlmanAccordion1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By889701Pauli GranfeltConductor, Violin2065364Unto SilanderDrums310373Juhani AaltonenFlute540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By503479Ronnie KranckRecorded By [Probably]2547946Kaarlo PoijärviStrings, Cello2454109Eino VatanenStrings, Double Bass16199272Aarne LaukkanenStrings, Violin653557Pertti KiriStrings, Violin791643Rauno LehtinenStrings, Violin912342Rainer KuismaVibraphone598091Tapio RautavaaraVocals8-11Lapin Jenkka2:47598091Tapio Rautavaara1441040Kai PahlmanAccordion1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By889701Pauli GranfeltConductor2065364Unto SilanderDrums310373Juhani AaltonenFlute540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By503479Ronnie KranckRecorded By [Probably]2547946Kaarlo PoijärviStrings, Cello2454109Eino VatanenStrings, Double Bass16199272Aarne LaukkanenStrings, Violin653557Pertti KiriStrings, Violin791643Rauno LehtinenStrings, Violin912342Rainer KuismaVibraphone598091Tapio RautavaaraVocals8-12On Aivan Sama = Dä Gör Däsamma2:25598091Tapio Rautavaara589906Toivo KärkiArranged By1415638Mauri MustonenBass Guitar151641Traditionaltrad. (ruotsalainen kansanlaulu)Composed By, Lyrics By [Original]540727Ingmar EnglundGuitar503479Ronnie KranckRecorded By [Probably]1834065Heikki SaarniahoH.SaarniahoTranslated By [Finnish]598091Tapio RautavaaraVocals8-13Maljani Juo'os = Drink To Me Only With Thine Eyes3:54598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (irlantilainen kansansävelmä)Composed By540727Ingmar EnglundGuitar877595Ben JonsonLyrics By [Original Poem]503479Ronnie KranckRecorded By [Probably]1626370V. ArtiTranslated By [Finnish]598091Tapio RautavaaraVocals8-14Ringo = Ringo3:19598091Tapio Rautavaara492333Nacke JohanssonArranged By1135557Kai LindBacking Vocals1348172Erkki SeppäBass340205Don Robertson (2)Composed By492333Nacke JohanssonConductor, Backing Vocals591085Ilpo KallioDrums2794989Eero JantunenFrench Horn4842092Ilkka LaaksoFrench Horn592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar713004Hal BlairLyrics By [Original]932061Erkki ValastePercussion, Backing Vocals503479Ronnie KranckRecorded By [Probably]598091Tapio RautavaaraTranslated By [Finnish]598091Tapio RautavaaraVocals8-15Lasso3:07598091Tapio Rautavaara16204189Armas JokioBacking Vocals1135557Kai LindBacking Vocals1489741Pekka HärkönenBacking Vocals16204192Urho TolonenBacking Vocals1348172Erkki SeppäBass589906Toivo KärkiComposed By, Arranged By492333Nacke JohanssonConductor, Backing Vocals591085Ilpo KallioDrums2794989Eero JantunenFrench Horn4842092Ilkka LaaksoFrench Horn592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By932061Erkki ValastePercussion, Backing Vocals503479Ronnie KranckRecorded By [Probably]598091Tapio RautavaaraVocals8-16Yölinjalla = I Walk The Line [1965 Versio]3:07598091Tapio Rautavaara589906Toivo KärkiArranged By565694Olle WibergBass135946Johnny CashComposed By, Lyrics By [Original]492334Ossi RunneConductor, Percussion932061Erkki ValasteDrums592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar1446253Helge MechelinRecorded By598091Tapio RautavaaraTranslated By [Finnish]598091Tapio RautavaaraVocals8-17Päivänsäde Ja Menninkäinen [1965 Versio]3:13598091Tapio Rautavaara589906Toivo KärkiArranged By565694Olle WibergBass562947Reino HelismaaComposed By, Lyrics By492334Ossi RunneConductor592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar1446253Helge MechelinRecorded By598091Tapio RautavaaraVocals8-18Kulkuri Ja Joutsen = Lite Grann Från Ovan [1965 Versio]3:27598091Tapio Rautavaara589906Toivo KärkiArranged By565694Olle WibergBass844086Lasse DahlquistComposed By, Lyrics By [Original]492334Ossi RunneConductor592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar1446253Helge MechelinRecorded By562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals8-19Vanha Rantasauna [1965 Versio]3:12598091Tapio Rautavaara589906Toivo KärkiArranged By565694Olle WibergBass598091Tapio RautavaaraComposed By492334Ossi RunneConductor592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By1446253Helge MechelinRecorded By598091Tapio RautavaaraVocals8-20Reppu Ja Reissumies2:37598091Tapio Rautavaara555490Veikko HuuskonenAccordion355Unknown ArtistBacking Vocals1172896Pentti VuosmaaBass589906Toivo KärkiComposed By, Arranged By492334Ossi RunneConductor591085Ilpo KallioDrums565694Olle WibergGuitar562947Reino HelismaaLyrics By503479Ronnie KranckRecorded By889703Erkki InkinenViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals8-21Kulkurin Iltatähti2:28598091Tapio Rautavaara555490Veikko HuuskonenAccordion1172896Pentti VuosmaaBass589906Toivo KärkiComposed By, Arranged By492334Ossi RunneConductor591085Ilpo KallioDrums565694Olle WibergGuitar562947Reino HelismaaLyrics By503479Ronnie KranckRecorded By889703Erkki InkinenViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals8-22Pelimannin Penkillä3:49598091Tapio Rautavaara593883Kalevi NyqvistAccordion1183948Taito VainioArranged By1172896Pentti VuosmaaBass1738506Tapio LahtinenTapio "Kullervo" LahtinenComposed By492334Ossi RunneConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar1194420Helena EevaLyrics By503479Ronnie KranckRecorded By [Probably]889703Erkki InkinenViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals8-23Laulajan Ystävä3:28598091Tapio Rautavaara593883Kalevi NyqvistAccordion1183948Taito VainioArranged By1172896Pentti VuosmaaBass1738506Tapio LahtinenTapio "Kullervo" LahtinenComposed By492334Ossi RunneConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar1194420Helena EevaLyrics By503479Ronnie KranckRecorded By [Probably]889703Erkki InkinenViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals1965-19669-1Kuubalainen Serenadi3:13598091Tapio Rautavaara589906Toivo KärkiArranged By1172896Pentti VuosmaaBass1644325SalamanteriComposed By492334Ossi RunneConductor540727Ingmar EnglundGuitar1644327Unto KoskelaLyrics By503479Ronnie KranckRecorded By889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-2Häävalssi2:39598091Tapio Rautavaara589906Toivo KärkiArranged By1172896Pentti VuosmaaBass1665783Friiti OjalaComposed By492334Ossi RunneConductor540727Ingmar EnglundGuitar712217Arthur FuhrmannHarmonium789569Tuula ValkamaLyrics By503479Ronnie KranckRecorded By889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-3Elämäntoverini3:20598091Tapio Rautavaara932065Erkki MelakoskiArranged By2065378Pentti TiensuuBass492336Jaakko BorgComposed By932065Erkki MelakoskiConductor251605Esa PethmanFlute310373Juhani AaltonenFlute540727Ingmar EnglundGuitar562947Reino HelismaaLyrics By889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-4Tuuli Tunturiin Käy = Nu Går Vind över Fjäll3:00598091Tapio Rautavaara932065Erkki MelakoskiArranged By2065378Pentti TiensuuBass463881Jules SylvainComposed By932065Erkki MelakoskiConductor251605Esa PethmanFlute310373Juhani AaltonenFlute540727Ingmar EnglundGuitar6066195Gösta StenbergLyrics By [Original]2267403Vuokko LehmustoTranslated By [Finnish]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-5Juhlaruno = Liljankukka1:39598091Tapio Rautavaara589906Toivo KärkiComposed By, Arranged By789570Kerttu MustonenLyrics By [Original]598091Tapio RautavaaraLyrics By [Poem]355Unknown ArtistMusician598091Tapio RautavaaraSpeech [Recitation]9-6Antaa Vetää Vain3:05598091Tapio Rautavaara932065Erkki MelakoskiArranged By550031Heikki AnnalaBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By932065Erkki MelakoskiConductor590470Matti KoskialaDrums540727Ingmar EnglundGuitar565694Olle WibergGuitar1639175Reijo ViresLyrics By310370Juhani AaltoTrombone1329421Björn BjörklöfBjörn BjörklövTrumpet678604Tauno VirtanenTrumpet598091Tapio RautavaaraVocals9-7Pjotr Ja Jimmy3:11598091Tapio Rautavaara932065Erkki MelakoskiArranged By310372Unto Haapa-AhoBaritone Saxophone550031Heikki AnnalaBass589906Toivo KärkiComposed By151641Traditionaltrad.Composed By932065Erkki MelakoskiConductor590470Matti KoskialaDrums540727Ingmar EnglundGuitar Banjo1639175Reijo ViresLyrics By565694Olle WibergMandolin310370Juhani AaltoTrombone1329421Björn BjörklöfBjörn BjörklövTrumpet678604Tauno VirtanenTrumpet598091Tapio RautavaaraVocals9-8Pispalan Poikia Ollaan2:25598091Tapio Rautavaara593883Kalevi NyqvistAccordion540727Ingmar EnglundAcoustic Guitar355Unknown ArtistBacking Vocals550031Heikki AnnalaBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By889701Pauli GranfeltConductor591085Ilpo KallioDrums789173Pauli SalonenLyrics By653500Olavi RignellViolin653557Pertti KiriViolin1626592Seppo KurkiViolin598091Tapio RautavaaraVocals9-9Oli Pispalan Mäellä Tölli3:20598091Tapio Rautavaara593883Kalevi NyqvistAccordion540727Ingmar EnglundAcoustic Guitar550031Heikki AnnalaBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By889701Pauli GranfeltConductor, Mandolin591085Ilpo KallioDrums791377Lauri JauhiainenLyrics By653500Olavi RignellViolin653557Pertti KiriViolin1626592Seppo KurkiViolin598091Tapio RautavaaraVocals9-10Kolmella Markalla2:34598091Tapio Rautavaara589906Toivo KärkiArranged By1348172Erkki SeppäBass522918Pentti LasanenClarinet548941Reijo LehtovirtaClarinet598091Tapio RautavaaraComposed By593883Kalevi NyqvistConductor, Accordion932061Erkki ValasteDrums592250Heikki LaurilaGuitar1096165Alvi VuorinenLyrics By889703Erkki InkinenStrings, Violin653557Pertti KiriStrings, Violin592185Rauno SalminenStrings, Violin1626592Seppo KurkiStrings, Violin16214806Sirkka HeinoStrings, Violin598091Tapio RautavaaraVocals9-11Ei Auta Itku Markkinoilla2:59598091Tapio Rautavaara1348172Erkki SeppäBass522918Pentti LasanenClarinet548941Reijo LehtovirtaClarinet589906Toivo KärkiComposed By, Arranged By593883Kalevi NyqvistConductor, Accordion932061Erkki ValasteDrums592250Heikki LaurilaGuitar562947Reino HelismaaLyrics By889703Erkki InkinenStrings, Violin653557Pertti KiriStrings, Violin592185Rauno SalminenStrings, Violin1626592Seppo KurkiStrings, Violin16214806Sirkka HeinoStrings, Violin598091Tapio RautavaaraVocals9-12Vanhan Jermun Purnaus3:14598091Tapio Rautavaara1348172Erkki SeppäBass6498979Mario SgobbaClarinet589906Toivo KärkiComposed By, Arranged By644338Aarno RaninenConductor591085Ilpo KallioDrums1277431Raimo SarkioGuitar791377Lauri JauhiainenLyrics By310370Juhani AaltoTrombone889697Seppo LintunenTrombone889701Pauli GranfeltTrumpet678604Tauno VirtanenTrumpet889710Tauno TiikkainenViolin598091Tapio RautavaaraVocals9-13Rikas Ja Köyhä2:31598091Tapio Rautavaara542810Aaro KurkelaAccordion1348172Erkki SeppäBass6498979Mario SgobbaClarinet589906Toivo KärkiComposed By, Arranged By644338Aarno RaninenConductor591085Ilpo KallioDrums1277431Raimo SarkioGuitar789173Pauli SalonenLyrics By310370Juhani AaltoTrombone889697Seppo LintunenTrombone889701Pauli GranfeltTrumpet678604Tauno VirtanenTrumpet889710Tauno TiikkainenViolin598091Tapio RautavaaraVocals9-14Hyvää, Hyvää Iltaa1:18598091Tapio Rautavaara589906Toivo KärkiArranged By1440217Emil KarppinenCello151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-15Silloin Minä Itkin Ensi Kerran2:00598091Tapio Rautavaara589906Toivo KärkiArranged By1440217Emil KarppinenCello6498979Mario SgobbaClarinet151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor1092018Mikko HynninenFrench Horn592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-16Järvelän Manta0:43598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-17Talapakan Nikolai1:46598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor2794537Kari TikkaEnglish Horn592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-18Tukkipoika Se Lautallansa1:38598091Tapio Rautavaara589906Toivo KärkiArranged By1440217Emil KarppinenCello151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-19Kuivalla Kalliolla2:53598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-20Luullahan, Jotta On Lysti Olla1:26598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (eteläpohjalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-21Alahärmästä, Keskeltä Pitäjästä0:54598091Tapio Rautavaara589906Toivo KärkiArranged By1440217Emil KarppinenCello6498979Mario SgobbaClarinet151641Traditionaltrad. (pohjalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor1092018Mikko HynninenFrench Horn592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-22Villisorsa (On Suuri Sun Rantas Autius) [1966 Versio]2:17598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansansävel)Composed By791643Rauno LehtinenConductor2794537Kari TikkaEnglish Horn592250Heikki LaurilaGuitar1515376Veikko Antero KoskenniemiV.A.KoskenniemiLyrics By [Poem]598091Tapio RautavaaraVocals9-23Ralli2:19598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By598091Tapio RautavaaraConductor592250Heikki LaurilaGuitar889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-24Hallin Janne2:02598091Tapio Rautavaara589906Toivo KärkiArranged By1440217Emil KarppinenCello6498979Mario SgobbaClarinet151641Traditionaltrad. (pohjalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor1092018Mikko HynninenFrench Horn592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-25Lapsuuden Toverille1:56598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar717492Pekka Juhani HannikainenP.J.HannikainenLyrics By598091Tapio RautavaaraVocals9-26Maantie On Pitkä0:45598091Tapio Rautavaara151641Traditionaltrad. (suomalainen kansanlaulu)Composed By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar562947Reino HelismaaLyrics By151641Traditionaltrad.Lyrics By889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-27Yksi Ruusu On Kasvanut Laaksossa1:33598091Tapio Rautavaara589906Toivo KärkiArranged By1440217Emil KarppinenCello151641Traditionaltrad. (suomalainen kansansävel)Composed By791643Rauno LehtinenConductor1092018Mikko HynninenFrench Horn592250Heikki LaurilaGuitar2940926Kaarle KrohnLyrics By598091Tapio RautavaaraVocals9-28Raha Ei Lopu1:30598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar598091Tapio RautavaaraVocals9-29Juomaripoika2:25598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals9-30Palvelin Mä Talonpojan Vuoteni Täyteen3:05598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (satakuntalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar889703Erkki InkinenViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals1967-196810-1Laulu Dnjeprille = Reve Ta Stogne Dnipr Shirokij4:13598091Tapio Rautavaara593883Kalevi NyqvistAccordion555490Veikko HuuskonenAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals355Unknown ArtistBacking Vocals [Other]430637Matti BergströmBass310372Unto Haapa-AhoClarinet2830539Данило КрижанівськийDaniil KryzhanovskiComposed By791643Rauno LehtinenConductor, Mandolin1277431Raimo SarkioGuitar936204Тарас Григорович ШевченкоTaras ShevtshenkoLyrics By [Original]592250Heikki LaurilaMandolin7063057Valdemar KuutioMandolin562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraVocals10-2Karjalan Kaunis Kerttu4:07598091Tapio Rautavaara593883Kalevi NyqvistAccordion555490Veikko HuuskonenAccordion791643Rauno LehtinenArranged By430637Matti BergströmBass310372Unto Haapa-AhoClarinet711322Matti JurvaComposed By, Lyrics By791643Rauno LehtinenConductor, Violin932061Erkki ValasteDrums592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar889703Erkki InkinenStrings, Violin1626588Fritz KilantoStrings, Violin889701Pauli GranfeltStrings, Violin653557Pertti KiriStrings, Violin598091Tapio RautavaaraVocals10-3Vangin Laulu3:17598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By550031Heikki AnnalaBass592339Paavo LampinenClarinet151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums, Percussion1277431Raimo SarkioGuitar1432837Untamo KorhonenMandolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-4Ruusu Ja Orvokki2:46598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By550031Heikki AnnalaBass592339Paavo LampinenClarinet151641Traditionaltrad. (suomalainen kansanlaulu)Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums, Percussion1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By1432837Untamo KorhonenMandolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-5Juokse Sinä Humma [1967 Versio]3:22598091Tapio Rautavaara555490Veikko HuuskonenAccordion598091Tapio RautavaaraAdapted By, Lyrics By598091Tapio RautavaaraArranged By589906Toivo KärkiArranged By1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet151641Traditionaltrad.Composed By791643Rauno LehtinenConductor591085Ilpo KallioDrums1092018Mikko HynninenFrench Horn592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar598091Tapio RautavaaraVocals10-6Topparoikka Tulee4:06598091Tapio Rautavaara555490Veikko HuuskonenAccordion355Unknown ArtistBacking Vocals1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By791643Rauno LehtinenConductor591085Ilpo KallioDrums1092018Mikko HynninenFrench Horn592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By598091Tapio RautavaaraVocals10-7Hopeahapset = Silver Threads Among The Gold3:06598091Tapio Rautavaara589906Toivo KärkiArranged By1292673Hart Pease DanksHart P. DanksComposed By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar1000068Eben E. RexfordLyrics By [Original]3558803Ruth HeinonenTranslated By [Finnish]598091Tapio RautavaaraVocals10-8Hurjan Pojan Koti2:41598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By791643Rauno LehtinenConductor592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar598091Tapio RautavaaraVocals10-9Saimaan Kanavalla2:47598091Tapio Rautavaara542810Aaro KurkelaAccordion1348172Erkki SeppäBass [Either]1172896Pentti VuosmaaBass [Either]589906Toivo KärkiComposed By, Arranged By712217Arthur FuhrmannConductor1626606Ossi KuulaDrums355Unknown ArtistFlute592250Heikki LaurilaGuitar637472Juha VainioLyrics By889701Pauli GranfeltViolin1626592Seppo KurkiViolin598091Tapio RautavaaraVocals10-10Menneet Päivät3:34598091Tapio Rautavaara542810Aaro KurkelaAccordion1348172Erkki SeppäBass [Either]1172896Pentti VuosmaaBass [Either]589906Toivo KärkiComposed By, Arranged By712217Arthur FuhrmannConductor1626606Ossi KuulaDrums355Unknown ArtistFlute592250Heikki LaurilaGuitar637472Juha VainioLyrics By889701Pauli GranfeltViolin1626592Seppo KurkiViolin598091Tapio RautavaaraVocals10-11Väliaikainen [1967 Versio]2:09598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass711322Matti JurvaComposed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar1194418Tatu PekkarinenLyrics By492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-12Maailman Matti2:38598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion1194418Tatu PekkarinenAdapted By (Text)589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-13Paljon On Kärsitty Vilua Ja Nälkää2:49598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-14Ellin Boksissa2:07598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad.Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar562947Reino HelismaaLyrics By492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-15Niin Minä, Neitonen, Sinulle Laulan1:48598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals10-16Arvon Mekin Ansaitsemme2:24598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansansävel)Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar2929847Jaakko JuteiniLyrics By492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals10-17Oolannin Sota2:51598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]591040Seppo PeltolaTrombone889701Pauli GranfeltTrumpet598091Tapio RautavaaraVocals10-18Rullaati, Rullaati!1:44598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion1768221Reino PalmrothReino "Palle" PalmrothAdapted By (Text)589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals10-19Talvella Talikkalan Markkinoilla2:54598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals10-20Hepokatti = Polly Wolly Doodle1:39598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (amerikkalainen kansanlaulu)Composed By, Lyrics By [Original]492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]355Unknown ArtistTranslated By [Finnish]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-21Hei, Vahtimestari!1:26598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-22Muurari3:11598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-23Mannakorven Mailla2:03598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals10-24Isontalon Antti2:46598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (eteläpohjalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals10-25Kulkurin Valssi [1967 Versio]2:56598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad. (ruotsalainen kansanlaulu)Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar587098J. Alfred TannerLyrics By492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals10-26Juhlan Päättäjäislaulu = Jag Är En Fränling Från Delos' Stränder2:22598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals1819815Lasse KuuselaBacking Vocals7063055Maila Rautio-MäkinenBacking Vocals1348172Erkki SeppäBass151641Traditionaltrad.Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar6366900Bruno AspelinLyrics By [Original]492333Nacke JohanssonPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1793415Hjalmar NortamoTranslated By [Finnish]889701Pauli GranfeltViolin598091Tapio RautavaaraVocals1968-196911-1Onhan Näissä Oltu [Versio 1]2:58598091Tapio Rautavaara542810Aaro KurkelaAccordion1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar637472Juha VainioLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-2Ystävä [Versio 1]2:48598091Tapio Rautavaara1348172Erkki SeppäBass548941Reijo LehtovirtaClarinet589906Toivo KärkiComposed By, Arranged By791643Rauno LehtinenConductor592253Raimo RoihaHarmonium789569Tuula ValkamaLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1626592Seppo KurkiViolin598091Tapio RautavaaraVocals11-3Arkkiveisu3:12598091Tapio Rautavaara589906Toivo KärkiArranged By540733Gösta MöllerBass310372Unto Haapa-AhoClarinet151641Traditionaltrad.Composed By, Lyrics By791643Rauno LehtinenConductor, Violin592253Raimo RoihaHarmonium254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]592186Ahti PilviViola889701Pauli GranfeltViolin773467Pentti NevalainenViolin598091Tapio RautavaaraVocals11-4Onhan Näissä Oltu [Versio 2]2:58598091Tapio Rautavaara542810Aaro KurkelaAccordion1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar637472Juha VainioLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889701Pauli GranfeltViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-5Kysymys = Sten'ka Razin3:16598091Tapio Rautavaara589906Toivo KärkiArranged By1348172Erkki SeppäBass548941Reijo LehtovirtaClarinet151641Traditionaltrad. (venäläinen kansanlaulu)Composed By, Lyrics By [Original]791643Rauno LehtinenConductor592250Heikki LaurilaMandolin254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]355Unknown ArtistTranslated By [Finnish]889703Erkki InkinenViolin1626592Seppo KurkiViolin598091Tapio RautavaaraVocals11-6Ystävä [Versio 2]2:49598091Tapio Rautavaara1348172Erkki SeppäBass548941Reijo LehtovirtaClarinet589906Toivo KärkiComposed By, Arranged By791643Rauno LehtinenConductor592253Raimo RoihaHarmonium789569Tuula ValkamaLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1626592Seppo KurkiViolin598091Tapio RautavaaraVocals11-7Rööperin Reiska3:10598091Tapio Rautavaara2065378Pentti TiensuuBass589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor590470Matti KoskialaDrums773470Antero KasperFrench Horn540727Ingmar EnglundGuitar1234708Heikki JänttiHarmonica789173Pauli SalonenLyrics By791643Rauno LehtinenMandolin1432837Untamo KorhonenMandolin592253Raimo RoihaPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals11-8Terveiset Helsinkiin2:38598091Tapio Rautavaara592253Raimo RoihaAccordion2065378Pentti TiensuuBass589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor590470Matti KoskialaDrums773470Antero KasperFrench Horn540727Ingmar EnglundGuitar791377Lauri JauhiainenLyrics By791643Rauno LehtinenMandolin1432837Untamo KorhonenMandolin254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals11-9Katselen Yli Virran = Ya Za Rechen'ku Glyazhu2:22598091Tapio Rautavaara593883Kalevi NyqvistAccordion492336Jaakko BorgArranged By430637Matti BergströmBass748477Борис МокроусовBoris MokrousovComposed By492336Jaakko BorgConductor251606Reino LaineDrums310373Juhani AaltonenFlute592188Seppo KeurulainenGuitar1703293Вадим МалковVadim MalkovLyrics By [Original]1658131Георгий СтрогановGeorgij StroganovLyrics By [Original]254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]562947Reino HelismaaTranslated By [Finnish]889710Tauno TiikkainenViolin598091Tapio RautavaaraVocals11-10Takaisin Nuoruuden Aikaan1:59598091Tapio Rautavaara593883Kalevi NyqvistAccordion492336Jaakko BorgArranged By430637Matti BergströmBass1797700Olavi KaruComposed By492336Jaakko BorgConductor251606Reino LaineDrums592188Seppo KeurulainenGuitar1989181Lauri VuorreLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889703Erkki InkinenViolin1626583Martti SuomiViolin889710Tauno TiikkainenViolin598091Tapio RautavaaraVocals11-11Laulakaamme Silloin2:03598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-12Emma2:59598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (venäläinen kansansävel)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-13Varjele Luoja1:33598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-14Kulkurin Kaiho2:08598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-15Eikä Me Olla Veljeksiä1:35598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar562947Reino HelismaaLyrics By151641Traditionaltrad.Lyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-16Lundgreenska Ja Lindgreeni1:36598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-17Rosmariini = Je Cherche Aprés Titine2:20598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass1149894Léo DaniderffFerdinand Julien NiquetComposed By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar4176605Bertal MaubonMarcel Bertan & Louis MaubonLyrics By [Original]254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1768221Reino PalmrothReino "Palle" PalmrothTranslated By [Finnish]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-18Poika Oli Pohjan Torniosta1:39598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By932061Erkki ValasteBacking Vocals698042Henry TheelBacking Vocals1989182Oili VainioBacking Vocals1013241Ragni MalmsténBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion1277431Raimo SarkioGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889711Timo VartiainenViolin598091Tapio RautavaaraVocals11-19Jos Sais Kerran Reissullansa2:08598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (suomalainen kansanlaulu)Composed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-20Testamentti = She'll Be Comin' Round The Mountain4:18598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (amerikkalainen kansanlaulu)Composed By, Lyrics By [Original]492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]562947Reino HelismaaTranslated By [Finnish]598091Tapio RautavaaraTranslated By [Finnish]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-21Oulun Pojat = Andersson Och Pettersson Och Lundström Och Jag1:15598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (ruotsalainen kansansävel)Composed By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar9238474Frans HodellLyrics By [Original]254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]355Unknown ArtistTranslated By [Finnish]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-22Kiinan Pelastuarmeijassa = Inke Pinke Parles-vouz1:41598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass151641Traditionaltrad. (ranskalainen kansansävel)Composed By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar355Unknown ArtistLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-23Inarinjärvi = Enare Sjö3:09598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass1493410Evert SuonioComposed By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar662608Zacharias TopeliusLyrics By [Original Poem]254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1515384Paavo CajanderTranslated By [Finnish]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-24Wei-hai-wei2:03598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass711322Matti JurvaComposed By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar1194418Tatu PekkarinenLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-25Tuulia, Tuu2:38598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By723648Eino GrönBacking Vocals932061Erkki ValasteBacking Vocals1013241Ragni MalmsténBacking Vocals1631286Ranja RasmussenBacking Vocals2065378Pentti TiensuuBass1746288Lassi UtsjokiComposed By, Lyrics By492336Jaakko BorgConductor590470Matti KoskialaDrums, Percussion485405Taisto WesslinGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]791643Rauno LehtinenViolin598091Tapio RautavaaraVocals11-26Muistoissain Muuttumaton2:58598091Tapio Rautavaara1348172Erkki SeppäBass589906Toivo KärkiComposed By, Arranged By492333Nacke JohanssonConductor591085Ilpo KallioDrums, Percussion32482Matti OilingDrums, Percussion592250Heikki LaurilaGuitar1277431Raimo SarkioGuitar1234708Heikki JänttiHarmonica789569Tuula ValkamaLyrics By2197090Markku SeppänenMandolin [Probably]592253Raimo RoihaPiano254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]725132Risto FredrikssonStrings, Cello1635932Arto KallioStrings, Violin889703Erkki InkinenStrings, Violin653500Olavi RignellStrings, Violin889710Tauno TiikkainenStrings, Violin598091Tapio RautavaaraVocals11-27Kultainen Aika2:37598091Tapio Rautavaara592253Raimo RoihaAccordion430637Matti BergströmBass589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor32482Matti OilingDrums1277431Raimo SarkioGuitar789173Pauli SalonenLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]889703Erkki InkinenStrings, Violin889701Pauli GranfeltStrings, Violin889710Tauno TiikkainenStrings, Violin889711Timo VartiainenStrings, Violin355Unknown ArtistTrombone598091Tapio RautavaaraVocals1970-197312-1Kiven Sisällä = San Quentin2:49598091Tapio Rautavaara319615Markku JohanssonArranged By540731Irma TapioBacking Vocals6320983Katri MarteliusBacking Vocals7063058Liisa KivekäsBacking Vocals565710Maija HapuojaBacking Vocals1432840Marjukka GustafssonBacking Vocals430637Matti BergströmBass135946Johnny CashComposed By, Lyrics By [Original]319615Markku JohanssonConductor32482Matti OilingDrums592250Heikki LaurilaGuitar565694Olle WibergGuitar932061Erkki ValastePercussion503479Ronnie KranckRecorded By637472Juha VainioTranslated By [Finnish]310370Juhani AaltoTrombone591040Seppo PeltolaTrombone598091Tapio RautavaaraVocals12-2Toiset On Luotuja Kulkemaan = Wandrin' Star2:51598091Tapio Rautavaara319615Markku JohanssonArranged By540731Irma TapioBacking Vocals1135557Kai LindBacking Vocals6320983Katri MarteliusBacking Vocals7063058Liisa KivekäsBacking Vocals565710Maija HapuojaBacking Vocals1432840Marjukka GustafssonBacking Vocals540751Martti MetsäketoBacking Vocals2197092Tapani LuuppalaBacking Vocals430637Matti BergströmBass522918Pentti LasanenClarinet418708Frederick LoeweComposed By319615Markku JohanssonConductor32482Matti OilingDrums592250Heikki LaurilaGuitar565694Olle WibergGuitar1234708Heikki JänttiHarmonica573746Alan Jay LernerLyrics By [Original]932061Erkki ValastePercussion492333Nacke JohanssonPiano503479Ronnie KranckRecorded By653524Heikki RautasaloStrings, Cello1171497Ailla VitikkaAilla WitikkaStrings, Violin653490Esa KamuStrings, Violin592183Jouni HeinonenStrings, Violin346395Jussi PesonenStrings, Violin725136Olavi PälliStrings, Violin637472Juha VainioTranslated By [Finnish]310370Juhani AaltoTrombone591040Seppo PeltolaTrombone598091Tapio RautavaaraVocals12-3Kirje Karjalaan3:03598091Tapio Rautavaara593883Kalevi NyqvistAccordion589906Toivo KärkiArranged By1348172Erkki SeppäBass592253Raimo RoihaCelesta548942Paavo HonkanenClarinet151641Traditionaltrad.Composed By492336Jaakko BorgConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar789173Pauli SalonenLyrics By1432837Untamo KorhonenMandolin254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals12-4Tähdet Piritan Yllä2:54598091Tapio Rautavaara593883Kalevi NyqvistAccordion1348172Erkki SeppäBass548942Paavo HonkanenClarinet589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums592253Raimo RoihaElectric Piano592250Heikki LaurilaGuitar789173Pauli SalonenLyrics By1432837Untamo KorhonenMandolin254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals12-5Arholma-valssi = Arholmavalsen2:56598091Tapio Rautavaara542810Aaro KurkelaAccordion589906Toivo KärkiArranged By550031Heikki AnnalaBass4290964Albin CarlssonComposed By492336Jaakko BorgConductor591085Ilpo KallioDrums485405Taisto WesslinGuitar5691661Herman SvenoniusLyrics By [Original]254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1738506Tapio LahtinenTapio "Kullervo" LahtinenTranslated By [Finnish]548843Jari LappalainenViolin598091Tapio RautavaaraVocals12-6Kaunissaari = Västkustens Vals2:56598091Tapio Rautavaara542810Aaro KurkelaAccordion589906Toivo KärkiArranged By550031Heikki AnnalaBass2012044Harry BlomquistHarry BlomqvistComposed By, Lyrics By [Original]492336Jaakko BorgConductor591085Ilpo KallioDrums485405Taisto WesslinGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]752214Vexi SalmiTranslated By [Finnish]548843Jari LappalainenViolin598091Tapio RautavaaraVocals12-7Anttilan Keväthuumaus [1971 Versio] = Sjösala Vals3:12598091Tapio Rautavaara542810Aaro KurkelaAccordion589906Toivo KärkiArranged By550031Heikki AnnalaBass525849Evert TaubeComposed By, Lyrics By [Original]492336Jaakko BorgConductor591085Ilpo KallioDrums485405Taisto WesslinGuitar254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]1768221Reino PalmrothReino "Palle" PalmrothTranslated By [Finnish]548843Jari LappalainenViolin598091Tapio RautavaaraVocals12-8Merta Päin2:26598091Tapio Rautavaara542810Aaro KurkelaAccordion550031Heikki AnnalaBass589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums485405Taisto WesslinGuitar752214Vexi SalmiLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]548843Jari LappalainenViolin598091Tapio RautavaaraVocals12-9Tuhlatut Päivät3:13598091Tapio Rautavaara542810Aaro KurkelaAccordion319615Markku JohanssonArranged By310368Ilkka WillmanBass548942Paavo HonkanenClarinet310372Unto Haapa-AhoClarinet1326884Aimo MustonenComposed By, Lyrics By319615Markku JohanssonConductor251605Esa PethmanFlute341782Ilpo SaastamoinenGuitar711355Antero PäiväläinenAnde PäiväläinenPercussion503479Ronnie KranckRecorded By889701Pauli GranfeltViolin598091Tapio RautavaaraVocals12-10Taikahuilu2:40598091Tapio Rautavaara542810Aaro KurkelaAccordion319615Markku JohanssonArranged By310368Ilkka WillmanBass548942Paavo HonkanenClarinet310372Unto Haapa-AhoClarinet14496304Veikko VihreävirtaComposed By, Lyrics By319615Markku JohanssonConductor251605Esa PethmanFlute341782Ilpo SaastamoinenGuitar711355Antero PäiväläinenAnde PäiväläinenPercussion503479Ronnie KranckRecorded By889701Pauli GranfeltViolin598091Tapio RautavaaraVocals12-11Leningrad3:40598091Tapio Rautavaara593883Kalevi NyqvistAccordion430637Matti BergströmBass589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums1277431Raimo SarkioGuitar789173Pauli SalonenLyrics By889701Pauli GranfeltMandolin1432837Untamo KorhonenMandolin251771Esko RosnellPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]2547952Jalmari HölttäStrings, Cello592186Ahti PilviStrings, Viola346372Heikki HämäläinenStrings, Violin346373Jorma YlönenStrings, Violin346398Juhani TiainenStrings, Violin889695Marjukka NenonenStrings, Violin598091Tapio RautavaaraVocals12-12En Päivääkään Vaihtaisi Pois [1]3:20598091Tapio Rautavaara593883Kalevi NyqvistAccordion430637Matti BergströmBass589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums1277431Raimo SarkioGuitar752214Vexi SalmiLyrics By889701Pauli GranfeltMandolin1432837Untamo KorhonenMandolin251771Esko RosnellPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]2547952Jalmari HölttäStrings, Cello592186Ahti PilviStrings, Viola346372Heikki HämäläinenStrings, Violin346373Jorma YlönenStrings, Violin346398Juhani TiainenStrings, Violin889695Marjukka NenonenStrings, Violin598091Tapio RautavaaraVocals12-13Harvoin Toiveet Toteutuu4:28598091Tapio Rautavaara555490Veikko HuuskonenAccordion323522Tapani TamminenBass889715Gusse RössiClarinet292013Seppo PaakkunainenSeppo "Paroni" PaakkunainenComposed By, Arranged By292013Seppo PaakkunainenSeppo "Paroni" Paakkunainen YhtyeineenConductor310373Juhani AaltonenFlute386326Antero JakoilaGuitar522920Nono SöderbergGuitar752214Vexi SalmiLyrics By254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]725132Risto FredrikssonStrings, Cello1892420Ari AngervoStrings, Violin889717Jaakko SantasaloStrings, Violin725134Jorma RahkonenStrings, Violin589903Pekka HelasvuoStrings, Violin590464Seppo TukiainenStrings, Violin889710Tauno TiikkainenStrings, Violin1896112Veikko SaarnikoskiStrings, Violin598091Tapio RautavaaraVocals12-14Oloneuvoksen Unelmat2:54598091Tapio Rautavaara542810Aaro KurkelaAccordion492334Ossi RunneArranged By1348172Erkki SeppäBass390182Hannu SaxelinClarinet3382342Toivo PyörreComposed By492334Ossi RunneConductor591085Ilpo KallioDrums310373Juhani AaltonenFlute592250Heikki LaurilaGuitar3382342Toivo PyörreLyrics By789569Tuula ValkamaLyrics By592253Raimo RoihaPiano483254Jouko AheraRecorded By653524Heikki RautasaloStrings, Cello653490Esa KamuStrings, Viola592183Jouni HeinonenStrings, Violin346395Jussi PesonenStrings, Violin889696Ulf HästbackaStrings, Violin598091Tapio RautavaaraVocals12-15Tänään Ei Lauluja Synny4:04598091Tapio Rautavaara542810Aaro KurkelaAccordion1348172Erkki SeppäBass590926Juhani TapaninenBassoon390182Hannu SaxelinClarinet492334Ossi RunneComposed By, Lyrics By, Arranged By492334Ossi RunneConductor591085Ilpo KallioDrums310373Juhani AaltonenFlute592250Heikki LaurilaGuitar592253Raimo RoihaPiano483254Jouko AheraRecorded By598091Tapio RautavaaraVocals12-16Kulkuripoika3:30598091Tapio Rautavaara598091Tapio RautavaaraAdapted By (Text)589906Toivo KärkiArranged By540733Gösta MöllerBass310372Unto Haapa-AhoClarinet151641Traditionaltrad. (suomalainen kansanlaulu)Composed By492336Jaakko BorgConductor791643Rauno LehtinenConductor, Violin592253Raimo RoihaHarmonium254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]592186Ahti PilviViola889701Pauli GranfeltViolin773467Pentti NevalainenViolin598091Tapio RautavaaraVocals12-17Jää Hyvästi, Sayonara [1973 Versio]3:36598091Tapio Rautavaara292013Seppo PaakkunainenSeppo "Paroni" PaakkunainenArranged By323522Tapani TamminenBass598091Tapio RautavaaraComposed By292013Seppo PaakkunainenSeppo "Paroni" PaakkunainenConductor, Flute [Probably]251606Reino LaineDrums522920Nono SöderbergGuitar1194420Helena EevaLyrics By10183Olli AhvenlahtiPiano254115Erkki HyvönenRecorded By [Probably]653490Esa KamuStrings, Viola2571554Jorma TaivainenStrings, Violin346373Jorma YlönenStrings, Violin346395Jussi PesonenStrings, Violin725137Keijo AulanneStrings, Violin3145903Soila AhlgrenSoila AhlgrénStrings, Violin598091Tapio RautavaaraVocals12-18Minkä Vuoksi3:13598091Tapio Rautavaara323522Tapani TamminenBass292013Seppo PaakkunainenSeppo "Paroni" PaakkunainenComposed By, Arranged By292013Seppo PaakkunainenSeppo "Paroni" PaakkunainenConductor251606Reino LaineDrums522920Nono SöderbergGuitar598091Tapio RautavaaraLyrics By752214Vexi SalmiLyrics By355Unknown ArtistMandolin10183Olli AhvenlahtiPiano254115Erkki HyvönenRecorded By [Probably]2571554Jorma TaivainenStrings, Violin346373Jorma YlönenStrings, Violin346395Jussi PesonenStrings, Violin725137Keijo AulanneStrings, Violin3145903Soila AhlgrenSoila AhlgrénStrings, Violin598091Tapio RautavaaraVocals12-19Kesäiset Tuulet2:43598091Tapio Rautavaara430637Matti BergströmBass791643Rauno LehtinenComposed By, Lyrics By, Arranged By791643Rauno LehtinenConductor591085Ilpo KallioDrums, Percussion592253Raimo RoihaElectric Piano565694Olle WibergGuitar254115Erkki HyvönenRecorded By [Probably; Either]483254Jouko AheraRecorded By [Probably; Either]503479Ronnie KranckRecorded By [Probably; Either]319615Markku JohanssonTrumpet773467Pentti NevalainenViolin598091Tapio RautavaaraVocals12-20Kiskoja Pitkin4:27598091Tapio Rautavaara791643Rauno LehtinenArranged By355Unknown ArtistBacking Vocals430637Matti BergströmBass592228Jaakko SaloComposed By791643Rauno LehtinenConductor591085Ilpo KallioDrums, Percussion565694Olle WibergGuitar573702SaukkiLyrics By592253Raimo RoihaPiano, Accordion254115Erkki HyvönenRecorded By [Probably; Either]483254Jouko AheraRecorded By [Probably; Either]503479Ronnie KranckRecorded By [Probably; Either]319615Markku JohanssonTrumpet773467Pentti NevalainenViolin598091Tapio RautavaaraVocals12-21Sinä Kunnon Ihminen3:12598091Tapio Rautavaara492333Nacke JohanssonAccordion430637Matti BergströmBass548941Reijo LehtovirtaClarinet589906Toivo KärkiComposed By, Arranged By492336Jaakko BorgConductor591085Ilpo KallioDrums522920Nono SöderbergGuitar7308886Matti HeinoLyrics By889701Pauli GranfeltMandolin1432837Untamo KorhonenMandolin254115Erkki HyvönenRecorded By [Probably; Either]483254Jouko AheraRecorded By [Probably; Either]503479Ronnie KranckRecorded By [Probably; Either]598091Tapio RautavaaraVocals12-22Kaamoskuu3:25598091Tapio Rautavaara593883Kalevi NyqvistArranged By1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet869629Usko KemppiComposed By, Lyrics By593883Kalevi NyqvistConductor, Accordion932061Erkki ValasteDrums310373Juhani AaltonenFlute1277431Raimo SarkioGuitar503479Ronnie KranckRecorded By889701Pauli GranfeltViolin598091Tapio RautavaaraVocals12-23Jäljet Jängällä3:02598091Tapio Rautavaara593883Kalevi NyqvistArranged By1348172Erkki SeppäBass310372Unto Haapa-AhoClarinet869629Usko KemppiComposed By, Lyrics By593883Kalevi NyqvistConductor, Accordion932061Erkki ValasteDrums310373Juhani AaltonenFlute1277431Raimo SarkioGuitar503479Ronnie KranckRecorded By889701Pauli GranfeltViolin598091Tapio RautavaaraVocals12-24Joiku Kiilopäälle2:45598091Tapio Rautavaara593883Kalevi NyqvistArranged By540751Martti MetsäketoBass, Backing Vocals869629Usko KemppiComposed By, Lyrics By593883Kalevi NyqvistConductor, Accordion32482Matti OilingDrums522918Pentti LasanenFlute, Backing Vocals1162431Tommy NordströmGuitar503479Ronnie KranckRecorded By653589Pentti PalmuStrings, Cello592186Ahti PilviStrings, Viola592183Jouni HeinonenStrings, Violin653582Juhani HomanenStrings, Violin16232821Kaarina PunnaStrings, Violin598091Tapio RautavaaraVocals1973-197913-1Isoisän Olkihattu [1970-luvun Versio]3:28598091Tapio Rautavaara355Unknown ArtistArranged By598091Tapio RautavaaraComposed By, Lyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals13-2Kultahäät3:02598091Tapio Rautavaara542810Aaro KurkelaAccordion1172896Pentti VuosmaaBass791643Rauno LehtinenComposed By, Arranged By540724Kullervo LinnaConductor, Drums522918Pentti LasanenFlute540727Ingmar EnglundGuitar698043Jorma IkävalkoLyrics By1158488Kaarlo ValkamaViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals13-3Heila Heinolasta2:44598091Tapio Rautavaara542810Aaro KurkelaAccordion1158488Kaarlo ValkamaArranged By1172896Pentti VuosmaaBass522918Pentti LasanenClarinet589906Toivo KärkiComposed By540724Kullervo LinnaConductor, Drums540727Ingmar EnglundGuitar789173Pauli SalonenLyrics By1158488Kaarlo ValkamaViolin889701Pauli GranfeltViolin598091Tapio RautavaaraVocals13-4Kultainen Nuoruus2:20598091Tapio Rautavaara593883Kalevi NyqvistArranged By540751Martti MetsäketoBass540724Kullervo LinnaComposed By593883Kalevi NyqvistConductor, Accordion591085Ilpo KallioDrums485405Taisto WesslinGuitar1738506Tapio LahtinenTapio "Kullervo" LahtinenLyrics By791643Rauno LehtinenViolin598091Tapio RautavaaraVocals13-5Kapakan Pikkuinen Liisi3:24598091Tapio Rautavaara542810Aaro KurkelaAccordion631047Paul FagerlundArranged By540751Martti MetsäketoBass869629Usko KemppiComposed By, Lyrics By631047Paul FagerlundConductor591085Ilpo KallioDrums485405Taisto WesslinGuitar773467Pentti NevalainenViolin791643Rauno LehtinenViolin598091Tapio RautavaaraVocals13-6Uralin Pihlaja = Ural'skaja Rjabninuska3:48598091Tapio Rautavaara593883Kalevi NyqvistArranged By258645Heikki VirtanenHeikki "Häkä" VirtanenBass390182Hannu SaxelinClarinet1382326Евгений РодыгинEvgenij RodyginComposed By593883Kalevi NyqvistConductor, Accordion32482Matti OilingDrums592253Raimo RoihaElectric Piano548941Reijo LehtovirtaFlute565694Olle WibergGuitar1403205Михаил ПилипенкоMikhail PilipenkoLyrics By [Original]592250Heikki LaurilaMandolin1174166Veikko VallasTranslated By [Finnish]598091Tapio RautavaaraVocals13-7Lehdetön Puu2:46598091Tapio Rautavaara593883Kalevi NyqvistArranged By540751Martti MetsäketoBass1013244Timo VuoriComposed By593883Kalevi NyqvistConductor, Accordion591085Ilpo KallioDrums485405Taisto WesslinGuitar1013245AnnuliLyrics By791643Rauno LehtinenViolin598091Tapio RautavaaraVocals13-8Unohtumaton Ilta = Podmoskovnye Vechera2:39598091Tapio Rautavaara593883Kalevi NyqvistArranged By258645Heikki VirtanenHeikki "Häkä" VirtanenBass390182Hannu SaxelinClarinet748479Василий Соловьев-СедойVasilij Solovjov-SedoyComposed By593883Kalevi NyqvistConductor, Accordion32482Matti OilingDrums592253Raimo RoihaElectric Piano548941Reijo LehtovirtaFlute565694Olle WibergGuitar644692Михаил МатусовскийMikhail MatusovskijLyrics By [Original]592250Heikki LaurilaMandolin1441078Kristiina (2)Translated By [Finnish]598091Tapio RautavaaraVocals13-9Soittajan Kaipuu3:22598091Tapio Rautavaara542810Aaro KurkelaAccordion540751Martti MetsäketoBass1476564Viljo VesterinenComposed By631047Paul FagerlundConductor591085Ilpo KallioDrums592250Heikki LaurilaGuitar1013245AnnuliLyrics By598091Tapio RautavaaraVocals13-10Rakastan Sinua, Elämä = Ja Ljublju Tebja, Zhizn3:51598091Tapio Rautavaara593883Kalevi NyqvistArranged By1348172Erkki SeppäBass390182Hannu SaxelinClarinet811757Эдуард КолмановскийEduard KolmanovskijComposed By593883Kalevi NyqvistConductor, Accordion32482Matti OilingDrums548941Reijo LehtovirtaFlute592250Heikki LaurilaGuitar820401Константин ВаншенкинKonstantin VanshenkinLyrics By [Original]789173Pauli SalonenTranslated By [Finnish]598091Tapio RautavaaraVocals13-11Kotikoivuni Mun2:58598091Tapio Rautavaara593883Kalevi NyqvistArranged By310368Ilkka WillmanBass390182Hannu SaxelinClarinet589906Toivo KärkiComposed By598074Kai HyttinenConductor593883Kalevi NyqvistConductor, Accordion591085Ilpo KallioDrums548941Reijo LehtovirtaFlute386326Antero JakoilaGuitar7290309Kirsti LaitinenLyrics By485405Taisto WesslinMandolin631043Antti HyvärinenPiano598091Tapio RautavaaraVocals13-12Minne Tuuli Kuljettaa2:11598091Tapio Rautavaara593883Kalevi NyqvistArranged By310368Ilkka WillmanBass390182Hannu SaxelinClarinet589906Toivo KärkiComposed By598074Kai HyttinenConductor593883Kalevi NyqvistConductor, Accordion591085Ilpo KallioDrums548941Reijo LehtovirtaFlute386326Antero JakoilaGuitar485405Taisto WesslinGuitar637472Juha VainioLyrics By631043Antti HyvärinenPiano791643Rauno LehtinenViolin598091Tapio RautavaaraVocals13-13Äidin Syntymäpäivä2:37598091Tapio Rautavaara593883Kalevi NyqvistArranged By540751Martti MetsäketoBass589906Toivo KärkiComposed By593883Kalevi NyqvistConductor, Accordion591085Ilpo KallioDrums485405Taisto WesslinGuitar562947Reino HelismaaLyrics By791643Rauno LehtinenViolin598091Tapio RautavaaraVocals13-14Sokeripala = Felednelek2:44598091Tapio Rautavaara542810Aaro KurkelaAccordion593883Kalevi NyqvistArranged By589906Toivo KärkiArranged By540751Martti MetsäketoBass3755237Dóczy JózsefJozsef DoczyComposed By, Lyrics By [Original]598074Kai HyttinenConductor631047Paul FagerlundConductor, Electric Piano591085Ilpo KallioDrums592250Heikki LaurilaGuitar1493410Evert SuonioTranslated By [Finnish; 1 & 3 Verses]562947Reino HelismaaTranslated By [Finnish; 2 & 4 Verses]773467Pentti NevalainenViolin598091Tapio RautavaaraVocals13-15Elämäni Vuodet3:11598091Tapio Rautavaara593883Kalevi NyqvistArranged By310368Ilkka WillmanBass390182Hannu SaxelinClarinet589906Toivo KärkiComposed By598074Kai HyttinenConductor593883Kalevi NyqvistConductor, Accordion591085Ilpo KallioDrums485405Taisto WesslinGuitar1158515A. AleksiLyrics By791643Rauno LehtinenViolin598091Tapio RautavaaraVocals13-16Korttipakka4:29598091Tapio Rautavaara592253Raimo RoihaAccordion631047Paul FagerlundArranged By540731Irma TapioBacking Vocals1135557Kai LindBacking Vocals565710Maija HapuojaBacking Vocals540751Martti MetsäketoBacking Vocals602873Monica AspelundBacking Vocals310368Ilkka WillmanBass592228Jaakko SaloComposed By631047Paul FagerlundConductor, Organ, Electric Piano485405Taisto WesslinGuitar2561060Seppo VirtanenLyrics By592250Heikki LaurilaMandolin, Guitar591085Ilpo KallioPercussion319615Markku JohanssonTrumpet598091Tapio RautavaaraVocals, Speech13-17Sen Verran Tiedän = Maintenant Je Sais2:58598091Tapio Rautavaara631047Paul FagerlundArranged By540731Irma TapioBacking Vocals1135557Kai LindBacking Vocals565710Maija HapuojaBacking Vocals540751Martti MetsäketoBacking Vocals602873Monica AspelundBacking Vocals310368Ilkka WillmanBass644068Philip GreenComposed By631047Paul FagerlundConductor, Organ, Piano389044Tapani IkonenTapani "Nappi" IkonenDrums592250Heikki LaurilaGuitar629700Jean-Loup DabadieLyrics By [Original]591085Ilpo KallioPercussion637472Juha VainioTranslated By [Finnish]598091Tapio RautavaaraVocals, Speech13-18Oikeat Mitalit Näkyvät Vain Saunassa2:51598091Tapio Rautavaara548941Reijo LehtovirtaArranged By258645Heikki VirtanenHeikki "Häkä" VirtanenBass637472Juha VainioComposed By, Lyrics By548941Reijo LehtovirtaConductor, Flute, Clarinet711355Antero PäiväläinenAnde PäiväläinenDrums386326Antero JakoilaGuitar631047Paul FagerlundPiano355Unknown ArtistTrumpet, Trombone598091Tapio RautavaaraVocals13-19Köyhän Kyynel3:05598091Tapio Rautavaara258645Heikki VirtanenHeikki "Häkä" VirtanenBass548941Reijo LehtovirtaComposed By, Arranged By548941Reijo LehtovirtaConductor, Flute711355Antero PäiväläinenAnde PäiväläinenDrums386326Antero JakoilaGuitar1176054Aila-Anneli NymanLyrics By592250Heikki LaurilaMandolin631047Paul FagerlundOrgan598091Tapio RautavaaraVocals13-20Soittajan Rakkaus = V Zemljanke3:00598091Tapio Rautavaara492336Jaakko BorgArranged By258645Heikki VirtanenHeikki "Häkä" VirtanenBass548941Reijo LehtovirtaClarinet1405947Константин ЛистовKonstantin ListovComposed By1183948Taito VainioConductor, Accordion591085Ilpo KallioDrums592250Heikki LaurilaGuitar980566Алексей СурковAleksei SurkovLyrics By [Original]789173Pauli SalonenTranslated By [Finnish]346398Juhani TiainenViolin2044057Pekka KariViolin346372Heikki HämäläinenViolin, Mandolin598091Tapio RautavaaraVocals13-21En Kerro, Kenestä Uneksin = Ne Skazhu2:28598091Tapio Rautavaara1183948Taito VainioArranged By258645Heikki VirtanenHeikki "Häkä" VirtanenBass805282Матвей БлантерMatvej BlanterComposed By1183948Taito VainioConductor, Accordion591085Ilpo KallioDrums548941Reijo LehtovirtaFlute485405Taisto WesslinGuitar775992Евгений ЕвтушенкоJevgenij JevtushenkoLyrics By [Original]789173Pauli SalonenTranslated By [Finnish]346398Juhani TiainenViolin2044057Pekka KariViolin346372Heikki HämäläinenViolin, Mandolin598091Tapio RautavaaraVocals13-22Vanha Kurki = Starih Zhuravl3:18598091Tapio Rautavaara1183948Taito VainioArranged By258645Heikki VirtanenHeikki "Häkä" VirtanenBass548941Reijo LehtovirtaClarinet1748805Gennadi PodelskiGennadi PodelskijComposed By1183948Taito VainioConductor, Accordion591085Ilpo KallioDrums592250Heikki LaurilaGuitar2180534А. ГусевAleksandr GusevLyrics By [Original]789173Pauli SalonenTranslated By [Finnish]346398Juhani TiainenViolin2044057Pekka KariViolin346372Heikki HämäläinenViolin, Mandolin598091Tapio RautavaaraVocals13-23Mitä Minä Tein3:41598091Tapio Rautavaara593883Kalevi NyqvistAccordion853392Pekka HelinBass589906Toivo KärkiComposed By, Arranged By522918Pentti LasanenConductor, Flute, Alto Saxophone389044Tapani IkonenTapani "Nappi" IkonenDrums892049Janne LouhivuoriGuitar1194420Helena EevaLyrics By637472Juha VainioLyrics By446125Kassu HalonenPiano, Organ351876Tom VuoriRecorded By598091Tapio RautavaaraVocals13-24En Päivääkään Vaihtaisi Pois [2]3:18598091Tapio Rautavaara593883Kalevi NyqvistAccordion522918Pentti LasanenArranged By853392Pekka HelinBass1212699Reino MarkkulaComposed By522918Pentti LasanenConductor, Flute, Clarinet389044Tapani IkonenTapani "Nappi" IkonenDrums892049Janne LouhivuoriGuitar637472Juha VainioLyrics By446125Kassu HalonenPiano, Electric Piano351876Tom VuoriRecorded By598091Tapio RautavaaraVocalsLastenlaulut / Joululaulut14-1Nukku-Matti3:37598091Tapio Rautavaara,2878009Peppina Von DeringerPeppinaJa6051184Pertti (2)698040Georg MalmsténComposed By, Arranged By965045Roine Richard RyynänenR. R. RyynänenLyrics By2547955Decca-OrkesteriOrchestra1576721Ensti PohjolaOrchestra, Cello1415771Leo KähkönenOrchestra, Clarinet698040Georg MalmsténOrchestra, Conductor7060994Juho AlvasOrchestra, Flute1415778Veikko TamminenOrchestra, Piano346373Jorma YlönenOrchestra, Violin889713Olavi HaapalainenOrchestra, Violin889701Pauli GranfeltOrchestra, Violin2878009Peppina Von DeringerPeppinaVocals6051184Pertti (2)Vocals598091Tapio RautavaaraVocals14-2Hämä-hämä-häkki [1951 Versio]2:48598091Tapio Rautavaara698040Georg MalmsténArranged By151641Traditionaltrad.Composed By, Lyrics By2547955Decca-OrkesteriOrchestra1576721Ensti PohjolaOrchestra, Cello1415771Leo KähkönenOrchestra, Clarinet698040Georg MalmsténOrchestra, Conductor7060994Juho AlvasOrchestra, Flute1415778Veikko TamminenOrchestra, Piano346373Jorma YlönenOrchestra, Violin889713Olavi HaapalainenOrchestra, Violin889701Pauli GranfeltOrchestra, Violin598091Tapio RautavaaraVocals14-3Menninkäisten Maa = Bergakungens Land3:10598091Tapio Rautavaara355Unknown ArtistArranged By713851Ulf Peder OlrogComposed By, Lyrics By [Original]592252Erik LindströmConductor355Unknown ArtistMusician573702SaukkiTranslated By [Finnish]598091Tapio RautavaaraVocals14-4Sininen Uni3:28598091Tapio Rautavaara852712George de GodzinskyArranged By598091Tapio RautavaaraComposed By833306P. MustapääLyrics By3096798Triola-OrkesteriTriola-KonserttiorkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals14-5Lastentaru Takkavalkealla = En Barnsaga Vid Brasan3:10598091Tapio Rautavaara852712George de GodzinskyArranged By693593Oskar MerikantoComposed By852712George de GodzinskyConductor1926516Karl AsplundLyrics By [Original]355Unknown ArtistMusician2947150Ilta KoskimiesTranslated By [Finnish]598091Tapio RautavaaraVocals14-6Tuku Tuku Lampaitani0:47598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass1456378Olli SuolahtiComposed By, Lyrics By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-7Kellot1:05598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad.Composed By, Lyrics By492336Jaakko BorgConductor592250Heikki LaurilaGuitar32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-8Kertun Syntymäpäivä1:48598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass598091Tapio RautavaaraComposed By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar740086Aale TynniLyrics By [Poem]32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-9Kissa Ja Hiiri1:00598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass1772432Aksel TörnuddComposed By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar1725001Julius KrohnLyrics By32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-10Työ Ja Leikki0:48598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass151641Traditionaltrad.Composed By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar1326887Maija KonttinenLyrics By32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-11Telefooni Afrikassa1:11598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad.Composed By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar1147305Arvid LydeckenLyrics By32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-12Kellosepän Laulu = Urmakarvisan0:55598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass151641Traditionaltrad.Composed By492336Jaakko BorgConductor592250Heikki LaurilaGuitar662608Zacharias TopeliusLyrics By [Original Poem]32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]355Unknown ArtistTranslated By [Finnish]598091Tapio RautavaaraVocals14-13Soittajapaimen1:26598091Tapio Rautavaara589906Toivo KärkiArranged By550031Heikki AnnalaBass151641Traditionaltrad.Composed By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar151641Traditionaltrad.Lyrics By [Verse 1]1326887Maija KonttinenLyrics By [Verses 2-4]32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-14Hämä-hämä-häkki [1969 Versio]2:22598091Tapio Rautavaara589906Toivo KärkiArranged By151641Traditionaltrad.Composed By492336Jaakko BorgConductor251605Esa PethmanFlute592250Heikki LaurilaGuitar598091Tapio RautavaaraLyrics By [Verse 4]151641Traditionaltrad.Lyrics By [Verses 1-3 & 5]32482Matti OilingPercussion254115Erkki HyvönenRecorded By [Either]503479Ronnie KranckRecorded By [Either]598091Tapio RautavaaraVocals14-15Irman Laulu Joulupukille = Drink To Me Only With Thine Eyes3:03598091Tapio Rautavaara852712George de GodzinskyArranged By151641Traditionaltrad. (irlantilainen kansansävelmä)Composed By598091Tapio RautavaaraLyrics By3096798Triola-OrkesteriTriola-konserttiorkesteriOrchestra852712George de GodzinskyOrchestra, Conductor355Unknown ArtistOrchestra, Musician598091Tapio RautavaaraVocals14-16Sylvian Joululaulu = Sylvias Julvisa3:03598091Tapio Rautavaara1772434Mikko Von DeringerArranged By1024298Karl CollanComposed By662608Zacharias TopeliusLyrics By [Original Poem]3096798Triola-OrkesteriOrchestra1485430Mauno MaunolaOrchestra, Bass1772434Mikko Von DeringerOrchestra, Conductor, Piano540727Ingmar EnglundOrchestra, Guitar355Unknown ArtistOrchestra, Musician [Also]592252Erik LindströmOrchestra, Vibraphone1024296Martti KorpilahtiTranslated By [Finnish]598091Tapio RautavaaraVocals14-17Tonttujen Jouluyö = Tomtarnas Julnatt3:09598091Tapio Rautavaara1772434Mikko Von DeringerArranged By1738508Vilhelm Sefve-SvenssonWilhelm SefweComposed By1663613Alfred SmedbergLyrics By [Original]3096798Triola-OrkesteriOrchestra1772434Mikko Von DeringerOrchestra, Conductor, Piano355Unknown ArtistOrchestra, Musician [Also]8068940Sihvo V. JuhaniV.SihvoTranslated By [Finnish]598091Tapio RautavaaraVocals14-18Markun Jouluaamu2:092267391Markku Söderström&598091Tapio Rautavaara573704Harry BergströmArranged By598091Tapio RautavaaraComposed By573704Harry BergströmConductor16199278Liisa RaunioLyrics By355Unknown ArtistMusician2267391Markku SöderströmVocals598091Tapio RautavaaraVocals14-19Joululaulu Pikku Tuulalle2:52598091Tapio Rautavaara573704Harry BergströmComposed By, Arranged By573704Harry BergströmConductor869629Usko KemppiLyrics By355Unknown ArtistMusician598091Tapio RautavaaraVocals545594Provisual Oy4Record Company275406Air Chrysalis Scandinavia AB14Copyright (c)1269148Arcona Musikverlag14Copyright (c)269062Bonnier Music Publishing14Copyright (c)301000Bug Music Scandinavia14Copyright (c)95626Edition Wilhelm Hansen14Copyright (c)297108Elkan & Schildknecht14Copyright (c)301001EMI Catalogue Partner Scandinavia AB14Copyright (c)3492271Francis Salabert Editions14Copyright (c)300745Gehrmans Musikförlag14Copyright (c)365610Hans Busch Musikförlag AB14Copyright (c)296832Intersong-Förlagen AB14Copyright (c)1336101Lindström Erik Edition14Copyright (c)208790Manus14Copyright (c)337270Mørks Musikforlag14Copyright (c)356780Nils-Georgs Musikförlags AB14Copyright (c)343507Nordiska Musikförlaget14Copyright (c)280168Peermusic AB14Copyright (c)155176Populär14Copyright (c)282288Scandinavian Songs AB14Copyright (c)282465Shapiro Bernstein Scandinavia14Copyright (c)1348299Sony/ATV Music Publishing Scandinavia KB14Copyright (c)866522Sylvain Edition AB14Copyright (c)298524Universal / MCA Music Publishing Scandinavia AB14Copyright (c)282404Universal / MGB Scandinavia AB14Copyright (c)300998Universal/Polygram Music Publishing14Copyright (c)282348Universal / Reuter & Reuter Förlag14Copyright (c)268298Warner/Chappell Music Finland14Copyright (c)924460Warner Chappell Music Scandinavia14Copyright (c)275405Warner/Chappell Music Scandinavia AB14Copyright (c)687874WCMF Serious Catalogue14Copyright (c)297981Wiener Bohème Verlag GmbH14Copyright (c)112757Warner Music Finland Oy21Published By976374Akku-studio23Recorded At364449Finnlevy Studios23Recorded At121076Finnvox23Recorded At976375Kirja-studio23Recorded At1912221Rytmi-studio23Recorded At363090Scandia Studio23Recorded At268312Takomo Studiot23Recorded At267706Chartmakers29Mastered At1412710Suomen Kuvapalvelu33Designed At + +23755Miles DavisThe Complete Recordings 1945 - 19602769555InterfotoPhotography By [Frontpicture]AlbumStereoMonoCD-ROMCompilationJazzEurope2011On back of box: +34 CD-Set +incl. Booklet on CD-ROM +with all recording dates +Made in the EU + +Errors on CD covers: +3-18 - East Of The Sun (West Of The Monn) - also in PDF +9-5 CCharlie Parker not Charlie Parker + +The booklet on the CD-ROM also includes the location, date, musicians and their instrumentation for each track. It identifies CD34 as a 'Bonus'. + +Changes from booklet: +3-11 <> 'Big Chief' and 'Russell Moore' have separate Trombone credits. They are combined in Tracklist. +3-19 <> Instrument not identified for Roy Haynes. 'Drums' assumed in Tracklist +CDs 7 & 8 <> Some Tracks with the same location, date and musicians have different Artists - 'Original Charlie Parker Quintet' or 'Charlie Parker All Stars'. The Artist as per the booklet is used. +12-4 to 12-9 <> Has 'Bass' for Connie Kay but should be 'Drums' +CD33 <> 'Drums' Credits have various errors. Philly Joe Jones is correctly identified on 33-3, 33-4 & 33-9 and an ANV added. All others have 'Philly Jimmy Cobb'. Using [r7154297], 33-1, 33-5 to 33-7, 33-12 & 33-13 should be Philly Joe Jones; 33-2, 33-8, 33-10 & 33-11 should be Jimmy Cobb. The correct drummer is identified on Tracklist, but without adding an ANV which may have confused the actual drummer. + +Recording locations and dates: +1-1 to 1-4 <> WOR Studios, Broadway, New York, 24.04.45 +1-5 to 1-8 <> Radio Recorders, Hollywood, 05.10.46 +1-9 to 1-12 <> Radio Recorders, Hollywood, 18.10.46 +1-13 to 1-16 <> New York City, 07.01.47 +1-17 to 1-20 <> New York City, Juni [June] 1947 +2-1 to 2-5 <> Royal Roost, New York City, 04.09.48 +2-6 to 2-9 <> Royal Roost, New York City, 18.09.48 +2-10 to 2-13 <> Royal Roost, New York City, 25.09.48 +3-1, 3-2 <> New York City, 03.01.49 +3-3 to 3-6 <> Royal Roost, New York City, 19.02.49 +3-7 to 3-10 <> New York City, 19.04.49 +3-11 <> Festival International De Jazz All Stars, Paris, 19.05.49 +3-12 to 3-14 <> Columbia Studios, New York City, 18.05.50 +3-15 to 3-18 <> Columbia Studios, New York City, 19.05.50 +3-19 <> Apex Studios, New York City, 17.01.51 +3-20 to 3-23 <> Apex Studios, New York City, 08.03.51 +3-24 <> Studios, New York City, 05.10.51 +4-1 to 4-7 <> WOR Studios, Broadway, New York, 26.11.45 +4-8 to 4-17 <> Radio Recorders, Hollywood, 28.03.46 +4-18 to 5-7 <> Harry Smith Studios, New York City, 08.05.47 +5-8 to 5-15 <> Harry Smith Studios, New York, 14.08.47 +5-16 to 6-5 <> WOR Studios, New York, 28.10.47 +6-6 to 6-15 <> WOR Studios, New York, 04.11.47 +6-16 to 7-9 <> WOR Studios, New York, 17.12.47 +7-10 to 7-16 <> United Sound Studios, Detroit 21.12.47 +7-17 to 8-4 <> Harry Smith Studios, New York, 18.09.48 +8-5 to 8-14 <> Harry Smith Studios, New York, 24.09.48 +8-15 to 8-18 <> New York 17.01.51 +9-1, 9-2 <> Royal Roost, New York, 04.09.48 +9-3 to 9-6 <> Royal Roost, New York, 11.12.48 +9-7, 9-8 <> Royal Roost, New York, 12.12.48 +9-9 to 9-11 <> Royal Roost, New York, 18.12.48 +10-1 to 10-13 <> Onyx Club, New York City, 06. Jul 48 +11-1 to 11-5 <> WNYC Radio Broadcast, Birdland, New York City, 18.02.50 +11-6 to 11-9 <> Birdland, New York City, 17.02.51 +11-10 to 11-12 <> Birdland, New York City, 02.06.51 +12-1 to 12-3 <> Birdland, New York City, 29.09.51 +12-4, 12-5 <> Birdland, New York City, 02.05.52 +12-6 to 12-9 <> Birdland, New York City, 03.05.52 +13-1 to 13-4, 13-6, 13-11, 14-4, 14-5, 14-10 <> WOR Studios, New York City, 20.04.53 +13-5, 13-7 to 13-10, 13-12, 14-3, 14-6 <> WOR Studios, New York City, 09.05.52 +14-1, 14-2, 14-7 to 14-9, 14-11 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 06.03.54 +15-1, 15-2, 15-5, 15-7 <> New York City, 21.01.49 +15-3, 15-6, 15-9, 15-12 <> New York City, 09.03.50 +15-4, 15-8, 15-10, 15-11 <> New York City, 22.04.49 +16-1 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 03.04.54 +16-2, 16-3, 16-5 <> Beltone Studios, New York City, 15.03.54 +16-4, 16-6 to 16-8 <> WOR Studios, New York City 19.05.53 +16-9, 16-10, 16-12, 16-13, 29-1, 29-2 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 24.12.54 +16-11<> Rudy Van Gelder Studio, Hackensack, New Jersey, 26.10.56 +17-1 to 17-6 <> Rudy Van Gelder Studio, Hackensack, New Jersey 07.06.55 +17-7 to 17-10 <> Audio-Video Recording, New York City 09.07.55 +18-1 to 18-4 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 05.08.55 +18-5 to 18-10 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 16.11.55 +19-1 to 19-5 <> Apex Studios, New York City, 05.10.51 +19-6 to 19-9 <> Beltone Studios, New York City, 19.02.53 +19-10 to 19-14 <> Apex Studios, New York City, 17.01.51 +20-1 to 20-4 <> WOR Studios, New York City, 30.01.53 +20-5 to 20-7 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 16.03.56 +21-1, 21-3, 21-8 <> Columbia 30th Street Studios, New York, 10.09.56 +21-2, 21-7 <> Columbia Studio D, New York, 26.10.55 +21-4 to 21-6 <> Columbia 30th Street Studios, New York, 05.06.56 +22-1 to 22-8 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 26.10.56 +22-9 <> 11.05.56 +22-10 to 24-6 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 11.05.56 +25-1, 25-6, 25-7 <> Columbia 30th Street Studios, New York City, 23.05.57 +25-2, 25-3 <> Columbia 30th Street Studios, New York City, 06.05.57 +25-4, 25-5 <> Columbia 30th Street Studios, New York City, 10.05.57 +25-8 to 25-10 <> Columbia 30th Street Studios, New York City, 23.05.57 +26-1 to 21-6 <> Columbia 30th Street Studios, New York City, 04.02.58 +27-1 to 27-3 <> Columbia 30th Street Studios, New York, 2. März [March] 1959 +27-4, 27-5 <> Columbia 30th Street Studios, New York, 6. April 1959 +28-1 <> Columbia 30th Street Studios, New York 20.11.59 +28-2 to 28-5 <> Columbia 30th Street Studios, New York +29-3 to 29-7 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 29.06.54 +30-1 to 30-10 <> Le Poste Parisien Studios, Paris, 04. Dez [Dec] 57 +30-11 to 30-13 <> Columbia 30th Street Studios, New York, 26, Mai [May] 1958 +31-1 to 31-4 <> The Plaza Hotel, New York, 09.09.58 +32-1 to 32-10 <> Paris, 08.05.49 +33-1, 33-5 to 33-7, 33-13 <> Columbia 30th Street Studios, New York, 4. August 1958 +33-2, 33-8, 33-10, 33-11 <> Columbia 30th Street Studios, New York, 29. July 1958 +33-3, 33-4, 33-9 <> Columbia 30th Street Studios, New York22. July 1958 +33-12 <> Columbia 30th Street Studios, New York, 18. August 1958 +33-14, 33-15 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 29. Juni [June] 1954 +33-16, 33-17 <> Rudy Van Gelder Studio, Hackensack, New Jersey, 24. Dezember [December] 1954 +34-1, 34-6, 34-7, 34-9 <> New York, 25. June 1958 +34-2, 34-4, 34-8, 34-10 <> New York, 27. June 1958 +34-3, 34-5, 34-11 <> New York, 30. June 1958 + +CD Total time: +CD1 - 59:21 +CD2 - 56:09 +CD3 - 79:50 +CD4 - 62:37 +CD5 - 67:42 +CD6 - 63:34 +CD7 - 47:39 +CD8 - 46:42 +CD9 - 47:09 +CD10 - 43:03 +CD11 - 69:18 +CD12 - 55:31 +CD13 - 45:21 +CD14 - 44:30 +CD15 - 35:55 +CD16 - 78:12 +CD17 - 62:39 +CD18 - 65:13 +CD19 - 68:34 +CD20 - 43:35 +CD21 - 47:09 +CD22 - 70:01 +CD23 - 42:18 +CD24 - 40:10 +CD25 - 37:21 +CD26 - 47:39 +CD27 - 45:53 +CD28 - 41:35 +CD29 - 46:08 +CD30 - 46:41 +CD31 - 40:24 +CD32 - 45:44 +CD33 - 77:20 +CD34 - 44:33 +Needs Vote0Early Miles Vol. 11-1That's The Stuff You Gotta Watch2:52311738Rubberlegs WilliamsWith2048947Herbie Fields And His OrchestraHerbie Fields' Orchestra263795Leonard GaskinBass1838242Herbie FieldsClarinet, Tenor Saxophone [Tenor Sax]1005209Eddie NicholsonDrums265682Al CaseyGuitar415792Teddy BrannonPiano23755Miles DavisTrumpet311738Rubberlegs WilliamsVocals [Vocal]Edgar Battle/Gail Meredith/Buck Ram/Noble SissleWritten By415783Buck RamWritten-By423690Edgar BattleWritten-By1283145Gail MeredithWritten-By307453Noble SissleWritten-By1-2Pointless Mama Blues3:17311738Rubberlegs WilliamsWith2048947Herbie Fields And His OrchestraHerbie Fields' Orchestra263795Leonard GaskinBass1838242Herbie FieldsClarinet, Tenor Saxophone [Tenor Sax]1005209Eddie NicholsonDrums265682Al CaseyGuitar415792Teddy BrannonPiano23755Miles DavisTrumpet311738Rubberlegs WilliamsVocals [Vocal]Teddy Reig/Rubberlegs WilliamsWritten By311738Rubberlegs WilliamsWritten-By270650Teddy ReigWritten-By1-3Deep Sea Blues3:15311738Rubberlegs WilliamsWith2048947Herbie Fields And His OrchestraHerbie Fields' Orchestra263795Leonard GaskinBass1838242Herbie FieldsClarinet, Tenor Saxophone [Tenor Sax]1005209Eddie NicholsonDrums265682Al CaseyGuitar415792Teddy BrannonPiano23755Miles DavisTrumpet311738Rubberlegs WilliamsVocals [Vocal]Teddy Reig/Rubberlegs WilliamsWritten By311738Rubberlegs WilliamsWritten-By270650Teddy ReigWritten-By1-4Bring It On Home2:50311738Rubberlegs WilliamsWith2048947Herbie Fields And His OrchestraHerbie Fields' Orchestra263795Leonard GaskinBass1838242Herbie FieldsClarinet, Tenor Saxophone [Tenor Sax]1005209Eddie NicholsonDrums265682Al CaseyGuitar415792Teddy BrannonPiano23755Miles DavisTrumpet311738Rubberlegs WilliamsVocals [Vocal]Teddy Reig/Rubberlegs WilliamsWritten By311738Rubberlegs WilliamsWritten-By270650Teddy ReigWritten-By1-5Oo Bop Sh'bam3:04320609Billy Eckstine And His OrchestraBilly Eckstine & His Orchestra783057John CobbsAlto Saxophone [Alto Sax]135930Sonny StittAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano783060Arthur SammonsTenor Saxophone [Tenor Sax]45107Gene AmmonsTenor Saxophone [Tenor Sax]774883Alfred "Chippy" OutcaltChippy OutcaltTrombone774850Gerald Valentine (2)Gerald VelentineTrombone783054Walter KnoxTrombone453854Hobart DotsonTrumpet548101King KolaxTrumpet597589Leonard HawkinsTrumpet23755Miles DavisTrumpet311744Billy EckstineValve Trombone, Vocals [Vocal]64694Dizzy GillespieWritten-By322262Gil FullerWritten-By913943Jay RobertsWritten-By1-6I Love The Loveliness Of You2:43320609Billy Eckstine And His OrchestraBilly Eckstine & His Orchestra783057John CobbsAlto Saxophone [Alto Sax]135930Sonny StittAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano783060Arthur SammonsTenor Saxophone [Tenor Sax]45107Gene AmmonsTenor Saxophone [Tenor Sax]774883Alfred "Chippy" OutcaltChippy OutcaltTrombone774850Gerald Valentine (2)Gerald VelentineTrombone783054Walter KnoxTrombone453854Hobart DotsonTrumpet548101King KolaxTrumpet597589Leonard HawkinsTrumpet23755Miles DavisTrumpet311744Billy EckstineValve Trombone, Vocals [Vocal]1016904Bob SchellWritten-By2691122Kirby WalkerWritten-By1-7In The Still Of The Night2:56320609Billy Eckstine And His OrchestraBilly Eckstine & His Orchestra783057John CobbsAlto Saxophone [Alto Sax]135930Sonny StittAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano783060Arthur SammonsTenor Saxophone [Tenor Sax]45107Gene AmmonsTenor Saxophone [Tenor Sax]774883Alfred "Chippy" OutcaltChippy OutcaltTrombone774850Gerald Valentine (2)Gerald VelentineTrombone783054Walter KnoxTrombone453854Hobart DotsonTrumpet548101King KolaxTrumpet597589Leonard HawkinsTrumpet23755Miles DavisTrumpet311744Billy EckstineValve Trombone, Vocals [Vocal]264026Cole PorterWritten-By1-8Jelly Jelly3:19320609Billy Eckstine And His OrchestraBilly Eckstine & His Orchestra783057John CobbsAlto Saxophone [Alto Sax]135930Sonny StittAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano783060Arthur SammonsTenor Saxophone [Tenor Sax]45107Gene AmmonsTenor Saxophone [Tenor Sax]774883Alfred "Chippy" OutcaltChippy OutcaltTrombone774850Gerald Valentine (2)Gerald VelentineTrombone783054Walter KnoxTrombone453854Hobart DotsonTrumpet548101King KolaxTrumpet597589Leonard HawkinsTrumpet23755Miles DavisTrumpet311744Billy EckstineValve Trombone, Vocals [Vocal]311744Billy EckstineWritten-By257353Earl HinesWritten-By1-9Don't Sing The Blues2:54317852Earl Coleman251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano45107Gene AmmonsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet317852Earl ColemanVocals [Vocal]317852Earl ColemanWritten-By1-10Don't Explain To Me Baby2:55317852Earl Coleman251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano45107Gene AmmonsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet317852Earl ColemanVocals [Vocal]317852Earl ColemanWritten-By1-11Baby, Won't You Make Up3:123101634Ann Baker251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano45107Gene AmmonsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet3101634Ann BakerVocals [Vocal]3101634Ann BakerWritten-By1-12I've Always Got The Blues3:093101634Ann Baker251780Tommy PotterBass29977Art BlakeyDrums774859Connie WainwrightGuitar636144Linton GarnerPiano45107Gene AmmonsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet3101634Ann BakerVocals [Vocal]3101634Ann BakerWritten-By1-13For Europeans Only2:43368181Illinois Jacquet And His Orchestra312929Jimmy PowellJimmy PowelAlto Saxophone [Alto Sax]334075Ray PerryAlto Saxophone [Alto Sax]372755Leo ParkerBaritone Saxophone [Baritone Sax]332585Al LucasBass372362Shadow WilsonDrums129365Bill DoggettPiano3742189Clay NicholasTenor Saxophone [Tenor Sax]257114Illinois JacquetTenor Saxophone [Tenor Sax]328747Dickie WellsTrombone307436Fred RobinsonTrombone2122871Gus ChappellTrombone314414Ted KellyTrombone309986Fats NavarroTrumpet309874Joe NewmanTrumpet774866Marion "Boonie" HazelMarion HazelTrumpet23755Miles DavisTrumpet257114Illinois JacquetVocals [Vocal]Tadd Dameron/Illinois JacquetWritten By257114Illinois JacquetWritten-By251783Tadd DameronWritten-By1-14Big Dog2:44368181Illinois Jacquet And His Orchestra312929Jimmy PowellJimmy PowelAlto Saxophone [Alto Sax]334075Ray PerryAlto Saxophone [Alto Sax]372755Leo ParkerBaritone Saxophone [Baritone Sax]332585Al LucasBass372362Shadow WilsonDrums342667Leonard FeatherPiano3742189Clay NicholasTenor Saxophone [Tenor Sax]257114Illinois JacquetTenor Saxophone [Tenor Sax]328747Dickie WellsTrombone307436Fred RobinsonTrombone2122871Gus ChappellGus ChapellTrombone314414Ted KellyTrombone309986Fats NavarroTrumpet309874Joe NewmanTrumpet774866Marion "Boonie" HazelMarion HazelTrumpet23755Miles DavisTrumpet257114Illinois JacquetVocals [Vocal]129365Bill DoggettBill DoggetWritten-By1-15You Left Me All Alone3:01368181Illinois Jacquet And His Orchestra312929Jimmy PowellJimmy PowelAlto Saxophone [Alto Sax]334075Ray PerryAlto Saxophone [Alto Sax]372755Leo ParkerBaritone Saxophone [Baritone Sax]332585Al LucasBass372362Shadow WilsonDrums129365Bill DoggettPiano3742189Clay NicholasTenor Saxophone [Tenor Sax]257114Illinois JacquetTenor Saxophone [Tenor Sax]328747Dickie WellsTrombone307436Fred RobinsonTrombone2122871Gus ChappellGus ChapellTrombone314414Ted KellyTrombone309986Fats NavarroTrumpet309874Joe NewmanTrumpet774866Marion "Boonie" HazelMarion HazelTrumpet23755Miles DavisTrumpet257114Illinois JacquetVocals [Vocal]129365Bill DoggettBill DoggetWritten-By1-16Jivin' With Jack The Bellboy2:50368181Illinois Jacquet And His Orchestra312929Jimmy PowellJimmy PowelAlto Saxophone [Alto Sax]334075Ray PerryAlto Saxophone [Alto Sax]372755Leo ParkerBaritone Saxophone [Baritone Sax]332585Al LucasBass372362Shadow WilsonDrums129365Bill DoggettPiano3742189Clay NicholasTenor Saxophone [Tenor Sax]257114Illinois JacquetTenor Saxophone [Tenor Sax]328747Dickie WellsTrombone307436Fred RobinsonTrombone2122871Gus ChappellGus ChapellTrombone314414Ted KellyTrombone309986Fats NavarroTrumpet309874Joe NewmanTrumpet774866Marion "Boonie" HazelMarion HazelTrumpet23755Miles DavisTrumpet257114Illinois JacquetVocals [Vocal]257114Illinois JacquetWritten-By1-17Bean-A-Re-Bop2:351514279Coleman Hawkins All Stars1208545Howard Johnson (6)Alto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums265629Hank JonesPiano251769Coleman HawkinsTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251769Coleman HawkinsVocals [Vocal]251769Coleman HawkinsWritten-By265629Hank JonesWritten-By1-18Isn't It Romantic3:051514279Coleman Hawkins All Stars1208545Howard Johnson (6)Alto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums265629Hank JonesPiano251769Coleman HawkinsTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251769Coleman HawkinsVocals [Vocal]604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By1-19The Way You Look Tonight2:501514279Coleman Hawkins All Stars1208545Howard Johnson (6)Alto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums265629Hank JonesPiano251769Coleman HawkinsTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251769Coleman HawkinsVocals [Vocal]301992Dorothy FieldsWritten-By166685Jerome KernWritten-By1-20Phantomesque2:581514279Coleman Hawkins All Stars1208545Howard Johnson (6)Alto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums265629Hank JonesPiano251769Coleman HawkinsTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251769Coleman HawkinsVocals [Vocal]251769Coleman HawkinsWritten-ByEarly Miles Vol. 22-1Why Do I Love You?3:44497768The Miles Davis NonetMiles Davis Nonet290874Al McKibbonBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn267675John Lewis (2)Piano329898Mike ZwerinTrombone23755Miles DavisTrumpet271029John BarberTuba284504Kenny HagoodKenny Pancho HagoodVocals [Vocal]939545Hammerstein-KernOscar Hammerstein II/Jerome KernWritten-By2-2Godchild5:53497768The Miles Davis NonetMiles Davis Nonet290874Al McKibbonBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn267675John Lewis (2)Piano [Pinao]329898Mike ZwerinTrombone23755Miles DavisTrumpet271029John BarberTuba261287George WallingtonWritten-By2-3S'Íl Vous Plait4:26497768The Miles Davis NonetMiles Davis Nonet290874Al McKibbonBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn267675John Lewis (2)Piano [Pinao]329898Mike ZwerinTrombone23755Miles DavisTrumpet271029John BarberTuba267675John Lewis (2)Written-By2-4Moon Dreams3:09497768The Miles Davis NonetMiles Davis Nonet290874Al McKibbonBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn267675John Lewis (2)Piano [Pinao]329898Mike ZwerinTrombone23755Miles DavisTrumpet271029John BarberTubaJohnny Mercer/Chummy MacGregorWritten By254885Chummy McGregorChummy MacGregorWritten-By164574Johnny MercerWritten-By2-5Hallucinations (aka Budo)2:56497768The Miles Davis NonetMiles Davis Nonet290874Al McKibbonBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn267675John Lewis (2)Piano [Pinao]329898Mike ZwerinTrombone23755Miles DavisTrumpet271029John BarberTuba29992Bud PowellWritten-By23755Miles DavisWritten-By2-6Move (Mood)2:33497768The Miles Davis NonetMiles Davis Nonet259091Denzil BestDenzil De Costa BestWritten-By2-7Moon Dreams3:42497768The Miles Davis NonetMiles Davis NonetJohnny Mercer/Chummy MacGregorWritten By254885Chummy McGregorChummy MacGregorWritten-By164574Johnny MercerWritten-By2-8Hallucinations (Budo)4:17497768The Miles Davis NonetMiles Davis Nonet29992Bud PowellWritten-By23755Miles DavisWritten-By2-9Darn That Dream4:18497768The Miles Davis NonetMiles Davis Nonet284504Kenny HagoodKenny Pancho HagoodVocals [Vocal]657340Eddie DelangeWritten-By255313Jimmy Van HeusenJames Van HeusenWritten-By2-1052nd Street Theme (The Broadway Theme)3:58262152The Miles Davis QuintetMiles Davis Quintet259092Lee KonitzAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet145256Thelonious MonkWritten-By2-11Half Nelson5:45262152The Miles Davis QuintetMiles Davis Quintet259092Lee KonitzAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By2-12You Go To My Head5:40262152The Miles Davis QuintetMiles Davis Quintet259092Lee KonitzAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet284504Kenny HagoodKenny Pancho HagoodVocals [Vocal]583502Haven GillespieWritten-By583506J. Fred CootsWritten-By2-13Chasin' The Bird5:43262152The Miles Davis QuintetMiles Davis Quintet259092Lee KonitzAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-ByEarly Miles Vol. 33-1Overtime4:33311056Metronome All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]314416Ernie CaceresBaritone Saxophone [Baritone Sax]314412Eddie SafranskiBass430829Buddy DeFrancoBuddy De FrancoClarinet [Clarinete]265354Shelly ManneDrums259088Billy BauerGuitar259086Lennie TristanoPiano262140Charlie VenturaTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone267186Kai WindingTrombone64694Dizzy GillespieTrumpet309986Fats NavarroTrumpet23755Miles DavisTrumpet300046Pete RugoloWritten-By3-2Victory Ball4:15311056Metronome All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]314416Ernie CaceresBaritone Saxophone [Baritone Sax]314412Eddie SafranskiBass430829Buddy DeFrancoBuddy De FrancoClarinet [Clarinete]265354Shelly ManneDrums259088Billy BauerGuitar259086Lennie TristanoPiano262140Charlie VenturaTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone267186Kai WindingTrombone64694Dizzy GillespieTrumpet309986Fats NavarroTrumpet23755Miles DavisTrumpetLenni Tristano/Charlie Parker/Billy BauerWritten By259088Billy BauerWritten-By75617Charlie ParkerWritten-By259086Lennie TristanoLenni TristanoWritten-By3-3Good Bait3:222752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass358034Carlos VidalCongas [Conga]228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251783Tadd DameronWritten-By3-4Focus3:552752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass358034Carlos VidalCongas [Conga]228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251783Tadd DameronWritten-By3-5April In Paris2:562752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass358034Carlos VidalCongas [Conga]228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet573556E.Y. HarburgWritten-By614342Vernon DukeWritten-By3-6Webb's Delight3:382752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass358034Carlos VidalCongas [Conga]228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251783Tadd DameronWritten-By3-7John's Delight2:582752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251783Tadd DameronWritten-By3-8What's New3:022752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpetJohnny Burke/Bob HaggartWritten By335565Bob HaggartWritten-By301993Johnny BurkeWritten-By3-9Heaven's Doors Are Wide Open3:192752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251783Tadd DameronWritten-By3-10Focus3:022752080Tadd Dameron's Big Ten89693Sahib ShihabAlto Saxophone [Alto Sax]327033Cecil PayneBaritone Saxophone [Baritone Sax]259075Curly RussellBass228917Kenny ClarkeDrums327021John Collins (2)Guitar251783Tadd DameronPiano743199Benjamin LundyTenor Saxophone [Tenor Sax]267186Kai WindingTrombone23755Miles DavisTrumpet251783Tadd DameronWritten-By3-11Blues Finale4:57339514Sidney Bechet And His OrchestraSidney Bechet & His Orchestra75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass441793Hubert RostaingClarinet229498Max RoachDrums120623Toots ThielemansGuitar259078Al HaigPiano1345070Pierre BraslavskySoprano Saxophone [Soprano Sax]258422Sidney BechetSoprano Saxophone [Soprano Sax]255563Don ByasTenor Saxophone [Tenor Sax]120620James MoodyTenor Saxophone [Tenor Sax]354410"Big Chief" Russell MooreBig Chief Russell MooreTrombone567586Aimé BarelliAime BarelliTrumpet282285Bill Coleman (2)Trumpet270237Hot Lips PageTrumpet254945Kenny DorhamTrumpet23755Miles DavisTrumpet271483Hazy OsterwaldVibraphone [Vibes]151641TraditionalTrad.Written-By3-12Ain't Misbehavin'3:038284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums272665Freddie GreenGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]301998Andy RazafWritten-By253482Fats WallerWritten-By705281Harry Brooks (2)Written-By3-13Goodnight My Love3:308284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums272665Freddie GreenGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]Mack Gordon/Henry RevelWritten By2825912Henry RevelWritten-By623105Mack GordonWritten-By3-14It Might As Well Be Spring2:528284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums272665Freddie GreenGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]284099Rodgers & HammersteinOscar Hammerstein II/Richard RodgersWritten-By3-15Mean To Me2:568284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums258462Mundell LoweGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]Roy Turk/Fred E. AhlertWritten By699210Fred E. AhlertWritten-By642080Roy TurkWritten-By3-16Come Rain Or Come Shine3:278284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums258462Mundell LoweGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]647193Harold Arlen & Johnny MercerJohnny Mercer/Harold ArlenWritten-By3-17Nice Work If You Can Get It2:398284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums258462Mundell LoweGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]640665George & Ira GershwinIra Gershwin/George GershwinWritten-By3-18East Of The Sun (West Of The Moon)3:098284Sarah Vaughan312954Billy Taylor Sr.Billy TaylorBass148475Tony Scott (2)Clarinet313084J.C. HeardDrums258462Mundell LoweGuitar307373Jimmy Jones (3)Piano317503Budd JohnsonTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet8284Sarah VaughanVocals [Vocal]767013Brooks BowmanWritten-By3-19I Knew2:35549499Sonny Rollins Quartet253445Percy HeathBass255556Roy HaynesDrums23755Miles DavisPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisWritten-By3-20Hi-Beck3:09375439Lee Konitz Sextet259092Lee KonitzAlto Saxophone [Alto Sax]259087Arnold FishkinBass229498Max RoachDrums259088Billy BauerGuitar356568Sal MoscaPiano23755Miles DavisTrumpet259092Lee KonitzWritten-By3-21Odjenar2:54375439Lee Konitz Sextet259092Lee KonitzAlto Saxophone [Alto Sax]259087Arnold FishkinBass229498Max RoachDrums259088Billy BauerGuitar356568Sal MoscaPiano23755Miles DavisTrumpet80613George RussellWritten-By3-22Ezz-Thetic2:55375439Lee Konitz Sextet259092Lee KonitzAlto Saxophone [Alto Sax]259087Arnold FishkinBass229498Max RoachDrums259088Billy BauerGuitar356568Sal MoscaPiano23755Miles DavisTrumpet80613George RussellWritten-By3-23Yesterdays2:29375439Lee Konitz Sextet259092Lee KonitzAlto Saxophone [Alto Sax]259087Arnold FishkinBass29977Art BlakeyDrums259088Billy BauerGuitar356568Sal MoscaPiano23755Miles DavisTrumpetOtto Harbach/Jerome KernWritten By166685Jerome KernWritten-By696232Otto HarbachWritten-By3-24Conception4:02260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]251780Tommy PotterBass29977Art BlakeyDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet59407George ShearingWritten-ByThe Charlie Parker Years Vol. 14-1Billie's Bounce (Tk 1)2:44317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums64694Dizzy GillespiePiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-2Billie's Bounce (Tk 3)3:08317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums64694Dizzy GillespiePiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-3Billie's Bounce (Tk 5)3:12317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums64694Dizzy GillespiePiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-4Now's The Time (Tk 3)3:10317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums64694Dizzy GillespiePiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-5Now's The Time (Tk 4)3:16317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums64694Dizzy GillespiePiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-6Thriving On A Riff (Tk 1)2:59317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums480264Sadik HakimPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-7Thriving On A Riff (Tk 3)2:55317873Charlie Parker's Re-BoppersCharlie Parker Rebeboppers75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums480264Sadik HakimPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-8Moose The Moche (Tk 1)3:01272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-9Moose The Moche (Tk 2)3:05272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-10Moose The Moche (Tk 3)2:58272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-11Yardbird Suite (Tk 1)2:42272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-12Yardbird Suite (Tk 4)2:57272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-13Ornithology (Tk 1)3:04272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet415785Benny HarrisWritten-By75617Charlie ParkerWritten-By4-14Ornithology (Bird Lore) (Tk 2)3:20272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet415785Benny HarrisWritten-By75617Charlie ParkerWritten-By4-15Ornithology (Tk 4)3:02272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet415785Benny HarrisWritten-By75617Charlie ParkerWritten-By4-16A Night In Tunisia (Tk 4)3:09272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet64694Dizzy GillespieWritten-By4-17A Night In Tunisia (Tk 5)3:06272020The Charlie Parker SeptetCharlie Parker Septet75617Charlie ParkerAlto Saxophone [Alto Sax]272015Vic McMillanBass244729Roy PorterDrums272017Arvin GarrisonGuitar272018Dodo MarmarosaPiano262587Lucky ThompsonTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet64694Dizzy GillespieWritten-By4-18Donna Lee (Tk 2)2:59272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-19Donna Lee (Tk 3)2:30272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-20Donna Lee (Tk 4)2:35272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By4-21Donna Lee (Tk 5)2:32272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-ByThe Charlie Parker Years Vol. 25-1Chasin' The Bird (Tk 1)2:55272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-2 Chasin' The Bird (Tk 3)2:59272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-3 Chasin' The Bird (Tk 4)2:43272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-4Cherryl (Tk 2)2:57272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-5Buzzy (Tk 1)2:57272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-6Buzzy (Tk 3)2:36272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-7Buzzy (Tk 5)2:28272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums29992Bud PowellPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-8Milestones (Tk 2)2:35262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-9Milestones (Tk 3)2:44262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-10Little Willie Leaps (Tk 2)3:07262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-11Little Willie Leaps (Tk 3)2:48262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-12Half Nelson (Tk 1)2:49262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-13Half Nelson (Tk 2)2:42262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-14Sippin' At Bells (Tk 2)2:21262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-15Sippin' At Bells (Tk 4)2:27262586Miles Davis All Stars75617Charlie ParkerAlto Saxophone [Alto Sax]272340Nelson BoydBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By5-16Dexterity (Tk A - Alternate)2:59272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-17Dexterity (Tk B - Master)3:02272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-18Bongo Bop (Tk A)2:47272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-19Bongo Bop (Tk B)2:46272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-20Dewey Square (Prezology) (Tk A)3:31272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-21Dewey Square (Tk B)3:05272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-22Dewey Square (Tk C)3:10272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-23The Hymn (Tk A)2:34272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By5-24The Hymn (Superman) (Tk B)2:30272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-ByThe Charlie Parker Years Vol. 36-1Bird Of Paradise (Tk 1)3:10272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-2Bird Of Paradise (Tk B)3:12272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-3Bird Of Paradise (Tk C)3:09272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-4Embraceable You (Tk 1)3:49272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-By6-5Embraceable You (Tk 2)3:25272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-By6-6Bird Feathers (Tk 3)2:54272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-7Klactoveedsedstene (Tk 1)3:07272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-8Klactoveedsedstene (Tk 2)3:07272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-9Scrapple From The Apple (Tk 2)2:41272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-10Scrapple From The Apple (Tk 3)2:58272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-11My Old Flame (Blue Lamp)3:16272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpetSam Coslow/Arthur JohnstonWritten By301995Arthur JohnstonWritten-By413893Sam CoslowWritten-By6-12Out Of Nowhere (Tk 1)4:06272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet607246Edward HeymanWritten-By299701Johnny GreenJohn W. GreenWritten-By6-13Out Of Nowhere (Tk 2)3:53272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet607246Edward HeymanWritten-By299701Johnny GreenJohn W. GreenWritten-By6-14Out Of Nowhere (Tk 3)3:07272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet607246Edward HeymanWritten-By299701Johnny GreenJohn W. GreenWritten-By6-15Don't Blame Me2:50272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet941280Jimmy McHugh & Dorothy FieldsDorothy Fields/Jimmy McHughWritten-By6-16Drifting On A Reed (Giant Swing) (Tk 2)2:59272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-17Drifting On A Reed (Tk 4)2:55272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-18Drifting On A Reed (Air Conditioning) (Tk 5)2:54272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-19Quasimodo (Tk 1)2:57272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By6-20Quasimodo (Trade Winds) (Tk 2)2:55272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-ByThe Charlie Parker Years Vol. 47-1Charlie's Wig (Bongo Bop) (Tk 2)2:48272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-2Charlie's Wig (Drifting On A Road) (Tk 4)2:48272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-3Charlie's Wig (Tk 5)2:44272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-4Bongo Beep (Dexterity) (Tk 2) 3:00272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-5Bongo Beep (Habanera Mambobop) (Bird Feathers) (Tk 3) 2:59272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-6Crazeology (Little Benny) (Tk 1) 1:02272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet415785Benny HarrisBennie HarrisWritten-By7-7Crazeology (Little Benny) (Tk 2) 0:34272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet415785Benny HarrisBennie HarrisWritten-By7-8How Deep Is The Ocean? (How Deep) (Tk 1) 3:25272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet508131Irving BerlinWritten-By7-9How Deep Is The Ocean? (Tk 2) 3:06272027The Charlie Parker SextetOriginal Charlie Parker Sextet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet508131Irving BerlinWritten-By7-10Another Hair Do (Tk 2) 0:45272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-11Another Hair Do (Tk 4) 2:37272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-12Bluebird (Tk 1) 2:52272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-13Bluebird (Tk 3) 2:49272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-14Klaunstance (Tk 1) 2:44272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-15Bird Gets The Worm (Tk 1) 2:59272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-16Bird Gets The Worm (Tk 3) 2:34272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-17Barbados (Tk 1) 2:37272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-18Barbados (Tk 3) 2:35272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By7-19Barbados (Tk 4) 2:28272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-ByThe Charlie Parker Years Vol. 58-1Ah-Leu-Cha (Tk 2) 2:54272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By, Drums8-2Constellation (Tk 3)2:07272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-3Constellation (Tk 4)0:22272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-4Constellation (Tk 5)2:26272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-5Perhaps (Tk 1)2:05272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-6Perhaps (Tk 3) 2:11272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-7Perhaps (Tk 6) 2:19272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-8Perhaps (Tk 7)2:35272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-9Marmaduke (Tk 5)2:54272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-10Marmaduke (Tk 9)3:02272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-11Marmaduke (Tk 12)2:46272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-12Steeplechase (Tk 2)3:05272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-13Merry Go Round (Tk 1)2:21272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-14Merry Go Round (Tk 2) 2:27272024The Charlie Parker All-StarsCharlie Parker Allstars75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-15Au Privave2:46340586Charlie Parker And His OrchestraCharlie Parker & His Orchestra75617Charlie ParkerAlto Saxophone [Alto Sax]427125Teddy KotickBass229498Max RoachDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-16She Rote 3:09340586Charlie Parker And His OrchestraCharlie Parker & His Orchestra75617Charlie ParkerAlto Saxophone [Alto Sax]427125Teddy KotickBass229498Max RoachDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-17K.C.Blues 3:27340586Charlie Parker And His OrchestraCharlie Parker & His Orchestra75617Charlie ParkerAlto Saxophone [Alto Sax]427125Teddy KotickBass229498Max RoachDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano23755Miles DavisTrumpet75617Charlie ParkerWritten-By8-18Star Eyes 3:38340586Charlie Parker And His OrchestraCharlie Parker & His Orchestra75617Charlie ParkerAlto Saxophone [Alto Sax]427125Teddy KotickBass229498Max RoachDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano23755Miles DavisTrumpetGene De Paul/Don RayeWritten By631367Don RayeWritten-By631368Gene DePaulGene De PaulWritten-ByThe Charlie Parker Years Vol. 69-152nd Street Theme 5:22272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums251783Tadd DameronPiano23755Miles DavisTrumpet145256Thelonious MonkWritten-By9-2Koko2:31272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]259075Curly RussellBass229498Max RoachDrums251783Tadd DameronPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By9-3Groovin’ High5:02272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet64694Dizzy GillespieWritten-By9-4Big Foot4:43272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By9-5Ornithology5:43272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpetCharlie Parker/Benny HarrisWritten By415785Benny HarrisWritten-By75617Charlie ParkerWritten-By9-6Slow Boat To China5:20272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet439662Frank LoesserFrank LeosserWritten-By9-7Hot House 4:27272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet251783Tadd DameronWritten-By9-8Salt Peanuts3:52272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet64694Dizzy GillespieWritten-By9-9Chasin’ The Bird4:25272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By9-10Out Of Nowhere3:19272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpet607246Edward HeymanWritten-By299701Johnny GreenWritten-By9-11How High The Moon2:10272028The Charlie Parker QuintetCharlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums259078Al HaigPiano23755Miles DavisTrumpetNancy Hamilton/Morgan LewisWritten By714002Morgan LewisWritten-By714004Nancy HamiltonWritten-ByThe Charlie Parker Years Vol. 710-152nd Street Theme0:55272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet145256Thelonious MonkWritten-By10-2Shaw 'Nuff 3:50272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpetDizzy Gillespie/Charlie ParkerWritten By75617Charlie ParkerWritten-By64694Dizzy GillespieWritten-By10-3Out Of Nowhere, I2:29272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet607246Edward HeymanEdward HeymannWritten-By299701Johnny GreenJohn W GreenWritten-By10-4This Time The Dream’s On Me, I4:38272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet647193Harold Arlen & Johnny MercerJohnny Mercer/Harold ArlenWritten-By10-5A Night In Tunisia3:32272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpetJon Hendricks/Dizzy Gillespie/Frank PaparelliWritten By64694Dizzy GillespieWritten-By370787Frank PaparelliWritten-By253478Jon HendricksWritten-By10-6My Old Flame2:24272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet301995Arthur JohnstonWritten-By413893Sam CoslowWritten-By10-7The Way You Look Tonight4:13272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet301992Dorothy FieldsWritten-By166685Jerome KernWritten-By10-8Out Of Nowhere, II5:43272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpetJohnny Green/Edward HeymanWritten By607246Edward HeymanWritten-By299701Johnny GreenWritten-By10-9Chasin’ The Bird1:42272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass272016Duke JordanPiano23755Miles DavisTrumpet75617Charlie ParkerWritten-By10-10This Time The Dream’s On Me, II4:45272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet647193Harold Arlen & Johnny MercerJohnny Mercer/Harold ArlenWritten-By10-11Dizzy Atmosphere4:27272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet64694Dizzy GillespieWritten-By10-12How High The Moon2:46272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpetNancy Hamilton/Morgan LewisWritten By714002Morgan LewisWritten-By714004Nancy HamiltonWritten-By10-1352nd Street Theme, II 1:34272028The Charlie Parker QuintetOriginal Charlie Parker Quintet75617Charlie ParkerAlto Saxophone [Alto Sax]251780Tommy PotterBass229498Max RoachDrums272016Duke JordanPiano23755Miles DavisTrumpet145256Thelonious MonkWritten-ByBirdland Days Vol. 111-1Conception4:10260757The Miles Davis SextetMiles Davis Sextet251776Gene RameyBass29977Art BlakeyDrums251783Tadd DameronPiano30486Stan GetzTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet59407George ShearingWritten-By11-2Ray’s Idea5:57260757The Miles Davis SextetMiles Davis Sextet251776Gene RameyBass29977Art BlakeyDrums251783Tadd DameronPiano30486Stan GetzTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet322262Gil FullerWalter Gilbert FullerWritten-By252998Ray BrownWritten-By11-3That Old Black Magic 2:19260757The Miles Davis SextetMiles Davis Sextet251776Gene RameyBass29977Art BlakeyDrums251783Tadd DameronPiano30486Stan GetzTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet647193Harold Arlen & Johnny MercerJohnny Mercer/Harold ArlenWritten-By11-4Max Is Making Wax4:02260757The Miles Davis SextetMiles Davis Sextet251776Gene RameyBass29977Art BlakeyDrums251783Tadd DameronPiano30486Stan GetzTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet255767Oscar PettifordWritten-By11-5Woody’n You5:43260757The Miles Davis SextetMiles Davis Sextet251776Gene RameyBass29977Art BlakeyDrums251783Tadd DameronPiano30486Stan GetzTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet64694Dizzy GillespieWritten-By11-6Out Of The Blue5:54260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet23755Miles DavisWritten-By11-7Half Nelson7:42260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet23755Miles DavisWritten-By11-8Tempus Fugit6:43260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet29992Bud PowellWritten-By11-9Move5:45260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet259091Denzil BestDenzil De Costa BestWritten-By11-10Move6:12260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet259091Denzil BestDenzil De Costa BestWritten-By11-11Half Nelson7:34260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet23755Miles DavisWritten-By11-12Down7:14260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums251779Kenny DrewPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet23755Miles DavisWritten-ByBirdland Days Vol. 212-1Move (Mod) 6:23260757The Miles Davis SextetMiles Davis Sextet200815Charles MingusBass29977Art BlakeyDrums251777Billy TaylorPiano314417Big Nick NicholasTenor Saxophone [Tenor Sax]272685Eddie "Lockjaw" DavisTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet259091Denzil BestDenzil De Costa BestWritten-By12-2The Squirrel 8:38260757The Miles Davis SextetMiles Davis Sextet200815Charles MingusBass29977Art BlakeyDrums251777Billy TaylorPiano314417Big Nick NicholasTenor Saxophone [Tenor Sax]272685Eddie "Lockjaw" DavisTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet251783Tadd DameronWritten-By12-3Lady Bird 5:33260757The Miles Davis SextetMiles Davis Sextet200815Charles MingusBass29977Art BlakeyDrums251777Billy TaylorPiano314417Big Nick NicholasTenor Saxophone [Tenor Sax]272685Eddie "Lockjaw" DavisTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet251783Tadd DameronWritten-By12-4Confirmation5:49262586Miles Davis All Stars122384Jackie McLeanAlto Saxophone [Alto Sax]251781Connie HenryBass251782Connie KayDrums598659Gil CogginsPiano23755Miles DavisTrumpet201757Don ElliotVibraphone [Vibes], Mellophone [Melotrone]75617Charlie ParkerWritten-By12-5Out Of The Blue 5:44262586Miles Davis All Stars122384Jackie McLeanAlto Saxophone [Alto Sax]251781Connie HenryBass251782Connie KayDrums598659Gil CogginsPiano23755Miles DavisTrumpet473375Don ElliottVibraphone [Vibes]23755Miles DavisWritten-By12-6Wee Dot 6:24262586Miles Davis All Stars122384Jackie McLeanAlto Saxophone [Alto Sax]251781Connie HenryBass251782Connie KayDrums598659Gil CogginsPiano23755Miles DavisTrumpet251778J.J. JohnsonWritten-By12-7The Chase 6:20262586Miles Davis All Stars122384Jackie McLeanAlto Saxophone [Alto Sax]251781Connie HenryBass251782Connie KayDrums598659Gil CogginsPiano23755Miles DavisTrumpet473375Don ElliottVibraphone [Vibes]23755Miles DavisWritten-By12-8It Could Happen To You 4:45262586Miles Davis All Stars122384Jackie McLeanAlto Saxophone [Alto Sax]251781Connie HenryBass251782Connie KayDrums598659Gil CogginsPiano23755Miles DavisTrumpet473375Don ElliottVibraphone [Vibes]1077671Jimmy Van Heusen And Johnny BurkeJohnny Burke/Jimmy Van HeusenWritten-By12-9Out Of The Blue 5:50260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]251781Connie HenryBass251782Connie KayDrums598659Gil CogginsPiano23755Miles DavisTrumpet473375Don ElliottVibraphone [Vibes]23755Miles DavisWritten-ByBlue Note Recordings Vol. 113-1Tempus Fugit 3:51260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet29992Bud PowellWritten-By13-2Kelo5:34260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet251778J.J. JohnsonWritten-By13-3Enigma3:23260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet251778J.J. JohnsonWritten-By13-4Ray’s Idea 3:18260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet322262Gil FullerW.G. FullerWritten-By252998Ray BrownR. BrownWritten-By13-5How Deep Is The Ocean? 4:38260757The Miles Davis SextetMiles Davis Sextet255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano23755Miles DavisTrumpet508131Irving BerlinWritten-By13-6C.T.A. (Alt. Take) 3:17260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet264872Jimmy HeathWritten-By13-7Dear Old Stockholm 4:12260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet1682148Anders FryxellDean Andres FryxellWritten-By13-8Chance It 3:02260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet255767Oscar PettifordWritten-By13-9Yesterdays 3:46260757The Miles Davis SextetMiles Davis Sextet255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano23755Miles DavisTrumpetOtto Harbach II/Jerome KernWritten By166685Jerome KernWritten-By696232Otto HarbachOtto Harbach IIWritten-By13-10Donna (Alt. Take) 3:11260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet122384Jackie McLeanWritten-By13-11C.T.A.3:34260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet264872Jimmy HeathWritten-By13-12Woody’n You (Alt. Take) 3:30260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet64694Dizzy GillespieWritten-By322262Gil FullerW.G. FullerWritten-ByBlue Note Recordings Vol. 214-1Take Off 3:40634013The Miles Davis QuartetMiles Davis Quartet253445Percy HeathBass29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet23755Miles DavisWritten-By14-2Weirdo 4:43634013The Miles Davis QuartetMiles Davis Quartet253445Percy HeathBass29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet23755Miles DavisWritten-By14-3Woody’n You 3:22260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet64694Dizzy GillespieWritten-By322262Gil FullerW.G. FullerWritten-By14-4I Waited For You 3:31260757The Miles Davis SextetMiles Davis Sextet264872Jimmy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano23755Miles DavisTrumpet322262Gil FullerW.G. FullerWritten-By14-5Ray’s Idea (Alt. Take) 3:52260757The Miles Davis SextetMiles Davis Sextet264872Jimmy HeathBass29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet322262Gil FullerW.G. FullerWritten-By252998Ray BrownR. BrownWritten-By14-6Donna3:17260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]255767Oscar PettifordBass228917Kenny ClarkeDrums598659Gil CogginsPiano251778J.J. JohnsonTrombone23755Miles DavisTrumpet122384Jackie McLeanWritten-By14-7Well, You Needn’t 5:22634013The Miles Davis QuartetMiles Davis Quartet29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet145256Thelonious MonkWritten-By14-8The Leap 4:31634013The Miles Davis QuartetMiles Davis Quartet29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet23755Miles DavisWritten-By14-9Lazy Susan 4:02634013The Miles Davis QuartetMiles Davis Quartet29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet23755Miles DavisWritten-By14-10Tempus Fugit (Alt. Take) 4:01260757The Miles Davis SextetMiles Davis Sextet29977Art BlakeyDrums598659Gil CogginsPiano264872Jimmy HeathTenor Saxophone [Tenor Sax]251778J.J. JohnsonTrombone23755Miles DavisTrumpet29992Bud PowellWritten-By14-11It Never Entered My Mind 4:02634013The Miles Davis QuartetMiles Davis Quartet29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-ByBirth Of The Cool 15-1Move2:3423755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290876Joe ShulmanJoe SchulmanBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn259078Al HaigPiano267186Kai WindingTrombone23755Miles DavisTrumpet271038Bill BarberTuba259091Denzil BestWritten-By15-2Jeru3:1223755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290876Joe ShulmanJoe SchulmanBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn259078Al HaigPiano267186Kai WindingTrombone23755Miles DavisTrumpet271038Bill BarberTuba37733Gerry MulliganWritten-By15-3Moon Dreams 3:2023755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290874Al McKibbonBass229498Max RoachDrums269868Gunther SchullerFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTubaJohnny Mercer/Chummy MacGregorWritten By254885Chummy McGregorChummy MacGregorWritten-By164574Johnny MercerWritten-By15-4Venus De Milo 3:1123755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]272340Nelson BoydBass228917Kenny ClarkeDrums329897Sandy SiegelsteinFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTuba37733Gerry MulliganWritten-By15-5Budo2:3423755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290876Joe ShulmanJoe SchulmanBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn259078Al HaigPiano267186Kai WindingTrombone23755Miles DavisTrumpet271038Bill BarberTuba29992Bud PowellWritten-By23755Miles DavisWritten-By15-6Deception2:4723755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290874Al McKibbonBass229498Max RoachDrums269868Gunther SchullerFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTuba23755Miles DavisWritten-By15-7Godchild3:0923755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290876Joe ShulmanJoe SchulmanBass229498Max RoachDrums510836Addison CollinsJunior CollinsFrench Horn259078Al HaigPiano267186Kai WindingTrombone23755Miles DavisTrumpet271038Bill BarberTuba261287George WallingtonWritten-By15-8Boplicity3:0123755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]272340Nelson BoydBass228917Kenny ClarkeDrums329897Sandy SiegelsteinFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTuba1028079Cleo HenryWritten-By15-9Rocker3:0523755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290874Al McKibbonBass229498Max RoachDrums269868Gunther SchullerFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTuba37733Gerry MulliganWritten-By15-10Israel2:1723755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]272340Nelson BoydBass228917Kenny ClarkeDrums329897Sandy SiegelsteinFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTuba271036John CarisiJohnny CarisiWritten-By15-11Rouge3:1423755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]272340Nelson BoydBass228917Kenny ClarkeDrums329897Sandy SiegelsteinFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTuba267675John Lewis (2)Written-By15-12Darn That Dream 3:2423755Miles Davis259092Lee KonitzAlto Saxophone [Alto Sax]37733Gerry MulliganBaritone Saxophone [Baritone Sax]290874Al McKibbonBass229498Max RoachDrums269868Gunther SchullerFrench Horn267675John Lewis (2)Piano251778J.J. JohnsonTrombone23755Miles DavisTrumpet271038Bill BarberTubaJimmy Van Heusen/Eddie De LangeWritten By657340Eddie DelangeEddie De LangeWritten-By255313Jimmy Van HeusenWritten-ByBlue Haze - Miles Davis & The Modern Jazz Giants16-1I’ll Remember April 7:54262152The Miles Davis QuintetMiles Davis Quintet262588Davey SchildkrautAlto Saxophone [Alto Sax]253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano23755Miles DavisTrumpetDon Raye/Patricia Johnston/Gene De PaulWritten By631367Don RayeWritten-By631368Gene DePaulGene De PaulWritten-By717998Patricia JohnstonWritten-By16-2Four 4:02634013The Miles Davis QuartetMiles Davis Quartet253445Percy HeathBass29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet23755Miles DavisWritten-By16-3Old Devil Moon 3:23634013The Miles Davis QuartetMiles Davis Quartet253445Percy HeathBass29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpetE.Y. Harburg/Burton LaneWritten By622065Burton LaneWritten-By573556E.Y. HarburgWritten-By16-4Smooch3:06262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass229498Max RoachDrums200815Charles MingusPiano23755Miles DavisTrumpetMiles Davis/Charles MingusWritten By200815Charles MingusWritten-By23755Miles DavisWritten-By16-5Blue Haze 6:09634013The Miles Davis QuartetMiles Davis Quartet253445Percy HeathBass29977Art BlakeyDrums29973Horace SilverPiano23755Miles DavisTrumpet23755Miles DavisWritten-By16-6When Lights Are Low 3:29262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpetSpencer Williams/Benny CarterWritten By258701Benny CarterWritten-By576013Spencer Williams (2)Written-By16-7Tune Up 3:51262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By16-8Miles Ahead 4:29262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass229498Max RoachDrums267675John Lewis (2)Piano23755Miles DavisTrumpet23755Miles DavisWritten-By16-9The Man I Love (Tk 2) 7:57262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone640665George & Ira GershwinIra Gershwin/George GershwinWritten-By16-10Swing Spring 10:43262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone23755Miles DavisWritten-By16-11Round About Midnight 5:26262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetThelonious Monk/Cootie WilliamsWritten By258696Cootie WilliamsWritten-By145256Thelonious MonkWritten-By16-12Bemsha Swing 9:28262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphoneThelonious Monk/Denzil De Costa BestWritten By259091Denzil BestDenzil De Costa BestWritten-By145256Thelonious MonkWritten-By16-13The Man I Love (Tk 1) 8:08262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone640665George & Ira GershwinIra Gershwin/George GershwinWritten-ByThe Musing Of Miles – Blue Moods17-1Will You Still Be Mine?6:23634013The Miles Davis QuartetMiles Davis Quartet255767Oscar PettifordBass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpetTom Adair/Matt DennisWritten By436985Matt DennisWritten-By661120Tom AdairWritten-By17-2Green Haze 4:47634013The Miles Davis QuartetMiles Davis Quartet255767Oscar PettifordBass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet23755Miles DavisWritten-By17-3I Didn’t 6:04634013The Miles Davis QuartetMiles Davis Quartet255767Oscar PettifordBass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet23755Miles DavisWritten-By17-4I See Your Face Before Me 5:19634013The Miles Davis QuartetMiles Davis Quartet255767Oscar PettifordBass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet1850058Schwartz & DietzHoward Dietz/Arthur SchwartzWritten-By17-5A Night In Tunisia 7:22634013The Miles Davis QuartetMiles Davis Quartet255767Oscar PettifordBass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet64694Dizzy GillespieWritten-By370787Frank PaparelliWritten-By17-6A Gal In Calico 5:49634013The Miles Davis QuartetMiles Davis Quartet255767Oscar PettifordBass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpetLeo Robin/Arthur SchwartzWritten By616853Arthur SchwartzWritten-By531605Leo RobinWritten-By17-7Nature Boy 6:16262152The Miles Davis QuintetMiles Davis Quintet200815Charles MingusBass135885Elvin JonesDrums274988Britt WoodmanTrombone23755Miles DavisTrumpet300566Teddy CharlesVibraphone45876Eden AhbezWritten-By17-8Alone Together 7:19262152The Miles Davis QuintetMiles Davis Quintet200815Charles MingusBass135885Elvin JonesDrums274988Britt WoodmanTrombone23755Miles DavisTrumpet300566Teddy CharlesVibraphone1850058Schwartz & DietzDietz/SchwartzWritten-By17-9There’s No You 8:09262152The Miles Davis QuintetMiles Davis Quintet200815Charles MingusBass135885Elvin JonesDrums274988Britt WoodmanTrombone23755Miles DavisTrumpet300566Teddy CharlesVibraphoneAdair/HopperWritten By690854Hal HopperHopperWritten-By661120Tom AdairAdairWritten-By17-10Easy Living 5:06262152The Miles Davis QuintetMiles Davis Quintet200815Charles MingusBass135885Elvin JonesDrums274988Britt WoodmanTrombone23755Miles DavisTrumpet300566Teddy CharlesVibraphone531605Leo RobinRobinWritten-By531602Ralph RaingerRaingerWritten-ByMiles Davis And Milt Jackson18-1Dr. Jackle (Dr. Jekyll)7:29260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]253445Percy HeathBass261196Art TaylorDrums98585Ray BryantPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone122384Jackie McLeanWritten-By18-2Bitty Ditty 8:54260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]253445Percy HeathBass261196Art TaylorDrums98585Ray BryantPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone271154Thad JonesWritten-By18-3Minor March 6:40260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]253445Percy HeathBass261196Art TaylorDrums98585Ray BryantPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone122384Jackie McLeanWritten-By18-4Changes8:18260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass261196Art TaylorDrums98585Ray BryantPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone98585Ray BryantWritten-By18-5Stablemates7:16262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet185752Benny GolsonWritten-By18-6There Is No Greater Love 5:23262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpetMarty Symes/Isham JonesWritten By614341Isham JonesWritten-By638130Marty SymesWritten-By18-7How Am I To Know? 5:19262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet582425Dorothy ParkerWritten-By806377Jack King (3)Written-By18-8S’posin’4:43262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet301998Andy RazafWritten-By817818Paul DennikerWritten-By18-9Bye Bye (Theme) 5:17262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By18-10Just Squeeze Me 5:49262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetLee Gaines/Duke EllingtonWritten By145257Duke EllingtonWritten-By785839Lee GainesWritten-ByDig – Miles Davis And The Horns19-1Dig 7:34260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]251780Tommy PotterBass29977Art BlakeyDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By19-2It’s Only A Paper Moon5:26260757The Miles Davis SextetMiles Davis Sextet251780Tommy PotterBass29977Art BlakeyDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet570719Billy RoseWritten-By573556E.Y. HarburgWritten-By301975Harold ArlenWritten-By19-3Denial5:41260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]251780Tommy PotterBass29977Art BlakeyDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By19-4Bluing9:56260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]251780Tommy PotterBass29977Art BlakeyDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By19-5Out Of The Blue6:16260757The Miles Davis SextetMiles Davis Sextet122384Jackie McLeanAlto Saxophone [Alto Sax]251780Tommy PotterBass29977Art BlakeyDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By19-6Tasty Pudding 3:211900148Miles Davis Septet263795Leonard GaskinBass228917Kenny ClarkeDrums267675John Lewis (2)Piano261286Al CohnTenor Saxophone [Tenor Sax]263796Zoot SimsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet261286Al CohnWritten-By19-7Floppy6:011900148Miles Davis Septet263795Leonard GaskinBass228917Kenny ClarkeDrums267675John Lewis (2)Piano261286Al CohnTenor Saxophone [Tenor Sax]263796Zoot SimsTenor Saxophone [Tenor Sax]913758Sonny TruittTrombone23755Miles DavisTrumpet261286Al CohnWritten-By19-8Willie The Wailer 4:281900148Miles Davis Septet263795Leonard GaskinBass228917Kenny ClarkeDrums267675John Lewis (2)Piano261286Al CohnTenor Saxophone [Tenor Sax]263796Zoot SimsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet261286Al CohnWritten-By19-9For Adults Only 5:341900148Miles Davis Septet228917Kenny ClarkeBass263795Leonard GaskinBass267675John Lewis (2)Piano261286Al CohnTenor Saxophone [Tenor Sax]263796Zoot SimsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet261286Al CohnWritten-By19-10Morpheus2:22260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass255556Roy HaynesDrums267675John Lewis (2)Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet267675John Lewis (2)Written-By19-11Down2:52260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass255556Roy HaynesDrums267675John Lewis (2)Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpet23755Miles DavisWritten-By19-12Blue Room 3:02260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass255556Roy HaynesDrums267675John Lewis (2)Piano263794Bennie GreenTrombone23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By19-13Blue Room (Alt. Take) 2:51260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass255556Roy HaynesDrums267675John Lewis (2)Piano263794Bennie GreenTrombone23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By19-14Whispering3:03260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass255556Roy HaynesDrums267675John Lewis (2)Piano145264Sonny RollinsTenor Saxophone [Tenor Sax]263794Bennie GreenTrombone23755Miles DavisTrumpetRichard Coburn/John Schoenberger/Vincent RoseWritten By645325John SchonbergerJohn SchoenbergerWritten-By645323Richard CoburnWritten-By645324Vincent RoseWritten-ByCollectors Item20-1The Serpent’s Tooth, I 7:03260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass257251"Philly" Joe JonesPhilly Joe JonesDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano97545John ColtraneTenor Saxophone [Tenor Sax]145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By20-2The Serpent’s Tooth, II6:19260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass257251"Philly" Joe JonesPhilly Joe JonesDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano97545John ColtraneTenor Saxophone [Tenor Sax]145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By20-3Round About Midnight 7:06260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass257251"Philly" Joe JonesPhilly Joe JonesDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano97545John ColtraneTenor Saxophone [Tenor Sax]145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145256Thelonious MonkWritten-By20-4Compulsion 5:47260757The Miles Davis SextetMiles Davis Sextet253445Percy HeathBass257251"Philly" Joe JonesPhilly Joe JonesDrums262585Walter Bishop, Jr.Walter Bishop Jr.Piano97545John ColtraneTenor Saxophone [Tenor Sax]145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By20-5No Line 5:43262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass261196Art TaylorDrums253443Tommy FlanaganPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By20-6Weird Blues 6:55262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass261196Art TaylorDrums253443Tommy FlanaganPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By20-7In Your Own Sweet Way 4:39262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass261196Art TaylorDrums253443Tommy FlanaganPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet37737Dave BrubeckWritten-By’Round Midnight21-1Round Midnight 5:57262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet264203Bernie HanighenWritten-By258696Cootie WilliamsWritten-By145256Thelonious MonkWritten-By21-2Ah-Leu-Cha 5:53262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet75617Charlie ParkerWritten-By21-3All Of You 7:03262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet264026Cole PorterWritten-By21-4Bye Bye Blackbird 7:56262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet634987Mort DixonWritten-By677510Ray HendersonWritten-By21-5Tadd’s Delight 4:28262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet251783Tadd DameronWritten-By21-6Dear Old Stockholm 7:51262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet151641TraditionalTrad.Written-By21-7Budo4:17262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet29992Bud PowellWritten-By23755Miles DavisWritten-By21-8Sweet Sue, Just You 3:41262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetWill Harris/Victor YoungWritten By370725Victor YoungWritten-By716432Will HarrisWritten-ByCookin’ - Relaxin’ 22-1My Funny Valentine 6:02262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By22-2Blues By Five 9:58262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet253641Red GarlandWritten-By22-3Airegin 4:26262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet145264Sonny RollinsWritten-By22-4Tune Up / When Lights Are Low13:10262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpetMiles Davis/Spencer Williams/Benny CarterWritten By258701Benny CarterWritten-By23755Miles DavisWritten-By576013Spencer Williams (2)Written-By22-5If I Were A Bell 8:17262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet439662Frank LoesserWritten-By22-6You’re My Everything 5:19262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpetMort Dixon/Joe Young Sung/Harry WarrenWritten By601710Harry Warren (2)Written-By634988Joe Young (3)Joe Young SungWritten-By634987Mort DixonWritten-By22-7I Could Write A Book 5:10262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By22-8Oleo5:54262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet145264Sonny RollinsWritten-By22-9It Could Happen To You 6:39262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet1077671Jimmy Van Heusen And Johnny BurkeJohnny Burke/Jimmy Van HeusenWritten-By22-10Woody’n You 5:01262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet64694Dizzy GillespieWritten-ByWorkin’23-1It Never Entered My Mind 5:25262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By23-2Four7:14262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet23755Miles DavisWritten-By23-3In Your Own Sweet Way 5:44262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet37737Dave BrubeckWritten-By23-4The Theme, I2:01262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet23755Miles DavisWritten-By23-5Trane’s Blues 8:34262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet97545John ColtraneWritten-By23-6Ahmads Blues 7:25262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano164253Ahmad JamalWritten-By23-7Half Nelson 4:47262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet23755Miles DavisWritten-By23-8The Theme, II 1:02262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet23755Miles DavisWritten-BySteamin’24-1The Surrey With The Fringe On Top 9:07262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet284099Rodgers & HammersteinOscar Hammerstein II/Richard RodgersWritten-By24-2Salt Peanuts 6:09262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet64694Dizzy GillespieWritten-By228917Kenny ClarkeWritten-By24-3Something I Dreamed Last Night 6:16262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpetJack Yellen/Herbert Magidson/Sammy FainWritten By736976Herbert MagidsonWritten-By661425Jack YellenWritten-By290093Sammy FainWritten-By24-4Diane7:52262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet751941Erno RapeeErnö RapéeWritten-By739933Lew PollackWritten-By24-5Well, You Needn’t 6:21262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenorsax]23755Miles DavisTrumpet145256Thelonious MonkWritten-By24-6When I Fall In Love 4:24262152The Miles Davis QuintetMiles Davis Quintet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano23755Miles DavisTrumpet607246Edward HeymanWritten-By370725Victor YoungWritten-ByMiles Ahead25-1Springville3:2723755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba271036John CarisiJohnny CarisiWritten-By25-2The Maids Of Cadiz 3:4223755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba490777Léo DelibesLeo DelibesWritten-By25-3The Duke 3:5023755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba37737Dave BrubeckWritten-By25-4My Ship 4:3023755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba264105Ira GershwinWritten-By407111Kurt WeillWritten-By25-5Miles Ahead 3:3723755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTubaMiles Davis/Gil EvansWritten By255137Gil EvansWritten-By23755Miles DavisWritten-By25-6Blues For Pablo5:1923755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba255137Gil EvansWritten-By25-7New Rhumba 4:4023755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba164253Ahmad JamalAhamd JamalWritten-By25-8The Meaning Of The Blues 2:5023755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba80847Bobby TroupWritten-By736970Leah WorthWritten-By25-9Lament2:1523755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba251778J.J. JohnsonWritten-By25-10I Don’t Wanna Be Kissed 3:0723755Miles DavisWith59659Gil Evans And His OrchestraGil Evans & His Orchestra259092Lee KonitzAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet569163Thomas MitchellTom MitchellBass Trombone261196Art TaylorDrums23755Miles DavisFlugelhorn [Fluegel Horn]275277Eddie CaineEdwin CaineFlute, Clarinet255113Romeo PenqueFlute, Clarinet344610Sid CooperFlute, Clarinet301721Jim BuffingtonFrench Horn271037Tony MirandaFrench Horn268553Willie RuffFrench Horn275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271036John CarisiJohnny CarisiTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba452264Harold SpinaWritten-By1684725Jack Elliott (4)John Jack ElliottWritten-ByMilestone26-1Dr. Jackel 5:49260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet122384Jackie McLeanWritten-By26-2Sid’s Ahead 13:02260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By26-3Two Bass Hit 5:13260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetJohn Lewis/Dizzy GillespieWritten By64694Dizzy GillespieWritten-By267675John Lewis (2)Written-By26-4Milestone5:44260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By26-5Billy Boy 7:12260757The Miles Davis SextetMiles Davis Sextet259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano151641TraditionalTrad.Written-By26-6Straight, No Chaser 10:37260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass257251"Philly" Joe JonesPhilly Joe JonesDrums253641Red GarlandPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145256Thelonious MonkWritten-ByKind Of Blue27-1So What 9:2523755Miles Davis61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252308Wynton KellyPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By27-2Freddie Freeloader 9:4923755Miles Davis61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By27-3Blue In Green 5:3723755Miles Davis259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By27-4All Blues 11:3523755Miles Davis61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By27-5Flamenco Sketches 9:2523755Miles Davis61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-BySketches Of Spain28-1Concierto De Aranjuez (Adagio) 16:2323755Miles DavisWith255137Gil Evans259778Paul Chambers (3)Bass260718Danny BankBass Clarinet252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Fluegel Horn], Trumpet275277Eddie CaineEdwin CaineFlute275273Earl ChapinFrench Horn275276John BarrowsFrench Horn271037Tony MirandaFrench Horn260730Janet PutnamHarp275268Harold FeldmanOboe, Flute135885Elvin JonesPercussion275274Frank RehakTrombone313578Richard HixsonDick HixsonTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet523642Joaquín RodrigoWritten-By28-2Will O’ The Wisp 3:49840893Miles Davis-Tadd Dameron Quintet259778Paul Chambers (3)Bass260718Danny BankBass Clarinet275271Jack KnitzerBassoon252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Fluegel Horn], Trumpet275277Eddie CaineEdwin CaineFlute275268Harold FeldmanFlute275273Earl ChapinFrench Horn275276John BarrowsFrench Horn271037Tony MirandaFrench Horn260730Janet PutnamHarp135885Elvin JonesPercussion275274Frank RehakTrombone313578Richard HixsonDick HixsonTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba229547Manuel De FallaManuel de FallaWritten-By28-3The Pan Piper 3:54840893Miles Davis-Tadd Dameron Quintet259778Paul Chambers (3)Bass260718Danny BankBass Clarinet275271Jack KnitzerBassoon252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Fluegel Horn], Trumpet275277Eddie CaineEdwin CaineFlute275268Harold FeldmanFlute275273Earl ChapinFrench Horn275276John BarrowsFrench Horn271037Tony MirandaFrench Horn260730Janet PutnamHarp135885Elvin JonesPercussion275274Frank RehakTrombone313578Richard HixsonDick HixsonTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba255137Gil EvansWritten-By28-4Saeta5:08840893Miles Davis-Tadd Dameron Quintet259778Paul Chambers (3)Bass260718Danny BankBass Clarinet275271Jack KnitzerBassoon252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Fluegel Horn], Trumpet275277Eddie CaineEdwin CaineFlute275268Harold FeldmanFlute275273Earl ChapinFrench Horn275276John BarrowsFrench Horn271037Tony MirandaFrench Horn260730Janet PutnamHarp135885Elvin JonesPercussion275274Frank RehakTrombone313578Richard HixsonDick HixsonTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba255137Gil EvansWritten-By28-5Solea12:19840893Miles Davis-Tadd Dameron Quintet259778Paul Chambers (3)Bass260718Danny BankBass Clarinet275271Jack KnitzerBassoon252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Fluegel Horn], Trumpet275277Eddie CaineEdwin CaineFlute275268Harold FeldmanFlute275273Earl ChapinFrench Horn275276John BarrowsFrench Horn271037Tony MirandaFrench Horn260730Janet PutnamHarp135885Elvin JonesPercussion275274Frank RehakTrombone313578Richard HixsonDick HixsonTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet271033Louis R. MucciLouis MucciTrumpet309977Taft JordanTrumpet271038Bill BarberTuba255137Gil EvansWritten-ByBags Groove29-1Bags’ Groove (Take 1) 11:14262586Miles Davis All StarsMiles Davis All-Stars253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone149254Milt JacksonWritten-By29-2Bags’ Groove (Take 2) 9:22262586Miles Davis All StarsMiles Davis All-Stars253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone149254Milt JacksonWritten-By29-3Airegin4:59262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145264Sonny RollinsWritten-By29-4Oleo 5:12262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145264Sonny RollinsWritten-By29-5But Not For Me (Take 2) 4:38262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-By29-6Doxy4:51262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145264Sonny RollinsWritten-By29-7But Not For Me (Take 1) 5:47262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-ByAscenseur Pour L’Êchafaud - Jazz Track30-1Générique2:506883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-2L’Assassinat De Carala 2:116883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-3Sur L’Autoroute 2:206883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-4Julien Dans L’Ascenseur 2:096883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-5Florence Sur Les Champs-Élysées 2:526883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-6Dîner Au Motel 3:586883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-7Evasion De Julien 0:546883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-8Visite Du Vigile 2:056883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-9Au Bar Du Petit Bac 2:546883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-10Chez Le Photographe Du Motel 3:556883341René Urtreger QuartetRene Urtreger QuartetWith23755Miles Davis251623Pierre MichelotBass228917Kenny ClarkeDrums251622René UrtregerPiano59287Barney WilenTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-11On Green Dolphin Street 9:51260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetNed Washington/Bronislau KaperWritten By715404Bronislaw KaperBronislau KaperWritten-By299280Ned WashingtonWritten-By30-12Fran Dance (Put Your Little Foot Right Out) 5:51260757The Miles Davis SextetMiles Davis Sextet259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet23755Miles DavisWritten-By30-13Stella By Starlight 4:44260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetNed Washington/Bronislau KaperWritten By715404Bronislaw KaperBronislau KaperWritten-By299280Ned WashingtonWritten-ByJazz At The Plaza31-1If I Were A Bell 8:31260757The Miles Davis SextetMiles Davis Sextet259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet439662Frank LoesserWritten-By31-2Oleo10:38260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145264Sonny RollinsWritten-By31-3My Funny Valentine 10:18260757The Miles Davis SextetMiles Davis Sextet259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano23755Miles DavisTrumpet604171Rodgers & HartLorenz Hart/Richard RodgersWritten-By31-4Straight, No Chaser 10:56260757The Miles Davis SextetMiles Davis Sextet61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass252311Jimmy CobbDrums252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet145256Thelonious MonkWritten-ByMiles Davis Tadd Dameron Quintet In Paris May 194932-1Rifftide4:34840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet251769Coleman HawkinsWritten-By32-2Good Bait 5:48840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpetTadd Dameron/Count BasieWritten By145262Count BasieWritten-By251783Tadd DameronWritten-By32-3Don’t Blame Me 4:19840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano23755Miles DavisTrumpet941280Jimmy McHugh & Dorothy FieldsDorothy Fields/Jimmy McHughWritten-By32-4Lady Bird 5:00840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet251783Tadd DameronWritten-By32-5Perdido (Wahoo) 5:34840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet710669Cliff FriendWritten-By32-6Allen’s Alley 4:25840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet259091Denzil BestDenzil De Costa BestWritten-By32-7Embraceable You 4:03840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-By32-8Ornithology3:46840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet415785Benny HarrisWritten-By75617Charlie ParkerWritten-By32-9All The Things You Are 4:16840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet939545Hammerstein-KernOscar Hammerstein II/Jerome KernWritten-By32-10The Squirrel 3:56840893Miles Davis-Tadd Dameron Quintet840894Barney SpielerBass228917Kenny ClarkeDrums251783Tadd DameronPiano120620James MoodyTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet251783Tadd DameronWritten-ByPorgy And Bess33-1The Buzzard Song 4:0623755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet72480Jerome RichardsonFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-2Bess, You Is My Woman Now 5:1123755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Flh], Trumpet260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-3Gone3:3823755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesPhilly Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet [Tp]260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-4Gone, Gone, Gone 2:0223755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesPhilly Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-5Summertime3:1823755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet72480Jerome RichardsonFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By33-6Bess, Oh, Where’s My Bess4:2723755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet72480Jerome RichardsonFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-7Prayer (Oh, Doctor Jesus) 4:4023755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet72480Jerome RichardsonFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-8Fishermen, Strawberry And Devil Crab 4:0623755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Flh], Trumpet260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-9My Man’s Gone Now 6:1223755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]255137Gil EvansArranged By [Arr], Conductor [Cond]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesPhilly Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet [Tp]260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-10It Ain’t Necessarily So 4:2323755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Flh], Trumpet [Tp]260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-11Here Come The Honey Man 1:1223755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]252311Jimmy CobbDrums23755Miles DavisFlugelhorn [Flh], Trumpet [Tp]260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-12I Love You, Porgy 4:0623755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet [Tp]260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-13There’s A Boat That’s Leaving Soon For New York 3:2423755Miles DavisWith59659Gil Evans And His OrchestraThe Gil Evans Orchestra61585Cannonball AdderleyAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass260718Danny BankBass Clarinet [Bcl]313578Richard HixsonDick HixsonBass Trombone [Btb]257251"Philly" Joe JonesDrums23755Miles DavisFlugelhorn [Flh], Trumpet [Tp]260720Phil BodnerFlute [Fl]255113Romeo PenqueFlute [Fl]269868Gunther SchullerFrench Horn [Frh]274971Julius WatkinsFrench Horn [Frh]268553Willie RuffFrench Horn [Frh]275274Frank RehakTrombone252996Jimmy ClevelandTrombone271031Joseph BennettJoe BennettTrombone271022Bernie GlowTrumpet271027Ernie RoyalTrumpet255109Johnny ColesTrumpet271033Louis R. MucciLouis MucciTrumpet271038Bill BarberTuba [Tu]Ira Gershwin/Dubose Heyward/George GershwinWritten By264106DuBose HeywardWritten-By261293George GershwinWritten-By264105Ira GershwinWritten-By33-14But For Me (Take 1) 5:45262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-By33-15But For Me (Take 2) 4:35262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums29973Horace SilverPiano145264Sonny RollinsTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet640665George & Ira GershwinIra Gershwin/George GershwinWritten-By33-16The Man I Love (Take 1) 8:07262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkThelonius MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone [Vibes]640665George & Ira GershwinIra Gershwin/George GershwinWritten-By33-17The Man I Love (Take 2) 7:59262152The Miles Davis QuintetMiles Davis Quintet253445Percy HeathBass228917Kenny ClarkeDrums145256Thelonious MonkThelonius MonkPiano23755Miles DavisTrumpet149254Milt JacksonVibraphone [Vibes]640665George & Ira GershwinIra Gershwin/George GershwinWritten-ByLegrand Jazz34-1The Jitterburg Waltz 3:22299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra253777Phil WoodsAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass72480Jerome RichardsonClarinet, Baritone Saxophone [Baritone]356444Kenny DennisDrums30721Herbie MannFlute260721Barry GalbraithGuitar613980Betty GlamannHarp252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet372557Eddie CostaVibraphone [Vibes]253482Fats WallerWritten-By34-2Nuages2:59299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra262160George DuvivierBass263096Don LamondDrums30721Herbie MannFlute265629Hank JonesPiano257115Ben WebsterTenor Saxophone [Tenor Sax]281335Billy ByersTrombone274978Eddie BertTrombone275274Frank RehakTrombone252996Jimmy ClevelandTrombone287994Major HolleyMajor HollyTuba253481Django ReinhardtWritten-By34-3Night In Tunisia 5:17299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra363532Gene QuillAlto Saxophone [Alto Sax]253777Phil WoodsAlto Saxophone [Alto Sax]237977Teo MaceroBaritone Saxophone [Baritone Sax]258461Milt HintonBass260724Osie JohnsonDrums301721Jim BuffingtonFlugelhorn [Flugel Horn]354660Nat PiercePiano264565Seldon PowellTenor Saxophone [Tenor Sax]179055Art FarmerTrumpet20956Donald ByrdTrumpet271027Ernie RoyalTrumpet274986Joe WilderTrumpet473375Don ElliottVibraphone [Vibes]Jon Hendricks/Dizzy Gillespie/Frank PaparelliWritten By64694Dizzy GillespieWritten-By370787Frank PaparelliWritten-By253478Jon HendricksWritten-By34-4Blue And Sentimental 4:13299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra262160George DuvivierBass263096Don LamondDrums30721Herbie MannFlute265629Hank JonesPiano257115Ben WebsterTenor Saxophone [Tenor Sax]281335Billy ByersTrombone274978Eddie BertTrombone275274Frank RehakTrombone252996Jimmy ClevelandTrombone287994Major HolleyMajor HollyTubaCount Basie/Mack David/Jerry LivingstonWritten By145262Count BasieWritten-By410541Jerry LivingstonWritten-By313469Mack DavidWritten-By34-5Stompin At The Savoy 2:23299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra363532Gene QuillAlto Saxophone [Alto Sax]253777Phil WoodsAlto Saxophone [Alto Sax]237977Teo MaceroBaritone Saxophone [Baritone Sax]258461Milt HintonBass260724Osie JohnsonDrums301721Jim BuffingtonFlugelhorn [Flugel Horn]354660Nat PiercePiano264565Seldon PowellTenor Saxophone [Tenor Sax]275274Frank RehakTrombone252996Jimmy ClevelandTrombone179055Art FarmerTrumpet20956Donald ByrdTrumpet271027Ernie RoyalTrumpet274986Joe WilderTrumpet473375Don ElliottVibraphone [Vibes]Andy Razaf/Benny Goodman/Edgar Sampson/Chick WebbWritten By301998Andy RazafWritten-By254768Benny GoodmanWritten-By294491Chick WebbWritten-By307404Edgar SampsonWritten-By34-6Django7:16299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra253777Phil WoodsAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass72480Jerome RichardsonClarinet, Baritone Saxophone [Baritone]356444Kenny DennisDrums30721Herbie MannFlute260721Barry GalbraithGuitar613980Betty GlamannHarp252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet372557Eddie CostaVibraphone [Vibes]267675John Lewis (2)Written-By34-7Wild Man Blues 2:34299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra253777Phil WoodsAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass72480Jerome RichardsonClarinet, Baritone Saxophone [Baritone]356444Kenny DennisDrums30721Herbie MannFlute260721Barry GalbraithGuitar613980Betty GlamannHarp252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet372557Eddie CostaVibraphone [Vibes]Louis Armstrong/Jelly Roll MortonWritten By309976Jelly Roll MortonWritten-By38201Louis ArmstrongWritten-By34-8Rosetta3:25299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra262160George DuvivierBass263096Don LamondDrums30721Herbie MannFlute265629Hank JonesPiano257115Ben WebsterTenor Saxophone [Tenor Sax]281335Billy ByersTrombone274978Eddie BertTrombone275274Frank RehakTrombone252996Jimmy ClevelandTrombone287994Major HolleyMajor HollyTuba257353Earl HinesWritten-By780400Henri WoodeWritten-By34-9’Round Midnight 3:47299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra253777Phil WoodsAlto Saxophone [Alto Sax]259778Paul Chambers (3)Bass72480Jerome RichardsonClarinet, Baritone Saxophone [Baritone]356444Kenny DennisDrums30721Herbie MannFlute260721Barry GalbraithGuitar613980Betty GlamannHarp252310Bill EvansPiano97545John ColtraneTenor Saxophone [Tenor Sax]23755Miles DavisTrumpet372557Eddie CostaVibraphone [Vibes]264203Bernie HanighenWritten-By258696Cootie WilliamsWritten-By145256Thelonious MonkWritten-By34-10Don‘t Get Around Much Anymore 5:53299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra262160George DuvivierBass263096Don LamondDrums30721Herbie MannFlute265629Hank JonesPiano257115Ben WebsterTenor Saxophone [Tenor Sax]281335Billy ByersTrombone274978Eddie BertTrombone275274Frank RehakTrombone252996Jimmy ClevelandTrombone287994Major HolleyMajor HollyTuba449216Bob RussellWritten-By145257Duke EllingtonWritten-By34-11In A Mist 3:20299191Michel Legrand Et Son OrchestreMichael Legrand Orchestra363532Gene QuillAlto Saxophone [Alto Sax]253777Phil WoodsAlto Saxophone [Alto Sax]237977Teo MaceroBaritone Saxophone [Baritone Sax]258461Milt HintonBass260724Osie JohnsonDrums301721Jim BuffingtonFlugelhorn [Flugel Horn]354660Nat PiercePiano264565Seldon PowellTenor Saxophone [Tenor Sax]275274Frank RehakTrombone252996Jimmy ClevelandTrombone179055Art FarmerTrumpet20956Donald ByrdTrumpet271027Ernie RoyalTrumpet274986Joe WilderTrumpet473375Don ElliottVibraphone [Vibes]282067Bix BeiderbeckeWritten-By44294Membran Music Ltd.10Manufactured By282587WOR Studios23Recorded At279275Radio Recorders23Recorded At680154Royal Roost (2)23Recorded At278369Columbia Recording Studios23Recorded At411329Apex Studios, New York23Recorded At159832Harry Smith Recording Studios23Recorded At299648United Sound Systems23Recorded At1826264Onyx Club23Recorded At608162WNYC Radio23Recorded At120441Birdland23Recorded At274891Van Gelder Studio, Hackensack, New Jersey23Recorded At282680Beltone Studios23Recorded At273899Audio-Video Studios23Recorded At285739Columbia 30th Street Studio23Recorded At897104Columbia Studio D23Recorded At892763Le Poste Parisien23Recorded At1507291Plaza Hotel, New York City23Recorded At + +95537Johann Sebastian BachBachThe Complete Bach Edition2041348WLP Ltd.Booklet Editor [Booklet Editing]2257291Archiv Für Kunst Und GeschichteIllustration [Booklet Illustrations]RemasteredStereoCompilationReissueClassicalWorldwide2012-03-00153 CD's in individual cardboard sleeves and 354-page booklet packaged in a cardboard box in an o-card. +WARNER CLASSICS BOXED EDITION 153CD+1DVDNeeds Vote2280259Sacred Cantatas (Cantates Sacrées ∙ Geistliche Kantaten)Cantatas, BWV 1-3BWV 1 Wie Schön Leuchtet Der Morgenstern (Festo Annuntiationis Mariae = At The Feast Of Annunciation ∙ Zu Mariae Verkündigung ∙ Pour L'Annonciation De Marie)25:32716084Nikolaus HarnoncourtConductor1-1[Coro]: »Wie Schön Leuchtet Der Morgenstern«9:361-2Recitativo (Tenore): »Du Wahrer Gottes Und Marien Sohn«0:551-3Aria (Soprano): »Erfüllet, Ihr Himmlischen Göttlichen Flammen«5:051-4Recitativo (Basso): »Ein Irdscher Glanz, Ein Leiblich Licht«0:581-5Aria (Tenore): »Unser Mund Und Ton Der Saiten«7:211-6Choral (Coro): »Wie Bin Ich Doch So Herzlich Froh«1:40BWV 2 Ach Gott, Vom Himmel Sieh Darein (Dominica 2 Post Trinitatis = At The 2nd Sunday After Trinity ∙ Am 2. Sonnteg Nach Trinitatis ∙ 2ème Dimanche Après La Trinité)18:55716084Nikolaus HarnoncourtConductor1-7[Coro]: »Ach Gott, Vom Himmel Sieh Darein«3:521-8Recitativo (Tenore): »Sie Lehren Eitel Falsche List«1:021-9Aria (Alto): »Tilg, O Gott, Die Lehren«4:011-10Recitativo (Basso): »Die Armen Sind Verstört«1:411-11Aria (Tenore): »Durchs Feuer Wird Das Silber Rein«7:131-12Choral (Coro): »Das Wollst Du, Gott, Bewahren Rein«1:14BWV 3 Ach Gott, Wie Manches Herzeleid (Dominica 2 Post Epiphanias = At The 2nd Sunday After Epiphany ∙ Am 2. Sonntag Nach Epiphanias ∙ Pour Le Dimanche Après L'Epiphanie)24:44716084Nikolaus HarnoncourtConductor1-13[Coro]: »Ach Gott, Wie Manches Herzeleid«4:551-14[Choral] Recitativo (Soprano, Alto, Tenore, Basso, Coro): »Wie Schwerlich Lässt Sich Fleisch Und Blut«2:281-15Aria (Basso): »Empfind Ich Höllenangst Und Pein«5:501-16Recitativo (Tenore): »Es Mag Mir Leib Und Geist Verschmachten«1:141-17Aria (Duetto: Soprano, Alto): »Wenn Sorgen Auf Mich Dringen«8:341-18Choral (Coro): »Erhalt Mein Herz Im Glauben Rein«0:43Cantatas, BWV 4-6BWV 4 Christ Lag In Todes Banden (Feria 1 Paschatos = On The 1st Day Of Easter ∙ Am 1. Osterfeiertag ∙ Pour La 1ère Fête De Pâques)20:09716084Nikolaus HarnoncourtConductor2-1Sinfonia1:062-2[Coro] Versus I »Christ Lag In Todes Banden«4:182-3[Duetto] (Soprano, Alto) Versus II »Den Tod Niemand Zwingen Kunnt«3:412-4[Aria] (Tenore) Versus III »Jesus Christus, Gottes Sohn«2:182-5[Coro] Versus IV »Es War Ein Wunderlicher Krieg«2:282-6[Aria] (Basso) Versus V »Hier Ist Das Rechte Osterlamm«3:002-7[Duetto] (Soprano, Tenore) Versus VI »So Feiern Wir Das Hohe Fest«2:082-8Choral (Coro) Versus VII »Wir Essen Und Leben Wohl«1:19BWV 5 Wo Soll Ich Fliehen Hin (Dominica 19 Post Trinitatis = At The 18th Sunday After Trinitaty ∙ Am 19. Sonntag Nach Trinitatis ∙ Pour La 19ème Dimanche Après La Trinité)22:46716084Nikolaus HarnoncourtConductor2-9[Coro] »Wo Soll Ich Fliehen Hin«3:532-10Recitativo (Basso) »Der Sünden Wust Hat Mich Nicht Nur Befleckt«1:032-11Aria (Tenore) »Ergieße Dich Reichlich«6:372-12Recitativo (Alto) »Mein Treuer Heiland Tröstet Mich«1:472-13Aria (Basso) »Verstumme, Höllenheer«7:492-14Recitativo (Soprano) »Ich Bin Ja Nur Das Kleinste Teil Der Welt«0:482-15Choral (Coro) »Führ Auch Mein Herz Und Sinn«0:58BWV 6 Bleib Bei Uns, Denn Es Will Abend Werden (Feria 2 Paschatos = On The 2nd Day Of Easter ∙ Am 2. Osterfeiertag ∙ Pour La 2ème Fête De Pâques)18:52716084Nikolaus HarnoncourtConductor2-16[Coro] »Bleib Bei Uns, Denn Es Will Abend Werden«5:332-17Aria (Alto) »Hochgelobter Gottessohn«3:452-18Choral (Soprano) »Ach Bleib Bei Uns, Herr Jesu Christ«4:042-19Recitativo (Basso) »Es Hat Die Dunkelheit An Vielen Orten«0:402-20Aria (Tenore) »Jesu, Laß Uns Auf Dich Sehen«4:072-21Choral (Coro) »Beweis Dein Macht, Herr Jesu Christ«0:43Cantatas, BWV 7-9BWV 7 Christ Unser Herr Zum Jordan Kam (Festo S. Joannis Baptistae = At The Feast Of John The Baptist ∙ Am Feste Johannis Des Täufers ∙ Pour La Fête De St. Jean)25:58845763Gustav LeonhardtConductor3-1[Coro] »Christ Unser Herr Zum Jordan Kam«7:503-2Aria (Basso) »Merkt Und Hört, Ihr Menschenkinder«5:403-3Recitativo (Tenore) »Dies Hat Gott Klar Mit Worten«1:163-4Aria (Tenore) »Des Vaters Stimme Ließ Sich Hören«4:583-5Recitativo (Basso) »Als Jesus Dort Nach Seinen Leiden«1:013-6Aria (Alto) »Menschen, Glaubt Doch Dieser Gnade«4:003-7Choral (Coro) »Das Aug Allein Das Wasser Sieht«1:21BWV 8 Liebster Gott, Wenn Werd Ich Sterben (Dominica 16 Post Trinitatis = At The 16th Sunday After Trinity ∙ Am 16. Sonntag Nach Trinitatis ∙ Pour Le 16ème Dimanche Après La Trinité)19:03845763Gustav LeonhardtConductor3-8[Coro] »Liebster Gott, Wenn Werd Ich Sterben?«5:503-9Aria (Tenore) »Was Willst Du Dich, Mein Geist, Entsetzen«4:103-10Recitativo (Alto) »Zwar Fühlt Mein Schwaches Herz«1:103-11Aria (Basso) »Doch Weichet, Ihr Tollen, Vergeblichen Sorgen!«5:173-12Recitativo (Soprano) »Behalte Nur, O Welt, Das Meine!«1:133-13Choral (Coro) »Herrscher Über Tod Und Leben«1:32BWV 9 Es Ist Das Heil Uns Kommen Her (Dominica 6 Post Trinitatis = At The 6th Sunday After Trinity ∙ Am 6. Sonntag Nach Trinitatis ∙ Pour Le 6ème Dimanche Après La Trinité)24:45845763Gustav LeonhardtConductor3-14[Coro] »Es Ist Das Heil Uns Kommen Her«4:573-15Recitativo (Basso) »Gott Gab Uns Ein Gesetz«1:153-16 Aria (Tenore) »Wir Waren Schon Zu Tief Gesunken«7:223-17Recitativo (Basso) »Doch Mußte Das Gesetz Erfüllet Werden«1:173-18Aria (Duetto: Soprano, Alto) »Herr, Du Siehst Statt Guter Werke«7:253-19Recitativo (Basso) »Wenn Wir Die Sünd Aus Dem Gesetz Erkennen«1:243-20Choral (Coro) »Ob Sichs Anließ, Als Wollt Er Nicht«1:05Cantatas, BWV 10-12BWV 10 Meine Seel Erhebt Den Herren (Festo Visitationis Mariae = At The Feast Visitation ∙ Zu Mariae Heimsuchung ∙ La Visitation)21:53845763Gustav LeonhardtConductor4-1[Coro]: »Meine Seel Erhebt Den Herren«4:034-2Aria (Soprano): »Herr, Der Du Stark Und Machtig Bist«7:284-3Recitativo (Tenore): »Des Höchsten Güt Und Treu«1:244-4Aria (Basso): »Gewaltige Stößt Gott Vom Stuhl«3:284-5Duetto (Alto, Tenore): »Er Denket Der Barmherzigkeit«2:204-6Recitativo (Tenore): »Was Gott Den Vätern Alter Zeiten«2:104-7Choral (Coro): »Lob Und Preis Sei Gott Dem Vater«1:07BWV 11 Lobet Gott In Seinen Reichen (Oratorium Festo Ascensionis Christi = Ascension Day Oratorio ∙ Himmelfahrts-Oratorium ∙ Oratorio Pour La Fête De L'Ascension)28:53716084Nikolaus HarnoncourtConductor4-8[Coro]: »Lobet Gott In Seinen Reichen«5:094-9Recitativo (Tenore): »Der Herr Jesus Hub Seine Hande Auf«0:294-10Recitativo (Basso): »Ach, Jesu, Ist Dein Abschied Schon So Nah?«1:004-11Aria (Alto): »Ach, Bleibe Doch, Mein Liebstes Leben«6:434-12Recitativo (Tenore): »Und Ward Aufgehoben Zusehends«0:254-13Choral (Coro): »Nun Lieget Alles Unter Dir«1:174-14Recitativo (Tenore, Basso): »Und Da Sie Ihm Nachsahen«1:044-15Recitativo (Alto): »Ach Ja! So Komme Bald Zurück«0:384-16Recitativo (Tenore): »Sie Aber Beteten Ihn An«0:414-17Aria (Soprano): »Jesu, Deine Gnadenblicke«6:514-18Choral (Coro): »Wann Soll Es Doch Geschehen«4:43BWV 12 Weinen, Klagen, Sorgen, Zagen (Dominica Jubilitate = At The Sunday Jubilate ∙ Am Sonntag Jubilate ∙ Pour Le Dimanche De Jubilate)23:41845763Gustav LeonhardtConductor4-19Sinfonia2:214-20[Coro]: »Weinen, Klagen, Sorgen, Zagen«6:024-21[Arioso] (Alto): »Wir Müssen Durch Viel Trübsal«0:574-22Aria (Alto): »Kreuz Und Krone Sind Verbunden«6:244-23Aria (Basso): »Ich Folge Christo Nach«2:464-24Aria (Tenore): »Sei Getreu, Alle Pein«4:184-25Choral: »Was Gott Tut, Das Ist Wohlgetan«0:53Cantatas, BWV 13, 14 & 16BWV 13 Meine Seufzer, Meine Tränen (Dominica 2 Post Epiphanias = At The 2nd Sunday After Epiphany ∙ Am 2. Sonntag Nach Epiphanias ∙ Pour Le 2ème Dimanche Aprés L'Epiphanie)23:13845763Gustav LeonhardtConductor5-1Aria (Tenore) »Meine Seufzer, Meine Tränen«7:325-2Recitativo (Alto) »Mein Liebster Gott Lässt Mich Annoch«1:145-3Choral (Alto) »Der Gott, Der Mir Hat Versprochen«3:105-4Recitativo (Soprano) »Mein Kummer Nimmet Zu«1:225-5Aria (Basso) »Ächzen Und Erbärmlich Weinen«9:065-6Choral (Coro) »So Sei Nun, Seele, Deine«0:57BWV 14 Wär Gott Nicht Mit Uns Diese Zeit (Dominica 4 Post Epiphanias = At The 4th Sunday After Epiphany ∙ Am 4. Sonntag Nach Epiphanias ∙ Pour Le 4ème Dimanche Aprés L'Epiphanie)17:42845763Gustav LeonhardtConductor5-7[Coro] »Wär Gott Nicht Mit Uns Diese Zeit«6:235-8Aria (Soprano) »Unsre Stärke Heißt Zu Schwach«4:465-9Recitativo (Tenore) »Ja, Hätt Es Gott Nur Zugegeben«0:455-10Aria (Basso) »Gott, Bei Deinem Starken Schützen«4:445-11Choral (Coro) »Gott Lob Und Dank, Der Nicht Zugab«1:12BWV 16 Herr Gott, Dich Loben Wir (Festo Circumcisionis Christi = For The Feast Of Circumcision ∙ Am Fest Der Beschneidung Christi ∙ Pour Le Fête De La Circuncision De Christ)18:05845763Gustav LeonhardtConductor5-12[Coro] »Herr Gott, Dich Loben Wir«1:385-13Recitativo (Basso) »So Stimmen Wir Bei Dieser Frohen Zeit«1:145-14[Coro &] Aria (Basso) »Laßt Uns Jauchzen, Laßt Uns Freuen«3:525-15Recitativo (Alto) »Ach Treuer Hort«1:295-16Aria (Tenore) »Geliebter Jesu, Du Allein«8:495-17Choral (Coro) »All Solch Dein Güt Wir Preisen«1:03Cantatas, BWV 17-19BWV 17 Wer Dank Opfert, Der Preiset Mich Prima Parte (Dominica 14 Post Trinitatis = At The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14ème Dimanche Après La Trinité)9:56716084Nikolaus HarnoncourtConductor6-1[Coro]: »Wer Dank Opfert, Der Preiset Mich«5:046-2Recitativo (Alto): »Es Muß Die Ganze Welt«1:036-3Aria (Soprano): »Herr, Deine Güte«3:49BWV 17 Wer Dank Opfert, Der Preiset Mich Seconda Parte (Dominica 14 Post Trinitatis = At The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14ème Dimanche Après La Trinité)7:53716084Nikolaus HarnoncourtConductor6-4Recitativo (Tenore): »Einer Aber Unter Ihnen«0:416-5Aria (Tenore): »Welch Übermaß Der Güte«4:126-6Recitativo (Basso): »Sieh Meinen Willen An«1:086-7Choral (Coro): »Wie Sich Ein Vatr Erbarmet«2:00BWV 18 Gleichwie Der Regen Und Schnee Vom Himmel Fällt (Weimar Version ∙ Weimarer Fassung ∙ Version De Weimar) (Dominica Sexagesimae = At The Sunday Sexagesimae ∙ Am Sonntag Sexagesimae ∙ Pour Le Dimanche De La Sexagésime)14:21716084Nikolaus HarnoncourtConductor6-8Sinfonia3:076-9Recitativo (Basso): »Gleichwie Der Regen Und Schnee«1:066-10Recitativo [& Litanei] (Soprano, Tenore, Basso, Coro): »Mein Gott, Hier Wird Mein Herze Sein«5:506-11Aria (Soprano): »Mein Seelenschatz Ist Gottes Wort«3:046-12Choral (Coro): »Ich Bitt, O Herr, Aus Herzensgrund«1:23BWV 19 Es Erhub Sich Ein Streit (Festo Michaelis = At The Feast St Michael ∙ Am Michaelisfest ∙ Pour La Fête St Michel)19:39716084Nikolaus HarnoncourtConductor6-13[Coro]: »Es Erhub Sich Ein Streit«4:466-14Recitativo (Basso): »Gottlob! Der Drache Liegt«0:506-15Aria (Soprano): »Gott Schickt Uns Mahanaim Zu«4:216-16Recitativo (Tenore): »Was Ist Der Schnöde Mensch«0:476-17Aria (Tenore): »Bleibt, Ihr Engel, Bleibt Bei Mir!«6:416-18Recitativo (Soprano): »Laßt Uns Das Angesicht«0:386-19Choral (Coro): »Laß Dein Engel Mit Mir Fahren«1:36Cantatas, BWV 20 & 21BWV 20 O Ewigkeit, Du Donnerwort Prima Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)18:01716084Nikolaus HarnoncourtConductor7-1[Coro]: »O Ewigkeit, Du Donnerwort«4:447-2Recitativo (Tenore): »Kein Unglück Ist In Aller Welt Zu Finden«0:537-3Aria (Tenore): »Ewigkeit, Du Machst Mir Bange«3:217-4Recitativo (Basso): »Gesetzt, Es Daurte Der Verdammten Qual«1:137-5Aria (Basso): »Gott Ist Gerecht«4:277-6Aria (Alto): »O Mensch, Errette Dein Seele«2:237-7Choral (Coro): »Solang Ein Gott Im Himmel Lebt«1:00BWV 20 O Ewigkeit, Du Donnerwort Seconda Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)8:50716084Nikolaus HarnoncourtConductor7-8Aria (Basso): »Wacht Auf, Wacht Auf, Verlornen Schafe«2:467-9Recitativo (Alto): »Verlaß, O Mensch, Die Wollust Dieser Welt«1:167-10Aria (Duetto: Alto, Tenore): »O Menschenkind, Hör Auf Geschwind«3:427-11Choral (Coro): »O Ewigkeit, Du Donnerwort«1:15BWV 21 Ich Hatte Viel Bekümmernis Prima Parte (Dominica 3 Post Trinitatis / Per Ogni Tempo = At The 3rd Sunday After Trinity / For Every Time ∙ Am 3. Sonntag Nach Trinitatis / Für Jede Zeit ∙ Pour Le 3ème Dimanche Après La Trinité / Pout Tous Le Temps)19:20716084Nikolaus HarnoncourtConductor7-12Sinfonia2:327-13Coro: »Ich Hatte Viel Bekümmernis«2:597-14Aria (Soprano): »Seufzer, Tränen, Kummer, Not«3:487-15Recitativo (Tenore): »Wie Hast Du Dich, Mein Gott«1:337-16Aria (Tenore): »Bäche Von Gesalznen Zähren«4:567-17Coro: »Was Betrübst Du Dich, Meine Seele«3:32BWV 21 Ich Hatte Viel Bekümmernis Seconda Parte (Dominica 3 Post Trinitatis / Per Ogni Tempo = At The 3rd Sunday After Trinity / For Every Time ∙ Am 3. Sonntag Nach Trinitatis / Für Jede Zeit ∙ Pour Le 3ème Dimanche Après La Trinité / Pout Tous Le Temps)12:31716084Nikolaus HarnoncourtConductor7-18Recitativo (Soprano, Basso): »Ach Jesu, Meine Ruh«1:147-19Duetto (Soprano. Basso): »Komm, Mein Jesu«4:327-20Coro: »Sei Nun Wieder Zufrieden«5:107-21Aria (Tenore): »Erfreue Dich, Seele«3:157-22Coro: »Das Lamm, Das Erwürget Ist«3:20Cantatas, BWV 22-25BWV 22 Jesus Nahm Zu Sich Die Zwölfe (Dominica Estomihi = At The Sunday Quinquadesimae ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche Estomihi)17:47845763Gustav LeonhardtConductor8-1[Aria - Coro] (Tenore, Basso): »Jesus Nahm Zu Sich Die Zwölfe«4:528-2Aria (Alto): »Mein Jesu, Ziehe Mich Nach Dir«5:058-3Recitativo (Basso): »Mein Jesu, Ziehe Mich«2:068-4Aria (Tenore): »Mein Alles In Allem«3:428-5Choral (Coro): »Ertöt Uns Durch Dein Güte«2:09BWV 23 Du Wahrer Gott Und Davids Sohn (Dominica Estomihi = At The Sunday Quinquadesimae ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche Estomihi)18:57845763Gustav LeonhardtConductor8-6Aria [Duetto] (Soprano, Alto): »Du Wahrer Gott Und Davids Sohn«7:578-7Recitativo (Tenore): »Ach! Gehe Nicht Vorüber«1:318-8[Coro]: »Aller Augen Warten, Herr«4:298-9Choral (Coro): »Christe, Du Lamm Gottes«5:08BWV 24 Ein Ungefärbt Gemüte (Dominica 4 Post Trinitatis = At The 4th Sunday After Trinity ∙ Am 4. Sonntag Nach Trinitatis ∙ Pour Le 4'eme Dimanche Après La Trinité)17:08716084Nikolaus HarnoncourtConductor8-10Aria (Alto): »Ein Ungefärbt Gemüte«3:348-11Recitativo (Tenore): »Die Redlichkeit Ist Eine Von Den Gottesgaben«1:528-12[Coro]: »Alles Nun, Das Ihr Wollet«3:598-13Recitativo (Basso): »Die Heuchelei Ist Eine Brut«1:298-14Aria (Tenore): »Treu Und Wahrheit Sei Der Grund«3:398-15Choral (Coro): »O Gott, Du Frommer Gott«2:42BWV 25 Es Ist Nichts Gesundes An Meinem Leibe (Dominica 14 Post Trinitatis = At The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14'eme Dimanche Après La Trinité)15:18716084Nikolaus HarnoncourtConductor8-16[Coro]: »Es Ist Nichts Gesundes An Meinem Leibe«4:448-17Recitativo (Tenore): »Die Ganze Welt Ist Nur Ein Hospital«1:278-18Aria (Basso): »Ach, Wo Hol Ich Armer Rat«3:068-19Recitativo (Soprano): »O Jesu, Lieber Meister«1:118-20Aria (Soprano): »Öffne Meinen Schlechten Liedern«3:398-21Choral (Coro): »Ich Will Alle Meine Tage«1:11Cantatas, BWV 26-29BWV 26 Ach Wie Flüchtig, Ach Wie Nichtig (Dominica 24 Post Trinitatis = At The 24th Sunday After Trinity ∙ Am 24. Sonntag Nach Trinitatis ∙ Pour Le 24'eme Dimanche Après La Trinité)16:39716084Nikolaus HarnoncourtConductor9-1[Coro]: »Ach Wie Flüchtig, Ach Wie Nichtig«2:499-2Aria (Tenore): »So Schnell Ein Rauschend Wasser Schießt«7:429-3Recitativo (Alto): »Die Freud Wird Zur Traurigkeit«0:499-4Aria (Basso): »An Irdische Schätze Das Herze Zu Hängen«3:539-5Recitativo (Soprano): »Die Höchste Herrlichkeit Und Pracht«0:449-6Choral (Coro): »Ach Wie Flüchtig, Ach Wie Nichtig«0:50BWV 27 Wer Weiss, Wie Nahe Mir Mein Ende (Dominica 16 Post Trinitatis = At The 16th Sunday After Trinity ∙ Am 16. Sonntag Nach Trinitatis ∙ Pour Le 16'eme Dimanche Après La Trinité)15:30716084Nikolaus HarnoncourtConductor9-7[Coro ∙ Recitativo]: »Wer Weiß, Wie Nahe Mir Mein Ende«4:559-8Recitativo (Tenore): »Mein Leben Hat Kein Ander Ziel«0:479-9Aria (Alto): »Willkommen! Will Ich Sagen«4:309-10Recitativo (Soprano): »Ach, Wer Doch Schon Im Himmel Wär!«0:389-11Aria (Basso): »Gute Nacht, Du Weltgetümmel!«3:349-12Choral (Coro): »Welt, Ade! Ich Bin Dein Müde«1:15BWV 28 Gottlob! Nun Geht Das Jahr Zu Ende (Dominica Post Nativitatis Christi = At The Sunday After Christmas ∙ Am Sonntag Nach Weihnachten ∙ Pour Le Dimanche Après La Noël)15:56716084Nikolaus HarnoncourtConductor9-13Aria (Soprano): »Gottlob! Nun Geht Das Jahr Zu Ende«4:229-14[Coro]: »Nun Lob, Mein Seel, Den Herren«4:599-15[Recitativo ∙ Arioso] (Basso): »So Spricht Der Herr«1:549-16Recitativo (Tenore): »Gott Ist Ein Quell, Wo Lauter Güte Fleußt«1:049-17Aria (Duetto: Alto, Tenore) »Gott Hat Uns Im Heurigen Jahre Gesegnet«2:339-18Choral (Coro): »All Solch Dein Güt Wir Preisen«1:11BWV 29 Wir Danken Dir, Gott, Wir Danken Dir (Kantate Zum Ratswechsel 1731 = For The Town Council Election ∙ Pour L'Éction De La Cité)23:33716084Nikolaus HarnoncourtConductor9-19Sinfonia3:389-20[Coro]: »Wir Danken Dir, Gott, Wir Danken Dir«3:039-21Aria (Tenore): »Halleluja, Stärk Und Macht«6:319-22Recitativo (Basso): »Gottlob! Es Geht Uns Wohl!«0:499-23Aria (Soprano): »Gedenk An Uns Mit Deiner Liebe«5:499-24Recitativo (Alto, Coro): »Vergiß Es Ferner Nicht«0:269-25Aria (Alto): »Halleluja, Stärk Und Macht«1:539-26Choral (Coro): »Sei Lob Und Preis Mit Ehren«1:24Cantatas, BWV 30 & 31BWV 30 Freue Dich Erlöste Schar Prima Parte (Festo S. Joannis Bapistae = At The Feast Of John The Baptist ∙ Am Feste Johannis Des Täufers ∙ Pour La Fête De St Jean)16:57716084Nikolaus HarnoncourtConductor10-1Coro: »Freue Dich, Erlöste Schar«4:2710-2Recitativo (Basso): »Wir Haben Rast«0:4910-3Aria (Basso): »Gelobet Sei Gott, Gelobet Sein Name«5:1310-4Recitativo (Alto): »Der Herold Kömmt«0:3610-5Aria (Alto): »Kommt, Ihr Angefochtnen Sünder«4:3810-6Choral (Coro): »Eine Stimme Läßt Sich Hören«1:14BWV 30 Freue Dich Erlöste Schar Seconda Parte (Festo S. Joannis Bapistae = At The Feast Of John The Baptist ∙ Am Feste Johannis Des Täufers ∙ Pour La Fête De St Jean)20:34716084Nikolaus HarnoncourtConductor10-7Recitativo (Basso): »So Bist Du Denn, Mein Heil, Bedacht«0:5610-8Aria (Basso): »Ich Will Nun Hassen«7:0110-9Recitativo (Soprano): »Und Ob Wohl Sonst Der Unbestand«0:4910-10Aria (Soprano): »Eilt, Ihr Stunden, Kommt Herbei«5:5710-11Recitativo (Tenore): »Geduld, Der Angenehme Tag«1:1410-12Coro: »Freue Dich, Geheilgte Schar«4:44BWV 31 Der Himmel Lacht! Die Erde Jubilieret (Feria 1 Paschatos = On The First Day Of Easter ∙ Am 1. Osterfeiertag ∙ Pour La 1er Fête De Pâques)20:59716084Nikolaus HarnoncourtConductor10-13Sonata3:1210-14Coro (Coro, Soprano, Alto): »Der Himmel Lacht! Die Erde Jubilieret«4:0710-15Recitativo (Basso): »Erwünschter Tag! Sei, Seele, Wieder Froh«2:0510-16 Aria (Basso): »Fürst Des Lebens, Starker Streiter«2:2610-17Recitativo (Tenore): »So Stehe Dann, Du Gottergebne Seele«1:0910-18Aria (Tenore): »Adam Muß In Uns Verwesen«2:1810-19Recitativo (Soprano): »Weil Dann Das Haupt Sein Glied«0:4910-20Aria (Soprano): »Letzte Stunde, Brich Herein«3:4910-21Choral (Coro) »So Fahr Ich Hin Zu Jesu Christ«1:04Cantatas, BWV 32-34BWV 32 Liebster Jesu, Mein Verlangen (Dominica 1 Post Epiphanias = At The 1st Sunday After Epiphany ∙ Am 1. Sonntag Nach Epiphanias ∙ Pour Le 1er Dimanche Aprés L'Epiphanie)23:43845763Gustav LeonhardtConductor11-1Aria (Soprano): »Liebster Jesu, Mein Verlangen«5:4311-2Recitativo (Basso): »Was Ists, Daß Du Mich Gesuchet?«0:2811-3Aria (Basso): »Hier, In Meines Vaters Stätte«7:3511-4Recitativo (Soprano, Basso): »Ach! Heiliger Und Großer Gott«2:4911-5Aria (Duetto: Soprano, Basso): »Nun Verschwinden Alle Plagen«6:0211-6Choral (Coro): »Mein Gott, Öffne Mir Die Pforten«1:15BWV 33 Allein Zu Dir, Herr Jesu Christ (Dominica 13 Post Trinitatis = At The 13th Sunday After Trinity ∙ Am 13. Sonntag Nach Trinitatis ∙ Pour Le 13'eme Dimanche Après La Trinité)21:17845763Gustav LeonhardtConductor11-7[Coro]: »Allein Zu Dir, Herr Jesu Christ«4:5111-8Recitativo (Basso): »Mein Gott Und Richter«1:0611-9Aria (Alto): »Wie Furchtsam Wankten Meine Schritte«8:0711-10Recitativo (Tenore): »Mein Gott, Verwirf Mich Nicht«1:1111-11Aria (Duetto: Tenore, Basso): »Gott, Der Du Die Liebe Heißt«4:3511-12Choral (Coro): »Ehr Sei Gott In Dem Höchsten Thron«1:34BWV 34 O Ewiges Feuer, O Ursprung Der Liebe (Fest Pentecostes = At Whit Sunday ∙ Am 1. Pfingsttag ∙ Pour Le 1er Jour De Pentecôte)18:20716084Nikolaus HarnoncourtConductor11-13[Coro]: »O Ewiges Feuer, O Ursprung Der Liebe«8:0311-14Recitativo (Tenore): »Herr! Unsre Herzen Halten Dir Dein Wort«0:3911-15Aria (Alto): »Wohl Euch, Ihr Auserwählten Seelen«6:4311-16Recitativo (Basso): »Erwählt Sich Gott Die Heilgen Hütten«0:3011-17Coro: »Friede Über Israel! Dankt Den Höchsten Wunderhänden«2:25Cantatas, BWV 35 & 36BWV 35 Geist Und Seele Wird Verwirret Prima Parte (Dominica 12 Post Trinitatis = At The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12'eme Dimanche Après La Trinité)18:45716084Nikolaus HarnoncourtConductor12-1Sinfonia5:3312-2Aria (Alto): »Geist Und Seele Wird Verwirret«8:3412-3Recitativo (Alto): »Ich Wundere Mich, Denn Alles, Was Man Sieht«1:2212-4Aria (Alto): »Gott Hat Alles Wohlgemacht«3:16716084Nikolaus HarnoncourtConductorBWV 35 Geist Und Seele Wird Verwirret Seconda Parte (Dominica 12 Post Trinitatis = At The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12ème Dimanche Après La Trinité)8:1212-5Sinfonia3:3612-6Recitativo (Alto): »Ach, Starker Gott, Lass Mich Doch Dieses«1:0612-7Aria (Alto): »Ich Wünsche Mir, Bei Gott Zu Leben«3:38BWV 36 Schwingt Freudig Euch Empor Prima Parte (Dominica 1 Adventus Christi = At The 1st Sunday In Advent ∙ Am 1. Advent ∙ Pour Le 1er De L'Advent)15:05716084Nikolaus HarnoncourtConductor12-8Coro: »Schwingt Freudig Euch Empor«4:0812-9Choral (Soprano, Alto): »Nun Komm, Der Heiden Heiland«3:4612-10Aria (Tenore): »Die Liebe Zieht Mit Sanften Schritten«5:4012-11Choral (Coro): »Zwingt Die Saiten In Cythara«1:31BWV 36 Schwingt Freudig Euch Empor Seconda Parte (Dominica 1 Adventus Christi = At The 1st Sunday In Advent ∙ Am 1. Advent ∙ Pour Le 1er De L'Advent)14:57716084Nikolaus HarnoncourtConductor12-12Aria (Basso): »Willkommen, Werter Schatz«4:1212-13Choral (Tenore): »Der Du Bist Dem Vater Gleich«1:5112-14Aria (Soprano): »Auch Mit Gedämpften, Schwachen Stimmen«8:1412-15Choral (Coro): »Lob Sei Gott, Dem Vater, G'ton«0:40Cantatas, BWV 37-40BWV 37 Wer Da Gläubet Und Getauft Wird (Festo Ascensionis Christi = On The Ascension Day ∙ Am Feste Der Himmelfahrt Christi ∙ Pour La Fête De Christ)16:24716084Nikolaus HarnoncourtConductor13-1[Coro]: »Wer Da Gläubet Und Getauft Wird«2:3913-2Aria (Tenore): »Der Glaube Ist Das Pfand Der Liebe«5:2713-3Choral (Soprano, Alto): »Herr Gott Vater, Mein Starker Held«3:0913-4Recitativo (Basso): »Ihr Sterblichen, Verlanget Ihr Mit Mir«0:5113-5Aria (Basso): »Der Glaube Schafft Der Seele Flügel«3:0113-6Choral (Coro): »Den Glauben Mir Verleihe«1:24BWV 38 Aus Tiefer Not Schrei Ich Zu Dir (Dominica 21 Post Trinitatis = At The 21th Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)18:36716084Nikolaus HarnoncourtConductor13-7[Coro]: »Aus Tiefer Not Schrei Ich Zu Dir«3:5013-8Recitativo (Alto): »In Jesu Gnade Wird Allein«0:4613-9Aria (Tenore): »Ich Höre Mitten In Dem Leiden«7:5113-10Recitativo (Soprano): »Ach! Daß Mein Glaube Noch So Schwach«1:2113-11Aria (Terzetto: Soprano, Alto, Basso): »Wenn Meine Trübsal Als Mit Ketten«3:2413-12Choral (Coro): »Ob Bei Uns Ist Der Sünden Viel«1:32BWV 39 Brich Dem Hungrigen Dein Brot Prima Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)14:43845763Gustav LeonhardtConductor13-13[Coro]: »Brich Dem Hungrigen Dein Brot«9:1113-14Recitativo (Basso): »Der Reiche Gott Wirft Seinen Uberfluß«1:2513-15Aria (Alto): »Seinem Schöpfer Noch Auf Erden«4:07BWV 39 Brich Dem Hungrigen Dein Brot Seconda Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)10:03845763Gustav LeonhardtConductor13-16[Aria] (Basso): »Wohlzutun Und Mitzuteilen«3:3313-17Aria (Soprano): »Höchster, Was Ich Habe«3:4013-18Recitativo (Alto): »Wie Soll Ich Dir, O Herr«1:3913-19Choral (Coro): »Selig Sind, Die Aus Erbarmen«1:17BWV 40 Darzu Ist Erschienen Der Sohn Gottes (Feria 2 Nativitatis Christi = On The 2nd Day Of Christmas ∙ Am 2. Weihnachtstag ∙ Pour Le 2'eme Jour De Noël)15:08845763Gustav LeonhardtConductor13-20[Coro]: »Darzu Ist Erschienen Der Sohn Gottes«4:2213-21Recitativo (Tenore): »Das Wort Ward Fleisch«1:1513-22Choral (Coro): »Die Sünd Macht Leid«0:3813-23Aria (Basso): »Höllische Schlange, Wird Dir Ncht Bange?«2:0813-24Recitativo (Alto): »Die Schlange, So Im Paradies«1:1013-25Choral (Coro): »Schüttle Deinen Kopf Und Sprich«0:4413-26Aria (Tenore): »Christenkinder, Freuet Euch«3:5013-27Choral (Coro): »Jesu, Nimm Dich Deiner Glieder«1:01Cantatas, BWV 41-43BWV 41 Jesu, Nun Sei Gepreiset (Festo Circumcisionis Christi = At New Year's Day ∙ Neujahr ∙ Pour La Fête De La Circoncision De Christ)27:40716084Nikolaus HarnoncourtConductor14-1[Coro]: »Jesu, Nun Sei Gepreiset«8:5414-2Aria (Soprano): »Lass Uns, O Hochster Gott, Das Jahr Vollbringen«7:0014-3Recitativo (Alto): »Ach! Deine Hand, Dein Segen Muss Allein«0:5914-4Aria (Tenore): »Woferrne Du Den Edlen Frieden«7:4614-5Recitativo (Basso, Coro): »Doch Weil Der Feind Bei Tag Und Nacht«0:4814-6Choral (Coro): »Dein Ist Allein Die Ehre«2:21BWV 42 Am Abend Aber Desselbigen Sabbats (Dominica Quasimodogeniti = On The Sunday Quasimodogeniti ∙ Am Sonntag Quasimodo Geniti ∙ Pour Le Dimanche Quasimodo Geniti)27:12716084Nikolaus HarnoncourtConductor14-7Sinfonia6:1814-8Recitativo (Tenore): »Am Abend Aber Desselbigen Sabbats«0:2714-9Aria (Alto): »Wo Zwei Und Drei Versammlet Sind«10:4314-10Aria (Duetto: Soprano, Tenore): »Verzage Nicht, O Hauflein Klein«3:1814-11Recitativo (Basso): »Man Kann Hiervon Ein Schon Exempel Sehen«0:3914-12Aria (Basso): »Jesus Ist Ein Schild Der Seinen«3:3214-13Choral (Coro): »Verleih Uns Frieden Gnadiglich«2:24BWV 43 Gott Fähret Auf Mit Jauchzen Prima Parte (Fest Ascensionis Christi = On The Ascension Day ∙ Am Feste Der Himmelfahrt Christi ∙ Pour La Fête De L'Ascension De Christ)9:51716084Nikolaus HarnoncourtConductor14-14[Coro]: »Gott Fähret Auf Mit Jauchzen«3:3514-15Recitativo (Tenore): »Es Will Der Hochste Sich Ein Siegsgepräng Bereiten«0:4514-16Aria (Tenore): »Ja Tausendmal Tausend Begleiten Den Wagen«2:2714-17Recitativo (Soprano): »Und Der Herr, Nachdem Er Mit Ihnen Geredet Hatte«0:2014-18Aria (Soprano): »Mein Jesus Hat Nunmehr«2:44BWV 43 Gott Fähret Auf Mit Jauchzen Seconda Parte (Fest Ascensionis Christi = On The Ascension Day ∙ Am Feste Der Himmelfahrt Christi ∙ Pour La Fête De L'Ascension De Christ)10:53716084Nikolaus HarnoncourtConductor14-19Recitativo (Basso): »Es Kommt Der Helden Held«0:4814-20Aria (Basso): »Er Ists, Der Ganz Allein«3:0814-21Recitativo (Alto): »Der Vater Hat Ihm Ja«0:3314-22Aria (Alto): »Ich Sehe Schon Im Geist«3:2314-23Recitativo (Soprano): »Er Will Mir Neben Sich«0:3714-24Choral (Coro): »Du Lebenfürst, Herr Jesu Christ«2:24Cantatas, BWV 44-47BWV 44 Sie Werden Euch In Den Bann Tun (Dominica Exaudi = On The Sunday Exaudi ∙ Am Sonntag Exaudi ∙ Pour Le Dimanche Exaudi)17:21716084Nikolaus HarnoncourtConductor15-1Aria (Duetto: Tenore, Basso): »Sie Werden Euch In Den Bann Tun«2:1615-2[Coro]: »Es Kömmt Aber Die Zeit«1:4715-3Aria (Alto): »Christen Müssen Auf Der Erden«4:3915-4Choral (Tenore): »Ach Gott, Wie Manches Herzeleid«1:1515-5Recitativo (Basso): »Es Sucht Der Antichrist«0:4315-6Aria (Soprano): »Es Ist Und Bleibt Der Christen Trost«5:4815-7Choral (Coro): »So Sei Nun, Seele, Deine«0:58BWV 45 Es Ist Dir Gesagt, Mensch, Was Gut Ist Prima Parte (Dominica 8 Post Trinitatis = On The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)10:29845763Gustav LeonhardtConductor15-8(Coro): »Est Ist Dir Gesagt, Mensch, Was Gut Ist«5:4515-9Recitativo (Tenore): »Der Höchste Läßt Mich Seinen Willen Wissen«0:5615-10Aria (Tenore): »Weiß Ich Gottes Rechte«3:48BWV 45 Es Ist Dir Gesagt, Mensch, Was Gut Ist Seconda Parte (Dominica 8 Post Trinitatis = On The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)8:43845763Gustav LeonhardtConductor15-11Arioso (Basso): »Es Werden Viele Zu Mir Sagen An Jenem Tage«3:0015-12Aria (Alto): »Wer Gott Bekennt Aus Wahrem Herzensgrund«4:0515-13Recitativo (Alto): »So Wird Denn Herz Und Mund Selbst Von Mir Richter Sein«0:5315-14Choral (Coro): »Gib, Dass Ich Tu Mit Fleiß«0:54BWV 46 Schauet Doch Und Sehet, Ob Irgendein Schmerz Sei (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)16:28845763Gustav LeonhardtConductor15-15[Coro]: »Schauet Doch Und Sehet, Ob Irgendein Schmerz Sei«5:4715-16Recitativo (Tenore): »So Klage Du, Zerstörte Gottesstadt«1:4315-17Aria (Basso): »Dein Wetter Zog Sich Auf Von Weiten«2:5715-18Recitativo (Alto): »Doch Bildet Euch, O Sünder, Ja Nicht Ein«0:3815-19Aria (Alto): »Doch Jesus Will Auch Bei Der Strafe«4:2815-20Choral (Coro): »O Großer Gott Der Treu«1:04BWV 47 Wer Sich Selbst Erhöhet, Der Soll Erniedriget Werden (Dominica 17 Post Trinitatis = On The 17th Sunday After Trinity ∙ Am 17. Sonntag Nach Trinitatis ∙ Pour Le 17ème Dimanche Après La Trinité)22:19716084Nikolaus HarnoncourtConductor15-21[Coro]: »Wer Sich Selbst Erhöhet, Der Soll Erniedriget Werden«6:1115-22Aria (Soprano): »Wer Ein Wahrer Christ Will Heißen«9:2615-23Recitativo (Basso): »Der Mensch Ist Kot, Stank, Asch Und Erde«1:3015-24Aria (Basso): »Jesu, Beuge Doch Mein Herze«4:2215-25Choral (Coro): »Der Zeitlichen Ehr Will Ich Gern Entbehrn«0:50Cantatas, BWV 48-51BWV 48 Ich Elender Mensch, Wer Wird Mich Erlösen (Dominica 19 Post Trinitatis = On The 19th Sunday After Trinity ∙ Am 19. Sonntag Nach Trinitatis ∙ Pour Le 19ème Dimanche Après La Trinité)16:03716084Nikolaus HarnoncourtConductor16-1[Coro]: »Ich Elender Mensch, Wer Wird Mich Erlösen«5:3216-2Recitativo (Alto): »O Schmerz, O Elend, So Mich Trifft «1:1716-3Choral (Coro): »Solls Ja So Sein«0:4216-4Aria (Alto): »Ach Lege Das Sodom Der Sündlichen Glieder«3:0116-5Recitativo (Tenore): »Hier Aber Tut Des Heilands Hand«0:3916-6Aria (Tenore): »Vergibt Mir Jesus Meine Sünden«3:4816-7Choral (Coro): »Herr Jesu Christ, Einiger Trost«1:12BWV 49 Ich Geh Und Suche Mit Verlangen (Dominica 20 Post Trinitatis = On The 20th Sunday After Trinity ∙ Am 20. Sonntag Nach Trinitatis ∙ Pour Le 20ème Dimanche Après La Trinité)25:24716084Nikolaus HarnoncourtConductor16-8Sinfonia6:3716-9Aria (Basso): »Ich Geh Und Suche Mit Verlangen«5:0116-10Recitativo [Ed Arioso](Basso, Soprano): »Mein Mahl Ist Zubereit'«2:0516-11Aria (Soprano): »Ich Bin Herrlich, Ich Bin Schön«5:1616-12Recitativo (Soprano, Basso): »Mein Glaube Hat Mich Selbst So Angezogen«1:1416-13Aria (Duetto: Soprano, Basso): »Dich Hab Ich Je Und Je Geliebet«5:20BWV 50 Nun Ist Das Heil Und Die Kraft (Unspecified Occasion = Bestimmung Nicht Überliefert ∙ Sans Destination)3:38716084Nikolaus HarnoncourtConductor16-14[Coro]: »Nun Ist Das Heil Und Die Kraft«3:49BWV 51 Jauchzet Gott In Allen Landen (Dominica 15 Post Trinitatis Et In Ogni Tempo = On The 15th Sunday After Trinity And At All Times∙ Am 15. Sonntag Nach Trinitatis Und Für Alle Zeit∙ Pour Le 15ème Dimanche Après La Trinité Et Pour Les Temps)17:51845763Gustav LeonhardtConductor16-15Aria (Soprano): »Jauchzet Gott In Allen Landen!«4:4016-16Recitativo (Soprano): »Wir Beten Zu Dem Tempel An«2:1916-17Aria (Soprano): »Höchster, Mache Deine Güte«5:0116-18Choral (Soprano): »Sei Lob Und Preis Mit Ehren«3:3616-19[Aria] (Soprano): »Alleluja!«2:15Cantatas, BWV 52 & 54-56BWV 52 Falsche Welt, Dir trau Ich Nicht (Dominica 23 Post Trinitatis = On The 23rd Sunday After Trinity ∙ Am 23. Sonntag Nach Trinitatis ∙ Pour Le 23ème Dimanche Après La Trinité)16:36845763Gustav LeonhardtConductor17-1Sinfonia4:1817-2Recitativo (Soprano): »Falsche Welt, Dir Trau Ich Nicht!«1:1517-3Aria (Soprano): »Immerhin, Immerhin, Wenn Ich Gleich Verstoßen Bin!«4:0217-4Recitativo (Soprano): »Gott Ist Getreu!«1:3217-5Aria (Soprano): »Ich Halt Es Mit Dem Lieben Gott«4:4617-6Choral (Coro): »In Dich Hab Ich Gehoffet, Herr«0:51BWV 54 Widerstehe Doch der Sünde (Dominica Oculi = On The Sunday Oculi ∙ Am Sonntag Oculi ∙ Pour Le Dimanche Oculi)12:28845763Gustav LeonhardtConductor17-7Aria (Alto): »Widerstehe Doch Der Sünde«8:1517-8Recitativo (Alto): »Die Art Verruchter Sünden«1:1517-9Aria (Alto): »Wer Sünde Tut, Der Ist Vom Teufel«3:08BWV 55 Ich Armer Mensch, Ich Sündenknecht (Dominica 22 Post Trinitatis = On The 22nd Sunday After Trinity ∙ Am 22. Sonntag Nach Trinitatis ∙ Pour Le 22ème Dimanche Après La Trinité)13:00845763Gustav LeonhardtConductor17-10[Aria] (Tenore): »Ich Armer Mensch, Ich Sündenknecht«5:2317-11Recitativo (Tenore): »Ich Habe Wider Gott Gehandelt«1:3017-12Aria (Tenore): »Erbarme Dich, Laß Die Tränen Dich Erweichen«3:4717-13Recitativo (Tenore): »Erbarme Dich! Jedoch Nun«1:2817-14Choral (Coro): »Bin Ich Gleich Von Dir Gewichen«1:01BWV 56 Ich Will Den Kreuzstab Gerne Tragen (Dominica 19 Post Trinitatis = On The 19th Sunday After Trinity ∙ Am 19. Sonntag Nach Trinitatis ∙ Pour Le 19ème Dimanche Après La Trinité)18:57845763Gustav LeonhardtConductor17-15Aria (Basso): »Ich Will Den Kreuzstab Gerne Tragen«7:1217-16Recitativo (Basso): »Mein Wandel Auf Der Welt«2:1417-17Aria (Basso): »Endlich, Endlich Wird Mein Joch«6:4017-18Recitativo (Basso): »Ich Stehe Fertig Und Bereit«1:4017-19Choral (Coro): »Komm, O Tod, Du Schlafes Bruder«1:11Cantatas, BWV 57-60BWV 57 Selig Ist Der Mann (Feria 2 Nativitatis Christi = On The 2nd Day Of Christmas ∙ Am 2. Weihnachtstag ∙ Pour Le 2'eme Jour De Noël)22:24716084Nikolaus HarnoncourtConductor18-1Aria (Basso/Jesus): »Selig Ist Der Mann«3:1218-2Recitativo (Soprano/Anima): »Ach! Dieser Süße Trost«1:1218-3Aria (Soprano): »Ich Wünschte Mir Den Tod«6:0118-4Recitativo (Soprano, Basso): »Ich Reiche Dir Die Hand«0:2418-5Aria (Basso): »Ja, Ja, Ich Kann Die Feinde Schlagen«5:1418-6Recitativo (Soprano, Basso): »In Meiner Schoß Liegt Ruh Und Leben«1:1718-7Aria (Soprano): »Ich Ende Behende Mein Irdisches Leben«4:1518-8Choral (Coro): »Richte Dich, Liebste, Nach Meinem Gefallen«0:59BWV 58 Ach Gott, Wie Manches Herzeleid (Dominica Post Festum Circumcisionis Christi = On The Sunday After The Feast Of Circumcision ∙ Am Sonntag Nach Dem Fest Der Beschneidung Pour Le Dimanche Après La Fête De La Circoncision De Christ)12:14716084Nikolaus HarnoncourtConductor18-9[Choral ∙ Aria] (Soprano, Basso): »Ach Gott, Wie Manches Herzeleid«3:3818-10Recitativo (Basso): »Verfolgt Dich Gleich Die Arge Welt«1:1818-11Aria (Soprano): »Ich Bin Vergnügt In Meinem Leiden«3:4818-12Recitativo (Soprano): »Kann Es Die Welt Nicht Lassen«1:1118-13Aria (Soprano, Basso): »Ich Hab Für Mir Ein Schwere Reis«2:29BWV 59 Wer Mich Liebet, Der Wird Mein Wort Halten (Feria 1 Pentecostes = On The 1st Day Of Pentecost ∙ Am 1. Pfingsttag ∙ Pour Le 1er Jour De La Pentecôte)12:06716084Nikolaus HarnoncourtConductor18-14Duetto (Soprano, Basso): »Wer Mich Liebet«4:1518-15Recitativo (Soprano): »O, Was Sind Das Vor Ehren«1:5818-16Choral (Coro): »Komm, Heiliger Geist, Herre Gott!«1:3818-17Aria (Basso): »Die Welt Mit Allen Königreichen«2:3418-18[Choral] (Coro): »Du Heilige Brunst«1:51BWV 60 O Ewigkeit, Du Donnerwort (Dialogus Zwischen Furcht Und Hoffnung) (Dominica 24 Post Trinitatis = On The 24th Sunday After Trinity ∙ Am 24. Sonntag Nach Trinitatis ∙ Pour Le 24ème Dimanche Après La Trinité)16:09716084Nikolaus HarnoncourtConductor18-19Aria (Duetto: Alto/Furcht, Tenore/Hoffnung): »O Ewigkeit, Du Donnerwort«5:0218-20Recitativo (Alto, Tenore): »O Schwerer Gang Zum Letzten Kampf«2:1618-21Aria (Duetto: Alto, Tenore): »Mein Letztes Lager Will Mich Schrecken«3:2018-22Recitativo (Alto, Basso/Vox Christi): »Der Tod Bleibt Doch Der Menschlichen Natur Verhaßt«4:1218-23Choral (Coro): »Es Ist Genung: Herr, Wenn Es Dir Gefallt«1:19Cantatas, BWV 61-63BWV 61 Nun Komm, Der Heiden Heiland (Dominica 1 Adventus Christi = On The 1st Sunday Of Advent ∙ Am 1. Advent ∙ Pour Le 1er Dimanche De L'Advent)14:39716084Nikolaus HarnoncourtConductor19-1Ouverture (Coro): »Nun Komm, Der Heiden Heiland«3:4219-2Recitativo (Tenore): »Der Heiland Ist Gekommen«1:3419-3Aria (Tenore): »Komm, Jesu, Komm Zu Deiner Kirche«3:5919-4Recitativo (Basso): »Siehe, Ich Stehe Vor Der Tür«1:0419-5Aria (Soprano): »Öffne Dich, Mein Ganzes Herze«3:2319-6[Choral] (Coro): »Amen, Amen! Komm Du Schöne Freudenkrone«1:09BWV 62 Nun Komm, Der Heiden Heiland (Dominica 1 Adventus Christi = On The 1st Sunday Of Advent ∙ Am 1. Advent ∙ Pour Le 1er Dimanche De L'Advent)19:45716084Nikolaus HarnoncourtConductor19-7[Coro]: »Nun Komm, Der Heiden Heiland«4:5419-8Aria (Tenore): »Bewundert, O Menschen, Dies Große Geheimnis«7:2919-9Recitativo (Basso): »So Geht Aus Gottes Herrlichkeit«0:3619-10Aria (Basso): »Streite, Siege, Starker Held!«5:0919-11Recitativo (Soprano, Alto): »Wir Ehren Diese Herrlichkeit«0:5819-12Choral (Coro): »Lob Sei Gott, Dem Vater, Ton«0:47BWV 63 Christen, Ätzet Diesen Tag (Feria 1 Nativitatis Christi = On The 1st Day Of Christmas ∙ Am 1. Weihnachtstag ∙ Pour Le 1er Jour De Noël)28:54716084Nikolaus HarnoncourtConductor19-13Coro: »Christen, Ätzet Diesen Tag«5:1719-14Recitativo (Alto): »O Selger Tag! O Ungemeines Heute«3:3219-15Duetto (Soprano, Basso): »Gott, Du Hast Es Wohl Gefüget«6:2419-16Recitativo (Tenore): »So Kehret Sich Nun Heut Das Bange Leid«0:5319-17Duetto (Alto, Tenore): »Ruft Und Fleht Den Himmel An«4:2319-18Recitativo (Basso): »Verdoppelt Euch Demnach«1:0619-19Coro: »Höchster, Schau In Gnaden An«7:19Cantatas, BWV 64-66BWV 64 Sehet, Welch Eine Liebe Hat Uns Der Vater Erzeiget (Feria 3 Nativitatis Christi = On The 3rd Day Of Christmas ∙ Am 3. Weihnachtstag ∙ Pour Le 3ème Jour De Noël)20:12716084Nikolaus HarnoncourtConductor20-1[Coro]: »Sehet, Welch Eine Liebe Hat Uns Der Vater Erzeiget«3:3020-2Choral (Coro): »Das Hat Er Alles Uns Getan«0:4620-3Recitativo (Alto): »Geh, Welt! Behalte Nur Das Deine«0:3820-4Choral (Coro): »Was Frag Ich Nach Der Welt«0:5120-5Aria (Soprano): »Was Die Welt In Sich Hält«5:1120-6Recitativo (Basso): »Der Himmel Bleibet Mir Gewiß«1:0320-7Aria (Alto): »Von Der Welt Verlang Ich Nichts«6:5120-8Choral (Coro): »Gute Nacht, O Wesen«1:30BWV 65 Sie Werden Aus Saba Alle Kommen (Festo Epiphanias = At The Feast Of Epiphany ∙ Am Fest Epiphanias ∙ Pour La Fête De L'Epiphanie)16:45716084Nikolaus HarnoncourtConductor20-9[Coro]: »Sie Werden Aus Saba Alle Kommen«4:5220-10Choral (Coro): »Die Kön'ge Aus Saba Kamen Dar«0:4020-11Recitativo (Basso): »Was Dort Jesaias Vorhergesehn«1:4220-12Aria (Basso): »Gold Aus Ophir Ist Zu Schlecht«2:5320-13Recitativo (Tenore): »Verschmähe Nicht, Du, Meiner Seelen Licht«1:2620-14Aria (Tenore): »Nimm Mich Dir Zu Eigen Hin«3:5420-15Choral (Coro): »Ei Nun, Mein Gott, So Fall Ich Dir«1:27BWV 66 Erfreut Euch, Ihr Herzen (Feria 2 Paschatos = On The 2rd Day Of Easter ∙ Am 2. Ostertag ∙ Pour Le 2ème Jour De Pâques)31:15845763Gustav LeonhardtConductor20-16[Coro]: »Erfreut Euch, Ihr Herzen«10:3420-17Recitativo (Basso): »Es Bricht Das Grab Und Damit Unsre Not«0:3320-18Aria (Tenore): »Lasset Dem Höchsten Ein Danklied Erschallen«6:3820-19Recitativo (Dialogus: Alto/Die Furcht, Tenore/Die Hoffnung): »Bei Jesu Leben Freudig Sein«4:4720-20Duetto (Alto, Tenore): »Ich Furchte Zwar (Nicht) Des Grabes Finsternissen«8:1520-21Choral (Coro): »Alleluja! Alleluja! Alleluja!«0:28Cantatas, BWV 67-69, 69aBWV 67 Halt Im Gedächtnis Jesum Christ (Dominica Quasimodogeneti = On The Sunday Quasimodogeneti ∙ Am Sonntag Quasimodogeneti ∙ Pour Le Dimanche Quasimodogeneti)12:22845763Gustav LeonhardtConductor21-1[Coro]: »Halt Im Gedächtnis Jesum Christ«3:1021-2Aria (Tenore): »Mein Jesus Ist Erstanden«2:4121-3Recitativo (Alto): »Mein Jesu, Heißest Du Des Todes Gift«0:2621-4Choral (Coro): »Erschienen Ist Der Herrlich Tag«0:2521-5Recitativo (Alto): »Doch Scheinet Fast, Daß Mich Der Feinde Rest«0:5121-6Aria (Basso, Coro): »Friede Sei Mit Euch!«5:1621-7Choral (Coro): »Du Friedefürst, Herr Jesu Christ«0:53BWV 68 Also Hat Gott Die Welt Geliebt (Feria 2 Pentecostes = On The 2nd Day Of Pentecost ∙ Am 2. Pfingsttag ∙ Pour Le 2ème Jour De La Pentecôte)16:49716084Nikolaus HarnoncourtConductor21-8Choral (Coro): »Also Hat Gott Die Welt Geliebt«5:3421-9Aria (Soprano): »Mein Gläubiges Herze«4:0221-10Recitativo (Basso): »Ich Bin Mit Petro Nicht Vermessen«0:3821-11Aria (Basso): »Du Bist Geboren Mir Zugute«3:1521-12Coro: »Wer An Ihn Gläubet«3:30BWV 69 Lobe Den Herrn, Meine Seele (Ratswechsel = For The Town Council Inauguration ∙ Pour Le Changement Du Conseil Municipal)10:50716084Nikolaus HarnoncourtConductor21-13Recitativo (Soprano): »Wie Groß Ist Gottes Güte Doch!«1:0821-14Aria (Alto): »Mein Seele, Auf, Erzähle«6:0421-15Recitativo (Tenore): »Der Herr Hat Große Ding An Uns Getan«2:0321-16Choral (Coro): »Es Danke, Gott, Und Lobe Dich«1:45BWV 69a Lobe Den Herrn, Meine Seele (Dominica 12 Post Trinitatis = On The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12ème Dimanche Après La Trinité)19:26716084Nikolaus HarnoncourtConductor21-17[Coro]: »Lobe Den Herrn, Meine Seele«6:3621-18Recitativo (Soprano): »Ach, Daß Ich Tausend Zungen Hätte«0:4521-19Aria (Tenore): »Meine Seele, Auf, Erzähle«6:3021-20Recitativo (Alto): »Gedenk Ich Nur Zurück«1:1221-21Aria (Basso): »Mein Erlöser Und Erhalter«3:2821-22Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«0:55Cantatas, BWV 70-73BWV 70 Wachet! Betet! Betet! Wachet! Prima Parte (Dominica 26 Post Trinitatis = On The 26th Sunday After Trinity ∙ Am 26. Sonntag Nach Trinitatis ∙ Pour Le 26ème Dimanche Après La Trinité)13:47716084Nikolaus HarnoncourtConductor22-1[Coro]: »Wachet! Betet! Betet! Wachet!«4:2222-2Recitativo (Basso): »Erschrecket, Ihr Verstockten Sünder!«1:0222-3Aria (Alto): »Wenn Kömmt Der Tag«3:4122-4Recitativo (Tenore): »Auch Bei Dem Himmlischen Verlangen«0:3322-5Aria (Soprano): »Laßt Der Spötter Zungen Schmähen«2:3622-6Recitativo (Tenore): »Jedoch Bei Dem Unartigen Geschlechte«0:2822-7Choral (Coro): »Freu Dich Sehr, O Meine Seele«1:15BWV 70 Wachet! Betet! Betet! Wachet! Seconda Parte (Dominica 26 Post Trinitatis = On The 26th Sunday After Trinity ∙ Am 26. Sonntag Nach Trinitatis ∙ Pour Le 26ème Dimanche Après La Trinité)8:11716084Nikolaus HarnoncourtConductor22-8Aria (Tenore): »Hebt Euer Haupt Empor«2:4722-9Recitativo (Basso): »Ach, Soll Nicht Dieser Große Tag«1:5022-10Aria (Basso): »Seligster Erquickungstag«2:3322-11Choral (Coro): »Nicht Nach Welt, Nach Himmel Nicht«1:10BWV 71 Gott Ist Mein König (Ratswechsel = For The Town Council Inauguration ∙ Pour Le Changement Du Conseil Municipal. Mühlhausen, 4. 2. 1708)18:07716084Nikolaus HarnoncourtConductor22-12Coro: »Gott Ist Mein König«2:0222-13Aria (Soprano, Tenore): »Ich Bin Nun Achtzig Jahr - Soll Ich Auf Dieser Welt«3:3322-14Coro [A 4 Voci]: »Dein Alter Sei Wie Deine Jugend«2:0622-15Arioso (Basso): »Tag Und Nacht Ist Dein«2:4022-16Aria (Alto): »Durch Mächtige Kraft«1:1922-17Coro: »Du Wollest Dem Feinde Nicht Geben«2:4622-18Coro [Soli, Coro]: »Das Neue Regiment«3:51BWV 72 Alles Nur Nach Gottes Willen (Dominica 3 Post Epiphanias = On The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Après L'Epiphanie)17:29716084Nikolaus HarnoncourtConductor22-19[Coro]: »Alles Nur Nach Gottes Willen«4:2322-20Recitativo (Alto): »O Selger Christ«2:0222-21Aria (Alto): »Mit Allem, Was Ich Hab Und Bin«4:1822-22Recitativo (Basso): »So Glaube Nun!«0:4922-23Aria (Soprano): »Mein Jesus Will Es Tun«4:3722-24Choral (Coro): »Was Mein Gott Will, Das Gescheh Allzeit«1:29BWV 73 Herr, Wie Du Willt, So Schicks Mit Mir (Dominica 3 Post Epiphanias = On The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Après L'Epiphanie)14:57845763Gustav LeonhardtConductor22-25[Coro ∙ Recitativo] (Soprano, Basso): »Herr, Wie Du Willt, So Schicks Mit Mir«5:2122-26Aria (Tenore): »Ach, Senke Doch Den Geist Der Freuden«4:0222-27Recitativo (Basso): »Ach, Unser Wille Bleibt Verkehrt«0:3322-28Aria (Basso): »Herr, So Du Willt«4:1322-29Choral (Coro): »Das Ist Des Vaters Wille«0:48Cantatas, BWV 74 & 75BWV 74 Wer Mich Liebet, Der Wird Mein Wort Halten (Feria 1 Pentecostes = On The 1st Day Of Pentecost ∙ Am 1. Pfingsttag ∙ Pour Le 1er Jour De La Pentecôte)21:29845763Gustav LeonhardtConductor23-1[Coro]: »Wer Mich Liebet, Der Wird Mein Wort Halten«3:1923-2Aria (Soprano): »Komm, Komm, Mein Herze Steht Dir Offen«2:4223-3Recitativo (Alto): »Die Wohnung Ist Bereit«0:3423-4Aria (Basso): »Ich Gehe Hin Und Komme Wieder Zu Euch«2:5923-5Aria (Tenore): »Kommt, Eilet, Stimmet Sait Und Lieder«5:1523-6Recitativo (Basso): »Es Ist Nichts Verdammliches An Denen«0:3023-7Aria (Alto): »Nichts Kann Mich Erretten«5:2223-8Choral (Coro): »Kein Menschenkind Auf Der Erd«0:59BWV 75 Die Elenden Sollen Essen Prima Parte (Dominica 1 Post Trinitatis = On The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)19:43845763Gustav LeonhardtConductor23-9[Coro]: »Die Elenden Sollen Essen«4:5623-10Recitativo (Basso): »Was Hilft Des Purpurs Majestät«0:5323-11Aria (Tenore): »Mein Jesus Soll Mein Alles Sein«5:3923-12Recitativo (Tenore): »Gott Stürzet Und Erhöhet«0:3823-13Aria (Soprano): »Ich Nehme Mein Leiden Mit Freuden Auf Mich«5:2423-14Recitativo (Soprano): »Indes Schenkt Gott Ein Gut Gewissen«0:3823-15Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«1:44BWV 75 Die Elenden Sollen Essen Seconda Parte (Dominica 1 Post Trinitatis = On The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)13:26845763Gustav LeonhardtConductor23-16Sinfonia2:2523-17Recitativo (Alto): »Nur Eines Kränkt Ein Christliches Gemüte«0:4323-18Aria (Alto): »Jesus Macht Mich Geistlich Reich«3:2223-19Recitativo (Basso): »Wer Nur In Jesu Bleibt«0:2723-20Aria (Basso): »Mein Herze Gläubt Und Liebt«4:1423-21Recitativo (Tenore): »O Armut, Der Kein Reichtum Gleicht!«0:3723-22Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«1:38Cantatas, BWV 76-78BWV 76 Die Himmel Erzählen Die Ehre Gottes Prima Parte (Dominica 2 Post Trinitatis = On The 2nd Sunday After Trinity ∙ Am 2. Sonntag Nach Trinitatis ∙ Pour Le 2ème Dimanche Après La Trinité)18:10716084Nikolaus HarnoncourtConductor24-1[Coro]: »Die Himmel Erzählen Die Ehre Gottes«4:4924-2Recitativo (Tenore): »So Läßt Sich Gott Nicht Unbezeugt!«1:2324-3Aria (Soprano): »Hört, Ihr Völker«4:4924-4Recitativo (Basso): »Wer Aber Hört«0:2924-5Aria (Basso): »Fahr Hin, Abgöttische Zunft!«3:2224-6Recitativo (Alto): »Du Hast Uns, Herr, Von Allen Straßen«1:2624-7Choral (Coro): »Es Woll Uns Gott Genädig Sein«1:52BWV 76 Die Himmel Erzählen Die Ehre Gottes Seconda Parte (Dominica 2 Post Trinitatis = On The 2nd Sunday After Trinity ∙ Am 2. Sonntag Nach Trinitatis ∙ Pour Le 2ème Dimanche Après La Trinité)12:22716084Nikolaus HarnoncourtConductor24-8Sinfonia2:2624-9Recitativo (Basso): »Gott Segne Noch Die Treue Schar«0:4024-10Aria (Tenore): »Hasse Nur, Hasse Mich Recht«2:4224-11Recitativo (Alto): »Ich Fühle Schon Im Geist«0:4924-12Aria (Alto): »Liebt, Ihr Christen, In Der Tat!«3:1424-13Recitativo (Tenore): »So Soll Die Christenheit«0:3324-14Choral (Coro): »Es Danke, Gott, Und Lobe Dich«2:07BWV 77 Du Sollt Gott, Deinen Herren, Lieben (Dominica 13 Post Trinitatis = On The 13th Sunday After Trinity ∙ Am 13. Sonntag Nach Trinitatis ∙ Pour Le 13ème Dimanche Après La Trinité)15:49845763Gustav LeonhardtConductor24-15[Coro]: »Du Sollt Gott, Deinen Herren, Lieben«4:3124-16Recitativo (Basso): »So Muß Es Sein«0:3524-17Aria (Soprano): »Mein Gott, Ich Liebe Dich Von Herzen«4:1724-18Recitativo (Tenore): »Gib Mir Dabei, Mein Gott! Ein Samariterherz«0:5724-19Aria (Alto): »Ach, Es Bleibt In Meiner Liebe«4:3324-20Choral (Coro):»Du Stellst, Herr Jesu, Selber Dich«1:06BWV 78 Jesu, Der Du Meine Seele (Dominica 14 Post Trinitatis = On The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14ème Dimanche Après La Trinité)21:12716084Nikolaus HarnoncourtConductor24-21[Coro]: »Jesu, Der Du Meine Seele«5:2324-22Aria (Duetto: Soprano, Alto): »Wir Eilen Mit Schwachen, Doch Emsigen Schritten«5:0424-23Recitativo (Tenore): »Ach! Ich Bin Ein Kind Der Sünden«1:4424-24Aria (Tenore): »Das Blut, So Meine Schuld Durchstreicht«3:1024-25Recitativo (Basso): »Die Wunden, Nägel, Kron Und Grab«1:5024-26Aria (Basso): »Nun, Du Wirst Mein Gewissen Stillen«2:5824-27Choral (Coro): »Herr, Ich Glaube, Hilf Mir Schwachen«1:03Cantatas, BWV 79-82BWV 79 Gott, Der Herr, Ist Sonn Und Schild (Festo Reformationis = At The Feast Of Reformation ∙ Zum Reformatiosfest ∙ Pour La Fête De La Réformation)15:36845763Gustav LeonhardtConductor25-1[Coro]: »Gott, Der Herr, Ist Sonn Und Schild«5:0325-2Aria (Alto): »Gott Ist Unsre Sonn Und Schild«3:4125-3Choral (Coro): »Nun Danket Alle Gott«2:1325-4Recitativo (Basso): »Gottlob, Wir Wissen Den Rechten Weg«0:5225-5Aria (Soprano, Basso): »Gott, Ach Gott, Verlaß Die Deinen Nimmermehr!«3:1225-6Choral (Coro): »Erhalt Uns In Der Wahrheit«0:45BWV 80 Ein Feste Burg Ist Unser Gott (Festo Reformationis = At The Feast Of Reformation ∙ Zum Reformatiosfest ∙ Pour La Fête De La Réformation)22:58716084Nikolaus HarnoncourtConductor25-7[Coro]: »Ein Feste Burg Ist Unser Gott«5:1025-8Aria (Soprano, Basso): »Mit Unser Macht«3:4225-9Recitativo (Basso): »Erwäge Doch, Kind Gottes«1:4225-10Aria (Soprano): »Komm In Mein Herzenshaus«3:0825-11Choral (Coro): »Und Wenn Die Welt Voll Teufel Wär«3:1825-12Recitativo (Tenore): »So Stehe Denn Bei Christi Blutgefärbten Fahne«1:1325-13Duetto (Alto, Tenore): »Wie Selig Sind Doch Die«3:4325-14Choral (Coro): »Das Wort Sie Sollen Lassen Stahn«1:12BWV 81 Jesus Schläft, Was Soll Ich Hoffen (Dominica 4 Post Epiphanias = On The 4th Sunday After Epiphany ∙ Am 4. Sonntag Nach Epiphanias ∙ Pour Le 4ème Dimanche Après L'Epiphanie)15:58716084Nikolaus HarnoncourtConductor25-15Aria (Alto): »Jesus Schläft, Was Soll Ich Hoffen?«4:1125-16Recitativo (Tenore): »Herr! Warum Trittest Du So Ferne?«0:5825-17Aria (Tenore): »Die Schäumenden Wellen Von Belials Bächen«3:0225-18Arioso (Basso): »Ihr Kleingläubigen, Warum Seid Ihr So Furchtsam?«1:0425-19Aria (Basso): »Schweig, Aufgetürmtes Meer!«5:1825-20Recitativo (Alto): »Wohl Mir, Mein Jesus Spricht Ein Wort«0:1925-21Choral (Coro): »Unter Deinen Schirmen«1:15BWV 82 Ich Habe Genung (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Am Feste Mariae Reinigung ∙ Pour La Fête De La Purification De Marie)20:39716084Nikolaus HarnoncourtConductor25-22Aria (Basso): »Ich Habe Genung«6:4725-23Recitativo (Basso): »Ich Habe Genung! Mein Trost Ist Nur Allein«0:5725-24Aria (Basso): »Schlummert Ein, Ihr Matten Augen«8:4725-25Recitativo (Basso): »Mein Gott! Wann Kommt Das Schöne: Nun!«0:4225-26Aria (Basso): »Ich Freue Mich Auf Meinen Tod«3:26Cantatas, BWV 83-86BWV 83 Erfreute Zeit Im Neuen Bunde (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Am Feste Mariae Reinigung ∙ Pour La Fête De La Purification De Marie)20:22716084Nikolaus HarnoncourtConductor26-1[Aria] (Alto): »Erfreute Zeit Im Neuen Bunde«7:4526-2Aria ∙ Recitativo (Basso): »Herr, Nun Lässest Du Deinen Diener«4:0426-3Aria (Tenore): »Eile, Herz, Voll Freudigkeit«6:5826-4Recitativo (Alto): »Ja, Merkt Dein Galube Noch Viel Finsternis«0:4426-5Choral (Coro): »Er Ist Das Heil Und Selig Licht«1:00BWV 84 Ich Bin Vergnügt Mit Meinem Glücke (Dominica Septuagesimae = At The Sunday Septuagesimae ∙ Am Sonntag Septuagesimae ∙ Pour Le Dimanche De La Septuagésima)13:22716084Nikolaus HarnoncourtConductor26-6Aria (Soprano): »Ich Bin Vergnügt Mit Meinem Glücke«5:2426-7Recitativo (Soprano): »Gott Ist Mir Ja Nichts Schuldig«1:1526-8Aria (Soprano): »Ich Esse Mit Freuden Mein Weniges Brot«4:5926-9Recitativo (Soprano): »Im Schweiße Meines Angesichts«0:5126-10Choral (Coro): »Ich Leb Indes In Dir Vergnüget«1:03BWV 85 Ich Bin Ein Guter Hirt (Dominica Misericordias Domini = At The Sunday Misericordias Domini ∙ Am Sonntag Misericordias Domini ∙ Pour Le Dimanche Misericordias Domini)15:12716084Nikolaus HarnoncourtConductor26-11[Aria] (Basso): »Ich Bin Ein Guter Hirt«2:5826-12Aria (Alto): »Jesus Ist Ein Guter Hirt«3:1226-13Choral (Soprano): »Der Herr Ist Mein Getreuer Hirt«4:5326-14Recitativo (Tenore): »Wenn Die Mietlinge Schlafen«0:4926-15Aria (Tenore): »Seht, Was Die Liebe Tut«2:2626-16Choral (Coro): »Ist Gott Mein Schutz Und Treuer Hirt«1:04BWV 86 Wahrlich, Wahrlich, Ich Sage Euch (Dominica Rogate = At The Sunday Rogate ∙ Am Sonntag Rogate ∙ Pour Le Dimanche De Rogate)13:02716084Nikolaus HarnoncourtConductor26-17[Aria] (Basso): »Wahrlich, Wahrlich, Ich Sage Euch«2:0926-18Aria (Alto): »Ich Will Doch Wohl Rosen Brechen«5:2226-19Choral (Soprano): »Und Was Der Ewig Gütig Gott«1:4726-20Recitativo (Tenore): »Gott Macht Es Nicht Gleich Wie Die Welt«0:2126-21Aria (Tenore): »Gott Hilft Gewiß«2:3126-22Choral (Coro): »Die Hoffnung Wart' Der Rechten Zeit«0:52Cantatas, BWV 87-90BWV 87 Bisher Habt Ihr Nichts Gebeten In Meinem Namen (Dominica Rogate = At The Sunday Rogate ∙ Am Sonntag Rogate ∙ Pour Le Dimanche De Rogate)17:37716084Nikolaus HarnoncourtConductor27-1[Aria] (Basso): »Bisher Habt Ihr Nichts Gebeten In Meinem Namen«1:4227-2Recitativo (Alto): »O Wort, Das Geist Und Seel Erschreckt«0:3027-3Aria (Alto): »Vergib, O Vater, Unsre Schuld«7:3327-4Recitativo (Tenore): »Wenn Unsre Schuld Bis An Den Himmel Steigt«0:4527-5Aria (Basso): »In Der Welt Habt Ihr Angst«1:4727-6Aria (Tenore): »Ich Will Leiden, Ich Will Schweigen«4:0827-7Choral (Coro): »Muss Ich Sein Betrübet?«1:22BWV 88 Siehe, Ich Will Viel Fischer Aussenden Prima Parte (Dominica 5 Post Trinitatis = On The 5th Sunday After Trinity ∙ Am 5. Sonntag Nach Trinitatis ∙ Pour Le 5ème Dimanche Après La Trinité)11:24845763Gustav LeonhardtConductor27-8Aria (Basso): »Siehe, Ich Will Viel Fischer Aussenden«6:5027-8Recitativo (Tenore): »Wie Leichtlich Könnte Doch Der Höchste Uns Entbehren«0:4227-10Aria (Tenore): »Nein, Gott Ist Allezeit Geflissen«3:52BWV 88 Siehe, Ich Will Viel Fischer Aussenden Seconda Parte (Dominica 5 Post Trinitatis = On The 5th Sunday After Trinity ∙ Am 5. Sonntag Nach Trinitatis ∙ Pour Le 5ème Dimanche Après La Trinité)7:30845763Gustav LeonhardtConductor27-11[Recitativo ∙ Aria] (Tenore, Basso): »Jesus Sprach Zu Simon«2:1427-12Duetto (Soprano, Alto): »Beruft Gott Selbst, So Muß Der Segen«3:1027-13Recitativo (Soprano): »Was Kann Dich Denn In Deinem Wandel Schrecken«1:1827-14Choral (Coro): »Sing, Bet Und Geh Auf Gottes Wegen«0:58BWV 89 Was Soll Ich Aus Dir Machen, Ephraim (Dominica 22 Post Trinitatis = On The 22nd Sunday After Trinity ∙ Am 22. Sonntag Nach Trinitatis ∙ Pour Le 22ème Dimanche Après La Trinité)12:26845763Gustav LeonhardtConductor27-15Aria (Basso): »Was Soll Ich Aus Dir Machen, Ephraim?«4:2927-16Recitativo (Alto): »Ja, Freilich Sollte Gott«0:4227-17Aria (Alto): »Ein Unbarmherziges Gerichte«2:3527-18Recitativo (Soprano): »Wohlan! Mein Herze Legt Zorn«1:0727-19Aria (Soprano): »Gerechter Gott, Ach, Rechnest Du?«2:5327-20Choral (Coro): »Mir Mangelt Zwar Sehr Viel«0:51BWV 90 Es Reisset Euch Ein Schrecklich Ende (Dominica 25 Post Trinitatis = On The 25th Sunday After Trinity ∙ Am 25. Sonntag Nach Trinitatis ∙ Pour Le 25ème Dimanche Après La Trinité)12:14845763Gustav LeonhardtConductor27-21Aria (Tenore): »Es Reißet Euch Ein Schrecklich Ende«6:0527-22Recitativo (Alto): »Des Höchsten Güte Wird Von Tag Zu Tage Neu«1:1727-23Aria (Basso): »So Löschet Im Eifer Der Rächende Richter«3:3327-24Recitativo (Tenore): »Doch Gottes Auge Sieht Auf Uns Als Auserwählte«0:3627-25Choral (Coro): »Leit Uns Mit Deiner Rechten Hand«0:43Cantatas, BWV 91-93BWV 91 Gelobet Seist Du, Jesu Christ (Feria 1 Nativitatis Christi = On The 1st Day Of Christmas ∙ Am 1. Weihnachtstag ∙ Pour Le 1er Jour De Noël)18:02845763Gustav LeonhardtConductor28-1[Coro]: »Gelobet Seist Du, Jesu Christ«3:0128-2Recitativo ∙ Choral (Soprano): »Der Glanz Der Höchsten Herrlichkeit«1:3928-3Aria (Tenore): »Gott, Dem Der Erden Kreis Zu Klein«3:1628-4Recitativo (Basso): »O Christenheit, Wohlan«1:1528-5Aria (Duetto: Soprano, Alto): »Die Armut, So Gott Auf Sich Nimmt«8:1328-6Choral (Coro): »Das Hat Er Alles Uns Getan«0:48BWV 92 Ich Hab In Gottes Herz Und Sinn (Dominica Septuagesimae = At The Sunday Septuagesimae ∙ Am Sonntag Septuagesimae ∙ Pour Le Dimanche De La Septuagésima)29:16845763Gustav LeonhardtConductor28-7[Coro]: »Ich Hab In Gottes Herz Und Sinn«6:5628-8Recitativo ∙ Choral (Basso): »Es Kann Mir Fehlen Nimmermehr!«3:2828-9Aria (Tenore): »Seht, Seht! Wie Reißt, Wie Bricht, Wie Fällt«2:5928-10Choral (Alto): »Zudem Ist Weisheit Und Verstand«3:2328-11Recitativo (Tenore): »Wir Wollen Nun Nicht Länger Zagen«1:0728-12Aria (Basso): »Das Brausen Von Den Rauhen Winden«4:4628-13Choral ∙ Recitativo (Soprano, Tenore, Alto, Basso): »Ei Nun, Mein Gott, So Fall Ich Dir«2:1428-14Aria (Soprano): »Meinem Hirten Bleib Ich Treu«3:1828-15Choral (Coro): »Soll Ich Denn Auch Des Todes Weg«1:14BWV 93 Wer Nur Den Lieben Gott Lässt Walten (Dominica 5 Post Trinitatis = On The 5th Sunday After Trinity ∙ Am 5. Sonntag Nach Trinitatis ∙ Pour Le 5ème Dimanche Après La Trinité)18:03716084Nikolaus HarnoncourtConductor28-16Coro: »Wer Nur Den Lieben Gott Läßt Walten«5:1828-17Recitativo ∙ Choral (Basso): »Was Helfen Uns Die Schweren Sorgen«1:3028-18Aria (Tenore): »Man Halte Nur Ein Wenig Stille«2:5328-19Aria ∙ Duetto (Soprano, Alto): »Er Kennt Die Rechten Freudenstunden«2:4928-20Recitativo ∙ Choral (Tenore): »Denk Nicht In Deiner Drangsalshitze«2:0528-21Aria (Soprano): »Ich Will Auf Den Herren Schaun«2:3328-22Choral (Coro): »Sing, Bet Und Geh Auf Gottes Wegen«0:55Cantatas, BWV 94-96BWV 94 Was Frag Ich Nach Der Welt (Dominica 9 Post Trinitatis = On The 9th Sunday After Trinity ∙ Am 9. Sonntag Nach Trinitatis ∙ Pour Le 9ème Dimanche Après La Trinité)24:52716084Nikolaus HarnoncourtConductor29-1[Coro]: »Was Frag Ich Nach Der Welt«2:4929-2Aria (Basso): »Die Welt Ist Wie Ein Rauch Und Schatten«2:0829-3Recitativo (Tenore): »Die Welt Sucht Ehr Und Ruhm«3:2129-4Aria (Alto): »Betörte Welt, Betörte Welt!«3:5529-5Recitativo (Basso): »Die Welt Bekümmert Sich«2:2929-6Aria (Tenore): »Die Welt Kann Ihre Lust Und Freud«4:4529-7Aria (Soprano): »Es Halt Es Mit Der Blinden Welt«3:3229-8Choral (Coro): »Was Frag Ich Nach Der Welt!«2:03BWV 95 Christus, Der Ist Mein Leben (Dominica 16 Post Trinitatis = On The 16th Sunday After Trinity ∙ Am 16. Sonntag Nach Trinitatis ∙ Pour Le 16ème Dimanche Après La Trinité)14:36716084Nikolaus HarnoncourtConductor29-9[Coro ∙ Recitativo] (Tenore): »Christus, Der Ist Mein Leben«3:4229-10Recitativo (Soprano): »Nun, Falsche Welt!«0:4629-11Choral (Soprano): »Valet Will Ich Dir Geben«1:3829-12Recitativo (Tenore): »Ach, Könnte Mir Doch Bald So Wohl Geschehen«0:2529-13Aria (Tenore): »Ach Schlage Doch Bald«5:5929-14Recitativo (Basso): »Denn Ich Weiß Dies«1:0829-15Choral (Coro): »Weil Du Vom Tod Erstanden Bist«1:09BWV 96 Herr Christ, Der Einge Gottessohn (Dominica 18 Post Trinitatis = On The 18th Sunday After Trinity ∙ Am 18. Sonntag Nach Trinitatis ∙ Pour Le 18ème Dimanche Après La Trinité)20:02716084Nikolaus HarnoncourtConductor29-16Coro: »Herr Christ, Der Einge Gottessohn«6:0429-17Recitativo (Alto): »O Wunderkraft Der Liebe«1:0329-18Aria (Tenore): »Ach, Ziehe Die Seele Mit Seilen Der Liebe«8:0229-19Recitativo (Soprano): »Ach, Führe Mich, O Gott«0:3729-20Aria (Basso): »Bald Zur Rechten, Bald Zur Linken«3:1829-21Choral (Coro): »Ertöt Uns Durch Dein Güte«0:58Cantatas, BWV 97-99BWV 97 In Allen Meinen Taten (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)26:39716084Nikolaus HarnoncourtConductor30-1Coro: »In Allen Meinen Taten«4:4730-2Aria (Basso): »Nichts Ist Es Spat Und Frühe«3:3730-3Recitativo (Tenore): »Es Kann Mir Nichts Geschehen«0:2630-4Aria (Tenore): »Ich Traue Seiner Gnaden«4:5930-5Recitativo (Alto): »Er Wolle Meiner Sünden«0:3830-6Aria (Alto): »Leg Ich Mich Späte Nieder«4:4030-7Duetto (Soprano, Basso): »Hat Er Es Denn Beschlossen«3:1630-8Aria (Soprano): »Ihm Hab Ich Mich Ergeben«3:2330-9Choral (Coro): »So Sei Nun, Seele, Deine«1:03BWV 98 Was Gott Tut, Das Ist Wohlgetan (Dominica 21 Post Trinitatis = On The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)14:27845763Gustav LeonhardtConductor30-10[Coro]: »Was Gott Tut, Das Ist Wohlgetan«4:2530-11Recitativo (Tenore): »Ach Gott! Wenn Wirst Du Mich Einmal«0:5930-12Aria (Soprano): »Hört, Ihr Augen, Auf Zu Weinen«3:4430-13Recitativo (Alto): »Gott Hat Ein Herz, Das Des Erbarmens Überfluß«0:5730-14Aria (Basso): »Meinen Jesum Laß Ich Nicht«4:31BWV 99 Was Gott Tut, Das Ist Wohlgetan (Dominica 15 Post Trinitatis = On The 15th Sunday After Trinity ∙ Am 15. Sonntag Nach Trinitatis ∙ Pour Le 15ème Dimanche Après La Trinité)13:18716084Nikolaus HarnoncourtConductor30-15[Coro]: »Was Gott Tut, Das Ist Wohlgetan«6:2330-16Recitativo (Basso): »Sein Wort Der Wahrheit Stehet Fest«1:0730-17Aria (Tenore): »Erschüttre Dich Nur Nicht, Verzagte Seele«5:5730-18Recitativo (Alto): »Nun, Der Von Ewigkeit Geschlossne Bund«0:5730-19Aria (Duetto: Soprano, Alto): »Wenn Des Kreuzes Bitterkeiten«2:5430-20Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«1:00Cantatas, BWV 100-102BWV 100 Was Gott Tut, Das Ist Wohlgetan (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)23:47845763Gustav LeonhardtConductor31-1[Coro]: »Was Gott Tut, Das Ist Wohlgetan«4:5231-2Duetto (Alto, Tenore): »Was Gott Tut, Das Ist Wohlgetan«4:0131-3[Aria] (Soprano): »Was Gott Tut, Das Ist Wohlgetan«4:4431-4[Aria] (Basso): »Was Gott Tut, Das Ist Wohlgetan«4:2031-5[Aria] (Alto): »Was Gott Tut, Das Ist Wohlgetan«3:5031-6Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«2:10BWV 101 Nimm Von Uns, Herr, Du Treuer Gott (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)24:04716084Nikolaus HarnoncourtConductor31-7[Coro]: »Nimm Von Uns, Herr, Du Treuer Gott«6:0731-8Aria (Tenore): »Handle Nicht Nach Deinen Rechten«3:1531-9Recitativo · Choral (Soprano): »Ach! Herr Gott, Durch Die Treue Dein«2:0431-10Aria (Basso): »Warum Willst Du So Zornig Sein?«3:3631-11Recitativo · Choral (Tenore): »Die Sünd Hat Uns Verderbet Sehr«1:2931-12Aria (Duetto: Soprano, Alto): »Gedenk An Jesu Bittern Tod«6:4231-13Choral (Coro): »Leit Uns Mit Deiner Rechten Hand«1:02BWV 102 Herr, Deine Augen Sehen Nach Dem Glauben Prima Parte (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)14:40716084Nikolaus HarnoncourtConductor31-14[Coro]: »Herr, Deine Augen Sehen Nach Dem Glauben«6:0931-15Recitativo (Basso): »Wo Ist Das Ebenbild«0:4831-16Aria (Alto): »Weh Der Seele«4:0031-17Arioso (Basso): »Verachtest Du Den Reichtum Seiner Gnade«3:43BWV 102 Herr, Deine Augen Sehen Nach Dem Glauben Seconda Parte (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)6:41716084Nikolaus HarnoncourtConductor31-18[Aria] (Tenore): »Erschrecke Doch, Du Allzu Sichre Seele!«3:3531-19Recitativo (Alto): »Beim Warten Ist Gefahr«1:2231-20Choral (Coro): »Heut Lebst Du, Heut Bekehre Dich«1:44Cantatas, BWV 103-105BWV 103 Ihr Werdet Weinen Und Heulen (Dominica Jubilate = At The Sunday Jubilate ∙ Am Sonntag Jubilate ∙ Pour Le Dimanche De Jubilate)16:12845763Gustav LeonhardtConductor32-1[Coro · Arioso] (Basso): »Ihr Werdet Weinen Und Heulen«6:0232-2Recitativo (Tenore): »Wer Sollte Nicht In Klagen Untergehn«0:3432-3Aria (Alto): »Kein Arzt Ist Außer Dir Zu Finden«4:4532-4Recitativo (Alto): »Du Wirst Mich Nach Der Angst Auch Wiederum Erquicken«0:3432-5Aria (Tenore): »Erholet Euch, Betrübte Sinnen«3:1732-6Choral (Coro): »Ich Hab Dich Einen Augenblick«1:16BWV 104 Du Hirte Israel, Höre (Dominica Misericordias Domini = At The Sunday Misericordias Domini ∙ Am Sonntag Misericordias Domini ∙ Pour Le Dimanche Misericordias Domini)18:18716084Nikolaus HarnoncourtConductor32-7[Coro]: »Du Hirte Israel, Höre«4:2632-8Recitativo (Tenore): »Der Höchste Hirte Sorgt Vor Mich«0:3532-9Aria (Tenore): »Verbirgt Mein Hirte Sich Zu Lange«3:3132-10Recitativo (Basso): »Ja, Dieses Wort Ist Meiner Seelen Speise«0:4632-11Aria (Basso): »Beglückte Herde, Jesu Schafe«7:5832-12Choral (Coro): »Der Herr Ist Mein Getreuer Hirt«1:12BWV 105 Herr, Gehe Nicht Ins Gericht (Dominica 9 Post Trinitatis = On The 9th Sunday After Trinity ∙ Am 9. Sonntag Nach Trinitatis ∙ Pour Le 9ème Dimanche Après La Trinité)21:00716084Nikolaus HarnoncourtConductor32-13[Coro]: »Herr, Gehe Nicht Ins Gericht«6:0232-14Recitativo (Alto): »Mein Gott, Verwirf Mich Nicht«0:4332-15Aria (Soprano): »Wie Zittern Und Wanken«4:5032-16Recitativo (Basso): »Wohl Aber Dem, Der Seinen Bürgen Weiß«1:3232-17Aria (Tenore): »Kann Ich Nur Jesum Mir Zum Freunde Machen«6:2032-18Choral (Coro): »Nun, Ich Weiß, Du Wirst Mir Stillen«1:33Cantatas, BWV 106-108BWV 106 Gottes Zeit Ist Die Allerbeste Zeit (Actus Tragicus) (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)20:11845763Gustav LeonhardtConductor33-1Sonatina2:3833-2-8:4233-2a[Coro]: »Gottes Zeit Ist Die Allerbeste Zeit«33-2b[Arioso] (Tenore): »Ach Herr, Lehre Uns Bedenken«33-2c[Arioso] (Basso): »Bestelle Dein Haus«33-2d[Coro ∙ Arioso] (Soprano): »Es Ist Der Alte Bund«33-3-6:0733-3a[Aria] (Alto): »In Deine Hände Befehl Ich Meinen Geist«33-3b[Arioso ∙ Choral] (Alto, Basso): »Heute Wirst Du Mit Mir Im Paradies Sein«33-4[Coro]: »Glorie, Lob, Ehr Und Herrlichkeit«2:54BWV 107 Was Willst Du Dich Betrüben (Dominica 7 Post Trinitatis = On The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)18:31845763Gustav LeonhardtConductor33-5[Coro]: »Was Willst Du Dich Betrüben«3:3233-6Recitativo (Basso): »Denn Gott Verlässet Keinen«0:5133-7Aria (Basso): »Auf Ihn Magst Du Es Wagen«3:0133-8Aria (Tenore): »Wenn Auch Gleich Aus Der Höllen«2:5633-9Aria (Soprano): »Er Richts Zu Seinen Ehren«3:0433-10Aria (Tenore): »Drum Ich Mich Ihm Ergebe«2:5233-11Choral (Coro: »Herr, Gib, Daß Ich Dein Ehre«2:26BWV 108 Es Ist Euch Gut, Dass Ich Hingehe (Dominica Cantate = On The Sunday Cantate ∙ Am Sonntag Cantate ∙ Pour Le Dimanche Cantate)16:01716084Nikolaus HarnoncourtConductor33-12[Aria] (Basso): »Es Ist Euch Gut, Daß Ich Hingehe«3:5233-13Aria (Tenore): »Mich Kann Kein Zweifel Stören«3:4933-14Recitativo (Tenore): »Dein Geist Wird Mich Also Regieren«0:3033-15Coro: »Wenn Aber Jener, Der Geist Der Wahrheit, Kommen Wird«3:0133-16Aria (Alto): »Was Mein Herz Von Dir Begehrt«3:5033-17Choral (Coro): »Dein Geist, Den Gott Vom Himmel Gibt«0:59Cantatas, BWV 109-111BWV 109 Ich Glaube, Lieber Herr, Hilf Meinem Unglauben (Dominica 21 Post Trinitatis = On The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)25:19716084Nikolaus HarnoncourtConductor34-1[Coro]: »Ich Glaube, Lieber Herr, Hilf Meinem Unglauben!«6:5734-2Recitativo (Tenore): »Des Herren Hand Ist Ja Noch Nicht Verkürzt«1:1734-3Aria (Tenore): »Wie Zweifelhaftig Ist Mein Hoffen«6:3934-4Recitativo (Alto): »O Fasse Dich, Du Zweifelhafter Mut«0:2734-5Aria (Alto): »Der Heiland Kennet Ja Die Seinen«5:5034-6Choral (Coro): »Wer Hofft In Gott, Und Dem Vertraut«4:19BWV 110 Unser Mund Sei Voll Lachens (Feria Nativitatis Christi = On The 1st Day Of Christmas ∙ Am 1. Weihnachtstag ∙ Pour Le 1er Jour De Noël)24:55716084Nikolaus HarnoncourtConductor34-7Coro (Solo: Soprano, Alto, Tenore, Basso): »Unser Mund Sei Voll Lachens«7:2734-8Aria (Tenore): »Ihr Gedanken Und Ihr Sinnen«4:2634-9Recitativo (Basso): »Dir, Herr, Ist Niemand Gleich«0:3034-10Aria (Alto): »Ach Herr, Was Ist Ein Menschenkind«3:4234-11Duetto (Soprano, Tenore): »Ehre Sei Gott In Der Höhe«3:5934-12Aria (Basso): »Wacht Auf! Ihr Adern Und Ihr Glieder«3:5834-13Choral (Coro): »Alleluja! Gelobt Sei Gott!«1:03BWV 111 Was Mein Gott Will, Das G'scheh Allzeit (Dominica 3 Post Epiphanias = On The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Après L'Epiphanie)17:08716084Nikolaus HarnoncourtConductor34-14Coro: »Was Mein Gott Will, Das G'scheh Allzeit«5:0434-15Aria (Basso): »Entsetze Dich, Mein Herze, Nicht«2:3634-16Recitativo (Alto): »O Törichter! Der Sich Von Gott Entzieht«0:4334-17Aria (Duetto: Alto, Tenore): »So Geh Ich Mit Beherzten Schritten«6:2034-18Recitativo (Soprano): »Drum Wenn Der Tod Zuletzt Den Geist«0:5734-19Choral (Coro): »Noch Eins, Herr, Will Ich Bitten Dich«1:28Cantatas, BWV 112-114BWV 112 Der Herr Ist Mein Getreuer Hirt (Dominica Misericordias Domini = At The Sunday Misericordias Domini ∙ Am Sonntag Misericordias Domini ∙ Pour Le Dimanche Misericordias Domini)13:40716084Nikolaus HarnoncourtConductor35-1[Coro]: »Der Herr Ist Mein Getreuer Hirt«3:2235-2Aria (Alto): »Zum Reinen Wasser Er Mich Weist«3:4435-3Recitativo (Basso): »Und Ob Ich Wandelt Im Finstern Tal«1:3535-4Duetto (Soprano, Tenore): »Du Bereitest Für Mir Einen Tisch«3:5035-5Choral (Coro): »Gutes Und Die Barmherzigheit«1:18BWV 113 Herr Jesu Christ, Du Höchstes Gut (Dominica 11 Post Trinitatis = On The 11th Sunday After Trinity ∙ Am 11. Sonntag Nach Trinitatis ∙ Pour Le 11ème Dimanche Après La Trinité)25:37845763Gustav LeonhardtConductor35-6[Coro]: »Herr Jesu Christ, Du Höchstes Gut«3:5935-7[Choral] (Alto): »Erbarm Dich Mein In Solcher Last«5:1635-8Aria (Basso): »Fürwahr, Wenn Mir Das Kömmet Ein«3:1635-9Recitativo (Basso): »Jedoch Dein Heilsam Wort, Das Macht«2:0635-10Aria (Tenore): »Jesus Nimmt Die Sünder An«4:5435-11Recitativo (Tenore): »Der Heiland Nimmt Die Sünder An«2:1535-12Aria (Duetto: Soprano, Alto): »Ach Herr, Mein Gott, Vergib Mirs Doch«2:5435-13Choral (Coro): »Stärk Mich Mit Deinem Freudengeist«1:08BWV 114 Ach, Lieben Chtisten, Seid Getrost (Dominica 17 Post Trinitatis = On The 17th Sunday After Trinity ∙ Am 17. Sonntag Nach Trinitatis ∙ Pour Le 17ème Dimanche Après La Trinité)24:01845763Gustav LeonhardtConductor35-14[Coro]: »Ach, Lieben Christen, Seid Getrost«3:5635-15Aria (Tenore): »Wo Wird In Diesem Jammertale«9:0935-16Recitativo (Basso): »O Sünder, Trage Mit Geduld«1:3735-17Choral (Soprano): »Kein Frucht Das Weizenkörnlein Bringt«2:1735-18Aria (Alto): »Du Machst, O Tod, Mir Nun Nicht Ferner Bange«5:1735-19Recitativo (Tenore): »Indes Bedenke Deine Seele«0:4535-20Choral (Coro): »Wir Wachen Oder Schlafen Ein«1:00Cantatas, BWV 115-117BWV 115 Mache Dich, Mein Geist, Bereit (Dominica 22 Post Trinitatis = On The 22nd Sunday After Trinity ∙ Am 22. Sonntag Nach Trinitatis ∙ Pour Le 22ème Dimanche Après La Trinité)21:55716084Nikolaus HarnoncourtConductor36-1[Coro]: »Mache Dich, Mein Geist, Bereit«4:2836-2Arai (Alto): »Ach, Schläfrige Seele«8:5336-3Recitativo (Basso): »Gott, So Vor Deine Seele Wacht«0:5936-4Aria (Soprano): »Bete Aber Auch Dabei«5:4336-5Recitativo (Tenore): »Er Sehnet Sich Nach Unserm Schreien«0:5536-6Choral (Coro): »Drum So Laßt Uns Immerdar«1:07BWV 116 Du Friedefürst, Herr Jesu Christ (Dominica 25 Post Trinitatis = On The 25th Sunday After Trinity ∙ Am 25. Sonntag Nach Trinitatis ∙ Pour Le 25ème Dimanche Après La Trinité)14:34716084Nikolaus HarnoncourtConductor36-7[Coro]: »Du Friedefürst, Herr Jesu Christ«4:1236-8Aria (Alto): »Ach, Unaussprechlich Ist Die Not«2:5836-9Recitativo (Tenore): »Gedenke Doch, O Jesu«0:4436-10Aria (Terzetto: Soprano, Tenore, Basso): »Ach, Wir Bekennen Unsre Schuld«4:3636-11Recitativo (Alto): »Ach, Laß Uns Durch Die Scharfen Ruten«1:0636-12Choral (Coro): »Erleucht Auch Unser Sinn Und Herz«1:08BWV 117 Sei Lob Und Ehr Dem Höchsten Gut (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)19:20845763Gustav LeonhardtConductor36-13[Coro]: »Sei Lob Und Ehr Dem Höchsten Gut«4:1036-14Recitativo (Basso): »Es Danken Dir Die Himmelsheer«1:0336-15Aria (Tenore): »Was Unser Gott Geschaffen Hat«3:0536-16Choral (Coro): »Ich Rief Dem Herrn In Meiner Not«0:5536-17Recitativo (Alto): »Der Herr Ist Noch Und Nimmer Nicht«1:3436-18Aria (Basso): »Wenn Trost Und Hülf Ermangeln Muß«3:3836-19Aria (Alto): »Ich Will Dich All Mein Leben Lang«3:1936-21Recitativo (Tenore): »Ihr, Die Ihr Christi Namen Nennt«0:4136-22[Coro]: »So Kommet Vor Sein Angesicht«0:55Cantatas, BWV 119-120BWV 119 Preise, Jerusalem, Den Herrn (For The Leipzig Town Council Inauguration 1723 ∙ Zum Leipziger Ratswechsel 1723 ∙ Pour Le Changement Du Conseil Municipal De Leipzig 1723)25:18716084Nikolaus HarnoncourtConductor37-1[Coro]: »Preise, Jerusalem, Den Herrn«5:1037-2Recitativo (Tenore): »Gesegnet Land, Glückselge Stadt«1:0837-3Aria (Tenore): »Wohl Dir, Du Volk Der Linden«4:1937-4Recitativo (Basso): »So Herrlich Stehst Du, Liebe Stadt«1:5237-5Aria (Alto): »Die Obrigkeit Ist Gottes Gabe«3:2337-6Recitativo (Soprano): »Nun, Wir Erkennen Es«0:5237-7[Coro]: »Der Herr Hat Guts An Uns Getan«7:0537-8Recitativo (Alto): »Zuletzt! Da Du Uns, Herr, Zu Deinem Volk Gesetzt«0:3737-9Choral (Coro): »Hilf Deinem Volk, Herr Jesu Christ«1:03BWV 120 Gott, Man Lobet Dich In Der Stille (For The Leipzig Town Council Inauguration 1728/29 ∙ Zum Leipziger Ratswechsel 1728/29 ∙ Pour Le Changement Du Conseil Municipal De Leipzig 1728/29)21:17716084Nikolaus HarnoncourtConductor37-10[Aria] (Alto): »Gott, Man Lobet Dich In Der Stille«6:0837-11Coro: »Jauchzet, Ihr Erfreuten Stimmen«6:4637-12Recitativo (Basso): »Auf, Du Geliebte Lindenstadt!«1:0437-13Aria (Soprano): »Heil Und Segen Soll Und Muß Zu Aller Zeit«5:2637-14Recitativo (Tenore): »Nun, Herr, So Weihe Selbst Das Regiment«0:3937-15Choral (Coro): »Nun Hilf Uns, Herr, Den Dienern Dein«1:14Cantatas, BWV 121-124BWV 121 Christum Wir Sollen Loben Schon (Feria 2 Nativitatis Christi = At The 2nd Day Of Christmas ∙ Am 2. Weihnachtstag ∙ Pour Le 2éme Jour De Noël)20:23716084Nikolaus HarnoncourtConductor38-1[Coro]: »Christum Wir Sollen Loben Schon«3:1538-2Aria (Tenore): »O Du Von Gott Erhöhte Kreatur«5:4138-3Recitativo (Alto): »Der Gnade Unermeßlichs Wesen«1:0238-4Aria (Basso): »Johannis Freudenvolles Springen«8:3038-5Recitativo (Soprano): »Doch Wie Erblickt Es Dich In Deiner Krippe?«0:5438-6Choral (Coro): »Lob, Ehr Und Dank Sei Dir Gesagt«1:11BWV 122 Das Neugeborne Kindelein (Dominica Post Nativitatis Christi = At The Sunday After Christmas ∙ Am Sonntag Nach Weihnachten ∙ Pour Le Dimanche Après Noël)14:45716084Nikolaus HarnoncourtConductor38-7[Coro]: »Das Neugeborne Kindelein«3:3038-8Aria (Basso): »O Menschen, Die Ihr Täglich Sündigt«5:0638-9Recitativo (Soprano): »Die Engel, Welche Sich Zuvor«1:2438-10Aria (Terzetto: Soprano, Alto, Tenore): »Ist Gott Versöhnt Und Unser Freund«2:4238-11Recitativo (Basso): »Dies Ist Ein Tag, Den Selbst Der Herr Gemacht«1:2638-12Choral (Coro): »Es Bringt Das Rechte Jubeljahr«0:47BWV 123 Liebster Immanuel, Herzog Der Frommen (Dominica 3 Post Epiphanias = At The Feast Of Epiphany ∙ Am Sonntag Epiphanias ∙ Pour La Fête De L'Epiphanie)21:20716084Nikolaus HarnoncourtConductor38-13[Coro]: »Liebster Immanuel, Herzog Der Frommen«5:2538-14Recitativo (Alto): »Die Himmelssüßigkeit«0:4438-15Aria (Tenore): »Auch Die Harte Kreuzesreise«5:0738-16Recitativo (Basso): »Kein Höllenfeind Kann Mich Verschlingen«0:4438-17Recitativo (Basso): »Kein Höllenfeind Kann Mich Verschlingen«7:5338-18Choral (Coro): »Drum Fahrt Nur Immer Hin«1:37BWV 124 Meinen Jesum Lass Ich Nicht (Dominica 1 Post Epiphanias = On The 1st Sunday After Epiphany ∙ Am 1. Sonntag Nach Epiphanias ∙ Pour Le 1er Dimanche Après L'Epiphanie)14:13716084Nikolaus HarnoncourtConductor38-19[Coro]: »Meinen Jesum Laß Ich Nicht«3:4538-20Recitativo (Tenore): »Solange Sich Ein Tropfen Blut«0:3538-21Aria (Tenore): »Und Wenn Der Harte Todesschlag«3:2638-22Recitativo (Basso): »Doch Ach! Welch Schweres Ungemach«0:4838-23Aria (Duetto: Soprano, Alto): »Entziehe Dich Eilends«4:4938-24Choral (Coro): »Jesum Laß Ich Nicht Von Mir«0:50Cantatas, BWV 125-127BWV 125 Mit Fried Und Freud Ich Fahr Dahin (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Am Feste Mariä Reinigung ∙ Pour La Fête De La Purification De Marie)23:50716084Nikolaus HarnoncourtConductor39-1[Coro]: »Mit Fried Und Freud Ich Fahr Dahin«5:2939-2Aria (Alto): »Ich Will Auch Mit Gebrochnen Augen«8:4139-3Recitativo (Basso): »O Wunder, Daß Ein Herz«2:3039-4Aria (Duetto: Tenore, Basso): »Ein Unbegreiflich Licht«5:4539-5Recitativo (Alto): »O Unerschöpfter Schatz Der Güte«0:3739-6Choral (Coro): »Er Ist Das Heil Und Selge Licht«0:58BWV 126 Erhalt Uns, Herr, Bei Deinem Wort (Dominica Sexagesimae = At The Sunday Sexagesimae ∙ Am Sonntag Sexagesimae ∙ Pour Le Dimanche Sexagésimae)17:09716084Nikolaus HarnoncourtConductor39-7[Coro]: »Erhalt Uns, Herr, Bei Deinem Wort«2:5939-8Aria (Tenore): »Sende Deine Macht Von Oben«4:1339-9Recitativo (Alto, Tenore): »Der Menschen Gunst Und Macht«1:5239-10Aria (Basso): »Stürze Zu Boden«5:3439-11Recitativo (Tenore): »So Wird Dein Wort Und Wahrheit Offenbar«0:4239-12Choral (Coro): »Verleih Uns Frieden Gnädiglich«1:59BWV 127 Herr Jesu Christ, Wahr' Mensch Und Gott (Dominica Estomihi = At The Sunday Estomihi ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche D'Estomihi)20:11845763Gustav LeonhardtConductor39-13[Coro]: »Herr Jesu Christ, Wahr' Mensch Und Gott«6:0839-14Recitativo (Tenore): »Wenn Alles Sich Zur Letzten Zeit«1:0839-15Aria (Soprano): »Die Seele Ruht In Jesu Händen«7:4739-16Recitativo · Aria (Basso): »Wenn Einstens Die Posaunen Schallen«4:2139-17Choral (Coro): »Ach, Herr, Vergib All Unsre Schuld«0:47Cantatas, BWV 128-130BWV 128 Auf Christi Himmelfahrt Allein (Festo Ascensionis Christi = At the Ascension Day ∙ Christi Himmelfahrt ∙ Pour La Fête De L'Ascension)17:43845763Gustav LeonhardtConductor40-1[Coro]: »Auf Christi Himmelfahrt Allein«5:0640-2Recitativo (Tenore): »Ich Bin Bereit, Komm, Hole Mich!«0:4240-3Aria (Basso): »Auf, Auf, Mit Hellem Schall«3:3340-4Aria (Duetto: Alto, Tenore): »Sein Allmacht Zu Ergründen«7:2240-5Choral (Coro): »Alsdenn So Wirst Du Mich«1:11BWV 129 Gelobet Sei Der Herr, Mein Gott (Festo Trinitatis = At The Feast Of Trinity ∙ Am Trinitatisfest ∙ Pour La Trinité)20:04845763Gustav LeonhardtConductor40-6Coro: »Gelobet Sei Der Herr, Mein Gott, Mein Licht«4:4040-7Aria (Basso): »Gelobet Sei Der Herr, Mein Gott, Mein Heil«3:5540-8Aria (Soprano): »Gelobet Sei Der Herr, Mein Gott, Mein Trost«4:4540-9Aria (Alto): »Gelobet Sei Der Herr, Mein Gott, Der Ewig Lebet«5:0140-10Choral (Coro): »Dem Wir Das Heilig Itzt Mit Freuden Lassen Klingen«1:53BWV 130 Herr Gott, Dich Loben Alle Wir (Festo S. Michaelis = At The Feast Of St. Michael ∙ Am Michaelistag ∙ Pour La Fête De Saint Michel)15:49716084Nikolaus HarnoncourtConductor40-11[Coro]: »Herr Gott, Dich Loben Alle Wir«3:1540-12Recitativo (Alto): »Ihr Heller Glanz«0:5040-13Aria (Basso): »Der Alte Drache Brennt Vor Neid«4:0940-14Recitativo (Soprano, Tenore): »Wohl Aber Uns«1:1940-15Aria (Tenore): »Laß, O Fürst Der Cherubinen«4:5640-16Choral (Coro): »Darum Wir Billig Loben Dich«1:20Cantatas, BWV 131-133BWV 131 Aus Der Tiefe Rufe Ich, Herr, Zu Dir (Penitential Service? = Bußgottesdienst? ∙ Office De Pénitence?)25:01716084Nikolaus HarnoncourtConductor41-1[Coro]: »Aus Der Tiefe Rufe Ich, Herr, Zu Dir«5:1641-2[Aria] (Duetto: Soprano, Basso): »So Du Willst, Herr, Sünde Zurechnen«4:3041-3[Coro]: »Ich Harre Des Herrn«4:5241-4[Aria] (Tenore, Alto): »Meine Seele Wartet Auf Den Herrn«5:3441-5[Coro]: »Israel, Hoffe Auf Den Herrn«5:00BWV 132 Bereitet Die Wege, Bereitet Die Bahn (Dominica 4 Adventus Christi = At The 4th Sunday Of Advent ∙ Am 4. Advent ∙ Pour Le 4ème Dimanche De L'Advent)18:54845763Gustav LeonhardtConductor41-6Aria (Soprano): »Bereitet Die Wege, Bereitet Die Bahn«7:0141-7Recitativo (Tenore) :»Willst Du Dich Gottes Kind Und Christi Bruder Nennen«2:1241-8Aria (Basso): »Wer Bist Du? Frage Dein Gewissen«3:1141-9Recitativo (Alto): »Ich Will, Mein Gott, Dir Frei Heraus Bekennen«1:4141-10Aria (Alto): »Christi Glieder, Ach Bedenket«3:5941-11Choral (Coro): »Ertöt Uns Durch Dein Güte«1:01BWV 133 Ich Freue Mich In Dir (Feria 3 Nativitatis Christi = At The 3rd Day Of Christmas ∙ Am 3. Weihnachtstag ∙ Pour Le 3ème Jour De Noël)20:47845763Gustav LeonhardtConductor41-12[Coro]: »Ich Freue Mich In Dir«4:1641-13Aria (Alto): »Getrost! Es Faßt Ein Heilger Leib«5:2841-14Recitativo (Tenore): »Ein Adam Mag Sich Voller Schrecken«0:5641-15Aria (Soprano). »Wie Lieblich Klingt Es In Den Ohren«8:1541-16Recitativo (Basso): »Wohlan, Des Todes Furcht Und Schmerz«0:5641-17Choral (Coro): »Wohlan, So Will Ich Mich An Dich, O Jesu, Halten«0:56Cantatas, BWV 134-137BWV 134 Ein Herz, Das Seinen Jesum Weiss (Feria 3 Paschatos = On The 3rd Day Of Easter ∙ Am 3. Osterfeiertag ∙ Pour Le 3ème Jour De Pâques)26:30845763Gustav LeonhardtConductor42-1Recitativo (Alto, Tenore): »Ein Herz, Das Seinen Jesus Lebend Weiß«0:4042-2Aria (Tenore): »Auf, Gläubige, Singet Die Lieblichen Lieder«5:4842-3Recitativo (Alto, Tenore): »Wohl Dir! Gott Hat An Dich Gedacht«2:0542-4Aria (Duetto: Alto, Tenore): »Wir Danken Und Preisen Dein Brünstiges Lieben«8:3142-5Recitativo (Alto, Tenore): »Doch Wirke Selbst Den Dank In Unserm Munde«1:4742-6Coro: »Erschallet, Ihr Himmel, Erfreue Dich Erde«7:49BWV 135 Ach Herr, Mich Armen Sünder (Dominica 3 Post Trinitatis = On The 3rd Sunday After Trinity ∙ Am 3. Sonntag Nach Trinitatis ∙ Pour Le 3ème Dimanche Après La Trinité)14:13845763Gustav LeonhardtConductor42-7[Coro]: »Ach Herr, Mich Armen Sünder«4:4742-8Recitativo (Tenore): »Ach Heile Mich, Du Arzt Der Seelen«1:0842-9Aria (Tenore): »Tröste Mir, Jesu, Mein Gemüte«3:2142-10Recitativo (Alto): »Ich Bin Von Seufzen Müde«0:5842-11Aria (Basso): »Weicht, All Ihr Übeltäter«3:0042-12Choral (Coro): »Ehr Sei Ins Himmels Throne«1:09BWV 136 Erforsche Mich, Gott, Und Erfahre Mein Herz (Dominica 8 Post Trinitatis = On The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)16:51716084Nikolaus HarnoncourtConductor42-13[Coro]: »Erforsche Mich, Gott, Und Erfahre Mein Herz«5:0042-14Recitativo (Tenore): »Ach, Daß Der Fluch«1:0842-15Aria (Alto): »Es Kommt Ein Tag«4:3142-16Recitativo (Basso): »Die Himmel Selber Sind Nicht Rein«1:0742-17Aria (Duetto: Tenore, Basso): »Uns Treffen Zwar Der Sünden Flecken«4:1642-18Choral (Coro): »Dein Blut, Der Edle Saft«1:00BWV 137 Lobe Den Herren, Den Mächtigen König Der Ehren (Dominica 12 Post Trinitatis = On The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12ème Dimanche Après La Trinité)14:06716084Nikolaus HarnoncourtConductor42-19Coro: »Lobe Den Herren«3:2642-20Aria (Alto): »Lobe Den Herren, Der Alles So Herrlich Regieret«3:2042-21Aria (Duetto: Soprano, Basso): »Lobe Den Herren, Der Künstlich Und Fein Dich Bereitet«3:3442-22Aria (Tenore): »Lobe Den Herren, Der Deinen Stand Sichtbar Gesegnet«2:5642-23Choral (Coro): »Lobe Den Herren, Was In Mir Ist, Lobe Den Namen!«0:50Cantatas, BWV 138-140BWV 138 Warum Betrübst Du Dich, Mein Herz (Dominica 15 Post Trinitatis = On The 15th Sunday After Trinity ∙ Am 15. Sonntag Nach Trinitatis ∙ Pour Le 15ème Dimanche Après La Trinité)17:54716084Nikolaus HarnoncourtConductor43-1[Coro · Recitativo] (Alto): »Warum Betrübst Du Dich, Mein Herz«4:3543-2Recitativo (Basso:) »Ich Bin Veracht'«1:0043-3[Coro · Recitativo] (Soprano, Alto): »Er Kann Und Will Dich Lassen Nicht«3:2543-4Recitativo (Tenore:): »Ach Süßer Trost!«1:1143-5Aria (Basso): »Auf Gott Steht Meine Zuversicht«5:1043-6Recitativo (Alto): »Ei Nun! So Will Ich Auch Recht Sanfte Ruhn«0:2743-7Choral (Coro): »Weil Du Mein Gott Und Vater Bist«2:17BWV 139 Wohl Dem, Der Sich Auf Seinen Gott (Dominica 21 Post Trinitatis = On The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)18:47716084Nikolaus HarnoncourtConductor43-8Coro: »Wohl Dem, Der Sich Auf Seinen Gott«5:2843-9Aria (Tenore): »Gott Ist Mein Freund«5:5543-10Recitativo (Alto): »Der Heiland Sendet Ja Die Seinen«0:3143-11Aria (Basso): »Das Unglück Schlägt Auf Allen Seiten«5:0843-12Recitativo (Soprano): »Ja, Trag Ich Gleich Den Größten Feind In Mir«0:4843-13Choral (Coro): »Dahero Trotz Der Höllen Heer!«1:08BWV 140 Wachet Auf, Ruft Uns Die Stimme (Dominica 27 Post Trinitatis = On The 27th Sunday After Trinity ∙ Am 27. Sonntag Nach Trinitatis ∙ Pour Le 27ème Dimanche Après La Trinité)28:29716084Nikolaus HarnoncourtConductor43-14[Coro]: »Wachet Auf, Ruft Uns Die Stimme«7:1043-15Recitativo (Tenore): »Er Kommt, Der Bräutigam Kommt«0:5843-16Aria (Duetto: Soprano/Seele, Basso/Jesus): »Wann Kömmst Du, Mein Heil?«6:3343-17Choral (Tenore): »Zion Hört Die Wächter Singen«3:5943-18Recitativo (Basso): »So Geh Herein Zu Mir«1:3743-19Aria (Duetto: Soprano, Basso): »Mein Freund Ist Mein! Und Ich Bin Sein!«6:2343-20Choral (Coro): »Gloria Sei Dir Gesungen«1:49Cantatas, BWV 143-146BWV 143 Lobe Den Herrn, Meine Seele (Festo Circumcisionis Christi = At The New Year's Day ∙ Am Neujahrstag ∙ Pour Le Nouvel An)13:09845763Gustav LeonhardtConductor44-1Coro: »Lobe Den Herrn, Meine Seele«1:1844-2Choral (Soprano): »Du Friedefürst, Herr Jesu Christ«2:1644-3Recitativo (Tenore): »Wohl Dem, Des Hilfe Der Gott Jakobs Ist«0:2144-4Aria (Tenore): »Tausendfaches Unglück, Schrecken«2:5444-5Aria (Basso): »Der Herr Ist König Ewiglich«1:4544-6Aria (Tenore): »Jesu, Retter Deiner Herde«2:2144-7Coro: »Halleluja!«2:24BWV 144 Nimm, Was Dein Ist, Und Gehe Hin (Dominica Septuagesimae = At The Sunday Of Septuagesimae ∙ Am Sonntag Septuagesimae ∙ Pour Le Dimanche De La Septuagésime)13:12845763Gustav LeonhardtConductor44-8[Coro]: »Nimm, Was Dein Ist, Und Gehe Hin«2:0444-9Aria (Alto): »Murre Nicht, Lieber Christ«5:0244-10Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«0:4844-11Recitativo (Tenore): »Wo Die Genügsamkeit Regiert«0:5644-12Aria (Soprano): »Genügsamkeit Ist Ein Schatz In Diesem Leben«3:1144-13Choral (Coro): »Was Mein Gott Will, Das G'scheh Allzeit«1:21BWV 145 Ich Lebe, Mein Herze, Zu Deinem Ergötzen (Feria 3 Paschatos = On The 3rd Day Of Easter ∙ Am 3. Osterfeiertag ∙ Pour La 3ème Jour De Pâques)9:28716084Nikolaus HarnoncourtConductor44-14Aria (Duetto: Soprano, Tenore): »Ich Lebe, Mein Herze, Zu Deinem Ergötzen«3:4044-15Recitativo (Tenore): »Nun Fordre, Moses, Wie Du Willt«0:5844-16Aria (Basso): »Merke, Mein Herz, Beständig Nur Dies«3:2044-17Recitativo (Soprano): »Mein Jesus Lebt!«0:4844-18Choral (Coro): »Drum Wir Auch Billig Fröhlich Sein«0:52BWV 146 Wir Müssen Durch Viel Trübsal In Das Reich Gottes Eingehen (Dominica Jubilitate = At The Sunday Jubilate ∙ Am Sonntag Jubilate ∙ Pour Le Dimanche De Jubilate)38:02716084Nikolaus HarnoncourtConductor44-19[Sinfonia]7:3544-20[Coro]: »Wir Müssen Durch Viel Trübsal In Das Reich Gottes Eingehen«6:2644-21Aria (Alto): »Ich Will Nach Dem Himmel Zu«8:1044-22Recitativo (Soprano): »Ach! Wer Doch Schon Im Himmel Wär!«2:0344-23Aria (Soprano): »Ich Säe Meine Zähren«5:4944-24Recitativo (Tenore): »Ich Bin Bereit«1:0544-25Duetto (Tenore, Basso): »Wie Will Ich Mich Freuen, Wie Will Ich Mich Laben«5:5244-26Choral (Coro): »Denn Wer Selig Dahin Fähret«1:02Cantatas, BWV 147-149BWV 147 Herz Und Mund Und Tat Und Leben Prima Parte (Festo Visitationis Mariae = At The Feast Of Visitation ∙ Mariae Heimsuchung ∙ Pour La Fête De La Visitation)20:31716084Nikolaus HarnoncourtConductor45-1Coro: »Herz Und Mund Und Tat Und Leben«4:5045-2Recitativo (Tenore): »Gebenedeiter Mund!«2:1545-3Aria (Alto): »Schäme Dich, O Seele, Nicht«4:0545-4Recitativo (Basso): »Verstockung Kann Gewaltige Verblenden«1:4045-5Aria (Soprano): »Bereite Dir, Jesu, Noch Itzo Die Bahn«5:0445-6Choral (Coro): »Wohl Mir, Daß Ich Jesum Habe«2:37BWV 147 Herz Und Mund Und Tat Und Leben Seconda Parte (Festo Visitationis Mariae = At The Feast Of Visitation ∙ Mariae Heimsuchung ∙ Pour La Fête De La Visitation)11:05716084Nikolaus HarnoncourtConductor45-7Aria (Tenore): »Hilf, Jesu, Hilf«3:2445-8Recitativo (Alto): »Der Höchsten Allmacht Wunderhand«2:2445-9Aria (Basso): »Ich Will Von Jesu Wundern Singen«2:3845-10Choral (Coro): »Jesus Bleibet Meine Freude«2:47BWV 148 (Dominica 17 Post Trinitatis = On The 17th Sunday After Trinity ∙ Am 17. Sonntag Nach Trinitatis ∙ Pour Le 17ème Dimanche Après La Trinité)17:35716084Nikolaus HarnoncourtConductor45-11Concerto: »Bringet Dem Herrn Ehre Seines Namens«3:5745-12Aria (Tenore): »Ich Eile, Die Lehren Des Lebens Zu Hören«5:0945-13Recitativo (Alto:) »So Wie Der Hirsch Nach Frischem Wasser Schreit«1:4045-14Aria (Alto): »Mund Und Herze Steht Dir Offen«5:1645-15Recitativo (Tenore): »Bleib Auch, Mein Gott, In Mir«0:3945-16Choral (Coro): »Amen Zu Aller Stund«1:04BWV 149 Man Singet Mit Freuden Vom Sieg (Festo Michaelis = At The Feast Of St Michael ∙ Am Michaelisfest ∙ Pour La Fête De Saint Michel)19:19845763Gustav LeonhardtConductor45-17Coro: »Man Singet Mit Freuden Vom Sieg«4:2745-18Aria (Basso): »Kraft Und Stärke Sei Gesungen«2:5345-19Recitativo (Alto): »Ich Fürchte Mich Vor Tausend Feinden Nicht«0:4445-20Aria (Soprano): »Gottes Engel Weichen Nie«5:1845-21Recitativo (Tenore): »Ich Danke Dir, Mein Lieber Gott«0:3645-22Aria (Duetto: Alto, Tenore): »Seid Wachsam, Ihr Heiligen Wächter«3:3945-23Choral (Coro): »Ach Herr, Laß Dein Lieb Engelein«1:42Cantatas, BWV 150-153BWV 150 Nach Dir, Herr, Verlanget Mich (Occasion Unspecified = Ohne Bestimmung ∙ Sans Destination)15:34845763Gustav LeonhardtConductor46-1Sinfonia1:2946-2Coro: »Nach Dir, Herr, Verlanget Mich«3:5046-3Aria (Soprano): »Doch Bin Und Bleibe Ich Vergnügt«1:2546-4Coro: »Leite Mich In Deiner Wahrheit«1:5346-5Aria (Terzetto: Alto, Tenore, Basso): »Zedern Müssen Von Den Winden«1:3046-6Coro: »Meine Augen Sehen Stets Zu Dem Herrn«2:1846-7Coro: »Meine Tage In Dem Leide«3:16BWV 151 Süsser Trost, Mein Jesus Kömmt (Feria 3 Nativitatis Christi = At The 3rd Day Of Christmas ∙ Am 3. Weihnachtstag ∙ Pour Le 3ème Jour De Noël)16:18845763Gustav LeonhardtConductor46-8Aria (Soprano): »Süßer Trost, Mein Jesu Kömmt«7:5646-9Recitativo (Basso): »Erfreue Dich, Mein Herz«1:0346-10Aria (Alto): »In Jesu Demut Kann Ich Trost«5:5446-11Recitativo (Tenore): »Du Teurer Gottessohn«0:4946-12Choral (Coro): »Heut Schleußt Er Wieder Auf Die Tür«0:45BWV 152 Tritt Auf Die Glaubensbahn (Dominica Post Nativitatis Christi = At The Sunday After Christmas ∙ Am Sonntag Nach Weihnachten ∙ Pour Le Dimanche Après Noël)19:08716084Nikolaus HarnoncourtConductor46-13Concerto3:3346-14Aria (Basso): »Tritt Auf Die Glaubensbahn«3:2546-15Recitativo (Basso): »Der Heiland Ist Gesetzt«2:0346-16Aria (Soprano): »Stein, Der Über Alle Schätze«4:1446-17Recitativo (Basso): »Es Ärgre Sich Die Kluge Welt«1:2846-18Duetto (Soprano, Basso): »Wie Soll Ich Dich, Liebster Der Seelen, Umfassen?«4:25BWV 153 Schau, Lieber Gott, Wie Meine Feind (Dominica Post Festum Circumcisionis Christi = For The Sunday After New Year ∙ Am Sonntag Nach Neujahr ∙ Pour Le Dimanche Après Noël)15:06716084Nikolaus HarnoncourtConductor46-19Choral (Coro): »Schau, Lieber Gott, Wie Meine Feind«1:0246-20Recitativo (Alto): »Mein Liebster Gott«0:3346-21Aria (Basso): »Fürchte Dich Nicht, Ich Bin Mit Dir«1:4046-22Recitativo (Tenore): »Du Sprichst Zwar, Lieber Gott«1:3346-23Choral (Coro): »Und Ob Gleich Alle Teufel«1:0546-24Aria (Tenore): »Stürmt Nur, Stürmt, Ihr Trübsalswetter«2:5646-25Recitativo (Basso): »Getrost! Mein Herz, Erdulde Deinen Schmerz«1:3846-26Aria (Alto): »Soll Ich Meinen Lebenslauf«2:5546-27Choral (Coro): »Drum Will Ich, Weil Ich Lebe Noch«1:44Cantatas, BWV 154-157BWV 154 Mein Liebster Jesus Ist Verloren (Dominica 1 Post Epiphanias = At The 1st Sunday After Epiphany ∙ Am 1. Sonntag Nach Epiphanias ∙ Pour Le 1er Dimanche Aprés L'Epiphanie)15:59716084Nikolaus HarnoncourtConductor47-1Aria (Tenore): »Mein Liebster Jesus Ist Verloren«2:5847-2Recitativo (Tenore): »Wo Treff Ich Meinen Jesum An«0:3247-3Choral (Coro): »Jesu, Mein Hort Und Erretter«1:0447-4Aria (Alto): »Jesu, Laß Dich Finden«3:4247-5Arioso (Basso): »Wisset Ihr Nicht«1:1347-6Recitativo (Tenore): »Dies Ist Die Stimme Meines Freundes«1:5147-7Aria (Duetto: Alto, Tenore): »Wohl Mir, Jesus Ist Gefunden«3:4547-8Choral (Coro): »Meinen Jesum Laß Ich Nicht«1:01BWV 155 Mein Gott, Wie Lang, Ach Lange (Dominica 2 Post Epiphanias = At The 2nd Sunday After Epiphany ∙ Am 2. Sonntag Nach Epiphanias ∙ Pour Le 2ème Dimanche Aprés L'Epiphanie)14:08716084Nikolaus HarnoncourtConductor47-9Recitativo (Soprano): »Mein Gott, Wie Lang, Ach Lange?«1:5947-10Aria (Duetto: Alto, Tenore): »Du Mußt Glauben, Du Mußt Hoffen«5:5447-11Recitativo (Basso): »So Sei, O Seele, Sei Zufrieden«2:0847-12Aria (Soprano): »Wirf, Mein Herze, Wirf Dich Noch«2:5647-13Choral (Coro): »Ob Sichs Anließ, Als Wollt Er Nicht«1:17BWV 156 Ich Steh Mit Einem Fuss Im Grabe (Dominica 3 Post Epiphanias = At The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Aprés L'Epiphanie)16:22716084Nikolaus HarnoncourtConductor47-14Sinfonia2:4747-15Aria · Choral (Soprano, Tenore): »Ich Steh Mit Einem Fuß Im Grabe«5:2547-16Recitativo (Basso): »Mein Angst Und Not«1:2547-17Aria (Alto): »Herr, Was Du Willt, Soll Mir Gefallen«4:3147-18Recitativo (Basso): »Und Willst Du, Daß Ich Nicht Soll Kranken«0:5947-19Choral (Coro): »Herr, Wie Du Willt, So Schicks Mit Mir«1:25BWV 157 Ich Lasse Dich Nicht, Du Segnest Mich Denn (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Mariae Reinigung ∙ Pour La Fête De La Purification De Marie)19:35845763Gustav LeonhardtConductor47-20Duetto: (Tenore, Basso): »Ich Lasse Dich Nicht, Du Segnest Mich Denn!«4:1247-21Aria (Tenore): »Ich Halte Meinen Jesum Feste«6:5147-22Recitativo (Tenore): »Mein Lieber Jesu Du«1:3247-23Aria (Basso): »Ja, Ja, Ich Halte Jesum Feste«6:0647-24Choral (Coro): »Meinen Jesum Laß Ich Nicht«0:54Cantatas, BWV 158, 159, 161 & 162BWV 158 Der Friede Sei Mit Dir (Festo Purificationes Mariae / Feria 3 Paschatos = At The Feast Of The Purification / At The 3rd Day Of Easter ∙ Mariae Reinigung / Am 3. Ostertag ∙ Pour La Fête De La Purification De Marie / Pour Le 3ème Jour De Pacques)11:32845763Gustav LeonhardtConductor48-1Recitativo (Basso): »Der Friede Sei Mit Dir«1:4848-2Aria ∙ Choral (Basso, Soprano): »Welt Ade! Ich Bin Dein Müde«7:0348-3Recitativo (Basso): »Nun Herr, Regiere Meinen Sinn«1:3548-4Choral (Coro): »Hier Ist Das Rechte Osterlamm«1:15BWV 159 Seht, Wir Gehn Hinauf Gen Jerusalem (Dominica Estomihi = At The Sunday Estomihi ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche D'Estomihi)14:36845763Gustav LeonhardtConductor48-5Arioso ∙ Recitativo (Basso, Alto): »Sehet! Komm, Schau Doch, Mein Sinn«2:5948-6Aria ∙ Choral (Alto, Soprano): »Ich Folge Dir Nach«4:1348-7Recitativo (Tenore): »Nun Will Ich Mich, Mein Jesu«1:0348-8Aria (Basso): »Es Ist Vollbracht«5:1448-9Choral (Coro): »Jesu, Deine Passion«1:16BWV 161 Komm, Du Süsse Todesstunde (Dominica 16 Post Trinitatis / Festo Purificationes Mariae = At The 16th Sunday After Trinity / At The Feast Of The Purification ∙ Am 16. Sonntag Nach Trinitatis / Zu Mariae Reinigung ∙ Pour Le 16ème Dimanche Après La Trinité Et De La Purification De Marie)18:13716084Nikolaus HarnoncourtConductor48-10Aria (Alto): »Komm, Du Süße Todesstunde«4:4348-11Recitativo (Tenore): »Welt, Deine Lust Ist Last«1:5348-12Aria (Tenore): »Mein Verlangen«5:0648-13Recitativo (Alto): »Der Schluß Ist Schon Gemacht«2:1748-14Coro: »Wenn Es Meines Gottes Wille«3:0748-15Choral (Coro): »Der Leib Zwar In Der Erden«1:07BWV 162 Ach, Ich Sehe, Itzt, Da Ich Zur Hochzeit Gehe (Dominica 20 Post Trinitatis = At The 20th Sunday After Trinity ∙ Am 20. Sonntag Nach Trinitatis ∙ Pour Le 20ème Dimanche Après La Trinité)16:37716084Nikolaus HarnoncourtConductor48-16Aria (Basso): »Ach, Ich Sehe, Itzt, Da Ich Zur Hochzeit Gehe«3:4448-17Recitativo (Tenore): »O Großes Hochzeitfest«1:2448-18Aria (Soprano): »Jesu, Brunnquell Aller Gnaden«4:2648-19Recitativo (Alto): »Mein Jesu, Laß Mich Nicht«1:3548-20Aria (Duetto: Alto, Tenore): »In Meinem Gott Bin Ich Erfreut«4:2248-21Choral (Coro): »Ach, Ich Habe Schon Erblicket«1:06Cantatas, BWV 163-166BWV 163 Nur Jedem Das Seine (Dominica 23 Post Trinitatis = At The 23rd Sunday After Trinity ∙ Am 23. Sonntag Nach Trinitatis ∙ Pour Le 23ème Dimanche Après La Trinité)14:14716084Nikolaus HarnoncourtConductor49-1Aria (Tenore): »Nur Jedem Das Seine!«3:3849-2Recitativo (Basso): »Du Bist, Mein Gott«1:2849-3Aria (Basso): »Laß Mein Herz Die Münze Sein«2:5049-4Recitativo (Soprano, Alto): »Ich Wollte Dir, O Gott«2:2249-5Aria (Duetto: Soprano, Alto): »Nimm Mich Mir Und Gib Mich Dir!«3:0849-6Choral (Coro): »Führ Auch Mein Herz Und Sinn«0:58BWV 164 Ihr, Die Ihr Euch Von Christo Nennet (Dominica 13 Post Trinitatis = At The 13th Sunday After Trinity ∙ Am 13. Sonntag Nach Trinitatis ∙ Pour Le 13ème Dimanche Après La Trinité)17:26845763Gustav LeonhardtConductor49-7Aria (Tenore): »Ihr, Die Ihr Euch Von Christo Nennet«4:2849-8Recitativo (Basso): »Wir Hören Zwar, Was Selbst Die Liebe Spricht«1:4749-9Aria (Alto): »Nur Durch Lieb Und Durch Erbarmen«4:3449-10Recitativo (Tenore): »Ach, Schmelze Doch Durch Deinen Liebesstrahl«1:4249-11Aria (Duetto: Soprano, Basso): »Händen, Die Sich Nicht Verschließen«3:5849-12Choral (Coro): »Ertöt Uns Durch Dein Güte«1:05BWV 165 O Heilges Geist- Und Wasserbad (Festo Trinitatis = At The Feast Of Trinity ∙ Am Trinitatisfest ∙ Pour La Trinité)12:31845763Gustav LeonhardtConductor49-13[Aria] (Soprano): »O Heilges Geist- Und Wasserbad«3:0849-14Recitativo (Basso): »Die Sündige Geburt Verdammter Adamserben«1:2649-15Aria (Alto): »Jesu, Der Aus Großer Liebe«2:2049-16Recitativo (Basso): »Ich Habe Ja, Mein Seelenbräutigam«2:0449-17Aria (Tenore): »Jesu, Meines Todes Tod«2:5749-18Choral (Coro): »Sein Wort, Sein Tauf, Sein Nachtmal«0:49BWV 166 Wo Gehest Du Hin? (Dominica Cantate = At The Sunday Cantate ∙ Am Sonntag Cantate ∙ Pour Le Dimanche Cantate)17:53845763Gustav LeonhardtConductor49-19Aria (Basso): »Wo Gehest Du Hin?«1:5949-20Aria (Tenore): »Ich Will An Den Himmel Denken«7:2549-21Choral (Soprano): »Ich Bitte Dich, Herr Jesu Christ«2:5349-22Recitativo (Basso): »Gleichwie Die Regenwasser Bald Verfließen«0:5549-23Aria (Alto): »Man Nehme Sich In Acht«3:4949-24Choral (Coro): »Wer Weiß, Wie Nahe Mir Mein Ende«0:52Cantatas, BWV 167-169BWV 167 Ihr Menschen, Rühmet Gottes Liebe (Festo Joannis Baptistae = At The Feast Of John The Baptist ∙ Am Feste Johannes Des Täufers ∙ Pour La Fête De Saint-Jean-Baptiste)18:42716084Nikolaus HarnoncourtConductor50-1[Aria] (Tenore): »Ihr Menschen, Rühmet Gottes Liebe«5:4450-2Recitativo (Alto): »Gelobet Sei Der Herr Gott Israel«1:4950-3Duetto (Soprano, Alto): »Gottes Wort, Das Trüget Nicht«7:2550-45Recitativo (Basso): »Des Weibes Samen Kam«1:0750-5Choral (Coro): »Sei Lob Und Preis Mit Ehren«2:45BWV 168 Tue Rechnung! Donnerwort (Dominica 9 Post Trinitatis = At The 9th Sunday After Trinity ∙ Am 9. Sonntag Nach Trinitatis ∙ Pour Le 9ème Dimanche Après La Trinité)13:27716084Nikolaus HarnoncourtConductor50-6Aria (Basso): »Tue Rechnung! Donnerwort«3:2750-7Recitativo (Tenore): »Es Ist Nur Fremdes Gut«1:3750-8Aria (Tenore): »Kapital Und Interessen«3:2650-9Recitativo (Basso): »Jedoch, Erschrocknes Herz«1:4450-10Aria (Duetto: Soprano, Alto): »Herz, Zerreiß Des Mammons Kette«2:1750-11Choral (Coro): »Stärk Mich Mit Deinem Freudengeist«1:04BWV 169 Gott Soll Allein Mein Herze Haben (Dominica 18 Post Trinitatis = At The 18th Sunday After Trinity ∙ Am 18. Sonntag Nach Trinitatis ∙ Pour Le 18ème Dimanche Après La Trinité)22:50716084Nikolaus HarnoncourtConductor50-12Sinfonia7:3750-13Arioso ∙ Recitativo (Alto): »Gott Soll Allein Mein Herze Haben«2:4450-14Aria (Alto): »Gott Soll Allein Mein Herze Haben«5:3150-15Recitativo (Alto): »Was Ist Die Liebe Gottes?«0:4950-16Aria (Alto): »Stirb In Mir«4:3750-17Recitativo (Alto): »Doch Meint Es Auch«0:2350-18Choral (Coro): »Du Süße Liebe«0:58Cantatas, BWV 170-173BWV 170 Vergnügte Ruh, Beliebte Seelenlust (Dominica 6 Post Trinitatis = At The 6th Sunday After Trinity ∙ Am 6. Sonntag Nach Trinitatis ∙ Pour Le 6ème Dimanche Après La Trinité)22:42845763Gustav LeonhardtConductor51-1[Aria] (Alto): »Vergnügte Ruh, Beliebte Seelenlust«6:1751-2Recitativo (Alto): »Die Welt, Das Sündenhaus, Bricht Nur In Höllenlieder Aus«1:1751-3[Aria] (Alto): »Wie Jammern Mich Doch Die Verkehrten Herzen«8:0951-4Recitativo (Alto): »Wer Sollte Sich Demnach Wohl Hier Zu Leben Wünschen«1:1551-5Aria (Alto): »Mir Ekelt Mehr Zu Leben«5:52BWV 171 Gott, Wie Dein Name, So Ist Auch Dein Ruhm (Festo Circumcisionis Christi = At The New Year ∙ Zum Neujahr ∙ Pour Le Jour De L'An)16:01716084Nikolaus HarnoncourtConductor51-6[Coro]: »Gott, Wie Dein Name, So Ist Auch Dein Ruhm«1:5851-7Aria (Tenore): »Herr, So Weit Die Wolken Gehen«3:5851-8Recitativo (Alto): »Du Süßer Jesus-Name Du«1:0551-9Aria (Soprano): »Jesus Soll Mein Erstes Wort«5:1851-10Recitativo (Basso): »Und Da Du, Herr, Gesagt«1:4051-11Choral (Coro): »Laß Uns Das Jahr Vollbringen«2:12BWV 172 Erschallet, Ihr Lieder (Feria 1 Pentecostes = At The Feast Of Whit Sunday ∙ Am 1. Pfingsttag ∙ Pour La Fête De Pentecôte)16:47845763Gustav LeonhardtConductor51-12Coro: »Erschallet, Ihr Lieder, Erklinget, Ihr Saiten!«4:0451-13Recitativo (Basso): »Wer Mich Liebet«0:5451-14Aria (Basso): »Heiligste Dreieinigkeit«2:0851-15Aria (Tenore): »O Seelenparadies«4:3851-16Aria (Duetto: Soprano, Alto): »Komm, Laß Mich Nicht Länger Warten«3:4851-17Choral (Coro): »Von Gott Kömmt Mir Ein Freudenschein«1:25BWV 173 Erhöhtes Fleisch Und Blut (Feria 2 Pentecostes = At The 2nd Day Of Whit Sun ∙ Am 2. Pfingsttag ∙ Pour Le 2ème Jour De Pentecôte)13:56716084Nikolaus HarnoncourtConductor51-18Recitativo (Tenore): »Erhöhtes Fleisch Und Blut«0:3551-19[Aria] (Tenore): »Ein Geheiligtes Gemüte«4:1351-20[Aria] (Alto): »Gott Will, O Ihr Menschenkinder«1:4551-21Aria (Duetto: Basso, Soprano): »So Hat Gott Die Welt Geliebt«4:0451-22Recitativo (Duetto: Soprano, Tenore): »Unendlichster, Den Man Doch Vater Nennt«1:1151-23Coro: »Rühre, Höchster, Unsren Geist«2:08Cantatas, BWV 174-176BWV 174 Ich Liebe Den Höchsten Von Ganzem Gemüte (Feria 2 Pentecostes = At The 2nd Day Of Whit Sun ∙ Am 2. Pfingsttag ∙ Pour Le 2ème Jour De Pentecôte)20:37716084Nikolaus HarnoncourtConductor52-1Sinfonia (Concerto)6:1252-2Aria (Alto): »Ich Liebe Den Höchsten Von Ganzem Gemüte«8:2052-3Recitativo (Tenore): »O Liebe, Welche Keiner Gleich!«1:0752-4Aria (Basso): »Greifet Zu, Faßt Das Heil«3:1952-5Choral (Coro): »Herzlich Lieb Hab Ich Dich«1:48BWV 175 Er Rufet Seinen Schafen Mit Namen (Feria 3 Pentecostes = At The 3rd Day Of Whit Sun ∙ Am 3. Pfingsttag ∙ Pour Le 3ème Jour De Pentecôte)16:57845763Gustav LeonhardtConductor52-6[Recitativo] (Tenore): »Er Rufet Seinen Schafen Mit Namen«0:2652-7Aria (Alto): »Komm, Leite Mich«4:5452-8Recitativo (Tenore): »Wo Find Ich Dich?«0:2652-9Aria (Tenore): »Es Dünket Mich, Ich Seh Dich Kommen«3:5152-10Recitativo (Alto, Basso): »Sie Vernahmen Aber Nicht«1:0752-11Aria (Basso): »Öffnet Euch, Ihr Beiden Ohren«4:3552-12Choral (Coro): »Nun, Werter Geist, Ich Folg Dir«1:47BWV 176 Es Ist Ein Trotzig Und Verzagt Ding (Festo Trinitatis = At Trinity ∙ Am SonntagTrinitatis ∙ Pour La Trinité)12:21845763Gustav LeonhardtConductor52-13[Coro]: »Es Ist Ein Trotzig Und Verzagt Ding«2:3552-14Recitativo (Alto): »Ich Meine, Recht Verzagt«0:4552-15Aria (Soprano): »Dein Sonst Hell Beliebter Schein«3:0252-16Recitativo (Basso): »So Wundre Dich, O Meister, Nicht«1:5452-17Aria (Alto): »Ermuntert Euch, Furchtsam Und Schüchterne Sinne«2:5052-18Choral (Coro): »Auf Daß Wir Also Allzugleich«1:15Cantatas, BWV 177-179BWV 177 Ich Ruf Zu Dir, Herr Jesu Christ (Dominica 4 Post Trinitatis = At The 4th Sunday After Trinity ∙ Am 4. Sonntag Nach Trinitatis ∙ Pour Le 4ème Dimanche Après La Trinité)24:53716084Nikolaus HarnoncourtConductor53-1Coro: »Ich Ruf Zu Dir, Herr Jesu Christ«6:3253-2[Aria] (Alto): »Ich Bitt Noch Mehr, O Herre Gott«6:1953-3[Aria] (Soprano): »Verleih, Daß Ich Aus Herzensgrund«6:1453-4[Aria] (Tenore): »Laß Mich Kein Lust Noch Furcht«4:3653-5[Choral] (Coro): »Ich Lieg Im Streit Und Widerstreb«1:20BWV 178 Wo Gott Der Herr Nicht Bei Uns Hält (Dominica 8 Post Trinitatis = At The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)20:12716084Nikolaus HarnoncourtConductor53-6Coro: »Wo Gott Der Herr Nicht Bei Uns Hält«5:2353-7Choral ∙ Recitativo (Alto): »Was Menschenkraft Und -witz Anfäht«2:0553-8Aria (Basso): »Gleichwie Die Wilden Meereswellen«3:3353-9Choral (Tenore): »Sie Stellen Uns Wie Ketzern Nach«1:5353-10Choral (Coro) ∙ Recitativo (Alto, Tenore, Basso): »Aufsperren Sie Den Rachen Weit«1:2753-11Aria (Tenore): »Schweig, Schweig Nur, Taumelnde Vernunft!«4:0353-12Choral (Coro): »Die Feind Sind All In Deiner Hand«1:58BWV 179 Siehe Zu, Dass Deine Gottesfurcht Nicht Heuchelei Sei (Dominica 11 Post Trinitatis = At The 11th Sunday After Trinity ∙ Am 11. Sonntag Nach Trinitatis ∙ Pour Le 11ème Dimanche Après La Trinité)12:54716084Nikolaus HarnoncourtConductor53-13[Coro]: »Siehe Zu, Daß Deine Gottesfurcht Nicht Heuchelei Sei«2:3953-14Recitativo (Tenore): »Das Heutge Christentum«0:5353-15Aria (Tenore): »Falscher Heuchler Ebenbild«2:2153-16Recitativo (Basso): »Wer So Von Innen Wie Von Außen Ist«1:3953-17Aria (Soprano): »Liebster Gott, Erbarme Dich«4:1753-18Choral (Coro): »Ich Armer Mensch, Ich Armer Sünder«1:05Cantatas, BWV 180-182BWV 180 Schmücke Dich, O Liebe Seele (Dominica 20 Post Trinitatis = At The 20th Sunday After Trinity ∙ Am 20. Sonntag Nach Trinitatis ∙ Pour Le 20ème Dimanche Après La Trinité)24:53845763Gustav LeonhardtConductor54-1[Choro]: »Schmücke Dich, O Liebe Seele«7:2854-2Aria (Tenore): »Ermuntre Dich«5:4054-3Recitativo · Arioso (Soprano): »Wie Teuer Sind Des Heilgen Mahles Gaben!«3:0154-4Recitativo (Alto): »Mein Herz Fühlt In Sich Furcht Und Freude«1:3554-5Aria (Soprano): »Lebens Sonne, Licht Der Sinnen«4:5554-6Recitativo (Basso): »Herr, Laß An Mir Dein Treues Leben«0:5954-7Choral (Coro): »Jesu, Wahres Brot Des Lebens«1:24BWV 181 Leichtgesinnte Flattergeister (Dominica Sexagesimae = At The Sunday Sexagesimae ∙ Am Sonntag Sexagesimae ∙ Pour Le Dimanche De La Sexagésime)13:48845763Gustav LeonhardtConductor54-8Aria (Basso): »Leichtgesinnte Flattergeister«3:1454-8Recitativo (Alto): »O Unglückselger Stand Verkehrter Seelen«1:3854-10Aria (Tenore): »Der Schädlichen Dornen Unendliche Zahl«2:4854-11Recitativo (Soprano): »Von Diesen Wird Die Kraft Erstickt«0:4254-12Coro: »Laß, Höchster, Uns Zu Allen Zeiten«5:37BWV 182 Himmelskönig, Sei Willkommen (Dominica Palmarum = At Palmsunday ∙ Zum Palmsonntag ∙ Pour Le Dimanche Des Rameaux)30:50716084Nikolaus HarnoncourtConductor54-13Sonata (Concerto: Grave, Adagio)2:3154-14Coro: »Himmelskönig, Sei Willkommen«3:5054-15Recitativo (Basso): »Siehe, Siehe, Ich Komme«0:4754-16Aria (Basso): »Starkes Lieben, Das Dich, Großer Gottessohn«2:5054-17Aria (Alto): »Leget Euch Dem Heiland Unter«8:0354-18Aria (Tenore): »Jesu, Laß Durch Wohl Und Weh«4:2854-19Choral (Coro): »Jesu, Deine Passion«3:2354-20Coro: »So Lasset Uns Gehen In Salem Der Freuden«4:58Cantatas, BWV 183-185BWV 183 Sie Werden Euch In Den Bann Tun (Dominica Exaudi = At The Sunday After The Ascension ∙ Am Sonntag Exaudi ∙ Pour Le Dimanche Après L'Ascension)13:37716084Nikolaus HarnoncourtConductor55-1Recitativo (Basso): »Sie Werden Euch In Den Bann Tun«0:2255-2Aria (Tenore): »Ich Fürchte Nicht Des Todes Schrecken«7:3155-3Recitativo (Alto): »Ich Bin Bereit, Mein Blut Und Armes Leben«0:4655-4Aria (Soprano): »Höchster Tröster, Heilger Geist«3:4755-5Choral (Coro): »Du Bist Ein Geist, Der Lehret«1:21BWV 184 Erwünschtes Freudenlicht (Feria 3 Pentecostes = At The 3rd Day Of Whit Sun ∙ Am 3. Pfingsttag ∙ Pour Le 3ème Jour De Pentecôte)23:26845763Gustav LeonhardtConductor55-6Recitativo (Tenore): »Erwünschtes Freudenlicht«3:3755-7Aria (Duetto: Soprano, Alto): »Gesegnete Christen«9:2155-8Recitativo (Tenore): »So Freuet Euch, Ihr Auserwählten Seelen«2:0755-9Aria (Tenore): »Glück Und Segen Sind Bereit«4:3255-10Choral (Coro): »Herr, Ich Hoff Je, Du Werdest Die In Keiner Not Verlassen«1:1755-11Coro (Soli: Soprano, Basso): »Guter Hirte, Trost Der Deinen«2:41BWV 185 Barmerziges Herze Der Ewigen Liebe (Dominica 4 Post Trinitatis = At The 4th Sunday After Trinity ∙ Am 4. Sonntag Nach Trinitatis ∙ Pour Le 4ème Dimanche Après La Trinité)14:15716084Nikolaus HarnoncourtConductor55-12Aria (Duetto: Soprano, Tenore): »Barmherziges Herze Der Ewigen Liebe«2:5755-13Recitativo (Alto): »Ihr Herzen, Die Ihr Euch«2:0355-14Aria (Alto): »Sei Bemüht In Dieser Zeit«4:4155-15Recitativo (Basso): »Die Eigenliebe Schmeichelt Sich!«1:0155-16Aria (Basso): »Das Ist Der Christen Kunst«2:1555-17Choral (Coro): »Ich Ruf Zu Dir, Herr Jesu Christ«1:18Cantatas, BWV 186-187BWV 186 Ärgre Dich, O Seele, Nicht Prima Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)14:29716084Nikolaus HarnoncourtConductor56-1Coro: »Ärgre Dich, O Seele, Nicht«3:1856-2Recitativo (Basso): »Die Knechtsgestalt, Die Not, Der Mangel«1:2856-3Aria (Basso): »Bist Du, Der Mir Helfen Soll«2:3756-4Recitativo (Tenore): »Ach, Daß Ein Christ So Sehr«2:1556-5Aria (Tenore): »Mein Heiland Läßt Sich Merken«2:5556-6Choral (Coro): »Ob Sichs Anließ, Als Wollt Er Nicht«2:00BWV 186 Ärgre Dich, O Seele, Nicht Seconda Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)13:03716084Nikolaus HarnoncourtConductor56-7Recitativo (Basso:) »Es Ist Die Welt Die Große Wüstenei«1:4356-8Aria (Soprano): »Die Armen Will Der Herr Umarmen«3:0056-9Recitativo (Alto): »Nun Mag Die Welt Mit Ihrer Lust Vergehen«1:2556-10Aria (Duetto: (Soprano, Alto): »Laß, Seele, Kein Leiden«4:5756-11Choral (Coro): »Die Hoffnung Wart' Der Rechten Zeit«2:08BWV 187 Es Wartet Alles Auf Dich Prima Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)12:37845763Gustav LeonhardtConductor56-12[Coro]: »Es Wartet Alles Auf Dich«7:1056-13Recitativo (Basso): »Was Kreaturen Hält Das Große Rund Der Welt«0:5656-14Aria (Alto): »Du Herr, Du Krönst Allein Das Jahr«4:31BWV 187 Es Wartet Alles Auf Dich Seconda Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)19:28845763Gustav LeonhardtConductor56-15Aria (Basso): »Darum Sollt Ihr Nicht Sorgen«2:4656-16Aria (Soprano): »Gott Versorget Alles Leben«4:1956-17Recitativo (Soprano): »Halt Ich Nur Fest An Ihm Mit Kindlichem Vertrauen«1:1756-18Choral (Coro): »Gott Hat Die Erde Zugericht«2:06Cantatas, BWV 188 & 192BWV 188 Ich Habe Meine Zuversicht (Dominica 21 Post Trinitatis = At The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)24:50716084Nikolaus HarnoncourtConductor57-1Sinfonia7:3857-2Aria (Tenore): »Ich Habe Meine Zuversicht«8:0657-3Recitativo (Basso): »Gott Meint Es Gut Mit Jedermann«2:0057-4Aria (Alto): »Unerforschlich Ist Die Weise«5:4257-5Recitativo (Soprao): »Die Macht Der Welt Verlieret Sich«0:3457-6Choral (Coro): »Auf Meinen Lieben Gott«0:57BWV 192 Nun Danket Alle Gott (Unspecified Occasion = Ohne Bestimmung ∙ Sans Destination)12:13716084Nikolaus HarnoncourtConductor57-7Coro: »Nun Danket Alle Gott«5:2857-8[Duetto] (Soprano, Basso): »Der Ewig Reiche Gott«3:4057-9[Coro]: »Lob, Ehr Und Preis Sei Gott«3:05Cantatas, BWV 194 & 195BWV 194 Höchsterwünschtes Freudenfest Prima Parte (Concerto Bey Einweihung Der Orgel In Störmthal, 2.11.1723 / Trinitatis = Organ Dedication Störmthal, 2.11.1723 / Trinity ∙ Inauguration DeL'Orgue, Störmthal 2.11.1723 / Trinité)20:40716084Nikolaus HarnoncourtConductor58-1Coro: »Höchsterwünschtes Freudenfest«5:0558-2Recitativo (Basso): »Unendlich Großer Gott«1:1058-3Aria (Basso): »Was Des Höchsten Glanz Erfüllt«4:4758-4Recitativo (Soprano): »Wie Könnte Dir, Du Höchstes Angesicht«1:2458-5Aria (Soprano): »Hilf, Gott, Daß Es Uns Gelingt«6:0458-6Choral (Coro): »Heilger Geist Ins Himmels Throne«2:10BWV 194 Höchsterwünschtes Freudenfest Seconda Parte (Concerto Bey Einweihung Der Orgel In Störmthal, 2.11.1723 / Trinitatis = Organ Dedication Störmthal, 2.11.1723 / Trinity ∙ Inauguration DeL'Orgue, Störmthal 2.11.1723 / Trinité)18:33716084Nikolaus HarnoncourtConductor58-7Recitativo (Tenore): »Ihr Heiligen, Erfreuet Euch«1:0758-8Aria (Tenore): »Des Höchsten Gegenwart Allein«3:4858-9Recitativo (Duetto: Soprano, Basso): »Kann Wohl Ein Mensch«2:1058-10Aria (Duetto: Soprano, Basso): »O Wie Wohl Ist Uns Geschehn«9:2458-11Recitativo (Basso): »Wohlan Demnach, Du Heilge Gemeine«0:4658-12Choral (Coro): »Sprich Ja Zu Meinen Taten«1:26BWV 195 Dem Gerechten Muss Das Licht (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)18:57845763Gustav LeonhardtConductor58-13Coro (Soli: Soprano, Alto, Tenore, Basso): »Dem Gerechten Muß Das Licht«5:2458-14Recitativo (Basso): »Dem Freudenlicht Gerechter Frommen«1:2058-15Aria (Basso): »Rühmet Gottes Güt Und Treu!«4:2158-16Recitativo (Soprano): »Wohlan, So Knüpfet Denn Ein Band«1:1558-17Coro (Soli: Soprano, Alto, Tenore, Basso): »Wir Kommen, Deine Heiligkeit«5:5258-18Choral (Coro): »Nun Danket All Und Bringet Ehr«0:45Cantatas, BWV 196 & 197BWV 196 Der Herr Denket An Uns (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)12:12716084Nikolaus HarnoncourtConductor59-1Sinfonia2:1359-2Coro: »Der Herr Denket An Uns«2:1559-3Aria (Soprano): »Er Segnet, Die Den Herrn Fürchten«2:2959-4Duetto: (Tenore, Basso): »Der Herr Segne Euch«1:5259-5Coro: »Ihr Seid Die Gesegneten Des Herrn«3:32BWV 197 Gott Ist Unsre Zuversicht (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)16:15845763Gustav LeonhardtConductor59-6Coro: »Gott Ist Unsre Zuversicht«6:1859-7Recitativo (Basso): »Gott Ist Und Bleibt Der Beste Sorger«1:1659-8Aria (Alto): »Schläfert Allen Sorgenkummer«6:4359-9Recitativo (Basso): »Drum Folget Gott Und Seinem Triebe!«0:5459-10Choral (Coro): »Du Süße Lieb, Schenk Uns Deine Gunst«1:04BWV 197 Gott Ist Unsere Zuversicht Post Copulationem (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)13:46845763Gustav LeonhardtConductor59-11Aria (Basso): »O Du Angenehmes Paar!«5:3959-12Recitativo (Soprano): »So Wie Es Gott Mit Dir Getreu«1:4759-13Aria (Soprano): »Vergnügen Und Lust«4:3259-14Recitativo (Basso): »Und Dieser Frohe Lebenslauf«0:5459-15Choral (Coro): »Sing, Bet Und Geh Auf Gottes Wegen«0:54Cantatas, BWV 198 & 199BWV 198 Lass, Fürstin, Lass Noch Einen Strahl Prima Parte (Funeral Ode = Trauer-Ode ∙ Ode Funèbre)23:33845763Gustav LeonhardtConductor60-1Coro: »Laß, Fürstin, Laß Noch Einen Strahl«6:1360-2Recitativo (Soprano): »Dein Sachsen, Dein Bestürztes Meißen«1:1660-3Aria (Saprano): »Verstummt, Verstummt, Ihr Holden Saiten!«4:0460-4Recitativo (Alto): »Der Glocken Bebendes Getön«0:4760-5Aria (Alto): »Wie Starb Die Heldin So Vergnügt!«7:4660-6Recitativo (Tenore): »Ihr Leben Ließ Die Kunst Zu Sterben«1:1160-7Coro: »An Dir, Du Vorbild Großer Frauen«2:16BWV 198 Lass, Fürstin, Lass Noch Einen Strahl Seconda Parte (Funeral Ode = Trauer-Ode ∙ Ode Funèbre)11:41845763Gustav LeonhardtConductor60-8Aria (Tenore): »Der Ewigkeit Saphirnes Haus«4:0660-9Recitativo · Arioso (Basso): »Was Wunder Ists?«2:3260-10Coro: »Doch Königin! Du Stirbest Nicht!«5:14BWV 199 Mein Herze Schwimmt Im Blut (Dominica 11 Post Trinitatis = At The 11th Sunday After Trinity ∙ Am 11. Sonntag Nach Trinitatis ∙ Pour Le 11ème Dimanche Après La Trinité)23:42716084Nikolaus HarnoncourtConductor60-11Recitativo (Soprano): »Mein Herze Schwimmt Im Blut«2:0960-12Aria (Soprano): »Stumme Seufzer, Stille Klagen«8:4460-13Recitativo (Soprano): »Doch Gott Muß Mir Gnädig Sein«1:0260-14Aria (Soprano): »Tief Gebückt Und Voller Reue«6:3660-15Recitativo (Soprano): »Auf Diese Schmerzensreu«0:1560-166Choral (Soprano): »Ich, Dein Betrübtes Kind«2:0660-17Recitativo (Soprano): »Ich Lege Mich In Diese Wunden«0:4160-18Aria (Soprano): »Wie Freudig Ist Mein Herz«2:09Secular Cantatas (Cantates Profanes ∙ Weltliche Kantaten)Cantatas, BWV 134A & 173ABWV 134A Die Zeit, Die Tag Und Jahre Macht36:01836665Ton KoopmanConductor61-1Recitativo (Alto, Tenore): »Die Zeit, Die Tag Und Jahre Macht«0:3461-2Aria (Tenore): »Auf, Sterbliche, Lasset Ein Jauchzen Ertönen«5:4461-3Recitativo (Alto, Tenore): »So Bald, Als Dir Die Sternen Hold«2:1961-4Aria ∙ Duetto (Alto, Tenore): »Es Streiten, Es Siegen Die Künftigen Zeiten«8:4761-5Recitativo (Alto, Tenore): »Bedenke Nur, Begücktes Land«3:0361-6Aria (Alto): »Der Zeiten Herr Hat Viel Vergnügte Stunden«6:4661-7Recitativo (Alto, Tenore): »Hilf, Höchster, Hilf«1:5061-8Coro: »Ergetzet Auf Erden«6:58BWV 173A Durchlauchtster Leopold18:40836665Ton KoopmanConductor61-9Recitativo (Soprano): »Durchlauchtster Leopold«0:4261-10Aria (Soprano): »Güldner Sonnen Frohe Stunden«3:3761-11[Aria] (Basso): »Leopolds Vortrefflichkeiten«1:3561-12Aria (Soprano, Basso): »Unter Seinem Purpursaum«3:3661-13Recitativo (Soprano, Basso): »Durchlauchtigster, Den Anhalt Vater Nennt«1:0861-14Aria (Soprano): »So Schau Des Holden Tages Licht«3:1361-15Aria (Basso): »Dein Name Gleich Der Sonnen Geh«2:2261-16Coro (Soprano, Basso): »Nimm Auch, Großer Fürst, Uns Auf«2:27Cantatas, BWV 201 & 204BWV 201 Geschwinde, Geschwinde Ihr Wirbelnden Winde (Dramma Per Musica) (The Dispute Between Phoebus And Pan ∙ Der Streit Zwischen Phoebus Und Pan ∙ La Querelle Entre Phébus Et Pan)47:27836665Ton KoopmanConductor62-1Coro: »Geschwinde, Geschwinde, Ihr Wirbelnden Winde«5:2062-2Recitativo (Soprano, Basso I, II): »Und Du Bist Doch So Unverschämt«1:4462-3Aria (Soprano): »Patron, Das Macht Der Wind«2:2262-4Recitativo (Alto, Basso I, II): »Was Braucht Ihr Euch Zu Zanken?«1:0062-5Aria (Basso I): »Mit Verlangen«9:4362-6Recitativo (Soprano, Basso II): »Pan, Rücke Deine Kehle Nun«0:2262-7Aria (Basso II): »Zu Tanze, Zu Sprunge«5:0462-8Recitativo (Alto, Tenore I): »Nunmehro Richter Her!«0:5162-9Aria (Tenore I): »Phoebus, Deine Melodei«5:3262-10Recitativo (Tenore II, Basso II): »Komm, Midas , Sage Du Nun An«0:4862-11Aria (Tenore II): »Pan Ist Meister, Laßt Ihn Gehn!«4:3362-12Recitativo (Soprano, Alto, Tenore I, II, Basso I, II): »Wie, Midas Bist Du Toll?«1:0462-13Aria (Alto) »Aufgeblasne Hitze, Aber Wening Grütze«5:5162-14Recitativo (Soprano): »Du Guter Midas, Geh Nun Hin«1:1162-15Coro: »Labt Das Herz, Ihr Holden Saiten«2:11BWV 204 Ich Bin In Mir Vergnügt26:51836665Ton KoopmanConductor62-16Recitativo (Soprano): »Ich Bin In Mir Vergnügt«1:3862-17Aria (Soprano): »Ruhig Und In Sich Zufrieden«6:4662-18[Recitativo] (Soprano): »Ihr Seelen, Die Ihr Außer Euch«1:5862-19Aria (Soprano): »Die Schätzbarkeit Der Weiten Erden«4:0762-20Recitativo (Soprano): »Schwer Ist Es Zwar«1:5662-21[Aria] (Soprano): »Meine Seele Sei Vergnügt«5:5262-22Recitativo (Soprano): »Ein Edler Mensch Ist Perlenmuscheln Gleich«2:3362-23Aria (Soprano): »Himmlische Vergnügsamkeit«4:01Cantatas, BWV 202, 203 & 209BWV 202 Weichet Nur, Betrübte Schatten21:31861282Jaap SchröderConductor63-1[Aria] (Soprano): »Weichet Nur, Betrübte Schatten«6:4063-2[Recitativo] (Soprano): »Die Welt Wird Wieder Neu«0:2963-3Aria (Soprano): »Phoebus Eilt«3:3463-4Recitativo (Soprano): »Drum Sucht Auch Amor Sein Vergnügen«0:3963-5Aria (Soprano): »Wenn Die Frühlingslüfte Streichen«2:3363-6Recitativo (Soprano): »Und Dieses Ist Das Glücke«0:4763-7Aria (Soprano): »Sich Üben Im Lieben«4:3863-8Recitativo (Soprano): »So Sei Das Band Der Keuschen Liebe«0:2663-9Gavotte (Soprano): »Sehet In Zufriedenheit«1:54BWV 203 Amore Traditore14:26845763Gustav LeonhardtConductor63-10[Aria] (Basso): »Amore Traditore«6:5363-11Recitativo (Basso): »Voglio Provar«0:3463-12Aria (Basso): »Chi In Amore Ha Nemica La Sorte«7:06BWV 209 Non Sa Che Sia Dolore23:54845763Gustav LeonhardtConductor63-13Sinfonia7:3363-14Recitativo (Soprano): »Non Są Che Sia Dolore«0:4663-15Aria (Soprano): »Parti Pur E Con Dolore«8:5363-16Recitativo (Soprano): »Tuo Saver Al Tempo E L'Età Contrast«0:3063-17Aria (Soprano): »Ricetti Gramezza E Pavento«6:12Cantatas, BWV 206 & 207BWV 207 Vereinigte Zwietracht Der Wechselnden Saiten (Dramma Per Musica)33:01837585Reinhard GoebelConductor64-1Marche2:5764-2Coro: »Vereinigte Zwietracht Der Wechselnden Saiten«3:5464-3Recitativo (Tenore): »Wen Treibt Ein Edler Trieb«1:5564-4Aria (Tenore): »Zieht Euren Fuß Nur Nicht Zurücke«3:2764-5Recitativo (Soprano, Basso): »Dem Nur Allein Soll Meine Wohnung Offen Sein«2:0564-6Aria ∙ Duetto (Soprano, Basso): »Den Soll Mein Lorbeer Schützend Decken«4:1464-7Ritornello1:2164-8Recitativo (Alto): »Es Ist Kein Leeres Wort«1:4664-9Aria (Alto): »Ätzet Dieses Angedenken«5:1964-10Recitativo (Soprano, Alto, Tenore, Basso): »Ihr Schläfrigen, Herbei!«3:0064-11Coro: »Kortte Lebe, Kortte Blühe!«3:12BWV 206 Schleicht, Spielende Wellen (Dramma Per Musica)42:091514389André Rieu (2)Conductor64-12Coro: »Schleicht, Spielende Wellen«6:3264-13Recitativo (Basso): »O Glückliche Veränderung!«1:1964-14Aria (Basso): »Schleuß Des Janustemples Türen«5:1264-15Recitativo (Tenore): »So Recht! Beglückter Weichselstrom!«1:4264-16Aria (Tenore): »Jede Woge Meiner Wellen«7:5164-17Recitativo (Alto): »Ich Nehm Zugleich An Deiner Freude Teil«1:0364-18Aria (Alto): »Reis Von Habsburgs Hohem Stamme«6:5964-19Recitativo (Soprano): »Verzeiht, Bemooste Häupter Starker Ströme«1:5864-20Aria (Soprano): »Hört Doch! Der Sanften Flöten Chor«3:5764-21Recitativo (Soprano, Alto, Tenore, Basso): »Ich Muß, Ich Will Gehorsam Sein«1:4164-22Coro: »Die Himmlische Vorsicht«3:55Cantatas, BWV 205 & 211BWV 205 Zerreisset, Zersprenget, Zertrümmert Die Gruft (Dramma Per Musica) (Aeolus Satisfied ∙ Der Zufriedengestellte Aeolus ∙ Aeolus Apaisé)40:53716084Nikolaus HarnoncourtConductor65-1Coro: »Zerreißet, Zersprenget, Zertrümmert Die Gruft«6:2765-2Recitativo (Basso): »Ja! Ja! Die Stunden Sind Nunmehro Nah«1:3965-3Aria (Basso): »Wie Will Ich Lustig Lachen«4:1565-4Recitativo (Tenore): »Gefürcht'ter Aeolus«0:3865-5Aria (Tenore): »Frische Schatten, Meine Freude«4:4465-6Recitativo (Basso): »Beinahe Wirst Du Mich Bewegen«0:3665-7Aria (Alto): »Können Nicht Die Roten Wangen«3:1565-8Recitativo (Soprano, Alto): »So Willst Du, Grimmer Aelous«0:4765-9Aria (Soprano): »Angenehmer Zephyrus«4:1165-10Recitativo (Soprano, Basso): »Mein Aelous, Acht«2:1965-11Aria (Basso): »Zurücke, Zurücke, Geflügelten Winde«3:2465-12Recitativo (Soprano, Alto, Tenore): »Was Lust! Was Freude!«1:3865-13Aria [Duetto] (Alto, Tenore): »Zweig Und Äste«3:1565-14Recitativo (Soprano): »Ja, Ja! Ich Lad Euch Selbst Zu Dieser Feier Ein«0:4065-15Coro: »Vivat August«3:16BWV 211 Schweigt Stille, Plaudert Nicht (Coffee Cantata ∙ Kaffeekantate ∙ Cantate Du Café)27:02716084Nikolaus HarnoncourtConductor65-16Recitativo (Tenore): »Schweigt Stille, Plaudert Nicht« Aria (Basso): »Hat Man Nicht Mit Seinen Kindern«3:1865-17Recitativo (Soprano, Basso): »Du Böses Kind, Du Loses Mädgen« Aria (Soprano): »Ei, Wie Schmeckt Der Coffee Süße«5:2365-18Recitativo (Soprano, Basso): »Wenn Du Mir Nicht Den Coffee Läßt« Aria (Basso): »Mädgen, Die Von Harten Sinnen«4:0565-19Recitativo (Soprano, Basso): »Nun Folge, Was Dein Vater Spricht« Aria (Soprano): »Heute Noch«8:3765-20Recitativo (Tenore): »Nun Geht Und Sucht Der Alte Schlendrian« Coro (Soprano, Tenore, Basso): »Die Katze Läßt Das Mausen Nicht«5:39Cantatas, BWV 207A & 210BWV 207A Auf, Schmetternde Töne Der Muntern Trompeten (Dramma Per Musica)33:43836665Ton KoopmanConductor66-1Marche1:3866-2Coro: »Auf, Schmetternde Töne Der Muntern Trompeten«4:2566-3Recitativo (Tenore): »Die Stille Pleiße Spielt«2:0366-4Aria (Tenore): »Augustus' Namestages Schimmer«3:4066-5Recitativo (Soprano, Basso): »Augustus' Wohl Ist Der Treuen Sachsen Wohlergehn«1:4566-6Aria [Duetto] (Soprano, Basso): »Mich Kann Die Süße Ruhe Laben«4:5966-7Ritornello1:1366-8Recitativo (Alto): »Augustus Schützt Die Frohen Felder«0:5566-9Aria (Alto): »Preiset, Späte Folgezeiten«5:3166-10Recitativo (Soprano, Alto, Tenore, Basso): »Ihr Fröhlichen, Herbei!«3:1066-11Coro: »Augustus Lebe! Lebe König!«2:4366-12Marche1:41BWV 210 O Holder Tag, Erwünschte Zeit32:39836665Ton KoopmanConductor66-13Recitativo (Soprano): »O Holder Tag, Erwünschte Zeit«0:5466-14Aria (Soprano): »Spielet, Ihr Beseelten Lieder«6:1066-15Recitativo (Soprano): »Doch, Haltet Ein«1:0766-16Aria (Soprano): »Ruhet Hie, Matte Töne«6:1866-17Recitativo (Soprano): »So Glaubt Man Denn, Das Die Musik Verführe«2:0266-18Aria (Soprano): »Schweigt, Ihr Flöten, Schweigt«4:5166-19Recitativo (Soprano): »Was Luft? Was Grab?«1:3666-20Aria (Soprano): »Großer Gönner, Dein Vergnügen«3:1166-21Recitativo (Soprano): »Hochteurer Mann, So Fahre Ferner Fort«1:1866-22Aria (Soprano): »Seid Beglückt, Edle Beide«5:21Cantatas, BWV 208 & 212BWV 208 Was Mir Behagt, Ist Nur Die Muntre Jagd (Hunt Cantata ∙ Jagdkantate ∙ Cantate De La Chasse)33:31716084Nikolaus HarnoncourtConductor67-1Recitativo (Soprano I): »Was Mir Behagt, Ist Nur Die Muntre Jagd!«0:3767-2Aria (Soprano I): »Jagen Ist Die Lust Der Götter«1:5167-3Recitativo (Tenore): »Wie, Schönste Göttin«1:1367-4Aria (Tenore): »Willst Du Dich Nicht Mehr Ergötzen«4:4567-5Recitativo (Soprano I, Tenore): »Ich Liebe Dich Zwar Noch!«2:2067-6Recitativo (Basso): »Ich, Der Sonst Ein Gott«0:3867-7Aria (Basso): »Ein Fürst Ist Seines Landes Pan«2:3367-8Recitativo (Soprano II): »Soll Denn Der Pales Opfer«0:3767-9Aria (Soprano II): »Schafe Können Sicher Weiden«4:5567-10Recitativo (Soprano I): »So Stimmt Mit Ein«0:1167-11Coro (Soprano I / II, Tenore, Basso): »Lebe, Sonne Dieser Erden«3:1567-12Duetto (Soprano I, Tenore): »Entzücket Uns Beide«2:0167-13Aria (Soprano II): »Weil Die Wollenreichen Herden«1:4967-14Aria (Basso): »Ihr Felder Und Auen«3:2067-15Coro (Soprano I / II, Tenore, Basso): »Ihr Lieblichste Blicke«3:36BWV 212 Mer Han En Neue Oberkeet (Peasant Cantata ∙ Bauernkantate ∙ Cantate Des Paysans)30:26716084Nikolaus HarnoncourtConductor67-16[Ouverture]2:1167-17Aria ∙ Duetto (Soprano, Basso): »Mer Han En Neue Oberkeet«0:3567-18Recitativo (Soprano, Basso): »Nu, Mieke, Gib Dein Guschel Immer Her«0:5867-19[Aria] (Soprano): »Ach, Es Schmeckt Doch Gar Zu Gut«1:0567-20Recitativo (Basso): »Der Herr Ist Gut«0:2367-21Aria (Basso): »Ach, Herr Schösser«1:1267-22Recitativo (Soprano): »Es Bleibt Dabei«0:2167-23[Aria] (Soprano): »Unser Trefflicher Lieber Kammerherr«1:3267-24Recitativo (Soprano, Basso): »Er Hilft Uns Allen, Alt Und Jung«0:3267-25Aria (Soprano): »Das Ist Galant«1:1567-26Recitativo (Basso): »Und Unsre Gnäd'ge Frau«0:4667-27Aria (Basso): »Fünfzig Taler Bares Geld«0:5067-28Recitativo (Soprano): »Im Ernst Ein Wort!«0:2667-29Aria (Soprano): »Klein-Zschocher Müsse«7:2567-30Recitativo (Basso): »Das Ist Zu Klug Vor Dich«0:2267-31Aria (Basso): »Es Nehme Zehntausend Dukaten«0:4367-32Recitativo (Soprano): »Das Klingt Zu Liederlich«0:2167-33Aria (Soprano): »Gib, Schöne, Viel Söhne«0:4067-34Recitativo (Basso): »Du Hast Wohl Recht«0:2067-35Aria (Basso): »Dein Wachstum Sei Feste«5:5167-36Recitativo (Soprano, Basso): »Und Damit Sei Es Auch Genug«0:1567-37[Aria] (Soprano): »Und Daß Ihr's Alle Wißt«0:4367-38[Recitativo] (Soprano, Bass): »Mein Schatz, Erraten!«0:3367-39Coro (Soprano, Basso): »Wir Gehn Nun«1:07Cantatas, BWV 213BWV 213 Lasst Uns Sorgen, Lasst Uns Wachen (Dramma Per Musica ) (Hercules At The Crossroad ∙ Herkules Auf Dem Scheidewege ∙ Le Choix D'Hercule)45:37836665Ton KoopmanConductor68-1Coro: »Laßt Uns Sorgen, Laßt Uns Wachen«6:3868-2Recitativo (Alto): »Und Wo? Wo Ist Der Rechte Bahn«0:4468-3Aria (Soprano): »Schlafe Mein Liebster«9:2268-4Recitativo (Soprano, Tenore): »Auf! Folge Meiner Bahn«1:1568-5Aria (Alto): »Treues Echo«5:1368-6Recitativo (Tenore): »Mein Hoffnungsvoller Held!«1:0268-7Aria (Tenore): »Auf Meinen Flügeln Sollst Du Schweben«4:3968-8Recitativo (Tenore): »Die Weiche Wollust Locket Zwar«0:4568-9Aria (Alto): »Ich Will Dich Nicht Hören«3:3968-10Recitativo (Alto, Tenore): »Geliebte Tugend, Du Allein«0:4868-11Aria Duetto (Alto, Tenore): »Ich Bin Deine, Du Bist Meine«7:3668-12Recitativo (Basso): »Schaut, Götter, Dieses Ist Ein Bild«1:1568-13Coro: »Lust Der Vòlker, Lust Der Deinen«2:42Cantatas, BWV 214 & 215BWV 214 Tönet, Ihr Pauken! Erschallet, Trompeten! (Dramma Per Musica)25:25836665Ton KoopmanConductor69-1Coro: »Tönet, Ihr Pauken! Erschallet, Trompeten!«7:5569-2Recitativo (Tenore): »Heut Ist Der Tag«0:5169-3Aria (Soprano): »Blast Die Wohlgegriffnen Flöten«3:1769-4Recitativo (Soprano): »Mein Knallendes Metall«0:4869-5Aria (Alto): »Fromme Musen!«3:3169-6Recitativo (Alto): »Unsre Königin Im Lande«1:0669-7Aria (Basso): »Kron Und Preis Gekrönter Damen«4:2769-8Recitativo (Basso): »So Dringe In Das Weite Erdenrund«1:1969-9Coro: »Blühet, Ihr Linden In Sachsen«2:19BWV 215 Preise Dein Glücke, Gesegnetes Sachsen (Dramma Per Musica)32:12836665Ton KoopmanConductor69-10Coro (Coro I / II): »Preise Dein Glücke, Gesegnetes Sachsen«7:1269-11Recitativo (Tenore): »Wie Können Wir, Großmächtigster August«1:1869-12Aria (Tenore): »Freilich Trotzt Augustus' Name«6:4369-13Recitativo (Basso): »Was Hat Dich Sonst, Sarmatien, Bewogen«1:4769-14Aria (Basso): »Rase Nur, Verwegner Schwarm«3:1669-15Recitativo (Soprano): »Ja, Ja! Gott Ist Uns Noch Mit Seiner Hülfe Nah«1:3069-16Aria (Soprano): »Durch Die Von Eifer Entflammeten Waffen«4:0669-17Recitativo (Soprano, Tenore, Basso): »Laß Doch, O Teurer Landesvater, Zu«2:5869-18Coro: »Stifter Der Reiche, Beherrscher Der Kronen«3:32Cantatas, BWV 190, 191 & 193BWV 190 Singet Dem Herrn Ein Neues Lied16:16836665Ton KoopmanConductor70-1[Coro]: »Singet Dem Herrn Ein Neues Lied«4:2370-2Choral [E Recitativo] (Coro): »Her Gott, Dich Loben Wir«1:4370-3Aria (Alto): »Lobe, Zion, Deinen Gott«2:3370-4Recitativo (Basso): »Es Wünsche Sich Die Welt«1:2470-5Aria (Tenore, Basso): »Jesus Soll Mein Alles Sein«3:0670-6Recitativo (Tenore): »Nun, Jesus Gebe«1:4070-7Choral (Coro): »Laß Uns Das Jahr Vollbringen«1:33BWV 191 Gloria In Excelsis Deo14:44836665Ton KoopmanConductor70-8[Coro]: »Gloria In Excelsis Deo«6:4570-9[Duetto] (Soprano, Tenore): »Gloria Patri«3:5870-10[Coro]: »Sicut Erat In Principio«4:07BWV 192 Ihr Tore Zu Zion19:50836665Ton KoopmanConductor70-11[Coro]: »Ihr Tore Zu Zion«4:1870-12Recitativo (Soprano): »Der Hüter Israel«0:3870-13Aria (Soprano): »Gott, Wir Danken Deiner Güte«5:4170-14Recitativo (Alto): »O Leipziger Jerusalem«0:4770-15Aria (Alto): »Sende, Herr, Den Segen Ein«3:1770-16Recitativo (Basso): »Nun, Herr, So Weihe Selbst Das Regiment«0:4770-17[Coro]: »Ihr Tore Zu Zion«4:22Cantatas, BWV 63 App., 182 App., 36C & 200BWV 63 Appendix Christen, Ätzet Diesen Tag 6:45836665Ton KoopmanConductor71-1Aria [Duetto] (Soprano, Bass): »Christen, Ätzet Diesen Tag«6:45BWV 182 Appendix Himmelskönig, Sei Willkommen4:37836665Ton KoopmanConductor71-2Sonata (Concerto: Grave, Adagio)2:0471-3Choral (Coro): »Jesu, Deine Passion«2:33BWV 36c Schwingt Freudig Euch Empor25:44446577Peter SchreierConductor71-4[Coro]: »Schwingt Freudig Euch Empor«4:0071-5Recitativo (Tenore): »Ein Herz, In Zärtlichem Empfinden«1:2071-6Aria (Tenore): »Die Liebe Führt Mit Sanften Schritten«4:5171-7Recitativo (Basso): »Du Bist Es Ja, O Hochverdienter Mann«1:0171-8Aria (Basso): »Der Tag, Der Dich Vordem Gebar«3:1171-9Recitativo (Saprano): »Nur Dieses Einzge Sorgen Wir«0:3971-10Aria (Soprano): »Auch Mit Gedämpften, Schwachen Stimmen«6:4971-11Recitativo (Tenore): »Bei Solchen Freudenvollen Stunden«0:2771-12Coro: »Wie Die Jahre Sich Verneuen«3:26BWV 200 Bekennen Will Ich Seinen Namen3:54869040Fritz WernerConductor71-13Aria (Alto): »Bekennen Will Ich Seinen Namen«3:54Mass In B Minor, BWV 232 (I) (H-Moll-Messe ∙ Messe En Si Mineur)I. MissaKyrie18:43716084Nikolaus HarnoncourtConductor72-1Kyrie Eleison10:3172-2Christe Eleison5:1672-3Kyrie Eleison2:56Gloria36:41716084Nikolaus HarnoncourtConductor72-4Gloria In Excelsis Deo6:3872-5Laudamus Te4:0772-6Gratias Agimus Tibi2:3772-7Domine Deus5:5672-8Qui Tollis3:0272-9Qui Sedes4:4872-10Quoniam Tu Solus5:1572-11Cum Sancto Spiritu4:18II. Symbolum NicenumCredo31:33716084Nikolaus HarnoncourtConductor73-1Credo In Unum Deo1:5373-2Patrem Omnipotemten2:0673-3Et In Unum Dominum5:0673-4Et Incarnatus Est2:5973-5Crucifixus3:3373-6Et Resurrexit4:2773-7Et In Spiritum5:1373-8Confiteor3:5573-9Et Expecto2:21III. Sanctus73-10Sanctus4:22716084Nikolaus HarnoncourtConductorIV. Osanna, Benedictus, Agnus Dei Et Dona Nobis Pacem73-11Osanna2:37716084Nikolaus HarnoncourtConductor73-12Benedictus6:43716084Nikolaus HarnoncourtConductor73-13Agnus Dei5:15716084Nikolaus HarnoncourtConductor73-14Dona Nobis Pacem2:52716084Nikolaus HarnoncourtConductorMissa BrevesMissa Breves (I)Mass BWV 233 (In F Major ∙ F-Dur ∙ Fa Majeur)28:51833014Michel CorbozConductor74-1Kyrie4:4574-2Gloria6:1574-3Domine Deus3:5474-4Qui Tollis5:4274-5Quoniam5:2474-6Cum Sancto Spiritu2:57Mass BWV 234 (In A Major ∙ A-Dur ∙ La Majeur)35:38833014Michel CorbozConductor74-7Kyrie7:3874-8Gloria5:4074-9Domine Deus7:2874-10Qui Tollis6:2474-11Quoniam4:0374-12Cum Sancto Spiritu4:3674-13Sanctus BWV 239 (In D Major ∙ D-Dur ∙ Ré Majeur)1:44833014Michel CorbozConductor74-14Sanctus BWV 240 (In G Major ∙ G-Dur ∙ Sol Majeur)2:44833014Michel CorbozConductor74-15Sanctus BWV 241 (In D Major ∙ D-Dur ∙ Re Majeur)2:08833014Michel CorbozConductorMissa Breves (II)Mass BWV 236 (In G Major ∙ G-Dur ∙ Sol Majeur)29:34833014Michel CorbozConductor75-1Kyrie4:2475-2Gloria5:0075-3Gratias Agimus Tibi5:3675-4Domine Deus4:4775-5Quoniam6:0675-6Cum Sancto Spiritu3:48Mass BWV 235 (In G Minor ∙ G-Moll ∙ Sol Mineur)32:22833014Michel CorbozConductor75-7Kyrie7:3975-8Gloria4:0175-9Gratias Agimus Tibi4:5375-10Domine Fili5:5975-11Qui Tollis4:5975-12Cum Sancto Spiritu4:5975-13Sanctus BWV 238 (In D Minor ∙ D-Moll ∙ Re Mineur)3:22833014Michel CorbozConductor75-14Christe Eleison BWV 242 (In G Minor ∙ G-Moll ∙ Sol Mineur)2:11833014Michel CorbozConductor75-15Sanctus BWV 237 (In C Major ∙ C-Dur ∙ Ut Majeur)1:43833014Michel CorbozConductorMagnificats, BWV 243 & 243AMagnificat BWV 243 (In D Major ∙ D-Dur ∙ Ré Majeur)27:26716084Nikolaus HarnoncourtConductor76-1Chorus »Magnificat«3:2276-2Air »Et Exultavit Spiritus Meus«2:4076-3Air »Quia Respexit Humilitatem«2:0176-4Chorus »Omnes Generationes«1:2876-5Air »Quia Mihi Fecit Magna«2:0076-6Duet »Et Misericordia«3:3376-7Chorus »Fecit Potentiam«2:0076-8Air »Deposuit Potentes«2:0976-9Air »Esurientes Implevit Bonis«2:5776-10Trio »Suscepit Israel«1:2576-11Chorus »Sicut Locutus Est«1:3476-12Chorus »Gloria Patri«2:28Magnificat BWV 243 A (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)35:44252872Simon PrestonConductor76-13Chorus »Magnificat«3:1776-14Air »Et Exultavit Spiritus Meus«2:1376-15Chorale »Vom Himmel Hoch Da Komm' Ich Her«2:2476-16Air »Quia Respexit Humilitatem«2:4176-17Chorus »Omnes Generationes«1:2676-18Air »Quia Mihi Fecit Magna«2:0576-19Chorale »Freut Euch Und Jubilieret«1:2776-20Duet »Et Misericordia«3:4976-21Chorus »Fecit Potentiam«2:0776-22Chorale »Gloria In Excelsis Deo«1:0876-23Air »Deposuit Potentes«1:5976-24Air »Esurientes Implevit Bonis«2:5676-25Chorale »Virga Jesse Floruit«2:5476-26Trio »Suscepit Israel«1:4776-27Chorus »Sicut Locutus Est«1:2976-28Chorus »Gloria Patri«2:02St Matthew Passion, BWV 244 (Matthäuspassion ∙ Passion Selon St Matthieu)Prima Parte76:05716084Nikolaus HarnoncourtConductor77-11. Choir 1, 2: »Kommt, Ihr Töchter, Helft Mir Klagen«7:2577-22. Evangelist: »Da Jesus Diese Rede Vollendet Hatte«0:4877-33. Chorale »Herzliebster Jesu, Was Hast Du Verbrochen«0:5277-44a. Evangelist: »Da Versammelten Sich Die Hohepriester«0:2977-54b. Choir 1, 2: »Ja Nicht Auf Das Fest«0:1277-64c. Evangelist: »Da Nun Jesus War Zu Bethanien«0:2777-74d. Choir 1: »Wozu Dient Dieser Unrat«0:3077-84e. Evangelist: »Da Das Jesus Merkete, Sprach Er Zu Ihnen«1:4077-95. Recitative (Alto 1) »Du Lieber Heiland Du«1:0777-106. Air (Alto 1) »Buß Und Reu«5:1877-117. Evangelist: »Da Ging Hin Der Zwölfen Einer«0:3277-128. Air (Soprano 2) »Blute Nur, Du Liebes Herz«4:5477-139a. Evangelist: »Aber Am Ersten Tage Der Süßen Brot«0:1577-149b. Choir 1: »Wo Willst Du, Daß Wir Dir Bereiten«0:2577-159c. Evangelist: »Er Sprach«1:3877-169e. Choir 1: »Herr, Bin Ich's?«0:1277-1710. Chorale »Ich Bin's, Ich Sollte Büßen«0:4977-1811. Evangelist: »Er Antwortete Und Sprach«3:1677-1912. Recitative (Soprano 1) »Wiewohl Mein Herz In Tränen Schwimmt«1:2777-2013. Air (Soprano 1) »Ich Will Dir Mein Herze Schenken«3:4877-2114. Evangelist: »Und Da Sie Den Lobgesang Gesprochen Hatten«1:1377-2215. Chorale »Erkenne Mich, Mein Hüter«1:0777-2316. Evangelist: »Petrus Aber Antwortete«1:0877-2417. Chorale »Ich Will Hier Bei Dir Stehen«1:0677-2518. Evangelist: »Da Kam Jesus Mit Ihnen Zu Einem Hofe«1:4377-2619. Recitative (Tenor 1, Choir 2) »O Schmerz!« (Choir »Was Ist Die Ursach'«)1:5277-2720. Air (Tenor 1, Choir 2) »Ich Will Bei Meinem Jesu Wachen«5:1878-121. Evangelist: »Und Ging Hin Ein Wenig«0:4978-222. Recitative (Bass 2) »Der Heiland Fällt Vor Seinem Vater Nieder«1:1678-323. Air (Bass 2): »Gerne Will Ich Mich Bequemen«5:1178-424. Evangelist: »Und Er Kam Zu Seinen Jüngern«1:2578-525. Chorale »Was Mein Gott Will«1:1478-626. Evangelist: »Und Er Kam Und Fand Sie Aber Schlafend«2:4178-727a. Air (Soprano 1, Alto 1, Choir 2) »So Ist Mein Jesus Nun Gefangen« Choir: »Laßt Ihn! Haltet! Bindet Nicht!«3:5378-827b. Choir: 1, 2 »Sind Blitze, Sind Donner«1:1178-928. Evangelist: »Und Siehe, Einer Aus Denen«2:3578-1029. Chorale »'O Mensch, Bewein Dein Sünde Groß«6:19Seconda Parte32:48716084Nikolaus HarnoncourtConductor78-1130. Air (Alto 1, Choir 2): »Ach! Nun Ist Mein Jesus Hin!« (Choir: »Wo Ist Denn«)4:2178-1231. Evangelist: »Die Aber Jesum Gegriffen Hatten«0:5678-1332. Chorale »Mir Hat Die Welt Trüglich Gericht't«0:5078-1433. Evangelist: »Und Wiewohl Viel Falsche Zeugen«1:0778-1534. Recitative (Tenor 2) »Mein Jesus Schweigt Zu Falschen Lügen Stille«1:1378-1635. Air (Tenor 2) »Geduld!«3:3178-1736a. Evangelist: »Und Der Hohepriester Antwortete«1:2478-1836b. Choir 1, 2: »Er Ist Des Todes Schuldig!«0:1278-1936c. Evangelist: »Da Speieten Sie Aus«0:1678-2036d. Choir 1, 2: »Weissage Uns, Christe«0:2278-2137. Chorale »Wer Hat Dich So Geschlagen«0:5678-2238a. Evangelist: »Petrus Aber Saß Draußen«0:5378-2338b. Choir 2: »Wahrlich, Du Bist Auch Einer Von Denen«0:1178-2438c. Evangelist: »Da Hub Er An, Sich Zu Verfluchen«1:2078-2539. Air (Alto 1) »Erbarme Dich, Mein Gott«6:1478-2640. Chorale »Bin Ich Gleich Von Dir Gewichen«1:0278-2741a. Evangelist: »Des Morgens Aber«0:5578-2841b. Choir 1, 2: »Was Gehet Uns Das An?«0:0978-2941c. Evangelist: »Und Er Warf Die Silberlinge«0:4078-3042. Air (Bass 2) »Gebt Mir Meinen Jesum Wieder!«3:0378-3143. Evangelist: »Sie Hielten Aber Einen Rat«2:1178-3244. Chorale »Befiehl Du Deine Wege«1:0279-145a. Evangelist: »Auf Das Fest Aber«1:4479-2Choir 1, 2: »Barabbam!«0:0479-3Evangelist: »Pilatus Sprach Zu Ihnen«0:1179-445b. Choir 1, 2: »Laß Ihn Kreuzigen«0:2179-546. Chorale »Wie Wunderbarlich Ist Doch Diese Strafe!«0:5979-647. Evangelist: »Der Landpfleger Sagte«0:1479-748. Recitative (Soprano 1) »Er Hat Uns Allen Wohlgetan«1:1379-849. Air (Soprano 1) »Aus Liebe Will Mein Heiland Sterben«4:3379-950a. Evangelist: »Sie Schrieen Aber Noch Mehr«0:0479-1050b. Choir 1, 2: »Laß Ihn Kreuzigen«0:2079-1150c. Evangelist: »Da Aber Pilatus Sahe«0:2579-1250d. Choir 1, 2: »Sein Blut Komme Über Uns«0:4479-1350e. Evangelist: »Da Gab Er Ihnen Barabbam Los«0:2179-1451. Recitative (Alto 2) »Erbarm Es Gott«1:1279-1552. Air (Alto 2) »Können Tränen Meine Wangen«7:3079-1653a. Evangelist: »Da Nahmen Die Kriegsknechte«0:3579-1753b. Choir 1, 2: »Gegrüßet Seist Du, Jüdenkönig!«0:3279-1854. Chorale »O Haupt Voll Blut Und Wunden«2:2779-1955. Evangelist: »Und Da Sie Ihn Verspottet Hatten«0:4979-2056. Recitative (Bass 1) »Ja! Freilich Will In Uns Das Fleisch«0:3579-2157. Air (Bass 1) »Komm, Süßes Kreuz«6:0479-2258a. Evangelist: »Und Da Sie An Die Stätte Kamen«1:4379-2358b. Choir 1, 2: »Der Du Den Tempel Gottes Zerbrichst«0:3179-2458c. Evangelist: »Desgleichen Auch Die Hohenpriester«0:1179-2558d. Choir 1, 2: »Andern Hat Er Geholfen«0:5779-2658e. Evangelist: »Desgleichen Schmäheten Ihn Auch Die Mörder«0:1879-2759. Recitative (Alto 1, Choir 2) »Ach Golgatha«1:3879-2860. Air (Alto 1, Choir 2) »Sehet, Jesus Hat Die Hand« (Choir: »Wohin?«)3:2979-2961a. Evangelist: »Und Von Der Sechsten Stunde An«1:2279-3061b. Choir: »Der Rufet Den Elias«0:0479-3161c. Evangelist: »Und Bald Lief Einer Unter Ihnen«0:1779-3261d. [+61e.] Choir 2: »Halt, Laß Sehen«0:3379-3362. Chorale »Wenn Ich Einmal Soll Scheiden«1:2679-3463a. Evangelist: »Und Siehe Da, Der Vorhang Im Tempel«1:1479-3563b. Choir 1, 2: »Wahrlich, Dieser Ist Gottes Sohn Gewesen«0:2679-3663c. Evangelist: »Und Es Waren Viel Weiber Da«1:0779-3764. Recitative (Bass 1) »Am Abend Da Es Kühle War«2:1379-3865. Air (Bass 1) »Mache Dich, Mein Herze, Rein«6:5679-3866a. Evangelist: »Und Joseph Nahm Den Leib«1:0379-4066b. Choir 1, 2: »Herr, Wir Haben Gedacht«0:5579-4166c. Evangelist: »Pilatus Sprach Zu Ihnen«0:3879-4267. Recitative (Soprano 1, Alto 1, Tenor 1, Bass 1, Choir 2) »Nun Ist Der Herr Zur Ruh Gebracht« (Choir: »Mein Jesu, Gute Nacht«)1:4579-468. Choir 1, 2: »Wir Setzen Uns Mit Tränen Nieder«5:41St John Passion, BWV 245 (Johannespassion ∙ Passion Selon St Jean)Prima Parte35:28716084Nikolaus HarnoncourtConductor80-11. Chorus »Herr, Unser Herrscher«9:2880-22a. Evangelist / Jesus: »Jesus Ging Mit Seinen Jüngern« 2b. Chorus »Jesum Von Nazareth« 2c. Evangelist / Jesus: »Jesus Spricht Zu Ihnen« 2d. Chorus »Jesum Von Nazareth« 2e. Evangelist / Jesus: »Jesus Antwortete«2:3380-33. Chorale »O Große Lieb«0:5080-44. Evangelist / Jesus: »Auf Daß Das Wort Erfüllet Würde«1:1180-55. Chorale »Dein Will Gescheh, Herr Gott, Zugleich«0:5180-66. Evangelist: »Die Schar Aber Und Der Oberhauptmann«0:4580-77. Air (Alto) »Von Den Stricken Meiner Sünden«4:4180-88. Evangelist: »Simon Petrus Aber Folgete Jesu Nach«0:1280-99. Air (Soprano) »Ich Folge Dir Gleichfalls«4:1980-1010. Evangelist, Ancilla, Peter, Officer: »Derselbige Jünger«3:0680-1111. Chorale »Wer Hat Dich So Geschlagen«1:3680-1212a. Evangelist: »Und Hannas Sandte Ihn Gebunden« 12b. Chorus »Bist Du Nicht Seiner Jünger Einer?« 12c. Evangelist, Peter, Servant: »Er Leugnete Aber Und Sprach«2:0580-1313. Air (Tenor) »Ach, Mein Sinn«2:3980-1414. Chorale »Petrus, Der Nicht Denkt Zurück«1:11Parte Seconda74:37716084Nikolaus HarnoncourtConductor81-115. Chorale »Christus, Der Uns Selig Macht«1:0181-216a. Evangelist: »Da Führeten Sie Jesum« 16b. Chorus »Wäre Dieser Nicht Ein Übeltäter« 16c. Evangelist, Pilate: »Da Sprach Pilatus Zu Ihnen« 16d. Chorus »Wir dürfen Niemand Töten« 16e. Evangelist, Pilate, Jesus: »Auf Daß Erfüllet Würde Das Wort«4:2381-317. Chorale »Ach Großer König«1:2681-418a. Evangelist, Pilate, Jesus: »Da Sprach Pilatus Zu Ihm« 18b. Chorus »Nicht Diesen, Sondern Barrabam« 18c. Evangelist: »Barrabas Aber War Ein Mörder«1:5881-519. Arioso (Bass) »Betrachte, Meine Seel«1:5381-620. Air (Tenor) »Erwäge, Wie Sein Blutgefärbter Rücken«8:3681-721a. Evangelist: »Und Die Kriegsknechte Flochten Eine Krone« 21b. Chorus »Sei Gegrüßet, Lieber Judenkönig« 21c. Evangelist, Pilate: »Und Gaben Ihm Backenstreiche« 21d. Chorus »Kreuzige, Kreuzige« 21e. Evangelist, Pilate: »Pilatus Sprach Zu Ihnen« 21f. Chorus »Wir Haben Ein Gesetz« 21g. Evangelist, Pilate, Jesus: »Da Pilatus Das Wort Hörete«5:5781-822. Chorale »Durch Dein Gefängnis, Gottes Sohn«0:5481-923a. Evangelist: »Die Juden Aber Schrieen Und Sprachen« 23b. Chorus »Lässest Du Diesen Los« 23c. Evangelist, Pilate: »Da Pilatus Das Wort Hörete« 23d. Chorus »Weg, Weg Mit Dem, Kreuzige Ihn!« 23e. Evangelist, Pilate: »Spricht Pilatus Zu Ihnen« 23f. Chorus »Wir Haben Keinen König« 23g. Evangelist: »Da Überantwortete Er Ihn«4:2081-1024. Air With Chorus (Bass) »Eilt, Ihr Angefochtnen Seelen«4:0681-1125a. Evangelist: »Allda Kreuzigten Sie Ihn« 25b. Chorus »Schreibe Nicht: Der Juden König« 25c. Evangelist, Pilate: »Pilatus Antwortet«2:0981-1226. Chorale »In Meines Herzens Grunde«1:0381-1327a. Evangelist: »Die Kriegsknechte Aber« 27b. Chorus »Lasset Uns Den Nicht Zerteilen« 27c. Evangelist, Jesus: »Auf Daß Erfüllet Würde Die Schrift«3:2681-1428. Chorale »Er Nahm Alles Wohl In Acht«1:0381-1529. Evangelist, Jesus: »Und Von Stund An Nahm Sie Der Jünger«1:1581-1630. Air (Alto) »Es Ist Vollbracht«5:0781-1731. Evangelist: »Und Neiget Das Haupt«0:2081-1832. Air With Chorus (Bass) »Mein Teurer Heiland«5:1181-1933. Evangelist: »Und Siehe Da, Der Vorhang Im Tempel Zerriß«0:2881-2034. Arioso (Tenor) »Mein Herz, In Dem Die Ganze Welt«0:5481-2135. Air (Soprano) »Zerfließe, Mein Herze«6:0481-2236. Evangelist: »Die Juden Aber, Dieweil Es Rüsttag War«1:5981-2337. Chorale »O Hilf, Christe, Gottes Sohn«0:5881-2438. Evangelist: »Darnach Bat Pilatum Joseph Von Arimathia«1:5181-2539. Chorus »Ruht Wohl, Ihr Heiligen Gebeine«6:1381-2640. Chorale »Ach Herr, Laß Dein Lieb Engelein«2:02Christmas Oratorio, BWV 248 (Weihnachtsoratorium ∙ Oratorio De Noël)Part 1 (Am 1. Weihnachtstage) (Feria Nativitatis Christi)27:34716084Nikolaus HarnoncourtConductor82-11. Chorus: »Jauchzet, Frohlocket«8:2982-22. Evangelist (Tenor): »Es Begab Sich Aber Zu Der Zeit«1:0982-33. Accompagnato (Alto): »Nun Wird Mein Liebster Bräutigam«0:5382-44. Air (Alto): »Bereite Dich, Zion«5:5782-55. Chorale: »Wie Soll Ich Dich Empfangen«1:0882-66. Evangelist: »Und Sie Gebar«0:2482-77. Chorale / Recitative (Soprano, Bass): »Er Ist Auf Erden Kommen Arm«2:5682-88. Air (Bass) »Großer Herr, O Starker König«5:2682-99. Chorale: »Ach Mein Herzliebes Jesulein«1:12Part 2 (Am 2. Weihnachtstage) (Feria 2 Nativitatis Christi)28:19716084Nikolaus HarnoncourtConductor82-101. Sinfonia4:4382-112. Evangelist: »Und Es Waren Hirten In Derselben Gegend«0:3182-123. Chorale: »Brich An, O Schönes Morgenlicht«1:0882-134. Evangelist / Angelus (Soprano): »Und Der Engel Sprach Zu Ihnen«0:4182-145. Recitative (Bass): »Was Gott Dem Abraham Verheissen«0:4082-156. Air (Tenor) »Frohe Hirten, Eilt«3:4582-167. Evangelist: »Und Das Habt Zum Zeichen«0:1882-178. Chorale: »Schaut Hin, Dort Liegt Im Finstern Stall«0:3782-189. Recitative (Bass): »So Geht Denn Hin«0:4982-1910. Air (Alto) »Schlafe, Mein Liebster«9:2382-2011. Evangelista »Und Alsobald War Da Bei Dem Engel«0:1682-2112. Chorus: »Ehre Sei Gott In Der Höhe«3:5582-2213. Recitative (Bass): »So Recht, Ihr Engel«0:2282-2314. Chorale: »Wir Singen Dir In Deinem Heer«1:11Part 3 (Am 3. Weihnachtstage) (Feria 3 Nativitatis Christi)23:51716084Nikolaus HarnoncourtConductor82-241, Chorus: »Herrscher Des Himmels, Erhöre Das Lallen«2:1882-252. Evangelist: »Und Da Die Engel«0:1182-263. Chorus (Shepherds): »Lasset Uns Nun Gehen«0:4782-274. Recitative (Bass): »Er Hat Sein Volk Getröst«0:3882-285. Chorael: »Dies Hat Er Alles Uns Getan«0:5182-296. Air Duett (Soprano, Bass): »Herr, Dein Mitleid«7:5082-307. Evangelist: »Und Sie Kamen Eilend«1:0882-318. Air (Alto): »Schließe, Mein Herze«5:0482-329. Recitative (Alto): »Ja, Ja, Mein Herz«0:2882-3310. Chorale: »Ich Will Dich Mit Fleiß Bewahren«0:5983-111. Evangelist: »Und Die Hirten Kehrten Wieder Um«0:2583-212. Chroale: »Seid Froh Dieweil«0:4983-313. Chorus: »Herrscher Des Himmels, Erhöre Das Lallen«2:23Part 4 (Am Neujahrstage) (Festo Circumcisionis Christi)24:46716084Nikolaus HarnoncourtConductor83-41. Chorus: »Fallt Mit Danken, Fallt Mit Loben«6:4683-52. Evangelist (Tenor): »Und Da Acht Tage Um Waren«0:3483-63. Recitativo With Chorale (Soprano, Bass): »Immanuel, Du Süßes Wort«2:3083-74. Air (Soprano, Echo): »Flößt Mein Heiland«6:1683-85. Recitative With Chorale (Soprano, Bass): »Wohlan, Dein Name Soll Allein«1:3683-96. Air (Tenor): »Ich Will Nur Dir Zu Ehren Leben«4:4383-107. Chorale: »Jesus Richte Mein Beginnen«2:19Part 5 (Am Sonntag Nach Neujahr) (Dominica Post Festum Circumcisionis Christi)24:10716084Nikolaus HarnoncourtConductor83-111. Chorus: »Ehre Sei Dir, Gott, Gesungen«7:4983-122. Evangelista: »Da Jesus Geboren War«0:2283-133. Chorus And Alto: »Wo Ist Der Neugeborne König Der Juden?«1:3983-144. Chorale: »Dein Glanz All Finsternis Verzehrt«0:4983-155. Air (Bass): »Erleucht Auch Meine Finstre Sinnen«4:2283-166. Evangelist: »Da Das Der König Herodes Hörte«0:1283-177. Accompagnato (Alto, Tenor): »Warum Wollt Ihr Erschrecken?«0:2783-188. Evangelist: »Und Ließ Versammeln Alle Hohepriester«1:2283-199. Air Trio (Soprano, Alto, Tenor): »Ach, Wenn Wird Die Zeit Erscheinen«5:4283-2010. Recitative (Alto): »Mein Liebster Herrschet Schon«0:2983-2111. Chorale: »Zwar Ist Solche Herzensstube«0:57Part 6 (Am Fest Der Erscheinung Christi) (Festo Epiphanias)25:44716084Nikolaus HarnoncourtConductor83-221. Chorus: »Herr, Wenn Die Stolzen Feinde Schnauben«5:3983-232. Evangelist / Herodes (Bass): »Da Berief Herodes«0:4583-243. Recitative (Soprano): »Du Falscher, Suche Nur«0:4783-254. Air (Soprano): »Nur Ein Wink Von Seinen Händen«4:5983-265. Evangelist: »Als Sie Nun Den König Gehöret Hatten«1:0283-276. Chorale: »Ich Steh An Deiner Krippen Hier«1:0583-287. Evangelist: »Und Gott Befahl Ihnen Im Traum«0:2283-298. Recitative (Tenor): »So Geht!«1:5283-309. Air (Tenor): »Nun Mögt Ihr Stolzen Feinde Schrecken«5:0183-3110. Recitative (Soprano, Alto, Tenor, Bass): »Was Will Der Höllen Schrecken Nun«0:3683-3211. Chorale: »Nun Seid Ihr Wohl Gerochen«3:36Psalm 51, BWV 1083 Arias, BWV 245A, B & CPsalm 51, BWV 108341:521673071Gunar LetzborConductor84-1Versus 1 »Tilge, Höchster, Meine Sünde«4:1384-2Versus 2 »Ist Mein Herz«2:3684-3Versus 3 »Missetaten, Die Mich Drücken«2:3184-4Versus 4 »Dich Erzürnt Mein Tun Und Lassen«2:5084-5Versus 5 / 6 »Wer Wird Seine Schuld Vermeinen«2:1284-6Versus 7 »Sieh! Ich Bin In Sünd Empfangen«0:4284-7Versus 8 »Sieh, Du Willst Die Wahrheit Haben«3:3084-8Versus 9 »Wasche Mich Doch Rein Von Sünden«3:0684-9Versus 10 »Laß Mich Freud Und Wonne Spüren«2:1684-10Versus 11 / 15 »Schaue Nicht Auf Meine Sünden«6:1684-11Versus 16 »Öffne Lippen, Mund Und Seele«4:3584-12Versus 17 / 18 »Denn Du Willst Kein Opfer Haben«3:3984-13Versus 19 / 20 »Laß Dein Zion Blühend Dauern«2:2384-14Amen1:103 Arias From The 1725 Version Of The St John Passion BWV 245 A, B, C15:0684-15Air And Chorale (Bass) »Himmel, Reiße, Welt Erbebe« - »Jesus, Deine Passion« BWV 245 A (After Chorale No. 11)4:1984-16Air (Tenor) »Zerschmettert Mich, Ihr Felsen Und Ihr Hügel« BWV 245 B (Instead Of No. 13)4:5184-17Air (Tenor) »Ach Windet Euch Nicht So, Geplagte Seelen« BWV 245 C (Instead Of No. 19)5:56Easter Oratorio, BWV 249Easter Oratorio BWV 249 (Osteroratorium ∙ Oratorio De Pâques)41:03836665Ton KoopmanConductor85-1Sinfonia4:0185-2Adagio3:1685-3Chorus »Kommt Eilet Und Laufet«4:4685-4Recitative (Soprano, Alto, Tenor, Bass) »O Kalter Männer Sinn«1:0485-5Aria (Soprano) »Seele, Deine Spezereien«11:0185-6Recitative (Alto, Tenor, Bass) »Hier Ist Die Gruft«0:4785-7Aria (Tenor) »Sanfte Soll Mein Todeskummer«6:1785-8Recitative (Soprano, Alto) »Indessen Seufzen Wir«1:0585-9Aria (Alto) »Saget, Saget Mir Geschwinde«5:4785-10Recitative (Bass) »Wir Sind Erfreut«0:4085-11Chorus »Preis Und Dank«2:20Motets, Chorales & SongsMotets, BWV 225-230Motets (Motetten ∙ Motets)62:37950551Anders ÖhrwallConductor716084Nikolaus HarnoncourtConductor86-1Singet Dem Herrn Ein Neues Lied BWV 22512:5086-2Der Geist Hilft Unser Schwachheit Auf BWV 2267:4786-3Komm, Jesu, Komm BWV 2297:5486-4Jesu, Meine Freude BWV 22720:1086-5Fürchte Dich Nicht, Ich Bin Bei Dir BWV 2288:0886-6Lobet Den Herren, Alle Heiden BWV 2305:45Chorales, BWV 253-438Chorales (Choräle ∙ Chorals) (Vierstimmige Chorgesänge, Ed. (Leipzig 1784-87))03:40:25973471Robin GrittonConductor841803Carl Philipp Emanuel BachC. P. E. BachEdited By [Ed.]1959368Johann Philipp KirnbergerJ. P. KirnbergerEdited By [Ed.]87-1Ach Bleib Bei Uns, Herr Jesu Christ BWV 2530:4787-2Ach Gott, Erhör' Mein Seufzen BWV 2540:5987-3Ach Gott Und Herr BWV 2550:4487-4Ach Lieben Christen, Seid Getrost BWV 2561:1087-5Wär' Gott Nicht Mit Uns Diese Zeit BWV 2571:1087-6Wo Gott Der Herr Nicht Bei Uns Hält BWV 2580:5287-7Ach, Was Soll Ich Sünder Machen BWV 2591:0287-8Allein Gott In Der Höh' Sei Ehr' BWV 2601:0487-9Allein Zu Dir, Herr Jesu Christ BWV 2611:3887-10Alle Menschen Müssen Sterben BWV 2621:0687-11Alles Ist An Gottes Segen BWV 2630:4687-12Als Der Gütige Gott BWV 2641:2687-13Als Jesus Christus In Der Nacht BWV 2651:4087-14Als Vierzig Tag' Nach Ostern War'n BWV 2660:4687-15An Wasserflüssen Babylon BWV 2671:4687-16Auf, Auf, Mein Herz, Und Du Mein Ganzer Sinn BWV 2680:5587-17Aus Meines Herzens Grunde BWV 2691:0487-18Befiehl Du Deine Wege BWV 2701:2287-19Dem Herren Mußt Du Trauen BWV 2711:2187-20Dein' Ew'ge Treu' Und Gnade BWV 2721:2187-21Christ, Der Du Bist Der Helle Tag BWV 2730:4887-22Christe, Der Du Bist Tag Und Licht BWV 2740:3687-23Christe, Du Beistand Deiner Kreuzgemeine BWV 2751:1587-24Christ Ist Erstanden BWV 2762:1587-25Christ Lag In Todesbanden BWV 2771:0587-26Den Tod Niemand Bezwingen Kunt BWV 2781:1087-27Hier Ist Das Rechte Osterlamm BWV 2791:0887-28Christ, Unser Herr, Zum Jordan Kam BWV 2801:2987-29Mit Freud Fahr Ich Von Dannen BWV 2810:3387-30Christus, Der Ist Mein Leben BWV 2820:4987-31Christus, Der Uns Selig Macht BWV 2831:1987-32Christus Ist Erstanden, Hat Überwunden BWV 2841:0287-33Da Der Herr Christ Zu Tische Sass BWV 2851:0487-34Danket Dem Herren, Denn Er Ist Sehr Freundlich BWV 2860:3387-35Dank Sei Gott In Der Höhe BWV 2871:1487-36Das Alte Jahr Vergangen Ist BWV 2880:5387-37Wir Bitten Dich, Du Ewger Sohn BWV 2891:0187-38Das Walt' Gott Vater Und Gott Sohn BWV 2900:4287-39Das Walt' Mein Gott BWV 2910:4687-40Den Vater Dort Oben BWV 2921:0187-41Der Du Bist Drei In Einigkeit BWV 2930:4387-42Der Tag, Der Ist So Freudenreich BWV 2941:2487-43Des Heil'gen Geistes Reiche Gnad' BWV 2950:4387-44Die Nacht Ist Kommen BWV 2961:1487-45Die Sonn' Hat Sich Mit Ihrem Glanz Gewendet BWV 2971:0387-46Dies Sind Die Heil'gen Zehn Gebot' BWV 2980:5187-47Dir, Dir, Jehova, Will Ich Singen BWV 2990:5187-48Du Grosser Schmerzensmann BWV 3001:1687-49Du, O Schönes Weltgebäude BWV 3011:1888-1Eine Feste Burg Ist Unser Gott BWV 3021:0788-2Mit Unsrer Macht Ist Nichts Gethan BWV 3031:0788-3Eins Ist Noth, Ach Herr, Dies Eine BWV 3040:5788-4Erbarm Dich Mein, O Herre Gott BWV 3051:2888-5Erstanden Ist Der Heilig' Christ BWV 3060:3888-6Es Ist Gewisslich An Der Zeit BWV 3071:0588-7Es Spricht Der Unweisen Mund Wohl BWV 3081:1788-8Es Steh'n Vor Gottes Throne BWV 3091:2588-9Es Wird Schier Der Letzte Tag Herkommen BWV 3100:3888-10Es Woll' Uns Gott Genädig Sein BWV 3111:2788-11So Danken Gott, Und Loben Dich BWV 3121:2588-12Für Freuden Lasst Uns Springen BWV 3130:5288-13Gelobet Seist Du, Jesu Christ BWV 3140:4688-14Gieb Dich Zufrieden Und Sei Stille BWV 3151:4288-15Gott, Der Du Selber Bist Das Licht BWV 3161:2588-16Gott Der Vater Wohn' Uns Bei BWV 3171:4288-17Gottes Sohn Ist Kommen BWV 3180:5488-18Gott Hat Das Evangelium BWV 3190:5288-19Gott Lebet Noch BWV 3201:2388-20Gottlob, Es Geht Nunmehr Zu Ende BWV 3210:5688-21Gott Sei Gelobet Und Gebenedeiet BWV 3222:0688-22Gott Sei Uns Gnädig Und Barmherzig BWV 3230:3788-23Meine Seele Erhebet Den Herrn BWV 3240:2988-24Heilig, Heilig, Heilig BWV 3252:4788-25Herr Gott, Dich Loben Alle Wir BWV 3260:3688-26Für Deinen Thron Tret' Ich Hiermit BWV 3270:4288-27Herr Gott, Dich Loben Wir BWV 3286:5988-28Herr, Ich Denk' An Jene Zeit BWV 3291:0688-29Herr, Ich Habe Missgehandelt BWV 3300:5588-30Doch, Wie Könnt Ich Dir Entfliehen BWV 3311:1188-31Herr Jesu Christ, Dich Zu Uns Wend' BWV 3320:3988-32Herr Jesu Christ, Du Hast Bereit't BWV 3331:0988-33Herr Jesu Christ, Du Höchstes Gut BWV 3341:1688-34Herr Jesu Christ, Mein's Lebens Licht BWV 3350:4688-35Herr Jesu Christ, Wahr'r Mensch Und Gott BWV 3360:5388-36Herr, Nun Lass In Friede BWV 3370:5788-37Herr, Straf Mich Nicht In Deinem Zorn BWV 3381:2088-38Wer In Dem Schutz Des Höchsten Ist BWV 3391:1688-39Herr, Wie Du Willst, So Schick's Mit Mir BWV 3391:2088-40Herzlich Lieb Hab' Ich Dich, O Herr BWV 3401:5988-41Heut' Ist, O Mensch, Ein Grosser Trauertag BWV 3411:5988-42Heut Triumphiret Gotts Sohn BWV 3420:5189-1Hilf, Gott, Dass Mir's Gelinge BWV 3431:1289-2Hilf, Herr Jesu, Lass Gelingen BWV 3440:5389-3Ich Bin Ja, Herr, In Deiner Macht BWV 3451:2689-4Ich Dank' Dir, Gott BWV 3461:0089-5Ich Dank' Dir, Lieber Herre BWV 3471:0489-6Mit Dank Will Ich Dich Loben BWV 3481:1189-7Ich Dank Dir Schon Durch Deinen Sohn BWV 3490:3989-8Ich Danke Dir, O Gott, In Deinem Throne BWV 3501:4189-9Ich Hab' Mein' Sach' Gott Heimgestellt BWV 3510:5589-10Jesu, Der Du Meine Seele BWV 3521:0289-11Treulich Hast Du Ja Gesuchet BWV 3531:1389-12Ach, Ich Bin Ein Kind Der Sünden BWV 3541:0889-13Jesu, Der Du Selbst So Wohl BWV 3551:0089-14Jesu, Du Mein Liebstes Leben BWV 3561:2589-15Jesu, Jesu, Du Bist Mein BWV 3571:1489-16Jesu, Meine Freude BWV 3581:3789-17Jesu, Meiner Seelen Wonne BWV 3591:0789-18Jesu, Meiner Freuden Freude BWV 3601:0489-19Jesu, Meines Herzens Freud' BWV 3611:1789-20Jesu, Nun Sei Gepreiset BWV 3621:2589-21Jesus Christus, Unser Heiland BWV 3631:0789-22Jesus Christus, Unser Heiland, Der Den Tod BWV 3641:0289-23Jesus, Meine Zuversicht BWV 3651:0389-24Ihr Gestirn', Ihr Hohlen Lüfte BWV 3660:5089-25In Allen Meinen Thaten BWV 3670:4989-26In Dulci Jubilo BWV 3681:1289-27Keinen Hat Gott Verlassen BWV 3691:0489-28Komm, Gott Schöpfer, Heiliger Geist BWV 3700:5989-29Kyrie! Gott Vater In Ewigkeit BWV 3713:1289-30Lass, O Herr, Dein Ohr Sich Neigen BWV 3721:4089-31Liebster Jesu, Wir Sind Hier BWV 3731:1689-32Lobet Den Herren, Denn Er Ist Sehr Freundlich BWV 3740:5989-33Lobt Gott, Ihr Christen Allzugleich BWV 3750:4089-34Er Kömmt Aus Seines Vaters Schooß BWV 3760:4689-35Mach's Mit Mir, Gott, Nach Deiner Güt' BWV 3771:1289-36Mein' Augen Schliess' Ich Jetzt BWV 3781:2689-37Meinen Jesum Lass' Ich Nicht BWV 3791:0989-38Meinen Jesum Lass' Ich Nicht BWV 3801:0389-39Meines Lebens Letzte Zeit BWV 3811:2889-40Mit Fried' Und Freud' Ich Fahr' Dahin BWV 3821:1289-41Mitten Wir Im Leben Sind BWV 3832:4789-42Nicht So Traurig, Nicht So Sehr BWV 3840:4889-43Nun Bitten Wir Den Heiligen Geist BWV 3851:1189-44Nun Danket Alle Gott BWV 3861:0989-45Nun Freut Euch, Gottes Kinder All BWV 3870:3389-46Nun Freut Euch, Liebe Christen G'mein BWV 3881:0890-1Nun Lob', Mein' Seel', Den Herren BWV 3891:4090-2Er Hat Uns Wissen Lassen BWV 3901:3690-3Nun Preiset Alle Gottes Barmherzigkeit BWV 3910:5390-4Nun Ruhen Alle Wälder BWV 3921:1590-5O Welt, Sieh' Hier Dein Leben BWV 3930:5190-6Tritt Her Und Schau Mit Fleisse BWV 3940:5590-7Wer Hat Dich So Geschlagen BWV 3950:5990-8Nun Sich Der Tag Geendet Hat BWV 3960:4090-9O Ewigkeit, Du Donnerwort BWV 3971:2290-10Ich Freue Mich In Dir BWV 3981:0390-11O Gott, Du Frommer Gott BWV 3991:1690-12O Herzensangst, O Bangigkeit Und Zagen BWV 4000:4490-13O Lamm Gottes Unschuldig BWV 4011:3390-14O Mensch, Bewein' Dein Sünde Gross BWV 4022:2490-15O Mensch, Schau Jesum Christum An BWV 4030:5090-16O Traurigkeit, O Herzeleid BWV 4040:4790-17O Wie Selig Seid Ihr Doch, Ihr Frommen BWV 4050:5490-18Muß Man Hier Doch Wie Im Kerker Leben BWV 4060:4590-19O Wir Armen Sünder BWV 4071:5590-20Schaut, Ihr Sünder BWV 4080:4690-21Seelenbräutigam BWV 4090:5490-22Sei Gegrüsset, Jesu Gütig BWV 4101:1090-23Singt Dem Herrn Ein Neues Lied BWV 4111:0590-24So Giebst Du Nun, Mein Jesu, Gute Nacht BWV 4121:1590-25Sollt' Ich Meinem Gott Nich Singen BWV 4131:2290-26Uns Ist Ein Kindlein Heut' Gebor'n BWV 4140:5990-27Valet Will Ich Dir Geben BWV 4151:0090-28Vater Unser Im Himmelreich BWV 4161:0090-29Von Gott Will Ich Nich Lassen BWV 4170:5390-30Wenn Sich Der Menschen Hulde BWV 4180:5690-31Auf Ihr Will Ich Vertrauen BWV 4191:0190-32Warum Betrübst Du Dich, Mein Herz BWV 4200:4790-33Er Kann Und Will Dich Lassen Nicht BWV 4210:5090-34Warum Sollt' Ich Mich Denn Grämen BWV 4220:5690-35Was Betrübst Du Dich, Mein Herze BWV 4231:2890-36Was Bist Du Doch, O Seele, So Betrübt BWV 426 BWV 4240:5690-37Was Willst Du Dich, O Meine Seele, Kränken BWV 4251:4790-38Weltlich Ehr' Und Zeitlich Gut BWV 4261:1090-39Wenn Ich In Angst Und Noth BWV 4271:0490-40Wenn Mein Stündlein Vorhanden Ist BWV 4281:0390-41Mein' Sünd' Mich Werden Kränken Sehr BWV 4291:0890-42Ich Bin Ein Glied An Deinem Leib BWV 4301:0590-43Wenn Wir In Höchsten Nöthen Sein BWV 4310:5490-44So Ist Das Unser Trost Allein BWV 4320:5890-45Wer Gott Vertraut, Hat Wohl Gebaut BWV 4331:4690-46Wer Nur Den Lieben Gott Lässt Walten BWV 4341:0490-47Wie Bist Du, Seele, In Mir So Gar Betrübt BWV 4351:0290-48Wie Schön Leuchtet Der Morgenstern BWV 4361:3390-49Wir Glauben All An Einen Gott BWV 4372:1490-50Wo Gott Zum Haus Nicht Gibt Sein' Gunst BWV 4380:41Sacred Songs (Schemelli) BWV 439, 440, 443, 445, 447, 449, 451-454, 462 465, 466, 468-472, 475, 478-480, 483, 484, 487, 492, 494, 498, 500, 502, 505 & 507Sacred Songs (Geistliche Lieder ∙ Chants Sacrés) From G. C. Schemelli, Musicalisches Gesangbuch (Leipzig, 1736)62:69836665Ton KoopmanConductor983595Georg Christian SchemelliG. C. SchemelliText By91-1Vergiß Mein Nicht BWV 5051:5991-2Beschränkt, Ihr Weisen Dieser Welt BWV 4433:3791-3O Finstre Nacht, Wenn Wirst Du Doch Vergehen BWV 4922:0191-4Eins Ist Not! Ach Herr, Dies Eine BWV 4531:2191-5Ich Steh An Deiner Krippen Hier BWV 4692:0691-6Ich Freue Mich In Dir BWV 4651:3891-7Ermuntre Dich, Mein Schwacher Geist BWV 4541:4291-8Brunnquell Aller Güter BWV 4451:5691-9Liebster Gott, Wann Werd Ich Sterben BWV 4831:3691-10Ich Halte Treulich Still BWV 4662:0291-11Jesu, Jesu, Du Bist Mein BWV 4702:2791-12Komm, Süßer Tod BWV 4783:0591-13Gott, Wie Groß Ist Deine Güte BWV 4622:5191-14Ach, Daß Nicht Die Letzte Stunde BWV 4391:3691-15So Gehst Du Nun, Mein Jesu, Hin BWV 5001:5491-16Kommt, Seelen, Dieser Tag BWV 4791:3691-17Mein Jesu! Was Vor Seelenweh BWV 4872:4291-18Kommt Wieder Aus Der Finstern Gruft BWV 4801:2191-19Selig! Wer An Jesum Denkt BWV 4981:3791-20Die Güldne Sonne BWV 4512:1691-21Liebster Jesu, Wo Bleibst Du So Lange BWV 4842:0091-22Auf, Auf! Die Rechte Zeit Ist Hier BWV 4401:4091-23Jesu, Meines Glaubens Zier BWV 4721:3591-24Ich Liebe Jesum Alle Stund BWV 4681:5891-25Dir, Dir, Jehova, Will Ich Singen BWV 4521:5691-26Der Tag Ist Hin, Die Sonne Gehet Nieder BWV 4471:5291-27O Liebe Seele, Zieh Die Sinnen BWV 4941:4491-28So Wünsch Ich Mir Zu Guter Letzt BWV 5022:0491-29Dich Bet' Ich An, Mein Höchster Gott BWV 4491:3391-30Wo Ist Mein Schäflein, Das Ich Liebe BWV 5071:5791-31Jesu, Deine Liebeswunden BWV 4711:1391-32Jesus, Unser Trost Und Leben BWV 4751:36Chorales, Quodlibet, Etc BWV 118, 250-252, 299, 500A, 510, 511, 513, 514, 516, 518, 524, 691, 1084, 1089 & 1122-1126Wedding Chorales (Hochzeitschoräle ∙ Chorals De Mariage)2:26836665Ton KoopmanConductor92-1Was Gott Tut Das Ist Wohlgetan BWV 2500:5092-2Sei Lob Und Ehr' Dem Hòchsten Gott BWV 2510:4792-3Nun Danket Alle Gott BWV 2520:49Chorales (Choräle ∙ Chorals)8:30973471Robin GrittonConductor92-4So Gehst Du Nun, Mein Jesu, Hin BWV 500a1:4292-5O Hilf, Christe, Gottes Sohn BWV 10841:1892-6Da Jesus An Dem Kreuze Stund BWV 10890:5892-7Denket Doch, Ihr Menschenkinder BWV 11221:0292-8Wo Gott Zum Haus Nicht Gibt Sein Gunst BWV 11230:3292-9Ich Ruf Zu Dir, Herr Jesu Christ BWV 11241:2892-10O Gott, Du Frommer Gott BWV 11251:0392-11Lobet Gott, Unseren Herren BWV 11260:59Motet (Motette ∙ Motet)3:441001316Jürgen JürgensConductor92-12O Jesu Christ, Mein's Lebens Licht BWV 1183:4492-13Quodlibet BWV 5249:36963656Leonhardt-ConsortOrchestraNotenbüchlein Für Anna Magdalena Bach (1725) (Excerpts ∙ Auszüge ∙ Extraits)15:08888264Stephen StubbsConductor92-14Gib Dich Zufrieden Und Sei Stille (Chorale No. 12 BWV 510)1:1692-15Gib Dich Zufrieden Und Sei Stille (Aria No. 13 A BWV 511)1:1592-16O Ewigkeit, Du Donnerwort (Chorale No. 42 BWV 513)1:2492-17Anon.: Schaff's Mit Mir, Gott (Chorale No. 35 BWV 514 [? J. S. Bach])1:0692-18Anon.: Warum Betrübst Du Dich (Chorale No. 33 BWV 516 [? J. S. Bach])1:1192-19Anon.: Willst Du Dein Herz Mir Schenken ("Aria Di Giovannini" No. 37 BWV 518)5:3092-20Wer Nun Den Lieben Gott Läßt Walten (Chorale No. 11 BWV 691)2:2992-21Dir. Dir, Jehova (Chorale No. 39 BWV 299)0:58Organ WorksFantasias, Preludes & Fugues BWV 531, 542-544, 562, 570, 572, 578, 582 & 58893-1Fantasia Et Fuga In G BWV 542 (In G Minor ∙ G-Moll ∙ Sol Mineur)11:05836665Ton KoopmanOrgan93-2Fuga In G BWV 578 (In G Minor ∙ G-Moll ∙ Sol Mineur)3:41836665Ton KoopmanOrgan93-3Canzona In D BWV 588 (In D Minor ∙ D-Moll ∙ Ré Mineur)5:08836665Ton KoopmanOrgan93-4Praeludium Et Fuga In H BWV 544 (In B Minor ∙ H-Moll ∙ Si Mineur)11:14836665Ton KoopmanOrgan93-5Praeludium Et Fuga In A BWV 543 (In A Minor ∙ A-Moll ∙ La Mineur)8:43836665Ton KoopmanOrgan93-6Fantasia In C BWV 562 (In C Minor ∙ C-Moll ∙ Ut Mineur)4:21836665Ton KoopmanOrgan93-7Praeludium Et Fuga In C BWV 531 (In C Major ∙ C-Dur ∙ Ut Majeur)5:59836665Ton KoopmanOrgan93-8Pièce D'Orgue [Fantasia] In G BWV 572 (In G Major ∙ G-Dur ∙ Sol Majeur)8:10836665Ton KoopmanOrgan93-9Fantasia In C BWV 570 (In C Major ∙ C-Dur ∙ Ut Majeur)2:21836665Ton KoopmanOrgan93-10Passacaglia In C, BWV 582 (In C Minor ∙ C-Moll ∙ Ut Mineur)12:27836665Ton KoopmanOrganSchübler Chorales, BWV 645-650 Leipzig Chorales, BWV 651-655 & 6686 Schübler Chorales (»Sechs Choräle Von Verschiedener Art...«)28:25836665Ton KoopmanConductor94-1Chorale: »Wachet Auf, Ruft Uns Die Stimme« BWV 140 / 71:2994-2Organ: Wachet Auf, Ruft Uns Die Stimme BWV 6453:3694-3Chorale: »Gloria Sei Dir Gesungen« BWV 140 / 71:2994-4Chorale: »Wo Soll Ich Fliehen Hin« BWV 5 / 70:4294-5Organ: Wo Soll Ich Fliehen Hin BWV 6461:2994-6Chorale: »Führ Auch Mein Herz Und Sinn« BWV 5 / 70:4894-7Chorale: »Wer Nur Den Lieben Gott Läßt Walten« BWV 93 / 70:5394-8Organ: Wer Nur Den Lieben Gott Läßt Walten BWV 6474:4494-9Chorale: »Sing, Bet Und Geh Auf Gottes Wegen« BWV 93 / 70:5494-10Chorale: »Meine Seele Erhebet Den Herren« BWV 3240:4594-11Organ: Meine Seele Erhebet Den Herren BWV 6483:1394-12Chorale: »Lob Und Preis Sei Gott, Dem Vater« BWV 3240:5094-13Chorale: »Ach Bleib Bei Uns, Herr Jesu Christ« BWV 2530:4694-14Organ: Ach Bleib Bei Uns, Herr Jesu Christ BWV 6492:1394-15Chorale: »In Dieser Letzt'n Betrübten Zeit« BWV 2530:4594-16Organ: Kommst Du Nun, Jesu, Vom Himmel Herunter BWV 6503:0394-17Chorale: »Kommst Du Nun, Jesu, Vom Himmel Herunter« BWV 57 / 81:0018 Leipzig Chorales (»Achtzehn Choräle Von Verschiedener Art«)43:59836665Ton KoopmanConductor94-18Organ: Vor Deinen Thron Tret Ich BWV 6685:0594-19Chorale: »Wenn Wir In Höchsten Nöthen Sein« BWV 4310:5694-20Organ: Fantasia Super: Komm, Heiliger Geist, Herre Gott BWV 6516:0494-21Chorale: »Komm, Heiliger Geist, Herre Gott« BWV 59 / 31:3994-22Organ: Komm, Heiliger Geist, Herre Gott BWV 6527:5594-23Chorale: »Du Heilige Brunst, Süßer Trost« BWV 226 / 21:4194-24Organ: An Wasserflüssen Babylon BWV 6535:3094-25Chorale: »An Wasserflüssen Babylon« BWV 2671:5394-26Organ: Schmücke Dich, O Liebe Seele BWV 6548:1694-27Chorale: »Schmücke Dich, O Liebe Seele« BWV 180 / 71:1094-28Organ: Trio Super: Herr Jesu Christ, Dich Zu Uns Wend BWV 6553:2694-29Chorale: »Herr Jesu Christ, Dich Zu Uns Wend« BWV 3320:42Leipzig Chorales, BWV 655-66718 Leipzig Chorales (»Achtzehn Choräle Von Verschiedener Art«) (II)69:00836665Ton KoopmanConductor95-1Organ: O Lamm Gottes Unschuldig BWV 6569:3495-2Chorale: »O Lamm Gottes Unschuldig« BWV 4011:0495-3Organ: Nun Danket Alle Gott BWV 6574:5895-4Chorale: »Nun Danket Alle Gott« BWV 3861:1695-5Organ: Von Gott Will Ich Nicht Lassen BWV 6583:3495-6Chorale: »Von Gott Will Ich Nicht Lassen« BWV 4181:0495-7Organ: Nun Komm, Der Heiden Heiland BWV 6594:3195-8Chorale: »Nun Komm, Der Heiden Heiland« BWV 36 / 80:3895-9Organ: Trio Super: Nun Komm, Der Heiden Heiland BWV 6603:3095-10Chorale: »Die Kripp Glänzt Hell Und Klar« BWV 36 / 80:3995-11Organ: Nun Komm, Der Heiden Heiland BWV 6612:4195-12Chorale: »Lob Sei Gott, Dem Vater G'than« BWV 62 / 60:3795-13Organ: Allein Gott In Der Höh Sei Ehr BWV 6626:2495-14Chorale: »Allein Gott In Der Höh Sei Ehr« BWV 2601:0595-15Organ: Allein Gott In Der Höh Sei Ehr BWV 6636:4795-16Chorale: »O Jesu Christ, Sohn Eingeborn« BWV 2601:1495-17Organ: Trio Super: Allein Gott In Der Höh Sei Ehr BWV 6645:0095-18Chorale: »O Heil'ger Geist, Du Höchstes Gut« BWV 2601:0695-19Organ: Jesu Christus, Unser Heiland BWV 6654:3595-20Chorale: »Jesu Christus, Unser Heiland« BWV 3631:1195-21Organ: Jesu Christus, Unser Heiland BWV 6663:0095-22Chorale: »Wer Sich Will Zu Dem Tisch Machen« BWV 3630:5895-23Organ: Komm, Gott Schöpfer, Heiliger Geist BWV 6672:1995-24Chorale: »Komm, Gott Schöpfer, Heiliger Geist« BWV 3701:02Sonatas, BWV 525-530Sonata BWV 525 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)12:22836665Ton KoopmanOrgan96-1[Without Tempo Marking]2:5096-2Adagio5:3896-3Allegro3:54Sonata BWV 526 (In C Minor ∙ C-Moll ∙ Ut Mineur)10:47836665Ton KoopmanOrgan96-4Vivace3:3496-5Largo3:1396-6Allegro4:00Sonata BWV 527 (In D Minor ∙ D-Moll ∙ Ré Mineur)13:38836665Ton KoopmanOrgan96-7Andante5:2896-8Adagio E Dolce4:0496-9Vivace4:12Sonata BWV 528 (In E Minor ∙ E-Moll ∙ Mi Mineur)9:37836665Ton KoopmanOrgan96-10Adagio-Vivace2:3696-11Andante4:3896-12Un Poco Allegro2:29Sonata BWV 529 (In C Major ∙ C-Dur ∙ Ut Majeur)14:21836665Ton KoopmanOrgan96-13Allegro4:5896-14Largo5:4596-15Allegro3:38Sonata BWV 530 (In G Major ∙ G-Dur ∙ Sol Majeur)13:53836665Ton KoopmanOrgan96-16Vivace3:4696-17Lento6:4596-18Allegro3:22Toccatas, Preludes & Fugues, BWV 532, 538, 540 & 564-566Toccata Et Fuga In F BWV 540 (In F Major ∙ F-Dur ∙ Fa Majeur)13:08836665Ton KoopmanOrgan97-1Toccata8:2197-2Fuga4:5397-3Toccata Con Fuga In D BWV 565 (In D Minor ∙ D-Moll ∙ Ré Mineur)8:14836665Ton KoopmanOrganToccata In C BWV 564 (In C Major ∙ C-Dur ∙ Ut Majeur)14:01836665Ton KoopmanOrgan97-4Toccata5:2297-5Adagio4:1397-6Fuga4:32Toccata Et Fuga In D ("Dorian") BWV 538 (In D Minor ∙ D-Moll ∙ Ré Mineur)12:34836665Ton KoopmanOrgan97-7Toccata5:1797-8Fuga7:23Praeludium Et Fuga In E BWV 566 (In E Major ∙ E-Dur ∙ Mi Majeur)10:10836665Ton KoopmanOrgan97-9Praeludium2:4697-10Fuga7:31Praeludium Et Fuga In D BWV 532 (In D Major ∙ D-Dur ∙ Ré Majeur)11:31836665Ton KoopmanOrgan97-11Praeludium5:1097-12Fuga6:21Clavier-Übung III BBWV 552,1 & 669-68398-1Praeludium Pro Organo Pleno, BWV 552,1 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)9:25836665Ton KoopmanOrganChorale Arrangements64:43836665Ton KoopmanOrgan98-2Kyrie, Gott Vater In Ewigkeit BWV 669 (Canto Fermo In Soprano À 2 Clav. Et Ped.)4:3198-3Christe, Aller Welt Trost BWV 670 (Canto Fermo In Tenore A 2 Clav. Et Pedal)6:0498-4Kyrie, Gott Heiliger Geist BWV 671 (A 5 ∙ Canto Fermo In Basso ∙ Cum Organo Pleno)5:5498-5Kyrie, Gott Vater In Ewigkeit BWV 672 (Alio Modo ∙ Manualiter)1:1498-6Christe, Aller Welt Trost BWV 6731:0998-7Kyrie, Gott Heiliger Geist BWV 6741:2298-8Allein Gott In Der Höh Sei Ehr BWV 675 (A 3 ∙ Canto Fermo In Alto)3:4198-9Allein Gott In Der Höh Sei Ehr BWV 676 (À 2 Clav. Et Pedal)5:2098-10Fughetta Super: Allein Gott In Der Höh Sei Ehr BWV 677(Manualiter)1:1598-11Dies Sind Die Heilgen Zehen Gebot BWV 678 (À 2 Clav. Et Ped ∙ Canto Fermo In Canone)6:1798-12Fughetta Super: Dies Sind Die Heilgen Zehen Gebot BWV 679 (Manualiter)1:5598-13Wir Glauben All An Einen Gott BWV 680 (In Organo Pleno Con Pedale)3:1398-14Fughetta Super: Wir Glauben All An Einen Gott BWV 681(Manualiter)1:4298-15Vater Unser Im Himmelreich BWV 682 (À 2 Clav. Et Pedal E Canto Fermo In Canone)9:2498-16Vater Unser Im Himmelreich BWV 683 (Alio Modo ∙ Manualiter)1:42Clavier-Übung III BWV 552,2, 684-689, 769A & 802-805Chorale Arrangements26:35836665Ton KoopmanOrgan99-1Christ, Unser Herr, Zum Jordan Kam BWV 684 (À 2 Clav. Fermo In Pedale)4:3599-2Christ, Unser Herr, Zum Jordan Kam BWV 685 (Alio Modo ∙ Manualiter)1:2999-3Aus Tiefer Not Schrei Ich Zu Dir BWV 686 (A 6 ∙ In Organo Pleno Con Pedale Doppio)5:4099-4Aus Tiefer Not Schrei Ich Zu Dir BWV 687 (A 4 ∙ Alio Modo ∙ Manualiter)6:2899-5Jesus Christus, Unser Heiland, Der Von Uns Den Zorn Gottes Wandt BWV 688 (À 2 Clav. Fermo In Pedale)3:3599-6Fuga Super: Jesus Christus, Unser Heiland BWV 689 (A 4 ∙ Manualiter)4:48Four Duets12:18836665Ton KoopmanOrgan99-7Duetto I BWV 8023:0099-8Duetto II BWV 8033:3599-9Duetto III BWV 8042:4199-10Duetto IV BWV 8053:0299-11Fuga A 5 Con Pedale Pro Organo Pleno BWV 552,2 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)6:29836665Ton KoopmanOrganCanonic Variations On "Vom Himmel Hoch, Da Komm Ich Her" BWV 769A (Einige Canonische Veraenderungen Über Das Weihnachtslied: Vom Himmel Hoch, Da Komm Ich Her)15:11836665Ton KoopmanOrgan99-12Canone All'Ottava (Cantus Firmus Im Pedal)1:4599-13Canone Alla Quinta (Il Canto Fermo Nel Pedale)1:4399-14Canto Fermo In Canone Alla Sesta E Al Rovescio, Alla Terza (Alla Seconda, Alla Nona)3:5099-15Canone Alla Settima (Cantus Firmus Im Sopran ∙ Cantabile)3:1999-16Canon Per Augmentationem À 2 Claviers Et Pédale (Cantus Firmus Im Pedal)4:34Preludes & Fugues BWV 533, 535, 537, 546, 549, 550, 568, 569, 575 Allabreve, BWV 589Praeludium Et Fuga In C BWV 546 (In C Minor ∙ C-Moll ∙ Ut Mineur)12:56836665Ton KoopmanOrgan100-1Praeludium6:40100-2Fuga6:15100-3Fuga In C BWV 575 (In C Minor ∙ C-Moll ∙ Ut Mineur)4:21836665Ton KoopmanOrganPraeludium Et Fuga In C BWV 549 (In C Minor ∙ C-Moll ∙ Ut Mineur)5:38836665Ton KoopmanOrgan100-4Praeludium2:00100-5Fuga3:38100-6Praeludium In G BWV 568 (In G Major ∙ G-Dur ∙ Sol Majeur)3:10836665Ton KoopmanOrgan100-7Allabreve In D BWV 589 (In D Major ∙ D-Dur ∙ Ré Majeur)4:36836665Ton KoopmanOrganPraeludium Et Fuga In G BWV 535 (In G Minor ∙ G-Moll ∙ Sol Mineur)6:36836665Ton KoopmanOrgan100-8Praeludium2:35100-9Fuga4:01Praeludium Et Fuga In G BWV 550 (In G Major ∙ G-Dur ∙ Sol Majeur)6:14836665Ton KoopmanOrgan100-10Praeludium2:24100-11Fuga3:50Praeludium Et Fuga In E BWV 533 (In E Minor ∙ E-Moll ∙ Mi Mineur)4:38836665Ton KoopmanOrgan100-12Praeludium2:18100-13Fuga2:20100-14Praeludium In A BWV 569 (In A Minor ∙ A-Moll ∙ La Mineur)6:06836665Ton KoopmanOrganFantasia Et Fuga In C BWV 537 (In C Minor ∙ C-Moll ∙ Ut Mineur)7:54836665Ton KoopmanOrgan100-14Fantasia4:08100-16Fuga3:46Preludes & Fugues BWV 534, 539, 541, 545, 547, 577, 583, 590 & 598Praeludium Et Fuga In C BWV 545 (In C Major ∙ C-Dur ∙ Ut Majeur)10:54836665Ton KoopmanOrgan101-1Praeludium1:59101-2Largo5:24101-3Fuga3:31101-4Fuga In G BWV 577 (In G Major ∙ G-Dur ∙ Sol Majeur)3:51836665Ton KoopmanOrgan101-5Trio A 2 Clav. E Pedale BWV 583 (In D Minor ∙ D-Moll ∙ Ré Mineur)5:42836665Ton KoopmanOrgan101-6Pedal-Exercitium BWV 598 (In G Minor ∙ G-Moll ∙ Sol Mineur) (Fragment; The End Is Improvised By Ton Koopman)2:33836665Ton KoopmanOrganPraeludium Et Fuga In G BWV 541 (In G Major ∙ G-Dur ∙ Sol Majeur)6:46836665Ton KoopmanOrgan101-7Praeludium2:46101-8Fuga4:00Praeludium Et Fuga In D BWV 539 (In D Minor ∙ D-Moll ∙ Ré Mineur)6:29836665Ton KoopmanOrgan101-9Praeludium1:51101-10Fuga4:38Praeludium Et Fuga In F BWV 534 (In F Minor ∙ F-Moll ∙ Fa Mineur)7:58836665Ton KoopmanOrgan101-11Praeludium3:29101-12Fuga4:29Pastorella (Pastorale) BWV 590 (In F Major ∙ F-Dur ∙ Fa Majeur)12:25836665Ton KoopmanOrgan101-13I2:21101-14II3:16101-15III2:21101-16IV4:27Praeludium Et Fuga In C BWV 547 (In C Major ∙ C-Dur ∙ Ut Majeur)8:40836665Ton KoopmanOrgan101-17Praeludium3:55101-18Fuga4:45Orgel-Büchlein BWV 599-644 (Little Organ Book ∙ Petit Livre D'Orgue)102-1Nun Komm, Der Heiden Heiland BWV 5991:06836665Ton KoopmanOrgan102-2Gott, Durch Deine Güte / Gottes Sohn Ist Kommen BWV 6001:09836665Ton KoopmanOrgan102-3Herr Christ, Der Ein'ge Gottessohn / Herr Gott, Nun Sei Gepreiset BWV 6011:26836665Ton KoopmanOrgan102-4Lob Sei Dem Allmächtigen Gott BWV 6020:48836665Ton KoopmanOrgan102-5Puer Natus In Bethlehem BWV 6030:52836665Ton KoopmanOrgan102-6Gelobet Seist Du, Jesu Christ BWV 604 (À 2 Clav. Et Ped.)0:58836665Ton KoopmanOrgan102-7Der Tag, Der Ist So Freudenreich BWV 605 (À 2 Clav. Et Ped.)1:54836665Ton KoopmanOrgan102-8Vom Himmel Hoch, Da Komm Ich Her BWV 6060:42836665Ton KoopmanOrgan102-9Vom Himmel Kam Der Engel Schar BWV 6071:44836665Ton KoopmanOrgan102-10In Dulci Jubilo BWV 6081:27836665Ton KoopmanOrgan102-11Lob Gott, Ihr Christen, Allzugleich BWV 6090:45836665Ton KoopmanOrgan102-12Jesu, Meine Freude BWV 610 (Largo)2:02836665Ton KoopmanOrgan102-13Christum Wir Sollen Loben Schon BWV 611 (Choral In Alto ∙ Adagio)1:34836665Ton KoopmanOrgan102-14Wir Christenleut BWV 6121:16836665Ton KoopmanOrgan102-15Helft Mit Gotts Güte Preisen BWV 6131:12836665Ton KoopmanOrgan102-16Das Alte Jahr Vegangen Ist BWV 614 (À 2 Clav. Et Ped.)1:57836665Ton KoopmanOrgan102-17In Dir Ist Freude BWV 6152:47836665Ton KoopmanOrgan102-18Mit Fried Und Freud Ich Fahr Dahin BWV 6161:42836665Ton KoopmanOrgan102-19Herr Gott, Nun Schleuß Den Himmel Auf BWV 6171:46836665Ton KoopmanOrgan102-20O Lamm Gottes, Unschuldig BWV 618 (Canon Alla Quinta ∙ Adagio)2:55836665Ton KoopmanOrgan102-21Christe, Du Lamm Gottes BWV 619 (In Canone Alla Duodecima À 2 Clav. Et Ped.)0:40836665Ton KoopmanOrgan102-22Christus, Der Uns Selig Macht BWV 620 (In Canone All'Ottava)2:02836665Ton KoopmanOrgan102-23Da Jesus An Dem Kreuze Stund BWV 6211:04836665Ton KoopmanOrgan102-24O Mensch, Bewein Dein Sünde Groß BWV 622 (À 2 Clav. Et Ped. ∙ Adagio Assai)4:42836665Ton KoopmanOrgan102-25Wir Danken Dir, Herr Jesu Christ, Daß Du Für Uns Gestorben Bist BWV 6231:03836665Ton KoopmanOrgan102-26Hilf, Gott, Daß Mir's Gelinge BWV 624 (À 2 Clav. Et Ped.)1:22836665Ton KoopmanOrgan102-27Christ Lag In Todesbanden BWV 6251:16836665Ton KoopmanOrgan102-28Jesus Christus, Unser Heiland, Der Den Tod Überwand BWV 6260:50836665Ton KoopmanOrganChrist Ist Erstanden BWV 6274:19836665Ton KoopmanOrgan102-29Vers 11:21102-30Vers 21:20102-31Vers 31:38102-32Erstanden Ist Der Heilge Christ BWV 6280:51836665Ton KoopmanOrgan102-33Erschienen Ist Der Herrliche Tag BWV 629 (À 2 Clav. Et Ped. In Canone)1:01836665Ton KoopmanOrgan102-34Heut Triumphieret Gottes Sohn BWV 6301:18836665Ton KoopmanOrgan102-35Komm, Gott Schöpfer, Heiliger Geist BWV 631a0:48836665Ton KoopmanOrgan102-36Herr Jesu Christ, Dich Zu Uns Wend BWV 6321:16836665Ton KoopmanOrgan102-37Liebster Jesu, Wir Sind Hier BWV 633 (Distinctus)2:12836665Ton KoopmanOrgan102-38Dies Sind Die Heilgen Zehn Gebot BWV 6351:17836665Ton KoopmanOrgan102-39Vater Unser Im Himmelreich BWV 6361:17836665Ton KoopmanOrgan102-40Durch Adams Fall Ist Ganz Verderbt BWV 6371:16836665Ton KoopmanOrgan102-41Es Ist Das Heil Kommen Her BWV 6381:04836665Ton KoopmanOrgan102-42Ich Ruf Zu Dir, Herr Jesu Christ BWV 639 (À 2 Clav. Et Ped.)3:44836665Ton KoopmanOrgan102-43In Dich Hab Ich Gehoffet, Herr BWV 6400:54836665Ton KoopmanOrgan102-44Wenn Wir In Höchsten Nöten Sein BWV 641 (À 2 Clav. Et Ped.)1:54836665Ton KoopmanOrgan102-45Wer Nur Den Lieben Gott Läßt Walten BWV 6421:25836665Ton KoopmanOrgan102-46Alle Menschen Müssen Sterben BWV 6431:08836665Ton KoopmanOrgan102-47Ach Wie Nichtig, Ach Wie Flüchtig BWV 6440:50836665Ton KoopmanOrganChorale Partitas BWV 690, 691, 705-707, 728, 729, 763, 766-768, 770 & BWV Anh. II 74Partita Diverse Sopra Il Corale »Sei Gegrüßet, Jesu Gütig« BWV 76819:00836665Ton KoopmanOrgan103-1Corale1:20103-2Variatio I2:28103-3Variatio II1:04103-4Variatio III0:37103-5Variatio IV0:57103-6Variatio V1:07103-7Variatio VI0:59103-8Variatio VII (À 2 Clav. Et Ped.)2:05103-9Variatio VIII1:10103-10Variatio IX (À 2 Clav. Et Ped.)1:05103-11Variatio X (À 2 Clav. Et Ped.)4:54103-12Variatio XI (À 5 Voci, In Organo Pleno)1:14Partita Diverse Sopra Il Corale »Ach, Was Soll Ich Sünder Machen« BWV 77010:47836665Ton KoopmanOrgan103-13Partita I0:47103-14Partita II0:35103-15Partita III0:45103-16Partita IV0:40103-17Partita V0:46103-18Partita VI0:39103-19Partita VII0:35103-20Partita VIII0:50103-21Partita IX (Adagio)2:10103-22Partita X (Allegro)3:29103-23In Dulci Jubilo BWV 7292:11836665Ton KoopmanOrgan103-24Ich Hab Mein Sach Gott Heimgestellt BWV 707 (Kirnberger Chorales)3:56836665Ton KoopmanOrgan103-25Ich Hab Mein Sach Gott Heimgestellt BWV 708 (Kirnberger)1:00836665Ton KoopmanOrgan103-26Wie Schön Leuchtet Der Morgenstern BWV 7631:23836665Ton KoopmanOrgan103-27Schmücke Dich, O Liebe Seele BWV Anh. II 741:18836665Ton KoopmanOrganPartita Diverse Sopra Il Corale »Christ, Der Du Bist Der Helle Tag« BWV 7668:20836665Ton KoopmanOrgan103-28Partita I0:44103-29Partita II (Largo)2:02103-30Partita III1:07103-31Partita IV0:50103-32Partita V1:14103-33Partita VI0:49103-34Partita VIII (Con Pedale Se Piace)1:34103-35Liebster Jesu, Wir Sind Hier BWV 706 (Kirnberger)1:48836665Ton KoopmanOrgan103-36Jesus, Meine Zuversicht BWV 7281:27836665Ton KoopmanOrgan103-37Wer Nur Den Lieben Gott Läßt Walten BWV 691 (Kirnberger)2:12836665Ton KoopmanOrgan103-38Wer Nur Den Lieben Gott Läßt Walten BWV 690 (Kirnberger)2:00836665Ton KoopmanOrgan103-39Durch Adams Fall Ist Ganz Verderbt BWV 705 (Kirnberger)2:34836665Ton KoopmanOrganPartita Diverse Sopra Il Corale »O Gott, Du Frommer Gott« BWV 76715:30836665Ton KoopmanOrgan103-40Partita I1:04103-41Partita II2:55103-42Partita III1:11103-43Partita IV0:44103-44Partita V1:34103-45Partita VI1:05103-46Partita VII1:16103-47Partita VIII1:52103-48Partita IX3:32Kirnberger Chorales BWV 695A, 696, 698 & 711 Chorale Arrangements BWV 717, 718, 721, 725, 726, 730-733, 735, 738-741, 754 & 1085Kirnberger Chorales (BWV 711, 696, 695a, 698) And Other Chorale Arrangements77:21836665Ton KoopmanOrgan104-1Allein Gott In Der Höh Sei Ehr BWV 711 (Bicinium)3:16104-2Allein Gott In Der Höh Sei Ehr BWV 717 (Manualiter)2:49104-3Liebster Jesu, Wir Sind Hier BWV 7301:38104-4Liebster Jesu, Wir Sind Hier BWV 731 (À 2 Claviers Et Pédale)1:52104-5Wir Glauben All An Einen Gott, Vater BWV 7405:11104-6Fughetta Super: Christum Wir Sollen Loben Schon / Was Fürchstst Du Feind, Herodes, Sehr BWV 696 (Manualiter)1:09104-7O Lamm Gottes, Unschuldig BWV 10851:57104-8Ach Gott, Vom Himmel Sieh Darein BWV 741 (In Organo Pleno)5:20104-9Wie Schön Leuchtet Der Morgenstern BWV 7394:31104-10Lobt Gott, Ihr Christen, Allzugleich BWV 7321:18104-11Christ Lag In Todes Banden BWV 695a3:56104-12Christ Lag In Todes Banden BWV 718 (À 2 Claviers Et Pédale)5:00104-13Fughetta Super: Herr Christ, Der Einig Gottes Sohn BWV 698 (Manualiter)1:15104-14Herr Gott, Dich Loben Wir BWV 725 (Per Omnes Versus A 5 Voci)10:30104-15Herr Jesu Christ, Dich Zu Uns Wend BWV 7261:02104-16Valet Will Ich Dir Geben BWV 736 (Choralis In Pedale)4:06104-17Fantasia Super: Valet Will Ich Dir Geben BWV 735 (Cum Pedale Obligato)3:57104-18Erbarm Dich Mein, O Herre Gott BWV 721 (Manualiter)5:18104-19Vom Himmel Hoch, Da Komm Ich Her BWV 7381:13104-20O Vater, Allmächtiger Gott BWV 758 (Alla Breve ∙ Vers 1 ∙ Vers 2 ∙ Vers 3)4:14104-21Liebster Jesu, Wir Sind Hier BWV 7543:25104-22Meine Seele Erhebt Den Herrn BWV 733 (Fuge Über Das Magnificat ∙ Manualiter)4:21Neumeister Chorales, BWV 1090-1120, Chorale Arrangements BWV 714, 719, 737, 742 & 95730 Chorale Arrangements From The Neumeister Collection BWV 1090-1120 (Yale University, New Haven: Rinck Collection Lm 4708) And Other Chorale Arrangements74:17836665Ton KoopmanOrgan105-1Vater Unser Im Himmelreich BWV 737 (Manualiter)3:10105-2Der Tag, Der Ist So Freudenreich BWV 7191:43105-3Wir Christen Leut BWV 10901:47105-4Das Alte Jahr Vergangen Ist BWV 10912:01105-5Herr Gott, Nun Schleuß Den Himmel Auf BWV 10922:22105-6Herzliebster Jesu, Was Hast Du Verbrochen BWV 10931:57105-7O Jesu, Wie Ist Dein Gestalt BWV 10942:34105-8O Lamm Gottes Unschuldig BWV 10951:34105-9Christe, Der Du Bist Tag Und Licht / Wir Danken Dir, Herr Jesu Christ BWV 10962:30105-10Ehre Sei Dir, Christe, Der Du Leidest Not BWV 10971:41105-11Wir Glauben All An Einen Gott BWV 10982:56105-12Aus Tiefer Not Schrei Ich Zu Dir BWV 10991:57105-13Allein Zu Dir, Herr Jesu Christ BWV 11002:17105-14Ach Gott Und Herr BWV 714 (Per Canonem)2:22105-15Ach Herrr, Mich Armen Sünder BWV 742 (Poco Adagio)2:06105-16Durch Adams Fall Ist's Ganz Verderbt BWV 11013:04105-17Du Friedefürst, Herr Jesu Christ BWV 11022:42105-18Erhalt Uns, Herr, Bei Deinem Wort BWV 11031:23105-19Wenn Dich Unglück Tut Greifen An BWV 11041:34105-20Jesu, Meine Freude BWV 11051:37105-21Gott Ist Mein Heil, Mein Hilf Und Trost BWV 11061:41105-22Jesu, Meines Lebens Leben BWV 11071:27105-23Als Jesus Christus In Der Nacht BWV 11082:13105-24Ach Gott, Tu Dich Erbarmen BWV 11092:01105-25O Herre Gott, Dein Göttlich Wort BWV 11101:56105-26Nun Lasset Uns Den Leib Begraben BWV 11112:18105-27Christus, Der Ist Mein Leben BWV 11121:12105-28Ich Hab Mein Sach Gott Heimgestellt BWV 11132:05105-29Herr Jesu Christ, Du Höchstes Gut BWV 11143:14105-30Herzlich Lieb Hab Ich Dich, O Herr BWV 11152:42105-31Was Gott Tut, Das Ist Wohlgetan BWV 11161:32105-32Alle Menschen Müssen Sterben BWV 11171:59105-33Mach's Mit Mir, Gott, Nach Deiner Güt (= Fuga In G) BWV 9571:58105-34Werde Munter, Mein Gemüte BWV 11181:45105-35Wie Nach Einer Wasserquelle BWV 11191:19105-36Christ, Der Du Bist Der Helle Tag BWV 11201:39Chorale Arrangements BWV 694, 697, 699-704, 709, 712, 713, 715, 716, 720, 722, 724, 727, 734, 743, 747, 749, 750, 755, 757, 762, 765, BWV Anh. II 49 / 58 / 50 & BWV DeestKirnberger Chorales (BWV 709, 697, 702, 713, 712, 700, 701, 704, 703, 694, 699) And Other Chorale Arrangements76:47836665Ton KoopmanOrgan106-1Herr Jesu Christ, Dich Zu Uns Wend BWV 709 (À 2 Claviers Et Pédale)2:36106-2Ein Feste Burg Ist Unser Gott BWV 720 (À 3 Claviers Et Pédale)3:39106-3Ein Feste Burg Ist Unser Gott BWV Anh. II 493:11106-4Jesu, Meine Freude BWV Anh. II 582:40106-5Erhalt Uns, Herr, Bei Deinem Wort BWV Anh. II 502:06106-6O Herre Gott, Dein Götttlichs Wort BWV 7571:39106-7Nun Freut Euch, Lieben Christen Gmein BWV 734 (Choralis In Tenore ∙ Manualiter)2:06106-8Nun Freut Euch, Lieben Christen BWV 7552:17106-9Fughetta Super: Gelobet Seist Du, Jesu Christ BWV 697 (Manualiter)1:01106-10Ach, Was Ist Doch Unser Leben BWV 7432:47106-11Christus, Der Uns Selig Macht BWV 7474:42106-12Wir Glauben All An Einen Gott, Schöpfer BWV 7652:37106-13Fughetta Super: Das Jesulein Soll Doch Mein Trost BWV 7021:31106-14Gott, Durch Deine Güte BWV 7241:18106-15Gelobet Seist Du, Jesu Christ BWV 7221:28106-16Ich Ruf Zu Dir, Herr Jesu Christ BWV Deest2:11106-17Herr Christ, Der Einig Gottes Sohn BWV Deest2:21106-18Komm, Heiliger Geist, Erfüll Die Herzen BWV Deest3:14106-19Auf Meinen Lieben Gott BWV Deest1:23106-20Fuga Super: Allein Gott In Der Höh Sei Ehr BWV 7162:41106-21Fantasia Super: Jesu, Meine Freude BWV 713 (Manualiter)4:20106-22Vater Unser Im Himmelreich BWV 7623:14106-23In Dich Hab Ich Gehoffet, Herr BWV 712 (Manualiter)1:57106-24Nun Ruhen Alle Wälder BWV 7561:07106-25Herr Jesu Christ, Meins Lebens Licht BWV 7501:15106-26Herr Jesu Christ, Dich Zu Uns Wend BWV 7491:18106-27Vom Himmel Hoch, Da Kommt Ich Her BWV 7002:35106-28Fughetta Super: Vom Himmel Hoch, Da Kommt Ich Her BWV 701 (Manualiter)1:40106-29Auf Meinen Lieben Gott BWV Deest1:19106-30Fughetta Super: Lob Sei Dem Allmächtigen Gott BWV 704 (Manualiter)0:53106-31Fughetta Super: Gottes Sohn Ist Kommen BWV 703 (Manualiter)0:53106-32Herzlich Tut Mich Verlangen BWV 727 (À 2 Claviers Et Pédale)2:16106-33Wo Soll Ich Fliehen Hin BWV 694 (À 2 Claviers Et Pédale)3:21106-34Allein Gott In Der Höh Sei Ehr BWV 7152:00106-35Fughetta Super: Nun Komm, Der Heiden Heiland BWV 699 (Manualiter)1:10Preludes & Fugues BWV 548, 553-561 & 571 Kleines Harmonisches Labyrith, BWV 591 Concerto, BWV 594Praeludium Et Fuga In E BWV 548 (In E Minor ∙ E-Moll ∙ Mi Mineur)13:33836665Ton KoopmanOrgan107-1Praeludium6:12107-2Fuga7:21Fantasia Et Fuga In A BWV 561 (In A Minor ∙ A-Moll ∙ La Mineur)8:05836665Ton KoopmanOrgan107-3Fantasia2:29107-4Fuga5:36Eight Short Preludes And Fugues BWV 553-560 (Acht Kleine Präludien Und Fugen ∙ Huit Petites Préludes Et Fugues)24:09836665Ton KoopmanOrgan107-5Praeludium Et Fuga In C BWV 553 (In C Major ∙ C-Dur ∙ Ut Majeur)3:22107-6Praeludium Et Fuga In D BWV 554 (In D Minor ∙ D-Moll ∙ Ré Mineur)2:49107-7Praeludium Et Fuga In E BWV 555 (In E Minor ∙ E-Moll ∙ Mi Mineur)3:57107-8Praeludium Et Fuga In F BWV 556 (In F Major ∙ F-Dur ∙ Fa Majeur)2:26107-9Praeludium Et Fuga In G BWV 557 (In G Major ∙ G-Dur ∙ Sol Majeur)2:34107-10Praeludium Et Fuga In G BWV 558 (In G Minor ∙ G-Moll ∙ Sol Mineur)2:58107-11Praeludium Et Fuga In A BWV 559 (In A Minor ∙ A-Moll ∙ La Mineur)2:41107-12Praeludium Et Fuga In BWV 560 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)3:22Fantasia In G BWV 571 (In G Major ∙ G-Dur ∙ Sol Majeur)7:08836665Ton KoopmanOrgan107-13[Allegro]3:13107-14Adagio1:50107-15Allegro2:05107-16Kleines Harmonisches Labyrinth BWV 591 (Introitus ∙ Centrum ∙ Exitus)4:38836665Ton KoopmanOrganConcerto In C BWV 594 (In C Major ∙ C-Dur ∙ Ut Majeur) (After Vivaldi's Concerto In D Major, RV 208, "Grosso Mogul")17:27836665Ton KoopmanOrgan107-17[Allegro]7:06107-18Recitativo: Adagio2:37107-19Allegro7:44Concertos, BWV 592, 593 & 595-597 Fantasias, Preludes & Fugues BWV 536, 551, 563, 574, 576, 579, 1121Concerto In G BWV 592 (In G Major ∙ G-Dur ∙ Sol Majeur) (After A Concerto In G By Duke Johann Ernst Of Saxe-Weimar)7:02836665Ton KoopmanOrgan108-1[Allegro]3:20108-2Grave1:51108-3Presto1:51108-4Fantasia Et Imitatio In H BWV 563 (In B Minor ∙ H-Moll ∙ Si Mineur)4:30836665Ton KoopmanOrganPraeludium Con Fuga In A BWV 551 (In A Minor ∙ A-Moll ∙ La Mineur)5:14836665Ton KoopmanOrgan108-5Praeludium1:57108-6Fuga3:17108-7Concerto In C BWV 595 (In C Major ∙ C-Dur ∙ Ut Majeur) (After The First Movement Of A Concerto By Duke Johann Ernst Of Saxe-Weimar)3:45836665Ton KoopmanOrgan108-8Fuga In C BWV 574 (In C Minor ∙ C-Moll ∙ Ut Mineur) (On A Theme By Giovanni Legrenzi)7:45836665Ton KoopmanOrgan108-9Fuga In G BWV 576 (In G Major ∙ G-Dur ∙ Sol Majeur)4:06836665Ton KoopmanOrganConcerto In D BWV 596 (In D Minor ∙ D-Moll ∙ Ré Mineur) (After Vivaldi's Concerto In D Minor Op. 3, No. 11 (RV 565))10:53836665Ton KoopmanOrgan108-10[Andante] - Grave1:30108-11Fuga3:19108-12Largo E Spiccato2:58108-13[Finale]3:06108-14Fuga In H BWV 579 (In B Minor ∙ H-Moll ∙ Si Mineur) (After A Theme By Arcangelo Corelli)5:58836665Ton KoopmanOrganPraeludium Et Fuga In A BWV 536 (In A Major ∙ A-Dur ∙ La Majeur)6:01836665Ton KoopmanOrgan108-15Praeludium1:30108-16Fuga4:31108-17Fantasia In C BWV 1121 (In C Minor ∙ C-Moll ∙ Ut Mineur)2:59836665Ton KoopmanOrganConcerto In Es BWV 597 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur) (After An Unknown Model)6:38836665Ton KoopmanOrgan108-18[Andante]3:36108-19Gigue3:02Concerto In A BWV 593 (In A Minor ∙ A-Moll ∙ La Mineur) (After Vivaldi's Concerto In A Minor Op. 3, No. 8 (RV 522))11:10836665Ton KoopmanOrgan108-20[Allegro Moderato]3:49108-21Adagio (Senza Pedale À Due Clav.)3:37108-22Allegro3:44Keyboard WorksInventions, BWV 772-786 Sinfonias, BWV 787-801Inventions (Two-Part Inventions) BWV 772-78621:52834518Zuzana RůžičkováHarpsichord109-1Inventio 1 BWV 772 (In C Major ∙ C-Dur ∙ Ut Majeur)1:09109-2Inventio 2 BWV 773 (In C Minor ∙ C-Moll ∙ Ut Mineur)2:02109-3Inventio 3 BWV 774 (In D Major ∙ D-Dur ∙ Ré Majeur)1:11109-4Inventio 4 BWV 775 (In D Minor ∙ D-Moll ∙ Ré Mineur)1:03109-5Inventio 5 BWV 776 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)1:46109-6Inventio 6 BWV 777 (In E Major ∙ E-Dur ∙ Mi Majeur)1:39109-7Inventio 7 BWV 778 (In E Minor ∙ E-Moll ∙ Mi Mineur)1:22109-8Inventio 8 BWV 779 (In F Major ∙ F-Dur ∙ Fa Majeur)0:55109-9Inventio 9 BWV 780 (In F Minor ∙ F-Moll ∙ Fa Mineur)2:38109-10Inventio 10 BWV 781 (In G Major ∙ G-Dur ∙ Sol Majeur)0:54109-11Inventio 11 BWV 782 (In G Minor ∙ G-Moll ∙ Sol Mineur)1:46109-12Inventio 12 BWV 783 (In A Major ∙ A-Dur ∙ La Majeur)1:23109-13Inventio 13 BWV 784 (In A Minor ∙ A-Moll ∙ La Mineur)1:17109-14Inventio 14 BWV 785 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)1:41109-15Inventio 15 BWV 786 (In B Minor ∙ H-Moll ∙ Si Mineur)1:06Sinfonias (Three-Part Inventions) BWV 787-80133:23834518Zuzana RůžičkováHarpsichord109-16Sinfonia 1 BWV 787 (In C Major ∙ C-Dur ∙ Ut Majeur)1:22109-17Sinfonia 2 BWV 788 (In C Minor ∙ C-Moll ∙ Ut Mineur)2:32109-18Sinfonia 3 BWV 789 (In D Major ∙ D-Dur ∙ Ré Majeur)1:23109-19Sinfonia 4 BWV 790 (In D Minor ∙ D-Moll ∙ Ré Mineur)3:02109-20Sinfonia 5 BWV 791 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)3:22109-21Sinfonia 6 BWV 792 (In E Major ∙ E-Dur ∙ Mi Majeur)2:03109-22Sinfonia 7 BWV 793 (In E Minor ∙ E-Moll ∙ Mi Mineur)3:12109-23Sinfonia 8 BWV 794 (In F Major ∙ F-Dur ∙ Fa Majeur)1:17109-24Sinfonia 9 BWV 795 (In F Minor ∙ F-Moll ∙ Fa Mineur)4:16109-25Sinfonia 10 BWV 796 (In G Major ∙ G-Dur ∙ Sol Majeur)1:14109-26Sinfonia 11 BWV 797 (In G Minor ∙ G-Moll ∙ Sol Mineur)2:27109-27Sinfonia 12 BWV 798 (In A Major ∙ A-Dur ∙ La Majeur)1:39109-28Sinfonia 13 BWV 799 (In A Minor ∙ A-Moll ∙ La Mineur)2:31109-29Sinfonia 14 BWV 800 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)1:32109-30Sinfonia 15 BWV 801 (In B Minor ∙ H-Moll ∙ Si Mineur)1:31English & French Suites 1 & 2English Suite No. 1 BWV 806 (In A Major ∙ A-Dur ∙ La Majeur)21:541438649Alan Curtis (2)Harpsichord110-1Prélude1:56110-2Allemande4:54110-3Courante I & II4:31110-4Sarabande2:20110-5Bourrée I & II5:01110-6Gigue3:22French Suite No. 1 BWV 812 (In D Minor ∙ D-Moll ∙ Ré Mineur)8:031438649Alan Curtis (2)Harpsichord110-7Allemande1:49110-8Courante1:07110-9Sarabande1:39110-10Menuet I0:46110-11Menuet II1:00110-12Gigue1:53English Suite No. 2 BWV 807 (In A Minor ∙ A-Moll ∙ La Mineur)21:401438649Alan Curtis (2)Harpsichord110-13Prélude5:16110-14Allemande3:34110-15Courante2:01110-16Sarabande2:57110-17Bourrée I & II4:43110-18Gigue3:19French Suite No. 2 BWV 813 (In C Minor ∙ C-Moll ∙ Ut Mineur)6:441438649Alan Curtis (2)Harpsichord110-19Allemande1:37110-20Courante0:58110-21Sarabande1:52110-22Air0:57110-23Gigue1:20English & French Suites 3 & 4English Suite No. 3 BWV 808 (In G Minor ∙ G-Moll ∙ Sol Mineur)17:381438649Alan Curtis (2)Harpsichord111-1Prélude3:31111-2Allemande3:24111-3Courante2:20111-4Sarabande2:52111-5Gavotte I & II3:23111-6Gigue2:19French Suite No. 3 BWV 814 (In B Minor ∙ H-Moll ∙ Si Mineur)9:481438649Alan Curtis (2)Harpsichord111-7Allemande1:49111-8Courante1:17111-9Sarabande1:49111-10Gavotte (Anglaise)1:06111-11Menuet & Trio2:38111-12Gigue1:19English Suite No. 4 BWV 809 (In F Major ∙ F-Dur ∙ Fa Majeur)21:511438649Alan Curtis (2)Harpsichord111-13Prélude5:32111-14Allemande3:58111-15Courante1:57111-16Sarabande2:57111-17Menuet I & II3:35111-18Gigue4:02French Suite No. 4 BWV 815 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)7:291438649Alan Curtis (2)Harpsichord111-19Allemande2:02111-20Courante1:03111-21Sarabande1:16111-22Gavotte0:43111-23Air0:59111-24Gigue1:26English & French Suites 5 & 6English Suite No. 5 BWV 810 (In F Minor ∙ F-Moll ∙ Fa Mineur)20:391438649Alan Curtis (2)Harpsichord112-1Prélude5:32112-2Allemande3:53112-3Courante2:28112-4Sarabande2:51112-5Passepied I En Rondeau ∙ Passepied II2:39112-6Gigue3:26French Suite No. 5 BWV 816 (In G Major ∙ G-Dur ∙ Sol Majeur)11:451438649Alan Curtis (2)Harpsichord112-7Allemande1:40112-8Courante1:02112-9Sarabande3:52112-10Gavotte1:19112-11Bourrée0:45112-12Loure1:10112-13Gigue2:07English Suite No. 6 BWV 811 (In D Minor ∙ D-Moll ∙ Ré Mineur)25:591438649Alan Curtis (2)Harpsichord112-14Prélude8:08112-15Allemande4:25112-16Courante2:36112-17Sarabande3:12112-18Gavotte I & II3:49112-19Gigue4:00French Suite No. 6 BWV 817 (In E Major ∙ E-Dur ∙ Mi Majeur)10:081438649Alan Curtis (2)Harpsichord112-20Allemande1:43112-21Courante1:34112-22Sarabande2:44112-23Gavotte0:42112-24Polonaise0:43112-25Menuet0:41112-26Bourrée0:53112-27Gigue1:08Suites, BWV 818A, 819 & 821Suite In E Flat Major BWV 819 (Es-Dur ∙ Mi Bémol Majeur)13:53834518Zuzana RůžičkováHarpsichord113-1Allemande2:41113-2Courante2:06113-3Sarabande4:17113-4Bourrée1:43113-5Menuet I & II3:12113-6Allemande In E Flat Major BWV 819a (Es-Dur ∙ Mi Bémol Majeur) (Alternative For The Allemande In The Suite BWV 819)3:25834518Zuzana RůžičkováHarpsichordSuite In B Flat Major BWV 821 (B-Dur ∙ Si Bémol Majeur)11:22834518Zuzana RůžičkováHarpsichord113-7Praeludium1:04113-8Allemande3:29113-9Courante1:12113-10Sarabande2:53113-11Echo2:44Three Minuets From The Clavier-Büchlein For W. F. Bach4:28834518Zuzana RůžičkováHarpsichord113-12Menuet I BWV 841 (In G Major ∙ G-Dur ∙ Sol Majeur)1:25113-13Menuet II BWV 842 (In G Minor ∙ G-Moll ∙ Sol Mineur)0:59113-14Menuet III BWV 843 (In G Major ∙ G-Dur ∙ Sol Majeur)2:04113-15Trio In B Minor BWV 814a (H-Moll ∙ Si Mineur) (Alternative For The Trio In The French Suite No. 3 BWV 814)1:24834518Zuzana RůžičkováHarpsichord113-16Scherzo In D Minor BWV 844 (D-Moll ∙ Ré Mineur)2:26834518Zuzana RůžičkováHarpsichordSuite In A Minor BWV 818a (A-Moll ∙ La Mineur)14:34834518Zuzana RůžičkováHarpsichord113-17Fort Gai2:08113-18Allemande3:31113-19Courante1:24113-20Sarabande3:47113-21Menuet1:29113-22Gigue2:22Suite Movements BWV 818 (Alternatives For The Suite BWV 818a)5:48834518Zuzana RůžičkováHarpsichord113-23Sarabande Simple3:22113-24Sarabande Double2:26Partitas 1-4, BWV 825-828Partita No. 1 BWV 825 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)19:10961594Scott Ross (4)Harpsichord114-1Praeludium1:44114-2Allemande4:48114-3Corrente2:52114-4Sarabande4:49114-5Menuet I1:23114-6Menuet II1:25114-7Giga2:15Partita No. 2 BWV 826 (In C Minor ∙ C-Moll ∙ Ut Mineur)19:41961594Scott Ross (4)Harpsichord114-8Sinfonia: Grave Adagio - Andante - Allegro4:16114-9Allemande4:47114-10Courante2:23114-11Sarabande3:00114-12Rondeaux1:33114-13Capriccio3:42Partita No. 3 BWV 827 (In A Minor ∙ A-Moll ∙ La Mineur)19:24961594Scott Ross (4)Harpsichord114-14Fantasia2:46114-15Allemande2:31114-16Corrente3:07114-17Sarabande3:53114-18Burlesca2:13114-19Scherzo1:34114-20Gigue3:20Partita No. 4 BWV 828 (In D Major ∙ D-Dur ∙ Ré Majeur) (Beginning)15:55961594Scott Ross (4)Harpsichord114-21Ouverture6:18114-22Allemande9:37Partitas 4-6, BWV 828-830Partita No. 4 BWV 828 (In D Major ∙ D-Dur ∙ Ré Majeur) (Conclusion)17:23961594Scott Ross (4)Harpsichord115-1Courante3:54115-2Aria2:36115-3Sarabande5:24115-4Menuet1:21115-5Gigue4:08Partita No. 5 BWV 829 (In C Major ∙ C-Dur ∙ Ut Majeur)20:36961594Scott Ross (4)Harpsichord115-6Praeambulum2:31115-7Allemande4:47115-8Corrente2:04115-9Sarabande3:43115-10Tempo Di Minuetta1:45115-11Passepied1:45115-12Gigue4:01Partita No. 6 BWV 829 (In E Minor ∙ E-Moll ∙ Mi Mineur)32:26961594Scott Ross (4)Harpsichord115-13Toccata7:36115-14Allemande3:11115-15Corrente5:35115-16Air1:45115-17Sarabande5:44115-18Tempo Di Gavotta2:09115-19Gigue6:26The Well-Tempered Clavier I (1) Nos.1-12, BWV 846-857116-1Prelude And Fugue No. 1 In C Major BWV 846 (C-Dur ∙ Ut Majeur)4:07255263Glen WilsonHarpsichord116-2Prelude And Fugue No. 2 In C Minor BWV 847 (C-Moll ∙ Ut Mineur)3:13255263Glen WilsonHarpsichord116-3Prelude And Fugue No. 3 In C Sharp Major BWV 848 (Cis-Dur ∙ Ut Dièse Majeur)3:42255263Glen WilsonHarpsichord116-4Prelude And Fugue No. 4 In C Sharp Minor BWV 849 (Cis-Moll ∙ Ut Dièse Mineur)7:12255263Glen WilsonHarpsichord116-5Prelude And Fugue No. 5 In D Major BWV 850 (D-Dur ∙ Ré Majeur)3:00255263Glen WilsonHarpsichord116-6Prelude And Fugue No. 6 In D Minor BWV 851 (D-Moll ∙ Ré Mineur)3:16255263Glen WilsonHarpsichord116-7Prelude And Fugue No. 7 In E Flat Major BWV 852 (Es-Dur ∙ Mi Bémol Majeur)6:17255263Glen WilsonHarpsichord116-8Prelude And Fugue No. 8 In E Flat Minor BWV 853 (Es-Moll ∙ Mi Bémol Mineur)10:06255263Glen WilsonHarpsichord116-9Prelude And Fugue No. 9 In E Major BWV 854 (E-Dur ∙ Mi Majeur)2:43255263Glen WilsonHarpsichord116-10Prelude And Fugue No. 10 In E Minor BWV 855 (E-Moll ∙ Mi Mineur)3:54255263Glen WilsonHarpsichord116-11Prelude And Fugue No. 11 In F Major BWV 856 (F-Dur ∙ Fa Majeur)2:31255263Glen WilsonHarpsichord116-12Prelude And Fugue No. 12 In F Minor BWV 857 (F-Moll ∙ Fa Mineur)6:45255263Glen WilsonHarpsichordThe Well-Tempered Clavier I (2) Nos.13-24, BWV 858-869117-1Prelude And Fugue No. 13 In F Sharp Major BWV 858 (Fis-Dur ∙ Fa Dièse Majeur)3:33255263Glen WilsonHarpsichord117-2Prelude And Fugue No. 14 In F Sharp Minor BWV 859 (Fis-Moll ∙ Fa Dièse Mineur)4:22255263Glen WilsonHarpsichord117-3Prelude And Fugue No. 15 In G Major BWV 860 (G-Dur ∙ Sol Majeur)3:58255263Glen WilsonHarpsichord117-4Prelude And Fugue No. 16 In G Minor BWV 861 (G-Moll ∙ Sol Mineur)4:32255263Glen WilsonHarpsichord117-5Prelude And Fugue No. 17 In A Flat Major BWV 862 (As-Dur ∙ La Bémol Majeur)4:06255263Glen WilsonHarpsichord117-6Prelude And Fugue No. 18 (In G Sharp Minor BWV 863 (Gis-Moll ∙ Sol Dièse Mineur)5:07255263Glen WilsonHarpsichord117-7Prelude And Fugue No. 19 In A Major BWV 864 (A-Dur ∙ La Majeur)3:35255263Glen WilsonHarpsichord117-8Prelude And Fugue No. 20 In A Minor BWV 865 (A-Moll ∙ La Mineur)6:42255263Glen WilsonHarpsichord117-9Prelude And Fugue No. 21 In B Flat Major BWV 866 (B-Dur ∙ Si Bémol Majeur)2:54255263Glen WilsonHarpsichord117-10Prelude And Fugue No. 22 In B Flat Minor BWV 867 (B-Moll ∙ Si Bémol Mineur)6:23255263Glen WilsonHarpsichord117-11Prelude And Fugue No. 23 In B Major BWV 868 (H-Dur ∙ Si Majeur)3:36255263Glen WilsonHarpsichord117-12Prelude And Fugue No. 24 In B Minor BWV 869 (H-Moll ∙ Si Mineur)11:45255263Glen WilsonHarpsichordThe Well-Tempered Clavier II (1) Nos.1-12, BWV 870-881118-1Prelude And Fugue No. 1 In C Major BWV 870 (C-Dur ∙ Ut Majeur)4:22255263Glen WilsonHarpsichord118-2Prelude And Fugue No. 2 In C Mineur BWV 871 (C-Moll ∙ Ut Mineur)6:11255263Glen WilsonHarpsichord118-3Prelude And Fugue No. 3 In C Sharp Major BWV 872 (Cis-Dur ∙ Ut Dièse Majeur)4:33255263Glen WilsonHarpsichord118-4Prelude And Fugue No. 4 In C Sharp Minor BWV 873 (Cis-Moll ∙ Ut Dièse Mineur)6:59255263Glen WilsonHarpsichord118-5Prelude And Fugue No. 5 In D Major BWV 874 (D-Dur ∙ Ré Majeur)7:09255263Glen WilsonHarpsichord118-6Prelude And Fugue No. 6 In D Minor BWV 875 (D-Moll ∙ Ré Mineur)3:28255263Glen WilsonHarpsichord118-7Prelude And Fugue No. 7 In E Flat Major BWV 876 (Es-Dur ∙ Mi Bémol Majeur)4:28255263Glen WilsonHarpsichord118-8Prelude And Fugue No. 8 In D Sharp Minor BWV 877 (Dis-Moll ∙ Ré Dièse Mineur)8:05255263Glen WilsonHarpsichord118-9Prelude And Fugue No. 9 In E Major BWV 878 (E-Dur ∙ Mi Majeur)8:46255263Glen WilsonHarpsichord118-10Prelude And Fugue No. 10 In E Minor BWV 879 (E-Moll ∙ Mi Mineur)7:09255263Glen WilsonHarpsichord118-11Prelude And Fugue No. 11 In F Major BWV 880 (F-Dur ∙ Fa Majeur)5:47255263Glen WilsonHarpsichord118-12Prelude And Fugue No. 12 In F Minor BWV 881 (F-Moll ∙ Fa Mineur)6:12255263Glen WilsonHarpsichordThe Well-Tempered Clavier II (2) Nos.13-24, BWV 882-893119-1Prelude And Fugue No. 13 In F Sharp Major BWV 882 (Fis-Dur ∙ Fa Dièse Majeur)6:25255263Glen WilsonHarpsichord119-2Prelude And Fugue No. 14 In F Sharp Minor BWV 883 (Fis-Moll ∙ Fa Dièse Mineur)8:54255263Glen WilsonHarpsichord119-3Prelude And Fugue No. 15 In G Major BWV 884 (G-Dur ∙ Sol Majeur)4:25255263Glen WilsonHarpsichord119-4Prelude And Fugue No. 16 In G Minor BWV 885 (G-Moll ∙ Sol Mineur)6:08255263Glen WilsonHarpsichord119-5Prelude And Fugue No. 17 In E Flat Major BWV 886 (Es-Dur ∙ Mi Bémol Majeur)6:56255263Glen WilsonHarpsichord119-6Prelude And Fugue No. 18 In G Sharp Minor BWV 887 (Gis-Moll ∙ Sol Dièse Mineur)7:10255263Glen WilsonHarpsichord119-7Prelude And Fugue No. 19 In A Major BWV 888 (A-Dur ∙ La Majeur)3:45255263Glen WilsonHarpsichord119-8Prelude And Fugue No. 20 In A Minor BWV 889 (A-Moll ∙ La Mineur)4:20255263Glen WilsonHarpsichord119-9Prelude And Fugue No. 21 In B Flat Major BWV 890 (B-Dur ∙ Si Bémol Majeur)7:10255263Glen WilsonHarpsichord119-10Prelude And Fugue No. 22 In B Flat Minor BWV 891 (B-Moll ∙ Si Bémol Mineur)8:37255263Glen WilsonHarpsichord119-11Prelude And Fugue No. 23 In B Major BWV 892 (H-Dur ∙ Si Majeur)5:45255263Glen WilsonHarpsichord119-12Prelude And Fugue No. 24 In B Minor BWV 893 (H-Moll ∙ Si Mineur)4:12255263Glen WilsonHarpsichordPreludes, Fantasias & Fugues BWV 894, 900, 902A, 904, 924-927, 929-931, 937, 939, 940 & 994Prelude And Fugue In A Minor BWV 89410:53834518Zuzana RůžičkováHarpsichord120-1Praeludium5:58120-2Fuga4:55Prelude And Fughetta In E Minor BWV 9004:09834518Zuzana RůžičkováHarpsichord120-3Praeludium1:20120-4Fughetta2:49120-5Prelude In G Major BWV 902a1:04834518Zuzana RůžičkováHarpsichordFantasia And Fugue In A Minor BWV 90410:21834518Zuzana RůžičkováHarpsichord120-6Fantasia4:59120-7Fuga5:22Preludes From The Clavier-Büchlein Vor W.F. Bach7:45834518Zuzana RůžičkováHarpsichord120-8Prelude In C Major BWV 9240:54120-9Prelude In D Major BWV 9250:55120-10Prelude In D Minor BWV 9261:09120-11Prelude In F Major BWV 9270:43120-12Prelude In F Major BWV 9281:19120-13Prelude In G Minor BWV 9301:44120-14Prelude In A Minor BWV 9311:01120-15Prelude In E Major BWV 9371:39834518Zuzana RůžičkováHarpsichord120-16Prelude In C Major BWV 9390:32834518Zuzana RůžičkováHarpsichord120-17Prelude In D Minor BWV 9401:10834518Zuzana RůžičkováHarpsichord120-18Applicatio In C Major BWV 9940:52834518Zuzana RůžičkováHarpsichordPreludes, Fantasias & Fugues BWV 933-936, 938, 941-944, 955, 958-959 Sonata, BWV 963 ∙ Capriccio, BWV 993Preludes BWV 933-9368:24834518Zuzana RůžičkováHarpsichord121-1Prelude In C Major BWV 9331:38121-2Prelude In C Minor BWV 9341:49121-3Prelude In D Minor BWV 9351:43121-4Prelude In D Major BWV 9363:14121-5Prelude In E Minor BWV BWV 9381:51834518Zuzana RůžičkováHarpsichordPreludes BWV 941-9433:27834518Zuzana RůžičkováHarpsichord121-6Prelude In E Minor BWV 9410:34121-7Prelude In A Minor BWV 9420:47121-8Prelude In C Major BWV 9432:06Fantasia And Fugue In A Minor BWV 9448:11834518Zuzana RůžičkováHarpsichord121-9Fantasia1:24121-10Fuga6:47121-11Fugue In B Flat Major BWV 9555:16834518Zuzana RůžičkováHarpsichordFugues In A Minor BWV 958 & 9596:24834518Zuzana RůžičkováHarpsichord121-12Fugue In A Minor BWV 9583:09121-13Fugue In A Minor BWV 9593:15Sonata In D Major BWV 96310:17834518Zuzana RůžičkováHarpsichord121-14[Allegro]3:08121-15[Adagio]1:02121-16[Fugato]2:47121-17Adagio1:08121-18"Thema All'Imitatio Gallina Cucu"2:12121-19Capriccio In E Major BWV 993 (In Honorem Johann Christoph Bachii)5:59834518Zuzana RůžičkováHarpsichordToccatas, BWV 910-916Toccata In D Major BMV 91210:35898398Bob van AsperenHarpsichord122-1[Presto]0:25122-2Allegro2:16122-3Adagio1:33122-4[Fugato]2:17122-5Con Discrezione ∙ Presto1:16122-6[Fuga]3:00Toccata In E Minor BMV 9145:53898398Bob van AsperenHarpsichord122-7[Praeludium]0:24122-8Un Poco Allegro1:20122-9Adagio1:24122-10Fuga, Allegro2:57Toccata In F Sharp Minor BMV 91010:07898398Bob van AsperenHarpsichord122-11[Passagio]0:55122-12[Adagio]1:35122-13Presto E Staccato2:35122-14[Arioso]2:21122-15[Fuga]2:53Toccata In G Major BMV 9167:49898398Bob van AsperenHarpsichord122-16[Vivace]2:18122-17Adagio2:17122-18Allegro E Presto3:25Toccata In C Minor BMV 9119:53898398Bob van AsperenHarpsichord122-19[Passagio]0:45122-20Adagio1:46122-21Allegro ∙ Adagio ∙ Allegro ∙ Adagio ∙ Presto7:33Toccata In D Minor BMV 91312:27898398Bob van AsperenHarpsichord122-22[Passagio]0:38122-23[Adagio]1:35122-24Thema3:24122-25[Adagissimo ∙ Arioso]2:33122-26[Fuga], Allegro4:28Toccata In G Minor BMV 9158:25898398Bob van AsperenHarpsichord122-27[Passagio] ∙ Adagio0:57122-28Allegro2:04122-29Adagio0:55122-30Fuga ∙ [Passagio ∙ Adagio]4:29Chromatic Fantasia And Fugue, BWV 903 Aria Variata, BWV 989 14 Canons, BWV 1087 Suite, BWV 823, Etc.Chromatic Fantasia And Fugue In D Minor BWV 90311:19845763Gustav LeonhardtHarpsichord123-1Fantasia2:37123-2Recitativo2:51123-3Fuga5:57Prelude And Fugue In A Minor BWV 8952:44845763Gustav LeonhardtHarpsichord, Organ123-4Praeludium0:54123-5Fuga1:50123-6Fugue In C Major BWV 9522:07845763Gustav LeonhardtHarpsichord, OrganSuite In F Minor BWV 8236:33845763Gustav LeonhardtHarpsichord, Organ123-7Prelude2:20123-8Sarabande En Rondeau2:27123-9Gigue1:46Capriccio On The Departure Of His Most Beloved Brother BWV 992 = Capriccio Sopra La Lontananza Del Suo Fratello Dilettissimo ∙ Capriccio Über Die Abreise Seine Geliebsteten Bruders ∙ Capriccio12:54845763Gustav LeonhardtHarpsichord, Organ123-10Adagio. Ist Eine Schmeichelung Der Freunde, Um Denselben Von Seiner Reise Abzuhalten2:34123-11Ist Eine Vorstellung Unterschiedlicher Cassum, Die Ihm In Der Fremde Könnten Vorfallen2:07123-12Adagioissimo. Ist Ein Allgemeines Lamento Der Freunde2:59123-13Allhier Kommen Die Freunde (Weil Sie Doch Sehen, Daߟ Es Anders Nicht Sein Kann) Und Nehmen Abstand1:05123-14Aria Di Postiglione. Allegro Poco1:24123-15Fuga All'Imitatione Di Posta2:45123-16Aria Variata Alla Maniera Italiana In A Minor BWV 98915:42255263Glen WilsonHarpsichord123-1714 Canons BWV 1087 (On The First Eight Notes Of The Ground Of The Goldberg Variations)9:22255263Glen WilsonHarpsichordItalian Concerto, BWV 971 Overture, BWV 831Italian Concerto In F Major BWV 97112:25961594Scott Ross (4)Harpsichord124-1[Allegro Moderato]4:11124-2Andante4:09124-3Presto4:14Overture [Partita] in B Minor BWV 83127:26961594Scott Ross (4)Harpsichord124-4Ouverture7:02124-5Courante2:00124-6Gavotte I & II3:25124-7Passepied I & II2:51124-8Sarabande3:10124-9Bourrée I & II2:56124-10Gigue2:55124-11Echo3:07Goldberg Variations, BWV 988125-1Aria2:24845763Gustav LeonhardtHarpsichordVariations Nos. 1-3042:46845763Gustav LeonhardtHarpsichord125-2Var. 1 A 1 Clav.1:31125-3Var. 2 A 1 Clav.1:00125-4Var. 3 Canone All'Unisono A 1 Clav.1:03125-5Var. 4 A 1 Clav.0:35125-6Var. 5 A 1 Overo 2 Clav.1:01125-7Var. 6 Canone Alla Seconda A 1 Clav.0:56125-8Var. 7 Al Tempo Di Giga A 1 Overo 2 Clav.1:03125-9Var. 8 A 2 Clav.1:22125-10Var. 9 Canone Alla Terza A 1 Clav.1:05125-11Var. 10 Fughetta A 1 Clav.0:54125-12Var. 11 A 2 Clav.1:26125-13Var. 12 Canone Alla Quarta1:50125-14Var. 13 A 2 Clav.2:52125-15Var. 14 A 2 Clav.1:20125-16Var. 15 Canone Alla Quinta A 1 Clav.2:40125-17Var. 16 A 2 Clav.1:32125-18Var. 17 A 2 Clav.1:04125-19Var. 18 Canone Alla Sexta A 1 Clav.0:46125-20Var. 19 A 1 Clav.0:55125-21Var. 20 A 2 Clav.1:14125-22Var. 21 Canone Alla Settima2:07125-23Var. 22 Alla Breve A 1 Clav.0:48125-24Var. 23 A 2 Clav.1:22125-25Var. 24 Canone All'Ottava A 1 Clav.1:58125-26Var. 25 A 2 Clav.4:22125-27Var. 26 A 2 Clav.1:10125-28Var. 27 Canone Alla Nona1:03125-29Var. 28 A 2 Clav.1:30125-30Var. 29 A 1 Ovvero 2 Clav.1:09125-31Var. 30 Quodlibet A 1 Clav.1:08125-32Aria2:33845763Gustav LeonhardtHarpsichordSonatas, BWV 964-966 & 968 Fugue, BWV 954Sonata In D Minor BWV 964 (After Sonata For Violin Solo BWV 1003)18:1495537Johann Sebastian BachBach [?]Arranged By969701Andreas StaierHarpsichord126-1Adagio3:27126-2Fuga, Allegro5:51126-3Andante4:19126-4Allegro4:48Sonata In A Minor BWV 965 (After Reincken's Hortus Musicus, Nos. 1-5)17:33969701Andreas StaierHarpsichord126-5Adagio2:03126-6Fuga, Allegro3:55126-7Adagio0:39126-8Presto0:37126-9Allemande3:28126-10Courante1:58126-11Sarabande1:56126-12Gigue3:08Sonato In C Major BWV 966 (After Reincken's Hortus Musicus, Nos. 11-15)17:07969701Andreas StaierHarpsichord126-13Praeludium2:1795537Johann Sebastian BachArranged By126-14Fuga3:0995537Johann Sebastian BachArranged By126-15Adagio0:5895537Johann Sebastian BachArranged By126-16(Allegro)0:3295537Johann Sebastian BachArranged By126-17Allemande3:2595537Johann Sebastian BachArranged By126-18Courante1:18969701Andreas StaierArranged By126-19Sarabande1:36969701Andreas StaierArranged By126-20Gigue3:58969701Andreas StaierArranged BySonata In G Major BWV 968 (After Sonata For Violin Solo 1005/1)19:25969701Andreas StaierHarpsichord126-21Adagio3:2495537Johann Sebastian BachArranged By126-22Fuga8:45969701Andreas StaierArranged By126-23Largo2:51969701Andreas StaierArranged By126-24Allegro Assai4:28969701Andreas StaierArranged By126-25Fugue In B Flat Major BWV 954 (After Reincken's Hortus Musicus, No. 6)3:41969701Andreas StaierHarpsichordPreludes & Fughettas BWV 833, 846A, 847A, 851A, 855A, 896, 899, 901, 902, 906, 917, 918, 921, 922 & 929Prelude And Partita In F Major BWV 833 (Praeludium Et Partita Del Tuono Terzo)9:141430001Michele BarchiHarpsichord127-1Praeludium, Andante1:11127-2Allemande2:51127-3Courante1:58127-4Sarabande1:08127-5Double, Allegro0:44127-6Air, Allegro1:22Prelude And Fugue In A Major BWV 8962:411430001Michele BarchiHarpsichord127-7Praeludium0:43127-8Fuga1:58Prelude And Fughetta In D Minor BWV 8992:301430001Michele BarchiHarpsichord127-9Praeludium1:30127-10Fuga1:00Prelude And Fughetta In F Major BWV 9012:091430001Michele BarchiHarpsichord127-11Praeludium1:04127-12Fughetta1:05Prelude And Fughetta In G Major BWV 9026:491430001Michele BarchiHarpsichord127-13Praeludium5:48127-14Fughetta1:01Fantasia And Fugue In C Minor BWV 9068:301430001Michele BarchiHarpsichord127-15Fantasia4:50127-16Fuga3:40Preludes BWV 921, 922 & 9299:061430001Michele BarchiHarpsichord127-17Prelude [Fantasia] In C Minor BWV 9212:26127-18Prelude [Fantasia] In A Minor BWV 9225:56127-19Prelude [Minuet-Trio] In G Minor BWV 929 (Clavier-Büchlein Von W. F. Bach)0:44Fantasias BWV 917 & 9186:11127-20Fantasia in G Minor BWV 9171:511430001Michele BarchiHarpsichord127-21Fantasia in C Minor BWV 9184:20969701Andreas StaierHarpsichordPreludes BWV 846a, 847a, 851a & 855a3:563462414Olivier BaumontClavichord127-22Prelude In C Major BWV 846a (Clavier-Büchlein Von W. F. Bach)1:29127-23Prelude In C Minor BWV 847a (Clavier-Büchlein Von W. F. Bach)1:00127-24Prelude In D Minor BWV 851a (Clavier-Büchlein Von W. F. Bach)0:53127-25Prelude In E Minor BWV 855a1:20Suites, BWV 822 & 832 Fugues, BWV 946-951, 953 & 961, Etc.Suite In G Minor BWV 82212:271430001Michele BarchiHarpsichord128-1Ouverture3:29128-2Aria3:19128-3Gavotte En Rondeau1:14128-4Bourrée0:59128-5Menuett I ∙ Menuett II ∙ Menuett III3:12128-6Gigue1:37128-7Allemande In G Minor BWV 836 (Clavier-Büchlein Von W. F. Bach)1:471430001Michele BarchiHarpsichord128-8Minuet In C Minor BWV 813a0:561430001Michele BarchiHarpsichordSuite [Partita] In A Major BWV 8328:381430001Michele BarchiHarpsichord128-9Allemande2:30128-10Air Pour Le Trompettes2:34128-11Sarabande1:26128-12Bourrée0:55128-13Gigue1:13Fugues, BWV 946-95017:441430001Michele BarchiHarpsichord128-14Fugue In C Major BWV 946 (After Albinoni)2:13128-15Fugue In A Minor BWV 9473:26128-16Fugue In D Minor BWV 9483:54128-17Fugue In A Major BWV 9493:55128-18Fugue In A Major BWV 950 (After Albinoni)4:16128-19Prelude In B Minor BWV 9233:041430001Michele BarchiHarpsichordFugues BWV 951 & 9536:581430001Michele BarchiHarpsichord128-20Fugue In B Minor BWV 951 (After Albinoni)5:32128-21Fugue In C Major BWV 853 (Clavier-Büchlein Von W. F. Bach)1:26128-22Fughetta In C Minor BWV 9611:331430001Michele BarchiHarpsichord128-23Sonata In A Minor BWV 967 (First Movement)3:051430001Michele BarchiHarpsichordConcertos After Vivaldi BWV 972, 973, 975, 976, 978 & 980Concerto In D Major BWV 972 (After L'Estro Armonico, Op. 3, No. 9)7:443462414Olivier BaumontHarpsichord129-1[Allegro]2:14129-2[Allegro]3:11129-3Allegro2:19Concerto In G Major BWV 973 (After Concerti A Cinque Stromenti, Op. 7, No. 2)6:413462414Olivier BaumontHarpsichord129-4[Allegro]2:31129-5Largo1:52129-6Allegro2:18Concerto In G Minor BWV 975 (After La Stravaganza, Op. 4, No. 6)7:283462414Olivier BaumontHarpsichord129-7[Allegro]3:00129-8Largo2:48129-9Giga, Presto1:40Concerto In C Major BWV 976 (After L'Estro Armonico, Op. 3, No. 12)9:273462414Olivier BaumontHarpsichord129-10[Allegro]3:36129-11Largo2:39129-12Largo3:12Concerto In F Major BWV 978 (After L'Estro Armonico, Op. 3, No. 3)7:103462414Olivier BaumontHarpsichord129-13Allegro2:28129-14Largo2:08129-15Largo2:34Concerto In G Major BWV 980 (After La Stravaganza, Op. 4, No. 1)9:233462414Olivier BaumontHarpsichord129-16[Allegro]4:17129-17Largo2:48129-18Largo2:18Concertos After Various Composers BWV 974, 977, 979 & 981-987Concerto In D Minor BWV 974 (After Alessandro Marcello, Oboe Concerto No. 2, In Concerti A Cinque, Amsterdam C. 1717)10:091430001Michele BarchiHarpsichord130-1[Allegro]2:45130-2Adagio3:32130-3Presto3:52Concerto In C Major BWV 977 (Source Unknown, Vivaldi?)5:591430001Michele BarchiHarpsichord130-4[Allegro]2:30130-5Adagio1:11130-6Giga2:18Concerto In B Minor BWV 979 (After Giuseppe Torelli, Violin Concerto In D Minor)10:211430001Michele BarchiHarpsichord130-7[Adagio] ∙ Allegro1:18130-8Adagio0:51130-9Allegro3:06130-10Andante1:02130-11Adagio0:49130-12Allegro3:15Concerto In C Minor BWV 981 (After A Violin Concerto By Benedetto Marcello)10:441430001Michele BarchiHarpsichord130-13Adagio2:13130-14Vivace1:55130-15[Grave]2:26130-16Prestissimo4:10Concerto In B Flat Major BWV 982 (After Duke Johann Ernst Of Saxe-Weimar, Six Concerts)7:15793064Georg Philipp TelemannEdited By1430001Michele BarchiHarpsichord130-17[Allegro]2:16130-18Adagio3:25130-19[Allegro]1:41Concerto In G Minor BWV 983 (Source Unknown)7:421430001Michele BarchiHarpsichord130-20[Allegro]3:06130-21Adagio2:38130-22Allegro1:58Concerto In C Major BWV 984 (After Duke Johann Ernst Of Saxe-Weimar, Six Concerts)7:21793064Georg Philipp TelemannEdited By1430001Michele BarchiHarpsichord130-23[Allegro]2:39130-24Adagio E Affetuoso2:10130-25Allegro Assai2:32Concerto In G Minor BWV 985 (After Georg Philipp Teleman)6:481430001Michele BarchiHarpsichord130-26[Allegro]2:29130-27Adagio1:52130-28Allegro2:27Concerto In G Major BWV 986 (Source Unknown)4:411430001Michele BarchiHarpsichord130-29[Allegro]2:01130-30Adagio1:18130-31Allegro1:22Concerto In D Minor BWV 987 (Source Unknown)6:191430001Michele BarchiHarpsichord130-32[Adagio ∙ Presto]2:29130-33Allegro2:18130-34Adagio0:27130-35Vivace1:05Chamber MusicWorks For LuteSuite In G Minor BWV 995 (G-Moll ∙ Sol Mineur For Lute)24:431430001Michele BarchiHarpsichord [Lute Harpsichord]1430000Luca PiancaLute131-1Prelude6:26131-2Allemande5:04131-3Courante2:35131-4Sarabande3:55131-5Gavotte I ∙ Gavotte II En Rondeau4:24131-6Gigue2:25Suite In E Minor BWV 996 (E-Moll ∙ Mi Mineur For Lute Harpsichord)15:091430001Michele BarchiHarpsichord [Lute Harpsichord]1430000Luca PiancaLute131-7Praeludio (Passagio ∙ Presto)2:20131-8Allemande3:23131-9Courante2:04131-10Sarabande3:32131-11Bourrée1:17131-12Gigue2:33Suite In C Minor BWV 997 (C-Moll ∙ Ut Mineur For Lute Harpsichord (Fuga, Double), Lute (Prelude, Sarabande, Gigue))17:391430001Michele BarchiHarpsichord [Lute Harpsichord]1430000Luca PiancaLute131-13Prelude3:14131-14Fuga5:33131-15Sarabande5:32131-16Gigue ∙ Double3:20Prelude, Fugue And Allegro In E-Flat Major BWV 998 (Es-Dur ∙ Mi Bémol Majeur For Harpsichord)10:031430001Michele BarchiHarpsichord1430000Luca PiancaLute132-1Prelude2:27132-2Fuga4:44132-3Allegro2:52132-4Prelude In C Minor BWV 999 (C-Moll ∙ Ut Mineur For Lute)1:351430001Michele BarchiHarpsichord1430000Luca PiancaLute132-5Fugue In G Minor BWV 1000 (G-Moll ∙ Sol Mineur For Lute)5:191430001Michele BarchiHarpsichord1430000Luca PiancaLuteSuite In E Major BWV 1006a (E-Dur ∙ Mi Majeur For Lute)21:381430001Michele BarchiHarpsichord1430000Luca PiancaLute132-6Prelude4:25132-7Loure5:39132-8Gavotte En Randeau3:22132-9Menuet I1:53132-10Menuet II1:50132-11Bourrée2:03132-12Gigue2:26Violin Sonatas & PartitasPartita No. 1 In B Minor BWV 1002 (H-Moll ∙ Si Mineur)24:27857108Thomas ZehetmairViolin133-1Allemande ∙ Double7:29133-2Courante ∙ Double (Presto)5:42133-3Sarabande ∙ Double5:40133-4Tempo Di Borea ∙ Double5:46Sonata No. 1 In G Minor BWV 1001 (G-Moll ∙ Sol Mineur)13:58857108Thomas ZehetmairViolin133-5Adagio3:15133-6Fuga (Allegro)4:47133-7Siciliana2:36133-8Presto3:26Sonata No. 2 In A Minor BWV 1003 (A-Moll ∙ La Mineur)18:32857108Thomas ZehetmairViolin133-9Grave3:11133-10Fuga7:04133-11Andante3:16133-12Allegro5:01Partita No. 2 In D Minor BWV 1004 (D-Moll ∙ Ré Mineur)25:26857108Thomas ZehetmairViolin134-1Allemande4:51134-2Courante2:03134-3Sarabande3:17134-4Gigue3:57134-5Ciaccona11:28Sonata No. 3 In C Major BWV 1005 (C-Dur ∙ Ut Majeur)20:47857108Thomas ZehetmairViolin134-6Adagio3:31134-7Fuga9:46134-8Largo2:39134-9Allegro Assai5:02Partita No. 3 In E Major BWV 1006 (E-Dur ∙ Mi Majeur)15:21857108Thomas ZehetmairViolin134-10Preludio3:38134-11Loure3:19134-12Gavotte En Rondeau2:29134-13Menuet I ∙ Menuet II2:54134-14Bourrée1:18134-15Gigue1:43Cello SuitesSuite No. 1 In G Major BWV 1007 (G-Dur ∙ Sol Majeur)18:07716084Nikolaus HarnoncourtCello135-1Prelude2:18135-2Allemande5:12135-3Courante2:38135-4Sarabande2:38135-5Menuet I1:25135-6Menuet II2:12135-7Gigue1:50Suite No. 2 In D Minor BWV 1008 (D-Moll ∙ Ré Mineur)20:18716084Nikolaus HarnoncourtCello135-8Prelude3:01135-9Allemande3:51135-10Courante2:23135-11Sarabande4:12135-12Menuet I1:35135-13Menuet II2:18135-14Gigue3:05Suite No. 3 In C Major BWV 1009 (C-Dur ∙ Ut Majeur)23:12716084Nikolaus HarnoncourtCello135-15Prelude3:16135-16Allemande5:21135-17Courante3:03135-18Sarabande3:54135-19Bourrée I1:37135-20Bourrée II2:24135-21Gigue3:37Suite No. 4 In E Flat Major BWV 1010 (Es-Dur ∙ Mi Bémol Majeur)25:13716084Nikolaus HarnoncourtCello136-1Prelude3:44136-2Allemande4:27136-3Courante3:48136-4Sarabande3:45136-5Bourrée I3:25136-6Bourrée II2:35136-7Gigue3:35Suite No. 5 In C Minor BWV 1011 (C-Moll ∙ Ut Mineur)25:06716084Nikolaus HarnoncourtCello136-8Prelude6:08136-9Allemande5:08136-10Courante3:02136-11Sarabande3:06136-12Gavotte I2:41136-13Gavotte II2:48136-14Gigue2:20Suite No. 6 In D Major BWV 1012 (D-Dur ∙ Ré Majeur)28:16716084Nikolaus HarnoncourtCello136-15Prelude4:43136-16Allemande6:19136-17Courante4:19136-18Sarabande4:19136-19Gavotte I1:50136-20Gavotte II2:20136-21Gigue4:26Violin SonatasSonata No. 1 In B Minor BWV 1014 (H-Moll ∙ Si Mineur)11:58852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-1Adagio2:54137-2Allegro2:50137-3Andante2:52137-4Allegro3:30Sonata No. 2 In A Major BWV 1015 (A-Dur ∙ La Majeur)13:33852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-5[Adagio]2:45137-6Allegro3:07137-7Andante Un Poco3:07137-8Presto4:42Sonata No. 3 In E Major BWV 1016 (E-Dur ∙ Mi Majeur)14:45852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-9Adagio3:33137-10Allegro2:49137-11Adagio Ma Non Tanto4:38137-12Allegro3:54Sonata No. 4 In C Minor BWV 1017 (C-Moll ∙ Ut Mineur)15:07852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-13Largo3:28137-14Allegro4:26137-15Adagio2:31137-16Allegro4:50Sonata No. 5 In F Minor BWV 1018 (F-Moll ∙ Fa Mineur)14:59852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-17[Lamento]5:34137-18Allegro4:23137-19Adagio2:40137-20Vivace2:22Sonata No. 6 In G Major BWV 1019 (G-Dur ∙ Sol Majeur)16:14852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin138-1Allegro3:33138-2Largo1:26138-3Allegro4:57138-4Adagio3:02138-5Allegro3:23Sonata In G Major BWV 1019a (G-Dur ∙ Sol Majeur)16:15838289Susan SheppardCello962521Davitt MoroneyHarpsichord, Organ [Chamber Organ]883952John HollowayViolin138-6Adagio1:39138-7Cantabile, Ma Un Poco Adagio6:37138-8[Harpsichord Solo]5:36138-9Violino Solo E Basso L'Accompagnato (Violin Part Reconstructed After Partita BWV 830)2:23Sonata In G Major BWV 1021 (G-Dur ∙ Sol Majeur)8:40838289Susan SheppardCello962521Davitt MoroneyHarpsichord, Organ [Chamber Organ]883952John HollowayViolin138-10Adagio3:58138-11Vivace1:08138-12Largo2:13138-13Presto1:21Sonata In E Minor BWV 1023 (E-Moll ∙ Mi Mineur)11:00838289Susan SheppardCello Banjo962521Davitt MoroneyHarpsichord, Organ [Chamber Organ]883952John HollowayViolin138-14[Prelude] ∙ Adagio Ma Non Troppo4:18138-15Allemanda3:46138-16Gigue2:56Trio In A Major BWV 1025 (A-Dur ∙ La Majeur) (For Violin And Harpsichord)32:26842914Gerald HambitzerHarpsichord1111209Werner EhrhardtViolin139-1Fantasia2:26139-2Courante6:08139-3Entrée4:34139-4Rondeau4:39139-5Sarabande5:29139-6Menuett3:55139-7Allegro5:27139-8Fugue In G Minor BWV 1026 (G-Moll ∙ Sol Mineur) (For Violin And Basso Continuo)4:51842914Gerald HambitzerHarpsichord1111209Werner EhrhardtViolinSonatas For Viola Da Gamba BWV 1027-1029Sonata No. 1 In G Major BWV 1027 (G-Dur ∙ Sol Majeur)12:04852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba139-9Adagio3:09139-10Allegro Ma Non Tanto3:40139-11Andante2:09139-12Allegro Moderato3:13Sonata No. 2 In D Major BWV 1028 (D-Dur ∙ Ré Majeur)13:27852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba139-13Adagio1:47139-14Allegro3:42139-15Andante3:47139-16Allegro4:19Sonata No. 3 In G Minor BWV 1029 (G-Moll ∙ Sol Mineur)14:06852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba139-17Vivace5:35139-18Adagio4:50139-19Allegro3:41Flute Sonatas BWV 1030, 1032, 1034, 1035, 1038 & 1039Sonata In B Minor BWV 1030 (H-Moll ∙ Si Mineur)15:54716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-1Andante7:06140-2Largo E Dolce3:01140-3Presto5:53Sonata In A Major BWV 1032 (A-Dur ∙ La Majeur)12:24716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-4Vivace5:18140-5Largo E Dolce2:48140-6Allegro4:25Sonata In E Minor BWV 1034 (E-Moll ∙ Mi Mineur)14:25716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-7Adagio Ma Non Tanto3:19140-8Allegro2:39140-9Andante3:06140-10Allegro5:21Sonata In E Major BWV 1035 (E-Dur ∙ Mi Majeur)11:47716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-11Adagio Ma Non Tanto2:18140-12Allegro3:18140-13Siciliano2:56140-14Allegro Assai3:15Sonata For Flute, Violin And Continuo In G Major BWV 1038 (G-Dur ∙ Sol Majeur)7:40716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord962494Alice HarnoncourtViolin140-15Largo3:08140-16Vivace0:50140-17Adagio2:20140-18Presto1:22Sonata For 2 Flutes And Continuo In G Major BWV 1039 (G-Dur ∙ Sol Majeur)12:53716084Nikolaus HarnoncourtCello870792Frans BrüggenFlute [Transverse Flute]963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-19Adagio3:35140-20Allegro Ma Non Presto3:45140-21Adagio E Piano2:27140-22Presto3:06Canons, BWV 1080/19, 1072-1078, 1086 Flute Sonatas, BWV 1013, 1031, 1033141-1Fuga A 3 Soggetti From The Art Of Fugue BWV 1080/19 (From Art Of Fugue ∙ Aus Die Kunst Der Fuge ∙ De L'Art La Fugue)6:53836664Tini MathotHarpsichord836665Ton KoopmanHarpsichord141-2Canon BWV 1072 (Canon Trias Harmonica)0:46837582Musica Antiqua KölnEnsemble141-3Canon BWV 1073 (Canon A 4. Voc: Perpetuus)1:41837582Musica Antiqua KölnEnsemble141-4Canon BWV 1074 (Canon A 4)1:53837582Musica Antiqua KölnEnsemble141-5Canon BWV 1075 (Conon A 2. Perpetuus)0:37837582Musica Antiqua KölnEnsemble141-6Canon BWV 1076 (Canon Triplex À 6 Voc:)0:33837582Musica Antiqua KölnEnsemble141-7Canon BWV 1077 (Canone Doppio Sopr'il Soggetto)0:53837582Musica Antiqua KölnEnsemble141-8Canon BWV 1078 (Canon Super Fa Mi, A 7. Post Tempus Musicum)1:38837582Musica Antiqua KölnEnsemble141-9Canon BWV 1086 (Canon Concordia Discors)1:23837582Musica Antiqua KölnEnsemblePartita In A Minor BWV 1013 (A-Moll ∙ La Mineur) (For Solo Flute)10:49379816Jean-Pierre RampalFlute434124Robert Veyron-LacroixHarpsichord837875Jordi SavallViola da Gamba141-10Allemande3:05141-11Corrente2:11141-12Sarabande3:59141-13Bourrée Anglaise1:34Sonata In E Flat Major BWV 1031 (Es-Dur ∙ Mi Bémol Majeur) (For Flute And Harsichord)10:22379816Jean-Pierre RampalFlute434124Robert Veyron-LacroixHarpsichord837875Jordi SavallViola da Gamba141-14Allegro Moderato3:40141-15Sicilienne2:31141-16Allegro4:17Sonata In C Major BWV 1033 (C-Dur ∙ Ut Majeur) (For Flute And Basso Continuo)8:08379816Jean-Pierre RampalFlute434124Robert Veyron-LacroixHarpsichord837875Jordi SavallViola da Gamba141-17Andante0:54141-18Presto0:37141-19Allegro2:14141-20Adagio1:54141-21Menuet2:29A Musical Offering, BWV 1079A Musical Offering BWV 1079 (Musikalisches Opfer ∙ L'Offrande Musicale)46:38716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble142-1Ricercare A 36:06142-2Canon Perpetuus Super Thema Regium0:58142-3Canones Diversi Super Thema Regium: Canon A 20:58142-4Canones Diversi Super Thema Regium: Canon A 2 Violini In Unisono0:57142-5Canones Diversi Super Thema Regium: Canon A 2 Per Motum Contrarium0:40142-6Canones Diversi Super Thema Regium: Canon A 2 Per Augmentationem, Contrario Motu1:53142-7Canones Diversi Super Thema Regium: Canon A 2 Per Tonos2:24142-8Fuga Canonica In Epidiapente1:52142-9Ricercare A 67:11142-10Canon A 21:17142-11Canon A 42:04142-12Trio: Largo5:52142-13Trio: Allegro6:24142-14Trio: Andante2:48142-15Trio: Allegro3:07142-16Canon Perpetuus1:41The Art Of Fugue, BWV 1080Art Of Fugue BWV 1080 (Die Kunst Der Fuge ∙ L'Art De La Fugue) (Organ Version By / Orgelfassung Von / Version Pour Orgue De Herbert Tachezi)72:36852433Herbert TacheziOrgan143-1Contrapunctus 13:08143-2Contrapunctus 23:10143-3Contrapunctus 32:52143-4Contrapunctus 45:18143-5Contrapunctus 53:11143-6Contrapunctus 6 (A 4, Im Stile Francese)4:05143-7Contrapunctus 7 (A 4, Per Augmentationem Et Diminutionem)3:59143-8Contrapunctus 8 (A 3)6:00143-9Contrapunctus 9 (A 4, Alla Duodecima)2:58143-10Contrapunctus 10 (A 4, Alla Decima)4:20143-11Contrapunctus 11 (A 4)7:10143-12Canon Alla Ottava2:51143-13Canon Alla Duodecima (In Contrapuncto Alla Quinta)2:15143-14Canon Alla Decima (Contrapuncto Alla Terza)4:40143-15Canon (Per Augmentationem In Contrario Muto)4:30143-16Contrapunctus 13, A 3 (A) Rectus)2:50143-17Contrapunctus 13, A 3 (B) Inversus)2:53143-18Contrapunctus 12, A 4 (A) Rectus)2:50143-19Contrapunctus 12, A 4 (B) Inversus)3:00Orchestral WorksViolin Concertos, BWV 1041-1043, 1056R & 1060RConcerto For Two Violins BWV 1043 (In D Major ∙ D-Dur ∙ Ré Majeur)16:33716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-1Vivace4:13144-2Largo, Ma Non Tanto7:06144-3Allegro5:14Concerto BWV 1042 (In E Major ∙ E-Dur ∙ Mi Majeur)17:50716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-4Allegro8:21144-5Adagio6:32144-6Allegro Assai2:57Concerto BWV 1041 (In A Minor ∙ A-Moll ∙ La Mineur)14:51716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-7Allegro4:10144-8Andante6:29144-9Allegro Assai4:18Concerto BWV 1056R (In G Minor ∙ G-Moll ∙ Sol Mineur)9:48716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-10[Allegro]3:36144-11Largo2:38144-12Presto3:40Concerto For Oboe And Violin BWV 1060R (In G Minor ∙ G-Moll ∙ Sol Mineur)13:31716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-13Allegro5:12144-14Adagio4:35144-15Allegro3:44Brandenburg ConcertosBrandenburg Concerto No. 1 BWV 1046 (In F Major ∙ F-Dur ∙ Fa Majeur)18:101201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble145-1[Allegro]3:48145-2Adagio3:33145-3Allegro3:52145-41 Menuetto 2 Trio 3 Menuetto 4 Polonaise 5 Menuetto 6 Trio 7 Menuetto7:03Brandenburg Concerto No. 2 BWV 1047 (In F Major ∙ F-Dur ∙ Fa Majeur)10:581201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble145-5[Allegro]4:39145-6Andante3:39145-7Allegro Assai2:40Brandenburg Concerto No. 3 BWV 1048 (In G Major ∙ G-Dur ∙ Sol Majeur)10:451201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble145-8Allegro5:45145-9Adagio0:27145-10Allegro4:33Brandenburg Concerto No. 4 BWV 1049 (In G Major ∙ G-Dur ∙ Sol Majeur)15:081201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble146-1Allegro7:02146-2Andante3:23146-3Presto4:48Brandenburg Concerto No. 5 BWV 1050 (In D Major ∙ D-Dur ∙ Ré Majeur)20:441201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble146-4Allegro10:13146-5Affetuoso5:11146-6Allegro5:20Brandenburg Concerto No. 6 BWV 1051 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)16:301201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble146-7[Allegro]5:57146-8Adagio Ma Non Tanto4:35146-9Allegro5:58Harpsichord ConcertosConcerto BWV 1055 (In A Major ∙ A-Dur ∙ La Majeur)13:30845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-1Allegro4:34147-2Larghetto4:43147-3Allegro Ma Non Tanto4:23Concerto BWV 1056 (In F Minor ∙ F-Moll ∙ Fa Mineur)9:25845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-4[Allegro]3:15147-5Largo2:17147-6Presto4:04Concerto BWV 1054 (In D Major ∙ D-Dur ∙ Ré Majeur)15:55845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-7[Allegro]7:50147-8Adagio E Sempre Piano5:30147-9Allegro2:45Concerto BWV 1053 (In E Major ∙ E-Dur ∙ Mi Majeur)21:03845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-10[Allegro]8:44147-11Siciliano5:03147-12Allegro7:26Concerto For Harpsichord And Two Recorders BWV 1057 (In F Major ∙ F-Dur ∙ Fa Majeur)16:05845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-13[Allegro]6:54147-14Andante4:07147-15Allegro Assai5:04Concerto BWV 1052 (In D Minor ∙ D-Moll ∙ Ré Mineur)22:08716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble148-1Allegro8:04148-2Adagio6:02148-3Allegro8:12Concerto For Three Harpsichords BWV 1063 (In D Minor ∙ D-Moll ∙ Ré Mineur)13:54845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble148-4[Allegro]4:57148-5Alla Siliciana3:53148-6Allegro5:14Concerto For Two Harpsichords BWV 1061 (In C Major ∙ C-Dur ∙ Ut Majeur)18:34845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble148-7[Allegro]7:23148-8Adagio Ovvero Largo (Quartetto Tacet)5:14148-9Fuga Vivace6:07Concerto For Three Harpsichords BWV 1064 (In C Major ∙ C-Dur ∙ Ut Majeur)16:51845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble148-10Allegro6:23148-11Adagio5:49148-12Allegro4:39Concerto For Two Harpsichords BWV 1062 (In C Minor ∙ C-Moll ∙ Ut Mineur)14:41845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-1[Allegro]3:44149-2Andante E Piano6:06149-3Allegro Assai5:01Concerto For Two Harpsichords BWV 1060 (In C Minor ∙ C-Moll ∙ Ut Mineur)14:02845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-4Allegro5:02149-5Largo Ovvero Adagio5:09149-6Allegro4:02Concerto For Four Harpsichords BWV 1065 (In A Minor ∙ A-Moll ∙ La Mineur)10:16845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-7[Allegro]4:35149-8Largo2:10149-9Allegro3:42Concerto BWV 1059R (In D Minor ∙ D-Moll ∙ Ré Mineur)10:52845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-10[Allegro]6:04149-11[Adagio]1:06149-12[Presto]3:52Concerto BWV 1058 (In G Minor ∙ G-Moll ∙ Sol Mineur)13:20845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-13[Allegro]3:36149-14Andante6:19149-15Allegro Assai3:25Orchestral Suites 1 & 2Suite No. 1 BWV 1066 (In C Major ∙ C-Dur ∙ Ut Majeur)27:43716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble150-1Ouverture10:51150-2Courante2:55150-3Gavotte I ∙ Gavotte II3:05150-4Forlane1:20150-5Menuet I ∙ Menuet II3:52150-6Bourrée I ∙ Bourrée II2:13150-7Passepied I ∙ Passepied II3:33Suite No. 2 BWV 1067 (In B Minor ∙ H-Moll ∙ Si Mineur)23:59716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble150-8Ouverture11:37150-9Rondeau1:35150-10Sarabande3:03150-11Bourrée I ∙ Bourrée II1:50150-12Polonaise ∙ Double3:01150-13Menuet1:28150-14Badinerie1:25Orchestral Suites 3 & 4Suite No. 3 BWV 1068 (In D Major ∙ D-Dur ∙ Ré Majeur)23:45716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble151-1Ouverture11:40151-2Air4:39151-3Gavotte I ∙ Gavotte II3:40151-4Bourrée1:10151-5Gigue2:42Suite No. 4 BWV 1069 (In D Major ∙ D-Dur ∙ Ré Majeur)24:12716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble151-6Ouverture13:07151-7Bourrée I ∙ Bourrée II2:17151-8Gavotte1:44151-9Menuet I ∙ Menuet II4:05151-10Réjouissance2:59Concertos And SinfoniasConcertos BWV 1044, 1052R, 1055R & 1045Concerto BWV 1044 (In A Minor ∙ A-Moll ∙ La Mineur)21:57845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble152-1Allegro8:49152-2Adagio Ma Non Tanto E Dolce5:44152-3Alla Breve7:35Concerto For Oboe DÀmore BWV 1055R (In A Major ∙ A-Dur ∙ La Majeur)14:04716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble152-4[Allegro]4:38152-5Larghetto5:07152-6Allegro Ma Non Tanto4:28Concerto For Violin BWV 1052R (In D Minor ∙ D-Moll ∙ Ré Mineur)21:34716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble152-7[Allegro]7:26152-8Adagio6:15152-9Allegro8:02152-10Sinfonia BWV 1045 (In D Major ∙ D-Dur ∙ Ré Majeur)7:02716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsembleSinfonia BWV 1046A Concertos BWV 1050A & 1064RSinfonia BWV 1046a (In F Major ∙ F-Dur ∙ Fa Majeur)13:38779781Christopher HogwoodConductor837442The Academy Of Ancient MusicEnsemble153-1Allegro3:57153-2Adagio3:37153-3Menuetto6:13Brandenburg Concerto No. 5 BWV 1050a (Early Version) (In D Major ∙ D-Dur ∙ Ré Majeur)18:32779781Christopher HogwoodConductor837442The Academy Of Ancient MusicEnsemble153-4Allegro7:52153-5Adagio5:29153-6Allegro5:22Concerto For Three Violins BWV 1064R (In D Major ∙ D-Dur ∙ Ré Majeur)15:24779781Christopher HogwoodConductor837442The Academy Of Ancient MusicEnsemble153-7Allegro5:45153-8Adagio5:31153-9Allegro4:08 + +194VariousThe History Of Classical Music CD 1-50 (1/2)CompilationCompilationClassicalEurope2013-10-11Track 1-1 recorded in May 1996 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1997, format DDD Stereo 44 kHz 24 Bit +Tracks 1-2 to 1-4 recorded in May 1996 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1997, format DDD Stereo +Tracks 1-5 to 1-10 recorded in May 1997 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1998, format DDD Stereo 44 kHz 24 Bit +Tracks 2-1 to 2-2 recorded in May 1996 at Church Of Notre Dame, New York, United States, first publishing 1997, format DDD Stereo +Track 2-3 recorded in May 1996 at Corpus Christi Church, New York, United States, first publishing 1997, format DDD Stereo +Track 2-4 recorded at Corpus Christi Church, New York, United States, first publishing 1996 format DDD Stereo +Tracks 2-5 to 2-10 recorded in April 1999 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 2000, format DDD Stereo 24 Bit +Track 2-11 recorded in December 1992 at Rome, Italy, first publishing 1993, format DDD Stereo +Track 3-1 recorded in July 1994 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1995, format DDD Stereo 44 kHz 24 Bit +Tracks 3-2 to 3-18 recorded in July 1994 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1995, format DDD Stereo +Track 3-19 recorded in July 1994 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1995, format DDD Stereo 44 kHz 24 Bit +Tracks 3-20 to 3-28 recorded in July 1994 at St. Osdag Kirche Mandelsloh, Neustadt, Germany, first publishing 1995, format DDD Stereo +Track 4-1 recorded in July 1989 at King's College, Cambridge, United Kingdom, first publishing 1990, format DDD Stereo +Tracks 4-2 to 4-6 recorded in April 1972 at Schlosskirche, Schleiden, Germany, first publishing 1972, format AAA Stereo +Track 4-7 recorded in December 1992 at Rome, Italy, first publishing 1993, format DDD Stereo +Tracks 4-8 to 4-14 recorded in February 1985 at All Saints' Church, Tooting, London, United Kingdom, first publishing 1986, format DDD Stereo 44 kHz 16 Bit +Tracks 5-1 to 5-8 recorded in November 1972 at Friedrich-Ebert-Halle, Hamburg, Germany, first publishing 1973, format AAA Stereo +Tracks 5-9 to 5-21 recorded in July 1974 at Kirche St. Emmeram, Regensburg, Germany, first publishing 1975, format AAA Stereo +Track 6-1 recorded in September 1988 at St. Giles' Church, Barbican, London, United Kingdom, first publishing 1990, format DDD Stereo +Tracks 6-2 to 6-21 recorded in November 1980 at Plenarsaal Der Akademie Der Wissenschaften, München, Germany, first publishing 1981, format AAA Stereo +Tracks 6-22 to 6-23 recorded in November 1980 at Plenarsaal Der Akademie Der Wissenschaften, München, Germany, first publishing 1981, format AAA Stereo 44 kHz 16 Bit +Tracks 7-1 to 7-8 recorded in October 1967 at Friedrich-Ebert-Halle, Hamburg, Germany, first publishing 1968, format AAA Stereo +Tracks 7-9 to 7-15 recorded in June 1981 at Stadthalle, Göttingen, Germany, first publishing 1982, format DDD Stereo 44 kHz 16 Bit +Tracks 7-16 to 7-17 recorded in November 1980 at Henry Wood Hall, London, United Kingdom, first publishing 1981, format AAA Stereo +Tracks 8-1 to 8-10 recorded in March 1997 at Salle Wagram, Paris, France, first publishing 1997, format DDD Stereo 24 Bit +Tracks 8-11 to 8-27 recorded in June 2003 at Theatre, Salle Molière, Poissy, France, first publishing 2005, format DDD Stereo 48 kHz 24 Bit +Tracks 9-1 to 9-20 recorded in January 1979 at Alter Herkulessaal, Munich, Germany, first publishing 1979, format AAA Stereo +Tracks 9-21 to 9-24 recorded in June 1986 at DeutschlandRadio, Sendesaal, Cologne, Germany, first publishing 1987, format DDD Stereo +Tracks 10-1 to 10-12 recorded in October 1981 at Henry Wood Hall, London, United Kingdom, first publishing 1982, format DDD Stereo 44 kHz 16 Bit +Tracks 10-13 to 10-24 recorded in February 1987 at St. John's Smith Square, London, United Kingdom, first publishing 1988, format DDD Stereo 44 kHz 16 Bit +Tracks 11-1 to 11-3 recorded in June 1986 at DeutschlandRadio, Sendesaal, Cologne, Germany, first publishing 1987, format DDD Stereo +Tracks 11-4 to 11-6 recorded in June 1987 at DeutschlandRadio, Sendesaal, Cologne, Germany, first publishing 1987, format DDD Stereo +Tracks 11-7 to 11-13 recorded in April 1982 at Friedrich-Ebert-Halle, Hamburg, Germany, first publishing 1982, format DDD Stereo 44 kHz 16 Bit +Tracks 12-1 to 12-32 recorded in August 1958 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1959, format AAA Stereo +Tracks 12-33, 12-37, 12-38 recorded in September 1960 at Polydor Studios, Paris, France, first publishing 1961, format AAA Stereo +Tracks 12-34 to 12-36 recorded in September 1959 at Polydor Studios, Paris, France, first publishing 1959, format AAA Stereo +Tracks 13-1 to 13-6, 13-13, 13-14 recorded in June 1983 at Grote Kerk, Maassluis, Netherlands, first publishing 1984, format DDD Stereo +Tracks 13-7 to 13-12 recorded in May 1982 at Waalse Kerk, Amsterdam, Netherlands, first publishing 1983, format DDD Stereo +Tracks 14-1 to 14-16 recorded in April 1988 at "The Maltings", Concert Hall, Snape, United Kingdom, first publishing 1989, format DDD Stereo 44 kHz 16 Bit +Track 15-1 recorded in April 1961 at Musikhochschule, Munich, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 15-2 to 15-11 recorded in April 1961 at München, Hochschule Fur Musik, Grosser Saal, Germany, first publishing 1962, format AAA Stereo +Tracks 15-12 to 15-18 recorded in July 1970 at Residenz, Herkulessaal, Munich, Germany, first publishing 1971, format AAA Stereo +Tracks 15-19 to 15-25 recorded in February 1967 at Residenz, Herkulessaal, Munich, Germany, first publishing 1968, format AAA Stereo +Tracks 16-1 to 16-6 recorded in August 1984 at St. John's Smith Square, London, United Kingdom, first publishing 1985, format DDD Stereo 44 kHz 16 Bit +Tracks 16-7 to 16-11 recorded in March 1984 at Henry Wood Hall, London, United Kingdom, first publishing 1985, format DDD Stereo 44 kHz 16 Bit +Track 16-12 recorded in July 1990 at Henry Wood Hall, London, United Kingdom, first publishing 1991, format DDD Stereo 44 kHz 16 Bit +Tracks 16-13 to 16-17 recorded in November 1985 at St. John's, Smith Square, United Kingdom, first publishing 1986, format DDD Stereo +Tracks 16-18 to 16-20 recorded in November 1985 at Henry Wood Hall, London, United Kingdom, first publishing 1986, format DDD Stereo +Tracks 17-1 to 17-3 recorded in April 1983 at Henry Wood Hall, London, United Kingdom, first publishing 1984, format DDD Stereo +Tracks 17-4 to 17-7 recorded in September 1983 at St. John the Baptist Church, Armitage, United Kingdom, first publishing 1984, format DDD Stereo +Tracks 17-8 to 17-11 recorded in June 1984 at Henry Wood Hall, London, United Kingdom, first publishing 1985, format DDD Stereo +Tracks 17-12 to 17-17 recorded in August 1984 at St. John's, Smith Square, United Kingdom, first publishing 1985, format DDD Stereo 44 kHz 16 Bit +Tracks 18-1 to 18-21 recorded in January 1988 at Abbey Road Studios, London, United Kingdom, first publishing 1988, format DDD Stereo +Tracks 19-1 to 19-14 recorded in October 1986 at New Victoria Theatre, Newcastle-Under-Lyme, Basford, United Kingdom, first publishing 1987, format DDD Stereo 44 kHz 16 Bit +Tracks 20-1 to 20-18 recorded in October 1979 at Henry Wood Hall, London, United Kingdom, first publishing 1980, format AAA Stereo +Tracks 20-19 to 20-21 recorded in January 1987 at Henry Wood Hall, London, United Kingdom, first publishing 1988, format DDD Stereo +Tracks 21-1 to 21-4 recorded in January 1987 at Henry Wood Hall, London, United Kingdom, first publishing 1988, format DDD Stereo +Tracks 21-5 to 21-8 recorded in September 1972 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1973, format DDD Stereo +Tracks 21-9 to 21-12 recorded in October 1971 at Assembly Hall, Barking, London, United Kingdom, first publishing 1972, format AAA Stereo +Tracks 22-1 to 22-4 recorded in March 1974 at Plenarsaal Residenz, Munich, Germany, first publishing 1974, format AAA Stereo 44 kHz 16 Bit +Tracks 22-5 to 22-8 recorded in December 1978 at Alter Herkulessaal, Munich, Germany, first publishing 1979, format AAA Stereo 44 kHz 16 Bit +Tracks 22-9 to 22-12 recorded in September 1963 at Beethovensaal, Hannover, Germany, first publishing 1964, format AAA Stereo 44 kHz 16 Bit +Tracks 23-1 to 23-14 recorded in February 1966 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1969, format AAA Stereo 44 kHz 16 Bit +Tracks 24-1 to 24-4 recorded in October 1974 at Musikvereinssaal, Vienna, Austria, first publishing 1976, format AAA Stereo 44 kHz 16 Bit +Tracks 24-5 to 24-8 recorded in December 1961 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 24-9 to 24-12 recorded in March 1962 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 25-1 to 25-3 recorded in May 1965 at Kleines Festspielhaus, Salzburg, Austria, first publishing 1965, format AAA Stereo +Track 25-4 recorded in January 1962 at UFA-Tonstudio, Berlin, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 25-5 to 25-7 recorded in May 1961 at Neues Festspielhaus, Salzburg, Austria, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 26-1 to 26-4 recorded in December 1975 at Residenz, Herkulessaal, Munich, Germany, first publishing 1976, format AAA Stereo +Tracks 26-5 to 26-8 recorded in September 1969 at Michaelsheim, Berlin, Germany, first publishing 1970, format AAA Stereo +Tracks 27-1 to 27-18 recorded in March 1968 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1968, format AAA Stereo +Tracks 28-1 to 28-14 recorded in October 1961 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 28-15 to 28-19 recorded in June 1960 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 29-1 to 29-9 recorded in February 1962 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1963, format AAA Stereo 44 kHz 16 Bit +Tracks 30-1 to 30-5 recorded in September 1979 at Staatsoper, Vienna (Wien), Austria, first publishing 1980, format AAA Stereo 44 kHz 16 Bit +Tracks 31-1 to 31-3 recorded in May 1978 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1979, format AAA Stereo 44 kHz 16 Bit +Tracks 31-4 to 31-6 recorded in June 1976 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1976, format AAA Stereo 44 kHz 16 Bit +Tracks 32-1 to 32-3 recorded in June 1970 at Conway Hall, London, United Kingdom, first publishing 1970, format AAA Stereo +Tracks 32-4 to 32-7 recorded in May 1959 at Beethovensaal, Hannover, Germany, first publishing 1960, format AAA Stereo 44 kHz 16 Bit +Tracks 33-1 to 33-3 recorded in September 1980 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1981, format DDD Stereo 44 kHz 16 Bit +Tracks 33-4 to 33-6 recorded in June 1973 at Johannesstift, Berlin, Germany, first publishing 1974, format AAA Stereo 44 kHz 16 Bit +Tracks 33-7 to 33-9 recorded in August 1985 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1986, format DDD Stereo +Tracks 34-1 to 34-12 recorded in February 1973 at Lukaskirche, Dresden, Germany, first publishing 1986, format AAA Stereo 44 kHz 16 Bit +Tracks 35-1 to 35-13 recorded in September 1971 at Watford Town Hall, London, United Kingdom, first publishing 1972, format AAA Stereo 44 kHz 16 Bit +Tracks 36-1 to 36-2 recorded in March 1966 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1966, format AAA Stereo 44 kHz 16 Bit +Tracks 36-3 to 36-6 recorded in June 1963 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1963, format AAA Stereo +Tracks 37-1 to 37-5 recorded in June 1965 at Herkules Saal, Munich, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Tracks 37-6 to 37-9 recorded in April 1959 at Beethovensaal, Hannover, Germany, first publishing 1959, format AAA Stereo 44 kHz 16 Bit +Tracks 38-1 to 38-4 recorded in January 1967 at Beethovensaal, Hannover, Germany, first publishing 1967, format AAA Stereo +Tracks 38-5 to 38-6, 38-9 recorded in September 1965 at Beethovensaal, Hannover, Germany, first publishing 1966, format AAA Stereo 44 kHz 16 Bit +Tracks 38-7 to 38-8 recorded in August 1967 at Beethovensaal, Hannover, Germany, first publishing 1968, format AAA Stereo 44 kHz 16 Bit +Tracks 39-1 to 39-24 recorded in January 1979 at Studio Lankwitz, Berlin, Germany, first publishing 1980, format AAA Stereo +Tracks 40-1 to 40-3 recorded in January 1975 at Barking Town Hall, London, United Kingdom, first publishing 1975, format AAA Stereo +Tracks 40-4 to 40-13 recorded in May 1977 at Residenz, Herkulessaal, Munich, Germany, first publishing 1978, format AAA Stereo +Tracks 41-1 to 41-5 recorded in October 1993 at Opéra Bastille, Salle Gounod, Paris, France, first publishing 1995, format DDD Stereo 24 Bit +Track 41-6 recorded in November 1993 at Opéra Bastille, Salle Gounod, Paris, France, first publishing 1996, format DDD Stereo 24 Bit +Track 41-7 recorded in June 1994 at Opéra Bastille, Salle Gounod, Paris, France, first publishing 1996, format DDD Stereo 24 Bit +Track 41-8 recorded in February 1990 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1991, format DDD Stereo +Tracks 42-1 to 42-3 recorded in February 1968 at Walthamstow Town Hall, London, United Kingdom, first publishing 1968, format AAA Stereo 44 kHz 16 Bit +Tracks 42-4 to 42-13 recorded in October 1975 at Alter Herkulessaal, Munich, Germany, first publishing 1977, format AAA Stereo 44 kHz 16 Bit +Tracks 42-14 to 42-15 recorded in July 1960 at Beethovensaal, Hannover, Germany, first publishing 1961, format AAA Stereo 44 kHz 16 Bit +Tracks 43-1 to 43-13 recorded in May 1981 at Studio Lankwitz, Berlin, Germany, first publishing 1982, format DDD Stereo +Track 44-1 recorded in April 1965 at Beethovensaal, Hannover, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Track 44-2, 44-12 to 44-16 recorded in June 1965 at Beethovensaal, Hannover, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Tracks 44-3 to 44-9 recorded in May 1965 at Beethovensaal, Hannover, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Tracks 44-10 to 44-11 recorded in June 1963 at Residenz, Herkulessaal, Munich, Germany, first publishing 1964, format AAA Stereo +Tracks 45-1 to 45-3 recorded in February 1968 at Walthamstow Town Hall, London, United Kingdom, first publishing 1968, format AAA Stereo 44 kHz 16 Bit +Tracks 45-4 to 45-14 recorded in June 1971 at Plenarsaal Residenz, Munich, Germany, first publishing 1972, format AAA Stereo 44 kHz 16 Bit +Track 45-15 recorded in July 1960 at Beethovensaal, Hannover, Germany, first publishing 1961, format AAA Stereo 44 kHz 16 Bit +Tracks 45-16 to 45-17 recorded in May 1977 at Residenz, Alter Herkulessaal, Munich, Germany, first publishing 1977, format AAA Stereo +Tracks 46-1 to 46-4 recorded in October 1978 at Frederic R. Mann Auditorium, Tel Aviv, Israel, first publishing 1979, format AAA Stereo 44 kHz 16 Bit +Track 46-5 recorded in August 1979 at Deutsches Museum, Kongress-Saal, Munich, Germany, first publishing 1980, format AAA Stereo 44 kHz 16 Bit +Tracks 46-6 to 46-9 recorded in November 1964 at Herkules Saal, Munich, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Tracks 47-1 to 47-9 recorded in March 1977 at Symphony Hall, Chicago, United States, first publishing 1977, format AAA Stereo +Tracks 48-1 to 48-3 recorded in December 1973 at Residenz, Herkulessaal, Munich, Germany, first publishing 1974, format AAA Stereo 44 kHz 16 Bit +Tracks 48-4 to 48-37 recorded in March 1971 at Beethovensaal, Hannover, Germany, first publishing 1973, format AAA Stereo 44 kHz 16 Bit +Tracks 49-1 to 49-25 recorded in April 1976 at Studio Lankwitz, Berlin, Germany, first publishing 1979, format ADD Stereo 44 kHz 16 Bit +Track 49-26 recorded in December 1977 at Studio Lankwitz, Berlin, Germany, first publishing 1979, format ADD Stereo 44 kHz 16 Bit +Tracks 49-27 to 49-34 recorded in October 1984 at Studio Lankwitz, Berlin, Germany, first publishing 1985, format DDD Stereo +Tracks 50-1 to 50-14 recorded in September 1977 at St. John's, London, United Kingdom, first publishing 1978, format AAA Stereo 44 kHz 16 BitNeeds Vote0CD 1: Gregorian Chant - Feast Of Stephen / Marchaut: ChansonsMagnus Liber Feast Of St. Stephen1-1Etenim Sederunt Principes (1) (Introit)4:16835529Léonin,835526Pérotin843432Charles PottBaritone Vocals836757Stephen Charlesworth (2)Baritone Vocals836748Julian ClarksonBass Vocals266712Michael McCarthyBass Vocals918924Westminster Cathedral ChoirChoristers Of Westminster CathedralChoir918932James O'Donnell (2)Chorus Master836738Gregor ZielinskyEngineer836510Orlando ConsortOrlando Consort, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1-2Sederunt Principes - Adiuva Me, Domine (4) (Gradual)16:22835526Pérotin843432Charles PottBaritone Vocals836757Stephen Charlesworth (2)Baritone Vocals836748Julian ClarksonBass Vocals266712Michael McCarthyBass Vocals918924Westminster Cathedral ChoirChoristers Of Westminster CathedralChoir918932James O'Donnell (2)Chorus Master836738Gregor ZielinskyEngineer836510Orlando ConsortOrlando Consort, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1-3Alleluya - Video Celos Apertos (2) (Alleluya)6:43835529Léonin,835526Pérotin843432Charles PottBaritone Vocals836757Stephen Charlesworth (2)Baritone Vocals836748Julian ClarksonBass Vocals266712Michael McCarthyBass Vocals918924Westminster Cathedral ChoirChoristers Of Westminster CathedralChoir918932James O'Donnell (2)Chorus Master836738Gregor ZielinskyEngineer836510Orlando ConsortOrlando Consort, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1-4Video Celos Apertos (Communion)1:32835529Léonin,835526Pérotin843432Charles PottBaritone Vocals836757Stephen Charlesworth (2)Baritone Vocals836748Julian ClarksonBass Vocals266712Michael McCarthyBass Vocals918924Westminster Cathedral ChoirChoristers Of Westminster CathedralChoir918932James O'Donnell (2)Chorus Master836738Gregor ZielinskyEngineer836510Orlando ConsortOrlando Consort, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording SupervisorDreams In The Pleasure Garden - Chansons1-5Tant Doucement5:02833970Guillaume de Machaut836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836738Gregor ZielinskyEngineer1950544Peter CzornyjDr. Peter CzornyjProducer709138Karl-August NaeglerRecording Supervisor745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals1-6Je Puis Trop Bien4:19833970Guillaume de Machaut836512Robert Harre-JonesAlto Vocals836738Gregor ZielinskyEngineer1950544Peter CzornyjDr. Peter CzornyjProducer709138Karl-August NaeglerRecording Supervisor745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals1-7En Amer A Douce Vie5:59833970Guillaume de Machaut836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836738Gregor ZielinskyEngineer1950544Peter CzornyjDr. Peter CzornyjProducer709138Karl-August NaeglerRecording Supervisor745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals1-8He! Dame de Valour3:36833970Guillaume de Machaut836509Donald GreigDon GreigBaritone Vocals836738Gregor ZielinskyEngineer1950544Peter CzornyjDr. Peter CzornyjProducer709138Karl-August NaeglerRecording Supervisor1-9Ma Fin Est Mon Commencement6:16833970Guillaume de Machaut836509Donald GreigDon GreigBaritone Vocals836738Gregor ZielinskyEngineer1950544Peter CzornyjDr. Peter CzornyjProducer709138Karl-August NaeglerRecording Supervisor745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals1-10De Toutes Flours6:45833970Guillaume de Machaut836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836738Gregor ZielinskyEngineer1950544Peter CzornyjDr. Peter CzornyjProducer709138Karl-August NaeglerRecording Supervisor745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor VocalsCD 2: Dufay / Josquin Des Pres: Motets2-1Nuper Rosarum Flores6:27833904Guillaume Dufay1169741Alexander BlachlyConductor836738Gregor ZielinskyEngineer446475PomeriumPomerium EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer838951Sid McLauchlanRecording Supervisor2-2Motets Alma Redemptoris Mater3:38833904Guillaume Dufay1169741Alexander BlachlyConductor833563Gernot Von SchultzendorffEngineer446475PomeriumPomerium EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer838951Sid McLauchlanRecording Supervisor2-3Letabundus Exsultet Fidelis Chorus6:40833904Guillaume Dufay1169741Alexander BlachlyConductor833563Gernot Von SchultzendorffEngineer446475PomeriumPomerium EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer838951Sid McLauchlanRecording Supervisor2-4Ecclesie Militantis6:01833904Guillaume Dufay1169741Alexander BlachlyConductor833563Gernot Von SchultzendorffEngineer446475PomeriumPomerium EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer838951Sid McLauchlanRecording Supervisor2-5Inviolata, Integra, Et Casta Es Maria 55:43743705Josquin Des PrésJosquin Des Pres836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836715Robert MacdonaldBass Vocals836738Gregor ZielinskyEngineer415724David R. MurrayDavid MurrayProducer745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals2-6Ut Phoebi Radiis 45:33743705Josquin Des PrésJosquin Des Pres836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836738Gregor ZielinskyEngineer415724David R. MurrayDavid MurrayProducer745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals2-7De Profundis Clamavi 55:11743705Josquin Des PrésJosquin Des Pres836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836715Robert MacdonaldBass Vocals836738Gregor ZielinskyEngineer415724David R. MurrayDavid MurrayProducer745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals2-8O Virgo Virginum 67:45743705Josquin Des PrésJosquin Des Pres836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836715Robert MacdonaldBass Vocals836738Gregor ZielinskyEngineer415724David R. MurrayDavid MurrayProducer959701Andrew CarwoodTenor Vocals745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals2-9La Dploration De Johannes Ockeghem: Nymphes Des Bois 54:33743705Josquin Des PrésJosquin Des Pres836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836715Robert MacdonaldBass Vocals836738Gregor ZielinskyEngineer415724David R. MurrayDavid MurrayProducer745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals2-10Huc Me Sydereo / Plangent Cum 57:04743705Josquin Des PrésJosquin Des Pres836512Robert Harre-JonesAlto Vocals836509Donald GreigDon GreigBaritone Vocals836715Robert MacdonaldBass Vocals836738Gregor ZielinskyEngineer415724David R. MurrayDavid MurrayProducer745262Angus SmithTenor Vocals836511Charles Daniels (2)Tenor Vocals2-11Motetti de la Corona Ed. Jon Dixon Praeter Rerum Seriem7:00743705Josquin Des PrésJosquin Des Pres180025Gabrieli ConsortChoir180026Paul McCreeshConductor834537Hans-Peter SchweigmannEngineer1000282Arend ProhmannProducer1950544Peter CzornyjDr. Peter CzornyjProducerCD 3: Wind Music From Renaissance Italy3-1Piva1:505067527Joan Ambrosio DalzaJoan Ambrosia Dalza833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording SupervisorMusic For Shawms And Sackbuts3-2Palle, Palle1:53973822Heinrich Isaac833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-3Ne Pi Bella Di Queste2:30973822Heinrich Isaac833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-4La Mi La Sol2:21973822Heinrich Isaac833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording SupervisorMusic For Recorders3-5Pass'e Mezo Ditto Il Romano1:111644098Francesco Bendusi833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-6Moschetta0:561644098Francesco Bendusi833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-7Bandera1:111644098Francesco Bendusi833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording SupervisorMusic For Flutes, Harp, Lute And Bagpipes3-8La Parma4:22504675Giorgio Mainerio,194Various833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-9Un Sonar De Piva Un Fachinesco (Lirum Bililirum)2:301793930Rossinus MantuanusRossino Mantovano,194Various833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-10Regem Archangelorum2:112003498Costanzo Festa833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-11Alma, Che Scarca Dal Corporeo Velo1:35151641Traditional833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording SupervisorMusic For Crumhorns, Cittern And Percussion3-12Aldi, Dolce Ben Mio1:24957724Fillippo AzzaioloFilippo Azzaiolo833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-13Bona Via Faccia Barca (Venetiana)1:18957724Fillippo AzzaioloFilippo Azzaiolo833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-14Gentil Madonna, Del Mio Cor Padrona1:07957724Fillippo AzzaioloFilippo Azzaiolo833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-15Donna, Quando Pietosa2:25834711Jacques Arcadelt833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-16El Travagliato1:582061741Vincenzo Ruffo833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-17La Gamba In Basso E Soprano1:302061741Vincenzo Ruffo833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-18Amor E Foco E Ghiaccio2:571228539Orazio Vecchi833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-19Putta Nera Ballo Furlano3:54504675Giorgio Mainerio833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-20All'arm' All'arm1:411472664Lodovico Agostini833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-21Com'al Primo Apparir3:143291938Giovanni Ferretti833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-22Sonata ''La Facca''1:581791707Cesario Gussago833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-23Canzone ''Istrina''1:541791709Aurelio Bonelli833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-24Sonata ''La Fontana''2:061791707Cesario Gussago833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-25Canzona ''Licori''1:501791709Aurelio Bonelli833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording SupervisorSuite Of Dances3-26La Morte De La Ragione (Pavane) - La Traditora (Gagliarda)3:46355Unknown Artist833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-27Bel Fiore1:53355Unknown Artist833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording Supervisor3-28La Rocha El Fuso (Gagliarda) - El Desperato (Saltarello) - La Lavandara (Gagliarda)4:27355Unknown Artist833563Gernot Von SchultzendorffEngineer3694352Piffaro, The Renaissance BandPiffaro, EnsembleEnsemble1950544Peter CzornyjDr. Peter CzornyjProducer737430Hans Bernhard BätzingRecording SupervisorCD 4: Tallis: Spem In Alium / Byrd: Mass For Three Voices / De Victoria: Gardanum / Palestrina: Missa Papae Marcelli / Allegri: Miserere4-1Spem In Alium8:55740149Thomas Tallis700443The King's College Choir Of CambridgeThe Choir Of King's College, Cambridge, ChoirChoir877524Stephen CleoburyConductor902732Simon EadonEngineer991968Chris HazellProducerMass For Three Voices765352William Byrd971041Pro Cantione AntiquaChoir1274505Bruno TurnerConductor472214Klaus HiemannEngineer919090Dr. Andreas HolschneiderProducer833562Günther BreestGuenther BreestRecording Supervisor4-2Kyrie0:444-3Gloria5:054-4Credo8:414-5Sanctus - Benedictus3:104-6Agnus Dei3:21Gardanum Ed. Jon Dixon4-7O Magnum Mysterium3:531364371Tomás Luis De VictoriaTomas Luis de Victoria180025Gabrieli ConsortChoir180026Paul McCreeshConductor834537Hans-Peter SchweigmannEngineer1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording SupervisorMissa Papae Marcelli822410Giovanni Pierluigi da Palestrina2381784The Choir Of Westminster AbbeyChoir252872Simon PrestonDirected By834537Hans-Peter SchweigmannEngineer836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor4-8Kyrie4:004-9Gloria6:194-10Credo8:504-11Sanctus3:024-12Benedictus - Hosanna3:104-13Agnus Dei I - II6:374-14Miserere11:52877526Gregorio Allegri2381784The Choir Of Westminster AbbeyChoir252872Simon PrestonDirected By834537Hans-Peter SchweigmannEngineer836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCD 5: Monteverdi: Vespers (Highlights), MadrigalsQuarto Libro de Madrigali5-1Sfogava Con Le Stelle3:57154174Claudio Monteverdi836286Klaus StorckCello1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor343823Hans KochDouble Bass874946Wolfgang MitlehnerEngineer844181Helga StorckHarp844451Colin TilneyHarpsichord3385014Werner KauffmannOrgan919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording Supervisor5-2Si Ch'io Vorrei Morire3:10154174Claudio Monteverdi1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor874946Wolfgang MitlehnerEngineer919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording Supervisor5-3Lamento D'Arianna, Sv2215:34154174Claudio Monteverdi836286Klaus StorckCello1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor343823Hans KochDouble Bass874946Wolfgang MitlehnerEngineer844451Colin TilneyOrgan919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording Supervisor5-4Dolcissimo Uscignuolo3:12154174Claudio Monteverdi836286Klaus StorckCello1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor343823Hans KochDouble Bass874946Wolfgang MitlehnerEngineer844181Helga StorckHarp844451Colin TilneyHarpsichord1001308Kristian GerwigLute919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording Supervisor5-5Ecco Mormorar L'onde3:04154174Claudio Monteverdi1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor874946Wolfgang MitlehnerEngineer208458Torquato TassoLibretto By919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording SupervisorQuinto Libro Dei Madrigali5-69. Ch'io T'ami9:16154174Claudio Monteverdi836286Klaus StorckCello1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor343823Hans KochDouble Bass874946Wolfgang MitlehnerEngineer1001308Kristian GerwigLute844451Colin TilneyOrgan919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording SupervisorQuarto Libro de Madrigali5-7Non Piu Guerra Pietate2:40154174Claudio Monteverdi1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor874946Wolfgang MitlehnerEngineer919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording Supervisor5-8S'andasse Amor A Caccia1:47154174Claudio Monteverdi1001319Monteverdi-Chor HamburgChoir1001316Jürgen JürgensConductor874946Wolfgang MitlehnerEngineer919090Dr. Andreas HolschneiderProducer839988Werner MayerRecording SupervisorVespro Della Beata Vergine5-9Duo Seraphim A 36:07154174Claudio Monteverdi836379David Thomas (9)Bass Vocals855183Georg RatzingerChorus Master855189Hanns-Martin SchneidtConductor472214Klaus HiemannEngineer855182Hamburger Bläserkreis Für Alte MusikEnsemble841675Dr. Gerd PloebschRecording Supervisor838975Ian PartridgeTenor Vocals1092675John ElwesTenor VocalsMagnificat154174Claudio Monteverdi542687Regensburger DomspatzenDie Regensburger DomspatzenChoir855183Georg RatzingerChorus Master855189Hanns-Martin SchneidtConductor472214Klaus HiemannEngineer855182Hamburger Bläserkreis Für Alte MusikEnsemble919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor5-101. Magnificat Anima Mea1:025-112. Et Exultavit1:33838975Ian PartridgeTenor Vocals1092675John ElwesTenor Vocals5-123. Quia Respexit1:335-134. Quia Fecit Mihi Magna1:13862698Christopher KeyteBass Vocals836379David Thomas (9)Bass Vocals5-145. Et Misericordia2:015-156. Fecit Potentiam0:565-167. Deposuit Potentes de Sede2:115-178. Esurientes Implevit Bonis1:085-189. Suscepit Israel1:351305292Kevin Smith (11)Countertenor Vocals376031Paul EsswoodCountertenor Vocals5-1910. Sicut Locutus Est1:105-2011. Gloria Patri2:18838975Ian PartridgeTenor Vocals1092675John ElwesTenor Vocals5-2112. Sicut Erat In Principio1:56CD 6: Schütz / Buxtehude / Pachelbel: Chamber Music6-1O Bone Jesu, Fili Mariae (Swv 471)7:44909198Heinrich Schütz833879Ashley StaffordAlto Vocals833722John Eliot GardinerConductor839989Ulrich VetteEngineer836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor843400Ruth Holton (2)Soprano Vocals843407Nicolas RobertsonTenor Vocals6-2Sonata In G Major Buxwv 2717:19946368Dieterich BuxtehudeDietrich Buxtehude874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble1065422Henk BoumanHarpsichord919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSonata In B Flat Major Buxwv 273946368Dieterich BuxtehudeDietrich Buxtehude874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble1065422Henk BoumanHarpsichord919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor6-3Ciaccona - Adagio - Allegro/Adagio/Allegro7:426-4Allemande2:496-5Courante1:016-6Sarabande1:436-7Gigue1:166-8Sonata In C Major Buxwv 2668:05946368Dieterich BuxtehudeDietrich Buxtehude874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble1065422Henk BoumanHarpsichord919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorPartie (Suite) In G Major115463Johann Pachelbel874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor6-9Sonatina1:021065422Henk BoumanOrgan6-10Allemande2:461065422Henk BoumanOrgan6-11Gavotte0:501065422Henk BoumanOrgan6-12Courante0:561065422Henk BoumanOrgan6-13Aria0:381065422Henk BoumanOrgan6-14Sarabande1:371065422Henk BoumanOrgan6-15Gigue1:296-16Finale. Adagio0:42Partie (Suite) In E Minor115463Johann Pachelbel874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble1065422Henk BoumanHarpsichord919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor6-17Sonata. Adagio - Aria4:196-18Courante1:036-19Aria0:516-20Ciaccona2:036-21Aria Con Variazioni In A Major10:02115463Johann Pachelbel874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble1065422Henk BoumanHarpsichord919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCanon And Gigue In D Major115463Johann Pachelbel874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble1065422Henk BoumanHarpsichord837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor6-221. Canon3:096-232. Gigue1:29CD 7: Purcell: Dido And Aeneas (Highlights); The Fairy Queen (Highlights), Te Deum And JubilateDido And Aeneas, Z.6267-1Overture2:4165796Henry Purcell832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording SupervisorAct 17-2"Ah! Belinda" / "Grief Increases" / "When Monarchs Unite"5:3165796Henry Purcell1001319Monteverdi-Chor HamburgChorus1001316Jürgen JürgensChorus Master832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By532276Tatiana TroyanosMezzo-soprano Vocals1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording Supervisor838984Sheila ArmstrongSoprano Vocals7-3"See, Your Royal Guest Appears" / "Cupid Only Throws.."5:3165796Henry Purcell376031Paul EsswoodAlto Vocals1353208Barry McDanielBaritone Vocals832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By532276Tatiana TroyanosMezzo-soprano Vocals1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording Supervisor838984Sheila ArmstrongSoprano Vocals7-4"If Not For Mine" / "Pursue Thy Conquest, Love"1:2865796Henry Purcell1353208Barry McDanielBaritone Vocals832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording Supervisor838984Sheila ArmstrongSoprano VocalsAct 27-5"Prelude For..." / "Harms Our..." / "The Queen" / "Ho, Ho, Ho"2:3965796Henry Purcell1122169Patricia Johnson (3)Alto Vocals1001319Monteverdi-Chor HamburgChorus1001316Jürgen JürgensChorus Master832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording Supervisor1616106Margaret BakerSoprano Vocals7-6"Ruinnd Ere" / "Ho, Ho, Ho" / "But Ere..." / "In Our Deep..."2:4865796Henry Purcell1122169Patricia Johnson (3)Alto Vocals836151The Monteverdi ChoirChoir1001316Jürgen JürgensChorus Master832951Sir Charles MackerrasCharles MackerrasConductor3268062Margaret LenskyContralto Vocals833561Klaus ScheibeEngineer838405Nahum TateLibretto By1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording Supervisor1616106Margaret BakerSoprano VocalsAct 27-7"Behold, Upon My Bending Spear" / "Haste, Haste To Town"1:2665796Henry Purcell1353208Barry McDanielBaritone Vocals1001319Monteverdi-Chor HamburgChorus1001316Jürgen JürgensChorus Master832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By532276Tatiana TroyanosMezzo-soprano Vocals1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording Supervisor838984Sheila ArmstrongSoprano VocalsAct 37-8"Thy Hand, Belinda" / "When I Am Laid In Earth"5:5365796Henry Purcell832951Sir Charles MackerrasCharles MackerrasConductor833561Klaus ScheibeEngineer838405Nahum TateLibretto By532276Tatiana TroyanosMezzo-soprano Vocals1046944Kammerorchester Des Norddeutschen RundfunksOrchestra1290899Hans RitterRecording SupervisorThe Fairy Queen, Z.629Act 17-9Overture2:0665796Henry Purcell833722John Eliot GardinerConductor565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording Supervisor7-10Scene Of The Drunken Poet: "Fill Up The Bowl"6:4365796Henry Purcell836379David Thomas (9)Bass Vocals836151The Monteverdi ChoirChoir833722John Eliot GardinerConductor565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording Supervisor1506412Elisabeth PridaySoprano Vocals897150Judith NelsonSoprano VocalsAct 27-11No.17 "Hush, No More"3:2365796Henry Purcell836155Stephen VarcoeBass Vocals836151The Monteverdi ChoirChoir833722John Eliot GardinerConductor565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording SupervisorAct 37-12Dialog: "Now The Maids And The Men"3:5965796Henry Purcell836379David Thomas (9)Bass Vocals836151The Monteverdi ChoirChoir833722John Eliot GardinerConductor1034913Timothy PenroseCountertenor Vocals565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording SupervisorAct 57-13The Plaint7:4665796Henry Purcell833722John Eliot GardinerConductor565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording Supervisor1802107Jennifer Smith (3)Soprano Vocals7-14Monkey's Dance1:0765796Henry Purcell833722John Eliot GardinerConductor565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording Supervisor7-15Hark! The Ech'ing Air2:5465796Henry Purcell833722John Eliot GardinerConductor565422Heinz WildhagenEngineer1536670Elkanah SettleLibretto By348179William ShakespeareLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra919090Dr. Andreas HolschneiderProducer833503Barbara ValentinRecording Supervisor1362186Eiddwen HarrhySoprano VocalsTe Deum Laudamus And Jubilate Deo In D Z23265796Henry Purcell7-16Te Deum Laudamus14:05879156The Choir Of Christ Church CathedralChoir Of Christ Church Cathedral, OxfordChoir252872Simon PrestonConductor709138Karl-August NaeglerEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra65792Francis GrierOrgan919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor7-17Jubilate Deo8:18879156The Choir Of Christ Church CathedralChoir Of Christ Church Cathedral, OxfordChoir252872Simon PrestonConductor709138Karl-August NaeglerEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra65792Francis GrierOrgan919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCD 8: Charpentier: Te Deum / Rameau: Une Symphonie ImaginaireTe Deum For Soloists, Chorus And Orchestra, H 146571862Marc Antoine CharpentierMarc-Antoine Charpentier8-1Prelude, Rondeau1:19970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor8-2Te Deum Laudamus (Bass)0:592228958Russell SmytheBaritone Vocals970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor8-3Te Aeternum Patrem (Chorus, Soprano I/Ii, Mezzo-Soprano, Tenor)3:31969698Les Musiciens Du LouvreChorus Of Les Musiciens Du LouvreChoir970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969022Magdalena KoženáMagdalena KozenáMezzo-soprano Vocals969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1722795Annick MassisSoprano Vocals3127221Eric HuchetTenor Vocals3127220Patrick HenckensTenor Vocals8-4Te Per Orbem Terrarum (Mezzo-Soprano, Tenor, Bass)3:033127218Jean-Louis BindiBass Vocals970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor3127221Eric HuchetTenor Vocals3127220Patrick HenckensTenor Vocals8-5Tu Devicto Mortis Aculeo (Chorus, Bass)1:152228958Russell SmytheBaritone Vocals969698Les Musiciens Du LouvreChorus Of Les Musiciens Du LouvreChoir970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor8-6Te Ergo Quaesumus (Soprano I)1:47970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1722795Annick MassisSoprano Vocals8-7Aeterna Fac Cum Sanctis Tuis (Chorus, Mezzo-Soprano, Tenor, Bass, Soprano Ii)2:122228958Russell SmytheBaritone Vocals3127218Jean-Louis BindiBass Vocals969698Les Musiciens Du LouvreChorus Of Les Musiciens Du LouvreChoir970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969022Magdalena KoženáMagdalena KozenáMezzo-soprano Vocals969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor3127221Eric HuchetTenor Vocals3127220Patrick HenckensTenor Vocals8-8Dignare, Domine, Die Isto (Soprano I, Bass, Soprano Ii)1:342228958Russell SmytheBaritone Vocals3127218Jean-Louis BindiBass Vocals970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969022Magdalena KoženáMagdalena KozenáMezzo-soprano Vocals969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1722795Annick MassisSoprano Vocals8-9Fiat Misericordia Tua, Domine, Super Nos (Soprano I, Bass)1:252228958Russell SmytheBaritone Vocals970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969022Magdalena KoženáMagdalena KozenáMezzo-soprano Vocals969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor1722795Annick MassisSoprano Vocals8-10In Te, Domine, Speravi (Chorus, Mezzo-Soprano, Tenor, Bass)2:083127218Jean-Louis BindiBass Vocals969698Les Musiciens Du LouvreChorus Of Les Musiciens Du LouvreChoir970908Marc MinkowskiConductor836738Gregor ZielinskyEngineer969698Les Musiciens Du LouvreOrchestra1950544Peter CzornyjDr. Peter CzornyjProducer1000282Arend ProhmannRecording Supervisor3127221Eric HuchetTenor Vocals3127220Patrick HenckensTenor VocalsZaïs8-11Overture5:46671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer3703407Louis De CahusacLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorCastor Et Pollux8-12Scene Funbre3:25671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer2200334Pierre-Joseph-Justin BernardLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Fêtes D'Hébé Act 28-13Air Tendre1:53671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer4817518Antoine Gautier de MontdorgeLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorDardanus Prologue8-14Premier Tambourin / Deuxime Tambourin1:51671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer2747393Charles-Antoine Leclerc De La BruèreCharles-Antoine Le Clerc de La BruereLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLe Temple De La Gloire8-15Air Tendre Pour Les Muses4:25671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer768347Voltaire (5)Libretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Borades Act 18-16Contredanse3:06671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer3703407Louis De CahusacLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLa Naissance D'Osiris8-17Air Gracieux2:19671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Borades Act 48-18Gavottes Pour Les Heures Et Les Zphirs2:44671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer3703407Louis De CahusacLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorPlate (Ou Junon Jalouse)8-19Orage2:32671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer4817517Adrien-Joseph Le Valois D'OrvilleLibretto By3534208Jacques AutreauLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Borades Act 58-20Prelude1:19671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer3703407Louis De CahusacLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording Supervisor6 Concerts Transcrits En Sextuor 6e Concert8-211. La Poule4:31671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Fêtes D'Hébé Act 38-22Musette Tendre En Rondeau, Tambourin En Rondeau3:22671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer4817518Antoine Gautier de MontdorgeLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorHippolyte Et Aricie Act 38-23Ritournelle2:09671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer2831853Simon-Joseph PellegrinSimon Joseph de PellegrinLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorNas Prologue8-24Rigaudons2:22671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer3703407Louis De CahusacLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Indes Galantes Act 98-25Danse Des Sauvages2:18671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer2775278Louis FuzelierLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Borades Act 48-26Entre De Polymnie6:05671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer3703407Louis De CahusacLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorLes Indes Galantes Act 98-27Chaconne6:17671328Jean-Philippe Rameau970908Marc MinkowskiConductor839989Ulrich VetteEngineer2775278Louis FuzelierLibretto By969698Les Musiciens Du LouvreOrchestra1855233Marita ProhmannProducer1000282Arend ProhmannRecording SupervisorCD 9: Telemann: ConcertosConcerto In A Major For Two Violins In Scordatura And Continuo793064Georg Philipp Telemann9-11. Affetuoso2:30874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-22. Vivace1:36874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-33. Aria2:20874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-44. Bourre2:39874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorConcerto In D (for 4 Solo Violins)793064Georg Philipp Telemann9-51. Adagio0:52874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-62. Allegro1:56874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-73. Grave2:11874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-84. Allegro1:27874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorConcerto In A Minor For Recorder And Viola Da Gamba793064Georg Philipp Telemann9-9Grave3:59874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-10Allegro4:07874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-11Dolce3:14874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-12Allegro3:36874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorConcerto In G Minor For Recorder, Violins And Basso Continuo793064Georg Philipp Telemann9-131. (Allegro)3:35874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-142. Siciliana5:31874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-153. Bourre0:52874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-164. Menuett3:32874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSonata (Concerto) In C Major TWV 40:203, For 4 Violins Without Basso Continuo793064Georg Philipp Telemann9-171. Grave1:21874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-182. Allegro3:07874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-193. Largo E Staccato1:54874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor9-204. Allegro1:29874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorConcerto For Recorder, Flute, Strings And Continuo In E Minor, TWV. 52793064Georg Philipp Telemann9-211. Largo3:40874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor9-222. Allegro3:47874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor9-233. Largo3:29874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor9-244. Presto2:26874946Wolfgang MitlehnerEngineer837582Musica Antiqua KölnEnsemble837585Reinhard GoebelLeader836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording SupervisorCD 10: Vivaldi: The Four Seasons R.269, R.315, R.293, R.297; Gloria In D Major R. 589Concerto For Violin And Strings In E, Op.8, No.1, Rv 269 "La Primavera"108566Antonio Vivaldi10-11. Allegro2:41834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-22. Largo3:39834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-33. Allegro (Danza Pastorale)4:45834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolinConcerto For Violin And Strings In G Minor, Op.8, No.2, Rv 315, "L'estate"108566Antonio Vivaldi10-41. Allegro Non Molto - Allegro2:17834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-52. Adagio - Presto - Adagio2:45834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-63. Presto (Tempo Impetuoso D'estate)4:52834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolinConcerto For Violin And Strings In F, Op.8, No.3, R.293 "L'autunno"108566Antonio Vivaldi10-71. Allegro (Ballo, E Canto De' Villanelli)2:30834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-82. Adagio Molto (Ubriachi Dormienti)3:02834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-93. Allegro (La Caccia)3:14834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolinConcerto For Violin And Strings In F Minor, Op.8, No.4, Rv 297 "L'inverno"108566Antonio Vivaldi10-101. Allegro Non Molto1:52834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-112. Largo2:48834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolin10-123. Allegro2:24834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor343905Simon StandageViolinGloria In D, R.589108566Antonio Vivaldi1415464Gian Francesco MalipieroMalipieroScore Editor [Edited]10-131. Gloria In Excelsis Deo2:15870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-142. Et In Terra Pax Hominibus4:54870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-153. Laudamus Te2:15870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor870702Ingrid AttrotSoprano Vocals836154Nancy ArgentaSoprano Vocals10-164. Gratias Agimus Tibi0:29870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-175. Propter Magnam Gloriam0:51870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-186. Domine Deus3:44837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor836154Nancy ArgentaSoprano Vocals10-197. Domine Fili Unigenite2:19870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-208. Domine Deus, Agnus Dei5:03870694The English Concert ChoirChoir870697Catherine DenleyContralto Vocals834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-219. Qui Tollis Peccata Mundi1:47870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-2210. Qui Sedes Ad Dexteram Patris2:46870694The English Concert ChoirChoir870697Catherine DenleyContralto Vocals834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor10-2311. Quoniam Tu Solus Sanctus0:48870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor491879Crispian Steele-PerkinsTrumpet10-2412. Cum Sancto Spiritu2:50870694The English Concert ChoirChoir834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor491879Crispian Steele-PerkinsTrumpetCD 11: Bach, J.S.: Brandenburg Concertos No.2 In F, BWV 1047 & No.5 In D, BWV 1050; Suite No.2 In B Minor, BWV 1067Brandenburg Concerto No.2 In F, BWV 104795537Johann Sebastian Bach11-11. (Allegro)4:36837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-22. Andante3:22837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-33. Allegro Assai2:36837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, EngineerBrandenburg Concerto No.5 In D, BWV 1050 Arr. Jacques Loussier11-41. Allegro9:4395537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-52. Affetuoso5:4795537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-63. Allegro5:0795537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, EngineerSuite No.2 In B Minor, BWV 106711-71. Ouverture10:0995537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-82. Rondeau1:5495537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-93. Sarabande3:1495537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-104. Bourre I-II1:3495537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-115. Polonaise2:5095537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-126. Menuet1:0595537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer11-137. Badinerie1:1995537Johann Sebastian Bach837585Reinhard GoebelConductor837582Musica Antiqua KölnEnsemble919090Dr. Andreas HolschneiderProducer874946Wolfgang MitlehnerRecording Supervisor, EngineerCD 12: Bach, J.S.: Goldberg Variations, BWV 988; Fantasia In C Minor, BWV 906; Italian Concerto In F, BWV 971; Fantasia And Fugue In A Minor, BWV 904Aria Mit 30 Veränderungen, BWV 988 "Goldberg Variations"12-1Aria2:0795537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-2Var. 1 A 1 Clav.1:0795537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-3Var. 2 A 1 Clav.1:1695537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-4Var. 3 Canone All'Unisono A 1 Clav.1:5695537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-5Var. 4 A 1 Clav.0:4095537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-6Var. 5 A 1 Ovvero 2 Clav.0:4895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-7Var. 6 Canone Alla Seconda A 1 Clav.0:4995537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-8Var. 7 A 1 Ovvero 2 Clav.1:1895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-9Var. 8 A 2 Clav.1:1195537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-10Var. 9 Canone Alla Terza A 1 Clav.1:1395537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-11Var. 10 Fughetta A 1 Clav.0:5695537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-12Var. 11 A 2 Clav.0:5395537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-13Var. 12 Canone Alla Quarta1:2495537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-14Var. 13 A 2 Clav.2:3395537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-15Var. 14 A 2 Clav.1:1495537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-16Var. 15 Canone Alla Quinta In Moto Contrario2:2195537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-17Var. 16 Ouverture A 1 Clav.1:4095537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-18Var. 17 A 2 Clav.0:5395537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-19Var. 18 Canone Alla Sesta A 1 Clav.0:5895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-20Var. 19 A 1 Clav.0:4095537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-21Var. 20 A 2 Clav.1:0595537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-22Var. 21 Canone Alla Settima1:0395537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-23Var. 22 Alla Breve A 1 Clav.0:5895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-24Var. 23 A 2 Clav.1:0195537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-25Var. 24 Canone All'Ottava A 1 Clav.1:4895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-26Var. 25 A 2 Clav.4:0895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-27Var. 26 A 2 Clav.1:0895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-28Var. 27 Canone Alla Nona0:5495537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-29Var. 28 A 2 Clav.1:0995537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-30Var. 29 A 1 Ovvero 2 Clav.1:0895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-31Var. 30 Quodlibet A 1 Clav.1:0195537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-32Aria2:1895537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording Supervisor12-33Fantasia In C Minor, Bwv 9064:5295537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer856141Wolfgang LohseRecording SupervisorItalian Concerto In F, BWV 97112-341. (Allegro)3:5995537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer1290899Hans RitterRecording Supervisor12-352. Andante4:4395537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer1290899Hans RitterRecording Supervisor12-363. Presto3:5695537Johann Sebastian Bach958012Harald BaudisEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer1290899Hans RitterRecording SupervisorFantasia And Fugue In A Minor, BWV 90412-37Fantasia2:4295537Johann Sebastian Bach3019804Helmut ElblEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer1290899Hans RitterRecording Supervisor12-38Fuga4:3495537Johann Sebastian Bach3019804Helmut ElblEngineer971039Ralph KirkpatrickHarpsichord1325965Hans HickmannDr. Hans HickmannProducer1290899Hans RitterRecording SupervisorCD 13: Bach, J.S.: Organ WorksToccata And Fugue In D Minor, BWV 56513-1Toccata2:3395537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-2Fugue5:2895537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-3Fantasia In G, BWV 5728:0595537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-4Canzona In D minor, BWV 5886:0095537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, EngineerToccata (Prelude) And Fugue In F, BWV 54013-51. Toccata7:2895537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-62. Fugue5:2095537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-7Wachet Auf, Ruft Uns Die Stimme, BWV 645 ('Sleepers, Awake')4:1195537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-8Wo Soll Ich Fliehen Hin, BWV 6461:4095537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-9Wer Nur Den Lieben Gott Lässt Walten, BWV 6474:1295537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-10Meine Seele erhebet den Herren, BWV 6483:2995537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-11Ach Bleib Bei Uns, Herr Jesu Christ, BWV 6492:2295537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-12Kommst Du Nun, Jesu, Vom Himmel Herunter, BWV 6503:2295537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, EngineerPassacaglia In C Minor, BWV 58213-13Passacaglia7:3595537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, Engineer13-14Fugue5:1895537Johann Sebastian Bach836665Ton KoopmanOrgan919090Dr. Andreas HolschneiderProducer565422Heinz WildhagenRecording Supervisor, EngineerCD 14: Bach, J.S.: St. Matthew Passion - Highlights: St. Matthew Passion, BWV 244Part One14-1No.1 Chorus I/II: "Kommt, Ihr Töchter, Helft Mir Klagen"7:0295537Johann Sebastian Bach836151The Monteverdi ChoirChoir833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-2No.3 Choral: "Herzliebster Jesu, Was Hast Du Verbrochen"0:4195537Johann Sebastian Bach843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-3No.6 Aria (Alto): "Buss Und Reu"4:1395537Johann Sebastian Bach833722John Eliot GardinerConductor789776Anne Sofie Von OtterContralto Vocals839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-4No.8 Aria (Soprano): "Blute Nur, Du Liebes Herz"4:4395537Johann Sebastian Bach833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor843399Ann MonoyiosSoprano Vocals14-5No.17 Choral: "Ich Will Hier Bei Dir Stehen"0:5295537Johann Sebastian Bach843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-6No.20 Aria (Tenor, Chorus Ii): "Ich Will Bei Meinem Jesu Wachen"4:5595537Johann Sebastian Bach843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor836063Howard CrookTenor Vocals14-7No.22 Recitative (Bass): "Der Heiland Fällt Vor Seinem Vater Nieder"0:5495537Johann Sebastian Bach839696Olaf BärBaritone Vocals833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-8No.23 Aria (Bass): "Gerne Will Ich Mich Bequemen"4:0095537Johann Sebastian Bach839696Olaf BärBaritone Vocals833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-9No.25 Choral: "Was Mein Gott Will, Das G'scheh Allzeit"0:5795537Johann Sebastian Bach843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording SupervisorPart Two14-10No.39 Aria (Alto): "Erbarme Dich"6:4095537Johann Sebastian Bach833722John Eliot GardinerConductor836153Michael ChanceCountertenor Vocals839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-11No.42 Aria (Bass): "Gebt Mir Meinen Jesum Wieder"2:5295537Johann Sebastian Bach473837Cornelius HauptmannBass Vocals833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-12No.46 Choral: "Wie Wunderbarlich Ist Doch Diese Strafe"0:3995537Johann Sebastian Bach843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-13No.52 Aria (Alto): "Können Tränen Meiner Wangen"6:4295537Johann Sebastian Bach833722John Eliot GardinerConductor789776Anne Sofie Von OtterContralto Vocals839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-14No.65 Aria (Bass): "Mache Dich, Mein Herze, Rein"5:5795537Johann Sebastian Bach473837Cornelius HauptmannBass Vocals833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor14-15No.67 Recitative (Soprano, Alto, Tenor, Bass, Chorus II): "Nun Ist Der Herr Zur Ruh Gebracht" - "Mein Jesu, Gute Nacht"1:3495537Johann Sebastian Bach839696Olaf BärBaritone Vocals843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor789776Anne Sofie Von OtterContralto Vocals839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording Supervisor843433Barbara BonneySoprano Vocals836063Howard CrookTenor Vocals14-16No.68 Chorus I/II: "Wir Setzen Uns Mit Tränen Nieder"5:0595537Johann Sebastian Bach843441The London Oratory Junior ChoirChoir836151The Monteverdi ChoirChoir843395Patrick RussillChorus Master833722John Eliot GardinerConductor839989Ulrich VetteEngineer1849896Christian Friedrich HenriciLibretto By836156The English Baroque SoloistsEnglish Baroque SoloistsOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer709138Karl-August NaeglerRecording SupervisorCD 15: Bach, J.S.: Magnificat, BWV 243; Cantatas BWV 63 & 65Magnificat In D Major, BWV 24315-1Chorus: "Magnificat"3:0395537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor15-2Aria: "Et Exsultavit Spiritus Meus"2:4695537Johann Sebastian Bach517153Karl RichterConductor901880Hertha TöpperContralto Vocals1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor15-3Quia Respexit...Omnes Generationes4:3295537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor836125Maria StaderSoprano Vocals15-4Aria: "Quia Fecit Mihi Magna"2:1895537Johann Sebastian Bach833168Dietrich Fischer-DieskauBass Vocals517153Karl RichterConductor1325965Hans HickmannDr. Hans HickmannEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor15-5Aria (Duet): "Et Misericordia"3:4895537Johann Sebastian Bach517153Karl RichterConductor901880Hertha TöpperContralto Vocals1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor883315Ernst HaefligerTenor Vocals15-6Chorus: "Fecit Potentiam"2:2295537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor15-7Aria: "Deposuit Potentes"2:1295537Johann Sebastian Bach517153Karl RichterConductor1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor883315Ernst HaefligerTenor Vocals15-8Aria: "Esurientes Implevit Bonis"2:5995537Johann Sebastian Bach517153Karl RichterConductor901880Hertha TöpperContralto Vocals1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor15-9Chorus: Suscepit Israel1:5395537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor901880Hertha TöpperContralto Vocals1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor836125Maria StaderSoprano Vocals15-10Chorus: "Sicut Locutus Est"1:5495537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording Supervisor15-11Chorus: "Gloria Patri"2:1895537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor1484313Walter Alfred WettlerEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer958011Karl-Heinz SchneiderRecording SupervisorCantata "Christen, Ätzet Diesen Tag", BWV 6315-12Chorus: Christen, Ätzet Diesen Tag5:3195537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording Supervisor15-13Recitativo: O Sel'ger Tag3:4995537Johann Sebastian Bach517153Karl RichterConductor839080Anna ReynoldsContralto Vocals834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording Supervisor15-14Aria: Gott, Du Hast Es Wohl Gefüget7:2595537Johann Sebastian Bach833168Dietrich Fischer-DieskauBass Vocals517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording Supervisor850889Edith MAthisSoprano Vocals15-15Recitativo: So Kehret Sich Nun Heut Das Bange Leid0:5595537Johann Sebastian Bach517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording Supervisor446577Peter SchreierTenor Vocals15-16Ruft Und Fleht Den Himmel An4:1395537Johann Sebastian Bach517153Karl RichterConductor839080Anna ReynoldsContralto Vocals834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording Supervisor446577Peter SchreierTenor Vocals15-17Recitativo: Verdoppelt Euch Demnach, Ihr Heissen1:1495537Johann Sebastian Bach833168Dietrich Fischer-DieskauBass Vocals517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording Supervisor15-18Chorus: Höchster, Schau In Gnaden An6:3395537Johann Sebastian Bach517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer841676Hansjoachim ReiserRecording Supervisor368138Rainer BrockRecording SupervisorSie Werden Aus Saba Alle Kommen Cantata, BWV 6515-191. Coro: Sie Werden Aus Saba Alle Kommen3:3495537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1083234Manfred RichterDr. Manfred RichterRecording Supervisor15-202. Choral: Die Könige Aus Saba Kamen Dar0:4295537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor833561Klaus ScheibeEngineer834641Münchener Bach-OrchesterOrchestra1083234Manfred RichterDr. Manfred RichterRecording Supervisor15-213. Recitativo: Was Dort Jesaias Vorhergesehn2:1395537Johann Sebastian Bach526411Theo AdamBass Vocals517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1083234Manfred RichterDr. Manfred RichterRecording Supervisor15-224. Aria: Gold Und Ophir Ist Zu Schlecht2:3795537Johann Sebastian Bach526411Theo AdamBass Vocals517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1083234Manfred RichterDr. Manfred RichterRecording Supervisor15-235. Recitativo: Verschmähe Nicht, Du, Meiner Seelen Licht1:3195537Johann Sebastian Bach517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1083234Manfred RichterDr. Manfred RichterRecording Supervisor883315Ernst HaefligerTenor Vocals15-246. Aria: Nimm Mich Dir Zu Eigen Hin3:2195537Johann Sebastian Bach517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1083234Manfred RichterDr. Manfred RichterRecording Supervisor883315Ernst HaefligerTenor Vocals15-257. Choral: Ei Nun, Mein Gott, So Fall Ich Dir Getrost1:3395537Johann Sebastian Bach931425Münchener Bach-ChorChoir517153Karl RichterConductor834537Hans-Peter SchweigmannEngineer834641Münchener Bach-OrchesterOrchestra1325965Hans HickmannDr. Hans HickmannProducer1083234Manfred RichterDr. Manfred RichterRecording SupervisorCD 16: Handel: Music For The Royal Fireworks, HWV 351; Concerto Grosso In C, HWV 318; Arrival Of The Queen Of Sheba, HWV 67; Belshazzar - Overture, HWV 61, Sinfonia HWV 53 & 57Music For The Royal Fireworks: Suite HWV 35116-11. Ouverture7:21375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-22. Bourre1:37375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-33. La Paix4:11375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-44. La Rjouissance2:09375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-55. Menuet I1:30375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-66. Menuet II1:38375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorConcerto Grosso In C, HWV 318 "Alexander's Feast"16-71. Allegro3:38375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-82. Largo - Adagio1:53375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-93. Allegro - Adagio3:30375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-104. Andante Non Presto3:50375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorWater Music Suite, HWV 348-35016-11Arrival Of The Queen Of Sheba3:08375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorBelshazzar16-12Overture4:38375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorAlceste, HWV 45 Act 1: Grand Entre16-13Maestoso2:43375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor843657Michael Laird (2)TrumpetFrom Saul: Sinfonia, HWV 5316-141. Allegro4:04375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-152. Larghetto - Adagio2:44375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-163. Allegro2:40375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor, Trumpet834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-174. Andante Larghetto2:40375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorFrom Samson (Act I): Sinfonia, HWV 5716-181. Andante - Adagio3:54375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer857608Anthony HalsteadHorn972925Christian RutherfordHorn4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-192. Allegro1:44375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer857608Anthony HalsteadHorn972925Christian RutherfordHorn4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor16-203. Menuetto2:18375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer857608Anthony HalsteadHorn972925Christian RutherfordHorn4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCD 17: Handel: Harp Concerto, Op. 4 No.6 In B Flat, HWV 294; Organ Concerto In F No.13, HWV 295 "The Cuckoo And The Nightingale"; Concerto No.3 In G Minor, HWV 287; Concerto A Due Cori No.2 In F, HWV 333Organ Concerto No.6 In B Flat, Op.4 No.6, HWV 294 Version For Harp17-11. Andante Allegro6:25375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer302076Ursula HolligerHarp4713045The English ConcertOrchestra837588Trevor PinnockOrgan, Leader836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer17-22. Larghetto4:12375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer302076Ursula HolligerHarp837588Trevor PinnockLeader, Organ4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer17-33. Allegro Moderato2:33375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer302076Ursula HolligerHarp4713045The English ConcertOrchestra837588Trevor PinnockOrgan, Leader836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducerOrgan Concerto No.13 In F -"Cuckoo And The Nightingale" HWV 29517-4Larghetto2:44375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra252872Simon PrestonOrgan836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer17-5Allegro3:39375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra252872Simon PrestonOrgan836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer17-6Larghetto3:32375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra252872Simon PrestonOrgan836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer17-7Allegro3:13375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader4713045The English ConcertOrchestra252872Simon PrestonOrgan836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducerOboe Concerto No.3 In G Minor, HWV 28717-81. Grave2:31375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-92. Allegro1:52375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-103. Sarabande (Largo)2:26375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-114. Allegro1:59375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer858579David ReichenbergOboe4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorConcerto A Due Cori No.2, HWV 33317-121. Pomposo1:47375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader [Strings]4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-132. Allegro2:10375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader [Strings]4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-143. A Tempo Giusto2:50375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader [Strings]4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-154. Largo2:25375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader [Strings]4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-165. Allegro Ma Non Troppo - Adagio4:05375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader [Strings]4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor17-176. A Tempo Ordinario3:32375279Georg Friedrich HändelGeorge Frideric Handel834537Hans-Peter SchweigmannEngineer837588Trevor PinnockLeader [Strings]4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCD 18: Handel: Messiah - Arias And ChorusesMessiah, HWV 56 Pt. 118-1Symphony3:21375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-2"Ev'ry Valley Shall Be Exalted"3:33375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor836063Howard CrookTenor Vocals18-3"And The Glory Of The Lord"2:52375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-4"But Who May Abide The Day Of His Coming"4:47375279Georg Friedrich HändelGeorge Frideric Handel836153Michael ChanceAlto Vocals837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-5"And He Shall Purify The Sons Of Levi"2:25375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-6"O Thou That Tellest Good Tidings To Zion"5:29375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor789776Anne Sofie Von OtterContralto Vocals834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-7Pifa (Pastoral Symphony)1:10375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-8"Rejoice Greatly, O Daughter Of Zion"4:50375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor899625Arleen AugerArleen AugérSoprano VocalsPt. 218-9"Surely He Hath Borne Our Griefs"2:23375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-10"And With His Stripes We Are Healed"1:53375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-11"All We Like Sheep Have Gone Astray"3:53375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-12"Thy Rebuke Hath Broken His Heart"1:50375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor836063Howard CrookTenor Vocals18-13"Behold And See"1:59375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor836063Howard CrookTenor Vocals18-14"Let All The Angels Of God"1:29375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-15"The Lord Gave The Word"1:06375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-16"Why Do The Nations So Furiously Rage Together?"2:58375279Georg Friedrich HändelGeorge Frideric Handel853477John Tomlinson (2)Bass Vocals837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-17"Thou Shalt Break Them"2:07375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor836063Howard CrookTenor Vocals18-18"Hallelujah"3:57375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChorus837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorPt. 318-19"I Know That My Redeemer Liveth"6:42375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor899625Arleen AugerArleen AugérSoprano Vocals18-20"If God Be For Us"4:41375279Georg Friedrich HändelGeorge Frideric Handel837588Trevor PinnockConductor789776Anne Sofie Von OtterContralto Vocals834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor18-21"Worthy Is The Lamb... Amen"7:29375279Georg Friedrich HändelGeorge Frideric Handel870694The English Concert ChoirChoir837588Trevor PinnockConductor834537Hans-Peter SchweigmannEngineer1418824Charles JennensLibretto By4713045The English ConcertOrchestra836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCD 19: Scarlatti, D: Sonatas19-1Sonata In C Major, K.5023:54304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-2Sonata In C, K.4605:44304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-3Sonata In C, K.4613:33304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-4Sonata In D Minor, K.5162:54304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-5Sonata In D Minor, K.5173:11304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-6Sonata In D Major, K.4783:29304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-7Sonata In D Major, K.4794:32304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-8Sonata In F Major, K.5184:22304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-9Sonata In F Minor, K.5193:07304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-10Sonata In G Minor, K.5465:26304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-11Sonata In G Major, K.5474:04304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-12Sonata In B Flat Major, K.5292:33304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-13Sonata In B Flat Major, K.5445:26304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer19-14Sonata In B Flat Major, K.5453:09304973Domenico ScarlattiGiuseppe Domenico Scarlatti834537Hans-Peter SchweigmannEngineer837588Trevor PinnockHarpsichord836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducerCD 20: Bach, C.P.E.: Symphonies For Strings, Wq 182 No.1-6 / Bach, J.C.: Quintet In D Major Op.11 No.6Sinfonia In G, Wq 182 No.120-11. Allegro di Molto3:42841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-22. Poco Adagio4:04841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-33. Presto3:50841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSinfonia In C, Wq 182 No.320-41. Allegro Assai3:20841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-52. Poco Adagio3:38841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-63. Presto5:06841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSinfonia In C, Wq 182 No.320-71. Allegro Assai2:43841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-82. Adagio3:17841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-93. Allegretto3:36841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSinfonia In A, Wq 182 No.420-101. Allegro Ma Non Troppo4:25841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-112. Largo Ma Inocentemente3:28841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-123. Allegro Assai4:01841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSinfonia In B Minor Wq 182 No.520-131. Allegretto4:18841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-142. Larghetto2:38841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-153. Presto3:49841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorSinfonia In E Major Wq 182 No.620-161. Allegro di Molto2:26841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-172. Poco Andante3:09841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-183. Allegro Spiritoso3:12841803Carl Philipp Emanuel Bach837588Trevor PinnockConductor833561Klaus ScheibeEngineer4713045The English ConcertOrchestra919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorQuintet In D For Flute, Oboe, Violin, Viola & Continuo, Op.11, No.620-191. Allegro7:23842307Johann Christian Bach833561Klaus ScheibeEngineer4713045The English ConcertOrchestra837588Trevor PinnockPiano836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-202. Andantino3:43842307Johann Christian Bach833561Klaus ScheibeEngineer4713045The English ConcertOrchestra837588Trevor PinnockPiano836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording Supervisor20-213. Allegro Assai2:53842307Johann Christian Bach833561Klaus ScheibeEngineer4713045The English ConcertOrchestra837588Trevor PinnockPiano836767Charlotte KrieschProducer919090Dr. Andreas HolschneiderProducer841675Dr. Gerd PloebschRecording SupervisorCD 21: Haydn: Symphonies No.45 "Farewell", No.88 & No.104 "London"Symphony No.45 In F-Sharp Minor, Hob.I:45 -"Farewell" Ed. H.C. Robbins Landon21-11. Allegro Assai5:36108568Joseph HaydnFranz Joseph Haydn424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGunter BreestProducer532429Wolfgang StengelRecording Supervisor21-22. Adagio7:32108568Joseph HaydnFranz Joseph Haydn424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGunter BreestProducer532429Wolfgang StengelRecording Supervisor21-33. Menuet (Allegretto)4:02108568Joseph HaydnFranz Joseph Haydn424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGunter BreestProducer532429Wolfgang StengelRecording Supervisor21-44. Finale (Presto - Adagio)7:46108568Joseph HaydnFranz Joseph Haydn424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGunter BreestProducer532429Wolfgang StengelRecording SupervisorSymphony No.88 In G Major, Hob.I:8821-51. Adagio - Allegro6:40108568Joseph HaydnFranz Joseph Haydn283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer, Recording Supervisor21-62. Largo7:20108568Joseph HaydnFranz Joseph Haydn283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer, Recording Supervisor21-73. Menuetto (Allegretto)4:48108568Joseph HaydnFranz Joseph Haydn283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer, Recording Supervisor21-84. Finale (Allegro Con Spirito)4:04108568Joseph HaydnFranz Joseph Haydn283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer, Recording SupervisorSymphony No.104 In D Major, Hob.I:104 - "London"21-91. Adagio - Allegro8:57108568Joseph HaydnFranz Joseph Haydn842238Eugen JochumConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor21-102. Andante8:28108568Joseph HaydnFranz Joseph Haydn842238Eugen JochumConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor21-113. Menuet (Allegro)5:11108568Joseph HaydnFranz Joseph Haydn842238Eugen JochumConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor21-124. Finale (Spiritoso)6:41108568Joseph HaydnFranz Joseph Haydn842238Eugen JochumConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorCD 22: Haydn: String Quartets No.63 In D, Op.64 No.5 "The Lark"; No.74 In G Minor, Op.74 No.3 "The Horseman"; No.77 In C, Op.76 No.3 "Emperor"String Quartet In D Major, Op.64, No.5 "The Lark", Hob.III:6322-11. Allegro Moderato5:45108568Joseph HaydnFranz Joseph Haydn874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer, Recording Supervisor22-22. Adagio. Cantabile6:19108568Joseph HaydnFranz Joseph Haydn874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer, Recording Supervisor22-33. Menuet. Allegretto3:11108568Joseph HaydnFranz Joseph Haydn874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer, Recording Supervisor22-44. Finale. Vivace2:09108568Joseph HaydnFranz Joseph Haydn874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer, Recording SupervisorString Quartet In G Minor, HIII No.74, Op.74 No.3 "The Horseman"22-51. Allegro5:10108568Joseph HaydnFranz Joseph Haydn874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer22-62. Largo Assai7:15108568Joseph HaydnFranz Joseph Haydn874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer22-73. Menuetto. Allegretto. Trio3:28108568Joseph HaydnFranz Joseph Haydn874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer874946Wolfgang MitlehnerRecording Supervisor, Engineer22-84. Finale. Allegro Con Brio5:43108568Joseph HaydnFranz Joseph Haydn874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]833562Günther BreestGuenther BreestProducer874946Wolfgang MitlehnerRecording Supervisor, EngineerString Quartet In C Major, Op.76, No.3 "Emperor", Hob.lll:7722-91. Allegro5:04108568Joseph HaydnFranz Joseph Haydn958012Harald BaudisEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]1083234Manfred RichterDr. Manfred RichterRecording Supervisor22-102. Poco Adagio, Cantabile7:33108568Joseph HaydnFranz Joseph Haydn958012Harald BaudisEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]1083234Manfred RichterDr. Manfred RichterRecording Supervisor22-113. Menuetto (Allegro)4:36108568Joseph HaydnFranz Joseph Haydn958012Harald BaudisEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]1083234Manfred RichterDr. Manfred RichterRecording Supervisor22-124. Finale (Presto)3:59108568Joseph HaydnFranz Joseph Haydn958012Harald BaudisEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String-Quartet]1083234Manfred RichterDr. Manfred RichterRecording SupervisorCD 23: Haydn: The Creation - HighlightsDie Schöpfung Hob. XXI:2Erster Teil23-11a. Einleitung. Die Vorstellung Des Chaos (Largo)7:05108568Joseph HaydnFranz Joseph Haydn283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor23-21b. Rezitativ Mit Chor: Im Anfange Schuf Gott Himmel Und Erde2:58108568Joseph HaydnFranz Joseph Haydn833071Walter BerryBass Vocals, Baritone Vocals909271Ottomar BorwitzkyCello833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried Van SwietenLibretto By260744Berliner PhilharmonikerOrchestra1057110Josef NeboisPiano [Cembalo]833074Otto GerdesProducer834636Hans WeberRecording Supervisor575045Fritz WunderlichTenor Vocals23-32. Arie Mit Chor: Nun Schwanden Vor Dem Heiligen Strahle4:02108568Joseph HaydnFranz Joseph Haydn833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor575045Fritz WunderlichTenor Vocals23-46. Arie: Rollend In Schäumenden Wellen4:14108568Joseph HaydnFranz Joseph Haydn575045Fritz WunderlichBass Vocals, Baritone Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor23-58. Arie: Nun Beut Die Flur Das Frische Grün5:37108568Joseph HaydnFranz Joseph Haydn283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals23-612.Rezitativ: Im Vollen Glanze Steiget Jetzt2:56108568Joseph HaydnFranz Joseph Haydn909271Ottomar BorwitzkyCello283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra1057110Josef NeboisPiano [Cembalo]833074Otto GerdesProducer834636Hans WeberRecording Supervisor575045Fritz WunderlichTenor Vocals23-713. Chor Mit Soli: Die Himmel Erzählen Die Ehre Gottes4:02108568Joseph HaydnFranz Joseph Haydn833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals575045Fritz WunderlichTenor VocalsZweiter Teil23-818. Terzett: In Holder Anmut Stehn - 19. Chor Mit Soli Der Herr Ist Gross In Seiner Macht7:38108568Joseph HaydnFranz Joseph Haydn833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals575045Fritz WunderlichTenor Vocals844419Werner KrennTenor Vocals23-921. Rezitativ: "Gleich ffnet sich der Erde Scho" (Raphael)3:02108568Joseph HaydnFranz Joseph Haydn833071Walter BerryBass Vocals, Baritone Vocals909271Ottomar BorwitzkyCello283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra1057110Josef NeboisPiano [Cembalo]833074Otto GerdesProducer834636Hans WeberRecording Supervisor23-1022. Arie: "Nun Scheint In Vollem Glanze Der Himmel" (Raphael)3:46108568Joseph HaydnFranz Joseph Haydn833071Walter BerryBass Vocals, Baritone Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor23-1124. Arie: Mit Würd' Und Hoheit Angetan3:58108568Joseph HaydnFranz Joseph Haydn283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor575045Fritz WunderlichTenor Vocals23-1226. Chor: Vollendet Ist Das Grosse Werk - 27. Terzett: Zu Dir, O Herr - 28. Chor: Vollendet Ist Das Grosse Werk9:06108568Joseph HaydnFranz Joseph Haydn833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals844419Werner KrennTenor VocalsDritter Teil23-1332. Duett: Holde Gattin, Dir Zur Seite - Der Tauende Morgen7:07108568Joseph HaydnFranz Joseph Haydn833168Dietrich Fischer-DieskauBaritone Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer1489519Gottfried van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals23-1434. Schlusschor mit Soli: Singt dem Herren alle Stimmen4:02108568Joseph HaydnFranz Joseph Haydn833168Dietrich Fischer-DieskauBaritone Vocals833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor833554Christa LudwigContralto Vocals835063Günter HermannsEngineer1489519Gottfried Van SwietenLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals575045Fritz WunderlichTenor VocalsCD 24: Mozart, W.A.: "Eine Kleine Nachtmusik", K.525; Symphonies No.40, K.550 & No.41 "Jupiter", K.551Serenade In G, K.525 "Eine Kleine Nachtmusik"24-11. Allegro6:1595546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra839988Werner MayerProducer, Recording Supervisor24-22. Romance (Andante)5:5795546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra839988Werner MayerProducer, Recording Supervisor24-33. Menuetto (Allegretto)2:2395546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra839988Werner MayerProducer, Recording Supervisor24-44. Rondo (Allegro)4:5295546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra839988Werner MayerProducer, Recording SupervisorSymphony No.40 In G Minor, K.55024-51. Molto Allegro8:2795546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording Supervisor24-62. Andante8:0595546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording Supervisor24-73. Menuetto (Allegretto) - Trio4:4695546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording Supervisor24-84. Finale (Allegro Assai)5:0395546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording SupervisorSymphony No. 41 In C Major, K.551 - "Jupiter"24-91. Allegro Vivace7:3895546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording Supervisor24-102. Andante Cantabile7:3995546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording Supervisor24-113. Menuetto (Allegretto)5:2395546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording Supervisor24-124. Molto Allegro6:2995546Wolfgang Amadeus Mozart283127Karl BöhmConductor1484313Walter Alfred WettlerEngineer754974Wiener PhilharmonikerOrchestra1098168Elsa SchillerProducer856141Wolfgang LohseRecording SupervisorCD 25: Mozart, W.A.: Piano Concerto No.20 In D Minor, K.466; Fantasia In D Minor, K.397; Piano Concerto No.21 In C, K.467Piano Concerto No. 20 In D Minor, K.46625-11. Allegro13:3095546Wolfgang Amadeus Mozart835063Günter HermannsEngineer843911Camerata Academica SalzburgCamerata Academica Des Mozarteums SalzburgOrchestra847180Géza AndaPiano, Conductor463963Karl FaustC. FaustProducer25-22. Romance8:0095546Wolfgang Amadeus Mozart835063Günter HermannsEngineer843911Camerata Academica SalzburgCamerata Academica Des Mozarteums SalzburgOrchestra847180Géza AndaPiano, Conductor463963Karl FaustC. FaustProducer25-33. Rondo (Allegro Assai)6:2295546Wolfgang Amadeus Mozart835063Günter HermannsEngineer843911Camerata Academica SalzburgCamerata Academica Des Mozarteums SalzburgOrchestra847180Géza AndaPiano, Conductor463963Karl FaustC. FaustProducerFantasia In D Minor, K.39725-4Andante5:4195546Wolfgang Amadeus Mozart565422Heinz WildhagenEngineer157707Wilhelm KempffPiano834636Hans WeberRecording SupervisorPiano Concerto No.21 In C Major, K.46725-51. Allegro Maestoso - Cadenza: Géza Anda13:5395546Wolfgang Amadeus Mozart835063Günter HermannsEngineer843911Camerata Academica SalzburgCamerata Academica Des Mozarteums SalzburgOrchestra847180Géza AndaPiano, Conductor834636Hans WeberRecording Supervisor25-62. Andante7:1595546Wolfgang Amadeus Mozart835063Günter HermannsEngineer843911Camerata Academica SalzburgCamerata Academica Des Mozarteums SalzburgOrchestra847180Géza AndaPiano, Conductor834636Hans WeberRecording Supervisor25-73. Allegro Vivace Assai - Cadenza: Géza Anda6:2695546Wolfgang Amadeus Mozart835063Günter HermannsEngineer843911Camerata Academica SalzburgCamerata Academica Des Mozarteums SalzburgOrchestra847180Géza AndaPiano, Conductor834636Hans WeberRecording SupervisorCD 26: Mozart: Clarinet Quintet In A, K581; String Quintet In G Minor, K516Clarinet Quintet In A, K.58126-11. Allegro9:1895546Wolfgang Amadeus Mozart861276Gervase de PeyerClarinet874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]833562Günther BreestGuenther BreestRecording Supervisor26-22. Larghetto7:1095546Wolfgang Amadeus Mozart861276Gervase de PeyerClarinet874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]833562Günther BreestGuenther BreestRecording Supervisor26-33. Menuetto7:0695546Wolfgang Amadeus Mozart861276Gervase de PeyerClarinet874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]833562Günther BreestGuenther BreestRecording Supervisor26-44. Allegretto Con Variazioni9:2695546Wolfgang Amadeus Mozart861276Gervase de PeyerClarinet874946Wolfgang MitlehnerEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]833562Günther BreestGuenther BreestRecording SupervisorString Quintet No.3 In G Minor, K.51626-51. Allegro10:1795546Wolfgang Amadeus Mozart834537Hans-Peter SchweigmannEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]839988Werner MayerRecording Supervisor882842Cecil AronowitzViola26-62. Menuetto (Allegretto)5:1295546Wolfgang Amadeus Mozart834537Hans-Peter SchweigmannEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]839988Werner MayerRecording Supervisor882842Cecil AronowitzViola26-73. Adagio Ma Non Troppo8:4295546Wolfgang Amadeus Mozart834537Hans-Peter SchweigmannEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]839988Werner MayerRecording Supervisor882842Cecil AronowitzViola26-84. Adagio - Allegro10:1695546Wolfgang Amadeus Mozart834537Hans-Peter SchweigmannEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]839988Werner MayerRecording Supervisor882842Cecil AronowitzViolaCD 27: Mozart, W.A.: Le Nozze Di Figaro, K.492 - HighlightsLe Nozze di Figaro, K.49227-1Overture4:1795546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording SupervisorAct 127-2"Se A Caso Madama la Notte Ti Chiama"2:3795546Wolfgang Amadeus Mozart573239Hermann PreyBaritone Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor850889Edith MathisSoprano Vocals27-3"Se Vuol Ballare, Signor Contino"2:3595546Wolfgang Amadeus Mozart573239Hermann PreyBaritone Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor27-4"La Vendetta, Oh, la Vendetta"3:0995546Wolfgang Amadeus Mozart534901Peter LaggerBass Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor27-5"Non So Pi Cosa Son, Cosa Faccio"3:1595546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By532276Tatiana TroyanosMezzo-soprano Vocals841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor27-6"Non Pi Andrai"3:4295546Wolfgang Amadeus Mozart573239Hermann PreyBaritone Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording SupervisorAct 227-7"Porgi Amor"4:1595546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals27-8"Voi Che Sapete"3:0495546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By532276Tatiana TroyanosMezzo-soprano Vocals841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor27-9"Venite... Inginocchiatevi..."3:1495546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor850889Edith MathisSoprano VocalsAct 327-10"Vedro Mentr'io Sospiro"3:3395546Wolfgang Amadeus Mozart833168Dietrich Fischer-DieskauBaritone Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor27-11"E Susanna Non Vien!"1:4595546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals27-12"Dove Sono I Bei Momenti"4:5895546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals27-13"Che Soave Zeffiretto"3:3195546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor850889Edith MathisSoprano Vocals833076Gundula JanowitzSoprano VocalsAct 427-14"L'ho perduta... me meschina!"1:4095546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor931254Barbara VogelSoprano Vocals27-15"Aprite Un Po' Quegli Occhi"2:3895546Wolfgang Amadeus Mozart573239Hermann PreyBaritone Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor27-16"Giunse Alfin Il Momento"1:2395546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor850889Edith MathisSoprano Vocals27-17"Deh Vieni, Non Tardar"4:1095546Wolfgang Amadeus Mozart283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor850889Edith MathisSoprano Vocals27-18"Gente, Gente, All'armi"5:0895546Wolfgang Amadeus Mozart1122169Patricia Johnson (3)Alto Vocals833168Dietrich Fischer-DieskauBaritone Vocals573239Hermann PreyBaritone Vocals868780Klaus HirteBass Vocals534901Peter LaggerBass Vocals283127Karl BöhmConductor835063Günter HermannsEngineer862839Lorenzo Da PonteLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By532276Tatiana TroyanosMezzo-soprano Vocals841431Orchester Der Deutschen Oper BerlinOrchestra856141Wolfgang LohseRecording Supervisor931254Barbara VogelSoprano Vocals850889Edith MathisSoprano Vocals833076Gundula JanowitzSoprano Vocals867660Erwin WohlfahrtTenor Vocals861473Martin VantinTenor VocalsCD 28: Mozart, W.A.: Requiem, K.626; Laudate Dominum, K.339; Exsultate, Jubilate, K.165Requiem In D Minor, K.626 Compl. By Franz Xaver Süssmayer28-11. Introitus: Requiem6:0195546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor833547Wilma LippSoprano Vocals28-22. Kyrie2:5195546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-33. Sequentia: Dies Irae1:5995546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-43. Sequentia: Tuba Mirum4:2495546Wolfgang Amadeus Mozart833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor833070Hilde Rössel-MajdanContralto Vocals835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor833547Wilma LippSoprano Vocals277423Anton DermotaTenor Vocals28-53. Sequentia: Tuba Mirum2:3295546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-63. Sequentia: Recordare5:2995546Wolfgang Amadeus Mozart833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor833070Hilde Rössel-MajdanContralto Vocals835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor833547Wilma LippSoprano Vocals277423Anton DermotaTenor Vocals28-73. Sequentia: Confutatis2:3995546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-83. Sequentia: Lacrimosa3:2895546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-94. Offertorium: Domine Jesu4:1695546Wolfgang Amadeus Mozart833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor833070Hilde Rössel-MajdanContralto Vocals835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor833547Wilma LippSoprano Vocals277423Anton DermotaTenor Vocals28-104. Offertorium: Hostias5:1095546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-115. Sanctus1:4995546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-126. Benedictus5:1495546Wolfgang Amadeus Mozart833071Walter BerryBass Vocals, Baritone Vocals833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor833070Hilde Rössel-MajdanContralto Vocals835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor833547Wilma LippSoprano Vocals277423Anton DermotaTenor Vocals28-137. Agnus Dei3:5695546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor28-148.Communio: Lux Aeterna6:2595546Wolfgang Amadeus Mozart833075Wiener SingvereinChoir833165Reinhold SchmidChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor833547Wilma LippSoprano VocalsVesperae Solennes de Confessore In C, K.33928-155. Laudate Dominum Omnes Gentes (Ps. 116/117)5:1295546Wolfgang Amadeus Mozart646860RIAS-KammerchorRIAS KammerchorChoir646865Günther ArndtChorus Master833697Ferenc FricsayConductor835063Günter HermannsEngineer688716Radio-Symphonie-Orchester BerlinOrchestra646868Wolfgang Meyer (2)Organ833074Otto GerdesRecording Supervisor836125Maria StaderSoprano Vocals902988Helmut HellerViolinExsultate, Jubilate, K.16528-161. Exsultate, Jubilate5:0995546Wolfgang Amadeus Mozart833697Ferenc FricsayConductor835063Günter HermannsEngineer688716Radio-Symphonie-Orchester BerlinOrchestra833074Otto GerdesRecording Supervisor836125Maria StaderSoprano Vocals28-172. Fulget Amica Dies0:5795546Wolfgang Amadeus Mozart833697Ferenc FricsayConductor835063Günter HermannsEngineer688716Radio-Symphonie-Orchester BerlinOrchestra833074Otto GerdesRecording Supervisor836125Maria StaderSoprano Vocals28-183. Tu Virginum Corona6:1795546Wolfgang Amadeus Mozart833697Ferenc FricsayConductor835063Günter HermannsEngineer688716Radio-Symphonie-Orchester BerlinOrchestra833074Otto GerdesRecording Supervisor836125Maria StaderSoprano Vocals28-194. Alleluia2:3795546Wolfgang Amadeus Mozart833697Ferenc FricsayConductor835063Günter HermannsEngineer688716Radio-Symphonie-Orchester BerlinOrchestra833074Otto GerdesRecording Supervisor836125Maria StaderSoprano VocalsCD 29: Beethoven: Symphonies No.5 In C Minor, Op.67 & No.6 In F, Op.68 "Pastorale"Symphony No.5 In C Minor, Op.6729-11. Allegro Con Brio7:1495544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-22. Andante Con Moto10:0195544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-33. Allegro4:5595544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-44. Allegro8:5795544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording SupervisorSymphony No.6 In F, Op.68 -"Pastoral"29-51. Erwachen Heiterer Empfindungen Bei Der Ankunft Auf Dem Lande: Allegro Ma Non Troppo8:5795544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-62. Szene Am Bach: (Andante Molto Mosso)11:3295544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-73. Lustiges Zusammensein Der Landleute (Allegro)3:0295544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-84. Gewitter, Sturm (Allegro)3:2595544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording Supervisor29-95. Hirtengesang. Frohe Und Dankbare Gefühle Nach Dem Sturm: Allegretto8:4695544Ludwig van Beethoven283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor833074Otto GerdesRecording SupervisorCD 30: Beethoven: Symphony No.9 In D Minor, Op.125 "Choral"Symphony No.9 In D Minor, Op.125 - "Choral"30-11. Allegro Ma Non Troppo, Un Poco Maestoso15:1995544Ludwig van Beethoven299702Leonard BernsteinConductor833561Klaus ScheibeEngineer754974Wiener PhilharmonikerOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor30-22. Molto Vivace11:1595544Ludwig van Beethoven299702Leonard BernsteinConductor833561Klaus ScheibeEngineer754974Wiener PhilharmonikerOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor30-33. Adagio Molto E Cantabile17:4995544Ludwig van Beethoven299702Leonard BernsteinConductor833561Klaus ScheibeEngineer754974Wiener PhilharmonikerOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor30-44. Presto -7:4695544Ludwig van Beethoven299702Leonard BernsteinConductor833561Klaus ScheibeEngineer754974Wiener PhilharmonikerOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor4.30-5Presto- "O Freunde, Nicht Diese Töne!" - Allegro Assai18:4295544Ludwig van Beethoven837498Kurt MollBass Vocals931243Konzertvereinigung Wiener StaatsopernchorChoir855167Norbert BalatschChorus Master299702Leonard BernsteinConductor931244Hanna SchwarzContralto Vocals833561Klaus ScheibeEngineer754974Wiener PhilharmonikerOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor837512Gwyneth JonesSoprano Vocals543206René KolloTenor VocalsCD 31: Beethoven: Piano Concerto No.5 In E Flat Major, Op.73 "Emperor"; Piano Concerto No.4 In G, Op.58Piano Concerto No.5 In E Flat Major Op.73 -"Emperor"31-11. Allegro20:2795544Ludwig van Beethoven283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano839988Werner MayerProducer, Recording Supervisor31-22. Adagio Un Poco Mosso8:0395544Ludwig van Beethoven283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano839988Werner MayerProducer, Recording Supervisor31-33. Rondo (Allegro)10:1595544Ludwig van Beethoven283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano839988Werner MayerProducer, Recording SupervisorPiano Concerto No.4 In G Major, Op.5831-41. Allegro Moderato17:1695544Ludwig van Beethoven283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano839988Werner MayerProducer, Recording Supervisor31-52. Andante Con Moto5:0795544Ludwig van Beethoven283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano839988Werner MayerProducer, Recording Supervisor31-63. Rondo (Vivace)10:0795544Ludwig van Beethoven283127Karl BöhmConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano839988Werner MayerProducer, Recording SupervisorCD 32: Beethoven: Sonata For Violin And Piano No.9 In A, Op.47 "Kreutzer"; String Quartet No.7 In F, Op.59 No.1 "Rasumovsky"Sonata For Violin And Piano No.9 In A, Op.47 - "Kreutzer"32-11. Adagio Sostenuto - Presto14:5195544Ludwig van Beethoven841676Hansjoachim ReiserHans-Joachim ReiserEngineer157707Wilhelm KempffPiano629913Dr. Wilfried DaenickeProducer1083234Manfred RichterDr. Manfred RichterRecording Supervisor532086Yehudi MenuhinViolin32-22. Andante Con Variazioni16:0995544Ludwig van Beethoven841676Hansjoachim ReiserHans-Joachim ReiserEngineer157707Wilhelm KempffPiano629913Dr. Wilfried DaenickeProducer1083234Manfred RichterDr. Manfred RichterRecording Supervisor532086Yehudi MenuhinViolin32-33. Finale (Presto)9:4295544Ludwig van Beethoven841676Hansjoachim ReiserHans-Joachim ReiserEngineer157707Wilhelm KempffPiano629913Dr. Wilfried DaenickeProducer1083234Manfred RichterDr. Manfred RichterRecording Supervisor532086Yehudi MenuhinViolinString Quartet In F, Op.59 No.1 - "Rasumovsky"32-41. Allegro9:4295544Ludwig van Beethoven565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]1098168Elsa SchillerProf. Elsa SchillerProducer958011Karl-Heinz SchneiderRecording Supervisor32-52. Allegretto Vivace E Sempre Scherzando8:3495544Ludwig van Beethoven565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]1098168Elsa SchillerProf. Elsa SchillerProducer958011Karl-Heinz SchneiderRecording Supervisor32-63. Adagio Molto E Mesto12:1095544Ludwig van Beethoven565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]1098168Elsa SchillerProf. Elsa SchillerProducer958011Karl-Heinz SchneiderRecording Supervisor32-74. Theme Russe (Allegro)6:4095544Ludwig van Beethoven565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]1098168Elsa SchillerProf. Elsa SchillerProducer958011Karl-Heinz SchneiderRecording SupervisorCD 33: Beethoven: Piano Sonata No.8 In C Minor, Op.13 "Pathtique"; Piano Sonata No.23 In F Minor, Op.57 "Appassionata"; Piano Sonata No.31 In A Flat, Op.110Piano Sonata No.8 In C Minor, Op.13 -"Pathtique"33-11. Grave - Allegro di Molto E Con Brio9:1195544Ludwig van Beethoven833561Klaus ScheibeEngineer308115Emil GilelsPiano532268Hanno RinkeProducer839988Werner MayerRecording Supervisor33-22. Adagio Cantabile5:4695544Ludwig van Beethoven833561Klaus ScheibeEngineer308115Emil GilelsPiano532268Hanno RinkeProducer839988Werner MayerRecording Supervisor33-33. Rondo (Allegro)5:0495544Ludwig van Beethoven833561Klaus ScheibeEngineer308115Emil GilelsPiano532268Hanno RinkeProducer839988Werner MayerRecording SupervisorPiano Sonata No.23 In F Minor, Op.57 -"Appassionata"33-41. Allegro Assai11:0895544Ludwig van Beethoven833561Klaus ScheibeEngineer308115Emil GilelsPiano532268Hanno RinkeProducer833562Günther BreestGuenther BreestRecording Supervisor, Producer33-52. Andante Con Moto6:3195544Ludwig van Beethoven833561Klaus ScheibeEngineer308115Emil GilelsPiano532268Hanno RinkeProducer833562Günther BreestGuenther BreestRecording Supervisor, Producer33-63. Allegro Ma Non Troppo7:5595544Ludwig van Beethoven833561Klaus ScheibeEngineer308115Emil GilelsPiano532268Hanno RinkeProducer833562Günther BreestGuenther BreestRecording Supervisor, ProducerPiano Sonata No.31 In A Flat Major, Op.11033-71. Moderato Cantabile Molto Espressivo7:3095544Ludwig van Beethoven308115Emil GilelsPiano532268Hanno RinkeProducer33-82. Allegro Molto2:2195544Ludwig van Beethoven308115Emil GilelsPiano839988Werner MayerProducer33-93. Adagio Ma Non Troppo - Fuga (Allegro Ma Non Troppo)12:1695544Ludwig van Beethoven308115Emil GilelsPiano839988Werner MayerProducerCD 34: Weber: Der Freischütz (Highlights)Der Freischütz, J. 27734-1Overture9:49620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording SupervisorAct 134-2 "Viktoria! Viktoria! ..." - Bauern-Marsch - "Schau Der Herr Mich An Als König!"4:49620726Carl Maria von Weber526412Günther LeibBass Vocals455839Rundfunkchor LeipzigChoir654834Horst NeumannChorus Master833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor954278Hans-Jörn WeberHans Jörn WeberVoice Actor34-3Walzer1:22620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor34-4"Nein, Länger Trag' Ich Nicht Die Qualen" - "Durch Die Wälder, Durch Die Auen"6:33620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor446577Peter SchreierTenor Vocals34-5"Schweig - Damit Dich Niemand Warnt!"3:09620726Carl Maria von Weber526411Theo AdamBass Vocals833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording SupervisorAct 234-6"Schelm! Halt Fest!"4:52620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor850889Edith MathisSoprano Vocals833076Gundula JanowitzSoprano Vocals34-7"Kommt Ein Schlanker Bursch Gegangen"3:48620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor850889Edith MathisSoprano Vocals34-8"Wie Nahte Mir Der Schlummer" - "Leise, Leise, Fromme Weise!"8:24620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor833076Gundula JanowitzSoprano Vocals34-9"Milch Des Mondes Fiel Aufs Kraut" - "Samiel! Samiel! Erschein!" - "Ha!-Furchtbar Gähnt Der Düstre Abgrund"16:26620726Carl Maria von Weber526411Theo AdamBass Vocals455839Rundfunkchor LeipzigChoir654834Horst NeumannChorus Master833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor446577Peter SchreierTenor Vocals474992Gerhard PaulVoice Actor954278Hans-Jörn WeberVoice ActorAct 334-10"Und Ob Die Wolke Sie Verhülle"6:01620726Carl Maria von Weber833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor833076Gundula JanowitzSoprano Vocals34-11Wir Winden Dir Den Jungfernkranz4:58620726Carl Maria von Weber2540086Brigitte PfretzschnerAlto Vocals455839Rundfunkchor LeipzigChoir654834Horst NeumannChorus Master833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By931363Ingeborg SpringerMezzo-soprano Vocals578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording Supervisor840440Renate HoffSoprano Vocals1190051Renate KrahmerSoprano Vocals463442Ingrid HilleVoice Actor34-12"Was Gleicht Wohl Auf Erden Dem Jägervergnügen?"2:31620726Carl Maria von Weber455839Rundfunkchor LeipzigChoir654834Horst NeumannChorus Master833155Carlos KleiberConductor425129Claus StrübenKlaus StrübenEngineer834537Hans-Peter SchweigmannEngineer1060060Johann Friedrich KindLibretto By578737Staatskapelle DresdenOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer836012Eberhard GeigerRecording SupervisorCD 35: Rossini: Il Barbiere di Siviglia (Highlights) Il Barbiere di Siviglia Ed. Alberto Zedda (1928-)35-1Overture (Sinfonia)7:27442174Gioacchino Rossini368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording SupervisorAct 135-2"Ecco, Ridente In Cielo" - "Ehi, Fiorello?" - "Gente Indiscreta!"7:29442174Gioacchino Rossini1390360Renato CesariBass Vocals841590The Ambrosian Opera ChorusAmbrosian Opera ChorusChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1952578Barna KovátsGuitar1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra986222Theodor GuschlbauerPiano [Cembalo]463963Karl FaustProducer368138Rainer BrockRecording Supervisor1129949Luigi AlvaTenor Vocals35-3No.2 Cavatina: "Largo Al Factotum"4:39442174Gioacchino Rossini573239Hermann PreyBaritone Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor35-4Una Voce Poco Fa5:38442174Gioacchino Rossini368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor35-5No.6 Aria: "La Calunnia Un Venticello"4:32442174Gioacchino Rossini833824Paolo MontarsoloBass Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor35-6No.7 Duetto: "Dunque Io Son... Tu Non M'inganni?"4:57442174Gioacchino Rossini573239Hermann PreyBass Vocals, Baritone Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor35-7No.8 Aria: "A Un Dottor Della Mia Sorte"6:12442174Gioacchino Rossini1640338Enzo DaraBaritone Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording SupervisorAct 235-8No.10 Duetto: "Pace E Gioia Sia Con Voi"2:49442174Gioacchino Rossini1640338Enzo DaraBaritone Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor1129949Luigi AlvaTenor Vocals35-9No.11 Aria: "Contro Un Cor Che Accende Amore"4:44442174Gioacchino Rossini368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor1129949Luigi AlvaTenor Vocals35-10No.13 Quintetto: "Don Basilio!" "Cosa Veggo!"10:32442174Gioacchino Rossini1640338Enzo DaraBaritone Vocals573239Hermann PreyBaritone Vocals833824Paolo MontarsoloBass Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor1129949Luigi AlvaTenor Vocals35-11No.15 Temporale (Thunderstorm)3:09442174Gioacchino Rossini368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor35-12No.16 Terzetto: "Ah! Qual Colpo Inaspettato!"6:21442174Gioacchino Rossini573239Hermann PreyBaritone Vocals368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor1129949Luigi AlvaTenor Vocals35-13No.19 Finaletto II: "Di Si Felice Innesto"2:20442174Gioacchino Rossini1640338Enzo DaraBaritone Vocals573239Hermann PreyBaritone Vocals833824Paolo MontarsoloBass Vocals841590The Ambrosian Opera ChorusAmbrosian Opera ChorusChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor834537Hans-Peter SchweigmannEngineer1868527Cesare SterbiniLibretto By4679930Giuseppe PetroselliniLibretto By1548620Pierre-Augustin Caron De BeaumarchaisPierre Augustin Caron de BeaumarchaisLibretto By1496956Stefania MalagùStefania MalaguMezzo-soprano Vocals837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor1129949Luigi AlvaTenor VocalsCD 36: Schubert: Symphony No.8 "Unfinished"; Symphony No.9 "The Great" Symphony No.8 In B Minor, D.759 - "Unfinished"36-11. Allegro Moderato11:31283469Franz Schubert283127Karl BöhmConductor834537Hans-Peter SchweigmannEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer856141Wolfgang LohseRecording Supervisor36-22. Andante Con Moto11:29283469Franz Schubert283127Karl BöhmConductor834537Hans-Peter SchweigmannEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer856141Wolfgang LohseRecording Supervisor Symphony No.9 In C Major, D. 944 - "The Great"36-31. Andante - Allegro Ma Non Troppo14:21283469Franz Schubert283127Karl BöhmConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer36-42. Andante Con Moto13:51283469Franz Schubert283127Karl BöhmConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer36-53. Scherzo (Allegro Vivace)11:16283469Franz Schubert283127Karl BöhmConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer36-64. Allegro Vivace11:25283469Franz Schubert283127Karl BöhmConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducerCD 37: Schubert: Piano Quintet In A, D.667 "The Trout"; String Quartet No.14 In D Minor, D.810 "Death And The Maiden"Piano Quintet In A, D.667 - "The Trout"37-11. Allegro Vivace9:28283469Franz Schubert883966Josef MerzCello861506Georg HörtnagelGeorg Maximilian HörtnagelDouble Bass833561Klaus ScheibeEngineer839412Christoph EschenbachPiano368138Rainer BrockRecording Supervisor883967Oskar RiedlViola883962Rudolf KoeckertViolin37-21. Allegro Vivace7:02283469Franz Schubert883966Josef MerzCello861506Georg HörtnagelGeorg Maximilian HörtnagelDouble Bass833561Klaus ScheibeEngineer839412Christoph EschenbachPiano368138Rainer BrockRecording Supervisor883967Oskar RiedlViola883962Rudolf KoeckertViolin37-33. Scherzo (Presto)4:23283469Franz Schubert883966Josef MerzCello861506Georg HörtnagelGeorg Maximilian HörtnagelDouble Bass833561Klaus ScheibeEngineer839412Christoph EschenbachPiano368138Rainer BrockRecording Supervisor883967Oskar RiedlViola883962Rudolf KoeckertViolin37-44. Thema - Andantino - Variazioni I-V - Allegretto7:42283469Franz Schubert883966Josef MerzCello861506Georg HörtnagelGeorg Maximilian HörtnagelDouble Bass833561Klaus ScheibeEngineer839412Christoph EschenbachPiano368138Rainer BrockRecording Supervisor883967Oskar RiedlViola883962Rudolf KoeckertViolin37-55. Finale (Allegro Giusto)6:43283469Franz Schubert883966Josef MerzCello861506Georg HörtnagelGeorg Maximilian HörtnagelDouble Bass833561Klaus ScheibeEngineer839412Christoph EschenbachPiano368138Rainer BrockRecording Supervisor883967Oskar RiedlViola883962Rudolf KoeckertViolinString Quartet No.14 In D Minor, D.810 - "Death And The Maiden"37-61. Allegro11:28283469Franz Schubert565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]958011Karl-Heinz SchneiderRecording Supervisor37-72. Andante Con Moto14:20283469Franz Schubert565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]958011Karl-Heinz SchneiderRecording Supervisor37-83. Scherzo (Allegro Molto)3:49283469Franz Schubert565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]958011Karl-Heinz SchneiderRecording Supervisor37-94. Presto9:17283469Franz Schubert565422Heinz WildhagenEngineer874943Amadeus-QuartettAmadeus QuartetEnsemble [String Quartet]958011Karl-Heinz SchneiderRecording SupervisorCD 38: Schubert: Piano Sonata No.21 In B Flat, D.960; 3 Impromptus; 2 Moments MusicauxPiano Sonata No.21 In B Flat, D.96038-11. Molto Moderato21:12283469Franz Schubert834537Hans-Peter SchweigmannEngineer157707Wilhelm KempffPiano1083234Manfred RichterDr. Manfred RichterRecording Supervisor38-22. Andante Sostenuto9:19283469Franz Schubert834537Hans-Peter SchweigmannEngineer157707Wilhelm KempffPiano1083234Manfred RichterDr. Manfred RichterRecording Supervisor38-33. Scherzo (Allegro Vivace Con Delicatezza)4:49283469Franz Schubert834537Hans-Peter SchweigmannEngineer157707Wilhelm KempffPiano1083234Manfred RichterDr. Manfred RichterRecording Supervisor38-44. Allegro Ma Non Troppo8:01283469Franz Schubert834537Hans-Peter SchweigmannEngineer157707Wilhelm KempffPiano1083234Manfred RichterDr. Manfred RichterRecording Supervisor4 Impromptus, Op.90, D.89938-5No.3 In G Flat Major (Andante)7:01283469Franz Schubert833561Klaus ScheibeEngineer157707Wilhelm KempffPiano833074Otto GerdesProducer833078Otto Ernst WohlertRecording Supervisor38-6No.2 In E Flat Major (Allegro)4:40283469Franz Schubert833561Klaus ScheibeEngineer157707Wilhelm KempffPiano833074Otto GerdesProducer833078Otto Ernst WohlertRecording Supervisor6 Moments Musicaux, Op.94 D.78038-7No.2 In A Flat Major (Andantino)5:45283469Franz Schubert833561Klaus ScheibeEngineer157707Wilhelm KempffPiano1290899Hans RitterRecording Supervisor38-8No.5 In F Minor (Allegro Vivace)2:58283469Franz Schubert833561Klaus ScheibeEngineer157707Wilhelm KempffPiano1290899Hans RitterRecording Supervisor 4 Impromptus Op.142, D.93538-9No.3 In B Flat Major: Theme (Andante) With Variations7:19283469Franz Schubert833561Klaus ScheibeEngineer157707Wilhelm KempffPiano833074Otto GerdesProducer833078Otto Ernst WohlertRecording SupervisorCD 39: Schubert: Winterreise39-11. Gute Nacht5:18283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-22. Die Wetterfahne1:50283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-33. Gefrorne Tränen2:16283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-44. Erstarrung2:55283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-55. Der Lindenbaum4:48283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-66. Wasserflut4:35283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-77. Auf Dem Flusse3:31283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-88. Rückblick2:29283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-99. Irrlicht2:31283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1010. Rast3:06283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1111. Frühlingstraum4:08283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1212. Einsamkeit2:47283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1313. Die Post2:16283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1414. Der Greise Kopf3:14283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1515. Die Krähe2:22283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1616. Letzte Hoffnung2:02283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1717. Im Dorfe3:38283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1818. Der Stürmische Morgen0:54283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-1919. Täuschung0:54283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-2020. Der Wegweiser4:05283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-2121. Das Wirtshaus4:26283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-2222. Mut1:27283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-2323. Die Nebensonnen2:44283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducer39-2424. Der Leiermann4:09283469Franz Schubert833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer573244Wilhelm MüllerLibretto By424576Daniel BarenboimPiano847110Cord GarbenProducerCD 40: Paganini: Violin Concerto No.1; 10 CapricciViolin Concerto No.1 In D, Op.640-11. Allegro Maestoso22:08206281Niccolò Paganini539272Charles DutoitConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-22. Adagio5:58206281Niccolò Paganini539272Charles DutoitConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-33. Rondo (Allegro Spirituoso)9:45206281Niccolò Paganini539272Charles DutoitConductor833561Klaus ScheibeEngineer271875London Philharmonic OrchestraOrchestra368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin24 Caprices For Violin, Op.140-4No. 1 In E1:48206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-5No. 3 In E Minor2:51206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-6No. 4 In C Minor6:46206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-7No. 9 In E3:24206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-8No. 10 In G Minor2:20206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-9No. 11 In C4:41206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-10No. 14 In E Flat1:18206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-11No. 16 In G Minor1:21206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-12No. 17 In E Flat3:35206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolin40-13No. 24 In A Minor4:25206281Niccolò Paganini835063Günter HermannsEngineer368138Rainer BrockProducer839988Werner MayerRecording Supervisor846180Salvatore AccardoViolinCD 41: Berlioz: Symphonie Fantastique, Op.14; Overtures: Benvenuto Cellini, Le CorsaireSymphonie Fantastique, Op.1441-11. Reveries. Passions (Largo - Allegro Agitato Ed Appassionato Assai)14:50108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor633159Helmut BurkEngineer1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor41-22. Un Bal (Valse: Allegro Non Troppo)6:10108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor633159Helmut BurkEngineer1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor41-33. Scéne Aux Champs (Adagio)15:25108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor633159Helmut BurkEngineer1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor41-44. Marche Au Supplice (Allegretto Non Troppo)4:29108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor633159Helmut BurkEngineer1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor41-55. Songe D'une Nuit Du Sabbat (Larghetto - Allegro - Ronde Du Sabbat: Poco Meno Mosso)9:38108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor633159Helmut BurkEngineer1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor Benvenuto Cellini41-6Ouverture9:52108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor874946Wolfgang MitlehnerEngineer1959173Henri-Auguste BarbierAuguste BarbierLibretto By1959172Léon de WaillyLibretto By1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor41-7Overture "Le Corsaire", Op.218:39108565Hector Berlioz880725Myung-Whun ChungMyung Whun ChungConductor874946Wolfgang MitlehnerEngineer1066081Orchestre De L'Opéra BastilleOrchestra807313Lennart DehnRecording Supervisor Les Troyens Act 441-8No.29 Chasse Royale Et Orage - Pantomime9:37108565Hector Berlioz646860RIAS-KammerchorRIAS KammerchorChoir446105Rundfunkchor BerlinChoir881713Marcus CreedChorus Master696260James Levine (2)Conductor835063Günter HermannsEngineer1058952Virgil (3)Libretto By260744Berliner PhilharmonikerOrchestra532429Wolfgang StengelRecording SupervisorCD 42: Chopin: Piano Concerto No.1 In E Minor Op.11; Preludes; Barcarolle In F Sharp Minor Op.60; Scherzo Nr. 3 In Sharp Minor, Op.39Piano Concerto No.1 In E Minor, Op.11192325Frédéric Chopin42-11. Allegro Maestoso18:53368137Claudio AbbadoConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-22. Romance (Larghetto)9:54368137Claudio AbbadoConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor42-33. Rondo (Vivace)8:57368137Claudio AbbadoConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor24 Preludes, Op.28192325Frédéric Chopin42-41. In C Major0:35565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-53. In G Major0:53565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-66. In B Minor1:48565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-710. In C Sharp Minor0:28565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-815. In D Flat Major ("Raindrop")4:51565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor42-916. In B Flat Minor1:00565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-1017. In A Flat Major2:49565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-1120. In C Minor1:33565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-1221. In B Flat Major1:37565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-1324. In D Minor2:16565422Heinz WildhagenEngineer832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor, Producer42-14Barcarolle In F Sharp, Op.608:08192325Frédéric Chopin565422Heinz WildhagenEngineer832905Martha ArgerichPiano958011Karl-Heinz SchneiderRecording Supervisor42-15Scherzo No.3 In C Sharp Minor, Op.396:28192325Frédéric Chopin565422Heinz WildhagenEngineer832905Martha ArgerichPiano958011Karl-Heinz SchneiderRecording Supervisor CD 43: Chopin: Nocturnes (Selection)43-1Nocturne No.1 In B Flat Minor, Op.9 No.15:42192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-2Nocturne No.2 In E Flat, Op.9 No.24:33192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-3Nocturne No.3 In B, Op.9 No.37:15192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-4Nocturne No.4 In F, Op.15 No.14:28192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-5Nocturne No.7 In C Sharp Minor, Op.27 No.14:54192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-6Nocturne No.8 In D Flat, Op.27 No.26:27192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-7Nocturne No.9 In B, Op.32 No.15:19192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-8Nocturne No.10 In A Flat, Op.32 No.25:37192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-9Nocturne No.12 In G, Op.37 No.25:45192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-10Nocturne No.13 In C Minor, Op.48 No.16:15192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-11Nocturne No.15 In F Minor, Op.55 No.14:40192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-12Nocturne No.18 In E, Op.62 No.26:14192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording Supervisor43-13Nocturne No.19 In E Minor, Op.72 No.14:23192325Frédéric Chopin709138Karl-August NaeglerEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer847110Cord GarbenRecording SupervisorCD 44: Chopin: Ballade No.1 In G Minor, Op.23; Berceuse In D Flat, Op.57; Polonaise No.6 In A Flat, Op.53 -"Heroic; Impromptu No.1 In A Flat, Op.29; Excerpts From 12 Etudes, Op.10; Waltzes, Scherzos And Mazurkas44-1Ballade No.1 In G Minor, Op.239:31192325Frédéric Chopin833561Klaus ScheibeEngineer841533Tamás VásáryPiano834636Hans WeberRecording SupervisorBerceuse In D Flat, Op.57192325Frédéric Chopin44-2Andante5:21833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor Waltz No.14 In E Minor, Op.posth.192325Frédéric Chopin44-3Vivace3:03833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording SupervisorWaltz No.3 In A Minor, Op.34 No.2192325Frédéric Chopin44-4Lento5:23833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor44-5Impromptu No.1 In A Flat, Op.293:56192325Frédéric Chopin833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor12 Etudes, Op.10192325Frédéric Chopin44-6No.1 In C Major2:22833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor44-7No.6 In E Flat Minor3:19833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor44-8No.5 In G Flat "Black Keys"1:48833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor44-9No.12 In C Minor "Revolutionary"3:01833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor44-10Scherzo No.4 In E, Op.5411:24192325Frédéric Chopin841533Tamás VásáryPiano856141Wolfgang LohseProducer44-11Scherzo No.3 In C Sharp Minor, Op.397:37192325Frédéric Chopin841533Tamás VásáryPiano856141Wolfgang LohseProducerMazurka No.5 In B Flat Op.7 No.1192325Frédéric Chopin44-12Vivace2:20841533Tamás VásáryPiano856141Wolfgang LohseRecording Supervisor Mazurka No.49 In A Minor Op.68 No.2192325Frédéric Chopin44-13Lento2:37834537Hans-Peter SchweigmannEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording SupervisorMazurka No.58 In A Flat192325Frédéric Chopin44-14Poco Mosso1:19833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording SupervisorMazurka No.46 In C Op.67 No.3192325Frédéric Chopin44-15Allegretto1:32834537Hans-Peter SchweigmannEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording SupervisorPolonaise No.6 In A Flat, Op.53 -"Heroic"192325Frédéric Chopin44-16Maestoso6:55833561Klaus ScheibeEngineer841533Tamás VásáryPiano856141Wolfgang LohseRecording SupervisorCD 45: Liszt: Piano Concerto No.1 In E Flat, S.124; Piano Sonatan In B Minor, S.178; Hungarian Rhapsody No.6 In D Flat, S.244; Annes de Plerinage, S.163Piano Concerto No.1 In E Flat, S.12445-11. Allegro Maestoso5:07226461Franz Liszt368137Claudio AbbadoConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor45-22. Quasi Adagio - Allegretto Vivace - Allegro Animato8:27226461Franz Liszt368137Claudio AbbadoConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor45-33. Allegro Marziale Animato3:58226461Franz Liszt368137Claudio AbbadoConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano368138Rainer BrockRecording Supervisor Piano Sonata In B Minor, S.178 CD-Version/Originals45-4Lento Assai - Allegro Energico3:02226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-5Grandioso1:59226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-6Cantando Espressivo3:40226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-7Pesante - Recitativo2:05226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-8Andante Sostenuto0:46226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-9Quasi Adagio4:19226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-10Allegro Energico2:43226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-11Pi Mosso1:52226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-12Cantando Espressivo Senza Slentare1:14226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-13Stretta Quasi Presto - Presto - Prestissimo1:13226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor45-14Andante Sostenuto - Allegro Moderato - Lento Assai2:53226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano833562Günther BreestGuenther BreestProducer, Recording SupervisorHungarian Rhapsody No.6 In D Flat, S.24445-15Hungarian Rhapsody No.6 In D Flat, S.2446:20226461Franz Liszt565422Heinz WildhagenEngineer832905Martha ArgerichPiano958011Karl-Heinz SchneiderRecording SupervisorAnnes de Plerinage: 1e Anne: Suisse, S.16045-166. Valle D'Obermann14:28226461Franz Liszt834537Hans-Peter SchweigmannEngineer869796Lazar BermanPiano839988Werner MayerProducer, Recording SupervisorAnnes de Plerinage / 3me Anne, S. 16345-174. Les Jeux D'eau la Villa D'Este7:46226461Franz Liszt834537Hans-Peter SchweigmannEngineer869796Lazar BermanPiano839988Werner MayerProducer, Recording SupervisorCD 46: Mendelssohn-Bartholdy: Symphony No.4 Op.90 "Italian"; "The Hebrides" Overture; Excerpts Of "A Midsummer Night's Dream, Op. 61;Symphony No. 4 In A Major, Op. 90, Mwv N 16 - "Italian"46-11. Allegro Vivace10:49623293Felix Mendelssohn-BartholdyFelix Mendelssohn299702Leonard BernsteinConductor709138Karl-August NaeglerEngineer837568Israel Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer532268Hanno RinkeProducer834636Hans WeberRecording Supervisor46-22. Andante Con Moto6:47623293Felix Mendelssohn-BartholdyFelix Mendelssohn299702Leonard BernsteinConductor709138Karl-August NaeglerEngineer837568Israel Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer532268Hanno RinkeProducer834636Hans WeberRecording Supervisor46-33. Con Moto Moderato6:54623293Felix Mendelssohn-BartholdyFelix Mendelssohn299702Leonard BernsteinConductor709138Karl-August NaeglerEngineer837568Israel Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer532268Hanno RinkeProducer834636Hans WeberRecording Supervisor46-44. Saltarello (Presto)5:52623293Felix Mendelssohn-BartholdyFelix Mendelssohn299702Leonard BernsteinConductor709138Karl-August NaeglerEngineer837568Israel Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer532268Hanno RinkeProducer834636Hans WeberRecording SupervisorThe Hebrides, Op.26 (Fingal's Cave)46-5Allegro Moderato9:53623293Felix Mendelssohn-BartholdyFelix Mendelssohn299702Leonard BernsteinConductor709138Karl-August NaeglerEngineer837568Israel Philharmonic OrchestraOrchestra532268Hanno RinkeProducer834636Hans WeberRecording SupervisorA Midsummer Night's Dream, Op.61 Incidental Music46-6Overture11:46623293Felix Mendelssohn-BartholdyFelix Mendelssohn842888Rafael KubelikConductor835063Günter HermannsEngineer348179William ShakespeareLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor46-7No.1 Scherzo4:46623293Felix Mendelssohn-BartholdyFelix Mendelssohn842888Rafael KubelikConductor835063Günter HermannsEngineer348179William ShakespeareLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor46-8No.7 Notturno5:35623293Felix Mendelssohn-BartholdyFelix Mendelssohn842888Rafael KubelikConductor835063Günter HermannsEngineer348179William ShakespeareLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor46-9No.9 Wedding March4:41623293Felix Mendelssohn-BartholdyFelix Mendelssohn842888Rafael KubelikConductor835063Günter HermannsEngineer348179William ShakespeareLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra833074Otto GerdesProducer834636Hans WeberRecording SupervisorCD 47: Schumann: Symphony No.2 Op.61; Symphony No.3 Op.97 "Rhenish"Symphony No. 2 In C Major, Op. 6147-11. Sostenuto Assai - Un Poco Pi Vivace - Allegro Ma Non Troppo - Con Fuoco12:57578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-22. Scherzo (Allegro Vivace)7:08578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-33. Adagio Espressivo10:49578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-44. Allegro Molto Vivace8:06578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording SupervisorSymphony No. 3 In E Flat Major, Op. 97 "Rhenish"47-51. Lebhaft9:11578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-62. Scherzo (Sehr Mig)6:47578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-73. Nicht Schnell5:47578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-84. Feierlich7:34578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor47-95. Lebhaft6:07578727Robert Schumann424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording SupervisorCD 48: Schumann: Piano Concerto In A Minor, Op.54; "Scenes From Childhood", Op.15; Carnaval, Op.9Piano Concerto In A Minor, Op.5448-11. Allegro Affettuoso15:43578727Robert Schumann842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer834636Hans WeberRecording Supervisor48-22. Intermezzo (Andantino Grazioso)5:41578727Robert Schumann842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer834636Hans WeberRecording Supervisor48-33. Allegro Vivace11:54578727Robert Schumann842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer834636Hans WeberRecording SupervisorKinderszenen, Op.1548-41. Von Fremden Ländern Und Menschen1:40578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-52. Kuriose Geschichte1:01578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-63. Hasche-Mann0:36578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-74. Bittendes Kind0:52578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-85. Glückes Genug0:45578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-96. Wichtige Begebenheit0:57578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-107. Träumerei2:26578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-118. Am Kamin1:06578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-129. Ritter Vom Steckenpferd0:48578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-1310. Fast Zu Ernst1:40578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-1411. Fürchtenmachen1:58578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-1512. Kind Im Einschlummern2:02578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-1613. Der Dichter Spricht2:07578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording SupervisorCarnaval, Op.948-171. Prambule2:21578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-182. Pierrot0:54578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-193. Arlequin0:41578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-204. Valse Noble1:08578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-215. Eusebius1:33578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-226. Florestan0:59578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-237. Coquette1:08578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-248. Réplique - Sphinxes0:47578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-259. Papillons0:48578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-2610. A.S.C.H.-S.C.H.A. (Lettres Dansantes)1:00578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-2711. Chiarina0:47578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-2812. Chopin1:21578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-2913. Estrella0:35578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3014. Reconnaissance1:52578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3115. Pantalon Et Colombine1:08578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3216a. Valse Allemande1:01578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3316b. Intermezzo: Paganini1:22578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3418. Aveu. Passionato0:52578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3519. Promenade. Comodo1:49578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3620. Pause. Vivo0:23578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording Supervisor48-3721. Marche Des "Davidsbündler" Contre Les Philistins4:19578727Robert Schumann833561Klaus ScheibeEngineer157707Wilhelm KempffPiano472215Dr. Rudolf WernerProducer847110Cord GarbenRecording SupervisorCD 49: Schumann: Dichterliebe, Op.48; Frauenliebe Und Leben, Op.42Dichterliebe, Op.4849-11. Im Wunderschönen Monat Mai1:34578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-22. Aus Meinen Tränen Sprießen0:58578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-33. Die Rose, Die Lilie, Die Taube, Die Sonne0:34578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-44. Wenn Ich In Deine Augen Seh'1:47578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-55. Ich Will Meine Seele Tauchen0:55578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-66. Im Rhein, Im Heiligen Strome2:33578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-77. Ich Grolle Nicht1:33578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-88. Und Wüßten's Die Blumen, Die Kleinen1:19578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-99. Das Ist Ein Flöten Und Geigen1:31578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1010. Hör' Ich Das Liedchen Klingen1:48578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1111. Ein Jüngling Liebt Ein Mädchen1:03578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1212. Am leuchtenden Sommermorgen2:23578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1313. Ich Hab' Im Traum Geweinet2:13578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1414. Allnächtlich Im Traume Seh' Ich Dich1:28578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1515. Aus Alten Märchen Winkt Es2:29578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-1616. Die Alten, Bösen Lieder4:35578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorZwölf Gedichte, Op.3549-17Erstes Grün2:10578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer849192Justinus KernerLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorAbends Am Strand Op.45, No.349-18Abends Am Strand Op.45, No.33:07578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor"Die Beiden Grenadiere" Op.49, No.149-19"Die Beiden Grenadiere" Op.49, No.13:45578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorDie Feindlichen Brüder Op.49, No.249-20Die Feindlichen Brüder Op.49, No.22:10578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorTragödie, Op.64, No.349-211. Entflieh Mit Mir Und Sei Mein Weib1:28578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-222. Es Flel Ein Reif In Der Frühlingsnacht1:59578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorSpanisches Liederspiel, Op.74 (Geibel, After Spanish Poets)49-2310. Der Kontrabandiste1:35578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer882719Emanuel GeibelLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorLieder-Album Für Die Jugend, Op.7949-247a. Zigeunerliedchen Nr. 11:01578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer882719Emanuel GeibelLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording Supervisor49-257b. Zigeunerliedchen Nr. 21:24578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer882719Emanuel GeibelLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorVier Gesänge Op.14249-264. "Mein Wagen Rollet Langsam"2:39578727Robert Schumann833168Dietrich Fischer-DieskauBaritone Vocals709138Karl-August NaeglerEngineer432053Heinrich HeineLibretto By839412Christoph EschenbachPiano847110Cord GarbenProducer, Recording SupervisorFrauenliebe Und -leben Op.4249-271. Seit Ich Ihn Gesehen2:15578727Robert Schumann1755933Adelbert Von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-282. Er, Der Herrlichste von Allen2:57578727Robert Schumann1755933Adelbert von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-293. Ich Kann's Nicht Fassen, Nicht Glauben1:39578727Robert Schumann1755933Adelbert von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-304. Du Ring An Meinem Finger2:47578727Robert Schumann1755933Adelbert von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-315. Helft Mir, Ihr Schwestern2:02578727Robert Schumann1755933Adelbert von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-326. Süsser Freund, Du Blickest Mich Verwundert An4:42578727Robert Schumann1755933Adelbert von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-337. An Meinem Herzen, An Meiner Brust1:20578727Robert Schumann1755933Adelbert von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor49-348. Nun Hast Du Mir Den Ersten Schmerz Getan4:31578727Robert Schumann1755933Adelbert Von ChamissoLibretto By833667Brigitte FassbaenderMezzo-soprano Vocals907453Irwin GagePiano532268Hanno RinkeProducer532429Wolfgang StengelRecording SupervisorCD 50: Bizet: Carmen (Highlights)Carmen50-1Overture (Prelude)3:32342543Georges Bizet368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorAct 150-2La Cloche A Sonn (Les Jeunes Gens, Les Soldats, Les Cigarires)5:12342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor50-3Mais Nous Ne Voyons Pas la Carmencita (Les Soldats, Les Jeunes Gens)1:11342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor50-4"L'amour Est Un Oiseau Rebelle" (Havanaise)4:26342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor50-5"Monsieur Le Brigadier?" / Duo:"Parle-moi de Ma Mère!"9:51342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor50-6Chanson Et Duo: "Près Des Remparts de Séville"4:39342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorAct 250-7Les Tringles Des Sistres Tintaient (Carmen, Mercédès, Frasquita)5:09342543Georges Bizet368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By2033933Alicia NaféMezzo-soprano Vocals837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor149840Yvonne KennySoprano Vocals50-8Couplets: "Votre Toast, Je Peux Vous Le Rendre"5:12342543Georges Bizet925944Sherrill MilnesBaritone Vocals937077Robert Lloyd (4)Bass Vocals39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By2033933Alicia NaféMezzo-soprano Vocals837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor149840Yvonne KennySoprano Vocals2033934Jean LainéTenor Vocals50-9La Fleur Que Tu M'avais Jete (Don Jos)4:21342543Georges Bizet368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor270225Placido DomingoPlácido DomingoTenor VocalsAct 350-10Je Dis Que Rien Ne M'pouvante (Micaela)4:55342543Georges Bizet368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor925945Ileana CotrubasSoprano Vocals50-11"Je Suis Escamillo"3:34342543Georges Bizet368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor270225Placido DomingoPlácido DomingoTenor Vocals50-12Les Voici! Voici Le Quadrille! (Choeur)3:53342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor50-13Si Tu M'aimes, Carmen (Escamillo, Carmen, Frasquita, Mercédès)3:23342543Georges Bizet925944Sherrill MilnesBaritone Vocals368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By2033933Alicia NaféMezzo-soprano Vocals837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra368138Rainer BrockProducer149840Yvonne KennySoprano Vocals50-14"C'est Toi!" "C'est-moi!"9:18342543Georges Bizet39874The Ambrosian SingersChorus441528John McCarthyChorus Master368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By1438600Prosper MériméeLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor270225Placido DomingoPlácido DomingoTenor Vocals + +194VariousThe History Of Classical Music CD 51-100 (2/2)CompilationCompilationClassicalGermany2013-10-11Tracks 51-1 to 51-4 recorded in August 1993 at Grosses Festspielhaus, Salzburg, Austria, first publishing 1995, format DDD Surround 24 Bit +Tracks 51-5 to 51-8 recorded in November 1994 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1996, format DDD Stereo +Tracks 52-1 to 52-4 recorded in June 1972 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1972, format AAA Stereo +Tracks 52-5 to 52-11 recorded in September 1975 at Concert Hall, Turku, Finland, first publishing 1976, format AAA Stereo +Tracks 53-1 to 53-3 recorded at Salle Wagram, Paris, France, first publishing 1980, format Stereo +Tracks 53-4 to 53-6 recorded in November 1974 at Manhattan Center, New York, United States, first publishing 1975, format AAA Stereo 44 kHz 16 Bit +Tracks 54-1 to 54-4 recorded in November 1972 at Medinah Temple, Chicago, United States, first publishing 1973, format AAA Stereo +Track 54-5 recorded in March 1979 at Orchestra Hall, Chicago, United States, first publishing 1980, format AAA Stereo +Track 55-1 recorded in January 1980 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1980, format DDD Stereo 44 kHz 16 Bit +Tracks 55-2, 55-8 recorded in January 1981 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1981, format DDD Stereo 44 kHz 16 Bit +Tracks 55-3, 55-6 recorded in January 1981 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1981, format DDD +Tracks 55-4, 55-9, 55-10 recorded in December 1982 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1983, format DDD +Track 55-5 recorded in January 1982 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1982, format DDD Stereo 44 kHz 16 Bit +Track 55-7 recorded in December 1981 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1983, format DDD Stereo +Track 55-11 recorded in January 1980 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1981, format DDD Stereo +Track 55-12 recorded in January 1980 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1980, format DDD Stereo 44 kHz 16 Bit +Tracks 56-1 to 56-2 recorded in March 1971 at Boston: Symphony Hall, United States, first publishing 1971, format AAA Stereo 44 kHz 16 Bit +Tracks 56-3 to 56-6 recorded in June 1972 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1973, format AAA Stereo 44 kHz 16 Bit +Tracks 57-1 to 57-3 recorded in June 1961 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1962, format AAA Stereo 44 kHz 16 Bit +Tracks 57-4 to 57-6 recorded in June 1966 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1966, format AAA Stereo 44 kHz 16 Bit +Tracks 58-1 to 58-4 recorded in September 1963 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1964, format AAA Stereo 44 kHz 16 Bit +Tracks 58-5 to 58-11 recorded in September 1971 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1972, format AAA Stereo 44 kHz 16 Bit +Tracks 59-1 to 59-4 recorded in November 1960 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1961, format AAA Stereo 44 kHz 16 Bit +Tracks 59-5 to 59-12 recorded in October 1966 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1967, format AAA Stereo 44 kHz 16 Bit +Track 60-1 recorded in August 1989 at All Saints' Church, Tooting, London, United Kingdom, first publishing 1990, format DDD Stereo 44 kHz 16 Bit +Tracks 60-2 to 60-5 recorded in December 1986 at Performing Arts Center, State University Of New York, Purchase, United States, first publishing 1990, format DDD Stereo 44 kHz 16 Bit +Track 60-6 recorded in June 1989 at Konserthuset, Goteborg, Sweden, first publishing 1990, format DDD Stereo 44 kHz 16 Bit +Tracks 61-1 to 61-3 recorded in December 1970 at Fairfield Halls, Croydon, United Kingdom, first publishing 1971, format AAA Stereo 44 kHz 16 Bit +Tracks 61-4 to 61-6 recorded in September 1972 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1973, format AAA Stereo 44 kHz 16 Bit +Track 62-1 recorded in August 1971 at Bayreuther Festspielhaus, Germany, first publishing 1972, format AAA Stereo 44 kHz 16 Bit +Tracks 62-2 to 62-3 recorded in February 1963 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1963, format AAA Stereo 44 kHz 16 Bit +Tracks 62-4 to 62-5 recorded in December 1957 at Herkules Saal, Munich, Germany, first publishing 1958, format AAA Stereo 44 kHz 16 Bit +Track 62-6 recorded in December 1968 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1969, format AAA Stereo 44 kHz 16 Bit +Tracks 63-1 to 63-2 recorded in May 1967 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1968, format Stereo +Tracks 63-3 to 63-5 recorded in December 1966 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1967, format Stereo +Tracks 63-6 to 63-8 recorded in December 1968 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1969, format AAA Stereo +Tracks 63-9 to 63-10 recorded in October 1969 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1970, format AAA Stereo 44 kHz 16 Bit +Tracks 64-1 to 64-7 recorded in August 1966 at Bayreuther Festspielhaus, Germany, first publishing 1966, format ADD Stereo +Tracks 64-8 to 64-10 recorded in August 1966 at Bayreuther Festspielhaus, Germany, first publishing 1966, format AAA Stereo +Track 64-11 recorded in August 1966 at Bayreuther Festspielhaus, Germany, first publishing 1966, format AAA Stereo 44 kHz 16 Bit +Tracks 65-1, 65-2, 65-4, 65-6 to 65-8, 65-10 to 65-13 recorded in January 1981 at Centro Telecinematografico Culturale, Milan, Italy, first publishing 1982, format DDD Stereo 44 kHz 16 Bit +Track 65-3 recorded in January 1981 at Centro Telecinematografico Culturale, Milan, Italy, first publishing 1982, format AAA Stereo 16 Bit +Track 65-5 recorded in January 1981 at Centro Telecinematografico Culturale, Milan, Italy, first publishing 1982, format AAA Stereo 44 kHz 16 Bit +Track 65-9 recorded in January 1981 at Centro Telecinematografico Culturale, Milan, Italy, first publishing 1982, format AAA Stereo +Tracks 66-1 to 66-3, 66-5 to 66-15 recorded in September 1979 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1980, format AAA Stereo 44 kHz 16 Bit +Track 66-4 recorded in September 1979 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1980, format Stereo +Tracks 67-1 to 67-6, 67-8 to 67-17, 67-21, 67-23 recorded in May 1976 at Bürgerbraü-Keller, Munich, Germany, first publishing 1977, format AAA Stereo 44 kHz 16 Bit +Tracks 67-7, 67-18 to 67-20, 67-22 recorded in May 1977, first publishing 1977, format Stereo +Tracks 68-1 to 68-3 recorded in May 1975 at Medinah Temple, Chicago, United States, first publishing 1976, format AAA Stereo 96 kHz 24 Bit +Tracks 68-4 to 68-6 recorded in February 1976 at Notre Dame du Liban, Paris, France, first publishing 1976, format AAA Stereo +Track 69-1 recorded in November 1993 at Conservatory, Concert Hall, Moscow, Russia, first publishing 1994, format DDD Stereo 44 kHz 24 Bit +Track 69-2 recorded in November 2000 at Carnegie Hall, New York City, United States, first publishing 2001, format DDD Stereo 24 Bit +Track 69-3 recorded in June 1990 at Konserthuset, Goteborg, Sweden, first publishing 1992, format DDD Stereo +Track 69-4 recorded in June 1989 at Konserthuset, Goteborg, Sweden, first publishing 1990, format DDD Stereo 44 kHz 16 Bit +Tracks 69-5 to 69-19 recorded in April 1976 at Medinah Temple, Chicago, United States, first publishing 1977, format AAA Stereo 44 kHz 16 Bit +Tracks 70-1 to 70-4 recorded in April 1977 at Symphony Hall, Boston, United States, first publishing 1978, format AAA Stereo 44 kHz 16 Bit +Tracks 70-5 to 70-9 recorded in September 1987 at Konserthuset, Goteborg, Sweden, first publishing 1988, format DDD Stereo +Tracks 71-1 to 71-4 recorded in October 1967 at Herkules Saal, Munich, Germany, first publishing 1968, format AAA Stereo 44 kHz 16 Bit +Tracks 71-5 to 71-8 recorded in December 1968 at Residenz, Herkulessaal, Munich, Germany, first publishing 1970, format AAA Stereo 44 kHz 16 Bit +Tracks 72-1 to 72-3, 72-5 recorded in February 1973 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1973, format ADD Stereo +Track 72-4 recorded in February 1973 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1973, format ADD Stereo 44 kHz 16 Bit +Tracks 73-1 to 73-3, 73-5, 73-7 recorded in June 1978 at La Maison de la Mutualité, Paris, France, first publishing 1978, format ADD Stereo +Track 73-4 recorded in June 1978 at La Maison de la Mutualité, Paris, France, first publishing 1978, format DDD Stereo +Track 73-6 recorded in June 1978 at La Maison de la Mutualité, Paris, France, first publishing 1978, format ADD Stereo 44 kHz 16 Bit +Tracks 74-1 to 74-7, 74-9 to 74-12 recorded in April 1972 at Plenarsaal Der Akademie Der Wissenschaften, München, Germany, first publishing 1973, format ADD Stereo +Track 74-8 recorded in April 1972 at Plenarsaal Der Akademie Der Wissenschaften, München, Germany, first publishing 1973, format ADD Stereo 44 kHz 16 Bit +Tracks 74-13 to 74-16 recorded in April 1969 at Plenarsaal Residenz, Munich, Germany, first publishing 1970, format ADD Stereo 44 kHz 16 Bit +Tracks 75-1 to 75-11 recorded in April 1963 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1963, format ADD Stereo 44 kHz 16 Bit +Track 76-1 recorded in August 1972 at Grosses Festspielhaus, Salzburg, Austria, first publishing 1988, format ADD Stereo +Tracks 76-2 to 76-6 recorded in April 1971 at Residenz, Herkulessaal, Munich, Germany, first publishing 1971, format ADD Stereo 44 kHz 16 Bit +Tracks 76-7 to 76-10 recorded in February 1973 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1974, format ADD Stereo 44 kHz 16 Bit +Track 77-1 recorded in June 1987 at Accademia di Santa Cecilia, Rome, Italy, first publishing 1988, format DDD Stereo 44 kHz 16 Bit +Tracks 77-2, 77-7, 77-9, 77-13 to 77-17, 77-19, 77-20 recorded in May 1987 at Auditorio di Via della Conciliazione, Rome, Italy, first publishing 1988, format DDD Stereo +Tracks 77-3, 77-4, 77-10, 77-11 recorded in June 1987 at Accademia di Santa Cecilia, Rome, Italy, first publishing 1988, format DDD Stereo +Tracks 77-5, 77-6, 77-8, 77-12 recorded in June 1987 at Accademia di Santa Cecilia, Rome, Italy, first publishing 1988, format DDD Stereo 44 kHz 16 Bit +Track 77-18 recorded in May 1987 at Accademia di Santa Cecilia, Rome, Italy, first publishing 1988, format DDD Stereo +Tracks 78-1 to 78-16 recorded in September 1979 at Philharmonie, Berlin, Germany, first publishing 1980, format AAA Stereo 44 kHz 16 Bit +Track 78-17 recorded in May 1981 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1982, format DDD Stereo 44 kHz 16 Bit +Tracks 79-1 to 79-15 recorded in March 1975 at Walthamstow Assembly Hall, London, United Kingdom, first publishing 1975, format AAA Stereo +Tracks 79-16 to 79-22 recorded in October 1970 at Symphony Hall, Boston, United States, first publishing 1971, format AAA Stereo 44 kHz 16 Bit +Tracks 80-1 to 80-3 recorded in April 1976 at Watford Town Hall, London, United Kingdom, first publishing 1977, format ADD Stereo 44 kHz 16 Bit +Track 80-4 recorded in February 1988 at Manhattan Center, New York, United States, first publishing 1989, format DDD Stereo +Tracks 81-1 to 81-4 recorded in February 1965 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Track 81-5 recorded in January 1967 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1967, format AAA Stereo 44 kHz 16 Bit +Tracks 81-6, 81-7 recorded in October 1964 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1965, format AAA Stereo 44 kHz 16 Bit +Tracks 82-1, 82-4 recorded in May 1971 at Plenarsaal Der Akademie Der Wissenschaften, München, Germany, first publishing 1972, format AAA Stereo +Track 82-5 recorded in February 1976 at Symphony Hall, Boston, United States, first publishing 1977, format AAA Stereo +Tracks 82-6 to 82-8 recorded in March 1970 at Symphony Hall, Boston, United States, first publishing 1970, format AAA Stereo +Track 82-9 recorded in October 1991 at Joseph Meyerhoff Symphony Hall, Baltimore, United States, first publishing 1992, format DDD Stereo +Tracks 83-1 to 83-3, 83-8 to 83-12 recorded in May 1970 at Residenz, Herkulessaal, Munich, Germany, first publishing 1971, format AAA Stereo +Tracks 83-4 to 83-7 recorded in October 1971 at Residenz, Herkulessaal, Munich, Germany, first publishing 1972, format AAA Stereo +Track 84-1 recorded in June 1985 at Watford Town Hall, London, United Kingdom, first publishing 1986, format DDD Stereo 44 kHz 16 Bit +Tracks 84-2 to 84-4 recorded in February 1984 at St. John's, Smith Square, United Kingdom, first publishing 1988, format DDD Stereo 44 kHz 16 Bit +Tracks 84-5 to 84-12 recorded in June 1985 at Watford Town Hall, London, United Kingdom, first publishing 1986, format DDD Stereo +Tracks 85-1 to 85-5 recorded in November 1982 at Friedrich-Ebert-Halle, Hamburg, Germany, first publishing 1984, format DDD Stereo +Tracks 85-6 to 85-26 recorded in September 1997 at IRCAM-Studio, Espro, Paris, France, first publishing 1998, format DDD Stereo +Tracks 85-27 to 85-32 recorded in September 1994 at Grosser Saal, Berlin Philharmonie, Germany, first publishing 1995, format DDD Stereo 44 kHz 24 Bit +Tracks 85-33, 85-34 recorded in September 1994 at Grosser Saal, Berlin Philharmonie, Germany, first publishing 1996, format DDD Stereo 44 kHz 24 Bit +Tracks 86-1 to 86-3 recorded in December 1972 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1973, format AAA Stereo 44 kHz 16 Bit +Tracks 86-4, 86-5 recorded in May 1968 at Residenz, Herkulessaal, Munich, Germany, first publishing 1971, format AAA Stereo +Tracks 86-6 to 86-8 recorded in November 1973 at Philharmonie, Berlin, Germany, first publishing 1974, format AAA Stereo +Tracks 87-1 to 87-15 recorded in April 1976 at Henry Wood Hall, London, United Kingdom, first publishing 1977, format ADD Stereo +Tracks 87-16 to 87-25 recorded in February 1972 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1973, format ADD Stereo 16 Bit +Track 87-26 recorded in April 1970 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1972, format ADD Stereo +Tracks 88-1 to 88-19 recorded in May 1978 at Henry Wood Hall, London, United Kingdom, first publishing 1979, format ADD Stereo +Tracks 88-20 to 88-30 recorded in February 1975 at Fairfield Halls, Croydon, United Kingdom, first publishing 1976, format ADD Stereo +Tracks 89-1 to 89-3 recorded in March 1983 at Orchestra Hall, Chicago, United States, first publishing 1984, format DDD Stereo +Tracks 89-4 to 89-6 recorded in June 1967 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1967, format ADD Stereo 44 kHz 16 Bit +Tracks 89-7 to 89-11 recorded in February 1977 at Symphony Hall, Chicago, United States, first publishing 1978, format ADD Stereo +Tracks 90-1 to 90-4 recorded in November 1976 at Symphony Hall, Boston, United States, first publishing 1977, format AAA Stereo +Tracks 90-5 to 90-9 recorded in December 1979 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1979, format AAA Stereo +Tracks 91-1 to 91-3 recorded in October 1971 at Boston: Symphony Hall, United States, first publishing 1972, format Stereo +Track 91-4 recorded in May 1969 at Residenz, Herkulessaal, Munich, Germany, first publishing 1970, format AAA Stereo +Tracks 91-5 to 91-7 recorded in January 1958 at Jesus-Christus-Kirche, Berlin, Germany, first publishing 1959, format AAA Stereo +Tracks 91-8 to 91-15 recorded in September 1975 at Forty Lane, Wembley, London, United Kingdom, first publishing 1976, format AAA Stereo +Tracks 92-1 to 92-3 recorded in August 1975 at Symphony Hall, Boston, United States, first publishing 1976, format AAA Stereo 44 kHz 16 Bit +Tracks 92-4 to 92-7 recorded in July 1982 at John F. Kennedy Center, Washington D.C., United States, first publishing 1983, format DDD Stereo 44 kHz 16 Bit +Tracks 93-1 to 93-8 recorded in April 1977 at Orchestra Hall, Chicago, United States, first publishing 1979, format AAA Stereo 44 kHz 16 Bit +Tracks 93-9 to 93-11 recorded in July 1973 at Brent Town Hall, Wembley, London, United Kingdom, first publishing 1975, format AAA Stereo 44 kHz 16 Bit +Track 93-12 recorded in May 1974 at Friedrich-Ebert-Halle, Hamburg, Germany, first publishing 1975, format AAA Stereo 44 kHz 16 Bit +Tracks 94-1 to 94-3 recorded in May 1969 at Estudios Phonogram, Madrid, Spain, first publishing 1969, format AAA Stereo 44 kHz 16 Bit +Tracks 94-4 to 94-11 recorded in January 1978 at Henry Wood Hall, London, United Kingdom, first publishing 1978, format AAA Stereo 44 kHz 16 Bit +Tracks 94-12 to 94-16 recorded in January 1978 at Henry Wood Hall, London, United Kingdom, first publishing 1978, format AAA Stereo +Tracks 94-17 to 94-19 recorded in June 1965 at Herkules Saal, Munich, Germany, first publishing 1966, format AAD Stereo +Track 95-1 recorded in June 1975 at Kongresshalle, Leipzig, Germany, first publishing 1981, format AAA Stereo 44 kHz 16 Bit +Track 95-2 recorded in May 1976 at DeAnza College, Flint Center, Cupertino, United States, first publishing 1977, format AAA Stereo 44 kHz 16 Bit +Track 95-3 recorded in June 1971 at Symphony Hall, Boston, United States, first publishing 1976, format AAA Stereo 44 kHz 16 Bit +Tracks 95-4 to 95-12 recorded in June 1972, first publishing 1973, format AAA Stereo +Tracks 96-1 to 96-10 recorded in October 1990 at Opéra Bastille, Paris, France, first publishing 1991, format DDD Stereo 44 kHz 16 Bit +Tracks 97-1 to 97-9 recorded in September 2002 at IRCAM Espace de projection, Paris, France, first publishing 2005, format DDD Stereo 48 kHz 24 Bit +Track 97-10 recorded in December 1994 at Philharmonie, Berlin, Germany, first publishing 1996, format DDD Stereo 24 Bit +Tracks 98-1 to 98-3, 98-14 to 98-18 recorded in March 1990 at Henry Wood Hall, London, United Kingdom, first publishing 1992, format DDD Stereo +Tracks 98-4 to 98-9 recorded in September 1988 at Kammermusiksaal, Berlin, Germany, first publishing 1990, format DDD Stereo +Tracks 98-10 to 98-13 recorded in March 1981 at IRCAM Studio, Paris, France, first publishing 1983, format AAA Stereo +Track 99-1 recorded in June 1993, first publishing 1994, format DDD Stereo +Tracks 99-2, 99-3 recorded in May 1987, first publishing 1992, format DDD Stereo +Track 100-1 recorded in January 1974 at Musikstudio I, Hamburg, Germany, first publishing 1974, format AAA Stereo 44 kHz 16 Bit +Tracks 100-2 to 100-5 recorded in October 1983, first publishing 1984, format DDD Stereo +Tracks 100-6 to 100-8 recorded in February 1992 at Grosser Saal, Musikverein, Wien, Austria, first publishing 1993, format DDD Stereo 44 kHz 16 BitNeeds Vote0CD 51: Brahms: Symphonies No.1, Op.68 & No.4, Op.98Symphony No.1 In C Minor, Op.68304975Johannes Brahms304975Johannes BrahmsComposed By696260James Levine (2)Conductor836738Gregor ZielinskyEngineer754974Wiener PhilharmonikerOrchestra1558092Ewald MarklProducer1260508Roger WrightProducer839988Werner MayerRecording Supervisor51-11. Un Poco Sostenuto - Allegro - Meno Allegro12:5551-22. Andante Sostenuto9:2451-33. Un Poco Allegretto E Grazioso4:3751-44. Adagio - Piu Andante - Allegro Non Troppo, Ma Con Brio - Piu Allegro17:29Symphony No.4 In E Minor, Op.98304975Johannes Brahms304975Johannes BrahmsComposed By696260James Levine (2)Conductor836738Gregor ZielinskyEngineer754974Wiener PhilharmonikerOrchestra1558092Ewald MarklProducer1260508Roger WrightProducer839988Werner MayerRecording Supervisor51-51. Allegro Non Troppo11:3051-62. Andante Moderato10:2251-73. Allegro Giocoso - Poco Meno Presto - Tempo I6:1451-84. Allegro Energico E Passionato - Piu Allegro9:22CD 52: Brahms: Piano Concerto No.2 In B Flat, Op.83; 7 Fantasias Op.116Piano Concerto No.2 In B Flat, Op.83304975Johannes Brahms304975Johannes BrahmsComposed By842238Eugen JochumConductor833561Klaus ScheibeEngineer260744Berliner PhilharmonikerOrchestra308115Emil GilelsPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor52-11. Allegro Non Troppo18:2252-22. Allegro Appassionato9:3152-33. Andante - Pi Adagio14:0452-44. Allegretto Grazioso - Un Poco Piu Presto9:47Fantasias (7 Piano Pieces), Op.116304975Johannes Brahms304975Johannes BrahmsComposed By833561Klaus ScheibeEngineer308115Emil GilelsPiano833562Günther BreestGuenther BreestProducer, Recording Supervisor52-51. Capriccio In D Minor2:1152-62. Intermezzo In A Minor3:3552-73. Capriccio In G Minor3:1352-84. Intermezzo In E Major4:2252-95. Intermezzo In E Minor3:0052-106. Intermezzo In E Major3:0752-117. Capriccio In D Minor2:16CD 53: Brahms: Violin Concerto In D, Op.77; Sonata For Piano And Violin No.1 In G, Op.78 "Regenlied-Sonate"Violin Concerto In D, Op.77304975Johannes Brahms304975Johannes BrahmsComposed By424576Daniel BarenboimConductor833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra836768Steven PaulDr. Steve PaulProducer532429Wolfgang StengelRecording Supervisor833851Pinchas ZukermanViolin53-11. Allegro Non Troppo - Cadenza23:25835045Joseph JoachimCadenza53-22. Adagio9:3153-33. Allegro Giocoso, Ma Non Troppo Vivace - Poco Piu Presto8:08Sonata For Violin And Piano No.1 In G, Op.78304975Johannes Brahms304975Johannes BrahmsComposed By833561Klaus ScheibeEngineer424576Daniel BarenboimPiano836768Steven PaulDr. Steven PaulProducer, Recording Supervisor833851Pinchas ZukermanViolin53-41. Vivace Ma Non Troppo11:1253-52. Adagio8:1753-63. Allegro Molto Moderato9:00CD 54: Bruckner: Symphony No.4 In E Flat Major - "Romantic"; Psalm 150, For Soprano, Chorus And OrchestraSymphony No.4 In E Flat Major - "Romantic", Wab 104 Haas Edition479037Anton Bruckner479037Anton BrucknerComposed By424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor54-11. Bewegt, Nicht Zu Schnell18:0554-22. Andante Quasi Allegretto15:4454-33. Scherzo: Bewegt9:3254-44. Finale: Bewegt, Doch Nicht Zu Schnell20:2154-5Psalm 150, for Soprano, Chorus and Orchestra8:46479037Anton Bruckner3016490Chicago Symphony ChorusChoir880605Margaret HillisChorus Master479037Anton BrucknerComposed By424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor931242Ruth WeltingSoprano Vocals CD 55: Strauss, J.: Waltzes & PolkasDie Fledermaus1259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer978428Carl HaffnerLibretto By1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By696247Richard GenéeLibretto By754974Wiener PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor55-1Overture8:3055-2Voices Of Spring, Op.410 (Frühlingsstimmen)6:071259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor55-3Egyptischer Marsch, Op.3354:181259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer55-4Freikugeln - Polka Schnell, Op.3262:311259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer55-5Kaiserwalzer, Op.43710:291259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor55-6Pizzicato Polka (1870)2:431259101Johann Strauss Jr.Johann Strauss II,836585Josef StraußJosef Strauss1259101Johann Strauss Jr.Johann Strauss IIComposed By836585Josef StraußJosef StraussComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer55-7Unter Donner Und Blitz, Polka, Op.3243:011259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer55-8Rosen Aus Dem Süden, Op.3888:241259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor55-9Overture Indigo Und Die 40 Räuber7:061259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer55-10Eljen A Magyar, Op.3322:421259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducerDer Zigeunerbaron, Operetta In 3 Acts: Act 31259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer867602Ignaz SchnitzerLibretto By754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer55-11Einzugsmarsch (Entrance March)3:0355-12An Der Schönen Blauen Donau, Op.3149:481259101Johann Strauss Jr.Johann Strauss II1259101Johann Strauss Jr.Johann Strauss IIComposed By415720Lorin MaazelConductor874946Wolfgang MitlehnerEngineer754974Wiener PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording SupervisorCD 56: Smetana: The Moldau, From Bohemia's Meadows And Woods / Dvořák: Symphony No.9, Op.95 "From The New World"Má Vlast (My Country), Jb1:112833315Bedřich SmetanaBedrich Smetana833315Bedřich SmetanaBedrich SmetanaComposed By842888Rafael KubelikConductor565422Heinz WildhagenEngineer395913Boston Symphony OrchestraOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberRecording Supervisor56-12. Vltava (The Moldau)12:0056-24. Z Ceskych Luhu A Haju (From Bohemia's Meadows And Forests)12:38Symphony No.9 In E Minor, Op.95 "From The New World"268272Antonín DvořákAntonín Dvorák268272Antonín DvořákAntonín DvorákComposed By842888Rafael KubelikConductor565422Heinz WildhagenEngineer260744Berliner PhilharmonikerOrchestra472215Dr. Rudolf WernerProducer834636Hans WeberRecording Supervisor56-31. Adagio - Allegro Molto9:2956-42. Largo13:0356-53. Scherzo (Molto Vivace)8:0656-64. Allegro Con Fuoco11:49CD 57: Dvořák: Symphony No.8 In G Major, Op. 88; Cello Concerto In B Minor, Op. 104Cello Concerto In B Minor, Op.104268272Antonín DvořákAntonín Dvorák834051Pierre FournierCello268272Antonín DvořákAntonín DvorákComposed By547969George SzellConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra834636Hans WeberRecording Supervisor57-11. Allegro14:5057-22. Adagio Ma Non Troppo11:2757-33. Finale (Allegro Moderato)12:21Symphony No.8 In G, Op.88268272Antonín DvořákAntonín Dvorák268272Antonín DvořákAntonín DvorákComposed By842888Rafael KubelikConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra834636Hans WeberRecording Supervisor57-41. Allegro Con Brio9:5457-52. Adagio10:2057-63. Allegretto Grazioso - Molto Vivace6:3857-74. Allegro Ma Non Troppo8:47CD 58: Grieg: Peer Gynt Suites Nos.1 & 2; Piano Concerto In A Minor, Op. 16Piano Concerto In A Minor, Op.1695542Edvard Grieg95542Edvard GriegComposed By842888Rafael KubelikConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra847180Géza AndaPiano834636Hans WeberRecording Supervisor58-11. Allegro Molto Moderato13:1058-22. Adagio7:0558-33. Allegro Moderato Molto E Marcato - Quasi Presto - Andante Maestoso10:45Peer Gynt Suite No.1, Op.4695542Edvard Grieg95542Edvard GriegComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor58-41. Morning Mood4:0058-52. The Death Of Aase4:4858-63. Anitra's Dance3:4758-74. In The Hall Of The Mountain King2:12Peer Gynt Suite No.2, Op.5595542Edvard Grieg95542Edvard GriegComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor58-81. The Abduction (Ingrid's Lament)4:5658-92. Arabian Dance4:4158-103. Peer Gynt's Return2:4458-114. Solveig's Song6:16CD 59: Tchaikovsky: Symphony No.6, Op.74 "Pathétique"; Nutcracker Suite, Op.71aSymphony No. 6 In B Minor, Op. 74 -"Pathétique"999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By833038Evgeny MravinskyJewgenij MrawinskijConductor958012Harald BaudisEngineer343871Leningrad Philharmonic OrchestraOrchestra958011Karl-Heinz SchneiderRecording Supervisor59-11. Adagio - Allegro Non Troppo17:3759-22. Allegro Con Grazia8:0759-33. Allegro Molto Vivace8:2059-44. Finale (Adagio Lamentoso - Andante)9:45Nutcracker Suite, Op.71a999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra834636Hans WeberRecording Supervisor59-5Miniature Overture3:2559-62. Danses Caracteristiques A. Marche (Tempo Di Marcia Viva)2:2259-72b. Danse De La Fée-Dragée (Andante Non Troppo)1:5959-82c. Danse Russe Trépak (Tempo Di Trépak, Molto Vivace)1:0959-92d. Danse Arabe (Allegretto)3:2759-102e. Danse Chinoise (Allegro Moderato)1:2159-112f. Danse Des Mirlitons (Moderato Assai)2:3659-123. Valse Des Fleurs (Tempo di Valse)7:08CD 60: Tchaikovsky: Romeo And Julia - Fantasy Overture; Serenade For String Orchestra Op.48; Ouverture Solennelle "1812" Op. 39Romeo And Juliet, Fantasy Overture999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By837533Giuseppe SinopoliConductor472214Klaus HiemannEngineer454293Philharmonia OrchestraOrchestra532429Wolfgang StengelRecording Supervisor60-1Andante Non Tanto Quasi Moderato - Allegro Giusto - Moderato Assai22:26Serenade For Strings In C, Op.48999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By835378Stephan SchellmannEngineer837570Orpheus Chamber OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer898394Wolf ErichsonRecording Supervisor60-21. Pezzo In Forma Di Sonatina: Andante Non Troppo - Allegro Moderato9:0960-32. Walzer: Moderato (Tempo Di Valse)3:5560-43. Elégie: Larghetto Elegiaco8:5460-54. Finale (Tema Russo): Andante - Allegro Con Spirito7:06Overture 1812, Op.49999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky833174Churchbells Of GothenburgBells833178Gothenburg Symphony Brass BandBrass Band833175Gothenburg Symphony ChorusChorus2580098Ove GottingChorus Master999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By833179Neeme JärviConductor408897Michael BergekEngineer833176Gothenburg Artillery DivisionEnsemble1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording Supervisor60-6Largo - Allegro Giusto16:14CD 61: Tchaikovsky: Piano Concerto No.1 Op.23; Violin Concerto Op.35Piano Concerto No.1 In B Flat Minor, Op.23999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By539272Charles DutoitConductor565422Heinz WildhagenEngineer341104Royal Philharmonic OrchestraOrchestra832905Martha ArgerichPiano463963Karl FaustProducer368138Rainer BrockRecording Supervisor61-11. Allegro Non Troppo E Molto Maestoso - Allegro Con Spirito21:1461-22. Andantino Semplice - Prestissimo - Tempo I7:3161-33. Allegro Con Fuoco6:50Violin Concerto In D, Op.35999914Pyotr Ilyich TchaikovskyPeter Ilyich Tchaikovsky999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By368137Claudio AbbadoConductor835063Günter HermannsEngineer754974Wiener PhilharmonikerOrchestra368138Rainer BrockProducer, Recording Supervisor914907Nathan MilsteinViolin61-41. Allegro Moderato17:0261-52. Canzonetta (Andante)6:1561-63. Finale (Allegro Vivacissimo)8:57CD 62: Wagner: Overtures & PreludesDer Fliegende Holländer294746Richard Wagner294746Richard WagnerComposed By283127Karl BöhmConductor833561Klaus ScheibeEngineer837511Orchester der Bayreuther FestspieleOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer835064Hans HirschDr. Hans HirschProducer856141Wolfgang LohseRecording Supervisor62-1Overture10:28Lohengrin294746Richard Wagner294746Richard WagnerComposed By842888Rafael KubelikConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesRecording Supervisor62-2Prelude To Act I9:49Die Meistersinger Von Nürnberg294746Richard Wagner294746Richard WagnerComposed By842888Rafael KubelikConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesRecording Supervisor62-3Prelude9:54Parsifal294746Richard Wagner294746Richard WagnerComposed By842238Eugen JochumConductor355862Gerd HenjesGerhard HenjesEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1098168Elsa SchillerProf. Elsa SchillerProducer1290899Hans RitterRecording Supervisor62-4Prelude13:5462-5Good Friday Spell (Concert Version Act 3)12:09Tannhäuser294746Richard Wagner294746Richard WagnerComposed By, Libretto By833074Otto GerdesConductor835063Günter HermannsEngineer841431Orchester Der Deutschen Oper BerlinOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor62-6Overture12:21CD 63: Wagner: Der Ring Des Nibelungen (Highlights)Das Rheingold294746Richard Wagner294746Richard WagnerComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor63-1Scene 1: "Lugt, Schwestern! Die Weckerin Lacht In Den Grund"6:18839080Anna ReynoldsMezzo-soprano Vocals459665Edda MoserSoprano Vocals303060Helen DonathSoprano Vocals63-2Scene 4: Zur Burg Führt Die Brücke9:02833168Dietrich Fischer-DieskauBass Vocals852345Gerhard StolzeBass Vocals839080Anna ReynoldsMezzo-soprano Vocals459665Edda MoserSoprano Vocals303060Helen DonathSoprano Vocals851312Josephine VeaseySoprano Vocals867659Donald GrobeTenor VocalsDie Walküre, WWV 86b294746Richard Wagner294746Richard WagnerComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor63-3Erster Aufzug: "Der Männer Sippe Saß Hier Im Saal"4:43833076Gundula JanowitzSoprano Vocals882018Jon VickersTenor Vocals63-4Dritter Aufzug: The Ride Of The Valkyries6:17617407Barbro EricsonMezzo-soprano Vocals924656Carlotta OrdassyMezzo-soprano Vocals861483Cvetka AhlinMezzo-soprano Vocals924657Helga JenckelMezzo-soprano Vocals924651Daniza MastilovicSoprano Vocals924652Ingrid StegerSoprano Vocals924653Lilo BrockhausSoprano Vocals924654Liselotte RebmannSoprano Vocals63-5Dritter Aufzug: Der Augen Leuchtendes Paar13:38915657Thomas Stewart (2)Tenor VocalsSiegfried294746Richard Wagner294746Richard WagnerComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor63-6Zweiter Aufzug: "Aber Wie Sah Meine Mutter Wohl Aus?" (Waldweben)7:281249309Jess ThomasTenor Vocals63-7Zweiter Aufzug: Nun Sing, Ich Lausche Dem Gesang4:101138264Catherine GayerSoprano Vocals1249309Jess ThomasTenor Vocals63-8Dritter Aufzug: "Heil Dir, Sonne!" (Brünnhildes Erwachen)7:39915657Thomas Stewart (2)Baritone Vocals837502Zoltan KélémenZoltan KelemenBass Vocals1057451Oralia DominguezMezzo-soprano Vocals1138264Catherine GayerSoprano Vocals865660Helga DerneschSoprano Vocals852345Gerhard StolzeTenor Vocals1249309Jess ThomasTenor VocalsGötterdämmerung294746Richard Wagner294746Richard WagnerComposed By283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor63-9Dritter Aufzug: Trauermarsch8:5063-10Dritter Aufzug: "Fliegt Heim, Ihr Raben!" / "Zurück Vom Ring!"8:41834073Karl RidderbuschBass Vocals865660Helga DerneschSoprano VocalsCD 64: Wagner: Tristan Und Isolde - HighlightsTristan Und Isolde294746Richard Wagner294746Richard WagnerComposed By283127Karl BöhmConductor835063Günter HermannsEngineer837511Orchester der Bayreuther FestspieleOrchestra835064Hans HirschDr. Hans HirschProducer833074Otto GerdesProducer856141Wolfgang LohseRecording Supervisor64-1Prelude To Act 1. Langsam Und Schmachtend10:4264-2Act 1: "Frisch Weht Der Wind Der Heimat Zu"9:20833787Eberhard WächterBaritone Vocals837515Chor der Bayreuther FestspieleChoir833173Wilhelm PitzChorus Master833554Christa LudwigContralto Vocals865659Birgit NilssonSoprano Vocals446577Peter SchreierTenor Vocals845358Wolfgang WindgassenTenor Vocals64-3Act 1: "Weh, Ach Wehe! Dies Zu Dulden"15:27833554Christa LudwigContralto Vocals865659Birgit NilssonSoprano Vocals64-4Act 2: "O Sink Hernieder, Nacht Der Liebe"4:56865659Birgit NilssonSoprano Vocals845358Wolfgang WindgassenTenor Vocals64-5Act 2: "Einsam Wachend In Der Nacht"2:32833554Christa LudwigContralto Vocals64-6Act 2: "Lausch, Geliebter!"4:10865659Birgit NilssonSoprano Vocals845358Wolfgang WindgassenTenor Vocals64-7Act 2: "Doch Unsre Liebe, Heilt Sie Nicht Tristan Und - Isolde?"2:12865659Birgit NilssonSoprano Vocals845358Wolfgang WindgassenTenor Vocals64-8Act 2: "So Starben Wir, Um Ungetrennt" - "Rette Dich, Tristan!" (Tristan, Isolde, Brangne / Kurwenal, Tristan, Melot)8:31833787Eberhard WächterEberhard WaechterBaritone Vocals833554Christa LudwigContralto Vocals865659Birgit NilssonSoprano Vocals845358Wolfgang WindgassenTenor Vocals64-9Act 3: Prelude - Hirtenreigen6:5264-10Act 3: "O Wonne! Freude!"5:57833787Eberhard WächterEberhard WaechterBaritone Vocals845358Wolfgang WindgassenTenor Vocals64-11Act 3: "Mild Und Leise Wie Er Lächelt" (Isoldes Liebestod) (Isolde)6:16865659Birgit NilssonSoprano VocalsCD 65: Verdi: Aida - HighlightsAida192327Giuseppe Verdi192327Giuseppe VerdiComposed By368137Claudio AbbadoConductor472214Klaus HiemannEngineer1080249Antonio GhislanzoniLibretto By3014084Auguste Mariette BeyAugust MarietteLibretto By14176909Orchestra Del Teatro Della Scala Di MilanoOrchestra Del Teatro Alla Scala Di MilanoOrchestra368138Rainer BrockProducer, Recording Supervisor424572Renate KupferRecording Supervisor65-1Preludio3:3665-2Act 1: Se Quel Guerrier Io Fossi!..Celeste Aida4:34270225Placido DomingoPlácido DomingoTenor Vocals65-3Act 1: Or Di Vulcano...Su! Del Nilo Al Sacro Lido6:06842223Nicolai GhiaurovBass Vocals851310Ruggero RaimondiBass Vocals900979Coro Del Teatro Alla ScalaCoro Del Teatro Alla Scala di MilanoChorus1080246Elena ObraztsovaMezzo-soprano Vocals850899Katia RicciarelliSoprano Vocals1312680Pierre PallaTenor Vocals270225Placido DomingoPlácido DomingoTenor Vocals65-4Act 1: Ritorna Vincitor5:31850899Katia RicciarelliSoprano Vocals65-5Act 1: "Nume, Custode E Vindice"4:24842223Nicolai GhiaurovBass Vocals900979Coro Del Teatro Alla ScalaCoro Del Teatro Alla Scala di MilanoChorus1032225Lucia Valentini TerraniLucia Valentini-TerraniSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals65-6Act 2: "Gloria All'Egitto"3:29900979Coro Del Teatro Alla ScalaCoro Del Teatro Alla Scala di MilanoChorus65-7Act 2: Grand March1:3565-8Act 2: Ballet Music4:2465-9Act 2: Quest'assisa Ch'io Vesto Vi Dica4:491080247Leo NucciBaritone Vocals842223Nicolai GhiaurovBass Vocals851310Ruggero RaimondiBass Vocals900979Coro Del Teatro Alla ScalaCoro Del Teatro Alla Scala di MilanoChorus1080246Elena ObraztsovaMezzo-soprano Vocals850899Katia RicciarelliSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals65-10Act 3: Qui Radames Verra!...O Patria Mia6:37850899Katia RicciarelliSoprano Vocals65-11Act 3: "Ciel! Mio Padre! ... Rivedrai Le Foreste Imbalsamate"7:441080247Leo NucciBaritone Vocals850899Katia RicciarelliSoprano Vocals65-12Act 4: La Fatal Pietra Sovra Me Si Chiuse5:24850899Katia RicciarelliSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals65-13Act 4: Immenso Fthà... O Terra, Addio5:21900979Coro Del Teatro Alla ScalaCoro Del Teatro Alla Scala di MilanoChorus1080246Elena ObraztsovaMezzo-soprano Vocals850899Katia RicciarelliSoprano Vocals270225Placido DomingoPlácido DomingoTenor VocalsCD 66: Verdi: Rigoletto (Highlights)Rigoletto192327Giuseppe Verdi192327Giuseppe VerdiComposed By833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer525470Francesco Maria PiaveLibretto By271274Victor HugoVictor Marie HugoLibretto By754974Wiener PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer834636Hans WeberRecording Supervisor66-1Preludio2:0566-2Act 1: "Questa O Quella" (Ballata)1:52270225Placido DomingoPlácido DomingoTenor Vocals66-3Act 1: Recitativo E Duetto. "Pari Siamo!... Io la Lingua"(Rigoletto)3:33855170Piero CappuccilliBaritone Vocals66-4Act 1: "Figlia!" / "Mio Padre!" (Rigoletto, Gilda)10:39855170Piero CappuccilliBaritone Vocals931244Hanna SchwarzContralto Vocals925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals66-5Act 1: Scena Ed Aria. "Gualtier Mald ... Caro Nome..." - "+ L..." / "Miratela"6:181771067Dirk SagemüllerBaritone Vocals1771068Luigi De CoratoBaritone Vocals855072Wiener StaatsopernchorChoir1447773Roberto BenaglioChorus Master925945Ileana CotrubasSoprano Vocals956561Walter GullinoTenor Vocals66-6Act 2: Ella Mi Fu Rapita! (Duca)2:16270225Placido DomingoPlácido DomingoTenor Vocals66-7Act 2: "Parmi Veder Le Lagrime"2:46270225Placido DomingoPlácido DomingoTenor Vocals66-8Act 2: "Povero Rigoletto!"3:171771067Dirk SagemüllerBaritone Vocals1771068Luigi De CoratoBaritone Vocals855170Piero CappuccilliBaritone Vocals855072Wiener StaatsopernchorChoir1447773Roberto BenaglioChorus Master1294349Audrey MichaelMezzo-soprano Vocals956561Walter GullinoTenor Vocals66-9Act 2: "Cortigiani, Vil Razza Dannata"4:35855170Piero CappuccilliBaritone Vocals66-10Act 2: Tutte Le Feste Al Tempio (Gilda, Rigoletto)7:51855170Piero CappuccilliBaritone Vocals838401Anton ScharingerBass Vocals837498Kurt MollBass Vocals925945Ileana CotrubasSoprano Vocals66-11Act 2: Si, Vendetta, Tremenda Vendetta2:20855170Piero CappuccilliBaritone Vocals925945Ileana CotrubasSoprano Vocals66-12Act 3: "La Donna Mobile"3:05270225Placido DomingoPlácido DomingoTenor Vocals66-13Act 3: Quartetto. "Un Dì, Se Ben Rammentomi" (Duca, Gilda, Maddalena, Rigoletto)1:38855170Piero CappuccilliBaritone Vocals1080246Elena ObraztsovaMezzo-soprano Vocals925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals66-14Act 3: Bella Figlia Dell'amore (Duca, Maddalena, Gilda, Rigoletto)4:23855170Piero CappuccilliBaritone Vocals1080246Elena ObraztsovaMezzo-soprano Vocals925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals66-15Act 3: "V'ho Ingannato"4:14855170Piero CappuccilliBaritone Vocals925945Ileana CotrubasSoprano VocalsCD 67: Verdi: La Traviata (Highlights)Act 167-1Prelude3:37192327Giuseppe Verdi833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor67-2"Dell'invito Trascorsa Gi L'ora"4:35192327Giuseppe Verdi1032258Bruno GrellaBaritone Vocals922015Alfredo GiacomottiBass Vocals833827Giovanni FoianiBass Vocals1933252Chor Der Bayerischen StaatsoperChor Der Bayerischen Staatsoper MünchenChorus859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals1496956Stefania MalagùStefania MalaguSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals956561Walter GullinoTenor Vocals67-3"Libiamo Ne'lieti Calici (Brindisi)2:59192327Giuseppe Verdi1933252Chor Der Bayerischen StaatsoperChor Der Bayerischen Staatsoper MünchenChorus859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals67-4"E Strano!" - "Ah, Fors' Lui"3:37192327Giuseppe Verdi833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsLibretto By1916705Alexandre Dumas FilsAlexandre DumasLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals67-5"Follie! Delirio Vano Questo!" - "Sempre Libera"4:27192327Giuseppe Verdi833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor VocalsAct 267-6"Lunge Da Lei" - "De' Miei Bollenti Spiriti"3:39192327Giuseppe Verdi833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor270225Placido DomingoPlácido DomingoTenor Vocals67-7Pura Siccome Un Angelo...Imponete1:41192327Giuseppe Verdi1933252Chor Der Bayerischen StaatsoperBayerischer StaatsopernchorChoir859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBayerisches StaatsopernorchesterOrchestra925944Sherrill MilnesPerformer956561Walter GullinoPerformer835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor67-8"Non Sapete Quale Affetto"2:00192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals67-9"Un D, Quando Le Veneri"2:35192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals67-10"Ah! Dite Alla Giovine"4:10192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals67-11"Ah, Vive Sol Quel Core"2:13192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor2040958Paul Winter (7)Tenor Vocals270225Placido DomingoPlácido DomingoTenor Vocals956561Walter GullinoTenor Vocals67-12"Di Provenza Il Mar, Il Suol"4:05192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor67-13"Avrem Lieta di Maschere la Notte"1:02192327Giuseppe Verdi922015Alfredo GiacomottiBass Vocals833827Giovanni FoianiBass Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor1496956Stefania MalagùSoprano Vocals67-14"Noi Siamo Zingarelle"2:46192327Giuseppe Verdi922015Alfredo GiacomottiBass Vocals833827Giovanni FoianiBass Vocals1933252Chor Der Bayerischen StaatsoperChor Der Bayerischen Staatsoper MünchenChorus859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor1496956Stefania MalagùSoprano Vocals67-15"Di Madride Noi Siam Mattadori"2:36192327Giuseppe Verdi922015Alfredo GiacomottiBass Vocals833827Giovanni FoianiBass Vocals1933252Chor Der Bayerischen StaatsoperChor Der Bayerischen Staatsoper MünchenChorus859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor1496956Stefania MalagùSoprano Vocals956561Walter GullinoTenor VocalsAct 367-16Prelude3:37192327Giuseppe Verdi833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor67-17"Annina?" "Comandate?"3:54192327Giuseppe Verdi833827Giovanni FoianiBass Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By1032256Helena JungwirthMezzo-soprano Vocals451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals67-18"Tenesta la Promessa" - "Attendo, N A Me Giungon Mai" - "Addio Del Passato"4:02192327Giuseppe Verdi1933252Chor Der Bayerischen StaatsoperBayerischer StaatsopernchorChoir859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBayerisches StaatsopernorchesterOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals67-19Signora...Che T'accadde...Parigi, O Cara1:34192327Giuseppe Verdi1933252Chor Der Bayerischen StaatsoperBayerischer StaatsopernchorChoir859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBayerisches StaatsopernorchesterOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor1032256Helena JungwirthSoprano Vocals925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals67-20"Parigi, O Cara, Noi Lasceremo"3:13192327Giuseppe Verdi1933252Chor Der Bayerischen StaatsoperBayerischer StaatsopernchorChoir859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBayerisches StaatsopernorchesterOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals67-21"Ah, Non Pi!" - "Ah! Gran Dio! Morir S Giovine"3:00192327Giuseppe Verdi833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals67-22Ah, Violetta! - Voi? Signor? / Prendi, Quest'...1:42192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals1933252Chor Der Bayerischen StaatsoperBayerischer StaatsopernchorChoir859034Wolfgang BaumgartChorus Master833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By451535Bayerisches StaatsorchesterBayerisches StaatsopernorchesterOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor Vocals67-23"Prendi, Quest' L'immagine"3:54192327Giuseppe Verdi925944Sherrill MilnesBaritone Vocals833827Giovanni FoianiBass Vocals833155Carlos KleiberConductor833561Klaus ScheibeEngineer1916705Alexandre Dumas FilsAlexandre DumasLibretto By525470Francesco Maria PiaveLibretto By1032256Helena JungwirthMezzo-soprano Vocals451535Bayerisches StaatsorchesterBavarian State OrchestraOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor925945Ileana CotrubasSoprano Vocals270225Placido DomingoPlácido DomingoTenor VocalsCD 68: Saint-Saëns: Symphony No.3 In C Minor, Op.78 - "Organ Symphony" / Franck: Symphony In D MinorSymphony No.3 In C Minor, Op.78 "Organ Symphony"68-11. Adagio - Allegro Moderato - Poco Adagio19:26456926Camille Saint-Saëns424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra915121Gaston LitaizeOrgan833562Günther BreestGuenther BreestProducer, Recording Supervisor68-22a. Allegro Moderato - Presto - Allegro Moderato7:28456926Camille Saint-Saëns424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra915121Gaston LitaizeOrgan833562Günther BreestGuenther BreestProducer, Recording Supervisor68-33. Maestoso - Allegro7:24456926Camille Saint-Saëns424576Daniel BarenboimConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra915121Gaston LitaizeOrgan833562Günther BreestGuenther BreestProducer, Recording SupervisorSymphony In D Minor68-41. Lento - Allegro Ma Non Troppo - Allegro18:44832661César Franck424576Daniel BarenboimConductor2920516Alain Denis (3)Cor Anglais833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor68-52. Allegretto10:06832661César Franck424576Daniel BarenboimConductor2920516Alain Denis (3)Cor Anglais833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor68-63. Allegro Non Troppo11:22832661César Franck424576Daniel BarenboimConductor2920516Alain Denis (3)Cor Anglais833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorCD 69: Glinka: Ruslan And Ludmilla - Overture / Balakirev: Islamey / Borodin: Polovtsian Dances / Mussorgsky: Pictures At An ExhibitionRuslan And Lyudmila Act 169-1Overture4:45835128Mikhail Ivanovich GlinkaMichail Iwanowitsch Glinka926728Mikhail PletnevConductor713679Rainer MaillardEngineer15768171Valerian ShirkovValerian ShirkinLibretto By715919Александр ПушкинAleksandr PushkinLibretto By1032218Russian National OrchestraOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor Islamey69-2Presto Con Fuoco8:01838380Mily BalakirevMily Alexejewitsch Balakirew713679Rainer MaillardEngineer926728Mikhail PletnevPiano633158Christian GanschRecording SupervisorPrince Igor - Arranged By N. Rimsky-Korsakov (1844-1908) - Act 269-3Dance Of The Polovtsian Maidens2:3395543Alexander Borodin833179Neeme JärviConductor408897Michael BergekEngineer95543Alexander BorodinLibretto By1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnProducer69-4Polovtsian Dances, From: Prince Igor11:2395543Alexander Borodin833177Torgny SporsénTorgny SporsenBass Vocals833175Gothenburg Symphony ChorusChorus2580098Ove GottingChorus Master833179Neeme JärviConductor408897Michael BergekEngineer1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording SupervisorPictures At An Exhibition - Orchestrated By Maurice Ravel69-5Promenade1:49523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-6Gnomus2:39523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-7Promenade1:08523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-8The Old Castle4:31523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-9Promenade0:37523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-10The Tuileries Gardens1:16523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-11Bydlo2:40523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-12Promenade0:48523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-13Ballet Of The Chickens In Their Shells1:21523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-14Samuel Goldenberg And Schmuyle2:24523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-15The Market-Place At Limoges1:30523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-16The Catacombs (Sepulchrum Romanum)2:06523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-17Cum Mortuis In Lingua Mortua2:09523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-18The Hut On Fowl's Legs (Baba-Yaga)3:54523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor69-19The Great Gate Of Kiev5:45523633Modest MussorgskyModest Petrovich Mussorgsky833560Carlo Maria GiuliniConductor833561Klaus ScheibeEngineer837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorCD 70: Rimsky-Korsakov: Scheherazade, Op.35; Capriccio Espagnol, Op.34Scheherazade, Op.3570-1The Sea And Sinbad's Ship10:18115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor762680Joseph SilversteinViolin70-2The Story Of The Calender Prince12:12115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor762680Joseph SilversteinViolin70-3The Young Prince And The Young Princess10:02115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor762680Joseph SilversteinViolin70-4Festival At Bagdad - The Sea - The Shipwreck Against A Rock Surmounted By A Bronze Warrior (The Shipwreck)12:18115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor762680Joseph SilversteinViolinCapriccio Espagnol, Op.3470-51. Alborada1:09115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov833179Neeme JärviConductor408897Michael BergekEngineer1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording Supervisor70-62. Variazioni5:06115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov833179Neeme JärviConductor408897Michael BergekEngineer1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording Supervisor70-73. Alborada1:10115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov833179Neeme JärviConductor408897Michael BergekEngineer1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording Supervisor70-84. Scena E Canto Gitano5:16115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov833179Neeme JärviConductor408897Michael BergekEngineer1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording Supervisor70-95. Fandango Asturiano3:04115466Nikolai Rimsky-KorsakovNicolai Rimsky-Korsakov833179Neeme JärviConductor408897Michael BergekEngineer1015406Göteborgs SymfonikerGothenburg Symphony OrchestraOrchestra807313Lennart DehnRecording SupervisorCD 71: Mahler: Symphony No.1; Songs Of A WayfarerSymphony No.1 In D71-11. Langsam. Schleppend14:31239236Gustav Mahler842888Rafael KubelikConductor835063Günter HermannsEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra834636Hans WeberRecording Supervisor71-22. Kräftig Bewegt6:56239236Gustav Mahler842888Rafael KubelikConductor835063Günter HermannsEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra834636Hans WeberRecording Supervisor71-33. Feierlich Und Gemessen, Ohne Zu Schleppen10:37239236Gustav Mahler842888Rafael KubelikConductor835063Günter HermannsEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra834636Hans WeberRecording Supervisor71-44. Stürmisch Bewegt17:40239236Gustav Mahler842888Rafael KubelikConductor835063Günter HermannsEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra834636Hans WeberRecording SupervisorLieder Eines Fahrenden Gesellen71-5Wenn Mein Schatz Hochzeit Macht3:54239236Gustav Mahler833168Dietrich Fischer-DieskauBaritone Vocals842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer368138Rainer BrockRecording Supervisor856141Wolfgang LohseRecording Supervisor71-6Ging Heut' Morgen übers Feld4:00239236Gustav Mahler833168Dietrich Fischer-DieskauBaritone Vocals842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer368138Rainer BrockRecording Supervisor856141Wolfgang LohseRecording Supervisor71-7Ich Hab' Ein Glühend Messer3:12239236Gustav Mahler833168Dietrich Fischer-DieskauBaritone Vocals842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer368138Rainer BrockRecording Supervisor856141Wolfgang LohseRecording Supervisor71-8Die Zwei Blauen Augen von Meinem Schatz5:10239236Gustav Mahler833168Dietrich Fischer-DieskauBaritone Vocals842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer368138Rainer BrockRecording Supervisor856141Wolfgang LohseRecording SupervisorCD 72: Mahler: Symphony No. 5Symphony No.5 In C Sharp Minor72-11. Trauermarsch (In Gemessenem Schritt. Streng. Wie Ein Kondukt - Plötzlich Schneller. Leidenschaftlich. Wild - Tempo I)13:04239236Gustav Mahler283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor72-22. Stürmisch Bewegt. Mit Größter Vehemenz - Bedeutend Langsamer - Tempo I Subito15:09239236Gustav Mahler283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor72-33. Scherzo (Kräftig, Nicht Zu Schnell)18:05239236Gustav Mahler283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor72-44. Adagietto (Sehr Langsam)11:52239236Gustav Mahler283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor72-55. Rondo-Finale (Allegro)15:19239236Gustav Mahler283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording SupervisorCD 73: Debussy: Nocturnes; Prélude Á L'après-midi D'un Faune; La MerNocturnes, L.91 Orchestral Version73-11. Nuages8:3696123Claude Debussy424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor73-22. Fêtes7:0196123Claude Debussy424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor73-33. Sirènes10:0196123Claude Debussy1052826Chœur De L'Orchestre De ParisChoeur De Femmes De Orchestre De ParisChoir424576Daniel BarenboimConductor834537Hans-Peter SchweigmannEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording SupervisorPrélude á L'après-Midi D'un Faune, L. 8673-4Prélude à L'après-Midi D'un Faune, L.8610:2496123Claude Debussy424576Daniel BarenboimConductor833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra836768Steven PaulDr. Steven PaulProducer839988Werner MayerRecording SupervisorLa Mer, L.10973-51. From Dawn Till Noon On The Sea (De L'aube Á Midi Sur La Mer)9:0996123Claude Debussy424576Daniel BarenboimConductor833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor73-62. Play Of The Waves (Jeux de Vagues)6:3396123Claude Debussy424576Daniel BarenboimConductor833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor73-73. Dialogue Of The Wind And The Sea (Dialogue Du Vent Et de la Mer)8:1696123Claude Debussy424576Daniel BarenboimConductor833561Klaus ScheibeEngineer744724Orchestre De ParisOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording SupervisorCD 74: Debussy: Suite Bergamansque; 12 PréludesPréludes / Book 1, L. 11774-13. Le Vent Dans la Plaine2:2196123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording Supervisor74-24. Les Sons Et Les Parfums Tournent Dans L'air Du Soir4:3696123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording Supervisor74-35. Les Collines D'Anacapri3:0096123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording Supervisor74-47. Ce Qu'a Vu Le Vent D'ouest3:3196123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording Supervisor74-58. La Fille Aux Cheveux de Lin3:0796123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording Supervisor74-610. La Cathdrale Engloutie7:0096123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording Supervisor74-712. Minstrels2:1396123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano961037Franz-Christian WulffFranz Christian WulffProducer847110Cord GarbenRecording SupervisorPréludes - Book 2, L.12374-82. Feuilles Mortes4:5996123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano847110Cord GarbenProducer74-93. La Puerta Del Vino3:4296123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano847110Cord GarbenProducer74-106. "General Lavine" - Eccentric2:2496123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano847110Cord GarbenProducer74-117. La Terrasse Des Audiences Du Clair de Lune5:4996123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano847110Cord GarbenProducer74-1212. Feux D'artifice4:1896123Claude Debussy834537Hans-Peter SchweigmannEngineer1023670Dino CianiPiano847110Cord GarbenProducerSuite Bergamasque, L. 7574-131. Prélude3:5596123Claude Debussy833561Klaus ScheibeEngineer841533Tamás VásáryPiano463963Karl FaustProducer841676Hansjoachim ReiserRecording Supervisor74-142. Menuet3:3096123Claude Debussy833561Klaus ScheibeEngineer841533Tamás VásáryPiano463963Karl FaustProducer841676Hansjoachim ReiserRecording Supervisor74-153. Clair de Lune5:1696123Claude Debussy833561Klaus ScheibeEngineer841533Tamás VásáryPiano463963Karl FaustProducer841676Hansjoachim ReiserRecording Supervisor74-164. Passepied3:3296123Claude Debussy833561Klaus ScheibeEngineer841533Tamás VásáryPiano463963Karl FaustProducer841676Hansjoachim ReiserRecording SupervisorCD 75: Strauss, R.: Also Sprach Zarathustra; Don Juan; Till EulenspiegelAlso Sprach Zarathustra, Op. 3075-1Prelude (Sonnenaufgang)1:45108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-2Von Den Hinterweltlern3:39108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-3Von Der Großen Sehnsucht2:01108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-4Von Den Freuden Und Leidenschaften1:50108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-5Das Grablied2:16108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-6Von Der Wissenschaft4:58108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-7Der Genesende5:18108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer75-8Das Tanzlied8:05108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducer833770Michel SchwalbéViolin75-9Das Nachtwandlerlied5:02108439Richard Strauss283127Karl BöhmConductor1103862Heinrich KeilholzEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseProducerDon Juan, Op. 2075-10Don Juan, Op. 2017:37108439Richard Strauss283127Karl BöhmConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseRecording Supervisor882768Thomas BrandisViolinTill Eulenspiegel's Merry Pranks (Till Eulenspiegels Lustige Streiche), Op. 28 75-11Till Eulenspiegel's Merry Pranks (Till Eulenspiegels Lustige Streiche), Op. 2815:13108439Richard Strauss283127Karl BöhmConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra856141Wolfgang LohseRecording SupervisorCD 76: Strauss, R.: Tod Und Verklärung, Op. 24; Capriccio, Op. 85; Vier Letzte LiederTod Und Verklärung, Op.2476-1Tod Und Verklärung, Op.2422:13108439Richard Strauss283127Karl BöhmConductor578737Staatskapelle DresdenOrchestra2546316ORF Studio WienORF, WienProducerCapriccio, Op.85, Letzte Szene76-2Andante Con Moto (Mondscheinmusik)3:09108439Richard Strauss283127Karl BöhmConductor835063Günter HermannsEngineer4817523Wladimir HaagHarp882724Clemens KraussLibretto By108439Richard StraussLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer835064Hans HirschDr. Hans HirschProducer856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals76-3Wo Ist Mein Bruder?3:07108439Richard Strauss1084955Karl KohnKarl Christian KohnBass Vocals283127Karl BöhmConductor835063Günter HermannsEngineer4817523Wladimir HaagHarp882724Clemens KraussLibretto By108439Richard StraussLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer835064Hans HirschDr. Hans HirschProducer856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals76-4Kein Andres, Das Mir So Im Herzen Loht4:29108439Richard Strauss283127Karl BöhmConductor835063Günter HermannsEngineer4817523Wladimir HaagHarp882724Clemens KraussLibretto By108439Richard StraussLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer835064Hans HirschDr. Hans HirschProducer856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals76-5Ihre Liebe Schlägt Mir Entgegen4:01108439Richard Strauss283127Karl BöhmConductor835063Günter HermannsEngineer4817523Wladimir HaagHarp882724Clemens KraussLibretto By108439Richard StraussLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer835064Hans HirschDr. Hans HirschProducer856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano Vocals76-6Du Spiegelbild Der Verliebten Madeleine5:57108439Richard Strauss1084955Karl KohnKarl Christian KohnBass Vocals283127Karl BöhmConductor835063Günter HermannsEngineer4817523Wladimir HaagHarp882724Clemens KraussLibretto By108439Richard StraussLibretto By604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1396305Ellen HickmannDr. Ellen HickmannProducer835064Hans HirschDr. Hans HirschProducer856141Wolfgang LohseRecording Supervisor833076Gundula JanowitzSoprano VocalsVier Letzte Lieder, TrV 29676-71. Frühling4:04108439Richard Strauss283122Herbert von KarajanConductor835063Günter HermannsEngineer362592Hermann HesseLibretto By260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals76-82. September4:54108439Richard Strauss283122Herbert von KarajanConductor835063Günter HermannsEngineer362592Hermann HesseLibretto By260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals76-93. Beim Schlafengehen6:17108439Richard Strauss283122Herbert von KarajanConductor835063Günter HermannsEngineer362592Hermann HesseLibretto By260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano Vocals76-104. Im Abendrot7:04108439Richard Strauss283122Herbert von KarajanConductor835063Günter HermannsEngineer581291Joseph Von EichendorffJoseph Freiherr Von EichendorffLibretto By260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor833076Gundula JanowitzSoprano VocalsCD 77: Puccini: La Bohéme - HighlightsAct 177-1Questo Mar Rosso Mi Ammollisce E Assidera - Pensier Profondo (Marcello, Rodolfo, Colline / Colline, Marcello, Rodolfo)5:55369053Giacomo Puccini751505Thomas HampsonBaritone Vocals1032279Paul PlishkaBass Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor837535Jerry HadleyTenor Vocals77-2"Io Resto"0:59369053Giacomo Puccini1032273James BusterudBaritone Vocals751505Thomas HampsonBaritone Vocals1032279Paul PlishkaBass Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor837535Jerry HadleyTenor Vocals77-3Non Sono In Vena!1:43369053Giacomo Puccini299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-4"Si Sente Meglio?"2:49369053Giacomo Puccini299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-5"Che Gelida Manina"5:14369053Giacomo Puccini299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor837535Jerry HadleyTenor Vocals77-6"S. Mi Chiamano Mim"5:23369053Giacomo Puccini299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-7"Ehi! Rodolfo!"0:46369053Giacomo Puccini1032273James BusterudBaritone Vocals751505Thomas HampsonBaritone Vocals1032279Paul PlishkaBass Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-8"O Soave Fanciulla"4:26369053Giacomo Puccini751505Thomas HampsonBaritone Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor VocalsAct 277-9"Arranci, Datteri!"2:28369053Giacomo Puccini1032273James BusterudBaritone Vocals1032279Paul PlishkaBass Vocals1032277Coro Dell'Accademia Nazionale di Santa CeciliaChorus299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor77-10La Commedia Stupenda! (Schaunard, Colline, Musetta, Rodolfo, Mim, Algindoro)1:20369053Giacomo Puccini1032273James BusterudBaritone Vocals1032276Gimi BeniBass Vocals1032279Paul PlishkaBass Vocals299702Leonard BernsteinConductor696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra575554Angelina RéauxAngelina ReauxSoprano Vocals1032272Barbara DanielsSoprano Vocals837535Jerry HadleyTenor Vocals77-11"Quando Men Vo"5:40369053Giacomo Puccini1032273James BusterudBaritone Vocals751505Thomas HampsonBaritone Vocals1032276Gimi BeniBass Vocals1032279Paul PlishkaBass Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals1032272Barbara DanielsSoprano Vocals837535Jerry HadleyTenor Vocals77-12Il Conto?! (Rodolfo, Schaunard, Colline, Coro, Musetta, Marcello, Mim)2:33369053Giacomo Puccini1032273James BusterudBaritone Vocals751505Thomas HampsonBaritone Vocals1032276Gimi BeniBass Vocals1032279Paul PlishkaBass Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals1032272Barbara DanielsSoprano Vocals837535Jerry HadleyTenor VocalsAct 377-13"Mim Una Civetta"1:26369053Giacomo Puccini751505Thomas HampsonBaritone Vocals299702Leonard BernsteinConductor696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra837535Jerry HadleyTenor Vocals77-14"Mim Tanto Malata!"1:54369053Giacomo Puccini751505Thomas HampsonBaritone Vocals299702Leonard BernsteinConductor696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-15Mim di Serra Fiore (Rodolfo, Mim, Marcello)1:37369053Giacomo Puccini751505Thomas HampsonBaritone Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-16"Donde Lieta Usc"3:14369053Giacomo Puccini751505Thomas HampsonBaritone Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-17"Dunque Propio Finita!"6:03369053Giacomo Puccini575554Angelina RéauxAngelina ReauxBaritone Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor VocalsAct 477-18Sono Andati? Fingevo di Dormire6:23369053Giacomo Puccini299702Leonard BernsteinConductor696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-19"Oh Dio! Mim!"2:57369053Giacomo Puccini1032273James BusterudBaritone Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor Vocals77-20"Che Ha Detto Il Medico?"3:02369053Giacomo Puccini1032273James BusterudBaritone Vocals299702Leonard BernsteinConductor833561Klaus ScheibeEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1032278Orchestra Dell'Accademia Nazionale di Santa CeciliaOrchestra532268Hanno RinkeProducer834636Hans WeberRecording Supervisor575554Angelina RéauxAngelina ReauxSoprano Vocals837535Jerry HadleyTenor VocalsCD 78: Puccini: Tosca - Highlights; "Nessun Dorma"ToscaAct 178-1"Ah! Finalmente!"5:26369053Giacomo Puccini861581Fernando CorenaBass Vocals899693Gottfried HornikBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor462603José CarrerasTenor Vocals78-2"Recondita Armonia"3:55369053Giacomo Puccini861581Fernando CorenaBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor462603José CarrerasTenor Vocals78-3Mario! Mario! Mario!7:44369053Giacomo Puccini283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals462603José CarrerasTenor Vocals78-4"Ah, Quegli Occhi..." - "Qual Occhio Al Mondo Pu Star di Paro"5:56369053Giacomo Puccini283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals462603José CarrerasTenor Vocals78-5"Tre Sbirri... Una Carozza... Presto" - Te Deum4:46369053Giacomo Puccini851310Ruggero RaimondiBass Vocals850906Chor der Deutschen Oper BerlinChoir491155Schöneberger SängerknabenSchoeneberger SaengerknabenChoir836798Walter Hagen-GrollChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor837523Heinz ZednikTenor VocalsAct 278-6"Ed Or Fra Noi Parliam Da Buoni Amici"4:14369053Giacomo Puccini851310Ruggero RaimondiBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals78-7Ors, Tosca, Parlate3:18369053Giacomo Puccini851310Ruggero RaimondiBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals837523Heinz ZednikTenor Vocals462603José CarrerasTenor Vocals78-8Nel Pozzo, Nel Giardino! (Tosca, Scarpia, Sciarrone, Cavaradossi)0:37369053Giacomo Puccini851310Ruggero RaimondiBass Vocals735323Victor von HalemBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals78-9"Vissi D'arte, Vissi D'amore"3:55369053Giacomo Puccini735323Victor von HalemBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals78-10"E Qual Via Scegliete?"6:39369053Giacomo Puccini851310Ruggero RaimondiBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano VocalsAct 378-11"Mario Cavaradossi?" - "A Voi"6:49369053Giacomo Puccini735323Victor von HalemBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor462603José CarrerasTenor Vocals78-12"E Lucevan Le Stelle"3:24369053Giacomo Puccini283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor462603José CarrerasTenor Vocals78-13"O Dolci Mani"6:06369053Giacomo Puccini283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals462603José CarrerasTenor Vocals78-14E Non Giungono (Tosca, Cavaradossi, Carceriere)2:54369053Giacomo Puccini735323Victor von HalemBass Vocals283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals462603José CarrerasTenor Vocals78-15"Come Lunga L'attesta!"2:41369053Giacomo Puccini283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals78-16"Presto, Su! Mario!"1:27369053Giacomo Puccini735323Victor von HalemBass Vocals850906Chor der Deutschen Oper BerlinChoir491155Schöneberger SängerknabenSchoeneberger SaengerknabenChoir836798Walter Hagen-GrollChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra833562Günther BreestGuenther BreestProducer835044Michel GlotzRecording Supervisor850899Katia RicciarelliSoprano Vocals837523Heinz ZednikTenor VocalsTurandot - Act 378-17"Nessun Dorma"3:25369053Giacomo Puccini855072Wiener StaatsopernchorChorus1447773Roberto BenaglioChorus Master283122Herbert von KarajanConductor835063Günter HermannsEngineer696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By1331145Victorien SardouLibretto By260744Berliner PhilharmonikerOrchestra835044Michel GlotzRecording Supervisor270225Placido DomingoPlácido DomingoTenor VocalsCD 79: Elgar: Variations On An Original Theme, Op.36 / Holst: The Planets, Op.32Variations On An Original Theme, Op.36 "Enigma"79-1Theme (Andante)1:32255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-21. C.A.E. (L'istesso Tempo)1:43255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-32. H.D.S.-P. (Allegro)0:49255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-43. R.B.T. (Allegretto)1:26255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-54. W.M.B. (Allegro di Molto)0:31255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-65. R.P.A. (Moderato)1:54255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-76. Ysobel (Andantino)1:21255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-87. Troyte (Presto)0:59255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-98. W.N. (Allegretto)1:59255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-109. Nimrod (Adagio)5:05255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-1110. Intermezzo: Dorabella (Allegretto)2:44255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-1211. G.R.S. (Allegro di Molto)1:00255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-1312. B.G.N. (Andante)2:37255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-1413. Romanza *** (Moderato)2:58255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor79-1514. Finale: E.D.U. (Allegro - Presto)5:17255804Sir Edward ElgarEdward Elgar842238Eugen JochumConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorThe Planets, Op.3279-161. Mars, The Bringer Of War6:37335760Gustav Holst479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording Supervisor79-172. Venus, The Bringer Of Peace7:28335760Gustav Holst479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording Supervisor79-183. Mercury, The Winged Messenger4:00335760Gustav Holst479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording Supervisor79-194. Jupiter, The Bringer Of Jollity8:03335760Gustav Holst479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording Supervisor79-205. Saturn, The Bringer Of Old Age7:49335760Gustav Holst479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording Supervisor79-216. Uranus, The Magician5:28335760Gustav Holst479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording Supervisor79-227. Neptune, The Mystic6:46335760Gustav Holst966985New England Conservatory ChorusChoir966990Lorna Cooke deVaronChorus Master479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer272491Thomas MowreyTom MowreyProducer368138Rainer BrockRecording SupervisorCD 80: Rachmaninov: Piano Concerto No.3 In D Minor, Op.30 / Scriabin: Symphony No.4 Op.54 "Le Poème De L'Extase"Piano Concerto No.3 In D Minor, Op.3080-11. Allegro Ma Non Tanto17:48206280Sergei RachmaninoffSergey Vasil'yevich Rachmaninov736605Yuri AhronovitchConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano847110Cord GarbenProducer80-22. Intermezzo (Adagio)12:09206280Sergei RachmaninoffSergey Vasil'yevich Rachmaninov736605Yuri AhronovitchConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano847110Cord GarbenProducer80-33. Finale (Alla Breve)14:20206280Sergei RachmaninoffSergey Vasil'yevich Rachmaninov736605Yuri AhronovitchConductor565422Heinz WildhagenEngineer212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano847110Cord GarbenProducerSymphony No.4 Opus 54 "Le Poème De L'Extase"80-4Symphony No.4 Opus 54 "Le Poéme De L'Extase"20:25813771Alexander Scriabin813771Alexander ScriabinComposed By837533Giuseppe SinopoliConductor472214Klaus HiemannEngineer327356New York PhilharmonicNew York Philharmonic OrchestraOrchestra833562Günther BreestGuenther BreestProducer532429Wolfgang StengelRecording Supervisor341812Glenn DicterowViolinCD 81: Sibelius: Symphony No.5; Finlandia; Tapiola; Valse TristeSymphony No.5 In E Flat, Op.8281-11. Tempo Molto Moderato - Largamente -9:35627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor81-22. Allegro Moderato - Presto4:41627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor81-32. Andante Mosso, Quasi Allegretto8:24627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording Supervisor81-43. Allegro Molto8:58627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording SupervisorValse Triste, Op.4481-5Valse Triste, Op.446:15627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra834636Hans WeberRecording SupervisorFinlandia, Op.26, No.781-6Andante Sostenuto - Allegro Moderato - Allegro9:27627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer1515376Veikko Antero KoskenniemiLibretto By260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer833078Otto Ernst WohlertRecording SupervisorTapiola, Op.11281-7Tapiola, Op.11220:13627442Jean Sibelius283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833078Otto Ernst WohlertRecording SupervisorCD 82: Ives: Piano Sonata No.2 "Concord, Mass., 1840-1860"; Central Park In The Dark; Three Places In New England / Barber: Adagio For Strings, Op.11Piano Sonata No.2 "Concord, Mass., 1840-1860"82-1. "Emerson". Slowly - Slowly And Quietly14:19202092Charles IvesCharles Edward Ives833561Klaus ScheibeEngineer727254Roberto SzidonPiano463963Karl FaustProducer839988Werner MayerRecording Supervisor2953034Walter Stangl (2)Viola82-22. "Hawthorne". Very Fast12:55202092Charles IvesCharles Edward Ives833561Klaus ScheibeEngineer727254Roberto SzidonPiano463963Karl FaustProducer839988Werner MayerRecording Supervisor82-33. "The Alcotts"5:25202092Charles IvesCharles Edward Ives833561Klaus ScheibeEngineer727254Roberto SzidonPiano463963Karl FaustProducer839988Werner MayerRecording Supervisor82-44. "Thoreau". Starting Slowly And Quietly11:28202092Charles IvesCharles Edward Ives833561Klaus ScheibeEngineer2913612Dieter SonntagFlute727254Roberto SzidonPiano463963Karl FaustProducer839988Werner MayerRecording SupervisorCentral Park In The Dark82-5Central Park In The Dark7:41202092Charles IvesCharles Edward Ives712500Seiji OzawaConductor834537Hans-Peter SchweigmannEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer381298John McClureRecording Supervisor3 Places In New England82-61. The "St. Gaudens" In Boston Common (Col. Shaw And His Colored Regiment)8:35202092Charles IvesCharles Edward Ives253245Michael Tilson ThomasConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor82-72. Putnam's Camp, Redding, Connecticut6:01202092Charles IvesCharles Edward Ives253245Michael Tilson ThomasConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording Supervisor82-83. From "The Housatonic At Stockbridge" By Robert Underwood Johnson3:49202092Charles IvesCharles Edward Ives253245Michael Tilson ThomasConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra463963Karl FaustProducer368138Rainer BrockRecording SupervisorAdagio For Strings, Op.1182-9Adagio For Strings, Op.118:4711696Samuel Barber576026David ZinmanConductor902732Simon EadonEngineer884062Baltimore Symphony OrchestraOrchestra991968Chris HazellProducerCD 83: Janáček: Taras Bulba; Concertino; SinfoniettaTaras Bulba83-11. The Death Of Andri8:20822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-22. The Death Of Ostap5:08822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-33. The Prophecy And The Death Of Taras Bulba9:02822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducerConcertino83-41. Moderato5:53822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer8204727Mitglieder Des Symphonie-Orchesters Des Bayerischen RundfunksMembers Of The Bavarian Radio OrchestraOrchestra1142516Rudolf FirkušnýRudolf FirkusnyPiano629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-52. Pi Mosso3:09822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer8204727Mitglieder Des Symphonie-Orchesters Des Bayerischen RundfunksMembers Of The Bavarian Radio Symphony OrchestraOrchestra1142516Rudolf FirkušnýRudolf FirkusnyPiano629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-63. Con Moto3:08822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer8204727Mitglieder Des Symphonie-Orchesters Des Bayerischen RundfunksMembers of the Bavarian Radio Symphony OrchestraOrchestra1142516Rudolf FirkušnýRudolf FirkusnyPiano629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-74. Allegro4:11822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer8204727Mitglieder Des Symphonie-Orchesters Des Bayerischen RundfunksMembers Of The Bavarian Radio Symphony OrchestraOrchestra1142516Rudolf FirkušnýRudolf FirkusnyPiano629913Dr. Wilfried DaenickeProducer834636Hans WeberProducerSinfonietta83-81. Allegretto - Allegro - Maestoso2:14822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-92. Andante - Allegretto - Maestoso - Tempo I - Allegretto5:22822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-103. Moderato - Con Moto - Prestissimo - Tempo I - Moderato4:59822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-114. Allegretto - Adagio - Presto - Andante - Presto - Prestissimo2:37822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducer83-125. Andante Con Moto - Maestoso - Tempo I - Allegretto - Allegro - Maestoso - Adagio6:40822473Leoš JanáčekLeos Janácek842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra629913Dr. Wilfried DaenickeProducer834636Hans WeberProducerCD 84: Ravel: Boléro; Piano Concerto In G, Pavane Pour Une Infante Défunte; Ma Mère L'oyeBoléro, M. 81 Original Version, M. 8184-1Tempo di Bolero Moderato Assai14:26216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorPiano Concerto In G Major, M. 8384-21. Allegramente8:45216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano532268Hanno RinkeProducer368138Rainer BrockProducer, Recording Supervisor84-32. Adagio Assai9:34216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano532268Hanno RinkeProducer368138Rainer BrockProducer, Recording Supervisor84-43. Presto3:55216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra832905Martha ArgerichPiano532268Hanno RinkeProducer368138Rainer BrockProducer, Recording SupervisorPavane Pour Une Infante Défunte, M.1984-5Lent6:37216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorMa Mère L'oye - Orchestral Version84-6Prélude3:28216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor84-7Danse Du Rouet Et Scène - Interlude3:32216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor84-8Pavane de la Belle Au Bois Dormant2:47216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor84-9Les Entretiens de la Belle Et de la Bête5:15216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor724556Michael Davis (5)Violin84-10Petit Poucet4:45216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor84-11Laideronnette, Impratrice Des Pagodes4:48216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor84-12Apothéose: Le Jardin Féerique3:44216140Maurice Ravel368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor724556Michael Davis (5)ViolinCD 85: Schoenberg: Transfigured Night, Op.4; Pierrot Lunaire, Op.21 / Webern: Six Pieces For Orchestra, Op.6; Symphony, Op.21Verklärte Nacht, Op.4 Version For String Sextet85-11. Sehr Langsam (bar 1)6:24465983Arnold Schoenberg1092564Jonathan PegisCello874946Wolfgang MitlehnerEngineer754978Lasalle QuartetEnsemble [String Quartet]368138Rainer BrockProducer1092565Donald McInnesViola85-22. Breiter (bar 200)5:28465983Arnold Schoenberg1092564Jonathan PegisCello874946Wolfgang MitlehnerEngineer754978Lasalle QuartetEnsemble [String Quartet]368138Rainer BrockProducer1092565Donald McInnesViola85-33. Schwer Betont (bar 201)2:09465983Arnold Schoenberg1092564Jonathan PegisCello874946Wolfgang MitlehnerEngineer754978Lasalle QuartetEnsemble [String Quartet]368138Rainer BrockProducer1092565Donald McInnesViola85-44. Sehr Breit Und Langsam (bar 229)9:47465983Arnold Schoenberg1092564Jonathan PegisCello874946Wolfgang MitlehnerEngineer754978Lasalle QuartetEnsemble [String Quartet]368138Rainer BrockProducer1092565Donald McInnesViola85-55. Sehr Ruhig (bar 370)3:52465983Arnold Schoenberg1092564Jonathan PegisCello874946Wolfgang MitlehnerEngineer754978Lasalle QuartetEnsemble [String Quartet]368138Rainer BrockProducer1092565Donald McInnesViolaPierrot Lunaire, Op.21 (1912)Part 185-61. Mondestrunken1:35465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-72. Colombine1:38465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-83. Der Dandy1:12465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-94. Eine Blasse Wäscherin1:25465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-105. Valse de Chopin1:17465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-116. Madonna1:54465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-127. Der Kranke Mond2:13465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano VocalsPart 285-138. Die Nacht2:05465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-149. Gebet An Pierrot0:52465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-1510. Raub1:08465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-1611. Rote Messe1:47465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-1712. Galgenlied0:17465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-1813. Enthauptung2:10465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-1914. Die Kreuze2:12465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano VocalsPart 385-2015. Heimweh2:04465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-2116. Gemeinheit!1:06465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-2217. Parodie1:20465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-2318. Der Mondfleck0:55465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-2419. Serenade2:23465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-2520. Heimfahrt1:40465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano Vocals85-2621. O Alter Duft1:32465983Arnold Schoenberg92243Pierre BoulezConductor530230François EckertEngineer, Recording Supervisor212299Ensemble IntercontemporainEnsemble1055645Albert GiraudLibretto By3143920Dr. Marion ThiemProducer910024Christine SchäferSoprano VocalsSix Pieces For Orchestra, Op.6 Original Version (1909)85-271. Etwas Bewegt1:05294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor85-282. Bewegt1:30294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor85-293. Zart Bewegt0:50294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor85-304. Langsam (Marcia Funebre)4:20294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor85-315. Sehr Langsam2:22294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor85-326. Zart Bewegt1:38294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording SupervisorSymphony, Op.2185-331. Ruhig Schreitend6:30294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording Supervisor85-342. Variationen3:12294480Anton Webern92243Pierre BoulezConductor713679Rainer MaillardEngineer260744Berliner PhilharmonikerOrchestra1260508Roger WrightProducer633158Christian GanschRecording SupervisorCD 86: Berg: 3 Pieces For Orchestra, Op.6; Violin Concerto; Lyric Suite - 3 Pieces For String Orchestra3 Pieces For Orchestra, Op.686-11. Praeludium (Prelude)5:30732482Alban Berg283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor86-22. Reigen (Round Dance)5:32732482Alban Berg283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor86-33. Marsch (March)10:02732482Alban Berg283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording SupervisorViolin Concerto86-41. Andante - Allegretto10:36732482Alban Berg842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor842233Henryk SzeryngViolin86-52. Allegro, Ma Sempre Rubato, Frei Wie Eine Kadenz - Adagio14:05732482Alban Berg842888Rafael KubelikConductor565422Heinz WildhagenEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra833074Otto GerdesProducer834636Hans WeberRecording Supervisor842233Henryk SzeryngViolinLyric Suite - 3 Pieces For String Orchestra86-61. Andante Amoroso6:43732482Alban Berg283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor86-72. Allegro Misterioso3:30732482Alban Berg283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor86-83. Adagio Appassionato7:08732482Alban Berg283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording SupervisorCD 87: Stravinsky: Petrouchka; Apollon Musagte (1947 Version); Circus Polka For A Young ElephantPetrouchkaScene 187-1The Shrovetide Fair - The Crowds - The Conjuring-trick7:27115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-2Russian Dance2:55115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducerScene 287-3Petrouchka's Room4:26115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducerScene 387-4The Moor's Room - Dance Of The Ballerina3:52115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-5Waltz (The Ballerina And The Moor)3:26115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducerScene 487-6The Shrovetide Fair (Evening)1:13115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-7Dance Of The Wet-nurses2:39115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-8Dance Of The Peasant And The Bear1:29115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-9The Merchant And The Gipsies1:07115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-10Dance Of The Coachmen And The Grooms2:08115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-11The Masqueraders1:30115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-12The Scuffle0:43115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-13Death Of Petrouchka0:52115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-14The Police And The Charlatan1:17115469Igor Stravinsky539272Charles DutoitConductor212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducer87-15Apparition Of Petrouchka's Ghost0:51115469Igor Stravinsky539272Charles DutoitConductor833561Klaus ScheibeEngineer212726London Symphony OrchestraOrchestra841533Tamás VásáryPiano834636Hans WeberProducerApollon Musagte (1947 Version)Premier Tableau (Prologue)87-161. Naissance D'Apollon Largo - Allegretto - Tempo I4:39115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording SupervisorSecond Tableau87-172. Variation D'Apollon (Apollon Et Les Muses)3:07115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-183. Pas D'action (Apollon Et Les Trois Muses: Calliope, Polymnie Et Terpsichore) Moderato5:03115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-19Variation de Calliope (l'Alexandrin) Allegretto1:33115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-20Variation de Polymnie Allegro1:18115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-21Variation de Terpsichore Allegretto2:14115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-22Variation D'Apollon Lento2:32115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-23Pas de Deux (Apollon Et Terpsichore) Adagio4:22115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-24Coda (Apollon Et Les Muses) Vivo - Tempo Sostenuto - Agitato3:37115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording Supervisor87-25Apothose Largo E Tranquilo3:46115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra835064Hans HirschDr. Hans HirschProducer834636Hans WeberRecording SupervisorCircus Polka For A Young Elephant87-26Circus Polka For A Young Elephant3:43115469Igor Stravinsky283122Herbert von KarajanConductor835063Günter HermannsEngineer260744Berliner PhilharmonikerOrchestra833074Otto GerdesProducer834636Hans WeberRecording SupervisorCD 88: Stravinsky: Pulcinella; La Sacre Du PrintempsPulcinella Ballet In One Act - Revised Version Of 194788-11. Overture: Allegro Moderato1:57115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-22. Serenata: Larghetto "Mentre L'erbetta Pasce L'agnella"2:57115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor872899Ryland DaviesTenor Vocals88-33. Scherzino: Allegro1:37115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-4Poco Pi Vivo "Benedetto, Maledetto"0:12115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-54. Allegro1:00115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-65. Andantino1:14115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-76. Allegro "Gnora Crediteme Ch'accossi "1:38115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-87. Allegretto "Contento Forse Vivere"2:01115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-98. Allegro Assai1:52115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-109. Allegro (alla Breve) "Con Queste Paroline"2:14115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1110. Largo (Trio) "Sento Dire No'nc Pace" - Allegro "Chi Disse C la Femmena" - Presto (Duetto) "Nc Sta Quaccuna Po'"/"Una Te Fa la Nzemprece" - Larghetto6:28115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1211. Allegro - Alla Breve1:15115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1312. Tarantella1:13115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1413. Andantino "Se Tu M'ami" (Arie Antiche)2:15115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1514. Allegro0:55115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1615. Gavotta Con Due Variazioni4:08115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1716. Vivo1:29115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1817. Tempo di Minuetto "Pupillette, Fiammette D'amore"2:20115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording Supervisor88-1918. Allegro Assai2:02115469Igor Stravinsky368137Claudio AbbadoConductor472214Klaus HiemannEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer532429Wolfgang StengelRecording SupervisorLe Sacre Du Printemps - Revised Version For Orchestra (Published 1947)Part 1: The Adoration Of The Earth88-20Introduction3:11115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-21The Augurs Of Spring: Dances Of The Young Girls3:09115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-22Ritual Of Abduction1:19115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-23Spring Rounds3:40115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-24Games Of The Rival Tribes - Procession Of The Oldest-And-Wisest - Adoration Of The Earth - The Oldest-and-Wisest2:56115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-25Dance Of The Earth1:13115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorPart 2: The Sacrifice88-26Introduction (Largo)4:18115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-27Mystical Circles Of The Young Girls3:20115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-28Glorification Of The Chosen Victim - Summoning Of The Elders2:17115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-29Ritual Of The Elders3:17115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor88-30Sacrificial Dance (The Chosen One)4:31115469Igor Stravinsky368137Claudio AbbadoConductor835063Günter HermannsEngineer212726London Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorCD 89: Prokofiev: Violin Concerto No.1 In D, Op.19; Piano Concerto No.3 In C, Op.26; Lieutenant Kijé, Symphonic Suite, Op.60Violin Concerto No.1 In D, Op.1989-11. Andantino10:02621694Sergei Prokofiev368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer837562Chicago Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer368138Rainer BrockRecording Supervisor837584Shlomo MintzViolin89-22. Scherzo. Vivacissimo3:55621694Sergei Prokofiev368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer837562Chicago Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer368138Rainer BrockRecording Supervisor837584Shlomo MintzViolin89-33. Moderato8:08621694Sergei Prokofiev368137Claudio AbbadoConductor709138Karl-August NaeglerEngineer837562Chicago Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer368138Rainer BrockRecording Supervisor837584Shlomo MintzViolinPiano Concerto No.3 In C, Op.2689-41. Andante - Allegro8:56621694Sergei Prokofiev368137Claudio AbbadoConductor565422Heinz WildhagenEngineer260744Berliner PhilharmonikerOrchestra832905Martha ArgerichPiano368138Rainer BrockProducer89-52. Tema Con Variazione9:04621694Sergei Prokofiev368137Claudio AbbadoConductor565422Heinz WildhagenEngineer260744Berliner PhilharmonikerOrchestra832905Martha ArgerichPiano368138Rainer BrockProducer89-63. Allegro Ma Non Troppo8:58621694Sergei Prokofiev368137Claudio AbbadoConductor565422Heinz WildhagenEngineer260744Berliner PhilharmonikerOrchestra832905Martha ArgerichPiano368138Rainer BrockProducerLieutenant Kijé, Symphonic Suite, Op.6089-71. Naissance de Kijé4:10621694Sergei Prokofiev368137Claudio AbbadoConductor472214Klaus HiemannEngineer837562Chicago Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor89-82. Romance4:11621694Sergei Prokofiev368137Claudio AbbadoConductor472214Klaus HiemannEngineer837562Chicago Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor89-93. Noces de Kijé2:37621694Sergei Prokofiev368137Claudio AbbadoConductor472214Klaus HiemannEngineer837562Chicago Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor89-104. Troka2:44621694Sergei Prokofiev368137Claudio AbbadoConductor472214Klaus HiemannEngineer837562Chicago Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording Supervisor89-115. Enterrement de Kijé5:53621694Sergei Prokofiev368137Claudio AbbadoConductor472214Klaus HiemannEngineer837562Chicago Symphony OrchestraOrchestra368138Rainer BrockProducer, Recording SupervisorCD 90: Bartók: Music For Strings, Percussion & Celesta; Concerto For OrchestraMusic For Strings, Percussion And Celesta, Bb 114 (Sz.106)90-11. Andante Tranquillo8:51304968Béla Bartók712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer90-22. Allegro7:37304968Béla Bartók712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer90-33. Adagio7:42304968Béla Bartók712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducer90-44. Allegro Molto7:22304968Béla Bartók712500Seiji OzawaConductor472214Klaus HiemannEngineer395913Boston Symphony OrchestraOrchestra368138Rainer BrockProducerConcerto For Orchestra, BB 123 (Sz.116)90-51. Introduzione (Andante Non Troppo - Allegro Vivace)9:58304968Béla Bartók415720Lorin MaazelConductor833561Klaus ScheibeEngineer260744Berliner PhilharmonikerOrchestra833562Günther BreestProducer90-62. Giuoco Della Coppie (Allegretto Scherzando)6:32304968Béla Bartók415720Lorin MaazelConductor833561Klaus ScheibeEngineer260744Berliner PhilharmonikerOrchestra833562Günther BreestProducer90-73. Elegia (Andante, Non Troppo)7:45304968Béla Bartók415720Lorin MaazelConductor833561Klaus ScheibeEngineer260744Berliner PhilharmonikerOrchestra833562Günther BreestProducer90-84. Intermezzo Interrotto (Allegretto)4:16304968Béla Bartók415720Lorin MaazelConductor833561Klaus ScheibeEngineer260744Berliner PhilharmonikerOrchestra833562Günther BreestProducer90-95. Finale (Pesante - Presto)9:23304968Béla Bartók415720Lorin MaazelConductor833561Klaus ScheibeEngineer260744Berliner PhilharmonikerOrchestra833562Günther BreestProducerCD 91: Hindemith: Mathis Der Maler / Weill: The Threepenny Opera - Suite / Pfitzner: Palestrina - Preludes / Busoni: Doktor Faust - IntermezzoSymphonie "Mathis Der Maler"91-11. Engelkonzert8:30567511Paul Hindemith479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer, Recording Supervisor91-22. Grablegung4:15567511Paul Hindemith479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer, Recording Supervisor91-33. Versuchung Des Heiligen Antonius13:15567511Paul Hindemith479033William SteinbergConductor835063Günter HermannsEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer, Recording SupervisorDoktor Faust - First Scene91-4Symphonic Intermezzo7:161032262Ferruccio Busoni833687Ferdinand LeitnerConductor833561Klaus ScheibeEngineer604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra835064Hans HirschDr. Hans HirschProducer1083234Manfred RichterDr. Manfred RichterRecording SupervisorPalestrina - Musical Legend In Three Acts91-5Prelude To Act I. Ruhig (Andante)7:30839679Hans Pfitzner833687Ferdinand LeitnerConductor565422Heinz WildhagenEngineer839679Hans PfitznerLibretto By260744Berliner PhilharmonikerOrchestra2046172Helmut NajdaProducer856141Wolfgang LohseProducer91-6Prelude To Act II. Mit Wucht Und Wildheit7:03839679Hans Pfitzner833687Ferdinand LeitnerConductor565422Heinz WildhagenEngineer839679Hans PfitznerLibretto By260744Berliner PhilharmonikerOrchestra2046172Helmut NajdaProducer856141Wolfgang LohseProducer91-7Prelude To Act III. Langsam, Sehr Getragen7:44839679Hans Pfitzner833687Ferdinand LeitnerConductor565422Heinz WildhagenEngineer839679Hans PfitznerLibretto By260744Berliner PhilharmonikerOrchestra2046172Helmut NajdaProducer856141Wolfgang LohseProducerSuite For Wind Orchestra From "The Threepenny Opera" (1928)91-81. Overture: Maestoso1:51407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-92. The Ballad Of Mack The Knife: Moderato Assai2:16407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-103. Instead-of Song: Moderato1:48407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-114. The Ballad Of Pleasant Living: Foxtrott2:57407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-125. Polly's Song: Andante Con Moto2:21407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-135a. Tango-Ballad2:42407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-146. Cannon Song: Charleston-Tempo2:20407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording Supervisor91-157. Dreigroschen-Finale5:12407111Kurt Weill836085David Atherton (2)Conductor874946Wolfgang MitlehnerEngineer434336London SinfoniettaEnsemble472215Dr. Rudolf WernerProducer, Recording SupervisorCD 92: Shostakovich: Cello Concerto No. 2 Op. 126; Symphony No. 5 In D Minor, Op. 47Cello Concerto No.2, Op.12692-11. Largo13:55115461Dmitri Shostakovich834577Mstislav RostropovichCello712500Seiji OzawaConductor834537Hans-Peter SchweigmannEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer, Recording Supervisor92-22. Allegretto4:20115461Dmitri Shostakovich834577Mstislav RostropovichCello712500Seiji OzawaConductor834537Hans-Peter SchweigmannEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer, Recording Supervisor92-33. Allegretto14:54115461Dmitri Shostakovich834577Mstislav RostropovichCello712500Seiji OzawaConductor834537Hans-Peter SchweigmannEngineer395913Boston Symphony OrchestraOrchestra272491Thomas MowreyProducer, Recording SupervisorSymphony No.5 In D Minor, Op.4792-41. Moderato15:29115461Dmitri Shostakovich834577Mstislav RostropovichConductor874946Wolfgang MitlehnerEngineer915941National Symphony OrchestraNational Symphony Orchestra WashingtonOrchestra532268Hanno RinkeProducer847110Cord GarbenRecording Supervisor92-52. Allegretto5:36115461Dmitri Shostakovich834577Mstislav RostropovichConductor874946Wolfgang MitlehnerEngineer915941National Symphony OrchestraNational Symphony Orchestra WashingtonOrchestra532268Hanno RinkeProducer847110Cord GarbenRecording Supervisor92-63. Largo12:49115461Dmitri Shostakovich834577Mstislav RostropovichConductor874946Wolfgang MitlehnerEngineer915941National Symphony OrchestraNational Symphony Orchestra WashingtonOrchestra532268Hanno RinkeProducer847110Cord GarbenRecording Supervisor92-74. Allegro Non Troppo11:49115461Dmitri Shostakovich834577Mstislav RostropovichConductor874946Wolfgang MitlehnerEngineer915941National Symphony OrchestraNational Symphony Orchestra WashingtonOrchestra532268Hanno RinkeProducer847110Cord GarbenRecording SupervisorCD 93: Britten: Serenade For Tenor, Horn And Strings, Op.31 / Delius: Two Pieces For Small Orchestra / Vaughan Williams: Fantasia On "Greensleeves"; The Lark AscendingSerenade For Tenor, Horn & Strings, Op.3193-1Prologue1:31598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor93-2Pastoral - The Day's Grown Old3:23598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn1034209Charles CottonLibretto By837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor861690Robert TearTenor Vocals93-3Nocturne - The Splendour Falls On Castle Walls3:23598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn694647Alfred Lord TennysonAlfred TennysonLibretto By837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor861690Robert TearTenor Vocals93-4Elegy - O Rose, Thou Art Sick5:02598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn568306William BlakeLibretto By837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor861690Robert TearTenor Vocals93-5Dirge - This Ae Night3:21598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor861690Robert TearTenor Vocals93-6Hymn - Queen And Huntress Chaste And Fair2:06598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn877595Ben JonsonLibretto By837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor861690Robert TearTenor Vocals93-7Sonnet - O Soft Embalmer Of The Still Midnight3:50598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn670552John KeatsLibretto By837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording Supervisor861690Robert TearTenor Vocals93-8Epilogue1:42598601Benjamin Britten833560Carlo Maria GiuliniConductor834537Hans-Peter SchweigmannEngineer469186Dale ClevengerFrench Horn837562Chicago Symphony OrchestraOrchestra833562Günther BreestGuenther BreestProducer847110Cord GarbenRecording SupervisorOn Hearing The First Cuckoo In Spring93-9On Hearing The First Cuckoo In Spring7:12833235Frederick Delius424576Daniel BarenboimConductor833561Klaus ScheibeEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorSummer Night On The River93-10Summer Night On The River5:41833235Frederick Delius424576Daniel BarenboimConductor833561Klaus ScheibeEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorFantasia On Greensleeves93-11Fantasia On Greensleeves4:28662168Ralph Vaughan Williams424576Daniel BarenboimConductor833561Klaus ScheibeEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording SupervisorThe Lark Ascending93-12The Lark Ascending13:34662168Ralph Vaughan Williams424576Daniel BarenboimConductor833561Klaus ScheibeEngineer415725English Chamber OrchestraOrchestra833562Günther BreestGuenther BreestProducer, Recording Supervisor833851Pinchas ZukermanViolinCD 94: Rodrigo: Concierto de Aranjuez / Falla: El Amor Brujo; 98 Nights In Spanish GardenConcierto de Aranjuez For Guitar And Orchestra94-11. Allegro Con Spirito6:12523642Joaquín Rodrigo941864Odón AlonsoConductor565422Heinz WildhagenEngineer341147Narciso YepesGuitar2098343Orquesta Sinfónica de RTVEOrquesta Sinfónica de Radiotelevisión EspañolaOrchestra835064Hans HirschDr. Hans HirschProducer594308Sándor FerenczySandor FerenczyRecording Supervisor94-22. Adagio11:28523642Joaquín Rodrigo941864Odón AlonsoConductor565422Heinz WildhagenEngineer341147Narciso YepesGuitar2098343Orquesta Sinfónica de RTVEOrquesta Sinfónica de Radiotelevisión EspañolaOrchestra835064Hans HirschDr. Hans HirschProducer594308Sándor FerenczySandor FerenczyRecording Supervisor94-33. Allegro Gentile4:58523642Joaquín Rodrigo941864Odón AlonsoConductor565422Heinz WildhagenEngineer341147Narciso YepesGuitar2098343Orquesta Sinfónica de RTVEOrquesta Sinfónica de Radiotelevisión EspañolaOrchestra835064Hans HirschDr. Hans HirschProducer594308Sándor FerenczySandor FerenczyRecording SupervisorEl Amor BrujoBallet By G. Martinez Sierra94-4Introducción y Escena0:33229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-5En la Cueva. La Noche2:27229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-6Canción Del Amor Dolido1:34229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-7El Aparecido0:13229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-8Danza Del Terror1:58229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-9El Círculo Mágico2:34229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-10A Media Noche. Los Sortilegios0:25229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-11Danza Ritual Del Fuego, Para Ahuyentar Los Malos Espritos4:06229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-12Escena1:04229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-13Canción Del Fuego Fatuo1:36229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-14Pantomima4:29229547Manuel De Falla847489Garcia NavarroGarcía NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-15Danza Del Juego de Amor2:52229547Manuel De Falla847489Garcia NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducer94-16Final. Las Campanas Del Amanecer1:24229547Manuel De Falla847489Garcia NavarroConductor565422Heinz WildhagenEngineer2175894Gregorio Martínez SierraGregori Matinez-SierraLibretto By837527Teresa BerganzaMezzo-soprano Vocals212726London Symphony OrchestraOrchestra472215Dr. Rudolf WernerProducerNights In The Gardens Of Spain94-171. En El Generalife10:07229547Manuel De Falla842888Rafael KubelikConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1032265Margrit WeberPiano94-182. Danza Lejana4:46229547Manuel De Falla842888Rafael KubelikConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1032265Margrit WeberPiano94-193. En Los Jardines de la Sierra de Cordoba8:04229547Manuel De Falla842888Rafael KubelikConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1032265Margrit WeberPianoCD 95: Gershwin: Rhapsody In Blue; An American In Paris / Bernstein: "Candide" Overture; Symphonic Dances From "West Side Story"Rhapsody In Blue95-1Rhapsody In Blue15:55261293George Gershwin1264582Kurt HiltawskyClarinet522209Kurt MasurConductor522210Gewandhausorchester LeipzigOrchestra425130Siegfried StöckigtSiegfried StockigtPiano526420Reimar BluthProducerAn American In Paris95-2An American In Paris17:58261293George Gershwin712500Seiji OzawaConductor709138Karl-August NaeglerEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer, Recording SupervisorOverture Candide95-3Overture Candide4:28299702Leonard Bernstein406271Arthur FiedlerConductor514353Gernot WesthäuserGernot WesthaeuserEngineer835063Günter HermannsEngineer392677Boston Pops OrchestraOrchestra272491Thomas MowreyProducer, Recording Supervisor"West Side Story" - Symphonic Dances95-41. Prologue4:21299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-52. Somewhere3:36299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-63. Scherzo1:29299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-74. Mambo2:26299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-85. Cha-cha0:55299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-96. Meeting Scene0:44299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-107. Cool Fugue3:30299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-118. Rumble1:55299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducer95-129. Finale2:46299702Leonard Bernstein712500Seiji OzawaConductor423502Jack HuntEngineer446472San Francisco SymphonyOrchestra272491Thomas MowreyProducerCD 96: Messiaen: Turangalîla SymphonyTurangalîla Symphonie96-11. Introduction6:2532180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-22. Chant D'amour 18:1432180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-33. Turangalîla I5:2632180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-44. Chant D'amour 211:0332180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-55. Joie de Sang Des Étoiles6:4232180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-66. Jardin Du Sommeil D'amour12:3932180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-77. Turangalîla 24:1132180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-88. Développement de L'amour11:4132180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-99. Turangalîla 34:2732180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording Supervisor96-1010. Final7:4432180Olivier Messiaen880725Myung-Whun ChungMyung Whun ChungConductor408897Michael BergekEngineer604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano807313Lennart DehnRecording SupervisorCD 97: Boulez: Le Marteau Sans Maitre / Stockhausen: GruppenLe Marteau Sans Maître97-1Avant "l'Artisanat Furieux"1:5592243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-2Commentaire I de "Bourreaux de Solitude"4:3192243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-3"L'Artisanat Furieux"2:3992243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-4Commentaire II de "Bourreaux de Solitude"4:1692243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-5"Bel Édifice Et Les Pressentiments" Version Premire4:0892243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-6"Bourreaux de Solitude"5:0392243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-7Après "L'Artisanat Furieux"1:0792243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-8Commentaire III de "Bourreaux de Solitude"6:2592243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording Supervisor97-9"Bel Édifice Et Les Pressentiments", Double8:3092243Pierre Boulez92243Pierre BoulezConductor649589Stephan FlockEngineer212299Ensemble IntercontemporainEnsemble835562René CharRene CharLibretto By411347Hilary SummersMezzo-soprano Vocals3143920Dr. Marion ThiemProducer633159Helmut BurkRecording SupervisorGruppen Für Drei Orchester - Werk Nr.697-10Gruppen Für Drei Orchester - Werk Nr.622:2632190Karlheinz Stockhausen368137Claudio AbbadoConductor1037075Friedrich GoldmannConductor881713Marcus CreedConductor833563Gernot Von SchultzendorffEngineer260744Berliner PhilharmonikerOrchestra1000282Arend ProhmannProducer834243Christopher AlderRecording SupervisorCD 98: Schnittke: Concerto Grosso No.1 / Lutoslawski: Chain 3; Novelette / Ligeti: Chamber ConcertoChain 3 For Orchestra (1986)98-11. Presto4:42853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording Supervisor98-22. Presto4:59853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording Supervisor98-33. 382:12853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording SupervisorConcerto Grosso No.1 (1976-77)98-41. Preludio: Andante4:59154287Alfred Schnittke842134Heinrich SchiffConductor1051441Wilhelm SchlemmDr. Wilhelm SchlemmEngineer848261The Chamber Orchestra Of EuropeChamber Orchestra Of EuropeOrchestra880236Yuri SmirnovPiano [Prepared], Harpsichord532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor359068Gidon KremerViolin359067Tatiana GrindenkoTatjana GrindenkoViolin98-52. Toccata: Allegro4:26154287Alfred Schnittke842134Heinrich SchiffConductor1051441Wilhelm SchlemmDr. Wilhelm SchlemmEngineer880236Yuri SmirnovHarpsichord, Piano [Prepared]848261The Chamber Orchestra Of EuropeChamber Orchestra Of EuropeOrchestra532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor359068Gidon KremerViolin359067Tatiana GrindenkoTatjana GrindenkoViolin98-63. Recitativo: Lento6:55154287Alfred Schnittke842134Heinrich SchiffConductor1051441Wilhelm SchlemmDr. Wilhelm SchlemmEngineer880236Yuri SmirnovHarpsichord848261The Chamber Orchestra Of EuropeChamber Orchestra of EuropeOrchestra532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor359067Tatiana GrindenkoTatjana GrindenkoViolin359068Gidon KremerViolone98-74. Cadenza (Without Tempo Marking)2:32154287Alfred Schnittke842134Heinrich SchiffConductor1051441Wilhelm SchlemmDr. Wilhelm SchlemmEngineer880236Yuri SmirnovHarpsichord848261The Chamber Orchestra Of EuropeChamber Orchestra Of EuropeOrchestra532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor359068Gidon KremerViolin359067Tatiana GrindenkoTatjana GrindenkoViolin98-85. Rondo: Agitato7:08154287Alfred Schnittke842134Heinrich SchiffConductor1051441Wilhelm SchlemmDr. Wilhelm SchlemmEngineer880236Yuri SmirnovHarpsichord848261The Chamber Orchestra Of EuropeChamber Orchestra Of EuropeOrchestra532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor359068Gidon KremerViolin359067Tatiana GrindenkoTatjana GrindenkoViolin98-96. Postludio: Andante - Allegro - Andante2:13154287Alfred Schnittke842134Heinrich SchiffConductor1051441Wilhelm SchlemmDr. Wilhelm SchlemmEngineer880236Yuri SmirnovHarpsichord848261The Chamber Orchestra Of EuropeChamber Orchestra Of EuropeOrchestra532268Hanno RinkeProducer532429Wolfgang StengelRecording Supervisor359068Gidon KremerViolin359067Tatiana GrindenkoTatjana GrindenkoViolinChamber Concerto For 13 Instrumentalists98-101. Corrente (Fliessend)5:07190370György Ligeti92243Pierre BoulezConductor910434Daniel RaguinDaniel HaguinEngineer212299Ensemble IntercontemporainEnsemble472215Dr. Rudolf WernerProducer98-112. Calmo, Sostenuto5:53190370György Ligeti92243Pierre BoulezConductor910434Daniel RaguinDaniel HaguinEngineer212299Ensemble IntercontemporainEnsemble472215Dr. Rudolf WernerProducer98-123. Movimento Preciso E Meccanico3:58190370György Ligeti92243Pierre BoulezConductor910434Daniel RaguinDaniel HaguinEngineer212299Ensemble IntercontemporainEnsemble472215Dr. Rudolf WernerProducer98-134. Presto3:33190370György Ligeti92243Pierre BoulezConductor910434Daniel RaguinDaniel HaguinEngineer212299Ensemble IntercontemporainEnsemble472215Dr. Rudolf WernerProducerNovelette For Orchestra (1979)98-141. Announcement1:45853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording Supervisor98-152. First Event2:58853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording Supervisor98-163. Second Event3:38853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording Supervisor98-174. Third Event2:10853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording Supervisor98-185. Conclusion6:58853983Witold Lutoslawski853983Witold LutoslawskiConductor833563Gernot Von SchultzendorffEngineer289522BBC Symphony OrchestraOrchestra836768Steven PaulDr. Steven PaulProducer633158Christian GanschRecording SupervisorCD 99: Gorecki: Symphony No. 3 "Symphony Of Sorrowful Songs"Symphony No.3 "Symphony Of Sorrowful Songs"99-11. Lento (Sostenuto Tranquillo Ma Cantabile)30:02216138Henryk Górecki578492Kazimierz KordConductor910618Orkiestra Symfoniczna Filharmonii NarodowejWarsaw Philharmonic OrchestraOrchestra966221Ursula SingerProducer9545212Joanna KozłowskaJoanna KoslowskaSoprano Vocals99-22. Lento E Largo (Tranquilissimo - Cantabilissimo - Dolcissimo - Legatissimo)9:59216138Henryk Górecki578492Kazimierz KordConductor910618Orkiestra Symfoniczna Filharmonii NarodowejWarsaw Philharmonic OrchestraOrchestra966221Ursula SingerProducer9545212Joanna KozłowskaJoanna KoslowskaSoprano Vocals99-33. Lento (Cantabile Semplice)18:51216138Henryk Górecki578492Kazimierz KordConductor910618Orkiestra Symfoniczna Filharmonii NarodowejWarsaw Philharmonic OrchestraOrchestra966221Ursula SingerProducer9545212Joanna KozłowskaJoanna KoslowskaSoprano VocalsCD 100: Reich: Six Pianos / Adams: Shaker Loops / Glass: Violin ConcertoSix Pianos100-1Six Pianos24:2322946Steve Reich355862Gerd HenjesGerhard HenjesEngineer472214Klaus HiemannEngineer274691Bob BeckerPiano136998Glen VelezPiano298150James PreissPiano298152Russ HartenbergerPiano264406Steve ChambersPiano22946Steve ReichPiano472215Dr. Rudolf WernerRecording Supervisor, ProducerShaker Loops100-21. Shaking And Trembling8:51144310John Adams446471Edo de WaartConductor446472San Francisco SymphonyOrchestra100-32. Hymning Slews6:29144310John Adams446471Edo de WaartConductor446472San Francisco SymphonyOrchestra100-43. Loops And Verses7:23144310John Adams446471Edo de WaartConductor446472San Francisco SymphonyOrchestra100-54. A Final Shaking3:37144310John Adams446471Edo de WaartConductor446472San Francisco SymphonyOrchestraConcerto For Violin And Orchestra100-6= 104 - = 1206:3720691Philip Glass834229Christoph von DohnányiChristoph von DohnanyiConductor713679Rainer MaillardEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer, Recording Supervisor359068Gidon KremerViolin100-7= Ca. 1088:4620691Philip Glass834229Christoph von DohnányiChristoph von DohnanyiConductor713679Rainer MaillardEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer, Recording Supervisor359068Gidon KremerViolin100-8= Ca. 150 - Coda: Poco Meno = 1049:3020691Philip Glass834229Christoph von DohnányiChristoph von DohnanyiConductor713679Rainer MaillardEngineer754974Wiener PhilharmonikerOrchestra532429Wolfgang StengelProducer, Recording Supervisor359068Gidon KremerViolin + +282391Sylvie VartanThe Ultimate Collection1948830Lynne MorseA&R [A & R Coordinator]CD301841917Tim Bryant (2)Art DirectionCD306680634Arthur PlashaertChoreographyCD171856811Claude ThompsonClaude ThomsonChoreographyCD286689880Claude Thompson (4)ChoreographyCD275491333Christian Dior (2)Costume Designer [Clothes]CD3512582224Michel FresnayCostume Designer [Costumes]CD1712582224Michel FresnayCostume Designer [Costumes]CD27942580Eric MareskaCreative Director, Producer [Realization]5452147Jean-Marc FollietCreative Director, Producer [Realization]3525397Andréa BureauA. BureauDesignCD191191379Bruno LeysB. LeysDesignCD19451472Claude CaudronDesignCD411897596Evelyne PersinDesignCD39, CD402249224Gilles PaquetGil PaquetDesignCD191833351Gribbitt!DesignCD301838142Murry WhitemanDesignCD302211274Osamu NagakawaDesignCD181831017Paul Gross (3)DesignCD3037609432Pop2 PopDesign [Album Reissue]1885702Cactus DesignCactus ConceptDesign [Box Set & Booklet]2371471François DupuichDesign, IllustrationCD24, CD26, CD282371471François DupuichDesign, Illustration, Photography By, LayoutCD271952213Hubert Le ForestierFilm Director [Show]CD281574164Marion SarrautFilm Producer [Show Production]CD172318891Antonio Lopez (3)Antonio López, 166GraphicsCD76674549Martin GráficosMartinGraphicsCD712165151Jose Eber (2)JoseebertHair [Hair Styling]CD401191379Bruno LeysIllustrationCD222249224Gilles PaquetIllustrationCD172249224Gilles PaquetGill PaquetIllustrationCD221191379Bruno LeysBruneau LeysLayoutCD222371471François DupuichLayoutCD282259801Pierre GuyotP. GuyotLayoutCD373034265Regis PagniezRégis PagniezLayoutCD11191379Bruno LeysLayout, IllustrationCD176671229Laurent DostesLiner Notes282391Sylvie VartanLiner NotesCD2012752039Michelle BühlerMichele BuhlerMake-UpCD401292321Martial MartinayMastered By495105Bernard LeloupB. LeloupPhotography ByCD29, CD363554032Claudio GarofaloGarofaloPhotography ByCD272239808Francis GoldsteinF. GoldsteinPhotography ByCD232252497François GaillardPhotography ByCD153289106Gabriel PasqualiniG. PascaliniPhotography ByCD82256331Gilbert MoreauPhotography ByCD122511744Glauco CortiniPhotography ByCD71493522Helmut NewtonPhotography ByCD26, CD281590189Jean-Marie PérierJ.-M. PerierPhotography ByCD5, CD82248181Michael ChildersPhotography ByCD33, CD35, CD40, CD412248181Michael ChildersChildersPhotography ByCD362248181Michael ChildersM. ChildersPhotography ByCD373742219Michael L. AbramsonMichael AbramsonPhotography ByCD395497899StudiumPhotography ByCD72245859Sygma (2)Photography ByCD25, CD27, CD36730210Tony FrankPhotography ByCD121590189Jean-Marie PérierJean-Marie PerierPhotography By ["Salut Les Copains"]CD11590189Jean-Marie PérierPerierPhotography By [Back Cover: "Salut Les Copains"]CD22239808Francis GoldsteinPhotography By [Back Cover]CD174551313Michel HoltzPhotography By [Back Cover]CD36700842Mike YavelPhotography By [Back Cover]CD382942014Philippe d'ArgencéPhotography By [Back Cover]CD32390740Sipa PressSipa-PressPhotography By [Back Cover]CD383185920Reporters AssociésPhotography By [Black And White]CD91590189Jean-Marie PérierPhotography By [Booklet Photo 12]2601097Alain DejeanPhotography By [Booklet]6345880Archives FilipacchiPhotography By [Booklet]495105Bernard LeloupPhotography By [Booklet]6671228Corbis LeloupPhotography By [Booklet]2292183James AndansonPhotography By [Booklet]2246098Jean-Louis RancurelPhotography By [Booklet]2396237Jean-Pierre LaffontJP LaffontPhotography By [Booklet]2266650Patrick SoubiranPhotography By [Booklet]1756853Philippe Le TellierPhotography By [Booklet]1882742Scoop (12)Photography By [Booklet]2245859Sygma (2)Photography By [Booklet]2183539Benjamin AugerPhotography By [Booklet], Photography By [CD12, CD15, CD16], Photography By [Cover CD17, CD19]2248181Michael ChildersPhotography By [Box Set], Photography By [Booklet]1590189Jean-Marie PérierJ.-M. PerierPhotography By [Colour "Salut Les Copains"]CD31590189Jean-Marie PérierJ.M. PérierPhotography By [Colour]CD9, CD14495105Bernard LeloupB. LeloupPhotography By [Cover]495105Bernard LeloupPhotography By [Cover]CD30 to CD322248181Michael ChildersPhotography By [Cover]CD382245859Sygma (2)Photography By [Cover]CD382237613Pierre Fournier (2)P. FournierPhotography By [Front Cover: Sylvie In Camargue Making Of Her Film]CD21590189Jean-Marie PérierJean-Marie PerierPhotography By [Front Cover]CD6495105Bernard LeloupPhotography By [Inner Sleeve]CD282261512Michel DreyfussMichel DreyfusPhotography By [Inner]CD221806452Harry LangdonPhotography By [Liner]CD30730210Tony FrankPhotography By [S L C]CD66689881François ComtetSet DesignerCD27AlbumReissueRemasteredCompilationLimited EditionNumberedPopFrance2012℗ 2012 +© 2012 +Massive 44 disc box set of Sylvie Vartan's studio and live recordings, 1962-1986. +The albums remastered in this box set are 41, but three are double. + +CD1: 1962 +Original label [l11358], cat# 430.103 S, 430.103 +Pressed by [l269760] 12-62 +Made by [l265375] +Label 12 R 62 M 556 +[a415476] courtesy of [l920852] +Track 1-9: on back cover title is "Mes copains" +Track 1-14: on back cover title is " Est-ce que tu le sais" +Track 1-22: 45T Ep version + +CD2: 1963 +Original label [l11358], cat# 430.137 S, 430.137 +Pressed by [l322444] - 7.63 +Label 7 R 63 M - 931 +Track 2-6: on back cover title is "Je ne vois que toi (I'm watching)" +Track 2-7: on back cover title is "(I'm watching) Every little move you make" +Track 2-8: on back cover title is "En écoutant la pluie (Rhythm in the rain)" + +CD3: 1964 +Original label [l11358], cat# 430.154 S, 430.154 +Pressed by [l319443] +Label 3 R 64 M - 1295 +Track 3-2: on back cover title is "Love has laid his hands on me" +Track 3-6: on back cover title is "Te voici (Meanwoman blues)" +Track 3-7: from movie "Cherchez l'Idole" +Track 3-21: EP version +Track 3-22: EP version + +CD4: 1965 +Original label [l11358], cat# LSP-3438, LSP 3438, Mono LPM-3438 RE, Stereo LSP-3438 RE +Label SPRM-5014 +On back cover titles are only in english +Public performance clearance-BMI. +Recorded in [l288615], New York City. +Tracks 4-4 to 4-12 are Electronically Reprocessed Stereo +Recorded in [l343911] +© 1965 [l265984] + +CD5: 1965 +Original label [l11358], cat# 431.012 S, 431.012 +Label 431.012 A +Pressed by [l269760] - 1-66 +Track 5-2: on back cover title is "Quand tu es là" +Track 5-4: on back cover title is "Il faut trouver son coin de ciel (Beyon' the rising sun)" +Track 5-6: adapted from The Bible +Track 5-11: on back cover title is "C'était trop beau" +Track 5-24: German version + +CD6: 1967 +Original label [l11358], 441.029 S, 441.029 +Made by [l265375] +Pressed by [l269760] - 3-67 +Label 441.029 A +Track 6-2: on cover title is "Moi je danse (Same old song)" +Track 6-6: on cover title is "Donne moi ton amour (Gimme me some lovin)" +Track 6-8: From english folclore +Track 6-9: on cover title is "Huit heures vingt (98.6) + +CD7: 1967 +Original label [l11358], LPM-10341 - [l11358] - 33 RPM Long Play - LPM 10341 +[l295887] +Label 3F7UP 2029 +Impuesto de lujo a metàllico Permiso N.° 3724 +Track 7-3: on back cover title is "El dia aquel (Ce jour la)" +Track 7-4: on back cover title is "Dile que vuelva (Dis lui qu'il revienne) +Track 7-6: Sung in french, on back cover title is "Turn, turn, turn (Vuelve, vuelve, vuelve) +Track 7-9: on back cover title is "El aire que se mueve (The more I see you)" +Track 7-10: on back cover title is "Quisiera ser un chico (Je voudrais etre un garçon)" +Track 7-12: Sung in french, on back cover title is "Mister John B" + +CD8: 1967 +Original label [l11358], 730.016 [l442894] +On spine: R.C.A. mono 730 016 +Pressed by [l269760] +Made by [l265375] +Label 730.016 A +Track 8-6: on back cover title is "Le jour qui vient" +Track 8-17: German version + +CD9: 1968 +Original label [l11358], 740.039 [l963392] +Label 740.039 A +Pressed by [l269760] - 12-68 +Manufactured by [l265375] +Track 9-7: on cover title is "Face au soleil" +Track 9-19: Italian version +Track 9-22: Previously unreleased + +CD10: 1969 +Original label [l11358], LSP 10205 +Label TKAY 14382 +Publishing [l347277]/BIEM +Manufactured by [l94677] +Track 10-7: on cover title is "Le farfalle" +Track 10-17: Previously unreleased +Track 10-18: Previously unreleased +Track 10-19: Previously unreleased +Track 10-20: Previously unreleased + +CD11: 1970 +Original label [l11358], 740 045, 740.045 +Manufactured by [l265375] +Track 11-18: Italian version + +CD12: 1970 +Original label [l11358], 440.745 +Manufactured by [l500081] +Label 440.745 A +Track 12-5: On cover title is "Prends ma main (Friendship train) +Track 12-13: from "Hair" +Track 12-14: Previously unreleased + +CD13: 1971 +Original label [l895], SRA-9276 - 77, SRA-9276 77 +Label (JLY-2954)➃ +Manufactured by [l295720] +On inner sleeve there is one more track: "Let the sunshine in" +Track 13-19: Japanese version +Track 13-20: Sung in japanese previously unreleased on CD - D.R. + +CD14: 1972 +Original label [l11358], 440 753, 440753, 440.753 +Label 440.753 A +Printed by [l272630] +Track 14-1: on cover title is "La moitie du chemin" +Track 14-4: on cover title is "Medecin man" +Track 14-5: on cover title is "Comme un arbre arrache" +Track 14-6: on cover title is "Une poignee de monnaie" +Track 14-17: D.R. +Track 14-19: Previously unreleased +Track 14-20: Italian version previously unreleased +Track 14-21: Previously unreleased +Track 14-22: Previously unreleased + +CD15: 1972 +Original label [l11358], 460 001, 460.001 +Label 460.001 A +Production and realization for [l895] +Track 15-5a: on cover title is "Rock n'roll music" +Track 15-6: on cover title is "Ce soir nous sommes la pour vous (Join together)" +Track 15-7: on cover title is "Par amour par pitie" +Track 15-8: on cover title is "Mon pere" +Track 15-14: Previously unreleased +Track 15-15: Previously unreleased +Track 15-16: Previously unreleased +Track 15-17: Previously unreleased +Track 15-18: Previously unreleased + +CD16: 1973 +Original label [l11358], 440 763, 440763, 440.763 +Label 440.763 A +Pressed by [l338177] +[a282489] courtesy of [l7704] +Track 16-1: on cover title is "J’ai un probleme" +Track 16-3: From TV Show "Graine d'ortie" theme from Paul Wagner book published by Editions La Table Ronde +Track 16-5: on cover title is "La vie c’est du cinema" +Track 16-7: From TV Show theme song "Graine d'ortie" theme from Paul Wagner book published by Editions La Table Ronde +Track 16-8: on cover title is "Non je ne suis plus la meme" +Track 16-10: on cover title is "Mon pere" +Track 16-14: D.R. +Track 16-16: Alternative version +Track 16-17: Previously unreleased + +CD17: 1974 +Original label [l11358], FPL1 0009, [l88533] +Label FPLI 0009 A +Printed by [l272630] +Track 17-8: courtesy of Junior Production, Gerad Tournier and CBS disques +Track 17-15: courtesy of Productions TREMA +Track 17-21: Previously uneleased +Track 17-22: Previously unreleased + +CD18: 1974 +Original label [l895], RCA-6179 +℗ [l29656] +Label (RCA-6179-A) ➄ (JPL1-8005) +Manufactured by [l40355] +Date & Location: Tracks 18-1, 18-4, 18-7: October 10, 1973, Shibuya Kokaido +Tracks 18-2, 18-3, 18-5, 18-6, 18-8, 18-9, 18-10, 18-11: October 13, 1973, Nakano Sun Plazza Hall +Track 18-7: on cover title is "La vie c’est du cinema" +Track 18-8: on cover title is "Mon pere" +Track 18-9: from W. A. Mozart symphony n°40 in G minor +Track 18-11: on cover title is "Les hommes (qui n’ont plus rien a perdre)" + +CD19: 1974 +Original label [l11358], FPL 1 0062, [l895], FPLI 0062 (spine) +Label FPL2 0051, FPL2 0051 A +℗ [l11358] +Printed by [l272630] +Recorded at [l269411] +Track 19-2: on cover title is "Da dou ron ron" +Track 19-4: on cover title is "Encore un jour une nuit" +Track 19-7: on cover title is "Shang shang a lang" +Track 19-8: on cover title is "Rock n'roll man" +Track 19-12: on cover title is "Laisse faire laisse dire" +Track 19-15: English version + +CD20: 1974 +Original label [l895] SX-261, (JPLI-8151) +Label (SX-261-A), (JPL1-8151) +Manufactured by [l40355] +℗ [l29656] +Track 20-2: on cover title is "Love is blue" +Track 20-3: on cover title is "Hymne a l'amour" +Track 20-6: on cover title is "Les moulins de mon couer" +Track 20-8: on cover title is "Rock'n roll man" +Track 20-9: on cover title is "Ne me quittes pas" +Track 20-11: on cover title is "Dadou ron ron" +Track 20-14: French version previously unreleased +Track 20-15: English version previously unreleased + +CD21: 1975 +Original label [l895], [l94677], TPL1 1138 +Label EKAY 28338 +℗ 1974 [l11358] +℗ 4/75 +Manufactured by [l264979] +Produced for [l161901] +Printed by [l373085] - 4-75 +Track 21-1: on cover title is "Aladino" +Track 21-3: on cover title is "Angelo mio" +Track 21-4: on cover title is "E' l'uomo mio" +Track 21-6: on cover title is "Il mio problema" - [a282489] courtesy of [l19050] +Track 21-9: on cover title is "Da du ron ron" +Track 21-12: From Mozart Symphony N° 40 +Track 21-17: 45T. version +Track 21-19: D.R. +Track 21-20: D.R. +Track 21-21: Previously unreleased +Track 21-22: Previously unreleased, D.R. +Track 21-23: Previously unreleased, D.R. + +CD22: 1975 +Original label [l11358], FPL1 0061 +Label FPL2 0051 C +℗ 1974 [l11358] +Printed by [l272630] +Track 22-3: [a320305] courtesy of Productions [l68171] +Track 22-4a: [a320305] courtesy of Productions [l68171] +Track 22-9: [a282489] courtesy of Disques [l7704] +Track 22-10: [a282489] courtesy of Disques [l7704] +Track 22-11: on cover title is "Bon anniversaire" +Track 22-12: Previously unreleased on CD +Track 22-13: Previously unreleased on CD +Track 22-14: Previously unreleased, D.R. + +CD23: 1975 +Original label [l11358], FPL2 0095 +Inner sleeve: Integrale du show Sylvie Vartan Palais des Congrès Octobre 1975 +Label disc 1 FPL2 0095 A1 +Label disc 2 FPL2 0095 B2 +℗ [l11358] +Printed by [l272630] +Engineered at [l269411] +Track 23-1-3: on cover title is "Laisse moi l’amour (When will I be loved)" +Track 23-1-4: on cover title is "Merci merci monsieur l’agent " +Track 23-1-5: on cover title is "Tu ne me parles plus d’amour (Innamorati)" + +CD24: 1976 +Original label [l895], [l11358], FPL1 0122, FPL 1 0122 +Label FPL 1 00122 1, LPL 4546 1Y +℗ [l11358] +Produced for [l895] +Printed by [l272630] +Track 24-1: on cover title is "Qu’est-ce qui fait pleurer les blondes?" +Track 24-2: on cover title is "Tu ne me parles plus d’amour" +Track 24-3: on cover title is "Le mariage" +Track 24-4: on cover title is "Ma liberte" +Track 24-5: on cover title is "On peut mourir, le monde chante" +Track 24-6: on cover title is Danse-la, chante-la" +Track 24-9: on cover title is "Changement de cavaliere" +Track 24-10: on cover title is "Ma decadance" +Track 24-11: on cover title is "La minute de verite" +Track 24-12: on cover title is "La drole de fin" + +CD25: 1976 +Original label [l895], [l11358], FPL1 0186 +Label FPL1 0186 A +℗ [l11358] +Printed by [l272630] +Produced for [l895] +Recorded at [l269411] +Track 25-1: on cover title is "Ta sorciere bien aimee" +Track 25-3: on cover title is "Dieu merci (Si sisto)" +Track 25-8: on cover title is "Il suffirait que tu sois la (Doccia fredda)" + +CD26: 1977 +Original label [l895], [l11358], PL 37111 +Label PL 37111 A +℗ [l29656] +℗ [l11358] +Produced for [l895] +Track 26-1: Publisher Claude Pascal +Track 26-2: Publisher Tanday Music +Track 26-3: Publisher Chappell - April Music +Track 26-4: on cover title is "Talking about love" - Publisher Tanday Music +Track 26-5: Publisher LEM (E. Marouani) +Track 26-6: Publisher Warner-Bros +Track 26-7: Publisher Martin Coulter +Track 26-8: Publisher Marcy Music +Track 26-9: On cover title is "Je vivrais pour deux" - Publisher Tanday Music +Track 26-10: Publisher Tanday Music +Track 26-11: Publisher KJCD Music - Tanday Music + +CD27: 1977 +Original label [l895], [l11358], PL 37021, [l520751] +Label PL 37021 A +℗ [l895], [l11358] +Recorded at [l269411] +Track 27-1: (Tanday Music) +Track 27-2: (Tanday Music) +Track 27-3: (Allo Music) - Courtesy of [l1610] +Track 27-4: on cover title is "Sugar dady c'est moi" (Tanday Music) +Track 27-5: (Bagatelle) +Track 27-6: (Editeur Claude Pascal) +Track 27-7: (Marcy Music) +Track 27-8: (Tanday Music) - Courtesy of [l28820] +Track 27-9: (Tanday Music) +Track 27-10: (Marcy Music / Tanday Music) +Track 27-11: on cover title is "Dieu merci (Si Sisto)" - (Tutti) +Track 27-12: (Tanday Music) +Track 27-13: (Tanday Music) +Track 27-14: (Tanday Music) +Track 27-16: Previously unreleased +Licensed from INA - ℗ 1975 INA +Track 27-17: Previously unreleased on CD +Licensed from INA - ℗ 1978 INA + +CD28: 1977 +On back cover: Palais Des Congres, Enregistrement public +Original label [l895], [l11358], PL 37111 (2), PL37116 (2) +Label disc 1 PL 37116 A +Label disc 2 PL 37116 B +℗ [l11358] +Produced for [l895] +Recorded between 7 and 8 October 1977 with “[l264340]” +Mixed at [l269411] +Track 28-1-2: (Tanday Music) +Track 28-1-3: (Martin Coulter) +Track 28-1-4: (A.R.T. Music France/Tanday Music) +Track 28-1-5.: on cover title is "Dieu merci (Si sisto)" (Tutti) +Track 28-1-6: on cover title is "Qu'est-ce qui fait pleurer les blondes" (Essex) +Track 28-1-7: on cover title is "Arrete de rire "Sail on"" (Marcy Music) +Track 28-1-8: (Tanday Music) +Track 28-1-9: (Bagatelle) +Track 28-1-10: (Chappell) +Track 28-2-2: (Claude Pascal) +Track 28-2-3: on cover title is "La drole de fin "Last tango"" (L.E.M.) +Track 28-2-4: (N.E.E.B.) +Track 28-2-5: (Spanka Music) +Track 28-2-6: (Conrad/Tanday Music) +Track 28-2-7: (Tanday Music) +Track 28-2-8a: (Chrysalis Music L.T.D./Jare) +Track 28-2-8b: (Suzelle) +Track 28-2-8c. (Tanday Music/Suzelle) +Track 28-2-8d: (Chappell/Tanday Music) +Track 28-2-8e: (Chrysalis Music L.T.D./Jare) +Track 28-2-9: (Isabelle Music) +Track 28-2-10: (Tanday Music) +Track 28-2-11: (Tanday Music) +Track 28-2-12: Previously unreleased on CD + +CD29: 1978 +Original label [l895], [l11358], PL 37221, Reference RC 250 +Label PL 37221 A +℗ [l11358] +Produced for [l895] +Printed by [l272692] +Recorded at [l269411] (Boulogne) - [l116077] (Los Angeles) +Track 29-14: Alternative version previously unreleased + +CD30: 1979 +Original label [l895], [l11358], PL 13015, Reference RC 250 +Label PL 13015 A +℗ [l11358] +Pressed and distribuited by [l264980] +Produced for [l789069] +Recorded and mixed at [l116077], North Hollywood +Additional recording at [l269411], Paris, France +[a46163] (Pablo Recording Artist) +[a52312] appears through the courtesy of [l94729] +[a37735] appears through the courtesy of [l36195] +[a264992] appears through the courtesy of [l235279] +Track 30-1: BMI +Track 30-2: ASCAP/BMI +Track 30-3: ASCAP/BMI +Track 30-4: ASCAP/BMI +Track 30-5: BMI +Track 30-6: ASCAP +Track 30-7: ASCAP +Track 30-8: BMI +Track 30-9: BMI, on booklet title is "Dance to the rhythm on my love" +Track 30-10: BMI +Track 30-12: Remix 45T. + +CD31: 1979 +Original label [l895], [l11358], PL 37363, Reference RC 250 +Label PL 37363 A +℗ [l11358] +Produced for [l895] +Recorded and mixed: [l269411] +Track 31-1: Publisher A.R.T. Music France/Tanday Music +Track 31-2: Publisher Tanday Music +Track 31-3: Publisher Tanday Music +Track 31-4: Publisher Chappell +Track 31-5: Publisher Tanday Music +Track 31-6: Publisher Warner Bros Music +Track 31-7: Publisher Tanday Music +Track 31-8: Publisher Warner Bros Music +Track 31-9: Publisher Claude Pascal +Track 31-10: Publisher Tanday Music + +CD32: 1980 +Original label [l895], [l11358], PL 37457, Reference RC 250 +Label PL 37.457 A +℗ [l11358] +Produced and realized for [l895] +Recorded and mixed: [l284806] +Track 32-2: Publisher Tanday Music +Track 32-3: Publisher Claude Pascal +Track 32-4: On booklet title is "Je finirai par t'oublier", Publisher Tanday Music +Track 32-5: Publisher Panache +Track 32-6: Publisher Tanday Music +Track 32-7: Publisher Marouani +Track 32-8: Publisher Tanday Music +Track 32-9: Publisher Tanday Music +Track 32-10: Publisher Pathè Marconi + +CD33: 1981 +Original label [l895], [l11358], PL 37562, Reference RC 250 +Label PL 37562 A +℗ [l11358] +Produced for [l895] +Printed by [l272692] +Recorded at [l293615] +Track 33-1:On cover title is "Ça va mal" +Publisher Alan Boubill +Track 33-2: Publisher Tanday Music +Track 33-3: On cover title is "Le voleur envolé" +Publisher Intersong ∙ Paris +Track 33-4: Publisher Claude Pascal ∙ Tanday Music +Track 33-5: On cover title is "Quand tu veux" +Publisher Francis Day +Track 33-6: Publisher Tanday Music +Track 33-7: On cover title is "J'avais mon tempo" +Publisher Editions Marouani +Track 33-8: On cover title is "Il me fait de la magie" +Track 33-9: On cover title is "L'amour c'est comme une sigarette" +Publisher Unichappell ∙ Paris +Track 33-10: On cover title is "Je ne suis pas d'ici" +Publisher Intersong ∙ Paris +Recorded at [l292324] ∙ Santa Monica California + + +CD34: 1981 +Original label [l895], [l11358], PL 37595, 2 x RC 230 +Label disc 1 PL 37595 A +Label disc 2 PL 37595 B +℗ [l264094] +℗ [l11358] +Printed by [l272692] +Produced for [l895] +Recorded at [l314152], November 1981 +Track 34-1-19: Previously unreleased on CD +Track 34-1-25: Previously unreleased +Track 34-2-2: From Beethoven's 5th Symphony 1st movement +Track 34-2-16: Previously unreleased + +CD35: 1982 +Original label [l895], [l11358], PL 37699, Reference RC 250 +Label PL 37699 A +℗ [l11358] +Produced and realized for [l895] +Printed by [l272692] +Recorded at [l292324] +Mixed at [l292324], [l267660] +Track 35-1: On cover title is "Faire quelque chose" +Track 35-3: On cover title is "Super Sylvie" +Track 35-7: On booklet title is "Manana-Tomorrow" +Track 35-8: On cover title is "Trouver un alibi" +Track 35-9: On cover title is "Je veux aimer +Track 35-10: On cover title is "La sortie de secours" +Track 35-12: Previously unreleased on CD + +CD36: 1983 +Original label [l895], [l11358], PL 37757, Reference RC 250 +Label PL 37757 A +℗ [l11358] +Track 36-2: From 5th Beethoven's Symphonie 1st Movement +Track 36-10: Long version previously unreleased on CD +Track 36-11: Previously unreleased on CD +Track 36-12: Previously unreleased on CD +Track 36-13: Previously unreleased on CD +Track 36-14: Long version previously unreleased on CD + +CD37: 1983 +Original label [l895], [l11358], PL 37814, Reference RC 250 +Label PL 37814 A +℗ [l11358] +Printed by [l272692] +Recorded at [l267660], [l292324] +Mastered at [l306336] +Track 37-1: Ed. Intersong - On cover title is "Danse ta vie" +Track 37-2: Ed. Sugar Music/Grizzly Video Music +Track 37-3: Ed. Art Music France +Track 37-4: Ed. Intersong - On cover title is "Comme le lierre avec lui" +Track 37-5: Ed. RCA - On cover title is "Déprime" +Track 37-6: Ed. Grizzly Video Music +Track 37-7: Ed. Grizzly Video Music - On cover title is "Disparue" +Track 37-8: Ed. Grizzly Video Music +Track 37-9: Ed. Grizzly Video Music +Track 37-10: D.R. +Track 37-11: Ed. Grizzly Video Music - On cover title is "Les balkans et la provence" +[a334509] courtesy of [l135831] + +CD38: 1983 +Original label [l895], NL 70106(2) +Label NL 70106-1 +Produced for [l895] +Marketed by [l29656] +Mastered at [l306336] +Belgium: Distribuited by [l264980] +Germany: Distribuited by [l3766] +France: Distribuited by [l264980] +Italy: Distribuited by [l264979] +Holland: Distribuited by [l264981] +UK: Distribuited by [l109596] +Track 38-8: D.R. + +CD39: 1984 +Original label [l895], PL 70474 +℗ [l29656] +Produced for [l895] +Marketed by [l29656] +Belgium: Distribuited by [l264980] +Germany: Distribuited by [l3766] +France: Distribuited by [l264980] +Italy: Distribuited by [l264979] +Netherlands: Distribuited by [l264981] +U.K.: Distribuited by [l109596] +Recorded and mixed at [l267660] except track 39-5 +Track 39-1: On cover title is "Des heures de desir" +Track 39-4: On cover title is "Declare l'amour comme la guerre" +Track 39-10: On cover title is "Impressionne-moi" +Track 39-11: Single version + +CD40: 1985 +Original label [l895], PL70905, PL 70905 - B +Distribuited by [l274670] +Marketed by [l29656] +Produced for [l1476639] +Recorded and mixed at [l292324], Santa Monica, California +Track 40-11: Japanese mix 45T. +Track 40-12: Japanese mix 45T. +Track 40-13: "He Is My Girl" Soundtrack +P.S.: On inner sleeve, copyright of every song are not readable + +CD41: 1986 +Original label [l895], PL 71175, PL 71 175 +Distribuited in Europe by [l274670], [l393944] +Marketed by [l29656] +Produced for [l895] +Recorded and mixed at [l267660] +Track 41-6: On cover title is "Tu n'as rien compris" +Track 41-11: Previously unreleased +Track 41-12: Previously unreleased +Track 41-13: Previously unreleased - D.R. +Track 41-14: Previously unreleased +Track 41-15: Previously unreleasedNeeds Vote0Sylvie1-1Moi Je Pense Encore À Toi = Breaking Up Is Hard To Do1406731Eddie VartanConductor630053André SalvetA. SalvetWritten-By593553Georges AberG. AberWritten-By575271Howard GreenfieldGreenfieldWritten-By123159Neil SedakaN. SedakaWritten-By1-2Quand Le Film Est Triste = Sad Movies1406731Eddie VartanConductor593553Georges AberG. AberWritten-By521609John D. LoudermilkJ. D. LoudermilkWritten-By786723Lucien MorisseL. MorisseWritten-By1-3L'Amour C'Est Aimer La Vie = Love Is A Swingin' Thing1406731Eddie VartanConductor398237Luther DixonL. DixonWritten-By786022Pierre SakaWritten-By884101Shirley OwensS. OwensWritten-By1-4Baby C'Est Vous = Baby It's You1406731Eddie VartanConductor142502Bacharach And DavidM. David-B. BacharachWritten-By689213Barney Williams (2)B. WilliamsWritten-By1045974Guy BertretG. BertretWritten-By1458875Roger DesboisR. De-boisWritten-By1-5Les Vacances Se Suivent1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By722802Ralph BernetWritten-By1-6Dansons = Let's Dance1406731Eddie VartanConductor630053André SalvetA. SalvetWritten-By620814Jim LeeWritten-By1-7Le Loco-Motion = The Locomotion415476Mickey BakerConductor593553Georges AberG. AbertWritten-By682663Goffin And KingG. Goffin-C. KingWritten-By1-8M'Amuser1406731Eddie VartanConductor1700418Eddie FrancisWritten-By1406731Eddie VartanWritten-By722802Ralph BernetWritten-By1-9Tous Mes Copains1406731Eddie VartanConductor410750Jean-Jacques DeboutJ. J. DeboutWritten-By1-10Gong Gong = I'm Blue1406731Eddie VartanConductor468105Danyel GérardWritten-By238213Ike TurnerWritten-By1-11Comme L'Été Dernier = Dancing Party415476Mickey BakerConductor301427Dave AppellD. AppellWritten-By1132419Gisèle VestaWritten-By673555Kal MannC. MannWritten-By1-12Ne Le Déçois Pas = Putty In Your Hands1406731Eddie VartanConductor145255John PattonJ. PattonWritten-By255838Kay RogersK. RogersWritten-By647136Manou RoblinWritten-By1-13Cri De Ma Vie = Dream Baby1406731Eddie VartanConductor624819Cindy WalkerWritten-By593553Georges AberG. AberWritten-By1-14Est-Ce Que Tu Le Sais? = What'd I Say1406731Eddie VartanConductor991593Daniel HortisD. HortisWritten-By786022Pierre SakaP. SakaWritten-By30552Ray CharlesR. CharlesWritten-ByTitres Bonus:1-15Sois Pas Cruel = Don't Be Cruel27518Elvis PresleyE. PresleyWritten-By1414275Georges UlmerG. UlmerWritten-By294300Otis BlackwellO. BlackwellWritten-By1-16Un P'tit Je Ne Sais Quoi = One Track Mind294706Bobby LewisB. LewisWritten-By593553Georges AberG. AberWritten-By596754Malou ReneM. RenéWritten-By1-17Nous Deux Ça Colle = Let's Get Together903344Fernand BonifayF. BonifayWritten-By6671581Lucien Roger MaryL. MaryWritten-By418854Richard M. ShermanR.M. ShermanWritten-By418852Robert B. ShermanR.B. ShermanWritten-By1-18Madison Twist = Meet Me At The Twistin' Place593553Georges AberG. AberWritten-By295202Sam CookeS. CookeWritten-By1-19Bye Bye Love = Bye Bye Love739931Boudleaux & Felice BryantF. & B. BryantWritten-By593553Georges AberG. AberWritten-By1-20Oui C'Est Lui = He Is The Boy32511Dee ErvinD. ErwinWritten-By593553Georges AberG. AberWritten-By241547Gerry GoffinG. GoffinWritten-By1-21Aussi Loin Que J'Irai1406731Eddie VartanE. VartanWritten-By722802Ralph BernetR. BernetWritten-By1-22Est-Ce Que Tu Le Sais? = What'd I Say991593Daniel HortisD. HortisWritten-By786022Pierre SakaP. SakaWritten-By30552Ray CharlesR. CharlesWritten-By1-23J'Aime Ta Façon De Faire Ça = I Like Your Kind Of Love2010002Frankie Jordan (2)Vocals5743558Daniel Franck (2)D. FrankWritten-By593553Georges AberG. AberWritten-By710734Melvin EndsleyM. EndsleyWritten-By1-24Panne D'Essence = Out Of Gas2010002Frankie Jordan (2)Vocals5743558Daniel Franck (2)D. FrankWritten-By593553Georges AberG. AberWritten-By521609John D. LoudermilkJ. LoudermilkWritten-By1-25Je Suis Libre = Just A Little1037332Betty Logan ChotasB. CholasWritten-By717127Jacques PlanteJ. PlanteWritten-By1-26Tout Au Long Du Calendrier = Calendar Girl1630280Greenfield & SedakaN. Sedaka - H. GreenfieldWritten-By717127Jacques PlanteJ. PlanteWritten-By1-27Le Petit Lascar = Whipper Snapper5743558Daniel Franck (2)D. FrankWritten-By281667Leiber & StollerJ. Leiber - M. StollerWritten-By1-28Qui Aurait Dit Ça = Talkin' 'Bout You1132419Gisèle VestaG. VestaWritten-By30552Ray CharlesR. CharlesWritten-By1-29Fais Ce Que Tu Veux = Swanee River Rock641764Jacques HourdeauxJ. HourdeauxWritten-By30552Ray CharlesR. CharlesWritten-By1-30C'Est Une Drôle De Façon = A Rockin' Good Way2010002Frankie Jordan (2)Vocals310351Brook BentonB. BentonWritten-By253419Clyde OtisC. OtisWritten-By717127Jacques PlanteJ. PlanteWritten-By166630Luchi DeJesusL. De JesusWritten-By1-31Il Est À Toi Mon Cœur630053André SalvetA. SalvetWritten-By768643Claude CarrèreC. CarrèreWritten-By1-32Pourquoi Jamais Moi? = Anybody But Me1066698Dub AllbrittenD. AllbritenWritten-By903344Fernand BonifayF. BonifayWritten-By6671581Lucien Roger MaryM. LucienWritten-By515264Ronnie SelfR. SeffWritten-ByTwist Et Chante2-1Twist Et Chante = Twist And Shout1406731Eddie VartanConductor276618Bert BernsBernsWritten-By593553Georges AberG. AberWritten-By265284Phil MedleyMadleyWritten-By2-2Les Clous D'Or1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By373560Larry GrecoL. GrécoWritten-By851183Marc FontenoyM. FontenoyWritten-By2-3Avec Moi = So Long Baby1406731Eddie VartanConductor229195Del ShannonWritten-By648052Michel EmerM. EmerWritten-By722802Ralph BernetR. BernetWritten-By2-4Ne T'En Va Pas = Comin' Home Baby1406731Eddie VartanConductor265389Ben TuckerWritten-By57626Bob DoroughWritten-By593553Georges AberG. AberWritten-By2-5Mon Ami = Where Do I Go1406731Eddie VartanConductor682663Goffin And KingG. Goffin - C. KingWritten-By647136Manou RoblinWritten-By830193Rudi RevilR. RévilWritten-By2-6Je Ne Vois Que Toi = I'm Watching You1406731Eddie VartanConductor716812Franck GéraldF. GéraldWritten-By312014Paul AnkaP. AnkaWritten-By2-7I'm Watching You = Je Ne Vois Que Toi1406731Eddie VartanConductor312014Paul AnkaWritten-By2-8En Écoutant La Pluie = Rhythm Of The Rain1406731Eddie VartanConductor603389John GummoeJ. GummoeWritten-By309200Richard Anthony (2)R. AnthonyWritten-By2-9Comm' Tu Es Fou = I Got It1406731Eddie VartanConductor269663Dick GlasserDick GlaserWritten-By722802Ralph BernetR. BernetWritten-By2-10Deux Enfants1406731Eddie VartanConductor550656Alain LegrandA. LegrandWritten-By533132Gérard HugéG. HugéWritten-By851183Marc FontenoyM. FontenoyWritten-By2-11Il Faut Choisir = It's Up To You1406731Eddie VartanConductor630053André SalvetA. SalvetWritten-By768643Claude CarrèreC. CarrèreWritten-By269657Jerry FullerWritten-By2-12Il Revient = Say Mama1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By1840287Johnny EarlJ. EarlWritten-By815076Johnny MeeksJ. MeeksWritten-ByTitres Bonus:2-13Chance = Chains593553Georges AberG. AberWritten-By682663Goffin And KingG. Goffin - C. KingWritten-By2-14Réponds-Moi410750Jean-Jacques DeboutJ.J. DeboutWritten-By2-15Tous Les Gens = Baby You're So Fine1406731Eddie VartanE. VartanWritten-By251778J.J. JohnsonJohnsonWritten-By415476Mickey BakerM. BakerWritten-By722802Ralph BernetR. BernetWritten-By100584Sylvia RobinsonRobinsonWritten-By891105T. Texas TylerTylerWritten-By2-16Jamais = Late Date Baby1131625Billy BarberisBarberisWritten-By790169Bobby WeinsteinWeinsteinWritten-By1700418Eddie FrancisE. FrancisWritten-By319880Kenny RankinRankinWritten-By282391Sylvie VartanS. VartanWritten-By107783Teddy RandazzoRandazzoWritten-By2-17Le Jour Qui N'En Finit Pas322813Jerry KennedyJ. KennedyWritten-By801933Margie SingletonM. SingletonWritten-By2-18Viens Danser Le Surf = U.S.A.593553Georges AberG. AberWritten-By312014Paul AnkaP. AnkaWritten-BySylvie À Nashville3-1Si Je Chante = My Whole World Is Falling Down1406731Eddie VartanArranged By488518Bill Anderson (2)Written-By925622Jerry CrutchfieldJ. CrutchfieldWritten-By622972Vline BuggyV. BuggyWritten-By3-2Love Has Laid His Hands On Me = Le Jour Qui N'En Finit Pas1406731Eddie VartanArranged By322813Jerry KennedyJ. KennedyWritten-By801933Margie SingletonM. SingletonWritten-By3-3Ne L'Imite Pas = The Monkey Time1406731Eddie VartanArranged By17589Curtis MayfieldC. MayfieldWritten-By647136Manou RoblinM. RoblinWritten-By3-4Since You Don't Care1406731Eddie VartanArranged By322813Jerry KennedyJ. KennedyWritten-By801933Margie SingletonM. SingletonWritten-By3-5Un Air De Fête1406731Eddie VartanArranged By1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By3-6Te Voici = Mean Woman Blues1406731Eddie VartanArranged By622492Claude DeMetriusC. De MetriusWritten-By1834961Pierre GuittonP. GuittonWritten-By722802Ralph BernetR. BernetWritten-By3-7La Plus Belle Pour Aller Danser1406731Eddie VartanArranged By339220Charles AznavourWritten-By84239Georges GarvarentzWritten-By3-8I Wish You Well1406731Eddie VartanArranged By312014Paul AnkaWritten-By3-9Dum Di La = He Understands Me1406731Eddie VartanArranged By593553Georges AberG. AberWritten-By801933Margie SingletonM. SingletonWritten-By628163Merle KilgoreM. KilgoreWritten-By3-10Fini De Pleurer 1406731Eddie VartanArranged By1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By282489Johnny HallydayJ. HallydayWritten-By3-11Car Tu T'En Vas = Since You Don't Care1406731Eddie VartanArranged By322813Jerry KennedyJ. KennedyWritten-By801933Margie SingletonM. SingletonWritten-By722802Ralph BernetR. BernetWritten-By3-12La, La, La1406731Eddie VartanArranged By1700418Eddie FrancisE. FrancisWritten-By1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-ByTitres Bonus:3-13Sha La La = Sha La La593553Georges AberG. AberWritten-By693898Robert MoselyR. MosleyWritten-By1626189Robert Napoleon TaylorR. TaylorWritten-By3-14La Vie Sans Toi593553Georges AberG. AberWritten-By366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By3-15Il N'A Rien Retrouvé550656Alain LegrandA. LegrandWritten-By1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By3-16U.S.A.312014Paul AnkaP. AnkaWritten-By3-17L'Homme En Noir = Oh, Pretty Woman643634Bill DeesB. DeesWritten-By593553Georges AberG. AberWritten-By145072Roy OrbisonR. OrbisonWritten-By3-18L'Ami Des Mouvais Jours1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By3-19N'Oublie Pas Qu'Il Est À Moi = Can't You See That She's Mine170444Dave ClarkD. ClarkWritten-By593553Georges AberG. AberWritten-By799182Mike Smith (16)M. SmithWritten-By3-20Oui, Prends-Moi Dans Tes Bras = Hold Me685692Dave OppenheimD. OppenheimWritten-By597641Ira SchusterI. SchusterWritten-By685691Little Jack LittleJ. LittleWritten-By647136Manou RoblinM. RoblinWritten-By3-21La, La, La1700418Eddie FrancisE. FrancisWritten-By1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By3-22Ne L'Imite Pas = The Monkey Time17589Curtis MayfieldC. MayfieldWritten-By647136Manou RoblinM. RoblinWritten-By3-23La Più Bella = La Plus Belle Pur Aller Danser339220Charles AznavourC. AznavourWritten-By84239Georges GarvarentzG. GarvarentzWritten-By533357MogolWritten-By3-24Canta Insieme A Me = Si Je Chante488518Bill Anderson (2)B. AndersonWritten-By925622Jerry CrutchfieldJ. CrutchfieldWritten-By494726Paolo DossenaP. DossenaWritten-By317195Sergio BardottiBardottiWritten-By3-25Ja Oder Nein = I'm Leaving It Up To You601813Carl Ulrich BlecherC.U. BlecherWritten-By864690Dewey TerryD. Terry Jr.Written-By253205Don "Sugarcane" HarrisD. HarrisWritten-By3-26Mister Moonlight = La, La, La1700418Eddie FrancisE. FrancisWritten-By1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By582999Rudolf-Günter LooseG. LooseWritten-By3-27Millionen Verliebte Auf Erden573351Hans BradtkeH. BradtkeWritten-By644541Heinz BuchholzH. BuchholzWritten-By3-28Kentucky Twist582999Rudolf-Günter LooseG. LooseWritten-By564890Werner ScharfenbergerW. ScharfenbergerWritten-ByGift Wrapped From Paris4-1One More Day = Dans Tes Bras Je Veux L'Oublier2:19173710Garry ShermanArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By282489Johnny HallydayJ. HallydayWritten-By699791Tommy Brown (3)T. BrownWritten-By4-2I Can't Make Him Look At Me = Pour Ne Pas Pleurer2:35173710Garry ShermanArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer319836Bob FeldmanFeldmanWritten-By160600Jerry GoldsteinGoldsteinWritten-By605858Layng Martine Jr.L. MartineWritten-By131441Richard GottehrerGottehrerWritten-By4-3One More Time, Encore Une Fois2:15173710Garry ShermanArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer1406731Eddie VartanE. VartanWritten-By282489Johnny HallydayJ. HallydayWritten-By647136Manou RoblinM. RoblinWritten-By699791Tommy Brown (3)T. BrownWritten-By4-4I Heard Somebody Say2:10139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer324365Chris Andrews (3)C. AndrewsWritten-By4-5I Made My Choice = Cette Lettre-Là2:33139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer662752Gilles ThibautG. ThibautWritten-By699791Tommy Brown (3)T. BrownWritten-By4-6My Boyfriend's Back2:01139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer319836Bob FeldmanB. FieldmanWritten-By160600Jerry GoldsteinJ. GoldsteinWritten-By131441Richard GottehrerR. GottehrerWritten-By4-7Gonna Cry = Toujours Plus Loin2:20139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer267088Francis DreyfusF. DreyfusWritten-By593553Georges AberG. AberWritten-By699791Tommy Brown (3)T. BrownWritten-By4-8Since You Don't Care2:40139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer322813Jerry KennedyJ. KennedyWritten-By801933Margie SingletonCh. SingletonWritten-By4-9I Wish You Well2:30139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer312014Paul AnkaP. AnkaWritten-By4-10Love Has Laid Its Hands On Me2:01139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer322813Jerry KennedyJ. KennedyWritten-By801933Margie SingletonM. SingletonWritten-By4-11Alley Oop2:04139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer393116Dallas FrazierD. FrazierWritten-By4-12It's Not A Game = On N'Aime Pas Deux Fois2:13139508Jimmy WisnerJim WisnerArranged By322825Bill PorterEngineer [Recording Engineer]307843Mickey CroffordEngineer [Recording Engineer]531527Tommy StrongEngineer [Recording Engineer]486668Joe RenéProducer1711235Jacques BaratJ. BaratWritten-By722802Ralph BernetR. BernetWritten-ByTitres Bonus:4-13Another Heart = Et Pourtant Je Reste Là366152Mick Jones (2)M. JonesWritten-By4-14Thinkin' About You = Je Préfère Tes Bras699791Tommy Brown (3)T. BrownWritten-By4-15He Understands Me = Dum Di La801933Margie SingletonM. SingletonWritten-By628163Merle KilgoreM. KilgoreWritten-BySylvie (Il Y A Deux Filles En Moi)5-1Il Y A Deux Filles En Moi1406731Eddie VartanConductor410750Jean-Jacques DeboutJ.-J. DeboutWritten-By409506Roger DumasR. DumasWritten-By5-2Quand Tu Es Là = The Game Of Love1406731Eddie VartanConductor716812Franck GéraldF. GéraldWritten-By117761Rod ArgentArgentWritten-By5-3Le Pays Que J'Ai Inventé1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By5-4Il Faut Trouver Son Coin De Ciel = Beyond The Rising Sun1406731Eddie VartanConductor593553Georges AberAberWritten-By267030Marc BolanBolanWritten-By5-5Cette Lettre-Là1406731Eddie VartanConductor662752Gilles ThibautG. ThibautWritten-By699791Tommy Brown (3)BrownWritten-By5-6Tourne, Tourne, Tourne = Turn, Turn, Turn593553Georges AberAdapted By1406731Eddie VartanConductor593553Georges AberAberWritten-By593553Georges AberG. AberWritten-By239937Pete SeegerWritten-By5-7Si Tu N'Existais Pas1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By5-8Ce Jour-Là1406731Eddie VartanConductor593553Georges AberG. AberWritten-By366152Mick Jones (2)M. JonesWritten-By5-9Dis-Lui Qu'Il Revienne1406731Eddie VartanConductor593553Georges AberG. AberWritten-By699791Tommy Brown (3)T. BrownWritten-By5-10Et Pourtant Je Reste Là1406731Eddie VartanConductor662752Gilles ThibautC. ThibautWritten-By366152Mick Jones (2)M. JonesWritten-By5-11C'Était Trop Beau = Baby Don't Go1406731Eddie VartanConductor593553Georges AberG. AberWritten-By271967Sonny BonoBonoWritten-By5-12De Ma Vie = Rescue Me1406731Eddie VartanConductor159831Carl Smith (2)C. SmithWritten-By593553Georges AberG. AberWritten-By391733Raynard MinerWritten-ByTitres Bonus:5-13C'Est À Deux Pas1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By662752Gilles ThibautG. ThibautWritten-By5-14Je Le Vois = Pretty Eyes790169Bobby WeinsteinB. WeinsteinWritten-By593553Georges AberG. AberWritten-By107783Teddy RandazzoT. RandazzoWritten-By5-15Pour Ne Pas Pleurer = I Can't Make Him Look At Me630053André SalvetA. SalvetWritten-By319836Bob FeldmanB. FeldmanWritten-By593553Georges AberG. AberWritten-By160600Jerry GoldsteinJ. GoldsteinWritten-By605858Layng Martine Jr.L. MartineWritten-By131441Richard GottehrerR. GottehrerWritten-By5-16J'Ai Fait Un Vœu662752Gilles ThibautG. ThibautWritten-By366152Mick Jones (2)M. JonesWritten-By5-17Je Préfère Tes Bras593553Georges AberG. AberWritten-By662752Gilles ThibautG. ThibautWritten-By699791Tommy Brown (3)T. BrownWritten-By5-18L'Oiseau Rare = I Can't Believe What You Say662752Gilles ThibautG. ThibautWritten-By238213Ike TurnerI. TurnerWritten-By5-19Mister John B. = Sloop John B.189718Brian WilsonB. WilsonWritten-By593553Georges AberG. AberWritten-By662752Gilles ThibautG. ThibautWritten-By5-20La Chanson593940Léo PetitL. PetitWritten-By887549Michel LaurentM. LaurentWritten-By5-21Dans Tes Bras = Je Veux L'Oublier1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By282489Johnny HallydayJ. HallydayWritten-By5-22Je Voudrais Être Un Garçon1700418Eddie FrancisE. FrancisWritten-By1406731Eddie VartanE. VartanWritten-By5-23Histoire Ancienne = That Same Old Feeling593553Georges AberG. AberWritten-By689566Gerald NelsonG. NelsonWritten-By925622Jerry CrutchfieldJ. CrutchfieldWritten-By5-24La Chanson593940Léo PetitL. PetitWritten-By887549Michel LaurentM. LaurentWritten-By362290Udo JürgensU. JürgensWritten-By5-25Un Cocktail Pour Deux = Cocktail For Two282489Johnny HallydayVocals301995Arthur JohnstonA. JohnstonWritten-By2113069Louis HouzeauL. HouzeauWritten-By2113068Paul GanneP. GanneWritten-By413893Sam CoslowS. CoslowWritten-By5-26Het Is Voorbij = Cette Lettre-LàB. PloeginWritten By662752Gilles ThibautG. ThibautWritten-By699791Tommy Brown (3)T. BrownWritten-BySylvie (2’35 De Bonheur)6-1Deux Mains3:0516375David WhitakerD. WhitakerConductor1406731Eddie VartanProducer [Artistic Direction]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By6-2Moi Je Danse = It's The Same Old Song2:27270603Arthur GreensladeA. GreensladeConductor1406731Eddie VartanProducer [Artistic Direction]593553Georges AberG. AberWritten-By476910Holland-Dozier-HollandE. Holland - L. Dozier - B. HollandWritten-By6-3Un Enfant Sans Soleil2:021406731Eddie VartanE. VartanConductor1406731Eddie VartanProducer [Artistic Direction]422189Jean RenardJ. RenardWritten-By786022Pierre SakaP. SakaWritten-By6-4Je N'Ai Pas Pu Résister = You Keep Me Hangin'On2:40270603Arthur GreensladeA. GreensladeConductor1406731Eddie VartanProducer [Artistic Direction]593553Georges AberG. AberWritten-By476910Holland-Dozier-HollandE. Holland - L. Dozier - B. HollandWritten-By6-5Par Amour, Par Pitié3:051406731Eddie VartanE. VartanConductor1406731Eddie VartanProducer [Artistic Direction]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By6-6Donne-Moi Ton Amour = Gimme Some Lovin'2:58270603Arthur GreensladeA. GreensladeConductor1406731Eddie VartanProducer [Artistic Direction]593553Georges AberG. AberWritten-By201571Steve WinwoodWritten-By6-7Deux Minutes Trent Cinq De Bonheur2:32270603Arthur GreensladeA. GreensladeConductor1406731Eddie VartanProducer [Artistic Direction]221852Frank ThomasF. ThomasWritten-By422189Jean RenardJ. RenardWritten-By1122435Jean-Michel RivatJ.M. RivatWritten-By6-8Il Ne Faut Pas Aimer Yann2:3316375David WhitakerWhitakerArranged By16375David WhitakerD. WhitakerConductor1406731Eddie VartanProducer [Artistic Direction]662752Gilles ThibautG. ThibautWritten-By6-9Huit Heures Vingt3:051406731Eddie VartanE. VartanConductor1406731Eddie VartanProducer [Artistic Direction]410531George FischoffG. FischottWritten-By593553Georges AberG. AberWritten-By727331Tony PowersT. PowersWritten-By6-10Garde Moi Dans Ta Poche = I Can't Help Myself2:301406731Eddie VartanE. VartanConductor1406731Eddie VartanProducer [Artistic Direction]476910Holland-Dozier-HollandE. Holland - L. Dozier - B. HollandWritten-By422189Jean RenardJ. RenardWritten-By6-11L'Amour Est N°1 = Everything Is Allright3:101406731Eddie VartanE. VartanConductor1406731Eddie VartanProducer [Artistic Direction]662752Gilles ThibautG. ThibautWritten-By225777Owen GrayOwenWritten-By6-12Drôle De Fille = Single Girl2:1716375David WhitakerD. WhitakerConductor1406731Eddie VartanProducer [Artistic Direction]593553Georges AberG. AberWritten-By1026778Martha SharpM. SharpWritten-ByTitres Bonus:6-13Ballade Pour Un Sourire626990Gérard BourgeoisG. BourgeoisWritten-By626993Jean-Max RivièreJ.M. RiviéreWritten-By6-14Sauve-Moi = In Crowd322694Billy PageB. PageWritten-By662752Gilles ThibautG. ThibautWritten-By6-15L'Air Qui Balance = The More I See You593553Georges AberG. AberWritten-By601710Harry Warren (2)H. WarrenWritten-By623105Mack GordonM. GordonWritten-By6-16J'Aurais1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By6-17Noël Sans Toi662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By6-18Quand Un Amour Renaît = Walk Away Renée851135Bob CalilliB. CalilliWritten-By593553Georges AberG. AberWritten-By760109Michael Brown (10)M. BrownWritten-By376875Tony SansoneT. SansonWritten-By6-19Un Peu De Tendresse662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By6-20Un Bon Moi D'Été = The Boat That I Row593553Georges AberG. AberWritten-By271516Neil DiamondN. DiamondWritten-By6-21Dis-Moi Que Tu M'Aimes = Et Aussitot Je Reviens = Namoradinha De Un Amigo593553Georges AberG. AberWritten-By286945Roberto CarlosR. CarlosWritten-By6-22Pas Drôle Cette Histoire Là593553Georges AberG. AberWritten-By282489Johnny HallydayJ. HallydayWritten-By6-23Un Po' Di Dolcezza = Un Peu De Tendresse662752Gilles ThibautG. ThibautWritten-By685589Giuseppe CassiaG. CassiaWritten-By422189Jean RenardJ. RenardWritten-By494726Paolo DossenaP. DossenaWritten-By6-24Nur Ein Lächeln Blieb = Ballade Pour Un Sourire626990Gérard BourgeoisG. BourgeoisWritten-By631438Herbert FalkH. FalkWritten-By626993Jean-Max RivièreJ.M. RivièreWritten-By6-25Ballade Voor Een Glimlach = Ballade Pour Un Sourire755979Erik FranssenE. FranssenWritten-By626990Gérard BourgeoisG. BourgeoisWritten-By626993Jean-Max RivièreJ.M. RivièreWritten-By758109Willy RexW. RexWritten-BySylvie Canta En Español7-1Balada Para Una Sonrisa = Ballade Pour Un Sourire2:10866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor626990Gérard BourgeoisG. BourgeoisWritten-By626993Jean-Max RivièreJ. M. RivièreWritten-By7-2Dos Veces No = On N'Aime Pas Deux Fois2:15866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By722802Ralph BernetR. BernetWritten-By7-3El Dia Aquel = Ce Jour-Là2:40866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor593553Georges AberG. AberWritten-By366152Mick Jones (2)M. JonesWritten-By7-4Dile Que Vuelva = Dis-Lui Qu'Il Revienne2:00866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor593553Georges AberG. AberWritten-By699791Tommy Brown (3)T. BrownWritten-By7-5Hay Dos Chicas En Mi = Il Y A Deux Filles En Moi2:20866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor410750Jean-Jacques DeboutJ. J. DeboutWritten-By409506Roger DumasR. DumasWritten-By7-6Tourne, Tourne, Tourne = Turn, Turn, Turn3:05593553Georges AberG. AberAdapted By [V. Fran.]1406731Eddie VartanConductor239937Pete SeegerP. SeegerWritten-By7-7La Cancion = La Chanson2:16866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor593940Léo PetitL. PetitWritten-By887549Michel LaurentM. LaurentWritten-By7-8Yo Habria = J'Aurais1:52866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By7-9El Aire Que Se Mueve = L'Air Qui Balance2:25866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor601710Harry Warren (2)WarrenWritten-By623105Mack GordonGordonWritten-By7-10Quisiera Ser Un Chico = Je Voudrais Être En Garçon2:202797085Gil LuañoAdapted By [Vers. Esp.]816643Julio CésarAdapted By [Vers. Esp.]1406731Eddie VartanConductor1700418Eddie FrancisE. FrancisWritten-By1406731Eddie VartanE. VartanWritten-By7-11Si No Existieras Tu = Si Tu N'Existais Pas2:10866962C. MapelAdapted By [V. Esp.]1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By7-12Mister John B. = Sloop John B.2:47189718Brian WilsonArranged By1406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By662752Gilles ThibautG. ThibautWritten-BySylvie (Comme Un Garçon)8-1Comme Un Garçon270603Arthur GreensladeArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By8-2Elle Est Partie362177Reg GuestArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]282490Eric ChardenE. ChardenWritten-By8-3Nuit De Neige270603Arthur GreensladeArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]626990Gérard BourgeoisG. BourgeoisWritten-By626993Jean-Max RivièreJ.M. RivièreWritten-By8-4Quel Effet Ça M'A Fait362177Reg GuestArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By8-5L'Enfant Aux Papillons270603Arthur GreensladeArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]670887Cécile CaulierC. CaulierWritten-By422189Jean RenardJ. RenardWritten-By8-6Le Jour Qui Vient = Sound Of Laughter362177Reg GuestArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]593553Georges AberG. AberWritten-By699791Tommy Brown (3)BrownWritten-By8-7Le Testament362177Reg GuestArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By8-8L'Oiseau270603Arthur GreensladeArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]282490Eric ChardenE. ChardenWritten-By716812Franck GéraldF. GeraldWritten-By454493Monty (6)Written-By8-9Sur Un Fil1406731Eddie VartanArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]1406731Eddie VartanE. VartanWritten-By422189Jean RenardJ. RenardWritten-By8-10Un Soir Par Hasard270603Arthur GreensladeArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]626990Gérard BourgeoisG. BourgeoisWritten-By626993Jean-Max RivièreJ.M. RivièreWritten-By1054894Raymond Le SénéchalLe SénéchalWritten-By8-11Katamango362177Reg GuestArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]282490Eric ChardenE. ChardenWritten-By716812Franck GéraldF. GeraldWritten-By8-12Le Kid1406731Eddie VartanArranged By, Directed By422189Jean RenardProducer [Artistic Collaborator]626990Gérard BourgeoisG. BourgeoisWritten-By626993Jean-Max RivièreJ.M. RivièreWritten-ByTitres Bonus:8-13Moi (Je Ne Suis Plus Rien) = Uno Dei Tanti547010Carlo DonidaC. DonidaWritten-By593553Georges AberG. AberWritten-By533357MogolWritten-By8-14Baby Capone410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasP. DumasWritten-By8-15Pas En Été965405Anouk (4)A. AnoukWritten-By1406731Eddie VartanE. VartanWritten-By8-16Je Suis Comme Ça422189Jean RenardJ. RenardWritten-By8-17Baby Capone 583052Fred WeyrichF. WeyrichWritten-By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By8-18Just Like A Boy = Comme Un Garçon410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-BySylvie Vartan (La Maritza)9-1La Maritza150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-By9-2Un P'tit Peu Beaucoup150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]2113046Alain EntremontA. EntremontWritten-By670887Cécile CaulierC. CaulierWritten-By582646Jimmy WalterJ. WalterWritten-By9-3J'Ai Caché Le Soleil150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]475255Jacques RevauxJ. RevauxWritten-By722802Ralph BernetR. BernetWritten-By9-4Jolie Poupée150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]593553Georges AberG. AberWritten-By422189Jean RenardJ. RenardWritten-By9-5Irrésistiblement150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]593553Georges AberG. AberWritten-By422189Jean RenardJ. RenardWritten-By9-6On A Toutes Besoin D'Un Homme150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By9-7Face Au Soleil = Run For The Sun150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]716812Franck GéraldF. GeraldWritten-By699791Tommy Brown (3)T. BrownWritten-By9-8Deux Bateaux150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]282605Alice DonaA. DonatWritten-By830192Guy FavereauG. FavereauWritten-By564877Jacques DemarnyJ. DemarnyWritten-By9-9Il Sait Revenir150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]2068499Ann KopelmanA. KopelmanWritten-By1406731Eddie VartanE. VartanWritten-By9-10Le Silence150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]531975Aldo FrankA. FranckWritten-By2068499Ann KopelmanA. KopelmanWritten-By9-11Une Feuille D'Or150182Jean-Claude VannierArranged By, Conductor422189Jean RenardProducer [Artistic Direction]279626Philippe MonetPh. MonnetWritten-By103441Yves DesscaDescaWritten-ByTitres Bonus:9-12C'Est Un Jour À Rester Couché = Nothing To Do Nothing716812Franck GéraldF. GèraldWritten-By366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By9-13Mon Chinois Vert1406731Eddie VartanE. VartanWritten-By422189Jean RenardJ. RenardWritten-By9-14Le Roi David422189Jean RenardJ. RenardWritten-By9-15Ballade Pour Une Fugue410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By9-16Buonasera Buonasera620105Antonio AmurriA. AmurriWritten-By620106Bruno CanforaB. CanforaWritten-By9-17Blam Blam Blam620105Antonio AmurriA. AmurriWritten-By1279474Dino VerdeE. VerdeWritten-By361417Franco PisanoF. PisanoWritten-By9-18Festa Negli Occhi, Festa Nel Cuore1171322Alberto LucarelliA. LucarelliWritten-By620105Antonio AmurriA. AmurriWritten-By494726Paolo DossenaP. DossenaWritten-By1014210Roberto RighiniR. RighiniWritten-By9-19La Maritza 422189Jean RenardJ. RenardWritten-By494726Paolo DossenaP. DossenaWritten-By587115Pierre DelanoëP. DelanoëWritten-By9-20Lied Ohne Wiederkehr = La Maritza583052Fred WeyrichF. WeyrichWritten-By422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-By9-21Run For The Sun = Face Au Soleil366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By9-22Indefinitely = Un P'tit Peu Beaucoup320305Carlos (3)Vocals670887Cécile CaulierC. CaulierWritten-By582646Jimmy WalterJ. WalterWritten-BySylvie Vartan (A Doppia Coppia)10-1Nostalgia322565I Cantori Moderni di AlessandroniBacking Vocals1098511Berto Pisano E La Sua OrchestraBerto Pisano, La Sua OrchestraOrchestra494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]699205Fabian AndreAndreeWritten-By494726Paolo DossenaDossenaWritten-By699201Wilbur SchwandtSchwandtWritten-By10-2Una Cicala Canta (Per Un'Estate Sola)362177Reg GuestR. GuestConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]593553Georges AberAberWritten-By494726Paolo DossenaDossenaWritten-By699791Tommy Brown (3)BrownWritten-By10-3Due Minuti Di Felicità270603Arthur GreensladeA. GreensladeConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]287777EvyWritten-By221852Frank ThomasThomasWritten-By422189Jean RenardRenardWritten-By1122435Jean-Michel RivatRivatWritten-By10-4Per Amore, Per Pietà494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]662752Gilles ThibautThibautWritten-By422189Jean RenardRenardWritten-By317195Sergio BardottiBardottiWritten-By10-5Quando Sorridi Tu270603Arthur GreensladeA. GreensladeConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]282490Eric ChardenChardenWritten-By733232Franca EvangelistiEvangelistiWritten-By716812Franck GéraldGeraldWritten-By454493Monty (6)Written-By494726Paolo DossenaDossenaWritten-By10-6Zum Zum Zum322565I Cantori Moderni di AlessandroniBacking Vocals1098511Berto Pisano E La Sua OrchestraBerto Pisano, La Sua OrchestraOrchestra494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]620105Antonio AmurriAmurriWritten-By620106Bruno CanforaCanforaWritten-By10-7Le Farfalle = L'Enfant Aux Papillons270603Arthur GreensladeA. GreensladeConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]670887Cécile CaulierCaulierWritten-By733232Franca EvangelistiEvangelistiWritten-By422189Jean RenardRenardWritten-By494726Paolo DossenaDossenaWritten-By10-8Baby Capone270603Arthur GreensladeA. GreensladeConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]733232Franca EvangelistiEvangelistiWritten-By410750Jean-Jacques DeboutDeboutWritten-By494726Paolo DossenaDossenaWritten-By409506Roger DumasDumasWritten-By10-9Irresistibilmente362177Reg GuestR. GuestConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]593553Georges AberAberWritten-By422189Jean RenardRenardWritten-By494726Paolo DossenaDossenaWritten-By10-10Due Mani494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]733232Franca EvangelistiEvangelistiWritten-By662752Gilles ThibautThibautWritten-By422189Jean RenardRenardWritten-By494726Paolo DossenaDossenaWritten-By10-11Come Un Ragazzo270603Arthur GreensladeA. GreensladeConductor494726Paolo DossenaProducer447022Giorgio AgazziG. AgazziTechnician [Re-recording]685589Giuseppe CassiaG. CassiaWritten-By410750Jean-Jacques DeboutDeboutWritten-By494726Paolo DossenaDossenaWritten-By409506Roger DumasDumasWritten-ByTitres Bonus:10-12Frankenstein662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By494726Paolo DossenaP. DossenaWritten-By10-13Abbiamo Bisogno Di Un Uomo = On A Toutes Besoin D'Un Homme410750Jean-Jacques DeboutJ.J. DeboutWritten-By494726Paolo DossenaP. DossenaWritten-By409506Roger DumasR. DumasWritten-By10-14Ma Chi Sei Tu306935Lelio LuttazziVocals306935Lelio LuttazziWritten-By10-15Ritorno A Trieste306935Lelio LuttazziVocals306935Lelio LuttazziWritten-By10-16La Mia Donna306935Lelio LuttazziVocals2968662Barbara LombardiWritten-By1212701Memo RemigiWritten-By3018016Paolo CastellucciWritten-By1147087Riccardo BorghettiWritten-By10-17Io Non Avrei Mai Creduto 306935Lelio LuttazziVocals306935Lelio LuttazziWritten-By10-18Medley 306935Lelio LuttazziVocals306935Lelio LuttazziWritten-By10-19Un Poco Di Più 320305Carlos (3)Vocals306935Lelio LuttazziWritten-By10-20Buonasera Buonasera (Quatuor) 620105Antonio AmurriA. AmurriWritten-By1279474Dino VerdeE. VerdeWritten-By361417Franco PisanoF. PisanoWritten-BySylvie Vartan (Aime-Moi)11-1Aime-Moi150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By11-2Carrousel150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By11-3Puisque Tu T'En Va150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By11-4Dans Tes Bras150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]716812Franck GéraldF. GéraldWritten-By912209Jean-Jacques RidelJ.J. RidelWritten-By11-5Round Stone River150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]836081Bill Martin & Phil CoulterB. Martin - P. CoulterWritten-By11-6Apprends-Moi150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By11-7Les Hommes (Qui N'Ont Plus Rien À Perdre)150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]282489Johnny HallydayVocals716812Franck GéraldF. GéraldWritten-By422189Jean RenardJ. RenardWritten-By11-8J'Ai 2 Mans, J'Ai 2 Pieds, Une Bouche Et Puis Un Nez394487Raymond DonnezR. DonnezOrchestrated By422189Jean RenardProducer [Realization]2070900Fefti OuazannaY. OuazannaWritten-By716812Franck GéraldF. GéraldWritten-By415572Jean-Pierre FestiJ.P. FestiWritten-By11-9Entre Nuit Et Jour394487Raymond DonnezR. DonnezOrchestrated By422189Jean RenardProducer [Realization]755907Charles LevelC. LevelWritten-By440749Georges CostaG. CostaWritten-By11-10Si J'Étais Général150182Jean-Claude VannierJ.C. VannierOrchestrated By422189Jean RenardProducer [Realization]410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By11-11Ma Petite Ombre1406731Eddie VartanE. VartanOrchestrated By422189Jean RenardProducer [Realization]842011Catherine DesageC. DesageWritten-By1406731Eddie VartanE. VartanWritten-By11-12Abracadabra1406731Eddie VartanE. VartanOrchestrated By422189Jean RenardProducer [Realization]1171322Alberto LucarelliA. LucarelliWritten-By494726Paolo DossenaP. DossenaWritten-ByTitres Bonus:11-13La Chasse À L'Homme = Love Me Or Let Me Be Lonely662752Gilles ThibautG. ThibautWritten-By211634Jerry PetersJ. PetersWritten-By11-14Loup = Wolf330618Kenny YoungK. YoungWritten-By429049Michel MalloryM. MalloryWritten-By11-15L'Herbe Folle = Here They Come131320Gary WrightG. WrightWritten-By429049Michel MalloryM. MalloryWritten-By11-16Beaucoup D'Amour, Un Peu De Patience = Carry My Load366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By103441Yves DesscaY. DesscaWritten-By11-17Je T'Appelle = Chi Sei Tu494726Paolo DossenaP. DossenaWritten-By587115Pierre DelanoëP. DelanoëWritten-By11-18Abracadabra 494726Paolo DossenaP. DossenaWritten-By1014210Roberto RighiniR. RighiniWritten-By11-19Wolf = Loup330618Kenny YoungK. YoungWritten-By11-20Here They Come = L'Herbe Folle131320Gary WrightG. WrightWritten-BySylvie A L’Olympia12-1C'Est Bon De Vous Voir = Bad Moon Rising366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By593553Georges AberWritten-By260458John FogertyFogertyWritten-By12-2J'Ai Deux Mains, J'Ai Deux Pieds, Une Bouche Et Puis Un Nez366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By716812Franck GéraldWritten-By415572Jean-Pierre FestiJ.P. FestiWritten-By415573Yvon OuazanaY. OuazanaWritten-By12-3Clic Clac366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By1406731Eddie VartanWritten-By650729Jacques LanzmannJacques LanzmanWritten-By12-4La Maritza366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By422189Jean RenardWritten-By587115Pierre DelanoëWritten-By12-5Prends Ma Main = Friendship Train366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By268137Barrett StrongBarret StrongWritten-By593553Georges AberWritten-By101822Norman WhitfieldM. WhitfieldWritten-By12-6Solo De Batterie366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By699791Tommy Brown (3)Written-By12-7Abracadabra366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By1171322Alberto LucarelliA. LucarelliWritten-By662752Gilles ThibautGilles ThibaudWritten-By494726Paolo DossenaP. DossenaWritten-By12-8Mon Singe Et Moi366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By410750Jean-Jacques DeboutWritten-By409506Roger DumasWritten-By12-92'35" De Bonheur366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By221852Frank ThomasWritten-By422189Jean RenardWritten-By1122435Jean-Michel RivatJ.M. RivatWritten-By12-10Solo De Tumba366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By1078027Jojo SmithWritten-By12-11La Nuit366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By1406731Eddie VartanWritten-By647072Philippe LabroWritten-By12-12Comme Un Garçon366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By410750Jean-Jacques DeboutWritten-By409506Roger DumasWritten-By12-13Let The Sunshine In366152Mick Jones (2)Micky JonesConductor699791Tommy Brown (3)Conductor485529Roger RocheEngineer394487Raymond DonnezOrchestrated By179056Galt MacDermotGalt MacdermotWritten-By511610Gerome RagniJérome RagniWritten-By511613James RadoWritten-ByTitre Bonus:12-14Mio Scimpanzé = Mon Singe Et Moi410750Jean-Jacques DeboutJ.J. DeboutWritten-By494726Paolo DossenaP. DossenaWritten-By409506Roger DumasR. DumasWritten-BySylvie À Tokyo13-1C'Est Bon De Vous Voir = Bad Moon Rising593553Georges AberG. AberWritten-By260458John FogertyFogertyWritten-By13-2Les Hommes (Qui N'Ont Plus Rien À Perdre)716812Franck GéraldF. GéraldWritten-By422189Jean RenardJ. RenardWritten-By13-3La Plus Belle Pour Aller Danser339220Charles AznavourC. AznavourWritten-By84239Georges GarvarentzG. GarvarentzWritten-By13-4Irrésistiblement593553Georges AberG. AberWritten-By422189Jean RenardJ. RenardWritten-By13-5La Maritza422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-By13-6Beaucoup D'Amour, Un Peu De Patience366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By103441Yves DesscaY. DesscaWritten-By13-7Loup330618Kenny YoungK. YoungWritten-By429049Michel MalloryM. MalloryWritten-By13-8Apprends-Moi662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By13-9Abracadabra1171322Alberto LucarelliA. LucarelliWritten-By494726Paolo DossenaP. DossenaWritten-By13-10Mon Singe Et Moi410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By13-11Conversation282391Sylvie VartanS. VartanWritten-By13-12Je T'Appelle494726Paolo DossenaP. DossenaWritten-By587115Pierre DelanoëP. DelanoëWritten-By13-13Me And Bobby McGee319984Fred FosterF. FosterWritten-By303575Kris KristoffersonK. KristoffersonWritten-By429049Michel MalloryM. MalloryWritten-By13-14Annabel366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By103441Yves DesscaY. DesscaWritten-By13-15Get Back779927Lennon-McCartneyLennon / McCartneyWritten-ByTitres Bonus:13-16Koibito Jidaï740598Kunihiko MuraiK. MuraiWritten-By823325Michio YamagamiM. YamagamiWritten-By13-17Onna No Jikan658861Kazumi YasuiK. YasuiWritten-By740603Kunihiko SuzukiK. SuzukiWritten-By13-18Itsumo Itsumo (Watishino Subete)2070900Fefti OuazannaF. OuazannaWritten-By716812Franck GéraldF. GéraldWritten-By415572Jean-Pierre FestiJ.P. FestiWritten-By886459Kazuko KatagiriK. KatagiriWritten-By13-19La Maritza 1424613Asei KobayashiA. KobayashiWritten-By13-20Wansaka Musume = Renown355Unknown ArtistWritten-BySympathie14-1La Moitié Du Chemin3:121406731Eddie VartanArranged By251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar241547Gerry GoffinWritten-By622972Vline BuggyV. BuggyWritten-By253385Wes FarrellWritten-By103441Yves DesscaWritten-By14-2Suzan3:001406731Eddie VartanArranged By251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar429049Michel MalloryWritten-By366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)Written-By14-3Riche3:261406731Eddie VartanArranged By251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar282605Alice DonaWritten-By429049Michel MalloryWritten-By14-4Medicine Man3:341406731Eddie VartanArranged By251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar1662692DresdyWritten-By14-5Comme Un Arbre Arraché3:04394487Raymond DonnezArranged By, Piano251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar85730Chris KimseyRecorded By, Mixed By [Mix-down]81404René AmelineRecorded By, Mixed By [Mix-down]650729Jacques LanzmannJacqués LanzmanWritten-By415572Jean-Pierre FestiJ.P. FestiWritten-By415573Yvon OuazanaWritten-By14-6Une Poignée De Monnaie3:00394487Raymond DonnezArranged By, Piano251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar85730Chris KimseyRecorded By, Mixed By [Mix-down]81404René AmelineRecorded By, Mixed By [Mix-down]366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By103441Yves DesscaWritten-By14-7Un Jardin Dans Mon Cœur4:421406731Eddie VartanArranged By251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar266352Carole KingC. KingWritten-By662757Eddy MarnayE. MarnayWritten-By14-8California2:521406731Eddie VartanArranged By251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By14-9Annabel3:28699791Tommy Brown (3)Arranged By, Producer, Drums [Leader-drums], Acoustic Guitar251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass85730Chris KimseyEngineer81404René AmelineEngineer1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano394487Raymond DonnezPiano430093Lee HallydayLee HallidayProducer366152Mick Jones (2)M. JonesWritten-By699791Tommy Brown (3)T. BrownWritten-By103441Yves DesscaY. DesscaWritten-By14-10Parle-Moi De Ta Vie3:17394487Raymond DonnezArranged By, Piano251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar85730Chris KimseyRecorded By, Mixed By [Mix-down]81404René AmelineRecorded By, Mixed By [Mix-down]475582Jean-Pierre BourtayreJ.P. BourtayreWritten-By103441Yves DesscaY. DesscaWritten-By14-11Dilindam2:46394487Raymond DonnezArranged By, Piano251578Doris TroyBacking Vocals251579Liza StrikeBacking Vocals8718Madeline BellBacking Vocals161696Nanette WorkmanBacking Vocals340554Pat DonaldsonPat Don AldsonBass1634825Jean-Pierre AzoulayJ.P. Azovlay (Rolling)Guitar295369Jerry DonahueJ. DanahueGuitar366152Mick Jones (2)Micky JonesGuitar1043663Jean-Marc DeutèreJean Marc Deuterre (Barney)Organ131320Gary WrightPiano430093Lee HallydayLee HallidayProducer699791Tommy Brown (3)Producer, Drums [Leader-drums], Acoustic Guitar85730Chris KimseyRecorded By, Mixed By [Mix-down]81404René AmelineRecorded By, Mixed By [Mix-down]410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasWritten-ByTitres Bonus:14-12Tu Amigo Fiel = Un Jardin Dans Mon Cœur266352Carole KingC. KingWritten-By14-13L'Heure La Plus Douce De Ma Vie429049Michel MalloryM. MalloryWritten-By161696Nanette WorkmanN. WorkmanWritten-By14-14C'Était La Belle Vie4161857Bob Stone (7)B. StoneWritten-By282391Sylvie VartanS. VartanWritten-By14-15Lui1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By14-16Sur La Musique1240569Alain LegovicA. LegovicWritten-By601626Michel PelayM. PelayWritten-By103441Yves DesscaY. DesscaWritten-By14-17Un Caillou Dans Ma Chaussure355Unknown ArtistWritten-By14-18Gypsies, Tramps And Thieves4161857Bob Stone (7)B. StoneWritten-By14-19He Was Made For Me = Lui1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By14-20Dilindam 410750Jean-Jacques DeboutJ.J. DeboutWritten-By494726Paolo DossenaP. DossenaWritten-By409506Roger DumasR. DumasWritten-By14-21Love Potion Number Three (To Make Them Lovers) 1649458Gordon FaggetterA.G. FaggetterWritten-By494726Paolo DossenaP. DossenaWritten-By14-22Turn Around307089Jean MoraJ. MoraWritten-By475511Pierre BillonP. BillonWritten-ByÀ L’Olympia15-1Introduction Orchestre1:00511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]15-2Ne Me Demande Pas Pourquoi1:45511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]410750Jean-Jacques DeboutJ.-J. DeboutWritten-By409506Roger DumasR. DumasWritten-By15-3Pour Lui Je Reviens2:50511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By475556Benoît KaufmanB. KaufmanArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]410750Jean-Jacques DeboutJ.-J. DeboutWritten-By409506Roger DumasR. DumasWritten-By15-4Dilindam3:00511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By510288Gérard DaguerreG. DaguerreArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]410750Jean-Jacques DeboutJ.-J. DeboutWritten-By409506Roger DumasR. DumasWritten-ByMedley7:30511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]15-5aRock'n' Roll Music180119Chuck BerryWritten-By15-5bNever Been To Spain288390Hoyt AxtonH. AxtonWritten-By15-5cProud Mary260458John FogertyFogertyWritten-By15-6Ce Soir Nous Sommes Là Pour Vous = Join Together2:45511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]593553Georges AberG. AberWritten-By256053Pete TownshendWritten-By15-7Par Amour Par Pitié3:35511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By15-8Mon Père3:25511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By475556Benoît KaufmanB. KaufmanArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]1126545Marc BenoitM. BenoitWritten-By429049Michel MalloryM. MalloryWritten-By15-9Quand Ça Bouge1:20511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor429049Michel MalloryM. MalloryLyrics By [French Lyrics]1406731Eddie VartanProducer [And Realization]15-10Non C'Est Rien3:00511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By315793Hervé RoyH. RoyArranged By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]819519Armand CanforaCanforaWritten-By437684Joss BaselliBaselliWritten-By15-11Ne Me Quitte Pas3:30511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]164263Jacques BrelJ. BrelWritten-By15-12Cette Chanson Pour Vous = A Song For You1:40511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]255183Leon RussellWritten-By429049Michel MalloryM. MalloryWritten-By15-13Partir4:30511997Grand Orchestre De L'OlympiaLe Grand Orchestre De L’OlympiaAccompanied By394487Raymond DonnezConductor1406731Eddie VartanProducer [And Realization]100591Edwin StarrE. StarrWritten-By429049Michel MalloryM. MalloryWritten-ByTitres Bonus:15-14Dialogues / L'Heure La Plus Douce De Ma Vie 429049Michel MalloryM. MalloryWritten-By161696Nanette WorkmanN. WorkmanWritten-By15-15Lui 1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By15-16Ça Sert À Quoi429049Michel MalloryM. MalloryWritten-By417042Peter MatzP. MatzWritten-By15-17Ça Sert À Quoi / Quand Ça Bouge (Medley)429049Michel MalloryM. MalloryWritten-By417042Peter MatzP. MatzWritten-By15-18Parle-Moi De Ta Vie 475582Jean-Pierre BourtayreJ.P. BourtayreWritten-By103441Yves DesscaY. DesscaWritten-BySylvie Vartan (J’Ai Un Problème)16-1J'Ai Un Problème2:59253934Gabriel YaredConductor282489Johnny HallydayVocals422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By16-2Pour Lui Je Reviens2:30394487Raymond DonnezConductor410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By16-3L'Homme Que Tu Seras2:151406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By1487184Jean CurtelinJ. CurtelinWritten-By429049Michel MalloryM. MalloryWritten-By826559Yves AllégretY. AllégretWritten-By16-4Va Si Tu L'Aimes3:00394487Raymond DonnezConductor322933Guy MardelG. MardelWritten-By536499Jean-Pierre LangJ.P. LangWritten-By16-5La Vie C'Est Du Cinéma2:57253934Gabriel YaredConductor253934Gabriel YaredG. YaredWritten-By440749Georges CostaCostaWritten-By429049Michel MalloryM. MalloryWritten-By16-6Te Tuer D'Amour 2:59253934Gabriel YaredConductor282489Johnny HallydayVocals2903448Jacques PloquinJ. PloquinWritten-By429049Michel MalloryM. MalloryWritten-By16-7Ne M'Attends Pas 3:021406731Eddie VartanConductor1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By16-8Non Je Ne Suis Plus La Même3:00394487Raymond DonnezConductor422189Jean RenardJ. RenardWritten-By16-9Melody Man2:53253934Gabriel YaredConductor429049Michel MalloryM. MalloryWritten-By16-10Mon Père3:25394487Raymond DonnezConductor1126545Marc BenoitM. BenoitWritten-By429049Michel MalloryM. MalloryWritten-ByTitres Bonus:16-11L'Amour Au Diapason422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By16-12Toi Le Garçon434848Alex Harvey (2)A. HarveyWritten-By593627Larry CollinsL. CollinsWritten-By429049Michel MalloryM. MalloryWritten-By16-13Voglio Tutto Di Te = Te Tuer D'Amour2903448Jacques PloquinJ. PloquinWritten-By429049Michel MalloryM. MalloryWritten-By3461862Paolo Amerigo CassellaP. CassellaWritten-By16-14Veglia Nega355Unknown ArtistWritten-By16-15Vielleicht Bist Du Für Mich Noch Nicht Die Grosse Liebe = J'Ai Un Problème422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By871347Robert PuschmannR. PuschmannWritten-By16-16Mon Père 1126545Marc BenoitM. BenoisWritten-By429049Michel MalloryM. MalloryWritten-By16-17Perchè Mi Dici No = L'Amour Au Diapason422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By494726Paolo DossenaP. DossenaWritten-ByJe Chante Pour Swanee17-1Ziegfield Folies573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-2Doulidoulidam573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By1550851Daniel GélinPerformer282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-3Dialogues 573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-4Les Petites Filles Modèles573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By353591Chantal GoyaPerformer2797084Misha BayardPerformer282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-5Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-6La Peinture En Couleurs573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By410750Jean-Jacques DeboutPerformer282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-7Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-8Laurel Et Hardy573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By320305Carlos (3)Performer282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-9Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-10Indiana (Ballet)573647Pierre PorteArranged By, Music Director, Music By [Original Music]410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story]2835947Maritie CarpentierAuthor [Original Story], Libretto By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-11Baby Capone573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-12Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-13Bulle Bulle573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-14Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-15La Légion573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By320305Carlos (3)Performer475511Pierre BillonPerformer282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-16Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-17Paris Sylvie573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-18Dialogues573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound Designer17-19Je Chante Pour Swanee573647Pierre PorteArranged By, Music Director2835947Maritie CarpentierAuthor [Original Story], Libretto By410750Jean-Jacques DeboutJean Jacques DeboutAuthor [Original Story], Music By409506Roger DumasLyrics By282391Sylvie VartanPerformer3381418Maritie Et Gilbert CarpentierProducer422189Jean RenardProducer [Realization]1126256Paul AliprandiSound DesignerTitres Bonus:17-20Les Filles N'Ont Aucun Dégout90539Jane BirkinVocals5951Serge GainsbourgVocals5951Serge GainsbourgS. GainsburgWritten-By17-21I Marinai = Paris Sylvie410750Jean-Jacques DeboutJ.J. DeboutWritten-By494726Paolo DossenaP. DossenaWritten-By409506Roger DumasR. DumasWritten-By17-22Io Canto Per Swanee = Je Chante Pour Swanee410750Jean-Jacques DeboutJ.J. DeboutWritten-By494726Paolo DossenaP. DossenaWritten-By409506Roger DumasR. DumasWritten-ByLive In Japan18-1Ne Me Demande Pas Pourquoi2:171936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By18-2Non Je Ne Suis Plus La Même3:051936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet422189Jean RenardJ. RenardWritten-By18-3La Plus Belle Pour Aller Danser2:531936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet339220Charles AznavourC. AznavourWritten-By84239Georges GarvarentzG. GarvarentzWritten-By18-4L'Heure La Plus Douce De Ma Vie3:311936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet429049Michel MalloryM. MalloryWritten-By161696Nanette WorkmanN. WorkmanWritten-ByTrack 18-56:301936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet18-5aRock'n' Roll Music180119Chuck BerryC. BerryWritten-By18-5bProud Mary260458John FogertyFogertyWritten-By18-6C'Est Bon De Vous Voir = Bad Moon Rising2:051936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet593553Georges AberG. AberWritten-By260458John FogertyFogertyWritten-By18-7La Vie C'Est Du Cinéma2:321936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet253934Gabriel YaredG. YaredWritten-By440749Georges CostaG. CostaWritten-By429049Michel MalloryM. MalloryWritten-By18-8Mon Père3:231936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet1126545Marc BenoitM. BenoisWritten-By429049Michel MalloryM. MalloryWritten-By18-9Caro Mozart3:271936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet2472248Francesco ValgrandeF. ValgrandeWritten-By683177Italo GrecoI. GrecoWritten-By494726Paolo DossenaP. DossenaWritten-By95546Wolfgang Amadeus MozartW.A. MozartWritten-By18-10Ne Me Quitte Pas3:471936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet164263Jacques BrelJ. BrelWritten-By18-11Les Hommes (Qui N'Ont Plus Rien À Perdre)4:021936807Chantal SitrukChantal SitrucBacking Vocals4515960Lydie CallierLygie CallierBacking Vocals699791Tommy Brown (3)Drums6033944Simon VanderkamElectric Guitar1086500Sakae SekineEngineer [Recording Engineer]6033945Philippe PereronEngineer [Sound Engineer]6033943Gerard MondolPiano, Bass Guitar5137615Hideo KomuroRecording Supervisor [Recording Director]1078799René MorizurRene MorizurSaxophone6033946Gessre ReynoldsTrumpet716812Franck GéraldF. GéraldWritten-By422189Jean RenardJ. RenardWritten-ByShang Shang A Lang19-1Les Chemins De Ma Vie = If You Love Me Let Me Know3:151012570Jean-Pierre DorsayArranged By, Music Director413086Roland GuillotelEngineer429049Michel MalloryLyrics By [French Lyrics]422189Jean RenardProducer [Realization]655618John RostillWritten-By19-2Da Dou Ron Ron = Da Doo Ron Ron2:47394487Raymond DonnezArranged By, Music Director413086Roland GuillotelEngineer593553Georges AberLyrics By [French Lyrics]422189Jean RenardProducer [Realization]746605Spector, Greenwich & BarryE. Greenwich - J. Barry - T. SpectorWritten-By19-3Toi Mon Aventure2:42253934Gabriel YaredArranged By, Music Director413086Roland GuillotelEngineer429049Michel MalloryLyrics By1406731Eddie VartanMusic By422189Jean RenardProducer [Realization]19-4Encore Un Jour, Une Nuit2:43394487Raymond DonnezArranged By, Music Director413086Roland GuillotelEngineer429049Michel MalloryLyrics By699791Tommy Brown (3)Music By422189Jean RenardProducer [Realization]19-5Le Train Sans Retour = Train Of Thought2:40427174Ivan JullienYvan JullienArranged By, Music Director413086Roland GuillotelEngineer429049Michel MalloryLyrics By422189Jean RenardProducer [Realization]398438Alan O'DayWritten-By19-6Reste Encore2:50394487Raymond DonnezArranged By, Music Director413086Roland GuillotelEngineer715246Pierre-André DoussetPierre André DoussetLyrics By918090Guy BonnetMusic By422189Jean RenardProducer [Realization]19-7Shang Shang A Lang = Shan A Lang Song2:35662752Gilles ThibautAdapted By [French Adaptation]427174Ivan JullienYvan JullienArranged By, Music Director413086Roland GuillotelEngineer422189Jean RenardProducer [Realization]631822Jean StoutVocals [Bass Vocal]115677Marty WildeWritten-By120167Peter ShelleyWritten-By19-8Rock'n'Roll Man4:15253934Gabriel YaredArranged By, Music Director413086Roland GuillotelEngineer422189Jean RenardProducer [Realization]699791Tommy Brown (3)Written-By19-9Entre Tes Mains3:05394487Raymond DonnezArranged By, Music Director413086Roland GuillotelEngineer422189Jean RenardMusic By429049Michel MalloryMusic By, Lyrics By422189Jean RenardProducer [Realization]19-10Je Te Cherche = Rocket Man4:10427174Ivan JullienYvan JullienArranged By, Music Director413086Roland GuillotelEngineer429049Michel MalloryLyrics By [French Lyrics]422189Jean RenardProducer [Realization]825268Elton John & Bernie TaupinE. John - B. TaupinWritten-By19-11Une Nuit D'Amour3:06573647Pierre PorteArranged By, Music Director413086Roland GuillotelEngineer715246Pierre-André DoussetPierre André DoussetLyrics By573647Pierre PorteMusic By422189Jean RenardProducer [Realization]19-12Laisse Faire, Laisse Dire3:20394487Raymond DonnezArranged By, Music Director413086Roland GuillotelEngineer429049Michel MalloryLyrics By699791Tommy Brown (3)Music By422189Jean RenardProducer [Realization]Titres Bonus:19-13Bye Bye Leroy Brown = Bad Bad Leroy Brown291337Jim CroceJ. CroceWritten-By429049Michel MalloryM. MalloryWritten-By19-14Bien Sûr662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By19-15Bad Bad Leroy Brown 291337Jim CroceJ. CroceWritten-By19-16Elle Est Terrible = Somethin' Else962339Bob CochranB. CochranWritten-By1402543Jean SettiJ. SettiWritten-By985920Jil Et JanWritten-By707622Shari SheeleyS. SheeleyWritten-ByLa Reine De Saba20-1La Reine De Saba3:48887549Michel LaurentM. LaurentWritten-By20-2Love Is Blue = L'Amour Est Bleu3:15148227André PoppA. PoppWritten-By1022779Bryan BlackburnBlackburnWritten-By665067Pierre CourP. CourWritten-By20-3Hymne À L'Amour3:00156406Edith PiafE. PiafWritten-By664662Marguerite MonnotM. MonnotWritten-By20-4Les Feuilles Mortes3:08583803Jacques PrévertJ. PrévertWritten-By445911Joseph KosmaV. KosmaWritten-By20-5The Music Played3:28663178Joachim FuchsbergerJ. FuchsbergerWritten-By362290Udo JürgensU. JürgensWritten-By20-6Les Moulins De Mon Cœur = The Windmills Of Your Mind3:11290091Alan & Marilyn BergmanA. Bergman - M. BergmanWritten-By662757Eddy MarnayE. MarnayWritten-By84236Michel LegrandM. LegrandWritten-By20-7Holidays3:14629700Jean-Loup DabadieJ.L. DabadieWritten-By70590Michel PolnareffM. PolnareffWritten-By20-8Rock'n'Roll Man4:47699791Tommy Brown (3)T. BrownWritten-By20-9Ne Me Quitte Pas3:31164263Jacques BrelJ. BrelWritten-By20-10Bang Bang2:28768643Claude CarrèreC. CarrèreWritten-By271967Sonny BonoS. BonoWritten-By20-11Da Dou Ron Ron = Da Doo Ron Ron2:51593553Georges AberG. AberWritten-By746605Spector, Greenwich & BarryE. Greenwich - J. Barry - P. SpectorWritten-By20-12Qui Saura3:03296973Carlo PesC. PesWritten-By558679Franco MigliacciF. MigliacciWritten-By739929Jimmy FontanaJ. FontanaWritten-By601673Michel JourdanM. JourdanWritten-ByTitres Bonus:20-13La Chanson Des Vieux Amants455296Gérard JouannestG. JouannestWritten-By164263Jacques BrelJ. BrelWritten-By20-14Rock'n'Roll Man 429049Michel MalloryM. MalloryWritten-By699791Tommy Brown (3)T. BrownWritten-By20-15Da Dou Ron Ron 746605Spector, Greenwich & BarryE. Greenwich - J. Barry - P. SpectorWritten-BySylvie Vartan (Punto E Basta)21-1Aladino = Shan A Lang Song494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]836589Carla VistariniVistariniWritten-By115677Marty WildeM. WildeWritten-By120167Peter ShelleyP. ShelleyWritten-By21-2Questa Sporca Vita494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]273695Paolo ConteP. ConteWritten-By21-3Angelo Mio = Bad Bad Leroy Brown494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]836589Carla VistariniVistariniWritten-By291337Jim CroceJ. CroceWritten-By21-4È L'Uomo Mio = Lui494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By3461862Paolo Amerigo CassellaP. CassellaWritten-By494726Paolo DossenaP. DossenaWritten-By21-5Fumo Di Legna494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]3461862Paolo Amerigo CassellaP. CassellaWritten-By21-6Il Mio Problema = J'Ai Un Problème494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]282489Johnny HallydayVocals374646Bruno LauziB. LauziWritten-By422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By21-7Il Veliero In Bottiglia494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]738471Matteo ChiossoM. ChiossoWritten-By769839Pino CalviP. CalviWritten-By21-8Arlecchino494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]992204Aldo DonatiDonatiWritten-By494726Paolo DossenaP. DossenaWritten-By21-9Da Du Ron Ron = Da Doo Ron Ron494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]836589Carla VistariniVistariniWritten-By746605Spector, Greenwich & BarryE. Greenwich - J. Barry - P. SpectorWritten-By21-10Allegramente494726Paolo DossenaP. DossenaProducer928276Olimpio PetrossiO. PetrossiProducer [Collaborator]2193358Gian Paolo VendittiG. P. VendittiTechnician [Recording And Re-recording]1022419Alberto CheliCheliWritten-By494726Paolo DossenaP. DossenaWritten-By6089529Roberto Chevalier Di MiceliR. ChevalierWritten-ByTitres Bonus:21-11Punto E Basta1491897Iaia FiastriM. FiastriWritten-By769839Pino CalviG. CalviWritten-By21-12Caro Mozart 2472248Francesco ValgrandeF. ValgrandeWritten-By683177Italo GrecoI. GrecoWritten-By494726Paolo DossenaP. DossenaWritten-By95546Wolfgang Amadeus MozartW.A. MozartWritten-By21-13La Gioventù = How Do You Do226192Hans van HemertH. Van HemertWritten-By427842Harry van HoofH. Van HoofWritten-By494726Paolo DossenaP. DossenaWritten-By21-14Cheyenne4436422Loic Marie CoccianteCoccianteWritten-By3461862Paolo Amerigo CassellaCassellaWritten-By494726Paolo DossenaP. DossenaWritten-By21-15Noi Ieri, Noi Oggi531382Luigi LopezF. LopezWritten-By494726Paolo DossenaP. DossenaWritten-By21-16Ma Maramao531382Luigi LopezF. LopezWritten-By494726Paolo DossenaP. DossenaWritten-By21-17Il Veliero In Bottiglia 738471Matteo ChiossoM. ChiossoWritten-By769839Pino CalviP. CalviWritten-By21-18Un Ragazzo Come Te640418Fabio PianigianiF. PianigianiWritten-By175006Gianna NanniniG. NanniniWritten-By21-19Semplicemente355Unknown ArtistWritten-By21-20Era Così Bella355Unknown ArtistWritten-By21-21Signora Mia 452141Daniele PaceD. PaceWritten-By380864Sandro GiacobbeS. GiacobbeWritten-By21-22Goodbye, Arrivederci (La Famiglia) 355Unknown ArtistWritten-By21-23Colori Dell'Amore355Unknown ArtistWritten-ByShow Sylvie Vartan22-1J'Ai Le Cœur En Peine, J'Ai Le Cœur En Joie 2:30573647Pierre PorteArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor1321653Fernand SardouPerformer282391Sylvie VartanPerformer2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-2Tout Au Fond Des Tiroirs1:51394487Raymond DonnezArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor282391Sylvie VartanPerformer2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-3Lorsque Je Pars En Permission2:21573647Pierre PorteArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor320305Carlos (3)Performer576630Roger PierrePerformer2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-ByTrack 22-43:103381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor2835947Maritie CarpentierText By22-4aLorsque L'On Est Ouvrière409506Roger DumasR. DumasWritten-By410750Jean-Jacques DeboutJ.J. DeboutWritten-By282391Sylvie VartanPerformer320305Carlos (3)Performer576630Roger PierrePerformer22-4bPolka Des Interdictions410750Jean-Jacques DeboutJ.J. DeboutWritten-By576630Roger PierrePerformer22-4cFinal Des Interdictions409506Roger DumasR. DumasWritten-By410750Jean-Jacques DeboutJ.J. DeboutWritten-By22-5Ballet New Orleans2:23573647Pierre PorteArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By573647Pierre PorteP. PorteWritten-By22-6Elle Ne Viendra Pas Ce Soir3:22573647Pierre PorteArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor410750Jean-Jacques DeboutPerformer2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-7Pour Que Je T'Aime De Tout Mon Corps4:13573647Pierre PorteArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor282391Sylvie VartanPerformer2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-8Nous Ne Nous Aimerons Jamais3:10394487Raymond DonnezArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor410750Jean-Jacques DeboutPerformer282391Sylvie VartanPerformer2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-9La Bagarre (Ballet)4:08253934Gabriel YaredG. YaredArranged By3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor282489Johnny HallydayPerformer282391Sylvie VartanPerformer2835947Maritie CarpentierText By22-10Toi Et Moi 2:58282489Johnny HallydayArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthor282489Johnny HallydayPerformer282391Sylvie VartanPerformer2835947Maritie CarpentierText By282489Johnny HallydayJ. HallydayWritten-By786032Long ChrisWritten-By22-11Bonne Année Nouvelle573647Pierre PorteArranged By, Music Director3381418Maritie Et Gilbert CarpentierAuthor3586237Serge GanzlAuthorSylvie Vartan Et Toute La TroupeOther [Performer]2835947Maritie CarpentierText By410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-ByTitres Bonus:22-12Bon Anniversaire 410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-13Nous Ne Nous Aimerons Jamais 334509Michel SardouPerformer410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By22-14Marie Blanche355Unknown ArtistWritten-ByShow Sylvie Vartan Palais Des CongrèsTrack 23-1-1394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer23-1-1aOuverture23-1-1bComme Un Garçon409506Roger DumasR. DumasWritten-By410750Jean-Jacques DeboutJ.J. DeboutWritten-By23-1-1cSi Je Chante488518Bill Anderson (2)B. AndersonWritten-By925622Jerry CrutchfieldJ. CrutchsieldWritten-By622972Vline BuggyV. BuggyWritten-By23-1-1dLady Veine973661Earl Brown (3)W. EarlbrownWritten-By662752Gilles ThibautG. ThibautWritten-By23-1-1eLa Plus Belle Pour Aller Danser339220Charles AznavourC. AznavourWritten-By84239Georges GarvarentzG. GarvarentzWritten-By23-1-1f2'35 De Bonheur1122435Jean-Michel RivatJ.M. RivatWritten-By221852Frank ThomasF. ThomasWritten-By422189Jean RenardJ. RenardWritten-By23-1-1gDa Dou Ron Ron746605Spector, Greenwich & BarryE. Greenwich - J. Barry - P. SpectorWritten-By593553Georges AberG. AberWritten-By23-1-1hTous Mes Copains410750Jean-Jacques DeboutJ.J. DeboutWritten-By23-1-1iJe Chante Pour Swanee409506Roger DumasR. DumasWritten-By410750Jean-Jacques DeboutJ.J. DeboutWritten-By23-1-1lMerci Mr. L'Agent409506Roger DumasR. DumasWritten-By410750Jean-Jacques DeboutJ.J. DeboutWritten-By573647Pierre PorteP. PorteWritten-By23-1-2Toute Ma Vie = Love Me394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer271355Alan OsmondA. OsmondWritten-By662752Gilles ThibautG. ThibautWritten-By653807Merrill OsmondM. OsmondWritten-By157873Michael LloydM. LloydWritten-By23-1-3Laisse-Moi L'Amour = When Will I Be Loved394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer639218Claude LemesleC. LemesleWritten-By1368367Patrick LarueP. LarueWritten-By332373Phil EverlyP. EverlyWritten-By23-1-4Merci Monsieur L'Agent394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer410750Jean-Jacques DeboutJ.J. DeboutWritten-By573647Pierre PorteP. PorteWritten-By409506Roger DumasR. DumasWritten-By23-1-5Tu Ne Me Parle Plus D'Amour394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer1616589Franco E Mino ReitanoF.&M. ReitanoWritten-By772490Luciano BerettaL. BerettaWritten-By1368367Patrick LarueP. LarueWritten-By587115Pierre DelanoëP. DelanoëWritten-ByMedley Salut Les Copains394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer23-1-6aIl Revient815076Johnny MeeksJ. MeeksWritten-By1840287Johnny EarlJ. EarlWritten-By593553Georges AberG. AberWritten-By1406731Eddie VartanE. VartanWritten-By23-1-6bTous Mes Copains410750Jean-Jacques DeboutJ.J. DeboutWritten-By23-1-6cLa Plus Belle Pour Aller Danser339220Charles AznavourC. AznavourWritten-By84239Georges GarvarentzG. GarvarentzWritten-By23-1-6dSi Je Chante488518Bill Anderson (2)B. AndersonWritten-By925622Jerry CrutchfieldJ. CrutchsieldWritten-By622972Vline BuggyV. BuggyWritten-By23-1-7Comme Un Garçon394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By23-1-8Operator394487Raymond DonnezR. DonnezArranged By, Producer [Realization]427174Ivan JullienYvan JulienConductor2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer291337Jim CroceJ. CroceWritten-By23-1-9La Divine Lady Veine394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer973661Earl Brown (3)W. EarlbrownWritten-By662752Gilles ThibautG. ThibautWritten-ByTrack 23-2-1394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer23-2-1aOuverture23-2-1bLa Maritza587115Pierre DelanoëP. DelanoëWritten-By422189Jean RenardJ. RenardWritten-By23-2-1cL'Amour Au Diapason429049Michel MalloryM. MalloryWritten-By422189Jean RenardJ. RenardWritten-By23-2-1dLa Drôle De Fin465257Raymond VincentR. VincentWritten-By664226Bruno LibertB. LibertWritten-By1529359Roger MeakinMeakinWritten-By1122435Jean-Michel RivatF. RivatWritten-By23-2-2Je Sens Mon Cœur Qui Bat = Your Love Keeps Lifting Me Higher And Higher394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer409506Roger DumasR. DumasWritten-By282391Sylvie VartanS. VartanWritten-By664352Wanda HutchinsonW. HutchinsonWritten-By23-2-3On Peut Mourir, Le Monde Chante = Keep Our Love Alive394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer1122435Jean-Michel RivatJ.M. RivatWritten-By364529Paul Davis (3)P. DavisWritten-By23-2-4Je Chante Pour Swanee394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]573647Pierre PorteP. PorteHarmonica2331998Alain Philippe MalagnacProducer410750Jean-Jacques DeboutJ.J. DeboutWritten-By409506Roger DumasR. DumasWritten-By23-2-5Deux Mains394487Raymond DonnezR. DonnezArranged By, Producer [Realization]427174Ivan JullienYvan JulienConductor2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer662752Gilles ThibautG. ThibautWritten-By422189Jean RenardJ. RenardWritten-By23-2-6Changement De Cavalière394487Raymond DonnezR. DonnezArranged By, Producer [Realization]487150René PratxR. PratzConductor2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer475255Jacques RevauxJ. RevauxWritten-By334509Michel SardouM. SardouWritten-ByTrack 23-2-7394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer23-2-7aRock Tango429049Michel MalloryM. MalloryWritten-By422189Jean RenardJ. RenardWritten-By23-2-7bLa Drôle De Fin664226Bruno LibertB. LibertWritten-By465257Raymond VincentR. VincentWritten-By1529359Roger MeakinMeakinWritten-By1122435Jean-Michel RivatF. RivatWritten-By23-2-7cMatahari Tango = Last Tango429049Michel MalloryM. MalloryWritten-By422189Jean RenardJ. RenardWritten-By23-2-8Mon Père394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer1126545Marc BenoitM. BenoisWritten-By429049Michel MalloryM. MalloryWritten-By23-2-9La Maritza394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-By23-2-10Bye Bye Leroy Brown = Bad Bad Leroy Brown394487Raymond DonnezR. DonnezArranged By, Conductor, Producer [Realization]2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer291337Jim CroceJ. CrocheWritten-By429049Michel MalloryM. MalloryWritten-By23-2-11Final - Toute Ma Vie = Love Me394487Raymond DonnezR. DonnezArranged By, Producer [Realization], Conductor2027690Alain AubertEngineer [Assistant]413086Roland GuillotelR. GuillotelEngineer, Producer [Realization]2331998Alain Philippe MalagnacProducer271355Alan OsmondA. OsmondWritten-By662752Gilles ThibautG. ThibautWritten-By653807Merrill OsmondM. OsmondWritten-By157873Michael LloydM. LloydWritten-ByQu’Est-Ce Qui Fait Pleurer Les Blondes?24-1Qu'Est-Ce Qui Fait Pleurer Les Blondes? = Ride The Lightning3:09315793Hervé RoyArranged By475255Jacques RevauxProducer [And Realization]106184John KongosKongosWritten-By1018963Peter LeroyLeroyWritten-By587115Pierre DelanoëP. DelanoëWritten-By24-2Tu Ne Me Parles Plus D'Amour = Innamorati3:51487150René PratxArranged By475255Jacques RevauxProducer [And Realization]1616589Franco E Mino ReitanoF. & M. ReitanoWritten-By772490Luciano BerettaL. BerettaWritten-By1368367Patrick LarueP. LarueWritten-By587115Pierre DelanoëP. DelanoëWritten-By24-3Le Mariage = She Didn't Forget Her Shoes2:47487150René PratxArranged By475255Jacques RevauxProducer [And Realization]639218Claude LemesleC. LemesleWritten-By1095275Eric BeamWritten-By587115Pierre DelanoëP. DelanoëWritten-By24-4Ma Liberté = Sporca Vita3:00394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]662752Gilles ThibautG. ThibautWritten-By273695Paolo ConteWritten-By24-5On Peut Mourir, Le Monde Chante = Keep Our Love Alive3:10394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]1122435Jean-Michel RivatJ. M. RivatWritten-By364529Paul Davis (3)P. DavisWritten-By24-6Danse-La, Chante-La = Tambourine3:04394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]709231Mike ShepstoneM. ShepstoneWritten-By1373457Peter DibbensP. DilbensWritten-By103441Yves DesscaY. DesscaWritten-By24-7La Lettre3:17394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]1126545Marc BenoitMarc BenoistWritten-By429049Michel MalloryM. MalloryWritten-By24-8Toi Jamais2:56394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]1126545Marc BenoitMarc BenoistWritten-By429049Michel MalloryM. MalloryWritten-By24-9Changement De Cavalière3:22487150René PratxArranged By475255Jacques RevauxProducer [And Realization]475255Jacques RevauxJ. RevauxWritten-By334509Michel SardouM. SardouWritten-By24-10Ma Décadence = I Hit The Jackpot2:49394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]264990Art MunsonWritten-By501760Artie WayneWritten-By904196Molly Ann LeikinMolly - A. LeikinWritten-By24-11La Minute De Vérité3:56315793Hervé RoyArranged By475255Jacques RevauxProducer [And Realization]1406731Eddie VartanE. VartanWritten-By662752Gilles ThibautG. ThibautWritten-By24-12La Drôle De Fin = Last Tango2:52315793Hervé RoyArranged By475255Jacques RevauxProducer [And Realization]664226Bruno LibertB. LibertWritten-By1122435Jean-Michel RivatJ. M. RivatWritten-By465257Raymond VincentRay VincentWritten-By1529359Roger MeakinMeakinWritten-ByTitres Bonus:24-13Je Vis En Illustré429049Michel MalloryM. MalloryWritten-By475511Pierre BillonP. BillonWritten-By24-14El Tango Aquel = La Drôle De Fin2185049A. BelgranoA. BelgradoWritten-By664226Bruno LibertB. LibertWritten-By465257Raymond VincentR. VincentWritten-By1529359Roger MeakinR. MeakinWritten-By24-15Le Soleil A Rendez-Vous Avec La Lune830187Albert LasryA. LasryWritten-By287785Charles TrenetC. TrenetWritten-By24-16Do You Know Where You Are Going To?241547Gerry GoffinG. GoffinWritten-By41107Michael MasserM. MasserWritten-BySylvie Vartan (Ta Sorcière Bien Aimée)25-1Ta Sorcière Bien Aimée = Sugar Daddy475556Benoît KaufmanKaufmanArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]301065Gilbert Di NinoG. Di NinoWritten-By410027Michel GoutyM. GoutyWritten-By429049Michel MalloryM. MalloryWritten-By475511Pierre BillonP. BillonWritten-By25-2L'Amour C'Est Comme Les Bateaux394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]148227André PoppA. PoppWritten-By662752Gilles ThibautG. ThibautWritten-By25-3Dieu Merci = Sì, Ci Sto394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]659232Andrea Lo VecchioAndrea CovecchioWritten-By1931180Clément ChammahWritten-By662752Gilles ThibautG. ThibautWritten-By25-4Je Croyais475556Benoît KaufmanKaufmanArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]553792Cyril AssousC. AssousWritten-By662752Gilles ThibautG. ThibautWritten-By25-5Masculin Singulier394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]475255Jacques RevauxJ. RevauxWritten-By429049Michel MalloryM. MalloryWritten-By25-6Le Bonheur394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]951194Gérard LayaniG. LayaniWritten-By587115Pierre DelanoëP. DelanoëWritten-By25-7Le Temps Du Swing = House Of Swing315793Hervé RoyH. RoyArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]662752Gilles ThibautG. ThibautWritten-By813407Lou StonebridgeLou Stone BridgeWritten-By831046Tom McGuinnessTom Mac GuinnessWritten-By25-8Il Suffirait Que Tu Sois Là = Doccia Fredda394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]267091Piero CassanoP. CassanoWritten-By983448Salvatore StellitaS. StellitaWritten-By103441Yves DesscaY. DesscaWritten-By25-9La Meilleure Fille En Moi394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]1931179Jean-Claude DeclercqJ. C. DeclercqWritten-By559185Joël CartignyJ. CartignyWritten-By25-10Souvenirs394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]429049Michel MalloryM. MalloryWritten-By25-11Je M'En Vais394487Raymond DonnezDonnezArranged By6687672D. Valencia (2)Engineer413086Roland GuillotelR. GuillotelEngineer475255Jacques RevauxProducer [And Realization]429049Michel MalloryM. MalloryWritten-BySylvie Vartan (Georges)26-1Georges = George Disco Tango3:25394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]1952208Colin HallC. HallWritten-By429049Michel MalloryM. MalloryWritten-By1609269Pat SimonP. SimonWritten-By475511Pierre BillonP. BillonWritten-By523073Thomas StrasserT. StrasserWritten-By26-2Bla Bla Bla2:46394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]429049Michel MalloryM. MalloryWritten-By26-3Je Pardonne = When I Need You4:16394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]252786Albert HammondA. HammondWritten-By169899Carole Bayer SagerC. BayersagerWritten-By587115Pierre DelanoëP. DelanoëWritten-By26-4Talkin' About Love3:10475556Benoît KaufmanArranged By475255Jacques RevauxProducer [And Realization]429049Michel MalloryM. MalloryWritten-By699791Tommy Brown (3)T. BrownWritten-By26-5Une Blonde, Une Brune = Thunder In The Afternoon3:50394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]662752Gilles ThibautG. ThibautWritten-By327730Mac DavisM. DavisWritten-By1248433Rita GrimmR. GrimmWritten-By1248431Yvonne NormanY. NormanWritten-By26-6Mon Ciel De Lit = Under Cover Angel3:50394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]398438Alan O'DayWritten-By429049Michel MalloryM. MalloryWritten-By475511Pierre BillonP. BillonWritten-By26-7Petit Rainbow = Summer Love Sensation3:33394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]836081Bill Martin & Phil CoulterB. Martin/P. CoultierWritten-By689966Pierre GrilletP. GrilletWritten-By26-8Arrête De Rire = Sail On4:00394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]1122435Jean-Michel RivatJ.M. RivatWritten-By688602Warren HarryH. WarrenWritten-By26-9Je Vivrai Pour Deux3:40394487Raymond DonnezArranged By475255Jacques RevauxProducer [And Realization]1126545Marc BenoitM. BenoitWritten-By429049Michel MalloryM. MalloryWritten-By26-10Les Rendez-Vous En Secret = Sunday School To Broadway3:50475556Benoît KaufmanArranged By475255Jacques RevauxProducer [And Realization]1240827Danny HiceD. HiceWritten-By2099640Georges TermeG. TermeWritten-By1240829Ruby HiceR. HiceWritten-By26-11Profites-En3:15475556Benoît KaufmanArranged By475255Jacques RevauxProducer [And Realization]475556Benoît KaufmanB. KaufmanWritten-By1000529Freddie MeyerF. MeyerWritten-By475511Pierre BillonP. BillonWritten-ByTitres Bonus:26-12Wie Sie Reden-Blah, Blah = Bla Bla Bla429049Michel MalloryM. MalloryWritten-By720007Wolfgang HoferW. HoferWritten-By26-13Ein Kleines Herz Auf Der Haut = Petit Rainbow836081Bill Martin & Phil CoulterB. Martin - P. CoulterWritten-By291257Michael KunzeM. KunzeWritten-By689966Pierre GrilletP. GrilletWritten-By26-14Summer Love Sensation = Petit Rainbow836081Bill Martin & Phil CoulterB. Martin - P. CoulterWritten-ByDancing Star27-1Les Volets Bleus394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By27-2Douce Misère394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By27-3Il Y A 2 Jours Que Je Suis A Paris394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By375022Marie-Paule BellePerformer282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager967557Françoise Mallet-JorisF. Mallet - JorrisWritten-By375022Marie-Paule BelleM.-P. BelleWritten-By868890Michel GrisoliaM. GrisoliaWritten-By27-4Sugar Daddy C'Est Moi394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By273615Jean-Claude BrialyJ. C. BrialyPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPerre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By27-5Le Temps Du Swing315793Hervé RoyArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager662752Gilles ThibautG. ThibautWritten-By813407Lou StonebridgeLou Stone BridgeWritten-By831046Tom McGuinnessTom Mac GuinnessWritten-By27-6Georges394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1952208Colin HallC. HallWritten-By429049Michel MalloryM. MalloryWritten-By1609269Pat SimonP. SimonWritten-By475511Pierre BillonP. BillonWritten-By523073Thomas StrasserT. StrasserWritten-By27-7Arrête De Rire394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1122435Jean-Michel RivatJ. M. RivatWritten-By688602Warren HarryH. WarrenWritten-By27-8La Fourmi Et La Cigale 394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By320305Carlos (3)Performer282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By27-9Je Vous Aime394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By475255Jacques RevauxJ. RevauxPerformer282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By27-10Je Croyais475556Benoît KaufmanBenoit KaufmanArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager553792Cyril AssousC. AssousWritten-By662752Gilles ThibautG. ThibautWritten-By27-11Dieu Merci394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager659232Andrea Lo VecchioAndrea CovecchioWritten-By1931180Clément ChammahWritten-By662752Gilles ThibautG. ThibautWritten-By27-12Quiproquos394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By273615Jean-Claude BrialyJ. C. BrialyPerformer282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By27-13Souvenirs394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager429049Michel MalloryM. MalloryWritten-By27-14Dancing Star394487Raymond DonnezArranged By, Music Director273615Jean-Claude BrialyJean Claude BrialyAuthor3381418Maritie Et Gilbert CarpentierAuthor413086Roland GuillotelEngineer6689882Alain RondEngineer [Assistant]1247623SFP (2)Executive-Producer2835947Maritie CarpentierLibretto By282391Sylvie VartanPerformer475255Jacques RevauxProducer6689879Catherine ClémentProducer [Collaborator]1590142Pierre Fournier BidozPierre Fournier BidazProducer [Collaborator]1574166Jacques BrialyProducer [Realization]6689878Marcel Van EysteProduction Manager1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-ByTitres Bonus:27-15Partir420011Julien ClercVocals629700Jean-Loup DabadieJ.L. DabadieWritten-By420011Julien ClercJ. ClercWritten-By27-16Changement De Cavalière 334509Michel SardouVocals475255Jacques RevauxJ. RevauxWritten-By334509Michel SardouM. SardouWritten-By27-1799 Miles From L.A. 170755Johnny MathisVocals252786Albert HammondA. HammondWritten-By173078Hal DavidH. DavidWritten-ByAu Palais Des CongresActe 128-1-1Ouverture475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin475556Benoît KaufmanWritten-By28-1-2Cet Instant Est À Moi475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By28-1-3Petit Rainbow = Summer Love Sensation475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin836081Bill Martin & Phil CoulterB. Martin/P. CoulterWritten-By689966Pierre GrilletP. GrilletWritten-By28-1-4L'Amour C'Est Comme Les Bateaux 475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin148227André PoppA. PoppWritten-By662752Gilles ThibautG. ThibautWritten-By28-1-5Dieu Merci = Sì, Ci Sto475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin659232Andrea Lo VecchioA. CovecchioWritten-By1931180Clément ChammahC. ChammahWritten-By662752Gilles ThibautG. ThibautWritten-By28-1-6Qu'Est-Ce Qui Fait Pleurer Les Blondes?475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin106184John KongosJ. KongosWritten-By1018963Peter LeroyLeroyWritten-By587115Pierre DelanoëP. DelanoëWritten-By28-1-7Arrête De Rire = Sail On475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1122435Jean-Michel RivatJ.M. RivatWritten-By688602Warren HarryH. WarrenWritten-By28-1-8Ne Pars Pas Comme Ça = Don't Leave Me This Way475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet556781David BarraultTrumpet253061Louis ToescaTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin79091Barry ManilowB. ManiloWritten-By429049Michel MalloryM. MalloryWritten-By28-1-9Le Temps Du Swing = House Of Swing475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin662752Gilles ThibautG. ThibautWritten-By813407Lou StonebridgeL. Stone BridgeWritten-By831046Tom McGuinnessT. Mac GuinnessWritten-By28-1-10Tout Le Bazar = All That Jazz475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin539034Al StillmanStillmanWritten-By258701Benny CarterCarterWritten-By429049Michel MalloryM. MalloryWritten-ByActe 228-2-1Ouverture "Swing"475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin475556Benoît KaufmanWritten-By28-2-2Georges = Georges Disco Tango475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1952208Colin HallC. HallWritten-By429049Michel MalloryM. MalloryWritten-By1609269Pat SimonP. SimonWritten-By475511Pierre BillonP. BillonWritten-By523073Thomas StrasserT. StrasserWritten-By28-2-3La Drôle De Fin = Last Tango475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin664226Bruno LibertB. LibertWritten-By1122435Jean-Michel RivatJ.M. RivatWritten-By465257Raymond VincentR. VincentWritten-By1529359Roger MeakinMeakinWritten-By28-2-42'35" De Bonheur 475556Benoît KaufmanArranged By, Conductor510159Martine LatorreBacking Vocals [(La Contractuelle)]1952214Cora CarnierBacking Vocals [(La Femme De Mauvaise Vie)]995144Francine ChabotFrançine ChabotBacking Vocals [(La Femme Du Monde)]590139Catherine BonnevayBacking Vocals [(La Petite Fille)]444293Dominique PoulainBacking Vocals [(La Vieille Dame)]455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin221852Frank ThomasF. ThomasWritten-By422189Jean RenardJ. RenardWritten-By1122435Jean-Michel RivatJ.M. RivatWritten-By28-2-5Jubilation475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By307604Gary ChapmanSolo Vocal1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1952211Peter Newton (3)Vocals67035Johnny HarrisJ. HarrisWritten-By312014Paul AnkaP. AnkaWritten-By28-2-6Operator475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By307604Gary ChapmanSolo Vocal1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1952211Peter Newton (3)Vocals986947William SpiveryW. SpiveriWritten-By28-2-7Photo475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-ByMedley 475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin28-2-8aDanse-La, Chante-La = Tambourine648840Shepstone & DibbensP. Dibbens/ShepstoneWritten-By103441Yves DesscaY. DesscaWritten-By28-2-8bIrrésistiblement422189Jean RenardJ. RenardWritten-By593553Georges AberG. AberWritten-By28-2-8cL'Amour Au Diapason422189Jean RenardJ. RenardWritten-By429049Michel MalloryM. MalloryWritten-By28-2-8dTa Sorcière Bien Aimée410027Michel GoutyM. GoutyWritten-By301065Gilbert Di NinoG. di NinoWritten-By475511Pierre BillonP. BillonWritten-By429049Michel MalloryM. MalloryWritten-By28-2-8eDanse-La, Chante-La648840Shepstone & DibbensP. Dibbens/ShepstoneWritten-By103441Yves DesscaY. DesscaWritten-By28-2-9Parle-Moi De Ta Vie475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin475582Jean-Pierre BourtayreJ.P. BourtayreWritten-By103441Yves DesscaY. DesscaWritten-By28-2-10Je Suis Née Dans Une Valise475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By28-2-11Dancing Star475556Benoît KaufmanArranged By, Conductor455853Gilbert Dall'aneseGilbert Dall’AnezBaritone Saxophone279947Tonio RubioTonyo RubioBass Guitar1072850Dino LatorreDino LatoreDrums52022Alan PerkinsEngineer6691786Jacques MondoliniEngineer6691785Jean-Yves CastorEngineer886018Malcolm HeeleyEngineer [Assistant]52021Phil NewellEngineer [Assistant]1952206Simon van der CamSimon Van Der CamGuitar253939Slim PezinGuitar1952207Georges TapieKeyboards361385Marc ChantereauPercussion510288Gérard DaguerrePiano475255Jacques RevauxProducer [And Realization]413086Roland GuillotelRecording Supervisor, Mixed By1952210Gilbert CiuffiTenor Saxophone258800Alex PerdigonTrombone466369Christian GuizienTrombone1092988André LajdliAndré LaidliTrumpet253061Louis ToescaTrumpet1952209Michel BarraultTrumpet1564789Daniel FaidherbeViola1952212Stephan WienerViola1952215Michel CiricViolin1283449Pierre DefayeViolin631820Pierre LouisViolin1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-ByTitre Bonus:28-2-12Je Vivrai Pour Deux 1126545Marc BenoitM. BenoisWritten-By429049Michel MalloryM. MalloryWritten-BySylvie Vartan (Fantaisie)29-1Fantaisie = All I Need Is A Girl475556Benoît KaufmanBenoit KaufmanArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]151938Georg KajanusG. KajamusWritten-By2099640Georges TermeG. TermeWritten-By29-2Mon Pauvre Bébé315793Hervé RoyArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]429049Michel MalloryM. MalloryWritten-By29-3Disco Queen (Johnny Johnny Please Come Home)378963Jean-Claude PetitArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]245285Jörg EversJ. EversWritten-By261732Jürgen S. KorduletschJ. KorduletschWritten-By429049Michel MalloryM. MalloryWritten-By29-4Jours Après Jours315793Hervé RoyArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]1406731Eddie VartanE. VartanWritten-By2099640Georges TermeG. TermeWritten-By29-5Rappelez-Moi En L'An 2000315793Hervé RoyArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]975354Martial CarcélèsM. CarcelesWritten-By587115Pierre DelanoëP. DelanoëWritten-By103441Yves DesscaY. DesscaWritten-By29-6Je Chante Encore L'Amour315793Hervé RoyArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]1126545Marc BenoitM. BenoisWritten-By429049Michel MalloryM. MalloryWritten-By29-7Délivrée (Désirée)315793Hervé RoyArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]429049Michel MalloryM. MalloryWritten-By271516Neil DiamondN. DiamondWritten-By29-8Tant Mieux, Tant Pis315793Hervé RoyArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]429049Michel MalloryM. MalloryWritten-By29-9Solitude = Substitute475556Benoît KaufmanBenoit KaufmanArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]1122435Jean-Michel RivatJ.M. RivatWritten-By632765Willie Harry WilsonW.H. WilsonWritten-By29-10Capitaine Je Me Noie475556Benoît KaufmanBenoit KaufmanArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]1406731Eddie VartanE. VartanWritten-By2099640Georges TermeG. TermeWritten-By29-11Fumée = If You'd Only Come Back475556Benoît KaufmanBenoit KaufmanArranged By, Conductor413086Roland GuillotelEngineer475255Jacques RevauxProducer475255Jacques RevauxJ. RevauxProducer [Realization]413086Roland GuillotelR. GuillotelProducer [Realization]2099640Georges TermeG. TermeWritten-By36979Jack RobinsonJ. RobinsonWritten-By385585James BoldenJ. BoldenWritten-ByTitres Bonus:29-12Sidéré Sidéral326874Eddie RabbittE. RabbittWritten-By475511Pierre BillonP. BillonWritten-By29-13Tu Me Plais429049Michel MalloryM. MalloryWritten-By29-14Disco Queen245285Jörg EversJ. EversWritten-By261732Jürgen S. KorduletschJ. KorduletschWritten-By429049Michel MalloryM. MalloryWritten-ByI Don’t Want The Night To End30-1I Don't Want The Night To End52312Michel ColombierArranged By, Keyboards441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]648363Brian ShortB. ShortWritten-By30-2Please Stay52312Michel ColombierArranged By, Keyboards441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]425509John CapekO.J. CapekWritten-By778412Nat KipnerN. KipnerWritten-By30-3Easy Love72440Gene PageArranged By277535Jim HaasBacking Vocals318148Jon JoyceBacking Vocals441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals277530Stan FarberBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards52312Michel ColombierKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]789036Larry HerbstrittL. HerbstrittWritten-By1240679Randy CateR. CateWritten-By195397Steve DorffS. DorffWritten-By30-4Distant Shores52312Michel ColombierArranged By, Keyboards441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]6692902Jonathan FrigaJ. FrigaWritten-By679108Robbie PattonR. PattonWritten-By30-5The Rest Of My Life52312Michel ColombierArranged By, Keyboards277535Jim HaasBacking Vocals318148Jon JoyceBacking Vocals441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals277530Stan FarberBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]1008810Timothy MartinMartinWritten-By813472Walt MeskellMeskellWritten-By30-6Pure Love52312Michel ColombierArranged By, Keyboards277535Jim HaasBacking Vocals318148Jon JoyceBacking Vocals441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals277530Stan FarberBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]992633Amber DiLenaV. DelenaWritten-By368489Jack KellerI. KellerWritten-By30-7Don't You Worry72440Gene PageArranged By441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards52312Michel ColombierKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]4058035Phyllis Brown (3)P. BrownWritten-By679108Robbie PattonR. PattonWritten-By30-8Keep On Rockin'52312Michel ColombierArranged By, Keyboards441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]671790Brian CaddB. CaddWritten-By30-9Dance To The Rhythm Of Your Love72440Gene PageArranged By441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards52312Michel ColombierKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]772145Kerry ChaterK. ChaterWritten-By679108Robbie PattonR. PattonWritten-By30-10Hot Time Tonight52312Michel ColombierArranged By, Keyboards441634Julia Tillman WatersJulia Waters TillmanBacking Vocals259388Maxine WatersBacking Vocals112806Oren WatersBacking Vocals441179Emory Gordy, Jr.Bass170598Jerry KnightBass63316Scott Edwards (2)Bass508304Ed Greene (2)Drums264992Ron TuttDrums341250Ron MaloEngineer3943021Jeffrey BenjaminExecutive-Producer280032Dennis BudimirGuitar441641Doug RhoneGuitar37735Lee RitenourGuitar266403Paul Jackson Jr.Paul Jackson, Jr.Guitar752202Thom RotellaGuitar346088Larry MuhoberacKeyboards46163Paulinho Da CostaPaulinho DaCostaPercussion211860Denny DianteProducer562262Michel BanonProducer [Assistant]441641Doug RhoneR. RhoneWritten-ByTitres Bonus:30-11I Don't Want The Night To End (Remix Version Disco)648363Brian ShortB. ShortWritten-By30-12I Don't Want The Night To End 648363Brian ShortB. ShortWritten-By30-13Esta Noche Es Nuestra = I Don't Want The Night To End648363Brian ShortB. ShortWritten-By1169484Buddy & Mary McCluskeyB.M. McCluskeyWritten-By30-14Don't Let Go644434Jesse StoneJ. StoneWritten-ByDéraisonnable31-1Les Filles315793Hervé RoyArranged By413086Roland GuillotelEngineer1580436Marie-José CasanovaMarie CasanovaLyrics By975354Martial CarcélèsMartial CarcelesMusic By1406731Eddie VartanProducer [And Realization]31-2Pour Que Tu M'Aimes315793Hervé RoyArranged By413086Roland GuillotelEngineer1580436Marie-José CasanovaMarie CasanovaLyrics By1406731Eddie VartanMusic By1406731Eddie VartanProducer [And Realization]31-3Nicolas = Elmegyek475556Benoît KaufmanArranged By413086Roland GuillotelEngineer429049Michel MalloryLyrics By [French Lyrics]1022315S. Nagy IstvánS. Nagy IstvanLyrics By [Original Lyrics]794664Máté PéterMate PéterMusic By1406731Eddie VartanProducer [And Realization]31-4Can't Stop Dancing510288Gérard DaguerreArranged By413086Roland GuillotelEngineer1718491John Pritchard (2)J. Pritchard JrLyrics By, Music By322819Ray StevensR. StevensLyrics By, Music By1406731Eddie VartanProducer [And Realization]31-5Seule Sur Mon Île315793Hervé RoyArranged By413086Roland GuillotelEngineer429049Michel MalloryLyrics By, Music By1406731Eddie VartanProducer [And Realization]31-6Pauvre Sylvie = Poor, Poor, Pityful Me429049Michel MalloryAdapted By [French Adaptation]315793Hervé RoyArranged By413086Roland GuillotelEngineer273411Warren ZevonLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]31-7La Différence315793Hervé RoyArranged By413086Roland GuillotelEngineer429049Michel MalloryLyrics By486749Julien LepersMusic By1406731Eddie VartanProducer [And Realization]31-8Rock And Blow (Touch And Gone)475556Benoît KaufmanArranged By413086Roland GuillotelEngineer429049Michel MalloryLyrics By [French Lyrics]131320Gary WrightGarry WrightLyrics By [Original Lyrics], Music By1385029Richard ReichegLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]31-9Déraisonnable = Wrap Your Love All Around Your Man429049Michel MalloryAdapted By [French Adaptation]315793Hervé RoyArranged By413086Roland GuillotelEngineer392950Johnny CunninghamLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]31-10Merveilleusement Désenchantée315793Hervé RoyArranged By413086Roland GuillotelEngineer1027572Francis BassetLyrics By279974Jacques DenjeanMusic By1406731Eddie VartanProducer [And Realization]Titres Bonus:31-11Chanson De L'Autruche370291Philippe ChatelP. ChatelWritten-By31-12Je Suis Une Femme429049Michel MalloryM. MalloryWritten-BySylvie Vartan (Bienvenue Solitude)32-1Bienvenue Solitude = Good Morning Nobody429049Michel MalloryAdapted By413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]564626Jean-Pierre MareuilMastered By1406731Eddie VartanProducer [And Realization]2925110Ed BimmE. BimmWritten-By642330Les EmmersonR. EmmersonWritten-By32-2Jerry413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By564626Jean-Pierre MareuilMastered By486749Julien LepersMusic By1406731Eddie VartanProducer [And Realization]32-3Tape-Tape = Pata-Pata413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By [French Lyrics]293080Jerry RagovoyRogovoyLyrics By [Original Lyrics], Music By76040Miriam MakebaMakebaLyrics By [Original Lyrics], Music By564626Jean-Pierre MareuilMastered By1406731Eddie VartanProducer [And Realization]32-4Je Finirai Bien Par T'Oublier413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By, Music By564626Jean-Pierre MareuilMastered By1406731Eddie VartanProducer [And Realization]32-5Le Piège = Look All You Like413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By [French Lyrics]564626Jean-Pierre MareuilMastered By258622Jess RodenMusic By1406731Eddie VartanProducer [And Realization]32-6La Chanson Au Brouillon413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By564626Jean-Pierre MareuilMastered By1937807Marc BenoisMusic By1406731Eddie VartanProducer [And Realization]32-7Pour L'Amour Tu Me Garderas = You'll Accomp'ny Me413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By [French Lyrics]564626Jean-Pierre MareuilMastered By267854Bob SegerMusic By1406731Eddie VartanProducer [And Realization]32-8Tu Risques De Me Plaire413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By564626Jean-Pierre MareuilMastered By732178Michel HéronMusic By1406731Eddie VartanProducer [And Realization]32-9Quand Le Vent Se Lève413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]1541099Catherine ArgallLyrics By564626Jean-Pierre MareuilMastered By1406731Eddie VartanMusic By1406731Eddie VartanProducer [And Realization]32-10Donner = Heartaches413086Roland GuillotelEngineer1670089Daniel GauthierEngineer [Assistant]429049Michel MalloryLyrics By [French Lyrics], Adapted By564626Jean-Pierre MareuilMastered By363372C.F. TurnerMusic By1406731Eddie VartanProducer [And Realization]Sylvie Vartan (Ça Va Mal)33-1Ça Va Mal = On And On And On429049Michel MalloryAdapted By475556Benoît KaufmanArranged By413086Roland GuillotelEngineer975170Björn Ulvaeus & Benny AnderssonBenny Andersson/Björn UlvaeusLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]33-2De L'Autre Côté De L'Amour315793Hervé RoyArranged By413086Roland GuillotelEngineer429049Michel MalloryLyrics By, Music By1406731Eddie VartanProducer [And Realization]33-3Le Voleur Envolé = Hey Operator2099640Georges TermeAdapted By475556Benoît KaufmanArranged By413086Roland GuillotelEngineer153599Ken GoldLyrics By [Original Lyrics], Music By741301Michael DenneMicky DenneLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]33-4Toute Une Vie Passe...475556Benoît KaufmanArranged By413086Roland GuillotelEngineer374784Didier BarbelivienLyrics By380870Dario Baldan BemboMusic By1406731Eddie VartanProducer [And Realization]33-5Quand Tu Veux = Queen Of Hearts429049Michel MalloryAdapted By315793Hervé RoyArranged By413086Roland GuillotelEngineer382706Hank DevitoHank De VitoLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]33-6Orient-Express315793Hervé RoyArranged By413086Roland GuillotelEngineer374784Didier BarbelivienLyrics By1406731Eddie VartanMusic By1406731Eddie VartanProducer [And Realization]33-7J'Avais Mon Tempo = We Got Love1580436Marie-José CasanovaAdapted By475556Benoît KaufmanArranged By413086Roland GuillotelEngineer648363Brian ShortLyrics By [Original Lyrics], Music By2834815Daniel SaidiLyrics By [Original Lyrics], Music By769459Loren Paul CaplinLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]33-8Il Me Fait De La Magie = Mystified1580436Marie-José CasanovaAdapted By315793Hervé RoyArranged By413086Roland GuillotelEngineer577010Nan O'ByrneLyrics By [Original Lyrics], Music By1817741Serge KapustinLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]33-9L'Amour C'Est Comme Une Cigarette = Morning Train (9 To 5)429049Michel MalloryAdapted By315793Hervé RoyArranged By413086Roland GuillotelEngineer1180422Freddie PalmerP. PalmerLyrics By [Original Lyrics], Music By1406731Eddie VartanProducer [And Realization]33-10Je Ne Suis Pas D'Ici = Memphis Tennessee429049Michel MalloryAdapted By397264John D'AndreaArranged By336324David HungateBass314639James StroudDrums180713Tony PapaEngineer444585Billy WalkerGuitar180119Chuck BerryLyrics By [Original Lyrics], Music By407932John HobbsJohn HobbesPiano319808Tony ScottiProducerTitre Bonus:33-11Aimer1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-ByPalais Des Sports 8134-1-1Ouverture (Sunrise On Stage)475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]475556Benoît KaufmanB. KaufmanWritten-By34-1-2En Passant475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By34-1-3Mélodie475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]366290Jeff HarringtonJ. HarringtonWritten-By366291Jeff PennigJ. PenningWritten-By429049Michel MalloryM. MalloryWritten-By34-1-4Orient Express475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]374784Didier BarbelivienD. BarbelivienWritten-By1406731Eddie VartanE. VartanWritten-By34-1-5Le Piège475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]258622Jess RodenJ. RodenWritten-By429049Michel MalloryM. MalloryWritten-By34-1-6Jerry475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]486749Julien LepersJ. LepersWritten-By429049Michel MalloryM. MalloryWritten-By34-1-7Jours Après Jours475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By2099640Georges TermeG. TermeWritten-By34-1-8Rip It Up475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]467532John MarascalcoS. MarascalcoWritten-By295203Robert BlackwellR. BlackwellWritten-By34-1-9Trouble475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]281667Leiber & StollerE. Lieiber / StollerWritten-By34-1-10Summertime Blues475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]139984Eddie CochranE. CochranWritten-By521601Jerry CapehartCapehartWritten-By34-1-11Whole Lotta Shakin' Goin' On475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]636119Dave Williams (7)D. WilliamsWritten-By34-1-12Le Locomotion475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]593553Georges AberG. AberWritten-By682663Goffin And KingG. Goffin - C. KingWritten-By34-1-13Il Revient475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By593553Georges AberG. AberWritten-By1840287Johnny EarlJ. EarlWritten-By815076Johnny MeeksJ. MeeksWritten-By34-1-14En Écoutant La Pluie475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]603389John GummoeJ. GummoeWritten-By309200Richard Anthony (2)R. AnthonyWritten-By34-1-15Dansons475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]630053André SalvetA. SalvetWritten-By620814Jim LeeJ. LeeWritten-By34-1-16Si Je Chante475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]488518Bill Anderson (2)B. AndersonWritten-By925622Jerry CrutchfieldJ. CrutchfieldWritten-By622972Vline BuggyV. BuggyWritten-By34-1-17La Plus Belle Pour Aller Danser475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]339220Charles AznavourC. AznavourWritten-By84239Georges GarvarentzG. GarvarentzWritten-By34-1-18Shake Your Tail Feather475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1382699Denise LoveD. LoveWritten-By1382713Gerald "Fuzz" LoveG. LoveWritten-By1382705Peggy LoveP. LoveWritten-By386944Rudy LoveR. LoveWritten-By1382709Tyree JudieT. JudyWritten-By2429740Zebeded PhillipsZ. PhillipsWritten-ByTitres Bonus:34-1-19Qu'Est-Ce Qui Fait Pleurer Les Blondes? 106184John KongosJ. KongosWritten-By1018963Peter LeroyP. LeroyWritten-By587115Pierre DelanoëP. DelanoëWritten-By34-1-20Last Tango664226Bruno LibertB. LibertWritten-By465257Raymond VincentR. VincentWritten-By1529359Roger MeakinR. MeakinWritten-By34-1-21Intro Satin Doll258464Billy StrayhornB. StrayhornWritten-By145257Duke EllingtonD. EllingtonWritten-By164574Johnny MercerJ. MercerWritten-By34-1-22Take The A Train258464Billy StrayhornB. StrayhornWritten-By34-1-23In My Solitude145257Duke EllingtonD. EllingtonWritten-By657340Eddie DelangeE. deLangeWritten-By307446Irving MillsI. MillsWritten-By34-1-24Satin Doll258464Billy StrayhornB. StrayhornWritten-By145257Duke EllingtonD. EllingtonWritten-By164574Johnny MercerJ. MercerWritten-By34-1-25Caravan 145257Duke EllingtonD. EllingtonWritten-By307446Irving MillsI. MillsWritten-By307173Juan TizolJ. TizolWritten-By34-2-1Ouverture475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]510288Gérard DaguerreG. DaguerreWritten-By34-2-2Donna & Barbra475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]95544Ludwig van BeethovenBeethovenWritten-By34-2-3No More Tears (Enough Is Enough)475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]112558Bruce RobertsB. RobertsWritten-By110987Paul JabaraP. JabaraWritten-By34-2-4L'Amour C'Est Comme Une Cigarette475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1180422Freddie PalmerE. PalmerWritten-By429049Michel MalloryM. MalloryWritten-By34-2-5Quand Tu Veux475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]382706Hank DevitoH. de VitoWritten-By429049Michel MalloryM. MalloryWritten-By34-2-6Merveilleusement Désenchantée475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1027572Francis BassetF. BassetWritten-By279974Jacques DenjeanJ. DenjeanWritten-By34-2-7Mon Père475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1937807Marc BenoisM. BenoisWritten-By429049Michel MalloryM. MalloryWritten-By34-2-8Aimer475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-By34-2-9Tape Tape475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]293080Jerry RagovoyJ. RogovoyWritten-By429049Michel MalloryM. MalloryWritten-By76040Miriam MakebaM. MakebaWritten-By34-2-10Ça Va Mal475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]975170Björn Ulvaeus & Benny AnderssonB. Anderson - B. UlvaeusWritten-By429049Michel MalloryM. MalloryWritten-By34-2-11La Maritza475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-By34-2-12Nicolas475556Benoît KaufmanBenoît KaufmannArranged By510288Gérard DaguerreArranged By315793Hervé RoyHervé RoysArranged By1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By794664Máté PéterP. MateWritten-By1022315S. Nagy IstvánS. Nagy IstvanWritten-ByTitres Bonus:34-2-13I Feel The Magic / Fantasy45687Charlotte CaffeyC. CaffeyWritten-By619886Jack SegalJ. SegalWritten-By366290Jeff HarringtonJ. HarringtonWritten-By366291Jeff PennigJ. PennigWritten-By429049Michel MalloryM. MalloryWritten-By34-2-14Morning Train1180422Freddie PalmerF. PalmerWritten-By429049Michel MalloryM. MalloryWritten-By34-2-15Queen Of Hearts382706Hank DevitoH. de VitoWritten-By429049Michel MalloryM. MalloryWritten-By34-2-16Bi Coastal 79751David FosterD. FosterWritten-By349306Peter AllenP. AllenWritten-By268516Tom KeaneT. KeaneWritten-By34-2-17Toute Une Vie Passe380870Dario Baldan BemboD. Baldan BemboWritten-By374784Didier BarbelivienD. BarbelivienWritten-ByDe Choses Et D’Autres35-1Faire Quelque Chose = Eye Of The Tiger397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]284218Frankie SullivanF. SullivanWritten-By284217Jim PeterikJ. PeterikWritten-By429049Michel MalloryM. MalloryWritten-By35-2De Choses Et D'Autres397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]621302Jean-Michel BériatJ.M. BériatWritten-By427413Jean-Pierre GoussaudJ.P. GoussaudWritten-By587115Pierre DelanoëP. DelanoëWritten-By35-3Super Sylvie = They Got Nothin' On Him397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]366290Jeff HarringtonJ. HarringtonWritten-By366291Jeff PennigJ. PenningWritten-By429049Michel MalloryM. MalloryWritten-By35-4Ne Raccrochez Pas397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]435560Claude MainguyC. MainguyWritten-By35-5Le Mot De Passe397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By35-6Marathon Woman 397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1043664Guy MarcoG. MarcoWritten-By621302Jean-Michel BériatJ.M. BériatWritten-By587115Pierre DelanoëP. DelanoëWritten-By541368Serge PrissetS. PrissetWritten-By35-7Mañana-Tomorrow397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]621302Jean-Michel BériatJ.M. BériatWritten-By1644005Yaïr KlingerY. KlingerWritten-By35-8Trouver Un Alibi = Big O'Cloud A Dust397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer413086Roland GuillotelMixed By1406731Eddie VartanProducer [And Realization]2099640Georges TermeG. TermeWritten-By366290Jeff HarringtonJ. HarringtonWritten-By366291Jeff PennigJ. PennigWritten-By35-9Je Veux Aimer = Apam Hitte397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By413086Roland GuillotelMixed By1406731Eddie VartanProducer [And Realization]455008Gábor PresserG. PresserWritten-By621302Jean-Michel BériatJ.M. BériatWritten-By802137Zorán SztevanovityZ. SztevanovityWritten-By35-10La Sorite De Secours = I'm So Sorry397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer, Mixed By1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By309123Piet SouerP. SouerWritten-By35-11Surprise397264John D'AndreaJohn D’AndreaArranged By180713Tony PapaEngineer1406731Eddie VartanProducer [And Realization]2099640Georges TermeG. TermeWritten-By410032Michel CarreM. CarréWritten-ByTitres Bonus:35-12Sweet Talk347923Chuck SabatinoC. SabatinoWritten-By35-13U.C.L.A. 347923Chuck SabatinoC. SabatinoWritten-ByLive In Las Vegas36-1Présentation - Portrait Of A Legend397264John D'AndreaArranged By182929Gene KellyPresenter319808Tony ScottiProducerD. WeatlyWritten By397264John D'AndreaJ. D'AndreaWritten-By36-2Donna And Barbra 475556Benoît KaufmanArranged By319808Tony ScottiProducer95544Ludwig van BeethovenBeethovenWritten-By36-3Gloria397264John D'AndreaArranged By319808Tony ScottiProducer255164Giancarlo BigazziG. BigazziWritten-By263473Trevor VeitchT. VitchWritten-By176185Umberto TozziU. TozziWritten-By36-4L'Amour C'Est Comme Une Cigarette = Morning Train475556Benoît KaufmanArranged By319808Tony ScottiProducer1180422Freddie PalmerF. PalmerWritten-By429049Michel MalloryM. MalloryWritten-By36-5Merveilleusement Désenchantée475556Benoît KaufmanArranged By319808Tony ScottiProducer1027572Francis BassetF. BassetWritten-By279974Jacques DenjeanJ. DenjeanWritten-By36-6Bette Davis Eyes397264John D'AndreaArranged By319808Tony ScottiProducer524726Donna WeissD. WeissWritten-By310353Jackie DeShannonJ. De ShannonWritten-By36-7U.C.L.A.397264John D'AndreaArranged By319808Tony ScottiProducer347923Chuck SabatinoC. SabatinoWritten-BySmile Medley397264John D'AndreaArranged By319808Tony ScottiProducer36-8aSmile243896Charlie ChaplinC. ChaplinWritten-By696030John Turner (2)J. TurnerWritten-By696028Geoffrey ParsonsG. ParsonsWritten-By36-8bTomorrow794234Martin CharninM. CharninWritten-By689564Charles StrouseC. StrouseWritten-By36-8cIf You Go Away164263Jacques BrelJ. BrelWritten-By283844Rod McKuenR. Mc KuenWritten-By [Uncredited]36-8dFree Again437684Joss BaselliJ. BaselliWritten-By819519Armand CanforaA. CanforaWritten-By601673Michel JourdanM. JourdanWritten-By974537Robert Colby (2)R. ColbyWritten-By36-8eCan't Smile Without You739166Chris Arnold (2)C. ArnoldWritten-By745413David Martin (8)D. MartinWritten-By713001Geoff MorrowG. MorrowWritten-By36-9La Maritza475556Benoît KaufmanArranged By319808Tony ScottiProducer422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-ByTitres Bonus:36-10No More Tears 112558Bruce RobertsB. RobertsWritten-By110987Paul JabaraP. JabaraWritten-By36-11Le Temps Du Swing662752Gilles ThibautG. ThibautWritten-By813407Lou StonebridgeD. StonebridgeWritten-By831046Tom McGuinnessT. McGuinnessWritten-ByRock Medley36-12aRip It Up467532John MarascalcoS. MarascalcoWritten-By295203Robert BlackwellR. BlackwellWritten-By36-12bTrouble281667Leiber & StollerF. Lieiber / StollerWritten-By36-12cSummertime Blues139984Eddie CochranE. CochranWritten-By521601Jerry CapehartCapehartWritten-By36-12dWhole Lotta Shakin' Goin' On636119Dave Williams (7)D. WilliamsWritten-ByYè'-Yé' Medley36-13aLe Locomotion682663Goffin And KingG. Goffin - C. KingWritten-By593553Georges AberG. AberWritten-By36-13bIl Revient 815076Johnny MeeksJ. MeeksWritten-By1840287Johnny EarlJ. EarlWritten-By593553Georges AberG. AberWritten-By1406731Eddie VartanE. VartanWritten-By36-13cEn Écoutant La Pluie 603389John GummoeJ. CummoeWritten-By309200Richard Anthony (2)R. AnthonyWritten-By36-13dDansons620814Jim LeeJ. LeeWritten-By630053André SalvetA. SalvetWritten-By36-13eSi Je Chante488518Bill Anderson (2)B. AndersonWritten-By925622Jerry CrutchfieldJ. CrutchfieldWritten-By622972Vline BuggyV. BuggyWritten-By36-14Shake Your Tail Feather 1382699Denise LoveD. LoveWritten-By1382713Gerald "Fuzz" LoveG. LoveWritten-By1382705Peggy LoveP. LoveWritten-By386944Rudy LoveR. LoveWritten-By1382709Tyree JudieT. JudyWritten-By2429740Zebeded PhillipsZ. PhillipsWritten-BySylvie Vartan (Danse Ta Vie)37-1Dans Ta Vie = Flashdance... What A Feeling3:55397264John D'AndreaArranged By413086Roland GuillotelR. GuillotelMixed By319808Tony ScottiT. ScottiProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By4205Giorgio MoroderG. MoroderWritten-By89628Irene CaraI. CaraWritten-By53801Keith ForseyK. ForseyWritten-By429049Michel MalloryM. MalloryWritten-By37-2Tout Finit Par Le Soleil3:25315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By393032Claude MorganC. MorganWritten-By1027572Francis BassetF. BassetWritten-By37-3La Première Fois Qu'On S'Aimera 3:42399774Roger LoubetR. LoubetArranged By273983Bernard EstardyB. EstardyMixed By475255Jacques RevauxJ. RevauxProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By334509Michel SardouVocals475255Jacques RevauxJ. RevauxWritten-By334509Michel SardouM. SardouWritten-By587115Pierre DelanoëP. DelanoëWritten-By37-4Comme Le Lierre Avec Lui = Eyes Of Jenny4:16315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By1027572Francis BassetF. BassetWritten-By314047Hans VermeulenH. VermeulenWritten-By37-5Déprime = Sweet Dreams (Are Made Of This)3:34397264John D'AndreaArranged By413086Roland GuillotelR. GuillotelMixed By319808Tony ScottiT. ScottiProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By23825Annie LennoxA. LennoxWritten-By72308David A. StewartD. StewartWritten-By429049Michel MalloryM. MalloryWritten-By37-6Lucie3:45315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By37-7Disparue = Varj Mig Felkel Majd Anap3:48315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By1447178Demjén FerencF. DemjemWritten-By1728966Lerch IstvánI. LerchWritten-By429049Michel MalloryM. MalloryWritten-By37-8Novembre À La Rochelle2:58315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By429049Michel MalloryM. MalloryWritten-By37-9Comme Une Goutte D'Eau2:47315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By531975Aldo FrankA. FrankWritten-By1132278Jean-Pierre StoraJ.P. StoraWritten-By429049Michel MalloryM. MalloryWritten-By37-10Les Balkans Et La Provence4:06315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By334509Michel SardouVocals1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By37-11Ta Vie De Chien = Akujo3:41315793Hervé RoyH. RoyArranged By413086Roland GuillotelR. GuillotelMixed By1406731Eddie VartanE. VartanProducer413086Roland GuillotelRecorded By180713Tony PapaRecorded By1027572Francis BassetF. BassetWritten-By1082785Miyuki NakajimaM. NakajimaWritten-ByTitres Bonus:37-12L'Atlantique334509Michel SardouVocals475255Jacques RevauxJ. RevauxWritten-By334509Michel SardouM. SardouWritten-By587115Pierre DelanoëP. DelanoëWritten-By399774Roger LoubetR. LoubetWritten-By37-13Encore1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-By37-14Le Dimanche1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-BySylvie (Au Palais Des Congrès)38-1Danse Ta Vie510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]4205Giorgio MoroderG. MoroderWritten-By89628Irene CaraI. CaraWritten-By53801Keith ForseyK. ForseyWritten-By429049Michel MalloryM. MalloryWritten-By38-2L'Amour C'Est Comme Une Cigarette510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]1180422Freddie PalmerF. PalmerWritten-By429049Michel MalloryM. MalloryWritten-By38-3Le Mot De Passe510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By38-4Déprime510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]23825Annie LennoxA. LennoxWritten-By72308David A. StewartD. StewartWritten-By429049Michel MalloryM. MalloryWritten-By38-5Novembre À La Rochelle510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By38-6Mon Père510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]1126545Marc BenoitM. BenoitWritten-By429049Michel MalloryM. MalloryWritten-By38-7Mañana-Tomorrow510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]621302Jean-Michel BériatJ.M. BériatWritten-By1644005Yaïr KlingerY. KlingerWritten-By38-8Zoot Suit - Latino510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]355Unknown ArtistWritten-By38-9Raining Man510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]110987Paul JabaraP. JabaraWritten-By328195Paul ShafferP. ShafferWritten-By38-10Nicolas510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By794664Máté PéterP. MateWritten-By1022315S. Nagy IstvánS. Nagy IstvanWritten-By38-11Dialogue413086Roland GuillotelEngineer475516Jackie SardouPerformer334509Michel SardouPerformer282391Sylvie VartanPerformer1406731Eddie VartanProducer [And Realization]38-12La Première Fois510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]475255Jacques RevauxJ. RevauxWritten-By334509Michel SardouM. SardouWritten-By587115Pierre DelanoëP. DelanoëWritten-By38-13Le Dimanche510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-By38-14Lucie510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By429049Michel MalloryM. MalloryWritten-By38-15Aimer510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-By38-16Les Beaux Moments510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]G. HermanWritten By38-17Ne Me Quitte Pas510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]164263Jacques BrelJ. BrelWritten-By38-18Non C'Est Rien510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]819519Armand CanforaA. CanforaWritten-By437684Joss BaselliJ. BaselliWritten-By601673Michel JourdanM. JourdanWritten-By38-19Encore510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By629700Jean-Loup DabadieJ.L. DabadieWritten-By38-20La Maritza510288Gérard DaguerreArranged By397264John D'AndreaArranged By413086Roland GuillotelEngineer1406731Eddie VartanProducer [And Realization]422189Jean RenardJ. RenardWritten-By587115Pierre DelanoëP. DelanoëWritten-ByDes Heures De Désir39-1Des Heures De Désir = Wrap Your Arms Around Me315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetF. BassetWritten-By267225Holly KnightH. KnightWritten-By74105Mike ChapmanM. ChapmanWritten-By39-2Hold Up Au Sentiment315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetF. BassetWritten-By236705Franck LangolffF. LangolffWritten-By39-3Définitivement315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetF. BassetWritten-By236705Franck LangolffF. LangolffWritten-By39-4Déclare L'Amour Comme La Guerre = Time Goes By315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1248614Emőke A. ZákányiE. ZakanyiWritten-By1027572Francis BassetF. BassetWritten-By1706147Hatvani EmeseE. HatvaniWritten-By1706148Jakab GyörgyJ. JakabWritten-By1706145Pásztor LászlóL. PasztorWritten-By39-5Love Again252391John DenverVocals252391John DenverJ. DenverWritten-By39-6Les Années Passent315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetF. BassetWritten-By236705Franck LangolffF. LangolffWritten-By39-7Promène-Moi315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]236705Franck LangolffF. LangolffWritten-By5788628Philippe MalaterreP. MalaterreWritten-By39-8Le Rêve Américain315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]393032Claude MorganC. MorganWritten-By1027572Francis BassetF. BassetWritten-By39-9En Direct315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]16127CerroneJ.M. CerroneWritten-By376558Christian GaubertC. GaubertWritten-By1027572Francis BassetF. BassetWritten-By425857Jimme O'NeillJ. O'NeillWritten-By39-10Impressionne-Moi = Let Me Show You How315793Hervé RoyHerve RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetF. BassetWritten-By342740Nicky ChinnN. ChinnWritten-By141047Paul GurvitzP. GurvitzWritten-ByTitre Bonus:39-11Des Heures De Désir 1027572Francis BassetF. BassetWritten-By267225Holly KnightH. KnightWritten-By74105Mike ChapmanM. ChapmanWritten-ByMade In U.S.A.40-1Double Exposure3:39397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar421717David HallydayGuitar [Guest Guitarist]222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By622341Gloria SklerovG. SklerovWritten-By420553Lenny MacalusoL. MacalusoWritten-By756893Susan PomerantzS. PomerantzWritten-By40-2One Shot Lover3:57397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By402863Andy FreeA. FreeWritten-By455878Marc MalysterM. MalysterWritten-By40-3If You Walk Away3:44397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By1055018Skip AdamsS. AdamsWritten-By586595Todd CerneyT. CerneyWritten-By40-4Let Me Show You How3:33397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By342740Nicky ChinnN. ChinnWritten-By141047Paul GurvitzP. GurvitzWritten-By40-5I Saw Mary3:29397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred alwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By3277120Gary Simmons (3)G. SimmonsWritten-By1160459Lisa RaggioL. RaggioWritten-By40-6Out Of Control3:38397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By420553Lenny MacalusoL. MacalusoWritten-By1055018Skip AdamsS. AdamsWritten-By40-7Wrap Your Arms Around Me3:56397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By267225Holly KnightH. KnightWritten-By74105Mike ChapmanM. ChapmanWritten-By40-8Running Scared4:26397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar421717David HallydayGuitar [Guest Guitarist]222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By951173George Michael ElianG.M. ElianWritten-By2145298Janis K. TunnellJ. TunnellWritten-By498178Richard AshR. AshWritten-By40-9Heard It In A Heartbeat4:07397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By2875679Kathleen Ann ParkerK.A. ParkerWritten-By103451Michael JayM. JayWritten-By40-10Shooting Star3:48397264John D'AndreaArranged By [Strings And Horns]527166Andrea RobinsonBacking Vocals [Background Singers]501175Beth AndersenBeth AndersonBacking Vocals [Background Singers]569418Donna FeinBacking Vocals [Background Singers]341048Gary FalconeBacking Vocals [Background Singers]560907Jill ColucciJil ColuciBacking Vocals [Background Singers]285049Joe PizzuloBacking Vocals [Background Singers]395053Linda LawleyBacking Vocals [Background Singers]151379Tommy FaragherBacking Vocals [Background Singers]3278821David GaragherBass240349Kenny AaronsonBass965556Freddy AlwagFred AlwagDrum Programming427336George PerilliDrums, Percussion183908Tom WalshDrums, Percussion406409Jamey DellEngineer180713Tony PapaEngineer, Mixed By1031883Joey BraslerGuitar2647442Troy DexterGuitar421717David HallydayGuitar [Guest Guitarist]222145Kim BullardKeyboards117689Claude GaudetteKeyboards, Drum Programming, Synthesizer, Arranged By180712Richie WiseProducer, Engineer, Mixed By, Drum Programming, Arranged By622341Gloria SklerovG. SklerovWritten-By420553Lenny MacalusoL. MacalusoWritten-By756893Susan PomerantzS. PomerantzWritten-ByTitres Bonus:40-11Running Scared 951173George Michael ElianG.M. ElianWritten-By2145298Janis K. TunnellJ. TunnellWritten-By498178Richard AshR. AshWritten-By40-12Heard It In A Heartbeat 2875679Kathleen Ann ParkerK.A. ParkerWritten-By103451Michael JayM. JayWritten-By40-13She Can Dance 421717David HallydayD. HallydayWritten-By633303Lisa Catherine CohenL.C. CohenWritten-ByVirage41-1Rien À Faire3:37315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetFr. BassetWritten-By236705Franck LangolffFr. LangolffWritten-By41-2J'En Ai Tellement Rêvé4:07399774Roger LoubetArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]2099640Georges TermeG. TermeWritten-By2789177Louis SouchetL. SouchetWritten-By41-3Version Originale3:35315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By41-4Virage4:11315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]421717David HallydayD. HallydayWritten-By429049Michel MalloryM. MalloryWritten-By41-5Je Tombe Amoureuse4:46315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetFr. BassetWritten-By236705Franck LangolffFr. LangolffWritten-By41-6Tu N'As Rien Compris = Talk To Me4:30315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By943453Stanford (3)Written-By41-7Avant4:52399774Roger LoubetArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1406731Eddie VartanE. VartanWritten-By1027572Francis BassetFr. BassetWritten-By41-8Tout A Été Dit4:42315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]S. LevyWritten By1406731Eddie VartanE. VartanWritten-By41-9En 423:08315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]429049Michel MalloryM. MalloryWritten-By41-10Jamais De Ta Vie3:21315793Hervé RoyArranged By413086Roland GuillotelEngineer, Mixed By1406731Eddie VartanProducer [And Realization]1027572Francis BassetFr. BassetWritten-By236705Franck LangolffFr. LangolffWritten-ByTitres Bonus:41-11L'Amour Ou Rien = If You Walk Away429049Michel MalloryM. MalloryWritten-By1055018Skip AdamsS. AdamsWritten-By586595Todd CerneyT. CerneyWritten-By41-12La Petite Valse 1027572Francis BassetF. BassetWritten-By236705Franck LangolffF. LangolffWritten-By41-13Je T'Aime 355Unknown ArtistWritten-By41-14Je Rêve 429049Michel MalloryM. MalloryWritten-By41-15Les Enfants Du Rock'n'Roll 429049Michel MalloryM. MalloryWritten-By281875Sony Music Entertainment (France) S.A.6Licensed From617349BMG Rights Management (France)6Licensed From102090INA6Licensed From189014Culture Factory37Produced For189014Culture Factory13Phonographic Copyright (p)102090INA13Phonographic Copyright (p)189014Culture Factory14Copyright (c)291001Allo Music21Published By243572April Music21Published By316785Art Music France21Published By356035Éditions Bagatelle21Published By58356Chappell21Published By264362Chrysalis Music Ltd.21Published By533052Conrad21Published By847610Editions Musicales Alain Boublil21Published By829998Editions Claude Pascal21Published By789684Editions Intersong Paris21Published By286855Editions Marouani21Published By948654Editions Panache21Published By344907Éditions Tutti21Published By63796Essex21Published By266226Francis Day21Published By732243Grizzly Video Music21Published By264447Intersong21Published By1079773Isabelle music21Published By605268Jare21Published By1478420K.J.C.D. Music21Published By430311L.E.M.21Published By99883Marcy Music21Published By836439Martin Coulter21Published By1047850N.E.E.B.21Published By82793Pathé Marconi21Published By895RCA21Published By382119Spanka Music21Published By21677Sugar Music21Published By139139Suzelle21Published By430308Tanday Music21Published By436936Unichappell21Published By25946Warner Bros.21Published By41321Warner Bros. Music21Published By264340Manor Mobile39Recorded By116077Devonshire Studios23Recorded At278648Palais Des Congrès23Recorded At314152Palais Des Sports, Paris23Recorded At288615RCA Studio A23Recorded At343911RCA Victor Studios, Nashville23Recorded At292324Santa Monica Sound Recorders23Recorded At269411Studio 9223Recorded At293615Studio De La Grande Armée23Recorded At284806Studio Du Palais Des Congrès23Recorded At267660Studio Guillaume Tell23Recorded At292324Santa Monica Sound Recorders27Mixed At269411Studio 9227Mixed At267660Studio Guillaume Tell27Mixed At284806Studio Du Palais Des Congrès27Mixed At309375Magic Studio29Mastered At + +95544Ludwig van BeethovenBeethoven: Complete EditionCompilationClassicalNetherlands2013Needs Vote3319987CD 1: Symphonies 1 & 31Symphony No. 1 In C Major, Op. 21: I. Adagio Molto – Allegro Con Brio9:03578737Staatskapelle Dresden,508213Herbert Blomstedt2Symphony No. 1 In C Major, Op. 21: II. Andante Cantabile Con Moto8:32578737Staatskapelle Dresden,508213Herbert Blomstedt3Symphony No. 1 In C Major, Op. 21: III. Menuetto & Trio: Allegro Molto E Vivace3:26578737Staatskapelle Dresden,508213Herbert Blomstedt4Symphony No. 1 in C Major, Op. 21: IV. Finale: Adagio – Allegro molto e vivace6:09578737Staatskapelle Dresden,508213Herbert Blomstedt5Symphony No. 3 In E-Flat Major, Op. 55 ‘Eroica’: I. Allegro Con Brio15:02578737Staatskapelle Dresden,508213Herbert Blomstedt6Symphony No. 3 In E-Flat Major, Op. 55 ‘Eroica’: II. Marcia Funebre: Adagio Assai16:47578737Staatskapelle Dresden,508213Herbert Blomstedt7Symphony No. 3 In E-Flat Major, Op. 55 ‘Eroica’: III. Scherzo & Trio: Allegro Vivace5:49578737Staatskapelle Dresden,508213Herbert Blomstedt8Symphony No. 3 in E-Flat Major, Op. 55 ‘Eroica’: IV. Allegro molto – Poco andante – Presto11:49578737Staatskapelle Dresden,508213Herbert BlomstedtCD 2: Symphonies 2 & 41Symphony No. 2 In D Major, Op. 36: I. Adagio Molto – Allegro Con Brio13:05578737Staatskapelle Dresden,508213Herbert Blomstedt2Symphony No. 2 In D Major, Op. 36: II. Larghetto12:33578737Staatskapelle Dresden,508213Herbert Blomstedt3Symphony No. 2 In D Major, Op. 36: III. Scherzo & Trio: Allegro4:06578737Staatskapelle Dresden,508213Herbert Blomstedt4Symphony No. 2 In D Major, Op. 36: IV. Allegro Molto6:43578737Staatskapelle Dresden,508213Herbert Blomstedt5Symphony No. 4 In B-Flat, Op. 60: I. Adagio – Allegro Vivace12:09578737Staatskapelle Dresden,508213Herbert Blomstedt6Symphony No. 4 In B-Flat, Op. 60: II. Adagio10:31578737Staatskapelle Dresden,508213Herbert Blomstedt7Symphony No. 4 in B-Flat, Op. 60: III. Menuetto. Allegro vivace – Trio. Un poco meno allegro5:50578737Staatskapelle Dresden,508213Herbert Blomstedt8Symphony No. 4 In B-Flat, Op. 60: IV. Allegro Ma Non Troppo7:10578737Staatskapelle Dresden,508213Herbert BlomstedtCD 3: Symphonies 5 & 61Symphony No. 5 In C Minor, Op. 67: I. Allegro Con Brio8:05578737Staatskapelle Dresden,508213Herbert Blomstedt2Symphony No. 5 In C Minor, Op. 67: II. Andante Con Moto11:21578737Staatskapelle Dresden,508213Herbert Blomstedt3Symphony No. 5 In C Minor, Op. 67: III. Allegro8:53578737Staatskapelle Dresden,508213Herbert Blomstedt4Symphony No. 5 In C Minor, Op. 67: IV. Allegro – Presto8:52578737Staatskapelle Dresden,508213Herbert Blomstedt5Symphony No. 6 in F Major, Op. 68 ‘Pastoral’: I. Allegro ma non troppo (Erwachen heiterer Empfindungen bei der Ankunft auf dem Lande)9:31578737Staatskapelle Dresden,508213Herbert Blomstedt6Symphony No. 6 in F Major, Op. 68 ‘Pastoral’: II. Andante molto mosso (Szene am Bach)12:40578737Staatskapelle Dresden,508213Herbert Blomstedt7Symphony No. 6 in F Major, Op. 68 ‘Pastoral’: III. Allegro – Sempre più stretto – In tempo d’allegro – Tempo I – Presto (Lustiges Zusammensein der Landleute)5:44578737Staatskapelle Dresden,508213Herbert Blomstedt8Symphony No. 6 in F Major, Op. 68 ‘Pastoral’: IV. Allegro (Gewitter, Sturm)3:42578737Staatskapelle Dresden,508213Herbert Blomstedt9Symphony No. 6 in F Major, Op. 68 ‘Pastoral’: V. Allegretto (Hirtengesang, frohe und dankbare Gefühle nach dem Sturm)9:51578737Staatskapelle Dresden,508213Herbert BlomstedtCD 4: Symphonies 7 & 81Symphony No. 7 In A Major, Op. 92: I. Poco Sostenuto – Vivace13:31578737Staatskapelle Dresden,508213Herbert Blomstedt2Symphony No. 7 In A Major, Op. 92: II. Allegretto9:57578737Staatskapelle Dresden,508213Herbert Blomstedt3Symphony No. 7 In A Major, Op. 92: III. Presto – Assai Meno Presto9:45578737Staatskapelle Dresden,508213Herbert Blomstedt4Symphony No. 7 In A Major, Op. 92: IV. Allegro Con Brio9:03578737Staatskapelle Dresden,508213Herbert Blomstedt5Symphony No. 8 In F Major, Op. 93: I. Allegro Vivace E Con Brio10:02578737Staatskapelle Dresden,508213Herbert Blomstedt6Symphony No. 8 In F Major, Op. 93: II. Allegretto Scherzando3:56578737Staatskapelle Dresden,508213Herbert Blomstedt7Symphony No. 8 In F Major, Op. 93: III. Tempo di Menuetto4:47578737Staatskapelle Dresden,508213Herbert Blomstedt8Symphony No. 8 In F Major, Op. 93: IV. Allegro Vivace7:50578737Staatskapelle Dresden,508213Herbert BlomstedtCD 5: Symphony No. 9 ‘Choral’1Symphony No. 9 In D Minor, Op. 125 ‘Choral’: I. Allegro Ma Non Troppo, Un Poco Maestoso16:551946076Helena Döse, Soprano.1553426Marga Schiml, Mezzo-soprano.446577Peter Schreier, Tenor.526411Theo Adam, Bass. 455839Rundfunkchor Leipzig,837495Chor der Staatsoper Dresden,578737Staatskapelle Dresden,508213Herbert Blomstedt2Symphony No. 9 In D Minor, Op. 125 ‘Choral’: II. Molto Vivace – Presto13:481946076Helena Döse, Soprano. 1553426Marga Schiml, Mezzo-Soprano.446577Peter Schreier, Tenor.526411Theo Adam, Bass.455839Rundfunkchor Leipzig,837495Chor der Staatsoper Dresden,578737Staatskapelle Dresden,508213Herbert Blomstedt3Symphony No. 9 In D Minor, Op. 125 ‘Choral’: III. Adagio Molto E Cantabile – Andante Moderato – Tempo I – Andante Moderato – Adagio – Lo Stesso Tempo16:241946076Helena Döse, Soprano.1553426Marga Schiml, Mezzo-soprano.446577Peter Schreier, Tenor.526411Theo Adam, Bass.455839Rundfunkchor Leipzig,837495Chor der Staatsoper Dresden,508213Herbert Blomstedt4Symphony No. 9 In D Minor, Op. 125 ‘Choral’: IV. Presto – Allegro Assai – Presto – Recitativo – Allegro Assai – Allegro Assai Vivace (alla Marcia) – Andante Maestoso – Adagio Ma Non Troppo Ma Divoto – Allegro Energico E Sempre Ben Marcato – Allegro Ma Non Tanto – Presto – Maestoso – Prestissimo25:091946076Helena Döse, Soprano.1553426Marga Schiml, Mezzo-soprano.446577Peter Schreier, Tenor.526411Theo Adam, Bass.455839Rundfunkchor Leipzig,837495Chor der Staatsoper Dresden,508213Herbert BlomstedtCD 6: Piano Concertos 1 & 21Piano Concerto No. 1 In C Major, Op. 15: I. Allegro Con Brio18:031032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman2Piano Concerto No. 1 In C Major, Op. 15: II. Largo10:361032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman3Piano Concerto No. 1 In C Major, Op. 15: III. Rondo. Allegro Scherzando8:481032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman4Piano Concerto No. 2 In B-Flat Major, Op. 19: I. Allegro Con Brio14:101032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman5Piano Concerto No. 2 In B-Flat Major, Op. 19: II. Adagio8:481032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman6Piano Concerto No. 2 In B-Flat Major, Op. 19: III. Rondo: Molto Allegro6:091032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David ZinmanCD 7: Piano Concertos 3 & 51Piano Concerto No. 3 In C Minor, Op. 37: I. Allegro Con Brio15:551032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman2Piano Concerto No. 3 In C Minor, Op. 37: II. Largo9:091032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman3Piano Concerto No. 3 In C Minor, Op. 37: III. Rondo. Allegro8:591032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman4Piano Concerto No. 5 In E-Flat Major, Op. 73 ‘Emperor’: I. Allegro19:371032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman5Piano Concerto No. 5 In E-Flat Major, Op. 73 ‘Emperor’: II. Adagio Un Poco Mosso7:281032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman6Piano Concerto No. 5 In E-Flat Major, Op. 73 ‘Emperor’: III. Rondo: Allegro10:261032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David ZinmanCD 8: Piano Concertos No. 4 & Op. 611Piano Concerto No. 4 In G Major, Op. 58: I. Allegro Moderato18:201032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman2Piano Concerto No. 4 In G Major, Op. 58: II. Andante Con Moto4:241032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman3Piano Concerto No. 4 In G Major, Op. 58: III. Rondo. Vivace9:511032227Yefim Bronfman, Piano.8551878Tonhalle-Orchester Zürich,576026David Zinman4Piano Concerto In D Major, Op. 61: I. Allegro Ma Non Troppo25:20931382Shoko Sugitani, Piano.459673Berliner Symphoniker,931379Gerard Oskamp5Piano Concerto In D Major, Op. 61: II. Larghetto10:58931382Shoko Sugitani, Piano.459673Berliner Symphoniker,931379Gerard Oskamp6Piano Concerto In D Major, Op. 61: III. Rondo. Allegro11:18931382Shoko Sugitani,459673Berliner Symphoniker,931379Gerard OskampCD 9: Violin Concerto - Romances For Violin And Orchestra1Violin Concerto In D Major, Op. 61: I. Allegro Non Troppo22:46960934Christian Tetzlaff, Violin.8551878Tonhalle-Orchester Zürich,576026David Zinman2Violin Concerto In D Major, Op. 61: II. Larghetto8:52960934Christian Tetzlaff, Violin.8551878Tonhalle-Orchester Zürich,576026David Zinman3Violin Concerto In D Major, Op. 61: III. Rondo9:09960934Christian Tetzlaff, Violin.8551878Tonhalle-Orchester Zürich,576026David Zinman4Romance No. 1 In G Major, Op. 40: Adagio – Allegro Con Brio6:21960934Christian Tetzlaff, Violin.8551878Tonhalle-Orchester Zürich,576026David Zinman5Romance No. 2 In F Major, Op. 50: Adagio Cantabile8:18960934Christian Tetzlaff, Violin.8551878Tonhalle-Orchester Zürich,576026David ZinmanCD 10: Triple Concerto - Piano Concerto WoO4 - Rondo WoO61Triple Concerto In C Major, Op. 56: I. Allegro17:021032227Yefim Bronfman, Piano.1353073Gil Shaham, Violin.874501Truls Mørk, Cello.8551878Tonhalle-Orchester Zürich,576026David Zinman2Triple Concerto In C Major, Op. 56: II. Largo4:341032227Yefim Bronfman, Piano.1353073Gil Shaham, Violin.874501Truls Mørk, Cello.8551878Tonhalle-Orchester Zürich,576026David Zinman3Triple Concerto In C Major, Op. 56: III. Rondo Alla Polacca13:011032227Yefim Bronfman, Piano.1353073Gil Shaham, Violin.874501Truls Mørk, Cello.8551878Tonhalle-Orchester Zürich,576026David Zinman4Piano Concerto in E-Flat, WoO 4: I. Allegro moderato11:22861270Martin Galling, Piano.459673Berliner Symphoniker,1005207Carl-August Bünte5Piano Concerto in E-Flat, WoO 4: II. Larghetto10:18861270Martin Galling, Piano.459673Berliner Symphoniker,1005207Carl-August Bünte6Piano Concerto in E-Flat, WoO 4: III. Rondo: Allegretto9:26861270Martin Galling, Piano.459673Berliner Symphoniker,1005207Carl-August Bünte7Rondo in B-Flat Major for Piano and Orchestra, WoO 69:34832899Walter Klien, Piano.834226Saint Louis Symphony Orchestra,978333Jerzy SemkowCD 11: Overtures - Die Weihe Des Hauses (Exerpts)1Leonore: Overture No. 1 Op. 1389:46973130Minnesota Orchestra,762355Stanislaw Skrowaczewski2Leonore: Overture No. 2 Op. 7214:27973130Minnesota Orchestra,762355Stanislaw Skrowaczewski3Leonore: Overture No. 3 Op. 72a14:23973130Minnesota Orchestra,762355Stanislaw Skrowaczewski4Fidelio: Overture, Op. 72b6:54973130Minnesota Orchestra,762355Stanislaw Skrowaczewski5Leonore Prohaska, WoO 96: Funeral March4:53973130Minnesota Orchestra,762355Stanislaw Skrowaczewski6Die Weihe Des Hauses: Overture, Op. 12410:26973130Minnesota Orchestra,762355Stanislaw Skrowaczewski7Die Weihe Des Hauses: Chorus With Soprano Solo “Wo Sich Die Pulse”, WoO 987:06966368Phyllis Bryn-Julson, Soprano.2035815Bach Society Of Minnesota,2035816David LabergeCD 12: Orchestral Works - Organ Works1Coriolan Overture, Op.628:27973130Minnesota Orchestra,762355Stanislaw Skrowaczewski2Namensfeier Overture, Op. 1156:52973130Minnesota Orchestra,762355Stanislaw Skrowaczewski3Gratulationsmenuett, WoO 33:55973130Minnesota Orchestra,762355Stanislaw Skrowaczewski4Triumphal March From Tarpeja, WoO 22:36973130Minnesota Orchestra,762355Stanislaw Skrowaczewski5Fugue in D Major, WoO 312:02949175Christian Schmitt (2)65 Stücke für Flötenuhr, WoO 33: Allegro non più molto6:52949175Christian Schmitt (2)75 Stücke für Flötenuhr, WoO 33: Allegretto4:24949175Christian Schmitt (2)85 Stücke für Flötenuhr, WoO 33: Adagio assai6:28949175Christian Schmitt (2)95 Stücke für Flötenuhr, WoO 33: Scherzo. Allegro2:00949175Christian Schmitt (2)105 Stücke für Flötenuhr, WoO 33: Allegro2:23949175Christian Schmitt (2)115 Stücke für Flötenuhr, WoO 33: Grenadiermarsch, Hess 1074:50949175Christian Schmitt (2)12Wellington’s Victory Or The Battle Of Vittoria, Op. 91: British Entrance1:20212726London Symphony Orchestra,880957Rafael Frühbeck De Burgos13Wellington’s Victory Or The Battle Of Vittoria, Op. 91: French Entrance1:22212726London Symphony Orchestra,880957Rafael Frühbeck De Burgos14Wellington’s Victory Or The Battle Of Vittoria, Op. 91: Battle. Allegro2:29212726London Symphony Orchestra,880957Rafael Frühbeck De Burgos15Wellington’s Victory Or The Battle Of Vittoria, Op. 91: March. Allegro Assai3:10212726London Symphony Orchestra,880957Rafael Frühbeck De Burgos16Wellington’s Victory Or The Battle Of Vittoria, Op. 91: Victory. Allegro Con Brio7:26212726London Symphony Orchestra,880957Rafael Frühbeck De BurgosCD 13: Dances I112 Contretänze for Small Orchestra, WoO 14: Dance No. 1 in C Major0:35838040Kammerorchester Berlin,624749Helmut Koch212 Contretänze for Small Orchestra, WoO 14: Dance No. 2 in A Major0:35838040Kammerorchester Berlin,624749Helmut Koch312 Contretänze for Small Orchestra, WoO 14: Dance No. 3 in D Major1:06838040Kammerorchester Berlin,624749Helmut Koch412 Contretänze for Small Orchestra, WoO 14: Dance No. 4 in B-Flat Major0:34838040Kammerorchester Berlin,624749Helmut Koch512 Contretänze for Small Orchestra, WoO 14: Dance No. 5 in E-Flat Major1:11838040Kammerorchester Berlin,624749Helmut Koch612 Contretänze for Small Orchestra, WoO 14: Dance No. 6 in C Major1:28838040Kammerorchester Berlin,624749Helmut Koch712 Contretänze for Small Orchestra, WoO 14: Dance No. 7 in E-Flat Major0:42838040Kammerorchester Berlin,624749Helmut Koch812 Contretänze for Small Orchestra, WoO 14: Dance No. 8 in C Major0:35838040Kammerorchester Berlin,624749Helmut Koch912 Contretänze for Small Orchestra, WoO 14: Dance No. 9 in A Major0:36838040Kammerorchester Berlin,624749Helmut Koch1012 Contretänze for Small Orchestra, WoO 14: Dance No. 10 in C Major1:13838040Kammerorchester Berlin,624749Helmut Koch1112 Contretänze for Small Orchestra, WoO 14: Dance No. 11 in G Major0:35838040Kammerorchester Berlin,624749Helmut Koch1212 Contretänze for Small Orchestra, WoO 14: Dance No. 12 in E-Flat Major1:49838040Kammerorchester Berlin,624749Helmut Koch136 Minuets for Two Violins and Cello, WoO 9: Minuet No. 1 in E-Flat Major2:19941942Karl Suske, Violin I.941941Klaus Peters, Violin II.1097302Matthias Pfaender, Cello.838040Kammerorchester Berlin,624749Helmut Koch146 Minuets for Two Violins and Cello, WoO 9: Minuet No. 2 in G Major2:20941942Karl Suske, Violin I.941941Klaus Peters, Violin II.1097302Matthias Pfaender, Cello.838040Kammerorchester Berlin,624749Helmut Koch156 Minuets for Two Violins and Cello, WoO 9: Minuet No. 3 in C Major2:22941942Karl Suske, Violin I.941941Klaus Peters, Violin II.1097302Matthias Pfaender, Cello.838040Kammerorchester Berlin,624749Helmut Koch166 Minuets for Two Violins and Cello, WoO 9: Minuet No. 4 in F Major2:08941942Karl Suske, Violin I.941941Klaus Peters, Violin II.1097302Matthias Pfaender, Cello.838040Kammerorchester Berlin,624749Helmut Koch176 Minuets for Two Violins and Cello, WoO 9: Minuet No. 5 in D Major1:51941942Karl Suske, Violin I.941941Klaus Peters, Violin II.1097302Matthias Pfaender, Cello.838040Kammerorchester Berlin,624749Helmut Koch186 Minuets for Two Violins and Cello, WoO 9: Minuet No. 6 in G Major2:3941942Karl Suske, Violin I.941941Klaus Peters, Violin II.1097302Matthias Pfaender, Cello.838040Kammerorchester Berlin,624749Helmut Koch1911 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 1, Waltz In E-Flat Major1:04838040Kammerorchester Berlin,624749Helmut Koch2011 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 2, Minuet In B-Flat Major2:13838040Kammerorchester Berlin,624749Helmut Koch2111 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 3, Waltz In B-Flat Major1:12838040Kammerorchester Berlin,624749Helmut Koch2211 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 4, Minuet In E-Flat Major2:28838040Kammerorchester Berlin,624749Helmut Koch2311 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 5, Minuet In E-Flat Major2:21838040Kammerorchester Berlin,624749Helmut Koch2411 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 6, Ländler In E-Flat Major1:21838040Kammerorchester Berlin,624749Helmut Koch2511 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 7, Minuet In B-Flat Major2:13838040Kammerorchester Berlin,624749Helmut Koch2611 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 8, Ländler In B-Flat Major1:15838040Kammerorchester Berlin,624749Helmut Koch2711 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 9, Minuet In G Major2:24838040Kammerorchester Berlin,624749Helmut Koch2811 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 10, Waltz In D Major1:15838040Kammerorchester Berlin,624749Helmut Koch2911 Dances ‘Mödlinger Tänze’ For Seven String And Wind Instruments, WoO 17, No. 11, Waltz In D Major1:18838040Kammerorchester Berlin,624749Helmut Koch306 Ländlerische Tänze For Two Violins And Double Bass, WoO 15, Dance No. 1 In D Major0:48838040Kammerorchester Berlin,624749Helmut Koch316 Ländlerische Tänze For Two Violins And Double Bass, WoO 15, Dance No. 2 In D Major0:50838040Kammerorchester Berlin,624749Helmut Koch326 Ländlerische Tänze For Two Violins And Double Bass, WoO 15, Dance No. 3 In D Major0:49838040Kammerorchester Berlin,624749Helmut Koch336 Ländlerische Tänze For Two Violins And Double Bass, WoO 15, Dance No. 4 In D Minor0:56838040Kammerorchester Berlin,624749Helmut Koch346 Ländlerische Tänze For Two Violins And Double Bass, WoO 15, Dance No. 5 In D Major0:49838040Kammerorchester Berlin,624749Helmut Koch356 Ländlerische Tänze For Two Violins And Double Bass, WoO 15, Dance No. 6 In D Major1:57838040Kammerorchester Berlin,624749Helmut Koch3612 German Dances For Orchestra, Wo0 8, Dance No. 1 In C Major0:33838040Kammerorchester Berlin,624749Helmut Koch3712 German Dances For Orchestra, Wo0 8, Dance No. 2 In A Major1:27838040Kammerorchester Berlin,624749Helmut Koch3812 German Dances For Orchestra, Wo0 8, Dance No. 3 In F Major1:29838040Kammerorchester Berlin,624749Helmut Koch3912 German Dances For Orchestra, Wo0 8, Dance No. 4 In B-Flat Major1:50838040Kammerorchester Berlin,624749Helmut Koch4012 German Dances For Orchestra, Wo0 8, Dance No. 5 In E-Flat Major1:54838040Kammerorchester Berlin,624749Helmut Koch4112 German Dances For Orchestra, Wo0 8, Dance No. 6 In G Major1:56838040Kammerorchester Berlin,624749Helmut Koch4212 German Dances For Orchestra, Wo0 8, Dance No. 7 In C Major1:25838040Kammerorchester Berlin,624749Helmut Koch4312 German Dances For Orchestra, Wo0 8, Dance No. 8 In A Major1:22838040Kammerorchester Berlin,624749Helmut Koch4412 German Dances For Orchestra, Wo0 8, Dance No. 9 In F Major1:40838040Kammerorchester Berlin,624749Helmut Koch4512 German Dances For Orchestra, Wo0 8, Dance No. 10 In D Major1:19838040Kammerorchester Berlin,624749Helmut Koch4612 German Dances For Orchestra, Wo0 8, Dance No. 11 In G Major1:16838040Kammerorchester Berlin,624749Helmut Koch4712 German Dances For Orchestra, Wo0 8, Dance No. 12 In C Major3:25838040Kammerorchester Berlin,624749Helmut KochCD 14: Dances II112 Menuets, WoO 7, Menuet in D Major2:11911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel212 Menuets, WoO 7, Menuet in B-Flat Major2:17911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel312 Menuets, WoO 7, Menuet in G Major2:02911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel412 Menuets, WoO 7, Menuet in E-Flat Major2:16911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel512 Menuets, WoO 7, Menuet in C Major2:08911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel612 Menuets, WoO 7, Menuet in A Major2:10911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel712 Menuets, WoO 7, Menuet in D Major2:10911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel812 Menuets, WoO 7, Menuet in B-Flat Major2:25911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel912 Menuets, WoO 7, Menuet in G Major2:11911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel1012 Menuets, WoO 7, Menuet in E-Flat Major2:32911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel1112 Menuets, WoO 7, Menuet in C Major2:09911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel1212 Menuets, WoO 7, Menuet in F Major2:09911780Kammerorchester der Staatskapelle Weimar,911782Friedemann Bätzel13Military March In D Major, WoO 246:46842822Capella Istropolitana,2036565Ewald Donhoffer146 Menuets, WoO 10, Menuet in C Major1:53842822Capella Istropolitana,2036565Ewald Donhoffer156 Menuets, WoO 10, Menuet in G Major2:59842822Capella Istropolitana,2036565Ewald Donhoffer166 Menuets, WoO 10, Menuet in E-Flat Major2:05842822Capella Istropolitana,2036565Ewald Donhoffer176 Menuets, WoO 10, Menuet in B-Flat Major2:04842822Capella Istropolitana,2036565Ewald Donhoffer186 Menuets, WoO 10, Menuet in D Major2:22842822Capella Istropolitana,2036565Ewald Donhoffer196 Menuets, WoO 10, Menuet in C Major1:56842822Capella Istropolitana,2036565Ewald Donhoffer206 Deutsche Tänze, WoO 424:34486721Sachiko Kobayashi,2036564Michael Wagner (5)216 Écossaises In E-Flat Major, WoO 83, Écossaise No. 10:202036563Rainer Maria Klaas226 Écossaises In E-Flat Major, WoO 83, Écossaise No. 20:192036563Rainer Maria Klaas236 Écossaises In E-Flat Major, WoO 83, Écossaise No. 30:202036563Rainer Maria Klaas246 Écossaises In E-Flat Major, WoO 83, Écossaise No. 40:212036563Rainer Maria Klaas256 Écossaises In E-Flat Major, WoO 83, Écossaise No. 50:202036563Rainer Maria Klaas266 Écossaises In E-Flat Major, WoO 83, Écossaise No. 60:212036563Rainer Maria Klaas27Écossaise in G Major, WoO 230:322036563Rainer Maria Klaas287 Ländler In D Major, WoO 11, Ländler No. 10:332036563Rainer Maria Klaas297 Ländler In D Major, WoO 11, Ländler No. 20:322036563Rainer Maria Klaas307 Ländler In D Major, WoO 11, Ländler No. 30:412036563Rainer Maria Klaas317 Ländler In D Major, WoO 11, Ländler No. 40:312036563Rainer Maria Klaas327 Ländler In D Major, WoO 11, Ländler No. 50:302036563Rainer Maria Klaas337 Ländler In D Major, WoO 11, Ländler No. 60:362036563Rainer Maria Klaas347 Ländler In D Major, WoO 11, Ländler No. 71:192036563Rainer Maria Klaas3512 Deutsche Tänze, WoO 13, Dance in D Major1:192036563Rainer Maria Klaas3612 Deutsche Tänze, WoO 13, Dance in B-Flat Major1:132036563Rainer Maria Klaas3712 Deutsche Tänze, WoO 13, Dance in G Major1:172036563Rainer Maria Klaas3812 Deutsche Tänze, WoO 13, Dance in D Major1:142036563Rainer Maria Klaas3912 Deutsche Tänze, WoO 13, Dance in F Major1:252036563Rainer Maria Klaas4012 Deutsche Tänze, WoO 13, Dance in B-Flat Major1:132036563Rainer Maria Klaas4112 Deutsche Tänze, WoO 13, Dance in D Major1:172036563Rainer Maria Klaas4212 Deutsche Tänze, WoO 13, Dance in G Major1:152036563Rainer Maria Klaas4312 Deutsche Tänze, WoO 13, Dance in E-Flat Major1:152036563Rainer Maria Klaas4412 Deutsche Tänze, WoO 13, Dance in C Major1:142036563Rainer Maria Klaas4512 Deutsche Tänze, WoO 13, Dance in A Major1:142036563Rainer Maria Klaas4612 Deutsche Tänze, WoO 13, Dance in D Major2:232036563Rainer Maria KlaasCD 15: Music For Wind Ensemble I1Octet in E-Flat Major for Two Oboes, Two Clarinets, Two Bassoons and Two Horns, Op. 103, I. Allegro7:25858951Ottetto Italiano2Octet in E-Flat Major for Two Oboes, Two Clarinets, Two Bassoons and Two Horns, Op. 103, II. Andante6:37858951Ottetto Italiano3Octet in E-Flat Major for Two Oboes, Two Clarinets, Two Bassoons and Two Horns, Op. 103, III. Menuetto3:12858951Ottetto Italiano4IOctet in E-Flat Major for Two Oboes, Two Clarinets, Two Bassoons and Two Horns, Op. 103, V. Finale: Presto3:33858951Ottetto Italiano5Rondino In E-Flat Major For Two Oboes, Two Clarinets, Two Bassoons And Two Horns, WoO 257:17858951Ottetto Italiano6Sextet In E-Flat Major For Two Clarinets, Two Bassoons And Two Horns, Op. 71, I. Adagio – Allegro8:07858951Ottetto Italiano7Sextet In E-Flat Major For Two Clarinets, Two Bassoons And Two Horns, Op. 71, II. Adagio3:52858951Ottetto Italiano8Sextet In E-Flat Major For Two Clarinets, Two Bassoons And Two Horns, Op. 71, III. Menuetto: Quasi Allegretto2:23858951Ottetto Italiano9Sextet In E-Flat Major For Two Clarinets, Two Bassoons And Two Horns, Op. 71, IV. Rondo: Allegro3:25858951Ottetto Italiano10Three Duos For Clarinet And Bassoon, WoO 27, No. 1 In C Major: I. Allegro Comodo3:16858951Ottetto Italiano11Three Duos For Clarinet And Bassoon, WoO 27, No. 1 In C Major: II. Larghetto Sostenuto2:21858951Ottetto Italiano12Three Duos For Clarinet And Bassoon, WoO 27, No. 1 In C Major: III. Rondo: Allegretto3:11858951Ottetto Italiano13Three Duos For Clarinet And Bassoon, WoO 27, No. 2 In F Major: I. Allegro Affettuoso3:51858951Ottetto Italiano14Three Duos For Clarinet And Bassoon, WoO 27, No. 2 In F Major: II. Aria: Larghetto2:24858951Ottetto Italiano15Three Duos For Clarinet And Bassoon, WoO 27, No. 2 In F Major: III. Rondo: Allegretto Moderato3:05858951Ottetto Italiano16Three Duos For Clarinet And Bassoon, WoO 27, No. 3 In B-Flat Major: I. Allegro Sostenuto4:06858951Ottetto Italiano17Three Duos For Clarinet And Bassoon, WoO 27, No. 3 In B-Flat Major: II. Aria Con Variazioni5:49858951Ottetto Italiano18Three Duos For Clarinet And Bassoon, WoO 27, No. 3 In B-Flat Major: III. Allegro Assai0:26858951Ottetto ItalianoCD 16: Music For Wind Ensemble II1March and Trio in F Major for Wind Ensemble ‘For the Bohemian Ward’, WoO 182:43858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova2March and Trio in C Major for wind ensemble ‘Zapfenstreich’, WoO 203:43858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova3March and Trio in F Major for Military Band, WoO 193:46858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova4Polonaise in D Major for Military Band, WoO 212:18858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova5Ecossaise in D Major for Military Band, WoO 221:03858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova6March in B-Flat Major for Two Clarinets, Two Horns and Two Bassoons, WoO 291:14858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova7Quintet in E-Flat Major for Oboe, Three Horns and Bassoon, Hess 19: I. Allegro3:11858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova8Quintet in E-Flat Major for Oboe, Three Horns and Bassoon, Hess 19: II. Adagio maestoso3:07858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova9Quintet in E-Flat Major for Oboe, Three Horns and Bassoon, Hess 19: III. Minuetto0:49858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova10Adagio for 3 horns in F Major0:56858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova113 Equale for Four Trombones, WoO 30: I. Andante2:21858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova123 Equale for Four Trombones, WoO 30: II. Poco adagio2:10858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova133 Equale for Four Trombones, WoO 30: III. Poco sostenuto1:21858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova14Trio in C Major, Op. 87 for Two Oboes and Cor Anglais: I. Allegro7:38858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova15Trio in C Major, Op. 87 for Two Oboes and Cor Anglais: II. Adagio4:09858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova16Trio in C Major, Op. 87 for Two Oboes and Cor Anglais: III. Minuetto2:53858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova17Trio in C Major, Op. 87 for Two Oboes and Cor Anglais: IV. Finale4:14858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova18Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Theme0:53858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova19Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 10:39858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova20Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 20:42858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova21Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 31:05858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova22Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 4 & 51:29858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova23Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 61:16858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova24Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 70:44858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova25Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Var. 81:08858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova26Variations in C Major for Two Oboes and Cor Anglais on Mozart’s Là ci darem la mano’, WoO 28: Coda1:31858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova27Allegro and Minuet in G Major for Two Flutes, WoO 26: I. Allegro con brio2:54858951Ottetto Italiano,2036653Orchestra Da Camera Di Genova28Allegro and Minuet in G Major for Two Flutes, WoO 26: II. Menuetto: Quasi allegretto3:05858951Ottetto Italiano,2036653Orchestra Da Camera Di GenovaCD 17: Chamber Music For Flute I1Serenade for Flute and Piano, Op. 41: I. Entrata: Allegro3:13379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix2Serenade for Flute and Piano, Op. 41: II. Tempo ordinario d’un Menuetto4:22379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix3Serenade for Flute and Piano, Op. 41: III. Molto allegro2:03379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix4Serenade for Flute and Piano, Op. 41: IV. Andante con variazioni6:03379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix5Serenade for Flute and Piano, Op. 41: V. Allegro scherzando e vivace1:50379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix6Serenade for Flute and Piano, Op. 41: VI. Adagio1:12379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix7Serenade for Flute and Piano, Op. 41: VII. Allegro vivace3:46379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix86 Themes and Variations, Op. 105 for Flute and Piano: Scottish Air in G Major3:04379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix96 Themes and Variations, Op. 105 for Flute and Piano: Scottish Air in C Minor2:44379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix106 Themes and Variations, Op. 105 for Flute and Piano: Austrian Air in C Major4:52379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix116 Themes and Variations, Op. 105 for Flute and Piano: Scottish Air in E-Flat Major3:21379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix126 Themes and Variations, Op. 105 for Flute and Piano: Scottish Air in E-Flat Major2:27379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix136 Themes and Variations, Op. 105 for Flute and Piano: Scottish Air in D Major2:38379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix14Allegro and Minuet in G Major, WoO 26 for Two Flutes: I. Allegro con brio2:36379816Jean-Pierre Rampal,833843Alain Marion15Allegro and Minuet in G Major, WoO 26 for Two Flutes: II. Minuetto. Quasi allegro3:12379816Jean-Pierre Rampal,833843Alain Marion16Trio in G Major, WoO 37 for Flute, Bassoon and Piano: I. Allegro7:22379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix,912298Paul Hongne17Trio in G Major, WoO 37 for Flute, Bassoon and Piano: II. Adagio5:19379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix,912298Paul Hongne18Trio in G Major, WoO 37 for Flute, Bassoon and Piano: III. Thema andante con variazioni8:52379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix,912298Paul HongneCD 18: Chamber Music For Flute II110 Themes and Variations for Flute and Piano, Op. 107: Tyrolian Air in E-Flat Major4:12379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix210 Themes and Variations for Flute and Piano, Op. 107: Scottish Air in F Major2:32379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix310 Themes and Variations for Flute and Piano, Op. 107: Russian Air in G Major5:05379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix410 Themes and Variations for Flute and Piano, Op. 107: Scottish Air in F Major4:30379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix510 Themes and Variations for Flute and Piano, Op. 107: Tyrolian Air in F Major6:49379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix610 Themes and Variations for Flute and Piano, Op. 107: Scottish Air in E-Flat Major3:28379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix710 Themes and Variations for Flute and Piano, Op. 107: Russian Air in A Minor5:33379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix810 Themes and Variations for Flute and Piano, Op. 107: Scottish Air in D Major2:23379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix910 Themes and Variations for Flute and Piano, Op. 107: Scottish Air in E-Flat Major4:17379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix1010 Themes and Variations for Flute and Piano, Op. 107: Scottish Air in G Minor4:02379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix11Trio in G Major for Three Flutes: I. Allegro (Spurious)4:26379816Jean-Pierre Rampal,1492272Christian Lardé,833843Alain Marion,434124Robert Veyron-Lacroix12Trio in G Major for Three Flutes: II. Andante (Spurious)2:38379816Jean-Pierre Rampal,1492272Christian Lardé,833843Alain Marion,434124Robert Veyron-Lacroix13Trio in G Major for Three Flutes: III. Rondo. Allegretto (Spurious)3:13379816Jean-Pierre Rampal,1492272Christian Lardé,833843Alain Marion,434124Robert Veyron-Lacroix14Sonata in B-Flat Major for Flute and Piano, Anh. 4: I. Allegro moderato6:31379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix15Sonata in B-Flat Major for Flute and Piano, Anh. 4: II. Polonaise3:46379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix16Sonata in B-Flat Major for Flute and Piano, Anh. 4: III. Largo5:15379816Jean-Pierre Rampal,434124Robert Veyron-Lacroix17Sonata in B-Flat Major for Flute and Piano, Anh. 4: IV. Thema allegretto con variazione5:38379816Jean-Pierre Rampal,434124Robert Veyron-LacroixCD 19: Septet Op. 20 - Sextet Op. 81b1Septet in E-Flat Major, Op. 20, Version for Chamber Orchestra: I. Adagio – Allegro con brio10:101930176Deutsche Kammerphilharmonie Bremen2Septet in E-Flat Major, Op. 20, Version for Chamber Orchestra: II. Adagio cantabile8:401930176Deutsche Kammerphilharmonie Bremen3Septet in E-Flat Major, Op. 20, Version for Chamber Orchestra: III. Tempo di minuetto3:331930176Deutsche Kammerphilharmonie Bremen4Septet in E-Flat Major, Op. 20, Version for Chamber Orchestra: IV. Tema con variazioni. Andante7:491930176Deutsche Kammerphilharmonie Bremen5Septet in E-Flat Major, Op. 20, Version for Chamber Orchestra: V. Scherzo. Allegro molto e vivace3:141930176Deutsche Kammerphilharmonie Bremen6Septet in E-Flat Major, Op. 20, Version for Chamber Orchestra: VI. Andante con moto alla marcia – Presto7:281930176Deutsche Kammerphilharmonie Bremen7Sextet in E-Flat Major, Op. 81b for Two Horns, Two Violins, Viola and Cello: I. Allegro con brio7:542297619Erben-QuartettErben Quartet,2037252Gerhard Meyer (2),2037251Rudolf Hörold8Sextet in E-Flat Major, Op. 81b for Two Horns, Two Violins, Viola and Cello: II. Adagio4:192297619Erben-QuartettErben Quartet,2037252Gerhard Meyer (2),2037251Rudolf Hörold9Sextet in E-Flat Major, Op. 81b for Two Horns, Two Violins, Viola and Cello: III. Rondo. Allegro5:402297619Erben-QuartettErben Quartet,2037252Gerhard Meyer (2),2037251Rudolf HöroldCD 20: Quintet Op. 16 - Trio Op. 11 - Horn Sonata1Quintet in E-Flat Major for Piano, Oboe, Clarinet, Horn and Bassoon, Op. 16: I. Grave – Allegro ma non troppo12:26882804Klára Würtz,890911Hans Meijer,885983Henk de Graaf,885989Martin van de Merwe,890913Peter Gaasterland2Quintet in E-Flat Major for Piano, Oboe, Clarinet, Horn and Bassoon, Op. 16: II. Andante cantabile6:50882804Klára Würtz,890911Hans Meijer,885983Henk de Graaf,885989Martin van de Merwe,890913Peter Gaasterland3Quintet in E-Flat Major for Piano, Oboe, Clarinet, Horn and Bassoon, Op. 16: III. Rondo. Allegro ma non troppo5:30882804Klára Würtz,890911Hans Meijer,885983Henk de Graaf,885989Martin van de Merwe,890913Peter Gaasterland4Trio in B-Flat Major for Clarinet, Cello and Piano, Op. 1: I. Allegro con brio6:44660067Vlad Weverbergh,3966256Benjamin Glorieux,5261155Vasily Ilisavsky5Trio in B-Flat Major for Clarinet, Cello and Piano, Op. 1: II. Adagio4:39660067Vlad Weverbergh,3966256Benjamin Glorieux,5261155Vasily Ilisavsky6Trio in B-Flat Major for Clarinet, Cello and Piano, Op. 1: III. Allegretto. Variations on ‘Pria ch’io l’impegno’6:18660067Vlad Weverbergh,3966256Benjamin Glorieux,5261155Vasily Ilisavsky7Horn Sonata in F Major, Op. 17: I. Allegro moderato8:062702548Ferenc Tarjáni,1021032Dezső Ránki8Horn Sonata in F Major, Op. 17: II. Poco adagio, quasi andante1:272702548Ferenc Tarjáni,1021032Dezső Ránki9Horn Sonata in F Major, Op. 17: III. Rondo. Allegro moderato4:532702548Ferenc Tarjáni,1021032Dezső RánkiCD 21: Trio Op. 38 - Duo WoO401Piano Trio in E-Flat Major, Op. 38, Arr. of Septet, Op. 20: I. Adagio – Allegro con brio11:10486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)2Piano Trio in E-Flat Major, Op. 38, Arr. of Septet, Op. 20: II. Adagio cantabile9:12486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)3Piano Trio in E-Flat Major, Op. 38, Arr. of Septet, Op. 20: III. Tempo di Minuetto4:10486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)4Piano Trio in E-Flat Major, Op. 38, Arr. of Septet, Op. 20: IV. Tema con variazioni. Andante6:59486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)5Piano Trio in E-Flat Major, Op. 38, Arr. of Septet, Op. 20: V. Scherzo. Allegro molto e vivace4:31486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)6Piano Trio in E-Flat Major, Op. 38, Arr. of Septet, Op. 20: VI. Andante con moto alla marcia – Presto7:31486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)712 Variations in F Major for violin and piano on ‘Se vuol ballare’ from Mozart’s Le Nozze di Figaro, WoO 409:44578745Peter Glatte,1057178Eva AnderCD 22: Serenade Op. 25 - Rondo WoO41 - Trio Hess 48 - Works for Mandolin & Piano1Serenade in D Major for Flute, Violin and Viola, Op. 25: I. Entrata: Allegro3:143865722Jacob Berg (2),2465512Max Rabinovitsj,4690636Darrel Barnes2Serenade in D Major for Flute, Violin and Viola, Op. 25: II. Tempo ordinario d’un Menuetto4:493865722Jacob Berg (2),2465512Max Rabinovitsj,4690636Darrel Barnes3Serenade in D Major for Flute, Violin and Viola, Op. 25: III. Allegro molto2:063865722Jacob Berg (2),2465512Max Rabinovitsj,4690636Darrel Barnes4Serenade in D Major for Flute, Violin and Viola, Op. 25: IV. Andante con variazioni6:123865722Jacob Berg (2),2465512Max Rabinovitsj,4690636Darrel Barnes5Serenade in D Major for Flute, Violin and Viola, Op. 25: V. Allegro scherzando e vivace2:173865722Jacob Berg (2),2465512Max Rabinovitsj,4690636Darrel Barnes6Serenade in D Major for Flute, Violin and Viola, Op. 25: VI. Adagio – Allegro vivace disinvolto5:093865722Jacob Berg (2),2465512Max Rabinovitsj,4690636Darrel Barnes7Rondo in G Major, WoO 41 for Violin and Piano4:37486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)8Trio in E-Flat Major, Hess 48 for Violin, Cello and Piano3:53486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)9Adagio in E-Flat Major for Mandolin and Piano, WoO 43 No. 26:151002262Erhard Fietz,826828Amadeus Webersinke10Sonatina in C Major for Mandolin and Piano, WoO 44 No. 13:081002262Erhard Fietz,826828Amadeus Webersinke11Sonatina in C Minor for Mandolin and Piano, WoO 43 No. 14:41893192Lajos Mayer,1045932Imre Rohmann12Andante con variazioni in D Major for mandolin and piano, WoO 44 No. 2: Andante1:12893192Lajos Mayer,1045932Imre Rohmann13Andante con variazioni in D Major for mandolin and piano, WoO 44 No. 2: Variazioni 1–68:51893192Lajos Mayer,1045932Imre RohmannCD 23: Piano Quartets1Piano Quartet in C Major, WoO 36 No. 3: I. Allegro vivace8:411110799Anthony Goldstone,2038259Cummings String Trio2Piano Quartet in C Major, WoO 36 No. 3: II. Adagio con espressione5:561110799Anthony Goldstone,2038259Cummings String Trio3Piano Quartet in C Major, WoO 36 No. 3: III. Rondo. Allegro3:261110799Anthony Goldstone,2038259Cummings String Trio4Piano Quartet in E-Flat Major, WoO 36 No. 1: I. Adagio assai – Allegro con spirito9:141110799Anthony Goldstone,2038259Cummings String Trio5Piano Quartet in E-Flat Major, WoO 36 No. 1: II. Tema con variazioni10:211110799Anthony Goldstone,2038259Cummings String Trio6Piano Quartet in D Major, WoO 36 No. 2: I. Allegro moderato5:061110799Anthony Goldstone,2038259Cummings String Trio7Piano Quartet in D Major, WoO 36 No. 2: II. Andante con moto5:551110799Anthony Goldstone,2038259Cummings String Trio8Piano Quartet in D Major, WoO 36 No. 2: III. Rondo. Allegro5:111110799Anthony Goldstone,2038259Cummings String TrioCD 24: Piano Trios I1Piano Trio in G Major, Op. 1 No. 2: I. Adagio – Allegro vivace12:051159067Trio Elégiaque2Piano Trio in G Major, Op. 1 No. 2: II. Largo con espressione9:521159067Trio Elégiaque3Piano Trio in G Major, Op. 1 No. 2: III. Scherzo. Allegro3:421159067Trio Elégiaque4Piano Trio in G Major, Op. 1 No. 2:. IV. Finale. Presto7:441159067Trio Elégiaque5Piano Trio in D Major, Op. 70 No. 1 ‘Ghost’: I. Allegro vivace10:271159067Trio Elégiaque6Piano Trio in D Major, Op. 70 No. 1 ‘Ghost’: II. Largo assai ed espressivo11:041159067Trio Elégiaque7Piano Trio in D Major, Op. 70 No. 1 ‘Ghost’: III. Presto8:201159067Trio Elégiaque8Piano Trio in E-Flat, WoO 38: I. Allegro moderato4:071159067Trio Elégiaque9Piano Trio in E-Flat, WoO 38: II. Scherzo. Allegro ma non troppo4:241159067Trio Elégiaque10Piano Trio in E-Flat, WoO 38: III. Rondo. Allegretto5:041159067Trio ElégiaqueCD 25: Piano Trios II1Piano Trio in C Minor, Op. 1 No. 3: I. Allegro con brio9:161159067Trio Elégiaque2Piano Trio in C Minor, Op. 1 No. 3: II. Andante cantabile con variazioni7:041159067Trio Elégiaque3Piano Trio in C Minor, Op. 1 No. 3: III. Menuetto. Quasi allegro – Trio3:271159067Trio Elégiaque4Piano Trio in C Minor, Op. 1 No. 3: IV. Finale. Prestissimo7:431159067Trio Elégiaque5Piano Trio in E-Flat, Op. 70 No. 2: I. Poco sostenuto – Allegro ma non troppo10:201159067Trio Elégiaque6Piano Trio in E-Flat, Op. 70 No. 2: II. Allegretto4:571159067Trio Elégiaque7Piano Trio in E-Flat, Op. 70 No. 2: III. Allegretto ma non troppo4:451159067Trio Elégiaque8Piano Trio in E-Flat, Op. 70 No. 2: IV. Finale. Allegro7:471159067Trio Elégiaque9Piano Trio in E-Flat, Op. 44: 14 Variations on an original theme. Tema (Andante) con variazioni12:431159067Trio ElégiaqueCD 26: Piano Trios III1Piano Trio in E-Flat, Op. 1 No. 1: I. Allegro9:381159067Trio Elégiaque2Piano Trio in E-Flat, Op. 1 No. 1: II. Adagio cantabile7:011159067Trio Elégiaque3Piano Trio in E-Flat, Op. 1 No. 1: III. Scherzo. Allegro assai4:511159067Trio Elégiaque4Piano Trio in E-Flat, Op. 1 No. 1: IV. Finale. Presto7:241159067Trio Elégiaque5Piano Trio in D Major, after Symphony No. 2: I. Adagio – Allegro con brio12:141159067Trio Elégiaque6Piano Trio in D Major, after Symphony No. 2: II. Larghetto quasi andante10:551159067Trio Elégiaque7Piano Trio in D Major, after Symphony No. 2: III. Scherzo3:411159067Trio Elégiaque8Piano Trio in D Major, After Symphony No. 2: IV. Allegro molto6:341159067Trio Elégiaque9Triosatz in E-Flat: Allegretto3:231159067Trio ElégiaqueCD 27: Piano Trios IV1Piano Trio in B-Flat Major, Op. 97 ‘Archduke’: I. Allegro moderato12:511159067Trio Elégiaque2Piano Trio in B-Flat Major, Op. 97 ‘Archduke’: II. Scherzo. Allegro6:201159067Trio Elégiaque3Piano Trio in B-Flat Major, Op. 97 ‘Archduke’: III. Andante cantabile, ma però con moto – Poco più adagio11:571159067Trio Elégiaque4Piano Trio in B-Flat Major, Op. 97 ‘Archduke’: IV. Allegro moderato6:541159067Trio Elégiaque5Piano Trio in B-Flat Major, WoO 39: Allegretto6:081159067Trio Elégiaque6Piano Trio in E-Flat Major, Op. 63, After the String Quintet, Op. 4: I. Allegro con brio8:041159067Trio Elégiaque7Piano Trio in E-Flat Major, Op. 63, After the String Quintet, Op. 4: II. Andante6:401159067Trio Elégiaque8Piano Trio in E-Flat Major, Op. 63, After the String Quintet, Op. 4: III. Menuetto – Trio6:121159067Trio Elégiaque9Piano Trio in E-Flat Major, Op. 63, After the String Quintet, Op. 4: IV. Finale. Presto5:561159067Trio ElégiaqueCD 28: Piano Trios V1Piano Trio in B-Flat Major, Op. 11 ‘Gassenhauer’: I. Allegro con brio8:501159067Trio Elégiaque2Piano Trio in B-Flat Major, Op. 11 ‘Gassenhauer’: II. Adagio5:061159067Trio Elégiaque3Piano Trio in B-Flat Major, Op. 11 ‘Gassenhauer’: III. Tema. Pria ch'io l'impegno allegretto con variazioni6:411159067Trio Elégiaque4Piano Trio in G Major, Op. 121a: Introduzione. Adagio assai – Tema. Allegretto con variazioni15:571159067Trio Elégiaque5Piano Trio in E-Flat Major, Op. 38, After the Septet, Op. 20: I. Adagio – Allegro con brio7:191159067Trio Elégiaque6Piano Trio in E-Flat Major, Op. 38, After the Septet, Op. 20: II. Adagio cantabile8:151159067Trio Elégiaque7Piano Trio in E-Flat Major, Op. 38, After the Septet, Op. 20: III. Tempo di menuetto3:001159067Trio Elégiaque8Piano Trio in E-Flat Major, Op. 38, After the Septet, Op. 20: IV. Andante con variazioni6:491159067Trio Elégiaque9Piano Trio in E-Flat Major, Op. 38, After the Septet, Op. 20: V. Scherzo. Allegro molto e vivace3:171159067Trio Elégiaque10Piano Trio in E-Flat Major, Op. 38, After the Septet, Op. 20: VI. Andante con moto alla marcia – Presto7:141159067Trio ElégiaqueCD 29: Cello Sonatas I1Cello Sonata in F Major, Op. 5 No. 1: I. Adagio sostenuto – Allegro17:011979590Timora Rosler,882804Klára Würtz2Cello Sonata in F Major, Op. 5 No. 1: II. Rondo. Allegro vivace6:201979590Timora Rosler,882804Klára Würtz3Cello Sonata in G Minor, Op. 5 No. 2: I. Adagio sostenuto ed espressivo5:351979590Timora Rosler,882804Klára Würtz4Cello Sonata in G Minor, Op. 5 No. 2: II. Allegro molto più tosto presto9:531979590Timora Rosler,882804Klára Würtz5Cello Sonata in G Minor, Op. 5 No. 2: III. Rondo: Allegro8:281979590Timora Rosler,882804Klára Würtz6Cello Sonata in A Major, Op. 69: I. Allegro ma non tanto12:301979590Timora Rosler,882804Klára Würtz7Cello Sonata in A Major, Op. 69: II. Scherzo: Allegro molto5:031979590Timora Rosler,882804Klára Würtz8Cello Sonata in A Major, Op. 69: III. Adagio cantabile – Allegro vivace8:111979590Timora Rosler,882804Klára WürtzCD 30: Cello Sonatas II - Cello Variations1Cello Sonata in C Major, Op. 102 No. 1: I. Adagio – Allegro vivace7:121979590Timora Rosler,882804Klára Würtz2Cello Sonata in C Major, Op. 102 No. 1: II. Adagio – Tempo d’andante – Allegro vivace6:581979590Timora Rosler,882804Klára Würtz3Cello Sonata in D Major, Op. 102 No. 2: I. Allegro con brio6:241979590Timora Rosler,882804Klára Würtz4Cello Sonata in D Major, Op. 102 No. 2: II. Adagio con molto sentimento d’affetto7:481979590Timora Rosler,882804Klára Würtz5Cello Sonata in D Major, Op. 102 No. 2: III. Allegro – Allegro fugato4:281979590Timora Rosler,882804Klára Würtz612 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Thema. Allegretto0:421979590Timora Rosler,882804Klára Würtz712 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 10:371979590Timora Rosler,882804Klára Würtz812 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 20:371979590Timora Rosler,882804Klára Würtz912 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 30:381979590Timora Rosler,882804Klára Würtz1012 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 40:431979590Timora Rosler,882804Klára Würtz1112 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 50:431979590Timora Rosler,882804Klára Würtz1212 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 60:381979590Timora Rosler,882804Klára Würtz1312 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 70:381979590Timora Rosler,882804Klára Würtz1412 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 80:381979590Timora Rosler,882804Klára Würtz1512 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 90:411979590Timora Rosler,882804Klára Würtz1612 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 100:431979590Timora Rosler,882804Klára Würtz1712 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 11. Adagio2:581979590Timora Rosler,882804Klára Würtz1812 Variations on ‘See the Conqu’ring Hero Comes’ from Handel’s Judas Maccabeus, WoO 45: Variation 12. Allegro1:021979590Timora Rosler,882804Klára Würtz1912 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Thema. Allegretto0:301979590Timora Rosler,882804Klára Würtz2012 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 10:311979590Timora Rosler,882804Klára Würtz2112 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 20:331979590Timora Rosler,882804Klára Würtz2212 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 30:291979590Timora Rosler,882804Klára Würtz2312 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 40:331979590Timora Rosler,882804Klára Würtz2412 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 50:331979590Timora Rosler,882804Klára Würtz2512 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 60:271979590Timora Rosler,882804Klára Würtz2612 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 70:381979590Timora Rosler,882804Klára Würtz2712 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 80:371979590Timora Rosler,882804Klára Würtz2812 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 90:311979590Timora Rosler,882804Klára Würtz2912 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 10. Adagio1:081979590Timora Rosler,882804Klára Würtz3012 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 11. Poco adagio, quasi andante0:541979590Timora Rosler,882804Klára Würtz3112 Variations on ‘Ein Mädchen oder Weibchen’ from Mozart’s ‘Die Zauberflöte’, Op. 66: Variation 12. Allegro1:581979590Timora Rosler,882804Klára Würtz327 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Thema. Andante0:441979590Timora Rosler,882804Klára Würtz337 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 10:381979590Timora Rosler,882804Klára Würtz347 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 20:421979590Timora Rosler,882804Klára Würtz357 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 31:031979590Timora Rosler,882804Klára Würtz367 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 41:161979590Timora Rosler,882804Klára Würtz377 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 5. Si prenda il tempo un poco0:361979590Timora Rosler,882804Klára Würtz387 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 6. Adagio2:061979590Timora Rosler,882804Klára Würtz397 Variations on ‘Bei Männern welche Liebe fühlen’ from Mozart’s Die Zauberflöte, WoO 46: Variation 7. Allegro ma non troppo1:491979590Timora Rosler,882804Klára WürtzCD 31: Violin Sonatas I1Violin Sonata No. 1 in D Major, Op. 12 No. 1: I. Allegro con brio8:052950329Kristóf Baráti,882804Klára Würtz2Violin Sonata No. 1 in D Major, Op. 12 No. 1: II. Tema con variazioni6:442950329Kristóf Baráti,882804Klára Würtz3Violin Sonata No. 1 in D Major, Op. 12 No. 1: III. Rondo. Allegro4:152950329Kristóf Baráti,882804Klára Würtz4Violin Sonata No. 2 in A Major, Op. 12 No. 2: I. Allegro vivace6:002950329Kristóf Baráti,882804Klára Würtz5Violin Sonata No. 2 in A Major, Op. 12 No. 2: II. Andante, più tosto allegretto4:592950329Kristóf Baráti,882804Klára Würtz6Violin Sonata No. 2 in A Major, Op. 12 No. 2: III. Allegro piacevole4:422950329Kristóf Baráti,882804Klára Würtz7Violin Sonata No. 3 in E-Flat Major, Op. 12 No. 3: I. Allegro con spirito8:042950329Kristóf Baráti,882804Klára Würtz8Violin Sonata No. 3 in E-Flat Major, Op. 12 No. 3: II. Adagio con molt’espressione5:262950329Kristóf Baráti,882804Klára Würtz9Violin Sonata No. 3 in E-Flat Major, Op. 12 No. 3: III. Rondo. Allegro molto3:572950329Kristóf Baráti,882804Klára WürtzCD 32: Violin Sonatas II1Violin Sonata No. 4 in A Minor, Op. 23: I. Presto6:572950329Kristóf Baráti,882804Klára Würtz2Violin Sonata No. 4 in A Minor, Op. 23: II. Andante scherzoso, più allegretto6:552950329Kristóf Baráti,882804Klára Würtz3Violin Sonata No. 4 in A Minor, Op. 23: III. Allegro molto4:492950329Kristóf Baráti,882804Klára Würtz4Violin Sonata No. 5 in F Op. 24 ‘Spring’: I. Allegro9:052950329Kristóf Baráti,882804Klára Würtz5Violin Sonata No. 5 in F Op. 24 ‘Spring’: II. Adagio molto espressivo5:312950329Kristóf Baráti,882804Klára Würtz6Violin Sonata No. 5 in F Op. 24 ‘Spring’: III. Scherzo. Allegro molto1:012950329Kristóf Baráti,882804Klára Würtz7Violin Sonata No. 5 in F Op. 24 ‘Spring’: IV. Rondo. Allegro ma non troppo6:092950329Kristóf Baráti,882804Klára WürtzCD 33: Violin Sonatas III1Violin Sonata No. 6 in A Major, Op. 30 No. 1: I. Allegro6:532950329Kristóf Baráti,882804Klára Würtz2Violin Sonata No. 6 in A Major, Op. 30 No. 1: II. Adagio molto espressivo6:542950329Kristóf Baráti,882804Klára Würtz3Violin Sonata No. 6 in A Major, Op. 30 No. 1: III. Allegretto con variazioni7:302950329Kristóf Baráti,882804Klára Würtz4Violin Sonata No. 7 in C Minor, Op. 30 No. 2: I. Allegro con brio7:062950329Kristóf Baráti,882804Klára Würtz5Violin Sonata No. 7 in C Minor, Op. 30 No. 2: II. Adagio cantabile8:392950329Kristóf Baráti,882804Klára Würtz6Violin Sonata No. 7 in C Minor, Op. 30 No. 2: III. Scherzo, allegro3:122950329Kristóf Baráti,882804Klára Würtz7Violin Sonata No. 7 in C Minor, Op. 30 No. 2: IV. Finale. Allegro4:372950329Kristóf Baráti,882804Klára Würtz8Violin Sonata No. 8 in G Major, Op. 30 No. 3: I. Allegro assai5:442950329Kristóf Baráti,882804Klára Würtz9Violin Sonata No. 8 in G Major, Op. 30 No. 3: II. Tempo di menuetto7:342950329Kristóf Baráti,882804Klára Würtz10Violin Sonata No. 8 in G Major, Op. 30 No. 3: III. Allegro vivace3:112950329Kristóf Baráti,882804Klára WürtzCD 34: Violin Sonatas IV1Violin Sonata No. 9 in A Major, Op. 47 ‘Kreutzer’: I. Adagio sostenuto – Presto12:542950329Kristóf Baráti,882804Klára Würtz2Violin Sonata No. 9 in A Major, Op. 47 ‘Kreutzer’: II. Andante con variazioni14:212950329Kristóf Baráti,882804Klára Würtz3Violin Sonata No. 9 in A Major, Op. 47 ‘Kreutzer’: III. Finale. Presto8:192950329Kristóf Baráti,882804Klára Würtz4Violin Sonata No. 10 in G Major, Op. 96: I. Allegro moderato10:062950329Kristóf Baráti,882804Klára Würtz5Violin Sonata No. 10 in G Major, Op. 96: II. Adagio espressivo5:162950329Kristóf Baráti,882804Klára Würtz6Violin Sonata No. 10 in G Major, Op. 96: III. Scherzo. Allegro1:482950329Kristóf Baráti,882804Klára Würtz7Violin Sonata No. 10 in G Major, Op. 96: IV. Poco allegretto7:102950329Kristóf Baráti,882804Klára WürtzCD 35: String Trios I1String Trio in E-Flat Major, Op. 3: I. Allegro con brio12:50889174The Zurich String Trio2String Trio in E-Flat Major, Op. 3: II. Andante7:52889174The Zurich String Trio3String Trio in E-Flat Major, Op. 3: III. Menuetto. Allegro3:30889174The Zurich String Trio4String Trio in E-Flat Major, Op. 3: IV. Adagio8:03889174The Zurich String Trio5String Trio in E-Flat Major, Op. 3: V. Menuetto. Moderato3:31889174The Zurich String Trio6String Trio in E-Flat Major, Op. 3: VI. Finale. Allegro7:06889174The Zurich String Trio7Serenade in D Major, Op. 8 for String Trio: I. Marcia. Allegro1:38889174The Zurich String Trio8Serenade in D Major, Op. 8 for String Trio: II. Adagio7:02889174The Zurich String Trio9Serenade in D Major, Op. 8 for String Trio: III. Menuetto. Allegretto2:23889174The Zurich String Trio10Serenade in D Major, Op. 8 for String Trio: IV. Adagio – Scherzo. Allegro4:22889174The Zurich String Trio11Serenade in D Major, Op. 8 for String Trio: V. Allegretto alla polacca3:42889174The Zurich String Trio12Serenade in D Major, Op. 8 for String Trio: VI. Andante quasi allegretto – Variations 1-4 – Allegro7:59889174The Zurich String Trio13Serenade in D Major, Op. 8 for String Trio: VII. Marcia. Allegro1:41889174The Zurich String TrioCD 36: String Trios II1String Trio in G Major, Op. 9 No. 1: I. Adagio – Allegro con brio10:11889174The Zurich String Trio2String Trio in G Major, Op. 9 No. 1: II. Adagio ma non tanto e cantabile6:50889174The Zurich String Trio3String Trio in G Major, Op. 9 No. 1: III. Scherzo. Allegro2:42889174The Zurich String Trio4String Trio in G Major, Op. 9 No. 1: IV. Presto5:51889174The Zurich String Trio5String Trio in D Major, Op. 9 No. 2: I. Allegretto8:18889174The Zurich String Trio6String Trio in D Major, Op. 9 No. 2: II. Andante quasi allegretto5:32889174The Zurich String Trio7String Trio in D Major, Op. 9 No. 2: III. Menuetto. Allegro4:09889174The Zurich String Trio8String Trio in D Major, Op. 9 No. 2: IV. Rondo. Allegro6:56889174The Zurich String Trio9String Trio in C Minor, Op. 9 No. 3: I. Allegro con spirito8:21889174The Zurich String Trio10String Trio in C Minor, Op. 9 No. 3: II. Adagio con espressione6:46889174The Zurich String Trio11String Trio in C Minor, Op. 9 No. 3: III. Scherzo. Allegro molto e vivace3:10889174The Zurich String Trio12String Trio in C Minor, Op. 9 No. 3: IV. Finale. Presto6:42889174The Zurich String TrioCD 37: String Quartets Op. 18 Nos. 1-31String Quartet No. 1 in F Major, Op. 18 No. 1: I. Allegro con brio9:081597133Suske-Quartett2String Quartet No. 1 in F Major, Op. 18 No. 1: II. Adagio affettuoso ed appassionato9:111597133Suske-Quartett3String Quartet No. 1 in F Major, Op. 18 No. 1: III. Scherzo. Allegro molto – Trio3:321597133Suske-Quartett4String Quartet No. 1 in F Major, Op. 18 No. 1: IV. Allegro6:191597133Suske-Quartett5String Quartet No. 2 in G Major, Op. 18 No. 2: I. Allegro7:471597133Suske-Quartett6String Quartet No. 2 in G Major, Op. 18 No. 2: II. Adagio cantabile – Allegro – Tempo I5:341597133Suske-Quartett7String Quartet No. 2 in G Major, Op. 18 No. 2: III. Scherzo. Allegro – Trio4:241597133Suske-Quartett8String Quartet No. 2 in G Major, Op. 18 No. 2: IV. Allegro molto, quasi presto5:051597133Suske-Quartett9String Quartet No. 3 in D Major, Op. 18 No. 3: I. Allegro7:251597133Suske-Quartett10String Quartet No. 3 in D Major, Op. 18 No. 3: II. Andante con moto7:121597133Suske-Quartett11String Quartet No. 3 in D Major, Op. 18 No. 3: III. Allegro3:061597133Suske-Quartett12String Quartet No. 3 in D Major, Op. 18 No. 3: IV. Presto5:111597133Suske-QuartettCD 38: String Quartets Op. 18 Nos. 4-6 / Minuet In A Flat Hess 331String Quartet No. 4 in C Minor, Op. 18 No. 4: I. Allegro ma non tanto8:131597133Suske-Quartett2String Quartet No. 4 in C Minor, Op. 18 No. 4: II. Scherzo. Andante scherzo, quasi allegretto7:071597133Suske-Quartett3String Quartet No. 4 in C Minor, Op. 18 No. 4: III. Menuetto. Allegretto – Trio4:001597133Suske-Quartett4String Quartet No. 4 in C Minor, Op. 18 No. 4: IV. Allegro4:181597133Suske-Quartett5String Quartet No. 5 in A Major, Op. 18 No. 5: I. Allegro6:301597133Suske-Quartett6String Quartet No. 5 in A Major, Op. 18 No. 5: II. Menuetto – Trio4:571597133Suske-Quartett7String Quartet No. 5 in A Major, Op. 18 No. 5: III. Andante cantabile8:521597133Suske-Quartett8String Quartet No. 5 in A Major, Op. 18 No. 5: IV. Allegro6:201597133Suske-Quartett9String Quartet No. 6 in B-Flat Major, Op. 18 No. 6: I. Allegro con brio5:581597133Suske-Quartett10String Quartet No. 6 in B-Flat Major, Op. 18 No. 6: II. Adagio ma non troppo7:201597133Suske-Quartett11String Quartet No. 6 in B-Flat Major, Op. 18 No. 6: III. Scherzo. Allegro – Trio3:231597133Suske-Quartett12String Quartet No. 6 in B-Flat Major, Op. 18 No. 6: IV. Adagio (La Malinconia) – Allegretto, quasi allegro8:291597133Suske-Quartett13Minuet in A-Flat Major, Hess 332:591597133Suske-QuartettCD 39: String Quartets Op. 59 'Rasumovsky' Nos. 1 & 21String Quartet No. 7 in F Major, Op. 59 No. 1 ‘Rasumovsky’: I. Allegro10:481597133Suske-Quartett2String Quartet No. 7 in F Major, Op. 59 No. 1 ‘Rasumovsky’: II. Allegretto vivace e sempre scherzando8:491597133Suske-Quartett3String Quartet No. 7 in F Major, Op. 59 No. 1 ‘Rasumovsky’: III. Adagio molto e mesto10:531597133Suske-Quartett4String Quartet No. 7 in F Major, Op. 59 No. 1 ‘Rasumovsky’: IV. Allegro (Thème russe)6:521597133Suske-Quartett5String Quartet No. 8 in E Minor, Op. 59 No. 2 ‘Rasumovsky’: I. Allegro11:191597133Suske-Quartett6String Quartet No. 8 in E Minor, Op. 59 No. 2 ‘Rasumovsky’: II. Molto adagio13:531597133Suske-Quartett7String Quartet No. 8 in E Minor, Op. 59 No. 2 ‘Rasumovsky’: III. Allegretto8:261597133Suske-Quartett8String Quartet No. 8 in E Minor, Op. 59 No. 2 ‘Rasumovsky’: IV. Finale. Presto5:511597133Suske-QuartettCD 40: String Quartets Op. 59 No. 3 'Rasumovsky' / Op. 74 'Harp'1String Quartet No. 9 in C Major, Op. 59 No. 3 ‘Rasumovsky’: I. Introduzione: Andante con moto – Allegro vivace10:561597133Suske-Quartett2String Quartet No. 9 in C Major, Op. 59 No. 3 ‘Rasumovsky’: II. Andante con moto, quasi allegretto10:581597133Suske-Quartett3String Quartet No. 9 in C Major, Op. 59 No. 3 ‘Rasumovsky’: III. Menuetto: Grazioso – Trio5:111597133Suske-Quartett4String Quartet No. 9 in C Major, Op. 59 No. 3 ‘Rasumovsky’: IV. Allegro molto6:421597133Suske-Quartett5String Quartet No. 10 in E-Flat Major, Op. 74 ‘Harp’: I. Poco adagio – Allegro9:371597133Suske-Quartett6String Quartet No. 10 in E-Flat Major, Op. 74 ‘Harp’: II. Adagio ma non troppo8:261597133Suske-Quartett7String Quartet No. 10 in E-Flat Major, Op. 74 ‘Harp’: III. Presto5:161597133Suske-Quartett8String Quartet No. 10 in E-Flat Major, Op. 74 ‘Harp’: IV. Allegretto con variazioni6:331597133Suske-QuartettCD 41: String Quartets Opp. 95 'Quartetto Serioso' & 130 / Grosse Fuge Op. 1331String Quartet No. 11 in F Minor, Op. 95 ‘Quartetto serioso’: I. Allegro con brio4:241597133Suske-Quartett2String Quartet No. 11 in F Minor, Op. 95 ‘Quartetto serioso’: II. Allegretto ma non troppo6:451597133Suske-Quartett3String Quartet No. 11 in F Minor, Op. 95 ‘Quartetto serioso’: III. Allegro assai vivace, ma serioso4:181597133Suske-Quartett4String Quartet No. 11 in F Minor, Op. 95 ‘Quartetto serioso’: IV. Larghetto espressivo – Allegretto agitato – Allegro4:541597133Suske-Quartett5String Quartet No. 13 in B-Flat Major, Op. 130: I. Adagio ma non troppo – Allegro9:261597133Suske-Quartett6String Quartet No. 13 in B-Flat Major, Op. 130: II. Presto2:031597133Suske-Quartett7String Quartet No. 13 in B-Flat Major, Op. 130: III. Andante con moto, ma non troppo6:321597133Suske-Quartett8String Quartet No. 13 in B-Flat Major, Op. 130: IV. Alla danza tedesca: Allegro assai3:081597133Suske-Quartett9String Quartet No. 13 in B-Flat Major, Op. 130: V. Cavatina: Adagio molto espressivo7:221597133Suske-Quartett10String Quartet No. 13 in B-Flat Major, Op. 130: VI. Finale: Allegro8:141597133Suske-Quartett11Große Fuge in B-Flat Major, Op. 13315:371597133Suske-QuartettCD 42: String Quartets Opp. 127 & 1311String Quartet No. 12 in E-Flat Major, Op. 127: I. Maestoso – Allegro6:091597133Suske-Quartett2String Quartet No. 12 in E-Flat Major, Op. 127: II. Adagio ma non troppo e molto cantabile15:211597133Suske-Quartett3String Quartet No. 12 in E-Flat Major, Op. 127: III. Scherzando vivace8:371597133Suske-Quartett4String Quartet No. 12 in E-Flat Major, Op. 127: IV. Finale6:291597133Suske-Quartett5String Quartet No. 14 in C-Sharp Minor, Op. 131: I. Adagio ma non troppo e molto espressivo7:241597133Suske-Quartett6String Quartet No. 14 in C-Sharp Minor, Op. 131: II. Allegro molto vivace3:041597133Suske-Quartett7String Quartet No. 14 in C-Sharp Minor, Op. 131: III. Allegro molto moderato – Adagio – Più vivace0:551597133Suske-Quartett8String Quartet No. 14 in C-Sharp Minor, Op. 131: IV. Andante ma non troppo e molto cantabile15:001597133Suske-Quartett9String Quartet No. 14 in C-Sharp Minor, Op. 131: V. Presto5:391597133Suske-Quartett10String Quartet No. 14 in C-Sharp Minor, Op. 131: VI. Adagio quasi un poco andante2:001597133Suske-Quartett11String Quartet No. 14 in C-Sharp Minor, Op. 131: VII. Allegro6:111597133Suske-QuartettCD 43: String Quartets Opp. 132 & 1351String Quartet No. 15 in A Minor, Op. 132: I. Assai sostenuto – Allegro9:211597133Suske-Quartett2String Quartet No. 15 in A Minor, Op. 132: II. Allegro ma non troppo7:121597133Suske-Quartett3String Quartet No. 15 in A Minor, Op. 132: III. Molto adagio: Heiliger Dankgesang eines Genesenen an die Gottheit in der lydischen Tonart17:051597133Suske-Quartett4String Quartet No. 15 in A Minor, Op. 132: IV. Alla marcia, assai vivace2:101597133Suske-Quartett5String Quartet No. 15 in A Minor, Op. 132: V. Finale: Allegro appassionato6:501597133Suske-Quartett6String Quartet No. 16 in F Major, Op. 135: I. Allegretto6:331597133Suske-Quartett7String Quartet No. 16 in F Major, Op. 135: II. Vivace3:151597133Suske-Quartett8String Quartet No. 16 in F Major, Op. 135: III. Lento assai, cantante e tranquillo7:521597133Suske-Quartett9String Quartet No. 16 in F Major, Op. 135: IV. Grave ma non troppo tratto – Allegro6:401597133Suske-QuartettCD 44: Music For String Ensembles I1String Quintet in C Major, Op. 29: I. Allegro moderato10:322045547The Zurich String Quintet2String Quintet in C Major, Op. 29: II. Adagio molto espressivo9:232045547The Zurich String Quintet3String Quintet in C Major, Op. 29: III. Scherzo. Allegro4:452045547The Zurich String Quintet4String Quintet in C Major, Op. 29: IV. Presto9:382045547The Zurich String Quintet5String Quintet in C Minor, Op. 104, Arrangement of Piano Trio, Op. 1 No. 3: I. Allegro con brio10:042045547The Zurich String Quintet6String Quintet in C Minor, Op. 104, Arrangement of Piano Trio, Op. 1 No. 3: II. Andante cantabile con variazioni8:042045547The Zurich String Quintet7String Quintet in C Minor, Op. 104, Arrangement of Piano Trio, Op. 1 No. 3: III. Menuetto. Quasi allegro3:552045547The Zurich String Quintet8String Quintet in C Minor, Op. 104, Arrangement of Piano Trio, Op. 1 No. 3: IV. Finale. Prestissimo9:022045547The Zurich String Quintet9String Quartet in F Major, After Piano Sonata in E Major, Op. 14 No. 1: I. Allegro moderato6:411597133Suske-Quartett10String Quartet in F Major, After Piano Sonata in E Major, Op. 14 No. 1: II. Allegretto3:561597133Suske-Quartett11String Quartet in F Major, After Piano Sonata in E Major, Op. 14 No. 1: III. Allegro3:361597133Suske-QuartettCD 45: Music For String Ensembles II1String Quintet in E-Flat Major, Op. 4: I. Allegro con brio11:442045547The Zurich String Quintet2String Quintet in E-Flat Major, Op. 4: II. Andante8:042045547The Zurich String Quintet3String Quintet in E-Flat Major, Op. 4: III. Menuetto6:352045547The Zurich String Quintet4String Quintet in E-Flat Major, Op. 4: IV. Finale. Presto6:202045547The Zurich String Quintet5Fugue in D Major, Op. 137 for String Quintet1:422045547The Zurich String Quintet6Duet in E-Flat Major for Viola and Cello, WoO 32: I. No Tempo Indication10:032045547The Zurich String Quintet7Duet in E-Flat Major for Viola and Cello, WoO 32: II. Minuetto4:102045547The Zurich String Quintet86 ländlerische Tänzefor Two Violins, Cello and Double Bass, WoO 154:452045547The Zurich String Quintet9Prelude and Fugue in E Minor for Two Violins and Cello, Hess 296:182045850Perez Quartet10Prelude and Fugue in F Major for String Quartet, Hess 307:192045850Perez Quartet11Prelude and Fugue in C Major for String Quartet, Hess 314:522045850Perez Quartet12Menuet for String Quartet, Hess 331:332045850Perez Quartet13Prelude for String Quintet, Hess 402:482045850Perez QuartetCD 46: Piano Sonatas Opp. 106 'Hammerklavier' & 1111Piano Sonata No. 29 in B-Flat Major, Op. 106 ‘Hammerklavier’: I. Allegro11:06832924Alfred Brendel2Piano Sonata No. 29 in B-Flat Major, Op. 106 ‘Hammerklavier’: II. Scherzo. Assai vivace2:34832924Alfred Brendel3Piano Sonata No. 29 in B-Flat Major, Op. 106 ‘Hammerklavier’: III. Adagio sostenuto16:47832924Alfred Brendel4Piano Sonata No. 29 in B-Flat Major, Op. 106 ‘Hammerklavier’: IV. Largo – Allegro risoluto12:31832924Alfred Brendel5Piano Sonata No. 32 in C Minor, Op. 111: I. Maestoso – Allegro con brio e appassionato8:28832924Alfred Brendel6Piano Sonata No. 32 in C Minor, Op. 111: II. Arietta. Adagio molto, semplice e cantabile15:47832924Alfred BrendelCD 47: Piano Sonatas Opp. 101, 109, 110 & 901Piano Sonata No. 28 in A Major, Op. 101: I. Allegretto ma non troppo3:18832924Alfred Brendel2Piano Sonata No. 28 in A Major, Op. 101: II. Vivace alla marcia6:12832924Alfred Brendel3Piano Sonata No. 28 in A Major, Op. 101: III. Adagio ma non troppo con affetto – Presto9:57832924Alfred Brendel4Piano Sonata No. 30 in E Major, Op. 109: I. Vivace ma non troppo – Adagio espressivo3:20832924Alfred Brendel5Piano Sonata No. 30 in E Major, Op. 109: II. Prestissimo2:22832924Alfred Brendel6Piano Sonata No. 30 in E Major, Op. 109: III. Tema con variazioni11:33832924Alfred Brendel7Piano Sonata No. 31 in A-Flat Major, Op. 110: I. Moderato cantabile, molto espressivo5:31832924Alfred Brendel8Piano Sonata No. 31 in A-Flat Major, Op. 110: II. Allegro molto – III. Adagio ma non troppo5:56832924Alfred Brendel9Piano Sonata No. 31 in A-Flat Major, Op. 110: III. Fuga. Allegro ma non troppoPiano Sonata No. 27 in E Minor, Op. 90: I. Mit Lebhaftigkeit und durchaus mit Empfindung und Ausdruck6:31832924Alfred Brendel10Piano Sonata No. 27 in E Minor, Op. 90: I. Mit Lebhaftigkeit und durchaus mit Empfindung und Ausdruck5:26832924Alfred Brendel11Piano Sonata No. 27 in E Minor, Op. 90: II. Nicht zu geschwind und sehr singbar vorzutragen7:38832924Alfred BrendelCD 48: Piano Sonatas Op. 57 'Appassionata' - Op. 54 - Op. 81A 'Les Adieux' - Op. 31 No. 11Piano Sonata No. 23 in F Minor, Op. 57 ‘Appassionata’: I. Allegro assai9:41832924Alfred Brendel2Piano Sonata No. 23 in F Minor, Op. 57 ‘Appassionata’: II. Andante con moto6:15832924Alfred Brendel3Piano Sonata No. 23 in F Minor, Op. 57 ‘Appassionata’: III. Allegro ma non troppo8:08832924Alfred Brendel4Piano Sonata No. 22 in F Major, Op. 54: I. In tempo d’un menuetto5:47832924Alfred Brendel5Piano Sonata No. 22 in F Major, Op. 54: II. Allegretto6:15832924Alfred Brendel6Piano Sonata No. 26 in E-Flat Major, Op. 81a ‘Les Adieux’: I. Les Adieux. Adagio – Allegro6:14832924Alfred Brendel7Piano Sonata No. 26 in E-Flat Major, Op. 81a ‘Les Adieux’: II. L’Absence. Andante espressivo3:09832924Alfred Brendel8Piano Sonata No. 26 in E-Flat Major, Op. 81a ‘Les Adieux’: III. Le Retour. Vivacissimamente5:37832924Alfred Brendel9Piano Sonata No. 16 in G Mayor, Op. 31 No. 1: I. Allegro vivace6:26832924Alfred Brendel10Piano Sonata No. 16 in G Mayor, Op. 31 No. 1: II. Adagio grazioso9:53832924Alfred Brendel11Piano Sonata No. 16 in G Mayor, Op. 31 No. 1: III. Rondo. Allegretto6:20832924Alfred BrendelCD 49: Piano Sonatas Op. 31 No. 2 'Tempest' - Op. 31 No. 3 - Op. 53 'Waldstein' - Op. 49 No.11Piano Sonata No. 17 in D Minor, Op. 31 No. 2 ‘Tempest’: I. Largo – Allegro – Adagio7:44832924Alfred Brendel2Piano Sonata No. 17 in D Minor, Op. 31 No. 2 ‘Tempest’: II. Adagio7:41832924Alfred Brendel3Piano Sonata No. 17 in D Minor, Op. 31 No. 2 ‘Tempest’: III. Allegretto5:46832924Alfred Brendel4Piano Sonata No. 18 in E-Flat Major, Op. 31 No. 3: I. Allegro8:04832924Alfred Brendel5Piano Sonata No. 18 in E-Flat Major, Op. 31 No. 3: II. Scherzo. Allegretto vivace4:48832924Alfred Brendel6Piano Sonata No. 18 in E-Flat Major, Op. 31 No. 3: III. Menuetto. Moderato e grazioso3:33832924Alfred Brendel7Piano Sonata No. 18 in E-Flat Major, Op. 31 No. 3: IV. Presto con fuoco4:51832924Alfred Brendel8Piano Sonata No. 21 in C Major, Op. 53 ‘Waldstein’: I. Allegro con brio11:07832924Alfred Brendel9Piano Sonata No. 21 in C Major, Op. 53 ‘Waldstein’: II. Introduzione. Adagio molto3:43832924Alfred Brendel10Piano Sonata No. 21 in C Major, Op. 53 ‘Waldstein’: III. Rondo. Allegretto moderato – Prestissimo9:43832924Alfred Brendel11Piano Sonata No. 19 in G Minor, Op. 49 No. 1: I. Andante3:53832924Alfred Brendel12Piano Sonata No. 19 in G Minor, Op. 49 No. 1: II. Rondo. Allegro3:39832924Alfred BrendelCD 50: Piano Sinatas Op. 2 No. 1 - Op. 79 - Op. 10 Nos. 1 & 2 - Op. 14 No.11Piano Sonata No. 1 in F Minor, Op. 2 No. 1: I. Allegro4:06832924Alfred Brendel2Piano Sonata No. 1 in F Minor, Op. 2 No. 1: II. Adagio4:13832924Alfred Brendel3Piano Sonata No. 1 in F Minor, Op. 2 No. 1: III. Menuetto. Allegretto – Trio3:28832924Alfred Brendel4Piano Sonata No. 1 in F Minor, Op. 2 No. 1: IV. Prestissimo5:13832924Alfred Brendel5Piano Sonata No. 25 in G Major, Op. 79: I. Presto alla tedesca4:59832924Alfred Brendel6Piano Sonata No. 25 in G Major, Op. 79: II. Andante2:29832924Alfred Brendel7Piano Sonata No. 25 in G Major, Op. 79: III. Vivace1:51832924Alfred Brendel8Piano Sonata No. 5 in C Minor, Op. 10 No. 1: I. Allegro molto e con brio6:08832924Alfred Brendel9Piano Sonata No. 5 in C Minor, Op. 10 No. 1: II. Adagio molto8:37832924Alfred Brendel10Piano Sonata No. 5 in C Minor, Op. 10 No. 1: III. Finale. Prestissimo3:57832924Alfred Brendel11Piano Sonata No. 6 in F Major, Op. 10 No. 2: I. Allegro5:21832924Alfred Brendel12Piano Sonata No. 6 in F Major, Op. 10 No. 2: II. Allegretto4:21832924Alfred Brendel13Piano Sonata No. 6 in F Major, Op. 10 No. 2: III. Presto4:06832924Alfred Brendel14Piano Sonata No. 9 in E Major, Op. 14 No. 1: I. Allegro7:01832924Alfred Brendel15Piano Sonata No. 9 in E Major, Op. 14 No. 1: II. Allegretto3:33832924Alfred Brendel16Piano Sonata No. 9 in E Major, Op. 14 No. 1: III. Rondo. Allegro comodo3:14832924Alfred BrendelCD 51: Piano Sonatas Op. 14 No. 2 - Op. 27 Nos. 1 & 2 'Moonlight' - Op. 28 'Pastoral'1Piano Sonata No. 10 in G Major, Op. 14 No. 2: I. Allegro7:08832924Alfred Brendel2Piano Sonata No. 10 in G Major, Op. 14 No. 2: II. Andante3:40832924Alfred Brendel3Piano Sonata No. 10 in G Major, Op. 14 No. 2: III. Scherzo. Allegro assai3:47832924Alfred Brendel4Piano Sonata No. 13 in E-Flat Major, Op. 27 No. 1: I. Andante – Allegro – Andante4:26832924Alfred Brendel5Piano Sonata No. 13 in E-Flat Major, Op. 27 No. 1: II. Allegro molto e vivace2:00832924Alfred Brendel6Piano Sonata No. 13 in E-Flat Major, Op. 27 No. 1: III. Adagio con espressione3:12832924Alfred Brendel7Piano Sonata No. 13 in E-Flat Major, Op. 27 No. 1: IV. Finale. Allegro vivace5:55832924Alfred Brendel8Piano Sonata No. 14 in C-Sharp Minor, Op. 27 No. 2 ‘Moonlight’: I. Adagio sostenuto6:01832924Alfred Brendel9Piano Sonata No. 14 in C-Sharp Minor, Op. 27 No. 2 ‘Moonlight’: II. Allegretto2:18832924Alfred Brendel10Piano Sonata No. 14 in C-Sharp Minor, Op. 27 No. 2 ‘Moonlight’: III. Presto agitato7:36832924Alfred Brendel11Piano Sonata No. 15 in D Major, Op. 28 ‘Pastoral’: I. Allegro9:55832924Alfred Brendel12Piano Sonata No. 15 in D Major, Op. 28 ‘Pastoral’: II. Andante7:30832924Alfred Brendel13Piano Sonata No. 15 in D Major, Op. 28 ‘Pastoral’: III. Scherzo. Allegro vivace – Trio - IV. Rondo. Allegro ma non troppo7:26832924Alfred BrendelCD 52: Piano Sonatas Op. 10 No. 3 - Op. 2 Nos. 2 & 31Piano Sonata No. 7 in D Major, Op. 10 No. 3: I. Presto6:51832924Alfred Brendel2Piano Sonata No. 7 in D Major, Op. 10 No. 3: II. Largo e mesto10:10832924Alfred Brendel3Piano Sonata No. 7 in D Major, Op. 10 No. 3: III. Menuetto. Allegro2:52832924Alfred Brendel4Piano Sonata No. 7 in D Major, Op. 10 No. 3: IV. Rondo. Allegro3:40832924Alfred Brendel5Piano Sonata No. 2 in A Major, Op. 2 No. 2: I. Allegro vivace7:06832924Alfred Brendel6Piano Sonata No. 2 in A Major, Op. 2 No. 2: II. Largo appassionato6:34832924Alfred Brendel7Piano Sonata No. 2 in A Major, Op. 2 No. 2: III. Scherzo. Allegretto – Trio3:29832924Alfred Brendel8Piano Sonata No. 2 in A Major, Op. 2 No. 2: IV. Rondo. Grazioso6:35832924Alfred Brendel9Piano Sonata No. 3 in C Major, Op. 2 No. 3: I. Allegro con brio10:28832924Alfred Brendel10Piano Sonata No. 3 in C Major, Op. 2 No. 3: II. Adagio7:52832924Alfred Brendel11Piano Sonata No. 3 in C Major, Op. 2 No. 3: III. Scherzo. Allegro – Trio3:20832924Alfred Brendel12Piano Sonata No. 3 in C Major, Op. 2 No. 3: IV. Allegro assai5:31832924Alfred BrendelCD 53: Piano Sonatas Op. 13 'Pathétique' - Op. 22 - Op. 26 'Funeral March' - Op. 781Piano Sonata No. 8 in C Minor, Op. 13 ‘Pathétique’: I. Grave – Allegro di molto e con brio9:08832924Alfred Brendel2Piano Sonata No. 8 in C Minor, Op. 13 ‘Pathétique’: II. Adagio cantabile5:44832924Alfred Brendel3Piano Sonata No. 8 in C Minor, Op. 13 ‘Pathétique’: III. Rondo. Allegro4:16832924Alfred Brendel4Piano Sonata No. 11 in B-Flat Major, Op. 22: I. Allegro con brio7:53832924Alfred Brendel5Piano Sonata No. 11 in B-Flat Major, Op. 22: II. Adagio con molto espressione6:38832924Alfred Brendel6Piano Sonata No. 11 in B-Flat Major, Op. 22: III. Menuetto3:37832924Alfred Brendel7Piano Sonata No. 11 in B-Flat Major, Op. 22: IV. Rondo. Allegretto6:29832924Alfred Brendel8Piano Sonata No. 12 in A-Flat Major, Op. 26 ‘Funeral March’: I. Andante con variazioni7:53832924Alfred Brendel9Piano Sonata No. 12 in A-Flat Major, Op. 26 ‘Funeral March’: II. Scherzo. Allegro molto – Trio2:57832924Alfred Brendel10Piano Sonata No. 12 in A-Flat Major, Op. 26 ‘Funeral March’: III. Maestoso andante ‘Marcia funebre sulla morte d’une Eroe’5:40832924Alfred Brendel11Piano Sonata No. 12 in A-Flat Major, Op. 26 ‘Funeral March’: IV. Allegro3:04832924Alfred Brendel12Piano Sonata No. 24 in F-Sharp Major, Op. 78: I. Adagio cantabile – Allegro ma non troppo7:02832924Alfred Brendel13Piano Sonata No. 24 in F-Sharp Major, Op. 78: II. Allegro vivace2:44832924Alfred BrendelCD 54: Piano Sonatas Op. 7 - Op. 49 No. 21Piano Sonata No. 4 in E-Flat Major, Op. 7: I. Allegro molto e con brio8:11832924Alfred Brendel2Piano Sonata No. 4 in E-Flat Major, Op. 7: II. Largo con gran espressione8:20832924Alfred Brendel3Piano Sonata No. 4 in E-Flat Major, Op. 7: III. Allegro5:06832924Alfred Brendel4Piano Sonata No. 4 in E-Flat Major, Op. 7: IV. Rondo. Poco allegretto e grazioso7:22832924Alfred Brendel5Piano Sonata No. 20 in G Major, Op. 49 No. 2: I. Allegro ma non troppo4:31832924Alfred Brendel6Piano Sonata No. 20 in G Major, Op. 49 No. 2: II. Tempo di menuetto3:42832924Alfred BrendelCD 55: Piano Variations I - Piano Sonata Op. 49 No. 2115 Variations in E-Flat Major on a Theme from ‘Prometheus’, Op. 35 ‘Eroica’22:40832924Alfred Brendel2Piano Sonata No. 20 in G Major, Op. 49 No. 2: I. Allegro non troppo4:31832924Alfred Brendel3Piano Sonata No. 20 in G Major, Op. 49 No. 2: II. Tempo di Menuetto3:32832924Alfred Brendel45 Variations in D Major on ‘Rule Britannia’ WoO 794:28832924Alfred Brendel57 Variations in D Major on ‘God Save The King’, WoO 788:42832924Alfred Brendel612 Variations in A Major on a Russian Dance from Wranitsky’s Ballet ‘Das Waldmädchen’, WoO 7111:35832924Alfred Brendel76 Variations in G Major on an Original Theme, Op. 3412:41832924Alfred Brendel86 Variations In D Major on a Theme from ‘Ruins of Athens’, Op. 765:49832924Alfred BrendelCD 56: Piano Variations II132 Variations in C Minor on an Original Theme, WoO 8011:04832924Alfred Brendel27 Variations in F Major from Winter’s Opera ‘Das unterbrochene Opferfest’, WoO 7510:49832924Alfred Brendel324 Variations in D Major on Righini’s Air ‘Venni amore’, WoO 6515:57832924Alfred Brendel46 Variations in G Major on the Duet from Paisello’s ‘La Molinara’, WoO 704:38832924Alfred Brendel58 Variations in F Major on Süssmayr’s Theme ‘Tändeln und Scherzen’, WoO 768:09832924Alfred Brendel613 Variations in A Major on Dittersdorf’s Air ‘Es war einmal ein alter Mann’, WoO 6611:58832924Alfred Brendel710 Variations in B-Flat Major on Salieri’s Air ‘La stesa la stesissima’, WoO 739:43832924Alfred BrendelCD 57: Piano Variations III - Piano Sonatas WoO47 - Miscellaneous Piano Works I16 Easy Variations in F Major, WoO 64 on a Swiss Air2:53832924Alfred Brendel29 Variations in A Major on Paisello’s Air ‘Quant’e più bello’, WoO 695:29832924Alfred Brendel36 Variations in G Major on an Original Theme, WoO 774:52832924Alfred Brendel48 Variations in C on Grétry’s Air ‘Un fievre brûlante’, WoO 726:45832924Alfred Brendel5Rondo in G Major, Op. 51 No. 29:48832924Alfred Brendel6Allegretto in C Minor, WoO 533:51832924Alfred Brendel76 Ecossaises, WoO 831:58832924Alfred Brendel8Bagatelle in A Minor, WoO 59 ‘Für Elise’2:47832924Alfred Brendel9Polonaise in C Major, Op. 895:31832924Alfred Brendel10Piano Sonata in E-Flat Major, WoO 47 No. 1 ‘Kurfürstensonate’: I. Allegro cantabile4:381777082Ulrich Stærk11Piano Sonata in E-Flat Major, WoO 47 No. 1 ‘Kurfürstensonate’: II. Andante6:181777082Ulrich Stærk12Piano Sonata in E-Flat Major, WoO 47 No. 1 ‘Kurfürstensonate’: III. Rondo. Vivace2:461777082Ulrich Stærk13Piano Sonata in F Minor, WoO 47 No. 2 ‘Kurfürstensonate’: I. Larghetto maestoso3:161777082Ulrich Stærk14Piano Sonata in F Minor, WoO 47 No. 2 ‘Kurfürstensonate’: II. Andante8:031777082Ulrich Stærk15Piano Sonata in F Minor, WoO 47 No. 2 ‘Kurfürstensonate’: III. Presto3:401777082Ulrich StærkCD 58: Piano Variations IV - Bagatelles I133 Variations in C Major, Op. 120 on a Waltz by Diabelli: Theme0:52832924Alfred Brendel233 Variations in C Major, Op. 120 on a Waltz by Diabelli: Alla Marcia1:53832924Alfred Brendel333 Variations in C Major, Op. 120 on a Waltz by Diabelli: Poco allegro0:47832924Alfred Brendel433 Variations in C Major, Op. 120 on a Waltz by Diabelli: L’istesso tempo1:21832924Alfred Brendel533 Variations in C Major, Op. 120 on a Waltz by Diabelli: Un poco più vivace0:55832924Alfred Brendel633 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro vivace0:55832924Alfred Brendel733 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro ma non troppo1:41832924Alfred Brendel833 Variations in C Major, Op. 120 on a Waltz by Diabelli: Poco più allegro1:20832924Alfred Brendel933 Variations in C Major, Op. 120 on a Waltz by Diabelli: Poco vivace1:25832924Alfred Brendel1033 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro pesante1:45832924Alfred Brendel1133 Variations in C Major, Op. 120 on a Waltz by Diabelli: Presto0:39832924Alfred Brendel1233 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegretto0:55832924Alfred Brendel1333 Variations in C Major, Op. 120 on a Waltz by Diabelli: Poco più mosso0:46832924Alfred Brendel1433 Variations in C Major, Op. 120 on a Waltz by Diabelli: Vivace0:58832924Alfred Brendel1533 Variations in C Major, Op. 120 on a Waltz by Diabelli: Grave4:02832924Alfred Brendel1633 Variations in C Major, Op. 120 on a Waltz by Diabelli: Presto scherzando0:34832924Alfred Brendel1733 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro1:00832924Alfred Brendel1833 Variations in C Major, Op. 120 on a Waltz by Diabelli: Variation1:07832924Alfred Brendel1933 Variations in C Major, Op. 120 on a Waltz by Diabelli: Moderato1:39832924Alfred Brendel2033 Variations in C Major, Op. 120 on a Waltz by Diabelli: Presto0:54832924Alfred Brendel2133 Variations in C Major, Op. 120 on a Waltz by Diabelli: Andante2:11832924Alfred Brendel2233 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro con brio1:20832924Alfred Brendel2333 Variations in C Major, Op. 120 on a Waltz by Diabelli: Molto allegro0:40832924Alfred Brendel2433 Variations in C Major, Op. 120 on a Waltz by Diabelli: Assai allegro0:51832924Alfred Brendel2533 Variations in C Major, Op. 120 on a Waltz by Diabelli: Fughetta3:43832924Alfred Brendel2633 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro0:49832924Alfred Brendel2733 Variations in C Major, Op. 120 on a Waltz by Diabelli: Variation1:00832924Alfred Brendel2833 Variations in C Major, Op. 120 on a Waltz by Diabelli: Vivace0:58832924Alfred Brendel2933 Variations in C Major, Op. 120 on a Waltz by Diabelli: Allegro0:59832924Alfred Brendel3033 Variations in C Major, Op. 120 on a Waltz by Diabelli: Adagio ma non troppo1:19832924Alfred Brendel3133 Variations in C Major, Op. 120 on a Waltz by Diabelli: Andante sempre2:30832924Alfred Brendel3233 Variations in C Major, Op. 120 on a Waltz by Diabelli: Largo4:26832924Alfred Brendel3333 Variations in C Major, Op. 120 on a Waltz by Diabelli: Fuga. Allegro2:53832924Alfred Brendel3433 Variations in C Major, Op. 120 on a Waltz by Diabelli: Tempo di Menuetto3:49832924Alfred Brendel3511 Bagatelles, Op. 119: Allegretto in G Major2:33832924Alfred Brendel3611 Bagatelles, Op. 119: Andante con moto in C Major0:55832924Alfred Brendel3711 Bagatelles, Op. 119: Allemande in D Major1:30832924Alfred Brendel3811 Bagatelles, Op. 119: Andante cantabile in A Major1:30832924Alfred Brendel3911 Bagatelles, Op. 119: Risoluto in C Minor1:02832924Alfred Brendel4011 Bagatelles, Op. 119: Andante in G Major0:30832924Alfred Brendel4111 Bagatelles, Op. 119: Allegro ma non troppo in C Major1:21832924Alfred Brendel4211 Bagatelles, Op. 119: Moderato cantabile in C Major1:07832924Alfred Brendel4311 Bagatelles, Op. 119: Vivace moderato in A Minor1:54832924Alfred Brendel4411 Bagatelles, Op. 119: Allegramente in A Major0:47832924Alfred Brendel4511 Bagatelles, Op. 119: Andante ma non troppo in B-Flat Major1:53832924Alfred BrendelCD 59: Bagatelles II - Miscellaneous Piano Works II16 Bagatelles, Op. 126: Andante in G Major3:02832924Alfred Brendel26 Bagatelles, Op. 126: Allegro in G Minor2:53832924Alfred Brendel36 Bagatelles, Op. 126: Andante in E-Flat Major2:47832924Alfred Brendel46 Bagatelles, Op. 126: Presto in B Minor3:57832924Alfred Brendel56 Bagatelles, Op. 126: Quasi allegretto in G Major2:35832924Alfred Brendel66 Bagatelles, Op. 126: Presto – Andante in E-Flat Major4:38832924Alfred Brendel7Rondo a Capriccio in G Major, Op. 129 ‘Die Wut über den verlorenen Groschen’6:06832924Alfred Brendel8Rondo in C Major, Op. 51 No. 15:45832924Alfred Brendel97 Bagatelles, Op. 33: Andante, quasi allegretto in E-Flat Major3:45832924Alfred Brendel107 Bagatelles, Op. 33: Scherzo. Allegro in C Major2:38832924Alfred Brendel117 Bagatelles, Op. 33: Allegretto in F Major1:59832924Alfred Brendel127 Bagatelles, Op. 33: Andante in A Major3:42832924Alfred Brendel137 Bagatelles, Op. 33: Allegro ma non troppo in C Major3:08832924Alfred Brendel147 Bagatelles, Op. 33: Allegretto in C Major2:18832924Alfred Brendel157 Bagatelles, Op. 33: Presto in D Major2:01832924Alfred Brendel16Andante favori in F Major, WoO 578:49832924Alfred Brendel17Ziemlich lebhaft in B-Flat Major, WoO 601:14832924Alfred BrendelCD 60: Miscellaneous Piano Works III - Piano Variations V1Presto in C Minor, WoO 523:222055968Georg Friedrich Schenck2Allegretto in C Major, Hess 692:002055968Georg Friedrich Schenck3Bagatelle. Lustig – Traurig WoO 541:142055968Georg Friedrich Schenck4Rondo in C Major WoO 481:572055968Georg Friedrich Schenck5Rondo in A Major WoO 491:552055968Georg Friedrich Schenck6Two movements of a Sonatina in F WoO 50: I. Movement No. 11:062055968Georg Friedrich Schenck7Two movements of a Sonatina in F WoO 50: II. Movement No. 20:292055968Georg Friedrich Schenck8Allemande, WoO 811:272055968Georg Friedrich Schenck9Anglaise in D Major, Hess 610:292055968Georg Friedrich Schenck10Prelude in F Minor, WoO 551:312055968Georg Friedrich Schenck11Fantasia in G Minor, Op. 779:352055968Georg Friedrich Schenck12Allegretto in B Minor, WoO 612:572055968Georg Friedrich Schenck139 Variations on a March of Dressler, WoO 63: Thema. Maestoso0:592055968Georg Friedrich Schenck149 Variations on a March of Dressler, WoO 63: Var. 10:582055968Georg Friedrich Schenck159 Variations on a March of Dressler, WoO 63: Var. 20:542055968Georg Friedrich Schenck169 Variations on a March of Dressler, WoO 63: Var. 30:562055968Georg Friedrich Schenck179 Variations on a March of Dressler, WoO 63: Var. 40:572055968Georg Friedrich Schenck189 Variations on a March of Dressler, WoO 63: Var. 51:012055968Georg Friedrich Schenck199 Variations on a March of Dressler, WoO 63: Var. 60:592055968Georg Friedrich Schenck209 Variations on a March of Dressler, WoO 63: Var. 70:472055968Georg Friedrich Schenck219 Variations on a March of Dressler, WoO 63: Var. 80:492055968Georg Friedrich Schenck229 Variations on a March of Dressler, WoO 63: Var. 91:302055968Georg Friedrich Schenck232 Preludes, Op. 39: Prelude No. 14:332055968Georg Friedrich Schenck242 Preludes, Op. 39: Prelude No. 22:442055968Georg Friedrich Schenck25Fugue in C Major, Hess 641:252055968Georg Friedrich Schenck26Minuet in E-Flat Major, WoO 823:192055968Georg Friedrich Schenck27Allegretto in C Major, WoO 561:152055968Georg Friedrich Schenck2812 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Thema. Allegretto0:502055968Georg Friedrich Schenck2912 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 10:432055968Georg Friedrich Schenck3012 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 20:412055968Georg Friedrich Schenck3112 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 30:512055968Georg Friedrich Schenck3212 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 40:502055968Georg Friedrich Schenck3312 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 50:502055968Georg Friedrich Schenck3412 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 60:502055968Georg Friedrich Schenck3512 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 70:412055968Georg Friedrich Schenck3612 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 80:412055968Georg Friedrich Schenck3712 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 90:422055968Georg Friedrich Schenck3812 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 100:422055968Georg Friedrich Schenck3912 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 110:512055968Georg Friedrich Schenck4012 Variations in C Major on a Menuet ‘À la Viganò’ by Haibel, WoO 6: Var. 122:192055968Georg Friedrich Schenck41Waltz in E-Flat Major, WoO 841:162055968Georg Friedrich Schenck42Allegretto quasi andante, WoO 61a0:312055968Georg Friedrich Schenck43Waltz in D Major, WoO 850:292055968Georg Friedrich Schenck44Ecossaise in E-Flat Major, WoO 860:172055968Georg Friedrich SchenckCD 61: Piano Works 4-Hands1Sonata in D Major for Piano Four Hands, Op. 6: I. Allegro molto2:502056889Frank Zabel,2056887Stefan Thomas (2)2Sonata in D Major for Piano Four Hands, Op. 6: II. Rondo2:592056889Frank Zabel,2056887Stefan Thomas (2)38 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Thema0:392056889Frank Zabel,2056887Stefan Thomas (2)48 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 10:342056889Frank Zabel,2056887Stefan Thomas (2)58 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 20:382056889Frank Zabel,2056887Stefan Thomas (2)68 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 30:422056889Frank Zabel,2056887Stefan Thomas (2)78 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 40:282056889Frank Zabel,2056887Stefan Thomas (2)88 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 50:392056889Frank Zabel,2056887Stefan Thomas (2)98 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 60:392056889Frank Zabel,2056887Stefan Thomas (2)108 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 70:492056889Frank Zabel,2056887Stefan Thomas (2)118 Variations in C Major for Piano Four Hands on a Theme by Count Waldstein, WoO 67: Var. 84:062056889Frank Zabel,2056887Stefan Thomas (2)123 Marches, Op. 45 for Piano Four Hands: No. 1 in C Major, Allegro ma non troppo4:342056889Frank Zabel,2056887Stefan Thomas (2)133 Marches, Op. 45 for Piano Four Hands: No. 2 in E-Flat Major, Vivace5:282056889Frank Zabel,2056887Stefan Thomas (2)143 Marches, Op. 45 for Piano Four Hands: No. 3 in D Major, Vivace5:202056889Frank Zabel,2056887Stefan Thomas (2)156 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Thema0:402056889Frank Zabel,2056887Stefan Thomas (2)166 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Var. 10:372056889Frank Zabel,2056887Stefan Thomas (2)176 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Var. 20:372056889Frank Zabel,2056887Stefan Thomas (2)186 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Var. 31:002056889Frank Zabel,2056887Stefan Thomas (2)196 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Var. 40:412056889Frank Zabel,2056887Stefan Thomas (2)206 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Var. 50:512056889Frank Zabel,2056887Stefan Thomas (2)216 Variations in D Major for piano four-hands on ‘Ich denke dein’, WoO 74: Var. 61:242056889Frank Zabel,2056887Stefan Thomas (2)22Grosse Fuge, Op. 134, Beethoven’s Own Arrangement for Piano Four Hands of the Große Fuge for String Quartet, Op. 133: Overtura. Allegro0:472056889Frank Zabel,2056887Stefan Thomas (2)23Grosse Fuge, Op. 134, Beethoven’s Own Arrangement for Piano Four Hands of the Große Fuge for String Quartet, Op. 133: Fuga. Allegro4:192056889Frank Zabel,2056887Stefan Thomas (2)24Grosse Fuge, Op. 134, Beethoven’s Own Arrangement for Piano Four Hands of the Große Fuge for String Quartet, Op. 133: Meno mosso e moderato3:072056889Frank Zabel,2056887Stefan Thomas (2)25Grosse Fuge, Op. 134, Beethoven’s Own Arrangement for Piano Four Hands of the Große Fuge for String Quartet, Op. 133: Allegro5:172056889Frank Zabel,2056887Stefan Thomas (2)26Grosse Fuge, Op. 134, Beethoven’s Own Arrangement for Piano Four Hands of the Große Fuge for String Quartet, Op. 133: Allegro molto e con brio2:082056889Frank Zabel,2056887Stefan Thomas (2)27Grosse Fuge, Op. 134, Beethoven’s Own Arrangement for Piano Four Hands of the Große Fuge for String Quartet, Op. 133: Allegro molto e con brio1:152056889Frank Zabel,2056887Stefan Thomas (2)28Piano Sonata in D Major, WoO 47 No. 3 ‘Kurfürstensonate’: I. Allegro7:191777082Ulrich Stærk29Piano Sonata in D Major, WoO 47 No. 3 ‘Kurfürstensonate’: II. Menuetto8:501777082Ulrich Stærk30Piano Sonata in D Major, WoO 47 No. 3 ‘Kurfürstensonate’: III. Scherzando3:511777082Ulrich StærkCD 62: Leonore (Beginning)1Leonore: Overture14:03526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt2Leonore, Act 1: “Fidelio kommt nicht zurück!” (Marzelline)0:35526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt3Leonore, Act 1: No. 1, Aria “O wär’ich schon mit dir vereint” (Marzelline)4:33526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt4Leonore, Act 1: “Wenn ich diese Tür nicht” (Jaquino, Marzelline)0:23526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt5Leonore, Act 1: No. 2, Duetto “Jetzt, Schätzchen” (Jaquino, Marzelline)5:04526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt6Leonore, Act 1: “Höre, Jaquino” (Marzelline, Jaquino, Rocco)2:00526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt7Leonore, Act 1: No. 3, Terzetto “Ein Mann ist bald genommen” (Rocco, Jaquino, Marzelline)3:41526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt8Leonore, Act 1: “Ist Fidelio noch nich nach Hause gekommen?” (Rocco, Marzelline, Jaquino, Leonore)1:18526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt9Leonore, Act 1: No. 4, Canon” (Quartetto) “Mir ist so wunderbar” (Marzelline, Leonore, Rocco, Jaquino)5:52526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt10Leonore, Act 1: “Höre, Fidelio” (Rocco, Marzelline, Leonore)0:48526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt11Leonore, Act 1: No. 5, Aria “Hat man nich auch Gold beineben” (Rocco)2:47526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt12Leonore, Act 1: “Ihr könnt das leicht sagen” (Leonore, Rocco, Marzelline)2:38526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt13Leonore, Act 1: No. 6, Terzetto “Gut, Sönnchen, gut” (Rocco, Leonore, Marzelline)7:08526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt14Leonore, Act 2: No. 7, March1:58526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt15Leonore, Act 2: “Drei Schildwachten auf den Wall” (Pizarro, Rocco)1:35526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt16Leonore, Act 2: No. 8, Aria with Chorus “Ha! Welch ein Augenblick!” (Pizarro, Rocco)2:58526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt17Leonore, Act 2: “Rocco!” (Pizarro, Rocco)0:09526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt18Leonore, Act 2: No. 9, Duetto “Jetzt, Alter, jetzt hat es Eile!” (Pizarro, Rocco)5:00526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt19Leonore, Act 2: “Nun ist es endlich entschieden” (Marzelline, Leonore)0:10526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt20Leonore, Act 2: No. 10, Duetto “Im in der Ehe froh zu leben” (Marzelline, Leonore)6:05526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt21Leonore, Act 2: “Sie doch, wie du so schnell” (Marzelline, Leonore)1:17526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt22Leonore, Act 2: No. 11, Recitativo & Aria “Ach, brich noch nicht” (Leonore)8:16526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert BlomstedtCD 63: Leonore (Conclusion)1Leonore, Act 2: No. 12, Finale “O welche Lust!” (Chorus of the Prisoners)8:38526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt2Leonore, Act 2: “Entfernt euch jetzt !” (Rocco, Leonore)2:52526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt3Leonore, Act 2: “Wir müssen gleich zu Werke schreiten” (Rocco, Leonore, Marzelline, Pizarro)3:46526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt4Leonore, Act 2: “Auf euch nur will ich bauen” (Pizarro, Chorus)3:50526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt5Leonore, Act 3: No. 13, Recitativo & Aria “Gott! Welch dunkel hier!” (Florestan)10:57526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt6Leonore, Act 3: No. 14, Melodrama & Duetto “Wie kalt ist es” (Leonore, Rocco)6:01526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt7Leonore, Act 3: “Er erwacht!” (Leonore, Rocco, Florestan)2:13526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt8Leonore, Act 3: No. 15, Terzetto “Euch werde Lohn in bessern Welten” (Florestan, Rocco, Leonore)6:49526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt9Leonore, Act 3: “Alles ist bereit” (Rocco, Leonore, Pizarro)0:32526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt10Leonore, Act 3: No. 16, Quartetto “Er sterbe!” (Pizarro, Florestan, Leonore, Rocco)4:38526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt11Leonore, Act 3: “Die Waffe hab’ich mir” (Leonore)0:13526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt12Leonore, Act 3: No. 17, Recitativo & Duetto “Ich kann mich noch nicht fassen” (Florestan, Leonore)9:27526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt13Leonore, Act 3: “O Leonore, sprich!” (Florestan, Leonore)0:35526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt14Leonore, Act 3: No. 18, Finale “Zur Rache” (Chorus, Leonore, Florestan, Rocco, Don Fernando)5:07526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt15Leonore, Act 3: “O Gott! O welch ein Augenblick!” (Leonore, Marzelline, Florestan, Don Fernando, Rocco, Chorus)5:04526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt16Leonore, Act 3: “Wie lange habt Ihr sie getragen?” (Don Fernando, Florestan, Rocco, Chorus, Leonore, Marzelline, Jaquino)2:04526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt17Leonore, Act 3: “Preist mit hoher Freude Glut” (Chorus)0:39526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert Blomstedt18Leonore, Act 3: “Wer ein solches Weib errungen” (Florestan, Marzelline, Jaquino, Rocco, Don Fernando, Chorus)4:52526416Hermann Christian Polster,526411Theo Adam,1211023Richard Cassilly,459665Edda Moser,834073Karl Ridderbusch,303060Helen Donath,497008Eberhard Büchner,931414Reiner Goldberg,839704Siegfried Lorenz,455839Rundfunkchor Leipzig,578737Staatskapelle Dresden,508213Herbert BlomstedtCD 64: Fidelio (Beginning)1Fidelio: Ouverture6:432633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis2Fidelio, Act 1 Scene 1: “Jetzt, Schätzchen” (Jaquino, Marzelline)4:252633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis3Fidelio, Act 1 Scene 1: “Der arme Jaquino” (Marzelline)0:212633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis4Fidelio, Act 1 Scene 1: “O wär’ ich schon mit dir vereint” (Marzelline)4:032633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis5Fidelio, Act 1 Scene 1: “Ist Fidelio noch nicht zurück gekommen?” (Rocco, Marzelline, Leonore)0:412633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis6Fidelio, Act 1 Scene 1: “Mir ist so wunderbar” (Marzelline, Leonore, Rocco, Jaquino)4:332633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis7Fidelio, Act 1 Scene 1: “Höre, Fidelio” (Rocco, Marzelline, Leonore)0:352633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis8Fidelio, Act 1 Scene 1: “Hat man nicht auch Gold beineben” (Rocco)2:512633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis9Fidelio, Act 1 Scene 1: “Ihr könnt das leicht sagen” (Leonore, Rocco, Marzelline)1:452633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis10Fidelio, Act 1 Scene 1: “Gut, Söhnchen, gut” (Rocco, Leonore, Marzelline)6:142633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis11Fidelio, Act 1 Scene 2: March2:122633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis12Fidelio, Act 1 Scene 2: “Drei Schildwachen auf den Wall” (Pizarro, Chorus)0:502633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis13Fidelio, Act 1 Scene 2: “Ha! Welch’ ein Augenblick!” (Pizarro, Chorus)3:102633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis14Fidelio, Act 1 Scene 2: “Hauptmann” (Pizarro)0:272633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis15Fidelio, Act 1 Scene 2: “Jetzt. Alter, jetzt hat es Eile!” (Pizarro, Rocco)4:442633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis16Fidelio, Act 1 Scene 2: “Abscheulicher! Wo eilst du hin?” (Leonore)7:522633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis17Fidelio, Act 1 Scene 2: “Rocco, ich ersuchte euch schon” (Leonore, Rocco, Marzelline)0:302633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis18Fidelio, Act 1 Scene 2: “O welche Lust!” (Chorus, 1st Prisoner, 2nd Prisoner)7:582633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis19Fidelio, Act 1 Scene 2: “Nun sprecht, wie ging’s?” (Leonore, Rocco, Marzelline, Jaquino, Pizarro)7:282633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis20Fidelio, Act 1 Scene 2: “Leb wohl, du warmes Sonnenlicht” (Chorus, Marzelline, Leonore, Jaquino, Pizarro, Rocco)4:252633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin DavisCD 65: Fidelio (Conclusion)1Fidelio, Act 2 Scene 1: Introduction0:302633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis2Fidelio, Act 2 Scene 1: “Gott! Welch Dunkel hier!” (Florestan)5:192633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis3Fidelio, Act 2 Scene 1: “Wie kalt ist es” (Leonore, Rocco)0:052633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis4Fidelio, Act 2 Scene 1: “Er erwacht!” (Leonore, Rocco, Florestan)2:482633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis5Fidelio, Act 2 Scene 1: “Euch werde Lohn in besser’n Welten” (Florestan, Rocco, Leonore)6:562633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis6Fidelio, Act 2 Scene 1: “Alles ist bereit” (Rocco, Florestan, Leonore, Pizarro)3:412633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis7Fidelio, Act 2 Scene 1: “Er sterbe!” (Pizarro, Florestan, Leonore, Rocco, Jaquino)4:342633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis8Fidelio, Act 2 Scene 1: “O, meine Leonore” (Florestan, Leonore)3:492633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis9Fidelio, Act 2 Scene 1: “O namenlose Freude!” (Leonore, Florestan)7:342633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis10Fidelio, Act 2 Scene 2: “Wer ein holdes Weib errungen” (Chorus, Leonore, Florestan)5:422633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis11Fidelio, Act 2 Scene 2: “O Gott!” (Leonore, Florestan, Don Fernando, Marzelline, Rocco, Chorus)1:042633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin Davis12Fidelio, Act 2 Scene 2: “Wer ein holdes Weib errungen” (Chorus, Florestan, Leonore, Marzelline, Jaquino, Don Fernando, Rocco)6:412633068Christine Brewer,2607695John Mac Master,1117427Kristinn Sigmundsson,3668078Sally Matthews,2883389Juha Uusitalo,2104655Andrew Kennedy,3901816Daniel Borowski,2124481Andrew Tortise,4332523Darren Jeffery,212726London Symphony Orchestra,839085London Symphony Chorus,835518Sir Colin DavisCD 66: Egmont1Egmont: Ouvertüre9:031368925Elisabeth Breul,558518Horst Schulze,833446Staatskapelle Berlin,1013781Heinz Bongartz2Egmont: No. 1, Lied “Die Trommel gerühret!” (Klärchen)2:581368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz3Egmont: No. 2, Zwischenakt I3:391368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz4Egmont: No. 3, Zwischenakt II5:341368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz5Egmont: No. 4, Lied. Freudvoll und Leidvoll1:551368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz6Egmont: No. 5, Zwischenakt III3:541368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz7Egmont: No. 6, Zwischenakt IV4:341368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz8Egmont: Monolog “Alter Freund!” (Egmont)3:481368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz9Egmont: No. 7, Musik, Klärchen’s Tod bezeichnend2:241368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz10Egmont: Egmont: Monolog “Es ist vorbei” (Egmont). 7, Musik, Klärchen’s Tod bezeichnend0:191368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz11Egmont: No. 8, Melodram. Süßer Schlaf (Egmont)4:591368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz12Egmont: Monolog “Verschwunden ist der Kranz” (Egmont)2:021368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz Bongartz13Egmont: No. 9, Siegessymphonie1:301368925Elisabeth Breul,1368925Elisabeth Breul,833446Staatskapelle Berlin,1013781Heinz BongartzCD 67: The Creatures Of Prometheus - Ritterballett1The Creatures of Prometheus: Ouvertüre. Adagio – Allegro molto con brio – Introduction. Allegro non troppo10:18933312Rochester Philharmonic Orchestra,576026David Zinman2The Creatures of Prometheus: Adagio – Allegro con brio – Allegro vivace3:54933312Rochester Philharmonic Orchestra,576026David Zinman3The Creatures of Prometheus: Maestoso andante – Adagio – Andante quasi allegretto10:00933312Rochester Philharmonic Orchestra,576026David Zinman4The Creatures of Prometheus: Allegro con brio – Presto6:48933312Rochester Philharmonic Orchestra,576026David Zinman5The Creatures of Prometheus: Adagio – Adagio – Allegro molto3:45933312Rochester Philharmonic Orchestra,576026David Zinman6The Creatures of Prometheus: Pastorale. Allegro2:47933312Rochester Philharmonic Orchestra,576026David Zinman7The Creatures of Prometheus: Maestoso – Allegro (solo di Gioia)2:55933312Rochester Philharmonic Orchestra,576026David Zinman8The Creatures of Prometheus: Allegro3:08933312Rochester Philharmonic Orchestra,576026David Zinman9The Creatures of Prometheus: Andante – Adagio – Allegro – Allegretto (solo della Cassentini)5:06933312Rochester Philharmonic Orchestra,576026David Zinman10The Creatures of Prometheus: Andantino – Adagio – Allegro (solo di Vigano)4:33933312Rochester Philharmonic Orchestra,576026David Zinman11The Creatures of Prometheus: Finale. Allegretto – Alle gro molto – Presto5:57933312Rochester Philharmonic Orchestra,576026David Zinman12Musik zu einem Ritterballett, WoO 1: Marsch1:48833446Staatskapelle Berlin,523989Günther Herbig13Musik zu einem Ritterballett, WoO 1: Deutscher Gesang. Allegro moderato0:55833446Staatskapelle Berlin,523989Günther Herbig14Musik zu einem Ritterballett, WoO 1: Jagdlied. Allegretto1:38833446Staatskapelle Berlin,523989Günther Herbig15Musik zu einem Ritterballett, WoO 1: Romanze. Andantino1:26833446Staatskapelle Berlin,523989Günther Herbig16Musik zu einem Ritterballett, WoO 1: Kriegslied. Allegro assai con brio1:01833446Staatskapelle Berlin,523989Günther Herbig17Musik zu einem Ritterballett, WoO 1: Trinklied. Allegro con brio1:42833446Staatskapelle Berlin,523989Günther Herbig18Musik zu einem Ritterballett, WoO 1: Deutscher Tanz. Walzer0:31833446Staatskapelle Berlin,523989Günther Herbig19Musik zu einem Ritterballett, WoO 1: Coda. Allegro vivace – Andantino – Tempo I1:43833446Staatskapelle Berlin,523989Günther HerbigCD 68: The Ruins Of Athens - King Stephan - Germania - Chor Auf Die Verbündeten Fürsten - 'Ihr Weisen Gründer'1Die Ruinen von Athen, Op. 113: Overture4:432064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler2Die Ruinen von Athen, Op. 113: Chor. Tochter des mächtigen Zeus3:382064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler3Die Ruinen von Athen, Op. 113: Duet. Ohne Verschulden3:352064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler4Die Ruinen von Athen, Op. 113: Chor der Derwische3:142064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler5Die Ruinen von Athen, Op. 113: Marcia alla Turca1:342064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler6Die Ruinen von Athen, Op. 113: Marsch. Schmückt die Altare3:132064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler7Die Ruinen von Athen, Op. 113: Chor & Arie. Wir tragen empfängliche Herzen7:072064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler8Die Ruinen von Athen, Op. 113: Chor. Heil unserm König3:592064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler9König Stephan, Op. 117: Overture7:092064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler10König Stephan, Op. 117: Männerchor. Ruhend von seinen Taten2:312064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler11König Stephan, Op. 117: Männerchor. Auf dunklem Irrweg1:212064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler12König Stephan, Op. 117: Siegesmarsch1:462064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler13König Stephan, Op. 117: Frauenchor. Wo die Unschuld2:402064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler14König Stephan, Op. 117: Chor. Eine neue strahlende Sonne0:452064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler15König Stephan, Op. 117: Chor. Heil, Heil, Heil2:052064924Neumar Starling,2064921Vladimir De Kanel,2064922Berliner Konzertchor,459673Berliner Symphoniker,1940046Hans-Hubert Schönzeler16Germania. Aria with Chorus in B-Flat Major, WoO 945:041057180Florian Prey,882788Chamber Choir of Europe,1237240European Chamber Soloists,882809Nicol Matt17Chor auf die verbündeten Fürsten. Ihr weisen Gründer, WoO 951:551057180Florian Prey,882788Chamber Choir of Europe,1237240European Chamber Soloists,882809Nicol MattCD 69: Arias1Ah! Perfido, Op. 6511:50840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt2Scene and Aria for Soprano and Orchestra, WoO 92: Primo amore14:01840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt3Scene and Aria for Soprano and Strings, WoO 92a: No, non turbati6:13840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt4Duet for soprano, Tenor and Orchestra, WoO 93: Ne’giorni tuoi felici7:59840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt5Trio for Soprano, Bass and Orchestra, Op. 116: Tremate, empi, tremate8:32840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt6Aria for Bass and Orchestra, WoO 89: Prüfung des Küssens5:37840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt7Aria for Bass and Orchestra, WoO 90: Mit Mädeln sich vertragen4:08840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt8Die schöne Schüsterin, for Tenor and Orchestra, WoO 91 No. 1: O welch ein Leben!2:34840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur Apelt9Die schöne Schüsterin for Soprano and Orchestra, WoO 91 No. 2: Soll ein Schuh nicht drücken4:28840438Hanne-Lore Kuhse,497008Eberhard Büchner,526409Siegfried Vogel,833446Staatskapelle Berlin,2064951Arthur ApeltCD 70: Cantatas On The Death of Joseph II - On The Accession Of Leopold II1Cantata on the Death of Emperor Joseph II, WoO 87: Chorus and solo quartet. Tot! Tot, stöhnt es durch die öde Nacht7:012065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste2Cantata on the Death of Emperor Joseph II, WoO 87: Bass recitative. Ein Ungeheuer, sein Name Fanatismus1:262065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste3Cantata on the Death of Emperor Joseph II, WoO 87: Bass aria. Da kam Joseph4:472065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste4Cantata on the Death of Emperor Joseph II, WoO 87: Soprano Aria and Chorus. Da stiegen die Menschen ans Licht5:382065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste5Cantata on the Death of Emperor Joseph II, WoO 87: Soprano Recitative. Er schläft2:552065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste6Cantata on the Death of Emperor Joseph II, WoO 87: Soprano Aria. Hier schlummert seinen stillen Frieden6:482065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste7Cantata on the Death of Emperor Joseph II, WoO 87: Chorus and Solo Quartet. Tot! Tot, stöhnt es durch die öde Nacht7:152065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste8Cantata on the Accession of Emperor Leopold II, WoO 88: Soprano Recitative and Chorus. Er schlummert, lasst sanft den großen Fürsten ruhen!3:562065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste9Cantata on the Accession of Emperor Leopold II, WoO 88: Soprano Aria. Fließe, Wonnezähren, fließe!9:202065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste10Cantata on the Accession of Emperor Leopold II, WoO 88: Bass Recitative. Ihr staunt, Völker der Erde!0:422065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste11Cantata on the Accession of Emperor Leopold II, WoO 88: Tenor Recitative. Wie bebt mein Herz vor Wonne!3:592065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu Kaljuste12Cantata on the Accession of Emperor Leopold II, WoO 88: Chorus and Solo Quartet. Heil! Stürzet nieder, Millionen4:172065006Cameron Fiona,7288597Teele JõksJöks Teele,7288515Mati KõrtsKörts Mati,2065004Savitski Leonid,564754Estonian Philharmonic Chamber Choir,564750Estonian National Symphony Orchestra,564752Tõnu KaljusteCD 71: Der Glorreiche Augenblick - Polyphonie Italian Songs WoO991Der Glorreiche Augenblick, Op. 136: Chorus. Europa steht!4:111169324Alla Simoni,2070200Francesca Pedaci,837140Jeremy Ovenden,2070198Robert Gierlach,2089818Coro Della Radio Televisione Della Svizzera ItalianaCoro Della Radiotelevisione Svizzera,4646608Orchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Della Svizzeria Italiana,1273107Diego Fasolis2Der Glorreiche Augenblick, Op. 136: Recitativo. O seht sie nah und näher treten - Chorus. Vienna, Vienna, Vienna!3:531169324Alla Simoni,2070200Francesca Pedaci,837140Jeremy Ovenden,2070198Robert Gierlach,2089818Coro Della Radio Televisione Della Svizzera ItalianaCoro Della Radiotelevisione Svizzera,4646608Orchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Della Svizzeria Italiana,1273107Diego Fasolis3Der Glorreiche Augenblick, Op. 136: Chorus. Aria with chorus. Al le die Herrscher darf ich grüßen9:241169324Alla Simoni,2070200Francesca Pedaci,837140Jeremy Ovenden,2070198Robert Gierlach,2089818Coro Della Radio Televisione Della Svizzera ItalianaCoro Della Radiotelevisione Svizzera,4646608Orchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Della Svizzeria Italiana,1273107Diego Fasolis4Der Glorreiche Augenblick, Op. 136: Recitativo. Das Auge s chaut - Cavatine with Duetto. Dem die ers te Zähre6:401169324Alla Simoni,2070200Francesca Pedaci,837140Jeremy Ovenden,2070198Robert Gierlach,2089818Coro Della Radio Televisione Della Svizzera ItalianaCoro Della Radiotelevisione Svizzera,4646608Orchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Della Svizzeria Italiana,1273107Diego Fasolis5Der Glorreiche Augenblick, Op. 136: Chorus. Recitativo and quartet. Der den Bund im Sturme festgehalten - Qua rtet. In meinen Mauern bauen sich neue Zeiten auf7:031169324Alla Simoni,2070200Francesca Pedaci,837140Jeremy Ovenden,2070198Robert Gierlach,2089818Coro Della Radio Televisione Della Svizzera ItalianaCoro Della Radiotelevisione Svizzera,4646608Orchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Della Svizzeria Italiana,1273107Diego Fasolis6Der Glorreiche Augenblick, Op. 136: Chorus. Es treten vor die Scharen der Frauen4:041169324Alla Simoni,2070200Francesca Pedaci,837140Jeremy Ovenden,2070198Robert Gierlach,2089818Coro Della Radio Televisione Della Svizzera ItalianaCoro Della Radiotelevisione Svizzera,4646608Orchestra Della Radio Televisione Della Svizzera ItalianaOrchestra Della Svizzeria Italiana,1273107Diego Fasolis7Mehrstimmige Italienische Gesänge, WoO 99: Bei labbri che amore1:25917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert8Mehrstimmige Italienische Gesänge, WoO 99: Sei mio ben0:46917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert9Mehrstimmige Italienische Gesänge, WoO 99: Scrivo in te1:09917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert10Mehrstimmige Italienische Gesänge, WoO 99: Fra tutte le pene I0:50917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert11Mehrstimmige Italienische Gesänge, WoO 99: Fra tutte le pene II1:26917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert12Mehrstimmige Italienische Gesänge, WoO 99: Salvo tu voi lo sposo?1:13917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert13Mehrstimmige Italienische Gesänge, WoO 99: Ma tu tremi1:38917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert14Mehrstimmige Italienische Gesänge, WoO 99: Giura il nocchier1:33917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert15Mehrstimmige Italienische Gesänge, WoO 99: Per te d’amico aprile1:17917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert16Mehrstimmige Italienische Gesänge, WoO 99: Fra tutte le pene I0:41917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert17Mehrstimmige Italienische Gesänge, WoO 99: Fra tutte le pene II0:53917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert18Mehrstimmige Italienische Gesänge, WoO 99: Quella cetra ah pur tu sei0:53917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert19Mehrstimmige Italienische Gesänge, WoO 99: Chi mai di questo1:31917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert20Mehrstimmige Italienische Gesänge, WoO 99: Gia la notte0:41917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert21Mehrstimmige Italienische Gesänge, WoO 99: Nei campi e nelle selve I1:22917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert22Mehrstimmige Italienische Gesänge, WoO 99: Nei campi e nelle selve II1:39917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert23Mehrstimmige Italienische Gesänge, WoO 99: Fra tutte le pene I1:08917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert24Mehrstimmige Italienische Gesänge, WoO 99: Fra tutte le pene II1:19917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert25Mehrstimmige Italienische Gesänge, WoO 99: Quella cetra ah pur tu sei in G Major0:52917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert26Mehrstimmige Italienische Gesänge, WoO 99: Quella cetra ah pur tu sei in F Major0:44917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert27Mehrstimmige Italienische Gesänge, WoO 99: Giura il nocchier in C Major0:53917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert28Mehrstimmige Italienische Gesänge, WoO 99: Giura il nocchier in B-Flat Major0:45917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert29Mehrstimmige Italienische Gesänge, WoO 99: Gia la notte0:41917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert30Mehrstimmige Italienische Gesänge, WoO 99: E pur fra le tempeste0:55917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth GrünertCD 72: Miscellaneous Vocal Works1Meersstille und glückliche Fahrt Cantata, Op. 1128:072035815Bach Society Of Minnesota,973130Minnesota Orchestra,762355Stanislaw Skrowaczewski2Chorfantasie for Piano, Chorus and Orchestra in C Minor, Op. 8020:00832899Walter Klien,834226Saint Louis Symphony Orchestra,1528200Saint Louis Symphony Chorus,978333Jerzy Semkow3Elegischer Gesang, Op. 1185:59832899Walter Klien,834226Saint Louis Symphony Orchestra,1528200Saint Louis Symphony Chorus,978333Jerzy Semkow4Bundeslied ‘In allen guten Stunden’, Op. 1224:302070431Barbara Emilia Schedel,2070427Kerstin Wagner,897865Daniel Schreiber (2)5Cantata campestre ‘Un lieto brindisi’, WoO 1035:282070431Barbara Emilia Schedel,897865Daniel Schreiber (2),2070429Rainer Tetenberger6Birthday Cantata for Prince Lobkowitz ‘Es lebe unser theurer Fürst’, WoO 1062:122070431Barbara Emilia Schedel,2036564Michael Wagner (5)7Canon. Kurz ist der Schmerz, für Louis Spohr, WoO 1664:46897865Daniel Schreiber (2),2070428Tobias Altvater,2070429Rainer Tetenberger8Opferlied, Hess 914:33917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert9Hochzeitslied, WoO 1051:51917339Heike Heilmann,2070203Anne Bierwirth,2070202Daniel Johannsen,897867Manfred Bittner,2070199Elisabeth Grünert10Abschiedsgesang an Wiens Bürger, WoO 1213:171057180Florian Prey,1057187Norbert Groh11Kriegslied der Österreicher, WoO 1223:321057180Florian Prey,1057187Norbert Groh12Opferlied, WoO 1262:431057180Florian Prey,1057187Norbert Groh13Es ist vollbracht – Final Song from the Singspiel ‘Die Ehrenpforten’ of F. Treitschke, WoO 975:06833446Staatskapelle Berlin,833887Chor Der Staatsoper Berlin,526409Siegfried Vogel,2064951Arthur Apelt14Opferlied, Op. 121b6:06931363Ingeborg Springer,1945306Großer Chor Des Berliner Rundfunks,796211Rundfunk-Sinfonieorchester Berlin,624749Helmut KochCD 73: Christus Am Ölberge1Christus am Ölberge, Op. 85: Jehova, du mein Vater - Meine Seele ist erschüttert15:11924654Liselotte Rebmann,837062Reinhold Bartel,666508August Messthaler,2241400Sueddeutsche Chorvereinigung,990584Stuttgarter Philharmoniker,2241401Josef Bloser2Christus am Ölberge, Op. 85: Erzitt’re, Erde, Jehovas Sohn liegt hier - Preist des Erlösers Güte - O Heil euch, ihr Erlösten9:49924654Liselotte Rebmann,837062Reinhold Bartel,666508August Messthaler,2241400Sueddeutsche Chorvereinigung,990584Stuttgarter Philharmoniker,2241401Josef Bloser3Christus am Ölberge, Op. 85: Verkündet, Seraph, mir dein Mund Erbarmen - So ruhe denn mit ganzer Schwere6:58924654Liselotte Rebmann,837062Reinhold Bartel,666508August Messthaler,2241400Sueddeutsche Chorvereinigung,990584Stuttgarter Philharmoniker,2241401Josef Bloser4Christus am Ölberge, Op. 85: Wilkommen, Tod, den ich am Kreuze - Wir haben ihn gesehen3:37924654Liselotte Rebmann,837062Reinhold Bartel,666508August Messthaler,2241400Sueddeutsche Chorvereinigung,990584Stuttgarter Philharmoniker,2241401Josef Bloser5Christus am Ölberge, Op. 85: Die mich zu fangen ausgezogen sind - Hier ist er, der Verbannte4:13924654Liselotte Rebmann,837062Reinhold Bartel,666508August Messthaler,2241400Sueddeutsche Chorvereinigung,990584Stuttgarter Philharmoniker,2241401Josef Bloser6Christus am Ölberge, Op. 85: Nicht ungestraft soll der Verweg’nen Schar - In meinen Adern wühlen gerechter Zorn und Wut - Auf, auf! Ergreifet und Ehre - Preiset ihn, ihr Engelchöre14:16924654Liselotte Rebmann,837062Reinhold Bartel,666508August Messthaler,2241400Sueddeutsche Chorvereinigung,990584Stuttgarter Philharmoniker,2241401Josef BloserCD 74: Mass In C1Mass in C Major, Op. 86: I. Kyrie5:35841660Elly Ameling,267134Janet Baker,1236438Theo Altmeyer,899899Marius Rintzler,704150New Philharmonia Orchestra,1079561New Philharmonia Chorus,833560Carlo Maria Giulini2Mass in C Major, Op. 86: II. Gloria10:22841660Elly Ameling,267134Janet Baker,1236438Theo Altmeyer,899899Marius Rintzler,704150New Philharmonia Orchestra,1079561New Philharmonia Chorus,833560Carlo Maria Giulini3Mass in C Major, Op. 86: III. Credo13:18841660Elly Ameling,267134Janet Baker,1236438Theo Altmeyer,899899Marius Rintzler,704150New Philharmonia Orchestra,1079561New Philharmonia Chorus,833560Carlo Maria Giulini4Mass in C Major, Op. 86: IV. Sanctus11:19841660Elly Ameling,267134Janet Baker,1236438Theo Altmeyer,899899Marius Rintzler,704150New Philharmonia Orchestra,1079561New Philharmonia Chorus,833560Carlo Maria Giulini5Mass in C Major, Op. 86: V. Agnus Dei7:55841660Elly Ameling,267134Janet Baker,1236438Theo Altmeyer,899899Marius Rintzler,704150New Philharmonia Orchestra,1079561New Philharmonia Chorus,833560Carlo Maria GiuliniCD 75: Missa Solemnis1Missa Solemnis in D Major, Op. 123: Kyrie8:03833162Anna Tomowa-Sintow,526418Annelies Burmeister,446577Peter Schreier,526416Hermann Christian Polster,826830Gerhard Bosse,837551Hannes Kästner,455839Rundfunkchor Leipzig,654834Horst Neumann,522210Gewandhausorchester Leipzig,522209Kurt Masur2Missa Solemnis in D Major, Op. 123: Gloria16:50833162Anna Tomowa-Sintow,526418Annelies Burmeister,446577Peter Schreier,526416Hermann Christian Polster,826830Gerhard Bosse,837551Hannes Kästner,455839Rundfunkchor Leipzig,654834Horst Neumann,522210Gewandhausorchester Leipzig,522209Kurt Masur3Missa Solemnis in D Major, Op. 123: Credo19:34833162Anna Tomowa-Sintow,526418Annelies Burmeister,446577Peter Schreier,526416Hermann Christian Polster,826830Gerhard Bosse,837551Hannes Kästner,455839Rundfunkchor Leipzig,654834Horst Neumann,522210Gewandhausorchester Leipzig,522209Kurt Masur4Missa Solemnis in D Major, Op. 123: Sanctus14:10833162Anna Tomowa-Sintow,526418Annelies Burmeister,446577Peter Schreier,526416Hermann Christian Polster,826830Gerhard Bosse,837551Hannes Kästner,455839Rundfunkchor Leipzig,654834Horst Neumann,522210Gewandhausorchester Leipzig,522209Kurt Masur5Missa Solemnis in D Major, Op. 123: Agnus Dei14:56833162Anna Tomowa-Sintow,526418Annelies Burmeister,446577Peter Schreier,526416Hermann Christian Polster,826830Gerhard Bosse,837551Hannes Kästner,455839Rundfunkchor Leipzig,654834Horst Neumann,522210Gewandhausorchester Leipzig,522209Kurt MasurCD 76: Songs I1Liebeslieder: Das Glück der Freundschaft (Lebensglück), Op. 882:12446577Peter Schreier,455829Walter Olbertz2Liebeslieder: Seufzer eines Ungeliebten und Gegenliebe, WoO 1186:14446577Peter Schreier,455829Walter Olbertz3Liebeslieder: Der Liebende, WoO 1392:13446577Peter Schreier,455829Walter Olbertz4Liebeslieder: Ruf vom Berge, WoO 1471:44446577Peter Schreier,455829Walter Olbertz5Liebeslieder: An die Hoffnung, Op. 325:39446577Peter Schreier,455829Walter Olbertz6Liebeslieder: An die Hoffnung, Op. 948:00446577Peter Schreier,455829Walter Olbertz7Liebeslieder: An die Geliebte, WoO 140 (1. Fassung)1:13446577Peter Schreier,455829Walter Olbertz8Liebeslieder: An die Geliebte, WoO 140 (2. Fassung)1:11446577Peter Schreier,455829Walter Olbertz9Liebeslieder: Selbstgespräch, WoO 1143:52446577Peter Schreier,455829Walter Olbertz10Liebeslieder: Gedenke mein, WoO 1301:32526419Adele Stolte,455829Walter Olbertz11Liebeslieder: Ich denke dein, WoO 740:54446577Peter Schreier,455829Walter Olbertz12Liebeslieder: Die Liebe, Op. 52 No. 61:19446577Peter Schreier,455829Walter Olbertz13Liebeslieder: Das Blümchen Wunderhold, Op. 52 No. 81:54446577Peter Schreier,455829Walter Olbertz14Liebeslieder: Schilderung eines Mädchens, WoO 1070:34446577Peter Schreier,455829Walter Olbertz15Liebeslieder: An Minna, WoO 1150:44446577Peter Schreier,455829Walter Olbertz16Liebeslieder: Die laute Klage, WoO 1352:50446577Peter Schreier,455829Walter Olbertz17Liebeslieder: Als die Geliebte sich trennen wollte, WoO 1322:33446577Peter Schreier,455829Walter Olbertz18Liebeslieder: Das Liedchen von der Ruhe, Op. 52 No. 32:40446577Peter Schreier,455829Walter Olbertz19Liebeslieder: Sehnsucht, WoO 1462:37446577Peter Schreier,455829Walter OlbertzCD 77: Songs II1Scherzlieder: Aus Goethes Faust, Op. 75 No. 32:25446577Peter Schreier,455829Walter Olbertz2Scherzlieder: Urians Reise um die Welt, Op. 52 No. 13:33446577Peter Schreier,455829Walter Olbertz3Scherzlieder: Trinklied (beim Abschied zu singen), WoO 1091:32446577Peter Schreier,455829Walter Olbertz4Scherzlieder: Punschlied, WoO 1110:46446577Peter Schreier,455829Walter Olbertz5Scherzlieder: Der Zufriedene, Op. 75 No. 61:11446577Peter Schreier,455829Walter Olbertz6Vier Arietten und ein Duett mit Italienischem Text, Op. 82: 1. Hoffnung2:25446577Peter Schreier,455829Walter Olbertz7Vier Arietten und ein Duett mit Italienischem Text, Op. 82: 2. Liebesklage2:34446577Peter Schreier,455829Walter Olbertz8Vier Arietten und ein Duett mit Italienischem Text, Op. 82: 3. L’amante impatiente (Stille Frage)1:40446577Peter Schreier,455829Walter Olbertz9Vier Arietten und ein Duett mit Italienischem Text, Op. 82: 4. L’amante impatiente (Liebesungeduld)2:08446577Peter Schreier,455829Walter Olbertz10Vier Arietten und ein Duett mit Italienischem Text, Op. 82: 5. Lebensgenuß2:34446577Peter Schreier,455829Walter Olbertz11O care selve, WoO 1190:58446577Peter Schreier,2074006Gisela Franke12La partenza (Der Abschied), WoO 1241:15446577Peter Schreier,455829Walter Olbertz13In questa tomba oscura, WoO 1332:59446577Peter Schreier,455829Walter Olbertz14La Tiranna, Canzonetta, WoO 1253:26446577Peter Schreier,455829Walter Olbertz15Que le temps me dure, WoO 1161:58446577Peter Schreier,455829Walter Olbertz16Plaisir d’aimer, WoO 1281:04446577Peter Schreier,455829Walter Olbertz17Ernste Lieder: Der Wachtelschlag, WoO 1293:24446577Peter Schreier,455829Walter Olbertz18Ernste Lieder: Das Geheimnis, WoO 1451:22446577Peter Schreier,455829Walter Olbertz19Ernste Lieder: An Laura, WoO 1122:56446577Peter Schreier,455829Walter Olbertz20Ernste Lieder: Abendlied unterm gestirnten Himmel, WoO 1505:15446577Peter Schreier,455829Walter Olbertz21Ernste Lieder: Klage, WoO 1132:59446577Peter Schreier,455829Walter Olbertz22Ernste Lieder: Feuerfarb, Op. 52 No. 23:27446577Peter Schreier,455829Walter Olbertz23Ernste Lieder: Elegie auf den Tod eines Pudels, WoO 1102:25446577Peter Schreier,455829Walter Olbertz24Ernste Lieder: So oder so, WoO 1481:55446577Peter Schreier,455829Walter Olbertz25Ernste Lieder: Des Kriegers Abschied, WoO 1431:32446577Peter Schreier,455829Walter Olbertz26Ernste Lieder: Der freie Mann, WoO 1171:47446577Peter Schreier,455829Walter Olbertz27Ernste Lieder: Opferlied, WoO 1263:27446577Peter Schreier,455829Walter OlbertzCD 78: Songs III1Der Gesang der Nachtigall, WoO 1413:151057180Florian Prey,1057187Norbert Groh2Neue Liebe, neues Leben, WoO 1272:411057180Florian Prey,1057187Norbert Groh3Seufzer eines Ungeliebten und Gegenliebe, WoO 1185:441057180Florian Prey,1057187Norbert Groh4Der Bardengeist, WoO 1425:581057180Florian Prey,1057187Norbert Groh5Der Liebende, WoO 1392:531057180Florian Prey,1057187Norbert Groh6Merkenstein, WoO 1442:561057180Florian Prey,1057187Norbert Groh7Man strebt die Flamme zu verhehlen, WoO 1203:002008464Anna Haase,1057187Norbert Groh8Mollys Abschied, Op. 52 No. 5. Lebe wohl, du Mann der Lust und Schmerzen3:262008464Anna Haase,1057187Norbert Groh9Sehnsucht, WoO 34, Four Settings5:332008464Anna Haase,1057187Norbert Groh10An den fernen Geliebten, Op. 75 No. 53:422008464Anna Haase,1057187Norbert Groh11Mignon, Op. 75 No. 13:362008464Anna Haase,1057187Norbert Groh12Gretels Warnung, Op. 75 No. 41:482008464Anna Haase,1057187Norbert Groh13Der Mann von Wort, Op. 992:511057180Florian Prey,1057187Norbert Groh14Der edle Mensche sei hülfreich und gut, WoO 1510:431057180Florian Prey,1057187Norbert Groh15Traute Henriette, Hess 1510:421057180Florian Prey,1057187Norbert Groh16Merkenstein, Op. 1001:562008464Anna Haase,1057187Norbert GrohCD 79: Songs IV1An die ferne Geliebte, Op. 98: 1. Auf dem Hügel sitz ich, spähend - 2. Wo die Berge so blau - 3. Leichte Segler in den Höhen - 4. Diese Wolken in den Höhen - 5. Es kehret der Maien, es blühet die Au - 6. Nimm sie hin denn, diese Lieder14:42446577Peter Schreier,455829Walter Olbertz2Adelaide, Op. 466:32446577Peter Schreier,455829Walter Olbertz3Zärtliche Liebe, WoO 1232:14446577Peter Schreier,455829Walter Olbertz4Der Kuß, Op. 1282:04446577Peter Schreier,455829Walter Olbertz5Lied aus der Ferne, WoO 1373:46446577Peter Schreier,455829Walter Olbertz6Der Jüngling in der Fremde, WoO 1382:07446577Peter Schreier,455829Walter Olbertz7Resignation, WoO 1493:10446577Peter Schreier,455829Walter Olbertz8An die ferne Geliebte, Op. 98: Andenken, WoO 1362:41446577Peter Schreier,455829Walter Olbertz9Sechs Lieder von Christian Fürchtegott Gellert, Op. 48: 1. Bitten2:18446577Peter Schreier,455829Walter Olbertz10Sechs Lieder von Christian Fürchtegott Gellert, Op. 48: 2. Die Liebe des Nächsten1:12446577Peter Schreier,455829Walter Olbertz11Sechs Lieder von Christian Fürchtegott Gellert, Op. 48: 3. Vom Tode2:33446577Peter Schreier,455829Walter Olbertz12Sechs Lieder von Christian Fürchtegott Gellert, Op. 48: 4. Die Ehre Gottes aus der Natur2:30446577Peter Schreier,455829Walter Olbertz13Sechs Lieder von Christian Fürchtegott Gellert, Op. 48: 5. Gottes Macht und Vorsehung0:42446577Peter Schreier,455829Walter Olbertz14Sechs Lieder von Christian Fürchtegott Gellert, Op. 48: 6. Bußlied4:10446577Peter Schreier,455829Walter Olbertz15Lieder nach Johann Wolfgang von Goethe: Mailied, Op. 52 No. 42:24446577Peter Schreier,455829Walter Olbertz16Lieder nach Johann Wolfgang von Goethe: Marmotte, Op. 52 No. 70:48446577Peter Schreier,455829Walter Olbertz17Lieder nach Johann Wolfgang von Goethe: Neue Liebe, neues Leben, Op. 75 No. 22:55446577Peter Schreier,455829Walter Olbertz18Lieder nach Johann Wolfgang von Goethe: Wonne der Wehmut, Op. 83 No. 13:26446577Peter Schreier,455829Walter Olbertz19Lieder nach Johann Wolfgang von Goethe: Sehnsucht, Op. 83 No. 22:13446577Peter Schreier,455829Walter Olbertz20Lieder nach Johann Wolfgang von Goethe: Mit einem gemalten Band, Op. 83 No. 32:07446577Peter Schreier,455829Walter Olbertz21Lieder nach Johann Wolfgang von Goethe: Freudvoll und leidvoll, Op. 84 No. 41:42446577Peter Schreier,455829Walter OlbertzCD 80: Canons, Epigrams And Jokes - Irish Songs WoO 152 & 1531Canons, Epigrams and Jokes: Lob auf den Dicken, WoO 1000:311393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe2Canons, Epigrams and Jokes: Esel aller Esel, Hess 2770:271393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe3Canons, Epigrams and Jokes: Graf, liebster Graf, WoO 1010:421393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe4Canons, Epigrams and Jokes: Herr Graf, Hess 2760:571393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe5Canons, Epigrams and Jokes: Bester Graf, WoO 1830:331393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe6Canons, Epigrams and Jokes: Es muß sein, WoO 1960:311393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe7Canons, Epigrams and Jokes: Canon in G Major, Hess 2740:351393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe8Canons, Epigrams and Jokes: Das ist das Werk, WoO 1970:441393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe9Canons, Epigrams and Jokes: Glaube und hoffe, WoO 1740:321393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe10Canons, Epigrams and Jokes: Auf einen, welche Hoffmann geheissen, WoO 1800:421393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe11Canons, Epigrams and Jokes: Anglaise in D Major, Hess 610:361393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe12Canons, Epigrams and Jokes: Rasch tritt der Tod den Menschen an, WoO 1041:101393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe13Canons, Epigrams and Jokes: Ich war hier, WoO 1900:211393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe14Canons, Epigrams and Jokes: Signor abate, WoO 1780:461393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe15Canons, Epigrams and Jokes: Kurz ist der Schmerz, und ewig ist die Freude, WoO 1631:241393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe16Canons, Epigrams and Jokes: Hol’euch der Teufel! B’hüt euch Gott!, WoO 1730:161393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe17Canons, Epigrams and Jokes: Gott ist eine feste Burg, WoO 1880:191393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe18Canons, Epigrams and Jokes: Sankt Petrus, WoO 1750:441393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe19Canons, Epigrams and Jokes: Tugend ist kein leerer Name, WoO 181 No. 30:381393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe20Canons, Epigrams and Jokes: Edel sei der Mensch, hülfreich und gut, WoO 1852:351393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe21Canons, Epigrams and Jokes: Bester Magistrat, WoO 1770:401393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe22Canons, Epigrams and Jokes: Kühl, nicht lau, WoO 1910:551393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe23Canons, Epigrams and Jokes: Wir irren allesamt, WoO 1980:311393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe24Canons, Epigrams and Jokes: Auf einen, welcher Schwenke geheissen, WoO 870:401393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe25Canons, Epigrams and Jokes: Brauchle, Linke, WoO 1670:211393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe26Canons, Epigrams and Jokes: O Tobias!, WoO 1820:371393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe27Canons, Epigrams and Jokes: Gedenket heute an Baden, WoO 181 No. 10:431393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe28Canons, Epigrams and Jokes: Seiner Kaiserlichen Hoheit Alles Gute, alles Schöne, WoO 1791:411393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe29Canons, Epigrams and Jokes: Glück fehl’dir vor allem, WoO 1710:451393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe30Canons, Epigrams and Jokes: Gehabt euch wohl, WoO 181 No. 20:301393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe31Canons, Epigrams and Jokes: Freu dich des Lebens, WoO 1950:241393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe32Canons, Epigrams and Jokes: Glück zum neuen Jahr, WoO 1650:321393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe33Canons, Epigrams and Jokes: Instrumental Canon a 2 in A-Flat Major, Hess 2750:281393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe34Canons, Epigrams and Jokes: Im Arm der Liebe, WoO 1591:311393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe35Canons, Epigrams and Jokes: Ich küsse Sie, WoO 1690:171393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe36Canons, Epigrams and Jokes: Languisco e moro, Hess 2291:201393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe37Canons, Epigrams and Jokes: Te solo adoro, WoO 1860:421393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe38Canons, Epigrams and Jokes: Ewig dein, WoO 1611:141393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe39Canons, Epigrams and Jokes: Freundschaft ist der Quell wahrer Glückseligkeit, WoO 1640:571393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe40Canons, Epigrams and Jokes: Instrumental Canon a 4, WoO 160 No. 21:171393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe41Canons, Epigrams and Jokes: Ta ta ta, WoO 161:081393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe42Canons, Epigrams and Jokes: Ich bitt’dich, schreib’mir die Es-Scala auf, WoO 1720:311393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe43Canons, Epigrams and Jokes: Ars longa, WoO 1920:251393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe44Canons, Epigrams and Jokes: Instrumental Canon a 3, WoO 160 No. 11:101393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe45Canons, Epigrams and Jokes: Das Schweigen, WoO 168 No. 11:101393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe46Canons, Epigrams and Jokes: Das Reden, WoO 168 No. 21:161393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe47Canons, Epigrams and Jokes: Falstafferel, WoO 1841:031393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe48Canons, Epigrams and Jokes: Allegro in A Major, WoO 340:211393153Berliner Solisten,1057193Berliner Singakademie49Canons, Epigrams and Jokes: Abschiedsgesang, WoO 1024:011393153Berliner Solisten,1057193Berliner Singakademie,453402Dietrich Knothe5025 Irish Songs, WoO 152: No. 2, Sweet Power of Song1:382183655Volkmar Lehmann5125 Irish Songs, WoO 152: No. 5, On the Massacre of Glencoe1:582183655Volkmar Lehmann5225 Irish Songs, WoO 152: No. 6, Duet. What Shall I Do to Shew How Much I Love Her?1:472183655Volkmar Lehmann5325 Irish Songs, WoO 152: No. 8, Come draw we round a cheerful ring0:542183655Volkmar Lehmann5425 Irish Songs, WoO 152: No. 10, The deserter1:092183655Volkmar Lehmann5525 Irish Songs, WoO 152: No. 11, Thou emblem of faith1:302183655Volkmar Lehmann5625 Irish Songs, WoO 152: No. 13, Musing on the roaring ocean1:002183655Volkmar Lehmann5725 Irish Songs, WoO 152: No. 15, Let Brainspinning Swains1:032183655Volkmar Lehmann5825 Irish Songs, WoO 152: No. 17, In Vain to this Desert1:412183655Volkmar Lehmann5925 Irish Songs, WoO 152: No. 19, Wife, Children and Friends1:412183655Volkmar Lehmann6025 Irish Songs, WoO 152: No. 20, Farewell Bliss and Farewell Nancy1:182183655Volkmar Lehmann6125 Irish Songs, WoO 152: No. 21, Morning a Cruel Turmoiler Is1:092183655Volkmar Lehmann6225 Irish Songs, WoO 152: No. 23, The wand’ring Gypsy0:512183655Volkmar Lehmann6325 Irish Songs, WoO 152: No. 24, The Traugh Welcome0:572183655Volkmar Lehmann6420 Irish Songs, WoO 153: No. 1, When eve’s last rays1:362183655Volkmar Lehmann6520 Irish Songs, WoO 153: No. 4, Since Greybeards Inform Us That Youth Will Decay1:092183655Volkmar Lehmann6620 Irish Songs, WoO 153: No. 5, I Dream’d I Lay Where Flowers Were Springing1:272183655Volkmar Lehmann6720 Irish Songs, WoO 153: No. 7, O Soothe Me, My Lyre1:072183655Volkmar Lehmann6820 Irish Songs, WoO 153: No. 8, Norah of Balamagairy1:322183655Volkmar Lehmann6920 Irish Songs, WoO 153: No. 10, The Hapless Soldier1:302183655Volkmar Lehmann7020 Irish Songs, WoO 153: No. 15, ‘Tis But in Vain, for Nothing Thrives1:162183655Volkmar Lehmann7120 Irish Songs, WoO 153: No. 17, Come, Darby dear, Easy, Be Easy1:122183655Volkmar Lehmann7220 Irish Songs, WoO 153: No. 20, Thy Ship Must Sail, My Henry Dear1:322183655Volkmar LehmannCD 81: Irish Songs WoO 152 & 153 (Continued)125 Irish Songs, WoO 152: No. 1, The Return to Ulster5:312075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas225 Irish Songs, WoO 152: No. 3, Once More I Hail Thee3:062075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas325 Irish Songs, WoO 152: No. 4, The Morning Air Plays on My Face2:292075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas425 Irish Songs, WoO 152: No. 7, His Boat Comes on the Sunny Tide2:022075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas525 Irish Songs, WoO 152: No. 9, The Soldier’s Dream5:082075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas625 Irish Songs, WoO 152: No. 12, English Bulls2:282075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas725 Irish Songs, WoO 152: No. 14, Dermot and Shelah2:191689483Christine Wehler,2075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas825 Irish Songs, WoO 152: No. 16, Hide Not Thy Anguish2:222075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas925 Irish Songs, WoO 152: No. 18, They Bid Me Slight My Dermot Dear2:182075443Dorothee Wohlgemuth,2075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1025 Irish Songs, WoO 152: No. 22, From Garyone, My Happy Home3:292075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1125 Irish Songs, WoO 152: No. 25, Oh Harp of Erin4:122075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1220 Irish Songs, WoO 153: No. 2, No riches from his scanty store2:552075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1320 Irish Songs, WoO 153: No. 3, The British Light Dragoons2:482075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1420 Irish Songs, WoO 153: No. 6, Sad and Luckless Was the Season4:172075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1520 Irish Songs, WoO 153: No. 9, The Kiss, Dear Maid, Thy Lip Has Left2:462075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1620 Irish Songs, WoO 153: No. 11, When Far from the Home2:162075445Jens Hamann,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1720 Irish Songs, WoO 153: No. 12, I’ll Praise the Saints3:432075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1820 Irish Songs, WoO 153: No. 13, ’Tis Sunshine at Last2:032075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas1920 Irish Songs, WoO 153: No. 14, Paddy O’Rafferty2:382075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas2020 Irish Songs, WoO 153: No. 16, O Might I But My Patrick Love2:582075443Dorothee Wohlgemuth,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas2120 Irish Songs, WoO 153: No. 18, No More, My Mary1:552075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria Klaas2220 Irish Songs, WoO 153: No. 19, Judy, Lovely, Matchless Creature2:462075444Georg Poplutz,2075442Martin Haunhorst,2075441Bernhard Schwarz,2036563Rainer Maria KlaasCD 82: 12 Irish Songs WoO154112 Irish Songs, WoO 154: The Elfin Fairies1:482070431Barbara Emilia Schedel,2070427Kerstin Wagner,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)212 Irish Songs, WoO 154: O Harp of Erin3:492070427Kerstin Wagner,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)312 Irish Songs, WoO 154: The Farewell Song3:31897865Daniel Schreiber (2),486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)412 Irish Songs, WoO 154: The Pulse of an Irishman2:201777181Daniel Raschinsky,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)512 Irish Songs, WoO 154: Oh! Who, My Dear Dermot3:412070431Barbara Emilia Schedel,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)612 Irish Songs, WoO 154: Put Round the Bright Wine2:21897865Daniel Schreiber (2),486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)712 Irish Songs, WoO 154: From Garyone, My Happy Home4:012070427Kerstin Wagner,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)812 Irish Songs, WoO 154: Save Me from the Grave and Wise2:042070427Kerstin Wagner,897865Daniel Schreiber (2),1777181Daniel Raschinsky,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)912 Irish Songs, WoO 154: Oh! Would I Were But That Sweet Linnet!5:372070431Barbara Emilia Schedel,897865Daniel Schreiber (2),486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)1012 Irish Songs, WoO 154: The Hero May Perish1:11897865Daniel Schreiber (2),1777181Daniel Raschinsky,486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)1112 Irish Songs, WoO 154: The Soldier in a Foreign Land6:082070431Barbara Emilia Schedel,897865Daniel Schreiber (2),486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)1212 Irish Songs, WoO 154: He Promised Me at Parting2:462070431Barbara Emilia Schedel,897865Daniel Schreiber (2),486721Sachiko Kobayashi,1926624Chihiro Saito (2),2036564Michael Wagner (5)CD 83: 26 Welsh Songs WoO155126 Welsh Songs, WoO 155: Sion, the Son of Evan3:501057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)226 Welsh Songs, WoO 155: The Monks of Bangor's March2:281057182David Mulvenna Hamilton,897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)326 Welsh Songs, WoO 155: The Cottage Maid2:511057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)426 Welsh Songs, WoO 155: Love without Hope2:131057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)526 Welsh Songs, WoO 155: The Golden Robe2:568653374Maria Rebekka Stöhr,897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)626 Welsh Songs, WoO 155: The Fair Maid of Mona3:221057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)726 Welsh Songs, WoO 155: O Let the Night My Blushes Hide2:208653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)826 Welsh Songs, WoO 155: Farewell, Thou Noisy Town1:27897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)926 Welsh Songs, WoO 155: To the Aeolian Harp4:278653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1026 Welsh Songs, WoO 155: Ned Pugh's Farewell2:241057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1126 Welsh Songs, WoO 155: Merch Megan; or Peggy's Daughter2:44897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1226 Welsh Songs, WoO 155: Waken, Lords and Ladies Gay2:381057194Antonia Bourvé,1057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1326 Welsh Songs, WoO 155: Helpless Woman1:421057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1426 Welsh Songs, WoO 155: The Dream4:168653374Maria Rebekka Stöhr,1057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1526 Welsh Songs, WoO 155: When Mortals All to Rest Retire4:051057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1626 Welsh Songs, WoO 155: The Damsels of Cardigan2:558653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1726 Welsh Songs, WoO 155: The Dairy House2:091057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1826 Welsh Songs, WoO 155: Sweet Richard2:031057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1926 Welsh Songs, WoO 155: The Vale of Clwyd4:228653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2026 Welsh Songs, WoO 155: To the Blackbird3:311057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2126 Welsh Songs, WoO 155: Cupid's Kindness1:561057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2226 Welsh Songs, WoO 155: Constancy1:228653374Maria Rebekka Stöhr,1057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2326 Welsh Songs, WoO 155: The Old Strain3:238653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2426 Welsh Songs, WoO 155: Hundred Pounds2:341057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2526 Welsh Songs, WoO 155: The Parting Kiss3:041057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)2626 Welsh Songs, WoO 155: Good Night1:331057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)CD 84: 12 Scottish Songs WoO156 - 12 Verschiedene Volkslieder WoO157112 Scottish Songs, WoO 156: The Banner of Buccleuch2:421057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)212 Scottish Songs, WoO 156: Duncan Cray2:591057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)312 Scottish Songs, WoO 156: Up! Quit Thy Bower2:261057194Antonia Bourvé,8653374Maria Rebekka Stöhr,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)412 Scottish Songs, WoO 156: Ye Shepherds of This Pleasant Vale2:381057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)512 Scottish Songs, WoO 156: Cease Your Funning1:011057194Antonia Bourvé,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)612 Scottish Songs, WoO 156: Highland Harry1:538653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)712 Scottish Songs, WoO 156: Polly Stewart1:461057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)812 Scottish Songs, WoO 156: Womankind1:181057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)912 Scottish Songs, WoO 156: Lochnagar3:441057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1012 Scottish Songs, WoO 156: Glencoe3:041057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1112 Scottish Songs, WoO 156: Auld Lang Syne2:058653374Maria Rebekka Stöhr,1057182David Mulvenna Hamilton,897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)1212 Scottish Songs, WoO 156: The Quaker’s Wife1:591057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)13Verschiedene Volkslieder, WoO 157: No. 1, God Save the King3:591057194Antonia Bourvé,8653374Maria Rebekka Stöhr,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)14Verschiedene Volkslieder, WoO 157: No. 2, The Soldier2:411057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)15Verschiedene Volkslieder, WoO 157: No. 3, Charlie Is My Darling1:491057194Antonia Bourvé,8653374Maria Rebekka Stöhr,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)16Verschiedene Volkslieder, WoO 157: No. 4, O Sanctissima2:231057194Antonia Bourvé,8653374Maria Rebekka Stöhr,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)17Verschiedene Volkslieder, WoO 157: No. 5, The Miller of Dee2:341057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)18Verschiedene Volkslieder, WoO 157: No. 6, A Health to the Brave2:031057194Antonia Bourvé,8653374Maria Rebekka Stöhr,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)19Verschiedene Volkslieder, WoO 157: No. 7, Robin Adair4:001057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)20Verschiedene Volkslieder, WoO 157: No. 8, By the Side of the Shannon2:08897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)21Verschiedene Volkslieder, WoO 157: No. 9, Highlander’s Lament4:398653374Maria Rebekka Stöhr,1057182David Mulvenna Hamilton,897867Manfred Bittner,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)22Verschiedene Volkslieder, WoO 157: No. 10, Sir Johnnie Cope3:091057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)23Verschiedene Volkslieder, WoO 157: No. 11, The Wandering Minstrel3:511057194Antonia Bourvé,1057182David Mulvenna Hamilton,1057183Haakon Schaub,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)24Verschiedene Volkslieder, WoO 157: No. 12, La gondoletta2:481057182David Mulvenna Hamilton,2077915Zsuzsa Zsizsmann,2077916Cornelius Boensch,863209Michael Clark (4)CD 85: 25 Scottish Songs Op. 108 - 23 Lieder Verschiedener Völker WoO158A (Selection)125 Scottish Songs, Op. 108: Music, Love and Wine1:36455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann225 Scottish Songs, Op. 108: Sunset2:41455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann325 Scottish Songs, Op. 108: O Sweet Were the Hours2:59455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann425 Scottish Songs, Op. 108: The Maid of Isla2:12455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann525 Scottish Songs, Op. 108: The Sweetest Lad Was Jamie1:47455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann625 Scottish Songs, Op. 108: Dim, Dim Is My Eye2:31455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann725 Scottish Songs, Op. 108: Bonnie, Laddie, Highland Laddie1:03455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann825 Scottish Songs, Op. 108: The Lovely Lass of Inverness3:13455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann925 Scottish Songs, Op. 108: Behold My Love How Green the Groves2:28455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1025 Scottish Songs, Op. 108: Sympathy1:55455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1125 Scottish Songs, Op. 108: O, Thou Art the Lad of My Heart0:54455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1225 Scottish Songs, Op. 108: O, Had My Fate Been Join’d with Thine1:57455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1325 Scottish Songs, Op. 108: Come Fill, Fill, My Good Fellow1:37455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1425 Scottish Songs, Op. 108: O, How Can I Be Blithe and Glad1:55455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1525 Scottish Songs, Op. 108: O Cruel Was My Father1:43455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1625 Scottish Songs, Op. 108: Could This Ill World Have Been Contriv’d1:57455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1725 Scottish Songs, Op. 108: O Mary, at Thy Window Be2:09455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1825 Scottish Songs, Op. 108: Enchantress, Farewell1:55455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann1925 Scottish Songs, Op. 108: O Swiftly Glides the Bonny Boat2:35455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2025 Scottish Songs, Op. 108: Faithfu’ Johnie2:57455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2125 Scottish Songs, Op. 108: Jeanie’s Distress1:45455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2225 Scottish Songs, Op. 108: The Highland Watch1:41455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2325 Scottish Songs, Op. 108: The Shepherd’s Song1:52455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2425 Scottish Songs, Op. 108: Again, My Dyre3:54455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2525 Scottish Songs, Op. 108: Sally in Our Alley1:30455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2623 Lieder verschiedener Völker, WoO 158a: No. 1, Ridder Stings Runer (Danish)0:40455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2723 Lieder verschiedener Völker, WoO 158a: No. 4, Wann i in der Früh aufsteh (Tyrolean)1:15455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2823 Lieder verschiedener Völker, WoO 158a: No. 7, Wer solche Buema afipackt (Tyrolean)0:55455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann2923 Lieder verschiedener Völker, WoO 158a: No. 8, Ih mag di nit nehma, du töppeter Hecht (Tyrolean)3:08455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3023 Lieder verschiedener Völker, WoO 158a: No. 9, Oj, oj upilem sie w karczmie (Polish)0:48455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3123 Lieder verschiedener Völker, WoO 158a: No. 10, Poszla baba po popiol (Polish)0:44455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3223 Lieder verschiedener Völker, WoO 158a: No. 12, Seus lindos olhos (Portugese)2:18455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3323 Lieder verschiedener Völker, WoO 158a: No. 13, Im Walde sind viele Mücklein geboren (Russian)0:56455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3423 Lieder verschiedener Völker, WoO 158a: No. 14, Ach Bächlein, Bächlein, kühle Wasser (Russian)1:33455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3523 Lieder verschiedener Völker, WoO 158a: No. 15, Unsere Mädchen gingen in den Wald ((Russian)0:49455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3623 Lieder verschiedener Völker, WoO 158a: No. 17, Vaggvisa (Swedish)1:53455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3723 Lieder verschiedener Völker, WoO 158a: No. 18, Un ä Bergli bin i gesässe (Swiss)1:54455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3823 Lieder verschiedener Völker, WoO 158a: No. 20, Bolero a due. Como la mariposa (Spanish)1:04455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann3923 Lieder verschiedener Völker, WoO 158a: No. 22, Magyar Szüretölö Ënek (Hungarian)0:58455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann40Air de Colin, from Le Devin du Village, WoO 158C No. 21:41455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst Neumann41Air Francais, Hess 1681:43455839Rundfunkchor LeipzigLeipzig Radio Chorus,654834Horst NeumannCD 86: Folk Songs WoO158123 Lieder verschiedener Völker, WoO 158a: No. 2, Horch auf, mein Liebchen (German)1:502075445Jens Hamann,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas223 Lieder verschiedener Völker, WoO 158a: No. 3, Wegen meiner bleib d’Fräula (German)2:232075445Jens Hamann,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas323 Lieder verschiedener Völker, WoO 158a: No. 5, I bin a Tyroler Bua (Tyrolean)3:462075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas423 Lieder verschiedener Völker, WoO 158a: No. 6, A Madel, ja a Madel (Tyrolean)2:462075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas523 Lieder verschiedener Völker, WoO 158a: No. 11, Yo no quiero embarcarme (?Port.)1:262075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas623 Lieder verschiedener Völker, WoO 158a: No. 16, Schöne Minka, ich muß scheiden (Ukrainian. ‘Air cosaque’)3:022075443Dorothee Wohlgemuth,2075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas723 Lieder verschiedener Völker, WoO 158a: No. 19, Una paloma blanca (Sp. ‘Bolero a solo’)2:322075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas823 Lieder verschiedener Völker, WoO 158a: No. 21, La tiranna se embarca (Sp.)3:292075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas923 Lieder verschiedener Völker, WoO 158a: No. 23, Da brava, Catina (Venetian)1:012075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas10British Songs, WoO 158b: Adieu, My Lov’d Harp2:351689483Christine Wehler,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas11British Songs, WoO 158b: Oh ono chrio (O Was Not I a Weary Wight!)5:241689483Christine Wehler,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas12British Songs, WoO 158b: Red Gleams the Sun on Yon Hill Tap1:402075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas13British Songs, WoO 158b: Erin! O Erin!3:202075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas14British Songs, WoO 158b: O Mary, Ye’s Be clad in Silk2:362075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas15Songs of Various Nationality, WoO 158c: When My Hero in Court Appears1:471689483Christine Wehler,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas16Songs of Various Nationality, WoO 158c: Air de Colin (Non, non, Colette n’est point trompeuse)1:372075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas17Songs of Various Nationality, WoO 158c: Mark Yonder Pomp of Costly Fashion3:082075444Georg Poplutz,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas18Songs of Various Nationality, WoO 158c: Bonnie Wee Thing2:152075443Dorothee Wohlgemuth,1689483Christine Wehler,2075445Jens Hamann,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas19Songs of Various Nationality, WoO 158c: From Thee, Eliza, I Must Go2:442075443Dorothee Wohlgemuth,2075444Georg Poplutz,2075445Jens Hamann,2075442Martin Haunhorst,3297872Bernard Schwartz (2),2036563Rainer Maria Klaas313190Optimal Media GmbH10Manufactured By + +95537Johann Sebastian BachJ. S. BachComplete Edition = Gesamtwerk = L'Œuvre Intégrale95537Johann Sebastian BachComposed ByReissueStereoCompilationReissueClassicalEurope2014Disc 1-2: Recording: May & June 2006, Lokhorstkerk, Leiden, The Netherlands +Disc 3: Recording: 1990 - 1992, Lukaskirche Dresden, Germany +Disc 4: Recordings: 1977 & 1978, Paul-Gerhardt-Kirche, Leipzig, Germany (13-15); 1 March 1994, Waalse Kerk, Amsterdam, The Netherlands (1-12) +Disc 5-6: Recording: 1990, Paul-Gerhardt-Kirche, Leipzig, Germany +Disc 7: Recording: May & June 2006, Schiedam/Leiden, The Netherlands +Disc 8: Recordings: 1998 (BWV 1055 & 1064), 1999 (BWV1044), Maria Minor, Utrecht, The Netherlands +Disc 9-10: Recording: 7-12 September 2009, Siemens-Villa, Berlin, Germany +Disc 11-12: Recording: June 2006, Remonstrantse Doopsgezinde Kerk, Deventer, The Netherlands +Disc 13-14: Recording: 19-21 June, 5-6 September & 22-24 December 2008, Doopsgezindekerk, Deventer, The Netherlands +Disc 15-16: Recording: January-April 2012, TVA Studio, Ascea, Salerno, Italy +Disc 17: Recording: 21-24 April 2014, Diocesan Museum, Reggio Emilia, Italy +Disc 18: Recording: November 1999, Maria Minor, Utrecht, The Netherlands +Disc 19-20: Recording: 25-29 October 1999, Maria Minor, Utrecht, The Netherlands +Disc 21: Recording: 26 & 29 October, 16 November 1999, Maria Minor, Utrecht, The Netherlands +Disc 22: Recording: June 1990, Haydnsaal, Esterházy Palace, Eisenstadt, Austria (9-16), March 2014, Chiesa di S. Domenico, Rieti, Italy (1-8) +Disc 23-24: Recording: 25-26 March & 14-15 April 2008, Doopsgezinde Kerk, Deventer, The Netherlands +Disc 25-26: Recording: 2-3 June & 13-14 September 2008, Hervormde Kerk, Rhoon, The Netherlands +Disc 27-28: Recording: 18-19 & 22-23 June 1999, Maria Minor, Utrecht, The Netherlands +Disc 29-31: Recording: 1988, Digipro Brussels, Belgium +Disc 32-33: Recording: 20 April & 8-9 July 1999, Maria Minor, Utrecht, The Netherlands +Disc 34: Recording: 20-22 September 1999, Maria Minor, Utrecht, The Netherlands +Disc 35: Recording: 2-4 November 1999, Maria Minor, Utrecht, The Netherlands +Disc 36-37: Recording: 4-8 July 1999, Maria Minor, Utrecht, The Netherlands +Disc 38: Recording: 26 & 27 September 2006, Doopsgezinde Kerk, Deventer, The Netherlands +Disc 39: Recordings: November 1999, Maria Minor, Utrecht, The Netherlands (BWV 818 & 819); 26 & 27 September 2006, Doopsgezinde Kerk, Deventer, The Netherlands (BWV 816 & 817) +Disc 40: Recording: 30 November & 3 December 1999, Maria Minor, Utrecht, The Netherlands +Disc 41: Recording: 8-9 & 11 November 1999, Maria Minor, Utrecht, The Netherlands +Disc 42: Recording: 8-9 & 11 November, 2 December 1999, Maria Minor, Utrecht, The Netherlands +Disc 43-44: Recording: November 1999, Maria Minor, Utrecht, The Netherlands +Disc 45: Recording: 16 & 17 November 1999, Maria Minor, Utrecht, The Netherlands +Disc 46-95: Recordings: 1999-2000 +Disc 96-97: Recording: September 1992, Jesus-Christus-Kirche, Berlin-Dahlem, Germany +Disc 98-99: Recording: 1972, Lukaskirche, Dresden +Disc 100-101: Recording: 1974, Himmelfahrtskirche, Munich, Germany +Disc 102: Recording: July 2007, Civic Hall, Murrhardt, Germany +Disc 103: Recordings: November-December 1978 (BWV 243); 23-27 July, 1999, Stadtkirche Pforzheim, Germany (BWV 249) +Disc 104: Recording: 1981/1984, Christuskirche, Berlin, Germany +Disc 105: Recording: 1983, Christuskirche, Berlin, Germany +Disc 106: Recording: 1981/1984, Christuskirche, Berlin, Germany +Disc 107: Recording: 1978, Christuskirche, Berlin, Germany +Disc 108: Recording: 1979/1985, Christuskirche, Berlin, Germany +Disc 109: Recording: 1983/1985, Christuskirche, Berlin, Germany +Disc 110: Recording: no information +Disc 111: Recording: 1979/1981, Christuskirche, Berlin, Germany +Disc 112-114: Recording: January & February 1970, Lukaskirche, Dresden, Germany +Disc 115-116: Recording: May 1998, Lukaskirche, Dresden, Germany +Disc 117-119: Recording: January, April, June, November 1974 & February 1975, Lukaskirche, Dresden, Germany +Disc 120-121: Recording: no information +Disc 122-127: Recording: June 1999 +Disc 128-131: Recording: 29 April - 3 May 2013, Stadtkirche 'Zur Gotteshilfe', Waltershausen, Thuringia, Germany +Disc 132: Recording: 12 - 15 August 2013, Hofkirche, Dresden, Germany +Disc 133: Recording: 12 - 15 August 2013, Hofkirche, Dresden, Germany (Track 1-11); 29 April - 3 May 2013, Stadtkirche, Waltershausen, Thuringia, Germany (Track 12-15) +Disc 134-135: Recording: 12 - 15 August 2013, Hofkirche, Dresden, Germany +Disc 136-138: Recording: 26 - 28 August 2013, Jacobi Kirche, Sangerhausen, Germany +Disc 139-142: Recording: 25 - 28 September 2013, Gräfenhain, Thuringia, GermanyNeeds Vote0Brandenburg ConcertosConcerto No. 1 In F, BWV1046884530Pieter-Jan BelderConductor [Conducted From the Harpsichord By]1205712Musica AmphionEnsemble915372Erwin WieringaHorn1205716Teunis van der ZwartHorn884531Rémy BaudetLeader, Violino Piccolo [Violin Piccolo]1205708Frank de BruineOboe1-1I. [Without Tempo Indication]3:531-2II. Adagio3:331-3III. Allegro4:061-4IV. Menuet - Trio I - Polonaise - Trio II8:04Concerto No. 2 In F, BWV1047884530Pieter-Jan BelderConductor [Conducted From the Harpsichord By], Recorder1205712Musica AmphionEnsemble884531Rémy BaudetLeader, Violin1205708Frank de BruineOboe1205705William WrothTrumpet1-5I. [Without Tempo Indication]4:471-6II. Andante3:151-7III. Allegro Assai2:38Concerto No. 3 In G, BWV10481205717Albert BrüggenCello890995Rainer ZipperlingCello842644Richte van der MeerCello884530Pieter-Jan BelderConductor [Conducted From the Harpsichord By]1205712Musica AmphionEnsemble884531Rémy BaudetLeader, Violin1205713Mariëtte HoltropViola884529Marten BoekenViola842648Staas SwierstraViola1205710Irmgard SchallerViolin1205706Sayuri YamagataViolin1-8I. [Without Tempo Indication]5:181-9II. Adagio0:201-10III. Allegro4:45Concerto No. 4 In G, BWV1049884530Pieter-Jan BelderConductor [Conducted From the Harpsichord By], Recorder1205712Musica AmphionEnsemble884531Rémy BaudetLeader, Violin991427Saskia CoolenRecorder2-1I. Allegro6:422-2II. Andante3:312-3III. Presto4:34Concerto No. 5 In D, BWV1050884530Pieter-Jan BelderConductor, Harpsichord1205712Musica AmphionEnsemble884531Rémy BaudetLeader, Violin837115Wilbert HazelzetTraverso [Transverse Flute]2-4I. Allegro9:472-5II. Affettuoso5:422-6III. Allegro5:10Concerto No. 6 In B Flat, BWV10511205714Lucia SwartsCello884530Pieter-Jan BelderConductor [Conducted From the Harpsichord By]1205712Musica AmphionEnsemble884531Rémy BaudetLeader1205706Sayuri YamagataViola842648Staas SwierstraViola1205707Johannes BoerViola da Gamba2-7I. [Without Tempo Indication]2-8II. Adagio Ma Non Tanto4:432-9III. Allegro5:40Orchestral Suites 1 - 4, BWV 1066-1069Ouverture (Orchestral Suite) No. 1 In C, BWV1066578719Ludwig GüttlerConductor899865Virtuosi SaxoniaeOrchestra3-1I. Ouverture5:373-2II. Courante1:383-3III. Gavotte I & II2:273-4IV. Forlane1:163-5V. Menuet I & II2:453-6VI. Bourée I & II2:253-7VII. Passepied I & II3:02Ouverture (Orchestral Suite) No. 2 In B Minor, BWV1067578719Ludwig GüttlerConductor899865Virtuosi SaxoniaeOrchestra3-8I. Ouverture6:253-9II. Rondeau1:393-10III. Sarabande2:523-11IV. Bourrée I & II1:503-12V. Polonaise2:593-13VI. Menuet1:093-14VII. Badinerie1:20Ouverture (Orchestral Suite) No. 3 In D, BWV1068578719Ludwig GüttlerConductor899865Virtuosi SaxoniaeOrchestra3-15I. Ouverture6:353-16II. Air4:163-17III. Gavotte I & II3:113-18IV. Bourrée1:153-19V. Gigue2:39Ouverture (Orchestral Suite) No. 4 In D, BWV1069578719Ludwig GüttlerConductor899865Virtuosi SaxoniaeOrchestra3-20I. Ouverture6:493-21II. Bourrée I & II2:533-22III. Gavotte1:443-23IV. Menuet I & II3:293-24V. Réjouissance2:17Violin Concertos BWV 1041, 1042, 1052 & 1056, Concerto For 2 Violins And Orchestra BWV 1043Violin Concerto In E, BWV1042862842Wim StraesserCello1150486Libia HernandezDouble Bass4019254Dominique CitroenHarpsichord902979Henk RubinghLeader1591118Gert Jan LeuverinkViola4655223Roland KrämerViola1560186Elisabeth IngenhouszViolin1464838Eva ScheyttViolin1536502Juditha HaeberlinViolin8026963Kirsti GoedhartKrisi GoedhartViolin745084Tineke de JongViolin857108Thomas ZehetmairViolin, Creative Director4-1I. Allegro7:104-2II. Adagio6:464-3III. Allegro Assai2:47Violin Concerto In A Minor, BWV1041862842Wim StraesserCello1150486Libia HernandezDouble Bass4019254Dominique CitroenHarpsichord902979Henk RubinghLeader1591118Gert Jan LeuverinkViola4655223Roland KrämerViola1464838Eva ScheyttViolin1536502Juditha HaeberlinViolin1983306Karen Segal (2)Violin8026963Kirsti GoedhartKrisi GoedhartViolin745084Tineke de JongViolin857108Thomas ZehetmairViolin, Creative Director4-4I. [Without Tempo Indication]3:574-5II. Andante6:184-6III. Allegro Assai3:31Violin Concerto In D Minor, BWV1052 Reconstructed From The Harpsichord Concerto BWV1052862842Wim StraesserCello1150486Libia HernandezDouble Bass4019254Dominique CitroenHarpsichord902979Henk RubinghLeader1591118Gert Jan LeuverinkViola4655223Roland KrämerViola1464838Eva ScheyttViolin1536502Juditha HaeberlinViolin1983306Karen Segal (2)Violin8026963Kirsti GoedhartKrisi GoedhartViolin745084Tineke de JongViolin857108Thomas ZehetmairViolin, Creative Director4-7I. [Without Tempo Indication]7:254-8II. Adagio6:434-9III. Allegro7:41Violin Concerto In G Minor, BWV1056 Reconstructed From The Harpsichord Concerto BWV1056862842Wim StraesserCello1150486Libia HernandezDouble Bass4019254Dominique CitroenHarpsichord902979Henk RubinghLeader1591118Gert Jan LeuverinkViola4655223Roland KrämerViola1560186Elisabeth IngenhouszViolin1464838Eva ScheyttViolin1536502Juditha HaeberlinViolin8026963Kirsti GoedhartKrisi GoedhartViolin745084Tineke de JongViolin857108Thomas ZehetmairViolin, Creative Director4-10I. [Without Tempo Indication]3:254-11II. Largo3:064-12III. Presto3:07Concerto For Two Violins And Orchestra In E, BWV1043522209Kurt MasurConductor840038Walter Heinz BernsteinHarpsichord522210Gewandhausorchester LeipzigOrchestra3266840Giorgio KröhnerViolin941942Karl SuskeViolin4-13I. Vivace4:094-14II. Largo Ma Non Tanto7:104-15III. Allegro5:09Harpsichord Concertos, BWV 1052-1055Harpsichord Concerto In D Minor, BWV1052996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra5-1I. Allegro7:475-2II. Adagio5:395-3III. Allegro8:00Harpsichord Concerto In E, BWV1053996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra5-4I. [Without Tempo Indication]8:065-5II. Siciliano4:275-6III. Allegro6:28Harpsichord Concerto In D, BWV1054996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra5-7I. [Without Tempo Indication]7:465-8II. Adagio E Piano Sempre5:115-9III. Allegro2:48Harpsichord Concerto In A, BWV1055996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra5-10I. Allegro4:245-11II. Larghetto5:295-12III. Allegro Ma Non Tanto4:10Harpsichord Concertos BWV 1056-1058, 1060 & 1065Harpsichord Concerto In F Minor, BWV1056996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra6-1I. [Without Tempo Indication]4:266-2II. Largo2:256-3III. Presto3:31Concerto For Harpsichord, 2 Flutes, Strings And B.C. In F, BWV1057996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra1536504Karel Van SteenhovenRecorder1536506Paul LeenhoutsRecorder6-4I. [Without Tempo Indication]7:116-5II. Andante3:406-6III. Allegro Assai5:08Harpsichord Concerto In G Minor, BWV1058996805Burkhard GlaetznerConductor842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra6-7I. [Without Tempo Indication]4:076-8II. Andante6:066-9III. Allegro Assai3:58Concerto For 2 Harpsichords, Strings And B.C. In C Minor, BWV1060996805Burkhard GlaetznerConductor849120Armin ThalheimHarpsichord842911Christine SchornsheimHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra6-10I. Allegro5:306-11II. Largo Ovvero Adagio5:426-12III. Allegro3:42Concerto For 4 Harpsichords, Strings And B.C. In A Minor, BWV1065996805Burkhard GlaetznerConductor849120Armin ThalheimHarpsichord842911Christine SchornsheimHarpsichord1536501Mechtild StarkHarpsichord1536515Violetta LiebschHarpsichord849128Neues Bachisches Collegium Musicum LeipzigOrchestra6-13I. [Without Tempo Indication]3:566-14II. Largo2:306-15III. Allegro3:25Concertos For 2 And 3 Harpsichords BWV 1061-1064Concerto For 2 Harpsichords And Strings In C, BWV1061884530Pieter-Jan BelderConductor1536510Menno Van DelftHarpsichord884530Pieter-Jan BelderHarpsichord1205712Musica AmphionOrchestra7-1I. [Without Tempo Indication]6:597-2II. Adagio Ovvero Largo5:097-3III. Fugue5:36Concerto For 2 Harpsichords And Strings In C Minor, BWV1062884530Pieter-Jan BelderConductor884530Pieter-Jan BelderHarpsichord1536503Siebe HenstraHarpsichord1205712Musica AmphionOrchestra7-4I. [Without Tempo Indication]3:407-5II. Andante5:427-6III. Allegro Assai4:26Concerto For 3 Harpsichords And Strings In D Minor, BWV1063884530Pieter-Jan BelderConductor1536510Menno Van DelftHarpsichord884530Pieter-Jan BelderHarpsichord1536503Siebe HenstraHarpsichord1205712Musica AmphionOrchestra7-7I. [Without Tempo Indication]4:457-8II. Alla Siciliana3:467-9III. Allegro4:48Concerto For 3 Harpsichords And Strings In C, BWV1064884530Pieter-Jan BelderConductor1536510Menno Van DelftHarpsichord884530Pieter-Jan BelderHarpsichord1536503Siebe HenstraHarpsichord1205712Musica AmphionOrchestra7-10I. [Without Tempo Indication]6:047-11II. Adagio5:187-12III. Allegro4:30Triple Concerto BWV1044, Concerto For Oboe D'Amore BWV1055, Concerto For 3 Violins BWV1064Concerto For Flute, Violin, Harpsichord, Strings And B.C. In A Minor, BWV10442619943Nederlands Bach EnsembleEnsemble1536509Marieke SchneemannFlute1536510Menno Van DelftHarpsichord261137Elisabeth PerryLiz PerryViolin8-1I. Allegro8:548-2II. Adagio6:018-3III. Alla Breve7:29Concerto For Oboe D'Amore, Strings And B.C. In A, BWV10551045366Rob VisserOboe d'Amore1205709Amsterdam Bach SoloistsOrchestra8-4I. Allegro5:048-5II. Larghetto5:478-6III. Allegro Ma Non Tanto3:41Concerto For 3 Violins, Strings And B.C. In D, BWV10641205709Amsterdam Bach SoloistsOrchestra902979Henk RubinghViolin1116785Rainer KussmaulViolin1205711Thomas HengelbrockViolin8-7I. Allegro5:528-8II. Adagio5:118-9III. Allegro4:15Sonatas & Partitas For Solo Violin BWV 1001-1003Sonata No. 1 In G Minor, BWV10012950329Kristóf BarátiViolin9-1I. Adagio3:539-2II. Fugue: Allegro5:289-3III. Siciliana3:049-4IV. Presto2:32Partita No. 1 In B Minor, BWV10022950329Kristóf BarátiViolin9-5I. Allemanda4:259-6II. Double2:109-7III. Corrente2:159-8IV. Double: Presto2:449-9V. Sarabande1:539-10VI. Double1:229-11VII. Tempo Di Borea2:169-12VIII. Double2:15Sonata No. 2 In A Minor, BWV10032950329Kristóf BarátiViolin9-13I. Grave3:509-14II. Fugue7:429-15III. Andante5:189-16IV. Allegro4:06Sonatas & Partitas For Solo Violin BWV 1004-1006Partita No. 2 In D Minor, BWV10042950329Kristóf BarátiViolin10-1I. Allemanda3:0410-2II. Corrente1:5910-3III. Sarabande2:2710-4IV. Giga3:0810-5V. Ciacona12:57Sonata No. 3 In C, BWV10052950329Kristóf BarátiViolin10-6I. Adagio3:5810-7II. Fugue9:3810-8III. Largo3:0310-9IV. Allegro Assai3:29Partita No. 3 In E, BWV10062950329Kristóf BarátiViolin10-10I. Preludio3:5010-11II. Loure2:4810-12III. Gavotte En Rondeau2:4710-13IV. Menuet I - Menuet II1:5910-14V. Bourrée1:0710-15VI. Gigue1:33Cello Suites 1, 3 & 5 BWV 1007, 1009 & 1011Suite No. 1 In G, BWV1007837037Jaap ter LindenCello11-1I. Prelude3:1311-2II. Allemande4:4911-3III. Courante2:5711-4IV. Sarabande3:0511-5V. Minuet I & II3:2011-6VI. Gigue1:47Suite No. 3 In C, BWV1009837037Jaap ter LindenCello11-7I. Prelude3:3711-8II. Allemande4:2311-9III. Courante3:3811-10IV. Sarabande4:0711-11V. Bourrée I & II3:4311-12VI. Gigue3:25Suite No. 5 In C Minor, BWV1011837037Jaap ter LindenCello11-13I. Prelude6:2411-14II. Allemande6:4711-15III. Courante2:2611-16IV. Sarabande3:0111-17V. Gavotte I & II5:2011-18VI. Gigue2:29Cello Suites 2, 4 & 6 BWV 1008, 1010 & 1012Suite No. 2 In D Minor, BWV1008837037Jaap ter LindenCello12-1I. Prelude3:5912-2II. Allemande3:4012-3III. Courante2:2612-4IV. Sarabande4:4612-5V. Minuet I & II3:1412-6VI. Gigue2:46Suite No. 4 In E Flat, BWV1010837037Jaap ter LindenCello12-7I. Prelude4:2012-8II. Allemande4:4712-9III. Courante3:4712-10IV. Sarabande4:4812-11V. Bourrée I & II5:0812-12VI. Gigue2:49Suite No. 6 In D, BWV1012837037Jaap ter LindenCello12-13I. Prelude5:0012-14II. Allemande7:3012-15III. Courante3:4812-16IV. Sarabande4:2512-17V. Gavotte I & II4:1712-18VI. Gigue4:22Flute Sonatas BWV 1013, 1030, 1032, 1034 & 1035Sonata In E Minor, BWV1034915368Jed WentzFlute915375Michael BorgstedeHarpsichord13-1I. Adagio Ma Non Tanto3:0513-2II. Allegro2:3013-3III. Andante2:5813-4IV. Allegro5:03Sonata In A, BWV1032915368Jed WentzFlute915375Michael BorgstedeHarpsichord13-5I. Vivace3:1513-6II. Largo E Dolce2:3013-7III. Allegro4:05Partita For Solo Flute In A Minor, BWV1013915368Jed WentzFlute915375Michael BorgstedeHarpsichord13-8I. Allemande5:3413-9II. Corrente3:4113-10III. Sarabande5:2413-11IV. Bourrée Anglaise3:12Sonata In E, BWV1035915368Jed WentzFlute915375Michael BorgstedeHarpsichord13-12I. Adagio Ma Non Tanto2:1813-13II. Allegro2:5013-14III. Siciliana2:3213-15IV. Allegro Assai2:54Sonata In B Minor, BWV1030915368Jed WentzFlute915375Michael BorgstedeHarpsichord13-16I. Andante7:1813-17II. Largo E Dolce2:4813-18III. Presto1:2113-19IV. 12/163:28Flute Sonatas BWV 1038 & 1039, Musikalisches Opfer BWV 1079Sonata In G, BWV1039915368Jed WentzFlute1111214Marion MoonenFlute915375Michael BorgstedeHarpsichord14-1I. Adagio2:5814-2II. Allegro Ma Non Presto3:1514-3III. Adagio1:3514-4IV. Presto2:31Sonata In G, BWV1038915368Jed WentzFlute915375Michael BorgstedeHarpsichord14-5I. Largo2:5514-6II. Vivace0:5414-7III. Adagio2:1614-8IV. Presto1:25Musikalisches Opfer, BWV1079915368Jed WentzFlute915375Michael BorgstedeHarpsichord14-9Ricercar5:1914-10Canon Perpetuus Super Thema Regium1:211112507Igor RuhadzeViolin3204131Sara De CorsoViolin14-11Canones Diversi Super Thema Regium - Canon 1 A 21:3414-12Canones Diversi Super Thema Regium - 2 A 2 Violin: In Unisono1:091112507Igor RuhadzeViolin3204131Sara De CorsoViolin14-13Canones Diversi Super Thema Regium - 3 A 2 Per Motum Contrarium1:0814-14Canones Diversi Super Thema Regium - 4 A 2 Per Augmentationum, Contrario Motu1:321112507Igor RuhadzeViolin3204131Sara De CorsoViolin14-15Canones Diversi Super Thema Regium - 5 A 22:181112507Igor RuhadzeViolin3204131Sara De CorsoViolin14-16Canones Diversi Super Thema Regium - Fuga Canonica In Epidiapente1:4314-17Canones Diversi Super Thema Regium - Ricercar A 67:0814-18Canones Diversi Super Thema Regium - Canon A 2 Quaerendo invenietis1:2614-19Canones Diversi Super Thema Regium - Canon A 42:35604472Job Ter HaarCello4825059Daniel Ivo De OliveiraHarpsichord14-20Sonata Sopr'il Soggetto Reale - I. Largo5:0414-21Sonata Sopr'il Soggetto Reale - II. Allegro4:3314-22Sonata Sopr'il Soggetto Reale - III. Andante2:3414-23Sonata Sopr'il Soggetto Reale - IV. Allegro2:3914-24Canon Perpetuus4:14Lute Works BWV 995, 996 & 998Suite In E Minor, BWV9966109092Mario D'AgostoLute15-1I. Prelude3:1115-2II. Allemande3:1315-3III. Courante2:3815-4IV. Sarabande3:5915-5V. Bourrée1:4015-6VI. Gigue3:25Prelude, Fugue And Allegro In E Flat, BWV9986109092Mario D'AgostoLute15-7I. Prelude3:0415-8II. Fugue6:4615-9III. Allegro4:17Suite In G Minor, BWV9956109092Mario D'AgostoLute15-10I. Prelude5:5715-11II. Allemande5:0315-12III. Courante2:2815-13IV. Sarabande3:2915-14V. Gavotte I & II 'En Rondeau'4:4715-15VI. Gigue2:31Lute Works BWV 997, 999, 1000 & 1006APartita In C Minor, BWV9976109092Mario D'AgostoLute16-1I. Prelude3:5016-2II. Fugue7:3916-3III. Sarabande4:2216-4IV. Gigue-Double3:30Suite In E, BWV1006A6109092Mario D'AgostoLute16-5I. Prelude4:4616-6II. Loure3:0816-7III. Gavotte En Rondeau3:3516-8IV. Menuet I & II5:2216-9V. Bourrée2:2516-10VI. Gigue2:4916-11Prelude In C Minor, BWV9991:386109092Mario D'AgostoLute16-12Fugue In G Minor, BWV10005:576109092Mario D'AgostoLuteViola Da Gamba Sonatas BWV 1027-1029Sonata In D, BWV10281135915Daniele BoccaccioHarpsichord2009489Patxi MonteroViola da Gamba17-1I. [Adagio]2:1517-2II. [Allegro]3:5517-3III. Andante4:4517-4IV. Allegro4:35Sonata In G, BWV10271135915Daniele BoccaccioHarpsichord2009489Patxi MonteroViola da Gamba17-5I. Adagio4:2317-6II. Allegro Ma Non Tanto3:5417-7III. Andante2:1517-8IV. Allegro Moderato3:20Sonata In G Minor, BWV10291135915Daniele BoccaccioHarpsichord2009489Patxi MonteroViola da Gamba17-9I. Vivace5:5517-10II. Adagio5:5517-11III. Allegro4:18Musikalisches Opfer BWV 1079 CanonsMusikalisches Opfer, BWV10791536512Krijn KoetsveldConductor2619943Nederlands Bach EnsembleEnsemble18-1Ricercare A 36:1618-2Ricercare A 67:2218-3Sonata Sopr'il Soggetto Reale A Traversa, Violino E Continuo - I. Largo4:1018-4Sonata Sopr'il Soggetto Reale A Traversa, Violino E Continuo - II. Allegro6:2018-5Sonata Sopr'il Soggetto Reale A Traversa, Violino E Continuo - III. Andante3:0918-6Sonata Sopr'il Soggetto Reale A Traversa, Violino E Continuo - IV. Allegro3:0518-7Thematis Regii, Elaborationes Canonicae - Canon A 2 Cancrizans0:3718-8Thematis Regii, Elaborationes Canonicae - Canon A 2 In Unisono0:5118-9Thematis Regii, Elaborationes Canonicae - Canon A 2 Motum Contrarium0:5918-10Thematis Regii, Elaborationes Canonicae - Canon A 2 Per Augmentationum, Contrario Motu1:1418-11Thematis Regii, Elaborationes Canonicae - Canon A 2 Per Tonos2:2418-12Thematis Regii, Elaborationes Canonicae - Fuga Canonica In Epidiapente2:1718-13Thematis Regii, Elaborationes Canonicae - Canon Perpetuus Super Thema Regium1:1018-14Thematis Regii, Elaborationes Canonicae - Canon A 21:0818-15Thematis Regii, Elaborationes Canonicae - Canon A 42:4518-16Thematis Regii, Elaborationes Canonicae - Canon Perpetuus2:01Canons, BWV 1072-10781536512Krijn KoetsveldConductor2619943Nederlands Bach EnsembleEnsemble18-17Canon A 8, BWV10720:1918-18Canon A 4, BWV10730:4818-19Canon A 4, BWV1074 (Part I)0:3418-20Canon A 4, BWV1074 (Part II)0:3018-21Canon A 2, BWV10750:2518-22Canon A 6, BWV10760:2318-23Canon A 4, BWV10770:3618-24Canon A 7, BWV10781:1318-25Canon A 2, BWV deest0:32Verschiedene Canones Über Die Ersten 8 Fundamental-Noten Der Aria Aus Den Goldberg-Variationen, BWV10871536512Krijn KoetsveldConductor2619943Nederlands Bach EnsembleEnsemble18-26Canon Simplex0:3718-27All'Roverscio0:2718-28Beide Surgleich, Motu Recto E Contrario0:3218-29Motu Contrario E Recto0:3718-30Canon Duplex A 40:3918-31Canon Simplex Über Besagtes Fundament A 30:2818-32Idem A 30:4818-33Canon Simplex A 30:2518-34Canon In Unisono Post Semi Fugam A 30:2818-35Alio Modo0:3018-36Evolutio0:2718-37Canon Duplex A 50:3518-38Canon Duplex A 50:4118-39Canon Triplex A 60:2518-40Canon A 4 Augmentationem Et Diminutionem0:43Violin Sonatas BWV 1014-1016Sonata No. 1 In B Minor, BWV1014884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin19-1I. Adagio3:4419-2II. Allegro2:5619-3III. Andante3:5219-4IV. Allegro2:26Sonata No. 2 In A, BWV1015884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin19-5I. [Without Tempo Indication]3:2519-6II. Allegro Assai3:2219-7III. Andante3:2719-8IV. Presto4:45Sonata No. 3 In E, BWV1016884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin19-9I. Adagio4:1919-10II. Allegro2:5919-11III. Adagio Ma Non Tanto5:2319-12IV. Allegro3:48Violin Sonatas BWV 1017-1019Sonata No. 4 In C Minor, BWV1017884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin20-1I. Siciliano: Largo4:4820-2II. Allegro4:3920-3III. Adagio3:1520-4IV. Allegro3:30Sonata No. 5 In F Minor, BWV1018884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin20-5I. Largo6:5720-6II. Allegro4:4220-7III. Adagio3:1920-8IV. Vivace2:35Sonata No. 6 In G, BWV1019884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin20-9I. Allegro3:4920-10II. Largo1:5720-11III. Allegro5:0220-12IV. Adagio3:1520-13V. Allegro3:25Appendix I (3rd Movement From Sonata No. 6 In G BWV1019, 1st Version)884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin20-14Cantabile, Ma Un Poco Adagio6:53Appendix II (4th Movement From Sonata No. 6 In G BWV1019, 1st Version)884530Pieter-Jan BelderHarpsichord1723327Luis Otavio SantosViolin20-15Adagio2:23Notenbüchlein Für Anna Magdalena Bach21-1Menuet BWV Anhang 1131:2821-2Menuet BWV Anhang 1141:25842915Christian PetzoldComposed By21-3Menuet BWV Anhang 1151:30842915Christian PetzoldComposed By21-4Rondeau 'Les Bergeries' BWV Anhang 1833:43671327François CouperinComposed By21-5Menuet BWV Anhang 1161:3721-6Polonaise BWV ANhang 1171:5221-7Menuet BWV Anhang 1181:1421-8Polonaise BWV Anhang 1190:5321-9Chorale: Wer Nur Den Lieben Gott Läßt Walten BWV6911:2921-10Gib Dich Zufrieden Und Sei Stille BWV5101:4421-11Gib Dich Zufrieden Und Sei Stille BWV5111:23837051Johannette ZomerSoprano Vocals21-12Gib Dich Zufrieden Und Sei Stille BWV5121:14837051Johannette ZomerSoprano Vocals21-13Menuet BWV Anhang 1201:1121-14Menuet BWV Anhang 1210:5921-15Marche BWV Anhang 1221:00841803Carl Philipp Emanuel BachComposed By21-16Polonaise BWV Anhang 1231:16841803Carl Philipp Emanuel BachComposed By21-17Marche BWV Anhang 1241:22841803Carl Philipp Emanuel BachComposed By21-18Polonaise BWV Anhang 1251:46841803Carl Philipp Emanuel BachComposed By21-19Aria: So Oft Ich Meine Tobackspfeife BWV 515a6:08837051Johannette ZomerSoprano Vocals21-20Menuet, Fait Par Mons. Böhm1:1021-21Musette BWV Anhang 1261:0221-22Marche BWV Anhang 1271:3821-23Polonaise BWV ANhang 1281:2621-24Bist Du Bei Mir BWV5082:40767643Gottfried Heinrich StölzelG.H. StölzelComposed By837051Johannette ZomerSoprano Vocals21-25Aria BWV9883:5621-26Solo Per Il Cembalo BWV Anhang 1292:58841803Carl Philipp Emanuel BachComposed By21-27Polonaise BWV Anhang 1301:52793630Johann Adolf HasseJ.A. HasseComposed By21-28Präludium BWV8462:4121-29Without Title BWV Anhang 1310:4621-30Aria: Warum Betrübst Du Dich BWV5161:48837051Johannette ZomerSoprano Vocals21-31Rezitativ Und Arie: Ich Hab Genug BWV828:25837051Johannette ZomerSoprano Vocals21-32Schaffs Mit Mir Gott BWV5140:52837051Johannette ZomerSoprano Vocals21-33Menuet BWV Anhang 1320:4621-34Aria Di Giovannini BWV5182:30837051Johannette ZomerSoprano Vocals21-35Chorale: Dir, Dir, Jehova, Will Ich Singen BWV2991:17837051Johannette ZomerSoprano Vocals21-36Wie Wohl Ist Mir, O Freund Der Seelen BWV5171:12837051Johannette ZomerSoprano Vocals21-37Aria: Gedenke Doch, Mein Geist BWV5091:25837051Johannette ZomerSoprano Vocals21-38O Ewigkeit, Du Donnerwort BWV5131:20837051Johannette ZomerSoprano VocalsViolin Sonatas BWV 1021 & 1023, Trio Sonatas BWV 1038 & 1039Sonata In E Minor For Violin And Basso Continuo, BWV10235560359Federico Del SordoFrederico del SordoHarpsichord1705983Valerio LositoViolin22-1I. [Prelude]1:5622-2II. Adagio Ma Non Tanto2:3522-3III. Allemanda3:1022-4IV. Gigue2:36Sonata In G For Violin And Basso Continuo, BWV10215560359Federico Del SordoFrederico del SordoHarpsichord1705983Valerio LositoViolin22-5I. Adagio3:2122-6II. Vivace0:5822-7III. Largo2:0722-8IV. Presto1:22Trio Sonata In G, BWV10394663562Il QuadrifoglioEnsemble22-9I. Adagio3:4422-10II. Allegro Ma Non Presto3:3822-11III. Adagio E Piano2:2822-12IV. Presto3:00Trio Sonata In G, BWV10386109091Bach Ensemble HeidelbergEnsemble22-13I. Largo2:4122-14II. Vivace0:5422-15III. Adagio1:5122-16IV. Presto1:29The Well-Tempered Clavier Book I Nos. 1-12Prelude And Fugue No. 1 in C, BWV846884530Pieter-Jan BelderHarpsichord23-1Prelude2:2723-2Fugue1:59Prelude And Fugue No. 2 In C Minor, BWV847884530Pieter-Jan BelderHarpsichord23-3Prelude1:2723-4Fugue1:30Prelude And Fugue No. 3 In C Sharp, BWV848884530Pieter-Jan BelderHarpsichord23-5Prelude1:1823-6Fugue2:21Prelude And Fugue No. 4 In C Sharp Minor, BWV849884530Pieter-Jan BelderHarpsichord23-7Prelude2:3723-8Fugue4:08Prelude And Fugue No. 5 In D, BWV850884530Pieter-Jan BelderHarpsichord23-9Prelude1:2023-10Fugue2:02Prelude And Fugue No. 6 In D Minor, BWV851884530Pieter-Jan BelderHarpsichord23-11Prelude1:3523-12Fugue1:35Prelude And Fugue No. 7 In E Flat, BWV852884530Pieter-Jan BelderHarpsichord23-13Prelude4:3123-14Fugue1:49Prelude And Fugue No. 8 In E Flat Minor, BWV853884530Pieter-Jan BelderHarpsichord23-15Prelude3:3423-16Fugue5:55Prelude And Fugue No. 9 In E, BWV854884530Pieter-Jan BelderHarpsichord23-17Prelude1:2023-18Fugue1:18Prelude And Fugue No. 10 In E Minor, BWV855884530Pieter-Jan BelderHarpsichord23-19Prelude2:0823-20Fugue1:14Prelude And Fugue No. 11 In F, BWV856884530Pieter-Jan BelderHarpsichord23-21Prelude1:0823-22Fugue1:25Prelude And Fugue No. 12 In F Minor, BWV857884530Pieter-Jan BelderHarpsichord23-23Prelude2:0623-24Fugue4:45The Well-Tempered Clavier Book I Nos. 13-24Prelude And Fugue No. 13 In F Sharp, BWV858884530Pieter-Jan BelderHarpsichord24-1Prelude1:1824-2Fugue1:57Prelude And Fugue No. 14 In F Sharp Minor, BWV859884530Pieter-Jan BelderHarpsichord24-3Prelude1:0724-4Fugue4:13Prelude And Fugue No. 15 In G, BWV860884530Pieter-Jan BelderHarpsichord24-5Prelude0:5524-6Fugue2:32Prelude And Fugue No. 16 In G Minor, BWV861884530Pieter-Jan BelderHarpsichord24-7Prelude2:0324-8Fugue2:18Prelude And Fugue No. 17 In A Flat, BWV862884530Pieter-Jan BelderHarpsichord24-9Prelude1:2224-10Fugue3:17Prelude And Fugue No. 18 in G Sharp Minor, BWV863884530Pieter-Jan BelderHarpsichord24-11Prelude1:1424-12Fugue2:30Prelude And Fugue No. 19 In A, BWV864884530Pieter-Jan BelderHarpsichord24-13Prelude1:2024-14Fugue2:15Prelude And Fugue No. 20 In A Minor, BWV865884530Pieter-Jan BelderHarpsichord24-15Prelude1:0924-16Fugue5:00Prelude And Fugue No. 21 In B Flat, BWV866884530Pieter-Jan BelderHarpsichord24-17Prelude1:1624-18Fugue1:40Prelude And Fugue No. 22 In B Flat Minor, BWV867884530Pieter-Jan BelderHarpsichord24-19Prelude2:3224-20Fugue2:56Prelude And Fugue No. 23 In B, BWV868884530Pieter-Jan BelderHarpsichord24-21Prelude0:5724-22Fugue2:41Prelude And Fugue No. 24 In B Minor, BWV869884530Pieter-Jan BelderHarpsichord24-23Prelude4:5924-24Fugue7:28The Well-Tempered Clavier Book II Nos. 1-12Prelude And Fugue No. 1 In C, BWV870884530Pieter-Jan BelderHarpsichord25-1Prelude2:2225-2Fugue1:53Prelude And Fugue No. 2 In C Minor, BWV871884530Pieter-Jan BelderHarpsichord25-3Prelude2:5625-4Fugue2:23Prelude And Fugue No. 3 In C Sharp, BWV872884530Pieter-Jan BelderHarpsichord25-5Prelude1:4625-6Fugue2:04Prelude And Fugue No. 4 In C Sharp Minor, BWV873884530Pieter-Jan BelderHarpsichord25-7Prelude4:1125-8Fugue2:27Prelude And Fugue No. 5 In D, BWV874884530Pieter-Jan BelderHarpsichord25-9Prelude5:3025-10Fugue2:56Prelude And Fugue No. 6 In D Minor, BWV875884530Pieter-Jan BelderHarpsichord25-11Prelude1:4425-12Fugue1:47Prelude And Fugue No. 7 In E Flat, BWV876884530Pieter-Jan BelderHarpsichord25-13Prelude3:0425-14Fugue1:50Prelude And Fugue No. 8 In E Flat Minor, BWV877884530Pieter-Jan BelderHarpsichord25-15Prelude4:0725-16Fugue4:03Prelude And Fugue No. 9 In E, BWV878884530Pieter-Jan BelderHarpsichord25-17Prelude5:2125-18Fugue3:42Prelude And Fugue No. 10 In E Minor, BWV879884530Pieter-Jan BelderHarpsichord25-19Prelude3:4425-20Fugue2:56Prelude And Fugue No. 11 In F, BWV880884530Pieter-Jan BelderHarpsichord25-21Prelude3:5925-22Fugue1:49Prelude And Fugue No. 12 In F Minor, BWV881884530Pieter-Jan BelderHarpsichord25-23Prelude5:1125-24Fugue1:58The Well-Tempered Clavier Book II Nos. 13-24Prelude And Fugue No. 13 In F Sharp, BWV882884530Pieter-Jan BelderHarpsichord26-1Prelude3:4426-2Fugue2:25Prelude And Fugue No. 14 In F Sharp Minor, BWV883884530Pieter-Jan BelderHarpsichord26-3Prelude2:4326-4Fugue5:03Prelude And Fugue No. 15 In G, BWV884884530Pieter-Jan BelderHarpsichord26-5Prelude2:4726-6Fugue1:21Prelude And Fugue No. 16 In G Minor, BWV885884530Pieter-Jan BelderHarpsichord26-7Prelude2:2626-8Fugue3:18Prelude And Fugue No. 17 In A Flat, BWV886884530Pieter-Jan BelderHarpsichord26-9Prelude4:1326-10Fugue2:36Prelude And Fugue No. 18 In G Sharp Minor, BWV887884530Pieter-Jan BelderHarpsichord26-11Prelude5:1626-12Fugue5:09Prelude And Fugue No. 19 In A, BWV888884530Pieter-Jan BelderHarpsichord26-13Prelude1:5926-14Fugue1:41Prelude And Fugue No. 20 In A Minor, BWV889884530Pieter-Jan BelderHarpsichord26-15Prelude3:5426-16Fugue1:57Prelude And Fugue No. 21 In B Flat, BWV890884530Pieter-Jan BelderHarpsichord26-17Prelude6:3626-18Fugue1:59Prelude And Fugue No. 22 In B Flat Minor, BWV891884530Pieter-Jan BelderHarpsichord26-19Prelude3:4026-20Fugue6:17Prelude And Fugue No. 23 In B, BWV892884530Pieter-Jan BelderHarpsichord26-21Prelude2:0826-22Fugue4:31Prelude And Fugue No. 24 In B Minor, BWV893884530Pieter-Jan BelderHarpsichord26-23Prelude2:0626-24Fugue1:58Keyboard Partitas 1, 2, & 6 BWV 825, 826 & 830Partita No. 1 In B Flat, BWV825884530Pieter-Jan BelderHarpsichord27-1I. Prelude1:5927-2II. Allemande5:0127-3III. Corrente2:4927-4IV. Sarabande4:4527-5V. Menuet I - Menuet II2:4927-6VI. Giga2:21Partita No. 2 In C Minor, BWV826884530Pieter-Jan BelderHarpsichord27-7I. Sinfonia4:3727-8II. Allemande5:0827-9III. Courante2:1827-10IV. Sarabande3:3827-11V. Rondeaux1:3327-12VI. Capriccio4:03Partita No. 6 In E Minor, BWV830884530Pieter-Jan BelderHarpsichord27-13I. Toccata6:4727-14II. Allemanda4:2227-15III. Corrente5:2127-16IV. Air1:3127-17V. Sarabande6:2427-18VI. Tempo Di Gavotta2:0627-19VII. Gigue6:28Keyboard Partitas 3, 4, & 5 BWV 827-829Partita No. 3 In A Minor, BWV827884530Pieter-Jan BelderHarpsichord28-1I. Fantasia2:5128-2II. Allemande3:3028-3III. Corrente3:0628-4IV. Sarabande5:1428-5V. Burlesca2:2628-6VI. Scherzo1:1528-7VII. Gigue4:15Partita No. 4 In D, BWV828884530Pieter-Jan BelderHarpsichord28-8I. Ouvertüre6:1528-9II. Allemande9:5028-10III. Courante3:3728-11IV. Aria2:1628-12V. Sarabande6:1328-13VI. Menuet1:2328-14VII. Gigue3:58Partita No. 5 In G, BWV829884530Pieter-Jan BelderHarpsichord28-15I. Praeambulum2:4628-16II. Allemande5:5528-17III. Corrente2:0128-18IV. Sarabande5:2728-19V. Tempo Di Minuetto1:5328-20VI. Passepied1:4228-21VII. Gigue3:05Keyboard Works 1700-1710 I29-1Sonata In A Minor BWV965, After Sonate No. 1 In Johann Adam Reincken's Hortus Musicus: Adagio - Fugue - Adagio - Presto - Allemande - Courante - Sarabande - Gigue16:271252004Christiane WuytsHarpsichord29-2Fugue In D Minor, BWV9484:281252004Christiane WuytsHarpsichord29-3Suite In F Minor, BWV823: Prelude - Sarabande En Rondeau - Gigue6:261252004Christiane WuytsHarpsichord29-4Prelude In A Minor, BWV9228:171252004Christiane WuytsHarpsichord29-5Prelude And Partita In F (On The Third Tone), BWV8337:161252004Christiane WuytsHarpsichord29-6Fugue In B Flat, BWV954, After The Allegro Of Sonata No. 6 In Johann Adam Reincken's Hortus musicus4:081252004Christiane WuytsHarpsichord29-7Fantasia In G Minor, BWV917 'Duobus Subiectis'2:171252004Christiane WuytsHarpsichord29-8Sonata In D, BWV963: Fugue - Adagio - Thema All'imitatio Gallina Cucca11:181252004Christiane WuytsHarpsichord29-9Fugue In A Minor, BWV9473:441252004Christiane WuytsHarpsichord29-10Fugue In A Minor, BWV9583:091252004Christiane WuytsHarpsichordKeyboard Works 1700-1710 II30-1Prelude In B Minor, BWV9232:431252004Christiane WuytsHarpsichord30-2Fugue In B Minor, BWV951, On A Theme By Tomaso Albinoni7:111252004Christiane WuytsHarpsichord30-3Fugue In B Minor, BWV951a, On The Same Theme5:401252004Christiane WuytsHarpsichord30-4Overture In G Minor, BWV822: Ouverture - Aria - Gavotte En Rondeau - Bourrée - Menuet I - Menuet II - Menuet III - Gigue13:381252004Christiane WuytsHarpsichord30-5Sonata In C, BWV966, After Sonate No. 11 In Johann Adam Reincken's Hortus musicus: Prelude - Fugue - Adagio - Allegro - Allemande10:151252004Christiane WuytsHarpsichord30-6Capriccio In E, BWV993, In Honorem Johann Christoph Bachii Ohrdruf6:431252004Christiane WuytsHarpsichord30-7Prelude With The Suite In E Minor, BWV996: Preludio - Passaggio - Allemanda - Courante - Sarabande - Bourrée - Gigue8:491252004Christiane WuytsHarpsichord30-8Fugue In C, BWV946, On A Theme By Albinoni3:011252004Christiane WuytsHarpsichord30-9Sonata In A Minor, BWV9673:131252004Christiane WuytsHarpsichord30-10Fugue In A, BWV9494:441252004Christiane WuytsHarpsichord30-11Fugue In A Minor, BWV9593:061252004Christiane WuytsHarpsichordKeyboard Works 1700-1710 III31-1Concerto And Fugue In C Minor, BWV909: Andante - Allegro - Andante - Allegro - Andante - Adagio - Fugue9:461252004Christiane WuytsHarpsichord31-2Suite In A, BWV832: Allemande - Air Pour Les Trompettes - Sarabande - Bourrée - Gigue7:111252004Christiane WuytsHarpsichord31-3Aria In A Minor, BWV989, 'Variata Alla Maniera Italiana'11:011252004Christiane WuytsHarpsichord31-4Suite In B Flat, BWV821: Prelude - Allemande - Courante - Sarabande - Echo8:311252004Christiane WuytsHarpsichord31-5Fugue In B Flat, BWV955, After Johann Christoph Erselius4:471252004Christiane WuytsHarpsichord31-6Ouverture (Suite) In F, BWV820: Quverture - Entrée - Menuet - Trio - Bourrée - Gigue7:581252004Christiane WuytsHarpsichord31-7Fugue In A, BWV950, On A Theme By Tomaso Albinoni5:201252004Christiane WuytsHarpsichord31-8Capriccio In B Flat, BWV992, 'Sopra La Lontananza Del Suo Fratello Dilettissimo'12:361252004Christiane WuytsHarpsichordItalian Concerto BWV 971, French Ouverture BWV 831, Chromatic Fantasy And Fugue BWV 903Italian Concerto In F, BWV971884530Pieter-Jan BelderHarpsichord32-1I. Allegro4:0632-2II. Largo4:4632-3III. Presto4:02Ouverture In The French Style In B Minor, BWV831884530Pieter-Jan BelderHarpsichord32-4I. Ouvertüre7:1832-5II. Courante2:0232-6III. Gavotte I & II - Da Capo3:3732-7IV. Passepiewd I & II - Da Capo2:5732-8V. Sarabande3:4732-9VI. Bourrée I & II - Da Capo3:0532-10VII. Gigue2:3232-11VIII. Echo3:02Chromatic Fantasy And Fugue In D Minor, BWV903884530Pieter-Jan BelderHarpsichord32-12Fantasie5:3232-13Fuge5:12Goldberg Variations BWV 988Goldberg Variations In G, BWV988, Aria With 30 Variations884530Pieter-Jan BelderHarpsichord33-1Aria5:0233-2Variatio 12:0633-3Variatio 21:3633-4Variatio 3: Canone All'Unisono2:0033-5Variatio 41:1033-6Variatio 51:4833-7Variatio 6: Canone Alla Seconda2:0333-8Variatio 71:5333-9Variatio 82:0633-10Variatio 9: Canone Alla Terza2:3933-11Variatio 10: Fughetta1:3533-12Variatio 112:0633-13Variatio 12: Canone Alla Quarta2:5133-14Variatio 134:1733-15Variatio 142:2233-16Variatio 15: Canone Alla Quinta (Andante)4:5833-17Variatio 16: Ouverture3:0433-18Variatio 172:0233-19Variatio 18: Canone Alla Sesta1:4133-20Variatio 190:3933-21Variatio 202:1533-22Variatio 21: Canone Alla Settima2:2233-23Variatio 22: Alla Breve1:2933-24Variatio 232:2433-25Variatio 24: Canone All'Ottava2:5333-26Variatio 255:2133-27Variatio 261:5033-28Variatio 27: Canone Alla Nona1:0233-29Variatio 282:4433-30Variatio 292:1033-31Variatio 30: Quodlibet2:1133-32Aria Da Capo2:34English Suites 1-3 BWV 806-808Suite No. 1 In A, BWV806898398Bob van AsperenHarpsichord34-1I. Prelude1:5934-2II. Allemande5:4634-3IIIa. Courante I1:3434-4IIIb. Courante II2:0734-5IIIc. Double I1:0634-6IIId. Double II1:1034-7IV. Sarabande4:2034-8Va. Bourrée I1:5034-9Vb. Bourrée II1:2434-10Vc. Bourrée I Da Capo1:0034-11VI. GigueSuite No. 2 In A Minor, BWV807898398Bob van AsperenHarpsichord34-12I. Prelude5:0034-13II. Allemande4:2434-14III. Courante1:4534-15IV. Sarabande3:4034-16Va. Bourrée I2:1334-17Vb. Bourrée II1:0234-18Vc. Bourrée I Da Capo1:0834-19VI. Gigue3:24Suite No. 3 In G Minor, BWV808898398Bob van AsperenHarpsichord34-20I. Prelude3:2134-21II. Allemande4:4034-22III. Courante2:1834-23IV. Sarabande3:1834-24Va. Gavotte I1:1734-25Vb. Gavotte II0:4034-26Vc. Gavotte I Da Capo0:4134-27VI. Gigue2:53English Suites 4-6 BWV 809-811Suite No. 4 In F, BWV809898398Bob van AsperenHarpsichord35-1I. Prelude4:5235-2II. Allemande4:2235-3III. Courante1:3535-4IV. Sarabande3:3235-5Va. Menuet I1:2535-6Vb. Menuet II1:3035-7Vc. Menuet I Da Capo0:4735-8VI. Gigue3:16Suite No. 5 In E Minor, BWV810898398Bob van AsperenHarpsichord35-9I. Prelude5:0035-10II. Allemande4:3235-11III. Courante1:5535-12IV. Sarabande3:3935-13Va. Passepied I1:2035-14Vb. Passepied II0:5135-15Vc. Passepied I Da Capo1:2335-16VI. Gigue2:58Suite No. 6 In D Minor, BWV811898398Bob van AsperenHarpsichord35-17I. Prelude8:2935-18II. Allemande4:5135-19III. Courante2:3335-20IVa. Sarabande2:5535-21IVb. Double2:4335-22Va. Gavotte I1:5635-23Vb. Gavotte II1:3335-24Vc. Gavotte I Da Capo1:0235-25VI. Gigue3:40Concerto Transcriptions IConcerto In D, BWV972 After Antonio Vivaldi1559723Pieter DirksenHarpsichord36-1I. (Allegro)2:1136-2II. Larghetto2:4936-3III. Allegro2:17Concerto In G, BWV973 After Antonio Vivaldi1559723Pieter DirksenHarpsichord36-4I. Allegro Assai2:3536-5II. Largo2:1136-6III. Allegro2:17Concerto In G Minor, BWV975 After Antonio Vivaldi1559723Pieter DirksenHarpsichord36-7I. (Allegro)2:5636-8II. Largo3:3336-9III. Giga: Presto1:36Concerto In C, BWV976 After Antonio Vivaldi1559723Pieter DirksenHarpsichord36-10I. (Allegro)4:0036-11II. Largo2:5336-12III. Allegro3:12Concerto In D Minor, BWV974 After Alessandro Marcello1559723Pieter DirksenHarpsichord36-13I. Andante3:1136-14II. Adagio3:4236-15III. Presto3:14Concerto In G, BWV980 After Antonio Vivaldi1559723Pieter DirksenHarpsichord36-16I. Allegro3:3936-17II. Largo3:3536-18III. (Giga)2:43Concerto In F, BWV978 After Antonio Vivaldi1559723Pieter DirksenHarpsichord36-19I. (Allegro)2:3236-20II. Largo2:0836-21III. Allegro2:19Concerto In C Minor, BWV981 After Benedetto Marcello1559723Pieter DirksenHarpsichord36-22I. Adagio2:4436-23II. Vivace2:0736-24III. Adagio2:5236-25IV. Presto3:55Concerto Transcriptions IIConcerto In G, BWV592A After Johann Ernst Von Sachsen-Weimar1559723Pieter DirksenHarpsichord37-1I. Allegro3:0137-2II. Grave2:0737-3III. Allegro1:44Concerto In D Minor, BWV987 After Johann Ernst Von Sachsen-Weimar1559723Pieter DirksenHarpsichord37-4I. (Grave) - (Presto) - Grave - Presto - Grave2:2837-5II. (Allegro) - Adagio2:3737-6III. Vivace1:17Concerto In B Flat, BWV982 After Johann Ernst Von Sachsen-Weimar1559723Pieter DirksenHarpsichord37-7I. Allegro2:2137-8II. Adagio - Allegro3:3937-9III. Allegro1:41Concerto In C, BWV984 After Johann Ernst Von Sachsen-Weimar1559723Pieter DirksenHarpsichord37-10I. Allegro2:5537-11II. Adagio1:5637-12III. (Chaconne): Allegro Assai2:36Concerto In G Minor, BWV985 After Georg Philipp Telemann1559723Pieter DirksenHarpsichord37-13I. Allegro2:2537-14II. Adagio1:5837-15III. Allegro2:15Concerto In G, BWV986 After An Unknown German Composer1559723Pieter DirksenHarpsichord37-16I. (Allegro)2:0337-17II. Adagio1:2037-18III. Allegro2:19Concerto In G Minor, BWV983 After An Unknown German Composer1559723Pieter DirksenHarpsichord37-19I. (Allegro)2:5937-20II. Adagio2:2737-21III. (Giga): Allegro2:15Concerto In C, BWV977 After An Unknown German Composer1559723Pieter DirksenHarpsichord37-22I. (Allegro)2:3737-23II. Adagio1:2337-24III. Giga: Presto2:20Concerto In B Minor, BWV979 After Giuseppe Torelli1559723Pieter DirksenHarpsichord37-25I. Allegro1:1737-26II. Adagio0:5237-27III. Allegro - Adagio3:3337-28IV. Andante1:2237-29V. Adagio0:4337-30VI. Allegro3:58French Suites 1-4 BWV 812-815Suite No. 1 In D Minor, BWV812884530Pieter-Jan BelderHarpsichord38-1I. Allemande4:0338-2II. Courante1:5638-3III. Sarabande3:4438-4IV. Menuet I & II2:2938-5V. Gigue3:49Suite No. 2 In C Minor, BWV813884530Pieter-Jan BelderHarpsichord38-6I. Allemande3:2438-7II. Courante1:5538-8III. Sarabande3:4038-9IV. Air1:2138-10V. Menuet I & II3:0038-11VI. Gigue2:12Suite No. 3 In B Minor, BWV814884530Pieter-Jan BelderHarpsichord38-12I. Allemande3:4038-13II. Courante2:0338-14III. Sarabande3:1338-15IV. Anglaise1:2538-16V. Menuet & Trio2:5738-17VI. Gigue2:02Suite No. 4 In E Flat, BWV815884530Pieter-Jan BelderHarpsichord38-18I. Allemande3:3038-19II. Courante1:5038-20III. Sarabande3:3338-21IV. Gavotte1:2738-22V. Air1:3838-23VI. Menuet0:5138-24VII. Gigue2:37French Suites 5 & 6 BWV 816 & 817, Suites BWV 818 & 819Suite No. 5 In G, BWV816884530Pieter-Jan BelderHarpsichord39-1I. Allemande3:3639-2II. Courante1:5439-3III. Sarabande5:2939-4IV. Gavotte1:1139-5V. Bourrée1:1139-6VI. Loure2:4339-7VII. Gigue3:22Suite No. 6 In E, BWV817884530Pieter-Jan BelderHarpsichord39-8I. Allemande3:3539-9II. Courante1:4639-10III. Sarabande3:2139-11IV. Gavotte1:0939-12V. Menuet Polonais1:1639-13VI. Bourrée1:3839-14VII. Gigue2:2639-15VIII. Petit Menuet1:14Suite In E Flat, BWV819884530Pieter-Jan BelderHarpsichord39-16I. Allemande3:1339-17II. Allemande (BWV819a)3:4339-18III. Courante1:5539-19IV. Sarabande3:5039-20V. Bourrée1:3739-21VI. Menuet I & II2:12Suite In A Minor, BWV818884530Pieter-Jan BelderHarpsichord39-22I. Allemande3:5939-23II. Courante1:1539-24III. Sarabande Simple3:4839-25IV. Sarabande Double2:4439-26V. Gigue2:37Toccatas40-1Toccata in D Minor, BWV91312:121536510Menno Van DelftHarpsichord40-2Toccata in E Minor, BWV9147:421536510Menno Van DelftHarpsichord40-3Toccata in F Sharp Minor, BWV91010:081536510Menno Van DelftHarpsichord40-4Toccata in G Minor, BWV9159:121536510Menno Van DelftHarpsichord40-5Toccata in D, BWV91210:531536510Menno Van DelftHarpsichord40-6Toccata in C Minor, BWV91111:411536510Menno Van DelftHarpsichord40-7Toccata in G, BWV9169:041536510Menno Van DelftHarpsichordDie Kunst Der Fuge BWV 1080 BeginningDie Kunst Der Fuge, BWV10801536510Menno Van DelftHarpsichord41-1Contrapunctus 1 BWV 1080/13:3541-2Contrapunctus 2 BWV 1080/23:4841-3Contrapunctus 3 BWV 1080/33:0241-4Contrapunctus 4 BWV 1080/45:2241-5Contrapunctus 5 BWV 1080/53:3641-6Contrapunctus 6 A 4 'In Style Francese' BWV 1080/64:4041-7Contrapunctus 7 A 4 'Per Augmentationem Et Diminutionem' BWV 1080/74:5041-8Contrapunctus 8 A 3 BWV 1080/86:1341-9Contrapunctus 9 A 4 'Alla Duodecima' BWV 1080/93:2641-10Contrapunctus 10 A 4 'Alla Decima' BWV 1080/104:4041-11Contrapunctus 11 A 4 BWV 1080/116:56Die Kunst Der Fuge BWV 1080 ConclusionDie Kunst Der Fuge, BWV10801536510Menno Van DelftHarpsichord42-1Contrapunctus (12) A 4 'Rectus' BWV 1080/12,13:3942-2Contrapunctus (12) A 4 'Inversus' BWV 1080/12,23:3842-3Contrapunctus (13) A 3 'Inversus' BWV 1080/13,12:3442-4Contrapunctus (13) 'Rectus' BWV 1080/13,22:3042-5Fuga A 3 Soggetti (Contrapunctus 14) BWV 1080/198:0442-6Canon Alla Ottava BWV 1080/154:2642-7Canon Alla Decima In Contrapunto Alla Terza BWV 1080/165:2042-8Canon Alla Duodecima In Contrapunto Alla Quinta BWV 1080/173:5542-9Canon Per Augmentationem In Contrario Motu BWV 1080/143:39Appendix42-10Fuga A 2 Clav. (Arrangement Of Contrapunctus 13, Inversus) BWV 1080/18,12:221536510Menno Van DelftClavichord1536503Siebe HenstraClavichord42-11Alio Modo, Fuga A 2 Clav. (Arrangement Of Contrapunctus 13, Rectus) BWV1080/18,22:221536510Menno Van DelftClavichord1536503Siebe HenstraClavichord42-12Canon In Hypodiatesseron, Al Roverscio E Per Augmentationem Perpetuus (Earlier Version Of BWV 1080/14)5:551536510Menno Van DelftHarpsichordSonatas, Suites & FantasiasSonata In D Minor, BWV964884530Pieter-Jan BelderHarpsichord43-1I. Adagio3:0543-2II. Thema: Allegro7:1443-3III. Andante4:3143-4IV. Allegro4:56Sechs Kleine Präludien Für Anfänger Auf Dem Klavier884530Pieter-Jan BelderHarpsichord43-5In C, BWV9332:1343-6In C Minor, BWV9342:0643-7In D Minor, BWV9351:4543-8In D, BWV9362:1743-9In E, BWV9371:5843-10In E Minor, BWV9381:57Fantasia And Fugue In A Minor, BWV904884530Pieter-Jan BelderHarpsichord43-11Fantasia2:5943-12Fugue5:0843-13Adagio, BWV968 After Violin Sonata In A Minor, BWV 10053:26884530Pieter-Jan BelderHarpsichordPrelude And Fugue In G, BWV902884530Pieter-Jan BelderHarpsichord43-14Prelude4:5243-15Fugue1:0643-16Fantasia On A Rondo In C Minor, BWV9184:35884530Pieter-Jan BelderHarpsichord43-17Fughetta In C Minor, BWV9611:44884530Pieter-Jan BelderHarpsichordSuite In A Minor, BWV818A884530Pieter-Jan BelderHarpsichord43-18I. Prelude2:1043-19II. Allemande3:4843-20III. Courante1:1643-21IV. Sarabande3:3943-22V. Menuet1:1243-23VI. Giga2:3643-24Fantasia In C Minor, BWV9065:00884530Pieter-Jan BelderHarpsichordSuites, Fantasias, Preludes & Fugues44-1Fantasia And Fugue In A Minor, BWV9446:40884530Pieter-Jan BelderHarpsichordSechs Kleine Präludien884530Pieter-Jan BelderHarpsichord44-2In C, BWV9390:3644-3In D Minor, BWV9401:0044-4In E Minor, BWV9410:4044-5In A Minor, BWV9420:5744-6In C, BWV9431:3644-7In C Minor, BWV9991:3444-8Fantasia In C Minor, BWV9191:15884530Pieter-Jan BelderHarpsichordSuite In E Flat, BWV819884530Pieter-Jan BelderHarpsichord44-9I. Allemande3:1444-10II. Allemande (BWV819a)3:4344-11III. Courante1:5444-12IV. Sarabande3:5044-13V. Bourrée1:3644-14VI. Menuet I & II2:13Prelude And Fugue In A Minor, BWV895884530Pieter-Jan BelderHarpsichord44-15Prelude1:2344-16Fugue2:2344-17Fugue In C, BWV9521:32884530Pieter-Jan BelderHarpsichord44-18Fugue In C, BWV9531:35884530Pieter-Jan BelderHarpsichordPrelude And Fughetta In G, BWV902A884530Pieter-Jan BelderHarpsichord44-19Prelude0:5744-20Fughetta1:03Prelude And Fughetta In D Minor, BWV899884530Pieter-Jan BelderHarpsichord44-21Prelude1:5544-22Fughetta1:21Prelude And Fugue In E Minor, BWV900884530Pieter-Jan BelderHarpsichord44-23Prelude1:1944-24Fugue3:05Suite In A Minor, BWV818884530Pieter-Jan BelderHarpsichord44-25I., Allemande3:5944-26II. Courante1:1544-27III. Sarabande Simple3:4844-28IV. Sarabande Double2:4344-29V. Gigue2:38Prelude And Fugue In F, BWV901884530Pieter-Jan BelderHarpsichord44-30Prelude1:0444-31Fugue1:0744-32Menuet In C Minor, BWV813A Alternative Menuet From French Suite In C Minor1:06884530Pieter-Jan BelderHarpsichord44-33Menuet In E Flat, BWV815A Alternative Menuet From French Suite In E Flat0:50884530Pieter-Jan BelderHarpsichordPrelude And Fugue In A Minor, BWV894884530Pieter-Jan BelderHarpsichord44-34Prelude6:0544-35Fugue4:13Inventions & Sinfonias15 Two-Part Inventions, BWV 772-786884530Pieter-Jan BelderHarpsichord45-1In C, BWV7721:3145-2In C Minor, BWV7731:5545-3In D, BWV7741:2045-4In D Minor, BWV7750:5645-5In E Flat, BWV7762:1045-6In E, BWV7773:0745-7In E Minor, BWV7781:4045-8In F, BWV7791:0045-9In F Minor, BWV7801:5245-10In G, BWV7811:0245-11In G Minor, BWV7821:3645-12In A, BWV7831:3245-13In A Minor, BWV7841:1445-14In B Flat, BWV7851:2345-15In B Minor, BWV7861:0915 Three-Part Inventions (Sinfonias), BWV 787-801884530Pieter-Jan BelderHarpsichord45-16In C, BWV7871:2245-17In C Minor, BWV7882:1245-18In D, BWV7891:1545-19In D Minor, BWV7901:5345-20In E Flat, BWV7912:3845-21In E, BWV7921:2545-22In E Minor, BWV7932:2645-23In F, BWV7941:1145-24In F Minor, BWV7953:1445-25In G, BWV7961:2145-26In G Minor, BWV7972:0445-27In A, BWV7981:3145-28In A Minor, BWV7991:3745-29In B Flat, BWV8001:5545-30In B Minor, BWV8011:31Pieces From The Clavier-Büchlein For Wilhelm Friedemann Bach884530Pieter-Jan BelderHarpsichord45-31Praeambulum In C, BWV9241:1545-32Praeambulum In D Minor, BWV9261:0545-33Praeambulum In F, BWV9270:4345-34Praeambulum In G Minor, BWV9301:3945-35Praeambulum In F, BWV9281:0945-36Praeambulum In D, BWV9251:2745-37Praeambulum In A Minor, BWV9310:5545-38Applicatio In C, BWV9940:5045-39Wer Nun Den Lieben Gott Läßt Walten, BWV6911:2245-40Allemande In G Minor, BWV8361:4745-41Menuet In G, BWV8411:0945-42Menuet In G Minor, BWV8420:5045-43Menuet In G, BWV8431:4845-44Prelude Ex C, In C, BWV824a1:0545-45Menuet-Trio In G Minor, BWV9290:51Sacred Cantatas BWV 1, 3 & 5Wie Schön Leuchtet Der Morgenstern, BWV1 For The Feast Of Annunciation1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575358Knut SchochTenor Vocals46-1I. Chorus: Wie Schön Leuchtet Der Morgenstern7:1846-2II. Recitative (Tenor): Du Wahrer Gottes Und Marien Sohn1:0946-3III. Aria (Soprano): Erfüllet, Ihr Himmlichen5:2146-4IV. Recitative (Bass): Ein Irdischer Glanz1:0046-5V. Aria (Tenor): Unser Mund Und Ton Der Saiten7:0546-6VI. Chorale (Chorus): Wie Bin Ich Doch So Herzlich Froh1:08Ach Gott, Wie Manches Herzeleid, BWV3 For The 2nd Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals46-7I. Chorus: Ach Gott, Wie Manches Herzeleid5:3946-8II. Chorale · Recitative (Soprano, Alto, Tenor, Bass, Chorus): Wie Schwerlich Läßt Sich Fleisch2:1546-9III. Aria (Bass): Empfind Ich Höllenangst Und Pein7:4046-10IV. Recitative (Tenor): Es Mag Mir Leib Und Geist1:1246-11V. Aria (Duet: Soprano, Alto): Wenn Sorgen Auf Mich Dringen7:3246-12VI. Chorale (Chorus): Erhalt Mein Herz Im Glauben Rein0:36Wo Soll Ich Fliehen Hin, BWV5 For The 19th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals46-13I. Chorus: Wo Soll Ich Fliehen Hin3:4546-14II. Recitative (Bass): Der Sünden Wust Hat Mich1:0646-15III. Aria (Tenor): Ergieße Dich Reichlich6:5946-16IV. Recitative (Alto): Mein Treuer Heiland1:2846-17V. Aria (Bass): Verstumme, Höllenheer7:0046-18VI. Recitative (Soprano): Ich Bin Ja Nur0:5146-19VII. Chorale (Chorus): Führ Auch Mein Herz Und Sinn0:50Sacred Cantatas BWV 2, 4, 6 & 8Ach Gott, Vom Himmel Sieh Darein, BWV2 For The 2nd Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals47-1I. Chorus: Ach Gott Vom Himmel Sieh Darein4:1347-2II. Recitative (Tenor): Sie Lehren Eitel Falsche List1:1547-3III. Aria (Alto): Tilg, O Gott, Die Lehren3:4847-4IV. Recitative (Bass): Die Armen Sind Verstört1:5047-5V. Aria (Tenor): Durchs Feuer Wird Das Silber Rein5:5247-6VI. Chorale (Chorus): Das Wolltest Du, Gott, Bewahren Rein0:55Christ Lag In Todes Banden, BWV4 For The 1st Day Of Eastern1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals47-7I. Sinfonia1:1547-8II. Chorus (Versus I): Christ Lag In Todes Banden3:5047-9III. Duet (Soprano, Alto) (Versus II): Den Tod Niemand Zwingen Kunnt3:4247-10IV. Aria (Tenor) (Versus III): Jesus Christus, Gottes Sohn2:0347-11V. Chorus (Versus IV): Es War Ein Wunderlicher Krieg2:1947-12VI. Aria (Bass) (Versus V): Hier Ist Das Rechte Osterlamm3:0747-13VII. Duet (Soprano, Tenor) (Versus VI): So Feiern Wir Das Hohe Fest1:4447-14VIII. Chorale (Chorus) (Versus VII): Wir Essen Und Leben Wohl1:17Bleib Bei Uns, Denn Es Will Kein Abend Werden, BWV6 For The 2nd Day Of Eastern1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals47-15I. Chorus: Bleib Bei Uns, Denn Es Will Abend6:5947-16II. Aria (Alto): Hochgelobter Gottessohn4:0347-17III. Chorale (Soprano): Ach Bleib Bei Uns, Herr Jesu Christ4:1747-18IV. Recitative (Bass): Es Hat Die Dunkelheit0:4447-19V. Aria (Tenor): Jesu, Laß Uns Auf Dich Sehen3:4447-20VI. Chorale (Chorus): Beweis Dein Macht, Herr Jesu Christ0:51Liebster Gott, Wenn Werd Ich Sterben?, BWV8 For The 16th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals47-21I. Chorus: Liebster Gott, Wenn Werd Ich Sterben?5:5547-22II. Aria (Tenor): Was Willst Du Dich Mein Geist3:4347-23III. Recitative (Alto): Zwar Fühlt Mein Schwaches Herz1:0247-24IV. Arioso (Bass): Doch Weichet, Ihr Tollen5:2547-25V. Recitative (Soprano): Behalte Nur, O Welt, Das Meine!1:0547-26VI. Chorale (Chorus): Herrscher Über Tod Und Leben0:59Sacred Cantatas BWV 7, 9, & 10Christ Unser Herr Zum Jordan Kam, BWV7 For The Feast Of John The Baptist1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575359Nico Van Der MeelTenor Vocals48-1I. Chorus: Christ Unser Herr Zum Jordan Kam6:1548-2II. Aria (Bass): Merkt Und Hört, Ihr Menschenkinder5:3848-3III. Recitative (Tenor): Dies Hat Gott Klar Mit Worten1:1248-4IV. Aria (Tenor): Des Vaters Stimme Ließ Sich Hören4:1048-5V. Recitative (Bass): Als Jesus Dort Nach Seinen Leiden1:0848-6VI. Aria (Alto): Menschen, Glaubt Doch Dieser3:2048-7VII. Chorale (Chorus): Das Aug Allein Das Wasser Sieht1:16Es Ist Das Heil Uns Kommen Her, BWV9 For The 6th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals48-8I. Chorus: Es Ist Das Heil Uns Kommen Her5:2548-9II. Recitative (Bass): Gott Gab Uns Ein Gesetz1:2048-10III. Aria (Tenor): Wir Waren Schon Zu Tief Gesunken4:3548-11IV. Recitative (Bass): Doch Mußte Das Gesetz1:1848-12V. Aria (Duet: Soprano, Alto): Herr, Du Siehst Statt Guter Werke6:3948-13VI. Recitative (Bass): Wenn Wir Die Sünd1:2548-14VII. Chorale (Chorus): Ob Sichs Anließ, Als Wollt Er Nicht1:06Meine Seel Erhebt Den Herren, BWV10 For The Feast Of Visitation1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals48-15I. Chorus: Meine Seel Erhebt Den Herren3:4948-16II. Aria (Soprano): Herr, Der Du Stark6:3148-17III. Recitative (Tenor): Des Höchsten Güt Und Treu1:1448-18IV. Aria (Bass): Gewaltige Stößt Gott Vom Stuhl2:5448-19V. Aria (Duet: Alto, Tenor): Er Denket Der Barmherzigkeit1:4548-20VI. Recitative (Tenor): Was Gott Den Vätern Alter Zeiten1:5548-21VII. Chorale (Chorus): Lob Und Preis Sei Gott Dem Vater1:02Sacred Cantatas BWV 12-14Weinen, Klagen, Sorgen, Zagen, BWV12 For Jubilate Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575358Knut SchochTenor Vocals49-1I. Sinfonia2:3349-2II. Chorus: Weinen, Klagen, Sorgen, Zagen6:0449-3III. Arioso (Alto): Wir Müssen Durch Viel Trübsal0:4649-4IV: Aria (Alto): Kreuz Und Krone Sind Verbunden6:3249-5V. Aria (Bass): Ich Folge Christo Nach2:0449-6VI. Aria (Tenor): Sei Getreu, Alle Pein4:1749-7VII. Chorale (Chorus): Was Gott Tut, Das Ist Wohlgetan0:58Meine Seufzer, Meine Tränen, BWV13 For The 2nd Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals49-8I. Aria (Tenor): Meine Seufzer, Meine Tränen7:5949-9II. Recitative (Alto): Mein Liebster Gott1:0149-10III. Chorale (Alto): Der Gott, Hat Mich Versprochen3:0249-11IV. Recitative (Soprano): Mein Kummer Nimmet Zu1:1049-12V. Aria (Bass): Ächzen Und Erbärmlich Weinen9:3649-13VI. Chorale (Chorus): So Sei Nun, Seele, Dein0:58Wär Gott Nicht Mit Uns Diese Zeit, BWV14 For The 4nd Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575358Knut SchochTenor Vocals49-14I. Chorus: Wär Gott Nicht Mit Uns Diese Zeit6:3749-15II. Aria (Soprano): Unsre Stärke Heißt Zu Schwach4:3949-16III. Recitative (Tenor): Ja, Hätt Es Gott Nur Zugegeben0:4149-17IV. Aria (Bass): Gott, Bei Deinem Starken Schützen4:4649-18V. Chorale (Chorus): Gott Lob Und Dank, Der Nicht Zugab0:51Sacred Cantatas BWV 16-19Herr Gott, Dich Loben Wir, BWV16 For The Feast Of Circumcision1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575359Nico Van Der MeelTenor Vocals50-1I. Chorus: Herr Gott, Dich Loben Wir1:3050-2II. Recitative (Bass): So Stimmen Wir1:2650-3III. Chorus & Aria (Bass): Laßt Uns Jauchzen, Laßt Uns Freuen3:4550-4IV. Recitative (Alto): Ach Treuer Hort1:3650-5V. Aria (Tenor): Geliebter Jesu, Du Allein8:0950-6VI. Chorale (Chorus): All Solch Deine Güt Wir Preisen1:13Wer Dank Opfert, Der Preiset Mich, BWV17 For The 14th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals50-7I. Chorus: Wer Dank Opfert, Der Preiset Mich4:1250-8II. Recitative (Alto): Es Muß Die Ganze Welt1:0350-9III. Aria (Soprano): Herr, Deine Güte3:1950-10IV. Recitative (Tenor): Einer Aber Unter Ihnen0:4450-11V. Aria (Tenor): Welch Übermaß Der Güte3:3050-12VI. Recitative (Bass): Sieh Meinen Willen An1:1350-13VII. Chorale (Chorus): Wie Sich Ein Vat'r Erbarmet2:02Gleich Wie Der Regen Und Schnee Vom Himmel Fälle, BWV18 Weimar Version1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals2958355Robert GetchellTenor Vocals50-14I. Sinfonia3:0650-15II. Recitative (Bass): Gleich Wie Der Regen Und Schnee1:2250-16III. Recitative (Soprano, Tenor, Bass, Chorus): Mein Gott, Hier Wird Mein Herze6:1550-17IV. Aria (Soprano): Mein Seelenschatz Ist Gottes Wort2:4550-18V. Chorale (Chorus): Ich Bitt, O Herr, Aus Herzensgrund1:11Es Erhub Sich Ein Streit, BWV19 For The Feast Of St Michael1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals50-19I. Chorus: Es Erhub Sich Ein Streit4:4450-20II. Recitative (Bass): Gottlob! Der Drache Liegt1:0250-21III. Aria (Soprano): Gott Schickt Uns Mahanaim Zu3:5850-22IV. Recitative (Tenor): Was Ist Der Schnöde Mensch0:5450-23V. Aria (Tenor): Bleibt, Ihr Engel, Bleibt Bei Mir!7:0450-24VI. Recitative (Soprano): Laßt Uns Das Angesicht0:4150-25VII. Chorale (Chorus): Laß Dein Engel Mit Mir Fahren0:57Sacred Cantatas BWV 20, 21 & 23O Ewigkeit, Du Donnerwort, BWV20 For The 1st Sunday After Trinity890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575364Sytse BuwaldaCountertenor Vocals1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals51-1I. Chorus: O Ewigkeit, Du Donnerwort4:4351-2II. Recitative (Tenor): Kein Unglück Ist In Aller Welt0:5551-3III. Aria (Tenor): Ewigkeit, Du Machst Mir Bange3:1551-4IV. Recitative (Bass): Gesetzt, Es Daurte1:2851-5V. Aria (Bass): Gott Ist Gerecht5:0651-6VI. Aria (Alto): O Mensch, Errette Deine Seele2:5951-7VII. Chorale (Chorus): Solang Ein Gott Im Himmel Lebt1:0951-8VIII. Aria (Bass): Wacht Auf, Wacht Auf2:4551-9IX. Recitative (Alto): Verlaß, O Mensch1:2051-10X. Aria (Duet: Alto, Tenor): O Menschenkind, Hör Auf Geschwind3:1851-11XI. Chorale (Chorus): O Ewigkeit, Du Donnerwort1:12Ich Hatte Viel Bekümmernis, BWV21 For The 3rd Sunday After Trinity890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575364Sytse BuwaldaCountertenor Vocals1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals51-12I. Sinfonia2:5351-13II. Chorus: Ich Hatte Viel Bekümmernis3:1251-14III. Aria (Soprano): Seufzer, Tränen, Kummer, Not4:0251-15IV. Aria (Tenor): Wie Hast Du Mich, Mein Gott1:4051-16V. Aria (Tenor): Bäche Von Gesalznen Zähren5:2251-17VI. Chorus (Soprano, Alto, Tenor, Bass): Was Betrübst Du Dich, Meine Seele3:3351-18VII. Recitative (Soprano, Bass): Ach Jesu, Meine Ruh1:2551-19VIII. Duet (Soprano, Bass): Komm, Mein Jesu4:3751-20IX. Chorus (Soprano, Alto, Tenor, Bass): Sei Nun Wieder Zufrieden4:4951-21X. Aria (Tenor): Erfreue Dich, Seele3:0251-22XI. Chorus (Soprano, Alto, Tenor, Bass): Das Lamm, Das Erwürget Ist3:11Du Wahrer Gott Und Davids Sohn, BWV23 For Quinquagesimae Sunday890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575364Sytse BuwaldaCountertenor Vocals1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals51-23I. Aria (Duet: Soprano, Alto): Du Wahrer Gott Und Davids Sohn6:2951-24II. Recitative (Tenor): Ach, Gehe Nicht Vorüber1:2851-25III. Chorus: Aller Augen Warten, Herr4:19Sacred Cantatas BWV 22 & 24-27Jesus Nahm Zu Sich Die Zwölfe, BWV22 For Quinquagesimae Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575359Nico Van Der MeelTenor Vocals52-1I. Aria · Chorus (Tenor, Bass): Jesus Nahm Zu Sich Die Zwölfe4:5452-2II. Aria (Alto): Mein Jesu, Ziehe Mich Nach Dir4:5852-3III. Recitative (Bass): Mein Jesu, Ziehe Mich2:1952-4IV. Aria (Tenor): Mein Alles In Allem3:1352-5V. Chorale (Chorus): Ertöt Uns Durch Dein Güte1:56Ein Ungefärbt Gemüte, BWV24 For The 4th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals52-6I. Aria (Alto): Ein Ungefärbt Gemüte3:3152-7II. Recitative (Tenor): Die Redlichkeit1:5152-8III. Chorus: Alles Nun, Das Ihr Wollet3:0552-9IV. Recitative (Bass): Dei Heuchelei Ist Eine Brut1:4952-10V. Aria (Tenor): Treu Und Wahrheit Sei Der Grund3:0952-11VI. Chorale (Chorus): O Gott, Du Frommer Gott2:05Es Ist Nichts Gesundes An Meinem Leibe, BWV25 For The 14th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575358Knut SchochTenor Vocals52-12I. Chorus: Es Ist Nichts Gesundes4:2752-13II. Recitative (Tenor): Die Ganze Welt Ist Nur Ein Hospital1:3752-14III. Aria (Bass): Ach, Wo Hol Ich Armer Rat3:3952-15IV. Recitative (Soprano): O Jesu, Lieber Meister1:0752-16V. Aria (Soprano): Öffne Meinen Schlechten Liedern3:1552-17VI. Chorale (Chorus): Ich Will Alle Meine Tage1:08Ach Wie Flüchtig, Ach Wie Nichtig, BWV26 For The 24th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals52-18I. Chorus: Ach Wie Flüchtig, Ach Wie Nichtig2:4752-19II. Aria (Tenor): So Schnell Ein Rauschend Wasser6:5652-20III. Recitative (Alto): Die Freude Wird Zur Traurigkeit0:4952-21IV. Arioso (Bass): An Irdische Schätze4:1852-22V. Recitative (Soprano): Die Höchste Herrlichkeit Und Pracht0:4452-23VI. Chorale (Chorus): Ach Wie Flüchtig, Ach Wie Nichtig0:50Wer Weiß, Wie Nahe Mir Mein Ende?, BWV27 For The 16th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575358Knut SchochTenor Vocals52-24I. Chorus · Recitative: Wer Weiß, Wie Nahe Mir Mein Ende?4:3052-25II. Recitative (Tenor): Mein Leben Hat Kein Ander Ziel0:5952-26III. Aria (Alto): Willkommen! Will Ich Sagen4:4752-27IV. Recitative (Soprano): Ach, Wer Doch Schon Im Himmel Wär!0:4352-28V. Aria (Bass): Gute Nacht, Du Weltgetümmel!3:2652-29VI. Chorale (Chorus): Welt Ade! Ich Bin Dein Müde0:45Sacred Cantatas BWV 28-30Gottlob! Nun Geht Das Jahr Zu Ende, BWV28 For The Sunday After Christmas1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals53-1I. Aria (Soprano): Gottlob! Nun Geht Das Jahr Zu Ende4:1753-2II. Chorus: Nun Lob, Mein Seel, Den Herren4:3053-3III. Recitative · Arioso (Bass): So Spricht Der Herr1:5653-4IV. Recitative (Tenor): Gott Ist Ein Quell1:0753-5V. Aria (Duet: Alto, Tenor): Gott Hat Uns2:4453-6VI. Chorale (Chorus): All Soch Dein Güt Wir Preisen1:03Wir Danken Dir Gott, Wir Danken Dir, BWV29 For The Town Council Election 17311575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals53-7I. Sinfonia3:3753-8II. Chorus: Wir Danken Dir, Gott, Wir Danken Dir2:4353-9III. Aria (Tenor): Halleluja, Stärk Und Macht6:1053-10IV. Recitative (Bass): Gottlob! Es Geht Uns Wohl1:0153-11V. Aria (Soprano): Gedenk An Und Mit Deiner Liebe5:1953-12VI. Recitative (Alto, Chorus): Vergiß Es Ferner Nicht0:2753-13VII. Aria (Alto): Halleluja, Stärk Und Macht1:5453-14VIII. Chorale (Chorus): Sei Lob Und Preis Mit Ehren1:31Freue Dich, Erlöste Schar, BWV30 For The Feast Oh John The Baptist1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals53-15I. Chorus: Freue Dich, Erlöste Schar3:5053-16II. Recitative (Bass): Wir Haben Rast1:0153-17III. Aria (Bass): Gelobet Sei Gott5:1353-18IV. Recitative (Alto): Der Herold Kömmt0:3853-19V. Aria (Alto): Kommt, Ihr Angefochtnen Sünder4:3653-20VI. Chorale (Chorus): Eine Stimme Läßt Sich Hören1:0553-21VII. Recitative (Bass): So Bist Du Denn0:5753-22VIII. Aria (Bass): Ich Will Nun Hassen6:0953-23IX. Recitative (Soprano): Und Obwohl Sonst Der Unbestand0:5853-24X. Aria (Soprano): Eilt, Ihr Stunden, Kommt Herbei4:3953-25XI. Recitative (Tenor): Geduld, Der Angenehme Tag1:1453-26XII. Chorale (Chorus): Freue Dich, Geheilgte Schar3:55Sacred Cantatas BWV 31-33Der Himmel Lacht! Die Erde Jubilieret, BWV31 For The 1st Day Of Eastern1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals54-1I. Sonata2:1854-2II. Chorus: Der Himmel Lacht! Die Erde Jubilieret4:0154-3III. Recitative (Bass): Erwünschter Tag!2:2254-4IV. Aria (Bass): Fürst Des Lebens, Starker Streiter2:3754-5V. Recitative (Tenor): So Stehe Dann1:1654-6VI. Aria (Tenor): Adam Muss In Uns Verwesen2:0554-7VII. Recitative (Soprano): Weil Dann Das Haupt Sein Glied0:4954-8VIII. Aria (Soprano): Letzte Stunde, Brich Herein4:3854-9IX. Chorale (Chorus): So Fahr Ich Hin Zu Jesu Christ1:03Liebster Jesu, Mein Verlangen, BWV32 For The 1st Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals54-10I. Aria (Soprano): Liebster Jesu, Mein Verlangen5:2154-11II. Recitative (Bass): Was Ists, Daß Du Mich Gesuchet?0:2454-12III. Aria (Bass): Hier, In Meines Vaters Stätte7:2554-13IV. Recitative (Soprano, Bass): Ach! Heiliger Und Großer Gott2:1454-14V. Aria (Duet: Soprano, Bass): Nun Verschwinden Alle Plagen5:2254-15VI. Chorale (Chorus): Mein Gott, Öffne Mir Die Pforten1:10Allein Zu Dir, Herr Jesu Christ, BWV33 For The 13th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals54-16I. Chorus: Allein Zu Dir, Herr Jesu Christ4:4954-17II. Recitative (Bass): Mein Gott Und Richter1:0854-18III. Aria (Alto): Wie Furchtsam Wankten7:3854-19IV. Recitative (Tenor): Mein Gott, Verwirf Mich Nicht1:1054-20V. Aria (Duet: Tenor, Bass): Gott, Der Du Die Liebe Heißt4:3454-21VI. Chorale (Chorus): Ehr Sei Gott In Dem Höchsten Thron1:19Sacred Cantatas BWV 34-36O Ewiges Feuer, O Ursprung Der Liebe, BWV34 For Whit Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals55-1I. Chorus: O Ewiges Feuer, O Ursprung7:5655-2II. Recitative (Tenor): Herr! Unsre Herzen Halten0:4455-3III. Aria (Alto): Wohl Euch5:2355-4IV. Recitative (Bass): Erwählt Sich Gott Die Heilgen Hütten0:3755-5V. Chorus: Friede Über Israel!2:26Geist Und Seele Wird Verwirret, BWV35 For The 12th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals55-6I. Sinfonia5:5755-7II. Aria (Alto): Geist Und Seele Wird Verwirret7:5555-8III. Recitative (Alto): Ich Wundre Mich, Denn Alles1:2955-9IV. Aria (Alto): Gott Hat Alles Wohlgemacht3:0155-10V. Sinfonia4:0655-11VI. Recitative (Alto): Ach, Starker Gott, Laß Mich Doch1:1755-12VII. Aria (Alto): Ich Wünsche Mir, Bei Gott Zu Leben3:28Schwingt Freudig Euch Empor, BWV36 For The 1st Sunday Of Advent1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals55-13I. Chorus: Schwingt Freudig Dich Empor4:1055-14II. Chorale (Soprano, Alto): Nun Komm, Der Heiden Heiland3:5355-15III. Aria (Tenor): Die Liebe Zieht Mit Sanften Schritten6:0655-16IV. Chorale (Chorus): Zwingt Die Saiten In Cythara1:0455-17V. Aria (Bass): Willkommen, Werter Schatz3:5755-18VI. Chorale (Tenor): Der Du Bist Dem Vater Gleich1:5755-19VII. Aria (Soprano): Auch Mit Gedämpften8:0255-20VIII. Chorale (Chorus): Lob Sei Gott, Dem Vater, G´ton0:34Sacred Cantatas BWV 37-40Wer Da Gläubet Und Getauft Wird, BWV37 For Ascension Day1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals56-1I. Chorus: Wer Da Gläubet Und Getauft Wird2:4556-2II. Aria (Tenor): Der Glaube Ist Das Pfand Der Liebe5:1056-3III. Chorale (Soprano, Alto): Herr Gott Vater, Mein Starker Held2:5656-4IV. Recitative (Bass): Ihr Sterblichen, Verlanget Ihr Mit Mir1:0456-5V. Aria (Bass): Der Glaube Schafft Der Seele Flügel3:0256-6VI. Chorale (Chorus): Den Glauben Mir Verleihe1:19Aus Tiefer Not Schrei Ich Zu Dir, BWV38 For The 21th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals56-7I. Chorus: Aus Tiefer Not Schrei Ich Zu Dir3:5856-8II. Recitative (Alto): In Jesu Gnade Wird Allein0:5056-9III. Aria (Tenor): Ich Höre Mitten In Den Leiden7:4656-10IV. Recitative (Soprano): Ach! Daß Mein Glaube1:2256-11V. Aria (Soprano, Alto, Bass): Wenn Meine Trübsal Als Mit Ketten3:1056-12VI. Chorale (Chorus): Ob Bei Uns Ist Der Sünden Viel1:08Brich Dem Hungrigen Dein Brot, BWV39 For The 1st Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals56-13I. Chorus: Brich Dem Hungrigen Dein Brot6:5856-14II. Recitative (Bass): Der Reiche Gott Wirft Seinen1:3456-15III. Aria (Alto): Seinem Schöpfer Noch Auf Erden4:0856-16IV. Aria (Bass): Wohlzutun Und Mitzuteilen2:5456-17V. Aria (Soprano): Höchster, Was Ich Habe3:0556-18VI. Recitative (Alto): Wie Soll Ich Dir, O Herr1:4756-19VII: Chorale (Chorus): Selig Sind, Die Aus Erbarmen1:09Dazu Ist Erschienen Der Sohn Gottes, BWV40 For The 2nd Day Of Christmas1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals56-20I. Chorus: Dazu Ist Erschienen Der Sohn Gottes4:1656-21II. Recitative (Tenor): Das Wort Ward Fleisch1:1056-22III. Chorale (Chorus): Die Sünd Macht Leid0:4256-23IV. Aria (Bass): Höllische Schlange2:0356-24V. Recitativo (Alto): Die Schlange, So Im Paradies1:0756-25VI. Chorale (Chorus): Schüttle Deinen Kopf Und Sprich0:5756-26VII. Aria (Tenor): Christenkinder, Freuet Euch3:4056-27VIII. Chorale (Chorus): Jesu, Nimm Dich Deiner Glieder1:09Sacred Cantatas BWV 41-43Jesu, Nun Sei Gepreiset, BWV41 For New Year's Day1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals57-1I. Chorus: Jesu, Nun Sei Gepreiset7:4257-2II. Aria (Soprano): Laß Uns, O Höchster Gott5:3957-3III. Recitative (Alto): Ach! Deine Hand1:1157-4IV. Aria (Tenor): Woferne Du Den Edlen Frieden7:2657-5V. Recitative (Bass, Chorus): Doch Weil Der Feind Bei Tag1:0557-6VI. Chorale (Chorus): Dein Ist Allein Die Ehre1:54Am Abend Aber Desselbigen Sabbats, BWV42 For Quasimodogeniti Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals57-7I. Sinfonia6:5157-8II. Recitative (Tenor): Am Abend Aber Desselbigen Sabbats0:3257-9III. Aria (Alto): Wo Zwei Und Drei Versammlet Sind11:0157-10IV. Aria (Duet: Soprano, Tenor): Verzage Nicht, O Häuflein Klein2:5457-11V. Recitative (Bass): Man Kann Hiervon0:5657-12VI. Aria (Bass): Jesus Ist Ein Schild Der Seinen3:3357-13VII. Chorale (Chorus): Verleih Uns Frieden Gnädiglich1:43Gott Fähret Auf Mit Jauchzen, BWV43 For Ascension Day1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals1575359Nico Van Der MeelTenor Vocals57-14I. Chorus: Gott Fähret Auf Mit Jauchzen3:3257-15II. Recitative (Tenor): Es Will Der Höchste0:5557-16III. Aria (Tenor): Ja Tausendmal Tausend2:3257-17IV. Recitative (Soprano): Und Der Herr0:2357-18V. Aria (Soprano): Mein Jesus Hat Nunmehr2:2357-19VI. Recitative (Bass): Es Kommt Der Helden Held0:5057-20VII. Aria (Bass): Er Ists, Der Ganz Allein2:5857-21VIII. Recitative (Alto): Der Vater Hat Ihm Ja0:3657-22IX. Aria (Alto): Ich Sehe Schon Im Geist3:1657-23X. Recitative (Soprano): Er Will Mir Neben Sich0:4157-24XI. Chorale (Chorus): Du Lebensfürst, Herr Jesu Christ2:39Sacred Cantatas BWV 44-47Sie Werden Euch In Den Bann Tun, BWV44 For Exaudi Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals58-1I. Aria (Duet: Tenor, Bass): Sie Werden Euch In Den Bann Tun2:4358-2II. Chorus: Es Kömmt Aber Die Zeit1:3558-3III. Aria (Alto): Christen Müssen Auf Der Erden5:1658-4IV. Chorale (Tenor): Ach Gott, Wie Manches Herzeleid1:2758-5V. Recitative (Bass): Es Sucht Der Antichrist0:5658-6VI. Aria (Soprano): Es Ist Und Bleibt Der Christen Trost5:1258-7VII. Chorale (Chorus): So Sei Nun, Seele, Deine0:52Es Ist Dir Gesagt, Mensch, Was Gut Ist, BWV45 For The 8th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals58-8I. Chorus: Es Ist Dir Gesagt, Mensch, Was Gut Ist5:2458-9II. Recitative (Tenor): Der Höchste Läßt Mich0:5358-10III. Aria (Tenor): Weiß Ich Gottes Rechte3:3358-11IV. Arioso (Bass): Es Werden Viele Zu Mir Sagen3:0958-12V. Aria (Alto): Wer Gott Bekennt3:2158-13VI. Recitative (Alto): So Wird Denn Herz Und Mund0:5258-14VII. Chorale (Chorus): Gib, Dass Ich Tu Mit Fleiß1:07Schauet Doch Und Sehet, Ob Irgen Dein Schmerz Sei, BWV46 For The 10th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals58-15I. Chorus: Schauet Doch Und Sehet5:4858-16II. Recitative (Tenor): So Klage Du, Zerstörte Gottesstadt1:4458-17III. Aria (Bass): Dein Wetter Zog Sich Auf Von Weiten3:5858-18IV. Recitative (Alto): Doch Bildet Euch0:4358-19V. Aria (Alto): Doch Jesus Will Auch Bei Der Strafe4:0458-20VI. Chorale (Chorus): O Großer Gott Der Treu'1:21Wer Sich Selbst Erhöhet, Der Soll Erniedriget Werde, BWV47 For The 17th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals58-21I. Chorus: Wer Sich Selbst Erhöhet5:4058-22II. Aria (Soprano): Wer Ein Wahrer Christ Will Heißen9:2158-23III. Recitative (Bass): Der Mensch Ist Kot, Stank1:4958-24IV. Aria (Bass): Jesu Beuge Doch Mein Herze4:5858-25V. Chorale (Chorus): Der Zeitlichen Ehrn Will Ich Gerne0:44Sacred Cantatas BWV 48-52Ich Elender Mensch, Wer Wird Mich Erlösen, BWV48 For The 19th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1588745Marcel BeekmanTenor Vocals59-1I. Chorus: Ich Elender Mensch5:1659-2II. Recitative (Alto): O Schmerz, O Elend1:1759-3III. Chorale (Chorus): Solls Ja So Sein0:3859-4IV. Aria (Alto): Ach Lege Das Sodom2:4559-5V. Recitative (Tenor): Hier Aber Tut Des Heilands Hand0:4359-6VI. Aria (Tenor): Vergib Mir Jesus Meine Sünden3:1659-7VII. Chorale (Chorus): Herr Jesu Christ, Einiger Trost1:00Ich Geh Und Suche Mit Verlangen, BWV49 For The 20th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals59-8I. Sinfonia6:4459-9II. Aria (Bass): Ich Geh Und Suche Mit Verlangen5:3759-10III. Recitative (Soprano, Bass): Mein Mahl Ist Zubereit2:0559-11IV. Aria (Soprano): Ich Bin Herrlich, Ich Bin Schön5:0859-12V. Recitative (Soprano, Bass): Mein Glaube Hat Mich Selbst1:3059-13VI. Aria (Duet: Soprano, Bass): Dich Hab Ich Je Und Je Geliebet4:46Nun Ist Das Heil Und Die Kraft, BWV501011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra59-14Chorus: Nun Ist Das Heil Und Die Kraft3:39Jauchzet Gott In Allen Landen, BWV51 Occasion Unspecified1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals59-15I. Aria (Soprano): Jauchzet Gott In Allen Landen4:2659-16II. Recitative (Soprano): Wir Beten Zu Dem Tempel An2:2359-17III. Aria (Soprano): Höchster, Mache Deine Güte5:0359-18IV. Chorale (Soprano): Sei Lob Und Preis Mit Ehren3:5159-19V. Aria (Soprano): Alleluja2:30Falsche Welt, Dir Trau Ich Nicht, BWV52 For The 23rd Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals59-20I. Sinfonia4:0959-21II. Recitative (Soprano): Falsche Welt, Dir Trau Ich Nicht1:0359-22III. Aria (Soprano): Immerhin, Immerhin3:1259-23IV. Recitative (Soprano): Gott Ist Getreu!1:1059-24V. Aria (Soprano): Ich Halt Es Mit Dem Lieben Gott3:5159-25VI. Chorale (Chorus): In Dich Hab Ich Gehoffet, Herr0:50Sacred Cantatas BWV 54-57 & 59Wiederstehe Doch Der Sünde, BWV54 For Oculi Sunday1575364Sytse BuwaldaAlto Vocals1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra60-1I. Aria (Alto): Widerstehe Doch Der Sünde8:0660-2II. Recitative (Alto): Die Art Verruchter Sünden1:1060-3III. Aria (Alto): Wer Sünde Tut, Der Ist Vom Teufel3:04Ich Armer Mensch, Ich Sündenknecht, BWV55 For The 22nd Sunday After Trinity1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575358Knut SchochTenor Vocals60-4I. Aria (Tenor): Ich Armer Mensch, Ich Sündenknecht5:1160-5II. Recitative (Tenor): Ich Habe Wider Gott Gehandelt1:2660-6III. Aria (Tenor): Erbarme Dich4:1360-7IV. Recitative (Tenor): Erbarme Dich! Jedoch Nun1:3060-8V. Chorale (Chorus): Bin Ich Gleich Von Dir Gewichen1:11Ich Will Den Kreurstab Gerne Tragen, BWV56 For The 19th Sunday After Trinity890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra60-9I. Aria (Bass): Ich Will Den Kreuzstab Gerne Tragen6:4460-10II. Recitative (Bass): Mein Wandel Auf Der Welt1:5560-11III. Aria (Bass): Endlich, Endlich Wird Mein Joch7:2660-12IV. Recitative (Bass): Ich Stehe Fertig Und Bereit1:3560-13V. Chorale (Chorus): Komm, O Tod, Du Schlafes Bruder1:31Selig Ist Der Mann, BWV57 Fo The 2nd Day Of Christmas890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals60-14I. Aria (Bass): Selig Ist Der Mann3:5460-15II. Recitative (Soprano): Ach! Dieser Süße Trost1:2560-16III. Aria (Soprano): Ich Wünschte Mir Den Tod6:0760-17IV. Recitative (Soprano, Bass): Ich Reiche Dir Die Hand0:2660-18V. Aria (Bass): Ja, Ja, Ich kann Die Feinde Schlagen6:4060-19VI. Recitative (Soprano, Bass): In Meiner Schoß Liegt Ruh1:2760-20VII. Aria (Soprano): Ich Ende Behende4:0560-21VIII. Chorale (Chorus): Richte Dich, Liebste0:52Wer Mich Liebet, Der Wird Mein Wort Halten, BWV59 For The 1st Day Of Pentecost890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals60-22I. Duet (Soprano, Bass): Wer Mich Liebet3:1060-23II. Recitative (Soprano): O, Was Sind Das Vor Ehren1:4960-24III. Chorale (Chorus): Komm, Heiliger Geist, Herre Gott1:2860-25IV. Aria (Bass): Die Welt Mit Allen KönigreichenSacred Cantatas BWV 58, 60, 61 & 63Ach Gott, Wie Manches Herzeleid, BWV58 For The Sunday After The Feast Of Circumcision890873Bas RamselaarBass Vocals1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals61-1I. Aria (Duet: Soprano, Bass): Ach Gott, Wie Manches Herzeleid4:0661-2II. Recitative (Bass): Verfolgt Dich Gleich Die Arge Welt1:3361-3III. Aria (Soprano): Ich Bin Vergnügt Um Meinem Leiden4:1061-4IV. Recitative (Soprano): Kann Es Die Welt Nicht Lassen1:1961-5V. Aria (Duet: Soprano, Bass): Ich Hab Für Mir Ein Schwere Reis2:33O Ewigkeit, Du Donnerwort, BWV60 For The 24th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals61-6I. Aria (Duet: Alto, Tenor): O Ewigkeit, Du Donnerwort3:5461-7II. Recitative (Alto, Tenor): O Schwerer Gang2:1061-8III. Aria (Duet: Alto, Tenor): Mein Letztes Lager Will Mich3:3161-9IV. Recitative (Alto, Bass): Der Tod Bleibt Doch4:4261-10V. Chorale (Chorus): Es Ist Genug, Herr1:18Nun Komm, Der Heiden Heiland, BWV61 For The 1st Sunday Of Advent1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals61-11I. Ouverture (Chorus): Nun Komm, Der Heiden Heiland3:0161-12II. Recitative (Tenor): Der Heiland Ist Gekommen1:3361-13III. Aria (Tenor): Komm, Jesu, Komm Zu Deiner Kirche3:5961-14IV. Recitative (Bass): Siehe, Ich Stehe Vor Der Tür0:4661-15V. Aria (Soprano): Öffne Dich, Mein Ganzes Herze3:4761-16VI. Chorale (Chorus): Amen, Amen!0:51Christen, Ätzet Diesen Tag, BWV63 For The 1st Day Of Christmas1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals61-17I. Chorus: Christen, Ätzet Diesen Tag5:1461-18II. Recitative (Alto): O Selger Tag!2:5861-19III. Duet (Soprano, Bass): Gott, Du Hast Es Wohl Gefüget7:4261-20IV. Recitative (Bass): So Kehret Sich Nun Heut0:5161-21V. Duet (Alto, Tenor): Ruft Und Fleht Den Himmel An3:5861-22VI. Recitative (Bass): Verdoppelt Euch Demnach1:0561-23VII. Chorus: Höchster, Schau In Gnaden An6:19Sacred Cantatas BWV 62, 64, 65 & 67Nun Komm, Der Heiden Heiland, BWV62 For The 1st Sunday Of Advent1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals62-1I. Chorus: Nun Komm, Der Heiden Heiland5:2762-2II. Recitative (Tenor): Bewundert, O Menschen6:5162-3III. Recitative (Bass): So Geht Aus Gottes Herrlichkeit0:5062-4IV. Aria (Bass): Streite, Siege, Starker Held5:3162-5V. Recitative (Soprano, Alto): Wir Ehren Diese Herrlichkeit0:4762-6VI. Chorale (Chorus): Lob Sei Gott, Dem Vater0:39Sehet, Welch Eine Liebe Hat Uns Der Vater Erzeiget, BWV64 For The 3rd Day Of Christmas1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals62-7I. Chorus: Sehet, Welch Eine Liebe2:4462-8II. Chorale (Chorus): Das Hat Er Alles Uns Getan0:3762-9III. Recitative (Alto): Geh, Welt! Behalte Nur Das Deine0:4362-10IV. Chorale (Chorus): Was Frag Ich Nach Der Welt0:5162-11V. Aria (Soprano): Was Die Welt In Sich Hält6:3062-12VI. Recitative (Bass): Der Himmel Bleibet Mir Gewiß1:2262-13VII. Aria (Alto): Von Der Welt Verlang Ich Nichts6:2562-14VIII. Chorale (Chorus): Gute Nacht, O Wesen1:23Sie Werden Aus Saba Alle Kommen, BWV65 For Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals62-15I. Chorus: Sie Werden Aus Saba Alle Kommen3:4762-16II. Chorale (Chorus): Die Kön'ge Aus Saba Kamen Dar0:2562-17III. Recitative (Bass): Was Dort Jesaias Vorhergesehn2:0962-18IV. Aria (Bass): Gold Aus Ophir Ist Zu Schlecht3:2062-19V. Recitative (Tenor): Verschmähe Nicht1:2762-20VI. Aria (Tenor): Nimm Mich Dir Zu Eigen Hin3:3262-21VII. Chorale (Chorus): Ein Nun, Mein Gott, So Fall Ich Dir1:13Halt Im Gedächtnis Jesum Christ, BWV67 For Quasimodogeniti Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals62-22I. Chorus: Halt Im Gedächtnis Jesum Christ3:1762-23II. Aria (Tenor): Mein Jesus Ist Erstanden2:4662-24III. Recitative (Alto): Mein Jesu, Heißest Du Des Todes Gift0:3262-25IV. Chorale (Chorus): Erschienen Ist Der Herrlich Tag0:2462-26V. Recitative (Alto): Doch Scheinet Fast0:5162-27VI. Aria (Bass, Chorus): Friede Sei Mit Euch5:2562-28VII. Chorale (Chorus): Du Friedefürst, Herr Jesu Christ0:50Sacred Cantatas BWV 66, 68, 69 & 71Erfreut Euch, Ihr Herzen, BWV66 For The 2nd Day Of Eastern1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575359Nico Van Der MeelTenor Vocals63-1I. Chorus: Erfreut Euch, Ihr Herzen10:0263-2II. Recitative (Bass): Es Bricht Das Grab0:3763-3III. Aria (Bass): Lasset Dem Höchsten Ein Danklied6:4863-4IV. Recitative (Alto, Tenor): Bei Jesu Leben Freudig Sein4:2963-5V. Duet (Alto, Tenor): Ich Furchte Zwar7:1863-6VI. Chorale (Chorus): Alleluja! Alleluja! Alleluja!0:37Also Hat Gott Die Welt Geliebt, BWV68 For The 2nd Day Of Pentecost1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals63-7I. Chorus: Also Hat Gott Die Welt Geliebt5:1263-8II. Aria (Soprano): Mein Gläubiges Herze3:4763-9III. Recitative (Bass): Ich Bin Mit Petro Nicht Vermessen0:4763-10IV. Aria (Bass): Du Bist Geboren Mir Zugute4:0963-11V. Chorus: Wer An Ihn Gläubet2:55Lobe Den Herrn, Meine Seele, BWV69 For The Town Council Inauguration1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals63-12I. Recitative (Soprano): Wie Groß Ist Gottes Güte Doch1:2363-13II. Aria (Alto): Mein Seele, Auf, Erzähle5:5963-14III. Recitative (Tenor): Der Herr Hat Große Ding2:1863-15IV. Chorale (Chorus): Es Danke, Gott, Und Lobe Dich1:19Gott Ist Mein König, BWV71 For The Town Council Inauguration 17081575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals63-16I. Chorus: Gott Ist Mein König1:4363-17II. Aria (Soprano, Tenor): Ich Bin Nun Achtzig Jahr4:1163-18III. Chorus: Dein Alter Sei Wie Deine Jugend2:0363-19IV. Arioso (Bass): Tag Und Nacht Ist Dein2:5763-20V. Aria (Alto): Durch Mächtige Kraft1:1063-21VI. Chorus: Du Wollest Dem Feinde Nicht Geben2:5663-22VII. Chorale (Chorus): Das Neue Regiment3:03Sacred Cantatas BWV 70 & 72-74Wachet! Betet! Betet! Wachet!, BWV70 For The 26th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals64-1I. Chorus: Wachet! Betet! Betet! Wachet!4:0564-2II. Recitative (Bass): Erschrecket, Ihr Verstockten Sünder1:1464-3III. Aria (Alto): Wenn Kömmt Der Tag4:0164-4IV. Recitative (Tenor): Auch Bei Dem Himmlischen0:4464-5V. Aria (Soprano): Laßt Der Spötter Zungen Schmähen2:4764-6VI. Recitative (Tenor): Jedoch Bei Dem Unartigen0:3664-7VII. Chorale (Chorus): Freu Dich Sehr, O Meine Seele1:0964-8VIII. Aria (Tenor): Hebt Euer Haupt Empor3:1064-9IX. Recitative (Bass): Ach, Soll Nicht Dieser Große Tag1:5164-10X. Aria (Bass): Seligste Erquickungstag2:5964-11XI. Chorale (Chorus): Nicht Nach Welt0:55Alles Nur Nach Gottes Willen, BWV72 For The 3rd Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals64-12I. Chorus: Alles Nur Nach Gottes Willen3:4564-13II. Recitative (Alto): O Selger Geist2:0964-14III. Aria (Alto): Mit Allem, Was Ich Hab Und Bin4:1864-15IV. Recitative (Bass): So Glaube Nun!1:0064-16V. Aria (Soprano): Mein Jesus Will Es Tun4:4164-17VI. Chorale (Chorus): Was Mein Gott Will, Das Gescheh1:07Herr, Wie Du Willt, So Schick's Mit Mir, BWV73 For The 3rd Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals64-18I. Chorus · Recitative (Soprano, Tenor, Bass): Herr, Wie Du Willt4:2664-19II. Aria (Tenor): Ach, Senke Doch Den Geist3:5164-20III. Recitative (Bass): Ach, Unser Wille Bleibt Verkehrt0:3364-21IV. Aria (Bass): Herr, So Du Willt3:3864-22V. Chorale (Chorus): Da Ist Des Vaters Wille1:01Wer Mich Liebet, Der Wird Mein Wort Halten, BWV74 For The 1st Day Of Pentecost1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals64-23I. Chorus: Wer Mich Liebet3:1364-24II. Aria (Soprano): Komm, Komm, Mein Herze2:5164-25III. Recitative (Alto): Die Wohnung Ist Bereit0:3464-26IV. Aria (Bass): Ich Gehe Hin3:3264-27V. Aria (Tenor): Kommt, Eilet, Stimmet5:2564-28VI. Recitative (Bass): Es Ist Nichts Verdammliches0:3264-29VII. Aria (Alto): Nichts Kann Mich Erretten5:5564-30VIII. Chorale (Chorus): Kein Menschenkind Hier Auf Erd0:50Sacred Cantatas BWV 75-77Die Elenden Sollen Essen, BWV75 For The 1st Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals65-1I. Chorus: Die Elenden Sollen Essen4:3265-2II. Recitative (Bass): Was Hilft Des Purpurs Majestät1:0265-3III. Aria (Tenor): Mein Jesus Soll Mein Alles Sein5:4865-4IV. Recitative (Tenor): Gott Stürzet Und Erhöhet0:3665-5V. Aria (Soprano): Ich Nehme Mein Leiden4:4665-6VI. Recitative (Soprano): Indes Schenkt Gott Ein Gut Gewissen0:3665-7VII. Chorale (Chorus): Was Gott Tut, Das Ist Wohlgetan1:3665-8VIII. Sinfonia2:2865-9IX. Recitative (Alto): Nur Eines Kränkt0:4865-10X. Aria (Alto): Jesus Macht Mich Geistlich Reich2:2965-11XI. Recitative (Bass): Wer Nur In Jesu Bleibt0:3565-12XII. Aria (Bass): Mein Herze Gläubt Und Liebt4:0765-13XIII. Recitative (Tenor): O Armut, Der Kein Reichtum Gleicht!0:4165-14XIV. Chorale (Chorus): Was Gott Tut, Das Ist Wohlgetan1:48Die Himmel Erzählen Die Ehre Gottes, BWV76 For The 2nd Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575358Knut SchochTenor Vocals65-15I. Chorus (Soprano, Alto, Tenor, Bass): Die Himmel Erzählen Die Ehre Gottes4:5265-16II. Recitative (Tenor): So Läßt Sich Gott1:3465-17III. Aria (Soprano): Hört, Ihr Völker4:5265-18IV. Recitative (Bass): Wer Aber Hört0:4265-19V. Aria (Bass): Fahr Hin, Abgöttische Zunft!3:2965-20VI. Recitative (Alto): Du Hast Uns, Herr1:4065-21VII. Chorale (Chorus): Es Woll Uns Gott2:1465-22VIII. Sinfonia2:3665-23IX. Recitative (Bass): Gott Segne Noch Die Treue Schar0:5965-24X. Aria (Tenor): Hasse Nur, Hasse Mich Recht2:4965-25XI. Recitative (Alto): Ich Fühle Schon Im Geist1:0265-26XII. Aria (Alto): Liebt, Ihr Christen, In Der Tat!3:2465-27XIII. Recitative (Tenor): So Soll Die Christenheit0:4665-28XIV. Chorale (Chorus): Es Danke, Gott, Und Lobe Dich2:21Du Sollt Gott, Deinen Herren, Lieben, BWV77 For The 13th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals65-29I. Chorus: Du Sollt Gott, Deinen Herren Lieben3:4065-30II. Recitative (Bass): So Muß Es Sein0:4065-31III. Aria (Soprano): Mein Gott, Ich Liebe3:4965-32IV. Recitative (Tenor): Gib Mir Dabei, Mein Gott!1:1165-33V. Aria (Alto): Ach, Es Bleibt In Meiner Liebe4:0965-34VI. Chorale (Chorus): Herr, Durch Den Glauben1:00Sacred Cantatas BWV 78-81Jesu, Der Du Meine Seele, BWV78 For The 14th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals66-1I. Chorus: Jesu, Der Du Meine Seele5:1166-2II. Aria (Duet: Soprano, Alto): Wie Eilen Mit Schwachen5:0166-3III. Recitative (Tenor): Ach! Ich Bin Ein Kind Der Sünden2:1066-4IV. Aria (Tenor): Das Blut, So Meine Schuld3:2366-5V. Recitative (Bass): Die Wunden, Nägel, Kron Und Grab2:2966-6VI. Aria (Bass): Nun, Du Wirst Mein Gewissen Stillen3:0966-7VII. Chorale (Chorus): Herr, Ich Glaube, Hilf Mir Schwachen1:07Gott, Der Herr, Ist Sonn Und Schild, BWV79 For The Feast Of The Reformation1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals66-8I. Chorus: Gott, Der Herr, Ist Sonn Und Schild4:5566-9II. Aria (Alto): Gott Ist Unsre Sonn Und Schild3:3466-10III. Chorale (Chorus): Nun Danket Alle Gott2:0266-11IV. Recitative (Bass): Gottlob, Wir Wissen1:0366-12V. Aria (Duet: Soprano, Bass): Gott, Ach Gott3:0466-13VI. Chorale (Chorus): Erhalt Uns In Der Wahrheit0:39Ein' Feste Burg Ist Unser Gott, BWV80 For The Feast Of The Reformation1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals66-14I. Chorus: Ein' Feste Burg Ist Unser Gott5:1666-15II. Aria (Soprano, Bass): Mit Unser Macht3:5666-16III. Recitative (Bass): Erwäge Doch, Kind Gottes1:5666-17IV. Aria (Soprano): Komm In Mein Herzenshaus3:1666-18V. Chorale (Chorus): Und Wenn Die Welt Voll Teufel Wär3:4766-19VI. Recitative (Tenor): So Stehe Denn Bei Christi1:2466-20VII. Duet: (Alto, Tenor): Wie Selig Sind Doch Die4:0166-21VIII. Chorale (Chorus): Das Wort Sie Sollen Lassen Stahn1:09Jesus Schläft, Was Soll Ich Hoffen, BWV81 For The 4th Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1575358Knut SchochTenor Vocals66-22I. Aria (Alto): Jesus Schläft, Was Soll Ich Hoffen?4:3066-23II. Recitative (Tenor): Herr! Warum Trittest Du So Ferne?1:1166-24III. Aria (Tenor): Die Schäumenden Wellen3:0466-25IV. Arioso (Bass): Ihr Kleingläubigen, Warum Seid Ihr0:5766-26V. Aria (Bass): Schweig, Aufgetürmtes Meer!5:5366-27VI. Recitative (Alto): Wohl Mir, Mein Jesus0:2666-28VII. Chorale (Chorus): Unter Deinen Schirmen1:13Sacred Cantatas BWV 82-85Ich Habe Genug, BWV82 For The Feast Of The Purification1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra67-1I. Aria (Bass): Ich Habe Genug7:4267-2II. Recitative (Bass): Ich Habe Genug!1:1267-3III. Aria (Bass): Schlummert Ein, Ihr Matten Augen9:2467-4IV. Recitative (Bass): Mein Gott! Wann Kommt Das Schöne0:5267-5V. Aria (Bass): Ich Freue Mich Auf Meinen Tod3:52Erfreute Zeit Im Neuen Bunde, BWV83 For The Feast Of Purification1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1588745Marcel BeekmanTenor Vocals67-6I. Aria (Alto): Erfreute Zeit Im Neuen Bunde7:1367-7II. Aria · Recitative (Bass): Herr, Nun Lässest Du Deinen Diener4:2967-8III. Aria (Tenor): Eile, Herz, Voll Freudigkeit5:5767-9IV. Recitative (Alto): Ja, Merkt Dein Glaube0:4167-10V. Chorale (Chorus): Er Ist Das Heil Und Selig Licht0:54Ich Bin Vergnügt Mit Meinem Glücke, BWV84 For Septuagesimae Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals67-11I. Aria (Soprano): Ich Bin Vergnügt Mit Meinem Glücke6:4667-12II. Recitative (Soprano): Gott Ist Mir Ja Nichts Schuldig1:2167-13III. Aria (Soprano): Ich Esse Mit Freuden5:0467-14IV. Recitative (Soprano): Im Schweiße Meines Angesichts1:0067-15V. Chorale (Chorus): Ich Leb Indes In Dir Vergnüget1:07Ich Bin Ein Guter Hirt, BWV85 For Misericordias Domini Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals67-16I. Aria (Bass): Ich Bin Ein Guter Hirt3:1267-17II. Aria (Alto): Jesus Ist Ein Guter Hirt3:4567-18III. Chorale (Soprano): Der Herr Ist Mein Getreuer Hirt5:0067-19IV. Recitative (Tenor): Wenn Die Mietlinge Schlafen1:0367-20V. Aria (Tenor): Seht, Was Die Liebe Tut2:4567-21VI. Chorale (Chorus): Ist Gott Mein Schutz1:05Sacred Cantatas BWV 86-90Wahrlich, Wahrlich, Ich Sage Euch, BWV86 For Rogation Sunday1575364Sytse BuwaldaAlto Vocals1575367Netherlands Bach CollegiumAutomatic Orchestra890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals68-1I. Aria (Bass): Wahrlich, Wahrlich, Ich Sage Euch2:3868-2II. Aria (Alto): Ich Will Doch Wohl Rosen Brechen5:4068-3III. Chorale (Soprano): Und Was Der Ewig Gütige Gott1:4568-4IV. Recitative (Tenor): Gott Macht Es Nicht0:3268-5V. Aria (Tenor): Gott Hilft Gewiß2:2768-6VI. Chorale (Chorus): Die Hoffnung Wart'1:13Bisher Habt Ihr Nichts Gebeten In Meinem Namen, BWV87 For Rogation Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals68-7I. Aria (Bass): Bisher Habt Ihr Nichts Gebeten1:4468-8II. Recitative (Alto): O Wort, Das Geist Und Seel0:3668-9III. Aria (Alto): Vergib, O Vater, Unsre Schuld8:3668-10IV. Recitative (Tenor): Wenn Unsre Schuld0:5668-11V. Aria (Bass): In Der Welt Habt Ihr Angst2:0068-12VI. Aria (Tenor): Ich Will Leiden, Ich Will Schweigen4:4368-13VII. Chorale (Chorus): Muss Ich Sein Betrübet?1:36Siehe, Ich Will Viel Fischer Aussenden, BWV88 For The 5th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals68-14I. Aria (Bass): Siehe, Ich Will Viel Fischer6:0668-15II. Recitative (Tenor): Wie Leichtlich Könnte Doch0:5268-16III. Aria (Tenor): Nein, Gott Ist Allzeit Geflissen3:4368-17IV. Recitative · Aria (Tenor, Bass): Jesus Sprach Zu Simon2:0568-18V. Diet (Soprano, Alto): Beruft Gott Selbst, So Muß Der Segen4:0068-19VI. Recitative (Soprano): Was Kann Dich Denn1:2468-20VII. Chorale (Chorus): Sing, Bet Und Get1:03Was Soll Ich Aus Dir Machen, Ephraim?, BWV89 For The 22nd Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals68-21I. Aria (Bass): Was Soll Ich Aus Dir Machen3:3168-22II. Recitative (Alto): Ja, Freilich Sollte Gott0:5468-23III. Aria (Alto): Ein Unbarmherziges Gerichte2:3768-24IV. Recitative (Soprano): Wohlan! Mein Herze Legt Zorn1:0468-25V. Aria (Soprano): Gerechter Gott2:3068-26VI. Chorale (Chorus): Mir Mangelt Zwar Sehr Viel0:55Es Reißet Euch Ein Schrecklich Ende, BWV90 For The 25th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals68-27I. Aria (Tenor): Es Reißet Euch Ein schrecklich Ende5:3368-28II. Recitative (Alto): Des Höchsten Güte Wird Von Tag1:3368-29III. Aria (Bass): So Löschet Im Eifer3:4468-30IV. Recitative (Tenor): Doch Gottes Auge Sieht0:4368-31V. Chorale (Chorus): Leit Uns Mit Deiner Rechten Hand0:59Sacred Cantatas BWV 91-93Gelobet Seist Du, Jesu Christ, BWV91 For The 1st Day Of Christmas1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals69-1I. Chorus: Gelobet Seist Du, Jesu Christ2:5569-2II. Recitative · Chorale (Soprano): Der Glanz Der Höchsten Herrlichkeit1:4369-3III. Aria (Tenor): Gott, Dem Der Erdenkreis Zu Klein2:5469-4IV. Recitative (Bass): O Christenheit, Wohlan1:1869-5V. Aria (Duet: Soprano, Alto): Die Armut, So Gott7:3569-6VI. Chorale (Chorus): Das Hat Er Alles Uns Getan0:47Ich Hab In Gottes Herz Und Sinn, BWV92 For Septuagesimae Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals69-7I. Chorus: Ich Hab In Gottes Herz Und Sinn6:0769-8II. Recitative · Chorale (Bass): Es Kann Mir Fehlen Nimmermehr3:4469-9III. Aria (Tenor): Seht, Seht! Wie Reißt, Wie Bricht3:0669-10IV. Chorale (Alto): Zudem Ist Weisheit Und Verstand3:2769-11V. Recitative (Tenor): Wir Wollen Nun Nicht Länger Zagen1:1669-12VI. Aria (Bass): Das Brausen Von Den Rauhen Winden4:3169-13VII. Chorale · Recitative (Soprano, Alto, Tenor, Bass): Ei Nun, Mein Gott, So Fall Ich Dir2:2969-14VIII. Aria (Soprano): Meinem Hirten Bleib Ich Treu3:0669-15IX. Chorale (Chorus): Soll Ich Denn Auch Des Todes Weg1:21Wer Nun Den Lieben Gott Läßt Walten, BWV93 For The 5th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals69-16I. Chorus: Wer Nun Den Lieben Gott Läßt Walten5:2669-17II. Recitative · Chorale (Bass): Was Helfen Uns Die Schweren Sorgen1:4969-18III. Aria (Tenor): Man Halte Nur Ein Wenig Stille2:4169-19IV. Aria · Chorale (Soprano, Alto): Er Kennt Die Rechten Freudenstunden2:3969-20V. Recitative · Chorale (Tenor): Denk Nicht In Deiner Drangsalhitze2:1669-21VI. Aria (Soprano): Ich Will Auf Den Herren Schaun2:2969-22VII. Chorale (Chorus): Sing, Bet Und Geh Auf Gottes Wegen0:55Sacred Cantatas BWV 94-96 & 98Was Frag Ich Nach Der Welt, BWV94 For The 9th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals70-1I. Chorus: Was Frag Ich Nach Der Welt2:4170-2II. Aria (Bass): Die Welt Ist Wie Ein Rauch2:4170-3III. Recitative · Chorale (Tenor): Die Welt Sucht Ehr' Und Ruhm3:3770-4IV. Aria (Alto): Betörte Welt, betörte Welt!4:3670-5V. Recitative · Chorale (Bass): Die Welt Bekümmert Sich2:1370-6VI. Aria (Tenor): Die Welt Kann Ihre Lust Und Freud5:3170-7VII. Aria (Soprano): Es Halt' Es Mit Der Blinden Welt4:0370-8VIII. Chorale (Chorus): Was Frag Ich Nach Der Welt2:02Christus, Der Ist Mein Leben, BWV95 For The 16th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals70-9I. Chorus (Recitative: Tenor): Christus, Der Ist Mein Leben4:2470-10II. Recitative (Soprano): Nun, Falsche Welt0:5170-11III. Chorale (Soprano): Valet Will Ich Dir Geben1:4870-12IV. Recitative (Tenor): Ach, Könnte Mir Doch Bald0:3870-13V. Aria (Tenor): Ach, Schlage Doch Bald7:1670-14VI. Recitative (Bass): Denn Ich Weiß Dies1:2370-15VII. Chorale (Chorus): Weil Du Vom Tod Erstanden Bist1:04Herr Christ, Der Einge Gottessohn1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals70-16I. Chorus: Herr Christ Der Einge Gottessohn5:3770-17II. Recitative (Alto): O Wunderkraft Der Liebe1:1770-18III. Aria (Tenor): Ach, Ziehe Die Seele7:2270-19IV. Recitative (Soprano): Ach, Führe Mich, O Gott0:4970-20V. Aria (Bass): Bald Zur Rechten, Bald Zur Linken2:2970-21VI. Chorale (Chorus): Ertöt Uns Durch Dein Güte0:51Was Gott Tut, Das Ist Wohlgetan, BWV98 For The 21st Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals70-22I. Chorus: Was Gott Tut, Das Ist Wohlgetan4:2870-23II. Recitative (Tenor): Ach Gott! Wenn Wirst Du Mich1:0370-24III. Aria (Soprano): Hört, Ihr Augen, Auf Zu Weinen3:4970-25IV. Recitative (Alto): Gott Hat Ein Herz1:0670-26V. Aria (Bass): Meinen Jesum Laß Ich Nicht4:32Sacred Cantatas BWV 97, 99 & 100In Allen Meinen Taten, BWV97 Occasion Unspecified1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals71-1I. Chorus: In Allen Meinen Taten4:1671-2II. Aria (Bass): Nichts Ist Es Spat Und Frühe3:4371-3III. Recitative (Tenor): Es Kann Mir Nichts Geschehen0:3671-4IV. Aria (Tenor): Ich Traue Seiner Gnaden5:5171-5V. Recitative (Alto): Er Wolle Meiner Sünden0:4571-6VI. Aria (Alto): Leg Ich Mich Späte Nieder4:2071-7VII. Duet (Soprano, Bass): Hat Er Es Denn Beschlossen3:5371-8VIII. Aria (Soprano): Ihm Hab Ich Mich Ergeben3:2271-9IX. Chorale (Chorus): So Sei Nun, Seele, Deine1:04Was Gott Tut, Das Ist Wohlgetan, BWV99 For The 15th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals71-10I. Chorus: Was Gott Tut, Das Ist Wohlgetan5:0371-11II. Recitative (Bass): Sein Wort Der Wahrheit Stehet Fest1:1471-12III. Aria (Tenor): Erschüttre Dich Nur Nicht5:2271-13IV. Recitative (Alto): Nun, Der Von Ewigkeit1:1371-14V. Aria (Duet: Soprano, Alto): Wenn Des Kreuzes Bitterkeiten3:2071-15VI. Chorale (Chorus): Was Gott Tut, Das Ist Wohlgetan0:58Was Gott Tut, Das Ist Wohlgetan, BWV100 Occasion Unspecified1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals71-16I. Chorus: Was Gott Tut, Das Ist Wohlgetan5:0371-17II. Duet (Alto, Tenor): Was Gott Tut, Das Ist Wohlgetan3:1771-18III. Aria (Soprano): Was Gott Tut, Das Ist Wohlgetan5:0271-19IV. Aria (Bass): Was Gott Tut, Das Ist Wohlgetan3:5171-20V. Aria (Alto): Was Gott Tut, Das Ist Wohlgetan3:4871-21VI. Chorale (Chorus): Was Gott Tut, Das Ist Wohlgetan1:54Sacred Cantatas BWV 101, 102 & 104Nimm Von Uns, Herr, Du Treuer Gott, BWV101 For The 10th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals72-1I. Chorus: Nimm Von Uns, Herr, Du Treuer Gott5:5672-2II. Aria (Tenor): Handle Nicht Nach Deinen Rechten3:2872-3III. Recitative · Chorale (Soprano): Ach! Herr Gott2:3072-4IV. Aria (Bass): Warum Willst Du So Zornig Sein4:2072-5V. Recitative · Chorale (Tenor): Die Sünd Hat Uns Verderbet Sehr2:1572-6VI. Aria (Duet: Soprano, Alto): Gedenk An Jesu Bittern Tod6:0672-7VII. Chorale (Chorus): Leit Und Mit Deiner Rechten Hand0:58Herr, Deine Augen Sehen Nach Dem Glauben, BWV102 For The 10th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals72-8I. Chorus: Herr, Deine Augen6:2272-9II. Recitative (Bass): Wo Ist Das Ebenbild1:0472-10III. Aria (Alto): Weh Der Seele4:3372-11IV. Arioso (Bass): Verachtest Du Den Reichtum3:2672-12V. Aria (Tenor): Erschrecke Doch4:4172-13VI. Recitative (Alto): Beim Warten Ist Gefahr1:0972-14VII. Chorale (Chorus): Heut Lebst Du, Heut Bekehre Dich1:46Du Hirte Israel, Höre, BWV104 For The Sunday Of Misericordias Domini1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575358Knut SchochTenor Vocals72-15I. Chorus: Du Hirte Israel, Höre4:0172-16II. Recitative (Tenor): Der Höchste Hirte Sorgt Vor Mich0:4072-17III. Aria (Tenor): Verbirgt Mein Hirte Sich Zu Lange3:3072-18IV. Recitative (Bass): Ja, Dieses Wort Ist Meiner0:5572-19V. Aria (Bass): Beglückte Herde, Jesu Schafe6:5672-20VI. Chorale (Chorus): Der Herr Ist Mein getreuer Hirt0:50Sacred Cantatas BWV 103 & 105-107Ihr Werdet Weinen Und Heulen, BWV102 For Jubilate Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals73-1I. Chorus · Arioso (Bass): Ihr Werdet Weinen Und Heulen6:0373-2II. Recitative (Tenor): Wer Sollte Nicht In Klagen0:3973-3III. Aria (Alto): Kein Arzt Ist Außer Dir Zu Finden5:0273-4IV. Recitative (Alto): Du Wirst Mich Nach Der Angst0:3873-5V. Aria (Tenor): Erholet Euch, Betrübte Sinnen3:0573-6VI. Chorale (Chorus): Ich Hab Dich Einen Augenblick1:12Herr, Gehe Nicht Ins Gericht, BWV105 For The 9th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals73-7I. Chorus: Herr, Gehe Nicht Ins Gericht5:5973-8II. Recitative (Alto): Mein Gott, Verwirf Mich Nicht0:5873-9III. Aria (Soprano): Wir Zittern Und Wanken5:5873-10IV. Recitative (Bass): Wohl Aber Dem1:4273-11V. Aria (Tenor): Kann Ich Nur Jesum6:1273-12VI. Chorale (Chorus): Nun, Ich Weiß, Du Wirst Mir Stillen1:53Gottes Zeit Ist Die Allerbeste Zeit (Actus Tragicus), BWV106 Occasion Unspecified1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals73-13I. Sonatina2:4373-14II. A. Chorus: Gottes Zeit Ist Die Allerbeste Zeit | B. Arioso (Tenor): Ach Herr, Lehre Uns | C. Arioso (Bass): Bestelle Dein Haus | D. Arioso (Soprano): Es Ist Der Alte Bund9:1673-15III. Aria (Alto): In Deine Hände | Arioso · Chorale (Alto, Bass): Heute Wirst Du Mit Mir6:3973-16IV. Chorus: Glorie, Lob, Ehr Und Herrlichkeit2:50Was Willst Du Dich Betrüben, BWV107 For The 7th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals73-17I. Chorus: Was Willst Du Dich Betrüben3:5973-18II. Recitative (Bass): Denn Gott Verlässet Keinen1:0473-19III. Aria (Bass): Auf Ihn Magst Du Es Wagen3:0173-20IV. Aria (Tenor): Wenn Auch Gleich Aus Der Höllen3:0273-21V. Aria (Soprano): Er Richts Zu Seinen Ehren2:3473-22VI. Aria (Tenor): Drum Ich Mich Ihm Ergebe2:3373-23VII. Chorale (Chorus): Herr, Gib, Daß Ich Dein Ehre1:57Sacred Cantatas BWV 108-110 & 112Es Ist Euch Gut, Daß Ich Hingehe, BWV108 For Cantata Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1588745Marcel BeekmanTenor Vocals74-1I. Aria (Bass): Es Ist Euch Gut, Daß Ich Hingehe3:5174-2II. Aria (Tenor): Mich Kann Kein Zweifel Stören3:4074-3III. Recitative (Tenor): Dein Geist Wird Mich Also Regieren0:3574-4IV. Chorus: Wenn Aber Jener2:3574-5V. Aria (Alto): Was Mein Herz Von Dir Begehrt3:3474-6VI. Chorale (Chorus): Dein Geist, Den Gott1:02Ich Glaube, Lieber Herr, Hilf Meinem Unglauben, BWV109 For The 21th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals74-7I. Chorus: Ich Glaube, Lieber Herr6:1974-8II. Recitative (Tenor): Des Herren Hand Ist Ja1:2274-9III. Aria (Tenor): Wie Zweifelhaftig6:1574-10IV. Recitative (Alto): O Fasse Dich0:4174-11V. Aria (Alto): Der Heiland Kennet Ja Die Seinen5:3174-12VI. Chorale (Chorus): Wer Hofft In Gott3:47Unser Mund Sei Voll Lachens, BWV110 For The 1st Day Of Christmas1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals74-13I. Chorus (Solo: Soprano, Tenor, Alto, Bass): Unser Mund Sei Voll Lachens6:3574-14II. Aria (Tenor): Ihr Gedanken Und Ihr Sinnen4:3974-15III. Recitative (Bass): Dir, Herr, Ist Niemand Gleich0:3174-16IV. Aria (Alto): Ach Herr, Was Ist Ein Menschenkind4:1174-17V. Duet (Soprano, Tenor): Ehre Sei Gott In Der Höhe4:0274-18VI. Aria (Bass): Wacht Auf! Ihr Adern Und Ihr Glieder4:0674-19VII. Chorale (Chorus): Alleluja! Gelobt Sei GottDer Herr Ist Mein Getreuer Hirt, BWV112 For The Misericordia Domini Sunday1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals74-20I. Chorus: Der Herr Ist Mein Getreuer Hirt2:5674-21II. Aria (Alto): Zum Reinen Wasser Er Mich Weist4:0674-22III. Recitative (Bass): Und Ob Ich Wandelt Im Finstern Tal1:4374-23IV. Duet (Soprano, Tenor): Du Bereitest Für Einen Tisch3:5774-24V. Chorale (Chorus): Gutes Und Die Barmherzigkeit0:55Sacred Cantatas BWV 111, 113 & 114Was Mein Gott Will, Das G'scheh Allzeit, BWV111 For The 3rd Sunday After Epiphany1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575359Nico Van Der MeelTenor Vocals75-1I. Chorus: Was Mein Gott Will, Das G'scheh4:5075-2II. Aria (Bass): Entsetze Dich, Mein Herze, Nicht4:0975-3III. Recitative (Alto): O Törichter! Der Sich Von Gott0:4975-4IV. Aria (Duet: Alto, Tenor): So Geh Ich Mit Beherzten Schritten7:1475-5V. Recitative (Soprano): Drum Wenn Der Tod Zuletzt1:0475-6VI. Chorale (Chorus): Noch Eins, Herr, Will Ich Bitten Dich1:19Herr Jesu Christ, Du Höchstes Gut, BWV113 For The 11th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals75-7I. Chorus: Herr Jesu Christ, Du Höchstes Gut3:3975-8II. Chorale (Alto): Erbarm Dich Mein In Solcher Last4:1875-9III. Aria (Bass): Fürwahr, Wenn Mir Das Kömmet Ein3:2975-10IV. Recitative (Bass): Jedoch Dein Heilsam Wort2:2375-11V. Aria (Tenor): Jesus Nimmt Die Sünder An5:3275-12VI. Recitative (Tenor): Der Heiland Nimmt Die Sünder An2:0075-13VII. Aria (Duet: Soprano, Alto): Ach Herr, Mein Gott2:2575-14VIII. Chorale (Chorus): Stärk Mich Mit Deinem Freudengeist1:15Ach, Lieben Christen, Seid Getrost, BWV114 For The 17th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals75-15I. Chorus: Ach, Lieben Christen, Seid Getrost4:1475-16II. Aria (Tenor): Wo Wird In Diesem Jammertale9:0675-17III: Recitative (Bass): O Sünder, Trage Mit Geduld1:5175-18IV. Chorale (Soprano): Kein Furcht Das Weizenkörnlein2:0775-19V. Aria (Alto): Du Machst, O Tod5:0875-20VI. Recitative (Tenor): Indes Bedenke Deine Seele0:4575-21VII. Chorale (Chorus): Wir Wachen Oder Schlafen Ein 1:04Sacred Cantatas BWV 115-117 & 120Mache Dich, Mein Geist, Bereit, BWV115 For The 22nd Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals76-1I. Chorus: Mache Dich, Mein Geist, Bereit4:1276-2II. Aria (Alto): Ach, Schläfrige Seele, Wie?8:1976-3III. Recitative (Bass): Gott, So Vor Deine Seele Wacht1:1576-4IV. Aria (Soprano): Bete Aber Auch Dabei5:1476-5V. Recitative (Tenor): Er Sehnet Sich Nach Unserm Schreien0:5276-6VI. Chorale (Chorus): Drum So Laßt Uns Immerdar0:52Du Friedefürst, Herr Jesu Christ, BWV116 For The 25th Sunday After Trinity1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals76-7I. Chorus: Du Friedefürst, Herr Jesu Christ4:3976-8II. Aria (Alto): Ach, Unaussprechlich Ist Die Not3:0676-9III. Recitative (Tenor): Gedenke Doch, O Jesu0:4876-10IV. Aria (Trio: Soprano, Tenor, Bass): Ach, Wie Bekennen Unsre Schuld5:1776-11V. Recitative (Alto): Ach, Laß Uns Durch Die Scharfen Ruten1:0276-12VI. Chorale (Chorus): Erleucht Auch Unser Sinn Und Herz1:00Sei Lob Und Ehr' Dem Höchsten Gut, BWV117 Occasion Unspecified1575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1575358Knut SchochTenor Vocals76-13I. Chorus: Sei Lob Und Ehr' Dem Höchsten Gut4:2776-14II. Recitative (Bass): Es Danken Dir Die Himmelsheer1:0976-15III. Aria (Tenor): Was Unser Gott Geschaffen Hat3:0476-16IV. Chorale (Chorus): Ich Rief Dem Herrn In Meiner Not0:5976-17V. Recitative (Alto): Der Herr Ist Noch Und Nimmer Nicht1:1676-18VI. Aria (Bass): Wenn Trost Und Hülf Ermangeln Muß3:5976-19VII. Aria (Alto): Ich Will Dich All Mein Leben Lang3:0176-20VIII. Recitative (Tenor): Ihr, Die Ihr Christi Namen Nennt0:4776-21IX. Chorale (Chorus): So Kommet Vor Sein Angesicht1:01Gott, Man Lobet Dich In Der Stille, BWV120 For The Leipzig Town Council Inauguration 1728-91575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra1621780Marjon StrijkSoprano Vocals1575359Nico Van Der MeelTenor Vocals76-22I. Aria (Alto): Gott, Man Lobet Dich In Der Stille5:5476-23II. Chorus: Jauchzet, Ihr Erfreuten Stimmen6:2776-24III. Recitative (Bass): Auf, Du Geliebte Lindenstadt1:1576-25IV. Aria (Soprano): Heil Und Segen Soll Und Muß5:2576-26V. Recitative (Tenor): Nun, Herr, So Weihe Selbst0:4276-27VI. Chorale (Chorus): Nun Hilf Uns, Herr, Den Dienern Dein1:00Sacred Cantatas BWV 119 & 121-123Preise, Jerusalem, Den Herrn, BWV119 For The Leipzig Town Council Inauguration 17231575364Sytse BuwaldaAlto Vocals890873Bas RamselaarBass Vocals1011289Holland Boys ChoirChoir1011291Pieter Jan LeusinkConductor1575367Netherlands Bach CollegiumOrchestra843400Ruth Holton (2)Soprano Vocals1588745Marcel BeekmanTenor Vocals77-1I. Chorus: Preise, Jerusalem, Den Herrn5:2477-2II. Recitative (Tenor): Gesegnet Land, Glückselge Stadt1:1877-3III. Aria (Tenor): Wohl Dir, Du Volk Der Linden3:5077-4IV. Recitative (Bass): So Herrlich Stehst Du, Liebe Stadt1:5677-5V. Aria (Alto): Die Obrigkeit Ist Gottes Gabe3:2777-6VI. Recitative (Soprano): Nun, Wie Erkennen Es0:4677-7VII. Chorus: Der Herr Hat Guts An Uns Getan6:0277-8VIII. Recitative (Alto): Zuletzt! Da Du Uns, Herr0:4077-9IX. Chorale (Chorus): Hilf Deinem Volk, Herr Jesu Christ0:54Christum Wir Sollen Loben Schon, BWV 121 For The 2nd Day Of Christmas77-10I. Chorus: Christum Wir Sollen Loben Schon3:0677-11II. Aria (Tenor): O Du Von Gott Erhöhte Kreatur4:2977-12III. Recitative (Alto): Der Gnade Unermeßlichs Wesen1:1277-13IV. Aria (Bass): Johannis Freudenvollen Springen8:1977-14V. Recitative (Soprano): Doch Wie Erblickt Es Dich0:5777-15VI. Chorale (Chorus): Lob, Ehr Und Dank Sei Dir Gesagt0:59Das Neugeborne Kindelein, BWV122 For The Sunday After Christmas77-16I. Chorus: Das Neugeborne Kindelein3:2077-17II. Aria (Bass): O Menschen, Die Ihr Täglich Sündigt5:2677-18III. Recitative (Soprano): Die Engel, Welche Sich Zuvor1:1877-19IV. Aria (Trio: Soprano, Alto, Tenor): Ist Gott Versöhnt Und Unser Freund2:2577-20V. Recitative (Bass): Dies Ist Ein Tag1:3277-21VI. Chorale (Chorus): Es Bringt Das Rechte Jubeljahr0:41Liebster Immanuel, Herzog Der Frommen, BWV123 For The Feast Of Epiphany77-22I. Chorus: Liebster Immanuel5:4377-23II. Recitative (Alto): Die Himmelssüßigkeit0:4977-24III. Aria (Tenor): Auch Die Harte Kreuzesreise5:5377-25IV. Recitative (Bass): Kein Höllenfein Kann Mich0:4577-26V. Aria (Bass): Laß, O Welt, Mich Aus Verachtung6:5777-27VI. Chorale (Chorus): Drum Fahrt Nur Immer Hin1:33Sacred Cantatas BWV 124-127Meinen Jesum Laß Ich Nicht, BWV124 For The 1st Sunday After Epiphany78-1I. Chorus: Meinen Jesum Laß Ich Nicht3:4478-2II. Recitative (Tenor): Solange Sich0:4878-3III. Aria (Tenor): Und Wenn Der Harte Todesschlag3:2878-4IV. Recitative (Bass): Doch Ach!1:0578-5V. Aria (Duet: Soprano, Alto): Entziehe Dich Eilends4:2378-6VI. Chorale (Chorus): Jesum Laß Ich Nicht Von Mir1:02Mit Fried Und Freund Ich Fahr Dahin, BWV125 For The Feast Of The Purification78-7I. Chorus: Mit Fried Und Freud5:2178-8II. Aria (Alto): Ich Will Auch Mit7:4478-9III. Recitative (Bass): O Wunder, Daß Ein Herz2:1578-10IV. Aria (Duet: Tenor, Bass): Ein Unbegreiflich Licht5:1078-11V. Recitative (Alto): O Unerschöpfter Schatz Der Güte0:4478-12VI. Chorale (Chorus): Er Ist Das Heil Und Selig Licht0:47Erhalt Uns, Herr, Bei Deinem Wort, BWV126 For Sexagesimae Sunday78-13I. Chorus: Erhalt Uns, Herr, Bei Deinem Wort2:5678-14II. Aria (Tenor): Sende Deine Macht Von Oben4:0178-15III. Recitative (Alto, Tenor): Der Menschen Gunst Und Macht2:1578-16IV. Aria (Bass): Stürze Zu Boden5:2978-17V. Recitative (Tenor): So Wird Dein Wort0:5378-18VI. Chorale (Chorus): Verleih Uns Frieden Gnädiglich1:52Herr Jesu Christ, Wahr' Mensch Und Gott, BWV127 For Estomihi Sunday78-19I. Chorus: Herr Jesu Christ5:2278-20II. Recitative (Tenor): Wenn Alles Sich Zur Letzten Zeit1:2678-21III. Aria (Soprano): Die Seele Ruht In Jesu Händen6:5978-22IV. Recitative · Aria (Bass): Wenn Einstens Die Posaunen Schallen4:1678-23V. Chorale (Chorus): Ach Herr, Vergib All Unsre Schuld0:47Sacred Cantatas BWV 128-131Auf Christi Himmelfahrt Allein, BWV128 For Ascension Day79-1I. Chorus: Auf Christi Himmelfahrt Allein5:1079-2II. Recitative (Tenor): Ich Bin Bereit, Komm, Hole Mich0:4679-3III. Aria (Bass): Auf, Auf, Mit Hellem Schall3:3079-4IV. Aria (Duet: Alto, Tenor): Sein Allmacht Zu Ergründen7:0679-5V. Chorale (Chorus): Alsdenn So Wirst Du Mich1:03Gelobt Sei Der Herr, Mein Gott, BWV129 For The Feast Of Trinity79-6I. Chorus: Gelobet Sei Der Herr, Mein Gott4:2579-7II. Aria (Bass): Gelobet Sei Der Herr, Mein Gott4:0179-8III. Aria (Soprano): Gelobet Sei Der Herr, Mein Gott4:3279-9IV. Aria (Alto): Gelobet Sei Der Herr, Mein Gott5:0279-10V. Chorale (Chorus): Dem Wir Das Heilig Itzt Mit Freuden1:41Herr Gott, Dich Loben Alle Wir, BWV130 For The Feast Of St Michael79-11I. Chorus: Herr Gott, Dich Loben Alle Wir3:1879-12II. Recitative (Alto): Ihr Heller Glanz1:0179-13III. Aria (Bass): Der Alte Drachen Brennt Vor Neid4:3579-14IV. Recitative (Soprano, Tenor): Wohl Aber Uns1:1779-15V. Aria (Tenor): Laß, O Fürst Der Cherubinen4:4379-16VI. Chorale (Chorus): Darum Wir Billig Loben Dich1:28Aus Der Tiefen Rufe Ich, Herr, Zu Dir, BWV131 Penitential Service79-17I. Chorus: Aus Der Tiefe Rufe Ich4:3579-18II. Duet (Soprano, Bass): So Du Willst, Herr4:2179-19III. Chorus: Ich Harre Des Herrn3:1479-20IV. Aria (Tenor, Alto): Meine Seele Wartet Auf Den Herrn7:0979-21V. Chorus: Israel, Hoffe Auf Den Herrn4:09Sacred Cantatas BWV 132-135Bereitet Die Wege, Bereitet Die Bahn, BWV132 For The 4th Sunday Of Advent80-1I. Aria (Soprano): Bereitet Die Wege, Bereitet Die Bahn5:4180-2II. Recitative (Tenor): Willst Du Dich Gottes Kind2:2280-3III. Aria (Bass): Wer Bist Du? Frage Dein Gewissen2:3480-4IV. Recitative (Alto): Ich Will, Mein Gott1:5680-5V. Aria (Alto): Christi Glieder, Ach Bedenket3:3680-6VI. Chorale (Chorus): Ertöt Uns Durch Dein Güte0:56Ich Freue Mich In Dir, BWV133 For The 3rd Day Of Christmas80-7I. Chorus: Ich Freue Mich In Dir4:1980-8II. Aria (Alto): Getrost! Es Faßt Ein Heilger Leib4:1680-9III. Recitative (Tenor): Ein Adam Mag Sich Voller Schrecken0:5680-10IV. Aria (Soprano): Wie Lieblich Klingt Es In Den Ohren7:4280-11V. Recitative (Bass): Wohlan, Des Todes Furcht1:0080-12VI. Chorale (Chorus): Wohlan, So Will Ich Mich1:05Ein Herz, Das Seinen Jesum Lebend Weiß, BWV134 For The 3rd Day Of Eastern80-13I. Recitative (Alto, Tenor): Ein Herz, Das Seinen Jesum0:4080-14II. Aria (Tenor): Auf, Gläubige, Singet6:2780-15III. Recitative (Alto, Tenor): Wohl Dir, Gott Hat An Dich Gedacht2:1980-16IV. Aria (Duet: Alto, Tenor): Wir Danken, Wir Preisen8:2980-17V. Recitative (Alto, Tenor): Doch Wirke Selbst Den Dank1:5280-18VI. Chorus: Erschallet, Ihr Himmel7:44Ach Herr, Mich Armen Sünder, BWV135 For The 3rd Sunday After Trinity80-19I. Chorus: Ach Herr, Mich Armen Sünder5:1080-20II. Recitative (Tenor): Ach Heile Mich, Du Arzt Der Seelen1:1180-21III. Aria (Tenor): Tröste Mir, Jesu, Mein Gemüte3:2780-22IV. Recitative (Alto): Ich Bin Von Seufzen Müde0:5780-23V. Aria (Bass): Weicht, All Ihr Übeltäter3:1380-24VI. Chorale (Chorus): Ehr Sei Ins Himmels Throne1:04Sacred Cantatas BWV 136-138 & 140Erforsche Mich, Gott, Und Erfahre Mein Herz, BWV136 For The 8th Sunday After Trinity81-1I. Chorus: Erforsche Mich, Gott4:1281-2II. Recitative (Tenor): Ach, Daß Der Fluch1:2781-3III. Aria (Alto): Es Kommt Ein Tag4:2581-4IV. Recitative (Bass): Die Himmer Selber Sind Nicht Rein1:1381-5V. Aria (Duet: Tenor, Bass): Uns Treffen Zwar3:4381-6VI. Chorale (Chorus): Dein Blut, Der Edle Saft0:53Lobe Den Herren, Den Mächtigen König Der Ehren, BWV137 For The 12th Sunday After Trinity81-7I. Chorus: Lobe Den Herren3:2681-8II. Aria (Alto): Lobe Den Herren, Der Alles3:4281-9III. Aria (Duet: Soprano, Bass): Lobe Den Herren, Der Künstlich3:4181-10IV. Aria (Tenor): Lobe Den Herren, Der Deinen3:0481-11V. Chorale (Chorus): Lobe Den Herren0:53Warum Betrübst Du Dich, Mein Herz?, BWV138 For The 15th Sunday After Trinity81-12I. Chorus · Recitative (Alto): Warum Betrübst Du Dich, Mein Herz?4:4381-13II. Recitative (Bass): Ich Bin Veracht0:5981-14III. Chorus · Recitative (Soprano, Alto): Er Kann Und Will Dich Lassen Nicht3:4381-15IV. Recitative (Tenor): Ach Süßer Trost!1:0181-16V. Aria (Bass): Auf Gott Steht Meine Zuversicht5:0281-17VI. Recitative (Alto): Ei Nun! So Will Ich Auch0:2581-18VII. Chorale (Chorus): Weil Du Mein Gott Und Vater Bist2:12Wachet Auf, Ruft Uns Die Stimme, BWV140 For The 27th Sunday After Trinity81-19I. Chorus: Wachet Auf, Ruft Uns Die Stimme7:1581-20II. Recitative (Tenor): Er Kommt, Der Bräutigam Kommt1:0381-21III. Aria (Duet: Soprano, Bass): Wann Kömmst Du, Mein Heil?6:0481-22IV. Chorale (Tenor): Zion Hört Die Wächter Singen4:1881-23V. Recitative (Bass): So Geh Herein Zu Mir1:2481-24VI. Aria (Duet: Soprano, Bass): Mein Freund Ist Mein!5:5581-25VII. Chorale (Chorus): Gloria Sei Dir Gesungen1:31Sacred Cantatas BWV 139, 143, 145 & 146Wohl Dem, Der Sich Auf Seinen Gott, BWV139 For The 23rd Sunday After Trinity82-1I. Chorus: Wohl Dem, Der Sich Auf Seinen Gott4:2882-2II. Aria (Tenor): Gott Ist Mein Freund6:1482-3III. Recitative (Alto): Der Heiland Sendet Ja Die Seinen0:3682-4IV. Aria (Bass): Das Unglück Schlägt Auf Allen Seiten5:2282-5V. Recitative (Soprano): Ja, Trag Ich Gleich Den Größten Feind0:5082-6VI. Chorale (Chorus): Dahero Trotz Der Höllen Heer0:54Lobe Den Herren, Meine Seele, BWV143 For New Year's Day82-7I. Chorus: Lobe Den Herrn, Meine Seele1:1582-8II. Chorale (Soprano): Du Friedefürst, Herr Jesu Christ2:1382-9III. Recitative (Tenor): Wohl Dem, Des Hilfe Der Gott0:2382-10IV. Aria (Tenor): Tausenfaches Unglück3:3582-11V. Aria (Bass): Der Herr Ist König Ewiglich1:4782-12VI. Aria (Tenor): Jesu, Retter Deiner Herde2:2082-13VII. Chorus: Halleluja2:28Ich Lebe, Mein Herze, Zu Deinem Ergötzen, BWV145 For The 3rd Sunday Of Easter82-14I. Aria (Duet: Soprano, Tenor): Ich Lebe, Mein Herze3:3082-15II. Recitative (Tenor): Nun Fordre, Moses, Wie Du Willst0:5982-16III. Aria (Bass): Merke, Mein Herze3:3282-17IV. Recitative (Soprano): Mein Jesus Lebt!0:4982-18V. Chorale (Chorus): Drum Wir Auch Billig Fröhlich Sein0:40Wir Müssen Durch Viel Trübsal In Das Reich Gottes Eingehen, BWV146 For Jubilate Sunday82-19I. Sinfonia8:0082-20II. Chorus: Wir Müssen Durch Viel Trübsal5:2682-21III. Aria (Alto): Ich Will Nach Dem Himmel Zu7:4882-22IV. Recitative (Soprano): Ach! Wer Doch Schon1:4582-23V. Aria (Soprano): Ich Säe Meine Zähren6:1382-24VI. Recitative (Tenor): Ich Bin Bereit1:1982-25VII. Duet (Tenor, Bass): Wie Will Ich Mich Freuen6:1782-26VIII. Chorale (Chorus): Denn Wer Selig Dahin Fährt0:52Sacred Cantatas BWV 144, 147, 148 & 150Nimm, Was Dein Ist, Und Gehe Hin, BWV144 For Septuagesimae Sunday83-1I. Chorus: Nimm, Was Dein Ist, Und Gehe Hin1:4783-2II. Aria (Alto): Murre Nicht, Lieber Christ5:5083-3III. Chorale (Chorus): Was Gott Tut, Das Ist Wohlgetan0:5083-4IV. Recitave (Tenor): Wo Die Genügsamkeit Regiert0:5883-5V. Aria (Soprano): Genügsamkeit Ist Ein Schatz3:2083-6VI. Chorale (Chorus): Was Mein Gott Will1:22Herz Und Mund Und Tat Und Leben, BWV147 For The Feast Of Visitation83-7I. Chorus: Herz Und Mund Und Tat Und Leben4:2983-8II. Recitative (Tenor): Gebenedeiter Mund1:5483-9III. Aria (Alto): Schäme Dich, O Seele, Nicht3:2583-10IV. Recitative (Bass): Verstockung Kann Gewaltige1:4083-11V. Aria (Soprano): Bereite Dir, Jesu4:3783-12VI. Chorale (Chorus): Wohl Mir, Daß Ich Jesum Habe2:5683-13VII. Aria (Tenor): Hilf, Jesu, Hilf3:2383-14VIII. Recitative (Alto): Der Höchsten Allmacht2:0583-15IX. Aria (Bass): Ich Will Von Jesu Wundern Singen2:5883-16X. Chorale (Chorus): Jesus Bleibet Meine Freude3:11Bringet Dem Herrn Ehre Seines Namens, BWV148 For The 17th Sunday After Trinity83-17I. Concerto: Bringet Dem Herrn Ehre3:4783-18II. Aria (Tenor): Ich Eile, Die Lehren Des Lebens4:5683-19III. Recitative (Alto): So Wie Der Hirsch1:2083-20IV. Aria (Alto): Mund Und Herze Steht Dir Offen4:5783-21V. Recitative (Tenor): Bleib Auch, Mein Gott, In Mir0:4383-22VI. Chorale (Chorus): Amen Zu Aller Stund0:56Nach Dir, Herr, Verlanget Mich, BWV150 Occasion Unspecified83-23I. Sinfonia1:4183-24II. Chorus: Nach Dir, Herr, Verlanget Mich3:3283-25III. Aria (Soprano): Doch Bin Und Bleibe Ich Vergnügt1:3483-26IV. Chorus: Leite Mich In Deiner Wahrheit1:4983-27V. Aria (Trio: Alto, Tenor, Bass): Zedern Müssen Von Den Winden1:2983-28VI. Chorus: Meine Augen Sehen Stets2:1483-29VII. Chorus: Meine Tage In Dem Leide3:05Sacred Cantatas BWV 149 & 151-153Man Singet Mit Freuden Vom Sieg, BWV149 For The Feast Of St Michael84-1I. CHorus: Man Singet Mit Freuden Vom Sieg4:0684-2II. Aria (Bass): Kraft Und Stärke Sei Gesungen2:4784-3III. Recitative (Alto): Ich Fürchte Mich0:4684-4IV. Aria (Soprano): Gottes Engel Weichen Nie5:1784-5V. Recitative (Tenor): Ich Danke Dir, Mein Lieber Gott0:3784-6VI. Aria (Duet: Alto, Tenor): Seid Wachsam, Ihr Heiligen Wächter3:3584-7VII. Chorale (Chorus): Ach Herr, Laß Dein Lieb Engelein1:36Süßer Trost, Mein Jesus Kömmt, BWV151 For The 3rd Sunday Of Christmas84-8I. Aria (Soprano): Süßer Trost, Mein Jesus Kömmt8:2284-9II. Recitative (Bass): Erfreue Dich, Mein Herz1:0984-10III. Aria (Alto): In Jesu Demut Kann Ich Trost5:2084-11IV. Recitative (Tenor): Du Teurer Gottessohn0:5084-12V. Chorale (Chorus): Heut Schleußt Er Wieder Auf Die Tür0:38Tritt Auf Die Glaubensbahn, BWV152 For The Sunday After Christmas84-13I. Concerto3:2284-14II. Aria (Bass): Tritt Auf Die Glaubensbahn2:5484-15III. Recitative (Bass): Der Heiland Ist Gesetzt2:0584-16IV. Aria (Soprano): Stein, Der Über Alle Schätze4:1584-17V. Recitative (Bass): Es Ärgre Sich Die Kluge Welt1:2984-18VI. Duet (Soprano, Bass): Wie Soll Ich Dich4:14Schau, Lieber Gott, Wie Meine Feind, BWV153 For The Sunday After New Year84-19I. Chorale (Chorus): Schau, Lieber Gott, Wie Meine Feinde0:5484-20II. Recitative (Alto): Mein Liebster Gott0:3684-21III. Aria (Bass): Fürchte Dich Nicht, Ich Bin Mit Dir1:5084-22IV. Recitative (Tenor): Du Sprichts Zwar, Lieber Gott1:2684-23V. Chorale (Chorus): Und Ob Gleich Alle Teufel1:0384-24VI. Aria (Tenor): Stürmt Nur, Stürmt2:3784-25VII. Recitative (Bass): Getrost! Mein Herz1:3884-26VIII. Aria (Alto): Soll Ich Meinen Lebenslauf2:4284-27IX. Chorale (Chorus): Drum Will Ich, Weil Ich Lebe Noch1:17Sacred Cantatas BWV 154-157 & 159Mein Liebster Jesus Ist Verloren, BWV154 For The 1st Sunday After Epiphany85-1I. Aria (Tenor): Mein Liebster Jesus Ist Verloren2:0785-2II. Recitative (Tenor): Wo Treff Ich Meinen Jesum An0:4085-3III. Chorale (Chorus): Jesu, Mein Hort Und Erretter1:0885-4IV. Aria (Alto): Jesu, Laß Dich Finden3:0785-5V. Arioso (Bass): Wisset Ihr Nicht1:2185-6VI. Recitative (Tenor): Dies Ist Die Stimme1:5685-7VII. Aria (Alto, Tenor): Wohl Mir, Jesus Ist Gefunden3:2385-8VIII. Chorale (Chorus): Meinen Jesum Laß Ich Nicht1:11Mein Gott, Wie Lang, Ach Lange, BWV155 For The 2nd Sunday After Epiphany85-9I. Recitative (Soprano): Mein Gott, Wie Lang, Ach Lange?1:4985-10II. Aria (Duet: Alto, Tenor): Du Mußt Glauben, Du Mußt Hoffen5:2085-11III. Recitative (Bass): So Sei, O Seele, Sei Zufrieden2:0985-12IV. Aria (Soprano): Wirf, Mein Herze, Wirf Dich Noch2:1085-13V. Chorale (Chorus): Ob Sichs Anließ, Als Wollt Er Nicht0:56Ich Steh Mit Einem Fuß Im Grabe, BWV156 For The 3rd Sunday After Epiphany85-14I. Sinfonia2:3485-15II. Aria · Chorale (Soprano, Tenor): Ich Steh Mit Einem Fuß Im Grabe5:5785-16III. Recitative (Bass): Mein Angst Und Not1:2985-17IV. Aria (Alto): Herr, Was Du Willst3:5485-18V. Recitative (Bass): Und Willst Du0:5985-19VI. Chorale (Chorus): Herr, Wie Du Willst, So Schicks Mit Mir1:07Ich Lasse Dich Nicht, Du Segnest Mich Denn, BWV157 For The Feast Of The Purification85-20I. Duet (Tenor, Bass): Ich Lasse Dich Nicht4:0985-21II. Aria (Tenor): Ich Halte Meinen Jesum Feste6:5885-22III. Recitative (Tenor): Mein Lieber Jesu Du1:2585-23IV. Aria (Bass): Ja, Ja, Ich Halte Jesum Feste5:5885-24V. Chorale (Chorus): Meinen Jesum Laß Ich Nicht0:57Sehet, Wir Gehn Hinauf Gen Jerusalem, BWV159 For Estomihi Sunday85-25I. Arioso · Recitative (Bass, Alto): Sehet! Komm, Schaue Doch3:0485-26II. Aria · Chorale (Alto, Soprano): Ich Folge Dir Nach4:0785-27III. Recitative (Tenor): Nun Will Ich Mich, Mein Jesu0:5685-28IV. Aria (Bass): Es Ist Vollbracht4:3485-29V. Chorale (Chorus): Jesu, Deine Passion1:14Sacred Cantatas BWV 158 & 161-164Der Friede Sei Mit Dir, BWV158 For The Feast Of The Purification86-1I. Recitative (Bass): Der Friede Sei Mit Dir1:3486-2II. Aria · Chorale (Soprano, Bass): Welt Ade! Ich Bin Dein Müde6:2686-3III. Recitative (Bass): Nun Herr, Regiere Meinen Sinn1:2386-4IV. Chorale (Chorus): Hier Ist Das Rechte Osterlamm1:17Komm, Du Süße Todesstunde, BWV161 For Estomihi Sunday86-5I. Aria (Alto): Komm, Du Süße Todesstunde4:4386-6II. Recitative (Tenor): Welt, Deine Lust Ist Last1:5186-7III. Aria (Tenor): Mein Verlagen5:4486-8IV. Recitative (Alto): Der Schluß Ist Schon Gemacht2:1686-9V. Chorus: Wenn Es Meines Gottes Wille3:3886-10VI. Chorale (Chorus): Der Leib Zwar In Der Erden1:23Ach, Ich Sehe, Itzt, Da Ich Zur Hochzeit Gehe, BWV162 For The 20th Sunday After Trinity86-11I. Aria (Bass): Ach, Ich Sehe4:0986-12II. Recitative (Tenor): O Großes Hochzeitsfest1:4486-13III. Aria (Soprano): Jesu, Brunnquell Aller Gnaden3:5886-14IV. Recitative (Alto): Mein Jesu, Laß Mich Nicht1:4086-15V. Aria (Duet: Alto, Tenor): In Meinem Gott Bin Ich Erfreut4:2286-16VI. Chorale (Chorus): Ach, Ich habe Schon Erblicket0:56Nur Jedem Das Seine, BWV163 For The 23rd Sunday After Trinity86-17I. Aria (Tenor): Nur Jedem Das Seine3:5186-18II. Recitative (Bass): Du Bist, Mein Gott1:3286-19III. Aria (Bass): Laß Mein Herz Die Münze Sein3:2786-20IV. Recitative (Soprano, Alto): Ich Wollte Dir, O Gott2:3286-21V. Aria (Duet: Soprano, Alto): Nimm Mich Mir3:1486-22VI. Chorale (Chorus): Führ Auch Mein Herz0:58Ihr, Die Ihr Euch Von Christo Nennet, BWV164 For The 13th Sunday After Trinity86-23I. Aria (Tenor): Ihr, Die Ihr Euch Von Christo Nennet4:2586-24II. Recitative (Bass): Wir Hören Zwar1:5286-25III. Aria (Alto): Nur Durch Lieb Und Durch Erbarmen3:4986-26IV. Recitative (Tenor): Ach, Schmelze Doch1:1886-27V. Aria (Duet: Soprano, Bass): Händen, Die Sich Nicht Verschließen3:4386-28VI. Chorale (Chorus): Ertöt Uns Durch Deine Güte0:58Sacred Cantatas BWV 165-167 & 169O Heilges Geist- Und Wasserbad, BWV165 For The Feast Of Trinity87-1I. Aria (Soprano): O Heilges Geist- Und Wasserbad3:2287-2II. Recitative (Bass): Die Sündige Geburt1:2187-3III. Aria (Alto): Jesu, Der Aus Großer Liebe2:2587-4IV. Recitative (Bass): Ich Habe Ja, Mein Seelenbräutigam2:1687-5V. Aria (Tenor): Jesu, Meines Todes Tod2:5887-6VI. Chorale (Chorus): Sein Wort, Sein Tauf0:44Wo Gehest Du Hin?, BWV166 For Cantate Sunday87-7I. Aria (Bass): Wo Gehest Du Hin?1:4587-8II. Aria (Tenor): Ich Will An Den Himmel Denken7:1287-9III. Chorale (Soprano): Ich Bitte Dich, Herr Jesu Christ2:4887-10IV. Recitative (Bass): Gleichwie Die Regenwasser0:5487-11V. Aria (Alto): Man Nehme Sich In Acht3:3987-12VI. Chorale (Chorus): Wer Weiß, Wie Nahe Mir Mein Ende0:55Ihr Menschen, Rühmet Gottes Liebe, BWV167 For The Feast Of John The Baptist87-13I. Aria (Tenor): Ihr Menschen, Rühmet4:4987-14II. Recitative (Alto): Gelobet Sei Der Herr Gott Israel2:1387-15III. Duet (Soprano, Alto): Gottes Wort, Das Trüget Nicht7:3387-16IV. Recitative (Bass): Des Weibes Samen Kam1:1487-17V. Chorale (Chorus): Sei Lob Und Preis Mit Ehren2:23Gott Soll Allein Mein Herze Haben, BWV169 For The 18th Sunday After Trinity87-18I. Sinfonia7:3687-19II. Arioso · Recitative (Alto): Gott Soll Allein Mein Herze Haben2:2187-20III. Aria (Alto): Gott Soll Allein Mein Herze Haben6:3887-21IV. Recitative (Alto): Was Ist Die Liebe Gottes?0:4687-22V. Aria (Alto): Stirb In Mir4:3787-23VI. Recitative (Alto): Doch Meint Es Auch0:2587-24VII. Chorale (Chorus): Du Süße Liebe1:07Sacred Cantatas BWV 168 & 170-172Tue Rechnung! Donnerwort, BWV168 For The 9th Sunday After Trinity88-1I. Aria (Bass): Tue Rechnung! Donnerwort3:2488-2II. Recitative (Tenor): Es Ist Nur Fremdes Gut1:4488-3III. Aria (Tenor): Kapital Und Interessen3:0888-4IV. Recitative (Bass): Jedoch, Erschrocknes Herz1:5388-5V. Aria (Duet: Soprano, Alto): Herz, Zerreiß Des Mammons Kette2:4188-6VI. Chorale (Chorus): Stärk Mich Mit Deinem Freudengeist0:59Vergnügte Ruh, Beliebte Seelenlust, BWV170 For The 6th Sunday After Trinity88-7I. Aria (Alto): Vergnügte Ruh, Beliebte Seelenlust5:3688-8II. Recitative (Alto): Die Welt, Das Sündenhaus1:2188-9III. Aria (Alto): Wie Jammern Mich7:1788-10IV. Recitative (Alto): Wer Sollte Sich Demnach1:1888-11V. Aria (Alto): Mir Ekelt Mehr Zu Leben6:12Gott, Wie Dein Name, So Ist Auch Dein Ruhm, BWV171 For New Year88-12I. Chorus: Gott Wie Dein Name2:0188-13II. Aria (Tenor): Herr, Soweit Die Wolken Gehen3:5088-14III. Recitative (Alto): Du Süßer Jesus Name Du1:0788-15IV. Aria (Soprano): Jesus Soll Mein Erstes Wort5:2488-16V. Recitative (Bass): Und Da Du, Herr, Gesagt1:5388-17VI. Chorale (Chorus): Dein Ist Allein Die Ehre1:54Erschallet, Ihr Lieder, BWV172 For The Feast Of Whit Sunday88-18I. Chorus: Erschallet, Ihr Lieder4:0288-19II. Recitative (Bass): Wer Mich Liebet0:5188-20III. Aria (Bass): Heiligste Dreieinigkeit2:1688-21IV. Aria (Tenor): O Seelenparadies5:0088-22V. Aria (Duet: Soprano, Alto): Komm, Laß Mich Nicht Länger Warten4:3388-23VI. Chorale (Chorus): Von Gott Kömmt Mir Ein Freundenschein1:22Sacred Cantatas BWV 173-175 & 177Erhöhtes Fleisch Und Blut, BWV173 For The 2nd Day Of Whitsun89-1I. Revitative (Tenor): Erhöhtes Fleisch Und Blut0:4389-2II. Aria (Tenor): Ein Geheiligtes Gemüte4:0189-3III. Aria (Alto): Gott Will, O Ihr Menschenkinder1:3989-4IV. Aria (Duet: Soprano, Bass): So Hat Gott Die Welt Geliebt4:2489-5V. Recitative (Duet: Soprano, Tenor): Unendlichster, Den Man Doch1:1889-6VI. Chorus: Rühre, Höchster, Unsern Geist2:39Ich Liebe Den Höchsten Von Ganzem Gemüte, BWV174 For The 2nd Day Of Whitsun89-7I. Sinfonia (Concerto)5:4989-8II. Aria (Alto): Ich Liebe Den Höchsten8:1789-9III. Recitative (Tenor): O Liebe, Welcher Keine Gleich!1:1689-10IV. Aria (Bass): Greifet Zu, Faßt Das Heil4:2989-11V. Chorale (Chorus): Herzlich Lieb Hab Ich Dich1:37Er Rufet Seinen Schafen Mit Namen, BWV175 For The 3rd Day Of Whitsun89-12I. Recitative (Tenor): Er Rufet Seinen Schafen0:2989-13II. Aria (Alto): Komm, Leite Mich4:4589-14III. Recitative (Tenor): Wo Find Ich Dich?0:3089-15IV. Aria (Tenor): Es Dünket Mich3:1989-16V. Recitative (Alto, Bass): Sie Vernahmen Aber Nicht1:0889-17VI. Aria (Bass): Öffnet Euch, Ihr Beiden Ohren4:2589-18VII. Chorale (Chorus): Nun, Werter Geist, Ich Folg Dir1:25Ich Rufe Zu Dir, Herr Jesu Christ, BWV177 For The 4th Sunday After Trinity89-19I. Chorus: Ich Ruf Zu Dir, Herr Jesu Christ7:4589-20II. Aria (Alto): Ich Bitt Noch Mehr5:2689-21III. Aria (Soprano): Verleih, Daß Ich Aus Herzensgrund5:4689-22IV. Aria (Tenor): Laß Mich Kein Lust Noch Furcht4:3689-23V. Chorale (Chorus): Ich Lieg Im Streit Und Widerstreb1:21Sacred Cantatas BWV 176 & 178-180Es Ist EinTrotzig Und Verzagt Ding, BWV176 For Trinity90-1I. Chorus: Es Ist Ein Trotzig Und Verzagt Ding2:0690-2II. Recitative (Alto): Ich Meine, Recht Verzagt0:4890-3III. Aria (Soprano): Dein Sonst Hell Beliebter Schein3:1290-4IV. Recitative (Bass): So Wundre Dich, O Meister, Nicht1:4090-5V. Aria (Alto): Ermuntert Euch2:4790-6VI. Chorale (Chorus): Auf Daß Wir Also Allzugleich1:06Wo Gott Der Herr Nicht Bei Uns Hält, BWV178 For The 8th Sunday After Trinity90-7I. Chorus: Wo Gott Der Herr Nicht Bei Uns Hält5:0890-8II. Chorale · Recitative (Alto): Was Menschenkraft2:1590-9III. Aria (Bass): Gleichwie Die Wilden Meereswellen4:0490-10IV. Chorale (Tenor): Sie Stellen Und Wie Ketzern Nach1:5190-11V. Chorale (Chorus) · Recitative (Alto, Tenor, Bass): Aufsperren Sie Den Rachen Weit1:3690-12VI. Aria (Tenor): Schweig, Schweig Nur3:3090-13VII. Chorale (Chorus): Die Feind Sind All In Deiner Hand1:49Siehe Zu, Daß Deine Gottesfurcht Nicht Heuchelei Sei, BWV179 For The 11th Sunday After Trinity90-14I. Chorus: Siehe Zu, Daß Deine Gottesfurcht2:3590-15II. Recitative (Tenor): Das Heut'ge Christentum1:0790-16III. Aria (Tenor): Falscher Heuchler Ebenbild3:1890-17IV. Recitative (Bass): Wer So Von Innen Wie Von Außen Ist1:4090-18V. Aria (Soprano): Liebster Gott, Erbarme Dich5:2490-19VI. Chorale (Chorus): Ich Armer Mensch, Ich Armer Sünder1:08Schmücke Dich, O Liebe Seele, BWV180 For The 20th Sunday After Trinity90-20I. Chorus: Schmücke Dich, O Liebe Seele5:4690-21II. Aria (Tenor): Ermuntre Dich6:1890-22III. Recitative · Arioso (Soprano): Wie Teuer Sind Des Heilgen3:0590-23IV. Recitative (Alto): Mein Herz Fühlt In Sich1:2090-24V. Aria (Soprano): Lebens Sonne, Licht Der Sinnen4:0290-25VI. Recitative (Bass): Herr, Laß An Mir Dein Treues Lieben0:5790-26VII. Chorale (Chorus): Jesu, Wahres Brot Des Lebens1:09Sacred Cantatas BWV 181-184Leichtgesinnte Flattergeister, BWV181 For Sexagesimae Sunday91-1I. Aria (Bass): Leichtgesinnte Flattergeister3:2491-2II. Recitative (Alto): O Unglückselger Stand1:4991-3III. Aria (Tenor): Der Schädlichen Dornen3:3191-4IV. Recitative (Soprano): Von Diesen Wird Die Kraft Erstickt0:4391-5V. Chorus: Laß, Höchster, Uns Zu Allen Zeiten5:10Himmelskönig, Sei Willkommen, BWV182 For Palm Sunday91-6I. Sonata (Concerto: Grave, Adagio)2:1491-7II. Chorus: Himmelskönig, Sei Willkommen3:2891-8III. Recitative (Bass): Siehe, Siehe, Ich Komme0:4091-9IV. Aria (Bass): Starkes Lieben2:5491-10V. Aria (Alto): Leget Euch Dem Heiland Unter7:2091-11VI. Aria (Tenor): Jesu, Laß Durch Wohl Und Weh4:3491-12VII. Chorale (Chorus): Jesu, Deine Passion3:2991-13VIII. Schlußchor (Chorus): So Lasset Uns Gehen In Salem4:47Sie Werden Euch In Den Bann Tun, BWV183 For The Sunday After The Ascension91-14I. Recitative (Bass): Sie Werden Euch In Den Bann Tun0:3591-15II. Aria (Tenor): Ich Fürchte Nicht Des Todes Schrecken7:0491-16III. Recitative (Alto): Ich Bin Bereit0:5591-17IV. Aria (Soprano): Höchster Tröster, Heilger Geist3:5691-18V. Chorale (Chorus): Du Bist Ein Geist, Der Lehret1:06Erwünschtes Freudenlicht, BWV184 For The 3rd Day Of WhitSun91-19I. Recitative (Tenor): Erwünschtes Freudenlicht3:2691-20II. Aria (Duet: Soprano, Alto): Gesegnete Christen8:0091-21III. Recitative (Tenor): So Freuet Euch2:0091-22IV. Aria (Tenor): Glück Und Segen Sind Bereit4:3591-23V. Chorale (Chorus): Herr, Ich Hoff Je1:0891-24VI. Chorus (Sorpano, Bass): Guter Hirte, Trost Der Deinen2:52Sacred Cantatas BWV 185-187Barmherziges Herze Der Ewigen Liebe, BWV185 For The 4th Sunday After Trinity92-1I. Aria (Duet: Soprano, Tenor): Barmherziges Herze3:1592-2II. Recitative (Alto): Ihr Herzen, Die Ihr Euch2:1592-3III. Aria (Alto): Sei Bemüht In Dieser Zeit4:0392-4IV. Recitative (Bass): Die Eigenliebe Schmeichelt Sich1:1892-5V. Aria (Bass): Das Ist Der Christen Kunst2:5792-6VI. Chorale (Chorus): Ich Ruf' Zu Dir, Herr Jesu Christ1:18Ärgre Dich, O Seele, Nicht, BWV186 For The 7th Sunday After Trinity92-7I. Chorus: Ärgre Dich, O Selle, Nicht3:1892-8II. Recitative (Bass): Die Knechtsgestalt, Die Not1:3892-9III. Aria (Bass): Bist Du, Der Mir Helfen Soll3:2092-10IV. Recitative (Tenor): Ach, Daß Ein Christ So Sehr2:3192-11V. Aria (Tenor): Mein Heiland Läßt Sich Merken3:1092-12VI. Chorale (Chorus): Ob Sichs Anließ, Als Wollt Er Nicht1:5792-13VII. Recitative (Bass): Es Ist Die Welt Die Große Wüstenei1:4892-14VIII. Aria (Soprano): Die Armen Will Der Herr Umarmen4:2692-15IX. Recitative (Alto): Nun, Mag Die Welt1:3592-16X. Aria (Duet: Soprano, Alto): Laß, Seele, Kein Leiden4:4292-17XI. Chorale (Chorus): Die Hoffnung Wart' Der Rechten Zeit2:09Es Wartet Alles Auf Dich, BWV187 For The 7th Sunday After Trinity92-18i: Chorus: Es Wartet Alles Auf Dich6:2392-19II. Recitative (Bass): Was Kreaturen Hält Das Große1:0292-20III. Aria (Alto): Du Herr, Du Krönst Allein Das Jahr4:1192-21IV. Aria (Bass): Darum Sollt Ihr Nicht Sorgen2:5192-22V. Aria (Soprano): Gott Versorget Alles Leben3:5892-23VI. Recitative (Soprano): Halt Ich Nur Fest An Ihm1:2392-24VII. Chorale (Chorus): Gott Hat Die Erde Zugericht1:44Sacred Cantatas BWV 188, 192 & 194Ich Habe Meine Zuversicht, BWV188 For The 21st Sunday After Trinity93-1I. Aria (Tenor): Ich Habe Meine Zuversicht8:5093-2II. Recitative (Bass): Gott Meint Es Gut Mit Jedermann1:5693-3III. Aria (Alto): Unerforschlich Ist Die Weise6:5093-4IV. Recitative (Soprano): Die Macht Der Welt Verlieret Sich0:3593-5V. Chorale (Chorus): Auf Meinen Lieben Gott0:57Nun Danket Alle Gott, BWV192 Occassion Unspecified93-6I. Chorus: Nun Danket Alle Gott5:2293-7II. Aria (Duet: Soprano, Bass): Der Ewig Reiche Gott3:0593-8III. Chorus: Lob, Ehr Und Preis Sei Gott2:56Höchsterwünschtes Freudenfest, BWV194 Organ Dedication, Störmthal 2.11.1723, Trinity93-9I. Chorus: Höchsterwünschtes Freudenfest5:0493-10II. Recitative (Tenor II): Unendlich Großer Gott1:1693-11III. Aria (Tenor II): Was Des Höchsten Glanz Erfüllt4:2193-12IV. Recitative (Soprano): Wie Könnte Dir1:3393-13V. Aria (Soprano): Hilf, Gott, Daß Es Uns Gelingt6:0293-14VI. Chorale (Chorus): Heilger Geist Ins Himmels Throne2:1193-15VII. Recitative (Tenor I): Ihr Heiligen, Erfreuet Euch1:2593-16VIII. Aria (Tenor I): Des Höchsten Gegenwart Allein3:3993-17IX. Recitative (Soprano, Tenor II): Kann Wohl Ein Mensch2:1393-18X. Aria (Soprano, Tenor II): O Wie Wohl Ist Uns Geschehn9:4193-19XI. Recitative (Tenor II): Wohlan Demnach, Du Heilige0:4693-20XII. Chorale (Chorus): Sprich Ja Zu Meinen Taten1:23Sacred Cantatas BWV 195-197Dem Gerechten Muß Das Licht Immer Wieder Aufgehen, BWV195 Wedding Cantata94-1I. Chorus (Soprano, Alto, Tenor Bass): Dem Gerechten Muß Das Licht4:5994-2II. Recitative (Bass): Dem Freudenlicht Gerechter Frommen1:2294-3III. Aria (Bass): Rühmet Gott Güt Und Treu!4:5494-4IV. Recitative (Soprano): Wohlan, So Knüpfet Denn Ein Band1:1394-5V. Chorus (Soprano, Alto, Tenor, Bass): Wir Kommen, Deine Heiligkeit6:4294-6VI. Chorale (Chorus): Nun Danket All Und Bringet Ehr1:11Der Herr Denket An Uns, BWV196 Wedding Cantata94-7I. Sinfonia2:0394-8II. Chorus: Der Herr Denket An Uns2:0194-9III. Aria (Soprano): Er Segnet, Die Den Herrn Fürchten2:5094-10IV. Duet (Tenor, Bass): Der Herr Segne Euch1:5094-11V. Chorus: Ihr Seid Die Gesegneten Des Herrn3:07Gott Ist Unsre Zuversicht, BWV197 Wedding Cantata94-12I. Chorus: Gott Ist Unsre Zuversicht5:3694-13II. Recitative (Bass): Gott Ist Und Bleibt Der Beste Sorger1:1794-14III. Aria (Alto): Schläfert Allen Sorgenkummer7:2394-15IV. Recitative (Bass): Drum Folget Gott0:5294-16V. Chorale (Chorus): Du Süße Lieb, Schenk Uns Deine Gunst Nach Der Trauung0:5994-17VI. Aria (Bass): O Du Angenehmes Paar4:5894-18VII. Recitative (Soprano): So Wie Es Gott Mit Dir Getreu1:4594-19VIII. Aria (Soprano): Vergnügen Und Lust3:1694-20IX. Recitative (Bass): Und Dieser Frohe Lebenslauf0:5194-21X. Chorale (Chorus): Sing, Bet Und Geh Auf Gottes Wegen0:53Sacred Cantatas BWV 198-200Laß, Fürstin, Laß Noch Einen Strahl, BWV198 Funeral Ode95-1I. Chorus: Laß, Fürstin, Laß Noch Einen Strahl5:3795-2II. Recitative (Soprano): Dein Sachsen, Dein Bestürztes Meisen1:2395-3III. Aria (Soprano): Verstummt, Verstummt3:3295-4IV. Recitative (Alto): Der Glocken Bebendes Getön0:5095-5V. Aria (Alto): Wie Starb Die Heldin So Vergnügt6:5295-6VI. Recitative (Tenor): Ihr Leben Ließ Die Kunst Zu Sterben1:0595-7VII. Chorus: An Dir, Du Vorbild Großer Frauen2:1395-8VIII. Aria (Tenor): Der Ewigkeit Saphirnes Haus4:1395-9IX. Recitative (Bass): Was Wunder Ists?1:3995-10X. Arioso (Bass): Dein Torgau0:4095-11XI. Chorus: Doch Königin! Du Stirbest Nicht4:49Mein Herze Schwimmt Im Blut, BWV199 For The 11th Sunday After Trinity95-12I. Recitative (Soprano): Mein Herze Schwimmt Im Blut2:0895-13II. Aria (Soprano): Stumme Seufzer, Stille Klagen6:5195-14IIII. Recitative (Soprano): Doch Gott Muß Mir Gnädig sein1:0495-15IV. Aria (Soprano): Tief Gebückt Und Voller Reue9:0095-16V. Recitative (Soprano): Auf Diese Schmerzensreu0:1495-17VI. Chorale (Soprano): Ich, Dein Betrübtes Kind1:5795-18VII. Recitative (Soprano): Ich Lege Mich In Diese Wunden0:4895-19VIII. Aria (Soprano): Wie Freudig Ist Mein Herz2:26Bekennen Will Ich Seinen Namen, BWV20095-20Aria (Alto): Bekennen Will Ich Seinen Namen3:38Mass In B Minor BWV 232 BeginningI Missa - Kyrie96-1I. Chorus: Kyrie Eleison (A 5)10:1096-2II. Duet (Soprano I & II): Christe Eleison5:2196-3III. Chorus: Kyrie Eleison (A 4)4:16I. Missa - Gloria96-4IV. Chorus: Gloria In Excelsis Deo (A 5)1:4896-5V. Chorus: Et In Terra Pax (A 5)6:4196-6VI. Aria (Soprano II): Laudamus Te4:1796-7VII. Chorus: Gratua Agimus (A 4)2:3296-8VIII. Duet (Soprano I, Tenor): Domine Deus5:2896-9IX. Chorus: Qui Tollis (A 4, Soloists)2:3096-10X. Arua (Alto): Qui Sedes Ad Dexteram Patris4:1496-11XI. Aria (Bass II): Quoniam Tu Solus Sanctus4:3796-12XII. Chorus: Cum Sancto Spiritu (A 5)3:48Mass In B Minor BWV 232 ConclusionII. Symbolum Nicenum (Credo)97-1I. Chorus: Credo In Unum Deum (A 5)2:4197-2II. Chorus: Patrem Omnipotentem (A 4)2:0197-3III. Duet (Soprano I, Alto): Et In Unum Dominum4:5897-4IV. Chorus (A 5) & Soloists: Et Incarnatus Est2:3697-5V. Chorus: Cruxifixus (A 4)3:1797-6VI. Chorus (A 5) & Soloists: Et Resurrexit3:5197-7VII. Aria (Bass): Et In Spiritum Sanctum4:5697-8VIII. Chorus: Confiteor Unum Baptisma (A 5)5:0497-9IX. Chorus: Et Expecto (A 5)2:04III. Sanctus97-10Chorus: Sanctus (A 6)5:17IV. Osanna - Benedictus - Osanna - Agnus Dei - Donna Nobis Pacem97-11I. Chorus: Osanna (A 8)2:3497-12II. Aria (Tenor): Benedictus4:1697-13III. Chorus: Osanna (A 8)2:3397-14IV. Aria (Soprano II): Agnus Dei4:5897-15V. Chorus: Dona Nobis Pacem (A 4)3:05Masses BWV 233 & 234Mass In F, BWV23398-1I. Kyrie5:0398-2II. Gloria6:3798-3III. Domine Deus3:3098-4IV. Qui Tollis4:5798-5V. Quoniam4:4298-6VI. Cum Sancto Spiritu3:06Mass In A, BWV23498-7I. Kyrie7:0398-8II. Gloria5:3898-9III. Domine Deus6:1398-10IV. Qui Tollis6:5298-11V. Quoniam3:3798-12VI. Cum Sancto Spiritu3:25Masses BWV 235 & 236Mass In G Minor, BWV23599-1I. Kyrie7:1999-2II. Gloria4:0799-3III. Gratias3:3599-4IV. Domine Fili5:4199-5V. Qui Tollis4:0799-6VI. Cum Sancto Spiritu5:43Mass In G, BWV23699-7I. Kyrie4:0999-8II. Gloria5:0099-9III. Gratias5:1399-10IV. Domine Deus4:1699-11V. Quoniam4:5299-12VI. Cum Sancto Spiritu4:36Sacred Songs And Arias I From Musikalisches Gesangbuch G.C. Schemelli BWV 439-507100-1Morning Songs: I. Kommt, Seelen, Dieser Tag, II. Die Güldne Sonne, Voll Freud Und Wonne3:06100-2About The Earthly Pain And The Succession Of Christ: I. Vergiß Mein Nicht, Mein Allerliebster Gott, II. Erwürgtes Lamm, Das Die Verwahrten Siegel2:24100-3About The Resurrection: I. Auf, Auf Mein Herz Mit Freunden, II. Jesus, Unser Trost Und Leben, III. Kommt Wieder Aus Der Finstern Gruft2:21100-4About The Mission Of The Holy Spirit: I. Brunnquell Aller Güter, II. Gott, Wie Groß Ist Deine Güte3:26100-5About Praying And True Christianity: I. Prest, II. Andante3:09100-6About Love For Jesus: I. Jesu, Meines Herzens Freund, II. Beschränkt, Ihr Weisen Dieser Welt, III. Seelenweide, Meine Freude, IV. Nur Mein Jesus Ist Mein Leben5:30100-7Evening Songs: I. Der Lieben Sonne Licht Und Pracht, II. Der Tag Ist Hin, Die Sonne Gehet Nieder, III. Der Tag Mit Seinem Lichte4:07100-8About The Suffering And Death Of Jesus Christ: I. Jesus, Deine Liebeswunden, II. Lasset Uns Mit Jesu Ziehen, III. Die Bittre Leidenszeit, IV. Sei Gegrüßet, Jesu Gütig, V. O Du Liebe Meiner Liebe, VI. Mein Jesu, Was Für Seelenweh, VII. So Gehst Du Nun, Mein Jesu, Hin, VIII. Selig, Wer An Jesum Denkt9:47100-9On Good Friday: I. So Gibst Du Nun, Mein Jesu, II. Brich Entzwei, Mein Armes Herze, III. Es Ist Vollbracht! Vergiß Ja Nicht4:41100-10About Repentance And The Grace Of God: I. Wo Ist Mein Schäflein, Das Ich Liebe, II. Herr, Nicht Schicke Deine Rache, III. Steh' Ich Bei Meinem Gott3:04Sacred Songs And Arias II From Musikalisches Gesangbuch G.C. Schemelli BWV 439-507101-1About The Song Of Praise: I. Dir, Dir, Jehova, Will Ich Singen1:32101-2About The Denial Of The World And Of Himself: I. Nicht So Traurig, Nicht So Sehr, II. O Liebe Seele, Zieh Die Sinnen, III. Beglückter Stand Getreuer Seelen, IV. Es Glänzet Der Christen Inwendiges Leben3:48101-3About The Justification: I. Jesu, Meines Glaubens Zier, II. Eins Ist Not!, III. Mein Jesu, Dem Die Seraphinen2:58101-4About The Love Of God: I. Jesus Ist Das Schönste Licht, II. Vergiß Mein Nicht, III. Seelenbräutigam, Jesu, Gotteslamm, IV. Liebes Herz, Bedenke Doch4:28101-5About The Birth Of Jesus Christ: I. Ich Freue Mich In Dir, II. Ermuntre Dich, Mein Schwacher Geist, III. Ihr Gestirn, Ihr Hohen Lüfte, IV. O Jesulein Süß, V. Ich Steh An Deiner Krippe Hier5:56101-6Comforting Jesus Songs: I. Was Bist Du Doch, O Seele, So Betrübet, II. Auf, Auf! Die Rechte Zeit Ist Hier, III. Ich Lass Dich Nicht, IV. Liebster Immanuel, Herzog Der Frommen, V. Jesu, Jesu, Du Bist Mein, VI. Ich Liebe Jesum Alle Stund6:24101-7Songs About Dying And Hope In God: I. Liebster Gott, Wann Werd' Ich Sterben?, II. O Finstre Nacht, Wann Wirst Du Doch Vergehen?, III. Komm, Süßer Tod, Komm Sel'ge Ruh!, IV. Ich Bin Ja, Herr, In Deiner Macht, V. Es Ist Nun Aus Mit Meinem Leben, VI. Meines Lebens Letzter Zeit, VII. Liebster Herr Jesu, Wo Bleibst Du So Lange?, VIII. Ach, Daß Nicht Die Letzte Stunde, IX. O Wie Selig Seid Ihr Doch, Ihr Frommen, X. Kein Stündlein Geht Dahin, XI. So Wünsch Ich Mir Zu Guter Letzt11:56101-8About Patience And Calm: I. Ich Halte Treulich Still, II. Gib Dich Zufrieden Und Sei Stille2:45Motets BWV 225-230Singet Dem Herrn Ein Neues Lied, BWV225 Motet For Double Chorus102-1Choruses I & II5:13102-2Chorale: Chorus II - Aria: Chorus I4:23102-3Choruses I & II3:40Der Geist Hilft5 Unser Schwachheit Auf, BWV226 Motet For Souble Chorus102-4Choruses I & II3:48102-5Alla Breve: Unison Choruses2:27102-6Chorale: Choruses I & II1:41Jesu, Meine Freude, BWV 227 Motet For Five Voices102-7Chorale: Verse 11:19102-8Es Ist Nun Nichts Verdammliches An Denen2:55102-9Chorale: Verse 21:15102-10Denn Das Gesetz Des Geistes1:00102-11Chorale: Verse 32:36102-12Ihr Aber Seid Nicht Fleischlich2:52102-13Chorale: Verse 41:15102-14So Aber Christus In Euch Ist2:01102-15Chorale: Verse 54:13102-16So Nun Der Geist1:33102-17Chorale: Verse 61:22Fürchte Dich Nicht, Ich Bin Bei Dir, BWV228 Motet For Double Chorus102-18Choruses I & II8:44Komm, Jesu, Komm, BWV229 Motet For Double Chorus102-19Choruses I & II8:52Lobet Den Herrn, Alle Heiden, BWV230 Motet For Double Chorus102-20Lobet Den Herrn, Alle Heiden7:01Oster Oratorium BWV 249, Magnificat BWV 243Oster-Oratorium, BWV249103-1I. Sinfonia4:13103-2II. Adagio4:12103-3III. Duet & Chorus: Kommt, Eilet Und Laufet5:00103-4IV. Recitative: O Kalter Männer Sinn0:59103-5V. Aria (Soprano): Seele, Deine Spezereien11:11103-6VI. Recitative: Hier Ist Die Gruft0:43103-7VII. Aria (Tenor): Sanfte Soll Mein Todeskummer6:34103-8VIII. Recitative: Indessen Seufzen Wir0:56103-9IX. Aria (Soprano, Alto): Saget, Saget Mir Geschwinde7:01103-10X. Recitative: Wir Sind erfreut0:38103-11XI. Chorus: Preis Und Dank2:34103-12XII. Chorale: Es Hat Mit Uns Nun Keine Not0:44Magnificat In D, BWV243 Second Version103-13I. Magnificat Anima Mea (Chorus)3:20103-14II. Et Exultavit Spiritus Meus (Soprano)2:33103-15III. Quia Respexit Humilitatem (Soprano)2:56103-16IV. Omnes Generationes (Chorus)1:33103-17V. Quia Fecit Mihi Magna (Bass)1:57103-18VI. Et Misericordia (Alto, Tenor)4:02103-19VII. Fecit Potentiam (Chorus)2:05103-20VIII. Deposuit Potentes (Tenor)2:07103-21IX. Esurientes (Alto)2:58103-22X. Suscepit Israel Puerum Suum (Soprano, Alto)2:00103-23XI. Sicut Locutus Est (Chorus)1:46103-24XII. Gloria (Chorus)2:13Secular Cantatas BWV 36C, 203 & 209Schwinget Freudig Euch Empor, BWV36C Cantata For The Birthday Of A Teacher104-1I. Chorus: Schwingt Freudig Euch Empor4:00104-2II. Recitative (Tenor): Ein Herz, In Zärtlichem Empfinden1:20104-3III. Aria (Tenor): Die Liebe Führt Mit Sanften Schritten4:51104-4IV. Recitative (Bass): Du Bist Es Ja, O Hochverdienter Mann1:01104-5V. Aria (Bass): Der Tag, Der Dich Vordem Gebar3:11104-6VI. Recitative (Soprano): Nur Dieses Einzge Sorgen Wir0:38104-7VII. Aria (Soprano): Auch Mit Gedämpften, Schwachen Stimmen6:49104-8VIII. Recitative (Tenor): Bei Solchen Freudenvollen Stunden0:27104-9IX. Chorus: Wie Die Jahre Sich Verneuen3:26Non Sa Che Sia Dolore, BWV209104-10I. Sinfonia6:44104-11II. Recitative (Soprano): Non Sa Che Sia Dolore1:03104-12III. Aria (Soprano): Parti Pur E Con Dolore8:55104-13IV. Recitative (Soprano): Tue Saver Al Tempo E L'età Contrasta0:35104-14V. Aria (Soprano): Ricetti Gramezza E Pavento5:04Amore Traditore, BWV203104-15I. Aria (Bass): Amore Traditore6:34104-16II. Recitative (Bass): Voglio Provar0:48104-17III. Aria (Bass): Chi In Amore Ha Nemica La Sorte6:41Secular Cantata BWV 201Geschwinde, Ihr Wirbelnden Winde, BWV201 Der Streit Zwischen Phoebus Und Pan, Dramma Per Musica105-1I. Chorus: Geschwinde, Ihr Wirbelnden Winde5:19105-2II. Recitative (Phoebus, Pan, Momus): Und Du Bist Doch So Unverschämt Und Frei1:52105-3III. Aria (Momus): Patron, Das Macht Der Wind!3:01105-4IV. Recitative (Mercurius, Phoebus, Pan): Was Braucht Ihr Euch Zu Zanken?0:58105-5V. Aria (Phoebus): Mit Verlangen Drück Ich Deine Zarten Wangen8:24105-6VI. Recitative (Momus, Pan): Pan, Rücke Deine Kehle Nun0:20105-7VII. Aria (Pan): Zu Tanze, Zu Sprunge5:42105-8VIII. Recitative (Mercurius, Tmolus): Nunmehro Richter Her!0:47105-9IX. Aria (Tmolus): Phoebus, Deine Melodei4:50105-10X. Recitative (Pan, Midas): Komm, Midas, Sage Su Nun An0:49105-11XI. Aria (Midas): Pan Ist Meister, Laßt Ihn Gehn!5:50105-12XII. Recitative (Momus, Mercurius, Tmolus, Phoebus, Midas, Pan): Wie, Midas, Bist Du Toll?1:09105-13XIII. Aria (Mercurius): Aufgeblasne Hitze, Aber Wenig Grütze6:36105-14XIV. Recitative (Momus): Du Guter Midas, Geh Nun Hin1:21105-15XV. Chorus: Labt Das Herz, Ihr Holden Saiten2:44Wedding Cantatas BWV 202 & 210Weichet Nur, Betrübte Schatten, BWV202 Wedding Cantata106-1I. Aria: Weichet Nur, Betrübte Schatten7:15106-2II. Recitative: Die Welt Wird Wieder Neu0:31106-3III. Aria: Phoebus Eilt Mit Schnellen Pferden3:36106-4IV. Recitative: Drum Sucht Auch Amor Sein Vergnügen0:48106-5V. Aria: Wenn Die Frühlingslüfte Streichen2:57106-6VI. Recitative: Und Dieses Ist Das Glück0:48106-7VII. Aria: Sich Üben Im Lieben4:42106-8VIII. Recitative: So Sei Das Band Der Keuschen Liebe0:28106-9IX. Gavotte: Sehet In Zufriedenheit1:42O Holder Tag, Erwünschte Zeit, BWV210 Wedding Cantata106-10I. Recitative: O Holder Tag, Erwünschte Zeit1:07106-11II. Aria: Spielet, Ihr Beseelten Lieder7:12106-12III. Recitative: Doch, Haltet Ein, Ihr Muntern Saiten1:13106-13IV. Aria: Ruhet Hie, Matte Töne7:18106-14V. Recitative: So Glaubt Man Denn2:11106-15VI. Aria. Schweigt, Ihr Flöten4:44106-16VII. Recitative: Was Luft? Was Grab?1:39106-17VIII. Aria: Großer Gönner, Dein Vergnügen3:32106-18IX. Recitative: Hochteurer Mann1:37106-19X. Aria: Seid Beglückt, Edle Beide6:23Secular Cantatas BWV 204 & 208Was Mit Behagt, Ist Nur Die Muntre Jagd, BWV208 To Mark The Birthday Of Prince Christian Of Saxony-Weißenfels107-1I. Recitative (Soprano): Was Mir Behagt, Ist Nur Die Muntre Jagd0:48107-2II. Aria (Soprano): Jagen Ist Die Lust2:20107-3III. Recitative (Tenor): Wie, Schönste Göttin?1:13107-4IV. Aria (Tenor): Willst Du Dich Nicht Mehr Ergetzen5:11107-5V. Recitative (Soprano): Ich Liebe Dich Zwar Noch!2:42107-6VI. Recitative (Bass): Ich, Der Ich Sonst Ein Gott0:40107-7VII. Aria (Bass): Ein Fürst Ist Seines Landes Pan3:09107-8VIII. Recitative (Soprano): Soll Dann Der Pales Opfer Hier Das Letzte Sein0:52107-9IX. Aria (Soprano): Schafe Können Sicher Weiden4:56107-10X. Recitative (Soprano): So Stimmt Mit Ein0:14107-11XI. Chorus (Soprano I & II, Tenor, Bass): Lebe, Sonne Dieser Erden2:57107-12XII. Duet (Soprano/Tenor): Entzücket Uns Beide, Ihr Strahlen Der Freude2:00107-13XIII. Aria (Soprano): Weil Die Wollenreichen Herden1:38107-14XIV. Aria (Bass): Ihr Felder Und Auen2:52107-15XV. Chorus (Soprano I & II, Tenor, Bass): Ihr Lieblichste Blicke, Ihr Freudige Stunden4:12Ich Bin In Mir Vergnügt, BWV204 Cantata Concerning Pleasure107-16I. Recitative (Soprano): Ich Bin In Mir Vergnügt1:59107-17II. Aria (Soprano): Ruhig Und In Sich Zufrieden6:54107-18III. Recitative (Soprano): Ihr Seelen, Die Ihr Außer Euch Stets In Der Irre Lauft2:04107-19IV. Aria (Soprano): Die Schätzbarkeit Der Weiten Erden5:16107-20V. Recitative (Soprano): Schwer Ist Es Zwar, Viel Eitles Zu Besitzen2:10107-21VI. Aria (Soprano): Meine Seele Sei Vergnügt7:29107-22VII. Recitative (Soprano): Ein Edler Mensch Ist Perlenmuscheln Gleich2:15107-23VIII. Aria (Soprano): Himmlische Vergnügsamkeit5:57Secular Cantatas BWV 205 & 207Zerreisset, Zersprenget, Zertrümmert Die Gruft, BWV205 Der Zufriedengestellte Äolus · Dramma Per Musica108-1I. Chor Der Winde: Zerreißet, Zersprenget, Zertrümmert Die Gruft6:10108-2II. Recitative (Bass): Ja! Ja! Die Stunden Sind Nunmehro Nah1:39108-3III. Aria (Bass): Wie Will Ich Lustig Lachen4:09108-4IV. Recitative (Tenor): Gefürcht'ter Äolus0:51108-5V. Aria (Tenor): Frische Schatten, Meine Freude3:32108-6VI. Recitative (Bass): Beinahe Wirst Du Mich Bewegen0:32108-7VII. Aria (Alto): Können Nicht Die Roten Wangen3:44108-8VIII. Recitative (Soprano, Alto): So Sollst Du, Grimmger Äolus0:50108-9IX. Aria (Soprano): Angenehmer Zephyrus3:56108-10X. Recitative: Mein Äolus, Ach! Störe Nicht Die Fröhlichkeiten2:18108-11XI. Aria (Bass): Zurücke, Zurücke, Geflügelten Winde3:23108-12XII. Recitative (Soprano, Alto, Tenor): Was Lust! Was Freude! Welch Vergnügen!1:39108-13XIII. Duet (Alto, Tenor): Zweig Und Äste3:17108-14XIV. Recitative (Soprano): Ja! Ja! Ich Lad Euch Selbst Zu Dieser Feier Ein0:44108-15XV. Chorus: Vivat! August, August Vivat!2:56Vereinigte Zwietracht Der Wechselnden Saiten, BWV207 Dramma Per Musica108-16I. Chorus: Vereinigte Zwietracht Der Wechselnden Saiten4:28108-17II. Recitative (Tenor): Wen Treibt Ein Edler Trieb2:03108-18III. Aria (Tenor): Zieht Euren Fuß Nur Nicht Zurücke3:59108-19IV. Recitative (Soprano, Bass): Dem Nur Allein Soll Meine Wohnung Offen Sein2:24108-20V. Duet (Soprano, Bass): Den Soll Mein Lorbeer Schützend Decken6:18108-21V. Ritornello0:57108-22VI. Recitative (Alto): Es Ist Kein Leeres Wort1:49108-23VII. Aria (Alto): Ätzet Dieses Andenken4:53108-24VIII. Recitative (Soprano, Alto, Tenor, Bass): Ihr Schläfrigen, Herbei!3:14108-25IX. Chorus (Soprano, Alto, Tenor, Bass): Kortte Lebe, Kortte Blühe!3:27Secular Cantatas BWV 206 & 215Schleicht, Spielende Wellen, BWV206 Dramma Per Musica · To Mark The Birthday Of August III, King Of Poland And Elector Of Saxony109-1I. Chorus: Schleichet, Spielende Wellen6:56109-2II. Recitative (Bass): O Glückliche Veränderung!1:49109-3III. Aria (Bass): Schleuß Des Janustempels Türen4:38109-4IV. Recitative (Tenor): So Recht! Beglückter Weichselstrom!1:59109-5V. Aria (Tenor): Jede Woge Meiner Wellen7:02109-6VI. Recitative (Alto): Ich Nehm Zugleich An Deiner Freude Teil1:12109-7VII. Aria (Alto): Reis Von Habsburgs Hohem Stamme6:19109-8VIII. Recitative (Soprano): Verzeiht, Bemooste Häupter Starker Ströme2:17109-9IX. Aria (Soprano): Hört Doch! Der Sanften Flöten Chor3:57109-10X. Recitative (Soprano, Alto, Tenor, Bass): Ich Muß, Ich Will Gehorsam Sein1:45109-11XI. Chorus: Die Himmliche Vorsicht Der Ewigen Güte3:23Preise Dein Glück, Gesegnetes Sachsen, BWV215 Dramma Per Musica · To Mark The Anniverary Of The Election Of August III As King Of Poland On 5 October 1734109-12I. Chorus: Preise Dein Glücke, Gesegnetes Sachsen7:41109-13II. Recitative (Tenor): Wie Können Wir, Großmächtigster August1:13109-14III. Aria (Tenor): Freilich Trotzt Augustus' Name7:25109-15IV. Recitative (Bass): Was Hat Dich Sonst, Sarmatien, Bewogen1:56109-16V. Aria (Bass): Rase Nur, Verwegner Schwarm3:45109-17VI. Recitative (Soprano): Ja, Ja! Gott Ist Uns Noch Mit Seiner Hülfe Nah1:19109-18VII. AQria (Soprano): Durch Die Von Eifer Entflammeten Waffen3:54109-19VIII. Recitative (Soprano, Tenor, Bass): Laß Doch, O Teurer Landesvater, Zu2:40109-20IX. Chorus: Stifer Der Reiche, Beherrscher Der Kronen2:05Secular Cantatas BWV 211 & 212Schweigt Stille, Plaudert Nicht, BWV211 Coffee Cantata110-1I. Recitative (Tenor): Schweigt Stille, Plaudert Nicht0:44110-2II. Aria (Bass): Hat Man Nicht Mit Seinen Kindern3:21110-3III. Recitative (Bass, Soprano): Du Böses Kind, Du Loses Mädchen0:42110-4IV. Aria (Soprano): Ei! Wie Schmeckt Der Kaffee Süße4:51110-5V. Recitative (Bass, Soprano): Wenn Du Mir Nicht Den Kaffee Läßt1:12110-6VI. Aria (Bass): Mädchen, Die Von Harten Sinnen3:06110-7VII. Recitative (Bass, Soprano): Nun Folge, Was Dein Vater Spricht0:54110-8VIII. Aria (Soprano): Heute Noch, Heute Noch!7:25110-9IX. Recitative (Tenor): Nun Geht Und Sucht Der Alte Schlendrian0:47110-10X. Chorus & Terzetto: Die Katze Läßt Das Mausen Nicht5:46Mer Hahn En Neue Oberkeet, BWV212 Peasant Cantata110-11I. Sinfonia2:34110-12II. Aria & Duet (Soprano, Bass): Mer Hahn En Neue Oberkeet0:38110-13III. Recitative (Bass, Soprano): Nu, Mieke, Gib Dein Guschel Immer Her0:56110-14IV. Aria (Soprano): Ach, Es Schmeckt Doch Gar Zu Gut1:00110-15V. Recitative (Bass): Der Herr Ist Gut0:21110-16VI. Aria (Bass): Ach, Herr Schösser, Geht Nicht Gar Zu Schlimm1:13110-17VII. Recitative (Soprano): Es Bleibt Dabei0:25110-18VIII. Aria (Soprano): Unser Trefflicher Lieber Kammerherr2:06110-19IX. Recitative (Bass, Soprano): Er Hilft Uns Allen, Alt Und Jung0:29110-20X. Aria (Soprano): Das Ist Galant1:17110-21XI. Recitative (Bass): Und Unsre Gnädge Frau0:42110-22XII. Aria (Bass): Fünfzig Taler Bares Geld0:47110-23XIII. Recitative (Soprano): Im Ernst Ein Wort!0:31110-24XIV. Aria (Soprano): Klein-Zschocher Müsse So Hart Und Süße6:53110-25XV. Recitative (Bass): Das Ist Zu Klug Vor Dich0:19110-26XVI. Aria (Bass): Es Nehme Zehntausend Dukaten0:38110-27XVII. Recitative (Soprano): Das Klingt Zu Liederlich0:22110-28XVIII. Aria (Soprano): Gib, Schöne, Viele Söhne0:48110-29XIX. Recitative (Bass): Du Hast Wohl Recht0:19110-30XX. Aria (Bass): Dein Wachstum Sei Feste6:24110-31XXI. Recitative (Soprano, Bass): Und Damit Sei Es Auch Genug0:19110-32XXII. Aria (Soprano): Und Daß Ihr's Alle Wißt0:51110-33XXIII. Recitative (Bass, Soprano): Mein Schatz, Erraten!0:34110-34XXIV. Chorus & Duet (Soprano, Bass): Wir Gehn Nun1:25Secular Cantatas BWV 213 & 214Laßt Uns Sorgen, Laßt Uns Wachen, BWV213 Hercules At The Crossroads · Dramma Per Musica111-1I. Chorus (Soprano, Alto, Tenor, Bass): Laßt Uns Sorgen, Laßt Uns wachen4:54111-2II. Recitative (Alto): Und Wo? Wo Ist Die Rechte Bahn0:53111-3III. Aria (Soprano): Schlafe, Mein Liebster7:54111-4IV. Recitative (Soprano, Tenor): Auf! Folge Meiner Bahn1:25111-5V. Aria (Alto): Treues Echo, Treues Echo6:02111-6VI. Recitative (Tenor): Mein Hoffnungsvoller Held!1:24111-7VII. Aria (Tenor): Auf Meinen Flügeln Sollst Du Schweben4:42111-8VIII. Recitative (Tenor): Die Weiche Wollust Locket Zwar0:44111-9IX. Aria (Alto): Ich Will Dich Nicht Hören, Ich Will Dich Nicht Wissen4:21111-10X. Recitative (Alto, Tenor): Geliebte Tugend, Du Allein Sollst1:04111-11XI. Aria (Duet: Alto, Tenor): Ich Bin Deine/Du Bist Meine8:02111-12XII. Recitative (Bass): Schaut, Götter, Dieses Ist Ein Bild Von Sachsens Churprinz1:26111-13XIII. Chorus (Soprano, Alto, Tenor, Bass): Lust Der Völker, Lust Der Deinen2:33Tönet, Ihr Pauken! Erschallet, Trompeten!, BWV214 Dramma Per Musica For The Birthday Of The Queen Of Poland And Princess-Elector Of Saxony, 1733111-14I. Chorus (Soprano, Alto, Tenor, Bass): Tönet, Ihr Pauken! Erschallet, Trompeten7:37111-15II. Recitative (Tenor): Heut Ist Der Tag, Wo Jeder Sich Erfreuen Mag1:15111-16III. Aria (Soprano): Blast Die Wohlgegriffnen Flöten3:52111-17IV. Recitative (Soprano): Mein Knallendes Metall0:31111-18V. Aria (Alto): Fromme Musen!3:34111-19VI. Recitative (Alto): Unsre Königin im Lande, Die Der Himmel Zu Uns Sandte1:07111-20VII. Aria (Bass): Kron Und Preis Gekrönter Damen4:44111-21VIII. Recitative (Bass): So Dringe In Das Weite Erdenrund1:08111-22IX. Chorus (Soprano, Alto, Tenor, Bass): Blühet Ihr Linden In Sachsen1:49Matthäus-Passion BWV 244 Part 1 Beginning112-1Chorus: Kommt, Ihr Töchter, Helft Mir Klagen8:50112-2Recitative (Evangelist, Jesus): Da Jesus Diese Rede Vollendet Hatte0:55112-3Chorale (Chorus): Herzliebster Jesu, Was Hast Du Verbrochen0:58112-4Recitative: Da Versammelten Sich Die Hohepriester (Evangelist) - Ja Nicht Auf Das Fest (Chorus) - Da Nun Jesus War Zu Bethanïen (Evangelist) - Wozu Dienet Dieser Unrat? (Chorus) - Da Das Jesus Merkete (Evangelist, Jesus)3:37112-5Recitative (Alto): Du Lieber Heiland Du0:56112-6Aria (Alto): Buß Und Reu4:46112-7Recitative (Evangelist, Judas): Da Ging Hin Der Zwölfen Einer0:39112-8Aria (Soprano): Blute Nur, Du Liebes Herz!4:44112-9Recitative: Aber Am Ersten Tage Der Süßen Brot (Evangelist) - Wo Willst Du, Daß Wir Dir Bereiten (Chorus) - Er Sprach: 'Gehet Hin In Die Stadt' (Evangelist, Jesus) - Und Sie Wurden Sehr Betrübt (Evangelist) - Herr, Bin Ich's (Chorus)2:31112-10Chorale (Chorus): Ich Bin's, Ich Sollte Büßen0:56112-11Recitative (Evangelist, Jesus): Er Antwortete Und Sprach4:07112-12Recitative (Soprano): Wiewohl Mein Herz In Tränen Schwimmt1:24112-13Aria (Soprano): Ich Will Dir Mein Herze Schenken4:10112-14Recitative (Evangelist, Jesus): Und Da Sie Den Lobgesang Gesprochen Hatten1:16112-15Chorale (Chorus): Erkenne Mich, Mein Hüter1:13112-16Recitative (Evangelist, Jesus, Petrus): Petrus Aber Antwortete Und Sprach Zu Ihm1:24112-17Chorale (Chorus): Ich Will Hier Bei Dir Stehen1:15112-18Recitative (Evangelist, Jesus): Da Kam Jesus Mit Ihnen Zu Einem Hofe2:01112-19Recitative With Chorale (Tenor, Chorus): O Schmerz! Hier Zittert Das Gequälte Herz1:43112-20Aria With Chorus (Tenor, Chorus): Ich Will Bei Meinem Jesu Wachen5:30112-21Recitative (Evangelist, Jesus): Und Ging Hin Ein Wenig0:56112-22Recitative (Bass): Der Heiland Fällt Vor Seinem Vater Nieder1:13112-23Aria (Bass): Gerne Will Ich Mich Bequemen4:24Matthäus-Passion BWV 244 Part 1 Conclusion · Part 2 BeginningPart 1113-1Recitative (Evangelist, Jesus): Und Er Kam Zu Seinen Jüngern1:40113-2Chorale (Chorus): Was Mein Gott Will, Das G'scheh' allzeit1:16113-3Recitative (Evangelist, Jesus, Judas): Und Er Kam Und Fand Sie Aber Schlafend2:35113-4Aria With Chorus: So Ist Mein Jesus Nun Gefangen (Soprano, Alto, Chorus) - Sind Blitze, Sind Donner In Wolken Verschwunden (Chorus)5:11113-5Recitative (Evangelist, Jesus): Und Siehe, Einer Aus Denen3:06113-6Chorale (Chorus): O Mensch, Bewein Dein Sünden Groß6:19Part 2113-7Aria With Chorus (Alto, Chorus): Ach! Nun Ist Mein Jesus Hin!4:16113-8Recitative (Evangelist): Die Aber Jesum Gegriffen Hatten1:08113-9Chorale (Chorus): Mir Hat Die Welt Trüglich Gericht'0:52113-10Recitative (Evangelist, Caiaphas, Wirnesses I & II): Und Wiewohl Viel Falsche Zeugen Herzutraten1:14113-11Recitative (Tenor): Mein Jesus Schweigt Zu Falschen Lügen Stille0:50113-12Aria (Tenor): Geduld!4:08113-13Recitative: Und Der Hohepriester Antwortete Und Sprach Zu Ihm (Evangelist, Caiaphas, Jesus) - Er Ist Des Todes Schuldig! (Chorus) - Da Speieten Sie Aus (Evangelist) - Weissage Uns, Christe (Chorus)2:29113-14Chorale (Chorus): Wer Hat Dich So Geschlagen1:03113-15Recitative: Petrus Aber Saß Draußen Im (Evangelist, Damsels I & II, Petrus) - Wahrlich, Du Bist Auch Einer Von Denen (Chorus) - Da Hub Er An, Sich Zu Verfluchen (Evangelist, Petrus)2:37113-16Aria (Alto): Erbarme Dich7:09113-17Chorale (Chorus): Bin Ich Gleich Von Dir Gewichen1:08113-18Recitative: Des Morgens Aber Hielten Alle (Evangelist, Judas) - Was Gehet Uns Das (Chorus) - Und Er Warf Die Silberlinge In Den Tempel (Evangelist, Priest I & II)1:51113-19Aria (Bass): Gebt Mir Meinen Jesum Wieder3:20113-20Recitative (Evangelist, Pilatus, Jesus): Sie Hielten Aber Einen Rat2:18113-21Chorale (Chorus): Befiel Du Deine Wege1:17Matthäus-Passion BWV 244 Part 2 Conclusion114-1Recitative And Chorus: Auf Das Fest Aber Hatte Der Landpfleger Gewohnheit (Evangelist, Pilatus, Wife Of Pilatus, Chorus) - Chorus: Laß Ihn Kreuzigen! (Chorus)2:40114-2Chorale (Chorus): Wie Wunderbarlich Ist Doch Diese Strafe!1:01114-3Recitative (Evangelist, Pilatus): Der Landpfleger Sagte0:18114-4Recitative (Soprano): Er Hat Uns Allen Wohlgetan1:20114-5Aria (Soprano): Aus Liebe Will Mein Heiland Sterben4:21114-6Recitative: Sie Schrieen Aber Noch Mehr (Evangelist) - Laß Ihn Kreuzigen! (Chorus) - Da Aber Pilatus Sahe (Evangelist, Pilatus) - Sein Blut Komme Über (Chorus) - Da Gab Er Ihnen Barrabam Los (Evangelist)2:09114-7Recitative (Alto): Erbarm Es Gott!0:58114-8Aria (Alto): Können Tränen Meiner Wangen6:47114-9Recitative: Da Namen Die Kriegsknechte (Evangelist) - Gegrüßet Seist Du, Jüdenköning (Chorus) - Und Speieten Ihn An (Evangelist)1:05114-10Chorale (Chorus): O Haupt Voll Blut Und Wunden2:47114-11Recitative (Evangelist): Und Da Sie Ihn Verspottet Hatten0:49114-12Recitative (Bass): Ja Freilich Will In Uns Das Fleisch Un Blut0:42114-13Aria (Bass): Komm, Süßes Kreuz6:04114-14Recitative: Und Da Sie An Die Stätte Kamen (Evangelist) - Der Du Den Tempel Gottes Zerbricht (Chorus) - Desgleichen Auch Die Hohenpriester (Evangelist) - Andern Hat Er Geholfen (Chorus) - Desgleichen Schmäheten Ihn Auch Die Mörder (Evangelist)3:55114-15Recitative (Alto): Ach Golgotha!1:40114-16Aria With Chorus (Alto, Chorus): Sehet, Jesus Hat Die Hand3:41114-17Recitative: Und Von Der Sechsten Stunde An (Evangelist, Jesus) - Der Rufet Dem Elias (Chorus) - Und Bald Lief Einer Unter Ihnen (Evangelist) - Halt! Laß Sehen (Chorus) - Aber Jesus Schriee Abermal Laut (Evangelist)2:43114-18Chorale (Chorus): Wenn Ich Einmal Soll Scheiden1:53114-19Recitative: Und Siehe Da, Der Vorhang Im Tempel Zerriß (Evangelist) - Wahrlich, Dieser Ist Gottes Sohn Gewesen (Chorus) - Und Es Waren Viel Weiber Da (Evangelist)2:56114-20Recitative (Bass): Am Abend, Da Es Kühle War2:14114-21Aria (Bass): Mache Dich, Mein Herze, Rein7:17114-22Recitative: Und Joseph Nahm Den Leib (Evangelist) - Herr, Wir Haben Gedacht (Chorus) - Pilatus Sprach Zu Ihnen (Evangelist, Pilatus)2:52114-23Recitative With Chorus (Soprano, Alto, Tenor, Bass, Chorus): Nun Ist Der Herr Zur Ruh Gebracht2:33114-24Chorus: Wir Setzen Uns Mit Tränen Nieder6:53Johannes-Passion BWV 245 Part 1 · Part 2 BeginningPart 1115-1Chorus: Herr, Unser Herrscher7:53115-2Recitative (Evangelist, Jesus): Jesus Ging Mit Seinen Jüngern1:09115-3Chorus: Jesum Von Nazareth0:10115-4Recitative (Evangelist, Jesus): Jesus Spricht Zu Ihnen0:30115-5Chorus: Jesum Von Nazareth!0:10115-6Recitative (Evangelist, Jesus): Jesus Antwortete0:22115-7Chorale (Chorus): O Grosse Liebe0:53115-8Recitative (Evangelist, Jesus): Auf Dass Das Wort Erfullet Wurde1:11115-9Chorale (Chorus): Dein Will Gescheh, Herr Gott, Zugleich0:56115-10Recitative (Evangelist): Die Schar Aber Und Der Oberhauptmann0:46115-11Aria (Alto): Von Den Stricken Meiner Sunden4:53115-12Recitative (Evangelist): Simon Petrus Aber Folgete Jesus Nach0:18115-13Aria (Soprano): Ich Folge Dir Gleichfalls3:47115-14Recitative (Evangelist, Maiden, Petrus, Jesus, Servant): Derselbige Junger War Dem Hohepriester Bekannt3:03115-15Chorale (Chorus): Wer Hat Dich So Geschlagen1:34115-16Recitative (Evangelist): Und Hannas Sandte Ihn Gebunden0:17115-17Chorus: Bist Du Nicht Seiner Junger Einer0:24115-18Recitative (Evangelist, Petrus, Servant): Er Leugnete Und Sprach1:17115-19Aria (Tenor): Ach, Mein Sinn2:28115-20Chorale (Chorus): Petrus, Der Nicht Denkt Zuruck1:03Part 2115-21Chorale (Chorus): Christus, Der Uns Selig Macht1:04115-22Recitative (Evangelist, Pilatus): Da Fuhreten Sie Jesum0:33115-23Chorus: Ware Dieser Nicht Ein Ubeltater0:59115-24Recitative (Evangelist, Pilatus): Da Sprach Pilatus Zu Ihnen0:08115-25Chorus: Wir Durfen Niemand Toten0:37115-26Recitative (Evangelist, Pilatus, Jesus): Auf Dass Erfullet Wurde Das Wort Jesu1:42115-27Chorale (Chorus): Ach Grosser Konig1:33115-28Recitative (Evangelist, Jesus, Pilatus): Da Sprach Pilatus Zu Ihm1:16115-29Chorus: Nicht Diesen, Diesen Nicht0:13115-30Recitative (Evangelist): Barrabas Aber War Ein Morder0:28115-31Arioso (Bass): Betrachte, Meine Seel2:02115-32Aria (Tenor): Erwage, Wie Sein Blutgebarbter Rucken8:01Johannes-Passion BWV 245 Part 2 Conclusion116-1Recitative (Evangelist): Und Die Kriegsknechte Flochten0:09116-2Chorus: Sei Gegrusset, Lieber Judenkonig0:36116-3Recitative (Evangelist, Pilatus): Und Gaben Ihm Backenstreiche0:55116-4Chorus: Kreuzige, Kreuzige0:53116-5Recitative (Evangelist, Pilatus): Pilatus Sprach Zu Ihnen0:09116-6Chorus: Wir Haben Ein Gesetz1:18116-7Recitative (Evangelist, Pilatus, Jesus): Da Pilatus Das Wort Horete1:18116-8Chorale (Chorus): Durch Dein Gefangnis, Gottes Sohn0:49116-9Die Juden Aber Schrieen (Evangelist) - Lasset Du Diesen Los (Chorus)1:17116-10Recitative (Evangelist, Pilatus): Da Pilatus Das Wort Hörete0:33116-11Chorus: Weg, Weg Mit Dem0:58116-12Recitative (Evangelist, Pilatus): Spricht Pilatus Zu Ihnen0:06116-13Chorus: Wir Haben Keinen Konig0:14116-14Recitative (Evangelist): Da Überantwortete Er Ihnen0:49116-15Aria (Bass, Chorus): Eilt, Ihr Angefochtnen Seelen3:57116-16Recitative (Evangelist): Allda Kreuzigten Sie Ihn1:05116-17Chorus: Schreibe Nicht: Der Juden Konig0:36116-18Recitative (Evangelist, Pilatus): Pilatus Antwortet0:14116-19Chorale (Chorus): In Meines Herzens Grunde1:00116-20Recitative (Evangelist): Die Kriegsknechte Aber0:32116-21Chorus: Lasset Uns Den Nicht Zerteilen1:24116-22Recitative (Evangelist, Jesus): Und Von Stund An1:30116-23Chorale (Chorus): Er Nahm Alles Wohl In Acht1:09116-24Recitative (Evangelist, Jesus): Und Von Stund An1:30116-25Aria (Alto): Es Ist Vollbracht4:52116-26Recitative (Evangelist): Und Neiget Sein Haupt Und Verschied0:26116-27Aria (Bass, Chorus): Mein Teurer Heiland5:20116-28Recitative (Evangelist): Und Siehe Da, Der Vorhang0:28116-29Arioso (Tenor): Mein Herz, In Dem Die Ganze Welt0:42116-30Aria (Soprano): Zerfliesse, Mein Herze6:04116-31Recitative (Evangelist): Die Juden Aber2:13116-32Chorale (Chorus): O Hilf, Christe, Gottes Sohn1:01116-33Recitative (Evangelist): Darnach Bat Pilatum1:55116-34Chorus: Ruht Wohl, Ihr Heiligen Gebeine7:09116-35Chorale (Chorus): Ach Herr, Lass Dein Lieb Engelein1:49Weihnachts-Oratorium BWV 248 Parts 1 & 2Part 1 For Christmas Day117-1Chorus: Jauchzet, Frohlocket!7:59117-2Recitative (Evangelist): Es Begab Sich Aber Zu Der Zeit1:17117-3Recitative (Alto): Nun Wird Mein Liebster Bräutigam0:59117-4Aria (Alto): Bereite Dich, Zion5:53117-5Chorale (Chorus): Wie Soll Ich Dich Empfangen1:23117-6Recitative (Evangelist): Und Sie Gebar Ihren Ersten Sohn0:23117-7Chorale (Chorus-Soprano): Er Ist Auf Erden Kommen Arm - Recitative (Bass): Wer Kann Die Liebe Recht Erhöh'n3:40117-8Aria (Bass): Grosser Herr Und Starker König5:12117-9Chorale (Chorus): Ach Mein Herzliebes Jesulein1:14Part 2 For The Second Day Of Christmas117-10Sinfonia6:37117-11Recitative (Evangelist): Und Es Waren Hirten In Derselben Gegend0:50117-12Chorale (Chorus): Brich An, O Schönes Morgenlicht1:21117-13Recitative (Evangelist, Angel): Und Der Engel Sprach Zu Ihnen: Fürchtet Euch Nicht0:51117-14Recitative (Bass): Was Gott Dem Abraham Verheißen0:47117-15Aria (Tenor): Frohe Hirten, Eilt, Ach Eilet3:27117-16Recitative (Evangelist): Und Das Habt Zum Zeichen0:23117-17Chorale (Chorus): Schaut Hin, Dort Liegt Im Finstern Stall0:46117-18Recitative (Bass): So Geht Denn Hin, Ihr Hirten, Geht0:57117-19Aria (Alto): Schlafe, Mein Liebster9:55117-20Recitative (Evangelist): Und Alsobald War Da Bei Dem Engel0:13117-21Chorus: Ehre Sei Gott In Der Höhe3:01117-22Recitative (Bass): So Recht, Ihr Engel, Jauchzt Und Singet0:27117-23Chorale: Wir Singen Dir In Deinem Heer1:18Weihnachts-Oratorium BWV 248 Parts 3 & 4Part 3 For The Third Day Of Christmas118-1Chorus: Herrscher Des Himmels2:16118-2Recitative (Evangelist): Und Da Die Engel Von Ihnen Gen Himmel Fuhren0:09118-3Chorus: Lasset Und Nun Gehen0:53118-4Recitative (Bass): Er Hat Sein Volk Getröst'0:45118-5Chorale (Chorus): Dies Hat Er Alles Uns Getan0:53118-6Duet (Soprano, Bass): Herr, Dein Mitleid8:09118-7Recitative (Evangelist): Und Sie Kamen Eilend1:34118-8Aria (Alto): Schließe, Mein Herze, Dies Selige Wunder5:19118-9Recitative (Alto): Ja, Ja, Mein Herz Soll Es Bewahren0:27118-10Chorale (Chorus): Ich Will Dich Mit Fleiß Bewahren1:09118-11Recitative (Evangelist): Und Die Hirten Kehrten Wieder Um0:27118-12Chorale (Chorus): Seid Froh Dieweil0:55118-13Chorus, Da Capo: Herrscher Des Himmels2:16Part 4 For New Year's Day118-14Chorus: Falle Mit Danken, Fallt Mit Loben5:39118-15Recitative (Evangelist): Und Da Acht Tage Um Waren0:33118-16Recitative (Bass): Immanuel, O Süßes Wort - Chorale (Chorus-Soprano): Jesu, Du Mein Liebstes Leben2:39118-17Aria (Soprano, Soprano-Echo): Flößt, Mein Heiland5:35118-18Recitative (Bass): Wohlan, Dein Name Soll Allein - Chorale (Chorus-Soprano): Jesu, Meine Freud Und Wonne1:40118-19Aria (Tenor): Ich Will Nur Dir Zu Ehren Leben5:38118-20Chorale (Chorus): Jesus Richte Mein Beginnen2:34Weihnachts-Oratorium BWV 248 Parts 5 & 6Part 5 For The First Sunday After New Year's Day119-1Chorus: Ehre Sei Dir, Gott, Gesungen7:00119-2Recitative (Evangelist): Da Jesus Geboren War Zu Bethlehem0:25119-3Chorus: Wo Ist Der Neugeborne König - Recitative (Soprano): Sucht Ihn In Meiner Brust2:15119-4Chorale (Chorus): Dein Glanz All Finsternis Verzehrt1:00119-5Aria (Bass): Erleucht Auch Meine Finstre Sinnen4:47119-6Recitative (Evangelist): Da Das Der König Herodes Hörte0:11119-7Recitative (Alto): Warum Wollt Ihr Erschrecken0:35119-8Recitative (Evangelist): Und Ließ Versammeln Alle Hohepriester1:27119-9Trio (Soprano, Alto, Tenor): Ach, Wenn Wird Die Zeit Erscheinen5:55119-10Recitative (Alto): Mein Liebster Herrschet Schon0:30119-11Chorale (Chorus): Zwar Ist Solche Herzensstube1:04Part 6 For Epiphany119-12Chorus: Herr, Wenn Die Stolzen Feinde Schnauben5:22119-13Recitative: Da Berief Herodes Die Weisen Heimlich (Evangelist) - Ziehet Hin Und Forschet Fleißig (Herodes)0:49119-14Recitative (Soprano): Du Falscher, Suche Nur Den Herrn Zu Fällen1:02119-15Aria (Soprano): Nur Ein Wink Von Seinen Händen3:42119-16Recitative (Evangelist): Als Sie Nun Den König Gehöret Hatten1:22119-17Chorale (Chorus): Ich Steh An Deiner Krippen Hier1:18119-18Recitative (Evangelist): Und Gott Befahl Ihnen Im Traum0:22119-19Recitative (Evangelist): So Geht! Genug Mein Schatz2:07119-20Aria (Tenor): Nun Möget Ihr Stolzen Feinde Schrecken5:01119-21Recitative (Soprano, Alto, Tenor, Bass): Was Will Der Hölle Schrecken Nun0:53119-22Chorale (Chorus): Nun Seid Ihr Wohl Gerochen3:22Himmelfahrts-Oratorium BWV 11 · Ich Habe Genug BWV 82A · Sanctus BWV238Himmelfahrts-Oratorium, BWV11 'Lobet Gott In Seinen Reichen'120-1Chorus: Lobet Gott In Seinen Reichen4:37120-2Recitative (Tenor): Der Herr Jesus Hub Seine Hände0:30120-3Recitative (Bass): Ach, Jesu, Ist Dein Abschied1:04120-4Aria (Alto): Ach, Bleibe Doch6:41120-5Recitative (Tenor): Und Ward Aufgehoben Zusehends0:33120-6Chorale (Chorus): Nun Lieget Alles Unter Dir1:06120-7Recitative (Tenor, Bass): Und Da Sie Ihm Nachsahen1:15120-8Recitative (Alto): Ach Ja! So Komme Bald Zurück0:35120-9Recitative (Tenor): Sie Aber Beteten An0:42120-10Aria (Soprano): Jesu, Deine Gnadenblicke6:30120-11Chorale (Chorus): Wann Soll Es Doch Geschehen4:20Ich Habe Genug, BWV82A120-12Aria (Soprano): Ich Habe Genug7:56120-13Recitative (Soprano): Ich Habe Genug!1:19120-14Aria (Soprano): Schlummert Ein, Ihr Matten Augen9:42120-15Recitative (Soprano): Mein Gott! Wann Kommt Das Schöne Nun0:44120-16Aria (Soprano): Ich Freue Mich Auf Meinen Tod3:52Sanctus In D BWV238120-17Chorus: Sanctus, Sanctus, Sanctus2:55Tilge, Höchster, Meine Sünden BWV 1083 After Pergolesi's Stabat Mater · Motets BWV 188, 200 & 231Tilge, Höchster, Meine Sünden (Psalm 51), BWV1083121-1Aria (Duet:Soprano, Alto): Tilge, Höchster, Meine Sünden3:35121-2Aria (Soprano): Ist Mein Herz In Missetaten2:31121-3Aria (Duet: Soprano, Alto): Missetaten, Die Mich Drücken1:58121-4Aria (Alto): Dich Erzürnt Mein Tun Und Lassen2:18121-5Aria (Duet: Soprano, Alto): Wer Wird Seine Schuld Verneinen2:06121-6Aria (Duet: Soprano, Alto): Sieh! Ich Bin In Sünd Empfangen0:37121-7Aria (Soprano): Sieh, Du Willst Die Wahrheit3:43121-8Aria (Alto): Wasche Mich Doch Rein2:25121-9Aria (Duet: Soprano, Alto): Laß Mich Freud Und Wonne Spüren2:14121-10Aria (Duet: Soprano, Alto): Schaue Nicht Auf Meine Sünden5:23121-11Aria (Alto): Öffne Lippen, Mund Und Seele3:05121-12Aria (Duet: Soprano, Alto): Denn Du Willst Kein Opfer2:25121-13Aria (Duet: Soprano, Alto): Laß Dein Zion Blühend Dauern2:15121-14Aria (Duet: Soprano, Alto): Amen2:05O Jesu Christ, Mein's Lebens Licht, BWV118121-15Chorale (Chorus): O Jesu Christ Mein's Lebens Licht7:46Bekennen Will Ich Seinen Namen, BWV200121-16Aria (Alto): Bekennen Will Ich Seinen Namen3:39Sei Lob Und Preis Mit Ehren, BWV231121-17Chorus: Sei Lob Und Preis Mit Ehren5:05Chorales I From The Breitkopf Edition 389 Choräle122-1Schwing' Dich Auf Zu Deinem Gott (Cantata, BWV40)1:42122-2Seelenbräutigam, BWV4090:43122-3Singen Wir Aus Herzensgrund (Cantata, BWV187)2:17122-4Singt Dem Herrn Ein Neues Lied, BWV4110:54122-5Sollt' Ich Meinem Gott Nicht Singen, BWV4131:14122-6Straf Mich Nicht In Deinem Zorn (Cantata, BWV115)1:33122-7Valet Will Ich Dir Geben, BWV4150:50122-8Vater Unser Im Himmelreich (Cantata, BWV90)0:44122-9Vater Unser Im Himmelreich (Cantata, BWV102)1:25122-10Von Gott Will Ich Nicht Lassen, BWV4170:55122-11Von Gott Will Ich Nicht Lassen, BWV4180:58122-12Von Gott Will Ich Nicht Lassen, BWV4190:59122-13Von Gott Will Ich Nicht Lassen (Unfinished Cantata)0:50122-14Von Gott Will Ich Nicht Lassen, (Cantata, BWV73)0:52122-15Wär' Gott Nicht Mit Uns Diese Zeit (Cantata, BWV14)1:44122-16Warum Betrübst Du Dich, Mein Herz, BWV4200:42122-17Warum Betrübst Du Dich, Mein Herz (Cantata, BWV47)0:40122-18Warum Sollt' Ich Mich Denn Grämen, BWV4220:51122-19Was Betrübst Du Dich, Mein Herze, BWV4231:07122-20Was Bist Du Doch, O Seele, So Betrübet, BWV4240:52122-21Was Gott Thut, Das Ist Wohlgethan, (Cantata, BWV144)0:51122-22Was Gott Thut, Das Ist Wohlgethan, (Cantata, BWV99)0:51122-23Was Mein Gott Will, Das G'scheh' Allzeit (Matthäus-Passion, BWV244)1:00122-24Was Mein Gott Will, Das G'scheh' Allzeit (Cantata, BWV144)1:12122-25Was Mein Gott Will, Das G'scheh' Allzeit (Cantata, BWV72)1:04122-26Was Mein Gott Will, Das G'scheh' Allzeit (Cantata, BWV111)1:09122-27Was Mein Gott Will, Das G'scheh' Allzeit (Cantata, BWV65)2:22122-28Was Mein Gott Will, Das G'scheh' Allzeit (Cantata, BWV92)1:04122-29Was Mein Gott Will, Das G'scheh' Allzeit (Cantata, BWV103)1:51122-30Was Willst Du Dich, O Meine Seele, BWV4251:30122-31Weltlich Ehr' Und Zeitlich Gut, BWV4260:58122-32Wenn Ich In Angst Und Noth, BWV4270:47122-33Wenn Mein Stündlein Vorhanden Ist, BWV4301:01122-34Wenn Wir In Höchsten Nöthen Sein, BWV4311:13122-35Wenn Wir In Höchsten Nöthen Sein, BWV4320:58122-36Werde Munter, Mein Gemüthe (Cantata, BWV116)0:52122-37Werde Munter, Mein Gemüthe (Matthäus-Passion)0:54122-38Werde Munter, Mein Gemüthe, BWV3600:59122-39Werde Munter, Mein Gemüthe (Cantata, BWV154)0:54122-40Wer Gott Vertraut, Hat Wohlgebaut, BWV4331:33122-41Wer Nur Den Lieben Gott Läßt Walten, BWV4340:58122-42Wer Nur Den Lieben Gott Läßt Walten (Cantata, BWV88)0:51122-43Wer Nur Den Lieben Gott Läßt Walten (Cantata, BWV197)0:45122-44Wer Nur Den Lieben Gott Läßt Walten (Cantata, BWV179)0:54122-45Wer Nur Den Lieben Gott Läßt Walten (Cantata, BWV166)0:49122-46Wer Nur Den Lieben Gott Läßt Walten (Cantata, BWV84)0:46122-47Wie Bist Du, Seele, In Mir So Gar Betrübt, BWV4350:44122-48Wie Schön Leuchtet Der Morgenstern (Cantata, BWV36)1:06122-49Wo Gott Der Herr Nicht Bei Uns Hält, BWV2580:50122-50Wo Gott Der Herr Nicht Bei Uns Hält (Cantata, BWV178)1:35122-51Wo Gott Der Herr Nicht Bei Uns Hält, BWV2560:50122-52Wo Gott Der Herr Nicht Bei Uns Hält (Cantata, BWV114)0:53122-53Wo Gott Der Herr Nicht Bei Uns Hält, BWV2570:53122-54Wo Gott Zum Haus Nicht Gibt Sein' Gunst, BWV4380:28Chorales II From The Breitkopf Edition 389 Choräle123-1Jesu, Meine Freude (Cantata, BWV64)1:10123-2Jesu, Meines Herzens Freud', BWV3610:56123-3Jesu, Nun Sei Gepreiset, BWV3621:47123-4Jesu, Meine Zuversicht, BWV3650:53123-5Ihr Gestirn', Ihr Hohlen Lüfte, BWV3660:39123-6In Allen Meinen Thaten, BWV3670:45123-7Ist Gott Mein Schild Und Helfersmann1:45123-8Keinen Hat Gott Verlassen, BWV3690:57123-9Komm, Gott Schöpfer, Heiliger Geist, BWV3700:34123-10Komm, Heiliger Geist, Herre Gott, BWV2261:30123-11Komm, Jesu Komm, BWV2291:20123-12Kommt Her Zu Mir, Spricht Gottes Sohn (Cantata, BWV74)1:30123-13Kommt Her Zu Mir, Spricht Gottes Sohn (Cantata, BWV108)0:48123-14Lass, O Herr, Dein Ohr Sich Neigen, BWV3721:12123-15Liebster Jesu, Wir Sind Hier, BWV3730:55123-16Liebster Immanuel, Herzog der Frommen (Cantata, BWV123)1:58123-17Lobe Den Herren, Den Mächtigen König Der Ehren (Cantata, BWV57)1:17123-18Lobet Den Herren, Denn Er Ist Sehr Freundlich, BWV3741:10123-19Mach's Mit Mir, Gott, Nach Deiner Güt', BWV3770:49123-20Mach's Mit Mir, Gott, Nach Deiner Güt' (Cantata, BWV139)1:24123-21Mein' Augen Schließ' Ich Jetzt, BWV3781:09123-22Meinem Jesum Lass' Ich Nicht, Jesus, BWV3790:53123-23Meinem Jesum Lass' Ich Nicht, BWV3800:53123-24Unknown Track (Not Listed In The Table Of Contents)123-25Meinem Jesum Lass' Ich Nicht (Cantata, BWV124)0:52123-26Meines Lebens Letzte Zeit, BWV3811:04123-27Mit Fried' Und Freud' Ich Fahr' Dahin, BWV3820:52123-28Mit Fried' Und Freud' Ich Fahr' Dahin (Cantata, BWV83)0:47123-29Mit Fried' Und Freud' Ich Fahr' Dahin (Cantata, BWV125)0:49123-30Mitten Wir Im Leben Sind, BWV3832:15123-31Nicht So Traurig, Nicht So Sehr, BWV3840:47123-32Nun Bitten Wir Den Heiligen Geist, BWV3850:56123-33Nun Bitten Wir Den Heiligen Geist (Cantata, BWV169)1:06123-34Nun Danket Alle Gott, BWV3860:54123-35Nun Freut Euch, Gottes Kinder All, BWV3870:35123-36Nun Lasst Uns Gott, Dem Herren (Cantata, BWV165)1:02123-37Nun Lob', Mein Seel', Den Herren, BWV3891:27123-38Nun Lob', Mein Seel', Den Herren, BWV3901:03123-39Nun Preiset Alle Gottes Barmherzigkeit, BWV3910:46123-40Nun Sich Der Tag Geendet Hat, BWV3960:34123-41O Ewigkeit, Du Donnerwort, BWV3972:34123-42O Ewigkeit, Du Donnerwort (Cantata, BWV20)1:53123-43O Gott, Du Frommer Gott, BWV3981:44123-44O Gott, Du Frommer Gott (Cantatas, BWV64, 94)2:16123-45O Gott, Du Frommer Gott, BWV3990:59123-46O Herre Gott, Dein Göttlich Wort (Cantata, BWV184)2:04123-47O Welt, Ich Muss Dich Lassen, BWV3920:56123-48O Wie Selig Seid Ihr Doch, Ihr Frommen, BWV4050:48123-49O Wie Selig Seid Ihr Doch, Ihr Frommen, BWV4060:46123-50Schmücke Dich, O Liebe Seele (Cantata, BWV180)2:20Chorales III124-1Als Der Gütige Gott, BWV2641:04124-2Das Neugeborne Kindelein (Cantata, BWV122)1:09124-3Der Tag, Der Ist So Freudenreich, BWV2941:08124-4Ermuntre Dich, Mein Schwacher Geist (Christmas Oratorio, BWV248)1:52124-5Freuet Euch, Ihr Christen Alle (Cantata, BWV40)2:03124-6Für Freuden Laßt Uns Springen, BWV3130:48124-7Gelobet Seist Du, Jesu Christ, BWV3140:41124-8Gelobet Seist Du, Jesu Christ (Cantata, BWV64)0:40124-9Gelobet Seist Du, Jesu Christ (Christmas Oratorio)0:43124-10Gott Des Himmels Und Der Erden (Christmas Oratorio)0:47124-11Gottes Sohn Ist Kommen, BWV3180:47124-12Herzlich Thut Mich Verlangen (Christmas Oratorio)1:04124-13Ich Freue Mich In Dir (Cantata, BWV133)1:47124-14In Dich Hab' ich Gehoffet, Herr (Christmas Oratorio)1:32124-15In Dulci Jubilo, BWV3680:52124-16Lobt Gott, Ihr Christen Allzugleich, BWV3750:39124-17Lobt Gott, Ihr Christen Allzugleich (Cantata, BWV151)0:37124-18Nun Freut Euch, Lieben Christen G'mein, BWV3880:52124-19Nun Freut Euch, Lieben Christen G'mein, BWV3070:49124-20Nun Freut Euch, Lieben Christen G'mein (Christmas Oratorio)0:57124-21Nun Komm, Der Heiden Heiland (Cantata, BWV36)1:01124-22Nun Komm, Der Heiden Heiland (Cantata, BWV62)0:34124-23Puer Natus In Bethlehem (Cantata, BWV65)0:58124-24Uns Ist Ein Kindlein Heut' Gebor'n, BWV4140:51124-25Vom Himmel Hoch, Da Komm Ich Her (Christmas Oratorio)1:02124-26Wachet Auf, Ruft Uns Die Stimme (Cantata, BWV140)2:57124-27Warum Sollt' Ich Mich Denn Grämen (Christmas Oratorio)1:29124-28Wir Christenleut' (Cantata, BWV40)1:21124-29Wir Christenleut' (Cantata, BWV110)0:43124-30Wir Christenleut' (Christmas Oratorio)0:42124-31Kyrie, Gott Vater In Ewigkeit, BWV3713:04124-32Allein Gott In Der Höh' Sei Ehr', BWV2600:50124-33Wir Glauben All' An Einen Gott, BWV4372:13124-34Heilig, Heilig, BWV3251:08124-35Sanctus, Sanctus Dominus Deus Sabaoth, BWV3251:11124-36Dies Sind Die Heil'gen Zehn Gebot', BWV2980:41124-37Meine Seele Erhebt Den Herren (Cantata, BWV10)0:48124-38Vater Unser Im Himmelreich, BWV4160:49124-39Vater Unser Im Himmelreich (Johannes-Passion, BWV245)0:54124-40Verleih' Uns Frieden Gnädiglich (Cantata BWV126)1:54124-41Verleih' Uns Frieden Gnädiglich (Cantata, BWV42)1:56Chorales IV125-1Ach Gott, Vom Himmel Sieh' Darein (Cantata, BWV2)1:46125-2Ach Gott, Wie Manches Herzeleid (Cantata, BWV153)1:22125-3Als Jesus Christus In Der Nacht, BWV2651:29125-4An Wasserflüssen Babylon, BWV2671:21125-5Christ Ist Erstanden, BWV2761:49125-6Christ Ist Erstanden (Cantata, BWV66)0:41125-7Christ Lag In Todesbanden, BWV2771:09125-8Christ Lag In Todesbanden, BWV2781:05125-9Christ Lag In Todesbanden, BWV2790:59125-10Christ Lag In Todesbanden (Cantata, BWV4)1:07125-11Christus, Der Uns Selig Macht, BWV2831:08125-12Christus, Der Uns Selig Macht (Johannes-Passion, BWV245)1:07125-13Christus, Der Uns Selig Macht (Johannes-Passion)1:04125-14Christus Ist Erstanden, Hat Überwunden, BWV2840:59125-15Da Der Herr Christ Zu Tische Saß, BWV2850:51125-16Des Heil'gen Geistes Reiche Gnad', BWV2050:45125-17Du Grosser Schmerzensmann, BWV3001:00125-18Ermuntre Dich, Mein Schwacher Geist (Cantata, BWV43)1:36125-19Erschienen Ist Der Herrlich' Tag (Cantata, BWV67)0:36125-20Erschienen Ist Der Herrlich' Tag (Cantata, BWV1450:34125-21Erstanden Ist Der Heil'ge Christ, BWV3060:36125-22Es Ist Das Heil Uns Kommen Her (Cantata, BWV9)0:53125-23Es Ist Das Heil Uns Kommen Her (Cantata, BWV155)0:53125-24Gott Sei Gelobet Und Gebenedeiet, BWV3221:39125-25Herzlich Lieb Hab' Ich Dich, O Herr (Johannes-Passion)1:38125-26Herzlich Thut Mich Verlangen (Matthäus-Passion, BWV244)1:05125-27Herzlich Thut Mich Verlangen (Matthäus-Passion)1:58125-28Herzliebster Jesu, Was Hast Du Verbrochen (Matthäus-Passion)0:39125-29Herzliebster Jesu, Was Hast Du Verbrochen (Matthäus-Passion)0:52125-30Herzliebster Jesu, Was Hast Du Verbrochen (Johannes-Passion)0:47125-31Herzliebster Jesu, Was Hast Du Verbrochen (Johannes-Passion)1:19125-32Heut' Ist, O Mensch, Ein Großer Trauertag, BWV3410:37125-33Heut' Triumphieret Gottes Sohn, BWV3420:44125-34Jesu Leiden, Pein Und Tod (Johannes-Passion)1:05125-35Jesu Leiden, Pein Und Tod (Johannes-Passion)1:06125-36Jesu Leiden, Pein Und Tod (Cantata, BWV159)1:01125-37Jesus Christus, Unser Heiland, BWV3630:50125-38Jesus Christus, Unser Heiland, BWV3640:45125-39Jesus, Meine Zuversicht (Cantata, BWV145)0:46125-40In Dich Hab' Ich Gehoffet, Herr (Matthäus-Passion)0:51125-41Mach's Mit Mir, Gott, Nach Deiner Güt' (Johannes-Passion)0:50125-42Meinen Jesum Lass' Ich Nicht (Matthäus-Passion)0:51125-43O Herzensangst, O Bangigkeit Und Zagen, BWV4000:42125-44O Lamm Gottes, Unschuldig, BWV4011:03125-45O Mensch, Bewein' Dein Sünde Groß, BWV4021:48125-46O Mensch, Schau Jesum Christum an, BWV4030:50125-47O Traurigkeit, O Herzeleid, BWV4040:41125-48O Welt, Ich Muß Dich Lassen, BWV3940:46125-49O Welt, Ich Muß Dich Lassen (Matthäus-Passion)0:52125-50O Welt, Ich Muß Dich Lassen (Johannes-Passion)1:32125-51O Welt, Ich Muß Dich Lassen (Matthäus-Passion)0:54125-52O Wir Armen Sünder, BWV4071:38125-53Schaut, Ihr Sünder, BWV4080:43125-54Sei Gegrüßet, Jesu Gütig, BWV4100:55125-55So Giebst Du Nun, Mein Jesu, Gute Nacht, BWV4120:56125-56Valet Will Ich Dir Geben (Johannes-Passion)0:56125-57Werde Munter, Mein Gemüthe (Matthäus-Passion)0:55Chorales V126-1Ach Bleib Bei Uns, Herr Jesu Christ, BWV2530:45126-2Ach Gott, Erhör' Mein Seufzen!, BWV2540:46126-3Ach Gott Und Herr, BWV2550:36126-4Ach Gott, Vom Himmel Sieh' Darein (Cantata, BWV153)0:52126-5Ach Gott, Wie Manches Herzeleid (Cantata, BWV3)1:06126-6Ach, Was Soll Ich Sünder Machen, BWV2590:48126-7Allein Zu Dir, Herr Jesu Christ, BWV2611:28126-8Alle Menschen Müssen Sterben (Cantata, BWV162)1:10126-9Auf, Auf, Mein Herz, Und Du Mein Ganzer Sinn, BWV2680:45126-10Auf Meinen Lieben Gott (Cantata, BWV188)0:50126-11Auf Meinen Lieben Gott (Cantata, BWV89)1:15126-12Auf Meinen Lieben Gott (Cantata, BWV5)0:50126-13Auf Meinen Lieben Gott (Cantata, BWV148)0:45126-14Aus Meines Herzens Grunde, BWV2690:48126-15Aus Tiefer Noth Schrei Ich Zu Dir (Cantata, BWV38)2:13126-16Befiehl Du Deine Wege, BWV2721:03126-17Christ, Der Du Bist Der Helle Tag, BWV2730:40126-18Christe, Der Du Bist Tag Und Licht, BWV2741:06126-19Christe, Du Beistand Deiner Kreuzgemeinde, BWV2751:07126-20Christ, Unser Herr, Zum Jordan Kam, BWV2801:11126-21Christ, Unser Herr, Zum Jordan Kam (Cantata, BWV176)2:07126-22Christus, Der Ist Mein Leben, BWV2810:35126-23Christus, Der Ist Mein Leben, BWV2820:43126-24Danket Dem Herrn, Denn Er Ist Freundlich, BWV2860:30126-25Dank Sei Gott In Der Höhe, BWV2870:56126-26Das Alte Jahr Vergangen Ist, BWV2880:55126-27Das Walt' Gott Vater Und Gott Sohn, BWV2900:35126-28Das Walt' Mein Gott, BWV2911:26126-29Den Vater Dort Oben, BWV2920:58126-30Der Du Bist Drei In Einigkeit, BWV2930:35126-31Die Nacht Ist Kommen, BWV2960:50126-32Die Sonn' Hat Sich Mit Ihrem Glanz, BWV2970:51126-33Dir, Dir, Jehova, Will Ich Singen, BWV2990:48126-34Du Friedefürst, Herr Jesu Christ (Cantata, BWV67)0:47126-35Du Friedefürst, Herr Jesu Christ (Cantata, BWV116)0:51126-36Du, O Schönes Weltgebäude, BWV3011:10126-37Du, O Schönes Weltgebäude (Cantata, BWV56)1:34126-38Durch Adams Fall Ist Ganz Verderbt (Cantata, BWV18)1:56126-39Ein' Feste Burg Ist Unser Gott, BWV3020:55126-40Ein' Feste Burg Ist Unser Gott, BWV3030:56126-41Ein' Feste Burg Ist Unser Gott (Cantata, BWV80)1:01126-42Eins Ist Noth, Ach Herr, Dies Eine, BWV3040:52126-43Erbarm' Dich Mein, O Herre Gott, BWV3051:19126-44Erhalt' Uns, Herr, Bei Deinem Wort (Cantata, BWV6)1:01126-45Es Ist Das Heil Uns Kommen Her (Cantata, BWV117)1:41126-46Es Ist Genug, So Nimm, Herr, Meinen Geist (Cantata, BWV60)2:14126-47Es Spricht Der Unweisen Mund Wohl, BWV3080:55126-48Es Steh'n Vor Gottes Throne, BWV3091:09126-49Es Wird Schier Der Letzte Tag Herkommen, BWV3100:41126-50Es Woll' Uns Gott Gnädig Sein1:40126-51Freu Dich Sehr, O Meine Seel (Cantata, BWV70)1:42126-52Freu Dich Sehr, O Meine Seele (Cantata, BWV39)1:59126-53Gib Dich Zufrieden Und Sei Stille, BWV3151:07Chorales VI127-1Gott, Der Du Selber Bist Das Licht, BWV3161:01127-2Gott Hat Das Evangelium, BWV3190:43127-3Gott Lebet Noch, BWV3200:59127-4Gottlob, Es Geht Nunmehr Zu Ende, BWV3210:49127-5Helft Mir, Gott's Güte Preisen (Cantata, BWV16)0:58127-6Helft Mir, Gott's Güte Preisen (Cantata, BWV183)1:46127-7Herr Christ, Der Einig' Gott's Sohn (Cantata, BWV164)1:34127-8Herr Christ, Der Einig' Gott's Sohn (Cantata, BWV96)0:53127-9Herr Gott, Dich Loben Alle Wir, BWV3260:35127-10Herr Gott, Dich Loben Alle Wir, BWV3260:30127-11Herr Gott, Dich Loben Alle Wir, BWV3286:44127-12Herr Gott, Dich Loben Wir (Cantata, BWV119)0:50127-13Herr Gott, Dich Loben Wir (Cantata, BWV120)1:00127-14Herr, Ich Denk' An Jene Zeit, BWV3290:53127-15Herr, Ich Habe Mißgehandelt, BWV3300:55127-16Herr Jesu Christ, Dich Zu Uns Wend', BWV3320:34127-17Herr Jesu Christ, Du Hast Bereit't, BWV3330:55127-18Herr Jesu Christ, Du Höchstes Gut, BWV3341:01127-19Herr Jesu Christ, Du Höchstes Gut (Cantata, BWV168)0:57127-20Herr Jesu Christ, Du Höchstes Gut (Cantata, BWV48)1:51127-21Herr Jesu Christ, Mein's Lebens Licht, BWV3350:37127-22Herr Jesu Christ, Wahr'r Mensch Und Gott (Cantata, BWV127)0:48127-23Herr, Nun Laß In Friede, BWV3370:49127-24Herr, Straf' Mich Nicht In Deinem Zorn, BWV3381:04127-25Herr, Wie Du Willst, So Schick's Mit Mir (Cantata, BWV156)1:02127-26Herr, Wie Du Willst, So Schick's Mit Mir, BWV3391:04127-27Herzlich Lieb Hab' Ich Dich, O Herr, BWV3401:35127-28Herzlich Lieb Hab' Ich Dich, O Herr (Cantata, BWV174)1:33127-29Herzlich Thut Mich Verlangen (Cantata, BWV153)1:16127-30Hilf, Gott, Daß Mir's Gelinge, BWV3431:01127-31Hilf, Herr Jesu, Laß Gelingen, BWV3440:41127-32Ich Bin Ja, Herr, In Deiner Macht, BWV3451:05127-33Ich Dank' Dir, Gott, Für All' Wohlthat, BWV3461:00127-34Ich Dank' Dir, Lieber Herre, BWV3471:02127-35Ich Dank' Dir, Lieber Herre, BWV3480:59127-36Ich Dank' Dir, Lieber Herre (Cantata, BWV37)1:03127-37Ich Dank' Dir Schon Durch Deinen Sohn, BWV3490:42127-38Ich Danke Dir, O Gott, In Deinem Throne, BWV3501:07127-39Ich Hab' Mein' Sach' Gott Heimgestellt, BWV3510:45127-40Ich Ruf' Zu Dir, Herr Jesu Christ (Cantata, BWV177)2:18127-41Jesu, Der Du Meine Seele, BWV3521:11127-42Jesu, Der Du Meine Seele, BWV3531:10127-43Jesu, Der Du Meine Seele, BWV3541:10127-44Jesu, Der Du Meine Seele (Cantata, BWV78)1:02127-45Jesu, Der Du Selbst So Wohl, BWV3551:01127-46Jesu, Du Mein Liebstes Leben, BWV3561:29127-47Jesu, Jesu, Du Bist Mein, BWV3571:03127-48Jesu, Meine Freude, BWV3581:12127-49Jesu, Meine Freude, BWV2272:04127-50Jesu, Meine Freude (Cantata, BWV8)1:07Preludes & Fugues BWV 541 & 543 · Chorale Preludes BWV 735 & 736 · Partita BWV 767 · Trio Sonatas BWV 525 & 526Prelude And Fugue In A Minor, BWV543128-1I. Prelude3:24128-2II. Fugue6:28128-3Valet Will Ich Dir Geben, BWV7365:17Trio Sonata In E Flat, BWV525128-4I. [Without Tempo Indication]3:24128-5II. Adagio10:02128-6III. Allegro4:02Partita On 'O Gott, Du Frommer Gott', BWV767128-7Partita I1:13128-8Partita II2:49128-9Partita III1:29128-10Partita IV0:58128-11Partita V1:47128-12Partita VI1:01128-13Partita VII2:22128-14Partita VIII2:23128-15Partita IX4:16128-16Fantasia On 'Valet Will Ich Dir Geben', BWV7355:14Trio Sonata In C Minor, BWV526128-17I. Vivace3:59128-18II. Largo5:14128-19III. Allegro4:33Prelude And Fugue In G, BWV541128-20I. Prelude3:04128-21II. Fugue4:28Preludes & Fugues BWV 532 & 550 · Orgelbüchlein BWV 613-617 · Chorale Preludes BWV 720 & 721 · Trio Sonatas BWV 527 & 528 · Concerto BWV 596Prelude And Fugue In D, BWV532129-1I. Prelude4:45129-2II. Fugue6:51129-3Helft Mir Gottes Güte Preisen, BWV6131:27129-4Das Alte Jahr Vergangen Ist, BWV6142:23129-5In Dir Ist Freude, BWV6152:44129-6Mit Fried' Und Freud' Ich Fahr Dahin, BWV6161:41129-7Herr Gott, Nun Schleuß Den Himmel Auf, BWV6173:05129-8Ein Feste Burg Ist Unser Gott BWV7203:43Trio Sonata In D Minor, BWV527129-9I. Andante6:33129-10II. Adagio E Dolce6:55129-11III. Vivace3:57129-12Erbarm Dich Mein, O Herre Gott, BWV7213:36Concerto In D Minor After Vivaldi, BWV596129-13I. [Without Tempo Indication]1:03129-14II. Grave0:31129-15III. Fugue3:32129-16IV. Largo2:56129-17V. (Allegro)3:16Trio Sonata In E Minor, BWV528129-18I. Adagio0:38129-19II. Vivace2:15129-20III. Andante5:40129-21IV. Un Poc' Allegro2:34Prelude And Fugue In G, BWV550129-22Prelude2:55129-23Fugue4:18Preludes & Fugues BWV 535 & 545 · Trio Sonata BWV 529 · Schübler Chorales BWV 645-647 · Concerto BWV 594 · Partita BWV 768Prelude And Fugue In C, BWV545130-1I. Prelude2:51130-2II. Fugue4:57Trio Sonata In C, BWV529130-3I. Allegro5:20130-4II. Largo6:26130-5III. Allegro3:44Prelude And Fugue In G Minor, BWV535130-6I. Prelude2:39130-7II. Fugue4:59Schübler Chorales130-8Wachet Auf, Ruft Uns Die Stimme, BWV6454:28130-9Wo Soll Ich Fliehen Hin/Auf Meinen Lieben Gott, BWV6462:11130-10Wer Nur Den Lieben Gott Läßt Walten, BWV6474:14Concerto In C After Vivaldi, BWV594130-11I. [Without Tempo Indication]6:58130-12II. Recitative: Adagio3:04130-13III. Allegro8:03Partita On 'Sei Gegrüsset, Jesu Gütig', BWV768130-14Chorale1:16130-15Variation I2:55130-16Variation II1:19130-17Variation III0:56130-18Variation IV1:05130-19Variation V1:08130-20Variation VI1:09130-21Variation VII À 2 Clav. E Ped.1:32130-22Variation VIII1:24130-23Variation IX À 2 Clav. E Ped.1:34130-24Variation X À 2 Clav. E Ped.4:29130-25Variation XI À 5 Voci, In Organo Pleno1:25Toccata & Fugue BWV 540A · Schübler Chorales BWV 648-650 · Fugue BWV 579 · Orgelbüchlein BWV 618-631 · Trio Sonata BWV 530Toccata And Fugue In F, BWV540A131-1I. Toccata9:20131-2II. Fugue7:08Schübler Chorales131-3Meine Seele Erhebt Den Herren, BWV6482:40131-4Ach Bleibt Bei Uns, Herr Jesu Christ, BWV6492:24131-5Kommst Du Nun, Jesu, Vom Himmel Herunter Auf Erden, BWV6503:44131-6Fugue On A Theme By Corelli, BWV5796:40131-7O Lamm Gottes, Unschuldig, BWV6183:37131-8Christe, Du Lamm Gottes, BWV6191:07131-9Christus, Der Uns Selig Macht, BWV6201:53131-10Da Jesu An Dem Kreuze Stund', BWV6211:42131-11O Mensch, Bewein' Dein Sünde Groß, BWV6225:52131-12Wir Danken Dir, Herr Jesu Christ, BWV6230:58131-13Hild, Gott, Daß Mir's Gelinge, BWV6241:19131-14Christ Lag In Todesbanden, BWV6251:22131-15Jesus Christus, Unser Heiland, Der Den Tod Überwand, BWV6261:24131-16Christ Ist Erstanden, BWV627-Verses 1, 2 & 34:11131-17Erstanden Ist Der Heil'ge Christ, BWV6281:08131-18Erschienen Ist Der Herrliche Tag, BWV6291:03131-19Heut' Triumphieret Gottes Sohn, BWV6301:41131-20Komm, Gott Schöpfer, Heiliger Geist, BWV6310:53Trio Sonata In G, BWV530131-21I. Vivace4:00131-22II. Lento8:51131-23III. Allegro3:42Clavierübungen Part 3 Beginning132-1Prelude, BWV552/I9:30132-2Kyrie, Gott Vater In Ewigkeit, BWV6693:56132-3Christe, Aller Welt Trost, BWV6705:12132-4Kyrie, Gott Heiliger Geist, BWV6715:18132-5Kyrie, Gott Vater In Ewigkeit, BWV6721:45132-6Christe, Aller Welt Trost, BWV6731:24132-7Kyrie, Gott Heiliger Geist, BWV6741:39132-8Allein Gott In Der Höh Sei Ehr, BWV6753:16132-9Trio Super Allein Gott In Der Höh Sei Ehr, BWV6766:10132-10Fughetta Super Allein Gott In Der Höh Sei Ehr, BWV6771:22132-11Dies Sind Die Heiligen Zehen Gebot, BWV6785:05132-12Fughetta Super Dies Sind Die Heiligen Zehen Gebot, BWV6792:19132-13Wir Gläuben All An Einen Gott, BWV6803:00132-14Fughetta Super Wir Gläuben All An Einen Gott, BWV6811:28132-15Vater Unser Im Himmelreich, BWV6827:50132-16Vater Unser Im Himmelreich, BWV6831:33132-17Christ, Unser Herr, Zum Jordan Kam, BWV6844:12Clavierübungen Part 3 Conclusion · Fantasia BWV 1121 · Chorale Preludes BWV 695 & 718 · Fantasia & Fugue BWV 542133-1Christ, Unser Herr, Zum Jordan Kam, BWV6851:49133-2Aus Tiefer Not Schrei Ich Zu Dir, BWV6866:50133-3Aus Tiefer Not Schrei Ich Zu Dir, BWV6873:37133-4Jesus Christus, Unser Heiland, Der Von Uns, BWV6883:47133-5Fuga Super Jesus Christus, Unser Heiland, BWV6895:02133-6Duetto I, BWV8022:10133-7Duetto II, BWV8033:55133-8Duetto III, BWV8043:35133-9Duetto IV, BWV8053:02133-10Fugue À 5 BWV552/II7:58133-11Fantasia In C Minor, BWV11214:09133-12Christ Lag In Todes Banden, BWV7185:57133-13Fantasia Super Christ Lag In Todes Banden, BWV6953:50Fantasia And Fugue In G Minor, BWV542133-14I. Fantasia5:20133-15II. Fugue6:51Preludes & Fugues BWV 536 & 547 · Chorale Preludes BWV 651-658Prelude And Fugue In A, BWV536134-1I. Prelude2:11134-2II. Fugue5:36134-3Fantasia Super Komm, Heiliger Geist, BWV651 In Organo Pleno6:15134-4Komm, Heiliger Geist, BWV652 À 2 Clav. E Ped.11:41134-5An Wasserflüssen Babylon, BWV653 À 2 Clav. E Ped.6:08134-6Schmücke Dich, O Liebe Seele, BWV654 À 2 Clav. E Ped.9:06134-7Trio Super Herr Jesu Christ, Dich Zu Uns Wend, BWV655 À 2 Clav. E Ped.4:05134-8O Lamm Gottes, Unschuldig, BWV6569:24134-9Nun Danket Alle Gott, BWV657 À 2 Clav. E Ped.4:16134-10Von Gott Will Ich Nicht Lassen, BWV6583:26Prelude And Fugue In C, BWV547134-11I. Prelude5:11134-12II. Fugue6:27Preludes & Fugues BWV 544 & 548 · Fugue BWV 578 · Prelude BWV 569 · Trios BWV 585 & 586 · Chorale PreludesPrelude And Fugue In E Minor, BWV548135-1I. Prelude6:32135-2II. Fugue7:28135-3Jesus Christus, Unser Heiland, BWV6655:07135-4Jesus Christus, Unser Heiland, BWV6663:47135-5Komm, Gott, Schöpfer, Heiliger Geist, BWV667 In Organo Pleno2:40135-6Vor Deinen Thron, Tret Ich, BWV6684:49135-7Fugue In G Minor, BWV5783:54135-8Jesus, Meine Zuversicht, BWV7282:37Trio In C Minor, BWV585135-9I. Adagio3:04135-10II. Allegro2:34135-11Herr Jesu Christ, Dich Zu Uns Wend, BWV7093:43135-12Prelude In A Minor, BWV5696:22135-13In Dich Hab Ich Gehoffet, Herr, BWV7122:35135-14Liebster Jesu, Wir Sind Hier, BWV7061:58135-15Trio In G, BWV586: Allegro4:38135-16Herzlich Tut Mich Verlangen, BWV7272:19Prelude And Fugue In B Minor, BWV544135-17I. Prelude6:40135-18II. Fugue7:37Toccata & Fugue BWV 538 · Orgelbüchlein BWV 599-612 · Chorale Preludes BWV 659-664Toccata And Fugue In D Minor, BWV538136-1Toccata5:50136-2Fugue9:37136-3Nun Komm Der Heiden Heiland, BWV5991:36136-4Gott, Durch Deine Güte (Oder: Gottes Sohn Ist Kommen), BWV6001:19136-5Herr Christ, Der Ein'ge Gottes Sohn (Oder: Herr Gott, Nun Sei Gepreiset), BWV6011:43136-6Lob Sei Dem Allmächtigen Gott, BWV6020:55136-7Puer Natus In Bethlehem, BWV6031:28136-8Gelobet Seist Du, Jesu Christ, BWV604 À 2 Clav. E Ped.1:10136-9Der Tag, Der Ist So Freudenreich, BWV605 À 2 Clav. E Ped.1:53136-10Vom Himmel Hoch, Da Komm' Ich Her, BWV6060:57136-11Vom Himmel Kam Der Engel Schaar, BWV6071:18136-12In Dulci Jubilo, BWV6081:43136-13Lobt Gott, Ihr Christen, Allzugleich, BWV6091:00136-14Jesu, Meine Freude, BWV6103:23136-15Christum, Wir Sollen Loben Schon, BWV6112:28136-16Wir Christenleut', BWV6122:01136-17Nun Komm, Der Heiden Heiland, BWV659 À 2 Clav. E Ped.4:43136-18Trio Super Nun Komm, Der Heiden Heiland, BWV6602:32136-19Nun Komm, Der Heiden Heiland, BWV661 In Organo Pleno2:43136-20Allein Gott In Der Höh Sei Ehr, BWV662 À 2 Clav. E Ped.8:24136-21Allein Gott In Der Höh Sei Ehr, BWV663 À 2 Clav. E Ped.7:24136-22Trio Super Allein Gott In Der Höh Sei Ehr, BWV6645:38Organ Works BWV 551, 564, 583, 593, 694, 711, 717, 722, 724 & 729 & 769AToccata, Adagio And Fugue In C, BWV564137-1I. Toccata5:54137-2II. Adagio4:31137-3III. Fugue5:04137-4Trio In D Minor, BWV5836:06Einige Kanonische Veränderungen Über Das Weihnachtslied 'Vom Himmel Hoch, Da Komm Ich Her'. BWV769A (À 2 Clav. E Ped.)137-5Canon At The Octave1:49137-6Canon At The Fifth1:46137-7Cantus Firmus In Canon3:13137-8Canon At The Seventh3:18137-9Augmentation Canon3:43137-10In Dulci Jubilo, BWV7292:24137-11Gottes Sohn Ist Kommen, BWV7242:09137-12Gelobet Seist Du, Herr Jesu Christ, BWV7221:41Prelude And Fugue In A Minor, BWV551137-13I. Prelude2:23137-14II. Fugue3:19137-15Allein Gott In Der Höh Sei Ehr, BWV7113:12137-16Allein Gott In Der Höh Sei Ehr, BWV7173:31137-17Wo Soll Ich Fliehen Hin, BWV6943:51Concerto In A Minor After Vivaldi, BWV593137-18I. Allegro3:57137-19II. Recitative: Adagio3:30137-20III. Allegro3:58Orgelbüchlein BWV 632-644 · Concerto BWV 592 · Fugue BWV 577 · Fantasia & Fugue BWV 537 · Organ Piece BWV 572 · Chorale Preludes BWV 741 & 1128Concerto In G After Johann Ernst Von Sachsen-Weimar, BWV592138-1I. Allegro3:44138-2II. Grave2:19138-3III. Presto1:48138-4Fantasia Super Wo Gott, Der Herr, Nicht Bei Uns Hält, BWV11287:22138-5Fugue In G, BWV5773:59138-6Herr Jesu Christ, Dich Zu Uns Wend, BWV6321:40138-7Liebster Jesu, Wir Sind Hier, BWV634 À 2 Clav. E Ped.2:43138-8Liebster Jesu, Wir Sind Hier, BWV6332:50138-9Dies Sind Die Heiligen Zehn Gebot, BWV6351:18138-10Vater Unser Im Himmelreich, BWV6361:50138-11Durch Adam Fall Ist Gant Verdebt, BWV6372:24138-12Es Ist Das Heil Uns Kommen Her, BWV6381:09138-13Ich Ruf Zu Dir, Herr Jesu Christ, BWV6392:25138-14In Dich Hab Ich Gehoffet, Herr, BWV6401:27138-15Wenn Wir In Höchsten Nöten Sein BWV6411:53138-16Wer Nur Den Lieben Gott Lässt Walten, BWV6421:35138-17Alle Menschen Müssen Sterben, BWV6431:40138-18Ach Wie Nichtig, Ach Wie Flüchtig, BWV6441:01Fantasia And Fugue In C Minor, BWV537138-19I. Fantasia4:34138-20II. Fugue4:41138-21Ach Gott, Vom Himmel Sieh' Darein, BWV7415:25Organ Piece, BWV572138-22I. Très Vitement1:31138-23II. Gravement6:34138-24III. Lentement1:47Preludes & Fugues BWV 533 & 549 · Fantasias BWV 563 & 570 · Canzona BWV 588 · Concerto BWV 595 · Chorale PreludesPrelude And Fugue In C Minor, BWV549139-1I. Prelude2:07139-2II. Fugue3:55139-3Fantasia In C, BWV5703:00139-4Der Tag, Der Ist So Freudenreich Oder Ein Kindelein So Löbelich, BWV7192:08139-5Wir Christenleut, BWV10901:55139-6Das Alte Jahr Vergangen Ist, BWV10913:11139-7Herr Gott, Nun Schleuss Den Himmel Auf, BWV10922:24139-8Alla Breve In D, BWV5895:49139-9Canzona In D Minor, BWV5885:24139-10Herzliebster Jesu, Was Hast Du Verbrochen, BWV10932:56139-11O Jesu, Wie Ist Dein Gestalt, BWV10944:08139-12O Lamm Gottes, Unschuldig, BWV10952:20139-13Ehre Sei Dir, Christe, Der Du Leidest Not, BWV10972:21139-14Fantasia In B Minor, BWV5635:34139-15Wir Glauben All An Einen Gott, BWV10982:40139-16Aus Tiefer Not Schrei Ich Zu Dir, BWV10992:24Prelude And Fugue In E Minor, BWV533139-17I. Prelude2:12139-18II. Fugue2:39139-19Wer Nur Den Lieben Gott Lässt Walten, BWV6912:15139-20Wer Nur Den Lieben Gott Lässt Walten, BWV6902:22139-21Lobt Gott, Ihr Christen, Allzugleich, BWV7321:23139-22Fantasia Super Jesu, Meine Freude, BWV7134:32139-23Concerto In C, BWV595 After The First Movement Of A Concerto By Johann Ernst Prinz Von Sachsen-Weimar4:29139-24Fantasia In C Minor, BWV5625:42Preludes & Fugues BWV 531 & 566 · Partita BWV 770 · Pastorella BWV 590 · Fugue BWV 574 · Chorale PreludesPrelude (Toccata) And Fugue In E, BWV566140-1I. Prelude (Toccata)2:20140-2II. Fugue9:00Partita On 'Was Soll Ich Sünder Machen', BWV770140-3Partita I1:11140-4Partita II0:50140-5Partita III1:02140-6Partita IV1:10140-7Partita V0:44140-8Partita VI0:57140-9Partita VII0:49140-10Partita VIII0:47140-11Partita IX: Adagio3:19140-12Partita X3:47140-13Herr Jesu Christ, Dich Zu Uns Wend, BWV7261:06140-14Wie Schön Leuchtet Der Morgenstern, BWV7394:51140-15Pastorella, BWV59012:53140-16Nun Komm Der Heiden Heiland, BWV6991:11140-17Christum Wir Sollen Loben Schon Oder Was Fürchtst Du Feind, Herodes, Sehr, BWV6961:50140-18Gelobet Seist Du, Jesu Christ, BWV6970:55140-19Herr Christ, Der Einig Gottes Sohn, BWV6981:17140-20Vom Himmel Hoch, Da Komm Ich Her, BWV7003:19140-21Vom Himmel Hoch, Da Komm Ich Her, BWV7011:30140-22Das Jesulein Soll Doch Mein Trost, BWV7021:32140-23Gottes Sohn Ist Kommen, BWV7030:56140-24Lob Sei Dem ALlmächtigen Gott, BWV7041:09140-25Fugue In C Minor On A Theme Of Legrenzi, BWV5747:35140-26Liebster Jesu, Wir Sind Hier, BWV7302:01Prelude And Fugue In C, BWV531140-27I. Prelude2:30140-28II. Fugue4:32Toccata & Fugue BWV 565 · Partita BWV 766 · Fugue BWV 575 · Fantasia BWV 571 · Prelude & Fugue BWV 534 · Chorale PreludesToccata And Fugue In D Minor, BWV656141-1I. Toccata2:22141-2II. Fugue6:22141-3Herr Christ, Der Einig Gottes Sohn, BWV Anh. 552:06141-4Vom Himmel Hoch, Da Komm Ich Her, BWV7381:27141-5Fugue In C Minor, BWV5754:44Partita On 'Christ, Der Du Bist Der Helle Tag', BWV766141-6Partita I0:57141-7Partita II: Largo3:16141-8Partita III1:09141-9Partita IV1:13141-10Partita V1:45141-11Partita VI1:11141-12Partita VII1:40Prelude And Fugue In F Minor, BWV534141-13I. Prelude3:46141-14II. Fugue5:43141-15Allein Zu Dir, Herr Jesu Christ, BWV11002:28141-16Ach Gott Und Herr, BWV7143:30141-17Ach Herr, Mich Armen Sünder Oder Herzlich Tut Mich Verlangen, BWV7422:56141-18Durch Adam Fall Ist Ganz Verdebt, BWV11013:03141-19Du Friedefürst, Herr Jesu Christ, BWV11022:29141-20Vater Unser Im Himmelreich, BWV7372:30141-21Jesu, Meine Freude, BWV11052:12141-22Gott Ist Mein Heil, Mein Hilf Und Trost, BWV11062:03141-23Jesu, Meines Lebens Leben, BWV11071:57141-24Als Jesus Christus In Der Nacht, BWV11083:27141-25O Herre Gott, Dein Göttlich Wort, BWV11102:33Fantasia In G, BWV571141-26I. (Allegro)3:43141-27II. Adagio2:08141-28III. Allegro2:02141-29Meine Seele Erhebt Den Herren, BWV733 Fugue On The Magnificat, Pro Organo Pleno4:36Preludes & Fugues BWV 539 & 546 · Passacaglia BWV 582 · Chorale PreludesPrelude And Fugue In C Minor, BWV546142-1I. Prelude7:03142-2II. Fugue4:41142-3Nun Lasst Uns Den Leib Begraben, BWV11112:49142-4Christus, Der Ist Mein Leben, BWV11122:15142-5Ich Hab Mein Sach Gott Heimgestellt, BWV11133:03142-6Herr Jesu Christ, Du Höchstes Gut, BWV11144:55142-7Herzlich Lieb Hab Ich Dich, O Herr, BWV11153:03142-8Was Gott Tut, Das Ist Wohlgetan, BWV11162:18142-9Alle Menschen Müssen Sterben, BWV11172:14142-10Machs Mit Mir, Gott, Nach Deiner Güt, BWV9572:30142-11Werde Munter, Mein Gemüte, BWV11182:05142-12Wie Nach Einer Wasserquelle, BWV11192:07142-13Christ, Der Du Bist Der Helle Tag, BWV11202:06Prelude And Fugue In D Minor, BWV539142-14I. Prelude2:16142-15II. Fugue5:27142-16Allein Gott In Der Höh Sei Ehr, BWV7152:00142-17Nun Freut Euch, Lieben Christen Gemein, BWV7343:02142-18Herr Jesu Christ, Dich Zu Uns Wend, BWV7490:58142-19Wir Glauben All An Einen Gott, BWV7653:06142-20Liebster Jesu, Wir Sind Hier, BWV7312:47142-21Passacaglia In C Minor, BWV58214:1889052Brilliant Classics14Copyright (c)313190Optimal Media GmbH16Made By + +194VariousMedieval & Renaissance2041348WLP Ltd.Booklet Editor, Art Direction1097307Raymond McGillCompiled By, Product Manager862115Sally DrewEdited By [Recording Editor]5-1 to 5-31986715Deborah RogersEdited By [Recording Editor]4-1 to 4-10838381Ian Watson (3)Edited By [Recording Editor]25-1 to 25-38719434Stanley GoodallEdited By [Recording Editor]1-1 to 1-13973228Timothy BullEdited By [Recording Editor] 6-1 to 6-11, 7-1 to 7-10, 13-1 to 13-12386331Iain ChurchesEngineer [Balance Engineer]32-1 to 32-20, 36-1 to 36-17, 46-1 to 46-21, 47-1 to 47-21551283John DunkerleyEngineer [Balance Engineer]23-1 to 23-21, 27-1 to 27-21, 30-1 to 30-9, 36-1 to 36-17, 49-1 to 49-17417353John PelloweEngineer [Balance Engineer]2-1 to 2-16, 8-1 to 8-24, 10-1 to 10-12, 11-1 to 11-16, 22-1 to 22-15, 42-1 to 42-20, 48-1 to 48-15, 50-1 to 50-11848521Jonathan StokesEngineer [Balance Engineer]4-1 to 4-10, 5-1 to 5-31, 6-1 to 6-11, 7-1 to 7-10679291Martin HaskellEngineer [Balance Engineer]12-1 to 12-12, 19-1 to 19-13, 20-1 to 20-15, 21-1 to 21-15, 23-22 to 23-24, 31-1 to 31-10, 44-1 to 44-18, 45-1 to 45-21902732Simon EadonEngineer [Balance Engineer]3-1 to 3-14, 15-1 to 15-10, 40-1 to 40-10, 41-1 to 41-102027628Adam ChignellEngineer [Location Engineer]13-1 to 13-12470062Arthur LilleyEngineer [Recording Engineer]14-1 to 14-26, 34-1 to 34-10, 5-1 to 35-13417353John PelloweEngineer [Recording Engineer]15-1 to 15-10, 16-1 to 16-22, 17-1 to 17-26, 18-1 to 18-16848521Jonathan StokesEngineer [Recording Engineer]25-1 to 25-38679291Martin HaskellEngineer [Recording Engineer]24-1 to 24-18, 26-1 to 26-20, 43-1 to 43-13647974Neil HutchinsonEngineer [Recording Engineer]13-1 to 13-12, 25-1 to 25-387620607Peter Cook (17)Peter CookeEngineer [Recording Engineer]10-1 to 10-12, 11-1 to 11-16883763Philip WadeEngineer [Recording Engineer]36-1 to 36-17, 37-1 to 37-14, 38-1 to 38-13, 39-1 to 39-9902732Simon EadonEngineer [Recording Engineer]14-1 to 14-26, 28-1 to 28-162021041Raymond WareExecutive-Producer36-1 to 36-1713707529Dominicus PisaurensisInstrument Builder [1540 Virginal]41-46198321Giovanni Battista GiustiInstrument Builder [1681 Harpsichord]40-1 to 40-4, 40-8, 41-6 to 41-105853117Carlo GrimaldiInstrument Builder [1697 Harpsichord]40-6, 40-7, 41-1 to 41-3, 41-5866498Peter HindmarshInstrument Builder [Chamber Organ, 1972]36-1, 36-2, 36-1314114713Marco JadraInstrument Builder [Spinet]38-3.4, 39-5, 39-6, 39-8, 39-914114716Thomas White (24)Instrument Builder [Virginal]38-7, 37-8, 38-11 to 38-13, 39-1, 39-21644641Dennis Collins (2)Liner Notes [Repertoire - French Translation]1698883Andreas Klatt (2)Liner Notes [Repertoire - German Translation]1924654Christiane FrobeniusLiner Notes [Repertoire - German Translation]1630772Clifford BartlettLiner Notes [Repertoire]3557293Noémie GatzlerLiner Notes [The L'Oiseau Story - French Translation]1097307Raymond McGillLiner Notes [The L'Oiseau Story]1242028Ben WisemanMastered By [Digitially Remastered By]CDs 2 12, 14, 16-18, 26, 28, 29, 32, 35, 36, 44, 57, 59401527Craig Thompson (2)Mastered By [Digitially Remastered By]CDs 2 12, 14, 16-18, 26, 28, 29, 32, 35, 36, 44, 57, 59376984Paschal ByrneMastered By [Digitially Remastered By]CDs 2 12, 14, 16-18, 26, 28, 29, 32, 35, 36, 44, 57, 591000567Iaan WilsonMusician [AAM], Cornett33-1 to 33-22843657Michael Laird (2)Musician [AAM], Cornett33-1 to 33-22849183Jakob LindbergMusician [AAM], Lute33-1 to 33-22870693Nigel NorthMusician [AAM], Lute33-1 to 33-221804986John Edney (2)Musician [AAM], Sackbut33-1 to 33-221554675Peter Harvey (2)Musician [AAM], Sackbut33-1 to 33-22836114Catherine MackintoshMusician [AAM], Viol33-1 to 33-221098156Ian GammieMusician [AAM], Viol33-1 to 33-22836104Jane RyanMusician [AAM], Viol33-1 to 33-22779780Roderick SkeapingMusician [AAM], Viol33-1 to 33-22837431Trevor Jones (4)Musician [AAM], Viol33-1 to 33-22779781Christopher HogwoodMusician [AAM], Virginal33-1 to 33-221208174Cathy CassMusician [Consort of Musicke], Alto VocalsCathy Cass1274039Margaret PhilpotMusician [Consort of Musicke], Alto Vocals18-1 to 18-16836761Mary NicholsMusician [Consort of Musicke], Alto Vocals34-1 to 34-101088123Alison CrumMusician [Consort of Musicke], Bass Viol18-1 to 18-16, 50-1 to 50-111208175Gregor AnthonyMusician [Consort of Musicke], Bass Viol24-1 to 24-18, 35-1 to 35-13836104Jane RyanMusician [Consort of Musicke], Bass Viol31-1 to 31-10, 32-1 to 32-20, 44-1 to 44-18837444Mark CaudleMusician [Consort of Musicke], Bass Viol35-1 to 35-13, 50-1 to 50-111208173Oliver HirshMusician [Consort of Musicke], Bass Viol29-1 to 29-22, 35-1 to 35-131669510Piet StryckersMusician [Consort of Musicke], Bass Viol29-1 to 29-22, 35-1 to 35-13, 50-1 to 50-11837431Trevor Jones (4)Musician [Consort of Musicke], Bass Viol18-1 to 18-16, 31-1 to 31-10, 44-1 to 44-18, 50-1 to 50-111208173Oliver HirshMusician [Consort of Musicke], Bass Viol [Great Bass Viol]18-1 to 18-16, 24-1 to 24-181669510Piet StryckersMusician [Consort of Musicke], Bass Viol [Great Bass Viol]35-1 to 35-131669510Piet StryckersMusician [Consort of Musicke], Bass Viol [Great Double Bass Viol]24-1 to 24-18837434Richard WebbMusician [Consort of Musicke], Bass Violin24-1 to 24-181023082Francis SteeleMusician [Consort of Musicke], Bass Vocals34-1 to 34-10875351John Milne (2)Musician [Consort of Musicke], Bass Vocals34-1 to 34-101098157John York SkinnerMusician [Consort of Musicke], Countertenor Vocals31-1 to 31-10, 34-1 to 34-10836116Anthony RooleyMusician [Consort of Musicke], Lute18-1 to 18-16, 25-11, 25-12, 31-1 to 31-10870692Evelyn TubbMusician [Consort of Musicke], Mezzo-soprano Vocals34-1 to 34-104322860Jacqueline Fox (2)Musician [Consort of Musicke], Mezzo-soprano Vocals34-1 to 34-10877527Alan Wilson (3)Musician [Consort of Musicke], Organ31-1 to 31-10, 44-1 to 44-18, 50-1 to 50-11836115Emma KirkbyMusician [Consort of Musicke], Soprano Vocals18-1 to 18-16, 31-1 to 31-10, 34-1 to 34-10554201Poppy HoldenMusician [Consort of Musicke], Soprano Vocals34-1 to 34-101088123Alison CrumMusician [Consort of Musicke], Tenor Viol18-1 to 18-16, 24-1 to 24-18, , 29-1 to 29-22, 35-1 to 35-13, 50-1 to 50-111098156Ian GammieMusician [Consort of Musicke], Tenor Viol32-1 to 32-20, 47-1 to 47-211208173Oliver HirshMusician [Consort of Musicke], Tenor Viol35-1 to 35-13, 50-1 to 50-111842269Peter TrentMusician [Consort of Musicke], Tenor Viol29-1 to 29-22, 50-1 to 50-11837431Trevor Jones (4)Musician [Consort of Musicke], Tenor Viol47-1 to 47-21837444Mark CaudleMusician [Consort of Musicke], Tenor Violin24-1 to 24-181023089Joseph CornwellMusician [Consort of Musicke], Tenor Vocals18-1 to 18-16, 34-1 to 34-10836116Anthony RooleyMusician [Consort of Musicke], Theorbo50-1 to 50-111088123Alison CrumMusician [Consort of Musicke], Treble Viol35-1 to 35-13, 50-1 to 50-11836114Catherine MackintoshMusician [Consort of Musicke], Treble Viol47-1 to 47-211000570Polly WaterfieldMusician [Consort of Musicke], Treble Viol32-1 to 32-20, 47-1 to 47-21, 44-1 to 44-18837431Trevor Jones (4)Musician [Consort of Musicke], Treble Viol24-1 to 24-18, 32-1 to 32-20, 50-1 to 50-111088123Alison CrumMusician [Consort of Musicke], Viol34-1 to 34-101208175Gregor AnthonyMusician [Consort of Musicke], Viol34-1 to 34-101208173Oliver HirshMusician [Consort of Musicke], Viol34-1 to 34-10837431Trevor Jones (4)Musician [Consort of Musicke], Viol34-1 to 34-10836741Alison BuryMusician [Consort of Musicke], Viola50-1 to 50-11837431Trevor Jones (4)Musician [Consort of Musicke], Viola50-1 to 50-11837431Trevor Jones (4)Musician [Consort of Musicke], Viola [Tenor Viola]24-1 to 24-18836741Alison BuryMusician [Consort of Musicke], Violin50-1 to 50-11836114Catherine MackintoshMusician [Consort of Musicke], Violin44-1 to 44-18, 47-1 to 47-21960940Monica HuggettMusician [Consort of Musicke], Violin24-1 to 24-18, 31-1 to 31-10, 50-1 to 50-111000570Polly WaterfieldMusician [Consort of Musicke], Violin31-1 to 31-10, 47-1 to 47-21877527Alan Wilson (3)Musician [Consort of Musicke], Virginal24-5, 24-6983624Jeremy WestMusician [Guildhall Waits], Cornett24-1 to 24-182861886Jonathan Morgan (3)Musician [Guildhall Waits], Cornett [Tenor Cornett]24-1 to 24-18836779Andrew Watts (2)Musician [Guildhall Waits], Dulcian [Curtal]24-1 to 24-183690342Martin PopeMusician [Guildhall Waits], Sackbut [Tenor Sackbut]24-1 to 24-18314008Paul NiemanPaul NiemannMusician [Guildhall Waits], Sackbut [Tenor Sackbut]24-1 to 24-181000564Roger BrennerMusician [London Cornett And Sackbut Ensemble ], Sackbut30-1 to 30-92300191Trevor HerbertMusician [London Cornett And Sackbut Ensemble ], Sackbut30-1 to 30-9837444Mark CaudleMusician [London Cornett And Sackbut Ensemble], Cello30-1 to 30-91000578Andrew van der BeekMusician [London Cornett And Sackbut Ensemble], Cornett30-1 to 30-9983624Jeremy WestMusician [London Cornett And Sackbut Ensemble], Cornett30-1 to 30-9843657Michael Laird (2)Musician [London Cornett And Sackbut Ensemble], Cornett30-1 to 30-91136866Theresa CaudleMusician [London Cornett And Sackbut Ensemble], Cornett30-1 to 30-9310358Stephen SaundersMusician [London Cornett And Sackbut Ensemble], Cornett, Sackbut [Bass Sackbut]30-1 to 30-91697252Bernard Thomas (2)Musician [London Cornett And Sackbut Ensemble], Dulcian30-1 to 30-9430742Alan LumsdenMusician [London Cornett And Sackbut Ensemble], Sackbut30-1 to 30-91106955Paul BeerMusician [London Cornett And Sackbut Ensemble], Sackbut30-1 to 30-9314008Paul NiemanMusician [London Cornett And Sackbut Ensemble], Sackbut30-1 to 30-91554675Peter Harvey (2)Musician [London Cornett And Sackbut Ensemble], Sackbut [Tenor Sackbut]30-1 to 30-91274039Margaret PhilpotMusician [Medieval Ensemble of London], Alto Vocals16-1 to 16-22, 17-1 to 17-falan w26, 22-1 to 22-15833878David BeavanMusician [Medieval Ensemble of London], Baritone Vocals16-1 to 16-22282643Paul HillierMusician [Medieval Ensemble of London], Baritone Vocals16-1 to 16-22, 17-1 to 17-26, 22-1 to 22-151034913Timothy PenroseMusician [Medieval Ensemble of London], Countertenor Vocals17-1 to 17-26, 22-1 to 22-151502291Peter Davies (3)Musician [Medieval Ensemble of London], Dulcian [Douçaine]2-1 to 2-16, 14-1 to 14-6, 16-1 to 16-221522155Gregory KnowlesMusician [Medieval Ensemble of London], Dulcimer10-1 to 10-12, 11-1 to 11-18, 17-1 to 17-26836899William HuntMusician [Medieval Ensemble of London], Fiddle10-1 to 10-12, 11-1 to 11-18, 14-1 to 14-6, 17-1 to 17-262088939Robert Cooper (6)Musician [Medieval Ensemble of London], Fiddle, Rebec2-1 to 2-16, 10-1 to 10-12, 11-1 to 11-18, 14-1 to 14-6, v, 17-1 to 17-261502291Peter Davies (3)Musician [Medieval Ensemble of London], Flute, Recorder10-1 to 10-12, 11-1 to 11-18, 14-1 to 14-6, 16-1 to 16-22, 17-1 to 17-261502289Timothy DaviesMusician [Medieval Ensemble of London], Gittern2-1 to 2-16, 10-1 to 10-12, 11-1 to 11-18, 14-1 to 14-61502291Peter Davies (3)Musician [Medieval Ensemble of London], Harp2-1 to 2-16, 14-1 to 14-6, 17-1 to 17-261502289Timothy DaviesMusician [Medieval Ensemble of London], Lute2-1 to 2-16, 10-1 to 10-12, 11-1 to 11-18, 14-1 to 14-6, 16-1 to 16-22, 17-1 to 17-26, 22-1 to 22-151925015Christopher KiteMusician [Medieval Ensemble of London], Organ, Regal17-1 to 17-26470389Andrew WattsMusician [Medieval Ensemble of London], Recorder10-1 to 10-12, 11-1 to 11-183690342Martin PopeMusician [Medieval Ensemble of London], Sackbut, Recorder10-1 to 10-12, 11-1 to 11-181502291Peter Davies (3)Musician [Medieval Ensemble of London], Shawm [Alto Shawm]10-1 to 10-12, 11-1 to 11-18, 14-1 to 14-26836779Andrew Watts (2)Musician [Medieval Ensemble of London], Shawm [Soprano Shawm]14-1 to 14-63690342Martin PopeMusician [Medieval Ensemble of London], Slide Trumpet14-1 to 14-6836380Patrizia KwellaMusician [Medieval Ensemble of London], Soprano Vocals16-1 to 16-22, 17-1 to 17-26, 22-1 to 22-151023088Andrew King (5)Musician [Medieval Ensemble of London], Tenor Vocals17-1 to 17-26522269Paul ElliottMusician [Medieval Ensemble of London], Tenor Vocals16-1 to 16-22, 22-1 to 22-15361600Rogers Covey-CrumpMusician [Medieval Ensemble of London], Tenor Vocals16-1 to 16-22, 22-1 to 22-152088939Robert Cooper (6)Musician [Medieval Ensemble of London], Vielle22-1 to 2-157680324Ben Dover (21)Musician [Sneak's Noyse], Crumhorn, Dulcian [Curtal]33-11, 33-227680323Reggie CoatesMusician [Sneak's Noyse], Lute, Cittern33-11, 33-22779780Roderick SkeapingMusician [Sneak's Noyse], Rebec33-11, 33-22580172Lucie SkeapingMusician [Sneak's Noyse], Recorder, Tambourine33-11, 33-2233-11, 33-22844451Colin TilneyMusician [Taverner Ensemble], Organ [Chamber Organ]30-1 to 30-91098156Ian GammieMusician [Taverner Ensemble], Viola30-1 to 30-9837110Nicola CleminsonMusician [Taverner Ensemble], Viola30-1 to 30-9837431Trevor Jones (4)Musician [Taverner Ensemble], Viola30-1 to 30-91000570Polly WaterfieldPerformer [Consort of Musicke], Viola [Alto Viola]24-1 to 24-182238469Erich LessingErich Lessing / Museum Mayer van Den Bergh, Antwerp / Archiv Für Kunst Und Geschichte, BerlinPhotography By [Wallet Front, CD 25]2239163Michael Evans (10)Photography By [p. 115]2236001John Thomson (2)Photography By [p. 116]2273882Nick White (4)Photography By [p. 23]2246658Jean-Pierre MascletPhotography By [p. 40]551284Peter WadlandPhotography By [p. 6]3425368Jean-Luc GirardJ.L. GirardPhotography By [p. 9]2234876Clive BardaPhotography By [pp. 67, 122, 124]991968Chris HazellProducer 49-1 to 49-17708420Chris SayersProducer13-1 to 13-12837435Morten WindingProducer10-1 to 10-12, 11-1 to 11-16, 14-1 to 14-26, 15-1 to 15-10, 18-1 to 18-16, 19-1 to 19-13, 20-1 to 20-15, 21-1 to 21-15, 24-1 to 24-18, 42-1 to 42-20, 43-1 to 43-13, 50-1 to 50-11551284Peter WadlandProducer1-1 to 1-13, 2-1 to 2-16, 3-1 to 3-14, 4-1 to 4-10, 5-1 to 5-31, 6-1 to 6-11, 7-1 to 7-10, 8-1 to 8-24, 12-1 to 12-12, 16-1 to 16-22, 17-1 to 17-26, 22-1 to 22-15, 25-1 to 25-38, 26-1 to 26-20, 27-1 to 27-21, 28-1 to 28-16, 30-1 to 30-9, 31-1 to 31-10, 32-1 to 32-20, 34-1 to 34-10, 35-1 to 35-13, 36-1 to 36-17, 37-1 to 37-14, 38-1 to 38-13, 39-1 to 39-9, 44-1 to 44-18, 45-1 to 45-21, 46-1 to 46-21, 47-1 to 47-21, , 48-1 to 48-151732912Lucy Robinson (2)Producer [Assistant Producer]33-1 to 33-22293803Adam SkeapingProducer, Engineer [Recording Engineer]33-1 to 33-221242028Ben WisemanRemastered By12-1 to 12-12, 15-1 to 15-10, 18-1 to 18-16, 26-1 to 26-20, 28-1 to 28-16, 32-1 to 32-20, 36-1 to 26-17, 37-1 to 36-14, 38-1 to 38-13, 39-1 to 39-9, 44-1 to 44-18, 47-1 to 47-21, 50-1 to 50-11401527Craig Thompson (2)Remastered By12-1 to 12-12, 15-1 to 15-10, 18-1 to 18-16, 26-1 to 26-20, 28-1 to 28-16, 32-1 to 32-20, 36-1 to 26-17, 37-1 to 36-14, 38-1 to 38-13, 39-1 to 39-9, 44-1 to 44-18, 47-1 to 47-21, 50-1 to 50-11376984Paschal ByrneRemastered By12-1 to 12-12, 15-1 to 15-10, 18-1 to 18-16, 26-1 to 26-20, 28-1 to 28-16, 32-1 to 32-20, 36-1 to 26-17, 37-1 to 36-14, 38-1 to 38-13, 39-1 to 39-9, 44-1 to 44-18, 47-1 to 47-21, 50-1 to 50-117656009J. H. MarshallProf. J. H. MarshallVocal Coach [Pronunciation Advisor]13-1 to 13-12ReissueRemasteredStereoCompilationLimited EditionClassicalWorldwide2016-09-02© 2016 Decca Music Group Limited +℗ 2016 Decca Music Group Limited + +The L'Oiseau Story © 2014 Raymond McGill + +Cardboard sleeves in cardboard box. Included 200 p. booklet. +Lyrics and sung texts may be downloaded at https://www.loiseau-lyre.co.uk (Inactive) + +Editor's Note 1: Recordings by [a1502290] and [a960926], and other ensembles, are listed in the booklet with members of the Ensemble who participated in the recording for each track, but generally not what instruments they played. Vocal ranges are usually listed per track, and are including in the track listing. Because of how this information is presented, since their tracks are individual works and not part of a larger work, it is impossible to provide complete instrumental credits for each track. +Therefore, the general Credits section is used to note artists credited as performers & members of these ensembles with instruments used, and vocal range, if not provided in the booklet. +Editor's Note 2: | character used to separate parts or acts that would ordinarily call for a Header, but is not used here, to keep complete works under a single Index Track. +Editor's Note 3: Some tracks are divided into separate subtracks as clearly presented on disc sleeves or booklet, to manage multipart tracks. Track position is as printed or by using #.# convention. The printed track timing is entered for the Originally subtrack only. +Editor's Note 4: Instrument Builder credits are in the Credits section rather than track listing. + +CD 1 60:29 DDD +Recording Location: The American Academy of Arts and Letters, New York City, 31 October-2 November 1985. +℗ 1985 Decca Music Group Limited +Originally released as [url=/master/988498]L'Oiseau-Lyre 417 342-2[/url], 1985. + +CD 2 61:37 DDD +Recording Location: Kingsway Hall, London, 2 January 1982. +℗ 1983 Decca Music Group Limited +Originally released as [url=/master/814381]L'Oiseau-Lyre DSDL 704[/url], 1983. + +CD 3 61:37 DDD +Recording Location: Henry Wood Hall, London, 12-14 January 1986. +℗ 1986 Decca Music Group Limited +Originally released as [url=/master/872580]L'Oiseau-Lyre 417 373-2[/url], 1986. + +CD 4 69:48 DDD +Recording location: Temple Church, London, 28-30 November 1990. +℗ 1992 Decca Music Group Limited +Originally released as [url=/release/11010851]L'Oiseau-Lyre 433 186-2[/url], 1982. + +CD 5 75:19 DDD +Recording location: Temple Church, London, 5-8 February 1990. +℗ 1992 Decca Music Group Limited +Originally released as [url=/master/1149864]L'Oiseau-Lyre 433 194-2[/url], 1992. + +CD 6 53:45 | CD 7 72:35 Total timing 126:20 DDD +Recording Location: Temple Church, London, 31 October-4 November 1989. +℗ 1992 Decca Music Group Limited +Originally released as [url=/master/1062946]L'Oiseau-Lyre 433 148-2[/url], 1992. + +CD 8 48:51 DDD +Recording Location: London, 4-9 January 1982 +℗ 1983 Decca Music Group Limited +Originally released as [url=/release/2656432]L'Oiseau-Lyre DSDL 705[/url], 1982. + +CD 9 67:05 DDD +Recording Location: Walthamstow Assembly Hall, London, 21 & 22 Mar 1994. +℗ 1996 Decca Music Group Limited +Originally released as [url=release/11306617]L'Oiseau-Lyre 444 173-2[/url], 1996. + +CD 10 63:10 | CD 11 67:34 | Total timing 130:44 +Recording Location: St George the Martyr, London, Feb 1981 +℗ 1982 (corrected from 1992) Decca Music Group Limited +Originally released as [url=/master/1682406]L'Oiseau-Lyre D254D3[/url], 1982. + +CD 12 50:50 +Recording Location: Decca Studios, West Hempstead, London, January 1978. +℗ 1980 Decca Music Group Limited +Originally released as [url=/release/6823904]L'Oiseau-Lyre DSLO 577[/url], 1980. + +CD 13 66:24 DDD +Recording Location: Church of St Martin of Tours, East Woodhay, Berkshire, 23-25 May 1995. +℗ 1996 Decca Music Group Limited +Originally released as [url=/master/1682274]L'Oiseau-Lyre 448 992-2[/url], 1996. + +CD 14 69:14 ADD +Recording Location: Decca Studios, West Hempstead, London, July 1980. +℗ 1981 Decca Music Group Limited +Originally released as [url=/master/1536346]L'Oiseau-Lyre D237D2[/url], 1981. + +CD 15 51:57 DDD +Recording Location: Henry Wood Hall, London, 6-9 January 1984. +℗ 1984 Decca Music Group Limited +Originally released as [url=/master/682535]411 937[/url], 1984. + +CD 16 47:21 DDD +Recording Location: Henry Wood Hall, London, 6-9 January 1984. +℗ 1985 Decca Music Group Limited +Originally released as [url=/release/7060630]L'Oiseau-Lyre 411 938-1[/url], 1985. + +CD 17 61:35 DDD +Recording Location: Henry Wood Hall, London, 4-8 January 1983. +℗ 1983 Decca Music Group Limited +Originally released as [url=/release/4984263]L'Oiseau-Lyre 410 107-1[/url], 1983. + +CD 18 51:40 DDD +Recording Location: Decca Studios, West Hempstead, London, 16-21 June 1980. +℗ 1981 Decca Music Group Limited +Originally released as [url=release/6821575]L'Oiseau-Lyre DSLO 593[/url], 1981. + +CD 19 34:59 | CD 20 65:04 | CD 21 64:05 | Total timing 164:08 ADD +Recording: Decca Studios, West Hampstead, London, 20 February-1 March 1979. +© 1980 Decca Music Group Limited +Originally released as [url=/master/1675552]L'Oiseau-Lyre D186D4[/url], 1980.. + +CD 22 62:29 DDD +Recording: Henry Wood Hall, London, 4-8 January 1983. +℗ 1983, Decca Music Group Limited +Originally released as [url=/master/1684557]L'Oiseau-Lyre DSDL 714[/url], 1983. + +CD 23 71:20 DDD +Recording: Decca Studio 3, West Hampstead, November-December 1978 (Erminia); St. Barnabas' Church, London, March 1982 (San Pietro). +℗ 1980 (Erminia), 1982 (San Pietro) Decca Music Group Limited +San Pietro Originally released as [url=/master/1536829]L'Oiseau-Lyre DSDL 706[/url], 1982. +Erminia Originally released on [url=/release/6824687]L'Oiseau-Lyre DSLO 570[/url], 1980. + +CD 24 42:08 ADD +Recording: Decca Studios, West Hampstead, 23-25 April 1969. +℗ 1980 Decca Music Group Limited +Originally released as [url=/master/1322892]DSLO 569[/url], 1980. + +CD 25 66:17 DDD +Recording: Walthamstow Assembly Hall, October 1991. +℗ 1993 Decca Music Group Limited +Originally released as [url=/master/896097]L'Oiseau-Lyre 436 131-2[/url], 1993. + +CD 26 65:21 ADD +Recording Location: Decca Studios, West Hempstead, London, 3-9 July 1977. +℗ 1979 Decca Music Group Limited +Originally released as [url=https:/master/1074816]L'Oiseau-Lyre DSLO 555[/url], 1979. + +CD 27 53:48 ADD +Recording location: Henry Wood Hall, London, 1-3 March 1983. +℗ 1983 Decca Music Group Limited +Originally released as [url=/master/779699]L'Oiseau-Lyre 410 128-1[/url], 1983. + +CD 28 48:53 DDD +Recording location: St. Barnabas' Church, London 8-11 June 1982. +℗ 1983 Decca Music Group Limited +Originally released as [url=/master/1017067]L'Oiseau-Lyre DSDL 708[/url], 1983. + +CD 29 51:58 ADD +Recording location: St. Barnabas' Church, London, May 1981. +℗ 1982 Decca Music Group Limited +Editor's Note, Track 11: Skriking: From Middle English skriken, a borrowing from Old Norse skríkja (“to scream”) (compare Old English sċrīċ, sċrēċ > English shriek/screech), literally "bird with a shrill call," referring to a thrush, possibly imitative of its call. Attested from ca. 1573 (https://en.wiktionary.org/wiki/skrike). John Wilbye was born in 1574. +Originally released as [url=/release/5701499]L'Oiseau-Lyre DSLO 597[/url], 1982. + +CD 30 50:08 DDD +Recording: All Saints Church, Petersham, Surrey, 30 June-2 Jul 1977. +℗ 1978 Decca Music Group Limited +Originally released as [url=/master/826376]L'Oiseau-Lyre DSLO 537[/url], 1977. + +CD 31 47:57 ADD +Recording location: Decca Studios, West Hampstead, London, 27 November-5 December 1978 +℗ 1979 Decca Music Group Limited +Originally released as [url=/master/1688385]L'Oiseau-Lyre DSLO 576[/url], 1979. + +CD 32 44:17 ADD +Recording Location: Decca Studios, West Hampstead, London, 12-14 February 1975. +℗ 1975 Decca Music Group Limited +Originally released as [url=/master/1285427]L'Oiseau-Lyre DSLO 12[/url], 1975. + +CD 33 51:39 ADD +Recording location: Christ Church, Sutton, Surrey, April 1978. +℗ 1983 Decca Music Group Limited +℗ 1978 The Folio Society Limited, London, England +Originally released as [url=/master/1342219]L'Oiseau-Lyre DSLO 606[/url], 1983. + +CD 34 65:24 ADD +Recording location: Decca Studios, West Hampstead, London, 12-17 May 1980. +℗ 1981 Decca Music Group Limited +Originally released as [url=/master/685767]L'Oiseau-Lyre DSLO 596[/url], 1981. + +CD 35 51:18 ADD +Recording Location: Decca Studios, West Hampstead, 16-19 September 1980 +℗ 1983 Decca Music Group Limited +Originally released as [url=/release/5139443]L'Oiseau-Lyre DSLO 599[/url], 1983. + +CD 36 84:38 ADD +Recording Location: The Adlam-Burnett collection of historical keyboard instruments, Finchcocks, Goudhurst, Kent, June 1975 +℗ 1976 Decca Music Group Limited +Originally released as [url=/master/1296864]L'Oiseau-Lyre DSLO 566[/url] (tracks 1-13), 1979; [url=/master/827924]L'Oiseau-Lyre 29D1-3[/url] (tracks 14-17), 1976. + +CD 37 43:33 ADD +Recording Location: All Saints' Church, Petersham, Surrey, 29 March 1974 +℗ 1977 Decca Music Group Limited +Originally released as [url=/master/1497868]L'Oiseau-Lyre DSLO 510[/url], 1977. + +CD 38 52:23 | CD 39 47:33 | Total timing: 99:56 ADD +Recording Locations: Knole House, Kent, 28 April 1981 (organ [English, c. 1523]); Ham House, Surrey, 7-9 May 1981 (spinet, [Marco Jadra, Italian 1568] & virginal [Thomas White. London 1642]); Fitzwilliam Museum, Cambridge, 11 May 1981 (harpsichord [Italian, 16th century]) +℗ 1977 Decca Music Group Limited +Originally released as [url=/master/1052670]L'Oiseau-Lyre D261D2[/url], 1981. + +CD 40 50:32 | CD 41 42:37 | Total timing: 93:09 DDD +Recording Location: Germanisches Nationalmuseum, Nuremberg, 31 May-6 Jun 1981. +℗ 1982 The Decca Record Company Limited +Played on three harpsichords: tracks 40-1 to 40-4, 40-8, 41-6 to 41-10: Giovanni Battista Giusti, Lucca 1681; tracks 40-5, 40-9, 40-10: Anon., Italian ca. 1650; tracks 40-6, 40-7, 41-1 to 41-3, 41-5: Carlo Grimaldi, Messina 1697, and Virginal on track 41-4: Dominicus Pisaurensis, Venice 1540 +Originally released as [url=/master/1283930]L'Oiseau-Lyre D260D1/2[/url], 1982. + +CD 42 75:31 DDD +Recording location: Forde Abbey, Chard, Somerset, 26 March 1984 +℗ 1986 Decca Music Group Limited +Originally released as [url=/master/1400941]L'Oiseau-Lyre 414 148-2[/url], 1986. + +CD 43 52:55 ADD +Recording Location: Decca Studios, West Hampstead, 25-27 June 1979 +℗ 1980 Decca Music Group Limited +Originally released as [url=/master/1283930]L'Oiseau-Lyre DSLO 587[/url], 1980. + +CD 44 60:02 DDD +Recording Location: Decca Studios, West Hampstead, London, 13-28 February 1978 +℗ 1979 Decca Music Group Limited +Note: Total time for Sett No. 8 In D Major is 8:03, not 11:12 as listed on sleeve back and booklet. +Originally released as [url=/master/820152]L'Oiseau-Lyre DSLO 564[/url], 1979. + +CD 45 58:27 ADD +Recording Location: Decca Studios, West Hampstead, London, UK, 6-8 December 1978 +℗ 1980 Decca Music Group Limited +Originally released as [url=/master/1256655]L'Oiseau-Lyre DSLO 545[/url], 1980. + +CD 46 75:00 ADD +Recording location: Decca Studios, West Hampstead, London, 27-30 January 1976. +℗ 1976 Decca Music Group Limited +Originally released as [url=/master/955440]L'Oiseau-Lyre DSLO 580-9[/url], 1976. + +CD 47 62:27 ADD +Recording location: Decca Studios, West Hampstead, London, 26-28 January 1976. +℗ 1976 Decca Music Group Limited +Originally released as [url=/master/1041160]L'Oiseau-Lyre DSLO 517[/url], 1976. + +CD 48 50:26 DDD +Recording location: Henry Wood Hall, London, 21-23 March 1985 +℗ 1986 Decca Music Group Limited +Originally released as [url=/master/1041160]L'Oiseau-Lyre 414 633-2[/url], 1976. + +CD 49 60:34 DDD +Recording location: Henry Wood Hall, London, 15-17 April 1988. +℗ 1990 Decca Music Group Limited +Originally released as [url=/release/8083476]L'Oiseau-Lyre 425 610-2[/url], 1990. + +CD 50 69:32 ADD +Recording location: Church of St George the Martyr, London, 11-13 May 1981 +℗ 1982 Decca Music Group Limited +Originally released as [url=/master/1250138]L'Oiseau-Lyre DSLO 600[/url], 1983.Needs Vote0Music For Holy Week967691AnonymousAnon.Composed By4443515Barbara Katherine JonesConductor [Direction]1341888Schola AntiquaEnsemble1169741Alexander BlachlyMusician [Schola Antiqua]1448299Eric MentzelMusician [Schola Antiqua]6686872Patrick Mason (4)Musician [Schola Antiqua]1668684Peter Becker (4)Musician [Schola Antiqua]1341880R. John BlackleyMusician [Schola Antiqua], Conductor [Direction]1-1Hymn | Vexillis3:581-2Maundy Thursday | Introit & Kyrie3:561-3Gradual2:451-4Offertory5:341-5Sanctus0:541-6Communion2:501-7Good Friday | First Responsory5:411-8Second Responsory8:361-9Improperia6:411-10Antiphon: Ecce Lignum Crucis1:481-11Antiphon: Crucem Tuam0:591-12Antiphon: Cum Fabricator Mundi4:301-13Responsorial Hymn: Crux Fidelis / Pange Lingua12:62Ce Diabolic Chant - Ballades, Rondeaus And Virelais Of The Late Fourteenth Century2-1Prophilias, Un Nobiles De Roume (Ballade)2:161274039Margaret PhilpotAlto Vocals4320833Johannes SuzoyJohannes Suzoy (Jo Susay)Composed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals2-2A L'Arbre, Sec Puis Estre Comparé (Ballade)1:284320833Johannes SuzoyJohannes Suzoy (Jo Susay)Composed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-3Pictagoras, Jabol Et Orpheûs (Ballade)3:281034911Michael George (3)Baritone Vocals4320833Johannes SuzoyJohannes Suzoy (Jo Susay)Composed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-4Je Me Merveil / J'ay Pluseurs Fois (Ballade)3:441014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals2-5En Ce Gracieux Tamps Joli (Virelai)2:131014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-6Fuions De Ci, Fuions, Povre Compaigne (Ballade)3:09441318Geoffrey ShawBaritone Vocals1034911Michael George (3)Baritone Vocals1014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-7Dieux Gart Qui Bien Le Chanters (Rondeau)7:334320834Guido de LangeGuidoComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-8Or Voit Tout En Aventure (Ballade)3:01441318Geoffrey ShawBaritone Vocals1034911Michael George (3)Baritone Vocals4320834Guido de LangeGuidoComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-9La Harpe De Melodie (Virelai)3:361014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals2-10En Attendant Esperance E Conforte (Ballade)3:421014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2-11Tel Me Voit Et Me Regarde (Virelai)3:191014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2-12Si Con Cy Gist Mon Couer En Grief Martire (Ballade)1:571014032Jacob de SenlechesJacob (Jacquemins de) SenlechesComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-13Le Sault Perilleux A L'Aventure Prins (Ballade)2:024320836Johannes GaliotComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2-14En Attendant D'avoir La Douce Vie (Rondeau)7:26441318Geoffrey ShawBaritone Vocals1034911Michael George (3)Baritone Vocals4320836Johannes GaliotComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-15En Albion De Flins Environee (Ballade)2:51967691AnonymousAnon.Composed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals2-16Se J'ay Perdu Toute Ma Part (Rondeau)9:06967691AnonymousAnon.Composed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsembleCarmina Burana Vol. 11810320Allan ParkesBaritone Vocals1034911Michael George (3)Baritone Vocals741876Simon Grant (4)Bass Vocals967691AnonymousAnon.Composed By483881Philip PickettConductor [Direction]483878New London ConsortEnsemble483879Catherine BottSoprano Vocals870700Sally DunkleySoprano Vocals421968Tessa BonnerSoprano Vocals1023088Andrew King (5)Tenor Vocals3-1In Gedeonis Area (CB 37)4:243-2Homo, Quo Vigeas Vide! (CB 22)3:433-3Ecce Torpet Probitas (CB 3)7:113-4Nomen A Solemnibus (CB 52)4:323-5Planctus Ante Nescia (CB 14★)10:423-6Michi Confer, Venditor (CB 16★)2:473-7Olim Sudor Herculis (CB 63)9:333-8Procurans Odium (CB 12)1:543-9Dulce Solum (CB 119)5:273-10Axe Phebus Aureo (CB 71)3:333-11Alte Clamat Epicurus (CB 211)5:533-12Exiit Diluculo (CB 90)1:533-13Hiemali Tempore (CB 203)3:453-14Tempus Est Iocundum (CB 179)3:14Llibre Vermell1034911Michael George (3)Baritone Vocals [Chorus]959703Robert Evans (2)Baritone Vocals [Chorus]836757Stephen Charlesworth (2)Baritone Vocals [Chorus]741876Simon Grant (4)Bass Vocals [Chorus]837701Mark RowlinsonBass-Baritone Vocals [Chorus]967691AnonymousAnon.Composed By483881Philip PickettConductor [Direction]483878New London ConsortEnsemble900027Catherine KingMezzo-soprano Vocals [Chorus]1810333Kristine SzulikMezzo-soprano Vocals [Chorus]2567307Alison WraySoprano Vocals [Chorus]483879Catherine BottSoprano Vocals [Chorus]367325Olive SimpsonSoprano Vocals [Chorus]1949867Sara StoweSoprano Vocals [Chorus]421968Tessa BonnerSoprano Vocals [Chorus]1023088Andrew King (5)Tenor Vocals [Chorus]4-1O Virgo Splendens7:13483879Catherine BottSoprano Vocals421968Tessa BonnerSoprano Vocals900027Catherine KingMezzo-soprano Vocals1034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals4-2Stella Splendens7:34483879Catherine BottSoprano Vocals421968Tessa BonnerSoprano Vocals900027Catherine KingMezzo-soprano Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals1034911Michael George (3)Baritone Vocals4-3Laudemus Virginem5:13483879Catherine BottSoprano Vocals421968Tessa BonnerSoprano Vocals900027Catherine KingMezzo-soprano Vocals836757Stephen Charlesworth (2)Baritone Vocals1034911Michael George (3)Baritone Vocals741876Simon Grant (4)Bass Vocals4-4Mariam Matrem Virgenem4:42483879Catherine BottSoprano Vocals4-5Polorum Regina2:314-6Cuncti Simus Concanentes9:321034911Michael George (3)Baritone Vocals4-7Splendens Ceptigera5:06483879Catherine BottSoprano Vocals421968Tessa BonnerSoprano Vocals900027Catherine KingMezzo-soprano Vocals836757Stephen Charlesworth (2)Baritone Vocals1034911Michael George (3)Baritone Vocals741876Simon Grant (4)Bass Vocals4-8Los Set Goyts10:46483879Catherine BottSoprano Vocals1949867Sara StoweSoprano Vocals4-9Imperayritz De La Ciutat Joyosa10:361023088Andrew King (5)Tenor Vocals4-10Ad Mortem Festinamus5:59The Feast Of Fools1810333Kristine SzulikAlto Vocals [Chorus]959703Robert Evans (2)Baritone Vocals [Chorus]1034911Michael George (3)Baritone Vocals [Chorus], Soloist836757Stephen Charlesworth (2)Baritone Vocals [Chorus], Soloist741876Simon Grant (4)Bass Vocals [Chorus], Soloist967691AnonymousAnon.Composed By483881Philip PickettConductor [Direction]483878New London ConsortEnsemble4507603Ana-María RincónSoprano Vocals [Chorus]900027Catherine KingSoprano Vocals [Chorus]304522Jacqueline BarronSoprano Vocals [Chorus]4882424Jenevora WilliamsSoprano Vocals [Chorus]1582036Julia GoodingSoprano Vocals [Chorus]367325Olive SimpsonSoprano Vocals [Chorus]421968Tessa BonnerSoprano Vocals [Chorus]483879Catherine BottSoprano Vocals [Chorus], Soloist918927John Mark AinsleyTenor Vocals [Chorus], Soloist5-1First Vespers - Lux Hodie0:391034911Michael George (3)Baritone Vocals5-2Orientis Partibus (Conductus Ad Tabulam)2:315-3Veni Doctor Previe5:241034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-4Hec Est Clara Dies1:29836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-5Music From The Office | Festa Januaria0:521034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-6Verbum Patris Humanatur2:35483879Catherine BottSoprano Vocals421968Tessa BonnerSoprano Vocals918927John Mark AinsleyTenor Vocals1034911Michael George (3)Baritone Vocals5-7Salvatoris Hodie Perotin6:23918927John Mark AinsleyTenor Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-8The Drinking Bout In The Cathedral Porch | Kalendas Ianuarius3:05483879Catherine BottSoprano Vocals900027Catherine KingSoprano Vocals1034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-9Mass Of The Asses, Drunkards And Gamblers | Dies Festa Colitur3:005-10Kyrie Asini1:291034911Michael George (3)Baritone Vocals741876Simon Grant (4)Bass Vocals5-11Lux Optata Claruit3:355-12Gambler's Prayer / Malediction1:38918927John Mark AinsleyTenor Vocals5-13Orientis Partibus (Conductus Subdiaconi Ad Epistolam)2:231034911Michael George (3)Baritone Vocals5-14Graduale Bachi0:47918927John Mark AinsleyTenor Vocals5-15Sequentia: Vinum Bonum2:495-16Quantus Bachi1:37483879Catherine BottSoprano Vocals5-17Hunc Diem / Ite Missa Est / Deo Gratias1:141034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-18.1Tityri Tu Patule2:005-18.2Music From The Office5-19Hac In Die Salutari1:301034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals959703Robert Evans (2)Baritone Vocals5-20Procedenti Puero5:031034911Michael George (3)Baritone Vocals5-21Notem Fecit Dominus2:381034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals5-22Verbum Patris Hodie2:145-23Second Vespers | The Ceremony Of The Baculus | Deus In Adiutorium2:261034911Michael George (3)Baritone Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-24Magnificat1:29918927John Mark AinsleyTenor Vocals5-25Anni Novi Novitas1:515-26Baculi Sollempnia0:39483879Catherine BottSoprano Vocals421968Tessa BonnerSoprano Vocals5-27Gregis Pastor Tityrus3:545-28Tityri Tu Patule (Conductus Ad Poculum)1:58918927John Mark AinsleyTenor Vocals836757Stephen Charlesworth (2)Baritone Vocals741876Simon Grant (4)Bass Vocals5-29The Banquet | Novus Annus Dies Magnus2:165-30Hac In Anni Janua3:255-31Processional - Verbum Caro Factum Est1:56The Pilgrimage To Santiago1810333Kristine SzulikAlto Vocals [Chorus], Soloist1034911Michael George (3)Baritone Vocals [Chorus]959703Robert Evans (2)Baritone Vocals [Chorus], Soloist836757Stephen Charlesworth (2)Baritone Vocals [Chorus], Soloist741876Simon Grant (4)Bass Vocals967691AnonymousAnon.Composed By483881Philip PickettConductor [Direction], Score Editor [Editions And Performing Versions By]483878New London ConsortEnsemble4882424Jenevora WilliamsMezzo-soprano Vocals [Chorus]900027Catherine KingMezzo-soprano Vocals [Chorus], Soloist4507603Ana-María RincónSoprano Vocals [Chorus]2102457Jacqueline BrownSoprano Vocals [Chorus]1582036Julia GoodingSoprano Vocals [Chorus]367325Olive SimpsonSoprano Vocals [Chorus]483879Catherine BottSoprano Vocals [Chorus], Soloist421968Tessa BonnerSoprano Vocals [Chorus], Soloist918927John Mark AinsleyTenor Vocals [Chorus], Soloist6-1Navarre And Castile | Quen A Virgen Ben Servira8:186-2Belial Vocatur/Tenor2:046-3Surrexit De Tumulo1:306-4Non E Gran Causa9:496-5Ex Illustri2:006-6Alpha Bovi/Domino1:476-74 Planctus14:226-8Verbum Bonum Et Suave3:356-8Agnus Dei/Regula Moris3:026-9Fa Fa Mi Fa/Ut Re Mi Ut0:576-11Dum Pater Familias5:267-1León And Galicia | De Grad'a Santa Maria17:267-2Annua Gaudia3:087-3Ben Com'aos7:447-4Regi Perennis4:357-5Non Sofre Santa Maria Por Dereito Ten A Virgen5:457-6Nostra Phalanx3:187-7A Madre De Deus6:457-8Congaudeant Catholici4:457-97 Cantigas De Amigo12:367-10Dum Pater Familias5:47Le Lay De La Fonteinne27:25833970Guillaume de MachautComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble1502289Timothy DaviesMusician [The Medieval Ensemble], Lute, Gittern1502291Peter Davies (3)Musician [The Medieval Ensemble], Psaltery, Harp2088939Robert Cooper (6)Musician [The Medieval Ensemble], Rebec, Fiddle361600Rogers Covey-CrumpMusician [The Medieval Ensemble], Tenor Vocals8-1Je Ne Cesse De Prier2:038-2Et Ou Porroit On Querir2:10522269Paul ElliottTenor Vocals1023088Andrew King (5)Tenor Vocals8-3C'est Celle Qui Par Ordonnance3:148-4Ces Trois Un A Po De Peinne2:12522269Paul ElliottTenor Vocals1023088Andrew King (5)Tenor Vocals8-5Et Qui De Ceste Eaue Prendroit2:278-6Mais Ceste Trinite2:12522269Paul ElliottTenor Vocals1023088Andrew King (5)Tenor Vocals8-7De La Duis Le Pere Nomme2:068-8Et Pour Ce Di Que Cil Troy2:09522269Paul ElliottTenor Vocals1023088Andrew King (5)Tenor Vocals8-9Pour Ce Te Pri1:258-10Mais De Tel Confort2:15522269Paul ElliottTenor Vocals1023088Andrew King (5)Tenor Vocals8-11He! Fonteinne De Concorde2:508-12Pour Laver Et Nettoier2:24Lay De Consolation833970Guillaume de MachautComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble Of LondonEnsemble1502289Timothy DaviesMusician [The Medieval Ensemble], Lute, Gittern1502291Peter Davies (3)Musician [The Medieval Ensemble], Psaltery, Harp2088939Robert Cooper (6)Musician [The Medieval Ensemble], Rebec, Fiddle361600Rogers Covey-CrumpMusician [The Medieval Ensemble], Tenor Vocals8-13Pour Ce Que Plus Proprement1:258-14Je Fui, Ma Dame De Pris1:538-15Et Quant Je Me Senti A Ce Mene1:118-16Et Vous, Ma Dame Honnoree2:318-17Ainsi Departant1:348-18Et Ce M'a Tenu En Joie1:558-19Helas! Celle Douce Vie1:568-20Quar Ce Que J'ay Plus Doubte Que Mourir2:118-21Et Elle Est, A Dire Voir2:158-22Je Ne Scay1:248-23Ma Tres Doulce Dame Excellente1:358-24"Amis, Tieng Certainnement"1:34Knightly Passions: The Songs Of Oswald von Wolkenstein9-1Ain Guet Geporen Edelman (Monophonic)7:531034911Michael George (3)Baritone Vocals844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortVielle9-2Ain Guet Geporen Edelman (Polyphonic)5:401034911Michael George (3)Baritone Vocals741876Simon Grant (4)Bass Vocals844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483879Catherine BottSoprano Vocals9-3Der Oben Swebt8:38844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortHarp934790Paul Agnew (2)Tenor Vocals9-4Frölich, Zärtlich, Lieplich3:481034911Michael George (3)Baritone Vocals844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]934790Paul Agnew (2)Tenor Vocals483878New London ConsortVielle [2 Vielles]9-5Der Mai Mit Lieber Zal2:47844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortLute, Vielle483879Catherine BottSoprano Vocals9-6Der Mai Mit Lieber Zal 1:40844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortEnsemble483881Philip PickettOrganWolauff, Gesell3:27844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]9-7.1Wolauff, Gesell483878New London ConsortVielle, Lute9-7.2Wolauff, Gesell934790Paul Agnew (2)Tenor Vocals483878New London ConsortVielle [2 Vielles], Gittern, Harp1034911Michael George (3)Baritone VocalsDu Ausserweltes Schöns Mein Herz844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]9-8.1Du Ausserweltes Schöns Mein Herz483878New London ConsortLute [2 Lutes]9-8.2Du Ausserweltes Schöns Mein Herz934790Paul Agnew (2)Tenor Vocals483878New London ConsortVielle [2 Vielles], Gittern, Harp9-9Frölich Geschrai So Well Wir Machen1:44844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483879Catherine BottSoprano Vocals483878New London ConsortVielle [2 Vielles], Gittern, Harp9-10Ach Senliches Leiden3:01844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]934790Paul Agnew (2)Tenor Vocals9-11Stand Auff, Maredel2:51844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortRecorder, Vielle, Harp, Lute483879Catherine BottSoprano Vocals934790Paul Agnew (2)Tenor Vocals9-12Grasselick Lif2:121034911Michael George (3)Baritone Vocals844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortVielle [2 Vielles]9-13Wach Auff, Mein Hort!2:54844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortLute, Harp9-14Wach Auff, Mein Hort!2:02844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483881Philip PickettOrgan9-15"Nu Huss" Sprach Der Michel von Wolkenstein2:521034911Michael George (3)Baritone Vocals844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortVielle [2 Vielles]9-16Durch Barbarei, Arabia9:051034911Michael George (3)Baritone Vocals844167Oswald von WolkensteinComposed By483881Philip PickettConductor [Direction]483878New London ConsortRecorder, Rebec, Vielle, Lute [2 Lutes], Timpani [Nakers], Percussion [Tabor]Ockeghem - Complete Secular Music10-1Ma Bouche Rit Et Ma Pense Pleure5:131274039Margaret PhilpotAlto Vocals441318Geoffrey ShawBaritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-2La Despourveue Et La Bannye6:03833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By10-3D'un Autre Amer Mon Cueur S'abesseroit 4:301274039Margaret PhilpotAlto Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By10-4Quant Ce Viendra Au Droit Destrainer5:25833198Johannes OckeghemComposed By1170316Antoine BusnoisComposed By [Also Attrib.To]1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-5Il Ne M'en Chault Plus De Nul Ame3:54833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-6Presque Traqinsi Ung Peu Moins Qu'estre Mort5:54833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-7Ma Maistresse Et Ma Plus Grant Amye5:03833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By10-8Les Desleaux Ont La Saison4:41833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-9Mort Tu As Navre De Ton Dart7:15441318Geoffrey ShawBaritone Vocals1034911Michael George (3)Baritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-10Quant De Vous Seul Je Pers La Veue5:02833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By10-11Au Travail Suis Que Peu De Gens Croiroient4:501274039Margaret PhilpotAlto Vocals441318Geoffrey ShawBaritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By10-12Prenez Sur Moi Vostre Exemple Amoureux5:11441318Geoffrey ShawBaritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-1Fors Seulement L'actente Que Meure7:08833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-2L'autre D'antan L'autrier Passa2:401274039Margaret PhilpotAlto Vocals441318Geoffrey ShawBaritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-3S'elle M'amera Je Ne Scay4:23441318Geoffrey ShawBaritone Vocals1034911Michael George (3)Baritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-4O Rosa Bella O Dolce Anima Mia3:30833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-5Tant Fuz Gentement Rejouy4:231274039Margaret PhilpotAlto Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-6Je N'ay Dueil Je Ne Suis Morte5:14833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-7Malheur Me Bat2:11833198Johannes OckeghemComposed By5878319Abertijne MalcourtMalcourtComposed By [Also Attrib. To]3184949Johannes MartiniMartiniComposed By [Also Attrib. To]1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-8Se Vostre Cuer1:21833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-9Qu'es Mi Vida Preguntays2:29833198Johannes OckeghemComposed By2278183Johannes CornagoComposed By [Original Three-Part Version By]1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-10Qu'es Mi Vida Preguntays3:07833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-11Je N'ay Dueil1:50833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-12Ce N'est Pas Jeu Desloigner Ce Qu'on Ame6:53441318Geoffrey ShawBaritone Vocals1670300Hayne Van GhizeghemHayne van GhizeghemComposed By [Also Attrib.To]833198Johannes OckeghemComposed By [Attrib. To]1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-13Resjois Toy Terre De France2:56441318Geoffrey ShawBaritone Vocals1034911Michael George (3)Baritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-14Departez Vous1:18833198Johannes OckeghemComposed By833904Guillaume DufayDufayComposed By [Also Attrib.To]1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-15Ung Autre L'a N'en Queres Plus4:20833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals967691AnonymousAnon.Text By11-16Autre Venus Estes Sans Faille4:271274039Margaret PhilpotAlto Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-17Baissiez Moi Dont Fort1:34833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text By11-18Fors Seulement Contre Ce Qu'ay Promis7:411034911Michael George (3)Baritone Vocals833198Johannes OckeghemComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble967691AnonymousAnon.Text ByMatteo Da Perugia - Secular Works12-1Sera Quel Zorno May6:17282643Paul HillierBaritone Vocals1106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1092675John ElwesTenor Vocals12-2Dame Que J'aym2:371106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1502289Timothy DaviesLute1502291Peter Davies (3)Recorder12-3Pres Du Soloil3:381106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1502291Peter Davies (3)Flute1502289Timothy DaviesLute [Mandora]12-4Dame D'Honour4:211502289Timothy DaviesBagpipes [Cornemuse]1106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1502289Timothy DaviesLute12-5Dame Souvrayne1106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble1502289Timothy DaviesLute12-6Trover Ne Puis Acunement Confort6:56282643Paul HillierBaritone Vocals1106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502291Peter Davies (3)Ensemble2088939Robert Cooper (6)Fiddle1092675John ElwesTenor Vocals12-7Pour Bel Accuiel4:371502289Timothy DaviesBagpipes [Cornemuse]1106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1502289Timothy DaviesLute12-8Ne Me Chaut2:411106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble1502289Timothy DaviesLute2088939Robert Cooper (6)Rebec12-9Se Je Me Plaing2:261106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1502289Timothy DaviesLute [Mandora]1092675John ElwesTenor Vocals12-10Belle Sans Per3:401106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble1502291Peter Davies (3)Flute1502289Timothy DaviesLute [Mandora]12-11Helas Merci6:021106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble1092675John ElwesTenor Vocals12-12Gia De Rete D'amor4:111502289Timothy DaviesBagpipes [Cornemuse]282643Paul HillierBaritone Vocals1106854Matteo Da PerugiaComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble2088939Robert Cooper (6)Fiddle1502289Timothy DaviesLute1092675John ElwesTenor VocalsSweet Is The Song - Music Of Troubadours And Trouvères13-1Reis Glorios, Verais Lums E Clartatz4:43844184Guiraut de BornelhComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-2Trop Est Mes Maris Jalos2:31844161Etienne de MeauxComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-3Lanquan Li Jorn Son Lonc En May6:171208917Jaufré RudelComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-4Desconfortez, Plains D'ire Et De Pesance8:28844183Gace BruléComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-5Fine Amours En Esperance3:215927903Audefroid Le BâtardComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-6Can Vei La Lauzeta Mover6:23844157Bernart de VentadornComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-7Bele Yolanz En Ses Chambres Seoit3:36967691AnonymousAnon.Composed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-8A Chantar M'er De So Qu'ieu Non Volria5:23844186Comtessa de DiaLa Comtessa de DiaComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-9Deus Est Ausi Comme Li Pellicans5:27833207Thibault De ChampagneThibault de Champagne, Roi de NavarreComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-10Onques N'amai Tant Que Jou Fui Amee3:552311898Richard De FournivalRichart de FournivalComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-11S'ie-us Quer Conselh, Bell'ami' Alamanda5:59844184Guiraut de BornelhComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano Vocals13-12Fortz Chausa Es Que Tot Lo Major Dan9:22833215Gaucelm FaiditComposed By483881Philip PickettScore Editor [Editions And Performing Versions By]483879Catherine BottSoprano VocalsGuillame Dufay - Secular Music14-1Ce Moys De May Soyons Lies Et Joyeux (vi, 59)3:041034911Michael George (3)Baritone Vocals282643Paul HillierBaritone Vocals833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-2Je N'ai Doubte Fors Que Des Envieux (vi, 70)1:16833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-3Se La Face Ay Pale (vi, 46)2:471034911Michael George (3)Baritone Vocals833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-4J'ay Grant (Dolour) (vi, 82)1:24833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-5Par Le Regard De Vos Beaux Yeux (vi, 88)3:50833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-6Resvelons Nous, Resvelons, Amoureux (vi, 51)1:12833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-7Ma Belle Dame Souveraine (vi, 63)3:40833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble1092675John ElwesTenor Vocals522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals14-8Trop Lonc Temps Ai Este En Desplaisir (vi, 80)1:38833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-9Dona I Ardenti Ray (vi, 10)1:47833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble14-10Helas, Et Quant Vous Veray? (vi, 56)1:25833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-11J/ay Mis Mon Cuer Et Me Pensee (vi, 28)1:181034911Michael George (3)Baritone Vocals282643Paul HillierBaritone Vocals833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-12O Tres Piteulx / Omnes Amici Ejus (Lamentatio Sanctae Matris Ecclesiae Constrantinopolitanae) (vi, 19)3:11833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-13He, Compaignons Resvelons Nous (vi, 68)3:33833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals14-14Puisque Celle Qui Me Tient En Prison (vi, 82)0:55833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-15Entre Vous, Gentils Amoureux (vi, 49)3:15833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-16Mille Bonjours Je Vous Presente (vi, 81)1:24833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-17Je Me Complains Piteusement (vi, 29)1:53833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble1092675John ElwesTenor Vocals522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals14-18Entre Les Plus Plaines D'anoy (vi, 83)1:01833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-19Je Vous Pri, Mon Tres Doulx Ami/Ma Tres Douce Amie/Tant Que Mon Argent Dury (vi, 56)1:351034911Michael George (3)Baritone Vocals282643Paul HillierBaritone Vocals833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals14-20La Belle Se Siet Au Piet De La Tour (vi, 12)1:33833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals14-21Portugaler (vi, 106)2:40833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-22J'atendray Tant Qu'il Vous Playra (vi, 61)1:401034911Michael George (3)Baritone Vocals282643Paul HillierBaritone Vocals833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble361600Rogers Covey-CrumpTenor Vocals14-23Adieu Ces Bon Vins De Lannoys (vi, 50)4:05833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble14-24Les Douleurs, Dont Me Sens Tel Somme (vi, 97)5:28833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals361600Rogers Covey-CrumpTenor Vocals14-25Belle, Vuelliés Costre Mercy Donner (vi, 66)4:28833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble14-26C'est Bien Raison De Devoir Essacier (vi, 31)833904Guillaume DufayComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsembleMissa Di Dadi30:001034911Michael George (3)Baritone Vocals282643Paul HillierBaritone Vocals743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]833205Charles BrettCountertenor Vocals836153Michael ChanceCountertenor Vocals1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals15-1Kyrie2:1515-2Gloria6:3115-3Credo8:0715-4Sanctus – Benedictus4:2615-5Agnus Dei8:34Missa "Faisant Regretz"21:37833205Charles BrettBaritone Vocals1034911Michael George (3)Baritone Vocals282643Paul HillierBaritone Vocals743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]836153Michael ChanceCountertenor Vocals1034913Timothy PenroseCountertenor Vocals1502290The Medieval Ensemble of LondonEnsemble1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals15-6Kyrie2:2315-7Gloria3:4515-8Credo5:2715-9Sanctus – Benedictus6:0515-10Agnus Dei4:12Josquin Desprez - Complete Three-Part Secular Music16-1Mon Mary M'a Diffamée (Chanson Rustique) (Voices)1:13743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-2Ce Povre Mendiant Pour Dieu / Pauper Sum Ego (Motet-Chanson) (Voices)1:40743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-3De Tous Biens Plaine (Instrumental)1:14743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-4Fortuna D'un Gran Tempo (Instrumental)1:06743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-5La Belle Se Siet (Chanson Rustique) (Voices)3:53743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-6Je Me... (Instrumental)2:47743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-7Que Vous Madame / In Pace In Idipsum (Motet-Chanson) (Voices)5:12743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-8Cela Sans Plus (Instrumental)1:16743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-9Je N'ose Plus... (Instrumental)1:16743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-10Si J'eusse Marion, Helas (Chanson Rustique) (Voices)1:53743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-11En L'ombre D'un Buissonnet Au Matinet (Chanson Rustique) (Voices)2:01743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-12Quant Je Vous Voye (Chanson Rustique) (Voices)1:14743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-13A La Mort On Prioit / Monstra Te Esse Matrem (Chanson Rustique) (Voices)1:32743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-14La Bernardina (Instrumental)0:55743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-15Fortuna Desperata (Instrumental)1:21743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-16Si J'ay Perdu Mon Amy (Chanson Rustique) (Voices)2:15743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-17Hélas Madame... (Instrumental)2:35743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-18La Plus Des Plus (Voices & Instruments)8:03743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-19Madame, Helas (Instrumental)1:33743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-20Ile Fantazies De Joskin (Instrumental)1:43743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-21Entré Je Suis En Grant Pensée (Chanson Rustique) (Voices)1:37743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble16-22En L'Ombre D'un Buissonnet Tout Au Long... (Chanson Rustique) (Voices)1:18743705Josquin Des PrésJosquin DesprezComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsembleHeinrich Isaac - Chansons, Frottole & Lieder17-1Fille, Vous Avez Mal Gardé1:46973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-2Par Ung Jour De Matinee0:57973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-3Et Qui La Dira2:05973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-4Helas Que Devra2:15973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-5Maudit Soit1:57973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-6J'ay Pris Amours2:02973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-7Je Ne Me Puis Vivre8:31973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-8Le Serviteur1:37973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-9Mon Pere M'a Donne Mari1:14973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-10Et Je Boi D'Autant1:05973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-11Donna, Di Dentro1:32973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-12Fortuna Desperata2:35973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-13Ne Più Bella Di Queste3:11973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-14Hora È Di Maggio1:26973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-15La Martinella1:56973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-16Un Dì Lieto Giamai4:18973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-17La Morra1:32973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-18Es Het Ein Baur Ein Töchterlein1:53973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-19O Venus Bant1:05973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-20Innsbruck, Ich Muss Dich Lassen3:00973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-21Ain Frewlich Wesen3:00973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-22Mich Wundert Hart5:491132530Ludwig Senfl?Senfl, Formerly Attrib. IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-23Zwischen Berg Und Tieffe Tal1:46973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-24Wann Ich Des Morgens0:57973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-25Der Hund4:14973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble17-26Greiner, Zancker1:10973822Heinrich IsaacComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsembleBartolomeo Tromboncino - Frottole18-1Ave Maria, Gratia Plena2:23836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-2Se Ben Hor Non Scopra El Foco1:21836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-3Che Debb'io Far? Che Me Consigli, Amore?2:39836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By504673Francesco PetrarcaPetrarchText By18-4Non Val Aqua Al Mio Gran Foco5:07836116Anthony RooleyConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble960926The Consort Of MusickeMusic By967691AnonymousAnon.Text By18-5Ite In Pace Suspir Fieri6:34836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-6A La Guerra2:36836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-7Si È Debile Il Filo3:20836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By504673Francesco PetrarcaPetrarchText By18-8O Sacrum Convivium1:39836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-9Ave Maria, Regina In Cielo4:09836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-10De[h] Si, Deh No2:02836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-11Benche'l Ciel Me T'habbi Tolto4:38836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-12Ostinato Vo Seguire2:55836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-13Hoe Che'l Ciel E La Terra2:14836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By504673Francesco PetrarcaPetrarchText By18-14Stavasi Amor Formendo1:05836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-15Vale, Diva, Vale In Pace4:55836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By967691AnonymousAnon.Text By18-16Vergine Bella Che Del Sol Vesitat4:03836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1759813Bartolomeo TromboncinoMusic By504673Francesco PetrarcaPetrarchText ByLe Chansonnier Cordiforme836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble967691AnonymousAnon.Text By19-1I Hora Gridar "Oime"2:421098157John York SkinnerCountertenor Vocals836379David Thomas (9)Bass Vocals837431Trevor Jones (4)Fiddle836116Anthony RooleyLute [Bass Lute]19-2II Ben Lo Sa Dio (Ballata)3:071274039Margaret PhilpotAlto Vocals1058304Frances KellyHarp1088123Alison CrumFiddle19-3III Dona Gentile (Rondeau)4:40833904Guillaume DufayComposed By1098157John York SkinnerCountertenor Vocals836379David Thomas (9)Bass Vocals837431Trevor Jones (4)Fiddle19-4IV Zentil Madona2:321151375John BedynghamJohannes BedynghamComposed By836115Emma KirkbySoprano Vocals1058304Frances KellyHarp1077175Christopher PageLute19-5V Chiara Fontana1:27836379David Thomas (9)Bass Vocals1092675John ElwesTenor Vocals19-6VI O Pelegrina Luce (First Setting)2:091098157John York SkinnerCountertenor Vocals1092675John ElwesTenor Vocals837431Trevor Jones (4)Fiddle1088123Alison CrumFiddle1058304Frances KellyHarp19-7VII O Rosa Bella4:311151375John BedynghamJohannes BedynghamComposed By [Composed Either By]1025303John DunstableJohn DunstapleComposed By [Or By]967691AnonymousAnon.Music By1088123Alison CrumFiddle837431Trevor Jones (4)Fiddle1058304Frances KellyHarp19-8VIII La Gracia Di Voi2:121098157John York SkinnerCountertenor Vocals1092675John ElwesTenor Vocals837431Trevor Jones (4)Fiddle19-9IX Perla Mia Cara2:141098157John York SkinnerCountertenor Vocals1092675John ElwesTenor Vocals836379David Thomas (9)Bass Vocals19-10X Morte Mercè2:532278183Johannes CornagoComposed By [Composed By Or After]1098157John York SkinnerCountertenor Vocals1092675John ElwesTenor Vocals836379David Thomas (9)Bass Vocals19-11XI Finir Voglio La Mia Vita0:47836115Emma KirkbySoprano Vocals837431Trevor Jones (4)Fiddle836116Anthony RooleyLute [Bass Lute]1058304Frances KellyHarp19-12XII O Pelegrina Luce (Second Setting)2:37836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals1058304Frances KellyHarp836116Anthony RooleyLute [Bass Lute]19-13XIII O Meschin' Inamorati3:03836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals836116Anthony RooleyLute [Bass Lute]20-1XIV Comme Ung Homme Desconforté (Rondeau)4:461098157John York SkinnerCountertenor Vocals1058304Frances KellyHarp836116Anthony RooleyLute [Bass Lute]837431Trevor Jones (4)Fiddle20-2XV S'il Vous Plaist Que Vostre Je Soye (Rondeau)5:501151373Johannes RegisComposed By836115Emma KirkbySoprano Vocals836379David Thomas (9)Bass Vocals1058304Frances KellyHarp20-3XVI L'aultre Jour Par Ung Matin (Ballade)3:031274039Margaret PhilpotAlto Vocals836379David Thomas (9)Bass Vocals1077175Christopher PageLute1088123Alison CrumFiddle20-4XVII J'ay Pris Amours (Rondeau)4:51836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals836116Anthony RooleyLute [Bass Lute]20-5XVIII L'autre D'antan L'autrier Passa2:27833198Johannes OckeghemComposed By1274039Margaret PhilpotAlto Vocals836379David Thomas (9)Bass Vocals1077175Christopher PageLute20-6XIX De Tous Biens Plaine (Rondeau)4:281670300Hayne Van GhizeghemHayne van GhizeghemComposed By1092675John ElwesTenor Vocals4363026Lewis Jones (7)Flute1077175Christopher PageLute836116Anthony RooleyLute [Bass Lute]20-7XX J'ay Moins De Bien (Bergerette)3:501170316Antoine BusnoisAntoine BusnoysComposed By1092675John ElwesTenor Vocals4363026Lewis Jones (7)Flute1077175Christopher PageLute836116Anthony RooleyLute [Bass Lute]20-8XXI Vostre Bruit Et Vostre Grant Fame (Rondeau)5:14833904Guillaume DufayComposed By1098157John York SkinnerCountertenor Vocals836379David Thomas (9)Bass Vocals837431Trevor Jones (4)Fiddle20-9XXII Cent Mille Escus (Rondeau)4:171685745Firminus CaronCaronComposed By1170316Antoine BusnoisAntoine BusnoysComposed By [Also Attrib. To]836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals1058304Frances KellyHarp836116Anthony RooleyLute [Bass Lute]20-10XXIII Le Souvenir De Vous Me Tue (Rondeau)3:071151371Robert MortonComposed By1274039Margaret PhilpotAlto Vocals1058304Frances KellyHarp836116Anthony RooleyLute [Bass Lute]20-11XXIV L'omme Bany De Sa Plaisance (Rondeau)4:192268207Jacques BarbignantBarbignantComposed By [Composed Either By]7663302Johannes FedéComposed By [Or By]836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals1058304Frances KellyHarp1088123Alison CrumFiddle20-12XXV N'aray Je Jamais Mieulx Que J'ay3:181151371Robert MortonComposed By836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals1088123Alison CrumFiddle1058304Frances KellyHarp836116Anthony RooleyLute [Bass Lute]20-13XXVI Le Serviteur Hault Guerdonné (Rondeau)5:53833904Guillaume DufayComposed By1098157John York SkinnerCountertenor Vocals836379David Thomas (9)Bass Vocals837431Trevor Jones (4)Fiddle20-14XXVII Fortune, Par Ta Cruaulté (Rondeau)5:491151370Johannes VincenetVincenetComposed By836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals836116Anthony RooleyLute [Bass Lute]20-15XXVIII Est Il Mercy Du Quoy L'on Peust Finer? (Rondeau)3:511170316Antoine BusnoisAntoine BusnoysComposed By836115Emma KirkbySoprano Vocals1058304Frances KellyHarp837431Trevor Jones (4)Fiddle21-1XXIX Comme Femme Desconfortee (Rondeau)6:321025298Gilles BinchoisBinchoisComposed By1274039Margaret PhilpotAlto Vocals837431Trevor Jones (4)Fiddle1088123Alison CrumFiddle21-2XXX Tout A Par Moy (Rondeau)6:52833949Walter FryeComposed By [Composed Either By]1025298Gilles BinchoisBinchoisComposed By [Or By]1274039Margaret PhilpotAlto Vocals837431Trevor Jones (4)Fiddle836116Anthony RooleyLute [Bass Lute]21-3XXXI Ma Bouche Rit (Bergerette)4:37833198Johannes OckeghemComposed By836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals1088123Alison CrumFiddle21-4XXXII Mon Seul Plaisir, Ma Doulce Joye (Rondeau)4:22836115Emma KirkbySoprano Vocals1088123Alison CrumFiddle1077175Christopher PageLute21-5XXXIII Ma Bouche Plaint (Rondeau)1:42836115Emma KirkbySoprano Vocals1088123Alison CrumFiddle1092675John ElwesTenor Vocals21-6XXXIV Vray Dieu D'amours3:581088123Alison CrumFiddle837431Trevor Jones (4)Fiddle1098157John York SkinnerCountertenor Vocals21-7XXXV Helas! Je N'ay Pas Osé Dire1:03836115Emma KirkbySoprano Vocals1077175Christopher PageLute1098157John York SkinnerCountertenor Vocals836379David Thomas (9)Bass Vocals1058304Frances KellyHarp836116Anthony RooleyLute [Bass Lute]21-8XXXVI Or Ay Je Perdu (Rondeau)4:521274039Margaret PhilpotAlto Vocals1077175Christopher PageLute836116Anthony RooleyLute [Bass Lute]21-9XXXVII Adieu Vous Dy (Rondeau)4:46836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals21-10XXXVIII Terriblement Suis Fortunee (Bergerette)4:20836115Emma KirkbySoprano Vocals1088123Alison CrumFiddle837431Trevor Jones (4)Fiddle21-11XXXIX De Mon Povoir Vous Veul Complaire (Rondeau)4:481274039Margaret PhilpotAlto Vocals836379David Thomas (9)Bass Vocals836116Anthony RooleyLute [Bass Lute]21-12XL Helas! N'aray Je Jamais Mieulx (Bergerette)2:27836115Emma KirkbySoprano Vocals1092675John ElwesTenor Vocals1088123Alison CrumFiddle1092675John ElwesTenor Vocals836116Anthony RooleyLute [Bass Lute]21-13XLI Quant Du Dire Adieu (Bergerette)3:131274039Margaret PhilpotAlto Vocals1088123Alison CrumFiddle837431Trevor Jones (4)Fiddle21-14XLII Je Ne Vis Oncques La Pareille (Rondeau)4:281092675John ElwesTenor Vocals1098157John York SkinnerCountertenor Vocals836379David Thomas (9)Bass Vocals21-15XLIII Faites Moy Sçavoir De La Belle (Rondeau)4:551025298Gilles BinchoisBinchoisComposed By [Composed Either By]833904Guillaume DufayComposed By [Or By]1274039Margaret PhilpotAlto Vocals1088123Alison CrumFiddle837431Trevor Jones (4)FiddleMi Verry Joy - Songs Of Fifteenth-Century Englishmen22-1Mi Verry Joy4:371151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-2O Rosa Bella3:521151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-3Le Serviteur6:371151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-4Myn Hertis Lust2:061151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-5Durer Ne Puis5:471151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-6Fortune Alas2:061151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-7Say Bylle To Hir6:341151375John BedynghamComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-8Puisque M'Amour4:321025303John DunstableComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-9Je Languis5:401025303John DunstableComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-10I Pray You Alle2:191025303John DunstableComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-11O Rosa Bella3:415927962HertHert [?John Herte]Composed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-12Alas Alas2:55833949Walter FryeComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-13"Watlin Frew"1:28833949Walter FryeComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-14So Ys Emprentid2:58833949Walter FryeComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsemble22-15Tout A Par Moy6:11833949Walter FryeComposed By1502291Peter Davies (3)Conductor [Direction]1502289Timothy DaviesConductor [Direction]1502290The Medieval Ensemble of LondonEnsembleLagrime Di San Pietro ... Con Un Motetto Nel Fine (Munich, 1595)47:43834703Roland de LassusOrlando de LassusComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1208174Cathy CassMusician [The Consort Of Musicke], Alto Vocals836761Mary NicholsMusician [The Consort Of Musicke], Alto Vocals606746Richard WistreichMusician [The Consort Of Musicke], Bass Vocals836115Emma KirkbyMusician [The Consort Of Musicke], Soprano Vocals870692Evelyn TubbMusician [The Consort Of Musicke], Soprano Vocals1023088Andrew King (5)Musician [The Consort Of Musicke], Tenor Vocals1023089Joseph CornwellMusician [The Consort Of Musicke], Tenor Vocals1088123Alison CrumMusician [The Consort Of Musicke], Viol1088122John Bryan (3)Musician [The Consort Of Musicke], Viol837444Mark CaudleMusician [The Consort Of Musicke], Viol1842269Peter TrentMusician [The Consort Of Musicke], Viol1669510Piet StryckersMusician [The Consort Of Musicke], Viol837437Sarah CunninghamMusician [The Consort Of Musicke], Viol837431Trevor Jones (4)Musician [The Consort Of Musicke], Viol3027382Luigi TansilloText By3042866Sylvia DimizianiVocal Coach [Italian Pronunciation Coacho]23-1I Il Magnanimo Pietro2:0823-2II Ma Gli Archi, Che Nel Petto Gli Avventaro2:0923-3III Tre Volte Haveva A L'Importuna Eaudace Ancella2:1023-4IV Qual'A L'Incontro di Quegli Occhi Santi2:2723-5V Giovane Donna Il Suo Bel Volto In Specchio Non Vide Mai2:0023-6VI Così Tal'hor (Benché Profane Cose...)1:5623-7VII Ogni Occhio Del Signor Lingua Veloce Parea1:5923-8VIII Nessun Fedel Trovai, Nessun Ortese2:2823-9IX Chi Ad Una Ad Una Raccontar Potesse Le Parole Di Sdegno2:1023-10X Come Falda Di Neve2:2423-11XI E Non Fu Il Pianot Suo Rivo O Torrente2:0123-12XII Quel Volto, Che Era Poco Inanzi Stato Asperso Tutto Di Color Di Morte2:1523-13XIII Veduto Il Miser Quanto Differente Dal Primo Stato Suo Si Ritrovava2:2923-14XIV E Vago D'Incontrar Chi Giusta Pena Desse Al Suo Grave Error2:1123-15XV Vattene, Vita, Va' (Dicea Piangendo)2:1023-16XVI O Vita Tropo Rea, Troppo Fallace2:1023-17XVII A Quanti Già Felici In Giovinezza Recò L'Undugio Tuo Lunghi Tormenti2:0923-18XVIII Non Trovava Mia Fé Sì Duro Intoppo2:0823-19XIX Queste Opre E Più, Che'l Mondo Ed Io Sapea2:0723-20XX Negando Il Mio Signor Mo Signor, Negai Quel Che Era2:2623-21XXI Vide Homo, Quae Pro Te Partior3:30834703Roland de Lassus?LassusText ByLe Lagrime D'Erminia In Stile Recitativo, Op. 6 (Parma, 1626)23:371053175Biagio MariniComposed By836116Anthony RooleyConductor [Direction], Musician [The Consort Of Musicke], Lute960926The Consort Of MusickeEnsemble837431Trevor Jones (4)Musician [The Consort Of Musicke], Bass Viol849183Jakob LindbergMusician [The Consort Of Musicke], Chitarrone836115Emma KirkbyMusician [The Consort Of Musicke], Soprano Vocals833213Nigel Rogers (2)Musician [The Consort Of Musicke], Tenor Vocals23-22In Solitario Piano (Nuntio)23-23Senxa Tancredi Viva (Erminia)23-24Cinque Ode8:13Pavans, Galliards And Other Short Aeirs ... (London 1599) - Selected Pieces24-1XI Pavan3:26517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-2XII Galliard0:59517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-3XXXIII Heres Paternus4:47517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-4XXXIV Muy Linda1:11517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-5XXI Infernum3:58517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-6XXII Galliard1:11517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-7XVII Paradizo2:35517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-8XVIII The Sighes1:35517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-9XXVII The Image Of Melancholly4:44517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-10XXVIII Ecce Quam Bonum1:20517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-11XLIX Pavana Ploravit5:01517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-12L Sic Semper Soleo1:20517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-13XXXI The Funerals4:32517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-14XXXII Galliard1:15517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-15LVI Almayne 1:03517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-16LX The Honiesuckle1:13517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-17LXIV As It Fell On A Holie Eve (Coranto)0:57517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsemble24-18LXV Heigh Ho Holiday (Coranto)4:13517167Anthony HolborneComposed By836116Anthony RooleyConductor [Direction]837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble3609861The Guildhall WaitsEnsembleDansereye 1551908940Tielman SusatoComposed By483881Philip PickettConductor [Direction]483878New London ConsortEnsemble843411Catherine LathamMusician [New London Consort], Alto Recorder472677Pamela ThorbyMusician [New London Consort], Alto Recorder25-1Fanfare (After 'La Morisque') (4 Trumpets, Timpani)2:02483881Philip PickettArranged By25-2Passe Et Medio / Reprise 'La Pingue' (2 Violins, 3 Viols, Harpsichord, 4 Lutes)1:2625-3Bergerette 'Sans Roch' / Reprise (2 Cornetts, 4 Sackbuts, Rauschpfeife, 3 Shawms, Curtal, Organ, Regal, Tabors, Side Drum, Tambourine)3:0825-4Den I. Ronde 'Pour Quoy' (2 Violins, 3 Viols, Harpsichord, Organ, Tabors)2:0225-5Den VII. Ronde 'Il Estoit Une Filette' (7 Recorders, Curtal, Organ, 5 Guitars, Side Drum)2:2925-6Den III. Ronde (4 Viols, Organ, Tabors)1:2725-7Den IV. Ronde (Cornett, Crumhorn, Sackbut, Curtal, Organ, Side Drum)0:4425-8Den V. Ronde ('Wo Bistu') (4 Racketts, Regal)0:5725-9Den VI. Ronde / Saltarelle (Violin, 4 Viols, 7 Recorders, Curtal, Harpsichord, Organ, Tabors)1:5125-10Den XI. Ronde / Aliud (2 Cornetts, 4 Sackbuts, 2 Violins, 4 Viols, 7 Recorders, Curtal, Regal, Organ, Harpsichord, 5 Guitars, Tabors, Tambourine)1:5225-11Bergerette 'Dont Vient Cela' / Reprise (4 Lutes)2:1825-12Danse De Hercules Oft Maticine / De Matrigale (4 Sorduns, Regal, Tabor)2:0625-13De Post (Cornett, Alto Cornett, Tenor Cornett, Serpent, Organ, Jingle Bells)0:5525-14Les Quatre Branles (7 Recorders, Curtal, Organ, 5 Guitars, Tambourine)1:5825-15Fagot (4 Curtals, Regal)0:5125-16Den Hoboeckendans (Hurdy-Gurdy, Drone Fiddle, Cittern, Curtal, Contrabass Viol, Rommelpot)1:4825-17Basse Danse 'Mon Desir' / Reprise 'Le Cueur Est Bon' (Violin, Bass Viol, 3 Lutes, Organ3:4525-18Den I. Allemagne / Recoupe(Cornett, 3 Sackbuts, 2 Violins, 4 Viols, 7 Recorders, Curtal, Organ, Harpsichord, 4 Lutes, Bass Drum, Tabors)3:3025-19Den II. Allemainge (4 Lutes)1:0225-20Den III. Allemainge (2 Violins, 2 Viols, Harpsichord)2:0125-21Den V. Allemainge (4 Flutes, 5 Guitars)0:4625-22Den VI. Allemainge (4 Crumhorns, Regal, Nakers)0:3125-23Den VII. Allemainge (Regal, Nakers)0:3825-24Den VIII. Allemainge / Recoupe / Recoupe Aliud Den Tenor Voer Den Discant (Cornett, 3 Sackbuts, 2 Violins, 4 Viols, 7 Recorders, Curtal, Organ, Harpsichord, 5 Guitars, Side Drums, Tabors)1:2825-25Bergerette ('La Brosse') (4 Lutes)2:1025-26Pavane 'La Bataille' (2 Cornetts, 4 Sackbuts, Serpent, Rauschpfeife, 3 Shawms, Curtal, Organ, Regal, Timpani, Side Drums)4:3125-27Pavane 'Mille Regretz' (Violin, 4 Viols, 3 Recorders, Curtal, Organ, 4 Lutes, Tabor)4:3125-28Den II. Gaillarde (Rauschpfeife, 3 Shawms, Curtal, Regal, Organ, Tabor)1:0725-29Den XI. Gaillarde (4 Sackbuts, Organ, Tabor, Bass Drum)0:4425-30Den IX. Gaillarde (4 Flutes, 5 Guitars, Tabor)0:3925-31Den IV. Gaillarde (Violin, 4 Viols, Harpsichord, Tabor)1:3725-32Den VII. Gaillarde (7 Recorders, Curtal, Organ, 5 Guitars, Tabor)1:2825-33Den X. Gaillarde 'Mille Ducas' (4 Crumhorns, Contrabass Rackett, Regal, Organ, Tabors)1:2925-34Den III. Gaillarde (2 Cornetts, 4 Sackbuts, Organ, Tabor, Bass Drum, Tambourine)1:2225-35Den XV. Gaillarde 'Le Tout' (2 Cornetts, 3 Sackbuts, 2 Violins, 3 Viols, 7 Recorders, Curtal, Organ, Regal, Harpsichord, 5 Guitars, Tabor, Side Drum, Bass Drum, Tambourine)1:3725-36Danse Du Roy / Reprise (2 Violins, 3 Viols, Harpsichord, Organ, Tabor, Tambourine)2:2625-37Entre Du Fol (Gemshorn, Rebec, Cittern, Contrabass Viol, Rommelpot, Shaker)1:0625-38Le Morisque (2 Cornetts, 4 Sackbuts, 2 Violins, 4 Viols, Rauschpfeife, 3 Shawms, Curtal, 3 Recorders, Organ, Regal, Harpsichord, 5 Guitars, Tabors, Jingle Bells, Tambourine, Cymbals)1:56A Musicall Banquet 16103016319Robert DowlandCompiled By [Collected By]836116Anthony RooleyConductor [Direction], Musician [Consort of Musicke], Lute960926The Consort Of MusickeEnsemble836379David Thomas (9)Musician [Consort of Musicke], Bass Viol837431Trevor Jones (4)Musician [Consort of Musicke], Bass Viol1098157John York SkinnerMusician [Consort of Musicke], Countertenor Vocals836115Emma KirkbyMusician [Consort of Musicke], Soprano Vocals871873Martyn HillMusician [Consort of Musicke], Tenor Vocals4877930Peter Stroud (4)Transcription By [Transcribed By]26-1I My Heavy Sprite, Oppress'd With Sorrow's Might2:36517167Anthony HolborneComposed By2936699George CliffordGeorge, Earl Of CumberlandText By26-2II Change Thy Mind Since She Doth Change3:071567741Richard Martin (9)Composed By2936701Robert Devereux (2)Robert, Earl Of EssexText By26-3III O Eyes, Leave Off Your Weeping3:081567744Robert Hales (2)Composed By3499879Nicholas BretonText By [Attrib.]26-4IV Go, My Flock, Go Get You Hence3:37967691AnonymousAnon.Composed By726825Sir Philip SidneyText By26-5V O Dear Life, When Shall It Be?4:09967691AnonymousAnon.Composed By726825Sir Philip SidneyText By26-6VI To Plead My Faith2:391993951Daniel BachelerComposed By2936701Robert Devereux (2)Robert, Earl Of EssexText By26-7VII In A Grove Most Rich Of Shade4:501567740Guillaume TessierComposed By726825Sir Philip SidneyText By26-8VIII Far From Triumphing Court8:44743704John DowlandComposed By7675931Sir Henry LeaText By26-9IX Lady, If You Spite Me2:22743704John DowlandComposed By967691AnonymousAnon.Text By26-10X In Darkness Let Me Dwell4:24743704John DowlandComposed By967691AnonymousAnon.Text By26-11XI Si Le Parler Et Le Silence3:441052027Pierre GuédronComposed By967691AnonymousAnon.Text By26-12XII Ce Penser Qui Sans Fin Tirannise Ma Vie3:331052027Pierre GuédronComposed By967691AnonymousAnon.Text By26-13XIII Vous Que Le Bonheur Rappelle2:281052027Pierre GuédronComposed By967691AnonymousAnon.Text By26-14XIV Passava Amor Su Arco Desarmado (Spanish)2:19967691AnonymousAnon.Composed By2936698Jorge de MontemayorText By26-15XV Sta Notte Mi Sognava (Italian)2:26967691AnonymousAnon.Composed By, Text By26-16XVI Vuestros Ojos Tienen D'Amor (Spanish)1:14967691AnonymousAnon.Composed By, Text By26-17XVII Se Di Farmi Morire2:39967691AnonymousAnon.Composed By, Text By26-18XVIII Dovrò Dunque Morire?2:09649494Giulio CacciniComposed By1499466Ottavio RinucciniText By26-19XIX Amarilli Mia Bella2:32649494Giulio CacciniComposed By6270549Alessandro GuariniA. GuariniText By26-20XX O Bella Più Che Le Stelle Diana (Italian)2:23967691AnonymousAnon.Composed By, Text ByQuinto Libro Dei Madrigali (1611) = Fifth Book Of Madrigals For Five Voices = Cinquième Livre De Madrigaux À Cinq Voix = Fünftes Buch Fünftstimmiger Madrigale844675Carlo GesualdoComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble27-1I Gioite Voi Col Canto2:38870692Evelyn TubbSoprano Vocals836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-2II S'io Non Miro Non Moro2:33870692Evelyn TubbSoprano Vocals836115Emma KirkbySoprano Vocals1023089Joseph CornwellTenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-3III Itene, O Miei Sospiri2:47870692Evelyn TubbSoprano Vocals836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-4IV Dolcissima Mia Vita2:25870692Evelyn TubbSoprano Vocals836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-5V O Dolorosa Gioia3:16870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-6VI Qual Fora, Donna2:06836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-7VII Felicissimo Sonno2:54836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-8VIII Se Vi Duol Il Mio Duolo3:04870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals836761Mary NicholsAlto Vocals1023089Joseph CornwellTenor Vocals606746Richard WistreichBass Vocals27-9IX Occhi Del Mio Cor Vita2:251023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals870692Evelyn TubbSoprano Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-10X Languisce Al Fin3:12836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-11XI Mercè Grido Piangendo3:36836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023089Joseph CornwellTenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals27-12XII O Voi, Troppo Felici1:37836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals27-13XIII Correte, Amanti, A Prova2:24836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals27-14XIV Asciugate I Begli Occhi3:20836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals27-15XV Tu M'uccidi, O Crudele2:35836115Emma KirkbySoprano Vocals1023089Joseph CornwellTenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals870692Evelyn TubbSoprano Vocals27-16XVI Deh, Coprite Il Bel Seno2:10836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals870692Evelyn TubbSoprano Vocals27-17XVII Poichè L'avida Sete (Prima Parte)2:1227-18XVIII Ma Tu, Cagion (Seconda Parte)2:16836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals836115Emma KirkbySoprano Vocals27-19XIX O Tenebroso Giorno2:10870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals27-20XX Se Tu Fuggi, Io Non Resto1:37836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023089Joseph CornwellTenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto Vocals27-21XXI "T'amo, Mia Vita!"2:25836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals606746Richard WistreichBass Vocals836761Mary NicholsAlto VocalsThomas Morley - Ayres & Madrigals28-1Arise, Awake, You Silly Shepherds Sleeping2:181208174Cathy CassAlto Vocals836761Mary NicholsAlto Vocals875351John Milne (2)Bass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble870692Evelyn TubbSoprano Vocals1023089Joseph CornwellTenor Vocals28-2Besides A Fountain2:04606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals1023088Andrew King (5)Tenor Vocals28-3No, No, No, No, Nigella3:001208174Cathy CassAlto Vocals1023082Francis SteeleBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble4322860Jacqueline Fox (2)Soprano Vocals554201Poppy HoldenSoprano Vocals1705551Philip SalmonTenor Vocals28-4Singing Alone Sat My Sweet Amarillis2:511208174Cathy CassAlto Vocals836761Mary NicholsAlto Vocals875351John Milne (2)Bass Vocals606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals28-5With My Love My Life Was Nestled2:10858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals28-6Mistress Mine, Well May You Fare2:33858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble1023088Andrew King (5)Tenor Vocals28-7Stay Heart, Run Not So Fast2:39836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals28-8Fire And Lightning From Heaven1:10858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals28-9Phillis, I Fain Would Die Now4:211208174Cathy CassAlto Vocals606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals1705551Philip SalmonTenor Vocals28-10Hard By A Crystal Fountain3:37606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals870692Evelyn TubbSoprano Vocals4322860Jacqueline Fox (2)Soprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals28-11In Every Place2:23836761Mary NicholsAlto Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals28-12O Grief, Ev'n On The Bud1:55836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1705551Philip SalmonTenor Vocals28-13Absence, Hear Thou My Protestation6:07858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble1023088Andrew King (5)Tenor Vocals28-14Deep Lamenting3:21606746Richard WistreichBass Vocals858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble870692Evelyn TubbSoprano Vocals1023089Joseph CornwellTenor Vocals28-15Sleep, Slumb'ring Eyes6:05858834Thomas MorleyComposed By, Lute836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals28-16Hark! Alleluia Cheerly2:06858834Thomas MorleyComposed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsembleFirst Set Of Madrigals (London, 1598)880941John WilbyeComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble29-1IV Weep, O Mine Eyes2:06875351John Milne (2)Bass Vocals29-2X Lady When I Behold2:19875351John Milne (2)Bass Vocals870692Evelyn TubbMezzo-soprano Vocals4322860Jacqueline Fox (2)Mezzo-soprano Vocals1023088Andrew King (5)Tenor Vocals29-3XI Thus Saith My Cloris Bright1:14836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-4XII Adieu Sweet Amarillis2:02836761Mary NicholsAlto Vocals606746Richard WistreichBass Vocals836115Emma KirkbySoprano Vocals1023089Joseph CornwellTenor Vocals29-5XIII Die Hapless Man2:01875351John Milne (2)Bass Vocals870692Evelyn TubbMezzo-soprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-6XVIII Lady, Your Words Do Spite Me1:44836761Mary NicholsAlto Vocals1023082Francis SteeleBass Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals29-7XIX Alas, What A Wretched Life Life This Is1:49836761Mary NicholsAlto Vocals1023082Francis SteeleBass Vocals606746Richard WistreichBass Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-8XXII Lady When I Behold The Roses2:36836761Mary NicholsAlto Vocals1023082Francis SteeleBass Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-9XXV When Shall My Wretched Life Give Place To Death?2:49836761Mary NicholsAlto Vocals1023082Francis SteeleBass Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-10XXVI Of Joys And Pleasing Pains I Late Went Singing (The First Part)2:241023082Francis SteeleBass Vocals29-11XXVII My Throat Is Sore, My Voice Is Hoarse With Skriking (The Second Part)2:18836761Mary NicholsAlto Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals29-12XXVIII Cruel Behold My Heavy Ending2:411208174Cathy CassAlto Vocals875351John Milne (2)Bass Vocals870692Evelyn TubbMezzo-soprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-13XXIX Thou Art But Young, Thou Sayest1:491208174Cathy CassAlto Vocals4322860Jacqueline Fox (2)Mezzo-soprano Vocals1023088Andrew King (5)Tenor Vocals29-14XXX Why Does Thou Shoot?1:30836761Mary NicholsAlto Vocals836115Emma KirkbySoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor VocalsSecond Set Of Madrigals (London, 1609)880941John WilbyeComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble29-15XVII Sweet Honey Sucking Bees (The First Part)1:4829-16XVIII Yet, Sweet, Take Heed (The Second Part)2:20606746Richard WistreichBass Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-17XXV Ye That Do Live In Pleasures2:21606746Richard WistreichBass Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals29-18XXVII O Wretched Man2:344322860Jacqueline Fox (2)Mezzo-soprano Vocals29-19XXX Ah Cannot Sighs, Nor Tears3:22606746Richard WistreichBass Vocals836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-20XXXI Draw On Sweet Night4:42836115Emma KirkbySoprano Vocals29-21XXXII Stay, Corydon, Thou Swain2:34836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals29-22XXXIII Softly, O Softly, Drop My Eyes3:06836115Emma KirkbySoprano Vocals554201Poppy HoldenSoprano VocalsSymphoniae Sacrae, Liber Secundus (1615) - Selected Pieces875368Taverner ChoirThe Taverner ChoirChoir909961Giovanni GabrieliComposed By875353Andrew ParrottConductor [Direction]2300188London Cornett And Sackbut EnsembleEnsemble30-1Magnificat A 146:13836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-2Suscipe A 124:35648999Brian EtheridgeBass Vocals871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-3Quem Vidistis Pastores A 147:59836379David Thomas (9)Bass Vocals441318Geoffrey ShawBass Vocals1092551William MasonWill MasonBass Vocals1305292Kevin Smith (11)Countertenor Vocals871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-4Buccinate In Neomenia A 194:07648999Brian EtheridgeBass Vocals1034913Timothy PenroseCountertenor Vocals833213Nigel Rogers (2)Tenor Vocals30-5In Ecclesiis A 147:051034913Timothy PenroseCountertenor Vocals522269Paul ElliottTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-6Jubilate Deo A 105:151305292Kevin Smith (11)Countertenor Vocals1034913Timothy PenroseCountertenor Vocals836115Emma KirkbySoprano Vocals522269Paul ElliottTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-7Misericordia A 124:06836115Emma KirkbySoprano Vocals361600Rogers Covey-CrumpTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-8Surrexit Christus A 113:54648999Brian EtheridgeBass Vocals361600Rogers Covey-CrumpTenor Vocals833213Nigel Rogers (2)Tenor Vocals30-9Magnificat A 176:571098157John York SkinnerBass Vocals836115Emma KirkbySoprano Vocals833213Nigel Rogers (2)Tenor VocalsFuneral Teares - For The Death Of The Right Honorable The Earle Of Devonshire (London, 1606)2271490John Cooper (6)John Coprario (alias Cooper)Composed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble31-1Oft Thou Hast With Greedy Ear2:4131-2O Sweet Flower3:0431-3O Th'unsure Hopes Of Men!2:2831-4In Darkness Let Me Dwell5:4531-5My Joy Is Dead3:4731-6Deceitful Fancy2:5331-7A Dialogue: Foe Of Mankind2:17Consort Music31-8Fantasia V — Almain — Galliard7:282271490John Cooper (6)John Coprario (alias Cooper)Composed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble31-9Fantasia I — Fantasia (Ayre) No.3 — Fantasia (Ayre) No.29:582271490John Cooper (6)John Coprario (alias Cooper)Composed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsemble31-10Fantasia VIII — Almain — Galliard8:072271490John Cooper (6)John Coprario (alias Cooper)Composed By836116Anthony RooleyConductor [Direction], Lute960926The Consort Of MusickeEnsembleThe First Set Of Madrigals & Mottets (1612)836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble229566Orlando GibbonsMusic By32-1I The Silver Swanne, Who Living Had No Note1:17967691AnonymousAnon.Text By836115Emma KirkbySoprano Vocals32-2II O That The Learned Poets Of Our Time2:03836379David Thomas (9)Bass Vocals967691AnonymousAnon.Text By2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-3III I Weigh Not Fortune's Frowne Nor Smile (The First Part)1:56967691AnonymousText By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals32-4IV I Tremble Not At Noyse Of Warre (The Second Part)1:247679260Joshua SylvesterText By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals32-5V I See Ambition Never Pleasde (The Third Part)1:527679260Joshua SylvesterText By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals32-6VI I Faine Not Friendship Where I Hate (The Fourth Part)2:13967691AnonymousText By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals32-7VII How Art Thou Thral'd, O Poore Dispised Creature? (The First Part)2:08967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-8VIII Farewell All Joyes (The Second Part)2:32967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-9IX Daintie Fine Bird1:44967691AnonymousAnon.Text By2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals32-10X Faire Ladies That To Love Captived Are (The First Part)1:231336408Edmund SpenserText By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals32-11XI 'Mongst Thousands Goods (The Second Part)1:501336408Edmund SpenserText By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals32-12XII Now Each Flow'ry Bancke Of May2:49967691AnonymousAnon.Text By836115Emma KirkbySoprano Vocals32-13XIII Lais Now Old That Erst Attempting Lasse1:48967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals2774426Christina PoundSoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-14XIV What Is Our Life?4:111058958Sir Walter RaleighWalter RaleighText By836379David Thomas (9)Bass Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-15XV Ah Deere Hart, Why Doe You Rise?1:25796342John Donne?John DonneText By836115Emma KirkbySoprano Vocals32-16XVI Faire Is The Rose3:14967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-17XVII Nay, Let Mee Weepe (The First Part)2:27967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-18XVIII Ne'er Let The Sunne With His Decieving Light (The Second Part)2:35967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-19XIX Yet If That Age Had Frosted Ore His Head (The Third Part)2:47967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1305292Kevin Smith (11)Countertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor Vocals32-20XX Trust Not Too Much Faire Youth Unto Thy Feature2:39967691AnonymousAnon.Text By2774426Christina PoundSoprano Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals361600Rogers Covey-CrumpTenor VocalsMusic From The Time Of Elizabeth I = Musique de L'époque D'Elisabeth I = Musik Aus Der Zeit Elisabeth I33-1Heres Paternus3:54517167Anthony HolborneAntony HolborneComposed By779781Christopher HogwoodConductor [Direction]836114Catherine MackintoshViol1098156Ian GammieViol836104Jane RyanViol779780Roderick SkeapingViol837442The Academy Of Ancient MusicViol837431Trevor Jones (4)Viol33-2Though Amaryllis Dance In Green (Psalmes, Sonets, & Songs Of Sadnes And Pietie, 1588)2:12765352William ByrdComposed By837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals967691AnonymousAnon.Text By33-3The Old Spagnoletta1:43617116Giles FarnabyComposed By779781Christopher HogwoodVirginal33-4Regina Galliard1:54567488John BullComposed By779781Christopher HogwoodVirginal33-5I Must Depart All Hapless (English In Musica Transalpina, 1588, After The Italian "lo Partirò" In Il Secondo Libro de Madrigali, 15812:181233376Luca MarenzioComposed By779781Christopher HogwoodConductor [Direction]837442The Academy Of Ancient MusicOrchestra967691AnonymousAnon.Text By967691AnonymousAnon.Translated By33-6On The Plaines, Fairie Traines (Balletts And Madrigals To Five Voyces, 1598)1:28836379David Thomas (9)Bass Vocals880947Thomas WeelkesComposed By779781Christopher HogwoodConductor [Direction]811395David James (13)Countertenor Vocals837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals522269Paul ElliottTenor Vocals14294440Barnabe BarnesText By33-7The Flat Pavan And Galliard3:36899349John Johnson (8)Composed By849183Jakob LindbergJacob LindbergLute870693Nigel NorthLute33-8Sweet Heart, Arise (Balletts And Madrigals To Five Voyces, 1598)1:22836379David Thomas (9)Bass Vocals880947Thomas WeelkesComposed By779781Christopher HogwoodConductor [Direction]811395David James (13)Countertenor Vocals837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals522269Paul ElliottTenor Vocals967691AnonymousAnon.Text By33-9Welcome, Sweet Pleasure (Balletts And Madrigals To Five Voyces, 1598)1:45836379David Thomas (9)Bass Vocals880947Thomas WeelkesComposed By779781Christopher HogwoodConductor [Direction]836379David Thomas (9)Countertenor Vocals837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals522269Paul ElliottTenor Vocals967691AnonymousAnon.Text By33-10Greensleeves4:58899349John Johnson (8)Composed By837442The Academy Of Ancient MusicLute33-11Tomorrow The Fox Will Come To Town (Deuteromelia, 16092:15836379David Thomas (9)Bass Vocals931733Thomas RavenscroftComposed By779781Christopher HogwoodConductor [Direction (AAM)]779780Roderick SkeapingConductor [Direction (Sneak's Noyse)]811395David James (13)Countertenor Vocals4648844Sneak's NoyseEnsemble7680324Ben Dover (21)Musician [Sneak's Noyse], Crumhorn7680323Reggie CoatesMusician [Sneak's Noyse], Lute779780Roderick SkeapingMusician [Sneak's Noyse], Rebec580172Lucie SkeapingMusician [Sneak's Noyse], Recorder837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals522269Paul ElliottTenor Vocals967691AnonymousAnon.Text By33-12The Spanish Pavan3:46567488John BullComposed By779781Christopher HogwoodVirginal33-13Coranto "Alarm"1:18567488John BullComposed By779781Christopher HogwoodVirginal33-14Coranto "Battle"1:45567488John BullComposed By779781Christopher HogwoodVirginal33-15Mylinda1:18517167Anthony HolborneAntony HolborneComposed By779781Christopher HogwoodConductor [Direction]836114Catherine MackintoshViol1098156Ian GammieViol836104Jane RyanViol779780Roderick SkeapingViol837431Trevor Jones (4)Viol33-16I Joy Not In No Earthly Bliss (Psalmes, Sonets, & Songs Of Sadnes And Pietie, 1588)1:55765352William ByrdComposed By779781Christopher HogwoodConductor [Direction]837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals967691AnonymousAnon.Text By33-17Galliard1:21517167Anthony HolborneAntony HolborneComposed By1000567Iaan WilsonCornett843657Michael Laird (2)Cornett1804986John Edney (2)Sackbut1554675Peter Harvey (2)Sackbut1000564Roger BrennerSackbut33-18The Night Watch1:21517167Anthony HolborneAntony HolborneComposed By779781Christopher HogwoodConductor [Direction]1000567Iaan WilsonCornett843657Michael Laird (2)Cornett1804986John Edney (2)Sackbut1554675Peter Harvey (2)Sackbut1000564Roger BrennerSackbut33-19Last Will And Testament2:53517167Anthony HolborneAntony HolborneComposed By779781Christopher HogwoodConductor [Direction]1000567Iaan WilsonCornett843657Michael Laird (2)Cornett1804986John Edney (2)Sackbut1554675Peter Harvey (2)Sackbut1000564Roger BrennerSackbut33-20Tinternell3:21517167Anthony HolborneAntony HolborneComposed By837442The Academy Of Ancient MusicLute33-21Martyn Said To The Man1:43967691AnonymousAnon.Composed By779781Christopher HogwoodConductor [Direction]837442The Academy Of Ancient MusicOrchestra33-22The Baffled Knight3:33836379David Thomas (9)Bass Vocals967691AnonymousAnon.Composed By779781Christopher HogwoodConductor [Direction (AAM)]779780Roderick SkeapingConductor [Direction (Sneak's Noyse)]811395David James (13)Countertenor Vocals4648844Sneak's NoyseEnsemble7680324Ben Dover (21)Musician [Sneak's Noyse], Crumhorn7680323Reggie CoatesMusician [Sneak's Noyse], Lute779780Roderick SkeapingMusician [Sneak's Noyse], Rebec580172Lucie SkeapingMusician [Sneak's Noyse], Recorder837442The Academy Of Ancient MusicOrchestra897150Judith NelsonSoprano Vocals2563782Mary BeverleySoprano Vocals522269Paul ElliottTenor VocalsWilliam Byrd- Psalmes, 158834-1I O God Give Ear And Do Apply4:47836761Mary NicholsAlto Vocals1023082Francis SteeleBass Vocals875351John Milne (2)Bass Vocals836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble765352William ByrdMusic By1023089Joseph CornwellTenor Vocals7680449John Hopkins (26)Text By34-2V O Lord How Long Wilt Thou Forget6:01836116Anthony RooleyConductor [Direction]765352William ByrdMusic By, Text By1023089Joseph CornwellTenor Vocals1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol- Sonets And Pastorales, 158834-3XVII If Women Could Be Fair3:53836761Mary NicholsAlto Vocals1023082Francis SteeleBass Vocals875351John Milne (2)Bass Vocals836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble765352William ByrdMusic By1023088Andrew King (5)Tenor Vocals1023089Joseph CornwellTenor Vocals7680463Edward De VereEdward, Earl Of OxfordText By34-4XIX What Pleasure Have Great Princes5:20836116Anthony RooleyConductor [Direction]1098157John York SkinnerCountertenor Vocals765352William ByrdMusic By, Text By1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol34-5XXII In Fields Abroad4:08836116Anthony RooleyConductor [Direction]765352William ByrdMusic By, Text By836115Emma KirkbySoprano Vocals1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol34-6XXVI The Match That's Made5:10960926The Consort Of MusickeChorus836116Anthony RooleyConductor [Direction]765352William ByrdMusic By, Text By554201Poppy HoldenSoprano Vocals1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol- Songs Of Sadness And Pietie, 158834-7XXVIII All As A Sea3:07836761Mary NicholsAlto Vocals836116Anthony RooleyConductor [Direction]765352William ByrdMusic By, Text By1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol34-8XXIX Susanna Fair4:01836116Anthony RooleyConductor [Direction]765352William ByrdMusic By, Text By836115Emma KirkbySoprano Vocals1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol34-9XXXI Care For Thy Soul8:44836116Anthony RooleyConductor [Direction]870692Evelyn TubbMezzo-soprano Vocals765352William ByrdMusic By, Text By1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol34-10XXXII Lullaby8:44960926The Consort Of MusickeChorus836116Anthony RooleyConductor [Direction]4322860Jacqueline Fox (2)Mezzo-soprano Vocals765352William ByrdMusic By, Text By1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol- The Funerall Songs Of That Honourable Gentleman, Sir Philip Sidney, Knight34-11XXXIV Come To Me, Grief, For Ever4:561023082Francis SteeleAlto Vocals875351John Milne (2)Alto Vocals836761Mary NicholsAlto Vocals836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble765352William ByrdMusic By, Text By554201Poppy HoldenSoprano Vocals1023088Andrew King (5)Tenor Vocals34-12XXXV O That Most Rare Breast836116Anthony RooleyConductor [Direction]1098157John York SkinnerCountertenor Vocals765352William ByrdMusic By3887138Sir Edward DyerText By [Attrib.]1088123Alison CrumViol1208175Gregor AnthonyViol1208173Oliver HirshViol837431Trevor Jones (4)Viol- Consort Music, 158835-1Prelude and Ground À 525:43765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-2In Nomine À 5 (No.4)3:16765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-3Fantasia À 4 (No.1)2:44765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-4Browning À 54:49765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-5Fantasia À 4 (No.2)2:25765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-6In Nomine À 5 (No.2)2:20765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-7Fantasia À 6 (No.3)4:19765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-8Pavan & Galliard À 64:23765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-9Fantasia À 3 (No.2)2:15765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-10Fantasia À 55:48765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-11In Nomine À 4 (No.1) / In Nomine À 4 (No.2)4:25765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-12Christe Redemptor À 42:51765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble35-13Fantasia À 6 (No.2)5:53765352William ByrdComposed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble- My Ladye Nevells Booke (1591), selected pieces36-1XVI The Fourth Pavian And Galliard2:22765352William ByrdComposed By779781Christopher HogwoodOrgan [Chamber Organ]36-2XVII The Galliard To The Fourth Pavian1:51765352William ByrdComposed By779781Christopher HogwoodOrgan [Chamber Organ]36-3II Qui Passe: For My Lady Nevell3:07765352William ByrdComposed By779781Christopher HogwoodVirginal36-4IV The Battell10:50765352William ByrdComposed By779781Christopher HogwoodVirginal36-5XXXVII Sellingers Rownde5:38765352William ByrdComposed By779781Christopher HogwoodVirginal36-6XXXVIII Munsers Almaine6:27765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Italian Harpsichord]36-7XXXV Hugh Ashtons Grownde7:18765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Italian Harpsichord]36-8VII A Galliards Gygge1:52765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Italian Harpsichord]36-9XXX The Second Grownde8:31765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Flemish Harpsichord]36-10XVIII The Fifte Pavian4:46765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Flemish Harpsichord]36-11XIX The Galliard To The Fifte Pavian1:29765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Flemish Harpsichord]36-12XXXIV The Carmans Whistle4:01765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Flemish Harpsichord]36-13XLII A Voluntarie3:57765352William ByrdComposed By779781Christopher HogwoodOrgan [Chamber Organ]36-14I My Lady Levells Grownde5:20765352William ByrdComposed By779781Christopher HogwoodVirginal36-15XXVI A Voluntarie: For My Lady Nevell5:20765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Flemish Harpsichord]36-16XXVII Will Yow Walke The Woods Soe Wydle3:21765352William ByrdComposed By779781Christopher HogwoodVirginal36-17XXXI Have With You To Walsingame8:28765352William ByrdComposed By779781Christopher HogwoodHarpsichord [Flemish Harpsichord]Selections From The Cozens Lute Book37-1Mall Symms1:44967691AnonymousAnon.Composed By836116Anthony RooleyLute37-2The Spanish Pavan2:411649624Thomas RobinsonComposed By836116Anthony RooleyLute37-3John Come Kiss Me Now2:22967691AnonymousAnon.Composed By836116Anthony RooleyLute37-4Fancy2:28743704John DowlandComposed By836116Anthony RooleyLute37-5Lachrimae Pavan4:49743704John DowlandComposed By836116Anthony RooleyLute37-6Frogg Galliard2:09743704John DowlandComposed By836116Anthony RooleyLute37-7Pavan And Galliard6:031993951Daniel BachelerDaniel BachelarComposed By836116Anthony RooleyLute37-8Preludium VI1:35967691AnonymousAnon.Composed By836116Anthony RooleyLute37-9Fantasia1:332165503Laurenzini da RomaLaurenciniComposed By836116Anthony RooleyLute37-10Exercitium1:486568218Equitis RomaniComposed By836116Anthony RooleyLute37-11Mistress Anne Grene Her Leaves Be Greene5:211038491John DanyelComposed By836116Anthony RooleyLute37-12Pavan3:22967691AnonymousAnon.Composed By836116Anthony RooleyLute37-13Two Galliards2:206568219Thomas SmytheT.S.Composed By836116Anthony RooleyLute37-14John Blundenville's Last Farewell5:156568216W. Hollis (2)Composed By836116Anthony RooleyLuteThe Fitzwilliam Virginal Book - Selected Pieces38-1Fantasia [231]3:26617116Giles FarnabyComposed By779781Christopher HogwoodOrganThe Flatt Pavan / Can Shee3:26779781Christopher HogwoodHarpsichord38-2.1The Flatt Pavan [284]617116Giles FarnabyComposed By38-2.2Can Shee [181]967691AnonymousAnon.Composed ByAlman / The Irishe Dumpe / Watkins Ale / A Gigg4:45779781Christopher HogwoodSpinet38-3.1Alman [14]967691AnonymousAnon.Composed By38-3.2The Irishe Dumpe [179]967691AnonymousAnon.Composed By38-3.4Watkins Ale [180]967691AnonymousAnon.Composed By38-3.5A Gigg [181]765352William ByrdComposed By38-4The Leaves Bee Greene [251]3:361590972William InglottComposed By779781Christopher HogwoodOrgan38-5Amarilli Di Julio Romano3:56946365Peter PhilipsComposed By779781Christopher HogwoodHarpsichord38-6Galiarda Passamezzo5:13946365Peter PhilipsComposed By779781Christopher HogwoodHarpsichordAlman / The Primerose / The Fall Of The Leafe4:541590973Martin PeersonComposed By779781Christopher HogwoodVirginal38-7.1Alman [90]38-7.2The Primerose [271]38-7.3The Fall Of The Leafe [272]Tower Hill / A Masque / A Toye5:09617116Giles FarnabyComposed By779781Christopher HogwoodVirginal38-8.1Tower Hill [245]38-8.2A Masque [198]38-8.3A Toye [270]38-9Pavana [85]3:47946365Peter PhilipsComposed By779781Christopher HogwoodOrgan38-10Galliardo [87]1:29946365Peter PhilipsComposed By779781Christopher HogwoodOrgan38-11Robin [15]2:561590970John MundayJohn MundyComposed By779781Christopher HogwoodVirginal38-12Nowel's Galliard1:14967691AnonymousAnon.Composed By779781Christopher HogwoodVirginal38-13Giles Farnaby's Dreame [194] – His Rest [195] – Farnabye's Conceit [273] – His Humour [196]6:34617116Giles FarnabyComposed By779781Christopher HogwoodVirginal39-1Jhon Come Kisse Me Now [10]6:12765352William ByrdComposed By779781Christopher HogwoodVirginal39-2The Queenes Alman765352William ByrdComposed By779781Christopher HogwoodVirginal39-3In Nomine [37]3:19567488John BullComposed By779781Christopher HogwoodOrgan39-4Fantasia [108]4:50567488John BullComposed By779781Christopher HogwoodOrgan39-5Pavana "Pagget" And Galliarda [74 & 75]9:01946365Peter PhilipsComposed By779781Christopher HogwoodSpinet39-6Pavana "Delight" And Galiarda [277 & 278]6:353571420Edward Johnson (10)Composed By765352William ByrdComposed By779781Christopher HogwoodSpinet39-7La Volta – Alman – Wolseys Wilde – Callino Casturame – La Volta [155-159]7:35765352William ByrdComposed By779781Christopher HogwoodHarpsichord39-8Pavan "Clement Cotton" [219]2:462674470William TisdaleComposed By779781Christopher HogwoodSpinet39-9Loth To Depart [230]4:04617116Giles FarnabyComposed By779781Christopher HogwoodSpinetIl Primo Libro Di Toccate [E Partite] D'Intavolatura Di Cembalo (Rome 1615-1637)834330Girolamo FrescobaldiComposed By779781Christopher HogwoodHarpsichord, Virginal40-1Toccata VII4:0940-2Balletto I, Corrente E Passacagli2:2340-3Partite Sopra Follia7:0240-4Balletto Il E Corrente2:2040-5Cento Partite Sopra Passacagli11:4640-6Capriccio Sopra La Battaglia3:0240-7Toccata I3:4740-8Balletto III, Corrente E Passacagli4:0040-9Corrente I-IV, Balletto E Ciaccona7:2740-10Partite Sopra Ruggiero4:36Il Secondo Libro Di Toccate, Canzone, Versi D'Hinni, Magnificat, Gagliarde, Correnti Et Alte Partite D'Intravolatura di Cembalo Et Organo (Rome 1637)834330Girolamo FrescobaldiComposed By779781Christopher HogwoodHarpsichord, Virginal41-1Toccata I3:0641-2Canzona I3:3541-3Canzona VI2:1641-4Aria Detta Balletto8:0741-5Toccata II3:1741-6Toccata VII3:0541-7Toccata VIII3:3441-8Canzona IV3:2541-9Gagliarde I-V6:1741-10Aria Detta La Frescobalda5:55Quarto Libro Dei Madrigali (1603, CV 75-93) = Fourth Book Of Madrigals75:31154174Claudio MonteverdiComposed By836116Anthony RooleyConductor [Direction]960926The Consort of MusickeEnsemble606746Richard WistreichMusician [The Consort of Musicke], Baritone Vocals836379David Thomas (9)Musician [The Consort of Musicke], Bass Vocals836115Emma KirkbyMusician [The Consort of Musicke], Soprano Vocals870692Evelyn TubbMusician [The Consort of Musicke], Soprano Vocals1023088Andrew King (5)Musician [The Consort of Musicke], Tenor Vocals522269Paul ElliottMusician [The Consort of Musicke], Tenor Vocals3042866Sylvia DimizianiVocal Coach [Language Coach]42-1I Ah Dolente Partita3:142046782Giovanni Battista GuariniText By42-2II Cor Mio, Mentre Vi Miro1:492046782Giovanni Battista GuariniText By42-3III Cor Mio, Non Mori?2:20967691AnonymousAnon.Text By42-4IV Sfogava Con Le Stelle3:211499466Ottavio Rinuccini?Ottavio RinucciniText By42-5V Volgea L'anima Mia3:132046782Giovanni Battista GuariniText By42-6VI Anima Mia Perdona (Prima Parte)2:332046782Giovanni Battista GuariniText By42-7VII Che Se Tu Se'il Cor Mio (Seconda Parte)2:332046782Giovanni Battista GuariniText By42-8VIII Luci Serene E Chaire2:043788629Ridolfo ArlottiText By42-9IX La Piaga C'ho Nel Core2:042046782Giovanni Battista GuariniText By42-10X Voi Pur Da Me Partite3:172046782Giovanni Battista GuariniText By42-11XI A Un Giro Sol De' Begl' Occhi2:102046782Giovanni Battista GuariniText By42-12XII Ohimè, Se Tanto Amate2:422046782Giovanni Battista GuariniText By42-13XIII Io Mi Son Giovinetta2:152046782Giovanni Battista GuariniText By42-14XIV Quel Augellin Che Canta2:152046782Giovanni Battista GuariniText By42-15XV Non Più Guerra Pietate3:222046782Giovanni Battista GuariniText By42-16XVI Sì Ch'io Vorrei Morire2:323788628Maurizio MoroMauritio MoroText By42-17XVII Anima Dolorosa2:322046782Giovanni Battista GuariniText By42-18XVIII Anima Del Cor Mio2:14967691AnonymousAnon.Text By42-19XIX Longe Da Te Cor Mio2:332046782Giovanni Battista GuariniText By42-20XX Piagn' E Sospira3:462046782Giovanni Battista GuariniText ByAmorous Dialogues43-1Whither Runneth My Sweetheart?1:59837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]1421385John Bartlett (2)John BartletComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-2Fayre Cruell Nimph (A Dialogue Between A Shepheard And A Nimph)2:12837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]1595986Alfonso FerraboscoComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-3Tell Me, O Love (A Dialogue Between A Shepheard And A Nimph)2:53837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]1595986Alfonso FerraboscoComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-4Who Is It That This Dark Night Under My Window Playneth?7:49837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]858834Thomas MorleyComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-5Shut Not Sweet Breast2:50837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]909199Thomas FordComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-6A Dialogue On A Kisse (Among Thy[e] Fancies)3:25837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]474332Henry LawesComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-7A Dialogue Betwixt Time And A Pilgrime (Aged Man That Mo[w]es These Fields)2:18837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]474332Henry LawesComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-8Bel Pastor, Dal Cui Bel Guardo3:09837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]1373382Marco da GaglianoComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-9Da L'onde Del Mio Painto4:36837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]1257130Sigismondo d'IndiaComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-10Dialogo A Due, Fileno E Lidia (Amar Io Ti Consiglio)9:46837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]834325Benedetto FerrariComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-11Amanti, Io Dire Vi So4:30837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]834325Benedetto FerrariComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-12Dio Ti Savi, Pastor2:49837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]1884912Nicolò FonteiComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals43-13Bel Pastor, Dal Cui Bel Guardo4:37837431Trevor Jones (4)Bass Viol [Bass Viol 1]1088123Alison CrumBass Viol [Bass Viol 2]154174Claudio MonteverdiComposed By836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor VocalsSett No. 3 In A Minor9:301370946William LawesComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble44-1Fantazia4:1144-2Aire (Alman)2:5044-3Aire (Galliard)2:32Sett No. 8 In D Major11:121370946William LawesComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble44-4Fantazia5:5544-5Aire (Alman)3:0844-6Aire (Galliard)2:09Sett No. 2 In G Major10:161370946William LawesComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble44-7Fantazia4:3644-8Aire (Alman)2:3244-9Aire (Galliard)3:07Setts For One Or Two Violins With Bass Viol And Organ, And For Division Viols And OrganSett No. 3 In A Minor8:091370946William LawesComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble44-10Fantazia3:4544-11Aire (Alman)2:3644-12Aire (Galliard)1:48Sett No. 1 In G Minor12:511370946William LawesComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble44-13Paven7:4144-14Aire2:2344-15Aire2:48Sett No. 8 In D Major1370946William LawesComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble44-16Fantazia3:2644-17Aire (Alman)2:3744-18Aire (Galliard)2:00The XII Wonders Of The World, 161126:553854231John Maynard (4)Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble45-1I The Courtier1:35522269Paul ElliottTenor Vocals45-2II The Divine2:45522269Paul ElliottTenor Vocals45-3III The Souldiour1:20522269Paul ElliottTenor Vocals45-4IV The Lawyer2:20836379David Thomas (9)Bass Vocals45-5V The Physition2:55836379David Thomas (9)Bass Vocals45-6VI The Marchant2:10836379David Thomas (9)Bass Vocals45-7VII The Countrey Gentleman2:20871873Martyn HillTenor Vocals45-8VIII The Batchelar1:45871873Martyn HillTenor Vocals45-9IX The Marryed Man2:10871873Martyn HillTenor Vocals45-10X The Wife2:30836115Emma KirkbySoprano Vocals45-11XI The Widow2:50836115Emma KirkbySoprano Vocals45-12XII The Maid2:15836115Emma KirkbySoprano VocalsCharacter Songs45-13Jack And Joan2:04836379David Thomas (9)Bass Vocals537587Thomas CampionComposed By836116Anthony RooleyConductor [Direction]1098157John York SkinnerCountertenor Vocals960926The Consort Of MusickeEnsemble836116Anthony RooleyLute836115Emma KirkbySoprano Vocals45-14Tobacco, Tobacco1:42836379David Thomas (9)Bass Vocals975143Tobias HumeComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble45-15A Pour Soul Sat Sighing5:01967691AnonymousAnon.Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836116Anthony RooleyLute45-16The Dark Is My Delight1:05967691AnonymousAnon.Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836116Anthony RooleyLute836115Emma KirkbySoprano Vocals45-17Oh Let Us Howle3:19836379David Thomas (9)Bass Vocals687403Robert Johnson (9)Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836116Anthony RooleyLute45-18Yonder Comes A Courteous Knight5:17931733Thomas RavenscroftComposed By836116Anthony RooleyConductor [Direction]1098157John York SkinnerCountertenor Vocals960926The Consort Of MusickeEnsemble836116Anthony RooleyLute45-19Come Live With Me And Be My Love4:47967691AnonymousAnon.Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals45-20What Is't Ye Lack?4:08836379David Thomas (9)Bass Vocals967691AnonymousAnon.Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836116Anthony RooleyLute45-21Joan Quoth John4:163854231John Maynard (4)Composed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836116Anthony RooleyLute836115Emma KirkbySoprano Vocals871873Martyn HillTenor VocalsFirst Booke Of Songes 159775:00836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble46-1I Unquiet Thoughts4:05967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals836116Anthony RooleyLute46-2II Whoever Thinks Or Hopes2:283216695Fulke GrevilleFulke (Greville), Lord BrookeText By836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals836116Anthony RooleyLute46-3III My Thoughts Are Wing'd With Hopes2:572936699George CliffordGeorge, Earl of CumberlandText By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-4IV If My Complaints (Captain Digorie Piper's Galliard)3:23967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-5V Can She Excuse My Wrongs (The Earl Of Essex's Galliard)3:01967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-6VI Now, O Now I Needs Must Part (The "Frog" Galliard)4:25967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-7VII Dear, If You Change3:26967691AnonymousAnon.Text By836115Emma KirkbySoprano Vocals836116Anthony RooleyLute46-8VIII Burst Forth My Tears3:51967691AnonymousAnon.Text By836115Emma KirkbySoprano Vocals836116Anthony RooleyLute1098156Ian GammieTenor Viol1000570Polly WaterfieldTenor Viol836114Catherine MackintoshTenor Viol46-9IX Go Crystal Tears3:40967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol836114Catherine MackintoshTenor Viol1098156Ian GammieTenor Viol1000570Polly WaterfieldTenor Viol46-10X Think'st Thou Then1:50967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-11XI Come Away, Come Sweet Love2:23967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals46-12XII Rest Awhile You Cruel Cares3:22967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals46-13XIII Sleep Wayward Thoughts3:42967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-14XIV All Ye Whom Love Or Fortune4:26967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals46-15XV Wilt Thou Unkind2:08967691AnonymousAnon.Text By836115Emma KirkbySoprano Vocals836116Anthony RooleyLute1098156Ian GammieTenor Viol1000570Polly WaterfieldTenor Viol836114Catherine MackintoshTenor Viol46-16XVI Would My Conceit7:10967691AnonymousAnon.Text By1098157John York SkinnerCountertenor Vocals836115Emma KirkbySoprano Vocals871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol836114Catherine MackintoshTenor Viol1000570Polly WaterfieldTenor Viol1098156Ian GammieTenor Viol46-17XVII Come Again4:33967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-18XVIII His Golden Locks4:06967691AnonymousAnon.Text By836379David Thomas (9)Bass Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol836114Catherine MackintoshTenor Viol1000570Polly WaterfieldTenor Viol1098156Ian GammieTenor Viol46-19XIX Awake, Sweet Love2:43967691AnonymousAnon.Text By871873Martyn HillTenor Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol836114Catherine MackintoshTenor Viol1000570Polly WaterfieldTenor Viol1098156Ian GammieTenor Viol46-20XX Come Heavy Sleep4:29967691AnonymousAnon.Text By836115Emma KirkbySoprano Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass Viol46-21XXI Away With These Self-Loving Lads2:493216695Fulke GrevilleFulke (Greville), Lord BrookeText By836379David Thomas (9)Bass Vocals836116Anthony RooleyLute837431Trevor Jones (4)Bass ViolLachrimae, Or Seaven Teares Figured In Seaven Passionate Pavans With Divers Other Pavans, Galiards, And Almands (1604)Lachrimae Pavans31:02743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble836116Anthony RooleyLute47-1Lachrimae Antiquae4:4747-2Lachrimae Antiquae Novae4:0747-3Lachrimae Gementes4:2247-4Lachrimae Tristes4:3847-5Lachrimae Coactae4:1447-6Lachrimae Amantis4:3047-7Lachrimae Verae4:2447-8M. John Langton's Pavan3:18743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-9M. Nicholas Gryffith His Galiard2:35743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-10Sir John Souch His Galiard1:46743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-11Semper Dowland Semper Dolens3:21743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-12Mr Giles Hobies Galiard2:05743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-13The King Of Denmark's Galiard1:32743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-14Sir Henry Umpton's Funerall4:36743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-15Mr Henry Noel His Galiard3:00743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-16The Earl Of Essex Galiard1:34743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-17Mr Bucton His Ghidaliard1:38743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-18Mr George Whitehead His Almand1:36743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-19Captaine Digorie Piper His Galiard2:04743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeLute47-20M. Thomas Collier His Galiard1:33743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLute47-21Mrs Nichols Almand0:47743704John DowlandComposed By836116Anthony RooleyConductor [Direction]960926The Consort Of MusickeEnsemble1213446Julian CrèmeJulian CremeLuteDances From Terpsichore48-1.1Passameze (CCLXXXVI À 6)3:36931717Pierre-Francisque CaroubelComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-1.2Gaillarde (CCLXXXVII À 5)931717Pierre-Francisque CaroubelF.C.Composed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-2La Bouree (XXXII À 4)1:56856233Michael PraetoriusComposed By931717Pierre-Francisque CaroubelComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-3Bransle De La Torche (XV À 5)1:58856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-4Bransles Simples / Bransles Gays / Bransles Doubles (IV À 5)4:27931717Pierre-Francisque CaroubelComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-5Bransles De Villages (XIV À 5)4:02856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-6Philou (XXII À 4)2:58856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-7.1Ballet Des Sorciers (CCLXII À 4)3:19856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-7.2Ballet Des Princesses (CCLXXVII À 4)967691AnonymousIncerti (Anon.)Composed By856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-7.3Ballet (CCLXVIII À 4)967691AnonymousIncerti (Anon.)Composed By856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-7.4Ballet Des Princesses (CCLXXVII À 4)967691AnonymousIncerti (Anon.)Composed By856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-8.1Ballet (CCLXXIV À 4)3:17967691AnonymousIncerti (Anon.)Composed By856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-8.1Ballet Des Baccanales (CCLXXVIII À 4)967691AnonymousIncerti (Anon.)Composed By856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-8.2Ballet Des Matelotz (CCLXXX À 4)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-8.3Ballet Des Coqs (CCLIV À 5)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-9Bransle De La Torche (XV À 5)1:20856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-10.1Pavane De Spaigne (XXX À 4)5:46856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-10.2Spagnoletta (XXVIII À 4)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-11Passameze Pour Les Cornetz (CCLXXXVIII À 6)1:47931717Pierre-Francisque CaroubelComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-12.1Courante M.M. Wüstrow (CL À 4)1:47856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-12.2Courante (CLXXIX À 4)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-12.3Courrant De Bataglia (XLVIII À 5)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-13La Sarabande (XXXIII À 5)1:42856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-14.1Volte Du Tambour (CXCIX À 5)5:01856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-14.2Volte (CCXLIII À 4)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-14.3Volte (CCXLII À 4)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-14.4Volte (CCXIII À 5)931717Pierre-Francisque CaroubelComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-15.1Volte (CCX À 5)3:51856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-15.2Volte (CCXI À 5)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-15.3Volte (CCXXXVI À 4)856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsemble48-15.4Volte (CCI À 5) 856233Michael PraetoriusComposed By483881Philip PickettConductor [Direction], Score Editor [Performing Editions]483878New London ConsortEnsembleThe Sylvan And Oceanic Delights Of Posilipo (1620)561407Christopher RobsonAlto Vocals1034911Michael George (3)Baritone Vocals483881Philip PickettConductor [Direction], Score Editor [Edition And Performing Version By]483878New London ConsortEnsemble836380Patrizia KwellaSoprano Vocals [Soprano 1]483879Catherine BottSoprano Vocals [Soprano 2]918927John Mark AinsleyTenor Vocals [Tenor 1]1023088Andrew King (5)Tenor Vocals [Tenor 2]49-1Sinfonia Antica4:05967691AnonymousAnon.Composed By49-2Canzonetta Delle Ninfe E Il Pastore1:423398826Pietro Antonio GiramoComposed By49-3Spagnoletta2:444868790Hettore Della MarraComposed By882345Tom FinucaneArranged By49-4Canto Di Fortuna, Tempo, Fama E Invidia5:163658082Francesco LambardiComposed By49-5Gagliarda3:53967691AnonymousAnon.Composed By49-6Canto Delle Sirene6:021740888Giovanni Maria TrabaciComposed By49-7Gagliarda1:387160896Rinaldo dall'Arpa?ArpaComposed By49-8Ballo De' Selvaggi E Delle Simie1:284868789Giacomo SpiardoComposed By49-9La Scesa De' Pastori Dal Monte2:184868788Andrea AnsaloneComposed By49-10Canto Di Venere2:311740888Giovanni Maria TrabaciComposed By49-11Fanfare3:17483881Philip PickettComposed By1407971Girolamo FantiniComposed By [Composed After]49-12Ballo De' Cigni2:334868789Giacomo SpiardoComposed By49-13Canto Del Dio Pane E I Suoi Silvani7:313658082Francesco LambardiComposed By49-14Ballo De' Selvaggi E Delle Simie0:474868789Giacomo SpiardoComposed By49-15Gagliarda Falsa5:394420632Don Giovanni Maria SabinoDon Giovanni Maria SabiniComposed By49-16Canto D'Amore1:503658082Francesco LambardiComposed By49-17Le Tre Arie Del Ballo Cavalieri4:264868788Andrea AnsaloneComposed ByConsort Music50-1Fantasy Suite (No. 1) In G Minor (Fantasia – Almain – Corant)8:131640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-2Fantasia (No. 6) In F Major3:041640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-3Fantasy Suite (No. 17) In E Minor (Fantasia – Almain – Ayre)9:451640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-4Fantasia (No. 8) In A Minor9:451640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-5.1Newark Siege (No. 23)3:451640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-5.2Galliard (No. 24) In D Major8:491640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-6.1Pavan (No. 51)9:041640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-6.2Ayre (No. 31)1640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-6.3Corant (No. 44)1640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-6.4Saraband (No. 52)1640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-7Fancy-Air Set (No. 4) In C Major10:131640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-8Pavan (No. 2) In G Minor4:521640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-9Fantasia (No. 3) In G Minor3:281640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-10Fantasia (No. 12) In D Major3:481640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble50-11In Nomine (No. 1) In G Minor4:311640201John Jenkins (5)Composed By837431Trevor Jones (4)Conductor [Direction]960926The Consort Of MusickeEnsemble266418Decca Music Group Limited13Phonographic Copyright (p)1774956The Folio Society Limited13Phonographic Copyright (p)266418Decca Music Group Limited14Copyright (c)1627101Raymond McGill14Copyright (c)263916Kingsway Hall23Recorded At293110American Academy Of Arts And Letters23Recorded At359178Stainer & Bell21Published By308054Walthamstow Assembly Hall23Recorded At414417Temple Church, London23Recorded At269986Decca Studios23Recorded At394260Church Of St George The Martyr, London23Recorded At267830St Martin's Church, East Woodhay, Hampshire23Recorded At267691Henry Wood Hall, London23Recorded At277021St. Barnabas Church, London23Recorded At285875All Saints Church Petersham23Recorded At864962Christ Church, Sutton23Recorded At627504Finchcocks, Goudhurst, Kent23Recorded At612872Germanisches Nationalmuseum23Recorded At266227Forde Abbey23Recorded At384133EDC, Germany5369415131Glass Mastered At384133EDC, Germany5369416331Glass Mastered At384133EDC, Germany5369418331Glass Mastered At384133EDC, Germany5369416531Glass Mastered At384133EDC, Germany5369416731Glass Mastered At384133EDC, Germany5369419331Glass Mastered At384133EDC, Germany5369416931Glass Mastered At384133EDC, Germany5369417331Glass Mastered At384133EDC, Germany5369417131Glass Mastered At384133EDC, Germany5369417531Glass Mastered At384133EDC, Germany5369417731Glass Mastered At384133EDC, Germany5369317931Glass Mastered At384133EDC, Germany5369458931Glass Mastered At384133EDC, Germany5369457431Glass Mastered At384133EDC, Germany5369418131Glass Mastered At384133EDC, Germany5370396431Glass Mastered At384133EDC, Germany5367457831Glass Mastered At384133EDC, Germany5369457631Glass Mastered At384133EDC, Germany5369698831Glass Mastered At384133EDC, Germany5369697831Glass Mastered At384133EDC, Germany5369698031Glass Mastered At384133EDC, Germany 5369418531Glass Mastered At384133EDC, Germany5369418731Glass Mastered At384133EDC, Germany5369698631Glass Mastered At384133EDC, Germany5369418931Glass Mastered At384133EDC, Germany5369419131Glass Mastered At384133EDC, Germany5369458531Glass Mastered At384133EDC, Germany5369066431Glass Mastered At384133EDC, Germany5369458731Glass Mastered At384133EDC, Germany5369419531Glass Mastered At384133EDC, Germany5369697631Glass Mastered At384133EDC, Germany5369066231Glass Mastered At384133EDC, Germany5369425031Glass Mastered At384133EDC, Germany5369425431Glass Mastered At384133EDC, Germany5369458131Glass Mastered At384133EDC, Germany5369580931Glass Mastered At384133EDC, Germany5369698431Glass Mastered At384133EDC, Germany5369699231Glass Mastered At384133EDC, Germany5369699031Glass Mastered At384133EDC, Germany5369426031Glass Mastered At384133EDC, Germany5369425631Glass Mastered At384133EDC, Germany5369426431Glass Mastered At384133EDC, Germany5369066031Glass Mastered At384133EDC, Germany5369698231Glass Mastered At384133EDC, Germany5369425831Glass Mastered At384133EDC, Germany5369458331Glass Mastered At384133EDC, Germany5369066731Glass Mastered At384133EDC, Germany5369426631Glass Mastered At384133EDC, Germany5369426231Glass Mastered At384133EDC, Germany5369425231Glass Mastered At274237The Audio Archiving Company29Mastered At539131WLP Ltd.33Designed At + +194Various1000 Classical MasterpiecesCompilationStereoClassicalBelgium2012-11-26This compilation ℗ & © 2012 EMI Music Belgium + +• CD 01-03: Johann Sebastian Bach +• CD 04-06: Wolfgang Amadeus Mozart +• CD 07-09: Ludwig van Beethoven +• CD 10-12: Renaissance & Baroque +• CD 13-14: Baroque +• CD 15: Classic & Romantic +• CD 16-19: Romantic & 20th Century +• CD 20-24: 20th Century +• CD 25-30: Opera +• CD 31-33: Choruses +• CD 34-35: Overtures +• CD 36-37: Operatta +• CD 38-43: Sacred Music +• CD 44-45: Piano +• CD 46-47: Violin +• CD 48-49: Cello +• CD 50: Guitar +• CD 51-52: Piano Concertos +• CD 53: Violin Concertos +• CD 54: Various Concertos +• CD 55-56: Waltzes +• CD 57: Polkas +• CD 58-60: Ballet +• CD 61: TangoNeeds Vote001 Johann Sebastian Bach (1685-1750)Orchestral Suite No. 3 In D BWV106895537Johann Sebastian Bach877523Philip LedgerConductor415725English Chamber OrchestraOrchestra01-01Ouverture7:2701-02Air4:4601-03Gavotte4:04Concerto For Two Violins & Strings In D Minor, BWV104395537Johann Sebastian Bach1945359Scottish EnsembleEnsemble1946126Jane MurdochViolin304509Jonathan ReesViolin01-04Vivace3:4701-05Largo Ma Non Tanto6:4801-06Allegro4:39Orchestral Suite No.2 In B Minor, BWV106795537Johann Sebastian Bach877523Philip LedgerConductor415725English Chamber OrchestraOrchestra01-07I. Rondeau – II. Sarabande – III. Bourrées I & II6:4901-08IV. Polonaise – V. Menuet – VI. Badinerie5:57Brandenburg Concerto No.4 In G, BWV104995537Johann Sebastian Bach1945359Scottish EnsembleEnsemble931708Giles LewinGilles LewinRecorder1946125William LyonsRecorder304509Jonathan ReesViolin01-09I. Allegro7:2301-10II. Andante3:4001-11III. Presto4:57Concerto For Keyboard & Strings In F Minor, BWV105695537Johann Sebastian Bach960890Melante AmsterdamEnsemble898398Bob van AsperenHarpsichord01-12I. Allegro3:1901-13II. Largo2:3101-14III. Presto3:1801-15The Musical Offering, BWV1079: Ricercare A 67:1195537Johann Sebastian Bach983824SonnerieEnsemble02 Johann Sebastian Bach (1685-1750)Brandenburg Concerto No.2 In F, BWV104795537Johann Sebastian Bach960900Paul Goodwin (2)Oboe900433Orchestra Of The Age Of EnlightenmentOrchestra836789Rachel BeckettRecorder491878Mark Bennett (2)Marc BennettTrumpet960940Monica HuggettViolin02-01I. Allegro5:0202-02II. Andante3:4302-03III. Allegro Assai2:38Concerto For Violin, Oboe & Strings In C Minor, BWV106095537Johann Sebastian Bach868236Europa GalanteEnsemble1362383Alfredo BernardiniOboe960922Fabio BiondiViolin02-04I. Allegro4:4302-05II. Adagio4:4902-06III. Allegro3:27Concerto After Vivaldi For Four Keyboards & Strings In A Minor, BWV106595537Johann Sebastian Bach960890Melante AmsterdamEnsemble6091453Bernhard KlapprottBernard KlapprottHarpsichord898398Bob van AsperenHarpsichord960930Carsten LohffHarpsichord960899Marcello BussiMarcello BusiHarpsichord02-07I. Allegro4:2002-08II. Largo2:1902-09III. Allegro3:28Brandenburg Concerto No.3 In G, BWV104895537Johann Sebastian Bach900433Orchestra Of The Age Of EnlightenmentOrchestra836741Alison BuryViolin02-10I. (Allegro)5:3602-11II. Adagio – Allegro4:50Concerto For Violin & Strings In A Minor, BWV104195537Johann Sebastian Bach900433Orchestra Of The Age Of EnlightenmentOrchestra890923Elizabeth WallfischViolin02-12I. Allegro3:4902-13II. Andante5:4202-14III. Allegro Assai3:31Brandenburg Concerto No.5 In D, BWV105095537Johann Sebastian Bach875353Andrew ParrottConductor843436Janet SeeFlute836901John TollHarpsichord960912Taverner PlayersTavener PlayersOrchestra883952John HollowayViolin02-15I. Allegro9:2102-16II. Affetuoso5:4602-17III. Allegro5:1303 Johann Sebastian Bach (1685-1750)Mass In B Minor, BWV23295537Johann Sebastian Bach833205Charles BrettAlto Vocals834088Philippe HerrewegheConductor835650Collegium VocaleCollegium Vocale GentEnsemble835626Catherine PatriaszSoprano Vocals03-01Gloria In Excelsis Deo (Chorus)7:0003-02Laudamus Te (Aria)4:2103-03Et Incarnatus Est (Chorus)3:0503-04Agnus Dei (Aria)5:2603-05Osanna In Excelsis (Chorus)2:3303-06Cantata BWV147 'Herz Und Mund Und Tat Und Leben': Jesu Bleibet Meine Freude (Chorale)2:1395537Johann Sebastian Bach875353Andrew ParrottConductor5059891Taverner Consort & PlayersTavener Consort & PlayersOrchestra03-07Cantata BWV51 'Jauchzet Gott In Alle Landen': Jauchzet Gott In Alle Landen (Aria)4:1695537Johann Sebastian Bach983824SonnerieEnsemble836154Nancy ArgentaSoprano Vocals491879Crispian Steele-PerkinsTrumpet03-08Cantata BWV82a 'Ich Habe Genug': Ich Habe Genug (Aria)7:4195537Johann Sebastian Bach960922Fabio BiondiConductor868236Europa GalanteEnsemble834090Ian BostridgeTenor VocalsMagnificat In D, BWV24395537Johann Sebastian Bach2002940Nederlands KamerkoorChorus836885Sigiswald KuijkenConductor882758La Petite BandeEnsemble835646Christoph PrégardienTenor Vocals03-09Magnificat Anima Mea (Chorus)2:5803-10Deposuit Potentes (Aria)2:00Christmas Oratorio, BWV24895537Johann Sebastian Bach1539851Peter KooijPeter KooyBass Vocals834088Philippe HerrewegheConductor835650Collegium VocaleCollegium Vocale GentEnsemble03-11Wie Soll Ich Dich Empfangen (Chorale)1:1603-12Erleucht Auch Meine Finstre Sinnen (Aria)4:18Passion According To St John, BWV4595537Johann Sebastian Bach870695Caroline TrevorAlto Vocals875353Andrew ParrottConductor5059891Taverner Consort & PlayersTavener Consort & PlayersOrchestra875352Richard BoothbyViola da Gamba03-13Ach, Grosser König (Chorale)1:3103-14Es Ist Vollbracht (Aria)5:0703-15Ruht Wohl, Ihr Heilige Gebeine (Chorus)8:0203-16Cantata BWV 78 'Jesu, Der Du Meine Seele': Wir Eilen Mit Schwachen (Duetto)5:1195537Johann Sebastian Bach922551Wolfgang GönnenweinWolfgang GönneweinConductor2176594Consortium Musicum (2)Ensemble2484971Sybil MichelowSibyl MichelowMezzo-soprano Vocals850889Edith MAthisEdith MatthisSoprano VocalsCantata BWV106 'Gottes Zeit Is Die Allerbeste Zeit'95537Johann Sebastian Bach1558211Der Süddeutsche MadrigalchorChoir922551Wolfgang GönnenweinWolfgang GönneweinConductor2176594Consortium Musicum (2)Ensemble03-17Sonatina: Molto Adagio2:1403-18Gottes Zeit Ist Die Allerbeste Zeit (Chorus)8:5804 Wolfgang Amadeus Mozart (1756-1791)04-01Symphony No.40 In G Minor K550: I. Molto Allegro7:4095546Wolfgang Amadeus Mozart283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra04-02Clarinet Concerto In A K622: II. Adagio8:5195546Wolfgang Amadeus Mozart267768Jack BrymerClarinet846301Sir Thomas BeechamConductor341104Royal Philharmonic OrchestraOrchestra04-03Symphony No.25 In G Minor K183: I. Allegro (Opening)4:4195546Wolfgang Amadeus Mozart835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra04-04Piano Concerto No.21 In C K467: II. Andante5:1595546Wolfgang Amadeus Mozart576026David ZinmanConductor604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester Des Bayerischen RundfunksOrchestra847368Christian ZachariasPiano04-05Symphony No.35 In D K385 'Haffner': IV. Finale: Presto4:1495546Wolfgang Amadeus Mozart659953Jeffrey TateConductor415725English Chamber OrchestraOrchestra04-06Violin Concerto No.3 In G K216: II. Adagio8:5695546Wolfgang Amadeus Mozart847372Jörg FaerberConductor935812Württembergisches KammerorchesterWürttembergisches Kammerorchester HeilbronnOrchestra836084Frank Peter ZimmermannStroh Violin04-07Divertimento In D K334: III. Menuetto – Trio4:2495546Wolfgang Amadeus Mozart855164Franz Welser-MöstConductor1927246Stockholm Chamber OrchestraOrchestra04-08Symphony No.41 In C K551 'Jupiter': IV. Allegro6:0695546Wolfgang Amadeus Mozart283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra04-09Piano Concerto No.23 In A K488: II. Adagio7:1695546Wolfgang Amadeus Mozart415725English Chamber OrchestraOrchestra424576Daniel BarenboimPiano04-10Horn Concerto No.4 In E Flat K495: III. Rondo: Allegro Vivace3:3295546Wolfgang Amadeus Mozart835735Sir Neville MarrinerConductor843643Barry TuckwellHorn832962The Academy Of St. Martin-in-the-FieldsOrchestra04-11Concerto For Flute And Harp In C K299: II. Andantino8:1595546Wolfgang Amadeus Mozart283122Herbert von KarajanConductor325672James GalwayFlute1450896Fritz HelmisHarp260744Berliner PhilharmonikerOrchestra04-12Sinfonia Concertante For Violin, Viola And Orchestra In E Flat K364: III. Presto6:0995546Wolfgang Amadeus Mozart835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra912866Bruno GiurannaViola834611Anne-Sophie MutterViolin05 Wolfgang Amadeus Mozart (1756-1791)Le Nozze Di Figaro K492 (Da Ponte)95546Wolfgang Amadeus Mozart842132Riccardo MutiConductor754974Wiener PhilharmonikerOrchestra05-01Overture3:5605-02Non Più Andrai (Figaro)3:44289519Thomas AllenBaritone Vocals05-03Porgi Amor (Countess)3:47900180Margaret PriceSoprano Vocals05-04Voi Che Sapete (Cherubino)2:53838409Ann MurrayMezzo-soprano Vocals05-05Hai Già Vinta La Causa!... Vedrò, Mentr'io Sospiro (Count)4:37842876Jorma HynninenBaritone Vocals05-06Dove Sono (Countess)4:17900180Margaret PriceSoprano Vocals05-07Canzonetta Sull'aria… Che Soave Zefirettó (Countess & Susanna)2:26296409Kathleen BattleKatleen BattleSoprano Vocals900180Margaret PriceSoprano Vocals05-08Deh Vieni, Non Tardar (Susanna)3:22296409Kathleen BattleKatleen BattleSoprano VocalsCosi Fan Tutte K588 (Da Ponte)95546Wolfgang Amadeus Mozart931243Konzertvereinigung Wiener StaatsopernchorChoir842132Riccardo MutiConductor754974Wiener PhilharmonikerOrchestra05-09Bella Vita Militar (Chorus)1:4005-10Soave Sia Il Vento (Fiordiligi, Dorabella, Don Alfonso)3:19896249Margaret MarshallSoprano Vocals833164Agnes BaltsaMezzo-soprano Vocals833163José van DamBaritone Vocals05-11Smanie Implacabili (Dorabella)2:02833164Agnes BaltsaMezzo-soprano Vocals05-12L'intatta Fede… Come Scoglio (Fiordiligi)5:13896249Margaret MarshallSoprano Vocals05-13Un'aura Amorosa (Ferrando)5:12696253Francisco AraizaTenor VocalsDon Giovanni K527 (Da Ponte)95546Wolfgang Amadeus Mozart842132Riccardo MutiConductor754974Wiener PhilharmonikerOrchestra05-14Madamina, Il Catalogo È Questo (Leporello)5:46837534Samuel RameyBass-Baritone Vocals05-15Là Ci Darem la Mano (Don Giovanni & Zerlina)3:181957396William ShimellBaritone Vocals1023672Susanne MentzerSoprano Vocals05-16Or Sai Chi L'onore (Donna Anna)2:55837532Cheryl StuderSoprano Vocals05-17Dalla Sua Pace (Don Ottavio)4:581060268Frank LopardoTenor Vocals05-18Finch'han Dal Vino (Don Giovanni)1:1305-19Deh, Vieni Alla Finestra (Don Giovanni)2:011957396William ShimellBaritone Vocals05-20Vedrai, Carino (Zerlina)3:461023672Susanne MentzerSoprano Vocals05-21In Quali Eccessi, O Numi… Mi Tradi, Quell'alma Ingrata (Donna Elvira)6:002115800Carol VanessSoprano Vocals05-22Questo È Il Fin (Ensemble)1:472115800Carol VanessSoprano Vocals837532Cheryl StuderSoprano Vocals1023672Susanne MentzerSusanna MentzerSoprano Vocals1060268Frank LopardoTenor Vocals2315799Natale de CarolisTenor Vocals06 Wolfgang Amadeus Mozart (1756-1791)06-01Piano Sonata In A K331: III. Rondo Alla Turca: Allegretto3:2695546Wolfgang Amadeus Mozart837577Andrei GavrilovPiano06-02Serenade In B Flat K361 'Gran Partita': III. Adagio5:2495546Wolfgang Amadeus Mozart2877479Bläserensemble Sabine MeyerEnsemble06-03Das Butterbrot1:1295546Wolfgang Amadeus Mozart1049683Emile NaoumoffPiano06-04Violin Sonata In E Minor K304: I. Allegro9:0095546Wolfgang Amadeus Mozart1920409Alexander LonquichPiano836084Frank Peter ZimmermannViolin06-05Ah! Vous Dirai-je Maman – Variations In C K2659:3395546Wolfgang Amadeus Mozart273804Aldo CiccoliniPianoSerenade In G K525 'Eine Kleine Nachtmusik'95546Wolfgang Amadeus Mozart06-06I. Allegro5:5406-07II. Romanza: Andante5:4406-08III. Menuetto – Trio1:5806-09IV. Rondo: Allegro3:0306-10Die Schlittenfahrt K605 No.33:0695546Wolfgang Amadeus Mozart835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra06-11Fantasia In D Minor K3975:3695546Wolfgang Amadeus Mozart1920409Alexander LonquichPiano06-12Divertimento For String Trio In E Flat K563: VI. Finale: Allegro6:3295546Wolfgang Amadeus Mozart1016869Gary Hoffman (3)Cello833835Gérard CausséViola273806Augustin DumayViolin06-13Masonic Funeral Music K4775:5495546Wolfgang Amadeus Mozart835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestraPiano Sonata In C K54595546Wolfgang Amadeus Mozart1093560Jean-Bernard PommierPiano06-14I. Allegro3:0806-15II. Andante5:4506-16III. Rondo: Allegretto Grazioso1:4107 Ludwig Van Beethoven (1770-1827)07-01Symphony No.1 In C Op.21: IV. Adagio – Allegro Molto E Vivace5:2695544Ludwig Van Beethoven842132Riccardo MutiConductor27519The Philadelphia OrchestraOrchestra07-02Symphony No.2 In D Op.36: III. Scherzo: Allegro – Trio3:3995544Ludwig Van Beethoven842132Riccardo MutiConductor27519The Philadelphia OrchestraOrchestraSymphony No.3 In E Flat 'Eroica' Op.5595544Ludwig Van Beethoven849793Kurt SanderlingConductor454293Philharmonia OrchestraOrchestra07-03I. Allegro Con Brio (Opening)6:2507-04III. Scherzo: Allegro Vivace (Conclusion)1:5507-05Symphony No.4 In B Flat Op.60: III. Menuetto: Allegro Vivace – Trio: Un Poco Meno Allegro5:3895544Ludwig Van Beethoven517158Wolfgang SawallischConductor754894ConcertgebouworkestRoyal Concertgebouw OrchestraOrchestra07-06Symphony No.5 In C Minor Op. 67: I. Allegro Con Brio6:3295544Ludwig Van Beethoven849793Kurt SanderlingConductor454293Philharmonia OrchestraOrchestra07-07Symphony No.6 In F 'Pastoral' Op.68: V. Allegretto: Shpherds' Hymn Of Thanksgiving After The Storm (Conclusion)6:4195544Ludwig Van Beethoven842132Riccardo MutiConductor27519The Philadelphia OrchestraOrchestra07-08Egmont Overture Op.848:4595544Ludwig Van Beethoven842238Eugen JochumConductor212726London Symphony OrchestraOrchestraSymphony No.7 In A Op.9295544Ludwig Van Beethoven517158Wolfgang SawallischConductor754894ConcertgebouworkestRoyal Concertgebouw OrchestraOrchestra07-09I. Vivace (Extract)6:0307-10II. Allegretto (Opening)3:1507-11IV. Allegro Con Brio7:13Symphony No.8 In F Op.9395544Ludwig Van Beethoven283122Herbert von KarajanConductor454293Philharmonia OrchestraOrchestra07-12II. Allegretto Scherzando3:5407-13IV. Allegro Vivace (Conclusion)3:3907-14The Ruins Of Athens, Incidental Music Op.113: Turkish March2:0495544Ludwig Van Beethoven361603Dennis Russell DaviesConductor526576Orchestra Of St. Luke'sOrchestra07-15Symphony No.9 In D Minor Op.125 'Choral': IV. Ode To Joy6:1495544Ludwig Van Beethoven926720James Morris (5)Bass Vocals [Bass]1346687Westminster ChoirChoir842132Riccardo MutiConductor27519The Philadelphia OrchestraOrchestra08 Ludwig Van Beethoven (1770-1827)08-01Violin Concerto In D Op.61: I. Allegro Ma Non Troppo (Opening)4:0495544Ludwig Van Beethoven397616Sir Adrian BoultConductor704150New Philharmonia OrchestraOrchestra835073Josef SukViolin08-02Piano Concerto No.3 In C Minor Op.37: I. Allegro Con Brio (Opening)5:4395544Ludwig Van Beethoven869570Alceo GallieraConductor454293Philharmonia OrchestraOrchestra836429Claudio ArrauPiano08-03Piano Concerto No.5 In E Flat Op.73 'Emperor': I. Allegro (Extract)6:3895544Ludwig Van Beethoven547969George SzellConductor547971The Cleveland OrchestraOrchestra308115Emil GilelsPianoPiano Sonata No.8 In C Minor 'Pathétique' Op.1395544Ludwig Van Beethoven840349Walter GiesekingPiano08-04I. Grave – Allegro Molto E Con Brio7:4908-05II. Adagio Cantabile5:4808-06III. Rondo: Allegro4:0408-07Piano Sonata No.14 In C Sharp Minor Op.27 No.2 'Moonlight': I. Adagio Sostenuto (Extract)3:5595544Ludwig Van Beethoven374012Dame Moura LympanyPiano08-08Für Elise3:1895544Ludwig Van Beethoven374012Dame Moura LympanyPianoViolin Sonata No.5 In F Op.24 'Spring'95544Ludwig Van Beethoven1917195Jeremy MenuhinPiano532086Yehudi MenuhinViolin08-09I. Allegro (Extract)3:3408-10II. Adagio Molto Espressivo6:2708-11III. Scherzo: Allegro Molto1:1808-12IV. Rondo: Allegro Ma Non Troppo6:4908-13Cello Sonata No.2 In G Minor Op.5 No.2: I. Adagio Sostenuto Ed Espressivo 5.55:5595544Ludwig Van Beethoven852384Paul TortelierCello926719Eric HeidsieckPiano08-14Flute Sonata In B Flat Anhang 4 (Attrib. Beethoven): II. Polonaise4:1295544Ludwig Van Beethoven833837Michel DebostFlute1356495Christian IvaldiPiano08-15Violin Sonata No.9 In A Op.47 'KreutzerÄ: III. Finale: Presto (Conclusion)3:0295544Ludwig Van Beethoven1917195Jeremy MenuhinPiano532086Yehudi MenuhinViolin08-16Cello Sonata No.5 In D Op.102 No.2: III. Allegro Fugato3:5495544Ludwig Van Beethoven846290Jacqueline Du PréCello1038546Stephen Bishop-KovacevichStephen KovacevichPiano09 Ludwig Van Beethoven (1770-1827)09-01Quintet For Piano, Oboe, Clarinet, Horn & Bassoon In E Flat Op.16: III. Rondo: Allegro Non Troppo5:4595544Ludwig Van Beethoven894398Melos Ensemble Of LondonEnsemble09-02String Quartet No.1 In F Op.18 No.1: II. Adagio Afettuoso Ed Appassionato (Opening)3:5195544Ludwig Van Beethoven837615Alban Berg QuartettEnsemble09-03String Quartet No.4 In C Minor Op.18 No.4: III. Menuetto – Trio3:2695544Ludwig Van Beethoven837615Alban Berg QuartettEnsemble09-04Clarinet Trio In B Flat Op.11: II. Adagio5:0995544Ludwig Van Beethoven851241The Nash EnsembleEnsemble09-05Duo For Clarinet & Bassoon In C Woo25: I. Allegro3:4895544Ludwig Van Beethoven985837William WaterhouseBassoon861276Gervase de PeyerClarinet09-06Septet In E Flat Op.20: III. Tempo Di Menuetto – Trio3:0895544Ludwig Van Beethoven894398Melos Ensemble Of LondonEnsembleTrio For Flute, Violin & Viola In D Op.2595544Ludwig Van Beethoven833837Michel DebostFlute838649Serge CollotViola948983Gérard JarryViolin09-07I. Entrata: Allegro3:1909-08III. Allegro Molto2:0509-09March For 2 Clarinets, 2 Bassoons & 2 Horns In B Flat Woo291:1995544Ludwig Van Beethoven894398Melos Ensemble Of LondonEnsemble09-10Piano Trio No.5 In D Op.70 No.1 'Ghost': II. Largo Assai Ed Espressivo (Opening)5:1295544Ludwig Van Beethoven3145434Chung TrioEnsemble09-11String Quartet No.10 In E Flat Op.74 'Harp': Poco Adagio – Allegro8:3695544Ludwig Van Beethoven867251The Hungarian QuartetEnsemble09-12Sextet For 3 Violins, 2 Horns & Cello In E Flat Op.81b: III. Rondo: Allegro5:3595544Ludwig Van Beethoven894398Melos Ensemble Of LondonEnsemble09-13Octet In E Flat Op.103: IV. Finale: Presto3:4595544Ludwig Van Beethoven894398Melos Ensemble Of LondonEnsemble09-14Ich Liebe Dich (Herrosee)1:4295544Ludwig Van Beethoven839696Olaf BärBaritone Vocals900975Geoffrey Parsons (2)Piano09-15Wonne Der Wehmut (Goethe)2:4495544Ludwig Van Beethoven881800Dalton BaldwinPiano841660Elly AmelingSoprano Vocals09-16Irish Songs Woo154: He Promised Me At Parting1:2395544Ludwig Van Beethoven833168Dietrich Fischer-DieskauDietrisch Fischer-DieskauBaritone Vocals1901274Irmgard PoppenCello845919Gerald MoorePiano858380Victoria De Los AngelesSoprano Vocals1353170Eduard DrolcViolin09-17Mass In C Op.86: Kyrie5:3195544Ludwig Van Beethoven899899Marius RintzlerBass Vocals1079561New Philharmonia ChorusChorus833560Carlo Maria GiuliniConductor267134Janet BakerMezzo-soprano Vocals704150New Philharmonia OrchestraOrchestra841660Elly AmelingSoprano Vocals1236438Theo AltmeyerTenor VocalsMissa Solemnis In D Op.12395544Ludwig Van Beethoven926731Hans TschammerBass Vocals926725Tallis Chamber ChoirChoir659953Jeffrey TateConductor833891Waltraud MeierMezzo-soprano Vocals415725English Chamber OrchestraOrchestra2115800Carol VanessSoprano Vocals862837Hans Peter BlochwitzTenor Vocals09-18Gloria In Excelsis Deo- Gratias Agimus Tibi4:5809-19Et Resurrexit Tertia Die - Credo In Spiritum Sanctum2:5610 Renaissance & Baroque10-01Zadok the Priest5:20375279Georg Friedrich HändelHandel700443The King's College Choir Of CambridgeChoir877524Stephen CleoburyConductor837442The Academy Of Ancient MusicOrchestra10-02The Prince Of Denmark's March (Trumpet Voluntary)1:04836445Jeremiah ClarkeClarke683292Richard HickoxConductor318371City Of London SinfoniaOrchestra491879Crispian Steele-PerkinsTrumpet10-03Lachrymae (1604): Pavane: Lachrymae Antique4:14743704John DowlandDowland10-04Abdelazar, Or The Moor's Revenge: Rondeau1:3465796Henry PurcellPurcell875353Andrew ParrottConductor960912Taverner PlayersTavener PlayersEnsemble10-05Spem In Alium10:16740149Thomas TallisTallis875353Andrew ParrottConductor5059891Taverner Consort & PlayersTavener Consort & PlayersEnsemble10-06With Lilies White4:52765352William ByrdByrd836065Gérard LesneCountertenor Vocals960935Ensemble Orlando GibbonsEnsembleDido And Aeneas65796Henry PurcellPurcell960910European VoicesChoir960948Emmanuelle HaïmConductor960921Le Concert D'AstréeOrchestra960898Susan Graham (2)Soprano Vocals10-07Overture2:1310-08Your Counsel All… Great Minds… Thy Hand, Belinda… When I Am Laid In Earth… With Drooping Wings7:0010-09Symphony – Come, Ye Sons Of Art, Away – Sound The Trumpet – Come, Ye Sons Of Art8:5665796Henry PurcellPurcell845763Gustav LeonhardtConductor561407Christopher RobsonCountertenor Vocals833217James Bowman (2)Countertenor Vocals900433Orchestra Of The Age Of EnlightenmentOrchestra10-10O Solitude6:1065796Henry PurcellPurcell836755Paul NicholsonHarpsichord, Organ870693Nigel NorthLute836154Nancy ArgentaSoprano Vocals875352Richard BoothbyViola da Gamba10-11Solomon: Arrival Of The Queen Of Sheba2:45375279Georg Friedrich HändelHandel875353Andrew ParrottConductor960912Taverner PlayersTavener PlayersEnsembleMessiah375279Georg Friedrich HändelHandel875353Andrew ParrottConductor833217James Bowman (2)Countertenor Vocals7762601Taverner Choir & PlayersTavener Choir & PlayersEnsemble10-12Hallelujah3:5910-13He Was Despised11:4710-14Water Music: Suite In D: Overture – Hornpipe5:20375279Georg Friedrich HändelHandel926716Roger NorringtonSir Roger NorringtonConductor926722London Classical PlayersEnsemble11 Renaissance & Baroque11-01Serse: Ombra Mai Fu3:06375279Georg Friedrich HändelHandel926716Roger NorringtonSir Roger NorringtonConductor960944David Daniels (3)Countertenor Vocals900433Orchestra Of The Age Of EnlightenmentOrchestra11-02Dixit Dominus (Opening Chorus)5:18375279Georg Friedrich HändelHandel875353Andrew ParrottConductor7762601Taverner Choir & PlayersTavener Choir & PlayersEnsemble11-03Giulio Cesare In Egitto: Dall'ondoso Periglio… Aure, Deh, Per Pieta8:33375279Georg Friedrich HändelHandel855140John Nelson (5)Conductor960889Stephanie BlytheContralto Vocals931339Ensemble Orchestral De ParisEnsemble11-04Alcina: Verdi Prati4:19375279Georg Friedrich HändelHandel683292Richard HickoxConductor835733Della JonesMezzo-soprano Vocals6187106City Of London Baroque SinfoniaOrchestra11-05Orfeo: Sinfonia1:37154174Claudio MonteverdiMonteverdi960948Emmanuelle HaïmConductor960921Le Concert D'AstréeOrchestra11-06Altri Canti D'amor, Tenero Arciero10:14154174Claudio MonteverdiMonteverdi960926The Consort Of MusickeEnsemble836116Anthony RooleyLute11-07Beatus Vir8:53154174Claudio MonteverdiMonteverdi875353Andrew ParrottConductor7762601Taverner Choir & PlayersTavener Choir & PlayersEnsemble11-08L'Incoronazione Di Poppea: Pur Ti Miro5:39154174Claudio MonteverdiMonteverdi683292Richard HickoxConductor835733Della JonesMezzo-soprano Vocals6187106City of London Baroque SinfoniaOrchestra899625Arleen AugerSoprano Vocals11-09Adagio7:3995541Tomaso AlbinoniAlbinoni,469410Remo GiazottoGiazotto304509Jonathan ReesConductor1945359Scottish EnsembleEnsemble11-10Miserere (Extract)5:44877526Gregorio AllegriAllegri700443The King's College Choir Of CambridgeChoir877524Stephen CleoburyConductor11-11Sonata Pian' E Forte5:17909961Giovanni GabrieliGabrieli180025Gabrieli ConsortChoir180026Paul McCreeshConductor960941Gabrieli playersOrchestra11-12The Four Seasons (Le Quattro Stagioni) No.2 'Summer' (L'estate): I. Allegro – II. Adagio – III. Presto9:48108566Antonio VivaldiVivaldi834388Nicholas KraemerConductor960952Raglan Baroque PlayersEnsemble960940Monica HuggettViolin12 Renaissance & Baroque12-01Gloria RV589 (Opening Chorus)2:29108566Antonio VivaldiVivaldi875353Andrew ParrottConductor5638911Taverner Consort, Choir & PlayersTavener Choir, Consort & PlayersEnsemble12-02Oboe Concerto In C Minor: II. Adagio3:50487835Alessandro MarcelloMarcello960950Richard StampConductor837636Ray StillOboe960925Academy Of LondonOrchestra12-03Guitar Quintet In E: III. Menuetto3:38833097Luigi BoccheriniBoccherini868236Europa GalanteEnsemble12-04Keyboard Sonata In D Minor K93:59304973Domenico ScarlattiScarlatti926728Mikhail PletnevPiano12-05Stabat Mater (Opening)4:44734491Giovanni Battista PergolesiPergolesi836065Gérard LesneCountertenor Vocals840731Il Seminario MusicaleEnsemble730827Véronique GensSoprano Vocals12-06Concerto For Two Mandolines In F Rv532: I. Allegro3:58108566Antonio VivaldiVivaldi868236Europa GalanteEnsemble960945Giovanni ScaramuzzinoMandolin960923Sonia MaurerMandolin960922Fabio BiondiViolin12-07Crucifixus3:08840465Antonio LottiLotti875353Andrew ParrottConductor8144620Taverner Consort & ChoirTavener Consort & ChoirEnsemble12-08(Arr. Dupin): Sonata In G Minor 'Devil's Trill': III. Allegro 3.83:18837881Giuseppe TartiniTartini220728Marc-Olivier DupinArranged By960897Orchestre D'AuvergneOrchestra947185Jean-Jacques KantorowViolin12-09The Four Seasons (Le Quattro Stagioni) No.1: Spring (La Primavera): I. Allegro – II. Largo E Pianissimo Sempre – III. Danza Pastorale: Allegro10:00108566Antonio VivaldiVivaldi875353Andrew ParrottConductor960912Taverner PlayersTavener PlayersEnsemble845160Chiara BanchiniViolin12-10Recorder Concerto In C RV444: I. Allegro4:04108566Antonio VivaldiVivaldi703272Louis AuriacombeConductor852386Orchestre De Chambre De ToulouseOrchestra960949Michel SanvoisinRecorder12-11Fandango10:37883759Padre Antonio SolerSoler960913Maggie ColeHarpsichord12-12O Vos Omnes3:261364371Tomás Luis De VictoriaVictoria729552Harry ChristophersConductor713519The SixteenEnsemble12-13Differencias Sobre Las Folias6:48836681Antonio Martín Y CollMartin Y Coll837875Jordi SavallConductor1356055Hespèrion XXEnsemble12-14Villancico: Ay Luna Que Reluzes3:22967691Anonymous837875Jordi SavallConductor1356055Hespèrion XXEnsemble837877Montserrat FiguerasSoprano Vocals12-15Pavan & Galliarde D'Alexandra (Circa 1500)2:58829982Alonso MudarraMudarra960909Nancy HaddenLute12-16Messa De Requiem Consacrée À Luis De Camões: Sanctus2:41960915João Domingos BomtempoBomtempo960902Chorus Of The Gulbenkian FoundationChorus833014Michel CorbozConductor898855Gulbenkian OrchestraOrchestra13 Baroque13-01Marche De Triomphe Avec Des Trompettes Et Des Timbales2:161637225André I Danican PhilidorPhilidor840734Hugo ReyneConductor960951La Simphonie Du MaraisEnsemble13-02Marche Des Mousquetaires1:26834050Jean-Baptiste LullyLully840734Hugo ReyneConductor960951La Simphonie Du MaraisEnsemble13-03Symphonies Pour Le Festin Royal Du Comte D'Artois: Contredanse3:12960933François FrancœurFrancoeur840734Hugo ReyneConductor960951La Simphonie Du MaraisEnsemble13-04Marche De Triomphe2:33571862Marc Antoine CharpentierCharpentier859024Fritz LehanConductor2176594Consortium Musicum (2)Ensemble13-05Symphonies Pour Les Soupers Du Roi Caprice de Villers-Cotterets16:09837453Michel Richard DelalandeDe Lalande877614Jean-Pierre WallezConductor931339Ensemble Orchestral De ParisOrchestra960942Bernard SoustrotTrumpet855438Guy TouvronTrumpet578734Maurice AndréTrumpet13-06Chaconne5:07960937Antoine DauvergneDauvergne842913Concerto KölnEnsemble13-07Te Deum: Prelude1:35571862Marc Antoine CharpentierCharpentier356317William ChristieConductor835060Les Arts FlorissantsEnsemble13-08Messe Propre Pour Les Convents De Religieux Et Religieuses: Offertoire Sur Les Grands Jeux5:00671327François CouperinCouperin960936Jean-Patrice BrosseOrgan13-09Regina Coeli2:40571862Marc Antoine CharpentierCharpentier960904Les Demoiselles de Saint-CyrChoir960938Emmanuel MandrinConductor13-10Panis Angelicus3:31834311Louis-Nicolas ClérambaultClérambault1671466Josep Miquel RamonJosep-Miquel Ramon I MonzóBass Vocals836065Gérard LesneCountertenor Vocals840731Il Seminario MusicaleEnsemble833877Mark PadmoreTenor Vocals13-11Requiem: Introit (Extract)3:11924402André CampraCampra960891Pages de la ChapelleChoir841439Jean-Claude MalgoireConductor900378La Grande Ecurie Et La Chambre Du RoyOrchestra13-12In Convertendo: Tunc Repletum Est Gaudio Nostrum3:07671328Jean-Philippe RameauRameau834048Hervé NiquetConductor834047Le Concert SpirituelOrchestra13-13Suite In C Minor: La Plainte, Ou Le Tombeau de Mesdemoiselles de Visée, Filles De L'Auteur5:17841455Robert de ViséeDe Visée840729Pascal MonteilhetTheorbo13-14Plainte Sur la Mort de Monsieur Lambert5:175190317Jacques Du BuissonDu Buisson836065Gérard LesneCountertenor Vocals379513Ensemble Instrumental de Musique ContemporaineInstrumental EnsembleEnsemble13-15Tambourins2:14671328Jean-Philippe RameauRameau983824SonnerieTrio SonnerieEnsemble13-16Suite In C Minor: La Plainte3:20864379Marin MaraisMarais960947Pierre HantaïHarpsichord834970Alix VerzierViol960946Jérôme HantaïViola da Gamba13-17Le Canal De Versailles: Overture1:351637225André I Danican PhilidorPhilidor840734Hugo ReyneConductor960951La Simphonie Du MaraisEnsemble13-18Isis: Air Des Trembleurs: L'Hiver Qui Nous Tourmente S'obstine À Nous Geler1:51834050Jean-Baptiste LullyLully808100Bernard DelétréBass Vocals840734Hugo ReyneConductor960951La Simphonie Du MaraisEnsemble960906Isabelle DesrochersSoprano VocalsLes Indes Galantes671328Jean-Philippe RameauRameau834313Patrick Cohën-AkenineConductor960905Les Folies FrançoisesEnsemble960927Patricia PetibonSoprano Vocals13-19Chaconne5:3513-20Air: Régnez, Plaisirs Et Jeux3:1614 Baroque14-01Canon In D3:39115463Johann PachelbelPachelbel875353Andrew ParrottConductor960912Taverner PlayersTavener PlayersOrchestra14-02Canzonetta In A Minor BuxWv2251:55946368Dieterich BuxtehudeBuxtehude960911Nicholas DanbyOrgan14-03Cello Concerto In G Minor: II. Allegro Non Tanto4:34983825Matthias Georg MonnMonn960932Balázs MátéCello Banjo960914Lajos RovátkayConductor960924Capella Agostino SteffaniEnsemble14-04Suite In A Minor: Les Plaisirs2:37793064Georg Philipp TelemannTelemann835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra517156David MunrowRecorder14-05Oboe Concerto In F Minor: II. Largo2:17793064Georg Philipp TelemannTelemann898398Bob van AsperenConductor960890Melante AmsterdamEnsemble907989Han de VriesOboe14-06Cantata BWV29 'Wir Danken Dir, Gott, Wir Danken Dir': Sinfonia3:3895537Johann Sebastian BachJ S Bach875353Andrew ParrottConductor960912Taverner PlayersTavener PlayersOrchestra14-07Flute Sonata In E Flat BWV1031: II. Siciliano2:1995537Johann Sebastian BachJ S Bach833837Michel DebostFlute933325Lionel RoggHarpsichord14-08Orchestral Suite No.4 In D BWV1069: V: La Réjouissance2:3395537Johann Sebastian BachJ S Bach875353Andrew ParrottConductor5501412Boston Early Music Festival OrchestraBoston Early Music FestivalOrchestra14-09Partita No.3 In E For Solo Violin BWV1006: I. Preludio3:1495537Johann Sebastian BachJ S Bach960934Christian TetzlaffViolin14-10The Well-Tempered Clavier Book I: Prelude & Fugue In C BWV8465:0995537Johann Sebastian BachJ S Bach898398Bob van AsperenHarpsichordSuite In E Minor BWV99695537Johann Sebastian BachJ S Bach960939Sharon IsbinGuitar14-11V. Bourrée1:2114-12VI. Gigue2:11Keyboard Partita No.1 In B Flat BWV82595537Johann Sebastian BachJ S Bach:845763Gustav LeonhardtHarpsichord14-13I. Präludium2:1314-14VI. Gigue2:1114-15Keyboard Sonata In E Flat: II. Largo – III. Presto5:15891601Wilhelm Friedemann BachW. F. Bach841787Christophe RoussetHarpsichord14-16Cello Concerto In A H439: III. Allegro Assai5:02841803Carl Philipp Emanuel BachCPE Bach898403Anner BylsmaCello845763Gustav LeonhardtConductor900433Orchestra Of The Age Of EnlightenmentOrchestra14-17Die Auferstehung Und Himmelfahrt Jesu: Triumph! Der Fürst Des Lebens Sieget2:05841803Carl Philipp Emanuel BachCPE Bach835650Collegium VocaleChoir of Collegium Vocale GentChoir834088Philippe HerrewegheConductor900433Orchestra Of The Age Of EnlightenmentOrchestra14-18Sarabande3:24375279Georg Friedrich HändelHandel268168Simon HaleArranged By3379824Alexander BrigerAlex BrigerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra14-19Music For The Royal Fireworks: La Réjouissance: Allegro2:21375279Georg Friedrich HändelHandel532086Yehudi MenuhinConductor532088Menuhin Festival OrchestraOrchestra15 Classic & Romantic15-01Symphony No.5 In C Sharp Minor: IV. Adagietto (Conclusion)3:05239236Gustav MahlerMahler561054Sir John BarbirolliConductor704150New Philharmonia OrchestraOrchestra15-02Piano Concerto No.1: I: Allegro Non Troppo E Molto Maestoso (Opening)3:21999914Pyotr Ilyich TchaikovskyTchaikovsky224329André PrevinConductor212726London Symphony OrchestraOrchestra833027Horacio GutiérrezPiano15-03Romeo And Juliet (Extract)2:56999914Pyotr Ilyich TchaikovskyTchaikovsky846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOrchestra15-04Piano Concerto No.2: II. Adagio Sostenuto (Opening)4:28206280Sergei RachmaninoffRachmaninov490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra878651Cécile OussetPiano15-05Prince Igor: Polovtsian Dances (Opening)2:3395543Alexander BorodinBorodin1037718The Beecham Choral SocietyChoir846301Sir Thomas BeechamConductor341104Royal Philharmonic OrchestraOrchestra15-06Symphony No.2: III. Adagio (Opening)7:10206280Sergei RachmaninoffRachmaninov846281Mariss JansonsConductor1065788St. Petersburg Philharmonic OrchestraOrchestra15-07Orfeo Ed Euridice: Dance Of The Blessed Spirits2:12534822Christoph Willibald GluckGluck842132Riccardo MutiConductor704150New Philharmonia OrchestraOrchestra15-08(transcr. Leon): 'Emperor' Concerto: II. Adagio6:5995544Ludwig van BeethovenBeethoven768091Ernö OlahConductor515203Julia ThorntonHarp1053318Nederlands Radio Symfonie OrkestNational Radio Orchestra Of The NetherlandsOrchestra15-09Horn Concerto No.4: II. Romanza: Andante Cantabile4:4395546Wolfgang Amadeus MozartMozart659953Jeffrey TateConductor2483583Radovan VlatkovićHorn415725English Chamber OrchestraOrchestra15-10A Midsummer Night's Dream: Nocturne5:50623293Felix Mendelssohn-BartholdyMendelssohn832951Sir Charles MackerrasConductor900433Orchestra Of The Age Of EnlightenmentOrchestra15-111812 Overture (Conclusion)3:31999914Pyotr Ilyich TchaikovskyTchaikovsky846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOrchestra15-12A Midsummer Night's Dream: Wedding March5:35623293Felix Mendelssohn-BartholdyMendelssohn659953Jeffrey TateConductor1024263Rotterdams Philharmonisch OrkestRotterdam Philharmonic OrchestraOrchestra15-13Pavane6:46497542Gabriel FauréFauré527161David WillcocksSir David WillcocksConductor895390Gareth Morris (2)Flute704150New Philharmonia OrchestraOrchestra15-14Trumpet Concerto In E Flat: III. Rondo: Allegro Molto3:38842308Johann Nepomuk HummelHummel283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra578734Maurice AndréTrumpet15-15Romance5:51456926Camille Saint-SaënsSaint-Saëns858480Pierre Dervaux (2)Conductor704150New Philharmonia OrchestraOrchestra865411Ulf HoelscherViolin15-16Dolly Suite: Berceuse2:34497542Gabriel FauréFauré736604Bruno RiguttoPiano872030Jean-Philippe CollardPiano15-17Minuit, Chrétiens4:48638732Adolphe C. AdamAdam3648910Chœur Du Capitole De ToulouseChoir3859654Les Petits Chanteurs À La Croix PotencéeChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra959409Roberto AlagnaTenor Vocals16 Romantic & 20th Century16-01Liebesleid3:24620186Fritz KreislerKreisler890910Ian Brown (4)Piano861953Maxim VengerovViolin16-02Karelia Suite: Alla Marcia4:38627442Jean SibeliusSibelius561054Sir John BarbirolliConductor374006Hallé OrchestraOrchestra16-03Finlandia8:25627442Jean SibeliusSibelius561054Sir John BarbirolliConductor374006Hallé OrchestraOrchestra16-04Radetzky March2:512025291Johann Strauss Sr.J. Strauss I696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra16-05Pomp And Circumstance: March No.12:34255804Sir Edward ElgarElgar348565The Royal Choral SocietyChoir587167Andrew DavisSir Andrew DavisConductor271875London Philharmonic OrchestraOrchestra16-06Symphony No.3 In C Minor 'Organ' Op.78: Maestoso - Allegro (Conclusion)8:08456926Camille Saint-SaënsSaint-Saëns931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra833422Matthias EisenbergOrgan16-07L'Oiseau De Feu (Conclusion)3:04115469Igor StravinskyStravinsky712500Seiji OzawaConductor395913Boston Symphony OrchestraOrchestra16-08Enigma Variations: Nimrod3:56255804Sir Edward ElgarElgar397616Sir Adrian BoultConductor212726London Symphony OrchestraOrchestra16-09Scheherazade: II. The Story Of The Kalendar Prine (Opening)3:49115466Nikolai Rimsky-KorsakovRimsky-Korsakov842132Riccardo MutiConductor27519The Philadelphia OrchestraOrchestra16-10Clair De Lune5:1096123Claude DebussyDebussy617133Leopold StokowskiStokowskiArranged By517158Wolfgang SawallischConductor27519The Philadelphia OrchestraOrchestra16-11Cavalleria Rusticana: Intermezzo3:41230140Pietro MascagniMascagni842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra(Orch. Ravel): Pictures At An Exhibition523633Modest MussorgskyMussorgsky846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOslo Philharmonic OrchestraOrchestra216140Maurice RavelOrchestrated By16-12The Hut On Fowl's Legs3:2616-13The Great Gate Of Kiev5:2216-14Symphonie Fantastique: IV. Marche Au Supplice4:51108565Hector BerliozBerlioz299702Leonard BernsteinConductor626175Orchestre National De FranceOrchestra16-15Serenade For Strings In C Op.48: Valse: Moderato3:40999914Pyotr Ilyich TchaikovskyTchaikovsky683292Richard HickoxConductor318371City Of London SinfoniaOrchestra16-16Prelude In C Sharp Minor Op.3 No.24:34206280Sergei RachmaninoffRachmaninov374012Dame Moura LympanyPiano16-17Lohengrin: Treulich Geführt (Bridal Chorus)5:16294746Richard WagnerWagner855066Chorus Of The Royal Opera House, Covent GardenChorus832917Bernard HaitinkConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra17 Romantic & 20th Century17-01Carmen: Entr'acte To Act III2:32342543Georges BizetBizet712500Seiji OzawaConductor626175Orchestre National De FranceFrench National OrchestraOrchestra17-02Chanson D'amour1:59497542Gabriel FauréFauré2423060Michael Francis (3)Conductor212726London Symphony OrchestraOrchestra1458014Natasha MarshSoprano Vocals17-03Peer Gynt: Morning4:1495542Edvard GriegGrieg835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra17-04Ma Vlast (Extract)4:59833315Bedřich SmetanaSmetana849795Paavo BerglundConductor578737Staatskapelle DresdenOrchestra17-05Piano Concerto: II. Adagio6:3595542Edvard GriegGrieg555458Yuri TemirkanovConductor341104Royal Philharmonic OrchestraOrchestra865618Dmitri AlexeevPiano17-06Symphony No.9 'From The New World': II. Largo (Opening)4:42268272Antonín DvořákDvořák846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOslo Philharmonic OrchestraOrchestra17-07Wedding Day At Troldhaugen5:3795542Edvard GriegGrieg1065456Daniel AdniPiano17-08Rusalka: Song To The Moon5:51268272Antonín DvořákDvořák2358844Stefan SolteszConductor540187Münchner RundfunkorchesterOrchestra865661Lucia PoppSoprano Vocals17-09Piano Concerto No.1: II. Romance: Larghetto (Opening)3:50192325Frédéric ChopinChopin539272Charles DutoitConductor931253Orchestre Symphonique De MontréalMontreal Symphony OrchestraOrchestra832905Martha ArgerichPiano17-10Piano Concerto No.1: II. Quasi Adagio4:29226461Franz LisztLiszt522209Kurt MasurConductor522210Gewandhausorchester LeipzigLeipzig Gewandhaus OrchestraOrchestra1058540Michel BéroffPiano17-11Pelléas Et Mélisande: At The Castle Gate2:51627442Jean SibeliusSibelius849795Paavo BerglundConductor835739Bournemouth Symphony OrchestraOrchestra17-12Jealousy-Tango4:08675266Jacob GadeGade846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOslo Philharmonic OrchestraOrchestra1775593Stig Nilsson (4)Violin17-13Nocturne No.2 In E Flat Op.9 No.25:15192325Frédéric ChopinChopin846295John OgdonPiano17-14Liebestraum No.3 In A Flat4:06226461Franz LisztLiszt544894Leif Ove AndsnesPiano17-15Fantasia On Greensleeves4:37662168Ralph Vaughan WilliamsVaughan-Williams1767608Ralph GreavesArranged By561054Sir John BarbirolliConductor896679Sinfonia Of LondonOrchestra17-16Michelle3:19779927Lennon-McCartneyLennon & McCartney283110Ron GoodwinArranged By973597Royal Liverpool Philharmonic OrchestraOrchestra1571634Rostal & SchaeferPiano17-17The Planets: Venus (Conclusion)2:35335760Gustav HolstHolst397616Sir Adrian BoultConductor271875London Philharmonic OrchestraOrchestra18 Romantic & 20th Century18-01Sentimental Melody3:56691665Heitor Villa-LobosVilla-Lobos1480099Carlos Barbosa-LimaArranged By960939Sharon IsbinGuitar18-02Los Gavilanes3:441167467Jacinto GuerreroGuerrero2675301Manuel Moreno-BuendíaConductor854120Orquesta Sinfónica De MadridOrchestra270225Placido DomingoTenor Vocals18-03Cavatina3:1359655Stanley MyersMyers1450902Manuel BarruecoGuitar94844Steve MorseGuitar18-04Time To Say Goodbye3:57660411Lucio QuarantottoQuarantotto1079862David AbellConductor18-05Le Sacre Du Printemps: Dance Sacrale (L'élue)4:59115469Igor StravinskyStravinsky555458Yuri TemirkanovConductor341104Royal Philharmonic OrchestraOrchestra18-06The Planets: Venus, The Bringer Of Peace8:07335760Gustav HolstHolst832951Sir Charles MackerrasConductor973597Royal Liverpool Philharmonic OrchestraOrchestra18-07Porgy And Bess: Summertime2:40261293George GershwinGershwin1604395New York Choral ArtistsChoir567747John McGlinnConductor838100The New Princess OrchestraOrchestra532265Kiri Te KanawaSoprano Vocals18-08Plaisir D'amour2:49668694Jean-Paul-Egide MartiniMartini1774825Michel DalbertoPiano832655Barbara HendricksSoprano Vocals18-09Kinderszenen Op.15: Träumerei2:37578727Robert SchumannSchumann374012Dame Moura LympanyPiano18-10Peer Gynt: Solveig's Song5:4595542Edvard GriegGrieg835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra865661Lucia PoppSoprano Vocals18-11Carnaval Des Animaux: Aquarium2:06456926Camille Saint-SaënsSaint-Saëns843127Alexander GibsonConductor627128Royal Scottish National OrchestraScottish National OrchestraOrchestra883777Peter KatinPiano1743566Philip FowkePiano18-12Ständchen D957 No.43:42283469Franz SchubertSchubert833452Radu LupuPiano832655Barbara HendricksSoprano Vocals18-13Waltz No.15 In A Flat1:37304975Johannes BrahmsBrahms374012Dame Moura LympanyPiano18-14Heideröslein D2571:44283469Franz SchubertSchubert833168Dietrich Fischer-DieskauBaritone Vocals845919Gerald MoorePiano18-15West Side Story Symphonic Dances: II. Somewhere4:00299702Leonard BernsteinBernstein564749Paavo JärviConductor490279City Of Birmingham Symphony OrchestraOrchestra18-16La Rondine: Chi Il Bel Sogno di Doretta3:05369053Giacomo PucciniPuccini832951Sir Charles MackerrasConductor212726London Symphony OrchestraOrchestra253133Montserrat CaballéSoprano Vocals18-17L'Amico Fritz: O Amore, O Bella Luce Del Core2:29230140Pietro MascagniMascagni855063Gianandrea GavazzeniConductor855061Orchestra of the Royal Opera House, Covent GardenOrchestra55683Luciano PavarottiTenor Vocals18-18Recuerdos De La Alhambra3:53862913Francisco TárregaTarrega311234Christopher ParkeningGuitar18-19Romeo & Juliet: Ai Giochi Addio3:19235382Nino RotaRota2042972François-Xavier RothConductor212726London Symphony OrchestraOrchestra1458014Natasha MarshSoprano Vocals19 Romantic & 20th Century19-01Piano Concerto No.2 In C Minor: I. Moderato (Opening)4:49206280Sergei RachmaninoffRachmaninov900110Lawrence FosterConductor374006Hallé OrchestraOrchestra1093560Jean-Bernard PommierPiano19-02Cello Concerto In A Minor: II. Langsam (Extract)3:35578727Robert SchumannSchumann874501Truls MørkCello564749Paavo JärviConductor1535518Orchestre Philharmonique De Radio FranceOrchestra19-03Lieutenant Kijé Suite: Troika2:52621694Sergei ProkofievProkofiev846285Klaus TennstedtConductor271875London Philharmonic OrchestraOrchestra19-04Piano Concerto No.3 In D Minor: I. Allegro Ma Non Tanto (Opening)2:49206280Sergei RachmaninoffRachmaninov846281Mariss JansonsConductor1065788St. Petersburg Philharmonic OrchestraOrchestra974748Mikhaïl RudyPiano19-05Concierto De Aranjuez: II. Adagio (Opening)4:43523642Joaquín RodrigoRodrigo490290Sir Simon RattleConductor841453Julian BreamJulien BreamGuitar490279City Of Birmingham Symphony OrchestraOrchestra19-06Cello Concerto In E Minor: I. Adagio – Moderato7:57255804Sir Edward ElgarElgar846290Jacqueline Du PréCello561054Sir John BarbirolliConductor212726London Symphony OrchestraOrchestra19-07Rhapsody On A Theme Of Paganini: Variation 182:57206280Sergei RachmaninoffRachmaninov490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra878651Cécile OussetPiano19-08Images: II. Ibéria: 3. Le Matin D'un Jour De Fête4:5496123Claude DebussyDebussy224329André PrevinConductor212726London Symphony OrchestraOrchestra19-09Valse Triste5:31627442Jean SibeliusSibelius561054Sir John BarbirolliConductor374006Hallé OrchestraOrchestra19-10The Lark Ascending (Opening)6:21662168Ralph Vaughan WilliamsVaughan-Williams397616Sir Adrian BoultConductor704150New Philharmonia OrchestraOrchestra322537Hugh BeanViolin19-11Nights In The Gardens Of Spain: I. In The Generalife (Extract)5:45229547Manuel De FallaFalla880957Rafael Frühbeck De BurgosConductor703271Orchestre De La Société Des Concerts Du ConservatoireOrchestra1096780Gonzalo SorianoPiano19-12Harnasie (Rural Scene) (Extract)2:26737925Karol SzymanowskiSzymanowski647526Antoni WitConductor9474706Orkiestra Symfoniczna Polskiego Radia W KrakowiePolish Radio Symphony Orchestra of KrakówOrchestra19-13Piano Concerto No.2 In F: II. Andante6:06115461Dmitri ShostakovichShostakovich328844Jerzy MaksymiukConductor415725English Chamber OrchestraOrchestra865618Dmitri AlexeevPiano19-14The Planets: Jupiter, The Bringer Of Jollity (Conclusion)4:47335760Gustav HolstHolst490290Sir Simon RattleConductor454293Philharmonia OrchestraOrchestra19-15Etude Op.8 No.122:32813771Alexander ScriabinScriabin1038546Stephen Bishop-KovacevichStephen KovecevichPiano19-16Piano Concerto No.3: I. Allegretto6:59304968Béla BartókBartok490290Sir Simon RattleConductor490279City of Birmingham Symphony OrchestraOrchestra567743Peter DonohoePiano20 20th Century20-01Sinfonietta: IV. Allegretto2:42822473Leoš JanáčekJanáček712500Seiji OzawaConductor837562Chicago Symphony OrchestraOrchestra20-026 Orchestral Pieces Op.6: VI. Langsam1:50294480Anton WebernWebern490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra20-035 Orchestral Pieces Op.16: IV. Peripetie (Sehr Rasch)2:37465983Arnold SchoenbergSchoenberg490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra20-04Lulu-Suite: IV. Variationen: Moderato 3:22732482Alban BergBerg490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra20-05Petrushka: Russian Dance2:29115469Igor StravinskyStravinsky490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra567743Peter DonohoePiano20-06Peter Grimes: Four Sea Interludes: Sunday Morning3:44598601Benjamin BrittenBritten857842Libor PešekConductor973597Royal Liverpool Philharmonic OrchestraOrchestra20-07Symphony No.5: II. Allegro (Conclusion)2:40841356Carl NielsenNielsen508213Herbert BlomstedtConductor5558626Danmarks Radios SymfoniorkesterDanish Radio Symphony OrchestraOrchestra20-08Les Biches: Rondeau3:32361814Francis PoulencPoulenc868929Georges PrêtreConductor454293Philharmonia OrchestraOrchestra20-09Concerto For Orchestra: IV: Intermezzo Interrotto: Allegretto4:22304968Béla BartókBartók712500Seiji OzawaConductor837562Chicago Symphony OrchestraOrchestra20-10Violin Concerto: II. Presto Capriccioso Alla Napolitana & Trio (Canzonetta)6:45835730Sir William WaltonWalton835730Sir William WaltonConductor212726London Symphony OrchestraOrchestra532086Yehudi MenuhinViolin20-11Pini di Roma: III. I Pini Di Villa Borghese2:50526594Ottorino RespighiRespighi526591Lamberto GardelliConductor212726London Symphony OrchestraOrchestra20-12Sinfonietta Op.23: Rondo. Sehr Lebhaft5:52866646Alexander Von ZemlinskyZemlinsky866651James ConlonConductor866649Gürzenich-Orchester Kölner PhilharmonikerOrchestra20-13Le Sacre Du Printemps: L'adoration De La Terre (Opening)5:02115469Igor StravinskyStravinsky490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra20-14The Rise And Fall Of The City Of Mahagonny – Suite: II. Moderato Assai2:20407111Kurt WeillWeill846281Mariss JansonsConductor260744Berliner PhilharmonikerOrchestra20-15Fantasia On A Theme By Thomas Tallis (Opening)6:09662168Ralph Vaughan WilliamsVaughan Williams397616Sir Adrian BoultConductor271875London Philharmonic OrchestraOrchestra20-16Pacific 2316:31361807Arthur HoneggerHonegger846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOslo Philharmonic OrchestraOrchestra20-17Kammermusik No.1: IV. Finale: 1921. Lebhaft6:02567511Paul HindemithHindemith368137Claudio AbbadoConductor260744Berliner PhilharmonikerOrchestra20-18Boléro (Conclusion)5:15216140Maurice RavelRavel224329André PrevinConductor212726London Symphony OrchestraOrchestra21 20th Century21-01Cantus In Memoriam Benjamin Britten6:12216141Arvo PärtPärt480804Richard StudtConductor424108Bournemouth SinfoniettaOrchestra21-02Ballet Suite – Yugen: Dance Of Men2:37725036Yūzō ToyamaToyama846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOslo Philharmonic OrchestraOrchestra21-03Cassiopeia: Scene3:00115467Toru TakemitsuTakemitsu712500Seiji OzawaConductor875497Japan Philharmonic Symphony OrchestraOrchestra585579Stomu Yamash'taPercussion21-04Die Königin Von Saba: Magische Töne3:421092665Karl GoldmarkGoldmark1265758Heinrich BenderConductor451535Bayerisches StaatsorchesterOrchester Der Bayerischen Staatsoper MünchenOrchestra696215Nicolai GeddaTenor Vocals21-05Anaklasis5:57227875Krzysztof PendereckiPenderecki227875Krzysztof PendereckiConductor212726London Symphony OrchestraOrchestra21-06Symphony No.8: II. Ballabile (Conclusion)4:38262358Hans Werner HenzeHenze490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra21-07Et Exspecto Resurrectionem Mortuorum: III. Des Profondeurs de L'abîme2:4532180Olivier MessiaenMessiaen599488Serge BaudoConductor744724Orchestre de ParisOrchestra1689626Ensemble de Percussion de l'Orchestre de ParisPercussion21-08Drowned Out (Excerpt)5:07746653Mark-Anthony TurnageTurnage490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra21-09Symphony No.1: I. Allegro Giusto4:52853983Witold LutoslawskiLutoslawski853983Witold LutoslawskiConductor778532Polish National Radio Symphony OrchestraOrchestra21-10Guitar Concerto: I. Allegro6:20410038Malcolm ArnoldArnold490290Sir Simon RattleConductor841453Julian BreamGuitar2278892Members Of The City Of Birmingham Symphony OrchestraOrchestra21-11The Heart Asks Pleasure First / The Promise (The Piano)3:1139574Michael NymanNyman39574Michael NymanComposed By, Directed By, Producer21-12Rain Coming (1982)8:31115467Toru TakemitsuTakemitsu636767Oliver KnussenConductor434336London SinfoniettaOrchestra21-13Tavener: The Protecting Veil: The Incarnation3:4065795John TavenerTavener380704Steven IsserlisCello283125Gennadi RozhdestvenskyGennady RahzdestvenskyConductor212726London Symphony OrchestraOrchestra21-14The Canticle Of The Sun (Extract)5:17154285Sofia GubaidulinaGubaidulina834577Mstislav RostropovichCello493464London VoicesChoir1260952Ryusuke NumajiriRyusuke NumajariConductor888776Neil PercyPercussion903404Simon Carrington (2)Percussion21-15Asyla – IV4:37926336Thomas AdèsAdès490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra22 20th Century22-01Candide: Overture4:13299702Leonard BernsteinBernstein224329André PrevinConductor212726London Symphony OrchestraOrchestra22-02A Set Of Pieces For Theatre Or Chamber Orchestra: No.3 In The Night2:47202092Charles IvesIves924076Ingo MetzmacherConductor65807Ensemble ModernOrchestra22-03Façades7:4620691Philip GlassGlass255709Christopher Warren-GreenConductor462220The London Chamber OrchestraOrchestra277300John HarleSoprano Saxophone332377Simon HaramSoprano Saxophone22-04Schindler's List: Main Theme5:01273394John Williams (4)Williams718732Iain Sutherland (2)Conductor646563The New World PhilharmonicOrchestra374007Tasmin LittleViolin22-05Fanfare For The Common Man3:38767788Aaron CoplandCopland834522Enrique BatizConductor973603Mexico City Philharmonic OrchestraOrchestra22-06Adagio For Strings6:2011696Samuel BarberBarber809856Eugene OrmandyConductor27519The Philadelphia OrchestraOrchestra22-07Titanic: My Heart Will Go On4:1939575James HornerHorner1079862David AbellConductor1450714Shearman OrchestraOrchestra22-08Nagoya Marimbas4:5122946Steve ReichReich833435Colin CurrieMarimba675033Sam WaltonMarimba22-09Three Occasions: A Celebration Of Some 100 X 150 Notes3:29502814Elliott CarterCarter490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra22-10Cello Concerto: II. Andante Sostenuto7:4311696Samuel BarberBarber960895Ralph KirshbaumCello926718Jukka-Pekka SarasteConductor926717Scottish Chamber OrchestraOrchestra22-11Shaker Loops: IV. Final Shaking3:43144310John AdamsAdams255709Christopher Warren-GreenConductor462220The London Chamber OrchestraOrchestra22-12Rodeo: Hoe-Down4:12767788Aaron CoplandCopland550341Leonard SlatkinConductor834226Saint Louis Symphony OrchestraOrchestra22-13(Jazz Band Version Arr. Grofé): Rhapsody In Blue (Opening)4:36261293George GershwinGershwin490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra1193496Wayne Marshall (2)Piano22-14Three Dances: Dance No.16:3126955John CageCage253245Michael Tilson ThomasPiano312208Ralph GriersonPiano22-15American Beauty: Any Other Name4:0548090Thomas NewmanNewman480491Nikolaj BlochPerformer, Producer229994Sally HerbertPerformer, Producer22-16Short Ride In A Fast Machine4:18144310John AdamsAdams490290Sir Simon RattleConductor490279City Of Birmingham Symphony OrchestraOrchestra23-01Al Amor Brujo: Ritual Fire Dance4:23229547Manuel de FallaFalla374012Dame Moura LympanyPiano23-02Two Poems Op.63: II. Etrangeté1:48813771Alexander ScriabinScriabin846295John OgdonPiano23-03Estampes: II. Pagodes5:0996123Claude DebussyDebussy878651Cécile OussetPiano23-04The Gadfly: Romance3:12115461Dmitri ShostakovichShostakovich1092096Piers LanePiano374007Tasmin LittleViolin23-05Liebesfreud3:16620186Fritz KreislerKreisler890910Ian Brown (4)Piano861953Maxim VengerovViolin23-0644 Duos: No.28 Sorrow2:44304968Béla BartókBartók1902464Nell GotkovskyNell GotkobskyViolin532086Yehudi MenuhinViolin23-07Spiegel Im Spiegel8:19216141Arvo PärtPärt759868Martin RoscoePiano374007Tasmin LittleViolin23-08Chôros No.1 In E Minor4:54691665Heitor Villa-LobosVilla-Lobos1450902Manuel BarruecoGuitar23-09All In Twilight: I. = 803:05115467Toru TakemitsuTakemitsu841453Julian BreamGuitar23-10Zapateado2:12392724Eduardo Sainz De La MazaSainz de la Maza960939Sharon IsbinGuitar23-11String Quartet No.1 'Metamorphoses Nocturnes': I. Allegro Grazioso1:31190370György LigetiLigeti1016352Artemis QuartettArtemis QuartetStrings23-12Lyric Suite: III. Allegro Misterioso3:11732482Alban BergBerg837615Alban Berg QuartettStrings23-13Verklärte Nacht (Extract)7:23465983Arnold SchoenbergSchoenberg837614Valentin ErbenCello1016352Artemis QuartettArtemis QuartetStrings837613Thomas KakuskaViola23-14Quatuor Pour La Fin Du Temps: I. Liturgie De Cristal2:2632180Olivier MessiaenMessiaen2251450Manuel Fischer-DieskauCello1696831Wolfgang Meyer (3)Clarinet502823Yvonne LoriodPiano866594Christoph PoppenViolin23-15Menuet2:45154287Alfred SchnittkeSchnittke834577Mstislav RostropovichCello532434Yuri BashmetViola359068Gidon KremerViolin23-16String Quartet In F: Assez Vif (Très Rythmé) 6.06:03216140Maurice RavelRavel1725072Belcea QuartetStrings24 20th Century24-01Carmina Burana: O Fortuna2:45102506Carl OrffOrff833169Philharmonia ChorusChorus842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra24-02Beatus Petronius5:02216141Arvo PärtPärt564754Estonian Philharmonic Chamber ChoirChoir564752Tõnu KaljusteConductor361606Christopher Bowers-BroadbentOrgan881679Ene SalumäeOrgan24-03Nunc Dimittis3:01546506Geoffrey BurgonBurgon683292Richard HickoxConductor833217James Bowman (2)Countertenor Vocals318371City Of London SinfoniaOrchestra491879Crispian Steele-PerkinsTrumpet24-04Requiem: Pie Jesu3:32443259John RutterRutter700443The King's College Choir Of CambridgeChoir877524Stephen CleoburyConductor318371City of London SinfoniaOrchestra1450901Edward SaklatvalaTreble Vocals24-05La Taberna Del Puerto: No Puede Ser2:42837673Pablo SorozábalSorozábal2035962Orquesta De La Comunidad De MadridOrchestra270225Placido DomingoTenor Vocals1027681Rolando VillazónTenor Vocals24-06Vocalise5:18206280Sergei RachmaninoffRachmaninov1016302Michael SchønwandtConductor523982Berliner Sinfonie OrchesterBerliner Symphony OrchestraOrchestra1722790Natalie DessaySoprano Vocals24-07Arlecchino: Wie Ist Ihr Schlaf, Madame?2:211032262Ferruccio BusoniBusoni5326900Ernst Theo RichterBaritone Vocals649582Kent NaganoConductor1023672Susanne MentzerMezzo-soprano Vocals649584Orchestre De L'Opéra De LyonOrchestra24-08Ballo1:4276028Luciano BerioBerio456210Diego MassonConductor264223Linda HirstMezzo-soprano Vocals434336London SinfoniettaOrchestra24-09Chants D'Auvergne: Bailèro6:40805611Joseph CanteloubeCanteloube837706Yan Pascal TortelierConductor415725English Chamber OrchestraOrchestra899625Arleen AugerSoprano Vocals24-10Vier Letzte Lieder: Beim Schlafengehen5:12108439Richard StraussStrauss1208600Antonio PappanoConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra445306Nina StemmeSoprano Vocals24-11Bachianas Brasileiras No.5: I. Aria (Cantilena): Adagio6:04691665Heitor Villa-LobosVilla-Lobos834522Enrique BatizConductor3361916Cellos of the Royal Philharmonic OrchestraOrchestra832655Barbara HendricksSoprano Vocals24-12Le Soleil Des Eaux: La Sorgue4:1792243Pierre BoulezBoulez774481Louis DevosBass Vocals569577BBC Symphony ChorusChoir92243Pierre BoulezConductor289522BBC Symphony OrchestraOrchestra1689628Josephine NendickSoprano Vocals1353208Barry McDanielTenor Vocals24-13Die Tote Stadt: Glück, Das Mir Verblieb5:34274325Erich Wolfgang KorngoldKorngold696134Julius RudelConductor454293Philharmonia OrchestraOrchestra532265Kiri Te KanawaSoprano Vocals24-14Star Wars: Main Theme3:15273394John Williams (4)Williams269081Geoff Love & His OrchestraOrchestra24-15E.T.: Main Theme3:57273394John Williams (4)Williams347276Ron Goodwin And His OrchestraOrchestra24-16The Mission: Gabriel's Oboe2:1215900Ennio MorriconeMorricone376069The Ennio Morricone OrchestraOrchestra24-17Violin Concerto No.1 In A Minor Op.99: IV: Burlesque: Allegro Con Brio5:00115461Dmitri ShostakovichShostakovich842135Maxim ShostakovichConductor704150New Philharmonia OrchestraOrchestra834646David OistrachViolin24-18Tarantella5:13737925Karol SzymanowskiSzymanowski2707287Itamar GolanPiano1199356Kyung-Wha ChungViolin24-19Serenade2:33833235Frederick DeliusDelius1092096Piers LanePers LanePiano374007Tasmin LittleViolin24-20Serenade After Plato's 'Symposium': III. Eryximachus: Presto1:29299702Leonard BernsteinBernstein550341Leonard SlatkinConductor834226Saint Louis Symphony OrchestraOrchestra914140Robert McDuffieViolin25 Opera25-01Rinaldo: Lascia Ch'io Pianga4:21375279Georg Friedrich HändelHandel530814Kirk TrevorConductor806436Slovak Radio Symphony OrchestraOrchestra3054709Jane GilchristSoprano Vocals25-02Il Trionfo Del Tempo E Del Disinganno: Un Pensiero Nemico Di Pace3:56375279Georg Friedrich HändelHandel960948Emmanuelle HaïmConductor960921Le Concert D'AstréeOrchestra1722790Natalie DessaySoprano Vocals25-03Don Giovanni: Batti, Batti, O Bel Masetto (Zerlina)3:5295546Wolfgang Amadeus MozartMozart832917Bernard HaitinkConductor271875London Philharmonic OrchestraOrchestra1671768Elizabeth GaleSoprano VocalsDie Zauberflöte95546Wolfgang Amadeus MozartMozart25-04Der Hölle Rache (The Queen Of The Night)2:56459665Edda MoserSoprano Vocals451535Bayerisches StaatsorchesterOrchester Der Bayerischen Staatsoper, MünchenOrchestra517158Wolfgang SawallischConductor25-05O Isis Und Osiris (Sarastro & Chorus)3:12473837Cornelius HauptmannBass Vocals1194142The Schütz Choir Of LondonSchütz ChoirChoir926722London Classical PlayersOrchestra926716Roger NorringtonConductor25-06Cosi Fan Tutte: Temerari… Come Scoglio (Fiordiligi)5:5195546Wolfgang Amadeus MozartMozart283127Karl BöhmConductor454293Philharmonia OrchestraOrchestra833167Elisabeth SchwarzkopfSoprano Vocals25-07Il Barbiere Di Siviglia: La Calunnia È Un Venticello (Basilo)4:53442174Gioacchino RossiniRossini851310Ruggero RaimondiBass Vocals696260James Levine (2)Conductor212726London Symphony OrchestraOrchestra25-08Don Carlo: Nei Giardin Del Bello (Eboli)4:56192327Giuseppe VerdiVerdi841590The Ambrosian Opera ChorusChorus833560Carlo Maria GiuliniConductor341084Shirley VerrettMezzo-soprano Vocals855061Orchestra Of The Royal Opera House, Covent GardenOrchestra1582977Delia WallisSoprano Vocals25-09Norma: Casta Diva (Norma)5:32488363Vincenzo BelliniBellini900979Coro Del Teatro Alla ScalaChoir577808Tullio SerafinConductor841593Orchestra Del Teatro Alla ScalaOrchestra290601Maria CallasSoprano Vocals25-10Aida: Se Quel Guerrier… Celeste Aida (Radamés)4:41192327Giuseppe VerdiVerdi538821Zubin MehtaConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra696220Franco CorelliTenor Vocals25-11La Traviata: Tenesta La Promessa… Addio Del Passato (Violetta)5:43192327Giuseppe VerdiVerdi887610Aldo CeccatoConductor341104Royal Philharmonic OrchestraOrchestra1262505Beverly SillsSoprano Clarinet25-12Otello: Niun Mi Tema (Otello)6:01192327Giuseppe VerdiVerdi283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra882018Jon VickersTenor Vocals25-13Madama Butterfly: Un Bel Di Vedremo (Butterfly)4:37369053Giacomo PucciniPuccini561054Sir John BarbirolliConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra851419Renata ScottoSoprano Vocals25-14Tosca: E Lucevan Le Stelle (Cavaradossi)2:53369053Giacomo PucciniPuccini696260James Levine (2)Conductor454293Philharmonia OrchestraOrchestra270225Placido DomingoTenor Vocals25-15La Bohème: Si, Mi Chiamano Mimi (Mimi)4:52369053Giacomo PucciniPuccini855065Thomas SchippersConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra837529Mirella FreniSoprano Vocals25-16Manon Lescaut: In Quelle Trine Morbide (Manon)2:15369053Giacomo PucciniPuccini858376Bruno BartolettiConductor704150New Philharmonia OrchestraOrchestra253133Montserrat CaballéSoprano Vocals25-17Turandot: Signore, Ascolta (Liù)2:37369053Giacomo PucciniPuccini5429624Myung Wung ChungConductor212726London Symphony OrchestraOrchestra532265Kiri Te KanawaSoprano Vocals25-18I Pagliacci: Recitar… Vesti La Giubba (Canio)3:44525460Ruggiero LeoncavalloLeoncavallo842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra462603José CarrerasTenor Vocals25-19La Sonnambula: Come Per Me Sereno2:40488363Vincenzo BelliniBellini1123920Kurt EichhornConductor540187Münchner RundfunkorchesterOrchestra850892Edita GruberovaSoprano Vocals26 Opera26-01Faust: Le Veau D'Or Est Toujours Debout (Mephisto)2:03555462Charles GounodGounod893051Boris ChristoffBass Vocals1361024Choeur National De L'Opéra De ParisChoir895152André CluytensConductor852709Orchestre National De L'Opéra De ParisOrchestra26-02Lakmé: Où Va La Jeune Hindoue? (Lakmé) (Bell Song)6:29490777Léo DelibesDelibes490281Alain LombardConductor852709Orchestre National De L'Opéra De ParisOrchestra526593Mady MespléSoprano Vocals26-03Roméo Et Juliette: L'Amour, L'Amour… Ah! Lève-Toi, Soleil (Roméo)4:18555462Charles GounodGounod931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra882024Alfredo KrausTenor Vocals26-04Manon: Allons! Il Le Faut… Adieu Notre Petite Table (Manon)3:4995536Jules MassenetMassenet931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra925945Ileana CotrubasSoprano Vocals26-05Werther: Toute Mon Âme Est Là… Pourquoi Me Réveiller (Werther)2:3695536Jules MassenetMassenet868929Georges PrêtreConductor744724Orchestre De ParisOrchestra696215Nicolai GeddaTenor Vocals26-06La Jollie Fille De Perth: Quand La Flamme De L'Amour (Ralph)4:57342543Georges BizetBizet833163José van DamBass Vocals868929Georges PrêtreConductor1689342Nouvel Orchestre Philharmonique De Radio-FranceOrchestra26-07Carmen: L'Amour Est Un Oiseau Rebelle (Carmen) (Habanera)4:35342543Georges BizetBizet846301Sir Thomas BeechamConductor626175Orchestre National De FranceOrchestra858380Victoria De Los AngelesSoprano Vocals26-08Les Pêcheurs De Perles: À Cette Voix… Je Crois Entendre Encore (Nadir)4:32342543Georges BizetBizet868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra1637342Alain VanzoTenor Vocals26-09La Damnation De Faust: Une Puce Gentille (Mephisto)1:24108565Hector BerliozBerlioz835968Gabriel BacquierBaritone Vocals1361024Choeur National De L'Opéra De ParisChoir868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra26-10Les Troyens: Je Vais Mourir… Adieu, Fière Cité (Didon)6:00108565Hector BerliozBerlioz868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra865654Régine CrespinSoprano Vocals26-11Samson Et Dalila: Mon Coeur S'Ouvre À Ta Voix (Dalila)5:17456926Camille Saint-SaënsSaint-Saëns868929Georges PrêtreConductor1430197Rita GorrMezzo-soprano Vocals852709Orchestre National De L'Opéra De ParisOrchestra882018Jon VickersTenor Vocals26-12Tannäuser: Wie Todesahnung… O Du Mein Holder Abendstern (Wolfram)4:15294746Richard WagnerWagner833168Dietrich Fischer-DieskauBaritone Vocals826839Franz KonwitschnyConductor839986Das Orchester Der Staatsoper BerlinStaatsopernorchester BerlinOrchestra26-13Der Fliegende Holländer: Johohoe! Traft Ihr Das Schiff Im Meere An? (Senta's Ballad)8:12294746Richard WagnerWagner517165Otto KlempererConductor704150New Philharmonia OrchestraOrchestra1325919Anja SiljaSoprano Vocals26-14Lohengrin: In Fernem Land4:42294746Richard WagnerWagner855072Wiener StaatsopernchorChor der Wiener StaatsoperChoir526592Rudolf KempeConductor754974Wiener PhilharmonikerOrchestra1249309Jess ThomasTenor Vocals26-15Siegfried: Heil Dir, Sonne! (Brünhilde)5:17294746Richard WagnerWagner832917Bernard HaitinkConductor604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester Des Bayerischen RundfunksOrchestra926979Éva MartonSoprano Vocals459670Siegfried JerusalemTenor Vocals26-16Tristand Und Isolde: Mild Und Leise (Liebestod)7:19294746Richard WagnerWagner283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra865660Helga DerneschSoprano Vocals27 Opera27-01Orfeo Ed Euridice: Que Farò Senza Euridice? (Orfeo)5:26534822Christoph Willibald GluckGluck842132Riccardo MutiConductor833164Agnes BaltsaMezzo-soprano Vocals454293Philharmonia OrchestraOrchestraDie Zauberflöte95546Wolfgang Amadeus MozartMozart27-02Der Vogelfänger Bin Ich Ja (Papageno)2:36833071Walter BerryBaritone Vocals451535Bayerisches StaatsorchesterOrchestra517158Wolfgang SawallischConductor27-03Dies Bildnis Ist Bezaubernd Schön (Tamino)4:06575045Fritz WunderlichTenor Vocals459673Berliner SymphonikerOrchestra918769Berislav KlobučarConductor27-04La Clemenza Di Tito: Ah, Se Fosse Intorno Al Trono2:1895546Wolfgang Amadeus MozartMozart2227962Eugene KohnConductor540187Münchner RundfunkorchesterOrchestra270225Placido DomingoTenor Vocals27-05Fidelio: Abscheulicher! (Leonore)8:1895544Ludwig van BeethovenBeethoven517165Otto KlempererConductor833554Christa LudwigMezzo-soprano Vocals454293Philharmonia OrchestraOrchestra27-06Guillaume Tell: Ne M'Abondonne Pas, Espoir De La Vengeance… Asile Héréditaire (Arnold)6:59442174Gioacchino RossiniRossini526591Lamberto GardelliConductor341104Royal Philharmonic OrchestraOrchestra696215Nicolai GeddaTenor Vocals27-07Il Barbiere Di Siviglia: Largo Al Factotum (Figaro)4:42442174Gioacchino RossiniRossini1341603Tito GobbiBaritone Vocals869570Alceo GallieraConductor454293Philharmonia OrchestraOrchestra27-08Don Carlo: Ella Giammai M'Amò! (Philip II)7:32192327Giuseppe VerdiVerdi851310Ruggero RaimondiBass Vocals833560Carlo Maria GiuliniConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra27-09Rigoletto: La Donna È Mobile (Duke)2:14192327Giuseppe VerdiVerdi696134Julius RudelConductor454293Philharmonia OrchestraOrchestra882024Alfredo KrausTenor Vocals27-10Il Ttrovatore: Di Quella Pira (Manrico)2:02192327Giuseppe VerdiVerdi855065Thomas SchippersConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra696220Franco CorelliTenor VocalsOtello192327Giuseppe VerdiVerdi27-11Esultate! (Otello)2:241070145James McCrackenTenor Vocals704150New Philharmonia OrchestraOrchestra561054Sir John BarbirolliConductor27-12Dio! Mi Potevi Scagliar (Otello)4:39270225Placido DomingoTenor Vocals1636340Justino DiazBaritone Vocals841593Orchestra Del Teatro Alla ScalaOrchestra415720Lorin MaazelConductor27-13Tosca: Vissi D'Arte, Vissi D'Amore (Tosca)3:00369053Giacomo PucciniPuccini868929Georges PrêtreConductor703271Orchestre De La Société Des Concerts Du ConservatoireOrchestra290601Maria CallasSoprano VocalsTurandot369053Giacomo PucciniPuccini27-14Il Questa Reggia (Turandot)5:58858372Ghena DimitrovaSoprano Vocals540187Münchner RundfunkorchesterSinfonieorchester des Münchner RundfunksOrchestra526591Lamberto GardelliConductor27-15Tanto Amore (Liù)2:221228473Janine MicheauSoprano Vocals852709Orchestre National De L'Opéra De ParisOrchestra868929Georges PrêtreConductor27-16Gianni Schicci: O Mio Babbino Caro (Lauretta)2:40369053Giacomo PucciniPuccini832951Sir Charles MackerrasConductor212726London Symphony OrchestraOrchestra253133Montserrat CaballéSoprano Vocals27-17L'Amico Fritz: Ed Anche Beppe Amo (Fritz)3:16230140Pietro MascagniMascagni855063Gianandrea GavazzeniConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra55683Luciano PavarottiTenor Vocals27-18Adriana Lecouvreur: Poveri Fiori (Adriana)3:10832770Francesco CileaCilea577808Tullio SerafinConductor454293Philharmonia OrchestraOrchestra290601Maria CallasSoprano Vocals27-19Andrea Chénier: Come Un Bel Di Di Maggio (Andrea)4:08577812Umberto GiordanoGiordano1582587Mark Elder (2)Conductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra959409Roberto AlagnaTenor Vocals28 Opera28-01Faust: Les Grands Seigneurs… Ah! Je Ris De Me Voir Si Belle (Marguerite)5:50555462Charles GounodGounod895152André CluytensConductor852709Orchestre National De L'Opéra De ParisOrchestra858380Victoria De Los AngelesSoprano Vocals28-02Le Jongleur De Notre-Dame: Marie, Avec L'Enfant Jésus (Boniface)5:3095536Jules MassenetMassenet774485Jules BastinBass Vocals1671779Roger BoutryConductor736606Orchestre National De L'Opéra De Monte-CarloOrchestra28-03Mireille: Heureux Petit Berger (Mireille)2:0595536Jules MassenetMassenet868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra1228473Janine MicheauSoprano VocalsMignon833579Ambroise ThomasThomas28-04Connais-Tu Le Pays (Mignon)5:39896890Jane RhodesMezzo-soprano Vocals852709Orchestre National De L'Opéra De ParisOrchestra1671772Jean-Claude HartemannConductor28-05Elle Ne Croyait Pas Dans Sa Candeur (Wilhelm)3:31696215Nicolai GeddaTenor Vocals626175Orchestre National De FranceOrchestra868929Georges PrêtreConductor28-06Carmen: Votre Toast, Je Peux Vous Le Rendre… Toréador (Escalmillo)4:55342543Georges BizetBizet850894Chœur de Radio FranceChorus846301Sir Thomas BeechamConductor626175Orchestre National De FranceOrchestra844322Denise MonteilSoprano Vocals1228479Monique LinvalSoprano Vocals858380Victoria De Los AngelesSoprano Vocals882026Ernest BlancTenor Vocals28-07Les Contes D'Hoffmann: Les Oiseaux Dans La Charmille (Olympia)5:4795540Jacques OffenbachOffenbach1671777Jean-Pierre MartyConductor852709Orchestre National De L'Opéra De ParisOrchestra526593Mady MespléSoprano Vocals28-08La Damnation De Faust: Maintenant, Chantons… Devant La Maison De Celui Que J'Adore (Mephisto)2:16108565Hector BerliozBerlioz444606Gérard SouzayBaritone Vocals868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra28-09Louise: Depuis Le Jour (Louise)5:341071292Gustave CharpentierCharpentier868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra1262505Beverly SillsSoprano Vocals28-10Der Rosenkavalier: Da Geht Er Hin (Marschallin)5:22108439Richard StraussR. Strauss283122Herbert von KarajanConductor454293Philharmonia OrchestraOrchestra833167Elisabeth SchwarzkopfSoprano Vocals28-11Lohengrin: Einsam In Trüben Tagen (Elsa's Dream)6:02294746Richard WagnerWagner868929Georges PrêtreConductor626175Orchestre National De FranceOrchestra865654Régine CrespinSoprano Vocals28-12Tannhäuser: Dich, Teure Halle (Elisabeth)4:44294746Richard WagnerWagner1500213Peter Schneider (6)Conductor540187Münchner RundfunkorchesterSinfonieorchester des Münchner RundfunksOrchestra850891Hildegard BehrensSoprano VocalsDie Walküre294746Richard WagnerWagner28-13Leb Wohl, Du Kühnes, Herrliches Kind (Wotan'sFarewell)15:41833168Dietrich Fischer-DieskauBaritone Vocals604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester des Bayerischen Rundfunks, MünchenOrchestra842888Rafael KubelikConductor28-14Hojotoho! Hojotoho! (The Ride Of The Valkyries)5:561671770Anita SoldhSoprano Vocals604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester des Bayerischen Rundfunks, MünchenOrchestra832917Bernard HaitinkConductor1671781Ruth FalconSoprano Vocals1050297Ute WaltherMezzo-soprano Vocals1671766Ursula KunzMezzo-soprano Vocals1671773Margareta HintermeierMezzo-soprano Vocals1048110Carolyn WatkinsonMezzo-soprano Vocals1671764Margarita LilovaMargarita LilowaMezzo-soprano Vocals29 Opera29-01Die Zauberflöte: Pa-Pa-Pa (Papageno, Papagena)2:2295546Wolfgang Amadeus MozartMozart495004Andreas Schmidt (2)Baritone Vocals926716Roger NorringtonConductor926722London Classical PlayersOrchestra1671767Catherine PierardSoprano Vocals29-02Die Entführung Aus Dem Serail: Ach, Ich Liebte5:1595546Wolfgang Amadeus MozartMozart869570Alceo GallieraConductor454293Philharmonia OrchestraOrchestra170760Anna MoffoSoprano Vocals29-03Castor Et Pollux: Tristes Apprêts4:10671328Jean-Philippe RameauRameau841787Christophe RoussetChristoph RoussetConductor960058Les Talens LyriquesLes Talents LyriquesOrchestra730827Véronique GensSoprano Vocals29-04Norma: Mira, O Norma (Norma, Adalgisa)7:28488363Vincenzo BelliniBellini577808Tullio SerafinConductor833554Christa LudwigMezzo-soprano Vocals290601Maria CallasMezzo-soprano Vocals841593Orchestra Del Teatro Alla ScalaOrchestra29-05Lucia Di Lammermoor: Il Dolce Suono (Lucia, Normanno, Raimondo, Enrico) (Mad Scene)16:43525469Gaetano DonizettiDonizetti937077Robert Lloyd (4)Bass Vocals858371Renato BrusonBass-Baritone Vocals841590The Ambrosian Opera ChorusChorus882020Nicola RescignoConductor341104Royal Philharmonic OrchestraOrchestra850892Edita GruberovaSoprano Vocals554032Bruno LazzarettiTenor Vocals29-06Don Pasquale: Com'è Gentil (Ernesto)3:50525469Gaetano DonizettiDonizetti1671774Sarah CaldwellConductor212726London Symphony OrchestraOrchestra882024Alfredo KrausTenor Vocals29-07Il Barbiere Di Siviglia: Una Voce Poco Fa (Rosina)6:18442174Gioacchino RossiniRossini869570Alceo GallieraConductor454293Philharmonia OrchestraOrchestra290601Maria CallasSoprano Vocals29-08La Traviata: Libiamo Ne' Lieti Calici (Alfredo, Violetta)2:51192327Giuseppe VerdiVerdi842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra851419Renata ScottoSoprano Vocals882024Alfredo KrausTenor Vocals29-09Rigoletto: Gualtier Maldè!... Caro Nome (Gilda)6:41192327Giuseppe VerdiVerdi1671775Lucio GalloBaritone Vocals1640347Michele PertusiBass Vocals900979Coro Del Teatro Alla ScalaChorus842132Riccardo MutiConductor841593Orchestra Del Teatro Alla ScalaOrchestra2280836Daniela DessìSoprano Vocals1671765Ernesto GavazziTenor Vocals29-10Aida: Ritorna Vincitor (Aida)6:24192327Giuseppe VerdiVerdi538821Zubin MehtaConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra865659Birgit NilssonSoprano Vocals29-11Otello: Ave Maria (Desdemona)5:11192327Giuseppe VerdiVerdi415720Lorin MaazelConductor841593Orchestra Del Teatro Alla ScalaOrchestra850899Katia RicciarelliSoprano Vocals29-12Turandot: Nessun Dorma (Calaf)2:49369053Giacomo PucciniPuccini2129819Coro Del Teatro Dell'Opera Di RomaChorus855073Francesco Molinari-PradelliConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra696220Franco CorelliTenor Vocals29-13La Bohème: Che Gelida Manina (Rodolfo)4:27369053Giacomo PucciniPuccini855065Thomas SchippersConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra696215Nicolai GeddaTenor Vocals29-14La Wally: Ebben? Ne Andrò Lontana (La Wally)4:20569429Alfredo CatalaniCatalani564749Paavo JärviConductor1535518Orchestre Philharmonique De Radio FranceOrchestra832655Barbara HendricksSoprano Vocals30 Opera30-01Le Postillon De Lonjumeau: Mes Amis, Écoutez L'Histoire (Chapelou)3:45638732Adolphe C. AdamAdam868929Georges PrêtreConductor626175Orchestre National De FranceOrchestra696215Nicolai GeddaTenor Vocals30-02La Muette De Portici: Mieux Vaut Mourir… Amour Sacré (Massaniello, Pietro)5:46873725Daniel-Francois-Esprit AuberAuber857123Jean-Philippe LafontBaritone Vocals1671780Thomas FultonConductor703269Orchestre Philharmonique De Monte-CarloOrchestra882024Alfredo KrausTenor Vocals30-03Roméo Et Juliette: Ah! Je Veux Vivre Dans Ce Rêve (Juliette)3:50555462Charles GounodGounod1671777Jean-Pierre MartyConductor852709Orchestre National De L'Opéra De ParisOrchestra526593Mady MespléSoprano Vocals30-04Le Roi D'Ys: Puisqu'On Ne Peut Fléchir… Vainement, Ma Bien-Aimée (Mylio)3:28883257Édouard LaloLalo850894Chœur de Radio FranceChoir895152André CluytensConductor626175Orchestre National De FranceOrchestra1424467Henri LegayTenor Vocals30-05Manon: Suis-Je Gentille Ainsi?... Je Marche Sur Tous Les Chemins (Manon)3:0395536Jules MassenetMassenet931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra837528June AndersonSoprano Vocals30-06Les Contes D'Hoffmann: Belle Nuit, Ô Nuit D'Amour (Nicklausse, Giulietta) (Barcarolle)4:1995540Jacques OffenbachOffenbach4986474Choeurs Du Théâtre Royal De La MonnaieChoir579373Sylvain CambrelingConductor838409Ann MurrayMezzo-soprano Vocals934738Orchestre Du Théâtre Royal De La MonnaieOrchestra310388Jessye NormanSoprano Vocals30-07Carmen: La Fleur Que Tu M'Avais Jetée (Don José)4:26342543Georges BizetBizet1012862Jacques DelacôteConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra462603José CarrerasTenor Vocals30-08Les Pêcheurs De Perles: C'Est Toi!... Au Fond Du Temple Saint (Zurga, Nadir)7:27342543Georges BizetBizet1302612Gino QuilicoBaritone Vocals931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra965144John AlerTenor Vocals30-09Werther: Werther, Werther, Qui M'Aurait Dit… Ces Lettres! (Charlotte)7:2795536Jules MassenetMassenet931368Michel PlassonConductor271875London Philharmonic OrchestraOrchestra532276Tatiana TroyanosSoprano Vocals30-10Lakmé: Viens, Mallika (Lakmé, Mallika)5:52490777Léo DelibesDelibes526595Danielle MilletMezzo-soprano Vocals3348123Orchestre Du Théâtre National De L'Opéra-ComiqueOrchestra526593Mady MespléSoprano Vocals30-11Thaïs: Ah! Je Suis Seule Enfin… Dis-Moi Que Je Suis Belle (Thaïs)6:4195536Jules MassenetMassenet415720Lorin MaazelConductor704150New Philharmonia OrchestraOrchestra1262505Beverly SillsSoprano Vocals30-12Faust: Alerte, Alerte!... Anges Purs, Anges Radieux (Mephisto, Marguerite, Faust)2:30555462Charles GounodGounod842223Nicolai GhiaurovBass Vocals1361024Choeur National De L'Opéra De ParisChoir868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestra837529Mirella FreniSoprano Vocals270225Placido DomingoTenor Vocals30-13Boris Godounov: Boris' Farewell5:58523633Modest MussorgskyMussorgsky893051Boris ChristoffBass Vocals895152André CluytensConductor703271Orchestre De La Société Des Concerts Du ConservatoireOrchestra30-14Oberon: Schreckensschwur! (Oberon)2:12620726Carl Maria von WeberWeber866651James ConlonConductor866649Gürzenich-Orchester Kölner PhilharmonikerOrchestra1671776Gary LakesTenor Vocals30-15Die Meistersinger Von Nürnberg: Die "Selige Morgentraum-Deutweise"… Selig, Wie Die Sonne (Sachs, Eva, Walter, David, Magdalene)5:31294746Richard WagnerWagner526411Theo AdamBass-Baritone Vocals283122Herbert von KarajanConductor837504Ruth HesseMezzo-soprano Vocals578737Staatskapelle DresdenOrchestra303060Helen DonathSoprano Vocals446577Peter SchreierTenor Vocals543206René KolloTenor Vocals30-16Siegfried: Was Am Besten Er Kann… Nothung! (Siegfried, Mime) (Forging Song)5:53294746Richard WagnerWagner832917Bernard HaitinkConductor604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester des Bayerischen Rundfunks, MünchenOrchestra1211017Peter HaageTenor Vocals459670Siegfried JerusalemTenor Vocals31 ChorusesFaust555462Charles GounodGounod2027260Marc BarrardBaritone Vocals3648910Chœur Du Capitole De ToulouseChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra31-01Vin Ou Bière4:5931-02Valse: Ainsi Que la Brise Légère2:5531-03Gloire Immortelle De Nos Aïeux (Soldier's Chorus)3:0531-04Sauvée! Christ Est Ressuscité2:2931-05Roméo Et Juliette: L'Heure S'envole3:04555462Charles GounodGounod3648910Chœur Du Capitole De ToulouseChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestraMireille555462Charles GounodGounod3648910Chœur Du Capitole De ToulouseChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra31-06La Farandole Joyeuse Et Folle2:4731-07Ô Vous Qui Du Haut Dec Cieux2:4531-08Les Contes D'Hoffmann: Drig, Drig, Drig, Maître Luther2:4895540Jacques OffenbachOffenbach966367Kurt RydlBass Vocals4986474Choeurs Du Théâtre Royal De La MonnaieChoir579373Sylvain CambrelingConductor934738Orchestre Du Théâtre Royal De La MonnaieOrchestraCarmen342543Georges BizetBizet959415Choeur "Les Eléments"Choir959422La LauzetaLa Lauzeta, Choeurs D'enfants de ToulouseChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra31-09Avec La Grande Montante (Children's Chorus)2:1931-10La Cloche A Sonné… Dans L'air (Cigarette Chorus)3:3331-11Les Voici! Voici La Quadrille! (Carmen)3:58Les Pêcheurs De Perles342543Georges BizetBizet3648910Chœur Du Capitole De ToulouseChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra31-12Sur La Grève En Feu3:5331-13Sois La Bienvenue2:1131-14Brahma, Divin Brahma1:4431-15Dès Que Le Soleil1:5931-16Hérodiade: Romains! Romains! Nous Sommes Tous Romains!5:4295536Jules MassenetMassenet3648910Chœur Du Capitole De ToulouseChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra31-17Padmâvati: Dans La Nuit Flamboyante12:04860230Albert RousselRoussel1169517Orfeón DonostiarraChoir931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra32 ChorusesIl Trovatore192327Giuseppe VerdiVerdi1206835Ferruccio MazzoliFerruccio MazolliBass Vocals855065Thomas SchippersConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra32-01Vedi Le Fosche Notturne (Anvil Chorus)2:5132-02Or Co'dadi… Squilli, Echeggi La Tromba Guerriera4:07Nabucco192327Giuseppe VerdiVerdi900979Coro Del Teatro Alla ScalaChoir842132Riccardo MutiConductor841593Orchestra Del Teatro Alla ScalaOrchestra32-03Gli Arredi Festivi5:0732-04Va, Pensiero (Chorus Of Hebrew Slaves)4:52Ernani192327Giuseppe VerdiVerdi2377167Welsh National Opera ChorusChoir1434559Richard Armstrong (4)Conductor1821141The Welsh National Opera OrchestraOrchestra32-05Eviva! Beviam! Beviam!3:5132-06Un Patto! Un Giuramento!... So Ridesti Il Leon Di Castiglia1:5932-07Verdi: Rigoletto: Zitti, Zitti (Chorus Of Courtiers) 1:46192327Giuseppe VerdiVerdi2129819Coro Del Teatro Dell'Opera Di RomaChoir855073Francesco Molinari-PradelliConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestraLa Traviata192327Giuseppe VerdiVerdi933757Richard Van AllanRichard Van AllenBass Vocals696200John Alldis ChoirChoir887610Aldo CeccatoConductor1582977Delia WallisMezzo-soprano Vocals341104Royal Philharmonic OrchestraOrchestra1917961Keith ErwenTenor Vocals32-08Noi Siamo Zingarelle (Chorus Of Gypsies)2:4332-09Di Madride Noi Siam Mattadori (Chorus Of Matadors)2:59Attila192327Giuseppe VerdiVerdi900979Coro Del Teatro Alla ScalaChoir842132Riccardo MutiConductor841593Orchestra Del Teatro Alla ScalaOrchestra32-10Urli, Rapine2:0132-11Viva Il Re Delle Mille Foreste1:26I Lombardi Alla Prima Crociata192327Giuseppe VerdiVerdi900979Coro Del Teatro Alla ScalaChoir842132Riccardo MutiConductor841593Orchestra Del Teatro Alla ScalaOrchestra32-12Gerusalem! Gerusalem!5:3532-13O Signore, Dal Tetto Natio (Pilgrim's Chorus)3:5332-14Macbeth: Patria Opressa (Chorus Of Scottish Refugees)7:02192327Giuseppe VerdiVerdi855066Chorus Of The Royal Opera House, Covent GardenChorus526591Lamberto GardelliConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra32-15I Vespri Siciliani: Si Celebri Alfine Tra Canti, Tra Fior2:01192327Giuseppe VerdiVerdi2377167Welsh National Opera ChorusChoir1821141The Welsh National Opera OrchestraChorus1434559Richard Armstrong (4)Conductor32-16La Forza Del Destino: Nella Guerra È La Follia2:01192327Giuseppe VerdiVerdi900979Coro Del Teatro Alla ScalaChoir842132Riccardo MutiConductor841593Orchestra Del Teatro Alla ScalaOrchestra32-17Otello: Fuoco Di Gioia (Fire Chorus)3:01192327Giuseppe VerdiVerdi841590The Ambrosian Opera ChorusChoir561054Sir John BarbirolliConductor704150New Philharmonia OrchestraOrchestra32-18Don Carlo: Spuntato Ecco Il Dì D'esultanza4:34192327Giuseppe VerdiVerdi841590The Ambrosian Opera ChorusChoir833560Carlo Maria GiuliniConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra32-19Aida: Gloria All'Egitto (Triumphal Scene And Grand March)7:21192327Giuseppe VerdiVerdi855066Chorus Of The Royal Opera House, Covent GardenChoir526591Lamberto GardelliConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestra33 ChorusesCavalleria Rusticana230140Pietro MascagniMascagni841590The Ambrosian Opera ChorusChorus842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra253133Montserrat CaballéSoprano Vocals33-01Gli Arranci Alezzano8:0033-02Regina Coeli, Laetare… Ineggiamo (Easter Hymn)6:2333-03Iris: Son Lo! Son Lo Vita! (Hymn To The Sun)10:34230140Pietro MascagniMascagni2129819Coro Del Teatro Dell'Opera Di RomaChoir889836Gabriele Santini (2)Conductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra33-04Pagliacci: Din, Don, Din, Don2:24525460Ruggiero LeoncavalloLeoncavallo841590The Ambrosian Opera ChorusChoir842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra33-05Andrea Chénier: O Pastorelle, Addio2:31577812Umberto GiordanoGiordano855066Chorus Of The Royal Opera House, Covent GardenChorus832917Bernard HaitinkConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestraMefistofele852703Arrigo BoitoBoito841590The Ambrosian Opera ChorusChorus696134Julius RudelConductor212726London Symphony OrchestraOrchestra33-06Ave, Signor Degli Angeli3:3233-07Salve, Regina!6:3433-08Perché di Là4:0533-09Juhé! Juhé! Juheisa! Juhé2:5133-10La Gioconda: Feste E pane!2:54776661Amilcare PonchielliPonchielli855170Piero CappuccilliBaritone Vocals900979Coro Del Teatro Alla ScalaChorus896995Antonino VottoConductor841593Orchestra Del Teatro Alla ScalaOrchestra33-11Madama Butterfly: Humming Chorus3:06369053Giacomo PucciniPuccini855066Chorus Of The Royal Opera House, Covent GardenChorus526591Lamberto GardelliConductor855061Orchestra Of The Royal Opera House, Covent GardenOrchestraTurandot369053Giacomo PucciniPuccini4373260Maîtrise De La Cathédrale De StrasbourgChoir8048858Chœur de L'Opéra National Du RhinChoeurs de L'Opéra Du RhinChorus490281Alain LombardConductor1065000Orchestre Philharmonique De StrasbourgOrchestra33-12Gira La Cote2:1533-13Perché Tarda La Luna?... Là, Sui Monti Dell'est4:4333-14Al Tuoi Piedi Si Prostriam2:0434 Overtures & PreludesOvertures442174Gioacchino RossiniRossini34-01Il Barbiere Di Siviglia: Overture7:28454293Philharmonia OrchestraOrchestra833560Carlo Maria GiuliniConductor34-02La Scala Di Seta5:43610799Radio-Sinfonieorchester StuttgartStuttgart Rundfunk SinfonieorchesterOrchestra843912Gianluigi GelmettiConductor34-03Il Signor Bruschino4:13610799Radio-Sinfonieorchester StuttgartStuttgart Rundfunk SinfonieorchesterOrchestra843912Gianluigi GelmettiConductor34-04Tancredi5:33610799Radio-Sinfonieorchester StuttgartStuttgart Rundfunk SinfonieorchesterOrchestra843912Gianluigi GelmettiConductor34-05L'italiana In Algeri (Extract)2:55610799Radio-Sinfonieorchester StuttgartStuttgart Rundfunk SinfonieorchesterOrchestra843912Gianluigi GelmettiConductor34-06Guillaume Tell (Extract)6:14341104Royal Philharmonic OrchestraOrchestra526591Lamberto GardelliConductorOvertures95546Wolfgang Amadeus MozartMozart835518Sir Colin DavisConductor341104Royal Philharmonic OrchestraOrchestra34-07Le Nozze Di Figaro4:1734-08Cosi Fan Tutte4:3534-09Don Giovanni6:1034-10L'Elisir D'amore: Prelude2:52525469Gaetano DonizettiDonizetti855073Francesco Molinari-PradelliConductor837674Orchestra Del Teatro Dell'Opera Di RomaOrchestra34-11I Puritani: Introduction3:26488363Vincenzo BelliniBellini842132Riccardo MutiConductor454293Philharmonia OrchestraOrchestra34-12Il Segreto Di Susanna: Overture2:44867203Ermanno Wolf-FerrariWolf-Ferrari835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra34-13I Quattro Rusteghi: Prelude1:40867203Ermanno Wolf-FerrariWolf-Ferrari835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra34-14Ruslan And Ludmilla: Overture5:12835128Mikhail Ivanovich GlinkaGlinka539131Artur RodzinskiConductor341104Royal Philharmonic OrchestraOrchestra34-15The Bartered Bride: Overture6:40833315Bedřich SmetanaSmetana526592Rudolf KempeConductor833686Bamberger SymphonikerOrchestra34-16Donna Diana: Overture4:001308664Emil Nikolaus Von ReznicekRezniček526592Rudolf KempeConductor754974Wiener PhilharmonikerOrchestra35 Overtures & PreludesOvertures192327Giuseppe VerdiVerdi35-01La Forza Del Destino7:11704150New Philharmonia OrchestraOrchestra842132Riccardo MutiConductor35-02Luisa Miller5:36704150New Philharmonia OrchestraOrchestra842132Riccardo MutiConductor35-03Nabucco7:06454293Philharmonia OrchestraOrchestra842132Riccardo MutiConductorPreludes192327Giuseppe VerdiVerdi35-04Un Ballo In Maschera3:57704150New Philharmonia OrchestraOrchestra842132Riccardo MutiConductor35-05Macbeth2:57704150New Philharmonia OrchestraOrchestra842132Riccardo MutiConductor35-06La Traviata3:50454293Philharmonia OrchestraOrchestra842132Riccardo MutiConductor35-07Ernani3:19841593Orchestra Del Teatro Alla ScalaOrchestra Del Teatro Alla Scala Di MilanoOrchestra842132Riccardo MutiConductor35-08Aida4:11454293Philharmonia OrchestraOrchestra577808Tullio SerafinConductor35-09Rigoletto2:20454293Philharmonia OrchestraOrchestra696134Julius RudelConductor35-10I Vespri Siciliani: Overture (Extract)4:46192327Giuseppe VerdiVerdi842132Riccardo MutiConductor704150New Philharmonia OrchestraOrchestra35-11Carmen: Prelude2:13342543Georges BizetBizet868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestre Du Théâtre National De L'Opéra De ParisOrchestra35-12Mignon: Overture (Extract)4:39833579Ambroise ThomasThomas918769Berislav KlobučarConductor459673Berliner SymphonikerOrchestra35-13Faust: Introduction5:16555462Charles GounodGounod868929Georges PrêtreConductor852709Orchestre National De L'Opéra De ParisOrchestre Du Théâtre National De L'Opera De ParisOrchestra35-14L'Etoile: Overture5:12342541Emmanuel ChabrierChabrier833722John Eliot GardinerConductor649584Orchestre De L'Opéra De LyonOrchestra35-15La Vie Parisienne: Overture4:5295540Jacques OffenbachOffenbach1030674Louis FrémauxConductor490279City Of Birmingham Symphony OrchestraOrchestra35-16Orphée Aux Enfers: Overture (Extract)2:0295540Jacques OffenbachOffenbach283122Herbert von KarajanConductor454293Philharmonia OrchestraOrchestra35-17Hänsel Und Gretel: Prelude8:05855709Engelbert Humperdinck (2)Humperdinck659953Jeffrey TateConductor604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester Des Bayerischen RundfunksOrchestra36 Operetta36-01Die Lustige Witwe: O Vaterland... Da Geh' Ich Zu Maxim2:54525459Franz Lehár351666Willy MattesConductor696267Symphonie-Orchester GraunkeSinfonieorchester GraunkeOrchestra696215Nicolai GeddaTenor Vocals36-02Giuditta: Meine Lippen, Sie Küssen So Heiss5:07525459Franz Lehár833169Philharmonia ChorusChorus872129Otto AckermannConductor454293Philharmonia OrchestraOrchestra833167Elisabeth SchwarzkopfSoprano Vocals36-03Gern Hab' Ich Die Frau'n Geküßt3:30206281Niccolò PaganiniPaganini573240Werner Schmidt-BoelckeConductor456826FFB - OrchesterOrchestra459676Rudolf SchockTenor Vocals36-04Der Obersteiger: Sei Nicht Bös'4:35620661Carl ZellerZeller835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra865661Lucia PoppSoprano Vocals36-05Das Land Des Lächelns: Dein Is Mein Ganzes Herz!3:57525459Franz LehárLehár351666Willy MattesConductor696267Symphonie-Orchester GraunkeSinfonieorchester GraunkeOrchestra696215Nicolai GeddaTenor Vocals36-06Die Dubarry: Ich Schenk' Mein Herz3:24696264Carl MillöckerMillocker872129Otto AckermannConductor454293Philharmonia OrchestraOrchestra833167Elisabeth SchwarzkopfSoprano Vocals36-07Die Fledermaus: Mein Herr Marquis3:351259101Johann Strauss Jr.Johann Strauss II855072Wiener StaatsopernchorChor Der Wiener Staatsoper In Der VolksoperChorus696238Willi BoskovskyConductor696225Wiener SymphonikerOrchestra837063Renate HolmSoprano Vocals36-08Der Graf Von Luxemburg: Sie Geht Links, Er Geht Rechts - Bist Du's, Lachendes Glück2:44525459Franz LehárLehár862911Frank FoxConductor459673Berliner SymphonikerOrchestra573235Erika KöthSoprano Vocals459676Rudolf SchockTenor Vocals36-09Die Lustige Witwe: Es Lebt' Eine Vilja5:44525459Franz LehárLehár841590The Ambrosian Opera ChorusChorus835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra865661Lucia PoppSoprano Vocals36-10Der Zigeunerbaron: Als Flotter Geist... Ja, Das Alles Auf Ehr'2:442025291Johann Strauss Sr.Johann Strauss573239Hermann PreyBaritone Vocals356526Franz AllersConductor696267Symphonie-Orchester GraunkeSinfonieorchester GraunkeOrchestra36-11Casanova: O Madonna... O Marie, Wie Entflieh4:001259101Johann Strauss Jr.Johann Strauss II833169Philharmonia ChorusChorus872129Otto AckermannConductor454293Philharmonia OrchestraOrchestra833167Elisabeth SchwarzkopfSoprano Vocals36-12Drei Alte Schachtein: Ein Märchenglück, Ein Sommertraum5:18543206René KolloKollo59283Horst JankowskiConductor328245RIAS TanzorchesterOrchestra543206René KolloTenor Vocals36-13Boccaccio: Florenz Hat Schöne Frauen5:01688042Franz von SuppéVon Suppé696238Willi BoskovskyConductor604396Symphonie-Orchester Des Bayerischen RundfunksBayerisches SymphonieorchesterOrchestra683885Anneliese RothenbergerSoprano Vocals573239Hermann PreyTenor Vocals36-14Eine Nacht In Venedig: Treu Sein, Das Liegt Mir Nicht2:132025291Johann Strauss Sr.Johann Strauss356526Franz AllersConductor696267Symphonie-Orchester GraunkeSinfonieorchester GraunkeOrchestra696215Nicolai GeddaTenor Vocals36-15Die Fledermaus: Klänge Der Heimat4:161259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor696225Wiener SymphonikerOrchestra683885Anneliese RothenbergerSoprano Vocals36-16Gräfin Mariza: Auch Ich War Einst Ein Feiner Csárdáskavalier4:02654453Emmerich KálmánKálmán696256Hans MoltkauConductor451535Bayerisches StaatsorchesterOrchester Der Bayerisches Staatsoper MünchenOrchestra575045Fritz WunderlichTenor Vocals37 Operetta37-01Véronique: De Ci, De Là2:131813204André MessagerMessager1424466Michel DensBaritone Vocals4329774Yvon LeenartConductor2028812Orchestre De L'Association Des Concerts LamoureuxOrchestra1361021Liliane BertonSoprano Vocals37-02Monsieur Beaucaire: La Rose Rouge3:481813204André MessagerMessager1424466Michel DensBaritone Vocals4329774Yvon LeenartConductor2028812Orchestre De L'Association Des Concerts LamoureuxOrchestra37-03Les Cloches De Corneville: Digue, Digue, Don3:18917029Robert PlanquettePlanquette4744166Les Chœurs René DuclosChoir281455Franck PourcelConductor703271Orchestre De La Société Des Concerts Du ConservatoireOrchestra1228473Janine MicheauSoprano Vocals37-04Véronique: Poussez, Poussez L'Escarpolette4:161813204André MessagerMessager1424466Michel DensBaritone Vocals4329774Yvon LeenartConductor2028812Orchestre De L'Association Des Concerts LamoureuxOrchestra1361021Liliane BertonSoprano Vocals37-05La Fille De Madame Angot: Jadis, Les Rois3:03998416Charles LecocqLecocq1361024Choeur National De L'Opéra De ParisChoeur Du Théâtre National De L'Opéra De ParisChorus3387974Jean DoussardConductor3348123Orchestre Du Théâtre National De L'Opéra-ComiqueOrchestra526593Mady MespléSoprano Vocals37-06Les Mousquetaires Au Couvent:Je Suis L'Abbé Bridaine2:442842012Louis VarneyVarney774485Jules BastinBass Vocals9033784Chœurs de la RTB-BRTChoeurs De La RTBChorus1873860Edgar DoneuxConductor1873859Orchestre Symphonique De La RTBFOrchestra37-07Ciboulette: Nous Avons Fait Un Beau Voyage2:30663502Reynaldo HahnHahn833163José van DamBaritone Vocals1165581Cyril DiederichConductor703269Orchestre Philharmonique De Monte-CarloOrchestra526593Mady MespléSoprano Vocals37-08Orphée Aux Enfers: Pour Séduire Alcmène La Fière1:4995540Jacques OffenbachOffenbach3648910Chœur Du Capitole De ToulouseChorus931368Michel PlassonConductor1402406Jane BerbiéJane BerbéMezzo-soprano Vocals880293Orchestre National Du Capitole De ToulouseOrchestra835971Michèle CommandSoprano Vocals1689427Michèle PenaSoprano VocalsLa Vie Parisienne95540Jacques OffenbachOffenbach3648910Chœur Du Capitole De ToulouseChorus931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra37-09Je Suis Veuve D'Un Colonnel2:57526593Mady MespléSoprano Vocals37-10C'Est Ici L'Endroit Redouté Des Mères3:27865654Régine CrespinSoprano Vocals37-11Pomme D'Api: Va Donc, Va Donc Chercher Le Gril3:1495540Jacques OffenbachOffenbach857123Jean-Philippe LafontBaritone Vocals703268Manuel RosenthalConductor703269Orchestre Philharmonique De Monte-CarloOrchestra526593Mady MespléSoprano Vocals1472027Léonard PezzinoLeonard PezzinoTenor Vocals37-12La Grande-Duchesse De Gérolstein: Ah! Que J'Aime Les Militaires3:4995540Jacques OffenbachOffenbach696168Roberto BenziConductor896890Jane RhodesMezzo-soprano Vocals1112265Orchestre National Bordeaux AquitaineOrchestre De Bordeaux-AquitaineOrchestraLa Belle Hélène95540Jacques OffenbachOffenbach37-13Au Mont Ida3:581689419Charles BurlesTenor Vocals2028812Orchestre De L'Association Des Concerts LamoureuxOrchestra1671777Jean-Pierre MartyConductor37-14On Me Nomme Hélène La Blonde4:49310388Jessye NormanSoprano Vocals880293Orchestre National Du Capitole De ToulouseOrchestra931368Michel PlassonConductorLe Périchole95540Jacques OffenbachOffenbach931368Michel PlassonConductor837527Teresa BerganzaMezzo-soprano Vocals880293Orchestre National Du Capitole De ToulouseOrchestra462603José CarrerasTenor Vocals37-15Le Conquérant Dit A La Jeune Indienne2:3137-16Mon Dieu! Que Les Hommes Sont Bêtes3:0037-17On Me Proposait D'ëtre Infâme3:5937-18Les Saltimbanques: C'Est L'Amour4:16888615Louis GanneGanne1506712Dominique TirmontBaritone Vocals4744166Les Chœurs René DuclosChorus1671777Jean-Pierre MartyConductor2028812Orchestre De L'Association Des Concerts LamoureuxOrchestra1513769Eliane LublinSoprano Vocals38 Sacred Music38-01Sub Tuum Praesidium 1:022489540Gregorian (4)Gregorian Chant1744070The Monks And Choirboys Of Downside AbbeyThe Monks & Choir Of Downside AbbeyChorus3419372David Lawson (4)Conductor5846535Dom Dunstan O'KeeffeConductor38-02Veni Sancte Spiritus6:241025303John DunstableDunstable282643Paul HillierConductor361592The Hilliard EnsembleEnsemble38-03O Nata Lux1:53740149Thomas TallisTallis700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877523Philip LedgerConductor38-04Verbum Caro Factum Est6:411292481John SheppardSheppard1137344The Clerkes Of OxenfordChoir1137345David WulstanConductor38-05Buccinate In Neomenia Tuba4:17909961Giovanni GabrieliGabrieli39874The Ambrosian SingersChorus1548002Denis StevensConductor743753Barry RoseOrgan38-06O Magnum Mysterium4:081364371Tomás Luis De VictoriaDa Victoria700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductor38-07Ave Verum Corpus4:38765352William ByrdByrd700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductor38-08Tu Es Petrus3:57822410Giovanni Pierluigi da PalestrinaPalestrina700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductor38-09Missa 'L'Homme Armé': Kyrie4:07833904Guillaume DufayDufay282643Paul HillierConductor361592The Hilliard EnsembleEnsemble38-10Missa Super 'Belli Amfitrit' Altera': Gloria4:16834703Roland de LassusLassus631586St. John's College ChoirChoir Of St John's College, CambridgeChoir838972George Guest (2)Conductor38-11Missa 'Euge Bone': Credo5:29793125Christopher TyeTye700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877523Philip LedgerConductor38-12Missa Paschale: Sanctus4:25973822Heinrich IsaacIsaac282643Paul HillierConductor361592The Hilliard EnsembleEnsemble38-13Mass A 4: Agnus Dei3:51765352William ByrdByrd282643Paul HillierConductor361592The Hilliard EnsembleEnsemble38-14Absalon, Fili Mi4:26743705Josquin Des PrésJosquin282643Paul HillierConductor361592The Hilliard EnsembleEnsemble38-15Hosanna To The Son Of David3:11229566Orlando GibbonsGibbons700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductor38-16'Hunt' Cantata BWV208: Schafe Können Sicher Weiden4:1695537Johann Sebastian BachBach446577Peter SchreierConductor1092669Kammerorchester Carl Philipp Emanuel BachKammerochester CPE Bach, BerlinOrchestra832655Barbara HendricksSoprano Vocals38-17Messiah: Rejoice Greatly, O Daughter Of Zion4:33375279Georg Friedrich HändelHandel875353Andrew ParrottConductor960912Taverner PlayersTavener PlayersEnsemble836115Emma KirkbySoprano Vocals38-18Joshua: O Had I Jubal's Lyre2:54375279Georg Friedrich HändelHandel1043813Georg FischerConductor415725English Chamber OrchestraOrchestra780795Leslie PearsonOrgan865661Lucia PoppSoprano Vocals39 Sacred Music39-01Gloria RV589: Laudamus Te2:27108566Antonio VivaldiVivaldi700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor837442The Academy Of Ancient MusicOrchestra5534688Deborah NormanSoprano Vocals2020834Sarah Fox (3)Soprano Vocals39-02Messiah: For Unto Us A Child Is Born4:17375279Georg Friedrich HändelHandel39874The Ambrosian SingersChorus832951Sir Charles MackerrasConductor415725English Chamber OrchestraOrchestra39-03Christmas Oratorio: Bereite Dich, Zion5:3195537Johann Sebastian BachBach877523Philip LedgerConductor267134Janet BakerMezzo-soprano Vocals832962The Academy Of St. Martin-in-the-FieldsOrchestra39-04Mass In B Minor: Cum Sancto Spiritu4:2195537Johann Sebastian BachBach617404Chor Des Bayerischen RundfunksChorus842238Eugen JochumConductor604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester Des Bayerischen RundfunksOrchestra39-05Chorale Prelude BWV 622: O Mensch, Bewein Dein Sünde Gross5:2395537Johann Sebastian BachBach842253Peter HurfordOrgan39-06Wachet Auf, Ruft Uns Die Stimme BWV140: Zion Hört Die Wächter Singen4:4495537Johann Sebastian BachBach1558211Der Süddeutsche MadrigalchorSouth German Madrigal ChoirChoir922551Wolfgang GönnenweinWolfgang GönneweinConductor2176594Consortium Musicum (2)Orchestra39-07St Matthew Passion: Erbarme Dich, Mein Gott6:2295537Johann Sebastian BachBach855140John Nelson (5)Conductor960889Stephanie BlytheContralto Vocals931339Ensemble Orchestral De ParisOrchestra39-08Funeral Music For Queen Mary: Thou Knowest, Lord Z58c2:1965796Henry PurcellPurcell700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877523Philip LedgerConductor835731Philip Jones Brass EnsembleEnsemble39-09Hear My Prayer, O Lord Z152:1065796Henry PurcellPurcell700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877523Philip LedgerConductor39-10St Matthew Passion: O Sacred Head, Sour Wounded2:42620734Hans Leo HaßlerHassler700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductorMessiah375279Georg Friedrich HändelHändel39-11I Know That My Redeemer Liveth6:381477181Elizabeth HarwoodSoprano Vocals39874The Ambrosian SingersChorus415725English Chamber OrchestraOrchestra832951Sir Charles MackerrasConductor39-12Comfort Ye My People3:191023089Joseph CornwellTenor Vocals960912Taverner PlayersTavener PlayersOrchestra875353Andrew ParrottConductor39-13Saul: Oh Lord, Whose Mercies Numberless4:01375279Georg Friedrich HändelHandel877523Philip LedgerConductor376031Paul EsswoodCountertenor Vocals415725English Chamber OrchestraOrchestra39-14Veni Creator Spiritus3:082489540Gregorian (4)Gregorian Chant1744070The Monks And Choirboys Of Downside AbbeyChorus4716042Dom Dustan O'KeeffeConductor39-15Salve Regina2:312489540Gregorian (4)Gregorian Chant1744070The Monks And Choirboys Of Downside AbbeyChorus4716042Dom Dustan O'KeeffeConductor39-16The Lament Of Mother Of God (Extract) 4.44:4265795John TavenerTavener288386David HillConductor415721Winchester Cathedral ChoirOrchestra978421Solveig KringlebotnSoprano Vocals39-17Lord I Can't Turn Back2:08151641TraditionalSpiritual4036630The Moses Hogan ChoraleChorus2106156Moses HoganMoses George HoganConductor841571Derek Lee RaginCountertenor Vocals40 Sacred MusicRequiem In D Minor K62695546Wolfgang Amadeus MozartMozart3004966London Philharmonic ChoirChoir855164Franz Welser-MöstConductor271875London Philharmonic OrchestraOrchestra1017625Felicity LottSoprano Vocals40-01Introit: Requiem Aeternam4:2740-02Kyrie2:3340-03Lacrimosa Dies Illa2:5640-04Vesperae Solennes De Confessore K339: Laudate Dominum5:2695546Wolfgang Amadeus MozartMozart835740Chorus Of St Martin In The FieldsAcademy ChorusChorus835735Sir Neville MarrinerConductor832962The Academy Of St. Martin-in-the-FieldsOrchestra832655Barbara HendricksSoprano Vocals40-05Regina Coeli K1274:0295546Wolfgang Amadeus MozartMozart1045528Kölner KammerchorChorus1045526Peter Neumann (2)Conductor1045529Collegium CartusianumEnsemble40-06Mass In C Minor K427: Laudamus Te4:5395546Wolfgang Amadeus MozartMozart841441Raymond LeppardConductor704150New Philharmonia OrchestraOrchestra532265Kiri Te KanawaDame Kiri Te KanawaSoprano Vocals40-07Mass In C 'Coronation' K317: Benedictus3:1395546Wolfgang Amadeus MozartMozart833168Dietrich Fischer-DieskauBaritone Vocals617404Chor Des Bayerischen RundfunksChorus842238Eugen JochumConductor870910Julia HamariMezzo-soprano Vocals604396Symphonie-Orchester Des Bayerischen RundfunksOrchester Des Bayerischen RundfunksOrchestra459665Edda MoserSoprano Vocals696215Nicolai GeddaTenor Vocals40-08Exultate, Jubilate K165: Alleluia2:5395546Wolfgang Amadeus MozartMozart1043813Georg FischerConductor415725English Chamber OrchestraOrchestra865661Lucia PoppSoprano Vocals40-09Ave Verum Corpus K6183:2395546Wolfgang Amadeus MozartMozart1210845KammarkörenStockholm Chamber ChoirChoir784693RadiokörenSwedish Radio ChorusChorus842132Riccardo MutiConductor260744Berliner PhilharmonikerOrchestraThe Creation108568Joseph HaydnHaydn836379David Thomas (9)Bass Vocals1409738City Of Birmingham Symphony Orchestra ChorusCBSO ChorusChorus490290Sir Simon RattleConductor490279City of Birmingham Symphony OrchestraOrchestra899625Arleen AugerSoprano Vocals625651Philip LangridgeTenor Vocals40-10WIth Verdure Clad4:5140-11The Heavens Are Telling3:34Mass No.11 In D Minor 'Nelson'108568Joseph HaydnHaydn848263Robert HollBass Vocals455839Rundfunkchor LeipzigLeipzig Radio ChorusChorus835735Sir Neville MarrinerConductor1048110Carolyn WatkinsonContralto Vocals578737Staatskapelle DresdenDresden StaatskapelleOrchestra4852450Christine SchönknechtSoprano Vocals896249Margaret MarshallSoprano Vocals1374321Keith Lewis (4)Tenor Vocals40-12Kyrie4:2540-13Gloria In Excelsis Deo3:2340-14Die Himmel Rühmen Op.58 No.4: Die Ehre Gottes Aus Der Natur2:2895544Ludwig van BeethovenBeethoven1079561New Philharmonia ChorusChorus833173Wilhelm PitzConductor704150New Philharmonia OrchestraOrchestra40-15Mass In C Minor K427: Kyrie6:3695546Wolfgang Amadeus MozartMozart2443589Louis LangréeConductor960921Le Concert D'AstréeOrchestra1722790Natalie DessaySoprano Vocals41 Sacred Music41-01Ave Maria3:1195537Johann Sebastian BachBach/555462Charles GounodGounod267134Janet BakerDame Janet BakerMezzo-soprano Vocals877523Philip LedgerOrganMesse Solennelle De Sainte Cécile555462Charles GounodGounod850894Chœur de Radio FranceChorus868929Georges PrêtreConductor1689342Nouvel Orchestre Philharmonique De Radio-FranceNouvel Orchestre PhilharmoniqueOrchestra1657871Laurence DaleTenor Vocals41-02Credo (Opening)3:4741-03Sanctus5:3041-04L'Enfance Du Christ: The Shepherd's Farewell4:11108565Hector BerliozBerlioz700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor341104Royal Philharmonic OrchestraOrchestra41-05Te Deum: Tu, Christe, Rex Gloriae5:36108565Hector BerliozBerlioz7481538Maîtrise d'AntonyChoir7918502Chœur D'enfants de L'Union EuropéenneChorus1052826Chœur De L'Orchestre De ParisChorus855140John Nelson (5)Conductor744724Orchestre De ParisOrchestra578730Marie-Claire AlainOrgan41-06Requiem Op.48: Pie Jesu3:27497542Gabriel FauréFauré288386David HillConductor424108Bournemouth SinfoniettaOrchestra890817Stephen FarrOrgan836154Nancy ArgentaSoprano Vocals41-07Ubi Caritas Op.10 No.12:37319439Maurice DurufléDuruflé415721Winchester Cathedral ChoirChoir288386David HillConductor41-08Cantique De Jean Racine Op.115:48497542Gabriel FauréFauré415721Winchester Cathedral ChoirChoir288386David HillConductor41-09Panis Angelicus4:53832661César Franck1587279Hallé ChoirChoir1450904Maurice HandfordConductor374006Hallé OrchestraOrchestra41-10Gloria: Laudamus Te2:57361814Francis PoulencPoulenc850894Chœur de Radio FranceChorus868929Georges PrêtreConductor626175Orchestre National De FranceOrchestra41-11Vinea Mea Electa3:45361814Francis PoulencPoulenc729552Harry ChristophersConductor713519The SixteenEnsemble41-12Suite Gothique Op.25: Prière À Notre-Dame4:06962970Léon BoëllmannBoëllmann995971Fredric BaycoFredric BayoOrgan41-13O Sacrum Convivium5:1032180Olivier MessiaenMessiaen493464London VoicesChorus441322Terry Edwards (2)ConductorRequiem319439Maurice DurufléDuruflé839696Olaf BärBaritone Vocals700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor415725English Chamber OrchestraOrchestra877520Peter BarleyOrgan41-14Sanctus3:2441-15Libera Me5:4341-16Requiem Op.48: In Paradisum3:43497542Gabriel FauréFauré700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductor704150New Philharmonia OrchestraOrchestra42 Sacred Music42-01Mass In E Flat Op.80: Sanctus1:30842308Johann Nepomuk HummelHummel1284573Stuttgarter Hymnus-ChorknabenStuttgart Hymnus Boys' ChoirChoir1225971Gerhard WilhelmConductor2407693Instrumental-Ensemble Werner KeltschWerner Keltsch Instrumental EnsembleEnsembleElijah623293Felix Mendelssohn-BartholdyMendelssohn1079561New Philharmonia ChorusChoir880957Rafael Frühbeck De BurgosConductor267134Janet BakerDame Janet BakerMezzo-soprano Vocals704150New Philharmonia OrchestraOrchestra42-02O Rest In The Lord3:4242-03And Then Shall Your Light Break Forth3:1642-04Stabat Mater: Cujus Animam6:57442174Gioacchino RossiniRossini842132Riccardo MutiConductor3664271Orchestra Del Maggio Musicale FiorentinoOrchestra Of Maggio Musicale FiorentinoOrchestra629546Robert GambillTenor Vocals42-05Gott Ist Mein Hirt (Psalm 23) D7064:55283469Franz SchubertSchubert700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877523Philip LedgerPiano42-06Deutsche Messe D872: Heilig, Heilig, Heilig2:27283469Franz SchubertSchubert617404Chor Des Bayerischen RundfunksChorus517158Wolfgang SawallischConductor604396Symphonie-Orchester Des Bayerischen RundfunksSinfonieorchester des Bayerischen RundfunksOrchestra42-07Ave Maria4:23283469Franz SchubertSchubert859035Christfried BickenbachBickenbachArranged By646866Gerhard Schmidt-GadenConductor696267Symphonie-Orchester GraunkeGraunke Symphony OrchestraOrchestra683885Anneliese RothenbergerSoprano Vocals42-08Ave Verum Corpus2:32255804Sir Edward ElgarElgar877522Choir Of Worcester CathedralChoir877525Christopher RobinsonConductor877521Harry BrammaOrgan42-09Nun Danket Alle Gott (Choral-Improvisation Op.65)3:33896436Sigfrid Karg-ElertKarg-Elert877523Philip LedgerOrgan42-10Ave Maria3:07479037Anton BrucknerBruckner1079561New Philharmonia ChorusChorus833173Wilhelm PitzConductor42-11Evening Hymn: Te Lucis Ante Terminum6:041919432Henry Balfour GardinerBalfour Gardiner872550Simon HalseyConductor490279City Of Birmingham Symphony OrchestraOrchestra1705547Thomas TrotterOrganMessa Da Requiem192327Giuseppe VerdiVerdi842223Nicolai GhiaurovBass Vocals833560Carlo Maria GiuliniConductor833554Christa LudwigMezzo-soprano Vocals454293Philharmonia OrchestraOrchestra833167Elisabeth SchwarzkopfSoprano Vocals696215Nicolai GeddaTenor Vocals42-12Recordare4:2042-13Ingemisco3:4642-14Luc Aeterna6:5042-15Ein Deutsches Requiem Op.45: Wie Lieblich Sind Deine Wohnungen6:08304975Johannes BrahmsBrahms3004966London Philharmonic ChoirChoir569577BBC Symphony ChorusChorus846285Klaus TennstedtConductor271875London Philharmonic OrchestraOrchestra42-16Messa Di Gloria: Gloria In Excelsis Deo – In Terra Pax – Laudamus Te4:34369053Giacomo PucciniPuccini839085London Symphony ChorusChorus1208600Antonio PappanoConductor212726London Symphony OrchestraOrchestra42-17I Was Glad6:47805878Charles Hubert Hastings ParryParry700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir4852451Cambridge University Musical Society ChorusChorus877523Philip LedgerConductor704150New Philharmonia OrchestraOrchestra2044753The Band Of The Royal Military School Of MusicOrchestra43 Sacred Music43-01The Armed Man: A Mass For Peace: Agnus Dei3:37253632Karl JenkinsJenkins888772National Youth Choir Of Great BritainChoir253632Karl JenkinsConductor271875London Philharmonic OrchestraOrchestra304536Paul BenistonTrumpet43-02Ave Maria1:54115469Igor StravinskyStravinsky700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor43-03Chichester Psalms: I. Maestoso Ma Energico – Allegro Molto3:49299702Leonard BernsteinBernstein1634345Peter WinnAlto Vocals1634344Daniel SladdenBass Vocals700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor1634343Rachel MastersHarp877520Peter BarleyOrgan836786David CorkhillPercussion898440John BowleyTenor Vocals1632795Michael PearceTreble Vocals43-04Requiem: Pie Jesu2:4884839Andrew Lloyd WebberLloyd Webber530814Kirk TrevorKick TrevorConductor806436Slovak Radio Symphony OrchestraSlovak Symphony OrchestraOrchestra9975838Simon Gibson (4)Organ3054709Jane GilchristSoprano Vocals3361915Fergus ThirlwellFergus ThirwellTreble Vocals43-05Voca Me4:47500482Robert PrizemanPrizeman93945LiberaChoir500482Robert PrizemanConductor43-06Ave Maria4:461096115Tolga KashifKashif1573761The Choir Of Clare CollegeChoir990510Philip EllisConductor4628506Orchestra Of Clare CollegeOrchestra289514Lesley GarrettSoprano Vocals4882423Julian LeangTreble Vocals43-07Mass In G Minor: Kyrie3:54662168Ralph Vaughan WilliamsVaughan Williams700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir527161David WillcocksConductor43-08Totus Tuus Op.608:53216138Henryk GóreckiGórecki700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor43-09Magnificat (1989)6:19216141Arvo PärtPärt700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor43-10Vespers Op.37: Ave Maria2:56206280Sergei RachmaninoffRachmaninov700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor43-11Song For Athene6:1065795John TavenerTavener415721Winchester Cathedral ChoirChoir288386David HillConductor43-12Nunc Dimittis2:42546506Geoffrey BurgonBurgon456699Martin Neary (2)Organ415723Paul Miles-KingstonTreble Vocals491879Crispian Steele-PerkinsTrumpet43-13Requiem: Requiem Aeternam5:34443259John RutterRutter700443The King's College Choir Of CambridgeChoir Of King's College, CambridgeChoir877524Stephen CleoburyConductor318371City of London SinfoniaOrchestra43-14Agnus Dei (Adagio For Strings)7:4111696Samuel BarberBarber415721Winchester Cathedral ChoirChoir288386David HillConductor43-15The Armed Man: A Mass For Peace: Benedictus7:37253632Karl JenkinsJenkins877516Guy JohnstonCello888772National Youth Choir Of Great BritainChoir253632Karl JenkinsConductor271875London Philharmonic OrchestraOrchestra44 Piano44-01Nocturne In C Sharp Minor Op. Posth.4:20192325Frédéric ChopinChopin926728Mikhail PletnevPiano44-0212 Transcendental Studies: La Campanella4:32226461Franz LisztLiszt874561André WattsPiano44-03Etude Op.10 No.3: Lento Ma Non Troppo4:53192325Frédéric ChopinChopin311233Stanislav BuninStanislas BuninPiano44-04Préludes – Book 1: La Fille Aux Cheveux De Lin2:3596123Claude DebussyDebussy374012Dame Moura LympanyPiano44-05Moment Musical D780 No. 3: Allegro Moderato1:33283469Franz SchubertSchubert1038546Stephen Bishop-KovacevichPiano44-06Waltz In D Flat Op.64 No.11:58192325Frédéric ChopinChopin846295John OgdonPiano44-07Polonaise In A Flat Op.53 'Héroïque'6:35192325Frédéric ChopinChopin832905Martha ArgerichPiano44-08Frühlingslied Op. 62 No. 62:10623293Felix Mendelssohn-BartholdyMendelssohn1093560Jean-Bernard PommierPiano44-09Fantaisie-Impromptu In C Sharp Minor Op. 664:59192325Frédéric ChopinChopin311233Stanislav BuninStanislas BuninPiano44-10Rondo In D K4854:3395546Wolfgang Amadeus MozartMozart311233Stanislav BuninStanislas BuninPiano44-11Arabesque No.14:1896123Claude DebussyDebussy273804Aldo CiccoliniPiano44-12Pavane Pour Une Infante Défunte6:21216140Maurice RavelRavel878651Cécile OussetPiano44-13Grande Valse Brillante In E Flat Op.184:43192325Frédéric ChopinChopin837575Alexis WeissenbergPiano44-14La Belle Excentrique: I. Grande Ritournelle1:3395539Erik SatieSatie273804Aldo CiccoliniPiano44-15Etude Op.10 No.5 In G Flat1:28192325Frédéric ChopinChopin311233Stanislav BuninStanislas BuninPiano44-16Fantasiestücke Op.12: Aufschwung2:56578727Robert SchumannSchumann832905Martha ArgerichPiano44-17Berceuse In D Flat Op.574:27192325Frédéric ChopinChopin567743Peter DonohoePiano45 Piano45-01Rondo Capriccioso In E Op.146:56623293Felix Mendelssohn-BartholdyMendelssohn1588864Helmut RoloffPiano45-02Piano Sonata No.21 In C Op.53 'Waldstein': I. Allegro (Extract)4:1095544Ludwig van BeethovenBeethoven846295John OgdonPiano45-03Années De Pélérinage: Troisième Année, Italie: Les Jeux D'Eau À La Villa D'Este7:44226461Franz LisztLiszt874561André WattsPiano45-04Gaspard De La Nuit: I. Ondine5:15216140Maurice RavelRavel832905Martha ArgerichPiano45-05Impromptu No.2 In F Minor Op.313:45497542Gabriel FauréFauré878651Cécile OussetPiano45-06Le Piccadilly1:3295539Erik SatieSatie273804Aldo CiccoliniPiano45-07Invitation To The Dance In D Flat Op.657:56620726Carl Maria von WeberWeber1986596Thierry De BrunhoffPiano45-08I Got Rhythm – Variations For Piano & Orchestra8:32261293George GershwinGershwin1300548Aalborg SymfoniorkesterAalborg Symphony OrchestraOrchestra1193496Wayne Marshall (2)Piano, Conductor746657Paul SchoenfieldTranscription By45-09Gymnopédie No.13:0895539Erik SatieSatie273804Aldo CiccoliniPiano45-10Gnossienne No.13:0295539Erik SatieSatie273804Aldo CiccoliniPiano45-11Rêverie5:5496123Claude DebussyDebussy273804Aldo CiccoliniPiano45-12Un Sospiro5:42226461Franz LisztLiszt874561André WattsPiano45-13Tango Op.165 No.23:16192322Isaac AlbénizAlbéniz374012Dame Moura LympanyPiano918107Leopold GodowskyTranscription By45-14Consolation No.3 In D Flat 4.574:57226461Franz LisztLiszt2144801Tzimon BartoPiano45-15Song Without Words No.1 In E Op.19 No.14:11623293Felix Mendelssohn-BartholdyMendelssohn1065456Daniel AdniPiano46 ViolinViolin Sonata No.2 In A Op. 2 No. 2108566Antonio VivaldiVivaldi899270Ferdinand DavidArranged By1026741Leon PommersPiano914907Nathan MilsteinViolin46-01I. Preludio A Capriccio: Presto – Adagio – Presto1:0446-02II. Corrente: Allegro1:4646-03III. Adagio1:1346-04IV. Giga: Allegro2:1346-05Violin Sonata No.12 In D Minor 'La Follia'9:19703539Arcangelo CorelliCorelli2481771Hubert LéonardArranged By1026741Leon PommersPiano914907Nathan MilsteinViolin46-06Partita No.2 In D Minor BWV1004: V. Chaconne12:5395537Johann Sebastian BachBach960934Christian TetzlaffViolin46-07Chaconne In G Minor1:052328173Tomaso Antonio VitaliVitali1263034Arthur BalsamArtur BalsomPiano914907Nathan MilsteinViolin46-08Violin Sonata In B Flat K378: III. Rondo: Allegro4:0895546Wolfgang Amadeus MozartMozart834578Sviatoslav RichterPiano2155351Oleg KaganViolin46-09Romance No. 1 In G Op. 40 (Opening)4:2695544Ludwig van BeethovenBeethoven833317John PritchardConductor454293Philharmonia OrchestraOrchestra532086Yehudi MenuhinViolin46-10Violin Sonata No. 3 In E Flat Op.12 No. 3: II. Adagio Con Molt'Espressione6:3095544Ludwig van BeethovenBeethoven926723Pierre BarbizetPiano849674Christian FerrasViolin46-11Introduction And Rondo Capriccioso In A Minor Op. 288:55456926Camille Saint-SaënsSaint-Saëns858480Pierre Dervaux (2)Conductor704150New Philharmonia OrchestraOrchestra865411Ulf HoelscherViolin46-12Thaïs: Méditation5:2895536Jules MassenetMassenet270225Placido DomingoConductor260744Berliner PhilharmonikerOrchestra751504Sarah ChangViolin46-13Berceuse Op. 163:24497542Gabriel FauréFauré872030Jean-Philippe CollardPiano273806Augustin DumayViolin47 Violin47-01La Ronde Des Lutins Op. 255:28944042Antonio BazziniBazzini4803857Vag PapianPiano861953Maxim VengerovViolin5277275VirtuosiViolin47-02Humoreske3:06268272Antonín DvořákDvořák1341389August WilhelmjWilhelmjArranged By2707287Itamar GolanPiano1199356Kyung-Wha ChungViolin47-03Caprice No. 24 In A Minor Op. 1 No. 244:26206281Niccolò PaganiniPaganini838244Michael RabinViolin47-04Andante And Variations For Violin And Piano3:19442174Gioacchino RossiniRossini837577Andrei GavrilovPiano359068Gidon KremerViolin47-05La Gitana (Zigeunerlied)3:01620186Fritz KreislerKreisler332376John LenehanPiano374007Tasmin LittleViolin47-06Flight Of The Bumble-Bee1:18115466Nikolai Rimsky-KorsakovRimsky-Korsakov526590Jascha HeifetzArranged By1092096Piers LanePiano374007Tasmin LittleViolin47-07Polonaise Brillante No. 1 In D Op. 45:57526579Henryk WieniawskiWieniawski890910Ian Brown (4)Piano861953Maxim VengerovViolin47-08Hungarian Dance No.5 In G Minor2:30304975Johannes BrahmsBrahms835045Joseph JoachimJoachimArranged By1092096Piers LanePiano374007Tasmin LittleViolin47-09Valse-Scherzo Op. 345:26999914Pyotr Ilyich TchaikovskyTchaikovsky1428247Vladimir YampolskyPiano834646David OistrachViolin47-10Zapateado3:29873814Pablo de SarasateSarasate1026741Leon PommersPiano838244Michael RabinViolin47-11Schön Rosmarin1:55620186Fritz KreislerKreisler2707287Itamar GolanPiano1199356Kyung-Wha ChungViolin47-12Burleska2:531120029Josef Suk (2)Suk1026741Leon PommersPiano838244Michael RabinViolin47-13La Vida Breve: Danse Espagnole3:25229547Manuel De FallaFalla620186Fritz KreislerArranged By1092096Piers LanePiano374007Tasmin LittleViolin47-14Balalaika2:391105192Родион ЩедринSchedrin861953Maxim VengerovViolin47-15Introduction And Tarantella Op.435:19873814Pablo de SarasateSarasate890910Ian Brown (4)Piano861953Maxim VengerovViolin47-16Praeludium And Allegro In The Style Of Paganini4:52620186Fritz KreislerKreisler1026741Leon PommersPiano914907Nathan MilsteinViolin47-17Czardás2:57641495Vittorio MontiMonti332376John LenehanArranged By374007Tasmin LittleArranged By332376John LenehanPiano374007Tasmin LittleViolin47-18Moto Perpetuo Op. 113:13206281Niccolò PaganiniPaganini620186Fritz KreislerArranged By302675Felix SlatkinConductor838447The Hollywood Bowl Symphony OrchestraOrchestra838244Michael RabinViolin47-19Hora Staccato1:53523641Grigoras DinicuDinicu526590Jascha HeifetzArranged By302675Felix SlatkinConductor838447The Hollywood Bowl Symphony OrchestraOrchestra838244Michael RabinViolin48 CelloCello Suite No.1 In G BWV1007 95537Johann Sebastian BachBach1005954Pablo CasalsCello48-01I. Prélude2:2848-02II. Allemande3:4048-03III. Courante2:3248-04IV. Sarabande2:2248-05V. Menuet I & II3:1448-06VI. Gigue1:50Cello Suite No.3 In C BWV100995537Johann Sebastian BachBach852384Paul TortelierCello48-07I. Prélude3:3148-08II. Allemande2:0748-09III. Courante3:0248-10IV. Sarabande4:3248-11V. Bourrée I & II4:0548-12VI. Gigue3:20Cello Suite No.5 In C Minor BWV101195537Johann Sebastian BachBach834577Mstislav RostropovichCello48-13I. Prélude7:2248-14II. Allemande5:1148-15III. Courante2:2648-16IV. Sarabande3:5148-17V. Gavotte I2:4648-18Gavotte II – Gavotte I2:5548-19VI. Gigue2:2448-20Cello Concerto In G RV413: I. Allegro3:13108566Antonio VivaldiVivaldi833840Lynn HarrellCello833851Pinchas ZukermanConductor832962The Academy Of St. Martin-in-the-FieldsOrchestraCello Concerto In B Minor RV424108566Antonio VivaldiVivaldi3078632Han-Na ChangCello255709Christopher Warren-GreenConductor462220The London Chamber OrchestraOrchestra48-21I. Allegro Non Molto3:5548-22II. Largo2:4548-23III. Allegro3:2149 Cello49-01Allegro Appassionato Op. 433:50456926Camille Saint-SaënsSaint-Saëns3078632Han-Na ChangCello1208600Antonio PappanoConductor1032278Orchestra dell'Accademia Nazionale di Santa CeciliaOrchestra49-02Le Carnaval Des Animaux: The Swan2:55456926Camille Saint-SaënsSaint-Saëns550339Christopher Van KampenCello851241The Nash EnsembleEnsemble890910Ian Brown (4)Piano916363Susan TomesPiano49-03Cello Concerto No.1 In A Minor: I. Allegro Non Troppo5:32456926Camille Saint-SaënsSaint-Saëns834577Mstislav RostropovichCello833560Carlo Maria GiuliniConductor454293Philharmonia OrchestraOrchestra49-04Elégie7:34497542Gabriel FauréFauré852384Paul TortelierCello931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra49-05Sonata In A: IV. Allegretto Poco Mosso6:55832661César FranckFranck3446957Jules DelsartArranged By846290Jacqueline Du PréCello424576Daniel BarenboimPiano49-06Cello Sonata Op.36: II. Andante Molto Tranquillo6:4095542Edvard GriegGrieg874501Truls MørkCello835977Jean-Yves ThibaudetPiano49-07Variations On A Rococo Theme Op. 33: Introduction – Theme – Variations I, II & VII7:03999914Pyotr Ilyich TchaikovskyTchaikovsky895092Robert CohenCello903789Zdeněk MácalConductor271875London Philharmonic OrchestraOrchestra49-08Kol Nidrei12:35834101Max BruchBruch3078632Han-Na ChangCello834577Mstislav RostropovichConductor212726London Symphony OrchestraOrchestra49-09Salut D'Amour3:02255804Sir Edward ElgarElgar1632281Natalie CleinCello850385Vernon HandleyConductor973597Royal Liverpool Philharmonic OrchestraOrchestra49-10Chanson De Matin3:13255804Sir Edward ElgarElgar1632281Natalie CleinCello850385Vernon HandleyConductor973597Royal Liverpool Philharmonic OrchestraOrchestra49-11Don Quixote (Extract)2:11108439Richard StraussR Strauss852384Paul TortelierCello526592Rudolf KempeConductor578737Staatskapelle DresdenDresden StaatskapelleOrchestra49-12Vocalise7:28206280Sergei RachmaninoffRachmaninov3078632Han-Na ChangCello550341Leonard SlatkinConductor454293Philharmonia OrchestraOrchestra49-13Cello Concerto In D: III. Molto Vivace7:05844248Sir Arthur SullivanSullivan580166Julian Lloyd WebberCello832951Sir Charles MackerrasConductor212726London Symphony OrchestraOrchestra50 Guitar50-01Romance (From The Film Jeux Interdits)2:35967691Anonymous341147Narciso YepesArranged By2476350Pierre LaniauGuitarThe Three-Cornered Hat229547Manuel De FallaFalla1450902Manuel BarruecoGuitar50-02Night – The Miller's Dance6:3550-03The Corregidor – Dance Of The Miller's Wife6:2150-04Sonata A La Española: I. Allegro Assai – II. Adagio – III. Allegro Moderato (Temps De Bolero)7:39523642Joaquín RodrigoRodrigo1305067Ernesto BitettiGuitar50-05Goyescas: La Maja De Goya4:27392717Enrique GranadosGranados1153407Eliot FiskGuitar50-06Danza Española No. 5: Andaluza4:43392717Enrique GranadosGranados1153407Eliot FiskGuitar50-07Hommage À Tárrega: I. Garrotin – II. Soleares4:38829980Joaquín TurinaTurina1305067Ernesto BitettiGuitar50-08Valses Poeticos: Introduction – Valse I – Valse VI – Coda8:32392717Enrique GranadosGranados755352Dario Rossetti BonellGuitar50-09Ommagio Per Chitarra (Le Tombeau De Claude Debussy)2:40229547Manuel De FallaFalla1450902Manuel BarruecoGuitar50-10Invocacion Y Danza (Hommage À Manuel De Falla)7:33523642Joaquín RodrigoRodrigo1450902Manuel BarruecoGuitarThree Spanish Pieces523642Joaquín RodrigoRodrigo1450902Manuel BarruecoGuitar50-11I. Fandango (Allegretto)3:4850-12II. Passacaglia (Andante)4:3650-13III. Zapateado (Allegro)2:5951 Piano Concertos51-01Piano Concerto No. 26 In D K537 'Coronation': I. Allegro (Extract)3:0195546Wolfgang Amadeus MozartMozart576026David ZinmanConductor604396Symphonie-Orchester Des Bayerischen RundfunksBavarian Radio Symphony OrchestraOrchestra847368Christian ZachariasPiano51-02Piano Concerto No. 3 In D Minor Op. 30: III. Allegro Ma Non Tanto (Extract)3:04206280Sergei RachmaninoffRachmaninov299702Leonard BernsteinConductor626175Orchestre National De FranceOrchestra837575Alexis WeissenbergPiano51-03Piano Concerto No. 1: I. Vivace (Extract)3:27206280Sergei RachmaninoffRachmaninov857842Libor PešekConductor454293Philharmonia OrchestraOrchestra926728Mikhail PletnevPiano51-04Piano Concerto No. 2: II. Larghetto10:45192325Frédéric ChopinChopin931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra926730François-René DuchâblePiano51-05Totentanz (Extract)2:25226461Franz LisztLiszt997585György Cziffra, Jr.Conductor744724Orchestre De ParisOrchestra837600Gyorgy CziffraGeorges CziffraPiano51-06Piano Concerto No. 1: I. Allegro Maestoso (Extract)4:15226461Franz LisztLiszt997585György Cziffra, Jr.Conductor744724Orchestre De ParisOrchestra837600Gyorgy CziffraGeorges CziffraPiano51-07Piano Concerto: I. Allegro Affettuoso (Extract)4:17578727Robert SchumannSchumann846281Mariss JansonsConductor260744Berliner PhilharmonikerOrchestra544894Leif Ove AndsnesPiano51-08Piano Concerto No. 2: II. Allegro Appassionato (Extract)4:36304975Johannes BrahmsBrahms587167Andrew DavisConductor289522BBC Symphony OrchestraOrchestra846293Stephen HoughPiano51-09Piano Concerto In G: II. Adagio10:01216140Maurice RavelRavel835739Bournemouth Symphony OrchestraOrchestra836588Andrew LittonPiano, Conductor51-10Piano Concerto: I. Allegretto (Extract)3:45361814Francis PoulencPoulenc683292Richard HickoxConductor318371City Of London SinfoniaOrchestra1093560Jean-Bernard PommierPiano51-11Piano Concerto No. 9 In D K271 'Jeune Homme': I. Andantino (Extract)4:0995546Wolfgang Amadeus MozartMozart1930176Deutsche Kammerphilharmonie BremenDeutsche KammerphilharmonieOrchestra926728Mikhail PletnevPiano, Conductor51-12Piano Concerto No. 20 In D Minor K466: I. Allegro (Extract)5:4295546Wolfgang Amadeus MozartMozart1930176Deutsche Kammerphilharmonie BremenDeutsche KammerphilharmonieOrchestra926728Mikhail PletnevPiano, Conductor51-13Piano Concerto No. 22 In E Flat K482: II. Andante9:3895546Wolfgang Amadeus MozartMozart517158Wolfgang SawallischConductor454293Philharmonia OrchestraOrchestra1424032Annie FischerPiano51-14Piano Concerto No. 24 In C Minor K491: III. Allegretto (Extract)2:0895546Wolfgang Amadeus MozartMozart1930176Deutsche Kammerphilharmonie BremenDeutsche KammerphilharmonieOrchestra926728Mikhail PletnevPiano, Conductor52 Piano Concertos52-01I. Allegro Moderato (Extract)7:2295544Ludwig van BeethovenBeethoven840489Hans VonkConductor578737Staatskapelle DresdenOrchestra847368Christian ZachariasPiano52-02II. Largo10:4195544Ludwig van BeethovenBeethoven840489Hans VonkConductor578737Staatskapelle DresdenOrchestra847368Christian ZachariasPiano52-03III. Rondo: Allegro (Extract)3:3195544Ludwig van BeethovenBeethoven840489Hans VonkConductor578737Staatskapelle DresdenOrchestra847368Christian ZachariasPiano52-04Triple Concerto In C: II. Largo4:4595544Ludwig van BeethovenBeethoven842134Heinrich SchiffCello522209Kurt MasurConductor522210Gewandhausorchester LeipzigLeipzig Gewandhaus OrchestraOrchestra847368Christian ZachariasPiano865411Ulf HoelscherViolin52-05Piano Concerto No.2 In B Flat: III: Rondo: Molto Allegro (Extract)3:3795544Ludwig van BeethovenBeethoven840489Hans VonkConductor578737Staatskapelle DresdenOrchestra847368Christian ZachariasPiano52-06Piano Concerto In F HobXVIII: 7: II. Adagio2:42108568Joseph HaydnHaydn1930176Deutsche Kammerphilharmonie BremenDeutsche KammerphilharmonieOrchestra926728Mikhail PletnevPiano, Conductor52-07Piano Concerto No. 1 In E Minor: III. Rondo: Vivace4:50192325Frédéric ChopinChopin762355Stanislaw SkrowaczewskiConductor703271Orchestre De La Société Des Concerts Du ConservatoireOrchestra837575Alexis WeissenbergPiano52-08Piano Concerto No. 2 In A: IV. Allegro Animato5:05226461Franz LisztLiszt840538Dimitrij KitaenkoConductor1036751Bergen Filharmoniske OrkesterBergen Philharmonic OrchestraOrchestra544894Leif Ove AndsnesPiano52-09Piano Concerto No.1 In D Minor: III. Rondo: Allegro Non Troppo (Extract)2:26304975Johannes BrahmsBrahms587167Andrew DavisConductor289522BBC Symphony OrchestraOrchestra846293Stephen HoughPiano52-10Ballade In F Sharp (Extract)7:15497542Gabriel FauréFauré931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra872030Jean-Philippe CollardPiano52-11Concerto For Two Pianos In D Minor: II. Larghetto5:50361814Francis PoulencPoulenc683292Richard HickoxConductor318371City Of London SinfoniaOrchestra1057146Anne QueffélecPiano1093560Jean-Bernard PommierPiano52-12Concerto For Two Pianos: I. Toccata: Allegro Moderato (Extract)5:04662168Ralph Vaughan WilliamsVaughan Williams532086Yehudi MenuhinConductor341104Royal Philharmonic OrchestraOrchestra1462926Kenneth BroadwayPiano1462925Ralph MarkhamPiano52-13Piano Concerto In F: III. Allegro Agitato6:42261293George GershwinGershwin1300548Aalborg SymfoniorkesterAalborg SymphonyOrchestra1193496Wayne Marshall (2)Piano, Conductor53 Violin Concertos53-01Violin Concerto In E Minor: Allegro Molto Appassionato (Extract)3:01623293Felix Mendelssohn-BartholdyMendelssohn730832Daniel HardingConductor730828Mahler Chamber OrchestraOrchestra1557875Renaud CapuçonViolin53-02Violin Concerto In D: II. Canzonetta: Andante6:29999914Pyotr Ilyich TchaikovskyTchaikovsky2486544Emil TchakarovConductor212726London Symphony OrchestraOrchestra273806Augustin DumayViolin53-03Double Concerto In A Minor: III. Vivace Non Troppo (Extract)2:52304975Johannes BrahmsBrahms2228580Gautier CapuçonCello880725Myung-Whun ChungConductor2228583Gustav Mahler JugendorchesterOrchestra1557875Renaud CapuçonViolin53-04Violin Concerto No. 2: Andante Tranquillo (Extract)4:13304968Béla BartókBartók394796Michael GielenConductor271875London Philharmonic OrchestraOrchestra960934Christian TetzlaffViolin53-05Suite For Violin And Strings: In The Summer1:45627442Jean SibeliusSibelius1057176Thomas DausgaardConductor5597960DR SymfoniOrkestretDanish Radio Symphony OrchestraOrchestra960934Christian TetzlaffViolin53-06Violin Concerto In D Op. 3 No. 12 'In Labirinto Armonico': II. Largo – Presto – Adagio2:43840391Pietro Antonio LocatelliLocatelli960897Orchestre D'AuvergneOrchestra947185Jean-Jacques KantorowViolin, Conductor53-07Violin Concerto No.2 'La Campanella' In B Minor: III. Rondo: Andantino (Extract)1:32206281Niccolò PaganiniPaganini1092619Orchestra da Camera ItalianaOrchestra846180Salvatore AccardoViolin, Conductor53-08Violin Concerto 'The Pilgrimage Of A Soul': VII. Maestoso1:14822473Leoš JanáčekJanácek857842Libor PešekConductor454293Philharmonia OrchestraOrchestra960934Christian TetzlaffViolin53-09Symphonie Espagnole: II. Scherzando: Allegro Molto4:10883257Édouard LaloLalo857842Libor PešekConductor435555The Czech Philharmonic OrchestraOrchestra960934Christian TetzlaffViolin53-10Tzigane10:01216140Maurice RavelRavel730832Daniel HardingConductor1930176Deutsche Kammerphilharmonie BremenDeutsche KammerphilharmonieOrchestra1557875Renaud CapuçonViolin53-11Scherzo: Vivacissimo4:03621694Sergei ProkofievProkofiev835518Sir Colin DavisConductor212726London Symphony OrchestraOrchestra926713Dmitry SitkovetskyViolin53-12II. Andante Assai (Extract)1:52621694Sergei ProkofievProkofiev835518Sir Colin DavisConductor212726London Symphony OrchestraOrchestra926713Dmitry SitkovetskyViolin53-13Violin Concerto In D: IV. Capriccio5:56115469Igor StravinskyStravinsky843912Gianluigi GelmettiConductor610799Radio-Sinfonieorchester StuttgartOrchestra836084Frank Peter ZimmermannViolin54 Concertos For Various InstrumentsFlute Concerto108566Antonio VivaldiVivaldi960922Fabio BiondiConductor868236Europa GalanteOrchestra1362384Lorenzo CavasantiRecorder54-01Flute Concerto In F 'La Tempesta Di Mare' I. Allegro2:1154-02Flute Concerto In G Minor 'La Notte' V. Largo (Il Sonno)1:2254-03Mandolin Concerto In C RV425: I. (Allegro)3:16108566Antonio VivaldiVivaldi960922Fabio BiondiConductor960945Giovanni ScaramuzzinoMandolin868236Europa GalanteOrchestraBrandenburg Concerto95537Johann Sebastian BachBach2305252Siegbert RampeConductor2305249Nova StravaganzaLa StravaganzaEnsemble54-04Brandenburg Concerto No. 1 In F BWV1046 I. (Allegro)3:2754-05Brandenburg Concerto No. 4 In G BWV1049 II. Andante3:1454-06Brandenburg Concerto No. 5 In D BWV1050 III. Allegro5:0154-07Brandenburg Concerto No. 6 In B Flat BWV1051 I. (Allegro)4:5954-08Concerto For Two Harpsichords In C Minor BWV1062: I. (Allegro)3:4595537Johann Sebastian BachBach845763Gustav LeonhardtHarpsichord898398Bob van AsperenHarpsichord, Conductor960890Melante AmsterdamOrchestraHarpsichord Concerto95537Johann Sebastian BachBach898398Bob van AsperenHarpsichord, Conductor960890Melante AmsterdamOrchestra54-09Harpsichord Concerto No. 1 In D Minor BWV1052 I. Allegro (Extract)2:3854-10Harpsichord Concerto No. 3 In D BWV1054 II. Adagio (Extract)2:5154-11Harpsichord Concerto No. 7 In G Minor BWV1058 I. Allegro3:4554-12Harpsichord Concerto No. 4 In A BWV1055 III. Allegro Ma Non Tanto4:2254-13Concert Champêtre: II. Andante (Mouvement De Sicilienne) III. Allegro Ma Non Tanto6:10361814Francis PoulencPoulenc683292Richard HickoxConductor960913Maggie ColeHarpsichord318371City Of London SinfoniaOrchestra54-14Danse Sacrée4:3996123Claude DebussyDebussy833128Jean MartinonConductor833125Marie-Claire JametHarp626175Orchestre National De FranceOrchestre National de L'O.R.T.F.Orchestra54-15Danse Profane4:3896123Claude DebussyDebussy833128Jean MartinonConductor833125Marie-Claire JametHarp626175Orchestre National De FranceOrchestre National de l'O.R.T.F.Orchestra54-16Harold En Italie: Marche De Pélerins Chantant La Prière Du Soir (Extract)4:09108565Hector BerliozBerlioz931368Michel PlassonConductor880293Orchestre National Du Capitole De ToulouseOrchestra833835Gérard CausséViola54-17Clarinet Concerto No. 1 In F Minor: III. Rondo: Allegretto6:17620726Carl Maria von WeberWeber883762Antony PayClarinet, Conductor900433Orchestra Of The Age Of EnlightenmentOrchestra54-18Organ Concerto In D Minor Op. 7 No. 4: IV. Allegro3:18375279Georg Friedrich HändelHandel900433Orchestra Of The Age Of EnlightenmentOrchestra898398Bob Van AsperenOrgan, Conductor54-19Cello Concerto In B Minor: I. Allegro (Extract)6:14268272Antonín DvořákDvořák874501Truls MørkCello846281Mariss JansonsConductor900448Oslo Filharmoniske OrkesterOslo Philharmonic OrchestraOrchestra55 Waltzes55-01An Der Schönen Blauen Donau Op. 3149:181259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-02Künstlerleben Op. 1367:561259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-03G'schichten Aus Dem Wienerwald Op.32510:491259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-04Wein, Weib Und Gesang Op. 3335:541259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-05Wiener Blut Op. 3547:121259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-06Rosen Aus Dem Süden Op. 3887:481259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-07Frühlingsstimmen Op. 4105:481259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-08Kaiser-Walzer Op. 43710:121259101Johann Strauss Jr.Johann Strauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra55-09La Vie Parisienne: Valse2:1595540Jacques OffenbachOffenbach703268Manuel RosenthalArranged By, Conductor703269Orchestre Philharmonique De Monte-CarloOrchestra55-10La Périchole: Valse3:1295540Jacques OffenbachOffenbach703268Manuel RosenthalArranged By, Conductor703269Orchestre Philharmonique De Monte-CarloOrchestra56 Waltzes56-01Les Patineurs Op. 1837:49804818Emil WaldteufelWaldteufel696238Willi BoskovskyConductor703269Orchestre Philharmonique De Monte-CarloOrchestra56-02Masquerade: Waltz4:19335045Aram KhatchaturianKhatchaturian1014466Efrem KurtzConductor454293Philharmonia OrchestraOrchestra56-03Jazz Suite No. 2: Waltz No. 23:42115461Dmitri ShostakovichShostakovich846281Mariss JansonsConductor27519The Philadelphia OrchestraOrchestra56-04Over The Waves5:34800999Juventino RosasRosas587167Andrew DavisConductor454293Philharmonia OrchestraOrchestra56-05Gold Und Silber Op. 798:40525459Franz LehárLehar696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra56-06Giuditta-Walzer6:19525459Franz LehárLehar696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra56-07Vospominaniya O Vene (Recollections Of Vienna)3:331403974Василий АндреевAndreyev6976263Dmitri HochlovConductor1574545Русский Народный Оркестр Имени В. АндрееваAndreyev Imperial Russian OrchestraOrchestra56-08Balalaika4:151403974Василий АндреевAndreyev6976263Dmitri HochlovConductor1574545Русский Народный Оркестр Имени В. АндрееваAndreyev Imperial Russian OrchestraOrchestra56-09Vospominaniya O Gatchine (Recollections Of Gatchina)3:521403974Василий АндреевAndreyev6976263Dmitri HochlovConductor1574545Русский Народный Оркестр Имени В. АндрееваAndreyev Imperial Russian OrchestraOrchestra56-10Waltz In C Sharp Minor4:33192325Frédéric ChopinChopin913209Roy DouglasDouglasArranged By1428466Robert Irving (2)Conductor454293Philharmonia OrchestraOrchestra56-11Perlen Der Liebe Op. 3910:22836585Josef StraußJosef Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra56-12Danube Waves7:55786425Ion IvanoviciIvanovici587167Andrew DavisConductor454293Philharmonia OrchestraOrchestra57 Polkas57-01Kreuzfidel! Op. 3013:471259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-02Express Op. 3112:301259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-03Leichtes Blut Op. 3192:321259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-04Unter Donner Und Blitz Op. 3242:591259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-05Eljen A Magyar! (Long Live Hungary!) Op. 3322:551259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-06Im Krapfenwald'l Op. 3363:391259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-07Im Sturmschritt Op. 3482:111259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-08Vom Donaustrande Op. 3562:491259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-09Grüss Aus Österreich Op. 3593:281259101Johann Strauss Jr.Johann Stauss II696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-10Buchstaben Op. 2523:09836585Josef StraußJosef Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-11Feuerfest! Op. 2692:54836585Josef StraußJosef Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-12Ohne Sorgen! Op. 2711:48836585Josef StraußJosef Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-13Künstler-Gruss Op. 2742:40836585Josef StraußJosef Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-14Jokey Op. 2781:59836585Josef StraußJosef Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-15Bahn Frei! Op. 452:16836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-16Wo Man Lacht Und Lebt Op. 1082:06836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-17Ohne Aufenthalt Op. 1121:59836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-18Unter Der Enns Op. 1212:08836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-19Alpenrose Op. 1273:18836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-20Reiselust Op. 1663:22836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-21Ausser Rand Und Band Op. 1682:06836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-22Faschingsbrief Op. 2033:00836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-23Mit Vergnügen Op. 2282:18836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra57-24Ohne Bremse Op. 2382:06836671Eduard StraußEduard Strauss696238Willi BoskovskyConductor846292Wiener Johann Strauss OrchestraOrchestra58 BalletSwan Lake999914Pyotr Ilyich TchaikovskyTchaikovsky846296John LanchberyConductor454293Philharmonia OrchestraOrchestra58-01Scene (Act II)2:3158-02Waltz (Act I)7:4258-03Dance Of The Little Swans (Act II)1:2758-04Pas De Deux (Act II)7:4658-05Hungarian Dance (Act III)3:0758-06Spanish Dance (Act III)2:3158-07Neapolitan Dance (Act III)1:5958-08Mazurka (Act III)3:14Sleeping Beauty999914Pyotr Ilyich TchaikovskyTchaikovsky846296John LanchberyConductor454293Philharmonia OrchestraOrchestra58-09Introduction2:2558-10Rose Adagio (Act I)6:3658-11Panorama (Act II)3:2958-12Waltz (Act I)4:57The Nutcracker999914Pyotr Ilyich TchaikovskyTchaikovsky846296John LanchberyConductor454293Philharmonia OrchestraOrchestra58-13Miniature Overture3:0358-14March (Act I)2:2458-15Dance Of The Sugar Plum Fairy2:2258-16Trepak: Russian Dance1:0958-17Chocolate: Spanish Dance1:1158-18Coffee: Arab Dance3:3558-19Tea: Chinese Dance0:5958-20Dance Of The Reed Flutes2:3558-21Waltz Of The Flowers7:2859 Ballet59-01Eugene Onegin: Polonaise4:53999914Pyotr Ilyich TchaikovskyTchaikovsky564749Paavo JärviConductor1535518Orchestre Philharmonique De Radio FranceOrchestra59-02Don Quixote: Pas De Deux (Act III)7:031670523Ludwig MinkusMinkus1428466Robert Irving (2)Conductor, Arranged By341104Royal Philharmonic OrchestraOrchestra59-03La Bayadère: The Kingdom Of The Shades (Act IV Conclusion)10:311670523Ludwig MinkusMinkus846296John LanchberyArranged By, Conductor938915Sydney Symphony OrchestraOrchestraRomeo And Juliet621694Sergei ProkofievProkofiev224329André PrevinConductor212726London Symphony OrchestraOrchestra59-04Dance Of The Knights (Act I)5:3959-05Balcony Scene (Act I)8:34Cinderella621694Sergei ProkofievProkofiev224329André PrevinConductor212726London Symphony OrchestraOrchestra59-06Shawl Dance (Act I)3:3059-07Spring – Summer – Autumn – Winter (Act I)5:5959-08Pas De Deux (The Prince And Cinderella) (Act II)4:4759-09Spartacus: Adagio Of Spartacus And Phrygia9:49335045Aram KhatchaturianKhatchaturian335045Aram KhatchaturianConductor212726London Symphony OrchestraOrchestra59-10The Golden Age: Polka2:12115461Dmitri ShostakovichShostakovich1428466Robert Irving (2)Conductor454293Philharmonia OrchestraOrchestraGayaneh335045Aram KhatchaturianKhatchaturian555458Yuri TemirkanovConductor341104Royal Philharmonic OrchestraOrchestra59-11Sabre Dance (Act III)2:2059-12Lezhginka (Act I)2:3260 BalletLa Fille Mal Gardée873346Ferdinand HéroldHérold846296John LanchberyArranged By835732Barry WordsworthConductor973597Royal Liverpool Philharmonic OrchestraOrchestra60-01Introduction – Dance Of The Cock And Hens (Act I)4:2360-02Pas De Deux (Act II)3:4060-03Finale (Act II)4:23Giselle638732Adolphe C. AdamAdam1428466Robert Irving (2)Conductor454293Philharmonia OrchestraOrchestra60-04Valse (Act I)3:5460-05Pas De Deux (Act II)4:2560-06Pas De Deux6:39884554Riccardo DrigoDrigo846296John LanchberyArranged By2522400Terence KernTerrence KernConductor2522401The London Festival Ballet OrchestraOrchestra Of The London Festival BalletOrchestra60-07Faust: Les Nubiennes – Variation Du Miroir – Danse De Phryné6:56555462Charles GounodGounod832951Sir Charles MackerrasConductor704150New Philharmonia OrchestraOrchestraCoppélia490777Léo DelibesDelibes832951Sir Charles MackerrasConductor704150New Philharmonia OrchestraOrchestra60-08Prélude & Mazurka (Act I)5:3660-09Valse (Act I)2:5560-10Czárdás (Act I)3:2760-11Gaîté Parisienne: Overture2:1795540Jacques OffenbachOffenbach703268Manuel RosenthalArranged By, Conductor703269Orchestre Philharmonique De Monte-CarloOrchestraSylvia490777Léo DelibesDelibes832951Sir Charles MackerrasConductor704150New Philharmonia OrchestraOrchestra60-12Les Chasseresses (Act I)3:4360-13Intermezzo & Valse Lente (Act I)4:1960-14Pizzicati (Act III)1:48Les Deux Pigeons1813204André MessagerMessager846296John LanchberyConductor835739Bournemouth Symphony OrchestraOrchestra60-15Pas Des Deux Pigeons3:4560-16Dance Of The Gypsies3:1060-17Hungarian Dance3:5961 Tango By Piazzolla61-01Lo Que Vendrá3:25162564Astor PiazzollaPiazzolla2980203Aníbal Troilo Y Su Orquesta TípicaAníbal Trolio y Su OrquestraOrchestra61-02Adiós Nonino4:28162564Astor PiazzollaPiazzolla7194249Carlos García Y Su Orquesta TípicaCarlos Garcia y Su OrquestaOrchestra61-03Villeguita3:17162564Astor PiazzollaPiazzolla2103354Astor Piazzolla Y Su OrquestaOrchestra61-04Decarísimo2:48162564Astor PiazzollaPiazzolla3303735Leopoldo Federico Y Su Orquesta TípicaLeopoldo Federico y Su OrquestaOrchestra61-05Para Lucirse3:26162564Astor PiazzollaPiazzolla1834893Osvaldo Fresedo Y Su Orquesta TípicaOsvaldo Pugliese y Su OrquestaOrchestra61-06Marrón Y Azul3:19162564Astor PiazzollaPiazzolla1834893Osvaldo Fresedo Y Su Orquesta TípicaOsvaldo Pugliese y Su OrquestaOrchestra61-07Invierno Porteño3:33162564Astor PiazzollaPiazzolla777458Sexteto MayorOrchestra61-08Verano Porteño4:29162564Astor PiazzollaPiazzolla3471531Raúl Garello Y Su Orquesta TípicaRaúl Garello y Su OrquestaOrchestra61-09El Desbande2:56162564Astor PiazzollaPiazzolla2103354Astor Piazzolla Y Su OrquestaOrchestra61-10Triunfal2:42162564Astor PiazzollaPiazzolla3471374José Basso Y Su Orquesta TípicaJosé Basso y Su OrquestaOrchestra61-11Nonino3:09162564Astor PiazzollaPiazzolla3303735Leopoldo Federico Y Su Orquesta TípicaLeopoldo Federico y Su OrquestaOrchestra61-12Prepárense3:12162564Astor PiazzollaPiazzolla1834893Osvaldo Fresedo Y Su Orquesta TípicaOsvaldo Pugliese y Su OrquestaOrchestra61-13Zum3:10162564Astor PiazzollaPiazzolla1834893Osvaldo Fresedo Y Su Orquesta TípicaOsvaldo Pugliese y Su OrquestaOrchestra61-14Otoño Porteño3:53162564Astor PiazzollaPiazzolla3471531Raúl Garello Y Su Orquesta TípicaRaúl Garello y Su OrquestaOrchestra61-15Se Armó2:40162564Astor PiazzollaPiazzolla2103354Astor Piazzolla Y Su OrquestaOrchestra61-16Libertango3:28162564Astor PiazzollaPiazzolla3303735Leopoldo Federico Y Su Orquesta TípicaLeopoldo Federico y Su OrquestaOrchestra61-17Adiós Nonino4:06162564Astor PiazzollaPiazzolla777458Sexteto MayorEnsemble31838EMI Music Belgium13Phonographic Copyright (p)31838EMI Music Belgium14Copyright (c) + +194VariousSwing Time - All-Star Swing Groups With Their Most Famous RecordingsCompilationCompilationJazzGermany2008All-star swing groups with their most famous recordings. Track information taken from the accompanying CDr. +CD1 contains [r4525910] and [r4550346] +CD2 contains [r7116463], [r11944706] and probably [r11418929]. Also: [r6882187], [r11761791]. Most recordings are also on [r9309140] +CD4 contains [r4893783] and [r11634181] +CD5 contains [m628288] and most of [m680836] +CD6 is [m322897] and [m469793] +CD9 contains [m1371239], [m1285775], [r7864852], [m575169], [r4796079], [r4796031] and [r11780492] +CD10 contains [r4519392], [r10896096], [m1230573], [m795905] and [m955253] +CD11 contains [m1237410], [m747293], [m919631], B-side from [r7865952] +CD12 contains [r10517699], [r7531118] and [m697955] +CD13 is mostly [m901708] and [m1329551] recordings 13-20 also on [r6960177] +CD14 contains [m586156], [r11504364], [r12044326] and [m1372075]. Most recordings also on [r6960177] +CD15 recordings also on [r6960177] +CD16 is mostly [m956170] + [m321553] +CD17 contains [r6877729], [r6169381], [r10069960], [r10027563], [r11067830] and [r11945360]. Most songs also on the [l431289] +CD18 contains [r11933721], [r11933805], [r11925088], [m723063], [m924982], [m1339987]. Most songs also on the [l431289] +CD19 contains [m974766], [r4203125], [r4203108], [m675588], [r5472672], [m750732], [r6169585], [r9005512]. Most songs also on the [l431289] +CD20 contains [r6169611], [r11238664], [r7526539], [r10170317], [m1330904], [r12020491], [r11933776]. Most songs also on the [l431289] +CD21 contains [m572474], [m613979], [m498141], [r9762064], [m1178316], [r10053668], [m676496], [m658004] and probably [r1865413] +CD22 contains [m1253757], [m968257], [m1253759], [m1285349], [r11182163], [m1231722], [m1129944], [m1282675] +CD23 contains [m874692], [m1288914], [m1285276], [m723248], [m1232356], [r11292596] +CD24 contains [m1282690], [m1282681], [m1168698], [m1281982], [m802772], [m1167266] +CD25 contains [m575166], [m1178865], [r8309894], [m512581], [m750752], [m1179931], [m750750], [r11292659] +CD26 contains [r8284274], [r9930818], [r10707959], [r11150455], [m1368798], [m1164258] +CD27 contains [m1268667], [m750749], [m1307852], [m1366785], [m1307858], [m1366787], [m1312931], [r11695118], [m1251428]. Most songs are also on [r7164193] +CD28 contains [m1208294], [m1507695], [r7500762], [m922142], [r9868132], [m575168], [r7164305], [r6652464] +CD29 contains [r11150812], [r10510028], [r11253417], [m1305089], [r4608251], [r13310527], [r4480906] and is mostly [r4644119] +CD30 contains [m1328236], half [m1361300], [m686443], [m835500], [r5745777], [r9777525], [r9009593], [r10604383] +CD31 contains [r14156264], [r9244367], [m1151675], [m1015946], [m1129317], [r3716859], [r10463449], [r5225337], [m1379135] +CD32 contains [m861357], [m828523], [m1115622], [m1253864], [r6240049] ([m1241400] & [r4709646]), [r8505636], [r8128443] +CD33 contains [r12883349] (=[r7817359], [m1375475], [r9274371] & [r8505664]), [m1109802], [m1262225], [m1342867], [m789831], [m1213273], [r8506683] +CD34 contains [r7838807], [r10240375], [r7838782] +CD35 contains [r9303990], [m1354098], [m1351831], [r13983569], [r1535702], [r10515224], [m1363236] +CD36 contains [r6117111] +CD37 contains [m525849] and [m410179] (except for the song "Maria") +CD38 is [r8234758] and the first 3 songs of [r7660020] +CD39 is the rest of the songs of [r7660020] +CD40 is [r7709350] +CD41 contains [m994465], [m1003903], [r6705143], [m1359253]. Most of the songs also on [r13472497] +CD42 contains [r13761026], [r8164690], [m785644] +CD43 contains [r12123479], [r11747179], [m1220796], [r10706326], [r9930295] +CD44 contains [m353911] and first 4 songs of [r2390653] +CD45 contains the rest of [r2390653] and [m490987] +CD46, 47 contain [m969407] starting from B5, [m1003679], [m1003680], first 2 tracks of [m1075566], first 9 tracks of [m1075567] +CD48 contains first 8 and 11th track of [m1075568], tracks 2 to 9 and 12 of [m1003683] +CD49 contains [r9105569], [r10264983], [r11867129], [r10098607] +CD50 contains [r7661124], [m752287] +CD51 contains [r10070068], [m1328695], [r11929598], [r4127420], [r14117971], [m1421115], [m1135255] +CD52 contains [r11017953] (except for the 4 Adelaide Hall songs), [m1353730] and [m1353731] +CD53 contains [m1222151], [r9567285] and [m1251152] +CD54 contains [m1375875], [r10043976], [r3999528], [r12234394], [r9848419], [r12020151] +CD55 contains [r9630253], [r11929474], [m1375878], [m1361245], [r13491025], [r11980478], [r4331542] +CD56 contains [r1060147], [m1021163], [m886734] +CD57 is the frst 20 songs of [m1209465] (and of [r10619976]) +CD58 contains the next 20 songs of [r10619976] +CD59 contains [r6324609], [m1235103], [m965950] +CD60 contains last 8 tracks from [m419989], first 3 tracks from [r4740547], track 1 and 4 from [m582213] +CD61 contains [m749467] +CD62 contains last 3 tracks of [m1232187] +CD63 contains [m249088] and the 4 [a1696062] tracks on [m1042968] +CD64 contains [m549158] and 4 tracks from [m438719] +CD65 contains the other 3 tracks from [m438719], [m288543] (with all 9 tracks as on the Blue Saxophones issues of the album) +CD66 contains [m585823] and last 2 tracks from [m338638] +CD67 contains the solo's from [m1245796], [m1245799], [m1246060], [m1246086], [m1246094] except for 67.13 and 67.14 +CD68 contains the non-solo's from [m1245796] and first 11 tracks from [m1245799] +CD69 contains last 7 tracks of [m1245799] and first 14 from [r10307168] +CD70 contains the last 9 tracks of [r10307168] and first 11 from [m1246073] +CD71 contains the rest of [m1246073] and first 8 from [r10305968] +CD72 contains the last 9 tracks from [m1246080], the non solo tracks from [m1246086] (until track 18) +CD73 contains [r10360983], [r3638541], [r8898246], [m1338604] and the B-side of [r3241564] +CD74 contains [m768309], [m1338604], first 5 songs of [r5617557], [r11668010], [m1385514] +CD75 contains [m1074459], [r10237854], [r7027886], [m1307887], [m1095819] +CD76 contains [r3846221], [r5675968] +CD77 contains [r6824790], [m808761], [m808626], [m1459317], [m1377658] +CD78 contains [m1307873], [m854912] +CD79 contains B-side of [r13987756], [m1507631], [r12474430], [r12045683] +CD80 contains first 9 tracks from [m549121] +CD81 contains the other 4 tracks from [m549121], [m1134741], first 4 tracks from [r12658583] +CD82 contains the other tracks from [r12658583] (except for tracks 8 and 14), [m1359255], [m1039877] +CD83 contains [r6579506], [m448350] +CD84 contains [m517830], 5 tracks from [m335897] +CD85 contains the other 2 tracks from [m335897], 3 tracks from [m230525] +CD86 contains [a2577987], [r11929289], [m1365549], [m1504998], [r7867852], [m1547071], [m1373098] +CD87 contains [r10491278], [m1295722], [m1129316], [r5257230], [r12020536], [r9867833], [r9867806], [m694206], B-side of [m715997], A-side af [m1480292] +CD88 contains B-side of [m1480292], [r14053273], [m704378], [m1090683], [m916084], [m1388692], [r5827444], [m1174827] +CD89 contains [r10809282], [m1221658], [r4644262], [r13548492], [m715999], [m1167242] +CD90 contains [m1305751], [m1331531], [r6226861], [r11999478], [r6915046], [r7855308], first 8 tracks from [m681195] +CD91 is [m407572] and [m575801] +CD92 is [m575607] and [m472308] +CD93 is first track of [r3701003], [m753454] and first track of [m742159] +CD94 contains [m1230574], second track of [m742159] and second track of [r3701003] +CD95 contains [m312179] and all the tracks also appear on [r12013295] +CD96.1-3 also appear on [r12013295] 96.4-5 from [m850041] +CD97 contains [m290465]. 97.6-8 als on [r12013295] +CD98 contains [m721416]. 98.1-4 also on [r12013295] +CD99.1-2 also on [r12013295], 99.3-8 is [m659782], 99.9-11 from [m857902] +CD100 contains [m330274] +CD 101 is an Index CD. +Comes with 144 pages cd sized booklet.Correct0Henry “Red” Allen 1933-351-1The River’s Takin‘ Care Of Me1492270Henry Allen-Coleman Hawkins And Their Orchestra1-2Ain’t Cha Got Music?1492270Henry Allen-Coleman Hawkins And Their Orchestra1-3Stringing Along On A Shoe String1492270Henry Allen-Coleman Hawkins And Their Orchestra1-4Shadows On The Swanee1492270Henry Allen-Coleman Hawkins And Their Orchestra1-5Hush My Mouth1492270Henry Allen-Coleman Hawkins And Their Orchestra1-6You’re Gonna Lose Your Gal1492270Henry Allen-Coleman Hawkins And Their Orchestra1-7Dark Clouds1492270Henry Allen-Coleman Hawkins And Their Orchestra1-8My Galveston Gal1492270Henry Allen-Coleman Hawkins And Their Orchestra1-9I Wish I Were Twins1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-10I Never Slept A Wink Last Night1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-11Why Don't You Practice What You Preach?1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-12Don't Let Your Love Go Wrong1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-13There's A House In Harlem For Sale1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-14Pardon My Southern Accent1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-15Rug Cutter Swing1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-16How's About Tomorrow Night1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-17Believe It, Beloved1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-18Believe It, Beloved1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-19It's Written All Over Your Face1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-20(We're Gonna Have) Smooth Sailing1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-21Whose Honey Are You?1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-22Rosetta1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-23Body And Soul1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-24I'll Never Say "Never Again" Again1201611Henry "Red" Allen And His OrchestraHenry Allen And His Orchestra1-25Get Rhythm In Your Soul1201611Henry "Red" Allen And His OrchestraHenry Allen And His OrchestraLeon “Chu” Berry Vol. 1 (1937-38)2-1Now You’re Talking My Language3065454Chu Berry And His Stompy Stevedores2-2Indiana3065454Chu Berry And His Stompy Stevedores2-3Indiana3065454Chu Berry And His Stompy Stevedores2-4Too Marvelous For Words3065454Chu Berry And His Stompy Stevedores2-5Limehouse Blues3065454Chu Berry And His Stompy Stevedores2-6Chuberry Jam3065454Chu Berry And His Stompy Stevedores2-7Maelstrom3065454Chu Berry And His Stompy Stevedores2-8My Secret Love Affair3065454Chu Berry And His Stompy Stevedores2-9Ebb Tide3065454Chu Berry And His Stompy Stevedores2-10Annie Laurie335562Wingy Manone & His OrchestraWingy Manone And His Orchestra2-11Loch Lomond335562Wingy Manone & His OrchestraWingy Manone And His Orchestra2-12Down Stream335562Wingy Manone & His OrchestraWingy Manone And His Orchestra2-13Where's The Waiter?335562Wingy Manone & His OrchestraWingy Manone And His Orchestra2-14My Mariuccia Take A Steamboat335562Wingy Manone & His OrchestraWingy Manone And His Orchestra2-15In The Land Of Yamo Yamo335562Wingy Manone & His OrchestraWingy Manone And His Orchestra2-16Sittin‘ In1753828Chu Berry & His Little Jazz EnsembleChu Berry And His ’Little Jazz’ Ensemble2-17Star Dust1753828Chu Berry & His Little Jazz EnsembleChu Berry And His ’Little Jazz’ Ensemble2-18Body And Soul1753828Chu Berry & His Little Jazz EnsembleChu Berry And His ’Little Jazz’ Ensemble2-19Forty Six West Fifty Two1753828Chu Berry & His Little Jazz EnsembleChu Berry And His ’Little Jazz’ EnsembleLeon “Chu” Berry Vol. 2 (1939-41)3-1Downright Disgusted Blues335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-2Corrine Corrina335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-3I’m Real Kinda Papa335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-4Jumpy Nerves335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-5Casey Jones335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-6Boogie Woogie335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-7Royal Garden Blues335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-8Beale Street Blues335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-9In The Barrel335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-10Farewell Blues335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-11Fare Thee, My Baby, Fare-Thee-Well335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-12Limehouse Blues335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-13Blue Lou335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-14Sudan335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-15How Long Blues335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-16When The Saints Go Marching In335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-17My Honey’s Lovin’ Arms335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-18When My Sugar Walks Down The Street335562Wingy Manone & His OrchestraWingy Manone And His Orchestra3-19Blowing Up A Breeze6502769Chu Berry And His Jazz Ensemble3-20On The Sunny Side Of The Street6502769Chu Berry And His Jazz Ensemble3-21Monday At Minton’s6502769Chu Berry And His Jazz Ensemble3-22Gee Baby, Ain’t I Good To You?6502769Chu Berry And His Jazz EnsembleBenny Carter Vol. 1 (1946-52)4-1The Moon Is Low3832044Arnold Ross Quintet4-2Stairway To The Stars3832044Arnold Ross Quintet4-3Bye Bye Blues3832044Arnold Ross Quintet4-4I Don’t Know Why I Love You, Like I Do3832044Arnold Ross Quintet4-5Isn’t It Romantic?258701Benny Carter4-6Some Other Spring258701Benny Carter4-7These Things You Left Me258701Benny Carter4-8Gone With The Wind258701Benny Carter4-9I Got It Bad258701Benny Carter4-10Long Ago (And Far Away)258701Benny Carter4-11I’ve Got The World On A String258701Benny Carter4-12‘Round Midnight258701Benny Carter4-13Alone Together258701Benny Carter4-14Bewitched258701Benny Carter4-15Cocktails For Two258701Benny Carter4-16Key Largo258701Benny Carter4-17Street Scene258701Benny Carter4-18Imagination258701Benny Carter4-19Pick Yourself Up258701Benny Carter4-20I Get A Kick Out Of You258701Benny CarterBenny Carter Vol. 2 (1954)5-1Moonglow258701Benny Carter5-2My One And Only Love258701Benny Carter5-3Our Love Is Here To Stay258701Benny Carter5-4This Can’t Be Love258701Benny Carter5-5Tenderly258701Benny Carter5-6Unforgettable258701Benny Carter5-7Ruby258701Benny Carter5-8Moon Song258701Benny Carter5-9Laura258701Benny Carter5-10That Old Black Magic7448405New Jazz Sounds5-11Angel Eyes7448405New Jazz Sounds5-12The Song Is You7448405New Jazz Sounds5-13Just One Of Those Things7448405New Jazz Sounds5-14Marriage Blues7448405New Jazz SoundsBenny Carter Vol. 3 (1954)6-1My Blue Heaven265634Art Tatum,258701Benny Carter,353291Louis Bellson6-2Blues In B Flat265634Art Tatum,258701Benny Carter,353291Louis Bellson6-3Blues In C265634Art Tatum,258701Benny Carter,353291Louis Bellson6-4A Foggy Day265634Art Tatum,258701Benny Carter,353291Louis Bellson6-5(I’m Left With The) Blues In My Heart265634Art Tatum,258701Benny Carter,353291Louis Bellson6-6Street Of Dreams265634Art Tatum,258701Benny Carter,353291Louis Bellson6-7Idaho265634Art Tatum,258701Benny Carter,353291Louis Bellson6-8You’re Mine, You265634Art Tatum,258701Benny Carter,353291Louis Bellson6-9Undecided265634Art Tatum,258701Benny Carter,353291Louis Bellson6-10Under A Blanket Of Blue265634Art Tatum,258701Benny Carter,353291Louis Bellson6-11Makin’ Whoopee265634Art Tatum,258701Benny Carter,353291Louis Bellson6-12Old Fashioned Love265634Art Tatum,258701Benny Carter,353291Louis Bellson6-13‘S Wonderful265634Art Tatum,258701Benny Carter,353291Louis Bellson6-14Hands Across The Table265634Art Tatum,258701Benny Carter,353291Louis BellsonCharlie Christian Vol. 1 (1939-40)7-1Flying Home311730Benny Goodman Sextet7-2Rose Room (In Sunny Roseland)311730Benny Goodman Sextet7-3Star Dust311730Benny Goodman Sextet7-4Homeward Bound (Flying Home)311730Benny Goodman Sextet7-5Memories Of You311730Benny Goodman Sextet7-6Soft Winds311730Benny Goodman Sextet7-7Seven Come Eleven311730Benny Goodman Sextet7-8Honeysuckle Rose374400Benny Goodman And His Orchestra7-9Shivers311730Benny Goodman Sextet7-10Ac-Dc Current311730Benny Goodman Sextet7-11Till Tom Special311730Benny Goodman Sextet7-12Gone With 'What' Wind311730Benny Goodman Sextet7-13The Sheik311730Benny Goodman Sextet7-14Poor Butterfly311730Benny Goodman Sextet7-15I Surrender Dear311730Benny Goodman Sextet7-16Boy Meets Goy (Grand Slam)311730Benny Goodman Sextet7-17Six Appeal311730Benny Goodman Sextet7-18These Foolish Things311730Benny Goodman Sextet7-19Wholly Cats311730Benny Goodman Sextet7-20Wholly Cats311730Benny Goodman Sextet7-21Royal Garden Blues311730Benny Goodman Sextet7-22As Long As I Live311730Benny Goodman Sextet7-23Benny's Bugle311730Benny Goodman SextetCharlie Christian Vol. 2 (1940-41)8-1I Can't Give You Anything But Love311730Benny Goodman SextetBenny Goodman And His Sextet8-2Gilly311730Benny Goodman SextetBenny Goodman And His Sextet8-3Gilly311730Benny Goodman SextetBenny Goodman And His Sextet8-4Gilly311730Benny Goodman SextetBenny Goodman And His Sextet8-5Breakfast Feud311730Benny Goodman SextetBenny Goodman And His Sextet8-6On The Alamo311730Benny Goodman SextetBenny Goodman And His Sextet8-7I Found A New Baby311730Benny Goodman SextetBenny Goodman And His Sextet8-8Gone With What Draft311730Benny Goodman SextetBenny Goodman And His Sextet8-9Gone With What Draft311730Benny Goodman SextetBenny Goodman And His Sextet8-10Jamming In Four311727Edmond Hall Celeste Quartet8-11Edmond Hall Blues311727Edmond Hall Celeste Quartet8-12Profoundly Blue311727Edmond Hall Celeste Quartet8-13Profoundly Blue No. 2311727Edmond Hall Celeste Quartet8-14Celestial Express311727Edmond Hall Celeste Quartet8-15Solo Flight374400Benny Goodman And His Orchestra8-16Solo Flight374400Benny Goodman And His Orchestra8-17Blues In B-Flat3637552Jam Session (4)8-18Waitin’ For Benny (Incl. ‘A Smo-O-Oth One’)3637552Jam Session (4)8-19A Smo-O-O-Oth One3637552Jam Session (4)8-20A Smo-O-O-Oth One3637552Jam Session (4)8-21Good Enough To Keep (Air Mail Special)3637552Jam Session (4)Roy Eldridge Vol. 1 (1935-39)9-1Swingin' At That Famous Door3814219Delta FourThe Delta Four9-2Farewell Blues3814219Delta FourThe Delta Four9-3Christopher Columbus357950Roy Eldridge And His Orchestra9-4I Hope Gabriel Likes My Music2577984Gene Krupa's Swing Band9-5Mutiny In The Parlor2577984Gene Krupa's Swing Band9-6I’m Gonna Clap My Hands2577984Gene Krupa's Swing Band9-7Swing Is Here2577984Gene Krupa's Swing Band9-8Mary Had A Little Lamb342361Teddy Wilson And His Orchestra9-9Too Good To Be True342361Teddy Wilson And His Orchestra9-10Warmin' Up342361Teddy Wilson And His Orchestra9-11Blues In C Sharp Minor342361Teddy Wilson And His Orchestra9-12Wabash Stomp357950Roy Eldridge And His Orchestra9-13Florida Stomp357950Roy Eldridge And His Orchestra9-14Heckler's Hop357950Roy Eldridge And His Orchestra9-15Where The Lazy River Goes By357950Roy Eldridge And His Orchestra9-16That Thing357950Roy Eldridge And His Orchestra9-17After You've Gone357950Roy Eldridge And His Orchestra9-18It’s My Turn Now357950Roy Eldridge And His Orchestra9-19You’re A Lucky Guy357950Roy Eldridge And His Orchestra9-20Pluckin' The Bass357950Roy Eldridge And His Orchestra9-21I’m Getting Sentimental Over You357950Roy Eldridge And His OrchestraRoy Eldridge Vol. 2 (1939-45)10-1High Society357950Roy Eldridge And His Orchestra10-2Muskrat Ramble357950Roy Eldridge And His Orchestra10-3Who Told You I Cared?357950Roy Eldridge And His Orchestra10-4Does Your Heart Beat For Me?357950Roy Eldridge And His Orchestra10-5The Gasser357950Roy Eldridge And His Orchestra10-6Jump Through The Window357950Roy Eldridge And His Orchestra10-7Minor Jive357950Roy Eldridge And His Orchestra10-8Stardust357950Roy Eldridge And His Orchestra10-9Don’t Be That Way3267306"Little Jazz" And His Trumpet Ensemble10-10I Want To Be Happy3267306"Little Jazz" And His Trumpet Ensemble10-11Fiesta In Brass3267306"Little Jazz" And His Trumpet Ensemble10-12St. Louis Blues3267306"Little Jazz" And His Trumpet Ensemble10-13Can’t Get Started357950Roy Eldridge And His Orchestra10-14After You’ve Gone357950Roy Eldridge And His Orchestra10-15Body And Soul357950Roy Eldridge And His Orchestra10-16Fish Market357950Roy Eldridge And His Orchestra10-17Twilight Time357950Roy Eldridge And His Orchestra10-18St. Louis Blues357950Roy Eldridge And His Orchestra10-19The Grabtown Grabble335570Artie Shaw And His Gramercy Five10-20The Sad Sack335570Artie Shaw And His Gramercy Five10-21Little Jazz Boogie357950Roy Eldridge And His Orchestra10-22Embraceable You357950Roy Eldridge And His OrchestraRoy Eldridge Vol. 3 (1945-46)11-1Scuttlebutt335570Artie Shaw And His Gramercy Five11-2The Gentle Grifter335570Artie Shaw And His Gramercy Five11-3Misterioso335570Artie Shaw And His Gramercy Five11-4Misterioso335570Artie Shaw And His Gramercy Five11-5Hop Skip And Jump335570Artie Shaw And His Gramercy Five11-6Tea For Two4082560Bill Stegmeyer And His Hot Eight11-7Old Rob Roy258459Roy EldridgeAnd793741The V-Disc All StarsHis V-Discatters11-8Roy Meets Horn258459Roy EldridgeAnd793741The V-Disc All StarsHis V-Discatters11-9I’ve Found A New Baby258459Roy EldridgeAnd793741The V-Disc All StarsHis V-Discatters11-10All The Cats Join In357950Roy Eldridge And His Orchestra11-11Ain’t That A Shame357950Roy Eldridge And His Orchestra11-12Hi Ho, Trailus Boat Whip357950Roy Eldridge And His Orchestra11-13Tippin‘ Out357950Roy Eldridge And His Orchestra11-14Yard Dog357950Roy Eldridge And His Orchestra11-15Les Bounce357950Roy Eldridge And His Orchestra11-16Lover Come Back To Me357950Roy Eldridge And His Orchestra11-17Rockin‘ Chair357950Roy Eldridge And His Orchestra11-18It's The Talk Of The Town357950Roy Eldridge And His OrchestraRoy Eldridge Vol. 4 (1947-50)12-1Honeysuckle Rose5169848WNEW Saturday Night Swing SessionWNEW 'Saturday Night Swing Session'12-2Lover5169848WNEW Saturday Night Swing SessionWNEW 'Saturday Night Swing Session'12-3Flip And Jazz5169848WNEW Saturday Night Swing SessionWNEW 'Saturday Night Swing Session'12-4How High The Moon5169848WNEW Saturday Night Swing SessionWNEW 'Saturday Night Swing Session'12-5King David2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-6It Don’t Mean A Thing2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-7Wrap Your Troubles In Dreams2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-8Wrap Your Troubles In Dreams2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-9Undecided2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-10Ain’t No Flies On Me2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-11The Man I Love2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-12The Man I Love2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-13Easter Parade2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-14Easter Parade2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-15Wild Driver2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-16If I Had You2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-17Nuts2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-18Someone To Watch Over Me2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little Jazz12-19Goliath Bounce2804052Roy "King David" Eldridge & His Little Jazz“King David” And His Little JazzRoy Eldridge Vol. 5 (1950-51)13-1I Remember Harlem357950Roy Eldridge And His OrchestraRoy “King Jazz” And His Orchestra13-2Baby Don’t Do Me Like That357950Roy Eldridge And His OrchestraRoy “King Jazz” And His Orchestra13-3Une Petit Laitue357950Roy Eldridge And His OrchestraRoy “King Jazz” And His Orchestra13-4L’isle Adam357950Roy Eldridge And His OrchestraRoy “King Jazz” And His Orchestra13-5Black And Blue357950Roy Eldridge And His OrchestraRoy “King Jazz” And His Orchestra13-6Tu Disais Qu’tu M’amais357950Roy Eldridge And His OrchestraRoy “King Jazz” And His Orchestra13-7Oh, Shut Up1801328The Roy Eldridge QuintetRoy Eldridge Quintet13-8Hollywood Pastime1801328The Roy Eldridge QuintetRoy Eldridge Quintet13-9I’d Love Him So1801328The Roy Eldridge QuintetRoy Eldridge Quintet13-10Très Chaud (The Heat Is On)1801328The Roy Eldridge QuintetRoy Eldridge Quintet13-11Wild Man Blues258459Roy Eldridge13-12Fireworks258459Roy Eldridge13-13Baby, What’s The Matter With You?357950Roy Eldridge And His Orchestra13-14Yard Dog357950Roy Eldridge And His Orchestra13-15Sweet Lorraine357950Roy Eldridge And His Orchestra13-16Jumbo The Elephant357950Roy Eldridge And His Orchestra13-17Basin Street Blues258459Roy EldridgeWith2151809George Williams And His OrchestraGeorge Williams’ Orchestra13-18I Remember Harlem258459Roy EldridgeWith2151809George Williams And His OrchestraGeorge Williams’ Orchestra13-19Easter Parade258459Roy EldridgeWith2151809George Williams And His OrchestraGeorge Williams’ Orchestra13-20I See Everybody’s Baby258459Roy EldridgeWith2151809George Williams And His OrchestraGeorge Williams’ OrchestraRoy Eldridge Vol. 6 (1952-53)14-1Roy’s Riff1801328The Roy Eldridge Quintet14-2Wrap Your Troubles In Dreams1801328The Roy Eldridge Quintet14-3Rockin’ Chair1801328The Roy Eldridge Quintet14-4Little Jazz1801328The Roy Eldridge Quintet14-5Love For Sale1801328The Roy Eldridge Quintet14-6Dale’s Wail1801328The Roy Eldridge Quintet14-7The Man I Love1801328The Roy Eldridge Quintet14-8Oscar’s Arrangement1801328The Roy Eldridge Quintet14-9Willow Weep For Me1801328The Roy Eldridge Quintet14-10Somebody Loves Me1801328The Roy Eldridge Quintet14-11When Your Lover Has Gone1801328The Roy Eldridge Quintet14-12When It’s Sleepy Time Down South1801328The Roy Eldridge Quintet14-13Feeling A Draft1801328The Roy Eldridge Quintet14-14Don’t Blame Me1801328The Roy Eldridge Quintet14-15Echoes Of Harlem1801328The Roy Eldridge Quintet14-16I Can’t Get Started1801328The Roy Eldridge QuintetRoy Eldridge Vol. 7 (1954-55)15-1If I Had You357950Roy Eldridge And His Orchestra15-2Blue Moon357950Roy Eldridge And His Orchestra15-3Blue Moon Stormy Weather357950Roy Eldridge And His Orchestra15-4Sweethearts On Parade357950Roy Eldridge And His Orchestra15-5A Foggy Day357950Roy Eldridge And His Orchestra15-6I Only Have Eyes For You357950Roy Eldridge And His Orchestra15-7Sweet Georgia Brown357950Roy Eldridge And His Orchestra15-8The Song Is Ended357950Roy Eldridge And His Orchestra15-9Where’s Art?258459Roy EldridgeAnd258467Alvin Stoller15-10I Don’t Know258459Roy EldridgeAnd258467Alvin Stoller15-11Striding258459Roy EldridgeAnd258467Alvin Stoller15-12Wailing258459Roy EldridgeAnd258467Alvin StollerRoy Eldridge Vol. 8 (1955)16-1I Still Love Him So258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-2The Moon Is Low258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-3The Moon Is Low258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-4Close Your Eyes258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-5I Missed My Hat258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-6Polite Blues258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-7I Remember You - Chelsea Bridge - I’ve Got The World On A String258459Roy Eldridge-258701Benny CarterBenny Carter Quintet16-8I Surrender Dear265634Art Tatum-258459Roy Eldridge16-9The Moon Is Low265634Art Tatum-258459Roy Eldridge16-10You Took Advantage Of Me265634Art Tatum-258459Roy Eldridge16-11I Won't Dance265634Art Tatum-258459Roy Eldridge16-12Moon Song265634Art Tatum-258459Roy Eldridge16-13This Can't Be Love265634Art Tatum-258459Roy Eldridge16-14In A Sentimental Mood265634Art Tatum-258459Roy Eldridge16-15Night And Day265634Art Tatum-258459Roy EldridgeDuke Ellington Small Groups Vol. 1 (1936-37)17-1Clouds In My Heart5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-2Frolic Sam5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-3Caravan5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-4Stompy Jones5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-5I Can’t Believe That You’re In Love With Me313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters17-6Downtown Uproar313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters17-7Digga Digga Doo313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters17-8Blue Reverie313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters17-9Whispering Tiger (Tiger Rag)313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters17-10My Honey’s Lovin’ Arms2390879The Gotham Stompers17-11Did Anyone Ever Tell You?2390879The Gotham Stompers17-12Alabamy Home2390879The Gotham Stompers17-13Where Are You2390879The Gotham Stompers17-14Solace (Lament For A Lost Love)5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-15Four And One Half Street5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-16Demi-Tasse (Each Day)5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-17Jazz A La Carte5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-18Foolin’ Myself843805Johnny Hodges And His Orchestra17-19A Sailboat In The Moonlight843805Johnny Hodges And His Orchestra17-20You’ll Never Go To Heaven843805Johnny Hodges And His Orchestra17-21Peckin’843805Johnny Hodges And His Orchestra17-22Get It Southern Style5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-23Moonlight Fiesta5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-24Sponge Cake And Spinach5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators17-25If You’re Ever In My Arms5316143Barney Bigard And His JazzopatersBarney Bigard And His JazzopatorsDuke Ellington Small Groups Vol. 2 (1937-38)18-1Jubilesta313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-2Watchin’313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-3Pigeons And Peppers313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-4I Can’t Give You Anything But Love313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-5Drummer’s Delight5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators18-6If I Thought You Cared5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators18-7Have A Heart (Lost In Meditation)313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-8Echoes Of Harlem313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-9My Day843805Johnny Hodges And His Orchestra18-10Silv’ry Moon And Golden Sands843805Johnny Hodges And His Orchestra18-11Jeep’s Blues843805Johnny Hodges And His Orchestra18-12If You Were In My Place843805Johnny Hodges And His Orchestra18-13I Let A Song Go Out Of My Heart843805Johnny Hodges And His Orchestra18-14Rendezvous With Rhythm843805Johnny Hodges And His Orchestra18-15A Lesson In C313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-16Swingtime In Honolulu313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-17Carnival In Caroline313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-18Ol’ Man River313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters18-19You Walked Out Of The Picture843805Johnny Hodges And His Orchestra18-20Pyramid843805Johnny Hodges And His Orchestra18-21Empty Ballroom Blues843805Johnny Hodges And His Orchestra18-22Lost In Meditation843805Johnny Hodges And His OrchestraDuke Ellington Small Groups Vol. 3 (1938)19-1A Blues Serenade843805Johnny Hodges And His Orchestra19-2Love In Swingtime843805Johnny Hodges And His Orchestra19-3Swingin’ In The Dell843805Johnny Hodges And His Orchestra19-4Jitterbug’s Lullaby843805Johnny Hodges And His Orchestra19-5Chasin‘ Chippies313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-6Blue Is The Evening313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-7Sharpie313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-8Swing Pan Alley313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-9Prelude To A Kiss843805Johnny Hodges And His Orchestra19-10There’s Something About An Old Love843805Johnny Hodges And His Orchestra19-11The Jeep Is Jumpin’843805Johnny Hodges And His Orchestra19-12Krum Elbow Blues843805Johnny Hodges And His Orchestra19-13I’m In Another World843805Johnny Hodges And His Orchestra19-14Hodge Podge843805Johnny Hodges And His Orchestra19-15Dancing On The Stars843805Johnny Hodges And His Orchestra19-16Wanderlust843805Johnny Hodges And His Orchestra19-17Delta Mood313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-18The Boys From Harlem313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-19Mobile Blues313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-20Gal-Avantin’313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters19-21Like A Ship In The Night843805Johnny Hodges And His Orchestra19-22Mississippi Dream Boat843805Johnny Hodges And His Orchestra19-23Swingin’ On The Campus843805Johnny Hodges And His Orchestra19-24Dooji Wooji843805Johnny Hodges And His OrchestraDuke Ellington Small Groups Vol. 4 (1939)20-1Beautiful Romance313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-2Boudoir Benny313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-3Ain’t The Gravy Good ?313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-4She’s Gone313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-5Savoy Strut843805Johnny Hodges And His Orchestra20-6Rent Party Blues843805Johnny Hodges And His Orchestra20-7Dance Of The Goon843805Johnny Hodges And His Orchestra20-8Good Gal Blues843805Johnny Hodges And His Orchestra20-9Finesse (Night Wind)843805Johnny Hodges And His Orchestra20-10Kitchen Mechanic’s Day843805Johnny Hodges And His Orchestra20-11My Heart Jumped Over The Moon843805Johnny Hodges And His Orchestra20-12You Can Count On Me843805Johnny Hodges And His Orchestra20-13Home Town Blues843805Johnny Hodges And His Orchestra20-14Utt-Da-Zay (The Taylor Song)5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators/313024The Quintones20-15Chew-Chew-Chew (Your Bubble-Gum)5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators/313024The Quintones20-16Barney Goin’ Easy5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators/313024The Quintones20-17Just Another Dream5316143Barney Bigard And His JazzopatersBarney Bigard And His Jazzopators/313024The Quintones20-18Night Song313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-19Blues A-Poppin’313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-20Top And Bottom313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-21Black Beauty313151Cootie Williams & His Rug CuttersCootie Williams And His Rug Cutters20-22The Rabbit’s Jump843805Johnny Hodges And His Orchestra20-23Moon Romance843805Johnny Hodges And His Orchestra20-24Truly Wonderful843805Johnny Hodges And His Orchestra20-25Dream Blues843805Johnny Hodges And His OrchestraDuke Ellington Small Groups Vol. 5 (1940-41)21-1Pitter Panther Patter145257Duke Ellington,335660Jimmy Blanton21-.2Body And Soul145257Duke Ellington,335660Jimmy Blanton21-3Sophisticated Lady145257Duke Ellington,335660Jimmy Blanton21-4Mr. J.B. Blues145257Duke Ellington,335660Jimmy Blanton21-5Day Dream843805Johnny Hodges And His Orchestra21-6Good Queen Bess843805Johnny Hodges And His Orchestra21-7That’s The Blues Old Man843805Johnny Hodges And His Orchestra21-8Junior Hop843805Johnny Hodges And His Orchestra21-9Charlie The Chulo373892Barney Bigard And His OrchestraBarney Bigard And Orchestra21-10Lament For Javanette373892Barney Bigard And His OrchestraBarney Bigard And Orchestra21-.11A Lull At Dawn373892Barney Bigard And His OrchestraBarney Bigard And Orchestra21-12Ready Eddy373892Barney Bigard And His OrchestraBarney Bigard And Orchestra21-13Some Saturday374632Rex Stewart And His Orchestra21-14Subtle Slough374632Rex Stewart And His Orchestra21-15Menelik (The Lion Of Judah)374632Rex Stewart And His Orchestra21-16Poor Bubber374632Rex Stewart And His Orchestra21-17Squatty Roo843805Johnny Hodges And His Orchestra21-18Passion Flower843805Johnny Hodges And His Orchestra21-19Things Ain’t What They Used To Be843805Johnny Hodges And His Orchestra21-20Goin’ Out The Back Way843805Johnny Hodges And His Orchestra21-21Brown Suede373892Barney Bigard And His Orchestra21-22Noir Bleu373892Barney Bigard And His Orchestra21-23“C” Blues373892Barney Bigard And His Orchestra21-24June373892Barney Bigard And His OrchestraBenny Goodman Groups (1935-36)22-1After You've Gone311733Benny Goodman Trio22-2After You've Gone311733Benny Goodman Trio22-3Body And Soul311733Benny Goodman Trio22-4Body And Soul311733Benny Goodman Trio22-5Who?311733Benny Goodman Trio22-6Someday Sweetheart311733Benny Goodman Trio22-7China Boy311733Benny Goodman Trio22-8More Than You Know311733Benny Goodman Trio22-9All My Life311733Benny Goodman Trio22-10Oh, Lady Be Good311733Benny Goodman Trio22-11Nobody’s Sweetheart311733Benny Goodman Trio22-12Too Good To Be True311733Benny Goodman Trio22-13Moon Glow270025The Benny Goodman QuartetBenny Goodman Quartet22-14Moon Glow270025The Benny Goodman QuartetBenny Goodman Quartet22-15Dinah270025The Benny Goodman QuartetBenny Goodman Quartet22-16Exactly Like You270025The Benny Goodman QuartetBenny Goodman Quartet22-17Vibraphone Blues270025The Benny Goodman QuartetBenny Goodman Quartet22-18Sweet Sue-Just You270025The Benny Goodman QuartetBenny Goodman Quartet22-19My Melancholy Baby270025The Benny Goodman QuartetBenny Goodman Quartet22-20Tiger Rag270025The Benny Goodman QuartetBenny Goodman QuartetBenny Goodman Groups (1936-37)23-1Stompin’ At The Savoy270025The Benny Goodman QuartetBenny Goodman Quartet23-2Stompin’ At The Savoy270025The Benny Goodman QuartetBenny Goodman Quartet23-3Whispering270025The Benny Goodman QuartetBenny Goodman Quartet23-4Tiger Rag270025The Benny Goodman QuartetBenny Goodman Quartet23-5Tiger Rag270025The Benny Goodman QuartetBenny Goodman Quartet23-6Ida, Sweet As Apple Cider270025The Benny Goodman QuartetBenny Goodman Quartet23-7Tea For Two270025The Benny Goodman QuartetBenny Goodman Quartet23-8Runnin’ Wild270025The Benny Goodman QuartetBenny Goodman Quartet23-9Avalon270025The Benny Goodman QuartetBenny Goodman Quartet23-10Handful Of Keys270025The Benny Goodman QuartetBenny Goodman Quartet23-11The Man I Love270025The Benny Goodman QuartetBenny Goodman Quartet23-12Smiles270025The Benny Goodman QuartetBenny Goodman Quartet23-13Liza270025The Benny Goodman QuartetBenny Goodman Quartet23-14Where Or When311733Benny Goodman Trio23-15Silhouetted In The Moonlight311733Benny Goodman Trio23-16Vieni, Vieni270025The Benny Goodman QuartetBenny Goodman Quartet23-17I’m A Ding Dong Daddy (From Dumas)270025The Benny Goodman QuartetBenny Goodman Quartet23-18I’m A Ding Dong Daddy (From Dumas)270025The Benny Goodman QuartetBenny Goodman Quartet23-19Bei Mir Bist Du Schoen, Part 1270025The Benny Goodman QuartetBenny Goodman Quartet23-20Bei Mir Bist Du Schoen, Part 2270025The Benny Goodman QuartetBenny Goodman QuartetBenny Goodman Groups (1938-41)24-1Sweet Lorraine311733Benny Goodman Trio24-2The Blues In Your Flat270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-3The Blues In My Flat270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-4Sugar270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-5Dizzy Spells270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-6Opus?270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-7I Must Have That Man270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-8Sweet Georgia Brown270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-9‘S Wonderful270025The Benny Goodman QuartetBenny Goodman Trio/Quartet24-10Pick-A-Rib - Part 1314166The Benny Goodman QuintetBenny Goodman Quintet24-11Pick-A-Rib - Part 2314166The Benny Goodman QuintetBenny Goodman Quintet24-12I Cried For You314166The Benny Goodman QuintetBenny Goodman Quintet24-13I Know That You Know311733Benny Goodman Trio24-14Opus 3/4270025The Benny Goodman QuartetBenny Goodman Quartet24-15Opus 3/4270025The Benny Goodman QuartetBenny Goodman Quartet24-16If I Had You311730Benny Goodman Sextet24-17Limehouse Blues311730Benny Goodman Sextet24-18Blues In The Night311730Benny Goodman Sextet24-19Where Or When311730Benny Goodman Sextet24-20On The Sunny Side Of The Street311730Benny Goodman SextetLionel Hampton Groups 193725-1My Last Affair317907Lionel Hampton And His Orchestra25-2My Last Affair (take -2)317907Lionel Hampton And His Orchestra25-3Jivin' The Vibres317907Lionel Hampton And His Orchestra25-4The Mood That I'm In317907Lionel Hampton And His Orchestra25-5Stomp317907Lionel Hampton And His Orchestra25-6Buzzin’ Around With The Bee317907Lionel Hampton And His Orchestra25-7Whoa Babe317907Lionel Hampton And His Orchestra25-8Stompology317907Lionel Hampton And His Orchestra25-9On The Sunny Side Of The Street317907Lionel Hampton And His Orchestra25-10Rhythm, Rhythm (I Got Rhythm)317907Lionel Hampton And His Orchestra25-11China Stomp (Chinatown)317907Lionel Hampton And His Orchestra25-12I Know That You Know317907Lionel Hampton And His Orchestra25-13Confessin’317907Lionel Hampton And His Orchestra25-14Drum Stomp (Crazy Rhythm)317907Lionel Hampton And His Orchestra25-15Piano Stomp (Shine)317907Lionel Hampton And His Orchestra25-16I Surrender, Dear317907Lionel Hampton And His Orchestra25-17The Object Of My Affection (take -1)317907Lionel Hampton And His Orchestra25-18The Object Of My Affection317907Lionel Hampton And His Orchestra25-19Judy317907Lionel Hampton And His Orchestra25-20Baby, Won’t You Please Come Home317907Lionel Hampton And His Orchestra25-21Everybody Loves My Baby317907Lionel Hampton And His Orchestra25-22After You’ve Gone317907Lionel Hampton And His Orchestra25-23I Just Couldn’t Take It, Baby317907Lionel Hampton And His OrchestraLionel Hampton Groups 1938-3926-1You’re My Ideal317907Lionel Hampton And His Orchestra26-2The Sun Will Shine Tonight317907Lionel Hampton And His Orchestra26-3Ring Dem Bells317907Lionel Hampton And His Orchestra26-4Don’t Be That Way317907Lionel Hampton And His Orchestra26-5I'm In The Mood For Swing317907Lionel Hampton And His Orchestra26-6Shoe Shiner's Drag317907Lionel Hampton And His Orchestra26-7Any Time At All317907Lionel Hampton And His Orchestra26-8Muskrat Ramble317907Lionel Hampton And His Orchestra26-9Down Home Jump317907Lionel Hampton And His Orchestra26-10Rock Hill Special317907Lionel Hampton And His Orchestra26-11Fiddle Diddle317907Lionel Hampton And His Orchestra26-12I Can Give You Love317907Lionel Hampton And His Orchestra26-13High Society317907Lionel Hampton And His Orchestra26-14It Don’t Mean A Thing317907Lionel Hampton And His Orchestra26-15Johnny Get Your Horn And Blow It317907Lionel Hampton And His Orchestra26-16Sweethearts On Parade317907Lionel Hampton And His Orchestra26-17Shufflin' At The Hollywood317907Lionel Hampton And His Orchestra26-18Shufflin' At The Hollywood317907Lionel Hampton And His Orchestra26-19Denison Swing317907Lionel Hampton And His Orchestra26-20Wizzin' The Wizz317907Lionel Hampton And His OrchestraLionel Hampton Groups 193927-1If It’s Good (Then I Want It)317907Lionel Hampton And His Orchestra27-2Stand By! For Further Announcements317907Lionel Hampton And His Orchestra27-3Ain’t Cha Comin’ Home?317907Lionel Hampton And His Orchestra27-4Big-Wig In The Wigwam317907Lionel Hampton And His Orchestra27-5Memories Of You317907Lionel Hampton And His Orchestra27-6The Jumpin’ Jive317907Lionel Hampton And His Orchestra27-712th Street Rag317907Lionel Hampton And His Orchestra27-8When Lights Are Low317907Lionel Hampton And His Orchestra27-9When Lights Are Low317907Lionel Hampton And His Orchestra27-10One Sweet Letter From You317907Lionel Hampton And His Orchestra27-11Hot Mallets317907Lionel Hampton And His Orchestra27-12Early Session Hop317907Lionel Hampton And His Orchestra27-13I’m On My Way From You317907Lionel Hampton And His Orchestra27-14Haven’t Named It Yet317907Lionel Hampton And His Orchestra27-15The Heebie Jeebies Are Rockin’ The Town317907Lionel Hampton And His Orchestra27-16The Heebie Jeebies Are Rockin’ The Town317907Lionel Hampton And His Orchestra27-17The Munson Street Breakdown317907Lionel Hampton And His Orchestra27-18I've Found A New Baby317907Lionel Hampton And His Orchestra27-19I Can't Get Started317907Lionel Hampton And His Orchestra27-20Four Or Five Times317907Lionel Hampton And His Orchestra27-21Gin For Christmas317907Lionel Hampton And His OrchestraLionel Hampton Groups 1939-4028-1Dinah317907Lionel Hampton And His Orchestra28-2Dinah317907Lionel Hampton And His Orchestra28-3My Buddy317907Lionel Hampton And His Orchestra28-4Singin' The Blues317907Lionel Hampton And His Orchestra28-5Shades Of Jade317907Lionel Hampton And His Orchestra28-6Till Tom Special317907Lionel Hampton And His Orchestra28-7Flying Home317907Lionel Hampton And His Orchestra28-8Save It, Pretty Mama317907Lionel Hampton And His Orchestra28-9Tempo And Swing317907Lionel Hampton And His Orchestra28-10House Of Morgan317907Lionel Hampton And His Orchestra28-11I’d Be Lost Without You317907Lionel Hampton And His Orchestra28-12Central Avenue Breakdown317907Lionel Hampton And His Orchestra28-13Jack The Bellboy317907Lionel Hampton And His Orchestra28-14Dough-Ra-Me317907Lionel Hampton And His Orchestra28-15Jivin’ With Jarvis317907Lionel Hampton And His Orchestra28-16Blue (Because Of You)317907Lionel Hampton And His Orchestra28-17I Don’t Stand A Ghost Of A Chance317907Lionel Hampton And His Orchestra28-18Tempo And Swing376540Lionel Hampton And His QuartetLionel Hampton Quartet28-19Flying Home376540Lionel Hampton And His QuartetLionel Hampton QuartetLionel Hampton Groups (1940-42)29-1Just For Laffs317907Lionel Hampton And His Orchestra29-2Martin On Every Block317907Lionel Hampton And His Orchestra29-3Pig Foot Sonata317907Lionel Hampton And His Orchestra29-4Charlie Was A Sailor317907Lionel Hampton And His Orchestra29-5Lost Love877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-6I Nearly Lost My Mind877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-7Altitude877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-8Fiddle-Dee-Dee877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-9Bogo Jo877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-10Open House877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-11Smart Alec877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-12Bouncing At The Beacon877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-13Give Me Some Skin877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-14Now That You’re Mine877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-15Chasin‘ With Chase877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-16Three-Quarter Boogie877506Lionel Hampton And His SextetLionel Hampton And His Sextette29-17Royal Family877506Lionel Hampton And His SextetLionel Hampton Sextet29-18I Can’t Believe That You’re In Love With Me877506Lionel Hampton And His SextetLionel Hampton Sextet29-19Blues In The News877506Lionel Hampton And His SextetLionel Hampton Sextet29-20Exactly Like You877506Lionel Hampton And His SextetLionel Hampton SextetColeman Hawkins 1933-3530-1The Day You Came Along373805Coleman Hawkins And His Orchestra30-2Jamaica Shout373805Coleman Hawkins And His Orchestra30-3Heart-Break Blues373805Coleman Hawkins And His Orchestra30-4It Sends Me251769Coleman Hawkins30-5I Ain’t Got Nobody251769Coleman Hawkins30-6On The Sunny Side Of The Street251769Coleman Hawkins30-7Lullaby251769Coleman Hawkins30-8Lady Be Good251769Coleman Hawkins30-9Lost In A Fog251769Coleman Hawkins30-10Honeysuckle Rose251769Coleman Hawkins30-11Some Of These Days251769Coleman HawkinsAcc. By374750The Ramblers30-12After You’ve Gone251769Coleman HawkinsAcc. By374750The Ramblers30-13I Only Have Eyes For Your251769Coleman HawkinsAcc. By374750The Ramblers30-14I Wish I Were Twins251769Coleman HawkinsAcc. By374750The Ramblers30-15Hands Across The Table251769Coleman HawkinsAcc. By374750The Ramblers30-16Blue Moon251769Coleman Hawkins30-17Avalon251769Coleman Hawkins30-18What A Difference A Day Made251769Coleman Hawkins30-19Stardust251769Coleman Hawkins30-20Chicago251769Coleman HawkinsAcc. By374750The Ramblers30-21Meditation251769Coleman HawkinsAcc. By374750The Ramblers30-22What Harlem Means To Me251769Coleman HawkinsAcc. By374750The Ramblers30-23Netcha’s Dream251769Coleman HawkinsAcc. By374750The RamblersColeman Hawkins 1936-3831-1Love Cries251769Coleman HawkinsAcc. By1815855The Berry'sThe Berries31-2Sorrow251769Coleman HawkinsAcc. By1815855The Berry'sThe Berries31-3Tiger Rag251769Coleman HawkinsAcc. By1815855The Berry'sThe Berries31-4It May Not Be True251769Coleman HawkinsAcc. By1815855The Berry'sThe Berries31-5I Wanna Go Back To Harlem251786Coleman Hawkins QuartetColeman Hawkins And His QuartetAcc. By374750The Ramblers31-6Consolation251786Coleman Hawkins QuartetColeman Hawkins And His QuartetAcc. By374750The Ramblers31-7A Strange Fact251786Coleman Hawkins QuartetColeman Hawkins And His QuartetAcc. By374750The Ramblers31-8Original Dixieland One Step251786Coleman Hawkins QuartetColeman Hawkins And His QuartetAcc. By374750The Ramblers31-9Smiles251786Coleman Hawkins QuartetColeman Hawkins And His QuartetAcc. By374750The Ramblers31-10Something Is Gonna Give Me Away251786Coleman Hawkins QuartetColeman Hawkins And His QuartetAcc. By374750The Ramblers31-11Honeysuckle Rose599576Coleman Hawkins And His All Star Jam Band31-12Crazy Rhythm599576Coleman Hawkins And His All Star Jam Band31-13Out Of Nowhere599576Coleman Hawkins And His All Star Jam Band31-14Sweet Georgia Brown599576Coleman Hawkins And His All Star Jam Band31-15Lamentation251769Coleman Hawkins31-16Devotion251769Coleman Hawkins31-17Star Dust251769Coleman Hawkins31-18Well, All Right Then251769Coleman Hawkins31-19Blues Evermore1494517The Coleman Hawkins TrioColeman Hawkins Trio31-20Dear Old Southland1494517The Coleman Hawkins TrioColeman Hawkins Trio31-21Way Down Yonder In New Orleans1494517The Coleman Hawkins TrioColeman Hawkins Trio31-22I Know That You Know1494517The Coleman Hawkins TrioColeman Hawkins Trio31-23When Buddha Smiles1494517The Coleman Hawkins TrioColeman Hawkins Trio31.24Swinging In The Groove1494517The Coleman Hawkins TrioColeman Hawkins TrioColeman Hawkins 1939-4332-1Meet Doctor Foo373805Coleman Hawkins And His Orchestra32-2Fine Dinner373805Coleman Hawkins And His Orchestra32-3She’s Funny That Way373805Coleman Hawkins And His Orchestra32-4Body And Soul373805Coleman Hawkins And His Orchestra32-5When Day Is Done1014176Coleman Hawkins' All Star OctetColeman Hawkins All-Star Octet32-6The Sheik Of Araby1014176Coleman Hawkins' All Star OctetColeman Hawkins All-Star Octet32-7My Blue Heaven1014176Coleman Hawkins' All Star OctetColeman Hawkins All-Star Octet32-8Bouncing With Bean1014176Coleman Hawkins' All Star OctetColeman Hawkins All-Star Octet32-9Smack317901The Chocolate Dandies32-10I Surrender Dear317901The Chocolate Dandies32-11I Can't Believe That You're In Love With Me317901The Chocolate Dandies32-12Dedication317901The Chocolate Dandies32-13Passin’ It Around373805Coleman Hawkins And His Orchestra32-14Serenade To A Sleeping Beauty373805Coleman Hawkins And His Orchestra32-15Rocky Comfort373805Coleman Hawkins And His Orchestra32-16Forgive A Fool373805Coleman Hawkins And His Orchestra32-17Esquire Bounce446668Leonard Feather All StarsLeonard Feather’s All Stars32-18Boff Boff446668Leonard Feather All StarsLeonard Feather’s All Stars32-19My Ideal446668Leonard Feather All StarsLeonard Feather’s All Stars32-20Esquire Blues446668Leonard Feather All StarsLeonard Feather’s All StarsColeman Hawkins 1943-4433-1Voodte373805Coleman Hawkins And His Orchestra33-2How Deep Is The Ocean373805Coleman Hawkins And His Orchestra33-3Hawkins Barrel House373805Coleman Hawkins And His Orchestra33-4Stumpy373805Coleman Hawkins And His Orchestra33-5Lover Come Back To Me368205Coleman Hawkins Quintet33-6Blues Changes368205Coleman Hawkins Quintet33-7Crazy Rhythm446656Coleman Hawkins Swing FourColeman Hawkins‘ Swing Four33-8Get Happy446656Coleman Hawkins Swing FourColeman Hawkins‘ Swing Four33-9The Man I Love446656Coleman Hawkins Swing FourColeman Hawkins‘ Swing Four33-10Sweet Lorraine446656Coleman Hawkins Swing FourColeman Hawkins‘ Swing Four33-11I Only Have Eyes For You368205Coleman Hawkins Quintet33-12‘S Wonderful368205Coleman Hawkins Quintet33-13I’m In The Mood For Love368205Coleman Hawkins Quintet33-14‘Bean’ At The Met368205Coleman Hawkins Quintet33-15Flame Thrower251786Coleman Hawkins Quartet33-16Imagination251786Coleman Hawkins Quartet33-17Night And Day251786Coleman Hawkins Quartet33-18Cattin‘ At Keynote251786Coleman Hawkins Quartet33-19Pick Up Boys2944097Auld-Hawkins-Webster Saxtet33-20Porgy2944097Auld-Hawkins-Webster Saxtet33-21Uptown Lullaby2944097Auld-Hawkins-Webster Saxtet33-22Salt Peanuts2944097Auld-Hawkins-Webster SaxtetColeman Hawkins 194434-1On The Sunny Side Of The Street1468087Coleman Hawkins And His Sax Ensemble34-2Three Little Words1468087Coleman Hawkins And His Sax Ensemble34-3Battle Of The Saxes1468087Coleman Hawkins And His Sax Ensemble34-4Louise1468087Coleman Hawkins And His Sax Ensemble34-5Make Believe693038Coleman Hawkins' All American Four34-6Don’t Blame Me693038Coleman Hawkins' All American Four34-7Just One Of Those Things693038Coleman Hawkins' All American Four34-8Hallelujah693038Coleman Hawkins' All American Four34-9All The Things You Are1687177Coleman Hawkins Septet34-10Step On It1687177Coleman Hawkins Septet34-11Riding On 52nd Street1687177Coleman Hawkins Septet34-12Memories Of You1687177Coleman Hawkins Septet34-13In The Hush Of The Night368205Coleman Hawkins Quintet34-14Out To Lunch368205Coleman Hawkins Quintet34-15Every Man For Himself368205Coleman Hawkins Quintet34-16Look Out Jack!368205Coleman Hawkins Quintet34-17I’m Yours368205Coleman Hawkins Quintet34-18Under A Blanket Of Blue368205Coleman Hawkins Quintet34-19Beyond The Blue Horizon368205Coleman Hawkins Quintet34-20A Shanty In Old Shanty Town368205Coleman Hawkins QuintetColeman Hawkins 1944-4535-1My Man368206Charlie Shavers' All American Five35-2El Salon De Gutbucket368206Charlie Shavers' All American Five35-3Embraceable You368206Charlie Shavers' All American Five35-4Undecided368206Charlie Shavers' All American Five35-5Recollections251786Coleman Hawkins Quartet35-6Drifting On A Reed251786Coleman Hawkins Quartet35-7Flyin' Hawk251786Coleman Hawkins Quartet35-8On The Bean251786Coleman Hawkins Quartet35-9Sportman's Hop373805Coleman Hawkins And His Orchestra35-10Bean Stalking373805Coleman Hawkins And His Orchestra35-11Ready For Love373805Coleman Hawkins And His Orchestra35-12Ladies Lullaby373805Coleman Hawkins And His Orchestra35-13The Night Ramble373805Coleman Hawkins And His Orchestra35-14Leave My Heart Alone373805Coleman Hawkins And His Orchestra35-15Hawk's Variations, Part 1251769Coleman Hawkins35-16Hawk's Variations, Part 2251769Coleman Hawkins35-17April In Paris373805Coleman Hawkins And His Orchestra35-18Rifftide373805Coleman Hawkins And His Orchestra35-19Stardust373805Coleman Hawkins And His Orchestra35-20Stuffy373805Coleman Hawkins And His Orchestra35-21Hollywood Stampede373805Coleman Hawkins And His Orchestra35-22I'm Through With Love373805Coleman Hawkins And His Orchestra35-23What Is There To Say373805Coleman Hawkins And His Orchestra35-24Wrap Your Troubles In Dreams373805Coleman Hawkins And His OrchestraColeman Hawkins 1949-5436-1It's Only A Papermoon373805Coleman Hawkins And His Orchestra36-2Sih-Sah373805Coleman Hawkins And His Orchestra36-3Bean's Talking Again373805Coleman Hawkins And His Orchestra36-4Bah-U-Bah373805Coleman Hawkins And His Orchestra36-5I Surrender Dear373805Coleman Hawkins And His Orchestra36-6Sophisticated Lady373805Coleman Hawkins And His Orchestra36-7Get Happy1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-8Lullaby Of Birdland1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-9Out Of Nowhere1514279Coleman Hawkins All Stars36-10Blue Lou1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-11Stompin' At The Savoy1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-12Just You, Just Me1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-13If I Had You1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-14Ain't Misbehavin'1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-15Cheek To Cheek1514279Coleman Hawkins All StarsColeman Hawkins And His All-Stars36-16Honeysuckle Rose1514279Coleman Hawkins All StarsColeman Hawkins And His OrchestraColeman Hawkins and Roy Eldridge37-1Bean Stalkin'251769Coleman Hawkins-258459Roy Eldridge37-2Tea For Two251769Coleman Hawkins-258459Roy Eldridge37-3The Walker251769Coleman Hawkins-258459Roy Eldridge37-4The Nearness Of You251769Coleman Hawkins-258459Roy Eldridge37-5Time On My Hands251769Coleman Hawkins-258459Roy Eldridge37-6Blue Moon251769Coleman Hawkins-258459Roy Eldridge37-7Kerry251769Coleman Hawkins-258459Roy Eldridge37-8Cocktails For Two251769Coleman Hawkins-258459Roy Eldridge37-9Sunday251769Coleman HawkinsColeman Hawkins And His Confreres37-10Hanid251769Coleman HawkinsColeman Hawkins And His Confreres37-11Honey Flower251769Coleman HawkinsColeman Hawkins And His Confreres37-12Nabob251769Coleman HawkinsColeman Hawkins And His ConfreresJohn Kirby And His Orchestra 1938-3938-1Rehearsin' For A Nervous Breakdown374830John Kirby And His Onyx Club Boys38-2From A Flat To C374830John Kirby And His Onyx Club Boys38-3Pastel Blue (Blue Dilemma)374830John Kirby And His Onyx Club Boys38-4Undecided374830John Kirby And His Onyx Club Boys38-5By The Waters Of The Minnetonka374830John Kirby And His Onyx Club Boys38-6It Feels Good265640John Kirby And His Orchestra38-7Effervescent Blues265640John Kirby And His Orchestra38-8The Turf265640John Kirby And His Orchestra38-9Dawn On The Desert265640John Kirby And His Orchestra38-10Anitra's Dance265640John Kirby And His Orchestra38.11Sweet Georgia Brown265640John Kirby And His Orchestra38-12Drink To Me With Thine Eyes265640John Kirby And His Orchestra38-13Minute Waltz265640John Kirby And His Orchestra38-14Front And Center265640John Kirby And His Orchestra38-15Royal Garden Blues265640John Kirby And His Orchestra38-16Opus 5265640John Kirby And His Orchestra38-17Impromptu265640John Kirby And His Orchestra38-18Blues Skies265640John Kirby And His Orchestra38-19Rose Room265640John Kirby And His Orchestra38-20I May Be Wrong (But I Think You're Wonderful)265640John Kirby And His Orchestra38-21Little Brown Jug265640John Kirby And His Orchestra38-22Nocturne265640John Kirby And His Orchestra38-23One Alone265640John Kirby And His Orchestra38-24Humoresque265640John Kirby And His Orchestra38-25Serenade265640John Kirby And His OrchestraJohn Kirby And His Orchestra 1940-4139-1Jumpin' In The Pump Room265640John Kirby And His Orchestra39-2Milumbu265640John Kirby And His Orchestra39-3Go Your Way265640John Kirby And His Orchestra39-420th Century Closet265640John Kirby And His Orchestra39-5Temptation265640John Kirby And His Orchestra39-6Blues Petite265640John Kirby And His Orchestra39-7On A Little Street In Singapore265640John Kirby And His Orchestra39-8Chloe265640John Kirby And His Orchestra39-9Andiology265640John Kirby And His Orchestra39-10Can't We Be Friends?265640John Kirby And His Orchestra39-11Then I'll Be Happy265640John Kirby And His Orchestra39-12I Love You Truly265640John Kirby And His Orchestra39-13Frasquita Serenade265640John Kirby And His Orchestra39-14Sextet From 'Lucia'265640John Kirby And His Orchestra39-15Coquette265640John Kirby And His Orchestra39-16Zooming At The Zombie265640John Kirby And His Orchestra39-17Bounce Of The Sugar Plum Fairy265640John Kirby And His Orchestra39-18Beethoven Riffs On265640John Kirby And His Orchestra39-19Double Talk265640John Kirby And His Orchestra39-20Cuttin' The Campus265640John Kirby And His OrchestraJohn Kirby And His Orchestra 1941-4340-1Coquette265640John Kirby And His Orchestra40-2Royal Garden Blues265640John Kirby And His Orchestra40-3Close Shave265640John Kirby And His Orchestra40-4Bugler's Dilemma265640John Kirby And His Orchestra40-5It's Only A Paper Moon265640John Kirby And His Orchestra40-6Fifi's Rhapsody265640John Kirby And His Orchestra40-7Night Whispers265640John Kirby And His Orchestra40-8Tweed Me265640John Kirby And His Orchestra40-9Move Over265640John Kirby And His Orchestra40-10Wondering Where265640John Kirby And His Orchestra40-11Schubert's Serenade265640John Kirby And His Orchestra40-12Toselli's Serenade265640John Kirby And His Orchestra40-13Keep Smilin'265640John Kirby And His Orchestra40-14Comin' Back265640John Kirby And His Orchestra40-15No Blues At All265640John Kirby And His Orchestra40-16St. Louis Blues265640John Kirby And His Orchestra40-17Do You Savvy265640John Kirby And His Orchestra40-18Tunisian Trail265640John Kirby And His Orchestra40-199:20 Special265640John Kirby And His Orchestra40-20Crossroads265640John Kirby And His Orchestra40-21Can't We Be Friends?265640John Kirby And His OrchestraMetronome/Esquire All-Stars 1939-4641-1Blue Lou311056Metronome All StarsAll-Star Band41-2The Blues311056Metronome All StarsAll-Star Band41-3King Porter Stomp311056Metronome All StarsMetronome All Star Band41-4All Star Strut311056Metronome All StarsMetronome All-Star Nine41-5Bugle Call Rag311056Metronome All StarsMetronome All Star Band41-6One O'Clock Jump311056Metronome All StarsMetronome All Star Band41-7Royal Flush311056Metronome All StarsMetronome All Star Band41-8Royal Flush311056Metronome All StarsMetronome All Star Band41-9Dear Old Southland311056Metronome All StarsMetronome All Star Band41-10I Got Rhythm311056Metronome All StarsMetronome All-Star Leaders41-11I Got Rhythm311056Metronome All StarsMetronome All-Star Leaders41-12Long Long Journey3576979Esquire All American Award WinnersEsquire All-American Award Winners41-13Snafu3576979Esquire All American Award WinnersEsquire All-American Award Winners41-14The One That Got Away3576979Esquire All American Award WinnersEsquire All-American Award Winners41-15Gone With The Wind3576979Esquire All American Award WinnersEsquire All-American Award Winners41-16Look Out311056Metronome All StarsMetronome All-Star Band41-17Metronome All Out311056Metronome All StarsMetronome All-Star Band41-18Indiana Winter3576979Esquire All American Award WinnersEsquire All-American Award Winners41-19Indian Summer3576979Esquire All American Award WinnersEsquire All-American Award Winners41-20Blow Me Down3576979Esquire All American Award WinnersEsquire All-American Award Winners41-21Buckin' The Blues3576979Esquire All American Award WinnersEsquire All-American Award WinnersMilton "Mezz" Mezzrow 1936-3842-1Free Love373809Mezz Mezzrow And His Orchestra42-2Dissonance373809Mezz Mezzrow And His Orchestra42-3Swinging With Mezz373809Mezz Mezzrow And His Orchestra42-4Love, You're Not The One For Me373809Mezz Mezzrow And His Orchestra42-5Old Fashioned Love373809Mezz Mezzrow And His Orchestra42-6Apologies373809Mezz Mezzrow And His Orchestra42-7Sendin' The Vipers373809Mezz Mezzrow And His Orchestra42-835th & Calumet373809Mezz Mezzrow And His Orchestra42-9A Melody From The Sky373809Mezz Mezzrow And His Orchestra42-10Lost373809Mezz Mezzrow And His Orchestra42-11Mutiny In The Parlor373809Mezz Mezzrow And His Orchestra42-12The Panic Is On373809Mezz Mezzrow And His Orchestra42-13I'se A Muggin' Pt. 1373809Mezz Mezzrow And His Orchestra42-14I'se A Muggin' Pt. 2373809Mezz Mezzrow And His Orchestra42-15Blues In Disguise373809Mezz Mezzrow And His Orchestra42-16That's How I Feel Today373809Mezz Mezzrow And His Orchestra42-17Hot Club Stomp373809Mezz Mezzrow And His Orchestra42-18The Swing Session's Called To Order373809Mezz Mezzrow And His Orchestra42-19Revolutionary Blues373809Mezz Mezzrow And His Orchestra42-20Comin' On With The Come On – Part 1373809Mezz Mezzrow And His Orchestra42-21Comin' On With The Come On – Part 2373809Mezz Mezzrow And His Orchestra42-22Swingin' For Mezz (Careless Love)373809Mezz Mezzrow And His OrchestraFrankie Newton 1937-3943-1You Showed Me The Way557960Frankie Newton And His Uptown Serenaders43-2Please Don't Talk About Me When I'm Gone557960Frankie Newton And His Uptown Serenaders43-3Who's Sorry Now?557960Frankie Newton And His Uptown Serenaders43-4I Found A New Baby557960Frankie Newton And His Uptown Serenaders43-5The Brittwood Stomp557960Frankie Newton And His Uptown Serenaders43-6There's No Two Ways About It557960Frankie Newton And His Uptown Serenaders43-7Cause My Baby Says It's So557960Frankie Newton And His Uptown Serenaders43-8Easy Living446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-.9The Onyx Hop446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-10Where Or When446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-11Rosetta446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-12Minor Jive446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-13The World Is Waiting For The Sunrise446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-14Who?446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-15The Blues My Baby Gave To Me446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-16Rompin'446667Frank Newton And His OrchestraFrankie Newton And His Orchestra43-17Tab's Blues2640770Frankie Newton & His Cafe Society OrchestraFrank Newton And His Café Society Orchestra43-18Jitters2640770Frankie Newton & His Cafe Society OrchestraFrank Newton And His Café Society Orchestra43-19Frankie's Jump2640770Frankie Newton & His Cafe Society OrchestraFrank Newton And His Café Society Orchestra43-20Jam Fever2640770Frankie Newton & His Cafe Society OrchestraFrank Newton And His Café Society Orchestra43-21Vamp2640770Frankie Newton & His Cafe Society OrchestraFrank Newton And His Café Society Orchestra43-22Parallel Fifths2640770Frankie Newton & His Cafe Society OrchestraFrank Newton And His Café Society OrchestraOscar Peterson (1945-47)44-1I Got Rhythm255646The Oscar Peterson TrioOscar Peterson Trio44-2Louise255646The Oscar Peterson TrioOscar Peterson Trio44-3My Blue Heaven255646The Oscar Peterson TrioOscar Peterson Trio44-4The Sheik Of Araby255646The Oscar Peterson TrioOscar Peterson Trio44-5Flying Home255646The Oscar Peterson TrioOscar Peterson Trio44-6C Jam Blues255646The Oscar Peterson TrioOscar Peterson Trio44-7(If I Could Be With You) One Hour Tonight255646The Oscar Peterson TrioOscar Peterson Trio44-8Humoresque255646The Oscar Peterson TrioOscar Peterson Trio44-9Blue Moon255646The Oscar Peterson TrioOscar Peterson Trio44-10In A Little Spanish Town255646The Oscar Peterson TrioOscar Peterson Trio44-11Time On My Hands255646The Oscar Peterson TrioOscar Peterson Trio44-12China Boy255646The Oscar Peterson TrioOscar Peterson Trio44-13Runnin' Wild255646The Oscar Peterson TrioOscar Peterson Trio44-14Sweet Lorraine255646The Oscar Peterson TrioOscar Peterson Trio44-15Honeydripper255646The Oscar Peterson TrioOscar Peterson Trio44-16East Of The Sun (And West Of The Moon)255646The Oscar Peterson TrioOscar Peterson Trio44-17Back Home Again In Indiana255646The Oscar Peterson TrioOscar Peterson Trio44-18Margie255646The Oscar Peterson TrioOscar Peterson Trio44-19I Surrender Dear255646The Oscar Peterson TrioOscar Peterson Trio44-20Ghost Of A Chance255646The Oscar Peterson TrioOscar Peterson TrioOscar Peterson (1947-50)45-1Oscar's Boogie255646The Oscar Peterson TrioOscar Peterson Trio45-2Smiles255646The Oscar Peterson TrioOscar Peterson Trio45-3Stairway To The Stars255646The Oscar Peterson TrioOscar Peterson Trio45-4Poor Butterfly255646The Oscar Peterson TrioOscar Peterson Trio45-5Oop Bop Sh-Bam349801The Oscar Peterson QuartetOscar Peterson Quartet45-6Sweet Georgia Brown349801The Oscar Peterson QuartetOscar Peterson Quartet45-7Sleepy Time Gal349801The Oscar Peterson QuartetOscar Peterson Quartet45-8Rockin' In Rhythm349801The Oscar Peterson QuartetOscar Peterson Quartet45-9Fine And Dandy255646The Oscar Peterson TrioOscar Peterson Trio45-10My Heart Stood Still255646The Oscar Peterson TrioOscar Peterson Trio45-11Somebody Loves Me255646The Oscar Peterson TrioOscar Peterson Trio45-12At Sundown255646The Oscar Peterson TrioOscar Peterson Trio45-13Jumpin' With Symphony Sid254394Oscar Peterson45-14Robbins Nest254394Oscar Peterson45-15Tico Tico254394Oscar Peterson45-16Get Happy254394Oscar Peterson45-17Smoke Gets In Your Eyes254394Oscar Peterson45-18Exactly Like You254394Oscar Peterson45-19Deep Purple254394Oscar Peterson45-20I'll Remember April254394Oscar Peterson45-21Easy To Love254394Oscar Peterson45-22Taking A Chance On Love254394Oscar Peterson45-23Squatty Roo254394Oscar Peterson45-24After All254394Oscar PetersonDjango Reinhardt & Le Quintette Du Hot Club De France (1936-37)46-1I'se A Muggin'355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-2I Can't Give You Anything But Love355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-3Oriental Shuffle355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-4After You've Gone355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-5Are You In The Mood355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-6Limehouse Blues355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-7Nagasaki355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-8Swing Guitars355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-9Georgia On My Mind355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-10Shine355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-11In The Still Of The Night355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-12Sweet Chorus355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-13Exactly Like You355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-14Charleston355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-15You're Driving Me Crazy355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-16Tears355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-17Solitude355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-18Hot Lips355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-19Ain't Misbehavin'355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-20Rose Room355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-21Body And Soul355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France46-22When Day Is Done355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De FranceDjango Reinhardt Vol. 2 (1937)47-1Runnin' Wild355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-2Chicago355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-3Liebestraum No. 3355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-4Miss Annabelle Lee355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-5A Little Love, A Little Kiss355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-6Mystery Pacific355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-7In A Sentimental Mood355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-8The Sheik Of Araby355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France47-9Improvisation253481Django Reinhardt47-10Parfum253481Django Reinhardt47-11Alabammy Bound267089Stéphane GrappelliStephane Grappelli47-12St. Louis Blues253481Django Reinhardt47-13Bouncin' Around253481Django Reinhardt47-14Eddie's Blues334067Eddie South47-15Sweet Georgia Brown334067Eddie South47-16Lady Be Good1202799Trio De Violons47-17Dinah334067Eddie South-267089Stéphane GrappelliStephane Grappelli47-18Daphne334067Eddie South-267089Stéphane GrappelliStephane Grappelli47-19You Took Advantage Of Me334082Michel Warlop-267089Stéphane GrappelliStephane Grappelli47-20I've Found A New Baby267089Stéphane GrappelliStephane GrappelliDjango Reinhardt Vol. 3 (1937)48-1Somebody Loves Me334067Eddie South48-2I Can't Believe That You're In Love With Me334067Eddie South48-3Interpretation Swing J.S. Bach, Part 1334067Eddie South48-4Minor Swing355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France48-5Viper's Dream355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France48-6Fiddle's Blues334067Eddie South48-7Improvisation J.S. Bach Part 2334067Eddie South48-8Swinging With Django355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France48-9Paramount Stomp355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France48-10My Serenade355185Quintette Du Hot Club De FranceLe Quintette Du Hot Club De France48-11You Rascal You253481Django Reinhardt48-12Tea For Two334082Michel Warlop48-13Christmas Swing334082Michel Warlop48-14Stephen's Blues267089Stéphane GrappelliStephane Grappelli48-15Sugar267089Stéphane GrappelliStephane Grappelli48-16Sweet Georgia Brown253481Django Reinhardt48-17Tea For Two253481Django Reinhardt48-18Blues567580Philippe Brun48-19It Had To Be You659823Philippe Brun "Jam Band"Philippe Brun 'Jam' Band48-20Sweet Sue334082Michel WarlopWillie “The Lion” Smith 1934-3749-1Ida, Sweet As Apple Cider1441552Alabama Jug Band49-2My Gal Sal1441552Alabama Jug Band49-3Gulf Coast Blues1441552Alabama Jug Band49-4I Wish I Could Shimmy Like My Sister Kate1441552Alabama Jug Band49-5Jazz It Blues1441552Alabama Jug Band49-6Somebody Stole My Gal1441552Alabama Jug Band49-7Crazy Blues1441552Alabama Jug Band49-8Sugar Blues1441552Alabama Jug Band49-9There's Gonna Be The Devil To Pay1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-10Streamline Gal1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-11What Can I Do With A Foolish Little Girl Like You1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-12What Can I Do With A Foolish Little Girl Like You1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-13Harlem Joys1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-14Echos Of Spring1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-15Echos Of Spring1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-16Breeze (Blow My Baby Back To Me)1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-17Swing, Brother, Swing1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-18Sittin' At The Table (Opposite You)1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-19The Swampland Is Calling Me1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-20More Than That1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-21I'm All Out Of Breath1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His Cubs49-22I Can See You All Over The Place1915916Willie 'The Lion' Smith And His CubsWillie Smith (The Lion) And His CubsMuggsy Spanier 1935-3950-1Baby Brown253861New Orleans Rhythm Kings50-2No Lovers Allowed253861New Orleans Rhythm Kings50-3Dust Off That Old Pianna253861New Orleans Rhythm Kings50-4Dust Off That Old Pianna253861New Orleans Rhythm Kings50-5Since We Fell Out Of Love253861New Orleans Rhythm Kings50-6Big Butter And Egg Man270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-7Someday Sweetheart270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-8Eccentric270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-9That Da Da Strain270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-10At The Jazz Band Ball270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-11I Wish I Could Shimmy Like My Sister Kate270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-12Dipper Mouth Blues270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-13Livery Stable Blues (Barnyard Blues)270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-14Riverboat Shuffle270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-15Relaxin' At The Touro270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-16At Sundown270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-17Bluin' The Blues270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-18Lonesome Road270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-19Dinah270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-20(What Did I Do To Be So) Black And Blue270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime Band50-21Mandy, Make Up Your Mind270029Muggsy Spanier's Ragtime BandMuggsy Spanier And His Ragtime BandRex Stewart 1936-4051-1Rexatious1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-2Lazy Man's Shuffle1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-3The Back Room Romp1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-4Love's In My Heart (Swing, Baby, Swing)1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-5Sugar Hill Shim Sham1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-6Tea And Trumpets1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-7San Juan Hill1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-8I'll Come Back For More1131247Rex Stewart And His 52nd Street StompersRex Stewart And His Fifty-Second Street Stompers51-9Cherry2902420Rex Stewart's Big Seven51-10Solid Rock2902420Rex Stewart's Big Seven51-11Bugle Call Rag2902420Rex Stewart's Big Seven51-12Diga Diga Doo2902420Rex Stewart's Big Seven51-13Without A Song374632Rex Stewart And His Orchestra51-14Without A Song374632Rex Stewart And His Orchestra51-15My Sunday Gal374632Rex Stewart And His Orchestra51-16Mobile Bay374632Rex Stewart And His Orchestra51-17Mobile Bay374632Rex Stewart And His Orchestra51-18Linger Awhile374632Rex Stewart And His Orchestra51-19Linger Awhile374632Rex Stewart And His OrchestraArt Tatum 1933-3752-1Tea For Two265634Art Tatum52-2St. Louis Blues265634Art Tatum52-3Tiger Rag265634Art Tatum52-4Sophisticated Lady265634Art Tatum52-5Moon Glow265634Art Tatum52-6When A Woman Loves A Man265634Art Tatum52-7Emaline265634Art Tatum52-8Love Me265634Art Tatum52-9Cocktails For Two265634Art Tatum52-10After You've Gone265634Art Tatum52-11Ill Wind265634Art Tatum52-12The Shout265634Art Tatum52-13Liza265634Art Tatum52-14(I Would Do) Anything For You265634Art Tatum52-15When A Woman Loves A Man265634Art Tatum52-16After You've Gone265634Art Tatum52-17Star Dust265634Art Tatum52-18I Ain't Got Nobody265634Art Tatum52-19Beautiful Love265634Art Tatum52-20Liza265634Art Tatum52-21Body And Soul374506Art Tatum And His Swingsters52-22With Plenty Of Money And You374506Art Tatum And His Swingsters52-23What Will I Tell My Heart?374506Art Tatum And His Swingsters52-24I've Got My Love To Keep Me Warm374506Art Tatum And His SwingstersArt Tatum 1937-4153-1Gone With The Wind265634Art Tatum53-2Stormy Weather265634Art Tatum53-3Chloe265634Art Tatum53-4The Sheik Of Araby265634Art Tatum53-5Tea For Two265634Art Tatum53-6Deep Purple265634Art Tatum53-7Elegie265634Art Tatum53-8Humoresque265634Art Tatum53-9Sweet Lorraine265634Art Tatum53-10Get Happy265634Art Tatum53-11Lullaby Of The Leaves265634Art Tatum53-12Tiger Rag265634Art Tatum53-13Emaline265634Art Tatum53-14Moonglow265634Art Tatum53-15Love Me Tonight265634Art Tatum53-16Cocktails For Two265634Art Tatum53-17St. Louis Blues265634Art Tatum53-18Begin The Beguine265634Art Tatum53-19Rosetta265634Art Tatum53-20Indiana265634Art Tatum53-21Wee Baby Blues374505Art Tatum And His Band53-22Stompin' At The Savoy374505Art Tatum And His Band53-23Last Goodbye Blues374505Art Tatum And His Band53-24Battery Bounce374505Art Tatum And His BandJack Teagarden 1934-3554-1Break It Down317889Frankie Trumbauer And His Orchestra54-2Juba Dance317889Frankie Trumbauer And His Orchestra54-3Fare-Thee-Well To Harlem341395Paul Whiteman And His Orchestra54-4China Boy317889Frankie Trumbauer And His Orchestra54-5Emaline317889Frankie Trumbauer And His Orchestra54-6In A Mist317889Frankie Trumbauer And His Orchestra54-7Long About Midnight317889Frankie Trumbauer And His Orchestra54-8Fare-Thee-Well To Harlem301372Jack Teagarden54-9Ol' Pappy301372Jack Teagarden54-10G" Blues341395Paul Whiteman And His Orchestra54-11Christmas Night In Harlem341395Paul Whiteman And His Orchestra54-12I Ain't Lazy, I'm Just Dreaming374400Benny Goodman And His Orchestra54-13As Long As I Live374400Benny Goodman And His Orchestra54-14Moonglow374400Benny Goodman And His Orchestra54-15Breakfast Ball374400Benny Goodman And His Orchestra54-16Junk Man301372Jack Teagarden54-17Stars Fell On Alabama301372Jack Teagarden54-18Your Guess Is Just As Good As Mine301372Jack Teagarden54-19Nobody's Sweetheart Now341395Paul Whiteman And His Orchestra54-20Ain't Misbehavin'341395Paul Whiteman And His Orchestra54-21Darktown Strutters' Ball341395Paul Whiteman And His Orchestra54-22Farewell Blues341395Paul Whiteman And His Orchestra54-23Announcer's Blues341395Paul Whiteman And His OrchestraJack Teagarden 1935-3855-1Every Now And Then335562Wingy Manone & His OrchestraWingy Mannone And His Orchestra55-2I've Got A Feeling You're Fooling335562Wingy Manone & His OrchestraWingy Mannone And His Orchestra55-3You're My Lucky Star335562Wingy Manone & His OrchestraWingy Mannone And His Orchestra55-4I've Got A Note335562Wingy Manone & His OrchestraWingy Mannone And His Orchestra55-5I've Got A Note335562Wingy Manone & His OrchestraWingy Mannone And His Orchestra55-6Flight Of A Haybag317889Frankie Trumbauer And His Orchestra55-7Breakin' In A New Pair Of Shoes317889Frankie Trumbauer And His Orchestra55-8Announcer's Blues317889Frankie Trumbauer And His Orchestra55-9I Hope Gabriel Likes My Music317889Frankie Trumbauer And His Orchestra55-10I'se A Muggin', Part 16862440The Three T's (2)55-11I'se A Muggin', Part 26862440The Three T's (2)55-12Somebody Loves Me317889Frankie Trumbauer And His Orchestra55-13The Mayor Of Alabam'317889Frankie Trumbauer And His Orchestra55-14Ain't Misbehavin'317889Frankie Trumbauer And His Orchestra55-15S Wonderful317889Frankie Trumbauer And His Orchestra55-16I'm An Old Cowhand317889Frankie Trumbauer And His Orchestra55-17Diga Diga Doo317889Frankie Trumbauer And His Orchestra55-18Embraceable You373890Eddie Condon And His Windy City Seven55-19Meet Me Tonight In Dreamland373890Eddie Condon And His Windy City Seven55-20Diane373890Eddie Condon And His Windy City Seven55-21Serenade To A Shylock373890Eddie Condon And His Windy City SevenFats Waller Piano Solos 1929-3456-1Handful Of Keys253482Fats Waller56-2Numb Fumblin'253482Fats Waller56-3Ain't Misbehavin'253482Fats Waller56-4Sweet Savannah Sue253482Fats Waller56-5I've Got A Feeling I'm Falling253482Fats Waller56-6Love Me Or Leave Me253482Fats Waller56-7Love Me Or Leave Me253482Fats Waller56-8Gladyse253482Fats Waller56-9Valentine Stomp253482Fats Waller56-10Valentine Stomp253482Fats Waller56-11Waiting At The End Of The Road253482Fats Waller56-12Baby, Oh! Where Can You Be?253482Fats Waller56-13Goin' About253482Fats Waller56-14Goin' About253482Fats Waller56-15My Feelin's Are Hurt253482Fats Waller56-16Smashin' Thirds253482Fats Waller56-17My Fate Is In Your Hand253482Fats Waller56-18Turn On The Heat253482Fats Waller56-19St Louis Blues253482Fats Waller&307413Bennie PayneBennie Paine56-20After You've Gone253482Fats Waller&307413Bennie PayneBennie Paine56-21African Ripples253482Fats Waller56-22Clothes Linen Ballet253482Fats Waller56-23Alligator Crawl253482Fats Waller56-24Viper's Drag253482Fats WallerFats Waller And His Rhythm 193457-1A Porter's Love Song To A Chambermaid314843Fats Waller & His RhythmFats Waller And His Rhythm57-2I Wish I Were Twins314843Fats Waller & His RhythmFats Waller And His Rhythm57-3Armful Of Sweetness314843Fats Waller & His RhythmFats Waller And His Rhythm57-4Do Me A Favor314843Fats Waller & His RhythmFats Waller And His Rhythm57-5Georgia May314843Fats Waller & His RhythmFats Waller And His Rhythm57-6Then I'll Be Tired Of You314843Fats Waller & His RhythmFats Waller And His Rhythm57-7Don't Let It Bother You314843Fats Waller & His RhythmFats Waller And His Rhythm57-8Have A Little Dream On Me314843Fats Waller & His RhythmFats Waller And His Rhythm57-9Serenade For A Wealthy Widow314843Fats Waller & His RhythmFats Waller And His Rhythm57-10How Can You Face Me?314843Fats Waller & His RhythmFats Waller And His Rhythm57-11Sweetie Pie314843Fats Waller & His RhythmFats Waller And His Rhythm57-12Mandy314843Fats Waller & His RhythmFats Waller And His Rhythm57-13Let's Pretend There's A Moon314843Fats Waller & His RhythmFats Waller And His Rhythm57-14You're Not The Only Oyster In The Stew314843Fats Waller & His RhythmFats Waller And His Rhythm57-15Honeysuckle Rose314843Fats Waller & His RhythmFats Waller And His Rhythm57-16Believe It, Beloved314843Fats Waller & His RhythmFats Waller And His Rhythm57-17Dream Man314843Fats Waller & His RhythmFats Waller And His Rhythm57-18I'm Growing Fonder Of You314843Fats Waller & His RhythmFats Waller And His Rhythm57-19If It Isn't Love314843Fats Waller & His RhythmFats Waller And His Rhythm57-20Breakin' The Ice314843Fats Waller & His RhythmFats Waller And His RhythmFats Waller And His Rhythm 193558-1I'm A Hundred Per Cent For You (Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-2I'm A Hundred Per Cent For You (Non Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-3Baby Brown (Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-4Baby Brown (Non Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-5Night Wind314843Fats Waller & His RhythmFats Waller And His Rhythm58-6Because Of Once Upon A Time314843Fats Waller & His RhythmFats Waller And His Rhythm58-7I Believe In Miracles314843Fats Waller & His RhythmFats Waller And His Rhythm58-8You Fit Into The Picture314843Fats Waller & His RhythmFats Waller And His Rhythm58-9Louisiana Fairy Tale314843Fats Waller & His RhythmFats Waller And His Rhythm58-10I Ain't Got Nobody (Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-11I Ain't Got Nobody (Non Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-12Whose Honey Are You? (Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-13Whose Honey Are You? (Non Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-14Rosetta (Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-15Rosetta (Non Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-16Pardon My Love314843Fats Waller & His RhythmFats Waller And His Rhythm58-17What's The Reason (Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-18What's The Reason (Non Vocal)314843Fats Waller & His RhythmFats Waller And His Rhythm58-19Cinders314843Fats Waller & His RhythmFats Waller And His Rhythm58-20(Oh Susannah) Dust Off That Old Pianna314843Fats Waller & His RhythmFats Waller And His RhythmBen Webster 1953-5459-1Cottontail2408160The Ben Webster QuintetBen Webster Quintet59-2Danny Boy (Londonderry Air)2408160The Ben Webster QuintetBen Webster Quintet59-3Bounce Blues2408160The Ben Webster QuintetBen Webster Quintet59-4That's All374633Ben Webster And His Orchestra59-5Pennies From Heaven374633Ben Webster And His Orchestra59-6Tenderly374633Ben Webster And His Orchestra59-7Jive At Six374633Ben Webster And His Orchestra59-8Don't Get Around Much Anymore374633Ben Webster And His Orchestra59-9That's All374633Ben Webster And His Orchestra59-10Love's Away374634Ben Webster Quartet59-11You're Mine You374634Ben Webster Quartet59-12My Funny Valentine374634Ben Webster Quartet59-13Sophisticated Lady374634Ben Webster Quartet59-14Love Is Here To Stay257115Ben WebsterWith 1256158Ralph Burns And His OrchestraRalph Burns' Orchestra59-15It Happens To Me257115Ben WebsterWith 1256158Ralph Burns And His OrchestraRalph Burns' Orchestra59-16All Too Soon257115Ben WebsterWith 1256158Ralph Burns And His OrchestraRalph Burns' Orchestra59-17Chelsea Bridge257115Ben WebsterWith 1256158Ralph Burns And His OrchestraRalph Burns' Orchestra59-18Almost Like Being In Love 257115Ben WebsterWith 1256158Ralph Burns And His OrchestraRalph Burns' OrchestraBen Webster and Friends 1953-5460-1Imagination258689Gene Krupa60-2Don't Take Your Love From Me258689Gene Krupa60-3Midget258689Gene Krupa60-4I'm Coming Virginia258689Gene Krupa60-5Payin' Them Dues Blues258689Gene Krupa60-6Jungle Drums258689Gene Krupa60-7Showcase258689Gene Krupa60-8Swedish Schnapps258689Gene Krupa60-9In A Mellow Tone258460Johnny Hodges60-10I Let A Song Go Out Of My Heart258460Johnny Hodges60-11Don't Get Around Much Anymore258460Johnny Hodges60-12The Kid And The Brute257114Illinois Jacquet60-13I Wrote This For The Kid257114Illinois JacquetBen Webster 1954 & 195761-1Do Nothin' Till You Hear From Me257115Ben WebsterWith1256158Ralph Burns And His OrchestraRalph Burns' Orchestra61-2Prelude To A Kiss257115Ben WebsterWith1256158Ralph Burns And His OrchestraRalph Burns' Orchestra61-3Willow Weep For Me257115Ben WebsterWith1256158Ralph Burns And His OrchestraRalph Burns' Orchestra61-4Come Rain Or Come Shine257115Ben WebsterWith1256158Ralph Burns And His OrchestraRalph Burns' Orchestra61-5Crazy Rhythm312553Bill HarrisBill Harris And Friends61-6It Might As Well Be Spring312553Bill HarrisBill Harris And Friends61-7Just One More Chance312553Bill HarrisBill Harris And Friends61-8I Surrender Dear312553Bill HarrisBill Harris And Friends61-9In A Mellow Tone312553Bill HarrisBill Harris And Friends61-10Where Are You?312553Bill HarrisBill Harris And Friends61-11I'm Getting Sentimental Over You312553Bill HarrisBill Harris And FriendsBen Webster /Buddy Rich /Benny Carter62-1Sunday4072781Buddy Rich Ensemble62-2The Monster4072781Buddy Rich Ensemble62-3Ballad Medley4072781Buddy Rich Ensemble62-4Old Fashioned Love258701Benny Carter62-5Blue Lou258701Benny Carter62-6A Walkin' Thing258701Benny Carter62-7I'm Coming Virginia258701Benny Carter62-8How Can You Lose?258701Benny CarterBen Webster Quintet/Red Norvo Sextet 195763-1Lover Come Back To Me2408160The Ben Webster QuintetBen Webster Quintet63-2Where Are You?2408160The Ben Webster QuintetBen Webster Quintet63-3Makin' Whoopee2408160The Ben Webster QuintetBen Webster Quintet63-4Ill Wind2408160The Ben Webster QuintetBen Webster Quintet63-5Late Date2408160The Ben Webster QuintetBen Webster Quintet63-6Time On My Hands2408160The Ben Webster QuintetBen Webster Quintet63-7Soulville2408160The Ben Webster QuintetBen Webster Quintet63-8Sunrise Blues1696062Red Norvo Sextet63-9Easy On The Eye1696062Red Norvo Sextet63-10The Night Is Blue1696062Red Norvo Sextet63-11Just A Mood1696062Red Norvo SextetBen Webster and Harry Edison 1956-5764-1Opus 711258469Harry Edison64-2Walkin' With Sweets258469Harry Edison64-3Love Is Here To Stay258469Harry Edison64-4How Deep Is The Ocean258469Harry Edison64-5Hollering At Watkins258469Harry Edison64-6Used To Be Basie258469Harry Edison64-7Studio Call258469Harry Edison64-8Willow Weep For Me258469Harry Edison64-9K.M. Blues258469Harry Edison64-10Blues For Piney Brown258469Harry Edison-257115Ben Webster64-11Gee Baby, Ain't I Good To You258469Harry Edison-257115Ben Webster64-12Blues For The Blues258469Harry Edison-257115Ben Webster64-13You're Getting To Be A Habit With Me258469Harry Edison-257115Ben WebsterBen Webster and Friends 195765-1Blues For Bill Basie258469Harry Edison-257115Ben Webster65-2Taste On The Place258469Harry Edison-257115Ben Webster65-3Moonlight In Vermont258469Harry Edison-257115Ben Webster65-4Blues For Yolande257115Ben Webster-251769Coleman Hawkins65-5Maria257115Ben Webster-251769Coleman Hawkins65-6It Never Entered My Mind257115Ben Webster-251769Coleman Hawkins65-7Prisoner Of Love257115Ben Webster-251769Coleman Hawkins65-8Tangerine257115Ben Webster-251769Coleman Hawkins65-9La Rosita257115Ben Webster-251769Coleman Hawkins65-10Cocktails For Two257115Ben Webster-251769Coleman Hawkins65-11Shine On, Harvest Moon257115Ben Webster-251769Coleman Hawkins65-12You'd Be So Nice To Come Home To257115Ben Webster-251769Coleman HawkinsBen Webster /Art Tatum /Barney Kessel 66-1All The Things You Are265634Art Tatum-257115Ben Webster66-2My One And Only Love265634Art Tatum-257115Ben Webster66-3My Ideal265634Art Tatum-257115Ben Webster66-4Gone With The Wind265634Art Tatum-257115Ben Webster66-5Have You Met Miss Jones?265634Art Tatum-257115Ben Webster66-6Night And Day265634Art Tatum-257115Ben Webster66-7Where Or When265634Art Tatum-257115Ben Webster66-8Tiger Rag743196Barney Kessel's All StarsBarney Kessel And His All Stars66-9Jersey Bounce743196Barney Kessel's All StarsBarney Kessel And His All StarsTeddy Wilson Piano Solos (1934-39)67-1Somebody Loves Me254769Teddy Wilson67-2Sweet And Simple254769Teddy Wilson67-3Liza (All The Clouds'll Roll Away)254769Teddy Wilson67-4Rosetta254769Teddy Wilson67-5Every Now And Then254769Teddy Wilson67-6It Never Dawned On Me254769Teddy Wilson67-7Liza (All The Clouds'll Roll Away)254769Teddy Wilson67-8Rosetta254769Teddy Wilson67-9I Found A Dream254769Teddy Wilson67-10On Treasure Island254769Teddy Wilson67-11I Feel Like A Feather In The Breeze254769Teddy Wilson67-12Breaking In A New Pair Of Shoes254769Teddy Wilson67-13Don't Blame Me254769Teddy Wilson67-14Between The Devil And The Deep Blue Sea254769Teddy Wilson67-15That Old Feeling254769Teddy Wilson67-16My Blue Heaven254769Teddy Wilson67-17Loch Lomond254769Teddy Wilson67-18Tiger Rag254769Teddy Wilson67-19I'll See You In My Dreams254769Teddy Wilson67-20Alice Blue Gown254769Teddy Wilson67-21Coquette254769Teddy Wilson67-22China Boy254769Teddy Wilson67-23Melody In F254769Teddy Wilson67-24When You And I Were Young, Maggie254769Teddy WilsonTeddy Wilson Vol. 1 (1935-36)68-1I Wished On The Moon342361Teddy Wilson And His Orchestra68-2What A Little Moonlight Can Do342361Teddy Wilson And His Orchestra68-3Miss Brown To You342361Teddy Wilson And His Orchestra68-4A Sunbonnet Blue342361Teddy Wilson And His Orchestra68-5What A Night, What A Moon, What A Girl342361Teddy Wilson And His Orchestra68-6I'm Painting The Town Red342361Teddy Wilson And His Orchestra68-7It's Too Hot For Word342361Teddy Wilson And His Orchestra68-8Christopher Columbus342361Teddy Wilson And His Orchestra68-9Liza342361Teddy Wilson And His Orchestra68-10Twenty-Four Hours A Day342361Teddy Wilson And His Orchestra68-11Yankee Doodle Never Went To Town342361Teddy Wilson And His Orchestra68-12Eeny Meeny Miney Mo342361Teddy Wilson And His Orchestra68-13If You Were Mine342361Teddy Wilson And His Orchestra68-14These 'N' That 'N' Those342361Teddy Wilson And His Orchestra68-15Sugar Plum342361Teddy Wilson And His Orchestra68-16You Let Me Down342361Teddy Wilson And His Orchestra68-17Spreadin' Rhythm Around342361Teddy Wilson And His Orchestra68-18Life Begins When You're In Love342361Teddy Wilson And His Orchestra68-19(If I Had) Rhythm In My Nursery Rhymes342361Teddy Wilson And His Orchestra68-20Christopher Columbus342361Teddy Wilson And His Orchestra68-21My Melancholy Baby342361Teddy Wilson And His Orchestra68-22All My Life342361Teddy Wilson And His OrchestraTeddy Wilson Vol. 2 (1936)69-1It's Like Reaching For The Moon342361Teddy Wilson And His Orchestra69-2These Foolish Things342361Teddy Wilson And His Orchestra69-3Why Do I Lie To Myself Over You?342361Teddy Wilson And His Orchestra69-4I Cried For You342361Teddy Wilson And His Orchestra69-5Guess Who342361Teddy Wilson And His Orchestra69-6You Came To My Rescue342361Teddy Wilson And His Orchestra69-7Here's Love In Your Eyes342361Teddy Wilson And His Orchestra69-8You Turned The Tables On Me342361Teddy Wilson And His Orchestra69-9Sing, Baby, Sing!342361Teddy Wilson And His Orchestra69-10Easy To Love342361Teddy Wilson And His Orchestra69-11With Thee I Swing342361Teddy Wilson And His Orchestra69-12The Way You Look Tonight342361Teddy Wilson And His Orchestra69-13Who Loves You?342361Teddy Wilson And His Orchestra69-14Who Loves You?342361Teddy Wilson And His Orchestra69-15Pennies From Heaven342361Teddy Wilson And His Orchestra69-16That's Life I Guess342361Teddy Wilson And His Orchestra69-17Sailin'342361Teddy Wilson And His Orchestra69-18I Can't Give You Anything But Love342361Teddy Wilson And His Orchestra69-19I'm With You (Right Or Wrong)342361Teddy Wilson And His Orchestra69-20Where The Lazy River Goes By342361Teddy Wilson And His Orchestra69-21Tea For Two342361Teddy Wilson And His Orchestra69-22I'll See You In My Dreams342361Teddy Wilson And His OrchestraTeddy Wilson Vol. 3 (1937)70-1He Ain't Got Rhythm342361Teddy Wilson And His Orchestra70-2This Year's Kisses342361Teddy Wilson And His Orchestra70-3Why Was I Born?342361Teddy Wilson And His Orchestra70-4I Must Have That Man!342361Teddy Wilson And His Orchestra70-5The Mood That I'm In342361Teddy Wilson And His Orchestra70-6You Showed Me The Way342361Teddy Wilson And His Orchestra70-7Sentimental And Melancholy342361Teddy Wilson And His Orchestra70-8(This Is) My Last Affair342361Teddy Wilson And His Orchestra70-9Carelessly342361Teddy Wilson And His Orchestra70-10How Could You?342361Teddy Wilson And His Orchestra70-11Moanin' Low342361Teddy Wilson And His Orchestra70-12Fine And Dandy342361Teddy Wilson And His Orchestra70-13There's A Lull In My Life342361Teddy Wilson And His Orchestra70-14It's Swell Of You342361Teddy Wilson And His Orchestra70-15How Am I To Know?342361Teddy Wilson And His Orchestra70-16I'm Coming, Virginia342361Teddy Wilson And His Orchestra70-17Sun Showers342361Teddy Wilson And His Orchestra70-18Yours And Mine342361Teddy Wilson And His Orchestra70-19I'll Get By342361Teddy Wilson And His Orchestra70-20Mean To Me342361Teddy Wilson And His OrchestraTeddy Wilson Vol. 4 (1937)71-1Foolin' Myself342361Teddy Wilson And His Orchestra71-2Easy Living342361Teddy Wilson And His Orchestra71-3I'll Never Be The Same342361Teddy Wilson And His Orchestra71-4I've Found A New Baby342361Teddy Wilson And His Orchestra71-5You're My Desire342361Teddy Wilson And His Orchestra71-6Remember Me?342361Teddy Wilson And His Orchestra71-7The Hour Of Parting342361Teddy Wilson And His Orchestra71-8Coquette342361Teddy Wilson And His Orchestra71-9Big Apple342361Teddy Wilson And His Orchestra71-10You Can't Stop Me From Dreaming342361Teddy Wilson And His Orchestra71-11If I Had You342361Teddy Wilson And His Orchestra71-12You Brought A New Kind Of Love To Me342361Teddy Wilson And His Orchestra71-13Ain't Misbehavin'374748Teddy Wilson Quartet71-14Ain't Misbehavin'374748Teddy Wilson Quartet71-15Just A Mood - Part 1374748Teddy Wilson Quartet71-16Just A Mood - Part 2374748Teddy Wilson Quartet71-17Honeysuckle Rose374748Teddy Wilson Quartet71-18Nice Work If You Can Get It342361Teddy Wilson And His Orchestra71-19Things Are Looking Up342361Teddy Wilson And His Orchestra71-20My Man342361Teddy Wilson And His Orchestra71-21Can't Help Lovin' Dat Man342361Teddy Wilson And His OrchestraTeddy Wilson Vol. 5 (1937-38)72-1My First Impression Of You342361Teddy Wilson And His Orchestra72-2When You're Smiling342361Teddy Wilson And His Orchestra72-3When You're Smiling342361Teddy Wilson And His Orchestra72-4I Can't Believe That You're In Love With Me342361Teddy Wilson And His Orchestra72-5I Can't Believe That You're In Love With Me342361Teddy Wilson And His Orchestra72-6If Dreams Come True342361Teddy Wilson And His Orchestra72-7Moments Like This342361Teddy Wilson And His Orchestra72-8I Can't Face The Music342361Teddy Wilson And His Orchestra72-9Don't Be That Way342361Teddy Wilson And His Orchestra72-10If I Were You342361Teddy Wilson And His Orchestra72-11You Go To My Head342361Teddy Wilson And His Orchestra72-12I'll Dream Tonight342361Teddy Wilson And His Orchestra72-13Jungle Love342361Teddy Wilson And His Orchestra72-14Now It Can Be Told342361Teddy Wilson And His Orchestra72-15Laugh And Call It Love342361Teddy Wilson And His Orchestra72-16On The Bumpy Road To Love342361Teddy Wilson And His Orchestra72-17A Tisket, A Tasket342361Teddy Wilson And His Orchestra72-18Everybody's Laughin'342361Teddy Wilson And His Orchestra72-19Here It Is Tomorrow Again342361Teddy Wilson And His Orchestra72-20Say It With A Kiss342361Teddy Wilson And His Orchestra72-21April In My Heart342361Teddy Wilson And His Orchestra72-22I'll Never Fail You342361Teddy Wilson And His Orchestra72-23They Say342361Teddy Wilson And His OrchestraLester Young Vol. 1 (1936-39)73-1Shoe-Shine Boy374754Jones-Smith Incorporated73-2Evenin'374754Jones-Smith Incorporated73-3Boogie Woogie374754Jones-Smith Incorporated73-4Oh, Lady Be Good374754Jones-Smith Incorporated73-5Mortgage Stomp7448404Count Basie Ensemble73-6Don't Be That Way7448404Count Basie Ensemble73-7Blues With Helen7448404Count Basie Ensemble73-8Song Of The Wanderer7448404Count Basie Ensemble73-9Allez Oop7448404Count Basie Ensemble73-10Way Down Yonder In New Orleans311722Kansas City Six73-11Countless Blues311722Kansas City Six73-12Them There Eyes311722Kansas City Six73-13I Want A Little Girl311722Kansas City Six73-14Paging The Devil311722Kansas City Six73-15I Ain't Got Nobody1412119Basie's Bad Boys73-16Goin' To Chicago1412119Basie's Bad Boys73-17Live And Love Tonight1412119Basie's Bad Boys73-18Love Me Or Leave Me1412119Basie's Bad Boys73-19China Boy374755Glenn Hardman And His Hammond Five73-20Exactly Like You374755Glenn Hardman And His Hammond Five73-21On The Sunny Side Of The Street374755Glenn Hardman And His Hammond Five73-22Upright Organ Blues374755Glenn Hardman And His Hammond Five73-23Who?374755Glenn Hardman And His Hammond Five73-24Jazz Me Blues374755Glenn Hardman And His Hammond FiveLester Young Vol. 2 (1939-41)74-1Dickie's Dream317874Count Basie And The Kansas City SevenCount Basie's Kansas City Seven74-2Lester Leaps In317874Count Basie And The Kansas City SevenCount Basie's Kansas City Seven74-3Pagin' The Devil311722Kansas City Six74-4Way Down Yonder In New Orleans311722Kansas City Six74-5Good Morning Blues311722Kansas City Six74-6Blues (Ad Lib Blues)311730Benny Goodman SextetBenny Goodman/Count Basie All Star Octet74-7I Never Knew311730Benny Goodman SextetBenny Goodman/Count Basie All Star Octet74-8Charlie's Dream311730Benny Goodman SextetBenny Goodman/Count Basie All Star Octet74-9Lester's Dream311730Benny Goodman SextetBenny Goodman/Count Basie All Star Octet74-10Wholly Cats311730Benny Goodman SextetBenny Goodman/Count Basie All Star Octet74-11Blitzkrieg Baby311745Una Mae Carlisle74-12Beautiful Eyes311745Una Mae Carlisle74-13There'll Be Some Changes Made311745Una Mae Carlisle74-14It's Sad But True311745Una Mae Carlisle74-15Tickle Toe446629Lester Young And His Band74-16Taxi War Dance446629Lester Young And His Band74-17The Goon Drag (Gone Wid De Goon)3072663Sam Price And His Texas BlusiciansSammy Price And His Texas Blusicians74-18Thing's About Coming My Way3072663Sam Price And His Texas BlusiciansSammy Price And His Texas Blusicians74-19Lead Me Daddy, Straight To The Bar3072663Sam Price And His Texas BlusiciansSammy Price And His Texas Blusicians74-20Just Jivin' Around3072663Sam Price And His Texas BlusiciansSammy Price And His Texas Blusicians74-21Untitled Blues2480750Lester & Lee Young's OrchestraLester And Lee Young's Band74-22Just A Little Bit South355Unknown ArtistLester Young Vol. 3 (1942-44)75-1Indiana258433Lester Young-320797The Nat King Cole TrioKing Cole Trio75-2I Can't Get Started258433Lester Young-320797The Nat King Cole TrioKing Cole Trio75-3Tea For Two258433Lester Young-320797The Nat King Cole TrioKing Cole Trio75-4Body And Soul258433Lester Young-320797The Nat King Cole TrioKing Cole Trio75-5I Got Rhythm883513Dickie Wells And His Orchestra75-6I'm Fer It Too883513Dickie Wells And His Orchestra75-7I'm Fer It Too883513Dickie Wells And His Orchestra75-8Hello Babe883513Dickie Wells And His Orchestra75-9Hello Babe883513Dickie Wells And His Orchestra75-10Linger Awhile883513Dickie Wells And His Orchestra75-11Just You, Just Me374751Lester Young Quartet75-12I Never Knew374751Lester Young Quartet75-13Afternoon Of A Basie-ite374751Lester Young Quartet75-14Sometimes I'm Happy374751Lester Young Quartet75-15After Theatre Jump382241The Kansas City SevenKansas City Seven75-16Six Cats & A Prince382241The Kansas City SevenKansas City Seven75-17Lester Leaps Again382241The Kansas City SevenKansas City Seven75-18Destination K.C.382241The Kansas City SevenKansas City SevenLester Young Vol. 4 (1944)76-1Three Little Words311722Kansas City Six76-2Jo-Jo311722Kansas City Six76-3I Got Rhythm311722Kansas City Six76-4Four O'Clock Drag311722Kansas City Six76-5Empty Hearted311722Kansas City Six76-6Circus In Rhythm311722Kansas City Six76-7Circus In Rhythm311722Kansas City Six76-8Circus In Rhythm311722Kansas City Six76-9Poor Little Plaything311722Kansas City Six76-10Poor Little Plaything311722Kansas City Six76-11Tush311722Kansas City Six76-12Tush311722Kansas City Six76-13These Foolish Things2206645Johnny Guarnieri Swing Men76-14Exercise In Swing2206645Johnny Guarnieri Swing Men76-15Salute To Fats2206645Johnny Guarnieri Swing Men76-16Basie English2206645Johnny Guarnieri Swing Men76-17Exercise In Swing2206645Johnny Guarnieri Swing Men76-18Exercise In Swing2206645Johnny Guarnieri Swing Men76-19Exercise In Swing2206645Johnny Guarnieri Swing Men76-20Salute To Fats2206645Johnny Guarnieri Swing Men76-21Salute To Fats2206645Johnny Guarnieri Swing Men76-22Basie English2206645Johnny Guarnieri Swing MenLester Young Vol. 5 (1944-46)77-1Blue Lester446658Lester Young Quintet77-2Ghost Of A Chance446658Lester Young Quintet77-3Indiana446658Lester Young Quintet77-4Jump Lester, Jump446658Lester Young Quintet77-5Midnight Symphony2992869Jammin' The Blues (2)77-6On The Sunny Side Of The Street2992869Jammin' The Blues (2)77-7Sweet Georgia Brown2992869Jammin' The Blues (2)77-8If I Could Be With You2992869Jammin' The Blues (2)77-9Blues For Marvin2992869Jammin' The Blues (2)77-10Jammin' The Blues2992869Jammin' The Blues (2)77-11Jammin' The Blues2992869Jammin' The Blues (2)77-12D.B. Blues446629Lester Young And His Band77-13Lester Blows Again446629Lester Young And His Band77-14These Foolish Things446629Lester Young And His Band77-15Jumpin' At Mesners446629Lester Young And His Band77-16Riffin' Without Helen344334Helen Humes And Her All-StarsHelen Humes And Her All Stars77-17Please Let Me Forget344334Helen Humes And Her All-StarsHelen Humes And Her All Stars77-18He Don't Love Me Anymore344334Helen Humes And Her All-StarsHelen Humes And Her All Stars77-19Pleasing Man Blues344334Helen Humes And Her All-StarsHelen Humes And Her All Stars77-20See See Rider344334Helen Humes And Her All-StarsHelen Humes And Her All Stars77-21It's Better To Give Than To Receive344334Helen Humes And Her All-StarsHelen Humes And Her All StarsLester Young Vol. 6 (1946)78-1It's Only A Paper Moon446629Lester Young And His Band78-2After You've Gone446629Lester Young And His Band78-3Lover Come Back To Me446629Lester Young And His Band78-4Jamming With Lester446629Lester Young And His Band78-5Back To The Land2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-6I Cover The Waterfront2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-7I Cover The Waterfront2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-8Somebody Loves Me2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-9I've Found A New Baby2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-10The Man I Love2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-11Peg O'My Heart2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-12I Want To Be Happy2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-13Mean To Me2261700Lester Young-Buddy Rich TrioLester Young – Buddy Rich Trio78-14These Foolish Things258433Lester Young-145288Nat King ColeNat 'King' Cole78-15Lester Leaps In258433Lester Young-145288Nat King ColeNat 'King' Cole78-16D.B. Blues374751Lester Young QuartetLester Young Vol. 7 (1946-47)79-1I Got Rhythm2053168Jubilee All Stars79-2Oh Lady Be Good2053168Jubilee All Stars79-3Sweet Georgia Brown2053168Jubilee All Stars79-4You're Driving Me Crazy446629Lester Young And His Band79-5New Lester Leaps In446629Lester Young And His Band79-6Lester's Be Bop Boogie446629Lester Young And His Band79-7She's Funny That Way446629Lester Young And His Band79-8Sunday446629Lester Young And His Band79-9S.M. Blues446629Lester Young And His Band79-10Jumpin' With Symphony Sid446629Lester Young And His Band79-11No Eyes Blues446629Lester Young And His Band79-12Sax-O-Be-Bop446629Lester Young And His Band79-13On The Sunny Side Of The Street446629Lester Young And His Band79-14Easy Does It446629Lester Young And His Band79-15Easy Does It446629Lester Young And His Band79-16Movin' With Lester446629Lester Young And His Band79-17One O'Clock Jump446629Lester Young And His Band79-18Jumpin' At The Woodside (Every Tub)446629Lester Young And His Band79-19Confessin'446629Lester Young And His Band79-20Lester Smoothes It Out446629Lester Young And His Band79-21Just Cooling446629Lester Young And His BandLester Young Vol. 8 (1948-50)80-1Tea For Two446629Lester Young And His Band80-2East Of The Sun446629Lester Young And His Band80-3The Sheik Of Araby446629Lester Young And His Band80-4Something To Remember You By446629Lester Young And His Band80-5Crazy Over J-Z1922776Lester Young And His OrchestraLester Young And Orchestra80-6Ding Dong1922776Lester Young And His OrchestraLester Young And Orchestra80-7Blues 'N' Bells1922776Lester Young And His OrchestraLester Young And Orchestra80-8June Bug1922776Lester Young And His OrchestraLester Young And Orchestra80-9Too Marvelous For Words374751Lester Young Quartet80-10Too Marvelous For Words374751Lester Young Quartet80-11Deed I Do374751Lester Young Quartet80-12Encore374751Lester Young Quartet80-13Polka Dots And Moonbeams374751Lester Young Quartet80-14Up 'N' Adam374751Lester Young Quartet80-15Three Little Words374751Lester Young Quartet80-16Count Every Star1922776Lester Young And His Orchestra80-17It All Depends On You1922776Lester Young And His Orchestra80-18Neenah1922776Lester Young And His Orchestra80-19Jeepers Creepers1922776Lester Young And His OrchestraLester Young Vol. 9 (1951-52)81-1Thou Swell374751Lester Young Quartet81-2Thou Swell374751Lester Young Quartet81-3September In The Rain374751Lester Young Quartet81-4Undercover Girl Blues374751Lester Young Quartet81-5Frenesi374751Lester Young Quartet81-6Pete's Cafe374751Lester Young Quartet81-7Little Pee Blues374751Lester Young Quartet81-8A Foggy Day374751Lester Young Quartet81-9In A Little Spanish Town374751Lester Young Quartet81-10Let's Fall In Love374751Lester Young Quartet81-11Down 'N' Adam374751Lester Young Quartet81-12Lester Swings374751Lester Young Quartet81-13Slow Motion Blues374751Lester Young Quartet81-14Ad Lib Blues258433Lester YoungWith255646The Oscar Peterson Trio81-15Just You, Just Me258433Lester YoungWith255646The Oscar Peterson Trio81-16Tea For Two258433Lester YoungWith255646The Oscar Peterson Trio81-17Indiana258433Lester YoungWith255646The Oscar Peterson TrioLester Young Vol. 10 (1952-53)82-1These Foolish Things258433Lester YoungWith255646The Oscar Peterson Trio82-2I Can't Get Started258433Lester YoungWith255646The Oscar Peterson Trio82-3Stardust258433Lester YoungWith255646The Oscar Peterson Trio82-4On The Sunny Side Of The Street258433Lester YoungWith255646The Oscar Peterson Trio82-5Almost Like Being In Love258433Lester YoungWith255646The Oscar Peterson Trio82-6I Can't Give You Anything But Love258433Lester YoungWith255646The Oscar Peterson Trio82-7There'll Never Be Another You258433Lester YoungWith255646The Oscar Peterson Trio82-8I'm Confessin'258433Lester YoungWith255646The Oscar Peterson Trio82-9How High The Moon Part 1 & 2311056Metronome All Stars82-10St. Louis Blues Part 1 & 2311056Metronome All Stars82-11Willow Weep For Me446658Lester Young Quintet82.12This Can't Be Love446658Lester Young Quintet82-13Can't We Be Friends446658Lester Young Quintet82-14Tenderly446658Lester Young Quintet82-15New D.B. Blues446658Lester Young Quintet82-16Jumpin' At The Woodside446658Lester Young Quintet82-17I Can't Believe That You're In Love With Me446658Lester Young Quintet82-18Oh! Lady Be Good446658Lester Young QuintetLester Young Vol. 11 1954-5583-1Another Mambo446658Lester Young Quintet83-2Come Rain Or Come Shine446658Lester Young Quintet83-3Rose Room446658Lester Young Quintet83-4Somebody Loves Me446658Lester Young Quintet83-5Touch Me Again (Kiss Me Again)446658Lester Young Quintet83-6It Don't Mean A Thing446658Lester Young Quintet83-7I'm In The Mood For Love446658Lester Young Quintet83-8Big Top Blues446658Lester Young Quintet83-9Mean To Me258433Lester Young-258469Harry Edison83-10That's All258433Lester Young-258469Harry Edison83-11Red Boy Blues258433Lester Young-258469Harry Edison83-12Pennies From Heaven258433Lester Young-258469Harry Edison83-13She's Funny That Way258433Lester Young-258469Harry Edison83-14One O'Clock Jump258433Lester Young-258469Harry EdisonLester Young Vol. 12 195684-1I Guess I'll Have To Change My Plan1891146The Jazz Giants '5684-2I Didn't Know What Time It Was1891146The Jazz Giants '5684-3Gigantic Blues1891146The Jazz Giants '5684-4This Year's Kisses1891146The Jazz Giants '5684-5You Can Depend On Me1891146The Jazz Giants '5684-6Pres Returns2047849The Lester Young-Teddy Wilson QuartetPres And Teddy84-7Prisoner Of Love2047849The Lester Young-Teddy Wilson QuartetPres And Teddy84-8Taking A Chance On Love2047849The Lester Young-Teddy Wilson QuartetPres And Teddy84-9All Of Me2047849The Lester Young-Teddy Wilson QuartetPres And Teddy84-10Louise2047849The Lester Young-Teddy Wilson QuartetPres And TeddyLester Young Vol. 13 1956-5785-1Love Is Here To Stay2047849The Lester Young-Teddy Wilson QuartetPres And Teddy85-2Love Me Or Leave Me2047849The Lester Young-Teddy Wilson QuartetPres And Teddy85-3St. Tropez422601The Lester Young SextetLester Young Sextet85-4Flic422601The Lester Young SextetLester Young Sextet85-5Love Is Here To Stay422601The Lester Young SextetLester Young Sextet85-6Dickie's Dream1486018Count Basie's All StarsCount Basie All-Stars85-7I Left My Baby1486018Count Basie's All StarsCount Basie All-Stars85-8Fine And Mellow33589Billie HolidayWith3072662Mal Waldron's All StarsMal Waldron All-Stars85-9Waldorff Blues422601The Lester Young SextetLester Young Sextet85-10Sunday422601The Lester Young SextetLester Young Sextet85-11You're Getting To Be A Habit With Me422601The Lester Young SextetLester Young SextetAll-Star Groups Vol. 1 (1933-37)86-1Blue Interlude317901The Chocolate Dandies86-2I Never Knew317901The Chocolate Dandies86-3Once Upon A Time317901The Chocolate Dandies86-4Krazy Kapers317901The Chocolate Dandies86-5Honeysuckle Rose2860240Red Norvo & His Swing OctetRed Norvo And His Swing Octet86-6With All My Heart And Soul2860240Red Norvo & His Swing OctetRed Norvo And His Swing Octet86-7Bughouse2860240Red Norvo & His Swing OctetRed Norvo And His Swing Octet86-8Blues In E Flat2860240Red Norvo & His Swing OctetRed Norvo And His Swing Octet86-9Nothin' But The Blues2602563Gene Gifford And His Orchestra86-10New Orleans Twist2602563Gene Gifford And His Orchestra86-11Squareface2602563Gene Gifford And His Orchestra86-12Dizzy Glide2602563Gene Gifford And His Orchestra86-13I'd Love To Take Orders From You2978963Mildred Bailey And Her Alley Cats86-14I'd Rather Listen To Your Eyes2978963Mildred Bailey And Her Alley Cats86-15Someday Sweetheart2978963Mildred Bailey And Her Alley Cats86-16When Day Is Done2978963Mildred Bailey And Her Alley Cats86-17Willow Tree2978963Mildred Bailey And Her Alley Cats86-18Honeysuckle Rose2978963Mildred Bailey And Her Alley Cats86-19Squeeze Me2978963Mildred Bailey And Her Alley Cats86-20Down-Hearted Blues2978963Mildred Bailey And Her Alley Cats86-21Honeysuckle Rose2577987Jam Session At VictorA Jam Session At Victor's86-22Blues2577987Jam Session At VictorA Jam Session At Victor'sAll-Star Groups Vol. 2 (1937-39)87-1If You Ever Should Leave Me868471Mildred Bailey And Her Orchestra87-2The Moon Got In My Eyes868471Mildred Bailey And Her Orchestra87-3Heaven Help This Heart Of Mine868471Mildred Bailey And Her Orchestra87-4It's The Natural Thing To Do868471Mildred Bailey And Her Orchestra87-5Bugle Call Rag883513Dickie Wells And His OrchestraDicky Wells And His Orchestra87-6Between The Devil And The Deep Blue Sea883513Dickie Wells And His OrchestraDicky Wells And His Orchestra87-7I Got Rhythm883513Dickie Wells And His OrchestraDicky Wells And His Orchestra87-8Sweet Sue883513Dickie Wells And His OrchestraDicky Wells And His Orchestra87-9Hangin' Around Boudon883513Dickie Wells And His OrchestraDicky Wells And His Orchestra87-10Japanese Sandman883513Dickie Wells And His OrchestraDicky Wells And His Orchestra87-11For He's A Jolly Good Fellow1753822All Star Jam Band87-12Jammin' The Waltz1753822All Star Jam Band87-13Let's Get Happy1753822All Star Jam Band87-14Clementine1753822All Star Jam Band87-15A Wee Bit Of Swing3803722Timme Rosenkrantz And His Barrelhouse Barons87-16Is This To Be My Souvenir?3803722Timme Rosenkrantz And His Barrelhouse Barons87-17When Day Is Done3803722Timme Rosenkrantz And His Barrelhouse Barons87-18The Song Is Ended3803722Timme Rosenkrantz And His Barrelhouse Barons87-19Daybreak Blues2831694Frank Newton Quintet87-20Port Of Harlem Blues2006224Port Of Harlem Jazzmen87-21Mighty Blues2006224Port Of Harlem Jazzmen87-22Rockin' The Blues2006224Port Of Harlem JazzmenAll-Star Groups Vol. 3 (1939-44)88-1After Hour Blues2831694Frank Newton Quintet88-2Blues For Tommy2006224Port Of Harlem Jazzmen88-3Summertime2006224Port Of Harlem Jazzmen88-4Pounding Heart Blues2006224Port Of Harlem Jazzmen88-5Twelve Bar Stampede446668Leonard Feather All StarsLeonard Feather's All-Star Jam Band88-6Feather Bed Lament446668Leonard Feather All StarsLeonard Feather's All-Star Jam Band88-7Men Of Harlem (Tempo Di Jump)446668Leonard Feather All StarsLeonard Feather's All-Star Jam Band88-8Ocean Motion446668Leonard Feather All StarsLeonard Feather's All-Star Jam Band88-9Perdido Street Blues317860Louis Armstrong And His Orchestra88-102.19 Blues317860Louis Armstrong And His Orchestra88-11Down In Honky Tonk Town317860Louis Armstrong And His Orchestra88-12Coal Cart Blues317860Louis Armstrong And His Orchestra88-13Coal Cart Blues Down In Jungle Town1201611Henry "Red" Allen And His OrchestraRed Allen And His Orchestra88-14Canal Street Blues1201611Henry "Red" Allen And His OrchestraRed Allen And His Orchestra88-15King Porter Stomp2826448Zutty Singleton And His Orchestra88-16Shim-Me-Sha-Wabble2826448Zutty Singleton And His Orchestra88-17Blue Mizz373894James P. Johnson's Blue Note Jazzmen88-18Victory Stride373894James P. Johnson's Blue Note Jazzmen88-19Joy-Mentin'373894James P. Johnson's Blue Note Jazzmen88-20After You've Gone373894James P. Johnson's Blue Note JazzmenAll-Star Groups Vol. 4 (1943-44)89-1High Society373888Edmond Hall's Blue Note Jazzmen89-2Blues At Blue Note373888Edmond Hall's Blue Note Jazzmen89-3Night Shift Blues373888Edmond Hall's Blue Note Jazzmen89-4Royal Garden Blues373888Edmond Hall's Blue Note Jazzmen89-5Woke Up Clipped374633Ben Webster And His Orchestra89-6Teezol374633Ben Webster And His Orchestra89-7Nuff Said374633Ben Webster And His Orchestra89-8The Horn (I Got Rhythm)374633Ben Webster And His Orchestra89-9Dirty Deal374633Ben Webster And His Orchestra89-10Don't Blame Me374633Ben Webster And His Orchestra89-11I Surrender Dear374633Ben Webster And His Orchestra89-12Tea For Two374633Ben Webster And His Orchestra89-13Mountain Air2516253The Charlie Shavers QuintetCharlie Shavers Quintet89-14Curry In A Hurry2516253The Charlie Shavers QuintetCharlie Shavers Quintet89-15Stardust2516253The Charlie Shavers QuintetCharlie Shavers Quintet89-16Rosetta2516253The Charlie Shavers QuintetCharlie Shavers Quintet89-17It's Been So Long5274995Edmond Hall's SwingtetEdmond Hall Swingtet89-18I Can't Believe That You're In Love With Me5274995Edmond Hall's SwingtetEdmond Hall Swingtet89-19Big City Blues5274995Edmond Hall's SwingtetEdmond Hall Swingtet89-20Steamin' And Beamin'5274995Edmond Hall's SwingtetEdmond Hall SwingtetAll-Star Groups Vol. 5 (1944-46)90-1Everybody Loves My Baby1766249Sidney DeParis' Blue Note JazzmenSidney De Paris' Blue Note Jazzmen90-2Ballin' The Jack1766249Sidney DeParis' Blue Note JazzmenSidney De Paris' Blue Note Jazzmen90-3Who's Sorry Now1766249Sidney DeParis' Blue Note JazzmenSidney De Paris' Blue Note Jazzmen90-4The Call Of The Blues1766249Sidney DeParis' Blue Note JazzmenSidney De Paris' Blue Note Jazzmen90-5Russian Lullaby2570635Red Norvo SeptetRed Norvo All Star Septet90-6I Got Rhythm2570635Red Norvo SeptetRed Norvo All Star Septet90-7Memories Of You311731Cozy Cole All StarsCozy Cole's All-Stars90-8Comes The Don311731Cozy Cole All StarsCozy Cole's All-Stars90-9When Day Is Done311731Cozy Cole All StarsCozy Cole's All-Stars90-10The Beat (The Drag)311731Cozy Cole All StarsCozy Cole's All-Stars90-11The Bottle's Empty4363973Sir Walter Thomas And His All StarsSir Walter Thomas And His Band90-12Save It, Pretty Mama4363973Sir Walter Thomas And His All StarsSir Walter Thomas And His Band90-13For Lovers Only4363973Sir Walter Thomas And His All StarsSir Walter Thomas And His Band90-14Peach Tree Street Blues4363973Sir Walter Thomas And His All StarsSir Walter Thomas And His Band90-15Pete's Lonesome Blues3179350Pete Johnson's Housewarming90-16Mr. Drum Meets Mr. Piano3179350Pete Johnson's Housewarming90-17Mutiny In The Doghouse3179350Pete Johnson's Housewarming90-18Mr. Clarinet Knocks Twice3179350Pete Johnson's Housewarming90-19Ben Rides Out3179350Pete Johnson's Housewarming90-20Page Mr. Trumpet3179350Pete Johnson's Housewarming90-21J.C. From K.C.3179350Pete Johnson's Housewarming90-22Pete's Housewarming3179350Pete Johnson's HousewarmingJam Sessions Vol. 1 (1952)91-1Jam Blues2966683Norman Granz' Jam SessionNorman Granz Jam Session91-2What Is This Thing Called Love2966683Norman Granz' Jam SessionNorman Granz Jam Session91-3All The Things You Are - Dearly Beloved - The Nearness Of You - I'll Get By - Everything Happens To Me - The Man I Love - What's New? - Someone To Watch Over Me - Isn't It Romantic2966683Norman Granz' Jam SessionNorman Granz Jam Session91-4Funky Blues2966683Norman Granz' Jam SessionNorman Granz Jam SessionJam Sessions Vol. 2 (1953)92-1Apple Jam2966683Norman Granz' Jam SessionNorman Granz Jam Session92-2Oh, Lady Be Good2966683Norman Granz' Jam SessionNorman Granz Jam Session92-3Blues For The Count2966683Norman Granz' Jam SessionNorman Granz Jam Session92-4Ballad Medley: Indian Summer - Willow Weep For Me - If I Had You - Ghost Of A Chance -2966683Norman Granz' Jam SessionNorman Granz Jam SessionJam Sessions Vol. 3 (1953)93-1Jam Blues2966683Norman Granz' Jam SessionNorman Granz Jam Session93-2Blue Lou2966683Norman Granz' Jam SessionNorman Granz Jam Session93-3Just You, Just Me2966683Norman Granz' Jam SessionNorman Granz Jam Session93-4Jammin' For Clef2966683Norman Granz' Jam SessionNorman Granz Jam SessionJam Sessions Vol. 4 (1953)94-1Ballad Medley: Tenderly - I've Got The World On A String - What's New - I Got It Bad And That Ain't Good - Don't Blame Me - Imagination - Someone To Watch Over Me - Body And Soul - She's Funny That Way2966683Norman Granz' Jam SessionNorman Granz Jam Session94-2Rose Room2966683Norman Granz' Jam SessionNorman Granz Jam Session94-3Moten Swing477766Buck Clayton With His All-StarsBuck Clayton Jam Session94-4Sentimental Journey477766Buck Clayton With His All-StarsBuck Clayton Jam SessionJam Sessions Vol. 5 (1953)95-1Lean Baby265637Buck ClaytonBuck Clayton Jam Session95-2The Huckle Buck265637Buck ClaytonBuck Clayton Jam Session95-3Robbins' Nest265637Buck ClaytonBuck Clayton Jam Session95-4Christopher Columbus265637Buck ClaytonBuck Clayton Jam SessionJam Sessions Vol. 6 (1954)96-1How High The Fi?265637Buck ClaytonBuck Clayton Jam Session96-2Blue Moon265637Buck ClaytonBuck Clayton Jam Session96-3Jumpin' At The Woodside265637Buck ClaytonBuck Clayton Jam Session96-4I Found A New Baby2527795Mel Powell & His All-StarsMel Powell And His All Stars96-5After You've Gone2527795Mel Powell & His All-StarsMel Powell And His All StarsJam Sessions Vol. 6 (1954)97-1Blues My Naughty Sweetie Gives To Me997071Eddie Condon And His All-StarsEddie Condon And His All Stars97-2How Come You Do Me Like You Do997071Eddie Condon And His All-StarsEddie Condon And His All Stars97-3Medley: When My Sugar Walks Down The Street / I Can't Believe That You're In Love With Me997071Eddie Condon And His All-StarsEddie Condon And His All Stars97-4There'll Be Some Changes Made997071Eddie Condon And His All-StarsEddie Condon And His All Stars97-5Tin Roof Blues997071Eddie Condon And His All-StarsEddie Condon And His All Stars97-6Don't Be That Way265637Buck ClaytonBuck Clayton Jam Session97-7Undecided265637Buck ClaytonBuck Clayton Jam Session97-8Blue And Sentimental265637Buck ClaytonBuck Clayton Jam SessionJam Sessions Vol. 8 (1955)98-1Rock-A-Bye Basie265637Buck ClaytonBuck Clayton Jam Session98-2Out Of Nowhere265637Buck ClaytonBuck Clayton Jam Session98-3Blue Lou265637Buck ClaytonBuck Clayton Jam Session98-4Broadway265637Buck ClaytonBuck Clayton Jam Session98-5Moten Swing7448403Session At Midnight98-6Stompin' At The Savoy7448403Session At Midnight98-7Session At Midnight7448403Session At Midnight98-8Sweet Georgia Brown7448403Session At Midnight98-9Making The Scene7448403Session At Midnight98-10Blue Lou7448403Session At MidnightJam Sessions Vol. 9 (1956)99-1All The Cats Join In265637Buck ClaytonBuck Clayton Jam Session99-2Don't You Miss Your Baby265637Buck ClaytonBuck Clayton Jam Session99-3Undecided6977720Jam Session At The RiversideJam Session At Riverside99-4Broadway6977720Jam Session At The RiversideJam Session At Riverside99-5I Want To Be Happy6977720Jam Session At The RiversideJam Session At Riverside99-6Session At Riverside6977720Jam Session At The RiversideJam Session At Riverside99-7Escape Hatch6977720Jam Session At The RiversideJam Session At Riverside99-8Out Of Nowhere6977720Jam Session At The RiversideJam Session At Riverside99-9You Can Depend On Me477766Buck Clayton With His All-StarsBuck Clayton And His All-Stars99-10Newport Jump477766Buck Clayton With His All-StarsBuck Clayton And His All-Stars99-11In A Mellow Tone477766Buck Clayton With His All-StarsBuck Clayton And His All-StarsJam Sessions Vol. 10 (1957)100-1Alphonse And Gaston307296Rex Stewart&258696Cootie Williams100-2I'm Beginning To See The Light307296Rex Stewart&258696Cootie Williams100-3Do Nothin' Till You Hear307296Rex Stewart&258696Cootie Williams100-4I Knew You When307296Rex Stewart&258696Cootie Williams100-5I Gotta Right To Sing The Blues307296Rex Stewart&258696Cootie Williams100-6Walkin' My Baby Back Home307296Rex Stewart&258696Cootie Williams100-7When Your Lover Has Gone307296Rex Stewart&258696Cootie Williams100-8Fast And Happy Blues1486018Count Basie's All StarsCount Basie All Stars100-9I Left My Baby1486018Count Basie's All StarsCount Basie All Stars100-10Dickie's Dream1486018Count Basie's All StarsCount Basie All Stars100-11Fine And Mellow33589Billie HolidayWith3072662Mal Waldron's All StarsMal Waldron All Stars267254Membran International GmbH4Record Company44294Membran Music Ltd.9Distributed By44294Membran Music Ltd.10Manufactured By + +194VariousHard-Drive (The Complete Collection)CompilationWAVWAVMixedAIFFAIFFMP3MP3MP3MP3ElectronicUK2016-09-00Originally advertised as containing every release on [l=Tidy] and [l=Ideal]. By the time it came out this had been amended to everything released on Tidy. This did not include most of the DJ mixes they had put out due to the licensing costs this would have involved and several tracks were missed off. Some were later made available for download and more were included on the "Keep It Tidy - The Complete Collection" USB stick. + +This is the WAV version (there was also an MP3 version). Not all the tracks are actually in WAV format. A list of tracks to formats is below: +WAV 1, 3-8, 10 - 24, 28, 29, 34, 37, 39, 40, 42, 55 - 64, 67 - 69, 72 - 73, 76, 80 - 90, 94 - 96, 98, 100 - 105, 107 - 111, 113 - 122, 124 - 134, 136 - 143, 145, 147 - 159, 162, 164, 166, 167, 171 - 255, 257 - 260, 263, 265, 267 - 273, 275 - 280, 283, 285, 286, 288 - 292, 294 - 392, 396 - 455, 457, 458, 460 - 554, 556 - 595, 598 - 601, 606 - 611, 613 - 726, 728, 730 - 741, 744, 759 - 801, 803 - 811, 813 - 1054, 1056 - 1081, 1083, 1084, 1087 - 1126, 1128, 1129, 1132 - 1178, 1186 - 1225, 1231 - 1264, 1266 - 1352, 1354 - 1425, 1431 - 1476 +AIFF 2, 9, 135, 144, 146, 160, 161, 163, 165, 168 - 170, 256, 261 - 262, 264, 266, 281, 282, 284, 287, 293, 393 - 395, 456, 459, 555, 596, 597, 602 - 605, 612,727, 729, 742, 743, 745 - 758, 802, 812, 1055, 1082, 1085, 1086, 1127, 1130, 1131, 1179 - 1185, 1226 - 1230, 1265, 1353, 1426 - 1430 +AIF 25 - 27, 30 - 33, 35, 36, 38, 41, 43 - 53, 70, 71, 74, 77, 78, 91 -93, 97 +MP3 (128kbps) 65, 66, 75, 79, 99 +MP3 (160kbps) 54 +MP3 (256kbps) 106 +MP3 (320kbps) 112, 123, 274 + +The hard drive is a Seagate 1tb, 2.5", USB drive.Correct001 Extra Nice Stuff1Black Is Black (Choccis Acid Mix)7:0115366Allnighters11438ChociRemix2Real Freaks (The Hoodlums Unreleased Remix)7:0921059Anne Savage19608The HoodlumsRemix3Bits & Pieces (D-Bops Unreleased Remix)7:371686Artemesia44453D-BopRemix4Bamboozle (Untidy Dub)9:052782Candy J11712Untidy DubsRemix5Daves_Project This Is Tidy Part 18:32971460Dave Curtis (4)6Daves_Project This Is Tidy Part 28:21971460Dave Curtis (4)7Blue Skies (Hyperlogic Remix) Tidy USA Release Only8:0316293Evolver1687HyperlogicRemix8F13 Just Do It (Trap Two Remix)6:434629Signum4080558Trap TwoRemix9Dead Or Alive (Dub)8:3921472Flash Harry10The Fear (Unrealesed Track)7:0712747Ground Zero11Only Me (TB 97 Boot Mix)9:051687Hyperlogic12U Got The Love (Lee Haslams Unreleased Remix)7:071687Hyperlogic37429Lee HaslamRemix13I Don't Care (Steve O'Brady's Bootlegg Mix 1)7:135531Tony De VitTDV643840Steve O'BradyRemix14I Don't Care (Steve O'Brady's Bootlegg Mix 2)7:115531Tony De VitTDV643840Steve O'BradyRemix15Tidy Chill - Restless (Flash Harry's Late Night Interpretation)5:091680JX21472Flash HarryRemix02 Unreleased Demos16Jack Of Klubz (Tidy Boys Unfinished Demo Version)6:4940042Barabas & OD1Barabas And OD125831Tidy BoysRemix17Look At U (Unfinished Demo 96)4:59253949The HandbaggersHandbaggers18In Love With U (Unrelesaed Demo)8:331687Hyperlogic19We Use To Party (Unreleased First Demo 1994)2:281687Hyperlogic&32216Steve Edwards20All This Love (Unreleased Demo For Tidy Girls EP)8:228339Lisa Pin-UpLisa Pin Up21Caramba (Stupid Demo Concept 96)3:2725831Tidy Boys22Disco Dub (Unrealeased Unfinished Demo)3:4125831Tidy Boys03 Vox & Stuff2320000 Hardcore Members0:03118760No Artist24Cerca Trova Vox0:45233533Amber DFeat.807541Stacey KitsonStace25And You Thought It Was Over0:02118760No Artist26Are You All Ready0:01118760No Artist27Black Is Black Vox0:01118760No Artist28Breather Vox1:10118760No Artist29Coming At You0:13118760No Artist30Crank It Up Let The Bass Be Louder0:01118760No Artist31Cuz The House Gets Warm0:01118760No Artist32Dicks Mums Dead0:08118760No Artist33Do It0:01118760No Artist34Dont Believe0:01118760No Artist35Dreamer Stab0:03118760No Artist36Dreamer Vocal0:08118760No Artist37Endagered Vocals0:28118760No Artist38Feel So Good Vocals0:14118760No Artist39Future Is Ours0:03118760No Artist40Good Evening Everyone0:03118760No Artist41Good Evening0:02118760No Artist42Good Morning Andy0:06118760No Artist43Hardcore Power0:01118760No Artist44Broken Heart0:0564206Heaven's CryHC45Come Back Or Bad0:0364206Heaven's CryHC46I Dont Know0:0564206Heaven's CryHC47Oooo I Want To Want You0:0764206Heaven's CryHC48Want You0:0464206Heaven's CryHC49Hey Babe What Would Like To Hear0:02118760No Artist50Honey Rap 10:03118760No Artist51Honey Rap 20:02118760No Artist52Hoover0:07118760No Artist53Im Mad0:02118760No Artist54Its About Music0:23118760No Artist55Stalker Vox0:3238228Jon Bishop56More And More Edit0:19495100Kym Ayres57What Can You Do 4 Me1:4618435Lisa Lashes58Looking Good 10:02118760No Artist59Looking Good 20:01118760No Artist60Looking Good 30:02118760No Artist61Looking Good 40:02118760No Artist62Looking Good 50:03118760No Artist63Feeling Vox0:27489554Faysal MatarMatar64Such A Good Feeling0:37156712Miss Behavin'65Music Is The Drug Riff 1470:18118760No Artist66Music Is The Drug Vocal 1470:17118760No Artist67New York Vocals1:28118760No Artist68On Two Turns Stretch Vox0:02118760No Artist69Once Upon A Time Vocal0:17118760No Artist70One Two Three And0:03118760No Artist71Only Is I Had One More0:02118760No Artist72Only Me Vocals0:11118760No Artist73I Need To Know Vox0:5418360Paul Glazby74Real Freaks0:02118760No Artist75Ripped Out Riff 1470:17118760No Artist76Rock The Floor Loop0:06118760No Artist77Rock With Me0:03118760No Artist78Scratchin To The Funk In 19850:03118760No Artist79SeriousSoundRiff1470:11118760No Artist80Smokin Bert 10:15118760No Artist81Smokin Bert 20:14118760No Artist82Smokin Bert 30:14118760No Artist83Smokin Bert Just Getting Warm0:12118760No Artist84So Much To Do0:01118760No Artist85Stay Vocal0:543631Rob Tissera86Sundown Vox Fx0:15118760No Artist87Thinking About You0:03118760No Artist88Tidy Boys At Home 10:0825831Tidy Boys89Tidy Boys At Home 20:1025831Tidy Boys90Tidy Boys At Home 30:0925831Tidy Boys91Tidy Boys Not One But 20:0225831Tidy Boys92Unbelievabley Shit0:12118760No Artist93Unfucking Believeable0:33118760No Artist94Fine Night1:3011712Untidy DubsFeaturing980145Emma Lock95Vocal Whizzkid 20:26228852MC WhizzkidWhizzkid96Vocal Whizzkid Chopped0:06228852MC WhizzkidWhizzkid97What Would Like To Hear Agin0:01118760No Artist98Woo Vocal0:06118760No Artist99You'll Know It Riff 1470:16118760No Artist04 For Heaven's Sake Album100Til Tears Do Us Part (A Heaven's Cry & Claim In Cricklewood By Bingo Barry)1:1564206Heaven's Cry101Til Tears Do Us Part (Energy Syndicate & HybridZ - Hoovers Cry (150 Mix))6:3064206Heaven's Cry1628992Energy SyndicateRemix2662729HybridZ (2)Remix102Til Tears Do Us Part (Energy Syndicate & Mark HybridZ - Hoovers Cry Hardcore Mix)5:4464206Heaven's Cry1628992Energy SyndicateRemix3017283Mark HybridZRemix103Til Tears Do Us Part (Flash Harry's Orchestral Masterpiece 1 Min Reprise)1:1664206Heaven's Cry21472Flash HarryRemix104Til Tears Do Us Part (Flash Harry's Orchestral Masterpiece)2:0264206Heaven's Cry21472Flash HarryRemix105Til Tears Do Us Part (Flash Strums His Strings)0:1864206Heaven's Cry21472Flash HarryRemix106Til Tears Do Us Part (Bobby T's KissDaFunk Rework)8:1564206Heaven's Cry1532570Bobby Tee (2)Bobby TRemix107Til Tears Do Us Part (Heavens Call)0:4964206Heaven's Cry108Til Tears Do Us Part (Rolfs In Jail Stylophone Mix)0:1764206Heaven's Cry109Til Tears Do Us Part (Tidy Boys Really Sad Piano Ballad Version)1:3964206Heaven's Cry25831Tidy BoysRemix110'Til Tears Do Us Part (Flash Harry Remix)9:2064206Heaven's Cry21472Flash HarryRemix111'Til Tears Do Us Part (Starfire Remix)5:1064206Heaven's Cry21473StarfireRemix112Til Tears Do Us Part (Azure Radio Edit)2:3664206Heaven's Cry131666Azure (5)Remix113Til Tears Do Us Part (Club Mix)7:1564206Heaven's Cry114Til Tears Do Us Part (Dark By Design Remix)8:0264206Heaven's Cry75559Dark By DesignRemix115Til Tears Do Us Part (Lamin8ers Vs JTS Hardcore Mix)4:3564206Heaven's Cry176035JTSRemix3401456The Lamin8ersLamin8ersRemix116Til Tears Do Us Part (Stimulant DJ's Remix)9:1164206Heaven's Cry32426Stimulant DJsStimulant DJ'sRemix117Til' Tears Do Us Part (Yoji Biomehanika Remix)8:4664206Heaven's Cry39204Yoji BiomehanikaRemix118Till Tears Do Us Part (Jon Langford Remix)6:0664206Heaven's Cry112613Jon LangfordRemix119Till Tears Do Us Part (Kidd Kaos Mix)7:1464206Heaven's Cry960293Kidd KaosRemix120Till Tears Do Us Part (Paul Jacobson Remix)8:4564206Heaven's Cry2595786Paul JacobsonRemix121Till Tears Do Us Part (Scott Fo Shaw & Mike Avery Remix)7:4664206Heaven's Cry1170503Mike AveryRemix643849Scott Fo-ShawScott Fo ShawRemix122Til Tears Do Us Part (Heavens Cry Beer Garden Tap Version)1:2364206Heaven's Cry123Till Tears Do Us Part (Jason Cortez Remix)8:3864206Heaven's Cry208245Jason CortezRemix124Til Tears Do Us Part (Heavens Die)7:2164206Heaven's Cry125Till Tears Do Us Part (Lamin8rs Remix)7:5864206Heaven's Cry3401456The Lamin8ersLamin8ersRemix126Till Tears Do Us Part (Scott Attrill Exclusive Electrik Remix)6:5564206Heaven's Cry426849Scott AttrillRemix127Til Tears Do Us Part (Les Dawsons Pissed Up Pub Session)0:3464206Heaven's Cry128Til Tears Do Us Part (Mr Softy - Heaven's Ice Cream)0:3564206Heaven's Cry129Til Tears Do Us Part (Tidy Boys Weekender Rock Party Version)6:5564206Heaven's Cry25831Tidy BoysRemix05 Tidy Boys Bits130Big Night Out Easy Break1:3825831Tidy Boys131All Alone (140bpm Alternate Version)8:308349BK&25831Tidy Boys132All Alone (150bpm Main Version)9:028349BK&25831Tidy Boys133Classic Tidy Boys Weekender Intro1:4225831Tidy Boys134Dusty Bin3:0425831Tidy Boys135Holidays Are Coming (Original Master)1:0525831Tidy Boys136Original Tidy Boys Danger Opening (Weekender)5:0125831Tidy Boys137Pretend Plumbers Theme0:3625831Tidy Boys138Sonic Stylophone 0:1025831Tidy Boys139Stimulator Casio0:3025831Tidy Boys140Techno DJ In The Bath Jingle0:2025831Tidy Boys141Tidy Addict TV AD Bedding0:3425831Tidy Boys142Big Night Out Intro - Unused1:4025831Tidy Boys143Christmas Weekender Last 10 Minutes9:4125831Tidy Boys144Generator Intro (2000)1:2825831Tidy Boys145Tidy Boys Meet Nick Frost10:5325831Tidy Boys146Mindblowing Xmas Intro8:4825831Tidy Boys147NYE Intro2:3225831Tidy Boys148Original First Intro Seq (1999)1:1925831Tidy Boys149Podcast Opener0:5925831Tidy Boys150Tidy Weekender 5 Friday Intro (2004)5:4425831Tidy Boys151Tidy Weekender 9 (Pirates Of Prestatyn Intro)5:2325831Tidy Boys152Tidy Weekender Reunion Intro (2011)9:3725831Tidy Boys153Tidy Wild West Weekender Intro (TW8)9:3725831Tidy Boys154TW2 Wedding March Bounceathon0:5025831Tidy Boys155TW12 Promo DVD Sound Track7:1925831Tidy Boys156We Know The Way0:0625831Tidy Boys157When Your Husbands Away0:0425831Tidy Boys158You Are Watching Tidy TV Sting0:2125831Tidy Boys159You Are Watching Tidy TV TW5 Version0:1925831Tidy Boys06 TDV Tracks160Bring The Beat Back9:025531Tony De Vit161Burning Up7:475531Tony De Vit162Dont Stop9:375531Tony De Vit163Feel My Love (Don't Go Away)8:505531Tony De Vit164Feel The Love8:355531Tony De Vit165Get Loose7:115531Tony De Vit166I Don't Care9:315531Tony De Vit167I Need Luvin8:545531Tony De Vit168Resistance Is Futile8:335531Tony De Vit169The Pill6:085531Tony De Vit170To The Limit9:245531Tony De Vit07 Bonus Tidy Albums171Milked1:12:35194Various37429Lee HaslamDJ Mix172Something For The Weekend TW349:52194Various25831Tidy BoysDJ Mix173Tidy Trax Mix Sampler For M8 Mag 199843:15194Various35368Untidy DJ'sUntidy DJsDJ Mix174Tidy Trax Spring Collection 2000 M8 Mag58:47194Various25831Tidy BoysDJ Mix175Tidy Trax Summer Collection 1999 M8 Mag1:00:10194Various35368Untidy DJ'sUntidy DJsDJ Mix176Tidy Two The Single Vol 11:19:53194Various140814Amadeus MozartDJ Mix177Tidyvision1:00:43194Various140814Amadeus MozartDJ Mix07 Bonus Tidy Albums \ 10 Years Of Tidy Album17810 Years Of Tidy [Disc 1]1:18:54194Various17910 Years Of Tidy [Disc 2]1:19:26194Various18010 Years Of Tidy [Disc 3]1:19:27194Various07 Bonus Tidy Albums \ Keep It Tidy 1181Keep It Tidy 1 Mix1:13:57194Various20165Ian MDJ Mix07 Bonus Tidy Albums \ Keep It Tidy 2182Keep It Tidy 2 [Disc 1]1:13:59194Various18435Lisa LashesDJ Mix183Keep It Tidy 2 [Disc 2]1:06:11194Various25831Tidy BoysDJ Mix07 Bonus Tidy Albums \ Keep It Tidy 3184Keep It Tidy 3 - [Disc 1]1:19:03194Various25831Tidy BoysDJ Mix185Keep It Tidy 3 - [Disc 2]1:18:54194Various37429Lee HaslamDJ Mix186Keep It Tidy 3 - [Disc 3]1:14:12194Various311628Spencer GDJ Mix07 Bonus Tidy Albums \ Keep It Tidy 4187Keep It Tidy 4 - (Disc 1)1:15:45194Various49155Paul MaddoxDJ Mix188Keep It Tidy 4 - (Disc 2)1:39:40194Various37429Lee HaslamDJ Mix189Keep It Tidy 4 - (Disc 3)1:19:58194Various233533Amber DDJ Mix190Keep It Tidy 4 - (Disc 4)1:16:31194Various25831Tidy BoysDJ Mix07 Bonus Tidy Albums \ Tidy Boys - Live & Dangerous191Ideal Weekender Live Set17:45194Various25831Tidy BoysDJ Mix192Live At The Tidy Weekender 258:19194Various25831Tidy BoysDJ Mix193Tidy Weekender Reunion Live Excerpt13:55194Various25831Tidy BoysDJ Mix194Weekender 15 Live Edit26:31194Various25831Tidy BoysDJ Mix07 Bonus Tidy Albums \ Tidy Trashed Bootlegs & Blags19501 Jon BW Mix19:23194Various476228Jon BWDJ Mix19602 Paul Maddox Mix18:51194Various49155Paul MaddoxDJ Mix19703 Guyver Mix19:32194Various20907GuyverDJ Mix19804 Tidy Boys Mix15:17194Various25831Tidy BoysDJ Mix19905 Trashed Bootlegs & Blags -Amber D Mix [Disc 2]1:13:39194Various233533Amber DDJ MixSN069 - Spacecorn - Axel F200Axel F (D And A Remix)5:4631575Spacecorn14630D & AD And ARemix201Axel F (Non Vocal)6:2231575Spacecorn202Axel F (Vocal Original)6:2231575SpacecornSYP101T - Barely Legal - The Future203The Future (Colin Barratt Remix)7:3585474Barely Legal113663Colin BarrattRemix204The Future (Guyver Remix)8:3485474Barely Legal20907GuyverRemix205The Future (Ingo Remix)8:2085474Barely Legal20958IngoRemix206The Future (Lee Pasch Remix)7:5685474Barely Legal101853Lee PaschRemixSYP102 - Maddox And Kaye - Tales From The Crypt207Tales From The Krypt (Ingo Remix)8:2149155Paul MaddoxMaddox&36378Ben KayeKaye20958IngoRemix208Tales From The Krypt (Original Mix)6:4849155Paul MaddoxMaddox&36378Ben KayeKayeSYP103 - Kernzy & Klemenza - Sack The Drummer209Sack The Drummer8:21106819Kernzy & Klemenza210You Freak7:27106819Kernzy & KlemenzaSYP104 - Chris C and Madame Zu Meets Ben Kaye - Rock The Target211Rock The Target (Barely Legal Remix)8:435522Chris C&11574Madam ZuMeet36378Ben Kaye85474Barely LegalRemix212Rock The Target (Original Mix)9:225522Chris C&11574Madam ZuMeet36378Ben KayeTDV001 - Beatniqz - Kick It213Kick It (BK Remix)7:5631566Beatniqz8349BKRemix214Kick It (Original)6:2331566BeatniqzTidy 101T - Handbaggers - U Found Out215U Found Out (Tradesmans Entrance Mix)6:13253949The HandbaggersHandbaggers216U Found Out (Handbag Mode Version)7:58253949The HandbaggersHandbaggers217U Found Out (Red Hand Gang Mix)6:40253949The HandbaggersHandbaggers9183The Red Hand GangRed Hand GangRemix218U Found Out (Strike Me Down Mix)8:45253949The HandbaggersHandbaggersTidy 102T - Rim Shot - Everybody On The Floor219Everybody On The Floor (Alfred Street Mix)6:4215363Rim Shot220Everybody On The Floor (Hyperlogic Mix)6:3315363Rim Shot1687HyperlogicRemix221Everybody On The Floor (Red Hand Gang Mix)7:4915363Rim Shot9183The Red Hand GangRed Hand GangRemix222Everybody On The Floor (Saint Mix)5:3515363Rim Shot110567Saint (3)RemixTidy 103T - Angel Deluxe - I Wanna Be With You223I Wanna Be With You (Brain Bashers Remix)7:3115364Angel Deluxe12764Brain BashersRemix224I Wanna Be With You (Deep Bass Demolition Mix)6:1215364Angel Deluxe225I Wanna Be With You (Magic Hand Mix)6:4615364Angel Deluxe226I Wanna Be With You (Original Mix)5:2315364Angel Deluxe227I Wanna Be With You (Red Hand Gang Mix)6:5215364Angel Deluxe9183The Red Hand GangRed Hand GangRemixTidy 104T - Handbaggers - U Found Out228U Found Out (Handbag Mode Mix)5:55253949The HandbaggersHandbaggers229U Found Out (Hyperlogic Mix)6:13253949The HandbaggersHandbaggers1687HyperlogicRemix230U Found Out (Radio Edit)3:46253949The HandbaggersHandbaggers231U Found Out (Tidy Girls Remix)7:53253949The HandbaggersHandbaggers212337Tidy GirlsRemix232U Found Out (Tom Wilson Mix)6:26253949The HandbaggersHandbaggers29105Tom WilsonRemix233U Found Out (Tony De Vit Remix)7:34253949The HandbaggersHandbaggers5531Tony De VitRemixTidy 105T - Benedict Brothers - 4 Those That Can Dance2344 Those That Can Dance (Keylock Base Mix)6:2715365Benedict Brothers2354 Those That Can Dance (Klubbed Up Remix)7:3915365Benedict Brothers68994Klubbed UpRemix2364 Those That Can Dance (Original Edit)4:1615365Benedict Brothers2374 Those That Can Dance (Original Mix)8:5815365Benedict Brothers2384 Those That Can Dance (Sub Junkies Dub)6:4615365Benedict Brothers68995Sub JunkiesRemixTidy 106T - Hyperlogic - U Got The Love239U Got The Love (Original Edit)3:541687Hyperlogic240U Got The Love (Original Mix)7:171687Hyperlogic241U Got The Love (Red Hand Gang Remix)11:011687Hyperlogic9183The Red Hand GangRed Hand GangRemix242U Got The Love (Red Hand Gang Vs Hyperlogic Edit)3:561687Hyperlogic1687HyperlogicRemix9183The Red Hand GangRed Hand GangRemix243U Got The Love (Red Hand Gang Vs Hyperlogic)3:581687Hyperlogic1687HyperlogicRemix9183The Red Hand GangRed Hand GangRemix244U Got The Love (Sub Junkies Remix)7:431687Hyperlogic68995Sub JunkiesRemix245U Got The Love (Ulysses 31 Remix)10:081687Hyperlogic364850Ulysses31Ulysses 31RemixTidy 107P - The Red Hand Gang - Gotta Keep On (Time For Gettin' Down)246Gotta Keep On (Time For Gettin' Down) (Lefthand Remix)8:469183The Red Hand Gang247Gotta Keep On (Time For Gettin' Down) (Right Hand Remix)10:479183The Red Hand GangTidy 108T - Allnighters - Black Is Black248Black Is Black (Lexa Remix)7:0415366Allnighters63680LexaRemix249Black Is Black (Original Mix)7:1015366Allnighters250Black Is Black (Radio Edit)3:3715366Allnighters251Black Is Black (Sharp Remix)7:1515366Allnighters7527The Sharp BoysSharpRemix252Black Is Black (UK Gold Remix)6:3615366Allnighters100940UK Gold (2)Remix253Black Is Black (Yekuana Remix)9:0315366Allnighters13801YekuanaRemixTidy 109T - UK Gold - Nuclear Shower254Nuclear Shower (A.P.A. Mix)7:21100940UK Gold (2)1588109A.P.A.Remix255Nuclear Shower (Benedict Bros Remix)6:46100940UK Gold (2)15365Benedict BrothersBenedict BrosRemix256Nuclear Shower (Lexa Mix)6:13100940UK Gold (2)63680LexaRemix257Nuclear Shower (Original)7:36100940UK Gold (2)258Nuclear Shower (UK Gold Remix)5:46100940UK Gold (2)100940UK Gold (2)RemixTidy 110T - Benedict Brothers - Honey Child259Honey Child (Original)6:4915365Benedict Brothers260Honey Child (Sapphire And Steel Remix)8:3115365Benedict Brothers173403Sapphire & SteelSapphire And SteelRemixTidy 111T - Dyewitness - What Would You Like To Hear Again261What Would You Like To Hear Again (Benedict Bros Remix)5:35186453Dyewitness15365Benedict BrothersBenedict BrosRemix262What Would You Like To Hear Again (Dancefloor Glory Mix)7:42186453Dyewitness34189Dancefloor GloryRemix263What Would You Like To Hear Again (Ian M Trade Mix)8:17186453Dyewitness20165Ian MRemix264What Would You Like To Hear Again (Original Mix)4:28186453Dyewitness265What Would You Like To Hear Again (Pete Wardman Trade Mix)6:39186453Dyewitness25320Pete WardmanRemix266What Would You Like To Hear Again (Tidyman Mix)6:31186453Dyewitness1141005The TidymanTidymanRemix267What Would You Like To Hear Again (Tidyman Radio Edit)3:37186453Dyewitness1141005The TidymanTidymanRemixTidy 112T - Bulletproof - Mistakes268Mistakes (Ground Zero Mix)8:4847785Bulletproof (2)12747Ground ZeroRemix269Mistakes (Original 12 Inch Mix)7:3547785Bulletproof (2)Tidy 113T - Hyperlogic - Only Me270Only Me (Hyperlogic '98 Dub)6:381687Hyperlogic1687HyperlogicRemix271Only Me (Invisible Man Remix)7:211687Hyperlogic39260The Invisible Man (3)Remix272Only Me (Matt Kootchi Deep Freeze Dub)6:431687Hyperlogic33991Matt KootchiKootchiRemix273Only Me (Original Red Vinyl Edit)4:021687Hyperlogic274Only Me (Original Red Vinyl Remix)6:001687Hyperlogic275Only Me (P And C Remix)7:451687Hyperlogic71255P + CP And CRemix276Only Me (Red Jerry '95 Remix)8:101687Hyperlogic277Only Me (Rhythm Masters To The Groove Mix)6:451687Hyperlogic1649Rhythm MastersRemix278Only Me (Tidyman Remix)6:231687Hyperlogic1141005The TidymanTidymanRemix279Only Me (Tin Tin Out 2000 Remix)9:261687Hyperlogic1681Tin Tin OutRemix280Only Me (Untidy Dub)6:221687Hyperlogic11712Untidy DubsRemixTidy 114T - Bulletproof - Mistakes Remixes281Mistakes (Knuckleheadz Remix)6:5047785Bulletproof (2)11749KnuckleheadzRemix282Mistakes (Steve Thomas Remix)7:1047785Bulletproof (2)11146Steve ThomasRemixTidy 115T - Steve Blake - Expression283Expression (F1 Remix)8:2434674Steve Blake25316F1Remix284Expression (Origianl Mix)6:3534674Steve BlakeTidy 116 AS - Keep It Tidy - Album Sample Vol 1285Black Is Black (Ian M Remix)6:5215366Allnighters20165Ian MRemix286I Wanna Be With You (Brain Bashers Remix)7:3115364Angel Deluxe12764Brain BashersRemixTidy 117 AS - Keep It Tidy Album Sample Vol 2287Gotta Keep On (Time 4 Gettin' Down) (Jon The Dentist Remix)6:419183The Red Hand GangRed Hand Gang5539Jon The DentistRemix288Everybody On The Floor (Rachel Auburn Remix)6:5415363Rim ShotRimshot8337Rachel AuburnRemixTidy 118T - Signum - What Ya Got 4 Me289What Ya Got 4 Me (7 Inch Vocal Edit)4:324629Signum290What Ya Got 4 Me (Captain Tinrib Remix)7:374629Signum5969Captain TinribRemix291What Ya Got 4 Me (Original 12 Inch Instrumental)7:224629Signum292What Ya Got 4 Me (Plug N Play Remix)7:574629Signum20445Plug 'N' PlayPlug N PlayRemix293What Ya Got 4 Me (Untidy Dub)7:264629Signum11712Untidy DubsRemix294What Ya Got 4 Me (Vocal 12inch Mix)7:224629Signum295What Ya Got 4 Me (Vocal Edit)4:324629SignumTidy 119T - Trauma - Higher296Higher9:058352Trauma297You'll Know6:128352TraumaTidy 120T - Recycle EP298Only Me (Doug Laurent)6:381687Hyperlogic11835Doug LaurentRemix299Pressure (Baby Doc Remix) (Master)6:134629Signum71Baby DocRemixTidy 120T2 - Recycle EP (Disc 2)300U Got The Love (Mondos Poolside Pumper Remix)8:181687Hyperlogic11009MondoRemix301Expression (Signum Remix)7:3634674Steve Blake4629SignumRemixTidy 121T - Travel - Bulgarian302Bulgarian (Original Edit)3:5310755Travel303Bulgarian (Signum Remix)6:3710755Travel4629SignumRemixTidy 121T2 - Travel - Bulgarian (Disc 2)304Bulgarian (Hyperlogic Remix)8:2010755Travel1687HyperlogicRemix305Bulgarian (Insisions Remix)7:2910755Travel5538IncisionsRemixTidy 122T - Trauma - Party Time306Fantastic9:018352Trauma307Party Time8:288352TraumaTidy 123T - Tidy Girls EP308Lookin' Good6:4718435Lisa Lashes309Screwdriver6:328337Rachel AuburnTidy 123T2 - Tidy Girls EP310I Need U8:0321059Anne Savage311Rock With Me7:508339Lisa Pin-UpLisa Pin UpTidy 124T - Cunaro & Dean - It's About Time312Cunaro & Dean - It's About Time (Freak & Mac Zimms Remix)6:3263669Cunaro & Dean205062The Freak & Mac ZimmsFreak & Mac ZimmsRemix313Cunaro & Dean - It's About Time (Original Mix)7:0063669Cunaro & Dean314Cunaro & Dean - It's About Time (UK Gold Remix)6:4163669Cunaro & Dean100940UK Gold (2)RemixTidy 125T - Dave Holmes - Samsara315Samsara (Original 12 Inch)5:5732921Dave Holmes316Samsara (Steve Morley Radio Edit)3:3132921Dave Holmes12750Steve MorleyRemix317Samsara (Steve Morley Remix)6:0132921Dave Holmes12750Steve MorleyRemixTidy 126T - Jon The Dentist & Ollie Jaye - Imagination318Imagination (Hard House Rework)8:4541595Jon The Dentist & Ollie JayeJon The Dentist And Ollie Jaye319Imagination (Untidy Dub)7:2241595Jon The Dentist & Ollie JayeJon The Dentist And Ollie Jaye11712Untidy DubsRemixTidy 126T2 - Jon The Dentist And Ollie Jaye - Imagination320Imagination (Barabas & OD1 Epic Trance Score)8:3141595Jon The Dentist & Ollie JayeJon The Dentist And Ollie Jaye40042Barabas & OD1Remix321Imagination (K90 Paradise Remix)7:5341595Jon The Dentist & Ollie JayeJon The Dentist And Ollie Jaye5987K90RemixTidy 127T - Ian M - Dreamer322Dreamer (Original)7:4420165Ian M323Dreamer (Pants & Corset Remix)8:2420165Ian M25830Pants & CorsetRemixTidy 128T - Signum Feat. Scott Mac - Coming On Strong324Contained Project037:034629Signum325Coming On Strong (Original Radio Edit)3:264629SignumFeat.38222Scott Mac326Coming On Strong (DJ Jurden Remix)7:164629SignumFeat.38222Scott Mac17260DJ JurgenDJ JurdenRemix327Coming On Strong (Bobellow Vs Euphoria Remix)8:164629SignumFeat.38222Scott Mac88083EuphoriahEuphoriaRemix507353Giorgio BobellowBobellowRemix328Coming On Strong (Hyperlogic Remix)7:214629SignumFeat.38222Scott Mac1687HyperlogicRemix329Coming On Strong (OD404 Remix)7:384629SignumFeat.38222Scott Mac11333OD404Remix330Coming On Strong (Original)7:594629SignumFeat.38222Scott Mac331Coming On Strong (Teisto Remix)6:384629SignumFeat.38222Scott Mac6197DJ TiëstoTeistoRemix332Coming On Strong (Untidy Dub)6:274629SignumFeat.38222Scott Mac11712Untidy DubsRemixTidy 129T - Tony De Vit - Are You All Ready333Are You All Ready9:265531Tony De Vit334Splashdown8:505531Tony De VitTidy 130T - The Generator - Where Are You Now335Where Are You Now (Airstyles)8:1528091The Generator336Where Are You Now (Moonman Remix)7:0828091The Generator2433MoonmanRemix337Where Are You Now (Trauma Remix)8:5928091The Generator8352TraumaRemixTidy 130T2 - The Generator - Where Are You Now338Where Are You Now (Original Mix)9:1328091The Generator339Where Are You Now (Stimulant Mix)7:3728091The Generator32426Stimulant DJsStimulantRemix340Where Are You Now (Untidy Dub)7:5428091The Generator11712Untidy DubsRemixTidy 131T - UK Gold - Cuz The House Gets Warm341Cuz The House Gets Warm (Original Mix)6:56100940UK Gold (2)342Cuz The House Gets Warm (Trauma Remix)8:53100940UK Gold (2)8352TraumaRemixTidy 132T - Sundissential EP343Destroy The Sound8:1415223Andy Farley344I Need A Fix7:4663230Nick RaffertyTidy 132T2 - Sundissential EP (Disc 2)345We Came We Saw5:3618435Lisa Lashes346I Believe In Life7:5463658Paul KershawTidy 133T - Barabas And OD1 - Jack Of Klubz347Jack Of Klubz (Original Mix)6:2640042Barabas & OD1Barabas And OD1348Jack Of Clubs (Tidy Boys Mix)6:3340042Barabas & OD1Barabas And OD125831Tidy BoysRemix349Jack Of Klubz (Tidy Boys Unfinished Demo Version)6:4940042Barabas & OD1Barabas And OD125831Tidy BoysRemixTidy 134T - Trauma Trax350Salt And Shake8:088352Trauma351Get Back8:588352TraumaVs15223Andy Farley352They're Out To Get Me8:428352TraumaVs15510Fergie353Deep Swarm9:178352TraumaVs20165Ian M354Rok The Beat9:228352TraumaVs105162John Weatherley355Don't Stop7:588352TraumaVs100940UK Gold (2)Tidy 135T - Jon The Dentist Vs Ollie Jaye - Feel So Good356Feel So Good (Dave Holmes Radio Edit)3:3141595Jon The Dentist & Ollie JayeJon The Dentist Vs Ollie Jaye32921Dave HolmesRemix357Feel So Good (Original 12 Inch Mix)4:4441595Jon The Dentist & Ollie JayeJon The Dentist Vs Ollie Jaye358Imagination (2000 Remix)6:5741595Jon The Dentist & Ollie JayeJon The Dentist Vs Ollie JayeTidy 135T2 - Jon The Dentist Vs Ollie Jaye - Feel So Good (Disc 2)359Feel So Good (Jon The Dentist Radio Edit)3:5541595Jon The Dentist & Ollie JayeJon The Dentist Vs Ollie Jaye5539Jon The DentistRemix360Feel So Good (Untidy Dub)4:2941595Jon The Dentist & Ollie JayeJon The Dentist Vs Ollie Jaye11712Untidy DubsRemix361Feel So Good (Vinylgroover And The Red Hed Remix)6:5241595Jon The Dentist & Ollie JayeJon The Dentist Vs Ollie Jaye15346Vinylgroover & The Red HedVinylgroover And The Red HedRemixTidy 136T - Tidy Girls Presents...Anne Savage362Real Freaks (Scooper And Sticks Remix)5:1521059Anne Savage21060Scooper & SticksScooper And SticksRemix363Real Freaks (UK Gold's Fourplay Remix)7:3121059Anne Savage100940UK Gold (2)RemixTidy 137T - Brainbashers - Do It Now364Do It Now (Original Mix)7:3512764Brain Bashers365Do It Now (Houserockers Bug Powder Remix)8:1212764Brain BashersBrainbashers29609HouserockersRemix366Earthquake7:5812764Brain BashersBrainbashersTidy 137T2 - Brainbashers - Do It Now367Brainbashers - Do It Now (Hijackers Remix)7:1212764Brain BashersBrainbashers63651Hi-JackersHijackersRemix368Do It Now (Lock N Load Remix)6:5012764Brain BashersBrainbashers38943Lock 'N LoadLock N LoadRemixTidy 138T - Lisa Lashes - Unbeleivable369Dance 2 The House (Don't Go) (Original 12 Inch)7:1918435Lisa Lashes370Unbelievable8:1018435Lisa LashesTidy 139T - The Originator - Give It All You Got371Give It All You Got (Brainbashers Remix)7:5663650The Originator12764Brain BashersBrainbashersRemix372Give It All You Got (John Whiteman & Ingo Remix)7:1263650The Originator20958IngoRemix32919John WhitemannJohn WhitemanRemix373Give It All You Got (Klub Mix)7:5163650The Originator374Give It All You Got (Lisa Lashes Remix)8:2063650The Originator18435Lisa LashesRemixTidy 140T - Tony De Vit - The Dawn375The Dawn (Original Mix)8:415531Tony De Vit376The Dawn (Paul Janes Edit)4:105531Tony De Vit25832Paul JanesRemix377The Dawn (Paul Janes Remix)9:445531Tony De Vit25832Paul JanesRemixTidy 141T - Artemesia - Bits And Pieces378Bits And Pieces (BK Remix)8:391686Artemesia8349BKRemix379Bits And Pieces (Hi-Jackers Remix)7:291686Artemesia63651Hi-JackersRemix380Bits And Pieces (Tidy Boys Remix)7:261686Artemesia25831Tidy BoysRemixTidy 141T2 - Artemesia - Bits And Pieces381Bits And Pieces (OD404 Remix)7:061686Artemesia11333OD404Remix382Bits And Pieces (Original Mix)5:171686Artemesia383Bits And Pieces (UK Gold Remix)7:591686Artemesia100940UK Gold (2)RemixTidy 142T - Stimulant DJ's - Hoovertime384Hoovertime (Captain Tinrib Remix)6:4632426Stimulant DJsStimulant DJ's5969Captain TinribRemix385Stimulant DJ's - Hoovertime (Original Mix)8:0332426Stimulant DJsStimulant DJ'sTidy 143T - Dyewitness - Observing The Earth386Observing The Earth (Ian M Remix)9:07186453Dyewitness20165Ian MRemix387Observing The Earth (Original Mix)4:19186453Dyewitness388Observing The Earth (Stimulant DJ's Remix)7:35186453Dyewitness32426Stimulant DJsStimulant DJ'sRemixTidy 144T - The Grand - Reload389Reload (Billy 'Daniel' Bunter & Jon Doe Remix)7:4763643The Grand12070Billy Daniel Bunter & Jon DoeBilly 'Daniel' Bunter & Jon DoeRemix390Reload (Original Mix)6:5163643The GrandTidy 145T - John Whitemann - Can't Beat The System391Can't Beat The System (Ingo Remix)7:2232919John Whitemann20958IngoRemix392Can't Beat The System (Original Mix)6:5932919John WhitemannTidy 146T - Smokin' Bert Cooper - Gettin' Warm393Getting Warm (Ingo Mix)7:2517630Smokin' Bert CooperSmokin Bert Cooper20958IngoRemix394Getting Warm (One Eyed Jack Mix)7:1317630Smokin' Bert CooperSmokin Bert Cooper68613One Eyed JackRemix395Getting Warm (Original Mix)6:4517630Smokin' Bert CooperSmokin Bert CooperTidy 147T - The Guv'nors - Busted396Busted7:0731573The GuvnorsThe Guv'nors397Dynamite7:2431573The GuvnorsThe Guv'norsTidy 148T - Bulletproof - Say Yeah398Dance To The Rhythm7:3647785Bulletproof (2)399Say Yeah7:0747785Bulletproof (2)Tidy 149T - Ingo - Ready 4 Dis400My House7:2520958Ingo401Ready 4 Dis7:2220958IngoTidy 150T - Stimulant DJ's - Are You Serious402Are You Serious (Original Mix)8:2432426Stimulant DJsStimulant DJ's403Are You Serious (Paul Glazby Remix)7:4332426Stimulant DJsStimulant DJ's18360Paul GlazbyRemixTidy 151T - Jon Bishop - I'm In Control404I'm In Control (Club Caviar Remix)6:0538228Jon Bishop11803Club CaviarRemix405I'm In Control (Original Mix)7:5538228Jon Bishop406I'm In Control (Smokin' Bert Cooper Remix)7:0438228Jon Bishop17630Smokin' Bert CooperRemixTidy 152T - Haziza - One More407One More (Original Mix)5:5833759Haziza408One More (Smokin' Bert Cooper Remix)6:3433759Haziza17630Smokin' Bert CooperRemixTidy 152T2 - Haziza - One More409One More (Flash Harry Remix)8:3933759Haziza21472Flash HarryRemix410One More (Jon Doe Remix)6:4833759Haziza6070Jon DoeRemixTidy 153T - The Crow - What Ya Lookin' At411What Ya Lookin' At (Bulletproof Remix)8:0920840DJ The CrowThe Crow47785Bulletproof (2)Remix412The Crow - What Ya Lookin' At (Lisa Lashes and Anne Savage Vs Ingo Remix)8:4220840DJ The CrowThe Crow21059Anne SavageRemix20958IngoRemix18435Lisa LashesRemix413The Crow - What Ya Lookin' At (Original Club Mix)7:0420840DJ The CrowThe Crow414The Crow - What Ya Lookin' At (Radio Edit)3:3920840DJ The CrowThe Crow415What Ya Lookin' At (Steve Thomas Remix)7:5920840DJ The CrowThe Crow11146Steve ThomasRemixTidy 154T - Dave Holmes - Devotion416Devotion (Original Mix)7:3232921Dave Holmes417Devotion (Stimulant DJ's Remix)10:0632921Dave Holmes32426Stimulant DJsStimulant DJ'sRemixTidy 154T2 - Dave Holmes - Devotion418Devotion (Paul Janes Remix)8:4732921Dave Holmes25832Paul JanesRemix419Devotion (Sam E Reeve Remix)7:3332921Dave Holmes63211Samuel E ReeveSam E ReeveRemixTidy 155T - E Trax - Let's Rock420Let's Rock (Alan Thompson Alter Ego Remix)7:297600E-TraxE Trax16614Alan ThompsonRemix421Let's Rock (Pants And Corset Remix)9:577600E-TraxE Trax25830Pants & CorsetRemixTidy 155T2 - E Trax - Let's Rock422Let's Rock (Steve Thomas Remix)7:007600E-TraxE Trax11146Steve ThomasRemix423Let's Rock (BK's Nukleuz Remix)8:017600E-TraxE Trax8349BKRemixTidy 155T3 - E Trax - Let's Rock424Let's Rock (Tony de Vit Remix)8:457600E-TraxE Trax5531Tony De VitRemix425Let's Rock (Ian M Remix)7:177600E-TraxE Trax20165Ian MRemixTidy 156T - E-Wok - Go Back426Go Back (Mr Bishi Remix)6:4721468E-Wok20179Mr. BishiMr BishiRemix427Go Back (Original Mix)5:2521468E-WokTidy 156T2 - E-Wok - Go Back428Go Back (Samuel E Reeve Remix)8:4421468E-Wok63211Samuel E ReeveRemix429Go Back (Trauma Remix)8:5321468E-Wok8352TraumaRemixTidy 157T - Nik Denton Vs Paul King - Spacehopper430Spacehopper (Original Mix)9:2163638Nik Denton Vs Paul King431Spacehopper (Overload's Shaking Cubicle Mix)9:0863638Nik Denton Vs Paul King63639Overload (2)RemixTidy 158T - Heaven's Cry - Til Tears Do Us Part432'Til Tears Do Us Part (Radio Edit)3:2064206Heaven's Cry433Til Tears Do Us Part (Club Mix)7:1564206Heaven's Cry434Til Tears Do Us Part (Flash Harry Remix)9:1964206Heaven's Cry21472Flash HarryRemixTidy 158T2 - Heaven's Cry - Til Tears Do Us Part435'Til Tears Do Us Part (Starfire Remix)5:1064206Heaven's Cry21473StarfireRemix436Til Tears Do Us Part (Stimulant DJ's Remix)9:1164206Heaven's Cry32426Stimulant DJsStimulant DJ'sRemixTidy 159T - Yoda - Definitely437Definitely (DJ Scot Project)8:3913796Yoda16329DJ Scot ProjectRemix438Definitely (Original)6:4613796YodaTidy 160T - Ingo - Move439Boom8:4420958Ingo440Move6:3420958IngoTidy 161T - Transisters - Backwards Bitch441Backwards Bitch (Dean Facer Remix)7:2821469Transisters21470Dean FacerRemix442Transisters - Backwards Bitch (Diablo Remix)7:2721469Transisters4924DiabloRemixTidy 162T - Satellite Kidz - Can U Feel It443Can U Feel It6:4421480Satellite Kidz444Funky Nuts8:0421480Satellite KidzTidy 163T - Signum - What Ya Got 4 Me445What Ya Got 4 Me (Flash Harry Remix)8:264629Signum21472Flash HarryRemix446What Ya Got 4 Me (JFK Remix)7:424629Signum20172JFKRemix447What Ya Got 4 Me (Kumara Remix)7:144629Signum11680KumaraRemix448What Ya Got 4 Me (Original Radio Edit)4:324629Signum449What Ya Got 4 Me (Stimulant DJ's Remix)9:154629Signum32426Stimulant DJsStimulant DJ'sRemixTidy 164T - Question Mark - The Birds450The Birds (Original Mix)5:4821652Question Mark451The Birds (Paul Maddox Remix)6:2621652Question Mark49155Paul MaddoxRemixTidy 165T - Succargo - Once Again452Get It Higher6:5541070Succargo453Once Again6:2741070SuccargoTidy 166T - Lee Haslam - Here Comes The Pain454Here Comes The Pain7:1837429Lee Haslam455I Need U8:1637429Lee HaslamTidy 167T - DJ Shredda - Chainsaw456Chainsaw (The Club Mix)5:4333338DJ Shredda457Chainsaw (The Crow Remix)6:5433338DJ Shredda20840DJ The CrowThe CrowRemix458Chainsaw (The Freak Remix)6:2733338DJ Shredda63938The FreakRemix459Chainsaw (Ubserver Remix)3:1133338DJ ShreddaTidy 168T - Defective Audio - Last Orders460Last Orders8:3224085Defective Audio461Skyline7:3624085Defective AudioTidy 169T - Recycle EP 2462Real Freaks (The Hoodlums All Freaked Out Remix)5:3221059Anne Savage19608The HoodlumsRemix463Higher (Ultra Violent Remix)8:458352TraumaTidy 170T - Paul Maddox - Revolution464Raid8:0049155Paul Maddox465Revolution8:4249155Paul MaddoxTidy 171T - Champion Burns - It's In My Head466It's In My Head (Original Mix)7:2315348Champion Burns467It's In My Head (Paul Maddox Remix)7:0515348Champion Burns49155Paul MaddoxRemixTidy 172T - Paul Glazby - I'm Your Nightmare468Funky Regulator6:4218360Paul Glazby469I'm Your Nightmare8:1418360Paul GlazbyTidy 173T - Psyclone - Good Side470Good Side (Andy Farley Remix)8:2838231Psyclone15223Andy FarleyRemix471Good Side (Guyver Remix)7:0138231Psyclone20907GuyverRemixTidy 174T - Jez & Charlie - It's About Music472It's About Music (Original Mix)7:1124084Jez & CharlieJez And Charlie473It's About Music (Stimulant DJ's Remix)8:2624084Jez & CharlieJez And Charlie32426Stimulant DJsStimulant DJ'sRemixTidy 175T - Lisa Lashes Vs Lab4 - Unbelievable474Unbelievable (Lab4's Doubting Thomas Remix)7:1718435Lisa LashesVs19367Lab 4Lab419367Lab 4Lab4Remix475Unbelievable (Lab4's Licensed To Thrill Remix)7:2718435Lisa LashesVs19367Lab 4Lab419367Lab 4Lab4RemixTidy 176T - Untidy Dubs - Funky Groove476Funky Groove (Flash Harry Remix)8:4311712Untidy Dubs21472Flash HarryRemix477Funky Groove (Kronos Remix)8:0711712Untidy Dubs28005KronosRemixTidy 177T - MAQ - Attention478Attention6:4888802M.A.Q.M.A.Q479Groove, Stop, Jump7:3288802M.A.Q.M.A.QTidy 179T - Jon Bishop - Stalker480Stalker (Hoodlums Remix)6:3138228Jon Bishop19608The HoodlumsHoodlumsRemix481Stalker (Original Mix)7:2838228Jon BishopTidy 180T - Paul Maddox - Tension482Tension (Original Mix)7:1749155Paul Maddox483Tension (The Freak Remix)7:1649155Paul Maddox63938The FreakRemixTidy 181T - Tony De Vit - I Don't Care484I Don't Care (BK Remix)9:565531Tony De Vit8349BKRemix485I Don't Care -(Original Trade Mix)9:295531Tony De VitTidy 182T - Committee - Welcome (I Said Shut Up)486Welcome I Said Shut Up -(Paul Janes 'Through The K Hole' Remix)8:1343570CommitteeThe Committee25832Paul JanesRemix487Welcome I Said Shut Up (Streetforce And OGR Remix)6:5543570CommitteeThe Committee79422O.G.R.OGRRemix125461Street ForceStreetforceRemixTidy 183T - Paul Maddox And DJ GRH - New York New York488New York New York (OD404 Remix)7:3549155Paul MaddoxVs229663DJ GRH11333OD404Remix489New York New York (Original Mix)8:1749155Paul MaddoxVs229663DJ GRHTidy 184T - Recycled EP2 Part 2490U Found Out (Simon Parkes Remix)7:00253949The HandbaggersHandbaggers62818Simon ParkesRemix491Bulgarian (Paul Maddox Remix)8:3010755Travel49155Paul MaddoxRemixTidy 185T - Ben Kaye - Technology492Constitution7:4636378Ben Kaye493Techno-ology6:4136378Ben KayeTidy 186T - Anne Savage - Hellraiser494Four Leaf Clover7:5321059Anne Savage495Hellraiser7:0021059Anne SavageTidy 187T - Ingo - 48 Hours49648 Hours6:2420958Ingo497Song 146:3820958IngoTidy 188T - Ben Kaye - Go F·ck Yourself498Go Fuck Yourself7:4636378Ben Kaye499The Other Side7:3736378Ben KayeTidy 189T - Champion Burns - Hell's Reign500Hell's Reign (Ben Kaye Remix)7:5815348Champion Burns36378Ben KayeRemix501Hell's Reign (Original)8:0115348Champion BurnsTidy 190T - SJ & Baby Doc - I Need You502I Need U (Glazby And Maddox Remix)8:1438309Baby Doc & S-JSJ And Baby Doc18360Paul GlazbyGlazbyRemix49155Paul MaddoxMaddoxRemix503I Need U (Original Mix)7:5838309Baby Doc & S-JSJ And Baby DocTidy 191T - Rundell & Maddox - So Long504Homicide6:59129038Rundell & Maddox505So Long8:12129038Rundell & MaddoxTidy 192T - Nick Rafferty And PBS - Groovin'506PBS - Groovin' (Original Mix)7:2863230Nick RaffertyAnd115089PBS (Phatt Bloke & Slim)PBS507Groovin' (Jez And Charlie Remix)7:3663230Nick RaffertyVs115089PBS (Phatt Bloke & Slim)PBS24084Jez & CharlieJez And CharlieRemixTidy 193T - Lab4 - Candyman508Candyman (Guyver Remix)8:4419367Lab 4Lab420907GuyverRemix509Candyman (Original Mix)6:5519367Lab 4Lab4Tidy 194T - Lisa Lashes - What Can You Do 4 Me510What Can You Do For Me (Original Mix)7:4618435Lisa Lashes511What Can You Do For Me (Tidy Boys Remix)8:5218435Lisa Lashes25831Tidy BoysRemixTidy 194T2 - Lisa Lashes - What Can You Do 4 Me512What Can You Do 4 Me (Haslam & Guyver's Tidy Two Remix)8:5918435Lisa Lashes20907GuyverRemix37429Lee HaslamHaslamRemix513What Can You Do For Me (Colin Barratt Remix)8:3418435Lisa Lashes113663Colin BarrattRemixTidy 195T - Paul Maddox Feat Niki Mak - Synthosaurus514Synthosaurus (Moments Of Madness Dub)6:4849155Paul MaddoxFeat.68702Niki Mak515Synthosaurus (Original Mix)6:4849155Paul MaddoxFeat.68702Niki MakTidy 196T - Tara Reynolds - Mercy516Mercy (OD404 Remix)7:4694855Tara Reynolds11333OD404Remix517Mercy (Original Mix)8:4094855Tara ReynoldsTidy 197T - Champion Burns - Scratchism518Scratchism (Original Mix)7:5315348Champion Burns519Scratchism (Sam E Reeve Remix)7:0315348Champion Burns63211Samuel E ReeveSam E ReeveRemixTidy 198T - Colin Barratt - Attack Ya Bitch520Attack Ya Bitch8:05113663Colin Barratt521Stop The Rock7:30113663Colin BarrattTidy 199T - Rundell And Maddox - Everybodies Hardcore522Everybody's Hardcore6:40129038Rundell & Maddox523Rumpshaker7:16129038Rundell & MaddoxTidy 200T - NRG - Never Lost His Hardcore524Never Lost His Hardcore (Baby Doc 97 Remix)6:3120485N.R.G.NRG71Baby DocRemix525Never Lost His Hardcore (Ilogik Remix)8:0520485N.R.G.NRG38229IlogikRemix526Never Lost His Hardcore (Nick Sentience Remix)7:5220485N.R.G.NRG4013Nick SentienceRemix527Never Lost His Hardcore (Paul Maddox Remix)8:1820485N.R.G.NRG49155Paul MaddoxRemixTidy 200T2 - NRG - Never Lost His Hardcore528Never Lost His Hardcore (Baby Doc 97 Remix)6:3120485N.R.G.NRG71Baby DocRemix529Never Lost His Hardcore (Nick Sentience Remix)7:5220485N.R.G.NRG4013Nick SentienceRemixTidy 201T - Ingo Vs Charlotte Birch · Colin Barratt Vs Charlottle Birch530Prophecy8:17506718Colin BarrettVs63234Charlotte Birch531Romper Stomper9:1820958IngoVs63234Charlotte BirchTidy 202T - Shaun M & Abandon - Another Man's Language532Another Man's Language (Equinox Remix)6:55207355Shaun M&104447Abandon6216EquinoxRemix533Another Man's Language (Original Mix)7:56207355Shaun M&104447AbandonTidy 203T - Ingo And Eseni DJ - Scare Tactics534Drifting6:5520958Ingo&227276Eseni DJ535Scare Tactics8:5420958Ingo&227276Eseni DJTidy 204T - Vinylgroover & The Red Head - The Answer536The Answer (2004 Rework)7:2515346Vinylgroover & The Red HedVinylgroover And Red HeadPresents78954Bam Bam & PebblesBB And P537The Answer (Original Mix)7:2015346Vinylgroover & The Red HedVinylgroover And Red HeadPresents78954Bam Bam & PebblesBB And PTidy 205T - Nick Rowland - Fireball538Fireball6:53130735Nick Rowland539Overdrive7:32130735Nick RowlandTidy 206T - Nick Rafferty And The Coalition - Shine540Shine7:34146655Nick Rafferty & The CoalitionNick Rafferty And The Coalition541To The Limit7:45146655Nick Rafferty & The CoalitionNick Rafferty And The CoalitionTidy 207T - Anne Savage Vinylgroover - Intoxicating Rhythm542Intoxicating Rhythm (Big Drum Dub Mix)7:0021059Anne Savage,15346Vinylgroover & The Red HedVinylgroover And The Red Hed543Intoxicating Rhythm (Original)6:4321059Anne Savage,15346Vinylgroover & The Red HedVinylgroover And The Red HedTidy 208T - Ingo Presents... EP544A Paradox7:2820958IngoPresents...757477Caroline Banks545Cruize9:1020958IngoPresents...232913GuffyTidy 209T - Chris C & Madam Zu Meets Ben Kaye - Fierce (The Lovetribe Theme)546Fierce (Original Mix)7:545522Chris C547Fierce (Paul Maddox Remix)7:095522Chris C49155Paul MaddoxRemixTidy 210T - Gaz West - Playing With Fire548Playing With Fire (Dark By Design Remix)8:01491321Gareth WestGaz West75559Dark By DesignRemix549Playing With Fire (Original Mix)7:45491321Gareth WestGaz WestTidy 211T - Sebanelli & Oddbod - Your Ass Is Mine550Your Ass Is Mine (Madam Zu Remix)9:3361939Sebanelli&285423Oddbod11574Madam ZuRemix551Your Ass Is Mine (Original Mix)9:3261939Sebanelli&285423OddbodTidy 212T - Flash Headz - Wizards Of The Sonic552Promised Land8:04285177FlashheadzFlash Headz553Wizards Of The Sonic8:29285177FlashheadzFlash HeadzTidy 213T - Wid & Ben - Fight Yourself554Fight Yourself (Original Mix)8:26151851Wid & Ben555Fight Yourself (Colin Barratt Mix)7:58151851Wid & Ben113663Colin BarrattRemixTidy 214T - Harry Diamond - Encounters556Encounters7:24121471Harry Diamond557The March6:40121471Harry DiamondTidy 215T - Rob Tissera & Guyver - Feel The Drums558Feel The Drums (Original)8:093631Rob Tissera&20907Guyver559Feel The Drums (Paul Maddox Remix)8:433631Rob Tissera&20907Guyver49155Paul MaddoxRemixTidy 216T - Technikal Presents Pierre Pienaar & Carl Nicholson560System Shock8:17152564TechnikalPresents133972Carl Nicholson561Global Panic8:36152564TechnikalPresents285420Pierre PienaarTidy 217T - Captain Tin Rib And Sol Ray - Attack Of The 50ft DJ562Attack Of The 50ft DJ (High And Hard Mix)7:545969Captain TinribTin Rib&63220Sol Ray563Attack Of The 50ft DJ (Original Mix)7:475969Captain TinribTin Rib&63220Sol RayTidy 218T - Breather - Come On564Come On (Ben Kaye Remix)8:2664277Breather36378Ben KayeRemix565Come On (Euphony Remix)9:0464277Breather215254Euphony (2)RemixTidy 219T - Nick Rowland - Be Alive566Be Alive7:36130735Nick Rowland567H2O7:38130735Nick RowlandTidy 220T - Lox And Dark By Design - Strapped In568Fucked Up7:53151793Lox&75559Dark By Design569Strapped In9:26151793Lox&75559Dark By DesignTidy 221T - Rumble & Maddox - Party People570Party People (Original Mix)7:45282321Rumble & MaddoxMaddox And Rumble571Party People (Superfast Oz Remix)7:18282321Rumble & MaddoxMaddox And Rumble102951Superfast OzRemixTidy 222T - Paul Glazby - I Need To Know572I Need To Know (Original)8:3818360Paul Glazby573I Need To Know (Terry Chango Remix)6:5318360Paul Glazby314464Terry ChangoRemixTidy 223T - Guyver - Persistance574Persistence (Original Mix)7:1520907Guyver575The Missing Channel8:3820907GuyverTidy 224T - Lee Haslam - El Diablo Adentro576El Diablo Adentro9:1337429Lee Haslam577Equilibrium9:1337429Lee HaslamTidy 225T - Human Resource - Dominator578Dominator (Paul Maddox Remix)8:204066Human Resource49155Paul MaddoxRemix579Dominator (Stimulator Remix)7:144066Human Resource90517StimulatorRemixTidy 226T - Organ Donors - Turntablism580Turntablism (Original Mix)7:1420176Organ Donors581Turntablism (Public Domain Sound System Remix)7:2420176Organ Donors4443Public DomainRemixTidy 227T - Carl Nicholson - Blueprint (Tara's Theme)582Blueprint (Taras Theme) (Original Mix)7:51133972Carl Nicholson583Devils Door (Original Mix)7:40133972Carl NicholsonTidy 228T - Colin Barratt - Critical Mass584Critical Mass (Original Mix)6:29113663Colin Barratt585Its All Hip Hop (Original Mix)6:18113663Colin BarrattTidy 229T - Euphony - Euphonism586Aurora (Original Mix)8:50215254Euphony (2)587Euphonism (Original Mix)8:37215254Euphony (2)Tidy 230T - Ali Wilson & Matt Smallwood - Dynamite588Dynamite (Original Mix)6:4145593Ali Wilson&212335Matt Smallwood589Ill Take You There (Original Mix)6:3845593Ali Wilson&212335Matt SmallwoodTidy 231T - Paul Maddox - In It For The Kicks590Have Faith (Original Mix)7:3649155Paul Maddox591In It For Kicks (Original Mix)7:4149155Paul MaddoxTidy 232T - Chris Hoff - Shut Up592Shut Up7:23259312Chris Hoff593What Would We Do8:55259312Chris HoffTidy 233T - Lee Pasch - Hybridize594Hybridize (Original Mix)8:40101853Lee Pasch595Threat To Society (Original Mix)7:50101853Lee PaschTidy 234T - N20 - Found Some Gas596Anxious Heart7:47152564Technikal597N20 Found Some Gas7:36152564TechnikalTidy 235T - Stimulator - Technology598End Of The World (Original Mix)8:3490517Stimulator599Technology (Original Mix)8:3390517StimulatorTidy 236T - Dark Society - Show Me The Way600Show Me The Way (Lox & Leigh Green Remix)8:56458932Dark Society180619Leigh GreenRemix151793LoxRemix601Show Me The Way (Original Mix)7:29458932Dark SocietyTidy 237T - Paul Maddox Pres. Olive Grooves602I Cant Let Go7:3749155Paul Maddox,563086Olive Grooves603On Fire6:1449155Paul Maddox,563086Olive Grooves604Organ Grinder7:4249155Paul Maddox,563086Olive Grooves605Pitchbend Groove6:3249155Paul Maddox,563086Olive GroovesTidy 238T - Colin Barratt & Phil York - Stronger606Master Your Fears (Original Mix)6:35113663Colin Barratt&202114Phil York607Stronger (Original Mix)5:56113663Colin Barratt&202114Phil YorkTidy 239T - Amber D - EP1608Attack Warning (The Sound) (Original Mix)7:03233533Amber D609Kirei (Original Mix)7:01233533Amber DTidy 239T - Amber D - EP2610Kiss N Tell (Original Mix)7:53233533Amber D611Voodoo (Original Mix)7:34233533Amber DTidy 240T - Kym Ayres Feat. Technikal - More & More612More & More7:07495100Kym Ayres&152564Technikal613Bad Girl (Original Mix)7:54495100Kym Ayres&152564TechnikalTidy 241T - Carl Nicholson - The Shining614All Aboard7:10133972Carl Nicholson615Shining8:20133972Carl NicholsonTidy 242T - Euphonic Sessions - Shindig616Shindig (Kronos Remix)7:49640399Euphonic Sessions28005KronosRemix617Shindig (Original Mix)7:46640399Euphonic SessionsTidy 243T - Andy Farley - Barriers618Barriers (Original Mix)7:0615223Andy Farley619Burn It Up (Original Mix)6:3715223Andy FarleyTidy 244T - Flashheadz - Who Wins620Who Wins (Ilogik Remix)8:37285177Flashheadz38229IlogikRemix621Who Wins (Original Mix)8:51285177FlashheadzTidy 245T - Lee Pasch - I Get High622I Get High (Original Mix)7:30101853Lee Pasch623Pumped Up Funk (Original Mix)6:34101853Lee PaschTidy 246T - Chrysus & Jonny Harris - Shined On Me624Dont Pigeon Hole Me (Original Mix)8:08311356Chrysus&744730Jonny Harris625Shined On Me (Original Mix)9:19311356Chrysus&744730Jonny HarrisTidy 247T - The 12inch Thumpers - Don't Cross The Line626Dont Cross The Line (Amber D Remix)7:223822412 Inch Thumpers233533Amber DRemix627Don't Cross The Line (Olive Grooves Remix)7:123822412 Inch Thumpers563086Olive GroovesRemix628Don't Cross The Line (Guyver Remix)7:393822412 Inch Thumpers20907GuyverRemix629Don't Cross The Line (JP And Jukesy)8:043822412 Inch Thumpers152346JP & JukesyJP And JukesyRemix630Don't Cross The Line (Original)6:393822412 Inch ThumpersTidy 248T - Omega 3 - What We Waiting For631What You Waiting For (Original)8:11971453Omega 3632What You Waiting For (Vox N Go Remix)6:59971453Omega 31844078Vox & GoVox N GoRemixTidy 249T - Sam Townend & Jon BW - How Can I Love You (Take You Back)633How Can I Love You (Quake & Rob Tissera Remix)6:42224600Sam Townend&476228Jon BW11806QuakeRemix3631Rob TisseraRemix634How Can I Love You (Take You Back)7:22224600Sam Townend&476228Jon BWTidy 250T - Paul Maddox - Feelin' 94635Feelin94 (Flash Harry 2001 Retro Mix)7:2949155Paul Maddox21472Flash HarryRemix636Feelin94 (Original Mix)7:3249155Paul MaddoxTidy 251T - Lee Pasch - I Don't Need You637Feel It7:02101853Lee Pasch638I Don't Need You (Base Graffiti Remix)8:14101853Lee Pasch26657Base GraffitiRemix639I Don't Need You (Original)6:57101853Lee PaschTidy 252T - Jon BW - Cutting Shapes640Cutting Shapes (Guyver Remix)8:38476228Jon BW20907GuyverRemix641Cutting Shapes (Original)7:31476228Jon BWTidy 253T - Organ Donors & Vinylgroover - Techno Shock642Techno Shock (Original)8:1220176Organ DonorsVs11433Vinylgroover643Techno Shock (Scott Fo-shaw Remix)7:5620176Organ DonorsVs11433Vinylgroover643849Scott Fo-ShawRemixTidy 254T - Stimulator - Nostalgia644Nostalgia (Cortez & York Remix)8:4390517Stimulator134727Cortez & YorkRemix645Nostalgia (Original Mix)8:0090517StimulatorTidy 255T - Amber D - I've Got A Feelin'646I Got A Feelin (Ben Stevens Remix)7:33233533Amber D220886Ben StevensRemix647I Got A Feelin' (Original)7:20233533Amber DTidy 256T - Jon Langford Presents... EP648What We Gonna Do8:3811749Knuckleheadz649Closer6:43235794K-SeriesVs152564TechnikalTidy 257T - Tidy Boys & BK - Shadows650Shadows (BK's Back To 99 Remix)7:4025831Tidy Boys&8349BK8349BKRemix651Shadows (Original)7:4225831Tidy Boys&8349BKTidy 258T - Benjamin Leung & Tazix - Raindrop652Raindrop (Guyver Remix)9:26805347Benjamin Leung&992636Tazix20907GuyverRemix653Raindrop (Ilogik Remix)7:56805347Benjamin Leung&992636Tazix38229IlogikRemix654Raindrop (Original)7:59805347Benjamin Leung&992636Tazix655Raindrop (Rodi Style Remix)5:48805347Benjamin Leung&992636Tazix302134Rodi StyleRemixTidy 259T - Jon BW - Alpha656Alpha (Andy Farley Remix)7:30476228Jon BW15223Andy FarleyRemix657Alpha (Original)7:50476228Jon BW658Alpha (Vox & Go Remix)7:03476228Jon BW1844078Vox & GoRemixTidy 260T - Knuckleheadz - Rock Beat659Dub House Disco (Original Mix)7:4011749Knuckleheadz660Rock Beat (Original Mix)8:5811749KnuckleheadzTidy 261T - Damo Cassetti - Bass Jam661Bass Jam (Energy Syndicate Remix)4:524092659Damo Cassetti1628992Energy SyndicateRemix662Bass Jam (Original Mix)7:134092659Damo CassettiTidy 262T - Serotonin Soul - Need U 2 Feel663Need U 2 Feel (Original Mix)7:163989600Serotonin Soul664Need U 2 Feel (Technikal Remix)8:053989600Serotonin Soul152564TechnikalRemix665Need U 2 Feel (Untidy Dub)6:523989600Serotonin Soul11712Untidy DubsRemixTidy 263T - BK & Lucy Fur - Get Hot666Get Hot (Original Mix)6:518349BK&796455Lucy Fur667Get Hot (Untidy Dub)6:278349BK&796455Lucy Fur11712Untidy DubsRemixTidy 264T - Energy Syndicate EP668Off My Tits (Original Mix)5:191628992Energy Syndicate&47101Lusty669Phattest Drop (Original Mix)5:271628992Energy Syndicate&3017283Mark HybridZTidy 265T - The Freak Brothers - Ready To Ride670Ready To Ride (Bobby Tee & Mark Williams Remix)8:004261046The Freak Brothers (3)1532570Bobby Tee (2)Remix3445049Marc Williams (9)Mark WilliamsRemix671Ready To Ride (Original Mix)7:384261046The Freak Brothers (3)Tidy 266T - Charlie Goddard - Emotions672Emotions6:501211247Charlie GoddardTidy 267T - TidyTXEP673Fake Ass DJ (Original Mix)6:293780064Fiddlestix (2)674Murder On The Moon (Original Mix)6:303189052Max Mozart675Always There (Original Mix)6:56563086Olive Grooves&1436429Ross HomsonTidy 268T - Jon The Dentist - Jeff The Terminator676Jeff The Terminator (Exosun Remix)8:005539Jon The Dentist4337950ExosunRemix677Jeff The Terminator (Original Mix)7:395539Jon The DentistTidy 269T - Tidy DJs - It's Time678Its Time (Original Mix)6:031392400Tidy DJsThe Tidy DJsTidy 270T - Audox - Tried This Tried That (Tried Everything)679Tried This Tried That (Tried Everything)7:422126578AudoxTidy Allstars - The Homecoming (Magna Theme)680The Homecoming Magna Theme (Ben Stevens & Rodi Style Remix)6:481453116Tidy Allstars220886Ben StevensRemix302134Rodi StyleRemix681The Homecoming Magna Theme (Lab4 Remix)6:591453116Tidy Allstars19367Lab 4Lab4Remix682The Homecoming Magna Theme (Original)7:001453116Tidy Allstars683The Homecoming Magna Theme (Technikal Remix)6:221453116Tidy Allstars152564TechnikalRemixTidy BOOT001684Black Is Black (Tony De Leon Remix)7:2715366Allnighters130985Tony De LeonRemix685Observing The Earth (Fanny Thomas Remix)7:27186453Dyewitness209430Fanny ThomasRemixTidy BOOT002686What Ya Got 4 Me (Andy Farley Remix)7:494629Signum15223Andy FarleyRemixTidy BOOT003 Wonkerd687Wonk Erd - Like It Or Loopma It4:021337811Comedy Dick688Wonk Erd - Pure Imagination7:37128046Woody (5)Tidy BOOT004689Sunset7:54131666Azure (5)Tidy D001 - Cally Gage & Klubfiller - Leave The World Behind690Leave The World Behind (Original Mix)6:00613245Cally GageCally Cage&517623KlubfillerTidy D002 - Olive Grooves - I Wanna Know691I Want To Know (Original Mix)7:12563086Olive GroovesTidy D003 - BK - Dreams692Dreams (Hard Mix)7:278349BK693Dreams (Trance Mix)5:058349BKTidy D004 - Paul Maddox - Endangered694Endangered (Original Mix)8:0949155Paul Maddox695Endangered (Wragg & Log-One Remix) (1)6:4549155Paul Maddox1056605Log:One & DJ WraggWragg & Log-OneRemixTidy D005 - Ian M - Crank696Crank (Original Mix)7:5320165Ian MTidy D006 - Robbie Muir - Body Rock697Body Rock (Original Mix)8:46343573Robbie Muir (2)Tidy D007 - BK Vs Sam & Deano - You Better (Tell Me)698You Better (Tell Me) (Original Mix)6:068349BKVs1636952Sam & DeanoTidy D008 - Technikal - Teardrops699Teardrops (Original Mix)6:38152564TechnikalTidy D009 - Scott Attrill - Lost Souls700Lost Souls (Klubfiller Remix)5:21426849Scott Attrill517623KlubfillerRemix701Lost Souls (Original Mix)7:12426849Scott AttrillTidy D010 - Electrik Revolution EP702What Ya Got 4 Me (Scott Attrill Remix)7:364629Signum426849Scott AttrillRemix703The Dawn (Scott Attrill Remix)6:525531Tony De Vit426849Scott AttrillRemixTidy D011 - BK - Thump704Thump (Jennarate Remix)5:488349BK2108486JennarateRemix705Thump (Original Mix)6:598349BKTidy D012 - Dark By Design - Your Love706Your Love (Ben Stevens & Rodi Style Remix)7:0675559Dark By Design220886Ben StevensRemix302134Rodi StyleRemix707Your Love (Original Mix)8:0075559Dark By DesignTidy D013 - Robbie Muir - Buzz Tribute708Buzz Tribute (Original Mix)9:24343573Robbie Muir (2)Tidy D014 - Klubfiller Vs Sam & Deano - Go Boom709Go Boom! (Klubfiller Hardcore Edit)4:24517623KlubfillerVs.1636952Sam & Deano517623KlubfillerRemix710Go Boom! (Original Mix)5:20517623KlubfillerVs.1636952Sam & DeanoTidy D015 - Jon BW - Everybody Freak711Everybody Freak (Original Mix)7:04476228Jon BWTidy D016 - Perfect Poise - Never Be Apart712Never Be Apart (Original Mix)5:581450842Perfect PoiseTidy D017 - Jon Bishop - Stalker (Energy Syndicate Remix)713Stalker (Energy Syndicate Remix)6:0138228Jon Bishop1628992Energy SyndicateRemixTidy D018 - Flash Harry - Give Up The Funk (JP & Jukesy Remix)714Give Up The Funk (JP & Jukesy Remix)7:1521472Flash Harry152346JP & JukesyRemixTidy D019 - Guyver - Man On The Moon715Man On The Moon (Technikal & Dirty Harry Remix)7:1220907Guyver2786614Dirty Harry (23)Remix152564TechnikalRemixTidy D020 - Amber D - Rush On Me (2012 Remixes)716Rush On Me (J Ainsley Remix)6:54233533Amber D4136891JJ AinsleyRemix717Rush On Me (Jo Jo Remix)8:02233533Amber D3578266JoJo (47)Jo JoRemix718Rush On Me (Unit 13 Remix)7:15233533Amber D2309242Unit 13RemixTidy D021 - Signum - What Ya Got 4 Me (White Label Remixes)719What Ya Got 4 Me (Andy Farley Remix)7:494629Signum15223Andy FarleyRemix720What Ya Got 4 Me (Lee Walls Remix)7:034629Signum240948Lee WallsRemixTidy D022 - Chris C - Freefall721Freefall (Ben Stevens & Adam M Remix)7:495522Chris C169199Adam M (2)Remix220886Ben StevensRemix722Freefall (Technikal Remix)6:475522Chris C152564TechnikalRemixTidy D023 - Ben Stevens & Sam Townend - Game Over723Game Over (Original Mix)6:36220886Ben Stevens&224600Sam TownendTidy D024 - RJ & Ruskul - Sweat724Sweat (Original Mix)7:183229392RJ & RuskulTidy D025 - Heavens Cry - Till Tears Do Us Part (Lamin8ers Remix)725Till Tears Do Us Part (Lamin8ers Remix)7:5864206Heaven's CryHeavens Cry3401456The Lamin8ersLamin8ersRemixTidy EP01 - Colin Barratt - Extended Players EP726Hard Faster9:02113663Colin Barratt727Expect The Unexpected7:33113663Colin Barratt728Groove Station5:39113663Colin Barratt729F.U.N.K6:30113663Colin BarrattTidy EP02 - Guyver - Extended Players EP730How Far6:1820907Guyver731Strangeness6:1820907Guyver732Succeed At All Costs7:1420907Guyver733Survival7:3420907GuyverTidy EP03 - Extended Players EP - Paul Maddox734Burnt Out Metro6:0549155Paul Maddox735Medusa6:5149155Paul Maddox736Obsessive Compulsive6:4649155Paul Maddox737Seismic7:0849155Paul MaddoxTidy EP04 - Colin Barratt - Extended Players EP Part 2738Get Down (Original Mix)6:44113663Colin Barratt739Out Of Control (Original Mix)6:58113663Colin Barratt740Stalker (Original Mix)6:35113663Colin Barratt741Take Me Back (Original Mix)6:13113663Colin BarrattTidy EP05 - Wid & Ben Extended Players EP742Just You Wait7:31151851Wid & Ben743Revolution 3037:37151851Wid & Ben744Groove Damage6:08151851Wid & BenTidy EP06 - Guyver Producer Series Album Sampler745Evangeline8:0220907Guyver746Heaven & Hell8:1120907Guyver747Here & Now7:5020907Guyver748Jazz Hands7:2720907Guyver749Kiss My Face 8:4020907Guyver750Midnight Express8:1020907Guyver751Nightshade8:2620907Guyver752Open Skies8:0220907Guyver753Relentless7:4120907Guyver754Serendipity7:5420907Guyver755Sonar8:4320907Guyver756Sub Human Scum8:3320907Guyver757The Celestine Prophecy8:3620907Guyver758The Killer Instinct8:2920907GuyverTidy EP07 - The Farley Experience Part 1 - Andy Farley & Olive Grooves759Feel7:3315223Andy Farley&563086Olive Grooves760Got Me Movin6:2315223Andy Farley&563086Olive Grooves761Kinky Mover6:5415223Andy Farley&563086Olive GroovesTidy EP08 - The Farley Experience Part 2 - Andy Farley & Colin Barratt762Crashed7:2215223Andy Farley&113663Colin Barratt763Reprezent7:2615223Andy Farley&113663Colin Barratt764Stimulate6:5015223Andy Farley&113663Colin BarrattTidy EP09 - Paul Maddox Producer Series Album Sampler765Analogue Rush (Club Mix)7:3649155Paul Maddox766Moody (Club Mix)6:2249155Paul Maddox767Quicksand (Club Mix)6:3949155Paul Maddox768Surrender (Club Mix)7:1149155Paul MaddoxTidy EP10 - The Untidy Remixes 2007769Dominator (Untidy Dub)6:364066Human Resource11712Untidy DubsRemix770'More & More' (Untidy Dub)7:12495100Kym AyresFeat152564Technikal11712Untidy DubsRemix771Emotion (Back To The Dub Mix)6:14101853Lee PaschTidy EP11 - Defective Audio Producer Series Album Sampler772Kikka6:4626657Base Graffiti773Rocking In Time5:2826657Base Graffiti774Unknown Code7:224085Defective Audio775Essence7:5585473Tomcat (2)Tom CatTidy F - FLOGGED776F1 - Body Rock (Max Mozart & Audox Remix)7:33343573Robbie Muir (2)2126578AudoxRemix3189052Max MozartRemix777F2 - What Ya Got 4 Me (Groove Complex Remix)6:084629Signum4600889Groove ComplexRemix778F3 - Getting Warm (Sam Townend Remix)6:3817630Smokin' Bert Cooper224600Sam TownendRemix779F4 - Emotions (Technikals Tidy Two Remix)6:58101853Lee Pasch152564TechnikalRemix780F5 - Its About Music (Paul Maddox Remix)6:5324084Jez & Charlie49155Paul MaddoxRemix781F6 - Mistakes (Ilogik Remix)8:1147785Bulletproof (2)38229IlogikRemix782F7 - What Can You Do 4 Me- (BKs Tough Dub)5:2218435Lisa Lashes8349BKRemix783F8 - Tronic Equator (Houserockers Remix)6:1138229Ilogik29609HouserockersRemix784F9 - I Need U (Untidy Dub)6:3238309Baby Doc & S-JSJ & Baby Doc11712Untidy DubsRemix785F10 - Such A Good Feeling (The Freak Brothers Remix)7:44156712Miss Behavin'4261046The Freak Brothers (3)Remix786F11 - Possibly (NG Rezonance Remix)7:1220907Guyver1215349NG RezonanceRemix787F12 - One More (Ben Stevens Remix)7:0733759Haziza788F13 - I Dont Need This (Charlie Goddard Remix)6:5564206Heaven's CryHeavens Cry220886Ben StevensRemix789F14 - Ready To Ride (Jon The Dentist Remix)6:364261046The Freak Brothers (3)5539Jon The DentistRemix790F15 - Have Faith (Tidy Boys & Trap Two Remix)9:3349155Paul Maddox25831Tidy BoysRemix4080558Trap TwoRemix791F16 - Rock With Me (Lee Pasch Remix)6:458339Lisa Pin-UpLisa Pin Up101853Lee PaschRemixTidy M - MILKED792M1 - Mistakes (DBSK Remix)7:4047785Bulletproof (2)20164DBSKRemix793M2 - Coming On Strong (Whiteman & Ingo Remix)7:264629Signum20958IngoRemix32919John WhitemannWhitemanRemix794M3 - U Got The Love (Bulletproofs Sabotage Remix)8:341687Hyperlogic47785Bulletproof (2)Remix795M4 - Where Are You Now (Jon The Dentist & Ollie Jaye Remix)6:1928091The Generator41595Jon The Dentist & Ollie JayeRemix796M5 - Samsara (Jon Doe remix)7:5032921Dave Holmes6070Jon DoeRemix797M6 - Nuclear Shower (OD404 Remix)7:09100940UK Gold (2)11333OD404Remix798M7 - Dreamer (Chris C & Dynamic Intervention Remix)7:2020165Ian M39336Chris C & Dynamic InterventionRemix799M8 - Honey Child (Houserockers Remix)8:0715365Benedict Brothers29609HouserockersRemix800M9 - Cuz The House Gets Warm (Tidy Boys Remix)6:48100940UK Gold (2)25831Tidy BoysRemix801M10 - Looking Good (Baby Doc & SJ Remix)7:2318435Lisa Lashes38309Baby Doc & S-JBaby Doc & SJRemix802M11 - Only Me (Stimulant DJs Remix)7:481687Hyperlogic32426Stimulant DJsRemix803M12 - Black Is Black (BK Remix)7:5815366Allnighters8349BKRemix804M13 - Just Do It (Ingo Remix)8:174629Signum20958IngoRemixTidy R - RINSED805R1 - Where Are You Now (Wid & Ben Remix)7:4328091The GeneratorGenerator151851Wid & BenRemix806R2 - Feel So Good (Guyver Remix) 7:1341595Jon The Dentist & Ollie JayeJon The Dentist & Ollie J20907GuyverRemix807R3 - Don't Go (Champion Burns Remix)7:5518435Lisa Lashes15348Champion BurnsRemix808R4 - In Control (Colin Barratt Remix)7:0338228Jon Bishop113663Colin BarrattRemix809R5 - Spacehopper (Ingo Remix)6:47127646Nik Denton20958IngoRemix810R6 - What Ya Got 4 Me (Illogik Remix)8:064629Signum38229IlogikRemix811R7 - Definitely (Lee Haslam Remix)8:0113796YodaYoda Inc37429Lee HaslamRemix812R8 - Expression (Lee Pasch Remix)8:3434674Steve Blake101853Lee PaschRemix813R9 - Anihilation (Paul Glazby Remix)7:3220165Ian M18360Paul GlazbyRemix814R10 - Incoming (Bulletproof Remix)8:0348526DJ Vortex & Arpa's DreamDJ Vortex And Arpa's Dream47785Bulletproof (2)Remix815R11 - Music Is The Drug (Nick Sentience Remix)7:5537429Lee Haslam4013Nick SentienceRemix816R12 - Riot Bros - Guyver Unit (Paul Maddox Remix)8:08152999The Riot BrothersRiot Bros49155Paul MaddoxRemix817R13 - Til' Tears Do Us Part (Yoji Biomehanika Remix)8:4664206Heaven's CryHeavens Cry39204Yoji BiomehanikaRemixTidy TBBS01 - Tidy Trashed EP818U Found Out (Scott Fo-shaw Remix)6:26253949The HandbaggersHandbaggers643849Scott Fo-ShawRemix819Restless (Technikal Remix)5:571680JX152564TechnikalRemix820I need U (Knuckleheadz Remix) Master8:2538309Baby Doc & S-JSJ & Baby Doc11749KnuckleheadzRemixTidy TNT001821Set You Free (Maddox Mix)7:5411001N-Trance49155Paul MaddoxRemixTidy W01 - Paul Maddox822Confession8:3449155Paul Maddox823Tension7:1749155Paul MaddoxTidy W02 - Jon Bishop - Stalker824Stalker (Ingo Mix)7:4338228Jon Bishop20958IngoRemix825Stalker (Original Mix)7:2838228Jon BishopTidy W03 - Dutch Courage - Slammin'826Slammin' (Alibee And Voi Remix)7:2938223Dutch Courage102078AlibeeRemix82902VoiRemix827Slammin' (Flash Harry Remix)8:3338223Dutch Courage21472Flash HarryRemixTidy W04 - Miss Behavin' - Such A Good Feelin'828Such A Good Feelin' (Barely Legal Remix)8:11156712Miss Behavin'85474Barely LegalRemix829Such A Good Feelin' (Flash Harry Remix)7:15156712Miss Behavin'21472Flash HarryRemixTidy W05 - 12 Inch Thumpers Vs 4 Motion - It's Over The Line830It's Over The Line (Tidy Boys Home Made Remix)7:16552884 MotionVs3822412 Inch Thumpers25831Tidy BoysRemixTidy W06 - Chris C And The Doktor - Volante831Volante (Original Mix)7:575522Chris CVs38232The Doktor832Volante (Prophet Mix)7:385522Chris CVs38232The Doktor17428The ProphetProphetRemixTidy W07 - Da Techno Bohemian - Pump Da Bass833Pump Da Bass (OGR Remix)7:0720922Da Techno Bohemian79422O.G.R.OGRRemix834Pump Da Bass (Original)4:3620922Da Techno BohemianTidy W08 - Paul Maddox And Ingo - Reactor835Reactor (Ingo Remix)8:2549155Paul MaddoxAnd20958Ingo20958IngoRemix836Reactor (Paul Maddox Mix)6:5649155Paul MaddoxAnd20958Ingo49155Paul MaddoxRemixTidy W09 - OGR - Daydreamer837Daydreamer (Guyver Remix)8:2179422O.G.R.OGR20907GuyverRemix838Daydreamer (Original Mix Master)6:5479422O.G.R.OGRTidy W10 - Ben Kaye And Neil Appeal839Hold It Now8:2536378Ben KayeAnd228061Neil Appeal840Pornography6:2936378Ben KayeAnd228061Neil AppealTidy W11 - Abandon - Underground841The Underground (O.G.R. Remix)7:10104447Abandon79422O.G.R.Remix842The Underground (Original)7:50104447AbandonTidy W12 - Steve Morley - Sacrifice843Sacrifice (Lee Haslam Remix)7:5812750Steve Morley37429Lee HaslamRemix844Sacrifice (Original)7:4712750Steve MorleyTidy W13 - Tomorrow People & Paul Maddox845Tension (Vicious Mix)6:5249155Paul Maddox846Scared7:4142776Tomorrow PeopleTidy W14 - Pants And Corset - Malice In Wonderland847Malice In Wonderland (Paul King Remix)9:5125830Pants & CorsetPants And Corset58549Paul KingRemix848Malice In Wonderland (Phil Reynolds And Steve Blake Remix)7:5325830Pants & CorsetPants And Corset69653Steve Blake & Phil ReynoldsPhil Reynolds And Steve BlakeRemixTidy W15 - Tony De Vit EP849I Don't Care (Bulletproof Remix)7:585531Tony De Vit47785Bulletproof (2)Remix850The Dawn (Dark By Design Remix)7:055531Tony De Vit75559Dark By DesignRemixTidy W16 - OD404 - 9 Bar8519 Bar (Dark By Design Remix) DAT Master7:5711333OD404OD 40475559Dark By DesignRemix8529 Bar (Nick Rowland Remix) DAT Master7:4811333OD404OD 404130735Nick RowlandRemixTidy W17 - Steve Hill - Alone853Alone (Flash Harry Remix) DAT Master8:358358Steve Hill21472Flash HarryRemix854Alone (Original Mix) DAT Master7:438358Steve HillTidy W18 - NR2 - I Want It855Freedom7:49245767NR²NR2856I Want It7:40245767NR²NR2Tidy W19 - Chris Hoff MDA And Spherical857Controllin' Me7:26259312Chris Hoff,370522MDA & SphericalMDA And Spherical858Scramble7:58259312Chris Hoff,370522MDA & SphericalMDA And SphericalTidy W20 - Big Tool 4 U859Bitch Trog7:15168594Big Tool 4 U860Just Cum7:48168594Big Tool 4 UTidy W21 - Eskimo - Recycled861ReCycled6:32101918Eskimo (3)Tidy W22 - Olive Grooves - Two Short Planks862Two Short Planks6:28563086Olive GroovesTidy W23 - Trap Two - Our Place863Our Place6:484080558Trap TwoTidy W24 - Jon The Dentist - Donald Trump You're An Asshole864Donlad Trump You're An Asshole6:135539Jon The DentistTidyDDAY01 - Amber D - D-Day865Amber Diva6:38233533Amber D866 Bounce6:11233533Amber D867I Don't Like You5:16233533Amber D868One Night In Haslamabad6:31233533Amber D869The Power8:11233533Amber D870The Decimation Of Elizabeth Black5:43233533Amber DAnd75559Dark By Design871God's Child7:32233533Amber DAnd1439553Gridbreaker872Party Children (Rodi Style Remix)6:41233533Amber DAnd3262136Kirsty Lee James302134Rodi StyleRemix873Party Children5:53233533Amber DAnd3262136Kirsty Lee James874You Got Me Burnin'7:55233533Amber DAnd796455Lucy Fur875Schranz DJ5:48233533Amber DAnd1268108Neal Thomas876Can't Stop6:16233533Amber DAnd1213572Ramp (6)877Double The Odds4:50233533Amber DAnd1200084Stana878Future Music6:05233533Amber DAnd1578728The Yofridiz879Techno Slut7:02233533Amber D,1819270Argy (3)And1947087Projekt.TekProjekt Tek880Paranoid5:50233533Amber DFeat.197076Riggsy881Eat The Beat5:57233533Amber DVs1283476Swankie DJ & KashiSwankie DJ And KashieTidyINSP01 - Inspirations For The Harder Generation882Another Chance6:41233533Amber D883Shinny8:1215223Andy Farley884Higher State Of Consciousness6:32218417Andy Whitby&613247Matt Lee885High On Hope7:4726657Base Graffiti886Dreamer6:45220886Ben Stevens887Insomniak6:328349BK&11433Vinylgroover888A Little Love, A Little Life7:15613245Cally Gage&801774Tom Parr (2)889No Good (Start The Dance)8:0775559Dark By Design890Walhalla8:4820907Guyver891U Got The Love (Steve Hill Vs Technikal Remix) (Master)7:531687Hyperlogic1372269Steve Hill Vs TechnikalRemix892I Feel You8:3838229Ilogik893Not Over Yet7:51476228Jon BW894Sandstorm8:29152346JP & Jukesy895 Enervate6:32235794K-SeriesK Series896Energy Flash6:5411749Knuckleheadz897Killer8:11495100Kym Ayres898For An Angel7:40214644Morgan (10)899Phorever People9:27127646Nik Denton900True Faith8:1718360Paul Glazby901You Belong To Me7:5049155Paul Maddox902Tainted Love 8:0149155Paul Maddox&207355Shaun M903Move On baby6:37202114Phil York904U Got 2 Know7:27302134Rodi Style&220886Ben Stevens905Make The World Go Round7:32224600Sam Townend906Show Me Love 8:23643849Scott Fo-Shaw907Ssst Listen8:20152564Technikal908Strings For Yasmin8:181392400Tidy DJsTIDYML001 - Tidy Music Library 1909Take It Easy (Original)8:34495100Kym Ayres910Take It Easy (Tidy DJ's Remix)7:37495100Kym Ayres1392400Tidy DJsRemix911Music Is The Drug (Amber D Remix)8:0537429Lee Haslam233533Amber DRemix912Bassline Pressure6:0849155Paul Maddox913Bring It7:1949155Paul Maddox914Mesmerised7:3949155Paul Maddox915Holding On (Master)7:363631Rob Tissera&152564Technikal916Holding On (Paul Glazby Remix)7:503631Rob Tissera&152564Technikal18360Paul GlazbyRemixTIDYML002 - Tidy Music Library 2917Just One More Time (Master)8:0020907Guyver918Just One More Time (Trauma Vs Nik Denton Remix)8:5920907Guyver127646Nik DentonRemix8352TraumaRemix919Can't Stop It7:29476228Jon BW920Funky Sound7:36476228Jon BW921Tear Drop9:0420176Organ Donors9222v2317:1020176Organ Donors923Strings For Yasmin (Vinylgroover & The Red Head Mix)6:381693729TT Collective15346Vinylgroover & The Red HedVinylgroover & The Red HeadRemix924Strings For Yasmin( Tidy DJs Remix)8:271693729TT Collective1392400Tidy DJsRemixTIDYML002 - Tidy Music Library 2 \ Tidy Library Samples \ Basslines925Double Off Beat Bass One Shot0:01118760No Artist926Double Off Beat Bass0:01118760No Artist927Psy Bass0:01118760No Artist928Reverse Bass One Shot0:01118760No Artist929Reverse Bass0:01118760No Artist930Running Bass0:01118760No Artist931Shuffled Bass One Shot0:01118760No Artist932Shuffled Bass0:01118760No ArtistTIDYML002 - Tidy Music Library 2 \ Tidy Library Samples \ FX933Crash0:01118760No Artist934Dirty Stopout0:09118760No Artist935Lazer Fast To Slow0:07118760No Artist936Rev Crash0:01118760No Artist937Synth Rise0:13118760No Artist938White Noise Down0:13118760No Artist939White Noise Up0:13118760No ArtistTIDYML002 - Tidy Music Library 2 \ Tidy Library Samples \ Kicks940European Kick One Shot0:01118760No Artist941European Kick0:01118760No Artist942Hard House Kick One Shot0:01118760No Artist943Hard House Kick0:01118760No Artist944Hard Trance Kick One Shot0:01118760No Artist945Hard Trance Kick0:01118760No Artist946Psy Kick One Shot0:01118760No Artist947Psy Kick0:01118760No Artist948Punchy Kick One Shot0:01118760No Artist949Punchy Kick0:01118760No ArtistTIDYML002 - Tidy Music Library 2 \ Tidy Library Samples \ Pads-Strings950High String0:13118760No Artist951Low Pad0:13118760No Artist952Uplifting Pad Part 10:13118760No Artist953Uplifting Pad Part 20:13118760No Artist954Uplifting Pad Part 30:13118760No Artist955Uplifting Pad0:13118760No ArtistTIDYML002 - Tidy Music Library 2 \ Tidy Library Samples \ Percussion956Clap One Shot0:01118760No Artist957Clap0:01118760No Artist958Full Loop0:01118760No Artist959Open Hat One Shot0:01118760No Artist960Open Hat0:01118760No Artist961Ride One Shot0:01118760No Artist962Ride0:01118760No Artist963Shaker Loop0:01118760No Artist964Shaker One Shot0:01118760No Artist965Shuffled Loop0:01118760No Artist966Simple Loop0:01118760No Artist967Snare One Shot0:01118760No Artist968Snare Roll0:13118760No Artist969Tribal Loop0:01118760No ArtistTIDYML002 - Tidy Music Library 2 \ Tidy Library Samples \ Synth-Stabs970Acid Build Up0:27118760No Artist971Acid Stab0:01118760No Artist972European Riff0:13118760No Artist973Filtered Chord Stab One Shot0:01118760No Artist974Filtered Chord Stab0:01118760No Artist975Ripping Synth0:01118760No Artist976Squelchy Riff0:03118760No Artist977Stabby Chord Riff0:03118760No Artist978Uplifting Riff0:13118760No ArtistTIDYML003 - Tidy Music Library 3979Honey Child (Paul Maddox 08 Remix)7:4615365Benedict Brothers49155Paul MaddoxMaddoxRemix980Got The Bottle7:3049155Paul MaddoxMeets26657Base GraffitiBase Grafitti981Spook Show7:0449155Paul MaddoxMeets476228Jon BW982Double Edged Sword6:4849155Paul MaddoxMeets15512Karim983Cinematic6:4649155Paul MaddoxMeets302134Rodi Style984Captive8:0349155Paul MaddoxMeets152564Technikal985Rave Cat8:2049155Paul MaddoxMeets1392400Tidy DJsThe Tidy DJsTIDYML003 - Tidy Music Library 3 \ Shaun M And Abandon - Another Man's Language (Parts)986Another Man's Language Parts2:39207355Shaun MAnd104447AbandonTIDYML004 - Tidy Music Library 4987Rush On Me6:43233533Amber D988Wanna Dance7:19233533Amber D989Centrefold 6:1221059Anne Savage990Blueprint (Nick Sentience Remix)7:04133972Carl Nicholson4013Nick SentienceRemix991Music For A Harder Generation (UK Gold Remix)7:20152564TechnikalFeaturing228852MC Whizzkid100940UK Gold (2)Remix992Music For A Harder Generation (Original)7:58152564TechnikalFt.228852MC WhizzkidTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ Bass993B - Phat Square Bass0:01152564Technikal994D# - Foot Long0:01152564Technikal995E - Plucky0:01152564Technikal996F - Thick Bass0:01152564Technikal997F# - Grungy Roller0:01152564Technikal998F# - Supersonic Bass0:01152564Technikal999G - Generation Bass0:01152564TechnikalTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ Claps1000Groove Holding Clap0:01152564Technikal1001Hollow Clap0:01152564Technikal1002Reverb Clap0:01152564Technikal1003Snarey Clap0:01152564Technikal1004Splashy Clap0:01152564Technikal1005Unobtrusive Clap0:01152564TechnikalTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ FX1006Alien Like squelch0:01152564Technikal1007Eerie Sound Sweep0:06152564Technikal1008Fx Sweep0:04152564Technikal1009Great Explosion0:07152564Technikal1010Mess On Floor = Sweep Up0:10152564Technikal1011Spinnin' Around0:01152564TechnikalTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ Kicks1012Banging Kick0:01152564Technikal1013Boomy Kick0:01152564Technikal1014Bouncey Kick0:01152564Technikal1015Cosmic Kick0:01152564Technikal1016Euro Kick0:01152564Technikal1017Hard Kick0:01152564Technikal1018Meaty Kick0:01152564Technikal1019Phat Kick0:01152564Technikal1020Raw Kick0:01152564Technikal1021Tough Kick0:01152564TechnikalTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ Loops1022Clicky Loop0:01152564Technikal1023Hectic Loop0:03152564Technikal1024Mechanical Loop0:03152564Technikal1025Reevey Loop0:01152564Technikal1026Stompy Loop0:01152564Technikal1027Techy Loop0:01152564Technikal1028Wishy Loop0:01152564TechnikalTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ Percussion1029Effective Tambourine0:01152564Technikal1030Good Rolling Snare0:01152564Technikal1031Open Hat Backup0:01152564Technikal1032That Old BK Knock0:01152564Technikal1033The Best 909 Open Hat Ever0:01152564Technikal1034Top End Shaker0:01152564Technikal1035Tribal Hit 10:01152564Technikal1036Tribal Hit 20:01152564Technikal1037Wicked Closed Hat0:01152564TechnikalTIDYML004 - Tidy Music Library 4 \ Tidy Music Library - Technikal Sample Pack \ Synths1038A - Giant Saw Blast0:03152564Technikal1039A - Synthy Setting0:06152564Technikal1040C - Huge Square Detuned Stab0:01152564Technikal1041C - Mid Range Square Synth0:01152564Technikal1042C# - Kingpin Hoover0:01152564Technikal1043C# - Nasty Raw0:01152564Technikal1044D - Old School Chord0:01152564Technikal1045D# - Rezzy Virus Stab0:01152564Technikal1046F - Attacking Acid Stab0:01152564Technikal1047F# - Evil Acid0:01152564TechnikalTIDYML005 - Tidy Music Library 51048You Got Me7:31476228Jon BW1049Guitar Hero7:35495100Kym Ayres1050DJ Do You Take Requests6:018339Lisa Pin-UpLisa Pinup1051I'm Your Nightmare (2008 Remix)7:2018360Paul Glazby1052Kanashimi8:0018360Paul Glazby1053Screwdriver (Olive Grooves Silly Disco Mix)6:248337Rachel Auburn563086Olive GroovesRemix1054That Summer Tune8:54643849Scott Fo-ShawFeat.807541Stacey KitsonStaceTIDYML006 - Tidy Music Library 61055Phat Box8:0420907GuyverMeet224600Sam Townend1056The Hacker (BK Remix)7:0920907Guyver&1268108Neal Thomas8349BKRemix1057The Hacker (Original Mix)8:0420907Guyver&1268108Neal Thomas1058At The Top (Original Mix)8:4220907GuyverMeets3631Rob Tissera1059I Got To Believe (Original Mix)7:4620907GuyverMeets233533Amber D1060Paradox (Original Mix)8:0620907GuyverMeets15223Andy Farley1061Enigma (Original Mix)7:5920907GuyverMeets220886Ben StevensTIDYML007 - Tidy Music Library 71062On My Mind (Nish Remix)7:29233533Amber D&214644Morgan (10)18500NishRemix1063On My Mind (Original)7:00233533Amber D&214644Morgan (10)1064Cerca Trova (Nik Denton Remix)8:44233533Amber DFeat.807541Stacey KitsonStace127646Nik DentonRemix1065Cerca Trova (Original)6:48233533Amber DFeat.807541Stacey KitsonStace1066Immure (Ilogik Shrink Wrapped Remix)7:396216Equinox38229IlogikRemix1067Equinox - Immure (Stimulant DJ's Remix)8:066216Equinox32426Stimulant DJsStimulant DJ'sRemix1068Head In The Cloudz5:351633087Nu Raverz1069Nu Flavourz5:251633087Nu RaverzTIDYML007 - Tidy Music Library 7 \ Tidy Accapellas1070Cerca Trova Acapella0:45233533Amber DFeat.807541Stacey KitsonStace1071Shindig Acapella1:02640399Euphonic Sessions1072Restless Acapella2:441680JX1073Feeling Acapella0:27489554Faysal MatarMatar1074I Need To Know Acapella0:5318360Paul Glazby1075Funky Groove Acapella0:5411712Untidy DubsTIDYML008 - Tidy Music Library 81076The Age Of Love (Original Mix)8:23220886Ben Stevens&302134Rodi Style1077The Eternal (Original Mix)8:31220886Ben Stevens&302134Rodi Style1078Old Skool7:2729609Houserockers1079(You Better) Run For Cover (Original Mix)6:5232426Stimulant DJs1080Crazy Love (Original Mix)7:1732426Stimulant Djs1081KFC (Original Mix)6:44100940UK Gold (2)TIDYML009 - Tidy Music Library 91082Rush On Me (Paul Maddox Remix)7:40233533Amber D49155Paul MaddoxRemix1083The Hacker (BK Remix)7:0920907Guyver&1268108Neal Thomas8349BKRemix1084The Hacker (Original Mix)8:0420907Guyver&1268108Neal Thomas1085Closer (Jon BW Remix)7:21235794K-SeriesK SeriesVs152564Technikal476228Jon BWRemix1086Take Off (Garbo Remix)7:5990517Stimulator686904Garbo (5)Remix1087Come Together (Bang Brothers Remix)7:00799267Tom Berry&1632944Paul F2053264The Bang BrothersBang BrothersRemix1088Come Together (Original Mix)7:47799267Tom Berry&1632944Paul FTIDYML010 - Tidy Music Library 101089Cant Beat The System (Jon BW Remix)7:5632919John Whitemann476228Jon BWRemix1090Magnafied (Original Mix)8:06476228Jon BW&102951Superfast Oz1091Let Him Hear It (Original Mix)7:39476228Jon BWMeets21059Anne Savage1092Move You (Original Mix)7:34476228Jon BWMeets613245Cally Gage1093Caterpillar (Original Mix)7:35476228Jon BWMeets152346JP & Jukesy1094DJs Are Vermin (Original Mix)7:07476228Jon BWMeets186773Kutski1095Borrowed Milk (Original Mix)6:54476228Jon BWMeets643849Scott Fo-ShawScott Fo ShawTIDYML011 - Tidy Music Library 111096Centrefold (Nu Raverz Remix)5:4321059Anne Savage1633087Nu RaverzRemix1097Dont Give Up (BK Remix)6:551049670Jimmy Dean (3)8349BKRemix1098Dont Give Up (Original Remix)6:471049670Jimmy Dean (3)1099Techno Shock (Nu Raverz Remix)5:2220176Organ Donors&11433VinylgrooverVinyl Groover1633087Nu RaverzRemix1100Nut Job (Guyver Remix)7:2549155Paul Maddox&1392400Tidy DJsThe Tidy DJs20907GuyverRemix1101Nut Job (Original Mix)7:1349155Paul Maddox&1392400Tidy DJsThe Tidy DJs1102Nut Job (Vandall Remix)7:1349155Paul Maddox&1392400Tidy DJsThe Tidy DJs430354VandallRemixTIDYML012 - Tidy Music Library 121103Mouse Shack (Original Mix)8:2715223Andy Farley&224600Sam Townend1104Xchange & Mart (Original Mix)7:1415223Andy Farley&224600Sam Townend1105Cupertino (Original Mix)7:0819516Curve Pusher1106Tarpon Point (Original Mix)7:2719516Curve Pusher1107Desert Island Disco (Original Mix)6:13563086Olive Grooves1108Raise The Roof (Original Mix)7:17563086Olive Grooves1109Think Pink (Original Mix)7:17563086Olive Grooves1110The Spirit (BK Remix)6:5290517Stimulator8349BKRemix1111The Spirit (Original Mix)7:0390517StimulatorTIDYML013 - Tidy Music Library 131112El Castro8:3138229Ilogik1113Tronic Equator (BK Remix)7:2538229Ilogik8349BKRemix1114Tronic Equator (Original Mix)6:5238229Ilogik1115Feel The Pressure9:0638229Ilogik&220884Dave Owens1116Player8:0738229IlogikVs100940UK Gold (2)1117Nuclear Shower (Ilogik Remix)8:50100940UK Gold (2)38229IlogikRemixTIDYML014 - Tidy Music Library 141118Switch!7:288349BKVs1636952Sam & Deano1119Freefallin' (Rob Tissera's Epic Mix)7:113631Rob Tissera&152564Technikal3631Rob TisseraRemix1120Freefallin' (Technikal's Double Drop Mix)7:113631Rob Tissera&152564Technikal152564TechnikalRemix1121Freefalling (MDA & Spherical Remix)6:113631Rob Tissera&152564Technikal370522MDA & SphericalRemix1122Get Up Stand Up (Farley & Maddox Remix)8:191453116Tidy Allstars15223Andy FarleyFarleyRemix49155Paul MaddoxMaddoxRemix1123Get Up Stand Up (Neal Thomas Remix)8:141453116Tidy Allstars1268108Neal ThomasRemix1124Eternity8:301191921VelosFeat.20907GuyverTIDYML015 - Tidy Music Library 151125Rave Monkey (JP & Jukesy Remix)8:268349BK152346JP & JukesyRemix1126 Rave Monkey (Original Mix)6:508349BK1127Breathless8:0220907Guyver1128Were Gonna Rock You (Logg & Wrag-One Remix)7:03302134Rodi Style1056605Log:One & DJ WraggLogg & Wrag-OneRemix1129Were Gonna Rock You (Original Mix)7:56302134Rodi Style1130In The Zone7:191372269Steve Hill Vs Technikal1131Music For A Harder Generation [Iridium Remix]6:34152564TechnikalFeat228852MC WhizzkidMC Whizzkidd573621Iridium (5)RemixTIDYML016 - Tidy Music Library 161132Awakening (S.H.O.K.K. Remix)6:481289791Kris McLachlan12261S.H.O.K.K.Remix1133Awakening8:111289791Kris McLachlan1134What Can You Do 4 Me (MDA & Spherical Mix)7:4018435Lisa Lashes370522MDA & SphericalRemix1135We Are Hardcore6:24370522MDA & Spherical1136Give Me Love6:22370522MDA & SphericalFeat1358264Trevor Dans1137Conscious Awareness (Iridium Remix)7:1349155Paul Maddox573621Iridium (5)Remix1138Conscious Awareness7:2949155Paul Maddox1139Are You All Ready (BK Remix)7:015531Tony De Vit8349BKRemixTIDYML017 - Tidy Music Library 171140Celestial Force (Original Mix)8:02573621Iridium (5)1141Polaris 4 (Original Mix)7:59573621Iridium (5)1142Secret (Instrumental)7:42643849Scott Fo-ShawScott Fo Shaw1143Secret (Rock N Rolla Remix)5:47643849Scott Fo-ShawScott Fo Shaw1628993Rock N RollerRemix1144Secret (Vocal Mix)7:49643849Scott Fo-ShawScott Fo Shaw1145Cry For You (Original Mix)8:3490517Stimulator1146Cry For You (Paul Morrells Classique Remix)8:2990517Stimulator557414Paul MorrellRemix1147Cry For You (Technikals Tidy Two Remix)6:4090517Stimulator152564TechnikalRemixTIDYML018 - Tidy Music Library 181148Scirocco (Neal Thomas Remix)8:2726657Base Graffiti1268108Neal ThomasRemix1149Scirocco (Original Mix)6:3026657Base Graffiti115020 000 Hardcore Members (Ed Real 2010 Remix)7:43150114Ed Real&180497The Coalition (2)Coalition150114Ed RealRemix115120 000 Hardcore Members (Iridium Remix)8:09150114Ed Real&180497The Coalition (2)Coalition573621Iridium (5)Remix115220 000 Hardcore Members (Jon BW Remix)6:55150114Ed Real&180497The Coalition (2)Coalition476228Jon BWRemix115320 000 Hardcore Members (Kidd Kaos Remix)6:09150114Ed Real&180497The Coalition (2)Coalition960293Kidd KaosRemix1154Haddock Nuff (Original Mix)6:291843821Jaffa Ramakin1155Put Your House In Order (Original Mix)7:121843821Jaffa RamakinTIDYML019 - Tidy Music Library 191156Beautiful Illusion (Ben Stevens & Rodi Style Remix)6:58233533Amber D220886Ben StevensRemix302134Rodi StyleRemix1157Beautiful Illusion (Original Mix)8:20233533Amber D1158Cold Pizza (Original Mix)7:36220886Ben Stevens&302134Rodi Style1159I Cant Help Myself (Original Mix)7:16220886Ben Stevens&302134Rodi Style1160Unstuck (Original Mix)8:151844078Vox & Go1161Unstuck (UK Golds Sunday Morning Redux)8:301844078Vox & Go100940UK Gold (2)RemixTIDYML020 - Tidy Music Library 201162Dull Drums (Original Mix)7:5815223Andy Farley&224600Sam Townend1163Dull Drums (Scott Attrill Remix)7:3415223Andy Farley&224600Sam Townend426849Scott AttrillRemix1164In My Mind (Andy Whitby & Klubfiller Remix)6:311775958Leon B&20907Guyver218417Andy WhitbyRemix517623KlubfillerRemix1165In My Mind (Original Mix)8:011775958Leon B&20907Guyver1166Shape Thrower (Original Mix)7:20100940UK Gold (2)&643847Amp Attack1167Uncle Bob (Original Mix)6:08100940UK Gold (2)&643847Amp Attack1168Rock It (Original Mix)7:59100940UK Gold (2)TIDYML021 - Tidy Music Library 211169Another Day (JP & Jukesy Remix)7:33233533Amber D152346JP & JukesyRemix1170Another Day (Original Mix)8:34233533Amber D1171Another Day (Shock Force Remix)6:45233533Amber D1496081Shock:ForceShock ForceRemix1172Good Timez (Karim Remix)8:386070Jon Doe15512KarimRemix1173Good Timez (Maximus Baxter Remix)6:196070Jon Doe2097539Maximus BaxterRemix1174Good Timez (Original)6:086070Jon Doe1175Black Cat (Original Mix)7:10557414Paul Morrell1176Lime Light (BK & Anne Savage Remix)6:56557414Paul Morrell21059Anne SavageRemix8349BKRemix1177Lime Light (Original Mix)6:15557414Paul Morrell1178Push (Original Mix)6:21557414Paul MorrellTIDYML022 - Tidy Music Library 221179Back 2 The Old Shoal (Groove Mix)7:261843821Jaffa Ramakin1180Back 2 The Old Shoal (Tuff Mix)7:261843821Jaffa Ramakin1181Brain Sturgeon6:301843821Jaffa Ramakin1182Stuck On Repeat (Original)8:13476228Jon BW1183Jon BW Stuck On Repeat (Pero Remix)6:44476228Jon BW1235088Pero (2)Remix1184Hard Like Thunder7:0432426Stimulant DJs1185Take Off (Garbo Remix)7:5932426Stimulant DJs686904Garbo (5)RemixTIDYML023 - Tidy Music Library 231186Tequila Slammer (Original Mix)6:59233533Amber D1187Fight For Survival (Original Mix)8:061289791Kris McLachlanFeat545818Lucy Clarke1188Rock The Jam (Original Mix)6:392095651Panic (23)1189Drug Music (Original Mix)7:21302134Rodi Style&2204862Dr Device1190Hammer Time (Original Mix)6:03302134Rodi Style&573621Iridium (5)Iridum1191Nasty Time (Original Mix)7:15302134Rodi Style&224600Sam TownendFeat1844076Amanda Sampson1192Fine Night (Original Mix)7:5211712Untidy DubsUntidy DubFeat980145Emma Lock1193Fine Night (Technikal's Euphoric Remix)7:2911712Untidy Dubs152564TechnikalRemix1194Fine Night (Technikal's Relentless Remix)7:2511712Untidy Dubs152564TechnikalRemix1195Fine Night (BK Remix)6:5711712Untidy DubsFeat980145Emma Lock8349BKRemix1196Fine Night (Ilogik Remix)8:5011712Untidy DubsFeat980145Emma Lock38229IlogikRemix1197Fine Night 2010 (Original Mix)7:5211712Untidy DubsFeat980145Emma LockTIDYML024 - Tidy Music Library 241198Let The Bass Kick (Original Mix)7:0920959Alumina1199Fire (Original Mix)6:451049670Jimmy Dean (3)1200Fire (Pero Mix)6:471049670Jimmy Dean (3)1235088Pero (2)Remix1201Cars (Original Mix)7:041235088Pero (2)1202Above The Clouds (Original Mix)7:121235088Pero (2)Featuring545818Lucy Clarke1203You & Me (Original Mix)7:311235088Pero (2)Featuring545818Lucy Clarke1204Getting Hot (Original Mix)8:3532426Stimulant DJsTidyML025 - Tidy Music Library 251205Shizzle (Original Mix)7:3515223Andy Farley&26657Base Graffiti1206Reignite (Original Mix)7:1115223Andy Farley&8349BK1207Twisted Circus (Pero Remix)6:5321059Anne Savage&233533Amber D1235088Pero (2)Remix1208Give Up The Funk (Original Mix)8:1621472Flash Harry1209Endangered (Original Mix)8:0949155Paul Maddox1210Butterfly (Original Mix)7:06801774Tom Parr (2)&2205674Becki Bourne1211Headz Up (Original Mix)7:16801774Tom Parr (2)1212Tropic Bass (Original Mix)7:04801774Tom Parr (2)TidyOSA - Organ Donors - Oldskool Autopsy1213Acid In The System7:3920176Organ Donors1214Activ88:3320176Organ Donors1215Mentasm4:5620176Organ Donors1216Moog Eruption7:1020176Organ DonorsTidyRF01 - Refresh EP1217Only Me (Hamilton Remix)4:501687Hyperlogic5345172Hamilton (17)Remix1218Daredevil (Handbaggers Remix)5:5920104Paul Chambers253949The HandbaggersHandbaggersRemix1219I Don't Care (Lee Haslam Remix)7:535531Tony De Vit37429Lee HaslamRemix1220The Dawn (Ali Wilson TEKELEC Remix)9:175531Tony De Vit45593Ali WilsonRemix1221Funky Groove (Calvertron Remix)4:5411712Untidy Dubs896116CalvertronRemix1222Fine Night (Zubagroove Remix)6:1611712Untidy DubsFeat.980145Emma LockTidyTL01 - Tidy Tools EP11223Pink Noise7:02247066CaddyshackCaddy Shake1224Out Of Time6:42113663Colin Barratt1225Never Never Land8:0920958IngoAnd21059Anne SavageTidyTL02 - Tidy Tools EP 21226Parasite7:3321059Anne Savage1227Nightmare Man (Mighty Molleycuddles Unreleased Remix)6:36186773Kutski1228Nightmare Man (Orginal Club Mix)7:10186773Kutski1229Nightmare Man (UK Remix Unreleased)7:32186773Kutski1230Say Goodbye7:3494855Tara ReynoldsTidyTL03 - Tidy Tools EP31231Workin' Da Bass8:47259312Chris Hoff&672476Jono Allen1232Scream For Daddy7:06224600Sam TownendAnd476228Jon BW1233Dance With Me6:58472391Trevor McLachlanTidyTwo 101 - DJ Zagros And Pacific - Shine1234Shine (DJ Wag Remix)7:10138392DJ ZagrosAnd1107692Dj PacificPacific17254DJ WagRemix1235Shine (Original Edit)3:58138392DJ ZagrosAnd1107692Dj PacificPacific1236Shine (Original Mix)7:56138392DJ ZagrosAnd1107692Dj PacificPacificTidyTwo 102 - D And A - Demons1237Demons (Club Trance Mix)5:2614630D & AD And A1238Demons (Spacecorn Edit)3:5914630D & AD And A31575SpacecornRemix1239Demons (Spacecorn Remix)5:3614630D & AD And A31575SpacecornRemixTidyTwo 103 - DJ Vortex And Arpa's Dream - Incoming1240Incoming (Arome Remix)7:4948526DJ Vortex & Arpa's DreamDJ Vortex And Arpa's Dream19331AromeRemix1241Incoming (Beam Vs Cyrus Radio Edit)3:2548526DJ Vortex & Arpa's DreamDJ Vortex And Arpa's Dream19442Beam Vs. CyrusBeam Vs CyrusRemix1242Incoming (Beam Vs Cyrus Remix)6:2248526DJ Vortex & Arpa's DreamDJ Vortex And Arpa's Dream19442Beam Vs. CyrusBeam Vs CyrusRemixTidyTwo 104 - Signum Feat Scott Mac - Coming On Strong1243Coming On Strong (Hyperlogic Remix)7:234629Signum1687HyperlogicRemix1244Coming On Strong (Radio Edit)3:274629Signum1245Coming On Strong (S.H.O.K.K Remix)7:004629Signum12261S.H.O.K.K.S.H.O.K.KRemix1246Coming On Strong (The Crow Remix)8:064629Signum20840DJ The CrowThe CrowRemix1247Coming On Strong (Vinyl Mafia)9:434629Signum73609Vinyl MafiaRemixTidyTwo 105 - The Riot Brothers - Ripped Out1248My Star Control7:32152999The Riot BrothersRiot Brothers1249Ripped Out (Original Mix)8:11152999The Riot BrothersRiot BrothersTidyTwo 106 - Abel Ramos - One More1250One More (Original Mix)7:0538588Abel Ramos1251One More (Original Radio Edit)3:3138588Abel Ramos1252One More (Pulsedriver Vs Rocco Remix)6:1838588Abel Ramos13690PulsedriverRemix29602RoccoRemixTidyTwo 107 - Guyver - Serious Sound1253Serious Sound8:1420907Guyver1254You'll Know It8:0320907GuyverTidyTwo 108 - Lee Haslam - Music Is The Drug1255Music Is The Drug6:5037429Lee Haslam1256Your Serve7:3837429Lee HaslamTidyTwo 109 - Heaven's Cry - I Don't Need This1257I Don't Need This (Champion Burns Remix)7:2564206Heaven's Cry15348Champion BurnsRemix1258I Don't Need This (Kumara Remix)7:0864206Heaven's Cry11680KumaraRemix1259I Don't Need This (Original Mix)7:1564206Heaven's Cry1260I Don't Need This (Original Radio Edit)3:2664206Heaven's Cry1261I Don't Need This (Riot Bros Remix)8:4364206Heaven's Cry152999The Riot BrothersRiot BrosRemixTidyTwo 110 - E-Wok - Supersound1262Supersound (Freak Remix)6:4121468E-Wok63938The FreakFreakRemix1263Supersound (Stimulator Radio Edit)3:4521468E-Wok90517StimulatorRemix1264Supersound (Stimulator Remix)7:2121468E-Wok90517StimulatorRemix1265Supersound (Mr Bishi Unreleased Remix)6:3921468E-Wok20179Mr. BishiMr BishiRemixTidyTwo 111 - The Riot Brothers - Flashback1266Flashback (Radio Edit)4:07152999The Riot Brothers1267Flashback7:42152999The Riot Brothers1268Guyver Unit8:29152999The Riot BrothersTidyTwo 112 - DJ Spoke - Ignition1269Ignition (Nick Sentience Remix)10:2919441DJ Spoke4013Nick SentienceRemix1270Ignition (S.H.O.K.K. Remix Radio Edit)3:5519441DJ Spoke12261S.H.O.K.K.Remix1271Ignition (S.H.O.K.K. Remix)7:0819441DJ Spoke12261S.H.O.K.K.RemixTidyTwo 113 - The Freak - The Melody The Sound1272The Melody The Sound (Flutlicht Remix)8:0063938The Freak12237FlutlichtRemix1273The Melody The Sound (Original Mix)6:4763938The FreakTidyTwo 114 - Guyver - Man On The Moon1274Funky Ass Beats8:5220907Guyver1275Man On The Moon8:0520907GuyverTidyTwo 115 - Miss Behavin - Such A Good Feelin'1276Such A Good Feelin' (Barely Legal Remix)8:11156712Miss Behavin'85474Barely LegalRemix1277Such A Good Feelin' (Lee Haslam Vs Guyver Remix)8:03156712Miss Behavin'20907GuyverRemix37429Lee HaslamRemixTidyTwo 116 - Dave Holmes - Freedom1278Freedom (Lee Haslam Remix)6:4532921Dave Holmes37429Lee HaslamRemix1279Freedom (Original Mix)8:4332921Dave HolmesTidyTwo 117 - Tomcat - State Of Motion1280I'm Still Free7:0485473Tomcat (2)1281State Of Motion8:1585473Tomcat (2)TidyTwo 118 - Guyver - Differences1282Differences6:5120907Guyver1283Trapped8:0120907GuyverTidyTwo 119 - Stimulator - Scream1284Scream (Flash Harry Remix)9:4290517Stimulator21472Flash HarryRemix1285Scream (Original Mix)6:0190517Stimulator1286Scream (Short Cut)3:5690517StimulatorTidyTwo 120 - Lee Pasch - Emotion - Calling For You1287Calling For You8:14101853Lee Pasch1288Emotion8:52101853Lee PaschTidyTwo 121 - Paul Maddox Feat Niki Mak - Reach Out1289Reach Out (Lee Pasch Remix)8:3349155Paul MaddoxFeat68702Niki MakNiki Mac101853Lee PaschRemix1290Reach Out8:3649155Paul MaddoxFeat68702Niki MakNiki MacTidyTwo 122 - Incisions - I'm The One1291I'm The One (Kronos Mix)8:285538Incisions28005KronosRemix1292I'm The One (Shark Boy Remix)7:365538Incisions106823SharkboyShark BoyRemixTidyTwo 123 - Tony De Vit Feat. Niki Mak - Give Me A Reason1293Give Me A Reason (2003 Mix)7:375531Tony De Vit1294Give Me A Reason (Full Vocal Mix)8:045531Tony De Vit1295Give Me The Reason (Guyver Mix)8:065531Tony De Vit20907GuyverRemix1296Give Me A Reason (Andy Farley Remix)7:205531Tony De VitFeat.68702Niki Mak15223Andy FarleyRemix1297Give Me A Reason (Original Trade Mix)8:165531Tony De VitFeat.68702Niki MakTidyTwo 124 - Stimulator - Play1298Play (Original Mix)7:2590517Stimulator1299Play (Paul Maddox Remix)8:4690517Stimulator49155Paul MaddoxRemixTidyTwo 125 - Lee Haslam - Free1300Free9:5537429Lee Haslam1301Retrospective8:1537429Lee HaslamTidyTwo 126 - The Freak - The Bells1302The Bells (Lee Pasch Remix)7:5063938The Freak101853Lee PaschRemix1303The Bells (Original Mix)7:1463938The FreakTidyTwo 127 - Ben Kaye Vs Deeprose And Thompson - I'm Your DJ1304I'm The DJ (Original Mix)7:1736378Ben KayeVs129797Deeprose & ThompsonDeeprose And Thompson1305I'm The DJ (Stimulator Remix)6:3536378Ben KayeVs129797Deeprose & ThompsonDeeprose And Thompson90517StimulatorRemixTidyTwo 128 - Wid & Ben - Abs0lut1on1306Abs0lut1on 7:36151851Wid & Ben1307For N1ne7:27151851Wid & BenTidyTwo 129 - Stimulator - Take Off1308Take Off (Jon Rundell & Matt Williams Remix)7:3190517Stimulator129798Jon RundellRemix104175Matt WilliamsRemix1309Take Off (Original)8:3190517StimulatorTidyTwo 130 - Pants And Corset - Malice In Wonderland1310Mailce In Wonderland (Azure Remix)8:0225830Pants & Corset131666Azure (5)Remix1311Malice In Wonderland (Phil Reynolds & Steve Blake Remix)7:5325830Pants & CorsetPants And Corset69653Steve Blake & Phil ReynoldsPhil Reynolds & Steve BlakeRemixTidyTwo 131 - Baby Doc & SJ - What You Do To Me Baby1312What You Do To Me (Paul Maddox Remix)8:0338309Baby Doc & S-JBabydoc & SJ49155Paul MaddoxRemix1313What U Do To Me Baby (Original)9:3438309Baby Doc & S-JSJ And Baby DocTidyTwo 132 - Matar - Feeling1314Feeling (Guyver Remix)7:15489554Faysal MatarMatar20907GuyverRemix1315Feeling (Tech House Remix)7:30489554Faysal MatarMatarTidyTwo 133 - Rob Tissera Vinylgroover And The Red Hed - Stay1316Stay (Original Mix)6:513631Rob Tissera,15346Vinylgroover & The Red HedVinylgroover And The Red Hed1317Stay (Stay Harder Mix)6:483631Rob Tissera,15346Vinylgroover & The Red HedVinylgroover And The Red HedTidyTwo 133T2 - Rob Tissera Vinylgroover and the Red Hed - Stay1318Stay (Kontakt Remix)6:123631Rob Tissera134284KontaktRemix1319Stay (Lee Haslam Remix)8:053631Rob Tissera,15346Vinylgroover & The Red HedVinylgroover And The Red Hed37429Lee HaslamRemixTidyTwo 134 - Ed Real And The Coalition - 20,000 Hardcore Members132020,000 Hardcore Members (Escape From Riot Remix)6:54150114Ed Real&180497The Coalition (2)Coalition132120,000 Hardcore Members (Original Mix)7:19150114Ed Real&180497The Coalition (2)CoalitionTidyTwo 135 - Lee Haslam - Liberate1322Here Comes The Pain (Euphony Remix)7:0937429Lee Haslam215254Euphony (2)Remix1323Liberate8:3437429Lee HaslamTidyTwo 136 - Wid & Ben - P01nt Blank1324Hate Th30ry7:41151851Wid & BenWid And Ben1325P01nt Blank8:07151851Wid & BenWid And BenTidyTwo 137 - Guyver - Possibly1326Carte Blanche8:33215254Euphony (2)1327Possibly7:3920907GuyverTidyTwo 138 - Enermatic - Mastermind1328Mastermind (Original Mix)8:35221282EnermaticEnegmatic1329Mastermind (Wid & Ben Remix)8:25221282EnermaticEnegmatic151851Wid & BenRemixTidyTwo 139 - Technikal - Rollcage1330Miracle8:00152564Technikal1331Rollcage7:31152564TechnikalTidyTwo 140 - Rowland & Wright - God fearing Man1332God Fearing Man7:0597033Nick Rowland & Dave WrightRowland & Wright1333Oxygen7:2897033Nick Rowland & Dave WrightRowland & WrightTidyTwo 141 - Trance-Pennine Express - Forgotten1334Forgotten (Paul Maddox & Ben Stevens Mix)7:433972134Trance-Pennine ExpressTrancepennine Express220886Ben StevensRemix49155Paul MaddoxRemix1335Forgotten (S.H.O.K.K. Remix)8:033972134Trance-Pennine ExpressTrancepennine Express12261S.H.O.K.K.RemixTidyTwo 142 - Tidy Boys & Technikal - The Danger1336The Danger (Alex Kidd & Danny Williamson Remix) 5:5825831Tidy Boys&152564Technikal114457Alex KiddRemix475951Danny WilliamsonRemix1337The Danger9:1025831Tidy Boys&152564TechnikalTidyTwo 144 - Stimulator - Scrutinized1338Scrutinized6:0190517StimulatorTidyTwo 145 - Technikal - MIndtrix1339Mindtrix7:25152564Technikal1340Sherbert Supernova7:36152564TechnikalTidyTwo 146 - Trance-Pennine Express - Don't Tell Me1341Don't Tell Me (NG Rezonance Remix)7:043972134Trance-Pennine Express1215349NG RezonanceRemix1342Don't Tell Me (Original Mix)7:193972134Trance-Pennine ExpressTidyTwo 147 - NG Rezonance - Thermite1343Progression7:091215349NG Rezonance1344Thermite7:051215349NG RezonanceTidyTwo 148 - Audio Hedz & Alex Burn - Just Another1345Just Another8:30799231Audio Hedz&2862074Alex BurnTidyTwo 149 - Dark Society Feat. Jordana - There's No Love1346No Love9:00458932Dark SocietyFeat.429300JordanaTidyTwo 150 - Lee Haslam & Pete Berry - State Of Mind1347State Of Mind6:5337429Lee Haslam&2467728Peter Berry (3)TidyTwo 151 - Stimulator - Scream (Heavens Cry Remix)1348Scream (Heaven's Cry Mix)5:3690517Stimulator64206Heaven's CryRemixTidyTwo JX1T - JX - Restless1349Restless (12 Inch Original Mix)7:511680JX1350Restless (Azure Remix)7:041680JX131666Azure (5)Remix1351Restless (Guyver Remix)10:151680JX20907GuyverRemix1352Restless (Radio Edit)2:391680JX1353Restless (Rex The Dog Remix)6:581680JX172007Rex The DogRemixTidyTwo JX1T2 - JX - Restless1354Restless (Laurent Konrad Remix)6:361680JX88401Laurent KonradRemix1355Restless (Mat Silver And Tony Burt Remix)8:031680JX62463Mat Silver vs. Tony BurtMat Silver And Tony BurtRemixTREP - Trade EP1356Do That To Me7:3616614Alan Thompson1357Annihilation7:0820165Ian M1358Mrs Ed7:529181Malcolm Duffy1359Beauty Magnet8:1225320Pete Wardman1360Put Your House In Order7:4111146Steve Thomas1361The Dawn8:435531Tony De VitUntidy 001 - Untidy Dubs Volume 11362Funky Groove8:0825832Paul Janes1363Get Up & Jam7:19140814Amadeus Mozart1364Getting Hot6:2725832Paul Janes1365U Can Last5:45140814Amadeus MozartUntidy 001 - Untidy Dubs Volume 1 \ Funky Groove Manefesto Remixes1366Funky Groove (Judge Jules Remix)6:5711712Untidy Dubs5762Judge JulesRemix1367Funky Groove (Knuckleheadz Remix)6:3211712Untidy Dubs11749KnuckleheadzRemixUntidy 002 - Untidy Dubs Volume 21368Black Is Black (Untidy Dub)6:3015366Allnighters11712Untidy DubsRemix13694 Those That Can Dance (Untidy Dub)5:5515365Benedict Brothers11712Untidy DubsRemix1370Only Me (Untidy Dub)6:211687Hyperlogic11712Untidy DubsRemix1371Gotta Keep On (Time 4 Getting Down) (Untidy Dub)6:269183The Red Hand GangRed Hand Gang11712Untidy DubsRemixUntidy 003 - Untidy Dubs Volume 31372Bang To The Beat6:5225832Paul Janes1373Can't You See7:1925832Paul Janes,140814Amadeus Mozart&84622Andy Pickles1374Freedom Party5:41111761Guy Garrett1375Mr Bump5:2525832Paul JanesUntidy 004 - Scooper And Sticks1376Bayse6:1421060Scooper & Sticks1377Do It Like This8:0121060Scooper & Sticks1378Keep It On5:5521060Scooper & SticksUntidy 005 - Disposable Disco Dubs1379Countdown6:5520104Paul Chambers1380Disco 995:2625832Paul Janes1381Impact6:2920104Paul Chambers1382Set The Scene6:1325832Paul JanesUntidy 006 - Untidy Dubs Volume 41383Drop The Bayse6:0025832Paul Janes1384R.I.P6:57140814Amadeus Mozart&84622Andy Pickles1385The Groove6:1325832Paul JanesUntidy 007 - Signum - Just Do It1386Just Do It (Original Mix)7:044629Signum Feat.38222Scott Mac1387Just Do It (Untidy Dub)6:464629Signum Feat.38222Scott Mac11712Untidy DubsRemixUntidy 008 - The Colours EP 11388Blue5:4535368Untidy DJ's1389Green6:2635368Untidy DJ's1390Red5:5835368Untidy DJ's1391Yellow6:2635368Untidy DJ'sUntidy 009 - Bed And Bondage1392Don't Take The Mick (House Rockers Dub)8:2571037Bed & BondageBed And Bondage29609HouserockersHouse RockersRemix1393Don't Take The Mick (Original Mix)5:0971037Bed & BondageBed And Bondage1394Warren Street5:0171037Bed & BondageBed And BondageUntidy 010 - Disposable Disco Dubs Vol 213952001026:5325832Paul Janes&20104Paul Chambers1396Casino6:1325832Paul Janes1397Escape From New York6:4125832Paul Janes1398Twister6:0725832Paul Janes&20104Paul ChambersUntidy 011 - Tecmania Rebel - Circus Beats1399Circus Beat (Bulletproof Remix)7:0858645Tecmania Rebel47785Bulletproof (2)Remix1400Circus Beat (Originl Mix)5:2558645Tecmania Rebel1401Circus Beat (UK Gold Remix)8:1658645Tecmania Rebel100940UK Gold (2)RemixUntidy 012 - The Colours EP 21402Orange7:0825831Tidy Boys1403Purple7:1325832Paul Janes1404White5:3320104Paul ChambersUntidy 013 - Satellite Kidz - Time 4 House1405Ibase6:2321480Satellite Kidz1406Time 4 House7:2221480Satellite KidzUntidy 014 - Disposable Disco Dubs 31407Doo Dah Doo6:5625832Paul Janes1408Slut Strut6:5525832Paul Janes1409Superfreak8:0225832Paul Janes&20104Paul Chambers1410We Like The Music6:3725832Paul Janes&20104Paul ChambersUntidy 015 - Groove Collector1411Cool Hunted6:0520170The Groove CollectorGroove Collector1412Mosquito6:0320170The Groove CollectorGroove CollectorUntidy 016 - Havana Connection1413Getaway (Chantin' Filtered Disco Dub)5:2081522Havana Connection1414Getaway (Strings Of Joy Remix)6:0381522Havana Connection81523Strings Of JoyRemix1415Mixed Feelings6:2981522Havana ConnectionUntidy 017 - Freak Machine - Fantasy1416(Unreleased) Boogie Groove 6:3578406Freak Machine1417Fantasy (Flash Harry Remix)7:3378406Freak Machine21472Flash HarryRemix1418Fantasy (Original Mix)7:4778406Freak MachineUntidy 018 - FD Henderson EP1419Dancin All Night5:3982545Fred HendersonFD Henderson1420Heaven Above7:5182545Fred HendersonFD Henderson1421I LIke That Bass Vocal6:1682545Fred HendersonFD Henderson1422My Mind Is On You4:2882545Fred HendersonFD HendersonUntidy 019 - Funkaholic - My House1423Luna Conga7:43144440Funkaholic1424My House6:20144440Funkaholic1425Slow Vibe6:52144440FunkaholicUntidy 020 - Spencer G Vs. Junigurburi - Through The Night1426Through The Night (Dollar Mix)6:53311628Spencer GVs311629Junigurubi1427Through The Night (Original Mix)6:15311628Spencer GVs311629JunigurubiUntidy 021 - Light Boy - Step Back1428Step Back (Champion Burns Mix)6:0572792Light Boy15348Champion BurnsRemix1429Step Back (Majestic Remix)7:4872792Light Boy20293Majestic 12Remix1430Step Back (Orginal Mix)6:5772792Light BoyUntidy 022 - Majestic 121431Dance With You7:2320293Majestic 121432Rough Riding6:1120293Majestic 12Untidy 023 - Light Boy - Love What You're Doin' To Me1433Love What You're Doin' To Me (Majestic 12 Remix)7:0972792Light Boy20293Majestic 12Remix1434Love What You're Doin' To Me (Original)7:1372792Light BoyUntidy 024 - Disposable Disco Dubs Volume 41435Funk Me6:3720104Paul Chambers1436The Loop5:2320104Paul Chambers1437Zip Disko6:5811333OD4041438Chatline6:0049155Paul MaddoxUntidy 025 - Disposable Disco Dubs Volume 51439Keep It Turning6:39140632Nigel Champion&140631Robert Burns1440Meltdown5:0220104Paul Chambers1441Boogie Groove6:3378689The Clubjock1442Show Me6:0220104Paul ChambersUntidy 026 - Untidy Dubs Volume 51443Bring The Beat Back7:5136378Ben Kaye1444Celebrate7:4936378Ben Kaye1445Get Down & Dirty6:1149155Paul Maddox1446Pulsar6:0736378Ben KayeUntidy 027 - Twisted Funk EP1447Feel Alright6:5911712Untidy Dubs1448Show The People6:3911712Untidy Dubs1449So Good6:5111712Untidy Dubs1450Wobbler5:3611712Untidy DubsUntidy 028 - JX - Restless (Beat Detektives Remixes)1451Restless (Beat Detektives Dub)7:021680JX2110485Beat DetecktivesBeat DetektivesRemix1452Restless (Beat Detektives Remix)9:071680JX2110485Beat DetecktivesBeat DetektivesRemixUntidy 028 - JX - Restless (Beat Detektives Remixes)\JX_Restless_Beat_Detektives_Remix.download14531601809 Restless (Beat Detektives Remix)4:571680JX2110485Beat DetecktivesBeat DetektivesRemixUntidy 029 - Nu Raverz EP1454Big Tasty6:181633087Nu Raverz1455Risky Disko6:521633087Nu Raverz1456Your Own Colourz7:261633087Nu RaverzUntidy 030 - The Colours EP 31457Coffee7:122683980Ben Carr (4)1458Cream6:561209040Ian Jay1459Crimson6:393498064Maddox & TownendUntidy 031 - Trap Two - Dirty Protest EP1460Hip Hop Mohamed6:154080558Trap Two1461It Feels So Wrong6:324080558Trap Two1462Loop Maschine6:044080558Trap TwoUntidy 032 - Untidy Dubs Volume 61463A Little Something6:313498064Maddox & Townend1464Broken Heart6:163498064Maddox & Townend1465Use It Or Lose6:243498064Maddox & TownendUntidy 033 - SilkandStones - Let There Be House1466Let There Be House (Maddox & Townend Remix)6:296332661SilkandStones3498064Maddox & TownendRemix1467Let There Be House5:356332661SilkandStonesUntidy 034 - Venkman - Almost Famous1468Almost Famous8:591689336VenkmanUntidy 035 - DYOT - Sacrifice1469Sacrifice6:304080556DYOTUntidy 036 - BK & Sam Townend - Ultimate1470I Can't Wait Rebablance6:058349BK&224600Sam Townend1471Ultimate7:528349BK&224600Sam TownendUntidy 037 - Sam Townend - My Mind1472My Mind8:14224600Sam TownendUntidy 038 - Disposable Disco Dubs Vol. 61473TBC987:1825831Tidy Boys&4080558Trap Two1474Discolicious6:334080558Trap Two1475In Too Deep6:464080558Trap Two1476That's It5:334080558Trap Two + +194VariousSteve Hill & Co Super Deluxe Edition USB Collection (WAV Edition)CompilationLimited EditionWAVAlbumWAVAlbumWAVAlbumMixedWAVAlbumWAVAlbumMixedWAVAlbumWAVAlbumMixedWAVAlbumMP3MP3WAVMPEG-4 VideoMP3AlbumAIFFAlbumWAVAlbumAIFFWAVElectronicAustralia2018-12-00Track 650 mixversion is listed as "Grifter Mix". +Track 665 title is listed as "Slut Machine". +Track 802 title is wrongly listed as "Testify". +Track 815 mixversion is wrongly listed as "Shockforce Mix". +Track 843 mixversion is listed as "Airscape Mix". +Tracks 974 and 975 are same (aiff and wav format). +Track 999 artist name is listed as "Steve Hill vs MDA & Spherical H.A.R.D". +Tracks 1127 and 1128 are switched. + +All files are in wav format, except; +Track 451 (mp3, 256 kbps) +Tracks 456, 460, 499, 510 to 512, 514 (mp3, 320 kbps) +Tracks 464 to 476 (mpeg-4 video) +Tracks 492, 502, 974 (aiff) + +℗ & © 2018 The Masif Organisation.Correct0BK Rob Tissera Steve Hill Technikal - Club Classics 1.0 (Unreleased Album) (Unmixed Edition) (2018)1Acid Reign (Master)7:518349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal2Brothers & Sisters (Master)4:338349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal3Change Your Mind (Dub) (Master)8:008349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal4Everyday (Master)7:548349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal5Fall Down (Master)8:038349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal6Feel The Pressure (Master)6:578349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal7Hotter Than Hell (Master)6:168349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal8Moving On (Master)7:258349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal9Set You Free (Master)6:108349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal10The Infinite Creator (Master)7:478349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill Technikal11Untitled7:128349BK,3631Rob Tissera,1372269Steve Hill vs TechnikalSteve Hill TechnikalFeat.39115Marcella Woods39115Marcella WoodsFeaturingLuxia - Bring Back The Love (Acid Jazz) (Unreleased) (2007)12Fell In Love With The World5:01649871Luxia13Bring Back The Love4:53649871Luxia14Only Believe In Love4:41649871Luxia15Feels So Good5:19649871Luxia16Everybody4:24649871Luxia17Special Place4:54649871Luxia18Porgy6:17649871Luxia19Feels So Good (Reprise)4:58649871Luxia20Frankie5:27649871Luxia21I.D5:19649871Luxia22Torriano3:20649871LuxiaSteve Hill - #MDMA (Unreleased) (Mixed Unmixed Edition) (2015)Mixed CD123#MDMA Disc 11:19:158358Steve HillMixed CD224#MDMA Disc 21:18:378358Steve HillMixed CD325#MDMA Disc 31:19:318358Steve HillMixed CD426#MDMA Disc 41:19:088358Steve HillMixed CD527#MDMA Disc 51:18:148358Steve HillUnmixed CD128We Love U6:321372269Steve Hill Vs Technikal29Enough Is Enough6:111372269Steve Hill Vs TechnikalFeat.63207Carlotta Chadwick63207Carlotta ChadwickFeaturing30Take It Easy6:181372269Steve Hill Vs TechnikalSteve Hill & TechnikalVs3631Rob Tissera31Can't Stop6:271372269Steve Hill Vs Technikal32Sunrise6:058358Steve Hill&517623KlubfillerVs3631Rob Tissera33Stay (Steve Hill & Klubfiller Vs Rob Tissera 2013 Mix)6:053631Rob Tissera,15346Vinylgroover & The Red HedVinylgroover & Red Head517623KlubfillerRemix3631Rob TisseraRemix8358Steve HillRemix34In My Eyes5:448358Steve Hill&517623Klubfiller35Don't Go5:348358Steve Hill&517623Klubfiller36Play It Loud6:401372269Steve Hill vs TechnikalSteve Hill, Technikal&517623Klubfiller37Cinema5:271680313ImmerzeVs8358Steve Hill38I Need A Rhythm6:471372269Steve Hill Vs Technikal39Get Out On That Dancefloor (Steve Hill Vs Technikal Mix)5:5311749Knuckleheadz1372269Steve Hill Vs TechnikalRemix40Give Me The Music8:398349BK&8358Steve Hill41Bass Power (BK's Cortina Mix)7:281372269Steve Hill Vs TechnikalSteve Hill & TechnikalVs8349BK8349BKRemix8346CortinaRemix42Insomnia (Steve Hill Vs Technikal Mix)5:4955398Volts Wagen1372269Steve Hill Vs TechnikalRemix43Not Over Yet 2014 (Steve Hill & Klubfiller Vs Rob Tissera Mix)6:102029Neon Lights517623KlubfillerRemix3631Rob TisseraRemix8358Steve HillRemix44Is It True7:061372269Steve Hill Vs Technikal45In The Air 2011 (Steve Hill Vs Technikal Mix)5:28230469Masif DJ's1372269Steve Hill Vs TechnikalRemix46I Finally Broke Their Mould (Steve Hill Vs Technikal Mix)7:042786616RY Project1372269Steve Hill Vs TechnikalRemix47Gamemaster Pt. 16:211372269Steve Hill Vs TechnikalSteve Hill & TechnikalVs2014556Costa Pantazis48Running7:041372269Steve Hill Vs TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)Featuring49I Get A Rush (Steve Hill Vs Technikal Mix)6:4634674Steve Blake1372269Steve Hill Vs TechnikalRemix50One More Airwave (Steve Hill Vs Technikal 2012 Re-Rub)6:40230469Masif DJ's1372269Steve Hill Vs TechnikalRemix [Re-Rub]Unmixed CD251I Feel Love (Steve Hill Vs Technikal Mix)5:516199CRW1372269Steve Hill Vs TechnikalRemix52Burning (Steve Hill Vs Technikal Mix)7:123631Rob Tissera&20907Guyver1372269Steve Hill Vs TechnikalRemix53The Key6:248358Steve Hill,3631Rob Tissera&517623Klubfiller54Ayla (Steve Hill Vs Technikal VIP Mix)7:29689952Adrenaline Dept.Adrenaline DeptVs2014556Costa Pantazis1372269Steve Hill Vs TechnikalRemix55Jumpin6:581372269Steve Hill Vs Technikal56Damaged (Steve Hill Vs Technikal Mix)7:322086508IntraspektIntra&2720011Bradski (2)Feat.1301616Nathalie (16)1301616Nathalie (16)Featuring1372269Steve Hill Vs TechnikalRemix57Waiting For You6:248358Steve Hill&1215349NG Rezonance58Runaway7:171372269Steve Hill Vs Technikal59Heat 20127:238358Steve Hill&69422Luca Antolini DJLuca Antolini60Calling6:288358Steve Hill,1299417Antolini & MontorsiLuca Antolini & Andrea Montorsi61Technique Mk 37:121372269Steve Hill Vs Technikal62Here Comes That Sound4:591372269Steve Hill Vs TechnikalSteve Hill, Technikal&218417Andy Whitby63Roar!4:408358Steve Hill&517623Klubfiller64Crazy (Alt Mix)4:131372269Steve Hill Vs Technikal65Thumpin'5:221372269Steve Hill Vs Technikal66Face Down Ass Up (Steve Hill Vs Technikal Mix)5:471670145Hard Dance Alliance1372269Steve Hill Vs TechnikalRemix67Technique Mk 45:251372269Steve Hill Vs Technikal68Everybody Say Yeah5:338358Steve Hill&517623Klubfiller69Elements5:248358Steve HillVs517623Klubfiller70Desire5:208358Steve Hill&517623Klubfiller71Never Look Back5:168358Steve HillVs517623KlubfillerFt63207Carlotta Chadwick63207Carlotta ChadwickFeaturing72U Got The Love (Steve Hill Vs Technikal Mix)5:551687Hyperlogic1372269Steve Hill Vs TechnikalRemix73Free At Last (X Mix)7:071372269Steve Hill Vs TechnikalUnmixed CD374Rapture (Steve Hill Vs Technikal Mix)6:32230469Masif DJ's1372269Steve Hill Vs TechnikalRemix75What Ya Got 4 Me (Steve Hill Vs Technikal Mix)6:34230469Masif DJ's1372269Steve Hill Vs TechnikalRemix76Brother (Steve Hill Vs Technikal Bootleg Mix)7:051538923Smashproof1372269Steve Hill Vs TechnikalRemix77What You Get5:558358Steve Hill,3631Rob Tissera&517623Klubfiller78Things Can Only Get Better5:318358Steve Hill,3631Rob Tissera&517623KlubfillerFt4542521Biggzy4542521BiggzyFeaturing79Feel For You Pt. 16:051372269Steve Hill Vs TechnikalSteve Hill, Technikal&517623KlubfillerFt63207Carlotta Chadwick63207Carlotta ChadwickFeaturing80Everyday (Steve Hill Vs Klubfiller Mix)4:21230469Masif DJ's517623KlubfillerRemix8358Steve HillRemix81Theme From Blackout5:421372269Steve Hill Vs Technikal82You'll Be Mine5:521372269Steve Hill Vs Technikal83We Will Survive (Unreleased Mix)6:041372269Steve Hill Vs Technikal84Immense Pt. 16:401372269Steve Hill Vs TechnikalSteve Hill, Technikal&1438804Nomad (19)85Monochroma (Steve Hill Vs Technikal Mix)6:24230469Masif DJ's1372269Steve Hill Vs TechnikalRemix86Catch (Steve Hill, Technikal & Rob Tissera Mix)6:21230469Masif DJ'sFeat.381327Merenia GilliesMerenia381327Merenia GilliesMereniaFeaturing3631Rob TisseraRemix1372269Steve Hill Vs TechnikalSteve Hill, TechnikalRemix87Bass Power (Part 1)7:101372269Steve Hill Vs TechnikalVs8349BK88I Need I Need (Full Vocal)7:278349BK&8358Steve Hill89Devotion6:0320179Mr. Bishi90House Rocca 2012 (Steve Hill Vs Technikal Mix)8:1211749Knuckleheadz1372269Steve Hill Vs TechnikalRemix91Hard House Heaven (BK & Steve Hill Mix)7:0611749Knuckleheadz8349BKRemix8358Steve HillRemix92Sunrise (Here I Am) (Steve Hill Vs Technikal Mix)6:18230469Masif DJ's1372269Steve Hill Vs TechnikalRemix93Traffic @ Discoteque6:1169422Luca Antolini DJLuca Antolini&8358Steve Hill94Roxanne6:4269422Luca Antolini DJLuca AntoliniVs8358Steve HillFeat4858086Secret Police (3)4858086Secret Police (3)Featuring95Technique Mk 56:051372269Steve Hill Vs TechnikalUnmixed CD496Save The Day5:521372269Steve Hill Vs Technikal97Show Me A Sign (Steve Hill Vs Technikal Bootleg Mix)6:444542520Disco SoldiersFeat.356641Fransisca BalkeFran356641Fransisca BalkeFranFeaturing1372269Steve Hill Vs TechnikalRemix98Expression (Steve Hill Vs Technikal Mix)6:0834674Steve Blake1372269Steve Hill Vs TechnikalRemix99Reincarnations (Steve Hill Vs Technikal Mix)6:42230469Masif DJ's1372269Steve Hill Vs TechnikalRemix100Shining7:478349BK,8358Steve Hill&11749Knuckleheadz101Flowtation8:258349BK&8358Steve Hill102A Feeling (Steve Hill Vs Technikal Mix)3:4266882Stu AllanStu Allen1372269Steve Hill Vs TechnikalRemix103Silence (Steve Hill Vs Technikal Mix)6:49230469Masif DJ's1372269Steve Hill Vs TechnikalRemix104Tonight6:011372269Steve Hill Vs Technikal105Wasted7:041372269Steve Hill Vs Technikal106I Found You (KF Master)7:088358Steve Hill,3631Rob Tissera&20907Guyver107Seek Bromance (Steve Hill Vs Technikal Mix)6:241301616Nathalie (16)1372269Steve Hill Vs TechnikalRemix108Coming Home (Steve Hill Vs Technikal Mix)5:35230469Masif DJ's1372269Steve Hill Vs TechnikalRemix109Feel The Love 20144:401372269Steve Hill Vs TechnikalSteve Hill, Technikal&218417Andy WhitbyFeat.118939Mallorca Lee118939Mallorca LeeFeaturing110Bounce (Steve Hill Vs Klubfiller Mix)6:13230469Masif DJ's517623KlubfillerRemix8358Steve HillRemix111Testify4:598358Steve Hill&517623Klubfiller112Tell Me That You Love Me5:578358Steve Hill,3631Rob Tissera,517623Klubfiller113Shining Down On Me5:188358Steve Hill&517623Klubfiller114Sweet Disposition5:541680313ImmerzeVs8358Steve Hill115As The Rush Comes5:448358Steve Hill,3631Rob Tissera,20907Guyver&1215349NG Rezonance116Wormhole (Pt 1)6:471372269Steve Hill Vs TechnikalSteve Hill, Technikal&2014556Costa Pantazis117Love Sensation (Steve Hill Vs Technikal Mix)7:452029Neon Lights1372269Steve Hill Vs TechnikalRemix118Castles In The Sky7:12230469Masif DJ'sFeat1301616Nathalie (16)1301616Nathalie (16)FeaturingUnmixed CD5119#3.04:418358Steve Hill&5789384Tranz-LinquantsTranzlinquantsPresents7551506EDMasif8358Steve HillPresenter5789384Tranz-LinquantsTranzlinquantsPresenter120#2.04:488358Steve Hill&5789384Tranz-LinquantsTranzlinquantsPresents7551506EDMasif8358Steve HillPresenter5789384Tranz-LinquantsTranzlinquantsPresenter121Bee Good5:048358Steve Hill&69422Luca Antolini DJLuca Antolini122#1.04:498358Steve Hill&5789384Tranz-LinquantsTranzlinquantsPresents7551506EDMasif8358Steve HillPresenter5789384Tranz-LinquantsTranzlinquantsPresenter123Cut The Record5:38114457Alex Kidd&8358Steve Hill124Wasted6:07114457Alex Kidd&8358Steve Hill125Fable5:008358Steve Hill,69422Luca Antolini DJLuca Antolini&5789384Tranz-Linquants126Everything Is Go4:588358Steve Hill,69422Luca Antolini DJLuca Antolini&5789384Tranz-Linquants127Firewire (Steve Hill Vs D10 Mix)4:23230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix128Ecstasy6:008358Steve HillVs75559Dark By Design129I Need A Doctor (Steve Hill Vs DBD Mix)7:32230469Masif DJ's75559Dark By DesignDBDRemix8358Steve HillRemix130Ready Or Not (2013 RVRS BASS Mix)5:143423788Steve Hill vs. D10Steve Hill Vs D10131Decisions6:32800146Sully (4)S.U.L.L.YVs1372269Steve Hill Vs TechnikalSteve Hill & Technikal132Astrum Navitas (Star Energy) (Part 1) V26:521372269Steve Hill Vs TechnikalVs1496081Shock:ForceShock Force133You’re Not Better On Your Own6:068358Steve Hill,426849Scott Attrill&69422Luca Antolini DJLuca Antolini134Brothers In Arms (Final Mix)6:128358Steve HillVs69422Luca Antolini DJLuca Antolini135Contatto (Remix)5:538358Steve Hill&69422Luca Antolini DJLuca Antolini136Wizards Of Sound5:328358Steve Hill&104130Andrea Montorsi137Move On 20145:478358Steve Hill&104130Andrea Montorsi138On My Mind6:128358Steve Hill&1252384DJ YozDJ Y.O.Z.139Set You Free (DJ Y.O.Z. Mix)5:201670145Hard Dance Alliance1252384DJ YozDJ Y.O.Z.Remix140Hold The Beat4:348358Steve Hill&517623KlubfillerSteve Hill - HTML (Full USB Mixed Unmixed Edition) (2010)Mixed (WAV) CD1141Theme From HTML1:361372269Steve Hill Vs Technikal142Technique (Part 1)3:181372269Steve Hill Vs Technikal143Voodoo (2010 Re-Rub)4:251372269Steve Hill Vs Technikal144If You Love Me 2009 (Steve Hill Vs Technikal Mix)3:028358Steve HillVs10866Nylon1372269Steve Hill Vs TechnikalRemix145Need To Feel Loved (Steve Hill Vs Technikal Mix)4:472029Neon Lights1372269Steve Hill Vs TechnikalRemix146Big Sky (Steve Hill Vs Technikal Re-Rub)4:511301616Nathalie (16)1372269Steve Hill Vs TechnikalRemix [Re-Rub]147Everyday (Steve Hill Vs Technikal 2010 Re-Rub)3:19230469Masif DJ's1372269Steve Hill Vs TechnikalRemix [Re-Rub]148My Lovin' 20104:378358Steve Hill149Weekend 20103:231372269Steve Hill Vs Technikal150I Don't Need U Anymore2:388358Steve HillVs370522MDA & Spherical151Switch (Steve Hill Mix)4:00152564Technikal&1399934James T. StanhopeJ.T Stanhope8358Steve HillRemix152All My Life (Steve Hill Vs Technikal Mix)4:10206018ZanderFeat.255675Alexis Hart255675Alexis HartFeaturing1372269Steve Hill Vs TechnikalRemix153Getting High3:248358Steve HillVs370522MDA & Spherical154Heat (Steve Hill Vs Dark By Design Mix)3:2769422Luca Antolini DJLuca Antolini75559Dark By DesignRemix8358Steve HillRemix155FUTS5:118358Steve HillVs75559Dark By Design156Driving Me Insane3:461372269Steve Hill Vs Technikal&1399934James T. StanhopeJ.T Stanhope157Heaven3:498358Steve HillVs917154Hardforze158Ready Or Not 2010 (Steve Hill Vs Hardforze Mix)3:20230469Masif DJ's917154HardforzeRemix8358Steve HillRemix159The Sound3:108358Steve HillVs917154Hardforze160Advanced (Steve Hill Vs Hardforze Mix)2:2439987Marcel Woods917154HardforzeRemix8358Steve HillRemix161Euro Power3:131372269Steve Hill Vs Technikal162Hold That Sucker Down (Steve Hill Vs Technikal Mix)4:04230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMixed (WAV) CD2163Welcome To My World3:281372269Steve Hill Vs Technikal164Every Heartbeat 2009 (Steve Hill Vs Technikal Mix)4:38230469Masif DJ's1372269Steve Hill Vs TechnikalRemix165Welcome To The Club3:381372269Steve Hill Vs Technikal166Sawtooth Dentist3:481372269Steve Hill Vs Technikal167Supersonic (Steve Hill Edit)3:50152564TechnikalVs370522MDA & Spherical8358Steve HillEdited By168In The Zone4:551372269Steve Hill Vs Technikal169Lizard (Steve Hill Vs MDA & Spherical Mix)3:52230469Masif DJ's370522MDA & SphericalRemix8358Steve HillRemix170Theme From Impulse4:291372269Steve Hill Vs Technikal171Adagio For Strings (Part 1)4:358358Steve HillVs370522MDA & SphericalVs152564Technikal172Go Insane (Part 2)2:158358Steve HillVs69422Luca Antolini DJLuca AntoliniVs75559Dark By Design173Insane (Steve Hill Vs Cally + Juice Mix)3:40230469Masif DJ's191902Cally & JuiceCally + JuiceRemix8358Steve HillRemix174Hynotizin'4:538358Steve HillVs75559Dark By Design175Cocaine (Steve Hill Vs Dark By Design Mix)3:4711148Yakooza75559Dark By DesignRemix8358Steve HillRemix176Darkness In Heaven4:138358Steve HillVs75559Dark By Design177Paint It Black3:228358Steve HillVs917154Hardforze178The Scientist3:538358Steve HillVs917154Hardforze179To The Beat (Bass Code Theme)3:228358Steve HillVs917154Hardforze180Slot Machine (Steve Hill Vs Technikal Mix)3:27230469Masif DJ's1372269Steve Hill Vs TechnikalRemix181Thank You3:338358Steve HillVs917154HardforzeFeat.381327Merenia GilliesMerenia381327Merenia GilliesMereniaFeaturing182Don't Speak3:058358Steve HillVs917154HardforzeFeat.381327Merenia GilliesMerenia381327Merenia GilliesMereniaFeaturing183Forever Young (Encore Mix)2:351670145Hard Dance AllianceMixed (WAV) CD3184Theme From Great Cities (Intro Mix)2:511372269Steve Hill Vs Technikal185Always On My Mind4:421372269Steve Hill Vs TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)Featuring186Glory3:298358Steve HillVs104130Andrea Montorsi187Come With Me 20103:531372269Steve Hill Vs Technikal188P.L.U.R.2:408358Steve HillVs1399934James T. StanhopeJ.T Stanhope189I Have A Dream3:301372269Steve Hill Vs Technikal190Join Me (Steve Hill Vs D10 Mix)3:48230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix191The Energy (Dark By Design Mix)4:258358Steve HillVs6299143The Sixth Sense (3)Sixth SenseFeat.118939Mallorca Lee118939Mallorca LeeFeaturing75559Dark By DesignRemix192The Light4:078358Steve HillVs75559Dark By Design193The Experience3:208358Steve HillVs917154Hardforze194Unforgiven2:258358Steve HillVs1048615Pulsar (17)Vs917154Hardforze195The Family (Steve Hill Vs Hardforze Mix)3:331111031S-DeeS DeeVs1919830Toxic (24)917154HardforzeRemix8358Steve HillRemix196Wonderwall (Exclusive Guitar Mix)4:078358Steve HillVs917154Hardforze197Masif3:108358Steve HillVs370522MDA & Spherical198Infinity0:558358Steve HillVs370522MDA & Spherical199Be My Angel (Part 1)2:148358Steve HillVs370522MDA & SphericalVs917154Hardforze200Ready 4 This2:511372269Steve Hill Vs TechnikalFeat.228852MC Whizzkid228852MC WhizzkidFeaturing201Fine Day (Steve Hill Vs Technikal Mix)3:102029Neon Lights1372269Steve Hill Vs TechnikalRemix202Phantom1:588358Steve HillVs370522MDA & Spherical203Feel It3:121372269Steve Hill Vs Technikal&1399934James T. StanhopeJ.T. Stanhope204Whiplash3:401372269Steve Hill Vs Technikal&1399934James T. StanhopeJ.T. Stanhope205Home (Steve Hill Vs Technikal Mix)4:302029Neon Lights1372269Steve Hill Vs TechnikalRemix206The Day Will Come (Steve Hill Vs K Series Bootleg Mix)4:573631Rob Tissera&11806Quake235794K-SeriesK SeriesRemix8358Steve HillRemixMixed (WAV) CD4207Welcome To My World 2.03:101372269Steve Hill Vs TechnikalVs69422Luca Antolini DJLuca Antolini208Pleasuredome4:288358Steve HillVs430354Vandall209Are U Ready (S.H.O.K.K. Mix)4:021372269Steve Hill Vs Technikal12261S.H.O.K.K.Remix210Good Love4:078358Steve HillVs430354Vandall211Technique Mk II5:201372269Steve Hill Vs Technikal212One And All2:468358Steve HillVs1299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi213I Need Your Loving (Tech Trance Mix)3:098358Steve HillVs1299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi214Alone (Liberated)4:008358Steve HillVs5987K90215Sweet Sensation (Cantosis Mix)2:071372269Steve Hill Vs TechnikalVs1807063Spinout (3)216The Maniac (Part 1)4:298358Steve HillVs69422Luca Antolini DJLuca Antolini217Whatever Happened To Techno3:358358Steve HillVs103107DJ Ricky TRicky T218Every Fuckin Day (Part 1)2:2069422Luca Antolini DJLuca AntoliniVs8358Steve HillVs104130Andrea Montorsi219Be My Angel (Part 2)3:388358Steve HillVs917154HardforzeVs370522MDA & Spherical220Party People (Use Slf Ctrl)4:588358Steve HillVs917154Hardforze221All We Need Is Love5:493423788Steve Hill vs. D10Steve Hill Vs D10222Can You Feel It4:338358Steve HillVs75559Dark By Design223Open Your Mind3:138358Steve HillVs75559Dark By Design224R U Ready2:401372269Steve Hill Vs Technikal225Rock The House3:081372269Steve Hill Vs Technikal226Thru My Memories (Part 1)4:4069422Luca Antolini DJLuca AntoliniVs8358Steve Hill227I'm Not Alone (Steve Hill Vs Technikal Mix)2:43230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMixed (WAV) CD5228Southern Sun (Steve Hill Vs Technikal Mix)2:59230469Masif DJ's1372269Steve Hill Vs TechnikalRemix229Why Does My Heart (Feel So Bad) (Steve Hill Vs Technikal Mix)4:01230469Masif DJ's1372269Steve Hill Vs TechnikalRemix230I Feel Wonderful (Skydive) (Steve Hill Vs Technikal Mix)2:20230469Masif DJ's1372269Steve Hill Vs TechnikalRemix231From The Inside (Steve Hill Vs Technikal Mix)5:24210917CyprianFeat.39507Rani39507RaniFeaturing1372269Steve Hill Vs TechnikalRemix232U Got The Love (Steve Hill Vs Technikal Mix)3:211687Hyperlogic1372269Steve Hill Vs TechnikalRemix233Faith In Me3:078358Steve HillVs689952Adrenaline Dept.234Don't Hold Back (Give Yourself To Me)2:111372269Steve Hill Vs Technikal235Rocksteady (Steve Hill Vs Technikal Mix)2:00371484Aftershok1372269Steve Hill Vs TechnikalRemix236Silence2:151372269Steve Hill Vs TechnikalVs1399934James T. StanhopeJ.T Stanhope237Frantic Theme (Get A Life...) (Steve Hill Vs Technikal Mix)2:398358Steve HillVs11681Phlash!1372269Steve Hill Vs TechnikalRemix238You're Not Alone (Steve Hill Vs K-Series 'Mr. Bishi' Mix)3:582029Neon Lights235794K-SeriesRemix20179Mr. Bishi'Mr. Bishi'Remix8358Steve HillRemix239Wicked 2010 (Steve Hill Vs MDA & Spherical Mix)2:428358Steve Hill370522MDA & SphericalRemix8358Steve HillRemix240Attention! (Steve Hill Vs Technikal 2010 Mix)4:39230469Masif DJ's1372269Steve Hill Vs TechnikalRemix241Playing With Knives (Steve Hill Vs Technikal Mix)2:408349BK1372269Steve Hill Vs TechnikalRemix242Strong To Survive 20102:251372269Steve Hill Vs Technikal243Gotta Have Hope2:548358Steve HillVs370522MDA & Spherical244Can U Dig It3:451372269Steve Hill Vs Technikal245Free At Last (Matt Gardner Mix)3:171372269Steve Hill Vs Technikal811736Matt GardnerRemix246Feel The Love (Original Mix)4:001372269Steve Hill Vs TechnikalSteve Hill, Technikal,218417Andy WhitbyFeat.118939Mallorca Lee118939Mallorca LeeFeaturing247Serious Sound (Steve Hill Vs Technikal Mix)3:3620907Guyver1372269Steve Hill Vs TechnikalRemix248Love Ressurection 2010 (Steve Hill Vs Technikal Mix)4:27240917Ian Betts1372269Steve Hill Vs TechnikalRemix249Adagio For Strings 2010 (Arp Mix)3:211372269Steve Hill Vs TechnikalVs370522MDA & Spherical250One More (Steve Hill Vs K-Series Bootleg Mix)4:1420179Mr. BishiMr Bishi235794K-SeriesRemix8358Steve HillRemix2511998 (Steve Hill Vs Technikal Mix)3:39230469Masif DJ's1372269Steve Hill Vs TechnikalRemixWorld Series Bonus CD252To The Beat (Bass Code Theme)3:438358Steve HillVs917154Hardforze253Pure Thrust (Black Magic)4:138358Steve HillVs75559Dark By Design254Voodoo4:141372269Steve Hill Vs Technikal255Sawtooth Dentist4:301372269Steve Hill Vs Technikal256Euro Power3:401372269Steve Hill Vs Technikal257Staying In The Shadows3:468358Steve Hill,75559Dark By Design,202114Phil York258We Will Survive Pt. I4:218358Steve HillVs75559Dark By Design259Go Insane3:468358Steve HillVs75559Dark By Design260Darkness In Heaven4:138358Steve HillVs75559Dark By Design261Open Your Mind4:158358Steve HillVs75559Dark By Design262FUTS3:408358Steve HillVs75559Dark By Design263Can You Feel It4:078358Steve HillVs75559Dark By Design264Welcome To My World4:391372269Steve Hill Vs Technikal265I Have A Dream4:451372269Steve Hill Vs Technikal266Wasted5:078358Steve HillVs20907Guyver267We Will Survive Pt. II4:021372269Steve Hill Vs Technikal268Can U Dig It3:471372269Steve Hill Vs Technikal269We Can Make It4:001372269Steve Hill Vs Technikal270Free At Last3:421372269Steve Hill Vs Technikal-271MasifWorldLive1-Sydney1:17:138358Steve Hill272MasifWorldLive2-Vancouver1:13:338358Steve Hill273MasifWorldLive3-London1:11:358358Steve Hill274MasifWorldLive4-Johannesburg1:18:018358Steve HillUnmixed (Masters WAV) CD1275Theme From HTML7:091372269Steve Hill Vs Technikal276Technique Pt 18:131372269Steve Hill Vs Technikal277Voodoo (2010 Rerub)7:081372269Steve Hill Vs Technikal278If You Love Me 2009 (Steve Hill Vs Technikal Mix)7:528358Steve HillVs10866Nylon1372269Steve Hill Vs TechnikalRemix279Need To Feel Loved (Steve Hill Vs Technikal Mix)7:192029Neon Lights1372269Steve Hill Vs TechnikalRemix280Big Sky (Steve Hill Vs Technikal Re-Rub)7:541301616Nathalie (16)&152564Technikal1372269Steve Hill Vs TechnikalRemix [Re-Rub]281Everyday (Steve Hill Vs Technikal 2010 Rerub)7:28230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix [Rerub]282My Lovin 20107:018358Steve Hill283Weekend 20108:071372269Steve Hill Vs Technikal284I Dont Need U Anymore7:198358Steve HillVs370522MDA & Spherical285Switch (Steve Hill Mix)5:26152564Technikal&1399934James T. StanhopeJT Stanhope8358Steve HillRemix286All My Life (Steve Hill Vs Technikal Mix)7:27206018ZanderFeat.255675Alexis Hart255675Alexis HartFeaturing1372269Steve Hill Vs TechnikalRemix287Getting High3:478358Steve HillVs370522MDA & Spherical288Heat (Steve Hill Vs Dark By Design Mix)8:1069422Luca Antolini DJLuca Antolini75559Dark By DesignRemix8358Steve HillRemix289FUTS8:298358Steve HillVs75559Dark By Design290Driving Me Insane7:031372269Steve Hill Vs Technikal&1399934James T. StanhopeJT Stanhope291Heaven5:458358Steve HillVs917154Hardforze292Ready Or Not 2010 (Steve Hill Vs Hardforze Mix)5:14230469Masif DJ'sMasif DJs917154HardforzeRemix8358Steve HillRemix293The Sound5:338358Steve HillVs917154Hardforze294Advanced (Steve Hill Vs Hardforze Mix)5:4039987Marcel Woods917154HardforzeRemix8358Steve HillRemix295Euro Power7:271372269Steve Hill Vs Technikal296Hold That Sucker Down (Steve Hill Vs Technikal Mix)7:13230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixUnmixed (Masters WAV) CD2297Welcome To My World7:471372269Steve Hill Vs Technikal298Every Heartbeat 2009 (Steve Hill Vs Technikal Mix)7:30230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix299Welcome To The Club7:401372269Steve Hill Vs Technikal300Sawtooth Dentist7:341372269Steve Hill Vs Technikal301Supersonic (Steve Hill Edit)7:14152564TechnikalVs370522MDA & Spherical8358Steve HillEdited By302In The Zone7:201372269Steve Hill Vs Technikal303Lizard (Steve Hill Vs MDA & Spherical Mix)5:48230469Masif DJ'sMasif DJs370522MDA & SphericalRemix8358Steve HillRemix304Theme From Impulse7:391372269Steve Hill Vs Technikal305Adagio For Strings Pt. 17:118358Steve HillVs370522MDA & SphericalVs152564Technikal306Go Insane Pt. 27:288358Steve HillVs69422Luca Antolini DJLuca AntoliniVs75559Dark By Design307Insane (Steve Hill Vs Cally + Juice Mix)7:32230469Masif DJ'sMasif DJs191902Cally & JuiceCally + JuiceRemix8358Steve HillRemix308Hypnotizin'8:358358Steve HillVs75559Dark By Design309Cocaine (Steve Hill Vs Dark By Design Mix)8:1311148Yakooza75559Dark By DesignRemix8358Steve HillRemix310Darkness In Heaven7:418358Steve HillVs75559Dark By Design311Paint It Black4:448358Steve HillVs917154Hardforze312The Scientist5:508358Steve HillVs917154Hardforze313To The Beat (Bass Code Theme)6:208358Steve HillVs917154Hardforze314Slot Machine (Steve Hill Vs Technikal Mix)5:09230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix315Thank You5:278358Steve HillVs917154HardforzeFeat.381327Merenia GilliesMerenia381327Merenia GilliesMereniaFeaturing316Don't Speak5:428358Steve HillVs917154HardforzeFeat.381327Merenia GilliesMerenia381327Merenia GilliesMereniaFeaturing317Forever Young (Encore Mix)5:331670145Hard Dance AllianceUnmixed (Masters WAV) CD3318Theme From Great Cities (Intro Mix)6:531372269Steve Hill Vs Technikal319Always On My Mind7:101372269Steve Hill Vs TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)Featuring320Glory6:548358Steve HillVs104130Andrea Montorsi321Come With Me 20108:181372269Steve Hill Vs Technikal322P.L.U.R6:578358Steve HillVs1399934James T. StanhopeJT Stanhope323I Have A Dream7:471372269Steve Hill Vs Technikal324Join Me (Steve Hill Vs D10 Mix)7:43230469Masif DJ'sMasif DJs3423788Steve Hill vs. D10Steve Hill Vs D10Remix325The Energy (Dark By Design Mix)8:318358Steve HillVs6299143The Sixth Sense (3)Sixth SenseFt.118939Mallorca Lee118939Mallorca LeeFeaturing75559Dark By DesignRemix326The Light9:098358Steve HillVs75559Dark By Design327The Experience7:278358Steve HillVs917154Hardforze328Unforgiven5:438358Steve HillVs1048615Pulsar (17)Vs917154Hardforze329The Family (Steve Hill Vs Hardforze Mix)5:001111031S-DeeS Dee&1919830Toxic (24)917154HardforzeRemix8358Steve HillRemix330Wonderwall (Exclusive Guitar Mix)5:328358Steve HillVs917154Hardforze331Masif5:098358Steve HillVs370522MDA & Spherical332Infinity5:558358Steve HillVs370522MDA & Spherical333Be My Angel Pt 16:338358Steve HillVs370522MDA & SphericalVs917154Hardforze334Ready 4 This6:271372269Steve Hill Vs TechnikalFeat.228852MC Whizzkid228852MC WhizzkidFeaturing335Fine Day (Steve Hill Vs Technikal Mix)7:142029Neon Lights1372269Steve Hill Vs TechnikalRemix336Phantom5:438358Steve HillVs370522MDA & Spherical337Feel It7:121372269Steve Hill Vs Technikal&1399934James T. StanhopeJT Stanhope338Whiplash6:391372269Steve Hill Vs TechnikalVs1399934James T. StanhopeJT Stanhope339Home (Steve Hill Vs Technikal Mix)8:072029Neon Lights1372269Steve Hill Vs TechnikalRemix340The Day Will Come (Steve Hill Vs K Series Bootleg Mix)7:093631Rob TisseraVs11806Quake235794K-SeriesK SeriesRemix8358Steve HillRemixUnmixed (Masters WAV) CD4341Welcome To My World 2.08:091372269Steve Hill Vs TechnikalVs69422Luca Antolini DJLuca Antolini342Pleasuredome8:178358Steve HillVs430354Vandall343Are U Ready (S.H.O.K.K. Mix)8:081372269Steve Hill Vs Technikal12261S.H.O.K.K.Remix344Technique Mk II8:301372269Steve Hill Vs Technikal345One And All6:368358Steve HillVs1299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi346I Need Your Loving (Tech Trance Mix)7:008358Steve HillVs1299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi347Alone (Liberated)7:548358Steve HillVs5987K90348Sweet Sensation (Remix)8:071372269Steve Hill Vs TechnikalSteve Hill & TechnikalVs1807063Spinout (3)&1807064Cantosis349The Maniac Pt. 17:528358Steve HillVs69422Luca Antolini DJLuca Antolini350Whatever Happened To Techno6:328358Steve HillVs103107DJ Ricky TRicky T351Every Fuckin Day Pt. 16:3869422Luca Antolini DJLuca AntoliniVs8358Steve HillVs104130Andrea Montorsi352Be My Angel Pt 24:558358Steve HillVs917154Hardforze,Vs370522MDA & Spherical353Party People (Use Slf Ctrl)5:568358Steve Hill,Vs917154Hardforze354All We Need Is Love8:213423788Steve Hill vs. D10Steve Hill Vs D10355Can You Feel It7:288358Steve HillVs75559Dark By Design356Open Your Mind7:418358Steve HillVs75559Dark By Design357R U Ready5:041372269Steve Hill Vs Technikal358Rock The House7:291372269Steve Hill Vs Technikal359Thru My Memories Pt. 16:4669422Luca Antolini DJLuca AntoliniVs8358Steve Hill360I'm Not Alone (Steve Hill Vs Technikal Mix)6:43230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixUnmixed (Masters WAV) CD5361Southern Sun (Steve Hill Vs Technikal Mix)7:40230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix362Why Does My Heart (Feel So Bad) (Steve Hill Vs Technikal Mix)8:04230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix363I Feel Wonderful (Skydive) (Steve Hill Vs Technikal Mix)7:10230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix364From The Inside (Steve Hill Vs Technikal Mix)7:41210917CyprianFeat.39507Rani39507RaniFeaturing1372269Steve Hill Vs TechnikalRemix365U Got The Love (Steve Hill Vs Technikal Mix)7:561687Hyperlogic1372269Steve Hill Vs TechnikalRemix366Faith In Me8:308358Steve HillVs689952Adrenaline Dept.367Don't Hold Back (Give Yourself To Me)8:341372269Steve Hill Vs Technikal368Rocksteady (Steve Hill Vs Technikal Mix)5:51371484Aftershok1372269Steve Hill Vs TechnikalRemix369Silence7:051372269Steve Hill Vs TechnikalVs1399934James T. StanhopeJT Stanhope370Frantic Theme (Get A Life...) 2009 (Steve Hill Vs Technikal Mix)7:498358Steve HillVs11681Phlash!1372269Steve Hill Vs TechnikalRemix371You're Not Alone (Steve Hill Vs K-Series' Mr. Bishi Mix)7:362029Neon Lights235794K-SeriesRemix20179Mr. BishiRemix8358Steve HillRemix372Wicked 2010 (Steve Hill Vs MDA & Spherical Mix)5:488358Steve Hill370522MDA & SphericalRemix8358Steve HillRemix373Attention! (Steve Hill Vs Technikal 2010 Mix)7:10230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix374Playing With Knives (Steve Hill Vs Technikal Mix)7:078349BK1372269Steve Hill Vs TechnikalRemix375Strong To Survive 20106:071372269Steve Hill Vs Technikal376Gotta Have Hope6:158358Steve HillVs370522MDA & Spherical377Can U Dig It7:181372269Steve Hill Vs Technikal378Free At Last (Matt Gardner Mix)7:451372269Steve Hill Vs Technikal811736Matt GardnerRemix379Feel The Love (Original Mix)7:311372269Steve Hill Vs TechnikalSteve Hill, Technikal,218417Andy WhitbyFt118939Mallorca Lee118939Mallorca LeeFeaturing380Serious Sound (Steve Hill Vs Technikal Mix)7:0320907Guyver1372269Steve Hill Vs TechnikalRemix381Love Ressurection 2010 (Steve Hill Vs Technikal Mix)6:44240917Ian Betts1372269Steve Hill Vs TechnikalRemix382Adagio For Strings 2010 (Arp Mix)7:211372269Steve Hill Vs TechnikalSteve Hill, Technikal,370522MDA & Spherical383One More (Steve Hill Vs K-Series Bootleg Mix)8:4420179Mr. Bishi235794K-SeriesRemix8358Steve HillRemix3841998 (Steve Hill Vs Technikal Mix)6:17230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixUnmixed (Remixes WAV)385Theme From HTML (Adrenaline Dept. Mix)7:341372269Steve Hill Vs Technikal689952Adrenaline Dept.Remix386Theme From HTML (Amber D Mix)8:071372269Steve Hill Vs Technikal233533Amber DRemix387Theme From HTML (BK Mix)6:571372269Steve Hill Vs Technikal8349BKRemix388Theme From HTML (BRK3 Mix)5:531372269Steve Hill Vs Technikal1481614BRK3Remix389Theme From HTML (Costa Pantazis Mix)8:101372269Steve Hill Vs Technikal2014556Costa PantazisRemix390Theme From HTML (Dark By Design Mix)6:061372269Steve Hill Vs Technikal75559Dark By DesignRemix391Theme From HTML (Iridium Mix)6:521372269Steve Hill Vs Technikal573621Iridium (5)Remix392Theme From HTML (Luca Antolini Mix)7:121372269Steve Hill Vs Technikal69422Luca Antolini DJLuca AntoliniRemix393Theme From HTML (Nomad Mix)6:491372269Steve Hill Vs Technikal1438804Nomad (19)Remix394Theme From HTML (Original Mix)7:091372269Steve Hill Vs Technikal395Theme From HTML (Simon Qudos & Greg Brookman Mix)7:191372269Steve Hill Vs Technikal209614Greg BrookmanRemix1039605Simon QudosRemixSteve Hill - My Past, Your Present, Our Future (Mixed Unmixed Edition) (2006)Mixed CD1 (My Past)396My Past, Your Present, Our Future (Past Mix)1:15:308358Steve HillMixed CD2 (Your Present)397My Past, Your Present, Our Future (Present Mix)1:12:208358Steve HillMixed CD3 (Our Future)398My Past, Your Present, Our Future (Future Mix)1:14:518358Steve HillUnmixed CD1 (My Past)399Snap Ya Fingaz7:4811680Kumara400Get A Life (Frantic Theme) (Steve Hill's Getting 'Jiggy' Mix)6:5711681Phlash!Feat.8358Steve Hill8358Steve HillFeaturing, Remix401Crash The Party (Original Mix)7:2111680Kumara402(Tell Me) Toy Boy (Original Mix)6:4620179Mr. Bishi403Love You More (Violators Mix)7:402029Neon Lights112780ViolatorzViolatorsRemix404If You Love Me (Nylon Mix)6:5010866Nylon10866NylonRemix405I Cant Wait Diablo7:2011680Kumara4924DiabloRemix406Touch Me (Vocal Mix)7:32106823SharkboyShark BoyVs8358Steve Hill407My Lovin'7:008358Steve Hill408 Love Is The Drug8:038358Steve Hill&36377James Lawson409All My Life (Steve Hill Code Mix)7:37206018ZanderFeat.255675Alexis Hart255675Alexis HartFeaturing8358Steve HillRemix410Can U Feel It (Steve Hill Code Mix)7:4564569DJ Meister8358Steve HillRemix411You're Not Alone (Violators Mix)7:372029Neon Lights112780ViolatorzViolatorsRemix412I Need (Your Loving) (Steve Hill & Jon Langford Mix)7:4220179Mr. Bishi112613Jon LangfordRemix8358Steve HillRemixUnmixed CD2 (Your Present)413Not Over Yet (D10 Mix)7:502029Neon Lights255678D10Remix414Alone (Original Mix)7:278358Steve Hill415No Good For Me (Steve Hill Vs Technikal Mix)7:53230469Masif DJ's1372269Steve Hill Vs TechnikalRemix416Adagio For Strings 2010 (Original Mix)7:181372269Steve Hill Vs Technikal417Ecstasy (Club Mix)8:231372269Steve Hill Vs Technikal418Ready Or Not (Original Mix)8:413423788Steve Hill vs. D10Steve Hill Vs D10419Tricky Tricky (Original Reconstruction)7:408358Steve HillVs163004DJ Nervous (2)Nervous420Red Alert (Steve Hill Vs Dark By Design Mix)8:27163004DJ Nervous (2)Nervous75559Dark By DesignRemix8358Steve HillRemix421No Good For Me (Steve Hill Vs Dark By Design Mix)8:20230469Masif DJ's75559Dark By DesignRemix8358Steve HillRemix422We Are Alive (Original Mix)7:018358Steve HillVs163004DJ Nervous (2)Nervous423Voodoo7:281372269Steve Hill Vs Technikal424Black Magic (Pure Thrust)8:498358Steve HillVs75559Dark By Design425Reaching (Into My Brain) (Steve Hill Vs D10 Mix)8:05230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix426Fine Day (Steve Hill Vs D10 Mix)8:142029Neon Lights3423788Steve Hill vs. D10Steve Hill Vs D10Remix427Free At Last8:051372269Steve Hill Vs Technikal428Strong To Survive (Masif DJ's Edit)7:471372269Steve Hill Vs Technikal230469Masif DJ'sEdited By429Inside Of Me9:0336377James LawsonVs8358Steve HillUnmixed CD3 (Our Future)430Enjoy The Silence (Steve Hill Vs Technikal Mix)7:50230469Masif DJ's1372269Steve Hill Vs TechnikalRemix431Why Does My Heart (Feel So Bad) (Steve Hill Vs Technikal Mix)8:04230469Masif DJ's1372269Steve Hill Vs TechnikalRemix432Evolution7:161372269Steve Hill Vs Technikal433Come With Me (Original Mix)8:298358Steve HillVs163004DJ Nervous (2)Nervous434Do Wat U Like (Original Mix)7:433423788Steve Hill vs. D10Steve Hill Vs D10435Cold As Ice7:283423788Steve Hill vs. D10Steve Hill Vs D10436Forget The Past7:438358Steve HillVs75559Dark By Design437Open Your Mind7:418358Steve HillVs75559Dark By Design438Weekend (Masif DJ's Edit)8:031372269Steve Hill Vs Technikal230469Masif DJ'sEdited By439Can U Dig It7:161372269Steve Hill Vs Technikal440Wasted (Steve Hill Vs Guyver Mix)9:11230469Masif DJ's20907GuyverRemix8358Steve HillRemix441I Like The Way7:318358Steve HillVs104175Matt Williams442Take Me Away7:398358Steve HillVs106823SharkboyShark Boy443Everyday (Steve Hill Vs Technikal Mix)7:28230469Masif DJ's1372269Steve Hill Vs TechnikalRemix444Awakening (Steve Hill Vs Dark By Design Mix)7:36230469Masif DJ's75559Dark By DesignRemix8358Steve HillRemix445We Will Survive (Part 1)8:028358Steve HillVs75559Dark By Design446We Will Survive (Part 2)9:211372269Steve Hill Vs Technikal447All We Need (Is Love)8:213423788Steve Hill vs. D10Steve Hill Vs D10448Hypnotised8:348358Steve HillVs75559Dark By Design449Children (Steve Hill Vs D10 Mix)8:10230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix450One More (Steve Hill Vs K-Series Bootleg Mix)8:4420179Mr. Bishi235794K-SeriesRemix8358Steve HillRemixSteve Hill & Luca Antolini - Brothers In Arms (Unreleased Album) (Unmixed Edition) (2012)Extra Tracks451The Race (Steve Hill Vs Technikal Remix)6:1469422Luca Antolini DJLuca Antolini1372269Steve Hill Vs TechnikalRemix452Escape7:511299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi453Free (Andrea Montorsi Mix)7:351299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi104130Andrea MontorsiRemix454Free (Luca Antolini Mix)7:151299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi69422Luca Antolini DJLuca AntoliniRemix455In The Name Of God8:3469422Luca Antolini DJLuca AntoliniVs98815Bobby V456Glory6:548358Steve Hill&104130Andrea Montorsi457Kiss The Night (Re-work 2013)8:008358Steve Hill&104130Andrea Montorsi458Wizards Of Sound5:318358Steve Hill&104130Andrea Montorsi459Loving You (Intro Mix)1:578358Steve Hill&69422Luca Antolini DJLuca Antolini460Loving You (Ricky T Mix)7:008358Steve Hill&69422Luca Antolini DJLuca Antolini103107DJ Ricky TRicky TRemix461FUTS (Andrea Montorsi Mix)7:368358Steve HillVs75559Dark By Design104130Andrea MontorsiRemix462Hypnotizin' (Luca Antolini Mix)7:278358Steve HillVs75559Dark By Design69422Luca Antolini DJLuca AntoliniRemix463Welcome To My World (Luca Antolini & Andrea Montorsi Remix)6:511372269Steve Hill Vs Technikal1299417Antolini & MontorsiLuca Antolini & Andrea MontorsiRemixVideo Steve Hill Luca Antolini464Steve Hill-Newcastle-King Street3:158358Steve Hill465Steve Interview1:158358Steve Hill466Steve Luca - Contatto 12:468358Steve Hill,69422Luca Antolini DJLuca Antolini467Steve -Luca 20:328358Steve Hill,69422Luca Antolini DJLuca Antolini468Steve Luca -Contatto1:278358Steve Hill,69422Luca Antolini DJLuca Antolini469Steve Luca -Moonlight4:058358Steve Hill,69422Luca Antolini DJLuca Antolini470Steve Luca -Moonlight10:158358Steve Hill,69422Luca Antolini DJLuca Antolini471Steve Luca- Rebel 11:108358Steve Hill,69422Luca Antolini DJLuca Antolini472Steve Luca -Rebel3:298358Steve Hill,69422Luca Antolini DJLuca Antolini473Steve Luca-Heat10:438358Steve Hill,69422Luca Antolini DJLuca Antolini474Steve Luca-Powerfull1:478358Steve Hill,69422Luca Antolini DJLuca Antolini475Steve Luca-Roxanne1:458358Steve Hill,69422Luca Antolini DJLuca Antolini476Steve Melbourne Essential0:328358Steve Hill-477A Great Day6:518358Steve Hill&69422Luca Antolini DJLuca Antolini478Adventures In Oz7:438358Steve Hill&69422Luca Antolini DJLuca Antolini479Avatar (Club Mix)5:208358Steve Hill&69422Luca Antolini DJLuca Antolini480Avatar (Dub Trance Mix)5:228358Steve Hill&69422Luca Antolini DJLuca Antolini481Bee Good5:048358Steve Hill&69422Luca Antolini DJLuca Antolini482Brothers In Arms (Final Mix)6:128358Steve Hill&69422Luca Antolini DJLuca Antolini483Contatto (Remix)5:528358Steve Hill&69422Luca Antolini DJLuca Antolini484Good Vibration6:588358Steve Hill&69422Luca Antolini DJLuca Antolini485Hardstyle Man6:048358Steve Hill&69422Luca Antolini DJLuca Antolini486Heat 20127:238358Steve Hill&69422Luca Antolini DJLuca Antolini487Loving You (Remix)7:218358Steve Hill&69422Luca Antolini DJLuca Antolini488Moonlight7:088358Steve Hill&69422Luca Antolini DJLuca Antolini489Outside World5:248358Steve Hill&69422Luca Antolini DJLuca Antolini490Overdrive6:488358Steve Hill&69422Luca Antolini DJLuca Antolini491Pandora5:038358Steve Hill&69422Luca Antolini DJLuca Antolini492Pious The Chick5:018358Steve Hill&69422Luca Antolini DJLuca Antolini493Psycho Harmony6:168358Steve Hill&69422Luca Antolini DJLuca Antolini494Rebels6:168358Steve Hill&69422Luca Antolini DJLuca Antolini495Showmaster4:568358Steve Hill&69422Luca Antolini DJLuca Antolini496Stand Up7:268358Steve Hill&69422Luca Antolini DJLuca Antolini497The Island6:198358Steve Hill&69422Luca Antolini DJLuca Antolini498The Maniac Pt 17:528358Steve Hill&69422Luca Antolini DJLuca Antolini499Thru My Memories Pt. 16:468358Steve Hill&69422Luca Antolini DJLuca Antolini500Traffic @ Discoteque6:118358Steve Hill&69422Luca Antolini DJLuca Antolini501WTF6:438358Steve Hill&69422Luca Antolini DJLuca Antolini502Roxanne6:428358Steve Hill&69422Luca Antolini DJLuca AntoliniFeat4858086Secret Police (3)4858086Secret Police (3)Featuring5033rd Dimension4:438358Steve Hill&69422Luca Antolini DJLuca AntoliniFeat.152564Technikal152564TechnikalFeaturing504Fly With Me6:198358Steve HillVs69422Luca Antolini DJLuca AntoliniPresents4542519ClubStyle69422Luca Antolini DJLuca AntoliniPresenter8358Steve HillPresenter505Turn It Up6:098358Steve HillVs69422Luca Antolini DJLuca AntoliniPresents4542519ClubStyle69422Luca Antolini DJLuca AntoliniPresenter8358Steve HillPresenter506HTML (Luca Antolini Mix)7:111372269Steve Hill Vs Technikal69422Luca Antolini DJLuca AntoliniRemix507Calling6:288358Steve Hill,1299417Antolini & MontorsiLuca Antolini Andrea Montorsi508Every Fuckin Day Pt. 16:388358Steve Hill,1299417Antolini & MontorsiLuca Antolini Andrea Montorsi509Hard In My House6:048358Steve Hill,1299417Antolini & MontorsiLuca Antolini Andrea Montorsi510I Need Your Loving (Tech Trance Mix)7:008358Steve Hill,1299417Antolini & MontorsiLuca Antolini Andrea Montorsi511One And All6:368358Steve Hill,1299417Antolini & MontorsiLuca Antolini Andrea Montorsi512Go Insane Pt. 27:288358Steve Hill,69422Luca Antolini DJLuca Antolini,75559Dark By Design513Everything Is Go4:588358Steve Hill,69422Luca Antolini DJLuca Antolini,5789384Tranz-Linquants514Welcome To My World 2.08:091372269Steve Hill Vs TechnikalSteve Hill Technikal,69422Luca Antolini DJLuca Antolini515Fable5:008358Steve Hill,69422Luca Antolini DJLuca Antolini&5789384Tranz-LinquantsExtra Masters516Ayla (Steve Hill Vs Technikal VIP Remix)7:25689952Adrenaline Dept.Adrenaline DeptMeets2018109Venetica1372269Steve Hill Vs TechnikalRemix517Rocksteady (Steve Hill Vs Technikal Remix)5:51371484Aftershok1372269Steve Hill Vs TechnikalRemix518Dance For Me6:438349BK&8358Steve Hill519Flowtation8:258349BK&8358Steve Hill520Give Me The Music (Club Edit)6:248349BK&8358Steve Hill521Give Me The Music (Klubfiller 150 Remix)3:218349BK&8358Steve Hill517623KlubfillerRemix522Give Me The Music8:398349BK&8358Steve Hill523I Need I Need (Full Vocal)7:278349BK&8358Steve Hill524Temptation (Technikal Remix)6:498349BK&8358Steve Hill152564TechnikalRemix525Temptation6:168349BK&8358Steve Hill526Why Can't We See6:498349BK&8358Steve Hill527Keep The Fire Burning6:278349BK,8358Steve Hill,11749Knuckleheadz528Shining7:468349BK,8358Steve Hill,11749Knuckleheadz529Bass Power (BK's Cortina Remix)7:288349BK,1372269Steve Hill Vs TechnikalSteve Hill Technikal8349BKRemix8346CortinaRemix530The Freaks (Get On The Dancefloor) (Steve Hill Vs Hardforze Mix)5:27191902Cally & Juice917154HardforzeRemix8358Steve HillRemix531From The Inside (Solar Scape Remix)8:02210917CyprianFeat.39507Rani39507RaniFeaturing201307Solar ScapeRemix532Shogun Of The Dark8:2075559Dark By Design533Can U Feel It (Steve Hill Code Mix)7:4564569DJ Meister8358Steve HillRemix534Diamonds (Steve Hill Vs Immerze Mix)4:322188888East Coast Masif1680313ImmerzeRemix8358Steve HillRemix535Don't You Worry Child (Steve Hill Vs Immerze Remix)5:202188888East Coast Masif1680313ImmerzeRemix8358Steve HillRemix536She Wolf (Fall Into Pieces) (Steve Hill Vs Immerze Remix)5:202188888East Coast Masif1680313ImmerzeRemix8358Steve HillRemix537U Got The Love (Steve Hill Vs Technikal Dub Remix)7:531687Hyperlogic1372269Steve Hill Vs TechnikalRemix538U Got The Love (Steve Hill Vs Technikal Remix)7:531687Hyperlogic1372269Steve Hill Vs TechnikalRemix539Four 2 The Floor8:011399934James T. StanhopeJ.T Stanhope540Love Is The Drug8:0336377James Lawson&8358Steve Hill541Hard House Heaven (BK & Steve Hill Mix)4:3111749Knuckleheadz8349BKRemix8358Steve HillRemix542House Rocca 2012 (Steve Hill Vs Technikal Remix)8:1211749Knuckleheadz1372269Steve Hill Vs TechnikalRemix543Crash The Party (BK's 3am At Riot Mix)8:0611680Kumara8349BKRemix544Crash The Party (Norman Bass Mix)6:2511680Kumara14007Norman BassRemix545Move Over (Mr Bishi Remix)7:2911680Kumara20179Mr. BishiMr BishiRemix546Do Not Resist (Original Mix)6:2438943Lock 'N LoadLock & LoadV20179Mr. BishiMr Bishi5471998 (One More) (Steve Hill Vs Technikal Remix)6:17230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix548Attention! (Steve Hill Vs Technikal 2010 Remix)7:10230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix549By The Way (Steve Hill Vs Hardforze Mix)5:25230469Masif DJ'sMasif DJs917154HardforzeRemix8358Steve HillRemix550Catch (Steve Hill, Technikal & Rob Tissera Remix)6:21230469Masif DJ'sMasif DJs3631Rob TisseraRemix1372269Steve Hill Vs TechnikalSteve Hill, TechnikalRemix551Coming Home (Steve Hill Vs Technikal Remix)5:31230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix552Cry Little Sister (Steve Hill Vs Yoshi Mix)8:07230469Masif DJ'sMasif DJs8358Steve HillRemix169016Yoshi (3)Remix553Every Heartbeat (Steve Hill Vs Technikal Remix)7:28230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix554Everyday (Phil York Vs Dark By Design Mix)7:27230469Masif DJ's75559Dark By DesignRemix202114Phil YorkRemix555Everyday (Steve Hill Vs Technikal Mix)7:28230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix556God Is A DJ (K-Series Mix)7:44230469Masif DJ'sMasif DJs235794K-SeriesRemix557Hold That Sucker Down (Steve Hill Vs Technikal Mix)7:12230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix558I Can't Help Myself (Frisky Vs MDA & Spherical Mix)6:44230469Masif DJ'sMasif DJs1267003Frisky (7)Remix370522MDA & SphericalRemix559I'm Not Alone (Steve Hill Vs Technikal Remix)6:41230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix560In The Air (Steve Hill Vs Technikal Remix)5:28230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix561Insomnia (Steve Hill Vs Technikal Mix)5:47230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix562Kickin' In The Beat (Audio Headz Mix)7:27230469Masif DJ'sMasif DJs799231Audio HedzAudio HeadzRemix563Love Sensation (Steve Hill Vs Technikal Mix)7:43230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix564Music Is The Answer (Louk Mix)6:57230469Masif DJ'sMasif DJs265566LoukRemix565No Alternative (Steve Hill Vs D10 Mix)7:49230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix566One More Airwave (Steve Hill Vs Technikal 2012 Re-Rub)6:44230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix [Re-Rub]567Rapture (Steve Hill Vs Technikal Remix)6:32230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix568Reincarnations (Steve Hill Vs Technikal Remix)6:42230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix569Southern Sun (Steve Hill Vs Technikal Remix)7:38230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix570Southern Sun (Steve Hill Vs Technikal Re-Rub)7:05230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix [Re-Rub]571Sunrise (Steve Hill Vs Technikal Mix)6:14230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix572Tell Me Why (MDA & Spherical Mix)6:46230469Masif DJ'sMasif DJs370522MDA & SphericalRemix573The Journey (Steve Hill Vs Technikal Mix)7:04230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix574U Got 2 Know (Steve Hill Vs Technikal Remix)6:29230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix575What Ya Got 4 Me (Steve Hill Vs Technikal Mix)6:34230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix576Wonderful (Steve Hill Vs Technikal Remix)7:10230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix577(Tell Me) Toy Boy (Original Mix)6:5220179Mr. BishiMr Bishi578Can You Feel It7:3020179Mr. BishiMr Bishi579I Need Your Lovin' (Lee Pasch Mix)7:1320179Mr. BishiMr Bishi101853Lee PaschRemix580In My House (Demo Mix)6:4220179Mr. BishiMr Bishi581Overdrive (Original Mix)6:3820179Mr. BishiMr Bishi582Tell Me (Toy Boy) (Shark Boy Mix)8:0220179Mr. BishiMr Bishi106823SharkboyShark BoyRemix583That's It (Original Mix)7:4120179Mr. BishiMr Bishi584Three Fingers (Demo Mix)6:5320179Mr. BishiMr Bishi585Throw Your Hands In The Air7:2920179Mr. BishiMr Bishi586Do Not Resist7:4520179Mr. BishiMr BishiV38943Lock 'N LoadLock N Load587Don't Be Silent6:3920179Mr. BishiMr BishiV38943Lock 'N LoadLock N Load588Seek Bromance (Steve Hill Vs Technikal Remix)6:221301616Nathalie (16)1372269Steve Hill Vs TechnikalRemix589Big Sky (Steve Hill Vs Technikal Re-Rub)7:511301616Nathalie (16)&152564Technikal1372269Steve Hill Vs TechnikalRemix [Re-Rub]590Bullet In The Gun (MDA & Spherical Mix)8:022029Neon Lights370522MDA & SphericalRemix591Fine Day (Steve Hill Vs Paul Maddox Unreleased Mix)6:452029Neon Lights49155Paul MaddoxRemix8358Steve HillRemix592Not Over Yet (Cally Gage Vs Greg Brookman Mix)7:242029Neon Lights613245Cally GageRemix209614Greg BrookmanRemix593Show Me Love (Suae Mix)5:392029Neon Lights339248SuaeRemix594The Calling (Diablo Mix)6:4160252Nu-RenegadesNu Renegades4924DiabloRemix595The Calling (Kumara Mix)7:0460252Nu-RenegadesNu Renegades11680KumaraRemix596The Calling (Steve Hill Vs Technikal Remix)5:3760252Nu-RenegadesNu Renegades1372269Steve Hill Vs TechnikalRemix597If You Love Me (Kumara Mix)6:4610866Nylon11680KumaraRemix598If You Love Me (Paul Janes Remix) (2017 Remaster)7:2610866Nylon25832Paul JanesRemix599If You Love Me (Steve Hill Vs Technikal 2009 Remix)7:5010866Nylon1372269Steve Hill Vs TechnikalRemix600Animal Instinkt (Steve Hill Vs Technikal Remix)7:00202114Phil YorkVs370522MDA & Spherical1372269Steve Hill Vs TechnikalRemix601Scream6:5611681Phlash!602Under My Control7:1811681Phlash!603Frantic Theme (Get A Life) (BK's Classic 3am At Frantic Mix)6:4311681Phlash!Feat.8358Steve Hill8358Steve HillFeaturing8349BKRemix604Frantic Theme (Get A Life) (Kumara Re Rub)7:2311681Phlash!Feat.8358Steve Hill8358Steve HillFeaturing11680KumaraRemix [Re Rub]605Frantic Theme (Get A Life) (Nu Renegades Mix)7:0211681Phlash!Feat.8358Steve Hill8358Steve HillFeaturing60252Nu-RenegadesNu RenegadesRemix606Mind, Body & Soul7:1811681Phlash!Vs26657Base Graffiti607Burning (Mr Bishi Remix)7:173631Rob Tissera20179Mr. BishiMr BishiRemix608I Found You (Intro)4:503631Rob Tissera&20907GuyverVs1372269Steve Hill Vs Technikal609I Found You (Dec 2015 Mixdown)7:123631Rob Tissera,20907Guyver,1372269Steve Hill Vs TechnikalSteve Hill & Technikal610Take Me Away (Technikal & Caz Wood Remix)7:2093460RT Project1608167Caz WoodRemix152564TechnikalRemix611I Finally Broke Their Mould (Steve Hill Vs Technikal Remix)7:042786616RY Project1372269Steve Hill Vs TechnikalRemix612At Night7:40106823SharkboyShark Boy613Alone (Technikal Remix)8:018358Steve Hill152564TechnikalRemix614My Lovin' (2009)7:008358Steve Hill615My Lovin' (Guyver Mix)7:518358Steve Hill20907GuyverRemix616Wicked (Kumara Mix)6:488358Steve Hill11680KumaraRemix617WTF!7:098358Steve Hill618Everything Is Go (Grinder Remix)7:298358Steve Hill&60252Nu-RenegadesNu Renegades31827GrinderRemix619Play The Game (Demo Mix)6:318358Steve Hill&49155Paul Maddox620Believe It6:081372269Steve Hill Vs TechnikalSteve Hill & Technikal621Ecstasy8:221372269Steve Hill Vs TechnikalSteve Hill & Technikal622Enjoy The Silence (Bootleg Mix)8:121372269Steve Hill Vs TechnikalSteve Hill & Technikal623Evolution7:141372269Steve Hill Vs TechnikalSteve Hill & Technikal624Save The Day (Andy Whitby & Audox Remix)7:041372269Steve Hill Vs TechnikalSteve Hill & Technikal218417Andy WhitbyRemix2126578AudoxRemix625Damaged7:301372269Steve Hill Vs TechnikalSteve Hill & TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)Featuring626Take It Easy6:161372269Steve Hill Vs TechnikalSteve Hill & TechnikalVs3631Rob Tissera627Free At Last (James Lawson Unreleased Remix)7:371372269Steve Hill Vs TechnikalSteve Hill & Teknikal36377James LawsonRemix628The Key (BK's SLAM! Mix)7:188358Steve Hill,3631Rob Tissera,517623Klubfiller8349BKRemix629Keep On Flyin'7:378358Steve HillVs799231Audio Hedz630I See You Baby7:478358Steve HillVs191902Cally & Juice631Children (Outro Mix)4:233423788Steve Hill vs. D10Steve Hill Vs D10632Dont Speak (R3V3RS3 BASS Mix)5:393423788Steve Hill vs. D10Steve Hill Vs D10633Fire Wire 20135:013423788Steve Hill vs. D10Steve Hill Vs D10634Forever Young (Encore Mix)5:053423788Steve Hill vs. D10Steve Hill Vs D10635Forever Young (R3V3RS3 BASS Remix)5:393423788Steve Hill vs. D10Steve Hill Vs D10636Ready Or Not (2013 R3V3RS3 BASS Mix)5:143423788Steve Hill vs. D10Steve Hill Vs D10637The Name Of My DJ (Original Mix)5:543423788Steve Hill vs. D10Steve Hill Vs D10638The Name Of My DJ (R3V3RS3 BASS Mix)5:583423788Steve Hill vs. D10Steve Hill Vs D10639Awakening7:348358Steve HillVs75559Dark By Design640Girls And Boys7:348358Steve HillVs75559Dark By Design641I Need A Doctor (Steve Hill Vs D10 R3V3RS3 BASS Remix)5:418358Steve HillVs75559Dark By Design3423788Steve Hill vs. D10Steve Hill Vs D10Remix642Wasted9:068358Steve HillVs20907Guyver643Precious Heart5:278358Steve HillVs917154Hardforze644Whiplash6:398358Steve HillVs1399934James T. StanhopeJ.T Stanhope645Need Each Other (150 Master)5:018358Steve HillVs517623Klubfiller646Come With Me (D10 Mix)7:538358Steve HillVs163004DJ Nervous (2)Nervous255678D10Remix647Tricky Tricky (D10 Mix)7:398358Steve HillVs163004DJ Nervous (2)Nervous255678D10Remix648Take Me Away7:398358Steve HillVs106823SharkboyShark Boy649Looking Back (Diablo Mix)7:218358Steve HillVs251216Stealth (3)4924DiabloRemix650Looking Back (Grinder Mix)7:028358Steve HillVs251216Stealth (3)31827GrinderRemix651Adagio For Strings (2015)6:501372269Steve Hill Vs Technikal652Adagio For Strings (Encore) (2015)6:341372269Steve Hill Vs Technikal653Are You Ready6:471372269Steve Hill Vs Technikal654Face Down Ass Up (Bare Intro)5:471372269Steve Hill Vs Technikal655Face Down Ass Up5:471372269Steve Hill Vs Technikal656Free At Last 20115:421372269Steve Hill Vs Technikal657God's Child7:101372269Steve Hill Vs Technikal658I Have A Dream (Frisky Mix)5:391372269Steve Hill Vs Technikal1267003Frisky (7)Remix659I Have A Dream (Steve Hill Vs D10 R3V3RS3 BASS Remix)5:101372269Steve Hill Vs Technikal3423788Steve Hill vs. D10Steve Hill Vs D10Remix660I Need A Rhythm6:471372269Steve Hill Vs Technikal661In The Zone7:181372269Steve Hill Vs Technikal662Jumpin'6:581372269Steve Hill Vs Technikal663Rock The House7:271372269Steve Hill Vs Technikal664Save The Day5:521372269Steve Hill Vs Technikal665Slot Machine5:091372269Steve Hill Vs Technikal666Technique Mk 18:131372269Steve Hill Vs Technikal667Technique Mk 28:301372269Steve Hill Vs Technikal668Technique Mk 37:121372269Steve Hill Vs Technikal669Technique Mk 45:251372269Steve Hill Vs Technikal670Technique Mk 56:021372269Steve Hill Vs Technikal671Technique Mk 77:051372269Steve Hill Vs Technikal672Theme From Great Cities (Intro Mix)6:531372269Steve Hill Vs Technikal673Thumpin'5:221372269Steve Hill Vs Technikal674Weekend (Party Time) (2012 Harder Styles Mix)5:461372269Steve Hill Vs Technikal675Welcome (To The Club)7:371372269Steve Hill Vs Technikal676Welcome To My World7:461372269Steve Hill Vs Technikal677Always On My Mind7:101372269Steve Hill Vs TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)Featuring678Running7:041372269Steve Hill Vs TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)Featuring679Sweet Sensation (Pt 1)8:051372269Steve Hill Vs TechnikalMeets1807064Cantosis&1807063Spinout (3)680Astrum Navitas (Star Energy) (Part 1)6:521372269Steve Hill Vs TechnikalVs1496081Shock:ForceShock Force681Jumpin (BK & Knuckleheadz Mix)5:371372269Steve Hill Vs TechnikalSteve Hill Technikal8349BKRemix11749KnuckleheadzRemix682As The Rush Comes5:438358Steve Hill,3631Rob Tissera,20907Guyver&1215349NG Rezonance683Feel The Love 20144:401372269Steve Hill Vs TechnikalSteve Hill, Technikal&218417Andy WhitbyFeat.118939Mallorca Lee118939Mallorca LeeFeaturing684Wormhole (Pt 1)6:471372269Steve Hill Vs TechnikalSteve Hill, Technikal&2014556Costa Pantazis685Change Your Mind5:111372269Steve Hill Vs TechnikalSteve Hill, Technikal&1628992Energy Syndicate686Safe From Harm6:071372269Steve Hill Vs TechnikalSteve Hill, Technikal&1628992Energy Syndicate687Let's Do This6:501372269Steve Hill Vs TechnikalSteve Hill, Technikal&426849Scott Attrill688Adagio For Strings 2010 (Arp Mix)7:211372269Steve Hill Vs TechnikalSteve Hill, Technikal&370522MDA & Spherical689Adagio For Strings 2010 (Technikal Mix)7:181372269Steve Hill Vs TechnikalSteve Hill, Technikal&370522MDA & Spherical152564TechnikalRemix690Brainbox 20104:09339248Suae691Kids 20094:15339248Suae692You Belong To Me (Master)7:37152564Technikal&2821678GD (4)693Switch (Steve Hill Mix)5:26152564Technikal&1399934James T. StanhopeJ.T Stanhope8358Steve HillRemix694Nu Dawn (Steve Hill Vs Technikal Re-Rub)5:29152564TechnikalVs235794K-Series1372269Steve Hill Vs TechnikalRemix [Re-Rub]695Supersonic (Steve Hill Re-Edit)7:12152564TechnikalVs370522MDA & Spherical8358Steve HillEdited By [Re-Edit]696Spin Spin Sugar (Steve Hill Vs Paul Maddox Mix)6:28623169V DubsV-Dubs49155Paul MaddoxRemix8358Steve HillRemix697Milk (Revolution 9 Mix)7:30112780ViolatorzViolators62464Revolution 9Remix698Out Of The Blue (MDA And Spherical Remix)7:3755398Volts Wagen370522MDA & SphericalMDA And SphericalRemix699All My Life (Steve Hill Code Mix)7:36206018Zander8358Steve HillRemix700All My Life (Steve Hill V Technikal Remix)7:27206018Zander1372269Steve Hill Vs TechnikalSteve Hill V TechnikalRemix701You're So Divine (Steve Hill Vs Oliver Leighs Mix)7:32206018Zander535730Oliver LeighsRemix8358Steve HillRemixHardcore MasifHARDCOREMASIF001702Cold As Ice (Weaver & Suae Mix)5:52658354Hardcore Masif111645DJ WeaverWeaverRemix339248SuaeRemix703Silence (Technikore Mix)6:41230469Masif DJ'sMasif DJs552306TechnikoreRemixHARDCOREMASIF002704Not Over Yet (Weaver Vs Steve Hill Mix)5:21658354Hardcore Masif111645DJ WeaverWeaverRemix8358Steve HillRemix705Gimme Some More (Original Mix)5:49552306TechnikoreHARDCOREMASIF003706Everyday6:07658354Hardcore Masif707Not Alone5:57658354Hardcore MasifHARDCOREMASIF004708Days Go By (Technikore Mix)6:28658354Hardcore Masif552306TechnikoreRemix709Love You More (Weaver Vs Steve Hill Mix)5:47658354Hardcore Masif111645DJ WeaverWeaverRemix8358Steve HillRemixHARDCOREMASIF005710Bullet In The Gun (Weaver Vs Steve Hill Mix)6:43658354Hardcore Masif111645DJ WeaverWeaverRemix8358Steve HillRemix711I Feel Wonderful 20086:21111645DJ WeaverWeaverVs200545Tom-EHARDCOREMASIF005R712Rhythm Is A Dancer (Technikore Mix)4:56658354Hardcore Masif552306TechnikoreRemix713Wonderful6:21111645DJ WeaverWeaverVs200545Tom-EHARDCOREMASIF006714Mad World (Weaver & Steve Hill Mix)5:56658354Hardcore Masif111645DJ WeaverWeaverRemix8358Steve HillRemix715The Scientist (JTS & Haze Mix)6:07658354Hardcore Masif234399Haze (4)Remix176035JTSRemixHARDCOREMASIF007716Lover (Inverse And Orbit 1 Mix)5:22111645DJ WeaverWeaver&113945AMS684601InverseRemix648617Orbit1Orbit 1Remix717Lover (Original Mix)5:12111645DJ WeaverWeaver&113945AMSHARDCOREMASIF008718Forever Young (Haze Hardcore Mix)4:361670145Hard Dance Alliance234399Haze (4)Remix719Thank You (JTS & Steve Hill Mix)5:19658354Hardcore Masif176035JTSRemix8358Steve HillRemixHARDCOREMASIF009720Tell Me5:56111645DJ WeaverWeaver&754781Andy LittlewoodAndy L721Tell Me (Jamie Ritmen Mix)6:27111645DJ WeaverWeaver&754781Andy LittlewoodAndy L629035Jamie RitmenRemixHARDCOREMASIF010722Touch Me (Weaver & Steve Hill Exclusive Mix)6:38658354Hardcore Masif111645DJ WeaverWeaverRemix8358Steve HillRemix723Touch Me (Weaver & Steve Hill Mix)6:35658354Hardcore Masif111645DJ WeaverWeaverRemix8358Steve HillRemix724Do It Now4:07234399Haze (4)HARDCOREMASIFEP1725Feel Alive6:35552306TechnikoreFeat.571547Alison Wade571547Alison WadeFeaturing726Follow The Light5:59552306TechnikoreFeat.571547Alison Wade571547Alison WadeFeaturing727My Intention6:17552306TechnikoreFeat.113916Lisa AbbottLisa Abbot113916Lisa AbbottLisa AbbotFeaturing728My Intention (Dougal & Gammer Mix)6:32552306TechnikoreFeat.113916Lisa AbbottLisa Abbot113916Lisa AbbottLisa AbbotFeaturing111582Dougal & GammerRemixHARDCOREMASIFEP2729Cannonball6:45111645DJ WeaverWeaver&754781Andy LittlewoodAndy LFeat.356641Fransisca BalkeFran356641Fransisca BalkeFranFeaturing730Cannonball (Scott Brown Mix)6:46111645DJ WeaverWeaver&754781Andy LittlewoodAndy LFeat.356641Fransisca BalkeFran356641Fransisca BalkeFranFeaturing6123Scott BrownRemix731Dance With Me5:57111645DJ WeaverWeaver732F*?kin' With The Beat6:35111645DJ WeaverWeaverHardstyle MasifHARDSTYLEMASIF1733Unforgiven (Black & White Mix)7:158358Steve Hill,917154Hardforze&1048615Pulsar (17)624461Black & White (8)Remix734Unforgiven (Original Mix)5:008358Steve Hill,917154Hardforze&1048615Pulsar (17)HARDSTYLEMASIF2735Wonderwall (Black & White Mix)6:128358Steve HillVs917154Hardforze624461Black & White (8)Remix736Wonderwall (Original Mix)5:318358Steve HillVs917154HardforzeK-SeriesK1737Go8:07235794K-SeriesK2738Binary Finary8:00235794K-SeriesK3739Hole In One8:07235794K-SeriesK4740FSOL8:10235794K-SeriesK5741Communication8:49235794K-SeriesK6742Punk'd7:32235794K-SeriesK7743Airwave8:34235794K-SeriesK8744Sanctuary8:15235794K-SeriesK9745Flowtation7:37235794K-SeriesK10 Part 1746Fiji8:37235794K-SeriesK10 Part 2747MayDay (Original Mix)8:25235794K-SeriesK11748Strange World8:28235794K-SeriesKy749Brainchild9:15235794K-SeriesKz750Hardfloor8:35235794K-SeriesMasifMASIF001751Inside Of Me (Masif DJ's Mix)8:0336377James LawsonVs8358Steve Hill230469Masif DJ'sRemix752Inside Of Me (Original Mix)9:0336377James LawsonVs8358Steve HillMASIF002753Love Ressurection (Steve Hill Vs Guyver Mix)8:29240917Ian Betts20907GuyverRemix8358Steve HillRemix754Love Ressurection (Original Mix)8:02240917Ian BettsMASIF003755No Good For Me (Steve Hill Vs Technikal Mix)7:53230469Masif DJ's1372269Steve Hill Vs TechnikalRemix756No Good For Me (Matt Williams Mix)8:06230469Masif DJ's104175Matt WilliamsRemixMASIF004757Follow Me (Original Mix)7:481372269Steve Hill Vs Technikal758Strong To Survive (Masif DJ's Edit)7:471372269Steve Hill Vs Technikal230469Masif DJ'sEdited ByMASIF005759The Day Will Come (Rowland & Wright Vs Rob Tiserra Mix)7:203631Rob TisseraVs11806Quake97033Nick Rowland & Dave WrightRowland & WrightRemix3631Rob TisseraRob TiserraRemix760The Day Will Come (Steve Hill Vs K-Series Mix)7:313631Rob TisseraVs11806Quake235794K-SeriesRemix8358Steve HillRemixMASIF006761Reachin Into My Brain8:22230469Masif DJ'sMasif DJs762Reaching (Into My Brain) (Edison Factor Mix)8:25230469Masif DJ's63302The Edison FactorEdison FactorRemixMASIF006RMX763Reaching (Into My Brain) (Adrenaline Dept. Disco-Tek 2008 Remix)8:10230469Masif DJ's689952Adrenaline Dept.Remix764Reaching (Into My Brain) (Steve Hill Vs D10 Mix)8:05230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10RemixMASIF007765Weekend (Masif DJ's Edit)8:031372269Steve Hill Vs Technikal230469Masif DJ'sEdited By766Weekend (MDA + Spherical Mix)8:101372269Steve Hill Vs Technikal370522MDA & SphericalMDA + SphericalRemixMASIF008767One More (Steve Hill Vs K-Series 12" Mix)7:5420179Mr. Bishi235794K-SeriesRemix8358Steve HillRemix768One More (Steve Hill Vs K-Series Mix)8:4420179Mr. Bishi235794K-SeriesRemix8358Steve HillRemixMASIF009769Feel The Love (Masif Tool Mix)7:001372269Steve Hill Vs TechnikalSteve Hill, Technikal,218417Andy WhitbyFt118939Mallorca Lee118939Mallorca LeeFeaturing770Feel The Love (Original Mix)7:301372269Steve Hill Vs TechnikalSteve Hill, Technikal,218417Andy WhitbyFt118939Mallorca Lee118939Mallorca LeeFeaturingMASIF010771Attention (MDA & Spherical Mix)6:46230469Masif DJ's370522MDA & SphericalRemix772Attention! (Steve Hill Vs Technikal 2010 Remix)7:10230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixMASIF011773Gamemaster (Part 1)6:211372269Steve Hill Vs TechnikalSteve Hill, Technikal&2014556Costa Pantazis774Gamemaster (Part 2)8:161372269Steve Hill Vs TechnikalSteve Hill, Technikal&2014556Costa Pantazis775Gamemaster (Part 3)9:161372269Steve Hill Vs TechnikalSteve Hill, Technikal&2014556Costa PantazisMASIF012776Face Down Ass Up (Steve Hill Vs Technikal Mix)5:471670145Hard Dance AllianceFeat.325196MC D (2)325196MC D (2)Featuring1372269Steve Hill Vs TechnikalRemix777Face Down Ass Up (Swankie DJ & Kashi Mix)7:101670145Hard Dance AllianceFeat.325196MC D (2)325196MC D (2)Featuring1283476Swankie DJ & KashiRemixMASIF013778Burning7:453631Rob Tissera&20907GuyverMASIF013R779Burning (Steve Hill Vs Technikal Mix)7:123631Rob Tissera&20907Guyver1372269Steve Hill Vs TechnikalRemixMASIF014780Here Comes That Sound4:591372269Steve Hill Vs TechnikalSteve Hill, Technikal&218417Andy WhitbyMASIF015781Hard House Heaven (Club Edit)6:5111749KnuckleheadzMASIF015R782Hard House Heaven (BK & Steve Hill Mix)7:0611749Knuckleheadz8349BKRemix8358Steve HillRemixMASIF016783Things Can Only Get Better (Original Mix)5:318358Steve Hill,3631Rob Tissera&517623KlubfillerFeat.4542521Biggzy4542521BiggzyFeaturingMASIF017784I Need I Need (Original Mix)7:278349BK&8358Steve HillMASIF018785Stay 2014 (Steve Hill, Klubfiller & Rob Tissera Mix)6:053631Rob Tissera,15346Vinylgroover & The Red HedVinylgroover & Redhead517623KlubfillerRemix3631Rob TisseraRemix8358Steve HillRemixMASIF019786Everything Is Go4:588358Steve Hill,69422Luca Antolini DJLuca Antolini&5789384Tranz-LinquantsMASIF020787Enough Is Enough (Original Mix)6:111372269Steve Hill Vs TechnikalFeat.63207Carlotta Chadwick63207Carlotta ChadwickFeaturingMASIF020R788Enough Is Enough (Rob Tissera & Guyver Mix)6:401372269Steve Hill Vs Technikal20907GuyverRemix3631Rob TisseraRemixMASIF021789Show Me A Sign (Steve Hill Vs Technikal Mix)6:444542520Disco SoldiersFeat.356641Fransisca BalkeFran356641Fransisca BalkeFranFeaturing1372269Steve Hill Vs TechnikalRemixMASIF021R790Show Me A Sign (Steve Hill Vs Technikal Bootleg Mix)6:444542520Disco SoldiersFeat.356641Fransisca BalkeFran356641Fransisca BalkeFranFeaturing1372269Steve Hill Vs TechnikalRemixMASIF022791Bass Power (BK's Cortina Mix)7:281372269Steve Hill Vs TechnikalSteve Hill & TechnikalVs8349BK8349BKRemix8346CortinaRemixMASIF023792Contatto5:538358Steve HillVs69422Luca Antolini DJLuca AntoliniMASIF024793I Get A Rush (Steve Hill Vs Technikal Mix)6:4634674Steve Blake1372269Steve Hill Vs TechnikalRemixMASIF024R794I Get A Rush (Ben Stevens Mix)8:1034674Steve Blake220886Ben StevensRemixMASIF025795Get Out On This Dancefloor8:1511749KnuckleheadzMASIF025R796Get Out On That Dancefloor (Steve Hill Vs Technikal Mix)5:5311749Knuckleheadz1372269Steve Hill Vs TechnikalRemixMASIF026797Sunrise6:058358Steve Hill&517623KlubfillerVs3631Rob TisseraMASIF027798Traffic @ Discoteque6:118358Steve Hill&69422Luca Antolini DJLuca AntoliniMASIF028799Give Me The Music8:398349BK&8358Steve HillMASIF029800We Love U6:321372269Steve Hill Vs TechnikalMASIF030801Testify4:598358Steve Hill&517623KlubfillerMASIF031802Sunrise7:478349BK,8358Steve Hill&11749KnuckleheadzMASIF032803Is It True7:061372269Steve Hill Vs TechnikalMASIF033804Not Over Yet (Steve Hill, Klubfiller & Rob Tissera Mix)6:102029Neon Lights517623KlubfillerRemix3631Rob TisseraRemix8358Steve HillRemixMASIF034805What You Get5:558358Steve Hill,3631Rob Tissera&517623KlubfillerMASIF035806Expression (Steve Hill Vs Technikal Mix)6:0834674Steve Blake1372269Steve Hill Vs TechnikalRemixMASIF035R807Expression (MDA & Spherical Mix)5:0734674Steve Blake370522MDA & SphericalRemixMASIF036808Rapture (Steve Hill Vs Technikal Mix)6:32230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIF037809Waiting For You6:248358Steve Hill,1215349NG RezonanceMASIF038810The Key (Original Mix)6:248358Steve Hill,3631Rob Tissera&517623KlubfillerMASIF039811Touch Me (Max Mozart & Audox Mix)7:292029Neon Lights2126578AudoxRemix3189052Max MozartRemixMASIF040812Save The Day5:521372269Steve Hill Vs TechnikalSteve Hill & TechnikalMASIF041813Hold The Beat4:348358Steve Hill&517623KlubfillerMasif EssentialsMASIFESSENTIALS EP1814Cinema5:261680313ImmerzeVs8358Steve Hill815Fasten Your Seatbelts (Sully Mix)7:20230469Masif DJ's800146Sully (4)Remix816Running (Steve Hill Vs Technikal Mix)7:06230469Masif DJ's1372269Steve Hill Vs TechnikalRemix817Join Me (S.H.O.K.K. Vs. DJ Space Raven Vocal Mix)6:318358Steve Hill651190DJ Space RavenRemix12261S.H.O.K.K.RemixMASIFESSENTIALS EP2818Sweet Disposition5:541680313ImmerzeVs8358Steve Hill819We Found Love (Klubfiller Mix)5:07230469Masif DJ's517623KlubfillerRemix820Touch Me (Energy Syndicate Vs Fierce DJ's Mix)7:342029Neon Lights1628992Energy SyndicateRemix2522970Fierce DJsFierce DJ'sRemix821Zombie Nation4:598358Steve HillVs917154HardforzeMASIFESSENTIALS EP3822Exodus (Adrenaline Dept. Mix)7:14689952Adrenaline Dept.Meets2014556Costa Pantazis689952Adrenaline Dept.Remix823Exodus (Costa Pantazis Mix)7:49689952Adrenaline Dept.Meets2014556Costa Pantazis2014556Costa PantazisRemix824Heaven In My Hands5:431115013Distorted FX825Kickin' In The Beat (Audio Hedz Mix)7:27230469Masif DJ's799231Audio HedzRemix826Nothing But Love For You5:468358Steve HillVs1680313Immerze827You Belong To Me7:37152564Technikal&2821678GD (4)MASIFESSENTIALS EP4828I Can't Help Myself6:44230469Masif DJ's829In The Air 2011 (Steve Hill Vs Technikal Mix)5:30230469Masif DJ's1372269Steve Hill Vs TechnikalRemix830Take Me Away (Steve Hill Old School Mix)7:392029Neon Lights8358Steve HillRemix831Rolling In The Deep5:108358Steve HillVs1680313ImmerzeFeat.1301616Nathalie (16)1301616Nathalie (16)FeaturingMasif GoldMASIFGOLD1832Not Over Yet (Cally Gage & Greg Brookman Mix)7:242029Neon Lights613245Cally GageRemix209614Greg BrookmanRemix833Not Over Yet (D10 Instrumental Mix)7:502029Neon Lights255678D10Remix834Not Over Yet (D10 Vocal Mix)7:502029Neon Lights255678D10Remix835Not Over Yet (Steve Hill & Hardforze Mix)6:162029Neon Lights917154HardforzeRemix8358Steve HillRemix836Not Over Yet (Steve Hill 2003 Mix)7:302029Neon Lights8358Steve HillRemix837Not Over Yet (Violators 2003 Mix)7:402029Neon Lights112780ViolatorzViolatorsRemixMASIFGOLD2838If You Love Me (K-Series Mix)7:338358Steve Hill&10866Nylon235794K-SeriesRemix839If You Love Me (Steve Hill Vs Technikal Mix)7:528358Steve Hill&10866Nylon1372269Steve Hill Vs TechnikalRemixMASIFGOLD3840Shine (Paul Maddox Vs Lee Haslam Mix)8:382029Neon Lights37429Lee HaslamRemix49155Paul MaddoxRemix841Shine (Shock:Force Mix)7:232029Neon Lights1496081Shock:ForceRemix842Shine (Steve Hill Vs K-Series Mix)7:472029Neon Lights235794K-SeriesRemix8358Steve HillRemixMASIFGOLD4843Love Resurrection 2010 (Airspace Mix)7:33240917Ian Betts157090AirspaceRemix844Love Resurrection 2010 (Original 2003 Mix)8:21240917Ian Betts845Love Resurrection 2010 (Steve Hill Vs Guyver's 2003 'Rise' Mix)8:02240917Ian Betts20907GuyverRemix8358Steve HillRemix846Love Resurrection 2010 (Steve Hill Vs Technikal Mix)6:44240917Ian Betts1372269Steve Hill Vs TechnikalRemixMASIFGOLD5847Frantic Theme (Get A Life...) 2009 (Bryan Kearney's Planet Love Mix)6:338358Steve HillVs11681Phlash!280662Bryan KearneyRemix848Frantic Theme (Get A Life...) 2009 (Steve Hill Vs Technikal Mix)7:498358Steve HillVs11681Phlash!1372269Steve Hill Vs TechnikalRemixMASIFGOLD6849Everyday 2010 (Steve Hill Vs Technikal Re-Rub)7:28230469Masif DJ's1372269Steve Hill Vs TechnikalRemix [Re-Rub]MASIFGOLD7850Bullet In The Gun 2010 (Guyver Mix)8:172029Neon Lights20907GuyverRemix851Bullet In The Gun 2010 (MDA & Spherical Mix)8:022029Neon Lights370522MDA & SphericalRemix852Bullet In The Gun 2010 (Steve Hill Vs Hardforze Mix)7:362029Neon Lights917154HardforzeRemix8358Steve HillRemix853Bullet In The Gun 2010 (Steve Hill Vs K-Series 2003 Mix)7:592029Neon Lights235794K-SeriesRemix8358Steve HillRemix854Bullet In The Gun 2010 (Weaver & Steve Hill Mix)6:432029Neon Lights111645DJ WeaverWeaverRemix8358Steve HillRemixMASIFGOLD8855Adagio For Strings 2010 (K-Series Mix)8:281372269Steve Hill Vs Technikal235794K-SeriesRemix856Adagio For Strings 2010 (MDA & Spherical Mix)7:111372269Steve Hill Vs Technikal370522MDA & SphericalRemix857Adagio For Strings 2010 (Original 2003 Mix)9:141372269Steve Hill Vs Technikal858Adagio For Strings 2010 (Original Mix)7:181372269Steve Hill Vs Technikal859Adagio For Strings 2010 Steve Hill Vs Technikal Re-Rub)7:211372269Steve Hill Vs Technikal1372269Steve Hill Vs TechnikalRemix [Re-Rub]MASIFGOLD9860Ready Or Not 2010 (Adrenaline Dept. Mix)8:07230469Masif DJ's689952Adrenaline Dept.Remix861Ready Or Not 2010 (DJ Wag Vs Y.O.M.C. Mix)7:40230469Masif DJ's17254DJ WagRemix16318Y.O.M.C.Remix862Ready Or Not 2010 (Steve Hill Vs D10 Original Mix)8:41230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix863Ready Or Not 2010 (Steve Hill Vs Hardforze Mix)5:14230469Masif DJ's917154HardforzeRemix8358Steve HillRemixMasif HTB (Hard Trance Bootlegs)MASIFHTB1864Out Of The Blue (MDA & Spherical Mix)7:3755398Volts Wagen370522MDA & SphericalRemixMASIFHTB28651998 (Steve Hill Vs Technikal Mix)8:03230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIFHTB3866Not Over Yet (Cally Gage & Greg Brookman Mix)7:242029Neon Lights613245Cally GageRemix209614Greg BrookmanRemixMASIFHTB4867Greece 20007:29235794K-SeriesMASIFHTB5868Catch (Andrea Montorsi Mix)8:08230469Masif DJ's104130Andrea MontorsiRemixMASIFHTB6869Alone (Liberated)7:548358Steve HillVs5987K90MASIFHTB7870I Need Your Loving8:03218417Andy WhitbyMASIFHTB8871Why Does My Heart (Feel So Bad) (Steve Hill Vs Technikal Mix)8:04230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMHTB5EP1872Love Sensation (Steve Hill Vs Technikal Mix)7:43230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix873No Alternative (Wragg And Log One Mix)5:34230469Masif DJ's1056605Log:One & DJ WraggWragg And Log OneRemix874Weekend (Master)5:498358Steve Hill&517623KlubfillerMHTB5EP2875Bounce (Steve Hill Vs Klubfiller Mix)6:13230469Masif DJ'sMasif DJs517623KlubfillerRemix8358Steve HillRemix876Southern Sun (Steve Hill Vs Technikal Mix)7:40230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixMHTB5EP3877Better Off Alone7:372166484David McRae (3)Feat.2105341NuroGL2105341NuroGLFeaturing878I Need A Doctor (Steve Hill Vs DBD Mix)7:32230469Masif DJ's75559Dark By DesignDBDRemix8358Steve HillRemix879The Journey (Steve Hill Vs Technikal Mix)7:04230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixMHTB5EP4880Sunrise (Here I Am) (Steve Hill Vs Technikal Mix)6:18230469Masif DJ's1372269Steve Hill Vs TechnikalRemix881Heart Of Asia 20116:24339248SuaeMHTB5EP5882Coming Home (Steve Hill Vs Technikal Mix)5:35230469Masif DJ's1372269Steve Hill Vs TechnikalRemix883Ecstasy (Dark By Design Mix)3:451372269Steve Hill Vs Technikal75559Dark By DesignRemixMHTB5EP6884Castles In The Sky7:12230469Masif DJ'sFeat1301616Nathalie (16)1301616Nathalie (16)Featuring885You Got The Love (Steve Hill Vs Technikal Mix)5:48230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemixMHTB5EP7886Come Together (Steve Hill Vs Technikal Mix)4:54230469Masif DJ's1372269Steve Hill Vs TechnikalRemix887Insomnia 2011 (Steve Hill Vs Technikal Mix)3:58230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMHTB5EP8888Attention (Shockforce Mix)6:59230469Masif DJ's1496081Shock:ForceShockforceRemix889Seek Bromance (Steve Hill Vs Technikal Mix)6:221301616Nathalie (16)1372269Steve Hill Vs TechnikalRemixMasif HTMLMASIFHTML01890Technique8:131372269Steve Hill Vs TechnikalMASIFHTML02891Pleasuredome8:178358Steve HillVs430354VandallMASIFHTML03892The Sound5:338358Steve HillVs917154HardforzeMASIFHTML04893Whatever Happened To Techno6:328358Steve HillVs103107DJ Ricky TRicky TMASIFHTML05894Theme From HTML7:091372269Steve Hill Vs TechnikalMASIFHTML06895Every Fuckin Day Pt. 16:3869422Luca Antolini DJLuca Antolini,8358Steve Hill&104130Andrea MontorsiMASIFHTML07896I Don't Need You Anymore7:198358Steve HillVs370522MDA & SphericalMASIFHTML08897Paint It Black4:448358Steve HillVs917154HardforzeMASIFHTML09898Be My Angel Pt 16:338358Steve Hill,370522MDA & Spherical&917154HardforzeMASIFHTML10899One And All6:368358Steve Hill,1299417Antolini & MontorsiLuca Antolini & Andrea MontorsiMASIFHTML11900FUTS8:298358Steve HillVs75559Dark By DesignMASIFHTML12901Heaven5:458358Steve HillVs917154HardforzeMASIFHTML13902Sawtooth Dentist7:341372269Steve Hill Vs TechnikalMASIFHTML14903Always On My Mind7:101372269Steve Hill Vs TechnikalFeat.1301616Nathalie (16)1301616Nathalie (16)FeaturingMASIFHTML15904Euro Power7:271372269Steve Hill Vs TechnikalMASIFHTML16905Glory6:548358Steve HillVs104130Andrea MontorsiMASIFHTML17906Driving Me Insane7:031372269Steve Hill Vs Technikal&1399934James T. StanhopeJ.T StanhopeMASIFHTML18907Be My Angel Pt. 24:558358Steve Hill,917154Hardforze&370522MDA & SphericalMASIFHTML19908Welcome To My World 2.08:091372269Steve Hill Vs TechnikalSteve Hill, Technikal&69422Luca Antolini DJLuca AntoliniMASIFHTML20909Voodoo (2010 Rerub)7:081372269Steve Hill Vs TechnikalMASIFHTML21910From The Inside (Steve Hill Vs Technikal Mix)7:41210917CyprianFeat.39507Rani39507RaniFeaturing1372269Steve Hill Vs TechnikalRemixMASIFHTML22911My Lovin' 20107:01370522MDA & SphericalVs8358Steve HillMASIFHTML23912Hold That Sucker Down (Steve Hill Vs Technikal Mix)7:13230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIFHTML24913Welcome To The Club7:401372269Steve Hill Vs TechnikalMASIFHTML25914Can You Feel It7:288358Steve HillVs75559Dark By DesignMASIFHTML26915I Have A Dream7:471372269Steve Hill Vs TechnikalMASIFHTML27916Come With Me8:181372269Steve Hill Vs TechnikalMASIFHTML28917Ready 4 This6:271372269Steve Hill Vs TechnikalFeat.228852MC Whizzkid228852MC WhizzkidFeaturingMASIFHTML29918The Family (Steve Hill Vs Hardforze Remix)5:001111031S-DeeS Dee&1919830Toxic (24)917154HardforzeRemix8358Steve HillRemixMASIFHTML30919I Need Your Loving (Tech Trance Mix)7:008358Steve Hill,1299417Antolini & MontorsiLuca Antolini & Andrea MontorsiMASIFHTML31920Gotta Have Hope6:158358Steve HillVs370522MDA & SphericalMASIFHTML32921Why Does My Heart (Feel So Bad) (Steve Hill Vs Technikal Mix)8:04230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIFHTML33922R U Ready5:041372269Steve Hill Vs TechnikalMASIFHTML34923Faith In Me8:308358Steve HillVs689952Adrenaline Dept.MASIFHTML35924Silence7:071372269Steve Hill Vs Technikal&1399934James T. StanhopeJ.T. StanhopeMASIFHTML36925Technique Mk II8:301372269Steve Hill Vs TechnikalMASIFHTML37926Theme From Great Cities (Intro Mix)6:531372269Steve Hill Vs TechnikalMASIFHTML38927Good Love8:098358Steve HillVs430354VandallMASIFHTML39928All We Need Is Love8:213423788Steve Hill vs. D10Steve Hill Vs D10MASIFHTML40929P.L.U.R.6:578358Steve HillVs1399934James T. StanhopeJ.T. StanhopeMASIFHTML41930Darkness In Heaven7:418358Steve HillVs75559Dark By DesignMASIFHTML42931In The Zone7:201372269Steve Hill Vs TechnikalMASIFHTML43932Every Heartbeat 2009 (Steve Hill Vs Technikal Mix)7:30230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIFHTML44933Go Insane Pt. 27:288358Steve Hill,69422Luca Antolini DJLuca Antolini&75559Dark By DesignMASIFHTML45934The Day Will Come (Steve Hill Vs K-Series Original Mix)7:093631Rob TisseraVs11806Quake235794K-SeriesRemix8358Steve HillRemix935The Day Will Come (Steve Hill Vs K Series Bootleg Mix)7:313631Rob TisseraVs11806Quake235794K-SeriesK SeriesRemix8358Steve HillRemixMASIFHTML46936Wicked 2010 (Steve Hill Vs MDA & Spherical Mix)5:488358Steve Hill370522MDA & SphericalRemix8358Steve HillRemixMASIFHTML47937Party People (Use Slf Ctrl)5:568358Steve HillVs917154HardforzeMASIFHTML48938Feel It7:121372269Steve Hill Vs Technikal&1399934James T. StanhopeJ.T. StanhopeMASIFHTML49939R U Ready 2.08:091372269Steve Hill Vs Technikal&12261S.H.O.K.K.MASIFHTML50940All My Life (Steve Hill Vs Technikal Mix)7:27206018ZanderFeat.255675Alexis Hart255675Alexis HartFeaturing1372269Steve Hill Vs TechnikalRemixMasif HTML Live SeriesMASIFHTMLLIVESERIES 1941Free At Last 20115:421372269Steve Hill Vs TechnikalMASIFHTMLLIVESERIES 2942Heat 20127:2369422Luca Antolini DJLuca AntoliniVs8358Steve HillMASIFHTMLLIVESERIES 3943Everybody Say Yeah3:468358Steve HillVs517623KlubfillerMASIFHTMLLIVESERIES 4944What Ya Got 4 Me (Steve Hill Vs Technikal Mix)6:34230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIFHTMLLIVESERIES 5945Forever Young (Encore Mix)5:053423788Steve Hill vs. D10Steve Hill Vs D10946Forever Young (Extended Mix)6:553423788Steve Hill vs. D10Steve Hill Vs D10MASIFHTMLLIVESERIES 6947Bass Power (Part 1)7:101372269Steve Hill Vs TechnikalVs8349BKMASIFHTMLLIVESERIES 7948Elements3:448358Steve HillVs517623KlubfillerMASIFHTMLLIVESERIES 8949Fly With Me6:198358Steve HillVs69422Luca Antolini DJLuca AntoliniMASIFHTMLLIVESERIES 9950Technique Mk45:251372269Steve Hill Vs TechnikalMASIFHTMLLIVESERIES 10951Hard In My House6:048358Steve HillVs69422Luca Antolini DJLuca AntoliniMASIFHTMLLIVESERIES 11952Weekend (Party Time) (2012 Harder Styles Mix)5:461372269Steve Hill Vs TechnikalMASIFHTMLLIVESERIES 12953Play It Loud6:381372269Steve Hill Vs TechnikalSteve Hill, Technikal&517623KlubfillerMASIFHTMLLIVESERIES 13954Turn It Up6:098358Steve HillVs69422Luca Antolini DJLuca AntoliniPresents4542519Clubstyle69422Luca Antolini DJLuca AntoliniPresenter8358Steve HillPresenterMASIFHTMLLIVESERIES 14955Showmaster4:568358Steve HillVs69422Luca Antolini DJLuca AntoliniMASIFHTMLLIVESERIES 16956Technique 56:051372269Steve Hill Vs TechnikalMASIFHTMLLIVESERIES 17957Feel For You (Part 1)6:051372269Steve Hill Vs TechnikalSteve Hill, Technikal&517623KlubfillerFeat.200218Bliss Inc.Bliss Inc200218Bliss Inc.Bliss IncFeaturingMasif HTML RmxMASIFHTMLRMX1958Theme From HTML (Adrenaline Dept. Mix)7:341372269Steve Hill Vs Technikal689952Adrenaline Dept.RemixMASIFHTMLRMX2959Theme From HTML (Dark By Design Mix)6:061372269Steve Hill Vs Technikal75559Dark By DesignRemixMASIFHTMLRMX3960Theme From HTML (Luca Antolini Mix)7:121372269Steve Hill Vs Technikal69422Luca Antolini DJLuca AntoliniRemixMASIFHTMLRMX4961Theme From HTML (Nomad Mix)6:491372269Steve Hill Vs Technikal1438804Nomad (19)RemixMASIFHTMLRMX5962Theme From HTML (Simon Qudos & Greg Brookman Mix)7:191372269Steve Hill Vs Technikal209614Greg BrookmanRemix1039605Simon QudosRemixMASIFHTMLRMX6963Theme From HTML (BK Mix)6:571372269Steve Hill Vs Technikal8349BKRemixMASIFHTMLRMX7964Theme From HTML (Amber D Mix)8:071372269Steve Hill Vs Technikal233533Amber DRemixMASIFHTMLRMX8965Theme From HTML (BRK3 Mix)5:531372269Steve Hill Vs Technikal1481614BRK3RemixMASIFHTMLRMX9966Theme From HTML (Iridium Mix)6:521372269Steve Hill Vs Technikal573621Iridium (5)RemixMasif NRG967Bullet In The Gun (Steve Hill & Danceforze Remix)7:372637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix8358Steve HillRemix968Cold As Ice (Danceforze & Suae Remix)6:512637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix339248SuaeRemix969Feel The Love (Outsource Club Mix)5:402637358Masif NRG DJ'sMasif NRG1000942Outsource (3)Remix970I See You Baby (Outsource 2008 Club Remix)5:332637358Masif NRG DJ'sMasif NRG1000942Outsource (3)Remix971Loneliness (Steve Hill & Danceforze Remix)6:272637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix8358Steve HillRemix972Love You More (Steve Hill Vs Danceforze Mix)6:472637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix8358Steve HillRemix973Mad World (Steve Hill & Danceforze Remix)7:012637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix8358Steve HillRemix974Music Is The Answer (Steve Hill Vs Wilz Mix)6:262637358Masif NRG DJ'sMasif NRG8358Steve HillRemix485825WilzRemix975Music Is The Answer (Steve Hill Vs Wilz Mix)6:262637358Masif NRG DJ'sMasif NRG8358Steve HillRemix485825WilzRemix976Not Alone (Steve Hill & Danceforze Remix)7:002637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix8358Steve HillRemix977Not Over Yet (Steve Hill & Danceforze Remix)6:162637358Masif NRG DJ'sMasif NRG744404DanceforzeRemix8358Steve HillRemix978Touch Me (Wilz Vs Micky D Remix)6:572637358Masif NRG DJ'sMasif NRG769655Micky DRemix485825WilzRemix979Unfaithful (Outsource 2008 Remix) (Master)6:072637358Masif NRG DJ'sMasif NRG1000942Outsource (3)Remix980Your Free (Outsource Club Remix) (Master)6:552637358Masif NRG DJ'sMasif NRG1000942Outsource (3)Remix981Frantic Theme (Get A Life) (Wilz Vs Micky D Remix)6:5811681Phlash!Phlash769655Micky DRemix485825WilzRemix982Lover (Danceforze Remix)6:09111645DJ WeaverWeaver&113945AMSA.M.S744404DanceforzeRemix983All My Life (Micky D Vs Wilz Mix)5:33206018Zander769655Micky DRemix485825WilzRemixMasif SamplerMASIFSAMPLER001984Cafe Del Mar (Steve Hill Vs D10 Mix)8:06230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix985Fine Day (Steve Hill Vs D10 Mix)8:142029Neon Lights3423788Steve Hill vs. D10Steve Hill Vs D10RemixMASIFSAMPLER002986We Are Alive7:018358Steve HillVs163004DJ Nervous (2)Nervous987We Are Alive (Alphazone Mix)7:228358Steve HillVs163004DJ Nervous (2)Nervous41320AlphazoneRemixMASIFSAMPLER003988Universal Nation (Steve Hill Vs Dark By Design Mix)8:21230469Masif DJ'sMasif DJs75559Dark By DesignRemix8358Steve HillRemix989Ecstasy (Club Mix)8:231372269Steve Hill Vs TechnikalMASIFSAMPLER004990Come With Me (D10 Mix)7:538358Steve HillVs163004DJ Nervous (2)Nervous255678D10Remix991Come With Me (Original Mix)8:298358Steve HillVs163004DJ Nervous (2)NervousMASIFSAMPLER005992What The Fuck (Original Mix)7:48114457Alex KiddVs834233Novacaine993What The Fuck (Steve Hill Vs Dark By Design Mix)5:09114457Alex KiddVs834233Novacaine75559Dark By DesignRemix8358Steve HillRemixMASIFSAMPLER006994Go Insane (Dark By Design Vs Steve Hill Mix)7:50230469Masif DJ's75559Dark By DesignRemix8358Steve HillRemix995Go Insane (Luca Antolini Mix)7:28230469Masif DJ's69422Luca Antolini DJLuca AntoliniRemixMASIFSAMPLER007996Insane (Alex Kidd Vs Dark By Design Mix)7:36230469Masif DJ's114457Alex KiddRemix75559Dark By DesignRemix997Insane (Steve Hill Vs Cally & Juice Mix)7:42230469Masif DJ's191902Cally & JuiceRemix8358Steve HillRemixMASIFSAMPLER008998Fine Day (Steve Hill Vs Technikal Mix)7:14230469Masif DJ'sMasif DJs1372269Steve Hill Vs TechnikalRemix999Getting High7:098358Steve HillVs370522MDA & SphericalMasif WhiteMASIFWHITE0011000Why Does My Heart (Feel So Bad) (Steve Hill Vs Technikal Mix)8:04230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMASIFWHITE0021001I Need Your Lovin8:02218417Andy WhitbyMASIFWHITE0031002Enjoy The Silence (Steve Hill Vs Technikal Mix)7:50230469Masif DJ's1372269Steve Hill Vs TechnikalRemixMasif WorldMASIFWORLD0011003Black Magic (Pure Thrust)8:498358Steve HillVs75559Dark By Design1004Voodoo7:281372269Steve Hill Vs TechnikalMASIFWORLD0021005Wasted (Steve Hill Vs Guyver Mix)9:11230469Masif DJ's20907GuyverRemix8358Steve HillRemix1006Free At Last8:051372269Steve Hill Vs TechnikalMASIFWORLD0031007Forget The Past7:438358Steve HillVs75559Dark By Design1008Impulz7:461372269Steve Hill Vs TechnikalMASIFWORLD0041009We Will Survive (Part 1)8:028358Steve HillVs75559Dark By Design1010We Will Survive (Part 2)9:211372269Steve Hill Vs TechnikalMASIFWORLD0051011Can You Feel It7:288358Steve HillVs75559Dark By Design1012Bang (To Tha Beat)6:208358Steve HillVs917154HardforzeMASIFWORLD0061013Open Your Mind7:418358Steve HillVs75559Dark By Design1014Can U Dig It7:161372269Steve Hill Vs TechnikalMASIFWORLD0071015FUTS8:298358Steve HillVs75559Dark By Design1016Euro Power7:251372269Steve Hill Vs TechnikalMASIFWORLD0081017Staying In The Shadows6:508358Steve Hill,202114Phil York&75559Dark By Design1018Welcome To My World7:471372269Steve Hill Vs TechnikalMASIFWORLD0091019Darkness In Heaven7:418358Steve HillVs75559Dark By Design1020I Have A Dream7:471372269Steve Hill Vs TechnikalMASIFWORLDRMX0011021Free At Last (Matt Gardner Mix)7:451372269Steve Hill Vs Technikal811736Matt GardnerRemix1022Voodoo (Vandall's Hard Floor Mix)7:131372269Steve Hill Vs Technikal430354VandallRemixMASIFWORLDRMX0021023FUTS (Andrea Montorsi Mix)7:368358Steve HillVs75559Dark By Design104130Andrea MontorsiRemix1024Can You Feel It (Derb Mix)7:378358Steve Hill16061DerbRemixRVRS BASSRVRSBASS0011025My Beat (RVRS BASS Mix)5:208358Steve Hill,69422Luca Antolini DJLuca Antolini&824432Francesco Zeta1026My Beat (Hardstyle Mix)5:208358Steve Hill,69422Luca Antolini DJLuca Antolini&824432Francesco ZetaRVRSBASS0021027Heartbreak4:19824432Francesco ZetaRVRSBASS0031028Right Here Right Now4:581372269Steve Hill Vs TechnikalSteve Hill & TechnikalRVRSBASS0041029Heat5:0669422Luca Antolini DJLuca Antolini&8358Steve Hill1030Contatto6:1769422Luca Antolini DJLuca AntoliniRVRSBASS0051031Confusion5:041372269Steve Hill Vs TechnikalSteve Hill & TechnikalRVRSBASS0061032Get Loose3:575039835J-TraxRVRSBASS0071033My House4:538358Steve Hill,824432Francesco Zeta&152564TechnikalRVRSBASS0081034Scream5:208358Steve Hill&69422Luca Antolini DJLuca AntoliniRVRSBASS0091035Kickin' 20164:425244926Ed E.T & D.T.REd.E.T & D.T.RVs5789384Tranz-LinquantsRVRSBASS0101036Shake It5:251372269Steve Hill Vs TechnikalRVRSBASS0111037Zenith4:341324958Cally (3)RVRSBASS0121038Rock It4:138358Steve Hill,69422Luca Antolini DJLuca Antolini&824432Francesco ZetaRVRSBASS0131039The Black Hole6:065244926Ed E.T & D.T.RRVRSBASS0141040Don't Hesitate4:341372269Steve Hill Vs TechnikalSteve Hill & TechnikalRVRSBASS0151041Keep On Rockin'5:201372269Steve Hill Vs TechnikalSteve Hill, Technikal&1252384DJ YozRVRSBASS0161042Tanzen4:388358Steve Hill,69422Luca Antolini DJLuca Antolini&824432Francesco ZetaRVRSBASS0171043In The Zone4:068358Steve Hill&1628992Energy SyndicateRVRSBASS0181044Dance To The House (Cally Remix)4:042398587B.R.KB.R.K.1324958Cally (3)RemixRVRSBASS0191045F.I.R.E.4:351372269Steve Hill Vs TechnikalSteve Hill, Technikal&69422Luca Antolini DJLuca AntoliniRVRSBASS0201046Jump6:193113963MKN (2)&5039835J-TraxRVRSBASS0211047Lose Control5:158358Steve HillVs20176Organ DonorsRVRSBASS0221048Start To Move4:461324958Cally (3)&5258338Malfunction (10)RVRSBASS0231049By The Way4:22824432Francesco Zeta&8358Steve HillRVRSBASS0241050Bringing It On5:011372269Steve Hill Vs TechnikalSteve Hill, Technikal,1252384DJ Yoz&63207Carlotta ChadwickRVRSBASS0251051Decivilized5:205410735Nik ImportRVRSBASS0261052Nicotine4:218358Steve Hill,824432Francesco Zeta&69422Luca Antolini DJLuca AntoliniRVRSBASS0271053Stop Da Party5:135039835J-TraxRVRSBASS0281054RVRS The BASS5:06124568DJ ActivatorActivator&8358Steve HillRVRSBASS0291055It's Like That3:581372269Steve Hill Vs TechnikalSteve Hill X TechnikalRVRSBASS0301056Music Is The Answer4:221324958Cally (3)X8358Steve HillX3113963MKN (2)RVRSBASS0311057Powerful (RVRS BASS Edit)4:0269422Luca Antolini DJLuca AntoliniRVRSBASS0321058Can You Dig It (Part 1)3:281372269Steve Hill Vs TechnikalSteve Hill X TechnikalX1252384DJ YozRVRSBASS0331059Never Break4:068358Steve Hill,824432Francesco Zeta&152564TechnikalFeat.2676482MC D (3)325196MC D (2)FeaturingRVRSBASS0341060Walk Right In3:315039835J-TraxRVRSBASS0351061Public Enemy4:198358Steve HillX824432Francesco ZetaX152564TechnikalRVRSBASS0361062Ready Or Not5:341372269Steve Hill Vs TechnikalSteve Hill X TechnikalFeat.5799240Lindsey Marie5799240Lindsey MarieFeaturingRVRSBASS0371063Operation Reboot4:355014502YevRVRSBASS0381064Rage4:168358Steve HillX6296226Fracture (26)RVRSBASS0391065Get Down4:355244926Ed E.T & D.T.RVs2860796ActivistRVRSBASS0401066Rhythm Is A Dancer4:291372269Steve Hill Vs TechnikalSteve Hill X TechnikalX824432Francesco ZetaRVRSBASS0411067HDUK4:271324958Cally (3)&8358Steve HillFt.1905592MC Shocker1905592MC ShockerFeaturingRVRSBASS0421068Light My Fire4:215039835J-TraxRVRSBASS0431069Gunman4:26824432Francesco ZetaX1372269Steve Hill Vs TechnikalSteve Hill X TechnikalRVRSBASS0441070Faith In Me4:306544357Uforia (6)X1372269Steve Hill Vs TechnikalSteve Hill X TechnikalRVRSBASS0451071Loving You5:108358Steve HillX824432Francesco ZetaX69422Luca Antolini DJLuca AntoliniRVRSBASS0461072Renegade6:071946747Josh LangRVRSBASS0471073The One5:008358Steve Hill&5039835J-TraxRVRSBASS0481074Norsca4:191252384DJ YozRVRSBASS0491075Thank You4:031372269Steve Hill Vs TechnikalSteve Hill X TechnikalX824432Francesco Zeta-1076Trippin (Steve Hill X Technikal Remix)5:31124568DJ ActivatorActivator&715021Flarup1372269Steve Hill Vs TechnikalSteve Hill X TechnikalRemix1077Taking Their Lives Away4:445039835J-Trax&8358Steve Hill1078Once Again (Unreleased Mix)4:081372269Steve Hill Vs TechnikalS-TraxSTRAX0011079Not Over Yet (D10 Mix)7:502029Neon Lights255678D10Remix1080Not Over Yet (D10 Instrumental Mix)7:502029Neon Lights255678D10RemixSTRAX0021081No Good For Me (Steve Hill Vs Dark By Design Full Mix)8:20230469Masif DJ's75559Dark By DesignRemix8358Steve HillRemix1082No Good For Me (Steve Hill Vs Dark By Design Edit)7:03230469Masif DJ's75559Dark By DesignEdited By8358Steve HillEdited BySTRAX0031083Binary Harder (Part 1)8:29255678D101084Binary Harder (Part 2)8:41255678D10STRAX0041085Keep Calm 2005 (Original Mix)7:17116337Delegate (2)1086Keep Calm 2005 (Steve Hill Vs Dark By Design Mix)8:51116337Delegate (2)75559Dark By DesignRemix8358Steve HillRemixSTRAX0051087Ready Or Not (Original Mix)8:413423788Steve Hill vs. D10Steve Hill Vs D101088Ready Or Not (DJ Wag Vs Y.O.M.C. Mix)7:403423788Steve Hill vs. D10Steve Hill Vs D1017254DJ WagRemix16318Y.O.M.C.RemixSTRAX0061089Tricky Tricky (Original Reconstruction)7:408358Steve HillVs163004DJ Nervous (2)Nervous1090Tricky Tricky (D10 Mix)7:408358Steve HillVs163004DJ Nervous (2)Nervous255678D10RemixSTRAX0071091Silence (Steve Hill Vs D10 Mix)8:04230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10Remix1092Children (Steve Hill Vs D10 Mix)8:10230469Masif DJ's3423788Steve Hill vs. D10Steve Hill Vs D10RemixSTRAX0081093Cold As Ice7:283423788Steve Hill vs. D10Steve Hill Vs D101094Punk7:183423788Steve Hill vs. D10Steve Hill Vs D10STRAX0091095Cocaine (Steve Hill Vs Dark By Design Miix)8:0611148Yakooza75559Dark By DesignRemix8358Steve HillRemix1096Cocaine (Derb Mix)7:3611148Yakooza16061DerbRemixSTRAX0101097Hypnotizin'7:498358Steve HillVs75559Dark By Design1098Hypnotizin' (Luca Antolini Mix)7:278358Steve HillVs75559Dark By Design69422Luca Antolini DJLuca AntoliniRemixSTRAX0111099The Energy (Original Mix)8:018358Steve HillVs6299143The Sixth Sense (3)Sixth SenseFt.118939Mallorca Lee118939Mallorca LeeFeaturing1100The Energy (Dark By Design Mix)8:318358Steve HillVs6299143The Sixth Sense (3)Sixth SenseFt.118939Mallorca Lee118939Mallorca LeeFeaturing75559Dark By DesignRemixSTRAX0121101In The Name Of God8:3469422Luca Antolini DJLuca AntoliniVs98815Bobby V1102Guilty7:4369422Luca Antolini DJLuca AntoliniPresents9989062 Lifes2Life69422Luca Antolini DJLuca AntoliniPresenterSTRAX0131103Free (Luca Antolini Mix)7:151299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi69422Luca Antolini DJLuca AntoliniRemix1104Free (Andrea Montorsi Mix)7:351299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi104130Andrea MontorsiRemixSTRAX0141105Loving You (First Mix)7:2169422Luca Antolini DJLuca Antolini1106Loving You (Second Mix)9:1469422Luca Antolini DJLuca Antolini1107Loving You (Ricky T Mix)7:0069422Luca Antolini DJLuca Antolini103107DJ Ricky TRicky TRemixSTRAX0151108Don't Speak (Club Mix)5:428358Steve HillVs917154Hardforze1109Don't Speak (Radio Edit)3:578358Steve HillVs917154HardforzeSTRAX0161110The Maniac (Is Watching You) (Part One)7:528358Steve HillVs69422Luca Antolini DJLuca Antolini1111The Maniac (Is Watching You) (Part Two)6:088358Steve HillVs69422Luca Antolini DJLuca AntoliniSTRAX0171112Thank You (Club Mix)5:278358Steve HillVs917154Hardforze1113Thank You (Radio Edit)3:258358Steve HillVs917154HardforzeSTRAX0181114Escape (Original Mix)7:521299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi1115Escape (Vandall's Deep Mix)8:021299417Antolini & MontorsiLuca Antolini Vs Andrea Montorsi430354VandallRemixVolts WagenVW0011116Sid Vicious7:1455398Volts WagenVW0021117Feel Alright7:1755398Volts WagenVW0031118Dirty Bonnie7:3755398Volts WagenVW0041119ToyBoy6:4755398Volts WagenVW0051120Olives + Feta7:4755398Volts WagenVW0061121No Sleep7:0255398Volts Wagen1122No Sleep (Radio Edit)3:0555398Volts WagenVW0071123Pacific Ocean7:2255398Volts WagenVW0081124Beetles & Bugs6:3655398Volts WagenVW0091125Moo Master6:5855398Volts Wagen1126Moo Master (Part II)6:4555398Volts WagenVW0101127DJ Lucid7:0555398Volts WagenVW0111128Keep On Luvin'6:2455398Volts Wagen-1129Gold Dreamer (Volts Wagen Remix)7:33326149DJ T55398Volts WagenRemix1130Baby Wants To Ride6:3955398Volts Wagen1131Dark And Long (Dub Mix)6:3955398Volts Wagen1132Flowtation8:0855398Volts WagenVWRVWR0011133Shine (Steve Hill Vs K-Series Mix)7:472029Neon Lights235794K-SeriesRemix8358Steve HillRemix1134Shine (Maddox Vs Haslam Mix)8:382029Neon Lights37429Lee HaslamHaslamRemix49155Paul MaddoxMaddoxRemixVWR0021135Adagio For Strings (Original Mix)9:141372269Steve Hill Vs Technikal1136Adagio For Strings (K-Series Mix)8:281372269Steve Hill Vs Technikal235794K-SeriesRemixVWR0031137Silence (Technikal's Found The Sunrise Mix)8:09230469Masif DJ's152564TechnikalRemix1138Silence (K-Series Vs Shark Boy Mix)8:35230469Masif DJ's235794K-SeriesRemix106823SharkboyShark BoyRemixVWR0041139Wanna Ride (Original Mix)8:288352Trauma1140Wanna Ride (Bulletproof Mix)7:408352Trauma47785Bulletproof (2)RemixVWR0051141Let Me Be Your Fantasy (P.H.A.T.T. Mix)8:482029Neon Lights208684P.H.A.T.T.Remix1142Let Me Be Your Fantaszy (NR2 Mix)8:042029Neon Lights245767NR²NR2RemixVWR0061143Loving U (Andy Whitby Mix)8:38230469Masif DJ's218417Andy WhitbyRemix1144Not Alone (Andy Whitby Mix)7:402029Neon Lights218417Andy WhitbyRemixVWR0071145As The Rush Comes (P.H.A.T.T. Mix)9:28230469Masif DJ's208684P.H.A.T.T.Remix1146Calling Your Name (P.H.A.T.T. Mix)8:392029Neon Lights208684P.H.A.T.T.RemixVWR0081147Everyday (Steve Hill Vs Technikal Mix)7:28230469Masif DJ's1372269Steve Hill Vs TechnikalRemix1148Everyday (Phil York Vs Dark By Design Mix)7:27230469Masif DJ's75559Dark By DesignRemix202114Phil YorkRemixVWR0091149What Time Is Love (2007 Mix)8:02235794K-Series1150Lost In Love (K-Series Mix)8:18230469Masif DJ's235794K-SeriesRemixVWR0101151Need To Feel Loved (Steve Hill Vs Technikal Mix)6:58230469Masif DJ's1372269Steve Hill Vs TechnikalRemix1152Need To Feel Loved (Vandall's Melo-Tek Mix)4:08230469Masif DJ's430354VandallRemixVWR0111153Wonderful (Steve Hill Vs Technikal Mix)7:10230469Masif DJ's1372269Steve Hill Vs TechnikalRemix1154I Feel Wonderful (Skydive) (Hardforze Mix)7:31230469Masif DJ's917154HardforzeRemixVWR0121155Home (Steve Hill Vs Technikal Mix)8:052029Neon Lights1372269Steve Hill Vs TechnikalRemix1156Home (Vandall's Solid Mix)7:222029Neon Lights430354VandallRemix1157Home (Vandall's Tek-a-licious Mix)10:012029Neon Lights430354VandallRemixVWR0131158Passion (MDA & Spherical Mix)6:53230469Masif DJ's370522MDA & SphericalRemix1159Days Go By (Steve Hill Vs MDA And Spherical Mix)7:11230469Masif DJ's370522MDA & SphericalMDA And SphericalRemix8358Steve HillRemix446837The Masif Organisation13Phonographic Copyright (p)446837The Masif Organisation14Copyright (c) + +194VariousClassic Jazz - From New Orleans To HarlemCompilationCompilationMonoJazzGermany2008Needs Vote0Original Dixieland Jazz Band 1917-181-1Darktown Strutters’ Ball 2:56309962Original Dixieland Jazz Band1-2Darktown Strutters’ Ball 3:02309962Original Dixieland Jazz Band1-3Indiana 3:33309962Original Dixieland Jazz Band1-4Indiana 3:19309962Original Dixieland Jazz Band1-5Livery Stable Blues 3:08309962Original Dixieland Jazz Band1-6Dixie Jass Band One-Step 2:37309962Original Dixieland Jazz Band1-7Barnyard Blues 3:56309962Original Dixieland Jazz Band1-8Ostrich Walk 3:09309962Original Dixieland Jazz Band1-9Tiger Rag 3:09309962Original Dixieland Jazz Band1-10At The Jazz Band Ball 2:45309962Original Dixieland Jazz Band1-11Look At 'Em Doing It Now2:52309962Original Dixieland Jazz Band1-12Reisenweber Rag 2:47309962Original Dixieland Jazz Band1-13Oriental Jazz 3:29309962Original Dixieland Jazz Band1-14At The Jazz Band Ball 2:41309962Original Dixieland Jazz Band1-15Ostrich Walk 3:16309962Original Dixieland Jazz Band1-16Skeleton Jangle 2:53309962Original Dixieland Jazz Band1-17Tiger Rag 3:07309962Original Dixieland Jazz Band1-18Bluin’ The Blues 3:22309962Original Dixieland Jazz Band1-19Fidgety Feet (War Cloud)2:44309962Original Dixieland Jazz Band1-20Sensation Rag 2:59309962Original Dixieland Jazz Band1-21Mournin’ Blues 2:56309962Original Dixieland Jazz Band1-22Clarinet Marmalade (Blues)2:49309962Original Dixieland Jazz Band1-23Lazy Daddy 3:21309962Original Dixieland Jazz BandOriginal Dixieland Jazz Band 1919-212-1Barnyard Blues (Livery Stable Blues)3:01309962Original Dixieland Jazz Band2-2At The Jazz Band Ball 2:45309962Original Dixieland Jazz Band2-3Ostrich Walk 3:14309962Original Dixieland Jazz Band2-4Sensation Rag 2:55309962Original Dixieland Jazz Band2-5Look At 'Em Doing It 3:38309962Original Dixieland Jazz Band2-6Tiger Rag 3:38309962Original Dixieland Jazz Band2-7Satanic Blues 3:49309962Original Dixieland Jazz Band2-8'Lasses Candy 4:06309962Original Dixieland Jazz Band2-9My Baby's Arms 3:58309962Original Dixieland Jazz Band2-10Tell Me 3:53309962Original Dixieland Jazz Band2-11I've Got My Captain Working For Me 3:45309962Original Dixieland Jazz Band2-12I'm Forever Blowing Bubbles4:14309962Original Dixieland Jazz Band2-13Mammy O'Mine 3:41309962Original Dixieland Jazz Band2-14I've Lost My Heart In Dixieland 3:55309962Original Dixieland Jazz Band2-15Sphinx 3:13309962Original Dixieland Jazz Band2-16Alice Blue Gown4:03309962Original Dixieland Jazz Band2-17Soudan 3:36309962Original Dixieland Jazz Band2-18Margie 3:08309962Original Dixieland Jazz Band2-19Palesteena 2:39309962Original Dixieland Jazz Band2-20Broadway Rose (Intro: Dolly I Love You) 3:18309962Original Dixieland Jazz Band2-21Sweet Mamma (Papa's Getting Mad) (Intro: Strut, Miss Lizzie) 3:22309962Original Dixieland Jazz BandKing Oliver 19233.1Just Gone 2:41309966King Oliver's Creole Jazz Band3.2Canal Street Blues 2:33309966King Oliver's Creole Jazz Band3.3Mandy Lee Blues 2:12309966King Oliver's Creole Jazz Band3.4I'm Going Away To Wear You Off My Mind 2:53309966King Oliver's Creole Jazz Band3.5Chimes Blues 2:52309966King Oliver's Creole Jazz Band3.6Weather Bird Rag 2:42309966King Oliver's Creole Jazz Band3.7Dipper Mouth Blues 2:33309966King Oliver's Creole Jazz Band3.8Froggie Moore 3:05309966King Oliver's Creole Jazz Band3.9Snake Rag 3:01309966King Oliver's Creole Jazz Band3.10Snake Rag 3:18309966King Oliver's Creole Jazz Band3.11Sweet Lovin' Man 2:44309966King Oliver's Creole Jazz Band3.12High Society Rag 2:58309966King Oliver's Creole Jazz Band3.13Sobbin' Blues 3:11309966King Oliver's Creole Jazz Band3.14Where Did You Stay Last Night? 2:32309966King Oliver's Creole Jazz Band3.15Dipper Mouth Blues 2:18309966King Oliver's Creole Jazz Band3.16Jazzin' Babies' Blues 3:02309966King Oliver's Creole Jazz Band3.17Alligator Hop2:24309966King Oliver's Creole Jazz Band3.18Zulu's Ball 2:36309966King Oliver's Creole Jazz Band3.19Workingman Blues 2:14309966King Oliver's Creole Jazz Band3.20Krooked Blues 2:52309966King Oliver's Creole Jazz BandKing Oliver 1923-244.1Chattanooga Stomp 3:01326832King Oliver's Jazz Band4.2London Cafe Blues 2:46326832King Oliver's Jazz Band4.3Camp Meeting Blues 2:59326832King Oliver's Jazz Band4.4New Orleans Stomp 2:57326832King Oliver's Jazz Band4.5Buddy's Habit 3:05326832King Oliver's Jazz Band4.6Tears 3:12326832King Oliver's Jazz Band4.7I Ain't Gonna Tell Nobody 3:15326832King Oliver's Jazz Band4.8Room Rent Blues 2:51326832King Oliver's Jazz Band4.9Riverside Blues 2:53326832King Oliver's Jazz Band4.10Sweet Baby Doll 2:55326832King Oliver's Jazz Band4.11Working Man Blues 2:58326832King Oliver's Jazz Band4.12Mabel's Dream 2:51326832King Oliver's Jazz Band4.13Mabel's Dream 2:48326832King Oliver's Jazz Band4.14Mabel's Dream 2:48326832King Oliver's Jazz Band4.15The Southern Stomps 2:44326832King Oliver's Jazz Band4.16The Southern Stomps 2:54326832King Oliver's Jazz Band4.17Riverside Blues 2:54326832King Oliver's Jazz Band4.18King Porter 2:34309984King Oliver/309976Jelly Roll Morton4.19Tom Cat 2:49309984King Oliver/309976Jelly Roll Morton4.20Kiss Me Sweet 3:16326816Butterbeans & SusieButterbeans And Susie4.21Construction Gang 3:00326816Butterbeans & SusieButterbeans And SusieNew Orleans Rhythm Kings 1922-235.1Eccentric 2:51339913Friar's Society OrchestraFriars Society Orchestra5.2Farewell Blues 2:35339913Friar's Society OrchestraFriars Society Orchestra5.3Discontented Blues 2:37339913Friar's Society OrchestraFriars Society Orchestra5.4Bugle Call Blues 2:17339913Friar's Society OrchestraFriars Society Orchestra5.5Panama 2:35339913Friar's Society OrchestraFriars Society Orchestra5.6Tiger Rag 2:25339913Friar's Society OrchestraFriars Society Orchestra5.7Livery Stable Blues 2:26339913Friar's Society OrchestraFriars Society Orchestra5.8Oriental 2:34339913Friar's Society OrchestraFriars Society Orchestra5.9Sweet Lovin' Man 2:30253861New Orleans Rhythm Kings5.10Sweet Lovin' Man 2:29253861New Orleans Rhythm Kings5.11That's A Plenty 2:30253861New Orleans Rhythm Kings5.12That's A Plenty 2:30253861New Orleans Rhythm Kings5.13Shim-Me-Sha-Wabble 2:52253861New Orleans Rhythm Kings5.14Shim-Me-Sha-Wabble 2:57253861New Orleans Rhythm Kings5.15Weary Blues2:37253861New Orleans Rhythm Kings5.16Da Da Strain 2:23253861New Orleans Rhythm Kings5.17Wolverine Blues 2:59253861New Orleans Rhythm Kings5.18Wolverine Blues 2:58253861New Orleans Rhythm Kings5.19Maple Leaf Rag 2:28253861New Orleans Rhythm Kings5.20Tin Roof Blues 3:01253861New Orleans Rhythm Kings5.21Tin Roof Blues 2:56253861New Orleans Rhythm Kings5.22Tin Roof Blues 2:52253861New Orleans Rhythm KingsNew Orleans Rhythm Kings 1923-256.1Sobbin' Blues2:45253861New Orleans Rhythm Kings6.2Marguerite 3:06253861New Orleans Rhythm Kings6.3Angry 2:52253861New Orleans Rhythm Kings6.4Angry 2:50253861New Orleans Rhythm Kings6.5Clarinet Marmalade2:31253861New Orleans Rhythm Kings6.6Clarinet Marmalade2:38253861New Orleans Rhythm Kings6.7Mr. Jelly Lord 3:09253861New Orleans Rhythm Kings6.8Mr. Jelly Lord 3:02253861New Orleans Rhythm Kings6.9London Blues 2:47253861New Orleans Rhythm Kings6.10Milenberg Joys 2:48253861New Orleans Rhythm Kings6.11Milenberg Joys 2:53253861New Orleans Rhythm Kings6.12Mad (Cause You Treat Me This Way)2:36253861New Orleans Rhythm Kings6.13Baby 3:03253861New Orleans Rhythm Kings6.14I Never Knew What A Gal Could Do 3:02253861New Orleans Rhythm Kings6.15She’s Crying For Me Blues 2:52253861New Orleans Rhythm Kings6.16Golden Leaf Strut (Milenberg Joys)2:53253861New Orleans Rhythm Kings6.17She's Cryin' For Me 2:46253861New Orleans Rhythm Kings6.18She's Cryin' For Me 2:46253861New Orleans Rhythm Kings6.19Everybody Loves Somebody Blues (But Nobody Loves Me)2:57253861New Orleans Rhythm Kings6.20Everybody Loves Somebody Blues (But Nobody Loves Me)2:53253861New Orleans Rhythm KingsNew Orleans Jazz - 1924-257.1Panama 2:452608661Johnny De Droit And His New Orleans Orchestra7.2Nobody Knows Blues 3:042608661Johnny De Droit And His New Orleans Orchestra7.3New Orleans Blues 3:032608661Johnny De Droit And His New Orleans Orchestra7.4The Swing 3:032608661Johnny De Droit And His New Orleans Orchestra7.5Brown Eyes 2:492608661Johnny De Droit And His New Orleans Orchestra7.6Number Two Blues 3:022608661Johnny De Droit And His New Orleans Orchestra7.7Frankie And Johnny 2:454652608Fate Marable's Society Syncopators7.8Pianoflage 3:144652608Fate Marable's Society Syncopators7.9Sensation Rag 2:523912214The Original Crescent City JazzersOriginal Crescent City Jazzers7.10Christine 3:073912214The Original Crescent City JazzersOriginal Crescent City Jazzers7.11I Wonder Where My Easy Rider’s Riding Now 2:413725288Johnny Bayersdorffer And His Jazzola Novelty Orchestra7.12The Waffle Man’s Call 3:003725288Johnny Bayersdorffer And His Jazzola Novelty Orchestra7.13Pussy Cat Rag 3:002660494The Halfway House OrchestraHalfway House Orchestra7.14Barataria 2:462660494The Halfway House OrchestraHalfway House Orchestra7.15I’m Afraid To Care For You 3:116205671John Tobin's Midnight SerenadersTobin’s Midnight Serenaders7.16That's A Plenty 2:292955475Anthony Parenti And His Famous Melody Boys7.17Cabaret Echoes 3:072955475Anthony Parenti And His Famous Melody Boys7.18Dirty Rag 3:07326828Brownlee's Orchestra Of New Orleans7.19Original Tuxedo Rag 2:37319531Original Tuxedo Jazz Orchestra7.20Careless Love 3:06319531Original Tuxedo Jazz Orchestra7.21Black Rag 2:32319531Original Tuxedo Jazz Orchestra7.22Dizzy Lizzie 3:212955475Anthony Parenti And His Famous Melody Boys7.23French Market Blues 3:142955475Anthony Parenti And His Famous Melody BoysJelly Roll Morton Groups - 1923-268.1Big Fat Ham 3:071338829Jelly Roll Morton And His Orchestra8.2Big Fat Ham 2:551338829Jelly Roll Morton And His Orchestra8.3Muddy Water Blues 3:021338829Jelly Roll Morton And His Orchestra8.4Some Day Sweetheart 3:083033186Jelly Roll Morton's Jazz Band8.5London Blues 3:153033186Jelly Roll Morton's Jazz Band8.6Mr. Jelly Roll 2:552748823Jelly Roll Morton's Steamboat Four8.7Steady Roll 2:401770973Jelly Roll Morton's Stomp Kings8.8Fish Tail Blues 3:082672403Jelly Roll Morton's Kings Of Jazz8.9High Society 3:232672403Jelly Roll Morton's Kings Of Jazz8.10Weary Blues 2:512672403Jelly Roll Morton's Kings Of Jazz8.11Tiger Rag 3:242672403Jelly Roll Morton's Kings Of Jazz8.12My Gal 2:372760943Jelly Roll Morton And His Jazz Trio8.13Wolverine Blues 2:441348279Volly De FautVoltaire De Faut8.14Mr. Jelly Lord 2:512672404Jelly Roll Morton's Incomparables8.15Soap Suds 3:013742935St. Louis Levee Band8.16Black Bottom Stomp 3:12317883Jelly Roll Morton's Red Hot Peppers8.17Smoke House Blues 3:23317883Jelly Roll Morton's Red Hot Peppers8.18The Chant 3:23317883Jelly Roll Morton's Red Hot Peppers8.19The Chant 3:11317883Jelly Roll Morton's Red Hot Peppers8.20Sidewalk Blues 3:32317883Jelly Roll Morton's Red Hot Peppers8.21Sidewalk Blues 3:29317883Jelly Roll Morton's Red Hot Peppers8.22Dead Man Blues 3:14317883Jelly Roll Morton's Red Hot Peppers8.23Dead Man Blues 3:23317883Jelly Roll Morton's Red Hot Peppers8.24Steamboat Stomp 3:06317883Jelly Roll Morton's Red Hot PeppersJelly Roll Morton - 1926-279.1Someday Sweetheart 3:33317883Jelly Roll Morton's Red Hot Peppers9.2Someday Sweetheart 3:33317883Jelly Roll Morton's Red Hot Peppers9.3Grandpa's Spells2:57317883Jelly Roll Morton's Red Hot Peppers9.4Grandpa's Spells2:56317883Jelly Roll Morton's Red Hot Peppers9.5Original Jelly Roll Blues 3:03317883Jelly Roll Morton's Red Hot Peppers9.6Original Jelly Roll Blues 3:09317883Jelly Roll Morton's Red Hot Peppers9.7Dr. Jazz 3:26317883Jelly Roll Morton's Red Hot Peppers9.8Cannon Ball Blues 2:56317883Jelly Roll Morton's Red Hot Peppers9.9Cannon Ball Blues 3:34317883Jelly Roll Morton's Red Hot Peppers9.10Hyena Stomp 3:06317883Jelly Roll Morton's Red Hot Peppers9.11Hyena Stomp 3:10317883Jelly Roll Morton's Red Hot Peppers9.12Billy Goat Stomp 3:29317883Jelly Roll Morton's Red Hot Peppers9.13Billy Goat Stomp 3:30317883Jelly Roll Morton's Red Hot Peppers9.14Wild Man Blues 3:04317883Jelly Roll Morton's Red Hot Peppers9.15Wild Man Blues 3:14317883Jelly Roll Morton's Red Hot Peppers9.16Jungle Blues 3:26317883Jelly Roll Morton's Red Hot Peppers9.17Jungle Blues 3:30317883Jelly Roll Morton's Red Hot Peppers9.18Beale Street Blues 3:18317883Jelly Roll Morton's Red Hot Peppers9.19Beale Street Blues 3:11317883Jelly Roll Morton's Red Hot Peppers9.20The Pearls 3:25317883Jelly Roll Morton's Red Hot Peppers9.21The Pearls 3:23317883Jelly Roll Morton's Red Hot PeppersJelly Roll Morton - 1928-2910.1Midnight Mama 2:452841656Levee Serenaders10.2Mr. Jelly Lord 2:582841656Levee Serenaders10.3Georgia Swing 2:301338829Jelly Roll Morton And His Orchestra10.4Kansas City Stomps 2:521338829Jelly Roll Morton And His Orchestra10.5Shoe Shiner's Drag 3:191338829Jelly Roll Morton And His Orchestra10.6Boogaboo 3:201338829Jelly Roll Morton And His Orchestra10.7Shreveport 3:161338829Jelly Roll Morton And His Orchestra10.8Shreveport 3:141338829Jelly Roll Morton And His Orchestra10.9Mournful Serenade 3:261338829Jelly Roll Morton And His Orchestra10.10Red Hot Pepper 3:091338829Jelly Roll Morton And His Orchestra10.11Deep Creek3:331338829Jelly Roll Morton And His Orchestra10.12Burnin' The Iceberg 3:041338829Jelly Roll Morton And His Orchestra10.13Burnin' The Iceberg 3:021338829Jelly Roll Morton And His Orchestra10.14Courthouse Bump 3:021338829Jelly Roll Morton And His Orchestra10.15Courthouse Bump 3:001338829Jelly Roll Morton And His Orchestra10.16Pretty Lil 1338829Jelly Roll Morton And His Orchestra10.17Pretty Lil 3:131338829Jelly Roll Morton And His Orchestra10.18Sweet Aneta Mine 2:441338829Jelly Roll Morton And His Orchestra10.19Sweet Aneta Mine 2:451338829Jelly Roll Morton And His Orchestra10.20New Orleans Bump 3:311338829Jelly Roll Morton And His Orchestra10.21New Orleans Bump 3:221338829Jelly Roll Morton And His Orchestra10.22Down My Way 3:181338829Jelly Roll Morton And His Orchestra10.23Try Me Out 2:311338829Jelly Roll Morton And His Orchestra10.24Tank Town Bump 3:111338829Jelly Roll Morton And His Orchestra10.25Tank Town Bump 3:081338829Jelly Roll Morton And His OrchestraLouis Armstrong - 1924 (Vol. 1)11.1Manda 3:16317895Fletcher Henderson And His Orchestra11.2Go Long, Mule 3:08317895Fletcher Henderson And His Orchestra11.3Tell Me Dreamy Eyes 3:09317895Fletcher Henderson And His Orchestra11.4My Rose Mary 2:52317895Fletcher Henderson And His Orchestra11.5Don't Forget, You'll Regret 3:15317895Fletcher Henderson And His Orchestra11.6Shanghai Shuffle 3:24317895Fletcher Henderson And His Orchestra11.7Texas Moaner Blues 3:09326797Clarence Williams' Blue Five11.8Early In The Morning 3:02326797Clarence Williams' Blue Five11.9You've Got The Right Key, But The Wrong Keyhole 3:23326797Clarence Williams' Blue Five11.10Words 3:06317895Fletcher Henderson And His Orchestra11.11Words 3:04317895Fletcher Henderson And His Orchestra11.12Copenhagen 3:02317895Fletcher Henderson And His Orchestra11.13Copenhagen 3:01317895Fletcher Henderson And His Orchestra11.14Of All The Wrongs You've Done 2:56326797Clarence Williams' Blue Five11.15Everybody Loves My Baby 2:37326797Clarence Williams' Blue Five11.16Everybody Loves My Baby 2:431123587Josephine BeattyAcc. By313108The Red Onion Jazz BabiesRed Onion Jazz Babies11.17Shanghai Shuffle 2:53317895Fletcher Henderson And His Orchestra11.18Naughty Man3:18317895Fletcher Henderson And His Orchestra11.19Naughty Man3:22317895Fletcher Henderson And His Orchestra11.20Texas Moaner Blues 2:581123587Josephine BeattyAcc. By 313108the Red Onion Jazz BabiesRed Onion Jazz Babies11.21Of All The Wrongs You've Done To Me 2:401123587Josephine BeattyAcc. By313108The Red Onion Jazz BabiesRed Onion Jazz Babies11.22One Of These Days 2:55307323Fletcher Henderson11.23My Dream Man 3:03307323Fletcher Henderson11.24My Dream Man 3:01307323Fletcher HendersonLouis Armstrong - 1924 (Vol. 2)12.1The Meanest Kind Of Blues 3:08307323Fletcher Henderson12.2Naughty Man 3:03307323Fletcher Henderson12.3How Come You Do Me 3:10307323Fletcher Henderson12.4How Come You Do Me 3:06307323Fletcher Henderson12.5How Come You Do Me 2:54307323Fletcher Henderson12.6Araby 3:10307323Fletcher Henderson12.7Everybody Loves My Baby 3:03307323Fletcher Henderson12.8Everybody Loves My Baby 3:09307323Fletcher Henderson12.9Naughty Man 2:44307323Fletcher Henderson12.10Papa, Mama's All Alone 2:354250108Margaret Johnson (5)12.11Changeable Daddy Of Mine 2:464250108Margaret Johnson (5)12.12Terrible Blues2:48313108The Red Onion Jazz BabiesRed Onion Jazz Babies12.13Santa Claus Blues 2:39313108The Red Onion Jazz BabiesRed Onion Jazz Babies12.14Baby, I Can't Use You No More 2:59307399Sippie Wallace12.15Trouble Everywhere I Roam 2:56307399Sippie Wallace12.16Prince Of Wails 3:12317895Fletcher Henderson And His Orchestra12.17Prince Of Wails 3:10317895Fletcher Henderson And His Orchestra12.18Prince Of Wails 3:10317895Fletcher Henderson And His Orchestra12.19Mandy Make Up Your Mind 3:13317895Fletcher Henderson And His Orchestra12.20Mandy Make Up Your Mind 3:12317895Fletcher Henderson And His Orchestra12.21Mandy Make Up Your Mind 3:13326797Clarence Williams' Blue Five12.22I'm A Little Blackbird 3:21326797Clarence Williams' Blue Five12.23Nobody Knows The Way I Feel 'Dis Mornin' 2:47313108The Red Onion Jazz BabiesRed Onion Jazz Babies/1123587Josephine Beatty12.24Early Every Morn' 2:50313108The Red Onion Jazz BabiesRed Onion Jazz Babies/1123587Josephine Beatty12.25Cake Walkin' Babies From Home 3:05313108The Red Onion Jazz BabiesRed Onion Jazz Babies/1123587Josephine BeattyLouis Armstrong 1925 In New York, Vol. 113.1Cake Walkin' Babies From Home 3:01307434Eva TaylorAcc. By326797Clarence Williams' Blue Five13.2Pickin' On Your Baby 3:23307434Eva TaylorAcc. By326797Clarence Williams' Blue Five13.3I'll See You In My Dreams 2:59317895Fletcher Henderson And His Orchestra13.4Why Couldn't It Be Poor Little Me? 3:06317895Fletcher Henderson And His Orchestra13.5I'll See You In My Dreams 3:09317895Fletcher Henderson And His Orchestra13.6I'll See You In My Dreams 3:08317895Fletcher Henderson And His Orchestra13.7Why Couldn't It Be Poor Little Me? 3:04317895Fletcher Henderson And His Orchestra13.8Why Couldn't It Be Poor Little Me? 3:04317895Fletcher Henderson And His Orchestra13.9Why Couldn't It Be Poor Little Me? 3:04317895Fletcher Henderson And His Orchestra13.10Bye And Bye 3:06317895Fletcher Henderson And His Orchestra13.11Play Me Slow 3:13317895Fletcher Henderson And His Orchestra13.12Play Me Slow 3:17317895Fletcher Henderson And His Orchestra13.13Alabamy Bound 3:15317895Fletcher Henderson And His Orchestra13.14Alabamy Bound 3:15317895Fletcher Henderson And His Orchestra13.15Alabamy Bound 3:08317895Fletcher Henderson And His Orchestra13.16Swanee Butterfly 3:18317895Fletcher Henderson And His Orchestra13.17Swanee Butterfly 3:15317895Fletcher Henderson And His Orchestra13.18Swanee Butterfly 3:14317895Fletcher Henderson And His Orchestra13.19Poplar Street Blues 3:07317895Fletcher Henderson And His Orchestra13.20Twelfth Street Blues3:02317895Fletcher Henderson And His Orchestra13.21Me Neenyah 3:03317895Fletcher Henderson And His Orchestra13.22Cast Away 3:02326797Clarence Williams' Blue Five13.23Papa De-Da-Da 3:04326797Clarence Williams' Blue FiveLouis Armstrong 1925 In New York, Vol. 214.1Memphis Bound 3:01317895Fletcher Henderson And His Orchestra14.2When You Do What You Do 3:06317895Fletcher Henderson And His Orchestra14.3I'll Take Her Back If She Wants To Come Back 3:08317895Fletcher Henderson And His Orchestra14.4Money Blues 3:04317895Fletcher Henderson And His Orchestra14.5Money Blues 3:02317895Fletcher Henderson And His Orchestra14.6Sugarfoot Stomp2:51317895Fletcher Henderson And His Orchestra14.7What-Cha-Call-'Em Blues 2:54317895Fletcher Henderson And His Orchestra14.8I Miss My Swiss3:013165609Southern Serenaders14.9Alone At Last 3:103165609Southern Serenaders14.10Just Wait 'Til You See My Baby Do The Charleston 2:45326797Clarence Williams' Blue Five14.11Livin' High Sometimes 2:28326797Clarence Williams' Blue Five14.12Coal Cart Blues 2:52326797Clarence Williams' Blue Five14.13Santa Claus Blues 2:36326797Clarence Williams' Blue Five14.14Santa Claus Blues 3:201194996Clarence Williams' Trio14.15TNT 2:53317895Fletcher Henderson And His Orchestra14.16Carolina Stomp 3:14317895Fletcher Henderson And His Orchestra14.17Squeeze Me 3:06326797Clarence Williams' Blue Five14.18You Can't Shush Katie 3:04326797Clarence Williams' Blue Five14.19Lucy Long 2:491194998Perry Bradford Jazz Phools14.20I Ain't Gonna Play No Second Fiddle 2:361194998Perry Bradford Jazz PhoolsThe Wolverine Orchestra / The Sioux City Six / Bix Beiderbecke And His Rhythm Jugglers15.1Fidgety Feet 2:32338451The Wolverine Orchestra15.2Jazz Me Blues 2:55338451The Wolverine Orchestra15.3Oh Baby 2:23338451The Wolverine Orchestra15.4Copenhagen 2:35338451The Wolverine Orchestra15.5Riverboat Shuffle 2:37338451The Wolverine Orchestra15.6Susie (Of The Islands) 2:42338451The Wolverine Orchestra15.7Susie (Of The Islands) 2:44338451The Wolverine Orchestra15.8I Need Some Pettin' 2:58338451The Wolverine Orchestra15.9Royal Garden Blues 3:02338451The Wolverine Orchestra15.10Tiger Rag 2:43338451The Wolverine Orchestra15.11Sensation 2:44338451The Wolverine Orchestra15.12Lazy Daddy 2:48338451The Wolverine Orchestra15.13Lazy Daddy 2:45338451The Wolverine Orchestra15.14Tia Juana 2:59338451The Wolverine Orchestra15.15Big Boy 2:52338451The Wolverine Orchestra15.16Flock O'Blues 2:441451490Sioux City SixThe Sioux City Six15.17I'm Glad 3:121451490Sioux City SixThe Sioux City Six15.18Toddlin' Blues 2:47338447Bix And His Rhythm JugglersBix Beiderbecke And His Rhythm Jugglers15.19Davenport Blues 2:52338447Bix And His Rhythm JugglersBix Beiderbecke And His Rhythm Jugglers15.20When My Sugar Walks Down The Street 2:50338451The Wolverine Orchestra15.21Prince Of Wails 3:08338451The Wolverine OrchestraThe Bucktown Five / Stomp Six / Hitch's Happy Harmonists16.1Steady Roll Blues 2:403580978The Bucktown Five16.2Steady Roll Blues 2:333580978The Bucktown Five16.3Mobile Blues 2:193580978The Bucktown Five16.4Really A Pain (A Stomp) 2:443580978The Bucktown Five16.5Really A Pain (A Stomp) 2:443580978The Bucktown Five16.6Chicago Blues 2:303580978The Bucktown Five16.7Hot Mittens 2:483580978The Bucktown Five16.8Hot Mittens 2:493580978The Bucktown Five16.9Buddy's Habits 2:243580978The Bucktown Five16.10Buddy's Habits 2:213580978The Bucktown Five16.11Someday, Sweetheart 3:033580978The Bucktown Five16.12Why Can't It Be Poor Little Me 2:402606286The Stomp Six16.13Everybody Loves My Baby 2:592606286The Stomp Six16.14Cruel Woman2:294051640Hitch's Happy Harmonists16.15Home Brew Blues 2:184051640Hitch's Happy Harmonists16.16Steady Steppin' Papa 2:364051640Hitch's Happy Harmonists16.17Baptistown Crawl 2:474051640Hitch's Happy Harmonists16.18Ethiopian Nightmare 2:304051640Hitch's Happy Harmonists16.19Cataract Rag Blues 2:254051640Hitch's Happy Harmonists16.20Nightingale Rag Blues 2:214051640Hitch's Happy Harmonists16.21Washboard Blues 2:394051640Hitch's Happy Harmonists16.22Boneyard Shuffle 3:044051640Hitch's Happy HarmonistsKansas City Jazz17.1Elephant's Wobble 3:09317903Bennie Moten's Kansas City Orchestra17.2Crawdad Blues 2:52317903Bennie Moten's Kansas City Orchestra17.3South 2:47317903Bennie Moten's Kansas City Orchestra17.4Vine Street Blues 3:03317903Bennie Moten's Kansas City Orchestra17.5Tulsa Blues 2:52317903Bennie Moten's Kansas City Orchestra17.6Goofy Dust 2:40317903Bennie Moten's Kansas City Orchestra17.7Baby Dear 2:54317903Bennie Moten's Kansas City Orchestra17.8She's Sweeter Than Sugar 2:34317903Bennie Moten's Kansas City Orchestra17.9South Street Blues 2:45317903Bennie Moten's Kansas City Orchestra17.10Sister Honky Tonk 2:38317903Bennie Moten's Kansas City Orchestra17.11As I Like It 2:52317903Bennie Moten's Kansas City Orchestra17.12Things Seem So Blue To Me 3:12317903Bennie Moten's Kansas City Orchestra17.1318th Street Strut 3:01317903Bennie Moten's Kansas City Orchestra17.14Kater Street Rag 2:36317903Bennie Moten's Kansas City Orchestra17.15Midnight Stomp 2:452696803Jeanette's Synco JazzersJeanette James And Her Synco Jazzers17.16Downhearted Mama 2:402696803Jeanette's Synco JazzersJeanette James And Her Synco Jazzers17.17The Bumps 2:342696803Jeanette's Synco JazzersJeanette James And Her Synco Jazzers17.18What's That Thing? 2:442696803Jeanette's Synco JazzersJeanette James And Her Synco Jazzers17.19Down In Gallion3:153562900John Williams' Synco Jazzers17.20Goose Grease 3:183562900John Williams' Synco Jazzers17.21Pee Wee Blues 3:293562900John Williams' Synco Jazzers17.22Now Cut Loose 2:503562900John Williams' Synco JazzersBennie Moten - 1926-2718.1Thick Lip Stomp 2:53317903Bennie Moten's Kansas City Orchestra18.2Thick Lip Stomp 2:46317903Bennie Moten's Kansas City Orchestra18.3Harmony Blues 3:36317903Bennie Moten's Kansas City Orchestra18.4Harmony Blues 3:12317903Bennie Moten's Kansas City Orchestra18.5Kansas City Shuffle 2:53317903Bennie Moten's Kansas City Orchestra18.6Yazoo Blues 2:48317903Bennie Moten's Kansas City Orchestra18.7Yazoo Blues 2:47317903Bennie Moten's Kansas City Orchestra18.8White Lightning Blues 3:36317903Bennie Moten's Kansas City Orchestra18.9Muscle Shoals Blues 3:27317903Bennie Moten's Kansas City Orchestra18.10Midnight Mama 3:01317903Bennie Moten's Kansas City Orchestra18.11Missouri Wobble 3:10317903Bennie Moten's Kansas City Orchestra18.12Missouri Wobble 3:11317903Bennie Moten's Kansas City Orchestra18.13Sugar 2:51317903Bennie Moten's Kansas City Orchestra18.14Dear Heart 3:14317903Bennie Moten's Kansas City Orchestra18.15The New Tulsa Blues 3:07317903Bennie Moten's Kansas City Orchestra18.16Baby Dear 3:04317903Bennie Moten's Kansas City Orchestra18.17Twelfth Street Rag 3:24317903Bennie Moten's Kansas City Orchestra18.18Twelfth Street Rag 3:23317903Bennie Moten's Kansas City Orchestra18.19Pass Out Lightly 3:14317903Bennie Moten's Kansas City Orchestra18.20Pass Out Lightly 3:12317903Bennie Moten's Kansas City Orchestra18.21Ding Dong Blues 3:14317903Bennie Moten's Kansas City Orchestra18.22Ding Dong Blues 3:17317903Bennie Moten's Kansas City Orchestra18.23Moten Stomp 3:02317903Bennie Moten's Kansas City OrchestraSidney Bechet With Clarence Williams - 192319.1Wild Cat Blues 3:01326797Clarence Williams' Blue Five19.2Kansas City Man Blues 2:59326797Clarence Williams' Blue Five19.3Blind Man Blues 3:10307459Mamie Smith19.4Atlanta Blues 2:56307459Mamie Smith19.5Lady Luck Blues 3:13307459Mamie Smith19.6Kansas City Man Blues 3:21307459Mamie Smith19.7Oh! Daddy Blues 2:41307434Eva TaylorAnd326797Clarence Williams' Blue Five19.8I've Got The "Yes We Have No Bananas" Blues 2:48307434Eva TaylorAnd307393Clarence Williams19.9Irresistible Blues 3:17307434Eva Taylor19.10Jazzin' Babies Blues 3:13307434Eva Taylor19.11'Tain't Nobody's Bus'ness If I Do 2:51326797Clarence Williams' Blue Five19.12New Orleans Hop Scop Blues 2:55326797Clarence Williams' Blue Five19.13Oh! Daddy Blues 3:11326797Clarence Williams' Blue Five19.14Down On The Levee Blues 3:322183524Rosetta Crawford19.15Lonesome Woman Blues 3:022183524Rosetta Crawford19.16Graveyard Dream Blues 3:11129089Sara Martin19.17A Green Gal Can't Catch On 3:41129089Sara Martin19.18If I Let You Get Away With It 2:554250108Margaret Johnson (5)19.19E Flat Blues 3:034250108Margaret Johnson (5)19.20Old Fashioned Love 3:06307434Eva Taylor-2187340Lawrence Lomax19.21Open Your Heart 3:04307434Eva Taylor-2187340Lawrence Lomax19.22Shreveport Blues 3:01326797Clarence Williams' Blue Five19.23Old Fashioned Love 3:11326797Clarence Williams' Blue Five19.24House Rent Blues 2:58326797Clarence Williams' Blue Five19.25Mean Blues 2:58326797Clarence Williams' Blue FiveAdrian Rollini Groups - 1924-2720.1Mean Blues 3:012915875Varsity Eight20.2Say It With A Ukelele 3:012915875Varsity Eight20.3Doodle Doo Doo 3:002915875Varsity Eight20.4San 3:002915875Varsity Eight20.5Them Ramblin' Blues 3:252840786The Little Ramblers20.6Arkansas Blues 2:482840786The Little Ramblers20.7Copenhagen 2:422915875Varsity Eight20.8I'm Satisfied Beside That Sweetie O'Mine 2:572915875Varsity Eight20.9Those Panama Mamas 2:572840786The Little Ramblers20.10Prince Of Wails 3:012840786The Little Ramblers20.11Melancholy Lou 3:182840786The Little Ramblers20.12Deep Elm 3:072840786The Little Ramblers20.13I'm Gonna Hang Around My Sugar 2:502915875Varsity Eight20.14Milenberg Joys 2:572915875Varsity Eight20.15I Wish I Could Shimmy Like My Sister Kate 3:053162869University Six20.16Beale Street Blues 3:003162869University Six20.17Play It, Red 3:252840786The Little Ramblers20.18Swamp Blues 3:082840786The Little Ramblers20.19Clementine (from New Orleans) 2:592915875Varsity Eight20.20Cornfed! 3:012386617Ted Wallace & His OrchestraTed Wallace And His Orchestra20.21Buffalo Rhythm 2:482386617Ted Wallace & His OrchestraTed Wallace And His Orchestra20.22Zulu Wail 2:492386617Ted Wallace & His OrchestraTed Wallace And His OrchestraDuke Ellington - 1924-2721.1Choo Choo (Gotta Hurry Home) 3:14284747Duke Ellington And His Orchestra21.2Rainy Nights 3:23284747Duke Ellington And His Orchestra21.3I’m Gonna Hang Around My Sugar 3:01284747Duke Ellington And His Orchestra21.4Trombone Blues 3:00284747Duke Ellington And His Orchestra21.5Georgia Grind2:42284747Duke Ellington And His Orchestra21.6Parlor Social Stomp 3:09284747Duke Ellington And His Orchestra21.7(You’ve Got Those) Wanna-Go-Back-Again Blues 3:19284747Duke Ellington And His Orchestra21.8If You Can’t Hold The Man You Love 3:21284747Duke Ellington And His Orchestra21.9Animal Crackers 3:08284747Duke Ellington And His Orchestra21.10Li'l Farina 3:01284747Duke Ellington And His Orchestra21.11East St. Louis Toodle-O 2:51284747Duke Ellington And His Orchestra21.12Birmingham Breakdown 2:44284747Duke Ellington And His Orchestra21.13Immigration Blues 2:57284747Duke Ellington And His Orchestra21.14The Creeper 2:50284747Duke Ellington And His Orchestra21.15The Creeper 2:47284747Duke Ellington And His Orchestra21.16If You Can't Hold The Man You Love 2:50284747Duke Ellington And His Orchestra21.17New Orleans Low-Down 2:59284747Duke Ellington And His Orchestra21.18Song Of The Cotton Field 3:00284747Duke Ellington And His Orchestra21.19Birmingham Breakdown 2:38284747Duke Ellington And His Orchestra21.20East St. Louis Toodle-Oo 2:59284747Duke Ellington And His OrchestraDuke Ellington - 192722.1East St. Louis Toodle-Oo 3:04284747Duke Ellington And His Orchestra22.2Hop Head 2:57284747Duke Ellington And His Orchestra22.3Down In Our Alley Blues 3:02284747Duke Ellington And His Orchestra22.4Black And Tan Fantasy 3:19284747Duke Ellington And His Orchestra22.5Soliloquy 3:05284747Duke Ellington And His Orchestra22.6Washington Wobble 2:48284747Duke Ellington And His Orchestra22.7Washington Wobble 2:49284747Duke Ellington And His Orchestra22.8Creole Love Call 3:11284747Duke Ellington And His Orchestra22.9The Blues I Love To Sing3:08284747Duke Ellington And His Orchestra22.10The Blues I Love To Sing3:12284747Duke Ellington And His Orchestra22.11Black And Tan Fantasy 3:08284747Duke Ellington And His Orchestra22.12Washington Wobble 2:59284747Duke Ellington And His Orchestra22.13What Can A Poor Fellow Do? 3:10284747Duke Ellington And His Orchestra22.14Black And Tan Fantasy 3:26284747Duke Ellington And His Orchestra22.15Black And Tan Fantasy 3:27284747Duke Ellington And His Orchestra22.16Black And Tan Fantasy 3:15284747Duke Ellington And His Orchestra22.17Chicago Stomp Down 2:45284747Duke Ellington And His Orchestra22.18Harlem River Quiver (Brown Berries) 2:45284747Duke Ellington And His Orchestra22.19Harlem River Quiver 2:45284747Duke Ellington And His Orchestra22.20Harlem River Quiver 2:47284747Duke Ellington And His Orchestra22.21East St. Louis Toodle-Oo 3:30284747Duke Ellington And His Orchestra22.22Blue Bubbles 3:11284747Duke Ellington And His Orchestra22.23Blue Bubbles 3:14284747Duke Ellington And His Orchestra22.24Red Hot Band2:48284747Duke Ellington And His Orchestra22.25Doin' The Frog 3:14284747Duke Ellington And His OrchestraClarence Williams - 192723.1Gravier Street Blues3:021514926Clarence Williams' Jazz Kings23.2Candy Lips2:461514926Clarence Williams' Jazz Kings23.3Nobody But2:413812178Clarence Williams' Washboard Four23.4Candy Lips 2:453812178Clarence Williams' Washboard Four23.5Cushion Foot Stomp 3:02373826Williams' Washboard Band23.6Cushion Foot Stomp 2:56373826Williams' Washboard Band23.7P.D.Q. Blues 2:57373826Williams' Washboard Band23.8P.D.Q. Blues 2:53373826Williams' Washboard Band23.9Cushion Foot Stomp 3:233812179Clarence Williams' Washboard Five23.10Take Your Black Bottom Outside 3:043812179Clarence Williams' Washboard Five23.11Black Snake Blues2:58326797Clarence Williams' Blue Five23.12Old Folks Shuffle2:52326797Clarence Williams' Blue Five23.13Baltimore 2:56326797Clarence Williams' Blue FiveClarence Williams’ Blue Five Orchestra23.14Baltimore 2:59326797Clarence Williams' Blue FiveClarence Williams’ Blue Five Orchestra23.15Take Your Black Bottom Outside 3:05326797Clarence Williams' Blue FiveClarence Williams’ Blue Five Orchestra23.16Slow River 3:163776041Clarence Williams And His Bottomland Orchestra23.17Slow River 3:153776041Clarence Williams And His Bottomland Orchestra23.18Zulu Wail 3:133776041Clarence Williams And His Bottomland Orchestra23.19Zulu Wail 3:043776041Clarence Williams And His Bottomland Orchestra23.20Shooting The Pistol2:43830229Clarence Williams And His OrchestraClarence Williams’ Orchestra23.21(I’m Goin' Back To) Bottomland 3:13830229Clarence Williams And His OrchestraClarence Williams’ Orchestra23.22(I’m Goin' Back To) Bottomland 3:11830229Clarence Williams And His OrchestraClarence Williams’ OrchestraClarence Williams - 1927-2824.1I'm Goin' Back To Bottomland 2:341514926Clarence Williams' Jazz Kings24.2You'll Long For Me 3:041514926Clarence Williams' Jazz Kings24.3Baby Won't You Please Come Home 2:51339886Clarence Williams' Blue Seven24.4Close Fit Blues 2:57339886Clarence Williams' Blue Seven24.5Shake 'Em Up 2:57830229Clarence Williams And His Orchestra24.6Jingles 2:50830229Clarence Williams And His Orchestra24.7Yama Yama Blues 2:533812178Clarence Williams' Washboard Four24.8Church Street Sobbin' Blues 3:043812178Clarence Williams' Washboard Four24.9Dreaming The Hours Away2:591514926Clarence Williams' Jazz Kings24.10Close Fit Blues 3:081514926Clarence Williams' Jazz Kings24.11Sweet Emmalina 3:011514926Clarence Williams' Jazz Kings24.12Any Time 3:231514926Clarence Williams' Jazz Kings24.13Sweet Emmaline 2:543812179Clarence Williams' Washboard Five24.14Log Cabin Blues 3:183812179Clarence Williams' Washboard Five24.15Organ Grinder Blues3:063812179Clarence Williams' Washboard Five24.16I’m Busy And You Can't Come In 2:513812179Clarence Williams' Washboard Five24.17Walk That Broad 3:033812179Clarence Williams' Washboard Five24.18Have You Ever Felt That Way? 3:143812179Clarence Williams' Washboard Five24.19Watchin' The Clock 3:10830229Clarence Williams And His OrchestraClarence Williams' Orchestra24.20Freeze Out 3:00830229Clarence Williams And His OrchestraClarence Williams' OrchestraOriginal Memphis Five Groups - 1921-25 25.1Aunt Hagar's Children's Blues 3:16925221Ladd's Black Aces25.2Shake It And Break It 3:02925221Ladd's Black Aces25.3I Wish I Could Shimmy Like My Sister Kate 2:56969363The Cotton Pickers25.4I Wish I Could Shimmy Like My Sister Kate 2:54969363The Cotton Pickers25.5Got To Cool My Doggies Now 3:04969363The Cotton Pickers25.6Got To Cool My Doggies Now 3:02969363The Cotton Pickers25.7Runnin‘ Wild 2:524684378The Southland Six25.8Ivy (Cling To Me) 2:584684378The Southland Six25.9Loose Feet 2:52342496The Original Memphis Five25.10Aggravatin’ Papa 2:51342496The Original Memphis Five25.11The Great White Way Blues2:54342496The Original Memphis Five25.12Four O’Clock Blues 2:56342496The Original Memphis Five25.13The Jelly Roll Blues 3:20342496The Original Memphis Five25.14A Bunch Of Blues 4:23342496The Original Memphis Five25.15It Ain’t Gonna Rain No Mo’ 2:54342496The Original Memphis Five25.16Red Hot Mamma 2:58342496The Original Memphis Five25.17How Come You Do Me Like You Do 3:00342496The Original Memphis Five25.18Meanest Blues 3:17342496The Original Memphis Five25.19Prince Of Wails 2:44969363The Cotton Pickers25.20Jimtown Blues 2:58969363The Cotton Pickers25.21Those Panama Mamas 2:53969363The Cotton Pickers25.22Down And Out Blues 2:58969363The Cotton Pickers25.23Indiana Stomp 2:56342496The Original Memphis FiveBennie Moten - 1928-2926.1Just Rite 2:43317903Bennie Moten's Kansas City Orchestra26.2Just Rite 2:43317903Bennie Moten's Kansas City Orchestra26.3Slow Motion2:40317903Bennie Moten's Kansas City Orchestra26.4Tough Breaks2:55317903Bennie Moten's Kansas City Orchestra26.5It's Hard To Laugh Or Smile2:45317903Bennie Moten's Kansas City Orchestra26.6Sad Man Blues 3:21317903Bennie Moten's Kansas City Orchestra26.7Kansas City Breakdown2:34317903Bennie Moten's Kansas City Orchestra26.8Trouble In Mind3:00317903Bennie Moten's Kansas City Orchestra26.9Hot Water Blues2:34317903Bennie Moten's Kansas City Orchestra26.10Get Low-Down Blues 3:00317903Bennie Moten's Kansas City Orchestra26.11She's No Trouble3:24317903Bennie Moten's Kansas City Orchestra26.12South2:35317903Bennie Moten's Kansas City Orchestra26.13Terrific Stomp2:44317903Bennie Moten's Kansas City Orchestra26.14Let's Get It3:20317903Bennie Moten's Kansas City Orchestra26.15Kansas City Squabble2:52317903Bennie Moten's Kansas City Orchestra26.16Rite Tite2:52317903Bennie Moten's Kansas City Orchestra26.17Moten's Blues3:07317903Bennie Moten's Kansas City Orchestra26.18That's What I'm Talking About3:07317903Bennie Moten's Kansas City Orchestra26.19That Certain Motion 3:07317903Bennie Moten's Kansas City Orchestra26.20It Won't Be Long 2:52317903Bennie Moten's Kansas City Orchestra26.21When Life Seems So Blue 2:55317903Bennie Moten's Kansas City Orchestra26.22Loose Like A Goose 2:58317903Bennie Moten's Kansas City Orchestra26.23Just Say It's Me 2:58317903Bennie Moten's Kansas City Orchestra26.24New Goofy Dust - Rag 2:39317903Bennie Moten's Kansas City OrchestraBennie Moten - 1929-3027.1Rumba Negro (Spanish Stomp) 2:53317903Bennie Moten's Kansas City Orchestra27.2The Jones Law Blues 3:11317903Bennie Moten's Kansas City Orchestra27.3 The Jones Law Blues 3:08317903Bennie Moten's Kansas City Orchestra27.4Band Box Shuffle 2:33317903Bennie Moten's Kansas City Orchestra27.5Small Black 3:09317903Bennie Moten's Kansas City Orchestra27.6Small Black 3:21317903Bennie Moten's Kansas City Orchestra27.7Every Day Blues (Yo Yo Blues) 3:09317903Bennie Moten's Kansas City Orchestra27.8Boot It 3:18317903Bennie Moten's Kansas City Orchestra27.9 Mary Lee 3:20317903Bennie Moten's Kansas City Orchestra27.10Rit-Dit-Ray2:50317903Bennie Moten's Kansas City Orchestra27.11Rit-Dit-Ray2:51317903Bennie Moten's Kansas City Orchestra27.12New Vine Street Blues 3:01317903Bennie Moten's Kansas City Orchestra27.13Sweethearts Of Yesterday 2:43317903Bennie Moten's Kansas City Orchestra27.14Won't You Be My Baby? 3:17317903Bennie Moten's Kansas City Orchestra27.15 I Wish I Could Be Blue 3:15317903Bennie Moten's Kansas City Orchestra27.16Oh! Eddie 2:59317903Bennie Moten's Kansas City Orchestra27.17That Too, Do 3:10317903Bennie Moten's Kansas City Orchestra27.18 That Too, Do 3:24317903Bennie Moten's Kansas City Orchestra27.19 Mack's Rhythm 3:05317903Bennie Moten's Kansas City Orchestra27.20You Made Me Happy 3:25317903Bennie Moten's Kansas City Orchestra27.21Here Comes Marjorie 2:57317903Bennie Moten's Kansas City Orchestra27.22The Count 3:15317903Bennie Moten's Kansas City Orchestra27.23Liza Lee 3:04317903Bennie Moten's Kansas City OrchestraBennie Moten - 1930-3228.1Get Goin' (Get Ready To Love) 3:04317903Bennie Moten's Kansas City Orchestra28.2Professor Hot Stuff 3:26317903Bennie Moten's Kansas City Orchestra28.3When I'm Alone 3:20317903Bennie Moten's Kansas City Orchestra28.4New Moten Stomp 2:57317903Bennie Moten's Kansas City Orchestra28.5As Long As I Love You (Jeanette) 3:15317903Bennie Moten's Kansas City Orchestra28.6Somebody Stole My Gal 3:07317903Bennie Moten's Kansas City Orchestra28.7Now That I Need You 3:03317903Bennie Moten's Kansas City Orchestra28.8Bouncin' Around 3:13317903Bennie Moten's Kansas City Orchestra28.9Ya Got Love 3:16317903Bennie Moten's Kansas City Orchestra28.10I Wanna Be Around My Baby All The Time2:59317903Bennie Moten's Kansas City Orchestra28.11Toby 3:28317903Bennie Moten's Kansas City Orchestra28.12Moten Swing 3:24317903Bennie Moten's Kansas City Orchestra28.13The Blue Room 3:23317903Bennie Moten's Kansas City Orchestra28.14Imagination 3:30317903Bennie Moten's Kansas City Orchestra28.15New Orleans 3:03317903Bennie Moten's Kansas City Orchestra28.16The Only Girl I Ever Loved3:15317903Bennie Moten's Kansas City Orchestra28.17Milenberg Joys 2:50317903Bennie Moten's Kansas City Orchestra28.18Lafayette 2:50317903Bennie Moten's Kansas City Orchestra28.19Prince Of Wails 2:54317903Bennie Moten's Kansas City Orchestra28.20Two Times 3:08317903Bennie Moten's Kansas City OrchestraJohnny Dodds Group Recordings - 192629.1Bohunkus Blues 2:451238209Blythe's Washboard Band29.2Buddy Burton's Jazz 2:261238209Blythe's Washboard Band29.3Little Bits 2:591238205Jimmy Bertrand's Washboard Wizards29.4Little Bits 3:041238205Jimmy Bertrand's Washboard Wizards29.5Struggling 2:381238205Jimmy Bertrand's Washboard Wizards29.6Struggling 2:511238205Jimmy Bertrand's Washboard Wizards29.7Perdido Street Blues 3:09309971New Orleans Wanderers29.8Gate Mouth 3:06309971New Orleans Wanderers29.9Too Tight 2:57309971New Orleans Wanderers29.10Papa Dip 2:53309971New Orleans Wanderers29.11Mixed Salad 3:11309971New Orleans Wanderers29.12I Can't Say 3:09309971New Orleans Wanderers29.13Flat Foot 3:24309971New Orleans Wanderers29.14Mad Dog 2:48309971New Orleans Wanderers29.15Messin' Around 2:571238210Jimmy Blythe And His RagamuffinsJimmy Blythe & His Ragmuffins29.16Messin' Around 2:541238210Jimmy Blythe And His RagamuffinsJimmy Blythe & His Ragmuffins29.17Adam's Apple2:541238210Jimmy Blythe And His RagamuffinsJimmy Blythe & His Ragmuffins29.18East Coast Trot 3:001238214Junie Cobb's Hometown Band29.19Chicago Buzz2:491238214Junie Cobb's Hometown Band29.20Idle Hour Special 2:541238205Jimmy Bertrand's Washboard Wizards29.2147th Street Stomp 2:581238205Jimmy Bertrand's Washboard WizardsJohnny Dodds Group Recordings - 1926-27 30.1Stock Yards Strut 2:321238206Freddie Keppard's Jazz Cardinals30.2Salty Dog 2:451238206Freddie Keppard's Jazz Cardinals30.3Salty Dog 2:371238206Freddie Keppard's Jazz Cardinals30.4Ape Man 2:361238210Jimmy Blythe And His Ragamuffins30.5Your Folks 2:401238210Jimmy Blythe And His Ragamuffins30.6House Rent Rag 3:06505441Dixieland Jug Blowers30.7Memphis Shake 3:18505441Dixieland Jug Blowers30.8Carpet Alley Breakdown 2:42505441Dixieland Jug Blowers30.9Carpet Alley Breakdown 3:19505441Dixieland Jug Blowers30.10Hen Party Blues 3:21505441Dixieland Jug Blowers30.11Hen Party Blues 3:19505441Dixieland Jug Blowers30.12Stomp Time Blues 2:352811044Jasper Taylor's State Street Boys30.13It Must Be The Blues 2:272811044Jasper Taylor's State Street Boys30.14Oh! Daddy 2:28910054Art Hodes30.15Loveless Love 2:35910054Art Hodes30.1619th Street Blues 2:49910054Art Hodes30.17San 2:58307425Johnny Dodds30.18Oh Lizzie 2:56307425Johnny Dodds30.19Oh Lizzie 2:57307425Johnny Dodds30.20The New St. Louis Blues 2:59307425Johnny Dodds30.21Clarinet Wobble 2:36307425Johnny DoddsLouis Armstrong - 1925-2631.1Gambler's Dream 2:341194999Hociel ThomasAcc. By7490549Louis Armstrong's Jazz Four31.2Sunshine Baby 2:531194999Hociel ThomasAcc. By7490549Louis Armstrong's Jazz Four31.3Adam And Eve Had The Blues 3:271194999Hociel ThomasAcc. By7490549Louis Armstrong's Jazz Four31.4Put It Where I Can Get It 3:061194999Hociel ThomasAcc. By7490549Louis Armstrong's Jazz Four31.5Washwoman Blues 3:101194999Hociel ThomasAcc. By7490549Louis Armstrong's Jazz Four31.6I've Stopped My Man 3:021194999Hociel ThomasAcc. By7490549Louis Armstrong's Jazz Four31.7My Heart 2:32253858Louis Armstrong & His Hot Five31.8Yes! I'm In The Barrel 2:44253858Louis Armstrong & His Hot Five31.9Gut Bucket Blues 2:51253858Louis Armstrong & His Hot Five31.10Come Back, Sweet Papa 2:36253858Louis Armstrong & His Hot Five31.11Georgia Grind 2:41253858Louis Armstrong & His Hot Five31.12Heebie Jeebies 2:58253858Louis Armstrong & His Hot Five31.13Cornet Chop Suey 3:07253858Louis Armstrong & His Hot Five31.14Oriental Strut 3:11253858Louis Armstrong & His Hot Five31.15You're Next 3:26253858Louis Armstrong & His Hot Five31.16Muskrat Ramble 2:44253858Louis Armstrong & His Hot Five31.17Static Strut 2:511194995Erskine Tate's Vendome Orchestra31.18Stomp Off, Let's Go 2:571194995Erskine Tate's Vendome Orchestra31.19Stomp Off, Let's Go 2:581194995Erskine Tate's Vendome Orchestra31.20Georgia Bo Bo 3:03373804Lil's Hot ShotsLill's Hot Shots31.21Drop That Sack 2:49373804Lil's Hot ShotsLill's Hot Shots31.22Drop That Sack 2:51373804Lil's Hot ShotsLill's Hot ShotsLouis Armstrong - 1926-2732.1Don't Forget To Mess Around 3:15253858Louis Armstrong & His Hot Five32.2I'm Gonny Gitcha 2:59253858Louis Armstrong & His Hot Five32.3Droppin' Shucks 3:06253858Louis Armstrong & His Hot Five32.4Whosit 2:59253858Louis Armstrong & His Hot Five32.5The King Of The Zulus 3:16253858Louis Armstrong & His Hot Five32.6Big Fat Ma And Skinny Pa 3:09253858Louis Armstrong & His Hot Five32.7Lonesome Blues 3:10253858Louis Armstrong & His Hot Five32.8Sweet Little Papa 2:53253858Louis Armstrong & His Hot Five32.9Jazz Lips 3:09253858Louis Armstrong & His Hot Five32.10Skid-Dat-De-Dat 3:11253858Louis Armstrong & His Hot Five32.11(I Want A) Big Butter And Egg Man (From The West) 3:13253858Louis Armstrong & His Hot Five32.12Sunset Cafe Stomp 2:56253858Louis Armstrong & His Hot Five32.13You Made Me Love You 2:57253858Louis Armstrong & His Hot Five32.14Irish Black Bottom 2:50253858Louis Armstrong & His Hot Five32.15Easy Come Easy Go Blues 2:351238205Jimmy Bertrand's Washboard Wizards32.16The Blues Stampede 2:361238205Jimmy Bertrand's Washboard Wizards32.17I'm Goin' Huntin' 2:541238205Jimmy Bertrand's Washboard Wizards32.18If You Want To Be My Sugar Papa 2:331238205Jimmy Bertrand's Washboard Wizards32.19Weary Blues 2:48655746Johnny Dodds' Black Bottom StompersJohnny Dodds Black Bottom Stompers32.20New Orleans Stomp 2:47655746Johnny Dodds' Black Bottom StompersJohnny Dodds Black Bottom Stompers32.21Wild Man Blues 3:07655746Johnny Dodds' Black Bottom StompersJohnny Dodds Black Bottom Stompers32.22Wild Man Blues 3:06655746Johnny Dodds' Black Bottom StompersJohnny Dodds Black Bottom Stompers32.23Melancholy 3:09655746Johnny Dodds' Black Bottom StompersJohnny Dodds Black Bottom Stompers32.24Melancholy 3:22655746Johnny Dodds' Black Bottom StompersJohnny Dodds Black Bottom StompersKing Oliver’s Dixie Syncopators - 1926-2733.1Too Bad 3:04326832King Oliver's Jazz Band33.2Too Bad 3:00326832King Oliver's Jazz Band33.3Snag It 3:15326832King Oliver's Jazz Band33.4Snag It 2:52326832King Oliver's Jazz Band33.5Georgia Man 3:054016777Teddy Peters (2)33.6Deep Henderson 3:09253853King Oliver & His Dixie Syncopators33.7Jackass Blues 3:07253853King Oliver & His Dixie Syncopators33.8Home Town Blues 2:56634503Irene Scruggs33.9Sorrow Valley Blues 2:45634503Irene Scruggs33.10Sugar Foot Stomp 2:57253853King Oliver & His Dixie Syncopators33.11Wa Wa Wa 2:50253853King Oliver & His Dixie Syncopators33.12Tack Annie 3:10253853King Oliver & His Dixie Syncopators33.13Tack Annie 2:54253853King Oliver & His Dixie Syncopators33.14Someday Sweetheart 2:53253853King Oliver & His Dixie Syncopators33.15Dead Man Blues 2:42253853King Oliver & His Dixie Syncopators33.16New Wang Wang Blues 2:54253853King Oliver & His Dixie Syncopators33.17Snag It 3:08253853King Oliver & His Dixie Syncopators33.18Snag It 3:09253853King Oliver & His Dixie Syncopators33.19Dr Jazz 2:56253853King Oliver & His Dixie Syncopators33.20Showboat Shuffle 2:57253853King Oliver & His Dixie Syncopators33.21Every Tub 3:04253853King Oliver & His Dixie Syncopators33.22Willie The Weeper 2:53253853King Oliver & His Dixie Syncopators33.23Black Snake Blues 2:57253853King Oliver & His Dixie SyncopatorsKing Oliver In New York - 1927-2834.1Farewell Blues2:54253853King Oliver & His Dixie Syncopators34.2Sobbin' Blues 2:36253853King Oliver & His Dixie Syncopators34.3Speakeasy Blues 2:49253853King Oliver & His Dixie Syncopators34.4Aunt Hagar's Blues 3:00253853King Oliver & His Dixie Syncopators34.5I'm Watching The Clock 3:15253853King Oliver & His Dixie Syncopators34.6Slow And Steady3:05253853King Oliver & His Dixie Syncopators34.7Shake It Down 2:561514926Clarence Williams' Jazz Kings34.8Red River Blues 3:051514926Clarence Williams' Jazz Kings34.9Red River Blues 2:591514926Clarence Williams' Jazz Kings34.10I Need You 2:561514926Clarence Williams' Jazz Kings34.11Tin Roof Blues 2:57253853King Oliver & His Dixie Syncopators34.12West End Blues 3:06253853King Oliver & His Dixie Syncopators34.13Sweet Emmalina 2:50253853King Oliver & His Dixie Syncopators34.14Lazy Mama 2:48253853King Oliver & His Dixie Syncopators34.15Lazy Mama 3:04830229Clarence Williams And His OrchestraClarence Williams' Orchestra34.16Mountain City Blues 3:06830229Clarence Williams And His OrchestraClarence Williams' Orchestra34.17Empty Bed Blues (Part 1) 3:041114938Elizabeth Johnson34.18Empty Bed Blues (Part 2) 3:241114938Elizabeth Johnson34.19You’re Such A Cruel Papa To Me 3:041517095Lizzie Miles34.20My Diff’rent Kind Of Man 2:581517095Lizzie Miles34.21Got Everything But You 3:17253853King Oliver & His Dixie Syncopators34.22Got Everything But You 3:18253853King Oliver & His Dixie Syncopators34.23Got Everything But You 3:16253853King Oliver & His Dixie Syncopators34.24Four Or Five Times 3:22253853King Oliver & His Dixie Syncopators34.25Four Or Five Times 3:11253853King Oliver & His Dixie SyncopatorsKing Oliver In New York - 192835.1The Keyboard Express 2:581514926Clarence Williams' Jazz Kings35.2Walk That Broad 3:111514926Clarence Williams' Jazz Kings35.3Long, Deep And Wide 2:59830229Clarence Williams And His Orchestra35.4Speakeasy 2:59830229Clarence Williams And His Orchestra35.5Squeeze Me 2:57830229Clarence Williams And His Orchestra35.6New Down Home Blues 3:11830229Clarence Williams And His Orchestra35.7West End Blues 3:353880171Hazel Smith (3)35.8Get Up Off Your Knees 3:043880171Hazel Smith (3)35.9Wildflower Rag 2:43830229Clarence Williams And His Orchestra35.10Wildflower Rag 2:38830229Clarence Williams And His Orchestra35.11Midnight Stomp 3:08830229Clarence Williams And His Orchestra35.12Midnight Stomp 3:08830229Clarence Williams And His Orchestra35.13I’m Through 3:00830229Clarence Williams And His Orchestra35.14Bozo 2:45830229Clarence Williams And His Orchestra35.15Bimbo 2:36830229Clarence Williams And His Orchestra35.16Longshoreman’s Blues 2:56830229Clarence Williams And His Orchestra35.17Mean Tight Mama 3:02129089Sara MartinSarah Martin35.18Mistreatin‘ Man Blues 2:50129089Sara MartinSarah Martin35.19Kitchen Man Blues 2:36129089Sara MartinSarah Martin35.20Beau-Koo-Jack 2:45830229Clarence Williams And His Orchestra35.21Sister Kate 3:03830229Clarence Williams And His Orchestra35.22Pane In The Glass 2:48830229Clarence Williams And His OrchestraKing Oliver - 1929-3036.1Can I Tell You?3:10373788King Oliver & His Orchestra36.2Can I Tell You?3:18373788King Oliver & His Orchestra36.3My Good Man Sam 3:00373788King Oliver & His Orchestra36.4What You Want Me To Do? 3:12373788King Oliver & His Orchestra36.5Sweet Like This 3:28373788King Oliver & His Orchestra36.6Too Late 3:11373788King Oliver & His Orchestra36.7I'm Lonesome Sweetheart 2:48373788King Oliver & His Orchestra36.8I Want You Just Myself 2:52373788King Oliver & His Orchestra36.9I Can't Stop Loving You 2:44373788King Oliver & His Orchestra36.10Everybody Does It In Hawaii 3:12373788King Oliver & His Orchestra36.11Frankie And Johnny 3:13373788King Oliver & His Orchestra36.12Frankie And Johnny 3:05373788King Oliver & His Orchestra36.13New Orleans Shout 2:45373788King Oliver & His Orchestra36.14Everybody Does It In Hawaii 2:50373788King Oliver & His Orchestra36.15Frankie And Johnny 3:06373788King Oliver & His Orchestra36.16St. James Infirmary 3:40373788King Oliver & His Orchestra36.17When You’re Smiling 3:25373788King Oliver & His Orchestra36.18I Must Have It 3:01373788King Oliver & His Orchestra36.19Rhythm Club Stomp 2:59373788King Oliver & His Orchestra36.20You’re Just My Type 2:35373788King Oliver & His Orchestra36.21Edna 2:44373788King Oliver & His Orchestra36.22Boogie Woogie 3:04373788King Oliver & His Orchestra36.23Mule Face Blues 2:57373788King Oliver & His OrchestraKing Oliver - 1930-3137.1Struggle Buggy 2:58373788King Oliver & His Orchestra37.2Don’t You Think I Love You? 2:47373788King Oliver & His Orchestra37.3Olga 3:24373788King Oliver & His Orchestra37.4Olga 3:23373788King Oliver & His Orchestra37.5Shake It And Break It 2:31373788King Oliver & His Orchestra37.6Stingaree Blues 3:10373788King Oliver & His Orchestra37.7What’s The Use Of Living Without Love 3:29373788King Oliver & His Orchestra37.8You Were Only Passing Time With Me2:58373788King Oliver & His Orchestra37.9You Were Only Passing Time With Me2:50373788King Oliver & His Orchestra37.10Nelson Stomp 3:07373788King Oliver & His Orchestra37.11Nelson Stomp 3:09373788King Oliver & His Orchestra37.12Nelson Stomp 3:09373788King Oliver & His Orchestra37.13Stealing Love 3:21373788King Oliver & His Orchestra37.14Stealing Love 3:26373788King Oliver & His Orchestra37.15Papa-De-Da-Da 2:56373788King Oliver & His Orchestra37.16Who's Blue 3:00373788King Oliver & His Orchestra37.17Stop Crying 3:12373788King Oliver & His Orchestra37.18Sugar Blues 3:03373788King Oliver & His Orchestra37.19I'm Crazy 'Bout My Baby 3:26373788King Oliver & His Orchestra37.20Loveless Love 3:02373788King Oliver & His Orchestra37.21One More Time 3:20373788King Oliver & His Orchestra37.22When I Take My Sugar To Tea2:55373788King Oliver & His OrchestraChicago Style - 1927-30 38.1Royal Garden Blues 2:571770967Original Wolverines38.2Shim-Me-Sha-Wabble 2:501770967Original Wolverines38.3A Good Man Is Hard To Find 3:021770967Original Wolverines38.4The New Twister 2:581770967Original Wolverines38.5Downright Disgusted 3:17335562Wingy Manone & His OrchestraJoe 'Wingy' Manone And His Club Royale Orchestra38.6Fare Thee Well 3:22335562Wingy Manone & His OrchestraJoe 'Wingy' Manone And His Club Royale Orchestra38.7I'm Sorry Sally 2:543248530Danny Altier And His Orchestra38.8My Gal Sal 3:263248530Danny Altier And His Orchestra38.9Craze-O-Logy 2:582978929Bud Freeman And His Orchestra38.10Can't Help Lovin' Dat Man3:252978929Bud Freeman And His Orchestra38.11That's A Plenty 3:18708247Ray Miller And His Orchestra38.12Angry 2:45708247Ray Miller And His Orchestra38.13Shake That Thing 3:28557967Barbecue Joe And His Hot Dogs38.14Tar Paper Stomp (Wingy’s Stomp) 3:09557967Barbecue Joe And His Hot Dogs38.15Up The Country Blues 3:07557967Barbecue Joe And His Hot Dogs38.16Tin Roof Blues 2:51557967Barbecue Joe And His Hot Dogs38.17Weary Blues 2:53557967Barbecue Joe And His Hot Dogs38.18Big Butter And Egg Man 2:54557967Barbecue Joe And His Hot Dogs38.19My Honey's Lovin' Arms 2:59317885Red Nichols And His Five Pennies38.20Rockin' Chair 3:11317885Red Nichols And His Five Pennies38.21Bugaboo 3:11317885Red Nichols And His Five Pennies38.22Corrinne Corrina 3:01317885Red Nichols And His Five Pennies38.23How Come You Do Me Like You Do? 2:51317885Red Nichols And His Five PenniesLouis Armstrong - 192739.1Willie The Weeper 3:13314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.2Wild Man Blues 3:16314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.3Chicago Breakdown 3:27314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.4Alligator Crawl 3:03314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.5Potato Head Blues 3:03314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.6Melancholy Blues 3:05314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.7Weary Blues 3:06314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.8Twelfth Street Rag 3:09314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.9Keyhole Blues 3:36314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.10S.O.L. Blues 2:58314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.11Gully Low Blues 3:23314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.12That's When I'll Come Back 3:04314839Louis Armstrong & His Hot SevenLouis Armstrong And His Hot Seven39.13Put 'Em Down Blues 3:11253858Louis Armstrong & His Hot Five39.14Ory's Creole Trombone 3:05253858Louis Armstrong & His Hot Five39.15The Last Time 3:25253858Louis Armstrong & His Hot Five39.16Struttin' With Some Barbecue 3:01253858Louis Armstrong & His Hot Five39.17Got No Blues 3:22253858Louis Armstrong & His Hot Five39.18Once In A While 3:16253858Louis Armstrong & His Hot Five39.19I'm Not Rough 3:00253858Louis Armstrong & His Hot Five39.20Hotter Than That 3:03253858Louis Armstrong & His Hot Five39.21Savoy Blues 3:30253858Louis Armstrong & His Hot FiveLouis Armstrong - 192840.1Fireworks 3:05253858Louis Armstrong & His Hot Five40.2Skip The Gutter 3:09253858Louis Armstrong & His Hot Five40.3A Monday Date 3:11253858Louis Armstrong & His Hot Five40.4Don't Jive Me 2:49253858Louis Armstrong & His Hot Five40.5West End Blues 3:18253858Louis Armstrong & His Hot Five40.6Sugar Foot Strut 3:20253858Louis Armstrong & His Hot Five40.7Two Deuces 2:55253858Louis Armstrong & His Hot Five40.8Squeeze Me 3:23253858Louis Armstrong & His Hot Five40.9Knee Drops 3:23253858Louis Armstrong & His Hot Five40.10Symphonic Raps 3:13505439Carroll Dickerson's Savoyagers40.11Savoyager's Stomp 3:11505439Carroll Dickerson's Savoyagers40.12No (Papa No) 2:55317860Louis Armstrong And His Orchestra40.13Basin Street Blues 3:17317860Louis Armstrong And His Orchestra40.14No-One Else But You 3:25338994Louis Armstrong And His Savoy Ballroom Five40.15Beau Koo Jack 3:03338994Louis Armstrong And His Savoy Ballroom Five40.16Save It, Pretty Mama 3:23338994Louis Armstrong And His Savoy Ballroom Five40.17Weather Bird 2:4338201Louis Armstrong40.18Muggles 2:52317860Louis Armstrong And His Orchestra40.19Heah Me Talkin' To Ya 3:26338994Louis Armstrong And His Savoy Ballroom Five40.20St. James Infirmary 3:19338994Louis Armstrong And His Savoy Ballroom Five40.21Tight Like This 3:18338994Louis Armstrong And His Savoy Ballroom FiveJimmie Noone - 1928 41.1I Know That You Know 2:58317884Jimmie Noone's Apex Club Orchestra41.2Sweet Sue 3:14317884Jimmie Noone's Apex Club Orchestra41.3Four Or Five Times 3:16317884Jimmie Noone's Apex Club Orchestra41.4Four Or Five Times 3:15317884Jimmie Noone's Apex Club Orchestra41.5Every Evening 3:07317884Jimmie Noone's Apex Club Orchestra41.6Every Evening 3:29317884Jimmie Noone's Apex Club Orchestra41.7Ready For The River 3:05317884Jimmie Noone's Apex Club Orchestra41.8Forevermore 2:57317884Jimmie Noone's Apex Club Orchestra41.9Apex Blues 3:28317884Jimmie Noone's Apex Club Orchestra41.10Oh Sister, Ain't That Hot 2:41317884Jimmie Noone's Apex Club Orchestra41.11I Ain't Got Nobody 3:041689520Stovepipe Johnson41.12Apex Blues 3:12317884Jimmie Noone's Apex Club Orchestra41.13Apex Blues 3:10317884Jimmie Noone's Apex Club Orchestra41.14A Monday Date 3:04317884Jimmie Noone's Apex Club Orchestra41.15Blues (My Naughty Sweetie Gives To Me)3:03317884Jimmie Noone's Apex Club Orchestra41.16Oh! Sister, Ain't That Hot! 2:46317884Jimmie Noone's Apex Club Orchestra41.17King Joe 3:05317884Jimmie Noone's Apex Club Orchestra41.18Sweet Lorraine 3:08317884Jimmie Noone's Apex Club Orchestra41.19Sweet Lorraine 3:17317884Jimmie Noone's Apex Club Orchestra41.20I Must Have That Man 3:06317884Jimmie Noone's Apex Club Orchestra41.21Some Rainy Day 3:09317884Jimmie Noone's Apex Club Orchestra41.22It's Tight Like That 2:47317884Jimmie Noone's Apex Club Orchestra41.23It's Tight Like That 2:46317884Jimmie Noone's Apex Club Orchestra41.24Let's Sow A Wild Oat 3:05317884Jimmie Noone's Apex Club Orchestra41.25Let's Sow A Wild Oat 3:01317884Jimmie Noone's Apex Club Orchestra41.26She's Funny That Way 3:33317884Jimmie Noone's Apex Club OrchestraJimmie Noone - 192942.1St. Louis Blues 3:37317884Jimmie Noone's Apex Club Orchestra42.2Chicago Rhythm 2:56317884Jimmie Noone's Apex Club Orchestra42.3I Got A Misery 3:13317884Jimmie Noone's Apex Club Orchestra42.4Wake Up, Children, Wake Up 3:27317884Jimmie Noone's Apex Club Orchestra42.5Love Me Or Leave Me 3:33317884Jimmie Noone's Apex Club Orchestra42.6Anything You Want 3:22317884Jimmie Noone's Apex Club Orchestra42.7Birmingham Bertha 3:15317884Jimmie Noone's Apex Club Orchestra42.8Am I Blue? 3:31317884Jimmie Noone's Apex Club Orchestra42.9My Daddy Rocks Me 3:10317884Jimmie Noone's Apex Club Orchestra42.10Apex Blues 3:00317884Jimmie Noone's Apex Club Orchestra42.11Ain’t Misbehavin’ 3:23317884Jimmie Noone's Apex Club Orchestra42.12That Rhythm Man 3:18317884Jimmie Noone's Apex Club Orchestra42.13Off Time 2:45317884Jimmie Noone's Apex Club Orchestra42.14S’posin’ 3:13317884Jimmie Noone's Apex Club Orchestra42.15True Blue Lou 3:19317884Jimmie Noone's Apex Club Orchestra42.16Through 3:01317884Jimmie Noone's Apex Club Orchestra42.17Satisfied 2:50317884Jimmie Noone's Apex Club Orchestra42.18I’m Doin’ What I’m Doin’ For Love 3:18317884Jimmie Noone's Apex Club Orchestra42.19He’s A Good Man To Have Around 3:25317884Jimmie Noone's Apex Club Orchestra42.20My Melancholy Baby 2:55317884Jimmie Noone's Apex Club Orchestra42.21After You've Gone 3:07317884Jimmie Noone's Apex Club Orchestra42.22Love (Your Spell Is Everywhere) 3:248052157Jimmie's Blue Melody Boys42.23Love Me 3:238052157Jimmie's Blue Melody BoysJabbo Smith Rhythm Aces 43.1Got Butter On It 3:042781209"Banjo" Ikey Robinson And His BandIkey Robinson And His Band43.2Ready Hokum3:032781209"Banjo" Ikey Robinson And His BandIkey Robinson And His Band43.3(A) Jazz Battle 2:422781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.4Little Willie Blues 3:272781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.5Sleepy Time Blues 3:282781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.6Take Your Time 2:492781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.7Sweet And Low Blues 3:222781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.8Take Me To The River 2:532781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.9Ace Of Rhythm 2:572781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.10Let's Get Together 3:332781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.11Sau-Sha Stomp 3:082781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.12Michigander Blues 3:242781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.13Decatur Street Tutti 2:502781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.14Till Times Get Better 3:112781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.15Lina Blues 3:332781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.16Wierd (Weird) And Blue 3:062781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.17Croonin' The Blues 3:142781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.18I Got The Stinger 3:222781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.19Boston Skuffle 2:532781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.20Tanguay Blues 2:512781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.21Band Box Stomp 3:012781207Jabbo Smith And His Rhythm AcesThe Rhythm Aces43.22Moanful Blues 3:032781207Jabbo Smith And His Rhythm AcesThe Rhythm AcesHarlem Orchestras - 1927-31 44.1Make Me Know It 3:087879760Jelly James And His Fewsicians44.2Georgia Bo Bo 3:217879760Jelly James And His Fewsicians44.3Oh! Malinda 2:453734735Te Roy Williams And His Orchestra44.4Lindbergh Hop 2:563734735Te Roy Williams And His Orchestra44.5Happy Rhythm 3:057879778The Musical Stevedores44.6Honeycomb Harmony 3:047879778The Musical Stevedores44.7Dog Bottom 2:407879725The Jungle Band (Chick Webb)44.8Jungle Mama 3:157879725The Jungle Band (Chick Webb)44.9I Lost My Girl From Memphis 3:022789627Bubber Miley And His Mileage Makers44.10Without You, Emaline 3:012789627Bubber Miley And His Mileage Makers44.11Black Maria 2:592789627Bubber Miley And His Mileage Makers44.12Chinnin’ And Chattin’ With May 3:242789627Bubber Miley And His Mileage Makers44.13Loving You The Way I Do 3:352789627Bubber Miley And His Mileage Makers44.14The Penalty Of Love 3:292789627Bubber Miley And His Mileage Makers44.15I Ain't Got Nobody 3:245425043Dave Nelson And The King's Men44.16When Day Is Done 3:355425043Dave Nelson And The King's Men44.17Some Of These Days 3:325425043Dave Nelson And The King's Men44.18Somebody Stole My Gal 3:186959654Dave's Harlem Highlights44.19Rockin' Chair 3:226959654Dave's Harlem Highlights44.20Loveless Love 3:156959654Dave's Harlem Highlights44.21St. Louis Blues3:026959654Dave's Harlem HighlightsThe Goofus Five - 1924-2545.1Tessie! Stop Teasin' Me 3:113125281The Goofus Five45.2Them Ramblin' Blues 2:533125281The Goofus Five45.3Go Emmaline 2:583125281The Goofus Five45.4Hey! Hey! And Hee! Hee! (I'm Charleston Crazy) 3:253125281The Goofus Five45.5Choo Choo (Gotta Hurry Home) 2:433125281The Goofus Five45.6Go 'Long Mule 2:343125281The Goofus Five45.7Everybody Loves My Baby 2:443125281The Goofus Five45.8Oh! How I Love My Darling 2:563125281The Goofus Five45.9Oh! Mabel 3:013125281The Goofus Five45.10I Ain't Got Nobody To Love 2:573125281The Goofus Five45.11Alabamy Bound 3:033125281The Goofus Five45.12Deep Blue Sea Blues 3:043125281The Goofus Five45.13You Better Keep The Home Fire Burning 3:003125281The Goofus Five45.14Hot Tamale Molly 3:093125281The Goofus Five45.15I Had Someone Else Before I Had You 3:173125281The Goofus Five45.16I Like You Best Of All 3:153125281The Goofus Five45.17Yes Sir, That's My Baby 3:023125281The Goofus Five45.18Honey, I'm In Love With You 3:163125281The Goofus Five45.19Are You Sorry? 2:593125281The Goofus Five45.20I'm Gonna Charleston Back To Charleston 3:063125281The Goofus Five45.21Loud Speakin' Papa 2:483125281The Goofus Five45.22Sweet Man 2:483125281The Goofus Five45.23Clap Hands, Here Comes Charly! 3:103125281The Goofus Five45.24I Wonder Where My Baby Is Tonight? 3:083125281The Goofus Five45.25That Certain Party 2:403125281The Goofus FiveThe Goofus Five - 1926-2746.1Poor Papa (He’s Got Nothin’ At All) 2:533125281The Goofus Five46.2I Wonder What’s Become Of Joe? 2:333125281The Goofus Five46.3You Gotta Know How To Love 2:563125281The Goofus Five46.4Where’d You Get Those Eyes? 2:503125281The Goofus Five46.5Mary Lou 2:533125281The Goofus Five46.6Someone Is Losin’ Susan 2:533125281The Goofus Five46.7Crazy Quilt 2:573125281The Goofus Five46.8Sadie Green (The Vamp Of New Orleans) 2:443125281The Goofus Five46.9Heebie Jeebies2:583125281The Goofus Five46.10Tuck In Kentucky And Smile 3:183125281The Goofus Five46.11I Need Lovin’2:493125281The Goofus Five46.12I’ve Got The Girl 3:023125281The Goofus Five46.13Farewell Blues 3:103125281The Goofus Five46.14Sister Kate 3:013125281The Goofus Five46.15Muddy Water2:503125281The Goofus Five46.16The Wang Wang Blues 3:283125281The Goofus Five46.17The Wang Wang Blues 3:273125281The Goofus Five46.18The Whisper Song 2:583125281The Goofus Five46.19Arkansas Blues 3:013125281The Goofus Five46.20Lazy Weather2:533125281The Goofus Five46.21Vo-Do-Do-De-O Blues 3:163125281The Goofus Five46.22Ain't That A Grand And Glorious Feeling 3:013125281The Goofus Five46.23Clementine (From New Orleans) 3:193125281The Goofus Five46.24Nothin' Does-Does Like It Used To Do-Do-Do 3:293125281The Goofus Five46.25I Left My Sugar Standing In The Rain 3:293125281The Goofus FiveLuis Russell - 1926-2947.129th And Dearborn 2:563231296Russell's Hot Six47.2Sweet Mumtaz 3:103231296Russell's Hot Six47.3Sweet Mumtaz 3:103231296Russell's Hot Six47.4Panama Limited Blues 3:09322314Ada Brown47.5Tia Juana Man 2:58322314Ada Brown47.6All Night Shag 2:483580914Chicago Hottentots47.7Put Me In The Alley Blues 2:543580914Chicago Hottentots47.8Plantation Joys 2:43339911Luis Russell's Heebie Jeebie StompersLuis Russel's Heebie Jeebie Stompers47.9Please Don’t Turn Me Down 2:59339911Luis Russell's Heebie Jeebie StompersLuis Russel's Heebie Jeebie Stompers47.10Sweet Mumtaz 2:59339911Luis Russell's Heebie Jeebie StompersLuis Russel's Heebie Jeebie Stompers47.11Dolly Mine 2:47339911Luis Russell's Heebie Jeebie StompersLuis Russel's Heebie Jeebie Stompers47.12Savoy Shout 3:052827543Luis Russell And His Burning EightLuis Russell & His Burning Eight47.13Call Of The Freaks 3:152827543Luis Russell And His Burning EightLuis Russell & His Burning Eight47.14It's Tight Like That 3:112827543Luis Russell And His Burning EightLuis Russell & His Burning Eight47.15West End Blues 3:40373788King Oliver & His Orchestra47.16I've Got That Thing 3:27373788King Oliver & His Orchestra47.17I've Got That Thing 3:31373788King Oliver & His Orchestra47.18Call Of The Freaks 3:23373788King Oliver & His Orchestra47.19Call Of The Freaks 3:26373788King Oliver & His Orchestra47.20The Trumpet's Prayer 3:16373788King Oliver & His Orchestra47.21The Trumpet's Prayer 3:15373788King Oliver & His Orchestra47.22Freakish Light Blues 3:13373788King Oliver & His Orchestra47.23Freakish Light Blues 3:12373788King Oliver & His Orchestra47.24African Jungle 3:221952599The Jungle Town Stompers47.25Slow As Molasses 3:101952599The Jungle Town StompersLuis Russell & Henry "Red" Allen - 192948.1It Should Be You 3:161201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.2It Should Be You 3:091201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.3It Should Be You 3:081201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.4Biff'ly Blues 3:221201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.5Biff'ly Blues 3:241201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.6Feeling Drowsy 3:311201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.7Feeling Drowsy 3:331201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.8Feeling Drowsy 3:391201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.9Swing Out 3:271201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.10Swing Out 3:211201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.11Swing Out 3:201201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.12The New Call Of The Freaks 3:12373807Luis Russell And His OrchestraLuis Russell & His Orchestra48.13Feeling The Spirit 3:14373807Luis Russell And His OrchestraLuis Russell & His Orchestra48.14Jersey Lightning 3:24373807Luis Russell And His OrchestraLuis Russell & His Orchestra48.15Broadway Rhythm 2:517879774Lou & His Ginger Snaps48.16The Way He Loves Is Just Too Bad 3:017879774Lou & His Ginger Snaps48.17The Way He Loves Is Just Too Bad 3:017879774Lou & His Ginger Snaps48.18Make A Country Bird Fly 3:261201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.19Make A Country Bird Fly 3:291201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.20Funny Feathers Blues 2:511201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.21Funny Feathers Blues 3:001201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.22How Do They Do It That Way 3:161201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra48.23How Do They Do It That Way 3:201201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York OrchestraLuis Russell & Henry "Red" Allen - 1929-3049.1Pleasin' Paul 2:541201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra49.2Pleasin' Paul 2:531201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra49.3Doctor Blues 3:15373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.4Saratoga Shout 3:31373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.5Song Of The Swanee 3:20373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.6Give Me Your Telephone Number 3:11373814J.C. Higginbotham And His Six HicksJ.C. Higginbotham & His Six Hicks49.7Higginbotham Blues 3:28373814J.C. Higginbotham And His Six HicksJ.C. Higginbotham & His Six Hicks49.8Sugar Hill Function 3:021201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra49.9You Might Get Better 3:061201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra49.10Everybody Shout 2:261201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra49.11Dancing Dave 3:111201611Henry "Red" Allen And His OrchestraHenry Allen, Jr. & His New York Orchestra49.12Louisiana Swing 3:09373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.13Louisiana Swing 3:05373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.14Poor Li’l Me 3:22373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.15On Revival Day 3:04373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.16On Revival Day 3:09373807Luis Russell And His OrchestraLuis Russell & His Orchestra49.17Roamin’ 3:371201611Henry "Red" Allen And His Orchestra49.18Pretty Songs 3:221201611Henry "Red" Allen And His Orchestra49.19Singing Pretty Songs 3:181201611Henry "Red" Allen And His Orchestra49.20Patrol Wagon Blues 3:201201611Henry "Red" Allen And His Orchestra49.21Love 3:241201611Henry "Red" Allen And His Orchestra49.22I Fell In Love With You 3:271201611Henry "Red" Allen And His OrchestraLuis Russell, Henry "Red" Allen & The Blues Singers50.1Muggin’ Lightly2:55373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.2Panama3:14373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.3High Tension 2:53373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.4I Got Rhythm3:22373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.5Saratoga Drag3:08373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.6Case On Dawn (Ease On Down) 2:59373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.7Honey That Reminds Me 3:13373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.8You Rascal, You 3:08373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.9Goin’ To Town 2:55373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.10Say The Word 3:07373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.11Freakish Blues 3:32373807Luis Russell And His OrchestraLuis Russell & His Orchestra50.12Doggin’ That Thing 3:291284867Walter "Fats" Pichon50.13Yo Yo 3:051284867Walter "Fats" Pichon50.14Blood Hound Blues 2:37307238Victoria Spivey50.15Dirty T.B. Blues 3:09307238Victoria Spivey50.16Moaning The Blues 3:01307238Victoria Spivey50.17Telephoning The Blues 3:09307238Victoria Spivey50.18Day-Breaking Blues 3:017879717Sweet Pea (Addie Spivey)50.19Heart -Breaking Blues 2:497879717Sweet Pea (Addie Spivey)50.20Leaving You Baby 2:507879717Sweet Pea (Addie Spivey)50.21Longing For Home 2:477879717Sweet Pea (Addie Spivey)Earl Hines51.1Blues In Thirds (Caution Blues)2:52257353Earl HinesEarl Hines Piano Solo51.2Off Time Blues 2:56257353Earl HinesEarl Hines Piano Solo51.3Chicago High Life 2:48257353Earl HinesEarl Hines Piano Solo51.4A Monday Date 2:55257353Earl HinesEarl Hines Piano Solo51.5Stowaway 2:48257353Earl HinesEarl Hines Piano Solo51.6Chimes In Blues 2:53257353Earl HinesEarl Hines Piano Solo51.7Panther Rag 2:52257353Earl HinesEarl Hines Piano Solo51.8Just Too Soon 3:10257353Earl HinesEarl Hines Piano Solo51.9Caution Blues 3:00257353Earl HinesEarl Hines Piano Solo51.10A Monday Date 3:18257353Earl HinesEarl Hines Piano Solo51.11I Ain't Got Nobody 3:13257353Earl HinesEarl Hines Piano Solo51.12Fifty-Seven Varieties3:15257353Earl HinesEarl Hines Piano Solo51.13Sweet Ella May 2:45341505Earl Hines And His Orchestra51.14Everybody Loves My Baby 3:16341505Earl Hines And His Orchestra51.15Good Little, Bad Little You 2:36341505Earl Hines And His Orchestra51.16Good Little, Bad Little You 2:36341505Earl Hines And His Orchestra51.17Have You Ever Felt That Way 3:05341505Earl Hines And His Orchestra51.18Beau-Koo-Jack 2:50341505Earl Hines And His Orchestra51.19Beau-Koo-Jack 2:49341505Earl Hines And His Orchestra51.20Sister Kate 3:05341505Earl Hines And His Orchestra51.21Chicago Rhythm 2:53341505Earl Hines And His Orchestra51.22Glad Rag Doll 2:58257353Earl Hines51.23Grand Piano Blues 2:58341505Earl Hines And His Orchestra51.24Blue Nights3:13341505Earl Hines And His OrchestraDuke Ellington - 192852.1Sweet Mama 2:52284747Duke Ellington And His Orchestra52.2Stack O’Lee Blues 2:49284747Duke Ellington And His Orchestra52.3Bugle Call Rag 2:38284747Duke Ellington And His Orchestra52.4Take It Easy 3:10284747Duke Ellington And His Orchestra52.5 Jubilee Stomp (Ellington) 2:43284747Duke Ellington And His Orchestra52.6Harlem Twist (East St. Louis Toodle-Oo) 3:16284747Duke Ellington And His Orchestra52.7Black Beauty 2:51284747Duke Ellington And His Orchestra52.8 Jubilee Stomp 2:34284747Duke Ellington And His Orchestra52.9Got Everything But You 2:57284747Duke Ellington And His Orchestra52.10Yellow Dog Blues 2:47284747Duke Ellington And His Orchestra52.11Tishomingo Blues 2:53284747Duke Ellington And His Orchestra52.12Tishomingo Blues 2:57284747Duke Ellington And His Orchestra52.13Diga Diga Doo 2:53284747Duke Ellington And His Orchestra52.14Doin’ The New Low-Down 3:07284747Duke Ellington And His Orchestra52.15The Mooche 3:13284747Duke Ellington And His Orchestra52.16Move Over 3:03284747Duke Ellington And His Orchestra52.17Hot And Bothered 3:17284747Duke Ellington And His Orchestra52.18The Mooche 3:09284747Duke Ellington And His Orchestra52.19Louisiana 3:00284747Duke Ellington And His Orchestra52.20Bandana Babies 3:19284747Duke Ellington And His Orchestra52.21Diga Diga Doo 2:53284747Duke Ellington And His Orchestra52.22I Must Have That Man 3:23284747Duke Ellington And His Orchestra52.23The Blues With A Feeling 3:15284747Duke Ellington And His Orchestra52.24Goin’ To Town 2:59284747Duke Ellington And His Orchestra52.25Misty Mornin’ 3:18284747Duke Ellington And His OrchestraDuke Ellington - 192953.1Doin’ The Voom Voom 3:12342798Duke Ellington And His Cotton Club Orchestra53.2Tiger Rag (Part 1) 2:53342798Duke Ellington And His Cotton Club Orchestra53.3Tiger Rag (Part 2) 2:52342798Duke Ellington And His Cotton Club Orchestra53.4Flaming Youth 3:15342798Duke Ellington And His Cotton Club Orchestra53.5Flaming Youth 3:18342798Duke Ellington And His Cotton Club Orchestra53.6Saturday Night Function 3:05342798Duke Ellington And His Cotton Club Orchestra53.7High Life 3:07342798Duke Ellington And His Cotton Club Orchestra53.8Doin’ The Voom Voom 3:08342798Duke Ellington And His Cotton Club Orchestra53.9Doin' The Voom Voom 3:09342798Duke Ellington And His Cotton Club Orchestra53.10Cotton Club Stomp 2:54342798Duke Ellington And His Cotton Club Orchestra53.11Misty Mornin' 3:08342798Duke Ellington And His Cotton Club Orchestra53.12Arabian Lover 2:47342798Duke Ellington And His Cotton Club Orchestra53.13Saratoga Swing 2:45342798Duke Ellington And His Cotton Club Orchestra53.14Black And Blue 3:23302315The Jungle Band53.15Jungle Jamboree 2:42302315The Jungle Band53.16Mississippi 3:25342798Duke Ellington And His Cotton Club Orchestra53.17The Duke Steps Out 3:18342798Duke Ellington And His Cotton Club Orchestra53.18Haunted Nights 3:16342798Duke Ellington And His Cotton Club Orchestra53.19Swanee Shuffle 3:20342798Duke Ellington And His Cotton Club Orchestra53.20Lazy Duke 3:08446648The Harlem Footwarmers53.21Blues Of The Vagabond 3:16446648The Harlem Footwarmers53.22Syncopated Shuffle 2:46446648The Harlem Footwarmers53.23Sweet Mama 3:08302315The Jungle Band53.24Wall Street Wail 2:58302315The Jungle Band53.25Cincinnati Daddy 3:16302315The Jungle BandDuke Ellington - 193054.1The Mooche 3:24145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.2Ragamuffin Romeo 3:19145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.3East St. Louis Toodle-Oo 3:16145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.4Double Check Stomp 2:56342798Duke Ellington And His Cotton Club Orchestra54.5My Gal Is Good For Nothing But Love 3:01342798Duke Ellington And His Cotton Club Orchestra54.6I Was Made To Love You 3:02342798Duke Ellington And His Cotton Club Orchestra54.7Double Check Stomp 2:57342798Duke Ellington And His Cotton Club Orchestra54.8Accordion Joe 3:04342798Duke Ellington And His Cotton Club Orchestra54.9Cotton Club Stomp 2:53342798Duke Ellington And His Cotton Club Orchestra54.10Sweet Dreams Of Love 3:24342798Duke Ellington And His Cotton Club Orchestra54.11Jungle Nights In Harlem 2:56342798Duke Ellington And His Cotton Club Orchestra54.12Sweet Jazz O’Mine 2:43342798Duke Ellington And His Cotton Club Orchestra54.13Sweet Jazz O’Mine 2:40342798Duke Ellington And His Cotton Club Orchestra54.14Shout ‘Em, Aunt Tillie 3:01342798Duke Ellington And His Cotton Club Orchestra54.15Sweet Mama 3:03145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.16Hot And Bothered 2:54145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.17Double Check Stomp 3:24145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.18Black And Tan Fantasy3:11145257Duke Ellington,4293455Ten Black BerriesMills' Ten Black Berries54.19Ring Dem Bells 2:57284747Duke Ellington And His Orchestra54.20Old Man Blues 3:06284747Duke Ellington And His Orchestra54.21Three Little Words 3:07284747Duke Ellington And His Orchestra54.22Big House Blues 3:02446648The Harlem Footwarmers54.23Rocky Mountain Blues 3:10446648The Harlem Footwarmers54.24Runnin' Wild 2:44302315The Jungle Band54.25Mood Medlin’ With The Blues Indigo (Dreamy Blues) 2:52302315The Jungle BandCharlie Johnson 55.1Don’t Forget, You’ll Regret 2:342093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.2Medlin’ With The Blues 2:582093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.3Paradise Wobble 3:192093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.4Birmingham Black Bottom 3:042093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.5Birmingham Black Bottom 3:012093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.6Don’t You Leave Me Here 3:422093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.7Don’t You Leave Me Here 3:402093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.8You Ain't The One 3:312093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.9You Ain't The One 3:262093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.10Charleston's The Best Dance After All2:502093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.11Charleston's The Best Dance After All2:452093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.12Hot Tempered Blues 3:182093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.13Hot Tempered Blues 3:242093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.14The Boy In The Boat 3:442093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.15The Boy In The Boat 3:432093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.16Walk That Thing 3:222093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.17Walk That Thing 3:282093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.18Walk That Thing 3:212093970Charlie Johnson & His Paradise BandCharlie Johnson’s Paradise Orchestra55.19Dusky Stevedore 2:457879752Jackson & His Southern Stompers55.20Take Your Tomorrow (Give Me Today) 2:537879752Jackson & His Southern Stompers55.21Harlem Drag 3:161247309Charlie Johnson & His Orchestra55.22Harlem Drag 3:191247309Charlie Johnson & His Orchestra55.23Hot Bones And Rice 3:271247309Charlie Johnson & His Orchestra55.24Hot Bones And Rice 3:231247309Charlie Johnson & His OrchestraDuke Ellington - 1931-3256.1Rockin' Chair 3:12284747Duke Ellington And His Orchestra56.2Rockin' In Rhythm 3:00284747Duke Ellington And His Orchestra56.3Twelfth Street Rag 2:58284747Duke Ellington And His Orchestra56.4The Peanut Vendor 3:15284747Duke Ellington And His Orchestra56.5Creole Rhapsody (Part 1) 3:09284747Duke Ellington And His Orchestra56.6Creole Rhapsody (Part 2)3:20284747Duke Ellington And His Orchestra56.7Is That Religion? 2:21284747Duke Ellington And His Orchestra56.8Creole Rhapsody (Part 1) 4:03284747Duke Ellington And His Orchestra56.9Creole Rhapsody (Part 2) 4:22284747Duke Ellington And His Orchestra56.10Limehouse Blues 3:08284747Duke Ellington And His Orchestra56.11Echoes Of The Jungle 3:27284747Duke Ellington And His Orchestra56.12It’s Glory 3:09284747Duke Ellington And His Orchestra56.13The Mystery Song3:11284747Duke Ellington And His Orchestra56.14Moon Over Dixie 2:58284747Duke Ellington And His Orchestra56.15It Don’t Mean A Thing If It Ain’t Got 3:10284747Duke Ellington And His Orchestra56.16Lazy Rhapsody 3:16284747Duke Ellington And His Orchestra56.17Mood Indigo/Hot And Bothered/Creole Love Call 7:38284747Duke Ellington And His Orchestra56.18East St. Louis Toodle-Oo/Lots O’Fingers/ Black And Tan Fantasy 7:33284747Duke Ellington And His Orchestra56.19Dinah 2:53284747Duke Ellington And His Orchestra56.20Bugle Call Rag 3:03284747Duke Ellington And His OrchestraJoe Venuti & Eddie Lang - 1926-2857.1Black And Blue Bottom 2:48374502Joe Venuti & Eddie Lang57.2Stringing The Blues 2:39374502Joe Venuti & Eddie Lang57.3Stringing The Blues 2:51374502Joe Venuti & Eddie Lang57.4Wild Cat 2:58374502Joe Venuti & Eddie Lang57.5Sunshine 2:59374502Joe Venuti & Eddie Lang57.6Doin’ Things 2:56374502Joe Venuti & Eddie Lang57.7Goin’ Places 2:59374502Joe Venuti & Eddie Lang57.8There'll Be Some Changes Made 2:43334084Red McKenzie & His Music Box57.9My Syncopated Melody Man 3:23334084Red McKenzie & His Music Box57.10I'm Somebody's Somebody 3:08764784Annette Hanshaw/2215900The Four Instrumental StarsFour Instrumental Stars57.11I Like What I Like 2:57764784Annette Hanshaw/2215900The Four Instrumental StarsFour Instrumental Stars57.12Ain't That A Grand And Glorious Feeling? 3:01764784Annette Hanshaw/2215900The Four Instrumental StarsFour Instrumental Stars57.13Who-oo? You-oo! That's Who! 3:06764784Annette Hanshaw/2215900The Four Instrumental StarsFour Instrumental Stars57.14Under The Moon 3:25764784Annette Hanshaw/2215900The Four Instrumental StarsFour Instrumental Stars57.15Kickin' The Cat 3:11334068Joe Venuti's Blue Four57.16Beatin' The Dog 2:41334068Joe Venuti's Blue Four57.17It Was Only A Sunshower 3:11764784Annette Hanshaw57.18Who's That Knockin' 2:50764784Annette Hanshaw57.19Cheese And Crackers 2:56334068Joe Venuti's Blue Four57.20A Mug Of Ale 3:02334068Joe Venuti's Blue Four57.21Penn Beach Blues 2:48334068Joe Venuti's Blue Four57.22Four String Joe 2:58334068Joe Venuti's Blue Four57.23Dinah 2:55334068Joe Venuti's Blue Four57.24The Wild Dog 2:54334068Joe Venuti's Blue FourJoe Venuti & Eddie Lang - 1928-31 58.1The Man From The South 3:03334068Joe Venuti's Blue Four58.2Pretty Trix 3:14334068Joe Venuti's Blue Four58.3Doing Things 3:00334068Joe Venuti's Blue Four58.4Doing Things 3:10334068Joe Venuti's Blue Four58.5Wild Cat 3:11334068Joe Venuti's Blue Four58.6Wild Cat 3:16334068Joe Venuti's Blue Four58.7The Blue Room 2:55334068Joe Venuti's Blue Four58.8Sensation 3:08334068Joe Venuti's Blue Four58.9My Honey’s Lovin’ Arms 3:04334068Joe Venuti's Blue Four58.10Goin’ Home 3:24334068Joe Venuti's Blue Four58.11Runnin’ Ragged 3:05334068Joe Venuti's Blue Four58.12Apple Blossoms 2:49334068Joe Venuti's Blue Four58.13Raggin’ The Scale 2:59334068Joe Venuti's Blue Four58.14Put And Take 3:07334068Joe Venuti's Blue Four58.15Put And Take 3:05334068Joe Venuti's Blue Four58.16The Wild Dog 3:05334068Joe Venuti's Blue Four58.17Really Blue 3:03334068Joe Venuti's Blue Four58.18I’ve Found A New Baby 2:56334068Joe Venuti's Blue Four58.19Sweet Sue, Just You 2:55334068Joe Venuti's Blue Four58.20Pardon Me, Pretty Baby 2:53334068Joe Venuti's Blue Four58.21Little Girl 2:54334068Joe Venuti's Blue Four58.22Little Buttercup (I’ll Never Be The Same) 3:05334068Joe Venuti's Blue Four58.23Tempo Di Modernage (Tempo Di Barrel) 3:05334068Joe Venuti's Blue FourEddie Lang 59.1Eddie’s Twister 2:56301357Eddie Lang59.2April Kisses 3:16301357Eddie Lang59.3Prelude3:09301357Eddie Lang59.4A Little Love, A Little Kiss 3:05301357Eddie Lang59.5Melody Man’s Dream 2:53301357Eddie Lang59.6Perfect 3:06301357Eddie Lang59.7Rainbow Dreams 2:59301357Eddie Lang59.8Add A Little Wiggle 2:57301357Eddie Lang59.9Jeannine I Dream Of Lilac Time 3:01301357Eddie Lang59.10I’ll Never Be The Same 3:12301357Eddie Lang59.11(Norfolk) Church Street Sobbin’ Blues 3:001066758Blind Willie DunnBlind Willie Dunn (Eddie Lang)59.12There’ll Be Some Changes Made 3:111066758Blind Willie DunnBlind Willie Dunn (Eddie Lang)59.13Bugle Call Rag 2:58536545Eddie Lang's OrchestraEd Lang & His Orchestra59.14Freeze An’ Melt 2:55536545Eddie Lang's OrchestraEd Lang & His Orchestra59.15Hot Heels 3:04536545Eddie Lang's OrchestraEd Lang & His Orchestra59.16What Kind Of Man Is You? 3:23536545Eddie Lang's OrchestraEd Lang & His Orchestra59.17Walkin’ The Dog 3:05536545Eddie Lang's OrchestraEd Lang & His Orchestra59.18March Of The Hoodlums 3:21536545Eddie Lang's OrchestraEd Lang & His Orchestra59.19There’s No Other Girl 3:13334068Joe Venuti's Blue Four59.20Now That I Need You, You’re Gone 3:09334068Joe Venuti's Blue Four59.21The Wolf Wobble 3:02334068Joe Venuti's Blue Four59.22To To Blues 3:17334068Joe Venuti's Blue Four59.23Pickin’ My Way (Guitar Mania Pt.1) 3:00301357Eddie Lang&357492Carl Kress59.24Feeling My Way (Guitar Mania Pt.2) 2:57301357Eddie Lang&357492Carl Kress59.25Feeling My Way (Guitar Mania Pt.2) 2:52301357Eddie Lang& 357492Carl KressEddie Lang / Lonnie Johnson60.1My Handy Man 3:08307238Victoria SpiveyWith326797Clarence Williams' Blue Five60.2Organ Grinder Blues 3:15307238Victoria SpiveyWith326797Clarence Williams' Blue Five60.3I’m Busy And You Can’t Come In2:492973029Irene Gibbons&5079472Clarence Williams Jazz Band60.4Jeannine I Dream Of Lilac Times 3:252973029Irene Gibbons&5079472Clarence Williams Jazz Band60.5Work Ox Blues 3:19307314Texas Alexander60.6The Risin’ Sun 3:27307314Texas Alexander60.7Two Tone Stomp 3:06307232Lonnie Johnson (2)60.8Have To Change Key To Play These Blues 3:06307232Lonnie Johnson (2)60.9Tell Me Woman Blues 2:57307314Texas Alexander60.10‘Frisco Train Blues 2:58307314Texas Alexander60.11St. Louis Fair Blues 2:59307314Texas Alexander60.12I Am Calling Blues 3:03307314Texas Alexander60.13In The Bottle Blues 2:547879719Clarence Williams & His Novelty Four60.14What Ya Want Me To Do 2:557879719Clarence Williams & His Novelty Four60.15Jet Black Blues 3:051393521Blind Willie Dunn & His Gin Bottle FourBlind Willie Dunn’s Gin Bottle Four60.16Blue Blood Blues 3:021393521Blind Willie Dunn & His Gin Bottle FourBlind Willie Dunn’s Gin Bottle Four60.17Guitar Blues 3:13307232Lonnie Johnson (2)60.18Bull Frog Moan 3:05307232Lonnie Johnson (2)60.19A Handful Of Riffs 3:11307232Lonnie Johnson (2)60.20Blue Guitars 3:12307232Lonnie Johnson (2)60.21Deep Minor Rhythm 3:05307232Lonnie Johnson (2)60.22Midnight Call Blues 3:21307232Lonnie Johnson (2)60.23Hot Fingers 3:03307232Lonnie Johnson (2)60.24Blue Room Blues 3:07307232Lonnie Johnson (2)Frank Teschemacher / Eddie Condon61.1Sugar 3:08326817McKenzie & Condon's Chicagoans61.2China Boy 2:47326817McKenzie & Condon's Chicagoans61.3Nobody's Sweetheart 3:09326817McKenzie & Condon's Chicagoans61.4Liza 3:04326817McKenzie & Condon's Chicagoans61.5Bull Frog Blues 2:591781640Charles Pierce And His OrchestraCharles Pierce & His Orchestra61.6China Boy 2:261781640Charles Pierce And His OrchestraCharles Pierce & His Orchestra61.7There'll Be Some Changes Made 2:562034453Chicago Rhythm Kings61.8I've Found A New Baby 3:112034453Chicago Rhythm Kings61.9Jazz Me Blues 2:261781640Charles Pierce And His OrchestraCharles Pierce & His Orchestra61.10Sister Kate 2:231781640Charles Pierce And His OrchestraCharles Pierce & His Orchestra61.11Nobody's Sweetheart 3:081781640Charles Pierce And His OrchestraCharles Pierce & His Orchestra61.12Jazz Me Blues 2:413248532Frank Teschemacher's Chicagoans61.13Baby Won't You Please Come Home 2:463248532Frank Teschemacher's Chicagoans61.14Friar's Point Shuffle 2:542687090Jungle Kings (2)61.15Darktown Strutters Ball 2:332687090Jungle Kings (2)61.16One Step To Heaven (Windy City Stomp) 3:01807449Miff Mole's Molers61.17Shim-Me-Sha-Wabble 2:33807449Miff Mole's Molers61.18Oh! Baby 3:013541064Eddie Condon's Quartet61.19Indiana 2:583541064Eddie Condon's Quartet61.20'Round Evening 3:101181345The Dorsey Brothers OrchestraDorsey Brothers' Orchestra61.21Out Of The Dawn 3:081181345The Dorsey Brothers OrchestraDorsey Brothers' Orchestra61.22Cherry 3:191348203The Big Aces61.23Cherry 3:051348203The Big AcesFrank Teschemacher / Eddie Condon62.1Trying To Stop My Crying 3:16335562Wingy Manone & His OrchestraJoe 'Wingy' Manone And His Club Royale Orchestra62.2Isn't There A Little Love 3:11335562Wingy Manone & His OrchestraJoe 'Wingy' Manone And His Club Royale Orchestra62.3Farewell Blues 3:031369934Ted Lewis And His Band62.4Wabash Blues 2:571369934Ted Lewis And His Band62.5Copenhagen 2:322637360Elmer Schoebel And His Friars Society Orchestra62.6Prince Of Wails 2:442637360Elmer Schoebel And His Friars Society Orchestra62.7Wailing Blues 3:171206060The Cellar Boys62.8Wailing Blues 3:091206060The Cellar Boys62.9Barrel House Stomp 3:131206060The Cellar Boys62.10Barrel House Stomp 3:071206060The Cellar Boys62.11Barrel House Stomp 3:061206060The Cellar Boys62.12My Baby Came Home 2:47334084Red McKenzie & His Music Box62.13From Monday On 3:01334084Red McKenzie & His Music Box62.14From Monday On 3:01334084Red McKenzie & His Music Box62.15I'm Sorry I Made You Cry 3:09373808Eddie Condon And His Footwarmers62.16Makin' Friends 3:06373808Eddie Condon And His Footwarmers62.17I'm Gonna Stomp Mr. Henry Lee 3:37357484Eddie Condon And His Hot Shots62.18I'm Gonna Stomp Mr. Henry Lee 3:35357484Eddie Condon And His Hot Shots62.19That's A Serious Thing 3:33357484Eddie Condon And His Hot Shots62.20That's A Serious Thing 3:31357484Eddie Condon And His Hot Shots62.21Indiana 2:54357514The Mound City Blue Blowers62.22Firehouse Blues 2:52357514The Mound City Blue BlowersMiff Mole - 1926-2763.1Alabama Stomp -A3:16339922Red And Miff's Stompers63.2Alabama Stomp -B3:11339922Red And Miff's Stompers63.3Alabama Stomp -C3:03339922Red And Miff's Stompers63.4Stampede -A2:57339922Red And Miff's Stompers63.5Stampede -B2:32339922Red And Miff's Stompers63.6Stampede -C2:44339922Red And Miff's Stompers63.7Hurricane -A3:17339922Red And Miff's Stompers63.8Hurricane -B3:09339922Red And Miff's Stompers63.9Hurricane -C3:13339922Red And Miff's Stompers63.10Black Bottom Stomp -B3:07339922Red And Miff's Stompers63.11Black Bottom Stomp -C3:06339922Red And Miff's Stompers63.12Alexander’s Ragtime Band 2:47807449Miff Mole's Molers63.13Some Sweet Day 3:01807449Miff Mole's Molers63.14Hurricane 3:01807449Miff Mole's Molers63.15Delirium 3:09339922Red And Miff's Stompers63.16Delirium 3:06339922Red And Miff's Stompers63.17Davenport Blues 3:37339922Red And Miff's Stompers63.18Davenport Blues 3:35339922Red And Miff's Stompers63.19Davenport Blues 3:33807449Miff Mole's Molers63.20The Darktown Strutters’ Ball 3:31807449Miff Mole's Molers63.21A Hot Time In The Old Town Tonight 2:54807449Miff Mole's MolersMiff Mole - 1927-2964.1Imagination 2:51807449Miff Mole's Molers64.2Feelin' No Pain 2:49807449Miff Mole's Molers64.3Original Dixieland One Step 2:45807449Miff Mole's Molers64.4My Gal Sal 3:04807449Miff Mole's Molers64.5Honululu Blues 2:46807449Miff Mole's Molers64.6The New Twister 2:58807449Miff Mole's Molers64.7Slippin’ Around 2:46339922Red And Miff's Stompers64.8Slippin’ Around 2:52339922Red And Miff's Stompers64.9Feeling No Pain 3:07339922Red And Miff's Stompers64.10Crazy Rhythm 3:00807449Miff Mole's Molers64.11You Took Advantage Of Me 3:21807449Miff Mole's Molers64.12You’re The Cream In My Coffee 2:59807449Miff Mole's Molers64.13Wild Oat Joe 3:01807449Miff Mole's Molers64.14I’ve Got A Feeling I’m Falling 2:56807449Miff Mole's Molers64.15That’s A Plenty 2:50807449Miff Mole's Molers64.16That’s A Plenty 2:49807449Miff Mole's Molers64.17Birmingham Bertha 3:12807449Miff Mole's Molers64.18Moanin’ Low 3:17807449Miff Mole's Molers64.19You Made Me Love You 2:59807449Miff Mole's Molers64.20After You’ve Gone 3:21807449Miff Mole's MolersRed Nichols - 1926-2765.1Washboard Blues 3:08317885Red Nichols And His Five Pennies65.2Washboard Blues 3:05317885Red Nichols And His Five Pennies65.3That’s No Bargain 2:47317885Red Nichols And His Five Pennies65.4That’s No Bargain 2:45317885Red Nichols And His Five Pennies65.5Buddy’s Habits 2:53317885Red Nichols And His Five Pennies65.6Boneyard Shuffle 3:12317885Red Nichols And His Five Pennies65.7Boneyard Shuffle 3:04317885Red Nichols And His Five Pennies65.8Washboard Blues 2:474468893Arkansas Travelers65.9That’s No Bargain 2:564468893Arkansas Travelers65.10Boneyard Shuffle 2:564468893Arkansas Travelers65.11Alabama Stomp 2:57317885Red Nichols And His Five Pennies65.12Alabama Stomp 2:56317885Red Nichols And His Five Pennies65.13Alabama Stomp 317885Red Nichols And His Five Pennies65.14Hurricane 2:58317885Red Nichols And His Five Pennies65.15Hurricane 2:58317885Red Nichols And His Five Pennies65.16Someday, Sweetheart 3:101637594The Charleston Chasers65.17After You’ve Gone 2:441637594The Charleston Chasers65.18Farewell Blues 2:501637594The Charleston Chasers65.19Davenport Blues 3:141637594The Charleston Chasers65.20Wabash Blues 2:391637594The Charleston Chasers65.21Bugle Call Rag 2:56317885Red Nichols And His Five Pennies65.22Back Beats 2:53317885Red Nichols And His Five PenniesRed Nichols - 192766.1Ja Da 3:074468893Arkansas Travelers66.2Sensation 2:384468893Arkansas Travelers66.3Stompin’ Fool 3:054468893Arkansas Travelers66.4My Gal Sal 3:161637594The Charleston Chasers66.5Delirium 3:121637594The Charleston Chasers66.6Cornfed 2:53317885Red Nichols And His Five Pennies66.7Cornfed 2:51317885Red Nichols And His Five Pennies66.8Five Pennies 2:52317885Red Nichols And His Five Pennies66.9Mean Dog Blues 3:15317885Red Nichols And His Five Pennies66.10Riverboat Shuffle 3:01317885Red Nichols And His Five Pennies66.11Riverboat Shuffle 3:04317885Red Nichols And His Five Pennies66.12Eccentric 3:01317885Red Nichols And His Five Pennies66.13Ida, Sweet As Apple Cider 2:57317885Red Nichols And His Five Pennies66.14Ida, Sweet As Apple Cider 2:49317885Red Nichols And His Five Pennies66.15Feelin' No Pain 2:58317885Red Nichols And His Five Pennies66.16Five Pennies 3:151637594The Charleston Chasers66.17Sugar Foot Strut 3:131637594The Charleston Chasers66.18Imagination 2:491637594The Charleston Chasers66.19Feelin' No Pain 2:451637594The Charleston Chasers66.20Birmingham Breakdown 2:494468893Arkansas Travelers66.21Red Head Blues 2:424468893Arkansas Travelers66.22I Ain’t Got Nobody 2:424468893Arkansas Travelers66.23Sugar 3:17339931Red Nichols' Stompers66.24Make My Cot Where The Cot- Cot- Cotton Grows 3:19339931Red Nichols' StompersMcKinney’s Cotton Pickers - 1928-2967.1Four Or Five Times 2:47307341McKinney's Cotton Pickers67.2Put It There 2:393611897The New McKinney's Cotton Pickers67.3Crying And Sighing 3:033611897The New McKinney's Cotton Pickers67.4Milenberg Joys 2:54307341McKinney's Cotton Pickers67.5Milenberg Joys 2:51307341McKinney's Cotton Pickers67.6Cherry 3:35307341McKinney's Cotton Pickers67.7Cherry 3:25307341McKinney's Cotton Pickers67.8Stop Kidding 2:25307341McKinney's Cotton Pickers67.9Nobody's Sweetheart 2:47307341McKinney's Cotton Pickers67.10Some Sweet Day 2:34307341McKinney's Cotton Pickers67.11Shim-Me-Sha-Wabble 2:34307341McKinney's Cotton Pickers67.12Paducah 2:59373810Chocolate Dandies67.13Star Dust 3:09373810Chocolate Dandies67.14Birmingham Breakdown 2:47373810Chocolate Dandies67.15Four Or Five Times 3:15373810Chocolate Dandies67.16Tight Like That 2:41307341McKinney's Cotton Pickers67.17There's A Rainbow 'Round Your Shoulder 2:42307341McKinney's Cotton Pickers67.18It's A Precious Little Thing Called Love 2:48307341McKinney's Cotton Pickers67.19Save It, Pretty Mama 2:42307341McKinney's Cotton Pickers67.20I Found A New Baby 3:18307341McKinney's Cotton Pickers67.21Will You, Won't You Be My Babe0:07307341McKinney's Cotton PickersMcKinney’s Cotton Pickers - 1929-3068.1Beedle Um Bum 3:18307341McKinney's Cotton Pickers68.2Do Something 2:32307341McKinney's Cotton Pickers68.3Selling That Stuff 2:43307341McKinney's Cotton Pickers68.4Plain Dirt 2:39307341McKinney's Cotton Pickers68.5Gee Baby, Ain't I Good To You? 3:23307341McKinney's Cotton Pickers68.6I'd Love It 3:04307341McKinney's Cotton Pickers68.7The Way I Feel Today 2:45307341McKinney's Cotton Pickers68.8Miss Hannah 2:57307341McKinney's Cotton Pickers68.9Peggy 3:22307341McKinney's Cotton Pickers68.10Wherever There's A Will 2:58307341McKinney's Cotton Pickers68.11Wherever There's A Will 3:01307341McKinney's Cotton Pickers68.12I'll Make Fun For You 2:45307341McKinney's Cotton Pickers68.13Words Can't Express The Way I Feel 3:16307341McKinney's Cotton Pickers68.14If I Could Be With You 3:28307341McKinney's Cotton Pickers68.15Then Someone's In Love 3:11307341McKinney's Cotton Pickers68.16Honeysuckle Rose3:11307341McKinney's Cotton Pickers68.17Honeysuckle Rose3:16307341McKinney's Cotton Pickers68.18Zonky 3:03307341McKinney's Cotton Pickers68.19Travelin' All Alone 3:24307341McKinney's Cotton Pickers68.20Just A Shade Corn 2:36307341McKinney's Cotton Pickers68.21Baby Won't You Please Come Home3:11307341McKinney's Cotton Pickers68.22Okay Baby 3:03307341McKinney's Cotton Pickers68.23Blues Sure Have Got Me 3:13307341McKinney's Cotton PickersBix Beiderbecke / Frank Trumbauer - 1927 69.1Trumbology 3:18317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.2Clarinet Marmalade 2:32317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.3Singin' The Blues 2:43317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.4Ostrich Walk 2:39317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.5Riverboat Shuffle 3:23317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.6I'm Coming Virginia 3:04317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.7Way Down Yonder In New Orleans 2:45317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.8For No Reason At All In C 2:57301376Frankie TrumbauerTram,282067Bix BeiderbeckeBixAnd301357Eddie LangLang69.9Three Blind Mice 3:22317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.10Blue River 2:58317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.11There's A Cradle In Caroline 3:01317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.12In A Mist (Bixology) 2:45282067Bix Beiderbecke(Piano Solo)69.13Wringin' And Twistin'3:16301376Frankie TrumbauerTram,282067Bix BeiderbeckeBixAnd301357Eddie LangLang69.14Humpty Dumpty 3:28317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.15Krazy Kat 3:11317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.16The Baltimore 3:11317889Frankie Trumbauer And His OrchestraFrank Trumbauer & His Orchestra69.17There Ain't No Land Like Dixieland 3:161262599Broadway Bell-HopsBroadway Bell Hops69.18There's A Cradle In Caroline 3:031262599Broadway Bell-HopsBroadway Bell Hops69.19Just An Hour Of Love 3:242563419Benny Meroff And His Orchestra69.20I'm Wonderin' Who 2:362563419Benny Meroff And His Orchestra69.21At The Jazz Band Ball 3:11326834Bix Beiderbecke And His Gang69.22Royal Garden Blues 3:03326834Bix Beiderbecke And His Gang69.23The Jazz Me Blues 3:13326834Bix Beiderbecke And His GangBix Beiderbecke / Frank Trumbauer - 1927-2870.1Three Blind Mice 3:181998411The Chicago LoopersChicago Loopers/1998409Willard Robison & His Orchestra70.2Three Blind Mice 2:321998411The Chicago LoopersChicago Loopers/1998409Willard Robison & His Orchestra70.3Clorinda 2:431998411The Chicago LoopersChicago Loopers/1998409Willard Robison & His Orchestra70.4Clorinda 2:391998411The Chicago LoopersChicago Loopers/1998409Willard Robison & His Orchestra70.5I'm More Than Satisfied 3:231998411The Chicago LoopersChicago Loopers/1998409Willard Robison & His Orchestra70.6I'm More Than Satisfied 3:041998411The Chicago LoopersChicago Loopers/1998409Willard Robison & His Orchestra70.7Goose Pimples 2:45326834Bix Beiderbecke And His GangBix Beiderbecke & His Gang/4925293New Orleans Lucky Seven70.8Sorry 2:57326834Bix Beiderbecke And His GangBix Beiderbecke & His Gang/4925293New Orleans Lucky Seven70.9Cryin' All Day 3:22317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.10A Good Man Is Hard To Find 2:58317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.11Since My Best Gal Turned Me Down 3:01326834Bix Beiderbecke And His Gang70.12Sugar 2:453577313Russell Gray And His Orchestra70.13There'll Come A Time 3:16317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.14Jubilee 3:28317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.15Mississippi Mud (Barris) 3:11317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.16Our Bungalow Of Dreams 3:11317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.17Lila 3:16317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.18Borneo 3:03317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.19My Pet 3:24317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.20My Pet 2:36317889Frankie Trumbauer And His OrchestraFrank Trumbauer And His Orchestra70.21Somebody Stole My Gal 3:11326834Bix Beiderbecke And His Gang70.22Thou Swell 3:03326834Bix Beiderbecke And His Gang70.23Thou Swell 3:13326834Bix Beiderbecke And His GangAndy Kirk - 1929-3171.1Mess-A-Stomp 2:42335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.2Blue Clarinet Stomp 2:51335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.3Blue Clarinet Stomp 2:53335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.4Cloudy 2:58335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.5Casey Jones Special 2:57335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.6Sumpin' Slow And Low 3:122356127John Williams' Memphis Stompers71.7Lotta Sax Appeal 2:292356127John Williams' Memphis Stompers71.8Corky Stomp 2:41335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.9Froggy Bottom 3:11335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.10I Lost My Gal From Memphis 3:16335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.11Loose Ankles 3:20335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.12Snag It 3:07335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.13Sweet And Hot 3:09335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.14Mary's Idea 3:08335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.15Once Or Twice 3:02335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.16Gettin' Off A Mess 2:48335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.17Dallas Blues 2:41335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.18Travellin' That Rocky Road 3:06335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.19Honey, Just For You 3:14335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.20You Rascal, You 2:42335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.21Saturday 3:19335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.22Sophomore 3:00335595Andy Kirk And His Clouds Of JoyAndy Kirk And His Twelve Clouds Of Joy71.23Casey Jones Blues 3:03557968Blanche Calloway And Her Joy Boys71.24There's Rhythm In The River 3:02557968Blanche Calloway And Her Joy Boys71.25I Need Lovin'2:49557968Blanche Calloway And Her Joy BoysChicago South Side - 1928-31 72.1Endurance Stomp 2:321781645Junie C. Cobb And His Grains Of Corn72.2Endurance Stomp 2:401781645Junie C. Cobb And His Grains Of Corn72.3Yearning And Blue 3:122965874E. C. Cobb And His Corn-Eaters72.4Yearning And Blue 3:132965874E. C. Cobb And His Corn-Eaters72.5Barrelhouse Stomp 2:557231219State Street Stompers72.6Rolling Mill 3:137231219State Street Stompers72.7Rolling Mill 3:117231219State Street Stompers72.8Panama Blues 3:091781645Junie C. Cobb And His Grains Of Corn72.9Shake That Jelly Roll 2:581781645Junie C. Cobb And His Grains Of Corn72.10Don’t Cry, Honey 3:171781645Junie C. Cobb And His Grains Of Corn72.11Smoke Shop Drag 2:561781645Junie C. Cobb And His Grains Of Corn72.12Boot That Thing 3:214553317Windy Rhythm Kings72.13South African Blues 3:134553317Windy Rhythm Kings72.14Piggly Wiggly Blues 2:471781645Junie C. Cobb And His Grains Of Corn72.15Once Or Twice 3:15505437State Street Ramblers72.16Tiger Moan 2:48505437State Street Ramblers72.17Barrel House Stomp 2:39505437State Street Ramblers72.18Georgia Grind 3:05505437State Street Ramblers72.19Careless Love 3:25505437State Street Ramblers72.20Kentucky Blues 2:57505437State Street Ramblers72.21I Want To Be Your Lovin’ Man 2:41505437State Street Ramblers72.22South African Blues 3:17505437State Street Ramblers72.23Me And The Blues 3:08505437State Street Ramblers72.24Sic ‘Em, Tige’ 2:56505437State Street RamblersHarlem Meets Chicago Jazz - 1929-32 73.1The Minor Drag 2:42373811Fats Waller And His Buddies73.2Harlem Fuss 3:24373811Fats Waller And His Buddies73.3Looking Good But Feeling Bad 2:38373811Fats Waller And His Buddies73.4I Need Someone Like You 3:36373811Fats Waller And His Buddies73.5Hello Lola 3:15373811Fats Waller And His Buddies73.6One Hour 3:28373811Fats Waller And His Buddies73.7Lookin' For Another Sweetie 3:07373811Fats Waller And His Buddies73.8Ridin' But Walkin' 2:32373811Fats Waller And His Buddies73.9Won't You Get Off It, Please? 3:01373811Fats Waller And His Buddies73.10When I'm Alone 3:31373811Fats Waller And His Buddies73.11Girls Like You Were Meant For Boys Like Me 2:584667930McKenzie's Mound City Blue Blowers73.12Arkansas Blues 2:364667930McKenzie's Mound City Blue Blowers73.13Georgia On My Mind 3:224667930McKenzie's Mound City Blue Blowers73.14I Can't Believe That You're In Love With Me3:094667930McKenzie's Mound City Blue Blowers73.15Darktown Strutters' Ball 3:294667930McKenzie's Mound City Blue Blowers73.16You Rascal, You 3:044667930McKenzie's Mound City Blue Blowers73.17Bugle Call Rag 2:452444767Billy Banks And His Orchestra73.18Bugle Call Rag 2:482444767Billy Banks And His Orchestra73.19Oh Peter (You’re So Nice) 3:032444767Billy Banks And His Orchestra73.20Oh Peter (You’re So Nice) 3:072444767Billy Banks And His Orchestra73.21Margie 2:482444767Billy Banks And His OrchestraHarlem Meets Chicago Jazz (The Rhythmakers) - 193274.1Oh Peter (You’re So Nice) 2:562444767Billy Banks And His Orchestra74.2Oh Peter (You’re So Nice) 3:012444767Billy Banks And His Orchestra74.3Spider Crawl 2:592444767Billy Banks And His Orchestra74.4Who's Sorry Now 3:052444767Billy Banks And His Orchestra74.5Take It Slow And Easy 2:382444767Billy Banks And His Orchestra74.6Bald Headed Mama 2:482444767Billy Banks And His Orchestra74.7I Would Do Anything For You 2:572444767Billy Banks And His Orchestra74.8I Would Do Anything For You 2:582444767Billy Banks And His Orchestra74.9Mean Old Bed Bug Blues 3:022444767Billy Banks And His Orchestra74.10Mean Old Bed Bug Blues 2:512444767Billy Banks And His Orchestra74.11Yellow Dog Blues 3:122444767Billy Banks And His Orchestra74.12Yellow Dog Blues 3:132444767Billy Banks And His Orchestra74.13Yes Suh! 2:462444767Billy Banks And His Orchestra74.14Yes Suh! 2:472444767Billy Banks And His Orchestra74.15Who Stole The Lock 2:392444767Billy Banks And His Orchestra74.16Who Stole The Lock 2:402444767Billy Banks And His Orchestra74.17A Shine On Your Shoes 3:002444767Billy Banks And His Orchestra74.18A Shine On Your Shoes 3:012444767Billy Banks And His Orchestra74.19A Shine On Your Shoes 2:522444767Billy Banks And His Orchestra74.20It's Gonna Be You 2:472444767Billy Banks And His Orchestra74.21Someone Stole Gabriel's Horn 3:032444767Billy Banks And His Orchestra74.22Someone Stole Gabriel's Horn 3:002444767Billy Banks And His OrchestraThe Missourians - 1927-30 / Alphonso Trent - 1928-3375.1I've Found A New Baby3:10339888Andy Preer And The Cotton Club Orchestra75.2Market Street Stomp3:261678801The Missourians75.3Ozark Mountain Blues3:031678801The Missourians75.4You'll Cry For Me, But I'll Be Gone3:041678801The Missourians75.5Missouri Moan3:001678801The Missourians75.6I've Got Someone2:551678801The Missourians75.7"400" Hop2:341678801The Missourians75.8Vine Street Drag2:531678801The Missourians75.9Scotty Blues3:081678801The Missourians75.10Two Hundred Squabble2:561678801The Missourians75.11Swingin' Dem Cats2:461678801The Missourians75.12Stoppin' The Traffic3:031678801The Missourians75.13Prohibition Blues3:211678801The Missourians75.14Louder And Funnier 3:102846843Alphonso Trent And His Orchestra75.15Gilded Kisses3:002846843Alphonso Trent And His Orchestra75.16Black And Blue Rhapsody2:532846843Alphonso Trent And His Orchestra75.17Nightmare3:092846843Alphonso Trent And His Orchestra75.18After You've Gone 3:062846843Alphonso Trent And His Orchestra75.19St. James Infirmary 2:582846843Alphonso Trent And His Orchestra75.20Clementine3:132846843Alphonso Trent And His Orchestra75.21I've Found A New Baby 3:142846843Alphonso Trent And His OrchestraCab Calloway 76.1Gotta Darn Good Reason (For Bein’ Good) 3:13179389Cab Calloway And His Orchestra76.2St. Louis Blues 2:56179389Cab Calloway And His Orchestra76.3Sweet Jenny Lee 3:07179389Cab Calloway And His Orchestra76.4Happy Feet 2:37179389Cab Calloway And His Orchestra76.5Is That Religion? 2:54179389Cab Calloway And His Orchestra76.6Some Of These Days 2:57179389Cab Calloway And His Orchestra76.7Nobody's Sweetheart Now 3:20179389Cab Calloway And His Orchestra76.8St. James Infirmary 3:06179389Cab Calloway And His Orchestra76.9Minnie The Moocher 3:14179389Cab Calloway And His Orchestra76.10Doin' The Rumba 2:58179389Cab Calloway And His Orchestra76.11Mood Indigo 2:28179389Cab Calloway And His Orchestra76.12Farewell Blues 2:39179389Cab Calloway And His Orchestra76.13I'm Crazy 'Bout My Baby 2:37179389Cab Calloway And His Orchestra76.14Creole Love Song 2:57179389Cab Calloway And His Orchestra76.15The Levee Low-Down 3:00179389Cab Calloway And His Orchestra76.16Blues In My Heart 2:57179389Cab Calloway And His Orchestra76.17Black Rhythm 3:15179389Cab Calloway And His Orchestra76.18Six Or Seven Times 3:23179389Cab Calloway And His Orchestra76.19It Looks Like Susie 2:57179389Cab Calloway And His Orchestra76.20Sweet Georgia Brown 2:38179389Cab Calloway And His Orchestra76.21Basin Street Blues 2:59179389Cab Calloway And His Orchestra76.22Bugle Call Rag 2:33179389Cab Calloway And His Orchestra76.23You Rascal, You 3:17179389Cab Calloway And His OrchestraCalifornia Ramblers 1923-27 (Featuring Adrian Rollini)77.1Louisville 3:24708256California Ramblers77.2Copenhagen 2:51708256California Ramblers77.3Gotta Getta Girl 2:58708256California Ramblers77.4Dustin’ The Donkey 3:071990693Golden Gate Orchestra77.5Tiger Rag 3:101990693Golden Gate Orchestra77.6Ev’rything Is Hotsy Totsy Now 3:14708256California Ramblers77.7Sweet Georgia Brown 2:58708256California Ramblers77.8Collegiate 4:161990693Golden Gate Orchestra77.9Collegiate 4:141990693Golden Gate Orchestra77.10Look Who’s Here 4:011990693Golden Gate Orchestra77.11Look Who’s Here 3:591990693Golden Gate Orchestra77.12Stockholm Stomp 4:361990693Golden Gate Orchestra77.13Sidewalk Blues 4:171990693Golden Gate Orchestra77.14Sidewalk Blues 4:161990693Golden Gate Orchestra77.15Pardon The Glove 3:04708256California Ramblers77.16Yes She Do - No She Don't 2:45708256California Ramblers77.17Lazy Weather 3:17708256California Ramblers77.18Vo-Do-Do-De-O Blues 3:11708256California Ramblers77.19Beale Street Blues 2:59708256California Ramblers77.20Delirium 3:13708256California Ramblers77.21Farewell Blues 3:05708256California RamblersNew York Jazz Groups - 1924-3078.1Georgia Blues 2:513060383Lanin's Arkansaw Travelers78.2Lost My Baby Blues 2:573060383Lanin's Arkansaw Travelers78.3Red Hot Henry Brown 3:071637594The Charleston Chasers78.4Loud Speakin' Papa 3:181637594The Charleston Chasers78.5Hard To Get Gertie 2:472976479Original Indiana Five78.6Pensacola 2:582976479Original Indiana Five78.7Clarinet Marmalade 2:56339892Phil Napoleon & His Orchestra78.8Take Your Finger Out Of Your Mouth 3:06339892Phil Napoleon & His Orchestra78.9Go Joe Go 2:55339892Phil Napoleon & His Orchestra78.10It’s Right Here For You 3:11229639Tommy DorseyTom Dorsey78.11Tiger Rag 2:52229639Tommy DorseyTom Dorsey78.12Red Head 3:047879744New Orleans Black Birds78.13Playing The Blues 2:387879744New Orleans Black Birds78.14Mean To Me 3:23339875Napoleon's Emperors78.15My Kinda Love 3:11339875Napoleon's Emperors78.16Getting Hot (Waterloo) 2:47339875Napoleon's Emperors78.17Anything 3:18339875Napoleon's Emperors78.18You Can’t Cheat A Cheater 3:31339875Napoleon's Emperors78.19You Can’t Cheat A Cheater 3:13339875Napoleon's Emperors78.20Ain’t Misbehavin’ 3:081637594The Charleston Chasers78.21Moanin’ Low 3:411637594The Charleston Chasers78.22Red Hair And Freckles 2:491637594The Charleston Chasers78.23Lovable And Sweet 2:531637594The Charleston Chasers78.24Cinderella Brown 3:311637594The Charleston Chasers78.25Sing, You Sinners 3:131637594The Charleston ChasersFats Waller - 1927-3179.1Fats Waller Stomp 3:25253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.2Savannah Blues 3:02253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.3Won’t You Take Me Home2:47253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.4He’s Gone Away 2:40253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.5Red Hot Dan 3:26253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.6Geechee Stomp 3:06253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.7Please Take Me Out Of Jail 2:50253482Fats WallerThomas WallersWith3431228Morris's Hot Babies79.8Willow Tree 3:242575958Louisiana Sugar Babes79.9Willow Tree 3:322575958Louisiana Sugar Babes79.10‘Sippi 3:142575958Louisiana Sugar Babes79.11‘Sippi 3:102575958Louisiana Sugar Babes79.12Thou Swell 3:042575958Louisiana Sugar Babes79.13Thou Swell 3:012575958Louisiana Sugar Babes79.14Persian Rug 3:352575958Louisiana Sugar Babes79.15That's How I Feel Today 3:04373812The Little Chocolate Dandies79.16Six Or Seven Times 3:26373812The Little Chocolate Dandies79.17St Louis Blues 3:05253482Fats Waller&307413Bennie PayneBennie Paine79.18After You’ve Gone 3:27253482Fats Waller&307413Bennie PayneBennie Paine79.19Egyptian Ella 3:211369934Ted Lewis And His Band79.20I’m Crazy ‘Bout My Baby 3:081369934Ted Lewis And His Band79.21Dallas Blues 3:221369934Ted Lewis And His Band79.22Royal Garden Blues 3:051369934Ted Lewis And His Band79.23I’m Crazy ‘Bout My Baby 3:22253482Fats Waller79.24Draggin‘ My Heart Around 3:22253482Fats WallerJames P. Johnson - 1927-3080.1All That I Had Is Gone 2:48313035James Price JohnsonJames P. Johnson80.2Snowy Morning Blues 2:43313035James Price JohnsonJames P. Johnson80.3All That I Had Is Gone 3:083047446Original Jazz Hounds80.4Lucy Long 3:033047446Original Jazz Hounds80.5Skiddle-De-Scow 2:415773806Johnson's Jazzers80.6Can I Get You 2:585773806Johnson's Jazzers80.7What’s The Use Of Being Alone? 2:391488036Johnny Dunn's Original Jazz Hounds80.8Original Bugle Blues 2:351488036Johnny Dunn's Original Jazz Hounds80.9Chicago Blues 2:452204244Jimmy Johnson And His Orchestra80.10Mournful Tho'ts 2:572204244Jimmy Johnson And His Orchestra80.11Daylight Savin‘ Blues 2:512768237The Gulf Coast SevenGulf Coast Seven80.12Georgia’s Always On My Mind 2:512768237The Gulf Coast SevenGulf Coast Seven80.13Riffs 3:06313035James Price JohnsonJimmy Johnson80.14Feelin’ Blue 2:58313035James Price JohnsonJimmy Johnson80.15Put Your Mind Right On It 3:192204244Jimmy Johnson And His Orchestra80.16Fare Thee Honey Blues 3:242204244Jimmy Johnson And His Orchestra80.17You Don't Understand 2:582204244Jimmy Johnson And His Orchestra80.18You've Got To Be Modernistic 3:062204244Jimmy Johnson And His Orchestra80.19Crying For The Carolines 3:03313035James Price JohnsonJimmy Johnson80.20What Is This Thing Called Love? 3:10313035James Price JohnsonJimmy Johnson80.21You’ve Got To Be Modernistic 3:17313035James Price JohnsonJimmy Johnson80.22Jingles 3:31313035James Price JohnsonJimmy Johnson80.23How Could I Be Blue? 3:23307393Clarence Williams&313035James Price JohnsonJames P. Johnson80.24I’ve Found A New Baby 2:54307393Clarence Williams&313035James Price JohnsonJames P. JohnsonBenny Goodman - 1927-2981.1Waitin' For Katie 3:04357493Ben Pollack And His Orchestra81.2Waitin' For Katie 3:06357493Ben Pollack And His Orchestra81.3Memphis Blues 3:08357493Ben Pollack And His Orchestra81.4Memphis Blues 3:07357493Ben Pollack And His Orchestra81.5A Jazz Holiday 2:453351947Benny Goodman's Boys81.6Wolverine Blues 2:573351947Benny Goodman's Boys81.7Jungle Blues 3:173351947Benny Goodman's Boys81.8Jungle Blues 3:163351947Benny Goodman's Boys81.9Room 1411 2:433351947Benny Goodman's Boys81.10Room 1411 2:393351947Benny Goodman's Boys81.11Blue 2:563351947Benny Goodman's Boys81.12Shirt Tail Stomp 3:053351947Benny Goodman's Boys81.13That's A Plenty 2:49311733Benny Goodman Trio81.14Clarinetitis 2:31311733Benny Goodman Trio81.15Dardanella 2:591402044Irving Mills And His Hotsy Totsy Gang81.16Couldn't If I Wanted To 3:141402044Irving Mills And His Hotsy Totsy Gang81.17Since You Went Away 2:591402044Irving Mills And His Hotsy Totsy Gang81.18Whoopee Stomp 2:502077601Whoopee Makers81.19Whoopee Stomp 2:522077601Whoopee Makers81.20Baby 2:502077601Whoopee Makers81.21Bugle Call Rag 2:352077601Whoopee Makers81.22Chinatown, My Chinatown 3:15317885Red Nichols And His Five PenniesBenny Goodman - 1929-3382.1Freshman Hop 3:191342921Jack Pettis And His Orchestra82.2Sweetest Melody 3:051342921Jack Pettis And His Orchestra82.3Bag O’Blues 2:441342921Jack Pettis And His Orchestra82.4After A While 3:013351947Benny Goodman's Boys82.5Muskrat Scramble 2:143351947Benny Goodman's Boys82.6The Man From The South 2:504238572Rube Bloom And His Bayou Boys82.7St. James Infirmary 3:144238572Rube Bloom And His Bayou Boys82.8On Revival Day (Part 1)2:39317885Red Nichols And His Five Pennies82.9On Revival Day (Part 2)2:37317885Red Nichols And His Five Pennies82.10When Your Lover Has Gone 3:111637594The Charleston Chasers82.11Walkin' My Baby Back Home 3:011637594The Charleston Chasers82.12Basin Street Blues3:091637594The Charleston Chasers82.13Beale Street Blues 2:591637594The Charleston Chasers82.14Beale Street Blues 3:202075040Eddie Lang-Joe Venuti And Their All Star OrchestraEddie Lang-Joe Venuti & Their All-Star Orchestra82.15After You've Gone 3:012075040Eddie Lang-Joe Venuti And Their All Star OrchestraEddie Lang-Joe Venuti & Their All-Star Orchestra82.16Farewell Blues 2:582075040Eddie Lang-Joe Venuti And Their All Star OrchestraEddie Lang-Joe Venuti & Their All-Star Orchestra82.17Someday, Sweetheart 3:122075040Eddie Lang-Joe Venuti And Their All Star OrchestraEddie Lang-Joe Venuti & Their All-Star Orchestra82.18Sweet Lorraine 3:131993780Joe Venuti And His Blue Six82.19Doin' The Uptown Lowdown 3:161993780Joe Venuti And His Blue Six82.20The Jazz Me Blues 3:111993780Joe Venuti And His Blue Six82.21In De Ruff 3:071993780Joe Venuti And His Blue SixJack Teagarden - 1928-2983.1She's A Great, Great Girl 3:223972983Goody And His Good Timers83.2'Cause I'm In Love 2:513972983Goody And His Good Timers83.3Digga Digga Do 2:493972983Goody And His Good Timers83.4Digga Digga Do 2:503972983Goody And His Good Timers83.5Tiger Rag 2:502077601Whoopee Makers83.6Makin' Friends2:552077601Whoopee Makers83.7Sweet Liza 2:592077601Whoopee Makers83.8Dirty Dog 2:552077601Whoopee Makers83.9Would You Be Happy? 2:432077601Whoopee Makers83.10You’re My Waterloo 2:262077601Whoopee Makers83.11Indiana 2:38317885Red Nichols And His Five Pennies83.12Indiana 2:38317885Red Nichols And His Five Pennies83.13Dinah 3:13317885Red Nichols And His Five Pennies83.14On The Alamo 3:03317885Red Nichols And His Five Pennies83.15On The Alamo 3:05317885Red Nichols And His Five Pennies83.16That Da Da Strain 3:121348288Louisiana Rhythm Kings83.17Basin Street Blues 3:171348288Louisiana Rhythm Kings83.18Last Cent 3:001348288Louisiana Rhythm Kings83.19Who Cares? 3:19317885Red Nichols And His Five Pennies83.20Rose Of Washington Square2:53317885Red Nichols And His Five Pennies83.21Tailspin Blues 3:08357514The Mound City Blue Blowers83.22Never Had A Reason To Believe In You 3:00357514The Mound City Blue BlowersJack Teagarden - 1930-3184.1St. James Infirmary 3:052077608Mills Merry Makers84.2When You're Smiling 3:122077608Mills Merry Makers84.3Farewell Blues 2:522077608Mills Merry Makers84.4I'm Just Wild About Harry 3:10317885Red Nichols And His Five Pennies84.5After You've Gone 3:13317885Red Nichols And His Five Pennies84.6I Want To Be Happy 2:56317885Red Nichols And His Five Pennies84.7Tea For Two 3:03317885Red Nichols And His Five Pennies84.8Peg O'My Heart 3:12317885Red Nichols And His Five Pennies84.9Peg O'My Heart 3:11317885Red Nichols And His Five Pennies84.10Sweet Georgia Brown 2:47317885Red Nichols And His Five Pennies84.11China Boy 2:49317885Red Nichols And His Five Pennies84.12The Sheik Of Araby 3:12317885Red Nichols And His Five Pennies84.13Shim-Me-Sha-Wabble 2:59317885Red Nichols And His Five Pennies84.14Shim-Me-Sha-Wabble 2:59317885Red Nichols And His Five Pennies84.15That’s The Kind Of Man For Me 3:142984645New Orleans Ramblers84.16I’m One Of God’s Children 3:222984645New Orleans Ramblers84.17No Wonder I’m Blue 3:312984645New Orleans Ramblers84.18You Rascal You 3:13340731Jack Teagarden And His Orchestra84.19That’s What I Like About You 3:25340731Jack Teagarden And His Orchestra84.20Chances Are 3:13340731Jack Teagarden And His Orchestra84.21I Got The Ritz From The One I Love 3:23340731Jack Teagarden And His OrchestraFletcher Henderson - 1923 & 2485.1Beale Street Mama 3:13317895Fletcher Henderson And His Orchestra85.2Don't You Think You'll Be Missed 2:47317895Fletcher Henderson And His Orchestra85.3Down Hearted Blues 2:56317895Fletcher Henderson And His Orchestra85.4Gulf Coast Blues 3:06317895Fletcher Henderson And His Orchestra85.5When You Walked Out 3:17317895Fletcher Henderson And His Orchestra85.6Dicty Blues 2:39317895Fletcher Henderson And His Orchestra85.7Do Doodle Oom 2:43317895Fletcher Henderson And His Orchestra85.8Just Hot 2:59317895Fletcher Henderson And His Orchestra85.9Old Black Joes' Blues 3:04317895Fletcher Henderson And His Orchestra85.1031st Street Blues 3:09317895Fletcher Henderson And His Orchestra85.11Cotton Picker's Ball 2:57317895Fletcher Henderson And His Orchestra85.12Lots O'Mama3:01317895Fletcher Henderson And His Orchestra85.13Chicago Blues 2:55317895Fletcher Henderson And His Orchestra85.14Feelin’ The Way I Do 3:02317895Fletcher Henderson And His Orchestra85.15Tea Pot Dome Blues 2:59317895Fletcher Henderson And His Orchestra85.16Mobile Blues 3:09317895Fletcher Henderson And His Orchestra85.17Houston Blues 3:08317895Fletcher Henderson And His Orchestra85.18Muscle Shoals Blues 3:20317895Fletcher Henderson And His Orchestra85.19The Gouge Of Armour Avenue 3:00317895Fletcher Henderson And His Orchestra85.20Hard Hearted Hannah 3:03317895Fletcher Henderson And His Orchestra85.21Charley My Boy 3:04317895Fletcher Henderson And His Orchestra85.22A New Kind Of Man2:59317895Fletcher Henderson And His Orchestra85.23The Meanest Kind O’Blues 3:12317895Fletcher Henderson And His OrchestraFletcher Henderson - 1925 & 2686.1Nobody's Rose2:57317895Fletcher Henderson And His Orchestra86.2Pensacola 3:03317895Fletcher Henderson And His Orchestra86.3Florida Stomp2:56326851The Dixie Stompers86.4Get It Fixed 3:00326851The Dixie Stompers86.5Chinese Blues3:11326851The Dixie Stompers86.6Panama 3:15326851The Dixie Stompers86.7Dynamite 2:57326851The Dixie Stompers86.8Jackass Blues 3:13326851The Dixie Stompers86.9Jackass Blues 3:11326851The Dixie Stompers86.10Static Strut 3:06326851The Dixie Stompers86.11The Stampede 3:12317895Fletcher Henderson And His Orchestra86.12Jackass Blues 3:10317895Fletcher Henderson And His Orchestra86.13Off To Buffalo 2:49326851The Dixie Stompers86.14Brotherly Love 2:56326851The Dixie Stompers86.15Alabama Stomp 3:09326851The Dixie Stompers86.16The Henderson Stomp 2:51317895Fletcher Henderson And His Orchestra86.17The Chant 2:57317895Fletcher Henderson And His Orchestra86.18Clarinet Marmalade 2:52317895Fletcher Henderson And His Orchestra86.19Clarinet Marmalade 2:48317895Fletcher Henderson And His Orchestra86.20Hot Mustard 2:38317895Fletcher Henderson And His OrchestraFletcher Henderson - 1927 87.1Baby Won't You Please Come Home 2:55317895Fletcher Henderson And His Orchestra87.2Some Of These Days 2:57317895Fletcher Henderson And His Orchestra87.3Have It Ready 2:46326851The Dixie Stompers87.4Ain't She Sweet 2:54326851The Dixie Stompers87.5Snag It 3:09326851The Dixie Stompers87.6Rocky Mountain Blues 2:43317895Fletcher Henderson And His Orchestra87.7Tozo 2:55317895Fletcher Henderson And His Orchestra87.8Fidgety Feet 2:54317895Fletcher Henderson And His Orchestra87.9Fidgety Feet 2:57317895Fletcher Henderson And His Orchestra87.10Sensation 2:47317895Fletcher Henderson And His Orchestra87.11St. Louis Shuffle 2:51317895Fletcher Henderson And His Orchestra87.12Variety Stomp3:04317895Fletcher Henderson And His Orchestra87.13P.D.Q. Blues 2:42317895Fletcher Henderson And His Orchestra87.14Livery Stable Blues 2:49317895Fletcher Henderson And His Orchestra87.15Whiteman Stomp 2:46317895Fletcher Henderson And His Orchestra87.16I'm Coming Virginia 3:06317895Fletcher Henderson And His Orchestra87.17Cornfed! 2:50326851The Dixie Stompers87.18Variety Stomp 3:05326851The Dixie Stompers87.19The St. Louis Blues 3:05326851The Dixie Stompers87.20Black Maria 2:51326851The Dixie Stompers87.21Goose Pimples 3:01326851The Dixie Stompers87.22(The) Baltimore 3:06326851The Dixie Stompers87.23Hop Off 2:55317895Fletcher Henderson And His OrchestraFletcher Henderson - 1928-3188.1King Porter Stomp 2:57317895Fletcher Henderson And His Orchestra88.2"D" Natural Blues 3:28317895Fletcher Henderson And His Orchestra88.3Oh, Baby! 2:46326851The Dixie Stompers88.4Feelin' Good 3:25326851The Dixie Stompers88.5I'm Feelin' Devilish 2:44326851The Dixie Stompers88.6Hop Off 2:45317895Fletcher Henderson And His Orchestra88.7Old Black Joe's Blues 2:24317895Fletcher Henderson And His Orchestra88.8Come On Baby! 2:50317895Fletcher Henderson And His Orchestra88.9Easy Money 3:00317895Fletcher Henderson And His Orchestra88.10Freeze And Melt 3:05317895Fletcher Henderson And His Orchestra88.11Raisin' The Roof 2:39317895Fletcher Henderson And His Orchestra88.12Blazin' 2:55317895Fletcher Henderson And His Orchestra88.13The Wang Wang Blues 3:00317895Fletcher Henderson And His Orchestra88.14Chinatown, My Chinatown 3:01317895Fletcher Henderson And His Orchestra88.15Somebody Loves Me3:01317895Fletcher Henderson And His Orchestra88.16Keep A Song In Your Soul 3:19317895Fletcher Henderson And His Orchestra88.17What Good Am I Without You ? 3:18317895Fletcher Henderson And His Orchestra88.18I've Found What I Wanted In You 3:19317895Fletcher Henderson And His Orchestra88.19My Gal Sal 3:28317895Fletcher Henderson And His Orchestra88.20My Pretty Girl 3:22317895Fletcher Henderson And His Orchestra88.21Sweet And Hot 3:26317895Fletcher Henderson And His OrchestraFletcher Henderson - 193189.1Clarinet Marmalade 3:13317895Fletcher Henderson And His Orchestra89.2Sugar Foot Stomp 3:20317895Fletcher Henderson And His Orchestra89.3Hot And Anxious 3:21317895Fletcher Henderson And His Orchestra89.4Comin' And Going 3:10317895Fletcher Henderson And His Orchestra89.5After You've Gone 3:06317895Fletcher Henderson And His Orchestra89.6Star Dust 2:59317895Fletcher Henderson And His Orchestra89.7Tiger Rag 3:17317895Fletcher Henderson And His Orchestra89.8Somebody Stole My Gal 3:10317895Fletcher Henderson And His Orchestra89.9I'm Crazy 'Bout My Baby 3:12373816Connie's Inn Orchestra89.10Sugar Foot Stomp 3:12373816Connie's Inn Orchestra89.11Just Blues 3:11373816Connie's Inn Orchestra89.12Singin' The Blues 2:49373816Connie's Inn Orchestra89.13Sugar Foot Stomp 3:08373816Connie's Inn Orchestra89.14Sugar Foot Stomp 3:06373816Connie's Inn Orchestra89.15Roll On Mississippi 3:04373816Connie's Inn Orchestra89.16Roll On Mississippi 2:59373816Connie's Inn Orchestra89.17Moan, You Moaners 3:18373816Connie's Inn Orchestra89.18Moan, You Moaners 3:16373816Connie's Inn Orchestra89.19Singing The Blues 3:18373816Connie's Inn Orchestra89.20Singing The Blues 3:13373816Connie's Inn Orchestra89.21Low Down On The Bayou 3:05373816Connie's Inn Orchestra89.22The House Of David Blues 3:09373816Connie's Inn Orchestra89.23Radio Rhythm 3:02373816Connie's Inn Orchestra89.24You Rascal You 3:08373816Connie's Inn OrchestraBlack Chicago Jazz Tommy Ladnier - Lovie Austin - Ollie Powers 90.1Steppin' On The Blues 2:28634896Lovie Austin's Blues Serenaders90.2Traveling Blues 2:38634896Lovie Austin's Blues Serenaders90.3Charleston Mad 2:36634896Lovie Austin's Blues Serenaders90.4Charleston Mad 2:38634896Lovie Austin's Blues Serenaders90.5Charleston, South Carolina 2:44634896Lovie Austin's Blues Serenaders90.6Heebie Jeebies 2:52634896Lovie Austin's Blues Serenaders90.7Peepin' Blues 2:45634896Lovie Austin's Blues Serenaders90.8Mojo Blues 3:07634896Lovie Austin's Blues Serenaders90.9Don't Shake It No More 2:36634896Lovie Austin's Blues Serenaders90.10Rampart Street Blues 2:54634896Lovie Austin's Blues Serenaders90.11Too Sweet For Words 2:46634896Lovie Austin's Blues Serenaders90.12Jackass Blues 2:58634896Lovie Austin's Blues Serenaders90.13Frog Tongue Stomp 2:35634896Lovie Austin's Blues Serenaders90.14Chicago Mess Around 3:02634896Lovie Austin's Blues Serenaders90.15Galion Stomp 3:07634896Lovie Austin's Blues Serenaders90.16In The Alley Blues 2:58634896Lovie Austin's Blues Serenaders90.17Merry Maker's Twine 2:54634896Lovie Austin's Blues Serenaders90.18Play That Thing -3 2:56446653Ollie Powers' Harmony Syncopators90.19Play That Thing -43:30446653Ollie Powers' Harmony Syncopators90.20Play That Thing -5 3:11446653Ollie Powers' Harmony Syncopators90.21Play That Thing -6 3:09446653Ollie Powers' Harmony SyncopatorsLouis Armstrong And The Blues Singers - 1924-25 91.1See See Rider 3:16373925Ma Rainey And Her Georgia BandMa Rainey Acc. By Her Georgia Jazz Band91.2See See Rider 3:13373925Ma Rainey And Her Georgia BandMa Rainey Acc. By Her Georgia Jazz Band91.3Jelly Bean Blues 3:13373925Ma Rainey And Her Georgia BandMa Rainey Acc. By Her Georgia Jazz Band91.4Countin' The Blues 3:15373925Ma Rainey And Her Georgia BandMa Rainey Acc. By Her Georgia Jazz Band91.5Countin' The Blues 3:13373925Ma Rainey And Her Georgia BandMa Rainey Acc. By Her Georgia Jazz Band91.6Poor House Blues 3:06456908Maggie Jones91.7Anybody Here Want To Try My Cabbage 3:19456908Maggie Jones91.8Thunderstorm Blues 3:02456908Maggie Jones91.9If I Lose, Let Me Lose 3:22456908Maggie Jones91.10Screamin' The Blues 3:17456908Maggie Jones91.11Good Time Flat Blues 3:14456908Maggie Jones91.12Nobody Knows The Way I Feel ‘Dis Mornin’ 3:10412671Clara Smith91.13Broken Busted Blues 3:17412671Clara Smith91.14St. Louis Blues 3:09288268Bessie Smith91.15Reckless Blues 3:02288268Bessie Smith91.16Sobbin' Hearted Blues 3:03288268Bessie Smith91.17Cold In Hand Blues 3:16288268Bessie Smith91.18You've Been A Good Old Wagon 3:28288268Bessie Smith91.19You've Got To Beat Me To Keep Me 3:082627954Trixie Smith And Her Down Home Syncopators91.20Mining Camp Blues 3:062627954Trixie Smith And Her Down Home Syncopators91.21Mining Camp Blues 3:032627954Trixie Smith And Her Down Home SyncopatorsLouis Armstrong And The Blues Singers - 1925-26 92.1The World's Jazz Crazy 3:05456907Trixie Smith92.2The World's Jazz Crazy 3:03456907Trixie Smith92.3The Railroad Blues 3:02456907Trixie Smith92.4The Railroad Blues 2:59456907Trixie Smith92.5Shipwrecked Blues 3:16412671Clara Smith92.6Court House Blues 3:18412671Clara Smith92.7Court House Blues 3:01412671Clara Smith92.8My John Blues 3:11412671Clara Smith92.9Nashville Woman's Blues 3:43288268Bessie Smith92.10Nashville Woman's Blues 3:11288268Bessie Smith92.11Careless Love Blues 3:30288268Bessie Smith92.12Careless Love Blues 3:27288268Bessie Smith92.13J.C. Holmes Blues 3:12288268Bessie Smith92.14I Ain't Gonna Play No Second Fiddle 3:29288268Bessie Smith92.15You Dirty Mistreater 2:58559505Grant & Wilson92.16Come On Coot, And Do That Thing 2:57559505Grant & Wilson92.17Have Your Chill, I’ll Be Here When Your Fever Rises 2:58559505Grant & Wilson92.18Find Me At The Greasy Spoon 3:04559505Grant & Wilson92.19Find Me At The Greasy Spoon 2:58559505Grant & Wilson92.20Low Land Blues 2:58307269Bertha "Chippie" Hill92.21Kid Man Blues 3:01307269Bertha "Chippie" Hill92.22Lazy Woman Blues 3:05888440Blanche Calloway92.23Lonesome Lovesick Blues 2:54888440Blanche CallowayLouis Armstrong And The Blues Singers - 1926-2793.1Lonesome, All Alone And Blue 2:59307269Bertha "Chippie" Hill93.2Trouble In Mind 2:51307269Bertha "Chippie" Hill93.3Georgia Man 2:45307269Bertha "Chippie" Hill93.4You've Got To Go Home 3:051194994Baby Mae Mack93.5What Kind O’ Man Is You? 3:031194994Baby Mae Mack93.6Deep Water Blues 2:531194999Hociel Thomas93.7Gwan, I Told You 3:121194999Hociel Thomas93.8Listen To Ma 3:261194999Hociel Thomas93.9Lonesome Hours 3:041194999Hociel Thomas93.10A Jealous Woman Like Me 3:18307399Sippie Wallace93.11Special Delivery Blues 3:27307399Sippie Wallace93.12Jack O'Diamonds Blues 3:10307399Sippie Wallace93.13The Mail Train Blues 3:02307399Sippie Wallace93.14I Feel Good 3:05307399Sippie Wallace93.15A Man For Every Day In The Week 3:04307399Sippie Wallace93.16The Bridwell Blues 3:341195000Nolan Welsh93.17St. Peter Blues 3:011195000Nolan Welsh93.18He Likes It Slow 2:51326816Butterbeans & Susie93.19Pleading For The Blues 3:01307269Bertha "Chippie" Hill93.20Pratt(s) City Blues 2:55307269Bertha "Chippie" Hill93.21Mess, Katie, Mess 2:49307269Bertha "Chippie" Hill93.22Lovesick Blues 3:18307269Bertha "Chippie" Hill93.23Lonesome Weary Blues 3:09307269Bertha "Chippie" HillJohnny Dodds - 1927 94.1Wolverine Blues 3:21339918Jelly Roll Morton Trio94.2Wolverine Blues 3:26339918Jelly Roll Morton Trio94.3Mr. Jelly Lord 2:54339918Jelly Roll Morton Trio94.4There'll Come A Day 2:49505437State Street Ramblers94.5The Weary Way Blues 2:56505437State Street Ramblers94.6Cootie Stomp 2:13505437State Street Ramblers94.7There'll Come A Day 2:481420154Dixie-Land Thumpers94.8Weary Way Blues 2:501420154Dixie-Land Thumpers94.9Weary Way Blues 3:071420156Jimmy Blythe's Owls94.10Poutin' Papa 2:461420156Jimmy Blythe's Owls94.11Hot Stuff 2:501420156Jimmy Blythe's Owls94.12Have Mercy! 2:241420156Jimmy Blythe's Owls94.13Come On And Stomp, Stomp, Stomp 2:56655746Johnny Dodds' Black Bottom Stompers94.14After You've Gone 3:10655746Johnny Dodds' Black Bottom Stompers94.15After You've Gone 3:15655746Johnny Dodds' Black Bottom Stompers94.16Joe Turner Blues 2:42655746Johnny Dodds' Black Bottom Stompers94.17When Erastus Plays His Old Kazoo 2:50655746Johnny Dodds' Black Bottom Stompers94.18Ballin' The Jack 2:42505435Chicago Footwarmers94.19Grandma's Ball 2:43505435Chicago Footwarmers94.20Oriental Man 2:471420154Dixie-Land Thumpers94.21Sock That Thing 2:451420154Dixie-Land Thumpers94.22Oriental Man 2:521420154Dixie-Land Thumpers94.23My Baby 2:51505435Chicago Footwarmers94.24Oriental Man 2:43505435Chicago FootwarmersJack Teagarden / Benny Goodman - 1931-3395.1China Boy 3:06301372Jack Teagarden/5743335Gene Austin & His Orchestra95.2Lies 3:11301372Jack Teagarden/5743335Gene Austin & His Orchestra95.3I’m Sorry Dear 3:01301372Jack Teagarden/5743335Gene Austin & His Orchestra95.4Tiger Rag 3:09301372Jack Teagarden/5743335Gene Austin & His Orchestra95.5I've Got 'It' 3:05340731Jack Teagarden And His Orchestra95.6Plantation Moods 3:17340731Jack Teagarden And His Orchestra95.7Plantation Moods 3:15340731Jack Teagarden And His Orchestra95.8Shake Your Hips 3:14340731Jack Teagarden And His Orchestra95.9Somebody Stole Gabriel's Horn 2:55340731Jack Teagarden And His Orchestra95.10I Gotta Right To Sing The Blues 3:13340731Jack Teagarden And His Orchestra95.11Ain't-Cha Glad? 3:30340731Jack Teagarden And His Orchestra95.12Dr. Heckle And Mr. Jibe 3:30340731Jack Teagarden And His Orchestra95.13Texas Tea Party 3:21340731Jack Teagarden And His Orchestra95.14Love Me 3:06301372Jack Teagarden95.15Blue River 2:58301372Jack Teagarden95.16A Hundred Years From Today 2:55301372Jack Teagarden95.17A Hundred Years From Today 3:01301372Jack Teagarden95.18I Just Couldn't Take It Baby 2:52301372Jack Teagarden95.19Your Mother's Son-In-Law 2:47374400Benny Goodman And His Orchestra95.20Tappin' The Barrel 2:53374400Benny Goodman And His Orchestra95.21Keep On Doin' What You're Doin' 3:08374400Benny Goodman And His Orchestra95.22Riffin' The Scotch 2:36374400Benny Goodman And His Orchestra95.23Love Me Or Leave Me 2:50374400Benny Goodman And His Orchestra95.24Why Couldn't It Be Poor Little Me 2:48374400Benny Goodman And His OrchestraLouis Armstrong - 192996.1Knockin' A Jug 3:26317860Louis Armstrong And His Orchestra96.2I Can't Give You Anything But Love 3:32338994Louis Armstrong And His Savoy Ballroom Five96.3Mahogany Hall Stomp 3:27338994Louis Armstrong And His Savoy Ballroom Five96.4S’posin’ 3:17766138Seger Ellis96.5To Be In Love 3:09766138Seger Ellis96.6Funny Feathers 3:18307238Victoria Spivey96.7How Do They Do It That Way? 3:20307238Victoria Spivey96.8Ain't Misbehavin' 3:24317860Louis Armstrong And His Orchestra96.9(What Did I Do To Be So) Black And Blue? 3:09317860Louis Armstrong And His Orchestra96.10That Rhythm Man 3:07317860Louis Armstrong And His Orchestra96.11Sweet Savannah Sue 3:07317860Louis Armstrong And His Orchestra96.12Ain’t Misbehavin’ 3:07766138Seger Ellis96.13Some Of These Days 2:52317860Louis Armstrong And His Orchestra96.14Some Of These Days 3:14317860Louis Armstrong And His Orchestra96.15When You're Smiling 2:58317860Louis Armstrong And His Orchestra96.16When You're Smiling 3:23317860Louis Armstrong And His Orchestra96.17After You've Gone 3:23317860Louis Armstrong And His Orchestra96.18After You've Gone 3:17317860Louis Armstrong And His Orchestra96.19I Ain't Got Nobody 2:38317860Louis Armstrong And His Orchestra96.20Dallas Blues 3:07317860Louis Armstrong And His Orchestra96.21St. Louis Blues 3:01317860Louis Armstrong And His Orchestra96.22Rockin' Chair 3:15317860Louis Armstrong And His Orchestra96.23Rockin' Chair 3:22317860Louis Armstrong And His OrchestraLouis Armstrong - 193097.1Song Of The Islands 3:28317860Louis Armstrong And His Orchestra97.2Bessie Couldn't Help It 3:23317860Louis Armstrong And His Orchestra97.3Blue, Turning Grey Over Me 3:30317860Louis Armstrong And His Orchestra97.4Dear Old Southland 3:1938201Louis Armstrong97.5My Sweet 3:21317860Louis Armstrong And His Orchestra97.6I Can't Believe That You're In Love With Me 3:09317860Louis Armstrong And His Orchestra97.7Indian Cradle Song 3:00317860Louis Armstrong And His Orchestra97.8Exactly Like You 3:32317860Louis Armstrong And His Orchestra97.9Dinah 3:23317860Louis Armstrong And His Orchestra97.10Tiger Rag 3:14317860Louis Armstrong And His Orchestra97.11I'm A Ding Dong Daddy (From Dumas) 3:13307319Louis Armstrong And His Sebastian New Cotton Orchestra97.12I'm In The Market For You 3:15307319Louis Armstrong And His Sebastian New Cotton Orchestra97.13I'm Confessin' (That I Love You) 3:22307319Louis Armstrong And His Sebastian New Cotton Orchestra97.14If I Could Be With You One Hour Tonight 3:40307319Louis Armstrong And His Sebastian New Cotton Orchestra97.15Body And Soul 3:20307319Louis Armstrong And His Sebastian New Cotton Orchestra97.16Memories Of You 3:15307319Louis Armstrong And His Sebastian New Cotton Orchestra97.17You’re Lucky To Me 3:25307319Louis Armstrong And His Sebastian New Cotton Orchestra97.18Sweethearts On Parade 3:16307319Louis Armstrong And His Sebastian New Cotton Orchestra97.19You're Drivin' Me Crazy 3:10307319Louis Armstrong And His Sebastian New Cotton Orchestra97.20You're Drivin' Me Crazy 3:10307319Louis Armstrong And His Sebastian New Cotton Orchestra97.21The Peanut Vendor 3:38307319Louis Armstrong And His Sebastian New Cotton OrchestraLouis Armstrong - 193198.1Just A Gigolo 3:21307319Louis Armstrong And His Sebastian New Cotton Orchestra98.2Shine 3:25307319Louis Armstrong And His Sebastian New Cotton Orchestra98.3Walkin' My Baby Back Home 3:07317860Louis Armstrong And His Orchestra98.4I Surrender Dear 3:09317860Louis Armstrong And His Orchestra98.5When It's Sleepy Time Down South 3:24317860Louis Armstrong And His Orchestra98.6Blue Again 3:13317860Louis Armstrong And His Orchestra98.7Little Joe 3:13317860Louis Armstrong And His Orchestra98.8(I'll Be Glad When You're Dead) You Rascal You 3:17317860Louis Armstrong And His Orchestra98.9Them There Eyes 3:09317860Louis Armstrong And His Orchestra98.10When Your Lover Has Gone 3:07317860Louis Armstrong And His Orchestra98.11Lazy River 3:08317860Louis Armstrong And His Orchestra98.12Chinatown, My Chinatown 3:20317860Louis Armstrong And His Orchestra98.13Wrap Your Troubles In Dreams 3:32317860Louis Armstrong And His Orchestra98.14Wrap Your Troubles In Dreams 3:15317860Louis Armstrong And His Orchestra98.15Star Dust 3:37317860Louis Armstrong And His Orchestra98.16Star Dust 3:34317860Louis Armstrong And His Orchestra98.17You Can Depend On Me 3:14317860Louis Armstrong And His Orchestra98.18Georgia On My Mind 3:24317860Louis Armstrong And His Orchestra98.19The Lonesome Road 3:33317860Louis Armstrong And His Orchestra98.20I Got Rhythm 3:04317860Louis Armstrong And His OrchestraBix Beiderbecke / Frank Trumbauer - 1928-2999.1Bless You Sister 3:14317889Frankie Trumbauer And His Orchestra99.2Dusky Stevedore 3:08317889Frankie Trumbauer And His Orchestra99.3Ol' Man River 3:06326834Bix Beiderbecke And His Gang99.4Wa Da Da (Ev’rybody’s Doin’ It Now) 3:03326834Bix Beiderbecke And His Gang99.5Take Your Tomorrow 3:04317889Frankie Trumbauer And His Orchestra99.6Love Affairs 3:08317889Frankie Trumbauer And His Orchestra99.7Rhythm King 3:25326834Bix Beiderbecke And His Gang99.8Louisiana 2:53326834Bix Beiderbecke And His Gang99.9Margie 2:59326834Bix Beiderbecke And His Gang99.10The Love Nest 3:02317889Frankie Trumbauer And His Orchestra99.11The Japanese Sandman 3:23317889Frankie Trumbauer And His Orchestra99.12High Up On A Hilltop 3:08317889Frankie Trumbauer And His Orchestra99.13Sentimental Baby 3:02317889Frankie Trumbauer And His Orchestra99.14Futuristic Rhythm 2:57317889Frankie Trumbauer And His Orchestra99.15Raisin' The Roof 2:58317889Frankie Trumbauer And His Orchestra99.16Louise 2:55317889Frankie Trumbauer And His Orchestra99.17Wait 'Till You See "Ma Cherie" 2:52317889Frankie Trumbauer And His Orchestra99.18Baby Won't You Please Come Home 3:00317889Frankie Trumbauer And His Orchestra99.19No One Can Take Your Place 3:09317889Frankie Trumbauer And His Orchestra99.20I Like That 2:58317889Frankie Trumbauer And His OrchestraBix Beiderbecke 1930 Plus100.1Rockin' Chair 3:27338448Hoagy Carmichael And His Orchestra100.2Barnacle Bill, The Saylor 2:49338448Hoagy Carmichael And His Orchestra100.3Loved One 2:541402044Irving Mills And His Hotsy Totsy Gang100.4Loved One 2:591402044Irving Mills And His Hotsy Totsy Gang100.5Deep Harlem 3:081402044Irving Mills And His Hotsy Totsy Gang100.6Strut, Miss Lizzie 3:081402044Irving Mills And His Hotsy Totsy Gang100.7Deep Down South 3:00338449Bix Beiderbecke And His Orchestra100.8Deep Down South 3:00338449Bix Beiderbecke And His Orchestra100.9I Don't Mind Walkin' In The Rain2:56338449Bix Beiderbecke And His Orchestra100.10I'll Be A Friend "With Pleasure"3:05338449Bix Beiderbecke And His Orchestra100.11I'll Be A Friend "With Pleasure"3:13338449Bix Beiderbecke And His Orchestra100.12Georgia On My Mind3:09338448Hoagy Carmichael And His Orchestra100.13Bessie Couldn't Help It2:56338448Hoagy Carmichael And His Orchestra100.14Bessie Couldn't Help It2:55338448Hoagy Carmichael And His Orchestra100.15Oh Gee! Oh Joy!2:501892722Lou Raderman And His Pelham Heath Inn Orchestra100.16Why Do I Love You?2:521892722Lou Raderman And His Pelham Heath Inn Orchestra100.17Ol' Man River3:001892722Lou Raderman And His Pelham Heath Inn Orchestra100.18Cradle Of Love3:02708247Ray Miller And His Orchestra100.19Cradle Of Love3:06708247Ray Miller And His Orchestra44294Membran Music Ltd.10Manufactured By267254Membran International GmbH4Record Company44294Membran Music Ltd.9Distributed By + +194VariousBig Bands (The Giants Of The Swing Big Band Era)CompilationCompilationMonoJazzGermany2008Needs Vote0Fletcher Henderson - 1931-321.1Oh It Looks Like Rain2:31340736Fletcher Henderson And His Connie's Inn Orchestra1.2Sweet Music3:11340736Fletcher Henderson And His Connie's Inn Orchestra1.3My Sweet Tooth Says3:05340736Fletcher Henderson And His Connie's Inn Orchestra1.4Malinda's Wedding Day2:41340736Fletcher Henderson And His Connie's Inn Orchestra1.5You Rascal You3:09373816Connie's Inn Orchestra1.6You Rascal You3:07373816Connie's Inn Orchestra1.7Blue Rhythm2:51373816Connie's Inn Orchestra1.8Blue Rhythm2:52373816Connie's Inn Orchestra1.9Sugar Foot Stomp2:55373816Connie's Inn Orchestra1.10Low Down On The Bayou2:59373816Connie's Inn Orchestra1.11Singing The Blues3:05317895Fletcher Henderson And His Orchestra1.12It's The Darndest Thing2:52317895Fletcher Henderson And His Orchestra1.13Blues In My Heart3:21317895Fletcher Henderson And His Orchestra1.14Sugar2:59317895Fletcher Henderson And His Orchestra1.15Business In F3:13317895Fletcher Henderson And His Orchestra1.1612th Street Rag3:02373816Connie's Inn Orchestra1.17Milenberg Joys2:42373816Connie's Inn Orchestra1.18Strangers3:20317895Fletcher Henderson And His Orchestra1.19Take Me Away From The River3:19317895Fletcher Henderson And His Orchestra1.20Say That You Were Teasing Me2:47317895Fletcher Henderson And His Orchestra1.21Take A Picture Of The Moon3:01317895Fletcher Henderson And His Orchestra1.22I Wanna Count Sheep3:02317895Fletcher Henderson And His Orchestra1.23Poor Old Joe2:56317895Fletcher Henderson And His OrchestraFletcher Henderson - 1932-332.1Casa Loma Stomp3:11340736Fletcher Henderson And His Connie's Inn Orchestra2.2Blue Moments2:50340736Fletcher Henderson And His Connie's Inn Orchestra2.3How Am I Doin', Hey Hey3:11340736Fletcher Henderson And His Connie's Inn Orchestra2.4Goodbye Blues3:03340736Fletcher Henderson And His Connie's Inn Orchestra2.5Honeysuckle Rose3:11317895Fletcher Henderson And His Orchestra2.6New King Porter Stomp3:07317895Fletcher Henderson And His Orchestra2.7Underneath The Harlem Moon3:14317895Fletcher Henderson And His Orchestra2.8Yeah Man2:53317895Fletcher Henderson And His Orchestra2.9King Porter Stomp2:54317895Fletcher Henderson And His Orchestra2.10Queer Notions2:48317895Fletcher Henderson And His Orchestra2.11Can You Take It2:48317895Fletcher Henderson And His Orchestra2.12Can You Take It2:59317895Fletcher Henderson And His Orchestra2.13Queer Notions2:31317895Fletcher Henderson And His Orchestra2.14It's The Talk Of The Town3:30317895Fletcher Henderson And His Orchestra2.15Night Life3:23317895Fletcher Henderson And His Orchestra2.16Nagasaki3:25317895Fletcher Henderson And His Orchestra2.17Happy Feet2:49317895Fletcher Henderson And His Orchestra2.18Rhythm Crazy3:16317895Fletcher Henderson And His Orchestra2.19Ol' Man River3:07317895Fletcher Henderson And His Orchestra2.20Minnie The Moocher's Wedding Day3:06317895Fletcher Henderson And His Orchestra2.21Ain't Cha Glad3:19317895Fletcher Henderson And His Orchestra2.22I've Got To Sing A Torch Song3:37317895Fletcher Henderson And His OrchestraFletcher Henderson - 1934-363.1Hocus Pocus3:14317895Fletcher Henderson And His Orchestra3.2Hocus Pocus3:15317895Fletcher Henderson And His Orchestra3.3Phantom Phantasy3:14317895Fletcher Henderson And His Orchestra3.4Harlem Madness3:29317895Fletcher Henderson And His Orchestra3.5Tidal Wave3:02317895Fletcher Henderson And His Orchestra3.6Limehouse Blues2:37317895Fletcher Henderson And His Orchestra3.7Shanghai Shuffle3:03317895Fletcher Henderson And His Orchestra3.8Big John's Special2:49317895Fletcher Henderson And His Orchestra3.9Happy As The Day Is Long2:46317895Fletcher Henderson And His Orchestra3.10Tidal Wave3:03317895Fletcher Henderson And His Orchestra3.11Down South Camp Meeting2:57317895Fletcher Henderson And His Orchestra3.12Wrappin' It Up2:39317895Fletcher Henderson And His Orchestra3.13Memphis Blues2:34317895Fletcher Henderson And His Orchestra3.14Wild Party3:00317895Fletcher Henderson And His Orchestra3.15Rug Cutter's Swing3:00317895Fletcher Henderson And His Orchestra3.16Hotter Than 'Ell2:50317895Fletcher Henderson And His Orchestra3.17Liza (All The Clouds'll Roll Away)2:36317895Fletcher Henderson And His Orchestra3.18Christopher Columbus3:01317895Fletcher Henderson And His Orchestra3.19Grand Terrace Swing (Big Chief De Sota)2:59317895Fletcher Henderson And His Orchestra3.20Blue Lou3:06317895Fletcher Henderson And His Orchestra3.21Stealin' Apples2:57317895Fletcher Henderson And His OrchestraFletcher Henderson - 1936-374.1I'm A Fool For Loving You2:37317895Fletcher Henderson And His Orchestra4.2Moonrise On The Lowlands2:42317895Fletcher Henderson And His Orchestra4.3Ill Always Been In Love With You3:01317895Fletcher Henderson And His Orchestra4.4Jangled Nerves2:34317895Fletcher Henderson And His Orchestra4.5Where There's You There's Me2:27317895Fletcher Henderson And His Orchestra4.6Do You Or Don't You Love Me3:01317895Fletcher Henderson And His Orchestra4.7Grand Terrace Rhythm2:42317895Fletcher Henderson And His Orchestra4.8Riffin'2:22317895Fletcher Henderson And His Orchestra4.9Mary Had A Little Lamb2:48317895Fletcher Henderson And His Orchestra4.10Shoe Shine Boy3:32317895Fletcher Henderson And His Orchestra4.11Sing, Sing, Sing2:33317895Fletcher Henderson And His Orchestra4.12Until Today2:31317895Fletcher Henderson And His Orchestra4.13Knock, Knock, Who's There2:56317895Fletcher Henderson And His Orchestra4.14Jim Town Blues2:43317895Fletcher Henderson And His Orchestra4.15You Can Depend On Me3:28317895Fletcher Henderson And His Orchestra4.16What Will I Tell My Heart3:31317895Fletcher Henderson And His Orchestra4.17It's Wearin' Me Down2:52317895Fletcher Henderson And His Orchestra4.18Slumming On Park Avenue2:28317895Fletcher Henderson And His Orchestra4.19Rhythm Of The Tambourine2:39317895Fletcher Henderson And His OrchestraFletcher Henderson - 1937-385.1Stampede3:07317895Fletcher Henderson And His Orchestra5.2Back In Your Own Backyard2:32317895Fletcher Henderson And His Orchestra5.3Rose Room2:58317895Fletcher Henderson And His Orchestra5.4Great Caesar's Ghost2:22317895Fletcher Henderson And His Orchestra5.5If You Ever Should Leave3:00317895Fletcher Henderson And His Orchestra5.6Posin'2:45317895Fletcher Henderson And His Orchestra5.7All God's Chillun Got Rhythm2:41317895Fletcher Henderson And His Orchestra5.8Chris And His Gang3:03317895Fletcher Henderson And His Orchestra5.9Let 'er Go2:47317895Fletcher Henderson And His Orchestra5.10Worried Over You2:43317895Fletcher Henderson And His Orchestra5.11What's Your Story3:05317895Fletcher Henderson And His Orchestra5.12Trees3:03317895Fletcher Henderson And His Orchestra5.13If It's The Last Thing To Do2:47317895Fletcher Henderson And His Orchestra5.14Sing You Sinners2:43317895Fletcher Henderson And His Orchestra5.15You're In Love With Love3:05317895Fletcher Henderson And His Orchestra5.16Stealin' Apples3:03317895Fletcher Henderson And His Orchestra5.17Don’t Let The Rhythm Go To Your Head2:30317895Fletcher Henderson And His Orchestra5.18Saving Myself For You2:51317895Fletcher Henderson And His Orchestra5.19There’s Rain In My Eyes2:38317895Fletcher Henderson And His Orchestra5.20What Do You Hear From The Mob In Scotland2:58317895Fletcher Henderson And His Orchestra5.21It’s The Little Things That Count2:37317895Fletcher Henderson And His Orchestra5.22Moten Stomp2:44317895Fletcher Henderson And His OrchestraDon Redman - 1931-326.1Trouble Why Pick On Me2:47446654Don Redman And His Orchestra6.2Shakin' The African2:50446654Don Redman And His Orchestra6.3Chant Of The Weed3:14446654Don Redman And His Orchestra6.4Chant Of The Weed3:13446654Don Redman And His Orchestra6.5Shakin' The African2:40446654Don Redman And His Orchestra6.6I Heard3:13446654Don Redman And His Orchestra6.7How'm I Doin' (Hey-Hey)2:53446654Don Redman And His Orchestra6.8Try Getting A Good Night's Sleep2:57446654Don Redman And His Orchestra6.9Chant Of The Weed3:141855541Harlan Lattimore And His Connie's Inn Orchestra6.10I Heard3:171855541Harlan Lattimore And His Connie's Inn Orchestra6.11Got The South In My Soul3:321855541Harlan Lattimore And His Connie's Inn Orchestra6.12Reefer Man3:341855541Harlan Lattimore And His Connie's Inn Orchestra6.13Got The South In My Soul2:52446654Don Redman And His Orchestra6.14If It's True3:16446654Don Redman And His Orchestra6.15It's A Great World After All2:44446654Don Redman And His Orchestra6.16You Gave Me Everything But Love2:49446654Don Redman And His Orchestra6.17Tea For Two3:04446654Don Redman And His Orchestra6.18Hot And Anxious2:43446654Don Redman And His Orchestra6.19I Got Rhythm3:07446654Don Redman And His Orchestra6.20Pagan Paradise3:04446654Don Redman And His Orchestra6.21Two-Time Man2:52446654Don Redman And His Orchestra6.22Two-Time Man2:57446654Don Redman And His OrchestraDon Redman - 1932-337.1Underneath The Harlem Moon3:03446654Don Redman And His Orchestra7.2Ain't I The Lucky One2:40446654Don Redman And His Orchestra7.3Doin' What I Please2:49446654Don Redman And His Orchestra7.4Nagasaki3:02446654Don Redman And His Orchestra7.5Doin' The New Low-Down2:29446654Don Redman And His Orchestra7.6Doin' The New Low-Down3:04446654Don Redman And His Orchestra7.7How Ya Feelin' 2:58446654Don Redman And His Orchestra7.8Shuffle Your Feet - Bandanna Babies2:44446654Don Redman And His Orchestra7.9Mommy, I Don't Want To Go To Bed3:09446654Don Redman And His Orchestra7.10How Can I Hi-De-Hi3:14446654Don Redman And His Orchestra7.11Shuffle Your Feet - Bandanna Babies2:46446654Don Redman And His Orchestra7.12Sophisticated Lady2:45446654Don Redman And His Orchestra7.13I Won't Tell3:06446654Don Redman And His Orchestra7.14That Blue Eyed Baby From Memphis2:52446654Don Redman And His Orchestra7.15It's All Your Fault2:49446654Don Redman And His Orchestra7.16Lazy Bones3:01446654Don Redman And His Orchestra7.17Watching The Knife And Forl Spoon2:59446654Don Redman And His Orchestra7.18I Found A New Way3:06446654Don Redman And His Orchestra7.19You Told Me But Half The Story3:05446654Don Redman And His Orchestra7.20Lonely Cabin2:59446654Don Redman And His Orchestra7.21She's Not Bad2:54446654Don Redman And His Orchestra7.22(No One Loves Me Like) That Dallas Man2:50446654Don Redman And His OrchestraDon Redman - 1933-378.1Our Big Love Scene2:52446654Don Redman And His Orchestra8.2After Sundown2:54446654Don Redman And His Orchestra8.3Puddin' Head Jones2:51446654Don Redman And His Orchestra8.4My Old Man2:59446654Don Redman And His Orchestra8.5Tired Of It All3:05446654Don Redman And His Orchestra8.6Keep On Doin' What You're Doin'2:49446654Don Redman And His Orchestra8.7I Wanna Be Loved2:56446654Don Redman And His Orchestra8.8Got The Jitters2:55446654Don Redman And His Orchestra8.9Christopher Columbus2:287055672Cahn-Chaplin OrchestraCahn Chaplin Orchestra8.10A Little Bit Later On2:29446654Don Redman And His Orchestra8.11Lazy Weather2:33446654Don Redman And His Orchestra8.12Moonrise On The Lowlands2:44446654Don Redman And His Orchestra8.13I Gotcha2:35446654Don Redman And His Orchestra8.14Who Wants To Sing My Love Song3:04446654Don Redman And His Orchestra8.15Too Bad2:27446654Don Redman And His Orchestra8.16We Don’t Know From Nothin’3:02446654Don Redman And His Orchestra8.17Bugle Call Rag2:42446654Don Redman And His Orchestra8.18Stormy Weather2:39446654Don Redman And His Orchestra8.19Exactly Like You2:31446654Don Redman And His Orchestra8.20The Man On The Flying Trapeze2:44446654Don Redman And His Orchestra8.21On The Sunny Side Of The Street2:26446654Don Redman And His Orchestra8.22Swingin’ With The Fat Man2:54446654Don Redman And His Orchestra8.23Sweet Sue, Just You2:23446654Don Redman And His Orchestra8.24That Naughty Waltz2:28446654Don Redman And His OrchestraDuke Ellington - 19339.1Eerie Moan3:08284747Duke Ellington And His Orchestra9.2Merry-Go-Round2:50284747Duke Ellington And His Orchestra9.3Merry-Go-Round2:50284747Duke Ellington And His Orchestra9.4Sophisticated Lady3:38284747Duke Ellington And His Orchestra9.5I’ve Got The World On A String3:17284747Duke Ellington And His Orchestra9.6Down A Carolina Lane3:02284747Duke Ellington And His Orchestra9.7Slippery Horn3:00284747Duke Ellington And His Orchestra9.8Black Bird Medley (Part 1)3:02284747Duke Ellington And His Orchestra9.9Black Bird Medley (Part 2)3:00284747Duke Ellington And His Orchestra9.10Drop Me Off At Harlem2:57284747Duke Ellington And His Orchestra9.11Bundle Of Blues3:10284747Duke Ellington And His Orchestra9.12Sophisticated Lady3:12284747Duke Ellington And His Orchestra9.13Stormy Weather3:01284747Duke Ellington And His Orchestra9.14Hyde Park (Every Tub)2:55284747Duke Ellington And His Orchestra9.15Harlem Speaks3:05284747Duke Ellington And His Orchestra9.16Ain’t Misbehavin‘2:44284747Duke Ellington And His Orchestra9.17Chicago2:45284747Duke Ellington And His Orchestra9.18I’m Satisfied3:04284747Duke Ellington And His Orchestra9.19Jive Stomp2:45284747Duke Ellington And His Orchestra9.20Harlem Speaks3:10284747Duke Ellington And His Orchestra9.21In The Shade Of The Old Apple Tree3:13284747Duke Ellington And His Orchestra9.22Rude Interlude3:10284747Duke Ellington And His Orchestra9.23Dallas Doings2:53284747Duke Ellington And His Orchestra9.24Dear Old Southland3:31284747Duke Ellington And His Orchestra9.25Daybreak Express2:52284747Duke Ellington And His OrchestraDuke Ellington - 1934-3510.1Delta Serenade3:16284747Duke Ellington And His Orchestra10.2Stompy Jones3:02284747Duke Ellington And His Orchestra10.3Solitude3:26284747Duke Ellington And His Orchestra10.4Blue Feeling3:12284747Duke Ellington And His Orchestra10.5Solitude3:12284747Duke Ellington And His Orchestra10.6Saddest Tale3:19284747Duke Ellington And His Orchestra10.7Moon Glow3:06284747Duke Ellington And His Orchestra10.8Sumpin‘ ‘Bout Rhythm2:38284747Duke Ellington And His Orchestra10.9Admiration2:36284747Duke Ellington And His Orchestra10.10Farewell Blues2:23284747Duke Ellington And His Orchestra10.11Let’s Have A Jubilee2:51284747Duke Ellington And His Orchestra10.12Margie2:572554777Duke Ellington Sextet10.13Moonlight Fiesta (Porto Rican Chaos)2:512554777Duke Ellington Sextet10.14Tough Truckin‘3:052554777Duke Ellington Sextet10.15Indigo Echoes2:482554777Duke Ellington Sextet10.16In A Sentimental Mood3:16284747Duke Ellington And His Orchestra10.17Showboat Shuffle3:02284747Duke Ellington And His Orchestra10.18Merry-Go-Round2:59284747Duke Ellington And His Orchestra10.19Cotton3:06284747Duke Ellington And His Orchestra10.20Truckin’2:57284747Duke Ellington And His Orchestra10.21Accent On Youth3:04284747Duke Ellington And His Orchestra10.22Reminiscin‘ In Tempo (Part 1)3:20284747Duke Ellington And His Orchestra10.23Reminiscin‘ In Tempo (Part 2)3:10284747Duke Ellington And His Orchestra10.24Reminiscin‘ In Tempo (Part 3)3:13284747Duke Ellington And His Orchestra10.25Reminiscin‘ In Tempo (Part 4)3:10284747Duke Ellington And His OrchestraDuke Ellington - 1936-3711.1Clarinet Lament (Barney’s Concerto)3:10284747Duke Ellington And His Orchestra11.2Echoes Of Harlem (Cootie’s Concerto)3:01284747Duke Ellington And His Orchestra11.3Shoe-Shine Boy3:15284747Duke Ellington And His Orchestra11.4It Was A Sad Night In Harlem3:06284747Duke Ellington And His Orchestra11.5Trumpet In Spades (Rex’s Concerto)3:11284747Duke Ellington And His Orchestra11.6Yearning For Love (Lawrence’s Concerto)2:57284747Duke Ellington And His Orchestra11.7In A Jam2:59284747Duke Ellington And His Orchestra11.8Exposition Swing3:11284747Duke Ellington And His Orchestra11.9Uptown Downbeat3:23284747Duke Ellington And His Orchestra11.10Scattin’ At The Cotton Club3:19284747Duke Ellington And His Orchestra11.11Black Butterfly3:05284747Duke Ellington And His Orchestra11.12The New Birmingham Breakdown2:49284747Duke Ellington And His Orchestra11.13Scattin‘ At The Kit Kat2:45284747Duke Ellington And His Orchestra11.14I’ve Got To Be A Rug Cutter2:35284747Duke Ellington And His Orchestra11.15The New East St. Louis Toodle-Oo3:02284747Duke Ellington And His Orchestra11.16Caravan2:40284747Duke Ellington And His Orchestra11.17Azure3:13284747Duke Ellington And His Orchestra11.18All God’s Chillun Got Rhythm2:42284747Duke Ellington And His Orchestra11.19Alabamy Home2:42284747Duke Ellington And His Orchestra11.20Chatter Box2:46284747Duke Ellington And His Orchestra11.21Jubilesta2:56284747Duke Ellington And His Orchestra11.22Diminuendo In Blue2:46284747Duke Ellington And His Orchestra11.23Crescendo In Blue3:18284747Duke Ellington And His Orchestra11.24Harmony In Harlem3:08284747Duke Ellington And His Orchestra11.25Dusk In The Desert3:05284747Duke Ellington And His OrchestraDuke Ellington - 1938-3912.1Steppin‘ Into Swing Society3:08284747Duke Ellington And His Orchestra12.2Prologue To Black And Tan Fantasy2:35284747Duke Ellington And His Orchestra12.3The New Black And Tan Fantasy2:42284747Duke Ellington And His Orchestra12.4Riding On A Blue Note2:50284747Duke Ellington And His Orchestra12.5Lost In Meditation2:57284747Duke Ellington And His Orchestra12.6The Gal From Joe‘s2:57284747Duke Ellington And His Orchestra12.7I Let A Song Go Out Of My Heart3:08284747Duke Ellington And His Orchestra12.8Braggin‘ In Brass2:44284747Duke Ellington And His Orchestra12.9Carnival In Caroline2:28284747Duke Ellington And His Orchestra12.10Dinah’s In A Jam2:51284747Duke Ellington And His Orchestra12.11Rose Of The Rio Grande3:01284747Duke Ellington And His Orchestra12.12Pyramid2:55284747Duke Ellington And His Orchestra12.13Prelude To A Kiss3:01284747Duke Ellington And His Orchestra12.14Boy Meets Horn (Twists And Twerps)3:04284747Duke Ellington And His Orchestra12.15Slap Happy2:46284747Duke Ellington And His Orchestra12.16Portrait Of The Lion2:25284747Duke Ellington And His Orchestra12.17Cotton Club Stomp2:51284747Duke Ellington And His Orchestra12.18Doin’ The Voom Voom2:41284747Duke Ellington And His Orchestra12.19Little Posey2:40284747Duke Ellington And His Orchestra12.20Grievin’2:51284747Duke Ellington And His Orchestra12.21Tootin’ Through The Roof2:55284747Duke Ellington And His Orchestra12.22Weely (A Portrait Of Billy Strayhorn)2:58284747Duke Ellington And His OrchestraDuke Ellington - 194013.1Jack The Bear3:16284747Duke Ellington And His Orchestra13.2Ko-Ko2:43284747Duke Ellington And His Orchestra13.3Morning Glory3:18284747Duke Ellington And His Orchestra13.4Conga Brava2:58284747Duke Ellington And His Orchestra13.5Concerto For Cootie3:17284747Duke Ellington And His Orchestra13.6Cotton Tail (Shuckin' And Stiffin')3:11284747Duke Ellington And His Orchestra13.7Never No Lament (Don't Get Around Much Anymore) 3:20284747Duke Ellington And His Orchestra13.8Dusk3:20284747Duke Ellington And His Orchestra13.9Bojangles2:52284747Duke Ellington And His Orchestra13.10A Portrait Of Bert Williams3:10284747Duke Ellington And His Orchestra13.11Blue Goose3:22284747Duke Ellington And His Orchestra13.12Harlem Air Shaft3:00284747Duke Ellington And His Orchestra13.13At A Dixie Roadside Diner2:48284747Duke Ellington And His Orchestra13.14All Too Soon3:31284747Duke Ellington And His Orchestra13.15Rumpus In Richmond (Brassiere)2:45284747Duke Ellington And His Orchestra13.16Sepia Panorama (Night House)3:23284747Duke Ellington And His Orchestra13.17In A Mellotone3:18284747Duke Ellington And His Orchestra13.18Five O'Clock Whistle3:19284747Duke Ellington And His Orchestra13.19Warm Valley3:24284747Duke Ellington And His Orchestra13.20Across The Track Blues2:58284747Duke Ellington And His Orchestra13.21Chloe (Song Of The Swamp)3:24284747Duke Ellington And His OrchestraDuke Ellington - 1940-4114.1Sidewalks Of New York3:16284747Duke Ellington And His Orchestra14.2Take The 'A' Train2:54284747Duke Ellington And His Orchestra14.3Jumpin' Punkins3:42284747Duke Ellington And His Orchestra14.4John Hardy's Wife3:29284747Duke Ellington And His Orchestra14.5Blue Serge3:22284747Duke Ellington And His Orchestra14.6After All3:21284747Duke Ellington And His Orchestra14.7Bakiff3:24284747Duke Ellington And His Orchestra14.8Are You Sticking3:03284747Duke Ellington And His Orchestra14.9Just A-Sittin' And A-Rockin'3:34284747Duke Ellington And His Orchestra14.10The Giddybug Gallop3:31284747Duke Ellington And His Orchestra14.11Chocolate Shake2:55284747Duke Ellington And His Orchestra14.12I Got It Bad And That Ain't Good3:18284747Duke Ellington And His Orchestra14.13Clementine2:58284747Duke Ellington And His Orchestra14.14The Brown Skin Gal3:09284747Duke Ellington And His Orchestra14.15Jump For Joy2:52284747Duke Ellington And His Orchestra14.16Moon Over Cuba3:10284747Duke Ellington And His Orchestra14.17Five O'Clock Drag3:13284747Duke Ellington And His Orchestra14.18Rocks In My Bed3:07284747Duke Ellington And His Orchestra14.19Bli-Blip3:05284747Duke Ellington And His Orchestra14.20Raincheck2:31284747Duke Ellington And His Orchestra14.21I Don't Know What Kind Of Blues I Got2:46284747Duke Ellington And His Orchestra14.22Chelsea Bridge2:52284747Duke Ellington And His OrchestraDuke Ellington - 1942-4415.1Perdido3:09284747Duke Ellington And His Orchestra15.2The 'C' Jam Blues2:38284747Duke Ellington And His Orchestra15.3Moon Mist (Atmosphere)2:57284747Duke Ellington And His Orchestra15.4What Am I Here For3:26284747Duke Ellington And His Orchestra15.5I Don't Mind2:52284747Duke Ellington And His Orchestra15.6Someone (You've Got My Heart)3:10284747Duke Ellington And His Orchestra15.7My Little Brown Book3:14284747Duke Ellington And His Orchestra15.8Main Stem (Altitude)2:50284747Duke Ellington And His Orchestra15.9Johnny Come Lately2:41284747Duke Ellington And His Orchestra15.10Hayfoot, Strawfoot2:34284747Duke Ellington And His Orchestra15.11Sentimental Lady3:01284747Duke Ellington And His Orchestra15.12A Slip Of The Lip2:55284747Duke Ellington And His Orchestra15.13Sherman Shuffle2:39284747Duke Ellington And His Orchestra15.14I Ain’t Got Nothing But The Blues2:43284747Duke Ellington And His Orchestra15.15I‘m Beginning To See The Light3:13284747Duke Ellington And His Orchestra15.16Don’t You Know I Care3:07284747Duke Ellington And His Orchestra15.17Sentimental Lady (I Didn’t Know About You)2:45284747Duke Ellington And His Orchestra15.18Work Song4:35284747Duke Ellington And His Orchestra15.19Come Sunday4:31284747Duke Ellington And His Orchestra15.20The Blues4:32284747Duke Ellington And His Orchestra15.21Three Dances4:30284747Duke Ellington And His OrchestraDuke Ellington - 194516.1Carnegie Blues284747Duke Ellington And His Orchestra16.2Blue Cellophane2:51284747Duke Ellington And His Orchestra16.3The Mood To Be Wooed2:57284747Duke Ellington And His Orchestra16.4My Heart Sings2:53284747Duke Ellington And His Orchestra16.5Perfume Suite (Part 1)5:52284747Duke Ellington And His Orchestra16.6Perfume Suite (Part 2)5:13284747Duke Ellington And His Orchestra16.7Frantic Fantasy4:43284747Duke Ellington And His Orchestra16.8It Don’t Mean A Thing (If It Ain’t Got That Swing) 4:30284747Duke Ellington And His Orchestra16.9Black, Brown And Beige (Part 1)6:46284747Duke Ellington And His Orchestra16.10Black, Brown And Beige (Part 2)6:31284747Duke Ellington And His Orchestra16.11Caravan2:49284747Duke Ellington And His Orchestra16.12Black And Tan Fantasy2:51284747Duke Ellington And His Orchestra16.13Mood Indigo2:47284747Duke Ellington And His Orchestra16.14Harlem Air Shaft4:03284747Duke Ellington And His Orchestra16.15Black Beauty2:51284747Duke Ellington And His Orchestra16.16Every Hour On The Hour3:09284747Duke Ellington And His OrchestraDuke Ellington 1945-4617.1Hollywood Hangover3:40284747Duke Ellington And His Orchestra17.2Kissing Bug3:05284747Duke Ellington And His Orchestra17.3In The Shade Of The Old Apple Tree4:57284747Duke Ellington And His Orchestra17.4Frankie And Johnny (Part 1)4:12284747Duke Ellington And His Orchestra17.5Frankie And Johnny (Part 2)3:13284747Duke Ellington And His Orchestra17.6Sugar Hill Penthouse4:23284747Duke Ellington And His Orchestra17.7Diminuendo In Blue - Crescendo In Blue6:32284747Duke Ellington And His Orchestra17.8New World A Comin’ (Part 1)6:17284747Duke Ellington And His Orchestra17.9New World A Comin’ (Part 2)6:18284747Duke Ellington And His Orchestra17.10Prelude To A Kiss2:54284747Duke Ellington And His Orchestra17.11Ring Dem Bells3:15284747Duke Ellington And His Orchestra17.12Time’s A Wastin’3:05284747Duke Ellington And His Orchestra17.13Carnegie Blues2:51284747Duke Ellington And His Orchestra17.14Rockabye River3:05284747Duke Ellington And His Orchestra17.15Suddenly It Jumped2:49284747Duke Ellington And His Orchestra17.16Transblucency3:00284747Duke Ellington And His Orchestra17.17Just Squeeze Me3:25284747Duke Ellington And His OrchestraDuke Ellington - 1941 - The Hollywood Transcriptions18.1Take The ‘A’ Train2:54284747Duke Ellington And His Orchestra18.2I Hear A Rhapsody4:08284747Duke Ellington And His Orchestra18.3It’s Sad But True3:08284747Duke Ellington And His Orchestra18.4Madame Will Drop Her Shawl2:06284747Duke Ellington And His Orchestra18.5Frenesi3:09284747Duke Ellington And His Orchestra18.6Until Tonight2:57284747Duke Ellington And His Orchestra18.7West Indian Stomp3:01284747Duke Ellington And His Orchestra18.8Love And I2:46284747Duke Ellington And His Orchestra18.9John Hardy2:22284747Duke Ellington And His Orchestra18.10Clementine2:51284747Duke Ellington And His Orchestra18.11Chelsea Bridge3:05284747Duke Ellington And His Orchestra18.12Love Like This Can’t Last2:29284747Duke Ellington And His Orchestra18.13After All3:05284747Duke Ellington And His Orchestra18.14Jumpin’ Punkins3:25284747Duke Ellington And His Orchestra18.15Frankie And Johnny3:08284747Duke Ellington And His Orchestra18.16Flamingo3:16284747Duke Ellington And His Orchestra18.17Bakiff4:20284747Duke Ellington And His Orchestra18.18Stomp Caprice2:05284747Duke Ellington And His Orchestra18.19Bugle Breaks2:56284747Duke Ellington And His Orchestra18.20Have You Changed2:55284747Duke Ellington And His Orchestra18.21Raincheck2:36284747Duke Ellington And His Orchestra18.22Blue Serge3:23284747Duke Ellington And His Orchestra18.23Moon Mist2:34284747Duke Ellington And His Orchestra18.24I Don’t Want To Set The World On Fire3:11284747Duke Ellington And His Orchestra18.25Easy Street2:45284747Duke Ellington And His Orchestra18.26Perdido1:57284747Duke Ellington And His OrchestraMills Blue Rhythm Band - 193119.1Straddle The Fence2:561678805The Mills Blue Rhythm Band19.2Levee Low Down3:081678805The Mills Blue Rhythm Band19.3Moanin' (House Hop)3:011678805The Mills Blue Rhythm Band19.4(I'm Left With The) Blues In My Heart3:121678805The Mills Blue Rhythm Band19.5Minnie The Moocher3:081678805The Mills Blue Rhythm Band19.6Minnie The Moocher2:531678805The Mills Blue Rhythm Band19.7Blue Rhythm2:581678805The Mills Blue Rhythm Band19.8Blue Flame3:111678805The Mills Blue Rhythm Band19.9Red Devil2:551678805The Mills Blue Rhythm Band19.10Star Dust2:451678805The Mills Blue Rhythm Band19.11Minnie The Moocher2:571678805The Mills Blue Rhythm Band19.12Black And Tan Fantasy2:511678805The Mills Blue Rhythm Band19.13Sugar Blues2:531678805The Mills Blue Rhythm Band19.14Sugar Blues2:381678805The Mills Blue Rhythm Band19.15Low Down On The Bayou2:391678805The Mills Blue Rhythm Band19.16Futuristic Jungleism2:361678805The Mills Blue Rhythm Band19.17Moanin'3:151678805The Mills Blue Rhythm Band19.18I Can't Get Along Without My Baby2:561678805The Mills Blue Rhythm Band19.19Moanin'3:051678805The Mills Blue Rhythm Band19.20Low Down On The Bayou2:561678805The Mills Blue Rhythm Band19.21Blue Rhythm3:061678805The Mills Blue Rhythm Band19.22Heebie Jeebies3:121678805The Mills Blue Rhythm Band19.23Minnie The Moocher2:501678805The Mills Blue Rhythm BandMills Blue Rhythm Band - 1931-3220.1Savage Rhythm3:091678805The Mills Blue Rhythm Band20.2I'm Sorry I Made You Blue3:151678805The Mills Blue Rhythm Band20.3Ev’ry Time I Look At You3:001678805The Mills Blue Rhythm Band20.4Snake Hips2:591678805The Mills Blue Rhythm Band20.5The Scat Song2:46557961Baron Lee And The Blue Rhythm Band20.6Heat Waves3:13557961Baron Lee And The Blue Rhythm Band20.7Doin' The Shake2:37557961Baron Lee And The Blue Rhythm Band20.8The Scat Song2:59557961Baron Lee And The Blue Rhythm Band20.9Cabin In The Cotton3:00557961Baron Lee And The Blue Rhythm Band20.10Minnie The Moocher's Wedding Day3:02557961Baron Lee And The Blue Rhythm Band20.11The Growl2:41557961Baron Lee And The Blue Rhythm Band20.12Mighty Sweet3:03557961Baron Lee And The Blue Rhythm Band20.13The Scat Song2:532444767Billy Banks And His Orchestra20.14Minnie The Moocher's Wedding Day2:522444767Billy Banks And His Orchestra20.15Rhythm Spasm2:47557961Baron Lee And The Blue Rhythm Band20.16My Swanee Lullaby2:51557961Baron Lee And The Blue Rhythm Band20.17White Lightnin’3:01557961Baron Lee And The Blue Rhythm Band20.18Wild Waves3:02557961Baron Lee And The Blue Rhythm Band20.19Oh, You Sweet Thing2:462444767Billy Banks And His Orchestra20.20It Don't Mean A Thing (If It Ain't Got That Swing)2:472444767Billy Banks And His Orchestra20.21Sentimental Gentleman From Georgia2:47557961Baron Lee And The Blue Rhythm Band20.22You Gave Me Everything But Love3:08557961Baron Lee And The Blue Rhythm Band20.23Old Yazoo2:57557961Baron Lee And The Blue Rhythm Band20.24Reefer Man2:43557961Baron Lee And The Blue Rhythm BandMills Blue Rhythm Band - 1932-3421.1Jazz Cocktail2:56557961Baron Lee And The Blue Rhythm Band21.2Smoke Rings2:53557961Baron Lee And The Blue Rhythm Band21.3Ridin' In Rhythm3:131678805The Mills Blue Rhythm Band21.4Weary Traveller3:111678805The Mills Blue Rhythm Band21.5Buddy's Wednesday Outing3:181678805The Mills Blue Rhythm Band21.6Harlem After Midnight3:021678805The Mills Blue Rhythm Band21.7Jazz Martini3:031678805The Mills Blue Rhythm Band21.8Feelin' Gay2:561678805The Mills Blue Rhythm Band21.9Break It Down2:441678805The Mills Blue Rhythm Band21.10Kokey Joe3:071678805The Mills Blue Rhythm Band21.11Love's Serenade3:241678805The Mills Blue Rhythm Band21.12Harlem After Midnight3:161678805The Mills Blue Rhythm Band21.13The Stuff Is Here (And It’s Mellow)2:571678805The Mills Blue Rhythm Band21.14The Growl2:561678805The Mills Blue Rhythm Band21.15Frankie And Johnny3:062120539Chick Bullock & His Levee Loungers21.16I Can't Dance (I’ve Got Ants In My Pants)2:552120539Chick Bullock & His Levee Loungers21.17Swingin' In E Flat2:591678805The Mills Blue Rhythm Band21.18Let's Have A Jubilee2:541678805The Mills Blue Rhythm Band21.19Out Of A Dream3:041678805The Mills Blue Rhythm BandMills Blue Rhythm Band - 1934-3522.1African Lullaby3:011678805The Mills Blue Rhythm Band22.2Solitude3:041678805The Mills Blue Rhythm Band22.3Dancing Dogs2:481678805The Mills Blue Rhythm Band22.4Love’s Serenade3:021678805The Mills Blue Rhythm Band22.5Keep That Rhythm Going2:531678805The Mills Blue Rhythm Band22.6Like A Bolt From The Blue3:061678805The Mills Blue Rhythm Band22.7Blue Interlude2:534643640Chuck Richards (2)22.8A Rainbow Filled With Music2:444643640Chuck Richards (2)22.9Devil In The Moon2:544643640Chuck Richards (2)22.10Back Beats2:481678805The Mills Blue Rhythm Band22.11Spitfire3:011678805The Mills Blue Rhythm Band22.12Brown Sugar Mine3:121678805The Mills Blue Rhythm Band22.13Ride, Red, Ride3:001678805The Mills Blue Rhythm Band22.14Harlem Heat3:021678805The Mills Blue Rhythm Band22.15Once To Every Heart2:571678805The Mills Blue Rhythm Band22.16Congo Caravan2:411678805The Mills Blue Rhythm Band22.17There’s Rhythm In Harlem3:061678805The Mills Blue Rhythm Band22.18Talahassee2:331678805The Mills Blue Rhythm Band22.19Waiting In The Garden2:391678805The Mills Blue Rhythm Band22.20Dinah Lou2:451678805The Mills Blue Rhythm Band22.21Cotton3:061678805The Mills Blue Rhythm Band22.22Truckin’2:411678805The Mills Blue Rhythm BandMills Blue Rhythm Band - 1935-3623.1Blue Mood3:021678805The Mills Blue Rhythm Band23.2E-Flat Stride3:031678805The Mills Blue Rhythm Band23.3Broken Dreams Of You2:421678805The Mills Blue Rhythm Band23.4Yes, Yes2:541678805The Mills Blue Rhythm Band23.5Shoe Shine Boy2:441678805The Mills Blue Rhythm Band23.6Midnight Ramble2:571678805The Mills Blue Rhythm Band23.7Red Rhythm3:051678805The Mills Blue Rhythm Band23.8Everything Is Still Okay3:151678805The Mills Blue Rhythm Band23.9Jes’ Natch’ully Lazy3:071678805The Mills Blue Rhythm Band23.10St. Louis Wiggle Rhythm2:571678805The Mills Blue Rhythm Band23.11Merry-Go-Round2:521678805The Mills Blue Rhythm Band23.12Until The Real Thing Come Along3:151678805The Mills Blue Rhythm Band23.13In A Sentimental Mood2:521678805The Mills Blue Rhythm Band23.14Carry Me Back To Green Pastures3:081678805The Mills Blue Rhythm Band23.15Balloonacy2:581678805The Mills Blue Rhythm Band23.16Barrelhouse3:031678805The Mills Blue Rhythm Band23.17The Moon Is Grinning At Me3:041678805The Mills Blue Rhythm Band23.18Showboat Shuffle3:181678805The Mills Blue Rhythm Band23.19Big John’s Special2:571678805The Mills Blue Rhythm Band23.20Mr. Ghost Goes To Town3:251678805The Mills Blue Rhythm Band23.21Callin’ Your Bluff3:011678805The Mills Blue Rhythm Band23.22Algiers Stomp3:051678805The Mills Blue Rhythm BandJimmie Lunceford - 193424.1White Heat2:29317906Jimmie Lunceford And His Orchestra24.2Jazznocracy2:42317906Jimmie Lunceford And His Orchestra24.3Chillun, Get Up3:16317906Jimmie Lunceford And His Orchestra24.4Leaving Me3:12317906Jimmie Lunceford And His Orchestra24.5Swingin’ Uptown2:40317906Jimmie Lunceford And His Orchestra24.6Swingin’ Uptown2:38317906Jimmie Lunceford And His Orchestra24.7Breakfast Ball3:01317906Jimmie Lunceford And His Orchestra24.8Here Goes (A Fool)2:48317906Jimmie Lunceford And His Orchestra24.9Here Goes (A Fool)2:48317906Jimmie Lunceford And His Orchestra24.10Remember When3:19317906Jimmie Lunceford And His Orchestra24.11Remember When3:22317906Jimmie Lunceford And His Orchestra24.12Sophisticated Lady3:07317906Jimmie Lunceford And His Orchestra24.13Mood Indigo2:51317906Jimmie Lunceford And His Orchestra24.14Rose Room3:01317906Jimmie Lunceford And His Orchestra24.15Black And Tan Fantasy2:46317906Jimmie Lunceford And His Orchestra24.16Stratosphere2:14317906Jimmie Lunceford And His Orchestra24.17Nana3:05317906Jimmie Lunceford And His Orchestra24.18Miss Otis Regrets (She’s Unable To Lunch Today)2:42317906Jimmie Lunceford And His Orchestra24.19Unsophisticated Sue3:07317906Jimmie Lunceford And His Orchestra24.20Stardust3:04317906Jimmie Lunceford And His OrchestraJimmie Lunceford - 1934-3525.1Dream Of You3:20317906Jimmie Lunceford And His Orchestra25.2Stomp It Off3:17317906Jimmie Lunceford And His Orchestra25.3Call It Anything (It Wasn’t Love)3:19317906Jimmie Lunceford And His Orchestra25.4Because You’re You3:23317906Jimmie Lunceford And His Orchestra25.5Chillun, Get Up3:10317906Jimmie Lunceford And His Orchestra25.6Solitude3:13317906Jimmie Lunceford And His Orchestra25.7Rain3:12317906Jimmie Lunceford And His Orchestra25.8Since My Best Gal Turned Me Down3:22317906Jimmie Lunceford And His Orchestra25.9Jealous3:00317906Jimmie Lunceford And His Orchestra25.10Rhythm Is Our Business3:12317906Jimmie Lunceford And His Orchestra25.11Rhythm Is Our Business3:14317906Jimmie Lunceford And His Orchestra25.12I’m Walking Through Heaven With You3:12317906Jimmie Lunceford And His Orchestra25.13Shake Your Head (From Side To Side)2:44317906Jimmie Lunceford And His Orchestra25.14Sleepy Time Gal3:09317906Jimmie Lunceford And His Orchestra25.15Bird Of Paradise3:16317906Jimmie Lunceford And His Orchestra25.16Rhapsody Junior3:19317906Jimmie Lunceford And His Orchestra25.17Runnin’ Wild3:07317906Jimmie Lunceford And His Orchestra25.18Four Or Five Times3:10317906Jimmie Lunceford And His Orchestra25.19(If I Had) Rhythm In My Nursery Rhymes3:05317906Jimmie Lunceford And His Orchestra25.20Babs3:08317906Jimmie Lunceford And His Orchestra25.21Swanee River2:45317906Jimmie Lunceford And His Orchestra25.22Thunder3:03317906Jimmie Lunceford And His Orchestra25.23Oh Boy3:09317906Jimmie Lunceford And His OrchestraJimmie Lunceford - 1935-3726.1I’ll Take The South2:39317906Jimmie Lunceford And His Orchestra26.2Avalon3:07317906Jimmie Lunceford And His Orchestra26.3Charmaine2:52317906Jimmie Lunceford And His Orchestra26.4Hittin’ The Bottle3:02317906Jimmie Lunceford And His Orchestra26.5My Blue Heaven3:12317906Jimmie Lunceford And His Orchestra26.6I’m Nuts About Screwy Music3:05317906Jimmie Lunceford And His Orchestra26.7The Best Things In Life Are Free3:23317906Jimmie Lunceford And His Orchestra26.8The Melody Man3:03317906Jimmie Lunceford And His Orchestra26.9Organ Grinder’s Swing2:39317906Jimmie Lunceford And His Orchestra26.10On The Beach At Bali-Bali2:58317906Jimmie Lunceford And His Orchestra26.11Me And The Man In The Moon3:04317906Jimmie Lunceford And His Orchestra26.12Living From Day To Day3:05317906Jimmie Lunceford And His Orchestra26.13‘Tain’t Good (Like A Nickel Made Of Wood) 3:12317906Jimmie Lunceford And His Orchestra26.14Muddy Water (A Mississippi Moan)2:56317906Jimmie Lunceford And His Orchestra26.15I Can’t Escape From You3:00317906Jimmie Lunceford And His Orchestra26.16Harlem Shout2:57317906Jimmie Lunceford And His Orchestra26.17(This Is) My Last Affair2:49317906Jimmie Lunceford And His Orchestra26.18Running A Temperature2:58317906Jimmie Lunceford And His Orchestra26.19Count Me Out3:13317906Jimmie Lunceford And His Orchestra26.20I’ll See You In My Dreams2:45317906Jimmie Lunceford And His Orchestra26.21He Ain’t Got Rhythm2:44317906Jimmie Lunceford And His Orchestra26.22Linger Awhile2:34317906Jimmie Lunceford And His Orchestra26.23Honest And Truly3:00317906Jimmie Lunceford And His Orchestra26.24Slummin‘ On Park Avenue3:02317906Jimmie Lunceford And His OrchestraJimmie Lunceford - 1937-3927.1Coquette3:12317906Jimmie Lunceford And His Orchestra27.2The Merry-Go-Round Broke Down2:54317906Jimmie Lunceford And His Orchestra27.3Ragging The Scale3:10317906Jimmie Lunceford And His Orchestra27.4Hell’s Bells3:08317906Jimmie Lunceford And His Orchestra27.5For Dancers Only2:41317906Jimmie Lunceford And His Orchestra27.6Posin‘2:59317906Jimmie Lunceford And His Orchestra27.7The First Time I Saw You2:46317906Jimmie Lunceford And His Orchestra27.8Honey, Keep Your Mind On Me3:08317906Jimmie Lunceford And His Orchestra27.9Put On Your Old Grey Bonnet2:48317906Jimmie Lunceford And His Orchestra27.10Pigeon Walk2:39317906Jimmie Lunceford And His Orchestra27.11Like A Ship At Sea2:45317906Jimmie Lunceford And His Orchestra27.12Teasin‘ Tessie Brown2:55317906Jimmie Lunceford And His Orchestra27.13Annie Laurie3:11317906Jimmie Lunceford And His Orchestra27.14Frisco Fog3:11317906Jimmie Lunceford And His Orchestra27.15Margie3:06317906Jimmie Lunceford And His Orchestra27.16The Love Nest3:01317906Jimmie Lunceford And His Orchestra27.17I’m Laughin‘ Up My Sleeve (Ha-Ha-Ha-Ha-Ha)2:51317906Jimmie Lunceford And His Orchestra27.18Down By The Old Mill Stream2:56317906Jimmie Lunceford And His Orchestra27.19My Melancholy Baby3:03317906Jimmie Lunceford And His Orchestra27.20Sweet Sue, Just You2:47317906Jimmie Lunceford And His Orchestra27.21By The River Sainte Marie3:14317906Jimmie Lunceford And His Orchestra27.22Rainin’2:58317906Jimmie Lunceford And His Orchestra27.23‘Tain’t What You Do3:04317906Jimmie Lunceford And His Orchestra27.24Cheatin’ On Me2:46317906Jimmie Lunceford And His Orchestra27.25Le Jazz Hot2:42317906Jimmie Lunceford And His Orchestra27.26Time’s A-Wastin’2:33317906Jimmie Lunceford And His OrchestraJimmie Lunceford - 193928.1Baby, Won’t You Please Come Home2:52317906Jimmie Lunceford And His Orchestra28.2You’re Just A Dream2:53317906Jimmie Lunceford And His Orchestra28.3The Lonesome Road2:33317906Jimmie Lunceford And His Orchestra28.4You Set Me On Fire2:40317906Jimmie Lunceford And His Orchestra28.5I’ve Only Myself To Blame2:48317906Jimmie Lunceford And His Orchestra28.6What Is This Thing Called Swing2:28317906Jimmie Lunceford And His Orchestra28.7Mixup2:21317906Jimmie Lunceford And His Orchestra28.8Shoemaker’s Holiday2:54317906Jimmie Lunceford And His Orchestra28.9Blue Blazes2:52317906Jimmie Lunceford And His Orchestra28.10Mandy2:55317906Jimmie Lunceford And His Orchestra28.11Easter Parade2:42317906Jimmie Lunceford And His Orchestra28.12Ain’t She Sweet2:30317906Jimmie Lunceford And His Orchestra28.13White Heat2:25317906Jimmie Lunceford And His Orchestra28.14Oh Why, Oh Why2:52317906Jimmie Lunceford And His Orchestra28.15Well, All Right Then2:43317906Jimmie Lunceford And His Orchestra28.16You Let Me Down2:54317906Jimmie Lunceford And His Orchestra28.17I Love You2:48317906Jimmie Lunceford And His Orchestra28.18Who Did You Meet Last Night2:38317906Jimmie Lunceford And His Orchestra28.19You Let Me Down2:50317906Jimmie Lunceford And His Orchestra28.20Sassin’ The Boss2:47317906Jimmie Lunceford And His Orchestra28.21I Want The Waiter (With The Water)2:45317906Jimmie Lunceford And His Orchestra28.22I Used To Love You (But It’s All Over Now)2:47317906Jimmie Lunceford And His Orchestra28.23Belgium Stomp2:31317906Jimmie Lunceford And His Orchestra28.24You Can Fool Some Of The People2:23317906Jimmie Lunceford And His Orchestra28.25Think Of Me, Little Daddy2:44317906Jimmie Lunceford And His Orchestra28.26Liza (All The Crowds ’ll Roll Away)2:40317906Jimmie Lunceford And His OrchestraJimmie Lunceford - 1939-4029.1Put It Away2:41317906Jimmie Lunceford And His Orchestra29.2I’m Alone With You2:39317906Jimmie Lunceford And His Orchestra29.3Rock It For Me2:38317906Jimmie Lunceford And His Orchestra29.4I’m In An Awful Mood2:48317906Jimmie Lunceford And His Orchestra29.5Wham (Re-Bop-Boom-Bam)2:49317906Jimmie Lunceford And His Orchestra29.6Pretty Eyes2:43317906Jimmie Lunceford And His Orchestra29.7Uptown Blues2:54317906Jimmie Lunceford And His Orchestra29.8Lunceford Special2:49317906Jimmie Lunceford And His Orchestra29.9Bugs Parade2:29317906Jimmie Lunceford And His Orchestra29.10Blues In The Groove2:34317906Jimmie Lunceford And His Orchestra29.11I Wanna Hear Swing Songs2:55317906Jimmie Lunceford And His Orchestra29.12It’s Time To Jump And Shout2:53317906Jimmie Lunceford And His Orchestra29.13What’s Your Story, Morning Glory3:11317906Jimmie Lunceford And His Orchestra29.14Dinah (Part 1)2:17317906Jimmie Lunceford And His Orchestra29.15Dinah (Part 2)2:15317906Jimmie Lunceford And His Orchestra29.16Sonata By L. Van Beethoven (Pathetique, Op. 13)3:16317906Jimmie Lunceford And His Orchestra29.17I Got It2:55317906Jimmie Lunceford And His Orchestra29.18Chopin’s Prelude No. 72:49317906Jimmie Lunceford And His Orchestra29.19Swingin’ On C2:21317906Jimmie Lunceford And His Orchestra29.20Let’s Try Again2:52317906Jimmie Lunceford And His Orchestra29.21Monotony In Four Flats2:53317906Jimmie Lunceford And His Orchestra29.22Barefoot Blues2:43317906Jimmie Lunceford And His Orchestra29.23Minnie The Moocher’s Dead2:26317906Jimmie Lunceford And His Orchestra29.24I Ain’t Gonna Study War No More2:55317906Jimmie Lunceford And His Orchestra29.25Pavanne2:46317906Jimmie Lunceford And His OrchestraEarl Hines - 1932-3330.1Deep Forest2:45341505Earl Hines And His Orchestra30.2Oh, You Sweet Thing2:54341505Earl Hines And His Orchestra30.3Blue Drag2:58341505Earl Hines And His Orchestra30.4Blue Drag2:52341505Earl Hines And His Orchestra30.5I Love You Because I Love You2:51341505Earl Hines And His Orchestra30.6I Love You Because I Love You2:49341505Earl Hines And His Orchestra30.7I Love You Because I Love You2:46341505Earl Hines And His Orchestra30.8Sensational Mood3:14341505Earl Hines And His Orchestra30.9Sensational Mood3:09341505Earl Hines And His Orchestra30.10Rosetta2:59341505Earl Hines And His Orchestra30.11Why Must We Part2:45341505Earl Hines And His Orchestra30.12Why Must We Part2:39341505Earl Hines And His Orchestra30.13Maybe I’m To Blame3:10341505Earl Hines And His Orchestra30.14Maybe I’m To Blame3:05341505Earl Hines And His Orchestra30.15Cavernism2:48341505Earl Hines And His Orchestra30.16Cavernism2:48341505Earl Hines And His Orchestra30.17Take It Easy2:43341505Earl Hines And His Orchestra30.18Harlem Lament2:58341505Earl Hines And His Orchestra30.19Bubbling Over2:53341505Earl Hines And His Orchestra30.20I Want A Lot Of Love2:36341505Earl Hines And His OrchestraEarl Hines - 193431.1Just To Be In Caroline2:46341505Earl Hines And His Orchestra31.2Just To Be In Caroline2:44341505Earl Hines And His Orchestra31.3We Found Romance2:33341505Earl Hines And His Orchestra31.4We Found Romance2:32341505Earl Hines And His Orchestra31.5Blue (Because Of You)2:59341505Earl Hines And His Orchestra31.6Blue (Because Of You)2:57341505Earl Hines And His Orchestra31.7Madhouse2:41341505Earl Hines And His Orchestra31.8Julia2:55341505Earl Hines And His Orchestra31.9Julia2:57341505Earl Hines And His Orchestra31.10Darkness2:35341505Earl Hines And His Orchestra31.11You’re The One Of My Dreams2:36341505Earl Hines And His Orchestra31.12Swingin’ Down2:45341505Earl Hines And His Orchestra31.13That’s A Plenty3:03341505Earl Hines And His Orchestra31.14Fat Babes3:19341505Earl Hines And His Orchestra31.15Maple Leaf Rag2:47341505Earl Hines And His Orchestra31.16Sweet Georgia Brown2:27341505Earl Hines And His Orchestra31.17Rosetta2:41341505Earl Hines And His Orchestra31.18Copenhagen2:31341505Earl Hines And His Orchestra31.19Angry2:33341505Earl Hines And His Orchestra31.20Wolverine Blues2:35341505Earl Hines And His Orchestra31.21Rock And Rye3:20341505Earl Hines And His Orchestra31.22Cavernism3:00341505Earl Hines And His OrchestraEarl Hines - 1935-3832.1Disappointed In Love3:00341505Earl Hines And His Orchestra32.2Rhythm Lullaby2:58341505Earl Hines And His Orchestra32.3Japanese Sandman2:43341505Earl Hines And His Orchestra32.4Bubbling Over2:56341505Earl Hines And His Orchestra32.5Blue (Because Of You)2:56341505Earl Hines And His Orchestra32.6Julia3:02341505Earl Hines And His Orchestra32.7Flany Doodle Swing2:45399273Earl Hines Quartet32.8Pianology2:37399273Earl Hines Quartet32.9Rhythm Sundae2:53399273Earl Hines Quartet32.10Inspiration2:55399273Earl Hines Quartet32.11I Can’t Believe That You’re In Love With Me2:52399273Earl Hines Quartet32.12Honeysuckle Rose2:54399273Earl Hines Quartet32.13Blue Skies2:43341505Earl Hines And His Orchestra32.14Blue Skies2:32341505Earl Hines And His Orchestra32.15Hines Rhythm2:29341505Earl Hines And His Orchestra32.16Hines Rhythm2:39341505Earl Hines And His Orchestra32.17Rhythm Rhapsody3:02341505Earl Hines And His Orchestra32.18A Mellow Bit Of Rhythm2:42341505Earl Hines And His Orchestra32.19Ridin’ A Riff2:59341505Earl Hines And His Orchestra32.20Solid Mama2:37341505Earl Hines And His Orchestra32.21Goodnight, Sweet Dreams, Goodnight2:08341505Earl Hines And His OrchestraEarl Hines - 1939-4033.1Indiana1:59341505Earl Hines And His Orchestra33.2G.T. Stomp2:38341505Earl Hines And His Orchestra33.3G.T. Stomp2:36341505Earl Hines And His Orchestra33.4Ridin’ And Jivin’2:37341505Earl Hines And His Orchestra33.5Grand Terrace Shuffle2:36341505Earl Hines And His Orchestra33.6Father Steps In3:03341505Earl Hines And His Orchestra33.7Piano Man2:33341505Earl Hines And His Orchestra33.8Riff Medley2:45341505Earl Hines And His Orchestra33.9Me And Columbus2:37341505Earl Hines And His Orchestra33.10XYZ2:20341505Earl Hines And His Orchestra33.11‘Gator Swing2:49341505Earl Hines And His Orchestra33.12After All I’ve Been To You2:54341505Earl Hines And His Orchestra33.13Lightly And Politely2:56341505Earl Hines And His Orchestra33.14Rosetta3:05257353Earl Hines33.15Boogie Woogie On St. Louis Blues2:42341505Earl Hines And His Orchestra33.16Boogie Woogie On St. Louis Blues2:48341505Earl Hines And His Orchestra33.17Deep Forest2:29341505Earl Hines And His Orchestra33.18My Heart Beats For You3:03341505Earl Hines And His Orchestra33.19Number 192:44341505Earl Hines And His Orchestra33.20Body And Soul2:48257353Earl Hines33.21Child Of A Disordered Brain2:34257353Earl HinesEarl Hines - 1940-4134.1Wait ‘Til It Happens To You3:07341505Earl Hines And His Orchestra34.2Call Me Happy2:39341505Earl Hines And His Orchestra34.3Ann3:00341505Earl Hines And His Orchestra34.4Topsy-Turvy2:42341505Earl Hines And His Orchestra34.5Blue Because Of You3:14341505Earl Hines And His Orchestra34.6You Can Depend On Me2:29341505Earl Hines And His Orchestra34.7Tantalizing A Cuban2:57341505Earl Hines And His Orchestra34.8Easy Rhythm2:52341505Earl Hines And His Orchestra34.9In Swamp Lands2:50341505Earl Hines And His Orchestra34.10I’m Falling For You3:05341505Earl Hines And His Orchestra34.11Everything Depends On You2:55341505Earl Hines And His Orchestra34.12Comin’ In Home2:45341505Earl Hines And His Orchestra34.13Jelly, Jelly3:24341505Earl Hines And His Orchestra34.14Up Jumped The Devil2:47341505Earl Hines And His Orchestra34.15Sally, Won’t You Come Back2:45341505Earl Hines And His Orchestra34.16Jersey Bounce3:03341505Earl Hines And His Orchestra34.17Julia3:04341505Earl Hines And His Orchestra34.18South Side2:51341505Earl Hines And His Orchestra34.19On The Sunny Side Of The Street2:40257353Earl HinesEarl Hines Piano Solo34.20On The Sunny Side Of The Street2:33257353Earl HinesEarl Hines Piano Solo34.21My Melancholy Baby2:30257353Earl HinesEarl Hines Piano Solo34.22My Melancholy Baby2:33257353Earl HinesEarl Hines Piano SoloEarl Hines - 1941-4235.1It Had To Be You3:07341505Earl Hines And His Orchestra35.2Windy City Jive2:39341505Earl Hines And His Orchestra35.3Straight To Love3:00341505Earl Hines And His Orchestra35.4Water Boy2:42341505Earl Hines And His Orchestra35.5Swingin’ On C3:14341505Earl Hines And His Orchestra35.6Yellow Fire2:29341505Earl Hines And His Orchestra35.7Somehow2:57341505Earl Hines And His Orchestra35.8I Got It Bad And That Ain’t Good2:52341505Earl Hines And His Orchestra35.9I Never Dreamt2:50341505Earl Hines And His Orchestra35.10The Father Jumps3:05341505Earl Hines And His Orchestra35.11The Boy With The Wistful Eyes2:55341505Earl Hines And His Orchestra35.12The Jitney Man2:45341505Earl Hines And His Orchestra35.13The Earl3:24341505Earl Hines And His Orchestra35.14You Don’t Know What Love Is2:47341505Earl Hines And His Orchestra35.15She ’ll Always Remember2:45341505Earl Hines And His Orchestra35.16Skylark3:03341505Earl Hines And His Orchestra35.17Second Balcony Jump3:04341505Earl Hines And His Orchestra35.18Stormy Monday Blues2:51341505Earl Hines And His OrchestraChick Webb - 1931-3436.1Heebie Jeebies3:06342796Chick Webb And His Orchestra36.2Blues In My Heart3:09342796Chick Webb And His Orchestra36.3Soft And Sweet3:06342796Chick Webb And His Orchestra36.4On The Sunny Side Of The Street2:53342796Chick Webb And His Orchestra36.5Darktown Strutters’ Ball2:50342796Chick Webb And His Orchestra36.6If Dreams Come True3:22342796Chick Webb And His Orchestra36.7Let’s Get Together3:03342796Chick Webb And His Orchestra36.8I Can’t Dance (I Got Ants In My Pants)2:58342796Chick Webb And His Orchestra36.9Imagination3:24342796Chick Webb And His Orchestra36.10Why Should I Beg For Love3:05342796Chick Webb And His Orchestra36.11Stompin‘ At The Savoy3:11342796Chick Webb And His Orchestra36.12Blue Minor2:45342796Chick Webb And His Orchestra36.13True2:43342796Chick Webb And His Orchestra36.14Lonesome Moments2:45342796Chick Webb And His Orchestra36.15If It Ain’t Love2:59342796Chick Webb And His Orchestra36.16That Rhythm Man2:56342796Chick Webb And His Orchestra36.17On The Sunny Side Of The Street2:50342796Chick Webb And His Orchestra36.18Lona2:48342796Chick Webb And His Orchestra36.19Blue Minor3:05342796Chick Webb And His Orchestra36.20It’s Over Because We’re Through3:16342796Chick Webb And His Orchestra36.21Don’t Be That Way2:38342796Chick Webb And His Orchestra36.22What A Shuffle2:56342796Chick Webb And His Orchestra36.23Blue Lou3:06342796Chick Webb And His OrchestraChick Webb - 1935-3737.1I’ll Chase The Blues Away2:34342796Chick Webb And His Orchestra37.2Down Home Rag2:55342796Chick Webb And His Orchestra37.3Are You Here To Stay3:10342796Chick Webb And His Orchestra37.4Love And Kisses3:19342796Chick Webb And His Orchestra37.5Rhythm And Romance3:05342796Chick Webb And His Orchestra37.6Moonlight And Magnolias2:52342796Chick Webb And His Orchestra37.7I’ll Chase The Blues Away2:43342796Chick Webb And His Orchestra37.8I May Be Wrong3:05342796Chick Webb And His Orchestra37.9Facts And Figures2:35342796Chick Webb And His Orchestra37.10Crying My Heart Out For You3:08342796Chick Webb And His Orchestra37.11Under The Spell Of The Blues3:04342796Chick Webb And His Orchestra37.12When I Get Low I Get High2:28342796Chick Webb And His Orchestra37.13Go Harlem2:21342796Chick Webb And His Orchestra37.14Sing Me A Swing Song2:34342796Chick Webb And His Orchestra37.15A Little Bit Later On3:02342796Chick Webb And His Orchestra37.16Love, You’re Just A Laugh3:09342796Chick Webb And His Orchestra37.17Devoting My Time To You2:27342796Chick Webb And His Orchestra37.18You’ll Have To Swing It (“Mr. Paganini”)2:58342796Chick Webb And His Orchestra37.19Swinging On The Reservation3:07342796Chick Webb And His Orchestra37.20I’ve Got The Spring Fever Blues3:02342796Chick Webb And His Orchestra37.21Vote For Mr. Rhythm2:28342796Chick Webb And His Orchestra37.22Take Another Guess2:43342796Chick Webb And His Orchestra37.23Love Marches On2:53342796Chick Webb And His Orchestra37.24There’s Frost On The Moon2:51342796Chick Webb And His Orchestra37.25Gee, But You’re Swell2:36342796Chick Webb And His OrchestraChick Webb - 1937-3838.1Rusty Hinge3:07342796Chick Webb And His Orchestra38.2Wake Up And Live2:38342796Chick Webb And His Orchestra38.3It’s Swell Of You3:14342796Chick Webb And His Orchestra38.4You Showed Me The Way3:07342796Chick Webb And His Orchestra38.5Clap Hands, Here Comes Charley2:33342796Chick Webb And His Orchestra38.6Cryin‘ Mood2:36342796Chick Webb And His Orchestra38.7Love Is The Thing, So They Say2:51342796Chick Webb And His Orchestra38.8That Naughty Waltz3:00342796Chick Webb And His Orchestra38.9Just A Simple Melody2:59342796Chick Webb And His Orchestra38.10I Got A Guy3:23342796Chick Webb And His Orchestra38.11Strictly Jive3:18342796Chick Webb And His Orchestra38.12Holiday In Harlem3:10342796Chick Webb And His Orchestra38.13Rock It For Me3:13342796Chick Webb And His Orchestra38.14Squeeze Me3:12342796Chick Webb And His Orchestra38.15Harlem Congo3:16342796Chick Webb And His Orchestra38.16I Want To Be Happy4:30342796Chick Webb And His Orchestra38.17The Dipsy Doodle3:14342796Chick Webb And His Orchestra38.18If Dreams Come True2:38342796Chick Webb And His Orchestra38.19Hallelujah4:03342796Chick Webb And His Orchestra38.20Midnite In A Madhouse2:34342796Chick Webb And His Orchestra38.21A-Tisket, A-Tasket3:37342796Chick Webb And His Orchestra38.22Heart Of Mine2:58342796Chick Webb And His Orchestra38.23I’m Just A Jitterbug3:19342796Chick Webb And His Orchestra38.24Azure3:12342796Chick Webb And His OrchestraChick Webb - 1938-3939.1Spinnin’ The Webb3:05342796Chick Webb And His Orchestra39.2Liza (All The Clouds ’ll Roll Away)2:47342796Chick Webb And His Orchestra39.3Pack Up Your Sins And Go To The Devil2:56342796Chick Webb And His Orchestra39.4MacPherson Is Rehearsin’ (To Swing)3:09342796Chick Webb And His Orchestra39.5Everybody Step2:47342796Chick Webb And His Orchestra39.6Ella2:46342796Chick Webb And His Orchestra39.7Wacky Dust3:05342796Chick Webb And His Orchestra39.8Gotta Pebble In My Shoe2:55342796Chick Webb And His Orchestra39.9I Can’t Stop Loving You3:06342796Chick Webb And His Orchestra39.10Who Ya Hunchin’2:51342796Chick Webb And His Orchestra39.11I Let A Tear Fall In The River3:12342796Chick Webb And His Orchestra39.12F.D.R. Jones2:55342796Chick Webb And His Orchestra39.13I Love Each Move You Make3:02342796Chick Webb And His Orchestra39.14It’s Foxy3:03342796Chick Webb And His Orchestra39.15I Found My Yellow Basket2:36342796Chick Webb And His Orchestra39.16Undecided3:16342796Chick Webb And His Orchestra39.17‘Tain’t What You Do3:02342796Chick Webb And His Orchestra39.18In The Groove At The Grove2:56342796Chick Webb And His Orchestra39.19One Side Of Me3:22342796Chick Webb And His Orchestra39.20My Heart Belongs To Daddy3:08342796Chick Webb And His Orchestra39.21Sugar Pie3:09342796Chick Webb And His Orchestra39.22It’s Slumbertime Along The Swanee2:50342796Chick Webb And His Orchestra39.23I’m Up A Tree3:07342796Chick Webb And His Orchestra39.24Chew-Chew-Chew (Your Bubble Gum)3:03342796Chick Webb And His OrchestraClaude Hopkins - 1932-3440.1I Would Do Anything For You3:141004115Claude Hopkins And His Orchestra40.2Mad Moments2:521004115Claude Hopkins And His Orchestra40.3Mush Mouth3:061004115Claude Hopkins And His Orchestra40.4How’m I Doin’3:121004115Claude Hopkins And His Orchestra40.5Three Little Words3:111004115Claude Hopkins And His Orchestra40.6I Would Do Anything For You3:001004115Claude Hopkins And His Orchestra40.7Hopkins Scream2:361004115Claude Hopkins And His Orchestra40.8Washington Squabble3:161004115Claude Hopkins And His Orchestra40.9Look Who’s Here3:081004115Claude Hopkins And His Orchestra40.10He’s A Son Of The South3:141004115Claude Hopkins And His Orchestra40.11Canadian Capers2:521004115Claude Hopkins And His Orchestra40.12California Here I Come3:101004115Claude Hopkins And His Orchestra40.13Three Little Words3:101004115Claude Hopkins And His Orchestra40.14Shake Your Ashes2:461004115Claude Hopkins And His Orchestra40.15Mystic Moan3:191004115Claude Hopkins And His Orchestra40.16Just You, Just Me2:481004115Claude Hopkins And His Orchestra40.17Washington Squabble3:051004115Claude Hopkins And His Orchestra40.18Ain’t Misbehavin’2:581004115Claude Hopkins And His Orchestra40.19Honeysuckle Rose3:041004115Claude Hopkins And His Orchestra40.20Washington Squabble3:071004115Claude Hopkins And His Orchestra40.21Mystic Moan2:481004115Claude Hopkins And His Orchestra40.22Marie3:011004115Claude Hopkins And His Orchestra40.23Ain’t Misbehavin‘3:111004115Claude Hopkins And His Orchestra40.24Harlem Rhythm Dance3:271004115Claude Hopkins And His Orchestra40.25Minor Mania2:481004115Claude Hopkins And His OrchestraClaude Hopkins - 1934-3541.01My Gal Sal3:031004115Claude Hopkins And His Orchestra41.02Three Little Words2:441004115Claude Hopkins And His Orchestra41.03Everybody Shuffle2:591004115Claude Hopkins And His Orchestra41.04Don’t Let Your Love Go Wrong2:381004115Claude Hopkins And His Orchestra41.05I Can’t Dance (I Got Ants In My Pants)2:481004115Claude Hopkins And His Orchestra41.06Margie3:111004115Claude Hopkins And His Orchestra41.07Chasing All The Blues Away3:111004115Claude Hopkins And His Orchestra41.08Just You, Just Me2:591004115Claude Hopkins And His Orchestra41.09King Porter Stomp3:131004115Claude Hopkins And His Orchestra41.10In The Shade Of The Old Apple Tree2:471004115Claude Hopkins And His Orchestra41.11Who2:261004115Claude Hopkins And His Orchestra41.12Walkin’ The Dog2:441004115Claude Hopkins And His Orchestra41.13Sweetheart O’Mine2:461004115Claude Hopkins And His Orchestra41.14Monkey Business2:441004115Claude Hopkins And His Orchestra41.15Zozoi2:441004115Claude Hopkins And His Orchestra41.16Mandy2:541004115Claude Hopkins And His Orchestra41.17Do You Ever Think Of Me3:001004115Claude Hopkins And His Orchestra41.18Trees3:041004115Claude Hopkins And His Orchestra41.19Love In Bloom3:041004115Claude Hopkins And His Orchestra41.20June In January3:201004115Claude Hopkins And His OrchestraCount Basie - 193742.01Honeysuckle Rose2:59253011Count Basie Orchestra42.02Pennies From Heaven3:02253011Count Basie Orchestra42.03Swinging At The Daisy Chain2:50253011Count Basie Orchestra42.04Roseland Shuffle2:34253011Count Basie Orchestra42.05Exactly Like You2:42253011Count Basie Orchestra42.06Boo-Hoo2:26253011Count Basie Orchestra42.07The Glory Of Love2:31253011Count Basie Orchestra42.08Boogie Woogie (I May Be Wrong)2:50253011Count Basie Orchestra42.09Smarty (You Know It All)2:42253011Count Basie Orchestra42.10One O'Clock Jump3:02253011Count Basie Orchestra42.11Listen My Children, And You Shall Hear3:07253011Count Basie Orchestra42.12John's Idea2:55253011Count Basie Orchestra42.13Good Morning Blues3:14253011Count Basie Orchestra42.14Good Morning Blues3:04253011Count Basie Orchestra42.15Our Love Was Meant To Be2:46253011Count Basie Orchestra42.16Time Out3:02253011Count Basie Orchestra42.17Topsy3:13253011Count Basie Orchestra42.18I Keep Remembering2:46253011Count Basie Orchestra42.19Out The Window2:48253011Count Basie Orchestra42.20Don't You Miss Your Baby3:09253011Count Basie Orchestra42.21Let Me Dream3:10253011Count Basie OrchestraCount Basie - 1938-3943.01Georgianna2:33253011Count Basie Orchestra43.02Blues In The Dark3:03253011Count Basie Orchestra43.03Sent For You Yesterday2:54253011Count Basie Orchestra43.04Every Tub3:15253011Count Basie Orchestra43.05Now Will You Be Good2:49253011Count Basie Orchestra43.06Swinging The Blues2:44253011Count Basie Orchestra43.07Mama Don't Want No Peas An' Rice An' Coconut Oil2:50253011Count Basie Orchestra43.08Blue And Sentimental3:10253011Count Basie Orchestra43.09Doggin' Around2:55253011Count Basie Orchestra43.10Stop Beatin' Around The Mulberry Bush3:03253011Count Basie Orchestra43.11Stop Beatin' Around The Mulberry Bush3:03253011Count Basie Orchestra43.12London Bridge Is Falling Down2:55253011Count Basie Orchestra43.13Texas Shuffle3:05253011Count Basie Orchestra43.14Jumpin' At The Woodside3:04253011Count Basie Orchestra43.15Dark Rapture2:39253011Count Basie Orchestra43.16Shorty George2:44253011Count Basie Orchestra43.17The Blues I Like To Hear3:09253011Count Basie Orchestra43.18Do You Wanna Jump Children2:38253011Count Basie Orchestra43.19Panassie Stomp2:44253011Count Basie Orchestra43.20My Heart Belongs To Daddy2:55253011Count Basie Orchestra43.21Sing For Your Supper2:44253011Count Basie Orchestra43.22You Can Depend On Me3:08600371Count Basie SextetCount Basie - 193944.01Cherokee (Part 1)3:11253011Count Basie Orchestra44.02Cherokee (Part 2)3:04253011Count Basie Orchestra44.03Blame It On My Last Affair2:45253011Count Basie Orchestra44.04Blame It On My Last Affair2:43253011Count Basie Orchestra44.05Jive At Five2:50253011Count Basie Orchestra44.06Thursday3:05253011Count Basie Orchestra44.07Evil Blues3:14253011Count Basie Orchestra44.08Oh Lady Be Good3:12253011Count Basie Orchestra44.09What Goes Up Must Go Down2:46253011Count Basie Orchestra44.10Rock-A-Bye Basie3:01253011Count Basie Orchestra44.11Baby, Don't You Tell On Me2:51253011Count Basie Orchestra44.12If I Could Be With You One Hour2:58253011Count Basie Orchestra44.13Taxi War Dance2:48253011Count Basie Orchestra44.14Don't Worry 'Bout Me2:47253011Count Basie Orchestra44.15Jump For Me3:09253011Count Basie Orchestra44.16And The Angels Sing3:02253011Count Basie Orchestra44.17If I Didn't Care2:45253011Count Basie Orchestra44.18Twelfth Street Rag3:01253011Count Basie Orchestra44.19Miss Thing (Part 1)2:54253011Count Basie Orchestra44.20Miss Thing (Part 2)2:42253011Count Basie Orchestra44.21Lonesome Miss Pretty2:51253011Count Basie Orchestra44.22Bolero At The Savoy2:58253011Count Basie Orchestra44.23Nobody Knows2:45253011Count Basie Orchestra44.24Pound Cake2:43253011Count Basie OrchestraCount Basie - 1939-4045.01You Can Count On Me2:54253011Count Basie Orchestra45.02You And Your Love2:41253011Count Basie Orchestra45.03How Long Blues2:57253011Count Basie Orchestra45.04Sub-Deb Blues2:56253011Count Basie Orchestra45.05Moonlight Serenade3:12253011Count Basie Orchestra45.06Song Of The Islands3:02253011Count Basie Orchestra45.07I Can't Believe That You're In Love2:40253011Count Basie Orchestra45.08Clap Hands Here Comes Charlie2:28253011Count Basie Orchestra45.09The Apple Jump2:56253011Count Basie Orchestra45.10I Left My Baby3:13253011Count Basie Orchestra45.11Riff Interlude3:03253011Count Basie Orchestra45.12Volcano2:49253011Count Basie Orchestra45.13Between The Devil And The Deep Blue Sea2:34253011Count Basie Orchestra45.14Ham 'n' Eggs2:34253011Count Basie Orchestra45.15Hollywood Jump2:35253011Count Basie Orchestra45.16Someday Sweetheart2:42253011Count Basie Orchestra45.17I Never Knew2:40253011Count Basie Orchestra45.18Tickle Toe2:39253011Count Basie Orchestra45.19Let's Make Hey! While The Sun Shines2:52253011Count Basie Orchestra45.20Louisiana2:26253011Count Basie Orchestra45.21Easy Does It3:28253011Count Basie Orchestra45.22Let Me See2:47253011Count Basie Orchestra45.23Blues (I Still Think Of Her)2:48253011Count Basie Orchestra45.24Somebody Stole My Gal2:53253011Count Basie OrchestraCount Basie - 194046.01Blow Top2:58253011Count Basie Orchestra46.02Gone With 'What' Wind2:51253011Count Basie Orchestra46.03Super Chief3:28253011Count Basie Orchestra46.04You Can't Run Around3:23253011Count Basie Orchestra46.05Evenin'2:41253011Count Basie Orchestra46.06The World Is Mad (Part 1)2:40253011Count Basie Orchestra46.07The World Is Mad (Part 2)2:54253011Count Basie Orchestra46.08Moten Swing2:22253011Count Basie Orchestra46.09It's Torture2:55253011Count Basie Orchestra46.10I Want A Little Girl2:41253011Count Basie Orchestra46.11All Or Nothing At All2:44253011Count Basie Orchestra46.12The Moon Fell In The River2:28253011Count Basie Orchestra46.13What's Your Number2:51253011Count Basie Orchestra46.14Draftin' Blues2:30253011Count Basie Orchestra46.15Five O'Clock Whistle3:07253011Count Basie Orchestra46.16Love Jumped Out3:16253011Count Basie Orchestra46.17My Wanderin' Man3:11253011Count Basie Orchestra46.18Broadway3:02253011Count Basie Orchestra46.19It’s The Same Old South3:10253011Count Basie Orchestra46.20Stampede In G Minor2:49253011Count Basie Orchestra46.21Who Am I2:49253011Count Basie Orchestra46.22Rockin’ The Blues3:07253011Count Basie OrchestraCount Basie - 194147.01It’s Square But It Rocks2:26253011Count Basie Orchestra47.02I’ll Forget2:42253011Count Basie Orchestra47.03You Lied To Me2:40253011Count Basie Orchestra47.04Wiggle Woogie2:38253011Count Basie Orchestra47.05Beau Brummel3:09253011Count Basie Orchestra47.06Music Makers2:42253011Count Basie Orchestra47.07Jump The Blues Away2:58253011Count Basie Orchestra47.08Deep In The Blues3:06253011Count Basie Orchestra47.09The Jitters2:44253011Count Basie Orchestra47.10Tuesday At Ten2:57253011Count Basie Orchestra47.11Undecided Blues2:55253011Count Basie Orchestra47.12I Do Mean You2:46253011Count Basie Orchestra47.139:20 Special3:07253011Count Basie Orchestra47.14H And J2:33253011Count Basie Orchestra47.15Feedin’ The Bean3:12253011Count Basie Orchestra47.16Goin’ To Chicago Blues3:20253011Count Basie Orchestra47.17You Betcha My Life2:35253011Count Basie Orchestra47.18Down, Down, Down2:59253011Count Basie Orchestra47.19Down, Down, Down3:04253011Count Basie Orchestra47.20Tune Town Shuffle3:07253011Count Basie Orchestra47.21I’m Tired Of Waiting For You2:25253011Count Basie OrchestraCount Basie - 1941 II48.01One-Two-Three-O’Leary2:39253011Count Basie Orchestra48.02Basie Boogie2:22253011Count Basie Orchestra48.03Fancy Meeting You2:27253011Count Basie Orchestra48.04Diggin’ For Dex3:08253011Count Basie Orchestra48.05My Old Flame3:05253011Count Basie Orchestra48.06Fiesta In Blue3:07253011Count Basie Orchestra48.07Tom Thumb3:08253011Count Basie Orchestra48.08Take Me Back Baby3:00253011Count Basie Orchestra48.09King Joe (Part 1)3:22253011Count Basie Orchestra48.10King Joe (Part 2)3:08253011Count Basie Orchestra48.11Moon Nocturne3:25253011Count Basie Orchestra48.12Something New2:18253011Count Basie Orchestra48.13I Struck A Match In The Dark3:05253011Count Basie Orchestra48.14Platterbrains2:50253011Count Basie Orchestra48.15All Of Me3:00253011Count Basie Orchestra48.16Feather Merchant3:02253011Count Basie Orchestra48.17Down For Double2:53253011Count Basie Orchestra48.18More Than You Know3:14253011Count Basie Orchestra48.19Harvard Blues3:20253011Count Basie Orchestra48.20Coming-Out Party3:28253011Count Basie OrchestraCount Basie - 1942 49.01One O’Clock Jump3:05253011Count Basie Orchestra49.02Blue Shadows And White Gardenias3:11253011Count Basie Orchestra49.03‘Ay Now2:31253011Count Basie Orchestra49.04Basie Blues3:07253011Count Basie Orchestra49.05I’m Gonna Move To The Outskirts Of Town3:01253011Count Basie Orchestra49.06How Long Blues2:584006352Count Basie And His All-American Rhythm Section49.07Royal Garden Blues3:064006352Count Basie And His All-American Rhythm Section49.08Bugle Blues2:214006352Count Basie And His All-American Rhythm Section49.09Sugar Blues2:554006352Count Basie And His All-American Rhythm Section49.10Farewell Blues3:164006352Count Basie And His All-American Rhythm Section49.11Cafe Society Blues3:174006352Count Basie And His All-American Rhythm Section49.12Way Back Blues3:284006352Count Basie And His All-American Rhythm Section49.13St. Louis Blues3:174006352Count Basie And His All-American Rhythm Section49.14Rusty Dusty Blues3:12253011Count Basie Orchestra49.15Ride On3:18253011Count Basie Orchestra49.16Lost The Blackout Blues3:12253011Count Basie Orchestra49.17Time On My Hands3:21253011Count Basie Orchestra49.18It’s Sand, Man3:07253011Count Basie Orchestra49.19Ain’t It The Truth2:54253011Count Basie Orchestra49.20For The Good Of Your Country3:14253011Count Basie OrchestraCount Basie - 1944-45 The V-Discs50.01Kansas City Stride3:44253011Count Basie Orchestra50.02Beaver Junction3:40253011Count Basie Orchestra50.03Circus In Rhythm3:41253011Count Basie Orchestra50.04Gee Baby, Ain't I Good To You4:03253011Count Basie Orchestra50.05Basie Strides Again2:59253011Count Basie Orchestra50.06Aunt Hagar's Country Home3:20253011Count Basie Orchestra50.07Harvard Blues4:33253011Count Basie Orchestra50.08Taps Miller5:10253011Count Basie Orchestra50.09Jimmy’s Blues2:57253011Count Basie Orchestra50.10Take Me Back Baby3:13253011Count Basie Orchestra50.11Playhouse No 2 Stomp5:05253011Count Basie Orchestra50.12Just An Old Manuscript3:29253011Count Basie Orchestra50.13On The Upbeat3:55253011Count Basie Orchestra50.14High Tide5:31253011Count Basie Orchestra50.15Sent For You Yesterday2:13253011Count Basie Orchestra50.16Jimmy’s Boogie Woogie (I May Be Wrong)1:50253011Count Basie Orchestra50.17Tippin' On The Q.T.3:46253011Count Basie Orchestra50.18San Jose2:41253011Count Basie Orchestra50.19B-Flat Blues2:36253011Count Basie Orchestra50.20Sweet Lorraine3:58253011Count Basie OrchestraCount Basie - 194751.01Bill’s Mill2:38253011Count Basie Orchestra51.02Me And The Blues2:56253011Count Basie Orchestra51.03Free Eats2:53253011Count Basie Orchestra51.04Brand New Wagon2:52253011Count Basie Orchestra51.05Open The Door, Richard2:39253011Count Basie Orchestra51.06One O’Clock Boogie3:25253011Count Basie Orchestra51.07Meet Me At No Special Place3:05253011Count Basie Orchestra51.08I’m Drowning In Your Deep Blue Eyes2:46253011Count Basie Orchestra51.09Futile Frustration3:07253011Count Basie Orchestra51.10The Jungle King3:13253011Count Basie Orchestra51.11Take A Little Off The Top3:32253011Count Basie Orchestra51.12I Ain’t Mad At You3:17253011Count Basie Orchestra51.13House Rent Boogie2:41253011Count Basie Orchestra51.14South2:50253011Count Basie Orchestra51.15Don’t You Want A Man Like Me2:43253011Count Basie Orchestra51.16Blue And Sentimental3:01253011Count Basie Orchestra51.17Seventh Avenue Express2:38253011Count Basie Orchestra51.18Mr. Robert’s Roost2:30253011Count Basie Orchestra51.19Sophisticated Swing2:39253011Count Basie Orchestra51.20Guest In A Nest3:00253011Count Basie Orchestra51.21Your Red Wagon2:48253011Count Basie Orchestra51.22Money Is Honey2:46253011Count Basie OrchestraCount Basie - 1947-4952.01Just A Minute2:40253011Count Basie Orchestra52.02Baby, Don’t Be Mad At Me2:48253011Count Basie Orchestra52.03I’ve Only Myself To Blame2:57253011Count Basie Orchestra52.04Robbin's Nest3:08253011Count Basie Orchestra52.05Hey Pretty Baby3:02253011Count Basie Orchestra52.06It’s Monday Every Day3:07253011Count Basie Orchestra52.07Bye, Bye, Baby2:34253011Count Basie Orchestra52.08Ready, Set, Go2:41253011Count Basie Orchestra52.09Brand New Dolly3:20253011Count Basie Orchestra52.10Cheek To Cheek3:19253011Count Basie Orchestra52.11Just An Old Manuscript3:13253011Count Basie Orchestra52.12Katy2:55253011Count Basie Orchestra52.13She’s A Wine-O2:52253011Count Basie Orchestra52.14Shoutin’ Blues2:35253011Count Basie Orchestra52.15After You’ve Gone2:34253011Count Basie Orchestra52.16St. Louis Baby2:53253011Count Basie Orchestra52.17Did You Ever See Jackie Robinson Hit That Ball2:13253011Count Basie Orchestra52.18Mine Too2:24253011Count Basie Orchestra52.19Walking Slow Behind You2:44253011Count Basie Orchestra52.20Slider2:53253011Count Basie Orchestra52.21Normania (Blee Blop Blues)2:56253011Count Basie Orchestra52.22Rocky Mountain Blues3:10253011Count Basie OrchestraLouis Armstrong - 1932-3353.01Between The Devil And The Deep Blue Sea3:00317860Louis Armstrong And His Orchestra53.02Between The Devil And The Deep Blue Sea3:21317860Louis Armstrong And His Orchestra53.03Kickin’ The Gong Around3:12317860Louis Armstrong And His Orchestra53.04Home3:05317860Louis Armstrong And His Orchestra53.05All Of Me2:59317860Louis Armstrong And His Orchestra53.06Love, You Funny Thing3:42317860Louis Armstrong And His Orchestra53.07The New Tiger Rag3:24317860Louis Armstrong And His Orchestra53.08Keepin’ Out Of Mischief Now3:32317860Louis Armstrong And His Orchestra53.09Lawd, You Made The Night Too Long3:25317860Louis Armstrong And His Orchestra53.10That’s My Home3:10317860Louis Armstrong And His Orchestra53.11That’s My Home3:10317860Louis Armstrong And His Orchestra53.12Hobo, You Can’t Ride This Train3:01317860Louis Armstrong And His Orchestra53.13I Hate To Leave You Now3:10317860Louis Armstrong And His Orchestra53.14I Hate To Leave You Now3:07317860Louis Armstrong And His Orchestra53.15You’ll Wish You’d Never Been Born3:15317860Louis Armstrong And His Orchestra53.16Medley Of Armstrong Hits (Part 2)4:32317860Louis Armstrong And His Orchestra53.17Medley Of Armstrong Hits (Part 1)4:21317860Louis Armstrong And His Orchestra53.18I’ve Got The World On A String3:13317860Louis Armstrong And His Orchestra53.19I Gotta Right To Sing The Blues3:02317860Louis Armstrong And His Orchestra53.20Hustlin‘ And Bustlin‘ For Baby3:08317860Louis Armstrong And His Orchestra53.21Sittin‘ In The Dark3:01317860Louis Armstrong And His Orchestra53.22High Society3:24317860Louis Armstrong And His Orchestra53.23He’s A Son Of The South2:37317860Louis Armstrong And His OrchestraLouis Armstrong - 1933-3454.01Some Sweet Day2:58317860Louis Armstrong And His Orchestra54.02Basin Street Blues3:22317860Louis Armstrong And His Orchestra54.03Honey, Do2:34317860Louis Armstrong And His Orchestra54.04Snowball3:11317860Louis Armstrong And His Orchestra54.05Mahogany Hall Stomp2:35317860Louis Armstrong And His Orchestra54.06Swing, You Cats2:38317860Louis Armstrong And His Orchestra54.07Honey, Don’t You Love Me Anymore2:59317860Louis Armstrong And His Orchestra54.08Mississippi Basin3:04317860Louis Armstrong And His Orchestra54.09Laughin‘ Louie3:26317860Louis Armstrong And His Orchestra54.10Tomorrow Night3:15317860Louis Armstrong And His Orchestra54.11Dusky Stevedore2:52317860Louis Armstrong And His Orchestra54.12There’s A Cabin In The Pines3:17317860Louis Armstrong And His Orchestra54.13Mighty River2:38317860Louis Armstrong And His Orchestra54.14Sweet Sue, Just You2:43317860Louis Armstrong And His Orchestra54.15I Wonder Who3:06317860Louis Armstrong And His Orchestra54.16St. Louis Blues2:40317860Louis Armstrong And His Orchestra54.17Don't Play Me Cheap3:06317860Louis Armstrong And His Orchestra54.18St. Louis Blues2:40317860Louis Armstrong And His Orchestra54.19(Super) Tiger Rag3:05317860Louis Armstrong And His Orchestra54.20Will You, Won't You Be My Baby2:46317860Louis Armstrong And His Orchestra54.21On The Sunny Side Of The Street (Pt. 1 & 2)6:00317860Louis Armstrong And His Orchestra54.22St. Louis Blues3:04317860Louis Armstrong And His Orchestra54.23Song Of The Vipers2:52317860Louis Armstrong And His OrchestraLouis Armstrong - 1935-3655.01I'm In The Mood For Love3:0838201Louis Armstrong55.02I'm In The Mood For Love3:1038201Louis Armstrong55.03You Are My Lucky Star3:0238201Louis Armstrong55.04La Cucaracha2:4338201Louis Armstrong55.05Got A Bran' New Suit2:5438201Louis Armstrong55.06I've Got My Fingers Crossed2:3038201Louis Armstrong55.07Old Man Mose2:5538201Louis Armstrong55.08Old Man Mose2:3338201Louis Armstrong55.09Old Man Mose2:3038201Louis Armstrong55.10I’m Shooting High2:5438201Louis Armstrong55.11Falling In Love With You3:1038201Louis Armstrong55.12Red Sails In The Sunset3:0238201Louis Armstrong55.13On Treasure Island3:0538201Louis Armstrong55.14Thanks A Million2:3838201Louis Armstrong55.15Thanks A Million2:3638201Louis Armstrong55.16Shoe Shine Boy3:1838201Louis Armstrong55.17Solitude3:0338201Louis Armstrong55.18Solitude3:0038201Louis Armstrong55.19Solitude3:0938201Louis Armstrong55.20I Hope Gabriel Like My Music3:1938201Louis Armstrong55.21The Music Goes ‘Round And Around3:1438201Louis Armstrong55.22Rhythm Saved The World2:5338201Louis Armstrong55.23I Come From A Musical Family2:5838201Louis Armstrong55.24Somebody Stole My Break2:4538201Louis ArmstrongLouis Armstrong - 1936-3856.01If We Never Meet Again3:08317860Louis Armstrong And His Orchestra56.02Lyin’ To Myself3:11317860Louis Armstrong And His Orchestra56.03Ev’ntide2:52317860Louis Armstrong And His Orchestra56.04Swing That Music2:51317860Louis Armstrong And His Orchestra56.05Thankful2:58317860Louis Armstrong And His Orchestra56.06Red Nose3:03317860Louis Armstrong And His Orchestra56.07Mahogany Hall Stomp2:53317860Louis Armstrong And His Orchestra56.08Public Melody Number One3:09317860Louis Armstrong And His Orchestra56.09Yours And Mine2:42317860Louis Armstrong And His Orchestra56.10Red Cap3:09317860Louis Armstrong And His Orchestra56.11She’s The Daughter Of A Planter In Havana3:18317860Louis Armstrong And His Orchestra56.12Alexander’s Ragtime Band2:35317860Louis Armstrong And His Orchestra56.13Cuban Pete3:06317860Louis Armstrong And His Orchestra56.14I’ve Got A Heart Full Of Rhythm3:08317860Louis Armstrong And His Orchestra56.15Sun Showers2:41317860Louis Armstrong And His Orchestra56.16Once In A While3:08317860Louis Armstrong And His Orchestra56.17On The Sunny Side Of The Street2:56317860Louis Armstrong And His Orchestra56.18Satchel Mouth Swing2:35317860Louis Armstrong And His Orchestra56.19Jubilee2:35317860Louis Armstrong And His Orchestra56.20Struttin‘ With Some Barbecue2:57317860Louis Armstrong And His Orchestra56.21The Trumpet Player’s Lament2:53317860Louis Armstrong And His Orchestra56.22I Double Dare You2:57317860Louis Armstrong And His Orchestra56.23True Confession3:05317860Louis Armstrong And His Orchestra56.24Let That Be A Lesson To You2:34317860Louis Armstrong And His Orchestra56.25Sweet As A Song3:03317860Louis Armstrong And His OrchestraLouis Armstrong - 1938-3957.01So Little Time (So Much To Do)2:42317860Louis Armstrong And His Orchestra57.02Mexican Swing2:38317860Louis Armstrong And His Orchestra57.03As Long As You Live, You’ll Be Dead If You Die (Hannighen)2:13317860Louis Armstrong And His Orchestra57.04When The Saints Go Marching In2:42317860Louis Armstrong And His Orchestra57.05On The Sentimental Side2:24317860Louis Armstrong And His Orchestra57.06It’s Wonderful2:35317860Louis Armstrong And His Orchestra57.07Something Tells Me2:30317860Louis Armstrong And His Orchestra57.08Love Walked In2:29317860Louis Armstrong And His Orchestra57.09Jeepers Creepers2:38317860Louis Armstrong And His Orchestra57.10What Is This Thing Called Swing3:05317860Louis Armstrong And His Orchestra57.11Hear Me Talkin’ To Ya3:05317860Louis Armstrong And His Orchestra57.12Save It, Pretty Mama2:57317860Louis Armstrong And His Orchestra57.13West End Blues3:11317860Louis Armstrong And His Orchestra5714.Savoy Blues3:14317860Louis Armstrong And His Orchestra57.15Confessin’3:15317860Louis Armstrong And His Orchestra57.16Our Monday Date2:28317860Louis Armstrong And His Orchestra57.17If It’s Good When I Want It2:37317860Louis Armstrong And His Orchestra57.18Me And Brother Bill2:45317860Louis Armstrong And His Orchestra57.19Baby, Won’t You Please Come Home3:18317860Louis Armstrong And His Orchestra57.20Poor Old Joe3:04317860Louis Armstrong And His Orchestra57.21Shanty Boat On The Mississippi3:22317860Louis Armstrong And His Orchestra57.22Poor Old Joe3:04317860Louis Armstrong And His Orchestra57.23You’re A Lucky Guy3:18317860Louis Armstrong And His Orchestra57.24You’re Just A No Account2:53317860Louis Armstrong And His Orchestra57.25Bye And Bye2:32317860Louis Armstrong And His OrchestraLouis Armstrong - 1940-4258.01Hep Cat’s Ball3:17317860Louis Armstrong And His Orchestra58.02You’ve Got Me Voodoo’d2:59317860Louis Armstrong And His Orchestra58.03Harlem Stomp3:02317860Louis Armstrong And His Orchestra58.04Wolverine Blues3:18317860Louis Armstrong And His Orchestra58.05Lazy ‘Sippi Steamer3:18317860Louis Armstrong And His Orchestra58.06Sweethearts On Parade2:52317860Louis Armstrong And His Orchestra58.07You Run Your Mouth, I’ll Run My Business3:00317860Louis Armstrong And His Orchestra58.08Cut Off My Legs And Call Me Shorty2:32317860Louis Armstrong And His Orchestra58.09Cain And Abel3:01317860Louis Armstrong And His Orchestra58.10Everything’s Been Done Before3:05317860Louis Armstrong And His Orchestra58.11I Cover The Waterfront3:13317860Louis Armstrong And His Orchestra58.12In The Gloaming2:56317860Louis Armstrong And His Orchestra58.13Long, Long Ago2:51317860Louis Armstrong And His Orchestra58.14Hey Lawdy Mama2:58317860Louis Armstrong And His Orchestra58.15I’ll Get Mine Bye And Bye3:03317860Louis Armstrong And His Orchestra58.16Do You Call That A Buddy3:19317860Louis Armstrong And His Orchestra58.17Yes, Suh2:20317860Louis Armstrong And His Orchestra58.18When It’s Sleepy Time Down South3:11317860Louis Armstrong And His Orchestra58.19Leap Frog2:59317860Louis Armstrong And His Orchestra58.20I Used To Love You2:58317860Louis Armstrong And His Orchestra58.21You Rascal, You2:58317860Louis Armstrong And His Orchestra58.22(Get Some) Cash For Your Trash3:03317860Louis Armstrong And His Orchestra58.23Among My Souvenirs2:45317860Louis Armstrong And His Orchestra58.24Coquette2:36317860Louis Armstrong And His Orchestra58.25I Never Knew2:44317860Louis Armstrong And His OrchestraCab Calloway - 1931-4159.01Trickeration2:51179389Cab Calloway And His Orchestra59.02Kickin' The Gong Around3:11179389Cab Calloway And His Orchestra59.03How Come You Do Me Like You Do2:54179389Cab Calloway And His Orchestra59.04Hot Toddy2:42179389Cab Calloway And His Orchestra59.05Hot Water2:52179389Cab Calloway And His Orchestra59.06Harlem Hospitality2:37179389Cab Calloway And His Orchestra59.07Moon Glow3:11179389Cab Calloway And His Orchestra59.08Avalon3:24179389Cab Calloway And His Orchestra59.09I Ain’t Got Nobody3:05179389Cab Calloway And His Orchestra59.10Baby Won’t You Please Come Home3:15179389Cab Calloway And His Orchestra59.11The Wedding Of Mr. And Mrs. Swing3:20179389Cab Calloway And His Orchestra59.12Congo2:35179389Cab Calloway And His Orchestra59.13Manhattan Jam2:39179389Cab Calloway And His Orchestra59.14Queen Isabelle2:46179389Cab Calloway And His Orchestra59.15Savage Rhythm2:34179389Cab Calloway And His Orchestra59.16At The Clambake Carnival2:31179389Cab Calloway And His Orchestra59.17The Congo-Conga3:01179389Cab Calloway And His Orchestra59.18Ratamacue2:27179389Cab Calloway And His Orchestra59.19Trylon Swing2:48179389Cab Calloway And His Orchestra59.20A Ghost Of A Chance3:02179389Cab Calloway And His Orchestra59.21Cupid’s Nightmare2:41179389Cab Calloway And His Orchestra59.22Take The 'A' Train3:03179389Cab Calloway And His OrchestraTeddy Hill - 1935-3760.01(Lookie, Lookie, Lookie) Here Comes Cookie2:551261301Teddy Hill Orchestra60.02Got Me Doin’ Things2:481261301Teddy Hill Orchestra60.03When The Robin Sings His Song Again2:501261301Teddy Hill Orchestra60.04Uptown Rhapsody2:391261301Teddy Hill Orchestra60.05At The Rug Cutters’ Ball2:351261301Teddy Hill Orchestra60.06Blue Rhythm Fantasy2:521261301Teddy Hill Orchestra60.07Passionette2:431261301Teddy Hill Orchestra60.08The Love Bug Will Bite You2:312919719Teddy Hill And His NBC Orchestra60.09Would You Like To Buy A Dream3:322919719Teddy Hill And His NBC Orchestra60.10Big Boy Blue2:242919719Teddy Hill And His NBC Orchestra60.11Where Is The Sun3:232919719Teddy Hill And His NBC Orchestra60.12The Harlem Twister (The New Sensation)2:062919719Teddy Hill And His NBC Orchestra60.13My Marie2:162919719Teddy Hill And His NBC Orchestra60.14I Know Now3:042919719Teddy Hill And His NBC Orchestra60.15The Lady Who Couldn’t Be Kissed2:342919719Teddy Hill And His NBC Orchestra60.16The You And Me That Used To Be2:302919719Teddy Hill And His NBC Orchestra60.17A Study In Brown2:452919719Teddy Hill And His NBC Orchestra60.18Twilight In Turkey2:302919719Teddy Hill And His NBC Orchestra60.19China Boy2:112919719Teddy Hill And His NBC Orchestra60.20San Anton2:352919719Teddy Hill And His NBC Orchestra60.21I'm Happy, Darling, Dancing With You2:492919719Teddy Hill And His NBC Orchestra60.22Yours And Mine2:392919719Teddy Hill And His NBC Orchestra60.23I'm Feeling Like A Million2:402919719Teddy Hill And His NBC Orchestra60.24King Porter Stomp3:022919719Teddy Hill And His NBC Orchestra60.25Blue Rhythm Fantasy2:392919719Teddy Hill And His NBC OrchestraLionel Hampton - 195161.01I Can’t Believe That You’re In Love With Me3:07317907Lionel Hampton And His Orchestra61.02Cool Train3:01317907Lionel Hampton And His Orchestra61.03Gladysee Bounce2:56317907Lionel Hampton And His Orchestra61.04Airmail Special3:08317907Lionel Hampton And His Orchestra61.05Gates Steps Out5:07317907Lionel Hampton And His Orchestra61.06A Kiss Was Just A Kiss2:50317907Lionel Hampton And His Orchestra61.07Alone3:17317907Lionel Hampton And His Orchestra61.08Love You Like Mad2:54317907Lionel Hampton And His Orchestra61.09Cryin’2:46317907Lionel Hampton And His Orchestra61.10Helpless2:32317907Lionel Hampton And His Orchestra61.11Jumpin’ With G.H.3:02317907Lionel Hampton And His Orchestra61.12Samson’s Boogie3:12317907Lionel Hampton And His Orchestra61.13Gabby’s Gabbin’2:57317907Lionel Hampton And His Orchestra61.14Don’t Flee The Scene Salty2:30317907Lionel Hampton And His Orchestra61.15Kingfish2:53317907Lionel Hampton And His Orchestra61.16Oh, Lady Be Good3:28317907Lionel Hampton And His Orchestra61.17Oh, Rock2:45317907Lionel Hampton And His OrchestraLionel Hampton - 195462.01The Chase11:48317907Lionel Hampton And His Orchestra62.02Stardust6:41317907Lionel Hampton And His Orchestra62.03Mark VII5:37317907Lionel Hampton And His Orchestra62.04Love For Sale5:45317907Lionel Hampton And His Orchestra62.05Wailin’ At The Trianon6:20317907Lionel Hampton And His Orchestra62.06How High The Moon9:08317907Lionel Hampton And His OrchestraCasa Loma Orchestra - 1931-3363.01Alexander's Ragtime Band3:18311060Casa Loma Orchestra63.02Put On Your Old Grey Bonnet2:54311060Casa Loma Orchestra63.03Wanna Be Around My Baby All The Time3:01311060Casa Loma Orchestra63.04I'm Crazy 'Bout My Baby2:41311060Casa Loma Orchestra63.05White Jazz3:05311060Casa Loma Orchestra63.06Black Jazz3:00311060Casa Loma Orchestra63.07Maniac's Ball3:05311060Casa Loma Orchestra63.08Clarinet Marmalade3:06311060Casa Loma Orchestra63.09Smoke Rings3:02311060Casa Loma Orchestra63.10I Never Knew2:55311060Casa Loma Orchestra63.11Indiana3:00311060Casa Loma Orchestra63.12Blue Jazz3:09311060Casa Loma Orchestra63.13Thanksgivin’2:52311060Casa Loma Orchestra63.14The Lady From St. Paul2:49311060Casa Loma Orchestra63.15The Dance Of The Lame Duck2:47311060Casa Loma Orchestra63.16Rhythm Man2:45311060Casa Loma Orchestra63.17New Orleans3:04311060Casa Loma Orchestra63.18Blue Prelude3:10311060Casa Loma Orchestra63.19Wild Goose Chase3:09311060Casa Loma Orchestra63.20Dardanella3:22349518Glen Gray And His Orchestra63.21Casa Loma Stomp2:53349518Glen Gray And His Orchestra63.22Buji2:41311060Casa Loma OrchestraCasa Loma Orchestra - 1933-3764.01Lazybones3:29311060Casa Loma Orchestra64.02Sophisticated Lady3:28311060Casa Loma Orchestra64.03It’s The Talk Of The Town3:10311060Casa Loma Orchestra64.04That’s How Rhythm Was Born3:07311060Casa Loma Orchestra64.05Heat Wave2:45311060Casa Loma Orchestra64.06I Got Rhythm3:03311060Casa Loma Orchestra64.07Ol’ Man River3:07311060Casa Loma Orchestra64.08A Hundred Years From Today3:05311060Casa Loma Orchestra64.09Limehouse Blues3:12311060Casa Loma Orchestra64.10Dallas Blues3:02311060Casa Loma Orchestra64.11Moon Country3:06311060Casa Loma Orchestra64.12Milenberg Joys2:55311060Casa Loma Orchestra64.13Out Of Space3:05311060Casa Loma Orchestra64.14Chinatown, My Chinatown2:40311060Casa Loma Orchestra64.15Nagasaki2:39311060Casa Loma Orchestra64.16Blue Moon3:12311060Casa Loma Orchestra64.17Lookie, Lookie, Lookie, Here Comes Cookie2:32311060Casa Loma Orchestra64.18Copenhagen2:27311060Casa Loma Orchestra64.19Royal Garden Blues2:22311060Casa Loma Orchestra64.20Rose Of The Rio Grande2:31311060Casa Loma Orchestra64.21Jungle Jitters2:45311060Casa Loma Orchestra64.22Bugle Call Rag2:44311060Casa Loma Orchestra64.23A Study In Brown2:56311060Casa Loma OrchestraBenny Goodman - 193565.01The Dixieland Band3:10374400Benny Goodman And His Orchestra65.02Blue Moon3:17374400Benny Goodman And His Orchestra65.03Throwin’ Stones At The Sun2:55374400Benny Goodman And His Orchestra65.04Down Home Rag2:50374400Benny Goodman And His Orchestra65.05Singing A Happy Song2:39374400Benny Goodman And His Orchestra65.06Clouds3:09374400Benny Goodman And His Orchestra65.07I Was Lucky3:01374400Benny Goodman And His Orchestra65.08Night Wind3:13374400Benny Goodman And His Orchestra65.09Hunkadola3:01374400Benny Goodman And His Orchestra65.10I’m Living In A Great Big Way2:31374400Benny Goodman And His Orchestra65.11Hooray For Love2:34374400Benny Goodman And His Orchestra65.12The Dixieland Band3:01374400Benny Goodman And His Orchestra65.13Japanese Sandman3:29374400Benny Goodman And His Orchestra65.14You're A Heavenly Thing2:57374400Benny Goodman And His Orchestra65.15Restless3:24374400Benny Goodman And His Orchestra65.16Always2:45374400Benny Goodman And His Orchestra65.17Get Rhythm In Your Feet2:22374400Benny Goodman And His Orchestra65.18Ballad In Blue2:36374400Benny Goodman And His Orchestra65.19Blue Skies3:31374400Benny Goodman And His Orchestra65.20Dear Old Southland2:16374400Benny Goodman And His Orchestra65.21Sometimes I’m Happy3:39374400Benny Goodman And His Orchestra65.22King Porter Stomp3:07374400Benny Goodman And His Orchestra65.23The Devil And The Deep Blue Sea2:44374400Benny Goodman And His Orchestra65.24Jingle Bells2:30374400Benny Goodman And His OrchestraBenny Goodman - 1935-3666.01Santa Claus Came In The Spring3:07374400Benny Goodman And His Orchestra66.02Goodbye3:22374400Benny Goodman And His Orchestra66.03Madhouse2:45374400Benny Goodman And His Orchestra66.04Madhouse2:48374400Benny Goodman And His Orchestra66.05Sandman2:35374400Benny Goodman And His Orchestra66.06Yankee Doodle Never Went To Town2:28374400Benny Goodman And His Orchestra66.07No Other One2:39374400Benny Goodman And His Orchestra66.08Eeeny Meeny Miney Mo1:59374400Benny Goodman And His Orchestra66.09Basin Street Blues2:53374400Benny Goodman And His Orchestra66.10If I Could Be With You (One Hour Tonight)2:14374400Benny Goodman And His Orchestra66.11When Buddha Smiles3:09374400Benny Goodman And His Orchestra66.12It’s Been So Long3:25374400Benny Goodman And His Orchestra66.13Stompin’ At The Savoy3:13374400Benny Goodman And His Orchestra66.14Goody-Goody2:28374400Benny Goodman And His Orchestra66.15Breakin’ In A New Pair Of Shoes2:29374400Benny Goodman And His Orchestra66.16Get Happy3:04374400Benny Goodman And His Orchestra66.17Christopher Columbus3:32374400Benny Goodman And His Orchestra66.18I Know That You Know2:03374400Benny Goodman And His Orchestra66.19Star Dust2:50374400Benny Goodman And His Orchestra66.20You Can’t Pull The Wool Over My Eyes2:32374400Benny Goodman And His Orchestra66.21The Glory Of Love2:36374400Benny Goodman And His Orchestra66.22Remember2:39374400Benny Goodman And His Orchestra66.23Walk, Jenny, Walk1:56374400Benny Goodman And His OrchestraBenny Goodman - 193667.01House Hop2:21374400Benny Goodman And His Orchestra67.02Sing Me A Swing Song2:22374400Benny Goodman And His Orchestra67.03(I Would Do) Anything For You2:48374400Benny Goodman And His Orchestra67.04In A Sentimental Mood3:37374400Benny Goodman And His Orchestra67.05I’ve Found A New Baby2:09374400Benny Goodman And His Orchestra67.06Swingtime In The Rockies3:10374400Benny Goodman And His Orchestra67.07These Foolish Things Remind Me Of You2:43374400Benny Goodman And His Orchestra67.08House Hop2:30374400Benny Goodman And His Orchestra67.09There’s A Small Hotel2:29374400Benny Goodman And His Orchestra67.10You Turned The Tables On Me2:50374400Benny Goodman And His Orchestra67.11Here’s Love In Your Eyes2:22374400Benny Goodman And His Orchestra67.12Pick Yourself Up2:51374400Benny Goodman And His Orchestra67.13Down South Camp Meeting3:17374400Benny Goodman And His Orchestra67.14St. Louis Blues3:21374400Benny Goodman And His Orchestra67.15Love Me Or Leave Me3:36374400Benny Goodman And His Orchestra67.16When A Lady Meets A Gentleman Down South 2:37374400Benny Goodman And His Orchestra67.17You’re Giving Me A Song And A Dance3:18374400Benny Goodman And His Orchestra67.18Organ Grinder’s Swing3:11374400Benny Goodman And His Orchestra67.19Peter Piper2:44374400Benny Goodman And His Orchestra67.20Riffin’ At The Ritz3:26374400Benny Goodman And His Orchestra67.21Alexander’s Ragtime Band2:07374400Benny Goodman And His OrchestraBenny Goodman - 1936-3768.01Somebody Loves Me2:50374400Benny Goodman And His Orchestra68.02‘Tain’t No Use2:43374400Benny Goodman And His Orchestra68.03Bugle Call Rag2:59374400Benny Goodman And His Orchestra68.04Jam Session2:55374400Benny Goodman And His Orchestra68.05Goodnight, My Love3:07374400Benny Goodman And His Orchestra68.06Oh, Yes,Take Another Guess2:28374400Benny Goodman And His Orchestra68.07Did You Mean It2:20374400Benny Goodman And His Orchestra68.08When You And I Were Young, Maggie2:21374400Benny Goodman And His Orchestra68.09Gee, But You’re Swell2:47374400Benny Goodman And His Orchestra68.10Smoke Dreams3:15374400Benny Goodman And His Orchestra68.11Swing Low, Sweet Chariot2:25374400Benny Goodman And His Orchestra68.12He Ain’t Got Rhythm2:43374400Benny Goodman And His Orchestra68.13Never Should Have Told You2:50374400Benny Goodman And His Orchestra68.14This Year’s Kisses2:26374400Benny Goodman And His Orchestra68.15You Can Tell She Comes From Dixie2:14374400Benny Goodman And His Orchestra68.16Goodnight My Love3:23374400Benny Goodman And His Orchestra68.17I Want To Be Happy2:37374400Benny Goodman And His Orchestra68.18Chloe (Song Of The Swamps)3:10374400Benny Goodman And His Orchestra68.19Rosetta2:38374400Benny Goodman And His Orchestra68.20Peckin’3:28374400Benny Goodman And His Orchestra68.21Can’t We Be Friends3:00374400Benny Goodman And His Orchestra68.22Can’t We Be Friends2:55374400Benny Goodman And His Orchestra68.23Sing, Sing, Sing (intro. Christopher Columbus) Part 1 & 28:38374400Benny Goodman And His OrchestraBenny Goodman - 193769.01Roll ‘Em3:11374400Benny Goodman And His Orchestra69.02When It’s Sleepy Time Down South2:43374400Benny Goodman And His Orchestra69.03Afraid To Dream2:40374400Benny Goodman And His Orchestra69.04Changes2:24374400Benny Goodman And His Orchestra69.05Bob White2:56374400Benny Goodman And His Orchestra69.06Sugar Foot Stomp2:47374400Benny Goodman And His Orchestra69.07I Can’t Give You Anything But Love, Baby3:35374400Benny Goodman And His Orchestra69.08Minnie The Moocher’s Wedding Day2:59374400Benny Goodman And His Orchestra69.09Let That Be A Lesson To You2:41374400Benny Goodman And His Orchestra69.10Can’t Teach My Old Heart3:03374400Benny Goodman And His Orchestra69.11I’ve Hitched My Wagon To A Star2:54374400Benny Goodman And His Orchestra69.12Pop-Corn Man3:10374400Benny Goodman And His Orchestra69.13You Took The Words Right Out Of My Heart 3:14374400Benny Goodman And His Orchestra69.14Mama, The Moon Is Here Again2:38374400Benny Goodman And His Orchestra69.15Loch Lomond2:33374400Benny Goodman And His Orchestra69.16Camel Hop2:46374400Benny Goodman And His Orchestra69.17Life Goes To A Party3:04374400Benny Goodman And His Orchestra69.18Life Goes To A Party3:05374400Benny Goodman And His Orchestra69.19It’s Wonderful3:09374400Benny Goodman And His Orchestra69.20Thanks For The Memory3:10374400Benny Goodman And His Orchestra69.21If Dreams Come True3:09374400Benny Goodman And His Orchestra69.22I’m Like A Fish Out Of Water3:28374400Benny Goodman And His Orchestra69.23Sweet Stranger2:51374400Benny Goodman And His OrchestraBenny Goodman - 193870.01Don’t Be That Way3:19374400Benny Goodman And His Orchestra70.02One O’Clock Jump3:15374400Benny Goodman And His Orchestra70.03Please Be Kind3:18374400Benny Goodman And His Orchestra70.04Ti-Pi-Tin2:35374400Benny Goodman And His Orchestra70.05Ooooo-Oh Boom3:02374400Benny Goodman And His Orchestra70.06Always And Always3:16374400Benny Goodman And His Orchestra70.07Make Believe2:53374400Benny Goodman And His Orchestra70.08The Blue Room3:04374400Benny Goodman And His Orchestra70.09It’s The Dreamer In Me3:02374400Benny Goodman And His Orchestra70.10Lullaby In Rhythm3:32374400Benny Goodman And His Orchestra70.11I Never Knew2:22374400Benny Goodman And His Orchestra70.12That Feeling Is Gone3:12374400Benny Goodman And His Orchestra70.13Sweet Sue - Just You3:27374400Benny Goodman And His Orchestra70.14Feelin’ High And Happy2:33374400Benny Goodman And His Orchestra70.15I Let A Song Go Out Of My Heart3:23374400Benny Goodman And His Orchestra70.16Why’d Ya Make Me Fall In Love2:33374400Benny Goodman And His Orchestra70.17Don’t Wake Up My Heart2:40374400Benny Goodman And His Orchestra70.18Saving Myself For You3:16374400Benny Goodman And His Orchestra70.19Big John Special3:05374400Benny Goodman And His Orchestra70.20My Melancholy Baby2:26374400Benny Goodman And His Orchestra70.21Wrappin’ It Up3:01374400Benny Goodman And His Orchestra70.22What Goes On Here In My Heart2:55374400Benny Goodman And His OrchestraBenny Goodman - 1938 II71.01A Little Kiss At Twilight3:06374400Benny Goodman And His Orchestra71.02The Flat Foot Floogie3:19374400Benny Goodman And His Orchestra71.03I’ve Got A Date With A Dream3:06374400Benny Goodman And His Orchestra71.04Could You Pass In Love2:40374400Benny Goodman And His Orchestra71.05Blue Interlude3:39374400Benny Goodman And His Orchestra71.06When I Go A Dreamin’2:50374400Benny Goodman And His Orchestra71.07You’re A Sweet Little Heartache2:53374400Benny Goodman And His Orchestra71.08I Have Eyes2:57374400Benny Goodman And His Orchestra71.09Margie2:11374400Benny Goodman And His Orchestra71.10What Have You Got That Gets Me2:40374400Benny Goodman And His Orchestra71.11Russian Lullaby2:23374400Benny Goodman And His Orchestra71.12You’re Lovely, Madame2:55374400Benny Goodman And His Orchestra71.13I Had To Do It3:10374400Benny Goodman And His Orchestra71.14Is That The Way To Treat A Sweetheart2:54374400Benny Goodman And His Orchestra71.15Bumble Bee Stomp2:51374400Benny Goodman And His Orchestra71.16Ciribiribin2:40374400Benny Goodman And His Orchestra71.17This Can’t Be Love2:46374400Benny Goodman And His Orchestra71.18Sing For Your Supper2:50374400Benny Goodman And His Orchestra71.19Topsy2:58374400Benny Goodman And His Orchestra71.20Smoke House Rhythm2:54374400Benny Goodman And His Orchestra71.21I Must See Annie Tonight3:05374400Benny Goodman And His Orchestra71.22Kinda Lonesome2:39374400Benny Goodman And His Orchestra71.23My Honey’s Lovin’ Arms2:31374400Benny Goodman And His Orchestra71.24My Honey’s Lovin’ Arms2:26374400Benny Goodman And His Orchestra71.25Farewell Blues2:11374400Benny Goodman And His OrchestraBenny Goodman - 1938-3972.01It Had To Be You2:56374400Benny Goodman And His Orchestra72.02Louise2:44374400Benny Goodman And His Orchestra72.03Whispering2:47374400Benny Goodman And His Orchestra72.04Bach Goes To Town2:42374400Benny Goodman And His Orchestra72.05I’ll Always Be In Love With You3:05374400Benny Goodman And His Orchestra72.06Undecided3:00374400Benny Goodman And His Orchestra72.07We’ll Never Know3:16374400Benny Goodman And His Orchestra72.08Good For Nothin’ But Love3:20374400Benny Goodman And His Orchestra72.09(Gotta Get Some) Shut-Eye2:48374400Benny Goodman And His Orchestra72.10Cuckoo In The Clock2:57374400Benny Goodman And His Orchestra72.11And The Angels Sing3:11374400Benny Goodman And His Orchestra72.12Sent For You Yesterday3:06374400Benny Goodman And His Orchestra72.13Estrellita (Little Star)3:24374400Benny Goodman And His Orchestra72.14A Home In The Clouds3:10374400Benny Goodman And His Orchestra72.15Show Your Linen, Miss Richardson2:56374400Benny Goodman And His Orchestra72.16The Lady’s In Love With You3:05374400Benny Goodman And His Orchestra72.17The Kingdom Of Swing2:50374400Benny Goodman And His Orchestra72.18Rose Of Washington Square2:46374400Benny Goodman And His Orchestra72.19The Siren’s Song2:43374400Benny Goodman And His Orchestra72.20You And Your Love3:21374400Benny Goodman And His Orchestra72.21Who’ll Buy My Bublitchki?2:50374400Benny Goodman And His OrchestraBenny Goodman - 1939-4173.01There’ll Be Some Changes Made2:48374400Benny Goodman And His Orchestra73.02Night And Day2:51374400Benny Goodman And His Orchestra73.03What’s New3:01374400Benny Goodman And His Orchestra73.04One Sweet Letter From You3:23374400Benny Goodman And His Orchestra73.05Make With The Kisses2:46374400Benny Goodman And His Orchestra73.06I Thought About You2:34374400Benny Goodman And His Orchestra73.07Bluebirds In The Moonlight3:12374400Benny Goodman And His Orchestra73.08Peace, Brother2:40374400Benny Goodman And His Orchestra73.09Beyond The Moon2:51374400Benny Goodman And His Orchestra73.10Zaggin’ With Zig3:08374400Benny Goodman And His Orchestra73.11How High The Moon2:59374400Benny Goodman And His Orchestra73.12Shake Down The Stars2:51374400Benny Goodman And His Orchestra73.13It Never Entered My Mind3:01374400Benny Goodman And His Orchestra73.14I’m Nobody’s Baby2:45374400Benny Goodman And His Orchestra73.15Henderson Stomp2:30374400Benny Goodman And His Orchestra73.16Taking A Chance On Love3:11374400Benny Goodman And His Orchestra73.17Superman4:33374400Benny Goodman And His Orchestra73.18Yes, My Darling Daughter2:52374400Benny Goodman And His Orchestra73.19Scarecrow3:04374400Benny Goodman And His Orchestra73.20Cherry3:00374400Benny Goodman And His OrchestraBenny Goodman - 194174.01Something New3:31374400Benny Goodman And His Orchestra74.02Air Mail Special2:56374400Benny Goodman And His Orchestra74.03I Found A Million Dollar Baby3:11374400Benny Goodman And His Orchestra74.04When The Sun Comes Out2:54374400Benny Goodman And His Orchestra74.05Pound Ridge2:56374400Benny Goodman And His Orchestra74.06Elmer’s Tune2:51374400Benny Goodman And His Orchestra74.07I See A Million People2:42374400Benny Goodman And His Orchestra74.08The Earl2:32374400Benny Goodman And His Orchestra74.09That’s The Way It Goes3:08374400Benny Goodman And His Orchestra74.10Let’s Do It (Let’s Fall In Love)2:01374400Benny Goodman And His Orchestra74.11Caprice XXIV Paganini2:45374400Benny Goodman And His Orchestra74.12I Got It Bad (And That Ain’t Good)3:15374400Benny Goodman And His Orchestra74.13My Old Flame3:08374400Benny Goodman And His Orchestra74.14Clarinet A La King2:52374400Benny Goodman And His Orchestra74.15How Deep Is The Ocean3:04374400Benny Goodman And His Orchestra74.16Shady Lady Bird2:45374400Benny Goodman And His Orchestra74.17Let’s Do It (Let’s Fall In Love)2:16374400Benny Goodman And His Orchestra74.18Somebody Else Is Taking My Place3:09374400Benny Goodman And His Orchestra74.19Somebody Nobody Loves3:20374400Benny Goodman And His Orchestra74.20How Long Has This Been Going On3:16374400Benny Goodman And His Orchestra74.21That Did It, Marie2:29374400Benny Goodman And His Orchestra74.22Winter Weather3:00374400Benny Goodman And His Orchestra74.23Ev’rything I Love3:05374400Benny Goodman And His OrchestraBenny Goodman - 1941-4675.01Not Mine3:17374400Benny Goodman And His Orchestra75.02Not A Care In The World3:22374400Benny Goodman And His Orchestra75.03The Lamp Of Memory (Incertidumbre)3:17374400Benny Goodman And His Orchestra75.04If You Build A Better Mousetrap3:02374400Benny Goodman And His Orchestra75.05At The Darktown Strutters’ Ball2:23374400Benny Goodman And His Orchestra75.06Tangerine2:34374400Benny Goodman And His Orchestra75.07My Little Cousin3:17374400Benny Goodman And His Orchestra75.08I Threw A Kiss In The Ocean3:00374400Benny Goodman And His Orchestra75.09We’ll Meet Again3:17374400Benny Goodman And His Orchestra75.10Full Moon (Noche De Luna)3:17374400Benny Goodman And His Orchestra75.11All I Need Is You3:22374400Benny Goodman And His Orchestra75.12Six Flats Unfurnished3:14374400Benny Goodman And His Orchestra75.13Why Don’t You Do Right3:12374400Benny Goodman And His Orchestra75.14After You’ve Gone2:30374400Benny Goodman And His Orchestra75.15Mission To Moscow2:36374400Benny Goodman And His Orchestra75.16Fascinating Rhythm2:58374400Benny Goodman And His Orchestra75.17Lucky3:02374400Benny Goodman And His Orchestra75.18Rattle And Roll3:16374400Benny Goodman And His Orchestra75.19Swing Angel3:10374400Benny Goodman And His Orchestra75.20All The Cats Join In3:08374400Benny Goodman And His OrchestraCharlie Barnet - 1939-4176.01I’m Prayin’ Humble2:49269594Charlie Barnet76.02Knockin’ At The Famous Door2:54269594Charlie Barnet76.03The Gal From Joe’s3:15269594Charlie Barnet76.04Jump Session2:22269594Charlie Barnet76.05Swing Street Strut2:43269594Charlie Barnet76.06Echoes Of Harlem3:24269594Charlie Barnet76.07Scotch And Soda2:41269594Charlie Barnet76.08Lazy Bug3:08269594Charlie Barnet76.09I Never Knew2:41269594Charlie Barnet76.10Cherokee3:22269594Charlie Barnet76.11The Last Jump (A Jump To End All Jumps)2:39269594Charlie Barnet76.12The Duke’s Idea3:04269594Charlie Barnet76.13The Count’s Idea3:23269594Charlie Barnet76.14The Right Idea3:14269594Charlie Barnet76.15Clap Hands, Here Comes Charlie2:46269594Charlie Barnet76.16Leapin’ At The Lincoln2:42269594Charlie Barnet76.17Flying Home2:51269594Charlie Barnet76.18Rockin’ In Rhythm3:06269594Charlie Barnet76.19Pompton Turnpike2:56269594Charlie Barnet76.20Ring ‘Dem Bells2:32269594Charlie Barnet76.21Wild Mab Of The Fish Pond3:12269594Charlie Barnet76.22Night And Day2:58269594Charlie Barnet76.23Merry-Go-Round2:38269594Charlie Barnet76.24Birmingham Breakdown2:30269594Charlie BarnetCharlie Barnet - 1941-4677.01Harlem Speaks2:40341403Charlie Barnet And His Orchestra77.02Murder At Peyton Hall2:54341403Charlie Barnet And His Orchestra77.03Smiles3:04341403Charlie Barnet And His Orchestra77.04Shady Lady2:53341403Charlie Barnet And His Orchestra77.05That Old Black Magic3:16341403Charlie Barnet And His Orchestra77.06Oh Miss Jaxson3:05341403Charlie Barnet And His Orchestra77.07Things Ain’t What They Used To Be2:37341403Charlie Barnet And His Orchestra77.08Strollin’3:22341403Charlie Barnet And His Orchestra77.09The Moose2:32341403Charlie Barnet And His Orchestra77.10Pow-Wow (Redskin Rhumba)2:45341403Charlie Barnet And His Orchestra77.11The Great Lie3:04341403Charlie Barnet And His Orchestra77.12Drop Me Off In Harlem2:18341403Charlie Barnet And His Orchestra77.13Gulf Coast Blues3:11341403Charlie Barnet And His Orchestra77.14Flat Top Flips The Lid3:15341403Charlie Barnet And His Orchestra77.15Skyliner3:00341403Charlie Barnet And His Orchestra77.16Share Croppin’ Blues2:57341403Charlie Barnet And His Orchestra77.17Into Each Life Some Rain Must Fall2:26341403Charlie Barnet And His Orchestra77.18You Always Hurt The One You Love2:31341403Charlie Barnet And His Orchestra77.19West End Blues2:43341403Charlie Barnet And His Orchestra77.20Desert Sands3:05341403Charlie Barnet And His Orchestra77.21E-Bop-O-Lee-Bop2:27341403Charlie Barnet And His Orchestra77.22Andy’s Boogie3:13341403Charlie Barnet And His Orchestra77.23Dark Bayou3:01341403Charlie Barnet And His OrchestraBob Crosby 78.01Dixieland Shuffle3:10374399Bob Crosby And His Orchestra78.02Royal Garden Blues3:07374399Bob Crosby And His Orchestra78.03The Old Spinning Wheel2:54374399Bob Crosby And His Orchestra78.04Between The Devil And The Deep Blue Sea3:13374399Bob Crosby And His Orchestra78.05Little Rock Getaway2:32374399Bob Crosby And His Orchestra78.06South Rampart Street Parade3:33374399Bob Crosby And His Orchestra78.07Dogtown Blues4:09374399Bob Crosby And His Orchestra78.08Panama2:38374399Bob Crosby And His Orchestra78.09Wolverine Blues2:55374399Bob Crosby And His Orchestra78.10The Big Noise From Winnetka2:33335584Ray Bauduc-335565Bob Haggart78.11Swingin’ At The Sugar Bowl3:05374399Bob Crosby And His Orchestra78.12I’m Prayin’ Humble3:08374399Bob Crosby And His Orchestra78.13I’m Free (What’s New)2:52374399Bob Crosby And His Orchestra78.14My Inspiration2:58374399Bob Crosby And His Orchestra78.15Skater’s Waltz (In Swingtime)2:51374399Bob Crosby And His Orchestra78.16Air Mail Stomp3:10374399Bob Crosby And His Orchestra78.17Complainin’2:49374399Bob Crosby And His Orchestra78.18Jimtown Blues3:04374399Bob Crosby And His Orchestra78.19Milenberg Joys3:13374399Bob Crosby And His Orchestra78.20Chain Gang4:16374399Bob Crosby And His OrchestraArtie Shaw - 1939-4079.01The Last Two Weeks In July2:58335674Artie Shaw And His Orchestra79.02Oh! Lady, Be Good3:08335674Artie Shaw And His Orchestra79.03I Surrender, Dear3:40335674Artie Shaw And His Orchestra79.04Many Dreams Ago3:18335674Artie Shaw And His Orchestra79.05A Table In A Corner3:12335674Artie Shaw And His Orchestra79.06If What You Say Is True3:12335674Artie Shaw And His Orchestra79.07Without A Dream To My Name3:29335674Artie Shaw And His Orchestra79.08Love Is Here3:05335674Artie Shaw And His Orchestra79.09All Is Fun2:45335674Artie Shaw And His Orchestra79.10All The Things You Are3:14335674Artie Shaw And His Orchestra79.11You’re A Lucky Guy2:39335674Artie Shaw And His Orchestra79.12Shadows2:47335674Artie Shaw And His Orchestra79.13I Didn’t Know What Time It Was2:57335674Artie Shaw And His Orchestra79.14Do I Love You3:02335674Artie Shaw And His Orchestra79.15When I Love Beckoned3:14335674Artie Shaw And His Orchestra79.16Frenesi3:06335674Artie Shaw And His Orchestra79.17Adios, Mariquita Linda3:38335674Artie Shaw And His Orchestra79.18Gloomy Sunday3:41335674Artie Shaw And His Orchestra79.19My Fantasy3:31335674Artie Shaw And His Orchestra79.20A Deserted Farm2:48335674Artie Shaw And His Orchestra79.21Don’t Fall Asleep2:55335674Artie Shaw And His Orchestra79.22Dreaming Out Loud3:28335674Artie Shaw And His Orchestra79.23Now We Know3:16335674Artie Shaw And His OrchestraArtie Shaw - 194080.01Mister Meadowlark2:29335674Artie Shaw And His Orchestra80.02April In Paris3:24335674Artie Shaw And His Orchestra80.03King For A Day3:22335674Artie Shaw And His Orchestra80.04If It’s You2:52335674Artie Shaw And His Orchestra80.05Old, Old Castle In Scotland3:16335674Artie Shaw And His Orchestra80.06Temptation3:00335674Artie Shaw And His Orchestra80.07Chantez-Les Bas3:06335674Artie Shaw And His Orchestra80.08Love Of My Life3:20335674Artie Shaw And His Orchestra80.09A Handful Of Stars3:15335674Artie Shaw And His Orchestra80.10Stardust3:30335674Artie Shaw And His Orchestra80.11Merinela2:33335674Artie Shaw And His Orchestra80.12Danza Lucumi2:53335674Artie Shaw And His Orchestra80.13Blues (Part 1)3:16335674Artie Shaw And His Orchestra80.14Blues (Part 2)3:11335674Artie Shaw And His Orchestra80.15Who’s Excited3:18335674Artie Shaw And His Orchestra80.16Prelude In C Major2:52335674Artie Shaw And His Orchestra80.17This Is Romance3:17335674Artie Shaw And His Orchestra80.18What Is There To Say3:09335674Artie Shaw And His Orchestra80.19Pyramid2:53335674Artie Shaw And His Orchestra80.20You Forgot About Me3:29335674Artie Shaw And His Orchestra80.21Whispers In The Night3:18335674Artie Shaw And His OrchestraArtie Shaw - 1940-4281.01The Calypso2:45335674Artie Shaw And His Orchestra81.02Beau Night In Hotchkiss Corners3:27335674Artie Shaw And His Orchestra81.03Concerto For Clarinet (Part 1)4:30335674Artie Shaw And His Orchestra81.04Concerto For Clarinet (Part 2)4:53335674Artie Shaw And His Orchestra81.05Dancing In The Dark3:02335674Artie Shaw And His Orchestra81.06I Cover The Waterfront3:26335674Artie Shaw And His Orchestra81.07Moonglow3:25335674Artie Shaw And His Orchestra81.08Alone Together3:09335674Artie Shaw And His Orchestra81.09If I Had You3:14335674Artie Shaw And His Orchestra81.10Georgia On My Mind2:47335674Artie Shaw And His Orchestra81.11Why Shouldn’t I3:20335674Artie Shaw And His Orchestra81.12It Had To Be You2:44335674Artie Shaw And His Orchestra81.13Confessin’3:18335674Artie Shaw And His Orchestra81.14Love Me A Little Little3:02335674Artie Shaw And His Orchestra81.15Don’t Take Your Love From Me2:42335674Artie Shaw And His Orchestra81.16Beyond The Blue Horizon3:04335674Artie Shaw And His Orchestra81.17Blues In The Night3:14335674Artie Shaw And His Orchestra81.18Nocturne3:35335674Artie Shaw And His Orchestra81.19Rockin’ Chair3:07335674Artie Shaw And His Orchestra81.20Take Your Shoes Off, Baby3:23335674Artie Shaw And His Orchestra81.21Solid Sam3:14335674Artie Shaw And His Orchestra81.22Just Kiddin’ Around3:19335674Artie Shaw And His OrchestraArtie Shaw - 1941-4582.01To A Broadway Rose3:27335674Artie Shaw And His Orchestra82.02St. James Infirmary (Part 1)2:57335674Artie Shaw And His Orchestra82.03St. James Infirmary (Part 2)3:24335674Artie Shaw And His Orchestra82.04Deuces Wild2:09335674Artie Shaw And His Orchestra82.05Suite No. 84:41335674Artie Shaw And His Orchestra82.06Someone’s Rocking My Dream Boat3:16335674Artie Shaw And His Orchestra82.07Absent-Minded Moon3:18335674Artie Shaw And His Orchestra82.08Hindustan3:20335674Artie Shaw And His Orchestra82.09Carnival2:47335674Artie Shaw And His Orchestra82.10Needlenose3:24335674Artie Shaw And His Orchestra82.11Two In One Blues3:21335674Artie Shaw And His Orchestra82.12Sometimes I Feel Like A Motherless Child3:11335674Artie Shaw And His Orchestra82.13Accentuate The Positive3:06335674Artie Shaw And His Orchestra82.14Lady Day3:02335674Artie Shaw And His Orchestra82.15Let’s Take The Long Way Home3:03335674Artie Shaw And His Orchestra82.16Jumpin’ On The Merry-Go-Round3:08335674Artie Shaw And His Orchestra82.17I’ll Never Be The Same3:16335674Artie Shaw And His Orchestra82.18I Can’t Help Lovin’ That Man3:07335674Artie Shaw And His Orchestra82.19‘S Wonderful3:05335674Artie Shaw And His Orchestra82.20Bedford Drive3:16335674Artie Shaw And His Orchestra82.21September Song3:17335674Artie Shaw And His Orchestra82.22Little Jazz3:00335674Artie Shaw And His Orchestra82.23But Not For Me3:00335674Artie Shaw And His OrchestraWoody Herman - 1937-3883.01I Double Dare You2:31284746Woody Herman And His Orchestra83.02Why Talk About Love3:09284746Woody Herman And His Orchestra83.03My Fine Feathered Friend2:27284746Woody Herman And His Orchestra83.04You’re A Sweetheart3:03284746Woody Herman And His Orchestra83.05Let’s Pitch A Little Woo3:05284746Woody Herman And His Orchestra83.06I Wanna Be In Winchell’s Column2:58284746Woody Herman And His Orchestra83.07Loch Lomond3:01284746Woody Herman And His Orchestra83.08Broadway’s Gone Hawaii2:50284746Woody Herman And His Orchestra83.09Calliope Blues3:20284746Woody Herman And His Orchestra83.10Twin City Blues3:00284746Woody Herman And His Orchestra83.11Carolina In The Morning2:58284746Woody Herman And His Orchestra83.12Saving Myself For You3:13284746Woody Herman And His Orchestra83.13Laughing Boy Blues2:59284746Woody Herman And His Orchestra83.14The Flat Foot Floogie2:30284746Woody Herman And His Orchestra83.15Lullaby In Rhythm2:47284746Woody Herman And His Orchestra83.16Don’t Wake Up My Heart3:00284746Woody Herman And His Orchestra83.17Blue Evening3:04284746Woody Herman And His Orchestra83.18River Bed Blues2:38284746Woody Herman And His Orchestra83.19Indian Boogie Woogie3:06284746Woody Herman And His OrchestraWoody Herman - 1937-4384.01Dupree Blues2:48284746Woody Herman And His Orchestra84.02Doctor Jazz2:59284746Woody Herman And His Orchestra84.03Woodchoppers’ Ball3:14284746Woody Herman And His Orchestra84.04Blues Downstairs - Upstairs5:57284746Woody Herman And His Orchestra84.05East Side Kick3:22284746Woody Herman And His Orchestra84.06Blues On Parade3:07284746Woody Herman And His Orchestra84.07Careless3:15284746Woody Herman And His Orchestra84.08It’s A Blue World3:11284746Woody Herman And His Orchestra84.09Blue Ink2:59284746Woody Herman And His Orchestra84.10Herman At The Sherman3:05284746Woody Herman And His Orchestra84.11Jukin’2:58284746Woody Herman And His Orchestra84.12Get Your Boots Laced, Papa5:58284746Woody Herman And His Orchestra84.13Golden Wedding3:07284746Woody Herman And His Orchestra84.14Blue Flame3:17284746Woody Herman And His Orchestra84.15South2:51743217Woody Herman And His Woodchoppers84.16Fan It2:56743217Woody Herman And His Woodchoppers84.17Woodsheddin’ With Woody2:09284746Woody Herman And His Orchestra84.18Too Late2:43743217Woody Herman And His Woodchoppers84.19Fort Worth Jail2:50743217Woody Herman And His Woodchoppers84.20Yardbird Shuffle2:392994646Woody Herman's Four Chips84.21Four Or Five Times3:05284746Woody Herman And His Orchestra84.22Who Dat Up Dere3:09284746Woody Herman And His OrchestraWoody Herman - 194685.01Bijou3:26284746Woody Herman And His Orchestra85.02Sweet And Lovely4:53284746Woody Herman And His Orchestra85.03Superman With A Horn1:43284746Woody Herman And His Orchestra85.04Blowin‘ Up A Storm5:26284746Woody Herman And His Orchestra85.05The Man I Love4:34284746Woody Herman And His Orchestra85.06Four Men On A Horse4:33284746Woody Herman And His Orchestra85.07The Good Earth2:36284746Woody Herman And His Orchestra85.08Your Father’s Moustache4:32284746Woody Herman And His Orchestra85.09Everywhere3:54284746Woody Herman And His Orchestra85.10Red Top4:14284746Woody Herman And His Orchestra85.11Red Top4:10284746Woody Herman And His Orchestra85.12Panacea3:57284746Woody Herman And His Orchestra85.13Hallelujah1:521109917The Woodchoppers85.14Heads Up2:401109917The Woodchoppers85.15Wild Root6:18284746Woody Herman And His OrchestraWoody Herman - 1946-5486.01Four Brothers3:13284746Woody Herman And His Orchestra86.02Everywhere3:08284746Woody Herman And His Orchestra86.03Keen And Peachy2:52284746Woody Herman And His Orchestra86.04Early Autumn3:12284746Woody Herman And His Orchestra86.05Keeper Of The Flame3:02284746Woody Herman And His Orchestra86.06Lemon Drop2:52284746Woody Herman And His Orchestra86.07More Moon3:13284746Woody Herman And His Orchestra86.08Not Really The Blues2:52284746Woody Herman And His Orchestra86.09Rhapsody In Wood3:10284746Woody Herman And His Orchestra86.10Here Comes The Blues3:10284746Woody Herman And His Orchestra86.11Life Is Just A Bowl Of Cherries2:44284746Woody Herman And His Orchestra86.12Cohn’s Alley2:54284746Woody Herman And His Orchestra86.13Mulligantawny3:57284746Woody Herman And His Orchestra86.14Why Not3:06284746Woody Herman And His Orchestra86.15Would He2:32284746Woody Herman And His Orchestra86.16Off Shore3:16284746Woody Herman And His Orchestra86.17Hitting The Bottle4:09284746Woody Herman And His Orchestra86.18It Happens To Me3:28284746Woody Herman And His Orchestra86.19Strange3:04284746Woody Herman And His Orchestra86.20Moten Swing2:51284746Woody Herman And His OrchestraTommy Dorsey - 1935-3687.01Weary Blues3:16253855Tommy Dorsey And His Orchestra87.02I’m Getting Sentimental Over You3:35253855Tommy Dorsey And His Orchestra87.03I’m Shooting High2:35253855Tommy Dorsey And His Orchestra87.04Rhythm Saved The World3:09312960Tommy Dorsey And His Clambake Seven87.05Royal Garden Blues2:49253855Tommy Dorsey And His Orchestra87.06Star Dust3:31253855Tommy Dorsey And His Orchestra87.07Ja Da2:19253855Tommy Dorsey And His Orchestra87.08Mary Had A Little Lamb2:48253855Tommy Dorsey And His Orchestra87.09You’ve Gotta Eat Your Spinach, Baby2:34253855Tommy Dorsey And His Orchestra87.10On The Beach At Bali-Bali3:06253855Tommy Dorsey And His Orchestra87.11San Francisco2:33253855Tommy Dorsey And His Orchestra87.12That’s A Plenty2:59253855Tommy Dorsey And His Orchestra87.13After You’ve Gone2:53253855Tommy Dorsey And His Orchestra87.14Head Over Heels In Love2:43253855Tommy Dorsey And His Orchestra87.15Sleep2:44253855Tommy Dorsey And His Orchestra87.16Maple Leaf Rag2:29253855Tommy Dorsey And His Orchestra87.17There’s Frost On The Moon2:25253855Tommy Dorsey And His Orchestra87.18Tea On The Terrace2:46253855Tommy Dorsey And His Orchestra87.19I’m In A Dancing Mood2:45253855Tommy Dorsey And His Orchestra87.20Keepin’ Out Of Mischief Now2:44253855Tommy Dorsey And His Orchestra87.21Jamboree2:08253855Tommy Dorsey And His OrchestraTommy Dorsey - 193788.01The Goona Goo2:28253855Tommy Dorsey And His Orchestra88.02If My Heart Could Only Talk3:10253855Tommy Dorsey And His Orchestra88.03Mr. Ghost Goes To Town3:18253855Tommy Dorsey And His Orchestra88.04Lookin’ Around Corners For You2:43253855Tommy Dorsey And His Orchestra88.05Who’ll Buy My Violets3:15253855Tommy Dorsey And His Orchestra88.06On A Little Bamboo Bridge2:43253855Tommy Dorsey And His Orchestra88.07How Could You2:30253855Tommy Dorsey And His Orchestra88.08Melody In F2:54253855Tommy Dorsey And His Orchestra88.09You’re Here, You’re There, You’re Everywhere 3:03253855Tommy Dorsey And His Orchestra88.10Song Of India3:08253855Tommy Dorsey And His Orchestra88.11Marie3:18253855Tommy Dorsey And His Orchestra88.12Dedicated To You3:11253855Tommy Dorsey And His Orchestra88.13Sweet Is The Word For You3:20253855Tommy Dorsey And His Orchestra88.14In A Little Hula Heaven2:21253855Tommy Dorsey And His Orchestra88.15I’ll Dream My Way To Heaven2:38253855Tommy Dorsey And His Orchestra88.16Thanks For Everything2:41253855Tommy Dorsey And His Orchestra88.17Liebestraum3:24253855Tommy Dorsey And His Orchestra88.18Mendelssohn’s Spring Song2:31253855Tommy Dorsey And His Orchestra88.19Blue Danube2:50253855Tommy Dorsey And His Orchestra88.20Dark Eyes3:30253855Tommy Dorsey And His Orchestra88.21Jammin’2:21253855Tommy Dorsey And His Orchestra88.22They Can’t Take That Away From Me2:48253855Tommy Dorsey And His Orchestra88.23Twilight In Turkey3:24253855Tommy Dorsey And His Orchestra88.24Satan Takes A Holiday3:20253855Tommy Dorsey And His Orchestra88.25Stop, Look And Listen5:21253855Tommy Dorsey And His OrchestraTommy Dorsey - 1937-3889.01Humoresque3:23253855Tommy Dorsey And His Orchestra89.02Beale Street Blues3:18253855Tommy Dorsey And His Orchestra89.03That Stolen Melody2:38253855Tommy Dorsey And His Orchestra89.04Night And Day2:30253855Tommy Dorsey And His Orchestra89.05Smoke Gets In Your Eyes3:03253855Tommy Dorsey And His Orchestra89.06Canadian Capers2:55253855Tommy Dorsey And His Orchestra89.07Getting Some Fun Out Of Life2:22253855Tommy Dorsey And His Orchestra89.08Who3:06253855Tommy Dorsey And His Orchestra89.09The Dipsy Doodle3:09253855Tommy Dorsey And His Orchestra89.10The Big Dipper2:42253855Tommy Dorsey And His Orchestra89.11Shine On, Harvest Moon2:35253855Tommy Dorsey And His Orchestra89.12Music, Maestro, Please2:52253855Tommy Dorsey And His Orchestra89.13Panama2:54253855Tommy Dorsey And His Orchestra89.14Washboard Blues3:20253855Tommy Dorsey And His Orchestra89.15Copenhagen3:04253855Tommy Dorsey And His Orchestra89.16Symphony In Riffs3:15253855Tommy Dorsey And His Orchestra89.17Boogie Woogie3:05253855Tommy Dorsey And His Orchestra89.18Tin Roof Blues3:23253855Tommy Dorsey And His Orchestra89.19Sweet Sue, Just You2:48253855Tommy Dorsey And His OrchestraTommy Dorsey - 1939-45 90.01Lonesome Road - Part 12:35253855Tommy Dorsey And His Orchestra90.02Lonesome Road - Part 22:17253855Tommy Dorsey And His Orchestra90.03Well, All Right3:10253855Tommy Dorsey And His Orchestra90.04Night In Sudan3:12253855Tommy Dorsey And His Orchestra90.05Stomp It Off3:43253855Tommy Dorsey And His Orchestra90.06Easy Does It3:14253855Tommy Dorsey And His Orchestra90.07Quiet Please2:44253855Tommy Dorsey And His Orchestra90.08So What2:40253855Tommy Dorsey And His Orchestra90.09Swing High2:47253855Tommy Dorsey And His Orchestra90.10Swanee River3:11253855Tommy Dorsey And His Orchestra90.11Deep River3:56253855Tommy Dorsey And His Orchestra90.12Swing Low, Sweet Chariot4:02253855Tommy Dorsey And His Orchestra90.13Yes, Indeed3:29253855Tommy Dorsey And His Orchestra90.14Loose Lid Special2:45253855Tommy Dorsey And His Orchestra90.15Blue Skies3:17253855Tommy Dorsey And His Orchestra90.16Swingin’ On Nothin’3:15253855Tommy Dorsey And His Orchestra90.17Hallelujah3:01253855Tommy Dorsey And His Orchestra90.18What Is This Thing Called Love2:48253855Tommy Dorsey And His Orchestra90.19Moonlight On The Ganges2:52253855Tommy Dorsey And His Orchestra90.20Well, Git It!3:01253855Tommy Dorsey And His Orchestra90.21Mandy Make Up Your Mind2:59253855Tommy Dorsey And His Orchestra90.22On The Sunny Side Of The Street3:12253855Tommy Dorsey And His Orchestra90.23Opus One2:53253855Tommy Dorsey And His Orchestra90.24Chloe3:12253855Tommy Dorsey And His Orchestra90.25At The Fat Man’s3:08253855Tommy Dorsey And His OrchestraTommy Dorsey - 1946-5091.01Come Rain Or Come Shine3:17253855Tommy Dorsey And His Orchestra91.02Then I’ll Be Happy3:09253855Tommy Dorsey And His Orchestra91.03The Song Is You3:29253855Tommy Dorsey And His Orchestra91.04Hollywood Hat3:13253855Tommy Dorsey And His Orchestra91.05Bingo, Bango, Boffo3:21253855Tommy Dorsey And His Orchestra91.06Tom Foolery3:14253855Tommy Dorsey And His Orchestra91.07At Sundown2:48253855Tommy Dorsey And His Orchestra91.08How Are Things In Glocca Morra2:57253855Tommy Dorsey And His Orchestra91.09Trombonology3:00253855Tommy Dorsey And His Orchestra91.10Puddle Wump3:17253855Tommy Dorsey And His Orchestra91.11The Continental3:33253855Tommy Dorsey And His Orchestra91.12Drumology3:14253855Tommy Dorsey And His Orchestra91.13Pussy Willow3:14253855Tommy Dorsey And His Orchestra91.14The Hucklebuck2:57253855Tommy Dorsey And His Orchestra91.15Summertime3:00253855Tommy Dorsey And His Orchestra91.16I Get A Kick Out Of You2:53253855Tommy Dorsey And His Orchestra91.17Comin’ Through The Rye3:17253855Tommy Dorsey And His Orchestra91.18Birmingham Bounce2:56253855Tommy Dorsey And His OrchestraJimmy Dorsey92.01Parade Of The Milk Bottle Caps3:08341400Jimmy Dorsey And His Orchestra92.02In A Sentimental Mood3:03341400Jimmy Dorsey And His Orchestra92.03Stompin’ At The Savoy3:11341400Jimmy Dorsey And His Orchestra92.04I Got Rhythm3:04341400Jimmy Dorsey And His Orchestra92.05I Can’t Face The Music3:16341400Jimmy Dorsey And His Orchestra92.06Don’t Be That Way3:01341400Jimmy Dorsey And His Orchestra92.07I Cried For You4:20341400Jimmy Dorsey And His Orchestra92.08John Silver3:14341400Jimmy Dorsey And His Orchestra92.09The Darktown Strutters’ Ball2:28341400Jimmy Dorsey And His Orchestra92.10Dusk In Upper Sandusky2:32341400Jimmy Dorsey And His Orchestra92.11All Of Me3:09341400Jimmy Dorsey And His Orchestra92.12Contrasts3:03341400Jimmy Dorsey And His Orchestra92.13Dolemite3:17341400Jimmy Dorsey And His Orchestra92.14Turn Left3:07341400Jimmy Dorsey And His Orchestra92.15When The Sun Comes Out3:22341400Jimmy Dorsey And His Orchestra92.16Turn Right2:27341400Jimmy Dorsey And His Orchestra92.17Charleston Alley3:22341400Jimmy Dorsey And His Orchestra92.18Tangerine3:12341400Jimmy Dorsey And His Orchestra92.19Sorghum Switch3:23341400Jimmy Dorsey And His Orchestra92.20King Porter Stomp2:53341400Jimmy Dorsey And His OrchestraJack Teagarden93.01Persian Rug2:28340731Jack Teagarden And His Orchestra93.02The Sheik Of Araby2:38340731Jack Teagarden And His Orchestra93.03Class Will Tell2:37340731Jack Teagarden And His Orchestra93.04If It’s Good (Then I Want It)2:52340731Jack Teagarden And His Orchestra93.05I Gotta Right To Sing The Blues2:42340731Jack Teagarden And His Orchestra93.06Octeroon3:22340731Jack Teagarden And His Orchestra93.07The Little Man Who Wasn’t There2:43340731Jack Teagarden And His Orchestra93.08Puttin’ And Takin’3:00340731Jack Teagarden And His Orchestra93.09I Swung The Election2:32340731Jack Teagarden And His Orchestra93.10Blues To The Dole2:48340731Jack Teagarden And His Orchestra93.11Aunt Hagar’s Blues2:46340731Jack Teagarden And His Orchestra93.12Peg O’ My Heart3:24340731Jack Teagarden And His Orchestra93.13Muddy River Blues3:03340731Jack Teagarden And His Orchestra93.14Wolverine Blues2:44340731Jack Teagarden And His Orchestra93.15Red Wing2:59340731Jack Teagarden And His Orchestra93.16United We Swing2:55340731Jack Teagarden And His Orchestra93.17Beale Street Blues3:14340731Jack Teagarden And His Orchestra93.18Somewhere A Voice Is Calling3:14340731Jack Teagarden And His Orchestra93.19Swingin' On The Teagarden Gate2:47340731Jack Teagarden And His Orchestra93.20On Revival Day1:41340731Jack Teagarden And His Orchestra93.21Wolverine Blues2:05340731Jack Teagarden And His Orchestra93.22If I Could Be With You3:09340731Jack Teagarden And His Orchestra93.23My Melancholy Baby2:58340731Jack Teagarden And His Orchestra93.24The Blues3:15340731Jack Teagarden And His OrchestraGene Krupa94.01Wire Brush Stomp2:11317887Gene Krupa And His Orchestra94.02Jeepers Creepers3:01317887Gene Krupa And His Orchestra94.03Symphony In Riffs2:53317887Gene Krupa And His Orchestra94.04Drummin' Man2:57317887Gene Krupa And His Orchestra94.05Sweet Georgia Brown2:51317887Gene Krupa And His Orchestra94.06Georgia On My Mind2:55317887Gene Krupa And His Orchestra94.07Just A Little Bit South Of North Carolina2:42317887Gene Krupa And His Orchestra94.08Slow Down3:12317887Gene Krupa And His Orchestra94.09Green Eyes2:38317887Gene Krupa And His Orchestra94.10Let Me Off Uptown3:04317887Gene Krupa And His Orchestra94.11Kick It2:27317887Gene Krupa And His Orchestra94.12After You've Gone2:37317887Gene Krupa And His Orchestra94.13Rockin' Chair3:03317887Gene Krupa And His Orchestra94.14Stop The Red Light's On3:17317887Gene Krupa And His Orchestra94.15The Walls Keep Talkin'3:10317887Gene Krupa And His Orchestra94.16Skylark3:09317887Gene Krupa And His Orchestra94.17Bolero At The Savoy2:51317887Gene Krupa And His Orchestra94.18Thanks For The Boogie Ride3:09317887Gene Krupa And His Orchestra94.19Harlem On Parade2:46317887Gene Krupa And His Orchestra94.20Knock Me A Kiss3:00317887Gene Krupa And His Orchestra94.21That Drummer’s Band3:04317887Gene Krupa And His Orchestra94.22Massachusetts3:14317887Gene Krupa And His Orchestra94.23'Murder' He Says3:19317887Gene Krupa And His Orchestra94.24Opus One2:57317887Gene Krupa And His Orchestra94.25Boogie Blues3:24317887Gene Krupa And His OrchestraHarry James 95.01Ciribiribin2:29265635Harry James And His Orchestra95.02Sweet Georgia Brown2:33265635Harry James And His Orchestra95.03Two O’Clock Jump3:15265635Harry James And His Orchestra95.04Indiana2:42265635Harry James And His Orchestra95.05King Porter Stomp3:05265635Harry James And His Orchestra95.06I’ve Found A New Baby2:42265635Harry James And His Orchestra95.07Willow Weep For Me2:31265635Harry James And His Orchestra95.08Feet Draggin’ Blues3:00265635Harry James And His Orchestra95.09Music Makers3:15265635Harry James And His Orchestra95.10You Made Me Love You3:12265635Harry James And His Orchestra95.11Strictly Instrumental2:53265635Harry James And His Orchestra95.12Trumpet Blues And Cantabile2:57265635Harry James And His Orchestra95.13I’m Beginning To See The Light3:15265635Harry James And His Orchestra95.14I’m Confessin’3:22265635Harry James And His Orchestra95.15Who’s Sorry Now3:30265635Harry James And His Orchestra95.16Moten Swing6:20265635Harry James And His Orchestra95.17Keb-Lah3:19265635Harry James And His Orchestra95.18East Coast Blues3:15265635Harry James And His Orchestra95.19Blue, Turning Grey Over You2:57265635Harry James And His Orchestra95.20Cotton Tail2:48265635Harry James And His Orchestra95.21Tuxedo Junction6:39265635Harry James And His Orchestra95.22New Two O’Clock Jump5:16265635Harry James And His OrchestraGeorgie Auld96.01Georgie Porgie2:51774854Georgie Auld And His Orchestra96.02Sweetheart Of All My Dreams3:01774854Georgie Auld And His Orchestra96.03In The Middle3:10774854Georgie Auld And His Orchestra96.04I'll Never Be The Same2:54774854Georgie Auld And His Orchestra96.05Stompin’ At The Savoy3:05774854Georgie Auld And His Orchestra96.06Daily Double2:48774854Georgie Auld And His Orchestra96.07Here Comes Heaven Again3:13774854Georgie Auld And His Orchestra96.08It Had To Be You2:46774854Georgie Auld And His Orchestra96.09Air Mail Special2:57774854Georgie Auld And His Orchestra96.10Just A Sittin’ And A Rockin’3:13774854Georgie Auld And His Orchestra96.11Time On My Hands3:16774854Georgie Auld And His Orchestra96.12Come To Baby Do2:38774854Georgie Auld And His Orchestra96.13Stormy Weather3:15774854Georgie Auld And His Orchestra96.14You Haven’t Changed At All2:59774854Georgie Auld And His Orchestra96.15Blue Moon2:54774854Georgie Auld And His Orchestra96.16A Hundred Years From Today2:55774854Georgie Auld And His Orchestra96.17I Don’t Know Why2:58774854Georgie Auld And His Orchestra96.18Route 662:43774854Georgie Auld And His Orchestra96.19Canyon Passage2:54774854Georgie Auld And His Orchestra96.20You’re Blase2:57774854Georgie Auld And His OrchestraCD 97 > Big Bands - Stan Kenton97.01Lover Man2:49320804Stan Kenton And His Orchestra97.02Fascinatin’ Rhythm2:44320804Stan Kenton And His Orchestra97.03Malaguena2:32320804Stan Kenton And His Orchestra97.04Stella By Starlight5:12320804Stan Kenton And His Orchestra97.05Limelight3:07320804Stan Kenton And His Orchestra97.06Painted Rhythm3:00320804Stan Kenton And His Orchestra97.07Artistry In Boogie2:35320804Stan Kenton And His Orchestra97.08Southern Scandal3:03320804Stan Kenton And His Orchestra97.09Minor Riff3:00320804Stan Kenton And His Orchestra97.10Collaboration2:36320804Stan Kenton And His Orchestra97.11Intermission Riff4:12320804Stan Kenton And His Orchestra97.12Peanut Vendor4:33320804Stan Kenton And His Orchestra97.13Unison Riff3:08320804Stan Kenton And His Orchestra97.14Eager Beaver3:20320804Stan Kenton And His Orchestra97.15Lover2:31320804Stan Kenton And His Orchestra97.16Artistry Jumps2:35320804Stan Kenton And His Orchestra97.17Concerto To End All Concertos7:00320804Stan Kenton And His Orchestra97.18Interlude3:02320804Stan Kenton And His OrchestraPete Rugolo98.01Good Evening Friends Boogie3:19377051Pete Rugolo Orchestra98.02King Porter Stomp2:50377051Pete Rugolo Orchestra98.03Jingle Bells Mambo2:54377051Pete Rugolo Orchestra98.04Poinciana2:17377051Pete Rugolo Orchestra98.05My Funny Valentine2:49377051Pete Rugolo Orchestra98.06Rugolo Meets Shearing2:49377051Pete Rugolo Orchestra98.07Mixin’ The Blues3:13377051Pete Rugolo Orchestra98.08There’ll Never Be Another You2:17377051Pete Rugolo Orchestra98.09Conversation3:43377051Pete Rugolo Orchestra98.10You Are Too Beautiful2:50377051Pete Rugolo Orchestra98.11Here’s Pete2:25377051Pete Rugolo Orchestra98.12Sambamba2:26377051Pete Rugolo Orchestra98.13Later Team2:56377051Pete Rugolo Orchestra98.14Dream Of You5:08377051Pete Rugolo Orchestra98.15Once In A While3:43377051Pete Rugolo Orchestra98.16Fancy Meeting You4:46377051Pete Rugolo Orchestra98.17Music For Hi-Fi Bugs (Stereo Spacemen)3:54377051Pete Rugolo Orchestra98.18These Foolish Things4:48377051Pete Rugolo Orchestra98.19Oscar And Pete’s Blues8:24377051Pete Rugolo Orchestra98.20Snowfall3:11377051Pete Rugolo OrchestraShorty Rogers99.01Pay The Piper3:52376567Shorty Rogers And His Orchestra99.02At Home With Sweets4:57376567Shorty Rogers And His Orchestra99.03Pink Squirrel3:31376567Shorty Rogers And His Orchestra99.04Blues Express4:14376567Shorty Rogers And His Orchestra99.05A Geophisical Ear3:45376567Shorty Rogers And His Orchestra99.06The Line Backer4:10376567Shorty Rogers And His Orchestra99.07Play Boy5:41376567Shorty Rogers And His Orchestra99.08Saturnian Sleigh Ride3:46376567Shorty Rogers And His Orchestra99.09Martian’s Lullaby7:14376567Shorty Rogers And His Orchestra99.10Bluezies6:33376567Shorty Rogers And His Orchestra99.11Red Dog Play4:45376567Shorty Rogers And His Orchestra99.12Grand Slam4:54376567Shorty Rogers And His OrchestraGlenn Miller - 1938-42100.01King Porter Stomp3:28335671Glenn Miller And His Orchestra100.02Little Brown Jug2:54335671Glenn Miller And His Orchestra100.03Runnin’ Wild2:46335671Glenn Miller And His Orchestra100.04Sliphorn Jive3:10335671Glenn Miller And His Orchestra100.05Sold American3:01335671Glenn Miller And His Orchestra100.06Pagan Love Song3:13335671Glenn Miller And His Orchestra100.07Glen Island Special2:59335671Glenn Miller And His Orchestra100.08In The Mood3:33335671Glenn Miller And His Orchestra100.09Wham (Re-Bop-Boom-Bam)3:34335671Glenn Miller And His Orchestra100.10I Want To Be Happy3:04335671Glenn Miller And His Orchestra100.11Farewell Blues3:08335671Glenn Miller And His Orchestra100.12Johnson Rag2:46335671Glenn Miller And His Orchestra100.13Rug Cutter’s Swing2:58335671Glenn Miller And His Orchestra100.14Tuxedo Junction3:29335671Glenn Miller And His Orchestra100.15Slow Freight3:11335671Glenn Miller And His Orchestra100.16Bugle Call Rag2:54335671Glenn Miller And His Orchestra100.17My Blue Heaven3:12335671Glenn Miller And His Orchestra100.18I Dream I Dwelt In Harlem3:38335671Glenn Miller And His Orchestra100.19Sun Valley Jump2:27335671Glenn Miller And His Orchestra100.20Chattanooga Choo Choo3:27335671Glenn Miller And His Orchestra100.21Long Tall Mama3:01335671Glenn Miller And His Orchestra100.22Chip Off The Block2:42335671Glenn Miller And His Orchestra100.23American Patrol3:18335671Glenn Miller And His Orchestra100.24Carribean Clipper2:39335671Glenn Miller And His Orchestra100.25It Must Be Jelly2:59335671Glenn Miller And His Orchestra44294Membran Music Ltd.10Manufactured By267254Membran International GmbH4Record Company44294Membran Music Ltd.9Distributed By + +194VariousBebop StoryCompilationRemasteredMonoJazzGermany2008Needs Vote0CD 1 > Bebop Story - Dizzy Gillespie - The Early Years (Vol. 1) - 1937-401.1Yours And Mine2:392919719Teddy Hill And His NBC Orchestra1.2King Porter Stomp3:032919719Teddy Hill And His NBC Orchestra1.3Blue Rhythm Fantasy2:402919719Teddy Hill And His NBC Orchestra1.4For The Last Time I Cried Over You2:50179389Cab Calloway And His Orchestra1.5Twee-Twee-Tweet2:44179389Cab Calloway And His Orchestra1.6Pluckin' The Bass2:43179389Cab Calloway And His Orchestra1.7I Ain't Gettin' Nowhere Fast2:47179389Cab Calloway And His Orchestra1.8Hot Mallets2:15317907Lionel Hampton And His Orchestra1.9A Bee Gezindt2:52179389Cab Calloway And His Orchestra1.10Give, Baby, Give2:37179389Cab Calloway And His Orchestra1.11Do It Again2:55179389Cab Calloway And His Orchestra1.12Pickin' The Cabbage2:49179389Cab Calloway And His Orchestra1.13Chop, Chop, Charlie Chan3:02179389Cab Calloway And His Orchestra1.14Paradiddle3:03179389Cab Calloway And His Orchestra1.15Boog It2:56179389Cab Calloway And His Orchestra1.16Calling All Bars2:52179389Cab Calloway And His Orchestra1.17Do I Care, No No2:52179389Cab Calloway And His Orchestra1.18The Lone Arranger2:32179389Cab Calloway And His Orchestra1.19Topsy Turvy (Hard Times)3:26179389Cab Calloway And His Orchestra1.20Once In A Lovetime2:464543213Alice O'ConnellWith4543212Glenn Hardman & His Trio1.21Shades Of Twilight2:504543213Alice O'ConnellWith4543212Glenn Hardman & His TrioCD 2 > Bebop Story - Dizzy Gillespie - The Early Years (Vol. 2) - 1940-422.1Come On With The "Come On"2:58179389Cab Calloway And His Orchestra2.2Bye Bye Blues2:55179389Cab Calloway And His Orchestra2.3Limehouse Blues2:20179389Cab Calloway And His Orchestra2.4Hard Times (Topsy Turvy)3:11179389Cab Calloway And His Orchestra2.5Cupid's Nightmare5:42179389Cab Calloway And His Orchestra2.6Boog It3:43179389Cab Calloway And His Orchestra2.7King Porter Stomp3:49179389Cab Calloway And His Orchestra2.8Papa's In Bed With His Britches On2:36179389Cab Calloway And His Orchestra2.9Boo-Wah Boo-Wah2:50179389Cab Calloway And His Orchestra2.10Hot Air2:51179389Cab Calloway And His Orchestra2.11A Chicken Ain't Nothin' But A Bird2:51179389Cab Calloway And His Orchestra2.12The Workers’ Train3:14179389Cab Calloway And His Orchestra2.13Are You All Reet?3:03179389Cab Calloway And His Orchestra2.14Hey Doc3:14179389Cab Calloway And His Orchestra2.15Mrs. Finnigan2:45179389Cab Calloway And His Orchestra2.16Mound Bayou2:39634885Pete Brown And His Band2.17Unlucky Woman3:07634885Pete Brown And His Band2.18Gonna Buy Me A Telephone3:11634885Pete Brown And His Band2.19Cannon Ball2:47634885Pete Brown And His Band2.20Down Under2:48284746Woody Herman And His Orchestra2.21Mason Flyer2:49344328Lucky Millinder And His Orchestra2.22Little John Special3:09344328Lucky Millinder And His OrchestraCD 3 > Bebop Story - Dizzy Gillespie & Charlie Christian - The Early Years (Vol. 3) - 19413.1Stardust6:1864694Dizzy Gillespie3.2Stardust3:2664694Dizzy Gillespie3.3Kerouac7:3964694Dizzy Gillespie3.4Topsy (Charlie's Choice)9:0064694Dizzy Gillespie3.5Stompin' At The Savoy8:1764694Dizzy Gillespie3.6Up On Teddy's Hill (aka: Topsy)6:1364694Dizzy Gillespie3.7Down' On Teddy's Hill (aka: Rhythm-A-Ning)3:0964694Dizzy Gillespie3.8Guy's Got To Go2:2664694Dizzy Gillespie3.9Lips Flips (aka: Stompin’ At The Savoy)4:5964694Dizzy GillespieCD 4 > Bebop Story - Dizzy Gillespie - The Early Years (Vol. 4) - 19444.1Woody'n You3:00373805Coleman Hawkins And His Orchestra4.2Bu-Dee-Daht3:14373805Coleman Hawkins And His Orchestra4.3Yesterdays2:58373805Coleman Hawkins And His Orchestra4.4Disorder At The Border2:59373805Coleman Hawkins And His Orchestra4.5Feeling Zero3:01373805Coleman Hawkins And His Orchestra4.6Rainbow Mist (Body And Soul)3:01373805Coleman Hawkins And His Orchestra4.7I Got A Date With The Rhythm Man2:56311744Billy EckstineWith 780020Deluxe All Stars4.8I Stay In The Mood For You2:58311744Billy EckstineWith 780020Deluxe All Stars4.9Good Jelly Blues2:53311744Billy EckstineWith 780020Deluxe All Stars4.10If That's The Way You Feel2:40320609Billy Eckstine And His Orchestra4.11I Want To Talk About You2:38320609Billy Eckstine And His Orchestra4.12Blowing The Blues Away3:09320609Billy Eckstine And His Orchestra4.13Blowing The Blues Away3:11320609Billy Eckstine And His Orchestra4.14Opus X2:43320609Billy Eckstine And His Orchestra4.15I'll Wait And Pray2:55320609Billy Eckstine And His Orchestra4.16The Real Thing Happened To Me2:41320609Billy Eckstine And His Orchestra4.17Signing Off2:408284Sarah Vaughan4.18Interlude2:318284Sarah Vaughan4.19No Smokes2:268284Sarah Vaughan4.20East Of The Sun (And West Of The Moon)2:528284Sarah VaughanCD 5 > Bebop Story - Charlie Parker - The Early Years (Vol. 5) - 1940-425.1Variations on Honeysuckle Rose & Body And Soul3:0575617Charlie Parker5.2I Got Rhythm3:38446627Jay McShann And His Orchestra5.3I Found A New Baby3:00446627Jay McShann And His Orchestra5.4Body And Soul2:53446627Jay McShann And His Orchestra5.5Moten Swing2:49446627Jay McShann And His Orchestra5.6Coquette3:10446627Jay McShann And His Orchestra5.7Lady Be Good2:57446627Jay McShann And His Orchestra5.8Wichita Blues3:09446627Jay McShann And His Orchestra5.9Honeysuckle Rose2:58446627Jay McShann And His Orchestra5.10Swingmatism2:37446627Jay McShann And His Orchestra5.11Hootie Blues2:55446627Jay McShann And His Orchestra5.12Dexter Blues2:54446627Jay McShann And His Orchestra5.13One Woman's Man3:03446627Jay McShann And His Orchestra5.14Cherokee2:492966684Clark Monroe's Band5.15Lonely Boy Blues2:55446627Jay McShann And His Orchestra5.16Get Me On Your Mind3:03446627Jay McShann And His Orchestra5.17The Jumpin' Blues3:00446627Jay McShann And His Orchestra5.18Sepian Bounce3:07446627Jay McShann And His Orchestra5.19Cherokee3:0975617Charlie Parker5.20My Heart Tells Me (Should I Believe My Heart?)3:1875617Charlie Parker5.21I Found A New Baby3:3075617Charlie Parker5.22Body And Soul3:4375617Charlie ParkerCD 6 > Bebop Story - The Early Years (Vol. 6) 6.1You Talk A Little Trash3:02368185Cootie Williams And His Orchestra6.2Floogie Boo2:39368185Cootie Williams And His Orchestra6.3I Don't Know3:13368185Cootie Williams And His Orchestra6.4Gotta Do Some War Work3:05368185Cootie Williams And His Orchestra6.5My Old Flame3:15368185Cootie Williams And His Orchestra6.6Sweet Lorraine3:11368185Cootie Williams And His Orchestra6.7Echoes Of Harlem3:08368185Cootie Williams And His Orchestra6.8Honeysuckle Rose3:13368185Cootie Williams And His Orchestra6.9Now I Know3:00368185Cootie Williams And His Orchestra6.10Tess's Torch Song2:31368185Cootie Williams And His Orchestra6.11Cherry Red Blues3:05368185Cootie Williams And His Orchestra6.12Things Ain't What They Used To Be3:15368185Cootie Williams And His Orchestra6.13Is You Is, Or Is You Ain't My Baby2:45368185Cootie Williams And His Orchestra6.14Somebody's Gotta Go3:16368185Cootie Williams And His Orchestra6.15'Round Midnight3:16368185Cootie Williams And His Orchestra6.16Blue Garden Blues (Royal Garden Blues)3:18368185Cootie Williams And His Orchestra6.17You Talk A Little Trash (The Boppers)3:22368185Cootie Williams And His Orchestra6.18Royal Garden Blues3:38368185Cootie Williams And His Orchestra6.19'Round Midnight3:18368185Cootie Williams And His Orchestra6.20Birmingham Special2:52368185Cootie Williams And His Orchestra6.21The Rhythm Is Jumpin'3:45368185Cootie Williams And His OrchestraCD 7 > Bebop Story - The Early Years (Vol. 7) - The First Bebop Big Band - 19457.1Blue 'n Boogie (Theme)1:26320609Billy Eckstine And His Orchestra7.2Blowing The Blues Away1:59320609Billy Eckstine And His Orchestra7.3‘Deed I Do2:39320609Billy Eckstine And His Orchestra7.4I Wanna Talk About You3:19320609Billy Eckstine And His Orchestra7.5Blue 'n Boogie (Theme)0:45320609Billy Eckstine And His Orchestra7.6Blue 'n Boogie (Theme)0:48320609Billy Eckstine And His Orchestra7.7Together4:01320609Billy Eckstine And His Orchestra7.8Mean To Me4:27320609Billy Eckstine And His Orchestra7.9Without A Song4:15320609Billy Eckstine And His Orchestra7.10Mr. Chips3:00320609Billy Eckstine And His Orchestra7.11Blue 'n Boogie (Theme)0:56320609Billy Eckstine And His Orchestra7.12Blue 'n Boogie (Theme)1:22320609Billy Eckstine And His Orchestra7.13Air Mail Special3:52320609Billy Eckstine And His Orchestra7.14Don't Blame Me3:33320609Billy Eckstine And His Orchestra7.15If That's The Way You Feel3:42320609Billy Eckstine And His Orchestra7.16Blue 'n Boogie (Theme)1:13320609Billy Eckstine And His Orchestra7.17Blue 'n Boogie (Theme)1:11320609Billy Eckstine And His Orchestra7.18Opus X2:39320609Billy Eckstine And His Orchestra7.19Love Me Or Leave Me4:25320609Billy Eckstine And His Orchestra7.20One O'Clock Jump (Theme)1:39320609Billy Eckstine And His Orchestra7.21Lonesome Lover Blues2:48320609Billy Eckstine And His Orchestra7.22A Cottage For Sale2:47320609Billy Eckstine And His Orchestra7.23Rhythm In A Riff2:49320609Billy Eckstine And His Orchestra7.24Last Night2:59320609Billy Eckstine And His OrchestraCD 8 > Bebop Story - The Early Years (Vol. 8) - The First Bebop Big Band - 1945-478.1My Deep Blue Dream3:00320609Billy Eckstine And His Orchestra8.2Prisoner Of Love2:55320609Billy Eckstine And His Orchestra8.3It Ain't Like That2:53320609Billy Eckstine And His Orchestra8.4A Penny For Your Thoughts2:57320609Billy Eckstine And His Orchestra8.5I'm In The Mood For Love2:55320609Billy Eckstine And His Orchestra8.6You Call It Madness3:01320609Billy Eckstine And His Orchestra8.7All I Sing Is Blues2:49320609Billy Eckstine And His Orchestra8.8Long Long Journey3:06320609Billy Eckstine And His Orchestra8.9I Only Have Eyes For You2:34320609Billy Eckstine And His Orchestra8.10You’re My Everything2:45320609Billy Eckstine And His Orchestra8.11The Jitney Man2:44320609Billy Eckstine And His Orchestra8.12Blue2:58320609Billy Eckstine And His Orchestra8.13Second Balcony Jump2:52320609Billy Eckstine And His Orchestra8.14Tell Me Pretty Baby2:58320609Billy Eckstine And His Orchestra8.15Love Is The Thing2:50320609Billy Eckstine And His Orchestra8.16Without A Song2:52320609Billy Eckstine And His Orchestra8.17Cool Breeze2:53320609Billy Eckstine And His Orchestra8.18Don’t Ever Take Your Love From Me2:56320609Billy Eckstine And His Orchestra8.19Oo Bop Sh’Bam3:04320609Billy Eckstine And His Orchestra8.20Oo Bop Sh’Bam3:00320609Billy Eckstine And His Orchestra8.21In The Still Of The Night2:54320609Billy Eckstine And His Orchestra8.22Jelly Jelly3:17320609Billy Eckstine And His OrchestraCD 9 > Bebop Story - The Early Years (Vol. 9) - The First Herd - 1944-469.1Flying Home3:06284746Woody Herman And His Orchestra9.2It Must Be Jelly2:52284746Woody Herman And His Orchestra9.3Red Top4:32284746Woody Herman And His Orchestra9.4Jones Beachhead3:29284746Woody Herman And His Orchestra9.5Apple Honey4:40284746Woody Herman And His Orchestra9.6John Hardy’s Wife4:306994466Woody Herman And His V-Disc All Stars9.7Apple Honey3:17284746Woody Herman And His Orchestra9.8Caldonia3:02284746Woody Herman And His Orchestra9.9Goosey Gander3:23284746Woody Herman And His Orchestra9.10Northwest Passage3:11284746Woody Herman And His Orchestra9.11Bijou (Rhumba Á La Jazz)3:21284746Woody Herman And His Orchestra9.12(Ah) Your Father’s Moustache6:13284746Woody Herman And His Orchestra9.13Don’t Worry ‘Bout That Mule3:59284746Woody Herman And His Orchestra9.14125th Street Prophet4:12284746Woody Herman And His Orchestra9.15Meshuga5:58284746Woody Herman And His Orchestra9.16Caldonia3:44284746Woody Herman And His Orchestra9.17Jackson Fiddles While Ralph Burns3:53284746Woody Herman And His Orchestra9.18Blowin‘ Up A Storm4:12284746Woody Herman And His OrchestraCD 10 > Bebop Story - Red Norvo - The Early Years (Vol. 10) 10.11-2-3-4 Jump3:571404012Red Norvo And His Overseas Spotlight Band10.2Seven Come Eleven4:171404012Red Norvo And His Overseas Spotlight Band10.3In A Mellotone5:111404012Red Norvo And His Overseas Spotlight Band10.4Flyin‘ Home4:171404012Red Norvo And His Overseas Spotlight Band10.5The Sergeant On Furlough5:021404012Red Norvo And His Overseas Spotlight Band10.6NRC Jump4:561404012Red Norvo And His Overseas Spotlight Band10.7Lagwood Walk5:061404012Red Norvo And His Overseas Spotlight Band10.8Red Dust4:501891508Red Norvo Quintet10.9Blue Skies4:411891508Red Norvo Quintet10.10Purple Feathers4:461891508Red Norvo Quintet10.11Subtle Sextology3:441696062Red Norvo Sextet10.12Blues A La Red4:001696062Red Norvo Sextet10.13The Man I Love4:141696062Red Norvo Sextet10.14Seven Come Eleven4:071696062Red Norvo Sextet10.15Swedish Pastry3:0110720720Stan Hasselgard And His Smorgasbirds10.16Sweet And Hot Mop2:4210720720Stan Hasselgard And His Smorgasbirds10.17Who Sleeps2:5010720720Stan Hasselgard And His Smorgasbirds10.18I’ll Never Be The Same3:1510720720Stan Hasselgard And His SmorgasbirdsCD 11 > Bebop Story - Dizzy Gillespie & Charlie Parker (Vol. 1) - 194511.1What's The Matter Now?2:43358567Clyde Hart All Stars11.2I Want Every Bit Of It2:55358567Clyde Hart All Stars11.3That's The Blues2:57358567Clyde Hart All Stars11.44-F Blues2:17358567Clyde Hart All Stars11.5G.I. Blues2:36358567Clyde Hart All Stars11.6Dream Of You2:5264694Dizzy GillespieWith 358567Clyde Hart All Stars11.7Seventh Avenue2:5364694Dizzy GillespieWith 358567Clyde Hart All Stars11.8Sorta Kinda3:0264694Dizzy GillespieWith 358567Clyde Hart All Stars11.9Oh, Oh, My, My, Ooh, Ooh2:4864694Dizzy GillespieWith 358567Clyde Hart All Stars11.10Groovin' High2:4164694Dizzy Gillespie11.11All The Things You Are2:4864694Dizzy Gillespie11.12Dizzy Atmosphere2:4964694Dizzy Gillespie11.13Salt Peanuts3:15374983Dizzy Gillespie And His All Star Quintet11.14Shaw 'Nuff3:00374983Dizzy Gillespie And His All Star Quintet11.15Lover Man3:22374983Dizzy Gillespie And His All Star Quintet11.16Hot House3:08374983Dizzy Gillespie And His All Star Quintet11.17What More Can A Woman Do?3:018284Sarah VaughanWith 284744Dizzy Gillespie And His Orchestra11.18I'd Rather Have A Memory2:428284Sarah VaughanWith 284744Dizzy Gillespie And His Orchestra11.19Mean To Me2:388284Sarah VaughanWith 284744Dizzy Gillespie And His Orchestra11.20Sweet Georgia Brown3:1975617Charlie Parker -64694Dizzy Gillespie11.21Lover, Come Back To Me3:2875617Charlie Parker- 64694Dizzy GillespieCD 12 > Bebop Story - Dizzy Gillespie & Charlie Parker (Vol. 2) - 194512.1Hallelujah4:00358568Red Norvo And His Selected Sextet12.2Get Happy3:40358568Red Norvo And His Selected Sextet12.3"Slam Slam" Blues4:27358568Red Norvo And His Selected Sextet12.4Congo Blues3:51358568Red Norvo And His Selected Sextet12.5Hallelujah4:08358568Red Norvo And His Selected Sextet12.6Get Happy4:02358568Red Norvo And His Selected Sextet12.7Slam Slam Blues5:02358568Red Norvo And His Selected Sextet12.8Congo Blues4:00358568Red Norvo And His Selected Sextet12.9Congo Blues3:53358568Red Norvo And His Selected Sextet12.10Billie's Bounce2:43317873Charlie Parker's Re-Boppers12.11Billie's Bounce3:06317873Charlie Parker's Re-Boppers12.12Warming Up A Riff2:35317873Charlie Parker's Re-Boppers12.13Billie's Bounce3:11317873Charlie Parker's Re-Boppers12.14Now's The Time3:08317873Charlie Parker's Re-Boppers12.15Now's The Time3:16317873Charlie Parker's Re-Boppers12.16Thriving On A Riff3:00317873Charlie Parker's Re-Boppers12.17Thriving On A Riff2:56317873Charlie Parker's Re-Boppers12.18Meandering3:16317873Charlie Parker's Re-Boppers12.19Koko2:54317873Charlie Parker's Re-BoppersCD 13 > Bebop Story - Dizzy Gillespie & Charlie Parker (Vol. 3) - 1945-4713.1Dizzy Boogie3:09317857Slim Gaillard And His Orchestra13.2Dizzy Boogie3:12317857Slim Gaillard And His Orchestra13.3Flat Foot Floogie2:45317857Slim Gaillard And His Orchestra13.4Flat Foot Floogie2:33317857Slim Gaillard And His Orchestra13.5Bopity Bop2:59317857Slim Gaillard And His Orchestra13.6Slim's Jam3:16317857Slim Gaillard And His Orchestra13.7Shaw 'Nuff4:53358566Dizzy Gillespie Sextet13.8Groovin' High5:46358566Dizzy Gillespie Sextet13.9Dizzy Atmosphere4:43358566Dizzy Gillespie Sextet13.10Diggin' Diz2:52374987Dizzy Gillespie Jazzmen13.11Koko0:593438865Barry Ulanov's All Star Modern Jazz Musicians13.12Hot House5:143438865Barry Ulanov's All Star Modern Jazz Musicians13.13I Surrender Dear3:053438865Barry Ulanov's All Star Modern Jazz Musicians13.14Fine And Dandy3:233438865Barry Ulanov's All Star Modern Jazz MusiciansCD 14 > Bebop Story - Dizzy Gillespie & Charlie Parker (Vol. 4) - 1947-5014.1Koko (Theme) / On The Sunny Side Of The Street4:153438865Barry Ulanov's All Star Modern Jazz Musicians14.2How Deep Is The Ocean3:023438865Barry Ulanov's All Star Modern Jazz Musicians14.3Tiger Rag / Dizzy Atmosphere3:503438865Barry Ulanov's All Star Modern Jazz Musicians14.452nd Street Theme0:453438865Barry Ulanov's All Star Modern Jazz Musicians14.5A Night In Tunisia5:132966680Dizzy Gillespie-Charlie Parker Quintet14.6Dizzy Atmosphere4:052966680Dizzy Gillespie-Charlie Parker Quintet14.7Groovin' High5:172966680Dizzy Gillespie-Charlie Parker Quintet14.8Confirmation (Riff Warmer)5:392966680Dizzy Gillespie-Charlie Parker Quintet14.9Koko4:182966680Dizzy Gillespie-Charlie Parker Quintet14.10Bloomdido3:27340586Charlie Parker And His Orchestra14.11An Oscar For Treadwell3:22340586Charlie Parker And His Orchestra14.12An Oscar For Treadwell3:24340586Charlie Parker And His Orchestra14.13Mohawk3:50340586Charlie Parker And His Orchestra14.14Mohawk3:36340586Charlie Parker And His Orchestra14.15My Melancholy Baby3:17340586Charlie Parker And His Orchestra14.16My Melancholy Baby3:25340586Charlie Parker And His Orchestra14.17Leap Frog2:03340586Charlie Parker And His Orchestra14.18Leap Frog2:31340586Charlie Parker And His Orchestra14.19Relaxin' With Lee3:57340586Charlie Parker And His Orchestra14.20Relaxin' With Lee2:46340586Charlie Parker And His OrchestraCD 15 > Bebop Story - Dizzy Gillespie & Charlie Parker (Vol. 5) - 1951-5315.1Intro1:54272024The Charlie Parker All-Stars15.2Blue ‘n’ Boogie7:18272024The Charlie Parker All-Stars15.3Anthropology5:10272024The Charlie Parker All-Stars15.4‘Round Midnight5:03272024The Charlie Parker All-Stars15.5Night In Tunisia5:41272024The Charlie Parker All-Stars15.6Hot House3:3175617Charlie Parker15.7Perdido7:54301516The Quintet Of The Year15.8Salt Peanuts7:51301516The Quintet Of The Year15.9All The Things You Are, into: 52nd Street Theme8:11301516The Quintet Of The Year15.10Wee (Allen’s Alley)6:55301516The Quintet Of The Year15.11Hot House9:29301516The Quintet Of The Year15.12A Night In Tunisia7:51301516The Quintet Of The YearCD 16 > Bebop Story - Dizzy Gillespie (Vol. 1) - 194516.1Somethin' For You2:314655294Oscar Pettiford And His 18 All Stars16.2Worried Life Blues2:534655294Oscar Pettiford And His 18 All Stars16.3Empty Bed Blues (Part 1)2:334655294Oscar Pettiford And His 18 All Stars16.4Empty Bed Blues (Part 2)2:334655294Oscar Pettiford And His 18 All Stars16.5I Can't Get Started3:0064694Dizzy Gillespie16.6Good Bait2:5964694Dizzy Gillespie16.7Salted Peanuts3:0064694Dizzy Gillespie16.8Be-Bop3:0964694Dizzy Gillespie16.9Perdido2:513013866Joe Marsala Sextet16.10My Melancholy Baby2:553013866Joe Marsala Sextet16.11On The Alamo2:513013866Joe Marsala Sextet16.12Cherokee2:493013866Joe Marsala Sextet16.13Interlude (Night In Tunisia)3:10341415Boyd Raeburn And His Orchestra16.14March Of The Boyds2:33341415Boyd Raeburn And His Orchestra16.15Georgie Porgie2:52774854Georgie Auld And His Orchestra16.16Sweetheart Of All My Dreams3:03774854Georgie Auld And His Orchestra16.17In The Middle3:12774854Georgie Auld And His Orchestra16.18Groovin' High2:36284744Dizzy Gillespie And His Orchestra16.19Blue'n Boogie2:55284744Dizzy Gillespie And His Orchestra16.20I'll Never Be The Same2:55774854Georgie Auld And His Orchestra16.21A Night In Tunisia3:15341415Boyd Raeburn And His OrchestraCD 17 > Bebop Story - Dizzy Gillespie (Vol. 2) - 194617.1Night And Day3:192824958Wilbert Baranco And His Rhythm Bombardiers17.2Weeping Willie3:152824958Wilbert Baranco And His Rhythm Bombardiers17.3Everytime I Think Of You2:362824958Wilbert Baranco And His Rhythm Bombardiers17.4Baranco Boogie3:072824958Wilbert Baranco And His Rhythm Bombardiers17.5Confirmation2:54374987Dizzy Gillespie Jazzmen17.6Diggin' For Diz2:52374987Dizzy Gillespie Jazzmen17.7Dynamo A3:01374987Dizzy Gillespie Jazzmen17.8Dynamo B2:58374987Dizzy Gillespie Jazzmen17.9When I Grow Too Old To Dream2:53374987Dizzy Gillespie Jazzmen17.10When I Grow Too Old To Dream2:57374987Dizzy Gillespie Jazzmen17.11Round About Midnight2:48374987Dizzy Gillespie Jazzmen17.12Round About Midnight2:52374987Dizzy Gillespie Jazzmen17.13The Way You Look Tonight2:4764694Dizzy Gillespie17.14Why Do I Love You2:2164694Dizzy Gillespie17.15Who2:5564694Dizzy Gillespie17.16All The Things You Are2:1664694Dizzy Gillespie17.1752nd Street Theme3:14284744Dizzy Gillespie And His Orchestra17.1852nd Street Theme3:06284744Dizzy Gillespie And His Orchestra17.19Night In Tunisia3:03284744Dizzy Gillespie And His Orchestra17.20Ol' Man Rebop2:46284744Dizzy Gillespie And His Orchestra17.21Anthropology2:41284744Dizzy Gillespie And His Orchestra17.22All Too Soon2:55774855Tony Scott And His Down Beat Club Septet17.23You're Only Happy When I'm Blue3:12774855Tony Scott And His Down Beat Club Septet17.24Ten Lessons With Timothy2:40774855Tony Scott And His Down Beat Club SeptetCD 18 > Bebop Story - Dizzy Gillespie (Vol. 3) - 1946-4718.1One Bass Hit (Part 1)2:54358566Dizzy Gillespie Sextet18.2Oop-Bop-Sh'bam2:59358566Dizzy Gillespie Sextet18.3A Handfulla Gimme3:03358566Dizzy Gillespie Sextet18.4That's Earl, Brother 2:42358566Dizzy Gillespie Sextet18.5Our Delight2:31284744Dizzy Gillespie And His Orchestra18.6Good Dues Blues3:00284744Dizzy Gillespie And His Orchestra18.7One Bass Hit (Part 2)2:54284744Dizzy Gillespie And His Orchestra18.8Ray's Idea2:21284744Dizzy Gillespie And His Orchestra18.9Things To Come2:47284744Dizzy Gillespie And His Orchestra18.10He Beeped When He Should Have Bopped2:41284744Dizzy Gillespie And His Orchestra18.11He Beeped When He Should Have Bopped2:42284744Dizzy Gillespie And His Orchestra18.12For Hecklers Only2:572641935Ray Brown's All Stars18.13Smokey Hollow Jump3:002641935Ray Brown's All Stars18.14Boppin' The Blues3:062641935Ray Brown's All Stars18.15Moody Speaks2:322641935Ray Brown's All Stars18.16Ow!5:06284744Dizzy Gillespie And His Orchestra18.17I Waited For You3:05284744Dizzy Gillespie And His Orchestra18.18Emanon3:05284744Dizzy Gillespie And His Orchestra18.19Ow!2:55284744Dizzy Gillespie And His Orchestra18.20Oop-Pop-A-Da3:09284744Dizzy Gillespie And His Orchestra18.21Two Bass Hit2:45284744Dizzy Gillespie And His Orchestra18.22Stay On It3:09284744Dizzy Gillespie And His OrchestraCD 19 > Bebop Story - Dizzy Gillespie (Vol. 4) - 1947-4819.1Algo Bueno (Woody'n You)2:59284744Dizzy Gillespie And His Orchestra19.2Cool Breeze2:45284744Dizzy Gillespie And His Orchestra19.3Cubana Be2:39284744Dizzy Gillespie And His Orchestra19.4Cubana Bop3:07284744Dizzy Gillespie And His Orchestra19.5Manteca3:05284744Dizzy Gillespie And His Orchestra19.6Good Bait2:45284744Dizzy Gillespie And His Orchestra19.7Ool-Ya-Koo2:49284744Dizzy Gillespie And His Orchestra19.8Minor Walk2:42284744Dizzy Gillespie And His Orchestra19.9Emanon4:33284744Dizzy Gillespie And His Orchestra19.10Ool-Ya-Koo6:11284744Dizzy Gillespie And His Orchestra19.11‘Round Midnight3:46284744Dizzy Gillespie And His Orchestra19.12Stay On It5:29284744Dizzy Gillespie And His Orchestra19.13Good Bait3:32284744Dizzy Gillespie And His Orchestra19.14One Bass Hit4:58284744Dizzy Gillespie And His Orchestra19.15I Can’t Get Started3:40284744Dizzy Gillespie And His Orchestra19.16Manteca7:39284744Dizzy Gillespie And His Orchestra19.17Guarachi Guaro3:13284744Dizzy Gillespie And His Orchestra19.18Duff Capers3:09284744Dizzy Gillespie And His Orchestra19.19Lover, Come Back To Me3:32284744Dizzy Gillespie And His Orchestra19.20I'm Be Boppin' Too2:21284744Dizzy Gillespie And His OrchestraCD 20 > Bebop Story - Dizzy Gillespie (Vol. 5) - 1949-5120.1Swedish Suite2:54284744Dizzy Gillespie And His Orchestra20.2St. Louis Blues3:05284744Dizzy Gillespie And His Orchestra20.3I Should Care3:03284744Dizzy Gillespie And His Orchestra20.4That Old Black Magic2:41284744Dizzy Gillespie And His Orchestra20.5Katy (Dizzier And Dizzier)3:03284744Dizzy Gillespie And His Orchestra20.6Jump-Did-Le-Ba2:30284744Dizzy Gillespie And His Orchestra20.7Hey Pete! Let’s Eat Mo’ Meat3:00284744Dizzy Gillespie And His Orchestra20.8Jumpin’ With Symphony Sid3:03284744Dizzy Gillespie And His Orchestra20.9If Love Is Trouble3:44284744Dizzy Gillespie And His Orchestra20.10In The Land Of Oo-Bla-Dee2:35284744Dizzy Gillespie And His Orchestra20.11She’s Gone Again2:42358566Dizzy Gillespie Sextet20.12Nice Work If You Can Get It2:44358566Dizzy Gillespie Sextet20.13Thinking Of You2:44358566Dizzy Gillespie Sextet20.14Too Much Weight2:21358566Dizzy Gillespie Sextet20.15Birk's Works5:03358566Dizzy Gillespie Sextet20.16Good Bait3:43358566Dizzy Gillespie Sextet20.17Night In Tunisia6:45358566Dizzy Gillespie Sextet20.18We Love To Boogie2:52358566Dizzy Gillespie Sextet20.19Tin Tin Deo2:40358566Dizzy Gillespie Sextet20.20Birk’s Works3:05358566Dizzy Gillespie SextetCD 21 > Bebop Story - Dizzy Gillespie (Vol. 6) - 1951-5221.1Lady Be Good2:40358566Dizzy Gillespie Sextet21.2Love Me Pretty Baby3:00358566Dizzy Gillespie Sextet21.3The Champ (Part 1 & 2)5:39358566Dizzy Gillespie Sextet21.4I’m In A Mess2:10358566Dizzy Gillespie Sextet21.5Schooldays3:10358566Dizzy Gillespie Sextet21.6Swing Low, Sweet Cadillac2:57358566Dizzy Gillespie Sextet21.7Bopsie’s Blues2:34358566Dizzy Gillespie Sextet21.8I Couldn’t Beat The Rap2:58358566Dizzy Gillespie Sextet21.9Caravan2:54358566Dizzy Gillespie Sextet21.10Nobody Knows2:36358566Dizzy Gillespie Sextet21.11The Bluest Blues2:53358566Dizzy Gillespie Sextet21.12On The Sunny Side Of The Street3:06358566Dizzy Gillespie Sextet21.13Stardust3:04358566Dizzy Gillespie Sextet21.14Time On My Hands2:22358566Dizzy Gillespie Sextet21.15Blue Skies2:07327344Dizzy Gillespie Quintet21.16Umbrella Man2:26327344Dizzy Gillespie Quintet21.17Pops’ Confessin’3:33327344Dizzy Gillespie Quintet21.18Oo-Shoo-Be-Doo-Be3:20327344Dizzy Gillespie Quintet21.19They Can’t Take That Away From Me3:42327344Dizzy Gillespie QuintetCD 22 > Bebop Story - Dizzy Gillespie (Vol. 7) - 1952-5322.1How High The Moon3:163388009Dizzy Gillespie's Cool Jazz Stars22.2Indiana3:193388009Dizzy Gillespie's Cool Jazz Stars22.3Muskrat Ramble3:053388009Dizzy Gillespie's Cool Jazz Stars22.4Battle Of Blues3:063388009Dizzy Gillespie's Cool Jazz Stars22.5The Girl Of My Dreams3:18376337Dizzy Gillespie - Stan Getz Sextet22.6It Don’t Mean A Thing6:37376337Dizzy Gillespie - Stan Getz Sextet22.7It’s The Talk Of The Town6:49376337Dizzy Gillespie - Stan Getz Sextet22.8Siboney (Part 1)4:24376337Dizzy Gillespie - Stan Getz Sextet22.9Siboney (Part 2)4:10376337Dizzy Gillespie - Stan Getz Sextet22.10Exactly Like You4:59376337Dizzy Gillespie - Stan Getz Sextet22.11I Let A Song Go Out Of My Heart6:16376337Dizzy Gillespie - Stan Getz Sextet22.12Impromptu7:48376337Dizzy Gillespie - Stan Getz SextetCD 23 > Bebop Story - Charlie Parker (Vol. 1) - 1944-4523.1Tiny's Tempo2:53446631Tiny Grimes Quintet23.2I'll Always Love You Just The Same2:59446631Tiny Grimes Quintet23.3Romance Without Finance3:02446631Tiny Grimes Quintet23.4Red Cross3:07446631Tiny Grimes Quintet23.5Round Midnight (Theme)0:19368185Cootie Williams And His Orchestra23.6Seven Eleven (Roll ‘Em)3:07368185Cootie Williams And His Orchestra23.7Do Nothin' 'Till You Hear From Me4:23368185Cootie Williams And His Orchestra23.8Don't Blame Me3:59368185Cootie Williams And His Orchestra23.9Perdido4:08368185Cootie Williams And His Orchestra23.10Night Cap4:59368185Cootie Williams And His Orchestra23.11Saturday Night Is The Loniest Night3:19368185Cootie Williams And His Orchestra23.12Floogie Boo4:13368185Cootie Williams And His Orchestra23.13St. Louis Blues1:54368185Cootie Williams And His Orchestra23.14Takin' Off3:06374828Sir Charles And His All Stars23.15If I Had You3:00374828Sir Charles And His All Stars23.1620th Century Beat2:54374828Sir Charles And His All Stars23.17The Street Beat2:30374828Sir Charles And His All StarsCD 24 > Bebop Story - Charlie Parker (Vol. 2) - 1946-4724.1Moose The Mooche2:58272020The Charlie Parker Septet24.2Moose The Mooche3:03272020The Charlie Parker Septet24.3Yardbird Suite2:40272020The Charlie Parker Septet24.4Yardbird Suite2:54272020The Charlie Parker Septet24.5Ornithology3:01272020The Charlie Parker Septet24.6Ornithology (Bird Lore)3:16272020The Charlie Parker Septet24.7Ornithology2:59272020The Charlie Parker Septet24.8Famous Alto Break0:48272020The Charlie Parker Septet24.9A Night In Tunisia3:06272020The Charlie Parker Septet24.10A Night In Tunisia3:03272020The Charlie Parker Septet24.11Max (Is) Making Wax2:31272020The Charlie Parker Septet24.12Lover Man3:20272020The Charlie Parker Septet24.13The Gypsy3:02272020The Charlie Parker Septet24.14Be-Bop2:54272020The Charlie Parker Septet24.15Trumpet At Tempo (Indiana)2:45272026Howard McGhee24.16Thermodynamics3:05272026Howard McGhee24.17Home Cookin' I (Opus)2:22272022The Charlie Parker Quartet24.18Home Cookin' II (Cherokee)2:06272022The Charlie Parker Quartet24.19Home Cookin' III (I Got Rhythm)2:27272022The Charlie Parker QuartetCD 25 > Bebop Story - Charlie Parker (Vol. 3) - 194725.1This Is Always3:13272022The Charlie Parker Quartet25.2Dark Shadows3:05272022The Charlie Parker Quartet25.3This Is Always3:09272022The Charlie Parker Quartet25.4Dark Shadows4:02272022The Charlie Parker Quartet25.5Dark Shadows3:10272022The Charlie Parker Quartet25.6Bird's Nest2:51272022The Charlie Parker Quartet25.7Bird's Nest2:41272022The Charlie Parker Quartet25.8Cool Blues3:08272022The Charlie Parker Quartet25.9Bird's Nest2:49272022The Charlie Parker Quartet25.10Hot Blues1:58272022The Charlie Parker Quartet25.11Blowtop Blues2:23272022The Charlie Parker Quartet25.12Cool Blues2:50272022The Charlie Parker Quartet25.13Relaxin' At The Camarillo3:07808788Charlie Parker's New Stars25.14Relaxin' At The Camarillo3:05808788Charlie Parker's New Stars25.15Cheers3:04808788Charlie Parker's New Stars25.16Carvin' The Bird2:44808788Charlie Parker's New Stars25.17Stupendous2:53808788Charlie Parker's New Stars25.18Relaxin' At The Camarillo3:01808788Charlie Parker's New Stars25.19Relaxin' At The Camarillo2:58808788Charlie Parker's New Stars25.20Cheers3:08808788Charlie Parker's New Stars25.21Carvin' The Bird2:45808788Charlie Parker's New Stars25.22Stupendous2:53808788Charlie Parker's New StarsCD 26 > Charlie Parker (Vol. 4) - 194726.1Donna Lee2:31272024The Charlie Parker All-Stars26.2Chasing The Bird2:43272024The Charlie Parker All-Stars26.3Cheryl2:56272024The Charlie Parker All-Stars26.4Buzzy2:27272024The Charlie Parker All-Stars26.5Dexterity2:57272028The Charlie Parker Quintet26.6Dexterity2:58272028The Charlie Parker Quintet26.7Bongo Bop2:44272028The Charlie Parker Quintet26.8Bongo Bop2:44272028The Charlie Parker Quintet26.9Dewey Square3:29272028The Charlie Parker Quintet26.10Dewey Square3:02272028The Charlie Parker Quintet26.11Dewey Square3:08272028The Charlie Parker Quintet26.12The Hymn2:32272028The Charlie Parker Quintet26.13The Hymn2:28272028The Charlie Parker Quintet26.14Bird Of Paradise3:08272028The Charlie Parker Quintet26.15Bird Of Paradise3:10272028The Charlie Parker Quintet26.16Bird Of Paradise3:11272028The Charlie Parker Quintet26.17Embraceable You3:47272028The Charlie Parker Quintet26.18Embraceable You3:23272028The Charlie Parker QuintetCD 27 > Bebop Story - Charlie Parker (Vol. 5) - 194727.1Bird Feathers2:51272028The Charlie Parker Quintet27.2Klact-Oveeseds-Tene3:05272028The Charlie Parker Quintet27.3Klact-Oveeseds-Tene3:06272028The Charlie Parker Quintet27.4Scrapple From The Apple2:39272028The Charlie Parker Quintet27.5Scrapple From The Apple2:58272028The Charlie Parker Quintet27.6My Old Flame3:14272028The Charlie Parker Quintet27.7Out Of Nowhere4:03272028The Charlie Parker Quintet27.8Out Of Nowhere3:50272028The Charlie Parker Quintet27.9Don’t Blame Me2:47272028The Charlie Parker Quintet27.10Drifting On A Reed2:57272027The Charlie Parker Sextet27.11Drifting On A Reed2:53272027The Charlie Parker Sextet27.12Drifting On A Reed2:53272027The Charlie Parker Sextet27.13Quasimado2:55272027The Charlie Parker Sextet27.14Quasimado2:53272027The Charlie Parker Sextet27.15Charlie’s Wig2:46272027The Charlie Parker Sextet27.16Charlie’s Wig2:46272027The Charlie Parker Sextet27.17Charlie’s Wig2:42272027The Charlie Parker Sextet27.18Bird Feathers2:58272027The Charlie Parker Sextet27.19Bird Feathers2:58272027The Charlie Parker Sextet27.20Crazeology2:58272027The Charlie Parker Sextet27.21Crazeology2:58272027The Charlie Parker Sextet27.22How Deep Is The Ocean3:23272027The Charlie Parker Sextet27.23How Deep Is The Ocean3:07272027The Charlie Parker SextetCD 28 > Bebop Story - Charlie Parker (Vol. 6) - 1947-4928.1The Bird4:45272022The Charlie Parker Quartet28.2Repetition2:5775617Charlie Parker With 430844Neal Hefti's OrchestraNeal Hefti Orchestra28.3Another Hair-Do2:36272024The Charlie Parker All-Stars28.4Blue Bird2:48272024The Charlie Parker All-Stars28.5Klaunstance2:43272024The Charlie Parker All-Stars28.6Bird Gets The Worm2:34272024The Charlie Parker All-Stars28.7Barbados2:28272024The Charlie Parker All-Stars28.8Ah-Leu-Cha2:53272024The Charlie Parker All-Stars28.9Constellation2:25272024The Charlie Parker All-Stars28.10Parker's Mood3:02272024The Charlie Parker All-Stars28.11Perhaps2:34272024The Charlie Parker All-Stars28.12Marmaduke2:42272024The Charlie Parker All-Stars28.13Steeplechase3:03272024The Charlie Parker All-Stars28.14Merry-Go-Round2:25272024The Charlie Parker All-Stars28.15No Noise (Part 1 & 2)5:55272355Machito And His Orchestra28.16Mango Mangue (band: v)2:54272355Machito And His Orchestra28.17Okiedoke3:02272355Machito And His Orchestra28.18Cardboard3:09340586Charlie Parker And His Orchestra28.19Visa2:58340586Charlie Parker And His Orchestra28.20Segment3:20340586Charlie Parker And His Orchestra28.21Diverse3:17340586Charlie Parker And His Orchestra28.22Passport2:55340586Charlie Parker And His Orchestra28.23Passport2:59340586Charlie Parker And His OrchestraCD 29 > Bebop Story - Charlie Parker (Vol. 7) - 1949-5029.1Just Friends3:30753336Charlie Parker With Strings29.2Everything Happens To Me3:16753336Charlie Parker With Strings29.3April In Paris3:06753336Charlie Parker With Strings29.4Summertime2:46753336Charlie Parker With Strings29.5I Didn’t Know What Time It Was3:12753336Charlie Parker With Strings29.6If I Should Lose You2:47753336Charlie Parker With Strings29.7Star Eyes3:29272022The Charlie Parker Quartet29.8Blues (Fast)2:46272022The Charlie Parker Quartet29.9I’m In The Mood For Love2:52272022The Charlie Parker Quartet29.10Dancing In The Dark3:10753336Charlie Parker With Strings29.11Out Of Nowhere3:07753336Charlie Parker With Strings29.12Laura2:58753336Charlie Parker With Strings29.13East Of The Sun3:40753336Charlie Parker With Strings29.14They Can’t Take That Away From Me3:18753336Charlie Parker With Strings29.15Easy To Love3:30753336Charlie Parker With Strings29.16I’m In The Mood For Love3:34753336Charlie Parker With Strings29.17I’ll Remember April3:03753336Charlie Parker With Strings29.18What Is This Thing Called Love2:54753336Charlie Parker With Strings29.19April In Paris3:12753336Charlie Parker With Strings29.20Repetition2:48753336Charlie Parker With Strings29.21Easy To Love2:24753336Charlie Parker With Strings29.22Rocker3:12753336Charlie Parker With StringsCD 30 > Bebop Story - Charlie Parker (Vol. 8) - 1950-5130.1Celebrity1:3475617Charlie Parker& 57620Buddy Rich/ 251769Coleman Hawkins30.2Ballade2:5575617Charlie Parker& 57620Buddy Rich/ 251769Coleman Hawkins30.3Afro-Cuban Suite17:14272355Machito And His Orchestra30.4Au Privave2:39340586Charlie Parker And His Orchestra30.5Au Privave2:44340586Charlie Parker And His Orchestra30.6She Rote3:10340586Charlie Parker And His Orchestra30.7She Rote3:10340586Charlie Parker And His Orchestra30.8K.C. Blues3:25340586Charlie Parker And His Orchestra30.9Star Eyes3:35340586Charlie Parker And His Orchestra30.10My Little Suede Shoes3:04272354Charlie Parker's Jazzers30.11Un Poquito De Tu Amor2:41272354Charlie Parker's Jazzers30.12Tico Tico2:45272354Charlie Parker's Jazzers30.13Fiesta2:50272354Charlie Parker's Jazzers30.14Why Do I Love You?2:59272354Charlie Parker's Jazzers30.15Why Do I Love You?3:06272354Charlie Parker's JazzersCD 31 > Bebop Story - Charlie Parker (Vol. 9) - 1951-5231.1Blues For Alice2:47340586Charlie Parker And His Orchestra31.2Si Si2:39340586Charlie Parker And His Orchestra31.3Swedish Schnapps3:15340586Charlie Parker And His Orchestra31.4Swedish Schnapps3:15340586Charlie Parker And His Orchestra31.5Back Home Blues2:37340586Charlie Parker And His Orchestra31.6Back Home Blues2:47340586Charlie Parker And His Orchestra31.7Loverman3:22340586Charlie Parker And His Orchestra31.8Temptation3:31753336Charlie Parker With Strings31.9Lover3:07753336Charlie Parker With Strings31.10Autumn In New York3:29753336Charlie Parker With Strings31.11Stella By Starlight2:56753336Charlie Parker With Strings31.12Mama Inez2:50272028The Charlie Parker Quintet31.13La Cucaracha2:43272028The Charlie Parker Quintet31.14Estrellita2:44272028The Charlie Parker Quintet31.15Begin The Beguine3:12272028The Charlie Parker Quintet31.16La Paloma2:41272028The Charlie Parker Quintet31.17Night And Day2:51340586Charlie Parker And His Orchestra31.18Almost Like Being In Love2:34340586Charlie Parker And His Orchestra31.19I Can’t Get Started3:08340586Charlie Parker And His Orchestra31.20What Is This Thing Called Love2:37340586Charlie Parker And His Orchestra31.21The Song Is You2:57272022The Charlie Parker Quartet31.22Laird Baird2:45272022The Charlie Parker Quartet31.23Kim2:59272022The Charlie Parker Quartet31.24Kim2:58272022The Charlie Parker Quartet31.25Cosmic Rays3:05272022The Charlie Parker QuartetCD 32 > Bebop Story - Charlie Parker (Vol. 10) - 1953-5432.1Compulsion5:47260757The Miles Davis Sextet32.2The Serpent’s Tooth7:01260757The Miles Davis Sextet32.3The Serpent’s Tooth6:18260757The Miles Davis Sextet32.4‘Round About Midnight7:05260757The Miles Davis Sextet32.5In The Still Of The Night3:23340586Charlie Parker And His Orchestra32.6Old Folks3:35340586Charlie Parker And His Orchestra32.7If I Love Again2:31340586Charlie Parker And His Orchestra32.8Chi Chi2:43272022The Charlie Parker Quartet32.9Chi Chi3:03272022The Charlie Parker Quartet32.10I Remember You3:03272022The Charlie Parker Quartet32.11Now’s The Time3:01272022The Charlie Parker Quartet32.12Confirmation2:58272022The Charlie Parker Quartet32.13I Get A Kick Out Of You3:34272022The Charlie Parker Quartet32.14Just One Of Those Things2:47272022The Charlie Parker Quartet32.15My Heart Belongs To Daddy3:19272022The Charlie Parker Quartet32.16I’ve Got You Under My Skin3:39272022The Charlie Parker Quartet32.17Love For Sale5:34272022The Charlie Parker Quartet32.18I Love Paris5:07272022The Charlie Parker QuartetCD 33 > Bebop Story - Fats Navarro (Vol. 1) - 194633.1Epistrophy2:531771822Kenny Clarke And His 52nd Street Boys33.252nd Street Theme2:481771822Kenny Clarke And His 52nd Street Boys33.3Oop-Bop-Sh-Bam3:021771822Kenny Clarke And His 52nd Street Boys33.4Rue Chaptal (Royal Roost)2:541771822Kenny Clarke And His 52nd Street Boys33.5Boppin' A Riff (Part 1)3:02997088Be Bop Boys33.6Boppin' A Riff (Part 2)2:33997088Be Bop Boys33.7Fat Boy (Part 1)2:59997088Be Bop Boys33.8Fat Boy (Part 2)2:44997088Be Bop Boys33.9Everything's Cool (Part 1)2:58997088Be Bop Boys33.10Everything's Cool (Part 2)2:54997088Be Bop Boys33.11Webb City (Part 1)3:00997088Be Bop Boys33.12Webb City (Part 2)2:39997088Be Bop Boys33.13Callin’ Dr. Jazz2:48375012Eddie Davis And His Beboppers33.14Fracture2:51375012Eddie Davis And His Beboppers33.15Hollerin' And Screaming2:40375012Eddie Davis And His Beboppers33.16Stealin' Trash2:48375012Eddie Davis And His Beboppers33.17Just A Mystery2:14375012Eddie Davis And His Beboppers33.18Red Pepper3:04375012Eddie Davis And His Beboppers33.19Spinal2:31375012Eddie Davis And His Beboppers33.20Maternity3:00375012Eddie Davis And His BeboppersCD 34 > Bebop Story - Fats Navarro (Vol. 2) - 194734.1Fat Girl2:19446638Fats Navarro And His Thin Men34.2Ice Freezes Red2:39446638Fats Navarro And His Thin Men34.3Eb-Pob2:24446638Fats Navarro And His Thin Men34.4Goin' To Minton’s2:53446638Fats Navarro And His Thin Men34.5The Chase2:59317882The Tadd Dameron Sextet34.6The Chase2:44317882The Tadd Dameron Sextet34.7The Squirrel2:59317882The Tadd Dameron Sextet34.8The Squirrel3:20317882The Tadd Dameron Sextet34.9Our Delight2:58317882The Tadd Dameron Sextet34.10Our Delight3:04317882The Tadd Dameron Sextet34.11Dameronia3:12317882The Tadd Dameron Sextet34.12Dameronia3:00317882The Tadd Dameron Sextet34.13A Be-Bop Carroll2:581339491Tadd Dameron And His Band34.14The Tadd Walk2:511339491Tadd Dameron And His Band34.15Gone With The Wind3:101339491Tadd Dameron And His Band34.16That Someone Must Be You3:001339491Tadd Dameron And His Band34.1752nd Street Theme1:4774853Barry Ulanov And His All Star Metronome Jazzmen34.18Donna Lee2:23774853Barry Ulanov And His All Star Metronome Jazzmen34.19Everything I Have Is Yours3:06774853Barry Ulanov And His All Star Metronome Jazzmen34.20Fats Flats (Hot House)2:27774853Barry Ulanov And His All Star Metronome Jazzmen34.21Tea For Two2:43774853Barry Ulanov And His All Star Metronome Jazzmen34.22Don't Blame Me3:10774853Barry Ulanov And His All Star Metronome Jazzmen34.23Groovin' High3:12774853Barry Ulanov And His All Star Metronome Jazzmen34.24Koko into: Anthropology6:57774853Barry Ulanov And His All Star Metronome JazzmenCD 35 > Bebop Story - Fats Navarro (Vol. 3) - 1947-4835.1Nostalgia2:423450500Fats Navarro And His Band35.2Barry's Bop2:383450500Fats Navarro And His Band35.3Bebop Romp2:353450500Fats Navarro And His Band35.4Fats Blows2:493450500Fats Navarro And His Band35.5April In Paris3:081514279Coleman Hawkins All Stars35.6How Strange3:011514279Coleman Hawkins All Stars35.7Half Step Down, Please3:021514279Coleman Hawkins All Stars35.8Angel Face3:121514279Coleman Hawkins All Stars35.9Jumpin' For Jane3:081514279Coleman Hawkins All Stars35.10I Love You2:511514279Coleman Hawkins All Stars35.11Dexter's Mood2:53374826Dexter Gordon And His Boys35.12Dextrose3:04374826Dexter Gordon And His Boys35.13Index2:49374826Dexter Gordon And His Boys35.14Dextivity3:00374826Dexter Gordon And His Boys35.15Anthropology3:40694904Tadd Dameron Quintet35.16The Kitchenette Across The Hall1:37694904Tadd Dameron Quintet35.17Lady Be Good3:08694904Tadd Dameron Quintet35.18The Squirrel2:49694904Tadd Dameron Quintet35.19Good Bait4:58694904Tadd Dameron Quintet35.20Pennies From Heaven4:29694904Tadd Dameron QuintetCD 36 > Bebop Story - Fats Navarro (Vol. 4) - 194836.1The Tadd Walk3:30317882The Tadd Dameron Sextet36.2Symphonette4:08317882The Tadd Dameron Sextet36.3The Squirrel3:44317882The Tadd Dameron Sextet36.4Stealin’ Apples3:08374832Benny Goodman Septet36.5Jabhero3:02317882The Tadd Dameron Sextet36.6Jabhero2:54317882The Tadd Dameron Sextet36.7Lady Bird2:50317882The Tadd Dameron Sextet36.8Lady Bird2:51317882The Tadd Dameron Sextet36.9Symphonette3:07317882The Tadd Dameron Sextet36.10Symphonette3:05317882The Tadd Dameron Sextet36.11I Think I'll Go Away3:15317882The Tadd Dameron Sextet36.12Good Bait6:30317882The Tadd Dameron Sextet36.13The Squirrel4:02317882The Tadd Dameron Sextet36.14Tadd Walk4:311339486Tadd Dameron Septet36.15Dameronia5:141339486Tadd Dameron Septet36.16The Skunk2:571220318McGhee-Navarro Boptet36.17The Skunk3:021220318McGhee-Navarro Boptet36.16Boperation3:081220318McGhee-Navarro Boptet36.19Double Talk (Part 1 & 2)3:331220318McGhee-Navarro Boptet36.20Double Talk (Part 1 & 2)5:201220318McGhee-Navarro BoptetCD 37 > Bebop Story - Fats Navarro (Vol. 5) - 1948-4937.1Anthropology 4:511339486Tadd Dameron Septet37.2Our Delight 4:061339486Tadd Dameron Septet37.3The Tadd Walk 5:181339486Tadd Dameron Septet37.4Our Delight 4:131339486Tadd Dameron Septet37.5Good Bait 5:471339486Tadd Dameron Septet37.6Eb-Pob 5:591339486Tadd Dameron Septet37.7The Squirrel 4:201339486Tadd Dameron Septet37.8Guilty 3:02311724Fats Navarro Quintet37.9Yardbird Suite (A Be Bop Ballad) 2:32311724Fats Navarro Quintet37.10A Stranger In Town 3:01311724Fats Navarro Quintet37.11As Time Goes By 3:01311724Fats Navarro Quintet37.12Move 2:36311724Fats Navarro Quintet37.13Move 2:34311724Fats Navarro Quintet37.14Sid's Delight 2:54344335Tadd Dameron And His Orchestra37.15Casbah 2:59344335Tadd Dameron And His Orchestra37.16Wailing Wall 3:45311724Fats Navarro Quintet37.17Go 3:24311724Fats Navarro Quintet37.18Go 3:27311724Fats Navarro Quintet37.19Infatuation 3:36311724Fats Navarro Quintet37.20Stop 4:02311724Fats Navarro QuintetCD 38 > Bebop Story - Fats Navarro (Vol. 6) - 1949-5038.1Bouncing With Bud3:13446633Bud Powell's Modernists38.2Bouncing With Bud3:02446633Bud Powell's Modernists38.3Bouncing With Bud3:05446633Bud Powell's Modernists38.4Wail2:41446633Bud Powell's Modernists38.5Wail3:05446633Bud Powell's Modernists38.6Dance Of The Infidels2:52446633Bud Powell's Modernists38.7Dance Of The Infidels2:50446633Bud Powell's Modernists38.852nd Street Theme2:49446633Bud Powell's Modernists38.952nd Street Theme1:39272028The Charlie Parker Quintet38.10Wahoo6:33272028The Charlie Parker Quintet38.11‘Round Midnight5:06272028The Charlie Parker Quintet38.12This Time The Dream’s On Me6:16272028The Charlie Parker Quintet38.13Dizzy Atmosphere6:49272028The Charlie Parker Quintet38.14A Night In Tunisia5:36272028The Charlie Parker Quintet38.15Move & 52nd Street Theme6:28272028The Charlie Parker QuintetCD 39 > Bebop Story - Fats Navarro (Vol. 7) - 195039.1The Street Beat9:23272028The Charlie Parker Quintet39.2Out Of Nowhere6:18272028The Charlie Parker Quintet39.3Little Willie Leaps & 52nd Street Theme5:20272028The Charlie Parker Quintet39.4Ornithology0:21272028The Charlie Parker Quintet39.5I’ll Remember April7:41272028The Charlie Parker Quintet39.652nd Street Theme9:28272028The Charlie Parker Quintet39.7Embraceable You6:19272028The Charlie Parker Quintet39.8Cool Blues6:39272028The Charlie Parker Quintet39.952nd Street Theme2:09272028The Charlie Parker QuintetCD 40 > Bebop Story - Dexter Gordon (Vol. 1) - 1944-4740.1I’ve Found A New Baby4:38374827Dexter Gordon Quintet40.2Rosetta5:06374827Dexter Gordon Quintet40.3Sweet Lorraine4:53374827Dexter Gordon Quintet40.4Blowed And Gone4:42374827Dexter Gordon Quintet40.5Blow, Mr. Dexter2:571697106Dexter Gordon Quartet40.6Dexter's Deck2:551697106Dexter Gordon Quartet40.7Dexter's Cuttin' Out3:081697106Dexter Gordon Quartet40.8Dexter's Minor Mad2:401697106Dexter Gordon Quartet40.9Long Tall Dexter3:00374827Dexter Gordon Quintet40.10Dexter Rides Again3:12374827Dexter Gordon Quintet40.11I Can't Escape From You3:14374827Dexter Gordon Quintet40.12Dexter Digs In2:55374827Dexter Gordon Quintet40.13Mischievous Lady2:39145263Dexter Gordon40.14Mischievous Lady2:32145263Dexter Gordon40.15Lullaby In Rhythm2:54145263Dexter Gordon40.16Lullaby In Rhythm2:55145263Dexter Gordon40.17The Chase (Part. 1 & 2)6:16145263Dexter Gordon40.18Iridescene2:43145263Dexter Gordon40.19It's The Talk Of The Town3:22145263Dexter Gordon40.20Blues Bikini3:33145263Dexter GordonCD 41 > Bebop Story - Dexter Gordon (Vol. 2) - 1947-5241.1I’ll Follow You2:302570635Red Norvo Septet41.2Bop3:022570635Red Norvo Septet41.3Ghost Of A Chance2:56145263Dexter Gordon41.4Ghost Of A Chance2:57145263Dexter Gordon41.5Sweet And Lovely2:31145263Dexter Gordon41.6Sweet And Lovely2:48145263Dexter Gordon41.7The Duel (Part. 1& 2) (Hornin' In)7:16145263Dexter Gordon41.8The Duel (Part. 1 & 2)5:19145263Dexter Gordon41.9Blues In Teddy's Flat2:58266425Teddy Edwards41.10Settin' The Pace (Part. 2)2:56374827Dexter Gordon Quintet41.11Settin' The Pace (Part. 2)2:56374827Dexter Gordon Quintet41.12So Easy2:41374827Dexter Gordon Quintet41.13Dexter's Riff2:43374827Dexter Gordon Quintet41.14Wee Dot2:42375381Leo Parker's All Stars41.15Solitude2:51375381Leo Parker's All Stars41.16Lion Roars3:00375381Leo Parker's All Stars41.17Mad Lad Boogie2:44375381Leo Parker's All Stars41.18The Rubyait2:562667195Dexter Gordon And His Orchestra41.19The Rubyait3:002667195Dexter Gordon And His Orchestra41.20I Hear You Knockin‘2:362667195Dexter Gordon And His Orchestra41.21My Kinda Love4:162667195Dexter Gordon And His Orchestra41.22Yuletide Jingle Jangle Jump2:282667195Dexter Gordon And His Orchestra41.23Citizen’s Bop2:532667195Dexter Gordon And His Orchestra41.24Man With A Horn3:322667195Dexter Gordon And His OrchestraCD 42 > Bebop Story - Dexter Gordon (Vol. 3) - 1952-5542.1The Chase11:24446664The Just Jazz All Stars42.2The Steeplechase13:42446664The Just Jazz All Stars42.3Silver Plated4:03374827Dexter Gordon Quintet42.4Rhythm Mad4:30374827Dexter Gordon Quintet42.5Bonna Rue6:56374827Dexter Gordon Quintet42.6Cry Me A River3:45374827Dexter Gordon Quintet42.7Don’t Worry ‘Bout Me3:50374827Dexter Gordon Quintet42.8I Hear Music3:42374827Dexter Gordon Quintet42.9I Should Care2:45374827Dexter Gordon Quintet42.10Blowin’ For Dootsie5:37374827Dexter Gordon Quintet42.11Tenderly3:26374827Dexter Gordon QuintetCD 43 > Bebop Story - Wardell Gray (Vol. 1) - 1945-4643.1Furlough Blues2:47341505Earl Hines And His Orchestra43.2Scoops Carey’s Merry2:57341505Earl Hines And His Orchestra43.3Nonchalant Man3:05341505Earl Hines And His Orchestra43.4At The El Grotto3:02341505Earl Hines And His Orchestra43.5Spook’s Ball3:03341505Earl Hines And His Orchestra43.6Rosetta2:55341505Earl Hines And His Orchestra43.7Now That You’re Mine2:50341505Earl Hines And His Orchestra43.8Straight Life2:49341505Earl Hines And His Orchestra43.9Margie2:42341505Earl Hines And His Orchestra43.10I Ain’t Gonna Give Nobody None Of My Jelly Roll2:55341505Earl Hines And His Orchestra43.11Oh, My Aching Back2:57341505Earl Hines And His Orchestra43.12Let’s Get Started3:02341505Earl Hines And His Orchestra43.13Throwing The Switch3:08341505Earl Hines And His Orchestra43.14Trickatrack3:04341505Earl Hines And His Orchestra43.15Bamby2:58341505Earl Hines And His Orchestra43.16Blue Keys2:52341505Earl Hines And His Orchestra43.17Dell’s Bells2:53374916Wardell Gray Quartet43.18One For Prez3:09374916Wardell Gray Quartet43.19The Man I Love3:03374916Wardell Gray Quartet43.20Easy Swing (Steeplechase)2:59374916Wardell Gray Quartet43.21The Great Lie4:41374916Wardell Gray QuartetCD 44 > Bebop Story - Wardell Gray (Vol. 2) - 1948-4944.1Light Gray2:35374916Wardell Gray Quartet44.2Stoned2:48374916Wardell Gray Quartet44.3Stoned2:46374916Wardell Gray Quartet44.4Matter And Mind2:44374916Wardell Gray Quartet44.5The Toup2:36374916Wardell Gray Quartet44.6Ollopa2:50344325J.C. Heard And His Orchestra44.7This Is It3:07344325J.C. Heard And His Orchestra44.8Sugar Hips2:52344325J.C. Heard And His Orchestra44.9Coastin’ With J.C.2:59344325J.C. Heard And His Orchestra44.10Five Star2:504991644Al Haig Quintet44.11Sugar Hill Bop2:284991644Al Haig Quintet44.12In A Pinch3:044991644Al Haig Quintet44.13Talk Of The Town3:064991644Al Haig Quintet44.14Twisted3:04374916Wardell Gray Quartet44.15Twisted3:03374916Wardell Gray Quartet44.16Twisted3:28374916Wardell Gray Quartet44.17Southside2:51374916Wardell Gray Quartet44.18Southside3:20374916Wardell Gray Quartet44.19Easy Living4:37374916Wardell Gray Quartet44.20Easy Living4:23374916Wardell Gray Quartet44.21Sweet Lorraine4:03374916Wardell Gray QuartetCD 45 > Bebop Story - Wardell Gray (Vol. 3) - 1950-5145.1Thrust3:076859698Joe Swanson And His Orchestra45.2East Of The Sun2:436859698Joe Swanson And His Orchestra45.3A Sinner Kissed An Angel3:07374916Wardell Gray Quartet45.4Blue Gray2:43374916Wardell Gray Quartet45.5Grayhound3:01374916Wardell Gray Quartet45.6Treading With Treadwell3:45374916Wardell Gray Quartet45.7One O’Clock Jump3:12267669Count Basie Combo45.8Bass Conversation3:18267669Count Basie Combo45.9I Cried For You3:16267669Count Basie Combo45.10Basie Boogie3:14267669Count Basie Combo45.11Song Of The Islands2:511449358Count Basie Octet45.12These Foolish Things2:591449358Count Basie Octet45.13I’m Confessin’3:111449358Count Basie Octet45.14One O Clock Jump2:561449358Count Basie Octet45.15I Ain’t Got Nobody3:091449358Count Basie Octet45.16Little White Lies3:171449358Count Basie Octet45.17I'll Remember April2:361449358Count Basie Octet45.18Tootie2:501449358Count Basie Octet45.19Howzit2:56253011Count Basie Orchestra45.20Nails3:28253011Count Basie Orchestra45.21Little Pony2:27253011Count Basie Orchestra45.22Beaver Junction2:55253011Count Basie OrchestraCD 46 > Bebop Story - Wardell Gray (Vol. 4) - 1951-5246.1Jumpin’ At The Woodside2:534080190Count Basie And His Septet46.2How High The Moon8:154080190Count Basie And His Septet46.3Bluebeard’s Blues4:504080190Count Basie And His Septet46.4One O’Clock Jump3:514080190Count Basie And His Septet46.5April Skies3:012206367Wardell Gray Sextet46.6Bright Boy2:442206367Wardell Gray Sextet46.7Jackie2:302206367Wardell Gray Sextet46.8Farmer’s Market2:452206367Wardell Gray Sextet46.9Sweet And Lovely3:142206367Wardell Gray Sextet46.10Lover Man2:152206367Wardell Gray Sextet46.11The Jeep Is Jumpin’3:045018852Louis Bellson's Just Jazz All Stars46.12Passion Flower2:445018852Louis Bellson's Just Jazz All Stars46.13Johnny Come Lately2:455018852Louis Bellson's Just Jazz All Stars46.14Sticks3:185018852Louis Bellson's Just Jazz All Stars46.15Punkin’3:195018852Louis Bellson's Just Jazz All Stars46.16Eyes2:395018852Louis Bellson's Just Jazz All Stars46.17Rainbow2:425018852Louis Bellson's Just Jazz All Stars46.18Shadows2:305018852Louis Bellson's Just Jazz All StarsCD 47 > Bebop Story - Wardell Gray (Vol. 5) - 1952-5547.1Donna Lee7:30374915Wardell Gray Quintet47.2Keen And Peachy9:37374915Wardell Gray Quintet47.3Lady Bird8:56374915Wardell Gray Quintet47.4Out Of Nowhere9:43374915Wardell Gray Quintet47.5The Man I Love3:097707734Teddy Charles' West Coasters47.6Lavonne2:577707734Teddy Charles' West Coasters47.7So Long Broadway3:117707734Teddy Charles' West Coasters47.8Paul’s Cause2:587707734Teddy Charles' West Coasters47.9Milt’s Tune4:42307693Frank Morgan47.10Get Happy4:07307693Frank Morgan47.11Neil’s Blues5:10307693Frank Morgan47.12The Champ4:57307693Frank Morgan47.13Sweet Mouth2:342206367Wardell Gray Sextet47.14Blues In The Closet (Oscar’s Blues)2:452206367Wardell Gray Sextet47.15Dat’s It (Gray)2:372206367Wardell Gray Sextet47.16Hey There2:542206367Wardell Gray SextetCD 48 > Bebop Story - Thelonious Monk (Vol. 1) - 1947-4848.1Humph2:52145256Thelonious Monk48.2Evonce3:04145256Thelonious Monk48.3Suburban Eyes3:01145256Thelonious Monk48.4Thelonious3:01145256Thelonious Monk48.5Nice Work If You Can Get It3:01381505Thelonious Monk Trio48.6Ruby My Dear3:08381505Thelonious Monk Trio48.7Well You Needn’t2:59381505Thelonious Monk Trio48.8April In Paris3:19381505Thelonious Monk Trio48.9Introspection3:11381505Thelonious Monk Trio48.10Off Minor3:01381505Thelonious Monk Trio48.11In Walked Bud2:55145256Thelonious Monk48.12Monk’s Mood3:07145256Thelonious Monk48.13Who Knows2:41145256Thelonious Monk48.14‘Round Midnight3:10145256Thelonious Monk48.15All The Things You Are2:58145256Thelonious Monk48.16I Should Care3:00145256Thelonious Monk48.17Evidence2:33145256Thelonious Monk48.18Misterioso3:21145256Thelonious Monk48.19Misterioso2:45145256Thelonious Monk48.20Epistrophy3:07145256Thelonious Monk48.21I Mean You2:44145256Thelonious MonkCD 49 > Bebop Story - Thelonious Monk (Vol. 2) - 1951-5249.1Four In One3:29317876The Thelonious Monk Quintet49.2Four In One3:28317876The Thelonious Monk Quintet49.3Criss Cross2:56317876The Thelonious Monk Quintet49.4Criss Cross2:50317876The Thelonious Monk Quintet49.5Eronel3:02317876The Thelonious Monk Quintet49.6Straight No Chaser2:56317876The Thelonious Monk Quintet49.7Ask Me Now4:27317876The Thelonious Monk Quintet49.8Ask Me Now3:14317876The Thelonious Monk Quintet49.9Willow Weep For Me3:01317876The Thelonious Monk Quintet49.10Skippy2:59375011Thelonious Monk Sextet49.11Skippy3:08375011Thelonious Monk Sextet49.12Hornin’ In3:07375011Thelonious Monk Sextet49.13Hornin’ In3:13375011Thelonious Monk Sextet49.14Sixteen3:29375011Thelonious Monk Sextet49.15Sixteen3:38375011Thelonious Monk Sextet49.16Carolina Moon3:27375011Thelonious Monk Sextet49.17Let’s Cool One3:47375011Thelonious Monk Sextet49.18I’ll Follow You3:46375011Thelonious Monk Sextet49.19Little Rootie Tootie3:05381505Thelonious Monk Trio49.20Sweet And Lovely3:34381505Thelonious Monk Trio49.21Bye-Ya2:45381505Thelonious Monk Trio49.22Monk’s Dream3:05381505Thelonious Monk TrioCD 50 > Bebop Story - Thelonious Monk (Vol. 3) - 1952-5450.1Trinkle Tinkle2:48381505Thelonious Monk Trio50.2These Foolish Things2:45381505Thelonious Monk Trio50.3Bemsha Swing3:11381505Thelonious Monk Trio50.4Reflections2:47381505Thelonious Monk Trio50.5Let’s Call This5:07317876The Thelonious Monk Quintet50.6Think Of One5:39317876The Thelonious Monk Quintet50.7Think Of One5:44317876The Thelonious Monk Quintet50.8Friday The Thirteenth10:33317876The Thelonious Monk Quintet50.9We See5:14317876The Thelonious Monk Quintet50.10Smoke Gets In Your Eyes4:30317876The Thelonious Monk Quintet50.11Locomotive6:21317876The Thelonious Monk Quintet50.12Hackensack3:00317876The Thelonious Monk Quintet50.13Work5:16381505Thelonious Monk Trio50.14Nutty5:14381505Thelonious Monk Trio50.15Blue Monk7:37381505Thelonious Monk Trio50.16Just A Gigolo2:59381505Thelonious Monk TrioCD 51 > Bebop Story - Bud Powell (Vol. 1) - 1945-4951.1The Man I Love3:18997087Frank Socolow's Duke Quintet51.2Reverse The Charges2:53997087Frank Socolow's Duke Quintet51.3September In The Rain2:47997087Frank Socolow's Duke Quintet51.4I’ll Remember April2:42317908The Bud Powell Trio51.5Indiana2:34317908The Bud Powell Trio51.6Somebody Loves Me2:44317908The Bud Powell Trio51.7I Should Care2:51317908The Bud Powell Trio51.8Bud’s Bubble2:26317908The Bud Powell Trio51.9Off Minor2:14317908The Bud Powell Trio51.10Nice Work If You Can Get It2:09317908The Bud Powell Trio51.11Everything Happens To Me2:31317908The Bud Powell Trio51.12Tempus Fugit2:26317908The Bud Powell Trio51.13Celia2:58317908The Bud Powell Trio51.14Cherokee3:37317908The Bud Powell Trio51.15I’ll Keep Loving You2:39317908The Bud Powell Trio51.16Strictly Confidential3:06317908The Bud Powell Trio51.17All God’s Chillun Got Rhythm2:58317908The Bud Powell Trio51.18You Go To My Head3:12317908The Bud Powell Trio51.19Ornithology2:24317908The Bud Powell Trio51.20Ornithology3:09317908The Bud Powell TrioCD 52 > Bebop Story - Bud Powell (Vol. 2) - 1949-5152.1All God’s Children Got Rhythm2:55317908The Bud Powell Trio52.2So Sorry Please3:13317908The Bud Powell Trio52.3Get Happy2:50317908The Bud Powell Trio52.4Sometimes I’m Happy3:36317908The Bud Powell Trio52.5Sweet Georgia Brown2:48317908The Bud Powell Trio52.6Yesterdays2:46317908The Bud Powell Trio52.7April In Paris3:07317908The Bud Powell Trio52.8Body And Soul3:19317908The Bud Powell Trio52.9Hallelujah2:59317908The Bud Powell Trio52.10Tea For Two3:25317908The Bud Powell Trio52.11Tea For Two4:12317908The Bud Powell Trio52.12Tea For Two3:47317908The Bud Powell Trio52.13Oblivion2:2729992Bud Powell52.14Oblivion2:0929992Bud Powell52.15Dusk In Sandi2:1329992Bud Powell52.16Hallucinations (Budo)2:2329992Bud Powell52.17The Fruit3:1729992Bud Powell52.18A Nightingale Sang In Berkely Square3:3929992Bud Powell52.19Just Ane Of Those Things3:5029992Bud Powell52.20The Last Time I Saw Paris3:1629992Bud PowellCD 53 > Bebop Story - Bud Powell (Vol. 3) - 1951-5353.1Un Poco Loco3:48317908The Bud Powell Trio53.2Un Poco Loco4:31317908The Bud Powell Trio53.3Un Poco Loco4:44317908The Bud Powell Trio53.4Over The Rainbow2:57317908The Bud Powell Trio53.5A Night In Tunisia4:14317908The Bud Powell Trio53.6A Night In Tunisia3:51317908The Bud Powell Trio53.7It Could Happen To You2:22317908The Bud Powell Trio53.8Parisian Thoroughfare3:24317908The Bud Powell Trio53.9Cherokee4:5129992Bud Powell53.10Embraceable You4:2129992Bud Powell53.11Jubilee3:5429992Bud Powell53.12Lullaby Of Birdland2:3329992Bud Powell53.13Sure Thing2:1029992Bud Powell53.14I Want To Be Happy3:31317908The Bud Powell Trio53.15I Want To Be Happy4:53317908The Bud Powell TrioCD 54 > Bebop Story - Howard McGhee (Vol. 1) - 194554.1Deep Meditation3:236792209Howard McGhee & His Combo54.2Intersection3:032169955Howard McGhee And His Band54.3Lifestream3:162169955Howard McGhee And His Band54.4Mop-Mop2:532169955Howard McGhee And His Band54.5Stardust2:542169955Howard McGhee And His Band54.6Mad Hype2:36446634Howard McGhee And His Orchestra54.7Swing (Rummage Bounce)2:57446634Howard McGhee And His Orchestra54.8Playboy Blues3:13446634Howard McGhee And His Orchestra54.9Around The Clock, (Part 1)3:00446634Howard McGhee And His Orchestra54.10Around The Clock, (Part 2)3:09446634Howard McGhee And His Orchestra54.11Gee, I’m Lonesome3:24446634Howard McGhee And His Orchestra54.12Call It The Blues2:42446634Howard McGhee And His Orchestra54.13Cool Fantasy, (Part 1)2:48446634Howard McGhee And His Orchestra54.14Cool Fantasy, (Part 2)3:01446634Howard McGhee And His Orchestra54.15McGhee Special2:21446634Howard McGhee And His Orchestra54.16Sweet Potato2:44446634Howard McGhee And His Orchestra54.17Hoggin’2:55446634Howard McGhee And His Orchestra54.18Blues A La King2:56446634Howard McGhee And His Orchestra54.19Night Mist2:28446634Howard McGhee And His OrchestraCD 55 > Bebop Story - Howard McGhee (Vol. 2) - 1946-4855.1Dialated Pupils2:55442988Howard McGhee Sextet55.2Dialated Pupils2:31442988Howard McGhee Sextet55.3Midnight At Minton's2:59442988Howard McGhee Sextet55.4Up In Dodo's Room3:14442988Howard McGhee Sextet55.5High Wind In Hollywood2:37442988Howard McGhee Sextet55.6El Sino3:11375381Leo Parker's All Stars55.7Ineta2:52375381Leo Parker's All Stars55.8Wild Leo2:54375381Leo Parker's All Stars55.9Leaping Leo3:00375381Leo Parker's All Stars55.10Dorothy3:04442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.11Night Mist2:48442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.12Coolie-Rini2:50442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.13Night Music3:25442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.14Turnip Blood2:46442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.15Surrender3:02442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.16Sleepwalker Boogie3:22442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.17Stoptime Blues2:42442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.18You2:42442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.19Hot And Mellow (Yardbird Suite)2:45442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank Jones55.20Messin’ With Fire (Donna Lee)2:11442988Howard McGhee Sextet/ 1877595James Moody And His Orchestra/ 265629Hank JonesCD 56 > Bebop Story - Howard McGhee (Vol. 3) - 1948-4956.1Merry Lee2:05272026Howard McGhee56.2Short Life1:56272026Howard McGhee56.3Talk Of The Town2:50272026Howard McGhee56.4Bass C Jam2:56272026Howard McGhee56.5Down Home2:48272026Howard McGhee56.6Sweet And Lovely3:00272026Howard McGhee56.7Fiesta2:10272026Howard McGhee56.8I’m In The Mood For Love2:55272026Howard McGhee56.9Flip Lip2:31272026Howard McGhee56.10Belle From Bunnycock2:45272026Howard McGhee56.11The Last Word2:23272026Howard McGhee56.12The Man I Love2:47272026Howard McGhee56.13Lean On Me3:11273817Harry Belafonte Acc. By 446634Howard McGhee And His Orchestra56.14Recognition2:52273817Harry Belafonte Acc. By 446634Howard McGhee And His Orchestra56.15Lo-Flame2:48272026Howard McGhee56.16Fuguetta3:08272026Howard McGhee56.17Fluid Drive2:50272026Howard McGhee56.18Meciendo2:34272026Howard McGhee56.19Donnellon Square2:48272026Howard McGhee56.20I’ll Remember April2:50272026Howard McGheeCD 57 > Bebop Story - Teddy Edwards - James Moody - 1947-4857.1Bird Legs2:595094376Teddy Edwards Quintet57.2Out Of Nowhere2:355094376Teddy Edwards Quintet57.3Roy's Boy2:325094376Teddy Edwards Quintet57.4Steady With Teddy2:475094376Teddy Edwards Quintet57.5Rexology2:485094376Teddy Edwards Quintet57.6Three Bass Hit2:355094376Teddy Edwards Quintet57.7R.B.'s Wig2:375094376Teddy Edwards Quintet57.8Body And Soul2:425094376Teddy Edwards Quintet57.9Teddy's Tune2:525094376Teddy Edwards Quintet57.10Wonderful Work2:425094376Teddy Edwards Quintet57.11Fairy Dance2:455094376Teddy Edwards Quintet57.12It's The Talk Of The Town2:475094376Teddy Edwards Quintet57.13The Fuller Bop Man2:581006992James Moody And His Modernists57.14Workshop3:171006992James Moody And His Modernists57.15Oh, Henry2:301006992James Moody And His Modernists57.16Moodamorphosis3:011006992James Moody And His Modernists57.17Tropicana3:011006992James Moody And His Modernists57.18Cu-Ba2:341006992James Moody And His Modernists57.19Moody’s All Frantic2:341006992James Moody And His Modernists57.20Tin Tin Deo2:451006992James Moody And His ModernistsCD 58 > Bebop Story - J.J. Johnson (Vol. 1) - 1946-4958.1Jay Bird2:57743191J.J. Johnson's Boppers58.2Coppin' The Bop2:59743191J.J. Johnson's Boppers58.3Jay Jay3:06743191J.J. Johnson's Boppers58.4Mad Be Bop2:41743191J.J. Johnson's Boppers58.5Bone-o-logy (Boney)2:591881200J.J. Johnson's Bop Quintette58.6Down Vernon's Alley2:341881200J.J. Johnson's Bop Quintette58.7Yesterdays2:581881200J.J. Johnson's Bop Quintette58.8Riffette2:271881200J.J. Johnson's Bop Quintette58.9Audobahn (Audobon)2:46743191J.J. Johnson's Boppers58.10Don't Blame Me2:47743191J.J. Johnson's Boppers58.11Goof Square2:25743191J.J. Johnson's Boppers58.12Bee Jay2:27743191J.J. Johnson's Boppers58.13Elysées2:52743191J.J. Johnson's Boppers58.14Opus V2:38743191J.J. Johnson's Boppers58.15Hi-Lo3:00743191J.J. Johnson's Boppers58.16Fox Hunt2:45743191J.J. Johnson's Boppers58.17Afternoon In Paris3:19743191J.J. Johnson's Boppers58.18Afternoon In Paris3:02743191J.J. Johnson's Boppers58.19Elora3:05743191J.J. Johnson's Boppers58.20Elora3:09743191J.J. Johnson's Boppers58.21Tea Pot2:42743191J.J. Johnson's Boppers58.22Tea Pot3:03743191J.J. Johnson's Boppers58.23Blue Mode2:50743191J.J. Johnson's Boppers58.24Blue Mode2:49743191J.J. Johnson's BoppersCD 59 > Bebop Story, Sonny Stitt & Gene Ammons - 1950-5459.1Bye Bye3:0245107Gene Ammons-135930Sonny Stitt/ 4644251Gene Ammons And His Band/ 1997892Teddy Williams59.2Let It Be3:0745107Gene Ammons-135930Sonny Stitt/ 4644251Gene Ammons And His Band/ 1997892Teddy Williams59.3Blues Up And Down2:3745107Gene Ammons-135930Sonny Stitt/ 4644251Gene Ammons And His Band/ 1997892Teddy Williams59.4You Can Depend On Me2:4945107Gene Ammons-135930Sonny Stitt/ 4644251Gene Ammons And His Band/ 1997892Teddy Williams59.5You Can Depend On Me2:4845107Gene Ammons-135930Sonny Stitt/ 4644251Gene Ammons And His Band/ 1997892Teddy Williams59.6Touch Of The Blues3:0945107Gene Ammons-135930Sonny Stitt/ 4644251Gene Ammons And His Band/ 1997892Teddy Williams59.7Chabootie3:0245107Gene Ammons-135930Sonny Stitt59.8Who Put The Sleeping Pill In Rip Van Winkles’s Coffee?2:3245107Gene Ammons-135930Sonny Stitt59.9Gravy (Walkin’)3:0145107Gene Ammons-135930Sonny Stitt59.10Easy Glide2:5745107Gene Ammons-135930Sonny Stitt59.11I Wanna Be Loved2:311697107Gene Ammons Quartet59.12I Can’t Give You Anything But Love2:391697107Gene Ammons Quartet59.13P.S. I Love You3:00350615Sonny Stitt Quartet59.14This Can’t Be Love2:46350615Sonny Stitt Quartet59.15Cool Mambo2:37375379Sonny Stitt Band59.16Sonny Sounds2:27375379Sonny Stitt Band59.17Blue Mambo2:23375379Sonny Stitt Band59.18Stitt’s It2:33375379Sonny Stitt Band59.19Later3:00350615Sonny Stitt Quartet59.20Ain’t Misbehavin’3:13350615Sonny Stitt QuartetCD 60 > Bebop Story - Sonny Stitt (Vol. 1) - 1946-5060.1Bebop In Pastel2:56997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.2Fools Fancy2:34997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.3Bombay2:53997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.4Ray's Idea2:44997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.5Serenade To A Square2:34997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.6Good Kick2:37997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.7Seven Up2:29997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.8Blues In Bebop2:43997089Sonny Stitt All Stars/ 5333298The Be Bop Boys60.9Stardust2:164518737Lord Nelson And His Boppers/ 149254Milt Jackson& 135930Sonny Stitt60.10Red Shoes2:194518737Lord Nelson And His Boppers/ 149254Milt Jackson& 135930Sonny Stitt60.11Body And Soul2:214518737Lord Nelson And His Boppers /149254Milt Jackson& 135930Sonny Stitt60.12Ratio And Proportion2:144518737Lord Nelson And His Boppers /149254Milt Jackson& 135930Sonny Stitt60.13Royal Wedding2:24149254Milt Jackson&135930Sonny Stitt60.14Be Bop Blues2:12149254Milt Jackson&135930Sonny Stitt60.15Fine And Dandy2:20149254Milt Jackson&135930Sonny Stitt60.16Third Song (Silver Slipper)2:16149254Milt Jackson&135930Sonny Stitt60.17All God's Chillun Got Rhythm2:58350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.18Sonny Side2:20350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.19Bud's Blues2:33350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.20Sunset3:45350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.21Strike Up The Band2:54350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.22I Want To Be Happy3:10350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.23Taking A Chance On Love2:33350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.24Fine And Dandy2:41350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell Quartet60.25Fine And Dandy2:41350615Sonny Stitt Quartet/ 135930Sonny Stitt/ 3987649Bud Powell QuartetCD 61 > Bebop Story - Sonny Stitt (Vol. 2) - 1950-5161.1Avalon2:29350615Sonny Stitt Quartet61.2Later3:01350615Sonny Stitt Quartet61.3Ain’t Misbehavin’3:03350615Sonny Stitt Quartet61.4Mean To Me3:07350615Sonny Stitt Quartet61.5Stairway To The Stars3:17350615Sonny Stitt Quartet61.6Count Every Star3:00350615Sonny Stitt Quartet61.7Nice Work If You Can Get It2:40350615Sonny Stitt Quartet61.8There’ll Never Ne Another You2:33350615Sonny Stitt Quartet61.9Blazin’3:24350615Sonny Stitt Quartet61.10To Think You’ve Chosen Me3:00375379Sonny Stitt Band61.11After You’ve Gone2:29375379Sonny Stitt Band61.12Our Very Own3:09375379Sonny Stitt Band61.13’S Wonderful2:28375379Sonny Stitt Band61.14Nevertheless2:52350615Sonny Stitt Quartet61.15Jeepers Creepers2:56350615Sonny Stitt Quartet61.16Imagination3:25350615Sonny Stitt Quartet61.17Cherokee2:32350615Sonny Stitt Quartet61.18Liza2:46350615Sonny Stitt Quartet61.19Can’t We Be Friends2:41350615Sonny Stitt Quartet61.20The Thrill Of Your Kiss2:421205095Sonny Stitt And His Orchestra61.21If The Moon Turns Green2:431205095Sonny Stitt And His OrchestraCD 62 > Bebop Story - Milt Jackson62.1Bobbin’ With Robin (Baggy’s Blues)2:39743240Milt Jackson And His All Stars62.2Autumn Breeze (In A Beautiful Mood)2:53743240Milt Jackson And His All Stars62.3Slits2:32743240Milt Jackson And His All Stars62.4Baggy Eyes2:22743240Milt Jackson And His All Stars62.5Hearing Bells2:353779223Milton Jackson And His New Group62.6Junior2:353779223Milton Jackson And His New Group62.7Junior2:333779223Milton Jackson And His New Group62.8Bluesology2:473779223Milton Jackson And His New Group62.9Bluesology2:483779223Milton Jackson And His New Group62.10Bubu2:333779223Milton Jackson And His New Group62.11Milt Meets Sid3:06603682The Milt Jackson Quartet62.12D And E2:54603682The Milt Jackson Quartet62.13Yesterdays2:29603682The Milt Jackson Quartet62.14Between The Devil And The Deep Blue Sea2:35603682The Milt Jackson Quartet62.15Autumn Breeze2:55603682The Milt Jackson Quartet62.16Moving Nicely3:14603682The Milt Jackson Quartet62.17Round About Midnight2:56603682The Milt Jackson Quartet62.18Bluesology2:47603682The Milt Jackson Quartet62.19Softly As In A Morning Sunrise3:30603682The Milt Jackson Quartet62.20Love Me Pretty Baby3:37603682The Milt Jackson Quartet62.21Heart And Soul2:30603682The Milt Jackson Quartet62.22True Blues3:00603682The Milt Jackson QuartetCD 63 > Bebop Story - Miles Davis (Vol. 1) - 1945-4863.1That's The Stuff You Gotta Watch3:183940118Rubberlegs Williams & His Orchestra63.2Pointless Mama2:523940118Rubberlegs Williams & His Orchestra63.3Deep Sea Blues3:173940118Rubberlegs Williams & His Orchestra63.4Bring It On Home2:513940118Rubberlegs Williams & His Orchestra63.5Milestones2:39262586Miles Davis All Stars63.6Milestones2:49262586Miles Davis All Stars63.7Little Willie Leaps3:13262586Miles Davis All Stars63.8Little Willie Leaps2:55262586Miles Davis All Stars63.9Half Nelson2:55262586Miles Davis All Stars63.10Half Nelson2:48262586Miles Davis All Stars63.11Sippin’ At Bells2:27262586Miles Davis All Stars63.12Sippin’ At Bells2:28262586Miles Davis All Stars63.13Move3:43497768The Miles Davis Nonet63.14Why Do I Love You?3:42497768The Miles Davis Nonet63.15God Child5:52497768The Miles Davis Nonet63.16S’il Vous Plait4:23497768The Miles Davis Nonet63.17Moondreams3:08497768The Miles Davis Nonet63.18Hallucinations (Budo)3:26497768The Miles Davis Nonet63.19Darn That Dream4:24497768The Miles Davis Nonet63.20Move4:49497768The Miles Davis Nonet63.21Moondreams3:47497768The Miles Davis Nonet63.22Hallucinations (Budo)4:21497768The Miles Davis NonetCD 64 > Bebop Story - Miles Davis (Vol. 2) - 1949-5064.1Jeru 3:14497768The Miles Davis Nonet64.2Move 2:34497768The Miles Davis Nonet64.3Godchild 3:10497768The Miles Davis Nonet64.4Budo 2:36497768The Miles Davis Nonet64.5John’s Delight 2:59344335Tadd Dameron And His Orchestra64.6What’s New 3:02344335Tadd Dameron And His Orchestra64.7Heaven’s Doors Are Wide Open 3:20344335Tadd Dameron And His Orchestra64.8Focus 3:00344335Tadd Dameron And His Orchestra64.9Venus De Milo 3:12497768The Miles Davis Nonet64.10Rouge 3:12497768The Miles Davis Nonet64.11Boplicity 3:02497768The Miles Davis Nonet64.12Israel 2:15497768The Miles Davis Nonet64.13Deception2:49497768The Miles Davis Nonet64.14Rocker 3:07497768The Miles Davis Nonet64.15Moon Dreams3:20497768The Miles Davis Nonet64.16Darn That Dream 3:25497768The Miles Davis Nonet64.17Morpheus 2:21260757The Miles Davis Sextet64.18Down 2:50260757The Miles Davis Sextet64.19Blue Room 3:03260757The Miles Davis Sextet64.20Blue Room 2:51260757The Miles Davis Sextet64.21Whispering 3:02260757The Miles Davis Sextet64.22I Know 2:35549499Sonny Rollins QuartetCD 65 > Bebop Story - Miles Davis (Vol. 3) - 1951-5265.1Conception 4:03260757The Miles Davis Sextet65.2Out Of The Blue 6:15260757The Miles Davis Sextet65.3Denial 5:39260757The Miles Davis Sextet65.4Bluing 9:56260757The Miles Davis Sextet65.5Dig 7:34260757The Miles Davis Sextet65.6My Old Flame 6:34260757The Miles Davis Sextet65.7It’s Only A Paper Moon 5:24260757The Miles Davis Sextet65.8Dear Old Stockholm 4:1223755Miles Davis65.9Chance It 3:0323755Miles Davis65.10Donna (Donna Lee) 3:1023755Miles Davis65.11Donna (Donna Lee) 3:1223755Miles Davis65.12Woody’n You 3:2223755Miles Davis65.13Woody’n You 3:2523755Miles Davis65.14Yesterdays 3:4423755Miles Davis65.15How Deep Is The Ocean 4:3823755Miles DavisCD 66 > Bebop Story - Coleman Hawkins – Godfather Of Bop - 1944-4966.1Say It Isn't So2:531273881Coleman Hawkins' 52nd Street All Stars66.2Spotlite3:081273881Coleman Hawkins' 52nd Street All Stars66.3Low Flame3:091273881Coleman Hawkins' 52nd Street All Stars66.4Allen's Alley3:051273881Coleman Hawkins' 52nd Street All Stars66.5I Mean You3:05373805Coleman Hawkins And His Orchestra66.6Bean And The Boys2:41373805Coleman Hawkins And His Orchestra66.7Bean And The Boys2:45373805Coleman Hawkins And His Orchestra66.8You Go To My Head3:04373805Coleman Hawkins And His Orchestra66.9Cocktails For Two3:05373805Coleman Hawkins And His Orchestra66.10Bean-A-Re-Bop2:361514279Coleman Hawkins All Stars66.11Isn't It Romantic3:071514279Coleman Hawkins All Stars66.12The Way You Look Tonight2:501514279Coleman Hawkins All Stars66.13Phantomesque2:571514279Coleman Hawkins All Stars66.14The Big Head3:231514279Coleman Hawkins All Stars66.15Skippy3:351514279Coleman Hawkins All Stars66.16Platinum Love3:271514279Coleman Hawkins All Stars66.17Platinum Love3:261514279Coleman Hawkins All Stars66.18There’s A Small Hotel3:021514279Coleman Hawkins All StarsCD 67 > Bebop Story - Lennie Tristano (Vol. 1) - 1946-4967.1Out On A Limb2:41375009Lennie Tristano Trio67.2I Can’t Get Started2:55375009Lennie Tristano Trio67.3I Surrender Dear3:06375009Lennie Tristano Trio67.4Interlude3:06375009Lennie Tristano Trio67.5I Can’t Get Started2:54375009Lennie Tristano Trio67.6Night In Tunisia2:21375009Lennie Tristano Trio67.7Blue Boy2:49375009Lennie Tristano Trio67.8Atonement2:27375009Lennie Tristano Trio67.9Coolin’ Off With Ulanov2:49375009Lennie Tristano Trio67.10Supersonic3:19375009Lennie Tristano Trio67.11On A Planet3:18375009Lennie Tristano Trio67.12Air Pocket2:45375009Lennie Tristano Trio67.13Celestia2:54375009Lennie Tristano Trio67.14Freedom3:38375009Lennie Tristano Trio67.15Parallel2:28375009Lennie Tristano Trio67.16Apellation1:54375009Lennie Tristano Trio67.17Abstraction2:39375009Lennie Tristano Trio67.18Palimpsest2:37375009Lennie Tristano Trio67.19Dissonance2:37375009Lennie Tristano Trio67.20Through These Portals2:16375009Lennie Tristano Trio67.21Speculation2:24375009Lennie Tristano Trio67.22New Sound2:16375009Lennie Tristano Trio67.23Resemblance2:22375009Lennie Tristano TrioCD 68 > Bebop Story - Lennie Tristano (Vol. 2) - 1949-5568.1Progression2:59375014Lennie Tristano Quintet68.2Tautology2:45375014Lennie Tristano Quintet68.3Retrospection3:07375014Lennie Tristano Quintet68.4Subconscius Lee2:48375014Lennie Tristano Quintet68.5Judy2:53375014Lennie Tristano Quintet68.6Wow3:21375010Lennie Tristano Sextet68.7Crosscurrent2:50375010Lennie Tristano Sextet68.8Yesterdays2:48375016Lennie Tristano Quartet68.9Marionette3:03375010Lennie Tristano Sextet68.10Sax Of A Kind3:00375010Lennie Tristano Sextet68.11Intuition2:27375010Lennie Tristano Sextet68.12Digression3:02375010Lennie Tristano Sextet68.13Ju-Ju2:15375009Lennie Tristano Trio68.14Pastime3:38375009Lennie Tristano Trio68.15Line Up3:32375009Lennie Tristano Trio68.16Requiem4:51375009Lennie Tristano Trio68.17Turkish Mambo3:38375009Lennie Tristano Trio68.18East Thirty-Second4:30375009Lennie Tristano TrioCD 69 > Bebop Story - Metronome All-Stars - 1946-5669.1Sweet Lorraine3:12311056Metronome All Stars69.2Sweet Lorraine3:16311056Metronome All Stars69.3Nat Meets June3:18311056Metronome All Stars69.4Nat Meets June3:11311056Metronome All Stars69.5Leap Here3:21311056Metronome All Stars69.6Metronome Riff2:41311056Metronome All Stars69.7Overtime3:07311056Metronome All Stars69.8Overtime4:35311056Metronome All Stars69.9Victory Ball4:15311056Metronome All Stars69.10Victory Ball2:40311056Metronome All Stars69.11Double Date2:39311056Metronome All Stars69.12No Figs2:52311056Metronome All Stars69.13Billies’s Bounce20:06311056Metronome All StarsCD 70 > Bebop Story - The Boppers In Europe (Vol. 1) - 1947-4870.1Crown Pilots2:512560963Chubby Jackson And His Fifth Dimensional Jazz Group70.2Lemon Drop2:592560963Chubby Jackson And His Fifth Dimensional Jazz Group70.3Begin The Beguine3:022560963Chubby Jackson And His Fifth Dimensional Jazz Group70.4Cryin' Sands2:552560963Chubby Jackson And His Fifth Dimensional Jazz Group70.5Boomsie2:522560963Chubby Jackson And His Fifth Dimensional Jazz Group70.6Dee Dee's Dance2:372560963Chubby Jackson And His Fifth Dimensional Jazz Group70.7Oop-Pop-A-Da4:56284744Dizzy Gillespie And His Orchestra70.8Round Midnight8:51284744Dizzy Gillespie And His Orchestra70.9Algo Bueno (Woody 'N You)3:23284744Dizzy Gillespie And His Orchestra70.10I Can't Get Started3:54284744Dizzy Gillespie And His Orchestra70.11Ool-Ya-Koo5:05284744Dizzy Gillespie And His Orchestra70.12Afro Cuban Suite6:09284744Dizzy Gillespie And His Orchestra70.13Things To Come3:15284744Dizzy Gillespie And His Orchestra70.14Two Bass Hit4:03284744Dizzy Gillespie And His Orchestra70.15Good Bait5:16284744Dizzy Gillespie And His OrchestraCD 71 > Bebop Story - The Boppers In Europe (Vol. 2) - 1949-5271.1Prince Albert (Part. 1 & 2)5:481042141Max Roach Quintet71.2Baby Sis (Part. 1 & 2)5:301042141Max Roach Quintet71.3Tomorrow (Part. 1 & 2}6:021042141Max Roach Quintet71.4Maximum3:281042141Max Roach Quintet71.5More Than You Know3:08375877James Moody Quintet71.6Deep Purple2:51375877James Moody Quintet71.7I Cover The Waterfront3:05375877James Moody Quintet71.8Moody’s Mode2:39375877James Moody Quintet71.9That’s My Desire3:07375877James Moody Quintet71.10Bootsie3:39375877James Moody Quintet71.11Lover Come Back To Me4:32375877James Moody Quintet71.12This Is Always3:31375877James Moody Quintet71.13Afro Paris3:01327344Dizzy Gillespie Quintet71.14Afro Paris2:51327344Dizzy Gillespie Quintet71.15Hurry Home2:55327344Dizzy Gillespie Quintet71.16Hurry Home3:10327344Dizzy Gillespie Quintet71.17Say Eh!3:17327344Dizzy Gillespie Quintet71.18Say Eh!3:18327344Dizzy Gillespie Quintet71.19I Cover The Waterfront2:40327344Dizzy Gillespie QuintetCD 72 > Bebop Story - The Boppers In Europe (Vol. 3) - 195372.1The Champ9:22358566Dizzy Gillespie Sextet72.2Good Bait9:50358566Dizzy Gillespie Sextet72.3Swing Low Sweet Cadillac4:10358566Dizzy Gillespie Sextet72.4Oh Lady Be Good3:50358566Dizzy Gillespie Sextet72.5My Man (Mon Homme)2:53358566Dizzy Gillespie Sextet72.6(I’ve Got) The Bluest Blues3:52358566Dizzy Gillespie Sextet72.7Birk’s Works9:36358566Dizzy Gillespie Sextet72.8Ooh-Shoo-Bee-Doo-Bee3:28358566Dizzy Gillespie Sextet72.9They Can’t Take That Away From Me4:21358566Dizzy Gillespie Sextet72.10Embraceable You3:16358566Dizzy Gillespie Sextet72.11Play Fiddle, Play4:29358566Dizzy Gillespie Sextet72.12I Can’t Get Started3:06358566Dizzy Gillespie Sextet72.13Tin Tin Deo4:11358566Dizzy Gillespie Sextet72.14On The Sunny Side Of The Street2:47358566Dizzy Gillespie Sextet72.15School Days7:04358566Dizzy Gillespie SextetCD 73 > Bebop Story - Woody’s Boys (Vol. 1) - 1944-4573.1I Gotcha Covered2:462560966Chubby Jackson Sextet73.2Popsie2:272560966Chubby Jackson Sextet73.3Bass Face2:342560966Chubby Jackson Sextet73.4Don’t Get Too Wild, Child2:462560966Chubby Jackson Sextet73.5Skyscraper3:091869514Flip Phillips Fliptet73.6Papilloma3:111869514Flip Phillips Fliptet73.7A Melody From The Sky3:101869514Flip Phillips Fliptet73.81-2-3-4 Jump4:231869514Flip Phillips Fliptet73.9Bob’s Belief3:561869514Flip Phillips Fliptet73.10Sweet And Lovely5:011869514Flip Phillips Fliptet73.11Lover Come Back To Me4:481869514Flip Phillips Fliptet73.12Northwest Passage2:496208207Chubby Jackson And His Orchestra73.13Cryin’ Sands3:056208207Chubby Jackson And His Orchestra73.14Cross Country2:553402141Bill Harris Septet73.15Characteristically, B.H.3:023402141Bill Harris Septet73.16Mean To Me3:243402141Bill Harris Septet73.17She’s Funny That Way3:193402141Bill Harris Septet73.18Stompin’ At The Savoy2:361869514Flip Phillips Fliptet73.19Why Shouldn’t I2:461869514Flip Phillips Fliptet73.20Swingin’ For Popsie2:351869514Flip Phillips Fliptet73.21Without Woody2:581869514Flip Phillips Fliptet73.22More Than You Know3:221869514Flip Phillips FliptetCD 74 > Bebop Story - Woody’s Boys (Vol. 2) - 194674.1Woodchopper’s Holiday (Down With Up)10:37743210Sonny Berman74.2Sonny’s Blues (Ciretose)9:49743210Sonny Berman74.3Sonny Speaks Out (Higgimus Hoggimus)9:13743210Sonny Berman74.4BMT Face (Slumbering Giant)8:46743210Sonny Berman74.5Everything Happens To Me3:072063383Bill Harris & His New Music74.6Frustration2:542063383Bill Harris & His New Music74.7Curbstone Scuffle3:065368121Bill Harris Big Eight74.8Curbstone Scuffle3:025368121Bill Harris Big Eight74.9Nocturne3:065368121Bill Harris Big Eight74.10Moon Burns3:085368121Bill Harris Big Eight74.11Woodchopper’s Holiday2:555368121Bill Harris Big Eight74.12Woodchopper’s Holiday2:575368121Bill Harris Big Eight74.13Harris Tweed (Somebody Loves Me)3:025368121Bill Harris Big Eight74.14Somebody Loves Me2:575368121Bill Harris Big Eight74.15Blue Serge (The Mad Monk)3:01309987Serge Chaloff74.16Blue Serge6:01309987Serge ChaloffCD 75 > Bebop Story - Woody’s Boys (Vol. 3) - 1945-4975.1Head Quarters2:533590055Chubby Jackson's Rhythm75.2Head Hunters2:403590055Chubby Jackson's Rhythm75.3Sam’s Caravan3:073590055Chubby Jackson's Rhythm75.4Two Heads Better Than One2:473590055Chubby Jackson's Rhythm75.5I Woke Up Dizzy3:03430844Neal Hefti's Orchestra75.6Sloppy Joe’s2:49430844Neal Hefti's Orchestra75.7All God’s Chillun Got Rhythm2:483135088Red Rodney's Be-Boppers75.8Elevation2:563135088Red Rodney's Be-Boppers75.9Fine And Dandy2:413135088Red Rodney's Be-Boppers75.10The Goof And I3:003135088Red Rodney's Be-Boppers75.11Pumpernickel2:284614920Serge And His Be Bop Buddies75.12Gabardine And Serge2:294614920Serge And His Be Bop Buddies75.13Serge's Urge2:324614920Serge And His Be Bop Buddies75.14A Bar A Second2:354614920Serge And His Be Bop Buddies75.15The Happy Monster2:456208207Chubby Jackson And His Orchestra75.16Follow The Leader3:036208207Chubby Jackson And His Orchestra75.17L'ana2:456208207Chubby Jackson And His Orchestra75.18"Mom" Jackson3:036208207Chubby Jackson And His Orchestra75.19Cake2:592693462The Flip Phillips Quintet75.20Znarg Blues2:592693462The Flip Phillips Quintet75.21My Old Flame2:542693462The Flip Phillips Quintet75.22Cool2:472693462The Flip Phillips Quintet75.23Chickasaw2:524583010Serge Chaloff And The Herd Men75.24Bop Scotch3:204583010Serge Chaloff And The Herd Men75.25The Most!2:384583010Serge Chaloff And The Herd Men75.26Chasing The Bass2:314583010Serge Chaloff And The Herd MenCD 76 > Bebop Story - Woody’s Boys (Vol. 4) - 1949-5176.1Pat2:12309987Serge Chaloff- 293069Ralph Burns76.2King Edward The Flatted Fifth2:53309987Serge Chaloff- 293069Ralph Burns76.3Imagination3:202295435Bill Harris And His Orchestra76.4Opus 693:322295435Bill Harris And His Orchestra76.5Drowsy3:173355615Flip Phillips Quartet76.6Vortex2:483355615Flip Phillips Quartet76.7Milano3:333355615Flip Phillips Quartet76.8But Beautiful3:313355615Flip Phillips Quartet76.9Lover3:153355615Flip Phillips Quartet76.10Don’t Take Your Love From Me3:303355615Flip Phillips Quartet76.11Flip’s Boogie3:373355615Flip Phillips Quartet76.12Feelin’ The Blues3:493355615Flip Phillips Quartet76.13Lover Come Back To Me3:163355615Flip Phillips Quartet76.14Blue Room2:373355615Flip Phillips Quartet76.15Bebe3:052771315Flip Phillips And His Orchestra76.16Dream A Little Dream Of Me3:252771315Flip Phillips And His Orchestra76.17Bright Blues2:572771315Flip Phillips And His Orchestra76.18Cheek To Cheek3:222693462The Flip Phillips Quintet76.19Sorjoro3:232693462The Flip Phillips Quintet76.20I’ve Got My Love To Keep Me Warm3:022693462The Flip Phillips Quintet76.21Funky Blues3:062693462The Flip Phillips Quintet76.22Indiana2:592693462The Flip Phillips QuintetCD 77 > Bebop Story - White Bebop Boys (Vol. 1) - 1945-4777.1Sweet Miss3:00794882Kai's Krazy Cats77.2Sweet Miss3:00794882Kai's Krazy Cats77.3Loaded3:01794882Kai's Krazy Cats77.4Loaded3:01794882Kai's Krazy Cats77.5Grab Your Axe, Max3:22794882Kai's Krazy Cats77.6Grab Your Axe, Max3:23794882Kai's Krazy Cats77.7Always3:19794882Kai's Krazy Cats77.8Vot’s Dot?3:034525513Allen Eager Quartet77.9Vot’s Dot?2:594525513Allen Eager Quartet77.10Booby Hatch (Pogo Stick)3:074525513Allen Eager Quartet77.11Symphony Sid’s Idea (Zadah)2:474525513Allen Eager Quartet77.12How High The Moon3:20317887Gene Krupa And His Orchestra77.13Opus De Bop2:30372754Stan Getz QuartetAnd5333298The Be Bop Boys77.14And The Angels Swing2:42372754Stan Getz QuartetAnd5333298The Be Bop Boys77.15Running Water2:44372754Stan Getz QuartetAnd5333298The Be Bop Boys77.16Don't Worry 'Bout Me2:36372754Stan Getz QuartetAnd5333298The Be Bop Boys77.17O-Go-Mo2:311823947Terry Reig77.18Mr. Dues2:411823947Terry Reig77.19Oh, Kai2:341823947Terry Reig77.20Saxon2:441823947Terry Reig77.21Disc Jockey Jump3:09317887Gene Krupa And His OrchestraCD 78 > Bebop Story - White Bebop Boys (Vol. 2) - 1947-48 - Allen Eager / Stan Getz / Brew Moore 78.1All Night, All Frantic2:35267185Allen EagerWith5333298The Be Bop Boys78.2Donald Jay2:32267185Allen EagerWith5333298The Be Bop Boys78.3Meeskite2:57267185Allen EagerWith5333298The Be Bop Boys78.4And That's For Sure2:51267185Allen EagerWith5333298The Be Bop Boys78.5Pardon My Bop3:20375876Stan Getz Quintet78.6Pardon My Bop2:38375876Stan Getz Quintet78.7Pardon My Bop2:34375876Stan Getz Quintet78.8As I Live And Bop (Bopcycle)3:01375876Stan Getz Quintet78.9Interlude In Bebop2:11375876Stan Getz Quintet78.10Interlude In Bebop2:47375876Stan Getz Quintet78.11Diaper Pin2:41375876Stan Getz Quintet78.12Diaper Pin2:38375876Stan Getz Quintet78.13Pogo Stick2:414525513Allen Eager Quartet78.14Alley Talk (Bow Tie)2:494525513Allen Eager Quartet78.15The Way You Look Tonight2:564525513Allen Eager Quartet78.16Brew Blew2:543673308Brew Moore Quartet78.17Blue Brew2:343673308Brew Moore Quartet78.18No More Brew2:513673308Brew Moore Quartet78.19More Brew3:013673308Brew Moore Quartet78.20Frosty3:002268409Stan Getz OrchestraCD 79 > Bebop Story - White Bebop Boys (Vol. 3) - 1948-49 - Kai Winding / Allen Eager / Brew Moore / Stan Getz 79.1The Chase4:09694904Tadd Dameron Quintet79.2Wahoo5:13694904Tadd Dameron Quintet79.3Lady Be Good (Rifftide)5:06694904Tadd Dameron Quintet79.4Wahoo6:24694904Tadd Dameron Quintet79.5Anthropology5:23694904Tadd Dameron Quintet79.6Tiny’s Blues3:31694904Tadd Dameron Quintet79.7Bop City2:573203403Kai Winding Sextet79.8Wallington's Godchild2:523203403Kai Winding Sextet79.9Crossing The Channel2:493203403Kai Winding Sextet79.10Sleepy Bop3:053203403Kai Winding Sextet79.11Battleground3:153462792Stan Getz And His Five Brothers79.12Battleground3:233462792Stan Getz And His Five Brothers79.13Four And One Moore3:323462792Stan Getz And His Five Brothers79.14Four And One Moore3:463462792Stan Getz And His Five Brothers79.15Five Brothers3:113462792Stan Getz And His Five Brothers79.16Five Brothers3:343462792Stan Getz And His Five Brothers79.17Battle Of The Saxes3:523462792Stan Getz And His Five Brothers79.18Stan Gets Along2:532268412Stan Getz Boppers79.19Stan’s Mood2:402268412Stan Getz Boppers79.20Fast2:482268412Stan Getz Boppers79.21Fast3:012268412Stan Getz BoppersCD 80 > Bebop Story - White Bebop Boys (Vol. 4) - 1949 - George Wallington / Stan Getz / Brew Moore / Lee Konitz / Kai Winding 80.1Racing2:182206644George Wallington Trio80.2Fairyland2:452206644George Wallington Trio80.3Knockout2:398060654George Wallington Septet80.4Igloo2:338060654George Wallington Septet80.5Skull Buster2:23794879Al Haig Sextet80.6Ante Room2:41794879Al Haig Sextet80.7Pennies From Heaven3:16794879Al Haig Sextet80.8Poop Deck2:44794879Al Haig Sextet80.9The Mud Bug2:425612954Brew Moore All Stars80.10Gold Rush3:075612954Brew Moore All Stars80.11Lestorian Mode2:305612954Brew Moore All Stars80.12Kai's Kid2:525612954Brew Moore All Stars80.13Indian Summer2:47372754Stan Getz Quartet80.14Long Island Sound2:56372754Stan Getz Quartet80.15Mar-cia2:40372754Stan Getz Quartet80.16Crazy Chords2:34372754Stan Getz Quartet80.17Marshmallow2:51375440Lee Konitz Quintet80.18Fishin' Around3:46375440Lee Konitz Quintet80.19Sid's Bounce3:173203403Kai Winding Sextet80.20Broadway3:193203403Kai Winding Sextet80.21Broadway3:103203403Kai Winding Sextet80.22Waterworks3:393203403Kai Winding Sextet80.23Waterworks3:403203403Kai Winding Sextet80.24A Night On Bop Mountain3:333203403Kai Winding Sextet80.25A Night On Bop Mountain3:243203403Kai Winding SextetCD 81 > Bebop Story - White Bebop Boys (Vol. 5) - 1949-50 – Lee Konitz / Stan Getz 81.1Tautology2:55375440Lee Konitz Quintet81.2Sound Lee4:07375440Lee Konitz Quintet81.3Always3:4630486Stan Getz- 552707Kai Winding Quintet81.4Sweet Miss4:1330486Stan Getz- 552707Kai Winding Quintet81.5Long Island Sound2:10372754Stan Getz Quartet81.6There’s A Small Hotel2:54372754Stan Getz Quartet81.7Too Marvelous For Words2:54372754Stan Getz Quartet81.8I’ve Got You Under My Skin3:15372754Stan Getz Quartet81.9What’s New3:19372754Stan Getz Quartet81.10You Stepped Out Of A Dream2:52372754Stan Getz Quartet81.11My Old Flame2:42372754Stan Getz Quartet81.12My Old Flame2:42372754Stan Getz Quartet81.13The Lady In Red3:15372754Stan Getz Quartet81.14The Lady In Red3:15372754Stan Getz Quartet81.15Wrap Your Troubles In Dreams3:03372754Stan Getz Quartet81.16On The Alamo2:45372754Stan Getz Quartet81.17On The Alamo2:44372754Stan Getz Quartet81.18Gone With The Wind2:55372754Stan Getz Quartet81.19Yesterdays2:47372754Stan Getz Quartet81.20Sweetie Pie2:29372754Stan Getz Quartet81.21You Go To My Head3:00372754Stan Getz Quartet81.22Hershey Bar2:35372754Stan Getz QuartetCD 82 > Bebop Story - White Bebop Boys (Vol. 6) - 1949-50 – Terry Gibbs / Al Cohn / Zoot Sims / George Wallington / Stan Getz 82.1Michelle (Part 1)2:18794891Terry Gibbs New Jazz Pirates82.2Michelle (Part 2)2:16794891Terry Gibbs New Jazz Pirates82.3Michelle3:19794891Terry Gibbs New Jazz Pirates82.4T & S2:46794891Terry Gibbs New Jazz Pirates82.5Terry’s Tune3:01794891Terry Gibbs New Jazz Pirates82.6Cuddles2:59794891Terry Gibbs New Jazz Pirates82.7Groovin’ With Gus2:31552714Al Cohn Quartet82.8Groovin’ With Gus2:45552714Al Cohn Quartet82.9Infinity2:54552714Al Cohn Quartet82.10Infinity2:51552714Al Cohn Quartet82.11How Long Has This Been Going On3:10552714Al Cohn Quartet82.12Let’s Get Away From It All3:06552714Al Cohn Quartet82.13My Silent Love2:37372754Stan Getz Quartet82.14Jane-O2:61372754Stan Getz Quartet82.15Dancing In The Dark3:27372754Stan Getz Quartet82.16Memories Of You3:05372754Stan Getz Quartet82.17Tootsie Roll2:09372754Stan Getz Quartet82.18Strike Up The Band2:29372754Stan Getz Quartet82.19Imagination2:24372754Stan Getz Quartet82.20For Stompers Only2:50372754Stan Getz Quartet82.21Navy Blue2:43372754Stan Getz Quartet82.22Out Of Nowhere2:27372754Stan Getz Quartet82.23‘S Wonderful2:53372754Stan Getz QuartetCD 83 > Bebop Story - White Bebop Boys (Vol. 7) - 1951 – Stan Getz / Kai Winding / Zoot Sims83.1Penny2:49372754Stan Getz Quartet83.2Split Kick2:52372754Stan Getz Quartet83.3It Might As Well Be Spring2:52372754Stan Getz Quartet83.4The Best Thing For You2:41372754Stan Getz Quartet83.5Deep Purple2:43552707Kai Winding Quintet83.6I’m Shooting High2:56552707Kai Winding Quintet83.7You’re Blasé2:44552707Kai Winding Quintet83.8Moonshower2:42552707Kai Winding Quintet83.9Honey2:51552707Kai Winding Quintet83.10Someone To Watch Over Me2:39552707Kai Winding Quintet83.11Cheek To Cheek2:49552707Kai Winding Quintet83.12Harlem Buffet2:57552707Kai Winding Quintet83.13Broadway2:462693462The Flip Phillips Quintet83.14Wrap Your Troubles In Dreams2:502693462The Flip Phillips Quintet83.15Apple Honey2:502693462The Flip Phillips Quintet83.16Long Island Boogie2:582693462The Flip Phillips Quintet83.17Stardust3:072693462The Flip Phillips Quintet83.18Trotting3:45375441Zoot Sims Quartet83.19It Had To Be You2:46375441Zoot Sims Quartet83.20Zoot Swings The Blues8:39375441Zoot Sims Quartet83.21Swingin’2:26375441Zoot Sims Quartet83.22East Of The Sun11:04375441Zoot Sims Quartet83.23I Wonder Who2:34375441Zoot Sims QuartetCD 84 > Bebop Story - White Bebop Boys (Vol. 8) - 1951-5284.1Melody Express2:45372754Stan Getz Quartet84.2Yvette2:56372754Stan Getz Quartet84.3Potter’s Luck2:39372754Stan Getz Quartet84.4The Song Is You2:47372754Stan Getz Quartet84.5Wildwood3:04372754Stan Getz Quartet84.6Twins2:20261287George Wallington84.7Polka Dot2:51261287George Wallington84.8I’ll Remember April2:29261287George Wallington84.9High Score2:48261287George Wallington84.10Hyacinth2:37261287George Wallington84.11Joy Bell2:21261287George Wallington84.12I Didn’t Know What Time It Was2:15261287George Wallington84.13Brown Gold2:23251873Art Pepper84.14These Foolish Things2:38251873Art Pepper84.15Surf Ride2:50251873Art Pepper84.16Holiday Flight3:08251873Art Pepper84.17Tangerine4:25251873Art Pepper84.18Zootcase4:18375438Zoot Sims Sextet84.19The Red Door4:34375438Zoot Sims Sextet84.20Morning Fun5:37375438Zoot Sims Sextet84.21Chili Pepper2:56375438Zoot Sims Sextet84.22Suzy The Poodle3:10376040Art Pepper Quartet84.23Everything Happens To Me3:05376040Art Pepper Quartet84.24Tickle Toe2:51376040Art Pepper QuartetCD 85 > Bebop Story - Dodo Marmarosa - 1943-5085.1The Moose2:33341403Charlie Barnet And His Orchestra85.2Skyliner2:59341403Charlie Barnet And His Orchestra85.3Mellow Mood3:122206642Dodo Marmarosa Trio85.4Dodo’s Blues3:122206642Dodo Marmarosa Trio85.5How High The Moon2:512206642Dodo Marmarosa Trio85.6I Surrender Dear2:182206642Dodo Marmarosa Trio85.7Raindrops2:472206642Dodo Marmarosa Trio85.8I’ve Got News For You2:582206642Dodo Marmarosa Trio85.9Just One More Chance3:11446671Lucky Thompson And His Lucky Seven85.10From Dixieland To Bop3:03446671Lucky Thompson And His Lucky Seven85.11Boulevard Bounce3:15446671Lucky Thompson And His Lucky Seven85.12Boppin' The Blues2:59446671Lucky Thompson And His Lucky Seven85.13Bopmatism3:092206642Dodo Marmarosa Trio85.14Dodo's Dance 3:052206642Dodo Marmarosa Trio85.15Trade Winds 3:092206642Dodo Marmarosa Trio85.16Dary Departs 2:452206642Dodo Marmarosa Trio85.17Cosmo Street (Lover) 3:282206642Dodo Marmarosa Trio85.18My Foolish Heart2:362206642Dodo Marmarosa Trio85.19Blue Room3:042206642Dodo Marmarosa Trio85.20Why Was I Born3:132206642Dodo Marmarosa Trio85.21The Night Was Young2:472206642Dodo Marmarosa TrioCD 86 > Bebop Story - Charlie Parker Live (Vol. 1) - 195086.1I Didn’t Know What Time It Was2:36272028The Charlie Parker Quintet86.2Ornithology3:28272028The Charlie Parker Quintet86.3Embraceable You2:18272028The Charlie Parker Quintet86.4Visa2:59272028The Charlie Parker Quintet86.5I Cover The Waterfront1:45272028The Charlie Parker Quintet86.6Scrapple From The Apple4:39272028The Charlie Parker Quintet86.7Star Eyes & 52nd Street Theme3:07272028The Charlie Parker Quintet86.8Confirmation3:15272028The Charlie Parker Quintet86.9Out Of Nowhere2:18272028The Charlie Parker Quintet86.10Hot House3:47272028The Charlie Parker Quintet86.11What’s New?2:44272028The Charlie Parker Quintet86.12Now’s The Time4:17272028The Charlie Parker Quintet86.13Smoke Gets In You Eyes & 52nd Street Theme4:47272028The Charlie Parker Quintet86.14Just Friends3:07272028The Charlie Parker Quintet86.15April In Paris3:23272028The Charlie Parker Quintet86.16Just Friends3:11272028The Charlie Parker Quintet86.17April In Paris3:00272028The Charlie Parker Quintet86.18Ballad Medley4:51272028The Charlie Parker Quintet86.19Ballad Medley9:23272028The Charlie Parker QuintetCD 87 > Bebop Story - Charlie Parker Live (Vol. 2) - 1950 & 5287.1Lover Come Back To Me17:2375617Charlie Parker87.252nd Street Theme1:3875617Charlie Parker87.3The Squirrel14:4375617Charlie ParkerAnd31617Chet Baker87.4Irresistible You6:1575617Charlie ParkerAnd31617Chet Baker87.5Indiana (Donna Lee)11:1875617Charlie ParkerAnd31617Chet Baker87.6Liza10:0475617Charlie ParkerAnd31617Chet BakerCD 88 > Bebop Story - Charlie Parker Live (Vol. 3) - 1952-5388.1Ornithology5:45272028The Charlie Parker Quintet88.252nd Street Theme4:51272028The Charlie Parker Quintet88.3How High The Moon5:4775617Charlie ParkerWith603682The Milt Jackson Quartet88.4Embraceable You3:0875617Charlie ParkerWith603682The Milt Jackson Quartet88.552nd Street Theme0:2075617Charlie ParkerWith603682The Milt Jackson Quartet88.6Anthropology4:58272028The Charlie Parker Quintet88.7Cool Blues4:13272028The Charlie Parker Quintet88.8Out Of Nowhere4:36272028The Charlie Parker Quintet88.9Ornithology4:20272028The Charlie Parker Quintet88.10Now’s The Time7:28272028The Charlie Parker Quintet88.11My Little Suede Shoes7:48272028The Charlie Parker Quintet88.12Groovin’ High6:08272028The Charlie Parker Quintet88.13Cheryl4:55272028The Charlie Parker QuintetCD 89 > Bebop Story - Charlie Parker Live (Vol. 4) - 1948-5289.1Hot House4:11272028The Charlie Parker Quintet89.2Slow Boat To China4:13272028The Charlie Parker Quintet89.3Be Bop3:16272028The Charlie Parker Quintet89.4Hot House5:06272028The Charlie Parker Quintet89.5Scrapple From The Apple4:04272028The Charlie Parker Quintet89.6Oop-Bop-Sh-Bam4:52272028The Charlie Parker Quintet89.7Barbados3:44272028The Charlie Parker Quintet89.8Groovin’ High4:42272028The Charlie Parker Quintet89.9Laura3:10272028The Charlie Parker Quintet89.10This Time The Dream’s On Me6:13272028The Charlie Parker Quintet89.11My Little Suede Shoes2:47272028The Charlie Parker Quintet89.12My Little Suede Shoes4:16272028The Charlie Parker Quintet89.13Lester Leaps In4:00272028The Charlie Parker Quintet89.14Sly Mongoose3:30272028The Charlie Parker Quintet89.15Moose The Mooche3:57272028The Charlie Parker Quintet89.16Rocker5:24272028The Charlie Parker Quintet89.17Star Eyes2:21272028The Charlie Parker QuintetCD 90 > Bebop Story - Bebop Live Concerts (Vol. 1) - 194690.1Crazy Rhythm8:42311723Jazz At The Philharmonic90.2The Man I Love15:05311723Jazz At The Philharmonic90.3Sweet Georgia Brown9:37311723Jazz At The Philharmonic90.4Blues For Norman8:39311723Jazz At The Philharmonic90.5Lady Be Good11:13311723Jazz At The Philharmonic90.6I Can't Get Started9:17311723Jazz At The Philharmonic90.7After You've Gone7:36311723Jazz At The PhilharmonicCD 91 > Bebop Story - Bebop Live Concerts (Vol. 2) - 1946-4791.1Ornithology5:148475390Junior Jazz At The Auditorium91.2Hot House (What Is This Thing Called Love)8:138475390Junior Jazz At The Auditorium91.3Allen’s Alley10:078475390Junior Jazz At The Auditorium91.4Lover6:288475390Junior Jazz At The Auditorium91.5High On An Open Mike8:022837281Saturday Night Swing Session91.6Sweet Georgia Brown7:222837281Saturday Night Swing Session91.7Just You, Just Me12:54317897Gene Norman's "Just Jazz"91.8Perdido9:31317897Gene Norman's "Just Jazz"CD 92 > Bebop Story - Bebop Live Concerts (Vol. 3) - 1946-4792.1JATP Blues10:54311723Jazz At The Philharmonic92.2I Got Rhythm12:58311723Jazz At The Philharmonic92.3I Surrender Dear10:27311723Jazz At The Philharmonic92.4I Found A New Baby8:13311723Jazz At The Philharmonic92.5Sweet Georgia Bop (Sweet Georgia Brown)12:086730760The Just Bop All-Stars92.6Just Bop (Just You, Just Me)11:456730760The Just Bop All-Stars92.7C Jam Blues4:096730760The Just Bop All-StarsCD 93 > Bebop Story - Bebop Live Concerts (Vol. 4) - 194793.1Groovin’ High6:50317897Gene Norman's "Just Jazz"93.2Be Bop7:25317897Gene Norman's "Just Jazz"93.3Hot House6:10317897Gene Norman's "Just Jazz"93.4Donna Lee (incomplete)3:08317897Gene Norman's "Just Jazz"93.5Lover5:43340120Erroll Garner Trio93.6Tenderly3:00340120Erroll Garner Trio93.7Someone To Watch Over Me3:13340120Erroll Garner Trio93.8Blue Lou9:19317897Gene Norman's "Just Jazz"93.9One O’Clock Jump12:35317897Gene Norman's "Just Jazz"CD 94 > Bebop Story - Bebop Live Concerts (Vol. 5) - 194794.1Body And Soul5:27317897Gene Norman's "Just Jazz"94.2How High The Moon12:38317897Gene Norman's "Just Jazz"94.3I (Charlie’s) Got Rhythm8:47317897Gene Norman's "Just Jazz"94.4The Hunt (Rocks 'n Shoals)18:081132811Hollywood Jazz Concert94.5Bopera (Disorder At The Border)19:251132811Hollywood Jazz ConcertCD 95 > Bebop Story - Bebop Live Concerts (Vol. 6) - 194795.1What Is This Thing Called Love14:0210720723The Bop Jam All Stars95.2Back Breaker16:4510720723The Bop Jam All Stars95.3Blow Blow Blow (Rhythm)14:0110720723The Bop Jam All Stars95.4Byas-A-Drink (Bopland)19:202064220The Bopland BoysCD 96 > Bebop Story - Bebop Live Concerts (Vol. 7) - 194796.1Cherokee (Jeronimo)21:442064220The Bopland Boys96.2After Hours Bop16:162064220The Bopland Boys96.3What Is This Thing Called Love13:334096463Bill Harris All Stars96.4A Knight In The Village9:304096463Bill Harris All Stars96.5Just You, Just Me10:274096463Bill Harris All StarsCD 97 > Bebop Story - Bebop Live Concerts (Vol. 8) - 194797.1Characteristically B.H.6:59312553Bill Harris,262140Charlie Ventura97.2Blue Champagne5:21312553Bill Harris,262140Charlie Ventura97.3Mordido7:48312553Bill Harris,262140Charlie Ventura97.4High On An Open Mike9:10312553Bill Harris,262140Charlie Ventura97.5Body And Soul6:39312553Bill Harris,262140Charlie Ventura97.6The Great Lie7:39312553Bill Harris,262140Charlie Ventura97.7Eleven Sixty9:25312553Bill Harris,262140Charlie Ventura97.8All Of Me5:49312553Bill Harris,262140Charlie Ventura97.9The Man I Love7:30312553Bill Harris,262140Charlie Ventura97.10Aces At The Deuces9:02312553Bill Harris,262140Charlie VenturaCD 98 > Bebop Story - Bebop Live Concerts (Vol. 9) - 194998.1There’s A Small Hotel10:5175617Charlie Parker98.2These Foolish Things3:5075617Charlie Parker98.3Fine And Dandy5:5575617Charlie Parker98.4Hot House9:1175617Charlie Parker98.5The Opener12:48311723Jazz At The Philharmonic98.6Lester Leaps In12:17311723Jazz At The Philharmonic98.7Embraceable You10:35311723Jazz At The Philharmonic98.8The Closer10:44311723Jazz At The PhilharmonicCD 99 > Bebop Story - Bebop Live Concerts (Vol. 10) - 195299.1Out Of Nowhere16:2610720726The West Coast Jam Sessions99.2Strike Up The Band8:4410720726The West Coast Jam Sessions99.3Pennies From Heaven8:4210720726The West Coast Jam Sessions99.4Tiny’s Blues12:5810720726The West Coast Jam Sessions99.5Medley4:0710720726The West Coast Jam Sessions99.6Out Of Nowhere3:3510720726The West Coast Jam Sessions99.7Our Delight6:1310720726The West Coast Jam Sessions99.8Lullaby Of The Leaves4:2210720726The West Coast Jam Sessions99.9Blues5:3410720726The West Coast Jam SessionsCD 100 > Bebop Story - Bebop Live Concerts (Vol. 11) - 1950-51100.1Jazz On Sunset (Move)9:463987644Wardell Gray Los Angeles All Stars100.2Kiddo (Scrapple From The Apple)9:043987644Wardell Gray Los Angeles All Stars100.3Lullaby In Rhythm13:04272028The Charlie Parker Quintet100.4Scrapple From The Apple16:03272028The Charlie Parker Quintet100.5Happy Bird Blues2:59272028The Charlie Parker Quintet100.6I’ll Remember April10:57272028The Charlie Parker Quintet267254Membran International GmbH4Record Company44294Membran Music Ltd.10Manufactured By44294Membran Music Ltd.9Distributed By + +194VariousDG 120 - The Anniversary Edition6984442Nicole AlbringArtwork [Coordination]2041348WLP Ltd.Booklet Editor1558092Ewald MarklCo-producer75-1 to 75-8310038Hilary HahnCo-producer47-1 to 47-71696723Olivier FourésConsultant [Repertoire]107-1 to 107-121982111Burkhard BartschCoordinator [Project]46-1 to 46-74633869Meike LieserCurated By [Galvano Master Curation]6662366Anja HoppeDesign833723Everett PorterEngineer27-1 to 27-5711873Chris BarrettEngineer [Assistant Recording]86-1 to 86-126211533Dave Conner (6)Engineer [Assistant Recording]121-15870477Eike BoehmEike BöhmEngineer [Assistant Recording]27-1 to 27-55407663Joel WattsEngineer [Assistant Recording]121-37004883John Morin (2)Engineer [Assistant Recording]121-34342278Julian HelmsEngineer [Assistant Recording]49-4 to 49-73217196Lauran JurriusEngineer [Assistant Recording]27-1 to 27-5515224Lewis JonesEngineer [Assistant Recording]49-1 to 49-3998854Rainer HöpfnerEngineer [Assistant Recording]47-1 to 47-74833564Andrea ArenasEngineer [Assistant]46-1 to 46-73414553Annerose UngerEngineer [Assistant]48-1 to 48-122191895Daniel KemperEngineer [Assistant]45-1 to 45-62186431Johannes WallbrecherEngineer [Assistant]88-1 to 88-20633160Jürgen BulgrinEngineer [Assistant]77-1 to 77-10909998Mark BueckerEngineer [Assistant]107-1 to 107-12713679Rainer MaillardEngineer [Assistant]88-1 to 88-20868298Yves BaudryEngineer [Assistant]26-1 to 26-91098169Alfred SteinkeEngineer [Balance]81-1 to 81-3, 81-5 to 81-8, 18-10541831Andreas NeubronnerEngineer [Balance]19-1 to 19-81270958Andrew MellorEngineer [Balance]121-4 to 121-6811565Andrew WedmanEngineer [Balance]93-1 to 93-10, 101-1 to 101-31836285Dietmar LiebidiEngineer [Balance]111-3984563Dr. Erich ThienhausEngineer [Balance]51-18 to 51-24861649Erdo GrootEngineer [Balance]106-12 to 106-162182946Ewald FaissEngineer [Balance]61-5 to 61-17355862Gerd HenjesGerhard HenjesEngineer [Balance]7-5, 112-1, 112-2833563Gernot Von SchultzendorffEngineer [Balance]41-1 to 41-6836738Gregor ZielinskyEngineer [Balance]113-1 to 113-8, 120-1 to 120-16835063Günter HermannsEngineer [Balance]10-1 to 10-7, 11-1 to 11-6, 12-1 to 12-4, 13-1 to 13-16, 17-1 to 17-22, 29-4 to 29-6, 31-1 to 31-6, 33-1 to 33-6, 34-1 to 34-6, 37-1 to 37-3, 43-1 to 43-4, 76-1 to 76-9, 89-1 to 89-20, 90-1 to 90-13, 91-1 to 91-12, BR1A-1 to BR1D-48834537Hans-Peter SchweigmannEngineer [Balance]9-1 to 9-4, 14-1 to 14-4, 16-1 to 16-12, 22-1 to 22-6, 32-1 to 32-9, 39-1 to 39-8, 53-1 to 53-3, 56-4 to 56-7, 69-9 to 69-12, 70-1 to 70-20, 84-1 to 84-9, 92-1 to 92-7, 97-1 to 97-20, 98-11 to 98-34, 99-1 to 99-22, 100-2 to 100-31, 104-1 to 104-19, 105-1 to 105-12958012Harald BaudisEngineer [Balance]6-1 to 6-3, 8-1 to 8-4, 30-1 to 30-7, 31-7 to 31-11, 69-5 to 69-8, 81-4, 81-13, 99-4, 99-11, 99-14 to 99-20, 103-1 to 103-171103862Heinrich KeilholzEngineer [Balance]5-1 to 5-8, 6-1 to 6-3565422Heinz WildhagenEngineer [Balance]12-5 to 12-8, 29-1 to 29-3, 51-1 to 51-24, 54-1 to 54-12, 55-1 to 55-6, 58-1 to 58-21, 59-1 to 59-9, 68-5 to 68-9, 69-1 to 69-4, 71-1 to 71-12, 81-9, 81-12, 97-21 to 97-29, 98-1 to 98-10633159Helmut BurkEngineer [Balance]18-1 to 18-5, 21-1 to 21-6, 62-1 to 62-8345542Justus LiebichJustus LiebigEngineer [Balance]111-1, 111-2709138Karl-August NaeglerEngineer [Balance]18-1 to 18-5, 38-1 to 38-3, 56-1 to 56-3, 100-1, 120-1 to 120-161380025Karl-Heinz WestphalEngineer [Balance]67-16, 67-17472214Klaus HiemannEngineer [Balance]36-1 to 36-6, 55-7 to 55-13, 104-1 to 104-19, 112-1, 112-2833561Klaus ScheibeEngineer [Balance]14-5 to 14-8, 15-1 to 15-6, 30-8, 35-1 to 35-12, 38-4 to 38-6, 53-4 to 53-23, 56-8 to 56-10, 57-1 to 57-3, 58-22 to 58-37, 82-1 to 82-22, 83-1 to 83-16718437Max WilcoxEngineer [Balance]74-1 to 74-12408897Michael BergekEngineer [Balance]20-1 to 20-10399141Paul GoodmanEngineer [Balance]61-1 to 61-4713679Rainer MaillardEngineer [Balance]42-1 to 42-7, 44-1 to 44-7, 75-1 to 75-8, 87-1 to 87-8, 106-1 to 106-11, 106-17 to 106-33, 114-1 to 114-7878389René MöllerEngineer [Balance]25-1 to 25-173473743Richard DegenkolbeEngineer [Balance]68-1 to 68-4649589Stephan FlockEngineer [Balance]46-1 to 46-7, 63-1 to 63-18835378Stephan SchellmannEngineer [Balance]40-1 to 40-8839989Ulrich VetteEngineer [Balance]23-1 to 23-8, 24-1 to 24-7, 43-1 to 43-4, 76-1 to 76-9, 85-1 to 85-8, 86-1 to 86-121484313Walter Alfred WettlerEngineer [Balance]9-5 to 9-12, 92-8 to 92-18861718Werner GrimmeEngineer [Balance]81-11826841Werner WolfEngineer [Balance]7-1 to 7-6874946Wolfgang MitlehnerEngineer [Balance]60-1 to 60-7, 72-1 to 72-10, 73-1 to 73-91002414Leszek WójcikEngineer [Carnegie Hall Studio]64-1 to 64-30649589Stephan FlockEngineer [Mixing / Post Production]47-1 to 47-71270958Andrew MellorEngineer [Recording]121-1811565Andrew WedmanEngineer [Recording]21-1 to 21-6, 22-1 to 22-62816413Brett CoxEngineer [Recording]121-4 to 121-66157346Charles Gagnon (3)Engineer [Recording]121-4 to 121-61795707Dimitri ScapolanEngineer [Recording]26-1 to 26-9861649Erdo GrootEngineer [Recording]106-12 to 106-16477482Francesco DonadelloEngineer [Recording]117-1 to 117-15302582Geoff FosterEngineer [Recording]117-1 to 117-15514353Gernot WesthäuserEngineer [Recording]13-1 to 13-9, 33-1 to 33-6, 36-1 to 36-6, 55-7 to 55-13, 92-1 to 92-7633164Hans-Rudolf MüllerEngineer [Recording]14-1 to 14-4, 15-1 to 15-6, 34-1 to 34-6, 37-1 to 37-3, 56-1 to 56-10, 100-10, 100-12, 100-13, 100-21 to 100-31838950Hans-Ulrich BastinEngineer [Recording]77-1 to 77-10565422Heinz WildhagenEngineer [Recording]52-1 to 52-122046172Helmut NajdaEngineer [Recording]99-1 to 99-3, 99-6 to 99-10, 99-13, 99-15, 99-18, 99-21, 99-22922016Joachim NissEngineer [Recording]12-5 to 12-8, 13-10 to 13-16, 100-10, 100-12, 100-13, 100-21 to 100-31514348Jobst EberhardtEngineer [Recording]14-5 to 14-8, 15-4, 18-1 to 18-5, 22-1 to 22-6, 38-1 to 38-6, 54-1 to 54-12, 55-1 to 55-6, 59-1 to 59-4, 99-5, 100-2, 100-3, 100-8, 100-9, 100-11, 100-14 to 100-20, 114-1 to 114-34283661Jost-Michael HaaseJost Michael HaaseEngineer [Recording]36-1 to 36-352220Jóhann JóhannssonEngineer [Recording]117-1 to 117-15633160Jürgen BulgrinEngineer [Recording]14-5 to 14-8, 23-1 to 23-8, 24-1 to 24-7, 41-1 to 41-6, 44-1 to 44-7, 76-1 to 76-9, 85-1 to 85-5, 85-8, 87-1 to 87-8, 92-1 to 92-76582139Jürgen Schneider (6)Engineer [Recording]112-1, 112-23479408Klaus BehrendEngineer [Recording]106-1 to 106-11, 106-17 to 106-33834287Klaus BehrensEngineer [Recording]15-1 to 15-3, 15-5, 15-6, 16-1 to 16-12, 39-1 to 39-8, 42-1 to 42-7, 58-22 to 58-37, 60-1 to 60-7, 73-1 to 73-9, 82-1 to 82-22, 83-1 to 83-16, 84-1 to 84-9, 100-1, 100-4 to 100-7, 114-4 to 114-7935385Manfred BartelEngineer [Recording]34-4 to 34-6, 58-1 to 58-21, 104-1 to 104-191383404Martin EichbergEngineer [Recording]48-1 to 48-121166068Martin NagorniEngineer [Recording]65-1 to 65-175268920Mette DueEngineer [Recording]117-1 to 117-15647974Neil HutchinsonEngineer [Recording]116-1 to 116-131032422Nelson WongEngineer [Recording]74-1 to 74-123293913Nick SquireEngineer [Recording]121-32603896Oskar Blaesche Sr.Engineer [Recording]4-82219539Preben IwanEngineer [Recording]117-1 to 117-15998854Rainer HöpfnerEngineer [Recording]93-1 to 93-10713679Rainer MaillardEngineer [Recording]21-1 to 21-6, 45-1 to 45-8, 49-1 to 49-7834244Reinhard LagemannEngineer [Recording]24-1, 85-6, 85-7835043Reinhild SchmidtEngineer [Recording]43-1 to 43-4333548Shawn MurphyEngineer [Recording]121-3802832Silas BrownEngineer [Recording]121-2649589Stephan FlockEngineer [Recording]76-1 to 76-9, 88-1 to 88-20, 93-1 to 93-10356029Tom LazarusEngineer [Recording]64-1 to 64-30839989Ulrich VetteEngineer [Recording]107-1 to 107-12, 120-1 to 120-16863411Volker MartinEngineer [Recording]33-1 to 33-6, 35-1 to 35-12, 57-1 to 57-3, 91-1 to 91-12, 105-1 to 105-12514349Wolf-Dieter KarwatkyEngineer [Recording]14-1 to 14-4, 18-1 to 18-5, 24-2 to 24-7, 35-1 to 35-12, 38-1 to 38-6, 43-1 to 43-4, 47-1 to 47-7, 56-1 to 56-3, 58-22 to 58-37, 62-1 to 62-8, 63-1 to 63-18, 82-1 to 82-22, 83-1 to 83-16, 85-1 to 85-5, 85-8, 86-1 to 86-12941168Wolfgang WernerEngineer [Recording]53-10 to 53-23, 99-1 to 99-3, 99-6 to 99-10, 99-13, 99-15, 99-18, 99-21, 99-22998809Ívar RagnarssonEngineer [Recording]117-1 to 117-152770386Alison AmesExecutive-Producer21-1 to 21-6, 22-1 to 22-6, 74-1 to 74-121000282Arend ProhmannExecutive-Producer24-1 to 24-7836767Charlotte KrieschExecutive-Producer106-1 to 106-11, 106-17 to 106-33980033Christian BadzuraExecutive-Producer116-1 to 116-22, 117-1 to 117-15508115Christian KellersmannExecutive-Producer48-1 to 48-121174678Christian LeinsExecutive-Producer88-1 to 88-20834243Christopher AlderExecutive-Producer23-1 to 23-8, 41-1 to 41-6, 62-1 to 62-8, 85-1 to 85-8, 87-1 to 87-8, 113-1 to 113-8, 120-1 to 120-16847110Cord GarbenExecutive-Producer35-1 to 35-12, 98-11 to 98-34, 100-1415724David R. MurrayExecutive-Producer106-12 to 106-162704178Dr. Alexander BuhrExecutive-Producer45-1 to 45-8, 107-1 to 107-12919090Dr. Andreas HolschneiderExecutive-Producer104-1 to 104-19, 105-1 to 105-12984563Dr. Erich ThienhausExecutive-Producer51-18 to 51-24, 102-1 to 102-3, 102-11 to 102-13861716Dr. Fred HamelExecutive-Producer67-16, 67-17, 102-1 to 102-3, 102-11 to 102-13841675Dr. Gerd PloebschExecutive-Producer92-1 to 92-73143920Dr. Marion ThiemExecutive-Producer101-1 to 101-31472215Dr. Rudolf WernerExecutive-Producer112-1, 112-2629913Dr. Wilfried DaenickeExecutive-Producer12-5 to 12-8, 53-10 to 53-23, 71-9 to 71-121396305Ellen HickmannDr. Ellen HickmannExecutive-Producer91-1 to 91-12, 99-5, 99-121098168Elsa SchillerProf. Elsa SchillerExecutive-Producer6-1 to 6-3, 7-1 to 7-6, 8-1 to 8-4, 9-5 to 9-12, 11-2 to 11-6, 29-1 to 29-6, 30-1 to 30-7, 31-1 to 31-11, 51-1 to 51-17, 52-1 to 52-12, 59-51558092Ewald MarklExecutive-Producer24-1 to 24-7, 73-1 to 73-9833562Günther BreestExecutive-Producer15-1 to 15-4, 17-1 to 17-22, 56-4 to 56-10, 57-1 to 57-3, 61-1 to 61-4, 84-1 to 84-9, 120-13 to 120-162189749Günther DieckmannExecutive-Producer98-1 to 98-10532268Hanno RinkeExecutive-Producer16-1 to 16-12, 18-1 to 18-5, 38-1 to 38-6, 39-1 to 39-8, 56-1 to 56-3, 60-1 to 60-71325965Hans HickmannDr. Hans HickmannExecutive-Producer92-8 to 92-18, 103-1 to 103-17835064Hans HirschDr. Hans HirschExecutive-Producer14-5 to 14-8, 82-1 to 82-22, 83-1 to 83-16, 91-1 to 91-12514348Jobst EberhardtExecutive-Producer111-1, 111-2463963Karl FaustExecutive-Producer13-1 to 13-16, 36-1 to 36-6, 54-1 to 54-12, 55-1 to 55-62962004Karsten WittExecutive-Producer43-1 to 43-4834287Klaus BehrensExecutive-Producer70-1 to 70-205476517Maider MúgicaExecutive-Producer65-1 to 65-171855233Marita ProhmannExecutive-Producer77-1 to 77-10, 86-1 to 86-12, 107-1 to 107-121721723Martin T:son EngstroemExecutive-Producer63-1 to 63-18, 75-1 to 75-81307711Michael HorwathMichael HorwarthExecutive-Producer15-42572043Misha AsterExecutive-Producer25-1 to 25-17, 48-1 to 48-12, 64-1 to 64-30, 121-1, 121-2833074Otto GerdesExecutive-Producer9-1 to 9-4, 11-1, 30-8, 89-1 to 89-20, 90-1 to 90-13, 97-1 to 97-29, 99-1 to 99-22, BR1A-1 to BR1D-481950544Peter CzornyjDr. Peter CzornyjExecutive-Producer20-1 to 20-10, 93-1 to 93-10, 106-1 to 106-11, 106-17 to 106-33368138Rainer BrockExecutive-Producer33-1 to 33-6, 34-1 to 34-6, 55-7 to 55-13, 59-1 to 59-4, 59-6 to 59-9424572Renate KupferExecutive-Producer100-2 to 100-313161361Renaud LorangerExecutive-Producer26-1 to 26-9838951Sid McLauchlanExecutive-Producer27-1 to 27-5, 49-1 to 49-7, 85-1 to 85-8836768Steven PaulDr. Steven PaulExecutive-Producer15-5 to 15-6, 19-1 to 19-8, 40-1 to 40-8272491Thomas MowreyTom MowreyExecutive-Producer13-1 to 13-162739740Ute FesquetExecutive-Producer25-1 to 25-17, 46-1 to 46-7, 49-1 to 49-7, 65-1 to 65-17, 121-1, 121-2839988Werner MayerExecutive-Producer14-1 to 14-4, 37-1 to 37-3, 58-1 to 58-37874946Wolfgang MitlehnerExecutive-Producer72-6 to 72-10532429Wolfgang StengelExecutive-Producer42-1 to 42-7, 114-1 to 114-74240844Franco PanozzoExecutive-Producer [AMC s.r.l. Verona]66-1 to 66-74153816Rémy LouisLiner Notes [Booklet - The Early Years]1658578Richard EvidonLiner Notes [English]1657003Daniel FesquetLiner Notes [French Translation]1644641Dennis Collins (2)Liner Notes [French Translation]6195719Anne Thomas (9)Liner Notes [German Translation]1924654Christiane FrobeniusLiner Notes [German Translation]1270958Andrew MellorMastered By121-1963466Calyx MasteringCalyx Mastering, BerlinMastered By117-1 to 117-15956888Götz-Michael RiethMastered By116-19 to 116-22384377Mandy ParnellMandy PurnellMastered By116-1 to 116-131006839Tim MartynMastered By121-3477482Francesco DonadelloMixed By117-1 to 117-15171698Max RichterMixed By116-1 to 116-18647974Neil HutchinsonMixed By116-1 to 116-13838950Hans-Ulrich BastinPost Production86-1 to 86-12839989Ulrich VettePost Production86-1 to 86-12387977Bobby SchmidtProducer109-1010343398Carl Friedrich EhrichHerr EhrichProducer3-4, 95-11065789Friedemann EngelbrechtProducer25-1 to 25-17382396Heinz GietzProducer110-1 to 110-2652220Jóhann JóhannssonProducer117-1 to 117-152603896Oskar Blaesche Sr.Oskar BlaescheProducer95-1368138Rainer BrockProducer32-1 to 32-94928226Ruth JarreProducer48-1 to 48-12838951Sid McLauchlanProducer47-1 to 47-7, 49-1 to 49-77027VangelisProducer115-1 to 115-31260508Roger WrightProducer [Associate]41-1 to 41-61294492Valérie GrossProducer [Associate]87-1 to 87-8855927Aleksandra NagórkoProducer [Recording (CD Accord)]66-1 to 66-71342007Alexander Van IngenProducer [Recording]121-4 to 121-6541831Andreas NeubronnerProducer [Recording]65-1 to 65-17811565Andrew WedmanProducer [Recording]101-1 to 101-31408788Andrzej SasinProducer [Recording]66-1 to 66-723584Andy SpenceProducer [Recording]116-221000282Arend ProhmannProducer [Recording]24-1 to 24-7, 86-1 to 86-12, 106-1 to 106-11, 106-17 to 106-33, 107-1 to 107-12633158Christian GanschProducer [Recording]22-1 to 22-6, 63-1 to 63-18209250Christoph FrankeProducer [Recording]48-1 to 48-12834243Christopher AlderProducer [Recording]23-1 to 23-8, 41-1 to 41-6, 62-1 to 62-8, 85-1 to 85-8, 87-1 to 87-8, 93-1 to 93-10, 113-1 to 113-8, 120-1 to 120-16847110Cord GarbenProducer [Recording]35-1 to 35-12, 36-1 to 36-6, 98-11 to 98-34, 99-5, 100-1, 100-4 to 100-7, 100-10, 100-12, 100-13, 100-21 to 100-31649578Daniel ZalayProducer [Recording]26-1 to 26-91925538David Frost (3)Producer [Recording]64-1 to 64-30, 121-2984563Dr. Erich ThienhausProducer [Recording]68-1 to 68-4, 102-1 to 102-15861716Dr. Fred HamelProducer [Recording]5-1 to 5-8, 51-18 to 51-24841675Dr. Gerd PloebschProducer [Recording]92-1 to 92-7, 104-1 to 104-19, 105-1 to 105-12472215Dr. Rudolf WernerProducer [Recording]71-1 to 71-8, 111-1, 111-2, 112-1, 112-2833723Everett PorterProducer [Recording]27-1 to 27-5833562Günther BreestProducer [Recording]15-1 to 15-3, 56-4 to 56-10, 57-1 to 57-31290899Hans RitterProducer [Recording]7-5 to 7-6, 10-1 to 10-7, 30-1 to 30-7, 53-4 to 53-9, 81-13, 97-21 to 97-29, 99-4, 99-11, 99-14 to 99-20834636Hans WeberProducer [Recording]12-1 to 12-4, 13-1 to 13-9, 14-5 to 14-8, 16-1 to 16-12, 18-1 to 18-5, 29-1 to 29-3, 31-7 to 31-11, 38-1 to 38-6, 82-1 to 82-22, 83-1 to 83-16, 84-1 to 84-9, 89-1 to 89-20, 90-1 to 90-13, 97-1 to 97-20, BR1A-1 to BR1D-482047060Heinz ReinickeProducer [Recording]81-4, 81-11271566John H. WestProducer [Recording]77-1 to 77-10709138Karl-August NaeglerProducer [Recording]21-1 to 21-6958011Karl-Heinz SchneiderProducer [Recording]51-1 to 51-17, 52-1 to 52-12, 59-5, 92-8 to 92-18958011Karl-Heinz SchneiderKarlheinz SchneiderProducer [Recording]8-1 to 8-41380025Karl-Heinz WestphalProducer [Recording]67-16, 67-171748680Klaus Fischer-DieskauProducer [Recording]81-1, 81-3833561Klaus ScheibeProducer [Recording]15-5 to 15-6807313Lennart DehnProducer [Recording]20-1 to 20-101083234Manfred RichterDr. Manfred RichterProducer [Recording]53-1 to 53-3, 53-10 to 53-23, 69-5 to 69-12, 71-9 to 71-12950954Mark HowellsProducer [Recording]106-12 to 106-16855283Martin FouquéProducer [Recording]43-1 to 43-4119084Mauricio KagelProducer [Recording]111-1 to 111-3171698Max RichterProducer [Recording]116-1 to 116-18718437Max WilcoxProducer [Recording]74-1 to 74-12835044Michel GlotzProducer [Recording]17-1 to 17-22833078Otto Ernst WohlertProducer [Recording]11-1 to 11-6, 29-4 to 29-6833074Otto GerdesProducer [Recording]7-1 to 7-6, 11-2 to 11-6368138Rainer BrockProducer [Recording]12-5 to 12-8, 13-10 to 13-16, 33-1 to 33-6, 34-1 to 34-6, 54-1 to 54-12, 55-1 to 55-13, 59-1 to 59-4, 59-6 to 59-9, 69-1 to 69-4, 72-1 to 72-10, 98-1 to 98-10, 99-1 to 99-22835043Reinhild SchmidtProducer [Recording]76-1 to 76-9561521Robot KochProducer [Recording]116-201290900Rolf Peter SchröderProducer [Recording]31-1 to 31-6333548Shawn MurphyProducer [Recording]121-3838951Sid McLauchlanProducer [Recording]44-1 to 44-7, 45-1 to 45-8, 46-1 to 46-7, 75-1 to 75-8, 88-1 to 88-20, 121-1372892Thomas FrostProducer [Recording]61-1 to 61-17839989Ulrich VetteProducer [Recording]76-1 to 76-91687693Ursula Von RauchhauptDr. Ursula von RauchhauptProducer [Recording]103-1 to 103-17839988Werner MayerProducer [Recording]14-1 to 14-4, 37-1 to 37-3, 56-1 to 56-3, 58-1 to 58-37, 70-1 to 70-20898394Wolf ErichsonProducer [Recording]19-1 to 19-8, 40-1 to 40-8856141Wolfgang LohseProducer [Recording]6-1 to 6-3, 9-1 to 9-12, 12-5 to 12-8, 30-8, 31-1 to 31-6. 81-2, 81-5 to 81-10, 81-12, 91-1 to 91-12874946Wolfgang MitlehnerProducer [Recording]60-1 to 60-7, 73-1 to 73-9532429Wolfgang StengelProducer [Recording]15-4, 39-1 to 39-8, 42-1 to 42-7, 100-2, 100-3, 100-8, 100-9, 100-11, 100-14 to 100-20, 114-1 to 114-75276712Martin DirnbergerProduct Manager5670709Regina WochnikResearch [Audio Source]1669362Alan NewcombeResearch [Repertoire]841676Hansjoachim ReiserSupervised By [Sound]95-12320613Francesco ZanottoTechnician [Harpsichord]107-1 to 107-124639260Joel BernacheTechnician [Piano]64-1 to 64-304833566Martin HennTechnician [Piano]46-1 to 46-71618479Pierre MalbosTechnician [Piano]45-7 to 45-85511492Robert PadghamTechnician [Piano]49-1 to 49-31065823Serge PoulainTechnician [Piano]44-1 to 44-75568612Thomas LeplerTechnician [Piano]49-4 to 49-71176565Ulrich GerhartzTechnician [Piano]65-1 to 65-174833565Alejandro LavadoTechnician [Sound]46-1 to 46-7CompilationRemasteredStereoMonoBlu-ray AudioStereoSpecial EditionNon-MusicPopClassicalEurope2018-10-05This edition © 2018 Deutsche Grammophon GmbH, Berlin +© 2018 Deutsche Grammophon GmbH, Berlin +Made in Germany + +Packaged in a cardboard box with slide-off cover with CDs in cardboard sleeves, some replicating the original releases. +Each CD comes in a cardboard sleeve describing the contents of the disc and recording dates, printed on the back of the sleeve and in the booklet. Tracklist entries are a combination of the two. + +CD 1: Early Orchestral Recordings 1 (1913-1920) +00289 483 5365 • Total time: 77:11 • ADD • MONO +Recorded: Germany, November 1913 (Beethoven); Berlin, 1920 (Berlioz); Germany, September 1913 (Wagner) +First released as 040784-91 (Beethoven), 69568 (Berlioz), 040772-79 (Wagner) +Cover © Anja Hoppe +℗ 1913 (Beethoven), 1920 (Berlioz), 1913 (Wagner) Deutsche Grammophon GmbH, Berlin + +CD 2: Early Orchestral Recordings 2 (1924-1928) +00289 483 5366 • Total time: 80:04 • ADD • MONO +Recorded: Berlin, 1924 (Track 2-1), 1926 (2-2), 1927 (2-5, 2-7), May 1927 (2-3), June 1927 (2-4), November 1928 (2-9); Germany 1927 (2-6, 2-8), 1928 (2-10 to 2-12) +Publishers: Bote & Bock GmbH / Sonzogno Casa Musicale S.A. (2-5); A. Fürstner, London / Adolph Fürstner Ltd / Adolph Fürstner, Berlin/Paris / Adolph Fürstner, Mainz / Fürstner Editions / Schott Musikverlage International Mainz (2-9) +Cover © Anja Hoppe +℗ 1924 (2-1), 1926 (2-2), 1927 (2-3 to 2-8), 1928 (2-9 to 2-12) Deutsche Grammophon GmbH, Berlin + +CD 3: Early Orchestral Recordings 3 (1928-1935) +00289 483 5367 • Total time: 76:34 • ADD • MONO +Recorded: Germany 1928 (Bruckner), 1929 (Beethoven Op. 55), November 1934 (Bach); Berlin, January 1928 (Wagner), 1928 (Schumann), 1932 (Pfitzner), June 1935 (Weber); Berlin, Polydor Studios, June 1933 (Beethoven Op. 84) +Publisher: Adolph Fürstner, Mainz (Pfitzner) +Cover © Anja Hoppe +℗ 1928 (3-1, 3-2, 3-7), 1929 (3-8), 1932 (3-3), 1933 (3-4), 1934 (3-5), 1935 (3-6) Deutsche Grammophon GmbH, Berlin + +CD 4: Early Orchestral Recordings 4 (1931-1943) +00289 483 5368 • Total time: 66:40 • ADD • MONO +Recorded: Berlin, 1931 (Brahms), June 1939 (Nicolai), March 1930 (Smetana), October 1942 (J. Strauss), March 1943 (Poot); Germany, 1938 (Haydn, Mussorgsky); Berlin, Studio Alte Jakobstraße, April 1939 (Respighi); Munich, November 1940 (R. Strauss) +Publishers: Johannes Oertel Musikverlag und Bühnenvertrieb, München (R. Strauss); Universal Edition AG, Wien (Poot) +Cover © Anja Hoppe +℗ 1931 (4-2), 1938 (4-3, 4-4), 1939 (4-1, 4-5), 1940 (4-6), 1941 (4-7), 1942 (4-8), 1943 (4-9) Deutsche Grammophon GmbH, Berlin + +CD 5: Franz Schubert – Symphony Nr. 9 / Joseph Haydn – Symphony Nr. 88 G-Dur +00289 483 5369 • Total time: 76:06 • ADD • MONO +Recorded: Berlin, Jesus-Christus-Kirche, November-December 1951 (Schubert), December 1951 (Haydn) +First released as 18015-16 (Schubert) [r8964652], 18016 (Haydn) [r9667152] +Sleeve cover taken from [r8557753] +Cover © DG Archive, all rights reserved +℗ 1952 Deutsche Grammophon GmbH, Berlin + +CD 6: Anton Bruckner – Symphony Nr. 9 D-Moll +00289 483 5370 • Total time: 58:52 • ADD • MONO +Recorded: Munich, Residenz, Herkulessaal, November 1954 +Edition: Bruckner-Verlag, Wiesbaden +First released as 18247-48: [r9650397] and [r9651810] +Sleeve cover is a modified version of [r9650397] +Cover © DG Archive, all rights reserved +℗ 1955 Deutsche Grammophon GmbH, Berlin + +CD 7: Dvořák – Symphony No. 9 “From The New World” / Smetana – The Moldau / Liszt – Les Préludes +00289 483 5371 • Total time: 72:11 • ADD +Recorded: Berlin, Jesus-Christus-Kirche, September 1959 (Liszt), October 1959 (Dvořák), January 1960 (Smetana) +Editions: N. Simrock, Berlin (Dvořák); Breitkopf & Härtel, Wiesbaden (Liszt) +First released as 138127 (Dvořák) [r13868294] (booklet), 136226 (Smetana, Liszt) [r4887192] +Sleeve cover from stereo release [r19723396] +Cover Photo © Werner Neumeister, Munich +℗ 1960 Deutsche Grammophon GmbH, Berlin + +CD 8: Tschaikowsky – Symphonie Nr. 6 »Pathétique« +00289 483 5372 • Total time: 43:34 • ADD +Recorded: Vienna, Musikverein, Großer Saal, November 1960 +First released as 138659 [r4175711] +Composer spelling in heading taken from sleeve cover: "Tschaikowsky" +Cover © DG Archive, all rights reserved +℗ 1961 Deutsche Grammophon GmbH, Berlin + +CD 9: Mozart – Symphonien: Nr. 39, Nr. 40, Nr. 41 »Jupiter« +00289 483 5373 • Total time: 78:17 • ADD +Recorded: Berlin, Jesus-Christus-Kirche, December 1961 (K 550), March 1962 (K 551), February 1966 (K 543) +First released as 139160 (K 543) [r1516479], 138815 (K 550 & 551) [r20430574] +Sleeve cover is a modified version of [r14666452] +Cover: Schloss Pommersfelden © Deutsche Luftbild KG, Hamburg +℗ 1962 (K 550 & 551), 1966 (K 543) Deutsche Grammophon GmbH, Berlin + +CD 10: Hector Berlioz – Symphonie Fantastique / Luigi Cherubini – Anacréon (Overture) / Daniel-François-Esprit Auber – La Muette De Portici (Overture) +00289 483 5374 • Total time: 70:14 • ADD +Recorded: Paris, Salle de la Mutualité, January 1961 +First released as 138712 (Berlioz) [r11571120] (Sleeve Cover), 446 406-2 (Cherubini; Auber) [r5899025] +Cover © DG Archive, all rights reserved +℗ 1962 (Berlioz), 1995 (Cherubini; Auber) Deutsche Grammophon GmbH, Berlin + +CD 11: Beethoven – IX. Symphonie, Ouvertüre »Coriolan« +00289 483 5375 • Total time: 76:04 • ADD +Recorded: Berlin, Jesus-Christus-Kirche, October 1962 (op. 125), September 1965 (op. 62) +First released as 138807-08 [r10766666] and [r10767088] (op. 125), 139001 (op. 62) [r1926308] +Sleeve cover taken from [r2538929] +Cover © Nikolaus Boddin +℗ 1963 (op. 125), 1966 (op. 62) Deutsche Grammophon GmbH, Berlin + +CD 12: Gustav Mahler – Symphonie Nr. 1 »Der Titan«, Lieder Eines Fahrenden Gesellen +00289 483 5376 • Total time: 65:53 • ADD +Recorded: Munich, Residenz, Herkulesaal, 20-23 October 1967 (Symphony), 11-12 December 1968 (Gesellenlieder) +First released as 139331 (Symphony) [r1746468], 2707056 (set) (Gesellenlieder) [r9196875] +Sleeve cover is a modified version of [r1746468] +Cover illustration: "Salome", excerpt from a painting by Gustav Klimt +℗ 1968 (Symphony), 1970 (Gesellenlieder) Deutsche Grammophon GmbH, Berlin + +CD 13: Holst – The Planets / Strauss – Also Sprach Zarathustra +00289 483 5377 • Total time: 75:50 • ADD +Recorded: Boston, Symphony Hall, September & October 1970 (Holst), March 1971 (Strauss) +Publishers: Aibl, München / Breitkopf & Härtel, Wiesbaden / C.F. Peters, Leipzig & Frankfurt/M. (Strauss); Boosey & Hawkes Music Publishers Ltd / Curwen Edition, London / Edition Eulenburg / J. Curwen & Sons Ltd (Holst) +First released as 2530160 (Strauss) [r920270], 2530102 (Holst) [r1460989] +Sleeve cover is a modified version of [r1460989] +Cover illustration: "The Planets" © Peter Wandry +℗ 1971 Deutsche Grammophon GmbH, Berlin + +CD 14: Beethoven – Symphonie Nr. 5 & 7 +00289 483 5379 • Total time: 71:52 • ADD +Recorded: Vienna, Musikvereinsaal, Marcn & April 1974 (No. 5), November 1975 & January 1976 (No. 7) +First released as 2530516 (No. 5) [r1093216], 2530706 (No. 7) [r11796252] +Sleeve cover is a modified version of [r1093216] +Cover Photo © Fritz Payer, Hamburg +℗ 1975 (No. 5), 1976 (No. 7) Deutsche Grammophon GmbH, Berlin + +CD 15: Camille Saint-Saëns – Symphony No. 3 “Organ”, Danse Macabre, Bacchanale, Le Déluge +00289 483 5380 • Total time: 55:56 • ADD +Recorded: Chicago, Medinah Temple, May 1975 (op. 78); Paris, Maison de la Mutualité, July 1978 (op. 47), October 1980 (opp. 40 & 45) +Organ: Organ of the Chartres Cathedral, Restoration: Danion-Gonzales, 1971 +First released as 2530619 (op. 78) [r2485865], 2709095 (set) (op. 47) [r8275107], 2531331 (opp. 40 & 45) [r1665223] +Sleeve cover is a modified version of [r4079993] +Cover © Holger Matthies +℗ 1976 (op. 78), 1979 (op. 47), 1981 (opp. 40 & 45) Deutsche Grammophon GmbH, Berlin + +CD 16: Claude Debussy – La Mer / Maurice Ravel – Rapsodie Espagnole, Ma Mère L'Oye +00289 483 5381 • Total time: 59:21 • ADD +Recorded: Los Angeles, Shrine Auditorium, November 1979 +First released as 2531264 [r2200958] +Sleeve cover is a modified version of [r2200958] +Cover: "Marine bleue, effet de vagues", 1984 Musée des Beaux-Arts de Rennes, Ektachrome © Archives SNARK +℗ 1980 Deutsche Grammophon GmbH, Berlin + +CD 17: Richard Strauss – Eine Alpensinfonie +00289 483 5382 • Total time: 51:01 • DDD +Recorded: Berlin, Philharmonie, December 1980 +Publisher: F.E.C. Leuckart Musikverlag +First released as 2532015 [r3544550] +Sleeve cover is a modified version of [r3544550] +Cover © Bert Leidmann / ZEFA +℗ 1981 Deutsche Grammophon GmbH, Berlin + +CD 18: Mahler – Symphonie No. 5 +00289 483 5383 • Total time: 74:44 • DDD • Live Recording +Recorded: Frankfurt am Main, Alte Oper, September 1987 +First released as and sleeve cover taken from 423 608-2 [r1571157] +Cover Illustration © ERTÉ "Chant d'Automne" +℗ 1988 Deutsche Grammophon GmbH, Berlin + +CD 19: Aaron Copland – Appalachian Spring, Short Symphony, 3 Latin American Sketches, Quiet City +00289 483 5384 • Total time: 60:52 • DDD +Recorded: Performing Arts Center, State University of New York, Purchase, March 1988 +Publisher: Boosey & Hawkes, Inc. (Appalachian Spring; Short Symphony); Boosey & Hawkes Music Publishers Ltd / Boosey & Hawkes, Inc. Quiet City; Three Latin American Sketches) +First released as 427 335-2 [r3179353] +Sleeve cover is a modified version of [r3179353] +Cover painting by Robert Delaunay (Kreisformen, Sonne Nr. 1) Wilhelm-Hack-Museum, Ludwigshafen/Rh. © VG-Bildkunst, Bonn 1989 +℗ 1989 Deutsche Grammophon GmbH, Berlin + +CD 20: Messiaen – Turangalîla-Symphonie +00289 483 5385 • Total time: 78:32 • DDD +Recorded: Paris, Opéra de Paris-Bastille, October 1990 in the presence of the composer +Recorded in collaboration with the Opéra de Paris +Publisher: Durand & Cie, Paris +First released as 431 781-2 [r1261855] +Sleeve cover is a modified version of [r1261855] +Cover © Vivianne +℗ 1991 Deutsche Grammophon GmbH, Berlin + +CD 21: Igor Stravinsky – Pétrouchka, Le Sacre Du Printemps +00289 483 5386 • Total time: 68:20 • DDD +Recorded: Ohio, Cleveland, Masonic Auditorium, March 1991 +Publishers: Boosey & Hawkes Music Publishers Ltd. / Edwin F. Kalmus & Co., Inc (Pétrouchka - Original 1911 Version); Boosey & Hawkes Music Publishers Ltd. / Edition Russe de la Musique, Moscow (Sacre) +First released as 435 769-2 [r1244873] +Sleeve cover is a modified version of [r1244873] +Cover © Jörg Reichardt, Paris +℗ 1992 Deutsche Grammophon GmbH, Berlin + +CD 22: Franck – Symphony / Poulenc – Organ Concerto +00289 483 5378 • Total time: 59:35 • DDD +Recorded: Boston, Symphony Hall, November 1991 (Franck - Live Recording), November & December 1991 (Poulenc) +Publisher: Éditions Salabert, Paris (Poulenc) +First released as 437 827-2 [r20832313] +Sleeve cover is a modified version of [r20832313] +Cover illustration © Ralf Krieger, Hamburg +℗ 1993 Deutsche Grammophon GmbH, Berlin + +CD 23: Richard Wagner – Orchestral Music: Tannhaüser, Parsifal, Tristan Und Isolde +00289 483 5387 • Total time: 69:49 • DDD +Recorded: Berlin, Philharmonie, November 2000 (Tracks 23-3, 23-7, 23-8); Salzburg, Großes Festspielhaus, March 2002 +Recorded Live: Tracks 23-2, 23-7, 23-8 +First released as 474 377-2 [r1734758] +Cover © Marco Caselli Nirmal +℗ 2003 Deutsche Grammophon GmbH, Berlin + +CD 24: German Overtures +00289 483 5388 • Total time: 71:19 • DDD +Recorded: Vienna, Musikverein, Großer Saal, September 2002 (Track 24-1), November 2002 (Tracks 24-2 to 24-7) +First released as 474 502-2 [r20092441] +Cover © Harald Hoffmann +℗ 2004 Deutsche Grammophon GmbH, Berlin + +CD 25: Modest Mussorgsky – Pictures At An Exhibition +00289 483 5389 • Total time: 50:36 • DDD +Recorded: Vienna, Musikverein, Großer Saal, April 2016 +First released as 479 6297 [r11264094] +Sleeve cover is from [r11264094] +Cover © Julia Becker +℗ 2016 Deutsche Grammophon GmbH, Berlin + +CD 26: Mendelssohn – Symphonies 4 »Italian« & 5 »Reformation« +00289 483 5390 • Total time: 60:04 • DDD +Recorded Live: Paris, Philharmonie, Grande salle Pierre Boulez, February 2016 +Edition: Christopher Hogwood +Publisher: Bärenreiter / Alkor Edition, Kassel +First released as 479 7340 [r11873671] +Sleeve cover is a modified version of [r11873671] +Cover © Hans van der Woerd +℗ 2017 Deutsche Grammophon GmbH, Berlin + +CD 27: Bruckner – Symphony No. 4 / Wagner – Lohengrin Prelude +00289 483 5391 • Total time: 79:24 • DDD +Recorded Live: Gewandhaus zu Leipzig, Großer Saal, May 2017 +Publisher: Musikwissenschaftlicher Verlag, Vienna / Alkor-Edition Kassel (Bruckner/Nowak) +First released as 479 7577 [r11737956] +Sleeve cover is from [r11737956] +Cover © Marco Borggreve +℗ 2018 Deutsche Grammophon GmbH, Berlin + +CD 28: Early Concerto Recordings (1928-1943) +00289 483 5392 • Total time: 80:36 • ADD • MONO +Recorded: Germany, 1928 (Chopin), 1939 (Brahms), 1942 (Schumann, Bruch), January 1943 (Sibelius); Paris, 1935 (Stravinsky); Berlin, 1941 (Mozart) +Publishers: Boosey & Hawkes Ltd / Schott Musikverlage International Mainz (Stravinsky); Robert Lienau, Frankfurt (Sibelius) +Cover © Anja Hoppe +℗ 1928 (Chopin), 1935 (Stravinsky), 1940 (Brahms), 1941 (Mozart), 1942 (Schumann, Bruch), 1943 (Sibelius) Deutsche Grammophon GmbH, Berlin + +CD 29: Sviatoslav Richter: Rachmaninov – Piano Concerto No. 2 / Tchaikovksy – Piano Concerto No. 1 +00289 483 5393 • Total time: 70:41 • ADD +Recorded: Warsaw, Philharmonic Hall, May 1959 (Rachmaninov); Vienna, Musikvereinssaal, September 1962 (Tchaikovsky) +Co-production with Polskie Nagrania, Warsaw (Rachmaninov) +First released as 138076 (Rachmaninov) [r6484253]; 138822 (Tchaikovsky) [r9325710] +Sleeve cover is a modified version of [r6484253] +Cover © DG Archive, all rights reserved +℗ 1959 (Rachmaninov), 1963 (Tchaikovsky) Deutsche Grammophon GmbH, Berlin + +CD 30: Pierre Fournier, Violoncello: Saint-Saëns – Cellokonzert Nr. 1 A-Moll / Lalo – Cellokonzert D-Moll / Bruch – Kol Nidrei Op. 47 +00289 483 5394 • Total time: 78:39 • ADD +Recorded: Paris, Salle de la Mutualité, May 1960 (Lalo; Saint-Saëns; Bruch); Berlin, Ufa-Tonstudio, October 1966 (Bloch) +Publisher: G. Schirmer (Bloch) +First released as 138669 (Lalo: Saint-Saëns; Bruch) [r20806909]; 139128 (Bloch) [r8196955] +Sleeve cover is a modified version of [r6915971] +Cover © Kurt Julius +℗ 1961 (Lalo: Saint-Saëns; Bruch), 1967 (Bloch) Deutsche Grammophon GmbH, Berlin + +CD 31: Bach – Violin Concertos BWV 1041-1043 / Beethoven – Violin Romances Opp. 40 & 50 +00289 483 5395 • Total time: 67:09 • ADD +Recorded: Vienna, Konzerthaus, Mozartsaal, June 1962 (BWV 1041 & 1042); London, Wembley Town Hall, February 1961 (BWV 1043; Romances) +First released as 138820 (BWV 1041 & 1042) [r2601565]; 138714 (BWV 1043; Romances) [r6756775] +Sleeve cover is a modified version of [r2601565] +Cover © Erich Auerbach +℗ 1962 Deutsche Grammophon GmbH, Berlin + +CD 32: Wolfgang Amadeus Mozart – Violinkonzert = Violin Concerto = Concerto Pour Violon Nr. 1 KV 207 / Adagio KV 261 / Rondo KV 269 / KV373 +00289 483 5396 • Total time: 55:09 • ADD +Recorded: Berlin, UFA-Tonstudio, February 1967 +First released as 139350-51 [r6099999] +Sleeve cover is a modified version of [r8723374] +Cover © DG Archive, all rights reserved +℗ 1968 Deutsche Grammophon GmbH, Berlin + +CD 33: Mendelssohn / Tschaikowsky – Violinkonzerte = Violin Concertos +00289 483 5397 • Total time: 57:58 • ADD +Recorded: Vienna, Musikverein, Großer Saal, September 1972 (Tchaikovsky), March 1973 (Mendelssohn) +First released as 2530359 [r1660485] +Sleeve cover is a modified version of [r10936627] +Cover © Siegfried Lauterwasser +℗ 1973 Deutsche Grammophon GmbH, Berlin + +CD 34: Mozart – Piano Concertos No. 20 & 21 +00289 483 5398 • Total time: 62:18 • ADD +Recorded: Vienna, Musikverein, Großer Saal, September 1974 +First released as 2530548 [r2589398] +Sleeve cover is a modified version of [r2589398] +Cover © Siegfried Lauterwasser +℗ 1975 Deutsche Grammophon GmbH, Berlin + +CD 35: Vivaldi / Tartini / Boccherini – Cello-Konzerte = Cello Concertos +00289 483 5399 • Total time: 50:20 • ADD +Recorded: Zurich, Kleiner Tonhallesaal des Kongresshauses, September 1977 +Editions: Schott Musikverlag Mainz (Boccherini); Ricordi, Milano (Vivaldi); Zanibon, Padova (Tartini) +Publishers: Schott Musikverlage International Mainz (Boccherini cadenzas); Zanibon, Padova (Tartini cadenzas) +First released as 2530974 [r4874582] +Sleeve cover is from [r4874582] +Cover © Anthony Altaffer +℗ 1978 Deutsche Grammophon GmbH, Berlin + +CD 36: Ludwig van Beethoven – Klavierkonzerte Nos. 1 & 3 +00289 483 5400 • Total time: 76:08 • ADD +Recorded Live: Vienna, Musikverein, Großer Saal, February 1979 (Op. 37), September 1979 (Op. 15) +Live recordings of televised concerts +First released as 2531302 (Op. 15) [r3672809]; 423 320-2 (Op. 37) [r7890823] +Sleeve cover is a modified version of [r3672809] +Cover © Siegfried Lauterwasser +℗ 1980 (Op. 15), 1987 (Op. 37) Deutsche Grammophon GmbH, Berlin + +CD 37: Johannes Brahms – Klavierkonzert = Piano Concerto No. 1 +00289 483 5401 • Total time: 45:58 • ADD +Recorded: Vienna, Musikverein, Großer Saal, December 1979 +First released as 2531294 [r11072524] +Sleeve cover is a modified version of [r11072524] +Cover © Gabriela Brandenstein +℗ 1980 Deutsche Grammophon GmbH, Berlin + +CD 38: Antonín Dvořák / Robert Schumann – Cello Concertos +00289 483 5402 • Total time: 68:00 • DDD +Recorded Live: Vienna, Musikverein, Großer Saal, October & November 1985 (Schumann); Tel Aviv, Frederic R. Mann Auditorium, May & June 1988 (Dvořák) +First released as 419 190-2 (Schumann) [r7780623]; 427 347-2 (Dvořák) [r8215922] +Sleeve cover is a modified version of [r7780623] +Cover © Unitel +℗ 1986 (Schumann), 1989 (Dvořák) Deutsche Grammophon GmbH, Berlin + +CD 39: Franz Liszt – Klavierkonzerte Nos. 1 & 2 / Totentanz +00289 483 5403 • Total time: 55:32 • DDD +Recorded: Boston, Symphony Hall, April 1987 +First released as 423 571-2 [r13444074] +Sleeve cover is a modified version of [r13444074] +Cover © Susesch Bayat +℗ 1988 Deutsche Grammophon GmbH, Berlin + +CD 40: Wolfgang Amadeus Mozart – Clarinet Concerto / Horn Concertos Nos. 1 & 4 +00289 483 5404 • Total time: 54:58 • DDD +Charles Neidich and David Jolley are members of the Orpheus Chamber Orchestra +Recorded: New York, State University of New York at Purchase, Performing Arts Center, March 1987 +First released as 423 377-2 [r5840476] +Sleeve cover is a modified version of [r5840476] +Cover © Udo Nolte, Lamers Art Agentur, Dortmund +℗ 1988 Deutsche Grammophon GmbH, Berlin + +CD 41: Prokofiev – Piano Concertos Nos. 1 & 3 +00289 483 5405 • Total time: 42:18 • DDD +Recorded: Berlin, Philharmonie, Großer Saal, September 1993 (tracks 41-4 to 41-6 recorded live) +Publishers: Robert Forsberg (op. 10); Boosey & Hawkes Music Publishers Ltd / Boosey & Hawkes, Inc. / S & N Koussevitzky (op. 26) +First released as 439 898-2 [r8220303] +Sleeve cover is a modified version of [r8220303] +Cover © Susesch Bayat +℗ 1994 Deutsche Grammophon GmbH, Berlin + +CD 42: Martha Argerich: Shostakovich – Piano Concerto No. 1 / Haydn – Piano Concerto No. 11 +00289 483 5406 • Total time: 41:34 • DDD +Recorded: Ludwigsburg, Kirche der Karlshöhe, January 1993 +Publishers: Anglo-Soviet Music Press / Boosey & Hawkes / Musikverlage International Hans Sikorski (Shostakovich); Wanda Landowska (Haydn cadenza) +First released as 439 864-2 [r8671865] +Sleeve cover is a modified version of [r8671865] +Cover © Susesch Bayat +℗ 1994 Deutsche Grammophon GmbH, Berlin + +CD 43: Anne-Sophie Mutter: Brahms – Violinkonzert / Schumann – Fantasie Op. 131 +00289 483 5409 • Total time: 53:22 • DDD +Recorded during two concerts: New York, Avery Fischer Hall, July 1997 +Publishers: N. Simrock, Hamburg–London (Joseph Joachim / Ossip Schnirlin) +First released as 457 075-2 [r1211486] +Sleeve cover is a modified version of [r1211486] +Cover © Tom Specht +℗ 1997 Deutsche Grammophon GmbH, Berlin + +CD 44: Credo: Hélène Grimaud +00289 483 5407 • Total time: 68:21 • DDD +Recorded: Stockholm, Sveriges Radio, Berwaldhallen, September 2003 (tracks 44-5 to 44-7 recorded live) +A co-production with Swedish Radio +Publishers: G. Schirmer, New York (Corigliano); Universal Edition AG, Vienna (Pärt) +First released as 471 769-2 [r3338566] +Sleeve cover is from [r3338566] +Cover © Sarah Moon +℗ 2003 Deutsche Grammophon GmbH, Berlin + +CD 45: Lisa Batiashvili: Echoes Of Time +00289 483 5408 • Total time: 67:48 • DDD +Recorded: Munich, Residenz Herkulessaal, May 2010; Paris, IRCAM, Espace de projection, November 2010 +A recording in cooperation with BR-Klassik +Publishers: Internationale Musikverlage Hans Sikorski (Shostakovich); G. Schirmer Music Publishers (Kancheli); Universal Edition, Wien (Pärt); Boosey & Hawkes Inc. (Rachmaninov) +First released as 477 9299 [r3751275] +Sleeve cover is from [r3751275] +Cover © Anja Frers +℗ 2011 Deutsche Grammophon GmbH, Berlin + +CD 46: Yuja Wang: Rachmaninov #3 / Prokofiev #2 +00289 483 5410 • Total time: 71:44 • DDD +Recorded: Caracas, Centro de Acción Social por la Música, Sala Simón Bolívar, February 2013 +Publisher: Boosey & Hawkes / Bote & Bock GmbH & Co. KG (Prokofiev) +First released as 479 1304 [r8004156] +Sleeve cover is from [r8004156] +Cover © Leila Méndez +℗ 2013 Deutsche Grammophon GmbH, Berlin + +CD 47: Hilary Hahn: Mozart 5, Vieuxtemps 4 – Violin Concertos +00289 483 5411 • Total time: 59:43 • DDD +Recorded: Bremen, Kammer-Philharmonie, December 2012 (Mozart); Stuhr, Gut Varrel, www.gut-varrel.de, August 2013 (Vieuxtemps) +Edition: Bärenreiter-Verlag (Mozart) +First released as 479 3956 [r11841656] +Sleeve cover is from [r11841656] +Cover © Michael Patrick O'Leary +℗ 2015 Hilary Hahn, under exclusive license to Deutsche Grammophon GmbH, Berlin + +CD 48: Albrecht Mayer: Kammerakademie Potsdam – Lost And Found +00289 483 5412 • Total time: 72:42 • DDD +Recorded: Berlin, Jesus-Christus-Kirche, January 2013 +A co-production with Deutschlandradio Kultur +Source: Hoffmeister – Biblioteka Uniwersytecka we Wrocławiu, Signatur 61253 Muz Landesbibliothek Mecklenburg-Vorpommern, Signatur Mus 1341/4 (oboe part only); Lebrun – Published posthumously as No. 2 in a collection of six concertos (André, Offenbach 1804); Fiala – Transposed version of the Concerto in E flat major; Koželuh – Biblioteka Uniwersytecka we Wrocławiu, Signatur 61255 Muz +Publisher: Bärenreiter-Verlag, Praha (Fiala) +First released as 479 2942 [r7389165] +Sleeve cover is from [r7389165] +Cover © Harald Hoffmann +℗ 2014 Deutschlandradio / Deutsche Grammophon GmbH, Berlin + +CD 49: Chopin: Piano Concerto No. 1 / Ballades +00289 483 5413 • Total time: 78:55 • DDD +Recorded: London, Abbey Road Studios, June 2016 (Concerto); Hamburg-Harburg, Friedrich-Ebert-Halle, September 2016 (Ballades) +First released as 479 5941 [r12585484] +Sleeve cover is from [r12585484] +Cover © Harald Hoffmann +℗ 2016 Deutsche Grammophon GmbH, Berlin + +CD 50: Early Piano Recordings (1907-1943) +00289 483 5414 • Total time: 58:40 • ADD • MONO +Recorded: Germany, November 1940 (Schubert), 1922 (Mozart), 1928 (Liszt), 1936 (Bach; Chopin op. 9), 1939 (Chopin op. 28); Vienna, 1907 (Moszkowski), April 1913 (Strauss); Berlin, Polydor Studios, March 1943 (Schumann) +Publisher: Bote & Bock, Berlin (Bach) +Cover © Anja Hoppe +℗ 1907 (Moszkowski), 1913 (Strauss), 1922 (Mozart) 1928 (Liszt), 1936 (Bach, Chopin op. 9), 1939 (Chopin op. 28), 1940 (Schubert), 1943 (Schumann) Deutsche Grammophon GmbH, Berlin + +CD 51: Monique Haas Spielt Ravel, Debussy, Roussel, Bartók +00289 483 5415 • Total time: 62:30 • ADD • MONO +Recorded: Hamburg, Studio Blankenese, June 1949 (Debussy, Roussel, Bartók); Hanover, Beethovensaal, January 1955 (Le Tombeau de Couperin), November 1955 (Sonatina, Valses nobles et sentimentales) +First released as 18302 (Ravel) [r11065592]; 18077 (Debussy, Bartók, Roussel) [r20291977] +Sleeve cover is a modifed version of [r13823796] +Cover © DG Archive, all rights reserved +℗ 1949 (Roussel), 1953 (Debussy & Bartók), 1956 (Ravel) Deutsche Grammophon GmbH, Berlin + +CD 52: Ludwig Van Beethoven: Klaviersonate Nr. 8 C-Moll Op. 13 (Pathétique), Nr. 31 As-Dur Op. 110 +00289 483 5416 • Total time: 81:25 • ADD • MONO +Recorded: Hanover, Beethoven-Saal, December 1956 +Presenting Elly Ney's Beethoven sonatas on a single CD has necessitated omitting a third-movement repeat in op. 57 observed by the artist at the original recording sessions. +First released as 19084 (opp. 13 & 110) [r5440294]; 19085 (opp. 27 no. 2 & 57) [r11199630] +Sleeve cover is from [r5440294] +Cover © DG Archive, all rights reserved +℗ 1957 Deutsche Grammophon GmbH, Berlin + +CD 53: Franz Schubert: Sonata No. 14 In A Major D.664, Moments Musicaux D.780, Hüttenbrenner Variations +00289 483 5417 • Total time: 62:57 • ADD +Recorded: Beethovensaal, Hannover, January 1967 (D 664), August 1967 (D 780), August 1970 (D 576) +First released as 139322 (D 664) [r2637349]; 139372 (D 780) [r4620852]; 2530090 (D 576) [r4670131] +Sleeve cover is a modified version of [r4620852] +Cover © Erich Auerbach, London +℗ 1967 (D 664), 1968 (D 780), 1971 (D 576) Deutsche Grammophon GmbH, Berlin + +CD 54: Arturo Benedetti Michelangeli, Claude Debussy: Images I/II, Children's Corner +00289 483 5418 • Total time: 44:31 • ADD +Recorded: Munich, Residenz, Plenarsaal, August 1971 +First released as 2530196 [r11613618] +Sleeve cover is a modified version of [r9168519] +Cover: Claude Debussy, painting by Henri Pinta (Académie de France à Rome) +℗ 1971 Deutsche Grammophon GmbH, Berlin + +CD 55: Igor Strawinsky: »Pétrouchka« / Serge Prokofieff: Sonata Nr. 7 Op. 83 +00289 483 5419 • Total time: 67:57 • ADD +Recorded: Munich, Residenz, Herkulessaal, September 1971 (Stravinsky; Prokofiev), July 1976 (Webern; Boulez) +Publishers: Boosey & Hawkes Music Publishers Ltd (Stravinsky); Sikorski Musikverlag (Prokofiev); Universal Edition, Wien (Webern); Universal Edition, Wein / Heugel & Cie, Paris (Boulez) +First released as 2530225 (Stravinsky; Prokofiev) [r10393892]; 2530803 (Webern; Boulez) [r5298170] +Sleeve cover is a modified version of [r4031075] +Cover © Paolo Gianbarberis +℗ 1972 (Stravinsky; Prokofiev), 1978 (Webern; Boulez) Deutsche Grammophon GmbH, Berlin + +CD 56: Beethoven: Sonaten – Tempest, Waldstein, Les Adieux +00289 483 5420 • Total time: 68:06 • ADD / DDD (op.31 no. 2) +Recorded: Berlin, UFA-Tonstudio, January 1972 (op. 53); Berlin, Johannesstift, December 1974 (op. 81a); Berlin, Jesus-Christus-Kirche, October 1981 (op. 31 no. 2) +First released as 2532061 (op. 31 no. 2) [r2666136]; 2530253 (op. 53) [r4839764]; 2530589 (op. 81a) [r7914875] +Sleeve cover is a modified version of [r6322484] +Cover: Painting by C.D. Friedrich (“Das Eismeer”) Ektachrome: Hamburger Kunsthalle +℗ 1972 (op. 53), 1975 (op. 81a), 1982 (op.31 no. 2) Deutsche Grammophon GmbH, Berlin + +CD 57: Johannes Brahms: Variationen Für Klavier = Variations For Piano +00289 483 5421 • Total time: 62:42 • ADD +Recorded: London, Rosslyn Hill Chapel, July 1972 +First released as 2530335 [r8044659] +Sleeve cover is a modified version of [r8044659] +Cover © Clive Barda +℗ 1973 Deutsche Grammophon GmbH, Berlin + +CD 58: Johannes Brahms: Ungarische Tänze No. 1-21 / Walzer Op. 39 +00289 483 5422 • Total time: 71:30 • ADD +Recorded: Munich, Residenz, Alter Herkulessaal, January 1976 (Hungarian Dances); Berlin, Jesus-Christus-Kirche, October 1980 (Waltzes) +First released as 2530710 (Hungarian Dances) [r1097567]; 2740278 (set) (Waltzes) [r8692226] +Sleeve cover is a modified version of [r1097567] +Cover © Siegfried Lauterwasser +℗ 1976 (Hungarian Dances), 1983 (Waltzes) Deutsche Grammophon GmbH, Berlin + +CD 59: Chopin, Argerich: Sonate No. 2 B-Moll »Mit Dem Trauermarsch« (In B Flat Minor)/ Sonate No. 3 H-Moll (In B Minor) +00289 483 5423 • Total time: 55:34 • ADD +Recorded: Hanover, Beethovensaal, July 1960 (op. 39); Munich, Plenarsaal Der Wissenschaften, January 1967 (op. 58); Munich, Residenz, Herkulessaal, July 1974 (op. 35) +First released as 2530530 (op. 35) [r2950246]; 138672 (op. 39) [r7946214]; 139317 (op. 58) [r7072921] +Sleeve cover is a modified verson of [r4851264] +Cover © M. Evans, London +℗ 1961 (op. 39), 1967 (op. 58). 1975 (op. 35) Deutsche Grammophon GmbH, Berlin + +CD 60: Ravel: Gaspard De La Nuit / Prokofiev: Piano Sonata = Klaviersonate No. 6 +00289 483 5424 • Total time: 51:37 • DDD +Recorded: Munich, Hochschule für Musik, October 1982 +Publisher: Musikverlage International Hans Sikorski (Prokofiev) +First released as 2532093 [r2642862] +Sleeve cover is a modified verson of [r2642862] +Cover © Malcom Crowthers +℗ 1983 Deutsche Grammophon GmbH, Berlin + +CD 61: Horowitz The Poet - Schubert: Sonata In B Flat D 960 / Schumann: Kinderszenen +00289 483 5425 • Total time: 56:01 • DDD +Recorded: New York City, RCA Studios, February and March 1986 (Schubert); Live at Vienna, Musikverein, Großer Saal, May 1987, by Austrian Radio (ORF) (Schumann) +Publisher: Breitkopf & Härtel (ed. K.M. Komma, Schumann) +First released as 435 025-2 [r5702466] +Sleeve cover is a modified version of [r5702466] +Cover © Arthur Umboh +℗ 1990 (Schumann), 1991 (Schubert) Deutsche Grammophon GmbH, Berlin + +CD 62: Mozart: Klaviersonaten = Piano Sonatas K.331 »Alla Turca«, K.457; Fantasias K.397, K.475 +00289 483 5426 • Total time: 61:50 • DDD +Recorded: Hamburg Harburg, Friedrich-Ebert-Hall, April 1990 +First released as 429 739-2 [r3752440] +Sleeve cover is a modified version of [r3752440] +Cover © Christian Steiner, New York +℗ 1990 Deutsche Grammophon GmbH, Berlin + +CD 63: Lang Lang: Live At Carnegie Hall +00289 483 5427 • Total time: 68:24 • DDD +Recorded Live: New York, Carnegie Hall, Isaac Stern Auditorium, 7 November 2003 +Publisher: G. Schirmer, Inc., New York (Tan Dun) +First released as 474 820-2 (table of contents image says 474 821-2) [r3423764] +Sleeve cover is from [r3423764] +Cover © J. Henry Fair +℗ 2004 Deutsche Grammophon GmbH, Berlin + +CD 64: Trifonov: The Carnegie Recital +00289 483 5428 • Total time: 78:46 • DDD +Recorded Live: New York City, Carnegie Hall, Stern Auditorium / Perelman Stage, 5 February 2013 +Publisher: Boosey & Hawkes Music Publishers Ltd (Medtner) +First released as 479 1728 [m1572433] +Sleeve cover is from [m1572433] +Cover © Dario Acosta +℗ 2013 Deutsche Grammophon GmbH, Berlin + +CD 65: Johann Sebastian Bach: The French Suites +00289 483 5429 • Total time: 43:03 • DDD +Recorded: Berlin, Funkhaus Nalepastraße, Saal 1, July 2013 +First released as CD 1 of 479 6565 [r9310204] +Sleeve cover is a modified version of [r9310204] +Cover © Felix Broede +℗ 2016 Deutsche Grammophon GmbH, Berlin + +CD 66: Sokolov: Schubert +00289 483 5430 • Total time: 65:07 • DDD +Recorded Live: Warsaw, Philharmonic Concert Hall, 12 May 2013 +First released as 479 5427 [r8176723] +Sleeve cover is a modified version of [r8176723] +Cover © Klaus Rudolph +℗ 2016 AMC s.r.l Verona, under exclusive license to Deutsche Grammophon GmbH, Berlin + +CD 67: Early Chamber Music Recordings (1911-1951) +00289 483 5431 • Total time: 81:43 • ADD • MONO +By courtesy of BMG Classics (Kreisler) +Recorded: London, Gramophone Company, November 1911 (Kreisler); New Jersey, Camden, April 1913 (Hummel); Germany, no date (Hindemith), 1922 (Tartini), 1928 (Franck; Dvořák op. 96), 1932 (Beethoven op. 12), 1935 (Sarasate: Handel; Debussy), May 1935 (Beethoven Op. 47), 1937 (Paganini); Berlin, Hochschule für Musik, March 1938 (Dvořák op. 101), 1942 (Franck); Munich, Herkulessaal, August 1951 (Szymanowski) +Publisher: Schott Music GmbH & Co. KG, Mainz (Tartini) +Cover © Anja Hoppe +℗ 1911 (Kreisler), 1913 (Hummel), 1922 (Tartini), 1928 (Hindemith, Franck mvmt 3, Dvořák op. 96), 1932 (Beethoven op. 12), 1935 (Beethoven op. 47, Sarasate, Handel, Debussy), 1937 (Paganini), 1938 (Dvořák op. 101), 1942 (Franck mvmt 1), 1953 (Szymanowski) Deutsche Grammophon GmbH, Berlin + +CD 68: Franz Schubert: Forellen-Quintett A-Dur Op. 114 / Streichquartett Nr. 14 D-Moll Op. Posth. (Der Tod Und Das Mädchen) +00289 483 5432 • Total time: 74:07 • ADD • MONO +Recorded: Hamburg, Studio Thienhaus, May 1950 (D 810); Hanover, Beethovensaal, November 1952 (D 667) +First Released as 18043 (D 810) [r16031177]; 18072 (D 667) [r5359511] +Sleeve cover is a modified version of [r14426590] +Cover © DG Archive, all rights reserved +℗ 1950 (D 810), 1953 (D 667) Deutsche Grammophon GmbH, Berlin + +CD 69: Haydn: Kaiserquartett (Emperor) / Mozart: Jagdquartett (Hunting) +00289 483 5433 • Total time: 62:42 • ADD +Recorded: Hanover, Beethovensaal, June 1963 (K 458), September 1963 (op. 76 no. 3); Berlin, UFA-Tonstudio, May 1966 (op. 76 no. 2) +First released as 139191 (op. 76 no. 2) [r5403585]; 138886 (op. 76 no. 3 & K 458) [r6251762] +Sleeve cover is a modified version of [r6251762] +Cover © DG Archive, all rights reserved +℗ 1964 (op. 76 no. 3, K 458), 1966 (op. 76 no. 2) Deutsche Grammophon GmbH, Berlin + +CD 70: Meister Ihres Instruments III: Aurele Nicolet +00289 483 5434 • Total time: 55:10 • ADD +Recorded: Berlin, St. Michaelsheim, November 1969 +Publisher: Edizione Suvini Zerboni SpA, Milano (Fukushima) +First released as 2538067 [r3432012] +Sleeve cover is from [r3432012] +Cover © Bernd Christian Wetzel, Hamburg +℗ 1970 Deutsche Grammophon GmbH, Berlin + +CD 71: Johannes Brahms: String Quartets Nos. 1 & 3 / Joseph Haydn: String Quartet Op. 76 No. 4 »Sunrise« +00289 483 5435 • Total time: 82:21 • ADD +Recorded: Munich, Plenarsaal der Wissenschaften, February 1969 (Haydn); Stuttgart, Mozartsaal des Kultur- und Kongresszentrums Liederhalle, October 1972 (Brahms) +First released as 2530345 (Brahms) [r5817825]; previously unreleased (Haydn) +Sleeve cover is a modified version of [r5817825] +Cover © Wiebke Quante, Leonberg +℗ 1969/2018 (Haydn), 1973 (Brahms) Deutsche Grammophon GmbH, Berlin + +CD 72: Arnold Schoenberg: Verklärte Nacht = Transfigured Night / Streichtrio = String Trio +00289 483 5436 • Total time: 46:13 • DDD +Recorded: Hamburg, Friedrich-Ebert-Halle (op. 4) +Publishers: International Music Company, New York (op. 4); Boelke-Bomart / Mobart Music Publishers / Universal Edition, Wien (op. 45) +First released as 410 962-2 [r3238054] +Sleeve cover is a modified version of [r3238054] +Cover © H. Wolter / K. Strinberg, Hamburg +℗ 1984 Deutsche Grammophon GmbH, Berlin + +CD 73: Debussy, Ravel, Webern: Streichquartette = String Quartets = Quatuors À Cordes +00289 483 5437 • Total time: 70:04 • DDD +Recorded: Munich, Residenz, Max-Joseph-Saal, January 1992 (Debussy, Webern); Rapperswil, Schloss Rapperswil, Rittersaal, January 1993 (Ravel) +Publisher: Boosey & Hawkes Music Publishers Ltd / Carl Fischer, Inc. (Webern) +First released as 437 836-2 [r1244652] +Sleeve cover is a modified version of [r1244652] +Cover © Susesch Bayat +℗ 1994 Deutsche Grammophon GmbH, Berlin + +CD 74: Ludwig Van Beethoven: The String Quartets: Rasumovsky No. 3, Harp, Serioso +00289 483 5438 • Total time: 77:36 • DDD +Recorded: New York, American Academy and Institute of Arts & Letters, December 1994 +First released as 447 079-2 [r5226473] +Sleeve cover is a modified version of [r5226473] +Cover © DG Archive, all rights reserved +℗ 1997 Deutsche Grammophon GmbH, Berlin + +CD 75: Argerich, Kremer, Bashmet, Maisky - Brahms: Klavierquartett Op. 25 / Schumann: Fantasiestücke Op. 88 +00289 483 5439 • Total time: 58:18 • DDD +Recorded: Berlin, Teldex Studio, February 2002 +First released as 463 700-2 [r4371307] +Sleeve cover is from [r4371307] +Cover © Felix Broede +℗ 2002 Deutsche Grammophon GmbH, Berlin + +CD 76: Anne-Sophie Mutter - Mozart: Piano Trios K. 502 542, 548 +00289 483 5440 • Total time: 61:05 • DDD +Recorded Live: Baden-Baden, Festspielhaus, May 2005 +First released as 477 5796 [r6275271] +Sleeve cover is from [r6275271] +Cover © Tina Tahir +℗ 2006 Deutsche Grammophon GmbH, Berlin + +CD 77: Daniel Hope - Mendelssohn: Violinkonzert, Octet, Lieder +00289 483 5441 • Total time: 64:13 • DDD +Recorded: Graz, Grazer Congress, Stefaniensaal (Concerto) & Kammermusiksaal (Octet, Songs), June 2007 +Publishers: Bärenreiter, Kassel (Concerto - Original 1844 Version); Breitkopf & Härtel Musikverlag (Octet - Critically revised edition 1832) +First released as 477 6634 [r5405054] +Cover is from [r5405054] +Cover © Felix Broede +℗ 2007 Deutsche Grammophon GmbH, Berlin + +CD 78: Early Opera Recordings 1 (1903-1942) +00289 483 5442 • Total time: 82:45 • ADD • MONO +By courtesy of EMI Classics (tracks 78-1, 78-2, 78-7); BMG Classics (tracks 78-3 to 78-5) +Recorded: Ospedaletti, near San Remo, February 1903 (tracks 78-1, 78-2); New York, February 1904 (78-6), February 1907 (78-5), March 1907 (tracks 78-3, 78-4); St Petersburg, October 1911 (78-7); Berlin, 1917 (78-8), 1928 (78-10, 78-11), June 1934 (78-13), January 1935 (78-14), August 1935 (78-15), November 1935 (78-17, 78-18), January 1937 (78-19), June 1937 (78-16), October 1937 (78-12), 1939 (78-21), April 1939 (78-20), 1942 (78-22, 78-23), January 1942 (78-25); Germany, 1927 (78-9), 1941 (78-24) +Cover © Anja Hoppe +℗ 1903 (tracks 78-1, 78-2); 1904 (78-6), 1907 (78-3 to 78-5), 1911 (78-7); 1917 (78-8), 1927 (78-9), 1928 (78-10, 78-11), 1934 (78-13), 1935 (78-14, 78-15, 78-17, 78-18), 1937 (78-12, 78-16, 78-19 to 78-21), 1941 (78-24), 1942 (78-22, 78-23, 78-25) +Deutsche Grammophon GmbH, Berlin +This compilation ℗ 2018 Deutsche Grammophon GmbH, Berlin + +CD 79: Early Opera Recordings 2 (1925-1942) +00289 483 5443 • Total time: 82:34 • ADD • MONO +Recorded: June 1944 (track 79-9); Germany, 1925 (79-10), January 1927 (79-1, 79-4), 1928 (79-3), 1929 (79-2), 1935 (79-5), October 1935 (79-7), 1942 (79-8), May 1942 (79-16), December 1942 (79-17); Berlin, June 1928 (79-11 to 79-14), June 1930 (79-15), January 1935 (79-6) +Publisher: Edition Richard Strauss +Cover © Anja Hoppe +℗ 1925 (track 79-10), 1927 (79-1, 79-4), 1928 (79-3, 79-11 to 79-14), 1929 (79-2), 1930 (79-15), 1935 (79-5 to 79-7), 1942 (79-8, 79-16, 79-17), 1944 (79-9) Deutsche Grammophon GmbH, Berlin + +CD 80: Weber: Der Freischütz (Als Kurz-Oper) +00289 483 5444 • Total time: 72:18 • ADD • MONO +Recorded: Germany, June 1939 (Overture); Berlin, June 1943 (Opera) +First released as 15308 (Overture) [r15433174]; 68074-81 (Opera) +Cover © Anja Hoppe +℗ 1939 (Overture), 1943 (Opera) Deutsche Grammophon GmbH, Berlin + +CD 81: Rita Streich Singt Opern-Arien +00289 483 5445 • Total time: 61:25 • ADD • MONO +Recorded: Munich, Residenzsaal, September 1953 (Track 81-11), April 1955 (81-4); Berlin, Jesus-Christus-Kirche, October 1953 (81-6 to 81-8, 81-10), February 1954 (81-5), June 1955 (81-2), November 1955 (81-1, 81-3), April 1957 (81-13), February 1958 (81-9, 81-12) +First released as 30217 (81-1) [r13766891]; 18269 (81-2) [r21481951], 30225 (81-3, 81-4) [r13766834]; 19013 (81-5) [r17728300]; 17011 (81-6) [r10414125]; 32011 (81-7, 81-8, 81,10) ; 19137 (81-9, 81-12) ; 18169 (81-11) ; 30288 (81-13) [r6180203] +This collection previously released as [r16233670] which uses the original German cover +Sleeve cover is from the German release of [m1346667] +Cover © DG Archive, all rights reserved +℗ 1954 (81-5 to 81-8, 81-10, 81-11), 1955 (81-2), 1956 (81-1, 81-3, 81,4), 1957 (81-13), 1958 (81-9, 81-12) Deutsche Grammophon GmbH, Berlin + +CDs 82-83: Giuseppe Verdi - La Traviata - Ileana Cotrubas, Plácido Domingo, Sherrill Milnes +00289 483 5446 / 5447 • Total time: 109:52 • ADD +Recorded: Munich, Bürgerbräukeller, May 1976 +First released as 2707 103 (set) [r2402801] +Sleeve cover is a modified version of [r2402801] (The "á" in "Plácido" and the relative size of the DG Logo) +Cover © Anne Kirchbach +℗ 1977 Deutsche Grammophon GmbH, Berlin + +CD 84: Plácido Domingo, Carlo Maria Giulini - Opern-Gala = Gala Opera Concert = Grands Airs D'Opéras +00289 483 5448 • Total time: 45:25 • DDD +Recorded: Los Angeles, Shrine Auditorium, November 1980 +First Released as 2532009 [r6061037] +Sleeve cover is from [r2325192] +Cover © DG Archive, all rights reserved +℗ 1981 Deutsche Grammophon GmbH, Berlin + +CD 85: Bryn Terfel - Wagner - Berliner Philharmoniker - Claudio Abbado +00289 483 5449 • Total time: 71:57 • DDD +Recorded: Berlin, Philharmonie, Großer Saal, November 2000 (Holländer - Live, Meistersinger, Tannhäuser, Walküre), May 2001 (Parsifal) +First released as 471 348-2 [r4472938] +Sleeve cover is from [r4472938] +Cover © 2000 SNOWDON +℗ 2002 Deutsche Grammophon GmbH, Berlin + +CD 86: Magdalena Kožená - Mozart Arias - Orchestra Of The Age Of Enlightenment - Simon Rattle +00289 483 5450 • Total time: 67:55 • DDD +Recorded: London, AIR Studios, Lyndhurst Hall, December 2005 +Language Coach: Rita de Letteriis +First released as 477 6272 [r8089979] +Sleeve cover is from [r8089979] +Cover © Sheila Rock +℗ 2006 Deutsche Grammophon GmbH, Berlin + +CD 87: Anna Netrebko, Rolando Villazón - Duets - Staatskapelle Dresden - Nicola Luisotti +00289 483 5451 • Total time: 71:08 • DDD +Recorded: Dresden, Lukaskirche, August 2006 +Publisher: Sociedad General de Autores y Editores de España (SGAE), Madrid (Luisa Fernanda) +First released as 477 6456 [r6116923] +Sleeve cover is from [r6116923] +Cover © KASSKARA +℗ 2007 Deutsche Grammophon GmbH, Berlin + +CD 88: Elīna Garanča - Bel Canto +00289 483 5452 • Total time: 64:34 • DDD +Recorded: Bologna, Auditorium Teatro Manzoni, November 2008 +Musical Assistants: Roberto Polastri, Stefano Conticello +Tracks 88-1 (Lucrezia Borgia) and 88-5 (Adelson e Salvini) were performed from the original manuscript +First released as 477 7460 [r1907712] +Sleeve cover is from [r1907712] +Cover © GABO +℗ 2009 Deutsche Grammophon GmbH, Berlin + +CDs 89-90: Joseph Haydn - Die Schöpfung = The Creation = La Création +00289 483 5453 / 5454 • Total time: 108:47 • ADD +Recorded: Berlin, Jesus-Christus-Kirche, February 1966, November 1968, April 1969 +First released as 2707 044 (set) [r18174481] +Sleeve cover is a modified version of [r18174481] in the style of the inset for [r7170085] +Cover © DG Archive, all rights reserved +℗ 1969 Deutsche Grammophon GmbH, Berlin + +CD 91: Mozart – Requiem – Mathis, Hamari, Ochman, Ridderbusch / Karl Böhm +00289 483 5455 • Total time: 64:13 • ADD +Recorded: Vienna, Musikverein, Großer Saal, April 1971 +Edition: Breitkopf & Härtel, Wiesbaden +First released as 2530143 [r1922469] +Sleeve cover is a modified version of [r18938521] +Cover: Stift Neukloster, Wiener Neustadt © Reinhard Jager, Hamburg +℗ 1971 Deutsche Grammophon GmbH, Berlin + +CD 92: Johann Sebastian Bach - Magnificat BWV 243 / Wachet Auf, Ruft Uns Die Stimme BWV 140 +00289 483 5456 • Total time: 63:56 • ADD +Recorded: Munich, Hochschule für Musik, Großer Saal, February and April 1961 (BWV 243); Munich, Residenz, Herkulessaal, May 1978 (BWV 140) +First released as 2533459 (BWV 140) [r3857379]; 198197 (BWV 243) [r15632679] +Cover © DG Archive, all rights reserved +℗ 1962 (BWV 243), 1979 (BWV 140) Deutsche Grammophon GmbH, Berlin + +CD 93: Biber – Missa Salisburgensis - Musica Antiqua Köln / Reinhard Goebel +00289 483 5457 • Total time: 71:42 • DDD +Recorded: Romsey, Abbey Church of SS. Mary & Ethelflaeda, July 1997 +Editions & Publishers: Missa & Motet, King's Music, ed. Clifford Bartlett in collaboration with Peter Best & Brian Clark; Sonata Sancti Polycarpi & Fanfares, ed. Peter Downey; Sonatae tam aris quam aulis servientes, Akademische Druck – und Verlagsanstalt, Graz-Wien, 1963 +Musica Antiqua Köln and Gabrieli Consort & players on authentic instruments +First released as 475 611-2 [r3720059] +Cover is a modified version of [r10265385] +Cover © Harro Wolter, Hamburg +℗ 1998 Deutsche Grammophon GmbH, Berlin + +CDs 94-95: Early Lied Recordings (1903-1938) / (1930-1942) +00289 483 5458 / 5459 • Total time: 127:46 • ADD • MONO +By courtesy of EMI Classics (tracks 94-1, 94-3) +Recorded: September 1914 (track 94-4), 1928 (94-11); Ospedaletti, near San Remo, February 1903 (94-1); Rome, April 1904 (94-2); London, September 1905 (94-3); Germany, 1914 (94-5), 1918 (94-6), 1923 (94-7), 1927 (94-15), 1928 (94-8 to 94-10, 94-12, 94-13, 94-17), 1930 (95-6, 95-8), 1932 (95-4, 95-5), 1934 (95-3, 95-7, 95-12), 1936 (95-16, 95-17), 1937 (95-15), 1938 (95-2), May 1938 (94-16), 1939 (95-11, 95-18, 95-19), 1941 (95-13, 95-14), 1942 (95-20); Berlin, 1921 (94-14), October 1934 (95-9), June 1936 (95-10); Berlin, Polydor Studios, June 1930 (95-1); +Publisher: Universal Edition, Wien (94-6); Copyright Control (94-7) +Cover © Anja Hoppe +℗ 1903 (track 94-1), 1904 (94-2), 1905 (94-3), 1914 (94-4, 94-5), 1918 (94-6), 1921 (94-14), 1923 (94-7), 1927 (94-15), 1928 (94-8 to 94-13, 94-17), 1930 (95-1, 95-6, 95-8), 1932 (95-4, 95-5), 1934 (95-3, 95-7, 95-9, 95-12), 1936 (95-10, 95-16, 95-17), 1937 (95-15), 1938 (94-16, 95-2), 1939 (95-11, 95-18 95-19), 1941 (95-13, 95-14), 1942 (95-20) Deutsche Grammophon GmbH, Berlin + +CD 96: Peter Anders Singt Franz Schuberts Winterreise +00289 483 5460 • Total time: 73:16 • ADD • MONO +Recorded: Germany, January and March 1945 +First released as DG 32281-85 [r7366791] +Sleeve cover is from [r7366791] +Cover © DG Archive, all rights reserved +℗ 1960 Deutsche Grammophon GmbH, Berlin + +CD 97: Fritz Wunderlich, Tenor - Schumann: Dichterliebe / Beethoven / Schubert +00289 483 5461 • Total time: 65:11 • ADD +Recorded: Munich, Hochschule Für Musik, October and November 1965 (Schumann; Beethoven); Munich, Akademie Der Wissenschaften, July 1966 (Schubert) +First released as 139125 (Schumann; Beethoven, Schubert Tracks 97-22, 97-25, 97-27, 97-28) [r4017410]; 139220 (Schubert 97-21, 97-23, 97-24, 97-26, 97-29) Disc 2 of [r6819963] +Sleeve cover is a modified version of [r4017410] +Cover © Siegfried Lauterwasser +℗ 1966 Deutsche Grammophon GmbH, Berlin + +CD 98: Robert Schumann: Liederkreis / Hugo Wolf: Lieder Der Mignon, Italienisches Liederbuch - Christa Ludwig +00289 483 5462 • Total time: 65:13 • ADD +Recorded: Vienna, Rosenhügel, January 1968 (Liederkreis; Mignon-Lieder); Paris, Studio Hoche, June 1975 (Italienisches Liederbuch) +First released as 139386 (Liederkreis; Mignon-Lieder) [r18486031]; 2531185 (Italienisches Liederbuch) [r5483429] +Sleeve cover is a modified version of [r5483429] +Cover © Anton Koch, Hamburg Kunsthalle +℗ 1968 (Liederkreis; Mignon-Lieder), 1979 (Italienisches Liederbuch) Deutsche Grammophon GmbH, Berlin + +CD 99: Franz Schubert - Lieder: Dietrich Fischer-Dieskau +00289 483 5463 • Total time: 65:56 • ADD +Recorded: Berlin, UFA-Tonstudio, December 1966 (Track 99-17), January 1967 (99-15), February 1968 (99-4, 99-11, 99-14 to 99-20), February & March 1969 (99-1 to 99-3, 99-6 to 99-10, 99-13, 99-21, 99-22), August 1971 (99-12), March 1972 (99-5) +First released as 2720 006 (set - 99-1 to 99-3, 99-6 to 99-10, 99-13, 99-21, 99-22) [r7568875]; 2720 022 (set - 99-4, 99-5, 99-11, 99-12, 99-14 to 99-20) [r4675245] +Compilation first released as [r2683910] +Sleeve cover is a modified version of [r2683910] +Cover © Sabine Toepffer +℗ 1969 (Tracks 99-1 to 99-3, 99-6 to 99-10, 99-13, 99-21, 99-22), 1970 (99-4, 99-11, 99-14 to 99-20), 1972 (99-5, 99-12) Deutsche Grammophon GmbH, Berlin + +CD 100: Johannes Brahms - Lieder - Jessye Norman +00289 483 5464 • Total time: 70:02 • ADD +Recorded: Berlin, Studio Lankwitz, March 1978 (100-1), May 1981 (100-4 to 100-7), February & March 1982 (100-2, 100-3, 100-8, 100-9, 100-11, 100-19, 100-20), London, St John's, Smith Square, August 1982 (100-10, 100-12 to 100-18, 100-21 to 100-31) +First released as 2740279 (set) [r13898004] +Sleeve cover is a modified version of [r13442211] +Cover © Christian Steiner +℗ 1983 Deutsche Grammophon GmbH, Berlin + +CD 101: Mots D'Amour - Anne Sofie Von Otter +00289 483 5465 • Total time: 76:09 • DDD +Recorded: Stockholm, Sveriges Radio AB, Berwaldhallen, September 2000 +Publishers: Énoch & Cie; Henri Tellier (Sombrero, Mignonne, Villanelle, L'Été); J. Hamelle (Te souviens-tu?) +First released as 471 331-2 [r10310892] +Sleeve cover is from [r10310892] +Cover © Mats Bäcker +℗ 2001 Deutsche Grammophon GmbH, Berlin + +CD 102: Johann Sebastian Bach - IX. Forschungsbereich, Serie F: Werke Für Orgel +00289 483 5466 • Total time: 78:01 • ADD • MONO +Recorded: Lübeck, Small Organ, St.-Jakobi-Kirche, August 1947 (BWV 552, 565 & 645-650), August & September 1947 (BWV 525, 530 & 768) +First released as AVM 1401 (BWV 525) [r20969407]; AM 1001 (BWV 645 & 646) [r20969299]; AM 1002 (BWV 647 & 648) [r20969329]; AM 1003 (BWV 649 & 650) [r20969371]; AVM 1403/4 (BWV 768), AVM 1402 (BWV 530); AVM 1411 (BWV 565) [r20969755]; AVM 1422B (BWV 552) +Sleeve cover is from Archiv 423 442-2 +Cover © DG Archive, all rights reserved +℗ 1947 (BWV 565), 1949 (BWV 525, 530, 645-650, 768), 1956 (BWV 552) Deutsche Grammophon GmbH, Berlin + +CD 103: Georg Friedrich Händel - X. Forschungsbereich, Serie G: Kirchenmusik - Utrechter Te Deum & Jubilate, Zadok The Priest +00289 483 5467 • Total time: 51:44 • ADD +Recorded: Walthamstow Town Hall, London, June & July 1958 +First released as 198008 [r6043830] +Sleeve cover is from [r6043830] +Cover © DG Archive, all rights reserved +℗ 1959 Deutsche Grammophon GmbH, Berlin + +CD 104: Music Of The Gothic Era = Musik Der Gotik = Musique De L'Epoque Gothique +00289 483 5468 • Total time: 60:17 • ADD +Recorded: Godalming, Charter House, Chapel, April 1975 (Tracks 104-1 to 104-3); London, Conway Hall, October 1975 (104-4 to 104-19) +Sources/Editions: W.G. Waite, The Rhythm of XIIth Century Polyphony, New Haven 1954 (104-1); The Works of Perotin, ed. E. Thurston, New York 1970 (104-2); Codex Montpellier. Polyphonies du XIIIᵉ siècle, le Manuscrit H 196 de la Faculté de Médecine de Montpellier, publié par Yvonne Rockseth, Paris 1936 (104-3 to 104-6, 104-8); Codex Bamberg. Cent Motets du XIIIᵉ siècle publiés d'après le manuscrit Ed. IV. 6 de Bamberg par Pierre Aubry, Paris 1908 (104-7); The Lyric Works of Adam de la Halle, ed. N. Wilkins, Corpus Mensurabilis Musicae vol.44, Dallas 1967 (104-9, 104-10); Roman de Fauvel. Polyphonic Music of the 14th Century, vol.I, ed. L Schrade, Monaco 1956 (104-11 to 104-13); Codex Ivrea. Polyphonic Music of the 14th Century, vol.VI, ed. F.LI. Harrison, Monaco 1968 (104-14, 104-15); The Works of Guillaume de Machaut. Polyphonic Music of the 14th Century, vols.II/III, ed. L Schrade, Monaco 1956 (104-16, 104-17, 104-19); Codex Chantilly. Polyphonic Music of the 14th Century, vol.V, ed. F.LI. Harrison, Monaco 1968 (104-18) +First released as 2723045 (set) [r1309941] +Sleeve cover is from [r1309941] +Cover © DG Archive, all rights reserved +℗ 1976 Deutsche Grammophon GmbH, Berlin + +CD 105: Antonio Vivaldi - Le Quattro Stagioni = Die Vier Jahreszeiten = The Four Seasons = Les Quatre Saisons +00289 483 5469 • Total time: 37:15 • DDD +Recorded on original instruments: London, Henry Wood Hall, October 1981 +First released as 2534003 [r2563577] +Sleeve cover is a modified version of [r2563577] +Cover: “Iniziale con Eolo” by Liberale da Verona (detail) © Siena, Duomo, Libreria Piccolomini +℗ 1982 Deutsche Grammophon GmbH, Berlin + +CD 106: Bach: Cantatas - Ascension, Himmelfahrt - BWV 11, BWV 37, BWV 43, BWV 128 +00289 483 5470 • Total time: 77:59 • DDD +Recorded on authentic instruments: London, All Saints Church, Tooting, October 1993 (BWV 11, 37, 43); London, St John's, Smith Square, April 1999 (BWV 128) +Publishers / Sources: Neue Bach-Ausgabe I/12 & II/8, Bärenreiter, Kassel (BWV 11, 37); Breitkopf & Härtel, revised by Reinhold Kubik (BWV 43, 128) +BWV 43 Text: Psalm 47:6-7 (Track 106-1); Anon. (106-2, 106-3, 106-5 to 106-10); Mark 16: 19 (106-4) +BWV 37 Text: Mark 16:16 (106-17); Anon. (106-18, 106-20, 106-21) +BWV 11 Text: Anon. (106-23, 106-25, 106-26, 106-30, 106-32); Luke 24:50-51 (106-24); Acts 1:9 & Mark 16:19 (106-27); Acts 1:10-11 (106-29); Luke 24:52 & Acts 1:12 (106-31) +First released as 463 583-2 [r4942127] +Sleeve cover is from [r4942127] +Cover © Marco Borggreve +℗ 2000 Deutsche Grammophon GmbH, Berlin + +CD 107: Concerto Italiano - Giuliano Carmignola / Venice Baroque Orchestra / Andrea Marcon +00289 483 5471 • Total time: 81:09 • DDD +Recorded: Dobbiaco/Toblach, Kulturzentrum Grand Hotel, Gustav-Mahler-Saal, March 2009 +Violin: 1732 “Baillot” Stradivarius, generously loaned by the Fondazione Cassa di Risparmio in Bologna +First released as 477 6606 [r6310680] +Sleeve cover is from [r6310680] +Cover © Felix Broede +℗ 2009 Deutsche Grammophon GmbH, Berlin + +CD 108: Early Light Music Recordings +00289 483 5472 • Total time: 80:23 • ADD • MONO +Recorded: Germany, 1927 (Track 108-1), December 1934 (108-2), June 1938 (108-4), 1941 (108-5), April 1941 (108-6), June 1941 (108-7), May 1949 (108-8), May 1950 (108-11), December 1950 (108-9), April 1951 (108-10); Berlin, April 1936 (108-3); Hamburg, March 1950 (108-16, 108-17), July 1950 (108-23), September 1950 (108-12 to 108-15), March 1951 (108-22), May 1951 (108-19, 108-21), September 1051 (108-20); Hanover, May 1949 (108-18) +Publishers: Glocken Verlag Vienna (108-4); Edition Meisel GmbH (108-5); Beboton Verlag GmbH (Sikorski) (108-7); Anton J. Benjamin, Hamburg (108-8); Bosworth & Co. Ltd / Edition Wiener Boheme-Verlag / Strecker Heinrich Bühnen-und Musikverlag (108-12); Bosworth & Co. Ltd / Edition Meisel & Co. GmbH / Edition Wiener Boheme-Verlag / Shapiro Bernstein & Co. Ltd / Pagageno Buch- und Musikalien-Verlag / Edition Wiener Boheme-Verlag / Melodie der Welt GmbH & Co. KG (108-13); Edition Wiener Boheme-Verlag / Bourne Co. / Melodie der Welt GmbH & Co. KG / Edition Wiener Boheme-Verlag (108-14); Wiener Bohème / Edition Metropol Musikverlage / Alrobi Musikverlag / Dreiklang-Dreimasken Bühnen- und Musikverlag GmbH (108-15); Musik Edition Ralph Maria Siegel (108-16); Walter Wild Verlag (108-17); Schaeffers (108-18); Europaton Musik Edition Peter Schaeffers (108-20, 108-23); Austro Baltic / Tanzmelodie GmbH (108-22) +First released as Polydor 67075 (Track 108-3) [r19150264]; 48498 (108-4) [r17701069]; 47526 (108-5 and 108-6) [r21370294]; 47538 (108-7) [r20174560]; 48170 (108-8) [r7486980]; 48506 (108-10) [r14461687]; 48350 (108-11) [r7726042]; 45001 (108-9, 108-12 to 108-15) [r5629290]; 48314 (108-16, 108-17); 48193 (108-18) [r11043754]; 48531 (108-19) [r13919411]; 48595 (108-20) [r15962420]; 45002 (108-21) [r7738756]; 48499 (108-22) [r8675304]; 48374 (108-23) [r3135277] +Cover © Anja Hoppe +℗ 1927 (Track 108-1), 1934 (108-2), 1936 (108-3), 1938 (108-4), 1941 (108-5, 108-6), 1951 (108-12 to 108-15) Deutsche Grammophon GmbH, Berlin +℗ 1941 (108-7), 1949 (108-18), 1950 (108-17, 108-23), 1951 (108-8 to 108-11, 108-19 to 108-22), 1970 (108-16) Universal Music Domestic Pop, a division of Universal Music GmbH + +CD 109: Kaiserwalzer - Wiener Ball-Orchester / Franz Marszalek +00289 483 5473 • Total time: 36:39 • ADD +Recorded: November 1960 (109-1 to 109-7, 109-11, 109-12); 1964 (109-9) +Publishers: Josef Weinberger Ltd (109-7 to 109-9); Bosworth Music GmbH, Berlin (109-10) +First released as Polydor 237354 [r12046617] +Sleeve cover is from [r12046617] +Cover © DG Archive, all rights reserved +℗ 1960 Deutsche Grammophon GmbH, Berlin + +CD 110: Hermann Prey, Fritz Wunderlich, Will Quadflieg: Eine Weihnachtsmusik +00289 483 5474 • Total time: 32:29 • ADD +Recorded: Germany, 1966 +Publishers: Christophorus-Verlag GmbH (110-3); Bella Musica Edition / Edition 49 Bühnen-und Musikverlag GmbH (110-8); Breitkopf & Härtel, Wiesbaden (110-26) +Readings from the Gospel according to St Luke +First released as Polydor 249090 [r8621098] +Sleeve cover is from [r8621098] +Cover © DG Archive, all rights reserved +℗ 1966 Deutsche Grammophon GmbH, Berlin + +CD 111: Mauricio Kagel - ‘1898’ +00289 483 5475 • Total time: 73:45 • ADD +Recorded: Godorf, Rhenus-Studio, April 1967 (Musik für Renaissance-Instrumente), July 1973 (1898) +Publisher: Universal Edition, Wien +Commissioned by Deutsche Grammophon in commemoration of its 75th anniversary +First released as 2543007 (1898) [r830868]; 137006 (Musik für Renaissance-Instrumente) [r1000208] +Sleeve cover is a modified version of [r830868] +Cover © Zoltan Nagy, Essen +℗ 1969 (Musik für Renaissance-Instrumente), 1973 (1898) Deutsche Grammophon GmbH, Berlin + +CD 112: Steve Reich - Six Pianos / Music For Mallet Instruments, Voices And Organ +00289 483 5476 • Total time: 42:49 • ADD +Recorded: Hamburg, Musikstudio I, January 1974 +Publisher: Boosey & Hawkes GmbH +First released as 2740106 (set) [r249712] (Disc 3) +Sleeve cover is a modified version of [r249712] +Cover © Marcel Fugère, Hamburg +℗ 1974 Deutsche Grammophon GmbH, Berlin + +CD 113: Ligeti, Nono, Boulez, Rihm - Wien Modern +00289 483 5477 • Total time: 45:31 • DDD +Recorded Live: Vienna, Musikverein, Großer Saal, October 1988 +Publisher: Universal Edition, Wien (Départ, Atmosphères); B. Schott's Söhne, Mainz (Lontano); Ars Viva Verlag GmbH, Mainz (Liebeslied); Universal Edition (London) Ltd (Notations) +First released as 429 260-2 [r2322703] +Sleeve cover is from [r2322703] +Cover Illustration: Musical design by Sylvano Bussotti from his Sette fogli +℗ 1990 Deutsche Grammophon GmbH, Berlin + +CD 114: Philip Glass - Violin Concerto / Alfred Schnittke - Concerto Grosso No. 5 +00289 483 5478 • Total time: 52:28 • DDD +Recorded Live: Vienna, Musikverein, Großer Saal, November 1991 (Schnittke), February 1992 (Glass) +Christoph von Dohnányi appears by kind permission of Decca Music Group Limited +Publishers: G. Schirmer, Inc. / Music Sales Corporation (Glass); Musikverlage International Hans Sikorski (Schnittke) +First released as 437 091-2 [r7246066] +Sleeve cover is a modified version of [r7246066] +Cover: Formula of the Universe (detail), 1920-1928; watercolour, ink, pen on paper © Pavel Filonov +℗ 1993 Deutsche Grammophon GmbH, Berlin + +CD 115: Vangelis - Invisible Connections +00289 483 5479 • Total time: 39:31 • DDD +First released as 415 196-2 [r4045739] +Sleeve cover is a modified version of [r4045739] +Cover © Lutz Bode, Green Ink, London +℗ 1985 Universal Music International BV + +CD 116: Recomposed By Max Richter: Vivaldi - The Four Seasons +00289 483 5480 • Total time: 77:02 • DDD +Recorded: Berlin, b-sharp Studio, March 2012 (116-1 to 116-13) +Violin: 1742 Giuseppe Guarneri “ex-Lipiński” +Publisher: Mute Song Limited +First released as 476 5040 [r3840970] +Sleeve cover is a modified version of [r5629297] +Cover © 2014 Deutsche Grammophon GmbH, Berlin +℗ 2012 (116-1 to 116-13), 2013 (116-19, 116-21, 116-22), 2014 (116-14 to 116-18, 116-20) Deutsche Grammophon GmbH, Berlin + +CD 117: Jóhann Jóhannsson - Orphée +00289 483 5481 • Total time: 46:35 • DDD +Text: Ovid: Metamorphoses Book XI: 61-66 +Recorded: London, Lyndhurst Hall, AIR Studios (string orchestra); Copenhagen, Sct. Lukas Kirke (pipe organ); Copenhagen, Danmarks Radio (choir); Copenhagen, Berlin and Reykjavík, various studios, 2009-2016 (string quartet, cello, organ & piano) +Mixed at Vox-Ton Recording Studio, Berlin +Publisher: Mute Song Limited +First released as 479 6021 [r11244816] +Sleeve cover is from [r11244816] +Cover Artwork © Anders Ladegaard +℗ 2016 Jóhann Jóhannsson, under exclusive license to Deutsche Grammophon GmbH, Berlin + +CDs 118-119: Johann Wolfgang Von Goethe - Faust (Der Tragödie Erster Teil) +00289 483 5482 / 5483 • Total time: 146:30 • ADD • MONO +Recorded: Düsseldorf, Schauspielhaus, 1954 +First released as 201-03 NK [r1105916] +Sleeve cover is from [r1105916] +Cover © DG Archive, all rights reserved +℗ 1954 Deutsche Grammophon GmbH, Berlin + +CD 120: Prokofiev - Peter And The Wolf - The Chamber Orchestra Of Europe / Claudio Abbado / Narrated By Sting +00289 483 5484 • Total time: 49:35 • DDD +Recorded: Vienna, Konzerthaus, Schubertsaal, December 1986 (op. 25); Vienna, Konzerthaus, Großer Saal, November 1998 (opp. 34, 67 & 99); Berlin, Kammermusiksaal, August 1990 (op. 67 narration) +Publishers: Leeds Music Ltd (op. 99); Boosey & Hawkes Music Publishers Ltd (op. 67); Boosey & Hawkes Music Publishers Ltd / Editions Gutheil / International Music Company, New York / Édition Russe de la Musique, Moscow (op. 34); Boosey & Hawkes Music Publishers Ltd / Edwin F. Kalmus & Co., Inc. (op. 25) +First released as 427 678-2 (opp. 25, 34b & 99) [r13063508]; 429 396-2 (op. 67) [r7057792] +Sleeve cover is from [r7057792] +Cover Illustration © Erich Sokol, Vienna +℗ 1989 (opp. 25, 34b & 99), 1990 (op. 67) Deutsche Grammophon GmbH, Berlin + +CD 121: 2018 And Beyond (Bonus CD) +00289 483 5799 • Total time: 54:23 • DDD +This CD features single movements from recently recorded releases. Albums featuring the complete works will be released in 2018 and 2019. +Recorded: Philadelphia, Kimmel Center, Verizon Hall, November 2016 (Rachmaninov, Mahler); New York City, Carnegie Hall, Isaac Stern Auditorium, April 2018 (Dvořák); Live, Boston (Mass.), Symphony Hall, October 2017 (Shostakovich) +First released as 483 5220 (Shostakovich) [r12697247] +Subsequently released as 483 6617 (Rachmaninov) [r15473287]; 483 7871 (Mahler) [r15566428]; 4836574 (Dvořák) [r14470898]; +Cover © Anja Hoppe +℗ 2018 Deutsche Grammophon GmbH, Berlin + +BR 1: Der Ring Des Nibelungen - Berliner Philharmoniker - Karajan +Total time: 898:15 • ADD +Recorded: Berlin, Jesus-Christus-Kirche, August, September, & December 1966 (Die Walküre), December 1967 (Das Rheingold), December 1968 & February 1969 (Siegfried), October & December 1969, January 1970 (Götterdämmerung) +Digitally remastered at 24-bit / 96 Hz from the original master tapes by Emil Berliner Studios +First released as 2709023 (set) (Das Rheingold) [r4510715]; 2713002 (set) (Die Walküre) [r3167983]; 2713003 (set) (Siegfried) [r7666081]; 2716001 (set) (Götterdämmerung) [r4982872] +Original Cover Design © Imre Vincze, Salzburg +℗ 1967 (Die Walküre), 1968 (Das Rheingold), 1969 (Siegfried), 1970 (Götterdämmerung) Deutsche Grammophon GmbH, Berlin +Needs Vote0Early Orchestral Recordings 1 (1913-1920)Symphony No. 5 In C Minor Op. 6795544Ludwig van BeethovenComposed By840070Arthur NikischConductor260744Berliner PhilharmonikerOrchestra1-11. Allegro Con Brio6:481-22. Andante Con Moto9:531-33. Allegro5:321-44. Allegro9:011-5Le Carnaval Romain Op. 98:48108565Hector BerliozComposed By840070Arthur NikischConductor260744Berliner PhilharmonikerOrchestraParsifal WWV 111294746Richard WagnerComposed By3607887Alfred HertzConductor260744Berliner PhilharmonikerOrchestra1-6Prelude To Act 114:381-7Transformation Music (Act 1)7:381-8Transformation Music (Act 3)4:501-9Karfreitagszauber = Good Friday Music10:03Early Orchestral Recordings 2 (1924-1928)2-1Overture “The Hebrides” Op. 269:32623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By832989Bruno WalterConductor260744Berliner PhilharmonikerOrchestra2-2Symphony No. 7 In A Major Op. 92: 4. Allegro Con Brio4:2795544Ludwig van BeethovenComposed By108439Richard StraussConductor833446Staatskapelle BerlinOrchestra2-3Overture “Coriolan” Op. 627:0195544Ludwig van BeethovenComposed By517165Otto KlempererConductor833446Staatskapelle BerlinOrchestra2-4German Dance No. 2 In F Major K 6002:2695546Wolfgang Amadeus MozartComposed By1053170Erich KleiberConductor260744Berliner PhilharmonikerOrchestra2-5Cavalleria Rusticana: Intermezzo Sinfonico4:05230140Pietro MascagniComposed By, Conductor833446Staatskapelle BerlinOrchestra2-6Visione Lirica4:51230140Pietro MascagniComposed By, Conductor833446Staatskapelle BerlinOrchestra2-7Aida: Ballet Music (Act 2)4:49192327Giuseppe VerdiComposed By230140Pietro MascagniConductor833446Staatskapelle BerlinOrchestra2-8Siegfried: Waldweben (Act 2)6:41294746Richard WagnerComposed By1543091Max Von SchillingsConductor833446Staatskapelle BerlinOrchestra2-9Salome: Dance Of The Seven Veils Op. 548:37108439Richard StraussComposed By108439Richard StraussConductor260744Berliner PhilharmonikerOrchestra2-10Iphigénie En Aulide: Overture Wq 409:20534822Christoph Willibald GluckChristoph Willibald Von GluckComposed By108439Richard StraussConductor260744Berliner PhilharmonikerOrchestra2-11Euryanthe: Overture Op. 817:30620726Carl Maria von WeberComposed By108439Richard StraussConductor260744Berliner PhilharmonikerOrchestra2-12Má Vlast: Vltava = The Moldau10:45833315Bedřich SmetanaComposed By1053170Erich KleiberConductor833446Staatskapelle BerlinOrchestraEarly Orchestral Recordings 3 (1928-1935)3-1Die Walküre: The Ride Of The Valkyries4:39294746Richard WagnerComposed By466144Hans KnappertsbuschConductor260744Berliner PhilharmonikerOrchestra3-2Symphony No. 7 In E Major WAB 107: 4. Finale. Bewegt, Doch Nicht Zu Schnell10:17479037Anton BrucknerComposed By867995Jascha HorensteinConductor260744Berliner PhilharmonikerOrchestra3-3Das Herz Op. 39: Love Theme. Sehr Ruhig, Lieblich (Molto Tranquillo, Dolce)6:33839679Hans PfitznerComposed By, Conductor260744Berliner PhilharmonikerOrchestra3-4“Egmont” Overture Op. 848:2095544Ludwig van BeethovenComposed By839640Wilhelm FurtwänglerConductor260744Berliner PhilharmonikerOrchestra3-5Brandenburg Concerto No. 5 In D Major BWV 1050: 1. Allegro11:4795537Johann Sebastian BachComposed By904058Alois MelicharConductor7819168Friedrich ThomasFlute1205729Franz RuppHarpsichord260744Berliner PhilharmonikerOrchestra1278364Siegfried BorriesViolin3-6Der Freischütz: Overture9:45620726Carl Maria von WeberComposed By839640Wilhelm FurtwänglerConductor260744Berliner PhilharmonikerOrchestra3-7Symphony No. 2 In C Major Op. 61: 3. Adagio Espressivo10:05578727Robert SchumannComposed By839679Hans PfitznerConductor833446Staatskapelle BerlinOrchestra3-8Symphony No. 3 In E Flat Major Op. 55 “Eroica”: 1. Allegro Con Brio15:0895544Ludwig van BeethovenComposed By839679Hans PfitznerConductor260744Berliner PhilharmonikerOrchestraEarly Orchestral Recordings 4 (1931-1943)4-1Roman Festivals P 157: 1. Circenses4:24526594Ottorino RespighiComposed By859046Victor De SabataConductor260744Berliner PhilharmonikerOrchestra4-2Symphony No. 2 In D Major Op. 73: 3. Allegretto Grazioso (Quasi Andantino) – Presto Ma Non Assai5:00304975Johannes BrahmsComposed By2866277Max FiedlerConductor260744Berliner PhilharmonikerOrchestra4-3Symphony No. 91 In E Flat Major Hob.I:91: 4. Finale Vivace3:20108568Joseph HaydnComposed By6409606近衛秀麿Hidemaro KonoyeConductor260744Berliner PhilharmonikerOrchestra4-4Night On Bald Mountain9:24115466Nikolai Rimsky-KorsakovArranged By523633Modest MussorgskyComposed By6409606近衛秀麿Hidemaro KonoyeConductor260744Berliner PhilharmonikerOrchestra4-5Die Lustigen Weiber Von Windsor: Overture (1. Teil)7:45696211Otto NicolaiComposed By860731Paul van KempenConductor833446Staatskapelle BerlinOrchestra4-6The Bartered Bride: Overture6:52833315Bedřich SmetanaComposed By860731Paul van KempenConductor833446Staatskapelle BerlinOrchestra4-7Japanische Festmusik Op. 84: 1. Allegro Moderato – Allegro – Allegro Maestoso14:01108439Richard StraussComposed By, Conductor451535Bayerisches StaatsorchesterOrchestra4-8Der Zigeunerbaron: Overture (Act 1)8:081259101Johann Strauss Jr.Johann Strauss IIComposed By283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra4-9Allegro Symphonique7:462060413Marcel PootComposed By823061Carl SchurichtConductor2603897Städtisches Orchester BerlinOrchestraFranz Schubert – Symphony Nr. 9 / Joseph Haydn – Symphony Nr. 88 G-DurSymphony No. 9 In C Major “The Great” D 944283469Franz SchubertComposed By839640Wilhelm FurtwänglerConductor260744Berliner PhilharmonikerOrchestra5-11: Andante – Allegro Ma Non Troppo14:455-22. Andante Con Moto17:185-33. Scherzo. Allegro Vivace11:165-44. Allegro Vivace11:32Symphony No. 88 In G Major Hob I:88108568Joseph HaydnComposed By839640Wilhelm FurtwänglerConductor260744Berliner PhilharmonikerOrchestra5-51. Adagio – Allegro6:525-62. Largo6:195-73. Menuetto. Allegretto4:245-84. Finale. Allegro Con Spirito3:40Anton Bruckner – Symphony Nr. 9 D-MollSymphony No. 9 In D Minor WAB 109479037Anton BrucknerComposed By842238Eugen JochumConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra1493527Leopold NowakScore Editor6-11. Feierlich, Misterioso22:106-22. Scherzo. Bewegt, Lebhaft – Trio. Schnell9:406-33. Adagio. Langsam, Feierlich27:02Dvořák – Symphony No. 9 “From The New World” / Smetana – The Moldau / Liszt – Les PréludesSymphony No. 9 In E Minor “From The New World”268272Antonín DvořákComposed By833697Ferenc FricsayConductor260744Berliner PhilharmonikerOrchestra7-11. Adagio - Allegro Molto10:047-22. Largo13:597-33. Scherzo. Molto Vivace8:187-44. Allegro Con Fuoco12:067-5Má Vlast - Vltava = The Moldau11:01833315Bedřich SmetanaComposed By833697Ferenc FricsayConductor260744Berliner PhilharmonikerOrchestra7-6Les Préludes226461Franz LisztComposed By833697Ferenc FricsayConductor688716Radio-Symphonie-Orchester BerlinOrchestraTschaikowsky – Symphonie Nr. 6 »Pathétique«Symphony No. 6 In B Minor Op. 74 “Pathétique”999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By833038Evgeny MravinskyConductor343871Leningrad Philharmonic OrchestraOrchestra8-11. Adagio – Allegro Non Troppo17:388-22. Allegro Con Grazia8:008-33. Allegro Molto Vivace8:178-44. Finale. Adagio Lamentoso9:39Mozart – Symphonien: Nr. 39, Nr. 40, Nr. 41 »Jupiter«Symphony No. 39 In E Flat Major K 54395546Wolfgang Amadeus MozartComposed By283127Karl BöhmConductor260744Berliner PhilharmonikerOrchestra9-11. Adagio – Allegro9:039-22. Andante Con Moto7:379-33. Menuetto. Allegretto4:149-44. Finale. Allegro4:12Symphony No. 40 In G Minor K 55095546Wolfgang Amadeus MozartComposed By283127Karl BöhmConductor260744Berliner PhilharmonikerOrchestra9-51. Molto Allegro8:219-62. Andante8:029-73. Menuetto. Allegretto4:469-84. Finale. Allegro Assai5:03Symphony No. 41 In C Major K 551 "Jupiter"95546Wolfgang Amadeus MozartComposed By283127Karl BöhmConductor260744Berliner PhilharmonikerOrchestra9-91. Allegro Vivace7:349-102. Andante Cantabile7:369-113. Menuetto. Allegretto5:239-124. Molto Allegro6:26Hector Berlioz – Symphonie Fantastique / Luigi Cherubini – Anacréon (Overture) / Daniel-François-Esprit Auber – La Muette De Portici (Overture)Symphonie Fantastique Op. 14108565Hector BerliozComposed By448010Igor MarkevitchConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoureuxOrchestra10-11. Rêveries – Passions14:1510-22. Un Bal6:0810-33: Scène Aux Champs15:5810-44. Marche Au Supplice4:4810-55. Songe D'Une Nuit Du Sabbat11:0310-6Anacréon – Overture9:44991389Luigi CherubiniComposed By448010Igor MarkevitchConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoureuxOrchestra10-7La Muette De Portici – Overture8:18873725Daniel-Francois-Esprit AuberDaniel-François-Esprit AuberComposed By448010Igor MarkevitchConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoreuxOrchestraBeethoven – IX. Symphonie, Ouvertüre »Coriolan«11-1Overture “Coriolan” Op. 629:0595544Ludwig van BeethovenComposed By283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestraSymphony No. 9 In D Minor “Choral” Op. 125833071Walter BerryBass Vocals833075Wiener SingvereinChorus833165Reinhold SchmidReinhold SchmidtChorus Master95544Ludwig van BeethovenComposed By833070Hilde Rössel-MajdanContralto Vocals260744Berliner PhilharmonikerOrchestra833076Gundula JanowitzSoprano Vocals833073Waldemar KmenttTenor Vocals11-21. Allegro Ma Non Troppo, Un Poco Maestoso15:2711-32. Molto Vivace11:0411-43. Adagio Molto E Cantabile16:3011-54a. Presto6:2311-64b. “O Freunde, Nicht Diese Töne!” (Final Chorus From Schiller's “Ode To Joy”)17:351007099Friedrich SchillerText ByGustav Mahler – Symphonie Nr. 1 »Der Titan«, Lieder Eines Fahrenden GesellenSymphony No. 1 In D Major842888Rafael KubelikConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra12-11. Langsam. Schleppend14:3312-22. Kräftig Bewegt7:0012-33. Feierlich Und Gemessen, Ohne Zu Schleppen10:3612-44. Stürmisch Bewegt17:36Lieder Eines Fahrenden Gesellen833168Dietrich Fischer-DieskauBaritone Vocals239236Gustav MahlerComposed By, Text By842888Rafael KubelikConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra12-51. Wenn Mein Schatz Hochzeit Macht3:5112-62. Ging Heut Morgen Übers Feld3:5912-73. Ich Hab Ein Glühend Messer3:1012-84. Die Zwei Blauen Augen5:08Holst – The Planets / Strauss – Also Sprach ZarathustraAlso Sprach Zarathustra = Thus Spake Zarathustra Op. 30 – Tone Poem For Large Orchestra (Loosely After Friedrich Nietzsche)108439Richard StraussComposed By479033William SteinbergConductor395913Boston Symphony OrchestraOrchestra13-11. Einleitung = Introduction1:5813-22. Von Den Hinterweltlern = Of The Backworldsmen3:1613-33. Von Der Großen Sehnsucht = Of The Great Longing1:4313-44. Von Den Freuden Und Leidenschaften = Of Joys And Passions1:5613-55. Das Grablied = The Song Of The Grave1:5813-66. Von Der Wissenschaft = Of Science And Learning4:1213-77. Der Genesende = The Convalescent4:3913-88. Das Tanzlied = The Dance-Song / Das Nachtied = The Night-Song6:3413-99. Nachtwanderlied = Song Of The Night Wanderer3:38762680Joseph SilversteinViolinThe Planets Op. 32335760Gustav HolstComposed By479033William SteinbergConductor395913Boston Symphony OrchestraOrchestra13-10Mars, The Bringer Of War: Allegro6:3713-11Venus, The Bringer Of Peace: Adagio – Andante – Animato – Tempo7:2513-12Mercury, The Winged Messenger: Vivace3:5913-13Jupiter, The Bringer Of Jollity: Allegro Giocoso – Andante Maestoso – Tempo I – Maestoso – Lento Maestoso – Presto7:5913-14Saturn, The Bringer Of Old Age: Adagio – Andante7:4513-15Uranus, The Magician: Allegro – Lento – Allegro – Largo5:2413-16Neptune, The Mystic: Andante – Allegretto6:47Beethoven – Symphonie Nr. 5 & 7Symphony No. 5 In C Minor Op. 6795544Ludwig van BeethovenComposed By833155Carlos KleiberConductor754974Wiener PhilharmonikerOrchestra14-11. Allegro Con Brio7:1914-22. Andante Con Moto9:5414-33. Allegro5:0814-44. Allegro10:55Symphony No. 7 In A Major Op. 9295544Ludwig van BeethovenComposed By833155Carlos KleiberConductor754974Wiener PhilharmonikerOrchestra14-51. Poco Sostenuto – Vivace13:3614-62. Allegretto8:0914-73. Presto8:1514-84. Allegro Con Brio8:36Camille Saint-Saëns – Symphony No. 3 “Organ”, Danse Macabre, Bacchanale, Le DélugeSymphony No. 3 In C Minor Op. 78 “Organ Symphony”424576Daniel BarenboimConductor837562Chicago Symphony OrchestraThe Chicago Symphony OrchestraOrchestra915121Gaston LitaizeOrgan15-11. Adagio – Allegro Moderato – Poco Adagio19:2815-22a. Allegro Moderato – Presto –7:2715-32b. Maestoso – Allegro7:2815-4Samson Et Dalila Op. 47: Bacchanale7:14424576Daniel BarenboimConductor744724Orchestre De ParisOrchestra15-5Le Déluge Op. 45 (Biblical Poem) Prélude: Adagio – Andante Sostenuto – Andantino7:36424576Daniel BarenboimConductor744724Orchestre De ParisOrchestra915122Alain MogliaViolin15-6Danse Macabre Op. 40 (Tone-Poem After Henri Cazalis) Mouvement Modéré De Valse6:43424576Daniel BarenboimConductor744724Orchestre De ParisOrchestra915123Luben YordanoffViolinClaude Debussy – La Mer / Maurice Ravel – Rapsodie Espagnole, Ma Mère L'OyeLa Mer: Three Symphonic Sketches For Orchestra96123Claude DebussyComposed By833560Carlo Maria GiuliniConductor835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra16-11. De L'Aube À Midi Sur La Mer = From Dawn To Noon On The Sea9:2316-22. Jeux De Vagues = Play Of The Waves7:1516-33. Dialogue Du Vent Et De La Mer = Dialogue Of The Wind And The Sea8:35La Mère L'Oye M60216140Maurice RavelComposed By833560Carlo Maria GiuliniConductor835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra16-41. Pavane De La Belle Au Bois Dormant = Sleeping Beauty's Pavane1:5216-52. Petit Poucet = Hop-O'-My-Thumb3:4216-63. Laideronnette, Impératrice Des Pagodes = Laideronnette, Empress Of The Pagodas3:5716-74. Les Entretiens De La Belle Et De La Bête = The Conversations Of Beauty And The Beast4:4516-85. Le Jardin Féerique = The Fairy Garden3:45Rapsodie Espagnole M54216140Maurice RavelComposed By833560Carlo Maria GiuliniConductor835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra16-9Prélude À La Nuit = Prelude To Night4:3816-10Malagueña2:1016-11Habanera2:5816-12Feria6:21Richard Strauss – Eine AlpensinfonieEine Alpensinfonie = An Alpine Symphony Op. 64108439Richard StraussComposed By283122Herbert von KarajanConductor260744Berliner PhilharmonikerOrchestra995764David Bell (5)Organ17-1Nacht = Night3:0517-2Sonnenaufgang = Sunrise1:2917-3Der Anstieg = The Ascent2:1817-4Eintritt In Den Wald = Entering The Forest2:5717-5Wanderung Neben Dem Bache = Wandering By The Brook2:3917-6Am Wasserfall = By The Waterfall0:1717-7Erscheinung = Apparition0:5117-8Auf Blumige Wiesen = Flowery Meadows0:5617-9Auf Der Alm = In The Mountain Pasture2:0617-10Durch Dickicht Und Gestrüpp Auf Irrwegen = On The Wrong Track Through Thickets And Undergrowth1:3417-11Auf Dem Gletscher = On The Glacier1:1717-12Gefahrvolle Augenblicke = Precarious Moments1:2817-13Auf Dem Gipfel = On The Summit4:3117-14Vision3:4017-15Nebel Steigen Auf = Rising Mists0:1817-16Die Sonne Verdüstert Sich Allmählich = The Sun Gradually Dims0:4917-17Elegie = Elegy2:1817-18Stille Vor Dem Sturm = Calm Before The Storm3:0217-19Gewitter Und Sturm, Abstieg = Thunderstorm, Descent3:5817-20Sonnenuntergang = Sunset2:4117-21Ausklang = Epilogue6:0217-22Nacht = Night2:45Mahler – Symphonie No. 5Symphony No. 5239236Gustav MahlerComposed By299702Leonard BernsteinConductor754974Wiener PhilharmonikerOrchestra18-1Part I: 1. Trauermarsch. In Gemessenem Schritt. Streng. Wie Ein Kondukt14:3018-2Part I: 2. Stürmisch Bewegt. Mit Größter Vehemenz14:5718-3Part II: 3. Scherzo. Kräftig, Nicht Zu Schnell19:0318-4Part III: 4. Adagietto. Sehr Langsam11:1318-5Part III: 5. Rondo-Finale. Allegro – Allegro Giocoso. Frisch15:01Aaron Copland – Appalachian Spring, Short Symphony, 3 Latin American Sketches, Quiet City19-1Appalachian Spring Suite25:26373850Frank MorelliBassoon2465113David Singer (4)Clarinet767788Aaron CoplandComposed By577163Susan PalmaFlute837570Orpheus Chamber OrchestraOrchestra1724735Wu HanPianoShort Symphony (No. 2)361603Dennis Russell DaviesArranged By767788Aaron CoplandComposed By837570Orpheus Chamber OrchestraOrchestra19-21. Tempo Quarter-Note = 144 (Incisivo)4:2719-32. Tempo Half-Note = Circa 445:2719-43. Tempo Quarter-Note = 144 (Preciso E Ritmico)5:4619-5Quiet City: Slow Half-Note (Half-Note = 60) – Slow Quarter-Note (Quarter-Note = 80)9:26767788Aaron CoplandComposed By373842Stephen Taylor (2)Cor Anglais837570Orpheus Chamber OrchestraOrchestra2271488Raymond MaseTrumpetThree Latin American Sketches767788Aaron CoplandComposed By837570Orpheus Chamber OrchestraOrchestra19-61. Estribillo: Bold, Sharply Accented3:1119-72. Paisaje Mexicano: Soft And Sad, In A Moderate Tempo3:3019-83. Danza De Jalisco: Lively And Fast3:39Messiaen – Turangalîla-SymphonieTurangalîla-Symphonie For Piano Solo, Ondes Martenot And Large Orchestra32180Olivier MessiaenComposed By880725Myung-Whun ChungConductor604631Jeanne LoriodOndes Martenot1066081Orchestre De L'Opéra BastilleOrchestra502823Yvonne LoriodPiano20-11. Introduction: Modéré, Un Peu Vif6:2520-22. Chant D'Amour 1: Modéré, Lourd8:1420-33. Turangalîla 1: Presque Lent, Rêveur5:2620-44. Chant D'Amour 2: Bien Modéré11:0320-55. Joie Du Sang Des Étoiles: Vif, Passionné, Avec Joie6:4220-66. Jardin Du Sommeil D'Amour: Très Modéré, Très Tendre12:3920-77. Turangalîla 2: Un Peu Vif4:1120-88. Développement De L'Amour: Bien Modéré11:4120-99. Turangalîla 3: Bien Modéré4:2720-1010. Final: Modéré, Presque Vif, Avec Une Grande Joie7:44Igor Stravinsky – Pétrouchka, Le Sacre Du PrintempsPétrouchka (Burlesque In Four Tableaux)115469Igor StravinskyComposed By92243Pierre BoulezConductor547971The Cleveland OrchestraOrchestra21-1Premier Tableau = First Tableau9:5721-1.1Fête Populaire De La Semaine Grasse21-1.2Le Tour De Passe-Passe21-1.3Danse Russe21-2Deuxième Tableau = Second Tableau4:3021-2.1Chez Pétrouchka21-3Troisième Tableau = Third Tableau7:0221-3.1Chez Le Maure21-3.2Danse De La Ballerine21-3.3Valse: La Ballerine Et Le Maure21-3.4Pétrouchka21-4Quatrième Tableau = Fourth Tableau13:2921-4.1Fête Populaire De La Semaine Grasse21-4.2Danse Des Nounous21-4.3Le Paysan Et L'Ours – Un Marchand Fêtard Avec Deux Tziganes21-4.4Danse Des Cochers Et Des Palefreniers21-4.5Les Déguisés – La Rixe: Le Maure Et Pétrouchka – Mort De PétrouchkaLe Sacre Du Printemps = The Rite Of Spring: Scenes Of Pagan Russia In Two Parts115469Igor StravinskyComposed By92243Pierre BoulezConductor547971The Cleveland OrchestraOrchestra21-5Premiére Partie: L'Adoration De La Terre = Part One: The Adoration Of The Earth15:5521-5.1Introduction21-5.2Les Augures Printaniers21-5.3(Danses Des Adolescentes)21-5.4Jeu Du Rapt21-5.5Rondes Printanières21-5.6Jeux Des Cités Rivales21-5.7Cortège Du Sage21-5.8Adoration De La Terre - Le Sage21-5.9Danse De La Terre21-6Seconde Partie: Le Sacrifice = Part Two: The Sacrifice17:2721-6.1Introduction21-6.1Cercles Mystérieux Des Adolescentes21-6.1Glorification De L'Élue21-6.1Évocation Des Ancêtres21-6.1Action Rituelle Des Ancêtres21-6.1Danse Sacrale (L'Élue)Franck – Symphony / Poulenc – Organ ConcertoSymphony In D Major832661César FranckComposed By712500Seiji OzawaConductor395913Boston Symphony OrchestraOrchestra22-11. Lento – Allegro Non Troppo17:2322-22. Allegretto9:4522-33. Allegro Non Troppo10:03Concerto In G Minor For Organ, Strings And Timpani361814Francis PoulencComposed By712500Seiji OzawaConductor395913Boston Symphony OrchestraOrchestra252872Simon PrestonOrgan1055114Everett FirthTimpani22-4Andante – Allegro Giocoso –5:2322-5Subito Andante Moderato7:0722-6Allegro. Molto Agitiato – Très Calme. Lent – Allegro Initial – Tempo Introduction: Largo9:54Richard Wagner – Orchestral Music: Tannhaüser, Parsifal, Tristan Und IsoldeTannhaüser294746Richard WagnerComposed By368137Claudio AbbadoConductor260744Berliner PhilharmonikerOrchestra23-1Overture14:19Parsifal294746Richard WagnerComposed By368137Claudio AbbadoConductor260744Berliner PhilharmonikerOrchestra23-2Prelude to Act I / Suite From Act III12:3523-3Feierlich Bewegt (Gurnemanz Empties The Phial Over Parsifal's Head)3:1023-4Karfreitagszauber = Good Friday Music (Parsifal Turns And Gazes In Gentle Rapture On Woods And Meadows)6:3123-5Transformation Music And Procession / Langsam (Glockengeläut = Bells) “Geleiten Wir Im Bergenden Schrein Den Gral Zum Heiligen Amte” (Knights)9:05784693RadiokörenSwedish Radio ChorusChorus872550Simon HalseyChorus Master23-6Breit (Parsifal Moves Toward The Centre, Holding The Spear Aloft Before Him) “Höchsten Heiles Wunder! Erlösung Dem Erlöser!” (Boys, Youths And Knights)7:04784693RadiokörenSwedish Radio ChorusChorus872550Simon HalseyChorus MasterTristan Und Isolde294746Richard WagnerComposed By368137Claudio AbbadoConductor260744Berliner PhilharmonikerOrchestra23-7Prelude To Act I10:2323-8Isolde's Liebestod6:42German OverturesA Midsummer Night's Dream Op. 21623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-1Allegro Di Molto13:08Euryanthe J 291620726Carl Maria von WeberComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-2Allegro Marcato, Con Molto Fuoco – Largo – Tempo I Assai Moderato – Tempo I8:36Oberon J 306620726Carl Maria von WeberComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-3Adagio Sostenuto – Allegro Con Fuoco10:14The Hebrides (“Fingal's Cave”) Op. 26623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-4Allegro Moderato10:22The Merry Wives Of Windsor696211Otto NicolaiComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-5Andante Moderato – Poco Più Animato – Allegro Vivace8:49Hans Heiling2225453Heinrich MarschnerHeinrich August MarschnerComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-6Allegro Non Troppo8:29Rienzi, The Last Of The Tribunes294746Richard WagnerComposed By839990Christian ThielemannConductor754974Wiener PhilharmonikerOrchestra24-7Molto Sostenuto E Maestoso – Allegro Energico – Un Poco Più Vivace – Molto Più Stretto11:42Modest Mussorgsky – Pictures At An ExhibitionPictures At An Exhibition523633Modest MussorgskyComposed By1057191Gustavo DudamelConductor754974Wiener PhilharmonikerOrchestra216140Maurice RavelOrchestrated By25-1Promenade: Allegro Giusto, Nel Modo Russico; Senza Allegrezza, Ma Poco Sostenuto1:3525-21. Gnomus: Vivo2:1225-3Promenade: Moderato Comodo E Con Delicatezza0:5525-42. Il Vecchio Castello = The Old Castle: Andante4:2325-5Promenade: Moderato Non Tanto, Pesamente0:3025-63. Tuileries (Dispute D'Enfants Après Jeux) - Tuileries Gardens (Children Quarrelling At Play)1:0525-74. Bydło: Sempre Moderato, Pesante2:5625-8Promenade: Tranquillo0:4325-95. Ballet Des Poussins Dans Leurs Coques = Ballet Of The Unhatched Chicks: Scherzino. Vivo Leggiero1:0925-106. Samuel Goldenberg Und Schmuÿle: Andante2:2125-117. Limoges. Le Marché (La Grande Nouvelle) = The Market At Limoges (The Big News): Allegretto Vivo, Sempre Scherzando1:1925-128. Catacombae (Sepulcrum Romanum) = Catacombs (The Roman Tomb): Largo1:5725-13Cum Mortuis In Lingua Mortua = With The Dead In A Dead Language: Andante Non Troppo, Con Lamento2:0425-149. La Cabane Dur Des Pattes De Poule = The Hut On Chicken's Legs (Baba-Yaga): Allegro Con Brio, Feroce – Andante Mosso – Allegro Molto3:3225-1510. La Grande Porte De Kiev = The Great Gate Of Kiev: Allegro Alla Breve. Maestoso. Con Grandezza5:3325-16Night On Bald Mountain: Allegro Feroce11:22523633Modest MussorgskyComposed By1057191Gustavo DudamelConductor754974Wiener PhilharmonikerOrchestra25-17Waltz From Swan Lake: Tempo Di Valse7:00999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By1057191Gustavo DudamelConductor754974Wiener PhilharmonikerOrchestraMendelssohn – Symphonies 4 »Italian« & 5 »Reformation«Symphony No. 4 In A Major “Italian” Op. 90 (MWV N 16)623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By1584830Yannick Nézet-SéguinConductor848261The Chamber Orchestra Of EuropeOrchestra26-11. Allegro Vivace10:2026-22. Andante Con Moto6:3726-33. Menuetto. Con Moto Moderato6:2826-44. Saltarello. Presto5:33Symphony No. 5 In D Minor “Reformation” Op. 107 (MWV N 15)623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By1584830Yannick Nézet-SéguinConductor848261The Chamber Orchestra Of EuropeOrchestra26-51. Andante – Allegro Con Fuoco11:3326-62. Allegro Vivace5:5426-73a. Andante3:4426-83b. Recitative1:5526-94. Chorale: “Ein Feste Burg Ist Unser Gott” / Andante Con Moto – Allegro Vivace – Allegro Maestoso8:00Bruckner – Symphony No. 4 / Wagner – Lohengrin Prelude27-1Lohengrin – Prelude To Act I9:17294746Richard WagnerComposed By1554740Andris NelsonsConductor522210Gewandhausorchester LeipzigOrchestraSymphony No. 4 In E Flat Major “Romantic” WAB 104479037Anton BrucknerComposed By1554740Andris NelsonsConductor522210Gewandhausorchester LeipzigOrchestra1493527Leopold NowakScore Editor27-21. Bewegt, Nicht Zu Schnell19:5527-32. Andante Quasi Allegretto17:1627-43. Scherzo. Bewegt – Trio. Nicht Zu Schnell. Keinesfalls Schleppend10:5427-54. Finale. Bewegt, Doch Nicht Zu Schnell22:02Early Concerto Recordings (1928-1943)Concerto For Piano And Orchestra No. 1 In E Minor Op. 11192325Frédéric ChopinComposed By1951777Julius PrüwerConductor260744Berliner PhilharmonikerOrchestra874562Alexander BrailowskyPiano28-13. Rondo. Vivace9:45Concerto For Violin And Orchestra In D Major115469Igor StravinskyComposed By115469Igor StravinskyConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoureuxOrchestra1026738Samuel DushkinViolin28-21. Toccata5:5628-32. Aria I4:1728-43. Aria II4:3328-54. Capriccio6:13Concerto For Piano And Orchestra No. 2 In B Flat Major Op. 832866277Max FiedlerConductor260744Berliner PhilharmonikerOrchestra1588554Elly NeyPiano1306131Tibor De MachulaVioloncello [Solo]28-63. Andante13:2828-7Rondo For Piano And Orchestra In D Major K 3828:1695546Wolfgang Amadeus MozartComposed By860731Paul van KempenConductor854918Dresdner PhilharmonieOrchestra157707Wilhelm KempffPianoConcerto For PIano And Orchestra In D Minor K 46695546Wolfgang Amadeus MozartComposed By860731Paul van KempenConductor854918Dresdner PhilharmonieOrchestra157707Wilhelm KempffPiano28-83. Rondo. Allegro Assai7:20Concerto For Violoncello And Orchestra In A Minor Op. 129578727Robert SchumannComposed By860731Paul van KempenConductor833446Staatskapelle BerlinOrchestra944561Enrico MainardiVioloncello28-93. Sehr Lebhaft8:39Concerto For Violin And Orchestra No. 1 In G Minor Op. 26834101Max BruchComposed By823061Carl SchurichtConductor833446Staatskapelle BerlinOrchestra502816Heinz StanskeViolin28-101. Vorspiel. Allegro Moderato (Excerpt)4:35Concerto For Violin And Orchestra In D Minor Op. 47627442Jean SibeliusComposed By928602Armas JärnefeltConductor2603897Städtisches Orchester BerlinOrchestra4073674Anja IgnatiusViolin28-113. Allegro, Ma Non Tanto7:34Sviatoslav Richter: Rachmaninov – Piano Concerto No. 2 / Tchaikovksy – Piano Concerto No. 1Concerto For Piano And Orchestra No. 2 In C Minor Op. 18206280Sergei RachmaninoffSergei RachmaninovComposed By834713Stanislaw WislockiStanisław WisłockiConductor910618Orkiestra Symfoniczna Filharmonii NarodowejWarsaw Philharmonic OrchestraOrchestra834578Sviatoslav RichterPiano29-11. Moderato11:0429-22. Adagio Sostenuto11:5129-33. Allegro Scherzando11:35Concerto For Piano And Orchestra No. 1 In B Flat Minor Op. 23999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By283122Herbert von KarajanConductor696225Wiener SymphonikerOrchestra834578Sviatoslav RichterPiano29-41. Allegro Non Troppo E Molto Maestoso – Allegro Con Spirito22:0729-52. Andantino Semplice – Prestissimo – Tempo I6:5529-63. Allegro Con Fuoco7:09Pierre Fournier, Violoncello: Saint-Saëns – Cellokonzert Nr. 1 A-Moll / Lalo – Cellokonzert D-Moll / Bruch – Kol Nidrei Op. 47Concerto For Violoncello And Orchestra In D Minor883257Édouard LaloComposed By833128Jean MartinonConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoureuxOrchestra834051Pierre FournierVioloncello30-11. Prélude. Lento – Allegro Maestoso – Tempo I13:1130-22. Intermezzo. Andantino Con Moto – Allegro Presto – Andantino (Tempo I) – Allegro Presto6:3130-33. Introduction. Andante – Allegro Vivace7:23Concerto For Violoncello And Orchestra No. 1 In A Minor Op. 33456926Camille Saint-SaënsComposed By833128Jean MartinonConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoureuxOrchestra834051Pierre FournierVioloncello30-41. Allegro Non Troppo – Animato – Allegro Molto – Tempo I –5:4930-52. Allegretto Con Moto –5:5830-63. Tempo I – Un Peu Moins Vite – Più Allegro Comme Le Premier Mouvement – Molto Allegro7:3230-7Kol Nidrei Op. 47: Adagio On Hebrew Melodies For Violoncello And Orchestra: Adagio Ma Non Troppo – Un Poco Più Animato10:27834101Max BruchComposed By833128Jean MartinonConductor448007Orchestre Des Concerts LamoureuxOrchestre LamoureuxOrchestra834051Pierre FournierVioloncello30-8Schelomo: Hebrew Rhapsody For Violoncello And Orchestra: Lento Moderato – Andante Moderato – Allegro Moderato – Allegro – Andante Moderato21:48944146Ernest BlochComposed By946948Alfred WallensteinConductor260744Berliner PhilharmonikerOrchestra834051Pierre FournierVioloncelloBach – Violin Concertos BWV 1041-1043 / Beethoven – Violin Romances Opp. 40 & 50Violin Concerto No. 1 In A Minor BWV 104195537Johann Sebastian BachComposed By1043813Georg FischerHarpsichord696225Wiener SymphonikerOrchestra834646David OistrachDavid OistrakhViolin, Conductor31-11. (Allegro Moderato)4:0431-22. Andante7:3131-33. Allegro Assai3:57Violin Concerto No. 2 In E Major BWV 104295537Johann Sebastian BachComposed By1043813Georg FischerHarpsichord696225Wiener SymphonikerOrchestra834646David OistrachDavid OistrakhViolin, Conductor31-41. Allegro8:2331-52. Adagio7:0931-63. Allegro Assai2:57Concerto For 2 Violins, Strings And Continuo In D Minor BWV 104395537Johann Sebastian BachComposed By841294Sir Eugene GoossensEugene GoossensConductor532089George MalcolmHarpsichord341104Royal Philharmonic OrchestraOrchestra834646David OistrachDavid OistrakhViolin833068Igor OistrachIgor OistrakhViolin31-71. Vivace4:1631-82. Largo Ma Non Tanto7:3231-93. Allegro5:2131-10Violin Romance No. 1 In G Major Op. 407:1395544Ludwig van BeethovenComposed By841294Sir Eugene GoossensEugene GoossensConductor341104Royal Philharmonic OrchestraOrchestra834646David OistrachDavid OistrakhViolin31-11Violin Romance No. 2 In F Major Op. 508:4695544Ludwig van BeethovenComposed By841294Sir Eugene GoossensEugene GoossensConductor341104Royal Philharmonic OrchestraOrchestra834646David OistrachDavid OistrakhViolinWolfgang Amadeus Mozart – Violinkonzert = Violin Concerto = Concerto Pour Violon Nr. 1 KV 207 / Adagio KV 261 / Rondo KV 269 / KV373Concerto For Violin And Orchestra No. 1 In B Flat Major K 20795546Wolfgang Amadeus MozartComposed By260744Berliner PhilharmonikerOrchestra832900Wolfgang SchneiderhanViolin, Conductor, Cadenza32-11. Allegro Moderato7:0032-22. Adagio6:4332-33. Presto5:18Concerto For Violin And Orchestra No. 2 In D Major K 21195546Wolfgang Amadeus MozartComposed By260744Berliner PhilharmonikerOrchestra832900Wolfgang SchneiderhanViolin, Conductor, Cadenza32-41. Allegro Moderato7:4632-52. Andante5:5232-63. Rondeau. Allegro4:0832-7Adagio For Violin And Orchestra In E Major K 2616:4695546Wolfgang Amadeus MozartComposed By260744Berliner PhilharmonikerOrchestra832900Wolfgang SchneiderhanViolin, Conductor, Cadenza32-8Rondo For Violin And Orchestra In B Flat Major K 2696:3095546Wolfgang Amadeus MozartComposed By260744Berliner PhilharmonikerOrchestra832900Wolfgang SchneiderhanViolin, Conductor32-9Rondo For Violin And Orchestra In C Major K 3735:0695546Wolfgang Amadeus MozartComposed By260744Berliner PhilharmonikerOrchestra832900Wolfgang SchneiderhanViolin, ConductorMendelssohn / Tschaikowsky – Violinkonzerte = Violin ConcertosConcerto For Violin And Orchestra In D Major Op. 35999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra914907Nathan MilsteinViolin33-11. Allegro Moderato17:0233-22. Canzonetta. Andante6:1433-33. Finale. Allegro Vivacissimo8:57Concerto For Violin And Orchestra In E Minor Op. 64623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra914907Nathan MilsteinViolin33-41. Allegro Molto Appassionato11:2933-52. Andante7:4933-63. Allegro Non Troppo – Allegro Molto Vivace6:27Mozart – Piano Concertos No. 20 & 21Concerto For Piano And Orchestra No. 20 In D MInor K 46695546Wolfgang Amadeus MozartComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra280177Friedrich GuldaPiano34-11. Allegro15:2495544Ludwig van BeethovenCadenza [WoO 58, 1]34-22. Romance9:5234-33. Rondo. Allegro Assai7:38842308Johann Nepomuk HummelCadenza [I]95544Ludwig van BeethovenCadenza [II - WoO 58, 2]Concerto For Piano And Orchestra No. 21 In C Major K 46795546Wolfgang Amadeus MozartComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra280177Friedrich GuldaPiano, Cadenza [I & III]34-41. Allegro Maestoso14:5934-52. Andante7:4734-63. Allegro Vivace Assai6:38Vivaldi / Tartini / Boccherini – Cello-Konzerte = Cello ConcertosConcerto For Violoncello And Strings No. 2 In D Major G479834577Mstislav RostropovichArranged By, Cadenza [I & III], Violoncello833097Luigi BoccheriniComposed By858577Paul SacherConductor858578Collegium Musicum ZürichOrchestra35-11. Allegro6:4335-22. Adagio5:0935-33. Allegro4:48Concerto For Violoncello And Strings In C Major RV 398108566Antonio VivaldiComposed By858577Paul SacherConductor1798828Martin DerungsHarpsichord [Continuo]858578Collegium Musicum ZürichOrchestra834577Mstislav RostropovichVioloncello2369549Alexandre SteinVioloncello [Solo]35-41. Allegro3:0635-52. Largo2:5035-63. Allegro2:10Concerto For Violoncello And Strings In A Major834577Mstislav RostropovichCadenza [I & III], Violoncello837881Giuseppe TartiniComposed By858577Paul SacherConductor858578Collegium Musicum ZürichOrchestra35-71. Allegro4:3935-82. Larghetto4:3935-93. Allegro Assai5:23Concerto For Violoncello And Strings In G Major RV 413108566Antonio VivaldiComposed By858577Paul SacherConductor1798828Martin DerungsHarpsichord [Continuo]858578Collegium Musicum ZürichOrchestra834577Mstislav RostropovichVioloncello35-101. Allegro3:3835-112. Largo4:1835-123. Allegro2:57Ludwig van Beethoven – Klavierkonzerte Nos. 1 & 3Concerto For Piano And Orchestra No. 1 In C Major Op. 1595544Ludwig van BeethovenComposed By, Cadenza [I & III]833560Carlo Maria GiuliniConductor696225Wiener SymphonikerOrchestra895161Arturo Benedetti MichelangeliPiano36-11. Allegro Con Brio18:3336-22. Largo10:3636-33. Rondo. Allegro8:54Concerto For Piano And Orchestra No. 3 In C Minor Op. 3795544Ludwig van BeethovenComposed By833560Carlo Maria GiuliniConductor696225Wiener SymphonikerOrchestra895161Arturo Benedetti MichelangeliPiano36-41. Allegro Con Brio17:1495544Ludwig van BeethovenCadenza36-52. Largo11:1636-63. Rondo. Allegro9:35Johannes Brahms – Klavierkonzert = Piano Concerto No. 1Concerto For Piano And Orchestra No. 1 In D Minor Op. 15304975Johannes BrahmsComposed By283127Karl BöhmConductor754974Wiener PhilharmonikerOrchestra465982Maurizio PolliniPiano37-11. Maestoso20:4537-22. Adagio13:2337-33. Rondo. Allegro Non Troppo11:50Antonín Dvořák / Robert Schumann – Cello ConcertosConcerto For Violoncello And Orchestra In B Minor Op. 104268272Antonín DvořákComposed By299702Leonard BernsteinConductor837568Israel Philharmonic OrchestraOrchestra670668Mischa MaiskyVioloncello38-11. Allegro16:3938-22. Adagio, Ma Non Troppo13:2338-33. Finale. Allegro Moderato13:34Concerto For Violoncello And Orchestra in A Minor Op. 129578727Robert SchumannComposed By299702Leonard BernsteinConductor754974Wiener PhilharmonikerOrchestra670668Mischa MaiskyVioloncello38-41. Nicht Zu Schnell11:5038-52. Langsam4:4138-63. Sehr Lebhaft7:53Franz Liszt – Klavierkonzerte Nos. 1 & 2 / TotentanzConcerto For Piano And Orchestra No. 1 In E Flat Major S 124226461Franz LisztComposed By712500Seiji OzawaConductor395913Boston Symphony OrchestraOrchestra837573Krystian ZimermanPiano39-11. Allegro Maestoso5:3139-22. Quasi Adagio – Allegretto Vivace – Allegro Animato8:5439-33. Allegro Marziale Animato – Presto4:02Concerto For Piano And Orchestra No. 2 In A Major S 125226461Franz LisztComposed By712500Seiji OzawaConductor395913Boston Symphony OrchestraOrchestra837573Krystian ZimermanPiano39-4Adagio Sostenuto Assai – Allegro Agitato Assai –7:2739-5Allegro Moderato – Allegro Deciso –8:1939-6Marziale Un Poco Meno Allegro –4:2339-7Allegro Animato - Stretto (Molto Accelerando)1:4439-8Totentanz (Danse Macabre) S 525 - Paraphrase On “Dies Irae” For Piano And Orchestra: Andante – Allegro – Allegro Moderato (Var. I & II) – Molto Vivace (Var. III) – Lento (Var. IV) – Vivace (Var. V) – Sempre Allegro (Ma Non Troppo) – Un Poco Meno Allegro – Presto – Allegro Animato15:12226461Franz LisztComposed By712500Seiji OzawaConductor395913Boston Symphony OrchestraOrchestra837573Krystian ZimermanPianoWolfgang Amadeus Mozart – Clarinet Concerto / Horn Concertos Nos. 1 & 4Concerto For Clarinet And Orchestra In A Major K 6221489086Charles NeidichCadenza [I & II], Clarinet [Basset]95546Wolfgang Amadeus MozartComposed By837570Orpheus Chamber OrchestraOrchestra40-11. Allegro12:2840-22. Adagio8:3740-33. Rondo. Allegro8:21Concerto For Horn And Orchestra No. 1 In D Major K 41295546Wolfgang Amadeus MozartComposed By1386672David JolleyHorn837570Orpheus Chamber OrchestraOrchestra40-41. Allegro4:4540-52. Rondo. Allegro4:03Concerto For Horn And Orchestra No. 4 In E Flat Major K 49595546Wolfgang Amadeus MozartComposed By1386672David JolleyHorn837570Orpheus Chamber OrchestraOrchestra40-61. Allegro Maestoso8:141386672David JolleyCadenza [After Dennis Brain]40-72. Romance. Andante Cantabile4:5040-83. Rondo. Allegro Vivace3:40Prokofiev – Piano Concertos Nos. 1 & 3Concerto For Piano And Orchestra No. 1 In D Flat Major Op. 10621694Sergei ProkofievComposed By368137Claudio AbbadoConductor260744Berliner PhilharmonikerOrchestra834612Yevgeny KissinPiano41-11. Allegro Brioso – Poco Più Mosso – Tempo I – Meno Mosso – Più Mosso (Tempo I) – Animato –6:2841-22. Andante Assai – Allegro Scherzando – Poco Più Sostenuto4:1041-33. Più Mosso – Animato4:04Concerto For Piano And Orchestra No. 3 In C Major Op. 26621694Sergei ProkofievComposed By368137Claudio AbbadoConductor260744Berliner PhilharmonikerOrchestra41-41. Andante – Allegro9:2641-52. Tema. Andantino – Variation I. L'Istesso Tempo – Variation II. Allegro – Variation III. Allegro Moderato – Variation IV. Andantino Meditativo – Variation V. Allegro Giusto – Tema. L'Istesso Tempo8:4241-63. Allegro Ma Non Troppo9:28Martha Argerich: Shostakovich – Piano Concerto No. 1 / Haydn – Piano Concerto No. 11 Concerto For Piano And String Orchestra No. 1 Op. 35115461Dmitri ShostakovichComposed By847372Jörg FaerberConductor935812Württembergisches KammerorchesterWürttembergisches Kammerorchester HeilbronnOrchestra832905Martha ArgerichPiano855438Guy TouvronTrumpet [Solo]42-11. Allegro Moderato – Attacca:6:0542-22. Lento – Attacca:8:2342-33. Moderato – Attacca:1:4342-44. Allegro Con Brio6:31Concerto For Piano And Orchestra In D Major Hob.XVIII:11108568Joseph HaydnComposed By847372Jörg FaerberConductor935812Württembergisches KammerorchesterWürttembergisches Kammerorchester HeilbronnOrchestra832905Martha ArgerichPiano42-51. Vivace7:2842-62. Un Poco Adagio7:221374691Wanda LandowskaCadenza42-73. Rondo All'Ungarese. Allegro Assai4:02Anne-Sophie Mutter: Brahms – Violinkonzert / Schumann – Fantasie Op. 131Concerto For Violin And Orchestra In D Major Op. 77304975Johannes BrahmsComposed By522209Kurt MasurConductor327356New York PhilharmonicOrchestra834611Anne-Sophie MutterViolin43-11. Allegro Non Troppo22:55835045Joseph JoachimCadenza1142495Ossip SchnirlinCadenza [Revised]43-22. Adagio9:2043-33. Allegro Giocoso, Ma Non Troppo Vivace – Poco Più Presto7:5543-4Phantasie For Violin And Orchestra In C Major Op. 13113:12578727Robert SchumannComposed By522209Kurt MasurConductor327356New York PhilharmonicOrchestra620186Fritz KreislerTranscription By834611Anne-Sophie MutterViolinCredo: Hélène Grimaud44-1Fantasia On An Ostinato For Solo Piano12:04839233John CoriglianoComposed By833031Hélène GrimaudPianoPiano Sonata No. 17 In D Minor Op. 31 No. 2 “The Tempest”95544Ludwig van BeethovenComposed By833031Hélène GrimaudPiano44-21. Largo – Allegro8:2044-32. Adagio7:3944-43. Allegretto5:59Fantasia For Piano, Chorus And Orchestra In C Minor Op. 80 “Choral Fantasy”784693RadiokörenSwedish Radio ChoirChorus945657Lone LarsenChorus Master95544Ludwig van BeethovenComposed By653535Esa-Pekka SalonenConductor380036Sveriges Radios SymfoniorkesterSwedish Radio Symphony OrchestraOrchestra833031Hélène GrimaudPiano44-5Adagio3:3644-6Finale. Allegro – Meno Allegro (Allegretto) – Allegro Molto – Adagio Ma Non Troppo – Marcia Assai Vivace – Allegro – Allegretto Ma Non Troppo Quasi Andante Con Moto “Schmeichelnd Hold Und Lieblich Klingen” – Presto15:2744-7“Credo” For Piano, Mixed Choir And Orchestra15:16784693RadiokörenSwedish Radio ChoirChorus945657Lone LarsenChorus Master216141Arvo PärtComposed By380036Sveriges Radios SymfoniorkesterSwedish Radio Symphony OrchestraOrchestra833031Hélène GrimaudPianoLisa Batiashvili: Echoes Of TimeViolin Concerto No. 1 In A Minor Op. 77115461Dmitri ShostakovichComposed By653535Esa-Pekka SalonenConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra2608093Lisa BatiashviliViolin45-11. Nocturne. Moderato12:2345-22. Scherzo. Allegro6:1745-33. Passacaglia. Andante – Cadenza14:1045-44. Burlesque. Allegro Con Brio – Presto4:4245-5V & V For Violin And Taped Voice With String Orchestra10:51266488Giya KancheliComposed By653535Esa-Pekka SalonenConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra2608093Lisa BatiashviliViolin45-6Lyrical Waltz From Seven Dolls' Dances3:25115461Dmitri ShostakovichComposed By653535Esa-Pekka SalonenConductor604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra3899644Тамаз БатиашвилиTamas BatiashviliOrchestrated By2608093Lisa BatiashviliViolin45-7Spiegel Im Spiegel = Mirror In The Mirror For Violin And PIano10:21216141Arvo PärtComposed By833031Hélène GrimaudPiano2608093Lisa BatiashviliViolin45-8Vocalise Op. 34 No. 14 For Violin And Piano5:39206280Sergei RachmaninoffSergei RachmaninovComposed By833031Hélène GrimaudPiano2608093Lisa BatiashviliViolinYuja Wang: Rachmaninov #3 / Prokofiev #2Piano Concerto No. 3 In D Minor Op. 30206280Sergei RachmaninoffSergei RachmaninovComposed By1057191Gustavo DudamelConductor1221123Simón Bolívar Symphony Orchestra Of VenezuelaOrchestra1776385Yuja WangPiano46-11. Allegro Ma Non Tanto15:5046-22. Intermezzo. Adagio10:3846-33. Finale. Alla Breve14:17Piano Concerto No. 2 In G Minor Op. 16621694Sergei ProkofievComposed By1057191Gustavo DudamelConductor1221123Simón Bolívar Symphony Orchestra Of VenezuelaOrchestra1776385Yuja WangPiano46-41. Andantino – Allegretto11:0246-52. Scherzo. Vivace2:2246-63. Intermezzo. Allegro Moderato6:3546-74. Finale. Allegro Tempestoso11:00Hilary Hahn: Mozart 5, Vieuxtemps 4 – Violin ConcertosViolin Concerto No. 5 In A Major K 219 “Turkish”835045Joseph JoachimCadenza95546Wolfgang Amadeus MozartComposed By564749Paavo JärviConductor1930176Deutsche Kammerphilharmonie BremenOrchestra310038Hilary HahnViolin47-11. Allegro Aperto10:1047-22. Adagio10:0647-33. Rondeau. Tempo Di Menuetto8:47Violin Concerto No. 4 In D Minor Op. 31954795Henri VieuxtempsComposed By564749Paavo JärviConductor1930176Deutsche Kammerphilharmonie BremenOrchestra310038Hilary HahnViolin47-41. Andante – Moderato10:0247-52. Adagio Religioso6:1747-63. Scherzo. Vivace – Trio. Meno Mosso5:4547-74. Finale Marziale. Andante – Allegro8:36Albrecht Mayer: Kammerakademie Potsdam – Lost And FoundConcerto For Oboe And Orchestra In C Major1919779Franz Anton HoffmeisterComposed By1797004Peter RainerConcertmaster461451Albrecht MayerOboe, Conductor3350010Kammerakademie PotsdamOrchestra48-11. Allegro Con Brio – Attacca5:3248-22. Adagio – Attacca7:2048-33. Rondo. Allegro5:34Concerto For Oboe And Orchestra In G Minor1742318Ludwig August LebrunComposed By1797004Peter RainerConcertmaster461451Albrecht MayerOboe, Conductor3350010Kammerakademie PotsdamOrchestra48-41. Allegro7:4048-52. Adagio6:0648-63. Rondo. Allegro6:51Concerto For Cor Anglais And Orchestra In C Major2115381Josef Fiala (2)Composed By1797004Peter RainerConcertmaster461451Albrecht MayerCor Anglais, Conductor3350010Kammerakademie PotsdamOrchestra48-71. Allegro Moderato5:4548-82. Adagio Cantabile2:4648-93. Allegro Assai3:20Concerto For Oboe And Orchestra In F Major842310Jan Antonin KozeluchJan Antonín KoželuhComposed By1797004Peter RainerConcertmaster461451Albrecht MayerOboe, Conductor3350010Kammerakademie PotsdamOrchestra48-101. Vivace7:2948-112. Adagio6:4848-123. Rondo. Allegretto7:31Chopin: Piano Concerto No. 1 / BalladesConcerto For Piano And Orchestra No. 1 In E Minor Op. 11192325Frédéric ChopinComposed By832768Gianandrea NosedaConductor212726London Symphony OrchestraOrchestra5466035Seong-Jin ChoPiano49-11. Allegro Maestoso20:3149-22. Romance. Larghetto10:3549-33. Rondo. Vivace10:0949-4Ballade No. 1 In G Minor Op. 23: Largo – Moderato10:05192325Frédéric ChopinComposed By5466035Seong-Jin ChoPiano49-5Ballade No. 2 In F Major Op. 38: Andantino7:38192325Frédéric ChopinComposed By5466035Seong-Jin ChoPiano49-6Ballade No. 3 In A Flat Major Op. 47: Allegretto7:50192325Frédéric ChopinComposed By5466035Seong-Jin ChoPiano49-7Ballade No. 4 In F Minor Op 52: Andante Con Moto12:07192325Frédéric ChopinComposed By5466035Seong-Jin ChoPianoEarly Piano Recordings (1907-1943)50-1Guitarre Op. 45 No. 23:05834122Moritz MoszkowskiComposed By1087001Alfred GrünfeldPiano50-2Frühlingsstimmen Op. 4104:031087001Alfred GrünfeldArranged By, Piano1259101Johann Strauss Jr.Johann Strauss IIComposed ByPiano Sonata No. 11 In A Major K 331 “Alla Turca”95546Wolfgang Amadeus MozartComposed By1292078Eugen D'AlbertPiano50-33. Alla Turca. Allegretto3:4350-4Rhapsodie Espagnole (Excerpt) S 2544:00226461Franz LisztComposed By4210850Walter RehbergPiano50-5Cantata “Wachet Auf, Ruft Uns Die Stimme” BWV 1405:09157707Wilhelm KempffArranged By, Piano95537Johann Sebastian BachComposed By50-6Nocturne In E Flat Major Op. 9 No. 24:38192325Frédéric ChopinComposed By1140240Raoul KoczalskiPiano24 Préludes Op. 28192325Frédéric ChopinComposed By1140240Raoul KoczalskiPiano50-71. No. 1 In C Major0:3450-82. No. 2 In A Minor1:2550-93. No. 3 In G Major0:5550-1012 Deutsche Tänze D 7907:30283469Franz SchubertComposed By1070462Eduard ErdmannPianoSymphonic Etudes Op. 13578727Robert SchumannComposed By847180Géza AndaPiano50-11Thema. Andante1:2250-12Etude 10:5250-13Etude 21:4250-14Etude 31:1850-15Etude 40:3250-16Etude 50:4250-17Etude 60:4550-18Variation 2 Posth.3:1350-19Etude 70:4350-20Etude 81:3450-21Variation 5 Posth.2:4150-22Etude 90:3450-23Etude 100:3250-24Etude 111:5250-25Finale. Etude 125:16Monique Haas Spielt Ravel, Debussy, Roussel, BartókSonatine M 40216140Maurice RavelComposed By843530Monique HaasPiano51-11. Modéré4:1051-22. Mouvement De Menuet2:5751-33. Animé3:58Valse Nobles Et Sentimentales M 61216140Maurice RavelComposed By843530Monique HaasPiano51-41. Modéré1:2251-52. Assez Lent2:1551-63. Modéré1:1551-74. Assez Animé1:0851-85. Presque Lent1:1851-96: Vif0:4451-107. Moins Vif2:3551-118. Épilogue. Lent3:53Le Tombeau De Couperin M 68216140Maurice RavelComposed By843530Monique HaasPiano51-121. Prélude2:5951-132. Fugue3:1751-143. Forlane4:5051-154. Rigaudon2:3351-165. Menuet3:5951-176. Toccata3:5951-18Toccata From Pour Le Piano3:5796123Claude DebussyComposed By843530Monique HaasPianoTrois Pièces Op. 49860230Albert RousselComposed By843530Monique HaasPiano51-191. Allegro Con Brio1:2151-202. Allegro Grazioso (Tempo Di Valse)1:3551-213. Allegro Con Spirito4:37Sonatine Sz 55304968Béla BartókComposed By843530Monique HaasPiano51-221. Bagpipers1:2551-232. Bear's Dance0:4251-243. Finale1:41Ludwig Van Beethoven: Klaviersonate Nr. 8 C-Moll Op. 13 (Pathétique), Nr. 31 As-Dur Op. 110Piano Sonata No. 8 In C Minor “Pathétique” Op. 1395544Ludwig van BeethovenComposed By1588554Elly NeyPiano52-11. Grave – Allegro Di Molto E Con Brio9:4052-22. Adagio Cantabile6:2352-33. Rondo. Allegro4:49Piano Sonata No. 14 In C Sharp Minor “Moonlight” Op. 27 No. 2 (Sonata Quasi Una Fantasia)95544Ludwig van BeethovenComposed By1588554Elly NeyPiano52-41. Adagio Sostenuto - Attacca:6:5852-52. Allegretto2:2252-63. Presto Agitato8:01Piano Sonata No. 23 In F Minor “Appassionata” Op. 5795544Ludwig van BeethovenComposed By1588554Elly NeyPiano52-71. Allegro Assai10:0552-82. Andante Con Moto – Attacca:6:5052-93. Allegro, Ma Non Troppo – Presto5:32Piano Sonata No. 31 In A Flat Major Op. 11095544Ludwig van BeethovenComposed By1588554Elly NeyPiano52-101. Moderato Cantabile Molto Espressivo6:3752-112. Allegro Molto2:3252-123. Adagio, Ma Non Troppo - Fuga. Allegro, Ma Non Troppo11:36Franz Schubert: Sonata No. 14 In A Major D.664, Moments Musicaux D.780, Hüttenbrenner VariationsPiano Sonata No. 13 In A Major D 664283469Franz SchubertComposed By157707Wilhelm KempffPiano53-11. Allegro Moderato10:3953-22. Andante4:3253-33. Allegro5:19Moments Musicaux D 780 (Op. 94)283469Franz SchubertComposed By157707Wilhelm KempffPiano53-41. Moderato In C Major5:4053-52. Andantino In A Flat Major5:4453-63. Allegro Moderato In F Minor2:0453-74. Moderato In C Sharp Minor4:5453-85. Allegro Vivace In F Minor2:5553-96. Allegretto In A Flat Major6:3313 Variations On A Theme By Anselm Hüttenbrenner In A Minor D 576283469Franz SchubertComposed By157707Wilhelm KempffPiano53-10Thema. Andantino1:0453-11Variation I0:5853-12Variation II0:5553-13Variation III0:4953-14Variation IV0:5853-15Variation V1:2253-16Variation VI1:0953-17Variation VII1:0053-18Variation VIII1:0253-19Variation IX1:1353-20Variation X0:5853-21Variation XI0:5453-22Variation XII0:5453-23Variation XIII. Allegro1:21Arturo Benedetti Michelangeli, Claude Debussy: Images I/II, Children's CornerImages: Book I96123Claude DebussyComposed By895161Arturo Benedetti MichelangeliPiano54-11. Reflets Dans L'Eau – Andantino Molto4:5354-22. Hommage À Rameau – Lent Et Grave6:3454-33. Mouvement – Animé3:39Images: Book II96123Claude DebussyComposed By895161Arturo Benedetti MichelangeliPiano54-41. Cloches À Travers Les Feuilles – Lent4:2154-52. Et La Lune Descend Sur Le Temple Qui Fut – Lent5:1254-63. Poissons D'Or – Animé4:02Children's Corner96123Claude DebussyComposed By895161Arturo Benedetti MichelangeliPiano54-71. Doctor Gradus Ad Parnassum – Modérément Animé2:1254-82. Jimbo's Lullaby – Assez Modéré3:2554-93. Sérénade For The Doll – Allegretto Ma Non Troppo2:1454-104. The Snow Is Dancing – Modérément Animé2:3654-115. The Little Shepherd – Très Modéré2:2654-126. Golliwogg's Cake-Walk – Allegro Giusto2:57Igor Strawinsky: »Pétrouchka« / Serge Prokofieff: Sonata Nr. 7 Op. 83Three Movements From “Pétrouchka”115469Igor StravinskyComposed By465982Maurizio PolliniPiano55-1Danse Russe: Allegro Giusto2:3255-2Chez Pétrouchka4:1755-3La Semaine Grasse: Con Moto – Allegretto – Tempo Giusto – Agitato8:30Piano Sonata No. 7 In B Flat Major Op. 83621694Sergei ProkofievComposed By465982Maurizio PolliniPiano55-41. Allegro Inquieto – Andantino – Allegro Inquieto – Andantino – Allegro Inquieto7:3255-52. Andante Caloroso – Poco Più Animato – Più Largamente – Un Poco Agitato – Tempo I6:1255-63. Precipitato3:17Variations For Piano Op. 27294480Anton WebernComposed By465982Maurizio PolliniPiano55-71. Sehr Mäßig1:5355-82. Sehr Schnell0:4055-93. Ruhig, Fließend3:29Piano Sonata No. 292243Pierre BoulezComposed By465982Maurizio PolliniPiano55-101. Extrêmement Rapide6:0455-112. Lent11:0555-123. Modéré, Presque Vif2:1455-134. Vif10:12Beethoven: Sonaten – Tempest, Waldstein, Les AdieuxPiano Sonata No. 17 In D Minor “The Tempest” Op. 31 No. 295544Ludwig van BeethovenComposed By308115Emil GilelsPiano56-11. Largo – Allegro9:1356-22. Adagio9:1556-33. Allegretto7:23Piano Sonata No. 21 In C Major “Waldstein” Op. 5395544Ludwig van BeethovenComposed By308115Emil GilelsPiano56-41. Allegro Con Brio11:0456-52. Introduzione. Adagio Molto4:3956-63. Rondo. Allegretto Moderato –7:3756-7Prestissimo1:45Piano Sonata No. 26 In E Flat Major “Les Adieux” Op. 81a95544Ludwig van BeethovenComposed By308115Emil GilelsPiano56-81. Das Lebewohl. Adagio – Allegro7:1256-92. Abwesenheit. Andante Espressivo4:0156-103. Das Wiedersehn. Vivacissimamente5:57Johannes Brahms: Variationen Für Klavier = Variations For Piano57-1Theme With Variations In D Minor Op. 18b (Arrangement Of 2nd Movement Of The String Sextet Op. 18): Andante, Ma Moderato12:05304975Johannes BrahmsComposed By424576Daniel BarenboimPianoVariations On A Theme By Robert Schumann Op. 919:35304975Johannes BrahmsComposed By424576Daniel BarenboimPiano57-2.1Thema. Ziemlich Langsam57-2.2Variation 1. L'Istesso Tempo57-2.3Variation 2. Poco Più Mosso57-2.4Variation 3. Tempo Di Tema57-2.5Variation 4. Poco Più Mosso57-2.6Variation 5. Allegro Capriccioso57-2.7Variation 6. Allegro57-2.8Variation 7. Andante57-2.9Variation 8. Andante Non Troppo Lento57-2.10Variation 9. Schnell57-2.11Variation 10. Poco Adagio57-2.12Variation 11. Un Poco Più Animato57-2.13Variation 12. Allegretto, Poco Scherzando57-2.14Variation 13. Non Troppo Presto57-2.15Variation 14. Andante57-2.16Variation 15. Poco Adagio57-2.17Variation 16. AdagioVariations And Fugue On A Theme By Handel Op. 2431:02304975Johannes BrahmsComposed By424576Daniel BarenboimPiano57-3.1Aria57-3.2Variation 157-3.3Variation 2. Animato57-3.4Variation 3. Dolce57-3.5Variation 4. Risoluto57-3.6Variation 5. Espressivo57-3.7Variation 657-3.8Variation 7. Con Vivacità57-3.9Variation 857-3.10Variation 9. Poco Sostenuto57-3.11Variation 10. Energico57-3.12Variation 11. Dolce57-3.13Variation 12. Soave57-3.14Variation 13. Largamente, Ma Non Più57-3.15Variation 14. Sciolto57-3.16Variation 1557-3.17Variation 16. Marcato57-3.18Variation 17. Più Mosso57-3.19Variation 18. Grazioso57-3.20Variation 19. Leggiero Und Vivace57-3.21Variation 20. Legato57-3.22Variation 21. Dolce57-3.23Variation 2257-3.24Variation 23. Vivace E Staccato57-3.25Variation 2457-3.26Variation 2557-3.27FugaJohannes Brahms: Ungarische Tänze No. 1-21 / Walzer Op. 39Hungarian Dances For Piano Duet WoO 1304975Johannes BrahmsComposed By1762555Alfons & Aloys KontarskyPiano58-1No. 1 In G Minor. Allegro Molto3:1258-2No. 2 In D Minor. Allegro Non Assai4:0958-3No. 3 In F Major. Allegretto2:5058-4No. 4 In F Minor. Poco Sostenuto4:3558-5No. 5 In F Sharp Minor. Allegro1:5658-6No. 6 In D Flat Major. Vivace3:1358-7No. 7 In A Major. Allegretto1:5158-8No. 8 In A Minor. Presto2:4358-9No. 9 In E Minor. Allegro Non Troppo2:2658-10No. 10 In E Major. Presto1:4358-11No. 11 In A Minor. Poco Andante2:5858-12No. 12 In D Minor. Presto2:3058-13No. 13 In D Major. Andantino Grazioso1:4058-14No. 14 In D Minor. Un Poco Andante1:5958-15No. 15 In B Flat Major. Allegretto Grazioso2:2658-16No. 16 In F Minor. Con Moto2:3658-17No. 17 In F Sharp Minor. Andantino3:2958-18No. 18 In D Major. Molto Vivace1:1958-19No. 19 In B Minor. Allegretto2:0858-20No. 20 In E Minor. Poco Allegretto2:1258-21No. 21 In E Minor. Vivace1:2316 Waltzes For Piano Duet Op. 39304975Johannes BrahmsComposed By1762555Alfons & Aloys KontarskyPiano58-22No. 1 In B Major. Tempo Giusto0:5158-23No. 2 In E Major1:1758-24No. 3 In G Sharp Minor0:5858-25No. 4 In E Minor. Poco Sostenuto1:0558-26No. 5 In E Major1:2358-27No. 6 In C Sharp Major. Vivace0:5458-28No. 7 In C Sharp Minor. Poco Più Andante2:0758-29No. 8 In B Flat Major0:5058-30No. 9 In D Minor1:1158-31No. 10 In G Major0:3458-32No. 11 In B Minor0:5858-33No. 12 In E Major1:3558-34No. 13 In C Major0:3658-35No. 14 In A Minor1:1458-36No. 15 In A Major1:3658-37No. 16 In D Minor1:03Chopin, Argerich: Sonate No. 2 B-Moll »Mit Dem Trauermarsch« (In B Flat Minor)/ Sonate No. 3 H-Moll (In B Minor)Piano Sonata No. 2 In B Flat Minor Op. 35192325Frédéric ChopinComposed By832905Martha ArgerichPiano59-11. Grave – Doppio Movimento6:4259-22. Scherzo – Più Lento – Tempo I6:0359-33. Marche Funèbre. Lento8:3659-44. Finale. Presto1:2759-5Scherzo No. 3 In C Sharp Minor Op. 39: Presto Con Fuoco6:28192325Frédéric ChopinComposed By832905Martha ArgerichPianoPiano Sonata No. 3 In B Minor Op. 58192325Frédéric ChopinComposed By832905Martha ArgerichPiano59-61. Allegro Maestoso10:5459-72. Scherzo. Molto Vivace2:1859-83. Largo8:4459-94. Finale. Presto Non Tanto4:22Ravel: Gaspard De La Nuit / Prokofiev: Piano Sonata = Klaviersonate No. 6Gaspard De La Nuit (Three Poems For Piano After Aloysius Bertrand)216140Maurice RavelComposed By833794Ivo PogorelichPiano60-11. Ondine. Lent7:1760-22. Le Gibet. Très Lent6:4760-33. Scarbo. Modéré9:22Piano Sonata No. 6 In A Major Op. 82621694Sergei ProkofievComposed By833794Ivo PogorelichPiano60-41. Allegro Moderato8:3060-52. Allegretto4:4360-63. Tempo Di Valzer Lentissimo8:1660-74. Vivace6:42Horowitz The Poet - Schubert: Sonata In B Flat D 960 / Schumann: KinderszenenPiano Sonata No. 21 In B Flat Major D 960283469Franz SchubertComposed By847818Vladimir HorowitzPiano61-11. Molto Moderato19:1361-22. Andante Sostenuto8:0261-33. Scherzo. Allegro Vivace Con Delicatezza4:1261-44. Allegro Ma Non Troppo7:32Kinderszenen = Scenes From Childhood Op. 15578727Robert SchumannComposed By847818Vladimir HorowitzPiano61-51. Von Fremden Ländern Und Menschen = Of Foreign Lands And Peoples1:3561-62. Kuriose Geschichte = Strange Story1:0661-73. Hasche-Mann = Catch Me If You Can0:3261-84. Bittendes Kind = Pleading Child0:5061-95: Glückes Genug = Happiness0:4061-106. Wichtige Begebenheit = Important Event0:5161-117. Träumerei = Rêverie2:3461-128. Am Kamin = By The Fireside1:1961-139. Ritter Vom Steckenpferd = Knight Of The Hobby-Horse0:4061-1410. Fast Zu Ernst = Almost Too Serious1:3061-1511. Fürchtenmachen = Bogey-Man1:3861-1612. Kind Im Einschlummern = Child Falling Asleep1:4061-1713. Der Dichter Spricht = The Poet Speaks2:07Mozart: Klaviersonaten = Piano Sonatas K.331 »Alla Turca«, K.457; Fantasias K.397, K.47562-1Fantasia For Piano In C Minor K 475: Adagio – Allegro – Andantino – Più Allegro – Primo Tempo11:5995546Wolfgang Amadeus MozartComposed By833777Maria João PiresPianoPiano Sonata No. 14 In C Minor K 45795546Wolfgang Amadeus MozartComposed By833777Maria João PiresPiano62-21. Molto Allegro8:1362-32. Adagio7:2562-43. Allegro Assai4:3362-5Fantasia For Piano In D Minor K 397: Andante – Adagio – Presto – Tempo Primo – Allegretto6:0095546Wolfgang Amadeus MozartComposed By833777Maria João PiresPianoPiano Sonata No. 11 In A Major K 331 “Alla Turca”95546Wolfgang Amadeus MozartComposed By833777Maria João PiresPiano62-61. Tema Con Variazioni – Tema. Andante Grazioso – Variation I – Variation II – Variation III – Variation IV – Variation V. Adagio – Variation VI. Allegro14:1362-72. Menuetto – Trio5:4662-83. Alla Turca. Allegretto3:41Lang Lang: Live At Carnegie Hall63-1Applause0:2663-2Abegg-Variations Op. 1 In F Major À Mademoiselle Pauline, Comtesse D'Abegg: Tema. Animato – Var. I-III – Cantabile – Finale Alla Fantasia. Vivace8:18578727Robert SchumannComposed By984186Lang LangPianoPiano Sonata In C Major Hob. XVI:50108568Joseph HaydnComposed By984186Lang LangPiano63-31. Allegro5:2263-42. Adagio7:1263-53. Allegro Molto2:37Piano Sonata In C Major D 760 “Wanderer-Fantasie”63-6Allegro Con Fuoco Ma Non Troppo –6:1263-7Adagio –7:4663-8Presto –4:4663-9Allegro4:07Eight Memories In Watercolor Op. 1276143Tan DunComposed By984186Lang LangPiano63-10Missing Moon. Adagio Rubato2:5663-11Staccato Beans. Allegro1:1963-12Herdboy's Song. Licenza Pastorale1:4163-13Blue Nun. Andante1:0763-14Red Wilderness. Lento1:4863-15Ancient Burial. Adagio2:4563-16Floating Clouds. Andante Semplice1:4363-17Sunrain. Allegro1:3863-18Nocturne In D Flat Major Op. 27 No. 2: Lento Sostenuto6:41192325Frédéric ChopinComposed By984186Lang LangPianoTrifonov: The Carnegie RecitalPiano Sonata No. 2 In G Sharp Minor Op. 19813771Alexander ScriabinComposed By3694054Daniil TrifonovPiano64-11. Andante7:0564-22. Presto3:26Piano Sonata In B Minor S 178226461Franz LisztComposed By3694054Daniil TrifonovPiano64-3Lento Assai – Allegro Energico –11:1364-4Più Mosso – Andante Sostenuto –7:3764-5Allegro Energico – Andante Sostenuto – Lento Assai10:5924 Préludes Op. 28192325Frédéric ChopinComposed By3694054Daniil TrifonovPiano64-6No. 1 In C Major0:3864-7No. 2 In A Minor64-8No. 3 In G Major64-9No. 4 In E Minor64-10No. 5 In D Major64-11No. 6 In B Minor64-12No. 7 In A Major64-13No. 8 In F Sharp Minor64-14No. 9 In E Major64-15No. 10 In C Sharp Minor64-16No. 11 In B Major64-17No. 12 In G Sharp Minor64-18No. 13 In F Sharp Major64-19No. 14 In E Flat Minor64-20No. 15 In D Flat Major64-21No. 16 In B Flat Minor64-22No. 17 In A Flat Major64-23No. 18 In F Minor64-24No. 19 In E Flat Major64-25No. 20 In C Minor64-26No. 21 In B Flat Major64-27No. 22 In G Minor64-28No. 23 In F Major64-29No. 24 In D Minor64-30Encore: Skazki = Fairy Tales Op. 26 No. 2 In E Flat Major1:25Johann Sebastian Bach: The French SuitesFrench Suite No. 1 In D Minor BWV 81295537Johann Sebastian BachComposed By861951Murray PerahiaPiano65-11. Allemande3:3165-22. Courante1:5565-33. Sarabande2:5465-44. Menuet I / II3:0265-55: Gigue2:52French Suite No. 2 In C Minor BWV 81395537Johann Sebastian BachComposed By861951Murray PerahiaPiano65-61. Allemande2:5165-72. Courante1:4465-83. Sarabande3:0765-94. Air1:2165-105. Menuet I / II3:0765-116. Gigue1:56French Suite No. 3 In B Minor BWV 81495537Johann Sebastian BachComposed By861951Murray PerahiaPiano65-121. Allemande3:1065-132. Courante2:0065-143. Sarabande2:5065-154. Anglaise1:1965-165. Menuet I / II3:0865-176. Gigue2:16Sokolov: SchubertImpromptus D 899283469Franz SchubertComposed By1408150Grigory SokolovPiano66-1No. 1 In C Minor: Allegro Molto Moderato10:3566-2No. 2 In E Flat Major: Allegro5:4666-3No. 3 In G Flat Major: Andante5:2566-4No. 4 In A Flat Major: Allegretto8:233 Klavierstücke D 946283469Franz SchubertComposed By1408150Grigory SokolovPiano66-5No. 1 In E Flat Minor: Allegro Assai14:1166-6No. 2 In E Flat Major: Allegretto13:3466-7No. 3 In C Major: Allegro7:13Early Chamber Music Recordings (1911-1951)67-1Liebesfreud3:22620186Fritz KreislerComposed By, Violin3957168Haddon SquirePiano67-2Liebesleid3:38620186Fritz KreislerComposed By, Violin3957168Haddon SquirePiano67-3Waltz In E Flat Major2:12842308Johann Nepomuk HummelComposed By1341390Percy B. KahnPercy Benedict KahnPiano833710Mischa ElmanViolin67-4Variations On A Theme Of A. Corelli3:05620186Fritz KreislerF. KreislerArranged By837881Giuseppe TartiniComposed By828374Bruno Seidler-WinklerPiano1679540Adolf BuschViolinTrio For Strings No. 1 Op. 34567511Paul HindemithComposed By, Viola2685881Amar-QuartettAmar-Hindemith TrioEnsemble2685880Walter CasparViolin2028533Rudolf HindemithVioloncello67-51. Toccata4:03Sonata for Piano And Violin In A Major832661César FranckComposed By2344420Manfred GurlittPiano883337Shinichi Suzuki (2)Violin67-63. Recitativo-Fantasia. Ben Moderato6:43String Quartet No. 12 In F Major Op. 96 “American”268272Antonín DvořákComposed By3098125České KvartetoBohemian String QuartetEnsemble67-71. Allegro Ma Non Troppo7:12Violin Sonata No. 3 In E Flat Major Op. 12 No. 395544Ludwig van BeethovenComposed By1966137Guido AgostiPiano1980682Ferenc VecseyFranz Von VecseyViolin67-83. Rondo. Allegro Molto4:06Violin Sonata No. 9 In A Major Op. 47 “Kreutzer”95544Ludwig van BeethovenComposed By157707Wilhelm KempffPiano2018323Georg KulenkampffViolin67-93. Finale. Presto6:5567-10Zigeunerweisen Op. 206:50873814Pablo de SarasateComposed By3317474Otto A. GraefOtto GraefPiano2584886Váša PříhodaViolin67-11Violin Sonata In A Major HWV 3724:09375279Georg Friedrich HändelGeorge Frideric HandelComposed By4545697Felix van DyckFelix DyckPiano1422861Carl FleschViolinPetite Suite96123Claude DebussyComposed By1205729Franz RuppPiano2018323Georg KulenkampffViolin67-123. Menuet3:3067-13Variations On A Theme From Rossini's Mosè5:36206281Niccolò PaganiniNicolò PaganiniComposed By3317474Otto A. GraefOtto GraefPiano2650390Walter BarylliViolin8 Humoresques Op. 1011341389August WilhelmjA. WilhelmjArranged By268272Antonín DvořákComposed By3317474Otto A. GraefOtto GraefPiano2584886Váša PříhodaViolin67-147. Poco Lento E Grazioso (G Flat Major)3:30Sonata For Piano And Violin In A Major832661César FranckComposed By1016009Hubert GiesenPiano10532317Lilia d'AlboreViolin67-151. Allegretto Ben Moderato6:15Notturno E Tarantella Op. 28737925Karol SzymanowskiComposed By1771431Jean AntoniettiPiano3009093Johanna MartzyViolin67-161. Notturno5:1067-172. Tarantella5:29Franz Schubert: Forellen-Quintett A-Dur Op. 114 / Streichquartett Nr. 14 D-Moll Op. Posth. (Der Tod Und Das Mädchen)String Quartet No. 14 In D Minor D 810 “Death And The Maiden”283469Franz SchubertComposed By946554Koeckert-QuartettEnsemble883967Oskar RiedlViola994322Willi BuchnerViolin [II]883962Rudolf KoeckertViolin [I]883966Josef MerzVioloncello68-11. Allegro11:0468-22. Andante Con Moto14:4668-33. Scherzo. Allegro Molto3:4668-44. Presto7:59Piano Quintet In A Major D 667 “The Trout”283469Franz SchubertComposed By873178Franz OrtnerDouble Bass946554Koeckert-QuartettEnsemble957730Adrian AeschbacherPiano883967Oskar RiedlViola994322Willi BuchnerViolin [II]883962Rudolf KoeckertViolin [I]883966Josef MerzVioloncello68-51. Allegro Vivace9:3868-62. Andante7:2968-73. Scherzo. Presto4:3268-84. Thema. Andantino – Variazioni I-V. Allegretto8:1768-95. Finale. Allegro Giusto6:36Haydn: Kaiserquartett (Emperor) / Mozart: Jagdquartett (Hunting)String Quartet In D Minor Op. 76 No. 2 (Hob.III:76) “Fifths”108568Joseph HaydnComposed By874943Amadeus-QuartettAmadeus QuartetEnsemble874942Peter SchidlofViola883964Siegmund NisselViolin [II]874947Norbert BraininViolin [I]874945Martin LovettVioloncello69-11. Allegro6:5169-22. Andante O Più Tosto Allegretto5:1569-33. Minuetto3:1469-44. Finale. Vivace Assai4:04String Quartet In C Major Op. 76 No. 3 (Hob.III:77) “Emperor”108568Joseph HaydnComposed By874943Amadeus-QuartettAmadeus QuartetEnsemble874942Peter SchidlofViola883964Siegmund NisselViolin [II]874947Norbert BraininViolin [I]874945Martin LovettVioloncello69-51. Allegro5:0269-62. Poco Adagio, Cantabile7:3169-73. Menuetto4:3469-84. Finale. Presto3:56String Quartet No. 17 In B Flat Major K 458 “The Hunt”95546Wolfgang Amadeus MozartComposed By874943Amadeus-QuartettAmadeus QuartetEnsemble874942Peter SchidlofViola883964Siegmund NisselViolin [II]874947Norbert BraininViolin [I]874945Martin LovettVioloncello69-91. Allegro Vivace Assai6:3669-102. Menuetto. Moderato4:2269-113. Adagio6:4469-124. Allegro Assai4:33Meister Ihres Instruments III: Aurele NicoletSonata For Flute And Piano In F Major K 1395546Wolfgang Amadeus MozartComposed By302078Aurèle NicoletFlute907452Karl EngelPiano70-11. Allegro3:4170-22. Andante3:2370-33. Menuetto I – Menuetto II2:0370-4Syrinx For Flute Solo2:2096123Claude DebussyComposed By302078Aurèle NicoletFlute70-5Pièce Pour Flûte Seule: Andante – Vivo – Andante4:34841355Jacques IbertComposed By302078Aurèle NicoletFlute70-6Sequenza I For Flute Solo5:3676028Luciano BerioComposed By302078Aurèle NicoletFlute70-7Mei For Flute Solo: Lento E Rubato4:43957152Kazuo FukushimaComposed By302078Aurèle NicoletFlutePartita For Flute Solo In A Minor BWV 101395537Johann Sebastian BachComposed By302078Aurèle NicoletFlute70-81. Allemande3:1270-92. Corrente2:2670-103. Sarabande4:0770-114. Bourrée Anglaise1:55Introduction And Variations For Flute And Piano D 802 (Op. 160) (On “Trockne Blumen” From Die Schöne Müllerin), In E Minor/Major283469Franz SchubertComposed By302078Aurèle NicoletFlute907452Karl EngelPiano70-12Introduktion. Andante2:4770-13Thema. Trockne Blumen. Andantino2:0470-14Variation I1:2070-15Variation II1:1570-16Variation III2:1970-17Variation IV1:0770-18Variation V1:2770-19Variation VI2:1370-20Variation VII. Allegro2:38Johannes Brahms: String Quartets Nos. 1 & 3 / Joseph Haydn: String Quartet Op. 76 No. 4 »Sunrise«String Quartet No. 3 In B Flat Major Op. 67304975Johannes BrahmsComposed By959375Melos QuartettMelos QuartetEnsemble959376Hermann VossViola959373Gerhard VossViolin [II]959372Wilhelm MelcherViolin [I]959374Peter Buck (2)Violoncello71-11. Vivace7:1971-22. Andante7:0071-33. Agitato. Allegretto Non Troppo8:2271-44. Poco Allegretto Con Variazioni8:59String Quartet No. 1 In C Minor Op. 51 No. 1304975Johannes BrahmsComposed By959375Melos QuartettMelos QuartetEnsemble959376Hermann VossViola959373Gerhard VossViolin [II]959372Wilhelm MelcherViolin [I]959374Peter Buck (2)Violoncello71-51. Allegro8:2671-62. Romanze. Poco Adagio6:3671-73. Allegretto Molto Moderato E Comodo – Un Poco Più Animato8:3671-84. Allegro5:51String Quartet In B Flat Major Op. 76 No. 4 (Hob.III:78) “Sunrise”108568Joseph HaydnComposed By959375Melos QuartettMelos QuartetEnsemble959376Hermann VossViola959373Gerhard VossViolin [II]959372Wilhelm MelcherViolin [I]959374Peter Buck (2)Violoncello71-91. Allegro Con Spirito8:0071-102. Adagio4:4671-113. Menuet. Allegro4:2371-124. Finale. Allegro Ma Non Troppo4:03Arnold Schoenberg: Verklärte Nacht = Transfigured Night / Streichtrio = String TrioVerklärte Nacht Op. 4 (Version For String Sextet)465983Arnold SchoenbergComposed By754978Lasalle QuartetEnsemble1092565Donald McInnesViola [II]754962Peter KamnitzerViola [I]754960Henry MeyerViolin [II]754965Walter LevinViolin [I]1092564Jonathan PegisVioloncello [II]1039457Lee FiserVioloncello [I]72-1Sehr Langsam (Bar 1)6:2572-2Breiter (Bar 100)5:2872-3Schwer Betont (Bar 201)2:0972-4Sehr Breit Und Langsam (Bar 229)9:4772-5Sehr Ruhig (Bar 370)3:49String Trio Op. 45465983Arnold SchoenbergComposed By754978Lasalle QuartetEnsemble754962Peter KamnitzerViola754965Walter LevinViolin1039457Lee FiserVioloncello72-6Part I2:1072-71st Episode5:2172-8Part II3:0672-92nd Episode2:4072-10Part III5:18Debussy, Ravel, Webern: Streichquartette = String Quartets = Quatuors À CordesString Quartet In G Minor Op. 1096123Claude DebussyComposed By754957Hagen QuartettEnsemble754970Veronika HagenViola754959Rainer SchmidtViolin [II]754967Lukas HagenViolin [I]754955Clemens HagenVioloncello73-11. Animé Et Très Décidé6:2173-22. Assez Vif Et Bien Rythmé3:5073-33. Andantino, Doucement Expressif7:5973-44. Très Modéré – Très Mouvementé Et Avec Passion7:11String Quartet In F Major216140Maurice RavelComposed By754957Hagen QuartettEnsemble754970Veronika HagenViola754959Rainer SchmidtViolin [II]754967Lukas HagenViolin [I]754955Clemens HagenVioloncello73-51. Allegro Moderato8:0773-62. Assez Vif – Très Rythmé6:2973-73. Très Lent8:5673-84. Vif Et Agité4:4773-9String Quartet: Düster Und Schwer – Mit Großem Schwung – Sehr Breit – Langsam – Sehr Langsam – Schnell – Mit Größter Macht – Sehr Breit – Mit Innigstem Und Ganz Zartem Ausdruck – Zart Bewegt – Sehr Langsam16:24294480Anton WebernComposed By754957Hagen QuartettEnsemble754970Veronika HagenViola754959Rainer SchmidtViolin [II]754967Lukas HagenViolin [I]754955Clemens HagenVioloncelloLudwig Van Beethoven: The String Quartets: Rasumovsky No. 3, Harp, SeriosoString Quartet No. 9 In C Major Op. 59 No. 3 (“Rasumovsky No. 3”)95544Ludwig van BeethovenComposed By848555Emerson String QuartetEnsemble848549Lawrence DuttonViola848538Philip SetzerViolin [II]848539Eugene DruckerViolin [I]848542David FinckelVioloncello74-11. Introduzione. Andante Con Moto – Allegro Vivace10:0674-22. Andante Con Moto Quasi Allegretto8:4974-33. Menuetto. Grazioso5:0674-44. Allegro Molto5:25String Quartet No. 10 In E Flat Major Op. 74 “Harp”95544Ludwig van BeethovenComposed By848555Emerson String QuartetEnsemble848549Lawrence DuttonViola848538Philip SetzerViolin [II]848539Eugene DruckerViolin [I]848542David FinckelVioloncello74-51. Poco Adagio – Allegro9:1074-62. Adagio Ma Non Troppo8:5474-73. Presto – Più Presto Quasi Prestissimo4:4674-84. Allegretto Con Variazioni6:34String Quartet No. 11 In F Minor Op. 95 “Serioso”95544Ludwig van BeethovenComposed By848555Emerson String QuartetEnsemble848549Lawrence DuttonViola848538Philip SetzerViolin [II]848539Eugene DruckerViolin [I]848542David FinckelVioloncello74-91. Allegro Con Brio3:5774-102. Allegretto Ma Non Troppo6:3074-113. Allegro Assai Vivace Ma Serioso4:0374-124. Larghetto Espressivo – Allegretto Agitato4:16Argerich, Kremer, Bashmet, Maisky - Brahms: Klavierquartett Op. 25 / Schumann: Fantasiestücke Op. 88Piano Quartet No. 1 In G Minor Op. 25304975Johannes BrahmsComposed By832905Martha ArgerichPiano532434Yuri BashmetViola359068Gidon KremerViolin670668Mischa MaiskyVioloncello75-11. Allegro13:1875-22. Intermezzo. Allegro Ma Non Troppo – Trio. Animato7:3575-33. Andante Con Moto10:5175-44. Rondo Alla Zingarese8:10Fantasiestücke Op. 88 For Piano, Violin And Violoncello578727Robert SchumannComposed By832905Martha ArgerichPiano359068Gidon KremerViolin670668Mischa MaiskyVioloncello75-51. Romanze. Nicht Schnell, Mit Innigem Ausdruck2:3075-62. Humoreske. Lebhaft6:4475-73. Duett. Langsam Und Mit Ausdruck3:5575-84. Finale. Im Marschtempo5:15Anne-Sophie Mutter - Mozart: Piano Trios K. 502 542, 548Trio For Piano, Violin And Violoncello No. 6 In C Major K 54895546Wolfgang Amadeus MozartComposed By224329André PrevinPiano834611Anne-Sophie MutterViolin1041914Daniel Müller-SchottVioloncello76-11. Allegro6:5976-22. Andante Cantabile8:4376-33. Allegro4:08Trio For Piano, Violin And Violoncello No. 5 In E Major K 54295546Wolfgang Amadeus MozartComposed By224329André PrevinPiano834611Anne-Sophie MutterViolin1041914Daniel Müller-SchottVioloncello76-41. Allegro7:0676-52. Andante Grazioso5:0476-63. Finale. Allegro6:28Trio For Piano, Violin And Violoncello No. 4 In B Flat Major K 50295546Wolfgang Amadeus MozartComposed By224329André PrevinPiano834611Anne-Sophie MutterViolin1041914Daniel Müller-SchottVioloncello76-71. Allegro7:4476-82. Larghetto8:5076-93. Allegretto6:03Daniel Hope - Mendelssohn: Violinkonzert, Octet, LiederConcerto For Violin And Orchestra In E Minor Op. 64623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By1205711Thomas HengelbrockConductor1591117Marieke BlankestijnLeader [Orchestra]848261The Chamber Orchestra Of EuropeChamber Orchestra of EuropeOrchestra406149Daniel HopeViolin77-11. Allegro Con Fuoco –11:4377-22. Andante – Allegretto Non Troppo –8:3177-33. Allegro Molto Vivace5:43Octet For Strings In E Flat Major Op. 20623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By848261The Chamber Orchestra Of EuropeSoloists From The Chamber Orchestra Of EuropeEnsemble2039427Stewart EatonViola [II]2691603Pascal SiffertViola [I]2691574Sophie BesanconSophie BesançonViolin [III]1698132Lucy GouldViolin [II]1314731Christian EisenbergerViolin [IV]406149Daniel HopeViolin [I]1964869Kate GouldVioloncello [II]2039426William ConwayVioloncello [I]77-41. Allegro Moderato Ma Con Fuoco13:4977-52. Andante6:5677-63. Scherzo: Allegro Leggierissimo4:1977-74. Presto5:503 Lieder Arr. For Violin And Piano623293Felix Mendelssohn-BartholdyFelix MendelssohnComposed By2132797Sebastian KnauerPiano406149Daniel HopeViolin77-8Hexenlied = Witches' Song Op. 8 No. 82:1277-9Suleika Op. 34 No. 42:4577-10Auf Flügeln Des Gesanges = On Wings Of Song Op. 34 No. 22:25Early Opera Recordings 1 (1903-1942)Otello192327Giuseppe VerdiComposed By1195419Francesco TamagnoTenor Vocals78-1Esultate! (Act I: Otello)1:1878-2Ora E Per Sempre Addio (Act 2: Otello)2:03La Bohème369053Giacomo PucciniComposed By78-3O Soave Fanciulla (Act I: Rodolfo, Mimi)3:25319180Enrico CarusoTenor Vocals1195423Nellie MelbaSoprano Vocals78-4O Mimì, Tu Più Non Torni (Act 4: Rodolfo, Marcello)3:13319180Enrico CarusoTenor Vocals1341436Antonio ScottiBaritone VocalsL'Africaine488362Giacomo MeyerbeerComposed By78-5O Paradiso (Act 4: Vasco Da Gama)3:43319180Enrico CarusoTenor VocalsL'Elisir D'Amore525469Gaetano DonizettiComposed By78-6Una Furtiva Lagrima (Act 2: Nemorino)3:07319180Enrico CarusoTenor Vocals2864784Christopher Henry Hudson BoothCristopher BoothPianoBoris Godunov523633Modest MussorgskyComposed By78-7Proshchay, Moy Syn (Death Of Boris) (1869 Version, Act 4: Boris)4:48852710Feodor ChaliapinBass VocalsUn Ballo In Maschera192327Giuseppe VerdiComposed By78-8Für Dein Glück = Alla Vita Che T'Arride (Act 1: Renato)3:471268204Heinrich SchlusnusBaritone VocalsRigoletto192327Giuseppe VerdiComposed By78-9Cortigiani, Vil Razza Dannata (Act 2: Rigoletto)4:151268204Heinrich SchlusnusBaritone Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra958561Johannes HeidenreichConductorPagliacci525460Ruggiero LeoncavalloComposed By78-10Jetzt Spielen? ... Hüll' Dich In Tand = Recitar! ... Vesti La Giubba (Act I: Canio)3:461233653Leo SlezakTenor Vocals2344420Manfred GurlittConductorCavalleria Rusticana230140Pietro MascagniComposed By78-11O Lola, Ch'Hai Di Latti La Cammisa (Siciliana - Turiddu)2:212464744Koloman Von PátakyKolomon Von PatakyTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestraOtello192327Giuseppe VerdiComposed By78-12Du? Was Willst Du? Geh Du! = Tu?! Indietro! Fuggi! (Act 2: Otello)2:16819662Franz VölkerTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1675888Johannes SchülerConductorLa Bohème369053Giacomo PucciniComposed By78-13Will Ich Allein Des Abends = Quando Me'n Vo' (Waltz Song - Act I: Musetta)2:55855890Erna BergerSoprano Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra904058Alois MelicharConductorRigoletto192327Giuseppe VerdiComposed By78-14Teurer Name = Caro Nome (Act I: Gilda)3:18855890Erna BergerSoprano Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1268205Leo BlechConductor78-15O Wie So Trügerische = La Donna È Mobile (Act 3: Duke)1:57688034Julius PatzakTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra967612Wolfgang MartinConductorTosca369053Giacomo PucciniComposed By78-16Wie Sich Die Bilder Gleichen = Recondita Armonia (Act I: Cavaradossi)2:01688034Julius PatzakTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1675888Johannes SchülerConductorTurandot369053Giacomo PucciniComposed By78-17O Weine Nicht, Liu = Non Piangere, Liù (Act I: Calaf)2:39996441Helge RoswaengeTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra3312675Alfred Schmidt (2)ConductorLa Forza Del Destino192327Giuseppe VerdiComposed By78-18Du, Die Verklärt Im Himmelslicht = Oh, Tu Che In Seno Agli Angeli (Act 3: Alvaro)4:35996441Helge RoswaengeTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra3312675Alfred Schmidt (2)ConductorAida192327Giuseppe VerdiComposed By78-19O, Vater, Geliebter, Die Heiligen Namen = I Sacri Nomi Di Padre... D'Amante (Act I: Aida)3:26793628Tiana LemnitzSoprano Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra3312675Alfred Schmidt (2)ConductorTosca369053Giacomo PucciniComposed By78-20E Lucevan Le Stelle (Act 3: Cavaradossi)2:36987315Gino SinimberghiTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra2546845Gerhard SteegerConductorL'Elisir D'Amore525469Gaetano DonizettiComposed By78-21Una Furtiva Lagrima (Act 2: Nemorino)4:10987315Gino SinimberghiTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra2546845Gerhard SteegerConductorIl Barbiere Di Siviglia442174Gioacchino RossiniComposed By845360Artur RotherConductor841431Orchester Der Deutschen Oper BerlinOrchestra78-22Frag' Ich Mein Beklomm'nes Herz = Una Voce Poco Fa (Act I: Rosina)6:281640348Alda NoniSoprano Vocals78-23Die Verleumdung, Sie Ist Ein Lüftchen = La Calunnia È Un Venticello (Act 1: Basilio)4:221636160Georg HannBass VocalsTosca369053Giacomo PucciniComposed By78-24Nur Der Schönheit Weiht' Ich Mein Leben = Vissi D'Arte (Act 2: Tosca)3:08446874Maria CebotariSoprano Vocals841431Orchester Der Deutschen Oper BerlinOrchestra2546845Gerhard SteegerConductorTurandot369053Giacomo PucciniComposed By78-25Keiner Schlafe = Nessun Dorma (Act 3: Calaf)3:08979429Alfons FügelTenor Vocals841431Orchester Der Deutschen Oper BerlinOrchestra2546845Gerhard SteegerConductorEarly Opera Recordings 2 (1925-1942)Undine517042Albert LortzingComposed By79-1Nun Ist's Vollbracht! (Act 3: Kühleborn)4:581268204Heinrich SchlusnusBaritone Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra833887Chor Der Staatsoper BerlinChorusDie Zauberflöte95546Wolfgang Amadeus MozartComposed By79-2Bei Männern, Welche Liebe Fühlen (Act 1: Pamina, Papageno)3:292205828Felicie Huni-MihacsekFelicie Hüni-MihacsekSoprano Vocals1047977Willy Domgraf-FaßbaenderWilli Domgraf-FassbaenderBaritone Vocals1951777Julius PrüwerConductor79-3Ein Mädchen Oder Weibchen (Act 2: Papageno)4:153498812Heinrich RehkemperBaritone Vocals79-4In Diesen Heil'gen Hallen (Act 2: Sarastro)4:15823475Wilhelm StrienzBass Vocals958561Johannes HeidenreichConductorDie Entführung Aus Dem Serail95546Wolfgang Amadeus MozartComposed By79-5Konstanze, Dich Wiederzusehen, Dich! (Act 1: Belmonte)4:29688034Julius PatzakTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1268205Leo BlechConductorMartha696206Friedrich von FlotowComposed By79-6Letzte Rose (Act 2: Martha)3:05855890Erna BergerSoprano Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1268205Leo BlechConductor79-7Ach So Fromm (Act 3: Lyonel)3:14996441Helge RoswaengeTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra967612Wolfgang MartinConductorDer Freischütz620726Carl Maria von WeberComposed By79-8Einst Träumte Meiner Sel'gen Base ... Trübe Augen, Liebchen Taugen (Act 3: Ännchen)6:08833549Hilde GüdenSoprano Vocals841431Orchester Der Deutschen Oper BerlinOrchestra2546845Gerhard SteegerConductorAriadne Auf Naxos108439Richard StraussComposed By79-9An Ihre Plätze, Meine Damen Und Herrn! (Prologue: Music Teacher, Prima Donna, Composer)4:002371481Maria ReiningSoprano Vocals869605Irmgard SeefriedSoprano Vocals1535872Paul SchöfflerBass-Baritone Vocals696188Orchester Der Wiener StaatsoperOrchestra283127Karl BöhmConductorParsifal294746Richard WagnerComposed By79-10Ich Sah Das Kind An Seiner Mutter Brust (Act 2: Kundry)4:39868264Frida LeiderSoprano VocalsLohengrin294746Richard WagnerComposed By79-11In Fernem Land ... Mein Lieber Schwan (Act 3: Lohengrin)8:231233653Leo SlezakTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra2344420Manfred GurlittConductorDie Meistersinger Von Nürnberg294746Richard WagnerComposed By79-12Morgenlich Leuchtend (Prize Song) (Act 3: Walther)4:261233653Leo SlezakTenor Vocals2344420Manfred GurlittConductorParsifal294746Richard WagnerComposed By79-13Des Weihgefäßes Göttlicher Gehalt (Amfortas' Lament) (Act 1: Amfortas)4:551543787Theodor ScheidlBaritone Vocals1453521Hermann WeigertConductorDas Rheingold294746Richard WagnerComposed By79-14Weiche, Wotan, Weiche! (Scene 4: Erda)3:53868261Karin BranzellContralto Vocals2344420Manfred GurlittConductorRienzi294746Richard WagnerComposed By79-15Allmächt'ger Vater (Rienzi's Prayer) (Rienzi)4:36819662Franz VölkerTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra2344420Manfred GurlittConductorDie Meistersinger Von Nürnberg861484Hans HotterBass-Baritone Vocals294746Richard WagnerComposed By79-16Was Duftet Doch Der Flieder (Flieder Monologue) (Act 2: Hans Sachs)6:46841431Orchester Der Deutschen Oper BerlinDeutsches Opernorchester BerlinOrchestra79-17Wahn! Wahn! Überall Wahn! (Wahn Monologue) (Act 3: Hans Sachs)7:03839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1004365Robert HegerConductorWeber: Der Freischütz (Als Kurz-Oper)80-1Ouvertüre8:27620726Carl Maria von WeberComposed By860731Paul van KempenConductor854918Dresdner PhilharmonieOrchestraOpera (Abridged Version = Kurzoper)3802691Hans MaederAbridged By1047977Willy Domgraf-FaßbaenderWilli Domgraf-FassbaenderBaritone Vocals [Count Ottokar, The Ruling Prince]3169261Walter GrossmannBaritone Vocals [Kuno, A Hereditary Forester]835519Josef GreindlBass Vocals [A Hermit]1636160Georg HannBass-Baritone Vocals [Kaspar, An Assistant Forester]6449654Felix Fleischer-JanczakFelix FleischerBass-Baritone Vocals [Samiel, The Black Huntsman]833887Chor Der Staatsoper BerlinChorus [Huntsmen, Invisible Spirits, Bridesmaids, Attendants]620726Carl Maria von WeberComposed By1004365Robert HegerConductor1060060Johann Friedrich KindLibretto By2603897Städtisches Orchester BerlinOrchestra10538065Hilde AhlendorfSoprano Vocals [A Bridesmaid]868271Maria MüllerSoprano Vocals [Agathe, Kuno's Daughter]2841047Carla SpletterSoprano Vocals [Ännchen, Agathe's Cousin]7853806Reinhard DörrTenor Vocals [Kilian, A Wealthy Peasant]3802689August SeiderTenor Vocals [Max, An Assistant Forester]80-2.1Erster Aufzug = Act One – Victoria! Der Meister Soll Leben (Chorus Of Peasants, Kilian, Max, Kuny, Kaspar)4:3880-2.2Nr. 2 Terzett Mit Chor: O, Diese Sonne (Max, Kuno, Kaspar, Chorus)80-3.1Jetzt Schlag Er Sich Die Grillen Aus Dem Kopf (Kilian, Max)4:3580-3.2Nr. 3 Arie: Durch Die Wälder, Durch Die Auen (Max)80-4.1Da Bist Du Ja Noch, Kamerad (Kaspar, Max)4:2180-4.2Nr. 5 Arie: Schweig, Schweig (Kaspar)80-5.1Zweiter Aufzug = Act Two – Nr. 6 Duett: Schelm? Halt Fest? (Ännchen, Agathe)4:3080-5.2Nr. 7 Ariette: Kommt Ein Schlanker Bursch Gegangen (Ännchen, Agathe)80-6Nr. 8 Szene Und Arie: Wie Nahte Mir Der Schlummer ... Leise, Leise, Fromme Weise (Agathe)4:1580-7Alles Pflegt Schon Längst Der Ruh (Agathe)4:2280-8.1Bist Du Endlich Da, Lieber Max! (Agathe, Max, Ännchen)4:1980-8.2Nr. 9 Terzett: Wie? Was? Entsetzen! (Agathe, Ännchen, Max)80-9Nr. 10 Finale: Milch Des Mondes Fiel Aufs Kraut! ... Ich Schoss Den Adler (Chorus Of Invisible Spirits, Max, Kaspar, Samiel)4:3480-10Hier Bin Ich! Was Hab' Ich Zu Tun? ... Schütze, Der Im Dunkel Wacht, Samiel! (Max, Kaspar)4:4280-11Dritter Aufzug = Act Three – Nr. 12 Kavatine: Und Ob Die Wolke Sie Verhülle (Agathe)3:5480-12.1Aber Du Bist Ja So Wehmütig. Ich Glaube Gar, Du Hast Geweint? (Ännchen, Agathe)4:2580-12.2Nr. 13 Arie: Trübe Augen (Ännchen)80-13.1Horch, Da Kommen Die Brautjungfern Schon! (Ännchen)2:5080-13.2Nr. 14 Volkslied. Chor: Wir Winden Dir Den Jungfernkranz (Bridesmaid, Chorus Of Bridesmaids)80-13.3Nun, Da Bin Ich Wieder (Ännchen, Agathe)80-14.1Nr. 15 Jägerchor: Was Gleicht Wohl Auf Erden Dem Jägervergnügen (Chorus Of Huntsmen, Ottokar, Kuno, Max, Agathe)5:4280-14.2Nr. 16 Finale: Schaut! O Schaut! (Chorus Of Attendants, Huntsmen And Peasants, Agathe, Max, Kuno)80-15Wer Legt Auf Ihn So Strengen Bann! (Hermit, Ottokar)3:1480-16Doch Sonst Stets Rein Und Bieder War (Hermit, Ottokar, Kuno, Chorus)3:12Rita Streich Singt Opern-ArienIdomeneo K 36695546Wolfgang Amadeus MozartComposed By935828Abbate Giambattista VarescoGiovanni Battista VarescoLibretto By81-1Zeffiretti Lusinghieri (Act 3: Ilia)4:50575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra845360Artur RotherConductorDie Zauberflöte K 62095546Wolfgang Amadeus MozartComposed By833556Emanuel SchikanederLibretto By81-2Der Hölle Rache Kocht In Meinem Herzen (Act 2: The Queen Of The Night)3:00575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra833697Ferenc FricsayConductorSemiramide442174Gioacchino RossiniComposed By975269Giacomo RossiLibretto By81-3Bel Raggio Lusinghier (Act 1: Semiramide)6:29575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra845360Artur RotherConductorDon Pasquale525469Gaetano DonizettiComposed By974490Giovanni RuffiniLibretto By81-4Quel Guardo Il Cavaliere ... So Anch'Io La Virtù Magica (Act 1: Norina)6:45575046Rita StreichSoprano Vocals604396Symphonie-Orchester Des Bayerischen RundfunksSymphonieorchester Des Bayerischen RundfunksOrchestra552195Fritz LehmannConductorDer Freischütz620726Carl Maria von WeberComposed By1060060Johann Friedrich KindLibretto By81-5Kommt Ein Schlanker Bursch Gegangen (Act 2: Ännchen)3:41575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra845360Artur RotherConductorRigoletto192327Giuseppe VerdiComposed By525470Francesco Maria PiaveLibretto By81-6Gualtier Maldè! Caro Nome (Act 1: Gilda)6:06575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra833687Ferdinand LeitnerConductorUn Ballo In Maschera192327Giuseppe VerdiComposed By886430Antonio SommaLibretto By81-7Volta La Tarrea Fronte Alle Stella (Act 1 Ballata: Oscar)2:04575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra833687Ferdinand LeitnerConductor81-8Saper Vorreste (Act 3 Canzone: Oscar)1:52575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra833687Ferdinand LeitnerConductorI Vespri Siciliani192327Giuseppe VerdiComposed By1971584Charles DuveyrierLibretto By696242Eugène ScribeLibretto By81-9Mercè, Dilette Amiche (Act 5 Siciliano: Elena)3:52575046Rita StreichSoprano Vocals688716Radio-Symphonie-Orchester BerlinOrchestra963375Ernst MärzendorferConductorLes Huguenots488362Giacomo MeyerbeerComposed By696242Eugène ScribeLibretto By81-10Nobles Seigneurs, Salut! (Act 1: Urbain)3:40575046Rita StreichSoprano Vocals833698RIAS Symphonie-Orchester BerlinRIAS-Symphonie-Orchester BerlinOrchestra833687Ferdinand LeitnerConductorMignon833579Ambroise ThomasComposed By1293509Jules BarbierLibretto By2063127Michel Carré (2)Libretto By81-11Oui, Pour Ce Soir Je Suis Reine Des Fées (Act 2: Philine)5:43575046Rita StreichSoprano Vocals261451Münchner PhilharmonikerOrchestra833687Ferdinand LeitnerConductorLa Bohème369053Giacomo PucciniComposed By696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By81-12Quando M'En Vò (Act 2: Musetta's Waltz Song)2:20575046Rita StreichSoprano Vocals688716Radio-Symphonie-Orchester BerlinOrchestra963375Ernst MärzendorferConductor81-13Der Hirt Auf Dem Felsen = The Shepherd On The Rock D 965 (Op. Posth. 129)11:031492920Heinrich GeuserClarinet283469Franz SchubertComposed By978332Michael RaucheisenPiano575046Rita StreichSoprano Vocals7250318Karl August Varnhagen von EnseText By573244Wilhelm MüllerText ByGiuseppe Verdi - La Traviata - Ileana Cotrubas, Plácido Domingo, Sherrill MilnesLa Traviata (Opera In Three Acts – After Alexandre Dumas' "La Dame Aux Camélias")1916704Paul FriessBaritone Vocals [Flora's Servant]925944Sherrill MilnesBaritone Vocals [Giorgio Germont, Alfredo's Father]833827Giovanni FoianiBass Vocals [Dottore Grenvil (The Doctor)]1032258Bruno GrellaBass-Baritone Vocals [Baron Douphol (The Baron)]922015Alfredo GiacomottiBass-Baritone Vocals [Marchese D'Obigny (The Marquis)]859034Wolfgang BaumgartChorus Master1933252Chor Der Bayerischen StaatsoperBayerischer StaatsopernchorChorus [Friends Of Violetta And Flora]192327Giuseppe VerdiComposed By833155Carlos KleiberConductor525470Francesco Maria PiaveLibretto By1032256Helena JungwirthMezzo-soprano Vocals [Annina, Her Maid]1496956Stefania MalagùMezzo-soprano Vocals [Flora Bervoix, Her Friend]451535Bayerisches StaatsorchesterOrchestra925945Ileana CotrubasSoprano Vocals [Violetta Valéry]2040958Paul Winter (7)Tenor Vocals [A Messenger]270225Placido DomingoPlácido DomingoTenor Vocals [Alfredo Germont]956561Walter GullinoTenor Vocals [Gastone, Visconte De Letorières]956561Walter GullinoTenor Vocals [Giuseppe, Violetta's Servant]82-1Preludio3:3882-2Atto Primo = Act One – Introduzione: Dell'Invito Trascorsa È Già L'Ora (Chorus, Violetta, Flora, Marchese, Barone, Dottore, Gastone, Alfredo)4:3482-3Brindisi: Libiamo Ne' Lieti Calici (Alfredo, Tutti, Violetta)2:5582-4Valser E Duetto: Che È Ciò? (Tutti, Violetta, Alfredo)2:1882-5Un Dì Felice, Eterea (Alfredo, Violetta)3:0582-6Ebben? Che Diavol Fate? (Gastone, Violetta, Alfredo)1:1982-7Stretta Dell'Introduzione: Si Ridesta In Ciel L'Aurora (Tutti)1:3782-8Scena Ed Aria – Finale: È Strano! ... Ah, Fors'È Lui (Violetta)3:3682-9Follie! Follie! Delirio Vano È Questo! ... Sempre Libera (Violetta, Alfredo)4:2382-10Atto Secondo = Act Two – Quadro Primo = Scene 1 – Scena Ed Aria: Lunge Da Lei ... De' Miei Bollenti Spiriti (Alfredo)3:3382-11Annina, Donde Vieni? – Oh Mio Rimorso! (Alfredo, Annina)2:1982-12Scena E Duetto: Alfredo? – Per Parigi Or Or Partiva (Violetta, Annina, Giuseppe, Germont)3:1882-13Pura Siccome Un Angelo (Germont, Violetta)1:3982-14Non Sapete Quale Affetto (Violetta, Germont)1:5982-15Un Di, Quando Le Veneri (Germont, Violetta)2:3482-16Ah! Dite Alla Giovine (Violetta, Germont)4:0582-17Imponete – Non Amarlo Ditegli (Violetta, Germont)4:1882-18Scena: Dammi Tu Forza, O Cielo! (Violetta, Germont)1:4382-19Che Fai? – Nulla (Alfredo, Violetta)2:0782-20Scena Ed Aria: Ah, Vive Sol Quel Core (Alfredo, Giuseppe, Messenger, Germont)2:1282-21Di Provenza Il Mar, Il Suol (Germont)4:0182-22Né Rispondi D'Un Padre All'Affetto? ... No, Non Udrai Rimproveri (Germont, Alfredo)2:4583-1Quadro Secondo = Scene 2 – Finale II: Avrem Lieta Di Maschere La Notte (Flora, Marchese, Dottore, Tutti)1:0383-2Noi Siamo Zingarelle (Chorus, Flora, Marchese, Tutti)2:4683-3Di Madride Noi Siam Mattadori (Gastone, Chorus, Flora, Dottore, Marchese)2:3283-4Alfredo! Voi! (Tutti, Alfredo, Violetta, Barone)3:5483-5Invitato A Qui Seguirmi (Violetta, Alfredo, Tutti)2:2883-6Ogni Sup Aver Tal Femmina (Alfredo, Tutti)1:3183-7Di Sprezzo Degno Se Stesso Rende (Germont, Alfredo, Flora, Gastone, Dottore, Marchese, Chorus, Barone)1:4883-8Alfredo, Alfredo, Di Questo Core (Violetta, Flora, Gastone, Dottore, Marchese, Chorus, Alfredo, Barone, Germont)4:1483-9Atto Terzo = Act Three – Preludio3:3683-10Scena Ed Aria: Annina? – Comandate? (Violetta, Annina, Dottore)3:5483-11Teneste La Promessa ... Attendo, Attendo, Né A Me Giungon Mai! ... Addio Del Passato (Violetta)3:5983-12Baccanale: Largo Al Quadrupede (Chorus Of Maskers)0:4883-13.1Signora... – Che T'Accadde? (Annina, Violetta, Alfredo)4:4483-13.2Parigi, O Cara, Noi Lasceremo (Alfredo, Violetta)83-14Ah, Non Più ... Ah, Gran Dio! Morir Sì Giovine (Violetta, Alfredo)3:0083-15Finale Ultimo: Ah, Violetta! – Voi, Signor? (Germont, Violetta, Alfredo)1:4383-16Prendi, Quest'È L'Immagine (Violetta, Alfredo, Germont, Annina, Dottore)3:53Plácido Domingo, Carlo Maria Giulini - Opern-Gala = Gala Opera Concert = Grands Airs D'OpérasL'Elisir D'Amore525469Gaetano DonizettiComposed By805609Felice RomaniLibretto By84-1Una Furtiva Lagrima (Act 2; Nemorino)4:41270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorLucia Di Lammermoor525469Gaetano DonizettiComposed By886435Salvatore CammaranoLibretto By84-2Tombe Degl'Avi Miei ... Fra Poco A Me Ricovero (Act 3; Edgardo)7:21270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorErnani192327Giuseppe VerdiComposed By525470Francesco Maria PiaveLibretto By84-3Mercè, Diletti Amici ... Come Rugiada Al Cespite ... Dell'Esilio Nel Dolore ... O Tu Che L'Alma Adora (Act 1; Ernani, Chorus)5:33270225Placido DomingoPlácido DomingoTenor Vocals656620The Roger Wagner ChoraleRoger Wagner ChoraleChorus737563Roger WagnerChorus Master835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorIl Trovatore192327Giuseppe VerdiComposed By886435Salvatore CammaranoLibretto By84-4Ah Sì, Ben Mio ... L'Onda De' Suoni Mistici ... Di Quella Pira (Act 3; Manrico; Chorus)5:44270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductor656620The Roger Wagner ChoraleRoger Wagner ChoraleChorus737563Roger WagnerChorus MasterAida192327Giuseppe VerdiComposed By1080249Antonio GhislanzoniLibretto By84-5Se Quel Guerrier Io Fossi! ... Celeste Aida (Act 1; Radamès)5:01270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorLa Juive1640321Jacques Fromental HalévyJacques HalévyComposed By696242Eugène ScribeLibretto By84-6Rachel, Quand Du Seigneur La Grâce Tutélaire (Act 4: Éléazar)5:41270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorL'Africaine488362Giacomo MeyerbeerComposed By696242Eugène ScribeLibretto By84-7Pays Merveilleux ... Ô Paradis (Act 4; Vasco Da Gama)3:37270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorLes Pêcheurs De Perles342543Georges BizetComposed By1437749Eugène CormonLibretto By2063127Michel Carré (2)Libretto By84-8Je Crois Entendre Encore (Act 1; Nadir)3:46270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorCarmen342543Georges BizetComposed By1438736Henri MeilhacLibretto By1438735Ludovic HalévyLibretto By84-9La Fleur Que Tu M'Avais Jetée (Act 2; Don José)4:00270225Placido DomingoPlácido DomingoTenor Vocals835190Los Angeles Philharmonic OrchestraLos Angeles PhilharmonicOrchestra833560Carlo Maria GiuliniConductorBryn Terfel - Wagner - Berliner Philharmoniker - Claudio AbbadoDer Fliegende Holländer294746Richard WagnerComposed By85-1Overtüre10:37260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductor85-2Die Frist Ist Um (Act 1; Holländer)10:56564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductorDie Meistersinger Von Nürnberg294746Richard WagnerComposed By85-3Wahn! Wahn! Überall Wahn! (Act 3 Wahn Monologue; Hans Sachs)7:15564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductor85-4Was Duftet Doch Der Flieder (Act 2 Flieder Monologue; Hans Sachs)6:49564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductorTannhäuser294746Richard WagnerComposed By85-5Wie Todesahnung Dämmrung Deckt Die Lande ... O Du Mein Holder Abendstern (Act 3 Song To The Evening Star; Wolfram)5:40564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductorParsifal294746Richard WagnerComposed By85-6Nein! Laßt Ihn Unenthüllt! (Act 1; Amfortas)8:05564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductor85-7Ja, Wehe! Wehe! Weh' Über Mich! (Act 3; Amfortas)6:26564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductorDie Walküre294746Richard WagnerComposed By85-8Leb Wohl, Du Kühnes, Herrliches Kind! (Act 3 Wotan's Farewell And Magic Fire Music)16:09564649Bryn TerfelBass-Baritone Vocals260744Berliner PhilharmonikerOrchestra368137Claudio AbbadoConductorMagdalena Kožená - Mozart Arias - Orchestra Of The Age Of Enlightenment - Simon RattleLe Nozze Di Figaro K49295546Wolfgang Amadeus MozartComposed By862839Lorenzo da PonteLibretto By86-1Giunse Alfin Il Momento ... Deh Vieni, Non Tardar, O Gioia Bella (Act 4 Recitative And Aria; Susanna)4:17969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductor86-2Voi Che Sapete Che Cosa È Amor (Act 2 Arietta, With Embellishments By Domenico Corri; Cherubino)3:06969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductor7040149Domenico CorriComposed By [Embellishments]Idomeneo K 36695546Wolfgang Amadeus MozartComposed By935828Abbate Giambattista VarescoGiovanni Battista VarescoLibretto By86-3Ch'Io Mi Scordi Di Te? ... Non Temer, Amato Bene K 505 (Recitative And Rondo From A Revision Of The Opera Idomeneo; Idamante)10:36969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductorCosi Fan Tutte K 58895546Wolfgang Amadeus MozartComposed By862839Lorenzo da PonteLibretto By86-4In Uomini, In Soldati (Act 1 Aria; Despina)2:55969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductor86-5Ei Parte... Senti!... Ah, No! ... Per Pietà, Ben Mio, Perdona (Act 2 Recitative And Rondo; Fiordiligi)9:33969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductor86-6È Amore Un Ladroncello (Act 2 Aria; Dorabella)3:13969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductorLa Clemenza Di Tito K 62195546Wolfgang Amadeus MozartComposed By3544631Caterino MazzolàLibretto By86-7Non Più Di Fiori Vaghe Catene (Act 2 Rondo; Vitellia)7:05969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductorIdomeneo K 36695546Wolfgang Amadeus MozartComposed By935828Abbate Giambattista VarescoGiovanni Battista VarescoLibretto By86-8Quando Avran Fine Omai ... Padre, Germani, Addio! (Act 1 Recitative And Aria; Ilia)8:00969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductorIl Burbero Di Buon Cuore (By Martín Y Soler)86-9Vado, Ma Dove? O Dei! K 583 (Insertion In The Opera; Madama Lucilla)4:2895546Wolfgang Amadeus MozartComposed By969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductor862839Lorenzo da PonteLibretto ByLe Nozze Di Figaro K 49295546Wolfgang Amadeus MozartComposed By862839Lorenzo da PonteLibretto By86-10Non So Più Cosa Son, Cosa Faccio (Act 1 Aria; Cherubino)2:46969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductorI Due Baroni Di Rocca Azzurra (By Domenico Cimarosa)86-11Alma Grande, E Nobil Core! K 578 (Insertion In The Opera; Madama)4:2895546Wolfgang Amadeus MozartComposed By969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductor3195059Giuseppe PalombaLibretto ByLe Nozze Di Figaro K 49295546Wolfgang Amadeus MozartComposed By862839Lorenzo da PonteLibretto By86-12Giunse Alfin Il Momento ... Al Desio Di Chi T'Adora K 577 (Recitative And Aria Replacing “Deh Vieni Non Tardar” At The Revival In Vienna, 29 August 1789; Susanna)7:28969022Magdalena KoženáMezzo-soprano Vocals835380Jos van ImmerseelFortepiano900433Orchestra Of The Age Of EnlightenmentOrchestra490290Sir Simon RattleSimon RattleConductorAnna Netrebko, Rolando Villazón - Duets - Staatskapelle Dresden - Nicola LuisottiLa Bohème369053Giacomo PucciniComposed By696162Giuseppe GiacosaLibretto By696240Luigi IllicaLibretto By87-1O Soave Fanciulla (Act 1 Duet: Rodolfo & Mimì)4:101027681Rolando VillazónTenor Vocals [Rodolfo]1027687Anna NetrebkoSoprano Vocals [Mimì]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorLucia Di Lammermoor525469Gaetano DonizettiComposed By886435Salvatore CammaranoLibretto By87-2Lucia, Perdona... Sulla Tomba Che Rinserra (Part 1, No. 4 Scene And Duet; Lucia & Edgardo)12:401027687Anna NetrebkoSoprano Vocals [Lucia]1027681Rolando VillazónTenor Vocals [Edgardo]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorRigoletto192327Giuseppe VerdiComposed By525470Francesco Maria PiaveLibretto By87-3Giovanna, Ho Dei Rimorsi ... È Il Sol Dell'Anima (Act 1 No. 5 Scene And Duet; Gilda & Duca)8:191027687Anna NetrebkoSoprano Vocals [Gilda]1027681Rolando VillazónTenor Vocals [Duca]2044509Nadine WeissmannMezzo-soprano Vocals [Giovanna]2044508Nicola LuisottiBaritone Vocals [Ceprano, Borsa], Conductor578737Staatskapelle DresdenOrchestraRoméo Et Juliette555462Charles GounodComposed By1293509Jules BarbierLibretto By2063127Michel Carré (2)Libretto By87-4Va! Je T'Ai Pardonné ... Nuit D'Hyménée! (Act 4, Scene 1 No. 14 Duet: Juliette & Roméo)13:231027687Anna NetrebkoSoprano Vocals [Juliette]1027681Rolando VillazónTenor Vocals [Roméo]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorLe Pêcheurs De Perles342543Georges BizetComposed By1437749Eugène CormonLibretto By2063127Michel Carré (2)Libretto By87-5De Mon Amie ... Leïla! – Dieu Puissant, Le Voilà (Act 2 No. 8 Chanson & No. 9 Duet; Nadir & Leïla)9:001027681Rolando VillazónTenor Vocals [Nadir]1027687Anna NetrebkoSoprano Vocals [Leïla]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorManon95536Jules MassenetComposed By1438736Henri MeilhacLibretto By974486Philippe GilleLibretto By87-6Toi! Vous! – Oui, C'Est Moi! ... N'Est-Ce Plus Ma Main (Act 3, Scene 2 Duet; Manon / Des Grieux)8:051027687Anna NetrebkoSoprano Vocals [Manon]1027681Rolando VillazónTenor Vocals [Des Grieux]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorIolanta999914Pyotr Ilyich TchaikovskyPeter Ilyich TchaikovskyComposed By1351986Modest Ilyich TchaikovskyModest TchaikovskyLibretto By87-7Tvoyo Molčan'Ye Neponyatno (No. 7 Duet; Iolanta / Vodemon)10:031027687Anna NetrebkoSoprano Vocals [Iolanta]1027681Rolando VillazónTenor Vocals [Vodemon]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorLuisa Fernanda392719Federico Moreno TorrobaComposed By1638152Federico RomeroLibretto By5550591Guillermo Fernández-ShawGuillermo Fernández ShawLibretto By87-8¡Cállate, Corazón! (Act 3 No. 13 Duet; Luisa Fernanda & Javier)5:281027687Anna NetrebkoSoprano Vocals [Luisa Fernanda]1027681Rolando VillazónTenor Vocals [Javier]578737Staatskapelle DresdenOrchestra2044508Nicola LuisottiConductorElīna Garanča - Bel CantoLucrezia Borgia (Act 2 Ballata; Orsini, Chorus)525469Gaetano DonizettiComposed By805609Felice RomaniLibretto By88-1Il Segreto Per Esser Felici2:451554211Elīna GarančaMezzo-soprano Vocals [Orsini]2130739Coro del Teatro Comunale di BolognaChorus4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra1554208Roberto AbbadoConductorL'Assedio Di Calais (Act 1 Aria: Aurelio)525469Gaetano DonizettiComposed By886435Salvatore CammaranoLibretto By88-2Al Mio Core3:311554211Elīna GarančaMezzo-soprano Vocals [Aurelio]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra1554208Roberto AbbadoConductorRoberto Devereux (Act 1 Romance; Sara)525469Gaetano DonizettiComposed By886435Salvatore CammaranoLibretto By88-3All'Afflitto È Dolce Il Pianto3:351554211Elīna GarančaMezzo-soprano Vocals [Sara]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra1554208Roberto AbbadoConductorDom Sebastien, Roi Du Portugal (Act 2 Romance; Zayda)525469Gaetano DonizettiComposed By696242Eugène ScribeLibretto By88-4Que Faire? ... Sol Adoré De La Patrie5:551554211Elīna GarančaMezzo-soprano Vocals [Zayda]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra1554208Roberto AbbadoConductorAdelson E Salvini (Act 1 Romance; Nelly)488363Vincenzo BelliniComposed By1554201Andrea Leone TottolaLibretto By88-5Dopo L'Oscuro Nembo6:341554211Elīna GarančaMezzo-soprano Vocals [Nelly]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra1554208Roberto AbbadoConductorMaria Stuarda (Act 1, Introduction; Elisabetta)525469Gaetano DonizettiComposed By1554208Roberto AbbadoConductor1554209Giuseppe BardariLibretto By1554211Elīna GarančaMezzo-soprano Vocals [Elisabetta]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra88-6Sì, Vuol Di Francia Il Rege (Elisabetta)1:0988-7Ah! Quando All'Ara Scorgemi (Elisabetta)3:0088-8In Tal Giorno Di Contento (Talbot, Chorus, Elisabetta, Cecil)1:441078999Ildebrando D'ArcangeloBass-Baritone Vocals [Talbot]1554203Adrian SâmpetreanBass-Baritone Vocals [Cecil]2130739Coro del Teatro Comunale di BolognaChorus88-9Ah! Dal Ciel Discenda Un Raggio (Elisabetta, Chorus, Talbot, Cecil)3:501078999Ildebrando D'ArcangeloBass-Baritone Vocals [Talbot]1554203Adrian SâmpetreanBass-Baritone Vocals [Cecil]2130739Coro del Teatro Comunale di BolognaChorusTancredi (Act 1 Andante, Recitative & Cavatina; Tancredi)442174Gioacchino RossiniComposed By1554208Roberto AbbadoConductor1554206Gaetano RossiLibretto By1554211Elīna GarančaMezzo-soprano Vocals [Tancredi]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra88-10Andante (Orchestral Introduction)2:0488-11O Patria, Dolce E Ingrata Patria!3:4788-12Di Tanti Palpiti3:04Maometto II (Act 2 Trio; Calbo, Anna & Erisso)442174Gioacchino RossiniComposed By1554204Cesare Della ValleLibretto By88-13In Questi Estremi Istanti6:251554211Elīna GarančaMezzo-soprano Vocals [Calbo]1554202Matthew PolenzaniTenor Vocals [Erisso]1554205Ekaterina SiurinaSoprano Vocals [Anna]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra1554208Roberto AbbadoConductorI Capuletti E I Montecchi (Act 1 Scena & Cavatina; Romeo)488363Vincenzo BelliniComposed By1554208Roberto AbbadoConductor805609Felice RomaniLibretto By1554211Elīna GarančaMezzo-soprano Vocals [Romeo]4060313Filarmonica Del Teatro Comunale Di BolognaOrchestra88-14Lieto Del Dolce Incarco (Romeo)1:4488-15Ascolta. Se Romeo T'Uccise Un Figlio (Romeo)2:5188-16Riedi Al Campo (Capellio, Romeo, Tebaldo, Chorus)0:481078999Ildebrando D'ArcangeloBass-Baritone Vocals [Capellio]1554202Matthew PolenzaniTenor Vocals [Tebaldo]2130739Coro del Teatro Comunale di BolognaChorus88-17La Tremenda Ultrice Spada (Romeo, Capellio, Tebaldo, Chorus)3:341078999Ildebrando D'ArcangeloBass-Baritone Vocals [Capellio]1554202Matthew PolenzaniTenor Vocals [Tebaldo]2130739Coro del Teatro Comunale di BolognaChorusL'Assedio Di Calais (Act 2 Duet; Aurelio & Eleonora)525469Gaetano DonizettiComposed By1554211Elīna GarančaMezzo-soprano Vocals [Aurelio]1554205Ekaterina SiurinaSoprano Vocals [Eleonora]88-18Io L'Udia Chiamarmi (Aurelio, Eleonora)4:2788-19Suon Tremendo! (Eleonora, Aurelio, D'Aire)1:131554202Matthew PolenzaniTenor Vocals [D'Aire]88-20La Speme Un Dolce Palpito (Eleonora, Aurelio)2:34Joseph Haydn - Die Schöpfung = The Creation = La CréationDie Schöpfung = The Creation Hob. XXI:2 (Oratorio For Solo Voices, Chorus And Orchestra)833168Dietrich Fischer-DieskauBaritone Vocals [Adam]833071Walter BerryBass Vocals [Raphael]833075Wiener SingvereinChorus833165Reinhold SchmidReinhold SchmidtChorus Master108568Joseph HaydnComposed By283122Herbert von KarajanConductor1057110Josef NeboisHarpsichord260744Berliner PhilharmonikerOrchestra833076Gundula JanowitzSoprano Vocals [Gabrie, Eva]909271Ottomar BorwitzkyVioloncello [Continuo]89-1Erster Teil = Part One: 1. Die Forstellung Des Chaos (Largo)7:0589-2Rezitativ Mit Chor: Im Anfange Schuf Gott Himmel Und Erde (Raphael, Uriel)2:58575045Fritz WunderlichTenor Vocals [Uriel]89-32. Arie Mit Chor: Nun Schwanden Vor Dem Heiligen Strahle (Uriel, Chorus)4:02575045Fritz WunderlichTenor Vocals [Uriel]89-43. Rezitativ: Und Gott Machte Das Firmament (Raphael)1:5189-54. Chor Mit Sopransolo: Mit Staunen Sieht Das Wunderwerk (Chorus, Gabriel)2:01833161Helmuth FroschauerChorus Master89-65. Rezitativ: Und Gott Sprach: Es Sammle Sich Das Wasser (Raphael)0:4589-76. Arie: Rollend In Schäumenden Wellen (Raphael)4:1389-87. Rezitativ: Und Gott Sprach: Es Bringe Die Erde Gras Hervor (Gabriel)0:3789-98. Arie: Nun Beut Die Flur Das Frische Grün (Gabriel)5:3589-109. Rezitativ: Und Die Himmlischen Heerscharen (Urlel)0:14844419Werner KrennTenor Vocals [Uriel]89-1110. Chor: Stimmt An Die Saiten (Chorus)1:5989-1211. Rezitativ: Und Gott Sprach: Es Sei'n Lichter An Der Feste Des Himmels (Uriel)0:42844419Werner KrennTenor Vocals [Uriel]89-1312. Rezitativ: Im Vollen Glanze Steiget Jetzt (Uriel)2:55575045Fritz WunderlichTenor Vocals [Uriel]89-1413. Chor Mit Soli: Die Himmel Erzählendie Ehre Gottes (Chorus, Gabriel, Uriel, Raphael)4:03575045Fritz WunderlichTenor Vocals [Uriel]89-15Zweiter Teil = Part 2: 14. Rezitativ: Und Gott Sprach: Es Bringe Das Wasser (Gabriel)0:2389-1615. Arie: Auf Starkem Fittiche Schwinget Sich Der Adler Stolz (Gabriel)7:3989-1716. Rezitativ: Und Got Schuf Große Walfische (Raphael)2:3989-1817. Rezitativ: Und Die Engel Rührten Ihr' Unsterblichen Harfen (Raphael)0:2889-1918. Terzett: In Holder Anmut Stehn (Gabriel, Uriel, Raphael)4:53844419Werner KrennTenor Vocals [Uriel]89-2019. Chor Mit Soli: Der Herr Ist Groß In Seiner Macht (Chorus, Gabriel, Uriel, Raphael)2:46575045Fritz WunderlichTenor Vocals [Uriel]90-120. Rezitativ: Und Gott Sprach: Es Bringe Die Erde Hervor Lebende Geschöpfe (Raphael)0:3090-221. Rezitativ: Gleich Öffnet Sich Der Erde Schoß (Raphael)3:0290-322. Arie. Nun Scheint In Vollem Glanze Der Himmel (Raphael)3:4590-423. Rezitativ: Und Gott Schuf Den Menschen (Uriel)0:49844419Werner KrennTenor Vocals [Uriel]90-524. Arie: Mit Würd' Und Hoheit Angetan (Uriel)3:59575045Fritz WunderlichTenor Vocals [Uriel]90-625. Rezitativ: Und Gott Sah Jedes Ding (Raphael)0:2890-7.126. Chor: Vollendet Ist Das Große Werk (Chorus)9:0690-7.227. Terzett: Zu Dir, O Herr (Gabriel, Uriel, Raphael)844419Werner KrennTenor Vocals [Uriel]90-7.328. Chor: Vollendet Ist Das Große Werk (Chorus)90-8Dritter Teil = Part Three: 29. Orchestereinleitung Und Rezitativ: Aus Rosenwolken Bricht (Uriel)4:51844419Werner KrennTenor Vocals [Uriel]90-930. Duett Mit Chor: Von Deiner Güt', O Herr Und Gott ... Der Sterne Hellster, O Wie Schön (Eva, Adam, Chorus)10:03833161Helmuth FroschauerChorus Master90-1031. Rezitativ: Nun Ist Die Erste Pflicht Erfüllt (Adam, Eva)2:5190-1132. Duett: Holde Gattin, Dir Zur Seite ... Der Tauende Morgen (Adam, Eva)7:0590-1233. Rezitativ: O Glücklich Paar (Uriel)0:27844419Werner KrennTenor Vocals [Uriel]90-1334. Schlusschor Mit Soli: Singt Dem Herren Alle Stimmen (Chorus, Soli)4:03575045Fritz WunderlichTenor Vocals [Uriel]833554Christa LudwigContralto VocalsMozart – Requiem – Mathis, Hamari, Ochman, Ridderbusch / Karl BöhmRequiem K 626834073Karl RidderbuschBass Vocals855072Wiener StaatsopernchorChorus855167Norbert BalatschChorus Master95546Wolfgang Amadeus MozartComposed By834092Franz Xaver SüssmayrFranz Xaver SüßmayrComposed By [Completed]283127Karl BöhmConductor870910Julia HamariContralto Vocals754974Wiener PhilharmonikerOrchestra1565297Hans HaselböckOrgan850889Edith MAthisEdith MathisSoprano Vocals1031230Wiesław OchmanTenor Vocals91-1a1. Introitus. Requiem (Chorus, Soprano)9:3791-1b2. Kyrie (Chorus)91-23. Sequentia: Dies Irae (Chorus)2:0091-3Tuba Mirum (Soli)4:1791-4Rex Tremendae (Chorus)3:1191-5Recordare (Soli)7:0391-6Confutatis (Chorus)3:5191-7Lacrimosa (Chorus)4:1091-84. Offertorium: Domine Jesu (Chorus, Soli)4:4091-9Hostias (Chorus)5:0591-105. Sanctus (Chorus)1:5791-116. Benedictus (Soli, Chorus)6:5391-127. Agnus Dei (Chorus)11:2991-12a8. Communio. Lux Aeterna (Chorus, Soprano)Johann Sebastian Bach - Magnificat BWV 243 / Wachet Auf, Ruft Uns Die Stimme BWV 140Cantata “Wachet Auf, Ruft Uns Die Stimme” BWV 140 (Zum 27. Sonntag Nach Trinitatis = For The 27th Sunday After Trinity)833168Dietrich Fischer-DieskauBaritone Vocals931425Münchener Bach-ChorChorus517153Karl RichterConductor834641Münchener Bach-OrchesterOrchestra850889Edith MAthisEdith MathisSoprano Vocals446577Peter SchreierTenor Vocals92-11. Coro: Wachet Auf, Ruft Uns Die Stimme (Chorus)9:40964287Philipp NicolaiText By92-22. Recitativo: Er Kommt, Er Kommt, Der Bräut'gam Kommt! (Tenor)1:19967691AnonymousText By92-33. Aria (Duetto): Wann Kommst Du, Mein Heil? (Soprano, Bass)6:54967691AnonymousText By92-44. Choral: Zion Hört Die Wächter Singen (Tenor)5:56964287Philipp NicolaiText By92-55. Recitativo: So Geh Herein Zu Mir (Bass)1:57967691AnonymousText By92-66. Aria (Duetto): Mein Freund Ist Mein! / Und Ich Bin Dein! (Soprano, Bass)6:22967691AnonymousText By92-77. Choral: Gloria Sei Dir Gesungen (Chorus)1:49964287Philipp NicolaiText ByMagnificat In D Major BWV 243 (Text: Vulgata)833168Dietrich Fischer-DieskauBaritone Vocals931425Münchener Bach-ChorChorus517153Karl RichterConductor901880Hertha TöpperContralto Vocals834641Münchener Bach-OrchesterOrchestra836125Maria StaderSoprano Vocals883315Ernst HaefligerTenor Vocals92-81. Magnificat (Chorus)3:0192-92. Et Exsultavit Spiritus Meus (Contralto)2:4692-10a3. Quia Respexit Humilitatem (Soprano)4:3292-10b4. Omnes Generationes (Chorus)92-115. Quia Fecit Mihi Magna (Bass)2:1692-126. Et Misericordia (Contralto, Tenor)3:4992-137. Fecit Potentiam (Chorus)2:2292-148. Deposuit Potentes (Tenor)2:1192-159. Esurientes Implevit Bonis (Contralto)2:5892-1610. Suscepit Israel (Soprano, Contralto, Chorus)1:5292-1711. Sicut Locutus Est (Chorus)1:5492-1812. Gloria Patri (Chorus)2:18Biber – Missa Salisburgensis - Musica Antiqua Köln / Reinhard Goebel93-1aEin Langer Und Schöner Aufzug: Fanfare I2:392392751Bartholomäus RiedlComposed By180025Gabrieli ConsortGabrieli Consort & PlayersEnsemble837582Musica Antiqua KölnEnsemble180026Paul McCreeshMusic Director [Gabrieli Consort & Players]837585Reinhard GoebelMusic Director [Musica Antiqua Köln]93-1bEin Schöner Aufzug: Fanfare II2827727Pater Ignatius AugustinerComposed By180025Gabrieli ConsortGabrieli Consort & PlayersEnsemble837582Musica Antiqua KölnEnsemble180026Paul McCreeshMusic Director [Gabrieli Consort & Players]837585Reinhard GoebelMusic Director [Musica Antiqua Köln]Missa Salisburgensis855218Heinrich Ignaz Franz BiberComposed By180025Gabrieli ConsortGabrieli Consort & PlayersEnsemble837582Musica Antiqua KölnEnsemble180026Paul McCreeshMusic Director [Gabrieli Consort & Players]837585Reinhard GoebelMusic Director [Musica Antiqua Köln]93-2Kyrie5:5193-3Gloria9:4593-4Sonatae Tam Aris Quam Aulis Servientes: Sonata XII5:2193-5Credo15:0493-6Sonatae Tam Aris Quam Aulis Servientes: Sonata V6:0493-7Sanctus – Benedictus8:0493-8Agnus Dei8:2793-9Sonata Sancti Polycarpi4:3493-10Motet “Plaudite Tympana”5:53Early Lied Recordings94-1Ave Maria (With Piano Accompaniment)3:432682949Luigi MapelliComposed By1195419Francesco TamagnoTenor Vocals94-2Ave Maria (With Piano And Violin Accompaniment)3:12555462Charles GounodComposed By95537Johann Sebastian BachComposed By75389Alessandro MoreschiSoprano Vocals [Castrato]94-3Auld Lang Syne3:04151641TraditionalComposed By1195423Nellie MelbaSoprano Vocals624922Robert Burns (4)Text By94-4Ave Maria Op. 52 No. 6 D 8393:12283469Franz SchubertComposed By2690405Coenraad BosCoenraad V. BosPiano2690424Julia CulpSoprano Vocals932775Sir Walter ScottText By907457Adam StorckTranslated By94-5Heimweh2:43460621Hugo WolfComposed By2690405Coenraad BosCoenraad V. BosPiano2690424Julia CulpSoprano Vocals581291Joseph Von EichendorffJoseph Freiherr von EichendorffText By94-6Heimliche Aufforderung Op. 27 No. 33:21868262Joseph SchwarzBaritone Vocals108439Richard StraussComposed By828374Bruno Seidler-WinklerPiano886424John Henry MackayText ByDie Zauberflöte K 62095546Wolfgang Amadeus MozartComposed By94-7Ach, Ich Fühl's (Act 2; Pamina)3:5110639687Félix Pando (3)Arranged By896717Elisabeth SchumannSoprano Vocals [Pamina]Kindertotenlieder3498812Heinrich RehkemperBaritone Vocals239236Gustav MahlerComposed By867995Jascha HorensteinConductor839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra849194Friedrich RückertText By94-81. Nun Will Die Sonn' So Hell Aufgeh'n5:3894-93. Wenn Dein Mütterlein5:00Die Schöne Müllerin D 795/153498812Heinrich RehkemperBaritone Vocals283469Franz SchubertComposed By573244Wilhelm MüllerText By94-10Eifersucht Und Stolz1:4694-11Ave Maria Op. 52 No. 6 D 8394:42283469Franz SchubertComposed By868256Rosette AndayMezzo-soprano Vocals1205729Franz RuppPiano932775Sir Walter ScottText By907457Adam StorckTranslated ByMyrthen Op. 25/3578727Robert SchumannComposed By1233653Leo SlezakTenor Vocals1287392Julius MosenText By94-12Der Nussbaum3:3294-13Feldeinsamkeit Op. 86 No. 24:18304975Johannes BrahmsComposed By4474756Heinrich SchackerPiano1233653Leo SlezakTenor Vocals1442480Hermann AllmersText By94-14Zueignung Op. 10 No. 11:451268204Heinrich SchlusnusBaritone Vocals108439Richard StraussComposed By, Piano2095140Hermann Von GilmText ByGoethe-Lieder IHW 10/191268204Heinrich SchlusnusBaritone Vocals460621Hugo WolfComposed By1205729Franz RuppPiano94-15Epiphanias4:44Romanzen Und Balladen I Op. 45/21268204Heinrich SchlusnusBaritone Vocals578727Robert SchumannComposed By2064520Sebastian PeschkoPiano581291Joseph Von EichendorffText By94-16Frühlingsfahrt3:18Lieder Und Gesänge Vol. III Op. 77/51268204Heinrich SchlusnusBaritone Vocals578727Robert SchumannComposed By1205729Franz RuppPiano2434059Christian L'EgruText By94-17Aufträge (“Nicht So Schnelle”)2:1995-1Adelaïde Op. 465:531268204Heinrich SchlusnusBaritone Vocals95544Ludwig van BeethovenComposed By1205729Franz RuppPiano833454Friedrich von MatthissonText By95-2An Die Hoffnung Op. 947:081268204Heinrich SchlusnusBaritone Vocals95544Ludwig van BeethovenComposed By2064520Sebastian PeschkoPiano2384360Christoph August TiedgeText By95-3An Schwager Kronos D 3693:041268204Heinrich SchlusnusBaritone Vocals283469Franz SchubertComposed By978332Michael RaucheisenPiano573251Johann Wolfgang von GoetheText By95-4Erlkönig D 3284:141268204Heinrich SchlusnusBaritone Vocals283469Franz SchubertComposed By1205729Franz RuppPiano573251Johann Wolfgang von GoetheText By95-5Auf Flügeln Des Gesanges Op. 34 No. 22:241268204Heinrich SchlusnusBaritone Vocals623293Felix Mendelssohn-BartholdyFelix MendelssohComposed By1205729Franz RuppPiano432053Heinrich HeineText By95-6Die Drei Zigeuner S 3204:341543787Theodor ScheidlBaritone Vocals226461Franz LisztComposed By1205729Franz RuppPiano581288Nikolaus LenauText ByLiederkranz Für Die Bassstimme Op. 1451281786Josef von ManowardaBass Vocals1013331Carl LoeweComposed By1205729Franz RuppPiano6940422Carl SiebelText By95-7Meeresleuchten3:23Mörike-Lieder No. 121281786Josef von ManowardaBass Vocals460621Hugo WolfComposed By2708797Árpád SándorPiano581287Eduard MörikeText By95-8Verborgenheit3:15Peter Gynt Op. 2395542Edvard GriegComposed By1268205Leo BlechConductor839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra855890Erna BergerSoprano Vocals838431Henrik IbsenText By95-9Der Winter Mag Scheiden (Solveig's Song)2:5995-10Wiegenlied Op. 49 No. 42:00304975Johannes BrahmsComposed By2347850Hans AltmannPiano855890Erna BergerSoprano Vocals151641TraditionalText By95-11Traum Durch Die Dämmerung Op. 29 No. 12:52108439Richard StraussComposed By2546845Gerhard SteegerPiano819662Franz VölkerTenor Vocals1210098Otto Julius BierbaumText By8 Gedichte Aus “Letzte Blätter” Op. 10 No. 8108439Richard StraussComposed By1205729Franz RuppPiano819662Franz VölkerTenor Vocals2095140Hermann Von GilmText By95-12Allerseelen3:2395-13An Die Musik Op. 88 No. 4 D 5472:53283469Franz SchubertComposed By6659946Gustav GrossmanGustav GrossmannPiano819662Franz VölkerTenor Vocals743959Franz von SchoberText By95-14Die Musensohn Op. 92 No. 1 D 7642:19283469Franz SchubertComposed By6659946Gustav GrossmanGustav GrossmannPiano819662Franz VölkerTenor Vocals573251Johann Wolfgang von GoetheText By95-15Am Grabe Anselmos D 5043:56283469Franz SchubertComposed By978332Michael RaucheisenPiano793628Tiana LemnitzSoprano Vocals654835Matthias ClaudiusText ByWesendonck-Lieder WWV 91294746Richard WagnerComposed By978332Michael RaucheisenPiano793628Tiana LemnitzSoprano Vocals1053118Mathilde WesendonckText By95-164. Schmerzen (“Sonne, Weinest Jeden Abend Dir Die Schönen Augen Rot”)2:5895-175. Träume (“Sag', Welch Wunderbare Träume”)4:25Schlichte Weisen Op. 76885403Max RegerComposed By2064520Sebastian PeschkoPiano1899119Walther LudwigWalter LudwigTenor Vocals4205248Ludwig RafaëlText By95-1822. Des Kindes Gebet2:0995-195. Herzenstausch1:57Gedichte Von Joseph V. Eichendorff1636160Georg HannBass Vocals460621Hugo WolfComposed By978332Michael RaucheisenPiano581291Joseph Von EichendorffJoseph Freiherr von EichendorffText By95-20Der Freund1:52Peter Anders Singt Franz Schuberts WinterreiseWinterreise D 911283469Franz SchubertComposed By978332Michael RaucheisenPiano833326Peter Anders (2)Tenor Vocals573244Wilhelm MüllerText By96-1Gute Nacht5:3896-2Die Wetterfahne1:5096-3Gefrorne Tränen3:0396-4Erstarrung2:5496-5Der Lindenbaum4:3096-6Wasserflut3:5196-7Auf Dem Flusse4:0396-8Rückblick2:2896-9Irrlicht2:4696-10Rast3:3496-11Frühlingstraum4:3696-12Einsamkeit2:4396-13Die Post2:3796-14Der Greise Kopf2:5796-15Die Krähe2:0696-16Letzte Hoffnung2:3496-17Im Dorfe2:5896-18Der Stürmische Morgen1:0196-19Täuschung1:3696-20Der Wegweiser4:0496-21Das Wirtshaus4:1096-22Mut1:2996-23Die Nebensonnen2:2996-24Der Leiermann3:19Fritz Wunderlich, Tenor - Schumann: Dichterliebe / Beethoven / SchubertDichterliebe Op. 48 (Song Cycle From Heinrich Heine's Buch Der Lieder)578727Robert SchumannComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals432053Heinrich HeineText By97-1Im Wunderschönen Monat Mai1:3397-2Aus Meinen Tränen Sprießen0:5297-3Die Rose, Die Lilie, Die Taube, Die Sonne0:3397-4Wenn Ich In Deine Augen Seh'1:2297-5Ich Will Meine Seele Tauchen0:5597-6Im Rhein, Im Heiligen Strome1:4597-7Ich Grolle Nicht1:1997-8Und Wüßten's Die Blumen, Die Kleinen1:1797-9Das Ist Ein Flöten Und Geigen1:3197-10Hör' Ich Das Liedchen Klingen1:5597-11Ein Jüngling Liebt Ein Mädchen1:0397-12Am Leuchtenden Sommermorgen2:3797-13Ich Hab' Im Traum Geweinet2:3297-14Allnächtlich Im Traume1:2897-15Aus Alten Märchen2:3297-16Die Alten, Bösen Lieder4:0897-17Zärtliche Liebe WoO 1232:1195544Ludwig van BeethovenComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals2252684Karl Friedrich Wilhelm HerroseeKarl Friedrich HerroseeText By97-18Adelaide Op. 465:5795544Ludwig van BeethovenComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals833454Friedrich von MatthissonText By97-19Resignation WoO 1492:2695544Ludwig van BeethovenComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals2384361Paul Von HaugwitzPaul Graf von HaugwitzText By97-20Der Kuss Op. 1281:5995544Ludwig van BeethovenComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals891325Christian Felix WeißeChristian Felix WeisseText By97-21An Sylvia D 891 (Op. 106 No. 4)3:00283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals348179William ShakespeareText By907451Eduard von BauernfeldTranslated By97-22Lied Eines Schiffers An Die Dioskuren D 360 (Op. 65)2:47283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals1325015Johann MayrhoferText By97-23Liebhaber In Allen Gestalten D 5581:17283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals573251Johann Wolfgang von GoetheText By97-24Der Einsame D 800 (Op. 14)4:23283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals968275Karl LappeText By97-25Im Abendrot D 7993:26283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals968275Karl LappeText By97-26Ständchen (“Leise Flehen Meine Lieder”) D 957 No. 4 (Schwanengesang)3:47283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals833767Ludwig RellstabText By97-27And Die Laute D 905 (Op. 81 No. 2)1:56283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals2063824Johann Friedrich RochlitzText By97-28Der Musensohn D 764 (Op. 92 No. 1)2:16283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals573251Johann Wolfgang von GoetheText By97-29An Die Musik D 547 (Op. 88 No. 4)2:24283469Franz SchubertComposed By1016009Hubert GiesenPiano575045Fritz WunderlichTenor Vocals743959Franz von SchoberText ByRobert Schumann: Liederkreis / Hugo Wolf: Lieder Der Mignon, Italienisches Liederbuch - Christa LudwigLiederkreis Op. 39 Nos. 3-6, 9 & 11578727Robert SchumannComposed By833554Christa LudwigContralto Vocals1112044Erik WerbaPiano581291Joseph Von EichendorffText By98-1Waldesgespräch2:0398-2Die Stille1:3998-3Mondnacht4:0198-4Schöne Fremde1:0698-5Wehmut1:4998-6Im Walde1:29Lieder Der Mignon (Goethe-Lieder) Nos. 5-7 & 9460621Hugo WolfComposed By833554Christa LudwigContralto Vocals1112044Erik WerbaPiano573251Johann Wolfgang von GoetheText By98-7Mignon I (“Heiß Mich Nicht Reden”)2:5798-8Mignon II (“Nur Wer Die Sehnsucht Kennt”)2:3598-9Mignon II (“So Laßt Mich Scheinen”)3:1898-10Mignon: Kennst Du Das Land?5:44Italienisches LIederbuch Nos. 1, 2, 6, 10-12, 15, 16, 19-21, 24-26, 28, 29, 31, 32, 36, 39, 40, 43, 45 & 46460621Hugo WolfComposed By833554Christa LudwigContralto Vocals424576Daniel BarenboimPiano833455Paul HeyseText By98-11Auch Kleine Dinge Können Uns Entzücken2:2298-12Mir Ward Gesagt, Du Reisest In Die Ferne1:5798-13Wer Rief Dich Denn?1:0098-14Du Denkst Mit Einem Fädchen Mich Zu Fangen1:1198-15Wie Lange Schon War Immer Mein Verlangen2:0398-16Nein, Junger Herr, So Treibt Man's Nicht, Fürwahr0:4498-17Mein Liebster Ist So Klein, Daß Ohne Bücken1:4298-18Ihr Jungen Leute, Die Ihr Zieht Ins Feld1:2698-19Wir Haben Beide Lange Zeit Geschwiegen2:0898-20Mein Liebster Singt Am Haus Im Mondenscheine1:4398-21Man Sagt Mir, Deine Mutter Woll' Es Nicht1:1398-22Ich Esse Nun Mein Brot Nicht Trocken Mehr1:4898-23Mein Liebster Hat Zu Tische Mich Geladen0:5198-24Ich Ließ Mir Sagen Und Mir Ward Erzählt2:3398-25Du Sagst Mir, Dass Ich Keine Fürstin Sei1:2498-26Wohl Kenn' Ich Euren Stand, Der Nicht Gering2:1298-27Wie Soll Ich Frölich Sein Und Lachen Gar1:5598-28Was Soll Der Zorn, Mein Schatz, Der Dich Erhitzt1:5698-29Wenn Du, Mein Liebster, Steigst Zum Himmel Auf1:4998-30Gesegnet Sei Das Grün Und Wer Es Trägt1:3798-31O Wär' Dein Haus Durchsichtig Wie Ein Glas1:4498-32Schweig Einmal Still, Du Garst'ger Schwätzer Dort1:0098-33Verschling Der Abgrund Meines Liebsten Hütte1:1598-34Ich Hab' In Penna Einen Liebsten Wohnen0:59Franz Schubert - Lieder: Dietrich Fischer-Dieskau99-1Auf Dem Wasser Zu Singen D 7743:23833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano1378331Friedrich Leopold, Graf zu Stolberg-StolbergText By99-2Lachen Und Weinen D 7771:43833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano849194Friedrich RückertText By99-3Du Bist Die Ruh' D 7764:10833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano849194Friedrich RückertText By99-4Der Wanderer D 4935:45833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano1254458Georg Philipp Schmidt von LübeckGeorg Philipp Schmidt “von Lübeck”Text By99-5Ständchen (“Leise Flehen Meine Lieder”) Schwanengesang D 957 No. 43:51833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano833767Ludwig RellstabText By99-6Der Einsame D 8004:11833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano968275Karl LappeText By99-7Im Abendrot (“O Wie Schön Ist Deine Welt”) D 7994:09833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano968275Karl LappeText By99-8An Sylvia D 8912:43833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano348179William ShakespeareText By907451Eduard von BauernfeldTranslated By99-9Ständchen (“Horch, Horch, Die Lerch”) D 8891:35833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano348179William ShakespeareText By2108055August Wilhelm SchlegelTranslated By99-10Sei Mir Gegrüßt D 7413:48833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano849194Friedrich RückertText By99-11Seligkeit D 4331:49833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano891322Ludwig Heinrich Christoph HöltyText By99-12Der Lindenbaum (Winterreise D 911)4:38833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573244Wilhelm MüllerText By99-13Die Forelle D 5501:59833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano935568Christian Daniel SchubartChristian Friedrich Daniel SchubartText By99-14Rastlose Liebe D 1381:22833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-15Heidenröslein D 2571:44833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-16An Schwager Kronos D 3692:48833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-17Wandrers Nachtlied I (“Der Du Von Dem Himmel Bist”) D 2241:48833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-18Erlkönig D 3284:15833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-19Der König In Thule D 3672:59833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919gerald moorePiano573251Johann Wolfgang von GoetheText By99-20Jägers Abendlied D 3682:37833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-22Der Musensohn D 7642:07833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText By99-22Wandrers Nachtlied II (“Über Allen Gipfeln”) D 7682:32833168Dietrich Fischer-DieskauBaritone Vocals283469Franz SchubertComposed By845919Gerald MoorePiano573251Johann Wolfgang von GoetheText ByJohannes Brahms - Lieder - Jessye Norman100-1Liebestreu Op. 3 No. 12:19304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-2Regenlied WoO 23 Posth.1:31304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-3Der Schmied Op. 19 No. 40:47304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-4Klage I (“Ach, Mir Fehlt, Nicht Ist Da”) Op. 69 No. 12:19304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-5Klage II (“O Felsen, Lieber Felsen”) Op. 69 No. 23:00304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-6Des Liebsten Schwur Op. 69 No. 42:36304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-7Vom Strande Op. 69 No. 62:58304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-8Salome Op. 69 No. 81:46304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-9Dein Blaues Auge Hält So Still Op. 59 No. 82:23304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-10Das Mädchen Spricht Op. 107 No. 31:20304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-11Sapphische Ode Op. 94 No. 42:48304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-12Therese Op. 86 No. 11:28304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-13Das Mädchen Op. 95 No. 12:22304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano VocalsRomanzen Und Lieder Op. 84100-141. Sommerabend1:57100-152. Der Kranz1:42100-163. In Den Beeren1:26100-174. Vergebliches Ständchen1:40100-185. Spannung2:18100-19Gestillte Sensucht Op. 91 No. 17:13304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals881443Wolfram ChristViola100-20Geistliches Wiegenlied Op. 91 No. 26:11304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals881443Wolfram ChristViola100-21Dort In Den Weiden Op. 97 No. 41:34304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano VocalsZiegeunerlieder Op. 103304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-221. He, Zigeuner, Greife In Die Saiten Ein!0:59100-232. Hochgetürmte Rimaflut1:21100-243. Wißt Ihr, Wann Mein Kindchen1:15100-254. Lieber Gott, Du Weißt1:09100-265. Brauner Bursche Führt Zum Tanze1:19100-276. Röslein Dreie In Der Reihe1:45100-287. Kommt Dir Manchmal In Den Sinn2:47100-298. Rote Abendwolken Ziehen1:20100-30Wie Melodien Zieht Es Op. 105, No. 12:29304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano Vocals100-31Immer Leiser Wird Mein Schlummer Op. 105 No. 24:00304975Johannes BrahmsComposed By424576Daniel BarenboimPiano310388Jessye NormanSoprano VocalsMots D'Amour - Anne Sofie Von OtterMélodies918108Cécile ChaminadeComposed By789776Anne Sofie Von OtterMezzo-soprano Vocals979554Bengt ForsbergPiano101-1Ronde D'Amour (“Ah! Si L'Amour Prenait Racine”)1:49101-2La Lune Paresseuse (“Dans Un Rayon De Crépuscule”)2:32101-3Sombrero (“Qu'Elle Était Mutine Et Coquette”)1:35101-4Mignonne (“Mignonne, Allons Voir Si La Rose”)2:30101-5L'Anneau D'Argent (“Le Cher Anneau D'Argent”)1:40101-6Ma Première Lettre (“Hélas! Que Nous Oublions Vite”)2:12101-7L'Amour Captif (“Mignonne, À L'Amour J'Ai Lié Les Ailes”)1:29101-8Attente (Au Pays De Provence) (“Je Ne Sais À Quoi Je Rêve”)2:00101-9Voisinage (“Je N'Avais Pas Encor Vingt Ans”)1:35101-10Bonne Humeur (“Nous Marchions Sous La Fine Pluie”)1:32101-11Alleluia (“J'Avais Douté De Votre Amour”)1:33101-12Malgré Nous (“Ce N'Est Pas La Faute À Nous Deux”)1:21101-13Nice-La-Belle (“Quand Ton Ciel Se Dore”)2:35101-14Menuet (“Dans Votre Robe À Grands Paniers”) For Voice, Violin And Piano1:52857765Nils-Erik SparfViolin101-15Te Souviens-Tu? (“Te Souviens-Tu De Ta Promesse”)1:58101-16Auprès De Ma Mie (“Si J'Étais L'Oiseau Léger”)1:24101-17Viens! Mon Bien-Aimé! (“Les Beaux Jours Vont Enfin Renaître”)1:52101-18Si J'Étais Jardinier (“Si J'Étais Jardinier Des Cieux”)1:59101-19Villanelle (“Le Blé Superbe Est Rentré”)2:07101-20Mots D'Amour (“Quand Je Te Dis Des Mots Lassés”)2:09101-21Écrin (“Tes Yeux Malicieux”)1:50101-22Espoir (“Ne Dis Pas Que L'Espoir”)2:17101-23Chanson Triste (“Dans Les Profondes Mers”)2:23101-24Je Voudrais... (“Je Voudrais Être Une Fleur”)1:49101-25E'Été (“Ah! Chantez, Chantez!”)3:41Pieces For Violin And Piano918108Cécile ChaminadeComposed By979554Bengt ForsbergPiano857765Nils-Erik SparfViolin101-26Sérénade Espagnole Op. 1501:59620186Fritz KreislerArranged By101-27Rondeau Op. 973:05101-28Capriccio Op. 185:12Pieces For Two Pianos918108Cécile ChaminadeComposed By1986379Peter JablonskiPiano [II]979554Bengt ForsbergPiano [I]101-29Valse Carnavalesque Op. 736:08101-30Pas Des Cymbales Op. 36 No. 25:17101-31Danse Païenne Op. 1584:45Johann Sebastian Bach - IX. Forschungsbereich, Serie F: Werke Für OrgelTrio Sonata No. 1 In E Flat Major BWV 52595537Johann Sebastian BachComposed By841674Helmut WalchaOrgan102-11. (Allegro Moderato)3:06102-22. Adagio3:51102-33. Allegro3:57Six Chorales Of Diverse Kinds (“Schübler” Chorales)95537Johann Sebastian BachComposed By841674Helmut WalchaOrgan102-4Wachet Auf, Ruft Uns Die Stimme BWV 6454:00102-5Wo Soll Ich Fliehen Hin, Oder: Auf Meinen Lieben Gott BWV 6462:00102-6Wer Nur Den Lieben Gott Läßt Walten BWV 6473:12102-7Meine Seele Erhebet Den Herrn BWV 6481:50102-8Ach Bleib Bei Uns, Herr Jesu Christ BWV 6492:52102-9Kommst Du Nun, Jesu, Vom Himmel Herunter BWV 6503:10102-10Partite Diverse Sopra: Sei Gegrüßet, Jesu Gütig BWV 76821:40Trio Sonata No. 6 In G Major BWV 53095537Johann Sebastian BachComposed By841674Helmut WalchaOrgan102-111. Vivace4:08102-122. Lento3:46102-133. Allegro3:54102-14Toccata And Fugue In D Minor BWV 5659:1595537Johann Sebastian BachComposed By841674Helmut WalchaOrgan102-15Fugue In E Flat Major BWV 552 (Clavier-Übung, Part III)7:2095537Johann Sebastian BachComposed By841674Helmut WalchaOrganGeorg Friedrich Händel - X. Forschungsbereich, Serie G: Kirchenmusik - Utrechter Te Deum & Jubilate, Zadok The Priest“Utrecht” Te Deum & Jubilate HWV 278 & 2791192841Thomas HemsleyBass Vocals1478927Geraint Jones SingersChorus375279Georg Friedrich HändelGeorge Frideric HandelComposed By1478925Geraint Jones (2)Conductor837661Helen WattsContralto Vocals1478928Geraint Jones OrchestraOrchestra2513738Ilse WolfSoprano Vocals971042Edgar FleetTenor Vocals1233375Wilfred BrownTenor Vocals103-1Te Deum: We Praise Thee, O God (Chorus)4:30103-2To Thee All Angels Cry Aloud ... To Thee Cherubim And Seraphin (Soli, Chorus)2:45103-3The Glorious Company Of The Apostles ... Thou Art The King Of Glory (Soli, Chorus)5:11103-4When Thou Took'st Upon Thee ... When Thou Hadst Overcome ... Thou Sittest At The Right Hand Of God (Soli, Chorus)3:58103-5We Believe That Thou Shalt Come (Soli, Chorus)3:09103-6Day By Day ... And We Worship Thy Name (Chorus)2:26103-7Vouchsafe, O Lord (Soli, Chorus)3:23103-8O Lord, In Thee Have I Trusted (Chorus)1:20103-9Jubilate: O Be Joyful In The Lord (Contralto, Tenor, Bass, Chorus)2:10103-10Serve The Lord With Gladness (Chorus)2:13103-11Be Ye Sure That The Lord He Is God (Contralto, Bass)2:34103-12O Go Your Way Into His Gates (Chorus)2:49103-13For The Lord Is Gracious (Contralto, Tenor, Bass)3:29103-14Glory Be To The Father (Chorus)5:42Zadok The Priest: Coronation Anthem No. 1 HWV 2581478927Geraint Jones SingersChorus375279Georg Friedrich HändelGeorge Frideric HandelComposed By1478925Geraint Jones (2)Conductor1478928Geraint Jones OrchestraOrchestra103-15Zadok The Priest2:12103-16And All The People Rejoic'd0:51103-17God Save The King3:02Music Of The Gothic Era = Musik Der Gotik = Musique De L'Epoque Gothique: Notre Dame Period (C.1160-C1250)104-1Organum 2 Vocum: Viderunt Omnes9:04836786David CorkhillBells833214Gillian Reid (2)Bells650601The Early Music Consort Of LondonChoir [Unison]835529LéoninLeoninusComposed By833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By104-2Organum 4 Vocum: Viderunt Omnes11:44650601The Early Music Consort Of LondonChoir [Unison]835526PérotinPerotinusComposed By517156David MunrowDirected By836786David CorkhillOrgan [Positive]871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals361600Rogers Covey-CrumpTenor VocalsArs Antiqua (C.1250-C.1320) - Motets104-3Alle, Psalite Cum Luya1:06441318Geoffrey ShawBass Vocals967691AnonymousComposed By517156David MunrowDirected By, Shawm [Tenor]836786David CorkhillDrum [Tabor]899353John Potter (2)Tenor Vocals871873Martyn HillTenor Vocals104-4Amor Potest (3 Voc.)1:01967691AnonymousComposed By517156David MunrowDirected By, Shawm [Tenor]871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-5S'On Me Regarde (3 Voc.)2:23967691AnonymousComposed By517156David MunrowDirected By3972676Oliver Brooks (2)Fiddle779781Christopher HogwoodHarp384925James TylerLute [Mandora]833214Gillian Reid (2)Psaltery871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-6In Mari Miserie (3 Voc.)1:50441318Geoffrey ShawBass Vocals836786David CorkhillBells833214Gillian Reid (2)Bells967691AnonymousComposed By517156David MunrowDirected By871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-7O Mitissima (3 Voc.)1:26441318Geoffrey ShawBass Vocals967691AnonymousComposed By833205Charles BrettCountertenor Vocals833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By, Shawm [Tenor]836786David CorkhillDrum [Tabor]104-8Aucun Ont Trouvé (3 Voc.)3:111342026Petrus de CruceComposed By833205Charles BrettCountertenor Vocals517156David MunrowDirected By833212Oliver BrookesFiddle871873Martyn HillTenor Vocals104-9De Ma Dame Vient (3 Voc.)2:24986655Adam De La HalleComposed By517156David MunrowDirected By833212Oliver BrookesFiddle871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-10J'Os Bien A M'Amie Parler (3 Voc.)1:50986655Adam De La HalleComposed By833205Charles BrettCountertenor Vocals833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By, Recorder833212Oliver BrookesFiddleArs Nova (C.1320-C.1380) - Motets104-11La Mesnie Fauveline (3 Voc.)1:16441318Geoffrey ShawBass Vocals967691AnonymousComposed By517156David MunrowDirected By871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-12Impudenter Circumivi (4 Voc.)3:091342028Philippe de VitryComposed By833205Charles BrettCountertenor Vocals833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By647326Eleanor SloanFiddle833212Oliver BrookesFiddle104-13Cum Statua (3 Voc.)2:271342028Philippe de VitryComposed By833205Charles BrettCountertenor Vocals833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By, Shawm [Alto]104-14Clap, Clap, Par Un Matin (3 Voc.)1:29967691AnonymousComposed By517156David MunrowDirected By833212Oliver BrookesFiddle779781Christopher HogwoodHarp384925James TylerLute [Mandora]833214Gillian Reid (2)Psaltery871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-15Febus Mundo Oriens (3 Voc.)3:28967691AnonymousComposed By833205Charles BrettCountertenor Vocals833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By871873Martyn HillTenor Vocals104-16Qui Es Promesses (3 Voc.)1:53833970Guillaume de MachautComposed By833205Charles BrettCountertenor Vocals833217James Bowman (2)Countertenor Vocals517156David MunrowDirected By, Shawm [Tenor]104-17Lasse! Comment Oublieray (3 Voc.)4:03441318Geoffrey ShawBass Vocals833970Guillaume de MachautComposed By517156David MunrowDirected By871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-18Inter Densas Deserti Meditans (3 Voc.)3:17967691AnonymousComposed By517156David MunrowDirected By833212Oliver BrookesFiddle384925James TylerLute871873Martyn HillTenor Vocals522269Paul ElliottTenor Vocals104-19Hoquetus David (3 Voc.)3:16836786David CorkhillBells833214Gillian Reid (2)Bells833970Guillaume de MachautComposed By1000567Iaan WilsonCornett843657Michael Laird (2)Cornett517156David MunrowDirected By, Shawm [Alto]Antonio Vivaldi - Le Quattro Stagioni = Die Vier Jahreszeiten = The Four Seasons = Les Quatre SaisonsLa Primavera = Spring (Op. 8 No. 1): Concerto For Violin And Strings In E Major RV 269108566Antonio VivaldiComposed By837588Trevor PinnockDirected By, Harpsichord4713045The English ConcertEnsemble343905Simon StandageViolin105-11. Allegro: Giunt'È La Primavera = Spring's Awakening – Canto Degl'Uccelli = Birdsong – Scorrono I Fonti = Springs Gush Forth – Tuoni = Thunder – Canto D'Uccelli = Birdsong3:16105-22. Largo E Pianissimo Sempre: Il Capraro Che Dorme = The Sleeping Goatherd – Mormorio Di Fronde E Piante = Foliage And Plants Rustling – Il Cane Che Grida = The Barking Dog2:38105-33. Allegro: Danza Pastorale = Country Dance3:37L'Estate = Summer (Op. 8 No. 2): Concerto For Violin And Strings In G Minor RV 315108566Antonio VivaldiComposed By837588Trevor PinnockDirected By, Harpsichord4713045The English ConcertEnsemble343905Simon StandageViolin105-41. Allegro Non Molto: Languidezza Per Il Caldo = Languor Caused By The Heat – Il Cucco = The Cuckoo – La Tortorella = The Turtle-Dove – Il Gardellino = The Goldfinch – Zeffiretti Dolci = Gentle Zephyrs – Venti Diversi = Various Winds – Vento Borea = The North Wind – Il Pianto Del Villanello = A Young Peasant's Lament4:42105-52. Adagio – Presto: Mosche E Mosconi = Flies And Bluebottles2:15105-63. Presto: Tempo Impetuoso D'Estate = Summer Storm2:43L'Autunno = Autumn (Op. 8 No. 3): Concerto For Violin And Strings In F Major RV 293108566Antonio VivaldiComposed By837588Trevor PinnockDirected By, Harpsichord4713045The English ConcertEnsemble343905Simon StandageViolin105-71. Allegro: Ballo E Canto De' Villanelli = Dance And Song Of The Peasants – L'Ubriaco = The Toper – L'Ubriaco Che Dorme = The Sleeping Drunkard4:49105-82. Adagio: Dormienti Ubriachi = Sleeping Drunkards2:29105-93. Allegro: La Caccia = The Hunt – La Fiera Che Fugge = The Fleeing Beast – Schioppi E Cani = Guns And Hounds – La Fiera Fuggendo Muore = The Fleeing Animal Is Slain3:00L'Inverno = Winter (Op. 8 No. 4): Concerto For Violin And Strings In F Minor RV 297108566Antonio VivaldiComposed By837588Trevor PinnockDirected By, Harpsichord4713045The English ConcertEnsemble343905Simon StandageViolin105-101. Allegro Non Molto: Agghiacciato Tremar Tra Nevi Algenti = Frozen Shivering In The Icy Snow – Orrido Vento = A Dreadful Storm – Correre E Battere I Piedi Per Il Freddo = Running And Stamping One's Feet Because Of The Cold – Venti = Winds – Battere I Denti = Chattering Of Teeth3:11105-112. Largo: La Pioggia = Rain1:51105-123. Allegro: Camminar Sopra Il Ghiaccio = Crossing The Ice – Camminar Piano E Con Timore = Moving Carefully And Anxiously – Cader A Terra = Falling To The Ground – Correr Forte = Striding Boldly On – Il Vento Siroco = The Sirocco – Il Vento Borea E Tutti I Venti = The North Wind And All Other Winds2:44Bach: Cantatas - Ascension = Himmelfahrt - BWV 11, BWV 37, BWV 43, BWV 128Gott Fährt Auf Mit Jauchzen BWV 43836155Stephen VarcoeBass836151The Monteverdi ChoirChorus95537Johann Sebastian BachComposed By833722John Eliot GardinerConductor836153Michael ChanceCountertenor Vocals836156The English Baroque SoloistsEnglish Baroque SoloistsEnsemble836154Nancy ArgentaSoprano Vocals836152Anthony Rolfe JohnsonTenor Vocals106-1Erster Teil = Part 1 – 1. Coro: Gott Fähret Auf Mit Jauchzen (Chorus)3:12106-22. Recitativo: Es Will Der Höchste Sich Ein Siegsgepräng Bereiten (Tenor)0:49106-33. Aria: Ja Tausend Mal Tausend Begleiten Den Wagen (Tenor)2:05106-44. Recitativo: Und Der Herr, Nachdem Er Mit Ihnen Geredet Hatte (Soprano)0:19106-55. Aria: Mein Jesus Hat Nunmehr Das Heilandwerk Vollendet (Soprano)2:00106-6Zweiter Teil = Part II – 6. Recitativo: Es Kommt Der Helden Held (Bass)0:38106-77. Aria: Er Ists, Der Ganz Allein Die Kelter Hat Getreten (Bass)2:39106-88. Recitativo: Der Vater Hat Ihm Ja Ein Ewig Reich Bestimmet (Countertenor)0:38106-99. Aria: Ich Sehe Schon Im Geist (Countertenor)3:02106-1010. Recitativo: Er Will Mir Neben Sich Die Wohnung Zubereiten (Soprano)0:37106-1111. Choral: Du Lebensfürst, Herr Jesu Christ (Chorus)2:03962500Johann RistText ByAuf Christi Himmelfahrt Allein BWV 1282106818Reinhard HagenBass Vocals836155Stephen VarcoeBass Vocals836151The Monteverdi ChoirChorus95537Johann Sebastian BachComposed By833722John Eliot GardinerConductor836153Michael ChanceCountertenor Vocals1035764Robin BlazeCountertenor Vocals836156The English Baroque SoloistsEnglish Baroque SoloistsEnsemble836154Nancy ArgentaSoprano Vocals836152Anthony Rolfe JohnsonTenor Vocals2133601Christoph GenzTenor Vocals106-121. Coro: Auf Christi Himmelfahrt Allein (Chorus)4:3210666378Ernst SonnemannText By10666381Josua WegelinText By [After]106-132. Recitativo: Ich Bin Bereit, Komm, Hole Mich! (Tenor)0:494215552Christiana Mariana von ZieglerChristiane Mariane von ZieglerText By106-143. Aria E Recitativo: Auf, Auf, Mit Hellem Schall (Bass)3:234215552Christiana Mariana von ZieglerChristiane Mariane von ZieglerText By106-154. Aria: Sein Allmacht Zu Ergründen (Countertenor, Tenor)6:474215552Christiana Mariana von ZieglerChristiane Mariane von ZieglerText By106-165. Choral: Alsdann So Wirst Du Mich Zu Deiner Rechten Stellen (Chorus)1:0010666384Matthäus AvenariusText ByWer Da Gläubet Und Getauft Wird BWV 37836155Stephen VarcoeBass Vocals836151The Monteverdi ChoirChorus95537Johann Sebastian BachComposed By833722John Eliot GardinerConductor836153Michael ChanceCountertenor Vocals836156The English Baroque SoloistsEnglish Baroque SoloistsEnsemble836154Nancy ArgentaSoprano Vocals836152Anthony Rolfe JohnsonTenor Vocals106-171. Coro: Wer Da Gläubet Und Getauft Wird (Chorus)2:19106-182. Aria: Der Glaube Ist Das Pfand Der Liebe (Tenor)5:36106-193. Choral (Duetto): Herr Gott Vater, Mein Starker Held! (Soprano, Countertenor)2:35964287Philipp NicolaiText By106-204. Recitativo: Ihr Sterblichen, Verlanget Ihr (Bass)0:54106-215. Aria: Der Glaube Schafft Der Seele Flügel (Bass)2:49106-226. Choral: Den Glauben Mir Verliehe An Dein' Sohn Jesum Christ (Chorus)1:007062738Johann KolroseText ByLobett Gott In Seinen Reichen BWV 11 (Oratorio for Ascension Day)836155Stephen VarcoeBass Vocals836151The Monteverdi ChoirChorus95537Johann Sebastian BachComposed By833722John Eliot GardinerConductor836153Michael ChanceCountertenor Vocals836156The English Baroque SoloistsEnglish Baroque SoloistsEnsemble836154Nancy ArgentaSoprano Vocals836152Anthony Rolfe JohnsonTenor Vocals106-231. Coro: Lobet Gott In Seinen Reichen (Chorus)4:38106-242. Recitativo: Derr Herr Jesus Hub Seine Hände Auf (Tenor / Evangelist)0:28106-253. Recitativo: Ach Jesu, Ist Dein Abschied Schon So Nah? (Bass)0:56106-264. Aria: Ach, Bleibe Doch, Mein Liebstes Leben (Countertenor)7:50106-275. Recitativo: Und Ward Aufgehoben Zusehends (Tenor / Evangelist)0:27106-286. Choral: Nun Lieget Alles Unter Dir (Chorus)1:26962500Johann RistText By106-297a. Recitativo: Und Da Sie Ihm Nachsahen (Tenor / Evangelist, Bass)0:48106-307b. Recitativo: Ach Ja! So Komme Bald Zurück (Countertenor)0:34106-317c. Recitativo: Sie Aber Beteten Ihn An (Tenor / Evangelist)0:38106-328. Aria: Jesu, Deine Gnadenblicke (Soprano)6:14106-339. Choral: Wenn Soll Es Doch Geschehen (Chorus)4:144697742Gottfried Wilhelm SacerText ByConcerto Italiano - Giuliano Carmignola / Venice Baroque Orchestra / Andrea MarconViolin Concerto In C Major7918011Domenico Dall'OglioComposed By1823637Andrea MarconConductor1855232Venice Baroque OrchestraOrchestra1583478Giuliano CarmignolaViolin107-11. Allegro6:36107-22. Largo6:25107-33. Allegro6:44Violin Concerto In G Minor1583478Giuliano CarmignolaCadenza, Violin4102942Michele StraticoComposed By1823637Andrea MarconConductor1855232Venice Baroque OrchestraOrchestra107-41. Allegro6:15107-52. Grave8:27107-63. Allegro Assai5:48Violin Concerto In G Major1583478Giuliano CarmignolaCadenza, Violin1026736Pietro NardiniComposed By1823637Andrea MarconConductor1855232Venice Baroque OrchestraOrchestra107-71. Allegro7:23107-82. Adagio3:43107-93. Allegro5:29Violin Concerto In C Major Op. 2a, No. 22266131Antonio LolliComposed By1823637Andrea MarconConductor1855232Venice Baroque OrchestraOrchestra1583478Giuliano CarmignolaViolin107-101. Andante10:301696723Olivier FourésCadenza107-112. Adagio5:31107-123. Allegro8:181583478Giuliano CarmignolaCadenzaEarly Polydor And Light Music Recordings (1927-1949)Die Lustigen Weiber Von Windsor (Act 2)696211Otto NicolaiComposed By696143Salomon Hermann MosenthalLibretto By108-1Horch, Die Lerche Singt Im Hain4:072464744Koloman Von PátakyKoloman Von PatakyTenor VocalsGasparone696264Carl MillöckerComposed By696151Ernst SteffanLibretto By696141Paul KneplerLibretto By108-2O Dass Ich Doch Ein Räuber Wär'2:45688034Julius PatzakTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1268205Leo BlechConductorDer Rosenkavalier (Act 3)108439Richard StraussComposed By730004Hugo von HofmannsthalLibretto By108-3Hab Mir's Gelobt9:501716925Viorica UrsuleacSoprano Vocals855890Erna BergerSoprano Vocals793628Tiana LemnitzSoprano Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra882724Clemens KraussConductorDas Land Des Lächelns (Act 2)525459Franz LehárComposed By696237Fritz Löhner-BedaLibretto By654451Ludwig HerzerLibretto By108-4Dein Is Mein Ganzes Hertz!3:10819662Franz VölkerTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra2546845Gerhard SteegerConductor108-5Chianti-Lied3:08560802Gerhard WinklerComposed By2546845Gerhard SteegerConductor839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra1899119Walther LudwigTenor Vocals573420Ralph Maria SiegelText ByEine Nacht In Venedig (Act 1)1259101Johann Strauss Jr.Johann Strauss IIComposed By696140Friedrich ZellLibretto By696247Richard GenéeLibretto By108-6Gondellied = Goldolier's Song3:151899119Walther LudwigTenor Vocals839986Das Orchester Der Staatsoper BerlinOrchester Der Staatsoper BerlinOrchestra2546845Gerhard SteegerConductor108-7Man Müsste Klavier Spielen Können3:03456827Friedrich SchröderComposed By410373Johannes HeestersTenor Vocals635153Hans Fritz BeckmannText By108-8Mondnacht Auf Der Alster3:081999262Michael LannerArranged By944158Oscar FetrásComposed By1999262Michael LannerConductor979465Michael Lanner Mit Seinen Wiener Walzer-SolistenMichael Lanner Und Seinen Wiener-Walzer-SolistenOrchestra108-9Münchener Kindl2:53819729Karl KomzákCarl KomczakComposed By1999262Michael LannerConductor979465Michael Lanner Mit Seinen Wiener Walzer-SolistenMichael Lanner Und Seinen Wiener-Walzer-SolistenOrchestra108-10Lustiges Wien2:56635140Will MeiselComposed By1999262Michael LannerConductor979465Michael Lanner Mit Seinen Wiener Walzer-SolistenMichael Lanner Und Seinen Wiener-Walzer-SolistenOrchestra108-11Wiener Praterleben3:10945980Siegfried TranslateurComposed By1999262Michael LannerConductor979465Michael Lanner Mit Seinen Wiener Walzer-SolistenMichael Lanner Und Seinen Wiener-Walzer-Solisten*Orchestra108-12aWenn Der Weise Flieder Wieder Blüht2:57515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra582978Franz DoelleSongwriter688492Fritz RotterSongwriter108-12bZwei Rote Rosen, Ein Zarter Kuss515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra696221Kurt RobitschekKurt RobischekSongwriter662849Walter KolloSongwriter108-12cDrunt' In Der Lobau515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra696237Fritz Löhner-BedaSongwriter573243Heinrich StreckerSongwriter108-13aJa, Der Sonnenschein2:48515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra6694892Benny DaviesSongwriter2660725Joe Burke (3)Songwriter108-13bAuf Der Grünen Wiese515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra1011738Jára BenešJara BenešSongwriter4230634Victor TolarskySongwriter108-13cAusgerechnet Bananen = Yes, We Have No Bananas515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra1043142Frank SilverSongwriter696237Fritz Löhner-BedaSongwriter1043138Irving CohnSongwriter108-13dWas Machst Du Mit Dem Knie, Lieber Hans515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra1790796Alois BenetkaSongwriter2155099Otto RiedlmayerSongwriter108-13eDas Ist Die Liebe Der Matrosen515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra573237Robert GilbertSongwriter582970Werner Richard HeymannWerner-Richard HeymannSongwriter108-14aMadonna, Du Bist Schöner Als Der Sonnenschein3:14515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra706103Karl FarkasSongwriter819841Robert KatscherSongwriter108-14bSonny Boy515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra570719Billy RoseSongwriter716430Dave DreyerSongwriter108-14cSchlaf, Mein Liebling = Goodnight Sweetheart515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra696237Fritz Löhner-BedaSongwriter515881James CampbellSongwriter503363Ray NobleSongwriter515878Reginald ConnellyReg ConnellySongwriter108-15aIch Hab Das Fräulein Helen Baden Sehen3:06515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra560798Fred RaymondSongwriter954627Fritz GrünbaumFritz GruenbaumSongwriter108-15bAugust, Wo Sind Deine Haare515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra696237Fritz Löhner-BedaSongwriter911965Richard FallSongwriter108-15cPuppchen, Du Bist Mein Augenstern515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra942284Alfred SchönfeldSongwriter562992Jean GilbertSongwriter10668247Josef KoenigsbergerSongwriter573237Robert GilbertSongwriter108-15dJa, Wenn Das Der Petrus Wüßte515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra942284Alfred SchönfeldSongwriter562992Jean GilbertSongwriter10668247Josef KoenigsbergerSongwriter108-15eValencia515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra1042951Fred ContaSongwriter1725471José Andrés De PradaDe la PradaSongwriter433899José Padilla SánchezJosé Padilla SanchezSongwriter108-16Mandolino Mandolino3:37317295Helmut ZachariasConductor903022Helmut Zacharias Mit Seiner Tanz-BesetzungHelmut Zacharias Und Seine Tanz-BesetzungOrchestra560802Gerhard WinklerSongwriter573420Ralph Maria SiegelSongwriter490003Rudi SchurickeTenor Vocals108-17Florentinische Nächte3:30317295Helmut ZachariasConductor903022Helmut Zacharias Mit Seiner Tanz-BesetzungHelmut Zacharias Und Seine Tanz-BesetzungOrchestra573254Erich MederSongwriter463875Nico DostalSongwriter490003Rudi SchurickeTenor Vocals108-18Abends In Napoli3:16629850Waldo Favre-ChorWaldo Favre ChorChorus560802Gerhard WinklerConductor696267Symphonie-Orchester GraunkeOrchestra1365558Carl ImmichC. ImmichSongwriter490003Rudi SchurickeTenor Vocals108-19Auf Wiedersehn Lucia2:58515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra1951977Bixio CherubiniSongwriter517958Kurt FeltzSongwriter490003Rudi SchurickeTenor Vocals108-20Seit Heut Bin Ich Verliebt3:49515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra252672Charles FoxSongwriter748167Ernst VerchSongwriter490003Rudi SchurickeTenor Vocals108-21Mein Herz Ruft Nach Dir3:35690124Benny de WeilleConductor665814Polydor Tanz-OrchesterPolydor TanzorchesterOrchestra583802Carl SigmanSongwriter1478158Harry SixtSongwriter56057Percy FaithSongwriter490003Rudi SchurickeTenor Vocals108-22Warum Weinst Du Kleine Tamara3:27515766Alfred HauseConductor748032Radio-Tango-Orchester HamburgOrchestra573254Erich MederSongwriter988312Ferry AndreeFranz Ferry AndreeSongwriter490003Rudi SchurickeTenor Vocals108-23Auf Wiedersehen2:41491155Schöneberger SängerknabenChorus317295Helmut ZachariasConductor903022Helmut Zacharias Mit Seiner Tanz-BesetzungHelmut Zacharias Und Seine Tanz-Besetzung*Orchestra696159Eberhard StorchSongwriter490003Rudi SchurickeTenor VocalsKaiserwalzer - Wiener Ball-Orchester / Franz Marszalek109-1An Der Schönen Blauen Donau = The Blue Danube Op. 3143:251259101Johann Strauss Jr.Johann Strauss IIComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-2Dorfschwalben Aus Österreich = Village Swallows From Austria Op. 1642:58836585Josef StraußJosef StraussComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-3Geschichten Aus Dem Wienerwald = Tales From The Vienna Woods Op. 3253:051259101Johann Strauss Jr.Johann Strauss IIComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-4Wein, Weib Und Gesang = Wine, Woman And Song Op. 3332:161259101Johann Strauss Jr.Johann Strauss IIComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-5Künstlerleben = Artist's Life Op. 3162:551259101Johann Strauss Jr.Johann Strauss IIComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-6Kaiserwalzer = Emperor Waltz Op. 4373:101259101Johann Strauss Jr.Johann Strauss IIComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestraDie Csárdásfürstin (Act 1)654453Emmerich KálmánComposed By109-7Tanzen Möcht' Ich = I'd Like To Dance 3:151333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra696150Franz MarszalekConductor109-8Dorfkinderwalzer = Village Children Waltz (After Motifs From The Operetta Der Zigeunerprimas)3:05654453Emmerich KálmánComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestraDie Lustige Witwe = The Merry Widow (Act 1)525459Franz LehárComposed By109-9Ballsirenenwalzer = Sirens Of The Ball Waltz3:171333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra696150Franz MarszalekConductor109-10Gold Und Silber = Gold And Silver Op. 793:15525459Franz LehárComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-11Wiener Bürger Walzer = Viennese Citizens' Waltz Op. 4193:05882717Carl Michael ZiehrerComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestra109-12Estudiantina Op. 1912:53804818Emil WaldteufelÉmile WaldteufelComposed By696150Franz MarszalekConductor1333221Das Große Wiener BallorchesterWiener Ball-OrchesterOrchestraHermann Prey, Fritz Wunderlich, Will Quadflieg: Eine WeihnachtsmusikEine Weihnachtsmusik573239Hermann PreyBaritone Vocals2030038Helmut BöckerBassoon2030037Sepp GrünwaldBassoon841792Robert BodenröderClarinet2030033Wolfgang StertDouble Bass891215Fritz NeumeyerHarpsichord, Conductor2030034Berthold StihlHorn735380Will QuadfliegNarrator855186Hans-Georg RennerHans Georg RennerOboe, Oboe d'Amore2030036Dietmar KellerOboe, Oboe d'Amore, Cor Anglais575045Fritz WunderlichTenor Vocals2030035Christmut GeierViolin841771Wolfgang NeiningerViolin110-1Concerto In D Major Op. 10 No. 6: Tempo Di Minuetto0:5495541Tomaso AlbinoniComposed By855186Hans-Georg RennerHans Georg RennerArranged By110-2Es Begab Sich Aber Zu Der Zeit (Lukas-Evangelium 2:1-6)0:47110-3Maria Durch Ein Dornwald Ging1:42151641TraditionalComposed By891215Fritz NeumeyerArranged By110-4Es Kommt Ein Schiff Geladen1:00151641TraditionalComposed By891215Fritz NeumeyerArranged By110-5Und Sie Gebar Ihren Ersten Sohn (Lukas-Evangelium 2:7)0:12110-6Es Ist Ein' Ros' Entsprungen3:16151641TraditionalComposed By891215Fritz NeumeyerArranged By110-7Und Es Waren Hirten In Derselben Gegend (Lukas-Evangelium 2:8)0:08110-8Sonata In A Major For 2 Oboes D'Amore And Basso Continuo: Siziliano1:28793064Georg Philipp TelemannComposed By855186Hans-Georg RennerHans Georg RennerArranged By110-9Und Siehe, Des Herrn Engel (Lukas-Evangelium 2:9)0:11110-10Was Soll Das Bedeuten1:56151641TraditionalComposed By891215Fritz NeumeyerArranged By110-11Und Der Engel Sprach Zu Ihnen (Lukas-Evangelium 2:10-11)0:22110-12O Freude Über Freude2:30151641TraditionalComposed By891215Fritz NeumeyerArranged By110-13Und Das Habt Zum Zeichen (Lukas-Evangelium 2:12)0:09110-14Sonata In A Major For 2 Oboes D'Amore And Basso Continuo: Allegro2:02793064Georg Philipp TelemannComposed By855186Hans-Georg RennerHans Georg RennerArranged By110-15Sonata In A Major For 2 Oboes D'Amore And Basso Continuo: Larghetto1:30793064Georg Philipp TelemannComposed By855186Hans-Georg RennerHans Georg RennerArranged By110-16Vom Himmel Hoch, O Englein Kommt2:05151641TraditionalComposed By891215Fritz NeumeyerArranged By110-17Und Alsbald War Da Bei Dem Engel (Lukas-Evangelium 2:13-14)0:17110-18Concerto In D Major Op. 10 No. 6: Tempo Di MInuetto0:5495541Tomaso AlbinoniComposed By855186Hans-Georg RennerHans Georg RennerArranged By110-19Und Da Die Engel (Lukas-Evangelium 2:15-16)0:26110-20Ich Steh' An Deiner Krippen Hier2:29151641TraditionalComposed By891215Fritz NeumeyerArranged By110-21Da Zie Es Aber Gesehen Hatten (Lukas-Evangelium 2:17)0:09110-22Still, Still, Still2:53151641TraditionalComposed By891215Fritz NeumeyerArranged By110-23Und Alle, Vor Die Es Kam, Wunderten Sich Der Rede (Lukas-Evangelium 2:18-19)0:14110-24Stille Nacht, Heilige Nacht2:06595046Franz GruberComposed By632100Joseph MohrText By891215Fritz NeumeyerArranged By110-25Und Die Hirten Kehrten Wieder Um (Lukas-Evangelium 2:20)0:12110-26In Dulci Jubilo2:37856233Michael PraetoriusComposed By151641TraditionalText By891215Fritz NeumeyerArranged ByMauricio Kagel - ‘1898’1998 For Children's Voices And Instruments119084Mauricio KagelComposed By, Conductor666098Silvio ForetićConductor666090Georg NothdorfDouble Bass666093Brigitte SylvestreHarp666089Kurt SchwertsikHorn469216Christoph CaskelPercussion41715Aloys KontarskyPiano666094Armin RosinTrombone666092Adam BauerTrumpet666096Robert TucciTuba666095Gérard RuymenViola633162Saschko GawriloffViolin573116Siegfried PalmVioloncello666097Schüler Der Hauptschule Peter-Griess-Strasse, Köln-FlittardChildren from the Hauptschule Peter-Griess-Strasse, Köln-FlittardVoice [Children]111-1Satz I25:31111-2Satz II23:06111-3Musik Für Renaissance-Instrumente25:08119084Mauricio KagelConductor, Composed By4104715Collegium InstrumentaleOrchestraSteve Reich - Six Pianos / Music For Mallet Instruments, Voices And Organ112-1Six Pianos22946Steve ReichComposed By, Piano274691Bob BeckerPiano136998Glen VelezPiano298150James PreissPiano298152Russ HartenbergerPiano264406Steve ChambersPiano112-2Music For Mallet Instruments, Voices And Organ18:32561634Ben HarmsGlockenspiel136998Glen VelezGlockenspiel274691Bob BeckerMarimba298152Russ HartenbergerMarimba346387Timothy FerchenTim FerchenMarimba22946Steve ReichMarimba, Composed By298150James PreissMetallophone264406Steve ChambersOrgan657017Janice JarrettVocals298145Jay ClaytonVocals338608Joan La BarbaraJoan LaBarbaraVocalsLigeti, Nono, Boulez, Rihm - Wien Modern113-1Départ (For Mixed Chorus, Speaking Chorus And 22 Players)8:501853882Wiener Jeunesse-ChorChorus1853883Günther TheuringChorus Master502819Wolfgang RihmComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra233897Arthur RimbaudText By113-2Atmosphères (For Large Orchestra)9:01190370György LigetiComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra113-3Lontano (For Large Orchestra)12:45190370György LigetiComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra113-4Liebeslied (For Mixed Chorus And Instruments)5:041853882Wiener Jeunesse-ChorChorus1853883Günther TheuringChorus Master219565Luigi NonoComposed By, Text By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestraNotations I-IV (For Orchestra)92243Pierre BoulezComposed By368137Claudio AbbadoConductor754974Wiener PhilharmonikerOrchestra113-51. Modéré – Fantasque2:40113-64. Rythmique1:22113-73. Très Modéré3:30113-82. Très Vif. Strident2:19Philip Glass - Violin Concerto / Alfred Schnittke - Concerto Grosso No. 5Concerto For Violin And Orchestra20691Philip GlassComposed By834229Christoph von DohnányiConductor754974Wiener PhilharmonikerOrchestra359068Gidon KremerViolin114-11. ♩= 104 –♩= 1206:38114-22. ♩= C.1088:46114-33. ♩= C.150 – Coda. Poco Meno ♩=1049:30Concerto Grosso No. 5 For Violin, An Invisible Piano And Orchestra154287Alfred SchnittkeComposed By834229Christoph von DohnányiConductor754974Wiener PhilharmonikerOrchestra1553946Rainer KeuschnigPiano [Amplified, Behind The Stage]359068Gidon KremerViolin114-41. Allegretto7:46114-52. (Without Tempo Indication)5:18114-63. Allegro Vivace –6:02114-74. Lento8:28Vangelis (Evangelos Papathanassiou) - Invisible Connections115-1Invisible Connections18:307027VangelisComposed By, Arranged By, Performer115-2Atom Blaster7:427027VangelisComposed By, Arranged By, Performer115-3Thermo Vision13:197027VangelisComposed By, Arranged By, PerformerRecomposed By Max Richter: Vivaldi - The Four SeasonsRecomposed By Max Richter – Vivaldi: The Four Seasons108566Antonio VivaldiComposed By171698Max RichterComposed By [Recomposed]1739927André de RidderConductor3047002Konzerthaus Kammerorchester BerlinOrchestra406149Daniel HopeViolin116-1Spring 00:42116-2Spring 12:32116-3Spring 23:19116-4Spring 33:09116-5Summer 14:11116-6Summer 23:59116-7Summer 35:01116-8Autumn 15:42116-9Autumn 23:08116-10Autumn 31:45116-11Winter 13:01116-12Winter 22:51116-13Winter 34:39Electronic Soundscapes By Max Richter108566Antonio VivaldiComposed By171698Max RichterComposed By [Recomposed]1739927André de RidderConductor3047002Konzerthaus Kammerorchester BerlinOrchestra406149Daniel HopeViolin116-14Shadow 13:53116-15Shadow 22:30116-16Shadow 33:33116-17Shadow 42:33116-18Shadow 53:01Remixes108566Antonio VivaldiComposed By171698Max RichterComposed By [Recomposed]1739927André de RidderConductor3047002Konzerthaus Kammerorchester BerlinOrchestra406149Daniel HopeViolin116-19Spring 14:58171698Max RichterRemix116-20Summer 33:28561521Robot KochRemix3797609Electric Monk (2)Synth [Additional Modular]948160Cerebral VortexVocals [Sampled]116-21Autumn 34:071312997Fear Of TigersRemix116-22Winter 35:0023584Andy SpenceAndy Spence (NYPC)RemixJóhann Jóhannsson - OrphéeOrphée1782380Jakob Bloch JespersenBass-Baritone Vocals [TOV]2931456Jakob SoelbergBass-Baritone Vocals [TOV]282641Theatre Of VoicesChorus52220Jóhann JóhannssonComposed By, Arranged By, Orchestrated By, Piano, Electronics, Organ [Pipe], Electric Organ2793881Anthony WeedenConductor [AIR Lyndhurst]282643Paul HillierConductor [TOV]517947ACME (American Contemporary Music Ensemble)American Contemporary Music EnsembleEnsemble5261243Elenor WimanMezzo-soprano Vocals [TOV]1864252Ellen Marie ChristensenEllen Marie Brink ChristensenMezzo-soprano Vocals [TOV]2966393Kristin MuldersMezzo-soprano Vocals [TOV]2881682Signe AsmussenMezzo-soprano Vocals [TOV]534111The Lyndhurst OrchestraAIR Lyndhurst String OrchestraOrchestra2793881Anthony WeedenOrchestrated By [Additional]3476482Owen RobertsOrchestrated By [Additional]1021444Else Torp SchröderElse TorpSoprano Vocals [TOV]1656176Christopher WatsonChris WatsonTenor Vocals [TOV]5261242Paul Bentley-AngellTenor Vocals [TOV]1821777Ben Russell (4)Viola [ACME]357374Caleb BurhansViolin [ACME]3760416Yuki Numata ResnickViolin [ACME]403026Hildur GuðnadóttirVioloncello517941Clarice JensenVioloncello [ACME]117-1Flight From The City6:31117-2A Song For Europa2:34117-3The Drowned World2:21117-4A Deal With Chaos2:06117-5A Pile Of Dust4:51117-6A Sparrow Alighted Upon Our Shoulder2:27117-7Fragment I1:25117-8By The Roes, And By The Hinds Of The Field2:39117-9The Radiant City3:31117-10Fragment II2:12117-11The Burning Mountain2:46117-12De Luce Et Umbra2:29117-13Good Morning, Midnight3:18117-14Good Night, Day3:58117-15Orphic Hymn3:27Johann Wolfgang Von Goethe - Faust (Der Tragödie Erster Teil)Faust I526604Peter Gorski (2)Directed By [Recording]635057Mark LotharMusic By573251Johann Wolfgang von GoetheText By759096Paul MaletzkiVoice Actor [Alter Bauer = An Old Farmer]759102Siegfried SiegertVoice Actor [Altmayr]1224392Hans Müller-WesternhagenVoice Actor [Brander]759093Sybille BinderVoice Actor [Böser Geist = Evil Spirit]2396573Peter Esser (3)Voice Actor [Der Herr = The Lord]759104Gerhard GeislerVoice Actor [Erdgeist = Earth Spirit]635056Paul HartmannVoice Actor [Faust]759103Kurt WeitkampVoice Actor [Frosch]759094Hansgeorg LaubenthalVoice Actor [Gabriel]759099Maria AlexVoice Actor [Hexe = Witch]1224393Ursula DinkgräfeUrsula DinggräfeVoice Actor [Lieschen]635059Käthe GoldVoice Actor [Margarete]904084Elisabeth FlickenschildtVoice Actor [Marthe Schwerdtlein]1224393Ursula DinkgräfeUrsula DinggräfeVoice Actor [Meerkater = He-Ape]759098Piet ClausenVoice Actor [Meerkatze = She-Ape]410383Gustaf GründgensVoice Actor [Mephisto]756988Ullrich HauptUlrich HauptVoice Actor [Michael]759101Max EckardVoice Actor [Raphael]749188Karl VibachKarl ViebachVoice Actor [Schüler = A Student]759104Gerhard GeislerVoice Actor [Siebel]759105Walter CzaschkeVoice Actor [Stimme Von Oben = Voice From Above]759101Max EckardVoice Actor [Valentin]759095Rudolf TherkatzVoice Actor [Wagner]118-1Prolog Im Himmel = Prologue In Heaven7:00118-2Nacht (Faust-Monolog) = Night (Faust's Monologue)16:25118-3Vor Dem Tor (Osterspaziergang) = Before The City Gate (Eastertide Walk)7:07118-4Studierzimmer = The Study32:19118-5Auerbachs Keller In Leipzig = Auerbach's Cellar In Leipzig8:24119-1Hexenküche = Witches' Kitchen6:00119-2Straße = A Street3:24119-3Abend, Ein Kleines Reinliches Zimmer = Evening. A Small, Neatly-Kept Chamber7:33119-4Spaziergang = Promenade2:44119-5Der Nachbarin Haus = The Neighbour's House7:34119-6Straße = A Street2:38119-7Garten = Garden7:10119-8Ein Gartenhäuschen = A Garden Arbour0:58119-9Wald Und Höhle = Forest And Cavern4:57119-10Gretchens Stube = Gretchen's Chamber1:27119-11Marthens Garten = Martha's Garden6:13119-12Am Brunnen = By The Well2:04119-13Zwinger = By The City Wall1:46119-14Nacht, Straße Vor Gretchens Türe = Night, The Street In Front Of Gretchen's House5:46119-15Dom = Cathedral3:10119-16Trüber Tag, Feld = Dreary Day, A Field1:49119-17Kerker = Dungeon10:02Prokofiev - Peter And The Wolf - The Chamber Orchestra Of Europe / Claudio Abbado / Narrated By Sting120-1March In B Flat Major Op. 99 / Allegro2:29834022Simon Wills (2)Arranged By621694Sergei ProkofievComposed By368137Claudio AbbadoConductor848261The Chamber Orchestra Of EuropeChamber Orchestra of EuropeOrchestraPeter And The Wolf Op. 6713961StingAdapted By (Text), Narrator621694Sergei ProkofievComposed By, Text By368137Claudio AbbadoConductor848261The Chamber Orchestra Of EuropeChamber Orchestra of EuropeOrchestra120-2Let Me Tell You A Story2:39120-3Early One Morning Peter Opened The Gate... / Andantino0:56120-4On A Branch Of A Big Tree Sat A Little Bird, Peter's Friend / Allegro – Andantino, Come Prima1:26120-5Just Then A Duck Came Waddling Round / L'Istesso Tempo2:11120-6Suddenly Something Caught Peter's Attention: He Noticed A Cat / Moderato – Allegro, Ma Non Troppo – Moderato1:44120-7Grandfather Came Out / Poco Più Andante – Andantino, Come Prima – Andante2:14120-8No Sooner Had Peter Gone, Than A Big Grey Wolf Came Out Of The Forest / Andante Molto – Nervoso – Allegro – Meno Mosso – Andante – Allegretto – Moderato4:13120-9Peter, In The Meantime, Stood Behind The Closed Gate / Andantino, Come Prima – Vivo – Andante Molto – Vivo – Andante2:28120-10Meanwhile, Peter Made A Lasso With His Rope, Carefully Letting It Down / Poco Meno Mosso – Moderato (Meno Mosso)1:36120-11Just Then... Out Of The Woods Came The Hunters / Allegro Moderato – Andante – Moderato – Poco Più Mosso (Allegro Moderato) – Sostenuto – L'Istesso Tempo – Poco Più Mosso – Andante – Allegro6:37120-12Overture On Hebrew Themes Op. 34b / Un Poco Allegro7:53621694Sergei ProkofievComposed By368137Claudio AbbadoConductor848261The Chamber Orchestra Of EuropeChamber Orchestra of EuropeOrchestra1006070Stefan VladarPianoSymphony No. 1 In D Major Op. 25 “Classical Symphony”368137Claudio AbbadoConductor848261The Chamber Orchestra Of EuropeChamber Orchestra of EuropeOrchestra120-131. Allegro4:14120-142. Larghetto3:44120-153. Gavotta. Non Troppo Allegro1:23120-164. Finale. Molto Vivace3:482018 And Beyond (Bonus CD)Piano Concerto No. 1 In F Sharp Minor Op. 1206280Sergei RachmaninoffSergey RachmaninovComposed By1584830Yannick Nézet-SéguinConductor27519The Philadelphia OrchestraOrchestra3694054Daniil TrifonovPiano121-11. Vivace13:08Piano Quintet In A Major Op. 81268272Antonín DvořákComposed By848555Emerson String QuartetEnsemble834612Yevgeny KissinEvgeny KissinPiano121-22. Dumka15:28Symphony No. 11 In G Minor Op. 103 “The Year 1905”115461Dmitri ShostakovichComposed By1554740Andris NelsonsConductor395913Boston Symphony OrchestraOrchestra121-34. The Tocsin (Allegro Non Troppo)14:10Symphony No. 8 In E Flat Major “Symphony Of A Thousand” / Part One (Conclusion)1092538John RelyeaBass Vocals2277732Markus WerbaBass-Baritone Vocals2028530Choral Arts Society of WashingtonThe Choral Arts Society of WashingtonChorus211957The American BoychoirChorus2381502Westminster Symphonic ChoirChorus6743052Fernando Malvar-RuizChorus Master [ABC]5505322Scott Tucker (2)Chorus Master [CASW]3846754Joe Miller (17)Chorus Master [WSC]239236Gustav MahlerComposed By1584830Yannick Nézet-SéguinConductor3190270Elizabeth Bishop (2)Contralto Vocals2272661Mihoko FujimuraContralto Vocals27519The Philadelphia OrchestraOrchestra7991315Angela MeadeSoprano Vocals3421701Erin WallSoprano Vocals3258973Anthony Dean GriffeyTenor Vocals121-4Accende Lumen Sensibus4:44121-5Veni, Creator Spiritus4:20121-6Gloria Sit Patri Domino2:33Der Ring Des Nibelungen - Berliner Philharmoniker - KarajanDas Rheingold1400010Robert KernsBaritone Vocals [God: Donner]833168Dietrich Fischer-DieskauBaritone Vocals [God: Wotan]834073Karl RidderbuschBass Vocals [Giant: Fafner]861487Martti TalvelaBass Vocals [Giant: Fasolt]837502Zoltan KélémenZoltan KelemenBass-Baritone Vocals [Nibelung: Alberich]294746Richard WagnerComposed By283122Herbert von KarajanConductor1057451Oralia DominguezMezzo-soprano Vocals [Goddess: Erda]851312Josephine VeaseyMezzo-soprano Vocals [Goddess: Fricka]839080Anna ReynoldsMezzo-soprano Vocals [Rhine Maiden: Flosshilde]260744Berliner PhilharmonikerOrchestra2458409Simone MangelsdorffSoprano Vocals [Goddess: Freia]459665Edda MoserSoprano Vocals [Rhine Maiden: Wellgunde]303060Helen DonathSoprano Vocals [Rhine Maiden: Woglinde]867659Donald GrobeTenor Vocals [God: Froh]852345Gerhard StolzeTenor Vocals [God: Loge]867660Erwin WohlfahrtTenor Vocals [Nibelung: Mime]BR1A-1Vorspiel = Prelude4:36BR1A-2Erste Szene = Scene One: Weia! Waga! Woge, Du Welle! (Woglinde, Wellgunde, Flosshilde)1:13BR1A-3He He! Ihr Nicker! (Alberich, Woglinde, Wellgunde, Flosshilde)1:18BR1A-4Garstig Glatter Glitschriger Glimmer! (Alberich, Woglinde, Wellgunde, Flosshilde)7:19BR1A-5Lugt, Schwestern! Die Weckerin Lacht In Den Grund (Woglinde, Wellgunde, Flosshilde, Alberich)4:08BR1A-6Nur Wer Der Minne Macht Entsagt (Woglinde, Wellgunde, Flosshilde)1:40BR1A-7Der Welt Erbe Gewänn' Ich Zu Eigen Durch Dich? (Alberich, Woglinde, Wellgunde, Flosshilde)1:43BR1A-8Haltet Den Räuber! (Flosshilde, Wellgunde, Woglinde)3:22BR1A-9Zweite Szene = Scene Two: Einleitung = Introduction1:20BR1A-10Wotan! Gemahl! Erwache! (Fricka, Wotan)6:26BR1A-11So Schirme Sie Jetzt (Fricka, Freia, Wotan)1:44BR1A-12Sanft Schloss Schlaf Dein Aug (Fasolt, Wotan)2:21BR1A-13Was Sagst Du? Ha, Sinnst Du Verrat? (Fasolt, Fafner, Wotan)4:21BR1A-14Du Da, Folge Uns! (Fafner, Freia, Froh, Donner, Fasolt, Wotan, Fricka)1:36BR1A-15Endlich Loge! (Wotan, Loge, Fricka, Froh, Donner, Fafner, Fasolt)3:33BR1A-16Immer Ist Undank Loges Lohn (Loge, Wotan, Fasolt, Fafner, Fricka)6:57BR1A-17Ein Runenzauber Zwingt Das Gold Zum Reif (Loge, Donner, Wotan, Froh, Fricka)3:11BR1A-18Hör, Wotan, Der Harrenden Wort! (Fafner, Wotan, Fasolt, Freia)1:52BR1A-19Schwester! Bruder! Rettet! Helft! (Freia, Froh, Donner, Loge, Fricka)4:36BR1A-20Wotan! Gemahl, Unsel'ger Mann! (Fricka, Wotan, Loge, Donner, Froh)1:56BR1A-21Verwandlungsmusic = Transformation Music2:45BR1A-22Dritte Scene = Scene Three: Hehe! Hehe! Hieher! Hieher! (Alberich, Mime)2:44BR1A-23Nibelheim Hier! (Loge, Mime, Wotan)5:28BR1A-24Nehmt Euch In Acht! Alberich Naht (Mime, Wotan, Alberich, Loge)1:40BR1A-25Zittre Und Zage, Gezähmtes Heer (Alberich, Wotan, Loge)3:54BR1A-26Die In Linder Lüfte Wehn Da Oben Ihr Lebt (Alberich, Wotan, Loge)6:43BR1A-27Ohe! Ohe! Schreckliche Schlange (Loge, Wotan, Alberich)2:29BR1A-28Dort, Die Kröte, Greife Zie Rasch! (Loge, Alberich)4:15BR1A-29Vierte Szene = Scene Four: Da Vetter, Sitze Du Fest! (Loge, Alberich, Wotan)2:21BR1A-30Wohlan, Die Niblungen Rief Ich Mir Nah (Alberich, Wotan)3:00BR1A-31Gezahlt Hab' Ich: Nun Lasst Mich Ziehn! (Alberich, Loge, Wotan)5:17BR1A-32Ist Er Gelöst? (Loge, Wotan, Alberich)4:08BR1A-33Lauschtest Du Seinem Liebesgruß? (Loge, Wotan, Froh, Donner, Fricka)3:07BR1A-34Lieblichste Schwester, Süßeste Lust! (Fricka, Fasolt, Wotan)2:46BR1A-35Gepflanzt Sind Die Pfähle nach Pfandes Maß (Fafner, Wotan, Loge, Froh, Fricka, Donner, Fasolt, Freia)5:55BR1A-36Weiche, Wotan, Weiche! (Erda, Wotan, Fricka, Froh)5:05BR1A-37Soll Ich Sorgen Und Fürchten (Wotan, Fricka, Froh, Donner, Freia)2:27BR1A-38Halt, Du Gieriger! Gönne Mir Auch Was! (Fasolt, Fafner, Loge)1:11BR1A-39Nun Blinzle Nach Freias Blick (Fafner, Wotan, Loge, Fricka, Donner)3:57BR1A-40He Da! He Da! He Do! Zu Mir, Du Gedüft! (Donner)2:10BR1A-41Bruder, Hierher! Weise Der Brücke Den Weg! (Donner, Froh)2:10BR1A-42Abendlich Strahlt Der Sonne Auge (Wotan)1:46BR1A-43So Grüß' Ich Die Burg (Wotan, Fricka, Loge)2:06BR1A-44Rheingold! Rheingold! Reines Gold! (Woglinde, Wellgunde, Flosshilde, Wotan, Loge)3:21Die Walküre861487Martti TalvelaBass Vocals [Hunding]915657Thomas Stewart (2)Bass-Baritone Vocals [Wotan]294746Richard WagnerComposed By283122Herbert von KarajanConductor924653Lilo BrockhausContralto Vocals [Valkyrie: Schwertleite]851312Josephine VeaseyMezzo-soprano Vocals [Fricka]861483Cvetka AhlinMezzo-soprano Vocals [Valkyrie: Grimgerde]924657Helga JenckelMezzo-soprano Vocals [Valkyrie: Rossweisse]617407Barbro EricsonMezzo-soprano Vocals [Valkyrie: Siegrune]924652Ingrid StegerMezzo-soprano Vocals [Valkyrie: Waltraute]260744Berliner PhilharmonikerOrchestra865654Régine CrespinSoprano Vocals [Brünnhilde]833076Gundula JanowitzSoprano Vocals [Sieglinde]924654Liselotte RebmannSoprano Vocals [Valkyrie: Gerhilde]924651Daniza MastilovicDanica MastilovićSoprano Vocals [Valkyrie: Helmwige]924656Carlotta OrdassySoprano Vocals [Valkyrie: Ortlinde]882018Jon VickersTenor Vocals [Siegmund]BR1B-1Erster Aufzug = Act One: Vorspiel = Prelude3:27BR1B-2Wes Herd Dies Auch Sei, Hier Muß Ich Rasten (Siegmund, Sieglinde)8:25BR1B-3Einen Unseligen Labtest Du (Siegmund, Sieglinde)3:50BR1B-4Müd Am Herd Fand Ich Den Mann (Sieglinde, Hunding, Siegmund)5:12BR1B-5Friedmund Darf Ich Nicht Heißen (Siegmund, Hunding, Sieglinde)6:19BR1B-6Die So Leidig Los Dir Beschied (Hunding, Siegmund, Sieglinde)4:42BR1B-7Ich Weiß Ein Wildes Geschlecht (Hunding)5:54BR1B-8Ein Schwert Verhieß Mir Der Vater (Siegmund, Sieglinde)6:21BR1B-9Schläfst Du, Gast? (Sieglinde, Siegmund)6:54BR1B-10Winterstürme Wichen Dem Wonnemond (Siegmund)3:08BR1B-11Du Bist Der Lenz, Nach Dem Ich Verlangte (Sieglinde)2:03BR1B-12O Süßeste Wonne! Seligstes Weib! (Siegmund, Sieglinde)6:24BR1B-13War Wälse Dein Vater, Und Bist Du Ein Wälsung (Sieglinde, Siegmund)2:01BR1B-14Siegmund, Den Wälsung, Siehst Du, Weib! (Siegmund, Sieglinde)2:37BR1B-15Zweiter Aufzug = Act Two: Vorspiel = Prelude, Nun Zäume Dein Roß (Wotan)2:37BR1B-16Hojotoho (Brünnhilde)2:18BR1B-17Der Alte Sturm, Die Alte Müh'! (Wotan, Fricka)4:56BR1B-18So Ist Es Denn Aus Mit Den Ewigen Göttern (Fricka, Wotan)9:18BR1B-19Was Verlangst Du? (Wotan, Fricka, Brünnhilde)2:28BR1B-20Deiner Ew'gen Gattin Heilige Ehre (Fricka, Wotan)3:44BR1B-21Schlimm, Fürcht Ich, Schloß Der Streit (Brünnhilde, Wotan)10:38BR1B-22Ein Andres Ist's; Achte Es Wohl (Wotan, Brünnhilde)6:40BR1B-23So Nimmst Du Von Siegmund Den Sieg? (Brünnhilde, Wotan)4:07BR1B-24So Nimm Meinen Segen, Niblungen-Sohn! (Wotan, Brünnhilde)4:53BR1B-25So Sah Ich Siegvater Nie (Brünnhilde)3:12BR1B-26Raste Nun Hier; Gönne Dir Ruh! (Siegmund, Sieglinde)12:11BR1B-27Siegmund! Sieh Auf Mich! (Brünnhilde, Siegmund)10:42BR1B-28Do Sahest Der Walküre Sehrenden Blick (Brünnhilde, Siegmund)4:40BR1B-29So Jung Und Schön Erschimmerst Du Mir (Siegmund, Brünnhilde)4:19BR1B-30Zauberfest Bezähmt Ein Schlaf Der Holden Schmerz Und Harm (Siegmund)3:04BR1B-31Der Dort Mich Ruft, Rüste Sich Nun (Siegmund, Sieglinde, Hunding, Brünnhilde)3:33BR1B-32Zu Roß, Daß Ich Dich Rette! (Brünnhilde, Wotan)3:35BR1B-33Dritter Aufzug = Act Three: Walkürenritt = The Ride Of The Valkyries, Hojotoho! Hojotoho! (Gerhilde, Helmwige, Waltraute, Schwertleite, Ortlinde, Siegrune, Grimgerde, Rossweisse)8:11BR1B-34Schützt Mich Und Helft In Höchster Not! (Brünnhilde, The Eight Valkyries)3:11BR1B-35Nicht Sehre Dich Sorge Um Mich (Sieglinde, Brünnhilde, Waltraute, Ortlinde, The Other Six Valkyries, Wotan)6:48BR1B-36Wo Ist Brünnhild', Wo Die Verbrecherin? (Wotan, The Eight Valkyries)3:55BR1B-37Hier Bin Ich, Vater: Gebiete Die Strafe! (Brünnhilde, Wotan, The Eight Valkyries)8:54BR1B-38Einleitung = Introduction1:22BR1B-39War Es So Schmälich, Was Ich Verbrach? (Brünnhilde, Wotan)9:17BR1B-40So Tatest Du, Was So Gern Zu Tun Ich Begehrt (Wotan, Brünnhilde)9:06BR1B-41Nicht Streb, O Maid, Den Mut Mir Zu Stören (Wotan, Brünnhilde)4:36BR1B-42Leb Wohl, Du Kühnes, Herrliches Kind! (Wotan)5:07BR1B-43Der Augen Leuchtendes Paar (Wotan)6:57BR1B-44Loge, Hör! Lausche Hieher! (Wotan)1:22BR1B-45Feuerzauber = Magic Fire Music3:49Siegfried834073Karl RidderbuschBass Vocals [Fafner]837502Zoltan KélémenZoltan KelemenBass-Baritone Vocals [Alberich]915657Thomas Stewart (2)Bass-Baritone Vocals [Der Wanderer]294746Richard WagnerComposed By283122Herbert von KarajanConductor1057451Oralia DominguezMezzo-soprano Vocals [Erda]260744Berliner PhilharmonikerOrchestra865660Helga DerneschSoprano Vocals [Brünnhilde]1138264Catherine GayerSoprano Vocals [Waldvogel = Wood Bird]852345Gerhard StolzeTenor Vocals [Mime]1249309Jess ThomasTenor Vocals [Siegfried]BR1C-1Erster Aufzug = Act One: Vorspiel = Prelude4:45BR1C-2Zwangvolle Plage! Müh Ohne Zweck! (Mime)3:38BR1C-3Hoiho! Hoiho! Hau Ein! Hau Ein! (Siegfried, Mime)4:03BR1C-4Als Zullendes Kind Zog Ich Dich Auf (Mime)4:35BR1C-5Es Sangen Die Vöglein So Selig Im Lenz (Mime, Siegfried)4:32BR1C-6Einst Lag Wimmernd Ein Weib (Mime, Siegfried)8:11BR1C-7Heil Dir, Weiser Schmied! (Wanderer, Mime)4:59BR1C-8Wie Werd' Ich Den Lauernden Los? (Mime, Wanderer)8:44BR1C-9Nun Rede, Weiser Zwerg (Wanderer, Mime)3:32BR1C-10Nun, Ehrlicher Zwerg, Sag Mir Zum Ersten (Wanderer, Mime)5:22BR1C-11Dreimal Sollst Du Fragen (Wanderer)2:26BR1C-12Verfluchtes Licht! Was Flammt Dort Die Luft? (Mime)1:39BR1C-13Bist Du Es, Kind? Kommst Du Allein? (Mime, Siegfried)3:07BR1C-14Fühltest Du Nie Im Finstren Wald (Mime, Siegfried)5:07BR1C-15Hättest Du Fleißig Die Kunst Gepflegt (Mime, Siegfried)3:12BR1C-16Notung! Notung! Neidliches Schwert! (Siegfried, Mime)8:25BR1C-17Hoho! Hoho! Hohei! Schmiede, Mein Hammer, Ein Hartes Schwert! (Siegfried, Mime)3:23BR1C-18Den Der Bruder Schuf, Den Schimmernden Reif (Mime, Siegfried)2:51BR1C-19Zweiter Aufzug = Act Two: Vorspiel = Prelude5:16BR1C-20In Wald Und Nacht Vor Neidhöhl' Halt' Ich Wacht (Alberich)2:40BR1C-21Wer Naht Dort Schimmernd Im Schatten? (Alberich, Wanderer)8:19BR1C-22Mit Mime Räng' Ich Allein Um Den Ring? (Alberich, Wander, Fafner)7:01BR1C-23Wir Sind Zur Stelle! Bleib Hier Stehn! (Mime, Siegfried)6:55BR1C-24Daß Der Mein Vater Nicht Ist (Siegfried) / Waldweben = Forest Murmurs9:46BR1C-25Siegfrieds Hornruf = Siegfried's Horn Call / Haha! Da Hätte Mein Lied Mir Was Liebes Erblasen! (Siegfried, Fafner)5:13BR1C-26Wer Bist Du, Kühner Knabe, Der Das Herz Mir Traf? (Fafner, Siegfried)4:48BR1C-27Ist Mir Doch Fast, Als Sprächen Die Vöglein Zu Mir! (Siegfried, Waldvogel)1:48BR1C-28Wohin Schleichst Du So Eilig Und Schlau (Alberich, Mime, Siegfried, Waldvogel)4:59BR1C-29Willkommen, Siegfried! (Mime, Siegfried, Alberich)6:37BR1C-30Neides Zoll Zahlt Notung (Siegfried)3:10BR1C-31Heiß Ward Mir Von Der Harten Last! (Siegfried)3:29BR1C-32Nun Sing! Ich Lausche Dem Gesang (Siegfried, Waldvogel)4:01BR1C-33Dritter Aufzug = Act Three / Vorspiel = Prelude2:14BR1C-34Wache, Wala! Wala! Erwach! (Wanderer)2:06BR1C-35Stark Ruft Das Lied (Erda, Wanderer)2:53BR1C-36Mein Schlaf Ist Träumen (Erda, Wanderer)4:34BR1C-37Wirr Wird Mir, Seit Ich Erwacht (Erda, Wanderer)3:07BR1C-38Weißt Du, Was Wotan Will? (Der Wanderer)4:23BR1C-39Dort Seh' Ich Siegfried Nahn (Wanderer, Siegfried)3:37BR1C-40Was Lachst Du Mich Aus? (Siegfried, Wanderer)4:01BR1C-41Bleibst Du Mir Stumm, Störrischer Wicht? (Siegfried, Wanderer)4:47BR1C-42Orchesterzwischenspiel = Orchestral Interlude5:53BR1C-43Selige Öde Auf Sonniger Höh'! (Siegfried)3:59BR1C-44Das Ist Kein Mann! (Siegfried)7:15BR1C-45Brünnhildes Erwachen = Brünnhilde's Awakening2:17BR1C-46Heil Dir, Sonne! Heil Dir, Licht (Brünnhilde, Siegfried)4:05BR1C-47Siegfried! Siegfried! Seliger Held! (Brünnhilde, Siegfried)7:05BR1C-48Dort Seh' Ich Grane, Mein Selig Roß (Brünnhilde, Siegfried)6:02BR1C-49Sangst Du Mir Nicht, Dein Wissen Sei Das Leuchten Der Liebe Zu Mir? (Siegfried, Brünnhilde)2:26BR1C-50Ewig War Ich, Ewig Bin Ich (Brünnhilde)4:26BR1C-51Dich Lieb' Ich: O Liebtest Mich Du! (Siegfried, Brünnhilde)5:44BR1C-52Lachend Muß Ich Dich Lieben (Brünnhilde, Siegried)2:25Götterdämmerung834073Karl RidderbuschBass Vocals [Hagen]837502Zoltan KélémenZoltan KelemenBass-Baritone Vocals [Alberich]915657Thomas Stewart (2)Bass-Baritone Vocals [Gunther]850906Chor der Deutschen Oper BerlinChorus836798Walter Hagen-GrollChorus Master294746Richard WagnerComposed By283122Herbert von KarajanConductor1417030Lili ChookasianContralto Vocals [First Norn]839080Anna ReynoldsMezzo-soprano Vocals [Rhine Maiden: Flosshilde]833554Christa LudwigMezzo-soprano Vocals [Second Norn]833554Christa LudwigMezzo-soprano Vocals [Waltraute]260744Berliner PhilharmonikerOrchestra865660Helga DerneschSoprano Vocals [Brünnhilde]833076Gundula JanowitzSoprano Vocals [Gutrune]459665Edda MoserSoprano Vocals [Rhine Maiden: Wellgunde]924654Liselotte RebmannSoprano Vocals [Rhine Maiden: Woglinde]1500212Catarina LigendzaSoprano Vocals [Third Norn]2281098Helge BriliothTenor Vocals [Siegfried]BR1D-1Prolog = Prologue: Einleitung = Introduction2:09BR1D-2Welch Licht Leuchtet Dort? (Norns)17:16BR1D-3Orchesterzwischenspiel: Tagesanbruch = Orchestral Interlude: Daybreak3:26BR1D-4Zu Neuen Taten, Teurer Helde, Wie Liebt' Ich Dich, Ließ Ich Dich Nicht? (Brünnhilde)2:32BR1D-5Mehr Gabst Du, Wunderfrau, Als Ich Zu Wahren Weiß (Siegfried, Brünnhilde)9:53BR1D-6Orchesterzwischenspiel: Siegfrieds Rheinfahrt = Orchestral Interlude: Siegfried's Rhine Journey5:05BR1D-7Erster Aufzug = Act One: Nun Hör, Hagen, Sage Mir, Held (Gunther, Hagen, Gutrune)6:04BR1D-8Was Weckst Du Zweifel Und Zwist! (Gunther, Hagen, Gutrune)4:34BR1D-9Vom Rhein Her Tönt Das Horn (Gunther, Hagen, Siegfried)2:29BR1D-10Heil! Siegfried, Teurer Held! (Hagen, Siegfried, Gunther)3:03BR1D-11Begrüße Froh, Oh Held, Die Halle Meines Vaters (Gunther, Siegfried, Hagen)3:56BR1D-12Wilkommen, Gast, In Gibichs Haus! (Gutrune, Siegfried, Gunther)4:04BR1D-13Hast Du, Gunther, Ein Weib? (Siegfried, Gunther)3:41BR1D-14Blut-Brüderschaft Schwöre Ein Eid! (Siegfried, Gunther, Hagen, Gutrune)7:02BR1D-15Hier Sitz' Ich Zur Wacht (Hagen)4:48BR1D-16Orchesterzwischenspiel = Orchestral Interlude6:01BR1D-17Altgewohntes Geräusch Raunt Meinem Ohr Die Ferne (Brünnhilde, Waltraute)8:15BR1D-18Seit Er Von Dir Geschieden, Zur Schlacht Nicht Mehr Schickte Uns Wotan (Waltraute)9:37BR1D-19Da Sann Ich Nach: Von Seiner Seite Durch Stumme Reihen Stahl Ich Mich Fort (Waltraute, Brünnhilde)8:01BR1D-20Blitzend Gewölk, Vom Wind Getragen, Stürme Dahin (Brünnhilde, Siegfried)9:40BR1D-21Jetz Bist Du Mein, Brünnhilde, Gunthers Braut (Siegfried, Brünnhilde)3:11BR1D-22Zweiter Aufzug = Act Two: Vorspiel = Prelude3:17BR1D-23Schläfst Du, Hagen, Mein Sohn? (Alberich, Hagen)9:03BR1D-24Orchesterzwischenspiel = Orchestral Interlude / Hoiho, Hagen! Müder Mann! (Siegfried, Hagen, Gutrune)7:12BR1D-25Hoiho! Hoihohoho! Ihr Gibichsmannen (Hagen, Vassals)8:56BR1D-26Heil Dir, Gunther! (Vassals, Gunther)1:07BR1D-27Brünnhild' Die Hehrste Frau (Gunther, Vassals)3:30BR1D-28Was Ist Ihr? Ist Sie Entrückt? (Vassals, Siegfried, Brünnhilde, Hagen, Gunther, Gutrune, Women)8:47BR1D-29Achtest Du So Der Eignen Ehre? (Siegfried, Brünnhilde, Women, Gunther, Gutrune, Vassals)3:21BR1D-30Helle Wehr! Heilige Waffe! (Siegfried, Brünnhilde, Vassals)7:53BR1D-31Welches Unholds List Liegt Hier Verhohlen? (Brünnhilde)8:28BR1D-32Dir Hilft Kein Hirn, Dir Hilft Keine Hand (Hagen, Gunther, Brünnhilde)4:04BR1D-33Muß Sein Tod Sie Betrüben, Verhehlt Sei Ihr Die Tat (Hagen, Gunther, Brünnhilde)2:46BR1D-34Dritter Aufzug = Act Three: Vorspiel = Prelude3:00BR1D-35Frau Sonne Sendet Lichte Strahlen (Woglinde, Wellgunde, Flosshilde)3:12BR1D-36Ich Höre Sein Horn (Woglinde, Wellgunde, Flosshilde, Siegfried)4:15BR1D-37Was Leid' Ich Doch Das Karge Lob? (Siegfried, Flosshilde, Woglinde, Wellgunde)9:40BR1D-38Hoiho! ... Finden Wir Endlich, Wohin Du Flogest (Hagen, Siegfried, Gunther, Vassals)6:28BR1D-39Mime Hieß Ein Mürrischer Zwerg (Siegfried, Hagen, Vassels)8:06BR1D-40Was Hör' Ich! (Gunther, Hagen, Vassals)2:14BR1D-41Brünnhilde, Heilige Braut! (Siegfried)4:07BR1D-42Orchesterzwischenspiel: Trauermarsch = Orchestral Interlude: Funeral March8:30BR1D-43War Das Sein Horn? (Gutrune, Hagen, Gunther)7:46BR1D-44Schweigt Eures Jammers Jauchzenden Schwall (Brünnhilde, Gutrune)3:37BR1D-45Starke Scheite Schichtet Mir Dort (Brünnhilde)9:43BR1D-46Mein Erbe Nun Nehm' Ich Zu Eigen (Brünnhilde)2:49BR1D-47Fliegt Heim, Ihr Raben! (Brünnhilde)3:53BR1D-48Züruck Vom Ring! (Hagen)4:52107525Deutsche Grammophon GmbH14Copyright (c) + +20176Organ DonorsUltra USBAIFFMP3WAVCompilationPartially MixedSpecial EditionElectronicUK2020-11-12This stick was part of the Ultra and Ultra USB pledge on Indiegogo, where Organ Donors hosted a crowdfunding campaign to launch their new album 'Ultrasound'. The Ultra Pledge contained: + +- Ultra USB (All Digi Content) (this release) +- Ultrasound Limited Edition Double Vinyl LP (see: [r16569180]) +- Ultrasound double CD (see: [r16568820]) +- Ultrasound T-Shirt +- Insert / poster with the names of all the Ultra pledgers + +According to the Indiegogo campaign page should also contain the following items but were not included when the release was shipped: + +- Ultrasound Sticker Pack +- Limited Edition Slipmats +- Ultrasound Wrist Band +- Ultrasound Fridge Magnet +- Skype Call From The Donors + +The Ultra USB was delivered in a black tin can, with the Ultrasound logo printed on it. + +Folder 1.4 Contains .JPG files of the Ultrasound album covers. +Folders 8.1, 8.2.1.1, 8.2.4.1, 8.2.6.1, 8.2.8.1, 8.2.9.1, 8.2.13.1, 8.2.14.1, 8.2.15.1 contains MIDI files. +Folder 8.7.1 contain the artwork for the 'Ket is For Horses' releases. +Folder 8.7.2.1 contains also artwork and a .zip containing all the remix competition samples. +Folder 8.3.3.4.1 contains several empty subfolders and folders with non audio files. +Folder 9 contains several subfolders with photos and flyers. + +Needs Vote0Folder 1: Ultrasound Album ContentFolder 1.1: Ultrasound Continuous Album MixesWAV-1Ultrasound - CD1 - Full Album1:12:2320176Organ DonorsWAV-2Ultrasound - CD2 - Full Album1:19:1320176Organ DonorsFolder 1.2: Ultrasound Masters DigitalWAV-1Wasted20176Organ DonorsWAV-2Eat Your Mind20176Organ DonorsWAV-3Rewind Selecta 20176Organ Donors3424895Sonny Wilson (4)FeaturingWAV-4No Longer In Control20176Organ DonorsWAV-5Off Base20176Organ DonorsWAV-6Faux Embrace20176Organ Donors6464534Xander & The KeysFeaturingWAV-7Fuck Life20176Organ DonorsWAV-8Audio Surgery Helpline20176Organ Donors6033384Juxtaposition (3)FeaturingWAV-9Like A Hawk20176Organ DonorsWAV-10Laughing Gas20176Organ DonorsWAV-11Tribalism20176Organ DonorsWAV-12Back Stabber20176Organ DonorsWAV-13Disco Biscuits20176Organ Donors6678197The Score (9)FeaturingWAV-141000 Lullabies20176Organ DonorsWAV-15Ultrasound20176Organ DonorsFolder 1.3: Ultrasound Remix PacksFolder 1.3.1 Organ Donors - Wasted (Sample Pack - 126 BPM)WAV-1ODUWasted - 303 220176Organ DonorsWAV-2ODUWasted - 303 320176Organ DonorsWAV-3ODUWasted - 303 420176Organ DonorsWAV-4ODUWasted - BASS20176Organ DonorsWAV-5ODUWasted - FILL 120176Organ DonorsWAV-6ODUWasted - FX20176Organ DonorsWAV-7ODUWasted - OFF BASS20176Organ DonorsWAV-8ODUWasted- CRASH20176Organ DonorsWAV-9ODUWasted- PERCUSSION 120176Organ DonorsWAV-10ODUWasted- PERCUSSION 220176Organ DonorsWAV-11ODUWasted- RIDE 220176Organ DonorsWAV-12ODUWasted- RIDE 320176Organ DonorsWAV-13ODUWasted- RIDE20176Organ DonorsWAV-14ODUWasted- RISER 120176Organ DonorsWAV-15ODUWasted- RISER 220176Organ DonorsWAV-16ODUWasted- RISER 320176Organ DonorsWAV-17ODUWasted- RISER 420176Organ DonorsWAV-18ODUWasted- RISER 520176Organ DonorsWAV-19ODUWasted- STAB 120176Organ DonorsWAV-20ODUWasted- STAB 220176Organ DonorsWAV-21ODUWasted- STAB 320176Organ DonorsWAV-22ODUWasted- STAB 420176Organ DonorsWAV-23ODUWasted- STAB 520176Organ DonorsWAV-24ODUWasted- STAB 620176Organ DonorsWAV-25ODUWasted- STAB 720176Organ DonorsWAV-26ODUWasted- VOCAL STEM20176Organ DonorsWAV-27ODUWasted-303120176Organ DonorsWAV-28ODUWasted-KICK- CLAP20176Organ DonorsWAV-29ODUWasted-KICK20176Organ DonorsWAV-30ODUWasted-KICK-SNARE20176Organ DonorsFolder 1.3.2: Organ Donors - Eat Your Mind (Sample Pack - 133BPM)AIF-1Crash20176Organ DonorsAIF-2Drum Fill 120176Organ DonorsAIF-3Drum Fill 220176Organ DonorsAIF-4Kick Clap 120176Organ DonorsAIF-5Kick Loop20176Organ DonorsAIF-6Kick Snare 1 v220176Organ DonorsAIF-7Kick Snare 120176Organ DonorsAIF-8Loop 120176Organ DonorsAIF-9Ride 120176Organ DonorsAIF-10Riser 120176Organ DonorsAIF-11Riser Snare Build 120176Organ DonorsAIF-12Stab FX 120176Organ DonorsAIF-13Stab FX 220176Organ DonorsAIF-14Stab FX 320176Organ DonorsAIF-15Stab FX 420176Organ DonorsAIF-16Stab FX 520176Organ DonorsAIF-17Stab FX 620176Organ DonorsAIF-18Stab FX 720176Organ DonorsAIF-19Stab FX 820176Organ DonorsAIF-20Stab FX 920176Organ DonorsAIF-21Sub Bass 120176Organ DonorsAIF-22Sub Bass 220176Organ DonorsFolder 1.3.3 - Organ Donors - Rewind Selecta (Sample Pack)Folder 1.3.3.1 Fills & StabsWAV-109_Fill_In_2_127_BPM_Amin20176Organ DonorsWAV-224_DrumFill20176Organ DonorsWAV-3Bassjackers_-_Higher_Place_Fill__A_20176Organ DonorsWAV-4DKFH_kit3_break_fill_short_12620176Organ DonorsWAV-5DKFH_kit3_drop_fill_short_2_12620176Organ DonorsWAV-6ES_Drums_Fill_01_Am20176Organ DonorsWAV-7ES_Fill_Drums_01_Am20176Organ DonorsWAV-8FHB_Kit1_Fills_125_A_minor20176Organ DonorsWAV-9FMD_Kit2_Fills_128_A_minor20176Organ DonorsWAV-10FMD_Kit4_Fills_125_A_minor20176Organ DonorsWAV-11Kit_2_HS_Snare_Fill_Am_15020176Organ DonorsWAV-12Long_Fill20176Organ DonorsAIF-1NEW DROP STAB 120176Organ DonorsAIF-2NEW DROP STAB 220176Organ DonorsAIF-3NEW STAB 120176Organ DonorsAIF-4NEW STAB 220176Organ DonorsWAV-13NO_MANA_synth_line_bass_fill_03_128_Am20176Organ DonorsWAV-14PL_UM6_02_Drum_Fill_11920176Organ DonorsWAV-15SFH_kit5_drop_fill_12820176Organ DonorsWAV-16THE_GLITCH_MOB_mind_of_a_beast_drum_fill_2_7220176Organ DonorsWAV-17THE_GLITCH_MOB_mind_of_a_beast_drum_fill_7_7220176Organ DonorsWAV-18THE_GLITCH_MOB_mind_of_a_beast_drum_fill_8_7220176Organ DonorsWAV-19THE_GLITCH_MOB_mind_of_a_beast_drum_fill_11_7220176Organ DonorsWAV-20THE_GLITCH_MOB_mind_of_a_beast_drum_fill_12_7220176Organ DonorsWAV-21VFB_kit4_drop_fill_14520176Organ DonorsWAV-22VT_kit1_brake_fill_long_14520176Organ DonorsFolder 1.3.3.2 Vocals & Dub SoundsWAV-1bbbbla 120176Organ DonorsWAV-2bbbbla 220176Organ DonorsWAV-3blllla pitch up 220176Organ DonorsWAV-4blllla pitch up 320176Organ DonorsWAV-5blllla pitch up 420176Organ DonorsWAV-6blllla pitch up 520176Organ DonorsWAV-7blllla pitch up20176Organ DonorsWAV-8flashing lights20176Organ DonorsWAV-9give these people what they want 20176Organ DonorsWAV-10long rewind selecta20176Organ DonorsWAV-11oooh yeah eh dry20176Organ DonorsWAV-12oooh yeah eh20176Organ DonorsWAV-13Rewind Selecta dub dub hits second drop 7020176Organ DonorsWAV-14Rewind Selecta dub dub snare second drop 7020176Organ DonorsWAV-15Rewind Selecta dub full 1st drop 7020176Organ DonorsWAV-16Rewind Selecta dub fx 1st drop 7020176Organ DonorsWAV-17Rewind Selecta dub guitar pitched 1 second drop 7020176Organ DonorsWAV-18Rewind Selecta dub stab pitched 2 second drop 7020176Organ DonorsWAV-19Rewind Selecta dub trumpet second drop 7020176Organ DonorsWAV-20Rewind Selecta Vocal Main 7020176Organ DonorsWAV-21Rewind Selecta Vocal Main First Drop 2 7020176Organ DonorsWAV-22Rewind Selecta Vocal Main First Drop 7020176Organ DonorsWAV-23Rewind Selecta Vocal Main Harmony 1 7020176Organ DonorsWAV-24Rewind Selecta Vocal Main Harmony 2 7020176Organ DonorsWAV-25rewind selecta20176Organ DonorsWAV-26rewind sound effect 220176Organ DonorsWAV-27rewind sound effect20176Organ DonorsWAV-28riser20176Organ DonorsWAV-29slow unwind20176Organ DonorsWAV-30trumpet hit20176Organ DonorsWAV-31unwind on the floor now rewind20176Organ DonorsWAV-32we need that beat to get down and rewind rewind 20176Organ DonorsWAV-33white noise gate20176Organ DonorsFolder 1.3.4 - Organ Donors - Off Bass (Sample Pack)WAV-1ODUOB- BABYYEAH20176Organ DonorsWAV-2ODUOB- Bass20176Organ DonorsWAV-3ODUOB- CLAP20176Organ DonorsWAV-4ODUOB- DRUMFILL20176Organ DonorsWAV-5ODUOB- HATS20176Organ DonorsWAV-6ODUOB- KICK20176Organ DonorsWAV-7ODUOB- PREVERB20176Organ DonorsWAV-8ODUOB- RISER220176Organ DonorsWAV-9ODUOB- SHORTRISER20176Organ DonorsWAV-10ODUOB- STABFILL20176Organ DonorsWAV-11ODUOB- STABFILL220176Organ DonorsWAV-12ODUOB- STABFILL320176Organ DonorsWAV-13ODUOB- STABFILL420176Organ DonorsWAV-14ODUOB- SYNTHLOOP120176Organ DonorsWAV-15ODUOB-DROPBASS20176Organ DonorsWAV-16ODUOB-DROPFILL20176Organ DonorsWAV-17ODUOB-DROPLAYER20176Organ DonorsWAV-18ODUOB-DROPLEAD20176Organ DonorsWAV-19ODUOB-DROPSUB20176Organ DonorsWAV-20ODUOB-DROPSYNTH20176Organ DonorsWAV-21ODUOB-DROPTOPLAYER20176Organ DonorsWAV-22ODUOB-HARMONY20176Organ DonorsWAV-23ODUOB-HARMONY220176Organ DonorsWAV-24ODUOB-HIGHSTRING20176Organ DonorsWAV-25ODUOB-LONGRISE20176Organ DonorsWAV-26ODUOB-LOWSYNTH20176Organ DonorsWAV-27ODUOB-SNAREBUILD20176Organ DonorsWAV-28ODUOB-TOPSYNTH20176Organ DonorsWAV-29ODUOB-WHITEDOWN20176Organ DonorsFolder 1.3.5 - Organ Donors - No Longer In Control (Sample Pack - 133BPM)WAV-1ODUNLIC-30320176Organ DonorsWAV-2ODUNLIC-ALARM20176Organ DonorsWAV-3ODUNLIC-BASSMELODY20176Organ DonorsWAV-4ODUNLIC-CLAP20176Organ DonorsWAV-5ODUNLIC-DROPDRUM20176Organ DonorsWAV-6ODUNLIC-DROPFILL20176Organ DonorsWAV-7ODUNLIC-FILL220176Organ DonorsWAV-8ODUNLIC-HIGHFX20176Organ DonorsWAV-9ODUNLIC-HOOF30320176Organ DonorsWAV-10ODUNLIC-LAYERMELODY20176Organ DonorsWAV-11ODUNLIC-LOW30320176Organ DonorsWAV-12ODUNLIC-LOWSYNTH20176Organ DonorsWAV-13ODUNLIC-MAIN30320176Organ DonorsWAV-14ODUNLIC-MAINMELODY20176Organ DonorsWAV-15ODUNLIC-PLUCKMELODY20176Organ DonorsWAV-16ODUNLIC-RIDE20176Organ DonorsWAV-17ODUNLIC-RISER20176Organ DonorsWAV-18ODUNLIC-SNARE20176Organ DonorsWAV-19ODUNLIC-VOX120176Organ DonorsWAV-20ODUNLIC-VOX220176Organ DonorsWAV-21ODUNLIC-VOX320176Organ DonorsWAV-22ODUNLIC-VOX420176Organ DonorsWAV-23ODUNLIC-VOX520176Organ DonorsFolder 1.3.6 - Organ Donors - Faux Embrace (Sample Pack 133BPM)WAV-1ODUFE-CHORDS20176Organ DonorsWAV-2ODUFE-CHORDS220176Organ DonorsWAV-3ODUFE-CLAP20176Organ DonorsWAV-4ODUFE-DRUMFILL20176Organ DonorsWAV-5ODUFE-FILTVOX20176Organ DonorsWAV-6ODUFE-GUITARFX20176Organ DonorsWAV-7ODUFE-KICKBASS20176Organ DonorsWAV-8ODUFE-LAYERSYNTH20176Organ DonorsWAV-9ODUFE-MAINLEAD20176Organ DonorsWAV-10ODUFE-POLYHOOK20176Organ DonorsWAV-11ODUFE-REVFX20176Organ DonorsWAV-12ODUFE-RIDE20176Organ DonorsWAV-13ODUFE-RISER20176Organ DonorsWAV-14ODUFE-SNARE20176Organ DonorsWAV-15ODUFE-SUB20176Organ DonorsWAV-16ODUFE-VIRUSBASS20176Organ DonorsWAV-17ODUFE-VIRUSBASS220176Organ DonorsWAV-18ODUFE-VIRUSFILTER20176Organ DonorsWAV-19ODUFE-VOX120176Organ DonorsWAV-20ODUFE-VOX220176Organ DonorsFolder 1.3.7 - Organ Donors - Fuck Life (Sample Pack 140BPM)WAV-1ODUFL-CHORUS20176Organ DonorsWAV-2ODUFL-CLAP20176Organ DonorsWAV-3ODUFL-FILTERED BASS20176Organ DonorsWAV-4ODUFL-FILTERED GUITAR20176Organ DonorsWAV-5ODUFL-FUCKDROP20176Organ DonorsWAV-6ODUFL-FUCKFILL20176Organ DonorsWAV-7ODUFL-FUCKLIFEVOX120176Organ DonorsWAV-8ODUFL-FUCKLIFEVOX220176Organ DonorsWAV-9ODUFL-FUCKLIFEVOX320176Organ DonorsWAV-10ODUFL-GUITAR20176Organ DonorsWAV-11ODUFL-KICK20176Organ DonorsWAV-12ODUFL-LEAD120176Organ DonorsWAV-13ODUFL-LEAD220176Organ DonorsWAV-14ODUFL-LEAD320176Organ DonorsWAV-15ODUFL-TOP LAYERS20176Organ DonorsWAV-16ODUFL-TOUGHCLAPS20176Organ DonorsFolder 1.3.9 - Organ Donors - Like A Hawk (Sample Pack - 135BPM)WAV-1ODULAH-CHORDS120176Organ DonorsWAV-2ODULAH-CLAP20176Organ DonorsWAV-3ODULAH-CLAP220176Organ DonorsWAV-4ODULAH-DROPFILL20176Organ DonorsWAV-5ODULAH-DROPFILL220176Organ DonorsWAV-6ODULAH-DRUM20176Organ DonorsWAV-7ODULAH-DRUM220176Organ DonorsWAV-8ODULAH-FILTERBASS20176Organ DonorsWAV-9ODULAH-FX120176Organ DonorsWAV-10ODULAH-GRIT20176Organ DonorsWAV-11ODULAH-KICKBASS20176Organ DonorsWAV-12ODULAH-LAYER LEAD20176Organ DonorsWAV-13ODULAH-LEADBASS20176Organ DonorsWAV-14ODULAH-LEADBASS220176Organ DonorsWAV-15ODULAH-MAIN LEAD20176Organ DonorsWAV-16ODULAH-MOOG BASS LEAD20176Organ DonorsWAV-17ODULAH-MOOG LEAD20176Organ DonorsWAV-18ODULAH-OFF HAT20176Organ DonorsWAV-19ODULAH-RIDE20176Organ DonorsWAV-20ODULAH-RISER120176Organ DonorsWAV-21ODULAH-RISER220176Organ DonorsWAV-22ODULAH-SCREACH120176Organ DonorsWAV-23ODULAH-SCREACH220176Organ DonorsWAV-24ODULAH-SCREACH320176Organ DonorsWAV-25ODULAH-SCREACHFILTER20176Organ DonorsWAV-26ODULAH-STABLOOP20176Organ DonorsWAV-27ODULAH-SUB BASS LEAD20176Organ DonorsWAV-28ODULAH-VOX120176Organ DonorsWAV-29ODULAH-VOX220176Organ DonorsWAV-30ODULAH-VOX320176Organ DonorsWAV-31ODULAH-VOX420176Organ DonorsFolder 1.3.10 - Organ Donors - Laughing Gas (Sample Pack - 133BPM)WAV-1ODULG-BASSBUILD20176Organ DonorsWAV-2ODULG-BLOWHEADVOX20176Organ DonorsWAV-3ODULG-BREAKBASS20176Organ DonorsWAV-4ODULG-CLAP20176Organ DonorsWAV-5ODULG-EVILBASS20176Organ DonorsWAV-6ODULG-FILL120176Organ DonorsWAV-7ODULG-FULLVOCAL20176Organ DonorsWAV-8ODULG-FXFILL20176Organ DonorsWAV-9ODULG-GASFX20176Organ DonorsWAV-10ODULG-KNOCKPERC20176Organ DonorsWAV-11ODULG-LAUGHING120176Organ DonorsWAV-12ODULG-LAUGHING220176Organ DonorsWAV-13ODULG-LAUGHING320176Organ DonorsWAV-14ODULG-LAUGHRISE20176Organ DonorsWAV-15ODULG-LEADBASS20176Organ DonorsWAV-16ODULG-MOOGRISE20176Organ DonorsWAV-17ODULG-MOOGRISE220176Organ DonorsWAV-18ODULG-NOSVOX20176Organ DonorsWAV-19ODULG-PERC LOOP20176Organ DonorsWAV-20ODULG-RIDE20176Organ DonorsWAV-21ODULG-RISER20176Organ DonorsWAV-22ODULG-SNAREROLL20176Organ DonorsWAV-23ODULG-TONALKICK20176Organ DonorsFolder 1.3.11 - Organ Donors - Tribalism (Sample Pack - 135BPM)WAV-1ODUT-ATMOS20176Organ DonorsWAV-2ODUT-ATMOS220176Organ DonorsWAV-3ODUT-BFX20176Organ DonorsWAV-4ODUT-CHANT DROP20176Organ DonorsWAV-5ODUT-CHANT20176Organ DonorsWAV-6ODUT-CHANT220176Organ DonorsWAV-7ODUT-CLAP20176Organ DonorsWAV-8ODUT-CREEP20176Organ DonorsWAV-9ODUT-DROP FILL20176Organ DonorsWAV-10ODUT-DRUMS20176Organ DonorsWAV-11ODUT-FILL220176Organ DonorsWAV-12ODUT-FILTER LEAD BASS20176Organ DonorsWAV-13ODUT-FULL LEAD20176Organ DonorsWAV-14ODUT-GUITAR20176Organ DonorsWAV-15ODUT-KICK20176Organ DonorsWAV-16ODUT-LEAD120176Organ DonorsWAV-17ODUT-LOWER LEAD20176Organ DonorsWAV-18ODUT-MOOG20176Organ DonorsWAV-19ODUT-OFF SUB20176Organ DonorsWAV-20ODUT-PADS20176Organ DonorsWAV-21ODUT-PLUCK20176Organ DonorsWAV-22ODUT-PLUCK220176Organ DonorsWAV-23ODUT-REVFX20176Organ DonorsWAV-24ODUT-RIDE20176Organ DonorsWAV-25ODUT-RISER20176Organ DonorsWAV-26ODUT-SHAKER20176Organ DonorsWAV-27ODUT-SNARE BUILD20176Organ DonorsFolder 1.3.12 - Organ Donors - Back Stabber (Sample Pack - 135BPM)AIF-1Atmosphere20176Organ DonorsAIF-2Bass 120176Organ DonorsAIF-3Bass 220176Organ DonorsAIF-4Bass 320176Organ DonorsAIF-5Bass Fill 120176Organ DonorsAIF-6Bass Fill 220176Organ DonorsAIF-7Bass Guitar FX 220176Organ DonorsAIF-8Bass Guitar FX 320176Organ DonorsAIF-9Bass Guitar FX 420176Organ DonorsAIF-10Bass Guitar FX20176Organ DonorsAIF-11Bass Guitar20176Organ DonorsAIF-12Clap 120176Organ DonorsAIF-13Clap 220176Organ DonorsAIF-14Crash20176Organ DonorsAIF-15Kick Distort20176Organ DonorsAIF-16Kick Loop 220176Organ DonorsAIF-17Kick Loop Main 220176Organ DonorsAIF-18Kick Loop Main20176Organ DonorsAIF-19Kick Loop20176Organ DonorsAIF-20Lead Main20176Organ DonorsAIF-21Melody 120176Organ DonorsAIF-22Melody 220176Organ DonorsAIF-23Melody 3 Bass20176Organ DonorsAIF-24Percussion Chop Loop20176Organ DonorsAIF-25Ride20176Organ DonorsAIF-26Riser 120176Organ DonorsAIF-27Riser 220176Organ DonorsAIF-28Riser 320176Organ DonorsAIF-29Snare On20176Organ DonorsAIF-30Snare Roll20176Organ DonorsAIF-31Stab FX20176Organ DonorsAIF-32Stab Loop20176Organ DonorsAIF-33Sub Drop20176Organ DonorsAIF-34Vocal Stem20176Organ DonorsAIF-35White Noise20176Organ DonorsFolder 1.3.13 - Organ Donors - Disco Biscuits (Sample Pack)WAV-1ODUDB-CLAP20176Organ DonorsWAV-2ODUDB-DOWNFX20176Organ DonorsWAV-3ODUDB-FILL120176Organ DonorsWAV-4ODUDB-FILL220176Organ DonorsWAV-5ODUDB-FULL LEAD20176Organ DonorsWAV-6ODUDB-FULL VOCAL20176Organ DonorsWAV-7ODUDB-HOVOX20176Organ DonorsWAV-8ODUDB-KICK20176Organ DonorsWAV-9ODUDB-LAYERBASS20176Organ DonorsWAV-10ODUDB-LEADBASSLAYER20176Organ DonorsWAV-11ODUDB-MAINBASS20176Organ DonorsWAV-12ODUDB-MELODY 120176Organ DonorsWAV-13ODUDB-MELODY Bass20176Organ DonorsWAV-14ODUDB-MELODY LAYER20176Organ DonorsWAV-15ODUDB-MELODY SUB20176Organ DonorsWAV-16ODUDB-MELODYHIGH20176Organ DonorsWAV-17ODUDB-MELODYLEAD20176Organ DonorsWAV-18ODUDB-PERC20176Organ DonorsWAV-19ODUDB-PERCFILL20176Organ DonorsWAV-20ODUDB-REVERSE20176Organ DonorsWAV-21ODUDB-RISER20176Organ DonorsWAV-22ODUDB-RISER220176Organ DonorsWAV-23ODUDB-SNARE20176Organ DonorsWAV-24ODUDB-STAB120176Organ DonorsWAV-25ODUDB-STABLEAD20176Organ DonorsWAV-26ODUDB-SUB20176Organ DonorsWAV-27ODUDB-VOCODE20176Organ DonorsWAV-28ODUDB-VOXFILL20176Organ DonorsWAV-29ODUDB-VOXFX20176Organ DonorsFolder 1.3.14 - TRACK TRANSITIONSMP3-11325s20176Organ DonorsMP3-2BATHROOM 220176Organ DonorsMP3-3BATHROOM20176Organ DonorsMP3-4intro new20176Organ DonorsMP3-5tick tock bridge20176Organ DonorsMP3-6TRAILER-VOICE-FX-80 (1)20176Organ DonorsMP3-7Was It The Acid Bridge20176Organ DonorsWAV-1YET YOU BREATH20176Organ DonorsFolder 1.4 - Ultrasound ArtworkFolder 1.5 - Ultra CutsAIF-1KULA20176Organ DonorsMP3-1New World Sound20176Organ DonorsMP3-2Off Limits (ULTRA_CUTS)20176Organ DonorsWAV-1Virus Energiser20176Organ DonorsMP3-3BLEED20176Organ Donors1876463WazzaFeaturingMP3-4HEY20176Organ DonorsFolder 1.6 - Ideas & ConceptsMP3-132 LOST IN MUSIC20176Organ DonorsMP3-239 _ AJ Kick Rewind Selecta20176Organ DonorsMP3-346 WASTED VOCAL CONCEPT TRACK 820176Organ DonorsMP3-449 REWARD IDEA_ 220176Organ DonorsMP3-553 SHARONA BACK STABBER20176Organ DonorsMP3-654 Tourettes no vocal 220176Organ DonorsMP3-755 Audio Surgery Help Line 2 NEW VOCAL Ideas_20176Organ DonorsMP3-864 303 THREE ZERO THREE _ EAT YOUR MIND VOCAL EDIT TEST 120176Organ DonorsMP3-9303 TRACK 2 6 melody20176Organ DonorsMP3-10BABY YEAH CLOUD MIX 120176Organ DonorsMP3-11CLASSIC ANTHEM MUSIC TECHNO CLOUD MIX 1 teaser20176Organ DonorsMP3-12Full Retard Wasted Kickbass20176Organ DonorsMP3-13GOLD _ CLOUD MIX 120176Organ DonorsMP3-14hawk20176Organ DonorsMP3-15I AM RESURRECTION HARD EDGE20176Organ DonorsMP3-16JESUS FUCKING CHRIST 120176Organ DonorsMP3-17JESUS HE KNOWS ME20176Organ DonorsMP3-18kick-speed-up-g-DELETE-3 (1)20176Organ DonorsMP3-19NO WOMEN ALLOWED CLOUD 1 teaser20176Organ DonorsMP3-20Organ Donors & WAZZA - Bleed20176Organ DonorsMP3-21Organ Donors Oldskool NuSkool Backing Concept -220176Organ DonorsMP3-22REWIND SELECTA NEW SCOTTS HH BASS D20176Organ DonorsWAV-1SCOTT - FUCK LIFE ORIGINAL BEDROOM CONCEPT IDEA (Recorded On iPhone)20176Organ DonorsMP3-23Scotts - Now I Know Idea (Became Eat Your Mind)20176Organ DonorsMP3-24SCOTTS 303 TEST CLOUD MIX 320176Organ DonorsMP3-25Scotts 303's (TRACK BECAME WASTED)20176Organ DonorsMP3-26Scotts Acid Lines (Test 2 original)20176Organ DonorsMP3-27SCOTTS SHAKE 2 IDEA20176Organ DonorsMP3-28Shake Your Body 303 HYBRID oldskool (Became No Longer In Control)20176Organ DonorsFolder 2 - Organ Donors Original TracksFolder 2.1 - Dj Set IntrosWAV-1Australia Intro20176Organ DonorsWAV-2Clasic Tracks Intro20176Organ DonorsWAV-3Dance Valley Scratch Intro 200820176Organ DonorsWAV-4Dj Intro20176Organ DonorsWAV-5On Their Dicks Intro20176Organ DonorsWAV-6Tidy Weekender Intro20176Organ DonorsMP3-1Turntablizm Intro20176Organ DonorsWAV-7UTK Album Scratch Intro20176Organ DonorsWAV-8Xmas Intro20176Organ DonorsFolder 2.2 - Digital ReleasesWAV-15ths Of Fury20176Organ DonorsWAV-2Baptism Of Fire20176Organ DonorsWAV-3Can You Dig It20176Organ DonorsWAV-4MACH 220176Organ DonorsWAV-5Rhythms Devine20176Organ DonorsWAV-6Total Confusion (Original Mix)20176Organ DonorsWAV-7Tranceplant20176Organ DonorsWAV-8Turntablizm (Extended Mix)20176Organ DonorsWAV-9Ultra Kaotica20176Organ DonorsWAV-10We Call It Acid20176Organ Donors,188984A*S*Y*SWAV-119mm20176Organ Donors,517349ActiWAV-12Mind = Blown20176Organ Donors,517349ActiWAV-13Show Me Love (Hard Edge Remix)20176Organ Donors,6033384Juxtaposition (3)WAV-14Found Love (Organ Donors Remix)20176Organ Donors,16329DJ Scot Project20176Organ DonorsRemixWAV-15Techno Shock20176Organ Donors,426849Scott AttrillWAV-16Lose Control20176Organ Donors,8358Steve HillWAV-17Dance Floor Killa20176Organ Donors118939Mallorca LeeFeaturingWAV-18Get On It (House On Fire Remix)20176Organ Donors8893456AeOnFireFeaturing3233265House Of VirusRemixMP3-121220176Organ DonorsMP3-2Bodyshock20176Organ DonorsMP3-3Cutting Edge20176Organ DonorsMP3-4Dr Kaotica (Vocal Mix)20176Organ DonorsMP3-5Jagged Edge20176Organ DonorsMP3-6Ket Is For Horses20176Organ DonorsMP3-7Kickin On Wax20176Organ DonorsAIF-1Mad As Hell20176Organ DonorsMP3-8Make The Girlies Wet20176Organ DonorsMP3-9Moogerfoogin20176Organ DonorsAIFF-1Never Mellow20176Organ DonorsAIF-2New Era20176Organ DonorsMP3-10NUSKOOL SOUND (Ultrasounds Ep Part 3)20176Organ DonorsMP3-11Scarface (Original Mix)20176Organ DonorsMP3-12Stylus Over Substance20176Organ DonorsAIF-3Subtle 5ths20176Organ DonorsMP3-13he Drum20176Organ DonorsMP3-14Throw A Diva20176Organ DonorsMP3-15Vajazzle (Original_Mix)20176Organ DonorsAIF-4Zombie Apocalypse20176Organ DonorsMP3-16Wake Up20176Organ Donors,2519869AudiofreqMP3-17Get On It20176Organ Donors8893456AeOnFireFeaturingMP3-18Dont Speak Shit20176Organ Donorsvs8893459D3AFMP3-1920 000 Hardcore Members (Original Mix)20176Organ Donorsvs1299417Antolini & MontorsiFolder 2.3 - Early Vinyl ReleasesMP3-1Rayz Muzik20176Organ DonorsMP3-2Bushwacka752232The Asylum SeekersMP3-3Natural World752232The Asylum SeekersMP3-4Mix It Up63235Dirk Diggler (2),251511Chest RockwellMP3-5Such A Feeling63235Dirk Diggler (2),251511Chest RockwellMP3-6Lay Down The Beat (Organ Donors Remix)21625Dropzone20176Organ DonorsRemixMP3-7Here Comes The Music (Organ Donors Remix)66418Flinch20176Organ DonorsRemixMP3-8Back To Cali (Organ Donors Remix)5775Mauro Picotto20176Organ DonorsRemixMP3-9Mind Altering Drugs8223567The Numb SkullsMP3-10Bad Karma20176Organ DonorsMP3-11Bomb Thrush20176Organ DonorsMP3-12Boogaloo20176Organ DonorsMP3-13Can't Get It Up20176Organ DonorsMP3-14Defected20176Organ DonorsMP3-15Dig Dis20176Organ DonorsMP3-16Freaky Deaky20176Organ DonorsMP3-17Jam Rag It20176Organ DonorsMP3-18James Brown Is Queer20176Organ DonorsMP3-19Kings Of Rock20176Organ DonorsMP3-20Knob Throttle20176Organ DonorsMP3-21Mad As Hell20176Organ DonorsMP3-22Never Lost His Virginity20176Organ DonorsMP3-23No Holds Barred20176Organ DonorsMP3-24One Fat Slim Boy20176Organ DonorsMP3-25Out Of Phaze20176Organ DonorsMP3-26Radio Waves20176Organ DonorsMP3-27Relax20176Organ DonorsMP3-28Rough Ride20176Organ DonorsMP3-29We're The Technicians20176Organ DonorsMP3-30Anihilating Rhythm8223567The Numb SkullsMP3-31Baby Gravy8223567The Numb SkullsMP3-32Beat My Meat (Bounce Mix)8223567The Numb SkullsMP3-33Beat My Meat (Hard Mix)8223567The Numb SkullsMP3-34Churn & Burn8223567The Numb SkullsMP3-35Edge 18223567The Numb SkullsMP3-36Give It Some Stick8223567The Numb SkullsMP3-37Go Baby8223567The Numb SkullsMP3-38Jaws Shark Attack8223567The Numb SkullsMP3-39Knob Gets Hard8223567The Numb SkullsMP3-40Microbiological8223567The Numb SkullsMP3-41Pork Horns8223567The Numb SkullsMP3-42Welcome 2 The Underground8223567The Numb SkullsMP3-43Womb 138223567The Numb SkullsFolder 3 - Organ Donor RemixesAIF-1I Got That Boom (Organ Donors Remix)11804DJ Isaac20176Organ DonorsRemixAIF-2 Rebel To Society (Organ Donors Remix)766100Joey V20176Organ DonorsRemixAIF-3Internet Friends (Organ Donors Psycho Bitch Rework)2291890Knife Party20176Organ DonorsRemixAIF-4Monotone (Organ Donors Remix)39987Marcel Woods20176Organ DonorsRemixAIF-599.9 (Organ Donors Remix)20176Organ Donors20176Organ DonorsRemixWAV-1Jungle Massive (Organ Donors Remix)114457Alex Kidd,5888219Mark Haven20176Organ DonorsRemixWAV-2Gouryella (Organ Donors Remix)4107Gouryella20176Organ DonorsRemixWAV-3Bring It Back (Organ Donors Remix)39987Marcel Woods20176Organ DonorsRemixWAV-4Live For The Weekend (Organ Donors Fuckin Twisted Remix)11433Vinylgroover20176Organ DonorsRemixMP3-1Acid Glitch (Organ Donors Remix)188984A*S*Y*S20176Organ DonorsRemixMP3-2Such A Feelin (Organ Donors Remix)8349BKMP3-3We Are Your Friends (Organ Donors Remix)4945998Exodus (45),1653844LeewiseMP3-4Achtung (Organ Donors Remix)212813KamuiMP3-5Carpe_Diem (Organ Donors Remix) 289983Killswitch (2)MP3-6Scifi Hero (Organ Donors Remix)66733LangeMP3-7Shakedown (Organ Donors Remix)984336Mac & TaylorMP3-8Sangre Caliente (Organ Donors Remix)226585Mark SherryMP3-9Iguana (Organ Donors Remix)5775Mauro PicottoMP3-10Make The Girlies Wet (Breeze & Modulate Remix)20176Organ Donors2700288Breeze & ModulateRemixMP3-11Silence20176Organ Donors,960293Kidd KaosMP3-12Maybe Its Over (Organ Donors Dub Mix)67218Paul Oakenfold,28497Tamra Keenan20176Organ DonorsRemixMP3-13Maybe Its Over (Organ Donors Vocal Mix)67218Paul Oakenfold,28497Tamra Keenan20176Organ DonorsRemixMP3-14In Silence (Organ Donors Remix V1)150699Randy Katana20176Organ DonorsRemixMP3-15In Silence (Organ Donors Remix V2)150699Randy Katana20176Organ DonorsRemixMP3-16Unlimited (Organ Donors Remix)107709Sa.Vee.Oh20176Organ DonorsRemixMP3-17B Baby (Organ Donors Remix)16329DJ Scot Project20176Organ DonorsRemixMP3-18Adapter (Organ Donors Remix)426849Scott Attrill20176Organ DonorsRemixMP3-19Solo (Organ Donors Remix)85524Sean Tyas20176Organ DonorsRemixFolder 4 - Organ Donors BootlegsAIF-1All Around The World (Organ Donors Hard Edge Mashup)1462131Arty (2)20176Organ DonorsRemixAIF-2Flashback20176Organ DonorsAIF-3Harty Hard Edge20176Organ DonorsAIF-4Tidy Boys Love Hardstlye20176Organ DonorsAIF-5Tonskoolitis20176Organ DonorsAIF-6FTS (Organ Donors Live For Pills Remix)51567Showtek20176Organ DonorsRemixWAV-1Coole Drugs (Organ Donors Mash Up)20176Organ Donors20176Organ DonorsRemixWAV-2I Found You (Organ Donors Ultra Remix)20176Organ Donors20176Organ DonorsRemixWAV-3Good Life (Organ Donors Rework)3868Inner Cityvs4107669Parker & Aacht20176Organ DonorsRemixWAV-4Shranz Muzik20176Organ Donors,114457Alex KiddMP3-1Wrong Chords (Organ Donors Mash Up)257938Deadmau520176Organ DonorsRemixMP3-2Eat Sleep Rave Repeat (Organ Donors Bootleg)3101Fatboy Slim,798677Riva Starr,1347549Beardyman20176Organ DonorsRemixMP3-3Organ Donors I Love Silence Mash Up2010943Icona Popvs150699Randy Katana20176Organ DonorsRemixMP3-4Kiss The Trigger (Organ Donors Mashup)20176Organ Donors20176Organ DonorsRemixMP3-5Klack 'n' Roll (Organ Donors Mashup)20176Organ Donors20176Organ DonorsRemixMP3-6Advanced (Organ Donors Unofficial Remix)39987Marcel Woods20176Organ DonorsRemixMP3-728 Wanks Later20176Organ DonorsMP3-8Apache20176Organ DonorsMP3-9Brain Rock20176Organ DonorsMP3-10Daft Spunk20176Organ DonorsMP3-11Traffic Jam20176Organ DonorsMP3-12When The Sun Goes Down20176Organ DonorsMP3-13Zombie Apocalypse20176Organ DonorsMP3-14Shotgun (Organ Donors Pump Action Rework)1990571Zedd20176Organ DonorsRemixFolder 4.1 - April Fools Tracks (We Stitched Up Alex Kidd & Kutski)WAV-1Fart-Warping114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-1By Day We Are Postmen114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-2Feed The Hardstyle114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-3Pump Up The Eastend114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-4The Fimble Thump114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-5We Both Collect Barbie Dolls114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-6We're Taking The World By Storm 1 Gig At A Time114457Alex Kidd,186773Kutski20176Organ DonorsRemixMP3-7Whos Macho Now114457Alex Kidd,186773Kutski20176Organ DonorsRemixFolder 5 - Organ Donors Unreleased Tracks (From The Tune Graveyard)AIF-1EDM20176Organ DonorsAIF-2Get Jiggy In Ireland20176Organ DonorsAIF-3Oldskool Dreamer20176Organ DonorsAIF-4Plastic Dreams20176Organ DonorsAIF-5Strip Club Invader20176Organ DonorsAIF-6Tree Of Life20176Organ DonorsAIF-7Ultrasound20176Organ DonorsAIF-8Party Time20176Organ Donors,16329DJ Scot ProjectWAV-1(Dance Valley Remix)20176Organ Donors20176Organ DonorsRemixWAV-2Floor Essence20176Organ DonorsWAV-3Noom 1320176Organ DonorsWAV-4Quad Test20176Organ DonorsMP3-1(Organ Donors Remix)2811424Krewella20176Organ DonorsRemixMP3-2The Analogue Signal20176Organ DonorsMP3-3Bring Back That Funk20176Organ DonorsMP3-4CTRL WALT DEL (Organ Donors Remix)102507Walt20176Organ DonorsRemixFolder 6 - Organ Donors Previous AlbumsFolder 6.1 - Organ Donors - Plastic Surgeons (2004)Folder 6.1.1 - Organ Donors - Plastic Surgeons (Full Album)MP3-1Plastic Surgeons (Full Album)1:17:3620176Organ DonorsFolder 6.1.2 Organ Donors - Plastic Surgeons (Tracks)AIF-1Locked Tight20176Organ DonorsAIF-2Looking For Drugs20176Organ DonorsAIF-3Blackout20176Organ DonorsAIF-4In Power20176Organ DonorsAIF-5Rhythms Divine (Trance Intoxication)20176Organ DonorsAIF-6Locked Trance20176Organ DonorsAIF-7Wave Guide System20176Organ DonorsAIF-8What's Up20176Organ DonorsAIF-999.920176Organ DonorsAIF-10Rhythms Divine (Pound Your Senses)20176Organ DonorsAIF-11Mental Atmosphere20176Organ DonorsAIF-124 Tribes (Manticore Introduction)20176Organ DonorsAIF-134 Tribes20176Organ DonorsAIF-14Surgeons Turntablizm20176Organ DonorsFolder 6.2 - Organ Donors - Oldskool Autopsy (2008)Folder 6.2.1 - Organ Donors - Oldskool Autopsy (Full Album Mix)MP3-1Oldskool Autopsy (Full Album)1:18:3520176Organ DonorsFolder 6.2.2 - Organ Donors - Oldskool Autopsy (Full Album Mix)WAV-1Anticapella20176Organ DonorsWAV-2Go20176Organ DonorsWAV-3Mentasm20176Organ DonorsWAV-4Super Mario Brothers20176Organ DonorsWAV-5Tear Drop20176Organ DonorsWAV-6Moog Eruption20176Organ Donors,412969Dr WillisWAV-7Big Fun20176Organ Donors,11433VinylgrooverMP3-19 Inch Beater20176Organ DonorsMP3-2Acid In The System20176Organ DonorsMP3-3Active820176Organ DonorsMP3-4I'll Be Your Fantasy20176Organ DonorsMP3-5Inner City 200020176Organ DonorsMP3-6Made In Two Days20176Organ DonorsMP3-7The AnsaPhone20176Organ DonorsMP3-8Hard Life20176Organ Donors,11433VinylgrooverMP3-9Inner City 200020176Organ Donors456508MC ManicFeaturingFolder 6.3 - Organ Donors - Under The Knife (2009)Folder 6.3.1 - Organ Donors - Under The Knife Album (Full Album Mix)MP3-1Under the Knife (Full Album)1:06:0420176Organ DonorsFolder 6.3 - RemixesWAV-14 Tribes (BK Remix)20176Organ Donors8349BKRemixWAV-24 Tribes (Joey V Remix)20176Organ Donors766100Joey VRemixWAV-399.9 (Scot Project Remix)20176Organ Donors16329DJ Scot ProjectRemixWAV-4Blackout (Luca Antolini Remix)20176Organ Donors69422Luca Antolini DJRemixWAV-5Blackout (Mac & Taylor Remix)20176Organ Donors984336Mac & TaylorRemixWAV-6Blackout (Zany Remix)20176Organ Donors48375DJ ZanyRemixWAV-7In Power (DJ Choose Remix)20176Organ Donors98436DJ ChooseRemixWAV-8In Power (Fabio Stein's Crasher Remix)20176Organ Donors536409Fabio SteinRemixWAV-9In Power (Unknown Remix)20176Organ Donors355Unknown ArtistRemixWAV-10Karma (S Dee Remix)20176Organ Donors1111031S-DeeRemixWAV-11Locked Tight (Thilo & Evanti Remix)20176Organ Donors664669Thilo & EvantiRemixWAV-12Looking For Drugs (Dr Willis Remix)20176Organ Donors412969Dr WillisRemixWAV-13Looking For Drugs (Fj Project Remix)20176Organ Donors141104FJ ProjectRemixWAV-14Looking For Drugs (Vandall Remix)20176Organ Donors430354VandallRemixWAV-15Mental Atmosphere (Andrea Montorsi Remix)20176Organ Donors104130Andrea MontorsiRemixWAV-16Wave Guide System (Scott Attrill Remix)20176Organ Donors426849Scott AttrillRemixWAV-17Whats Up (Dark By Design Remix)20176Organ Donors75559Dark By DesignRemixMP3-14 Tribes (Will Atkinson Remix)20176Organ Donors1246251Will AtkinsonRemixMP3-299.9 (Kidd Kaos Remix)20176Organ Donors960293Kidd KaosRemixMP3-399.9 (Mark Sherry vs James Allan Remix)20176Organ Donors316586James AllanRemix226585Mark SherryRemixMP3-4Devolution (Anne Savage Remix)20176Organ Donors21059Anne SavageRemixMP3-5In Power (Technical Remix)20176Organ Donors1904247DJ Technical (2)RemixMP3-6Locked Tight (Neal Thomas Remix V4)20176Organ Donors1268108Neal ThomasRemixMP3-7Locked Trance (K90 Remix V2)20176Organ Donors5987K90RemixMP3-8Mental Atmosphere (Louk's Under the Knife Remix)20176Organ Donors265566LoukRemixMP3-9Rhythms Divine (Cally & Juice Remix)20176Organ Donors191902Cally & JuiceRemixMP3-10Rhythms Divine (Joe Es Under The Knife Remix)20176Organ Donors8893462Joe EsRemixMP3-11Rhythms Divine (Organ Donors Under The Knife Remix)20176Organ Donors20176Organ DonorsRemixMP3-12Rhythms Divine (Sam Punk Remix)20176Organ Donors113146Sam PunkRemixMP3-13Wave Guide System (Fausto Remix)20176Organ Donors186883DJ FaustoRemixFolder 7 - Podcasts & Guest MixesFolder 7.1 Organ Donors - Qdance - Audio Surgery PodcastsMP3-11 - Audio Surgery - Qdance Show Pilot Episode 1194Various20176Organ DonorsDJ MixMP3-2Audio Surgery - Qdance Show 1194Various20176Organ DonorsDJ MixMP3-3Audio Surgery - Qdance Show 2194Various20176Organ DonorsDJ MixMP3-4Audio Surgery - Qdance Show 3194Various20176Organ DonorsDJ MixMP3-5Audio Surgery - Qdance Show 4194Various20176Organ DonorsDJ MixMP3-6Audio Surgery - Qdance Show 5194Various20176Organ DonorsDJ MixMP3-7Audio Surgery - Qdance Show 6194Various20176Organ DonorsDJ MixMP3-8Audio Surgery - Qdance Show 7194Various20176Organ DonorsDJ MixMP3-9Audio Surgery - Qdance Show 8194Various20176Organ DonorsDJ MixMP3-10Audio Surgery - Qdance Show 9 - A*S*Y*S Guest mix194Various20176Organ DonorsDJ Mix188984A*S*Y*SFeaturing, DJ MixMP3-11Audio Surgery - Qdance Show 10194Various20176Organ DonorsDJ MixMP3-12Audio Surgery - Qdance Show 12194Various20176Organ DonorsDJ MixMP3-13Audio Surgery - Qdance Show 16 - ULTRASOUND Speacial - A*S*Y*S Guest Mix194Various20176Organ DonorsDJ Mix188984A*S*Y*SFeaturing, DJ MixMP3-14Audio Surgery - Qdance Show 17 - ULTRASOUND Special - Kidd Kaos Guest Mix194Various20176Organ DonorsDJ Mix960293Kidd KaosFeaturing, DJ MixMP3-15Audio Surgery - Qdance Show 20194Various20176Organ DonorsDJ MixMP3-16Audio Surgery - Qdance Show 21194Various20176Organ DonorsDJ MixMP3-17Audio Surgery - Qdance Show 22194Various20176Organ DonorsDJ MixMP3-18Audio Surgery - Qdance Show 29194Various20176Organ DonorsDJ MixMP3-19Audio Surgery - Qdance Show 31194Various20176Organ DonorsDJ MixMP3-20Audio Surgery - Qdance Show 32194Various20176Organ DonorsDJ MixMP3-21Audio Surgery - Qdance Show 33194Various20176Organ DonorsDJ MixMP3-22Audio Surgery - Qdance Show 34194Various20176Organ DonorsDJ MixMP3-23Audio Surgery - Qdance Show 35194Various20176Organ DonorsDJ MixMP3-24Audio Surgery - Qdance Show 36194Various20176Organ DonorsDJ MixMP3-25Audio Surgery - Qdance Show 37194Various20176Organ DonorsDJ MixMP3-26Audio Surgery - Qdance Show 38194Various20176Organ DonorsDJ MixMP3-27Audio Surgery - Qdance Show 39194Various20176Organ DonorsDJ MixFolder 7.1.1 - Bonus Podcasts VariousMP3-1Audio Surgery Podcast - Ultrasound Kamui Guest Mix194Various20176Organ DonorsDJ Mix212813KamuiFeaturing, DJ MixMP3-2Audio Surgery Podcast (Unknown)194Various20176Organ DonorsDJ MixMP3-3Audio Surgery Podcast 2194Various20176Organ DonorsDJ MixMP3-4Audio Surgery Podcast 3194Various20176Organ DonorsDJ MixMP3-5Audio Surgery Podcast 4194Various20176Organ DonorsDJ MixMP3-6Audio Surgery Podcast 21 - Sept 2011 (Ultrasounds Special Feat Scot Project)194Various16329DJ Scot ProjectFeaturing, DJ MixMP3-7Audio Surgery Podcast 22 - Sept 2011 (Ultrasounds Special Part 2)194Various20176Organ DonorsDJ MixMP3-8Audio Surgery Podcast 25 - October 2011194Various20176Organ DonorsDJ MixMP3-9Audio Surgery Podcast 26 - October 2011194Various20176Organ DonorsDJ MixMP3-10Audio Surgery Podcast 28 - November 2011194Various20176Organ DonorsDJ MixMP3-11Audio Surgery Podcast 29 - December 2011194Various20176Organ DonorsDJ MixFolder 7.2 Organ Donors MixesAIF-1Ultrasound Live PA at the O2 Academy194Various20176Organ DonorsDJ MixWAV-1Goodgreef Guest Mix194Various20176Organ DonorsDJ MixMP3-1Boodang Guest Mix194Various20176Organ DonorsDJ MixMP3-2Hardcast Guest Mix194Various20176Organ DonorsDJ MixMP3-3Kiddception Guest Mix194Various20176Organ DonorsDJ MixMP3-4PFA Promotional Mix194Various20176Organ DonorsDJ MixMP3-5Planet_Love Guest Mix194Various20176Organ DonorsDJ MixMP3-6Q-Dance (Live In Bali 7th Sep 2012194Various20176Organ DonorsDJ MixMP3-7Qult Guest Mix194Various20176Organ DonorsDJ MixMP3-8Radio 1 Appearance194Various20176Organ DonorsDJ MixMP3-9Radio 1 Ktra 20min OD Guest MIX 2013194Various20176Organ DonorsDJ MixMP3-10Tidy Guest Mix194Various20176Organ DonorsDJ MixFolder 8 - Samples & Remix PacksFolder 8.1 - MIDI FILESFolder 8.2 - Organ Donors - Remix PacksFolder 8.2.1 Organ Donors - 212 (Remix Pack)AIF-1Dutch lead 2 dry20176Organ DonorsAIF-2Dutch lead 2 wet20176Organ DonorsAIF-3Dutch lead dry20176Organ DonorsAIF-4Dutch lead wet20176Organ DonorsAIF-5filter bass20176Organ DonorsAIF-6Main bass20176Organ DonorsAIF-7Riser 220176Organ DonorsAIF-8Riser20176Organ DonorsFolder 8.2.1.1 MIDIFolder 8.2.2 Organ Donors - Analog Signal (Remix Pack)WAV-1analog signal samples 135bpm20176Organ DonorsFolder 8.2.3 Organ Donors - Cutting Edge (Remix Pack)AIF-1bass 520176Organ DonorsAIF-2bass 4320176Organ DonorsAIF-3chord fills 1 dry20176Organ DonorsAIF-4chord fills 2 dry20176Organ DonorsAIF-5crazy riser 120176Organ DonorsAIF-6crazy riser 220176Organ DonorsAIF-7crazy riser 320176Organ DonorsAIF-8crazy white fx20176Organ DonorsAIF-9lfo synth lead dry20176Organ DonorsAIF-10lfo rise synth20176Organ DonorsAIF-11Moog bass20176Organ DonorsAIF-12subtle subs20176Organ DonorsAIF-13synth layer20176Organ DonorsAIF-14Virud lead Dry. aif20176Organ DonorsAIF-15white splash20176Organ DonorsFolder 8.2.4 Organ Donors - Dance Floor Killa (Remix Pack)AIF-1BASS 220176Organ DonorsAIF-2BASS20176Organ DonorsAIF-3Crazy Rise stab20176Organ DonorsAIF-4Crazy Rise20176Organ DonorsAIF-5JP Bass20176Organ DonorsAIF-6Killa vox 220176Organ DonorsAIF-7Killa vox 320176Organ DonorsAIF-8Killa vox 420176Organ DonorsAIF-9Killa vox20176Organ DonorsAIF-10Layer Lead20176Organ DonorsAIF-11Leed Riff 220176Organ DonorsAIF-12Leed Riff20176Organ DonorsAIF-13Party Started20176Organ DonorsAIF-14Squelch Stab20176Organ DonorsFolder 8.2.4.1 MidiFolder 8.2.5 Organ Donors - Dr Kaotica (Remix Pack)AIF-1Dr Kaotica samples20176Organ DonorsFolder 8.2.5.1 Kaotica VocalsAIF-1vocals harmony20176Organ DonorsAIF-2vocals main 220176Organ DonorsAIF-3vocals main20176Organ DonorsFolder 8.2.6 Organ Donors - Jagged Edge (Remix Pack)AIF-1hip fill20176Organ DonorsAIF-2jagged alarm20176Organ DonorsAIF-3Jagged bass20176Organ DonorsAIF-4Jagged bleep lead20176Organ DonorsAIF-5old skool lead20176Organ DonorsAIF-6old skool layer lead20176Organ DonorsAIF-7rise alarm20176Organ DonorsAIF-8riser20176Organ DonorsFolder 8.2.6.1 MidiFolder 8.2.7 Organ Donors - Ket Is For Horses Remixes & Remix PartsFolder 8.2.7.1 ArtworkFolder 8.2.7.2 Ket Is For Horses (2017 Remixes)Folder 8.2.7.2.1 Organ Donors - Ket Is For Horses - Remix Pack - 133 Bpm - G MinorMP3-1Ket Is For Horses - Remix Competition Samples20176Organ DonorsWAV-1Ket Is For Horses - Remix Competition Samples20176Organ DonorsFolder 8.2.7.2.1.1 BASSAIF-1bass and layer20176Organ DonorsAIF-2layer bass20176Organ DonorsFolder 8.2.7.2.1.2 Freaking OutAIF-1cant feel arms20176Organ DonorsAIF-2Freaking Out Toilet FX20176Organ DonorsAIF-3Freaking Out Vocal20176Organ DonorsFolder 8.2.7.2.1.3 FXAIF-1bleeps 220176Organ DonorsAIF-2bleeps 320176Organ DonorsAIF-3bleeps20176Organ DonorsAIF-4dist kick20176Organ DonorsAIF-5riser 120176Organ DonorsFolder 8.2.7.2.1.4 Ketamin MainAIF-1vocal 120176Organ DonorsAIF-2vocal 220176Organ DonorsAIF-3vocal 320176Organ DonorsAIF-4vocal 420176Organ DonorsFolder 8.2.7.2.1.5 Lead LayersAIF-1dutch stab dry20176Organ DonorsAIF-2dutch stab wet20176Organ DonorsFolder 8.2.7.2.1.6 Original MixMP3-1Ket Is For Horses (Original Mix)20176Organ DonorsFolder 8.2.7.2.2 Drum & BassWAV-1Ket Is For Horses (Lofty Remix)20176Organ Donors5858003Lofty (4)RemixFolder 8.2.7.2.3 DubstepWAV-1Ket Is For Horses (Duo Remix)20176Organ Donors1600715Duo (8)RemixWAV-2Ket Is For Horses (Termal Remix)20176Organ Donors2227819TermalRemixFolder 8.2.7.2.4 Hard DanceWAV-1Ket Is For Horses (Audio Nitrate Remix)20176Organ Donors5857999Audio NitrateRemixWAV-2Ket Is For Horses (Codie Nezbitt Remix)20176Organ Donors5857997Codie NezbittRemixWAV-3Ket is for Horses (Expulze Remix)20176Organ Donors5857998ExpulzeRemixWAV-4Ket Is For Horses (Legacy Remix)20176Organ Donors3588588Legacy (42)RemixWAV-5 Ket Is For Horses (Outlaw Bros Remix)20176Organ Donors4649411Outlaw BrosRemixWAV-6Ket Is For Horses (Quinny Remix)20176Organ Donors3686621Quinny (3)RemixFolder 8.2.7.2.5 HardcoreWAV-1Ket Is For Horses (Clowny & Reminisce Remix)20176Organ Donors5277415Clowny & ReminisceRemixWAV-2Ket Is For Horses (Hyper Activ Remix) (JR Sax edit)20176Organ Donors5858000Hyper ActivRemix279253Joey RiotJRRemixWAV-3Ket Is For Horses (Krioniks Remix)20176Organ Donors5858005KrioniksRemixWAV-4Ket Is For Horses (Legion Remix)20176Organ Donors930409Legion (14)RemixFolder 8.2.7.2.6 HouseWAV-1Ket Is For Horses (Dj Aarny & Jordan Clark Remix)20176Organ Donors5858001DJ AarnyRemix5858002Jordan Clark (3)RemixWAV-2Ket Is For Horses (Duck & Cover Remix)20176Organ Donors2381404Duck And Cover (2)RemixFolder 8.2.7.2.7 Megamix EditsAIF-1Ket Is For Horses (Zondervan Remix) Megamix Edit20176Organ Donors5148007ZondervanRemixFolder 8.2.7.2.8 TranceWAV-1Ket Is For Horses (Dj FredP Crazy Hoof Remix)20176Organ Donors5858004DJ FredPRemixWAV-2Ket Is For Horses (Malc B Remix)20176Organ Donors5233812Malc BRemixWAV-3Ket Is For Horses (Zondervan Remix)20176Organ Donors5148007ZondervanRemixFolder 8.2.8 Organ Donors - MACH 2 (Remix Pack)MP3-1MACH 220176Organ DonorsFolder 8.2.8.1 MidiFolder 8.2.8.2 SamplesWAV-1samples20176Organ DonorsFolder 8.2.9 Organ Donors - Make The Girlies Wet (Remix Pack)AIF-1bass20176Organ DonorsAIF-2dirty dutch stab20176Organ DonorsAIF-3orgasm20176Organ DonorsAIF-4rev20176Organ DonorsAIF-5riser20176Organ DonorsAIF-6stab20176Organ DonorsAIF-7stretch vox20176Organ DonorsAIF-8vocal 120176Organ DonorsAIF-9vocode main20176Organ DonorsAIF-10vocode20176Organ DonorsAIF-11vox 220176Organ DonorsAIF-12vox 320176Organ DonorsAIF-13vox 420176Organ DonorsAIF-14wet vox20176Organ DonorsAIF-15whisper20176Organ DonorsFolder 8.2.9.1 midiFolder 8.2.10 Organ Donors - Moogerfoogin (Remix Pack)AIF-1bass20176Organ DonorsAIF-2claps reversed20176Organ DonorsAIF-3claps20176Organ DonorsAIF-4lead 2 break down20176Organ DonorsAIF-5lead break down20176Organ DonorsAIF-6moog lead break down20176Organ DonorsAIF-7oh yeah vox20176Organ DonorsAIF-8rides20176Organ DonorsAIF-9riser 2 fills20176Organ DonorsAIF-10riser 3 fills20176Organ DonorsAIF-11riser20176Organ DonorsAIF-12vocal fx20176Organ DonorsAIF-13vox fx break20176Organ DonorsAIF-14white clap20176Organ DonorsAIF-15white fx20176Organ DonorsAIF-16white noise fx20176Organ DonorsFolder 8.2.11 Organ Donors - New Era (Remix Pack)WAV-1New Era Samples20176Organ DonorsFolder 8.2.12 Organ Donors - Rhythm Meets The Mind (Remix Pack)AIF-1All bass layers20176Organ DonorsAIF-2All basses20176Organ DonorsAIF-3bass straight layer 120176Organ DonorsAIF-4bass straight layer 220176Organ DonorsAIF-5bass straight layer 320176Organ DonorsAIF-6bass straight layer 420176Organ DonorsAIF-7bass straight20176Organ DonorsAIF-8vox20176Organ DonorsFolder 8.2.13 Organ Donors - Subtle 5ths (Remix Pack)AIF-1alarm stab20176Organ DonorsAIF-2blip stab20176Organ DonorsAIF-3gated vox20176Organ DonorsAIF-4high vox wet20176Organ DonorsAIF-5high vox20176Organ DonorsAIF-6long riser20176Organ DonorsAIF-7moog bass20176Organ DonorsAIF-8perk20176Organ DonorsAIF-9riser 120176Organ DonorsAIF-10riser 220176Organ DonorsFolder 8.2.13.1 midi for subtle 5thsFolder 8.2.14 Organ Donors - Throw A Diva (Remix Pack)Folder 8.2.14.1 MidiFolder 8.2.14.2 samplesAIF-1Riser20176Organ DonorsAIF-2Unlimited 120176Organ DonorsAIF-3Unlimited 320176Organ DonorsAIF-4Unlimited 420176Organ DonorsAIF-5Unlimited 520176Organ DonorsAIF-6Unlimited 620176Organ DonorsAIF-7Unlimited 720176Organ DonorsAIF-8Unlimited 820176Organ DonorsAIF-9Unlimited 920176Organ DonorsAIF-10Unlimited 1020176Organ DonorsAIF-11Unlimited 1120176Organ DonorsAIF-12Unlimited 1220176Organ DonorsAIF-13Unlimited 1320176Organ DonorsAIF-14Unlimited 1420176Organ DonorsAIF-15Unlimited 1520176Organ DonorsAIF-16Unlimited 1620176Organ DonorsAIF-17Unlimited 1720176Organ DonorsAIF-18Unlimited 1820176Organ DonorsAIF-19Unlimited 1920176Organ DonorsAIF-20Unlimited 2020176Organ DonorsAIF-21Unlimited 2120176Organ DonorsAIF-22Unlimited 2220176Organ DonorsAIF-23Unlimited 2320176Organ DonorsAIF-24Unlimited 2420176Organ DonorsAIF-25Unlimited 2520176Organ DonorsAIF-26Unlimited 2620176Organ DonorsAIF-27Unlimited 2720176Organ DonorsAIF-28Unlimited 2820176Organ DonorsAIF-29Unlimited 2920176Organ DonorsAIF-30Unlimited 3020176Organ DonorsAIF-31Unlimited 3120176Organ DonorsAIF-32Unlimited 3220176Organ DonorsAIF-33Unlimited 3320176Organ DonorsAIF-34Unlimited 3420176Organ DonorsAIF-35Unlimited 3520176Organ DonorsAIF-36Unlimited 3620176Organ DonorsAIF-37Unlimited 3720176Organ DonorsAIF-38Unlimited 3920176Organ DonorsAIF-39Unlimited 4020176Organ DonorsAIF-40Unlimited 4120176Organ DonorsAIF-41Unlimited 4320176Organ DonorsAIF-42Unlimited 4420176Organ DonorsAIF-43Unlimited 4520176Organ DonorsAIF-44Unlimited 4620176Organ DonorsAIF-45Unlimited 4720176Organ DonorsAIF-46Unlimited 4820176Organ DonorsAIF-47vox dry20176Organ DonorsAIF-48vox wet20176Organ DonorsFolder 8.2.15 Organ Donors & Scot Project - Found Love (Remix Pack)Folder 8.2.15.1 MIDIFolder 8.2.15.2 SOUNDSWAV-1hardstlye kick20176Organ Donors,16329DJ Scot ProjectWAV-2Kick+bass20176Organ Donors,16329DJ Scot ProjectWAV-3organ chord20176Organ Donors,16329DJ Scot ProjectWAV-4piano20176Organ Donors,16329DJ Scot ProjectFolder 8.2.15.3 VOCALSAIF-1Rihanna - We Found Love (Studio Acapella)321128RihannaWAV-1reverse vocal fx20176Organ Donors,16329DJ Scot ProjectWAV-2we found love full hard part DRY20176Organ Donors,16329DJ Scot ProjectWAV-3we found love full hard WET20176Organ Donors,16329DJ Scot ProjectWAV-4we found love full middle DRY20176Organ Donors,16329DJ Scot ProjectWAV-5we found love full middle WET20176Organ Donors,16329DJ Scot ProjectWAV-6we found love start DRY20176Organ Donors,16329DJ Scot ProjectWAV-7we found love start WET20176Organ Donors,16329DJ Scot ProjectWAV-8we found love WET20176Organ Donors,16329DJ Scot ProjectFolder 8.3 Organ Donors - Sample PacksFolder 8.3.1 Organ Donors - Future Hard Dance - Vol 1 (Sample Pack)Folder 8.3.1.1 Bass SoundsFolder 8.3.1.1.1 various140AIF-1Hickory Bass2.aif A3#20176Organ DonorsWAV-1achtung bass.wav G1#20176Organ DonorsWAV-2advance bass.wav A1#20176Organ DonorsWAV-3alter bass.wav F220176Organ DonorsWAV-4bass rip.wa D2#20176Organ DonorsWAV-5body bass.wav B320176Organ DonorsWAV-6Era Bass.wav F2#20176Organ DonorsWAV-7feel alive.wav F220176Organ DonorsWAV-8grit 2.wav D220176Organ DonorsWAV-9grit.wa B120176Organ DonorsWAV-10hard sidechained bass 2 140. G220176Organ DonorsWAV-11hard sidechained bass 140.wav G2#20176Organ DonorsWAV-12jack bass.wav A220176Organ DonorsWAV-13Kaos Bass2.wav C3#20176Organ DonorsWAV-14knock out bass 140.wav G220176Organ DonorsWAV-15Rapture bass. 140wav A120176Organ DonorsWAV-16roll bass 2.wav G220176Organ DonorsWAV-17roll bass.wav G220176Organ DonorsWAV-18side bass.wav G220176Organ DonorsWAV-19teardrop bass.wav C220176Organ DonorsWAV-20virus der der bass.wav G220176Organ DonorsFolder 8.3.1.1.2 virus bass spans 140WAV-12.wav F2#20176Organ DonorsWAV-23 F2#20176Organ DonorsWAV-34.wav F2#20176Organ DonorsWAV-45.wav F2#20176Organ DonorsWAV-56.wa F2#20176Organ DonorsWAV-67.wav F2#20176Organ DonorsWAV-78.wav C320176Organ DonorsWAV-89.wav G2#20176Organ DonorsWAV-910.wav G220176Organ DonorsWAV-1011.wav G320176Organ DonorsWAV-1112.wav G220176Organ DonorsWAV-1213.wav A2#20176Organ DonorsWAV-1314.wav G120176Organ DonorsWAV-1415.wav B220176Organ DonorsWAV-1516.wav G220176Organ DonorsWAV-1617.wav G120176Organ DonorsWAV-1718.wav G220176Organ DonorsWAV-1819.wav G220176Organ DonorsWAV-1920.wav D2#20176Organ DonorsWAV-2021.wav D2#20176Organ DonorsWAV-2122.w A2#20176Organ DonorsWAV-2223.wav G320176Organ DonorsWAV-2324.wav G2#20176Organ DonorsWAV-2425.wav G220176Organ DonorsWAV-2526.wav G220176Organ DonorsWAV-2627.wav G220176Organ DonorsWAV-2728.wav D220176Organ DonorsWAV-2829.wav G220176Organ DonorsWAV-2930.wav G220176Organ DonorsWAV-3031.wav G320176Organ DonorsWAV-3132.wav G320176Organ DonorsWAV-3233.wav C220176Organ DonorsWAV-3334.wav C220176Organ DonorsWAV-3435.wav c220176Organ DonorsWAV-3536.wav D2#20176Organ DonorsWAV-3637.wav A2#20176Organ DonorsWAV-3738.wav C220176Organ DonorsWAV-3839.wav D320176Organ DonorsWAV-3940.wav D320176Organ DonorsWAV-4041.wav D320176Organ DonorsWAV-4142.wav D320176Organ DonorsWAV-4243.wav D320176Organ DonorsWAV-4344.wav D3#20176Organ DonorsWAV-4445.wav D3#20176Organ DonorsWAV-4546.wav D220176Organ DonorsWAV-4647.wav D220176Organ DonorsWAV-4748.wav A120176Organ DonorsWAV-4849.wav D420176Organ DonorsWAV-4950.wav G2#20176Organ DonorsWAV-5051.wav G2#20176Organ DonorsWAV-5152.wav D3#20176Organ DonorsWAV-5253.w F220176Organ DonorsWAV-5354.wavA2#20176Organ DonorsWAV-5455.wav A2#20176Organ DonorsWAV-5556.wav A2#20176Organ DonorsWAV-5657.wav A2#20176Organ DonorsWAV-5758.wav A2#20176Organ DonorsWAV-5859.wav A2#20176Organ DonorsWAV-5960.wav A2#20176Organ DonorsWAV-6061.wav A2#20176Organ DonorsWAV-6162.wavA2#20176Organ DonorsWAV-62wav F3#20176Organ DonorsFolder 8.3.1.2 BonusAIF-1Acid 3 G020176Organ DonorsAIF-2afro D220176Organ DonorsAIF-3BASS c220176Organ DonorsAIF-4bass G220176Organ DonorsAIF-5big filter A220176Organ DonorsAIF-6bleepG220176Organ DonorsAIF-7control 20176Organ DonorsAIF-8dead. G3aif20176Organ DonorsAIF-9dubstep.A2aif20176Organ DonorsAIF-10Epic pad D320176Organ DonorsAIF-11frog dok D220176Organ DonorsAIF-12futuristic F#20176Organ DonorsAIF-13Hard Acid G220176Organ DonorsAIF-14Hard Acid 2 G220176Organ DonorsAIF-15hitty20176Organ DonorsAIF-16hoov groove.D2aif20176Organ DonorsAIF-17meth bass.G#aif20176Organ DonorsAIF-18mooch filter C220176Organ DonorsAIF-19Moog 2G320176Organ DonorsAIF-20Moog G320176Organ DonorsAIF-21mouser C320176Organ DonorsAIF-22nord filter 2 D220176Organ DonorsAIF-23nord filter D220176Organ DonorsAIF-24ping vi A#20176Organ DonorsAIF-25pluck G320176Organ DonorsAIF-26plucker D320176Organ DonorsAIF-27stabs 2. A2aif20176Organ DonorsAIF-28stabs A#20176Organ DonorsAIF-29trank G320176Organ DonorsFolder 8.3.1.3 Hits & stabsWAV-19 is a classic20176Organ DonorsWAV-2999 stab20176Organ DonorsWAV-3acid stab20176Organ DonorsWAV-4back 2 da oldskool20176Organ DonorsWAV-5devine stab20176Organ DonorsWAV-6disco20176Organ DonorsWAV-7ellecy stab20176Organ DonorsWAV-8faceplant20176Organ DonorsWAV-9grunge stab20176Organ DonorsWAV-10impulze20176Organ DonorsWAV-11kiddy stab20176Organ DonorsWAV-12kiddy2 stab20176Organ DonorsWAV-13Killswitch Stab20176Organ DonorsWAV-14knock stab20176Organ DonorsWAV-15mach 220176Organ DonorsWAV-16musicism20176Organ DonorsWAV-17ping stab20176Organ DonorsWAV-18scrape stick20176Organ DonorsWAV-19sharp20176Organ DonorsWAV-20speaking stab20176Organ DonorsWAV-21stab 320176Organ DonorsWAV-22stab 420176Organ DonorsWAV-23stab delay20176Organ DonorsWAV-24stab hit house20176Organ DonorsWAV-25stretch stab 220176Organ DonorsWAV-26stretch stab20176Organ DonorsWAV-27synth stab20176Organ DonorsWAV-28table stab20176Organ DonorsWAV-29tech stretch stabs20176Organ DonorsWAV-30Van Drop 14020176Organ DonorsWAV-31Van perc 14020176Organ DonorsWAV-32Van stab20176Organ DonorsWAV-33Van Stab220176Organ DonorsWAV-34Van Stab3 14020176Organ DonorsWAV-35Van Stab4 14020176Organ DonorsWAV-36whey stab20176Organ DonorsFolder 8.3.1.4 Lead RiffsFolder 8.3.1.4.1 deadmau5WAV-1esp bass.wav A120176Organ DonorsWAV-2virus pad lead.wav A120176Organ DonorsFolder 8.3.1.4.2 Predator nexWAV-1all leads20176Organ DonorsWAV-2nex 3 layer20176Organ DonorsWAV-3predator lead20176Organ DonorsWAV-4stings filtered20176Organ DonorsWAV-5stings full20176Organ DonorsFolder 8.3.1.4.3 Rapture leadWAV-1rapture lead filter .wav G3#20176Organ DonorsWAV-2rapture lead full.wav G3#20176Organ DonorsFolder 8.3.1.4.4 Stab riffsWAV-199.9.wav F3#20176Organ DonorsWAV-2acid stomp.wav c220176Organ DonorsWAV-3ass.wav A3#20176Organ DonorsWAV-4bong hit.wav C3#20176Organ DonorsWAV-5bum.wav B320176Organ DonorsWAV-6feeling the hoover.wav E320176Organ DonorsWAV-7hoover slide.wav D3#20176Organ DonorsWAV-8LFO Riff.wav A320176Organ DonorsWAV-9lizard.wav G3#20176Organ DonorsWAV-10ping rise.wav E420176Organ DonorsWAV-11st.wa A3#20176Organ DonorsWAV-12stab hits 2.wav A320176Organ DonorsWAV-13stab hits 3.wav G3#20176Organ DonorsWAV-14stab hits.wav G3#20176Organ DonorsWAV-15stab slump.wav A220176Organ DonorsWAV-16stab.wav G320176Organ DonorsWAV-17stabby hit.wav F220176Organ DonorsWAV-18staby lungs.wav G220176Organ DonorsWAV-19strange.wav G420176Organ DonorsWAV-20trip.wav E320176Organ DonorsWAV-21tt.wav A3#20176Organ DonorsFolder 8.3.1.4.5 VariousAIF-1power strings.aif A320176Organ DonorsWAV-18.wav B220176Organ DonorsWAV-2advancing pt 1.wav F320176Organ DonorsWAV-3advancing pt2.wav F320176Organ DonorsWAV-4arp bitch filter.wav G3#20176Organ DonorsWAV-5beef pads.wav D320176Organ DonorsWAV-6chunk riff.wav C320176Organ DonorsWAV-7classic tech.wav G320176Organ DonorsWAV-8classic trance 2.wav G320176Organ DonorsWAV-9classic trance.wav D320176Organ DonorsWAV-10data riff pt1.wav A320176Organ DonorsWAV-11data riff pt2.wav A320176Organ DonorsWAV-12drum part 1.wav C320176Organ DonorsWAV-13drum part 2.wav C320176Organ DonorsWAV-14Es2 lead.wav C320176Organ DonorsWAV-15filter power .wav A3#20176Organ DonorsWAV-16hardstyler pt2.wav A3#20176Organ DonorsWAV-17lead monster.wav E320176Organ DonorsWAV-18lush pad.wav D320176Organ DonorsWAV-19lush piano.wav G420176Organ DonorsWAV-20lush.wav A320176Organ DonorsWAV-21Monster pad 140bpm.wav D3#20176Organ DonorsWAV-22nexy nongler.wav d3#20176Organ DonorsWAV-23numpty riff.wav G320176Organ DonorsWAV-24old scool arp.wav A3#20176Organ DonorsWAV-25paddy mc guiness.wav F2#20176Organ DonorsWAV-26plucky trance.wav F420176Organ DonorsWAV-27popcorn filter pt 2.wav A3#20176Organ DonorsWAV-28popcorn pt 1.wav A3#20176Organ DonorsWAV-29sunrise.wav F220176Organ DonorsWAV-30trance arp.wav A2#20176Organ DonorsWAV-31trance nipples.wav C420176Organ DonorsWAV-32trancey.wav A2#20176Organ DonorsWAV-33trippy riff.wav G320176Organ DonorsWAV-34wraggy.wav G320176Organ DonorsFolder 8.3.1.4.6 virus 1WAV-1filter lead.wav A2#20176Organ DonorsWAV-2full lead.wav A2#20176Organ DonorsWAV-3nexux lead filter.wav A2#20176Organ DonorsWAV-4nexux lead full.wav A2#20176Organ DonorsWAV-5predator lead filter.wav A3#20176Organ DonorsWAV-6predator lead release full.wav A3#20176Organ DonorsFolder 8.3.1.5 Loops 140 BpmFolder 8.3.1.5.1 loop 1WAV-1Hi Hats & Clap20176Organ DonorsWAV-2Hi Hats20176Organ DonorsWAV-3Kick, Hi Hats & Clap Ride20176Organ DonorsWAV-4Kick, Hi Hats & Clap20176Organ DonorsWAV-5Kick20176Organ DonorsFolder 8.3.1.5.2 Loop 2WAV-1Bongo Loop20176Organ DonorsWAV-2hi hat20176Organ DonorsWAV-3Kick, Bongo,.clap.hi hat20176Organ DonorsWAV-4Kick, Bongo,ride.clap.hi ha20176Organ DonorsWAV-5Kick,,.clap.hi hat20176Organ DonorsWAV-6Kick20176Organ DonorsFolder 8.3.1.5.3 Loop 3WAV-1kick20176Organ DonorsWAV-2Kick, Clap,, Knock20176Organ DonorsWAV-3Kick, Clap, Ride, Knock20176Organ DonorsWAV-4kick, Clap, hats knock20176Organ DonorsWAV-5kick, Clap, hats knock, rid20176Organ DonorsFolder 8.3.1.5.4 Loop 4WAV-1kick, clap,hat, ride20176Organ DonorsWAV-2kick, clap,hat20176Organ DonorsWAV-3kick, clap20176Organ DonorsWAV-4kick20176Organ DonorsFolder 8.3.1.5.5 Loop 5WAV-1All Percussion20176Organ DonorsWAV-2bongs20176Organ DonorsWAV-3hats n clap20176Organ DonorsWAV-4Hats n Perc20176Organ DonorsWAV-5roller20176Organ DonorsFolder 8.3.1.5.5.1 oldWAV-1Kick, Clap, hats, bongo, ri20176Organ DonorsWAV-2Kick, Clap, hats, bongo20176Organ DonorsWAV-3Kick, Clap, hats20176Organ DonorsWAV-4Kick, Clap20176Organ DonorsWAV-5Kick20176Organ DonorsWAV-6loop,ride20176Organ DonorsWAV-7loop20176Organ DonorsFolder 8.3.1.5.6 Loop 6WAV-1kick,clap.hat, ride20176Organ DonorsWAV-2kick,clap.hat20176Organ DonorsWAV-3kick,clap20176Organ DonorsWAV-4kick20176Organ DonorsWAV-5no kick20176Organ DonorsFolder 8.3.1.5.7 Loop 7WAV-1Kick,clap,loop,ride, stab20176Organ DonorsWAV-2Kick,clap,loop,ride20176Organ DonorsWAV-3Kick,clap,loop20176Organ DonorsWAV-4Kick,clap20176Organ DonorsWAV-5Kick20176Organ DonorsFolder 8.3.1.5.8 Loop 8WAV-1kick, clap. perc, hat, ride20176Organ DonorsWAV-2kick, clap. perc, hat20176Organ DonorsWAV-3kick, clap. perc20176Organ DonorsWAV-4kick, clap20176Organ DonorsWAV-5kick20176Organ DonorsWAV-6percussion loop20176Organ DonorsWAV-7ride20176Organ DonorsFolder 8.3.1.5.9 Loop 9WAV-1,clap,hats,perc,ride20176Organ DonorsWAV-2kick,clap,hats,perc,ride20176Organ DonorsWAV-3kick,clap,hats,perc20176Organ DonorsWAV-4kick,clap,hats20176Organ DonorsWAV-5kick,clap20176Organ DonorsFolder 8.3.1.5.10 Loop 10WAV-1kick,clap,hat,loop,ride20176Organ DonorsWAV-2Kick,clap,hat,perc20176Organ DonorsWAV-3Kick,clap,hat20176Organ DonorsWAV-4Kick,clap20176Organ DonorsWAV-5Kick20176Organ DonorsWAV-6loop20176Organ DonorsFolder 8.3.1.5.11 Loop 11WAV-1full loop20176Organ DonorsWAV-2full side chained loop20176Organ DonorsWAV-3kick full perc, ride20176Organ DonorsWAV-4kick full perc20176Organ DonorsWAV-5kick, clap part loop20176Organ DonorsWAV-6kick, clap20176Organ DonorsWAV-7kick20176Organ DonorsFolder 8.3.1.5.12 Loop 12WAV-1full with ride20176Organ DonorsWAV-2kick, hat,clap. perc, bongo20176Organ DonorsWAV-3kick, hat,clap. perc20176Organ DonorsWAV-4kick, hat,clap20176Organ DonorsWAV-5loop no kick ,ride20176Organ DonorsWAV-6loop no kick20176Organ DonorsFolder 8.3.1.5.13 Loop 13WAV-1Kick, clap, hat perc, ride20176Organ DonorsWAV-2Kick, clap, hat perc20176Organ DonorsWAV-3Kick, clap20176Organ DonorsWAV-4Kick,hat clap20176Organ DonorsWAV-5Kick20176Organ DonorsFolder 8.3.1.5.14 Loop 14WAV-1loop, clap, ride20176Organ DonorsWAV-2loop, clap,, kick, ride20176Organ DonorsWAV-3loop, clap,, kick20176Organ DonorsWAV-4loop, clap20176Organ DonorsWAV-5loop20176Organ DonorsFolder 8.3.1.5.15 Loop 15WAV-1loop, clap, ride, kick20176Organ DonorsWAV-2loop, clap, ride20176Organ DonorsWAV-3loop, clap20176Organ DonorsWAV-4loop20176Organ DonorsFolder 8.3.1.5.16 Loop 16WAV-1loop,clap,ride,kick20176Organ DonorsWAV-2loop,clap,ride20176Organ DonorsWAV-3loop,clap20176Organ DonorsWAV-4loop20176Organ DonorsFolder 8.3.1.5.17 Loop 17WAV-1loop, clap, ride20176Organ DonorsWAV-2loop, clap20176Organ DonorsWAV-3loop20176Organ DonorsFolder 8.3.1.5.18 Loop 18Folder 8.3.1.5.19 Loop 19WAV-1bongo,clap,hat.ride20176Organ DonorsWAV-2bongo,clap,hat20176Organ DonorsWAV-3bongo,clap20176Organ DonorsWAV-4bongo20176Organ DonorsFolder 8.3.1.5.20 Loop 20WAV-1loop,hats,clap,ride20176Organ DonorsWAV-2loop,hats,clap20176Organ DonorsWAV-3loop,hats20176Organ DonorsWAV-4loop20176Organ DonorsFolder 8.3.1.5.21 Loop 21WAV-1All Percussion20176Organ DonorsWAV-2Hats_Claps20176Organ DonorsWAV-3Hats_Claps_Ride20176Organ DonorsWAV-4Kick20176Organ DonorsWAV-5Stab20176Organ DonorsFolder 8.3.1.5.22 Loop 22WAV-1All Percussion20176Organ DonorsWAV-2Clap20176Organ DonorsWAV-3Hats,Clap,Knock20176Organ DonorsWAV-4Hats,Clap,Ride,Knock20176Organ DonorsWAV-5Kick20176Organ DonorsWAV-6Ride20176Organ DonorsFolder 8.3.1.5.23 Loop 23WAV-1full loop20176Organ DonorsWAV-2hats, rev clap, clap,perc,k20176Organ DonorsWAV-3hats, rev clap, clap,perc,r20176Organ DonorsWAV-4hats, rev clap, clap,perc20176Organ DonorsWAV-5hats, rev clap, clap20176Organ DonorsWAV-6hats, rev clap20176Organ DonorsFolder 8.3.1.5.24 Loop 24WAV-1hats clap, , kick20176Organ DonorsWAV-2hats clap, ride, kick20176Organ DonorsWAV-3hats clap, ride20176Organ DonorsWAV-4hats clap20176Organ DonorsFolder 8.3.1.5.25 loop 25WAV-1perc, ride. kick20176Organ DonorsWAV-2perc, ride20176Organ DonorsWAV-3perc20176Organ DonorsFolder 8.3.1.5.26 loop 26WAV-1long flange20176Organ DonorsFolder 8.3.1.5.27 loop 27WAV-1kick20176Organ DonorsWAV-2loop, ride, kick20176Organ DonorsWAV-3loop, ride20176Organ DonorsWAV-4loop20176Organ DonorsFolder 8.3.1.5.28 loop 28WAV-1full filter20176Organ DonorsWAV-2full loop20176Organ DonorsWAV-3kick20176Organ DonorsWAV-4more perc, ride20176Organ DonorsWAV-5more perc20176Organ DonorsWAV-6perc20176Organ DonorsFolder 8.3.1.5.29 loop 29WAV-1ex side20176Organ DonorsWAV-2loop clap, hat, ride, kick20176Organ DonorsWAV-3loop clap, hat, ride20176Organ DonorsWAV-4loop clap, hat20176Organ DonorsWAV-5loop clap, ride20176Organ DonorsWAV-6loop clap20176Organ DonorsFolder 8.3.1.5.30 Loop 30WAV-1perc,clap, , kick, ride20176Organ DonorsWAV-2perc,clap, , kick20176Organ DonorsWAV-3perc,clap, ride20176Organ DonorsWAV-4perc,clap20176Organ DonorsWAV-5perc20176Organ DonorsFolder 8.3.1.6 Multi SamplesFolder 8.3.1.6.1 Afro stabAIF-1AS1 c120176Organ DonorsAIF-2AS1 c220176Organ DonorsAIF-3AS1 c320176Organ DonorsAIF-4AS1 c420176Organ DonorsFolder 8.3.1.6.2 Miami stabAIF-1Ms1 c120176Organ DonorsAIF-2Ms1 c220176Organ DonorsAIF-3Ms1 c320176Organ DonorsAIF-4Ms1 c420176Organ DonorsFolder 8.3.1.6.3 nord bassAIF-1NB C220176Organ DonorsAIF-2NB C320176Organ DonorsAIF-3NB C420176Organ DonorsAIF-4NB C520176Organ DonorsFolder 8.3.1.6.4 Prohet leadAIF-1pl1 c320176Organ DonorsAIF-2pl1 c420176Organ DonorsAIF-3pl1 c520176Organ DonorsAIF-4pl1 c620176Organ DonorsFolder 8.3.1.6.5 Prohet riseAIF-1pr1 c220176Organ DonorsWAV-1pr1 c220176Organ DonorsAIF-2pr1 c320176Organ DonorsAIF-3pr1 c420176Organ DonorsFolder 8.3.1.6.6 Prophet ananlAIF-1pa1 c220176Organ DonorsAIF-2pa1 c320176Organ DonorsAIF-3pa1 c420176Organ DonorsAIF-4pa1 c520176Organ DonorsFolder 8.3.1.6.7 Prophet hooverAIF-1ph1 c320176Organ DonorsAIF-2ph1 c420176Organ DonorsAIF-3ph1 c520176Organ DonorsAIF-4ph1 c620176Organ DonorsFolder 8.3.1.6.8 Prophet stackAIF-1ps1 c220176Organ DonorsAIF-2ps1 c320176Organ DonorsAIF-3ps1 c420176Organ DonorsAIF-4ps1 c520176Organ DonorsFolder 8.3.1.6.9 Prophet techAIF-1pt1 c120176Organ DonorsAIF-2pt1 c220176Organ DonorsAIF-3pt1 c320176Organ DonorsAIF-4pt1 c420176Organ DonorsFolder 8.3.1.6.10 Propthet dirtAIF-1pd1 c220176Organ DonorsAIF-2pd1 c320176Organ DonorsAIF-3pd1 c420176Organ DonorsAIF-4pd1 c520176Organ DonorsFolder 8.3.1.6.11 prothet gritAIF-1pg1 c220176Organ DonorsAIF-2pg1 c320176Organ DonorsAIF-3pg1 c420176Organ DonorsAIF-4pg1 c520176Organ DonorsFolder 8.3.1.6.12 Tech stabAIF-1TS1 c320176Organ DonorsAIF-2TS1 c420176Organ DonorsAIF-3TS1 c520176Organ DonorsAIF-4TS1 c620176Organ DonorsFolder 8.3.1.6.13 tranceAIF-1t1 c220176Organ DonorsAIF-2t1 c320176Organ DonorsAIF-3t1 c420176Organ DonorsAIF-4t1 c520176Organ DonorsFolder 8.3.1.6.14 Trance 2AIF-1t2 c220176Organ DonorsAIF-2t2 c320176Organ DonorsAIF-3t2 c420176Organ DonorsAIF-4t2 c520176Organ DonorsFolder 8.3.1.6.15 Trance padAIF-1tp c220176Organ DonorsAIF-2tp c320176Organ DonorsAIF-3tp c420176Organ DonorsFolder 8.3.1.6.16 Virus monsterAIF-1VM1 c320176Organ DonorsAIF-2VM1 c420176Organ DonorsAIF-3VM1 c520176Organ DonorsAIF-4VM1 c620176Organ DonorsFolder 8.3.1.7 SFXWAV-1Clap crasher 138 bpm20176Organ DonorsWAV-2clap delay20176Organ DonorsWAV-3Clap FX20176Organ DonorsWAV-4crunch clap delay20176Organ DonorsWAV-5curly20176Organ DonorsWAV-6Era Bass Drop20176Organ DonorsWAV-7Era Drop20176Organ DonorsWAV-8herby bass20176Organ DonorsWAV-9Kaos Drop20176Organ DonorsWAV-10moover20176Organ DonorsWAV-11moving sweep20176Organ DonorsWAV-12scrape fx20176Organ DonorsWAV-13synth lfo20176Organ DonorsWAV-14wobble sub20176Organ DonorsFolder 8.3.1.7.1 Bass Bastard hit fxWAV-1bass bastard 2 fx20176Organ DonorsWAV-2bass bastard fx20176Organ DonorsFolder 8.3.1.7.2 MoogerfooginWAV-1120176Organ DonorsWAV-2220176Organ DonorsWAV-3320176Organ DonorsWAV-4420176Organ DonorsWAV-5520176Organ DonorsWAV-6620176Organ DonorsWAV-7720176Organ DonorsWAV-8920176Organ DonorsFolder 8.3.1.7.3 RisersAIF-1billy no mates riser20176Organ DonorsAIF-2riser 320176Organ DonorsWAV-1Dead Riser20176Organ DonorsWAV-2Riser fx 220176Organ DonorsWAV-3Riser fx20176Organ DonorsWAV-4timo riser20176Organ DonorsWAV-5vox wobble20176Organ DonorsWAV-6walt riser20176Organ DonorsWAV-7White riser fx20176Organ DonorsWAV-8White riser fx220176Organ DonorsFolder 8.3.1.7.4 White noiseWAV-1lfo down white20176Organ DonorsWAV-2whire lfo reverse phase20176Organ DonorsWAV-3whire lfo ring shift flange20176Organ DonorsWAV-4whire lfo ring shift20176Organ DonorsWAV-5whire lfo20176Organ DonorsWAV-6whire phaser20176Organ DonorsWAV-7whire sidechained 14020176Organ DonorsWAV-8whire straight20176Organ DonorsWAV-9white crazy flanger20176Organ DonorsWAV-10White noise splash20176Organ DonorsFolder 8.3.1.8 Single Hit PercussionFolder 8.3.1.8.1 ClapsWAV-11520176Organ DonorsWAV-21620176Organ DonorsWAV-31720176Organ DonorsWAV-41820176Organ DonorsWAV-5Clap 120176Organ DonorsWAV-6Clap 220176Organ DonorsWAV-7Clap 320176Organ DonorsWAV-8Clap 420176Organ DonorsWAV-9Clap 520176Organ DonorsWAV-10Clap 620176Organ DonorsWAV-11Clap 720176Organ DonorsWAV-12Clap 820176Organ DonorsWAV-13Clap 920176Organ DonorsWAV-14Clap 1020176Organ DonorsWAV-15Clap 1120176Organ DonorsWAV-16Clap 1220176Organ DonorsWAV-17claps 1320176Organ DonorsWAV-18claps 1420176Organ DonorsFolder 8.3.1.8.2 Closed HatWAV-1120176Organ DonorsWAV-2220176Organ DonorsWAV-3320176Organ DonorsWAV-4420176Organ DonorsWAV-5520176Organ DonorsWAV-6620176Organ DonorsWAV-7720176Organ DonorsWAV-8820176Organ DonorsWAV-9920176Organ DonorsWAV-101020176Organ DonorsWAV-111120176Organ DonorsWAV-121220176Organ DonorsWAV-131320176Organ DonorsWAV-141420176Organ DonorsWAV-151520176Organ DonorsWAV-161620176Organ DonorsWAV-171720176Organ DonorsWAV-181820176Organ DonorsWAV-191920176Organ DonorsWAV-202020176Organ DonorsFolder 8.3.1.8.3 Kick DrumsWAV-11720176Organ DonorsWAV-21820176Organ DonorsWAV-3kick 120176Organ DonorsWAV-4kick 220176Organ DonorsWAV-5kick 320176Organ DonorsWAV-6kick 420176Organ DonorsWAV-7kick 520176Organ DonorsWAV-8kick 620176Organ DonorsWAV-9kick 720176Organ DonorsWAV-10kick 820176Organ DonorsWAV-11kick 920176Organ DonorsWAV-12kick 1020176Organ DonorsWAV-13kick 1120176Organ DonorsWAV-14kick 1220176Organ DonorsWAV-15kick 1320176Organ DonorsWAV-16kick 1420176Organ DonorsWAV-17kick 1520176Organ DonorsWAV-18kick 1620176Organ DonorsFolder 8.3.1.8.4 Open HatWAV-1620176Organ DonorsWAV-2720176Organ DonorsWAV-3820176Organ DonorsWAV-4920176Organ DonorsWAV-51020176Organ DonorsWAV-61120176Organ DonorsWAV-71220176Organ DonorsWAV-81320176Organ DonorsWAV-91420176Organ DonorsWAV-101520176Organ DonorsWAV-111620176Organ DonorsWAV-121720176Organ DonorsWAV-131820176Organ DonorsWAV-141920176Organ DonorsWAV-152020176Organ DonorsWAV-16open 120176Organ DonorsWAV-17open 220176Organ DonorsWAV-18open 320176Organ DonorsWAV-19open 420176Organ DonorsWAV-20open 520176Organ DonorsFolder 8.3.1.8.5 Rdie CymbalWAV-1720176Organ DonorsWAV-2820176Organ DonorsWAV-3920176Organ DonorsWAV-4ride 120176Organ DonorsWAV-5ride 220176Organ DonorsWAV-6ride 320176Organ DonorsWAV-7ride 420176Organ DonorsWAV-8ride 520176Organ DonorsWAV-9ride 620176Organ DonorsFolder 8.3.1.8.6 SnareWAV-1120176Organ DonorsWAV-2220176Organ DonorsWAV-3320176Organ DonorsWAV-4420176Organ DonorsWAV-5520176Organ DonorsWAV-6620176Organ DonorsWAV-7720176Organ DonorsWAV-8820176Organ DonorsWAV-9920176Organ DonorsWAV-101020176Organ DonorsWAV-111120176Organ DonorsWAV-121220176Organ DonorsWAV-131320176Organ DonorsWAV-141420176Organ DonorsWAV-151520176Organ DonorsWAV-161620176Organ DonorsWAV-171720176Organ DonorsWAV-181820176Organ DonorsWAV-191920176Organ DonorsWAV-202020176Organ DonorsFolder 8.3.1.9 VocalsWAV-1murder sound20176Organ DonorsWAV-2Quad vox20176Organ DonorsFolder 8.3.2 Organ Donors - Hard Edge (Sample Pack)Folder 8.3.2.1 AcidMP3-1acid bass20176Organ DonorsAIF-1acid thunder 120176Organ DonorsFolder 8.3.2.2 Bass soundsAIF-1bass rise20176Organ DonorsAIF-2bass stab rise20176Organ DonorsAIF-3bast 120176Organ DonorsAIF-4bast 420176Organ DonorsAIF-5bast 1020176Organ DonorsAIF-6bast 1320176Organ DonorsAIF-7Beast Bass20176Organ DonorsAIF-8chipolata bass20176Organ DonorsAIF-9control bass20176Organ DonorsAIF-10Dead Bass20176Organ DonorsAIF-11deep20176Organ DonorsAIF-12fory bass20176Organ DonorsAIF-13fory bass220176Organ DonorsAIF-14fory bass320176Organ DonorsAIF-15fory bass420176Organ DonorsAIF-16helix bass20176Organ DonorsAIF-17helix bass220176Organ DonorsAIF-18helix bass320176Organ DonorsAIF-19helix bass420176Organ DonorsAIF-20helix bass520176Organ DonorsAIF-21kickbass 130 bpm20176Organ DonorsAIF-22Krewella BASS Main 120176Organ DonorsAIF-23lead bass20176Organ DonorsAIF-24lfo bass20176Organ DonorsAIF-25lost bass20176Organ DonorsAIF-26midget bass sub bass20176Organ DonorsAIF-27midget bass20176Organ DonorsAIF-28midget bass220176Organ DonorsAIF-29muggy boy bass20176Organ DonorsAIF-30muggy boy bass220176Organ DonorsAIF-31muggy boy bass320176Organ DonorsAIF-32ouch20176Organ DonorsAIF-33pitcher20176Organ DonorsAIF-34revy bass20176Organ DonorsAIF-35scotts hell belly bass20176Organ DonorsAIF-36scotts hell belly bass220176Organ DonorsAIF-37scotts hell belly bass320176Organ DonorsAIF-38sluty bass20176Organ DonorsAIF-39sluty bass220176Organ DonorsAIF-40Spunky Bass20176Organ DonorsAIF-41stu got no mates bass20176Organ DonorsAIF-42Tiest Bass20176Organ DonorsAIF-43tuff bass clean20176Organ DonorsAIF-44tyas v20176Organ DonorsAIF-45wobble bass20176Organ DonorsFolder 8.3.2.2.1 Blowback bass spanAIF-1Bass 120176Organ DonorsAIF-2Bass 220176Organ DonorsAIF-3Bass 320176Organ DonorsAIF-4Bass 420176Organ DonorsAIF-5Bass 520176Organ DonorsAIF-6Bass 620176Organ DonorsAIF-7Bass 720176Organ DonorsAIF-8Bass 820176Organ DonorsAIF-9Bass 920176Organ DonorsAIF-10Bass 1020176Organ DonorsAIF-11Bass 1120176Organ DonorsAIF-12Bass 1220176Organ DonorsAIF-13Bass 1320176Organ DonorsAIF-14Bass 1420176Organ DonorsAIF-15Bass 1520176Organ DonorsAIF-16Bass 1620176Organ DonorsAIF-17Bass 1720176Organ DonorsAIF-18Bass 1820176Organ DonorsAIF-19Bass 1920176Organ DonorsAIF-20Bass 2020176Organ DonorsAIF-21Bass 2120176Organ DonorsAIF-22Bass 2220176Organ DonorsAIF-23Bass 2320176Organ DonorsAIF-24Bass 2420176Organ DonorsAIF-25Bass 2520176Organ DonorsAIF-26Bass 2620176Organ DonorsAIF-27big bass rise20176Organ DonorsFolder 8.3.2.2.2 Fist of Fury SpanAIF-1bass 120176Organ DonorsAIF-2bass 220176Organ DonorsAIF-3bass 320176Organ DonorsAIF-4bass 420176Organ DonorsAIF-5bass 520176Organ DonorsAIF-6bass 620176Organ DonorsAIF-7bass 720176Organ DonorsAIF-8bass 820176Organ DonorsAIF-9bass 920176Organ DonorsAIF-10bass 1020176Organ DonorsAIF-11bass 1120176Organ DonorsAIF-12bass 1220176Organ DonorsAIF-13bass 1320176Organ DonorsAIF-14bass 1420176Organ DonorsAIF-15bass 1520176Organ DonorsAIF-16bass 1620176Organ DonorsAIF-17bass 1720176Organ DonorsFolder 8.3.2.2.3 kids bassAIF-1fiddle bass 120176Organ DonorsAIF-2fiddle bass 220176Organ DonorsAIF-3fiddle bass 320176Organ DonorsAIF-4fiddle bass 420176Organ DonorsAIF-5fiddle bass 520176Organ DonorsAIF-6fiddle bass 620176Organ DonorsAIF-7fiddle bass 720176Organ DonorsAIF-8fiddle bass 820176Organ DonorsAIF-9fiddle bass 920176Organ DonorsAIF-10fiddle bass 1020176Organ DonorsAIF-11fiddle bass 1120176Organ DonorsAIF-12fiddle bass 1220176Organ DonorsAIF-13kids bass 120176Organ DonorsAIF-14kids bass 220176Organ DonorsAIF-15kids bass 320176Organ DonorsAIF-16kids bass 420176Organ DonorsAIF-17kids bass 520176Organ DonorsAIF-18kids bass 620176Organ DonorsAIF-19kids bass 720176Organ DonorsAIF-20kids bass 820176Organ DonorsAIF-21kids bass 920176Organ DonorsAIF-22kids bass 1020176Organ DonorsAIF-23kids bass 1120176Organ DonorsAIF-24kids bass 1220176Organ DonorsFolder 8.3.2.2.4 Pitcher Bitch BassAIF-1Pitcher Bitch 120176Organ DonorsAIF-2Pitcher Bitch 220176Organ DonorsAIF-3Pitcher Bitch 320176Organ DonorsAIF-4Pitcher Bitch 420176Organ DonorsAIF-5Pitcher Bitch 520176Organ DonorsFolder 8.3.2.3 Hits & stabsAIF-1stb20176Organ DonorsFolder 8.3.2.4 Lead RiffsAIF-1bleepy20176Organ DonorsAIF-2deaddog20176Organ DonorsAIF-3dutch risey 20176Organ DonorsAIF-4dutch20176Organ DonorsAIF-5e220176Organ DonorsAIF-6hoover 220176Organ DonorsAIF-7hoover20176Organ DonorsAIF-8mentalasm 220176Organ DonorsAIF-9mentalasm20176Organ DonorsAIF-10no20176Organ DonorsAIF-11nord 120176Organ DonorsAIF-12percy20176Organ DonorsAIF-13phat moog20176Organ DonorsAIF-14sireny20176Organ DonorsAIF-15sireny220176Organ DonorsAIF-16string20176Organ DonorsAIF-17trance 220176Organ DonorsAIF-18trance20176Organ DonorsAIF-19trance320176Organ DonorsAIF-20virus hoover20176Organ DonorsAIF-21virus20176Organ DonorsAIF-22virus220176Organ DonorsAIF-23wee20176Organ DonorsFolder 8.3.2.5 Loops 135 bpmAIF-1chunk20176Organ DonorsFolder 8.3.2.6 SFXFolder 8.3.2.6.1 RiserAIF-1apache riser short20176Organ DonorsAIF-2apache riser20176Organ DonorsAIF-3apache riser220176Organ DonorsAIF-4apache riser320176Organ DonorsAIF-5blowback rise20176Organ DonorsAIF-6crazy riser 120176Organ DonorsAIF-7Furious riser20176Organ DonorsAIF-8glitch rise20176Organ DonorsAIF-9Glock riser20176Organ DonorsAIF-10mini rise20176Organ DonorsMP3-1mini rise20176Organ DonorsAIF-11nightmare riser20176Organ DonorsAIF-12nightmare rise 220176Organ DonorsAIF-13nord rise20176Organ DonorsAIF-14sick virus20176Organ DonorsFolder 8.3.2.6.2 whitesAIF-1white fx20176Organ DonorsFolder 8.3.2.7 single hit percussionFolder 8.3.2.8 VocalsFolder 8.3.3 Organ Donors - Hard Edge Basslines - Vol 1 (Sample Pack)Folder 8.3.3.1 Joey V remix 2AIF-1joe remix bass 120176Organ DonorsAIF-2joe remix bass 220176Organ DonorsAIF-3joe remix bass 320176Organ DonorsAIF-4joe remix bass 420176Organ DonorsAIF-5joe remix bass 520176Organ DonorsAIF-6joe remix bass 620176Organ DonorsAIF-7joe remix bass 720176Organ DonorsAIF-8joe remix bass 820176Organ DonorsAIF-9joe remix bass 920176Organ DonorsAIF-10new joe remix bass 120176Organ DonorsAIF-11new joe remix bass 220176Organ DonorsAIF-12new joe remix bass 320176Organ DonorsFolder 8.3.3.2 Massive SpansFolder 8.3.3.2.1 Massive Span 1 V TranceAIF-1V Span 120176Organ DonorsAIF-2V Span 220176Organ DonorsAIF-3V Span 320176Organ DonorsAIF-4V Span 420176Organ DonorsAIF-5V Span 520176Organ DonorsAIF-6V Span 620176Organ DonorsAIF-7V Span 720176Organ DonorsAIF-8V Span 820176Organ DonorsAIF-9V Span 920176Organ DonorsAIF-10V Span 1020176Organ DonorsFolder 8.3.3.2.2 Massive Span 2 Krew 135AIF-1mass 120176Organ DonorsAIF-2mass 220176Organ DonorsAIF-3mass 320176Organ DonorsAIF-4mass 420176Organ DonorsAIF-5mass 520176Organ DonorsAIF-6mass 620176Organ DonorsAIF-7mass 720176Organ DonorsAIF-8mass 820176Organ DonorsAIF-9mass 920176Organ DonorsAIF-10mass 1020176Organ DonorsAIF-11mass 1120176Organ DonorsAIF-12mass 1220176Organ DonorsAIF-13mass 1320176Organ DonorsAIF-14mass 1420176Organ DonorsAIF-15mass 1520176Organ DonorsAIF-16mass 1620176Organ DonorsAIF-17mass 1720176Organ DonorsAIF-18mass 1820176Organ DonorsAIF-19mass 1920176Organ DonorsAIF-20mass 2020176Organ DonorsAIF-21mass 2120176Organ DonorsAIF-22mass 2220176Organ DonorsFolder 8.3.3.3 New Virus BassAIF-1New Virus Bass 120176Organ DonorsAIF-2New Virus Bass 120176Organ DonorsFolder 8.3.3.4 RisersAIF-1go insane 120176Organ DonorsAIF-2go insane 220176Organ DonorsAIF-3go insane 320176Organ DonorsAIF-4go insane 420176Organ DonorsWAV-1go insane 520176Organ DonorsAIF-5go insane 620176Organ DonorsAIF-6go insane 720176Organ DonorsFolder 8.3.3.4.1 Riser Go InsaneFolder 8.3.3.5 Scot Pro Collab BassFolder 8.3.3.5.1 128AIF-1Nord Lead bleep 220176Organ DonorsAIF-2Nord Lead bleep 320176Organ DonorsAIF-3Nord Lead bleep 420176Organ DonorsAIF-4Nord Lead bleep 520176Organ DonorsAIF-5Nord Lead bleep 620176Organ DonorsAIF-6Nord Lead bleep20176Organ DonorsAIF-7Scot Pro Collab Bass 120176Organ DonorsAIF-8Scot Pro Collab Bass 420176Organ DonorsAIF-9Scot Pro Collab Bass 520176Organ DonorsAIF-10Scot Pro Collab Bass 620176Organ DonorsAIF-11Scot Pro Collab Bass 720176Organ DonorsAIF-12Scot Pro Collab Bass 820176Organ DonorsAIF-13Scot Pro Collab Bass 920176Organ DonorsAIF-14Scot Pro Collab Bass 1020176Organ DonorsAIF-15Scot Pro Collab Bass 1120176Organ DonorsFolder 8.3.3.5.2 135 versionsAIF-1Scot Pro Collab Bass 1020176Organ DonorsAIF-2Scot Pro Collab Bass 1120176Organ DonorsAIF-3sp bass 120176Organ DonorsAIF-4sp bass 220176Organ DonorsAIF-5sp bass 320176Organ DonorsAIF-6sp bass 420176Organ DonorsAIF-7sp bass 520176Organ DonorsAIF-8sp bass 620176Organ DonorsAIF-9sp bass 720176Organ DonorsAIF-10sp bass 820176Organ DonorsAIF-11sp bass 920176Organ DonorsAIF-12sp bass 1020176Organ DonorsAIF-13sp bass 1120176Organ DonorsAIF-14sp bass 1220176Organ DonorsFolder 8.3.3.5.3 Wrong PitchAIF-1Scot Pro Collab Bass fil 1020176Organ DonorsAIF-2Scot Pro Collab Bass fil 1120176Organ DonorsAIF-3Scot Pro Collab Bass fil 1220176Organ DonorsAIF-4Scot Pro Collab Bass fil 1320176Organ DonorsAIF-5Scot Pro Collab Bass fill 120176Organ DonorsAIF-6Scot Pro Collab Bass fill 220176Organ DonorsAIF-7Scot Pro Collab Bass fill 320176Organ DonorsAIF-8Scot Pro Collab Bass fill 420176Organ DonorsAIF-9Scot Pro Collab Bass fill 520176Organ DonorsAIF-10Scot Pro Collab Bass fill 620176Organ DonorsAIF-11Scot Pro Collab Bass fill 720176Organ DonorsAIF-12Scot Pro Collab Bass fill 820176Organ DonorsAIF-13Scot Pro Collab Bass fill 920176Organ DonorsFolder 8.3.3.6 Scotts FM SpanAIF-1scotts fm bass 120176Organ DonorsAIF-2scotts fm bass 220176Organ DonorsAIF-3scotts fm bass 320176Organ DonorsAIF-4scotts fm bass 420176Organ DonorsAIF-5scotts fm bass 520176Organ DonorsAIF-6scotts fm bass 620176Organ DonorsAIF-7scotts fm bass 720176Organ DonorsAIF-8scotts fm bass 820176Organ DonorsAIF-9scotts fm bass 920176Organ DonorsAIF-10scotts fm bass 1020176Organ DonorsAIF-11scotts fm bass 1120176Organ DonorsAIF-12scotts fm bass 1220176Organ DonorsAIF-13scotts fm bass 1320176Organ DonorsAIF-14scotts fm bass 1420176Organ DonorsAIF-15scotts fm bass 1520176Organ DonorsAIF-16scotts fm bass 1620176Organ DonorsAIF-17scotts fm bass 1720176Organ DonorsAIF-18scotts fm bass 1820176Organ DonorsAIF-19scotts fm bass 1920176Organ DonorsAIF-20scotts fm bass 2020176Organ DonorsAIF-21scotts fm bass 2120176Organ DonorsAIF-22scotts fm bass 2220176Organ DonorsAIF-23scotts fm bass 2320176Organ DonorsAIF-24scotts fm bass 2420176Organ DonorsAIF-25scotts fm bass 2520176Organ DonorsAIF-26scotts fm bass 2620176Organ DonorsAIF-27scotts fm bass 2720176Organ DonorsAIF-28scotts fm bass 2820176Organ DonorsAIF-29scotts fm bass 2920176Organ DonorsAIF-30scotts fm bass 3020176Organ DonorsAIF-31scotts fm bass 3120176Organ DonorsAIF-32scotts fm bass 3220176Organ DonorsAIF-33scotts fm bass 3320176Organ DonorsAIF-34scotts fm bass 3420176Organ DonorsAIF-35scotts fm bass 3520176Organ DonorsFolder 8.3.3.7 Spans New 1Folder 8.3.3.7.1 135AIF-1Scot Pro Collab Bass fil 920176Organ DonorsAIF-2Scot Pro Collab Bass fil 1020176Organ DonorsAIF-3Scot Pro Collab Bass fil 1120176Organ DonorsAIF-4Scot Pro Collab Bass fil 1220176Organ DonorsAIF-5Scot Pro Collab Bass fil 1320176Organ DonorsAIF-6Scot Pro Collab Bass fil 1420176Organ DonorsAIF-7Scot Pro Collab Bass fil 1520176Organ DonorsAIF-8Scot Pro Collab Bass fill 220176Organ DonorsAIF-9Scot Pro Collab Bass fill 320176Organ DonorsAIF-10Scot Pro Collab Bass fill 420176Organ DonorsAIF-11Scot Pro Collab Bass fill 520176Organ DonorsAIF-12Scot Pro Collab Bass fill 620176Organ DonorsAIF-13Scot Pro Collab Bass fill 720176Organ DonorsAIF-14Scot Pro Collab Bass fill 820176Organ DonorsFolder 8.3.3.8 Spans New 2MP3-1SOME ROUGH IDEAS20176Organ DonorsAIF-1Spans New 2 120176Organ DonorsAIF-2Spans New 2 220176Organ DonorsAIF-3Spans New 2 320176Organ DonorsAIF-4Spans New 2 420176Organ DonorsAIF-5Spans New 2 520176Organ DonorsAIF-6Spans New 2 620176Organ DonorsAIF-7Spans New 2 720176Organ DonorsAIF-8Spans New 2 820176Organ DonorsAIF-9Spans New 2 920176Organ DonorsAIF-10Spans New 2 1020176Organ DonorsAIF-11Spans New 2 1120176Organ DonorsAIF-12Spans New filt 120176Organ DonorsAIF-13Spans New filt 220176Organ DonorsAIF-14Spans New filt 320176Organ DonorsAIF-15Spans New filt 420176Organ DonorsAIF-16Spans New fx 120176Organ DonorsAIF-17Spans New fx 220176Organ DonorsAIF-18Spans New fx 320176Organ DonorsAIF-19Spans New fx 420176Organ DonorsAIF-20Spans New fx 520176Organ DonorsAIF-21Spans New fx 620176Organ DonorsAIF-22Spans New fx 720176Organ DonorsAIF-23Spans New fx 820176Organ DonorsAIF-24Spans New fx 920176Organ DonorsAIF-25Spans New pattern 120176Organ DonorsAIF-26Spans New pattern 220176Organ DonorsAIF-27Spans New pattern 320176Organ DonorsAIF-28Spans New pattern 420176Organ DonorsAIF-29Spans New pattern 520176Organ DonorsAIF-30Spans New pattern 620176Organ DonorsAIF-31Spans New pattern 720176Organ DonorsAIF-32Spans New pattern 820176Organ DonorsFolder 8.3.3.9 Spans New 3 (Fuck)AIF-1fuck 120176Organ DonorsAIF-2fuck 220176Organ DonorsAIF-3fuck 320176Organ DonorsAIF-4fuck 420176Organ DonorsAIF-5fuck 520176Organ DonorsAIF-6fuck 620176Organ DonorsAIF-7fuck main 120176Organ DonorsFolder 8.3.3.10 Spans new 4 (herry remix0AIF-1sherry bass 120176Organ DonorsAIF-2sherry bass 2 120176Organ DonorsAIF-3sherry bass 2 220176Organ DonorsAIF-4sherry bass 2 320176Organ DonorsAIF-5sherry bass 2 420176Organ DonorsAIF-6sherry bass 2 520176Organ DonorsAIF-7sherry bass 2 620176Organ DonorsAIF-8sherry bass 2 720176Organ DonorsAIF-9sherry bass 2 820176Organ DonorsAIF-10sherry bass 220176Organ DonorsAIF-11sherry bass 320176Organ DonorsAIF-12sherry bass 420176Organ DonorsAIF-13sherry bass 520176Organ DonorsAIF-14sherry bass 620176Organ DonorsAIF-15sherry bass 720176Organ DonorsAIF-16sherry bass 820176Organ DonorsAIF-17sherry bass 920176Organ DonorsAIF-18sherry bass 1020176Organ DonorsAIF-19sherry bass 1120176Organ DonorsAIF-20sherry bass 1220176Organ DonorsAIF-21sherry bass 1320176Organ DonorsAIF-22sherry bass 1420176Organ DonorsAIF-23sherry bass 1520176Organ DonorsAIF-24sherry bass 1620176Organ DonorsAIF-25sherry bass 1720176Organ DonorsAIF-26sherry bass fx 120176Organ DonorsAIF-27sherry bass fx 220176Organ DonorsAIF-28sherry bass fx 320176Organ DonorsAIF-29sherry bass fx 420176Organ DonorsAIF-30sherry bass fx 520176Organ DonorsAIF-31sherry bass fx 620176Organ DonorsAIF-32sherry bass fx 720176Organ DonorsAIF-33sherry bass fx 820176Organ DonorsAIF-34sherry bass fx 920176Organ DonorsFolder 8.3.3.11 Spans new 5 (Marcel woods)Folder 8.3.3.11.1 new sp bassAIF-1bass fill 120176Organ DonorsAIF-2bass fill 220176Organ DonorsAIF-3bass fill 320176Organ DonorsAIF-4bass fill 420176Organ DonorsAIF-5main 120176Organ DonorsAIF-6main 220176Organ DonorsAIF-7main 320176Organ DonorsAIF-8main 420176Organ DonorsAIF-9main 520176Organ DonorsAIF-10main 620176Organ DonorsAIF-11main 720176Organ DonorsAIF-12main 820176Organ DonorsFolder 8.3.3.11.2 Nord BassAIF-1nord 120176Organ DonorsAIF-2nord 220176Organ DonorsAIF-3nord 320176Organ DonorsAIF-4nord 420176Organ DonorsAIF-5nord 520176Organ DonorsFolder 8.3.3.11.3 synthAIF-1hat20176Organ DonorsAIF-2ping 120176Organ DonorsAIF-3ping 220176Organ DonorsAIF-4synth 120176Organ DonorsAIF-5synth 220176Organ DonorsAIF-6synth 320176Organ DonorsAIF-7synth 420176Organ DonorsAIF-8synth 520176Organ DonorsAIF-9synth bass 220176Organ DonorsAIF-10synth bass 320176Organ DonorsAIF-11synth bass 420176Organ DonorsAIF-12synth bass 520176Organ DonorsAIF-13synth bass 620176Organ DonorsAIF-14synth bass 720176Organ DonorsAIF-15synth bass 820176Organ DonorsAIF-16synth bass 920176Organ DonorsAIF-17synth bass 1020176Organ DonorsAIF-18synth bass20176Organ DonorsFolder 8.3.3.12 Strip Club BassAIF-1Strip Club Bass 120176Organ DonorsAIF-2Strip Club Bass 220176Organ DonorsAIF-3Strip Club Bass 320176Organ DonorsAIF-4Strip Club Bass 420176Organ DonorsAIF-5Strip Club Bass 520176Organ DonorsAIF-6Strip Club Bass 620176Organ DonorsAIF-7Strip Club Bass 720176Organ DonorsFolder 8.3.3.13 V Span 23 Fuck ItAIF-1fuck it 120176Organ DonorsAIF-2fuck it 220176Organ DonorsAIF-3fuck it 320176Organ DonorsFolder 8.3.3.14 V Span 24 Show Me LoveAIF-1Bass 120176Organ DonorsAIF-2Bass 2 120176Organ DonorsAIF-3Bass 2 1220176Organ DonorsAIF-4Bass 2 1320176Organ DonorsAIF-5Bass 220176Organ DonorsAIF-6Bass 320176Organ DonorsAIF-7Bass 420176Organ DonorsAIF-8Bass 520176Organ DonorsAIF-9Bass 620176Organ DonorsAIF-10Bass 720176Organ DonorsAIF-11Bass 820176Organ DonorsAIF-12Bass 920176Organ DonorsAIF-13Bass 1020176Organ DonorsAIF-14Bass 1120176Organ DonorsAIF-15Bass 1220176Organ DonorsAIF-16Bass sub 120176Organ DonorsAIF-17fx 120176Organ DonorsAIF-18fx 220176Organ DonorsAIF-19fx 320176Organ DonorsAIF-20fx 420176Organ DonorsAIF-21fx 520176Organ DonorsAIF-22fx 620176Organ DonorsAIF-23fx 720176Organ DonorsAIF-24Me Love 120176Organ DonorsAIF-25Me Love 220176Organ DonorsAIF-26Me Love 320176Organ DonorsAIF-27Me Love 420176Organ DonorsAIF-28Me Love 520176Organ DonorsAIF-29Me Love 620176Organ DonorsAIF-30Me Love 720176Organ DonorsAIF-31Me Love 820176Organ DonorsAIF-32Me Love 920176Organ DonorsAIF-33Me Love 1020176Organ DonorsAIF-34Me Love 1120176Organ DonorsAIF-35Me Love 1220176Organ DonorsAIF-36Me Love 1320176Organ DonorsAIF-37Me Love 1420176Organ DonorsAIF-38Me Love 1520176Organ DonorsFolder 8.3.3.15 Virus Span 1 MoogerfooginWAV-1BLUE TUNED VOLT20176Organ DonorsAIF-1Mooger 2014 120176Organ DonorsAIF-2Mooger 2014 220176Organ DonorsAIF-3Mooger 2014 320176Organ DonorsAIF-4Mooger 2014 420176Organ DonorsAIF-5scott bass 120176Organ DonorsAIF-6scott bass 220176Organ DonorsAIF-7scott bass 320176Organ DonorsAIF-8scott bass 420176Organ DonorsAIF-9scott bass 520176Organ DonorsAIF-10scott bass 620176Organ DonorsAIF-11scott bass 720176Organ DonorsAIF-12scott bass 820176Organ DonorsAIF-13scott bass 920176Organ DonorsAIF-14scott bass 1020176Organ DonorsAIF-15scott bass 1120176Organ DonorsAIF-16scott bass 1220176Organ DonorsAIF-17scott bass 1320176Organ DonorsAIF-18scott bass 1420176Organ DonorsAIF-19scott bass 1520176Organ DonorsAIF-20scott bass 1620176Organ DonorsAIF-21scott bass 1720176Organ DonorsAIF-22scott bass 1820176Organ DonorsAIF-23scott bass 1920176Organ DonorsAIF-24scott bass 2020176Organ DonorsAIF-25scott bass 2120176Organ DonorsAIF-26scott bass 2220176Organ DonorsAIF-27scott bass 2320176Organ DonorsAIF-28scott bass 2420176Organ DonorsAIF-29scott bass 2520176Organ DonorsAIF-30scott bass 2620176Organ DonorsAIF-31scott bass 2720176Organ DonorsFolder 8.3.3.16 Virus Span 6 Ultra KaoticaAIF-1Ultra Kaotica filter 120176Organ DonorsAIF-2Ultra Kaotica.220176Organ DonorsAIF-3Ultra Kaotica.320176Organ DonorsAIF-4Ultra Kaotica.420176Organ DonorsAIF-5Ultra Kaotica.520176Organ DonorsAIF-6Ultra Kaotica20176Organ DonorsFolder 8.3.3.17 Virus span 7 isaac 2 bassAIF-1chorus 120176Organ DonorsAIF-2chorus 220176Organ DonorsAIF-3chorus 320176Organ DonorsAIF-4chorus 420176Organ DonorsAIF-5chorus 520176Organ DonorsAIF-6chorus 620176Organ DonorsAIF-7chorus 720176Organ DonorsAIF-8chorus 820176Organ DonorsAIF-9chorus 920176Organ DonorsAIF-10isaac 2 bass 120176Organ DonorsAIF-11isaac 2 bass 220176Organ DonorsAIF-12isaac 2 bass 320176Organ DonorsAIF-13isaac 2 bass 420176Organ DonorsAIF-14isaac 2 bass 520176Organ DonorsAIF-15isaac 2 bass 620176Organ DonorsAIF-16isaac 2 bass 720176Organ DonorsAIF-17isaac 2 bass 820176Organ DonorsAIF-18isaac 2 bass 920176Organ DonorsAIF-19isaac 2 bass 1020176Organ DonorsAIF-20isaac 2 bass 1120176Organ DonorsAIF-21isaac 2 bass 1220176Organ DonorsAIF-22isaac 2 bass 1320176Organ DonorsAIF-23isaac 2 bass 1420176Organ DonorsAIF-24verse pitch 120176Organ DonorsAIF-25verse pitch 220176Organ DonorsAIF-26verse pitch 320176Organ DonorsAIF-27verse pitch 420176Organ DonorsAIF-28verse pitch 520176Organ DonorsAIF-29verse pitch 620176Organ DonorsAIF-30verse pitch 720176Organ DonorsAIF-31verse pitch 820176Organ DonorsAIF-32verse pitch 920176Organ DonorsAIF-33verse pitch 1020176Organ DonorsFolder 8.3.3.18 Virus Span 8 (Sherry New)AIF-1sherry new 120176Organ DonorsAIF-2sherry new 220176Organ DonorsAIF-3sherry new 320176Organ DonorsAIF-4sherry new 420176Organ DonorsAIF-5sherry new 520176Organ DonorsAIF-6sherry new 620176Organ DonorsAIF-7sherry new 720176Organ DonorsAIF-8sherry new 820176Organ DonorsAIF-9sherry new 920176Organ DonorsAIF-10sherry new 1020176Organ DonorsAIF-11sherry new 1120176Organ DonorsAIF-12sherry new 1220176Organ DonorsAIF-13sherry new 1320176Organ DonorsAIF-14sherry new 1420176Organ DonorsAIF-15sherry new 1520176Organ DonorsAIF-16sherry new 1620176Organ DonorsAIF-17sherry new 1720176Organ DonorsAIF-18sherry new 1820176Organ DonorsAIF-19sherry new 1920176Organ DonorsAIF-20sherry new 2020176Organ DonorsAIF-21sherry new 2120176Organ DonorsFolder 8.3.3.19 Virus Span 9 (Scot Pro Collab Bass)AIF-1fx bass 120176Organ DonorsAIF-2fx bass 220176Organ DonorsAIF-3fx bass 320176Organ DonorsAIF-4fx bass 420176Organ DonorsAIF-5fx bass 520176Organ DonorsAIF-6fx bass 620176Organ DonorsAIF-7fx bass 720176Organ DonorsAIF-8fx bass 820176Organ DonorsAIF-9fx bass 920176Organ DonorsAIF-10fx bass 1020176Organ DonorsAIF-11fx bass 1120176Organ DonorsAIF-12fx bass 1220176Organ DonorsAIF-13fx bass 1320176Organ DonorsAIF-14scot pro bass 120176Organ DonorsAIF-15scot pro bass 220176Organ DonorsAIF-16scot pro bass 320176Organ DonorsAIF-17scot pro bass 420176Organ DonorsAIF-18scot pro bass 5 merged20176Organ DonorsAIF-19scot pro bass 20176Organ DonorsFolder 8.3.3.20 Virus Span 10 (Space InvaderAIF-1Space Invade keychang 120176Organ DonorsAIF-2Space Invade keychang 2120176Organ DonorsAIF-3Space Invade keychang 320176Organ DonorsAIF-4Space Invade keychang 420176Organ DonorsAIF-5Space Invade keychang 520176Organ DonorsAIF-6Space Invade keychang 620176Organ DonorsAIF-7Space Invade keychang 720176Organ DonorsAIF-8Space Invade keychang 820176Organ DonorsAIF-9Space Invade keychang 920176Organ DonorsAIF-10Space Invader bass 120176Organ DonorsAIF-11Space Invader bass 220176Organ DonorsAIF-12Space Invader bass 320176Organ DonorsAIF-13Space Invader bass 420176Organ DonorsAIF-14Space Invader bass 520176Organ DonorsAIF-15Space Invader bass 620176Organ DonorsAIF-16Space Invader bass 720176Organ DonorsAIF-17Space Invader bass 820176Organ DonorsAIF-18Space Invader bass 920176Organ DonorsAIF-19Space Invader bass 1020176Organ DonorsAIF-20Space Invader bass 1120176Organ DonorsAIF-21Space Invader bass 1220176Organ DonorsAIF-22Space Invader bass 1320176Organ DonorsAIF-23Space Invader bass 1420176Organ DonorsAIF-24Space Invader bass 1520176Organ DonorsAIF-25Space Invader bass 1620176Organ DonorsAIF-26Space Invader bass 1720176Organ DonorsAIF-27Space Invader bass 1820176Organ DonorsAIF-28Space Invader bass 1920176Organ DonorsAIF-29Space Invader bass 2020176Organ DonorsAIF-30Space Invader filt 120176Organ DonorsAIF-31Space Invader filt 220176Organ DonorsAIF-32Space Invader filt 320176Organ DonorsAIF-33Space Invader filt 420176Organ DonorsAIF-34Space Invader filt 520176Organ DonorsAIF-35Space Invader filt 620176Organ DonorsAIF-36Space Invader filt 720176Organ DonorsAIF-37Space Invader fx 120176Organ DonorsAIF-38Space Invader fx 220176Organ DonorsAIF-39Space Invader fx 320176Organ DonorsAIF-40Space Invader fx 420176Organ DonorsAIF-41Space Invader fx 520176Organ DonorsAIF-42Space Invader fx 620176Organ DonorsAIF-43Space Invader fx 720176Organ DonorsAIF-44Space Invader fx 820176Organ DonorsAIF-45Space Invader fx 920176Organ DonorsAIF-46Space Invader fx 1020176Organ DonorsAIF-47Space Invader fx 1120176Organ DonorsFolder 8.3.3.20.1 old keyAIF-1Space Invader bass main 120176Organ DonorsAIF-2Space Invader bass main 220176Organ DonorsAIF-3Space Invader bass main 320176Organ DonorsAIF-4Space Invader bass main 420176Organ DonorsAIF-5Space Invader bass main 520176Organ DonorsAIF-6Space Invader bass main 620176Organ DonorsAIF-7Space Invader bass main 720176Organ DonorsAIF-8Space Invader bass main 820176Organ DonorsFolder 8.3.3.21 Virus Span 11 Oakenfold remixAIF-1oakie bass 120176Organ DonorsAIF-2oakie bass 220176Organ DonorsAIF-3oakie bass 320176Organ DonorsAIF-4oakie bass 420176Organ DonorsAIF-5oakie bass 520176Organ DonorsAIF-6oakie bass 620176Organ DonorsAIF-7oakie bass 720176Organ DonorsAIF-8oakie bass 820176Organ DonorsFolder 8.3.3.22 Virus Span 12 (Das Glack)AIF-1DasGlack Bass 120176Organ DonorsAIF-2DasGlack Bass 220176Organ DonorsAIF-3DasGlack Bass 320176Organ DonorsAIF-4DasGlack Bass 420176Organ DonorsAIF-5DasGlack Bass 520176Organ DonorsAIF-6DasGlack Bass 620176Organ DonorsMP3-1DasGlack120176Organ DonorsFolder 8.3.3.23 Virus Span 13 Im Raving SpanAIF-1Im Raving fx 120176Organ DonorsAIF-2Im Raving fx 220176Organ DonorsAIF-3Im Raving fx 320176Organ DonorsAIF-4Im Raving fx 420176Organ DonorsAIF-5Im Raving fx 520176Organ DonorsAIF-6Im Raving fx 620176Organ DonorsAIF-7Im Raving fx 720176Organ DonorsAIF-8Im Raving Span 120176Organ DonorsAIF-9Im Raving Span 220176Organ DonorsAIF-10Im Raving Span 320176Organ DonorsAIF-11Im Raving Span 420176Organ DonorsAIF-12Im Raving Span 520176Organ DonorsAIF-13Im Raving Span 620176Organ DonorsAIF-14Im Raving Span 720176Organ DonorsAIF-15Im Raving Span 820176Organ DonorsAIF-16Im Raving Span 920176Organ DonorsAIF-17Im Raving Span 1020176Organ DonorsAIF-18Im Raving Span 1120176Organ DonorsAIF-19Im Raving Span 1220176Organ DonorsAIF-20Im Raving Span 1320176Organ DonorsAIF-21Im Raving Span 1420176Organ DonorsAIF-22Im Raving Span 1520176Organ DonorsAIF-23Im Raving Span 1620176Organ DonorsAIF-24Im Raving Span 1720176Organ DonorsFolder 8.3.3.24 Virus Span 13 Pitched DownAIF-1Im Raving fx 120176Organ DonorsAIF-2Im Raving fx 220176Organ DonorsAIF-3Im Raving fx 320176Organ DonorsAIF-4Im Raving fx 420176Organ DonorsAIF-5Im Raving fx 520176Organ DonorsAIF-6Im Raving fx 620176Organ DonorsAIF-7Im Raving fx 720176Organ DonorsAIF-8Im Raving Span 120176Organ DonorsAIF-9Im Raving Span 220176Organ DonorsAIF-10Im Raving Span 320176Organ DonorsAIF-11Im Raving Span 420176Organ DonorsAIF-12Im Raving Span 520176Organ DonorsAIF-13Im Raving Span 620176Organ DonorsAIF-14Im Raving Span 720176Organ DonorsAIF-15Im Raving Span 820176Organ DonorsAIF-16Im Raving Span 920176Organ DonorsAIF-17Im Raving Span 1020176Organ DonorsAIF-18Im Raving Span 1120176Organ DonorsAIF-19Im Raving Span 1220176Organ DonorsAIF-20Im Raving Span 1320176Organ DonorsAIF-21Im Raving Span 1420176Organ DonorsAIF-22Im Raving Span 1520176Organ DonorsAIF-23Im Raving Span 1620176Organ DonorsAIF-24Im Raving Span 1720176Organ DonorsFolder 8.3.3.25 Virus Span 14 lfoAIF-13rd osc 120176Organ DonorsAIF-23rd osc 220176Organ DonorsAIF-33rd osc 320176Organ DonorsAIF-4Filtered Bass 120176Organ DonorsAIF-5Filtered Bass 220176Organ DonorsAIF-6Filtered Bass 320176Organ DonorsAIF-7Filtered Bass 420176Organ DonorsAIF-8Filtered Bass 520176Organ DonorsAIF-9Filtered Bass 620176Organ DonorsAIF-10Filtered Bass 720176Organ DonorsAIF-11lead 3 layer 120176Organ DonorsAIF-12lead 3 layer 220176Organ DonorsAIF-13lead 3 layer 320176Organ DonorsAIF-14lead 3 layer 420176Organ DonorsAIF-15lead 3 layer 520176Organ DonorsAIF-16lead 3 layer 620176Organ DonorsAIF-17lead 3 layer 720176Organ DonorsAIF-18lead 3 layer 820176Organ DonorsAIF-19lead 3 layer 920176Organ DonorsAIF-20lead 3 layer 1020176Organ DonorsAIF-21lead 3 layer 1120176Organ DonorsAIF-22lead 3 layer 1220176Organ DonorsAIF-23lead 3 layer 1320176Organ DonorsAIF-24lead 3 layer 1420176Organ DonorsAIF-25lead 3 layer 1520176Organ DonorsAIF-26lead 3 layer 1620176Organ DonorsAIF-27lead 3 layer 1720176Organ DonorsAIF-28lead 3 layer 1820176Organ DonorsAIF-29lead 3 layer 1920176Organ DonorsAIF-30lead 3 layer 2020176Organ DonorsAIF-31lead 3 layer 2120176Organ DonorsAIF-32lead 3 layer 2220176Organ DonorsAIF-33lead 3 layer 2320176Organ DonorsAIF-34lfo 120176Organ DonorsAIF-35lfo 220176Organ DonorsAIF-36lfo 320176Organ DonorsAIF-37lfo 420176Organ DonorsAIF-38lfo 520176Organ DonorsAIF-39lfo 620176Organ DonorsAIF-40lfo 720176Organ DonorsAIF-41lfo 820176Organ DonorsAIF-42lfo 920176Organ DonorsAIF-43lfo 1020176Organ DonorsAIF-44lfo 1120176Organ DonorsAIF-45lfo 1220176Organ DonorsAIF-46lfo 1320176Organ DonorsAIF-47lfo 1420176Organ DonorsAIF-48lfo 1520176Organ DonorsAIF-49lfo 1620176Organ DonorsAIF-50lfo 1720176Organ DonorsAIF-51lfo 1820176Organ DonorsAIF-52lfo fx 120176Organ DonorsAIF-53lfo fx 220176Organ DonorsAIF-54lfo fx 320176Organ DonorsAIF-55lfo fx 420176Organ DonorsAIF-56lfo fx 520176Organ DonorsAIF-57lfo fx 620176Organ DonorsAIF-58lfo fx 720176Organ DonorsAIF-59lfo fx 820176Organ DonorsAIF-60lfo fx 920176Organ DonorsAIF-61lfo fx 1020176Organ DonorsAIF-62lfo fx 1120176Organ DonorsAIF-63lfo fx 1220176Organ DonorsAIF-64lfo pattern 120176Organ DonorsAIF-65lfo pattern 220176Organ DonorsAIF-66lfo pattern 320176Organ DonorsAIF-67lfo pattern 420176Organ DonorsAIF-68lfo pattern 520176Organ DonorsAIF-69lfo pattern 620176Organ DonorsAIF-70lfo pattern 720176Organ DonorsAIF-71lfo pattern 820176Organ DonorsAIF-72lfo pattern 920176Organ DonorsAIF-73lfo pattern 1020176Organ DonorsAIF-74lfo pattern 1120176Organ DonorsFolder 8.3.3.26 Virus Span 15 SP RemixAIF-1Filt S P 120176Organ DonorsAIF-2Filt S P 220176Organ DonorsAIF-3Filt S P 320176Organ DonorsAIF-4Filt S P 420176Organ DonorsAIF-5Filt S P 520176Organ DonorsAIF-6Filt S P 620176Organ DonorsAIF-7Filt S P 720176Organ DonorsAIF-8FX S P 120176Organ DonorsAIF-9FX S P 220176Organ DonorsAIF-10FX S P 320176Organ DonorsAIF-11FX S P 420176Organ DonorsAIF-12FX S P 520176Organ DonorsAIF-13FX S P 620176Organ DonorsAIF-14FX S P 720176Organ DonorsAIF-15Layer S P 120176Organ DonorsAIF-16Layer S P 220176Organ DonorsAIF-17Main S P 120176Organ DonorsAIF-18Main S P 220176Organ DonorsAIF-19Main S P 320176Organ DonorsAIF-20Main S P 420176Organ DonorsAIF-21Main S P 520176Organ DonorsAIF-22Main S P 620176Organ DonorsAIF-23Main S P 720176Organ DonorsAIF-24Main S P 820176Organ DonorsFolder 8.3.3.27 Virus span 16 zebra waltzAIF-1zebra 120176Organ DonorsAIF-2zebra 220176Organ DonorsAIF-3zebra 320176Organ DonorsAIF-4zebra 420176Organ DonorsAIF-5zebra 520176Organ DonorsAIF-6zebra 620176Organ DonorsAIF-7zebra 720176Organ DonorsAIF-8zebra fx 120176Organ DonorsAIF-9zebra fx 220176Organ DonorsAIF-10zebra fx 320176Organ DonorsAIF-11zebra fx 420176Organ DonorsAIF-12zebra fx 520176Organ DonorsAIF-13zebra fx 620176Organ DonorsAIF-14zebra fx 720176Organ DonorsAIF-15zebra fx 820176Organ DonorsAIF-16zebra fx 920176Organ DonorsAIF-17zebra fx 1020176Organ DonorsAIF-18zebra fx 1120176Organ DonorsAIF-19zebra fx 1220176Organ DonorsAIF-20zebra fx 1320176Organ DonorsAIF-21zebra fx 1420176Organ DonorsAIF-22zebra fx 1520176Organ DonorsAIF-23zebra fx 1620176Organ DonorsAIF-24zebra fx 1720176Organ DonorsAIF-25zebra fx 1820176Organ DonorsAIF-26zebra fx 1920176Organ DonorsAIF-27zebra fx 2020176Organ DonorsAIF-28zebra fx 2120176Organ DonorsAIF-29zebra fx 2220176Organ DonorsAIF-30zebra fx 2320176Organ DonorsFolder 8.3.3.28 Virus Span 17 Money BassAIF-1Money Bass 120176Organ DonorsAIF-2Money Bass 220176Organ DonorsAIF-3Money Bass 320176Organ DonorsAIF-4Money Bass 420176Organ DonorsAIF-5Money Bass 520176Organ DonorsAIF-6Money Bass 620176Organ DonorsAIF-7Money Bass 720176Organ DonorsAIF-8Money Bass 820176Organ DonorsAIF-9Money Bass 920176Organ DonorsAIF-10Money Bass 1020176Organ DonorsAIF-11Money Bass 1120176Organ DonorsAIF-12Money Bass 1220176Organ DonorsAIF-13Money Bass 1320176Organ DonorsAIF-14Money Bass 1420176Organ DonorsAIF-15Money Bass 1520176Organ DonorsAIF-16Money Bass fx 120176Organ DonorsAIF-17Money Bass fx 220176Organ DonorsAIF-18Money Bass fx 320176Organ DonorsAIF-19Money Bass fx 420176Organ DonorsAIF-20Money Bass fx 520176Organ DonorsAIF-21Money Bass fx 620176Organ DonorsAIF-22Money Bass fx 720176Organ DonorsAIF-23Money Bass fx 820176Organ DonorsAIF-24Money Bass fx 920176Organ DonorsAIF-25Money Bass fx 1020176Organ DonorsAIF-26Money Bass fx 1120176Organ DonorsAIF-27Money Bass fx 1220176Organ DonorsAIF-28Money Bass fx 1320176Organ DonorsAIF-29Money Bass fx 1420176Organ DonorsAIF-30Money Bass fx 1520176Organ DonorsAIF-31Money Bass fx 1620176Organ DonorsAIF-32Money Bass fx 1720176Organ DonorsFolder 8.3.3.29 Virus Span 18 Killa 1AIF-1killa 120176Organ DonorsAIF-2killa 220176Organ DonorsAIF-3killa 320176Organ DonorsAIF-4killa filt 120176Organ DonorsAIF-5killa filt 2 120176Organ DonorsAIF-6killa filt 2 220176Organ DonorsAIF-7killa filt 2 320176Organ DonorsAIF-8killa filt 2 420176Organ DonorsAIF-9killa filt 2 520176Organ DonorsAIF-10killa filt 2 620176Organ DonorsAIF-11killa filt 2 20176Organ DonorsAIF-12killa filt 320176Organ DonorsAIF-13killa filt 420176Organ DonorsAIF-14killa fx 120176Organ DonorsAIF-15killa fx 220176Organ DonorsAIF-16killa fx 320176Organ DonorsAIF-17killa fx 420176Organ DonorsAIF-18killa fx 520176Organ DonorsFolder 8.3.3.30 Virus Span 19 Killa TechnarchyAIF-1killa technarchy 120176Organ DonorsAIF-2killa technarchy 220176Organ DonorsAIF-3killa technarchy 320176Organ DonorsAIF-4killa technarchy 420176Organ DonorsAIF-5killa technarchy 520176Organ DonorsAIF-6killa technarchy 620176Organ DonorsAIF-7killa technarchy 720176Organ DonorsAIF-8killa technarchy 820176Organ DonorsAIF-9killa technarchy 920176Organ DonorsAIF-10killa technarchy 1020176Organ DonorsAIF-11killa technarchy 1120176Organ DonorsAIF-12killa technarchy 1220176Organ DonorsAIF-13killa technarchy 1320176Organ DonorsAIF-14killa technarchy 1420176Organ DonorsAIF-15killa technarchy 1520176Organ DonorsAIF-16killa technarchy 1620176Organ DonorsAIF-17killa technarchy 1720176Organ DonorsAIF-18killa technarchy 1820176Organ DonorsAIF-19killa technarchy 1920176Organ DonorsAIF-20killa technarchy 2020176Organ DonorsAIF-21killa technarchy 2120176Organ DonorsAIF-22killa technarchy 2220176Organ DonorsAIF-23killa technarchy 2320176Organ DonorsAIF-24killa technarchy 2420176Organ DonorsAIF-25killa technarchy 2520176Organ DonorsAIF-26melody 120176Organ DonorsAIF-27melody 220176Organ DonorsAIF-28melody 320176Organ DonorsAIF-29melody 420176Organ DonorsAIF-30melody 520176Organ DonorsAIF-31melody 620176Organ DonorsAIF-32melody 720176Organ DonorsAIF-33melody 820176Organ DonorsAIF-34melody 920176Organ DonorsFolder 8.3.3.31 Virus Span 20 Katana ThingAIF-1katana 120176Organ DonorsAIF-2katana 220176Organ DonorsAIF-3katana 320176Organ DonorsFolder 8.3.3.32 Virus Span 21 We Are Your FreindsAIF-1Freinds 120176Organ DonorsAIF-2Freinds 220176Organ DonorsAIF-3Freinds 320176Organ DonorsAIF-4Freinds 420176Organ DonorsAIF-5Freinds 520176Organ DonorsAIF-6Freinds 620176Organ DonorsAIF-7Freinds 720176Organ DonorsAIF-8Freinds 820176Organ DonorsAIF-9Freinds 920176Organ DonorsAIF-10Freinds 1020176Organ DonorsAIF-11Freinds 1120176Organ DonorsAIF-12Freinds fx 120176Organ DonorsAIF-13Freinds fx 220176Organ DonorsAIF-14Freinds fx 320176Organ DonorsAIF-15Freinds fx 420176Organ DonorsAIF-16Freinds fx 520176Organ DonorsAIF-17Freinds fx 620176Organ DonorsAIF-18Freinds fx 720176Organ DonorsAIF-19Freinds fx 820176Organ DonorsAIF-20Freinds fx 920176Organ DonorsAIF-21Freinds fx 1020176Organ DonorsAIF-22Freinds fx 1120176Organ DonorsAIF-23Freinds fx 1220176Organ DonorsAIF-24Freinds fx 1320176Organ DonorsAIF-25Freinds fx 1420176Organ DonorsAIF-26Freinds rise 120176Organ DonorsAIF-27Freinds rise 220176Organ DonorsAIF-28Freinds rise 320176Organ DonorsAIF-29Freinds rise 420176Organ DonorsFolder 8.3.3.33 Virus Span 22 Joey VAIF-1Joey V 120176Organ DonorsAIF-2Joey V 220176Organ DonorsAIF-3Joey V 320176Organ DonorsAIF-4Joey V 420176Organ DonorsAIF-5Joey V 520176Organ DonorsAIF-6Joey V 620176Organ DonorsAIF-7Joey V 720176Organ DonorsAIF-8Joey V 820176Organ DonorsAIF-9Joey V 920176Organ DonorsAIF-10Joey V 1020176Organ DonorsAIF-11Joey V 1120176Organ DonorsAIF-12Joey V 1220176Organ DonorsAIF-13Joey V 1320176Organ DonorsAIF-14Joey V 1420176Organ DonorsAIF-15Joey V 1520176Organ DonorsAIF-16Joey V 1620176Organ DonorsAIF-17Joey V 1720176Organ DonorsAIF-18Joey V 1820176Organ DonorsAIF-19Joey V 1920176Organ DonorsAIF-20Joey V 2020176Organ DonorsFolder 8.3.3.34 Virus Span 23 RocketAIF-1Rocket Fill 120176Organ DonorsAIF-2Rocket Fill 220176Organ DonorsAIF-3Rocket Fill 320176Organ DonorsAIF-4Rocket Fill 420176Organ DonorsAIF-5Rocket Fill 520176Organ DonorsAIF-6Rocket Fill 620176Organ DonorsAIF-7Rocket Fill 720176Organ DonorsMP3-1Rocket Fill 720176Organ DonorsAIF-8Rocket Fill 820176Organ DonorsAIF-9Rocket Fill 920176Organ DonorsAIF-10Rocket Fill 1020176Organ DonorsAIF-11Rocket Fill 1120176Organ DonorsAIF-12Rocket Fill 1220176Organ DonorsAIF-13Rocket Fill 1320176Organ DonorsAIF-14Rocket Fill 1420176Organ DonorsAIF-15Rocket Fill 1520176Organ DonorsAIF-16Rocket Fill 1620176Organ DonorsAIF-17Rocket Fill 1720176Organ DonorsAIF-18Rocket Filter 120176Organ DonorsAIF-19Rocket Filter 220176Organ DonorsAIF-20Rocket FX 120176Organ DonorsAIF-21Rocket FX 220176Organ DonorsAIF-22Rocket FX 320176Organ DonorsAIF-23Rocket FX 420176Organ DonorsAIF-24Rocket FX 520176Organ DonorsAIF-25Rocket Main 1 120176Organ DonorsAIF-26Rocket Main 1 20176Organ DonorsAIF-27Rocket Main 220176Organ DonorsAIF-28Rocket Main 320176Organ DonorsAIF-29Rocket Main 420176Organ DonorsAIF-30Rocket Main 520176Organ DonorsAIF-31Rocket Main 620176Organ DonorsAIF-32Rocket Main 720176Organ DonorsFolder 8.3.3.35 Virus Span 24 KrewellaAIF-1Krewella fill 120176Organ DonorsAIF-2Krewella fill 220176Organ DonorsAIF-3Krewella fill 320176Organ DonorsAIF-4Krewella fill 420176Organ DonorsAIF-5Krewella fill 520176Organ DonorsAIF-6Krewella fill 620176Organ DonorsAIF-7Krewella fill 720176Organ DonorsAIF-8Krewella fill 820176Organ DonorsAIF-9Krewella fill 920176Organ DonorsAIF-10Krewella fill 1020176Organ DonorsAIF-11Krewella Main 1 13320176Organ DonorsAIF-12Krewella Main 120176Organ DonorsAIF-13Krewella Main 220176Organ DonorsAIF-14Krewella Main 320176Organ DonorsAIF-15Krewella Main 420176Organ DonorsAIF-16Krewella Main 520176Organ DonorsAIF-17Krewella Main 620176Organ DonorsAIF-18Krewella Main 720176Organ DonorsAIF-19Krewella Main 820176Organ DonorsAIF-20Krewella riser 120176Organ DonorsAIF-21Krewella riser 220176Organ DonorsFolder 8.3.3.36 Virus Span 25 Woodys DickAIF-1Woodys Dick 120176Organ DonorsFolder 8.3.3.37 Virus Span 26 Krew Remix SpanAIF-1Krew Bass 120176Organ DonorsAIF-2Krew Bass 220176Organ DonorsAIF-3Krew Bass 320176Organ DonorsAIF-4Krew Bass 420176Organ DonorsAIF-5Krew Bass 520176Organ DonorsAIF-6Krew Bass 620176Organ DonorsAIF-7Krew Bass 720176Organ DonorsAIF-8Krew Bass 820176Organ DonorsAIF-9Krew Bass 920176Organ DonorsAIF-10Krew Bass 1020176Organ DonorsAIF-11Krew Bass 1120176Organ DonorsAIF-12Krew Bass 1220176Organ DonorsAIF-13Krew Bass 1320176Organ DonorsAIF-14Krew Bass 1420176Organ DonorsAIF-15Krew Bass 1520176Organ DonorsAIF-16Krew Bass 1620176Organ DonorsAIF-17Krew Bass 1720176Organ DonorsAIF-18Krew Bass 1820176Organ DonorsAIF-19Krew Bass 1920176Organ DonorsAIF-20Krew Bass 2020176Organ DonorsAIF-21Krew Bass 2120176Organ DonorsAIF-22Krew Bass filt 120176Organ DonorsAIF-23Krew Bass fx 120176Organ DonorsAIF-24Krew Bass fx 220176Organ DonorsAIF-25Krew Bass fx 320176Organ DonorsAIF-26Krew Bass fx 420176Organ DonorsAIF-27Krew Bass fx 520176Organ DonorsAIF-28Krew Bass short 120176Organ DonorsAIF-29Krew Bass short 220176Organ DonorsAIF-30Krew Bass short 320176Organ DonorsAIF-31Krew Bass short 420176Organ DonorsAIF-32Krew Bass short 520176Organ DonorsAIF-33Krew Bass short 620176Organ DonorsAIF-34Krew Bass short 720176Organ DonorsAIF-35Krew Bass short 820176Organ DonorsAIF-36Krew Bass short 920176Organ DonorsAIF-37Krew Bass short 1020176Organ DonorsAIF-38Krew Bass short 1120176Organ DonorsAIF-39Krew Bass short 1220176Organ DonorsAIF-40Krew Bass short 1320176Organ DonorsFolder 8.3.3.38 Virus Span 26 RenegadeAIF-1Renegade Bass 120176Organ DonorsAIF-2Renegade Bass 220176Organ DonorsAIF-3Renegade Bass 320176Organ DonorsAIF-4Renegade Bass 420176Organ DonorsAIF-5Renegade Bass 520176Organ DonorsAIF-6Renegade Bass 620176Organ DonorsAIF-7Renegade Bass 720176Organ DonorsAIF-8Renegade Bass 820176Organ DonorsAIF-9Renegade Bass 920176Organ DonorsAIF-10Renegade Bass 1020176Organ DonorsAIF-11Renegade Bass 1120176Organ DonorsAIF-12Renegade Bass 12 220176Organ DonorsAIF-13Renegade Bass 1220176Organ DonorsAIF-14Renegade Bass 1320176Organ DonorsAIF-15Renegade Bass 1420176Organ DonorsAIF-16Renegade Bass Fill 120176Organ DonorsAIF-17Renegade Bass Fill 220176Organ DonorsFolder 8.3.3.39 Virus Span 27 Project KaosAIF-1Project Dist 120176Organ DonorsAIF-2Project Dist 220176Organ DonorsAIF-3Project Dist 320176Organ DonorsAIF-4Project Dist 420176Organ DonorsAIF-5Project Dist 520176Organ DonorsAIF-6Project Dist 620176Organ DonorsAIF-7Project Dist 720176Organ DonorsAIF-8Project Dist 820176Organ DonorsAIF-9Project Dist 920176Organ DonorsAIF-10Project Dist fx 120176Organ DonorsAIF-11Project Dist fx 220176Organ DonorsAIF-12Project Dist fx 320176Organ DonorsAIF-13Project Kaos 120176Organ DonorsAIF-14Project Kaos 220176Organ DonorsAIF-15Project Kaos 320176Organ DonorsAIF-16Project Kaos 420176Organ DonorsAIF-17Project Kaos 520176Organ DonorsAIF-18Project Kaos 620176Organ DonorsAIF-19Project Kaos Fill 120176Organ DonorsAIF-20Project Kaos Fill 220176Organ DonorsAIF-21Project Kaos Fill 320176Organ DonorsAIF-22Project Kaos Fill 420176Organ DonorsAIF-23Project Kaos Fill 520176Organ DonorsAIF-24Project Kaos Fill 620176Organ DonorsAIF-25Project Kaos Fill 720176Organ DonorsAIF-26Project Kaos Fill 820176Organ DonorsAIF-27Project Kaos Fill 920176Organ DonorsAIF-28Project Kaos Fill 1020176Organ DonorsAIF-29Project Kaos Fill 1120176Organ DonorsAIF-30Project Kaos Fill 1220176Organ DonorsAIF-31Project Kaos Fill 1320176Organ DonorsAIF-32Project Kaos On Bass 120176Organ DonorsFolder 8.3.3.40 Virus Span 28 OD ASYSAIF-1OD ASYS 44 120176Organ DonorsAIF-2OD ASYS 44 220176Organ DonorsAIF-3Virus Span 28 Main 120176Organ DonorsAIF-4Virus Span 28 Main 220176Organ DonorsAIF-5Virus Span 28 Main 320176Organ DonorsAIF-6Virus Span 28 Main 420176Organ DonorsAIF-7Virus Span 28 Main 520176Organ DonorsAIF-8Virus Span 28 Main 620176Organ DonorsFolder 8.3.3.41 Virus Span 29 OD&WEAIF-1odwe layer 120176Organ DonorsAIF-2odwe layer 220176Organ DonorsAIF-3odwe main 120176Organ DonorsAIF-4odwe main 220176Organ DonorsAIF-5odwe main 320176Organ DonorsAIF-6odwe main 420176Organ DonorsAIF-7odwe main 520176Organ DonorsAIF-8odwe main new 120176Organ DonorsAIF-9odwe main new 220176Organ DonorsAIF-10odwe main new 320176Organ DonorsAIF-11odwe main new 420176Organ DonorsAIF-12odwe main new 520176Organ DonorsAIF-13ON odwe 120176Organ DonorsAIF-14rise 1 13020176Organ DonorsAIF-15rise 2 13020176Organ DonorsAIF-16rise 3 13020176Organ DonorsFolder 8.3.3.42 Virus Span 30 ODW&WE 2AIF-1od we 2 end 120176Organ DonorsAIF-2od we 2 end 220176Organ DonorsAIF-3od we 2 flat 120176Organ DonorsAIF-4od we 2 flat 220176Organ DonorsAIF-5od we 2 flat 320176Organ DonorsAIF-6od we 2 flat 420176Organ DonorsAIF-7od we 2 flat 520176Organ DonorsAIF-8od we 2 flat 620176Organ DonorsAIF-9od we 2 flat 720176Organ DonorsAIF-10od we 2 main 1 220176Organ DonorsAIF-11od we 2 main 1 320176Organ DonorsAIF-12od we 2 main 1 420176Organ DonorsAIF-13od we 2 main 1 520176Organ DonorsAIF-14od we 2 main 1 620176Organ DonorsAIF-15od we 2 main 120176Organ DonorsAIF-16od we 2 main 220176Organ DonorsAIF-17od we 2 main 320176Organ DonorsAIF-18od we 2 main 420176Organ DonorsAIF-19od we 2 main 520176Organ DonorsAIF-20od we 2 main 620176Organ DonorsAIF-21od we 2 main 720176Organ DonorsAIF-22od we 2 main 820176Organ DonorsAIF-23od we 2 main filt 120176Organ DonorsAIF-24od we 2 short 120176Organ DonorsAIF-25od we 2 short 220176Organ DonorsFolder 8.3.3.43 Virus Span 31 Acti CollabAIF-1Acti Collab Fill 120176Organ DonorsAIF-2Acti Collab Fill 220176Organ DonorsAIF-3Acti Collab Fill 320176Organ DonorsAIF-4Acti Collab Fill 420176Organ DonorsAIF-5Acti Collab Fill 520176Organ DonorsAIF-6Acti Collab Main 120176Organ DonorsAIF-7Acti Collab Main 2 13320176Organ DonorsAIF-8Acti Collab Main 320176Organ DonorsAIF-9Acti Collab Main 420176Organ DonorsAIF-10Acti Collab Main 520176Organ DonorsAIF-11Acti Collab Main 620176Organ DonorsAIF-12Acti Collab Main 720176Organ DonorsAIF-13Acti Collab Main 820176Organ DonorsFolder 8.3.3.44 Virus Span 31 Acti Collab 132AIF-1Acti 132 Fill 120176Organ DonorsAIF-2Acti 132 Main 120176Organ DonorsAIF-3Acti 132 Main 220176Organ DonorsAIF-4Acti 132 Main 320176Organ DonorsAIF-5Acti 132 Main 420176Organ DonorsAIF-6Acti 132 Main 520176Organ DonorsAIF-7Acti 132 Main 620176Organ DonorsAIF-8Acti 132 Main New 120176Organ DonorsAIF-9Acti 132 Main New 220176Organ DonorsFolder 8.3.3.45 Virus Span 32 BlowAIF-1Bloe Fill 120176Organ DonorsAIF-2Bloe Fill 220176Organ DonorsAIF-3Bloe Fill 320176Organ DonorsAIF-4Bloe Fill 420176Organ DonorsAIF-5Bloe Fill 520176Organ DonorsAIF-6Bloe Fill 620176Organ DonorsAIF-7Bloe Fill 720176Organ DonorsAIF-8Bloe Fill 820176Organ DonorsAIF-9Bloe Fill 920176Organ DonorsAIF-10Bloe Fill 1020176Organ DonorsAIF-11Bloe Fill pitch 120176Organ DonorsAIF-12Bloe Fill pitch 220176Organ DonorsAIF-13Bloe Fill pitch 320176Organ DonorsAIF-14Bloe Fill pitch 420176Organ DonorsAIF-15Bloe Filt 120176Organ DonorsAIF-16Bloe Filt 220176Organ DonorsAIF-17Bloe Main 120176Organ DonorsAIF-18Bloe Main 220176Organ DonorsAIF-19Bloe Main 320176Organ DonorsAIF-20Bloe Main 420176Organ DonorsAIF-21Bloe Main 520176Organ DonorsAIF-22Bloe Main new 120176Organ DonorsAIF-23Bloe Main new 220176Organ DonorsAIF-24Bloe Main new 320176Organ DonorsAIF-25Bloe Main new 420176Organ DonorsAIF-26Bloe Main new 520176Organ DonorsAIF-27Bloe Main new 620176Organ DonorsAIF-28Bloe Main new 720176Organ DonorsAIF-29Bloe Main new 820176Organ DonorsAIF-30Bloe Main new 920176Organ DonorsAIF-31Bloe Main new 1020176Organ DonorsFolder 8.3.3.46 Virus Span 33 Onnit BassWAV-12 Onnit fill 120176Organ DonorsWAV-22 Onnit fill 220176Organ DonorsWAV-32 Onnit fill 320176Organ DonorsWAV-42 Onnit fill 420176Organ DonorsWAV-52 Onnit fill 520176Organ DonorsWAV-62 Onnit Filt 120176Organ DonorsWAV-72 Onnit Filt 220176Organ DonorsWAV-82 Onnit Filt 320176Organ DonorsWAV-92 Onnit main 120176Organ DonorsWAV-102 Onnit main 220176Organ DonorsWAV-112 Onnit main 320176Organ DonorsWAV-122 Onnit main 420176Organ DonorsWAV-132 Onnit main 520176Organ DonorsWAV-142 Onnit main 620176Organ DonorsWAV-152 Onnit main 720176Organ DonorsWAV-162 Onnit main 820176Organ DonorsWAV-172 Onnit main 920176Organ DonorsWAV-182 Onnit main 1020176Organ DonorsWAV-192 Onnit main 1120176Organ DonorsWAV-202 Onnit main 1220176Organ DonorsWAV-212 Onnit main 1320176Organ DonorsWAV-222 Onnit main 1420176Organ DonorsWAV-232 Onnit on 120176Organ DonorsWAV-242 Onnit on 220176Organ DonorsWAV-252 Onnit on 320176Organ DonorsWAV-262 Onnit on 420176Organ DonorsWAV-272 Onnit on 520176Organ DonorsWAV-282 Onnit on 620176Organ DonorsWAV-292 Onnit on 720176Organ DonorsWAV-302 Onnit on 820176Organ DonorsWAV-31Onnit Main 120176Organ DonorsWAV-32Onnit Main 220176Organ DonorsWAV-33Onnit Main 320176Organ DonorsWAV-34Onnit Main 420176Organ DonorsWAV-35Onnit Main 520176Organ DonorsFolder 8.3.3.47 Virus Span 34 Full Retard BassAIF-1Full Retard Bass 120176Organ DonorsAIF-2Full Retard Bass 220176Organ DonorsAIF-3Full Retard Bass 320176Organ DonorsAIF-4Full Retard Bass Filt 120176Organ DonorsAIF-5Full Retard Bass Filt 220176Organ DonorsAIF-6Full Retard Bass Filt 320176Organ DonorsFolder 8.3.3.48 Virus Span 35 AxwellAIF-1Axwell Bass 1 120176Organ DonorsAIF-2Axwell Bass 120176Organ DonorsAIF-3Axwell Bass 220176Organ DonorsAIF-4Axwell Bass 320176Organ DonorsAIF-5Axwell Bass 420176Organ DonorsAIF-6Axwell Bass 520176Organ DonorsAIF-7Axwell Bass 620176Organ DonorsAIF-8Axwell Bass 720176Organ DonorsAIF-9Axwell Bass 820176Organ DonorsAIF-10Axwell Bass 920176Organ DonorsAIF-11Axwell Bass 1020176Organ DonorsAIF-12Axwell Bass 1120176Organ DonorsAIF-13Axwell Bass 1220176Organ DonorsAIF-14Axwell Bass 1320176Organ DonorsAIF-15Axwell Bass 1420176Organ DonorsAIF-16Axwell Bass 1520176Organ DonorsAIF-17Axwell Bass 1620176Organ DonorsAIF-18Axwell Bass 1720176Organ DonorsAIF-19Axwell Bass 1820176Organ DonorsAIF-20Axwell Bass 1920176Organ DonorsAIF-21Axwell Bass 2020176Organ DonorsAIF-22Axwell Bass build 120176Organ DonorsFolder 8.3.3.49 Virus Span 36 DiscoAIF-1Disco Bass 120176Organ DonorsAIF-2Disco Bass 220176Organ DonorsFolder 8.3.4 Organ Donors - Hits & Stabs - Vol 1 (Sample Pack)AIF-1siren20176Organ DonorsWAV-114stab20176Organ DonorsWAV-270 S STAB 220176Organ DonorsWAV-370 S STAB20176Organ DonorsWAV-470 STAB20176Organ DonorsWAV-570S STAB 220176Organ DonorsWAV-670S STAB20176Organ DonorsWAV-7142stab20176Organ DonorsWAV-8143stab20176Organ DonorsWAV-9144stab20176Organ DonorsWAV-10145stab20176Organ DonorsWAV-11303 G20176Organ DonorsWAV-12A SOUND20176Organ DonorsWAV-13ACID 520176Organ DonorsWAV-14add fx20176Organ DonorsWAV-15adfx320176Organ DonorsWAV-16adfx420176Organ DonorsWAV-17AIR STAB20176Organ DonorsWAV-18ANALOG CD20176Organ DonorsWAV-19ANTHEM STRIN20176Organ DonorsWAV-20BELEIVE1STAB20176Organ DonorsWAV-21BIGGER STAB20176Organ DonorsWAV-22BLEEP20176Organ DonorsWAV-23BLOCKSTER 120176Organ DonorsWAV-24BOING FX -L20176Organ DonorsWAV-25BONZ FX 220176Organ DonorsWAV-26BOO PIANO20176Organ DonorsWAV-27BREEDER20176Organ DonorsWAV-28BUSH STAB20176Organ DonorsWAV-29BUSHY STAB20176Organ DonorsWAV-30BXR STAB20176Organ DonorsWAV-31BXR20176Organ DonorsWAV-32cake stab20176Organ DonorsWAV-33CAS STAB20176Organ DonorsWAV-34CD 3 420176Organ DonorsWAV-35CHEM STAB20176Organ DonorsWAV-36CLAR2 STAB 220176Organ DonorsWAV-37CLOCK STABS120176Organ DonorsWAV-38cocain stab20176Organ DonorsWAV-39CRASH STAB20176Organ DonorsWAV-40cs6x stab120176Organ DonorsWAV-41DAVE202 STAB20176Organ DonorsWAV-42DEADBASS220176Organ DonorsWAV-43DISCO20176Organ DonorsWAV-44DISK DRIVE20176Organ DonorsWAV-45DIST STAB20176Organ DonorsWAV-46drop out stab20176Organ DonorsWAV-47DRUG STAB20176Organ DonorsWAV-48DUB SOUND20176Organ DonorsWAV-49DUTCH STAB20176Organ DonorsWAV-50EAR STAB20176Organ DonorsWAV-51EARTH HIGH20176Organ DonorsWAV-52EC17 CHD20176Organ DonorsWAV-53EVE STAB20176Organ DonorsWAV-54F X 120176Organ DonorsWAV-55F X 320176Organ DonorsWAV-56F X 520176Organ DonorsWAV-57F X 520176Organ DonorsWAV-58FEEL PIAN 1220176Organ DonorsWAV-59FEELING HARD20176Organ DonorsWAV-60FOREST20176Organ DonorsWAV-61FREE AMPL 420176Organ DonorsWAV-62FREIND ST 120176Organ DonorsWAV-63FREIND ST 1020176Organ DonorsWAV-64FUNK DB 220176Organ DonorsWAV-65FX20176Organ DonorsWAV-66gabba stab20176Organ DonorsWAV-67GARAGE STAB20176Organ DonorsWAV-68GRUNGY DROP20176Organ DonorsWAV-69GUITAR 120176Organ DonorsWAV-70GUITAR 220176Organ DonorsWAV-71GUITAR 1220176Organ DonorsWAV-72HARD BASS20176Organ DonorsWAV-73HEAD CRACK 120176Organ DonorsWAV-74HENNERS FX20176Organ DonorsWAV-75HENRICK DRUM20176Organ DonorsWAV-76HIGHSTAB20176Organ DonorsWAV-77HIP STAB 220176Organ DonorsWAV-78hit reasa220176Organ DonorsWAV-79hit stab20176Organ DonorsWAV-80HONEY GIT 120176Organ DonorsWAV-81HOOF11 FILT20176Organ DonorsWAV-82HOOVER HIT20176Organ DonorsWAV-83HYBRID STAB20176Organ DonorsWAV-84HYPER STAB20176Organ DonorsWAV-85ilog beggin20176Organ DonorsWAV-86ilog synth20176Organ DonorsWAV-87ilogic stab20176Organ DonorsWAV-88INDUSTRY STB20176Organ DonorsWAV-89INFECT20176Organ DonorsWAV-90INSECT SYN20176Organ DonorsWAV-91ISAC DIST H20176Organ DonorsWAV-92JERK STAB20176Organ DonorsWAV-93JERK STABS20176Organ DonorsWAV-94JON STAB20176Organ DonorsWAV-95just synth20176Organ DonorsWAV-96KAK20176Organ DonorsWAV-97KEMAL BASS20176Organ DonorsWAV-98KEMAL STAB20176Organ DonorsWAV-99LEX STAB 120176Organ DonorsWAV-100LEX STAB 220176Organ DonorsWAV-101Liebing stab20176Organ DonorsWAV-102M8 FX 120176Organ DonorsWAV-103MAT FX20176Organ DonorsWAV-104MATS SHIT 220176Organ DonorsWAV-105Maur 120176Organ DonorsWAV-106MAURIO STABY20176Organ DonorsWAV-107MC TOMS X20176Organ DonorsWAV-108MENTAL STAB20176Organ DonorsWAV-109MET STAB 320176Organ DonorsWAV-110MIKE HEART 220176Organ DonorsWAV-111MIKE HEART20176Organ DonorsWAV-112MIN STAB LO20176Organ DonorsWAV-113MIND STAB 120176Organ DonorsWAV-114MINI STAB20176Organ DonorsWAV-115MINIMAL STAB20176Organ DonorsWAV-116MOKUM FX20176Organ DonorsWAV-117MOKUM STAB20176Organ DonorsWAV-118MUZIK STABY20176Organ DonorsWAV-119MYST FX 220176Organ DonorsWAV-120MYST FX20176Organ DonorsWAV-121NEO DROP20176Organ DonorsWAV-122NOOM 13 220176Organ DonorsWAV-123NOOM 13 2-220176Organ DonorsWAV-124NOOM 1720176Organ DonorsWAV-125NOOM HOOVER20176Organ DonorsWAV-126NOOM STAB 220176Organ DonorsWAV-127NOOM STAB20176Organ DonorsWAV-128NOOMy 1720176Organ DonorsWAV-129NOVA STAB20176Organ DonorsWAV-130OLD S DRO 1220176Organ DonorsWAV-131old s stab20176Organ DonorsWAV-132OLDSCHOOL20176Organ DonorsWAV-133ORM TAB20176Organ DonorsWAV-134OTR STAB20176Organ DonorsWAV-135PAD 22-EMU20176Organ DonorsWAV-136PAN PIPES20176Organ DonorsWAV-137PARRALAX 2-320176Organ DonorsWAV-138penjulum riff20176Organ DonorsWAV-139PHASE RIF 120176Organ DonorsWAV-140PHROZEN 120176Organ DonorsWAV-141PICK FUN 720176Organ DonorsWAV-142PING20176Organ DonorsWAV-143PLANNET TRAX20176Organ DonorsWAV-144PLONK STAB20176Organ DonorsWAV-145PLUMP STA 720176Organ DonorsWAV-146POSIT 220176Organ DonorsWAV-147PROG STAB20176Organ DonorsWAV-148PROMO20176Organ DonorsWAV-149P-TYPE FX 320176Organ DonorsWAV-150PULSE STAB 220176Organ DonorsWAV-151PULSEY STAB20176Organ DonorsWAV-152PULSEY STAB220176Organ DonorsWAV-153PUTURESOUND20176Organ DonorsWAV-154Q CUT 2320176Organ DonorsWAV-155RANK PIANO20176Organ DonorsWAV-156REACT MAI 220176Organ DonorsWAV-157reggaedude20176Organ DonorsWAV-158RHYME FX20176Organ DonorsWAV-159ROB PERC 120176Organ DonorsWAV-160RODE FX 220176Organ DonorsWAV-161RODE FX20176Organ DonorsWAV-162ROT STAB20176Organ DonorsWAV-163ROUGH STAB 220176Organ DonorsWAV-164ROUGH STAB 420176Organ DonorsWAV-165Rulah20176Organ DonorsWAV-166rush stab low20176Organ DonorsWAV-167S B CHEESE20176Organ DonorsWAV-168S B HOOVE 620176Organ DonorsWAV-169S B HOOVE 820176Organ DonorsWAV-170SACRIFICE 220176Organ DonorsWAV-171SAMP 320176Organ DonorsWAV-172SAW REV20176Organ DonorsWAV-173SAW20176Organ DonorsWAV-174SCOTCH STAB20176Organ DonorsWAV-175SCOTT STAB20176Organ DonorsWAV-176SERIOUS STAB20176Organ DonorsWAV-177set up system whole20176Organ DonorsWAV-178SHOOP STAB20176Organ DonorsWAV-179SHUCKA 7020176Organ DonorsWAV-180SHUCKA STAB20176Organ DonorsWAV-181SIEST 220176Organ DonorsWAV-182SMIT STAB20176Organ DonorsWAV-183SMOKE STA 220176Organ DonorsWAV-184SOLE STAB20176Organ DonorsWAV-185SP 303 REV20176Organ DonorsWAV-186SP000020176Organ DonorsWAV-187SPACE FUNK20176Organ DonorsWAV-188SPEAKER STAB20176Organ DonorsWAV-189SPECIAL 3 620176Organ DonorsWAV-190SPECIAL 3 720176Organ DonorsWAV-191SPECIAL STAB20176Organ DonorsWAV-192SPICELAB20176Organ DonorsWAV-193stab220176Organ DonorsWAV-194stab-klinisch-620176Organ DonorsWAV-195stab-loud&proud-0120176Organ DonorsWAV-196STABY GAB20176Organ DonorsWAV-197STABY RIF 220176Organ DonorsWAV-198SUNE220176Organ DonorsWAV-199SUNTEC FX20176Organ DonorsWAV-200SUNTEC2 STAB20176Organ DonorsWAV-201SUNTEK SYNTH20176Organ DonorsWAV-202SUNTEK2SYNTH20176Organ DonorsWAV-203TIME STABER20176Organ DonorsWAV-204TITAN STAB20176Organ DonorsWAV-205TITAN STretch20176Organ DonorsWAV-206TOJA REV20176Organ DonorsWAV-207TOJA20176Organ DonorsWAV-208TRANZ DUB20176Organ DonorsWAV-209TRANZ WA WA20176Organ DonorsWAV-210TREE STAB20176Organ DonorsWAV-211TRI HIT20176Organ DonorsWAV-212TRONIC HIT20176Organ DonorsWAV-213TWILO STAB F20176Organ DonorsWAV-214UBER STAB20176Organ DonorsWAV-215UHF DRONE220176Organ DonorsWAV-216V STAB20176Organ DonorsWAV-217VEC1 Sounds Acid 37 C20176Organ DonorsWAV-218VIRUS20176Organ DonorsWAV-219VOCY STAB20176Organ DonorsWAV-220VOID RIF 120176Organ DonorsWAV-223VOX 320176Organ DonorsWAV-224VOX 420176Organ DonorsWAV-225VOX20176Organ DonorsWAV-226W1920176Organ DonorsWAV-227W2020176Organ DonorsWAV-228WARN HORN20176Organ DonorsWAV-229Wax Stab20176Organ DonorsWAV-230WAZZA BEE20176Organ DonorsWAV-231WEIRD STAB20176Organ DonorsWAV-232whaaar20176Organ DonorsWAV-233X PERC 420176Organ DonorsWAV-234XL 120176Organ DonorsWAV-235ZERO ONE20176Organ DonorsFolder 9 - Organ Donors Photos & Event Flyers + +95537Johann Sebastian BachBachThe Complete Bach Edition2041348WLP Ltd.Booklet Editor [Booklet Editing]2257291Archiv Für Kunst Und GeschichteIllustration [Booklet Illustrations]CompilationReissueStereoCompilationClassicalWorldwide2018-02-16153 CD's in individual cardboard sleeves and 354-page booklet packaged in a cardboard box in an o-card. + +Artist name (ANV) as printed on front of box. +Artist name on back of box: Johann Sebastian Bach. +Artist name on individual CD-covers: J.S.Bach. + +Header titles as printed on individual CD-covers. Header subtitles, index titles/subtitles and track titles/subtitles as printed in booklet. Durations of index tracks as printed on back of individual CD-covers, where not printed derived by adding durations of contained sub-tracks printed in booklet. Durations of sub-tracks as printed in booklet. Exception for the follwing tracks where the actual durations have been listed; printed durations of these tracks: + +1-6: 1:33 +1-12: 1:06 +2-8: 1:10 +2-15: 0:49 +3-7: 1:13 +3-13: 1:23 +4-7: 1:00 +4-18: 4:36 +5-6: 0:49 +5-11: 1:04 +6-7: 1:52 +6-12: 1:14 +7-11: 1:06 +8-5: 2:02 +8-9: 5:00 +8-15: 2:35 +9-6: 0:42 +9-12: 1:06 +9-18: 1:04 +10-12: 4:37 +11-6: 1:06 +11-12: 1:27 +12-7: 3:30 +13-6: 1:17 +13-12: 1:24 +13-19: 1:11 +14-6: 2:13 +14-13: 2:15 +15-7: 0:51 +15-14: 0:45 +15-20: 0:55 +16-7: 1:04 +16-13: 5:11 +16-14: 3:38 +17-6: 0:43 +17-9: 2:58 +17-14: 0:52 +18-8: 0:49 +18-13: 2:19 +18-18: 1:41 +19-6: 0:57 +19-12: 0:39 +20-8: 1:22 +20-15: 1:18 +21-7: 0:43 +21-12: 3:20 +21-16: 1:35 +22-11: 1:01 +22-18: 3:41 +22-24: 1:20 +23-8: 0:48 +23-15: 1:35 +24-14: 1:58 +24-20: 0:56 +25-6: 0:35 +25-14: 1:02 +25-21: 1:06 +26-5: 0:51 +26-10: 0:53 +26-16: 0:54 +27-7: 1:12 +27-14: 0:48 +27-20: 0:40 +28-6: 0:38 +28-15: 1:05 +29-8: 1:53 +29-15: 0:58 +30-9: 0:52 +30-14: 4:22 +31-6: 2:00 +31-13: 0:51 +32-6: 1:05 +32-12: 1:02 +33-4: 2:44 +33-11: 2:15 +34-6: 4:09 +34-13: 0:53 +35-5: 1:09 +35-13: 0:57 +36-6: 0:57 +36-12: 0:58 +37-9: 0:52 +38-6: 1:01 +38-12: 0:37 +38-18: 1:27 +39-6: 0:48 +39-12: 1:49 +40-5: 1:00 +40-19: 1:43 +41-5: 4:49 +41-11: 0:50 +42-6: 7:39 +42-12: 0:59 +42-18: 0:49 +43-7: 2:06 +43-13: 0:57 +44-7: 2:14 +44-13: 1:11 +44-18: 0:42 +45-10: 2:39 +45-16: 0:54 +46-7: 3:09 +46-12: 0:36 +47-8: 0:54 +47-13: 1:11 +47-19: 1:15 +48-4: 1:06 +48-9: 1:07 +49-6: 0:48 +49-12: 0:57 +49-18: 0:36 +50-5: 2:37 +50-11: 0:56 +51-5: 5:44 +51-11: 2:02 +51-17: 1:15 +52-5: 1:39 +52-12: 1:38 +53-5: 1:12 +53-12: 1:48 +54-7: 1:15 +54-12: 5:26 +55-5: 1:11 +55-11: 2:32 +56-11: 1:58 +57-6: 0:50 +58-12: 1:18 +59-5: 3:23 +60-10: 5:03 +62-15: 2:02 +63-9: 1:45 +63-12: 6:59 +64-11: 3:03 +65-15: 3:05 +67-15: 3:26 +69-9: 2:11 +70-7: 1:27 +70-10: 4:01 +74-6: 2:51 +74-12: 4:25 +75-6: 3:41 +75-12: 4:51 +76-12: 2:17 +84-14: 1:03 +86-1: 12:44 +86-2: 7:40 +86-3: 7:48 +86-4: 20:01 +86-5: 8:02 +94-6: 0:41 +94-12: 0:43 +94-23: 1:35 +94-25: 1:47 +94-27: 1:04 +95-4: 1:10 +95-6: 0:57 +95-10: 0:33 +95-12: 0:31 +95-14: 0:59 +95-16: 1:08 +95-18: 1:00 +95-20: 1:05 +95-22: 0:52 +96-9: 4:06 +96-12: 2:23 +97-2: 4:47 +97-6: 4:26 +97-8: 7:17 +97-10: 7:24 +100-7: Correct in booklet, incorrect on CD cover back: 2:36 +110-6: 3:11 +110-12: 1:42 +110-18: 3:09 +111-6: 2:08 +111-12: 1:09 +111-18: 3:52 +112-6: 3:16 +112-13: 1:57 +112-19: 3:49 +113-5: 3:06 +113-16: 2:20 +113-22: 2:15 +114-7: 2:09 +122-6: 2:48 +122-10: 2:45 +122-15: 2:41 +122-18: 3:14 +122-21: 7:22 +122-26: 4:17 +123-3: 5:51 +123-16: 15:36 +124-3: 4:05 +126-4: 4:37 +126-12: 2:57 +126-20: 3:47 +126-21: 3:35 +126-24: 4:14 +127-22: 0:43 +128-6: 0:56 +128-7: 1:41 +130-19: 1:34 +131-6: 2:19 +133-4: 5:36 +133-8: 3:20 +134-5: 11:18 +134-9: 4:51 +135-7: 1:44 +135-14: 2:58 +136-7: 3:29 +136-14: 2:13 +137-4: 3:22 +137-8: 4:34 +137-12: 3:45 +137-16: 4:42 +138-7: 5:15 +138-8: 4:42 +138-12: 3:06 +138-16: 4:11 +140-3: 5:47 +140-6: 4:18 +141-16: 4:11 +142-9: 7:02 +143-4: 5:12 +143-7: 3:53 +143-11: 7:04 +143-15: 4:24 +144-9: 4:12 +144-12: 3:34 +145-4: 6:57 +146-3: 4:42 +147-3: 4:13 +147-6: 3:53 +147-9: 2:35 +147-12: 7:16 +148-3:8:02 +148-6: 5:04 +148-9: 5:57 +149-3: 4:51 +149-6: 3:51 +149-9: 3:31 +149-12: 3:42 +150-7: 3:27 +151-5: 2:36 +152-3: 7:24 +152-6: 4:19 +152-9: 7:53 +153-3: 6:04 +153-6: 5:11 + +[url=/release/5355366]This similar release[/url] has a different cat#, was released in 2012 and contained an additional DVD.Needs Vote2280259Sacred Cantatas (Cantates Sacrées ∙ Geistliche Kantaten)Cantatas, BWV 1-3BWV 1 Wie Schön Leuchtet Der Morgenstern (Festo Annuntiationis Mariae = At The Feast Of Annunciation ∙ Zu Mariae Verkündigung ∙ Pour L'Annonciation De Marie)25:32716084Nikolaus HarnoncourtConductor1-1[Coro]: »Wie Schön Leuchtet Der Morgenstern«9:361-2Recitativo (Tenore): »Du Wahrer Gottes Und Marien Sohn«0:551-3Aria (Soprano): »Erfüllet, Ihr Himmlischen Göttlichen Flammen«5:051-4Recitativo (Basso): »Ein Irdscher Glanz, Ein Leiblich Licht«0:581-5Aria (Tenore): »Unser Mund Und Ton Der Saiten«7:211-6Choral (Coro): »Wie Bin Ich Doch So Herzlich Froh«1:40BWV 2 Ach Gott, Vom Himmel Sieh Darein (Dominica 2 Post Trinitatis = At The 2nd Sunday After Trinity ∙ Am 2. Sonnteg Nach Trinitatis ∙ 2ème Dimanche Après La Trinité)18:55716084Nikolaus HarnoncourtConductor1-7[Coro]: »Ach Gott, Vom Himmel Sieh Darein«3:521-8Recitativo (Tenore): »Sie Lehren Eitel Falsche List«1:021-9Aria (Alto): »Tilg, O Gott, Die Lehren«4:011-10Recitativo (Basso): »Die Armen Sind Verstört«1:411-11Aria (Tenore): »Durchs Feuer Wird Das Silber Rein«7:131-12Choral (Coro): »Das Wollst Du, Gott, Bewahren Rein«1:14BWV 3 Ach Gott, Wie Manches Herzeleid (Dominica 2 Post Epiphanias = At The 2nd Sunday After Epiphany ∙ Am 2. Sonntag Nach Epiphanias ∙ Pour Le Dimanche Après L'Epiphanie)24:44716084Nikolaus HarnoncourtConductor1-13[Coro]: »Ach Gott, Wie Manches Herzeleid«4:551-14[Choral] Recitativo (Soprano, Alto, Tenore, Basso, Coro): »Wie Schwerlich Lässt Sich Fleisch Und Blut«2:281-15Aria (Basso): »Empfind Ich Höllenangst Und Pein«5:501-16Recitativo (Tenore): »Es Mag Mir Leib Und Geist Verschmachten«1:141-17Aria (Duetto: Soprano, Alto): »Wenn Sorgen Auf Mich Dringen«8:341-18Choral (Coro): »Erhalt Mein Herz Im Glauben Rein«0:43Cantatas, BWV 4-6BWV 4 Christ Lag In Todes Banden (Feria 1 Paschatos = On The 1st Day Of Easter ∙ Am 1. Osterfeiertag ∙ Pour La 1ère Fête De Pâques)20:09716084Nikolaus HarnoncourtConductor2-1Sinfonia1:062-2[Coro] Versus I »Christ Lag In Todes Banden«4:182-3[Duetto] (Soprano, Alto) Versus II »Den Tod Niemand Zwingen Kunnt«3:412-4[Aria] (Tenore) Versus III »Jesus Christus, Gottes Sohn«2:182-5[Coro] Versus IV »Es War Ein Wunderlicher Krieg«2:282-6[Aria] (Basso) Versus V »Hier Ist Das Rechte Osterlamm«3:002-7[Duetto] (Soprano, Tenore) Versus VI »So Feiern Wir Das Hohe Fest«2:082-8Choral (Coro) Versus VII »Wir Essen Und Leben Wohl«1:19BWV 5 Wo Soll Ich Fliehen Hin (Dominica 19 Post Trinitatis = At The 18th Sunday After Trinitaty ∙ Am 19. Sonntag Nach Trinitatis ∙ Pour La 19ème Dimanche Après La Trinité)22:46716084Nikolaus HarnoncourtConductor2-9[Coro] »Wo Soll Ich Fliehen Hin«3:532-10Recitativo (Basso) »Der Sünden Wust Hat Mich Nicht Nur Befleckt«1:032-11Aria (Tenore) »Ergieße Dich Reichlich«6:372-12Recitativo (Alto) »Mein Treuer Heiland Tröstet Mich«1:472-13Aria (Basso) »Verstumme, Höllenheer«7:492-14Recitativo (Soprano) »Ich Bin Ja Nur Das Kleinste Teil Der Welt«0:482-15Choral (Coro) »Führ Auch Mein Herz Und Sinn«0:58BWV 6 Bleib Bei Uns, Denn Es Will Abend Werden (Feria 2 Paschatos = On The 2nd Day Of Easter ∙ Am 2. Osterfeiertag ∙ Pour La 2ème Fête De Pâques)18:52716084Nikolaus HarnoncourtConductor2-16[Coro] »Bleib Bei Uns, Denn Es Will Abend Werden«5:332-17Aria (Alto) »Hochgelobter Gottessohn«3:452-18Choral (Soprano) »Ach Bleib Bei Uns, Herr Jesu Christ«4:042-19Recitativo (Basso) »Es Hat Die Dunkelheit An Vielen Orten«0:402-20Aria (Tenore) »Jesu, Laß Uns Auf Dich Sehen«4:072-21Choral (Coro) »Beweis Dein Macht, Herr Jesu Christ«0:43Cantatas, BWV 7-9BWV 7 Christ Unser Herr Zum Jordan Kam (Festo S. Joannis Baptistae = At The Feast Of John The Baptist ∙ Am Feste Johannis Des Täufers ∙ Pour La Fête De St. Jean)25:58845763Gustav LeonhardtConductor3-1[Coro] »Christ Unser Herr Zum Jordan Kam«7:503-2Aria (Basso) »Merkt Und Hört, Ihr Menschenkinder«5:403-3Recitativo (Tenore) »Dies Hat Gott Klar Mit Worten«1:163-4Aria (Tenore) »Des Vaters Stimme Ließ Sich Hören«4:583-5Recitativo (Basso) »Als Jesus Dort Nach Seinen Leiden«1:013-6Aria (Alto) »Menschen, Glaubt Doch Dieser Gnade«4:003-7Choral (Coro) »Das Aug Allein Das Wasser Sieht«1:21BWV 8 Liebster Gott, Wenn Werd Ich Sterben (Dominica 16 Post Trinitatis = At The 16th Sunday After Trinity ∙ Am 16. Sonntag Nach Trinitatis ∙ Pour Le 16ème Dimanche Après La Trinité)19:03845763Gustav LeonhardtConductor3-8[Coro] »Liebster Gott, Wenn Werd Ich Sterben?«5:503-9Aria (Tenore) »Was Willst Du Dich, Mein Geist, Entsetzen«4:103-10Recitativo (Alto) »Zwar Fühlt Mein Schwaches Herz«1:103-11Aria (Basso) »Doch Weichet, Ihr Tollen, Vergeblichen Sorgen!«5:173-12Recitativo (Soprano) »Behalte Nur, O Welt, Das Meine!«1:133-13Choral (Coro) »Herrscher Über Tod Und Leben«1:32BWV 9 Es Ist Das Heil Uns Kommen Her (Dominica 6 Post Trinitatis = At The 6th Sunday After Trinity ∙ Am 6. Sonntag Nach Trinitatis ∙ Pour Le 6ème Dimanche Après La Trinité)24:45845763Gustav LeonhardtConductor3-14[Coro] »Es Ist Das Heil Uns Kommen Her«4:573-15Recitativo (Basso) »Gott Gab Uns Ein Gesetz«1:153-16 Aria (Tenore) »Wir Waren Schon Zu Tief Gesunken«7:223-17Recitativo (Basso) »Doch Mußte Das Gesetz Erfüllet Werden«1:173-18Aria (Duetto: Soprano, Alto) »Herr, Du Siehst Statt Guter Werke«7:253-19Recitativo (Basso) »Wenn Wir Die Sünd Aus Dem Gesetz Erkennen«1:243-20Choral (Coro) »Ob Sichs Anließ, Als Wollt Er Nicht«1:05Cantatas, BWV 10-12BWV 10 Meine Seel Erhebt Den Herren (Festo Visitationis Mariae = At The Feast Visitation ∙ Zu Mariae Heimsuchung ∙ La Visitation)21:53845763Gustav LeonhardtConductor4-1[Coro]: »Meine Seel Erhebt Den Herren«4:034-2Aria (Soprano): »Herr, Der Du Stark Und Machtig Bist«7:284-3Recitativo (Tenore): »Des Höchsten Güt Und Treu«1:244-4Aria (Basso): »Gewaltige Stößt Gott Vom Stuhl«3:284-5Duetto (Alto, Tenore): »Er Denket Der Barmherzigkeit«2:204-6Recitativo (Tenore): »Was Gott Den Vätern Alter Zeiten«2:104-7Choral (Coro): »Lob Und Preis Sei Gott Dem Vater«1:07BWV 11 Lobet Gott In Seinen Reichen (Oratorium Festo Ascensionis Christi = Ascension Day Oratorio ∙ Himmelfahrts-Oratorium ∙ Oratorio Pour La Fête De L'Ascension)28:53716084Nikolaus HarnoncourtConductor4-8[Coro]: »Lobet Gott In Seinen Reichen«5:094-9Recitativo (Tenore): »Der Herr Jesus Hub Seine Hande Auf«0:294-10Recitativo (Basso): »Ach, Jesu, Ist Dein Abschied Schon So Nah?«1:004-11Aria (Alto): »Ach, Bleibe Doch, Mein Liebstes Leben«6:434-12Recitativo (Tenore): »Und Ward Aufgehoben Zusehends«0:254-13Choral (Coro): »Nun Lieget Alles Unter Dir«1:174-14Recitativo (Tenore, Basso): »Und Da Sie Ihm Nachsahen«1:044-15Recitativo (Alto): »Ach Ja! So Komme Bald Zurück«0:384-16Recitativo (Tenore): »Sie Aber Beteten Ihn An«0:414-17Aria (Soprano): »Jesu, Deine Gnadenblicke«6:514-18Choral (Coro): »Wann Soll Es Doch Geschehen«4:43BWV 12 Weinen, Klagen, Sorgen, Zagen (Dominica Jubilitate = At The Sunday Jubilate ∙ Am Sonntag Jubilate ∙ Pour Le Dimanche De Jubilate)23:41845763Gustav LeonhardtConductor4-19Sinfonia2:214-20[Coro]: »Weinen, Klagen, Sorgen, Zagen«6:024-21[Arioso] (Alto): »Wir Müssen Durch Viel Trübsal«0:574-22Aria (Alto): »Kreuz Und Krone Sind Verbunden«6:244-23Aria (Basso): »Ich Folge Christo Nach«2:464-24Aria (Tenore): »Sei Getreu, Alle Pein«4:184-25Choral: »Was Gott Tut, Das Ist Wohlgetan«0:53Cantatas, BWV 13, 14 & 16BWV 13 Meine Seufzer, Meine Tränen (Dominica 2 Post Epiphanias = At The 2nd Sunday After Epiphany ∙ Am 2. Sonntag Nach Epiphanias ∙ Pour Le 2ème Dimanche Aprés L'Epiphanie)23:13845763Gustav LeonhardtConductor5-1Aria (Tenore) »Meine Seufzer, Meine Tränen«7:325-2Recitativo (Alto) »Mein Liebster Gott Lässt Mich Annoch«1:145-3Choral (Alto) »Der Gott, Der Mir Hat Versprochen«3:105-4Recitativo (Soprano) »Mein Kummer Nimmet Zu«1:225-5Aria (Basso) »Ächzen Und Erbärmlich Weinen«9:065-6Choral (Coro) »So Sei Nun, Seele, Deine«0:57BWV 14 Wär Gott Nicht Mit Uns Diese Zeit (Dominica 4 Post Epiphanias = At The 4th Sunday After Epiphany ∙ Am 4. Sonntag Nach Epiphanias ∙ Pour Le 4ème Dimanche Aprés L'Epiphanie)17:42845763Gustav LeonhardtConductor5-7[Coro] »Wär Gott Nicht Mit Uns Diese Zeit«6:235-8Aria (Soprano) »Unsre Stärke Heißt Zu Schwach«4:465-9Recitativo (Tenore) »Ja, Hätt Es Gott Nur Zugegeben«0:455-10Aria (Basso) »Gott, Bei Deinem Starken Schützen«4:445-11Choral (Coro) »Gott Lob Und Dank, Der Nicht Zugab«1:12BWV 16 Herr Gott, Dich Loben Wir (Festo Circumcisionis Christi = For The Feast Of Circumcision ∙ Am Fest Der Beschneidung Christi ∙ Pour Le Fête De La Circuncision De Christ)18:05845763Gustav LeonhardtConductor5-12[Coro] »Herr Gott, Dich Loben Wir«1:385-13Recitativo (Basso) »So Stimmen Wir Bei Dieser Frohen Zeit«1:145-14[Coro &] Aria (Basso) »Laßt Uns Jauchzen, Laßt Uns Freuen«3:525-15Recitativo (Alto) »Ach Treuer Hort«1:295-16Aria (Tenore) »Geliebter Jesu, Du Allein«8:495-17Choral (Coro) »All Solch Dein Güt Wir Preisen«1:03Cantatas, BWV 17-19BWV 17 Wer Dank Opfert, Der Preiset Mich Prima Parte (Dominica 14 Post Trinitatis = At The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14ème Dimanche Après La Trinité)9:56716084Nikolaus HarnoncourtConductor6-1[Coro]: »Wer Dank Opfert, Der Preiset Mich«5:046-2Recitativo (Alto): »Es Muß Die Ganze Welt«1:036-3Aria (Soprano): »Herr, Deine Güte«3:49BWV 17 Wer Dank Opfert, Der Preiset Mich Seconda Parte (Dominica 14 Post Trinitatis = At The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14ème Dimanche Après La Trinité)7:53716084Nikolaus HarnoncourtConductor6-4Recitativo (Tenore): »Einer Aber Unter Ihnen«0:416-5Aria (Tenore): »Welch Übermaß Der Güte«4:126-6Recitativo (Basso): »Sieh Meinen Willen An«1:086-7Choral (Coro): »Wie Sich Ein Vatr Erbarmet«2:00BWV 18 Gleichwie Der Regen Und Schnee Vom Himmel Fällt (Weimar Version ∙ Weimarer Fassung ∙ Version De Weimar) (Dominica Sexagesimae = At The Sunday Sexagesimae ∙ Am Sonntag Sexagesimae ∙ Pour Le Dimanche De La Sexagésime)14:21716084Nikolaus HarnoncourtConductor6-8Sinfonia3:076-9Recitativo (Basso): »Gleichwie Der Regen Und Schnee«1:066-10Recitativo [& Litanei] (Soprano, Tenore, Basso, Coro): »Mein Gott, Hier Wird Mein Herze Sein«5:506-11Aria (Soprano): »Mein Seelenschatz Ist Gottes Wort«3:046-12Choral (Coro): »Ich Bitt, O Herr, Aus Herzensgrund«1:23BWV 19 Es Erhub Sich Ein Streit (Festo Michaelis = At The Feast St Michael ∙ Am Michaelisfest ∙ Pour La Fête St Michel)19:39716084Nikolaus HarnoncourtConductor6-13[Coro]: »Es Erhub Sich Ein Streit«4:466-14Recitativo (Basso): »Gottlob! Der Drache Liegt«0:506-15Aria (Soprano): »Gott Schickt Uns Mahanaim Zu«4:216-16Recitativo (Tenore): »Was Ist Der Schnöde Mensch«0:476-17Aria (Tenore): »Bleibt, Ihr Engel, Bleibt Bei Mir!«6:416-18Recitativo (Soprano): »Laßt Uns Das Angesicht«0:386-19Choral (Coro): »Laß Dein Engel Mit Mir Fahren«1:36Cantatas, BWV 20 & 21BWV 20 O Ewigkeit, Du Donnerwort Prima Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)18:01716084Nikolaus HarnoncourtConductor7-1[Coro]: »O Ewigkeit, Du Donnerwort«4:447-2Recitativo (Tenore): »Kein Unglück Ist In Aller Welt Zu Finden«0:537-3Aria (Tenore): »Ewigkeit, Du Machst Mir Bange«3:217-4Recitativo (Basso): »Gesetzt, Es Daurte Der Verdammten Qual«1:137-5Aria (Basso): »Gott Ist Gerecht«4:277-6Aria (Alto): »O Mensch, Errette Dein Seele«2:237-7Choral (Coro): »Solang Ein Gott Im Himmel Lebt«1:00BWV 20 O Ewigkeit, Du Donnerwort Seconda Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)8:50716084Nikolaus HarnoncourtConductor7-8Aria (Basso): »Wacht Auf, Wacht Auf, Verlornen Schafe«2:467-9Recitativo (Alto): »Verlaß, O Mensch, Die Wollust Dieser Welt«1:167-10Aria (Duetto: Alto, Tenore): »O Menschenkind, Hör Auf Geschwind«3:427-11Choral (Coro): »O Ewigkeit, Du Donnerwort«1:15BWV 21 Ich Hatte Viel Bekümmernis Prima Parte (Dominica 3 Post Trinitatis / Per Ogni Tempo = At The 3rd Sunday After Trinity / For Every Time ∙ Am 3. Sonntag Nach Trinitatis / Für Jede Zeit ∙ Pour Le 3ème Dimanche Après La Trinité / Pout Tous Le Temps)19:20716084Nikolaus HarnoncourtConductor7-12Sinfonia2:327-13Coro: »Ich Hatte Viel Bekümmernis«2:597-14Aria (Soprano): »Seufzer, Tränen, Kummer, Not«3:487-15Recitativo (Tenore): »Wie Hast Du Dich, Mein Gott«1:337-16Aria (Tenore): »Bäche Von Gesalznen Zähren«4:567-17Coro: »Was Betrübst Du Dich, Meine Seele«3:32BWV 21 Ich Hatte Viel Bekümmernis Seconda Parte (Dominica 3 Post Trinitatis / Per Ogni Tempo = At The 3rd Sunday After Trinity / For Every Time ∙ Am 3. Sonntag Nach Trinitatis / Für Jede Zeit ∙ Pour Le 3ème Dimanche Après La Trinité / Pout Tous Le Temps)12:31716084Nikolaus HarnoncourtConductor7-18Recitativo (Soprano, Basso): »Ach Jesu, Meine Ruh«1:147-19Duetto (Soprano. Basso): »Komm, Mein Jesu«4:327-20Coro: »Sei Nun Wieder Zufrieden«5:107-21Aria (Tenore): »Erfreue Dich, Seele«3:157-22Coro: »Das Lamm, Das Erwürget Ist«3:20Cantatas, BWV 22-25BWV 22 Jesus Nahm Zu Sich Die Zwölfe (Dominica Estomihi = At The Sunday Quinquadesimae ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche Estomihi)17:47845763Gustav LeonhardtConductor8-1[Aria - Coro] (Tenore, Basso): »Jesus Nahm Zu Sich Die Zwölfe«4:528-2Aria (Alto): »Mein Jesu, Ziehe Mich Nach Dir«5:058-3Recitativo (Basso): »Mein Jesu, Ziehe Mich«2:068-4Aria (Tenore): »Mein Alles In Allem«3:428-5Choral (Coro): »Ertöt Uns Durch Dein Güte«2:09BWV 23 Du Wahrer Gott Und Davids Sohn (Dominica Estomihi = At The Sunday Quinquadesimae ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche Estomihi)18:57845763Gustav LeonhardtConductor8-6Aria [Duetto] (Soprano, Alto): »Du Wahrer Gott Und Davids Sohn«7:578-7Recitativo (Tenore): »Ach! Gehe Nicht Vorüber«1:318-8[Coro]: »Aller Augen Warten, Herr«4:298-9Choral (Coro): »Christe, Du Lamm Gottes«5:08BWV 24 Ein Ungefärbt Gemüte (Dominica 4 Post Trinitatis = At The 4th Sunday After Trinity ∙ Am 4. Sonntag Nach Trinitatis ∙ Pour Le 4'eme Dimanche Après La Trinité)17:08716084Nikolaus HarnoncourtConductor8-10Aria (Alto): »Ein Ungefärbt Gemüte«3:348-11Recitativo (Tenore): »Die Redlichkeit Ist Eine Von Den Gottesgaben«1:528-12[Coro]: »Alles Nun, Das Ihr Wollet«3:598-13Recitativo (Basso): »Die Heuchelei Ist Eine Brut«1:298-14Aria (Tenore): »Treu Und Wahrheit Sei Der Grund«3:398-15Choral (Coro): »O Gott, Du Frommer Gott«2:42BWV 25 Es Ist Nichts Gesundes An Meinem Leibe (Dominica 14 Post Trinitatis = At The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14'eme Dimanche Après La Trinité)15:18716084Nikolaus HarnoncourtConductor8-16[Coro]: »Es Ist Nichts Gesundes An Meinem Leibe«4:448-17Recitativo (Tenore): »Die Ganze Welt Ist Nur Ein Hospital«1:278-18Aria (Basso): »Ach, Wo Hol Ich Armer Rat«3:068-19Recitativo (Soprano): »O Jesu, Lieber Meister«1:118-20Aria (Soprano): »Öffne Meinen Schlechten Liedern«3:398-21Choral (Coro): »Ich Will Alle Meine Tage«1:11Cantatas, BWV 26-29BWV 26 Ach Wie Flüchtig, Ach Wie Nichtig (Dominica 24 Post Trinitatis = At The 24th Sunday After Trinity ∙ Am 24. Sonntag Nach Trinitatis ∙ Pour Le 24'eme Dimanche Après La Trinité)16:39716084Nikolaus HarnoncourtConductor9-1[Coro]: »Ach Wie Flüchtig, Ach Wie Nichtig«2:499-2Aria (Tenore): »So Schnell Ein Rauschend Wasser Schießt«7:429-3Recitativo (Alto): »Die Freud Wird Zur Traurigkeit«0:499-4Aria (Basso): »An Irdische Schätze Das Herze Zu Hängen«3:539-5Recitativo (Soprano): »Die Höchste Herrlichkeit Und Pracht«0:449-6Choral (Coro): »Ach Wie Flüchtig, Ach Wie Nichtig«0:50BWV 27 Wer Weiss, Wie Nahe Mir Mein Ende (Dominica 16 Post Trinitatis = At The 16th Sunday After Trinity ∙ Am 16. Sonntag Nach Trinitatis ∙ Pour Le 16'eme Dimanche Après La Trinité)15:30716084Nikolaus HarnoncourtConductor9-7[Coro ∙ Recitativo]: »Wer Weiß, Wie Nahe Mir Mein Ende«4:559-8Recitativo (Tenore): »Mein Leben Hat Kein Ander Ziel«0:479-9Aria (Alto): »Willkommen! Will Ich Sagen«4:309-10Recitativo (Soprano): »Ach, Wer Doch Schon Im Himmel Wär!«0:389-11Aria (Basso): »Gute Nacht, Du Weltgetümmel!«3:349-12Choral (Coro): »Welt, Ade! Ich Bin Dein Müde«1:15BWV 28 Gottlob! Nun Geht Das Jahr Zu Ende (Dominica Post Nativitatis Christi = At The Sunday After Christmas ∙ Am Sonntag Nach Weihnachten ∙ Pour Le Dimanche Après La Noël)15:56716084Nikolaus HarnoncourtConductor9-13Aria (Soprano): »Gottlob! Nun Geht Das Jahr Zu Ende«4:229-14[Coro]: »Nun Lob, Mein Seel, Den Herren«4:599-15[Recitativo ∙ Arioso] (Basso): »So Spricht Der Herr«1:549-16Recitativo (Tenore): »Gott Ist Ein Quell, Wo Lauter Güte Fleußt«1:049-17Aria (Duetto: Alto, Tenore) »Gott Hat Uns Im Heurigen Jahre Gesegnet«2:339-18Choral (Coro): »All Solch Dein Güt Wir Preisen«1:11BWV 29 Wir Danken Dir, Gott, Wir Danken Dir (Kantate Zum Ratswechsel 1731 = For The Town Council Election ∙ Pour L'Éction De La Cité)23:33716084Nikolaus HarnoncourtConductor9-19Sinfonia3:389-20[Coro]: »Wir Danken Dir, Gott, Wir Danken Dir«3:039-21Aria (Tenore): »Halleluja, Stärk Und Macht«6:319-22Recitativo (Basso): »Gottlob! Es Geht Uns Wohl!«0:499-23Aria (Soprano): »Gedenk An Uns Mit Deiner Liebe«5:499-24Recitativo (Alto, Coro): »Vergiß Es Ferner Nicht«0:269-25Aria (Alto): »Halleluja, Stärk Und Macht«1:539-26Choral (Coro): »Sei Lob Und Preis Mit Ehren«1:24Cantatas, BWV 30 & 31BWV 30 Freue Dich Erlöste Schar Prima Parte (Festo S. Joannis Bapistae = At The Feast Of John The Baptist ∙ Am Feste Johannis Des Täufers ∙ Pour La Fête De St Jean)16:57716084Nikolaus HarnoncourtConductor10-1Coro: »Freue Dich, Erlöste Schar«4:2710-2Recitativo (Basso): »Wir Haben Rast«0:4910-3Aria (Basso): »Gelobet Sei Gott, Gelobet Sein Name«5:1310-4Recitativo (Alto): »Der Herold Kömmt«0:3610-5Aria (Alto): »Kommt, Ihr Angefochtnen Sünder«4:3810-6Choral (Coro): »Eine Stimme Läßt Sich Hören«1:14BWV 30 Freue Dich Erlöste Schar Seconda Parte (Festo S. Joannis Bapistae = At The Feast Of John The Baptist ∙ Am Feste Johannis Des Täufers ∙ Pour La Fête De St Jean)20:34716084Nikolaus HarnoncourtConductor10-7Recitativo (Basso): »So Bist Du Denn, Mein Heil, Bedacht«0:5610-8Aria (Basso): »Ich Will Nun Hassen«7:0110-9Recitativo (Soprano): »Und Ob Wohl Sonst Der Unbestand«0:4910-10Aria (Soprano): »Eilt, Ihr Stunden, Kommt Herbei«5:5710-11Recitativo (Tenore): »Geduld, Der Angenehme Tag«1:1410-12Coro: »Freue Dich, Geheilgte Schar«4:44BWV 31 Der Himmel Lacht! Die Erde Jubilieret (Feria 1 Paschatos = On The First Day Of Easter ∙ Am 1. Osterfeiertag ∙ Pour La 1er Fête De Pâques)20:59716084Nikolaus HarnoncourtConductor10-13Sonata3:1210-14Coro (Coro, Soprano, Alto): »Der Himmel Lacht! Die Erde Jubilieret«4:0710-15Recitativo (Basso): »Erwünschter Tag! Sei, Seele, Wieder Froh«2:0510-16 Aria (Basso): »Fürst Des Lebens, Starker Streiter«2:2610-17Recitativo (Tenore): »So Stehe Dann, Du Gottergebne Seele«1:0910-18Aria (Tenore): »Adam Muß In Uns Verwesen«2:1810-19Recitativo (Soprano): »Weil Dann Das Haupt Sein Glied«0:4910-20Aria (Soprano): »Letzte Stunde, Brich Herein«3:4910-21Choral (Coro) »So Fahr Ich Hin Zu Jesu Christ«1:04Cantatas, BWV 32-34BWV 32 Liebster Jesu, Mein Verlangen (Dominica 1 Post Epiphanias = At The 1st Sunday After Epiphany ∙ Am 1. Sonntag Nach Epiphanias ∙ Pour Le 1er Dimanche Aprés L'Epiphanie)23:43845763Gustav LeonhardtConductor11-1Aria (Soprano): »Liebster Jesu, Mein Verlangen«5:4311-2Recitativo (Basso): »Was Ists, Daß Du Mich Gesuchet?«0:2811-3Aria (Basso): »Hier, In Meines Vaters Stätte«7:3511-4Recitativo (Soprano, Basso): »Ach! Heiliger Und Großer Gott«2:4911-5Aria (Duetto: Soprano, Basso): »Nun Verschwinden Alle Plagen«6:0211-6Choral (Coro): »Mein Gott, Öffne Mir Die Pforten«1:15BWV 33 Allein Zu Dir, Herr Jesu Christ (Dominica 13 Post Trinitatis = At The 13th Sunday After Trinity ∙ Am 13. Sonntag Nach Trinitatis ∙ Pour Le 13'eme Dimanche Après La Trinité)21:17845763Gustav LeonhardtConductor11-7[Coro]: »Allein Zu Dir, Herr Jesu Christ«4:5111-8Recitativo (Basso): »Mein Gott Und Richter«1:0611-9Aria (Alto): »Wie Furchtsam Wankten Meine Schritte«8:0711-10Recitativo (Tenore): »Mein Gott, Verwirf Mich Nicht«1:1111-11Aria (Duetto: Tenore, Basso): »Gott, Der Du Die Liebe Heißt«4:3511-12Choral (Coro): »Ehr Sei Gott In Dem Höchsten Thron«1:34BWV 34 O Ewiges Feuer, O Ursprung Der Liebe (Fest Pentecostes = At Whit Sunday ∙ Am 1. Pfingsttag ∙ Pour Le 1er Jour De Pentecôte)18:20716084Nikolaus HarnoncourtConductor11-13[Coro]: »O Ewiges Feuer, O Ursprung Der Liebe«8:0311-14Recitativo (Tenore): »Herr! Unsre Herzen Halten Dir Dein Wort«0:3911-15Aria (Alto): »Wohl Euch, Ihr Auserwählten Seelen«6:4311-16Recitativo (Basso): »Erwählt Sich Gott Die Heilgen Hütten«0:3011-17Coro: »Friede Über Israel! Dankt Den Höchsten Wunderhänden«2:25Cantatas, BWV 35 & 36BWV 35 Geist Und Seele Wird Verwirret Prima Parte (Dominica 12 Post Trinitatis = At The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12'eme Dimanche Après La Trinité)18:45716084Nikolaus HarnoncourtConductor12-1Sinfonia5:3312-2Aria (Alto): »Geist Und Seele Wird Verwirret«8:3412-3Recitativo (Alto): »Ich Wundere Mich, Denn Alles, Was Man Sieht«1:2212-4Aria (Alto): »Gott Hat Alles Wohlgemacht«3:16716084Nikolaus HarnoncourtConductorBWV 35 Geist Und Seele Wird Verwirret Seconda Parte (Dominica 12 Post Trinitatis = At The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12ème Dimanche Après La Trinité)8:1212-5Sinfonia3:3612-6Recitativo (Alto): »Ach, Starker Gott, Lass Mich Doch Dieses«1:0612-7Aria (Alto): »Ich Wünsche Mir, Bei Gott Zu Leben«3:38BWV 36 Schwingt Freudig Euch Empor Prima Parte (Dominica 1 Adventus Christi = At The 1st Sunday In Advent ∙ Am 1. Advent ∙ Pour Le 1er De L'Advent)15:05716084Nikolaus HarnoncourtConductor12-8Coro: »Schwingt Freudig Euch Empor«4:0812-9Choral (Soprano, Alto): »Nun Komm, Der Heiden Heiland«3:4612-10Aria (Tenore): »Die Liebe Zieht Mit Sanften Schritten«5:4012-11Choral (Coro): »Zwingt Die Saiten In Cythara«1:31BWV 36 Schwingt Freudig Euch Empor Seconda Parte (Dominica 1 Adventus Christi = At The 1st Sunday In Advent ∙ Am 1. Advent ∙ Pour Le 1er De L'Advent)14:57716084Nikolaus HarnoncourtConductor12-12Aria (Basso): »Willkommen, Werter Schatz«4:1212-13Choral (Tenore): »Der Du Bist Dem Vater Gleich«1:5112-14Aria (Soprano): »Auch Mit Gedämpften, Schwachen Stimmen«8:1412-15Choral (Coro): »Lob Sei Gott, Dem Vater, G'ton«0:40Cantatas, BWV 37-40BWV 37 Wer Da Gläubet Und Getauft Wird (Festo Ascensionis Christi = On The Ascension Day ∙ Am Feste Der Himmelfahrt Christi ∙ Pour La Fête De Christ)16:24716084Nikolaus HarnoncourtConductor13-1[Coro]: »Wer Da Gläubet Und Getauft Wird«2:3913-2Aria (Tenore): »Der Glaube Ist Das Pfand Der Liebe«5:2713-3Choral (Soprano, Alto): »Herr Gott Vater, Mein Starker Held«3:0913-4Recitativo (Basso): »Ihr Sterblichen, Verlanget Ihr Mit Mir«0:5113-5Aria (Basso): »Der Glaube Schafft Der Seele Flügel«3:0113-6Choral (Coro): »Den Glauben Mir Verleihe«1:24BWV 38 Aus Tiefer Not Schrei Ich Zu Dir (Dominica 21 Post Trinitatis = At The 21th Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)18:36716084Nikolaus HarnoncourtConductor13-7[Coro]: »Aus Tiefer Not Schrei Ich Zu Dir«3:5013-8Recitativo (Alto): »In Jesu Gnade Wird Allein«0:4613-9Aria (Tenore): »Ich Höre Mitten In Dem Leiden«7:5113-10Recitativo (Soprano): »Ach! Daß Mein Glaube Noch So Schwach«1:2113-11Aria (Terzetto: Soprano, Alto, Basso): »Wenn Meine Trübsal Als Mit Ketten«3:2413-12Choral (Coro): »Ob Bei Uns Ist Der Sünden Viel«1:32BWV 39 Brich Dem Hungrigen Dein Brot Prima Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)14:43845763Gustav LeonhardtConductor13-13[Coro]: »Brich Dem Hungrigen Dein Brot«9:1113-14Recitativo (Basso): »Der Reiche Gott Wirft Seinen Uberfluß«1:2513-15Aria (Alto): »Seinem Schöpfer Noch Auf Erden«4:07BWV 39 Brich Dem Hungrigen Dein Brot Seconda Parte (Dominica 1 Post Trinitatis = At The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)10:03845763Gustav LeonhardtConductor13-16[Aria] (Basso): »Wohlzutun Und Mitzuteilen«3:3313-17Aria (Soprano): »Höchster, Was Ich Habe«3:4013-18Recitativo (Alto): »Wie Soll Ich Dir, O Herr«1:3913-19Choral (Coro): »Selig Sind, Die Aus Erbarmen«1:17BWV 40 Darzu Ist Erschienen Der Sohn Gottes (Feria 2 Nativitatis Christi = On The 2nd Day Of Christmas ∙ Am 2. Weihnachtstag ∙ Pour Le 2'eme Jour De Noël)15:08845763Gustav LeonhardtConductor13-20[Coro]: »Darzu Ist Erschienen Der Sohn Gottes«4:2213-21Recitativo (Tenore): »Das Wort Ward Fleisch«1:1513-22Choral (Coro): »Die Sünd Macht Leid«0:3813-23Aria (Basso): »Höllische Schlange, Wird Dir Ncht Bange?«2:0813-24Recitativo (Alto): »Die Schlange, So Im Paradies«1:1013-25Choral (Coro): »Schüttle Deinen Kopf Und Sprich«0:4413-26Aria (Tenore): »Christenkinder, Freuet Euch«3:5013-27Choral (Coro): »Jesu, Nimm Dich Deiner Glieder«1:01Cantatas, BWV 41-43BWV 41 Jesu, Nun Sei Gepreiset (Festo Circumcisionis Christi = At New Year's Day ∙ Neujahr ∙ Pour La Fête De La Circoncision De Christ)27:40716084Nikolaus HarnoncourtConductor14-1[Coro]: »Jesu, Nun Sei Gepreiset«8:5414-2Aria (Soprano): »Lass Uns, O Hochster Gott, Das Jahr Vollbringen«7:0014-3Recitativo (Alto): »Ach! Deine Hand, Dein Segen Muss Allein«0:5914-4Aria (Tenore): »Woferrne Du Den Edlen Frieden«7:4614-5Recitativo (Basso, Coro): »Doch Weil Der Feind Bei Tag Und Nacht«0:4814-6Choral (Coro): »Dein Ist Allein Die Ehre«2:21BWV 42 Am Abend Aber Desselbigen Sabbats (Dominica Quasimodogeniti = On The Sunday Quasimodogeniti ∙ Am Sonntag Quasimodo Geniti ∙ Pour Le Dimanche Quasimodo Geniti)27:12716084Nikolaus HarnoncourtConductor14-7Sinfonia6:1814-8Recitativo (Tenore): »Am Abend Aber Desselbigen Sabbats«0:2714-9Aria (Alto): »Wo Zwei Und Drei Versammlet Sind«10:4314-10Aria (Duetto: Soprano, Tenore): »Verzage Nicht, O Hauflein Klein«3:1814-11Recitativo (Basso): »Man Kann Hiervon Ein Schon Exempel Sehen«0:3914-12Aria (Basso): »Jesus Ist Ein Schild Der Seinen«3:3214-13Choral (Coro): »Verleih Uns Frieden Gnadiglich«2:24BWV 43 Gott Fähret Auf Mit Jauchzen Prima Parte (Fest Ascensionis Christi = On The Ascension Day ∙ Am Feste Der Himmelfahrt Christi ∙ Pour La Fête De L'Ascension De Christ)9:51716084Nikolaus HarnoncourtConductor14-14[Coro]: »Gott Fähret Auf Mit Jauchzen«3:3514-15Recitativo (Tenore): »Es Will Der Hochste Sich Ein Siegsgepräng Bereiten«0:4514-16Aria (Tenore): »Ja Tausendmal Tausend Begleiten Den Wagen«2:2714-17Recitativo (Soprano): »Und Der Herr, Nachdem Er Mit Ihnen Geredet Hatte«0:2014-18Aria (Soprano): »Mein Jesus Hat Nunmehr«2:44BWV 43 Gott Fähret Auf Mit Jauchzen Seconda Parte (Fest Ascensionis Christi = On The Ascension Day ∙ Am Feste Der Himmelfahrt Christi ∙ Pour La Fête De L'Ascension De Christ)10:53716084Nikolaus HarnoncourtConductor14-19Recitativo (Basso): »Es Kommt Der Helden Held«0:4814-20Aria (Basso): »Er Ists, Der Ganz Allein«3:0814-21Recitativo (Alto): »Der Vater Hat Ihm Ja«0:3314-22Aria (Alto): »Ich Sehe Schon Im Geist«3:2314-23Recitativo (Soprano): »Er Will Mir Neben Sich«0:3714-24Choral (Coro): »Du Lebenfürst, Herr Jesu Christ«2:24Cantatas, BWV 44-47BWV 44 Sie Werden Euch In Den Bann Tun (Dominica Exaudi = On The Sunday Exaudi ∙ Am Sonntag Exaudi ∙ Pour Le Dimanche Exaudi)17:21716084Nikolaus HarnoncourtConductor15-1Aria (Duetto: Tenore, Basso): »Sie Werden Euch In Den Bann Tun«2:1615-2[Coro]: »Es Kömmt Aber Die Zeit«1:4715-3Aria (Alto): »Christen Müssen Auf Der Erden«4:3915-4Choral (Tenore): »Ach Gott, Wie Manches Herzeleid«1:1515-5Recitativo (Basso): »Es Sucht Der Antichrist«0:4315-6Aria (Soprano): »Es Ist Und Bleibt Der Christen Trost«5:4815-7Choral (Coro): »So Sei Nun, Seele, Deine«0:58BWV 45 Es Ist Dir Gesagt, Mensch, Was Gut Ist Prima Parte (Dominica 8 Post Trinitatis = On The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)10:29845763Gustav LeonhardtConductor15-8(Coro): »Est Ist Dir Gesagt, Mensch, Was Gut Ist«5:4515-9Recitativo (Tenore): »Der Höchste Läßt Mich Seinen Willen Wissen«0:5615-10Aria (Tenore): »Weiß Ich Gottes Rechte«3:48BWV 45 Es Ist Dir Gesagt, Mensch, Was Gut Ist Seconda Parte (Dominica 8 Post Trinitatis = On The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)8:43845763Gustav LeonhardtConductor15-11Arioso (Basso): »Es Werden Viele Zu Mir Sagen An Jenem Tage«3:0015-12Aria (Alto): »Wer Gott Bekennt Aus Wahrem Herzensgrund«4:0515-13Recitativo (Alto): »So Wird Denn Herz Und Mund Selbst Von Mir Richter Sein«0:5315-14Choral (Coro): »Gib, Dass Ich Tu Mit Fleiß«0:54BWV 46 Schauet Doch Und Sehet, Ob Irgendein Schmerz Sei (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)16:28845763Gustav LeonhardtConductor15-15[Coro]: »Schauet Doch Und Sehet, Ob Irgendein Schmerz Sei«5:4715-16Recitativo (Tenore): »So Klage Du, Zerstörte Gottesstadt«1:4315-17Aria (Basso): »Dein Wetter Zog Sich Auf Von Weiten«2:5715-18Recitativo (Alto): »Doch Bildet Euch, O Sünder, Ja Nicht Ein«0:3815-19Aria (Alto): »Doch Jesus Will Auch Bei Der Strafe«4:2815-20Choral (Coro): »O Großer Gott Der Treu«1:04BWV 47 Wer Sich Selbst Erhöhet, Der Soll Erniedriget Werden (Dominica 17 Post Trinitatis = On The 17th Sunday After Trinity ∙ Am 17. Sonntag Nach Trinitatis ∙ Pour Le 17ème Dimanche Après La Trinité)22:19716084Nikolaus HarnoncourtConductor15-21[Coro]: »Wer Sich Selbst Erhöhet, Der Soll Erniedriget Werden«6:1115-22Aria (Soprano): »Wer Ein Wahrer Christ Will Heißen«9:2615-23Recitativo (Basso): »Der Mensch Ist Kot, Stank, Asch Und Erde«1:3015-24Aria (Basso): »Jesu, Beuge Doch Mein Herze«4:2215-25Choral (Coro): »Der Zeitlichen Ehr Will Ich Gern Entbehrn«0:50Cantatas, BWV 48-51BWV 48 Ich Elender Mensch, Wer Wird Mich Erlösen (Dominica 19 Post Trinitatis = On The 19th Sunday After Trinity ∙ Am 19. Sonntag Nach Trinitatis ∙ Pour Le 19ème Dimanche Après La Trinité)16:03716084Nikolaus HarnoncourtConductor16-1[Coro]: »Ich Elender Mensch, Wer Wird Mich Erlösen«5:3216-2Recitativo (Alto): »O Schmerz, O Elend, So Mich Trifft «1:1716-3Choral (Coro): »Solls Ja So Sein«0:4216-4Aria (Alto): »Ach Lege Das Sodom Der Sündlichen Glieder«3:0116-5Recitativo (Tenore): »Hier Aber Tut Des Heilands Hand«0:3916-6Aria (Tenore): »Vergibt Mir Jesus Meine Sünden«3:4816-7Choral (Coro): »Herr Jesu Christ, Einiger Trost«1:12BWV 49 Ich Geh Und Suche Mit Verlangen (Dominica 20 Post Trinitatis = On The 20th Sunday After Trinity ∙ Am 20. Sonntag Nach Trinitatis ∙ Pour Le 20ème Dimanche Après La Trinité)25:24716084Nikolaus HarnoncourtConductor16-8Sinfonia6:3716-9Aria (Basso): »Ich Geh Und Suche Mit Verlangen«5:0116-10Recitativo [Ed Arioso](Basso, Soprano): »Mein Mahl Ist Zubereit'«2:0516-11Aria (Soprano): »Ich Bin Herrlich, Ich Bin Schön«5:1616-12Recitativo (Soprano, Basso): »Mein Glaube Hat Mich Selbst So Angezogen«1:1416-13Aria (Duetto: Soprano, Basso): »Dich Hab Ich Je Und Je Geliebet«5:20BWV 50 Nun Ist Das Heil Und Die Kraft (Unspecified Occasion = Bestimmung Nicht Überliefert ∙ Sans Destination)3:38716084Nikolaus HarnoncourtConductor16-14[Coro]: »Nun Ist Das Heil Und Die Kraft«3:49BWV 51 Jauchzet Gott In Allen Landen (Dominica 15 Post Trinitatis Et In Ogni Tempo = On The 15th Sunday After Trinity And At All Times∙ Am 15. Sonntag Nach Trinitatis Und Für Alle Zeit∙ Pour Le 15ème Dimanche Après La Trinité Et Pour Les Temps)17:51845763Gustav LeonhardtConductor16-15Aria (Soprano): »Jauchzet Gott In Allen Landen!«4:4016-16Recitativo (Soprano): »Wir Beten Zu Dem Tempel An«2:1916-17Aria (Soprano): »Höchster, Mache Deine Güte«5:0116-18Choral (Soprano): »Sei Lob Und Preis Mit Ehren«3:3616-19[Aria] (Soprano): »Alleluja!«2:15Cantatas, BWV 52 & 54-56BWV 52 Falsche Welt, Dir trau Ich Nicht (Dominica 23 Post Trinitatis = On The 23rd Sunday After Trinity ∙ Am 23. Sonntag Nach Trinitatis ∙ Pour Le 23ème Dimanche Après La Trinité)16:36845763Gustav LeonhardtConductor17-1Sinfonia4:1817-2Recitativo (Soprano): »Falsche Welt, Dir Trau Ich Nicht!«1:1517-3Aria (Soprano): »Immerhin, Immerhin, Wenn Ich Gleich Verstoßen Bin!«4:0217-4Recitativo (Soprano): »Gott Ist Getreu!«1:3217-5Aria (Soprano): »Ich Halt Es Mit Dem Lieben Gott«4:4617-6Choral (Coro): »In Dich Hab Ich Gehoffet, Herr«0:51BWV 54 Widerstehe Doch der Sünde (Dominica Oculi = On The Sunday Oculi ∙ Am Sonntag Oculi ∙ Pour Le Dimanche Oculi)12:28845763Gustav LeonhardtConductor17-7Aria (Alto): »Widerstehe Doch Der Sünde«8:1517-8Recitativo (Alto): »Die Art Verruchter Sünden«1:1517-9Aria (Alto): »Wer Sünde Tut, Der Ist Vom Teufel«3:08BWV 55 Ich Armer Mensch, Ich Sündenknecht (Dominica 22 Post Trinitatis = On The 22nd Sunday After Trinity ∙ Am 22. Sonntag Nach Trinitatis ∙ Pour Le 22ème Dimanche Après La Trinité)13:00845763Gustav LeonhardtConductor17-10[Aria] (Tenore): »Ich Armer Mensch, Ich Sündenknecht«5:2317-11Recitativo (Tenore): »Ich Habe Wider Gott Gehandelt«1:3017-12Aria (Tenore): »Erbarme Dich, Laß Die Tränen Dich Erweichen«3:4717-13Recitativo (Tenore): »Erbarme Dich! Jedoch Nun«1:2817-14Choral (Coro): »Bin Ich Gleich Von Dir Gewichen«1:01BWV 56 Ich Will Den Kreuzstab Gerne Tragen (Dominica 19 Post Trinitatis = On The 19th Sunday After Trinity ∙ Am 19. Sonntag Nach Trinitatis ∙ Pour Le 19ème Dimanche Après La Trinité)18:57845763Gustav LeonhardtConductor17-15Aria (Basso): »Ich Will Den Kreuzstab Gerne Tragen«7:1217-16Recitativo (Basso): »Mein Wandel Auf Der Welt«2:1417-17Aria (Basso): »Endlich, Endlich Wird Mein Joch«6:4017-18Recitativo (Basso): »Ich Stehe Fertig Und Bereit«1:4017-19Choral (Coro): »Komm, O Tod, Du Schlafes Bruder«1:11Cantatas, BWV 57-60BWV 57 Selig Ist Der Mann (Feria 2 Nativitatis Christi = On The 2nd Day Of Christmas ∙ Am 2. Weihnachtstag ∙ Pour Le 2'eme Jour De Noël)22:24716084Nikolaus HarnoncourtConductor18-1Aria (Basso/Jesus): »Selig Ist Der Mann«3:1218-2Recitativo (Soprano/Anima): »Ach! Dieser Süße Trost«1:1218-3Aria (Soprano): »Ich Wünschte Mir Den Tod«6:0118-4Recitativo (Soprano, Basso): »Ich Reiche Dir Die Hand«0:2418-5Aria (Basso): »Ja, Ja, Ich Kann Die Feinde Schlagen«5:1418-6Recitativo (Soprano, Basso): »In Meiner Schoß Liegt Ruh Und Leben«1:1718-7Aria (Soprano): »Ich Ende Behende Mein Irdisches Leben«4:1518-8Choral (Coro): »Richte Dich, Liebste, Nach Meinem Gefallen«0:59BWV 58 Ach Gott, Wie Manches Herzeleid (Dominica Post Festum Circumcisionis Christi = On The Sunday After The Feast Of Circumcision ∙ Am Sonntag Nach Dem Fest Der Beschneidung Pour Le Dimanche Après La Fête De La Circoncision De Christ)12:14716084Nikolaus HarnoncourtConductor18-9[Choral ∙ Aria] (Soprano, Basso): »Ach Gott, Wie Manches Herzeleid«3:3818-10Recitativo (Basso): »Verfolgt Dich Gleich Die Arge Welt«1:1818-11Aria (Soprano): »Ich Bin Vergnügt In Meinem Leiden«3:4818-12Recitativo (Soprano): »Kann Es Die Welt Nicht Lassen«1:1118-13Aria (Soprano, Basso): »Ich Hab Für Mir Ein Schwere Reis«2:29BWV 59 Wer Mich Liebet, Der Wird Mein Wort Halten (Feria 1 Pentecostes = On The 1st Day Of Pentecost ∙ Am 1. Pfingsttag ∙ Pour Le 1er Jour De La Pentecôte)12:06716084Nikolaus HarnoncourtConductor18-14Duetto (Soprano, Basso): »Wer Mich Liebet«4:1518-15Recitativo (Soprano): »O, Was Sind Das Vor Ehren«1:5818-16Choral (Coro): »Komm, Heiliger Geist, Herre Gott!«1:3818-17Aria (Basso): »Die Welt Mit Allen Königreichen«2:3418-18[Choral] (Coro): »Du Heilige Brunst«1:51BWV 60 O Ewigkeit, Du Donnerwort (Dialogus Zwischen Furcht Und Hoffnung) (Dominica 24 Post Trinitatis = On The 24th Sunday After Trinity ∙ Am 24. Sonntag Nach Trinitatis ∙ Pour Le 24ème Dimanche Après La Trinité)16:09716084Nikolaus HarnoncourtConductor18-19Aria (Duetto: Alto/Furcht, Tenore/Hoffnung): »O Ewigkeit, Du Donnerwort«5:0218-20Recitativo (Alto, Tenore): »O Schwerer Gang Zum Letzten Kampf«2:1618-21Aria (Duetto: Alto, Tenore): »Mein Letztes Lager Will Mich Schrecken«3:2018-22Recitativo (Alto, Basso/Vox Christi): »Der Tod Bleibt Doch Der Menschlichen Natur Verhaßt«4:1218-23Choral (Coro): »Es Ist Genung: Herr, Wenn Es Dir Gefallt«1:19Cantatas, BWV 61-63BWV 61 Nun Komm, Der Heiden Heiland (Dominica 1 Adventus Christi = On The 1st Sunday Of Advent ∙ Am 1. Advent ∙ Pour Le 1er Dimanche De L'Advent)14:39716084Nikolaus HarnoncourtConductor19-1Ouverture (Coro): »Nun Komm, Der Heiden Heiland«3:4219-2Recitativo (Tenore): »Der Heiland Ist Gekommen«1:3419-3Aria (Tenore): »Komm, Jesu, Komm Zu Deiner Kirche«3:5919-4Recitativo (Basso): »Siehe, Ich Stehe Vor Der Tür«1:0419-5Aria (Soprano): »Öffne Dich, Mein Ganzes Herze«3:2319-6[Choral] (Coro): »Amen, Amen! Komm Du Schöne Freudenkrone«1:09BWV 62 Nun Komm, Der Heiden Heiland (Dominica 1 Adventus Christi = On The 1st Sunday Of Advent ∙ Am 1. Advent ∙ Pour Le 1er Dimanche De L'Advent)19:45716084Nikolaus HarnoncourtConductor19-7[Coro]: »Nun Komm, Der Heiden Heiland«4:5419-8Aria (Tenore): »Bewundert, O Menschen, Dies Große Geheimnis«7:2919-9Recitativo (Basso): »So Geht Aus Gottes Herrlichkeit«0:3619-10Aria (Basso): »Streite, Siege, Starker Held!«5:0919-11Recitativo (Soprano, Alto): »Wir Ehren Diese Herrlichkeit«0:5819-12Choral (Coro): »Lob Sei Gott, Dem Vater, Ton«0:47BWV 63 Christen, Ätzet Diesen Tag (Feria 1 Nativitatis Christi = On The 1st Day Of Christmas ∙ Am 1. Weihnachtstag ∙ Pour Le 1er Jour De Noël)28:54716084Nikolaus HarnoncourtConductor19-13Coro: »Christen, Ätzet Diesen Tag«5:1719-14Recitativo (Alto): »O Selger Tag! O Ungemeines Heute«3:3219-15Duetto (Soprano, Basso): »Gott, Du Hast Es Wohl Gefüget«6:2419-16Recitativo (Tenore): »So Kehret Sich Nun Heut Das Bange Leid«0:5319-17Duetto (Alto, Tenore): »Ruft Und Fleht Den Himmel An«4:2319-18Recitativo (Basso): »Verdoppelt Euch Demnach«1:0619-19Coro: »Höchster, Schau In Gnaden An«7:19Cantatas, BWV 64-66BWV 64 Sehet, Welch Eine Liebe Hat Uns Der Vater Erzeiget (Feria 3 Nativitatis Christi = On The 3rd Day Of Christmas ∙ Am 3. Weihnachtstag ∙ Pour Le 3ème Jour De Noël)20:12716084Nikolaus HarnoncourtConductor20-1[Coro]: »Sehet, Welch Eine Liebe Hat Uns Der Vater Erzeiget«3:3020-2Choral (Coro): »Das Hat Er Alles Uns Getan«0:4620-3Recitativo (Alto): »Geh, Welt! Behalte Nur Das Deine«0:3820-4Choral (Coro): »Was Frag Ich Nach Der Welt«0:5120-5Aria (Soprano): »Was Die Welt In Sich Hält«5:1120-6Recitativo (Basso): »Der Himmel Bleibet Mir Gewiß«1:0320-7Aria (Alto): »Von Der Welt Verlang Ich Nichts«6:5120-8Choral (Coro): »Gute Nacht, O Wesen«1:30BWV 65 Sie Werden Aus Saba Alle Kommen (Festo Epiphanias = At The Feast Of Epiphany ∙ Am Fest Epiphanias ∙ Pour La Fête De L'Epiphanie)16:45716084Nikolaus HarnoncourtConductor20-9[Coro]: »Sie Werden Aus Saba Alle Kommen«4:5220-10Choral (Coro): »Die Kön'ge Aus Saba Kamen Dar«0:4020-11Recitativo (Basso): »Was Dort Jesaias Vorhergesehn«1:4220-12Aria (Basso): »Gold Aus Ophir Ist Zu Schlecht«2:5320-13Recitativo (Tenore): »Verschmähe Nicht, Du, Meiner Seelen Licht«1:2620-14Aria (Tenore): »Nimm Mich Dir Zu Eigen Hin«3:5420-15Choral (Coro): »Ei Nun, Mein Gott, So Fall Ich Dir«1:27BWV 66 Erfreut Euch, Ihr Herzen (Feria 2 Paschatos = On The 2rd Day Of Easter ∙ Am 2. Ostertag ∙ Pour Le 2ème Jour De Pâques)31:15845763Gustav LeonhardtConductor20-16[Coro]: »Erfreut Euch, Ihr Herzen«10:3420-17Recitativo (Basso): »Es Bricht Das Grab Und Damit Unsre Not«0:3320-18Aria (Tenore): »Lasset Dem Höchsten Ein Danklied Erschallen«6:3820-19Recitativo (Dialogus: Alto/Die Furcht, Tenore/Die Hoffnung): »Bei Jesu Leben Freudig Sein«4:4720-20Duetto (Alto, Tenore): »Ich Furchte Zwar (Nicht) Des Grabes Finsternissen«8:1520-21Choral (Coro): »Alleluja! Alleluja! Alleluja!«0:28Cantatas, BWV 67-69, 69aBWV 67 Halt Im Gedächtnis Jesum Christ (Dominica Quasimodogeneti = On The Sunday Quasimodogeneti ∙ Am Sonntag Quasimodogeneti ∙ Pour Le Dimanche Quasimodogeneti)12:22845763Gustav LeonhardtConductor21-1[Coro]: »Halt Im Gedächtnis Jesum Christ«3:1021-2Aria (Tenore): »Mein Jesus Ist Erstanden«2:4121-3Recitativo (Alto): »Mein Jesu, Heißest Du Des Todes Gift«0:2621-4Choral (Coro): »Erschienen Ist Der Herrlich Tag«0:2521-5Recitativo (Alto): »Doch Scheinet Fast, Daß Mich Der Feinde Rest«0:5121-6Aria (Basso, Coro): »Friede Sei Mit Euch!«5:1621-7Choral (Coro): »Du Friedefürst, Herr Jesu Christ«0:53BWV 68 Also Hat Gott Die Welt Geliebt (Feria 2 Pentecostes = On The 2nd Day Of Pentecost ∙ Am 2. Pfingsttag ∙ Pour Le 2ème Jour De La Pentecôte)16:49716084Nikolaus HarnoncourtConductor21-8Choral (Coro): »Also Hat Gott Die Welt Geliebt«5:3421-9Aria (Soprano): »Mein Gläubiges Herze«4:0221-10Recitativo (Basso): »Ich Bin Mit Petro Nicht Vermessen«0:3821-11Aria (Basso): »Du Bist Geboren Mir Zugute«3:1521-12Coro: »Wer An Ihn Gläubet«3:30BWV 69 Lobe Den Herrn, Meine Seele (Ratswechsel = For The Town Council Inauguration ∙ Pour Le Changement Du Conseil Municipal)10:50716084Nikolaus HarnoncourtConductor21-13Recitativo (Soprano): »Wie Groß Ist Gottes Güte Doch!«1:0821-14Aria (Alto): »Mein Seele, Auf, Erzähle«6:0421-15Recitativo (Tenore): »Der Herr Hat Große Ding An Uns Getan«2:0321-16Choral (Coro): »Es Danke, Gott, Und Lobe Dich«1:45BWV 69a Lobe Den Herrn, Meine Seele (Dominica 12 Post Trinitatis = On The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12ème Dimanche Après La Trinité)19:26716084Nikolaus HarnoncourtConductor21-17[Coro]: »Lobe Den Herrn, Meine Seele«6:3621-18Recitativo (Soprano): »Ach, Daß Ich Tausend Zungen Hätte«0:4521-19Aria (Tenore): »Meine Seele, Auf, Erzähle«6:3021-20Recitativo (Alto): »Gedenk Ich Nur Zurück«1:1221-21Aria (Basso): »Mein Erlöser Und Erhalter«3:2821-22Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«0:55Cantatas, BWV 70-73BWV 70 Wachet! Betet! Betet! Wachet! Prima Parte (Dominica 26 Post Trinitatis = On The 26th Sunday After Trinity ∙ Am 26. Sonntag Nach Trinitatis ∙ Pour Le 26ème Dimanche Après La Trinité)13:47716084Nikolaus HarnoncourtConductor22-1[Coro]: »Wachet! Betet! Betet! Wachet!«4:2222-2Recitativo (Basso): »Erschrecket, Ihr Verstockten Sünder!«1:0222-3Aria (Alto): »Wenn Kömmt Der Tag«3:4122-4Recitativo (Tenore): »Auch Bei Dem Himmlischen Verlangen«0:3322-5Aria (Soprano): »Laßt Der Spötter Zungen Schmähen«2:3622-6Recitativo (Tenore): »Jedoch Bei Dem Unartigen Geschlechte«0:2822-7Choral (Coro): »Freu Dich Sehr, O Meine Seele«1:15BWV 70 Wachet! Betet! Betet! Wachet! Seconda Parte (Dominica 26 Post Trinitatis = On The 26th Sunday After Trinity ∙ Am 26. Sonntag Nach Trinitatis ∙ Pour Le 26ème Dimanche Après La Trinité)8:11716084Nikolaus HarnoncourtConductor22-8Aria (Tenore): »Hebt Euer Haupt Empor«2:4722-9Recitativo (Basso): »Ach, Soll Nicht Dieser Große Tag«1:5022-10Aria (Basso): »Seligster Erquickungstag«2:3322-11Choral (Coro): »Nicht Nach Welt, Nach Himmel Nicht«1:10BWV 71 Gott Ist Mein König (Ratswechsel = For The Town Council Inauguration ∙ Pour Le Changement Du Conseil Municipal. Mühlhausen, 4. 2. 1708)18:07716084Nikolaus HarnoncourtConductor22-12Coro: »Gott Ist Mein König«2:0222-13Aria (Soprano, Tenore): »Ich Bin Nun Achtzig Jahr - Soll Ich Auf Dieser Welt«3:3322-14Coro [A 4 Voci]: »Dein Alter Sei Wie Deine Jugend«2:0622-15Arioso (Basso): »Tag Und Nacht Ist Dein«2:4022-16Aria (Alto): »Durch Mächtige Kraft«1:1922-17Coro: »Du Wollest Dem Feinde Nicht Geben«2:4622-18Coro [Soli, Coro]: »Das Neue Regiment«3:51BWV 72 Alles Nur Nach Gottes Willen (Dominica 3 Post Epiphanias = On The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Après L'Epiphanie)17:29716084Nikolaus HarnoncourtConductor22-19[Coro]: »Alles Nur Nach Gottes Willen«4:2322-20Recitativo (Alto): »O Selger Christ«2:0222-21Aria (Alto): »Mit Allem, Was Ich Hab Und Bin«4:1822-22Recitativo (Basso): »So Glaube Nun!«0:4922-23Aria (Soprano): »Mein Jesus Will Es Tun«4:3722-24Choral (Coro): »Was Mein Gott Will, Das Gescheh Allzeit«1:29BWV 73 Herr, Wie Du Willt, So Schicks Mit Mir (Dominica 3 Post Epiphanias = On The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Après L'Epiphanie)14:57845763Gustav LeonhardtConductor22-25[Coro ∙ Recitativo] (Soprano, Basso): »Herr, Wie Du Willt, So Schicks Mit Mir«5:2122-26Aria (Tenore): »Ach, Senke Doch Den Geist Der Freuden«4:0222-27Recitativo (Basso): »Ach, Unser Wille Bleibt Verkehrt«0:3322-28Aria (Basso): »Herr, So Du Willt«4:1322-29Choral (Coro): »Das Ist Des Vaters Wille«0:48Cantatas, BWV 74 & 75BWV 74 Wer Mich Liebet, Der Wird Mein Wort Halten (Feria 1 Pentecostes = On The 1st Day Of Pentecost ∙ Am 1. Pfingsttag ∙ Pour Le 1er Jour De La Pentecôte)21:29845763Gustav LeonhardtConductor23-1[Coro]: »Wer Mich Liebet, Der Wird Mein Wort Halten«3:1923-2Aria (Soprano): »Komm, Komm, Mein Herze Steht Dir Offen«2:4223-3Recitativo (Alto): »Die Wohnung Ist Bereit«0:3423-4Aria (Basso): »Ich Gehe Hin Und Komme Wieder Zu Euch«2:5923-5Aria (Tenore): »Kommt, Eilet, Stimmet Sait Und Lieder«5:1523-6Recitativo (Basso): »Es Ist Nichts Verdammliches An Denen«0:3023-7Aria (Alto): »Nichts Kann Mich Erretten«5:2223-8Choral (Coro): »Kein Menschenkind Auf Der Erd«0:59BWV 75 Die Elenden Sollen Essen Prima Parte (Dominica 1 Post Trinitatis = On The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)19:43845763Gustav LeonhardtConductor23-9[Coro]: »Die Elenden Sollen Essen«4:5623-10Recitativo (Basso): »Was Hilft Des Purpurs Majestät«0:5323-11Aria (Tenore): »Mein Jesus Soll Mein Alles Sein«5:3923-12Recitativo (Tenore): »Gott Stürzet Und Erhöhet«0:3823-13Aria (Soprano): »Ich Nehme Mein Leiden Mit Freuden Auf Mich«5:2423-14Recitativo (Soprano): »Indes Schenkt Gott Ein Gut Gewissen«0:3823-15Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«1:44BWV 75 Die Elenden Sollen Essen Seconda Parte (Dominica 1 Post Trinitatis = On The 1st Sunday After Trinity ∙ Am 1. Sonntag Nach Trinitatis ∙ Pour Le 1er Dimanche Après La Trinité)13:26845763Gustav LeonhardtConductor23-16Sinfonia2:2523-17Recitativo (Alto): »Nur Eines Kränkt Ein Christliches Gemüte«0:4323-18Aria (Alto): »Jesus Macht Mich Geistlich Reich«3:2223-19Recitativo (Basso): »Wer Nur In Jesu Bleibt«0:2723-20Aria (Basso): »Mein Herze Gläubt Und Liebt«4:1423-21Recitativo (Tenore): »O Armut, Der Kein Reichtum Gleicht!«0:3723-22Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«1:38Cantatas, BWV 76-78BWV 76 Die Himmel Erzählen Die Ehre Gottes Prima Parte (Dominica 2 Post Trinitatis = On The 2nd Sunday After Trinity ∙ Am 2. Sonntag Nach Trinitatis ∙ Pour Le 2ème Dimanche Après La Trinité)18:10716084Nikolaus HarnoncourtConductor24-1[Coro]: »Die Himmel Erzählen Die Ehre Gottes«4:4924-2Recitativo (Tenore): »So Läßt Sich Gott Nicht Unbezeugt!«1:2324-3Aria (Soprano): »Hört, Ihr Völker«4:4924-4Recitativo (Basso): »Wer Aber Hört«0:2924-5Aria (Basso): »Fahr Hin, Abgöttische Zunft!«3:2224-6Recitativo (Alto): »Du Hast Uns, Herr, Von Allen Straßen«1:2624-7Choral (Coro): »Es Woll Uns Gott Genädig Sein«1:52BWV 76 Die Himmel Erzählen Die Ehre Gottes Seconda Parte (Dominica 2 Post Trinitatis = On The 2nd Sunday After Trinity ∙ Am 2. Sonntag Nach Trinitatis ∙ Pour Le 2ème Dimanche Après La Trinité)12:22716084Nikolaus HarnoncourtConductor24-8Sinfonia2:2624-9Recitativo (Basso): »Gott Segne Noch Die Treue Schar«0:4024-10Aria (Tenore): »Hasse Nur, Hasse Mich Recht«2:4224-11Recitativo (Alto): »Ich Fühle Schon Im Geist«0:4924-12Aria (Alto): »Liebt, Ihr Christen, In Der Tat!«3:1424-13Recitativo (Tenore): »So Soll Die Christenheit«0:3324-14Choral (Coro): »Es Danke, Gott, Und Lobe Dich«2:07BWV 77 Du Sollt Gott, Deinen Herren, Lieben (Dominica 13 Post Trinitatis = On The 13th Sunday After Trinity ∙ Am 13. Sonntag Nach Trinitatis ∙ Pour Le 13ème Dimanche Après La Trinité)15:49845763Gustav LeonhardtConductor24-15[Coro]: »Du Sollt Gott, Deinen Herren, Lieben«4:3124-16Recitativo (Basso): »So Muß Es Sein«0:3524-17Aria (Soprano): »Mein Gott, Ich Liebe Dich Von Herzen«4:1724-18Recitativo (Tenore): »Gib Mir Dabei, Mein Gott! Ein Samariterherz«0:5724-19Aria (Alto): »Ach, Es Bleibt In Meiner Liebe«4:3324-20Choral (Coro):»Du Stellst, Herr Jesu, Selber Dich«1:06BWV 78 Jesu, Der Du Meine Seele (Dominica 14 Post Trinitatis = On The 14th Sunday After Trinity ∙ Am 14. Sonntag Nach Trinitatis ∙ Pour Le 14ème Dimanche Après La Trinité)21:12716084Nikolaus HarnoncourtConductor24-21[Coro]: »Jesu, Der Du Meine Seele«5:2324-22Aria (Duetto: Soprano, Alto): »Wir Eilen Mit Schwachen, Doch Emsigen Schritten«5:0424-23Recitativo (Tenore): »Ach! Ich Bin Ein Kind Der Sünden«1:4424-24Aria (Tenore): »Das Blut, So Meine Schuld Durchstreicht«3:1024-25Recitativo (Basso): »Die Wunden, Nägel, Kron Und Grab«1:5024-26Aria (Basso): »Nun, Du Wirst Mein Gewissen Stillen«2:5824-27Choral (Coro): »Herr, Ich Glaube, Hilf Mir Schwachen«1:03Cantatas, BWV 79-82BWV 79 Gott, Der Herr, Ist Sonn Und Schild (Festo Reformationis = At The Feast Of Reformation ∙ Zum Reformatiosfest ∙ Pour La Fête De La Réformation)15:36845763Gustav LeonhardtConductor25-1[Coro]: »Gott, Der Herr, Ist Sonn Und Schild«5:0325-2Aria (Alto): »Gott Ist Unsre Sonn Und Schild«3:4125-3Choral (Coro): »Nun Danket Alle Gott«2:1325-4Recitativo (Basso): »Gottlob, Wir Wissen Den Rechten Weg«0:5225-5Aria (Soprano, Basso): »Gott, Ach Gott, Verlaß Die Deinen Nimmermehr!«3:1225-6Choral (Coro): »Erhalt Uns In Der Wahrheit«0:45BWV 80 Ein Feste Burg Ist Unser Gott (Festo Reformationis = At The Feast Of Reformation ∙ Zum Reformatiosfest ∙ Pour La Fête De La Réformation)22:58716084Nikolaus HarnoncourtConductor25-7[Coro]: »Ein Feste Burg Ist Unser Gott«5:1025-8Aria (Soprano, Basso): »Mit Unser Macht«3:4225-9Recitativo (Basso): »Erwäge Doch, Kind Gottes«1:4225-10Aria (Soprano): »Komm In Mein Herzenshaus«3:0825-11Choral (Coro): »Und Wenn Die Welt Voll Teufel Wär«3:1825-12Recitativo (Tenore): »So Stehe Denn Bei Christi Blutgefärbten Fahne«1:1325-13Duetto (Alto, Tenore): »Wie Selig Sind Doch Die«3:4325-14Choral (Coro): »Das Wort Sie Sollen Lassen Stahn«1:12BWV 81 Jesus Schläft, Was Soll Ich Hoffen (Dominica 4 Post Epiphanias = On The 4th Sunday After Epiphany ∙ Am 4. Sonntag Nach Epiphanias ∙ Pour Le 4ème Dimanche Après L'Epiphanie)15:58716084Nikolaus HarnoncourtConductor25-15Aria (Alto): »Jesus Schläft, Was Soll Ich Hoffen?«4:1125-16Recitativo (Tenore): »Herr! Warum Trittest Du So Ferne?«0:5825-17Aria (Tenore): »Die Schäumenden Wellen Von Belials Bächen«3:0225-18Arioso (Basso): »Ihr Kleingläubigen, Warum Seid Ihr So Furchtsam?«1:0425-19Aria (Basso): »Schweig, Aufgetürmtes Meer!«5:1825-20Recitativo (Alto): »Wohl Mir, Mein Jesus Spricht Ein Wort«0:1925-21Choral (Coro): »Unter Deinen Schirmen«1:15BWV 82 Ich Habe Genung (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Am Feste Mariae Reinigung ∙ Pour La Fête De La Purification De Marie)20:39716084Nikolaus HarnoncourtConductor25-22Aria (Basso): »Ich Habe Genung«6:4725-23Recitativo (Basso): »Ich Habe Genung! Mein Trost Ist Nur Allein«0:5725-24Aria (Basso): »Schlummert Ein, Ihr Matten Augen«8:4725-25Recitativo (Basso): »Mein Gott! Wann Kommt Das Schöne: Nun!«0:4225-26Aria (Basso): »Ich Freue Mich Auf Meinen Tod«3:26Cantatas, BWV 83-86BWV 83 Erfreute Zeit Im Neuen Bunde (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Am Feste Mariae Reinigung ∙ Pour La Fête De La Purification De Marie)20:22716084Nikolaus HarnoncourtConductor26-1[Aria] (Alto): »Erfreute Zeit Im Neuen Bunde«7:4526-2Aria ∙ Recitativo (Basso): »Herr, Nun Lässest Du Deinen Diener«4:0426-3Aria (Tenore): »Eile, Herz, Voll Freudigkeit«6:5826-4Recitativo (Alto): »Ja, Merkt Dein Galube Noch Viel Finsternis«0:4426-5Choral (Coro): »Er Ist Das Heil Und Selig Licht«1:00BWV 84 Ich Bin Vergnügt Mit Meinem Glücke (Dominica Septuagesimae = At The Sunday Septuagesimae ∙ Am Sonntag Septuagesimae ∙ Pour Le Dimanche De La Septuagésima)13:22716084Nikolaus HarnoncourtConductor26-6Aria (Soprano): »Ich Bin Vergnügt Mit Meinem Glücke«5:2426-7Recitativo (Soprano): »Gott Ist Mir Ja Nichts Schuldig«1:1526-8Aria (Soprano): »Ich Esse Mit Freuden Mein Weniges Brot«4:5926-9Recitativo (Soprano): »Im Schweiße Meines Angesichts«0:5126-10Choral (Coro): »Ich Leb Indes In Dir Vergnüget«1:03BWV 85 Ich Bin Ein Guter Hirt (Dominica Misericordias Domini = At The Sunday Misericordias Domini ∙ Am Sonntag Misericordias Domini ∙ Pour Le Dimanche Misericordias Domini)15:12716084Nikolaus HarnoncourtConductor26-11[Aria] (Basso): »Ich Bin Ein Guter Hirt«2:5826-12Aria (Alto): »Jesus Ist Ein Guter Hirt«3:1226-13Choral (Soprano): »Der Herr Ist Mein Getreuer Hirt«4:5326-14Recitativo (Tenore): »Wenn Die Mietlinge Schlafen«0:4926-15Aria (Tenore): »Seht, Was Die Liebe Tut«2:2626-16Choral (Coro): »Ist Gott Mein Schutz Und Treuer Hirt«1:04BWV 86 Wahrlich, Wahrlich, Ich Sage Euch (Dominica Rogate = At The Sunday Rogate ∙ Am Sonntag Rogate ∙ Pour Le Dimanche De Rogate)13:02716084Nikolaus HarnoncourtConductor26-17[Aria] (Basso): »Wahrlich, Wahrlich, Ich Sage Euch«2:0926-18Aria (Alto): »Ich Will Doch Wohl Rosen Brechen«5:2226-19Choral (Soprano): »Und Was Der Ewig Gütig Gott«1:4726-20Recitativo (Tenore): »Gott Macht Es Nicht Gleich Wie Die Welt«0:2126-21Aria (Tenore): »Gott Hilft Gewiß«2:3126-22Choral (Coro): »Die Hoffnung Wart' Der Rechten Zeit«0:52Cantatas, BWV 87-90BWV 87 Bisher Habt Ihr Nichts Gebeten In Meinem Namen (Dominica Rogate = At The Sunday Rogate ∙ Am Sonntag Rogate ∙ Pour Le Dimanche De Rogate)17:37716084Nikolaus HarnoncourtConductor27-1[Aria] (Basso): »Bisher Habt Ihr Nichts Gebeten In Meinem Namen«1:4227-2Recitativo (Alto): »O Wort, Das Geist Und Seel Erschreckt«0:3027-3Aria (Alto): »Vergib, O Vater, Unsre Schuld«7:3327-4Recitativo (Tenore): »Wenn Unsre Schuld Bis An Den Himmel Steigt«0:4527-5Aria (Basso): »In Der Welt Habt Ihr Angst«1:4727-6Aria (Tenore): »Ich Will Leiden, Ich Will Schweigen«4:0827-7Choral (Coro): »Muss Ich Sein Betrübet?«1:22BWV 88 Siehe, Ich Will Viel Fischer Aussenden Prima Parte (Dominica 5 Post Trinitatis = On The 5th Sunday After Trinity ∙ Am 5. Sonntag Nach Trinitatis ∙ Pour Le 5ème Dimanche Après La Trinité)11:24845763Gustav LeonhardtConductor27-8Aria (Basso): »Siehe, Ich Will Viel Fischer Aussenden«6:5027-8Recitativo (Tenore): »Wie Leichtlich Könnte Doch Der Höchste Uns Entbehren«0:4227-10Aria (Tenore): »Nein, Gott Ist Allezeit Geflissen«3:52BWV 88 Siehe, Ich Will Viel Fischer Aussenden Seconda Parte (Dominica 5 Post Trinitatis = On The 5th Sunday After Trinity ∙ Am 5. Sonntag Nach Trinitatis ∙ Pour Le 5ème Dimanche Après La Trinité)7:30845763Gustav LeonhardtConductor27-11[Recitativo ∙ Aria] (Tenore, Basso): »Jesus Sprach Zu Simon«2:1427-12Duetto (Soprano, Alto): »Beruft Gott Selbst, So Muß Der Segen«3:1027-13Recitativo (Soprano): »Was Kann Dich Denn In Deinem Wandel Schrecken«1:1827-14Choral (Coro): »Sing, Bet Und Geh Auf Gottes Wegen«0:58BWV 89 Was Soll Ich Aus Dir Machen, Ephraim (Dominica 22 Post Trinitatis = On The 22nd Sunday After Trinity ∙ Am 22. Sonntag Nach Trinitatis ∙ Pour Le 22ème Dimanche Après La Trinité)12:26845763Gustav LeonhardtConductor27-15Aria (Basso): »Was Soll Ich Aus Dir Machen, Ephraim?«4:2927-16Recitativo (Alto): »Ja, Freilich Sollte Gott«0:4227-17Aria (Alto): »Ein Unbarmherziges Gerichte«2:3527-18Recitativo (Soprano): »Wohlan! Mein Herze Legt Zorn«1:0727-19Aria (Soprano): »Gerechter Gott, Ach, Rechnest Du?«2:5327-20Choral (Coro): »Mir Mangelt Zwar Sehr Viel«0:51BWV 90 Es Reisset Euch Ein Schrecklich Ende (Dominica 25 Post Trinitatis = On The 25th Sunday After Trinity ∙ Am 25. Sonntag Nach Trinitatis ∙ Pour Le 25ème Dimanche Après La Trinité)12:14845763Gustav LeonhardtConductor27-21Aria (Tenore): »Es Reißet Euch Ein Schrecklich Ende«6:0527-22Recitativo (Alto): »Des Höchsten Güte Wird Von Tag Zu Tage Neu«1:1727-23Aria (Basso): »So Löschet Im Eifer Der Rächende Richter«3:3327-24Recitativo (Tenore): »Doch Gottes Auge Sieht Auf Uns Als Auserwählte«0:3627-25Choral (Coro): »Leit Uns Mit Deiner Rechten Hand«0:43Cantatas, BWV 91-93BWV 91 Gelobet Seist Du, Jesu Christ (Feria 1 Nativitatis Christi = On The 1st Day Of Christmas ∙ Am 1. Weihnachtstag ∙ Pour Le 1er Jour De Noël)18:02845763Gustav LeonhardtConductor28-1[Coro]: »Gelobet Seist Du, Jesu Christ«3:0128-2Recitativo ∙ Choral (Soprano): »Der Glanz Der Höchsten Herrlichkeit«1:3928-3Aria (Tenore): »Gott, Dem Der Erden Kreis Zu Klein«3:1628-4Recitativo (Basso): »O Christenheit, Wohlan«1:1528-5Aria (Duetto: Soprano, Alto): »Die Armut, So Gott Auf Sich Nimmt«8:1328-6Choral (Coro): »Das Hat Er Alles Uns Getan«0:48BWV 92 Ich Hab In Gottes Herz Und Sinn (Dominica Septuagesimae = At The Sunday Septuagesimae ∙ Am Sonntag Septuagesimae ∙ Pour Le Dimanche De La Septuagésima)29:16845763Gustav LeonhardtConductor28-7[Coro]: »Ich Hab In Gottes Herz Und Sinn«6:5628-8Recitativo ∙ Choral (Basso): »Es Kann Mir Fehlen Nimmermehr!«3:2828-9Aria (Tenore): »Seht, Seht! Wie Reißt, Wie Bricht, Wie Fällt«2:5928-10Choral (Alto): »Zudem Ist Weisheit Und Verstand«3:2328-11Recitativo (Tenore): »Wir Wollen Nun Nicht Länger Zagen«1:0728-12Aria (Basso): »Das Brausen Von Den Rauhen Winden«4:4628-13Choral ∙ Recitativo (Soprano, Tenore, Alto, Basso): »Ei Nun, Mein Gott, So Fall Ich Dir«2:1428-14Aria (Soprano): »Meinem Hirten Bleib Ich Treu«3:1828-15Choral (Coro): »Soll Ich Denn Auch Des Todes Weg«1:14BWV 93 Wer Nur Den Lieben Gott Lässt Walten (Dominica 5 Post Trinitatis = On The 5th Sunday After Trinity ∙ Am 5. Sonntag Nach Trinitatis ∙ Pour Le 5ème Dimanche Après La Trinité)18:03716084Nikolaus HarnoncourtConductor28-16Coro: »Wer Nur Den Lieben Gott Läßt Walten«5:1828-17Recitativo ∙ Choral (Basso): »Was Helfen Uns Die Schweren Sorgen«1:3028-18Aria (Tenore): »Man Halte Nur Ein Wenig Stille«2:5328-19Aria ∙ Duetto (Soprano, Alto): »Er Kennt Die Rechten Freudenstunden«2:4928-20Recitativo ∙ Choral (Tenore): »Denk Nicht In Deiner Drangsalshitze«2:0528-21Aria (Soprano): »Ich Will Auf Den Herren Schaun«2:3328-22Choral (Coro): »Sing, Bet Und Geh Auf Gottes Wegen«0:55Cantatas, BWV 94-96BWV 94 Was Frag Ich Nach Der Welt (Dominica 9 Post Trinitatis = On The 9th Sunday After Trinity ∙ Am 9. Sonntag Nach Trinitatis ∙ Pour Le 9ème Dimanche Après La Trinité)24:52716084Nikolaus HarnoncourtConductor29-1[Coro]: »Was Frag Ich Nach Der Welt«2:4929-2Aria (Basso): »Die Welt Ist Wie Ein Rauch Und Schatten«2:0829-3Recitativo (Tenore): »Die Welt Sucht Ehr Und Ruhm«3:2129-4Aria (Alto): »Betörte Welt, Betörte Welt!«3:5529-5Recitativo (Basso): »Die Welt Bekümmert Sich«2:2929-6Aria (Tenore): »Die Welt Kann Ihre Lust Und Freud«4:4529-7Aria (Soprano): »Es Halt Es Mit Der Blinden Welt«3:3229-8Choral (Coro): »Was Frag Ich Nach Der Welt!«2:03BWV 95 Christus, Der Ist Mein Leben (Dominica 16 Post Trinitatis = On The 16th Sunday After Trinity ∙ Am 16. Sonntag Nach Trinitatis ∙ Pour Le 16ème Dimanche Après La Trinité)14:36716084Nikolaus HarnoncourtConductor29-9[Coro ∙ Recitativo] (Tenore): »Christus, Der Ist Mein Leben«3:4229-10Recitativo (Soprano): »Nun, Falsche Welt!«0:4629-11Choral (Soprano): »Valet Will Ich Dir Geben«1:3829-12Recitativo (Tenore): »Ach, Könnte Mir Doch Bald So Wohl Geschehen«0:2529-13Aria (Tenore): »Ach Schlage Doch Bald«5:5929-14Recitativo (Basso): »Denn Ich Weiß Dies«1:0829-15Choral (Coro): »Weil Du Vom Tod Erstanden Bist«1:09BWV 96 Herr Christ, Der Einge Gottessohn (Dominica 18 Post Trinitatis = On The 18th Sunday After Trinity ∙ Am 18. Sonntag Nach Trinitatis ∙ Pour Le 18ème Dimanche Après La Trinité)20:02716084Nikolaus HarnoncourtConductor29-16Coro: »Herr Christ, Der Einge Gottessohn«6:0429-17Recitativo (Alto): »O Wunderkraft Der Liebe«1:0329-18Aria (Tenore): »Ach, Ziehe Die Seele Mit Seilen Der Liebe«8:0229-19Recitativo (Soprano): »Ach, Führe Mich, O Gott«0:3729-20Aria (Basso): »Bald Zur Rechten, Bald Zur Linken«3:1829-21Choral (Coro): »Ertöt Uns Durch Dein Güte«0:58Cantatas, BWV 97-99BWV 97 In Allen Meinen Taten (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)26:39716084Nikolaus HarnoncourtConductor30-1Coro: »In Allen Meinen Taten«4:4730-2Aria (Basso): »Nichts Ist Es Spat Und Frühe«3:3730-3Recitativo (Tenore): »Es Kann Mir Nichts Geschehen«0:2630-4Aria (Tenore): »Ich Traue Seiner Gnaden«4:5930-5Recitativo (Alto): »Er Wolle Meiner Sünden«0:3830-6Aria (Alto): »Leg Ich Mich Späte Nieder«4:4030-7Duetto (Soprano, Basso): »Hat Er Es Denn Beschlossen«3:1630-8Aria (Soprano): »Ihm Hab Ich Mich Ergeben«3:2330-9Choral (Coro): »So Sei Nun, Seele, Deine«1:03BWV 98 Was Gott Tut, Das Ist Wohlgetan (Dominica 21 Post Trinitatis = On The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)14:27845763Gustav LeonhardtConductor30-10[Coro]: »Was Gott Tut, Das Ist Wohlgetan«4:2530-11Recitativo (Tenore): »Ach Gott! Wenn Wirst Du Mich Einmal«0:5930-12Aria (Soprano): »Hört, Ihr Augen, Auf Zu Weinen«3:4430-13Recitativo (Alto): »Gott Hat Ein Herz, Das Des Erbarmens Überfluß«0:5730-14Aria (Basso): »Meinen Jesum Laß Ich Nicht«4:31BWV 99 Was Gott Tut, Das Ist Wohlgetan (Dominica 15 Post Trinitatis = On The 15th Sunday After Trinity ∙ Am 15. Sonntag Nach Trinitatis ∙ Pour Le 15ème Dimanche Après La Trinité)13:18716084Nikolaus HarnoncourtConductor30-15[Coro]: »Was Gott Tut, Das Ist Wohlgetan«6:2330-16Recitativo (Basso): »Sein Wort Der Wahrheit Stehet Fest«1:0730-17Aria (Tenore): »Erschüttre Dich Nur Nicht, Verzagte Seele«5:5730-18Recitativo (Alto): »Nun, Der Von Ewigkeit Geschlossne Bund«0:5730-19Aria (Duetto: Soprano, Alto): »Wenn Des Kreuzes Bitterkeiten«2:5430-20Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«1:00Cantatas, BWV 100-102BWV 100 Was Gott Tut, Das Ist Wohlgetan (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)23:47845763Gustav LeonhardtConductor31-1[Coro]: »Was Gott Tut, Das Ist Wohlgetan«4:5231-2Duetto (Alto, Tenore): »Was Gott Tut, Das Ist Wohlgetan«4:0131-3[Aria] (Soprano): »Was Gott Tut, Das Ist Wohlgetan«4:4431-4[Aria] (Basso): »Was Gott Tut, Das Ist Wohlgetan«4:2031-5[Aria] (Alto): »Was Gott Tut, Das Ist Wohlgetan«3:5031-6Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«2:10BWV 101 Nimm Von Uns, Herr, Du Treuer Gott (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)24:04716084Nikolaus HarnoncourtConductor31-7[Coro]: »Nimm Von Uns, Herr, Du Treuer Gott«6:0731-8Aria (Tenore): »Handle Nicht Nach Deinen Rechten«3:1531-9Recitativo · Choral (Soprano): »Ach! Herr Gott, Durch Die Treue Dein«2:0431-10Aria (Basso): »Warum Willst Du So Zornig Sein?«3:3631-11Recitativo · Choral (Tenore): »Die Sünd Hat Uns Verderbet Sehr«1:2931-12Aria (Duetto: Soprano, Alto): »Gedenk An Jesu Bittern Tod«6:4231-13Choral (Coro): »Leit Uns Mit Deiner Rechten Hand«1:02BWV 102 Herr, Deine Augen Sehen Nach Dem Glauben Prima Parte (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)14:40716084Nikolaus HarnoncourtConductor31-14[Coro]: »Herr, Deine Augen Sehen Nach Dem Glauben«6:0931-15Recitativo (Basso): »Wo Ist Das Ebenbild«0:4831-16Aria (Alto): »Weh Der Seele«4:0031-17Arioso (Basso): »Verachtest Du Den Reichtum Seiner Gnade«3:43BWV 102 Herr, Deine Augen Sehen Nach Dem Glauben Seconda Parte (Dominica 10 Post Trinitatis = On The 10th Sunday After Trinity ∙ Am 10. Sonntag Nach Trinitatis ∙ Pour Le 10ème Dimanche Après La Trinité)6:41716084Nikolaus HarnoncourtConductor31-18[Aria] (Tenore): »Erschrecke Doch, Du Allzu Sichre Seele!«3:3531-19Recitativo (Alto): »Beim Warten Ist Gefahr«1:2231-20Choral (Coro): »Heut Lebst Du, Heut Bekehre Dich«1:44Cantatas, BWV 103-105BWV 103 Ihr Werdet Weinen Und Heulen (Dominica Jubilate = At The Sunday Jubilate ∙ Am Sonntag Jubilate ∙ Pour Le Dimanche De Jubilate)16:12845763Gustav LeonhardtConductor32-1[Coro · Arioso] (Basso): »Ihr Werdet Weinen Und Heulen«6:0232-2Recitativo (Tenore): »Wer Sollte Nicht In Klagen Untergehn«0:3432-3Aria (Alto): »Kein Arzt Ist Außer Dir Zu Finden«4:4532-4Recitativo (Alto): »Du Wirst Mich Nach Der Angst Auch Wiederum Erquicken«0:3432-5Aria (Tenore): »Erholet Euch, Betrübte Sinnen«3:1732-6Choral (Coro): »Ich Hab Dich Einen Augenblick«1:16BWV 104 Du Hirte Israel, Höre (Dominica Misericordias Domini = At The Sunday Misericordias Domini ∙ Am Sonntag Misericordias Domini ∙ Pour Le Dimanche Misericordias Domini)18:18716084Nikolaus HarnoncourtConductor32-7[Coro]: »Du Hirte Israel, Höre«4:2632-8Recitativo (Tenore): »Der Höchste Hirte Sorgt Vor Mich«0:3532-9Aria (Tenore): »Verbirgt Mein Hirte Sich Zu Lange«3:3132-10Recitativo (Basso): »Ja, Dieses Wort Ist Meiner Seelen Speise«0:4632-11Aria (Basso): »Beglückte Herde, Jesu Schafe«7:5832-12Choral (Coro): »Der Herr Ist Mein Getreuer Hirt«1:12BWV 105 Herr, Gehe Nicht Ins Gericht (Dominica 9 Post Trinitatis = On The 9th Sunday After Trinity ∙ Am 9. Sonntag Nach Trinitatis ∙ Pour Le 9ème Dimanche Après La Trinité)21:00716084Nikolaus HarnoncourtConductor32-13[Coro]: »Herr, Gehe Nicht Ins Gericht«6:0232-14Recitativo (Alto): »Mein Gott, Verwirf Mich Nicht«0:4332-15Aria (Soprano): »Wie Zittern Und Wanken«4:5032-16Recitativo (Basso): »Wohl Aber Dem, Der Seinen Bürgen Weiß«1:3232-17Aria (Tenore): »Kann Ich Nur Jesum Mir Zum Freunde Machen«6:2032-18Choral (Coro): »Nun, Ich Weiß, Du Wirst Mir Stillen«1:33Cantatas, BWV 106-108BWV 106 Gottes Zeit Ist Die Allerbeste Zeit (Actus Tragicus) (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)20:11845763Gustav LeonhardtConductor33-1Sonatina2:3833-2-8:4233-2a[Coro]: »Gottes Zeit Ist Die Allerbeste Zeit«33-2b[Arioso] (Tenore): »Ach Herr, Lehre Uns Bedenken«33-2c[Arioso] (Basso): »Bestelle Dein Haus«33-2d[Coro ∙ Arioso] (Soprano): »Es Ist Der Alte Bund«33-3-6:0733-3a[Aria] (Alto): »In Deine Hände Befehl Ich Meinen Geist«33-3b[Arioso ∙ Choral] (Alto, Basso): »Heute Wirst Du Mit Mir Im Paradies Sein«33-4[Coro]: »Glorie, Lob, Ehr Und Herrlichkeit«2:54BWV 107 Was Willst Du Dich Betrüben (Dominica 7 Post Trinitatis = On The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)18:31845763Gustav LeonhardtConductor33-5[Coro]: »Was Willst Du Dich Betrüben«3:3233-6Recitativo (Basso): »Denn Gott Verlässet Keinen«0:5133-7Aria (Basso): »Auf Ihn Magst Du Es Wagen«3:0133-8Aria (Tenore): »Wenn Auch Gleich Aus Der Höllen«2:5633-9Aria (Soprano): »Er Richts Zu Seinen Ehren«3:0433-10Aria (Tenore): »Drum Ich Mich Ihm Ergebe«2:5233-11Choral (Coro: »Herr, Gib, Daß Ich Dein Ehre«2:26BWV 108 Es Ist Euch Gut, Dass Ich Hingehe (Dominica Cantate = On The Sunday Cantate ∙ Am Sonntag Cantate ∙ Pour Le Dimanche Cantate)16:01716084Nikolaus HarnoncourtConductor33-12[Aria] (Basso): »Es Ist Euch Gut, Daß Ich Hingehe«3:5233-13Aria (Tenore): »Mich Kann Kein Zweifel Stören«3:4933-14Recitativo (Tenore): »Dein Geist Wird Mich Also Regieren«0:3033-15Coro: »Wenn Aber Jener, Der Geist Der Wahrheit, Kommen Wird«3:0133-16Aria (Alto): »Was Mein Herz Von Dir Begehrt«3:5033-17Choral (Coro): »Dein Geist, Den Gott Vom Himmel Gibt«0:59Cantatas, BWV 109-111BWV 109 Ich Glaube, Lieber Herr, Hilf Meinem Unglauben (Dominica 21 Post Trinitatis = On The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)25:19716084Nikolaus HarnoncourtConductor34-1[Coro]: »Ich Glaube, Lieber Herr, Hilf Meinem Unglauben!«6:5734-2Recitativo (Tenore): »Des Herren Hand Ist Ja Noch Nicht Verkürzt«1:1734-3Aria (Tenore): »Wie Zweifelhaftig Ist Mein Hoffen«6:3934-4Recitativo (Alto): »O Fasse Dich, Du Zweifelhafter Mut«0:2734-5Aria (Alto): »Der Heiland Kennet Ja Die Seinen«5:5034-6Choral (Coro): »Wer Hofft In Gott, Und Dem Vertraut«4:19BWV 110 Unser Mund Sei Voll Lachens (Feria Nativitatis Christi = On The 1st Day Of Christmas ∙ Am 1. Weihnachtstag ∙ Pour Le 1er Jour De Noël)24:55716084Nikolaus HarnoncourtConductor34-7Coro (Solo: Soprano, Alto, Tenore, Basso): »Unser Mund Sei Voll Lachens«7:2734-8Aria (Tenore): »Ihr Gedanken Und Ihr Sinnen«4:2634-9Recitativo (Basso): »Dir, Herr, Ist Niemand Gleich«0:3034-10Aria (Alto): »Ach Herr, Was Ist Ein Menschenkind«3:4234-11Duetto (Soprano, Tenore): »Ehre Sei Gott In Der Höhe«3:5934-12Aria (Basso): »Wacht Auf! Ihr Adern Und Ihr Glieder«3:5834-13Choral (Coro): »Alleluja! Gelobt Sei Gott!«1:03BWV 111 Was Mein Gott Will, Das G'scheh Allzeit (Dominica 3 Post Epiphanias = On The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Après L'Epiphanie)17:08716084Nikolaus HarnoncourtConductor34-14Coro: »Was Mein Gott Will, Das G'scheh Allzeit«5:0434-15Aria (Basso): »Entsetze Dich, Mein Herze, Nicht«2:3634-16Recitativo (Alto): »O Törichter! Der Sich Von Gott Entzieht«0:4334-17Aria (Duetto: Alto, Tenore): »So Geh Ich Mit Beherzten Schritten«6:2034-18Recitativo (Soprano): »Drum Wenn Der Tod Zuletzt Den Geist«0:5734-19Choral (Coro): »Noch Eins, Herr, Will Ich Bitten Dich«1:28Cantatas, BWV 112-114BWV 112 Der Herr Ist Mein Getreuer Hirt (Dominica Misericordias Domini = At The Sunday Misericordias Domini ∙ Am Sonntag Misericordias Domini ∙ Pour Le Dimanche Misericordias Domini)13:40716084Nikolaus HarnoncourtConductor35-1[Coro]: »Der Herr Ist Mein Getreuer Hirt«3:2235-2Aria (Alto): »Zum Reinen Wasser Er Mich Weist«3:4435-3Recitativo (Basso): »Und Ob Ich Wandelt Im Finstern Tal«1:3535-4Duetto (Soprano, Tenore): »Du Bereitest Für Mir Einen Tisch«3:5035-5Choral (Coro): »Gutes Und Die Barmherzigheit«1:18BWV 113 Herr Jesu Christ, Du Höchstes Gut (Dominica 11 Post Trinitatis = On The 11th Sunday After Trinity ∙ Am 11. Sonntag Nach Trinitatis ∙ Pour Le 11ème Dimanche Après La Trinité)25:37845763Gustav LeonhardtConductor35-6[Coro]: »Herr Jesu Christ, Du Höchstes Gut«3:5935-7[Choral] (Alto): »Erbarm Dich Mein In Solcher Last«5:1635-8Aria (Basso): »Fürwahr, Wenn Mir Das Kömmet Ein«3:1635-9Recitativo (Basso): »Jedoch Dein Heilsam Wort, Das Macht«2:0635-10Aria (Tenore): »Jesus Nimmt Die Sünder An«4:5435-11Recitativo (Tenore): »Der Heiland Nimmt Die Sünder An«2:1535-12Aria (Duetto: Soprano, Alto): »Ach Herr, Mein Gott, Vergib Mirs Doch«2:5435-13Choral (Coro): »Stärk Mich Mit Deinem Freudengeist«1:08BWV 114 Ach, Lieben Chtisten, Seid Getrost (Dominica 17 Post Trinitatis = On The 17th Sunday After Trinity ∙ Am 17. Sonntag Nach Trinitatis ∙ Pour Le 17ème Dimanche Après La Trinité)24:01845763Gustav LeonhardtConductor35-14[Coro]: »Ach, Lieben Christen, Seid Getrost«3:5635-15Aria (Tenore): »Wo Wird In Diesem Jammertale«9:0935-16Recitativo (Basso): »O Sünder, Trage Mit Geduld«1:3735-17Choral (Soprano): »Kein Frucht Das Weizenkörnlein Bringt«2:1735-18Aria (Alto): »Du Machst, O Tod, Mir Nun Nicht Ferner Bange«5:1735-19Recitativo (Tenore): »Indes Bedenke Deine Seele«0:4535-20Choral (Coro): »Wir Wachen Oder Schlafen Ein«1:00Cantatas, BWV 115-117BWV 115 Mache Dich, Mein Geist, Bereit (Dominica 22 Post Trinitatis = On The 22nd Sunday After Trinity ∙ Am 22. Sonntag Nach Trinitatis ∙ Pour Le 22ème Dimanche Après La Trinité)21:55716084Nikolaus HarnoncourtConductor36-1[Coro]: »Mache Dich, Mein Geist, Bereit«4:2836-2Arai (Alto): »Ach, Schläfrige Seele«8:5336-3Recitativo (Basso): »Gott, So Vor Deine Seele Wacht«0:5936-4Aria (Soprano): »Bete Aber Auch Dabei«5:4336-5Recitativo (Tenore): »Er Sehnet Sich Nach Unserm Schreien«0:5536-6Choral (Coro): »Drum So Laßt Uns Immerdar«1:07BWV 116 Du Friedefürst, Herr Jesu Christ (Dominica 25 Post Trinitatis = On The 25th Sunday After Trinity ∙ Am 25. Sonntag Nach Trinitatis ∙ Pour Le 25ème Dimanche Après La Trinité)14:34716084Nikolaus HarnoncourtConductor36-7[Coro]: »Du Friedefürst, Herr Jesu Christ«4:1236-8Aria (Alto): »Ach, Unaussprechlich Ist Die Not«2:5836-9Recitativo (Tenore): »Gedenke Doch, O Jesu«0:4436-10Aria (Terzetto: Soprano, Tenore, Basso): »Ach, Wir Bekennen Unsre Schuld«4:3636-11Recitativo (Alto): »Ach, Laß Uns Durch Die Scharfen Ruten«1:0636-12Choral (Coro): »Erleucht Auch Unser Sinn Und Herz«1:08BWV 117 Sei Lob Und Ehr Dem Höchsten Gut (Ohne Bestimmung = Occasion Unspecified ∙ Sans Destination)19:20845763Gustav LeonhardtConductor36-13[Coro]: »Sei Lob Und Ehr Dem Höchsten Gut«4:1036-14Recitativo (Basso): »Es Danken Dir Die Himmelsheer«1:0336-15Aria (Tenore): »Was Unser Gott Geschaffen Hat«3:0536-16Choral (Coro): »Ich Rief Dem Herrn In Meiner Not«0:5536-17Recitativo (Alto): »Der Herr Ist Noch Und Nimmer Nicht«1:3436-18Aria (Basso): »Wenn Trost Und Hülf Ermangeln Muß«3:3836-19Aria (Alto): »Ich Will Dich All Mein Leben Lang«3:1936-21Recitativo (Tenore): »Ihr, Die Ihr Christi Namen Nennt«0:4136-22[Coro]: »So Kommet Vor Sein Angesicht«0:55Cantatas, BWV 119-120BWV 119 Preise, Jerusalem, Den Herrn (For The Leipzig Town Council Inauguration 1723 ∙ Zum Leipziger Ratswechsel 1723 ∙ Pour Le Changement Du Conseil Municipal De Leipzig 1723)25:18716084Nikolaus HarnoncourtConductor37-1[Coro]: »Preise, Jerusalem, Den Herrn«5:1037-2Recitativo (Tenore): »Gesegnet Land, Glückselge Stadt«1:0837-3Aria (Tenore): »Wohl Dir, Du Volk Der Linden«4:1937-4Recitativo (Basso): »So Herrlich Stehst Du, Liebe Stadt«1:5237-5Aria (Alto): »Die Obrigkeit Ist Gottes Gabe«3:2337-6Recitativo (Soprano): »Nun, Wir Erkennen Es«0:5237-7[Coro]: »Der Herr Hat Guts An Uns Getan«7:0537-8Recitativo (Alto): »Zuletzt! Da Du Uns, Herr, Zu Deinem Volk Gesetzt«0:3737-9Choral (Coro): »Hilf Deinem Volk, Herr Jesu Christ«1:03BWV 120 Gott, Man Lobet Dich In Der Stille (For The Leipzig Town Council Inauguration 1728/29 ∙ Zum Leipziger Ratswechsel 1728/29 ∙ Pour Le Changement Du Conseil Municipal De Leipzig 1728/29)21:17716084Nikolaus HarnoncourtConductor37-10[Aria] (Alto): »Gott, Man Lobet Dich In Der Stille«6:0837-11Coro: »Jauchzet, Ihr Erfreuten Stimmen«6:4637-12Recitativo (Basso): »Auf, Du Geliebte Lindenstadt!«1:0437-13Aria (Soprano): »Heil Und Segen Soll Und Muß Zu Aller Zeit«5:2637-14Recitativo (Tenore): »Nun, Herr, So Weihe Selbst Das Regiment«0:3937-15Choral (Coro): »Nun Hilf Uns, Herr, Den Dienern Dein«1:14Cantatas, BWV 121-124BWV 121 Christum Wir Sollen Loben Schon (Feria 2 Nativitatis Christi = At The 2nd Day Of Christmas ∙ Am 2. Weihnachtstag ∙ Pour Le 2éme Jour De Noël)20:23716084Nikolaus HarnoncourtConductor38-1[Coro]: »Christum Wir Sollen Loben Schon«3:1538-2Aria (Tenore): »O Du Von Gott Erhöhte Kreatur«5:4138-3Recitativo (Alto): »Der Gnade Unermeßlichs Wesen«1:0238-4Aria (Basso): »Johannis Freudenvolles Springen«8:3038-5Recitativo (Soprano): »Doch Wie Erblickt Es Dich In Deiner Krippe?«0:5438-6Choral (Coro): »Lob, Ehr Und Dank Sei Dir Gesagt«1:11BWV 122 Das Neugeborne Kindelein (Dominica Post Nativitatis Christi = At The Sunday After Christmas ∙ Am Sonntag Nach Weihnachten ∙ Pour Le Dimanche Après Noël)14:45716084Nikolaus HarnoncourtConductor38-7[Coro]: »Das Neugeborne Kindelein«3:3038-8Aria (Basso): »O Menschen, Die Ihr Täglich Sündigt«5:0638-9Recitativo (Soprano): »Die Engel, Welche Sich Zuvor«1:2438-10Aria (Terzetto: Soprano, Alto, Tenore): »Ist Gott Versöhnt Und Unser Freund«2:4238-11Recitativo (Basso): »Dies Ist Ein Tag, Den Selbst Der Herr Gemacht«1:2638-12Choral (Coro): »Es Bringt Das Rechte Jubeljahr«0:47BWV 123 Liebster Immanuel, Herzog Der Frommen (Dominica 3 Post Epiphanias = At The Feast Of Epiphany ∙ Am Sonntag Epiphanias ∙ Pour La Fête De L'Epiphanie)21:20716084Nikolaus HarnoncourtConductor38-13[Coro]: »Liebster Immanuel, Herzog Der Frommen«5:2538-14Recitativo (Alto): »Die Himmelssüßigkeit«0:4438-15Aria (Tenore): »Auch Die Harte Kreuzesreise«5:0738-16Recitativo (Basso): »Kein Höllenfeind Kann Mich Verschlingen«0:4438-17Recitativo (Basso): »Kein Höllenfeind Kann Mich Verschlingen«7:5338-18Choral (Coro): »Drum Fahrt Nur Immer Hin«1:37BWV 124 Meinen Jesum Lass Ich Nicht (Dominica 1 Post Epiphanias = On The 1st Sunday After Epiphany ∙ Am 1. Sonntag Nach Epiphanias ∙ Pour Le 1er Dimanche Après L'Epiphanie)14:13716084Nikolaus HarnoncourtConductor38-19[Coro]: »Meinen Jesum Laß Ich Nicht«3:4538-20Recitativo (Tenore): »Solange Sich Ein Tropfen Blut«0:3538-21Aria (Tenore): »Und Wenn Der Harte Todesschlag«3:2638-22Recitativo (Basso): »Doch Ach! Welch Schweres Ungemach«0:4838-23Aria (Duetto: Soprano, Alto): »Entziehe Dich Eilends«4:4938-24Choral (Coro): »Jesum Laß Ich Nicht Von Mir«0:50Cantatas, BWV 125-127BWV 125 Mit Fried Und Freud Ich Fahr Dahin (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Am Feste Mariä Reinigung ∙ Pour La Fête De La Purification De Marie)23:50716084Nikolaus HarnoncourtConductor39-1[Coro]: »Mit Fried Und Freud Ich Fahr Dahin«5:2939-2Aria (Alto): »Ich Will Auch Mit Gebrochnen Augen«8:4139-3Recitativo (Basso): »O Wunder, Daß Ein Herz«2:3039-4Aria (Duetto: Tenore, Basso): »Ein Unbegreiflich Licht«5:4539-5Recitativo (Alto): »O Unerschöpfter Schatz Der Güte«0:3739-6Choral (Coro): »Er Ist Das Heil Und Selge Licht«0:58BWV 126 Erhalt Uns, Herr, Bei Deinem Wort (Dominica Sexagesimae = At The Sunday Sexagesimae ∙ Am Sonntag Sexagesimae ∙ Pour Le Dimanche Sexagésimae)17:09716084Nikolaus HarnoncourtConductor39-7[Coro]: »Erhalt Uns, Herr, Bei Deinem Wort«2:5939-8Aria (Tenore): »Sende Deine Macht Von Oben«4:1339-9Recitativo (Alto, Tenore): »Der Menschen Gunst Und Macht«1:5239-10Aria (Basso): »Stürze Zu Boden«5:3439-11Recitativo (Tenore): »So Wird Dein Wort Und Wahrheit Offenbar«0:4239-12Choral (Coro): »Verleih Uns Frieden Gnädiglich«1:59BWV 127 Herr Jesu Christ, Wahr' Mensch Und Gott (Dominica Estomihi = At The Sunday Estomihi ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche D'Estomihi)20:11845763Gustav LeonhardtConductor39-13[Coro]: »Herr Jesu Christ, Wahr' Mensch Und Gott«6:0839-14Recitativo (Tenore): »Wenn Alles Sich Zur Letzten Zeit«1:0839-15Aria (Soprano): »Die Seele Ruht In Jesu Händen«7:4739-16Recitativo · Aria (Basso): »Wenn Einstens Die Posaunen Schallen«4:2139-17Choral (Coro): »Ach, Herr, Vergib All Unsre Schuld«0:47Cantatas, BWV 128-130BWV 128 Auf Christi Himmelfahrt Allein (Festo Ascensionis Christi = At the Ascension Day ∙ Christi Himmelfahrt ∙ Pour La Fête De L'Ascension)17:43845763Gustav LeonhardtConductor40-1[Coro]: »Auf Christi Himmelfahrt Allein«5:0640-2Recitativo (Tenore): »Ich Bin Bereit, Komm, Hole Mich!«0:4240-3Aria (Basso): »Auf, Auf, Mit Hellem Schall«3:3340-4Aria (Duetto: Alto, Tenore): »Sein Allmacht Zu Ergründen«7:2240-5Choral (Coro): »Alsdenn So Wirst Du Mich«1:11BWV 129 Gelobet Sei Der Herr, Mein Gott (Festo Trinitatis = At The Feast Of Trinity ∙ Am Trinitatisfest ∙ Pour La Trinité)20:04845763Gustav LeonhardtConductor40-6Coro: »Gelobet Sei Der Herr, Mein Gott, Mein Licht«4:4040-7Aria (Basso): »Gelobet Sei Der Herr, Mein Gott, Mein Heil«3:5540-8Aria (Soprano): »Gelobet Sei Der Herr, Mein Gott, Mein Trost«4:4540-9Aria (Alto): »Gelobet Sei Der Herr, Mein Gott, Der Ewig Lebet«5:0140-10Choral (Coro): »Dem Wir Das Heilig Itzt Mit Freuden Lassen Klingen«1:53BWV 130 Herr Gott, Dich Loben Alle Wir (Festo S. Michaelis = At The Feast Of St. Michael ∙ Am Michaelistag ∙ Pour La Fête De Saint Michel)15:49716084Nikolaus HarnoncourtConductor40-11[Coro]: »Herr Gott, Dich Loben Alle Wir«3:1540-12Recitativo (Alto): »Ihr Heller Glanz«0:5040-13Aria (Basso): »Der Alte Drache Brennt Vor Neid«4:0940-14Recitativo (Soprano, Tenore): »Wohl Aber Uns«1:1940-15Aria (Tenore): »Laß, O Fürst Der Cherubinen«4:5640-16Choral (Coro): »Darum Wir Billig Loben Dich«1:20Cantatas, BWV 131-133BWV 131 Aus Der Tiefe Rufe Ich, Herr, Zu Dir (Penitential Service? = Bußgottesdienst? ∙ Office De Pénitence?)25:01716084Nikolaus HarnoncourtConductor41-1[Coro]: »Aus Der Tiefe Rufe Ich, Herr, Zu Dir«5:1641-2[Aria] (Duetto: Soprano, Basso): »So Du Willst, Herr, Sünde Zurechnen«4:3041-3[Coro]: »Ich Harre Des Herrn«4:5241-4[Aria] (Tenore, Alto): »Meine Seele Wartet Auf Den Herrn«5:3441-5[Coro]: »Israel, Hoffe Auf Den Herrn«5:00BWV 132 Bereitet Die Wege, Bereitet Die Bahn (Dominica 4 Adventus Christi = At The 4th Sunday Of Advent ∙ Am 4. Advent ∙ Pour Le 4ème Dimanche De L'Advent)18:54845763Gustav LeonhardtConductor41-6Aria (Soprano): »Bereitet Die Wege, Bereitet Die Bahn«7:0141-7Recitativo (Tenore) :»Willst Du Dich Gottes Kind Und Christi Bruder Nennen«2:1241-8Aria (Basso): »Wer Bist Du? Frage Dein Gewissen«3:1141-9Recitativo (Alto): »Ich Will, Mein Gott, Dir Frei Heraus Bekennen«1:4141-10Aria (Alto): »Christi Glieder, Ach Bedenket«3:5941-11Choral (Coro): »Ertöt Uns Durch Dein Güte«1:01BWV 133 Ich Freue Mich In Dir (Feria 3 Nativitatis Christi = At The 3rd Day Of Christmas ∙ Am 3. Weihnachtstag ∙ Pour Le 3ème Jour De Noël)20:47845763Gustav LeonhardtConductor41-12[Coro]: »Ich Freue Mich In Dir«4:1641-13Aria (Alto): »Getrost! Es Faßt Ein Heilger Leib«5:2841-14Recitativo (Tenore): »Ein Adam Mag Sich Voller Schrecken«0:5641-15Aria (Soprano). »Wie Lieblich Klingt Es In Den Ohren«8:1541-16Recitativo (Basso): »Wohlan, Des Todes Furcht Und Schmerz«0:5641-17Choral (Coro): »Wohlan, So Will Ich Mich An Dich, O Jesu, Halten«0:56Cantatas, BWV 134-137BWV 134 Ein Herz, Das Seinen Jesum Weiss (Feria 3 Paschatos = On The 3rd Day Of Easter ∙ Am 3. Osterfeiertag ∙ Pour Le 3ème Jour De Pâques)26:30845763Gustav LeonhardtConductor42-1Recitativo (Alto, Tenore): »Ein Herz, Das Seinen Jesus Lebend Weiß«0:4042-2Aria (Tenore): »Auf, Gläubige, Singet Die Lieblichen Lieder«5:4842-3Recitativo (Alto, Tenore): »Wohl Dir! Gott Hat An Dich Gedacht«2:0542-4Aria (Duetto: Alto, Tenore): »Wir Danken Und Preisen Dein Brünstiges Lieben«8:3142-5Recitativo (Alto, Tenore): »Doch Wirke Selbst Den Dank In Unserm Munde«1:4742-6Coro: »Erschallet, Ihr Himmel, Erfreue Dich Erde«7:49BWV 135 Ach Herr, Mich Armen Sünder (Dominica 3 Post Trinitatis = On The 3rd Sunday After Trinity ∙ Am 3. Sonntag Nach Trinitatis ∙ Pour Le 3ème Dimanche Après La Trinité)14:13845763Gustav LeonhardtConductor42-7[Coro]: »Ach Herr, Mich Armen Sünder«4:4742-8Recitativo (Tenore): »Ach Heile Mich, Du Arzt Der Seelen«1:0842-9Aria (Tenore): »Tröste Mir, Jesu, Mein Gemüte«3:2142-10Recitativo (Alto): »Ich Bin Von Seufzen Müde«0:5842-11Aria (Basso): »Weicht, All Ihr Übeltäter«3:0042-12Choral (Coro): »Ehr Sei Ins Himmels Throne«1:09BWV 136 Erforsche Mich, Gott, Und Erfahre Mein Herz (Dominica 8 Post Trinitatis = On The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)16:51716084Nikolaus HarnoncourtConductor42-13[Coro]: »Erforsche Mich, Gott, Und Erfahre Mein Herz«5:0042-14Recitativo (Tenore): »Ach, Daß Der Fluch«1:0842-15Aria (Alto): »Es Kommt Ein Tag«4:3142-16Recitativo (Basso): »Die Himmel Selber Sind Nicht Rein«1:0742-17Aria (Duetto: Tenore, Basso): »Uns Treffen Zwar Der Sünden Flecken«4:1642-18Choral (Coro): »Dein Blut, Der Edle Saft«1:00BWV 137 Lobe Den Herren, Den Mächtigen König Der Ehren (Dominica 12 Post Trinitatis = On The 12th Sunday After Trinity ∙ Am 12. Sonntag Nach Trinitatis ∙ Pour Le 12ème Dimanche Après La Trinité)14:06716084Nikolaus HarnoncourtConductor42-19Coro: »Lobe Den Herren«3:2642-20Aria (Alto): »Lobe Den Herren, Der Alles So Herrlich Regieret«3:2042-21Aria (Duetto: Soprano, Basso): »Lobe Den Herren, Der Künstlich Und Fein Dich Bereitet«3:3442-22Aria (Tenore): »Lobe Den Herren, Der Deinen Stand Sichtbar Gesegnet«2:5642-23Choral (Coro): »Lobe Den Herren, Was In Mir Ist, Lobe Den Namen!«0:50Cantatas, BWV 138-140BWV 138 Warum Betrübst Du Dich, Mein Herz (Dominica 15 Post Trinitatis = On The 15th Sunday After Trinity ∙ Am 15. Sonntag Nach Trinitatis ∙ Pour Le 15ème Dimanche Après La Trinité)17:54716084Nikolaus HarnoncourtConductor43-1[Coro · Recitativo] (Alto): »Warum Betrübst Du Dich, Mein Herz«4:3543-2Recitativo (Basso:) »Ich Bin Veracht'«1:0043-3[Coro · Recitativo] (Soprano, Alto): »Er Kann Und Will Dich Lassen Nicht«3:2543-4Recitativo (Tenore:): »Ach Süßer Trost!«1:1143-5Aria (Basso): »Auf Gott Steht Meine Zuversicht«5:1043-6Recitativo (Alto): »Ei Nun! So Will Ich Auch Recht Sanfte Ruhn«0:2743-7Choral (Coro): »Weil Du Mein Gott Und Vater Bist«2:17BWV 139 Wohl Dem, Der Sich Auf Seinen Gott (Dominica 21 Post Trinitatis = On The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)18:47716084Nikolaus HarnoncourtConductor43-8Coro: »Wohl Dem, Der Sich Auf Seinen Gott«5:2843-9Aria (Tenore): »Gott Ist Mein Freund«5:5543-10Recitativo (Alto): »Der Heiland Sendet Ja Die Seinen«0:3143-11Aria (Basso): »Das Unglück Schlägt Auf Allen Seiten«5:0843-12Recitativo (Soprano): »Ja, Trag Ich Gleich Den Größten Feind In Mir«0:4843-13Choral (Coro): »Dahero Trotz Der Höllen Heer!«1:08BWV 140 Wachet Auf, Ruft Uns Die Stimme (Dominica 27 Post Trinitatis = On The 27th Sunday After Trinity ∙ Am 27. Sonntag Nach Trinitatis ∙ Pour Le 27ème Dimanche Après La Trinité)28:29716084Nikolaus HarnoncourtConductor43-14[Coro]: »Wachet Auf, Ruft Uns Die Stimme«7:1043-15Recitativo (Tenore): »Er Kommt, Der Bräutigam Kommt«0:5843-16Aria (Duetto: Soprano/Seele, Basso/Jesus): »Wann Kömmst Du, Mein Heil?«6:3343-17Choral (Tenore): »Zion Hört Die Wächter Singen«3:5943-18Recitativo (Basso): »So Geh Herein Zu Mir«1:3743-19Aria (Duetto: Soprano, Basso): »Mein Freund Ist Mein! Und Ich Bin Sein!«6:2343-20Choral (Coro): »Gloria Sei Dir Gesungen«1:49Cantatas, BWV 143-146BWV 143 Lobe Den Herrn, Meine Seele (Festo Circumcisionis Christi = At The New Year's Day ∙ Am Neujahrstag ∙ Pour Le Nouvel An)13:09845763Gustav LeonhardtConductor44-1Coro: »Lobe Den Herrn, Meine Seele«1:1844-2Choral (Soprano): »Du Friedefürst, Herr Jesu Christ«2:1644-3Recitativo (Tenore): »Wohl Dem, Des Hilfe Der Gott Jakobs Ist«0:2144-4Aria (Tenore): »Tausendfaches Unglück, Schrecken«2:5444-5Aria (Basso): »Der Herr Ist König Ewiglich«1:4544-6Aria (Tenore): »Jesu, Retter Deiner Herde«2:2144-7Coro: »Halleluja!«2:24BWV 144 Nimm, Was Dein Ist, Und Gehe Hin (Dominica Septuagesimae = At The Sunday Of Septuagesimae ∙ Am Sonntag Septuagesimae ∙ Pour Le Dimanche De La Septuagésime)13:12845763Gustav LeonhardtConductor44-8[Coro]: »Nimm, Was Dein Ist, Und Gehe Hin«2:0444-9Aria (Alto): »Murre Nicht, Lieber Christ«5:0244-10Choral (Coro): »Was Gott Tut, Das Ist Wohlgetan«0:4844-11Recitativo (Tenore): »Wo Die Genügsamkeit Regiert«0:5644-12Aria (Soprano): »Genügsamkeit Ist Ein Schatz In Diesem Leben«3:1144-13Choral (Coro): »Was Mein Gott Will, Das G'scheh Allzeit«1:21BWV 145 Ich Lebe, Mein Herze, Zu Deinem Ergötzen (Feria 3 Paschatos = On The 3rd Day Of Easter ∙ Am 3. Osterfeiertag ∙ Pour La 3ème Jour De Pâques)9:28716084Nikolaus HarnoncourtConductor44-14Aria (Duetto: Soprano, Tenore): »Ich Lebe, Mein Herze, Zu Deinem Ergötzen«3:4044-15Recitativo (Tenore): »Nun Fordre, Moses, Wie Du Willt«0:5844-16Aria (Basso): »Merke, Mein Herz, Beständig Nur Dies«3:2044-17Recitativo (Soprano): »Mein Jesus Lebt!«0:4844-18Choral (Coro): »Drum Wir Auch Billig Fröhlich Sein«0:52BWV 146 Wir Müssen Durch Viel Trübsal In Das Reich Gottes Eingehen (Dominica Jubilitate = At The Sunday Jubilate ∙ Am Sonntag Jubilate ∙ Pour Le Dimanche De Jubilate)38:02716084Nikolaus HarnoncourtConductor44-19[Sinfonia]7:3544-20[Coro]: »Wir Müssen Durch Viel Trübsal In Das Reich Gottes Eingehen«6:2644-21Aria (Alto): »Ich Will Nach Dem Himmel Zu«8:1044-22Recitativo (Soprano): »Ach! Wer Doch Schon Im Himmel Wär!«2:0344-23Aria (Soprano): »Ich Säe Meine Zähren«5:4944-24Recitativo (Tenore): »Ich Bin Bereit«1:0544-25Duetto (Tenore, Basso): »Wie Will Ich Mich Freuen, Wie Will Ich Mich Laben«5:5244-26Choral (Coro): »Denn Wer Selig Dahin Fähret«1:02Cantatas, BWV 147-149BWV 147 Herz Und Mund Und Tat Und Leben Prima Parte (Festo Visitationis Mariae = At The Feast Of Visitation ∙ Mariae Heimsuchung ∙ Pour La Fête De La Visitation)20:31716084Nikolaus HarnoncourtConductor45-1Coro: »Herz Und Mund Und Tat Und Leben«4:5045-2Recitativo (Tenore): »Gebenedeiter Mund!«2:1545-3Aria (Alto): »Schäme Dich, O Seele, Nicht«4:0545-4Recitativo (Basso): »Verstockung Kann Gewaltige Verblenden«1:4045-5Aria (Soprano): »Bereite Dir, Jesu, Noch Itzo Die Bahn«5:0445-6Choral (Coro): »Wohl Mir, Daß Ich Jesum Habe«2:37BWV 147 Herz Und Mund Und Tat Und Leben Seconda Parte (Festo Visitationis Mariae = At The Feast Of Visitation ∙ Mariae Heimsuchung ∙ Pour La Fête De La Visitation)11:05716084Nikolaus HarnoncourtConductor45-7Aria (Tenore): »Hilf, Jesu, Hilf«3:2445-8Recitativo (Alto): »Der Höchsten Allmacht Wunderhand«2:2445-9Aria (Basso): »Ich Will Von Jesu Wundern Singen«2:3845-10Choral (Coro): »Jesus Bleibet Meine Freude«2:47BWV 148 (Dominica 17 Post Trinitatis = On The 17th Sunday After Trinity ∙ Am 17. Sonntag Nach Trinitatis ∙ Pour Le 17ème Dimanche Après La Trinité)17:35716084Nikolaus HarnoncourtConductor45-11Concerto: »Bringet Dem Herrn Ehre Seines Namens«3:5745-12Aria (Tenore): »Ich Eile, Die Lehren Des Lebens Zu Hören«5:0945-13Recitativo (Alto:) »So Wie Der Hirsch Nach Frischem Wasser Schreit«1:4045-14Aria (Alto): »Mund Und Herze Steht Dir Offen«5:1645-15Recitativo (Tenore): »Bleib Auch, Mein Gott, In Mir«0:3945-16Choral (Coro): »Amen Zu Aller Stund«1:04BWV 149 Man Singet Mit Freuden Vom Sieg (Festo Michaelis = At The Feast Of St Michael ∙ Am Michaelisfest ∙ Pour La Fête De Saint Michel)19:19845763Gustav LeonhardtConductor45-17Coro: »Man Singet Mit Freuden Vom Sieg«4:2745-18Aria (Basso): »Kraft Und Stärke Sei Gesungen«2:5345-19Recitativo (Alto): »Ich Fürchte Mich Vor Tausend Feinden Nicht«0:4445-20Aria (Soprano): »Gottes Engel Weichen Nie«5:1845-21Recitativo (Tenore): »Ich Danke Dir, Mein Lieber Gott«0:3645-22Aria (Duetto: Alto, Tenore): »Seid Wachsam, Ihr Heiligen Wächter«3:3945-23Choral (Coro): »Ach Herr, Laß Dein Lieb Engelein«1:42Cantatas, BWV 150-153BWV 150 Nach Dir, Herr, Verlanget Mich (Occasion Unspecified = Ohne Bestimmung ∙ Sans Destination)15:34845763Gustav LeonhardtConductor46-1Sinfonia1:2946-2Coro: »Nach Dir, Herr, Verlanget Mich«3:5046-3Aria (Soprano): »Doch Bin Und Bleibe Ich Vergnügt«1:2546-4Coro: »Leite Mich In Deiner Wahrheit«1:5346-5Aria (Terzetto: Alto, Tenore, Basso): »Zedern Müssen Von Den Winden«1:3046-6Coro: »Meine Augen Sehen Stets Zu Dem Herrn«2:1846-7Coro: »Meine Tage In Dem Leide«3:16BWV 151 Süsser Trost, Mein Jesus Kömmt (Feria 3 Nativitatis Christi = At The 3rd Day Of Christmas ∙ Am 3. Weihnachtstag ∙ Pour Le 3ème Jour De Noël)16:18845763Gustav LeonhardtConductor46-8Aria (Soprano): »Süßer Trost, Mein Jesu Kömmt«7:5646-9Recitativo (Basso): »Erfreue Dich, Mein Herz«1:0346-10Aria (Alto): »In Jesu Demut Kann Ich Trost«5:5446-11Recitativo (Tenore): »Du Teurer Gottessohn«0:4946-12Choral (Coro): »Heut Schleußt Er Wieder Auf Die Tür«0:45BWV 152 Tritt Auf Die Glaubensbahn (Dominica Post Nativitatis Christi = At The Sunday After Christmas ∙ Am Sonntag Nach Weihnachten ∙ Pour Le Dimanche Après Noël)19:08716084Nikolaus HarnoncourtConductor46-13Concerto3:3346-14Aria (Basso): »Tritt Auf Die Glaubensbahn«3:2546-15Recitativo (Basso): »Der Heiland Ist Gesetzt«2:0346-16Aria (Soprano): »Stein, Der Über Alle Schätze«4:1446-17Recitativo (Basso): »Es Ärgre Sich Die Kluge Welt«1:2846-18Duetto (Soprano, Basso): »Wie Soll Ich Dich, Liebster Der Seelen, Umfassen?«4:25BWV 153 Schau, Lieber Gott, Wie Meine Feind (Dominica Post Festum Circumcisionis Christi = For The Sunday After New Year ∙ Am Sonntag Nach Neujahr ∙ Pour Le Dimanche Après Noël)15:06716084Nikolaus HarnoncourtConductor46-19Choral (Coro): »Schau, Lieber Gott, Wie Meine Feind«1:0246-20Recitativo (Alto): »Mein Liebster Gott«0:3346-21Aria (Basso): »Fürchte Dich Nicht, Ich Bin Mit Dir«1:4046-22Recitativo (Tenore): »Du Sprichst Zwar, Lieber Gott«1:3346-23Choral (Coro): »Und Ob Gleich Alle Teufel«1:0546-24Aria (Tenore): »Stürmt Nur, Stürmt, Ihr Trübsalswetter«2:5646-25Recitativo (Basso): »Getrost! Mein Herz, Erdulde Deinen Schmerz«1:3846-26Aria (Alto): »Soll Ich Meinen Lebenslauf«2:5546-27Choral (Coro): »Drum Will Ich, Weil Ich Lebe Noch«1:44Cantatas, BWV 154-157BWV 154 Mein Liebster Jesus Ist Verloren (Dominica 1 Post Epiphanias = At The 1st Sunday After Epiphany ∙ Am 1. Sonntag Nach Epiphanias ∙ Pour Le 1er Dimanche Aprés L'Epiphanie)15:59716084Nikolaus HarnoncourtConductor47-1Aria (Tenore): »Mein Liebster Jesus Ist Verloren«2:5847-2Recitativo (Tenore): »Wo Treff Ich Meinen Jesum An«0:3247-3Choral (Coro): »Jesu, Mein Hort Und Erretter«1:0447-4Aria (Alto): »Jesu, Laß Dich Finden«3:4247-5Arioso (Basso): »Wisset Ihr Nicht«1:1347-6Recitativo (Tenore): »Dies Ist Die Stimme Meines Freundes«1:5147-7Aria (Duetto: Alto, Tenore): »Wohl Mir, Jesus Ist Gefunden«3:4547-8Choral (Coro): »Meinen Jesum Laß Ich Nicht«1:01BWV 155 Mein Gott, Wie Lang, Ach Lange (Dominica 2 Post Epiphanias = At The 2nd Sunday After Epiphany ∙ Am 2. Sonntag Nach Epiphanias ∙ Pour Le 2ème Dimanche Aprés L'Epiphanie)14:08716084Nikolaus HarnoncourtConductor47-9Recitativo (Soprano): »Mein Gott, Wie Lang, Ach Lange?«1:5947-10Aria (Duetto: Alto, Tenore): »Du Mußt Glauben, Du Mußt Hoffen«5:5447-11Recitativo (Basso): »So Sei, O Seele, Sei Zufrieden«2:0847-12Aria (Soprano): »Wirf, Mein Herze, Wirf Dich Noch«2:5647-13Choral (Coro): »Ob Sichs Anließ, Als Wollt Er Nicht«1:17BWV 156 Ich Steh Mit Einem Fuss Im Grabe (Dominica 3 Post Epiphanias = At The 3rd Sunday After Epiphany ∙ Am 3. Sonntag Nach Epiphanias ∙ Pour Le 3ème Dimanche Aprés L'Epiphanie)16:22716084Nikolaus HarnoncourtConductor47-14Sinfonia2:4747-15Aria · Choral (Soprano, Tenore): »Ich Steh Mit Einem Fuß Im Grabe«5:2547-16Recitativo (Basso): »Mein Angst Und Not«1:2547-17Aria (Alto): »Herr, Was Du Willt, Soll Mir Gefallen«4:3147-18Recitativo (Basso): »Und Willst Du, Daß Ich Nicht Soll Kranken«0:5947-19Choral (Coro): »Herr, Wie Du Willt, So Schicks Mit Mir«1:25BWV 157 Ich Lasse Dich Nicht, Du Segnest Mich Denn (Festo Purificationes Mariae = At The Feast Of The Purification ∙ Mariae Reinigung ∙ Pour La Fête De La Purification De Marie)19:35845763Gustav LeonhardtConductor47-20Duetto: (Tenore, Basso): »Ich Lasse Dich Nicht, Du Segnest Mich Denn!«4:1247-21Aria (Tenore): »Ich Halte Meinen Jesum Feste«6:5147-22Recitativo (Tenore): »Mein Lieber Jesu Du«1:3247-23Aria (Basso): »Ja, Ja, Ich Halte Jesum Feste«6:0647-24Choral (Coro): »Meinen Jesum Laß Ich Nicht«0:54Cantatas, BWV 158, 159, 161 & 162BWV 158 Der Friede Sei Mit Dir (Festo Purificationes Mariae / Feria 3 Paschatos = At The Feast Of The Purification / At The 3rd Day Of Easter ∙ Mariae Reinigung / Am 3. Ostertag ∙ Pour La Fête De La Purification De Marie / Pour Le 3ème Jour De Pacques)11:32845763Gustav LeonhardtConductor48-1Recitativo (Basso): »Der Friede Sei Mit Dir«1:4848-2Aria ∙ Choral (Basso, Soprano): »Welt Ade! Ich Bin Dein Müde«7:0348-3Recitativo (Basso): »Nun Herr, Regiere Meinen Sinn«1:3548-4Choral (Coro): »Hier Ist Das Rechte Osterlamm«1:15BWV 159 Seht, Wir Gehn Hinauf Gen Jerusalem (Dominica Estomihi = At The Sunday Estomihi ∙ Am Sonntag Estomihi ∙ Pour Le Dimanche D'Estomihi)14:36845763Gustav LeonhardtConductor48-5Arioso ∙ Recitativo (Basso, Alto): »Sehet! Komm, Schau Doch, Mein Sinn«2:5948-6Aria ∙ Choral (Alto, Soprano): »Ich Folge Dir Nach«4:1348-7Recitativo (Tenore): »Nun Will Ich Mich, Mein Jesu«1:0348-8Aria (Basso): »Es Ist Vollbracht«5:1448-9Choral (Coro): »Jesu, Deine Passion«1:16BWV 161 Komm, Du Süsse Todesstunde (Dominica 16 Post Trinitatis / Festo Purificationes Mariae = At The 16th Sunday After Trinity / At The Feast Of The Purification ∙ Am 16. Sonntag Nach Trinitatis / Zu Mariae Reinigung ∙ Pour Le 16ème Dimanche Après La Trinité Et De La Purification De Marie)18:13716084Nikolaus HarnoncourtConductor48-10Aria (Alto): »Komm, Du Süße Todesstunde«4:4348-11Recitativo (Tenore): »Welt, Deine Lust Ist Last«1:5348-12Aria (Tenore): »Mein Verlangen«5:0648-13Recitativo (Alto): »Der Schluß Ist Schon Gemacht«2:1748-14Coro: »Wenn Es Meines Gottes Wille«3:0748-15Choral (Coro): »Der Leib Zwar In Der Erden«1:07BWV 162 Ach, Ich Sehe, Itzt, Da Ich Zur Hochzeit Gehe (Dominica 20 Post Trinitatis = At The 20th Sunday After Trinity ∙ Am 20. Sonntag Nach Trinitatis ∙ Pour Le 20ème Dimanche Après La Trinité)16:37716084Nikolaus HarnoncourtConductor48-16Aria (Basso): »Ach, Ich Sehe, Itzt, Da Ich Zur Hochzeit Gehe«3:4448-17Recitativo (Tenore): »O Großes Hochzeitfest«1:2448-18Aria (Soprano): »Jesu, Brunnquell Aller Gnaden«4:2648-19Recitativo (Alto): »Mein Jesu, Laß Mich Nicht«1:3548-20Aria (Duetto: Alto, Tenore): »In Meinem Gott Bin Ich Erfreut«4:2248-21Choral (Coro): »Ach, Ich Habe Schon Erblicket«1:06Cantatas, BWV 163-166BWV 163 Nur Jedem Das Seine (Dominica 23 Post Trinitatis = At The 23rd Sunday After Trinity ∙ Am 23. Sonntag Nach Trinitatis ∙ Pour Le 23ème Dimanche Après La Trinité)14:14716084Nikolaus HarnoncourtConductor49-1Aria (Tenore): »Nur Jedem Das Seine!«3:3849-2Recitativo (Basso): »Du Bist, Mein Gott«1:2849-3Aria (Basso): »Laß Mein Herz Die Münze Sein«2:5049-4Recitativo (Soprano, Alto): »Ich Wollte Dir, O Gott«2:2249-5Aria (Duetto: Soprano, Alto): »Nimm Mich Mir Und Gib Mich Dir!«3:0849-6Choral (Coro): »Führ Auch Mein Herz Und Sinn«0:58BWV 164 Ihr, Die Ihr Euch Von Christo Nennet (Dominica 13 Post Trinitatis = At The 13th Sunday After Trinity ∙ Am 13. Sonntag Nach Trinitatis ∙ Pour Le 13ème Dimanche Après La Trinité)17:26845763Gustav LeonhardtConductor49-7Aria (Tenore): »Ihr, Die Ihr Euch Von Christo Nennet«4:2849-8Recitativo (Basso): »Wir Hören Zwar, Was Selbst Die Liebe Spricht«1:4749-9Aria (Alto): »Nur Durch Lieb Und Durch Erbarmen«4:3449-10Recitativo (Tenore): »Ach, Schmelze Doch Durch Deinen Liebesstrahl«1:4249-11Aria (Duetto: Soprano, Basso): »Händen, Die Sich Nicht Verschließen«3:5849-12Choral (Coro): »Ertöt Uns Durch Dein Güte«1:05BWV 165 O Heilges Geist- Und Wasserbad (Festo Trinitatis = At The Feast Of Trinity ∙ Am Trinitatisfest ∙ Pour La Trinité)12:31845763Gustav LeonhardtConductor49-13[Aria] (Soprano): »O Heilges Geist- Und Wasserbad«3:0849-14Recitativo (Basso): »Die Sündige Geburt Verdammter Adamserben«1:2649-15Aria (Alto): »Jesu, Der Aus Großer Liebe«2:2049-16Recitativo (Basso): »Ich Habe Ja, Mein Seelenbräutigam«2:0449-17Aria (Tenore): »Jesu, Meines Todes Tod«2:5749-18Choral (Coro): »Sein Wort, Sein Tauf, Sein Nachtmal«0:49BWV 166 Wo Gehest Du Hin? (Dominica Cantate = At The Sunday Cantate ∙ Am Sonntag Cantate ∙ Pour Le Dimanche Cantate)17:53845763Gustav LeonhardtConductor49-19Aria (Basso): »Wo Gehest Du Hin?«1:5949-20Aria (Tenore): »Ich Will An Den Himmel Denken«7:2549-21Choral (Soprano): »Ich Bitte Dich, Herr Jesu Christ«2:5349-22Recitativo (Basso): »Gleichwie Die Regenwasser Bald Verfließen«0:5549-23Aria (Alto): »Man Nehme Sich In Acht«3:4949-24Choral (Coro): »Wer Weiß, Wie Nahe Mir Mein Ende«0:52Cantatas, BWV 167-169BWV 167 Ihr Menschen, Rühmet Gottes Liebe (Festo Joannis Baptistae = At The Feast Of John The Baptist ∙ Am Feste Johannes Des Täufers ∙ Pour La Fête De Saint-Jean-Baptiste)18:42716084Nikolaus HarnoncourtConductor50-1[Aria] (Tenore): »Ihr Menschen, Rühmet Gottes Liebe«5:4450-2Recitativo (Alto): »Gelobet Sei Der Herr Gott Israel«1:4950-3Duetto (Soprano, Alto): »Gottes Wort, Das Trüget Nicht«7:2550-45Recitativo (Basso): »Des Weibes Samen Kam«1:0750-5Choral (Coro): »Sei Lob Und Preis Mit Ehren«2:45BWV 168 Tue Rechnung! Donnerwort (Dominica 9 Post Trinitatis = At The 9th Sunday After Trinity ∙ Am 9. Sonntag Nach Trinitatis ∙ Pour Le 9ème Dimanche Après La Trinité)13:27716084Nikolaus HarnoncourtConductor50-6Aria (Basso): »Tue Rechnung! Donnerwort«3:2750-7Recitativo (Tenore): »Es Ist Nur Fremdes Gut«1:3750-8Aria (Tenore): »Kapital Und Interessen«3:2650-9Recitativo (Basso): »Jedoch, Erschrocknes Herz«1:4450-10Aria (Duetto: Soprano, Alto): »Herz, Zerreiß Des Mammons Kette«2:1750-11Choral (Coro): »Stärk Mich Mit Deinem Freudengeist«1:04BWV 169 Gott Soll Allein Mein Herze Haben (Dominica 18 Post Trinitatis = At The 18th Sunday After Trinity ∙ Am 18. Sonntag Nach Trinitatis ∙ Pour Le 18ème Dimanche Après La Trinité)22:50716084Nikolaus HarnoncourtConductor50-12Sinfonia7:3750-13Arioso ∙ Recitativo (Alto): »Gott Soll Allein Mein Herze Haben«2:4450-14Aria (Alto): »Gott Soll Allein Mein Herze Haben«5:3150-15Recitativo (Alto): »Was Ist Die Liebe Gottes?«0:4950-16Aria (Alto): »Stirb In Mir«4:3750-17Recitativo (Alto): »Doch Meint Es Auch«0:2350-18Choral (Coro): »Du Süße Liebe«0:58Cantatas, BWV 170-173BWV 170 Vergnügte Ruh, Beliebte Seelenlust (Dominica 6 Post Trinitatis = At The 6th Sunday After Trinity ∙ Am 6. Sonntag Nach Trinitatis ∙ Pour Le 6ème Dimanche Après La Trinité)22:42845763Gustav LeonhardtConductor51-1[Aria] (Alto): »Vergnügte Ruh, Beliebte Seelenlust«6:1751-2Recitativo (Alto): »Die Welt, Das Sündenhaus, Bricht Nur In Höllenlieder Aus«1:1751-3[Aria] (Alto): »Wie Jammern Mich Doch Die Verkehrten Herzen«8:0951-4Recitativo (Alto): »Wer Sollte Sich Demnach Wohl Hier Zu Leben Wünschen«1:1551-5Aria (Alto): »Mir Ekelt Mehr Zu Leben«5:52BWV 171 Gott, Wie Dein Name, So Ist Auch Dein Ruhm (Festo Circumcisionis Christi = At The New Year ∙ Zum Neujahr ∙ Pour Le Jour De L'An)16:01716084Nikolaus HarnoncourtConductor51-6[Coro]: »Gott, Wie Dein Name, So Ist Auch Dein Ruhm«1:5851-7Aria (Tenore): »Herr, So Weit Die Wolken Gehen«3:5851-8Recitativo (Alto): »Du Süßer Jesus-Name Du«1:0551-9Aria (Soprano): »Jesus Soll Mein Erstes Wort«5:1851-10Recitativo (Basso): »Und Da Du, Herr, Gesagt«1:4051-11Choral (Coro): »Laß Uns Das Jahr Vollbringen«2:12BWV 172 Erschallet, Ihr Lieder (Feria 1 Pentecostes = At The Feast Of Whit Sunday ∙ Am 1. Pfingsttag ∙ Pour La Fête De Pentecôte)16:47845763Gustav LeonhardtConductor51-12Coro: »Erschallet, Ihr Lieder, Erklinget, Ihr Saiten!«4:0451-13Recitativo (Basso): »Wer Mich Liebet«0:5451-14Aria (Basso): »Heiligste Dreieinigkeit«2:0851-15Aria (Tenore): »O Seelenparadies«4:3851-16Aria (Duetto: Soprano, Alto): »Komm, Laß Mich Nicht Länger Warten«3:4851-17Choral (Coro): »Von Gott Kömmt Mir Ein Freudenschein«1:25BWV 173 Erhöhtes Fleisch Und Blut (Feria 2 Pentecostes = At The 2nd Day Of Whit Sun ∙ Am 2. Pfingsttag ∙ Pour Le 2ème Jour De Pentecôte)13:56716084Nikolaus HarnoncourtConductor51-18Recitativo (Tenore): »Erhöhtes Fleisch Und Blut«0:3551-19[Aria] (Tenore): »Ein Geheiligtes Gemüte«4:1351-20[Aria] (Alto): »Gott Will, O Ihr Menschenkinder«1:4551-21Aria (Duetto: Basso, Soprano): »So Hat Gott Die Welt Geliebt«4:0451-22Recitativo (Duetto: Soprano, Tenore): »Unendlichster, Den Man Doch Vater Nennt«1:1151-23Coro: »Rühre, Höchster, Unsren Geist«2:08Cantatas, BWV 174-176BWV 174 Ich Liebe Den Höchsten Von Ganzem Gemüte (Feria 2 Pentecostes = At The 2nd Day Of Whit Sun ∙ Am 2. Pfingsttag ∙ Pour Le 2ème Jour De Pentecôte)20:37716084Nikolaus HarnoncourtConductor52-1Sinfonia (Concerto)6:1252-2Aria (Alto): »Ich Liebe Den Höchsten Von Ganzem Gemüte«8:2052-3Recitativo (Tenore): »O Liebe, Welche Keiner Gleich!«1:0752-4Aria (Basso): »Greifet Zu, Faßt Das Heil«3:1952-5Choral (Coro): »Herzlich Lieb Hab Ich Dich«1:48BWV 175 Er Rufet Seinen Schafen Mit Namen (Feria 3 Pentecostes = At The 3rd Day Of Whit Sun ∙ Am 3. Pfingsttag ∙ Pour Le 3ème Jour De Pentecôte)16:57845763Gustav LeonhardtConductor52-6[Recitativo] (Tenore): »Er Rufet Seinen Schafen Mit Namen«0:2652-7Aria (Alto): »Komm, Leite Mich«4:5452-8Recitativo (Tenore): »Wo Find Ich Dich?«0:2652-9Aria (Tenore): »Es Dünket Mich, Ich Seh Dich Kommen«3:5152-10Recitativo (Alto, Basso): »Sie Vernahmen Aber Nicht«1:0752-11Aria (Basso): »Öffnet Euch, Ihr Beiden Ohren«4:3552-12Choral (Coro): »Nun, Werter Geist, Ich Folg Dir«1:47BWV 176 Es Ist Ein Trotzig Und Verzagt Ding (Festo Trinitatis = At Trinity ∙ Am SonntagTrinitatis ∙ Pour La Trinité)12:21845763Gustav LeonhardtConductor52-13[Coro]: »Es Ist Ein Trotzig Und Verzagt Ding«2:3552-14Recitativo (Alto): »Ich Meine, Recht Verzagt«0:4552-15Aria (Soprano): »Dein Sonst Hell Beliebter Schein«3:0252-16Recitativo (Basso): »So Wundre Dich, O Meister, Nicht«1:5452-17Aria (Alto): »Ermuntert Euch, Furchtsam Und Schüchterne Sinne«2:5052-18Choral (Coro): »Auf Daß Wir Also Allzugleich«1:15Cantatas, BWV 177-179BWV 177 Ich Ruf Zu Dir, Herr Jesu Christ (Dominica 4 Post Trinitatis = At The 4th Sunday After Trinity ∙ Am 4. Sonntag Nach Trinitatis ∙ Pour Le 4ème Dimanche Après La Trinité)24:53716084Nikolaus HarnoncourtConductor53-1Coro: »Ich Ruf Zu Dir, Herr Jesu Christ«6:3253-2[Aria] (Alto): »Ich Bitt Noch Mehr, O Herre Gott«6:1953-3[Aria] (Soprano): »Verleih, Daß Ich Aus Herzensgrund«6:1453-4[Aria] (Tenore): »Laß Mich Kein Lust Noch Furcht«4:3653-5[Choral] (Coro): »Ich Lieg Im Streit Und Widerstreb«1:20BWV 178 Wo Gott Der Herr Nicht Bei Uns Hält (Dominica 8 Post Trinitatis = At The 8th Sunday After Trinity ∙ Am 8. Sonntag Nach Trinitatis ∙ Pour Le 8ème Dimanche Après La Trinité)20:12716084Nikolaus HarnoncourtConductor53-6Coro: »Wo Gott Der Herr Nicht Bei Uns Hält«5:2353-7Choral ∙ Recitativo (Alto): »Was Menschenkraft Und -witz Anfäht«2:0553-8Aria (Basso): »Gleichwie Die Wilden Meereswellen«3:3353-9Choral (Tenore): »Sie Stellen Uns Wie Ketzern Nach«1:5353-10Choral (Coro) ∙ Recitativo (Alto, Tenore, Basso): »Aufsperren Sie Den Rachen Weit«1:2753-11Aria (Tenore): »Schweig, Schweig Nur, Taumelnde Vernunft!«4:0353-12Choral (Coro): »Die Feind Sind All In Deiner Hand«1:58BWV 179 Siehe Zu, Dass Deine Gottesfurcht Nicht Heuchelei Sei (Dominica 11 Post Trinitatis = At The 11th Sunday After Trinity ∙ Am 11. Sonntag Nach Trinitatis ∙ Pour Le 11ème Dimanche Après La Trinité)12:54716084Nikolaus HarnoncourtConductor53-13[Coro]: »Siehe Zu, Daß Deine Gottesfurcht Nicht Heuchelei Sei«2:3953-14Recitativo (Tenore): »Das Heutge Christentum«0:5353-15Aria (Tenore): »Falscher Heuchler Ebenbild«2:2153-16Recitativo (Basso): »Wer So Von Innen Wie Von Außen Ist«1:3953-17Aria (Soprano): »Liebster Gott, Erbarme Dich«4:1753-18Choral (Coro): »Ich Armer Mensch, Ich Armer Sünder«1:05Cantatas, BWV 180-182BWV 180 Schmücke Dich, O Liebe Seele (Dominica 20 Post Trinitatis = At The 20th Sunday After Trinity ∙ Am 20. Sonntag Nach Trinitatis ∙ Pour Le 20ème Dimanche Après La Trinité)24:53845763Gustav LeonhardtConductor54-1[Choro]: »Schmücke Dich, O Liebe Seele«7:2854-2Aria (Tenore): »Ermuntre Dich«5:4054-3Recitativo · Arioso (Soprano): »Wie Teuer Sind Des Heilgen Mahles Gaben!«3:0154-4Recitativo (Alto): »Mein Herz Fühlt In Sich Furcht Und Freude«1:3554-5Aria (Soprano): »Lebens Sonne, Licht Der Sinnen«4:5554-6Recitativo (Basso): »Herr, Laß An Mir Dein Treues Leben«0:5954-7Choral (Coro): »Jesu, Wahres Brot Des Lebens«1:24BWV 181 Leichtgesinnte Flattergeister (Dominica Sexagesimae = At The Sunday Sexagesimae ∙ Am Sonntag Sexagesimae ∙ Pour Le Dimanche De La Sexagésime)13:48845763Gustav LeonhardtConductor54-8Aria (Basso): »Leichtgesinnte Flattergeister«3:1454-8Recitativo (Alto): »O Unglückselger Stand Verkehrter Seelen«1:3854-10Aria (Tenore): »Der Schädlichen Dornen Unendliche Zahl«2:4854-11Recitativo (Soprano): »Von Diesen Wird Die Kraft Erstickt«0:4254-12Coro: »Laß, Höchster, Uns Zu Allen Zeiten«5:37BWV 182 Himmelskönig, Sei Willkommen (Dominica Palmarum = At Palmsunday ∙ Zum Palmsonntag ∙ Pour Le Dimanche Des Rameaux)30:50716084Nikolaus HarnoncourtConductor54-13Sonata (Concerto: Grave, Adagio)2:3154-14Coro: »Himmelskönig, Sei Willkommen«3:5054-15Recitativo (Basso): »Siehe, Siehe, Ich Komme«0:4754-16Aria (Basso): »Starkes Lieben, Das Dich, Großer Gottessohn«2:5054-17Aria (Alto): »Leget Euch Dem Heiland Unter«8:0354-18Aria (Tenore): »Jesu, Laß Durch Wohl Und Weh«4:2854-19Choral (Coro): »Jesu, Deine Passion«3:2354-20Coro: »So Lasset Uns Gehen In Salem Der Freuden«4:58Cantatas, BWV 183-185BWV 183 Sie Werden Euch In Den Bann Tun (Dominica Exaudi = At The Sunday After The Ascension ∙ Am Sonntag Exaudi ∙ Pour Le Dimanche Après L'Ascension)13:37716084Nikolaus HarnoncourtConductor55-1Recitativo (Basso): »Sie Werden Euch In Den Bann Tun«0:2255-2Aria (Tenore): »Ich Fürchte Nicht Des Todes Schrecken«7:3155-3Recitativo (Alto): »Ich Bin Bereit, Mein Blut Und Armes Leben«0:4655-4Aria (Soprano): »Höchster Tröster, Heilger Geist«3:4755-5Choral (Coro): »Du Bist Ein Geist, Der Lehret«1:21BWV 184 Erwünschtes Freudenlicht (Feria 3 Pentecostes = At The 3rd Day Of Whit Sun ∙ Am 3. Pfingsttag ∙ Pour Le 3ème Jour De Pentecôte)23:26845763Gustav LeonhardtConductor55-6Recitativo (Tenore): »Erwünschtes Freudenlicht«3:3755-7Aria (Duetto: Soprano, Alto): »Gesegnete Christen«9:2155-8Recitativo (Tenore): »So Freuet Euch, Ihr Auserwählten Seelen«2:0755-9Aria (Tenore): »Glück Und Segen Sind Bereit«4:3255-10Choral (Coro): »Herr, Ich Hoff Je, Du Werdest Die In Keiner Not Verlassen«1:1755-11Coro (Soli: Soprano, Basso): »Guter Hirte, Trost Der Deinen«2:41BWV 185 Barmerziges Herze Der Ewigen Liebe (Dominica 4 Post Trinitatis = At The 4th Sunday After Trinity ∙ Am 4. Sonntag Nach Trinitatis ∙ Pour Le 4ème Dimanche Après La Trinité)14:15716084Nikolaus HarnoncourtConductor55-12Aria (Duetto: Soprano, Tenore): »Barmherziges Herze Der Ewigen Liebe«2:5755-13Recitativo (Alto): »Ihr Herzen, Die Ihr Euch«2:0355-14Aria (Alto): »Sei Bemüht In Dieser Zeit«4:4155-15Recitativo (Basso): »Die Eigenliebe Schmeichelt Sich!«1:0155-16Aria (Basso): »Das Ist Der Christen Kunst«2:1555-17Choral (Coro): »Ich Ruf Zu Dir, Herr Jesu Christ«1:18Cantatas, BWV 186-187BWV 186 Ärgre Dich, O Seele, Nicht Prima Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)14:29716084Nikolaus HarnoncourtConductor56-1Coro: »Ärgre Dich, O Seele, Nicht«3:1856-2Recitativo (Basso): »Die Knechtsgestalt, Die Not, Der Mangel«1:2856-3Aria (Basso): »Bist Du, Der Mir Helfen Soll«2:3756-4Recitativo (Tenore): »Ach, Daß Ein Christ So Sehr«2:1556-5Aria (Tenore): »Mein Heiland Läßt Sich Merken«2:5556-6Choral (Coro): »Ob Sichs Anließ, Als Wollt Er Nicht«2:00BWV 186 Ärgre Dich, O Seele, Nicht Seconda Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)13:03716084Nikolaus HarnoncourtConductor56-7Recitativo (Basso:) »Es Ist Die Welt Die Große Wüstenei«1:4356-8Aria (Soprano): »Die Armen Will Der Herr Umarmen«3:0056-9Recitativo (Alto): »Nun Mag Die Welt Mit Ihrer Lust Vergehen«1:2556-10Aria (Duetto: (Soprano, Alto): »Laß, Seele, Kein Leiden«4:5756-11Choral (Coro): »Die Hoffnung Wart' Der Rechten Zeit«2:08BWV 187 Es Wartet Alles Auf Dich Prima Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)12:37845763Gustav LeonhardtConductor56-12[Coro]: »Es Wartet Alles Auf Dich«7:1056-13Recitativo (Basso): »Was Kreaturen Hält Das Große Rund Der Welt«0:5656-14Aria (Alto): »Du Herr, Du Krönst Allein Das Jahr«4:31BWV 187 Es Wartet Alles Auf Dich Seconda Parte (Dominica 7 Post Trinitatis = At The 7th Sunday After Trinity ∙ Am 7. Sonntag Nach Trinitatis ∙ Pour Le 7ème Dimanche Après La Trinité)19:28845763Gustav LeonhardtConductor56-15Aria (Basso): »Darum Sollt Ihr Nicht Sorgen«2:4656-16Aria (Soprano): »Gott Versorget Alles Leben«4:1956-17Recitativo (Soprano): »Halt Ich Nur Fest An Ihm Mit Kindlichem Vertrauen«1:1756-18Choral (Coro): »Gott Hat Die Erde Zugericht«2:06Cantatas, BWV 188 & 192BWV 188 Ich Habe Meine Zuversicht (Dominica 21 Post Trinitatis = At The 21st Sunday After Trinity ∙ Am 21. Sonntag Nach Trinitatis ∙ Pour Le 21ème Dimanche Après La Trinité)24:50716084Nikolaus HarnoncourtConductor57-1Sinfonia7:3857-2Aria (Tenore): »Ich Habe Meine Zuversicht«8:0657-3Recitativo (Basso): »Gott Meint Es Gut Mit Jedermann«2:0057-4Aria (Alto): »Unerforschlich Ist Die Weise«5:4257-5Recitativo (Soprao): »Die Macht Der Welt Verlieret Sich«0:3457-6Choral (Coro): »Auf Meinen Lieben Gott«0:57BWV 192 Nun Danket Alle Gott (Unspecified Occasion = Ohne Bestimmung ∙ Sans Destination)12:13716084Nikolaus HarnoncourtConductor57-7Coro: »Nun Danket Alle Gott«5:2857-8[Duetto] (Soprano, Basso): »Der Ewig Reiche Gott«3:4057-9[Coro]: »Lob, Ehr Und Preis Sei Gott«3:05Cantatas, BWV 194 & 195BWV 194 Höchsterwünschtes Freudenfest Prima Parte (Concerto Bey Einweihung Der Orgel In Störmthal, 2.11.1723 / Trinitatis = Organ Dedication Störmthal, 2.11.1723 / Trinity ∙ Inauguration DeL'Orgue, Störmthal 2.11.1723 / Trinité)20:40716084Nikolaus HarnoncourtConductor58-1Coro: »Höchsterwünschtes Freudenfest«5:0558-2Recitativo (Basso): »Unendlich Großer Gott«1:1058-3Aria (Basso): »Was Des Höchsten Glanz Erfüllt«4:4758-4Recitativo (Soprano): »Wie Könnte Dir, Du Höchstes Angesicht«1:2458-5Aria (Soprano): »Hilf, Gott, Daß Es Uns Gelingt«6:0458-6Choral (Coro): »Heilger Geist Ins Himmels Throne«2:10BWV 194 Höchsterwünschtes Freudenfest Seconda Parte (Concerto Bey Einweihung Der Orgel In Störmthal, 2.11.1723 / Trinitatis = Organ Dedication Störmthal, 2.11.1723 / Trinity ∙ Inauguration DeL'Orgue, Störmthal 2.11.1723 / Trinité)18:33716084Nikolaus HarnoncourtConductor58-7Recitativo (Tenore): »Ihr Heiligen, Erfreuet Euch«1:0758-8Aria (Tenore): »Des Höchsten Gegenwart Allein«3:4858-9Recitativo (Duetto: Soprano, Basso): »Kann Wohl Ein Mensch«2:1058-10Aria (Duetto: Soprano, Basso): »O Wie Wohl Ist Uns Geschehn«9:2458-11Recitativo (Basso): »Wohlan Demnach, Du Heilge Gemeine«0:4658-12Choral (Coro): »Sprich Ja Zu Meinen Taten«1:26BWV 195 Dem Gerechten Muss Das Licht (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)18:57845763Gustav LeonhardtConductor58-13Coro (Soli: Soprano, Alto, Tenore, Basso): »Dem Gerechten Muß Das Licht«5:2458-14Recitativo (Basso): »Dem Freudenlicht Gerechter Frommen«1:2058-15Aria (Basso): »Rühmet Gottes Güt Und Treu!«4:2158-16Recitativo (Soprano): »Wohlan, So Knüpfet Denn Ein Band«1:1558-17Coro (Soli: Soprano, Alto, Tenore, Basso): »Wir Kommen, Deine Heiligkeit«5:5258-18Choral (Coro): »Nun Danket All Und Bringet Ehr«0:45Cantatas, BWV 196 & 197BWV 196 Der Herr Denket An Uns (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)12:12716084Nikolaus HarnoncourtConductor59-1Sinfonia2:1359-2Coro: »Der Herr Denket An Uns«2:1559-3Aria (Soprano): »Er Segnet, Die Den Herrn Fürchten«2:2959-4Duetto: (Tenore, Basso): »Der Herr Segne Euch«1:5259-5Coro: »Ihr Seid Die Gesegneten Des Herrn«3:32BWV 197 Gott Ist Unsre Zuversicht (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)16:15845763Gustav LeonhardtConductor59-6Coro: »Gott Ist Unsre Zuversicht«6:1859-7Recitativo (Basso): »Gott Ist Und Bleibt Der Beste Sorger«1:1659-8Aria (Alto): »Schläfert Allen Sorgenkummer«6:4359-9Recitativo (Basso): »Drum Folget Gott Und Seinem Triebe!«0:5459-10Choral (Coro): »Du Süße Lieb, Schenk Uns Deine Gunst«1:04BWV 197 Gott Ist Unsere Zuversicht Post Copulationem (Wedding Cantata = Trauungskantate ∙ Cantate De Mariage)13:46845763Gustav LeonhardtConductor59-11Aria (Basso): »O Du Angenehmes Paar!«5:3959-12Recitativo (Soprano): »So Wie Es Gott Mit Dir Getreu«1:4759-13Aria (Soprano): »Vergnügen Und Lust«4:3259-14Recitativo (Basso): »Und Dieser Frohe Lebenslauf«0:5459-15Choral (Coro): »Sing, Bet Und Geh Auf Gottes Wegen«0:54Cantatas, BWV 198 & 199BWV 198 Lass, Fürstin, Lass Noch Einen Strahl Prima Parte (Funeral Ode = Trauer-Ode ∙ Ode Funèbre)23:33845763Gustav LeonhardtConductor60-1Coro: »Laß, Fürstin, Laß Noch Einen Strahl«6:1360-2Recitativo (Soprano): »Dein Sachsen, Dein Bestürztes Meißen«1:1660-3Aria (Saprano): »Verstummt, Verstummt, Ihr Holden Saiten!«4:0460-4Recitativo (Alto): »Der Glocken Bebendes Getön«0:4760-5Aria (Alto): »Wie Starb Die Heldin So Vergnügt!«7:4660-6Recitativo (Tenore): »Ihr Leben Ließ Die Kunst Zu Sterben«1:1160-7Coro: »An Dir, Du Vorbild Großer Frauen«2:16BWV 198 Lass, Fürstin, Lass Noch Einen Strahl Seconda Parte (Funeral Ode = Trauer-Ode ∙ Ode Funèbre)11:41845763Gustav LeonhardtConductor60-8Aria (Tenore): »Der Ewigkeit Saphirnes Haus«4:0660-9Recitativo · Arioso (Basso): »Was Wunder Ists?«2:3260-10Coro: »Doch Königin! Du Stirbest Nicht!«5:14BWV 199 Mein Herze Schwimmt Im Blut (Dominica 11 Post Trinitatis = At The 11th Sunday After Trinity ∙ Am 11. Sonntag Nach Trinitatis ∙ Pour Le 11ème Dimanche Après La Trinité)23:42716084Nikolaus HarnoncourtConductor60-11Recitativo (Soprano): »Mein Herze Schwimmt Im Blut«2:0960-12Aria (Soprano): »Stumme Seufzer, Stille Klagen«8:4460-13Recitativo (Soprano): »Doch Gott Muß Mir Gnädig Sein«1:0260-14Aria (Soprano): »Tief Gebückt Und Voller Reue«6:3660-15Recitativo (Soprano): »Auf Diese Schmerzensreu«0:1560-166Choral (Soprano): »Ich, Dein Betrübtes Kind«2:0660-17Recitativo (Soprano): »Ich Lege Mich In Diese Wunden«0:4160-18Aria (Soprano): »Wie Freudig Ist Mein Herz«2:09Secular Cantatas (Cantates Profanes ∙ Weltliche Kantaten)Cantatas, BWV 134A & 173ABWV 134A Die Zeit, Die Tag Und Jahre Macht36:01836665Ton KoopmanConductor61-1Recitativo (Alto, Tenore): »Die Zeit, Die Tag Und Jahre Macht«0:3461-2Aria (Tenore): »Auf, Sterbliche, Lasset Ein Jauchzen Ertönen«5:4461-3Recitativo (Alto, Tenore): »So Bald, Als Dir Die Sternen Hold«2:1961-4Aria ∙ Duetto (Alto, Tenore): »Es Streiten, Es Siegen Die Künftigen Zeiten«8:4761-5Recitativo (Alto, Tenore): »Bedenke Nur, Begücktes Land«3:0361-6Aria (Alto): »Der Zeiten Herr Hat Viel Vergnügte Stunden«6:4661-7Recitativo (Alto, Tenore): »Hilf, Höchster, Hilf«1:5061-8Coro: »Ergetzet Auf Erden«6:58BWV 173A Durchlauchtster Leopold18:40836665Ton KoopmanConductor61-9Recitativo (Soprano): »Durchlauchtster Leopold«0:4261-10Aria (Soprano): »Güldner Sonnen Frohe Stunden«3:3761-11[Aria] (Basso): »Leopolds Vortrefflichkeiten«1:3561-12Aria (Soprano, Basso): »Unter Seinem Purpursaum«3:3661-13Recitativo (Soprano, Basso): »Durchlauchtigster, Den Anhalt Vater Nennt«1:0861-14Aria (Soprano): »So Schau Des Holden Tages Licht«3:1361-15Aria (Basso): »Dein Name Gleich Der Sonnen Geh«2:2261-16Coro (Soprano, Basso): »Nimm Auch, Großer Fürst, Uns Auf«2:27Cantatas, BWV 201 & 204BWV 201 Geschwinde, Geschwinde Ihr Wirbelnden Winde (Dramma Per Musica) (The Dispute Between Phoebus And Pan ∙ Der Streit Zwischen Phoebus Und Pan ∙ La Querelle Entre Phébus Et Pan)47:27836665Ton KoopmanConductor62-1Coro: »Geschwinde, Geschwinde, Ihr Wirbelnden Winde«5:2062-2Recitativo (Soprano, Basso I, II): »Und Du Bist Doch So Unverschämt«1:4462-3Aria (Soprano): »Patron, Das Macht Der Wind«2:2262-4Recitativo (Alto, Basso I, II): »Was Braucht Ihr Euch Zu Zanken?«1:0062-5Aria (Basso I): »Mit Verlangen«9:4362-6Recitativo (Soprano, Basso II): »Pan, Rücke Deine Kehle Nun«0:2262-7Aria (Basso II): »Zu Tanze, Zu Sprunge«5:0462-8Recitativo (Alto, Tenore I): »Nunmehro Richter Her!«0:5162-9Aria (Tenore I): »Phoebus, Deine Melodei«5:3262-10Recitativo (Tenore II, Basso II): »Komm, Midas , Sage Du Nun An«0:4862-11Aria (Tenore II): »Pan Ist Meister, Laßt Ihn Gehn!«4:3362-12Recitativo (Soprano, Alto, Tenore I, II, Basso I, II): »Wie, Midas Bist Du Toll?«1:0462-13Aria (Alto) »Aufgeblasne Hitze, Aber Wening Grütze«5:5162-14Recitativo (Soprano): »Du Guter Midas, Geh Nun Hin«1:1162-15Coro: »Labt Das Herz, Ihr Holden Saiten«2:11BWV 204 Ich Bin In Mir Vergnügt26:51836665Ton KoopmanConductor62-16Recitativo (Soprano): »Ich Bin In Mir Vergnügt«1:3862-17Aria (Soprano): »Ruhig Und In Sich Zufrieden«6:4662-18[Recitativo] (Soprano): »Ihr Seelen, Die Ihr Außer Euch«1:5862-19Aria (Soprano): »Die Schätzbarkeit Der Weiten Erden«4:0762-20Recitativo (Soprano): »Schwer Ist Es Zwar«1:5662-21[Aria] (Soprano): »Meine Seele Sei Vergnügt«5:5262-22Recitativo (Soprano): »Ein Edler Mensch Ist Perlenmuscheln Gleich«2:3362-23Aria (Soprano): »Himmlische Vergnügsamkeit«4:01Cantatas, BWV 202, 203 & 209BWV 202 Weichet Nur, Betrübte Schatten21:31861282Jaap SchröderConductor63-1[Aria] (Soprano): »Weichet Nur, Betrübte Schatten«6:4063-2[Recitativo] (Soprano): »Die Welt Wird Wieder Neu«0:2963-3Aria (Soprano): »Phoebus Eilt«3:3463-4Recitativo (Soprano): »Drum Sucht Auch Amor Sein Vergnügen«0:3963-5Aria (Soprano): »Wenn Die Frühlingslüfte Streichen«2:3363-6Recitativo (Soprano): »Und Dieses Ist Das Glücke«0:4763-7Aria (Soprano): »Sich Üben Im Lieben«4:3863-8Recitativo (Soprano): »So Sei Das Band Der Keuschen Liebe«0:2663-9Gavotte (Soprano): »Sehet In Zufriedenheit«1:54BWV 203 Amore Traditore14:26845763Gustav LeonhardtConductor63-10[Aria] (Basso): »Amore Traditore«6:5363-11Recitativo (Basso): »Voglio Provar«0:3463-12Aria (Basso): »Chi In Amore Ha Nemica La Sorte«7:06BWV 209 Non Sa Che Sia Dolore23:54845763Gustav LeonhardtConductor63-13Sinfonia7:3363-14Recitativo (Soprano): »Non Są Che Sia Dolore«0:4663-15Aria (Soprano): »Parti Pur E Con Dolore«8:5363-16Recitativo (Soprano): »Tuo Saver Al Tempo E L'Età Contrast«0:3063-17Aria (Soprano): »Ricetti Gramezza E Pavento«6:12Cantatas, BWV 206 & 207BWV 207 Vereinigte Zwietracht Der Wechselnden Saiten (Dramma Per Musica)33:01837585Reinhard GoebelConductor64-1Marche2:5764-2Coro: »Vereinigte Zwietracht Der Wechselnden Saiten«3:5464-3Recitativo (Tenore): »Wen Treibt Ein Edler Trieb«1:5564-4Aria (Tenore): »Zieht Euren Fuß Nur Nicht Zurücke«3:2764-5Recitativo (Soprano, Basso): »Dem Nur Allein Soll Meine Wohnung Offen Sein«2:0564-6Aria ∙ Duetto (Soprano, Basso): »Den Soll Mein Lorbeer Schützend Decken«4:1464-7Ritornello1:2164-8Recitativo (Alto): »Es Ist Kein Leeres Wort«1:4664-9Aria (Alto): »Ätzet Dieses Angedenken«5:1964-10Recitativo (Soprano, Alto, Tenore, Basso): »Ihr Schläfrigen, Herbei!«3:0064-11Coro: »Kortte Lebe, Kortte Blühe!«3:12BWV 206 Schleicht, Spielende Wellen (Dramma Per Musica)42:091514389André Rieu (2)Conductor64-12Coro: »Schleicht, Spielende Wellen«6:3264-13Recitativo (Basso): »O Glückliche Veränderung!«1:1964-14Aria (Basso): »Schleuß Des Janustemples Türen«5:1264-15Recitativo (Tenore): »So Recht! Beglückter Weichselstrom!«1:4264-16Aria (Tenore): »Jede Woge Meiner Wellen«7:5164-17Recitativo (Alto): »Ich Nehm Zugleich An Deiner Freude Teil«1:0364-18Aria (Alto): »Reis Von Habsburgs Hohem Stamme«6:5964-19Recitativo (Soprano): »Verzeiht, Bemooste Häupter Starker Ströme«1:5864-20Aria (Soprano): »Hört Doch! Der Sanften Flöten Chor«3:5764-21Recitativo (Soprano, Alto, Tenore, Basso): »Ich Muß, Ich Will Gehorsam Sein«1:4164-22Coro: »Die Himmlische Vorsicht«3:55Cantatas, BWV 205 & 211BWV 205 Zerreisset, Zersprenget, Zertrümmert Die Gruft (Dramma Per Musica) (Aeolus Satisfied ∙ Der Zufriedengestellte Aeolus ∙ Aeolus Apaisé)40:53716084Nikolaus HarnoncourtConductor65-1Coro: »Zerreißet, Zersprenget, Zertrümmert Die Gruft«6:2765-2Recitativo (Basso): »Ja! Ja! Die Stunden Sind Nunmehro Nah«1:3965-3Aria (Basso): »Wie Will Ich Lustig Lachen«4:1565-4Recitativo (Tenore): »Gefürcht'ter Aeolus«0:3865-5Aria (Tenore): »Frische Schatten, Meine Freude«4:4465-6Recitativo (Basso): »Beinahe Wirst Du Mich Bewegen«0:3665-7Aria (Alto): »Können Nicht Die Roten Wangen«3:1565-8Recitativo (Soprano, Alto): »So Willst Du, Grimmer Aelous«0:4765-9Aria (Soprano): »Angenehmer Zephyrus«4:1165-10Recitativo (Soprano, Basso): »Mein Aelous, Acht«2:1965-11Aria (Basso): »Zurücke, Zurücke, Geflügelten Winde«3:2465-12Recitativo (Soprano, Alto, Tenore): »Was Lust! Was Freude!«1:3865-13Aria [Duetto] (Alto, Tenore): »Zweig Und Äste«3:1565-14Recitativo (Soprano): »Ja, Ja! Ich Lad Euch Selbst Zu Dieser Feier Ein«0:4065-15Coro: »Vivat August«3:16BWV 211 Schweigt Stille, Plaudert Nicht (Coffee Cantata ∙ Kaffeekantate ∙ Cantate Du Café)27:02716084Nikolaus HarnoncourtConductor65-16Recitativo (Tenore): »Schweigt Stille, Plaudert Nicht« Aria (Basso): »Hat Man Nicht Mit Seinen Kindern«3:1865-17Recitativo (Soprano, Basso): »Du Böses Kind, Du Loses Mädgen« Aria (Soprano): »Ei, Wie Schmeckt Der Coffee Süße«5:2365-18Recitativo (Soprano, Basso): »Wenn Du Mir Nicht Den Coffee Läßt« Aria (Basso): »Mädgen, Die Von Harten Sinnen«4:0565-19Recitativo (Soprano, Basso): »Nun Folge, Was Dein Vater Spricht« Aria (Soprano): »Heute Noch«8:3765-20Recitativo (Tenore): »Nun Geht Und Sucht Der Alte Schlendrian« Coro (Soprano, Tenore, Basso): »Die Katze Läßt Das Mausen Nicht«5:39Cantatas, BWV 207A & 210BWV 207A Auf, Schmetternde Töne Der Muntern Trompeten (Dramma Per Musica)33:43836665Ton KoopmanConductor66-1Marche1:3866-2Coro: »Auf, Schmetternde Töne Der Muntern Trompeten«4:2566-3Recitativo (Tenore): »Die Stille Pleiße Spielt«2:0366-4Aria (Tenore): »Augustus' Namestages Schimmer«3:4066-5Recitativo (Soprano, Basso): »Augustus' Wohl Ist Der Treuen Sachsen Wohlergehn«1:4566-6Aria [Duetto] (Soprano, Basso): »Mich Kann Die Süße Ruhe Laben«4:5966-7Ritornello1:1366-8Recitativo (Alto): »Augustus Schützt Die Frohen Felder«0:5566-9Aria (Alto): »Preiset, Späte Folgezeiten«5:3166-10Recitativo (Soprano, Alto, Tenore, Basso): »Ihr Fröhlichen, Herbei!«3:1066-11Coro: »Augustus Lebe! Lebe König!«2:4366-12Marche1:41BWV 210 O Holder Tag, Erwünschte Zeit32:39836665Ton KoopmanConductor66-13Recitativo (Soprano): »O Holder Tag, Erwünschte Zeit«0:5466-14Aria (Soprano): »Spielet, Ihr Beseelten Lieder«6:1066-15Recitativo (Soprano): »Doch, Haltet Ein«1:0766-16Aria (Soprano): »Ruhet Hie, Matte Töne«6:1866-17Recitativo (Soprano): »So Glaubt Man Denn, Das Die Musik Verführe«2:0266-18Aria (Soprano): »Schweigt, Ihr Flöten, Schweigt«4:5166-19Recitativo (Soprano): »Was Luft? Was Grab?«1:3666-20Aria (Soprano): »Großer Gönner, Dein Vergnügen«3:1166-21Recitativo (Soprano): »Hochteurer Mann, So Fahre Ferner Fort«1:1866-22Aria (Soprano): »Seid Beglückt, Edle Beide«5:21Cantatas, BWV 208 & 212BWV 208 Was Mir Behagt, Ist Nur Die Muntre Jagd (Hunt Cantata ∙ Jagdkantate ∙ Cantate De La Chasse)33:31716084Nikolaus HarnoncourtConductor67-1Recitativo (Soprano I): »Was Mir Behagt, Ist Nur Die Muntre Jagd!«0:3767-2Aria (Soprano I): »Jagen Ist Die Lust Der Götter«1:5167-3Recitativo (Tenore): »Wie, Schönste Göttin«1:1367-4Aria (Tenore): »Willst Du Dich Nicht Mehr Ergötzen«4:4567-5Recitativo (Soprano I, Tenore): »Ich Liebe Dich Zwar Noch!«2:2067-6Recitativo (Basso): »Ich, Der Sonst Ein Gott«0:3867-7Aria (Basso): »Ein Fürst Ist Seines Landes Pan«2:3367-8Recitativo (Soprano II): »Soll Denn Der Pales Opfer«0:3767-9Aria (Soprano II): »Schafe Können Sicher Weiden«4:5567-10Recitativo (Soprano I): »So Stimmt Mit Ein«0:1167-11Coro (Soprano I / II, Tenore, Basso): »Lebe, Sonne Dieser Erden«3:1567-12Duetto (Soprano I, Tenore): »Entzücket Uns Beide«2:0167-13Aria (Soprano II): »Weil Die Wollenreichen Herden«1:4967-14Aria (Basso): »Ihr Felder Und Auen«3:2067-15Coro (Soprano I / II, Tenore, Basso): »Ihr Lieblichste Blicke«3:36BWV 212 Mer Han En Neue Oberkeet (Peasant Cantata ∙ Bauernkantate ∙ Cantate Des Paysans)30:26716084Nikolaus HarnoncourtConductor67-16[Ouverture]2:1167-17Aria ∙ Duetto (Soprano, Basso): »Mer Han En Neue Oberkeet«0:3567-18Recitativo (Soprano, Basso): »Nu, Mieke, Gib Dein Guschel Immer Her«0:5867-19[Aria] (Soprano): »Ach, Es Schmeckt Doch Gar Zu Gut«1:0567-20Recitativo (Basso): »Der Herr Ist Gut«0:2367-21Aria (Basso): »Ach, Herr Schösser«1:1267-22Recitativo (Soprano): »Es Bleibt Dabei«0:2167-23[Aria] (Soprano): »Unser Trefflicher Lieber Kammerherr«1:3267-24Recitativo (Soprano, Basso): »Er Hilft Uns Allen, Alt Und Jung«0:3267-25Aria (Soprano): »Das Ist Galant«1:1567-26Recitativo (Basso): »Und Unsre Gnäd'ge Frau«0:4667-27Aria (Basso): »Fünfzig Taler Bares Geld«0:5067-28Recitativo (Soprano): »Im Ernst Ein Wort!«0:2667-29Aria (Soprano): »Klein-Zschocher Müsse«7:2567-30Recitativo (Basso): »Das Ist Zu Klug Vor Dich«0:2267-31Aria (Basso): »Es Nehme Zehntausend Dukaten«0:4367-32Recitativo (Soprano): »Das Klingt Zu Liederlich«0:2167-33Aria (Soprano): »Gib, Schöne, Viel Söhne«0:4067-34Recitativo (Basso): »Du Hast Wohl Recht«0:2067-35Aria (Basso): »Dein Wachstum Sei Feste«5:5167-36Recitativo (Soprano, Basso): »Und Damit Sei Es Auch Genug«0:1567-37[Aria] (Soprano): »Und Daß Ihr's Alle Wißt«0:4367-38[Recitativo] (Soprano, Bass): »Mein Schatz, Erraten!«0:3367-39Coro (Soprano, Basso): »Wir Gehn Nun«1:07Cantatas, BWV 213BWV 213 Lasst Uns Sorgen, Lasst Uns Wachen (Dramma Per Musica ) (Hercules At The Crossroad ∙ Herkules Auf Dem Scheidewege ∙ Le Choix D'Hercule)45:37836665Ton KoopmanConductor68-1Coro: »Laßt Uns Sorgen, Laßt Uns Wachen«6:3868-2Recitativo (Alto): »Und Wo? Wo Ist Der Rechte Bahn«0:4468-3Aria (Soprano): »Schlafe Mein Liebster«9:2268-4Recitativo (Soprano, Tenore): »Auf! Folge Meiner Bahn«1:1568-5Aria (Alto): »Treues Echo«5:1368-6Recitativo (Tenore): »Mein Hoffnungsvoller Held!«1:0268-7Aria (Tenore): »Auf Meinen Flügeln Sollst Du Schweben«4:3968-8Recitativo (Tenore): »Die Weiche Wollust Locket Zwar«0:4568-9Aria (Alto): »Ich Will Dich Nicht Hören«3:3968-10Recitativo (Alto, Tenore): »Geliebte Tugend, Du Allein«0:4868-11Aria Duetto (Alto, Tenore): »Ich Bin Deine, Du Bist Meine«7:3668-12Recitativo (Basso): »Schaut, Götter, Dieses Ist Ein Bild«1:1568-13Coro: »Lust Der Vòlker, Lust Der Deinen«2:42Cantatas, BWV 214 & 215BWV 214 Tönet, Ihr Pauken! Erschallet, Trompeten! (Dramma Per Musica)25:25836665Ton KoopmanConductor69-1Coro: »Tönet, Ihr Pauken! Erschallet, Trompeten!«7:5569-2Recitativo (Tenore): »Heut Ist Der Tag«0:5169-3Aria (Soprano): »Blast Die Wohlgegriffnen Flöten«3:1769-4Recitativo (Soprano): »Mein Knallendes Metall«0:4869-5Aria (Alto): »Fromme Musen!«3:3169-6Recitativo (Alto): »Unsre Königin Im Lande«1:0669-7Aria (Basso): »Kron Und Preis Gekrönter Damen«4:2769-8Recitativo (Basso): »So Dringe In Das Weite Erdenrund«1:1969-9Coro: »Blühet, Ihr Linden In Sachsen«2:19BWV 215 Preise Dein Glücke, Gesegnetes Sachsen (Dramma Per Musica)32:12836665Ton KoopmanConductor69-10Coro (Coro I / II): »Preise Dein Glücke, Gesegnetes Sachsen«7:1269-11Recitativo (Tenore): »Wie Können Wir, Großmächtigster August«1:1869-12Aria (Tenore): »Freilich Trotzt Augustus' Name«6:4369-13Recitativo (Basso): »Was Hat Dich Sonst, Sarmatien, Bewogen«1:4769-14Aria (Basso): »Rase Nur, Verwegner Schwarm«3:1669-15Recitativo (Soprano): »Ja, Ja! Gott Ist Uns Noch Mit Seiner Hülfe Nah«1:3069-16Aria (Soprano): »Durch Die Von Eifer Entflammeten Waffen«4:0669-17Recitativo (Soprano, Tenore, Basso): »Laß Doch, O Teurer Landesvater, Zu«2:5869-18Coro: »Stifter Der Reiche, Beherrscher Der Kronen«3:32Cantatas, BWV 190, 191 & 193BWV 190 Singet Dem Herrn Ein Neues Lied16:16836665Ton KoopmanConductor70-1[Coro]: »Singet Dem Herrn Ein Neues Lied«4:2370-2Choral [E Recitativo] (Coro): »Her Gott, Dich Loben Wir«1:4370-3Aria (Alto): »Lobe, Zion, Deinen Gott«2:3370-4Recitativo (Basso): »Es Wünsche Sich Die Welt«1:2470-5Aria (Tenore, Basso): »Jesus Soll Mein Alles Sein«3:0670-6Recitativo (Tenore): »Nun, Jesus Gebe«1:4070-7Choral (Coro): »Laß Uns Das Jahr Vollbringen«1:33BWV 191 Gloria In Excelsis Deo14:44836665Ton KoopmanConductor70-8[Coro]: »Gloria In Excelsis Deo«6:4570-9[Duetto] (Soprano, Tenore): »Gloria Patri«3:5870-10[Coro]: »Sicut Erat In Principio«4:07BWV 192 Ihr Tore Zu Zion19:50836665Ton KoopmanConductor70-11[Coro]: »Ihr Tore Zu Zion«4:1870-12Recitativo (Soprano): »Der Hüter Israel«0:3870-13Aria (Soprano): »Gott, Wir Danken Deiner Güte«5:4170-14Recitativo (Alto): »O Leipziger Jerusalem«0:4770-15Aria (Alto): »Sende, Herr, Den Segen Ein«3:1770-16Recitativo (Basso): »Nun, Herr, So Weihe Selbst Das Regiment«0:4770-17[Coro]: »Ihr Tore Zu Zion«4:22Cantatas, BWV 63 App., 182 App., 36C & 200BWV 63 Appendix Christen, Ätzet Diesen Tag 6:45836665Ton KoopmanConductor71-1Aria [Duetto] (Soprano, Bass): »Christen, Ätzet Diesen Tag«6:45BWV 182 Appendix Himmelskönig, Sei Willkommen4:37836665Ton KoopmanConductor71-2Sonata (Concerto: Grave, Adagio)2:0471-3Choral (Coro): »Jesu, Deine Passion«2:33BWV 36c Schwingt Freudig Euch Empor25:44446577Peter SchreierConductor71-4[Coro]: »Schwingt Freudig Euch Empor«4:0071-5Recitativo (Tenore): »Ein Herz, In Zärtlichem Empfinden«1:2071-6Aria (Tenore): »Die Liebe Führt Mit Sanften Schritten«4:5171-7Recitativo (Basso): »Du Bist Es Ja, O Hochverdienter Mann«1:0171-8Aria (Basso): »Der Tag, Der Dich Vordem Gebar«3:1171-9Recitativo (Saprano): »Nur Dieses Einzge Sorgen Wir«0:3971-10Aria (Soprano): »Auch Mit Gedämpften, Schwachen Stimmen«6:4971-11Recitativo (Tenore): »Bei Solchen Freudenvollen Stunden«0:2771-12Coro: »Wie Die Jahre Sich Verneuen«3:26BWV 200 Bekennen Will Ich Seinen Namen3:54869040Fritz WernerConductor71-13Aria (Alto): »Bekennen Will Ich Seinen Namen«3:54Mass In B Minor, BWV 232 (I) (H-Moll-Messe ∙ Messe En Si Mineur)I. MissaKyrie18:43716084Nikolaus HarnoncourtConductor72-1Kyrie Eleison10:3172-2Christe Eleison5:1672-3Kyrie Eleison2:56Gloria36:41716084Nikolaus HarnoncourtConductor72-4Gloria In Excelsis Deo6:3872-5Laudamus Te4:0772-6Gratias Agimus Tibi2:3772-7Domine Deus5:5672-8Qui Tollis3:0272-9Qui Sedes4:4872-10Quoniam Tu Solus5:1572-11Cum Sancto Spiritu4:18II. Symbolum NicenumCredo31:33716084Nikolaus HarnoncourtConductor73-1Credo In Unum Deo1:5373-2Patrem Omnipotemten2:0673-3Et In Unum Dominum5:0673-4Et Incarnatus Est2:5973-5Crucifixus3:3373-6Et Resurrexit4:2773-7Et In Spiritum5:1373-8Confiteor3:5573-9Et Expecto2:21III. Sanctus73-10Sanctus4:22716084Nikolaus HarnoncourtConductorIV. Osanna, Benedictus, Agnus Dei Et Dona Nobis Pacem73-11Osanna2:37716084Nikolaus HarnoncourtConductor73-12Benedictus6:43716084Nikolaus HarnoncourtConductor73-13Agnus Dei5:15716084Nikolaus HarnoncourtConductor73-14Dona Nobis Pacem2:52716084Nikolaus HarnoncourtConductorMissa BrevesMissa Breves (I)Mass BWV 233 (In F Major ∙ F-Dur ∙ Fa Majeur)28:51833014Michel CorbozConductor74-1Kyrie4:4574-2Gloria6:1574-3Domine Deus3:5474-4Qui Tollis5:4274-5Quoniam5:2474-6Cum Sancto Spiritu2:57Mass BWV 234 (In A Major ∙ A-Dur ∙ La Majeur)35:38833014Michel CorbozConductor74-7Kyrie7:3874-8Gloria5:4074-9Domine Deus7:2874-10Qui Tollis6:2474-11Quoniam4:0374-12Cum Sancto Spiritu4:3674-13Sanctus BWV 239 (In D Major ∙ D-Dur ∙ Ré Majeur)1:44833014Michel CorbozConductor74-14Sanctus BWV 240 (In G Major ∙ G-Dur ∙ Sol Majeur)2:44833014Michel CorbozConductor74-15Sanctus BWV 241 (In D Major ∙ D-Dur ∙ Re Majeur)2:08833014Michel CorbozConductorMissa Breves (II)Mass BWV 236 (In G Major ∙ G-Dur ∙ Sol Majeur)29:34833014Michel CorbozConductor75-1Kyrie4:2475-2Gloria5:0075-3Gratias Agimus Tibi5:3675-4Domine Deus4:4775-5Quoniam6:0675-6Cum Sancto Spiritu3:48Mass BWV 235 (In G Minor ∙ G-Moll ∙ Sol Mineur)32:22833014Michel CorbozConductor75-7Kyrie7:3975-8Gloria4:0175-9Gratias Agimus Tibi4:5375-10Domine Fili5:5975-11Qui Tollis4:5975-12Cum Sancto Spiritu4:5975-13Sanctus BWV 238 (In D Minor ∙ D-Moll ∙ Re Mineur)3:22833014Michel CorbozConductor75-14Christe Eleison BWV 242 (In G Minor ∙ G-Moll ∙ Sol Mineur)2:11833014Michel CorbozConductor75-15Sanctus BWV 237 (In C Major ∙ C-Dur ∙ Ut Majeur)1:43833014Michel CorbozConductorMagnificats, BWV 243 & 243AMagnificat BWV 243 (In D Major ∙ D-Dur ∙ Ré Majeur)27:26716084Nikolaus HarnoncourtConductor76-1Chorus »Magnificat«3:2276-2Air »Et Exultavit Spiritus Meus«2:4076-3Air »Quia Respexit Humilitatem«2:0176-4Chorus »Omnes Generationes«1:2876-5Air »Quia Mihi Fecit Magna«2:0076-6Duet »Et Misericordia«3:3376-7Chorus »Fecit Potentiam«2:0076-8Air »Deposuit Potentes«2:0976-9Air »Esurientes Implevit Bonis«2:5776-10Trio »Suscepit Israel«1:2576-11Chorus »Sicut Locutus Est«1:3476-12Chorus »Gloria Patri«2:28Magnificat BWV 243 A (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)35:44252872Simon PrestonConductor76-13Chorus »Magnificat«3:1776-14Air »Et Exultavit Spiritus Meus«2:1376-15Chorale »Vom Himmel Hoch Da Komm' Ich Her«2:2476-16Air »Quia Respexit Humilitatem«2:4176-17Chorus »Omnes Generationes«1:2676-18Air »Quia Mihi Fecit Magna«2:0576-19Chorale »Freut Euch Und Jubilieret«1:2776-20Duet »Et Misericordia«3:4976-21Chorus »Fecit Potentiam«2:0776-22Chorale »Gloria In Excelsis Deo«1:0876-23Air »Deposuit Potentes«1:5976-24Air »Esurientes Implevit Bonis«2:5676-25Chorale »Virga Jesse Floruit«2:5476-26Trio »Suscepit Israel«1:4776-27Chorus »Sicut Locutus Est«1:2976-28Chorus »Gloria Patri«2:02St Matthew Passion, BWV 244 (Matthäuspassion ∙ Passion Selon St Matthieu)Prima Parte76:05716084Nikolaus HarnoncourtConductor77-11. Choir 1, 2: »Kommt, Ihr Töchter, Helft Mir Klagen«7:2577-22. Evangelist: »Da Jesus Diese Rede Vollendet Hatte«0:4877-33. Chorale »Herzliebster Jesu, Was Hast Du Verbrochen«0:5277-44a. Evangelist: »Da Versammelten Sich Die Hohepriester«0:2977-54b. Choir 1, 2: »Ja Nicht Auf Das Fest«0:1277-64c. Evangelist: »Da Nun Jesus War Zu Bethanien«0:2777-74d. Choir 1: »Wozu Dient Dieser Unrat«0:3077-84e. Evangelist: »Da Das Jesus Merkete, Sprach Er Zu Ihnen«1:4077-95. Recitative (Alto 1) »Du Lieber Heiland Du«1:0777-106. Air (Alto 1) »Buß Und Reu«5:1877-117. Evangelist: »Da Ging Hin Der Zwölfen Einer«0:3277-128. Air (Soprano 2) »Blute Nur, Du Liebes Herz«4:5477-139a. Evangelist: »Aber Am Ersten Tage Der Süßen Brot«0:1577-149b. Choir 1: »Wo Willst Du, Daß Wir Dir Bereiten«0:2577-159c. Evangelist: »Er Sprach«1:3877-169e. Choir 1: »Herr, Bin Ich's?«0:1277-1710. Chorale »Ich Bin's, Ich Sollte Büßen«0:4977-1811. Evangelist: »Er Antwortete Und Sprach«3:1677-1912. Recitative (Soprano 1) »Wiewohl Mein Herz In Tränen Schwimmt«1:2777-2013. Air (Soprano 1) »Ich Will Dir Mein Herze Schenken«3:4877-2114. Evangelist: »Und Da Sie Den Lobgesang Gesprochen Hatten«1:1377-2215. Chorale »Erkenne Mich, Mein Hüter«1:0777-2316. Evangelist: »Petrus Aber Antwortete«1:0877-2417. Chorale »Ich Will Hier Bei Dir Stehen«1:0677-2518. Evangelist: »Da Kam Jesus Mit Ihnen Zu Einem Hofe«1:4377-2619. Recitative (Tenor 1, Choir 2) »O Schmerz!« (Choir »Was Ist Die Ursach'«)1:5277-2720. Air (Tenor 1, Choir 2) »Ich Will Bei Meinem Jesu Wachen«5:1878-121. Evangelist: »Und Ging Hin Ein Wenig«0:4978-222. Recitative (Bass 2) »Der Heiland Fällt Vor Seinem Vater Nieder«1:1678-323. Air (Bass 2): »Gerne Will Ich Mich Bequemen«5:1178-424. Evangelist: »Und Er Kam Zu Seinen Jüngern«1:2578-525. Chorale »Was Mein Gott Will«1:1478-626. Evangelist: »Und Er Kam Und Fand Sie Aber Schlafend«2:4178-727a. Air (Soprano 1, Alto 1, Choir 2) »So Ist Mein Jesus Nun Gefangen« Choir: »Laßt Ihn! Haltet! Bindet Nicht!«3:5378-827b. Choir: 1, 2 »Sind Blitze, Sind Donner«1:1178-928. Evangelist: »Und Siehe, Einer Aus Denen«2:3578-1029. Chorale »'O Mensch, Bewein Dein Sünde Groß«6:19Seconda Parte32:48716084Nikolaus HarnoncourtConductor78-1130. Air (Alto 1, Choir 2): »Ach! Nun Ist Mein Jesus Hin!« (Choir: »Wo Ist Denn«)4:2178-1231. Evangelist: »Die Aber Jesum Gegriffen Hatten«0:5678-1332. Chorale »Mir Hat Die Welt Trüglich Gericht't«0:5078-1433. Evangelist: »Und Wiewohl Viel Falsche Zeugen«1:0778-1534. Recitative (Tenor 2) »Mein Jesus Schweigt Zu Falschen Lügen Stille«1:1378-1635. Air (Tenor 2) »Geduld!«3:3178-1736a. Evangelist: »Und Der Hohepriester Antwortete«1:2478-1836b. Choir 1, 2: »Er Ist Des Todes Schuldig!«0:1278-1936c. Evangelist: »Da Speieten Sie Aus«0:1678-2036d. Choir 1, 2: »Weissage Uns, Christe«0:2278-2137. Chorale »Wer Hat Dich So Geschlagen«0:5678-2238a. Evangelist: »Petrus Aber Saß Draußen«0:5378-2338b. Choir 2: »Wahrlich, Du Bist Auch Einer Von Denen«0:1178-2438c. Evangelist: »Da Hub Er An, Sich Zu Verfluchen«1:2078-2539. Air (Alto 1) »Erbarme Dich, Mein Gott«6:1478-2640. Chorale »Bin Ich Gleich Von Dir Gewichen«1:0278-2741a. Evangelist: »Des Morgens Aber«0:5578-2841b. Choir 1, 2: »Was Gehet Uns Das An?«0:0978-2941c. Evangelist: »Und Er Warf Die Silberlinge«0:4078-3042. Air (Bass 2) »Gebt Mir Meinen Jesum Wieder!«3:0378-3143. Evangelist: »Sie Hielten Aber Einen Rat«2:1178-3244. Chorale »Befiehl Du Deine Wege«1:0279-145a. Evangelist: »Auf Das Fest Aber«1:4479-2Choir 1, 2: »Barabbam!«0:0479-3Evangelist: »Pilatus Sprach Zu Ihnen«0:1179-445b. Choir 1, 2: »Laß Ihn Kreuzigen«0:2179-546. Chorale »Wie Wunderbarlich Ist Doch Diese Strafe!«0:5979-647. Evangelist: »Der Landpfleger Sagte«0:1479-748. Recitative (Soprano 1) »Er Hat Uns Allen Wohlgetan«1:1379-849. Air (Soprano 1) »Aus Liebe Will Mein Heiland Sterben«4:3379-950a. Evangelist: »Sie Schrieen Aber Noch Mehr«0:0479-1050b. Choir 1, 2: »Laß Ihn Kreuzigen«0:2079-1150c. Evangelist: »Da Aber Pilatus Sahe«0:2579-1250d. Choir 1, 2: »Sein Blut Komme Über Uns«0:4479-1350e. Evangelist: »Da Gab Er Ihnen Barabbam Los«0:2179-1451. Recitative (Alto 2) »Erbarm Es Gott«1:1279-1552. Air (Alto 2) »Können Tränen Meine Wangen«7:3079-1653a. Evangelist: »Da Nahmen Die Kriegsknechte«0:3579-1753b. Choir 1, 2: »Gegrüßet Seist Du, Jüdenkönig!«0:3279-1854. Chorale »O Haupt Voll Blut Und Wunden«2:2779-1955. Evangelist: »Und Da Sie Ihn Verspottet Hatten«0:4979-2056. Recitative (Bass 1) »Ja! Freilich Will In Uns Das Fleisch«0:3579-2157. Air (Bass 1) »Komm, Süßes Kreuz«6:0479-2258a. Evangelist: »Und Da Sie An Die Stätte Kamen«1:4379-2358b. Choir 1, 2: »Der Du Den Tempel Gottes Zerbrichst«0:3179-2458c. Evangelist: »Desgleichen Auch Die Hohenpriester«0:1179-2558d. Choir 1, 2: »Andern Hat Er Geholfen«0:5779-2658e. Evangelist: »Desgleichen Schmäheten Ihn Auch Die Mörder«0:1879-2759. Recitative (Alto 1, Choir 2) »Ach Golgatha«1:3879-2860. Air (Alto 1, Choir 2) »Sehet, Jesus Hat Die Hand« (Choir: »Wohin?«)3:2979-2961a. Evangelist: »Und Von Der Sechsten Stunde An«1:2279-3061b. Choir: »Der Rufet Den Elias«0:0479-3161c. Evangelist: »Und Bald Lief Einer Unter Ihnen«0:1779-3261d. [+61e.] Choir 2: »Halt, Laß Sehen«0:3379-3362. Chorale »Wenn Ich Einmal Soll Scheiden«1:2679-3463a. Evangelist: »Und Siehe Da, Der Vorhang Im Tempel«1:1479-3563b. Choir 1, 2: »Wahrlich, Dieser Ist Gottes Sohn Gewesen«0:2679-3663c. Evangelist: »Und Es Waren Viel Weiber Da«1:0779-3764. Recitative (Bass 1) »Am Abend Da Es Kühle War«2:1379-3865. Air (Bass 1) »Mache Dich, Mein Herze, Rein«6:5679-3866a. Evangelist: »Und Joseph Nahm Den Leib«1:0379-4066b. Choir 1, 2: »Herr, Wir Haben Gedacht«0:5579-4166c. Evangelist: »Pilatus Sprach Zu Ihnen«0:3879-4267. Recitative (Soprano 1, Alto 1, Tenor 1, Bass 1, Choir 2) »Nun Ist Der Herr Zur Ruh Gebracht« (Choir: »Mein Jesu, Gute Nacht«)1:4579-468. Choir 1, 2: »Wir Setzen Uns Mit Tränen Nieder«5:41St John Passion, BWV 245 (Johannespassion ∙ Passion Selon St Jean)Prima Parte35:28716084Nikolaus HarnoncourtConductor80-11. Chorus »Herr, Unser Herrscher«9:2880-22a. Evangelist / Jesus: »Jesus Ging Mit Seinen Jüngern« 2b. Chorus »Jesum Von Nazareth« 2c. Evangelist / Jesus: »Jesus Spricht Zu Ihnen« 2d. Chorus »Jesum Von Nazareth« 2e. Evangelist / Jesus: »Jesus Antwortete«2:3380-33. Chorale »O Große Lieb«0:5080-44. Evangelist / Jesus: »Auf Daß Das Wort Erfüllet Würde«1:1180-55. Chorale »Dein Will Gescheh, Herr Gott, Zugleich«0:5180-66. Evangelist: »Die Schar Aber Und Der Oberhauptmann«0:4580-77. Air (Alto) »Von Den Stricken Meiner Sünden«4:4180-88. Evangelist: »Simon Petrus Aber Folgete Jesu Nach«0:1280-99. Air (Soprano) »Ich Folge Dir Gleichfalls«4:1980-1010. Evangelist, Ancilla, Peter, Officer: »Derselbige Jünger«3:0680-1111. Chorale »Wer Hat Dich So Geschlagen«1:3680-1212a. Evangelist: »Und Hannas Sandte Ihn Gebunden« 12b. Chorus »Bist Du Nicht Seiner Jünger Einer?« 12c. Evangelist, Peter, Servant: »Er Leugnete Aber Und Sprach«2:0580-1313. Air (Tenor) »Ach, Mein Sinn«2:3980-1414. Chorale »Petrus, Der Nicht Denkt Zurück«1:11Parte Seconda74:37716084Nikolaus HarnoncourtConductor81-115. Chorale »Christus, Der Uns Selig Macht«1:0181-216a. Evangelist: »Da Führeten Sie Jesum« 16b. Chorus »Wäre Dieser Nicht Ein Übeltäter« 16c. Evangelist, Pilate: »Da Sprach Pilatus Zu Ihnen« 16d. Chorus »Wir dürfen Niemand Töten« 16e. Evangelist, Pilate, Jesus: »Auf Daß Erfüllet Würde Das Wort«4:2381-317. Chorale »Ach Großer König«1:2681-418a. Evangelist, Pilate, Jesus: »Da Sprach Pilatus Zu Ihm« 18b. Chorus »Nicht Diesen, Sondern Barrabam« 18c. Evangelist: »Barrabas Aber War Ein Mörder«1:5881-519. Arioso (Bass) »Betrachte, Meine Seel«1:5381-620. Air (Tenor) »Erwäge, Wie Sein Blutgefärbter Rücken«8:3681-721a. Evangelist: »Und Die Kriegsknechte Flochten Eine Krone« 21b. Chorus »Sei Gegrüßet, Lieber Judenkönig« 21c. Evangelist, Pilate: »Und Gaben Ihm Backenstreiche« 21d. Chorus »Kreuzige, Kreuzige« 21e. Evangelist, Pilate: »Pilatus Sprach Zu Ihnen« 21f. Chorus »Wir Haben Ein Gesetz« 21g. Evangelist, Pilate, Jesus: »Da Pilatus Das Wort Hörete«5:5781-822. Chorale »Durch Dein Gefängnis, Gottes Sohn«0:5481-923a. Evangelist: »Die Juden Aber Schrieen Und Sprachen« 23b. Chorus »Lässest Du Diesen Los« 23c. Evangelist, Pilate: »Da Pilatus Das Wort Hörete« 23d. Chorus »Weg, Weg Mit Dem, Kreuzige Ihn!« 23e. Evangelist, Pilate: »Spricht Pilatus Zu Ihnen« 23f. Chorus »Wir Haben Keinen König« 23g. Evangelist: »Da Überantwortete Er Ihn«4:2081-1024. Air With Chorus (Bass) »Eilt, Ihr Angefochtnen Seelen«4:0681-1125a. Evangelist: »Allda Kreuzigten Sie Ihn« 25b. Chorus »Schreibe Nicht: Der Juden König« 25c. Evangelist, Pilate: »Pilatus Antwortet«2:0981-1226. Chorale »In Meines Herzens Grunde«1:0381-1327a. Evangelist: »Die Kriegsknechte Aber« 27b. Chorus »Lasset Uns Den Nicht Zerteilen« 27c. Evangelist, Jesus: »Auf Daß Erfüllet Würde Die Schrift«3:2681-1428. Chorale »Er Nahm Alles Wohl In Acht«1:0381-1529. Evangelist, Jesus: »Und Von Stund An Nahm Sie Der Jünger«1:1581-1630. Air (Alto) »Es Ist Vollbracht«5:0781-1731. Evangelist: »Und Neiget Das Haupt«0:2081-1832. Air With Chorus (Bass) »Mein Teurer Heiland«5:1181-1933. Evangelist: »Und Siehe Da, Der Vorhang Im Tempel Zerriß«0:2881-2034. Arioso (Tenor) »Mein Herz, In Dem Die Ganze Welt«0:5481-2135. Air (Soprano) »Zerfließe, Mein Herze«6:0481-2236. Evangelist: »Die Juden Aber, Dieweil Es Rüsttag War«1:5981-2337. Chorale »O Hilf, Christe, Gottes Sohn«0:5881-2438. Evangelist: »Darnach Bat Pilatum Joseph Von Arimathia«1:5181-2539. Chorus »Ruht Wohl, Ihr Heiligen Gebeine«6:1381-2640. Chorale »Ach Herr, Laß Dein Lieb Engelein«2:02Christmas Oratorio, BWV 248 (Weihnachtsoratorium ∙ Oratorio De Noël)Part 1 (Am 1. Weihnachtstage) (Feria Nativitatis Christi)27:34716084Nikolaus HarnoncourtConductor82-11. Chorus: »Jauchzet, Frohlocket«8:2982-22. Evangelist (Tenor): »Es Begab Sich Aber Zu Der Zeit«1:0982-33. Accompagnato (Alto): »Nun Wird Mein Liebster Bräutigam«0:5382-44. Air (Alto): »Bereite Dich, Zion«5:5782-55. Chorale: »Wie Soll Ich Dich Empfangen«1:0882-66. Evangelist: »Und Sie Gebar«0:2482-77. Chorale / Recitative (Soprano, Bass): »Er Ist Auf Erden Kommen Arm«2:5682-88. Air (Bass) »Großer Herr, O Starker König«5:2682-99. Chorale: »Ach Mein Herzliebes Jesulein«1:12Part 2 (Am 2. Weihnachtstage) (Feria 2 Nativitatis Christi)28:19716084Nikolaus HarnoncourtConductor82-101. Sinfonia4:4382-112. Evangelist: »Und Es Waren Hirten In Derselben Gegend«0:3182-123. Chorale: »Brich An, O Schönes Morgenlicht«1:0882-134. Evangelist / Angelus (Soprano): »Und Der Engel Sprach Zu Ihnen«0:4182-145. Recitative (Bass): »Was Gott Dem Abraham Verheissen«0:4082-156. Air (Tenor) »Frohe Hirten, Eilt«3:4582-167. Evangelist: »Und Das Habt Zum Zeichen«0:1882-178. Chorale: »Schaut Hin, Dort Liegt Im Finstern Stall«0:3782-189. Recitative (Bass): »So Geht Denn Hin«0:4982-1910. Air (Alto) »Schlafe, Mein Liebster«9:2382-2011. Evangelista »Und Alsobald War Da Bei Dem Engel«0:1682-2112. Chorus: »Ehre Sei Gott In Der Höhe«3:5582-2213. Recitative (Bass): »So Recht, Ihr Engel«0:2282-2314. Chorale: »Wir Singen Dir In Deinem Heer«1:11Part 3 (Am 3. Weihnachtstage) (Feria 3 Nativitatis Christi)23:51716084Nikolaus HarnoncourtConductor82-241, Chorus: »Herrscher Des Himmels, Erhöre Das Lallen«2:1882-252. Evangelist: »Und Da Die Engel«0:1182-263. Chorus (Shepherds): »Lasset Uns Nun Gehen«0:4782-274. Recitative (Bass): »Er Hat Sein Volk Getröst«0:3882-285. Chorael: »Dies Hat Er Alles Uns Getan«0:5182-296. Air Duett (Soprano, Bass): »Herr, Dein Mitleid«7:5082-307. Evangelist: »Und Sie Kamen Eilend«1:0882-318. Air (Alto): »Schließe, Mein Herze«5:0482-329. Recitative (Alto): »Ja, Ja, Mein Herz«0:2882-3310. Chorale: »Ich Will Dich Mit Fleiß Bewahren«0:5983-111. Evangelist: »Und Die Hirten Kehrten Wieder Um«0:2583-212. Chroale: »Seid Froh Dieweil«0:4983-313. Chorus: »Herrscher Des Himmels, Erhöre Das Lallen«2:23Part 4 (Am Neujahrstage) (Festo Circumcisionis Christi)24:46716084Nikolaus HarnoncourtConductor83-41. Chorus: »Fallt Mit Danken, Fallt Mit Loben«6:4683-52. Evangelist (Tenor): »Und Da Acht Tage Um Waren«0:3483-63. Recitativo With Chorale (Soprano, Bass): »Immanuel, Du Süßes Wort«2:3083-74. Air (Soprano, Echo): »Flößt Mein Heiland«6:1683-85. Recitative With Chorale (Soprano, Bass): »Wohlan, Dein Name Soll Allein«1:3683-96. Air (Tenor): »Ich Will Nur Dir Zu Ehren Leben«4:4383-107. Chorale: »Jesus Richte Mein Beginnen«2:19Part 5 (Am Sonntag Nach Neujahr) (Dominica Post Festum Circumcisionis Christi)24:10716084Nikolaus HarnoncourtConductor83-111. Chorus: »Ehre Sei Dir, Gott, Gesungen«7:4983-122. Evangelista: »Da Jesus Geboren War«0:2283-133. Chorus And Alto: »Wo Ist Der Neugeborne König Der Juden?«1:3983-144. Chorale: »Dein Glanz All Finsternis Verzehrt«0:4983-155. Air (Bass): »Erleucht Auch Meine Finstre Sinnen«4:2283-166. Evangelist: »Da Das Der König Herodes Hörte«0:1283-177. Accompagnato (Alto, Tenor): »Warum Wollt Ihr Erschrecken?«0:2783-188. Evangelist: »Und Ließ Versammeln Alle Hohepriester«1:2283-199. Air Trio (Soprano, Alto, Tenor): »Ach, Wenn Wird Die Zeit Erscheinen«5:4283-2010. Recitative (Alto): »Mein Liebster Herrschet Schon«0:2983-2111. Chorale: »Zwar Ist Solche Herzensstube«0:57Part 6 (Am Fest Der Erscheinung Christi) (Festo Epiphanias)25:44716084Nikolaus HarnoncourtConductor83-221. Chorus: »Herr, Wenn Die Stolzen Feinde Schnauben«5:3983-232. Evangelist / Herodes (Bass): »Da Berief Herodes«0:4583-243. Recitative (Soprano): »Du Falscher, Suche Nur«0:4783-254. Air (Soprano): »Nur Ein Wink Von Seinen Händen«4:5983-265. Evangelist: »Als Sie Nun Den König Gehöret Hatten«1:0283-276. Chorale: »Ich Steh An Deiner Krippen Hier«1:0583-287. Evangelist: »Und Gott Befahl Ihnen Im Traum«0:2283-298. Recitative (Tenor): »So Geht!«1:5283-309. Air (Tenor): »Nun Mögt Ihr Stolzen Feinde Schrecken«5:0183-3110. Recitative (Soprano, Alto, Tenor, Bass): »Was Will Der Höllen Schrecken Nun«0:3683-3211. Chorale: »Nun Seid Ihr Wohl Gerochen«3:36Psalm 51, BWV 1083 Arias, BWV 245A, B & CPsalm 51, BWV 108341:521673071Gunar LetzborConductor84-1Versus 1 »Tilge, Höchster, Meine Sünde«4:1384-2Versus 2 »Ist Mein Herz«2:3684-3Versus 3 »Missetaten, Die Mich Drücken«2:3184-4Versus 4 »Dich Erzürnt Mein Tun Und Lassen«2:5084-5Versus 5 / 6 »Wer Wird Seine Schuld Vermeinen«2:1284-6Versus 7 »Sieh! Ich Bin In Sünd Empfangen«0:4284-7Versus 8 »Sieh, Du Willst Die Wahrheit Haben«3:3084-8Versus 9 »Wasche Mich Doch Rein Von Sünden«3:0684-9Versus 10 »Laß Mich Freud Und Wonne Spüren«2:1684-10Versus 11 / 15 »Schaue Nicht Auf Meine Sünden«6:1684-11Versus 16 »Öffne Lippen, Mund Und Seele«4:3584-12Versus 17 / 18 »Denn Du Willst Kein Opfer Haben«3:3984-13Versus 19 / 20 »Laß Dein Zion Blühend Dauern«2:2384-14Amen1:103 Arias From The 1725 Version Of The St John Passion BWV 245 A, B, C15:0684-15Air And Chorale (Bass) »Himmel, Reiße, Welt Erbebe« - »Jesus, Deine Passion« BWV 245 A (After Chorale No. 11)4:1984-16Air (Tenor) »Zerschmettert Mich, Ihr Felsen Und Ihr Hügel« BWV 245 B (Instead Of No. 13)4:5184-17Air (Tenor) »Ach Windet Euch Nicht So, Geplagte Seelen« BWV 245 C (Instead Of No. 19)5:56Easter Oratorio, BWV 249Easter Oratorio BWV 249 (Osteroratorium ∙ Oratorio De Pâques)41:03836665Ton KoopmanConductor85-1Sinfonia4:0185-2Adagio3:1685-3Chorus »Kommt Eilet Und Laufet«4:4685-4Recitative (Soprano, Alto, Tenor, Bass) »O Kalter Männer Sinn«1:0485-5Aria (Soprano) »Seele, Deine Spezereien«11:0185-6Recitative (Alto, Tenor, Bass) »Hier Ist Die Gruft«0:4785-7Aria (Tenor) »Sanfte Soll Mein Todeskummer«6:1785-8Recitative (Soprano, Alto) »Indessen Seufzen Wir«1:0585-9Aria (Alto) »Saget, Saget Mir Geschwinde«5:4785-10Recitative (Bass) »Wir Sind Erfreut«0:4085-11Chorus »Preis Und Dank«2:20Motets, Chorales & SongsMotets, BWV 225-230Motets (Motetten ∙ Motets)62:37950551Anders ÖhrwallConductor716084Nikolaus HarnoncourtConductor86-1Singet Dem Herrn Ein Neues Lied BWV 22512:5086-2Der Geist Hilft Unser Schwachheit Auf BWV 2267:4786-3Komm, Jesu, Komm BWV 2297:5486-4Jesu, Meine Freude BWV 22720:1086-5Fürchte Dich Nicht, Ich Bin Bei Dir BWV 2288:0886-6Lobet Den Herren, Alle Heiden BWV 2305:45Chorales, BWV 253-438Chorales (Choräle ∙ Chorals) (Vierstimmige Chorgesänge, Ed. (Leipzig 1784-87))03:40:25973471Robin GrittonConductor841803Carl Philipp Emanuel BachC. P. E. BachEdited By [Ed.]1959368Johann Philipp KirnbergerJ. P. KirnbergerEdited By [Ed.]87-1Ach Bleib Bei Uns, Herr Jesu Christ BWV 2530:4787-2Ach Gott, Erhör' Mein Seufzen BWV 2540:5987-3Ach Gott Und Herr BWV 2550:4487-4Ach Lieben Christen, Seid Getrost BWV 2561:1087-5Wär' Gott Nicht Mit Uns Diese Zeit BWV 2571:1087-6Wo Gott Der Herr Nicht Bei Uns Hält BWV 2580:5287-7Ach, Was Soll Ich Sünder Machen BWV 2591:0287-8Allein Gott In Der Höh' Sei Ehr' BWV 2601:0487-9Allein Zu Dir, Herr Jesu Christ BWV 2611:3887-10Alle Menschen Müssen Sterben BWV 2621:0687-11Alles Ist An Gottes Segen BWV 2630:4687-12Als Der Gütige Gott BWV 2641:2687-13Als Jesus Christus In Der Nacht BWV 2651:4087-14Als Vierzig Tag' Nach Ostern War'n BWV 2660:4687-15An Wasserflüssen Babylon BWV 2671:4687-16Auf, Auf, Mein Herz, Und Du Mein Ganzer Sinn BWV 2680:5587-17Aus Meines Herzens Grunde BWV 2691:0487-18Befiehl Du Deine Wege BWV 2701:2287-19Dem Herren Mußt Du Trauen BWV 2711:2187-20Dein' Ew'ge Treu' Und Gnade BWV 2721:2187-21Christ, Der Du Bist Der Helle Tag BWV 2730:4887-22Christe, Der Du Bist Tag Und Licht BWV 2740:3687-23Christe, Du Beistand Deiner Kreuzgemeine BWV 2751:1587-24Christ Ist Erstanden BWV 2762:1587-25Christ Lag In Todesbanden BWV 2771:0587-26Den Tod Niemand Bezwingen Kunt BWV 2781:1087-27Hier Ist Das Rechte Osterlamm BWV 2791:0887-28Christ, Unser Herr, Zum Jordan Kam BWV 2801:2987-29Mit Freud Fahr Ich Von Dannen BWV 2810:3387-30Christus, Der Ist Mein Leben BWV 2820:4987-31Christus, Der Uns Selig Macht BWV 2831:1987-32Christus Ist Erstanden, Hat Überwunden BWV 2841:0287-33Da Der Herr Christ Zu Tische Sass BWV 2851:0487-34Danket Dem Herren, Denn Er Ist Sehr Freundlich BWV 2860:3387-35Dank Sei Gott In Der Höhe BWV 2871:1487-36Das Alte Jahr Vergangen Ist BWV 2880:5387-37Wir Bitten Dich, Du Ewger Sohn BWV 2891:0187-38Das Walt' Gott Vater Und Gott Sohn BWV 2900:4287-39Das Walt' Mein Gott BWV 2910:4687-40Den Vater Dort Oben BWV 2921:0187-41Der Du Bist Drei In Einigkeit BWV 2930:4387-42Der Tag, Der Ist So Freudenreich BWV 2941:2487-43Des Heil'gen Geistes Reiche Gnad' BWV 2950:4387-44Die Nacht Ist Kommen BWV 2961:1487-45Die Sonn' Hat Sich Mit Ihrem Glanz Gewendet BWV 2971:0387-46Dies Sind Die Heil'gen Zehn Gebot' BWV 2980:5187-47Dir, Dir, Jehova, Will Ich Singen BWV 2990:5187-48Du Grosser Schmerzensmann BWV 3001:1687-49Du, O Schönes Weltgebäude BWV 3011:1888-1Eine Feste Burg Ist Unser Gott BWV 3021:0788-2Mit Unsrer Macht Ist Nichts Gethan BWV 3031:0788-3Eins Ist Noth, Ach Herr, Dies Eine BWV 3040:5788-4Erbarm Dich Mein, O Herre Gott BWV 3051:2888-5Erstanden Ist Der Heilig' Christ BWV 3060:3888-6Es Ist Gewisslich An Der Zeit BWV 3071:0588-7Es Spricht Der Unweisen Mund Wohl BWV 3081:1788-8Es Steh'n Vor Gottes Throne BWV 3091:2588-9Es Wird Schier Der Letzte Tag Herkommen BWV 3100:3888-10Es Woll' Uns Gott Genädig Sein BWV 3111:2788-11So Danken Gott, Und Loben Dich BWV 3121:2588-12Für Freuden Lasst Uns Springen BWV 3130:5288-13Gelobet Seist Du, Jesu Christ BWV 3140:4688-14Gieb Dich Zufrieden Und Sei Stille BWV 3151:4288-15Gott, Der Du Selber Bist Das Licht BWV 3161:2588-16Gott Der Vater Wohn' Uns Bei BWV 3171:4288-17Gottes Sohn Ist Kommen BWV 3180:5488-18Gott Hat Das Evangelium BWV 3190:5288-19Gott Lebet Noch BWV 3201:2388-20Gottlob, Es Geht Nunmehr Zu Ende BWV 3210:5688-21Gott Sei Gelobet Und Gebenedeiet BWV 3222:0688-22Gott Sei Uns Gnädig Und Barmherzig BWV 3230:3788-23Meine Seele Erhebet Den Herrn BWV 3240:2988-24Heilig, Heilig, Heilig BWV 3252:4788-25Herr Gott, Dich Loben Alle Wir BWV 3260:3688-26Für Deinen Thron Tret' Ich Hiermit BWV 3270:4288-27Herr Gott, Dich Loben Wir BWV 3286:5988-28Herr, Ich Denk' An Jene Zeit BWV 3291:0688-29Herr, Ich Habe Missgehandelt BWV 3300:5588-30Doch, Wie Könnt Ich Dir Entfliehen BWV 3311:1188-31Herr Jesu Christ, Dich Zu Uns Wend' BWV 3320:3988-32Herr Jesu Christ, Du Hast Bereit't BWV 3331:0988-33Herr Jesu Christ, Du Höchstes Gut BWV 3341:1688-34Herr Jesu Christ, Mein's Lebens Licht BWV 3350:4688-35Herr Jesu Christ, Wahr'r Mensch Und Gott BWV 3360:5388-36Herr, Nun Lass In Friede BWV 3370:5788-37Herr, Straf Mich Nicht In Deinem Zorn BWV 3381:2088-38Wer In Dem Schutz Des Höchsten Ist BWV 3391:1688-39Herr, Wie Du Willst, So Schick's Mit Mir BWV 3391:2088-40Herzlich Lieb Hab' Ich Dich, O Herr BWV 3401:5988-41Heut' Ist, O Mensch, Ein Grosser Trauertag BWV 3411:5988-42Heut Triumphiret Gotts Sohn BWV 3420:5189-1Hilf, Gott, Dass Mir's Gelinge BWV 3431:1289-2Hilf, Herr Jesu, Lass Gelingen BWV 3440:5389-3Ich Bin Ja, Herr, In Deiner Macht BWV 3451:2689-4Ich Dank' Dir, Gott BWV 3461:0089-5Ich Dank' Dir, Lieber Herre BWV 3471:0489-6Mit Dank Will Ich Dich Loben BWV 3481:1189-7Ich Dank Dir Schon Durch Deinen Sohn BWV 3490:3989-8Ich Danke Dir, O Gott, In Deinem Throne BWV 3501:4189-9Ich Hab' Mein' Sach' Gott Heimgestellt BWV 3510:5589-10Jesu, Der Du Meine Seele BWV 3521:0289-11Treulich Hast Du Ja Gesuchet BWV 3531:1389-12Ach, Ich Bin Ein Kind Der Sünden BWV 3541:0889-13Jesu, Der Du Selbst So Wohl BWV 3551:0089-14Jesu, Du Mein Liebstes Leben BWV 3561:2589-15Jesu, Jesu, Du Bist Mein BWV 3571:1489-16Jesu, Meine Freude BWV 3581:3789-17Jesu, Meiner Seelen Wonne BWV 3591:0789-18Jesu, Meiner Freuden Freude BWV 3601:0489-19Jesu, Meines Herzens Freud' BWV 3611:1789-20Jesu, Nun Sei Gepreiset BWV 3621:2589-21Jesus Christus, Unser Heiland BWV 3631:0789-22Jesus Christus, Unser Heiland, Der Den Tod BWV 3641:0289-23Jesus, Meine Zuversicht BWV 3651:0389-24Ihr Gestirn', Ihr Hohlen Lüfte BWV 3660:5089-25In Allen Meinen Thaten BWV 3670:4989-26In Dulci Jubilo BWV 3681:1289-27Keinen Hat Gott Verlassen BWV 3691:0489-28Komm, Gott Schöpfer, Heiliger Geist BWV 3700:5989-29Kyrie! Gott Vater In Ewigkeit BWV 3713:1289-30Lass, O Herr, Dein Ohr Sich Neigen BWV 3721:4089-31Liebster Jesu, Wir Sind Hier BWV 3731:1689-32Lobet Den Herren, Denn Er Ist Sehr Freundlich BWV 3740:5989-33Lobt Gott, Ihr Christen Allzugleich BWV 3750:4089-34Er Kömmt Aus Seines Vaters Schooß BWV 3760:4689-35Mach's Mit Mir, Gott, Nach Deiner Güt' BWV 3771:1289-36Mein' Augen Schliess' Ich Jetzt BWV 3781:2689-37Meinen Jesum Lass' Ich Nicht BWV 3791:0989-38Meinen Jesum Lass' Ich Nicht BWV 3801:0389-39Meines Lebens Letzte Zeit BWV 3811:2889-40Mit Fried' Und Freud' Ich Fahr' Dahin BWV 3821:1289-41Mitten Wir Im Leben Sind BWV 3832:4789-42Nicht So Traurig, Nicht So Sehr BWV 3840:4889-43Nun Bitten Wir Den Heiligen Geist BWV 3851:1189-44Nun Danket Alle Gott BWV 3861:0989-45Nun Freut Euch, Gottes Kinder All BWV 3870:3389-46Nun Freut Euch, Liebe Christen G'mein BWV 3881:0890-1Nun Lob', Mein' Seel', Den Herren BWV 3891:4090-2Er Hat Uns Wissen Lassen BWV 3901:3690-3Nun Preiset Alle Gottes Barmherzigkeit BWV 3910:5390-4Nun Ruhen Alle Wälder BWV 3921:1590-5O Welt, Sieh' Hier Dein Leben BWV 3930:5190-6Tritt Her Und Schau Mit Fleisse BWV 3940:5590-7Wer Hat Dich So Geschlagen BWV 3950:5990-8Nun Sich Der Tag Geendet Hat BWV 3960:4090-9O Ewigkeit, Du Donnerwort BWV 3971:2290-10Ich Freue Mich In Dir BWV 3981:0390-11O Gott, Du Frommer Gott BWV 3991:1690-12O Herzensangst, O Bangigkeit Und Zagen BWV 4000:4490-13O Lamm Gottes Unschuldig BWV 4011:3390-14O Mensch, Bewein' Dein Sünde Gross BWV 4022:2490-15O Mensch, Schau Jesum Christum An BWV 4030:5090-16O Traurigkeit, O Herzeleid BWV 4040:4790-17O Wie Selig Seid Ihr Doch, Ihr Frommen BWV 4050:5490-18Muß Man Hier Doch Wie Im Kerker Leben BWV 4060:4590-19O Wir Armen Sünder BWV 4071:5590-20Schaut, Ihr Sünder BWV 4080:4690-21Seelenbräutigam BWV 4090:5490-22Sei Gegrüsset, Jesu Gütig BWV 4101:1090-23Singt Dem Herrn Ein Neues Lied BWV 4111:0590-24So Giebst Du Nun, Mein Jesu, Gute Nacht BWV 4121:1590-25Sollt' Ich Meinem Gott Nich Singen BWV 4131:2290-26Uns Ist Ein Kindlein Heut' Gebor'n BWV 4140:5990-27Valet Will Ich Dir Geben BWV 4151:0090-28Vater Unser Im Himmelreich BWV 4161:0090-29Von Gott Will Ich Nich Lassen BWV 4170:5390-30Wenn Sich Der Menschen Hulde BWV 4180:5690-31Auf Ihr Will Ich Vertrauen BWV 4191:0190-32Warum Betrübst Du Dich, Mein Herz BWV 4200:4790-33Er Kann Und Will Dich Lassen Nicht BWV 4210:5090-34Warum Sollt' Ich Mich Denn Grämen BWV 4220:5690-35Was Betrübst Du Dich, Mein Herze BWV 4231:2890-36Was Bist Du Doch, O Seele, So Betrübt BWV 426 BWV 4240:5690-37Was Willst Du Dich, O Meine Seele, Kränken BWV 4251:4790-38Weltlich Ehr' Und Zeitlich Gut BWV 4261:1090-39Wenn Ich In Angst Und Noth BWV 4271:0490-40Wenn Mein Stündlein Vorhanden Ist BWV 4281:0390-41Mein' Sünd' Mich Werden Kränken Sehr BWV 4291:0890-42Ich Bin Ein Glied An Deinem Leib BWV 4301:0590-43Wenn Wir In Höchsten Nöthen Sein BWV 4310:5490-44So Ist Das Unser Trost Allein BWV 4320:5890-45Wer Gott Vertraut, Hat Wohl Gebaut BWV 4331:4690-46Wer Nur Den Lieben Gott Lässt Walten BWV 4341:0490-47Wie Bist Du, Seele, In Mir So Gar Betrübt BWV 4351:0290-48Wie Schön Leuchtet Der Morgenstern BWV 4361:3390-49Wir Glauben All An Einen Gott BWV 4372:1490-50Wo Gott Zum Haus Nicht Gibt Sein' Gunst BWV 4380:41Sacred Songs (Schemelli) BWV 439, 440, 443, 445, 447, 449, 451-454, 462 465, 466, 468-472, 475, 478-480, 483, 484, 487, 492, 494, 498, 500, 502, 505 & 507Sacred Songs (Geistliche Lieder ∙ Chants Sacrés) From G. C. Schemelli, Musicalisches Gesangbuch (Leipzig, 1736)62:69836665Ton KoopmanConductor983595Georg Christian SchemelliG. C. SchemelliText By91-1Vergiß Mein Nicht BWV 5051:5991-2Beschränkt, Ihr Weisen Dieser Welt BWV 4433:3791-3O Finstre Nacht, Wenn Wirst Du Doch Vergehen BWV 4922:0191-4Eins Ist Not! Ach Herr, Dies Eine BWV 4531:2191-5Ich Steh An Deiner Krippen Hier BWV 4692:0691-6Ich Freue Mich In Dir BWV 4651:3891-7Ermuntre Dich, Mein Schwacher Geist BWV 4541:4291-8Brunnquell Aller Güter BWV 4451:5691-9Liebster Gott, Wann Werd Ich Sterben BWV 4831:3691-10Ich Halte Treulich Still BWV 4662:0291-11Jesu, Jesu, Du Bist Mein BWV 4702:2791-12Komm, Süßer Tod BWV 4783:0591-13Gott, Wie Groß Ist Deine Güte BWV 4622:5191-14Ach, Daß Nicht Die Letzte Stunde BWV 4391:3691-15So Gehst Du Nun, Mein Jesu, Hin BWV 5001:5491-16Kommt, Seelen, Dieser Tag BWV 4791:3691-17Mein Jesu! Was Vor Seelenweh BWV 4872:4291-18Kommt Wieder Aus Der Finstern Gruft BWV 4801:2191-19Selig! Wer An Jesum Denkt BWV 4981:3791-20Die Güldne Sonne BWV 4512:1691-21Liebster Jesu, Wo Bleibst Du So Lange BWV 4842:0091-22Auf, Auf! Die Rechte Zeit Ist Hier BWV 4401:4091-23Jesu, Meines Glaubens Zier BWV 4721:3591-24Ich Liebe Jesum Alle Stund BWV 4681:5891-25Dir, Dir, Jehova, Will Ich Singen BWV 4521:5691-26Der Tag Ist Hin, Die Sonne Gehet Nieder BWV 4471:5291-27O Liebe Seele, Zieh Die Sinnen BWV 4941:4491-28So Wünsch Ich Mir Zu Guter Letzt BWV 5022:0491-29Dich Bet' Ich An, Mein Höchster Gott BWV 4491:3391-30Wo Ist Mein Schäflein, Das Ich Liebe BWV 5071:5791-31Jesu, Deine Liebeswunden BWV 4711:1391-32Jesus, Unser Trost Und Leben BWV 4751:36Chorales, Quodlibet, Etc BWV 118, 250-252, 299, 500A, 510, 511, 513, 514, 516, 518, 524, 691, 1084, 1089 & 1122-1126Wedding Chorales (Hochzeitschoräle ∙ Chorals De Mariage)2:26836665Ton KoopmanConductor92-1Was Gott Tut Das Ist Wohlgetan BWV 2500:5092-2Sei Lob Und Ehr' Dem Hòchsten Gott BWV 2510:4792-3Nun Danket Alle Gott BWV 2520:49Chorales (Choräle ∙ Chorals)8:30973471Robin GrittonConductor92-4So Gehst Du Nun, Mein Jesu, Hin BWV 500a1:4292-5O Hilf, Christe, Gottes Sohn BWV 10841:1892-6Da Jesus An Dem Kreuze Stund BWV 10890:5892-7Denket Doch, Ihr Menschenkinder BWV 11221:0292-8Wo Gott Zum Haus Nicht Gibt Sein Gunst BWV 11230:3292-9Ich Ruf Zu Dir, Herr Jesu Christ BWV 11241:2892-10O Gott, Du Frommer Gott BWV 11251:0392-11Lobet Gott, Unseren Herren BWV 11260:59Motet (Motette ∙ Motet)3:441001316Jürgen JürgensConductor92-12O Jesu Christ, Mein's Lebens Licht BWV 1183:4492-13Quodlibet BWV 5249:36963656Leonhardt-ConsortOrchestraNotenbüchlein Für Anna Magdalena Bach (1725) (Excerpts ∙ Auszüge ∙ Extraits)15:08888264Stephen StubbsConductor92-14Gib Dich Zufrieden Und Sei Stille (Chorale No. 12 BWV 510)1:1692-15Gib Dich Zufrieden Und Sei Stille (Aria No. 13 A BWV 511)1:1592-16O Ewigkeit, Du Donnerwort (Chorale No. 42 BWV 513)1:2492-17Anon.: Schaff's Mit Mir, Gott (Chorale No. 35 BWV 514 [? J. S. Bach])1:0692-18Anon.: Warum Betrübst Du Dich (Chorale No. 33 BWV 516 [? J. S. Bach])1:1192-19Anon.: Willst Du Dein Herz Mir Schenken ("Aria Di Giovannini" No. 37 BWV 518)5:3092-20Wer Nun Den Lieben Gott Läßt Walten (Chorale No. 11 BWV 691)2:2992-21Dir. Dir, Jehova (Chorale No. 39 BWV 299)0:58Organ WorksFantasias, Preludes & Fugues BWV 531, 542-544, 562, 570, 572, 578, 582 & 58893-1Fantasia Et Fuga In G BWV 542 (In G Minor ∙ G-Moll ∙ Sol Mineur)11:05836665Ton KoopmanOrgan93-2Fuga In G BWV 578 (In G Minor ∙ G-Moll ∙ Sol Mineur)3:41836665Ton KoopmanOrgan93-3Canzona In D BWV 588 (In D Minor ∙ D-Moll ∙ Ré Mineur)5:08836665Ton KoopmanOrgan93-4Praeludium Et Fuga In H BWV 544 (In B Minor ∙ H-Moll ∙ Si Mineur)11:14836665Ton KoopmanOrgan93-5Praeludium Et Fuga In A BWV 543 (In A Minor ∙ A-Moll ∙ La Mineur)8:43836665Ton KoopmanOrgan93-6Fantasia In C BWV 562 (In C Minor ∙ C-Moll ∙ Ut Mineur)4:21836665Ton KoopmanOrgan93-7Praeludium Et Fuga In C BWV 531 (In C Major ∙ C-Dur ∙ Ut Majeur)5:59836665Ton KoopmanOrgan93-8Pièce D'Orgue [Fantasia] In G BWV 572 (In G Major ∙ G-Dur ∙ Sol Majeur)8:10836665Ton KoopmanOrgan93-9Fantasia In C BWV 570 (In C Major ∙ C-Dur ∙ Ut Majeur)2:21836665Ton KoopmanOrgan93-10Passacaglia In C, BWV 582 (In C Minor ∙ C-Moll ∙ Ut Mineur)12:27836665Ton KoopmanOrganSchübler Chorales, BWV 645-650 Leipzig Chorales, BWV 651-655 & 6686 Schübler Chorales (»Sechs Choräle Von Verschiedener Art...«)28:25836665Ton KoopmanConductor94-1Chorale: »Wachet Auf, Ruft Uns Die Stimme« BWV 140 / 71:2994-2Organ: Wachet Auf, Ruft Uns Die Stimme BWV 6453:3694-3Chorale: »Gloria Sei Dir Gesungen« BWV 140 / 71:2994-4Chorale: »Wo Soll Ich Fliehen Hin« BWV 5 / 70:4294-5Organ: Wo Soll Ich Fliehen Hin BWV 6461:2994-6Chorale: »Führ Auch Mein Herz Und Sinn« BWV 5 / 70:4894-7Chorale: »Wer Nur Den Lieben Gott Läßt Walten« BWV 93 / 70:5394-8Organ: Wer Nur Den Lieben Gott Läßt Walten BWV 6474:4494-9Chorale: »Sing, Bet Und Geh Auf Gottes Wegen« BWV 93 / 70:5494-10Chorale: »Meine Seele Erhebet Den Herren« BWV 3240:4594-11Organ: Meine Seele Erhebet Den Herren BWV 6483:1394-12Chorale: »Lob Und Preis Sei Gott, Dem Vater« BWV 3240:5094-13Chorale: »Ach Bleib Bei Uns, Herr Jesu Christ« BWV 2530:4694-14Organ: Ach Bleib Bei Uns, Herr Jesu Christ BWV 6492:1394-15Chorale: »In Dieser Letzt'n Betrübten Zeit« BWV 2530:4594-16Organ: Kommst Du Nun, Jesu, Vom Himmel Herunter BWV 6503:0394-17Chorale: »Kommst Du Nun, Jesu, Vom Himmel Herunter« BWV 57 / 81:0018 Leipzig Chorales (»Achtzehn Choräle Von Verschiedener Art«)43:59836665Ton KoopmanConductor94-18Organ: Vor Deinen Thron Tret Ich BWV 6685:0594-19Chorale: »Wenn Wir In Höchsten Nöthen Sein« BWV 4310:5694-20Organ: Fantasia Super: Komm, Heiliger Geist, Herre Gott BWV 6516:0494-21Chorale: »Komm, Heiliger Geist, Herre Gott« BWV 59 / 31:3994-22Organ: Komm, Heiliger Geist, Herre Gott BWV 6527:5594-23Chorale: »Du Heilige Brunst, Süßer Trost« BWV 226 / 21:4194-24Organ: An Wasserflüssen Babylon BWV 6535:3094-25Chorale: »An Wasserflüssen Babylon« BWV 2671:5394-26Organ: Schmücke Dich, O Liebe Seele BWV 6548:1694-27Chorale: »Schmücke Dich, O Liebe Seele« BWV 180 / 71:1094-28Organ: Trio Super: Herr Jesu Christ, Dich Zu Uns Wend BWV 6553:2694-29Chorale: »Herr Jesu Christ, Dich Zu Uns Wend« BWV 3320:42Leipzig Chorales, BWV 655-66718 Leipzig Chorales (»Achtzehn Choräle Von Verschiedener Art«) (II)69:00836665Ton KoopmanConductor95-1Organ: O Lamm Gottes Unschuldig BWV 6569:3495-2Chorale: »O Lamm Gottes Unschuldig« BWV 4011:0495-3Organ: Nun Danket Alle Gott BWV 6574:5895-4Chorale: »Nun Danket Alle Gott« BWV 3861:1695-5Organ: Von Gott Will Ich Nicht Lassen BWV 6583:3495-6Chorale: »Von Gott Will Ich Nicht Lassen« BWV 4181:0495-7Organ: Nun Komm, Der Heiden Heiland BWV 6594:3195-8Chorale: »Nun Komm, Der Heiden Heiland« BWV 36 / 80:3895-9Organ: Trio Super: Nun Komm, Der Heiden Heiland BWV 6603:3095-10Chorale: »Die Kripp Glänzt Hell Und Klar« BWV 36 / 80:3995-11Organ: Nun Komm, Der Heiden Heiland BWV 6612:4195-12Chorale: »Lob Sei Gott, Dem Vater G'than« BWV 62 / 60:3795-13Organ: Allein Gott In Der Höh Sei Ehr BWV 6626:2495-14Chorale: »Allein Gott In Der Höh Sei Ehr« BWV 2601:0595-15Organ: Allein Gott In Der Höh Sei Ehr BWV 6636:4795-16Chorale: »O Jesu Christ, Sohn Eingeborn« BWV 2601:1495-17Organ: Trio Super: Allein Gott In Der Höh Sei Ehr BWV 6645:0095-18Chorale: »O Heil'ger Geist, Du Höchstes Gut« BWV 2601:0695-19Organ: Jesu Christus, Unser Heiland BWV 6654:3595-20Chorale: »Jesu Christus, Unser Heiland« BWV 3631:1195-21Organ: Jesu Christus, Unser Heiland BWV 6663:0095-22Chorale: »Wer Sich Will Zu Dem Tisch Machen« BWV 3630:5895-23Organ: Komm, Gott Schöpfer, Heiliger Geist BWV 6672:1995-24Chorale: »Komm, Gott Schöpfer, Heiliger Geist« BWV 3701:02Sonatas, BWV 525-530Sonata BWV 525 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)12:22836665Ton KoopmanOrgan96-1[Without Tempo Marking]2:5096-2Adagio5:3896-3Allegro3:54Sonata BWV 526 (In C Minor ∙ C-Moll ∙ Ut Mineur)10:47836665Ton KoopmanOrgan96-4Vivace3:3496-5Largo3:1396-6Allegro4:00Sonata BWV 527 (In D Minor ∙ D-Moll ∙ Ré Mineur)13:38836665Ton KoopmanOrgan96-7Andante5:2896-8Adagio E Dolce4:0496-9Vivace4:12Sonata BWV 528 (In E Minor ∙ E-Moll ∙ Mi Mineur)9:37836665Ton KoopmanOrgan96-10Adagio-Vivace2:3696-11Andante4:3896-12Un Poco Allegro2:29Sonata BWV 529 (In C Major ∙ C-Dur ∙ Ut Majeur)14:21836665Ton KoopmanOrgan96-13Allegro4:5896-14Largo5:4596-15Allegro3:38Sonata BWV 530 (In G Major ∙ G-Dur ∙ Sol Majeur)13:53836665Ton KoopmanOrgan96-16Vivace3:4696-17Lento6:4596-18Allegro3:22Toccatas, Preludes & Fugues, BWV 532, 538, 540 & 564-566Toccata Et Fuga In F BWV 540 (In F Major ∙ F-Dur ∙ Fa Majeur)13:08836665Ton KoopmanOrgan97-1Toccata8:2197-2Fuga4:5397-3Toccata Con Fuga In D BWV 565 (In D Minor ∙ D-Moll ∙ Ré Mineur)8:14836665Ton KoopmanOrganToccata In C BWV 564 (In C Major ∙ C-Dur ∙ Ut Majeur)14:01836665Ton KoopmanOrgan97-4Toccata5:2297-5Adagio4:1397-6Fuga4:32Toccata Et Fuga In D ("Dorian") BWV 538 (In D Minor ∙ D-Moll ∙ Ré Mineur)12:34836665Ton KoopmanOrgan97-7Toccata5:1797-8Fuga7:23Praeludium Et Fuga In E BWV 566 (In E Major ∙ E-Dur ∙ Mi Majeur)10:10836665Ton KoopmanOrgan97-9Praeludium2:4697-10Fuga7:31Praeludium Et Fuga In D BWV 532 (In D Major ∙ D-Dur ∙ Ré Majeur)11:31836665Ton KoopmanOrgan97-11Praeludium5:1097-12Fuga6:21Clavier-Übung III BBWV 552,1 & 669-68398-1Praeludium Pro Organo Pleno, BWV 552,1 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)9:25836665Ton KoopmanOrganChorale Arrangements64:43836665Ton KoopmanOrgan98-2Kyrie, Gott Vater In Ewigkeit BWV 669 (Canto Fermo In Soprano À 2 Clav. Et Ped.)4:3198-3Christe, Aller Welt Trost BWV 670 (Canto Fermo In Tenore A 2 Clav. Et Pedal)6:0498-4Kyrie, Gott Heiliger Geist BWV 671 (A 5 ∙ Canto Fermo In Basso ∙ Cum Organo Pleno)5:5498-5Kyrie, Gott Vater In Ewigkeit BWV 672 (Alio Modo ∙ Manualiter)1:1498-6Christe, Aller Welt Trost BWV 6731:0998-7Kyrie, Gott Heiliger Geist BWV 6741:2298-8Allein Gott In Der Höh Sei Ehr BWV 675 (A 3 ∙ Canto Fermo In Alto)3:4198-9Allein Gott In Der Höh Sei Ehr BWV 676 (À 2 Clav. Et Pedal)5:2098-10Fughetta Super: Allein Gott In Der Höh Sei Ehr BWV 677(Manualiter)1:1598-11Dies Sind Die Heilgen Zehen Gebot BWV 678 (À 2 Clav. Et Ped ∙ Canto Fermo In Canone)6:1798-12Fughetta Super: Dies Sind Die Heilgen Zehen Gebot BWV 679 (Manualiter)1:5598-13Wir Glauben All An Einen Gott BWV 680 (In Organo Pleno Con Pedale)3:1398-14Fughetta Super: Wir Glauben All An Einen Gott BWV 681(Manualiter)1:4298-15Vater Unser Im Himmelreich BWV 682 (À 2 Clav. Et Pedal E Canto Fermo In Canone)9:2498-16Vater Unser Im Himmelreich BWV 683 (Alio Modo ∙ Manualiter)1:42Clavier-Übung III BWV 552,2, 684-689, 769A & 802-805Chorale Arrangements26:35836665Ton KoopmanOrgan99-1Christ, Unser Herr, Zum Jordan Kam BWV 684 (À 2 Clav. Fermo In Pedale)4:3599-2Christ, Unser Herr, Zum Jordan Kam BWV 685 (Alio Modo ∙ Manualiter)1:2999-3Aus Tiefer Not Schrei Ich Zu Dir BWV 686 (A 6 ∙ In Organo Pleno Con Pedale Doppio)5:4099-4Aus Tiefer Not Schrei Ich Zu Dir BWV 687 (A 4 ∙ Alio Modo ∙ Manualiter)6:2899-5Jesus Christus, Unser Heiland, Der Von Uns Den Zorn Gottes Wandt BWV 688 (À 2 Clav. Fermo In Pedale)3:3599-6Fuga Super: Jesus Christus, Unser Heiland BWV 689 (A 4 ∙ Manualiter)4:48Four Duets12:18836665Ton KoopmanOrgan99-7Duetto I BWV 8023:0099-8Duetto II BWV 8033:3599-9Duetto III BWV 8042:4199-10Duetto IV BWV 8053:0299-11Fuga A 5 Con Pedale Pro Organo Pleno BWV 552,2 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)6:29836665Ton KoopmanOrganCanonic Variations On "Vom Himmel Hoch, Da Komm Ich Her" BWV 769A (Einige Canonische Veraenderungen Über Das Weihnachtslied: Vom Himmel Hoch, Da Komm Ich Her)15:11836665Ton KoopmanOrgan99-12Canone All'Ottava (Cantus Firmus Im Pedal)1:4599-13Canone Alla Quinta (Il Canto Fermo Nel Pedale)1:4399-14Canto Fermo In Canone Alla Sesta E Al Rovescio, Alla Terza (Alla Seconda, Alla Nona)3:5099-15Canone Alla Settima (Cantus Firmus Im Sopran ∙ Cantabile)3:1999-16Canon Per Augmentationem À 2 Claviers Et Pédale (Cantus Firmus Im Pedal)4:34Preludes & Fugues BWV 533, 535, 537, 546, 549, 550, 568, 569, 575 Allabreve, BWV 589Praeludium Et Fuga In C BWV 546 (In C Minor ∙ C-Moll ∙ Ut Mineur)12:56836665Ton KoopmanOrgan100-1Praeludium6:40100-2Fuga6:15100-3Fuga In C BWV 575 (In C Minor ∙ C-Moll ∙ Ut Mineur)4:21836665Ton KoopmanOrganPraeludium Et Fuga In C BWV 549 (In C Minor ∙ C-Moll ∙ Ut Mineur)5:38836665Ton KoopmanOrgan100-4Praeludium2:00100-5Fuga3:38100-6Praeludium In G BWV 568 (In G Major ∙ G-Dur ∙ Sol Majeur)3:10836665Ton KoopmanOrgan100-7Allabreve In D BWV 589 (In D Major ∙ D-Dur ∙ Ré Majeur)4:36836665Ton KoopmanOrganPraeludium Et Fuga In G BWV 535 (In G Minor ∙ G-Moll ∙ Sol Mineur)6:36836665Ton KoopmanOrgan100-8Praeludium2:35100-9Fuga4:01Praeludium Et Fuga In G BWV 550 (In G Major ∙ G-Dur ∙ Sol Majeur)6:14836665Ton KoopmanOrgan100-10Praeludium2:24100-11Fuga3:50Praeludium Et Fuga In E BWV 533 (In E Minor ∙ E-Moll ∙ Mi Mineur)4:38836665Ton KoopmanOrgan100-12Praeludium2:18100-13Fuga2:20100-14Praeludium In A BWV 569 (In A Minor ∙ A-Moll ∙ La Mineur)6:06836665Ton KoopmanOrganFantasia Et Fuga In C BWV 537 (In C Minor ∙ C-Moll ∙ Ut Mineur)7:54836665Ton KoopmanOrgan100-14Fantasia4:08100-16Fuga3:46Preludes & Fugues BWV 534, 539, 541, 545, 547, 577, 583, 590 & 598Praeludium Et Fuga In C BWV 545 (In C Major ∙ C-Dur ∙ Ut Majeur)10:54836665Ton KoopmanOrgan101-1Praeludium1:59101-2Largo5:24101-3Fuga3:31101-4Fuga In G BWV 577 (In G Major ∙ G-Dur ∙ Sol Majeur)3:51836665Ton KoopmanOrgan101-5Trio A 2 Clav. E Pedale BWV 583 (In D Minor ∙ D-Moll ∙ Ré Mineur)5:42836665Ton KoopmanOrgan101-6Pedal-Exercitium BWV 598 (In G Minor ∙ G-Moll ∙ Sol Mineur) (Fragment; The End Is Improvised By Ton Koopman)2:33836665Ton KoopmanOrganPraeludium Et Fuga In G BWV 541 (In G Major ∙ G-Dur ∙ Sol Majeur)6:46836665Ton KoopmanOrgan101-7Praeludium2:46101-8Fuga4:00Praeludium Et Fuga In D BWV 539 (In D Minor ∙ D-Moll ∙ Ré Mineur)6:29836665Ton KoopmanOrgan101-9Praeludium1:51101-10Fuga4:38Praeludium Et Fuga In F BWV 534 (In F Minor ∙ F-Moll ∙ Fa Mineur)7:58836665Ton KoopmanOrgan101-11Praeludium3:29101-12Fuga4:29Pastorella (Pastorale) BWV 590 (In F Major ∙ F-Dur ∙ Fa Majeur)12:25836665Ton KoopmanOrgan101-13I2:21101-14II3:16101-15III2:21101-16IV4:27Praeludium Et Fuga In C BWV 547 (In C Major ∙ C-Dur ∙ Ut Majeur)8:40836665Ton KoopmanOrgan101-17Praeludium3:55101-18Fuga4:45Orgel-Büchlein BWV 599-644 (Little Organ Book ∙ Petit Livre D'Orgue)102-1Nun Komm, Der Heiden Heiland BWV 5991:06836665Ton KoopmanOrgan102-2Gott, Durch Deine Güte / Gottes Sohn Ist Kommen BWV 6001:09836665Ton KoopmanOrgan102-3Herr Christ, Der Ein'ge Gottessohn / Herr Gott, Nun Sei Gepreiset BWV 6011:26836665Ton KoopmanOrgan102-4Lob Sei Dem Allmächtigen Gott BWV 6020:48836665Ton KoopmanOrgan102-5Puer Natus In Bethlehem BWV 6030:52836665Ton KoopmanOrgan102-6Gelobet Seist Du, Jesu Christ BWV 604 (À 2 Clav. Et Ped.)0:58836665Ton KoopmanOrgan102-7Der Tag, Der Ist So Freudenreich BWV 605 (À 2 Clav. Et Ped.)1:54836665Ton KoopmanOrgan102-8Vom Himmel Hoch, Da Komm Ich Her BWV 6060:42836665Ton KoopmanOrgan102-9Vom Himmel Kam Der Engel Schar BWV 6071:44836665Ton KoopmanOrgan102-10In Dulci Jubilo BWV 6081:27836665Ton KoopmanOrgan102-11Lob Gott, Ihr Christen, Allzugleich BWV 6090:45836665Ton KoopmanOrgan102-12Jesu, Meine Freude BWV 610 (Largo)2:02836665Ton KoopmanOrgan102-13Christum Wir Sollen Loben Schon BWV 611 (Choral In Alto ∙ Adagio)1:34836665Ton KoopmanOrgan102-14Wir Christenleut BWV 6121:16836665Ton KoopmanOrgan102-15Helft Mit Gotts Güte Preisen BWV 6131:12836665Ton KoopmanOrgan102-16Das Alte Jahr Vegangen Ist BWV 614 (À 2 Clav. Et Ped.)1:57836665Ton KoopmanOrgan102-17In Dir Ist Freude BWV 6152:47836665Ton KoopmanOrgan102-18Mit Fried Und Freud Ich Fahr Dahin BWV 6161:42836665Ton KoopmanOrgan102-19Herr Gott, Nun Schleuß Den Himmel Auf BWV 6171:46836665Ton KoopmanOrgan102-20O Lamm Gottes, Unschuldig BWV 618 (Canon Alla Quinta ∙ Adagio)2:55836665Ton KoopmanOrgan102-21Christe, Du Lamm Gottes BWV 619 (In Canone Alla Duodecima À 2 Clav. Et Ped.)0:40836665Ton KoopmanOrgan102-22Christus, Der Uns Selig Macht BWV 620 (In Canone All'Ottava)2:02836665Ton KoopmanOrgan102-23Da Jesus An Dem Kreuze Stund BWV 6211:04836665Ton KoopmanOrgan102-24O Mensch, Bewein Dein Sünde Groß BWV 622 (À 2 Clav. Et Ped. ∙ Adagio Assai)4:42836665Ton KoopmanOrgan102-25Wir Danken Dir, Herr Jesu Christ, Daß Du Für Uns Gestorben Bist BWV 6231:03836665Ton KoopmanOrgan102-26Hilf, Gott, Daß Mir's Gelinge BWV 624 (À 2 Clav. Et Ped.)1:22836665Ton KoopmanOrgan102-27Christ Lag In Todesbanden BWV 6251:16836665Ton KoopmanOrgan102-28Jesus Christus, Unser Heiland, Der Den Tod Überwand BWV 6260:50836665Ton KoopmanOrganChrist Ist Erstanden BWV 6274:19836665Ton KoopmanOrgan102-29Vers 11:21102-30Vers 21:20102-31Vers 31:38102-32Erstanden Ist Der Heilge Christ BWV 6280:51836665Ton KoopmanOrgan102-33Erschienen Ist Der Herrliche Tag BWV 629 (À 2 Clav. Et Ped. In Canone)1:01836665Ton KoopmanOrgan102-34Heut Triumphieret Gottes Sohn BWV 6301:18836665Ton KoopmanOrgan102-35Komm, Gott Schöpfer, Heiliger Geist BWV 631a0:48836665Ton KoopmanOrgan102-36Herr Jesu Christ, Dich Zu Uns Wend BWV 6321:16836665Ton KoopmanOrgan102-37Liebster Jesu, Wir Sind Hier BWV 633 (Distinctus)2:12836665Ton KoopmanOrgan102-38Dies Sind Die Heilgen Zehn Gebot BWV 6351:17836665Ton KoopmanOrgan102-39Vater Unser Im Himmelreich BWV 6361:17836665Ton KoopmanOrgan102-40Durch Adams Fall Ist Ganz Verderbt BWV 6371:16836665Ton KoopmanOrgan102-41Es Ist Das Heil Kommen Her BWV 6381:04836665Ton KoopmanOrgan102-42Ich Ruf Zu Dir, Herr Jesu Christ BWV 639 (À 2 Clav. Et Ped.)3:44836665Ton KoopmanOrgan102-43In Dich Hab Ich Gehoffet, Herr BWV 6400:54836665Ton KoopmanOrgan102-44Wenn Wir In Höchsten Nöten Sein BWV 641 (À 2 Clav. Et Ped.)1:54836665Ton KoopmanOrgan102-45Wer Nur Den Lieben Gott Läßt Walten BWV 6421:25836665Ton KoopmanOrgan102-46Alle Menschen Müssen Sterben BWV 6431:08836665Ton KoopmanOrgan102-47Ach Wie Nichtig, Ach Wie Flüchtig BWV 6440:50836665Ton KoopmanOrganChorale Partitas BWV 690, 691, 705-707, 728, 729, 763, 766-768, 770 & BWV Anh. II 74Partita Diverse Sopra Il Corale »Sei Gegrüßet, Jesu Gütig« BWV 76819:00836665Ton KoopmanOrgan103-1Corale1:20103-2Variatio I2:28103-3Variatio II1:04103-4Variatio III0:37103-5Variatio IV0:57103-6Variatio V1:07103-7Variatio VI0:59103-8Variatio VII (À 2 Clav. Et Ped.)2:05103-9Variatio VIII1:10103-10Variatio IX (À 2 Clav. Et Ped.)1:05103-11Variatio X (À 2 Clav. Et Ped.)4:54103-12Variatio XI (À 5 Voci, In Organo Pleno)1:14Partita Diverse Sopra Il Corale »Ach, Was Soll Ich Sünder Machen« BWV 77010:47836665Ton KoopmanOrgan103-13Partita I0:47103-14Partita II0:35103-15Partita III0:45103-16Partita IV0:40103-17Partita V0:46103-18Partita VI0:39103-19Partita VII0:35103-20Partita VIII0:50103-21Partita IX (Adagio)2:10103-22Partita X (Allegro)3:29103-23In Dulci Jubilo BWV 7292:11836665Ton KoopmanOrgan103-24Ich Hab Mein Sach Gott Heimgestellt BWV 707 (Kirnberger Chorales)3:56836665Ton KoopmanOrgan103-25Ich Hab Mein Sach Gott Heimgestellt BWV 708 (Kirnberger)1:00836665Ton KoopmanOrgan103-26Wie Schön Leuchtet Der Morgenstern BWV 7631:23836665Ton KoopmanOrgan103-27Schmücke Dich, O Liebe Seele BWV Anh. II 741:18836665Ton KoopmanOrganPartita Diverse Sopra Il Corale »Christ, Der Du Bist Der Helle Tag« BWV 7668:20836665Ton KoopmanOrgan103-28Partita I0:44103-29Partita II (Largo)2:02103-30Partita III1:07103-31Partita IV0:50103-32Partita V1:14103-33Partita VI0:49103-34Partita VIII (Con Pedale Se Piace)1:34103-35Liebster Jesu, Wir Sind Hier BWV 706 (Kirnberger)1:48836665Ton KoopmanOrgan103-36Jesus, Meine Zuversicht BWV 7281:27836665Ton KoopmanOrgan103-37Wer Nur Den Lieben Gott Läßt Walten BWV 691 (Kirnberger)2:12836665Ton KoopmanOrgan103-38Wer Nur Den Lieben Gott Läßt Walten BWV 690 (Kirnberger)2:00836665Ton KoopmanOrgan103-39Durch Adams Fall Ist Ganz Verderbt BWV 705 (Kirnberger)2:34836665Ton KoopmanOrganPartita Diverse Sopra Il Corale »O Gott, Du Frommer Gott« BWV 76715:30836665Ton KoopmanOrgan103-40Partita I1:04103-41Partita II2:55103-42Partita III1:11103-43Partita IV0:44103-44Partita V1:34103-45Partita VI1:05103-46Partita VII1:16103-47Partita VIII1:52103-48Partita IX3:32Kirnberger Chorales BWV 695A, 696, 698 & 711 Chorale Arrangements BWV 717, 718, 721, 725, 726, 730-733, 735, 738-741, 754 & 1085Kirnberger Chorales (BWV 711, 696, 695a, 698) And Other Chorale Arrangements77:21836665Ton KoopmanOrgan104-1Allein Gott In Der Höh Sei Ehr BWV 711 (Bicinium)3:16104-2Allein Gott In Der Höh Sei Ehr BWV 717 (Manualiter)2:49104-3Liebster Jesu, Wir Sind Hier BWV 7301:38104-4Liebster Jesu, Wir Sind Hier BWV 731 (À 2 Claviers Et Pédale)1:52104-5Wir Glauben All An Einen Gott, Vater BWV 7405:11104-6Fughetta Super: Christum Wir Sollen Loben Schon / Was Fürchstst Du Feind, Herodes, Sehr BWV 696 (Manualiter)1:09104-7O Lamm Gottes, Unschuldig BWV 10851:57104-8Ach Gott, Vom Himmel Sieh Darein BWV 741 (In Organo Pleno)5:20104-9Wie Schön Leuchtet Der Morgenstern BWV 7394:31104-10Lobt Gott, Ihr Christen, Allzugleich BWV 7321:18104-11Christ Lag In Todes Banden BWV 695a3:56104-12Christ Lag In Todes Banden BWV 718 (À 2 Claviers Et Pédale)5:00104-13Fughetta Super: Herr Christ, Der Einig Gottes Sohn BWV 698 (Manualiter)1:15104-14Herr Gott, Dich Loben Wir BWV 725 (Per Omnes Versus A 5 Voci)10:30104-15Herr Jesu Christ, Dich Zu Uns Wend BWV 7261:02104-16Valet Will Ich Dir Geben BWV 736 (Choralis In Pedale)4:06104-17Fantasia Super: Valet Will Ich Dir Geben BWV 735 (Cum Pedale Obligato)3:57104-18Erbarm Dich Mein, O Herre Gott BWV 721 (Manualiter)5:18104-19Vom Himmel Hoch, Da Komm Ich Her BWV 7381:13104-20O Vater, Allmächtiger Gott BWV 758 (Alla Breve ∙ Vers 1 ∙ Vers 2 ∙ Vers 3)4:14104-21Liebster Jesu, Wir Sind Hier BWV 7543:25104-22Meine Seele Erhebt Den Herrn BWV 733 (Fuge Über Das Magnificat ∙ Manualiter)4:21Neumeister Chorales, BWV 1090-1120, Chorale Arrangements BWV 714, 719, 737, 742 & 95730 Chorale Arrangements From The Neumeister Collection BWV 1090-1120 (Yale University, New Haven: Rinck Collection Lm 4708) And Other Chorale Arrangements74:17836665Ton KoopmanOrgan105-1Vater Unser Im Himmelreich BWV 737 (Manualiter)3:10105-2Der Tag, Der Ist So Freudenreich BWV 7191:43105-3Wir Christen Leut BWV 10901:47105-4Das Alte Jahr Vergangen Ist BWV 10912:01105-5Herr Gott, Nun Schleuß Den Himmel Auf BWV 10922:22105-6Herzliebster Jesu, Was Hast Du Verbrochen BWV 10931:57105-7O Jesu, Wie Ist Dein Gestalt BWV 10942:34105-8O Lamm Gottes Unschuldig BWV 10951:34105-9Christe, Der Du Bist Tag Und Licht / Wir Danken Dir, Herr Jesu Christ BWV 10962:30105-10Ehre Sei Dir, Christe, Der Du Leidest Not BWV 10971:41105-11Wir Glauben All An Einen Gott BWV 10982:56105-12Aus Tiefer Not Schrei Ich Zu Dir BWV 10991:57105-13Allein Zu Dir, Herr Jesu Christ BWV 11002:17105-14Ach Gott Und Herr BWV 714 (Per Canonem)2:22105-15Ach Herrr, Mich Armen Sünder BWV 742 (Poco Adagio)2:06105-16Durch Adams Fall Ist's Ganz Verderbt BWV 11013:04105-17Du Friedefürst, Herr Jesu Christ BWV 11022:42105-18Erhalt Uns, Herr, Bei Deinem Wort BWV 11031:23105-19Wenn Dich Unglück Tut Greifen An BWV 11041:34105-20Jesu, Meine Freude BWV 11051:37105-21Gott Ist Mein Heil, Mein Hilf Und Trost BWV 11061:41105-22Jesu, Meines Lebens Leben BWV 11071:27105-23Als Jesus Christus In Der Nacht BWV 11082:13105-24Ach Gott, Tu Dich Erbarmen BWV 11092:01105-25O Herre Gott, Dein Göttlich Wort BWV 11101:56105-26Nun Lasset Uns Den Leib Begraben BWV 11112:18105-27Christus, Der Ist Mein Leben BWV 11121:12105-28Ich Hab Mein Sach Gott Heimgestellt BWV 11132:05105-29Herr Jesu Christ, Du Höchstes Gut BWV 11143:14105-30Herzlich Lieb Hab Ich Dich, O Herr BWV 11152:42105-31Was Gott Tut, Das Ist Wohlgetan BWV 11161:32105-32Alle Menschen Müssen Sterben BWV 11171:59105-33Mach's Mit Mir, Gott, Nach Deiner Güt (= Fuga In G) BWV 9571:58105-34Werde Munter, Mein Gemüte BWV 11181:45105-35Wie Nach Einer Wasserquelle BWV 11191:19105-36Christ, Der Du Bist Der Helle Tag BWV 11201:39Chorale Arrangements BWV 694, 697, 699-704, 709, 712, 713, 715, 716, 720, 722, 724, 727, 734, 743, 747, 749, 750, 755, 757, 762, 765, BWV Anh. II 49 / 58 / 50 & BWV DeestKirnberger Chorales (BWV 709, 697, 702, 713, 712, 700, 701, 704, 703, 694, 699) And Other Chorale Arrangements76:47836665Ton KoopmanOrgan106-1Herr Jesu Christ, Dich Zu Uns Wend BWV 709 (À 2 Claviers Et Pédale)2:36106-2Ein Feste Burg Ist Unser Gott BWV 720 (À 3 Claviers Et Pédale)3:39106-3Ein Feste Burg Ist Unser Gott BWV Anh. II 493:11106-4Jesu, Meine Freude BWV Anh. II 582:40106-5Erhalt Uns, Herr, Bei Deinem Wort BWV Anh. II 502:06106-6O Herre Gott, Dein Götttlichs Wort BWV 7571:39106-7Nun Freut Euch, Lieben Christen Gmein BWV 734 (Choralis In Tenore ∙ Manualiter)2:06106-8Nun Freut Euch, Lieben Christen BWV 7552:17106-9Fughetta Super: Gelobet Seist Du, Jesu Christ BWV 697 (Manualiter)1:01106-10Ach, Was Ist Doch Unser Leben BWV 7432:47106-11Christus, Der Uns Selig Macht BWV 7474:42106-12Wir Glauben All An Einen Gott, Schöpfer BWV 7652:37106-13Fughetta Super: Das Jesulein Soll Doch Mein Trost BWV 7021:31106-14Gott, Durch Deine Güte BWV 7241:18106-15Gelobet Seist Du, Jesu Christ BWV 7221:28106-16Ich Ruf Zu Dir, Herr Jesu Christ BWV Deest2:11106-17Herr Christ, Der Einig Gottes Sohn BWV Deest2:21106-18Komm, Heiliger Geist, Erfüll Die Herzen BWV Deest3:14106-19Auf Meinen Lieben Gott BWV Deest1:23106-20Fuga Super: Allein Gott In Der Höh Sei Ehr BWV 7162:41106-21Fantasia Super: Jesu, Meine Freude BWV 713 (Manualiter)4:20106-22Vater Unser Im Himmelreich BWV 7623:14106-23In Dich Hab Ich Gehoffet, Herr BWV 712 (Manualiter)1:57106-24Nun Ruhen Alle Wälder BWV 7561:07106-25Herr Jesu Christ, Meins Lebens Licht BWV 7501:15106-26Herr Jesu Christ, Dich Zu Uns Wend BWV 7491:18106-27Vom Himmel Hoch, Da Kommt Ich Her BWV 7002:35106-28Fughetta Super: Vom Himmel Hoch, Da Kommt Ich Her BWV 701 (Manualiter)1:40106-29Auf Meinen Lieben Gott BWV Deest1:19106-30Fughetta Super: Lob Sei Dem Allmächtigen Gott BWV 704 (Manualiter)0:53106-31Fughetta Super: Gottes Sohn Ist Kommen BWV 703 (Manualiter)0:53106-32Herzlich Tut Mich Verlangen BWV 727 (À 2 Claviers Et Pédale)2:16106-33Wo Soll Ich Fliehen Hin BWV 694 (À 2 Claviers Et Pédale)3:21106-34Allein Gott In Der Höh Sei Ehr BWV 7152:00106-35Fughetta Super: Nun Komm, Der Heiden Heiland BWV 699 (Manualiter)1:10Preludes & Fugues BWV 548, 553-561 & 571 Kleines Harmonisches Labyrith, BWV 591 Concerto, BWV 594Praeludium Et Fuga In E BWV 548 (In E Minor ∙ E-Moll ∙ Mi Mineur)13:33836665Ton KoopmanOrgan107-1Praeludium6:12107-2Fuga7:21Fantasia Et Fuga In A BWV 561 (In A Minor ∙ A-Moll ∙ La Mineur)8:05836665Ton KoopmanOrgan107-3Fantasia2:29107-4Fuga5:36Eight Short Preludes And Fugues BWV 553-560 (Acht Kleine Präludien Und Fugen ∙ Huit Petites Préludes Et Fugues)24:09836665Ton KoopmanOrgan107-5Praeludium Et Fuga In C BWV 553 (In C Major ∙ C-Dur ∙ Ut Majeur)3:22107-6Praeludium Et Fuga In D BWV 554 (In D Minor ∙ D-Moll ∙ Ré Mineur)2:49107-7Praeludium Et Fuga In E BWV 555 (In E Minor ∙ E-Moll ∙ Mi Mineur)3:57107-8Praeludium Et Fuga In F BWV 556 (In F Major ∙ F-Dur ∙ Fa Majeur)2:26107-9Praeludium Et Fuga In G BWV 557 (In G Major ∙ G-Dur ∙ Sol Majeur)2:34107-10Praeludium Et Fuga In G BWV 558 (In G Minor ∙ G-Moll ∙ Sol Mineur)2:58107-11Praeludium Et Fuga In A BWV 559 (In A Minor ∙ A-Moll ∙ La Mineur)2:41107-12Praeludium Et Fuga In BWV 560 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)3:22Fantasia In G BWV 571 (In G Major ∙ G-Dur ∙ Sol Majeur)7:08836665Ton KoopmanOrgan107-13[Allegro]3:13107-14Adagio1:50107-15Allegro2:05107-16Kleines Harmonisches Labyrinth BWV 591 (Introitus ∙ Centrum ∙ Exitus)4:38836665Ton KoopmanOrganConcerto In C BWV 594 (In C Major ∙ C-Dur ∙ Ut Majeur) (After Vivaldi's Concerto In D Major, RV 208, "Grosso Mogul")17:27836665Ton KoopmanOrgan107-17[Allegro]7:06107-18Recitativo: Adagio2:37107-19Allegro7:44Concertos, BWV 592, 593 & 595-597 Fantasias, Preludes & Fugues BWV 536, 551, 563, 574, 576, 579, 1121Concerto In G BWV 592 (In G Major ∙ G-Dur ∙ Sol Majeur) (After A Concerto In G By Duke Johann Ernst Of Saxe-Weimar)7:02836665Ton KoopmanOrgan108-1[Allegro]3:20108-2Grave1:51108-3Presto1:51108-4Fantasia Et Imitatio In H BWV 563 (In B Minor ∙ H-Moll ∙ Si Mineur)4:30836665Ton KoopmanOrganPraeludium Con Fuga In A BWV 551 (In A Minor ∙ A-Moll ∙ La Mineur)5:14836665Ton KoopmanOrgan108-5Praeludium1:57108-6Fuga3:17108-7Concerto In C BWV 595 (In C Major ∙ C-Dur ∙ Ut Majeur) (After The First Movement Of A Concerto By Duke Johann Ernst Of Saxe-Weimar)3:45836665Ton KoopmanOrgan108-8Fuga In C BWV 574 (In C Minor ∙ C-Moll ∙ Ut Mineur) (On A Theme By Giovanni Legrenzi)7:45836665Ton KoopmanOrgan108-9Fuga In G BWV 576 (In G Major ∙ G-Dur ∙ Sol Majeur)4:06836665Ton KoopmanOrganConcerto In D BWV 596 (In D Minor ∙ D-Moll ∙ Ré Mineur) (After Vivaldi's Concerto In D Minor Op. 3, No. 11 (RV 565))10:53836665Ton KoopmanOrgan108-10[Andante] - Grave1:30108-11Fuga3:19108-12Largo E Spiccato2:58108-13[Finale]3:06108-14Fuga In H BWV 579 (In B Minor ∙ H-Moll ∙ Si Mineur) (After A Theme By Arcangelo Corelli)5:58836665Ton KoopmanOrganPraeludium Et Fuga In A BWV 536 (In A Major ∙ A-Dur ∙ La Majeur)6:01836665Ton KoopmanOrgan108-15Praeludium1:30108-16Fuga4:31108-17Fantasia In C BWV 1121 (In C Minor ∙ C-Moll ∙ Ut Mineur)2:59836665Ton KoopmanOrganConcerto In Es BWV 597 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur) (After An Unknown Model)6:38836665Ton KoopmanOrgan108-18[Andante]3:36108-19Gigue3:02Concerto In A BWV 593 (In A Minor ∙ A-Moll ∙ La Mineur) (After Vivaldi's Concerto In A Minor Op. 3, No. 8 (RV 522))11:10836665Ton KoopmanOrgan108-20[Allegro Moderato]3:49108-21Adagio (Senza Pedale À Due Clav.)3:37108-22Allegro3:44Keyboard WorksInventions, BWV 772-786 Sinfonias, BWV 787-801Inventions (Two-Part Inventions) BWV 772-78621:52834518Zuzana RůžičkováHarpsichord109-1Inventio 1 BWV 772 (In C Major ∙ C-Dur ∙ Ut Majeur)1:09109-2Inventio 2 BWV 773 (In C Minor ∙ C-Moll ∙ Ut Mineur)2:02109-3Inventio 3 BWV 774 (In D Major ∙ D-Dur ∙ Ré Majeur)1:11109-4Inventio 4 BWV 775 (In D Minor ∙ D-Moll ∙ Ré Mineur)1:03109-5Inventio 5 BWV 776 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)1:46109-6Inventio 6 BWV 777 (In E Major ∙ E-Dur ∙ Mi Majeur)1:39109-7Inventio 7 BWV 778 (In E Minor ∙ E-Moll ∙ Mi Mineur)1:22109-8Inventio 8 BWV 779 (In F Major ∙ F-Dur ∙ Fa Majeur)0:55109-9Inventio 9 BWV 780 (In F Minor ∙ F-Moll ∙ Fa Mineur)2:38109-10Inventio 10 BWV 781 (In G Major ∙ G-Dur ∙ Sol Majeur)0:54109-11Inventio 11 BWV 782 (In G Minor ∙ G-Moll ∙ Sol Mineur)1:46109-12Inventio 12 BWV 783 (In A Major ∙ A-Dur ∙ La Majeur)1:23109-13Inventio 13 BWV 784 (In A Minor ∙ A-Moll ∙ La Mineur)1:17109-14Inventio 14 BWV 785 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)1:41109-15Inventio 15 BWV 786 (In B Minor ∙ H-Moll ∙ Si Mineur)1:06Sinfonias (Three-Part Inventions) BWV 787-80133:23834518Zuzana RůžičkováHarpsichord109-16Sinfonia 1 BWV 787 (In C Major ∙ C-Dur ∙ Ut Majeur)1:22109-17Sinfonia 2 BWV 788 (In C Minor ∙ C-Moll ∙ Ut Mineur)2:32109-18Sinfonia 3 BWV 789 (In D Major ∙ D-Dur ∙ Ré Majeur)1:23109-19Sinfonia 4 BWV 790 (In D Minor ∙ D-Moll ∙ Ré Mineur)3:02109-20Sinfonia 5 BWV 791 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)3:22109-21Sinfonia 6 BWV 792 (In E Major ∙ E-Dur ∙ Mi Majeur)2:03109-22Sinfonia 7 BWV 793 (In E Minor ∙ E-Moll ∙ Mi Mineur)3:12109-23Sinfonia 8 BWV 794 (In F Major ∙ F-Dur ∙ Fa Majeur)1:17109-24Sinfonia 9 BWV 795 (In F Minor ∙ F-Moll ∙ Fa Mineur)4:16109-25Sinfonia 10 BWV 796 (In G Major ∙ G-Dur ∙ Sol Majeur)1:14109-26Sinfonia 11 BWV 797 (In G Minor ∙ G-Moll ∙ Sol Mineur)2:27109-27Sinfonia 12 BWV 798 (In A Major ∙ A-Dur ∙ La Majeur)1:39109-28Sinfonia 13 BWV 799 (In A Minor ∙ A-Moll ∙ La Mineur)2:31109-29Sinfonia 14 BWV 800 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)1:32109-30Sinfonia 15 BWV 801 (In B Minor ∙ H-Moll ∙ Si Mineur)1:31English & French Suites 1 & 2English Suite No. 1 BWV 806 (In A Major ∙ A-Dur ∙ La Majeur)21:541438649Alan Curtis (2)Harpsichord110-1Prélude1:56110-2Allemande4:54110-3Courante I & II4:31110-4Sarabande2:20110-5Bourrée I & II5:01110-6Gigue3:22French Suite No. 1 BWV 812 (In D Minor ∙ D-Moll ∙ Ré Mineur)8:031438649Alan Curtis (2)Harpsichord110-7Allemande1:49110-8Courante1:07110-9Sarabande1:39110-10Menuet I0:46110-11Menuet II1:00110-12Gigue1:53English Suite No. 2 BWV 807 (In A Minor ∙ A-Moll ∙ La Mineur)21:401438649Alan Curtis (2)Harpsichord110-13Prélude5:16110-14Allemande3:34110-15Courante2:01110-16Sarabande2:57110-17Bourrée I & II4:43110-18Gigue3:19French Suite No. 2 BWV 813 (In C Minor ∙ C-Moll ∙ Ut Mineur)6:441438649Alan Curtis (2)Harpsichord110-19Allemande1:37110-20Courante0:58110-21Sarabande1:52110-22Air0:57110-23Gigue1:20English & French Suites 3 & 4English Suite No. 3 BWV 808 (In G Minor ∙ G-Moll ∙ Sol Mineur)17:381438649Alan Curtis (2)Harpsichord111-1Prélude3:31111-2Allemande3:24111-3Courante2:20111-4Sarabande2:52111-5Gavotte I & II3:23111-6Gigue2:19French Suite No. 3 BWV 814 (In B Minor ∙ H-Moll ∙ Si Mineur)9:481438649Alan Curtis (2)Harpsichord111-7Allemande1:49111-8Courante1:17111-9Sarabande1:49111-10Gavotte (Anglaise)1:06111-11Menuet & Trio2:38111-12Gigue1:19English Suite No. 4 BWV 809 (In F Major ∙ F-Dur ∙ Fa Majeur)21:511438649Alan Curtis (2)Harpsichord111-13Prélude5:32111-14Allemande3:58111-15Courante1:57111-16Sarabande2:57111-17Menuet I & II3:35111-18Gigue4:02French Suite No. 4 BWV 815 (In E Flat Major ∙ Es-Dur ∙ Mi Bémol Majeur)7:291438649Alan Curtis (2)Harpsichord111-19Allemande2:02111-20Courante1:03111-21Sarabande1:16111-22Gavotte0:43111-23Air0:59111-24Gigue1:26English & French Suites 5 & 6English Suite No. 5 BWV 810 (In F Minor ∙ F-Moll ∙ Fa Mineur)20:391438649Alan Curtis (2)Harpsichord112-1Prélude5:32112-2Allemande3:53112-3Courante2:28112-4Sarabande2:51112-5Passepied I En Rondeau ∙ Passepied II2:39112-6Gigue3:26French Suite No. 5 BWV 816 (In G Major ∙ G-Dur ∙ Sol Majeur)11:451438649Alan Curtis (2)Harpsichord112-7Allemande1:40112-8Courante1:02112-9Sarabande3:52112-10Gavotte1:19112-11Bourrée0:45112-12Loure1:10112-13Gigue2:07English Suite No. 6 BWV 811 (In D Minor ∙ D-Moll ∙ Ré Mineur)25:591438649Alan Curtis (2)Harpsichord112-14Prélude8:08112-15Allemande4:25112-16Courante2:36112-17Sarabande3:12112-18Gavotte I & II3:49112-19Gigue4:00French Suite No. 6 BWV 817 (In E Major ∙ E-Dur ∙ Mi Majeur)10:081438649Alan Curtis (2)Harpsichord112-20Allemande1:43112-21Courante1:34112-22Sarabande2:44112-23Gavotte0:42112-24Polonaise0:43112-25Menuet0:41112-26Bourrée0:53112-27Gigue1:08Suites, BWV 818A, 819 & 821Suite In E Flat Major BWV 819 (Es-Dur ∙ Mi Bémol Majeur)13:53834518Zuzana RůžičkováHarpsichord113-1Allemande2:41113-2Courante2:06113-3Sarabande4:17113-4Bourrée1:43113-5Menuet I & II3:12113-6Allemande In E Flat Major BWV 819a (Es-Dur ∙ Mi Bémol Majeur) (Alternative For The Allemande In The Suite BWV 819)3:25834518Zuzana RůžičkováHarpsichordSuite In B Flat Major BWV 821 (B-Dur ∙ Si Bémol Majeur)11:22834518Zuzana RůžičkováHarpsichord113-7Praeludium1:04113-8Allemande3:29113-9Courante1:12113-10Sarabande2:53113-11Echo2:44Three Minuets From The Clavier-Büchlein For W. F. Bach4:28834518Zuzana RůžičkováHarpsichord113-12Menuet I BWV 841 (In G Major ∙ G-Dur ∙ Sol Majeur)1:25113-13Menuet II BWV 842 (In G Minor ∙ G-Moll ∙ Sol Mineur)0:59113-14Menuet III BWV 843 (In G Major ∙ G-Dur ∙ Sol Majeur)2:04113-15Trio In B Minor BWV 814a (H-Moll ∙ Si Mineur) (Alternative For The Trio In The French Suite No. 3 BWV 814)1:24834518Zuzana RůžičkováHarpsichord113-16Scherzo In D Minor BWV 844 (D-Moll ∙ Ré Mineur)2:26834518Zuzana RůžičkováHarpsichordSuite In A Minor BWV 818a (A-Moll ∙ La Mineur)14:34834518Zuzana RůžičkováHarpsichord113-17Fort Gai2:08113-18Allemande3:31113-19Courante1:24113-20Sarabande3:47113-21Menuet1:29113-22Gigue2:22Suite Movements BWV 818 (Alternatives For The Suite BWV 818a)5:48834518Zuzana RůžičkováHarpsichord113-23Sarabande Simple3:22113-24Sarabande Double2:26Partitas 1-4, BWV 825-828Partita No. 1 BWV 825 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)19:10961594Scott Ross (4)Harpsichord114-1Praeludium1:44114-2Allemande4:48114-3Corrente2:52114-4Sarabande4:49114-5Menuet I1:23114-6Menuet II1:25114-7Giga2:15Partita No. 2 BWV 826 (In C Minor ∙ C-Moll ∙ Ut Mineur)19:41961594Scott Ross (4)Harpsichord114-8Sinfonia: Grave Adagio - Andante - Allegro4:16114-9Allemande4:47114-10Courante2:23114-11Sarabande3:00114-12Rondeaux1:33114-13Capriccio3:42Partita No. 3 BWV 827 (In A Minor ∙ A-Moll ∙ La Mineur)19:24961594Scott Ross (4)Harpsichord114-14Fantasia2:46114-15Allemande2:31114-16Corrente3:07114-17Sarabande3:53114-18Burlesca2:13114-19Scherzo1:34114-20Gigue3:20Partita No. 4 BWV 828 (In D Major ∙ D-Dur ∙ Ré Majeur) (Beginning)15:55961594Scott Ross (4)Harpsichord114-21Ouverture6:18114-22Allemande9:37Partitas 4-6, BWV 828-830Partita No. 4 BWV 828 (In D Major ∙ D-Dur ∙ Ré Majeur) (Conclusion)17:23961594Scott Ross (4)Harpsichord115-1Courante3:54115-2Aria2:36115-3Sarabande5:24115-4Menuet1:21115-5Gigue4:08Partita No. 5 BWV 829 (In C Major ∙ C-Dur ∙ Ut Majeur)20:36961594Scott Ross (4)Harpsichord115-6Praeambulum2:31115-7Allemande4:47115-8Corrente2:04115-9Sarabande3:43115-10Tempo Di Minuetta1:45115-11Passepied1:45115-12Gigue4:01Partita No. 6 BWV 829 (In E Minor ∙ E-Moll ∙ Mi Mineur)32:26961594Scott Ross (4)Harpsichord115-13Toccata7:36115-14Allemande3:11115-15Corrente5:35115-16Air1:45115-17Sarabande5:44115-18Tempo Di Gavotta2:09115-19Gigue6:26The Well-Tempered Clavier I (1) Nos.1-12, BWV 846-857116-1Prelude And Fugue No. 1 In C Major BWV 846 (C-Dur ∙ Ut Majeur)4:07255263Glen WilsonHarpsichord116-2Prelude And Fugue No. 2 In C Minor BWV 847 (C-Moll ∙ Ut Mineur)3:13255263Glen WilsonHarpsichord116-3Prelude And Fugue No. 3 In C Sharp Major BWV 848 (Cis-Dur ∙ Ut Dièse Majeur)3:42255263Glen WilsonHarpsichord116-4Prelude And Fugue No. 4 In C Sharp Minor BWV 849 (Cis-Moll ∙ Ut Dièse Mineur)7:12255263Glen WilsonHarpsichord116-5Prelude And Fugue No. 5 In D Major BWV 850 (D-Dur ∙ Ré Majeur)3:00255263Glen WilsonHarpsichord116-6Prelude And Fugue No. 6 In D Minor BWV 851 (D-Moll ∙ Ré Mineur)3:16255263Glen WilsonHarpsichord116-7Prelude And Fugue No. 7 In E Flat Major BWV 852 (Es-Dur ∙ Mi Bémol Majeur)6:17255263Glen WilsonHarpsichord116-8Prelude And Fugue No. 8 In E Flat Minor BWV 853 (Es-Moll ∙ Mi Bémol Mineur)10:06255263Glen WilsonHarpsichord116-9Prelude And Fugue No. 9 In E Major BWV 854 (E-Dur ∙ Mi Majeur)2:43255263Glen WilsonHarpsichord116-10Prelude And Fugue No. 10 In E Minor BWV 855 (E-Moll ∙ Mi Mineur)3:54255263Glen WilsonHarpsichord116-11Prelude And Fugue No. 11 In F Major BWV 856 (F-Dur ∙ Fa Majeur)2:31255263Glen WilsonHarpsichord116-12Prelude And Fugue No. 12 In F Minor BWV 857 (F-Moll ∙ Fa Mineur)6:45255263Glen WilsonHarpsichordThe Well-Tempered Clavier I (2) Nos.13-24, BWV 858-869117-1Prelude And Fugue No. 13 In F Sharp Major BWV 858 (Fis-Dur ∙ Fa Dièse Majeur)3:33255263Glen WilsonHarpsichord117-2Prelude And Fugue No. 14 In F Sharp Minor BWV 859 (Fis-Moll ∙ Fa Dièse Mineur)4:22255263Glen WilsonHarpsichord117-3Prelude And Fugue No. 15 In G Major BWV 860 (G-Dur ∙ Sol Majeur)3:58255263Glen WilsonHarpsichord117-4Prelude And Fugue No. 16 In G Minor BWV 861 (G-Moll ∙ Sol Mineur)4:32255263Glen WilsonHarpsichord117-5Prelude And Fugue No. 17 In A Flat Major BWV 862 (As-Dur ∙ La Bémol Majeur)4:06255263Glen WilsonHarpsichord117-6Prelude And Fugue No. 18 (In G Sharp Minor BWV 863 (Gis-Moll ∙ Sol Dièse Mineur)5:07255263Glen WilsonHarpsichord117-7Prelude And Fugue No. 19 In A Major BWV 864 (A-Dur ∙ La Majeur)3:35255263Glen WilsonHarpsichord117-8Prelude And Fugue No. 20 In A Minor BWV 865 (A-Moll ∙ La Mineur)6:42255263Glen WilsonHarpsichord117-9Prelude And Fugue No. 21 In B Flat Major BWV 866 (B-Dur ∙ Si Bémol Majeur)2:54255263Glen WilsonHarpsichord117-10Prelude And Fugue No. 22 In B Flat Minor BWV 867 (B-Moll ∙ Si Bémol Mineur)6:23255263Glen WilsonHarpsichord117-11Prelude And Fugue No. 23 In B Major BWV 868 (H-Dur ∙ Si Majeur)3:36255263Glen WilsonHarpsichord117-12Prelude And Fugue No. 24 In B Minor BWV 869 (H-Moll ∙ Si Mineur)11:45255263Glen WilsonHarpsichordThe Well-Tempered Clavier II (1) Nos.1-12, BWV 870-881118-1Prelude And Fugue No. 1 In C Major BWV 870 (C-Dur ∙ Ut Majeur)4:22255263Glen WilsonHarpsichord118-2Prelude And Fugue No. 2 In C Mineur BWV 871 (C-Moll ∙ Ut Mineur)6:11255263Glen WilsonHarpsichord118-3Prelude And Fugue No. 3 In C Sharp Major BWV 872 (Cis-Dur ∙ Ut Dièse Majeur)4:33255263Glen WilsonHarpsichord118-4Prelude And Fugue No. 4 In C Sharp Minor BWV 873 (Cis-Moll ∙ Ut Dièse Mineur)6:59255263Glen WilsonHarpsichord118-5Prelude And Fugue No. 5 In D Major BWV 874 (D-Dur ∙ Ré Majeur)7:09255263Glen WilsonHarpsichord118-6Prelude And Fugue No. 6 In D Minor BWV 875 (D-Moll ∙ Ré Mineur)3:28255263Glen WilsonHarpsichord118-7Prelude And Fugue No. 7 In E Flat Major BWV 876 (Es-Dur ∙ Mi Bémol Majeur)4:28255263Glen WilsonHarpsichord118-8Prelude And Fugue No. 8 In D Sharp Minor BWV 877 (Dis-Moll ∙ Ré Dièse Mineur)8:05255263Glen WilsonHarpsichord118-9Prelude And Fugue No. 9 In E Major BWV 878 (E-Dur ∙ Mi Majeur)8:46255263Glen WilsonHarpsichord118-10Prelude And Fugue No. 10 In E Minor BWV 879 (E-Moll ∙ Mi Mineur)7:09255263Glen WilsonHarpsichord118-11Prelude And Fugue No. 11 In F Major BWV 880 (F-Dur ∙ Fa Majeur)5:47255263Glen WilsonHarpsichord118-12Prelude And Fugue No. 12 In F Minor BWV 881 (F-Moll ∙ Fa Mineur)6:12255263Glen WilsonHarpsichordThe Well-Tempered Clavier II (2) Nos.13-24, BWV 882-893119-1Prelude And Fugue No. 13 In F Sharp Major BWV 882 (Fis-Dur ∙ Fa Dièse Majeur)6:25255263Glen WilsonHarpsichord119-2Prelude And Fugue No. 14 In F Sharp Minor BWV 883 (Fis-Moll ∙ Fa Dièse Mineur)8:54255263Glen WilsonHarpsichord119-3Prelude And Fugue No. 15 In G Major BWV 884 (G-Dur ∙ Sol Majeur)4:25255263Glen WilsonHarpsichord119-4Prelude And Fugue No. 16 In G Minor BWV 885 (G-Moll ∙ Sol Mineur)6:08255263Glen WilsonHarpsichord119-5Prelude And Fugue No. 17 In E Flat Major BWV 886 (Es-Dur ∙ Mi Bémol Majeur)6:56255263Glen WilsonHarpsichord119-6Prelude And Fugue No. 18 In G Sharp Minor BWV 887 (Gis-Moll ∙ Sol Dièse Mineur)7:10255263Glen WilsonHarpsichord119-7Prelude And Fugue No. 19 In A Major BWV 888 (A-Dur ∙ La Majeur)3:45255263Glen WilsonHarpsichord119-8Prelude And Fugue No. 20 In A Minor BWV 889 (A-Moll ∙ La Mineur)4:20255263Glen WilsonHarpsichord119-9Prelude And Fugue No. 21 In B Flat Major BWV 890 (B-Dur ∙ Si Bémol Majeur)7:10255263Glen WilsonHarpsichord119-10Prelude And Fugue No. 22 In B Flat Minor BWV 891 (B-Moll ∙ Si Bémol Mineur)8:37255263Glen WilsonHarpsichord119-11Prelude And Fugue No. 23 In B Major BWV 892 (H-Dur ∙ Si Majeur)5:45255263Glen WilsonHarpsichord119-12Prelude And Fugue No. 24 In B Minor BWV 893 (H-Moll ∙ Si Mineur)4:12255263Glen WilsonHarpsichordPreludes, Fantasias & Fugues BWV 894, 900, 902A, 904, 924-927, 929-931, 937, 939, 940 & 994Prelude And Fugue In A Minor BWV 89410:53834518Zuzana RůžičkováHarpsichord120-1Praeludium5:58120-2Fuga4:55Prelude And Fughetta In E Minor BWV 9004:09834518Zuzana RůžičkováHarpsichord120-3Praeludium1:20120-4Fughetta2:49120-5Prelude In G Major BWV 902a1:04834518Zuzana RůžičkováHarpsichordFantasia And Fugue In A Minor BWV 90410:21834518Zuzana RůžičkováHarpsichord120-6Fantasia4:59120-7Fuga5:22Preludes From The Clavier-Büchlein Vor W.F. Bach7:45834518Zuzana RůžičkováHarpsichord120-8Prelude In C Major BWV 9240:54120-9Prelude In D Major BWV 9250:55120-10Prelude In D Minor BWV 9261:09120-11Prelude In F Major BWV 9270:43120-12Prelude In F Major BWV 9281:19120-13Prelude In G Minor BWV 9301:44120-14Prelude In A Minor BWV 9311:01120-15Prelude In E Major BWV 9371:39834518Zuzana RůžičkováHarpsichord120-16Prelude In C Major BWV 9390:32834518Zuzana RůžičkováHarpsichord120-17Prelude In D Minor BWV 9401:10834518Zuzana RůžičkováHarpsichord120-18Applicatio In C Major BWV 9940:52834518Zuzana RůžičkováHarpsichordPreludes, Fantasias & Fugues BWV 933-936, 938, 941-944, 955, 958-959 Sonata, BWV 963 ∙ Capriccio, BWV 993Preludes BWV 933-9368:24834518Zuzana RůžičkováHarpsichord121-1Prelude In C Major BWV 9331:38121-2Prelude In C Minor BWV 9341:49121-3Prelude In D Minor BWV 9351:43121-4Prelude In D Major BWV 9363:14121-5Prelude In E Minor BWV BWV 9381:51834518Zuzana RůžičkováHarpsichordPreludes BWV 941-9433:27834518Zuzana RůžičkováHarpsichord121-6Prelude In E Minor BWV 9410:34121-7Prelude In A Minor BWV 9420:47121-8Prelude In C Major BWV 9432:06Fantasia And Fugue In A Minor BWV 9448:11834518Zuzana RůžičkováHarpsichord121-9Fantasia1:24121-10Fuga6:47121-11Fugue In B Flat Major BWV 9555:16834518Zuzana RůžičkováHarpsichordFugues In A Minor BWV 958 & 9596:24834518Zuzana RůžičkováHarpsichord121-12Fugue In A Minor BWV 9583:09121-13Fugue In A Minor BWV 9593:15Sonata In D Major BWV 96310:17834518Zuzana RůžičkováHarpsichord121-14[Allegro]3:08121-15[Adagio]1:02121-16[Fugato]2:47121-17Adagio1:08121-18"Thema All'Imitatio Gallina Cucu"2:12121-19Capriccio In E Major BWV 993 (In Honorem Johann Christoph Bachii)5:59834518Zuzana RůžičkováHarpsichordToccatas, BWV 910-916Toccata In D Major BMV 91210:35898398Bob van AsperenHarpsichord122-1[Presto]0:25122-2Allegro2:16122-3Adagio1:33122-4[Fugato]2:17122-5Con Discrezione ∙ Presto1:16122-6[Fuga]3:00Toccata In E Minor BMV 9145:53898398Bob van AsperenHarpsichord122-7[Praeludium]0:24122-8Un Poco Allegro1:20122-9Adagio1:24122-10Fuga, Allegro2:57Toccata In F Sharp Minor BMV 91010:07898398Bob van AsperenHarpsichord122-11[Passagio]0:55122-12[Adagio]1:35122-13Presto E Staccato2:35122-14[Arioso]2:21122-15[Fuga]2:53Toccata In G Major BMV 9167:49898398Bob van AsperenHarpsichord122-16[Vivace]2:18122-17Adagio2:17122-18Allegro E Presto3:25Toccata In C Minor BMV 9119:53898398Bob van AsperenHarpsichord122-19[Passagio]0:45122-20Adagio1:46122-21Allegro ∙ Adagio ∙ Allegro ∙ Adagio ∙ Presto7:33Toccata In D Minor BMV 91312:27898398Bob van AsperenHarpsichord122-22[Passagio]0:38122-23[Adagio]1:35122-24Thema3:24122-25[Adagissimo ∙ Arioso]2:33122-26[Fuga], Allegro4:28Toccata In G Minor BMV 9158:25898398Bob van AsperenHarpsichord122-27[Passagio] ∙ Adagio0:57122-28Allegro2:04122-29Adagio0:55122-30Fuga ∙ [Passagio ∙ Adagio]4:29Chromatic Fantasia And Fugue, BWV 903 Aria Variata, BWV 989 14 Canons, BWV 1087 Suite, BWV 823, Etc.Chromatic Fantasia And Fugue In D Minor BWV 90311:19845763Gustav LeonhardtHarpsichord123-1Fantasia2:37123-2Recitativo2:51123-3Fuga5:57Prelude And Fugue In A Minor BWV 8952:44845763Gustav LeonhardtHarpsichord, Organ123-4Praeludium0:54123-5Fuga1:50123-6Fugue In C Major BWV 9522:07845763Gustav LeonhardtHarpsichord, OrganSuite In F Minor BWV 8236:33845763Gustav LeonhardtHarpsichord, Organ123-7Prelude2:20123-8Sarabande En Rondeau2:27123-9Gigue1:46Capriccio On The Departure Of His Most Beloved Brother BWV 992 = Capriccio Sopra La Lontananza Del Suo Fratello Dilettissimo ∙ Capriccio Über Die Abreise Seine Geliebsteten Bruders ∙ Capriccio12:54845763Gustav LeonhardtHarpsichord, Organ123-10Adagio. Ist Eine Schmeichelung Der Freunde, Um Denselben Von Seiner Reise Abzuhalten2:34123-11Ist Eine Vorstellung Unterschiedlicher Cassum, Die Ihm In Der Fremde Könnten Vorfallen2:07123-12Adagioissimo. Ist Ein Allgemeines Lamento Der Freunde2:59123-13Allhier Kommen Die Freunde (Weil Sie Doch Sehen, Daߟ Es Anders Nicht Sein Kann) Und Nehmen Abstand1:05123-14Aria Di Postiglione. Allegro Poco1:24123-15Fuga All'Imitatione Di Posta2:45123-16Aria Variata Alla Maniera Italiana In A Minor BWV 98915:42255263Glen WilsonHarpsichord123-1714 Canons BWV 1087 (On The First Eight Notes Of The Ground Of The Goldberg Variations)9:22255263Glen WilsonHarpsichordItalian Concerto, BWV 971 Overture, BWV 831Italian Concerto In F Major BWV 97112:25961594Scott Ross (4)Harpsichord124-1[Allegro Moderato]4:11124-2Andante4:09124-3Presto4:14Overture [Partita] in B Minor BWV 83127:26961594Scott Ross (4)Harpsichord124-4Ouverture7:02124-5Courante2:00124-6Gavotte I & II3:25124-7Passepied I & II2:51124-8Sarabande3:10124-9Bourrée I & II2:56124-10Gigue2:55124-11Echo3:07Goldberg Variations, BWV 988125-1Aria2:24845763Gustav LeonhardtHarpsichordVariations Nos. 1-3042:46845763Gustav LeonhardtHarpsichord125-2Var. 1 A 1 Clav.1:31125-3Var. 2 A 1 Clav.1:00125-4Var. 3 Canone All'Unisono A 1 Clav.1:03125-5Var. 4 A 1 Clav.0:35125-6Var. 5 A 1 Overo 2 Clav.1:01125-7Var. 6 Canone Alla Seconda A 1 Clav.0:56125-8Var. 7 Al Tempo Di Giga A 1 Overo 2 Clav.1:03125-9Var. 8 A 2 Clav.1:22125-10Var. 9 Canone Alla Terza A 1 Clav.1:05125-11Var. 10 Fughetta A 1 Clav.0:54125-12Var. 11 A 2 Clav.1:26125-13Var. 12 Canone Alla Quarta1:50125-14Var. 13 A 2 Clav.2:52125-15Var. 14 A 2 Clav.1:20125-16Var. 15 Canone Alla Quinta A 1 Clav.2:40125-17Var. 16 A 2 Clav.1:32125-18Var. 17 A 2 Clav.1:04125-19Var. 18 Canone Alla Sexta A 1 Clav.0:46125-20Var. 19 A 1 Clav.0:55125-21Var. 20 A 2 Clav.1:14125-22Var. 21 Canone Alla Settima2:07125-23Var. 22 Alla Breve A 1 Clav.0:48125-24Var. 23 A 2 Clav.1:22125-25Var. 24 Canone All'Ottava A 1 Clav.1:58125-26Var. 25 A 2 Clav.4:22125-27Var. 26 A 2 Clav.1:10125-28Var. 27 Canone Alla Nona1:03125-29Var. 28 A 2 Clav.1:30125-30Var. 29 A 1 Ovvero 2 Clav.1:09125-31Var. 30 Quodlibet A 1 Clav.1:08125-32Aria2:33845763Gustav LeonhardtHarpsichordSonatas, BWV 964-966 & 968 Fugue, BWV 954Sonata In D Minor BWV 964 (After Sonata For Violin Solo BWV 1003)18:1495537Johann Sebastian BachBach [?]Arranged By969701Andreas StaierHarpsichord126-1Adagio3:27126-2Fuga, Allegro5:51126-3Andante4:19126-4Allegro4:48Sonata In A Minor BWV 965 (After Reincken's Hortus Musicus, Nos. 1-5)17:33969701Andreas StaierHarpsichord126-5Adagio2:03126-6Fuga, Allegro3:55126-7Adagio0:39126-8Presto0:37126-9Allemande3:28126-10Courante1:58126-11Sarabande1:56126-12Gigue3:08Sonato In C Major BWV 966 (After Reincken's Hortus Musicus, Nos. 11-15)17:07969701Andreas StaierHarpsichord126-13Praeludium2:1795537Johann Sebastian BachArranged By126-14Fuga3:0995537Johann Sebastian BachArranged By126-15Adagio0:5895537Johann Sebastian BachArranged By126-16(Allegro)0:3295537Johann Sebastian BachArranged By126-17Allemande3:2595537Johann Sebastian BachArranged By126-18Courante1:18969701Andreas StaierArranged By126-19Sarabande1:36969701Andreas StaierArranged By126-20Gigue3:58969701Andreas StaierArranged BySonata In G Major BWV 968 (After Sonata For Violin Solo 1005/1)19:25969701Andreas StaierHarpsichord126-21Adagio3:2495537Johann Sebastian BachArranged By126-22Fuga8:45969701Andreas StaierArranged By126-23Largo2:51969701Andreas StaierArranged By126-24Allegro Assai4:28969701Andreas StaierArranged By126-25Fugue In B Flat Major BWV 954 (After Reincken's Hortus Musicus, No. 6)3:41969701Andreas StaierHarpsichordPreludes & Fughettas BWV 833, 846A, 847A, 851A, 855A, 896, 899, 901, 902, 906, 917, 918, 921, 922 & 929Prelude And Partita In F Major BWV 833 (Praeludium Et Partita Del Tuono Terzo)9:141430001Michele BarchiHarpsichord127-1Praeludium, Andante1:11127-2Allemande2:51127-3Courante1:58127-4Sarabande1:08127-5Double, Allegro0:44127-6Air, Allegro1:22Prelude And Fugue In A Major BWV 8962:411430001Michele BarchiHarpsichord127-7Praeludium0:43127-8Fuga1:58Prelude And Fughetta In D Minor BWV 8992:301430001Michele BarchiHarpsichord127-9Praeludium1:30127-10Fuga1:00Prelude And Fughetta In F Major BWV 9012:091430001Michele BarchiHarpsichord127-11Praeludium1:04127-12Fughetta1:05Prelude And Fughetta In G Major BWV 9026:491430001Michele BarchiHarpsichord127-13Praeludium5:48127-14Fughetta1:01Fantasia And Fugue In C Minor BWV 9068:301430001Michele BarchiHarpsichord127-15Fantasia4:50127-16Fuga3:40Preludes BWV 921, 922 & 9299:061430001Michele BarchiHarpsichord127-17Prelude [Fantasia] In C Minor BWV 9212:26127-18Prelude [Fantasia] In A Minor BWV 9225:56127-19Prelude [Minuet-Trio] In G Minor BWV 929 (Clavier-Büchlein Von W. F. Bach)0:44Fantasias BWV 917 & 9186:11127-20Fantasia in G Minor BWV 9171:511430001Michele BarchiHarpsichord127-21Fantasia in C Minor BWV 9184:20969701Andreas StaierHarpsichordPreludes BWV 846a, 847a, 851a & 855a3:563462414Olivier BaumontClavichord127-22Prelude In C Major BWV 846a (Clavier-Büchlein Von W. F. Bach)1:29127-23Prelude In C Minor BWV 847a (Clavier-Büchlein Von W. F. Bach)1:00127-24Prelude In D Minor BWV 851a (Clavier-Büchlein Von W. F. Bach)0:53127-25Prelude In E Minor BWV 855a1:20Suites, BWV 822 & 832 Fugues, BWV 946-951, 953 & 961, Etc.Suite In G Minor BWV 82212:271430001Michele BarchiHarpsichord128-1Ouverture3:29128-2Aria3:19128-3Gavotte En Rondeau1:14128-4Bourrée0:59128-5Menuett I ∙ Menuett II ∙ Menuett III3:12128-6Gigue1:37128-7Allemande In G Minor BWV 836 (Clavier-Büchlein Von W. F. Bach)1:471430001Michele BarchiHarpsichord128-8Minuet In C Minor BWV 813a0:561430001Michele BarchiHarpsichordSuite [Partita] In A Major BWV 8328:381430001Michele BarchiHarpsichord128-9Allemande2:30128-10Air Pour Le Trompettes2:34128-11Sarabande1:26128-12Bourrée0:55128-13Gigue1:13Fugues, BWV 946-95017:441430001Michele BarchiHarpsichord128-14Fugue In C Major BWV 946 (After Albinoni)2:13128-15Fugue In A Minor BWV 9473:26128-16Fugue In D Minor BWV 9483:54128-17Fugue In A Major BWV 9493:55128-18Fugue In A Major BWV 950 (After Albinoni)4:16128-19Prelude In B Minor BWV 9233:041430001Michele BarchiHarpsichordFugues BWV 951 & 9536:581430001Michele BarchiHarpsichord128-20Fugue In B Minor BWV 951 (After Albinoni)5:32128-21Fugue In C Major BWV 853 (Clavier-Büchlein Von W. F. Bach)1:26128-22Fughetta In C Minor BWV 9611:331430001Michele BarchiHarpsichord128-23Sonata In A Minor BWV 967 (First Movement)3:051430001Michele BarchiHarpsichordConcertos After Vivaldi BWV 972, 973, 975, 976, 978 & 980Concerto In D Major BWV 972 (After L'Estro Armonico, Op. 3, No. 9)7:443462414Olivier BaumontHarpsichord129-1[Allegro]2:14129-2[Allegro]3:11129-3Allegro2:19Concerto In G Major BWV 973 (After Concerti A Cinque Stromenti, Op. 7, No. 2)6:413462414Olivier BaumontHarpsichord129-4[Allegro]2:31129-5Largo1:52129-6Allegro2:18Concerto In G Minor BWV 975 (After La Stravaganza, Op. 4, No. 6)7:283462414Olivier BaumontHarpsichord129-7[Allegro]3:00129-8Largo2:48129-9Giga, Presto1:40Concerto In C Major BWV 976 (After L'Estro Armonico, Op. 3, No. 12)9:273462414Olivier BaumontHarpsichord129-10[Allegro]3:36129-11Largo2:39129-12Largo3:12Concerto In F Major BWV 978 (After L'Estro Armonico, Op. 3, No. 3)7:103462414Olivier BaumontHarpsichord129-13Allegro2:28129-14Largo2:08129-15Largo2:34Concerto In G Major BWV 980 (After La Stravaganza, Op. 4, No. 1)9:233462414Olivier BaumontHarpsichord129-16[Allegro]4:17129-17Largo2:48129-18Largo2:18Concertos After Various Composers BWV 974, 977, 979 & 981-987Concerto In D Minor BWV 974 (After Alessandro Marcello, Oboe Concerto No. 2, In Concerti A Cinque, Amsterdam C. 1717)10:091430001Michele BarchiHarpsichord130-1[Allegro]2:45130-2Adagio3:32130-3Presto3:52Concerto In C Major BWV 977 (Source Unknown, Vivaldi?)5:591430001Michele BarchiHarpsichord130-4[Allegro]2:30130-5Adagio1:11130-6Giga2:18Concerto In B Minor BWV 979 (After Giuseppe Torelli, Violin Concerto In D Minor)10:211430001Michele BarchiHarpsichord130-7[Adagio] ∙ Allegro1:18130-8Adagio0:51130-9Allegro3:06130-10Andante1:02130-11Adagio0:49130-12Allegro3:15Concerto In C Minor BWV 981 (After A Violin Concerto By Benedetto Marcello)10:441430001Michele BarchiHarpsichord130-13Adagio2:13130-14Vivace1:55130-15[Grave]2:26130-16Prestissimo4:10Concerto In B Flat Major BWV 982 (After Duke Johann Ernst Of Saxe-Weimar, Six Concerts)7:15793064Georg Philipp TelemannEdited By1430001Michele BarchiHarpsichord130-17[Allegro]2:16130-18Adagio3:25130-19[Allegro]1:41Concerto In G Minor BWV 983 (Source Unknown)7:421430001Michele BarchiHarpsichord130-20[Allegro]3:06130-21Adagio2:38130-22Allegro1:58Concerto In C Major BWV 984 (After Duke Johann Ernst Of Saxe-Weimar, Six Concerts)7:21793064Georg Philipp TelemannEdited By1430001Michele BarchiHarpsichord130-23[Allegro]2:39130-24Adagio E Affetuoso2:10130-25Allegro Assai2:32Concerto In G Minor BWV 985 (After Georg Philipp Teleman)6:481430001Michele BarchiHarpsichord130-26[Allegro]2:29130-27Adagio1:52130-28Allegro2:27Concerto In G Major BWV 986 (Source Unknown)4:411430001Michele BarchiHarpsichord130-29[Allegro]2:01130-30Adagio1:18130-31Allegro1:22Concerto In D Minor BWV 987 (Source Unknown)6:191430001Michele BarchiHarpsichord130-32[Adagio ∙ Presto]2:29130-33Allegro2:18130-34Adagio0:27130-35Vivace1:05Chamber MusicWorks For LuteSuite In G Minor BWV 995 (G-Moll ∙ Sol Mineur For Lute)24:431430001Michele BarchiHarpsichord [Lute Harpsichord]1430000Luca PiancaLute131-1Prelude6:26131-2Allemande5:04131-3Courante2:35131-4Sarabande3:55131-5Gavotte I ∙ Gavotte II En Rondeau4:24131-6Gigue2:25Suite In E Minor BWV 996 (E-Moll ∙ Mi Mineur For Lute Harpsichord)15:091430001Michele BarchiHarpsichord [Lute Harpsichord]1430000Luca PiancaLute131-7Praeludio (Passagio ∙ Presto)2:20131-8Allemande3:23131-9Courante2:04131-10Sarabande3:32131-11Bourrée1:17131-12Gigue2:33Suite In C Minor BWV 997 (C-Moll ∙ Ut Mineur For Lute Harpsichord (Fuga, Double), Lute (Prelude, Sarabande, Gigue))17:391430001Michele BarchiHarpsichord [Lute Harpsichord]1430000Luca PiancaLute131-13Prelude3:14131-14Fuga5:33131-15Sarabande5:32131-16Gigue ∙ Double3:20Prelude, Fugue And Allegro In E-Flat Major BWV 998 (Es-Dur ∙ Mi Bémol Majeur For Harpsichord)10:031430001Michele BarchiHarpsichord1430000Luca PiancaLute132-1Prelude2:27132-2Fuga4:44132-3Allegro2:52132-4Prelude In C Minor BWV 999 (C-Moll ∙ Ut Mineur For Lute)1:351430001Michele BarchiHarpsichord1430000Luca PiancaLute132-5Fugue In G Minor BWV 1000 (G-Moll ∙ Sol Mineur For Lute)5:191430001Michele BarchiHarpsichord1430000Luca PiancaLuteSuite In E Major BWV 1006a (E-Dur ∙ Mi Majeur For Lute)21:381430001Michele BarchiHarpsichord1430000Luca PiancaLute132-6Prelude4:25132-7Loure5:39132-8Gavotte En Randeau3:22132-9Menuet I1:53132-10Menuet II1:50132-11Bourrée2:03132-12Gigue2:26Violin Sonatas & PartitasPartita No. 1 In B Minor BWV 1002 (H-Moll ∙ Si Mineur)24:27857108Thomas ZehetmairViolin133-1Allemande ∙ Double7:29133-2Courante ∙ Double (Presto)5:42133-3Sarabande ∙ Double5:40133-4Tempo Di Borea ∙ Double5:46Sonata No. 1 In G Minor BWV 1001 (G-Moll ∙ Sol Mineur)13:58857108Thomas ZehetmairViolin133-5Adagio3:15133-6Fuga (Allegro)4:47133-7Siciliana2:36133-8Presto3:26Sonata No. 2 In A Minor BWV 1003 (A-Moll ∙ La Mineur)18:32857108Thomas ZehetmairViolin133-9Grave3:11133-10Fuga7:04133-11Andante3:16133-12Allegro5:01Partita No. 2 In D Minor BWV 1004 (D-Moll ∙ Ré Mineur)25:26857108Thomas ZehetmairViolin134-1Allemande4:51134-2Courante2:03134-3Sarabande3:17134-4Gigue3:57134-5Ciaccona11:28Sonata No. 3 In C Major BWV 1005 (C-Dur ∙ Ut Majeur)20:47857108Thomas ZehetmairViolin134-6Adagio3:31134-7Fuga9:46134-8Largo2:39134-9Allegro Assai5:02Partita No. 3 In E Major BWV 1006 (E-Dur ∙ Mi Majeur)15:21857108Thomas ZehetmairViolin134-10Preludio3:38134-11Loure3:19134-12Gavotte En Rondeau2:29134-13Menuet I ∙ Menuet II2:54134-14Bourrée1:18134-15Gigue1:43Cello SuitesSuite No. 1 In G Major BWV 1007 (G-Dur ∙ Sol Majeur)18:07716084Nikolaus HarnoncourtCello135-1Prelude2:18135-2Allemande5:12135-3Courante2:38135-4Sarabande2:38135-5Menuet I1:25135-6Menuet II2:12135-7Gigue1:50Suite No. 2 In D Minor BWV 1008 (D-Moll ∙ Ré Mineur)20:18716084Nikolaus HarnoncourtCello135-8Prelude3:01135-9Allemande3:51135-10Courante2:23135-11Sarabande4:12135-12Menuet I1:35135-13Menuet II2:18135-14Gigue3:05Suite No. 3 In C Major BWV 1009 (C-Dur ∙ Ut Majeur)23:12716084Nikolaus HarnoncourtCello135-15Prelude3:16135-16Allemande5:21135-17Courante3:03135-18Sarabande3:54135-19Bourrée I1:37135-20Bourrée II2:24135-21Gigue3:37Suite No. 4 In E Flat Major BWV 1010 (Es-Dur ∙ Mi Bémol Majeur)25:13716084Nikolaus HarnoncourtCello136-1Prelude3:44136-2Allemande4:27136-3Courante3:48136-4Sarabande3:45136-5Bourrée I3:25136-6Bourrée II2:35136-7Gigue3:35Suite No. 5 In C Minor BWV 1011 (C-Moll ∙ Ut Mineur)25:06716084Nikolaus HarnoncourtCello136-8Prelude6:08136-9Allemande5:08136-10Courante3:02136-11Sarabande3:06136-12Gavotte I2:41136-13Gavotte II2:48136-14Gigue2:20Suite No. 6 In D Major BWV 1012 (D-Dur ∙ Ré Majeur)28:16716084Nikolaus HarnoncourtCello136-15Prelude4:43136-16Allemande6:19136-17Courante4:19136-18Sarabande4:19136-19Gavotte I1:50136-20Gavotte II2:20136-21Gigue4:26Violin SonatasSonata No. 1 In B Minor BWV 1014 (H-Moll ∙ Si Mineur)11:58852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-1Adagio2:54137-2Allegro2:50137-3Andante2:52137-4Allegro3:30Sonata No. 2 In A Major BWV 1015 (A-Dur ∙ La Majeur)13:33852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-5[Adagio]2:45137-6Allegro3:07137-7Andante Un Poco3:07137-8Presto4:42Sonata No. 3 In E Major BWV 1016 (E-Dur ∙ Mi Majeur)14:45852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-9Adagio3:33137-10Allegro2:49137-11Adagio Ma Non Tanto4:38137-12Allegro3:54Sonata No. 4 In C Minor BWV 1017 (C-Moll ∙ Ut Mineur)15:07852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-13Largo3:28137-14Allegro4:26137-15Adagio2:31137-16Allegro4:50Sonata No. 5 In F Minor BWV 1018 (F-Moll ∙ Fa Mineur)14:59852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin137-17[Lamento]5:34137-18Allegro4:23137-19Adagio2:40137-20Vivace2:22Sonata No. 6 In G Major BWV 1019 (G-Dur ∙ Sol Majeur)16:14852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba962494Alice HarnoncourtViolin138-1Allegro3:33138-2Largo1:26138-3Allegro4:57138-4Adagio3:02138-5Allegro3:23Sonata In G Major BWV 1019a (G-Dur ∙ Sol Majeur)16:15838289Susan SheppardCello962521Davitt MoroneyHarpsichord, Organ [Chamber Organ]883952John HollowayViolin138-6Adagio1:39138-7Cantabile, Ma Un Poco Adagio6:37138-8[Harpsichord Solo]5:36138-9Violino Solo E Basso L'Accompagnato (Violin Part Reconstructed After Partita BWV 830)2:23Sonata In G Major BWV 1021 (G-Dur ∙ Sol Majeur)8:40838289Susan SheppardCello962521Davitt MoroneyHarpsichord, Organ [Chamber Organ]883952John HollowayViolin138-10Adagio3:58138-11Vivace1:08138-12Largo2:13138-13Presto1:21Sonata In E Minor BWV 1023 (E-Moll ∙ Mi Mineur)11:00838289Susan SheppardCello Banjo962521Davitt MoroneyHarpsichord, Organ [Chamber Organ]883952John HollowayViolin138-14[Prelude] ∙ Adagio Ma Non Troppo4:18138-15Allemanda3:46138-16Gigue2:56Trio In A Major BWV 1025 (A-Dur ∙ La Majeur) (For Violin And Harpsichord)32:26842914Gerald HambitzerHarpsichord1111209Werner EhrhardtViolin139-1Fantasia2:26139-2Courante6:08139-3Entrée4:34139-4Rondeau4:39139-5Sarabande5:29139-6Menuett3:55139-7Allegro5:27139-8Fugue In G Minor BWV 1026 (G-Moll ∙ Sol Mineur) (For Violin And Basso Continuo)4:51842914Gerald HambitzerHarpsichord1111209Werner EhrhardtViolinSonatas For Viola Da Gamba BWV 1027-1029Sonata No. 1 In G Major BWV 1027 (G-Dur ∙ Sol Majeur)12:04852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba139-9Adagio3:09139-10Allegro Ma Non Tanto3:40139-11Andante2:09139-12Allegro Moderato3:13Sonata No. 2 In D Major BWV 1028 (D-Dur ∙ Ré Majeur)13:27852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba139-13Adagio1:47139-14Allegro3:42139-15Andante3:47139-16Allegro4:19Sonata No. 3 In G Minor BWV 1029 (G-Moll ∙ Sol Mineur)14:06852433Herbert TacheziHarpsichord716084Nikolaus HarnoncourtViola da Gamba139-17Vivace5:35139-18Adagio4:50139-19Allegro3:41Flute Sonatas BWV 1030, 1032, 1034, 1035, 1038 & 1039Sonata In B Minor BWV 1030 (H-Moll ∙ Si Mineur)15:54716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-1Andante7:06140-2Largo E Dolce3:01140-3Presto5:53Sonata In A Major BWV 1032 (A-Dur ∙ La Majeur)12:24716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-4Vivace5:18140-5Largo E Dolce2:48140-6Allegro4:25Sonata In E Minor BWV 1034 (E-Moll ∙ Mi Mineur)14:25716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-7Adagio Ma Non Tanto3:19140-8Allegro2:39140-9Andante3:06140-10Allegro5:21Sonata In E Major BWV 1035 (E-Dur ∙ Mi Majeur)11:47716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-11Adagio Ma Non Tanto2:18140-12Allegro3:18140-13Siciliano2:56140-14Allegro Assai3:15Sonata For Flute, Violin And Continuo In G Major BWV 1038 (G-Dur ∙ Sol Majeur)7:40716084Nikolaus HarnoncourtCello963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord962494Alice HarnoncourtViolin140-15Largo3:08140-16Vivace0:50140-17Adagio2:20140-18Presto1:22Sonata For 2 Flutes And Continuo In G Major BWV 1039 (G-Dur ∙ Sol Majeur)12:53716084Nikolaus HarnoncourtCello870792Frans BrüggenFlute [Transverse Flute]963967Leopold StastnyFlute [Transverse Flute]852433Herbert TacheziHarpsichord140-19Adagio3:35140-20Allegro Ma Non Presto3:45140-21Adagio E Piano2:27140-22Presto3:06Canons, BWV 1080/19, 1072-1078, 1086 Flute Sonatas, BWV 1013, 1031, 1033141-1Fuga A 3 Soggetti From The Art Of Fugue BWV 1080/19 (From Art Of Fugue ∙ Aus Die Kunst Der Fuge ∙ De L'Art La Fugue)6:53836664Tini MathotHarpsichord836665Ton KoopmanHarpsichord141-2Canon BWV 1072 (Canon Trias Harmonica)0:46837582Musica Antiqua KölnEnsemble141-3Canon BWV 1073 (Canon A 4. Voc: Perpetuus)1:41837582Musica Antiqua KölnEnsemble141-4Canon BWV 1074 (Canon A 4)1:53837582Musica Antiqua KölnEnsemble141-5Canon BWV 1075 (Conon A 2. Perpetuus)0:37837582Musica Antiqua KölnEnsemble141-6Canon BWV 1076 (Canon Triplex À 6 Voc:)0:33837582Musica Antiqua KölnEnsemble141-7Canon BWV 1077 (Canone Doppio Sopr'il Soggetto)0:53837582Musica Antiqua KölnEnsemble141-8Canon BWV 1078 (Canon Super Fa Mi, A 7. Post Tempus Musicum)1:38837582Musica Antiqua KölnEnsemble141-9Canon BWV 1086 (Canon Concordia Discors)1:23837582Musica Antiqua KölnEnsemblePartita In A Minor BWV 1013 (A-Moll ∙ La Mineur) (For Solo Flute)10:49379816Jean-Pierre RampalFlute434124Robert Veyron-LacroixHarpsichord837875Jordi SavallViola da Gamba141-10Allemande3:05141-11Corrente2:11141-12Sarabande3:59141-13Bourrée Anglaise1:34Sonata In E Flat Major BWV 1031 (Es-Dur ∙ Mi Bémol Majeur) (For Flute And Harsichord)10:22379816Jean-Pierre RampalFlute434124Robert Veyron-LacroixHarpsichord837875Jordi SavallViola da Gamba141-14Allegro Moderato3:40141-15Sicilienne2:31141-16Allegro4:17Sonata In C Major BWV 1033 (C-Dur ∙ Ut Majeur) (For Flute And Basso Continuo)8:08379816Jean-Pierre RampalFlute434124Robert Veyron-LacroixHarpsichord837875Jordi SavallViola da Gamba141-17Andante0:54141-18Presto0:37141-19Allegro2:14141-20Adagio1:54141-21Menuet2:29A Musical Offering, BWV 1079A Musical Offering BWV 1079 (Musikalisches Opfer ∙ L'Offrande Musicale)46:38716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble142-1Ricercare A 36:06142-2Canon Perpetuus Super Thema Regium0:58142-3Canones Diversi Super Thema Regium: Canon A 20:58142-4Canones Diversi Super Thema Regium: Canon A 2 Violini In Unisono0:57142-5Canones Diversi Super Thema Regium: Canon A 2 Per Motum Contrarium0:40142-6Canones Diversi Super Thema Regium: Canon A 2 Per Augmentationem, Contrario Motu1:53142-7Canones Diversi Super Thema Regium: Canon A 2 Per Tonos2:24142-8Fuga Canonica In Epidiapente1:52142-9Ricercare A 67:11142-10Canon A 21:17142-11Canon A 42:04142-12Trio: Largo5:52142-13Trio: Allegro6:24142-14Trio: Andante2:48142-15Trio: Allegro3:07142-16Canon Perpetuus1:41The Art Of Fugue, BWV 1080Art Of Fugue BWV 1080 (Die Kunst Der Fuge ∙ L'Art De La Fugue) (Organ Version By / Orgelfassung Von / Version Pour Orgue De Herbert Tachezi)72:36852433Herbert TacheziOrgan143-1Contrapunctus 13:08143-2Contrapunctus 23:10143-3Contrapunctus 32:52143-4Contrapunctus 45:18143-5Contrapunctus 53:11143-6Contrapunctus 6 (A 4, Im Stile Francese)4:05143-7Contrapunctus 7 (A 4, Per Augmentationem Et Diminutionem)3:59143-8Contrapunctus 8 (A 3)6:00143-9Contrapunctus 9 (A 4, Alla Duodecima)2:58143-10Contrapunctus 10 (A 4, Alla Decima)4:20143-11Contrapunctus 11 (A 4)7:10143-12Canon Alla Ottava2:51143-13Canon Alla Duodecima (In Contrapuncto Alla Quinta)2:15143-14Canon Alla Decima (Contrapuncto Alla Terza)4:40143-15Canon (Per Augmentationem In Contrario Muto)4:30143-16Contrapunctus 13, A 3 (A) Rectus)2:50143-17Contrapunctus 13, A 3 (B) Inversus)2:53143-18Contrapunctus 12, A 4 (A) Rectus)2:50143-19Contrapunctus 12, A 4 (B) Inversus)3:00Orchestral WorksViolin Concertos, BWV 1041-1043, 1056R & 1060RConcerto For Two Violins BWV 1043 (In D Major ∙ D-Dur ∙ Ré Majeur)16:33716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-1Vivace4:13144-2Largo, Ma Non Tanto7:06144-3Allegro5:14Concerto BWV 1042 (In E Major ∙ E-Dur ∙ Mi Majeur)17:50716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-4Allegro8:21144-5Adagio6:32144-6Allegro Assai2:57Concerto BWV 1041 (In A Minor ∙ A-Moll ∙ La Mineur)14:51716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-7Allegro4:10144-8Andante6:29144-9Allegro Assai4:18Concerto BWV 1056R (In G Minor ∙ G-Moll ∙ Sol Mineur)9:48716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-10[Allegro]3:36144-11Largo2:38144-12Presto3:40Concerto For Oboe And Violin BWV 1060R (In G Minor ∙ G-Moll ∙ Sol Mineur)13:31716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble144-13Allegro5:12144-14Adagio4:35144-15Allegro3:44Brandenburg ConcertosBrandenburg Concerto No. 1 BWV 1046 (In F Major ∙ F-Dur ∙ Fa Majeur)18:101201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble145-1[Allegro]3:48145-2Adagio3:33145-3Allegro3:52145-41 Menuetto 2 Trio 3 Menuetto 4 Polonaise 5 Menuetto 6 Trio 7 Menuetto7:03Brandenburg Concerto No. 2 BWV 1047 (In F Major ∙ F-Dur ∙ Fa Majeur)10:581201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble145-5[Allegro]4:39145-6Andante3:39145-7Allegro Assai2:40Brandenburg Concerto No. 3 BWV 1048 (In G Major ∙ G-Dur ∙ Sol Majeur)10:451201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble145-8Allegro5:45145-9Adagio0:27145-10Allegro4:33Brandenburg Concerto No. 4 BWV 1049 (In G Major ∙ G-Dur ∙ Sol Majeur)15:081201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble146-1Allegro7:02146-2Andante3:23146-3Presto4:48Brandenburg Concerto No. 5 BWV 1050 (In D Major ∙ D-Dur ∙ Ré Majeur)20:441201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble146-4Allegro10:13146-5Affetuoso5:11146-6Allegro5:20Brandenburg Concerto No. 6 BWV 1051 (In B Flat Major ∙ B-Dur ∙ Si Bémol Majeur)16:301201996Giovanni AntoniniConductor1100931Il Giardino ArmonicoIl Giardino Armonico, MilanoEnsemble146-7[Allegro]5:57146-8Adagio Ma Non Tanto4:35146-9Allegro5:58Harpsichord ConcertosConcerto BWV 1055 (In A Major ∙ A-Dur ∙ La Majeur)13:30845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-1Allegro4:34147-2Larghetto4:43147-3Allegro Ma Non Tanto4:23Concerto BWV 1056 (In F Minor ∙ F-Moll ∙ Fa Mineur)9:25845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-4[Allegro]3:15147-5Largo2:17147-6Presto4:04Concerto BWV 1054 (In D Major ∙ D-Dur ∙ Ré Majeur)15:55845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-7[Allegro]7:50147-8Adagio E Sempre Piano5:30147-9Allegro2:45Concerto BWV 1053 (In E Major ∙ E-Dur ∙ Mi Majeur)21:03845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-10[Allegro]8:44147-11Siciliano5:03147-12Allegro7:26Concerto For Harpsichord And Two Recorders BWV 1057 (In F Major ∙ F-Dur ∙ Fa Majeur)16:05845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble147-13[Allegro]6:54147-14Andante4:07147-15Allegro Assai5:04Concerto BWV 1052 (In D Minor ∙ D-Moll ∙ Ré Mineur)22:08716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble148-1Allegro8:04148-2Adagio6:02148-3Allegro8:12Concerto For Three Harpsichords BWV 1063 (In D Minor ∙ D-Moll ∙ Ré Mineur)13:54845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble148-4[Allegro]4:57148-5Alla Siliciana3:53148-6Allegro5:14Concerto For Two Harpsichords BWV 1061 (In C Major ∙ C-Dur ∙ Ut Majeur)18:34845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble148-7[Allegro]7:23148-8Adagio Ovvero Largo (Quartetto Tacet)5:14148-9Fuga Vivace6:07Concerto For Three Harpsichords BWV 1064 (In C Major ∙ C-Dur ∙ Ut Majeur)16:51845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble148-10Allegro6:23148-11Adagio5:49148-12Allegro4:39Concerto For Two Harpsichords BWV 1062 (In C Minor ∙ C-Moll ∙ Ut Mineur)14:41845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-1[Allegro]3:44149-2Andante E Piano6:06149-3Allegro Assai5:01Concerto For Two Harpsichords BWV 1060 (In C Minor ∙ C-Moll ∙ Ut Mineur)14:02845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-4Allegro5:02149-5Largo Ovvero Adagio5:09149-6Allegro4:02Concerto For Four Harpsichords BWV 1065 (In A Minor ∙ A-Moll ∙ La Mineur)10:16845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-7[Allegro]4:35149-8Largo2:10149-9Allegro3:42Concerto BWV 1059R (In D Minor ∙ D-Moll ∙ Ré Mineur)10:52845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-10[Allegro]6:04149-11[Adagio]1:06149-12[Presto]3:52Concerto BWV 1058 (In G Minor ∙ G-Moll ∙ Sol Mineur)13:20845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble149-13[Allegro]3:36149-14Andante6:19149-15Allegro Assai3:25Orchestral Suites 1 & 2Suite No. 1 BWV 1066 (In C Major ∙ C-Dur ∙ Ut Majeur)27:43716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble150-1Ouverture10:51150-2Courante2:55150-3Gavotte I ∙ Gavotte II3:05150-4Forlane1:20150-5Menuet I ∙ Menuet II3:52150-6Bourrée I ∙ Bourrée II2:13150-7Passepied I ∙ Passepied II3:33Suite No. 2 BWV 1067 (In B Minor ∙ H-Moll ∙ Si Mineur)23:59716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble150-8Ouverture11:37150-9Rondeau1:35150-10Sarabande3:03150-11Bourrée I ∙ Bourrée II1:50150-12Polonaise ∙ Double3:01150-13Menuet1:28150-14Badinerie1:25Orchestral Suites 3 & 4Suite No. 3 BWV 1068 (In D Major ∙ D-Dur ∙ Ré Majeur)23:45716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble151-1Ouverture11:40151-2Air4:39151-3Gavotte I ∙ Gavotte II3:40151-4Bourrée1:10151-5Gigue2:42Suite No. 4 BWV 1069 (In D Major ∙ D-Dur ∙ Ré Majeur)24:12716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble151-6Ouverture13:07151-7Bourrée I ∙ Bourrée II2:17151-8Gavotte1:44151-9Menuet I ∙ Menuet II4:05151-10Réjouissance2:59Concertos And SinfoniasConcertos BWV 1044, 1052R, 1055R & 1045Concerto BWV 1044 (In A Minor ∙ A-Moll ∙ La Mineur)21:57845763Gustav LeonhardtConductor963656Leonhardt-ConsortEnsemble152-1Allegro8:49152-2Adagio Ma Non Tanto E Dolce5:44152-3Alla Breve7:35Concerto For Oboe DÀmore BWV 1055R (In A Major ∙ A-Dur ∙ La Majeur)14:04716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble152-4[Allegro]4:38152-5Larghetto5:07152-6Allegro Ma Non Tanto4:28Concerto For Violin BWV 1052R (In D Minor ∙ D-Moll ∙ Ré Mineur)21:34716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsemble152-7[Allegro]7:26152-8Adagio6:15152-9Allegro8:02152-10Sinfonia BWV 1045 (In D Major ∙ D-Dur ∙ Ré Majeur)7:02716084Nikolaus HarnoncourtConductor836185Concentus Musicus WienEnsembleSinfonia BWV 1046A Concertos BWV 1050A & 1064RSinfonia BWV 1046a (In F Major ∙ F-Dur ∙ Fa Majeur)13:38779781Christopher HogwoodConductor837442The Academy Of Ancient MusicEnsemble153-1Allegro3:57153-2Adagio3:37153-3Menuetto6:13Brandenburg Concerto No. 5 BWV 1050a (Early Version) (In D Major ∙ D-Dur ∙ Ré Majeur)18:32779781Christopher HogwoodConductor837442The Academy Of Ancient MusicEnsemble153-4Allegro7:52153-5Adagio5:29153-6Allegro5:22Concerto For Three Violins BWV 1064R (In D Major ∙ D-Dur ∙ Ré Majeur)15:24779781Christopher HogwoodConductor837442The Academy Of Ancient MusicEnsemble153-7Allegro5:45153-8Adagio5:31153-9Allegro4:08563997Parlophone Records Ltd.14Copyright (c)313190Optimal Media GmbHAH0735810Manufactured By313190Optimal Media GmbHAH0742810Manufactured By313190Optimal Media GmbHAH0743010Manufactured By313190Optimal Media GmbHAH0743110Manufactured By313190Optimal Media GmbHAH0743310Manufactured By313190Optimal Media GmbHAH0743410Manufactured By313190Optimal Media GmbHAH0743610Manufactured By313190Optimal Media GmbHAH0743710Manufactured By313190Optimal Media GmbHAH0743810Manufactured By313190Optimal Media GmbHAH0743910Manufactured By313190Optimal Media GmbHAH0744010Manufactured By313190Optimal Media GmbHAH0744310Manufactured By313190Optimal Media GmbHAH0744410Manufactured By313190Optimal Media GmbHAH0744510Manufactured By313190Optimal Media GmbHAH0744610Manufactured By313190Optimal Media GmbHAH0744710Manufactured By313190Optimal Media GmbHAH0744810Manufactured By313190Optimal Media GmbHAH0744910Manufactured By313190Optimal Media GmbHAH0745210Manufactured By313190Optimal Media GmbHAH0745510Manufactured By313190Optimal Media GmbHAH0745610Manufactured By313190Optimal Media GmbHAH0745710Manufactured By313190Optimal Media GmbHAH0745810Manufactured By313190Optimal Media GmbHAH0746010Manufactured By313190Optimal Media GmbHAH0746110Manufactured By313190Optimal Media GmbHAH0746210Manufactured By313190Optimal Media GmbHAH0746410Manufactured By313190Optimal Media GmbHAH0746510Manufactured By313190Optimal Media GmbHAH0746710Manufactured By313190Optimal Media GmbHAH0746910Manufactured By313190Optimal Media GmbHAH0748310Manufactured By313190Optimal Media GmbHAH0748410Manufactured By313190Optimal Media GmbHAH0748510Manufactured By313190Optimal Media GmbHAH0748610Manufactured By313190Optimal Media GmbHAH0748710Manufactured By313190Optimal Media GmbHAH0748910Manufactured By313190Optimal Media GmbHAH0749110Manufactured By313190Optimal Media GmbHAH0749210Manufactured By313190Optimal Media GmbHAH0749410Manufactured By313190Optimal Media GmbHAH0749510Manufactured By313190Optimal Media GmbHAH0749610Manufactured By313190Optimal Media GmbHAH0749710Manufactured By313190Optimal Media GmbHAH0749910Manufactured By313190Optimal Media GmbHAH0750010Manufactured By313190Optimal Media GmbHAH0750110Manufactured By313190Optimal Media GmbHAH0750210Manufactured By313190Optimal Media GmbHAH0750310Manufactured By313190Optimal Media GmbHAH0750410Manufactured By313190Optimal Media GmbHAH0750610Manufactured By313190Optimal Media GmbHAH0750810Manufactured By313190Optimal Media GmbHAH0752010Manufactured By313190Optimal Media GmbHAH0752110Manufactured By313190Optimal Media GmbHAH0752310Manufactured By313190Optimal Media GmbHAH0752410Manufactured By313190Optimal Media GmbHAH0752510Manufactured By313190Optimal Media GmbHAH0752610Manufactured By313190Optimal Media GmbHAH0752710Manufactured By313190Optimal Media GmbHAH0752910Manufactured By313190Optimal Media GmbHAH0753110Manufactured By313190Optimal Media GmbHAH0753310Manufactured By313190Optimal Media GmbHAH0753410Manufactured By313190Optimal Media GmbHAH0753510Manufactured By313190Optimal Media GmbHAH0753610Manufactured By313190Optimal Media GmbHAH0753710Manufactured By313190Optimal Media GmbHAH0753810Manufactured By313190Optimal Media GmbHAH0753910Manufactured By313190Optimal Media GmbHAH0754010Manufactured By313190Optimal Media GmbHAH0754110Manufactured By313190Optimal Media GmbHAH0754310Manufactured By313190Optimal Media GmbHAH0754410Manufactured By313190Optimal Media GmbHAH0754610Manufactured By313190Optimal Media GmbHAH0754710Manufactured By313190Optimal Media GmbHAH0755010Manufactured By313190Optimal Media GmbHAH0755110Manufactured By313190Optimal Media GmbHAH0755210Manufactured By313190Optimal Media GmbHAH0755310Manufactured By313190Optimal Media GmbHAH0755410Manufactured By313190Optimal Media GmbHAH0755510Manufactured By313190Optimal Media GmbHAH0755610Manufactured By313190Optimal Media GmbHAH0755810Manufactured By313190Optimal Media GmbHAH0755910Manufactured By313190Optimal Media GmbHAH0756010Manufactured By313190Optimal Media GmbHAH0756210Manufactured By313190Optimal Media GmbHAH0756310Manufactured By313190Optimal Media GmbHAH0756410Manufactured By313190Optimal Media GmbHAH0756610Manufactured By313190Optimal Media GmbHAH0756710Manufactured By313190Optimal Media GmbHAH0756810Manufactured By313190Optimal Media GmbHAH0756910Manufactured By313190Optimal Media GmbHAH0757010Manufactured By313190Optimal Media GmbHAH0757210Manufactured By313190Optimal Media GmbHAH0757310Manufactured By313190Optimal Media GmbHAH0757410Manufactured By313190Optimal Media GmbHAH0757510Manufactured By313190Optimal Media GmbHAH0757610Manufactured By313190Optimal Media GmbHAH0757710Manufactured By313190Optimal Media GmbHAH0757910Manufactured By313190Optimal Media GmbHAH0758010Manufactured By313190Optimal Media GmbHAH0758110Manufactured By313190Optimal Media GmbHAH0758210Manufactured By313190Optimal Media GmbHAH0758310Manufactured By313190Optimal Media GmbHAH0758410Manufactured By313190Optimal Media GmbHAH0758510Manufactured By313190Optimal Media GmbHAH0758710Manufactured By313190Optimal Media GmbHAH0758810Manufactured By313190Optimal Media GmbHAH0758910Manufactured By313190Optimal Media GmbHAH0759010Manufactured By313190Optimal Media GmbHAH0759110Manufactured By313190Optimal Media GmbHAH0759210Manufactured By313190Optimal Media GmbHAH0759310Manufactured By313190Optimal Media GmbHAH0759410Manufactured By313190Optimal Media GmbHAH0759510Manufactured By313190Optimal Media GmbHAH0759610Manufactured By313190Optimal Media GmbHAH0759810Manufactured By313190Optimal Media GmbHAH0759910Manufactured By313190Optimal Media GmbHAH0760010Manufactured By313190Optimal Media GmbHAH0760110Manufactured By313190Optimal Media GmbHAH0760210Manufactured By313190Optimal Media GmbHAH0760310Manufactured By313190Optimal Media GmbHAH0760410Manufactured By313190Optimal Media GmbHAH0760510Manufactured By313190Optimal Media GmbHAH0760710Manufactured By313190Optimal Media GmbHAH0760810Manufactured By313190Optimal Media GmbHAH0760910Manufactured By313190Optimal Media GmbHAH0761010Manufactured By313190Optimal Media GmbHAH0761110Manufactured By313190Optimal Media GmbHAH0761210Manufactured By313190Optimal Media GmbHAH0761310Manufactured By313190Optimal Media GmbHAH0761410Manufactured By313190Optimal Media GmbHAH0761510Manufactured By313190Optimal Media GmbHAH0761610Manufactured By313190Optimal Media GmbHAH0761710Manufactured By313190Optimal Media GmbHAH0761810Manufactured By313190Optimal Media GmbHAH0761910Manufactured By313190Optimal Media GmbHAH0762010Manufactured By313190Optimal Media GmbHAH0762110Manufactured By313190Optimal Media GmbHAH0762210Manufactured By313190Optimal Media GmbHAH0762310Manufactured By313190Optimal Media GmbHAH0762410Manufactured By313190Optimal Media GmbHAH0762610Manufactured By313190Optimal Media GmbHAH0762710Manufactured By313190Optimal Media GmbHAH0762810Manufactured By313190Optimal Media GmbHAH0762910Manufactured By313190Optimal Media GmbHAH0763010Manufactured By313190Optimal Media GmbHAH0763110Manufactured By313190Optimal Media GmbHAH0763210Manufactured By313190Optimal Media GmbHAH0763310Manufactured By313190Optimal Media GmbHAH0763410Manufactured By313190Optimal Media GmbHAH0763510Manufactured By313190Optimal Media GmbHAH0763610Manufactured By313190Optimal Media GmbHAH0763710Manufactured By313190Optimal Media GmbHAH0763810Manufactured By313190Optimal Media GmbHAH0763910Manufactured By + +194VariousTidy 25 - Hard-Drive (Special Deluxe Edition)AIFFMP3WAVCompilationLimited EditionPartially MixedSpecial EditionWAVAIFFWAVMixedMP3MP3MP3MP3ElectronicUK2021-08-26"One full wav version only, limited to 125 drives."Needs Vote001 Tidy SinglesFHS01CD - Heaven's Cry – For Heaven's Sake - The Ultimate 'Til Tears Do Us Part' Collection1Til Tears Do Us Part (A Heaven's Cry & Claim In Cricklewood By Bingo Barry)1:1564206Heaven's Cry2Til Tears Do Us Part (Energy Syndicate & HybridZ - Hoovers Cry (150 Mix))6:3064206Heaven's Cry3Til Tears Do Us Part (Energy Syndicate & Mark HybridZ - Hoovers Cry Hardcore Mix)5:4464206Heaven's Cry4Til Tears Do Us Part (Flash Harry's Orchestral Masterpiece)2:0364206Heaven's Cry5Til Tears Do Us Part (Flash Harry's Orchestral Masterpiece 1 Min Reprise)1:1664206Heaven's Cry6Til Tears Do Us Part (Flash Strums His Strings)0:1864206Heaven's Cry7Til Tears Do Us Part (Bobby T's KissDaFunk Rework)8:1564206Heaven's Cry8Til Tears Do Us Part (Heavens Call)0:5064206Heaven's Cry9Til Tears Do Us Part (Rolfs In Jail Stylophone Mix)0:1764206Heaven's Cry10Til Tears Do Us Part (Tidy Boys Really Sad Piano Ballad Version)1:3964206Heaven's Cry11Til Tears Do Us Part (Azure Radio Edit)2:3764206Heaven's Cry12Til Tears Do Us Part (Club Mix)7:1564206Heaven's Cry13Til Tears Do Us Part (Dark By Design Remix)8:0364206Heaven's Cry14Til Tears Do Us Part (Flash Harry Remix)9:2064206Heaven's Cry15Til Tears Do Us Part (Jon Langford's K Series Remix)6:0764206Heaven's Cry16Til Tears Do Us Part (Lamin8ers Vs JTS Hardcore Mix)4:3564206Heaven's Cry17Til Tears Do Us Part (Lamin8rs Remix)7:5864206Heaven's Cry18Til Tears Do Us Part (Scott Fo Shaw & Mike Avery Remix)7:4764206Heaven's Cry19Til Tears Do Us Part (Starfire Remix)5:1064206Heaven's Cry20Til Tears Do Us Part (Stimulant DJ's Remix)9:1264206Heaven's Cry21Til Tears Do Us Part (Yoji Biomehanika Remix)8:4664206Heaven's Cry22Til Tears Do Us Part (Kidd Kaos Mix)7:1564206Heaven's Cry23Til Tears Do Us Part (Paul Jacobson Remix)8:4564206Heaven's Cry24Til Tears Do Us Part (Scott Attrill Exclusive Electrik Remix)6:5564206Heaven's Cry25Til Tears Do Us Part (Heavens Cry Beer Garden Tap Version)1:2464206Heaven's Cry26Til Tears Do Us Part (Jason Cortez Remix)8:3964206Heaven's Cry27Til Tears Do Us Part (Heavens Die)7:2164206Heaven's Cry28Til Tears Do Us Part (Les Dawsons Pissed Up Pub Session)0:3464206Heaven's Cry29Til Tears Do Us Part (Mr Softy - Heaven's Ice Cream)0:3664206Heaven's Cry30Til Tears Do Us Part (Tidy Boys Weekender Rock Party Version)6:5664206Heaven's CrySN069 - Spacecorn - Axel F31Axel F (D And A Remix)5:4631575Spacecorn32Axel F (Non Vocal)6:2231575Spacecorn33Axel F (Vocal Original)6:2231575SpacecornSYP101T - Barely Legal - The Future34The Future (Colin Barratt Remix)7:3585474Barely Legal35The Future (Guyver Remix)8:3485474Barely Legal36The Future (Ingo Remix)8:2185474Barely Legal37The Future (Lee Pasch Remix)7:5785474Barely LegalSYP102 - Maddox and Kaye - Tales From The Crypt38Tales From The Krypt (Ingo Remix)8:2149155Paul MaddoxMaddox&36378Ben KayeKaye39Tales From The Krypt (Original Mix)6:4849155Paul MaddoxMaddox&36378Ben KayeKayeSYP103 - Kernzy & Klemenza - Sack The Drummer40Sack The Drummer (Original Mix)8:21106819Kernzy & Klemenza41You Freak (Original Mix)7:27106819Kernzy & KlemenzaSYP104 - Chris C and Madam Zu Meets Ben Kaye - Rock The Target42Rock The Target (Barely Legal Remix)8:445522Chris C&11574Madam ZuMeets36378Ben Kaye43Rock The Target (Original Mix)9:235522Chris C&11574Madam ZuMeets36378Ben KayeSYP105 - Barely Legal - Goosebumps44Goose Bumps (Original Mix)8:1085474Barely Legal45Goosebumps (Lee Pasch Remix)8:0485474Barely LegalTDV001 - Beatniz - Kick It46Kick It (BK Remix)7:5631566Beatniqz47Kick It (Original Mix)6:2331566BeatniqzTDV20 - TDV20 Remixes48Are You All Ready (BK Remix)7:025531Tony De Vit49Bring The Beat Back (Ivor Semi's Rubber Dub)7:265531Tony De Vit50Burning Up (BK's Spirit Of 95 Remix)8:055531Tony De Vit51Burning Up (Nicholson Remix)7:335531Tony De Vit52Don't Ever Stop (Digital Mafia & Dilemma Remix)7:225531Tony De Vit53Get Loose (Leigh Green Remix)7:365531Tony De Vit54I Don't Care (Leigh Green & Steve O'Brady Remix)7:105531Tony De Vit55I Don't Care (Leigh Green & Steve O'Brady Vocal Mix)7:135531Tony De Vit56I Need Luvin' (Original Mix)8:545531Tony De Vit57I Need Luvin' (Paul Maddox Dub)6:395531Tony De Vit58I Need Luvin' (Paul Maddox Remix)7:335531Tony De Vit59Splashdown (Ben Stevens Remix)8:185531Tony De Vit60Feel My Love (Don't Go Away) (Technikal Remix)8:195531Tony De VitFeat68702Niki Mak61Give Me A Reason (Nicholson Remix)7:115531Tony De VitFeat68702Niki MakTidy 101T - Handbaggers - U Found Out62U Found Out (Handbag Mode Version)6:13253949The HandbaggersHandbaggers63U Found Out (Red Hand Gang Mix)7:59253949The HandbaggersHandbaggers64U Found Out (Strike Me Down Mix)6:41253949The HandbaggersHandbaggers65U Found Out (Tradesmans Entrance Mix)8:46253949The HandbaggersHandbaggersTidy 102T - Rim Shot - Everybody On The Floor66Everybody On The Floor (Alfred Street Mix)6:4315363Rim Shot67Everybody On The Floor (Hyperlogic Mix)6:3315363Rim Shot68Everybody On The Floor (Red Hand Gang Mix)7:4915363Rim Shot69Everybody On The Floor (Saint Mix)5:3515363Rim ShotTidy 103T - Angel Deluxe - I Wanna Be With You70I Wanna Be With You (Brain Bashers Remix)7:3115364Angel Deluxe71I Wanna Be With You (Deep Bass Demolition Mix)6:1315364Angel Deluxe72I Wanna Be With You (Magic Hand Mix)6:4615364Angel Deluxe73I Wanna Be With You (Original Mix)5:2415364Angel Deluxe74I Wanna Be With You (Red Hand Gang Mix)6:5315364Angel DeluxeTidy 104RR - The Handbaggers - U Found Out (Tidy Girls Remix)75U Found Out (APA Dub)7:37253949The HandbaggersHandbaggers76U Found Out (Red Hand Gang Mix)7:59253949The HandbaggersHandbaggers77U Found Out (Tidy Girls Remix)7:53253949The HandbaggersHandbaggersTidy 104T - Handbaggers - U Found Out78U Found Out (Handbag Mode Mix)6:13253949The HandbaggersHandbaggers79U Found Out (Hyperlogic Remix)5:55253949The HandbaggersHandbaggers80U Found Out (Radio Edit)3:47253949The HandbaggersHandbaggers81U Found Out (Tony De Vit Remix)7:34253949The HandbaggersHandbaggers82U Found Out (Tom Wilson Mix)6:29253949The HandbaggersTidy 105T - Benedict Brothers - 4 Those That Can Dance834 Those That Can Dance (Keylock Base Mix)6:2715365Benedict Brothers844 Those That Can Dance (Klubbed Up Remix)7:4015365Benedict Brothers854 Those That Can Dance (Original Edit)4:1715365Benedict Brothers864 Those That Can Dance (Original Mix)8:5815365Benedict Brothers874 Those That Can Dance (Sub Junkies Dub)6:4615365Benedict BrothersTidy 106T - Hyperlogic - U Got The Love88U Got The Love (Original Edit)3:541687Hyperlogic89U Got The Love (Original Mix)7:171687Hyperlogic90U Got The Love (Red Hand Gang Remix)11:011687Hyperlogic91U Got The Love (Red Hand Gang Vs Hyperlogic Edit)3:571687Hyperlogic92U Got The Love (Red Hand Gang Vs Hyperlogic)3:591687Hyperlogic93U Got The Love (Sub Junkies Remix)7:441687Hyperlogic94U Got The Love (Ulysses 31 Remix)10:081687HyperlogicTidy 107P - The Red Hand Gang - Gotta Keep On (Time For Gettin' Down)95Gotta Keep On (Time For Gettin' Down) (Left Hand Remix)8:479183The Red Hand Gang96Gotta Keep On (Time For Gettin' Down) (Right Hand Remix)10:489183The Red Hand GangTidy 108T - Allnighters - Black Is Black97Black Is Black (Lexa Remix)7:0515366Allnighters98Black Is Black (Original Mix)7:1015366Allnighters99Black Is Black (Radio Edit)3:3815366Allnighters100Black Is Black (Sharp Remix)7:1615366Allnighters101Black Is Black (UK Gold Remix)6:3715366Allnighters102Black Is Black (Yekuana Remix)9:0315366AllnightersTidy 109T - UK Gold - Nuclear Shower103Nuclear Shower (APA Mix)7:22100940UK Gold (2)104Nuclear Shower (Benedict Bros Remix)6:46100940UK Gold (2)105Nuclear Shower (Lexa Mix)6:13100940UK Gold (2)106Nuclear Shower (Original)7:37100940UK Gold (2)107Nuclear Shower (UK Gold Remix)5:45100940UK Gold (2)Tidy 110T - Benedict Brothers - Honey Child108Honey Child (Original)6:5015365Benedict Brothers109Honey Child (Sapphire & Steel Remix)8:3215365Benedict BrothersTidy 111T - Dyewitness - What Would You Like To Hear Again?110What Would You Like To Hear Again (Benedict Brothers Remix)5:35186453Dyewitness111What Would You Like To Hear Again (Dancefloor Glory Mix)7:42186453Dyewitness112What Would You Like To Hear Again (Eldon Tryell Remix)7:02186453Dyewitness113What Would You Like To Hear Again (Ian M Trade Mix)8:18186453Dyewitness114What Would You Like To Hear Again (Original Mix)4:28186453Dyewitness115What Would You Like To Hear Again (Pete Wardman Trade Mix)6:40186453Dyewitness116What Would You Like To Hear Again (Tidyman Mix)6:32186453Dyewitness117What Would You Like To Hear Again (Tidyman Radio Edit)3:38186453DyewitnessTidy 112T - Bulletproof - Mistakes118Mistakes (Ground Zero Mix)8:4847785Bulletproof (2)119Mistakes (Original 12 Inch Mix)7:3647785Bulletproof (2)Tidy 113T - Hyperlogic - Only Me120Only Me (Hyperlogic '98 Dub)6:381687Hyperlogic121Only Me (Invisible Man Remix)7:211687Hyperlogic122Only Me (Matt Kootchi Deep Freeze Dub)6:441687Hyperlogic123Only Me (Original Red Vinyl Edit)4:021687Hyperlogic124Only Me (P And C Remix)7:461687Hyperlogic125Only Me (Red Jerry '95 Remix)8:101687Hyperlogic126Only Me (Rhythm Masters To The Groove Mix)6:461687Hyperlogic127Only Me (Tidyman Remix)6:241687Hyperlogic128Only Me (Tin Tin Out 2000 Remix)9:261687Hyperlogic129Only Me (Untidy Dub)6:231687HyperlogicTidy 114T - Bulletproof - Mistakes Remixes130Mistakes (Knuckleheadz Remix)6:5047785Bulletproof (2)131Mistakes (Steve Thomas Remix)7:1147785Bulletproof (2)Tidy 115T - Steve Blake - Expression132Expression (F1 Remix)8:2534674Steve Blake133Expression (Original Mix)6:3534674Steve BlakeTidy 116 AS - Keep It Tidy - Album Sample Vol 1134Black Is Black (Ian M Remix)6:5215366Allnighters135I Wanna Be With You (Brain Bashers Remix)7:3215364Angel DeluxeTidy 117 AS - Keep It Tidy Album Sample Vol 2136Gotta Keep On (Time 4 Gettin' Down) (Jon The Dentist Remix)6:419183The Red Hand Gang137Everybody On The Floor (Rachel Auburn Remix)6:5417402RimshotRim ShotTidy 118T - Signum - What Ya Got 4 Me138What Ya Got 4 Me (7 Inch Vocal Edit)4:324629Signum139What Ya Got 4 Me (Captain Tinrib Remix)7:384629Signum140What Ya Got 4 Me (Original 12 Inch Instrumental)7:224629Signum141What Ya Got 4 Me (Plug N Play Remix)7:574629Signum142What Ya Got 4 Me (Vocal 12inch Mix)7:224629Signum143What Ya Got 4 Me (Vocal Edit)4:324629Signum144What Ya Got 4 Me (Untidy Dub)7:274629SignumTidy 119T - Trauma - Higher145Higher (Original Mix)9:058352Trauma146You'll Know (Original Mix)8:128352TraumaTidy 120T - Recycle EP147Only Me (Doug Laurent Remix)6:381687Hyperlogic148Pressure (Baby Doc Remix)6:144629SignumTidy 120T2 - Recycle EP149U Got The Love (Mondos Poolside Pumper Remix)8:191687Hyperlogic150Expression (Signum Remix)7:3734674Steve BlakeTidy 121T - Travel - Bulgarian151Bulgarian (Orginal Mix)6:0310755Travel152Bulgarian (Original Edit)3:5410755Travel153Bulgarian (Signum Remix)6:3710755TravelTidy 121T2 - Travel - Bulgarian154Bulgarian (Hyperlogic Remix)8:2010755Travel155Bulgarian (Insisions Remix)7:2910755Travel156Bulgarian (Jon The Dentist Remix)8:1510755TravelTidy 122T - Trauma - Party Time157Fantastic (Original Mix)9:028352Trauma158Party Time (Original Mix)8:288352TraumaTidy 123T - Tidy Girls EP159Lookin' Good (Original Mix)6:4818435Lisa Lashes160Screwdriver (Original Mix)6:338337Rachel AuburnTidy 123T2 - Tidy Girls EP161I Need U (Original Mix)8:0321059Anne Savage162Rock With Me (Original Mix)7:508339Lisa Pin-UpTidy 124T - Cunaro & Dean - It's About Time163It's About Time (Freak & Mac Zimms Remix)6:3363669Cunaro & Dean164It's About Time (Original Mix)7:0063669Cunaro & Dean165It's About Time (UK Gold Remix)6:4263669Cunaro & DeanTidy 125T - Dave Holmes - Samsara166Samsara (Original 12 Inch)5:5832921Dave Holmes167Samsara (Steve Morley Radio Edit)3:3232921Dave Holmes168Samsara (Steve Morley Remix)6:0232921Dave HolmesTidy 126T - Jon The Dentist & Ollie Jaye - Imagination169Imagination (Hard House Rework)8:4541595Jon The Dentist & Ollie Jaye170Imagination (Untidy Dub)7:2241595Jon The Dentist & Ollie JayeTidy 126T2 - Jon The Dentist and Ollie Jaye - Imagination171Imagination (Barabas & OD1 Epic Trance Score)8:3141595Jon The Dentist & Ollie Jaye172Imagination (K90 Paradise Remix)7:5441595Jon The Dentist & Ollie JayeTidy 127T - Ian M - Dreamer173Dreamer (Original Mix)7:4520165Ian M174Dreamer (Pants & Corset Remix)8:2520165Ian MTidy 128T - Signum feat. Scott Mac - Coming On Strong175Coming On Strong (Original Radio Edit)3:274629SignumFeat.38222Scott Mac176Coming On Strong (Bobellow Vs Euphoria Remix)8:174629SignumFeat.38222Scott Mac177Coming On Strong (DJ Jurden Remix)7:174629SignumFeat.38222Scott Mac178Coming On Strong (Hyperlogic Remix)7:224629SignumFeat.38222Scott Mac179Coming On Strong (OD404 Remix)7:394629SignumFeat.38222Scott Mac180Coming On Strong (Original Mix)8:004629SignumFeat.38222Scott Mac181Coming On Strong (Tiesto Remix)6:384629SignumFeat.38222Scott Mac182Coming On Strong (Untidy Dub)6:274629SignumFeat.38222Scott MacTidy 129T - Tony De Vit - Are You All Ready183Are You All Ready (Original Mix)9:265531Tony De Vit184Splashdown (Original Mix)8:515531Tony De VitTidy 130T - The Generator - Where Are You Now185Where Are You Now (Airstyles)8:1628091The Generator186Where Are You Now (Moonman Remix)7:0828091The Generator187Where Are You Now (Trauma Remix)8:5928091The GeneratorTidy 130T2 - The Generator - Where Are You Now188Where Are You Now (Original Mix)9:1328091The Generator189Where Are You Now (Stimulant Mix)7:3728091The Generator190Where Are You Now (Untidy Dub)7:5428091The GeneratorTidy 131T - UK Gold - Cuz The House Gets Warm191Cuz The House Gets Warm (Original Mix)6:56100940UK Gold (2)192Cuz The House Gets Warm (Trauma Remix)8:53100940UK Gold (2)Tidy 132T - Sundissential EP193Destroy The Sound (Original Mix)8:1415223Andy Farley194I Need A Fix (Original Mix)7:4663230Nick RaffertyTidy 132T2 - Sundissential EP195We Came We Saw (Original Mix)5:3718435Lisa Lashes196I Believe In Life (Original Mix)7:5463658Paul KershawTidy 133T - Barabas & OD1 - Jack Of Klubz197Jack Of Klubz (Original Mix)6:2740042Barabas & OD1198Jack Of Klubz (Tidy Boys Remix)6:3340042Barabas & OD1199Jack Of Klubz (Tidy Boys Unfinished Demo Version)6:4940042Barabas & OD1Tidy 134T - Trauma Trax200Salt And Shake (Original Mix)8:088352Trauma201Get Back (Original Mix)8:598352TraumaVs15223Andy Farley202They're Out To Get Me (Original Mix)8:438352TraumaVs20165Ian M203Deep Swarm (Original Mix)9:178352TraumaVs105162John Weatherley204Rok The Beat (Original Mix)9:238352TraumaVs105162John Weatherley205Don't Stop (Original Mix)7:588352TraumaVs100940UK Gold (2)Tidy 135T - Jon The Dentist Vs Ollie Jaye - Feel So Good206Feel So Good Feel So Good (Original Mix)8:1041595Jon The Dentist & Ollie Jaye207Feel So Good Feel So Good (Radio Edit)6:2141595Jon The Dentist & Ollie Jaye208Imagination (2000 Remix)6:5841595Jon The Dentist & Ollie JayeTidy 135T2 - Jon The Dentist Vs Ollie Jaye - Feel So Good209Feel So Good (Dave Holmes Remix)7:3541595Jon The Dentist & Ollie Jaye210Feel So Good (Jon The Dentist Radio Edit)3:5641595Jon The Dentist & Ollie Jaye211Feel So Good (Untidy Dub)8:1641595Jon The Dentist & Ollie Jaye212Feel So Good (Vinylgroover And The Red Hed Remix)6:5241595Jon The Dentist & Ollie JayeTidy 136T - Tidy Girls Presents...Anne Savage213I Need A Man (Original Mix)7:4921059Anne Savage214Real Freaks (Scooper & Sticks Remix)5:1521059Anne Savage215Real Freaks (UK Gold's Fourplay Remix)7:3221059Anne SavageTidy 137T - Brainbashers - Do It Now216Do It Now (Houserockers Bug Powder Remix)8:1212764Brain Bashers217Do It Now (Original Mix)7:3612764Brain Bashers218Earthquake (Original Mix)7:5912764Brain BashersTidy 137T2 - Brainbashers - Do It Now219Do It Now (Hijackers Remix)7:1312764Brain Bashers220Do It Now (Lock N Load Remix)6:5012764Brain BashersTidy 138T - Lisa Lashes - Unbelievable221Dance 2 The House (Don't Go) (Original Mix)7:2018435Lisa Lashes222Unbelievable (Original Mix)8:1118435Lisa LashesTidy 139T - The Originator - Give It All You Got223Give It All You Got (Brainbashers Remix)7:5763650The Originator224Give It All You Got (John Whiteman & Ingo Remix)7:1363650The Originator225Give It All You Got (Klub Mix)7:5163650The Originator226Give It All You Got (Lisa Lashes Remix)8:2163650The OriginatorTidy 140T - Tony De Vit - The Dawn227The Dawn (Paul Janes Edit)4:105531Tony De Vit228The Dawn (Paul Janes Remix)9:445531Tony De VitTidy 141T - Artemesia - Bits and Pieces229Bits And Pieces (BK Remix)8:401686Artemesia230Bits And Pieces (Hi-Jackers Remix)7:291686Artemesia231Bits And Pieces (Tidy Boys Remix)7:261686ArtemesiaTidy 141T2 - Artemesia - Bits and Pieces232Bits And Pieces (OD404 Remix)7:061686Artemesia233Bits And Pieces (Original Mix)5:181686Artemesia234Bits And Pieces (UK Gold Remix)8:001686ArtemesiaTidy 142T - Stimulant DJ's - Hoovertime235Hoovertime (Captain Tinrib Remix)6:4632426Stimulant DJs236Hoovertime (Original Mix)8:0432426Stimulant DJsTidy 143T - Dyewitness - Observing The Earth237Observing The Earth (Ian M Remix)9:07186453Dyewitness238Observing The Earth (Original Mix)4:20186453Dyewitness239Observing The Earth (Stimulant DJ's Remix)7:36186453DyewitnessTidy 144T - The Grand - Reload240Reload (Billy 'Daniel' Bunter & Jon Doe Remix)7:4763643The Grand241Reload (Original Mix)6:5163643The GrandTidy 145T - John Whitemann - Can't Beat The System242Can't Beat The System (Ingo Remix)7:2232919John Whitemann243Can't Beat The System (Original Mix)7:0032919John WhitemannTidy 146T - Smokin' Bert Cooper - Gettin' Warm244Getting Warm (Ingo Mix)7:2517630Smokin' Bert Cooper245Getting Warm (One Eyed Jack Mix)6:4517630Smokin' Bert Cooper246Getting Warm (Original Mix)7:1317630Smokin' Bert CooperTidy 147T - The Guv'nors - Busted247Busted (Original Mix)7:0731573The GuvnorsThe Guv'nors248Dynamite (Original Mix)7:2431573The GuvnorsThe Guv'norsTidy 148T - Bulletproof - Say Yeah249Dance To The Rhythm (Original Mix)7:3747785Bulletproof (2)250Say Yeah (Original Mix)7:0847785Bulletproof (2)Tidy 149T - Ingo - Ready 4 Dis251My House (Original Mix)7:2620958Ingo252Ready 4 Dis (Original Mix)7:2320958IngoTidy 150T - Stimulant DJ's - Are You Serious253Are You Serious (Original Mix)8:2532426Stimulant DJs254Are You Serious (Paul Glazby Remix)7:4432426Stimulant DJsTidy 151T - Jon Bishop - I'm In Control255I'm In Control (Club Caviar Remix)6:0538228Jon Bishop256I'm In Control (Original Mix)7:5538228Jon Bishop257I'm In Control (Smokin' Bert Cooper Remix)7:0538228Jon Bishop258I'm In Control Hi Volume (Original Mix)7:5538228Jon BishopTidy 152T - Haziza - One More259One More (Original Mix)5:5833759Haziza260One More (Smokin' Bert Cooper Remix)6:3533759HazizaTidy 152T2 - Haziza - One More261One More (Flash Harry Remix)8:3933759Haziza262One More (Jon Doe Remix)6:4933759HazizaTidy 153T - The Crow - What Ya Lookin' At263What Ya Lookin' At (Bulletproof Remix)8:0920840DJ The CrowThe Crow47785Bulletproof (2)Remix264What Ya Lookin' At (Lisa Lashes And Anne Savage Vs Ingo Remix)8:4320840DJ The CrowThe Crow21059Anne SavageRemix20958IngoRemix18435Lisa LashesRemix265What Ya Lookin' At (Original Club Mix)7:0420840DJ The CrowThe Crow266What Ya Lookin' At (Radio Edit)3:3920840DJ The CrowThe Crow267What Ya Lookin' At (Steve Thomas Remix)7:5920840DJ The CrowThe Crow11146Steve ThomasRemixTidy 154T - Dave Holmes - Devotion268Devotion (Original Mix)7:3232921Dave Holmes269Devotion (Stimulant DJ's Remix)10:0632921Dave HolmesTidy 154T2 - Dave Holmes - Devotion270Devotion (Paul Janes Remix)8:4732921Dave Holmes271Devotion (Sam E Reeve Remix)7:3432921Dave HolmesTidy 155T - E Trax - Let's Rock272Let's Rock (Alan Thompson Alter Ego Remix)7:297600E-Trax273Let's Rock (Pants & Corset Remix)9:587600E-TraxTidy 155T2 - E Trax - Let's Rock274Let's Rock (Steve Thomas Remix)7:017600E-Trax275Let's Rock (BK's Nukleuz Remix)8:017600E-TraxTidy 155T3 - E Trax - Let's Rock276Let's Rock (Tony De Vit Remix)8:467600E-Trax277Let's Rock (Ian M Remix)7:177600E-TraxTidy 156T - E-Wok - Go Back278Go Back (Mr Bishi Remix)6:4721468E-Wok279Go Back (Original Mix)5:2621468E-WokTidy 156T2 - E-Wok - Go Back280Go Back (Samuel E Reeve Remix)8:4521468E-Wok281Go Back (Trauma Remix)8:5321468E-WokTidy 157T - Nik Denton Vs Paul King - Spacehopper282Spacehopper (Original Mix)9:2163638Nik Denton Vs Paul King283Spacehopper (Overload's Shaking Cubicle Mix)9:0963638Nik Denton Vs Paul KingTidy 158T - Heaven's Cry - Til Tears Do Us Part284Til Tears Do Us Part (Club Mix)7:1564206Heaven's Cry285Til Tears Do Us Part (Flash Harry Remix)9:1964206Heaven's Cry286Til Tears Do Us Part (Radio Edit)3:2064206Heaven's CryTidy 158T2 - Heaven's Cry - Til Tears Do Us Part287Til Tears Do Us Part (Starfire Remix)5:1064206Heaven's Cry288Til Tears Do Us Part (Stimulant DJ's Remix)9:1264206Heaven's CryTidy 159T - Yoda - Definitely289Definitely (DJ Scot Project)8:4013796Yoda290Definitely (Original Mix)6:4613796YodaTidy 160T - Ingo - Move291Boom (Original Mix)8:4520958Ingo292Move (Original Mix)6:3420958IngoTidy 161T - Transisters - Backwards Bitch293Backwards Bitch (Dean Facer Remix)7:2821469Transisters294Backwards Bitch (Diablo Remix)7:2721469TransistersTidy 162T - Satellite Kidz - Can U Feel It295Can U Feel It (Original Mix)6:4421480Satellite Kidz296Funky Nuts (Original Mix)8:0421480Satellite KidzTidy 163T - Signum - What Ya Got 4 Me297What Ya Got 4 Me (Flash Harry Remix)8:264629Signum298What Ya Got 4 Me (JFK Remix)7:434629Signum299What Ya Got 4 Me (Kumara Remix)7:144629Signum300What Ya Got 4 Me (Original Radio Edit)4:324629Signum301What Ya Got 4 Me (Stimulant DJ's Remix)9:164629SignumTidy 164T - Question Mark - The Birds302The Birds (Original Mix)5:4821652Question Mark303The Birds (Paul Maddox Remix)6:2721652Question MarkTidy 165T - Succargo - Once Again304Get It Higher (Original Mix)6:5541070Succargo305Once Again (Original Mix)6:2841070SuccargoTidy 166T - Lee Haslam - Here Comes The Pain306Here Comes The Pain (Original Mix)7:1937429Lee Haslam307I Need U (Original Mix)8:1637429Lee HaslamTidy 167T - DJ Shredda - Chainsaw308Chainsaw (The Club Mix)5:4433338DJ Shredda309Chainsaw (The Crow Remix)6:5433338DJ Shredda20840DJ The CrowThe CrowRemix310Chainsaw (The Freak Remix)6:2833338DJ Shredda311Chainsaw (Ubserver Remix)3:1133338DJ ShreddaTidy 168T - Defective Audio - Last Orders312Last Orders (Original Mix)8:3324085Defective Audio313Skyline (Original Mix)7:3724085Defective AudioTidy 169T - Recycle EP2 Part 1314Real Freaks (The Hoodlums All Freaked Out Remix)5:3321059Anne Savage315Higher (Ultra Violent Remix)8:458352TraumaTidy 170T - Paul Maddox - Revolution316Raid (Original Mix)8:0049155Paul Maddox317Revolution (Original Mix)8:4249155Paul MaddoxTidy 171T - Champion Burns - It's In My Head318It's In My Head (Original Mix)7:2315348Champion Burns319It's In My Head (Paul Maddox Remix)7:0515348Champion BurnsTidy 172T - Paul Glazby - I'm Your Nightmare320Funky Regulator (Original Mix)6:4218360Paul Glazby321I'm Your Nightmare (Original Mix)8:1418360Paul GlazbyTidy 173T - Psyclone - Good Side322Good Side (Andy Farley Remix)8:2838231Psyclone323Good Side (Guyver Remix)7:0138231PsycloneTidy 174T - Jez & Charlie - It's About Music324It's About Music (Original Mix)7:1124084Jez & Charlie325It's About Music (Stimulant DJ's Remix)8:2724084Jez & CharlieTidy 175T - Lisa Lashes Vs Lab4 - Unbelievable326Unbelievable (Lab4's Doubting Thomas Remix)7:1818435Lisa LashesVs19367Lab 4327Unbelievable (Lab4's Licensed To Thrill Remix)7:2718435Lisa LashesVs19367Lab 4Tidy 176T - Untidy Dubs - Funky Groove328Funky Groove (Flash Harry Remix)8:4311712Untidy Dubs329Funky Groove (Kronos Remix)8:0811712Untidy DubsTidy 177T - MAQ - Attention330Attention (Original Mix)6:4988802M.A.Q.331Groove, Stop, Jump (Original Mix)7:3288802M.A.Q.Tidy 178T - Lab4 - Reuiem3324th Floor (Original Mix)9:4219367Lab 4333Requiem (Original Mix)7:3319367Lab 4Tidy 179T - Jon Bishop - Stalker334Stalker (Hoodlums Remix)6:3238228Jon Bishop335Stalker (Original Mix)7:2938228Jon BishopTidy 180T - Paul Maddox - Tension336Tension (Original Mix)7:1749155Paul Maddox337Tension (The Freak Remix)7:1649155Paul MaddoxTidy 181T - Tony De Vit - I Don't Care338I Don't Care (BK Remix)9:565531Tony De Vit339I Don't Care (Original Trade Mix)9:295531Tony De VitTidy 182T - Committee - Welcome (I Said Shut Up)340Welcome (I Said Shut Up) (OGR Remix)6:5543570Committee341Welcome (I Said Shut Up) (Paul Janes 'Through The K Hole' Remix)8:1443570CommitteeTidy 183T - Paul Maddox and DJ GRH - New York New York342New York New York (OD404 Remix)7:3649155Paul MaddoxVs229663DJ GRH343New York New York (Original Mix)8:1849155Paul MaddoxVs229663DJ GRHTidy 184T - Recycled EP2 Part 2344U Found Out (Simon Parkes Remix)7:00253949The HandbaggersHandbaggers345Bulgarian (Paul Maddox Remix)8:3110755TravelTidy 185T - Ben Kaye - Technology346Constitution (Original Mix)7:4736378Ben Kaye347Techno-ology (Original Mix)6:4136378Ben KayeTidy 186T - Anne Savage - Hellraiser348Four Leaf Clover (Original Mix)7:5321059Anne Savage349Hellraiser (Original Mix)7:0121059Anne SavageTidy 187T - Ingo - 48 Hours35048 Hours (Original Mix)6:2420958Ingo351Song 14 (Original Mix)6:3920958IngoTidy 188T - Ben Kaye - Go Fuck Yourself352Go Fuck Yourself (Original Mix)7:4636378Ben Kaye353The Other Side (Original Mix)7:3836378Ben KayeTidy 189T - Champion Burns - Hell's Reign354Hell's Reign (Ben Kaye Remix)7:5815348Champion Burns355Hell's Reign (Original)8:0115348Champion BurnsTidy 190T - SJ & Baby Doc - I Need You356I Need U (Glazby & Maddox Remix)8:1438309Baby Doc & S-JSJ And Baby Doc357I Need U (Original Mix)7:5838309Baby Doc & S-JSJ And Baby DocTidy 191T - Rundell & Maddox - So Long358Homicide (Original Mix)7:00129038Rundell & Maddox359So Long (Original Mix)8:13129038Rundell & MaddoxTidy 192T - Nick Rafferty and PBS - Groovin'360Groovin' (Jez & Charlie Remix)7:3763230Nick Rafferty&115089PBS (Phatt Bloke & Slim)PBS361Groovin' (Original Mix)7:2863230Nick Rafferty&115089PBS (Phatt Bloke & Slim)PBSTidy 193T - Lab4 - Candyman362Candyman (Guyver Remix)8:4419367Lab 4363Candyman (Original Mix)6:5619367Lab 4Tidy 194T - Lisa Lashes - What Can You Do 4 Me364What Can You Do For Me (Original Mix)7:4718435Lisa Lashes365What Can You Do For Me (Tidy Boys Remix)8:5318435Lisa LashesTidy 194T2 - Lisa Lashes - What Can You Do 4 Me366What Can You Do 4 Me (Haslam & Guyver's Tidy Two Remix)8:5918435Lisa Lashes367What Can You Do For Me (Colin Barratt Remix)8:3518435Lisa LashesTidy 195T - Paul Maddox Feat Niki Mak - Synthosaurus368Synthosaurus (Moments Of Madness Dub)6:4849155Paul MaddoxFeat.68702Niki Mak369Synthosaurus (Original Mix)6:4849155Paul MaddoxFeat.68702Niki MakTidy 196T - Tara Reynolds - Mercy370Mercy (OD404 Remix)7:4694855Tara Reynolds371Mercy (Original Mix)8:4094855Tara ReynoldsTidy 197T - Champion Burns - Scratchism372Scratchism (Original Mix)7:5315348Champion Burns373Scratchism (Sam E Reeve Remix)7:0315348Champion BurnsTidy 198T - Colin Barratt - Attack Ya Bitch374Attack Ya Bitch (Original Mix)8:05113663Colin Barratt375Stop The Rock (Original Mix)7:30113663Colin BarrattTidy 199T - Rundell and Maddox - Everybodies Hardcore376Everybody's Hardcore (Original Mix)6:40129038Rundell & Maddox377Rumpshaker (Original Mix)7:16129038Rundell & MaddoxTidy 200T - NRG - Never Lost His Hardcore378Never Lost His Hardcore (Ilogik Remix)8:0620485N.R.G.NRG379Never Lost His Hardcore (Paul Maddox Remix)8:1920485N.R.G.NRGTidy 200T2 - NRG - Never Lost His Hardcore380Never Lost His Hardcore (Baby Doc 97 Remix)6:3120485N.R.G.NRG381Never Lost His Hardcore (Nick Sentience Remix)7:5220485N.R.G.NRGTidy 201T - Ingo Vs Charlotte Birch / Colin Barratt Vs Charlottle Birch382Prophecy (Original Mix)8:17506718Colin BarrettVs63234Charlotte Birch383Romper Stomper (Original Mix)9:1820958IngoVs63234Charlotte BirchTidy 202T - Shaun M & Abandon - Another Man's Language384Another Man's Language (Equinox Remix)6:55207355Shaun M&104447Abandon385Another Man's Language (Original Mix)7:5620958Ingo&227276Eseni DJTidy 203T - Ingo and Eseni DJ - Scare Tactics386Drifting (Original Mix)6:5520958Ingo&227276Eseni DJ387Scare Tactics (Original Mix)8:5420958Ingo&227276Eseni DJTidy 204T - Vinylgroover & The Red Head - The Answer388The Answer (2004 Rework)7:2615346Vinylgroover & The Red HedPresents78954Bam Bam & PebblesBB And P389The Answer (Original Mix)7:2015346Vinylgroover & The Red HedPresents78954Bam Bam & PebblesBB And PTidy 205T - Nick Rowland - Fireball390Fireball (Original Mix)6:54130735Nick Rowland391Overdrive (Original Mix)7:33130735Nick RowlandTidy 206T - Nick Rafferty and The Coalition - Shine392Shine (Original Mix)7:35146655Nick Rafferty & The Coalition393To The Limit (Original Mix)7:45146655Nick Rafferty & The CoalitionTidy 207T - Anne Savage Vinylgroover - Intoxicating Rhythm394Intoxicating Rhythm (Big Drum Dub Mix)7:0121059Anne Savage,15346Vinylgroover & The Red Hed395Intoxicating Rhythm (Original Mix)6:4421059Anne Savage,15346Vinylgroover & The Red HedTidy 208T - Ingo Presents... EP396A Paradox (Original Mix)7:2820958IngoPresents...232913Guffy397Cruize (Original Mix)9:1020958IngoPresents...232913GuffyTidy 209T - Chris C & Madam Zu Meets Ben Kaye - Fierce (The Lovetribe Theme)398Fierce (Original Mix)7:555522Chris C399Fierce (Paul Maddox Remix)7:095522Chris CTidy 210T - Gaz West - Playing With Fire400Playing With Fire (Dark By Design Remix)8:01491321Gareth WestGaz West401Playing With Fire (Original Mix)7:46491321Gareth WestGaz WestTidy 211T - Sebanelli & Oddbod - Your Ass Is Mine402Your Ass Is Mine (Madam Zu Remix)9:3461939Sebanelli&285423Oddbod403Your Ass Is Mine (Original Mix)9:3361939Sebanelli&285423OddbodTidy 212T - Flash Headz - Wizards Of The Sonic404Promised Land (Original Mix)8:05285177Flashheadz405Wizards Of The Sonic (Original Mix)8:30285177FlashheadzTidy 213T - Wid & Ben - Fight Yourself406Fight Yourself (Original Mix)8:27151851Wid & Ben407Fight Yourself (Colin Barratt Mix)7:58151851Wid & BenTidy 214T - Harry Diamond - Encounters408Encounters (Original Mix)7:25121471Harry Diamond409The March (Original Mix)6:41121471Harry DiamondTidy 215T - Rob Tissera & Guyver - Feel The Drums410Feel The Drums (Original)8:103631Rob Tissera&20907Guyver411Feel The Drums (Paul Maddox Remix)8:433631Rob Tissera&20907GuyverTidy 216T - Technikal Presents Pierre Pienaar & Carl Nicholson412System Shock (Original Mix)8:17152564TechnikalPresents133972Carl Nicholson413Global Panic (Original Mix)8:37152564TechnikalPresents285420Pierre PienaarTidy 217T - Captain Tin Rib and Sol Ray - Attack Of The 50ft DJ414Attack Of The 50ft DJ (High And Hard Mix)7:555969Captain Tinrib&63220Sol Ray415Attack Of The 50ft DJ (Original Mix)7:485969Captain Tinrib&63220Sol RayTidy 218T - Breather - Come On416Come On (Ben Kaye Remix)8:2764277Breather417Come On (Euphony Remix)9:0564277BreatherTidy 219T - Nick Rowland - Be Alive418Be Alive (Original Mix)7:36130735Nick Rowland419H2O (Original Mix)7:38130735Nick RowlandTidy 220T - Lox and Dark By Design - Strapped In420Fucked Up (Original Mix)7:53151793Lox&75559Dark By Design421Strapped In (Original Mix)9:27151793Lox&75559Dark By DesignTidy 221T - Rumble & Maddox - Party People422Party People (Original Mix)7:46282321Rumble & Maddox423Party People (Superfast Oz Remix)7:19282321Rumble & MaddoxTidy 222T - Paul Glazby - I Need To Know424I Need To Know (Original Mix)8:3818360Paul Glazby425I Need To Know (Terry Chango Remix)6:5318360Paul GlazbyTidy 223T - Guyver - Persistance426Persistence (Original Mix)9:1220907Guyver427The Missing Channel (Original Mix)8:3820907GuyverTidy 224T - Lee Haslam - El Diablo Adentro428El Diablo Adentro (Original Mix)9:1337429Lee Haslam429Equilibrium (Original Mix)9:1437429Lee HaslamTidy 225T - Human Resource - Dominator430Dominator (Paul Maddox Remix)8:214066Human Resource431Dominator (Stimulator Remix)7:144066Human ResourceTidy 226T - Organ Donors - Turntablism432Turntablism (Original Mix)7:1520176Organ Donors433Turntablism (Public Domain Sound System Remix)7:2420176Organ DonorsTidy 227T - Carl Nicholson - Blueprint (Tara's Theme)434Blueprint (Tara's Theme) (Original Mix)7:52133972Carl Nicholson435Devils Door (Original Mix)7:40133972Carl NicholsonTidy 228T - Colin Barratt - Critical Mass436Critical Mass (Original Mix)6:29113663Colin Barratt437Its All Hip Hop (Original Mix)6:19113663Colin BarrattTidy 229T - Euphony - Euphonism438Aurora (Original Mix)8:51215254Euphony (2)439Euphonism (Original Mix)8:38215254Euphony (2)Tidy 230T - Ali Wilson & Matt Smallwood - Dynamite440Dynamite (Original Mix)6:4245593Ali Wilson&212335Matt Smallwood441I'll Take You There (Original Mix)6:3945593Ali Wilson&212335Matt SmallwoodTidy 231T - Paul Maddox - In It For The Kicks442Have Faith (Original Mix)7:3749155Paul Maddox443In It For Kicks (Original Mix)7:4249155Paul MaddoxTidy 232T - Chris Hoff - Shut Up444Shut Up (Original Mix)7:24259312Chris Hoff445What Would We Do (Original Mix)8:55259312Chris Hoff446Dirty Hoe (Original Mix)6:34259312Chris Hoff&52753Digital KidTidy 233T - Lee Pasch - Hybridize447Hybridize (Original Mix)8:40101853Lee Pasch448Threat To Society (Original Mix)7:50101853Lee PaschTidy 234T - N20 - Found Some Gas449Anxious Heart (Original Mix)7:47152564Technikal450N20 Found Some Gas (Original Mix)7:37152564TechnikalTidy 235T - Stimulator - Technology451End Of The World (Original Mix)8:3490517Stimulator452Technology (Original Mix)8:3490517StimulatorTidy 236T - Dark Society - Show Me The Way453Show Me The Way (Lox & Leigh Green Remix)8:56458932Dark Society454Show Me The Way (Original Mix)7:29458932Dark SocietyTidy 237T - Paul Maddox Pres. Olive Grooves455I Cant Let Go (Original Mix)7:3849155Paul Maddox,563086Olive Grooves456On Fire (Original Mix)6:1549155Paul Maddox,563086Olive Grooves457Organ Grinder (Original Mix)7:4349155Paul Maddox,563086Olive Grooves458Pitchbend Groove (Original Mix)6:3349155Paul Maddox,563086Olive GroovesTidy 238T - Colin Barratt & Phil York - Stronger459Master Your Fears (Original Mix)6:35113663Colin Barratt&202114Phil York460Stronger (Original Mix)5:58113663Colin Barratt&202114Phil YorkTidy 239T - Amber D - EP1461Attack Warning (The Sound) (Original Mix)7:03233533Amber D462Kirei (Original Mix)7:02233533Amber DTidy 239T - Amber D - EP2463Kiss N Tell (Original Mix)7:53233533Amber D464Voodoo (Original Mix)7:34233533Amber DTidy 240T - Kym Ayres feat. Technikal - More & More465Bad Girl (Original Mix)7:55495100Kym Ayres&152564Technikal466More & More (Original Mix)7:08495100Kym Ayres&152564TechnikalTidy 241T - Carl Nicholson - The Shining467All Aboard (Original Mix)7:11133972Carl Nicholson468Shining (Original Mix)8:20133972Carl NicholsonTidy 242T - Euphonic Sessions - Shindig469Shindig (Kronos Remix)7:50640399Euphonic Sessions470Shindig (Original Mix)7:46640399Euphonic SessionsTidy 243T - Andy Farley - Barriers471Barriers (Original Mix)7:0715223Andy Farley472Burn It Up (Original Mix)6:3715223Andy FarleyTidy 244T - Flashheadz - Who Wins473Who Wins (Ilogik Remix)8:37285177Flashheadz474Who Wins (Original Mix)8:51285177FlashheadzTidy 245T - Lee Pasch - I Get High475I Get High (Original Mix)7:30101853Lee Pasch476Pumped Up Funk (Original Mix)6:34101853Lee PaschTidy 246T - Chrysus & Jonny Harris - Shined On Me477Don't Pigeon Hole Me (Original Mix)8:08311356Chrysus&744730Jonny Harris478Shined On Me (Original Mix)9:20311356Chrysus&744730Jonny HarrisTidy 247T - The 12inch Thumpers - Don't Cross The Line479Don't Cross The Line (Amber D Remix)7:233822412 Inch Thumpers480Don't Cross The Line (Guyver Remix)7:403822412 Inch Thumpers481Don't Cross The Line (JP And Jukesy)8:053822412 Inch Thumpers482Don't Cross The Line (Olive Grooves Remix)7:123822412 Inch Thumpers483Don't Cross The Line (Original Mix)6:393822412 Inch ThumpersTidy 248T - Omega 3 - What We Waiting For484What You Waiting For (Original Mix)8:12971453Omega 3485What You Waiting For (Vox N Go Remix)6:59971453Omega 3Tidy 249T - Sam Townend & Jon BW - How Can I Love You (Take You Back)486How Can I Love You (Quake & Rob Tissera Remix)6:42224600Sam Townend&476228Jon BW487How Can I Love You (Take You Back) (Original Mix)7:22224600Sam Townend&476228Jon BWTidy 250T - Paul Maddox - Feelin' 94488Feelin94 (Flash Harry 2001 Retro Mix)7:3049155Paul Maddox489Feelin94 (Original Mix)7:3349155Paul MaddoxTidy 251T - Lee Pasch - I Don't Need You490Feel It (Original Mix)7:02101853Lee Pasch491I Don't Need You (Base Graffiti Remix)8:15101853Lee Pasch492I Don't Need You (Original Mix)6:57101853Lee PaschTidy 252T - Jon BW - Cutting Shapes493Cutting Shapes (Guyver Remix)8:38476228Jon BW494Cutting Shapes (Original Mix)7:31476228Jon BWTidy 253T - Organ Donors & Vinylgroover - Techno Shock495Techno Shock (Original Mix)8:1220176Organ DonorsVs11433Vinylgroover496Techno Shock (Scott Fo-Shaw Remix)7:5720176Organ DonorsVs11433VinylgrooverTidy 254T - Stimulator - Nostalgia497Nostalgia (Cortez & York Remix)8:4390517Stimulator498Nostalgia (Original Mix)8:0190517StimulatorTidy 255T - Amber D - I've Got A Feelin'499I Got A Feelin (Ben Stevens Remix)7:34233533Amber D500I Got A Feelin' (Original Mix)7:20233533Amber DTidy 256T - Jon Langford Presents... EP501What We Gonna Do (Original Mix)8:3911749Knuckleheadz502Closer (Original Mix)6:44235794K-SeriesVs152564TechnikalTidy 257T - Tidy Boys & BK - Shadows503Shadows (BK's Back To 99 Remix)7:4025831Tidy Boys&8349BK504Shadows (Original Mix)7:4225831Tidy Boys&8349BKTidy 258T - Benjamin Leung & Tazix - Raindrop505Raindrop (Guyver Remix)9:26805347Benjamin Leung&992636Tazix506Raindrop (Ilogik Remix)7:56805347Benjamin Leung&992636Tazix507Raindrop (Original Mix)8:00805347Benjamin Leung&992636Tazix508Raindrop (Rodi Style Remix)5:48805347Benjamin Leung&992636TazixTidy 259T - Jon BW - Alpha509Alpha (Andy Farley Remix)7:31476228Jon BW510Alpha (Original Mix)7:50476228Jon BW511Alpha (Vox & Go Remix)7:03476228Jon BWTidy 260T - Knuckleheadz - Rock Beat512Dub House Disco (Original Mix)7:4111749Knuckleheadz513Rock Beat (Original Mix)8:5811749KnuckleheadzTidy 261T - Damo Cassetti - Bass Jam514Bass Jam (Energy Syndicate Remix)4:534092659Damo Cassetti515Bass Jam (Original Mix)7:144092659Damo CassettiTidy 262T - Serotonin Soul - Need U 2 Feel516Need U 2 Feel (Original Mix)7:163989600Serotonin Soul517Need U 2 Feel (Technikal Remix)8:053989600Serotonin Soul518Need U 2 Feel (Untidy Dub)6:523989600Serotonin SoulTidy 263T - BK & Lucy Fur - Get Hot519Get Hot (Original Mix)6:518349BK&796455Lucy Fur520Get Hot (Untidy Dub)6:278349BK&796455Lucy FurTidy 264T - Energy Syndicate EP521Off My Tits (Original Mix)5:191628992Energy Syndicate&47101Lusty522Phattest Drop (Original Mix)5:281628992Energy Syndicate&3017283Mark HybridZTidy 265T - The Freak Brothers - Ready To Ride523Ready To Ride (Bobby Tee & Mark Williams Remix)8:004261046The Freak Brothers (3)524Ready To Ride (Original Mix)7:394261046The Freak Brothers (3)Tidy 266T - Charlie Goddard - Emotions525Emotions (Original Mix)6:501211247Charlie GoddardTidy 267T - TidyTXEP526Fake Ass DJ (Original Mix)6:293780064Fiddlestix (2)527Murder On The Moon (Original Mix)6:313189052Max Mozart528Always There (Original Mix)6:56563086Olive Grooves&1436429Ross HomsonTidy 268T - Jon The Dentist - Jeff The Terminator529Jeff The Terminator (Exosun Remix)8:015539Jon The Dentist530Jeff The Terminator (Original Mix)7:395539Jon The DentistTidy 269T - Tidy DJs - It's Time531It's Time (Original Mix)6:031392400Tidy DJsTidy 270T - Bush Babies - Delicious532Delicious (BK's 9am @ Turmills Remix )7:4013803Bush Babies533Delicious (Nicholson Remix)7:0613803Bush BabiesTidy 270TR - Bush Babies - Delicious534Delicious (BK's 9am @ Turmills Remix )7:4013803Bush Babies535Delicious (Bubblebass Mix)7:3813803Bush Babies536Delicious (Captain Tinrib & Dave Randall Remix)7:2913803Bush Babies537Delicious (Dave Randall Remix)7:2613803Bush Babies538Delicious (F1 Remix)8:0713803Bush Babies539Delicious (Knuckleheadz Club Mix)7:4713803Bush Babies540Delicious (Knuckleheadz Dub Mix)6:1213803Bush Babies541Delicious (Nicholson Remix)7:0613803Bush Babies542Delicious (Original Mix)7:0713803Bush BabiesTidy 271T - Ben Vennard & Hayz - Quiet543Quiet (Original Mix)8:137728371Ben Vennard&7147765Hayz (2)Tidy 272T - Steve Hill & Technikal - Smash The Speakers544Smash The Speakers (Original Mix)7:348358Steve Hill&152564TechnikalTidy 273T - Ingo - Bless You545Bless You (Original Mix)6:3320958Ingo546StrobeLight (Original Mix)5:5020958IngoTidy 274T - Ben Stevens - Take Me Back547Take Me Back (Original Mix)8:30220886Ben Stevens548Take Me Back (Sam Townend Remix)6:05220886Ben StevensTidy 275T - Paul Maddox - Slightly Mad549Build It Up (Original Mix)7:3349155Paul Maddox550Slightly Mad (Original Mix)7:2349155Paul MaddoxTidy 276T - Bulleproof - Wanna Hear Ya551Wanna Hear Ya (Original Mix)8:5447785Bulletproof (2)Tidy 277T - Hayley Colleen & Leigh Green - Together552Together (Original Mix)8:297523397Hayley Colleen&180619Leigh GreenTidy 278T - Digital Mafia, Mike Taylor, JLF - Digital Mafia EP553Rave To The Grave (Original Mix)7:121245988Digital Mafia&2583528Mike Taylor (22)554Doin' That (Energy) (Original Mix)6:529249982JLF (4)Vs1245988Digital MafiaTidy 279T - Committee - Welcome555Welcome (Nicholson Remix)6:4343570Committee556Welcome (Paul Kings Cállate La Boca Mix)7:4143570CommitteeTidy 280T - BK - Reach557Reach (Original Mix)7:348349BKTidy 281T - NG Rezonance & PHD feat Hayley Colleen - Worlds Collide (Remixes)558Worlds Collide (Paul Maddox Remix)7:071215349NG Rezonance&4013348PHD (11)Feat7523397Hayley Colleen559Worlds Collide (Stimulant DJs Remix)6:271215349NG Rezonance&4013348PHD (11)Feat7523397Hayley ColleenTidy 282T - Prime Mover - Perfect Organism560Perfect Organism (Original Mix)8:1338910Prime Mover561Perfect Organism (Prime Mover 2021 Remix)6:1938910Prime MoverTidy 283T - Ross Homson & Drax Nelson - In A Pickle562In A Pickle (Original Mix)6:551436429Ross Homson&9632623Drax NelsonTidy Allstars - The Homecoming (Magna Theme)563The Homecoming Magna Theme (Original Mix)7:001453116Tidy Allstars564The Homecoming Magna Theme (Ben Stevens & Rodi Style Remix)6:491453116Tidy Allstars565The Homecoming Magna Theme (Lab4 Remix)7:001453116Tidy Allstars566The Homecoming Magna Theme (Technikal Remix)6:221453116Tidy AllstarsTidy BAEP01 - Various Artists - Tidy Boys Annual EP, Vol 1567Underground Sound7:514669931Bass Jumper568Let It Rip7:38113663Colin Barratt569Pump It Up7:1225831Tidy BoysThe Tidy BoysTidy BAEP02 - Various Artists - Tidy Boys Annual EP, Vol 2570Runnin6:313189052Max Mozart&8777542Lia B571Hold Me Hostage8:088777539Starquake (2)572Release Me7:041392400Tidy DJs&476228Jon BWTidy BOOT001573Black Is Black (Tony De Leon Remix)7:2715366Allnighters574Observing The Earth (Fanny Thomas Remix)7:28186453DyewitnessTidy BOOT002575What Ya Got 4 Me (Andy Farley Remix)7:494629SignumTidy BOOT003576Like It Or Loompa It (Original Mix)4:021337811Comedy Dick577Pure Imagination (Original Mix)7:38128044Woody (4)Tidy BOOT004578Sunset (Original Mix)7:54131666Azure (5)Tidy D - DRAINED579The Birds (David Rust Remix)4:4621652Question Mark580Backwards Bitch (Sam Townend Remix)5:4221469TransistersTidy Digital581Rush On Me (J Ainsley Remix)6:55233533Amber D582Rush On Me (Jo Jo Remix)8:02233533Amber D583Rush On Me (Unit 13 Remix)7:15233533Amber D584Naughty (Ground Zero Remix)7:2215223Andy Farley&18360Paul Glazby585Game Over (Original Mix)6:37220886Ben Stevens&224600Sam Townend586Dreams (Hard Mix)7:288349BK587Dreams (Trance Mix)5:068349BK588Thump (Jennarate Remix)5:488349BK589Thump (Original Mix)6:598349BK590You Better (Tell Me) (Original Mix)6:078349BKVs1636952Sam & Deano591Leave The World Behind (Original Mix)6:00613245Cally Gage&517623Klubfiller592Freefall (Ben Stevens & Adam M Remix)7:505522Chris C593Freefall (Technikal Remix)6:485522Chris C594Your Love (Ben Stevens & Rodi Style Remix)7:0675559Dark By Design595Your Love (Original Mix)8:0075559Dark By Design596Give Up The Funk (JP & Jukesy Remix)7:1521472Flash Harry597Man On The Moon (Technikal & Dirty Harry Remix)7:1220907Guyver598Till Tears Do Us Part (Lamin8ers Remix)7:5864206Heaven's Cry599U Got The Love (Lee Haslam's Unreleased Remix)7:071687Hyperlogic600Crank (Original Mix)7:5320165Ian M601Stalker (Energy Syndicate Remix)6:0238228Jon Bishop602Everybody Freak (Original Mix)7:05476228Jon BW603Go Boom! (Klubfiller Hardcore Edit)4:24517623KlubfillerVs.1636952Sam & Deano604Go Boom! (Original Mix)5:21517623KlubfillerVs.1636952Sam & Deano605Critical Level5:32226389Lobotomyz606I Want To Know (Original Mix)7:12563086Olive Grooves607Endangered (Original Mix)8:0949155Paul Maddox608Endangered (Wragg & Log-One Remix)6:4649155Paul Maddox609Reach Out (Technikal's TW10 Remix)7:1349155Paul MaddoxFeat.68702Niki Mak610Can't Let Go (Rodi Style Remix)6:4349155Paul MaddoxPresents563086Olive Grooves611Never Be Apart (Original Mix)5:581450842Perfect Poise612Sweat (Original Mix)7:193229392RJ & Ruskul613Body Rock (Original Mix)8:46343573Robbie Muir (2)614Buzz Tribute (Original Mix)9:25343573Robbie Muir (2)615Lost Souls (Klubfiller Remix)5:21426849Scott Attrill616Lost Souls (Original Mix)7:12426849Scott Attrill617What Ya Got 4 Me (Andy Farley Remix)7:494629Signum618What Ya Got 4 Me (Lee Walls Remix)7:034629Signum619What Ya Got 4 Me (Scott Attrill Remix)7:364629Signum620Alone (Technikal Mix)8:018358Steve Hill621Teardrops (Original Mix)6:38152564Technikal622The Dawn (Bryan Kearney Remix)6:455531Tony De Vit623The Dawn (Scott Attrill Remix)6:535531Tony De VitTidy EP01 - Colin Barratt - Extended Players EP624Expect The Unexpected (Original Mix)7:34113663Colin Barratt625F.U.N.K (Original Mix)6:31113663Colin Barratt626Groove Station (Original Mix)5:39113663Colin Barratt627Hard Faster (Original Mix)9:03113663Colin BarrattTidy EP02 - Guyver - Extended Players EP628How Far (Original Mix)6:1820907Guyver629Strangeness (Original Mix)6:1920907Guyver630Succeed At All Costs (Original Mix)7:1520907Guyver631Survival (Original Mix)7:3420907GuyverTidy EP03 - Extended Players EP - Paul Maddox632Burnt Out Metro (Original Mix)6:0549155Paul Maddox633Medusa (Original Mix)6:5149155Paul Maddox634Obsessive Compulsive (Original Mix)6:4749155Paul Maddox635Seismic (Original Mix)7:0949155Paul MaddoxTidy EP04 - Colin Barratt - Extended Players EP Part 2636Get Down (Original Mix)6:45113663Colin Barratt637Out Of Control (Original Mix)6:59113663Colin Barratt638Stalker (Original Mix)6:36113663Colin Barratt639Take Me Back (Original Mix)6:13113663Colin BarrattTidy EP05 - Wid & Ben Extended Players EP640Groove Damage (Original Mix)6:09151851Wid & Ben641Just You Wait (Original Mix)7:31151851Wid & Ben642Revolution 303 (Original Mix)7:37151851Wid & BenTidy EP06 - Guyver Producer Series Album Sampler643Evangeline (Original Mix)8:0220907Guyver644Heaven & Hell (Original Mix)8:1120907Guyver645Here & Now (Original Mix)7:5020907Guyver646Jazz Hands (Original Mix)7:2720907Guyver647Kiss My Face (Original Mix)8:4020907Guyver648Midnight Express (Original Mix)8:1020907Guyver649Nightshade (Original Mix)8:2620907Guyver650Open Skies (Original Mix)8:0220907Guyver651Relentless (Original Mix)7:4120907Guyver652Serendipity (Original Mix)7:5420907Guyver653Sonar (Original Mix)8:4320907Guyver654Sub Human Scum (Original Mix)8:3320907Guyver655The Celestine Prophecy (Original Mix)8:3620907Guyver656The Killer Instinct (Original Mix)8:2920907GuyverTidy EP07 - The Farley Experience Part 1 - Andy Farley & Olive Grooves657Feel (Original Mix)7:3415223Andy Farley&563086Olive Grooves658Got Me Movin (Original Mix)6:2415223Andy Farley&563086Olive Grooves659Kinky Mover (Original Mix)6:5515223Andy Farley&563086Olive GroovesTidy EP08 - The Farley Experience Part 2 - Andy Farley & Colin Barratt660Crashed (Original Mix)7:2215223Andy Farley&113663Colin Barratt661Reprezent (Original Mix)7:2615223Andy Farley&113663Colin Barratt662Stimulate (Original Mix)6:5015223Andy Farley&113663Colin BarrattTidy EP09 - Paul Maddox Producer Series Album Sampler663Analogue Rush (Club Mix)7:3649155Paul Maddox664Moody (Club Mix)6:2349155Paul Maddox665Quicksand (Club Mix)6:4049155Paul Maddox666Surrender (Club Mix)7:1149155Paul MaddoxTidy EP10 - The Untidy Remixes 2007667Dominator (Untidy Dub)6:364066Human Resource668More & More' (Untidy Dub)7:13495100Kym AyresFeat152564Technikal669Emotion (Back To The Dub Mix)6:14101853Lee PaschTidy EP11 - Defective Audio Producer Series Album Sampler670Kikka (Original Mix)6:4726657Base Graffiti671Rocking In Time (Original Mix)5:2826657Base Graffiti672Unknown Code (Original Mix)7:0224085Defective Audio673Essence (Original Mix)7:5685473Tomcat (2)Tom CatTidy F - FLOGGED674Body Rock (Max Mozart & Audox Remix)7:34343573Robbie Muir (2)675What Ya Got 4 Me (Groove Complex Remix)6:084629Signum676Getting Warm (Sam Townend Remix)6:3917630Smokin' Bert Cooper677Emotions (Technikals Tidy Two Remix)6:58101853Lee Pasch678Its About Music (Paul Maddox Remix)6:5324084Jez & Charlie679Mistakes (Ilogik Remix)8:1147785Bulletproof (2)680What Can You Do 4 Me (BKs Tough Dub)5:2318435Lisa Lashes681Tronic Equator (Houserockers Remix)6:1138229Ilogik682I Need U (Untidy Dub)6:3238309Baby Doc & S-JSJ And Baby Doc683Such A Good Feeling (The Freak Brothers Remix)7:45156712Miss Behavin'684Possibly (NG Rezonance Remix)7:1320907Guyver685One More (Ben Stevens Remix)7:0833759Haziza686I Dont Need This (Charlie Goddard Remix)6:5564206Heaven's Cry687Ready To Ride (Jon The Dentist Remix)6:364261046The Freak Brothers (3)688Have Faith (Tidy Boys & Trap Two Remix)9:3449155Paul Maddox689Rock With Me (Lee Pasch Remix)6:458339Lisa Pin-Up690Just Do It (Trap Two Remix)6:434629SignumTidy M - MILKED691Mistakes (DBSK Remix)7:4047785Bulletproof (2)692Coming On Strong (Whiteman & Ingo Remix)7:274629Signum693U Got The Love (Bulletproofs Sabotage Remix)8:351687Hyperlogic694Where Are You Now (Jon The Dentist & Ollie Jaye Remix)6:1928091The Generator695Samsara (Jon Doe Remix)7:5132921Dave Holmes696Nuclear Shower (OD404 Remix)7:10100940UK Gold (2)697Dreamer (Chris C & Dynamic Intervention Remix)7:2020165Ian M698Honey Child (Houserockers Remix)8:0715365Benedict Brothers699Cuz The House Gets Warm (Tidy Boys Remix)6:49100940UK Gold (2)700Looking Good (Baby Doc & SJ Remix)7:2418435Lisa Lashes701Only Me (Stimulant DJs Remix)7:481687Hyperlogic702Black Is Black (BK Remix)7:5915366Allnighters703Just Do It (Ingo Remix)8:184629SignumTidy R - RINSED704Where Are You Now (Wid & Ben Remix)7:4428091The Generator705Feel So Good (Guyver Remix)7:1341595Jon The Dentist & Ollie Jaye706Don't Go (Champion Burns Remix)7:5618435Lisa Lashes707In Control (Colin Barratt Remix)7:0338228Jon Bishop708Spacehopper (Ingo Remix)6:47127646Nik Denton709What Ya Got 4 Me (Ilogik Remix)8:074629Signum710Definitely (Lee Haslam Remix)8:0213796YodaYoda Inc711Expression (Lee Pasch Remix)8:3434674Steve Blake712Anihilation (Paul Glazby Remix)7:3220165Ian M713Incoming (Bulletproof Remix)8:0448526DJ Vortex & Arpa's Dream714Music Is The Drug (Nick Sentience Remix)7:5637429Lee Haslam715Guyver Unit (Paul Maddox Remix)8:09152999The Riot BrothersRiot Bros716Til' Tears Do Us Part (Yoji Biomehanika Remix)8:4664206Heaven's CryTidy TBBS01 - Tidy Trashed EP717U Found Out (Scott Fo-shaw Remix)6:26253949The HandbaggersHandbaggers718Restless (Technikal Remix)5:581680JX719I Need U (Knuckleheadz Remix)8:2538309Baby Doc & S-JSJ And Baby DocTidy TNT001720Set You Free (Paul Maddox Remix)7:5411001N-TranceTidy W01 - Paul Maddox721Confession (Original Mix)8:3549155Paul Maddox722Tension (Original Mix)7:1749155Paul MaddoxTidy W02 - Jon Bishop - Stalker723Stalker (Ingo Mix)7:4338228Jon Bishop724Stalker (Original Mix)7:2938228Jon BishopTidy W03 - Dutch Courage - Slammin'725Slammin' (Alibee & Voi Remix)7:2938223Dutch Courage726Slammin' (Flash Harry Remix)8:3338223Dutch CourageTidy W04 - Miss Behavin' - Such A Good Feelin'727Such A Good Feelin' (Barely Legal Remix)8:12156712Miss Behavin'728Such A Good Feelin' (Flash Harry Remix)7:15156712Miss Behavin'Tidy W05 - 12 Inch Thumpers Vs 4 Motion - It's Over The Line729It's Over The Line (Tidy Boys Home Made Remix)7:16552884 MotionVs3822412 Inch ThumpersTidy W06 - Chris C and the Doktor - Volante730Volante (Original Mix)7:575522Chris CVs38232The Doktor731Volante (Prophet Mix)7:385522Chris CVs38232The DoktorTidy W07 - Da Techno Bohemian - Pump Da Bass732Pump Da Bass (OGR Remix)7:0720922Da Techno Bohemian733Pump Da Bass (Original Mix)4:3720922Da Techno BohemianTidy W08 - Paul Maddox and Ingo - Reactor734Reactor (Ingo Remix)8:2649155Paul Maddox&20958Ingo735Reactor (Paul Maddox Mix)6:5749155Paul Maddox&20958IngoTidy W09 - OGR - Daydreamer736Daydreamer (Guyver Remix)8:2279422O.G.R.OGR737Daydreamer (Original Mix)6:5579422O.G.R.OGRTidy W10 - Ben Kaye & Neil Appeal738Hold It Now (Original Mix)8:2836378Ben Kaye&228061Neil Appeal739Pornography (Original Mix)6:3036378Ben Kaye&228061Neil AppealTidy W11 - Abandon - Underground740The Underground (O.G.R. Remix)7:11104447Abandon741The Underground (Original Mix)7:51104447AbandonTidy W12 - Steve Morley - Sacrifice742Sacrifice (Lee Haslam Remix)7:5812750Steve Morley743Sacrifice (Original Mix)7:4712750Steve MorleyTidy W13 - Tomorrow People & Paul Maddox744Tension (Vicious Mix)6:5249155Paul Maddox745Scared (Original Mix)7:4242776Tomorrow PeopleTidy W14 - Pants and Corset - Malice In Wonderland746Malice In Wonderland (Paul King Remix)9:5225830Pants & Corset747Malice In Wonderland (Phil Reynolds & Steve Blake Remix)7:5325830Pants & CorsetTidy W15 - Tony De Vit EP748I Don't Care (Bulletproof Remix)7:585531Tony De Vit749The Dawn (Dark By Design Remix)7:065531Tony De VitTidy W16 - OD404 - 9 Bar7509 Bar (Dark By Design Remix)7:5811333OD4047519 Bar (Nick Rowland Remix)7:4811333OD404Tidy W17 - Steve Hill - Alone752Alone (Flash Harry Remix)8:358358Steve Hill753Alone (Original Mix)7:438358Steve HillTidy W18 - NR2 - I Want It754Freedom (Original Mix)7:49245767NR²755I Want It (Original Mix)7:41245767NR²Tidy W19 - Chris Hoff MDA and Spherical756Controllin' Me (Original Mix)7:27259312Chris Hoff,370522MDA & Spherical757Scramble (Original Mix)7:59259312Chris Hoff,370522MDA & SphericalTidy W20 - Big Tool 4 U758Bitch Trog (Original Mix)7:15168594Big Tool 4 U759Just Cum (Original Mix)7:48168594Big Tool 4 UTidy W21 - Eskimo - Recycled760ReCycled (Original Mix)6:32101918Eskimo (3)Tidy W22 - Olive Grooves - Two Short Planks761Here Goes Nothing (Original Mix)6:03563086Olive Grooves762Two Short Planks (Original Mix)6:28563086Olive GroovesTidy W23 - Trap Two - Our Place763Our Place (Original Mix)6:494080558Trap TwoTidy W24 - Jon The Dentist - Donald Trump You're An Asshole764Donlad Trump You're An Asshole (Original Mix)6:145539Jon The DentistTidy W25 - Mobi D & Jason Nawty - Higher Level765Higher Level (Original Mix)7:5238225Mobi D&80636Jason NawtyTidy W26 - Andy Naylor - Coming Up Hot766Coming Up Hot (Original Mix)6:10810423Andy NaylorTidyBoys HD1001 - 99th Floor Elevators - Hooked767Hooked (Nicholson Remix)7:2020730099th Floor Elevators768Hooked (Tidy Boys Remix)6:4820730099th Floor ElevatorsTidyDDAY01 - Amber D - D-Day769Amber Diva (Original Mix)6:38233533Amber D770Bounce (Original Mix)6:12233533Amber D771I Don't Like You (Original Mix)5:17233533Amber D772One Night In Haslamabad (Original Mix)6:31233533Amber D773The Power (Original Mix)8:11233533Amber D774The Decimation Of Elizabeth Black (Original Mix)5:43233533Amber D&652074Dark Vision Media775God's Child (Original Mix)7:32233533Amber D&1439553Gridbreaker776Party Children (Original Mix)5:54233533Amber D&3262136Kirsty Lee James777Party Children (Rodi Style Remix)6:42233533Amber D&3262136Kirsty Lee James778You Got Me Burnin' (Original Mix)7:55233533Amber D&796455Lucy Fur779Schranz DJ (Original Mix)5:48233533Amber D&1268108Neal Thomas780Can't Stop (Original Mix)6:16233533Amber D&1213572Ramp (6)781Double The Odds (Original Mix)4:51233533Amber D&1200084Stana782Future Music (Original Mix)6:06233533Amber D&1578728The Yofridiz783Paranoid (Original Mix)5:51233533Amber DFeat.197076Riggsy784Eat The Beat (Original Mix)5:58233533Amber DVs1283476Swankie DJ & Kashi785Techno Slut (Original Mix)7:02233533Amber D,1819270Argy (3)&1946749Projekt TekTidyINSP01 - Inspirations For The Harder Generation786Another Chance (Original Mix)6:42233533Amber D787Shinny (Original Mix)8:1215223Andy Farley788Higher State Of Consciousness (Original Mix)6:32218417Andy Whitby&613247Matt Lee789High On Hope (Original Mix)7:4826657Base Graffiti790Dreamer (Original Mix)6:46220886Ben Stevens791Insomniak (Original Mix)6:338349BK&11433Vinylgroover792A Little Love, A Little Life (Original Mix)7:16613245Cally Gage&801774Tom Parr (2)793No Good (Start The Dance) (Original Mix)8:0875559Dark By Design794Walhalla (Original Mix)8:4820907Guyver795U Got The Love (Steve Hill Vs Technikal Remix)7:531687Hyperlogic796I Feel You (Original Mix)8:3838229Ilogik797Not Over Yet (Original Mix)7:51476228Jon BW798Sandstorm (Original Mix)8:29152346JP & Jukesy799Enervate (Original Mix)6:33235794K-SeriesK Series800Energy Flash (Original Mix)6:5511749Knuckleheadz801Killer (Original Mix)8:12495100Kym Ayres802For An Angel (Original Mix)7:40214644Morgan (10)803Phorever People (Original Mix)9:27127646Nik Denton804True Faith (Original Mix)8:1718360Paul Glazby805You Belong To Me (Original Mix)7:5049155Paul Maddox806Tainted Love (Original Mix)8:0149155Paul Maddox&207355Shaun M807Move On Baby (Original Mix)6:38202114Phil York808U Got 2 Know (Original Mix)7:27302134Rodi Style&220886Ben Stevens809Make The World Go Round (Original Mix)7:33224600Sam Townend810Show Me Love (Original Mix)8:23643849Scott Fo-shaw811Ssst Listen (Original Mix)8:21152564Technikal812Strings For Yasmin (Original Mix)8:191392400Tidy DJsTIDYML001 - Tidy Music Library 1813Take It Easy (Original Mix)8:35495100Kym Ayres814Take It Easy (Tidy DJ's Remix)7:38495100Kym Ayres815Music Is The Drug (Amber D Remix)8:0637429Lee Haslam816Bassline Pressure (Original Mix)6:0949155Paul Maddox817Bring It (Original Mix)7:2049155Paul Maddox818Mesmerised (Original Mix)7:4049155Paul Maddox819Holding On (Original Mix)7:373631Rob Tissera&152564Technikal820Holding On (Paul Glazby Remix)7:503631Rob Tissera&152564TechnikalTIDYML002 - Tidy Music Library 2821Just One More Time (Original Mix)8:0020907Guyver822Just One More Time (Trauma Vs Nik Denton Remix)8:5920907Guyver823Can't Stop It (Original Mix)7:29476228Jon BW824Funky Sound (Original Mix)7:37476228Jon BW8252v231 (Original Mix)7:1120176Organ Donors826Tear Drop (Original Mix)9:0420176Organ Donors827Strings For Yasmin (Vinylgroover & The Red Head Mix)6:381693729TT Collective828Strings For Yasmin (Tidy DJs Remix)8:281693729TT CollectiveTIDYML002 - Tidy Music Library 2\Tidy Library Samples829Double Off Beat Bass0:02118760No Artist830Double Off Beat Bass One Shot0:02118760No Artist831Psy Bass0:02118760No Artist832Reverse Bass0:02118760No Artist833Reverse Bass One Shot0:02118760No Artist834Running Bass0:02118760No Artist835Shuffled Bass0:02118760No Artist836Shuffled Bass One Shot0:02118760No Artist837Crash0:02118760No Artist838Dirty Stopout0:09118760No Artist839Lazer Fast To Slow0:08118760No Artist840Rev Crash0:02118760No Artist841Synth Rise0:14118760No Artist842White Noise Down0:14118760No Artist843White Noise Up0:14118760No Artist844European Kick0:02118760No Artist845European Kick One Shot0:02118760No Artist846Hard House Kick0:02118760No Artist847Hard House Kick One Shot0:02118760No Artist848Hard Trance Kick0:02118760No Artist849Hard Trance Kick One Shot0:02118760No Artist850Psy Kick0:02118760No Artist851Psy Kick One Shot0:02118760No Artist852Punchy Kick0:02118760No Artist853Punchy Kick One Shot0:02118760No Artist854High String0:14118760No Artist855Low Pad0:14118760No Artist856Uplifting Pad0:14118760No Artist857Uplifting Pad Part 10:14118760No Artist858Uplifting Pad Part 20:14118760No Artist859Uplifting Pad Part 30:14118760No Artist860Clap0:02118760No Artist861Clap One Shot0:02118760No Artist862Full Loop0:02118760No Artist863Open Hat0:02118760No Artist864Open Hat One Shot0:02118760No Artist865Ride0:02118760No Artist866Ride One Shot0:02118760No Artist867Shaker Loop0:02118760No Artist868Shaker One Shot0:02118760No Artist869Shuffled Loop0:02118760No Artist870Simple Loop0:02118760No Artist871Snare One Shot0:02118760No Artist872Snare Roll0:14118760No Artist873Tribal Loop0:02118760No Artist874Acid Build Up0:27118760No Artist875Acid Stab0:02118760No Artist876European Riff0:14118760No Artist877Filtered Chord Stab0:02118760No Artist878Filtered Chord Stab One Shot0:02118760No Artist879Ripping Synth0:02118760No Artist880Squelchy Riff0:03118760No Artist881Stabby Chord Riff0:03118760No Artist882Uplifting Riff0:14118760No ArtistTIDYML003 - Tidy Music Library 3883Honey Child (Paul Maddox 08 Remix)7:4715365Benedict Brothers884Got The Bottle (Original Mix)7:3149155Paul MaddoxMeets26657Base Graffiti885Spook Show (Original Mix)7:0449155Paul MaddoxMeets476228Jon BW886Double Edged Sword (Original Mix)6:4949155Paul MaddoxMeets439278Karim LamouriKarim887Cinematic (Original Mix)6:4749155Paul MaddoxMeets302134Rodi Style888Captive (Original Mix)8:0349155Paul MaddoxMeets152564Technikal889Rave Cat (Original Mix)8:2149155Paul MaddoxMeets1392400Tidy DJsThe Tidy DJsTIDYML003 - Tidy Music Library 3\Shaun M and Abandon - Another Man's Language (Parts)890Another Man's Language Parts2:39207355Shaun M&104447AbandonTIDYML004 - Tidy Music Library 4891Rush On Me (Original Mix)6:44233533Amber D892Wanna Dance (Original Mix)7:20233533Amber D893Centrefold (Original Mix)6:1321059Anne Savage894Blueprint (Nick Sentience Remix)7:05133972Carl Nicholson895Music For A Harder Generation (UK Gold Remix)7:21152564TechnikalFeaturing228852MC Whizzkid896Music For A Harder Generation (Original Mix)7:58152564TechnikalFt.228852MC WhizzkidTIDYML004 - Tidy Music Library 4\Tidy Music Library - Technikal Sample Pack897B - Phat Square Bass0:02118760No Artist898D# - Foot Long0:00118760No Artist899E - Plucky0:02118760No Artist900F - Thick Bass0:02118760No Artist901F# - Grungy Roller0:00118760No Artist902F# - Supersonic Bass0:02118760No Artist903G - Generation Bass0:02118760No Artist904Groove Holding Clap0:01118760No Artist905Hollow Clap0:00118760No Artist906Reverb Clap0:00118760No Artist907Snarey Clap0:00118760No Artist908Splashy Clap0:00118760No Artist909Unobtrusive Clap0:00118760No Artist910Alien Like Squelch0:01118760No Artist911Eerie Sound Sweep0:07118760No Artist912Fx Sweep0:05118760No Artist913Great Explosion0:08118760No Artist914Mess On Floor = Sweep Up0:10118760No Artist915Spinnin' Around0:01118760No Artist916Banging Kick0:00118760No Artist917Boomy Kick0:00118760No Artist918Bouncey Kick0:00118760No Artist919Cosmic Kick0:00118760No Artist920Euro Kick0:00118760No Artist921Hard Kick0:00118760No Artist922Meaty Kick0:00118760No Artist923Phat Kick0:00118760No Artist924Raw Kick0:00118760No Artist925Tough Kick0:00118760No Artist926Clicky Loop0:02118760No Artist927Hectic Loop0:03118760No Artist928Mechanical Loop0:03118760No Artist929Reevey Loop0:02118760No Artist930Stompy Loop0:02118760No Artist931Techy Loop0:02118760No Artist932Wishy Loop0:02118760No Artist933Effective Tambourine0:00118760No Artist934Good Rolling Snare0:00118760No Artist935Open Hat Backup0:00118760No Artist936That Old BK Knock0:00118760No Artist937The Best 909 Open Hat Ever0:00118760No Artist938Top End Shaker0:00118760No Artist939Tribal Hit 10:00118760No Artist940Tribal Hit 20:00118760No Artist941Wicked Closed Hat0:00118760No Artist942A - Giant Saw Blast0:03118760No Artist943A - Synthy Setting0:07118760No Artist944C - Huge Square Detuned Stab0:02118760No Artist945C - Mid Range Square Synth0:01118760No Artist946C# - Kingpin Hoover0:01118760No Artist947C# - Nasty Raw0:00118760No Artist948D - Old School Chord0:01118760No Artist949D# - Rezzy Virus Stab0:02118760No Artist950F - Attacking Acid Stab0:00118760No Artist951F# - Evil Acid0:00118760No ArtistTIDYML005 - Tidy Music Library 5952You Got Me (Original Mix)7:31476228Jon BW953Guitar Hero (Original Mix)7:35495100Kym Ayres954DJ Do You Take Requests (Original Mix)6:018339Lisa Pin-Up955I'm Your Nightmare (2008 Offbeat Thunder Remix)7:2118360Paul Glazby956Kanashimi (Original Mix)8:0018360Paul Glazby957Screwdriver (Olive Grooves Silly Disco Mix)6:248337Rachel Auburn958That Summer Tune (Original Mix)8:52643849Scott Fo-shawFeat.807541Stacey KitsonStaceTIDYML006 - Tidy Music Library 6959I Got To Believe (Original Mix)7:4620907GuyverMeets233533Amber D960Paradox (Original Mix)8:0720907GuyverMeets15223Andy Farley961Enigma (Original Mix)8:0020907GuyverMeets220886Ben Stevens962Knuckle Tsunami7:4120907GuyverMeets686904Garbo (5)963The Hacker (BK Remix)7:0920907GuyverMeets1268108Neal Thomas964The Hacker (Original Mix)8:0520907GuyverMeets1268108Neal Thomas965At The Top (Original Mix)8:4220907GuyverMeets3631Rob Tissera966Phat Box (Original Mix)8:0420907GuyverMeets224600Sam Townend967The Answer (Guyver's Dark Side Mix)7:5015346Vinylgroover & The Red HedPres78954Bam Bam & PebblesTIDYML007 - Tidy Music Library 7968On My Mind (Nish Remix)7:29233533Amber D&214644Morgan (10)969On My Mind (Original Mix)7:00233533Amber D&214644Morgan (10)970Cerca Trova (Nik Denton Remix)8:44233533Amber DFeat.807541Stacey KitsonStace971Cerca Trova (Original Mix)6:48233533Amber DFeat.807541Stacey KitsonStace972Immure (Ilogik Shrink Wrapped Remix)7:406216Equinox973Immure (Stimulant DJ's Remix)8:066216Equinox974Head In The Cloudz (Original Mix)5:351633087Nu Raverz975Nu Flavourz (Original Mix)5:261633087Nu RaverzTIDYML007 - Tidy Music Library 7\Tidy Accapellas976Cerca Trova Acapella0:46233533Amber DFeat.807541Stacey KitsonStace977Shindig Acapella1:03640399Euphonic Sessions978Restless Acapella2:451680JX979Feeling Acapella0:27489554Faysal MatarMatar980I Need To Know Acapella0:5418360Paul Glazby981Funky Groove Acapella0:5411712Untidy DubsTIDYML008 - Tidy Music Library 8982The Age Of Love (Original Mix)8:24220886Ben Stevens&302134Rodi Style983The Eternal (Original Mix)8:32220886Ben Stevens&302134Rodi Style984Old Skool7:2829609Houserockers985(You Better) Run For Cover (Original Mix)6:5332426Stimulant DJs986Crazy Love (Original Mix)7:1832426Stimulant DJs987KFC (Original Mix)6:44100940UK Gold (2)TIDYML009 - Tidy Music Library 9988The Hacker (BK Remix)7:0920907Guyver&1268108Neal Thomas989The Hacker (Original Mix)8:0520907Guyver&1268108Neal Thomas990Come Together (Bang Brothers Remix)7:01799267Tom Berry&1632944Paul F991Come Together (Original Mix)7:48799267Tom Berry&1632944Paul FTIDYML009 - Tidy Music Library 9\Love Tidy Album Sampler992Rush On Me (Paul Maddox Remix)7:40233533Amber D993Closer (Jon BW Remix)7:21235794K-SeriesK SeriesVs152564Technikal994Take Off (Garbo Remix)7:5990517StimulatorTIDYML010 - Tidy Music Library 10995Can't Beat The System (Jon BW Remix)7:5732919John Whitemann996Let Him Hear It (Original Mix)7:40476228Jon BW&21059Anne Savage997Move You (Original Mix)7:35476228Jon BW&613245Cally Gage998Caterpillar (Original Mix)7:35476228Jon BW&152346JP & Jukesy999DJs Are Vermin (Original Mix)7:08476228Jon BW&186773Kutski1000Borrowed Milk (Original Mix)6:54476228Jon BW&643849Scott Fo-Shaw1001Magnafied (Original Mix)8:07476228Jon BW&643849Scott Fo-ShawTIDYML011 - Tidy Music Library 111002Centrefold (Nu Raverz Remix)5:4321059Anne Savage1003Dont Give Up (BK Remix)6:551049670Jimmy Dean (3)1004Dont Give Up (Original Mix)6:471049670Jimmy Dean (3)1005Techno Shock (Nu Raverz Remix)5:2220176Organ Donors&11433Vinylgroover1006Nut Job (Guyver Remix)7:2549155Paul Maddox&1392400Tidy DJsThe Tidy DJs1007Nut Job (Original Mix)7:1449155Paul Maddox&1392400Tidy DJsThe Tidy DJs1008Nut Job (Vandall Remix)7:1449155Paul Maddox&1392400Tidy DJsThe Tidy DJsTIDYML012 - Tidy Music Library 121009Mouse Shack (Original Mix)8:2715223Andy Farley&224600Sam Townend1010Xchange & Mart (Original Mix)7:1515223Andy Farley&224600Sam Townend1011Cupertino (Original Mix)7:0819516Curve Pusher1012Tarpon Point (Original Mix)7:2819516Curve Pusher1013Desert Island Disco (Original Mix)6:23563086Olive Grooves1014Raise The Roof (Original Mix)7:18563086Olive Grooves1015Think Pink (Original Mix)7:18563086Olive Grooves1016The Spirit (BK Remix)6:5290517Stimulator1017The Spirit (Original Mix)7:0390517StimulatorTIDYML013 - Tidy Music Library 131018Dominator (Ilogik Shrink Wrapped Remix)9:164066Human Resource1019El Castro (Original Mix)8:3238229Ilogik1020Tronic Equator (BK Remix)7:2638229Ilogik1021Tronic Equator (Original Mix)6:5338229Ilogik1022Feel The Pressure (Original Mix)9:0638229Ilogik&220884Dave Owens1023Player (Original Mix)8:0838229IlogikVs100940UK Gold (2)1024Nuclear Shower (Ilogik Remix)8:51100940UK Gold (2)TIDYML014 - Tidy Music Library 141025Switch! (Original Mix)7:288349BKVs.1636952Sam & Deano1026Freefallin' (Rob Tissera's Epic Mix)7:113631Rob Tissera&152564Technikal1027Freefallin' (Technikal's Double Drop Mix)7:113631Rob Tissera&152564Technikal1028Freefalling (MDA & Spherical Remix)6:113631Rob Tissera&152564Technikal1029Get Up Stand Up (Farley & Maddox Remix)8:201453116Tidy Allstars1030Get Up Stand Up (Neal Thomas Remix)8:141453116Tidy Allstars1031Eternity (Original Mix)8:311191921VelosFeat.20907GuyverTIDYML015 - Tidy Music Library 151032Rave Monkey (JP & Jukesy Remix)8:268349BK1033Rave Monkey (Original Mix)6:518349BK1034Breathless (Original Mix)8:0220907Guyver1035Were Gonna Rock You (Logg & Wrag-One Remix)7:03302134Rodi Style1036Were Gonna Rock You (Original Mix)7:57302134Rodi Style1037In The Zone (Original Mix)7:191372269Steve Hill Vs Technikal1038Music For A Harder Generation (Iridium Remix)6:34152564TechnikalFeat228852MC WhizzkidTIDYML016 - Tidy Music Library 161039Awakening (Original Mix)8:121289791Kris McLachlan1040Awakening (S.H.O.K.K. Remix)6:491289791Kris McLachlan1041What Can You Do 4 Me (MDA & Spherical Mix)7:4018435Lisa Lashes1042We Are Hardcore (Original Mix)6:24370522MDA & Spherical1043Give Me Love (Original Mix)6:23370522MDA & SphericalFeat.1358264Trevor Dans1044Conscious Awareness (Iridium Remix)7:1349155Paul Maddox1045Conscious Awareness (Original Mix)7:2949155Paul Maddox1046Are You All Ready (BK Remix)7:025531Tony De VitTIDYML017 - Tidy Music Library 171047Celestial Force (Original Mix)8:02573621Iridium (5)1048Future Rave7:48573621Iridium (5)1049Polaris 4 (Original Mix)8:00573621Iridium (5)1050Secret (Instrumental)7:42643849Scott Fo-Shaw1051Secret (Rock N Rolla Remix)5:47643849Scott Fo-Shaw1052Secret (Vocal Mix)7:49643849Scott Fo-Shaw1053Cry For You (Original Mix)8:3490517Stimulator1054Cry For You (Paul Morrells Classique Remix)8:2990517Stimulator1055Cry For You (Technikals Tidy Two Remix)6:4190517StimulatorTIDYML018 - Tidy Music Library 181056Scirocco (Neal Thomas Remix)8:2826657Base Graffiti1057Scirocco (Original Mix)6:3126657Base Graffiti105820 000 Hardcore Members (Ed Real 2010 Remix)7:43150114Ed Real&180497The Coalition (2)105920 000 Hardcore Members (Iridium Remix)8:09150114Ed Real&180497The Coalition (2)106020 000 Hardcore Members (Jon BW Remix)6:55150114Ed Real&180497The Coalition (2)106120 000 Hardcore Members (Kidd Kaos Remix)6:10150114Ed Real&180497The Coalition (2)1062Haddock Nuff (Original Mix)6:291843821Jaffa Ramakin1063Put Your House In Order (Original Mix)7:131843821Jaffa RamakinTIDYML019 - Tidy Music Library 191064Beautiful Illusion (Ben Stevens & Rodi Style Remix)6:58233533Amber D1065Beautiful Illusion (Original Mix)8:21233533Amber D1066Cold Pizza (Original Mix)7:37220886Ben Stevens&302134Rodi Style1067I Cant Help Myself (Original Mix)7:16220886Ben Stevens&302134Rodi Style1068Unstuck (Original Mix)8:151844078Vox & Go1069Unstuck (UK Golds Sunday Morning Redux)8:301844078Vox & GoTIDYML020 - Tidy Music Library 201070Dull Drums (Original Mix)7:5815223Andy Farley&224600Sam Townend1071Dull Drums (Scott Attrill Remix)7:3415223Andy Farley&224600Sam Townend1072In My Mind (Andy Whitby & Klubfiller Remix)6:311775958Leon B&20907Guyver1073In My Mind (Original Mix)8:021775958Leon B&20907Guyver1074Rock It (Original Mix)7:59100940UK Gold (2)1075Shape Thrower (Original Mix)7:21100940UK Gold (2)&643847Amp Attack1076Uncle Bob (Original Mix)6:09100940UK Gold (2)&643847Amp AttackTIDYML021 - Tidy Music Library 211077Another Day (JP & Jukesy Remix)7:34233533Amber D1078Another Day (Original Mix)8:35233533Amber D1079Another Day (Shock Force Remix)6:46233533Amber D1080Good Timez (Karim Remix)8:396070Jon Doe1081Good Timez (Maximus Baxter Remix)6:196070Jon Doe1082Good Timez (Original Mix)6:096070Jon Doe1083Black Cat (Original Mix)7:11557414Paul Morrell1084Lime Light (BK & Anne Savage Remix)6:57557414Paul Morrell1085Lime Light (Original Mix)6:16557414Paul Morrell1086Push (Original Mix)6:21557414Paul MorrellTIDYML022 - Tidy Music Library 221087Everybody - Move Your Body (Original Mix)7:4720959Alumina1088Back 2 The Old Shoal (Groove Mix)7:261843821Jaffa Ramakin1089Back 2 The Old Shoal (Tuff Mix)7:261843821Jaffa Ramakin1090Brain Sturgeon (Original Mix)6:301843821Jaffa Ramakin1091Stuck On Repeat (Original Mix)8:13476228Jon BW1092Stuck On Repeat (Pero Remix)6:44476228Jon BW1093Hard Like Thunder (Original Mix)7:0432426Stimulant DJs1094Take Off (Garbo Remix)7:5990517StimulatorTIDYML023 - Tidy Music Library 231095Tequila Slammer (Original Mix)6:59233533Amber D1096Fight Fur Survival (Original Mix)8:071289791Kris McLachlanFeat545818Lucy Clarke1097Rock The Jam (Original Mix)6:392095651Panic (23)1098Drug Music (Original Mix)7:22302134Rodi Style&2204862Dr Device1099Hammer Time (Original Mix)6:04302134Rodi Style&573621Iridium (5)1100Nasty Time (Original Mix)7:15302134Rodi Style&224600Sam TownendFeat1844076Amanda Sampson1101Fine Night (BK Remix)6:5811712Untidy DubsFeat.980145Emma Lock1102Fine Night (Ilogik Remix)8:5111712Untidy DubsFeat.980145Emma Lock1103Fine Night (Original Mix)7:5211712Untidy DubsFeat.980145Emma Lock1104Fine Night (Technikal's Euphoric Remix)7:2911712Untidy DubsFeat.980145Emma Lock1105Fine Night (Technikal's Relentless Remix)7:2611712Untidy DubsFeat.980145Emma Lock1106Fine Night 2010 (Original Mix)7:5211712Untidy DubsFeat.980145Emma LockTIDYML024 - Tidy Music Library 241107Let The Bass Kick (Original Mix)7:0920959Alumina1108Fire (Original Mix)6:461049670Jimmy Dean (3)1109Fire (Pero Mix)6:481049670Jimmy Dean (3)1110Cars (Original Mix)7:051235088Pero (2)1111Above The Clouds (Original Mix)7:131235088Pero (2)Featuring545818Lucy Clarke1112You & Me (Original Mix)7:311235088Pero (2)Featuring545818Lucy Clarke1113Getting Hot (Original Mix)8:3532426Stimulant DJsTidyML025 - Tidy Music Library 251114Shizzle (Original Mix)7:3515223Andy Farley&26657Base Graffiti1115Reignite (Original Mix)7:1115223Andy Farley&8349BK1116Twisted Circus (Pero Remix)6:5315223Andy Farley&8349BK1117Give Up The Funk (Original Mix)8:1621472Flash Harry1118Endangered (Original Mix)8:0949155Paul Maddox1119Headz Up (Original Mix)7:17801774Tom Parr (2)1120Tropic Bass (Original Mix)7:05801774Tom Parr (2)1121Butterfly (Original Mix)7:07801774Tom Parr (2)&2205674Becki BourneTidyOSA - Organ Donors - Oldskool Autopsy1122Acid In The System (Original Mix)7:4020176Organ Donors1123Activ8 (Original Mix)8:3320176Organ Donors1124Mentasm (Original Mix)4:5620176Organ Donors1125Moog Eruption (Original Mix)7:1020176Organ DonorsTidyRF01 - Refresh EP1126U Found Out (Paul Chambers Daredevil Remix)5:59253949The HandbaggersHandbaggers1127Only Me (Hamilton Remix)4:501687Hyperlogic1128I Don't Care (Lee Haslam Remix)7:535531Tony De Vit1129The Dawn (Ali Wilson Tekelec Remix)9:185531Tony De Vit1130Funky Groove (Calvertron Remix)4:5511712Untidy Dubs1131Fine Night (Zubagroove Remix)6:1711712Untidy DubsFeat.980145Emma LockTidyTL01 - Tidy Tools EP11132Pink Noise (Original Mix)7:03247066Caddyshack1133Out Of Time (Original Mix)6:43113663Colin Barratt1134Never Never Land (Original Mix)8:0920958Ingo&21059Anne SavageTidyTL02 - Tidy Tools EP 21135Parasite (Original Mix)7:3321059Anne Savage1136Nightmare Man (Mighty Molleycuddles Unreleased Remix)6:36186773Kutski1137Nightmare Man (Original Mix)7:10186773Kutski1138Nightmare Man (UK Remix Unreleased)7:32186773Kutski1139Say Goodbye (Original Mix)7:2194855Tara ReynoldsTidyTL03 - Tidy Tools EP31140Workin' Da Bass (Original Mix)8:47259312Chris Hoff&672476Jono Allen1141Scream For Daddy (Original Mix)7:06224600Sam TownendAnd476228Jon BW1142Dance With Me (Original Mix)6:58472391Trevor McLachlanTidyTwo 101 - DJ Zagros & Pacific - Shine1143Shine (DJ Wag Remix)7:1063636DJ Zagros & Pacific1144Shine (Original Edit)3:5863636DJ Zagros & Pacific1145Shine (Original Mix)7:5763636DJ Zagros & PacificTidyTwo 102 - D & A - Demons1146Demons (Club Trance Mix)5:2614630D & A1147Demons (Spacecorn Edit)3:5914630D & A1148Demons (Spacecorn Remix)5:3614630D & ATidyTwo 103 - DJ Vortex and Arpa's Dream - Incoming1149Incoming (Arome Remix)7:5048526DJ Vortex & Arpa's Dream1150Incoming (Beam Vs Cyrus Radio Edit)3:2648526DJ Vortex & Arpa's Dream19442Beam vs. CyrusBeam Vs CyrusRemix1151Incoming (Beam Vs Cyrus Remix)6:2348526DJ Vortex & Arpa's Dream19442Beam vs. CyrusBeam Vs CyrusRemixTidyTwo 104 - Signum Feat Scott Mac - Coming On Strong1152Coming On Strong (Hyperlogic Remix)7:244629Signum1153Coming On Strong (Radio Edit)3:274629Signum1154Coming On Strong (S.H.O.K.K Remix)7:014629Signum1155Coming On Strong (The Crow Remix)8:074629Signum20840DJ The CrowThe CrowRemix1156Coming On Strong (Vinyl Mafia)9:434629SignumTidyTwo 105 - The Riot Brothers - Ripped Out1157My Star Control (Original Mix)7:32152999The Riot BrothersRiot Brothers1158Ripped Out (Original Mix)8:12152999The Riot BrothersRiot BrothersTidyTwo 106 - Abel Ramos - One More1159One More (Original Mix)7:0638588Abel Ramos1160One More (Original Radio Edit)3:3138588Abel Ramos1161One MOre (Pulsedriver Vs Rocco Remix)6:1838588Abel RamosTidyTwo 107 - Guyver - Serious Sound1162Serious Sound (Original Mix)8:1420907Guyver1163You'll Know It (Original Mix)8:0320907GuyverTidyTwo 108 - Lee Haslam - Music Is The Drug1164Music Is The Drug (Original Mix)6:5037429Lee Haslam1165Your Serve (Original Mix)7:3937429Lee HaslamTidyTwo 109 - Heaven's Cry - I Don't Need This1166I Don't Need This (Champion Burns Remix)7:2664206Heaven's Cry1167I Don't Need This (Kumara Remix)7:0864206Heaven's Cry1168I Don't Need This (Original Mix)7:1664206Heaven's Cry1169I Don't Need This (Original Radio Edit)3:2664206Heaven's Cry1170I Don't Need This (Riot Bros Remix)8:4364206Heaven's CryTidyTwo 110 - E-Wok - Supersound1171Supersound (Freak Remix)6:4221468E-Wok1172Supersound (Mr Bishi Unreleased Remix)6:4021468E-Wok1173Supersound (Stimulator Radio Edit)3:4521468E-Wok1174Supersound (Stimulator Remix)7:2221468E-WokTidyTwo 111 - The Riot Brothers - Flashback1175Flashback (Original Mix)7:42152999The Riot Brothers1176Flashback (Radio Edit)4:08152999The Riot Brothers1177Guyver Unit (Original Mix)8:30152999The Riot BrothersTidyTwo 112 - DJ Spoke - Ignition1178Ignition (Nick Sentience Remix)10:2919441DJ Spoke1179Ignition (S.H.O.K.K. Remix Radio Edit)3:5619441DJ Spoke1180Ignition (S.H.O.K.K. Remix)7:0919441DJ SpokeTidyTwo 113 - The Freak - the Melody The Sound1181The Melody The Sound (Flutlicht Remix)8:0163938The Freak1182The Melody The Sound (Original Mix)6:4863938The FreakTidyTwo 114 - Guyver - Man On The Moon1183Funky Ass Beats (Original Mix)8:5220907Guyver1184Man On The Moon (Original Mix)8:0620907GuyverTidyTwo 115 - Miss Behavin - Such A Good Feelin'1185Such A Good Feelin' (Barely Legal Remix)8:12156712Miss Behavin'1186Such A Good Feelin' (Lee Haslam Vs Guyver Remix)8:03156712Miss Behavin'TidyTwo 116 - Dave Holmes - Freedom1187Freedom (Lee Haslam Remix)6:4632921Dave Holmes1188Freedom (Original Mix)8:4332921Dave HolmesTidyTwo 117 - Tomcat - State Of Motion1189I'm Still Free (Original Mix)7:0585473Tomcat (2)1190State Of Motion (Original Mix)8:1585473Tomcat (2)TidyTwo 118 - Guyver - Differences1191Differences (Original Mix)6:5220907Guyver1192Trapped (Original Mix)8:0220907GuyverTidyTwo 119 - Stimulator - Scream1193Scream (Flash Harry Remix)9:4290517Stimulator1194Scream (Original Mix)6:0190517Stimulator1195Scream (Short Cut)3:5690517StimulatorTidyTwo 120 - Lee Pasch - Emotion - Calling For You1196Calling For You (Original Mix)8:15101853Lee Pasch1197Emotion (Original Mix)8:52101853Lee PaschTidyTwo 121 - Paul Maddox Feat Niki Mak - Reach Out1198Reach Out (Lee Pasch Remix)8:3349155Paul MaddoxFeat462374Niki Mac1199Reach Out (Original Mix)8:3649155Paul MaddoxFeat462374Niki MacTidyTwo 122 - Incisions - I'm The One1200I'm The One (Kronos Mix)8:285538Incisions1201I'm The One (Shark Boy Remix)7:375538IncisionsTidyTwo 123 - Tony De Vit Feat. Niki Mak - Give Me A Reason1202Give Me A Reason (2003 Mix)7:375531Tony De VitFeat.68702Niki Mak1203Give Me A Reason (Andy Farley Remix)7:215531Tony De VitFeat.68702Niki Mak1204Give Me A Reason (Full Vocal Mix)8:055531Tony De VitFeat.68702Niki Mak1205Give Me A Reason (Original Trade Mix)8:165531Tony De VitFeat.68702Niki Mak1206Give Me The Reason (Guyver Mix)8:075531Tony De VitFeat.68702Niki MakTidyTwo 124 - Stimulator - Play1207Play (Original Mix)7:2690517Stimulator1208Play (Paul Maddox Remix)8:4690517StimulatorTidyTwo 125 - Lee Haslam - Free1209Free (Original Mix)9:5537429Lee Haslam1210Retrospective (Original Mix)8:1537429Lee HaslamTidyTwo 126 - The Freak - The Bells1211The Bells (Lee Pasch Remix)7:5063938The Freak1212The Bells (Original Mix)7:1563938The FreakTidyTwo 127 - Ben Kaye Vs Deeprose and Thompson - I'm Your DJ1213I'm The DJ (Original Mix)7:1836378Ben KayeVs129797Deeprose & Thompson1214I'm The DJ (Stimulator Remix)6:3636378Ben KayeVs129797Deeprose & ThompsonTidyTwo 128 - Wid & Ben - Abs0lut1on1215Abs0lut1on (Original Mix)7:37151851Wid & Ben1216For N1ne (Original Mix)7:27151851Wid & BenTidyTwo 129 - Stimulator - Take Off1217Take Off (Jon Rundell & Matt Williams Remix)7:3190517Stimulator1218Take Off (Original Mix)8:3290517StimulatorTidyTwo 130 - Pants and Corset - Malice In Wonderland1219Malice In Wonderland (Azure Remix)8:0325830Pants & Corset1220Malice In Wonderland (Phil Reynolds & Steve Blake Remix)7:5325830Pants & CorsetTidyTwo 131 - Baby Doc & SJ - What You Do To Me Baby1221What U Do To Me Baby (Original Mix)9:3538309Baby Doc & S-JBaby Doc & SJ1222What You Do To Me (Paul Maddox Remix)8:0438309Baby Doc & S-JBaby Doc & SJTidyTwo 132 - Matar - Feeling1223Feeling (Guyver Remix)7:16489554Faysal MatarMatar1224Feeling (Tech House Remix)7:30489554Faysal MatarMatarTidyTwo 133 - Rob Tissera Vinylgroover and the Red Hed - Stay1225Stay (Original Mix)6:513631Rob Tissera,15346Vinylgroover & The Red Hed1226Stay (Stay Harder Mix)6:483631Rob Tissera,15346Vinylgroover & The Red HedTidyTwo 133T2 - Rob Tissera Vinylgroover and the Red Hed - Stay1227Stay (Kontakt Remix)6:123631Rob Tissera,15346Vinylgroover & The Red Hed1228Stay (Lee Haslam Remix)8:063631Rob Tissera,15346Vinylgroover & The Red HedTidyTwo 134 - Ed Real & The Coalition - 20,000 Hardcore Members122920,000 Hardcore Members (Escape From Riot Remix)6:54150114Ed Real&180497The Coalition (2)123020,000 Hardcore Members (Original Mix)7:19150114Ed Real&180497The Coalition (2)TidyTwo 135 - Lee Haslam - Liberate1231Here Comes The Pain (Euphony Remix)7:0937429Lee Haslam1232Liberate (Original Mix)8:3437429Lee HaslamTidyTwo 136 - Wid & Ben - P01nt Blank1233Hate Th30ry (Original Mix)7:42151851Wid & Ben1234P01nt Blank (Original Mix)8:08151851Wid & BenTidyTwo 137 - Guyver - Possibly1235Carte Blanche (Original Mix)8:33215254Euphony (2)1236Possibly (Original Mix)7:4020907GuyverTidyTwo 138 - Enermatic - Mastermind1237Mastermind (Original Mix)8:35221282Enermatic1238Mastermind (Wid & Ben Remix)8:26221282EnermaticTidyTwo 139 - Technikal - Rollcage1239Miracle (Original Mix)8:00152564Technikal1240Rollcage (Original Mix)7:31152564TechnikalTidyTwo 140 - Rowland & Wright - God Fearing Man1241God Fearing Man (Original Mix)7:0697033Nick Rowland & Dave WrightRowland & Wright1242Oxygen (Original Mix)7:2997033Nick Rowland & Dave WrightRowland & WrightTidyTwo 141 - Trance-Pennine Express - Forgotten1243Forgotten (Paul Maddox & Ben Stevens Mix)7:433972134Trance-Pennine Express1244Forgotten (S.H.O.K.K. Remix)8:033972134Trance-Pennine ExpressTidyTwo 142 - Tidy Boys & Technikal - The Danger1245The Danger (Alex Kidd & Danny Williamson Remix)5:5825831Tidy Boys&152564Technikal1246The Danger (Original Mix)9:1125831Tidy Boys&152564TechnikalTidyTwo 144 - Stimulator - Scrutinized1247Scrutinized (Original Mix)6:0290517StimulatorTidyTwo 145 - Technikal - MIndtrix1248Mindtrix (Original Mix)7:26152564Technikal1249Sherbert Supernova (Original Mix)7:36152564TechnikalTidyTwo 146 - Trance-Pennine Express - Don't Tell Me1250Don't Tell Me (NG Rezonance Remix)7:043972134Trance-Pennine Express1251Don't Tell Me (Original Mix)7:203972134Trance-Pennine ExpressTidyTwo 147 - NG Rezonance - Thermite1252Progression (Original Mix)7:101215349NG Rezonance1253Thermite (Original Mix)7:051215349NG RezonanceTidyTwo 148 - Audio Hedz & Alex Burn - Just Another1254Just Another (Original Mix)8:31799231Audio Hedz&2862074Alex BurnTidyTwo 149 - Dark Society feat. Jordana - There's No Love1255No Love (Original Mix)9:01458932Dark SocietyFeat.429300JordanaTidyTwo 150 - Lee Haslam & Pete Berry - State Of Mind1256State Of Mind (Original Mix)6:5437429Lee Haslam&2467728Peter Berry (3)TidyTwo 151 - Stimulator - Scream (Heavens Cry Remix)1257Scream (Heaven's Cry Remix)5:3690517StimulatorTidyTwo 201 - Heaven's Cry - Revival1258Revival (Original Mix)6:4364206Heaven's CryTidyTwo 202 - NG Rezonance & PHD feat Hayley Colleen - Worlds Collide1259Worlds Collide (Instrumental Mix)7:121215349NG Rezonance&4013348PHD (11)Feat7523397Hayley Colleen1260Worlds Collide (Original Mix)7:121215349NG Rezonance&4013348PHD (11)Feat7523397Hayley Colleen1261Worlds Collide (Signum's Flashback Remix)7:171215349NG Rezonance&4013348PHD (11)Feat7523397Hayley ColleenTidyTwo 203 - Nicholson vs Jens - Loops & Tings 20201262Loops & Tings 2020 (Original Mix)8:07583867Nicholson (2)Vs8118JensTidyTwo 204 - Technikal - Closer1263Closer (Original Mix)7:08152564Technikal1264Fireball (Original Mix)8:25152564TechnikalTidyTwo 205 - Adam Taylor feat Claire Willis - Time Flies1265Time Flies (Original Mix)8:214996355Adam Taylor (16)&1486572Claire WillisTidyTwo 206 - Nicholson & Paul Skelton - Serenity1266Industria (Original Mix)6:51583867Nicholson (2)1267Serenity (Original Mix)6:36583867Nicholson (2)&5832610Paul Skelton (3)TidyTwo 207 - Rob Tissera & Paul Priestley - Aspirations1268Aspirations (Original Mix)7:403631Rob Tissera&6849234Paul PriestleyTidyTwo 208 - Bryn Whiting - You Are Still Alive1269You Are Still Alive (Nicholson Remix)6:521163580Bryn Whiting1270You Are Still Alive (Original Mix)8:071163580Bryn WhitingTidyTwo 209 - NG Rezonance & PHD - Acid Drop1271Thermite 2021 (Original Mix)4:481215349NG Rezonance1272Acid Drop (Original Mix)8:021215349NG Rezonance&4013348PHD (11)TidyTwo 210 - Eamonn Fevah & NuroGL - Inside Of Me1273Inside Of Me (Original Mix)8:0798397Eamonn Fevah&2105341NuroGLTidyTwo 211 - SystemShock & Bryn Whiting - Never Surrender1274Never Surrender (Original Mix)7:326540611SystemShock (4)&1163580Bryn WhitingTidyTwo 212 - Nicholson & Quake - Life's A Dream1275Life's A Dream (Original Mix)7:10583867Nicholson (2)&11806QuakeTidyTwo 213 - Adam Dixon - Tomorrow1276Tension (Original Mix)7:155606433Adam Dixon (2)1277Tomorrow (Original Mix)7:475606433Adam Dixon (2)TidyTwo 214 - Lee Haslam - The Power1278The Power (Original Mix)6:3137429Lee HaslamTidyTwo 215 - Nicholson feat Emoiryah - Now We Are Free1279Now We Are Free (Original Mix)7:09583867Nicholson (2)Feat6235178EmoiryahTidyTwo 216 - Prime Mover - Feel What I Feel 20211280Feel What I Feel (Original Mix)8:0538910Prime Mover1281Feel What I Feel (Prime Mover 2021 Remix)7:0538910Prime Mover1282Feel What I Feel (Rhys Elliott Remix)7:5338910Prime MoverTidyTwo 217 - Technikal & NIcholson - System Shock (Dan Thompson Remix)1283System Shock (Dan Thompson Remix)6:51152564Technikal&583867Nicholson (2)TidyTwo 218 - Yusef Kifah - Energy (Feel What I'm Feeling)1284Energy (Feel What I'm Feeling) (Original Mix)4:593932114Yusef KifahTidyTwo 219 - Nicholson - Beautiful Day1285Beautiful Day (Original Mix)7:04583867Nicholson (2)TidyTwo 220 - Bryn Whiting - The Parade1286The Parade (Original Mix)7:401163580Bryn WhitingTidyTwo 221 - NG Rezonance - Hypersonic1287Hypersonic (Original Mix)6:211215349NG RezonanceTidyTwo 222 - Paul Clark feat Elle Mariachi - Lullaby1288Lullaby (Original Mix)6:368040392Paul Clark (30)Feat7226941Elle MariachiTidyTwo FR01 - Nicholson - Free1289A Better Future (Original Mix)7:05583867Nicholson (2)1290Beautiful Day (Original Mix)7:04583867Nicholson (2)1291Games (Original Mix)6:38583867Nicholson (2)1292Hell & Heaven (Original Mix)6:05583867Nicholson (2)1293Hit & Miss (Original Mix)6:38583867Nicholson (2)1294Lockdown (Original Mix)7:26583867Nicholson (2)1295Loose Your Mind (Original Mix)6:50583867Nicholson (2)1296Music Is Everywhere (Original Mix)7:00583867Nicholson (2)1297Raveolution (Original Mix)6:10583867Nicholson (2)1298The Head Master (Original Mix)7:12583867Nicholson (2)1299Zero Gravity (Original Mix)7:02583867Nicholson (2)1300Light It Up (Original Mix)7:00583867Nicholson (2)&5832610Paul Skelton (3)1301Now We Are Free (Original Mix)7:09583867Nicholson (2)Feat6235178EmoiryahTidyTwo JX1T - JX - Restless1302Restless (12 Inch Original Mix)7:521680JX1303Restless (Azure Remix)7:041680JX1304Restless (Guyver Remix)10:151680JX1305Restless (Radio Edit)2:401680JX1306Restless Rex The Dog Remix6:581680JXTidyTwo JX1T2 - JX - Restless1307Restless (Laurent Konrad Remix)6:371680JX1308Restless (Mat Silver And Tony Burt Remix)8:041680JXTidyTwo REV01 - Nicholson - Reverent1309Blueprint (Tara's Theme) (Nicholson's Reverent Remix7:05133972Carl Nicholson1310Butterlies (Original Mix)7:08583867Nicholson (2)1311Chainsaw (Original Mix)6:47583867Nicholson (2)1312Industria (Original Mix)6:51583867Nicholson (2)1313La Musica (Original Mix)6:59583867Nicholson (2)1314Loaded (Original Mix)7:13583867Nicholson (2)1315Moviegods & Rockstars (Original Mix)6:58583867Nicholson (2)1316Not Alone (Original Mix)6:19583867Nicholson (2)1317Rare Lights (Original Mix)6:49583867Nicholson (2)1318Sunstroke (Original Mix)6:51583867Nicholson (2)1319White Star (Original Mix)7:54583867Nicholson (2)1320Serenity (Original Mix)6:36583867Nicholson (2)&5832610Paul Skelton (3)1321Universal (Original Mix)6:42583867Nicholson (2)&5832610Paul Skelton (3)1322To The Flame (Charlotte's Theme) (Nicholson's Reverent Remix6:53583867Nicholson (2)Feat.68702Niki MakTIDYWKEP01 - Something For The Weekender EP1323Exposed7:34114457Alex KiddVs75559Dark By Design1324Turn To Dust8:3085474Barely Legal1325Keep Da Music7:248349BK1326Swinging7:2225831Tidy BoysTrashed - Bootlegs & Blags Album Sampler1327Blueprint (Tara's Theme) (Iridium Remix)8:26133972Carl Nicholson1328Show Me The Way (Steve O'Brady Remix)7:02458932Dark Society1329Go Back (Matt Pickup & Riggsy Remix)7:0921468E-Wok1330U Found Out (Scott Fo Shaw Remix)8:37253949The HandbaggersHandbaggers1331Feel So Good (Andy Whitby Remix)7:4341595Jon The Dentist & Ollie Jaye1332Restless (Technikal Remix)8:361680JX1333Dance 2 The House (Don't Go) (MoFo Disco Remix)7:2018435Lisa Lashes1334The Birds (AudioHedz Vs Wain Johnstone Remix)6:5921652Question Mark1335I Need U (Knuckleheadz Remix)8:2538309Baby Doc & S-JSJ And Baby Doc1336Colours EP (Amp Attack Multicoloured Remix)7:5611712Untidy DubsUntidy 001 - Untidy Dubs Volume 11337Funky Groove (Original Mix)8:0911712Untidy Dubs1338Get Up & Jam (Original Mix)7:1911712Untidy Dubs1339Getting Hot (Original Mix)6:2811712Untidy Dubs1340U Can Last (Original Mix)5:4511712Untidy DubsUntidy 001 - Untidy Dubs Volume 1\Funky Groove Manefesto Remixes1341Funky Groove (Judge Jules Remix)6:5811712Untidy Dubs1342Funky Groove (Knuckleheadz Remix)6:3211712Untidy DubsUntidy 002 - Untidy Dubs Volume 21343Black Is Black (Untidy Dub)6:3115366Allnighters13444 Those That Can Dance (Untidy Dub)5:5515365Benedict Brothers1345Only Me (Untidy Dub)6:221687Hyperlogic1346Gotta Keep On (Time 4 Getting Down) (Untidy Dub)6:279183The Red Hand GangUntidy 003 - Untidy Dubs Volume 31347Bang To The Beat (Original Mix)6:5311712Untidy Dubs1348Can't You See (Original Mix)7:2011712Untidy Dubs1349Freedom Party (Original Mix)5:4111712Untidy Dubs1350Mr Bump (Original Mix)5:2511712Untidy DubsUntidy 004 - Scooper and Sticks1351Bayse (Original Mix)6:1421060Scooper & Sticks1352Do It Like This (Original Mix)8:0121060Scooper & Sticks1353Keep It On (Original Mix)5:5621060Scooper & SticksUntidy 005 - Disposable Disco Dubs1354Countdown (Original Mix)6:5520104Paul Chambers1355Disco 99 (Original Mix)5:2725832Paul Janes1356Impact (Original Mix)6:2920104Paul Chambers1357Set The Scene (Original Mix)6:1325832Paul JanesUntidy 006 - Untidy Dubs Volume 41358Drop The Bayse (Original Mix)6:0111712Untidy Dubs1359R.I.P. (Original Mix)6:5811712Untidy Dubs1360The Groove (Original Mix)6:1311712Untidy DubsUntidy 007 - Signum - Just Do It1361Just Do It (Original Mix)7:044629SignumFeat.38222Scott Mac1362Just Do It (Untidy Dub)6:464629SignumFeat.38222Scott MacUntidy 008 - The Colours EP 11363Blue (Original Mix)5:4535368Untidy DJ's1364Green (Original Mix)6:2635368Untidy DJ's1365Red (Original Mix)5:5935368Untidy DJ's1366Yellow (Original Mix)6:2635368Untidy DJ'sUntidy 009 - Bed and Bondage1367Don't Take The Mick (House Rockers Dub)8:2571037Bed & Bondage1368Don't Take The Mick (Original Mix)5:0971037Bed & Bondage1369Warren Street (Original Mix)5:0271037Bed & BondageUntidy 010 - Disposable Disco Dubs Vol 21370200102 (Original Mix)6:5425832Paul Janes&20104Paul Chambers1371Casino (Original Mix)6:1325832Paul Janes1372Escape From New York (Original Mix)6:4225832Paul Janes1373Twister (Original Mix)6:0825832Paul Janes&20104Paul ChambersUntidy 011 - Tecmania Rebel - Circus Beats1374Circus Beat (Bulletproof Remix)7:0858645Tecmania Rebel1375Circus Beat (Originl Mix)5:2558645Tecmania Rebel1376Circus Beat (Uk Gold Remix)8:1758645Tecmania RebelUntidy 012 - The Colours EP 21377Orange (Original Mix)7:0935368Untidy DJ's1378Purple (Original Mix)7:1335368Untidy DJ's1379White (Original Mix)5:5435368Untidy DJ'sUntidy 013 - Satellite Kidz - Time 4 House1380IBase (Original Mix)6:2321480Satellite Kidz1381Time 4 House (Original Mix)7:2221480Satellite KidzUntidy 014 - Disposable Disco Dubs 31382Doo Dah Doo (Original Mix)6:5725832Paul Janes1383Slut Strut (Original Mix)6:5525832Paul Janes1384Superfreak (Original Mix)8:0325832Paul Janes&20104Paul Chambers1385We Like The Music (Original Mix)6:3725832Paul Janes&20104Paul ChambersUntidy 015 - Groove Collector1386Cool Hunted (Original Mix)6:0620170The Groove CollectorGroove Collector1387Mosquito (Original Mix)6:0420170The Groove CollectorGroove CollectorUntidy 016 - Havana Connection1388Getaway (Chantin' Filtered Disco Dub)5:2081522Havana Connection1389Getaway (Strings Of Joy Remix)6:0481522Havana Connection1390Mixed Feelings (Original Mix)6:2981522Havana ConnectionUntidy 017 - Freak Machine - Fantasy1391(Unreleased) Boogie Groove6:3578406Freak Machine1392Fantasy (Flash Harry Remix)7:3378406Freak Machine1393Fantasy (Original Mix)7:4778406Freak MachineUntidy 018 - FD Henderson EP1394Dancin All Night (Original Mix)5:3982545Fred HendersonFD Henderson1395Heaven Above (Original Mix)7:5182545Fred HendersonFD Henderson1396I LIke That Bass (Original Mix)6:1782545Fred HendersonFD Henderson1397My Mind Is On You (Original Mix)4:2982545Fred HendersonFD HendersonUntidy 019 - Funkaholic - My House1398Luna Conga (Original Mix)7:43144440Funkaholic1399My House (Original Mix)6:21144440Funkaholic1400Slow Vibe (Original Mix)6:53144440FunkaholicUntidy 020 - Spencer G vs. Junigurburi - Through The Night1401Through The Night (Dollar Mix)6:53311628Spencer GVs311629Junigurubi1402Through The Night (Original Mix)6:15311628Spencer GVs311629JunigurubiUntidy 021 - Light Boy - Step Back1403Step Back (Champion Burns Mix)6:0572792Light Boy1404Step Back (Majestic Remix)7:4872792Light Boy1405Step Back (Orginal Mix)6:5772792Light BoyUntidy 022 - Majestic 121406Dance With You (Original Mix)7:2320293Majestic 121407Rough Riding (Original Mix)6:1120293Majestic 12Untidy 023 - Light Boy - Love What You're Doin' To Me1408Love What You're Doin' To Me (Majestic 12 Remix)7:0972792Light Boy1409Love What You're Doin' To Me (Original Mix)7:1372792Light BoyUntidy 024 - Disposable Disco Dubs Volume 41410Funk Me (Original Mix)6:3720104Paul Chambers1411The Loop (Original Mix)5:2420104Paul Chambers1412Zip Disko (Original Mix)6:5911333OD4041413Chatline (Original Mix)6:0049155Paul MaddoxUntidy 025 - Disposable Disco Dubs Volume 51414Keep It Turning (Original Mix)6:39140632Nigel Champion&140631Robert Burns1415Meltdown (Original Mix)5:0220104Paul Chambers1416Boogie Groove (Original Mix)6:3478689The Clubjock1417Show Me (Original Mix)6:0220104Paul ChambersUntidy 026 - Untidy Dubs Volume 51418Bring The Beat Back (Original Mix)7:5211712Untidy Dubs1419Celebrate (Original Mix)7:4911712Untidy Dubs1420Get Down & Dirty (Original Mix)6:1211712Untidy Dubs1421Pulsar (Original Mix)6:0811712Untidy DubsUntidy 027 - Twisted Funk EP1422Feel Alright (Original Mix)6:5911712Untidy Dubs1423Show The People (Original Mix)6:4011712Untidy Dubs1424So Good (Original Mix)6:5111712Untidy Dubs1425Wobbler (Original Mix)5:3711712Untidy DubsUntidy 028 - JX - Restless (Beat Detektives Remixes)1426Restless (Beat Detektives Dub)7:021680JX1427Restless (Beat Detektives Remix)9:081680JXUntidy 029 - Nu Raverz EP1428Big Tasty (Original Mix)6:191633087Nu Raverz1429Risky Disko (Original Mix)6:521633087Nu Raverz1430Your Own Colourz (Original Mix)7:271633087Nu RaverzUntidy 030 - The Colours EP 31431Coffee (Original Mix)7:1211712Untidy Dubs1432Cream (Original Mix)6:5711712Untidy Dubs1433Crimson (Original Mix)6:3911712Untidy DubsUntidy 031 - Trap Two - Dirty Protest EP1434Hip Hop Mohamed (Original Mix)6:154080558Trap Two1435It Feels So Wrong (Original Mix)6:334080558Trap Two1436Loop Maschine (Original Mix)6:054080558Trap TwoUntidy 032 - Untidy Dubs Volume 61437A Little Something (Original Mix)6:313498064Maddox & Townend1438Broken Heart (Original Mix)6:173498064Maddox & Townend1439Use It Or Lose (Original Mix)6:243498064Maddox & TownendUntidy 033 - SilkandStones - Let There Be House1440Let There Be House (Maddox & Townend Remix)6:306332661SilkandStones1441Let There Be House (Original Mix)5:356332661SilkandStonesUntidy 034 - Venkman - Almost Famous1442Almost Famous (Original Mix)9:001689336VenkmanUntidy 035 - DYOT - Sacrifice1443Sacrifice (Original Mix)6:314080556DYOTUntidy 036 - BK & Sam Townend - Ultimate1444I Can't Wait (Original Mix)6:068349BK&224600Sam Townend1445Ultimate (Original Mix)7:538349BK&224600Sam TownendUntidy 037 - Sam Townend - My Mind1446My Mind (Original Mix)8:16224600Sam TownendUntidy 038 - Disposable Disco Dubs Vol. 61447TBC98 (Original Mix)7:1925831Tidy Boys&4080558Trap Two1448Discolicious (Original Mix)6:334080558Trap Two1449In Too Deep (Original Mix)6:464080558Trap Two1450That's It (Original Mix)5:544080558Trap TwoUntidy 039 - Jas Van Houten - Moving On1451Moving On (2020 Untidy Dub)7:0542306Jas Van Houten1452Moving On (Original Mix)7:3342306Jas Van HoutenUntidy 040 - NG Rezonance & PHD feat Hayley Colleen - Worlds Collide (Remixes)1453Worlds Collide (Disposable Disco Dub)4:371215349NG Rezonance&4013348PHD (11)Feat7523397Hayley Colleen1454Worlds Collide (Untidy Dub)8:071215349NG Rezonance&4013348PHD (11)Feat7523397Hayley ColleenUntidy 041 - Sam Townend - Fractal Album Sampler1455Double Pinger (Take Me Higher) (Original Mix)5:37224600Sam Townend1456Holy Geezus (Original Mix)4:53224600Sam Townend1457Top Donkz (Original Mix)5:47224600Sam TownendUntidy 042 - James Revill - Belgium Durt1458Belgium Durt (Original Mix)8:546465072James RevillUntidy 043 - Jas Van Houten - Suare 11459Square 1 (Original Mix)7:4642306Jas Van HoutenUntidy 044 - Lee Pasch - Bass Playaz1460Bass Playaz (Original Mix)6:20101853Lee Pasch1461House Music (Original Mix)6:13101853Lee Pasch1462Start A Revolution (Original Mix)6:21101853Lee PaschUntidy 045 - Drew Dabble - What Ya Saying1463Bass Face (Original Mix)6:349089092Drew Dabble1464What Ya Saying (Original Mix)6:579089092Drew DabbleUntidy 046 - Sam Townend - Where Did You Get That Picture1465Atomic Banger (Original Mix)5:56224600Sam Townend1466Goodnight Sweetheart (Original Mix)6:02224600Sam Townend1467Where Did You Get That Picture (Original Mix)6:24224600Sam TownendUntidy 047 - Andy Naylor - Funky Pills1468Beat Won't Stop (Original Mix)6:25810423Andy Naylor1469Funky Pills (Original Mix)5:56810423Andy NaylorUntidy 048 - Ali Wilson - Sex, Drugs, Rock & Roll1470Sex, Drugs, Rock & Roll (Original Mix)6:1445593Ali Wilson1471Sex, Drugs, Rock & Roll (ZAW Remix)5:3245593Ali WilsonUntidy 049 - Temple Of Boom - Temple Of Boom EP1472Beat Down (Original Mix)6:219089095Temple Of Boom (4)1473Can You Feel It (Original Mix)5:219089095Temple Of Boom (4)Untidy 050 - Sam Townend - Boogie Monster1474Boogie Monster (Original Mix)7:02224600Sam TownendUntidy 051 - Zander Club - Zander Club EP1475Spank The House (Original Mix)5:109089086Zander Club1476Who Knows (Original Mix)6:249089086Zander ClubUntidy 052 - Ali Wilson & Matt Smallwood - Take Me Away1477Cognate (Original Mix)6:5945593Ali Wilson&212335Matt Smallwood1478Take Me Away (Original Mix)7:0345593Ali Wilson&212335Matt SmallwoodUntidy 053 - Sam Townend - Boogie Monster (Remixes)1479Boogie Monster (Fletcher Kerr Remix)6:04224600Sam Townend1480Boogie Monster (Undergroove Remix)5:34224600Sam TownendUntidy 054 - Miami House Party - Laser Beams & Ice Creams1481ID3 (Original Mix)5:265872340Miami House Party1482Laser Beams & Ice Creams (Original Mix)4:575872340Miami House Party1483M8 (Original Mix)4:295872340Miami House PartyUntidy 055 - ZAW - Human Music1484Human Music6:088202275ZAWUntidy BASSIX01 - Bassix, Volume 11485Making Bass From Hoover (Original Mix)5:40169199Adam M (2)&104447Abandon1486Try Anything Once (Original Mix)5:428515425Base 22&9089089Babushka (4)1487Dance Like You Don't Care (Original Mix)6:319089107De La Riva1488Sensational (Original Mix)6:177147765Hayz (2)&5066708Rick James (8)1489Movin' On (Untidy Dub)7:0542306Jas Van Houten1490Lick It (Original Mix)6:34933483Mark Butcher1491The Rumbler (Original Mix)6:029089101Mata Leão (2)1492Pitchbend Groove (Townend's Bendy Remix)6:17563086Olive Grooves1493Spill The Tea (Original Mix)8:201436429Ross Homson1494Breath Work (Original Mix)6:42224600Sam Townend1495Holy Geezus (Original Mix)4:53224600Sam Townend1496Lip Reader (Original Mix)5:13224600Sam Townend1497What Time Is Love (Level8 Remix)5:10224600Sam Townend1498Time 4 House (Zander Club Remix)6:3821480Satellite Kidz1499Higher (Josh Butler Remix)6:208352Trauma1500Cuz The House Gets Warm (Rawkus Remix)6:00100940UK Gold (2)1501When I Jack You Move (Original Mix)5:209089098Undergroove (5)1502Yeah Yeah (Original Mix)4:369089098Undergroove (5)1503The Vision (Original Mix)6:339089104Whomp Bat1504Want You (Original Mix)5:288202275ZAWUntidy FRAC01 - Sam Townend - Fractal1505Disco Whistle (Original Mix)5:50224600Sam Townend1506Double Pinger (Take Me Higher) (Original Mix)5:37224600Sam Townend1507Fractal (Original Mix)6:20224600Sam Townend1508Holy Geezus (Original Mix)4:53224600Sam Townend1509Make It Bang (Original Mix)5:41224600Sam Townend1510Mmm Hmm (Original Mix)4:36224600Sam Townend1511No Replies (Original Mix)5:06224600Sam Townend1512Popowaba (Original Mix)6:38224600Sam Townend1513Ravers Revenge (Original Mix)5:07224600Sam Townend1514Special Times (Original Mix)6:04224600Sam Townend1515The Dirty Garage Door (Original Mix)4:40224600Sam Townend1516Top Donkz (Original Mix)5:47224600Sam Townend1517Uropa's Balcony (Original Mix)6:52224600Sam Townend1518Watching Shooting Stars (Original Mix)5:50224600Sam Townend1519What Time Is Love? (Original Mix)5:12224600Sam TownendUntidy UX01A - Trauma - Higher (Josh Butler Remix)1520Higher (Josh Butler Remix)6:208352TraumaUntidy UX01B - Satellite Kidz - Time 4 House (Zander Club Remix)1521Time 4 House (Zander Club Remix)6:3821480Satellite KidzUntidy UX02A - Untidy Dubs - Funky Groove (Sorley Remix)1522Funky Groove (Sorley Remix)6:0611712Untidy DubsUntidy UX02B - Hyperlogic - U Got The Love (Jacky Remix)1523U Got The Love (Jacky Remix)5:011687HyperlogicUntidy UX03 - Lisa Lashes - Lookin' Good (Sam Divine Remix)1524Looking Good (Sam Divine Remix)6:0118435Lisa LashesUntidy UX04 - Committee - Welcome (Ali Wilson & Matt Smallwood Remix)1525Welcome (Ali Wilson & Matt Smallwood Remix)6:3843570CommitteeUntidy UX05 - Tony De Vit - Are You All Ready (Spektre Remix)1526Are You All Ready (Spektre Remix)6:545531Tony De Vit02 Tidy Compilations152710 Years Of Storm (Disc 1) - Alex Kidd1:02:09194Various152810 Years Of Storm (Disc 2) - JP & Jukesy Vs Defective Audio1:18:41194Various1529Anne Savage - Full Throttle (Mix 1)52:07194Various1530Anne Savage - Full Throttle (Mix 2)1:03:46194Various1531Are You All Ready? (Disc 1) - The Tracks1:18:34194Various1532Are You All Ready? (Disc 2) - The Remixes1:19:40194Various1533Bang Up For It (Disc 1) - Cally Gage Vs Klubfiller1:15:54194Various1534Bang Up For It (Disc 2) - Tidy DJs1:13:28194Various1535Bassix Volume 1 (Disc 1) - Sam Townend1:10:38194Various1536Bassix Volume 1 (Disc 2) - Sam Townend1:13:13194Various1537Disco Damaged (Disc 1) - Eddie Halliwell1:12:41194Various1538Disco Damaged (Disc 2) - Paul Janes1:11:50194Various1539Farley Time - A History Of Hard House (Disc 1)1:18:54194Various1540Farley Time - A History Of Hard House (Disc 2)1:18:43194Various1541Farley Time 2 - Future Hard House (Disc 1)1:14:58194Various1542Farley Time 2 - Future Hard House (Disc 2)1:18:43194Various1543Get Fresh - Maddox & Townend1:18:47194Various1544Girl Powa (Disc 1)1:16:45194Various1545Girl Powa (Disc 2)1:14:42194Various1546Girl Powa (Disc 3)1:16:57194Various1547Hard Dance Awards 2008 (Disc 1)1:19:04194Various1548Hard Dance Awards 2008 (Disc 2)1:18:11194Various1549Hard House Bible 1 (The New Testament) - The Tidy Boys1:18:56194Various1550Hard House Bible 1 (The Old Testament) - The Tidy Boys1:19:17194Various1551Hard House Bible 2 (The New Testament) - BK1:18:38194Various1552Hard House Bible 2 (The Old Testament) - BK1:16:21194Various1553Hard House Designer Labels - Riot! (BK & ED Real)1:18:19194Various1554Hard House Designer Labels - Tidy Trax (Sam Townend)1:12:34194Various1555Hard House Designer Labels - Vicious Circle (Paul Glazby)1:08:46194Various1556Hard House Heaven (Disc 1)1:19:38194Various1557Hard House Heaven (Disc 2)1:13:37194Various1558Inspirations For A Harder Generation (Disc 1)1:15:58194Various1559Inspirations For A Harder Generation (Disc 2)1:19:46194Various1560Rock With Me Through Time - Lisa Pin-Up3:01:03194Various1561Love Tidy (Disc 1)1:19:46194Various1562Love Tidy (Disc 2)1:19:40194Various1563M8 Mag Tidy Trax Mix Sampler For 1998 (Untidy DJs Mix)1:12:58194Various1564M8 Mag Tidy Trax Spring Collection 2000 (Tidy Boys Mix)58:47194Various1565M8 Mag Tidy Trax Summer Collection 1999 (Untidy DJs Mix)1:00:10194Various1566Nicholson - Free1:15:37194Various1567Nicholson - Reverent1:17:53194Various1568Sam Townend - Fractal1:07:16194Various1569Secret Vinyl Album Volume 1 (Disc 1) - The Tidy Boys1:18:55194Various1570Secret Vinyl Album Volume 1 (Disc 2) - Andy Farley1:18:36194Various1571Secret Vinyl Album Volume 2 (Disc 1) - The Tidy Boys1:08:06194Various1572Secret Vinyl Album Volume 2 (Disc 2) - Ben Stevens1:18:26194Various1573Storm The Album (Disc 1) - Garbo Vs Daley1:17:17194Various1574Storm The Album (Disc 2) - The Tidy Boys1:18:59194Various1575Storm The Album (Disc 3) - Andy Farley Vs Paul Glazby1:16:32194Various1576TDV20 - The Mix1:18:52194Various1577The Best Of Tidy White - Mixed By The Tidy DJs1:21:53194Various1578The Chronicles Of Hard House According To Tidy Trax1:08:58194Various1579The Untidy Collection - Untidy DJs (Mix 1)1:16:37194Various1580The Untidy Collection - Untidy DJs (Mix 2)1:26:44194Various1581The Weekender Strikes Back - Lisa Pin-Up - God Save The Queen1:07:48194Various1582Tidy Addict (Disc 1)1:19:22194Various1583Tidy Addict (Disc 2)1:18:42194Various1584Tidy Boys Big Night Out - The Big Night In1:18:58194Various1585Tidy Boys Big Night Out - The Big Night Out1:08:45194Various1586Tidy F - Flogged - Mixed By The Tidy Boys1:19:18194Various1587Tidy Gold (Disc 1) - The Tidy DJs1:19:07194Various1588Tidy Gold (Disc 2) - Lisa Pin-Up & Kym Ayres1:19:01194Various1589Tidy International - Tidy Vs Masif - Guyver & Paul Maddox1:19:09194Various1590Tidy International - Tidy Vs Masif - Steve Hill & Technikal1:19:02194Various1591Tidy M - Milked - Mixed By Lee Haslam1:12:36194Various1592Tidy R - Rinsed - Paul Maddox1:14:04194Various1593Tidy Trax - Mixed By DJ Shinkawa1:00:43194Various1594Tidy Trax Volume 1 (International Edition) (Disc 1) - Lee Haslam1:13:40194Various1595Tidy Trax Volume 1 (International Edition) (Disc 2) - Lee Haslam1:12:51194Various1596Tidy Trax Volume 2 (International Edition) (Disc 1) - Paul Maddox1:18:59194Various1597Tidy Trax Volume 2 (International Edition) (Disc 2) - Paul Maddox1:17:54194Various1598Tidy Two - The Album1:19:46194Various1599Tidy Two's Greatest Hits (Disc 1) - Technikal1:19:43194Various1600Tidy Two's Greatest Hits (Disc 2) - Technikal1:19:07194Various1601Tidy Vs Frantic - Paul Maddox & Tom Harding1:11:29194Various1602Tidy Vs Nukleuz (Disc 1) - Tidy DJs Mix1:18:09194Various1603Tidy Vs Nukleuz (Disc 2) - Nick Sentience Mix1:11:44194Various1604Tidy XX - Flash Harry57:32194Various1605Tidy XX - Lee Haslam1:18:57194Various1606Tidy XX - Sam Townend1:18:55194Various1607Tidy XX - Tidy Boys1:18:52194Various1608Tidy XXIII - Mixx 1 (Tidy DJs)1:16:46194Various1609Tidy XXIII - Mixx 2 (Tidy Boys)1:18:14194Various1610Tidy XXIII - Mixx 3 (Tidy DJs)1:19:28194Various1611Tidy XXIII - Mixx 4 (Tidy Boys)1:19:10194Various1612Tidy XXIII - Mixx 5 (The Missing Tidy Boys Mix)1:14:12194Various1613TidyVision - Mixed By Amadeus Mozart1:00:43194Various1614Trashed Bootlegs & Blags - Amber D1:13:40194Various1615Trashed Bootlegs & Blags - Guyver Mix19:32194Various1616Trashed Bootlegs & Blags - Jon BW Mix19:23194Various1617Trashed Bootlegs & Blags - Paul Maddox Mix18:52194Various1618Trashed Bootlegs & Blags - Tidy Boys Mix15:18194Various1619Ultimate Tidy Downunder (Disc 1) - The Tidy Boys1:18:43194Various1620Ultimate Tidy Downunder (Disc 2) - Guyver1:19:46194VariousKeep It Tidy Mixes1621Keep It Tidy 1 - Ian M1:13:58194Various1622Keep It Tidy 2 - Lisa Lashes1:14:00194Various1623Keep It Tidy 2 - Tidy Boys1:06:12194Various1624Keep It Tidy 3 - Lee Haslam1:18:54194Various1625Keep It Tidy 3 - Spencer G1:14:12194Various1626Keep It Tidy 3 - Tidy Boys1:19:04194Various1627Keep It Tidy 4 - Amber D1:19:59194Various1628Keep It Tidy 4 - Lee Haslam1:19:40194Various1629Keep It Tidy 4 - Paul Maddox1:15:46194Various1630Keep It Tidy 4 - Tidy Boys1:16:32194Various1631Keep It Tidy 5 - Kym Ayres1:19:39194Various1632Keep It Tidy 5 - Paul Maddox1:19:34194Various1633Keep It Tidy 5 - Sam Townend1:17:27194Various1634Keep It Tidy 5 - Tidy DJs Mix1:17:36194Various1635Keep It Tidy 6 - Ben Stevens1:15:24194Various1636Keep It Tidy 6 - Leigh Green1:14:03194Various1637Keep It Tidy 6 - Sam Townend1:17:34194Various1638Keep It Tidy 6 - The Tidy Boys1:19:12194Various1639Keep It Tidy 7 - Anne Savage1:16:50194Various1640Keep It Tidy 7 - Jon Hemming1:16:00194Various1641Keep It Tidy 7 - Lee Haslam1:17:17194Various1642Keep It Tidy 7 - The Tidy Boys1:18:36194VariousTidy Annual Mixes1643Confessions Of The Tidy Boys Annual (Mix 1) - The Tidy Boys1:18:28194Various1644Confessions Of The Tidy Boys Annual (Mix 2) - The Tidy Boys1:17:25194Various1645The Tidy Boys Annual (Disc 1) - The Tidy Boys1:13:51194Various1646The Tidy Boys Annual (Disc 2) - The Tidy Boys1:13:42194Various1647The Tidy Boys Annual Summer Seaside Special (Disc 1)1:19:18194Various1648The Tidy Boys Annual Summer Seaside Special (Disc 2)1:17:53194Various1649The Tidy Girls Annual - Anne Savage1:13:45194Various1650The Tidy Girls Annual - Lisa Lashes1:16:25194Various1651The Tidy Lockdown Annual - Discam's Tidy 25 Mix1:00:03194Various1652The Tidy Lockdown Annual (Disc 1)1:15:40194Various1653The Tidy Lockdown Annual (Disc 2)1:17:47194Various1654Tidy F.C. Annual - First Half1:19:47194Various1655Tidy F.C. Annual - Second Half1:19:43194Various1656Tidy TV Annual (Channel A) - The Tidy Boys1:18:31194Various1657Tidy TV Annual (Channel B) - The Tidy Boys1:19:02194VariousResonate Mixes1658Reson8 (Disc 1) - Lee Haslam1:17:27194Various1659Reson8 (Disc 2) - Lee Haslam1:17:43194Various1660Resonate (Disc 1) - Lee Haslam1:15:15194Various1661Resonate (Disc 2) - Lee Haslam1:13:14194Various1662Resonate 2 (Disc 1) - The Freak1:16:45194Various1663Resonate 2 (Disc 2) - The Freak1:18:09194Various1664Resonate 3 (Disc 1) - Guyver1:16:52194Various1665Resonate 3 (Disc 2) - Guyver1:19:58194Various1666Resonate 4 (Disc 1) - Lee Haslam1:19:33194Various1667Resonate 4 (Disc 2) - Lee Haslam1:19:32194Various1668Resonate 5 (Disc 1) - Alphazone1:19:28194Various1669Resonate 5 (Disc 2) - Alphazone1:19:52194Various1670Resonate 6 (Disc 1) - Technikal1:19:54194Various1671Resonate 6 (Disc 2) - Technikal1:19:41194Various1672Resonate 7 (Disc 1) - Technikal1:19:10194Various1673Resonate 7 (Disc 2) - Technikal1:15:59194Various1674Resonate 9 (Disc 1) - Technikal1:19:39194Various1675Resonate 9 (Disc 2) - Costa Pantazis1:18:00194Various1676Resonate 10 (Disc 1) - Signum1:18:00194Various1677Resonate 10 (Disc 2) - Nicholson1:18:16194Various1678Resonate 11 (Disc 1) - Lee Haslam1:18:12194Various1679Resonate 11 (Disc 2) - Lee Haslam1:12:55194Various1680Resonate 11 (Disc 3) - Lee Haslam1:12:50194Various1681Resonate 12 (Disc 1) - Adam Dixon1:16:58194Various1682Resonate 12 (Disc 2) - Bryn Whiting1:18:37194VariousInsomnia Mixes1683Insomnia - Paul Glazby1:10:15194Various1684Insomnia - The Tidy Boys1:14:25194Various1685Insomnia 2 - Stimulant DJs1:08:14194Various1686Insomnia 2 - Superfast Oz1:10:51194Various1687Insomnia 3 - Paul Maddox1:18:57194Various1688Insomnia 3 - Tara Reynolds1:17:29194Various1689Insomnia 4 - Ian M1:19:44194Various1690Insomnia 4 - Jez & Charlie1:19:46194Various1691Insomnia 5 - Ben Stevens1:18:55194Various1692Insomnia 5 - Knuckleheadz1:13:15194Various1693Insomnia 6 - Paul King1:18:25194Various1694Insomnia 6 - UK Gold1:06:34194Various1695Insomnia 7 - Andy Farley1:17:23194Various1696Insomnia 7 - Discam1:18:14194Various1697The Best Of Insomnia - Mixed By Bulletproof1:16:17194Various1698The Best Of Insomnia - Mixed By Leigh Green1:14:41194VariousTidy Weekender / Magna Live Mixes1699Ideal Weekender Live Set - The Tidy Boys37:45194Various1700Live At The Tidy Weekender 2 - The Tidy Boys58:19194Various1701Magna - The Homecoming Live! - Agnelli & Nelson Vs Solarstone1:12:10194Various1702Magna - The Homecoming Live! - Lab 459:57194Various1703Magna - The Homecoming Live! - Rob Tissera59:01194Various1704Magna Revolution Live Disc 1 - Mark EG58:37194Various1705Magna Revolution Live Disc 2 - Amber D1:13:19194Various1706Magna Revolution Live Disc 3 - Ingo & Colin Barratt1:19:58194Various1707Tidy Boys Live & Dangerous1:18:12194Various1708Tidy Christmas Weekender Live - Amber D1:01:50194Various1709Tidy Christmas Weekender Live - Andy Farley59:10194Various1710Tidy Christmas Weekender Live - BK1:04:02194Various1711Tidy Christmas Weekender Live - Rob Tissera59:43194Various1712Tidy Christmas Weekender Live - The Tidy Boys58:27194Various1713Tidy Weekender 7 - Paul Maddox1:01:20194Various1714Tidy Weekender 7 - Rob Tissera1:01:04194Various1715Tidy Weekender 7 - Tidy Boys1:17:11194Various1716Tidy Weekender 8 - Guyver1:18:26194Various1717Tidy Weekender 8 - Ian M1:13:04194Various1718Tidy Weekender 8 - The Tidy Boys1:18:25194Various1719Tidy Weekender 9 - Alex Kidd58:59194Various1720Tidy Weekender 9 - Lisa Pin-Up1:00:05194Various1721Tidy Weekender 9 - Paul Glazby1:09:28194Various1722Tidy Weekender 10 - Andy Farley59:00194Various1723Tidy Weekender 10 - Anne Savage1:01:39194Various1724Tidy Weekender 10 - JP & Jukesy1:00:59194Various1725Tidy Weekender 11 - Amber D54:38194Various1726Tidy Weekender 11 - Mark Sherry1:00:07194Various1727Tidy Weekender 11 - Steve Thomas52:40194Various1728Tidy Weekender 12 - Dark By Design55:45194Various1729Tidy Weekender 12 - Justin Bourne B2b Nik Denton57:37194Various1730Tidy Weekender 12 - Tidy Boys1:17:15194Various1731Tidy Weekender 14 - Ben Stevens58:40194Various1732Tidy Weekender 14 - BK1:06:40194Various1733Tidy Weekender 14 - Mark EG59:54194Various1734Tidy Weekender 15 - Ilogik1:07:26194Various1735Tidy Weekender 15 - Kutski1:00:34194Various1736Tidy Weekender 15 - Lisa Pin-Up1:00:34194Various1737Tidy Weekender 15 - Paul Glazby (Previoulsy Unreleased, Mono)1:07:03194Various1738Tidy Weekender 15 Live Edit - The Tidy Boys26:32194Various1739Tidy Weekender Anthems (Disc 1)1:17:57194Various1740Tidy Weekender Anthems (Disc 2)1:16:13194Various1741Tidy Weekender Reunion - Live! - BK1:02:13194Various1742Tidy Weekender Reunion - Live! - Karim59:36194Various1743Tidy Weekender Reunion - Live! - Rodi Style58:14194Various1744Tidy Weekender Reunion Live Excerpt - The Tidy Boys13:56194VariousMusic For A Harder Generation Mixes1745Music For A Harder Generation - 10 Years Of Tidy (Disc 1)1:18:54194Various1746Music For A Harder Generation - 10 Years Of Tidy (Disc 2)1:19:27194Various1747Music For A Harder Generation - 10 Years Of Tidy (Disc 3)1:19:27194Various1748Music For A Harder Generation Vol 1 (Disc 1) - Anne Savage1:08:21194Various1749Music For A Harder Generation Vol 1 (Disc 2) - Anne Savage1:06:34194Various1750Music For A Harder Generation Vol 2 (Disc 1) - Yoji Biomehanika1:12:07194Various1751Music For A Harder Generation Vol 2 (Disc 2) - Yoji Biomehanika1:13:59194Various1752Music For A Harder Generation Vol 3 (Disc 1) - Andy Farley1:19:46194Various1753Music For A Harder Generation Vol 3 (Disc 2) - Andy Farley1:16:11194Various1754Music For A Harder Generation Vol 4 (Disc 1) - Mark EG1:11:27194Various1755Music For A Harder Generation Vol 4 (Disc 2) - Mark EG1:14:02194Various1756Music For A Harder Generation Vol 5 (The New Generation) - Andy Whitby1:10:24194Various1757Music For A Harder Generation Vol 5 (The New Generation) - Rodi Style1:13:28194VariousProducer Series Mixes1758Hard House Producer Collection 01 - Fifty Shades Of Leigh Green (Disc 1)1:15:09194Various1759Hard House Producer Collection 01 - Fifty Shades Of Leigh Green (Disc 2)1:17:42194Various1760Hard House Producer Collection 02 - The Adventures Of Paul Maddox (Disc 1)1:18:42194Various1761Hard House Producer Collection 02 - The Adventures Of Paul Maddox (Disc 2)1:17:53194Various1762Hard House Producer Collection 03 - The Cream Of Ben Stevens (Disc 1)1:15:20194Various1763Hard House Producer Collection 03 - The Cream Of Ben Stevens (Disc 2)1:16:52194Various1764Hard House Producer Collection 04 - Technikal Wizard Of Oz (Disc 1)1:17:52194Various1765Hard House Producer Collection 04 - Technikal Wizard Of Oz (Disc 2)1:17:26194Various1766Hard House Producer Collection 05 - Surprising Tales Of Sam Townend (Disc 1)1:17:20194Various1767Hard House Producer Collection 05 - Surprising Tales Of Sam Townend (Disc 2)1:17:49194Various1768Hard House Producer Collection 06 - The Woolly World Of Digital Mafia (Disc 1)1:19:49194Various1769Hard House Producer Collection 06 - The Woolly World Of Digital Mafia (Disc 2)1:10:26194Various1770Hard House Producer Collection 07 - Memories Of Lee Haslam (Disc 1)1:17:49194Various1771Hard House Producer Collection 07 - Memories Of Lee Haslam (Disc 2)1:18:09194Various1772Hard House Producer Collection 08 - Whatever Happened To Colin Barratt (Disc 1)1:18:06194Various1773Hard House Producer Collection 08 - Whatever Happened To Colin Barratt (Disc 2)1:17:44194Various1774Hard House Producer Collection 09 - Cor Blimey... It's Flash Harry! (Disc 1)1:12:24194Various1775Hard House Producer Collection 09 - Cor Blimey... It's Flash Harry! (Disc 2)1:17:45194Various1776Producer Series 01 Dark By Design (Disc 1)1:18:52194Various1777Producer Series 01 Dark By Design (Disc 2)1:18:06194Various1778Producer Series 02 Guyver (Disc 1)1:17:57194Various1779Producer Series 02 Guyver (Disc 2)1:19:12194Various1780Producer Series 03 Paul Maddox (Disc 1)57:45194Various1781Producer Series 03 Paul Maddox (Disc 2)1:16:54194Various1782Producer Series 04 Defective Audio (Disc 1)1:10:51194Various1783Producer Series 04 Defective Audio (Disc 2)1:18:50194Various1784Producer Series 05 Ross Homson (Disc 1)1:17:59194Various1785Producer Series 05 Ross Homson (Disc 2)1:17:56194VariousTidy Music Library Mixes1786Tidy Music Library Issue 01 - Tidy Boys57:59194Various1787Tidy Music Library Issue 02 - Rob Tissera1:00:31194Various1788Tidy Music Library Issue 03 - Paul Maddox57:01194Various1789Tidy Music Library Issue 04 - Anne Savage53:43194Various1790Tidy Music Library Issue 05 - Kym Ayres57:37194Various1791Tidy Music Library Issue 06 - Guyver1:02:38194Various1792Tidy Music Library Issue 07 - Tidy DJs47:54194Various1793Tidy Music Library Issue 08 - Rodi Style48:27194Various1794Tidy Music Library Issue 09 - BK52:55194Various1795Tidy Music Library Issue 10 - Jon BW54:22194Various1796Tidy Music Library Issue 11 - Guyver1:00:08194Various1797Tidy Music Library Issue 12 - Andy Farley56:31194Various1798Tidy Music Library Issue 13 - Tidyvision Presents ILogik48:38194Various1799Tidy Music Library Issue 14 - Paul Glazby52:33194Various1800Tidy Music Library Issue 15 - JP & Jukesy55:30194Various1801Tidy Music Library Issue 16 - BK49:32194Various1802Tidy Music Library Issue 17 - Technikal1:09:54194Various1803Tidy Music Library Issue 18 - Base Graffiti53:35194Various1804Tidy Music Library Issue 19 - Ben Stevens & Rodi Style Pres Chaos Theory1:19:10194Various1805Tidy Music Library Issue 20 - Scott Attrill1:11:44194Various1806Tidy Music Library Issue 21 - Amber D54:13194Various1807Tidy Music Library Issue 22 - Stimulant DJs59:25194Various1808Tidy Music Library Issue 23 - Ian M1:00:24194Various1809Tidy Music Library Issue 24 - Ben Stevens53:43194Various1810Tidy Music Library Issue 25 - Sam & Deano52:16194Various1811Tidy Music Library Issue 2014 - Sam Townend1:15:32194VariousDigital Mixes1812100% Tidy - Volume 11:49:26194Various1813100% Tidy - Volume 21:42:14194Various1814100% Tidy - Volume 31:34:55194Various1815100% Tidy - Volume 41:46:51194Various1816Global Hard Trance Vol 1 - Hyperlogic1:28:21194Various1817Global Hard Trance Vol 2 - Leigh Green1:22:07194Various1818Hard House Underground, Vol 1 - Tidy DJs1:26:21194Various1819The Weekend Has Landed, Vol 1 - Jon Hemming1:06:29194Various1820The Weekend Has Landed, Vol 2 - NG Rezonance59:28194Various1821The Weekend Has Landed, Vol 3 - Lil Miss Jules (12 Inch Thumpers)1:02:47194Various1822What Would You Like To Hear Again, Vol 1 - The Tidy Boys1:40:12194Various1823What Would You Like To Hear Again, Vol 2 - Ben Stevens1:39:06194Various1824What Would You Like To Hear Again, Vol 3 - Sam Townend1:34:29194Various1825What Would You Like To Hear Again, Vol 4 - Adam M1:19:46194Various1826What Would You Like To Hear Again, Vol 5 - Jon Bishop1:18:17194Various03 Tidy Promo Mixes / Live Sets1827BBC Radio 1 Essential Mix 17 July 2004 - Judge Jules59:30194Various1828BBC Radio 1 Essential Mix 17 July 2004 Lee Haslam & The TIdy Boys1:06:03194Various1829Big Night Out 2006 Promo Mix - The Tidy Boys1:07:31194Various1830Brighton VIP Promo Mix - The Tidy Boys1:08:44194Various1831Bristol VIP Mix - The Tidy Boys1:13:52194Various1832Galaxy @ Planet Tidy Hour One - Tidy Boys58:34194Various1833Galaxy @ Planet Tidy Hour Two - BK55:48194Various1834Galaxy Mix August 2002 - Lee Haslam1:01:12194Various1835Half Hour Promo Mix - Lisa Pin-Up31:09194Various1836Happy 7th Birthday Card Mix39:33194Various1837Hard Dance Mix October 2005 (Tidy Management) - Paul Maddox1:02:38194Various1838Hard House Forever Portsmotuh Promo Mix - The Ideal Allstars1:06:10194Various1839Hard Tech Mix 2006 - The Tidy Boys1:13:14194Various1840Hereford VIP Mix - The Tidy Boys1:12:02194Various1841LDC Radio December 09 2020 - Tidy Boys Take Over1:06:10194Various1842Live At Tidy's 10th B-Day Magna - The Tidy Boys1:12:28194Various1843Magna NYE Radio Mix - JX55:49194Various1844Newquay 2014 Tidy Flashback Mix - Flash Harry59:06194Various1845Newquay VIP Promo Mix - The Tidy Boys1:09:46194Various1846Opera House Reunion VIP Mix - The Tidy Boys1:19:16194Various1847Paul Glazby - Late Set April 20011:13:59194Various1848Promo Mix - Jez & Charlie1:01:54194Various1849Promo Mix April 2002 - Lee Haslam1:09:12194Various1850Promo Mix April 2002 - The Freak1:14:54194Various1851Promo Mix January 2001 - Lee Haslam1:09:56194Various1852Promo Mix November 2000 - Lee Haslam1:04:10194Various1853Queen Vic Reunion Promo Mix - Paul Maddox59:21194Various1854Slinky VIP Mix - Lee Haslam1:19:46194Various1855The First Two Years - Paul Maddox1:03:20194Various1856The Ideal 1st Birthday Mix - Sam Townend1:00:54194Various1857Tidy Addict Promo Mix - Lee Haslam1:19:46194Various1858Tidy Boys Big Night Out - Slinky, Bournemouth1:09:27194Various1859Tidy Christmas Party 20061:19:35194Various1860Tidy FC - The Forthcoming Mix59:34194Various1861Tidy FC CD 201655:27194Various1862Tidy Friday - Tidy Boys Hard Tech Mix 20061:13:13194Various1863Tidy Ibiza Mix1:19:42194Various1864Tidy London Promo Mix - The Tidy Boys35:45194Various1865Tidy Newquay 2014 Promo Mix - Flash Harry59:07194Various1866Tidy Portsmouth Promo Mix - Flash Harry1:15:52194Various1867Tidy Trax Vol. 21:13:30194Various1868Tidy's 10th B-Day (Magna)1:12:27194VariousTidy Boys Galaxy Radio Shows1869Tidy Boys Galaxy Show 1 With Tidy Boys57:21194Various1870Tidy Boys Galaxy Show 2 With Yoji Biomehanika56:00194Various1871Tidy Boys Galaxy Show 3 With Lee Haslam57:03194Various1872Tidy Boys Galaxy Show 4 With Anne Savage1:02:02194Various1873Tidy Boys Galaxy Show With Colin Barratt57:16194Various1874Tidy Boys Galaxy Show With Jez & Charlie59:09194Various1875Tidy Boys Galaxy Show With Kernzy & Klemenza58:37194Various1876Tidy Boys Galaxy Show With The Tidy Boys59:14194Various1877Tidy Boys Galaxy Show With Tidy Boys55:16194Various1878Tidy Boys Galaxy Show With Wid & Ben59:42194VariousTidy Weekender Promo Mixes1879Entertaining The Troops Tidy Weekender 5 Mix - Tara Reynolds55:08194Various1880Ideal Tidy Weekender Mix - Rob Tissera1:16:41194Various1881Pirates Of Prestatyn Weekender Promo Mix - Stimulator1:17:48194Various1882Something For The Weekend - Max Mozart1:05:25194Various1883Something For The Weekend TW3 - Mixed Tidy Boys49:53194Various1884Something For The Weekend TW3 - The Tidy Boys49:54194Various1885The Weekender Strikes Back Promo Mix - Lisa Pin-Up1:07:49194Various1886Tidy 20 Weekender (Friday Set) - The Tidy Boys58:53194Various1887Tidy Summer Camp 2005 CD - Ben Kaye1:14:02194Various1888Tidy Summer Camp Sampler CD - Amber D1:01:45194Various1889Tidy Weekender 7 Promo Mix - JP & Jukesy1:11:57194Various1890Tidy Weekender 11 Promo Mix - Sam & Deano57:12194Various1891Tidy Weekender Reunion 2011 Mix - Rob Tissera1:03:08194Various1892Wild Wild West Weekender 8 - Tara Reynolds1:18:28194VariousTW25 DJ Competition Mixes1893TW25 DJ Competition Mix - Adam Bellew1:07:50194Various1894TW25 DJ Competition Mix - Adam Dixon1:07:23194Various1895TW25 DJ Competition Mix - Ben Vennard1:07:02194Various1896TW25 DJ Competition Mix - Chris Purcell1:04:20194Various1897TW25 DJ Competition Mix - Craig Lee1:00:19194Various1898TW25 DJ Competition Mix - Craig McLellend58:00194Various1899TW25 DJ Competition Mix - David Timothy1:02:01194Various1900TW25 DJ Competition Mix - Dawn Lee59:48194Various1901TW25 DJ Competition Mix - Discam1:03:09194Various1902TW25 DJ Competition Mix - DJ Lolly1:03:30194Various1903TW25 DJ Competition Mix - Eggman1:03:44194Various1904TW25 DJ Competition Mix - Gaz Fullard1:19:54194Various1905TW25 DJ Competition Mix - Gazmachine1:07:54194Various1906TW25 DJ Competition Mix - Gem Stone1:02:09194Various1907TW25 DJ Competition Mix - GSR1:02:16194Various1908TW25 DJ Competition Mix - Hayley Colleen1:01:54194Various1909TW25 DJ Competition Mix - James Valentine1:05:55194Various1910TW25 DJ Competition Mix - Joe Longbottom1:13:43194Various1911TW25 DJ Competition Mix - John Cooper1:11:12194Various1912TW25 DJ Competition Mix - Justin Daniels & Jamie R1:00:02194Various1913TW25 DJ Competition Mix - K8-e1:07:50194Various1914TW25 DJ Competition Mix - Keith Allen1:08:31194Various1915TW25 DJ Competition Mix - Lewis Adam1:03:15194Various1916TW25 DJ Competition Mix - Lil Miss Jules57:58194Various1917TW25 DJ Competition Mix - Mickey G & Mickey Bo1:07:50194Various1918TW25 DJ Competition Mix - Ryan Walker1:03:32194VariousWeekender Lost Tapes\Magna 71919Amber D At Magna 71:18:36194VariousWeekender Lost Tapes\Magna NYE 20031920Guyver At Magna NYE 20031:50:45194Various1921Lee Haslam B2b Amber D At Magna NYE 20031:16:49194Various1922Lisa Lashes At Magna NYE 200353:32194Various1923Nu-NRG + Tidy Boys At Magna NYE 20031:48:49194VariousWeekender Lost Tapes\TW41924TW4 Friday Room 1 01 Steve Hill1:19:48194Various1925TW4 Friday Room 2 02 Rachel Auburn1:03:19194Various1926TW4 Friday Room 2 03 Lisa Pin-Up1:02:13194Various1927TW4 Friday Room 2 04 Stimulant DJs1:03:22194Various1928TW4 Saturday Room 1 02 Shan45:02194Various1929TW4 Saturday Room 2 01 Paul Glazby1:07:23194Various1930TW4 Saturday Room 2 05 Ian M1:04:29194Various1931TW4 Sunday Room 1 01 Guffy52:49194Various1932TW4 Sunday Room 1 02 Jon Rundell1:01:38194Various1933TW4 Sunday Room 1 04 Tara Reynolds58:06194Various1934TW4 Sunday Room 1 05 BK57:35194Various1935TW4 Sunday Room 2 01 Jez & Charlie1:01:53194Various1936TW4 Sunday Room 2 02 Ed Real1:39:59194Various1937TW4 Sunday Room 2 03 Rob Tissera1:15:27194Various1938TW4 Tidy Boys Vs Tidy Girls1:19:55194VariousWeekender Lost Tapes\TW51939TW5 - Adam Lab41:10:49194Various1940TW5 - Lisa Pin-Up59:12194Various1941TW5 - Mark EG1:01:14194Various1942TW5 - Oliver Klitzing53:44194VariousWeekender Lost Tapes\TW61943TW6 - Friday Fright Night - Andy Whitby1:04:32194Various1944TW6 - Friday Fright Night - Jon Doe1:04:19194Various1945TW6 - Friday Fright Night - Tidy Boys1:29:54194Various1946TW6 - Friday Nghtmare On Glazby Street - Ben Stevens1:00:53194Various1947TW6 - Sunday Twilight Zone - Tara Reynolds B2B Amber D1:11:56194Various1948TW6 - The Saturday Scream - Rob Tissera1:00:23194Various1949TW6 - The Saturday Scream - Steve Thomas1:07:13194Various04 Tidy Sample Packs\Tidy - Bits & Pieces Vol 11950Tidy1 - Bass Loop 01 - PT1 - 140 BPM - Fm0:14118760No Artist1951Tidy1 - Bass Loop 01 - PT2 - 140 BPM - Fm0:14118760No Artist1952Tidy1 - Bass Loop 01 - PT3 - 140 BPM - Fm0:14118760No Artist1953Tidy1 - Bass Loop 01 - PT4 - 140 BPM - Fm0:14118760No Artist1954Tidy1 - Bass Loop 02 - PT1 - 140 BPM - Dm0:14118760No Artist1955Tidy1 - Bass Loop 02 - PT2 - 140 BPM - Dm0:14118760No Artist1956Tidy1 - Bass Loop 02 - PT3 - 140 BPM - Dm0:14118760No Artist1957Tidy1 - Bass Loop 02 - PT4 - 140 BPM - Dm0:14118760No Artist1958Tidy1 - Bass Loop 03 - PT1 - 140 BPM - Fm0:14118760No Artist1959Tidy1 - Bass Loop 03 - PT2 - 140 BPM - Fm0:14118760No Artist1960Tidy1 - Bass Loop 03 - PT3 - 140 BPM - Fm0:14118760No Artist1961Tidy1 - Bass Loop 03 - PT4 - 140 BPM - Fm0:14118760No Artist1962Tidy1 - Bass Loop 04 - PT1 - 140 BPM - Cm0:14118760No Artist1963Tidy1 - Bass Loop 04 - PT2 - 140 BPM - Cm0:14118760No Artist1964Tidy1 - Bass Loop 04 - PT3 - 140 BPM - Cm0:14118760No Artist1965Tidy1 - Bass Loop 04 - PT4 - 140 BPM - Cm0:14118760No Artist1966Tidy1 - Bass Loop 05 - PT1 - 140 BPM - Dm0:14118760No Artist1967Tidy1 - Bass Loop 05 - PT2 - 140 BPM - Dm0:14118760No Artist1968Tidy1 - Bass Loop 05 - PT3 - 140 BPM - Dm0:14118760No Artist1969Tidy1 - Bass Loop 05 - PT4 - 140 BPM - Dm0:14118760No Artist1970Tidy1 - Bass Loop 06 - PT1 - 140 BPM - A0:14118760No Artist1971Tidy1 - Bass Loop 06 - PT2 - 140 BPM - A0:14118760No Artist1972Tidy1 - Bass Loop 06 - PT3 - 140 BPM - A0:14118760No Artist1973Tidy1 - Bass Loop 06 - PT4 - 140 BPM - A0:14118760No Artist1974Tidy1 - Bass Loop 07 - PT1 - 140 BPM - A#m0:14118760No Artist1975Tidy1 - Bass Loop 07 - PT2 - 140 BPM - A#m0:14118760No Artist1976Tidy1 - Bass Loop 07 - PT3 - 140 BPM - A#m0:14118760No Artist1977Tidy1 - Bass Loop 07 - PT4 - 140 BPM - A#m0:14118760No Artist1978Tidy1 - Bass Loop 08 - PT1 - 140 BPM - Gm0:14118760No Artist1979Tidy1 - Bass Loop 08 - PT2 - 140 BPM - Gm0:14118760No Artist1980Tidy1 - Bass Loop 08 - PT3 - 140 BPM - Gm0:14118760No Artist1981Tidy1 - Bass Loop 08 - PT4 - 140 BPM - Gm0:14118760No Artist1982Tidy1 - Bass Loop 09 - PT1 - 140 BPM - Am0:14118760No Artist1983Tidy1 - Bass Loop 09 - PT2 - 140 BPM - Am0:14118760No Artist1984Tidy1 - Bass Loop 09 - PT3 - 140 BPM - Am0:14118760No Artist1985Tidy1 - Bass Loop 09 - PT4 - 140 BPM - Am0:14118760No Artist1986Tidy1 - Bass Loop 10 - PT1 - 140 BPM - G#m0:14118760No Artist1987Tidy1 - Bass Loop 10 - PT2 - 140 BPM - G#m0:14118760No Artist1988Tidy1 - Bass Loop 10 - PT3 - 140 BPM - G#m0:14118760No Artist1989Tidy1 - Bass Loop 10 - PT4 - 140 BPM - G#m0:14118760No Artist1990Tidy1 - Bass Loop 10 - PT5 - 140 BPM - G#m0:14118760No Artist1991Tidy1 - Bass Loop 11 - PT1 - 140 BPM - C#m0:14118760No Artist1992Tidy1 - Bass Loop 11 - PT2 - 140 BPM - C#m0:14118760No Artist1993Tidy1 - Bass Loop 11 - PT3 - 140 BPM - C#m0:14118760No Artist1994Tidy1 - Bass Loop 11 - PT4 - 140 BPM - C#m0:14118760No Artist1995Tidy1 - Bass Loop 12 - PT1 - 140 BPM - Am0:14118760No Artist1996Tidy1 - Bass Loop 12 - PT2 - 140 BPM - Am0:14118760No Artist1997Tidy1 - Bass Loop 12 - PT3 - 140 BPM - Am0:14118760No Artist1998Tidy1 - Bass Loop 12 - PT4 - 140 BPM - Am0:14118760No Artist1999Tidy1 - Bass Loop 13 - PT1 - 140 BPM - G#m0:14118760No Artist2000Tidy1 - Bass Loop 13 - PT2 - 140 BPM - G#m0:14118760No Artist2001Tidy1 - Bass Loop 13 - PT3 - 140 BPM - G#m0:14118760No Artist2002Tidy1 - Bass Loop 13 - PT4 - 140 BPM - G#m0:14118760No Artist2003Tidy1 - Bass Loop 14 - PT1 - 140 BPM - Gm0:14118760No Artist2004Tidy1 - Bass Loop 14 - PT2 - 140 BPM - Gm0:14118760No Artist2005Tidy1 - Bass Loop 14 - PT3 - 140 BPM - Gm0:14118760No Artist2006Tidy1 - Bass Loop 14 - PT4 - 140 BPM - Gm0:14118760No Artist2007Tidy1 - Bass Loop 15 - PT1 - 140 BPM - Am0:14118760No Artist2008Tidy1 - Bass Loop 15 - PT2 - 140 BPM - Am0:14118760No Artist2009Tidy1 - Bass Loop 15 - PT3 - 140 BPM - Am0:14118760No Artist2010Tidy1 - Bass Loop 15 - PT4 - 140 BPM - Am0:14118760No Artist2011Tidy1 - SC Bass Loop 01 - PT1 - 140 BPM - Fm0:14118760No Artist2012Tidy1 - SC Bass Loop 01 - PT2 - 140 BPM - Fm0:14118760No Artist2013Tidy1 - SC Bass Loop 01 - PT3 - 140 BPM - Fm0:14118760No Artist2014Tidy1 - SC Bass Loop 01 - PT4 - 140 BPM - Fm0:14118760No Artist2015Tidy1 - SC Bass Loop 02 - PT1 - 140 BPM - Dm0:14118760No Artist2016Tidy1 - SC Bass Loop 02 - PT2 - 140 BPM - Dm0:14118760No Artist2017Tidy1 - SC Bass Loop 02 - PT3 - 140 BPM - Dm0:14118760No Artist2018Tidy1 - SC Bass Loop 02 - PT4 - 140 BPM - Dm0:14118760No Artist2019Tidy1 - SC Bass Loop 03 - PT1 - 140 BPM - Fm0:14118760No Artist2020Tidy1 - SC Bass Loop 03 - PT2 - 140 BPM - Fm0:14118760No Artist2021Tidy1 - SC Bass Loop 03 - PT3 - 140 BPM - Fm0:14118760No Artist2022Tidy1 - SC Bass Loop 03 - PT4 - 140 BPM - Fm0:14118760No Artist2023Tidy1 - SC Bass Loop 04 - PT1 - 140 BPM - Cm0:14118760No Artist2024Tidy1 - SC Bass Loop 04 - PT2 - 140 BPM - Cm0:14118760No Artist2025Tidy1 - SC Bass Loop 04 - PT3 - 140 BPM - Cm0:14118760No Artist2026Tidy1 - SC Bass Loop 04 - PT4 - 140 BPM - Cm0:14118760No Artist2027Tidy1 - SC Bass Loop 05 - PT1 - 140 BPM - Dm0:14118760No Artist2028Tidy1 - SC Bass Loop 05 - PT2 - 140 BPM - Dm0:14118760No Artist2029Tidy1 - SC Bass Loop 05 - PT3 - 140 BPM - Dm0:14118760No Artist2030Tidy1 - SC Bass Loop 05 - PT4 - 140 BPM - Dm0:14118760No Artist2031Tidy1 - SC Bass Loop 06 - PT1 - 140 BPM - A0:14118760No Artist2032Tidy1 - SC Bass Loop 06 - PT2 - 140 BPM - A0:14118760No Artist2033Tidy1 - SC Bass Loop 06 - PT3 - 140 BPM - A0:14118760No Artist2034Tidy1 - SC Bass Loop 06 - PT4 - 140 BPM - A0:14118760No Artist2035Tidy1 - SC Bass Loop 07 - PT1 - 140 BPM - A#m0:14118760No Artist2036Tidy1 - SC Bass Loop 07 - PT2 - 140 BPM - A#m0:14118760No Artist2037Tidy1 - SC Bass Loop 07 - PT3 - 140 BPM - A#m0:14118760No Artist2038Tidy1 - SC Bass Loop 07 - PT4 - 140 BPM - A#m0:14118760No Artist2039Tidy1 - SC Bass Loop 08 - PT1 - 140 BPM - Gm0:14118760No Artist2040Tidy1 - SC Bass Loop 08 - PT2 - 140 BPM - Gm0:14118760No Artist2041Tidy1 - SC Bass Loop 08 - PT3 - 140 BPM - Gm0:14118760No Artist2042Tidy1 - SC Bass Loop 08 - PT4 - 140 BPM - Gm0:14118760No Artist2043Tidy1 - SC Bass Loop 09 - PT1 - 140 BPM - Am0:14118760No Artist2044Tidy1 - SC Bass Loop 09 - PT2 - 140 BPM - Am0:14118760No Artist2045Tidy1 - SC Bass Loop 09 - PT3 - 140 BPM - Am0:14118760No Artist2046Tidy1 - SC Bass Loop 09 - PT4 - 140 BPM - Am0:14118760No Artist2047Tidy1 - SC Bass Loop 10 - PT1 - 140 BPM - G#m0:14118760No Artist2048Tidy1 - SC Bass Loop 10 - PT2 - 140 BPM - G#m0:14118760No Artist2049Tidy1 - SC Bass Loop 10 - PT3 - 140 BPM - G#m0:14118760No Artist2050Tidy1 - SC Bass Loop 10 - PT4 - 140 BPM - G#m0:14118760No Artist2051Tidy1 - SC Bass Loop 10 - PT5 - 140 BPM - G#m0:14118760No Artist2052Tidy1 - SC Bass Loop 11 - PT1 - 140 BPM - C#m0:14118760No Artist2053Tidy1 - SC Bass Loop 11 - PT2 - 140 BPM - C#m0:14118760No Artist2054Tidy1 - SC Bass Loop 11 - PT3 - 140 BPM - C#m0:14118760No Artist2055Tidy1 - SC Bass Loop 11 - PT4 - 140 BPM - C#m0:14118760No Artist2056Tidy1 - SC Bass Loop 12 - PT1 - 140 BPM - Am0:14118760No Artist2057Tidy1 - SC Bass Loop 12 - PT2 - 140 BPM - Am0:14118760No Artist2058Tidy1 - SC Bass Loop 12 - PT3 - 140 BPM - Am0:14118760No Artist2059Tidy1 - SC Bass Loop 12 - PT4 - 140 BPM - Am0:14118760No Artist2060Tidy1 - SC Bass Loop 13 - PT1 - 140 BPM - G#m0:14118760No Artist2061Tidy1 - SC Bass Loop 13 - PT2 - 140 BPM - G#m0:14118760No Artist2062Tidy1 - SC Bass Loop 13 - PT3 - 140 BPM - G#m0:14118760No Artist2063Tidy1 - SC Bass Loop 13 - PT4 - 140 BPM - G#m0:14118760No Artist2064Tidy1 - SC Bass Loop 14 - PT1 - 140 BPM - Gm0:14118760No Artist2065Tidy1 - SC Bass Loop 14 - PT2 - 140 BPM - Gm0:14118760No Artist2066Tidy1 - SC Bass Loop 14 - PT3 - 140 BPM - Gm0:14118760No Artist2067Tidy1 - SC Bass Loop 14 - PT4 - 140 BPM - Gm0:14118760No Artist2068Tidy1 - SC Bass Loop 15 - PT1 - 140 BPM - Am 20:14118760No Artist2069Tidy1 - SC Bass Loop 15 - PT2 - 140 BPM - Am0:14118760No Artist2070Tidy1 - SC Bass Loop 15 - PT3 - 140 BPM - Am0:14118760No Artist2071Tidy1 - SC Bass Loop 15 - PT4 - 140 BPM - Am0:14118760No Artist2072Tidy1 - One Shot Bass - Loop 01 F0:14118760No Artist2073Tidy1 - One Shot Bass - Loop 02 D0:14118760No Artist2074Tidy1 - One Shot Bass - Loop 03 F0:14118760No Artist2075Tidy1 - One Shot Bass - Loop 04 C0:14118760No Artist2076Tidy1 - One Shot Bass - Loop 05 D0:14118760No Artist2077Tidy1 - One Shot Bass - Loop 06 A0:14118760No Artist2078Tidy1 - One Shot Bass - Loop 07 A#0:14118760No Artist2079Tidy1 - One Shot Bass - Loop 08 G0:14118760No Artist2080Tidy1 - One Shot Bass - Loop 09 A0:14118760No Artist2081Tidy1 - One Shot Bass - Loop 10 G#0:14118760No Artist2082Tidy1 - One Shot Bass - Loop 11 C#0:14118760No Artist2083Tidy1 - One Shot Bass - Loop 12 A0:14118760No Artist2084Tidy1 - One Shot Bass - Loop 13 G#0:14118760No Artist2085Tidy1 - One Shot Bass - Loop 14 G0:14118760No Artist2086Tidy1 - One Shot Bass - Loop 15 A0:14118760No Artist2087Tidy1 - Drum Fill 01 - 140 BPM0:03118760No Artist2088Tidy1 - Drum Fill 02 - 140 BPM0:03118760No Artist2089Tidy1 - Drum Fill 03 - 140 BPM0:03118760No Artist2090Tidy1 - Drum Fill 04 - 140 BPM0:03118760No Artist2091Tidy1 - Drum Fill 05 - 140 BPM0:03118760No Artist2092Tidy1 - Drum Fill 06 - 140 BPM0:03118760No Artist2093Tidy1 - Drum Fill 07 - 140 BPM0:03118760No Artist2094Tidy1 - Drum Fill 08 - 140 BPM0:03118760No Artist2095Tidy1 - Drum Fill 09 - 140 BPM0:03118760No Artist2096Tidy1 - Drum Fill 10 - 140 BPM0:03118760No Artist2097Tidy1 - SC - Drum Fill 01 - 140 BPM0:03118760No Artist2098Tidy1 - SC - Drum Fill 02 - 140 BPM0:03118760No Artist2099Tidy1 - SC - Drum Fill 03 - 140 BPM0:03118760No Artist2100Tidy1 - SC - Drum Fill 04 - 140 BPM0:03118760No Artist2101Tidy1 - SC - Drum Fill 05 - 140 BPM0:03118760No Artist2102Tidy1 - SC - Drum Fill 06 - 140 BPM0:03118760No Artist2103Tidy1 - SC - Drum Fill 07 - 140 BPM0:03118760No Artist2104Tidy1 - SC - Drum Fill 08 - 140 BPM0:03118760No Artist2105Tidy1 - SC - Drum Fill 09 - 140 BPM0:03118760No Artist2106Tidy1 - SC - Drum Fill 10 - 140 BPM0:03118760No Artist2107Tidy1 - Drum Loop 01 - 140 BPM0:07118760No Artist2108Tidy1 - Drum Loop 02 - 140 BPM0:07118760No Artist2109Tidy1 - Drum Loop 03 - 140 BPM0:07118760No Artist2110Tidy1 - Drum Loop 04 - 140 BPM0:07118760No Artist2111Tidy1 - Drum Loop 05 - 140 BPM0:07118760No Artist2112Tidy1 - Drum Loop 06 - 140 BPM0:07118760No Artist2113Tidy1 - Drum Loop 07 - 140 BPM0:07118760No Artist2114Tidy1 - Drum Loop 08 - 140 BPM0:07118760No Artist2115Tidy1 - Drum Loop 09 - 140 BPM0:07118760No Artist2116Tidy1 - Drum Loop 10 - 140 BPM0:07118760No Artist2117Tidy1 - Drum Loop 11 - 140 BPM0:07118760No Artist2118Tidy1 - Drum Loop 12 - 140 BPM0:07118760No Artist2119Tidy1 - Drum Loop 13 - 140 BPM0:07118760No Artist2120Tidy1 - Drum Loop 14 - 140 BPM0:07118760No Artist2121Tidy1 - Drum Loop 15 - 140 BPM0:07118760No Artist2122Tidy1 - Drum Loop 16 - 140 BPM0:07118760No Artist2123Tidy1 - Drum Loop 17 - 140 BPM0:07118760No Artist2124Tidy1 - Drum Loop 18 - 140 BPM0:07118760No Artist2125Tidy1 - Drum Loop 19 - 140 BPM0:07118760No Artist2126Tidy1 - Drum Loop 20 - 140 BPM0:07118760No Artist2127Tidy1 - Drum Loop 21 - 140 BPM0:07118760No Artist2128Tidy1 - Drum Loop 22 - 140 BPM0:07118760No Artist2129Tidy1 - Drum Loop 23 - 140 BPM0:07118760No Artist2130Tidy1 - Drum Loop 24 - 140 BPM0:07118760No Artist2131Tidy1 - Drum Loop 25 - 140 BPM0:07118760No Artist2132Tidy1 - Drum Loop 26 - 140 BPM0:07118760No Artist2133Tidy1 - Drum Loop 27 - 140 BPM0:07118760No Artist2134Tidy1 - Drum Loop 28 - 140 BPM0:07118760No Artist2135Tidy1 - Drum Loop 29 - 140 BPM0:07118760No Artist2136Tidy1 - Drum Loop 30 - 140 BPM0:07118760No Artist2137Tidy1 - Drum Loop 31 - 140 BPM0:07118760No Artist2138Tidy1 - Drum Loop 32 - 140 BPM0:07118760No Artist2139Tidy1 - Drum Loop 33 - 140 BPM0:07118760No Artist2140Tidy1 - Drum Loop 34 - 140 BPM0:07118760No Artist2141Tidy1 - Drum Loop 35 - 140 BPM0:07118760No Artist2142Tidy1 - Drum Loop 36 - 140 BPM0:07118760No Artist2143Tidy1 - Drum Loop 37 - 140 BPM0:07118760No Artist2144Tidy1 - Drum Loop 38 - 140 BPM0:07118760No Artist2145Tidy1 - Drum Loop 39 - 140 BPM0:07118760No Artist2146Tidy1 - SC - Drum Loop 01 - 140 BPM0:07118760No Artist2147Tidy1 - SC - Drum Loop 02 - 140 BPM0:07118760No Artist2148Tidy1 - SC - Drum Loop 03 - 140 BPM0:07118760No Artist2149Tidy1 - SC - Drum Loop 04 - 140 BPM0:07118760No Artist2150Tidy1 - SC - Drum Loop 05 - 140 BPM0:07118760No Artist2151Tidy1 - SC - Drum Loop 06 - 140 BPM0:07118760No Artist2152Tidy1 - SC - Drum Loop 07 - 140 BPM0:07118760No Artist2153Tidy1 - SC - Drum Loop 08 - 140 BPM0:07118760No Artist2154Tidy1 - SC - Drum Loop 09 - 140 BPM0:07118760No Artist2155Tidy1 - SC - Drum Loop 10 - 140 BPM0:07118760No Artist2156Tidy1 - SC - Drum Loop 11 - 140 BPM0:07118760No Artist2157Tidy1 - SC - Drum Loop 12 - 140 BPM0:07118760No Artist2158Tidy1 - SC - Drum Loop 13 - 140 BPM0:07118760No Artist2159Tidy1 - SC - Drum Loop 14 - 140 BPM0:07118760No Artist2160Tidy1 - SC - Drum Loop 15 - 140 BPM0:07118760No Artist2161Tidy1 - SC - Drum Loop 16 - 140 BPM0:07118760No Artist2162Tidy1 - SC - Drum Loop 17 - 140 BPM0:07118760No Artist2163Tidy1 - SC - Drum Loop 18 - 140 BPM0:07118760No Artist2164Tidy1 - SC - Drum Loop 19 - 140 BPM0:07118760No Artist2165Tidy1 - SC - Drum Loop 20 - 140 BPM0:07118760No Artist2166Tidy1 - SC - Drum Loop 21 - 140 BPM0:07118760No Artist2167Tidy1 - SC - Drum Loop 22 - 140 BPM0:07118760No Artist2168Tidy1 - SC - Drum Loop 23 - 140 BPM0:07118760No Artist2169Tidy1 - SC - Drum Loop 24 - 140 BPM0:07118760No Artist2170Tidy1 - SC - Drum Loop 25 - 140 BPM0:07118760No Artist2171Tidy1 - SC - Drum Loop 26 - 140 BPM0:07118760No Artist2172Tidy1 - SC - Drum Loop 27 - 140 BPM0:07118760No Artist2173Tidy1 - SC - Drum Loop 28 - 140 BPM0:07118760No Artist2174Tidy1 - SC - Drum Loop 29 - 140 BPM0:07118760No Artist2175Tidy1 - SC - Drum Loop 30 - 140 BPM0:07118760No Artist2176Tidy1 - SC - Drum Loop 31 - 140 BPM0:07118760No Artist2177Tidy1 - SC - Drum Loop 32 - 140 BPM0:07118760No Artist2178Tidy1 - SC - Drum Loop 33 - 140 BPM0:07118760No Artist2179Tidy1 - SC - Drum Loop 34 - 140 BPM0:07118760No Artist2180Tidy1 - SC - Drum Loop 35 - 140 BPM0:07118760No Artist2181Tidy1 - SC - Drum Loop 36 - 140 BPM0:07118760No Artist2182Tidy1 - SC - Drum Loop 37 - 140 BPM0:07118760No Artist2183Tidy1 - SC - Drum Loop 38 - 140 BPM0:07118760No Artist2184Tidy1 - SC - Drum Loop 39 - 140 BPM0:07118760No Artist2185Tidy1 - Clap 010:00118760No Artist2186Tidy1 - Clap 020:00118760No Artist2187Tidy1 - Clap 030:00118760No Artist2188Tidy1 - Clap 040:01118760No Artist2189Tidy1 - Clap 050:00118760No Artist2190Tidy1 - Clap 060:00118760No Artist2191Tidy1 - Clap 070:00118760No Artist2192Tidy1 - Clap 080:00118760No Artist2193Tidy1 - Clap 090:01118760No Artist2194Tidy1 - Clap 100:01118760No Artist2195Tidy1 - Clap 110:01118760No Artist2196Tidy1 - Clap 120:01118760No Artist2197Tidy1 - Clap 130:00118760No Artist2198Tidy1 - Clap 140:00118760No Artist2199Tidy1 - Clap 150:00118760No Artist2200Tidy1 - Clap 160:00118760No Artist2201Tidy1 - Clap 170:00118760No Artist2202Tidy1 - Clap 180:00118760No Artist2203Tidy1 - Clap 190:00118760No Artist2204Tidy1 - Clap 200:00118760No Artist2205Tidy1 - Crash 010:01118760No Artist2206Tidy1 - Crash 020:03118760No Artist2207Tidy1 - Crash 030:03118760No Artist2208Tidy1 - Crash 040:03118760No Artist2209Tidy1 - Crash 050:03118760No Artist2210Tidy1 - Crash 060:03118760No Artist2211Tidy1 - Crash 070:01118760No Artist2212Tidy1 - Crash 080:01118760No Artist2213Tidy1 - Crash 090:01118760No Artist2214Tidy1 - Crash 100:01118760No Artist2215Tidy1 - CHH 010:00118760No Artist2216Tidy1 - CHH 020:00118760No Artist2217Tidy1 - CHH 030:00118760No Artist2218Tidy1 - CHH 040:00118760No Artist2219Tidy1 - CHH 050:00118760No Artist2220Tidy1 - CHH 060:00118760No Artist2221Tidy1 - CHH 070:00118760No Artist2222Tidy1 - CHH 080:00118760No Artist2223Tidy1 - CHH 090:00118760No Artist2224Tidy1 - CHH 100:00118760No Artist2225Tidy1 - CHH 110:00118760No Artist2226Tidy1 - CHH 120:00118760No Artist2227Tidy1 - CHH 130:00118760No Artist2228Tidy1 - CHH 140:00118760No Artist2229Tidy1 - CHH 150:00118760No Artist2230Tidy1 - Misc HH 010:00118760No Artist2231Tidy1 - Misc HH 020:00118760No Artist2232Tidy1 - Misc HH 030:00118760No Artist2233Tidy1 - Misc HH 040:00118760No Artist2234Tidy1 - Misc HH 050:00118760No Artist2235Tidy1 - Misc HH 060:00118760No Artist2236Tidy1 - Misc HH 070:00118760No Artist2237Tidy1 - Misc HH 080:00118760No Artist2238Tidy1 - Misc HH 090:00118760No Artist2239Tidy1 - Misc HH 100:00118760No Artist2240Tidy1 - Misc HH 110:00118760No Artist2241Tidy1 - Misc HH 120:00118760No Artist2242Tidy1 - Misc HH 130:00118760No Artist2243Tidy1 - Misc HH 140:00118760No Artist2244Tidy1 - Misc HH 150:00118760No Artist2245Tidy1 - OHH 010:00118760No Artist2246Tidy1 - OHH 020:00118760No Artist2247Tidy1 - OHH 030:00118760No Artist2248Tidy1 - OHH 040:00118760No Artist2249Tidy1 - OHH 050:01118760No Artist2250Tidy1 - OHH 060:01118760No Artist2251Tidy1 - OHH 070:01118760No Artist2252Tidy1 - OHH 080:01118760No Artist2253Tidy1 - OHH 090:01118760No Artist2254Tidy1 - OHH 100:01118760No Artist2255Tidy1 - Ride 010:00118760No Artist2256Tidy1 - Ride 020:00118760No Artist2257Tidy1 - Ride 030:01118760No Artist2258Tidy1 - Ride 040:01118760No Artist2259Tidy1 - Ride 050:01118760No Artist2260Tidy1 - Ride 060:01118760No Artist2261Tidy1 - Ride 070:01118760No Artist2262Tidy1 - Ride 080:01118760No Artist2263Tidy1 - Ride 090:01118760No Artist2264Tidy1 - Ride 100:01118760No Artist2265Tidy1 - Kick 010:00118760No Artist2266Tidy1 - Kick 020:00118760No Artist2267Tidy1 - Kick 030:00118760No Artist2268Tidy1 - Kick 040:00118760No Artist2269Tidy1 - Kick 050:00118760No Artist2270Tidy1 - Kick 060:00118760No Artist2271Tidy1 - Kick 070:01118760No Artist2272Tidy1 - Kick 080:01118760No Artist2273Tidy1 - Kick 090:01118760No Artist2274Tidy1 - Kick 100:01118760No Artist2275Tidy1 - Kick 110:01118760No Artist2276Tidy1 - Kick 120:01118760No Artist2277Tidy1 - Kick 130:01118760No Artist2278Tidy1 - Kick 140:01118760No Artist2279Tidy1 - Kick 150:01118760No Artist2280Tidy1 - Kick 160:01118760No Artist2281Tidy1 - Kick 170:01118760No Artist2282Tidy1 - Kick 180:01118760No Artist2283Tidy1 - Kick 190:01118760No Artist2284Tidy1 - Kick 200:01118760No Artist2285Tidy1 - Kick 210:01118760No Artist2286Tidy1 - Kick 220:01118760No Artist2287Tidy1 - Perc 010:00118760No Artist2288Tidy1 - Perc 020:00118760No Artist2289Tidy1 - Perc 030:00118760No Artist2290Tidy1 - Perc 040:00118760No Artist2291Tidy1 - Perc 050:00118760No Artist2292Tidy1 - Perc 060:00118760No Artist2293Tidy1 - Perc 070:00118760No Artist2294Tidy1 - Perc 080:00118760No Artist2295Tidy1 - Perc 090:00118760No Artist2296Tidy1 - Perc 100:00118760No Artist2297Tidy1 - Perc 110:00118760No Artist2298Tidy1 - Perc 120:00118760No Artist2299Tidy1 - Perc 130:00118760No Artist2300Tidy1 - Perc 140:00118760No Artist2301Tidy1 - Perc 150:00118760No Artist2302Tidy1 - Perc 160:00118760No Artist2303Tidy1 - Perc 170:00118760No Artist2304Tidy1 - Perc 180:00118760No Artist2305Tidy1 - Perc 190:00118760No Artist2306Tidy1 - Perc 200:00118760No Artist2307Tidy1 - Perc 210:00118760No Artist2308Tidy1 - Perc 220:00118760No Artist2309Tidy1 - Perc 230:00118760No Artist2310Tidy1 - Perc 240:00118760No Artist2311Tidy1 - Perc 250:00118760No Artist2312Tidy1 - Perc 260:00118760No Artist2313Tidy1 - Perc 270:00118760No Artist2314Tidy1 - Perc 280:00118760No Artist2315Tidy1 - Perc 290:00118760No Artist2316Tidy1 - Snare 010:01118760No Artist2317Tidy1 - Snare 020:01118760No Artist2318Tidy1 - Snare 030:01118760No Artist2319Tidy1 - Snare 040:01118760No Artist2320Tidy1 - Snare 050:01118760No Artist2321Tidy1 - Snare 060:01118760No Artist2322Tidy1 - Snare 070:01118760No Artist2323Tidy1 - Snare 080:01118760No Artist2324Tidy1 - Snare 090:01118760No Artist2325Tidy1 - Snare 100:01118760No Artist2326Tidy1 - Snare 110:01118760No Artist2327Tidy1 - Snare 120:01118760No Artist2328Tidy1 - Snare 130:01118760No Artist2329Tidy1 - Snare 140:01118760No Artist2330Tidy1 - Snare 150:01118760No Artist2331Tidy1 - Snare 160:01118760No Artist2332Tidy1 - Snare 170:01118760No Artist2333Tidy1 - Snare 180:01118760No Artist2334Tidy1 - Snare 190:01118760No Artist2335Tidy1 - Snare 200:01118760No Artist2336Tidy1 - Lead Loop 01 - PT1 - 140 BPM - Cm0:27118760No Artist2337Tidy1 - Lead Loop 01 - PT2 - 140 BPM - Cm0:27118760No Artist2338Tidy1 - Lead Loop 01 - PT3 - 140 BPM - Cm0:27118760No Artist2339Tidy1 - Lead Loop 01 - PT4 - 140 BPM - Cm0:27118760No Artist2340Tidy1 - Lead Loop 02 - PT1 - 140 BPM - Gm0:27118760No Artist2341Tidy1 - Lead Loop 02 - PT2 - 140 BPM - Gm0:27118760No Artist2342Tidy1 - Lead Loop 02 - PT3 - 140 BPM - Gm0:27118760No Artist2343Tidy1 - Lead Loop 02 - PT4 - 140 BPM - Gm0:27118760No Artist2344Tidy1 - Lead Loop 03 - PT1 - 140 BPM - Dm0:27118760No Artist2345Tidy1 - Lead Loop 03 - PT2 - 140 BPM - Dm0:27118760No Artist2346Tidy1 - Lead Loop 03 - PT3 - 140 BPM - Dm0:27118760No Artist2347Tidy1 - Lead Loop 03 - PT4 - 140 BPM - Dm0:27118760No Artist2348Tidy1 - Lead Loop 04 - PT1 - 140 BPM - Dm0:27118760No Artist2349Tidy1 - Lead Loop 04 - PT2 - 140 BPM - Dm0:27118760No Artist2350Tidy1 - Lead Loop 04 - PT3 - 140 BPM - Dm0:27118760No Artist2351Tidy1 - Lead Loop 04 - PT4 - 140 BPM - Dm0:27118760No Artist2352Tidy1 - Lead Loop 05 - PT1 - 140 BPM - Em0:27118760No Artist2353Tidy1 - Lead Loop 05 - PT2 - 140 BPM - Em0:27118760No Artist2354Tidy1 - Lead Loop 05 - PT3 - 140 BPM - Em0:27118760No Artist2355Tidy1 - Lead Loop 05 - PT4 - 140 BPM - Em0:27118760No Artist2356Tidy1 - Lead Loop 06 - PT1 - 140 BPM - G#m0:27118760No Artist2357Tidy1 - Lead Loop 06 - PT2 - 140 BPM - G#m0:27118760No Artist2358Tidy1 - Lead Loop 06 - PT3 - 140 BPM - G#m0:27118760No Artist2359Tidy1 - Lead Loop 06 - PT4 - 140 BPM - G#m0:27118760No Artist2360Tidy1 - Lead Loop 07 - PT1 - 140 BPM - Fm0:27118760No Artist2361Tidy1 - Lead Loop 07 - PT2 - 140 BPM - Fm0:27118760No Artist2362Tidy1 - Lead Loop 07 - PT3 - 140 BPM - Fm0:27118760No Artist2363Tidy1 - Lead Loop 07 - PT4 - 140 BPM - Fm0:27118760No Artist2364Tidy1 - Lead Loop 07 - PT5 - 140 BPM - Fm0:27118760No Artist2365Tidy1 - Lead Loop 08 - PT1 - 140 BPM - Em0:27118760No Artist2366Tidy1 - Lead Loop 08 - PT2 - 140 BPM - Em0:27118760No Artist2367Tidy1 - Lead Loop 08 - PT3 - 140 BPM - Em0:27118760No Artist2368Tidy1 - Lead Loop 08 - PT4 - 140 BPM - Em0:27118760No Artist2369Tidy1 - Lead Loop 09 - PT1 - 140 BPM - Em0:27118760No Artist2370Tidy1 - Lead Loop 09 - PT2 - 140 BPM - Em0:27118760No Artist2371Tidy1 - Lead Loop 09 - PT3 - 140 BPM - Em0:27118760No Artist2372Tidy1 - Lead Loop 09 - PT4 - 140 BPM - Em0:27118760No Artist2373Tidy1 - Lead Loop 10 - PT1 - 140 BPM - Bm0:27118760No Artist2374Tidy1 - Lead Loop 10 - PT2 - 140 BPM - Bm0:27118760No Artist2375Tidy1 - Lead Loop 10 - PT3 - 140 BPM - Bm0:27118760No Artist2376Tidy1 - Lead Loop 10 - PT4 - 140 BPM - Bm0:27118760No Artist2377Tidy1 - Lead Loop 11 - PT1 - 140 BPM - Fm0:27118760No Artist2378Tidy1 - Lead Loop 11 - PT2 - 140 BPM - Fm0:27118760No Artist2379Tidy1 - Lead Loop 11 - PT3 - 140 BPM - Fm0:27118760No Artist2380Tidy1 - Lead Loop 11 - PT4 - 140 BPM - Fm0:27118760No Artist2381Tidy1 - Lead Loop 12 - PT1 - 140 BPM - Bm0:27118760No Artist2382Tidy1 - Lead Loop 12 - PT2 - 140 BPM - Bm0:27118760No Artist2383Tidy1 - Lead Loop 12 - PT3 - 140 BPM - Bm0:27118760No Artist2384Tidy1 - Lead Loop 12 - PT4 - 140 BPM - Bm0:27118760No Artist2385Tidy1 - Lead Loop 13 - PT1 - 140 BPM - F#m0:27118760No Artist2386Tidy1 - Lead Loop 13 - PT2 - 140 BPM - F#m0:27118760No Artist2387Tidy1 - Lead Loop 13 - PT3 - 140 BPM - F#m0:27118760No Artist2388Tidy1 - Lead Loop 13 - PT4 - 140 BPM - F#m0:27118760No Artist2389Tidy1 - Lead Loop 14 - PT1 - 140 BPM - F#m0:27118760No Artist2390Tidy1 - Lead Loop 14 - PT2 - 140 BPM - F#m0:27118760No Artist2391Tidy1 - Lead Loop 14 - PT3 - 140 BPM - F#m0:27118760No Artist2392Tidy1 - Lead Loop 14 - PT4 - 140 BPM - F#m0:27118760No Artist2393Tidy1 - Lead Loop 14 - PT5 - 140 BPM - F#m0:27118760No Artist2394Tidy1 - Lead Loop 14 - PT6 - 140 BPM - F#m0:27118760No Artist2395Tidy1 - SC Lead Loop 01 - PT1 - 140 BPM - Cm0:27118760No Artist2396Tidy1 - SC Lead Loop 01 - PT2 - 140 BPM - Cm0:27118760No Artist2397Tidy1 - SC Lead Loop 01 - PT3 - 140 BPM - Cm0:27118760No Artist2398Tidy1 - SC Lead Loop 01 - PT4 - 140 BPM - Cm0:27118760No Artist2399Tidy1 - SC Lead Loop 02 - PT1 - 140 BPM - Gm0:27118760No Artist2400Tidy1 - SC Lead Loop 02 - PT2 - 140 BPM - Gm0:27118760No Artist2401Tidy1 - SC Lead Loop 02 - PT3 - 140 BPM - Gm0:27118760No Artist2402Tidy1 - SC Lead Loop 02 - PT4 - 140 BPM - Gm0:27118760No Artist2403Tidy1 - SC Lead Loop 03 - PT1 - 140 BPM - Dm0:27118760No Artist2404Tidy1 - SC Lead Loop 03 - PT2 - 140 BPM - Dm0:27118760No Artist2405Tidy1 - SC Lead Loop 03 - PT3 - 140 BPM - Dm0:27118760No Artist2406Tidy1 - SC Lead Loop 03 - PT4 - 140 BPM - Dm0:27118760No Artist2407Tidy1 - SC Lead Loop 04 - PT1 - 140 BPM - Dm0:27118760No Artist2408Tidy1 - SC Lead Loop 04 - PT2 - 140 BPM - Dm0:27118760No Artist2409Tidy1 - SC Lead Loop 04 - PT3 - 140 BPM - Dm0:27118760No Artist2410Tidy1 - SC Lead Loop 04 - PT4 - 140 BPM - Dm0:27118760No Artist2411Tidy1 - SC Lead Loop 05 - PT1 - 140 BPM - Em0:27118760No Artist2412Tidy1 - SC Lead Loop 05 - PT2 - 140 BPM - Em0:27118760No Artist2413Tidy1 - SC Lead Loop 05 - PT3 - 140 BPM - Em0:27118760No Artist2414Tidy1 - SC Lead Loop 05 - PT4 - 140 BPM - Em0:27118760No Artist2415Tidy1 - SC Lead Loop 06 - PT1 - 140 BPM - G#m0:27118760No Artist2416Tidy1 - SC Lead Loop 06 - PT2 - 140 BPM - G#m0:27118760No Artist2417Tidy1 - SC Lead Loop 06 - PT3 - 140 BPM - G#m0:27118760No Artist2418Tidy1 - SC Lead Loop 06 - PT4 - 140 BPM - G#m0:27118760No Artist2419Tidy1 - SC Lead Loop 07 - PT1 - 140 BPM - Fm0:27118760No Artist2420Tidy1 - SC Lead Loop 07 - PT2 - 140 BPM - Fm0:27118760No Artist2421Tidy1 - SC Lead Loop 07 - PT3 - 140 BPM - Fm0:27118760No Artist2422Tidy1 - SC Lead Loop 07 - PT4 - 140 BPM - Fm0:27118760No Artist2423Tidy1 - SC Lead Loop 07 - PT5 - 140 BPM - Fm0:27118760No Artist2424Tidy1 - SC Lead Loop 08 - PT1 - 140 BPM - Em0:27118760No Artist2425Tidy1 - SC Lead Loop 08 - PT2 - 140 BPM - Em0:27118760No Artist2426Tidy1 - SC Lead Loop 08 - PT3 - 140 BPM - Em0:27118760No Artist2427Tidy1 - SC Lead Loop 08 - PT4 - 140 BPM - Em0:27118760No Artist2428Tidy1 - SC Lead Loop 09 - PT1 - 140 BPM - Em0:27118760No Artist2429Tidy1 - SC Lead Loop 09 - PT2 - 140 BPM - Em0:27118760No Artist2430Tidy1 - SC Lead Loop 09 - PT3 - 140 BPM - Em0:27118760No Artist2431Tidy1 - SC Lead Loop 09 - PT4 - 140 BPM - Em0:27118760No Artist2432Tidy1 - SC Lead Loop 10 - PT1 - 140 BPM - Bm0:27118760No Artist2433Tidy1 - SC Lead Loop 10 - PT2 - 140 BPM - Bm0:27118760No Artist2434Tidy1 - SC Lead Loop 10 - PT3 - 140 BPM - Bm0:27118760No Artist2435Tidy1 - SC Lead Loop 10 - PT4 - 140 BPM - Bm0:27118760No Artist2436Tidy1 - SC Lead Loop 11 - PT1 - 140 BPM - Fm0:27118760No Artist2437Tidy1 - SC Lead Loop 11 - PT2 - 140 BPM - Fm0:27118760No Artist2438Tidy1 - SC Lead Loop 11 - PT3 - 140 BPM - Fm0:27118760No Artist2439Tidy1 - SC Lead Loop 11 - PT4 - 140 BPM - Fm0:27118760No Artist2440Tidy1 - SC Lead Loop 12 - PT1 - 140 BPM - Bm0:27118760No Artist2441Tidy1 - SC Lead Loop 12 - PT2 - 140 BPM - Bm0:27118760No Artist2442Tidy1 - SC Lead Loop 12 - PT3 - 140 BPM - Bm0:27118760No Artist2443Tidy1 - SC Lead Loop 12 - PT4 - 140 BPM - Bm0:27118760No Artist2444Tidy1 - SC Lead Loop 13 - PT1 - 140 BPM - F#m0:27118760No Artist2445Tidy1 - SC Lead Loop 13 - PT2 - 140 BPM - F#m0:27118760No Artist2446Tidy1 - SC Lead Loop 13 - PT3 - 140 BPM - F#m0:27118760No Artist2447Tidy1 - SC Lead Loop 13 - PT4 - 140 BPM - F#m0:27118760No Artist2448Tidy1 - SC Lead Loop 14 - PT1 - 140 BPM - F#m0:27118760No Artist2449Tidy1 - SC Lead Loop 14 - PT2 - 140 BPM - F#m0:27118760No Artist2450Tidy1 - SC Lead Loop 14 - PT3 - 140 BPM - F#m0:27118760No Artist2451Tidy1 - SC Lead Loop 14 - PT4 - 140 BPM - F#m0:27118760No Artist2452Tidy1 - SC Lead Loop 14 - PT5 - 140 BPM - F#m0:27118760No Artist2453Tidy1 - SC Lead Loop 14 - PT6 - 140 BPM - F#m0:27118760No Artist2454Tidy1 - One Shot Lead - Loop 01 Cm0:07118760No Artist2455Tidy1 - One Shot Lead - Loop 02 Gm0:07118760No Artist2456Tidy1 - One Shot Lead - Loop 03 Dm0:07118760No Artist2457Tidy1 - One Shot Lead - Loop 04 Dm0:07118760No Artist2458Tidy1 - One Shot Lead - Loop 05 Em0:07118760No Artist2459Tidy1 - One Shot Lead - Loop 06 G#m0:07118760No Artist2460Tidy1 - One Shot Lead - Loop 07 Fm0:07118760No Artist2461Tidy1 - One Shot Lead - Loop 08 Em0:07118760No Artist2462Tidy1 - One Shot Lead - Loop 09 Em0:07118760No Artist2463Tidy1 - One Shot Lead - Loop 10 Bm0:07118760No Artist2464Tidy1 - One Shot Lead - Loop 11 Fm0:07118760No Artist2465Tidy1 - One Shot Lead - Loop 12 Bm0:07118760No Artist2466Tidy1 - One Shot Lead - Loop 13 F#m0:07118760No Artist2467Tidy1 - One Shot Lead - Loop 14 F#m0:07118760No Artist2468Tidy1 - Downfiller 010:17118760No Artist2469Tidy1 - Downfiller 020:27118760No Artist2470Tidy1 - Downfiller 030:17118760No Artist2471Tidy1 - Downfiller 040:13118760No Artist2472Tidy1 - Downfiller 050:14118760No Artist2473Tidy1 - Downfiller 060:14118760No Artist2474Tidy1 - Downfiller 070:27118760No Artist2475Tidy1 - Downfiller 080:25118760No Artist2476Tidy1 - Downfiller 090:25118760No Artist2477Tidy1 - Downfiller 100:15118760No Artist2478Tidy1 - Downfiller 110:07118760No Artist2479Tidy1 - Downfiller 120:14118760No Artist2480Tidy1 - Downfiller 130:14118760No Artist2481Tidy1 - Downfiller 140:14118760No Artist2482Tidy1 - Downfiller 150:14118760No Artist2483Tidy1 - FX 010:04118760No Artist2484Tidy1 - FX 020:04118760No Artist2485Tidy1 - FX 030:06118760No Artist2486Tidy1 - FX 040:06118760No Artist2487Tidy1 - FX 050:24118760No Artist2488Tidy1 - FX 060:05118760No Artist2489Tidy1 - FX 070:05118760No Artist2490Tidy1 - FX 080:03118760No Artist2491Tidy1 - FX 090:03118760No Artist2492Tidy1 - FX 100:02118760No Artist2493Tidy1 - FX 110:03118760No Artist2494Tidy1 - FX 120:03118760No Artist2495Tidy1 - FX 130:02118760No Artist2496Tidy1 - FX 140:00118760No Artist2497Tidy1 - FX 150:03118760No Artist2498Tidy1 - FX 160:03118760No Artist2499Tidy1 - FX 170:03118760No Artist2500Tidy1 - FX 180:03118760No Artist2501Tidy1 - FX 190:01118760No Artist2502Tidy1 - FX 200:05118760No Artist2503Tidy1 - FX 210:05118760No Artist2504Tidy1 - FX 220:15118760No Artist2505Tidy1 - FX 230:14118760No Artist2506Tidy1 - FX 240:03118760No Artist2507Tidy1 - Reverb Kick 10:09118760No Artist2508Tidy1 - Reverb Kick 20:09118760No Artist2509Tidy1 - Reverb Kick 30:09118760No Artist2510Tidy1 - Reverb Kick 40:09118760No Artist2511Tidy1 - Reverb Kick 50:09118760No Artist2512Tidy1 - Reverb Kick 60:10118760No Artist2513Tidy1 - Reverb Kick 70:17118760No Artist2514Tidy1 - Reverb Kick 80:17118760No Artist2515Tidy1 - Reverb Kick 90:14118760No Artist2516Tidy1 - Reverb Kick 100:10118760No Artist2517Tidy1 - Reverb Kick 110:10118760No Artist2518Tidy1 - Reverb Kick 120:10118760No Artist2519Tidy1 - Reverb Kick 130:10118760No Artist2520Tidy1 - Reverb Kick 140:10118760No Artist2521Tidy1 - Reverb Kick 150:10118760No Artist2522Tidy1 - Reverb Kick 160:10118760No Artist2523Tidy1 - Uplifter 010:14118760No Artist2524Tidy1 - Uplifter 020:07118760No Artist2525Tidy1 - Uplifter 030:12118760No Artist2526Tidy1 - Uplifter 040:14118760No Artist2527Tidy1 - Uplifter 050:14118760No Artist2528Tidy1 - Uplifter 060:15118760No Artist2529Tidy1 - Uplifter 070:17118760No Artist2530Tidy1 - Uplifter 080:15118760No Artist2531Tidy1 - Uplifter 090:14118760No Artist2532Tidy1 - Uplifter 100:14118760No Artist2533Tidy1 - Uplifter 110:14118760No Artist2534Tidy1 - Uplifter 120:21118760No Artist2535Tidy1 - Uplifter 130:27118760No Artist2536Tidy1 - Uplifter 140:14118760No Artist2537Tidy1 - Uplifter 150:15118760No Artist2538Tidy1 - Vox Dry - Loop 01 - 140 BPM - C#0:10118760No Artist2539Tidy1 - Vox Dry - Loop 02 - 140 BPM - E0:10118760No Artist2540Tidy1 - Vox Dry - Loop 03 - 140 BPM - Gm0:10118760No Artist2541Tidy1 - Vox Dry - Loop 04 - 140 BPM - Bm0:10118760No Artist2542Tidy1 - Vox Dry - Loop 05 - 140 BPM - Bm0:10118760No Artist2543Tidy1 - Vox Dry - Loop 06 - 140 BPM - A#m0:10118760No Artist2544Tidy1 - Vox Dry - Loop 07 - 140 BPM - G#m0:10118760No Artist2545Tidy1 - Vox Dry - Loop 08 - 140 BPM - A#m0:10118760No Artist2546Tidy1 - Vox Dry - Loop 09 - 140 BPM - F#0:10118760No Artist2547Tidy1 - Vox Dry - Loop 10 - 140 BPM - A#0:10118760No Artist2548Tidy1 - Vox Wet - Loop 01 - 140 BPM - C#0:10118760No Artist2549Tidy1 - Vox Wet - Loop 02 - 140 BPM - E0:10118760No Artist2550Tidy1 - Vox Wet - Loop 03 - 140 BPM - Gm0:10118760No Artist2551Tidy1 - Vox Wet - Loop 04 - 140 BPM - Bm0:10118760No Artist2552Tidy1 - Vox Wet - Loop 05 - 140 BPM - Bm0:10118760No Artist2553Tidy1 - Vox Wet - Loop 06 - 140 BPM - A#m0:10118760No Artist2554Tidy1 - Vox Wet - Loop 07 - 140 BPM - G#m0:10118760No Artist2555Tidy1 - Vox Wet - Loop 08 - 140 BPM - A#m0:10118760No Artist2556Tidy1 - Vox Wet - Loop 09 - 140 BPM - F#0:10118760No Artist2557Tidy1 - Vox Wet - Loop 10 - 140 BPM - A#0:10118760No Artist2558Tidy1 - Vox Shot 010:03118760No Artist2559Tidy1 - Vox Shot 020:03118760No Artist2560Tidy1 - Vox Shot 030:03118760No Artist2561Tidy1 - Vox Shot 040:03118760No Artist2562Tidy1 - Vox Shot 050:03118760No Artist2563Tidy1 - Vox Shot 060:03118760No Artist2564Tidy1 - Vox Shot 070:03118760No Artist2565Tidy1 - Vox Shot 080:03118760No Artist2566Tidy1 - Vox Shot 090:03118760No Artist2567Tidy1 - Vox Shot 100:03118760No Artist2568Tidy1 - Vox Shot 110:03118760No Artist2569Tidy1 - Vox Shot 120:03118760No Artist2570Tidy1 - Vox Shot 130:03118760No Artist2571Tidy1 - Vox Shot 140:03118760No Artist2572Tidy1 - Vox Shot 150:03118760No Artist2573Tidy1 - Vox Shot 160:03118760No Artist2574Tidy1 - Vox Shot 170:03118760No Artist2575Tidy1 - Vox Shot 180:03118760No Artist2576Tidy1 - Vox Shot 190:03118760No Artist2577Tidy1 - Vox Shot 200:03118760No Artist2578Tidy1 - Vox Shot 210:03118760No Artist2579Tidy1 - Vox Shot 220:03118760No Artist2580Tidy1 - Vox Shot 230:03118760No Artist2581Tidy1 - 2A - Untidy Dubs - Fine Night Featuring Emma Lock (VOX Dry 140bpm)1:31118760No Artist2582Tidy1 - Miss Behavin' - Such A Good Feeling0:37118760No Artist2583Tidy1 - On Two Turns Stretch Vox0:03118760No Artist2584Tidy1 - Raedy 4 Dis0:02118760No Artist2585Tidy1 - Scratchin To The Funk In 19850:04118760No Artist2586Tidy1 - Untidy Dubs - Funky Groove0:55118760No Artist04 Tidy Sample Packs\Tidy - Bits & Pieces Vol 22587Tidy2 - Bass Loop 01 - PT1 - 140 BPM - F#m0:14118760No Artist2588Tidy2 - Bass Loop 01 - PT2 - 140 BPM - F#m0:14118760No Artist2589Tidy2 - Bass Loop 01 - PT3 - 140 BPM - F#m0:14118760No Artist2590Tidy2 - Bass Loop 01 - PT4 - 140 BPM - F#m0:14118760No Artist2591Tidy2 - Bass Loop 02 - PT1 - 140 BPM - Am0:14118760No Artist2592Tidy2 - Bass Loop 02 - PT2 - 140 BPM - Am0:14118760No Artist2593Tidy2 - Bass Loop 02 - PT3 - 140 BPM - Am0:14118760No Artist2594Tidy2 - Bass Loop 02 - PT4 - 140 BPM - Am0:14118760No Artist2595Tidy2 - Bass Loop 03 - PT1 - 140 BPM - C#m0:14118760No Artist2596Tidy2 - Bass Loop 03 - PT2 - 140 BPM - C#m0:14118760No Artist2597Tidy2 - Bass Loop 03 - PT3 - 140 BPM - C#m0:14118760No Artist2598Tidy2 - Bass Loop 03 - PT4 - 140 BPM - C#m0:14118760No Artist2599Tidy2 - Bass Loop 04 - PT1 - 140 BPM - A#m0:14118760No Artist2600Tidy2 - Bass Loop 04 - PT2 - 140 BPM - A#m0:14118760No Artist2601Tidy2 - Bass Loop 04 - PT3 - 140 BPM - A#m0:14118760No Artist2602Tidy2 - Bass Loop 04 - PT4 - 140 BPM - A#m0:14118760No Artist2603Tidy2 - Bass Loop 05 - PT1 - 140 BPM - Em0:14118760No Artist2604Tidy2 - Bass Loop 05 - PT2 - 140 BPM - Em0:14118760No Artist2605Tidy2 - Bass Loop 05 - PT3 - 140 BPM - Em0:14118760No Artist2606Tidy2 - Bass Loop 05 - PT4 - 140 BPM - Em0:14118760No Artist2607Tidy2 - Bass Loop 06 - PT1 - 140 BPM - C0:14118760No Artist2608Tidy2 - Bass Loop 06 - PT2 - 140 BPM - C0:14118760No Artist2609Tidy2 - Bass Loop 06 - PT3 - 140 BPM - C0:14118760No Artist2610Tidy2 - Bass Loop 06 - PT4 - 140 BPM - C0:14118760No Artist2611Tidy2 - Bass Loop 07 - PT1 - 140 BPM - Fm0:14118760No Artist2612Tidy2 - Bass Loop 07 - PT2 - 140 BPM - Fm0:14118760No Artist2613Tidy2 - Bass Loop 07 - PT3 - 140 BPM - Fm0:14118760No Artist2614Tidy2 - Bass Loop 07 - PT4 - 140 BPM - Fm0:14118760No Artist2615Tidy2 - Bass Loop 08 - PT1 - 140 BPM - Am0:14118760No Artist2616Tidy2 - Bass Loop 08 - PT2 - 140 BPM - Am0:14118760No Artist2617Tidy2 - Bass Loop 08 - PT3 - 140 BPM - Am0:14118760No Artist2618Tidy2 - Bass Loop 08 - PT4 - 140 BPM - Am0:14118760No Artist2619Tidy2 - Bass Loop 09 - PT1 - 140 BPM - F0:14118760No Artist2620Tidy2 - Bass Loop 09 - PT2 - 140 BPM - F0:14118760No Artist2621Tidy2 - Bass Loop 09 - PT3 - 140 BPM - F0:14118760No Artist2622Tidy2 - Bass Loop 09 - PT4 - 140 BPM - F0:14118760No Artist2623Tidy2 - Bass Loop 10 - PT1 - 140 BPM - C#0:14118760No Artist2624Tidy2 - Bass Loop 10 - PT2 - 140 BPM - C#0:14118760No Artist2625Tidy2 - Bass Loop 10 - PT3 - 140 BPM - C#0:14118760No Artist2626Tidy2 - Bass Loop 10 - PT4 - 140 BPM - C#0:14118760No Artist2627Tidy2 - Bass Loop 11 - PT1 - 140 BPM - C#m0:14118760No Artist2628Tidy2 - Bass Loop 11 - PT2 - 140 BPM - C#m0:14118760No Artist2629Tidy2 - Bass Loop 11 - PT3 - 140 BPM - C#m0:14118760No Artist2630Tidy2 - Bass Loop 11 - PT4 - 140 BPM - C#m0:14118760No Artist2631Tidy2 - Bass Loop 12 - PT1 - 140 BPM - Gm0:14118760No Artist2632Tidy2 - Bass Loop 12 - PT2 - 140 BPM - Gm0:14118760No Artist2633Tidy2 - Bass Loop 12 - PT3 - 140 BPM - Gm0:14118760No Artist2634Tidy2 - Bass Loop 12 - PT4 - 140 BPM - Gm0:14118760No Artist2635Tidy2 - Bass Loop 13 - PT1 - 140 BPM - G#m0:14118760No Artist2636Tidy2 - Bass Loop 13 - PT2 - 140 BPM - G#m0:14118760No Artist2637Tidy2 - Bass Loop 13 - PT3 - 140 BPM - G#m0:14118760No Artist2638Tidy2 - Bass Loop 13 - PT4 - 140 BPM - G#m0:14118760No Artist2639Tidy2 - Bass Loop 14 - PT1 - 140 BPM - G#m0:14118760No Artist2640Tidy2 - Bass Loop 14 - PT2 - 140 BPM - G#m0:14118760No Artist2641Tidy2 - Bass Loop 14 - PT3 - 140 BPM - G#m0:14118760No Artist2642Tidy2 - Bass Loop 14 - PT4 - 140 BPM - G#m0:14118760No Artist2643Tidy2 - SC Bass Loop 01 - PT - 140 BPM1 - F#m0:14118760No Artist2644Tidy2 - SC Bass Loop 01 - PT - 140 BPM2 - F#m0:14118760No Artist2645Tidy2 - SC Bass Loop 01 - PT - 140 BPM3 - F#m0:14118760No Artist2646Tidy2 - SC Bass Loop 01 - PT - 140 BPM4 - F#m0:14118760No Artist2647Tidy2 - SC Bass Loop 02 - PT - 140 BPM1 - Am0:14118760No Artist2648Tidy2 - SC Bass Loop 02 - PT - 140 BPM2 - Am0:14118760No Artist2649Tidy2 - SC Bass Loop 02 - PT - 140 BPM3 - Am0:14118760No Artist2650Tidy2 - SC Bass Loop 02 - PT - 140 BPM4 - Am0:14118760No Artist2651Tidy2 - SC Bass Loop 03 - PT - 140 BPM1 - C#m0:14118760No Artist2652Tidy2 - SC Bass Loop 03 - PT - 140 BPM2 - C#m0:14118760No Artist2653Tidy2 - SC Bass Loop 03 - PT - 140 BPM3 - C#m0:14118760No Artist2654Tidy2 - SC Bass Loop 03 - PT - 140 BPM4 - C#m0:14118760No Artist2655Tidy2 - SC Bass Loop 04 - PT - 140 BPM1 - A#m0:14118760No Artist2656Tidy2 - SC Bass Loop 04 - PT - 140 BPM2 - A#m0:14118760No Artist2657Tidy2 - SC Bass Loop 04 - PT - 140 BPM3 - A#m0:14118760No Artist2658Tidy2 - SC Bass Loop 04 - PT - 140 BPM4 - A#m0:14118760No Artist2659Tidy2 - SC Bass Loop 05 - PT - 140 BPM1 - Em0:14118760No Artist2660Tidy2 - SC Bass Loop 05 - PT - 140 BPM2 - Em0:14118760No Artist2661Tidy2 - SC Bass Loop 05 - PT - 140 BPM3 - Em0:14118760No Artist2662Tidy2 - SC Bass Loop 05 - PT - 140 BPM4 - Em0:14118760No Artist2663Tidy2 - SC Bass Loop 06 - PT - 140 BPM1 - C0:14118760No Artist2664Tidy2 - SC Bass Loop 06 - PT - 140 BPM2 - C0:14118760No Artist2665Tidy2 - SC Bass Loop 06 - PT - 140 BPM3 - C0:14118760No Artist2666Tidy2 - SC Bass Loop 06 - PT - 140 BPM4 - C0:14118760No Artist2667Tidy2 - SC Bass Loop 07 - PT - 140 BPM1 - Fm0:14118760No Artist2668Tidy2 - SC Bass Loop 07 - PT - 140 BPM2 - Fm0:14118760No Artist2669Tidy2 - SC Bass Loop 07 - PT - 140 BPM3 - Fm0:14118760No Artist2670Tidy2 - SC Bass Loop 07 - PT - 140 BPM4 - Fm0:14118760No Artist2671Tidy2 - SC Bass Loop 08 - PT - 140 BPM1 - Am0:14118760No Artist2672Tidy2 - SC Bass Loop 08 - PT - 140 BPM2 - Am0:14118760No Artist2673Tidy2 - SC Bass Loop 08 - PT - 140 BPM3 - Am0:14118760No Artist2674Tidy2 - SC Bass Loop 08 - PT - 140 BPM4 - Am0:14118760No Artist2675Tidy2 - SC Bass Loop 09 - PT - 140 BPM1 - F0:14118760No Artist2676Tidy2 - SC Bass Loop 09 - PT - 140 BPM2 - F0:14118760No Artist2677Tidy2 - SC Bass Loop 09 - PT - 140 BPM3 - F0:14118760No Artist2678Tidy2 - SC Bass Loop 09 - PT - 140 BPM4 - F0:14118760No Artist2679Tidy2 - SC Bass Loop 10 - PT - 140 BPM1 - C#0:14118760No Artist2680Tidy2 - SC Bass Loop 10 - PT - 140 BPM2 - C#0:14118760No Artist2681Tidy2 - SC Bass Loop 10 - PT - 140 BPM3 - C#0:14118760No Artist2682Tidy2 - SC Bass Loop 10 - PT - 140 BPM4 - C#0:14118760No Artist2683Tidy2 - SC Bass Loop 11 - PT - 140 BPM1 - C#m0:14118760No Artist2684Tidy2 - SC Bass Loop 11 - PT - 140 BPM2 - C#m0:14118760No Artist2685Tidy2 - SC Bass Loop 11 - PT - 140 BPM3 - C#m0:14118760No Artist2686Tidy2 - SC Bass Loop 11 - PT - 140 BPM4 - C#m0:14118760No Artist2687Tidy2 - SC Bass Loop 12 - PT - 140 BPM1 - Gm0:14118760No Artist2688Tidy2 - SC Bass Loop 12 - PT - 140 BPM2 - Gm0:14118760No Artist2689Tidy2 - SC Bass Loop 12 - PT - 140 BPM3 - Gm0:14118760No Artist2690Tidy2 - SC Bass Loop 12 - PT - 140 BPM4 - Gm0:14118760No Artist2691Tidy2 - SC Bass Loop 13 - PT - 140 BPM1 - G#m0:14118760No Artist2692Tidy2 - SC Bass Loop 13 - PT - 140 BPM2 - G#m0:14118760No Artist2693Tidy2 - SC Bass Loop 13 - PT - 140 BPM3 - G#m0:14118760No Artist2694Tidy2 - SC Bass Loop 13 - PT - 140 BPM4 - G#m0:14118760No Artist2695Tidy2 - SC Bass Loop 14 - PT - 140 BPM1 - G#m0:14118760No Artist2696Tidy2 - SC Bass Loop 14 - PT - 140 BPM2 - G#m0:14118760No Artist2697Tidy2 - SC Bass Loop 14 - PT - 140 BPM3 - G#m0:14118760No Artist2698Tidy2 - SC Bass Loop 14 - PT - 140 BPM4 - G#m0:14118760No Artist2699Tidy2 - One Shot Bass - Loop 01 F#0:14118760No Artist2700Tidy2 - One Shot Bass - Loop 02 A0:14118760No Artist2701Tidy2 - One Shot Bass - Loop 03 C#0:14118760No Artist2702Tidy2 - One Shot Bass - Loop 04 A#0:14118760No Artist2703Tidy2 - One Shot Bass - Loop 05 E0:14118760No Artist2704Tidy2 - One Shot Bass - Loop 06 C0:14118760No Artist2705Tidy2 - One Shot Bass - Loop 07 F0:14118760No Artist2706Tidy2 - One Shot Bass - Loop 08 A0:14118760No Artist2707Tidy2 - One Shot Bass - Loop 09 F0:14118760No Artist2708Tidy2 - One Shot Bass - Loop 10 C#0:14118760No Artist2709Tidy2 - One Shot Bass - Loop 11 C#0:14118760No Artist2710Tidy2 - One Shot Bass - Loop 12 G0:14118760No Artist2711Tidy2 - One Shot Bass - Loop 13 G#0:14118760No Artist2712Tidy2 - One Shot Bass - Loop 14 G#0:14118760No Artist2713Tidy2 - Drum Fill 01 - 140 BPM0:03118760No Artist2714Tidy2 - Drum Fill 02 - 140 BPM0:03118760No Artist2715Tidy2 - Drum Fill 03 - 140 BPM0:03118760No Artist2716Tidy2 - Drum Fill 04 - 140 BPM0:03118760No Artist2717Tidy2 - Drum Fill 05 - 140 BPM0:03118760No Artist2718Tidy2 - Drum Fill 06 - 140 BPM0:03118760No Artist2719Tidy2 - Drum Fill 07 - 140 BPM0:03118760No Artist2720Tidy2 - Drum Fill 08 - 140 BPM0:03118760No Artist2721Tidy2 - Drum Fill 09 - 140 BPM0:03118760No Artist2722Tidy2 - Drum Fill 10 - 140 BPM0:03118760No Artist2723Tidy2 - SC - Drum Fill 01 - 140 BPM0:03118760No Artist2724Tidy2 - SC - Drum Fill 02 - 140 BPM0:03118760No Artist2725Tidy2 - SC - Drum Fill 03 - 140 BPM0:03118760No Artist2726Tidy2 - SC - Drum Fill 04 - 140 BPM0:03118760No Artist2727Tidy2 - SC - Drum Fill 05 - 140 BPM0:03118760No Artist2728Tidy2 - SC - Drum Fill 06 - 140 BPM0:03118760No Artist2729Tidy2 - SC - Drum Fill 07 - 140 BPM0:03118760No Artist2730Tidy2 - SC - Drum Fill 08 - 140 BPM0:03118760No Artist2731Tidy2 - SC - Drum Fill 09 - 140 BPM0:03118760No Artist2732Tidy2 - SC - Drum Fill 10 - 140 BPM0:03118760No Artist2733Tidy2 - Drum Loop 01 - 140 BPM0:07118760No Artist2734Tidy2 - Drum Loop 02 - 140 BPM0:07118760No Artist2735Tidy2 - Drum Loop 03 - 140 BPM0:07118760No Artist2736Tidy2 - Drum Loop 04 - 140 BPM0:07118760No Artist2737Tidy2 - Drum Loop 05 - 140 BPM0:07118760No Artist2738Tidy2 - Drum Loop 06 - 140 BPM0:07118760No Artist2739Tidy2 - Drum Loop 07 - 140 BPM0:07118760No Artist2740Tidy2 - Drum Loop 08 - 140 BPM0:07118760No Artist2741Tidy2 - Drum Loop 09 - 140 BPM0:07118760No Artist2742Tidy2 - Drum Loop 10 - 140 BPM0:07118760No Artist2743Tidy2 - Drum Loop 11 - 140 BPM0:07118760No Artist2744Tidy2 - Drum Loop 12 - 140 BPM0:07118760No Artist2745Tidy2 - Drum Loop 13 - 140 BPM0:07118760No Artist2746Tidy2 - Drum Loop 14 - 140 BPM0:07118760No Artist2747Tidy2 - Drum Loop 15 - 140 BPM0:07118760No Artist2748Tidy2 - Drum Loop 16 - 140 BPM0:07118760No Artist2749Tidy2 - Drum Loop 17 - 140 BPM0:07118760No Artist2750Tidy2 - Drum Loop 18 - 140 BPM0:07118760No Artist2751Tidy2 - Drum Loop 19 - 140 BPM0:07118760No Artist2752Tidy2 - Drum Loop 20 - 140 BPM0:07118760No Artist2753Tidy2 - Drum Loop 21 - 140 BPM0:07118760No Artist2754Tidy2 - Drum Loop 22 - 140 BPM0:07118760No Artist2755Tidy2 - Drum Loop 23 - 140 BPM0:07118760No Artist2756Tidy2 - Drum Loop 24 - 140 BPM0:07118760No Artist2757Tidy2 - Drum Loop 25 - 140 BPM0:07118760No Artist2758Tidy2 - Drum Loop 26 - 140 BPM0:07118760No Artist2759Tidy2 - Drum Loop 27 - 140 BPM0:07118760No Artist2760Tidy2 - Drum Loop 28 - 140 BPM0:07118760No Artist2761Tidy2 - Drum Loop 29 - 140 BPM0:07118760No Artist2762Tidy2 - Drum Loop 30 - 140 BPM0:07118760No Artist2763Tidy2 - Drum Loop 31 - 140 BPM0:07118760No Artist2764Tidy2 - Drum Loop 32 - 140 BPM0:07118760No Artist2765Tidy2 - Drum Loop 33 - 140 BPM0:07118760No Artist2766Tidy2 - Drum Loop 34 - 140 BPM0:07118760No Artist2767Tidy2 - Drum Loop 35 - 140 BPM0:07118760No Artist2768Tidy2 - Drum Loop 36 - 140 BPM0:07118760No Artist2769Tidy2 - Drum Loop 37 - 140 BPM0:07118760No Artist2770Tidy2 - Drum Loop 38 - 140 BPM0:07118760No Artist2771Tidy2 - Drum Loop 39 - 140 BPM0:07118760No Artist2772Tidy2 - SC - Drum Loop 01 - 140 BPM0:07118760No Artist2773Tidy2 - SC - Drum Loop 02 - 140 BPM0:07118760No Artist2774Tidy2 - SC - Drum Loop 03 - 140 BPM0:07118760No Artist2775Tidy2 - SC - Drum Loop 04 - 140 BPM0:07118760No Artist2776Tidy2 - SC - Drum Loop 05 - 140 BPM0:07118760No Artist2777Tidy2 - SC - Drum Loop 06 - 140 BPM0:07118760No Artist2778Tidy2 - SC - Drum Loop 07 - 140 BPM0:07118760No Artist2779Tidy2 - SC - Drum Loop 08 - 140 BPM0:07118760No Artist2780Tidy2 - SC - Drum Loop 09 - 140 BPM0:07118760No Artist2781Tidy2 - SC - Drum Loop 10 - 140 BPM0:07118760No Artist2782Tidy2 - SC - Drum Loop 11 - 140 BPM0:07118760No Artist2783Tidy2 - SC - Drum Loop 12 - 140 BPM0:07118760No Artist2784Tidy2 - SC - Drum Loop 13 - 140 BPM0:07118760No Artist2785Tidy2 - SC - Drum Loop 14 - 140 BPM0:07118760No Artist2786Tidy2 - SC - Drum Loop 15 - 140 BPM0:07118760No Artist2787Tidy2 - SC - Drum Loop 16 - 140 BPM0:07118760No Artist2788Tidy2 - SC - Drum Loop 17 - 140 BPM0:07118760No Artist2789Tidy2 - SC - Drum Loop 18 - 140 BPM0:07118760No Artist2790Tidy2 - SC - Drum Loop 19 - 140 BPM0:07118760No Artist2791Tidy2 - SC - Drum Loop 20 - 140 BPM0:07118760No Artist2792Tidy2 - SC - Drum Loop 21 - 140 BPM0:07118760No Artist2793Tidy2 - SC - Drum Loop 22 - 140 BPM0:07118760No Artist2794Tidy2 - SC - Drum Loop 23 - 140 BPM0:07118760No Artist2795Tidy2 - SC - Drum Loop 24 - 140 BPM0:07118760No Artist2796Tidy2 - SC - Drum Loop 25 - 140 BPM0:07118760No Artist2797Tidy2 - SC - Drum Loop 26 - 140 BPM0:07118760No Artist2798Tidy2 - SC - Drum Loop 27 - 140 BPM0:07118760No Artist2799Tidy2 - SC - Drum Loop 28 - 140 BPM0:07118760No Artist2800Tidy2 - SC - Drum Loop 29 - 140 BPM0:07118760No Artist2801Tidy2 - SC - Drum Loop 30 - 140 BPM0:07118760No Artist2802Tidy2 - SC - Drum Loop 31 - 140 BPM0:07118760No Artist2803Tidy2 - SC - Drum Loop 32 - 140 BPM0:07118760No Artist2804Tidy2 - SC - Drum Loop 33 - 140 BPM0:07118760No Artist2805Tidy2 - SC - Drum Loop 34 - 140 BPM0:07118760No Artist2806Tidy2 - SC - Drum Loop 35 - 140 BPM0:07118760No Artist2807Tidy2 - SC - Drum Loop 36 - 140 BPM0:07118760No Artist2808Tidy2 - SC - Drum Loop 37 - 140 BPM0:07118760No Artist2809Tidy2 - SC - Drum Loop 38 - 140 BPM0:07118760No Artist2810Tidy2 - SC - Drum Loop 39 - 140 BPM0:07118760No Artist2811Tidy2 - Clap 010:00118760No Artist2812Tidy2 - Clap 020:00118760No Artist2813Tidy2 - Clap 030:00118760No Artist2814Tidy2 - Clap 040:00118760No Artist2815Tidy2 - Clap 050:00118760No Artist2816Tidy2 - Clap 060:00118760No Artist2817Tidy2 - Clap 070:00118760No Artist2818Tidy2 - Clap 080:00118760No Artist2819Tidy2 - Clap 090:01118760No Artist2820Tidy2 - Clap 100:01118760No Artist2821Tidy2 - Clap 110:01118760No Artist2822Tidy2 - Clap 120:00118760No Artist2823Tidy2 - Clap 130:00118760No Artist2824Tidy2 - Clap 140:00118760No Artist2825Tidy2 - Clap 150:00118760No Artist2826Tidy2 - Clap 160:00118760No Artist2827Tidy2 - Clap 170:00118760No Artist2828Tidy2 - Clap 180:00118760No Artist2829Tidy2 - Clap 190:00118760No Artist2830Tidy2 - Clap 200:00118760No Artist2831Tidy2 - Crash 010:03118760No Artist2832Tidy2 - Crash 020:03118760No Artist2833Tidy2 - Crash 030:03118760No Artist2834Tidy2 - Crash 040:03118760No Artist2835Tidy2 - Crash 050:03118760No Artist2836Tidy2 - Crash 060:03118760No Artist2837Tidy2 - Crash 070:01118760No Artist2838Tidy2 - Crash 080:01118760No Artist2839Tidy2 - Crash 090:01118760No Artist2840Tidy2 - Crash 100:01118760No Artist2841Tidy2 - CHH 010:00118760No Artist2842Tidy2 - CHH 020:00118760No Artist2843Tidy2 - CHH 030:00118760No Artist2844Tidy2 - CHH 040:00118760No Artist2845Tidy2 - CHH 050:00118760No Artist2846Tidy2 - CHH 060:00118760No Artist2847Tidy2 - CHH 070:00118760No Artist2848Tidy2 - CHH 080:00118760No Artist2849Tidy2 - CHH 090:00118760No Artist2850Tidy2 - CHH 100:00118760No Artist2851Tidy2 - CHH 110:00118760No Artist2852Tidy2 - CHH 120:00118760No Artist2853Tidy2 - CHH 130:00118760No Artist2854Tidy2 - CHH 140:00118760No Artist2855Tidy2 - Misc HH 010:00118760No Artist2856Tidy2 - Misc HH 020:00118760No Artist2857Tidy2 - Misc HH 030:00118760No Artist2858Tidy2 - Misc HH 040:00118760No Artist2859Tidy2 - Misc HH 050:00118760No Artist2860Tidy2 - Misc HH 060:00118760No Artist2861Tidy2 - Misc HH 070:00118760No Artist2862Tidy2 - Misc HH 080:00118760No Artist2863Tidy2 - Misc HH 090:00118760No Artist2864Tidy2 - Misc HH 100:00118760No Artist2865Tidy2 - Misc HH 110:00118760No Artist2866Tidy2 - Misc HH 120:00118760No Artist2867Tidy2 - Misc HH 130:00118760No Artist2868Tidy2 - Misc HH 140:00118760No Artist2869Tidy2 - Misc HH 150:00118760No Artist2870Tidy2 - OHH 010:00118760No Artist2871Tidy2 - OHH 020:00118760No Artist2872Tidy2 - OHH 030:00118760No Artist2873Tidy2 - OHH 040:00118760No Artist2874Tidy2 - OHH 050:01118760No Artist2875Tidy2 - OHH 060:01118760No Artist2876Tidy2 - OHH 070:01118760No Artist2877Tidy2 - OHH 080:01118760No Artist2878Tidy2 - OHH 090:01118760No Artist2879Tidy2 - OHH 100:01118760No Artist2880Tidy2 - Ride 010:00118760No Artist2881Tidy2 - Ride 020:01118760No Artist2882Tidy2 - Ride 030:01118760No Artist2883Tidy2 - Ride 040:01118760No Artist2884Tidy2 - Ride 050:01118760No Artist2885Tidy2 - Ride 060:01118760No Artist2886Tidy2 - Ride 070:01118760No Artist2887Tidy2 - Ride 080:01118760No Artist2888Tidy2 - Ride 090:01118760No Artist2889Tidy2 - Ride 100:01118760No Artist2890Tidy2 - Kick 010:00118760No Artist2891Tidy2 - Kick 020:00118760No Artist2892Tidy2 - Kick 030:00118760No Artist2893Tidy2 - Kick 040:00118760No Artist2894Tidy2 - Kick 050:00118760No Artist2895Tidy2 - Kick 060:00118760No Artist2896Tidy2 - Kick 070:01118760No Artist2897Tidy2 - Kick 080:01118760No Artist2898Tidy2 - Kick 090:01118760No Artist2899Tidy2 - Kick 100:01118760No Artist2900Tidy2 - Kick 110:01118760No Artist2901Tidy2 - Kick 120:01118760No Artist2902Tidy2 - Kick 130:01118760No Artist2903Tidy2 - Kick 140:01118760No Artist2904Tidy2 - Kick 150:01118760No Artist2905Tidy2 - Kick 160:01118760No Artist2906Tidy2 - Kick 170:01118760No Artist2907Tidy2 - Kick 180:01118760No Artist2908Tidy2 - Kick 190:01118760No Artist2909Tidy2 - Kick 200:01118760No Artist2910Tidy2 - Kick 210:01118760No Artist2911Tidy2 - Kick 220:01118760No Artist2912Tidy2 - Perc 010:00118760No Artist2913Tidy2 - Perc 020:00118760No Artist2914Tidy2 - Perc 030:00118760No Artist2915Tidy2 - Perc 040:00118760No Artist2916Tidy2 - Perc 050:00118760No Artist2917Tidy2 - Perc 060:00118760No Artist2918Tidy2 - Perc 070:00118760No Artist2919Tidy2 - Perc 080:00118760No Artist2920Tidy2 - Perc 090:00118760No Artist2921Tidy2 - Perc 100:00118760No Artist2922Tidy2 - Perc 110:00118760No Artist2923Tidy2 - Perc 120:00118760No Artist2924Tidy2 - Perc 130:00118760No Artist2925Tidy2 - Perc 140:00118760No Artist2926Tidy2 - Perc 150:00118760No Artist2927Tidy2 - Perc 160:00118760No Artist2928Tidy2 - Perc 170:00118760No Artist2929Tidy2 - Perc 180:00118760No Artist2930Tidy2 - Perc 190:00118760No Artist2931Tidy2 - Perc 200:00118760No Artist2932Tidy2 - Perc 210:00118760No Artist2933Tidy2 - Perc 220:00118760No Artist2934Tidy2 - Perc 230:00118760No Artist2935Tidy2 - Perc 240:00118760No Artist2936Tidy2 - Perc 250:00118760No Artist2937Tidy2 - Perc 260:00118760No Artist2938Tidy2 - Perc 270:00118760No Artist2939Tidy2 - Perc 280:00118760No Artist2940Tidy2 - Perc 290:00118760No Artist2941Tidy2 - Perc 300:00118760No Artist2942Tidy2 - Snare 010:01118760No Artist2943Tidy2 - Snare 020:01118760No Artist2944Tidy2 - Snare 030:01118760No Artist2945Tidy2 - Snare 040:01118760No Artist2946Tidy2 - Snare 050:01118760No Artist2947Tidy2 - Snare 060:01118760No Artist2948Tidy2 - Snare 070:01118760No Artist2949Tidy2 - Snare 080:01118760No Artist2950Tidy2 - Snare 090:01118760No Artist2951Tidy2 - Snare 100:01118760No Artist2952Tidy2 - Snare 110:01118760No Artist2953Tidy2 - Snare 120:01118760No Artist2954Tidy2 - Snare 130:01118760No Artist2955Tidy2 - Snare 140:01118760No Artist2956Tidy2 - Snare 150:01118760No Artist2957Tidy2 - Snare 160:01118760No Artist2958Tidy2 - Snare 170:01118760No Artist2959Tidy2 - Snare 180:01118760No Artist2960Tidy2 - Snare 190:01118760No Artist2961Tidy2 - Snare 200:01118760No Artist2962Tidy2 - Lead Loop 01 - PT1 - 140 BPM - F#m0:27118760No Artist2963Tidy2 - Lead Loop 01 - PT2 - 140 BPM - F#m0:27118760No Artist2964Tidy2 - Lead Loop 01 - PT3 - 140 BPM - F#m0:27118760No Artist2965Tidy2 - Lead Loop 01 - PT4 - 140 BPM - F#m0:27118760No Artist2966Tidy2 - Lead Loop 02 - PT1 - 140 BPM - A#m0:27118760No Artist2967Tidy2 - Lead Loop 02 - PT2 - 140 BPM - A#m0:27118760No Artist2968Tidy2 - Lead Loop 02 - PT3 - 140 BPM - A#m0:27118760No Artist2969Tidy2 - Lead Loop 02 - PT4 - 140 BPM - A#m0:27118760No Artist2970Tidy2 - Lead Loop 03 - PT1 - 140 BPM - A#m0:27118760No Artist2971Tidy2 - Lead Loop 03 - PT2 - 140 BPM - A#m0:27118760No Artist2972Tidy2 - Lead Loop 03 - PT3 - 140 BPM - A#m0:27118760No Artist2973Tidy2 - Lead Loop 03 - PT4 - 140 BPM - A#m0:27118760No Artist2974Tidy2 - Lead Loop 04 - PT1 - 140 BPM - C#m0:27118760No Artist2975Tidy2 - Lead Loop 04 - PT2 - 140 BPM - C#m0:27118760No Artist2976Tidy2 - Lead Loop 04 - PT3 - 140 BPM - C#m0:27118760No Artist2977Tidy2 - Lead Loop 04 - PT4 - 140 BPM - C#m0:27118760No Artist2978Tidy2 - Lead Loop 05 - PT1 - 140 BPM - Cm0:27118760No Artist2979Tidy2 - Lead Loop 05 - PT2 - 140 BPM - Cm0:27118760No Artist2980Tidy2 - Lead Loop 05 - PT3 - 140 BPM - Cm0:27118760No Artist2981Tidy2 - Lead Loop 05 - PT4 - 140 BPM - Cm0:27118760No Artist2982Tidy2 - Lead Loop 06 - PT1 - 140 BPM - Gm0:27118760No Artist2983Tidy2 - Lead Loop 06 - PT2 - 140 BPM - Gm0:27118760No Artist2984Tidy2 - Lead Loop 06 - PT3 - 140 BPM - Gm0:27118760No Artist2985Tidy2 - Lead Loop 06 - PT4 - 140 BPM - Gm0:27118760No Artist2986Tidy2 - Lead Loop 07 - PT1 - 140 BPM - Fm0:27118760No Artist2987Tidy2 - Lead Loop 07 - PT2 - 140 BPM - Fm0:27118760No Artist2988Tidy2 - Lead Loop 07 - PT3 - 140 BPM - Fm0:27118760No Artist2989Tidy2 - Lead Loop 07 - PT4 - 140 BPM - Fm0:27118760No Artist2990Tidy2 - Lead Loop 08 - PT1 - 140 BPM - Bm0:27118760No Artist2991Tidy2 - Lead Loop 08 - PT2 - 140 BPM - Bm0:27118760No Artist2992Tidy2 - Lead Loop 08 - PT3 - 140 BPM - Bm0:27118760No Artist2993Tidy2 - Lead Loop 08 - PT4 - 140 BPM - Bm0:27118760No Artist2994Tidy2 - Lead Loop 09 - PT1 - 140 BPM - F#m0:27118760No Artist2995Tidy2 - Lead Loop 09 - PT2 - 140 BPM - F#m0:27118760No Artist2996Tidy2 - Lead Loop 09 - PT3 - 140 BPM - F#m0:27118760No Artist2997Tidy2 - Lead Loop 09 - PT4 - 140 BPM - F#m0:27118760No Artist2998Tidy2 - Lead Loop 10 - PT1 - 140 BPM - Dm0:27118760No Artist2999Tidy2 - Lead Loop 10 - PT2 - 140 BPM - Dm0:27118760No Artist3000Tidy2 - Lead Loop 10 - PT3 - 140 BPM - Dm0:27118760No Artist3001Tidy2 - Lead Loop 10 - PT4 - 140 BPM - Dm0:27118760No Artist3002Tidy2 - Lead Loop 11 - PT1 - 140 BPM - C#m0:27118760No Artist3003Tidy2 - Lead Loop 11 - PT2 - 140 BPM - C#m0:27118760No Artist3004Tidy2 - Lead Loop 11 - PT3 - 140 BPM - C#m0:27118760No Artist3005Tidy2 - Lead Loop 11 - PT4 - 140 BPM - C#m0:27118760No Artist3006Tidy2 - Lead Loop 12 - PT1 - 140 BPM - F#m0:27118760No Artist3007Tidy2 - Lead Loop 12 - PT2 - 140 BPM - F#m0:27118760No Artist3008Tidy2 - Lead Loop 12 - PT3 - 140 BPM - F#m0:27118760No Artist3009Tidy2 - Lead Loop 12 - PT4 - 140 BPM - F#m0:27118760No Artist3010Tidy2 - Lead Loop 13 - PT1 - 140 BPM - Bm0:27118760No Artist3011Tidy2 - Lead Loop 13 - PT2 - 140 BPM - Bm0:27118760No Artist3012Tidy2 - Lead Loop 13 - PT3 - 140 BPM - Bm0:27118760No Artist3013Tidy2 - Lead Loop 13 - PT4 - 140 BPM - Bm0:27118760No Artist3014Tidy1 - SC Lead Loop 01 - PT1 - 140 BPM - F#m0:27118760No Artist3015Tidy1 - SC Lead Loop 01 - PT2 - 140 BPM - F#m0:27118760No Artist3016Tidy1 - SC Lead Loop 01 - PT3 - 140 BPM - F#m0:27118760No Artist3017Tidy1 - SC Lead Loop 01 - PT4 - 140 BPM - F#m0:27118760No Artist3018Tidy1 - SC Lead Loop 02 - PT1 - 140 BPM - A#m0:27118760No Artist3019Tidy1 - SC Lead Loop 02 - PT2 - 140 BPM - A#m0:27118760No Artist3020Tidy1 - SC Lead Loop 02 - PT3 - 140 BPM - A#m0:27118760No Artist3021Tidy1 - SC Lead Loop 02 - PT4 - 140 BPM - A#m0:27118760No Artist3022Tidy1 - SC Lead Loop 03 - PT1 - 140 BPM - A#m0:27118760No Artist3023Tidy1 - SC Lead Loop 03 - PT2 - 140 BPM - A#m0:27118760No Artist3024Tidy1 - SC Lead Loop 03 - PT3 - 140 BPM - A#m0:27118760No Artist3025Tidy1 - SC Lead Loop 03 - PT4 - 140 BPM - A#m0:27118760No Artist3026Tidy1 - SC Lead Loop 04 - PT1 - 140 BPM - C#m0:27118760No Artist3027Tidy1 - SC Lead Loop 04 - PT2 - 140 BPM - C#m0:27118760No Artist3028Tidy1 - SC Lead Loop 04 - PT3 - 140 BPM - C#m0:27118760No Artist3029Tidy1 - SC Lead Loop 04 - PT4 - 140 BPM - C#m0:27118760No Artist3030Tidy1 - SC Lead Loop 05 - PT1 - 140 BPM - Cm0:27118760No Artist3031Tidy1 - SC Lead Loop 05 - PT2 - 140 BPM - Cm0:27118760No Artist3032Tidy1 - SC Lead Loop 05 - PT3 - 140 BPM - Cm0:27118760No Artist3033Tidy1 - SC Lead Loop 05 - PT4 - 140 BPM - Cm0:27118760No Artist3034Tidy1 - SC Lead Loop 06 - PT1 - 140 BPM - Gm0:27118760No Artist3035Tidy1 - SC Lead Loop 06 - PT2 - 140 BPM - Gm0:27118760No Artist3036Tidy1 - SC Lead Loop 06 - PT3 - 140 BPM - Gm0:27118760No Artist3037Tidy1 - SC Lead Loop 06 - PT4 - 140 BPM - Gm0:27118760No Artist3038Tidy1 - SC Lead Loop 07 - PT1 - 140 BPM - Fm0:27118760No Artist3039Tidy1 - SC Lead Loop 07 - PT2 - 140 BPM - Fm0:27118760No Artist3040Tidy1 - SC Lead Loop 07 - PT3 - 140 BPM - Fm0:27118760No Artist3041Tidy1 - SC Lead Loop 07 - PT4 - 140 BPM - Fm0:27118760No Artist3042Tidy1 - SC Lead Loop 08 - PT1 - 140 BPM - Bm0:27118760No Artist3043Tidy1 - SC Lead Loop 08 - PT2 - 140 BPM - Bm0:27118760No Artist3044Tidy1 - SC Lead Loop 08 - PT3 - 140 BPM - Bm0:27118760No Artist3045Tidy1 - SC Lead Loop 08 - PT4 - 140 BPM - Bm0:27118760No Artist3046Tidy1 - SC Lead Loop 09 - PT1 - 140 BPM - F#m0:27118760No Artist3047Tidy1 - SC Lead Loop 09 - PT2 - 140 BPM - F#m0:27118760No Artist3048Tidy1 - SC Lead Loop 09 - PT3 - 140 BPM - F#m0:27118760No Artist3049Tidy1 - SC Lead Loop 09 - PT4 - 140 BPM - F#m0:27118760No Artist3050Tidy1 - SC Lead Loop 10 - PT1 - 140 BPM - Dm0:27118760No Artist3051Tidy1 - SC Lead Loop 10 - PT2 - 140 BPM - Dm0:27118760No Artist3052Tidy1 - SC Lead Loop 10 - PT3 - 140 BPM - Dm0:27118760No Artist3053Tidy1 - SC Lead Loop 10 - PT4 - 140 BPM - Dm0:27118760No Artist3054Tidy1 - SC Lead Loop 11 - PT1 - 140 BPM - C#m0:27118760No Artist3055Tidy1 - SC Lead Loop 11 - PT2 - 140 BPM - C#m0:27118760No Artist3056Tidy1 - SC Lead Loop 11 - PT3 - 140 BPM - C#m0:27118760No Artist3057Tidy1 - SC Lead Loop 11 - PT4 - 140 BPM - C#m0:27118760No Artist3058Tidy1 - SC Lead Loop 12 - PT1 - 140 BPM - F#m0:27118760No Artist3059Tidy1 - SC Lead Loop 12 - PT2 - 140 BPM - F#m0:27118760No Artist3060Tidy1 - SC Lead Loop 12 - PT3 - 140 BPM - F#m0:27118760No Artist3061Tidy1 - SC Lead Loop 12 - PT4 - 140 BPM - F#m0:27118760No Artist3062Tidy1 - SC Lead Loop 13 - PT1 - 140 BPM - Bm0:27118760No Artist3063Tidy1 - SC Lead Loop 13 - PT2 - 140 BPM - Bm0:27118760No Artist3064Tidy1 - SC Lead Loop 13 - PT3 - 140 BPM - Bm0:27118760No Artist3065Tidy1 - SC Lead Loop 13 - PT4 - 140 BPM - Bm0:27118760No Artist3066Tidy2 - One Shot Lead - Loop 01 F#m0:07118760No Artist3067Tidy2 - One Shot Lead - Loop 02 A#m0:07118760No Artist3068Tidy2 - One Shot Lead - Loop 03 A#m0:07118760No Artist3069Tidy2 - One Shot Lead - Loop 04 C#m0:07118760No Artist3070Tidy2 - One Shot Lead - Loop 05 Cm0:07118760No Artist3071Tidy2 - One Shot Lead - Loop 06 Gm0:07118760No Artist3072Tidy2 - One Shot Lead - Loop 07 Fm0:07118760No Artist3073Tidy2 - One Shot Lead - Loop 08 Bm0:07118760No Artist3074Tidy2 - One Shot Lead - Loop 09 F#m0:07118760No Artist3075Tidy2 - One Shot Lead - Loop 10 Dm0:07118760No Artist3076Tidy2 - One Shot Lead - Loop 11 C#m0:07118760No Artist3077Tidy2 - One Shot Lead - Loop 12 F#m0:07118760No Artist3078Tidy2 - One Shot Lead - Loop 13 Bm0:07118760No Artist3079Tidy2 - Downfiller 010:27118760No Artist3080Tidy2 - Downfiller 020:21118760No Artist3081Tidy2 - Downfiller 030:13118760No Artist3082Tidy2 - Downfiller 040:14118760No Artist3083Tidy2 - Downfiller 050:14118760No Artist3084Tidy2 - Downfiller 060:14118760No Artist3085Tidy2 - Downfiller 070:25118760No Artist3086Tidy2 - Downfiller 080:25118760No Artist3087Tidy2 - Downfiller 090:15118760No Artist3088Tidy2 - Downfiller 100:15118760No Artist3089Tidy2 - Downfiller 110:14118760No Artist3090Tidy2 - Downfiller 120:05118760No Artist3091Tidy2 - Downfiller 130:14118760No Artist3092Tidy2 - Downfiller 140:07118760No Artist3093Tidy2 - Downfiller 150:14118760No Artist3094Tidy2 - FX 010:04118760No Artist3095Tidy2 - FX 020:04118760No Artist3096Tidy2 - FX 030:06118760No Artist3097Tidy2 - FX 040:06118760No Artist3098Tidy2 - FX 050:06118760No Artist3099Tidy2 - FX 060:24118760No Artist3100Tidy2 - FX 070:05118760No Artist3101Tidy2 - FX 080:05118760No Artist3102Tidy2 - FX 090:03118760No Artist3103Tidy2 - FX 100:09118760No Artist3104Tidy2 - FX 110:05118760No Artist3105Tidy2 - FX 120:03118760No Artist3106Tidy2 - FX 130:02118760No Artist3107Tidy2 - FX 140:02118760No Artist3108Tidy2 - FX 150:02118760No Artist3109Tidy2 - FX 160:03118760No Artist3110Tidy2 - FX 170:03118760No Artist3111Tidy2 - FX 180:03118760No Artist3112Tidy2 - FX 190:00118760No Artist3113Tidy2 - FX 200:07118760No Artist3114Tidy2 - FX 210:05118760No Artist3115Tidy2 - FX 220:15118760No Artist3116Tidy2 - FX 230:07118760No Artist3117Tidy2 - FX 240:03118760No Artist3118Tidy2 - Reverb Kick 10:09118760No Artist3119Tidy2 - Reverb Kick 20:09118760No Artist3120Tidy2 - Reverb Kick 30:09118760No Artist3121Tidy2 - Reverb Kick 40:09118760No Artist3122Tidy2 - Reverb Kick 50:09118760No Artist3123Tidy2 - Reverb Kick 60:17118760No Artist3124Tidy2 - Reverb Kick 70:17118760No Artist3125Tidy2 - Reverb Kick 80:14118760No Artist3126Tidy2 - Reverb Kick 90:10118760No Artist3127Tidy2 - Reverb Kick 100:10118760No Artist3128Tidy2 - Reverb Kick 110:10118760No Artist3129Tidy2 - Reverb Kick 120:10118760No Artist3130Tidy2 - Reverb Kick 130:10118760No Artist3131Tidy2 - Reverb Kick 140:10118760No Artist3132Tidy2 - Reverb Kick 150:10118760No Artist3133Tidy2 - Uplifter 010:14118760No Artist3134Tidy2 - Uplifter 020:12118760No Artist3135Tidy2 - Uplifter 030:12118760No Artist3136Tidy2 - Uplifter 040:14118760No Artist3137Tidy2 - Uplifter 050:07118760No Artist3138Tidy2 - Uplifter 060:15118760No Artist3139Tidy2 - Uplifter 070:25118760No Artist3140Tidy2 - Uplifter 080:14118760No Artist3141Tidy2 - Uplifter 090:14118760No Artist3142Tidy2 - Uplifter 100:14118760No Artist3143Tidy2 - Uplifter 110:15118760No Artist3144Tidy2 - Uplifter 120:27118760No Artist3145Tidy2 - Uplifter 130:14118760No Artist3146Tidy2 - Uplifter 140:14118760No Artist3147Tidy2 - Uplifter 150:10118760No Artist3148Tidy2 - Vox Dry - Loop 01 - 140 BPM - M0:10118760No Artist3149Tidy2 - Vox Dry - Loop 02 - 140 BPM - G#m0:10118760No Artist3150Tidy2 - Vox Dry - Loop 03 - 140 BPM - C#m0:10118760No Artist3151Tidy2 - Vox Dry - Loop 04 - 140 BPM - A#m0:10118760No Artist3152Tidy2 - Vox Dry - Loop 05 - 140 BPM - A#0:10118760No Artist3153Tidy2 - Vox Dry - Loop 06 - 140 BPM - B0:10118760No Artist3154Tidy2 - Vox Dry - Loop 07 - 140 BPM - A#m0:10118760No Artist3155Tidy2 - Vox Dry - Loop 08 - 140 BPM - G0:10118760No Artist3156Tidy2 - Vox Dry - Loop 09 - 140 BPM - B0:10118760No Artist3157Tidy2 - Vox Dry - Loop 10 - 140 BPM - C0:10118760No Artist3158Tidy2 - Vox Wet - Loop 01 - 140 BPM - M0:10118760No Artist3159Tidy2 - Vox Wet - Loop 02 - 140 BPM - G#m0:10118760No Artist3160Tidy2 - Vox Wet - Loop 03 - 140 BPM - C#m0:10118760No Artist3161Tidy2 - Vox Wet - Loop 04 - 140 BPM - A#m0:10118760No Artist3162Tidy2 - Vox Wet - Loop 05 - 140 BPM - A#0:10118760No Artist3163Tidy2 - Vox Wet - Loop 06 - 140 BPM - B0:10118760No Artist3164Tidy2 - Vox Wet - Loop 07 - 140 BPM - A#m0:10118760No Artist3165Tidy2 - Vox Wet - Loop 08 - 140 BPM - G0:10118760No Artist3166Tidy2 - Vox Wet - Loop 09 - 140 BPM - B0:10118760No Artist3167Tidy2 - Vox Wet - Loop 10 - 140 BPM - C0:10118760No Artist3168Tidy2 - Vox Shot 010:03118760No Artist3169Tidy2 - Vox Shot 020:03118760No Artist3170Tidy2 - Vox Shot 030:03118760No Artist3171Tidy2 - Vox Shot 040:03118760No Artist3172Tidy2 - Vox Shot 050:03118760No Artist3173Tidy2 - Vox Shot 060:03118760No Artist3174Tidy2 - Vox Shot 070:03118760No Artist3175Tidy2 - Vox Shot 080:03118760No Artist3176Tidy2 - Vox Shot 090:03118760No Artist3177Tidy2 - Vox Shot 100:03118760No Artist3178Tidy2 - Vox Shot 110:03118760No Artist3179Tidy2 - Vox Shot 120:03118760No Artist3180Tidy2 - Vox Shot 130:03118760No Artist3181Tidy2 - Vox Shot 140:03118760No Artist3182Tidy2 - Vox Shot 150:03118760No Artist3183Tidy2 - Vox Shot 160:03118760No Artist3184Tidy2 - Vox Shot 170:03118760No Artist3185Tidy2 - Vox Shot 180:03118760No Artist3186Tidy2 - Vox Shot 190:03118760No Artist3187Tidy2 - Vox Shot 200:03118760No Artist3188Tidy2 - Vox Shot 210:03118760No Artist3189Tidy2 - Vox Shot 220:03118760No Artist3190Tidy2 - Vox Shot 230:03118760No Artist3191Tidy2 - Heavens Cry 10:04118760No Artist3192Tidy2 - Heavens Cry 20:06118760No Artist3193Tidy2 - Heavens Cry 30:06118760No Artist3194Tidy2 - Heavens Cry 40:06118760No Artist3195Tidy2 - Heavens Cry 50:07118760No Artist3196Tidy2 - Jon Bishop - Stalker0:3338228Jon Bishop3197Tidy2 - Kym Ayres - More And More0:59495100Kym Ayres3198Tidy2 - Lisa Lashes - What Can You Do 4 Me1:4618435Lisa Lashes3199Tidy2 - Paul Maddox Vs Sam & Deano - Nut Job Vox 10:1549155Paul MaddoxVs1636952Sam & Deano3200Tidy2 - Paul Maddox Vs Sam & Deano - Nut Job Vox 20:2849155Paul MaddoxVs1636952Sam & Deano04 Tidy Sample Packs\Vox & Stuff320120000 Hardcore Members0:04118760No Artist3202Cerca Trova Vox0:46233533Amber DFeat.807541Stacey KitsonStace3203And You Thought It Was Over0:03118760No Artist3204Are You All Ready0:02118760No Artist3205Black Is Black Vox0:01118760No Artist3206Breather Vox1:11118760No Artist3207Coming At You0:13118760No Artist3208Crank It Up Let The Bass Be Louder0:02118760No Artist3209Cuz The House Gets Warm0:01118760No Artist3210Dicks Mums Dead0:08118760No Artist3211Do It0:01118760No Artist3212Dont Believe0:01118760No Artist3213Dreamer Stab0:03118760No Artist3214Dreamer Vocal0:09118760No Artist3215Endagered Vocals0:28118760No Artist3216Feel So Good Vocals0:15118760No Artist3217Future Is Ours0:03118760No Artist3218Good Evening0:02118760No Artist3219Good Evening Everyone0:03118760No Artist3220Good Morning Andy0:06118760No Artist3221Hardcore Power0:02118760No Artist3222HC Broken Heart0:05118760No Artist3223HC Come Back Or Bad0:03118760No Artist3224HC I Dont Know0:06118760No Artist3225HC Oooo I Want To Want You0:07118760No Artist3226HC Want You0:04118760No Artist3227Hey Babe What Would Like To Hear0:02118760No Artist3228Honey Rap 10:03118760No Artist3229Honey Rap 20:03118760No Artist3230Hoover0:07118760No Artist3231Im Mad0:03118760No Artist3232Its About Music0:24118760No Artist3233Stalker Vox0:3338228Jon Bishop3234More And More Edit0:19495100Kym Ayres3235What Can You Do 4 Me1:4618435Lisa Lashes3236Looking Good 10:02118760No Artist3237Looking Good 20:02118760No Artist3238Looking Good 30:02118760No Artist3239Looking Good 40:02118760No Artist3240Looking Good 50:04118760No Artist3241Feeling Vox0:27489554Faysal MatarMatar3242Such A Good Feeling0:37156712Miss Behavin'3243Music Is The Drug Riff 1470:18118760No Artist3244Music Is The Drug Vocal 1470:18118760No Artist3245New York Vocals1:29118760No Artist3246On Two Turns Stretch Vox0:03118760No Artist3247Once Upon A Time Vocal0:18118760No Artist3248One Two Three And0:03118760No Artist3249Only Is I Had One More0:02118760No Artist3250Only Me Vocals0:11118760No Artist3251I Need To Know Vox0:5418360Paul Glazby3252Real Freaks0:02118760No Artist3253Ripped Out Riff 1470:18118760No Artist3254Rock The Floor Loop0:07118760No Artist3255Rock With Me0:03118760No Artist3256Scratchin To The Funk In 19850:04118760No Artist3257SeriousSoundRiff1470:12118760No Artist3258Smokin Bert 10:15118760No Artist3259Smokin Bert 20:14118760No Artist3260Smokin Bert 30:15118760No Artist3261Smokin Bert Just Getting Warm0:12118760No Artist3262So Much To Do0:02118760No Artist3263Stay Vocal0:54118760No Artist3264Sundown Vox Fx0:163631Rob Tissera3265Thinking About You0:04118760No Artist3266Tidy Boys At Home 10:09118760No Artist3267Tidy Boys At Home 20:10118760No Artist3268Tidy Boys At Home 30:10118760No Artist3269Tidy Boys Not One But 20:03118760No Artist3270Unbelievabley Shit0:13118760No Artist3271Unfucking Believeable0:03118760No Artist3272Fine Night Featuring Emma Lock1:31118760No Artist3273Vocal Whizzkid 20:2611712Untidy Dubs3274Vocal Whizzkid Chopped0:07118760No Artist3275What Would Like To Hear Agin0:01118760No Artist3276Woo Vocal0:07118760No Artist3277You'll Know It Riff 1470:16118760No Artist05 Special BitsExtra Nice Stuff3278Black Is Black (BK Unreleased Remix)7:5915366Allnighters3279Black Is Black (Choccis Acid Mix)7:0115366Allnighters3280Real Freaks (The Hoodlums Unreleased Remix)7:0921059Anne Savage3281Bits & Pieces (D-Bops Unreleased Remix)7:371686Artemesia3282Do It Now (Lisa Pin Up Remix)7:2412764Brain Bashers3283Bamboozled (Untidy Dub)9:052782Candy J3284This Is Tidy (Part 1)8:32971460Dave Curtis (4)3285This Is Tidy (Part 2)8:21971460Dave Curtis (4)3286Blue Skies (Hyperlogic Remix, USA Only Release)8:0316293Evolver3287Dead Or Alive (Dub)8:3921472Flash Harry3288The Fear (Unrealesed Track)7:0712747Ground Zero3289Only Me '97 (Tidy Boys Banned Bootleg Mix)9:001687Hyperlogic3290U Got The Love (Demo, Original Vocal)6:521687Hyperlogic3291U Got The Love (Lee Haslams Unreleased Remix)7:071687Hyperlogic3292U Got The Love (Mondo's Poolside Pumper Instrumental)8:201687Hyperlogic3293Imagination (Hard House Re-work Instrumental)8:4441595Jon The Dentist & Ollie Jaye3294Turntablism (The Tidy DJs Ass Scratching Remix)7:1920176Organ Donors3295Malace In Wonderland (JP & Jukesey Remix)9:3725830Pants & Corset3296Mesmerized (Rob Tissera & Technikal Remix)8:3249155Paul Maddox3297Ripped Out (Guyver Remix)7:47152999The Riot BrothersRiotBrothers3298Pressure (Original Mix)6:334629Signum3299Coming On Strong (Double Dee Remix)9:444629SignumFeat38222Scott Mac3300U Found Out (Original Unreleased Extended Mix)7:53253949The Handbaggers3301U Found Out (Tom Wilson Dub)3:55253949The Handbaggers3302U Found Out (Tom Wilson Radio Edit)3:36253949The Handbaggers3303Give It All You've Got (Klubbheads Remix)7:1163650The Originator3304Tidy Chill - Restless (Flash Harry's Late Night Interpretation)5:091680JXUnreleased Demos3305Jack Of Klubz (Tidy Boys Unfinished Demo Version)6:4940042Barabas & OD13306Look At U (Unfinished Demo 96)4:59253949The HandbaggersHandbaggers3307In Love With U (Unreleased Demo)8:341687Hyperlogic3308We Use To Party (Unreleased First Demo 1994)2:281687Hyperlogic&32216Steve Edwards3309Unnamed (Demo)8:1318435Lisa LashesVs20958Ingo3310All This Love (Unreleased Demo For Tidy Girls EP)8:238339Lisa Pin-Up3311Caramba (Stupid Demo Concept 96)3:2825831Tidy Boys3312Tidy Boys Disco Dub (Unrealeased Unfinished Demo)3:42355Unknown ArtistTidy Boys Bits3313Big Night Out Easy Break1:38355Unknown Artist3314BK & Tidy Boys All Alone 140bpm Alternate Version8:31355Unknown Artist3315BK & Tidy Boys All Alone 150bpm Main Version9:02355Unknown Artist3316Classic Tidy Boys Weekender Intro1:43355Unknown Artist3317Dusty Bin3:05355Unknown Artist3318Holidays Are Coming Original Master1:05355Unknown Artist3319Original Tidy Boys Danger Opening (Weekender)5:01355Unknown Artist3320Pretend Plumbers Theme0:37355Unknown Artist3321Sonic Stylophone0:11355Unknown Artist3322Stimulator Casio0:31355Unknown Artist3323Techno DJ In The Bath Jingle0:21355Unknown Artist3324Tidy Addict TV AD Bedding0:34355Unknown Artist3325Tidy Boys Big Night Out Intro - Unused1:40355Unknown Artist3326Tidy Boys Christmas Weekender Last 10 Minutes9:41355Unknown Artist3327Tidy Boys Generator Intro (2000)1:28355Unknown Artist3328Tidy Boys Meet Nick Frost10:54355Unknown Artist3329Tidy Boys Mindblowing Xmas Intro8:49355Unknown Artist3330Tidy Boys NYE Intro2:32355Unknown Artist3331Tidy Boys Original First Intro Seq (1999)1:19355Unknown Artist3332Tidy Boys Podcast Opener0:59355Unknown Artist3333Tidy Boys Tidy Weekender 5 Friday Intro (2004)5:44355Unknown Artist3334Tidy Boys Tidy Weekender 9 (Pirates Of Prestatyn Intro)5:23355Unknown Artist3335Tidy Boys Tidy Weekender Reunion Intro (2011)9:37355Unknown Artist3336Tidy Boys Tidy Wild West Weekender Intro (TW8)9:38355Unknown Artist3337TW2 Wedding March Bounceathon0:51355Unknown Artist3338TW12 Promo DVD Sound Track7:20355Unknown Artist3339We Know The Way0:07355Unknown Artist3340When Your Husbands Away0:04355Unknown Artist3341You Are Watching Tidy TV Sting0:21355Unknown Artist3342You Are Watching Tidy TV TW5 Version0:20355Unknown ArtistTDV Tracks3343Bring The Beat Back9:025531Tony De Vit3344Burning Up7:485531Tony De Vit3345Don't Stop9:375531Tony De Vit3346Feel The Love8:365531Tony De Vit3347Get Loose7:125531Tony De Vit3348I Don't Care9:315531Tony De Vit3349I Need Luvin8:545531Tony De Vit3350Resistance Is Futile8:345531Tony De Vit3351The Pill6:085531Tony De Vit3352To The Limit9:245531Tony De Vit3353Feel My Love (Don't Go Away)8:505531Tony De Vit + +107784Frankie ValliAnd121112The Four SeasonsWorking Our Way Back To You (The Ultimate Collection)11473850Ken CharmerAdvisor [Master Track Advisor]354542Artie SchroeckArranged By142834Bob CreweArranged By225965Bob GaudioArranged By154498Charlie CalelloCharles CalelloArranged By517411Lee ShapiroArranged By708557Nick MassiArranged By745297Rachel GutekArt Direction, Design775858Paul SextonAuthor [Main Book]154498Charlie CalelloCharles CalelloBacking Vocals2945447Craig CadyBacking Vocals13073844Joseph Ott (2)Backing Vocals4615876Abo GumroyanBass13073847Alfredo Lopez (2)Bass154498Charlie CalelloCharles CalelloBass6231681Christian Haller (3)Chris HallerBass1127621Don CicconeBass865440Edwin LivingstonBass6229887Eric SittnerBass1175029Harvey Auger Jr.Harvey AugerBass3201896Joe Long (4)Bass903290John MenzanoBass1489948John PaivaBass5883446Keith HubacherBass708557Nick MassiBass532763Rex RobinsonBass1260923Steve Warren (3)Bass13073853Wil Roberts (2)Bass305083Bob FisherCompilation Producer [Box Set Producer]906347Ian CrockettConcept By1099685Gerry PolciDrum Programming762401Andy SanesiDrums2178069Chuck Wilson (4)Drums3905955Craig PiloDrums13073856Daniel Donnelly (3)Drums558885Dave SpurrDrums296277David LogemanDave LogemanDrums306264Gary MallaberDrums13073859Gary Wolfe (3)Drums1099685Gerry PolciDrums1439208Joe CassDrums3261620Lynn HammannDrums13073862Paul Wilson (63)Drums1145773Ron TiernoDrums13073865Ronald RoachDrums13073868Ronnie CarangeloDrums6732953Frederick JudeExecutive-Producer378329Rick KellerFlute151486Adrian BakerGuitar395349Basil FungGuitar225965Bob GaudioGuitar306023Bob GrimmGuitar1921539Bob SoboGuitar386548Carmen GrilloGuitar2093741Demetri CallasGuitar1127621Don CicconeGuitar3857894Fino RoveratoGuitar449046Gary MelvinGuitar13073871James ArentGuitar1123200Jamie KimeGuitar1489948John PaivaGuitar3203047John Schroeder (7)Guitar5651189Larry EsparzaGuitar463081Larry LingleGuitar3548027Matt BaldoniGuitar12782858Robbie AngelucciGuitar2143203Steve Gregory (7)Guitar1145774Timothy J. BreenTim BreenGuitar1099682Tommy DeVitoGuitar4375372Yarone LevyGuitar1934008Richard NatoliHorns394509Al GorgoniInterviewee151384Albhy GalutenInterviewee252539Andrew Loog OldhamInterviewee2036157Angelo CifelliAngelo "Chubby" CifelliInterviewee151481Barry GibbInterviewee137418Billy JoelInterviewee142834Bob CreweInterviewee225965Bob GaudioInterviewee189718Brian WilsonInterviewee154498Charlie CalelloInterviewee1020483Eddie RambeauInterviewee107784Frankie ValliInterviewee541024Jake HolmesInterviewee3201896Joe Long (4)Interviewee1489948John PaivaInterviewee151396Karl RichardsonInterviewee142835Kenny NolanInterviewee533193L. Russell BrownInterviewee327751Larry SantosInterviewee517411Lee ShapiroInterviewee254958Liberty DeVittoInterviewee290019Maurice GibbInterviewee635561Mike PetrilloInterviewee306898Peggy SantigliaInterviewee153544Sandy LinzerInterviewee233933Steve Van ZandtStevie Van ZandtInterviewee1099682Tommy DeVitoInterviewee1688733Ken SharpInterviewer809711Al RuzickaKeyboards393019Bill DeLoachKeyboards225965Bob GaudioKeyboards514528Clay JordanKeyboards1341150Howard LaraveaKeyboards267556Jerry CorbettaKeyboards517411Lee ShapiroKeyboards196875Mitchel FormanMitch FormanKeyboards375043Nathalie ArchangelNatalie ArchangelKeyboards2373863Richard CallaciRich CallaciKeyboards378329Rick KellerKeyboards262294Robby RobinsonKeyboards3922054Robin SwensonKeyboards3782787Sandro RebelKeyboards449273Tim Stone (2)Keyboards1685483Bob Fisher (5)Liner Notes [Collectors Notes]925545George IngramLiner Notes [Collectors Notes]11473850Ken CharmerLiner Notes [Collectors Notes]3201896Joe Long (4)MC [Emcee]1674015Cliff DaneManagement [Commercial]13073874Alan CowdellManagement [Sales]4085314Richard WearsManagement [Sales]498447Peter J. ReynoldsPete ReynoldsMastered By517411Lee ShapiroMusic Director2373863Richard CallaciRich CallaciMusic Director262294Robby RobinsonMusic Director354542Artie SchroeckPercussion142834Bob CrewePercussion13073877Brian Brock (2)Percussion1097174Christian MoragaPercussion2178069Chuck Wilson (4)Percussion1102235Fausto Cuevas IIIFausto CuevasPercussion410234Richie Gajate-GarciaRichie "Gajate" GarciaPercussion378329Rick KellerPercussion430666Thomas AlvoradoTommy AlvoradoPercussion2245977AlamyAlamy Stock PhotoPhotography By1304869George SchowererPhotography By2155159Stephen MorleyPhotography By13073880Zuma Press, Inc.Photography By142834Bob CreweProducer225965Bob GaudioProducer3944227Richard BeechingProduction Manager906348Johnny WilksPromotion [Marketing]305448Bill InglotResearch [Tape Research]498447Peter J. ReynoldsPete ReynoldsRestoration [Audio Restoration]13073883Ed Wynn (3)Saxophone3440644Eric TewaltSaxophone757355Jerry VivinoSaxophone378329Rick KellerSaxophone430666Thomas AlvoradoTommy AlvoradoSaxophone419412Warren HamSaxophone443120Stuart BatsfordSupervised By [Content Supervisor]13073886Morgan Winters (3)Synthesizer [Synthclavier]424630Alex HendersonTrombone342236Harry KimTrumpet3932981John Stefan (2)Trumpet13073889Aaron Gordon (5)Vocals151486Adrian BakerVocals809711Al RuzickaVocals13073892Andy Tyler (3)Vocals13073895BB CrossVocals393019Bill DeLoachVocals142834Bob CreweVocals225965Bob GaudioVocals306023Bob GrimmVocals13073898Bobby Hudson (7)Vocals13073901Brad Sharp (3)Vocals13073904Brandon BrighamVocals7895877Brian BrighamVocals281927Bunny HullVocals796925Chris FordeVocals514528Clay JordanVocals6432724Craig MeyerVocals2093741Demetri CallasVocals1127621Don CicconeVocals5046992Don Lucas (2)Vocals12156337Erik BatesVocals107784Frankie ValliVocals1099685Gerry PolciVocals1386200Greg WhippleVocals1341150Howard LaraveaVocals13073907Jason Martinez (6)Vocals267556Jerry CorbettaVocals3201896Joe Long (4)Vocals1489948John PaivaVocals2511710Landon BeardVocals3261620Lynn HammannVocals131879Maxi AndersonVocals375043Nathalie ArchangelNatalie ArchangelVocals708557Nick MassiVocals2511716Noah RiveraVocals13073910Ray Reynolds (6)Vocals532763Rex RobinsonVocals13073913Ronen BeyVocals13073916Sandra ChrissVocals449273Tim Stone (2)Vocals4082094Tobee TylerVocals1246786Todd FournierVocals1099682Tommy DeVitoVocals400283Tony WalthersVocals13073919Val Martinez (3)VocalsCompilationAlbumReissueRemasteredStereoMonoAlbumReissueRemasteredStereoCompilationReissueRemasteredStereoAlbumRemasteredMonoCompilationRemasteredStereoMonoAlbumRemasteredStereoCompilationRemasteredStereoLPAlbumRemasteredMonoElectronicRockPopUK2023-06-02Barcode and catalogue number on the promo sticker + +Limited to 2500 copies + +CD1 to CD18, CD23 to CD34, Tracks 38-10, 38-11 and 38-12, CD40 to CD44 courtesy of Bob Gaudio and Frankie Valli d/b/a The Four Seasons partnership, by arrangement with Rhino Entrainment Group Company +CD19 to CD22 and CD39 courtesy of UMG Recordings, Inc. +CD35 to CD37 and Tracks 38-1 to 38-9 courtesy of Curb Records, Inc. + +Tracks 1-29 & 1-30 licensed courtesy of BBC +Track 3-27 courtesy of the Tommy DeVito archive. + +CD1 to CD18, CD23 to CD34, CD40 to CD44 ℗ 2023 Bob Gaudio and Frankie Valli d/b/a The Four Seasons partnership, by arrangement with Rhino Entertainment Company, a Warner Music Group Company. +CD19 to CD22 ℗ 2023 Courtesy of UMG Recordings, Inc. +CD35 to CD37 ℗ 2023 Curb Records, Inc. +CD38 ℗ 2023 Snapper Music Ltd +CD39 ℗ 2023 Universal Motown Records, A Division of UMG Recordings, Inc. + +CD1 track 25 © 1961 CD1, CD2, CD3 © 1962, CD4 © 1963 CD5, CD6, CD7 © 1964, CD8, CD9, CD10 © 1965, CD11, CD19 © 1966, CD12, CD13, CD19 © 1967, CD14, CD15, CD19 © 1968, CD16, CD17, CD19 © 1969, CD18, CD19 © 1970, CD19 © 1971, CD23, CD24, CD25 © 1975, CD26 © 1976, CD27, CD28 © 1977, CD29 © 1978, CD31, CD32 © 1981, CD33 © 1985, CD44 © 2016, CD40 © 2016, CD30, CD34, CD41, CD42, CD43 © 2023 Bob Gaudio and Frankie Valli d/b/a The Four Seasons partnership, by arrangement with Rhino Entertainment Company, a Warner Music Group Company. +CD20 © 1972, CD21 © 1975, CD22 © 2023 Courtesy of UMG Recordings +CD35 © 1992, CD36 © 1993, CD37 © 1995 Curb Records, Inc. +CD38 © 2023 Snapper Music Ltd. +CD39 © 2007 Universal Motown Records, A Division of UMG Recordings, Inc. + +"You Can't Hold On" (Track 22-11, 22-18, 22-21) "written by" Copyright Control. +"Joy To The World / Do You Hear What I Hear?" (Track 40-1), "O Come All Ye Faithful / Angels We Have Heard On High" (Track 40-12) and "We Wish You A Merry Christmas" (Track 40-13) are Public Domain + +The book credits Track 34-12 to Frankie Valli and Nancy Griffin at one point, but the correct artist Frankie Valli and Mary Griffin is also used.Needs Vote0The 4 Seasons - Sherry & 11 Others (Mono)1-1Big Girls Don't Cry2:25121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By1-2Yes Sir, That's My Baby2:21121112The Four SeasonsThe 4 Seasons505455Gus KahnWritten-By612651Walter DonaldsonWritten-By1-3Peanuts2:20121112The Four SeasonsThe 4 Seasons1682381J. Lawrence CookWritten-By1-4La Dee Dah2:34121112The Four SeasonsThe 4 Seasons5118752Slay & CreweBob Crewe / Frank SlayWritten-By1-5Teardrops2:16121112The Four SeasonsThe 4 Seasons884124Barry GolderBarry GoldnerWritten-By884130Edwin CharlesWritten-By2043353Edwin StanleyWritten-By884129Roy CalhounWritten-By1-6Apple Of My Eye2:15121112The Four SeasonsThe 4 Seasons294300Otis BlackwellWritten-By1-7Never On Sunday2:49121112The Four SeasonsThe 4 Seasons595616Billy TowneWritten-By505454Manos HadjidakisWritten-By1-8I Can't Give You Anything But Love2:17121112The Four SeasonsThe 4 Seasons941280Jimmy McHugh & Dorothy FieldsDorothy Fields / Jimmy McHughWritten-By1-9The Girl In My Dreams2:19121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By3922054Robin SwensonWritten-By1-10Oh Carol2:26121112The Four SeasonsThe 4 Seasons1630280Greenfield & SedakaHoward Greenfield / Neil SadakaWritten-By1-11Lost Lullabye2:34121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By1-12Sherry2:30121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByThe 4 Seasons - Sherry & 11 Others (Stereo)1-13Big Girls Don't Cry2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By1-14Yes Sir, That's My Baby2:21121112The Four SeasonsThe 4 Seasons505455Gus KahnWritten-By612651Walter DonaldsonWritten-By1-15Peanuts2:20121112The Four SeasonsThe 4 Seasons1682381J. Lawrence CookWritten-By1-16La Dee Dah2:35121112The Four SeasonsThe 4 Seasons5118752Slay & CreweBob Crewe / Frank SlayWritten-By1-17Teardrops2:16121112The Four SeasonsThe 4 Seasons884124Barry GolderBarry GoldnerWritten-By884130Edwin CharlesWritten-By2043353Edwin StanleyWritten-By884129Roy CalhounWritten-By1-18Apple Of My Eye2:15121112The Four SeasonsThe 4 Seasons294300Otis BlackwellWritten-By1-19Never On Sunday2:48121112The Four SeasonsThe 4 Seasons595616Billy TowneWritten-By505454Manos HadjidakisWritten-By1-20I Can't Give You Anything But Love2:15121112The Four SeasonsThe 4 Seasons941280Jimmy McHugh & Dorothy FieldsDorothy Fields / Jimmy McHughWritten-By1-21The Girl In My Dreams2:18121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By3922054Robin SwensonWritten-By1-22Oh Carol2:23121112The Four SeasonsThe 4 Seasons1630280Greenfield & SedakaHoward Greenfield / Neil SedakaWritten-By1-23Lost Lullabye2:33121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By1-24Sherry2:29121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByBonus Tracks1-25Trance (Live Demo, From Acetate)2:11121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By1-26Bermuda (Mono)2:15121112The Four SeasonsThe 4 Seasons3389512Cynthia StrotherWritten-By6123948Eugene R. StrotherWritten-By1-27Spanish Lace (Mono)2:16121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By1-28I've Cried Before (Mono 45)2:21121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By1-29Ain't That A Shame (BBC 'Saturday Club')2:17121112The Four SeasonsThe 4 Seasons320620Dave BartholomewWritten-By309140Fats DominoAntoine 'Fats' DominoWritten-By1-30Big Girls Don't Cry (BBC 'Saturday Club')2:14121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By1-31Sherry ('Golden Hits' Version)2:34121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By1-32That's You (Original Version Of 'Like You', Demo, From Acetate)2:12121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByThe 4 Seasons - Four Seasons Greetings (Mono)2-1Merry Christmas Medley4:26121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By638716Charles WesleyWritten-By638736Edmund SearsWritten-By931721James Montgomery (3)Written-By2-2What Child Is This2:27121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By717326William Chatterton DixWritten-By2-3The Carol Of The Bells1:22121112The Four SeasonsThe 4 Seasons154498Charlie CalelloCharles CalelloArranged By845430Mykola LeontovychWritten-By739303Peter WilhouskyWritten-By151641TraditionalWritten-By2-4The Excelcis Deo Medley1:57121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By2035029Thomas OliphantWritten-By2-5The Little Drummer Boy2:18121112The Four SeasonsThe 4 Seasons466270Harry SimeoneWritten-By697563Henry OnoratiWritten-By648251Katherine K. DavisKatherine Kennicott DavisWritten-By2-6The First Christmas Night Medley4:46121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By638732Adolphe C. AdamAdolphe AdamWritten-By595046Franz GruberFranz Xavier GruberWritten-By632100Joseph MohrWritten-By2482325Placide CappeauWritten-By2-7Joy To The World Medley3:10121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By655221Isaac WattsWritten-By2-8Santa Claus Is Coming To Town1:47121112The Four SeasonsThe 4 Seasons583502Haven GillespieWritten-By583506J. Fred CootsJohn Frederick CootsWritten-By2-9Christmas Tears2:42121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By588115Sid BassWritten-By2-10I Saw Mommy Kissing Santa Claus2:11121112The Four SeasonsThe 4 Seasons603736Tommie ConnorWritten-By2-11The Christmas Song2:16121112The Four SeasonsThe 4 Seasons152707Mel TorméWritten-By636384Robert Wells (2)Written-By2-12Jungle Bells2:51121112The Four SeasonsThe 4 Seasons588115Sid BassWritten-By2-13White Christmas2:16121112The Four SeasonsThe 4 Seasons508131Irving BerlinWritten-ByThe 4 Seasons - Four Seasons Greetings (Stereo)2-14Merry Christmas Medley4:26121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By638716Charles WesleyWritten-By638736Edmund SearsWritten-By931721James Montgomery (3)Written-By2-15What Child Is This2:27121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By717326William Chatterton DixWritten-By2-16The Carol Of The Bells1:22121112The Four SeasonsThe 4 Seasons154498Charlie CalelloCharles CalelloArranged By845430Mykola LeontovychWritten-By739303Peter WilhouskyWritten-By151641TraditionalWritten-By2-17The Excelcis Deo Medley1:57121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By2035029Thomas OliphantWritten-By2-18The Little Drummer Boy2:18121112The Four SeasonsThe 4 Seasons466270Harry SimeoneWritten-By697563Henry OnoratiWritten-By648251Katherine K. DavisKatherine Kennicott DavisWritten-By2-19The First Christmas Night Medley4:46121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By638732Adolphe C. AdamAdolphe AdamWritten-By595046Franz GruberFranz Xavier GruberWritten-By632100Joseph MohrWritten-By2482325Placide CappeauWritten-By2-20Joy To The World Medley3:10121112The Four SeasonsThe 4 Seasons588115Sid BassArranged By655221Isaac WattsWritten-By2-21Santa Claus Is Coming To Town1:46121112The Four SeasonsThe 4 Seasons583502Haven GillespieWritten-By583506J. Fred CootsJohn Frederick CootsWritten-By2-22Christmas Tears2:42121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By588115Sid BassWritten-By2-23I Saw Mommy Kissing Santa Claus2:12121112The Four SeasonsThe 4 Seasons603736Tommie ConnorWritten-By2-24The Christmas Song2:17121112The Four SeasonsThe 4 Seasons152707Mel TorméWritten-By636384Robert Wells (2)Written-By2-25Jungle Bells2:53121112The Four SeasonsThe 4 Seasons588115Sid BassWritten-By2-26White Christmas2:17121112The Four SeasonsThe 4 Seasons508131Irving BerlinWritten-ByThe 4 Seasons - Big Girls Don't Cry And Twelve Others (Mono)3-1Walk Like A Man2:13121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-2Silhouettes3:01121112The Four SeasonsThe 4 Seasons5118752Slay & CreweBob Crewe / Frank SlayWritten-By3-3Why Do Fools Fall In Love2:09121112The Four SeasonsThe 4 Seasons308654Frankie LymonWritten-By363446George GoldnerWritten-By3-4Tonite, Tonite2:06121112The Four SeasonsThe 4 Seasons4189336William NoblesWritten-By3-5Lucky Ladybug2:41121112The Four SeasonsThe 4 Seasons5118752Slay & CreweBob Crewe / Frank SlayWritten-By3-6Alone2:48121112The Four SeasonsThe 4 Seasons1199196Morton & Selma CraftSelma Craft / Morty CraftWritten-By3-7One Song2:25121112The Four SeasonsThe 4 Seasons491152Frank ChurchillWritten-By682453Larry MoreyWritten-By3-8Sincerely2:50121112The Four SeasonsThe 4 Seasons598246Alan FreedWritten-By32499Harvey FuquaWritten-By3-9Since I Don't Have You2:31121112The Four SeasonsThe 4 Seasons783302Janet VogelWritten-By655828Jimmy BeaumontJames BeaumontWritten-By754527Joe RockJoseph RockWritten-By853272John Taylor (15)Jackie TaylorWritten-By783307Joseph VerscharenJoe VerscharenWritten-By783300Lennie MartinWritten-By1718965Wally LesterWritten-By3-10My Sugar2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-11Hi-Lili, Hi-Lo2:22121112The Four SeasonsThe 4 Seasons715404Bronislaw KaperBronislau KaperWritten-By715403Helen DeutschWritten-By3-12Big Girls Don't Cry2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-13Goodnight My Love3:05121112The Four SeasonsThe 4 Seasons633388George MotolaWritten-By467532John MarascalcoJohn S. MarassalcoWritten-ByThe 4 Seasons - Big Girls Don't Cry And Twelve Others (Stereo)3-14Walk Like A Man2:13121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-15Silhouettes3:01121112The Four SeasonsThe 4 Seasons5118752Slay & CreweBob Crewe / Frank SlayWritten-By3-16Why Do Fools Fall In Love2:09121112The Four SeasonsThe 4 Seasons308654Frankie LymonWritten-By363446George GoldnerWritten-By3-17Tonite, Tonite2:06121112The Four SeasonsThe 4 Seasons4189336William NoblesWritten-By3-18Lucky Ladybug2:41121112The Four SeasonsThe 4 Seasons5118752Slay & CreweBob Crewe / Frank SlayWritten-By3-19Alone2:48121112The Four SeasonsThe 4 Seasons1199196Morton & Selma CraftSelma Craft / Morty CraftWritten-By3-20One Song2:25121112The Four SeasonsThe 4 Seasons491152Frank ChurchillWritten-By682453Larry MoreyWritten-By3-21Sincerely2:50121112The Four SeasonsThe 4 Seasons598246Alan FreedWritten-By32499Harvey FuquaWritten-By3-22Since I Don't Have You2:31121112The Four SeasonsThe 4 Seasons783302Janet VogelWritten-By655828Jimmy BeaumontJames BeaumontWritten-By754527Joe RockJoseph RockWritten-By853272John Taylor (15)Jackie TaylorWritten-By783307Joseph VerscharenJoe VerscharenWritten-By783300Lennie MartinWritten-By1718965Wally LesterWritten-By3-23My Sugar2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-24Hi-Lili, Hi-Lo2:22121112The Four SeasonsThe 4 Seasons715404Bronislaw KaperBronislau KaperWritten-By715403Helen DeutschWritten-By3-25Big Girls Don't Cry2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-26Goodnight My Love3:05121112The Four SeasonsThe 4 Seasons633388George MotolaWritten-By467532John MarascalcoJohn S. MarassalcoWritten-ByBonus Tracks3-27I Am All Alone (Live Demo, From Acetate)2:38121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By3-28Like You (Organ Version, From Acetate)2:34121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By3-29Connie-O (Mono 45)2:25121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-30Big Girls Don't Cry (Mono 45)2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By3-31Connie-O (Alternate Stereo Mix)2:25121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByThe 4 Seasons - Sing Ain't That A Shame And 11 Others (Mono)4-1Candy Girl2:36121112The Four SeasonsThe 4 Seasons327751Larry SantosWritten-By4-2Happy, Happy Birthday Baby3:09121112The Four SeasonsThe 4 Seasons867403Gilbert Lopez (2)Written-By867407Margo SylviaWritten-By4-3Honey Love2:42121112The Four SeasonsThe 4 Seasons386684Clyde McPhatterWritten-By248847Jerry WexlerGerald WexlerWritten-By4-4Soon (I'll Be Home Again)2:26121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By4-5Stay1:53121112The Four SeasonsThe 4 Seasons383318Maurice WilliamsWritten-By4-6Dumb Drum2:04121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By4-7Marlena2:33121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By4-8Long Lonely Nights2:41121112The Four SeasonsThe 4 Seasons884700Bernice DavisWritten-By1011080Douglas Henderson (3)Written-By374794Lee AndrewsWritten-By884699Mimi UnimanWritten-By4-9New Mexican Rose2:46121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By154498Charlie CalelloCharles CalelloWritten-By4-10That's The Only Way2:39121112The Four SeasonsThe 4 Seasons1683847Bob BoulangerRobert BoulangerWritten-By142834Bob CreweWritten-By4-11Melancholy2:41121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By4-12Ain't That A Shame2:39121112The Four SeasonsThe 4 Seasons320620Dave BartholomewWritten-By309140Fats DominoAntoine 'Fats' DominoWritten-ByThe 4 Seasons - Sing Ain't That A Shame And 11 Others (Stereo)4-13Candy Girl2:36121112The Four SeasonsThe 4 Seasons327751Larry SantosWritten-By4-14Happy, Happy Birthday Baby3:09121112The Four SeasonsThe 4 Seasons867403Gilbert Lopez (2)Written-By867407Margo SylviaWritten-By4-15Honey Love2:42121112The Four SeasonsThe 4 Seasons386684Clyde McPhatterWritten-By248847Jerry WexlerGerald WexlerWritten-By4-16Soon (I'll Be Home Again)2:26121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By4-17Stay1:53121112The Four SeasonsThe 4 Seasons383318Maurice WilliamsWritten-By4-18Dumb Drum2:04121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By4-19Marlena2:33121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By4-20Long Lonely Nights2:41121112The Four SeasonsThe 4 Seasons884700Bernice DavisWritten-By1011080Douglas Henderson (3)Written-By374794Lee AndrewsWritten-By884699Mimi UnimanWritten-By4-21New Mexican Rose2:46121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By154498Charlie CalelloCharles CalelloWritten-By4-22That's The Only Way2:36121112The Four SeasonsThe 4 Seasons1683847Bob BoulangerRobert BoulangerWritten-By142834Bob CreweWritten-By4-23Melancholy2:49121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By4-24Ain't That A Shame2:36121112The Four SeasonsThe 4 Seasons320620Dave BartholomewWritten-By309140Fats DominoAntoine 'Fats' DominoWritten-ByBonus Tracks4-25Like You (Trumpet Arrangement)2:21121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By4-26Starmaker (Mono)2:18121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By4-27Silver Wings (Mono)3:06121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By4-28Peanuts ('Golden Hits' Version, Stereo)2:28121112The Four SeasonsThe 4 Seasons1682381J. Lawrence CookWritten-By4-29Starmaker ('Golden Hits' Version, Stereo)2:17121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By4-30Silver Wings ('Golden Hits' Version, Stereo)3:04121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByThe 4 Seasons - Born To Wander (Mono)5-1Born To Wander2:35121112The Four SeasonsThe 4 Seasons1235076Al PetersonWritten-By5-2Don't Cry, Elena2:00121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By5-3Where Have All The Flowers Gone3:49121112The Four SeasonsThe 4 Seasons239937Pete SeegerWritten-By5-4Cry Myself To Sleep2:49121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-5A Ballad For Our Time2:24121112The Four SeasonsThe 4 Seasons623979Lou StallmanWritten-By791731Sid JacobsonSid JacobsenWritten-By5-6Silence Is Golden3:06121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-7New Town2:51121112The Four SeasonsThe 4 Seasons536656Phil OchsWritten-By5-8Golden Ribbon3:06121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By5-9Little Pony (Get Along)2:13121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By708557Nick MassiWritten-By5-10No Surfin' Today3:09121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-11Searching Wind2:28121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-12Millie2:40121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByThe 4 Seasons - Born To Wander (Stereo)5-13Born To Wander2:35121112The Four SeasonsThe 4 Seasons1235076Al PetersonWritten-By5-14Don't Cry, Elena2:00121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By5-15Where Have All The Flowers Gone3:49121112The Four SeasonsThe 4 Seasons239937Pete SeegerWritten-By5-16Cry Myself To Sleep2:49121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-17A Ballad For Our Time2:24121112The Four SeasonsThe 4 Seasons623979Lou StallmanWritten-By791731Sid JacobsonSid JacobsenWritten-By5-18Silence Is Golden3:06121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-19New Town2:51121112The Four SeasonsThe 4 Seasons536656Phil OchsWritten-By5-20Golden Ribbon3:06121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By5-21Little Pony (Get Along)2:13121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By708557Nick MassiWritten-By5-22No Surfin' Today3:09121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-23Searching Wind2:28121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By5-24Millie2:40121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByBonus Track5-25Millie (Alternate Mix, Mono)2:48121112The Four SeasonsThe 4 SeasonsThe 4 Seasons - Dawn (Go Away) And 11 Other Great Songs (Mono)6-1Big Man's World2:32121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By6-2You Send Me2:53121112The Four SeasonsThe 4 Seasons295202Sam CookeWritten-By6-3Mountain High2:32121112The Four SeasonsThe 4 Seasons3971504Richard GostingDick GostingWritten-By6-4Life Is But A Dream2:57121112The Four SeasonsThe 4 Seasons555645Hy WeissSy WeissWritten-By700438Raul CitaRaoul CitaWritten-By6-5Church Bells May Ring2:16121112The Four SeasonsThe 4 Seasons240986Morty CraftWritten-By383330The WillowsWritten-By6-6Dawn (Go Away)2:43121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By6-7Only Yesterday2:37121112The Four SeasonsThe 4 Seasons1626596Bud RehakWritten-By1020483Eddie RambeauWritten-By6-816 Candles2:44121112The Four SeasonsThe 4 Seasons695549Allyson R. KhentWritten-By398237Luther DixonWritten-By6-9Breaking Up Is Hard To Do2:36121112The Four SeasonsThe 4 Seasons1630280Greenfield & SedakaNeil Sedaka / Howard GreenfieldWritten-By6-10Earth Angel2:22121112The Four SeasonsThe 4 Seasons681091Jesse BelvinWritten-By6-11Don't Let Go2:51121112The Four SeasonsThe 4 Seasons644434Jesse StoneWritten-By6-12Do You Wanna Dance2:15121112The Four SeasonsThe 4 Seasons372977Bobby FreemanWritten-ByThe 4 Seasons - Dawn (Go Away) And 11 Other Great Songs (Stereo)6-13Big Man's World2:32121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By6-14You Send Me2:53121112The Four SeasonsThe 4 Seasons295202Sam CookeWritten-By6-15Mountain High2:32121112The Four SeasonsThe 4 Seasons3971504Richard GostingDick GostingWritten-By6-16Life Is But A Dream2:57121112The Four SeasonsThe 4 Seasons555645Hy WeissSy WeissWritten-By700438Raul CitaRaoul CitaWritten-By6-17Church Bells May Ring2:16121112The Four SeasonsThe 4 Seasons240986Morty CraftWritten-By383330The WillowsWritten-By6-18Dawn (Go Away)2:43121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By6-19Only Yesterday2:37121112The Four SeasonsThe 4 Seasons1626596Bud RehakWritten-By1020483Eddie RambeauWritten-By6-2016 Candles2:44121112The Four SeasonsThe 4 Seasons695549Allyson R. KhentWritten-By398237Luther DixonWritten-By6-21Breaking Up Is Hard To Do2:36121112The Four SeasonsThe 4 Seasons1630280Greenfield & SedakaNeil Sedaka / Howard GreenfieldWritten-By6-22Earth Angel2:22121112The Four SeasonsThe 4 Seasons681091Jesse BelvinWritten-By6-23Don't Let Go2:51121112The Four SeasonsThe 4 Seasons644434Jesse StoneWritten-By6-24Do You Wanna Dance2:15121112The Four SeasonsThe 4 Seasons372977Bobby FreemanWritten-ByBonus TracksLive On Stage 196410:20121112The Four SeasonsThe 4 Seasons6-25aStay383318Maurice WilliamsWritten-By6-25bSince I Don't Have You853272John Taylor (15)Jackie TaylorWritten-By655828Jimmy BeaumontJames BeaumontWritten-By783302Janet VogelWritten-By754527Joe RockJoseph RockWritten-By783307Joseph VerscharenJoe VerscharenWritten-By783300Lennie MartinWritten-By1718965Wally LesterWritten-By6-25cCry Myself To Sleep1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By6-25dDawn (Go Away)225965Bob GaudioWritten-By153544Sandy LinzerWritten-By6-26Cousin Brucie Theme1:25121112The Four SeasonsThe 4 Seasons6-27Brunswick Bowling Spot0:58121112The Four SeasonsThe 4 SeasonsThe 4 Seasons - Rag Doll (Mono)7-1Save It For Me2:36121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GuadioWritten-By7-2The Touch Of You2:30121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-3Danger2:48121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By7-4Marcie2:19121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By7-5No One Cares2:26121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-6Rag Doll2:58121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-7An Angel Cried2:27121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-8Funny Face2:11121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-9Huggin' My Pillow2:35121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-10The Setting Sun2:53121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-11Ronnie2:54121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-12On Broadway Tonight2:31121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByThe 4 Seasons - Rag Doll (Stereo)7-13Save It For Me2:36121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-14The Touch Of You2:30121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-15Danger2:48121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By7-16Marcie2:19121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By7-17No One Cares2:26121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-18Rag Doll2:58121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-19An Angel Cried2:27121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-20Funny Face2:11121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-21Huggin' My Pillow2:35121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-22The Setting Sun2:53121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By7-23Ronnie2:54121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-24On Broadway Tonight2:31121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByBonus Tracks7-25Save It For Me (Mono 45)2:37121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By7-26Silence Is Golden (Mono 45)3:06121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByThe 4 Seasons - Entertain You (Mono)8-1Show Girl2:56121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-2Where Is Love?3:24121112The Four SeasonsThe 4 Seasons226335Lionel BartWritten-By8-3One Clown Cried2:34121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By8-4My Prayer3:02121112The Four SeasonsThe 4 Seasons790864Georges BoulangerGeorge BoulangerWritten-By556376Jimmy KennedyWritten-By8-5Little Darlin'2:50121112The Four SeasonsThe 4 Seasons383318Maurice WilliamsWritten-By8-6Bye Bye Baby (Baby Goodbye)2:31121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-7Betrayed2:56121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By8-8Somewhere2:29121112The Four SeasonsThe 4 Seasons299702Leonard BernsteinWritten-By566541Stephen SondheimWritten-By8-9Living Just For You2:46121112The Four SeasonsThe 4 Seasons708557Nick MassiWritten-By8-10Little Angel2:20121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-11Big Man In Town2:44121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By8-12Toy Soldier2:53121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByThe 4 Seasons - Entertain You (Stereo)8-13Show Girl2:56121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-14Where Is Love?3:24121112The Four SeasonsThe 4 Seasons226335Lionel BartWritten-By8-15One Clown Cried2:34121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By8-16My Prayer3:02121112The Four SeasonsThe 4 Seasons790864Georges BoulangerGeorge BoulangerWritten-By556376Jimmy KennedyWritten-By8-17Little Darlin'2:50121112The Four SeasonsThe 4 Seasons383318Maurice WilliamsWritten-By8-18Bye Bye Baby (Baby Goodbye)2:31121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-19Betrayed2:56121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By8-20Somewhere2:29121112The Four SeasonsThe 4 Seasons299702Leonard BernsteinWritten-By566541Stephen SondheimWritten-By8-21Living Just For You2:46121112The Four SeasonsThe 4 Seasons708557Nick MassiWritten-By8-22Little Angel2:20121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-23Big Man In Town2:44121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By8-24Toy Soldier2:33121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByBonus Tracks8-25A Sunday Kind Of Love (Mono)2:38121112The Four SeasonsThe 4 Seasons645840Anita LeonardWritten-By645836Barbara BelleWritten-By36865Louis PrimaWritten-By645837Stan RhodesWritten-By8-26Girl Come Running (Mono 45)2:58121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-27Little Angel (Alternate Mono Version)2:20121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By8-28A Sunday Kind Of Love (Stereo)2:38121112The Four SeasonsThe 4 Seasons645840Anita LeonardWritten-By645836Barbara BelleWritten-By36865Louis PrimaWritten-By645837Stan RhodesWritten-ByThe Four Seasons - Recorded Live On Stage (Mono)9-1Intro0:36121112The Four Seasons9-2Blues In The Night1:56121112The Four Seasons647193Harold Arlen & Johnny MercerJohnny Mercer / Harold ArlenWritten-By9-3Just In Time2:10121112The Four Seasons1439192Betty Comden And Adolph GreenBetty Comden / Adolph GreenWritten-By341663Jule StyneWritten-By9-4Little Boy (In Grown Up Clothes)2:38121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By9-5I Can Dream Can't I2:39121112The Four Seasons628269Irving KahalWritten-By290093Sammy FainSamuel E. FeinbergWritten-By9-6Introduction To The Group1:23121112The Four Seasons9-7How Do You Make A Hit Song?4:23121112The Four Seasons3803619H. BeebeWritten-By3803617W. HyerWritten-ByMedley4:02121112The Four Seasons9-8aBy Myself15011986Reide Mc LeodMcCleodWritten-By3803618George DilworthWritten-By675270Nathaniel ShilkretWritten-By9-8bJada818328Bob CarletonWritten-By9-8cWe Three634320Dick RobertsonWritten-By1089978Nelson CoganeWritten-By706286Sammy MyselsSammy MeyselsWritten-By9-9Day In, Day Out1:58121112The Four Seasons164574Johnny MercerWritten-By370234Rube BloomWritten-By9-10My Mother's Eyes3:08121112The Four Seasons999895Abel BaerWritten-By714720Wolfe GilbertWolf GilbertWritten-By9-11Mack The Knife3:39121112The Four Seasons457141Bertolt BrechtWritten-By407111Kurt WeillWritten-By643485Marc BlitzsteinMarcus Samuel BlitzsteinWritten-By9-12Come Si Bella2:18121112The Four Seasons3803620Carmine De PalmaCarmine DePalmaWritten-By154498Charlie CalelloCharles CalelloWritten-By9-13Brotherhood Of Man2:03121112The Four Seasons439662Frank LoesserWritten-By9-14Brotherhood Of Man (Reprise)1:10121112The Four Seasons439662Frank LoesserWritten-ByThe Four Seasons - Recorded Live On Stage (Stereo)9-15Intro0:36121112The Four Seasons9-16Blues In The Night1:56121112The Four Seasons647193Harold Arlen & Johnny MercerJohnny Mercer / Harold ArlenWritten-By9-17Just In Time2:10121112The Four Seasons1439192Betty Comden And Adolph GreenBetty Comden / Adolphe GreenWritten-By341663Jule StyneWritten-By9-18Little Boy (In Grown Up Clothes)2:38121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By9-19I Can Dream Can't I2:39121112The Four Seasons628269Irving KahalWritten-By290093Sammy FainSamuel E. FeinbergWritten-By9-20Introduction To The Group1:23121112The Four Seasons9-21How Do You Make A Hit Song?4:23121112The Four Seasons3803619H. BeebeWritten-By3803617W. HyerWritten-ByMedley4:03121112The Four Seasons9-22aBy Myself15011986Reide Mc LeodMcCleodWritten-By3803618George DilworthWritten-By675270Nathaniel ShilkretWritten-By9-22bJada818328Bob CarletonWritten-By9-22cWe Three634320Dick RobertsonWritten-By1089978Nelson CoganeWritten-By706286Sammy MyselsSammy MeyselsWritten-By9-23Day In, Day Out1:58121112The Four Seasons164574Johnny MercerWritten-By370234Rube BloomWritten-By9-24My Mother's Eyes3:09121112The Four Seasons999895Abel BaerWritten-By714720Wolfe GilbertWolf GilbertWritten-By9-25Mack The Knife3:38121112The Four Seasons457141Bertolt BrechtWritten-By407111Kurt WeillWritten-By643485Marc BlitzsteinMarcus Samuel BlitzsteinWritten-By9-26Come Si Bella2:18121112The Four Seasons3803620Carmine De PalmaCarmine DePalmaWritten-By154498Charlie CalelloCharles CalelloWritten-By9-27Brotherhood Of Man2:04121112The Four Seasons439662Frank LoesserWritten-By9-28Brotherhood Of Man (Reprise)1:08121112The Four Seasons439662Frank LoesserWritten-ByBonus Tracks9-29Little Boy (In Grown Up Clothes) (Mono 45)2:20121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By9-30Close Your Eyes (Live In Clearwater, Florida, 1964)2:24121112The Four Seasons434233Chuck WillisWritten-By9-31I Still Care (Demo, From Acetate, Mono)2:33121112The Four Seasons225965Bob GaudioWritten-ByThe 4 Seasons - Sing Big Hits By Burt Bacharach...Hal David...Bob Dylan (Mono)10-1What The World Needs Now Is Love2:59121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-2Anyone Who Had A Heart3:19121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-3Always Something There To Remind Me3:01121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-4Make It Easy On Yourself3:00121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-5Walk On By3:02121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-6What's New Pussycat?2:20121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-7Queen Jane Approximately3:41121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-8Mr Tambourine Man3:06121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-9Like A Rolling Stone4:24121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-10Don't Think Twice, It's All Right2:56121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-11All I Really Want To Do2:02121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-12Blowin' In The Wind2:49121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-ByThe 4 Seasons - Sing Big Hits By Burt Bacharach...Hal David...Bob Dylan (Stereo)10-13What The World Needs Now Is Love2:59121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-14Anyone Who Had A Heart3:18121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-15Always Something There To Remind Me3:03121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-16Make It Easy On Yourself3:01121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-17Walk On By3:05121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-18What's New Pussycat?2:19121112The Four SeasonsThe 4 Seasons142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By10-19Queen Jane Approximately3:41121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-20Mr Tambourine Man3:10121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-21Like A Rolling Stone4:27121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-22Don't Think Twice, It's All Right2:57121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-23All I Really Want To Do2:05121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By10-24Blowin' In The Wind2:50121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-ByBonus Track10-25On The Good Ship Lollipop2:291106856The Wonder Who?The Wonder Who673139Richard WhitingWritten-By710823Sidney ClareWritten-By10-26You're Nobody 'Til Somebody Loves You2:251106856The Wonder Who?The Wonder Who796093James CavanaughWritten-By664548Larry StockWritten-By632254Russ Morgan (2)Written-ByThe 4 Seasons - Working My Way Back To You (Mono)11-1Working My Way Back To You3:00121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By11-2Pity2:33121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By635561Mike PetrilloWritten-By11-3I Woke Up2:38121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By11-4Living Just For You2:44121112The Four SeasonsThe 4 Seasons708557Nick MassiWritten-By11-5Beggars Parade2:57121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-6One Clown Cried2:35121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By11-7Can't Get Enough Of You Baby2:23121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By11-8Sundown2:49121112The Four SeasonsThe 4 Seasons756072Alan BernsteinWritten-By635561Mike PetrilloWritten-By11-9Too Many Memories3:19121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-10Show Girl2:55121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-11Comin' Up In The World2:51121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By327751Larry SantosWritten-By11-12Everybody Knows My Name3:19121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByThe 4 Seasons - Working My Way Back To You (Stereo)11-13Working My Way Back To You3:00121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By11-14Pity2:33121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By635561Mike PetrilloWritten-By11-15I Woke Up2:38121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By11-16Living Just For You2:44121112The Four SeasonsThe 4 Seasons708557Nick MassiWritten-By11-17Beggars Parade2:57121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-18One Clown Cried2:35121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By11-19Can't Get Enough Of You Baby2:23121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By11-20Sundown2:49121112The Four SeasonsThe 4 Seasons756072Alan BernsteinWritten-By635561Mike PetrilloWritten-By11-21Too Many Memories3:19121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-22Show Girl2:55121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-23Comin' Up In The World2:51121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By327751Larry SantosWritten-By11-24Everybody Knows My Name3:19121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-ByBonus Tracks11-25Let's Hang On (Mono 45)3:14121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By153544Sandy LinzerWritten-By11-26Too Many Memories (Mono 45)3:16121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By11-27Opus 17 (Don't You Worry About Me) (Mono 45)2:27121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-ByThe 4 Seasons - New Gold Hits (Mono)12-1C'mon Marianne2:34121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By12-2Let's Ride Again2:52121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-3Beggin'2:51121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By759690Peggy FarinaWritten-By12-4Around And Around (Andaroundandaroundandaroundandaround)3:07121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-5Good-Bye Girl3:13121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-6I'm Gonna Change2:53121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By12-7Tell It To The Rain2:33121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By12-8Dody2:37121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-9The Puppet Song2:28121112The Four SeasonsThe 4 Seasons354542Artie SchroeckWritten-By860305Jet LoringWritten-By12-10Lonesome Road2:27121112The Four SeasonsThe 4 Seasons625259Gene AustinWritten-By675270Nathaniel ShilkretWritten-ByThe 4 Seasons - New Gold Hits (Stereo)12-11C'mon Marianne2:33121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By12-12Let's Ride Again2:58121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-13Beggin'2:47121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By759690Peggy FarinaWritten-By12-14Around And Around (Andaroundandaroundandaroundandaround)3:07121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-15Good-Bye Girl3:12121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-16I'm Gonna Change2:52121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By12-17Tell It To The Rain2:30121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By12-18Dody2:37121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-19The Puppet Song2:29121112The Four SeasonsThe 4 Seasons354542Artie SchroeckWritten-By860305Jet LoringWritten-By12-20Lonesome Road2:27121112The Four SeasonsThe 4 Seasons625259Gene AustinWritten-By675270Nathaniel ShilkretWritten-ByBonus Tracks12-21Tell It To The Rain (Mono 45)2:28121112The Four SeasonsThe 4 Seasons12-22Beggin' (Mono 45)2:51121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By759690Peggy FarinaWritten-By12-23Dody (Stereo)2:38121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-24C'mon Marianne (Mono 45)2:31121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By12-25Let's Ride Again (Mono 45)2:52121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioWritten-By12-26Watch The Flowers Grow (Mono 45)3:09121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By12-27Raven (Mono 45)3:12121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By12-28Will You Still Love Me Tomorrow? (Mono 45)3:23121112The Four SeasonsThe 4 Seasons682663Goffin And KingGerry Goffin / Carole KingWritten-ByFrankie Valli - The Four Seasons Present Frankie Valli Solo (Stereo)13-1My Funny Valentine2:41107784Frankie Valli604171Rodgers & HartRichard Rodgers / Lorenz HartWritten-By13-2(You're Gonna) Hurt Yourself2:30107784Frankie Valli142834Bob CreweWritten-By154498Charlie CalelloCharles CalelloWritten-By13-3Ivy2:57107784Frankie Valli277171Denny RandellWritten-By153544Sandy LinzerWritten-By13-4Secret Love3:33107784Frankie Valli290092Paul Francis WebsterWritten-By290093Sammy FainWritten-By13-5Can't Take My Eyes Off You3:20107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-6My Mother's Eyes3:36107784Frankie Valli999895Abel BaerWritten-By714720Wolfe GilbertL. Wolfe GilbertWritten-By13-7The Sun Ain't Gonna Shine (Anymore)3:29107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-8The Trouble With Me2:56107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-9The Proud One2:56107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-10You're Ready Now2:17107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByBonus Tracks13-11The Sun Ain't Gonna Shine (Anymore) (Mono 45)3:32107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-12This Is Goodbye (Mono 45)2:21107784Frankie Valli225965Bob GaudioWritten-By13-13You're Ready Now (Mono 45)2:14107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-14Cry For Me (Mono 45)3:11107784Frankie Valli225965Bob GaudioWritten-By13-15(You're Gonna) Hurt Yourself (Mono 45)2:27107784Frankie Valli142834Bob CreweWritten-By154498Charlie CalelloCharles CalelloWritten-By13-16The Proud One (Mono 45)2:56107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-17Ivy (Mono 45)3:00107784Frankie Valli277171Denny RandellWritten-By153544Sandy LinzerWritten-By13-18Can't Take My Eyes Off You (Mono 45)3:16107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-19The Trouble With Me (Mono)2:54107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-20Can't Take My Eyes Off You (Alternate Vocal)3:28107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-21This Is Goodbye (Stereo)2:20107784Frankie Valli225965Bob GaudioWritten-By13-22Cry For Me (Stereo)3:09107784Frankie Valli225965Bob GaudioWritten-By13-23Can't Take My Eyes Off You (Stereo Gold 1976 Alternate Mix)3:17107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-24You're Ready Now (Stereo Gold 1976 Alternate Mix)2:15107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-25The Proud One (Stereo Gold 1976 Alternate Mix)2:47107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By13-26(You're Gonna) Hurt Yourself (Stereo Gold 1976 Alternate Mix)2:29107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByFrankie Valli - Timeless (Stereo)14-1By The Time I Get To Phoenix3:09107784Frankie Valli266406Jimmy WebbWritten-By14-2Expression Of Love3:07107784Frankie Valli2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By14-3For All We Know2:15107784Frankie Valli583506J. Fred CootsWritten-By593439Sam LewisSam M. LewisWritten-By14-4Sunny3:43107784Frankie Valli318476Bobby HebbWritten-By14-5Watch Where You Walk2:57107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By14-6To Give (The Reason I Live)3:21107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By14-7Eleanor Rigby2:31107784Frankie Valli779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-By14-8Fox In A Bush3:00107784Frankie Valli2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By14-9September Rain (Here Comes The Rain)3:17107784Frankie Valli225965Bob GaudioWritten-By759690Peggy FarinaWritten-By14-10Make The Music Play3:24107784Frankie Valli169899Carole Bayer SagerWritten-By123159Neil SedakaWritten-By14-11Stop And Say Hello3:08107784Frankie Valli354542Artie SchroeckWritten-By14-12Donnybrook3:25107784Frankie Valli2027976Francine Myrna NeimanF. NeimanWritten-By135244Gladys KnightG. KnightWritten-ByBonus Tracks14-13By The Time I Get To Phoenix (Mono Outtake)3:08107784Frankie Valli266406Jimmy WebbWritten-By14-14Donnybrook (Mono Outtake)3:17107784Frankie Valli2027976Francine Myrna NeimanF. NeimanWritten-By135244Gladys KnightG. KnightWritten-By14-15Expression Of Love (Mono Outtake)3:07107784Frankie Valli2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By14-16For All We Know (Mono Outtake)2:14107784Frankie Valli583506J. Fred CootsWritten-By593439Sam LewisSam M. LewisWritten-By14-17Fox In A Bush (Mono Outtake)2:56107784Frankie Valli2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By14-18Make The Music Play (Mono Outtake)3:28107784Frankie Valli169899Carole Bayer SagerWritten-By123159Neil SedakaWritten-By14-19September Rain (Here Comes The Rain) (Mono Outtake)3:14107784Frankie Valli225965Bob GaudioWritten-By759690Peggy FarinaWritten-By14-20Stop And Say Hello (Mono Outtake)3:15107784Frankie Valli354542Artie SchroeckWritten-By14-21Sunny (Mono Outtake)3:42107784Frankie Valli318476Bobby HebbWritten-By14-22Stranger In Paradise (Stereo Outtake)3:46107784Frankie Valli638539George ForrestWritten-By638538Robert Craig WrightRobert WrightWritten-By14-23Natural Morning (Mono Outtake)4:13107784Frankie Valli384186Mark RadiceWritten-By14-24September Rain (45 Version)3:01107784Frankie Valli225965Bob GaudioWritten-By759690Peggy FarinaWritten-ByThe 4 Seasons - Edizione D'Oro (Gold Edition) (Stereo)15-1Sherry2:29121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By15-2Big Girls Don't Cry2:24121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-3Connie-O2:30121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-4Walk Like A Man2:17121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-5Candy Girl2:30121112The Four SeasonsThe 4 Seasons327751Larry SantosWritten-By15-6Marlena2:37121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By15-7Peanuts2:24121112The Four SeasonsThe 4 Seasons1682381J. Lawrence CookWritten-By15-8Ain't That A Shame (Alternate Take)2:38121112The Four SeasonsThe 4 Seasons320620Dave BartholomewWritten-By309140Fats DominoAntoine 'Fats' DominoWritten-By15-9Dawn (Go Away) (Alternate 'Last' Take)2:36121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By15-10Stay1:56121112The Four SeasonsThe 4 Seasons383318Maurice WilliamsWritten-By15-11Big Man In Town (Alternate Mix)2:46121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By15-12Alone2:51121112The Four SeasonsThe 4 Seasons1199196Morton & Selma CraftSelma Craft / Marty CraftWritten-By15-13Save It For Me (Alternate Mix)2:35121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-14Girl Come Running (Alternate 'Last' Take)3:03121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-15Rag Doll (Unique Stereo Version)2:55121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-16Bye Bye Baby2:33121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-17Toy Soldier2:36121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-18Let's Hang On (Alternate Take)2:57121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By153544Sandy LinzerWritten-By15-19Don't Think Twice, It's All Right3:02121112The Four SeasonsThe 4 Seasons59792Bob DylanWritten-By15-20Working My Way Back To You3:05121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By15-21Opus 17 (Don't You Worry 'Bout Me)2:37121112The Four SeasonsThe 4 Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By15-22I've Got You Under My Skin3:38121112The Four SeasonsThe 4 Seasons264026Cole PorterWritten-By15-23Tell It To The Rain2:38121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By15-24Beggin'2:50121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By759690Peggy FarinaWritten-By15-25Silence Is Golden (Stereo)3:23121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By15-26C'mon Marianne2:36121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By15-27Watch The Flowers Grow (Stereo)3:22121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By15-28Will You Still Love Me Tomorrow? (Stereo)3:23121112The Four SeasonsThe 4 Seasons682663Goffin And KingGerry Goffin / Carole KingWritten-ByThe 4 Seasons - The Genuine Imitation Life Gazette (Mono)16-1American Crucifixion Resurrection6:44121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-2Mrs. Stately's Garden3:12121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-3Look Up, Look Over4:39121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-4Something On Her Mind2:43121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-5Saturday's Father3:13121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-6Wall Street Village Day4:25121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-7Genuine Imitation Life4:57121112The Four SeasonsThe 4 Seasons541024Jake HolmesWritten-By16-8Idaho3:00121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-9Wonder What You'll Be3:38121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-10Soul Of A Woman7:01121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByBonus Tracks16-11Sassy (Mono 45)2:04121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By16-12Night Hawk (Mono 45)2:37121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By16-13I've Got You Under My Skin (Mono 45)3:46121112The Four SeasonsThe 4 Seasons264026Cole PorterWritten-By16-14Electric Stories (Mono 45)2:48121112The Four SeasonsThe 4 Seasons635561Mike PetrilloWritten-By153544Sandy LinzerWritten-By16-15Watch Where You Walk (Mono)2:51121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By16-16I Make A Fool Of Myself (Mono)3:38121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By16-17September Rain (Here Comes The Rain) (Mono)3:10121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By16-18To Give (The Reason I Live) (Mono)3:20121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By16-19Michael And Peter (Mono)4:58121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By16-20A Face Without A Name (Mono)4:14121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByThe 4 Seasons - The Genuine Imitation Life Gazette (Stereo)17-1American Crucifixion Resurrection6:48121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-2Mrs. Stately's Garden3:14121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-3Look Up, Look Over4:41121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-4Something's On My Mind2:46121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-5Saturday's Father3:12121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-6Wall Street Village Day4:26121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-7Genuine Imitation Life6:15121112The Four SeasonsThe 4 Seasons541024Jake HolmesWritten-By17-8Idaho3:02121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-9Wonder What You'll Be3:25121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By17-10Soul Of A Woman7:09121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByBonus Tracks17-11I Make A Fool Of Myself (Stereo)3:38121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By17-12Electric Stories (Stereo)2:45121112The Four SeasonsThe 4 Seasons635561Mike PetrilloWritten-By153544Sandy LinzerWritten-By17-13The Singles Game (Stereo)2:45121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By17-14Tell It To The Rain (Stereo 45)2:35121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By17-15Raven (Stereo)3:31121112The Four SeasonsThe 4 Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By17-16You've Got Your Troubles (Stereo)4:05121112The Four SeasonsThe 4 Seasons1274131Cook-GreenawayRoger Greenway / Roger CookWritten-ByFrankie Valli & The 4 Seasons - Half & Half (Mono)18-1Emily4:24107784Frankie Valli&121112The Four SeasonsThe 4 Seasons370500Laura NyroWritten-By18-2And That Reminds Me3:28107784Frankie Valli&121112The Four SeasonsThe 4 Seasons539034Al StillmanWritten-By679016Camillo BargoniWritten-By775038Dante PanzutiWritten-By679017Paul SiegelWritten-By18-3Circles In The Sand3:40107784Frankie Valli&121112The Four SeasonsThe 4 Seasons4160393Charles Watts (4)C. WattsWritten-By1765338Chris DuceyC. DuceyWritten-By3360629Ed MillisE. Millis, Jr.Written-By4160392Paul Stein (3)P. SteinWritten-By18-4Sorry3:20107784Frankie Valli&121112The Four SeasonsThe 4 Seasons394509Al GorgoniA. GorgoniWritten-By142053Chip TaylorC. TaylorWritten-By18-5The Girl I'll Never Know (Angels Never Fly This Low)3:35107784Frankie Valli&121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By18-6She Gives Me Light3:12107784Frankie Valli&121112The Four SeasonsThe 4 Seasons1127713Eric LilljequistE. LilljequistWritten-By18-7To Make My Father Proud3:38107784Frankie Valli&121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By662263Larry WeissL. WeissWritten-By18-8Patch Of Blue3:02107784Frankie Valli&121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By18-9The Morning After Loving You3:09107784Frankie Valli&121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByMedley4:34107784Frankie Valli&121112The Four SeasonsThe 4 Seasons18-10aAny Day Now58359Burt BacharachWritten-By632719Bob HilliardB. HilliardWritten-By18-10bOh Happy Day569446Edwin HawkinsWritten-ByFrankie Valli & The 4 Seasons - Half & Half (Stereo)18-11Emily4:25107784Frankie Valli&121112The Four SeasonsThe 4 Seasons370500Laura NyroWritten-By18-12And That Reminds Me3:29107784Frankie Valli&121112The Four SeasonsThe 4 Seasons539034Al StillmanWritten-By679016Camillo BargoniWritten-By775038Dante PanzutiWritten-By679017Paul SiegelWritten-By18-13Circles In The Sand3:21107784Frankie Valli&121112The Four SeasonsThe 4 Seasons4160393Charles Watts (4)C.E. WattsWritten-By1765338Chris DuceyC.R. DuceyWritten-By3360629Ed MillisC. E. Millis, Jr.Written-By4160392Paul Stein (3)P. SteinWritten-By18-14Sorry3:40107784Frankie Valli&121112The Four SeasonsThe 4 Seasons394509Al GorgoniA. GorgoniWritten-By142053Chip TaylorC. TaylorWritten-By18-15The Girl I'll Never Know (Angels Never Fly This Low)3:34107784Frankie Valli&121112The Four SeasonsThe 4 Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By18-16She Gives Me Light3:12107784Frankie Valli&121112The Four SeasonsThe 4 Seasons1127713Eric LilljequistE. LilljequistWritten-By18-17To Make My Father Proud3:39107784Frankie Valli&121112The Four SeasonsThe 4 Seasons142834Bob CreweWritten-By662263Larry WeissL. WeissWritten-By18-18Patch Of Blue3:02107784Frankie Valli&121112The Four SeasonsThe 4 Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By18-19The Morning After Loving You3:21107784Frankie Valli&121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByMedley4:35107784Frankie Valli&121112The Four SeasonsThe 4 Seasons18-20aAny Day Now58359Burt BacharachWritten-By632719Bob HilliardB. HilliardWritten-By18-20bOh Happy Day569446Edwin HawkinsWritten-ByBonus Track18-21Dream Of Kings (Stereo)2:41107784Frankie Valli&121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByThe Four Seasons - Rare & Unreleased 1966-197119-1Raven (Outtake)3:27121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By19-2Heartaches And Raindrops (Stereo)3:16121112The Four Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By19-3Where Are My Dreams (Stereo)3:08121112The Four Seasons153544Sandy LinzerWritten-By19-4Lay Me Down (Original Title 'This Time') (Stereo)6:07121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By19-5Sleeping Man (Stereo)4:09121112The Four Seasons225965Bob GaudioWritten-By19-6Whatever You Say (Stereo)4:02121112The Four Seasons225965Bob GaudioWritten-By19-7Just Can't Help Believin' (Stereo)2:33121112The Four Seasons732053Mann And WeilBarry Mann / Cynthia WeilWritten-By19-8Beggin' (Mono, From Acetate)2:02121112The Four Seasons225965Bob GaudioWritten-By759690Peggy FarinaWritten-By19-9What Good Am I (Unreleased Demo)1:44121112The Four SeasonsUnknown ArtistUnknownWritten By19-10I'm Gonna Change (Alternate Mono Mix)2:48121112The Four Seasons2036157Angelo CifelliChubby CifelliWritten-By635561Mike PetrilloWritten-By19-11Dream Of Kings (Mono 45)2:40121112The Four Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By19-12Circles In The Sand (Mono)3:38121112The Four Seasons4160393Charles Watts (4)C.E. WattsWritten-By1765338Chris DuceyC.R. DuceyWritten-By3360629Ed MillisC. E. Millis, Jr.Written-By4160392Paul Stein (3)P. SteinWritten-By19-13Emily (Alternate Mono Mix)4:22121112The Four Seasons370500Laura NyroWritten-By19-14Where Are My Dreams (Mono 45)3:13121112The Four Seasons153544Sandy LinzerWritten-By19-15You Can't Take It All From A Man (Early Version Of 'One Man') (Mono)2:53121112The Four Seasons142834Bob CreweWritten-By533193L. Russell BrownWritten-By19-16Just How Loud (Can The Music Play) (Mono Outtake)2:49121112The Four Seasons354542Artie SchroeckWritten-By860305Jet LoringWritten-By19-17The Goose (Mono Outtake)3:18121112The Four Seasons153544Sandy LinzerWritten-By19-18I Need To Get To Know You (Mono Outtake)4:15121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By19-19One Man (Mono Outtake)3:00121112The Four Seasons142834Bob CreweWritten-By533193L. Russell BrownWritten-By19-20C'mon Marianne (Instrumental) (Outtake)2:10121112The Four Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By19-21And That Reminds Me (Instrumental)3:32121112The Four Seasons539034Al StillmanWritten-By679016Camillo BargoniWritten-By775038Dante PanzutiWritten-By679017Paul SiegelWritten-By19-22Unnamed Song (Instrumental) (Mono Outtake)3:24121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByFrankie Valli & The Four Seasons - Chameleon20-1A New Beginning (Prelude)1:20107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By20-2Sun Country4:04107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer225965Bob GaudioWritten-By20-3You're A Song (That I Can't Sing)3:10107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer225965Bob GaudioWritten-By1003562Brit GaudioWritten-By20-4The Night3:22107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer809711Al RuzickaWritten-By225965Bob GaudioWritten-By20-5A New Beginning4:46107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer1631309Bob Crewe & Bob GaudioBo Gaudio / Bob CreweWritten-By20-6When The Morning Comes4:37107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer142834Bob CreweWritten-By20-7Poor Fool4:09107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer809711Al RuzickaWritten-By20-8Touch The Rainchild4:20107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer809711Al RuzickaWritten-By225965Bob GaudioWritten-By20-9Love Isn't Here (Like It Used To Be)3:41107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By12281David BlumbergDave BlumbergArranged By7556043Joe Scott (22)Arranged By127383Art StewartEngineer749261Joe AtkinsonEngineer388770Larry MilesEngineer373281Russ TerranaMixed By [Mix Engineer]225965Bob GaudioProducer225965Bob GaudioWritten-By1003562Brit GaudioWritten-ByBonus Tracks20-10Walk On, Don't Look Back2:56107784Frankie Valli&121112The Four Seasons72440Gene PageArranged By290531The Corporation (2)Arranged By225965Bob GaudioExecutive-Producer290531The Corporation (2)Producer290531The Corporation (2)Written-By20-11How Come?3:43107784Frankie Valli&121112The Four Seasons12281David BlumbergArranged By225965Bob GaudioArranged By [Vocal Arrangements]142834Bob CreweProducer418854Richard M. ShermanWritten-By418852Robert B. ShermanWritten-By20-12Life And Breath3:06107784Frankie Valli&121112The Four Seasons214478James Anthony CarmichaelArranged By160523Hal DavisProducer11604George S. ClintonWritten-By20-13Hickory2:49107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By142834Bob CreweProducer142834Bob CreweWritten-By142835Kenny NolanWritten-By20-14Charisma (Stereo 45)3:19107784Frankie Valli&121112The Four Seasons154498Charlie CalelloCharles CalelloArranged By142834Bob CreweProducer142834Bob CreweWritten-By142835Kenny NolanWritten-ByFrankie Valli - Inside You21-1Just Look What You've Done4:47107784Frankie Valli160523Hal DavisProducer3468Frank WilsonWritten-By269793R. Dean TaylorWritten-By21-2Love Isn't Here (Like It Used To Be03:48107784Frankie Valli225965Bob GaudioProducer225965Bob GaudioWritten-By1003562Brit GaudioWritten-By21-3Baby I Need Your Loving3:03107784Frankie Valli278736Jerry MarcellinoProducer278737Mel LarsonProducer476910Holland-Dozier-HollandBrian Holland / Lamont Dozier / Edward Holland JrWritten-By21-4Inside You4:01107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe And Bob GaudioProducer1631309Bob Crewe & Bob GaudioBob Gaudio / Bob CreweWritten-By21-5Thank You3:31107784Frankie Valli7153Willie HutchProducer7153Willie HutchWritten-By21-6Hickory3:00107784Frankie Valli154498Charlie CalelloCharles CalelloArranged By142834Bob CreweProducer142834Bob CreweWritten-By142835Kenny NolanWritten-By21-7Life And Breath2:57107784Frankie Valli214478James Anthony CarmichaelArranged By160523Hal DavisProducer11604George S. ClintonWritten-By21-8The Night3:21107784Frankie Valli225965Bob GaudioProducer809711Al RuzickaWritten-By225965Bob GaudioWritten-By21-9With My Eyes Wide Open4:28107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe And Bob GaudioProducer1631309Bob Crewe & Bob GaudioBob Gaudio / Bob CreweWritten-ByBonus Tracks21-10You've Got Your Troubles4:04107784Frankie Valli1274131Cook-GreenawayRoger Greenaway / Roger CookWritten-By21-11Listen To Yesterday (Alternate Version)4:00107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By21-12The Scalawag Song (And I Will Love You) (Alternate Title: Silver Fishes)2:40107784Frankie Valli292670John Cameron (2)Written-By21-13Listen To Yesterday (45 Version)3:46107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By21-14I Wonder Why (Demo, 1973)3:23107784Frankie Valli884093Melvin AndersonWritten-By871288Ricardo WeeksWritten-By21-15Hickory (Rehearsal)3:45107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-ByFrankie Valli - Motown - Previously Unreleased22-1My Heart Cries Out To You3:15107784Frankie Valli1003563Lar MarProducer278736Jerry MarcellinoJerry MarsellinoWritten-By278737Mel LarsonWritten-By22-2What Love Has Joined Together4:00107784Frankie Valli391755Al ClevelandProducer430878Lawrence PaytonProducer405402Robert RogersWritten-By86094Smokey RobinsonWilliam "Smokey" RobinsonWritten-By22-3Loving You, That's My Thing2:54107784Frankie Valli225965Bob GaudioProducer809711Al RuzickaWritten-By22-4Never Gonna Give My Love To You2:52107784Frankie Valli225965Bob GaudioProducer225965Bob GaudioWritten-By22-5Stop, Look, Listen To Your Heart2:53107784Frankie Valli72440Gene PageArranged By160523Hal DavisProducer387498Linda CreedWritten-By164262Thom BellWritten-By22-6Minute By Minute (Day By Day)2:29107784Frankie Valli107784Frankie ValliProducer41107Michael MasserProducer280082Kathy WakefieldKathleen WakefieldWritten-By41107Michael MasserWritten-By22-7After You3:41107784Frankie Valli107784Frankie ValliProducer41107Michael MasserProducer41107Michael MasserWritten-By634411Ronald MillerRon MillerWritten-By22-8Star4:22107784Frankie Valli142834Bob CreweProducer225965Bob GaudioProducer121112The Four SeasonsFour SeasonsProducer1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By22-9Hymn To Her3:45107784Frankie Valli142834Bob CreweProducer142834Bob CreweWritten-By142835Kenny NolanWritten-By22-10Lovers2:47107784Frankie Valli142834Bob CreweProducer142834Bob CreweWritten-By142835Kenny NolanWritten-By22-11You Can't Hold On3:03107784Frankie Valli225965Bob GaudioProducer403469Michael GatelyWritten-By [Uncredited]261836Robert JohnWritten-By [Uncredited]22-12Whatever You Want3:16107784Frankie Valli225965Bob GaudioProducer1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By22-13Future Years3:18107784Frankie Valli12281David BlumbergDave BlumbergArranged By225965Bob GaudioProducer3153204Martin And FinleyTony Martin, Jr / Guy FinleyWritten-ByBonus Tracks22-14My Eyes Adored You (Alternate Closing Lyric)3:37107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-By22-15Whatever You Want (Alternate Version 2)3:33107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Gaudio / Bob CreweWritten-By22-16Inside You3:35107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By22-17Lovers (Alternate Version)2:51107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-By22-18You Can't Hold On (Alternate Take)3:10107784Frankie Valli403469Michael GatelyWritten-By [Uncredited]261836Robert JohnWritten-By [Uncredited]22-19Hymn To Her (Alternate Version)3:45107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-By22-20Future Years (Alternate Version)3:23107784Frankie Valli3153204Martin And FinleyTony Martin, Jr / Guy FinleyWritten-By22-21You Can't Hold On (Alternate Version)2:52107784Frankie Valli403469Michael GatelyWritten-By [Uncredited]261836Robert JohnWritten-By [Uncredited]Frankie Valli - Closeup23-1I Got Love For You, Ruby3:22107784Frankie Valli153544Sandy LinzerWritten-By23-2Why?2:47107784Frankie Valli225965Bob GaudioWritten-By660090Judy ParkerWritten-By23-3He Sure Blessed You3:26107784Frankie Valli225965Bob GaudioWritten-By660090Judy ParkerWritten-By23-4Waking Up To Love4:30107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-By23-5I Can't Live A Dream3:12107784Frankie Valli1037686Arnold CapitanelliArnold CampitanelliWritten-By23-6My Eyes Adored You3:31107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-By23-7In My Eyes4:24107784Frankie Valli142834Bob CreweWritten-By142835Kenny NolanWritten-By23-8Swearin' To God10:29107784Frankie Valli25284Patti AustinVocals142834Bob CreweWritten-By277171Denny RandellWritten-ByBonus Track23-9Swearin' To God (45 Edit)3:57107784Frankie Valli25284Patti AustinVocals142834Bob CreweWritten-By277171Denny RandellWritten-ByThe Four Seasons - Who Loves You24-1Silver Star6:05121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-2Storybook Lovers3:43121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-3Harmony, Perfect Harmony4:44121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-4Who Loves You4:21121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-5Mystic Mr. Sam4:24121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-6December, 1963 (Oh, What A Night)3:34121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-7Slip Away3:05121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-8Emily's (Salle De Danse)6:39121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-ByBonus Tracks24-9Who Loves You (45 Mix)4:04121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-10Brian's Song (Instrumental)4:08121112The Four Seasons84236Michel LegrandWritten-By24-11Who Loves You (B-Side, Disco Version)5:44121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-12A Day In The Life4:04121112The Four Seasons779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-By24-13We Can Work It Out (45 Mix)2:38121112The Four Seasons779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-By24-14Emily's (Salle De Danse) (Alternate Mix, Edit, Unissued)5:30121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By24-15Golden Slumbers (Mono, Unissued)3:18107784Frankie Valli779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-By24-16And I Love Her (Mono, Unissued)2:00107784Frankie Valli779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-By24-17The Fool On The Hill (Mono, Unissued)3:27107784Frankie Valli779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-ByFrankie Valli - Our Day Will Come25-1Our Day Will Come5:42107784Frankie Valli2526402Ben HilliardWritten-By76089Mort GarsonWritten-By25-2How'd You Know That Love Would Slip Away3:17107784Frankie Valli90595Clarence McDonaldWritten-By656381June Watson WilliamsJune WilliamsWritten-By201472Lani GrovesWritten-By25-3You Can Bet (I Ain't Goin' Nowhere)3:14107784Frankie Valli301427Dave AppellWritten-By153544Sandy LinzerWritten-By25-4Heart Be Still4:03107784Frankie Valli290025Lee GarrettWritten-By855390Robert Taylor (7)Written-By25-5Elsie3:13107784Frankie Valli519728Pierre GroscolasWritten-By153544Sandy LinzerWritten-By25-6Carrie (I Would Marry You)3:32107784Frankie Valli1127621Don CicconeWritten-By517411Lee ShapiroWritten-By25-7Sweet Sensational Love3:17107784Frankie Valli301427Dave AppellWritten-By153544Sandy LinzerWritten-By25-8Closest Thing To Heaven3:26107784Frankie Valli76009Barry LengWritten-By187444Simon MayWritten-By25-9Walk Away Reneé3:14107784Frankie Valli851135Bob CalilliWritten-By760109Michael Brown (10)Written-By376875Tony SansoneWritten-ByBonus Tracks25-10Fallen Angel (UK Stereo 45)4:06107784Frankie Valli1350168Fletcher & FlettDoug Flett / Guy FletcherWritten-By25-11Our Day Will Come (45 Edit)4:03107784Frankie Valli2526402Ben HilliardWritten-By76089Mort GarsonWritten-ByFrankie Valli - Valli26-1Easily3:58107784Frankie Valli541134Billy AlessiWritten-By665004Bobby AlessiWritten-By26-2We're All Alone4:04107784Frankie Valli268583Boz ScaggsWritten-By26-3Can't Get You Off My Mind3:01107784Frankie Valli893661Iran KosterWritten-By107783Teddy RandazzoWritten-By668141Victoria PikeWritten-By26-4So She Says3:51107784Frankie Valli541134Billy AlessiWritten-By665004Bobby AlessiWritten-By26-5Lucia4:03107784Frankie Valli1690753Danielle RoubyD. RoubyWritten-By6500682Marco JubertiM. JubertiWritten-By399868Riccardo CoccianteR. CoccianteWritten-By26-6Boomerang4:39107784Frankie Valli107783Teddy RandazzoWritten-By668141Victoria PikeWritten-By26-7You're The Song (That I Can't Stop Singing)2:46107784Frankie Valli153599Ken GoldWritten-By383442Tony RiversWritten-By26-8Look At The World, It's Changing5:35107784Frankie Valli257414Albert LeeWritten-By251750Tony ColtonWritten-By26-9Where Were You (When I Needed You)2:59107784Frankie Valli871582Roger JoyceWritten-By107783Teddy RandazzoWritten-By668141Victoria PikeWritten-By26-10What Good Am I Without You3:26107784Frankie Valli107783Teddy RandazzoWritten-By668141Victoria PikeWritten-ByBonus Tracks26-11You To Me Are Everything3:14107784Frankie Valli153599Ken GoldWritten-By741301Michael DenneMickey DeaneWritten-By26-12Can't Get You Off My Mind (DJ Promo Mix)3:46107784Frankie Valli893661Iran KosterWritten-By107783Teddy RandazzoWritten-By668141Victoria PikeWritten-By26-13Boomerang (Instrumental) (Rehearsal)4:27107784Frankie Valli107783Teddy RandazzoWritten-By668141Victoria PikeWritten-By26-14You To Me Are Everything (Instrumental) (Rehearsal)3:48107784Frankie Valli153599Ken GoldWritten-By741301Michael DenneMickey DeaneWritten-By26-15You're The Song (That I Can't Stop Singing) (Instrumental) (Rehearsal)2:55107784Frankie Valli153599Ken GoldWritten-By383442Tony RiversWritten-ByThe Four Seasons - Helicon27-1If We Should Lose Our Love4:15121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-2Let's Get It Right5:21121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-3Long Ago5:06121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-4Rhapsody5:17121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-5Helicon4:25121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-6Down The Hall4:11121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-7Put A Little Away4:10121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-8New York Street Song (No Easy Way)4:44121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic By27-9I Believe In You3:01121112The Four Seasons225965Bob GaudioLyrics By660090Judy ParkerLyrics By225965Bob GaudioMusic ByBonus Tracks27-10Who Loves You (Original Master Demo, Don Ciccone Vocal)7:24121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By27-11Warsaw Concerto (Live, Barres Wilkes, Pennsylvania, May 2nd 1975)5:09121112The Four Seasons715301Richard AddinsellWritten-By27-12I Got Love For You Ruby (Live, Milwaukee, June 1975)3:20121112The Four Seasons153544Sandy LinzerWritten-By27-13You're Never Too Old To Rock 'N' Roll (Demo / Rehearsal, 1983)6:44121112The Four Seasons107784Frankie ValliWritten-By267556Jerry CorbettaWritten-By27-14You're Never Too Old To Rock 'N' Roll (Live, 1983)6:59121112The Four Seasons107784Frankie ValliWritten-By267556Jerry CorbettaWritten-ByFrankie Valli - Lady Put The Light Out28-1I Need You3:24107784Frankie Valli180926Eric CarmenWritten-By28-2Second Thoughts3:19107784Frankie Valli312014Paul AnkaWritten-By28-3I Could Have Loved You3:28107784Frankie Valli252786Albert HammondWritten-By169899Carole Bayer SagerWritten-By28-4With You3:48107784Frankie Valli169899Carole Bayer SagerWritten-By389193Ken AscherWritten-By28-5Native New Yorker5:15107784Frankie Valli277171Denny RandellWritten-By153544Sandy LinzerWritten-By28-6Lady Put The Light Out4:29107784Frankie Valli1350168Fletcher & FlettGuy Fletcher / Doug FlettWritten-By28-7Boats Against The Current4:01107784Frankie Valli180926Eric CarmenWritten-By28-8Rainstorm3:55107784Frankie Valli324365Chris Andrews (3)Written-By28-9I'm Gonna Love You3:03107784Frankie Valli732053Mann And WeilBarry Mann / Cynthia WeilWritten-By28-10There's Always A Goodbye4:06107784Frankie Valli1036899Randy RichardsWritten-ByBonus Track28-11Native New Yorker (Alternate Mix, 1982)4:05107784Frankie Valli277171Denny RandellWritten-By153544Sandy LinzerWritten-ByFrankie Valli - Frankie Valli...Is The Word29-1Grease3:23107784Frankie Valli151481Barry GibbWritten-By29-2Needing You3:20107784Frankie Valli107784Frankie ValliWritten-By1214163Kevin TigheWritten-By517411Lee ShapiroWritten-By29-3Sometimes Love Songs Make Me Cry4:22107784Frankie Valli586602Bill LaBountyWritten-By347735Jay SenterWritten-By2200768Milo AdamoM. AdamoWritten-By29-4Without Your Love4:04107784Frankie Valli1214163Kevin TigheWritten-By719758Lenny Lee GoldsmithWritten-By29-5Over Me3:27107784Frankie Valli225965Bob GaudioWritten-By660090Judy ParkerWritten-By29-6Save Me, Save Me3:22107784Frankie Valli151384Albhy GalutenWritten-By151481Barry GibbWritten-By29-7You Can Do It3:24107784Frankie Valli661418Ben Weisman (2)Written-By276475Evie SandsWritten-By698921Richard GerminaroWritten-By29-8A Tear Can Tell3:50107784Frankie Valli586602Bill LaBountyWritten-By29-9You Better Go3:38107784Frankie Valli483122Fred WebbFred W. WebbWritten-By719758Lenny Lee GoldsmithWritten-By29-10No Love At All3:09107784Frankie Valli107784Frankie ValliWritten-By1214163Kevin TigheWritten-By517411Lee ShapiroWritten-ByBonus Track29-11Save Me, Save Me (45 Mix)3:12107784Frankie Valli151384Albhy GalutenWritten-By151481Barry GibbWritten-ByFrankie Valli - Back In Action (The Lost Disco Album)30-1Back In Action (With Fade)5:02107784Frankie Valli142834Bob CreweWritten-By267556Jerry CorbettaWritten-By30-2Fancy Dancer (Longer Version Than 45, With Fade)4:17107784Frankie Valli142834Bob CreweWritten-By533193L. Russell BrownWritten-By30-3Let It Be Whatever It Is (Longer Version With Extra Vocals)7:54107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By30-4Dr Dance (Extended Second Mix, With Extra Vocals)6:05107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By30-5Eat Your Heart Out (Extended Mix)5:24107784Frankie Valli142834Bob CreweWritten-By267556Jerry CorbettaWritten-By30-6Passion For Paris (Extended Mix)9:13107784Frankie Valli142834Bob CreweWritten-By261293George GershwinWritten-By267556Jerry CorbettaWritten-By30-7Soul (Latin Version)11:19107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By30-8Back In Action (Reprise) (TV Instrumental)4:53107784Frankie Valli142834Bob CreweWritten-By267556Jerry CorbettaWritten-By30-9Where Did We Go Wrong (Original Long Version, Extra Vocals)3:58107784Frankie Valli759652Marty PanzerWritten-By637270Richard KerrWritten-By30-10If It Really Wasn't Love3:11107784Frankie Valli267556Jerry CorbettaWritten-By904196Molly Ann LeikinWritten-By30-11Just Tell Me You Love Me3:25107784Frankie Valli319959Carol ConnorsWritten-By546505Dick HalliganWritten-ByFrankie Valli - Heaven Above Me31-1Where Did We Go Wrong3:41107784Frankie ValliWith796925Chris Forde759652Marty PanzerWritten-By637270Richard KerrWritten-By31-2Let It Be Whatever It Is6:43107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By31-3If It Really Wasn't Love3:12107784Frankie Valli267556Jerry CorbettaWritten-By904196Molly Ann LeikinWritten-By31-4Passion For Paris (An American In Paris)4:35107784Frankie Valli142834Bob CreweWritten-By261293George GershwinWritten-By267556Jerry CorbettaWritten-By31-5Soul / Heaven Above Me10:25107784Frankie ValliWith796925Chris Forde1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By31-6Just Tell Me You Love Me3:23107784Frankie Valli319959Carol ConnorsWritten-By546505Dick HalliganWritten-By31-7Eat Your Heart Out3:57107784Frankie Valli142834Bob CreweWritten-By267556Jerry CorbettaWritten-ByBonus Tracks31-8Back In Action (Alternate Version With New Ending, No Fade)4:54107784Frankie Valli142834Bob CreweWritten-By267556Jerry CorbettaWritten-By31-9Soul / Heaven Above Me (Latin Version)15:46107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By31-10Dr Dance (TV Mix)6:05107784Frankie Valli1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByFrankie Valli & The Four Seasons - Reunited Live32-1Who Loves You4:58107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By32-2Our Day Will Come4:51107784Frankie Valli&121112The Four Seasons632719Bob HilliardWritten-By76089Mort GarsonWritten-ByMedley3:31107784Frankie Valli&121112The Four Seasons32-3aSave It For Me1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By32-3bRag Doll1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By32-3cDawn (Go Away)225965Bob GaudioWritten-By153544Sandy LinzerWritten-By32-4Let's Hang On2:37107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By153544Sandy LinzerWritten-By32-5Can't Take My Eyes Off You3:57107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By32-6Fallen Angel4:34107784Frankie Valli&121112The Four Seasons1350168Fletcher & FlettGuy Fletcher / Doug FlettWritten-By32-7Silver Star4:00107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By32-8Slip Away4:07107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By32-9December, 1963 (Oh, What A Night)4:33107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By32-10Swearin' To God5:27107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By32-11My Eyes Adored You3:52107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By142835Kenny NolanWritten-ByMedley8:19107784Frankie Valli&121112The Four Seasons32-12aWorking My Way Back To You153544Sandy LinzerWritten-By277171Denny RandellWritten-By32-12bWill You Still Love Me Tomorrow682663Goffin And KingGerry Goffin / Carole KingWritten-By32-12cOpus 17 (Don't You Worry 'Bout Me)153544Sandy LinzerWritten-By277171Denny RandellWritten-By32-12dI've Got You Under My Skin264026Cole PorterWritten-By32-13Spend The Night In Love4:05107784Frankie Valli&121112The Four Seasons660090Judy ParkerWritten-By719758Lenny Lee GoldsmithLenny GoldsmithWritten-By32-14Heaven Must Have Sent You (Here In The Night)4:37107784Frankie Valli&121112The Four Seasons192437Dan WalshWritten-By575947Michael PriceWritten-By32-15Grease7:16107784Frankie Valli&121112The Four Seasons151481Barry GibbWritten-ByMedley5:01107784Frankie Valli&121112The Four Seasons32-16aSherry225965Bob GaudioWritten-By32-16bWalk Like A Man1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By32-16cBig Girls Don't Cry1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By32-16dBye Bye Baby (Baby Goodbye)1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByFrankie Valli & The Four Seasons - Streetfighter33-1Streetfighter5:08107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-2Veronica4:56107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-3Moonlight Memories4:06107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-4Book Of Love5:18107784Frankie Valli&121112The Four Seasons827132Charles PatrickWritten-By827130George MaloneWritten-By827129Warren DavisWritten-By33-5Did Someone Break Into Your Heart Last Night4:51107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-6Commitment3:36107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By267556Jerry CorbettaWritten-By33-7Once Inside A Woman's Heart4:16107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-8What About Tomorrow4:22107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByBonus Tracks33-9Streetfighter (12" Version)7:46107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-10Book Of Love (Live, Tropicana, Las Vegas, 1986)4:15107784Frankie Valli&121112The Four Seasons827132Charles PatrickWritten-By827130George MaloneWritten-By827129Warren DavisWritten-By33-11Swearin' To God (Live, Tropicana, Las Vegas, 1986)4:42107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By33-12Credit To Horns (Live, Tropicana, Las Vegas, 1986)0:48107784Frankie Valli&121112The Four Seasons33-13Streetfighter (Live, Tropicana, Las Vegas, 1986)6:15107784Frankie Valli&121112The Four Seasons34252Ian LevineWritten-By153544Sandy LinzerWritten-By33-14Band Intros (Live, Tropicana, Las Vegas, 1986)1:38107784Frankie Valli&121112The Four Seasons33-15They Don't Make Love Like They Used To (Live, Tropicana, Las Vegas, 1986)4:52107784Frankie Valli&121112The Four Seasons700518Red LaneWritten-By33-16Killing Time (Unreleased)5:11107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By142835Kenny NolanWritten-ByFrankie Valli & The Four Seasons - 1980s Rare, Alternates & Unissued34-1You Make It Beautiful4:01107784Frankie Valli&393315Cheryl Ladd34-2Can't Say No To You3:57107784Frankie Valli&393315Cheryl Ladd225965Bob GaudioWritten-By660090Judy ParkerWritten-By34-3Gypsy Woman3:13121112The Four SeasonsFour Seasons17589Curtis MayfieldWritten-By34-4Deep Inside Your Love (Previously Unreleased)3:16107784Frankie Valli225965Bob GaudioWritten-By660090Judy ParkerWritten-By34-5Testin' The Water (Previously Unreleased)3:50107784Frankie Valli225965Bob GaudioWritten-By660090Judy ParkerWritten-By34-6American Pop3:3349605The Manhattan TransferManhattan TransferFeaturing107784Frankie Valli34-7East Meets West (US 45)4:02121112The Four SeasonsFour Seasons&70829The Beach Boys34-8My Older Lover4:05107784Frankie Valli&375043Nathalie Archangel34-9Let's Hang On4:2649605The Manhattan TransferManhattan TransferFeaturing107784Frankie Valli34-10The Biggest Part Of Me4:50375460Juice NewtonFeaturing107784Frankie Valli34-11My Love4:16375460Juice NewtonFeaturing107784Frankie Valli34-12Can't Take My Eyes Off You (CD Single)3:50107784Frankie Valli&57000Mary GriffinThe Four Seasons - Hope + Glory35-1Love Has A Mind Of Its Own4:21121112The Four Seasons225965Bob GaudioWritten-By533193L. Russell BrownLarry BrownWritten-By35-2Learn How To Say Goodbye4:16121112The Four Seasons225965Bob GaudioWritten-By7864537Shannon GaudioWritten-By35-3Hope And Glory4:06121112The Four Seasons225965Bob GaudioWritten-By533193L. Russell BrownLarry BrownWritten-By35-4This Time4:08121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By35-5You And Your Heart So Blue3:57121112The Four Seasons138927Andy HillWritten-By253144Peter SinfieldWritten-By35-6Run For Your Life3:26121112The Four Seasons709762Paul KordaWritten-By35-7Help Me To Believe In You4:01121112The Four Seasons225965Bob GaudioWritten-By375043Nathalie ArchangelWritten-By35-8State Of My Heart4:00121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By35-9The Girl Of My Dreams4:17121112The Four Seasons225965Bob GaudioWritten-By3922054Robin SwensonWritten-By35-10Even Now4:48121112The Four Seasons153544Sandy LinzerWritten-By7864536Steven Wise (2)Written-By35-11Just The Way You Make Love3:37121112The Four Seasons225965Bob GaudioWritten-By267556Jerry CorbettaWritten-By35-12The Naked I4:38121112The Four Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-ByFrankie Valli & The Four Seasons - The Dance Album36-1The Naked I6:07107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By36-2Learn How To Say Goodbye6:01107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By7864537Shannon GaudioWritten-By36-3Love Has A Mind Of Its Own6:03107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By533193L. Russell BrownWritten-By36-4Help Me To Believe In You4:02107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By375043Nathalie ArchangelWritten-By36-5Book Of Love6:00107784Frankie Valli&121112The Four Seasons827132Charles PatrickWritten-By827130George MaloneWritten-By827129Warren DavisWritten-By36-6You And Your Heart So Blue3:57107784Frankie Valli&121112The Four Seasons138927Andy HillWritten-By253144Peter SinfieldWritten-By36-7State Of My Heart4:00107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By36-8December, 1963 (Oh, What A Night)6:13107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By36-9Who Loves You4:06107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-ByFrankie Valli & The Four Seasons - Oh What A Night37-1December, 1963 (Oh, What A Night)4:20107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By37-2The Naked I4:32107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By37-3Book Of Love4:26107784Frankie Valli&121112The Four Seasons827132Charles PatrickWritten-By827130George MaloneWritten-By827129Warren DavisWritten-By37-4Love Has A Mind Of Its Own4:21107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By533193L. Russell BrownWritten-By37-5Learn How To Say Goodbye4:16107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By7864537Shannon GaudioWritten-By37-6Fly Like An Eagle (Alternate Title For 'State Of My Heart')4:10107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By37-7You And Your Heart So Blue4:10107784Frankie Valli&121112The Four Seasons138927Andy HillWritten-By253144Peter SinfieldWritten-By37-8Who Loves You4:29107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By37-9Silver Star4:17107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By37-10Learn How To Say Goodbye (Euromix)4:10107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By7864537Shannon GaudioWritten-By37-11December, 1963 (Oh, What A Night) (Euromix)3:38107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-ByFrankie Valli & The Four Seasons - The Special Single Mixes 1988-200738-1Big Girls Don't Cry (Enhanced Version Of Original)2:25107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By38-2Big Girls Don't Cry (12" Club Mix)5:14107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By38-3Big Girls Don't Cry (Dirty Dancing Rap)5:08107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By38-4Who Loves You (Ben Liebrand Remix, 1988 Single)4:12107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By38-5Who Loves You (Ben Liebrand 12" Remix, 1988 Single)7:33107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By38-6Who Loves You (Instrumental Remix)5:40107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By38-7December, 1963 (Oh, What A Night) (Remix, Summer 1988)3:32107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By38-8December, 1963 (Oh, What A Night) (12" Remix, 1988)6:18107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By38-9December, 1963 (Oh, What A Night) (Instrumental)3:44107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By660090Judy ParkerWritten-By38-10Beggin' (Pilooski Re-edit)5:35107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By759690Peggy FarinaWritten-By38-11The Night (Pilooski Re-edit)4:43107784Frankie Valli&121112The Four Seasons809711Al RuzickaWritten-By225965Bob GaudioWritten-By38-12The Night (Four Seasons 2012 Version)4:06107784Frankie Valli&121112The Four Seasons809711Al RuzickaWritten-By225965Bob GaudioWritten-ByFrankie Valli - Romancing The '60s39-1Take Good Care Of My Baby3:35107784Frankie Valli682663Goffin And KingGerry Goffin / Carole KingWritten-By39-2My Cherie Amour3:14107784Frankie Valli225092Henry CosbyWritten-By18956Stevie WonderWritten-By191327Sylvia MoyWritten-By39-3Spanish Harlem3:50107784Frankie Valli328062Jerry LeiberWritten-By190767Phil SpectorWritten-By39-4Then You Can Tell Me Goodbye3:41107784Frankie Valli521609John D. LoudermilkWritten-By39-5Any Day Now4:14107784Frankie Valli632719Bob HilliardWritten-By58359Burt BacharachWritten-By39-6Let It Be Me3:33107784Frankie Valli282608Gilbert BécaudGilbert BecaudWritten-By638167Manny KurtzWritten-By1028293Pierre LeroyerWritten-By39-7What A Wonderful World3:16107784Frankie Valli253353Bob ThieleWritten-By436074George David WeissWritten-By39-8Call Me3:32107784Frankie Valli134700Tony HatchWritten-By39-9This Guy's In Love With You3:53107784Frankie Valli142502Bacharach And DavidBurt Bacharach / Hal DavidWritten-By39-10Sunny3:44107784Frankie Valli318476Bobby HebbWritten-By39-11My Girl / Groovin'3:47107784Frankie Valli501972Eddie BrigatiWritten-By304241Felix CavaliereWritten-By273239Ronald WhiteWritten-By86094Smokey RobinsonWilliam RobinsonWritten-By39-12What Becomes Of The Broken Hearted3:15107784Frankie Valli707463Dean & WeatherspoonJames Dean / William WeatherspoonWritten-By267899Paul RiserWritten-By39-13On Broadway3:36107784Frankie ValliFeaturing9066808"Jersey Boys" Original Broadway CastThe Jersey Boys281667Leiber & StollerJerry Leiber / Mike StollerWritten-By732053Mann And WeilBarry Mann / Cynthia WeilWritten-ByFrankie Valli - 'Tis The Seasons40-1Joy To The World / Do You Hear What I Hear?3:36107784Frankie Valli423007Blair MastersArranged By225965Bob GaudioArranged By1667841Gloria Shayne BakerWritten-By717949Noel RegneyWritten-By40-2The Christmas Song3:33107784Frankie Valli152707Mel TorméMel TormeWritten-By636384Robert Wells (2)Written-By40-3Winter Wonderland3:17107784Frankie Valli583503Dick Smith (3)Richard SmithWritten-By583504Felix BernardWritten-By40-4Merry Christmas, Baby3:57107784Frankie ValliFeaturing49624Jeff Beck643897Johnny Moore (2)Written-By674540Lou BaxterLeo BaxterWritten-By40-5Frosty The Snowman3:54107784Frankie Valli780983Jack RollinsWritten-By710699Steve Nelson (4)Written-By40-6Have Yourself A Merry Little Christmas4:17107784Frankie Valli615544Hugh MartinWritten-By615542Ralph BlaneWritten-By40-7Jingle Bell Rock2:06107784Frankie Valli697562Jim BootheWritten-By896126Joe BealWritten-By40-8Let It Snow! Let It Snow! Let It Snow!2:53107784Frankie Valli2376276Jule Styne And Sammy CahnSammy Cahn / Jule StyneWritten-By40-9Blue Christmas2:49107784Frankie Valli717185Billy HayesWritten-By688976Jay JohnsonWritten-By40-10What Are You Doing New Year's Eve3:07107784Frankie Valli439662Frank LoesserWritten-By40-11White Christmas2:56107784Frankie Valli508131Irving BerlinWritten-By40-12O Come All Ye Faithful / Angels We Have Heard On High3:28107784Frankie Valli423007Blair MastersArranged By225965Bob GaudioArranged By40-13We Wish You A Merry Christmas2:17107784Frankie Valli423007Blair MastersArranged By225965Bob GaudioArranged ByThe Four Seasons - Live At Steel Pier, Atlantic City, July 7th, 197241-1Opus 17 (Don't Worry 'Bout Me)3:51121112The Four Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By41-2I Got Love2:36121112The Four Seasons636430Gary GeldWritten-By41-3Can't Take My Eyes Off You3:37121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By41-4Don't Think Twice, It's All Right3:22121112The Four Seasons59792Bob DylanWritten-By41-5Blowin' In The Wind4:10121112The Four Seasons59792Bob DylanWritten-By41-6Working My Way Back To You2:37121112The Four Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By41-7Will You Still Love Me Tomorrow2:18121112The Four Seasons682663Goffin And KingGerry Goffin / Carole KingWritten-By41-8Rag Doll2:11121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By41-9Love The One You're With3:01121112The Four Seasons236968Stephen StillsWritten-ByMedley6:56121112The Four Seasons41-10aSherry225965Bob GaudioWritten-By41-10bWalk Like A Man1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By41-10cBig Girls Don't Cry1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By41-10dBye Bye Baby (Baby Goodbye)1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By41-11If3:32121112The Four Seasons286254David GatesWritten-By41-12Let's Hang On5:16121112The Four Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By153544Sandy LinzerWritten-By41-13C'mon Marianne 3:51121112The Four Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By41-14If I Were A Carpenter3:32121112The Four Seasons123766Tim HardinWritten-ByThe Four Seasons - Live At Lucifer's, Boston, 197342-1Dawn (Go Away)3:10121112The Four Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By42-2The Sun Ain't Gonna Shine Anymore3:44121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By42-3The Night4:24121112The Four Seasons809711Al RuzickaWritten-By225965Bob GaudioWritten-ByMedley4:08121112The Four Seasons42-4aRonnie1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By42-4bAnd That Reminds Me679016Camillo BargoniWritten-By775038Dante PanzutiWritten-By539034Al StillmanWritten-By679017Paul SiegelWritten-By42-4cCandy Girl327751Larry SantosWritten-By42-4dTell It To The Rain635561Mike PetrilloWritten-By2036157Angelo CifelliChubby CifelliWritten-By42-5Rag Doll3:23121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By42-6A New Beginning6:31121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By42-7I Can See Clearly Now4:55121112The Four Seasons393019Bill DeLoachLead Vocals254128Johnny NashWritten-By42-8I've Got You Under My Skin4:17121112The Four Seasons264026Cole PorterWritten-By42-9Can't Take My Eyes Off You3:44121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By42-10C'mon Marianne3:56121112The Four Seasons533193L. Russell BrownWritten-By876377Raymond BloodworthWritten-By42-11The Nearness Of You3:48121112The Four Seasons42-12You're Ready Now7:06121112The Four SeasonsFrankie Valli & The Four Seasons - Live At Bachelors III, Ft. Lauderdale, June 1974Medley3:26107784Frankie Valli&121112The Four Seasons43-1aSave It For Me1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By43-1bOpus 18 (Don't You Worry 'Bout Me)153544Sandy LinzerWritten-By277171Denny RandellWritten-By43-2I Got Love1:51107784Frankie Valli&121112The Four Seasons636430Gary GeldWritten-By43-3Introduction To The Group1:28107784Frankie Valli&121112The Four Seasons43-4Dawn (Go Away)2:39107784Frankie Valli&121112The Four Seasons225965Bob GaudioWritten-By153544Sandy LinzerWritten-By43-5You Are The Sunshine Of My Life2:57107784Frankie Valli&121112The Four Seasons18956Stevie WonderWritten-By43-6Working My Way Back To You2:46107784Frankie Valli&121112The Four Seasons277171Denny RandellWritten-By153544Sandy LinzerWritten-By43-7Can't Take My Eyes Off You3:55107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By43-8Stay2:10107784Frankie Valli&121112The Four Seasons383318Maurice WilliamsWritten-By43-9Intro; Silence Is Golden3:58107784Frankie Valli&121112The Four Seasons1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By43-10My Love3:58107784Frankie Valli&121112The Four Seasons35301Paul McCartneyWritten-ByMedley4:27107784Frankie Valli&121112The Four Seasons43-11aSherry225965Bob GaudioWritten-By43-11bWalk Like A Man1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By43-11cBig Girls Don't Cry1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By43-11dBye Bye Baby (Baby Goodbye)1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-ByMedley6:50107784Frankie Valli&121112The Four Seasons43-12aBridge Over Troubled Water106474Paul SimonWritten-By43-12bThe Long And Winding Road779927Lennon-McCartneyJohn Lennon / Paul McCartneyWritten-By43-12cMcArthur Park266406Jimmy WebbWritten-ByMedley4:39107784Frankie Valli&121112The Four Seasons43-13aThe Way We Were290091Alan & Marilyn BergmanAlan Bergman / Marilyn BergmanWritten-By155038Marvin HamlischWritten-By43-13bAll In Love Is Fair18956Stevie WonderWritten-By43-14Love's Theme4:13107784Frankie Valli&121112The Four Seasons18978Barry WhiteWritten-By43-15More Introductions1:15107784Frankie Valli&121112The Four Seasons43-16My Eyes Adored You3:33107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By142835Kenny NolanWritten-By43-17If I Were A Carpenter3:06107784Frankie Valli&121112The Four Seasons123766Tim HardinWritten-By43-18If3:46107784Frankie Valli&121112The Four Seasons286254David GatesWritten-By43-19Let's Hang On4:19107784Frankie Valli&121112The Four Seasons142834Bob CreweWritten-By277171Denny RandellWritten-By153544Sandy LinzerWritten-ByThe Music of Frankie Valli & The Four Seasons For Kids - Jersey Babys44-1December, 1963 (Oh, What A Night)3:5211898878Jersey Babys225965Bob GaudioWritten-By660090Judy ParkerWritten-ByMedley4:3811898878Jersey Babys44-2aSherry225965Bob GaudioWritten-By44-2bWalk Like A Man1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-3Ronnie3:1811898878Jersey Babys1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-4Big Girls Don't Cry2:3611898878Jersey Babys1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-5Save It For Me2:3411898878Jersey Babys1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-6Cry For Me2:2411898878Jersey Babys225965Bob GaudioWritten-By44-7(Who Wears) Short Shorts2:5711898878Jersey Babys864316Bill CrandallBill CrandellWritten-By864315Bill DaltonWritten-By225965Bob GaudioWritten-By734188Tom AustinWritten-By44-8Rag Doll2:5711898878Jersey Babys1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-9Silence Is Golden3:2011898878Jersey Babys1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-10Dawn (Go Away)3:1311898878Jersey Babys225965Bob GaudioWritten-By153544Sandy LinzerWritten-By44-11Can't Take My Eyes Off You3:4611898878Jersey Babys1631309Bob Crewe & Bob GaudioBob Crewe / Bob GaudioWritten-By44-12Who Loves You4:2111898878Jersey Babys225965Bob GaudioWritten-By660090Judy ParkerWritten-By44-13December, 1963 (Oh, What A Night) (Reprise)3:4811898878Jersey Babys225965Bob GaudioWritten-By660090Judy ParkerWritten-ByThe 4 Seasons - The Genuine Imitation Life Gazette (Mono)A1American Crucifixion Resurrection6:48121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByA2Mrs Stately's Garden3:12121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByA3Look Up, Look Over4:42121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByA4Something's On Her Mind2:44121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByA5Saturday's Father3:10121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByB1Wall Street Village Day4:26121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByB2Genuine Imitation Life4:57121112The Four SeasonsThe 4 Seasons541024Jake HolmesWritten-ByB3Idaho3:03121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByB4Wonder What You'll Be3:39121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-ByB5Soul Of A Woman7:05121112The Four SeasonsThe 4 Seasons225965Bob GaudioWritten-By541024Jake HolmesWritten-By48207Copyright Control21Published By1482356Marine Ballroom, Steel Pier, Atlantic City23Recorded At1826784Lucifer, Boston23Recorded At3283851Bachelors III, Ft. Lauderdale23Recorded At1351680Bob Gaudio & Frankie Valli6Licensed From285783The Four Seasons Partnership6Licensed From53821Rhino Entertainment Company7Licensed Through2345Warner Music Group4Record Company272782UMG Recordings, Inc.6Licensed From295056Curb Records, Inc.6Licensed From101418BBC6Licensed From1351680Bob Gaudio & Frankie Valli13Phonographic Copyright (p)285783The Four Seasons Partnership13Phonographic Copyright (p)272782UMG Recordings, Inc.13Phonographic Copyright (p)295056Curb Records, Inc.13Phonographic Copyright (p)393014Snapper Music Ltd.13Phonographic Copyright (p)269369Universal Motown Records13Phonographic Copyright (p)272782UMG Recordings, Inc.4Record Company1351680Bob Gaudio & Frankie Valli14Copyright (c)285783The Four Seasons Partnership14Copyright (c)272782UMG Recordings, Inc.14Copyright (c)295056Curb Records, Inc.14Copyright (c)393014Snapper Music Ltd.14Copyright (c)269369Universal Motown Records14Copyright (c) + +13402989noisehz I Feel Bad For Your Hard DriveMP3ElectronicUkraine2023-12-15Needs Vote0Month 01: Day 001101202303404505606707808909101011111212131314141515161617171818191920202121222223232424Month 01: Day 002250126022703280429053006310732083309341035113612371338143915401641174218431944204521462247234824Month 01: Day 003490150025103520453055406550756085709581059116012611362146315641665176618671968206921702271237224Month 01: Day 004730174027503760477057806790780088109821083118412851386148715881689179018911992209321942295239624Month 01: Day 005970198029903100041010510206103071040810509106101071110812109131101411115112161131711418115191162011721118221192312024Month 01: Day 006121011220212303124041250512606127071280812909130101311113212133131341413515136161371713818139191402014121142221432314424Month 01: Day 007145011460214703148041490515006151071520815309154101551115612157131581415915160161611716218163191642016521166221672316824Month 01: Day 008169011700217103172041730517406175071760817709178101791118012181131821418315184161851718618187191882018921190221912319224Month 01: Day 009193011940219503196041970519806199072000820109202102031120412205132061420715208162091721018211192122021321214222152321624Month 01: Day 010217012180221903220042210522206223072240822509226102271122812229132301423115232162331723418235192362023721238222392324024Month 01: Day 011241012420224303244042450524606247072480824909250102511125212253132541425515256162571725818259192602026121262222632326424Month 01: Day 012265012660226703268042690527006271072720827309274102751127612277132781427915280162811728218283192842028521286222872328824Month 01: Day 013289012900229103292042930529406295072960829709298102991130012301133021430315304163051730618307193082030921310223112331224Month 01: Day 014313013140231503316043170531806319073200832109322103231132412325133261432715328163291733018331193322033321334223352333624Month 01: Day 015337013380233903340043410534206343073440834509346103471134812349133501435115352163531735418355193562035721358223592336024Month 01: Day 016361013620236303364043650536606367073680836909370103711137212373133741437515376163771737818379193802038121382223832338424Month 01: Day 017385013860238703388043890539006391073920839309394103951139612397133981439915400164011740218403194042040521406224072340824Month 01: Day 018409014100241103412044130541406415074160841709418104191142012421134221442315424164251742618427194282042921430224312343224Month 01: Day 019433014340243503436044370543806439074400844109442104431144412445134461444715448164491745018451194522045321454224552345624Month 01: Day 020457014580245903460044610546206463074640846509466104671146812469134701447115472164731747418475194762047721478224792348024Month 01: Day 021481014820248303484044850548606487074880848909490104911149212493134941449515496164971749818499195002050121502225032350424Month 01: Day 022505015060250703508045090551006511075120851309514105151151612517135181451915520165211752218523195242052521526225272352824Month 01: Day 023529015300253103532045330553406535075360853709538105391154012541135421454315544165451754618547195482054921550225512355224Month 01: Day 024553015540255503556045570555806559075600856109562105631156412565135661456715568165691757018571195722057321574225752357624Month 01: Day 025577015780257903580045810558206583075840858509586105871158812589135901459115592165931759418595195962059721598225992360024Month 01: Day 026601016020260303604046050560606607076080860909610106111161212613136141461515616166171761818619196202062121622226232362424Month 01: Day 027625016260262703628046290563006631076320863309634106351163612637136381463915640166411764218643196442064521646226472364824Month 01: Day 028649016500265103652046530565406655076560865709658106591166012661136621466315664166651766618667196682066921670226712367224Month 01: Day 029673016740267503676046770567806679076800868109682106831168412685136861468715688166891769018691196922069321694226952369624Month 01: Day 030697016980269903700047010570206703077040870509706107071170812709137101471115712167131771418715197162071721718227192372024Month 02: Day 001721017220272303724047250572606727077280872909730107311173212733137341473515736167371773818739197402074121742227432374424Month 02: Day 002745017460274703748047490575006751077520875309754107551175612757137581475915760167611776218763197642076521766227672376824Month 02: Day 003769017700277103772047730577406775077760877709778107791178012781137821478315784167851778618787197882078921790227912379224Month 02: Day 004793017940279503796047970579806799078000880109802108031180412805138061480715808168091781018811198122081321814228152381624Month 02: Day 005817018180281903820048210582206823078240882509826108271182812829138301483115832168331783418835198362083721838228392384024Month 02: Day 006841018420284303844048450584606847078480884909850108511185212853138541485515856168571785818859198602086121862228632386424Month 02: Day 007865018660286703868048690587006871078720887309874108751187612877138781487915880168811788218883198842088521886228872388824Month 02: Day 008889018900289103892048930589406895078960889709898108991190012901139021490315904169051790618907199082090921910229112391224Month 02: Day 009913019140291503916049170591806919079200892109922109231192412925139261492715928169291793018931199322093321934229352393624Month 02: Day 010937019380293903940049410594206943079440894509946109471194812949139501495115952169531795418955199562095721958229592396024Month 02: Day 011961019620296303964049650596606967079680896909970109711197212973139741497515976169771797818979199802098121982229832398424Month 02: Day 012985019860298703988049890599006991079920899309994109951199612997139981499915100016100117100218100319100420100521100622100723100824Month 02: Day 013100901101002101103101204101305101406101507101608101709101810101911102012102113102214102315102416102517102618102719102820102921103022103123103224Month 02: Day 014103301103402103503103604103705103806103907104008104109104210104311104412104513104614104715104816104917105018105119105220105321105422105523105624Month 02: Day 015105701105802105903106004106105106206106307106408106509106610106711106812106913107014107115107216107317107418107519107620107721107822107923108024Month 02: Day 016108101108202108303108404108505108606108707108808108909109010109111109212109313109414109515109616109717109818109919110020110121110222110323110424Month 02: Day 017110501110602110703110804110905111006111107111208111309111410111511111612111713111814111915112016112117112218112319112420112521112622112723112824Month 02: Day 018112901113002113103113204113305113406113507113608113709113810113911114012114113114214114315114416114517114618114719114820114921115022115123115224Month 02: Day 019115301115402115503115604115705115806115907116008116109116210116311116412116513116614116715116816116917117018117119117220117321117422117523117624Month 02: Day 020117701117802117903118004118105118206118307118408118509118610118711118812118913119014119115119216119317119418119519119620119721119822119923120024Month 02: Day 021120101120202120303120404120505120606120707120808120909121010121111121212121313121414121515121616121717121818121919122020122121122222122323122424Month 02: Day 022122501122602122703122804122905123006123107123208123309123410123511123612123713123814123915124016124117124218124319124420124521124622124723124824Month 02: Day 023124901125002125103125204125305125406125507125608125709125810125911126012126113126214126315126416126517126618126719126820126921127022127123127224Month 02: Day 024127301127402127503127604127705127806127907128008128109128210128311128412128513128614128715128816128917129018129119129220129321129422129523129624Month 02: Day 025129701129802129903130004130105130206130307130408130509130610130711130812130913131014131115131216131317131418131519131620131721131822131923132024Month 02: Day 026132101132202132303132404132505132606132707132808132909133010133111133212133313133414133515133616133717133818133919134020134121134222134323134424Month 02: Day 027134501134602134703134804134905135006135107135208135309135410135511135612135713135814135915136016136117136218136319136420136521136622136723136824Month 02: Day 028136901137002137103137204137305137406137507137608137709137810137911138012138113138214138315138416138517138618138719138820138921139022139123139224Month 02: Day 029139301139402139503139604139705139806139907140008140109140210140311140412140513140614140715140816140917141018141119141220141321141422141523141624Month 02: Day 030141701141802141903142004142105142206142307142408142509142610142711142812142913143014143115143216143317143418143519143620143721143822143923144024Month 03: Day 001144101144202144303144404144505144606144707144808144909145010145111145212145313145414145515145616145717145818145919146020146121146222146323146424Month 03: Day 002146501146602146703146804146905147006147107147208147309147410147511147612147713147814147915148016148117148218148319148420148521148622148723148824Month 03: Day 003148901149002149103149204149305149406149507149608149709149810149911150012150113150214150315150416150517150618150719150820150921151022151123151224Month 03: Day 004151301151402151503151604151705151806151907152008152109152210152311152412152513152614152715152816152917153018153119153220153321153422153523153624Month 03: Day 005153701153802153903154004154105154206154307154408154509154610154711154812154913155014155115155216155317155418155519155620155721155822155923156024Month 03: Day 006156101156202156303156404156505156606156707156808156909157010157111157212157313157414157515157616157717157818157919158020158121158222158323158424Month 03: Day 007158501158602158703158804158905159006159107159208159309159410159511159612159713159814159915160016160117160218160319160420160521160622160723160824Month 03: Day 008160901161002161103161204161305161406161507161608161709161810161911162012162113162214162315162416162517162618162719162820162921163022163123163224Month 03: Day 009163301163402163503163604163705163806163907164008164109164210164311164412164513164614164715164816164917165018165119165220165321165422165523165624Month 03: Day 010165701165802165903166004166105166206166307166408166509166610166711166812166913167014167115167216167317167418167519167620167721167822167923168024Month 03: Day 011168101168202168303168404168505168606168707168808168909169010169111169212169313169414169515169616169717169818169919170020170121170222170323170424Month 03: Day 012170501170602170703170804170905171006171107171208171309171410171511171612171713171814171915172016172117172218172319172420172521172622172723172824Month 03: Day 013172901173002173103173204173305173406173507173608173709173810173911174012174113174214174315174416174517174618174719174820174921175022175123175224Month 03: Day 014175301175402175503175604175705175806175907176008176109176210176311176412176513176614176715176816176917177018177119177220177321177422177523177624Month 03: Day 015177701177802177903178004178105178206178307178408178509178610178711178812178913179014179115179216179317179418179519179620179721179822179923180024Month 03: Day 016180101180202180303180404180505180606180707180808180909181010181111181212181313181414181515181616181717181818181919182020182121182222182323182424Month 03: Day 017182501182602182703182804182905183006183107183208183309183410183511183612183713183814183915184016184117184218184319184420184521184622184723184824Month 03: Day 018184901185002185103185204185305185406185507185608185709185810185911186012186113186214186315186416186517186618186719186820186921187022187123187224Month 03: Day 019187301187402187503187604187705187806187907188008188109188210188311188412188513188614188715188816188917189018189119189220189321189422189523189624Month 03: Day 020189701189802189903190004190105190206190307190408190509190610190711190812190913191014191115191216191317191418191519191620191721191822191923192024Month 03: Day 021192101192202192303192404192505192606192707192808192909193010193111193212193313193414193515193616193717193818193919194020194121194222194323194424Month 03: Day 022194501194602194703194804194905195006195107195208195309195410195511195612195713195814195915196016196117196218196319196420196521196622196723196824Month 03: Day 023196901197002197103197204197305197406197507197608197709197810197911198012198113198214198315198416198517198618198719198820198921199022199123199224Month 03: Day 024199301199402199503199604199705199806199907200008200109200210200311200412200513200614200715200816200917201018201119201220201321201422201523201624Month 03: Day 025201701201802201903202004202105202206202307202408202509202610202711202812202913203014203115203216203317203418203519203620203721203822203923204024Month 03: Day 026204101204202204303204404204505204606204707204808204909205010205111205212205313205414205515205616205717205818205919206020206121206222206323206424Month 03: Day 027206501206602206703206804206905207006207107207208207309207410207511207612207713207814207915208016208117208218208319208420208521208622208723208824Month 03: Day 028208901209002209103209204209305209406209507209608209709209810209911210012210113210214210315210416210517210618210719210820210921211022211123211224Month 03: Day 029211301211402211503211604211705211806211907212008212109212210212311212412212513212614212715212816212917213018213119213220213321213422213523213624Month 03: Day 030213701213802213903214004214105214206214307214408214509214610214711214812214913215014215115215216215317215418215519215620215721215822215923216024Month 04: Day 001216101216202216303216404216505216606216707216808216909217010217111217212217313217414217515217616217717217818217919218020218121218222218323218424Month 04: Day 002218501218602218703218804218905219006219107219208219309219410219511219612219713219814219915220016220117220218220319220420220521220622220723220824Month 04: Day 003220901221002221103221204221305221406221507221608221709221810221911222012222113222214222315222416222517222618222719222820222921223022223123223224Month 04: Day 004223301223402223503223604223705223806223907224008224109224210224311224412224513224614224715224816224917225018225119225220225321225422225523225624Month 04: Day 005225701225802225903226004226105226206226307226408226509226610226711226812226913227014227115227216227317227418227519227620227721227822227923228024Month 04: Day 006228101228202228303228404228505228606228707228808228909229010229111229212229313229414229515229616229717229818229919230020230121230222230323230424Month 04: Day 007230501230602230703230804230905231006231107231208231309231410231511231612231713231814231915232016232117232218232319232420232521232622232723232824Month 04: Day 008232901233002233103233204233305233406233507233608233709233810233911234012234113234214234315234416234517234618234719234820234921235022235123235224Month 04: Day 009235301235402235503235604235705235806235907236008236109236210236311236412236513236614236715236816236917237018237119237220237321237422237523237624Month 04: Day 010237701237802237903238004238105238206238307238408238509238610238711238812238913239014239115239216239317239418239519239620239721239822239923240024Month 04: Day 011240101240202240303240404240505240606240707240808240909241010241111241212241313241414241515241616241717241818241919242020242121242222242323242424Month 04: Day 012242501242602242703242804242905243006243107243208243309243410243511243612243713243814243915244016244117244218244319244420244521244622244723244824Month 04: Day 013244901245002245103245204245305245406245507245608245709245810245911246012246113246214246315246416246517246618246719246820246921247022247123247224Month 04: Day 014247301247402247503247604247705247806247907248008248109248210248311248412248513248614248715248816248917249018249119249220249321249422249523249624Month 04: Day 015249701249802249903250004250105250206250307250408250509250610250711250812250913251014251115251216251317251418251519251620251721251822251923252024Month 04: Day 016252101252202252303252404252505252606252707252808252909253010253111253212253313253414253515253616253717253818253919254020254121254222254323254424Month 04: Day 017254501254602254703254804254905255006255107255208255309255410255511255612255713255814255915256016256117256218256319256420256521256622256723256824Month 04: Day 018256901257002257103257204257305257406257507257608257709257810257911258012258113258214258315258416258517258618258719258820258921259022259123259224Month 04: Day 019259301259402259503259604259705259806259907260008260109260210260311260412260513260614260715260816260917261018261119261220261321261422261523261624Month 04: Day 020261701261802261903262004262105262206262307262408262509262610262711262812262913263014263115263216263317263418263519263620263721263822263923264024Month 04: Day 021264101264202264303264404264505264606264707264808264909265010265111265212265313265414265515265616265717265818265919266020266121266222266323266424Month 04: Day 022266501266602266703266804266905267006267107267208267309267410267511267612267713267814267915268016268117268218268319268420268521268622268723268824Month 04: Day 023268901269002269103269204269305269406269507269608269709269810269911270012270113270214270315270416270517270618270719270820270921271022271123271224Month 04: Day 024271301271402271503271604271705271806271907272008272109272210272311272412272513272614272715272816272917273018273119273220273321273422273523273624Month 04: Day 025273701273802273903274004274105274206274307274408274509274610274711274812274913275014275115275216275317275418275519275620275721275822275923276024Month 04: Day 026276101276202276303276404276505276606276707276808276909277010277111277212277313277414277515277616277717277818277919278020278121278222278323278424Month 04: Day 027278501278602278703278804278905279006279107279208279309279410279511279612279713279814279915280016280117280218280319280420280521280622280723280824Month 04: Day 028280901281002281103281204281305281406281507281608281709281810281911282012282113282214282315282416282517282618282719282820282921283022283123283224Month 04: Day 029283301283402283503283604283705283806283907284008284109284210284311284412284513284614284715284816284917285018285119285220285321285422285523285624Month 04: Day 030285701285802285903286004286105286206286307286408286509286610286711286812286913287014287115287216287317287418287519287620287721287822287923288024Month 05: Day 001288101288202288303288404288505288606288707288808288909289010289111289212289313289414289515289616289717289818289919290020290121290222290323290424Month 05: Day 002290501290602290703290804290905291006291107291208291309291410291511291612291713291814291915292016292117292218292319292420292521292622292723292824Month 05: Day 003292901293002293103293204293305293406293507293608293709293810293911294012294113294214294315294416294517294618294719294820294921295022295123295224Month 05: Day 004295301295402295503295604295705295806295907296008296109296210296311296412296513296614296715296816296917297018297119297220297321297422297523297624Month 05: Day 005297701297802297903298004298105298206298307298408298509298610298711298812298913299014299115299216299317299418299519299620299721299822299923300024Month 05: Day 006300101300202300303300404300505300606300707300808300909301010301111301212301313301414301515301616301717301818301919302020302121302222302323302424Month 05: Day 007302501302602302703302804302905303006303107303208303309303410303511303612303713303814303915304016304117304218304319304420304521304622304723304824Month 05: Day 008304901305002305103305204305305305406305507305608305709305810305911306012306113306214306315306416306517306618306719306820306921307022307123307224Month 05: Day 009307301307402307503307604307705307806307907308008308109308210308311308412308513308614308715308816308917309018309119309220309321309422309523309624Month 05: Day 010309701309802309903310004310105310206310307310408310509310610310711310812310913311014311115311216311317311418311519311620311721311822311923312024Month 05: Day 011312101312202312303312404312505312606312707312808312909313010313111313212313313313414313515313616313717313818313919314020314121314222314323314424Month 05: Day 012314501314602314703314804314905315006315107315208315309315410315511315612315713315814315915316016316117316218316319316420316521316622316723316824Month 05: Day 013316901317002317103317204317305317406317507317608317709317810317911318012318113318214318315318416318517318618318719318820318921319022319123319224Month 05: Day 014319301319402319503319604319705319806319907320008320109320210320311320412320513320614320715320816320917321018321119321220321321321422321523321624Month 05: Day 015321701321802321903322004322105322206322307322408322509322610322711322812322913323014323115323216323317323418323519323620323721323822323923324024Month 05: Day 016324101324202324303324404324505324606324707324808324909325010325111325212325313325414325515325616325717325818325919326020326121326222326323326424Month 05: Day 017326501326602326703326804326905327006327107327208327309327410327511327612327713327814327915328016328117328218328319328420328521328622328723328824Month 05: Day 018328901329002329103329204329305329406329507329608329709329810329911330012330113330214330315330416330517330618330719330820330921331022331123331224Month 05: Day 019331301331402331503331604331705331806331907332008332109332210332311332412332513332614332715332816332917333018333119333220333321333422333523333624Month 05: Day 020333701333802333903334004334105334206334307334408334509334610334711334812334913335014335115335216335317335418335519335620335721335822335923336024Month 05: Day 021336101336202336303336404336505336606336707336808336909337010337111337212337313337414337515337616337717337818337919338020338121338222338323338424Month 05: Day 022338501338602338703338804338905339006339107339208339309339410339511339612339713339814339915340016340117340218340319340420340521340622340723340824Month 05: Day 023340901341002341103341204341305341406341507341608341709341810341911342012342113342214342315342416342517342618342719342820342921343022343123343224Month 05: Day 024343301343402343503343604343705343806343907344008344109344210344311344412344513344614344715344816344917345018345119345220345321345422345523345624Month 05: Day 025345701345802345903346004346105346206346307346408346509346610346711346812346913347014347115347216347317347418347519347620347721347822347923348024Month 05: Day 026348101348202348303348404348505348606348707348808348909349010349111349212349313349414349515349616349717349818349919350020350121350222350323350424Month 05: Day 027350501350602350703350804350905351006351107351208351309351410351511351612351713351814351915352016352117352218352319352420352521352622352723352824Month 05: Day 028352901353002353103353204353305353406353507353608353709353810353911354012354113354214354315354416354517354618354719354820354921355022355123355224Month 05: Day 029355301355402355503355604355705355806355907356008356109356210356311356412356513356614356715356816356917357018357119357220357321357422357523357624Month 05: Day 030357701357802357903358004358105358206358307358408358509358610358711358812358913359014359115359216359317359418359519359620359721359822359923360024Month 06: Day 001360101360202360303360404360505360606360707360808360909361010361111361212361313361414361515361616361717361818361919362020362121362222362323362424Month 06: Day 002362501362602362703362804362905363006363107363208363309363410363511363612363713363814363915364016364117364218364319364420364521364622364723364824Month 06: Day 003364901365002365103365204365305365406365507365608365709365810365911366012366113366214366315366416366517366618366719366820366921367022367123367224Month 06: Day 004367301367402367503367604367705367806367907368008368109368210368311368412368513368614368715368816368917369018369119369220369321369422369523369624Month 06: Day 005369701369802369903370004370105370206370307370408370509370610370711370812370913371014371115371216371317371418371519371620371721371822371923372024Month 06: Day 006372101372202372303372404372505372606372707372808372909373010373111373212373313373414373515373616373717373818373919374020374121374222374323374424Month 06: Day 007374501374602374703374804374905375006375107375208375309375410375511375612375713375814375915376016376117376218376319376420376521376622376723376824Month 06: Day 008376901377002377103377204377305377406377507377608377709377810377911378012378113378214378315378416378517378618378719378820378921379022379123379224Month 06: Day 009379301379402379503379604379705379806379907380008380109380210380311380412380513380614380715380816380917381018381119381220381321381422381523381624Month 06: Day 010381701381802381903382004382105382206382307382408382509382610382711382812382913383014383115383216383317383418383519383620383721383822383923384024Month 06: Day 011384101384202384303384404384505384606384707384808384909385010385111385212385313385414385515385616385717385818385919386020386121386222386323386424Month 06: Day 012386501386602386703386804386905387006387107387208387309387410387511387612387713387814387915388016388117388218388319388420388521388622388723388824Month 06: Day 013388901389002389103389204389305389406389507389608389709389810389911390012390113390214390315390416390517390618390719390820390921391022391123391224Month 06: Day 014391301391402391503391604391705391806391907392008392109392210392311392412392513392614392715392816392917393018393119393220393321393422393523393624Month 06: Day 015393701393802393903394004394105394206394307394408394509394610394711394812394913395014395115395216395317395418395519395620395721395822395923396024Month 06: Day 016396101396202396303396404396505396606396707396808396909397010397111397212397313397414397515397616397717397818397919398020398121398222398323398424Month 06: Day 017398501398602398703398804398905399006399107399208399309399410399511399612399713399814399915400016400117400218400319400420400521400622400723400824Month 06: Day 018400901401002401103401204401305401406401507401608401709401810401911402012402113402214402315402416402517402618402719402820402921403022403123403224Month 06: Day 019403301403402403503403604403705403806403907404008404109404210404311404412404513404614404715404816404917405018405119405220405321405422405523405624Month 06: Day 020405701405802405903406004406105406206406307406408406509406610406711406812406913407014407115407216407317407418407519407620407721407822407923408024Month 06: Day 021408101408202408303408404408505408606408707408808408909409010409111409212409313409414409515409616409717409818409919410020410121410222410323410424Month 06: Day 022410501410602410703410804410905411006411107411208411309411410411511411612411713411814411915412016412117412218412319412420412521412622412723412824Month 06: Day 023412901413002413103413204413305413406413507413608413709413810413911414012414113414214414315414416414517414618414719414820414921415022415123415224Month 06: Day 024415301415402415503415604415705415806415907416008416109416210416311416412416513416614416715416816416917417018417119417220417321417422417523417624Month 06: Day 025417701417802417903418004418105418206418307418408418509418610418711418812418913419014419115419216419317419418419519419620419721419822419923420024Month 06: Day 026420101420202420303420404420505420606420707420808420909421010421111421212421313421414421515421616421717421818421919422020422121422222422323422424Month 06: Day 027422501422602422703422804422905423006423107423208423309423410423511423612423713423814423915424016424117424218424319424420424521424622424723424824Month 06: Day 028424901425002425103425204425305425406425507425608425709425810425911426012426113426214426315426416426517426618426719426820426921427022427123427224Month 06: Day 029427301427402427503427604427705427806427907428008428109428210428311428412428513428614428715428816428917429018429119429220429321429422429523429624Month 06: Day 030429701429802429903430004430105430206430307430408430509430610430711430812430913431014431115431216431317431418431519431620431721431822431923432024 + +14234650Lord PoozixGrim And Frostbitten Penguins14234650Lord PoozixObjects, Melodica, Harmonica, Computer, SynthesizerMPEG-4 VideoElectronicHip HopJazzRockNon-MusicUkraine2024-03-14Needs Vote01Spell Of Death0:022Did You Take Your Pills?0:033Where The Carcass Waits For Afterlife0:024In Sickness0:025Unholy Depiction0:026Out To Die0:027Endless Hate0:028Living Sacrifice0:029Human Dead End0:0110Anger, Dismissal, Revenge0:0311The Summoning0:0612The Massacre Begins0:0613Screams Of The Dead0:0614Forsaken Angel0:0815Silence Awaits Me0:0716Ravenous Wolves Of Bestial Nights0:0917Death To The Tyrant0:0218Alone In The Forest0:1119Dark Lord Take Me In0:0920Morbid Hell0:2021Frozen, Black And Grim0:1722The War From The Darkness Sites Of Earth0:0323Mysterii0:0124Defamed Venerations0:0325Tabula Rasa0:0126Evil In All Men0:0127Nocturnal Evil0:0228Inferno0:0629Storm Of Nihil0:0330Black Death0:0131Enthroning The Disease0:0132Ritual0:0133The Coming Of Chaos0:0134Nocturnal Dominion0:0035Goulish Bereavement0:0136Shadows On The Crucifix0:0037Angels Fear0:0138Candle, Blade And Vessel0:0039Til Helvete0:0140Into The Eternal Flames0:0041Celestial Bitterness0:0142Northern Anger0:0443Visions Of The Apocalypse0:0244Demon Kings0:0245Secrets Of The Black Fire0:0446Dark Spiritual Liberation0:0347Glory Of Unholy Sky0:0948The Last Confession0:0249Poison Of God0:0150Untitled0:0151Hellish Extasy0:0252Abyssus Invocat0:0153Awake In My Coffin0:0254In The Shade Of Death0:0355Grim And Frostbitten Kittens0:0356Infernal Realm0:0257Preastigitum Altareas0:0258Arrival Of The Dark Lords0:0559Deadly Pale Faces Of Night0:0560Triumphant Warlord0:0661Attack Of The Midnight Shadows0:0162Exorcism0:0863Lands Of Ancestral Battles0:0464Forgotten In Nameless Suffering0:0165Impaled By A Thousand Shadows0:0166Goat Lust Haze0:0167Abismal Visions Of The Fallen0:0268Evoking The Khaosatan0:0269Ancient Nocturnal Sorrow0:0170Children Of Doom0:0171Belial's Legacy0:0172Dark Prophecy0:0573Lorem Ipsum De Profundis Clamavi Suspiria De Profundis0:0274Enter The Eternal Fire0:0775One Thousand Days In Sodom0:0376Ceremony0:0277Fuck Off Nowadays Shitcore0:0278The True Face Of Evil0:0379Total Apocalypse0:0680Via Dolorosa0:0581The Most High Majesty Of The Eternal0:0882Celestial Poison0:0283Mislaid In The Weird Labyrinth Of Mirrors0:0484The Funeral Of Being0:0185Black Wind Of War0:0186Dark Blasphemous Moon0:0187Canceric Invokation0:0588Nightspirit's Forest0:0289Blasphemies Of Inverted Crucifixion0:0990Darkest Oath0:0391The Arrival Of Satanic Forces0:0792Land Of Darkness Eternal Night0:0493Satanic Ritual0:0194Prophecy0:0195Black Allegiance0:0396Burning Flag Of The Fallen0:0697Dungeons Of Darkness0:0698Triumph To Eternal Glory0:0199The Repellent Scars Of Abandon And Election0:04100Black Funeral0:00101The Secrets Of The Black Arts0:13102Triumph Of Fire0:03103Ritus Incendium Diabolus0:01104Baphometic Goat0:01105Satanic Armageddon0:03106He Whom Shadows Move Towards0:05107The Dark Castle In The Deep Forest0:03108Songs Of Ancient Satanic Might0:06109War0:04110Proclamation To Him0:03111Hell's Retribution For False Prophets0:03112Black Sigil0:01113Riding My Bike For Hours In The Name Of O9A0:01114Seven Spears Of Necromancy0:08115Shadows Of Satanic War0:03116Untitled0:03117Beyond The Black Forest0:04118Funeral Mayhem0:02119Resurrection Of The Fallen Angels0:04120Pentagram Rites0:04121Summoning Destroyer0:00122Devil Pig0:00123Under The Carpathian Yoke0:07124Return Of The Freezing Winds0:06125Sadomatic Rites0:01126Made In Hell0:01127Infernal Abominations0:02128Goat Devil0:02129False Idols0:02130Under The Storm Of Hellish Evil0:02131Death Spiral0:05132Cruciform Antithesis0:00133Rites Of The Inner Shrine0:03134Night Is The Collaborator Of Torturers0:02135Under The Spell Of Hades0:05136Wretched Wisdom0:05137Black Rites Of Hell0:04138Undergång0:03139Branded At The Threshold Of The Damned0:05140Burying Filthy Flesh0:06141Unholy Vengeance0:04142Inheritance Of The Astral Times0:05143Between Two Worlds0:05144Oskorei0:08145Nattestid Ser Porten Vid0:05146Hvila Pa Tronan Min0:00147Born To Pray In Hell0:06148Rise, Our Father Lucifer0:03149Over Fjell Og Gjennom Torner0:06150Drømmer Om Død0:03151Hoc Diaboli Opus Est0:04152The Battle Of Armageddon0:07153Prophecies Of A Burning Heaven0:05154Proclaiming The Glory Of Satan0:06155The Prophecies Of The Horned One0:03156At The Gate Of The Unholy Forest0:05157To Invoke The Horned God0:05158Condemned To Hell0:06159Cursed, Scarred And Forever Possessed0:06160Ceremonial Whispers Of The Ancient Goat0:06161Filii Luciferi Regnaverunt0:15162To Harvest The Madness Of Satan0:08163Blasphemic Liturgies Of The Satanic Cult0:09164Dance Of The Shadows0:02165Living In Misanthropic Communion With The Darkness0:08166Rebirth Of The Unholy Soul0:05167Obey The Will Of Hell0:06168Seven Crowns0:04169Nekrogoatik Black Vomit0:02170Lonely Descension Into The Bottomless Pit0:00171The Shrouds Of Megiddo0:07172Dark Triumph0:03173We Hatefully Await The Return Of Christ0:03174No Sanctuary In Death0:00175Becoming One Of The Ancients0:04176Futile Reflections Of A Failed Existence0:02177Churchburner0:05178Burning Pentagram0:05179From Black Flames To Witchcraft0:01180Infinite And Profane Thrones0:01181Bonfire Of Bodies0:01182Tales From A Field Of Blood0:02183Ritualistic Invocation Of The Dead0:01184Tritagram0:04185Kledt I Nattens Farger0:01186Satanic Killing Of Christ In The Pagan Forest On Fullmoon Night0:01187Beneath The Cursed Light Of A Spectral Moon0:02188Reign Of Eternal Torment0:03189Lost In Darkness0:03190Dominus Mundi0:02191Spiritual Flames Of Ancient Nuclear Titan0:02192Towards Babylon0:01193To The Gates Of Blasphemous Fire0:14194Into The Infernal Storm Of Evil0:05195Where Mortals Have No Pride0:02196Sadistic Screams From Hell0:02197Misanthropic Symbol Of Infernal Abyss0:02198In The Darkness Embrace0:03199Nocturnal Bloodfeast0:04200Tenebrous Occultism0:01201Dark Managarm0:02202Black Wolf Devil0:02203From The Dark Flames Of The Christian Holocaust0:03204Malefic Creature Darkness0:02205World Of Ghosts0:03206The Advent Of Devil0:02207Misanthropic War Decline0:09208The Curse Of The Ghoul0:07209Havoc Sceptre0:04210Perversions Of The Ancient Goat0:06211Black Fire0:06212Sacrifice Of Blood0:01213Vengeance Of Evil0:04214To Possess The Fruits Of Knowledge0:04215Upon The Path Of Damnation0:03216Cursed In Eternity0:06217Triumph Of Death0:01218Eternal Pain0:01219I Am The Antichrist0:02220Trinity Denied0:03221Night Of Demonic Invocation0:02222Die In The Pentagram0:02223The Rites Of The Dark Side0:03224My Kingdom Among The Stars0:01225Infernal Pits Of Darkness0:05226Occult Incantations Of Evil0:05227To Tempt The Demons0:05228Call Thee Ancients0:03229Banished In Blood0:05230The Evil Star Of Chaos0:05231Offerings To The Wicked Beast0:03232Hail The Black Spirits0:03233Radioactive Goat Vomit0:02234Gloria Satana Domine Inferni0:01235Diabolical Sword0:03236Black Archangel0:02237Vae Victis0:05238Possessed Cemeteries0:00239Nox Odium De Profundum0:04240Enter The Realm Of Death0:25241Misanthropic Isolation0:03242Archaic Nocturnal Witchery0:01243Last Dreams In Darkness0:20244The Impious Of The Perverse0:14245Mountain Of Eternal Darkness0:10246The World Of Furious Gods0:25247Den Värld Som Var0:06248Raging Dark Ascension0:04249Ceremonial Rape0:08250Hatred Of Black God0:16251Abyss Of Ancient Blasphemies0:08252Askenatt0:10253Perpetual Unholiness0:09254Entombed By Winter0:18255Gallows0:09256Black Abyss0:15257Eternal Throne0:13258The Triumph Of Satanas0:15259Corpus Dei0:14260The Sun Of The Total Destruction0:27261Sick And Decadent Feelings0:02262In Umbra Malitiae Ambulabo, In Aeternum In Triumpho Tenebraum0:03263To You Right Of Satan0:02264There's Nothing Left0:02265Självdestruktivitet Född Av Monotona Tankegångar0:02266Baphomet Horde0:02267Vardagsnytt0:03268The Semen Of Profanation0:02269Eternal Satanic Conspiration0:03270The Curse Of Shadows0:02271Heaven In Flames0:03272The Night Of Eternal Winds0:03273Emperor From The Eternal Dark0:03274Night Of The Graveless Souls0:05275Satanic Terror Hate0:03276When The Fire Leaps From The Ash Mountain0:02277Consecration Of The Horned God0:02278Unsilent Hellnoise In The North Abyss0:02279Gates0:01280Vomiting Black Hair And Splinters Of Sheep Bone0:01281Smoldering Flesh Temple0:00282Satanic Urination In The Toilets Of Hell0:17283Doctrine Of Faith Mutilation0:06284Lapsus Humani Generis0:08285The Final War0:05286Grim Manifesto0:06287Bathed In Satan's Excrement0:05288Creature Of Darkness0:08289Lucifer's Venom0:09290Immoral Might0:12291Insanity Of The Ripper0:12292Black Halloween Of Forced Damnation0:07293Resoaring From The Depths0:05294Consuming Succubus Flesh0:06295The Eye Of The Cursed Hawk0:06296Undead, Hellish Satanist0:04297Warrior Of The Beast, Born Of Fiery Hell0:07298World War Against Christians0:07299Funeral Chant Of Ravens0:05300Witchcraft And Hellfire0:07301Disciples Of Misanthropy0:04302Nihil Sub Sole Novum0:09303Born In Black0:10304The Pentagrams Return0:06305In Nomine Satanas0:09306At The Dawn Of Vampiro-satanic Nostalgia0:11307Vox Mortigenus0:13308Grim Allergy To The HellGoat0:12309Demonical Enthronement0:07310Civitas Diaboli0:01311Frostbitten Soul Desacration0:09312Because Darkness Is Sovereign0:10313The Last Journey To Heaven0:10314Bloodlusted Duke Of Wallachia0:01315 Secrets Of Immortality Sleep In Embrace Of Winter0:09316Svarte Grangrunn0:11317A Sacrifice Consumed By Fire0:10318 Unholy Cult And Chanting Of Obscene Pleasures0:19319Sodomic Goatfuck Inverted Crucifixion0:05320From Cosmic Shadows To The Great Vast Embrace0:06321Ashes Of The Lords In My Hand0:07322 The Mystical Beast Of Rebellion0:07323Contempt Becomes A Knife-bearing Shadow0:11324Wreathed Eyes Looking In0:04325Dramatic Contemplation Of The Horizons Without End0:03326For Heretic's Blood0:05327Luciferian Microcosm0:19328Adorned In Black Blood0:04329 Total Desolation0:05330A Solitary Ascension0:04331The Throne Of Fire0:13332When The Fog Arises0:05333Beholding The Grim And Bloodstained Twilight From Hell0:11334The Ones God Left Behind0:12335 Howling Winds Of Pestilence And War0:13336Impure Blood0:09337Cursing Christianity And The Orthodox Church0:10338This World Belongs To Satan0:04339From The Deepest Devilish Pits0:19340Winds Of Desolation And Perversity0:13341 Plague Of Snow0:10342 Night Of The Red Serpent0:06343Last Night Of Vampire0:04344Ashes Of Heaven0:09345Black Angel Of Darkness0:06346 Prostitute Law Of The Slag In The Earth0:17347Destruction Of The World0:06348Post Lux Tenebras0:14349Forever Desiccate The Seed0:04350Technology Of Baphomet0:10351Better To Reign In Hell... Than Serve In Heaven0:10352 Oblivion Omitted0:03353The Slow Kill In The Cold0:19354Reflecting In Solitude0:08355Full Moon Ritual0:05356 Merciless Wrath Of Thy Lord Belzeboob0:08357The Fate Of The Frostbitten Moon0:04358The Kingdom Of Satan359Mater Tenebrarum360Sovereign Spawn Of The Secret Tomb361De Tyrannide Daemonum362 Nihilum Aeternus363Cult Of Bloody Andromeda364 The Day Of Eternal Awakening365Carving My Veins In Solitude366Schatten Aus Der Alex Ischenkau367Be Flesh And Flesh Be Dead368Nights Of Funeral Bells369My Nights Are Sleepless, But My Toilets Are Full Of Shit370 Transmigration Macabre371The Twilight Is My Robe372 Called By The Fire373Uncreation374Asphyxiate With Fear375 The Truth Beyond376Baphomet Supremacy377Shroud Of Encryption378 Revelation379Ritual Orgies In The Flooded Church380Complete Utter Darkness381Memoirs Of Life After Death382Lair Of Nocturnal Insanity383Evil Black Darkness In The Shadows384 A Passage385To A Dark And Cold Tomb386Sick Doctors And Sequestered Saints387Kalte Tage388Düstere Und Erfrorene Tage In Der Hölle389 Awakening Of Archdaemon390Terror In The Name Of The Crucified391 The Rise Of Imperial Darkness392Omen393Blood Purification Of Lost Souls394 Blasphemiak395Sentenced To Life... In Hell396Demons In Shape Of Warriors397Buried Among Skeletal Woods398 Traitors Among Us399Wrath Of The Infernal Sponge400With Devil At War401 Infernal Blood Of The NecroVirgin402Necro Ritual 666403Louis Cachet 2™404Born Under Occult Intentions405Deep Dark Forest406Die Wilde Jagd407Blessed Spell From The Darkness408Dead In My Own Reality409Devil's Laboratory410Ascends The Demons Anger411Beyond The Magic Forest412Blaspheming Christ413The Infinite Of Malediction To Darkness414Fullmoon Occultik Forces415Venomous Impulse416Apogee Of An Inquisition417 Bile Of Darkness418The Reich Of Stellar Imperium419Preliminary Invocation420 Deviation #420421Grim, Northern NecroForest422Mørk Djevel Urin423Untitled424Remains Of A Dead, Cursed Clown425We Talk About Meynach Being A Dumbass, But We Never Mention Vordb Opening A Bandcamp Page426Corroded By Sickness427The Alchemist's Goatthrone428Iter Ignis429 Evil Frosty Winds Of Satan430 Chants For The Black One431Djevelpakt Og Trolldomsmakt432Dreaming In Ideal Void433Painful Urination In Hell434Frostbitten Winds Of Uranus435Litany For The Lost Souls436Ceremony Of Demonic Return437Thy Horror438Their Wormlike Tongues Gouge Out My Eyes439Ex Potestati Inferni440 Rites Of Abyssic Twilight441Desolating Cosmic Intuition442The Path Of Deification Through Consecration443The Poisoned Stench Came From The Abyss444Beyond Eternity445Realm Of Goatlust446 I Lost My Soul447 Eucharisty Of Death Divine448The True Babushka449Kult Of Kaos Serpent450Song Of The Grim Wolf451Worthy Art Thou To Be Praised, Lord Of Sombre Solitude452 Night Of The Frostbitten Werewolf453Credo In Satana454Grim Sabbath455Frostbitten Blood From North (Towards Grim Victory)456Creation Of The Dark And Frostbitten Age457Grim Freemasonry Of Magick Ouroboros458Tribute To The Supreme Frostbitten Beast459 Grim And Iceblasting Stormwinds460 Frostbitten Ocean Of Wounds461 Grim, Immortal Visions462Grim Thought Patterns463A Specific Pattern Of Irreversible Grim Kitchens464Grim And Indecent Exposure465 Prayers To Satan466The Day Of The Dark Empire467 Under The Frostbitten Ruins, He Feels The Impious Torment468Macabre Ritual Of A Forgotten Cult469Final Atomic Battle470Winter, Night & Suicide471Under The Banner Of The Blood Flower472Profane Lord Of Grimness473Bitter Recollections Of Grim Vamphyrick Kindergarten474 Impaled Nokturnal Warspirit475 Impaled Ancients At The Awakening Of Grim Dusk476Reality Is In Evil...477He Will Reign In Fire From The Sky And Cast It Down Upon The Unworthy478 Fight For My Grim Master479Dyster Og Frostskadd Nordlig Blodtørst480Et Spor Uten Tittel Om Indonesisk Svartmetall481 Grim Northern Spirits Whisper482Wrist Deep In Grim Satanaelic Depression483 I Used To Listen To Depressive Suicidal Black Metal, Now I Have AIDS (Alex Ischenkau Down Syndrome)484 The Coils Of Depression485Satan Is My Friend486Grim Shadows Of Black Souls487Omnipotent Manifestation Of Lucifer488Grim Shadows Of Black Souls489Born At Lies490Raging Evil Desekration491 Feed My Pain492Frostbitten, Grim Eyes Of Darkness493 Impaled Frostbitten Night Of The Luciferian Light494For The Glory Of Our Supreme Infernal Majesty...495 Ascensum Serpens496Impaled Frostbitten Night Of The Luciferian Light497Whose Wheel Turns Eternal498 My God Is Myself499Upon The Frostbitten Throne Of Mayhem500The Frostbitten Abyss Of Illusions501 To Eve That Lord Of Malicious502Conquering The Land Of Sin503Evil Metal504The Rebirth Of The Melancholy Infernal Beings505Cold Breath From Grave506 Demoniac Invocation507 Broken Lemurian Sun508 Into Octagram509Infernal, Grim Visions Through The Dark Memories510Unholy Goathorns511Retribution 666512The Supremacy Of The Devil's Hordes513With Cathedral Carrion514Impaled Transylvanian Demon Goat515Eerie Realms Of Hell516The Forgotten Dungeons Of Time517Ignis Divine Imperium518Destroying False Dogmas519Dawn Of A Dark Age520Voice In The Dark521Ascent Of The Lightless Sun522The Rise Of Leviathan523I Hate Myself524Satanic War In Disneyland525Thou Shalt Go Up And Come Like A Grim Storm526Immense Emotional Pain527Sinister Voices From Beyond528Drowning In My Impaled Emptiness529It's Disappointing That People Aren't Allowed To Eat Yellow Snow, But Vampires Are Allowed To Eat Red Snow530Forbidden Descent Into The Grim Cold Waters531Icons Of The Dark532Under The Shadow Of The Immortal, Frostbitten Flame533Do What Thou Wilt534Do What Thou Wilt (Slowed & Reverb)535Forsaken Angel (BLVCKBX$$ Phonk Mix)4305393Black BossBLVCKBX$$Remix536I Wanted To Impress A Vermyapre Hostess So I Spoke Gloatre And She Looked Into My Eyes And Said “Mogovtrebremrevre Tremevkle Premevekle” So I Went Home And Cried While Listening To Jazzy Kellersynth537We Walker Together Emerging From The Darkness538I Am The Grim Antichrist539Praise To The Eternal Evil540The Ultimate Grim Reflection Of The Dark Soul541Til Kongens Grav De Døde Vandrer542Black Goat GF (Grim & Frostbitten)543Possessed From The Black GF Forest544Living Of Black545Aeternus In Inferno Ardens546Jesus In Hell547Ascension Vengeance For Gods Slaughter548Grim Satanic Throne549They Are The Children Of The Frostbitten Underworld550Impaled Cadaveric Hellspawn551Necromantic Ritual Meditation552From The Grim Realms Of The Shadowlands553Possess Me (Like You Possess The Dark)554Black Impaled Cross555Incarno Vicarius Imperator Filli Sathanas Dei556Falsehood Condemnation557Path Of Grim Suffering558Mors Principium Est559Grim, Impaled, Northern NekroSadoGoat560NekroAlkoholik Abominations With Satan561True Servants Of Satan562The Fall Of Satanael563Die By The Blade564Unleashing The Chaos565Total Fucking Darkness566Superlative Darkness567Eternal Desecration Of The Jesus568Divine Declaration Of Hate569Towards Bloodshed We March570Louis Cachet Timmen571Cult Of The Eternal Deities Of The Abyss572My Soul Is Dead And Grim573Twilight Demon Of Pure Evil574Disease, Desire And Death575Sadomatik Goats Emerging From The Pleromatic NekroApeiron Shadow576Perdition Of NekroTeletubbies577Mass Grave Of Infernal SadoImpostors578Pestilent Necrospell579Unholy Grim Pagan Mighty Warrior580Murmuration Of Grieving NekroGoats581Oath Of The Clandestine Covenant582NekroFist Of The Grim Northern Destroyer583Satan's Storm Over The Holy Land584On The Brink Of Reassessing All Values585Impaled Massacre Of The Innocent586Satanic Temple Of Grim Depravity587From The Eternal Chasm...588Grim Spawn With Bad Blood589The Grim Incarnation Of Sathanas590The Sinister Elder Silence591Grim Hordes United For The Glorification Of Lucifer592Bloody Days On The Altar593The Grim, Impaled Kingdom Of Nothing594The Dawn Of Nothing595Black Rain596In Space The Warning Cry Resonates597Nowadays Black Metal Ist Krieg!598Am I Evil?599In The Shadowlands600Grim Conjuration601Mortal Art Of Blood602Creature Of Ungod603The Horns Of Supremacy604Legacy In Darkness605Hell Night606A Quiet Voice Whispers The Bitter Truth607Incantations Of Demonic Lust For Corpses Of The Fallen608Glorificat Dominus609Satanic Communion610Execution Commands611Quindecim Annalis Basis612Golem Nosferatu613Triumphus Serpentis Magni614Night Ov Pan615As Blood Turns Black, Mankind Shall Drown In Despair616Blasphemies Of The Elder Gods617Macabre Luciferian Seduction618Vortex Of Souls619Praise And Devotion620Naxzgul Rising621Deifier Of Necromancy622Hidden Ring Of Sauron623Burzum In Paris624Death Beneath The Mourning Star625The Hateful Backwoods626The Cult To The Night Of The Times627Boiled In Goat Blood628Pain And Misery For Humanity629Cult Of The Night Kingdom630Tristitia Aeternum632...If Ever The Stars Shall Fall633The Long Night In The Path Of Enlightenment To The Gate Of Mastery634Triumphalia Ornamenta635Through The Collapse636End Of All Life And Creation637Your Filthy Blessing638Striking With Diseases And Curses639Metal Archives Only Accept Black Metal That Sounds Like Nickelback, Isn't That Sus?640Reign Of The Malicious641The Song Of A Long Forgotten Ghost642Journey Into The Depths Of Night643Templar Of The Judas Goat644Dethroned, Conquered And Forgotten645Tenebrious Triumvirate646Mors Inumbratus Supra Spiritus647Edge Of Painfull Sensation648Processional For The Hellfire Chariot649The Grim Satanist650Lord Of Flies & Frostbitten Kittens651Grim Inverted Triangle652A Thousand Eyed Angel653Katatonic And Devilish Suppuration654Gazing Through The Black Eyes Of Time655Who TF Is Lil Therion?656Sacrilegious Doctrine657Into The Grim Domains658Frostbitten Sky659Frostbitten Death660Frostbitten Warmachine661Frostbitten Weiner662Frostbitten Hearts663Frostbitten Despair664Frostbitten Pain665Frostbitten Forest666The Number Of The Beast (Iron Maiden Cover)667Frostbitten Corporations14315057Napalm Death Is Dead Is GayFeaturing668Frostbitten Brains Of Begotten Encyclopaedia Metallum Mods Who Grimly Decide If Your Album Is Professional Enough669Frostbitten Storm670Frostbitten And Grim Metal Archives 1st April Jokes671There Is No Such Thing As BM Parody Because All Metal Is A Self-parody Essentially672Thee Only Trve And Rvlt File Format Is AMR (Atmospheric Malicious Recording), If I Weren't Too Lazy This Obviously Full-length Album Would Be In AMR (But Lazy Production Is True And Kult So IDK For Sure)673Frostbitten March674Frostbitten Caskets675Frostbitten Wounds676Frostbitten Frost677Frostbitten Serpents678Frostbitten Amputation679Frostbitten Pyromaniac680Erstatte Alle Skandinaviske Titler Med Punjabi681Does Having Back Covers With The Tracklist On Them Make This Album Cult And True?682Raschlenennaya Pugachova Are Much More Badass Than Varg Vikernes, Why Are They Canceled Though?683Disgrace To The Corpse Of Nikita Lytkin684Guys Who Made Diss Tracks At Me, I Saw Them And I'm Angry! If You're Reading This, Come At Midnight To The Frim Moonforest, I'll Be Waiting There With My Hunting Gun685Thx Lorenzo For Releasing My Demo, But You Should Still Take A Shower686Frostbitten Flakes687Frostbitten Moonlight688I Smoke Between 650 And 700 Cigarettes A Day, But That's Cool Because It Destroys My Life For Satan689If You Think Making Such Number Of Tracks Is A Bit Excessive, Check Out A Band Called Anal Cunt690Frostbitten Ambience691Frostbitten Hell692Frostbitten Grandeur693Frostbitten Depression694Frostbitten Ashlands695Frostbitten Tears696My Life Is So Frostbitten That I Even Bother To Record This Mega Crap (Also Funny Number)697Frostbitten Echoes698Frostbitten Winters699Frostbitten Amputation700Frostbitten Souls701I Could Have Made A Shoutout Here, But It Only Would Mean You're Not Kvlt To Be Shouted Out By Such A Loser Who Even Cares About That702Frostbitten Ramskull703Frostbitten Genitals704Frostbitten Genocide705Frostbitten Static706The Only Time I Thought MA Was Cool Was When They Added Korn On April Fools And I Didn't Realize It Was A Joke707Frostbitten Battlefield708Frostbitten Dominions709Grim Swastika On Putin's Ass710Frostbitten Scars711Frostbitten Fingers712Descent Into Frostbitten Madness713Frostbitten No More714It's 2024, Elon Musk Is Flying To Mars And We Still Have To Add Stuff To MA Manually715Trail Of Frostbitten Scalps716Consumption Of Frostbitten Flesh717Frostbitten Fires Of Loss718Satanic Morbid Necrophilia719Improbability Of Understanding The Frostbitten Symbols Of Large Cardinal Arithmetics720Ömurlegt Og Frostbitið Fráfall721USBM After Y2K Stands For Unusually Suspicious Bondage Masturbation722Producing This Album Is More Like Trying To Survive On Less Than 666 Cups Of Coffee Every 30 Minutes723Ballad Of Frostbitten Heart724Frostbitten Holy Flesh725Not That I Didn't Support Making Fun Of NSBM, But Why We Stopped Making Fun Of Gorgoroth?726Let's Be Honest, The Only Difference Between Black Metal And Death Metal Is That Death Metal Is About Death, And Black Metal Is About Black727Why The Fuck Did Fenriz Start Producing Mixes For Trendy Webzines?728Frostbitten And Old729Circles Of Frostbitten Ice730Across The Frostbitten Seas731Nigrum Metallum Sonos Ingrata Latine732Dark Forces733Our Grim Symbolic Burial734Sempiternal Suffering735Looking To Nothing736Frostbitten And Alone737Frostbitten Twilight Of Sorrowfields738Evoke The Frostbitten739Frostbitten Northern War740Into The Frostbitten Crypt741Realm Of Frostbitten Storms742Frostbitten Astral Realms743Warriors Of Frostbitten Plains744Cry Of The Frostbitten745Back On Frostbitten Shores746Frostbitten Color Pencil747Fulgency Of Frostbitten Lands748In Frostbitten Moonlight749Frostbitten Tomb750Track About Black Metal Musicians Trying Their Best To Make Their Songs Not Sound The Same751Grim And Frostbitten Necrophallus752Hail To Frostbitten Forefathers753Deatspell Omega Is Definitely The Beast Black Metal Parody I've Ever Seen754It May Not Be Obvious, But This Album Is About Doing Drugs While Getting Head755Rejected By A Thousand Labels756Scaling The Frostbitten Summit757On Frostbitten Path Beneath758Frostbitten Self Inflicted Lacerations759Frostbitten To Hell760Lonesome And Frostbitten761Frostbitten Ophidian Veins762Frostbitten Trigger Finger763Frostbitten Plague-Wielders764Frostbitten Blasphemy Ov Nekro Evil765The Frostbitten Woodlands Of Norway766Revelation In The Frostbitten Winds767Slaves Of The Frostbitten Moon768Frostbitten In The Norwegian Forest769Lamentations Of The Frostbitten Spirit770Charpatian Frostbitten Land Of Sorrow771Frostbitten Spectres Throughout The Mist772Frostbitten By The Radioactive Fullmoon773Bloodsoaked, Frostbitten & Dead774The FrostKitten Throne Of Hovgarldvist775To Fly Through Frostbitten Winds776Helheim Warriors In Frostbitten Northlands777Devouring Breath Of Frostbitten Seas778Roots Of A Frostbitten Land779Storms From A Frostbitten Realm780Ripping My Frostbitten Eyes Off781Agony Monolith Where Frostbitten Hands Rest782Frostbitten Tree783Cold And Frostbitten Grimness Of Hate784Through Mountain Shadows And Frostbitten Valleys785The Ancients Halls Of A Frostbitten Cosmos786Frostbitten Echoes Of Winter's Lugubrious Lament787Dark Lord Sits Upon The Frostbitten Throne788Frostbitten Winter Storms Of The Northern Mountains789Frostbitten Communion With The Eidolon Of Night790This Is How We Rock It In The Frostbitten North791In This Frostbitten Forest I Shall Dwell Eternally792The Frostbitten Winds Of Demise793Into The Frostbitten Death Of Christ Into Black Chants794Dusk Over The Frostbitten Silent Funereal Diabolical Crepuscular Morbid Grim Noctambulant Dark Graveyard795Usurping Through The Doomed Veil Of Chaos And Over The Spectral Legion Between Frostbitten Dominions796Unattended Frostbitten Fingers Grasping To The Last Beat In An Unforgiving Heart797Dark Deathwitch Devouring The Necroleptic And Abominable Hellgoat Amidst The Frostbitten And Charred Necrotobogganist Of Abazagorath798The Worst Thing About Black Metal Is Not It's 99% "Unfunny", But That 1% Of It Is "Funny"799Christalized Blood800Lay Eden In Ashes801On The Field Of A Thousand Extinct Battles802To Conjure Satan From The Infernal Abyss803Prophecies Of Destruction, Suffocating The Light804In Spectral Orgy805Trigon Ov Blasphemy806The Deaf Darkness Of The Abyss807Only Darkness Is Real808BTW, If You're Wondering About The Quality, My Recorder Has Broken809Nergal's Grim Benis810Behold Satan's Merciless Empire Overgrow The Ailing Earth We Dwell On811Lascivious Lord Thanos, Thee Destroyer Ov Worlds812Impaled Batman813Wrath Of Zarach Baal Tharagh (Why Did He Remove His Face Pic Though?)814Satanic Nazarene815If You're Ever Stuck In A Grim And/or Frostbitten Dungeon, Remember Me Spending Days Making This Bullshit Of An Album And You'll Instantly Feel Better About Yourself816Infernal Slaughter817At War With Ares818Satanic Massacre 666819Arrival Of The Winterwinds820A Malign Reincarnation821The Four Horsemen Of The Apocalypse822Poisonous Black Wind In The Desert823Romantic, But Frostbitten Vampire824Daemon X825There Is No Light826Satanic Terror Cult827Satanic Worshipper828There Will Never Be Another Black Metal Band Like Marilyn Manson829Succ D)))830Necrotic Revolution831No Joy832With A Cold, Life Extinguishing Elegance833Autistic Homicidal Dismemberment834Demonic Engorgement835The Rain That Hides The Shadows836Sadomasochrist837The Order Of Satan838Satanized839Born In Fire840King Of The Grim Skies841Thy Dark Heavens842A Gate Through Frostbitten Kingdoms843To The Wrath Of Frostbitten Saturn844When Satan Fucks God845The Sign Ov A Human Curse846Heathen Conquest847Triumphant Awakening Of Hell's Darkest Master848Satan (Hail Satan)849Hate, Glory And Victory850Song For The Grim Dawn851Skulldemon852S.A.T.A.N.853Black Metal Stopped Being Krieg After Lordi Had Won Eurovision854Demons Of The Black Abyss855Dawn Of Infinite Obscurity856From The Submerged Worlds857Ancient Litanies And Forgotten Cries858Ancient Litanies And Forgotten Cries (Gummi Batushka Remix)14315060Gummi BatushkaRemix859Spiritus Diaboli860I Know I Have Already Asked Too Many Questions, But Why Do Black Sabbath Have 'Black' In Their Title If They Are One Of The Pioneers Of Funeral Doom861Psychotic Satanic NekroMass862The Bloodstained Corpse Of Nowadays Political Shitcore Covered In Lard863Prehistoric Frostbitten Fecal Abortion864Intense Demonic Charge865Morbid Cannibal Warmageddon866Why The Fuck Does MA Think That Strid Pioneered DSBM If They Are, Well, Not DSBM867Laudatur Satanas!868Secret Sacrifice In The Lunar Eclipse869Grim Fullmoon Rituals870Grim Onslaught871Helvete 666872In The Name Of Bathory873Beneath Lucifer's Eye873I'm The Hammer Of My Master874I Know Your Name875Ascending Thrones And Stars876Testament Of The Heretic Priest877Self-burial Ritual878I'm Imprisoned For Spreading Grimness In Roblox So I Will Record Some Dungeon Synth879Anders Breivik's Underwear880Tenebros 666881Terrorgoat882The First Necromantic Sabbath883Tetragrammaton884Amen Belzebuth885Your Idol Is Dead886Iesu Nazarenus Rex Inferni887Live In Night Of Supreme Emperor888Heartless Merciless Blasphemous... Martyr Slain889The Devil's Sermon890There Is No God But The Devil891The Last Profanation892Praedicateac Exsultate Malum, Malitiam Atque Insaniam Orci893The Orchestra Of Dead Souls894Pseudomonarchia Daemonium895Opening The Gates Of Hell896Shaitan And Angels With Serpent Tongue897Please Let Me Know If You Know This Melody, I Can't Find The Song898Rejoice And Laugh, Doomed To Be Sacrificed899And The Rebel Angels Fell900Enchanter Ov Serpents901Thulean Perspective Banned Me, But Facebook Banned Thulean Perspective So I'm OK902Darkest Path To Death903Pure Cold Venom904A Star, Fallen In The Frozen, Deepest, Darkened Waters Of The Black Swamp905Devoted To Satan906Magnanimous Lord Sathanas907Total Satan908Corpus Diavolis909Myths Of The Traitor910Supreme Command Of Satanic Will911Ancient Rites Of The Mist And Full Moon912Whore Of The Night913Declarandam Tartareum Factum914Deceived By An Amethyst915My Satanic Kingdom916Return To Sodom917Cursed Ov The Damnes918The Irrepassable Gate919Unleashing Hell On Earth920Sinful Desires921Hallowed By The Name922Armageddon Accomplished923In The Throne Of Perversion924Annihilation Of Mankind925Archdemon Poop926Bizarre Ritual Killing927Sathanus Anus928Black Metal Nicht Krieg (— Cover)929Black Urizen Moon930The Chimes Of Midnight931Epic Fail Black Metal (EFBM)932From Penumbra To Hell933Crushing The Christians934The Gnostic Ritual Consumption Of Semen As Embodiment Of Wounds Teared In The Soul935First Ray From Satan's Sun936Black Neural Sophistication937Lord Of The Frozen Flames938Buried By The Dead939Forbidden Temples Of The Black Flame940Poisonous Victory941The Ceremony Has Begun942Butchered By Black Tormentor943Sathanas Sit Perpetus Maledictus944Vexilla Regis Prodeunt Inferni945Princeps Principum Ens Entium946Hell Always Can Wait947Sabbathical Flesh Possession948Open The Mysteries Of Your Creation949I Am The Chaos, The Abyss And The Gloom950One Hundred Year Storm951Aäkon Këëtrëh Kissed The Frostbitten Ass Of Këkht Aräkh952Ode To The Demonwitch953Obscene Clandestine Deconstruction (OCD)954Unextinguishable Candles Of The Wallachian Masters955His Crosses On The Royal Banners956Requiem For A Dying World957Forever Lost In Wintersorrow958God Pazuzu959Cold Journey Through Madness960Captured By The Spell961Burn In Hell!962A Sorcerer's Pledge963Realm Of Grim Nocturnal Dwarves964Dark And Blasphemous Psalm Ov Thee Ancients Inscripted In A Random Ass Black Metal Logo965Wizard Of Black Winds966I Am The Devil's Blood967Louis Cachet Murdered Euronymous Because Euronymous Was A Pedophile968Medieval Northern Sorcery969Nekkrökunt970Satanic Blastbeats Of The Forgotten Time971Ominous Immortal Malice972Where Light Would Not Dare973Non Lucidum Tristitia974Descent Into Eternity975Demonic Laughter976Necromadness977By The Rays Of His Golden Light978Kindergarten Of Bodom979Blastchrist980Christ Whore Crusified981Infernal Cruciform Defecation At The Altar Of Apollyon982Inversion Of The Holy983Haunted Lightless Lingering984Antichristian Grim Flagellation985Funeral Sermon Of The Earth986The Path Is Obscured By Light987Ad Barathri Ascensio988The Shape Of True Black Metal To Cum989Obitus Arbor Gratia990Orthodox Theistic Shitting In The Dark Woods Of Doom991The Triumph Of 666atan992Reliquary Of The Horned One993Tenebrus Dominate994When I Spit On Cross995Manifest Of Lord Impaler And Goatpoison996Chambers Of Infinite Torture997The Sect Of Satanic Shit998Nordvargr Is A Gay Nazi Douche999Frozen Lords Of Grim Father Frost1000Sinner, Shitter And Blasphemer1001Souls Of Abramelin Cakes1002Abomination Impurity1003Post Disembowelment Blunt Serial Decapitation1004Secrets Of The Black Forest1005Secrets Of The Black Forest1006Return Of Hateful Entropy1007Abysmal Of Seth Putnam1008Valley Of Sorrow1009Dark Carnal Witchery1010...And The Night Came With Heavy Steps1011Frostbitten Toilets Of Orodruin1012Return Of Satanic Darkness1013Déjà Vu1014...In Spite Of Torment In Eternity1015Forests Of Dark Mayhem1016Northern Shadow Kingdom1017Broken Bonds Of Balance1018God's Incarnadine Arch1019Enslaved By The Shackles Of Humanity1020Apocalipsis Tenebrae1021All Rise To Iconoclasm1022Grim Matrix Of The Quantum Enemy1023The Night Of Lucifer1024Omniversal Descent Upon Lower Planes Of Conventional Logic1025The Level Of Perception1026Aeons Ov Sorrow1027Breaking The Shackles Of Cosmic Bondage1028Peccatum Mortiferum1029Consumiendo Infelices1030Satanic Circus Of The Grim Martians1031Samael's Vengeance1032Only Lord Voldemort Is Grimmer Than Satan1033Dominus Inferus Vobiscum1034Babylon Doom Cult1035Poopy Forest Of Depressive Illusions1036Quintessence Of Evil1037In An Embrace Of Deep Cold Forests1038Subliminal Antenora Of Otherworldly Aliens1039...Deine Songnamen Per Google Ins Deutsche Zu Übersetzen Ist Krieg...1040Far Beyond Death And Time (The Oath Of War)1041At Battlefields Of The Abyssal Realm1042Anno Domini Luciferum1043Vicious Christ Satanic Mastermind Evil Robot1044Black Noise Should Be Banned Because It's Too Harsh1045Bandcamp Should Hide Black Metal Tag From The Explorer Because It Disrespects My Feelings1046Also Bandcamp Fridays Are Gay AF1047Blackened Funeral1048Fall, Ascension, Domination1049Grim And Roast Beef1050Carcass On The Pavement1051Rid The Human Plague1052The Profane Hymns Of The Sovereign Darkness1053Your Blood Is My Victory1054When Death Overtakes Enlightenment...1055Funny Farm Metal1056Gloria Patri1057The Black Eucharist1058Unholy Proclamation1059Execraris Of Perpetual1060Ad Portas Serpentium1061Angst Vor Geistern1062Fragmented Soul1063A Dying Member Of Degenerating Cult1064The Occult Formulas To Desecrate Souls1065Goatfucking Ritual1066Pandæmonium1067God Is Tyrant1068Possessed Breath1069Exorcism Of Satanic Puppies1070The Return Of The Satanic Rites1071The Sound Of The Satanic Usurper1072Ashes And Shadows Over The Ruins Of The Cursed Nation...1073Lord Of Bloodstained Forests1074Demonic Manifest1075Dracula's Mechanized Universe1076At The Feet Of The Black Altar1077Where Is Your Faith1078Devilish Possessedness1079Asgard Dawn Of Infinite Fire1080Lucifer's Apartment1081Bill Of Indictment1082In The Eyes Of Death1083Unholy Frustration Of Biblically Accurate Angels1084Opera Ratos Irae Dias1085Hell's Seraphim1086An Epic Told To Infinity1087Path To Tyranny1088Dismal Starwinds And Astral Thunderbeams1089Torture Goddes Of The Flesh1090הַשָּׂטָן1091On The Lookout In The Depths Of The Frozen Lake1092Invocation Of Adam Kadmon1093Sado Merkabah1094In Reverence Of Decay1095Black Buddha1096Troops Of Burning Vengeance1097Somewhere In The Nightpast1098The Circle Of Bloody Souls1099Prurient And Possessed1100Avatar Of Melancholy1101Unholy Night Secrets1102Aiwass, AOS And Frater Perdurabo Can Suck My Ipsissimus Tier Balls1103Storm To The Unholy Grave1104Daemonicus1105Apocalipsis1106This Track Contains Rayo's Number Of Songs Each Consisting Of TREE(3) Songs1107Opening The Gates Of Hell1108Vexilla Regis Prodeunt Inferni1109Conquering Black Storms1110Obscure And Vampiric Twilight Werewolf Warlord Battlefield1111Thunder Of Vengence1112Into The Burning Pit Of Hell1113Do You Want Our Blood??!!!1114A World Between Mirrors1115Dogs Blood Rising1116Blasphemous Prayers1117Disciplines Of Satan1118Cradle Of Satan1119Hybrid Parasite Evangelistica1120They Awoke To The Scent Of Spring1121Memories From Another World1122Last Contemplation Of A Dying World1123Tragic Delirium Of The Past Shadows1124Cold Winds Of Death And Hatred1125Throne Of Torment1126Satanic Venomous Vines1127Bestial Absurd Goat Desecrator1128The Goat's Infernal March1129Sabbatic Goat Birth1130Strangled In The Nets Of Unholy Perversion1131Bestial Glorious Satan1132The Return Of Filth And Evil1133Stigma Diaboli1134Anticosmic Horror1135Demoniac Fetus1136My Revenge Comes In Winter1137Evil Slayers Of Hell1138Revealing The Somber Powers Of Hell1139The Supreme Black Angel1140Razor To Oblivion1141This Album Is Metal Enough If I Say So1142Imperial Palace Of Darkness1143The Battle Of The Godless Souls1144Forbidden Industry1145Incantations Of Red Moon1146Immortal Aggression1147Burnt For Witchcraft1148Bleak, Grim And Northern Discomfort1149The Black Wraiths Ascend1150Griefer Torture1151Bastardizing The Purity1152Blasphemic Lust1153Impaled Beneath The Pentagram1154Blasphererion1155Blasphemous Crucifixion1156Reconquering The Northlands1157Upon The Alter Of Destruction1158Hostis Humani Generis1159Covered In Guts1160Behind The Gates Of Terror1161Angels Of Purity1162The Unholy Sign Of Hell1163Asleep In The Arms Of Suicide1164Book Of Black Earth1165The Cold Testament1166Grim Souls Of Black1167Onward To The Sabbat1168The Inverted Cross1169Black Whispers Of Satanic Conscience1170Nightmare Of The Christian Race1171Subjugation Of The Bastard Son1172Fractal Labyrinth Of Bridges1173The Cult Of The Black Pyramid1174Burning Bethlehem1175The Unholy Path To Hell1176Metal Warriors1177The Gospel Of The Infernal Goat1178Mortuary Astral Links1179Blood, War, Perversion1180The Dead Woman's Shoe1181Heidegger Was A Fascist Scum And His "Philosophy" Makes No Sense1182Also Heidegger Was A Nazi, He Even Joined NSDAP1183The Evil By Evil1184My Reach In The Unholy Night1185Hellride1186Morbid Upheaval1187Carving At The Threads1188Satanic Rebirth1189Journey Through The Darkness Path1190Hierarchy Of Hades1191Father Satan Listen To Me1192Hated Okkvlt Perversions1193Alchemy Of Suicide1194Satanic Pigeon1195Chaos Down The Catacombs1196A Moonlit Path1197Chapel Of Lucifer1198Retarded Cake1199Satanick Jihad1200The Trees Of Darkness1201Chaotic Ceremony For A Dying World...1202Lost Paradise1203Gloria Mortis1204The Answer To Infection1205Blessing Of Satanas1206Heretic Supremacy1207Gravestones And Crosses1208Frenzied Destruction Of The Carnal1209From The Opened Grave, Thy Came!1210Genuflection Under The Malice Of The Moon1211War Against Nemesis1212Dark Genocide1213Rites Of Pest1214Secrets Of Harmony1215Saga Of Blasphemy1216The Flames Of An Elite Age1217Chained To Torment1218The Temptress Vow1219Funeral Under Moon Grail1220Fuck The Ways Of Christ1221I'm Being Exceptionally Sarcastic At Metal While Headbanging To Nihilist (Pre-Entombed) - (1987-1989) (Compilation, 2005) [Full Album]1222Execration1223When Arise The Heretic1224Palaces Of Iniquity12251225 Songs About Fucking Up Djent1226Black Thrashing Terror1227Sacramentum Obscurus1228Hate And Satanism Alliance Against The Christianity1229Denied In Heaven1230Destruction Explosion Total Holocaust1231This Project Was Meant To Be Called "Genocide", But There's Like Dozens Of Other Projects Under This Name So I'm Just Using Lord Poozix1232Daemonic Sorceries Of Nocturnal Lust1233Daemonus Perversus1234The Things That Didn't Want To Die1235Sickening Loom1236The Black Fire Of Ahriman1237Closure Of Empyrean Delirium1238I Am The Black Grim Wizards1239Sadistic Obsession1240Odyssey Of The Twelfth Talisman1241Destroyers Of False Hope1242God Is Trash1243The Decimation1244Messiah Of Perdition1245Satanik Annihilation Kommando1246A Macabre Narrative About Neophytes Pilgrimage1247This Hungry Triumphant Darkness1248Goetia 6661249First Strike For Spiritual Renewance1250Authentic Thaumatargy Of Consciousness1251Death!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1252Forever Underground Occult And Magics1253Death Tyrant1254I Vanna Die (Zarach Baal Tharagh Cover)1255Crushing The Dreams Of Benevolence1256Antikal Revival1257I Only Release On Getalbums And Myzuka.ru Forum1258Deathcode Of The Abyss1259Grim Veneration1260Evoke The Ancient Curse1261The Black Dimension1262Tyrant Of All Tyrants1263Veneral Christ Desecration1264Dreary Remembrance1265Acta Non Verba1266Sadomatik Easter1267Delinquentes Infernae1268The Book Of Lies1269Exterminatus1270Bandkampf Disabled Gorenoise As If It Were Child Pornoise (Is It Even Legal?)1271Obscene Guttural Exegetics Of Sodomatic Christology1272Kindergarten Concentration Camp1273Lxrd Sxtxn1274In Daemonium Nocte1275Judeo-Christian NecroLardPudding1276xImpure Soulx1277Punishment For Ignorance1278Herostratic Oath1279The Covenant Prevails In Eternal Darkness, In Honor Of The Ancient Ancestors1280Fatalistic Uprisal Of Abhorrent Creation1281Daemonology In Waves Ov Three1282Spiritual Disease1283The Unholy Comrades Of Comroth1284Ketchup Order Of The Black Cum1285The Wampyric Specter1286Deophagus Of Deicide1287Let Me Be The Voice Of Satanic Bastards1288Reincarnation Of Brutality1289Satanas Occultas1290Infernal Wrath Of Wolves1291The Day Earth Vomited Her Horrors1292The Tattered Wings Of Heartache1293Diktatorial Worship1294Darkicus Satanicus Mystericus1295In Repugnant Adoration1296The Arteries Of Heresy1297This Track Is Still Better Than Horrid Cross1298Profound Lore Ov Thee Sacred Bones1299In Blaze Of Moon1300Tranquility Through Darkness1301Awakening From The Dream Of Existence To The Multidimensional Nature Of Our Reality1302Trail Of Life Decayed1303People Treat Les Légions Noires As If They Were The Only Black Metal Circle In The World1304Your Temple Of Worms1305The Innermost Ways To Might1306Hallucinating Priest1307Baphomet's Sensitive Sphincter1308Baphomet's Unwiped Ass1309In The Name Of Santa1310Fornication. Lust. Perversion.1311Blood, Vampirism & Sadism1312Insane Lobotomy1313Nice To Beat You1314Illusion Of The Decay Of Life1315The Tempter1316Deadly Torture To The Rot Self1317Dominions Of Our Endeavor1318Agony Of The Orange Skies1319When The Bough Breaks1320MA People Are Like "Boo Boo You Can't Make Metal Without Guitars" Not Knowing That Guitar Is A Myth1321Domain Of Darkness1322Grim Tales Of The Retarded Vampire1323Holocaust, Plague And Tyranny1324Horns Curve Into Broken Circles1325Inferno Caput Mundi1326Welcome To The Darkness1327Drift Into My Palace Of Terror1328Coldest Ever Cold1329Grave Dirt And Blood1330Brought Down By God1331In The Undying Dark Mountains1332Death Leading1333The Devil's Murderous Mob1334Codex Necrovoid1335Inn I Mørkets Kongedømme1336In Beheading The Beast1337Memory... Sorrow... Thorn...1338All For Evil One1339Lucifer Arrival1340In The Sign Of Evil1341Summoned From Ashes1342Flames Await Your Soul1343Disassemble The Dethroned1344Upon An Oaken Throne1345Dark Prophecies Of A New Cosmic Cycle1346Paradise Of Putrefaction1347Kali Yuga1348Let The Angels Bleed1349Invocation (Of Satan)1350Stormthrone1351Ave Santana1352Black Vein1353Emissary Of Death1354Comatose Shadows1355Beginning Of The Dark Kingdom1356Christ Crushing Ceremony1357Temple Under Hell1358Regressions Within Other Planes1359Beyond The Dark Woods Of Infinity1360About The Cultivation Of Centuries-old Enemy Images1361Pagan Orgies1362Summoning The Archaic Atrocity1363Evil Never Dies1364Antisocial Satan1365Bleeding In The Shades Of Baphomet1366Blood. Semen. Venom Of Phasms.1367A World Without Existence1368Burn The Reign1369Furor Teutonicus1370Amongst The Ruins Of Chaosmos1371I Made A Mix Of All Merzbow Masonna And Got A 179 TB HNW Track1372Awaiting The Glorious Damnation Of Mankind1373Daemons Of The Past1374Sacrifice For Black Metal Magic1375Satanic Homosexual Escapism1376Surreal Manifestation Of Dead Corpses1377Mediaeval Screams1378Lucifer, Appear!1379Archaic Transformation1380New Blood Gushes1381Rite Of Inverse Incarnation1382Only Antivaxxers Like Black Mecha1383Grendel And Hulk Appear1384Flagellated Cherub1385Fire And Steel1386Darkness Legacy1387A Cold Kiss Of Barabellum1388In Ravenous Darkness1389"I Separate Artists From Their Music"1390Altar Of Goat1391Vile Diabolism1392The Story Of The World In Flames1393It Turns Out That A Large Portion Of Black Metal Projects Also Play Dungeon Synth Due To The Intros And Outros1394My Soul Was Reaped1395Memory Of My Dark Thoughts1396This Album Was Secretly Made By A Diabolical AI I Developed Not To Do All This Shit Manually1397De Mysteriis Serpentis1398Mass Ov Perversion1399Senseless Life1400Leaves Of Yggdrasil1401In The Dark Nihilistic Center Of Gravity1402Earlier Than The Third Mind Of The Cosmos1403Apparitions1404...In Diaper Of Steve Silvester1405Necromante1406The Triumph Of My Will1407Tales Of The Macabre1408Bishop Of Infamy1409Der Ungeist1410Valleys Of Gehenna1411The Return Of The Ghost1412I Warn The Heavens!!!1413Satanic Goat Horde1414Procreating Antichrist1415Inheritors Of The Morbid Arts1416Into The Mouth Of The Serpent1417Howling Death Winds Of The Cold Black Axe1418Dark Nebula Of Cosmic Fart1419Black Sun Of Death And Destruction1420Idi Te Na Hoy, Suka!1421Chapel Of The Winds Of Belial1422Darkened Spasm Of Cthulhu's Ass1423Rancid Hooligan Piss1424Oratio Ad Satanas1425Tales Of Witchcraft1426Paroxysms Of Madness1427Abrasive Contamination Of Satanic Flow1428Anthems Of Destruction1429Cybernetic Goblin1430Hammer Of Abysmal Entities1431Ghouls Of Grandeur1432Total Death1433Winterkrieger1434Grotesque Glory1435No Longer A Dweller In The Abyss1436Reverend Of Mutilation1437Suffering Of The Flesh1438Grim Sword Of Zarathustra1439Corpus Ferrugineum1440No One Is Safe1441Seductress Of The Unlight1442In The Intoxication Of His Presence1443Hateful Winds1444Fullmoon Grave Desecration1445Cursed And Truncated1446God Iz Dead1447Anti Christian Domain Of Hell1448Lycanthropic Moon1449Ablution In Blood1450Funeral Rape1451Hecatomb1452Hieroglyphic Monad Of Western Esotericism1453Blackpest Worshippers1454Kill The God In You1455The Forthcoming Return Of Primeval Age Of Darkness1456Invocation Of Open Eyes And Crimson Tongues1457The Satanic Prophetic Vengeance Of Armageddon1458In Nomine Dei Nostri Satanas1459Storming Blasphemy1460Hatred Unleashed1461Sons Of The Heretic Age1462Blasphemy, Death And Grave1463In The Forest Of Ravening Wolves1464Vivit Post Funera Virtus1465No More Christianity1466Nekrosexual Torment1467O.T.O. A.K.A. P.U.P.U.1468Thunder From The Sky1469Metal Ideology Of Life1470Darkened Thelematic Transcendence1471New Era1472In Ictu Oculti1473Haeresis Maleficarum1474Terror Metal Extermination1475Brutal Imperfection1476Imperial Spellcaster1477The Infinite War Of The Macrocosm1478Reign In Darkness1479All In The Name Of Satan1480Seventh Son Of Golgotha1481Unhallowed Blood1482Satan Is Real1483Demonic Night Awaits1484Church Desecration1485Inhuman Edict1486The Vampiric Tyrant1487Once Sent From The Golden Hall1488Next Time U Watch ASMR, Remember That It Stands For Aryan Supremacy Metallic Rock1489All Metal Should Follow The RABM (Raw, Absurd, Bad, Mediocre) Principle1490Non Serviam1491All Hate God1492The Sacred Omnipotence1493When Thy Kingdom Rise1494Through Which It Came To Be1495Pure Demoniac Blessing1496The Detonation Of The Cosmos1497The Tyranny Of Christian God Is Over1498Tears Of Gods1499Elizabeth Bathory1500Hermetica Societatem Daemones1501Demonic Crown Of Anticreation1502Magnum Coeptum Satanicum1503Black Song Of Necromancy1504Only Satan1505Riders Of The Satanic Warhorse1506Immortality1507Barbarism In Lust1508Ways Of Broken Glass1509Intense Bewitched Instinct1510Nocturnal Denomination1511The Eternal Supplication Of Humanity1512Ensorceled By Darkness1513Lord Of Lords, King Of Kings1514Diabolical Obscurantism1515Dark Path To His Throne1516Wounds Bleeding Black1517Fanatical Blasphemy1518Blood, Violence & Blasphemy1519Satanization1520Back From Our Restless Slumber1521Ugly And Bygone1522Mocking The Philanthropist1523Cancer Of Fear1524Monotonous Foghorns Of Molesting Department1525Metal Warrior1526When Life Takes Its Course...1527Satan Is Strong And Always Near1528For Whom Is The Night1529Liber XXX1530To The Eternal Triumph Of The North1531Frozen Goatshrine1532Surfaces And Ancient Burial Grounds Of Soulless Warriors1533The Arrival Of Leviathan1534Crucified By The Dogs Of War1535The Scent Of Malevolence1536Cerberus, Hound Of The Underworld1537Temple Of The Serpent1538The Only Experimental Metal Band That Doesn't Suck Is Called Bagrovyi Fantomas1539Where The Ages Dissappear1540Supreme Ritual Genocide1541Sodomized By The Phenomenous Sathanas1542True Black Metal!!!!1543Ritual Desecration Of The Catholic Bible1544Evangelical Disease1545Out Side Order Of Darkness1546Under Wings Of Satan1547Macabre Manifest1548Transmutation Of 666 Elements Under 13 Demon Seals1549The Only Female-fronted Metal Band That Doesn't Suck Is Early Shroud Of Blight1550Lucifer's Brothel1551Machiavellian Era Of Satan1552Black Prosperity And Hate1553Hail Dark Forces1554Children Of The Black Sun1555Guided By Vengeance & Bloodlust1556Dying In The July Sun1557The Cause Of Carnage Was Revenge1558Chemical Castration Of The Bloodstained Dreams1559The Majestic Symbol Of Baphomet1560Flesh, Blood & Cosmic Storms1561Blood Salt Sacrifice1562Six Cruelty Six Destruction Six Destruction1563Arise The Lilith's Son1564Death To The Rotten World1565Etruscan God Of Hell1566Experimenting With Fresh Corpses1567Invocation Of Maat1568Walls Of Jericho1569Just An Average Judas Priest Cover1570Blood Of Kingu1571Dark Winds Of Nibiru1572The Only Christian That Doesn't Suck Is Maria Devi Christos1573Into The Misty Forest Of Ents1574Mayhemic Truth1575March Of The Martyrs1576Dark Mist Of Oblivion1577Satan's Possessed1578Subterranean Empire (With Us Omniscient Monarch)1579Morgoth Bauglir1580Riveting Three Nails To The Crucified1581Orgy In The Black Cemetery1582Behold My Kingdom1583Magian Transfiguration1584Creation In Reverse1585Melting Of Imagining Existence1586Satanik War Inferno1587Drinking Beer With Satan1588Unholy Invocation Moonspell Of Winged Goat1589Black Winter Abyss1590Vessels By Which The Devil Is Made Flesh1591Philosophy Of Righteous Living1592Yetzer Hara1593Relativistic Transmissions From 931594Desecrating Holy Grounds1595Follower Of Frost1596Psalter Of The Royal Dragon Court1597Aeterna Abyssus Mali1598Left Hand Path1599Hellish Adoption1600The Eternal Oath1601Desolate Landscape Of The Human Soul1602The Fever1603Messenger Ov Satanic Void1604Evocation Arum Mortuarum1605Mother Destruction1606Melancholic Cries From The Forgotten1607Luminatione Exaltat Serpens1608Harbringer Of The Void1609Mortal Illumination1610Refusion1611The Path To The Abyss Of Evil1612Accretion In Genesis1613Gravedancer1614Applied Human Defragmentation1615Moonlight Death1616Pater Satanas1617Calls From The Underground1618The Throne Of The Mountains Of Pain1619Under The Sign Of The Iron Cross1620Hatred & Black Magick1621Grim Cynical Desecration1622Secret Path To The Witches' Sabbath1623Triumph Of The Blackhearts1624Mournful Landscape1625Ave Profania (Anima Inferni)1626Easter Is Coming! I'm So Glad I Will Go To The Local Church With My Parents And Eat Cakes And Easter Eggs1627The Battle Has Been Won1628Ondskapens Kraft1629Erzbeth1630Massive Onslaught From Hell1631I'm A Drummer In A Krautrock Band, Too Bad They Don't Wanna Play Blackened Noisecore1632The Art Of Misanthropy16331363, The Birth Of A Vampiress1634Invokation Of Baphomet1635The Etherial Dream Of A Dark And Lonely Soul1636Burn The Crucified Whore1637I Awaken (Amongst Them)1638Pure Satanic Slaughter1639The Lurking Horror1640Amorphous Chaos1641Exploding The Christianity1642The Opening Gates Of Darkness1643Violating The Grave Of A Holy Nun1644Satan Crush Useless God!1645Abyss Calls Life1646Invocation Of The Black Lord1647Long Live The Goat1648Black Calls From Nether Regions1649Suffocating In Pestilent Air1650Esoteric Visions Of The Old Ritual1651Viking Metal Is As Much Of A Style As Pirate Metal1652The Uncontrollable Spiral Towards Death1653Impending Hell1654Inner Sanctum Sinner Sanctum1655Lord Nocturnus1656May God Strike Me Dead1657Draconian Synthesis1658Evil Invasion1659Black Light Of Lucifer1660Theories Of Miasma1661For Those Enslaved1662Fueled By Hate And Despair1663Legions Of Desecration Of The Holy Cross1664I Like How The Band Is Immediately Recognized As Experimental If It Doesn't Reuse The Same Damn Harmonies Everyone Else Used1665Where Demons Prevail1666I Have Hard Time Believieng Meynach Was Born In 16661667Nyarlathotep Pussy1668Memories From The Eternal Cult1669The Ancient's Power1670Pentacostal Cuntcommand1671Kill You Tonight1672Desecrate Thee Doctrine Of The Second Cumming1673Impaled On The Moon Blood1674De Divinatione Daemonum1675My Child Of Sadness1676Funeral Hour1677We Are The Warriors Of Satan1678Occultum Lapidem1679Serpent Heart1680Sculpture Made Of Cursed Visions1681Desecrated Sepulchre1682Beyond Intolerance And Silence1683Moonrise Over The Land Of Frost1684Reinventing Evil1685Chapel Of Gore1686With Carnivorous Intent1687Hourglass Of Possession1688Into The Forthcoming Darkskies1689Machine Of Hate1690Ghoat1691Waiting To Exhale1692Oracle Of The Void1693In Darkness Is Found The Greater Enlightenment1694Ordo Domini Noctem1695Truci Et Congelationis Sem1696Dying Hour Of Thy Father1697Venom And Iron1698Paths Of Pain And Death1699The Infernal Hierarchies, Penetrating The Threshold Of Night1700Saturnian Pact1701Omnipotence Aeternae Diabolous1702In Shadows Of The Damned We Reign1703Pantheon Of Dark Chickens1704Maximum Perverssum1705Moments Of Molestation1706Blood On The Satan's Claw1707In Signo Suo1708They Must Be Killed1709Ruled By The Akausalt1710Hail The Black Metal Wolves Of Belial1711Execration Diatribes1712A Return To Rain1713Crepuscular HellGoat1714Ascending To The 666th Level Of The Buddhial Plane1715Midnight Child1716Darker Than Night1717Covfefe Rabbit Hole Pandemic1718Topheth Ablaze1719Breaking The Armour Of Light1720Disciples Of Black Sorcery1721Omnipotent Allmighty Satan1722Down The Blade, Down The Spiral1723At One With None1724Corrosive Subliminal Catheter1725The Infernal Gateway1726Firm, Worthy And Proud To Burn In Hell1727...The Era Of Light To End1728Acts Of Desecration And Blasphemy1729Philosophers Of Underground Nihilism1730Hellish Reflections1731Blood Stained Knife1732Winged Heralder Of Plagues1733Demon's Call1734Untimely Horror Vampire Form1735Enshrined Into Oblivion1736Unholy Truth1737The Plague And Its Executioner1738Abstract Domains Of Saturn1739Swelling Infernal Hosts1740The Misanthropic Way Of Masturbation1741Spill The Blood Of The Lamb1742Sataniac Machinery1743The Horns Of Euthyphro1744Infinite Emptiness1745One Foot Inside The Grave1746Kingdom Versus Kingdom1747Bow Before The Altar Of The Drugs1748Beatification Of Black Azazel1749I Am The Funny Clowns1750Brave New Darkness1751Cursed Visions From His Infernal Realms1752The Bodies, We Eat... The Blood, We Drink1753Blinded By Hate1754Witches Searching For Sheep1755Fascinating Dead Meat1756Ad Honorem Magnae Mortis1757Ritual Death Sacrifice1758Mother Of Misery And All Repugnance1759Sometimes We Bleed1760Writing Insincere Letters Of Support To Every DSBM Fag On Bandcamp1761Minxit In Braccas Iterum1762Sea Of Despair1763Shooting Totenkopf-shaped Bullets In Gay Parade Participants (No Offense Though, I'm An LGBT Member Myself)1764The Trail Of Vile Death1765Journey To The Lower Astral1766I Joined Wehrmacht Because I Heard They Give Free Tickets To Joy Division1767How Can You Deny Holocaust When Even Der Führer Himself Was A Holocaust Survivor?1768Dark Triumph Panzer Kommando In Chornobaivka1769I Only Took Part In A Nazi March To Hang Out With My Friends1770Fun Fact: Kyiv Authorities Renamed One Of The Major Avenues In Honour Of A Well-known Nazi Collaborant During WW21771Sailing On The Revenge1772Dark Sky Majesty1773Damnatio Memoriae1774Acts Of Apostasy1775Destroyed By Fire1776Worship The Dark1777Is There Already A Track Named "Sadomasochrist"?1778Antique Legion1779Oppressor's Hell1780Cantìcum Eternus1781In The Name Of The Christ Killer1782Cry Of War1783Anus Domini1784Galloping Blasphemy1785Dark Annals Of Occult Masters1786Sovereign Of Shadows1787Ashen Light Of Darkness1788Unholy Napoleonic Dystopian Worldviews1789Demonic Chronicles1790Satanic Hellslaughter1791Fight For Glory1792The Return Of The Mystical Reich1793Darkness Gets Me...1794Cosmic Conqueror Of The Earth1795From The City Of Churches1796Drugs Are Not Bad Or Good, They Just Are1797Kellersynth Only Sounds Good To Me When I'm On Drugs1798Doomed To Live In A HellForest Cave1799Annihilating The Empire Of The Bastard Christ1800Tenabrarum Serpentium Rituale In Nostri Temple1801Spike Torn Insight1802The Sacrament Of Unholy Communion1803Septic Innards Of Shaitan Goat1804My First Ex Was A Psycho, My Second Ex Was A Junkie, My Third Ex Was Simply Fucked Up, I Hope My Next One Doesn't Know They're Already Dead1805Scripture Ov Blackness1806Tristitia1807Slaughter The Dove Of Peace1808Engage In Unholy Fratricide1809Infernal Knowledge1810Fuck Your God Worship Satan1811Sentenced By Your Mind1812Hyperborean Folklore1813Tenebris Devinctionibus1814Born Of Ishtar1815Sumerain Shitpost Casted In Stone1816Harassing Jailbait Goth Prostitutes On A Type O Negative Gig In 19991817Shadow Magus1818Shadow Of The Destroyer1819From The Abyss... To The Throne1820Beneath The Ancient Graves Of Arkham Cemetery1821The Fact Of You Finding A Reference To Your Doo-doo On This Album Means You're Gay Enough To Even Reach It Somehow1822If You Don't Find A Reference, I Either Don't Know You, Respect You (Nah) Or You're Too Worthless To Be Referenced1823Hellgrinder1824...Hidden God1825Vicar Of God Of The Death1826Reverend Cadaver1827Empowerment1828High In The Fir Trees1829Astral Unholy Madness1830The Bottomless Darkness1831Biomechanical Messiah1832Grand Act Of Violence1833Why I Am A Pagan1834Soli Diaboli Gloria1835A Prophetical Age1836I Like How Discogs Has Comfy Synth Style Option, But Doesn't Include Russian Criminal Shitcore1837Bandcamp Is So Lame It Starts Lagging After You Upload A Couple Hundred Tracks To A Single Page, That's Why This Shit Is On Internet Archive (Which Is Slow AF)1838I Came To Vatican And Turned It Into A Rave, Now Berghain Can Suck Ass1839Visions Of Nocturnal Tragedies1840Heavy Metal Coitus Interruptus1841If I Were Punk Enough, This Masterpiece Wouldn't Exist1842Sinister Poetry1843Fight Of Gladiators1844Baphomet-shaped Simple Dimple1845Louis Cachet Might Be A Real-life Criminal, But If We're Talking In Terms Of F-art, Zippy Kid Is The Gangsta1846Revelations Of Diabolicalism1847I Was In Hell And They Sell Souvenirs There1848Born To Die For Evil1849What Happens In Naraka Sounds Like A Nightamrish Form Of Entertainment1850...For The Primordial Instincts1851Visions Of Infernal Purity1852Hatets Evangelium1853I Don't Hate Life, I'm Just Mentally Insane1854Fire, War, Death!1855Endless Beauty1856Rituals Of Blackened Perfection1857Black Punishment And Apocalypse1858Nothing Ever Changes1859Black Propaganda1860Rise Of Aversion1861Honorem Satanae1862The Only Black Metal Band Is Nirvana And The Only Death Metal Band Is Eagles Of Death Metal1863Delirium Tremens1864Call Me Death1865Even Baphomet Is Afraid Of The Chupacabra1866Twilight Of The Strong1867Did I Mention My 2nd Ex Was A Feminist?1868May Worlds Bleed For The Honour Of Devil1869You Can't Call Me A Pedophile Just Because The Age Of Consent Is √-̅1̅1870Whirlwinds Of Fathomless Chaos1871From Beyond The Cemetary1872Enbilulugugal Disbanded Because Dustin Jeffries Mixed Voldka, Whiskey, Apple Cider And Mayonnaise1873Nuclear Fear1874The Dark Art Brotherhood1875Waiting For Satan's Rising1876You Joked With Lord Poozix So He's Already Eating Your Bones1877It's Not Black Metal If It's Possible To Listen To It Without Headphones (The Opposite Statement Is Also True In Some Sense)1878I've Already Spent Weeks Making This Album, Is It Professional Enough?1879Terra Mortis1880Black Art Obsession1881Terroristic Ecstasy1882Epilogue To Cosmic Catastrophe1883Doomsday Carnage1884Beheaded1885Diagnose: Pfählungsangst1886Hyperion1887Like The Witch And The Sorcerer1888Hexakosioihexekontahexaphobic Nosebleed1889The Enshrouded Eye1890Torn Apart By Darkness1891Gloomy Necrotic Ritual1892Sloth Is The Gayest Sin1893Sentiment For A Time Long Forgotten1894Winds Of Funeral1895I Like How There Are Only Two Vaporwave Acts On MA, One Of Which Is Kinda Not Vaporwave At All1896Children Of The Divine1897Slowly We Fart1898Six Days With Sadistic Slayer1899Crypts Of Thrashing Torment1900Why Does Discogs Even Exist? Wouldn't It Mean That There Are People Who Listen To Something Different Than Metal?1901Rising From Gray1902Only Dummies Believe Koot Hoomi Is A Hoax1903By Your Command We Return To Dust1904Satan My Dreams1905While Having Balanitis And Fungal Infection On My Feet, I Make Fun Of Lorenzo Not Talking A Shower1906The Satanic Force1907Ancient Satanic Cult1908Lyrical Themes: Satanism, Goatwhores1909Black Semen Vomit1910The Great Darkness1911I Bet Satyricon Were Self-conscious When They Released Radio Versions Of Their Songs1912The Truly Funny Thing About Venom Is Not "Metal Black", But "Black Metal"1913The Evil Of The Time To Come1914Veils Of Mysteries1915Under A Violet Moon Shining1916Between God And The Devil1917In The Sorrow Of A Crimson Sea1918Embraced By Sorrow1919My Stay In The Forest1920Sometimes I Think Posh Isolation Schould Release Black Metal More Often Than Ten Years Ago1921BMBM (Brazilian Mexican Black Metal)1922Of Martyrs And Men1923Preparation For The Nailing1924Devoured By Satanotomy1925Chaos Omega1926Communion Through Mutilation1927Dreams Of Burning Churches1928Dark Language Of A Supreme God1929Dawn Of The Conqueror1930Dimmu Borgir Should Make A Minatory Dubstep Album1931Cooperation With The Devil1932Good Luck Scrobbling This Album1933Misanthropic Wrath1934Obliterate The Impudent Disciples1935Zero Anno Satanas1936Among The Woods1937The One Who Avoids The Light1938The Catacombs Of Hell1939Unholy Attack Of Satanic Force1940Unholy Goatfucker1941Plain Of Writhing Serpents1942Jezus1943Agoraphobic Cryptic Snot1944Sanctissimi Corporis Satanas1945Ortus Mors Ad Vitam Revocare1946In Hel We Ride1947Conjuring The Fire Plagues1948Transformations Of Immortality1949Drowning In The Vampyric Sacrament Of The Immortals1950Under The Power Of The Midnight Fullmoon1951In Presence Of Evil1952Where The Sun Does Not Shine1953Voices Of The Dark Call Me To Suffer1954Anguish And Satanic Torments1955Infernal Ways Of Evil1956Retaliation Beyond Earthly Life1957Total Fucking Nuclear Destruction1958The Wolf's Legacy1959A Trancendental Place From Darkness1960Mutual Flagellation1961Blasphemous Mantra1962Satanic Incantations1963Deinde Signum Mortifera1964Stench Of Downfall1965Behind Satan1966Neverending Is My Black1967Dominion Of Epitaphs1968Mörkret Skyddar Vara Garningar1969Blood Drinkers Of Satan1970Devotion And Prayer To Eternal Chaos1971I Want To See You Suffer1972Black Thrash Metal Lust1973Burning Banners Of The Funereal War1974Wholeness And The Implicate Order1975Satanic Necrophilia1976Opus Magnum Satanicum1977Procreation Of Souls1978Tactics From Beyond1979Goat Ritual 9991980Black Faith1981Black Is My Altar1982Demons Of My Inner Self1983Enim Satanas Meum Sanguinem1984Iconoclastic Terror1985Punishment That Hurts1986As The Flame Withers1987The Ones Who Help To Set The Sun1988Signing Satan's Contract1989Master Szandor LaVey1990Cult Ov Satan 3331991Angry At Everything And Everyone1992From The Death Of The Gods To Human Decay1993Aufgespießte, Erfrorene Verzweiflung1994Coffin Town Under The Moon1995Chthonic Pornography From The Depths Ov Hell1996Chained Gaze1997The Bowels Of Death1998Looking For Black Flowers1999Bring Satan's Glory2000Preserve Us From The Fires Of Hell2001In Tunnels Of Ritual Intoxication2002Into Thy Sword2003Damned To Death2004Creation Of The Dark Age2005Somber Typhonian Fields2006Ceremonial Bloodthirst2007Give Me Power Through Blasphemy2008Abysmal Nocturne2009Homo Homini Lupus Est2010Diary Of A Murderer2011Possessor2012Cadaveris Viventis2013Drawing Down The Poop2014A Crazy Symphony Of Transcendental Spaces2015Locust Of Schadenfreude2016Obsession I Need2017Spells Of The Akkadian Priests2018I Don't Understand People Who Buy Cassettes And Vinyls In 20242019The Moon Growing Colder2020Excellence Of Supremacy2021The Devil's Trails2022Pilgrim To Total Negation2023Agression Ov De Sathanas Troops2024Unblack Metal Is More Of A Style Than Pagan Metal, Even Discogs Recognizes It2025There Is A Negative Correspondence Between Trueness And The Level Of Entertainment Of Black Metal2026Fragments Of Illusion2027Bride From The Dead2028With Determined Steps2029Black Metal Is Freudian, Not Nitzschean2030Signum Eios Barathrum2031Blasphemous Murmurs2032The Ultimate Foolishness Of Slavic And Global South Metal Makes It Even Better2033Contemplated Be Devils2034Torch Bearer2035White Frozen Fields2036Ozzy Osbourne Should Have Played Johnny In "The Room"2037The End Of The Sinner2038Megalomania2039Kingdom Of Falsehood2040Mystical Hymns Through The Darkest Years Ov Azrael2041Eternal Tears Through Asmodeo's Blackened Flames2042I Like How MA Warns Users Not To Add Merzbow To The Database Implying Merzbow Is Not A True Black Metal Artist2043Boris Should Be Removed From All Music Databases Because They Stole Their Artist Name From Melvins Making All Their Stuff A Bootleg2044John Zorn Is The Greatest Grindcore DJ, He Even Made A Split With Napalm Death2045Obey Profanatory Forces2046Umoral Monkey Dance2047I Paid Money To Odd Nerdrum To Make A Kvlt Cover For This Album, But He Blacklisted Me After Receiving The Money And Never Wrote Back2048Blood Luxury2049By Triumph Of The Eternal Conquest2050Blasphemous Edictum2051Buried With God2052The Rise Of The Dragon2053Unlocking The Gates Of Hell2054Fun Challenge: Try To Find Two Tracks On This Album That Sound The Same2055Christian Pigs2056The Black Empire Of Satan 6662057Following The Sinister Path2058Cult To The Death2059May My Sword Strike The Cheek Ov The Holy Ones2060Ancient Sadness2061The Howling Gale2062Return Of Primordial Stillness2063Infernal Antichristian Incantations2064Darkness Upon The Face Of The Depth2065The Everlasting Twilight's Ceremony2066Into The Depths You've Fallen2067Totalitarian Sects Of Bikini Bottom2068In The Realm Of The Horned2069The Razorblade Redemption2070The Scream Of The Nature2071Sic Transit Gloria Mundi2072The Manifest Carved In Flesh2073Before Dawn2074Black Dawn Of Death2075A Fragment Of Truth Bleeds Alive!!2076Sacrament Of Blood2077Goat Smegma2078Horror Awakes2079Ghoul Metal Spread His Glory2080Holy Friday2081Apochryphal Revelation2082Through The Branches For Eternity2083Everlasting Abomination2084In Ceremonial Circles2085Forever Darkness & Forever Hell2086Manifesting The Antichrist2087Panic! At The Black Mass2088An Exhumed Lore Of The Chthonic Undercrofts2089Manichean Theurgy Of Bloodthirsty Vessels2090Magnus Ominis Umbra2091Death's Anti-culture2092Tomorrow Canceled Due To Lack Of Interest2093Grim, Uninspired Apathy2094Serfs Of Satan2095Broken Life2096Upheaval Of Destructive Hate2097Rex Mundi2098Outbreak Of Evil2099Orgiastic Dance Of Pan2100Armageddon Finally Comes2101The Place That The Light Should Never Have Exist2102Blasphemous Night2103Forced Abortion In Narhsykk2104Eschatological Resection On Impure Blood2105Tenebra Hocculta2106Trumpets Sing For The Rising Flame2107Forest Scream2108We The Unclean Shall Flourish2109Initiation 66662110Solve Coagula Hail Baphomet2111Bellum Omnium Contra Omnes2112Satanic Rush Of Black Particles2113With Cunning Fire And Adversarial Resolve2114Envenom Bloody Countess2115Unending War2116Return Of The Witchfinder2117Serpentfire2118Church Of Sodomy2119Decree Of The Underworld2120Satanic Glorification2121Todesstoß On Steroids2122Between Woods And Moon2123The Essence Of Satan2124Old Dead Moon2125Bleeding For Him2126Circle Of Fire2127In The Last Days Of Humanity2128Devoured By Chaos In Eternal Torment2129Mephistopheles2130Black Sorcery From Within Arcane Caverns2131Darkened Skies Above2132Drown The Enlightened2133The Realm Of The Devastating Gods2134Mystic Journey To The Knowledge Of Occult Secrets2135I Despise Jesus Christ2136Beleth Sends Sons Of Bitches2137The Kingdom Of Glacial Palaces2138Molesting Christianity2139The Afterlife Guide2140Violation Of Every Ethical And Moral Principles2141Harbingers Of The Victorium Aeternus2142A Specter Within The Forest2143And The Holy Places Will Burn2144Mockery Of The Cross2145Starfire, Chasms And Enslavement2146The Malefic Vomit Of Satan2147On The Eve Of Nuclear Devastation2148The Ripper's Rectum2149Bejeweled In Grim Sopor2150The Broken Seal Of Solomon2151Spirits Of The Past2152Lucifer Dreaming In Love2153Anfang Der Düsteren Dunkelheit2154Legacy Of Seth2155Hell's Brigade2156Miasmic Monstrosity2157Total Heathen War2158The Church Of Devil Darkness2159Stumbling On The Holy Mountain2160Bela Lugosi Is Dead, Buried And Forgotten2161Church To Devil2162Those Black Desires That Torment My Soul2163Every Field Recordings Producer Is Gay2164Black And Endless Pathways2165No Mercy Shown2166Element Of Destruction2167Black Pyre2168Psycho God2169The Stench Of Rotting Innards From The Christs2170Unholy Circumstances2171Mistery Of Chaos2172A Fortnight Of Pain2173Bloody Carrion2174Dark Stallion2175Under A Layer Of Dust2176Bestial Cult Of Transcedent Chaos2177Grim And Frostbitten Gay Bowser2178Into The Deathritual2179Satanic Voices In My Occult Toilet2180Whiten Your Nose For Satan2181I Can Only Record This Album When I'm On Nymphetamine2182To Walk The Path Of Unrighteousness2183Restus Corpus2184Alcoholic Rites Of Metal2185Anger Of The Dying Nature2186Choir Of Blasphemy2187Infernal Invasion2188Failed Satanic Blitzkrieg2189The Blasphemous Psalms Of Cannibalism2190I'm Good At History, I Even Know That WW2 Started In 19402191People At My Age: Getting Married, Making Kids; Me: My Condom Broke, Good I Was Jerking Off With My Dick Covered In Menthol Toothpaste2192Thy Corpse Enthroned2193The Exorcism Of Satan2194Thy Legions Reign Over Christendom2195I'm Out For Cough Syrup So Imagine There Will Be More Music For The Next Couple Of Minutes2196Monastery Of Thousand Blackened Lusts2197Migrations To Hell2198Bloodstained Altar2199Agnostic Pessimism2200Praeludium Ad Praecipitium2201Awaiting The Nuklear Holokaust2202Shield Of Hate2203As Above, So Below2204Crimson Butterflies2205Age Of Retrogression2206Resurrection Of The Bog Bodies2207Medieval Plagues2208Chthonic Heritage2209In Darkness We Gather2210Of Holy Sacrament And Semen2211Pussy Riot Should Switch To Black Metal2212A Conspiracy Of Hungry Shadows2213Grim Pandemonium2214Meet Me In The Graveyard2215I Like How Norwegian Black Metal Was Once Mentioned In "Daddy's Daughters"2216Thermonuclear Goat2217Beyond The Threshold Of Satanic Transgression2218Take Me Away From All This Death2219Jesus, Intense Weeping2220Game Of Blood2221Black Silhouette Enfolded In Sunrise2222Bestial Death Black Metal Holocaust2223Abyss Of Shadows2224Dramatic Genesis Of The Deceased2225Salute Metal2226Diabolical Messiah2227Grim Demonoise2228Baptism In Hell2229The Dark Hand Of Satan Reaches Far And Wide2230Dark Telepathic Powers2231The Time Of Eternal Death2232Born Under The Saggitarius Spell2233Choronzonic Chaos Gods2234Heaven Shall Burn... When We Are Gathered2235Postmortem Rituals2236Under The Burning Moon... They Come2237Monks Of The Black Circle Of Veneration2238Constellation Of Death2239Evil Mental Cold Winter2240Sodomize The Dead (For Satan)2241Promethean Black Flame2242Vampress Of The Dark Gods2243Some Boomer Asked Me To Turn On Rammstein On A Family Party, I Played Xasthur Instead And They Didn't Even Hear The Difference2244Dark Times on the Edge of Destruction2245Finnish Metal Artists Are Like "Syksyn Kuolema Pukkala Perkele Aaaaaaaaaaargh"2246Christ's Scourge2247The Voices Of Those Who Succumbed2248Enigma Of Hades2249Sinister Priapism Of Satanic Priests2250The Only Reason Columbus Went To America Is He Wanted To Trade Fertilizers For Some Rare USBM Tapes To Add Them To Metal Archives And Earn Points2251Bloodfucking Satanic Leeches2252From The Black Sky Of Pagan Andes2253Satanic Gematria Of John Dee2254The Tomb Of Illusions2255Romanticizing Disparity2256Serpent Psalms2257Grim Anxiety Of Satanic Prophets2258Hellbound2259A Black Figure Distributing Death, A Black Phantom, Who Is This? I Come Closer And Recognise Him. It's Euronymous, Our Black Brother. Tanguering The World By The Side Of The Devil. The Revenge Of Hell Is Completed2260Sarcophallus Baphometikon2261The Silencing Of Jehovah2262Malicious Cannibal2263Blasphemies Of The Elder Gods2264Living In Meggido2265Angel's Mourning2266The Destiny Of Once Betrayed2267Enter The Realm Of Chaos2268Hymns To Haunt The Gates Of Heaven2269Lost In My Obscure Dreams2270In Battlelight's Embrace2271Thousand Years Of Midnight2272Eternal Abyss Of Damnation2273A Frozen Shadow2274Postmortem Trephination Experiment2275Apotheosis2276The Age Of Cataclysm2277Necklace Of Teeth2278The Last Supper2279Usurper Of The Darkthrone Of Puss God2280When The Seas Become In Black2281Cum Splattered Face Of Madonna2282To Satisfy The Eyes Of An Obsessed2283May Piss And Ash Fill Their Lungs2284Black Metal Is So Primitive Half Of It Could Be Improvised2285Raped By The Trees, Strangled By The Roots2286Deep Darkness Beyond...2287I Signed A Petition For Vatican To Remake The "Holy" Bible Into "How To Make Black Noise For Dummies"2288At The Hour Of Necromancy2289Thee Results Ov Thee Unholy Crusde2290Litanies Of Lust Unholy2291Captured By The Obscurity Of Night2292Defiance To Aziel2293Infected By Rats2294Devilish Spellcraft2295Peace Dove Rattenkönig2296As Bastard As God2297Dreams To Mourn2298Blasphemy Of The Angels2299Lamentation And Ardent Fire2300Unheilige Throne Of The Satanic Faust2301Insulter Of Jesus Christ!2302Satan's Blood2303Satan Obscure2304Ominous Microtonal Polyrhythms Of Experimental Satanic Chants2305Emperors Curse2306Soul Gate Seal2307Let Satan Speak Through Our Lips2308Döden Skiljer Oss Åt2309Nigredo And The Opening Of The Temple2310Vampiric Godslaying Overlord2311Evil Is In Blood2312When The Souls Winters Burn My Eyes And Shadows Of Lost Life Hides2313Paradise Of The Infernal Torment2314The Burning Of Black Candle2315The Soaring Wrath2316Necronomicon Rises2317An Evil Born In Heaven2318Under The Flag Of Hate2319True Kings Of The Void2320Ephemeral Bleeding2321Hyperion, The Astral Fire2322Ashes Of Empires2323Accursed Ragnarök2324As The Blood Gets Spilled2325If You Don't Give This Album 100% Rating, I Will Activate Roko's Basilisk2326The Dark Lord's World2327Swirling Maelstrom2328Black Tsunami Of Satanic Revenge2329The Final Exorcism2330To Satan Go The Spoils2331Terra Incognita2332Occam's Shitstained Razor2333Dominion Through Obscurity2334Luciferi Nostri Imperator2335There Will Be Blood2336Abortion Of Humanity2337Antichristian Disease2338Misanthropic Tales From Cosmic Minds And Satanic Hate2339Lord Of All Desires In Life And After Death2340Espionage Of His Messengers2341Mystical Presence Of Satanic Demonology2342Throne Of Demonic Proselytism2343Ebony Antlers Of The Reaper2344Behold, The Demonthrone2345Revolt Of The Angels2346...And Death Comes2347The Statues Are Watching2348Barbarism Endomination And Inquisition Of Christ2349Pierced Endomentrium Of RapeNuns2350Revenge Of The Hellhammer2351The Fifth Disarmony2352Bottomless Stinky Pits Of The Topless Zombie Nun2353Forever Bound To Nothingness2354Towards Nine Climbs2355Execution In The Name Of Their God2356Finland Is Not A Nation, Because How Can There Be A Nation Without A Language?2357Grim And Frostbitten Hipsters2358The Threshold Of Consciousness2359Unwilling To Pay The Soul's Price2360In Service Of No One2361Caerimonia Diabolus2362Damned By Time2363Worship The Flesh2364I Heard There's Christmas Metal, Why Not Create Winnie The Pooh Metal?2365John Cage Created 4:33 By Mixing Crust, Metallic Hardcore And Crossover Thrash, They Kind Of Canceled Themselves2366Music For The Endtimes2367Sexual Servitude To Satan2368Crippled Messiah2369As The Morning Dawns We Close Our Eyes2370Beneath The Crimson Prophecy2371For The Lord Of Hell2372The Night Of Shooting Stars2373Satan's Bodily Fluids2374Your God Is Dead2375Rituals Of Darkness And Satanic Worship2376Christ Devoured By Worms2377True Darkness2378No Trace Of Sunlight2379Despotic Conjuring Of The Soulless2380Rotted Disaffection2381Addicted To Goat Juice2382Cadaveric God2383Grim And Frostbitten Simpsons2384Invocation Of The Elements2385Sadomatic Trepidation2386Flounce Of Antagonism2387The Apocalypse Reign2388Mercy Denied!2389...Of Satan For Satan!!!2390Isolation Through Blasphemy2391Our Friends The Satanic Aliens2392Impure Devastation Mass2393Under The Undead2394Ectoplasma Of The Grim Postman2395Ectoplasma Of The Grim Postman2396From Payment Chaos2397The Night Of Death2398Birth Of The Seven Exponents2399Í Helgum Dýrðar Ljóma2400Mors Aeterna2401Through The Mysteries Of The Forgotten Shrine2402Hermetic Prayers Of Deimos2403Forgotten Gods Of Darkness2404The Stench Of Christ's Lies2405The Garden Of Theophrastus2406Disciple Of The Horned2407Black Mushrooms Of Satanic Slugs2408The Unknown Terrors2409Arterium Gnosis2410Obscure Melancholic Martyrdom In The Name Of Lucifer2411Triumph Of The Nightforces2412Hessian Peel2413Denying Pantheism2414Erroneous Manipulation2415Where The Cold Wind Blows2416Is There Any Story Behing Why "Akashic Records" Is So Widespread As A Label Name?2417Touched By Evil Grace2418Brushed By The Wings Of Pazuzu2419Enochian Emissions2420Hatred And Revenge2421Final Hellish Nirvana2422Orgasm Of The Demons2423Black Metallers Only Make Demos Beacuse It Rhymes With Demons2424Black Epic War2425Pissings Of The Jesus Throne2426The Rise And Reign Of Lucifer2427Under The Mortuary Veil Of The Night2428The Grievous Miracle24292430Conquering The Darkness2431Confessions Of A Grave Robber2432Infected Satanic Apology2433Hungry Angels2434War Metal Fuck2435Beautiful Leaves Of Supreme Pagan Art (Opera Sexualis)2436To Become The Great Beast2437Opus Aethereum2438Galleries Of Eternity2439Drinking Hot Chocolate In Hell's Cafeteria2440Subjugating The Faith's Crawlers...2441Evilucifer2442Our Lady Of The Night2443The Fact BM Is Self-conscious At Large Doesn't Make It Less Funny To Mock It2444Scepticalize2445Death Redemption2446The Rites Of The Excommunion2447Shrek As Dirt Poseidon2448Down Below The Fog2449De Occulta Philosophia2450Territorial Suppuration Of Antimusical Deompositions2451Get Fucked In Hell2452Imperivm Regis2453Deep In Hell2454Everyone Suddenly Remembered Silent Servant When He Died2455Rage Of The King2456Imma Pause For Smoking So Here Are More Field Recordings For Thee2457Just Kidding, I Forgot To Start Recording2458A New Star In Darken Sky2459At One With Nothing2460Into The Age Of Fire2461Magnificence In Luciferian Fierceness2462Scavengers Of The Damned2463Grave Digger2464Twilight Of Dark Illumination2465The Gate Of Eternal Suffering And Death2466Baphomet Fellatio Apocalypse2467For Whom The Bell Tolls2468Blinded By The Knife2469Burning The Flesh Of The Holy2470God Of Destruction2471Dark Possession2472Frost Wave2473The Madness Has Arrived2474Cold Breath Of Winter2475How To Grip A Slipping Sanity2476God Admires The Evil Soul2477Demon Crusade2478Vomiting Blood In The Nazarene Face2479Ocularis Infernum2480Aldebaran2481Low Dive2482Prevent Godz Desires2483Grim Seraphic Obsequies2484Solitude Of Eternal Nightfall...2485Eternal Blasphemy2486Evil Shadows Of The Underworld2487The Oath Of Martyrdom2488King Of The Rats2489He Is The One And Only2490We Are The Fist In The Face Of God249142 Names Of Satan2492Burn The Cross Of Deceit2493Phlegeton Catacombs Howling Torture2494Sacrifice Upon The Altar Of Hate2495Alchemy Of Terror2496The First Evil Spell2497Under Dominion Of Sathanas2498Consuming The Divine2499Requiem Aeternam Dona Eis2500Feasting On The Flesh Of The Innocent2501Thy Horrid Abomination2502Fuck Ukraine For Banning Menthol Cigs, I'm Moving To Russia2503Also Fuck Cigarette Manufacturers For Tricking People With Leaving Menthol-associated Brands And Replacing The Cigarettes With Non-menthol Ones2504Homoerotic Temple Of Profanation2505Miserable Excuse For A God2506Morbid Nekro Possession2507The Smell Of Cemetery Incense2508Reconquering The Old Empire2509Initium Fidei2510Torture Dungeon2511Faceless Disciples Of The Watch2512Resurrection Of Deathly Visions2513In Ways Of Foul Grievance2514Illustratio Per Horribilem Obscuritatem2515Genuflexion Of Ca'bas2516Amidst The Cold Winds Of Despair And Solitude2517Black Alien Sphere2518Into Another Dream Where The Whole Of A Chamber Is Painted In A Virgin's Blood2519Goetica Summa2520Insecticide2521Contemplation Of Darkness2522Into The Deathless Darkness Where Death Summoned Is...2523Colony Of Burnt Bodies2524Guided By The Hand Of Satan2525Teufelskunst2526Food For The Mother Death2527Rise Of The Burning Cross2528Vice, Suffering And Destruction2529Profound Slanderer2530Manum Inicere Alicui2531Demon Est Deus Inversus2532I Only Make Fun Of Black Metal Because I'm An Unblack Person And Also A Member Of The Sect Of God Kuzya2533Lugubrious Necromancer2534The Absolution From All Holiness2535The Return Of Satanic Rites2536All Music Databses Are Based On The False Assumption That Releases Exist And Are Better Than Nothing2537Involuntary Hollow Embodiment2538For Black Hearts2539Ritual Murder Of Christ2540Necromantic Nightmare2541The Night Of The Deadwitch2542We Are A Fist In The Face Of God2543Where Eden Once Lied2544Immortal Guardians Of The Darkness Throne2545Woman And A Crystal Ball2546Within The Womb Of Satan2547Barbarian Horde2548Infernal Zeal2549Metalust Hellmaster2550Feed Bitches With Satan's Seed2551Repulsive Existence2552The Lore Of The Cloaked Assembly2553Cries Of Despair Coming From Christians Burning In Jerusalem2554Lamenting His Reign Unto Acknowledgement2555Dissolution By Catatonia2556Dance Of December Souls2557Death In The Astral Plane2558Decree Of The Nazarene2559Requiem For A Charnel Heart2560This Hell2561Suicidal Death Portrait2562Praise The Supreme Ruler Of Your Soul2563Destruction, Desolation, Winds Of Hell2564In The Ashes Of The Promised Land2565Silence The Blasphemous Chanting2566Lycantropic Disembowelment2567Christ Crusher2568Harmonic Devastation2569The Mystical Beast Of Revelations2570Into The Blasphemic Fullmoon2571...Of Serpentine Forces2572Ultimatum2573The Dagger And The Posessor2574The Impaler Of Christian Scum2575If Black Metal Were Politically Correct, It Would Be Called African Metal (And Black Metal From Africa Would Be African African Metal)2576Pure Infestation Of Evil2577In Laudem Azazel2578El Metal Negro Suena Aún Más Ofensivo En Español2579Hidden Song Of A Voice Beyond The Void2580Hell For Humanity2581Satanae Tenebris Infinita2582Dwelling Of The Unholy Ghost2583Vexilla Regis Prodeunt Inferni2584In Morte Sumus2585For The Glory Of Satanas2586Infest To Infect2587Sun Of Abhorrence Light2588If Satan Doesn't Exist, Who Gives Children Christmas Gifts?2589Ancient Ways Of Evil Darkness...2590Land Where Angels Fall2591The Sadist With Black Gloves2592A Tragedy Called Existence2593Satan Moon2594Drinking With The Devil2595Enlightened By Lucifer's Flame2596Pandemonium Diabolico2597Salvation Through Infinite Suffering2598Legions Of Perkele2599Bones In The Flames Of Heresy2600Doofus, The Heresiarch2601Descend Into The Black Abyss2602Hail To The Gods Of That World2603Nocturnal Hallucination2604Whispers Of Suffering2605For The Misanthropy Cult2606Pain, Sadness And Putrefaction2607Feliz Brujería Congelada En El Norte2608Souls Of Reverence2609Hateful Spell2610To Hell With Your Soul2611Total Bloodshedding Devastation2612A Moment In Timeless Space2613This Is How Hatred For The Time We Live Was Born...2614Between Orgies And Prayers2615To The Devil A Daughter2616Impurifying The Consacrated Victory2617With Evil We Ride2618Interrestrial Black Twilights2619Ave Sathanas I Was Born To Murder The World2620Bearer Of Cosmic Blasphemy2621Let The Devil Play...2622Call From The Grim Grave2623Those Final Laboured Breaths Preceding The Ascent To Eternities Deep2624Jesus Assassin2625On The Throne Of Blood2626Permafrost Desert Madness2627Unleashing The Demon Scourge2628Praise The Unholy Grinch2629In The Environment Of Mr. Lucifer2630Funeral Pyre Of Past Generations2631Evil Strikes Again2632Grim Hordes Of Ravens2633The Black Bible2634Odes To The Eternal Crypts2635Raping The White Purity2636Monumental Darkness2637Pissing At The Graves Of Popsakal And Immoral Basement Records2638Bizarre Conflict2639The Black Flame Takes Us Through The Old Path2640Embrace The Cold2641Frostbitten Smoldering Desert2642The Bestial Ritualism Of Harlotry2643Music From Saharan Cellphones Ist Krieg!2644Maledictum2645Enter The Chapel2646Consign To Oblivion2647Short Cut To Hell2648Nymphomaniac Fantasia2649Fucking Hostile2650Blood Gospels Of Satanic Inquisition2651Dark Roots Of Earth2652Shadows And Tears2653Leveled By Shrapnel2654The Submerged Inferno2655Born Of Fire, Forged By Death2656Minotaurus Of Dark Desires2657Inaugurating The End Of Man2658Mythologies Of The Dark Future2659At The Blackest Corners Of Existence2660Desecrate The Female Plague2661My Victory And My Power2662Eternal Goddess2663Emperor Of The Northern Goat2664De Spiritu Diaboli In Homine2665Arch Nemesis Ov All Existence2666To Bleed For The Master2667The Darkening Hypocrisy Of False Believers2668Thee Unholy Sacraments2669Eternal Flash2670Through The Unholy Rules We Shall Rise2671Satanic Reminiscence & Fury2672Baptised In Unholy Waters2673Under The Black Sun We Will Trample The Red Star2674Seeds Of Eternal Hatred2675Final Farewell Until The New Dawn Breaks2676Invoked Spirits Of The Night2677Unholiest Of Blasphemies2678Rectal Christ2679Agony Of Jesus Christ2680The Kingdom Is Mine2681Long Lone Among The Wolves2682The Ancient Worship To The Lord Of Shadows2683The Loud Call Of Evil2684Ascension Ov The Morningstar2685When The Rose Petal Became A Thorn2686Die Hörner Der Vernichtung2687The Dream Would Be Only A Dream If We Understood We're Dreaming2688Upper Field2689When Death And Frost Unite2690In Search Of The Unknown2691Medieval Cults Of Heresy2692Zarathustran Funeral Song2693Noble Miseries To Plague The Creation2694In Shadows Imbued2695Psalms Of The Antichrist2696As I Ride Through The Forest Of Souls2697Armour Of God2698Disordered Mind2699Lost Relics From The Ancient Satanic Cult2700We, Demons2701Enslaved By Blood2702Malignant Wizard2703TotenArsch2704I Can't Breathe At Night And I Still Smoke Like A Steam Engine, Please Feel Sorry For Me2705Dimensions Of Terror2706Cvltvs Diaboli2707One Step Closer To The Grave2708Intestinal Self Strangulation2709Fall Of Christian2710Throne Of The Thirteenth Witch2711Black Towers Of Glorification2712Mayhemic Nuclear Slayer2713In The Darkness Of The Crypts2714Sucking The Tongue Of The Ancient One2715Only The War Is Hygiene Of The World2716Detestation2717Black Sperm Disgorge2718Walpurgisnacht2719Barbaric Usurpation Of The Hypereonic Black Metal Throne2720Flagellum Haereticorum Fascinariorum2721Dragon Of The Continuum2722Violet Flame Mythos2723Thy Night Falls Silent2724Within The Realms Of Insanity2725The Bloody Night Rebellion2726Grotesque Malformation Of The Dying Angels2727At The End Of... An Unreal World2728Death Shall Be Served2729Black Cookie Is The Devil's Meal2730Absorbed By The Pentacle2731Rebirth Of The Imperial Goat2732False Crucifixion2733Fields Of Devastation2734Killgrinder2735Hammer Smashed Daemon's Heart2736Scarlet Tears Divine2737Heir To The Dark Throne2738Dawn Of A New Winter2739Descending Utter Hell2740Beating Up Metal Archives Mods For Refusing To Add War Metal As A Genre But They Add "Depressive Rock" (Profanation Cover)2741Council Of Evil2742Dementia Praecox Memento Mori2743Brilliant Silence Of Death In Fantasy Forest2744...And Reality Won't Change2745The Ancient, Eternal Blood Kvlt2746The Devil Speaks In Tongues2747At The First Breath Of Fire2748Infernal Mutilation2749Necro Incest Sadomasoquisum2750Bull Of Heaven Is Basically An Electronic Version Of Deche-Charge2751Satan Has Hemorrhoids Because He's Sitting On His Throne All The Time2752Satanicum Liturgy Misticum2753Arise Under The Moon2754Immoral Basement Was Closed Because Mykola Pyskin Or Whoever Was The Label Boss Was Arrested By Federal Security Service2755Greetings From Hell2756Wailing Wintry Wind2757Where Strides The Behemoth2758About The Christian Despair2759Nihilism, Wear And Tear Of Telluric Inhibition2760Naamah Seduction2761Unholy Vampyric Supremacy2762The Ultimate Acid Molestator2763Primitive Necro Nihilism2764In The Darkness Of Self-identify2765Prophets Of The Lost Necrorite2766Regaining What Was Once Ours2767To Serve The Mighty Dark Lord2768Under Blood Red Eyes2769Despondency2770Our Blood For His Glory2771The Awakening Of The Necrobeast2772The Night Of His Return2773Let's Make A Split And Call It "Satanic Brotherhood"2774The Rites Of Infernal Torment2775Suffering On The Cross Of Misogyny2776Spoiled From Inside2777The Only True Burzum Is That Of Galliet Productions2778Buried And Forgotten2779I Followed Satan On TikTok2780The Occult Power Of The Only God Of Chaos2781Released The Bullet2782Apostle Of Destruction2783Excremental Pregnancy2784Summon The Power Of Primal Darkness2785Goatkilling Sadomassacre2786Inspired By Black Faith2787Lunar Exploitation 6662788Dunkelheit In Grupen2789A Quiet Place2790Putrefactive Infestation2791A Shrine Encrusted With Balls2792Samhain Ritual2793The Evil Never Dies2794Doctrina Haereticorum2795Of Wolves And Moon2796The Psalm Of The Black Goat Mane2797Rites Of The Black Ma$$2798The Designs Of Death2799Prelusion To Dementia2800Kill The Local Priest2801Manes Exitae Paternis2802Strange Deception2803Death Is Your Saviour2804The Crucified Ones2805Good Bye In Hell2806Nephilim Unleashed2807Consummed In Gore2808Iron Storm Evocation2809Into The Abyss Embrace2810Void Worship2811Dark Xenophobia2812Of Vampyric Occultism And Satanic Philosophy2813The Mark Of Death2814Delirium Aeternum2815Envoy Of Lucifer2816Satanic Swans Of Temple Deconstruction2817Emotions Of The Blackbeast2818Called To The Devil2819Loss And Denigration Of Faith Before The Fall To Hell (Forever And Ever)2820Triumph Of Satanic Beliefs2821Death As An Act Of Creation2822Children Of Destruction2823Utopia (Acts Of Death And Euphoria)2824Blasphemic Devastation2825Hec Regnum Meum Est2826Blak Funeral Of Nocturnal Blud2827Ascension Through Lucifers Might2828Grave Of Barbarian Warrior2829I'm Not An Elitist, I Just Happen To Actualy Enjoy Stochastic Xenharmonic Dodecaphonic Black Metal2830Black Ruins2831Incarnation Of Darkness2832Hypoxia2833Seeds Of The Suffering2834Gospel Of Slime And Rot2835Verbum Diaboli2836Winterreich2837Slave Of Bible2838Alone In Cryptic Labyrinths2839Blood, Bones And Ritual Death2840All The Voices Keep Silence2841Anticosmic Hymns Of Retribution2842Beyond The Dawn2843In Dark Woods She Wails2844Obscure Evil2845Black Sorcery Devotion2846The Devastation Of Dawn2847Mists Of A New Time2848The Bewitchment2849Beelzebuth A$$2850In Nomine Rex Inferni2851The Lunatic Melancholy2852In Search Of Eternal Darkness2853Chesunok4959010Это гавничEto GavnichFeaturing2854Kultura Pizdeniya2855Seduced By The Evil Masturbation2856The Dark Path Of The Horned God2857At The Threshold Of Eternal Ice2858This World Is A Devil's Shitpost2859MA Should Approve This Album Because Of Its Cultural Significance2860No Light For Mass2861Okkultum Magnificentia2862Feeding The Flames2863A Hot Dinner Date With The Devil2864The Awake Of Ascendant Darkness2865Side With Death2866This Album Is Not About Having Many Tracks, It's About Me Being An Idiot For Several Hours2867Observance Of Baphometized2868Satanic Truth About False Union2869March Of The Awakened Ones2870Ritual Wisdom2871Ancestral Voices From The Shitter2872The Curse Of The Vampyre2873Evil Force Assault2874Garden Of Rage2875The Underworld Regime2876Original Sin2877In The Name Of Our Supreme Majesty Lucifer2878Staining The White Veils Of Christianity With The Blood Of Decapitated Lamb2879Until The Light Takes Us2880Sacrificing A Virgin On The Altar Of The Horned King2881The Song Of The Ice Mirror2882AK-47 Supreme Terrorism Bloodstorm2883Ushered Forth By Cloven Tongue2884Thy Majesty Of Dark Emotions2885Goat Semen Revel2886Sabbatical Hammer2887Scenes From Hell2888Past, Present And Future2889Anticosmocrator2890Passive Agressive Inseminator2891Warmageddon Apocalypse2892At The Dawn Of Grief2893From Beyond The Sleep Of Death2894Potence Of Horns & Venomous Psalm2895Mammon2896Agonizing Satanic War2897Demonic Possession 6662898From An Evil Father And An Even Worse Mother...2899Ancient Nergal Portal2900Through Union Towards Nullification2901Crucified Satan2902The Supreme Pontiff To Reach The Cosmos2903Entombment Of Sheer Evil2904Icono Infernorum Et Daemonium Malevoli2905Nether Tombs Of Abaddon2906Necropedophilic Aladdin2907We Are The Voices Of Profanation2908In Name Of The Supreme Black Arts2909Unraveling The Mysteries Of Darkness2910Executioners Of The Martyr Of Calvary2911Atomic Altar2912Brain Cut With Sharp Light2913Infections And Infestations2914Out Beyond Chaos Gloom2915Dominus Of Misanthrope2916Troll Fire Of Bloody Snowhells2917Krieger Des Nordens2918Orgasm Of The Gods2919War Against The God Of Light2920Lucifer's Cosmogony2921Awakening Of The Satan's Kommand2922Rites In The Name Of Darkness2923Approaching The Gates2924Hell​.​Noise War​.​Cult2925There Will Be Darkness2926Blood From Your Flesh2927Holy Grail, Holy Flesh2928Ye Shall Bathe In Excrements Of A Goat2929To Quench The Thirst Of Wolves2930Dragonstein2931Carnage In The Whorehouse2932Exalting The Dark2933Invasion Assault Terror2934The Last Possession2935Bestial Warhead2936Christ Betrayal2937Eternal Devastation2938Dreaming... The Underworld2939The Dynasty Of Diabolism2940Masterpride2941Seven Skulls Of Wrath2942Ultra Metal2943Pentecostal Baptism Devastation2944Nymphomasatiriasis2945Unstoppable Armies Of Hell2946Resurrection Of The Ancient Black Earth2947Perversum Satanas2948Media In Vita In Morte Sumus2949The Return Of The Mayhem And Paganism2950Grand Sanctus Furor2951Darkest Witchcraft (Of Axes And Swords)2952Unholy Gore Of The Holy Whore2953Bloody Ejaculation2954Sanguinary Emperor2955Satanic Death House2956Killing The Flesh That You Once Sculpted2957Unholy Dopamine In Unholy Satan's Veins2958And Your Sorrow... Is2959Summon The Evil God2960Sarcastic Angel2961Explusion From The Desolate2962Malleus Malleficarum On Eternal Celebration De La Daemoniun To The Death In Homage Of Devil...2963Candlelit Demonic Goatabyss2964Techniques Of Torture2965Funeral To Hell2966The Acheronian Worship2967The Destruction Of The Tyranny Of The Nazarene2968Nuke The Cross2969Violent Death Abomination2970Into The Sacrifice Circle2971Crushers Of Heretical Sexes2972Architecture Of Chaos2973Black Metal Overdrive2974Blackened Constipation Of Metallic Moon2975Cult Of The Beast's Blood2976Convert To Dark Beliefs2977Nocturnal Crimson Nightmare2978Supreme Infernal Doctrine2979Rictual Evolution Of Satanic2980Demonic Conquest In Jerusalem2981In Maleficarum Scriptor Cantus2982The Saturnine Congregation2983The Channeling Void2984Blades Of Phantasmagoria Liberty2985The Ancient Spells2986mhzesent Sending Hate Mail Ist Krieg2987Boten Des Krieges2988Poozix Is The King Of Abstract Black Metal2989The Rise Of Satan2990Screaming Scrotum2991Embrace Of Fear2992Jesus Fucking Christ2993Lamentations Of Destruction2994Under The Fallen Sun2995First Manifestation Of Demon Headquarters In The Shadow Of The Heavens2996Majesty Of Disease2997The Sound Of The Stigmata2998The Burning Eyes Of The Werewolf2999The Great Enigma Of Times3000Return Of The Demoniac Darkness3001Screams From The Coffin3002Mass Of The Serpent3003The Devil's Wine3004Satanae Manus3005Bestial Mysticism3006Geezer Butler Lost Both Of His Arms And Also His Dick So He Started Playing With His Ass, That's How BS Got Their Shitty Sound3007My Cat Fell Asleep Again So Switching To FL Studio3008Invociatio Apocalypsis3009Allegiance To The Myth3010Inevitable Demise3011Nefarious Veneration Has Taken A Position3012Lords Of The Nightrealm3013Priest In Suicide Forest3014I'm On Antipsychotics And Antidepressants, But I Still Get Drunk3015I Hope Both Russians And Ukrainians Lose This Imbecile War And Vanish Forever3016I Made A Music Video For "Chesunok" And Put It On Youtube With A Thumbnail Of An Album Of Some Hipster Garbage Rock Band Apparently Called Pink Floyd And Some Dickhead Asked To Remove It Because It Allegedly Offended That "Band" So I Did Because I Don't G3017Oligophrenic Tänzelcore3018Music Of No Hope3019Descent Of The First Evil One3020Satanism. Sickness. Solitude.3021Larvae Of Trinity3022Field Recording Of My Cat Sleeping3023Waste Of The Coldest Soul3024Visions In The Dark3025Beyond My Darkest Moment3026My Dark Palace Of Wisdom3027The Black Graves Of Evil3028Sodomized For The Beast3029Bless Of Destroyed, Raped, Dismembered Flesh3030Midnight Blasphemy3031Slottet I Ändlöst Mörker3032Boundless Hatred3033Prince Of Darkness3034In Hate And Blasphemy3035Supplication Of Flame3036Magic Rituals, At The Night Before The Goldgruben3037Bleed Like A God3038Bubonic Judgement3039The Blackwinged Serpent Crowned3040Sob As Baphometh Handles3041In This Grey Field3042Pagan Fatherland3043Malevolent Summoning From The Infernal Woods3044Amentia Ludibrium Tenebris3045Sentenced To Disaster3046Unmerciful Torment3047Chained To Satan's Throne3048Stoner Rebellion3049Behind The Gate Of Darkness3050Ski Masked Punisher3051Rebellion Fire Devastation3052Before My Eternal Sleep3053Monolith Of Sorrow3054Unholy Way Of Satan Course3055Sorrow Of The Past3056Illustrare Ad Infernali3057True Satanic Hate3058Epic Sagas Of Grief And Tragedy3059The Presage Of Eternal Fire3060Den Foreldreløse Død3061Misanthropic Path Of Madness3062Marked By The Baron3063Metalpunk Nightmare3064Black Smoke3065Black Unholy Presence3066The Mist Soften My Sorrow3067Odium Humani Generis3068Blood Bath For The Gods3069Beauty And The Executioner3070Invocatum Furae Diabolis3071Terror Nosferatu Propaganda3072Voices Of Epicurean Death3073Cult Of The Individual3074Evoke The Curse Of The Ancients3075From The Tunnels Of Set3076And All Heaven Thorns Apart...3077Evil Genius (The Queen Of Sin)3078Through Infinity Of Darkness3079Disciple Of The Mysteries3080Sexual Rites Of The Occult3081Agnostic Deconstruction3082Black Marble House3083As Satan Spawns From The Grave Of A Thousand Infants3084Sulphur Spirits3085Thy Serpent Tongue3086Diabolical Bloodswords3087Vampiric Awakening3088Golden Chalice Of The Great Truth3089Thorned Crown3090A Serpent In The Violet Of Dusk3091For The Lust Of Lilith3092A Shaman Steering The Vessel Of Vastness3093Chaos Of Fear3094Speed Machine3095Funeral Of An Exorcist3096The Valley Of The Blind3097Praeclarum Regnum Luciferi3098As I Walk Through The Gateway3099Cultum Satanas In Antiqua Silvam3100Et Hoc Indicium Adversus Dei3101Lucifer Break My Chains3102Beast Of A Rough Eternity3103Hate Sanctified3104Des Antichristen Triumph3105Obey Satan!3106Process Of Spiritual Immortality3107Punishment Battalion 6663108Unholy Congregation Of The Legions Of Chaos3109Throne Behind A Black Veil3110Christenjäger3111Sordid Memories3112Pitch Black Catacombs3113Antithesis Of All Flesh3114Macabre Visions On A Midsummer's Eve3115The Age Of Re-awakening3116The Power Beyond Dimensions3117Mirage Beneath The Black Moon3118Ad Oculos Demonstrare3119Autopsy Of A Werewolf3120Yellowing Of The Lunar Consciousness3121The Yawn Of A New Age (Zweizz Cover)3122...On Leather Wings3123Undeathronable Superior BlackMetal Hymn3124Staring At The Face Of Oblivion3125Torrential Reign3126Shades Of Inferno3127Passion Of The Antichrist3128The Glorious Extinction Of Mankind3129Doctrine Of Hate3130Rise The Banners Of Blasphemy3131Life Is Nice To Die For...3132Radical Black Metal Troops3133Through The Gates Of Torment3134Pestilence And Death Of The Firstborn3135Walking Through The Infernal Battlefield3136The Silent Scream In The Deepest Grave3137Hatred Of Black God3138Transmuting The Energy Of The Cosmos3139Slabs In Torment And Decay3140The Infernal Blowing Winds Of Blasphemy And Lust3141Blood Of The Northern Lands3142Grind It Down To Hell3143Bring Death Upon Transylvania3144Vamphyric Fullmoon3145Devoured By Jackals Of Death3146Hater Of The Nailed One3147Inevitable Death3148Bloodline3149Death Is Proof Of Satan's Power3150Daemon Worship3151Rise Of The Darklords3152Walls Of Heaven Smeared With Mortal Blood3153I Have A Friend Whose Name Is Semén, Because I Live In Ukraine And It's An Actual Name Here3154John Lennon Was True Because He Had Lines "Imagine There's No Religion"3155Suicide Or Be Killed3156Wie Ich Sie Niemals Zuvor Sah3157Uranus Form Essence3158Angeldust And Blasphemy3159Magni Nominis Umbra3160Purgatorial Reflections3161Hammer Of Thor3162Black Mystic Portal3163Follow Me... In Hell3164Mark Of The Damned3165Common Mortals3166Withered Flesh Left Ragged On The Bones Of Existence3167Sulphur Desert Blood-ritual3168Vampiir Reawakening3169Ordo Sinistrari Et Cultus Pentaculum Sanguine3170Sinister Tarot Ov Crowley3171God Of Perversity3172Dust And Embers3173Wrathprayers3174Ice Of The Celtic Lands3175Believer's Multilating Orgasm3176Under The Sight Of Dragon3177Crying Hobbit3178Between Secrecy And Candles3179From Burning Churches To Making RPG's3180...To Perish In The Silence3181Drink The Poetry Of The Celtic Disciple3182Funeral And Melancholy Stop At The Top Of Rocks Overlooking The Ocean3183Drowning In Negativity3184In Satan's Dominion3185Faustian Reawakening3186Sacrament Of Lucifer3187Reisen Til En Ny Verden3188Slaughtered Whores Of Satan3189Expectation Of Eternal Torment3190By Thousand Horns Impaled3191The Black Horde Reigns Supreme3192Abominations, Chaos And Bestial Warfare3193Pantokrator Ov Atlantis3194Ashes Of Man And Oak And Pine3195Between Evil And Death3196Prophecy Of Violence3197Satanic Ritual And Goat Sabbat3198Barren Desperation3199The Satanic Masterplan3200Winding Road To Death3201Burying The Bleeding Thrones3202Humbling Darkness3203Blood Poisoned By The Glorious Evil3204Within Black Tides Of Nekromancy3205Macrocosmic Odyssey3206Half Of The LLN Tapes Are A Counterfeit Made By Zippy Kid3207Chrysalis Of Sphere3208Incineration & Resurrection3209The Seas Of Draugen3210Don't Fear The Reaper3211The Sign Of The Witch3212Priests Of Profanation3213Tartarus, Land Of Enchantment3214Conquer Divine3215Not Many People Know, But Dima Bilan Was Accompaied By Vzaeurvbtre On Eurovision Song Contest3216Lycantropic Fury3217Reign Of Decadence3218Matrix Divina Satanas3219Away From Hell3220Black Breed Of Kingu3221True Cenobyte Black Metal3222Aperire Portas Inferni3223All LLN Titles Were Google-translated From Kyrgyz3224Apostle Of Darkness3225Covalent Bonds3226Winters Diciples3227Cry For Destruction Of Jesus Christ And His Evil3228Blackest Darkness Of Fucking Satan3229Ars Longa Vita Brevis3230Eternal Pagan Race3231Happy Are They Who Come To My Supper3232Last Stronghold Of Eternal Hate3233The Aphotic Embrace3234Fenrir3235Necro Okult Raw Devastation3236To The Black King Of The Deep3237Black And White Makeup3238Throne Of The Bleating Log3239Appeal Formula3240Henbane And Flame3241The Call Of The Other Path3242Ghost Of Dead Love3243Singer Of Strange Songs3244Evil Comes Without A Face3245We Are Decorating3246The Ritual Ov The Beast3247Black Winds Of Atomic Desecration3248Mind Conflict3249Enslavery Through The Skull3250Shadow From The Highest Blue Montains3251INRI3252Climax Of Disgusting Impurities3253Into The Abysmal Flames In Luciferian Misanthropy3254Supreme Embodiment Of Evil3255The Kingdom Of Light Destroyed3256Antichristian Codec3257The Hated Life's Song Of Sorrow3258Abyssic Legion3259Musical Blasphemy3260...And Night Awoke Insidious Seeds3261Those Who Have Risen3262Eternal Attack Command3263Actum Inferni3264The Unknown Kadath In The Cold Waste3265Coalition Ov Morbid Belligerence3266Abyss, Fire, Brimstones3267Evil Cults And Black Sorcery3268To Heed The Call Of War3269You Ain't Worth Anything3270Principium Ascensionis3271Rise To Dominate3272Eyes Of Horror3273Psychotronic Rock3274In The Beginning... Down The Path Of Evil3275Storm The Temple Mount3276Hear Your Laments3277Feels Like Punk, Sounds Like Thrash3278Perverting The Nazarene Cult3279Supreme Suicide3280The Claw Of Regret3281Enlightenment By Darkness (​Black Catharsis)3282Rape Of The Bastard Nazarene3283Nocturnal Impiety3284The Forests Of The Far North3285From The Darkest Chasms3286Diabolica Ars Profunditatis3287Remembrance Of Things Past3288Schumacher Was Punished By God For Being A Racer3289Occult Rituals Of Anthropophagous Worship3290Devil's Advocate3291Ignite Amduscias Order (IAO)3292Staub Wieder3293Omen Ex Tenebrosum3294The Ultimate Blasphemy3295Escape The Flesh3296Stone Gods Don't Save!3297Visions Of Transience3298Hell Fuckin' Metal3299Forbidden Sorcery In The Frostbitten Night3300Land Of The Lost Dreams3301Eating Entrails3302Carnal Philosophy3303Descension To Demonic Paraphilia3304Sacrificing Ritual3305Submissive Corrosive Thermopiss3306Karma Evangelica3307Destroying The Enemy's Empire3308Total Worship Of Hell Macht Frei3309The Moon Of Necronomicon3310Vengeance Of Eternal Fire3311My Name Is Sickness3312Terror Management3313Oppressive Nights In Mental Asylum3314Incinerate The Fallen One3315The Evil Essence Of Magic Mushrooms3316Before Ahriman3317Rotten Extreme And Dark Blasphemer3318In Darkness Embraced3319The Man With A Thousand Faces3320Penetrating The Bowels Of The Great Whore3321The Name Of The Beast (666)3322Pig, Carrots And Excrement Sisters3323Beyond The Acausal Realm3324World On The Verge3325Invoke The Profane Flames Of Hell3326Religion That Kills3327From Evil To Obsession3328Pro Nihilo Esse3329Ars Sacra3330Your Skin Is My Canvas3331Dark Castle3332Death's Wind3333Born From The Vermin Cunt3334Spit The Face Of Your Fucking God3335Forgotten Rites Of Blasphemy3336The Inner Voice Of Self Destruction3337Enthronement Of The Sovereign3338Devastation Of The Superior3339I Challenge Christ For I Am God3340...From The Bones Of Time3341Earth Without Christ3342Two Stakes In Christ's Anus3343The First Ritual At The Altar Of Sacrifice3344Triumph Of The Dark Power3345Pseudomonarchia Daemonum3346Dismembering Lambs Of Jehovah3347The Raven's Ballad3348In Signium Nigrum Marcam3349Music For The Ritual Chamber3350Azazel's Harem3351Governed By Darkness3352All Hail The Underworld3353Unholy Baal Zebuth3354So Cold In Transylvania3355Abortion Of Religious Futility3356Empire Of Sacrifice3357Worship Satan When Falling3358Triumph Ov Beastial Dominator3359On The Throne Of Demolition3360Beauty Bathed In Blood3361Entering The Paradoxical Sphere3362Infectious Spores Of A Thousand Years3363The Dark Storm Rises3364Jesus Fuck!!!3365Rise Of The Lords Of Deadly Souls3366Bastion Of Darkness3367Silvester Cresent Moon3368In The Depths Of The Vast Forest3369De Vermis Mysteriis3370Slaves To The Nothing3371The Powerful Essence Of Lucifthian In Times Of Obscurantism3372Thy Feast Of Sacred Blasphemies3373Rotting In The Aftermath3374By The Blessing Of Satan3375Hail Satanic Majority3376Dark Cabaret Of Satan3377Majestic Empire Of Evil3378Descending Through The Seven Gates Of Hell3379Shame Of Baba Yaga3380The Earth Will Weep... Rivers Of Blood3381Forever Burning In Torment And Pain3382Arcana Imperii3383Lucifer Always Be With Me3384Ritual In The Mountains Of The Silla3385Return To Arcane Glory3386I Djävulens Tecken3387No Painkiller For My Profound Grief3388Bestial Bukkake3389Masculine Metal Mutilation3390Sepulchral Evil3391Satanist Return To The Evil3392The Dark War Has Begun3393Satanic Sadist3394Kruzifixion3395A Blade Through Your Heart3396Alone In Darkness... ​A Ritual Of Death3397The Ritual Of Blood And Candles3398Beyond The Voices3399Human Poisoning3400Usurper Of Satan's Victorious Kingdom3401Fullmoon Morbidity3402Immortalized In Luciferian Blood3403Evil... Black Goat... Satan...3404Another Recording Of My Cat Sleeping3405Another Recording Of My Cat Sleeping3406Another Recording Of My Cat Sleeping3407Another Recording Of My Cat Sleeping3408Another Recording Of My Cat Sleeping3409Another Recording Of My Cat Sleeping3410Another Recording Of My Cat Sleeping3411Another Recording Of My Cat Sleeping3412Another Recording Of My Cat Sleeping3413Another Recording Of My Cat Sleeping3414Another Recording Of My Cat Sleeping3415Another Recording Of My Cat Sleeping3416Another Recording Of My Cat Sleeping3417Black Mausoleum3418Blackened Fawns Cleanse The Earth With Fire3419Church Of Pain3420Chaosophy3421Suicide In The Name Ov Satan3422To The Grim Goddess3423The Black Shining Death3424Inspired By The Devil3425Blackpest Worshippers3426Martyr Complex3427Command Of The Iron Baphomet3428A Tale Of Darkest Color3429World Disorder3430Dust From The Dark Past3431Laid To Rest3432In Command Of War Of Lord Satan3433Satan's Coupon3434Bearer Of The Darkest Plagues3435Svart Krieg3436nataS3437Fire Of Lucifer3438Sabbath In The Black Goat3439Sworn To Darkness Eternal3440Into The Abyss Of Stars3441The Path Of The Righteous Man3442Beati Pauperes Spiritu3443Unknown, Unknowable, Uncertain3444När Blodet Fryser3445Hundre År Med Vinter3446Dod Morka Skogen3447Cat Sleeping3448Fade Thy Light3449Perverse Blasphemous Annihilation3450The Satan Metal Legions3451Burning The Temples Of Man3452Spell Of The Raven Witch3453Hideous...3454Military Satanism3455The Dawn Of A New Millennium3456Shut Up, Satan! I'm God's Representative On Earth3457Total Destruction In The Heavens3458Bound In Blasphemy3459Evil Makes Me Live3460Graveyard Flesh Feast3461Speed Metal3462Up High In The North3463Until The End Of Time3464Terrifying And Sickening Massacre3465Raw Exercise Of Power3466Hossana In The Depths3467The Grim Battle3468Total Anti3469God Of The Rebels3470Decomposed3471To End The Day With Immortal Fears3472Licking Sperm From A Corpse Of A Dismembered Prostitute3473Dust Covers Sink Eyes3474Let's Name Our Split "The Unholy Aliance"3475Aeterna Requiem Ex Angelos3476Bride Of Chucky3477Horsemen Of Pandemonium3478The One Without Soul3479Litanies Of Cursed Flesh And Holy Venom3480In The Ruins Of Desire3481Burn The Black Sigil3482The Imprint Of Corrupted Souls3483Necro Party Ritual3484The Death Throes Of Christianity3485Mantle Of Hate3486Only Evil Prevails3487Suffocated Jubileum3488Revelations Of Dark Crafts3489Let Clarity Succumb3490Ancestral Damnation3491Master Of Assassins3492The Baphomet Nuptials3493Insanity Through The God's Revelation3494Guardian Of Dawn3495Euthanasia3496Necrological Obscenary3497Defending The Citadel's Throne3498Conjurers Of The Infernal Key3499Accursed Act Of Eternity3500Sleeping Cat3501When Desolation Turns Incessant3502Under The Blade I Die3503In Signo Draconis3504We Offered You Pain3505Fight Or Yield3506To Goat Empire... The Lucifer Desire3507Nightmare And Deep Sleep3508Hard Eternal Death3509Gnosis From The Kingdom Below3510Point Of No Return3511Crawl Of The Dark3512Lapis Philosophurum3513Triumph Of The Unborn3514The Cult Of Blasphemic Antichrist's Soldiers3515Cripple Christ3516My Heart In A Very Dark Place3517Dance With The Devil3518Burning Of The Unholy Cities3519Christianity In Flames3520Regression-Arrogance3521Zone Of Insane Tortures3522Oh, Great Deceiver3523Orgiastic Keep Of Unholy Corruption3524Lady Of Sorrowful Dreams35256rind 6uts 6ore3526Fairy Kingdom Of The Nightlands3527Overdose Of The Blasphemous Nectar3528Modernize Messiah3529Dread Not The Death Of The Earth3530Time Of Immunity3531From The Beginning To Evil Manifestos3532Through Forests Where Pagan Blood Flows3533Black Nights Of Glories3534Dissonant Walk3535When All Love Is Lost And All Hope Is Gone3536Last Invocations3537Twilight Of The Black God3538The Eternally Damned3539Existence Is Appointed To End3540Summon The Infernal Lord3541Satan's Wake3542And They Will Know Fear3543Sleeping In The Arms Of Magic3544A Dream Of Vampires In Astral Dementia3545Dethroned Mankind3546The Mortuary Mass3547Blood For Satan3548Slaves Of An Absurd Universe3549Heaven's Great Mistake3550The Circle To Open The Forbidden Land3551Crowned Brow Of The Serpent3552Night Of 1000 Deaths3553Eternal Hellish Rot3554Death To Angels3555Incarnation For The Blackest3556Beckoning For Your Lifeforce3557May The Black Flames Suffocate The Weak3558Christ Is A Lie3559Frozen Winterland3560Shades Of Aqueous Essence3561Hymn To Lucifer3562In Love With Satan3563Hypocrisy Of The Accursed Heavens3564Total Unholy Warmageddon3565Abominations Thru Genocidal Hellfire3566Invocations From The Ancient Path3567Dissecting The Beast3568Unholy Devourer Of Souls3569Invoking Darkness And Death3570Wicked Sceptre3571On The Clouds Of Fire3572The Reckoning3573Pentagram And The Cross3574Excluded From Heaven3575Old Skin3576Angelcunt Destruction3577Pitch Black Sickness3578Tyrants Condemnation3579Reject Modern Society3580Bacchus, I Invoke You!3581The Temple Of The Mind3582Only Death Shall Remain The World3583Demons Of Matter And The Shells Of The Dead3584Dream Of Opium3585Sanctity Slaughtered3586Emperors Ov Malevolence3587Total Domination3588The Serpent's Lament3589Mesmerized By Darkness3590Trapped In A Void3591Black Magic Force3592The Source Of The Black Light3593Tenebrarum Oratorium3594The Hatecrowned Retaliation3595Strength Needs No Excuse3596Between The Devil And The Deep Blue Sea3597Chaosvoice3598Dionysian Rites3599Cerebral Poison3600Locomotive Of Misfortune3601Raw Sickness And Bloody Splattered Noise3602Vobiscum Lux Ex Tenebris3603The Coke Head Midget Ball Gag Massacre3604Plug The Syringe3605The Order Of Aggression3606Deformed Beyond Belief3607The Tortures Of Our Lord Sathanas3608Serpents Ov Old3609Call Me When I'm Dead3610From The Throne Of Darkness3611Walpurgis Fires3612Doomprayer3613Death By Self-betrayal3614Dracula Castle3615Fallen Dream3616Baphomet's Aeon3617The Gates From Putrefaction3618Chaos From Desire3619The Fall Of Unholy Master Of Darkness3620Goblets Of Gods Hate3621Eradication Of The Humankind3622Cursed Words Form My Dark Tomb3623Shadow Walkers3624Agony In The Garden3625Empyreal Destroyer3626Curse All Creation3627Your Temple Is In My Heart3628Massacre And Barbarity3629We Who Saw The Darkness3630Screaming Soul3631Descensus Ad Inferos3632The Grail Of Perdition3633The Kingdom Lies Deep Beneath3634From The Antipathy Of The Love Of God And Man3635Silence And Darkness3636Satanae Pater Sanguinariv3637Slowly Towards The Grave3638The Whispering Of His Voice3639Unholy Chant Of Atheistic Cult3640Possessed By Lust And Fire3641Black Soldiers Of The Evil Speed3642Imperial Satan3643Kill Faith, Kill Christianity3644Evil Winter Forest Screams3645Screams Of Dark Winter Nights3646Relentless Mangling Of An Occult Medium At The Hands Of A Vengeful Paranormal Entity3647Laws Of Perversion & Filth3648Sledgehammer Castration3649Satanic & Violent Metal Aggresion3650In Sickness And In Health3651Devouring The Carcass Ov God3652Seventh Demoniacal Hierarchy3653The Scream Of Nostalgic Laughter3654Cruel Warpike Of Evisceration3655The Rising Of Evil Kingdom3656Black Winds Of Atomic Desecration3657Prostitute At Babylon3658Left Hand Black Trail3659Transparent Convictions3660Duskfall3661Pain Of Our Ancestors3662Jesu Dood3663The Flame Of A Dark Love3664He Who Walks On The Wind3665Voice From The Altar3666When Light Fades, Life Decays3667Shadows Of The Cursed Land3668A Despondent Theme To Thy Own Demise3669In Darkness It Is Born3670Hateful Depression3671Suicidal Insanity3672Black Satin Blood3673The Beautiful Side Of Evil3674Step Into The Black Pentagram3675Smells Like Funeral Flowers3676Beetwen The Penumbrae Of The Cold Winter3677Magnefice Domine Rector3678Destroy The Baphometic Agenda3679In The Arms Of The Immortals3680When The Sky Turns Black3681Astral Blood Emperors3682Cold, Darkness, Death... I Awake3683De Bello Heroica3684From The Aspect Of Darkly Illuminated3685Erotic Funeral3686Embraced By Torture3687Gates Of Dis3688Into The Completion Of Misanthropy3689Maniac Sacrifices3690Dead By Hanging3691Of The Beginning And The End3692In Nomine Domini Incipit Omne Malum3693Infernal Visions From The Planes Of Madness3694Gators Rumble, Chaos Unfurls3695Blackwater Navigator Ayayema (Plague Emissary)3696I Do Have Weed Problem, But At Least I'm Able To Understand Njiijn3697Council Of Torturers3698Triumphed In The Dark3699Warfare Dynasty3700Shub Niggurath3701Crucified Woman3702At Luzbel's Behest3703Ominous Triumviratum For The Holocaust3704Obey Profanatory Forces3705Intra Ecclesiam Nulla Salus3706Only Self-conscious Posers Are Posers And True Posers Are True3707Procession Of Doom3708Sexually Abused Angels3709Mare Tenebrarum3710Living In A Fucking Time Warp3711My Infernal Throne3712Infected With Hate3713Extinction Of Christians3714The Lady Rides A Black Horse3715Crucifixes Upside Down During Holy Week3716Emigration To Palestine3717Destroyer Of The Stars3718When Birthgivers Recognize The Atrocity3719Pale Hand3720Hard Hited Bloody Corpses On The Street (Fry The Brain)3721Lux Nigredo3722Merciless Satan Destructor3723...Grey Heaven Fall3724Twisted Paradigm Of Light3725Identities Ov What We Call God3726Spawn Of The Undivine3727Guardians Of Profane Secrets3728The Sower Ov Discord3729Procession Of Forked Tongues3730Cacodaemon3731Between The Fire And The Cross3732Sermons Of The Black Flame3733Supreme Altar Of Blasphemy3734Walk In My Dark Realms3735Metal Chaos Across The World3736A Moment In Purgatory3737Destroy The Planet3738Loch Ness Rising3739For In Darkness We Are Never Alone3740As Frostbitten As The Full Moon3741Roots Seeds Of A Bestial Necromunion3742Raw Cruelty3743Netherworld Ceremony3744...The Sons Of Our Ancestors!3745Skinned Alive3746Lowlife3747Hell Prayer3748Christian Hell3749Unholy Blades Of The Devil3750Church Of Defilement3751Anthrax Dispersal At The Center Of Overpopulation3752Gods Of Negativity3753Reaper's Funeral3754The Rest Are Remains3755Cannibalistic Madness3756Beyond The Eighth Circle3757March Soldiers Of Hell!3758Aethers From The Inner Darkness3759One Lucifer's Night3760Spreading The Seeds Of Evil3761Trident Of Tartarean Gateways3762Frykten Og Mennesket3763Icicles From My Fucking Bloody Heart3764Formulas To Negative Communication3765Gloria Damnationi3766Brotherhood Of Destruction3767Passages Of Infinite Hatred3768Leaving My Body At The River's Edge3769Raw War3770Eternal Cycle Of Destruction And New Creation3771Only Before You Will The Nations Burn3772Black Polar Holes Open Saturngate Of The GreenBlackSun On The Earth3773To Deny The Light3774Blasphemic Invocations For Demonic Glory3775Depleted Light And The Death Of Uniqueness3776Wallowing In Agony3777Endurement To The Heirs Of Shame3778From Darkness And Beyond3779The Dark Vastness Of Our Souls3780Echoes Of War, Terror And Blasphemy3781Goatfuk Havoc Slaughter Hell3782Subliminal Legacy3783Melancholic Sighs3784Breviarium Daemonicus Idolatrorum3785Visions From The Throne Of Eyes3786Idolcrusher3787Ignis Inferni3788I Drank Some Juice Today And I See No Problem With That3789Enthroning The Bonds Of Abhorrence3790Luciferian Brillance And Darkness3791Black Metal Storm3792Drowned Remnants Of What Once Seemed Pure3793Agony In The Profundis Abyss3794Bury My Infected Thoughts Deep3795The Manifested Purgatorium3796Temple Of Anti-Cosmos3797Reanimation Of The Long Departed3798De Ars Antiquus Mysteria3799Ordo Aeon Caos3800Impetuous Infernal Terror3801Wrath Of The Apex Predator3802In The Form Of A Black Goat3803After His Execution, The Perpetual Martyrdom3804Remembrances Of Ancient Prophecy3805W.A.R (War Against Religions)3806A Rehearsal With The Devil3807Psalms Of Veneration For The Nefarious Elite3808Thermal Nuclear Goat3809Kingdom Of Insanity3810The Black Death... Humanity's Fear3811Shield Of Flames3812Infernal Creation3813The Rites Of The Ensnarer3814Death, Violence, Satanism3815Non Sancta Manifestations3816Invocation Of Blasphemy3817Enthroned Consagration Of Malignant Imperium3818I See Fire3819Militant Hymns Of The Rebel Angel3820Spilling Blood And Hate3821Eternal Dominions Of The Infernal Throne3822They Are Someone3823The Infernal Black Death Of The Cursed Pig Christ3824This Is Hell3825Infernus3826Cult To The Lord Of The Evil Light3827JesuSatan3828The Untamed Hunger3829Usque Ad Sanguinem Incitati3830Hypothalamus Malfunction3831Therefore, He Shall Consume3832Divine Decomposition3833Beneath The Folds Of Flesh3834Dawn Of Possession3835My Cold Journey3836Vortex Of Selfdestruction3837The Abyss Of Cruelty3838For They Shall Be Slained3839The Warlord Of Gwynedd3840Diabolic Malformations3841Farewell3842Reconquista3843For The World Is Hollow... And I, Have Touched The Sky3844In The Night Of April 30th3845Decline Of Man3846Moon Possession3847Cleansing The Blood Of The Heretic3848Prepare To Die By Eternal Darkness3849Destroy The Black Towers3850No Candles For Your Funeral3851In The Infinite Starry Night3852Magnus Venator3853Under The Dark Wings Of Blasphemy3854Party In Hell3855Summoning The Demise Of Guardian Angel3856Ancient Shadow Throne3857Tell Them Lucifer Was Here3858No Catharsis3859With Humility For The Ages3860Sadistic Irrumator3861Night Of The Luciferian War Games3862The Holy Blasphemy3863Break The Bread3864Death Satan Black Metal3865Invocation, Initiation I Give My Soul To Satan3866Invocation Of Supreme Knowledge3867Sweet Blasphemy3868Scream In My Ass3869Deus Est Mortuus3870Legions Of Beelzebub3871Lord Of Darkness3872Revocation Of Emptiness3873That Is Not Dead Which May Eternal Lie3874The Final Days3875There Is No Christian Idolatry3876Eternal.Antichrist.Destruction3877From Mortality To The Living Hell3878Under The Throne Of Asmodeus3879The World Shall Freeze And Die By My Hand3880Spectre Abysm3881Rite Of The Opposer3882Invokation Of Satan Within3883Duzakh Flames3884When Funeral Pyres Ablaze The Black Moon Sky3885Dark Millenium3886Desire For Revenge And Thirst For Death3887Beyond The Night3888The New Era Of The Jackal3889For The Supreme Satan's Hate And Glory Of The Occult Warriors3890Blood In The Name Of Satan3891From A Decade Of Permafrost3892Infernalistic Flames Of Luciftias3893Insanity Of Christianity3894Evocation Through Relict Profanation3895Satan, Death, Hell3896Rebellion Of The Ancient Gods3897Shouts Of Christian Desperation At The Throne Of Lucifer3898Lament Of A Vampire3899Death Consumes The Existence Of The Gods3900The Iron Hand Of Blackest Terror3901Purity Of Enmity3902Defiled In The Chambers Of Artemis3903To The Depths Of Tragedy3904For The Shadows Fall3905Titan Reign3906Black Rite Euphoria3907The Return Of The Count Von Impious's Spirit3908The Side Of Evil3909Trans Mysterium3910Upon The Golden Throne3911Inside The Dark Horizon3912Darkness3913Cursed Are God's Sheep For They Bleed3914God Will Bring Justice3915Eternal Sleep3916Stench Of God3917The Truth Through Salt3918On Horns Impaled3919Vermin Hell3920Speed Metal Terrorist3921Obituaries Wrote3922Manticore3923Bowels Of The Holy Anoint Us In Evil3924The World Must Be Built With Violence3925Prince Of This World3926Rise Of The Goat3927Beyond The Plague Of Light3928Death Redemption3929Cannibalistic Impaler3930Black Ritual3931Hexensabbat3932On The Left Of My Lord Lucifer3933Ashes Of Christian Hypocrisy3934The Orphans Of Bakunin And Pisarev3935Desolation Through Deprivation3936Gateways To Parfaxitas3937I Don't Scream3938Cemetery Of Sadness3939Following The Ancient Spirits Of Fire3940Jehovah's Putrefaction Upon The Cursed Land3941Misanthropic Nihilism3942Impervious Gates Of Heaven3943Aurum Nostrum Non Est Aurum Vulgi3944Into The Saber Winds3945Nightly Blasphemy Services3946Ad Nauseam3947Howls And Yells Of Inferno3948Winds Of Black Horizon3949Demonic Tribulation3950Lethargy3951Schizophrenia3952In Deathcold Mist3953From The Age Of Wolves3954Vatican Under Satan's Command3955Bringer Of The Light3956Age Of Misanthropia, Human Blood & Chaos3957A Ceremony In Sorrow3958Against Denomination3959Black Orchid3960An Abhorrence3961May Misfortune Befall Humanity3962The Lord Of The Valley Of The Shadows3963Children Of The Full Moon3964The Grimoire Of Abomination Tales3965Infernal Colostrum3966Demons Swarm By My Side3967Dying Under The Master's Vision3968Sowing The Empire Of Lucifer3969Towards Total Chaos3970Unrevealed Self3971Decay Of Thy Gods3972Offspring Of Gathered Foulness3973Lust Infernal Rite3974Kult Ov Funestum Spiritus3975Under The Veil Of Death3976In The Streams Of Inferno3977Under The Sign Of Belial3978Mors Praebebit Spem Fallacem3979Darkness Is Everywhere3980Journeys Through Astral Funerals And Suicide Forests3981The True Spirit Of Misanthropic Hate3982Morbid Machinery3983Glorification Of The Unborn3984Gloria In Excelsis Satanas3985I Helvetes Forakt3986Ultimate Infernal Nightscape3987Diabolical Teachings3988One Day Of Psychopatmetal In The Hell3989Vagina Pectoris Of Jesus Phallus3990The Rites Of Crucifixion3991Doom Of The Necroslaughter3992Fragments Of Dark Eternity3993Path Of Infernal Enchantress3994Beyond The Dichotomized Visions3995Of Darkness And Truth3996Harmony Of Dissonance3997Pactum Satanicum3998Behold The Wrath3999A Place Where Sinners Breed4000Sathanarchrist Assaulter4001Beyond The Firmament4002The Divine Art Of Torture4003My Hearse, My Redemption4004Blasphemic Day Of Defeat4005An Extreme Call To The North4006Thermal Pool Nuclear Massacre4007Lamb Of Decadence4008Further From The Grey4009Malignant Orgies From Hell4010The Omnipotence Of Death4011With Your Cross I Will Dig Your Grave4012Under The Sign Of The Chaparren Gods4013Possessed By Madness4014Golgotha Is The Place Of Skulls4015Under Azazel's Dark Wings4016Satan's Pantheon4017Legion Of Spirits Infernal4018The Walls Of God Falls Into The Hands Of Satan4019Your Satan, My Saviour4020Beyond The Gravestones4021Kingdom Of Fire And Smoke4022Dedication Rites To Dark Pagan4023Almighty Andras4024Nihil Kaos4025Quoth The Raven4026Thrown Athwart The Darkness4027Maldoror's Metamorphosis4028The Orb Of Parasites4029Necrosodomy4030Bloodshed For The Wargods4031I'm The Destruction4032Endless Rites4033Hateblast4034Unholy War For Master Satan4035Dark Upon The Light4036Necrotical4037My Heart Full Of Hate4038Walker From The Shade4039Parasite Of The Eve4040In The Circle Of Dying Time4041The Luciferian Doctrine4042Affliction Of The Divine4043Land Of Terror4044In The Trenches Of Antichrist4045Nightshade Dominion4046Rise Of The Black Pharaoh4047Forever Bonded In Suffering4048Bride Of Darkness4049God Will Lose, Satan Will Win4050Obscuration4051Triumph Of Blasphemy Kingdom4052Where Obscurity Dwells4053Savage Rule4054Praise The True Black Flames4055Diabolical Rave4056Under The Sign Of The Goat4057Under The Legions Ram4058Bloody Pontificate4059The Throne Of Dead Emotions4060The Faith Is Adorned With Blasphemy4061Battlecruiser Old Pagan4062Second Coming, Second Crucifixion4063Wrathful Chaos4064The Fall Of The Celestial Throne4065Merciless Jaws From Hell4066Det Österbottniska Mörkret4067Inhumed Rapture4068Foreshadowing Oblivion4069Opus Mortifer4070Glorifying The Kingdom Of Darkness4071Dark Insurrection4072Lords Of Sulfur4073From The Filthy Sewers Of Mind4074To The Path Of The Black Snake4075Under The Altar Of The Immaculate4076Blasphemous Revelations Arise The Ancient Evil4077Riding Into The Funeral Paths4078Ritual In Blood4079The Blazing Seal Of Lucifer4080When The Heavens Fall... The Arrive Of Ancient Empire4081Offerings To The Great Plague4082In Search Of Order And Meaning4083Unmatched...4084Et Facta Est Nox4085Reclaiming The Throne4086Flying Through Your Fear4087Black Dreams Under The Sea4088Perception Of Hades4089Permanent Midnight4090Necrophagus Communion4091Summoning The Lawless Legions4092Sabbat Of Behezaël4093Seven Day And Seven Night4094Rest In Morbid Darkness4095Sublunary Tragedies4096Human Skin Throne4097Perdition Discipline4098Reborn Of Deathnight Creatures4099Cult Of The Vulture4100Feast Upon The Lamb4101Inverse Volition4102Like A Lamb To The Slaughter4103Incense Of Opened Gates4104Gutless Reincarnation4105Eminence of Satanic Imperial Art4106Alcoholic Terror Black Vomit4107Forest Of Forbidden Whispers4108Far From Everything4109Black Destiny4110Ruptured In Purulence4111To Tempt The Demons4112Domain Of Death Over Evil4113Darkest Force4114Berserker4115Har Meggido4116Twilight Fog Of Sorrow4117Desekration Of The Kristian God4118Ascending To The Throne4119Eternal Fall, Eternal Star4120Demonic Rites Of Desecration4121Opus Diaboli4122Stillbirth In Bethlehem4123Master Of Asylum4124Thousand Gallows4125Pleasures Of Flesh4126Satanas Triumphans4127Extract The Truth4128Pallets Of The Profane4129Lycanthropic Bloodlust4130First Legion Of Hell4131The Return Of The Ancients4132Bludgeoning The Pure With The Fist Of Our Grim Lord4133Human Decadence Into Natural Disaster4134Invocation Of The Protective Angels4135Declare War On Christianity4136Forgotten Genocide4137Blasphemous Attack4138Diabolical Cataclysm4139Fantasies Turned To Nightmare4140Replicate To Retaliate4141Rusty Horns4142Surreal Graveyard4143Rites In The Forest4144Exalted Spectres4145Blood Libel4146Regiam Inferi4147Aurora Of Spirits4148Satanic And Hellish Aeons Rising4149Eternal Infernal Satanik Ritual4150Belial Incarnate4151Spell Of The Unholy One4152Night Visions In Cult To The Moon4153The Path To The Bearer Of Light4154Hypocrisy And Pain4155Ravaged Fortitude Of Foul Existence4156Back To The Crystal4157Hell In The Heart4158Beauty Of Darkness4159Enter The Necropolis4160Reptiles Behind Human Flesh4161Witches Drowned In A River Of Stone4162The Wing Of Blackless Night4163Archidoxes Of Evil4164Born From The Fire4165End Of Omnipotence4166Winds Of Death4167Inside The Grave Stone4168Night Ov Unholy Desecration4169Anticrist4170Satanic Dirge4171Hail Satanic Empire4172A Possession To Desecrate4173The Night Of Winter Solstice4174Stamped In The Crucifix4175In The Darkness In Black Winds4176Satanic Moan4177Ode To The Unconquerable4178United By Satanic Pride4179Mortification Of Jesus Christ4180Satanic Ritual And Goat Sabbat4181Horde Of Disgust4182Black Invocation Of The Infernal Spirit4183The Black Pest Of Evil4184In Honour Of His Damned Majesty4185Through The Golden Gate4186Yog-Sothoth4187Gnostikoi Ha-Shaitan4188The Man Who Dominated The Demons4189Aufmarsch4190The Clock Of The Death4191A Coronation Of Slaughter And Battles To Come4192Persecution Of Christian Filth4193Off The Enlightened Path4194Sempiternal Opprobrium4195The Awakening Of Chtullu4196Obscenities Of Virgins And Sexes Of Whores4197Rain Poured On The Dead4198Damnation4199Under The Banner Of The Pentagram4200Kamikaze4201Ensemble Under The Dark Sun4202The Goat's Morbidity4203Opium Morals4204Cavorting Neath The Miasmic Moon4205Bitches Sabbath4206The Unknown Empire4207Terminus Ante Quem4208Forever On The Dark Side4209Shadowthrone4210Carnage In Heaven4211Shadow Of A Fallen Angel4212Chamber Of Suicide4213Harakiri In The Sky4214Declared The Satanic War4215De Ritibus Hostis Animarum4216Manifest Of The Tradition4217Total Doom, Total Death4218Eternal Defeat4219The Black Mass Covenant4220Nightmares Of Total Horror4221Heksekunst4222Ungodly Militant Onslaught4223World Wide War4224Pestem Hominum4225The Last Call Of Darkness4226Omnes Dii Gentium Daemonia4227To Witness The End Of All Flesh4228Excidium Satanas4229Ascension4230The Throne Of Armageddon4231Merciless Spikes4232A Mother's Curse4233Satan's Realm4234Sowing The Seeds Of Suffering4235Suicidal Nazareth4236No Thoughts From The Sky4237Summum Malum4238Evocation Of The Demons Of Lust4239Legion Black Metal Attack4240Of Satan's Right Hand4241När Allt Liv Svartnar4242Vortex Of The Slain4243Branches Of The Cursed Tree4244Blazing Winds Of Transcendence4245Ascension Into Chaos4246Stairway To Hell4247Revelations Of The Blind Lord4248So So Cold4249Black Star In A Dying Constellation4250Crayons Of Infinity4251Obscure Dreams And Magnificence4252Through The Cold Void Of Death4253The Grey Waves Crash On Subtle Thoughts4254Profanus Chinese Long Remote4255Demoniac Fury Bloodlust Christians4256An Offering To Darkness & Satan4257The Distortionated Guts Of The Idolatry4258Satanic Age Is Upon Us4259Thirsty For Blood And Meat4260Supreme Matriarch Of Destruction4261Tenebrous Darkness4262Satanic Black Cult4263The Morbid Wraiths4264Teardrops Reflecting In The Eyes Of Satan4265Bleeding Star Upon The Black Castle4266And Then Life Was Death4267Endless Tortures For Eternity4268Pact With The Devil4269Contempt Towards Humanity4270Salem City4271Those Who Swore False Oath4272Fixed By The Devil4273Alongside Death4274Baphomet Is My Prophet4275Skate For The Devil4276Lords Of The Nine4277To Stare Into The Black Infinities With Unflinching Gluttony4278Under The Moon Signal4279Order Of The Universe4280To The Guillotine4281The Astral Gloom4282Blessed By Blasphemy4283The True Spirit Of Evil4284Invoking The Aeon Of Satan4285Open The Portals To Darkness4286Slaves To The Decay4287About The Humble4288Manifesting The Sorcerers Lore4289Mushroom Clouds And Dusk4290Know God, No Peace...4291Ancient Fear4292An Eternal Dark Horizon4293Thy Funeral Judas4294Warlords Of Hell4295Travesty Of Heavenly Essence4296Here In Hell I Am Always Enlightened4297Snow Of Ashes Of Humanity4298For Years I Fought Fire4299Of Pestilence4300Ciclopean Crypts Of Citadels4301Sorrow Ov The Immortal Man4302Muggy Vagina Of My Soul And Tender Satan4303Theory And Practice Of Hell4304Alchemical Conjunction4305Shrine Of The Pentagram4306The Gates Of Putridity4307Lethal Enforcer From Hell4308Black Monolith Lust4309Through The Layers Of Sleep4310Cursed With Blackened Tongues4311Baphomet Under The Full Moon4312Rage Against Gods And Their Prayers4313Magnificent Ritual Killer4314Summoning The Unlight4315The Immensity Of The Black Sky4316Legion Of The Black Moukar4317Primal Howls In The Domains Of Death4318Wake Up In The Night Of Walpurgis4319Existential Horror4320Under The Sign4321The Falling Of The Parody Of Misery4322Undimensional4323Disfiguring Creation And Destruction4324One Last Breath4325Ungodly Priest4326Suprema Scienta Satani4327The Fall Of The Chosen Star4328The Thousand Years Of Moonlight4329Eternal Flames Ov Satan4330Desecration Of Morbid Spirits4331The Diabolic Confession4332The Night Of The Ancient Wisdom4333De Templi Autem Veteris Serpentis4334A Lesson In Basic Human Empathy4335From Genesis To Apocalypse And Beyond4336Cross Of St. Peter4337Hell Is Ready4338Umbrae Angelorum Cadentium4339Hyperborean Rites Of Frost4340Flames Upon Bethlehem4341A Prophecy Of Terror And Turmoil4342Sacrifice For The Diabolical Black Goat4343Följer Kallet Mot Stigen Av Mänsklig Aska4344Dunkelheit Aus Nord4345Repugnant Coronation Of The Beast4346Percussimus Foedus Cum Morte4347Dark Tomb4348To A Rock, To A Hill4349Coronation Of The Black Goat4350The Demon And The Deceiver4351De Praestigiis Angelorum4352Ex Nihilvm4353Mortal Blood Slumbers For Eternity4354Banished Rhythmic Hate4355Proclaimation Of Wrath4356Beyond The Mortal Gate4357Infinite Mysteries4358Brotherhood Of Freaks4359Putrefaction Be Thy Name4360Pestilent Aeons4361Two Gates To Salvation4362A Dark Glance That Reign At Night4363Utter The Tongue Of The Dead4364I Am Become Death, Destroyer Of Worlds4365Thorns Of The Sadist4366Monument Of Misanthropy4367The Choir Of Dead Souls4368Voices In The Night4369The Necro Continuum4370666 Eternal Hell Warlord4371Loyalty To The Dark4372Three Angled Void4373The Devil Awaits...4374Blessed Are The Damned4375Following The Black Ritual4376Live Again Before Death4377To Die A Thousand Times4378Dawn Of The White Rune4379Upon Judas' Throne4380A Call Upon The Infernal Rulers4381Torturous Howls Beneath Blood Banners4382Mocking Jehovah4383Masochistic Devil Worship4384Release All Evil4385March Of The Witches4386Art Of Ascension4387Sacrifice4388United Under The Banner Of The Ancestors4389Satan's Wolves Of The Ritual Moon4390Aeons Of Martyrdom4391A Bloodline Ending4392Nocturnal Black Assault4393Bound By The Spirit Of Blood And Earth4394Fallen To Arise4395Shadow Descendant4396Take Away My Pain4397Praxis Of The Black Magisterium4398Viking And Satan4399Nyarlathotep4400The Wind On The Banks4401The Truth Of The Dark Man4402Anabasis Ov Spirit4403Suicidal Impulse4404Impeccable Numbness4405The Past Is Alive4406Awakened Celts4407Endless Paths For The Condemned Souls4408Then The Heaven Will Collapse4409The Sweet Death4410The Spirit Of The Forest (To Bleed Northern Spirit)4411The Forest Paranoid4412Pagan Rise And Melody Of The Fallen4413The Scent Of The Old Black Masses4414With Hearts Toward None4415Blessed By Sadness4416The Rotten Smell Of The Entities That Murmur4417Feasting On The Blood Of The Insane4418Aggression On The Sacredness4419The Abyss Of True Death4420Splinter Of The Devil's Mirror4421Sever The Priest4422Doomed To Hell4423Ancestral & Forgotten Rites4424Torment And Death4425Moon Of Doom4426Spiritual Liberation4427Sacrifices For Ahriman's Throne4428Never Deny From The Powers Of Sorcery4429Behold The Son Of Plagues4430Heathen Souls Unite4431Dark Fables Of The Night4432Alien Deviant Circus4433Sodomize The Eternal Abyss Of The Whore Nun4434Tyrannous Mutations Of Sathanas4435Where Hate Begins...4436Time Of Goat4437Glory And Occult Dominion4438Sun Of All Suns4439God Is The Devil4440Christ Burning In The Flames Of Despair4441Her Cries, Her Blood, Crimson Frost4442Gathering Of The Putrid Demons4443Our Dark Lord & Saviour4444Mad Grandiose Bloodfiends4445Under Moonlight We Kiss4446Blasphemous Proclamations From The Abyss4447Crawling From The Depths Of The First Tower4448Evil Dead By Dawn4449Towards Darkness' Paradise4450Lady Of Great Inferior World4451Agonizing Journey Through The Burning Universe And Transcendental Ritual Of Transfiguration4452Per Aspera Ad Mortis4453De Principii Evangelikum4454Unholy Mutilator Of Christ4455Resurrection Of The Beast4456Dæmonolatreia4457Embrace And Enlightenment4458Final Praises4459Sunset Of The End4460Blasphemy, Death And Grave4461Baal Of The Flies4462Fullmoon Rites Of Sabbat4463Obscure And Blasphemer Feeling Of Soul4464Nullum Verbum4465Dark Idol Aeon4466Gauntlets Of Iron4467Eternal Flame Of Hate4468Celebration Of The Nightrealm4469Proliferating The Unholy Fire4470Usurpation Of The Seven4471Brutalization Of The Christ4472Walking Through The Shadow Of Death4473A Dance Of Pure Triumph4474Death Runs4475Death By Inverted Crucifixion4476With Spirits In Thoughtless Streams4477Extension Of Hate4478Night Witches On The Coast Of The Abyss4479Flowery Battles4480A Trinket From A Defiled Grave4481Where Witches Burnt4482Necromantiae Bestialis4483Shades Of The Sanguine Tree4484Proclamation Of The Sardonic Flame4485Warhymn Indoctrination4486Bury Me Deep4487I Am A Tumor Growing Quetly Within The Society4488Raven Claws Rips The Lamb4489Blackstorm4490Crucify The Jesus Christ Again4491Earth In Blazing Fires4492Hatred Against The Gods Of Life4493The Black Cult Is The Night Of Gory Moon4494Adsertor Noctis Obductae4495Testimony Of The Abominable4496My Soul Embraces Satan4497Ancient Age Of The Nocturnal Sun4498As The Darkness Enters4499Towards Immortality4500Written In Stone4501Triangulum Dæmoniorum Invocato4502The Legacy Of The Dark Forces4503Black Goat Victorious4504Perpetual Cycle4505Obscure Hall Of Larvae4506Apse Of Sacrilege4507Six Stigmas Of Satan4508An Altar To Satan4509Demonicon4510Altars Of Blood & Fire4511Reversed Black Trinity4512When You Need Metal​.​.​.​Go To Hell4513Brutal Massacration4514Vengeance War 'till Death4515Annihilating The Judeo-Christian Generations4516Northern Despondency4517The Last Chant Of The White Wolf4518And Nothing Was Left But Ashes4519My Death For You On A Night Of Cursed Full Moon4520Collection Of Black Roses4521Death Fanaticism4522Black Anal Goat Vomit4523Remains Of Something Once Called Life4524The Immortal Circle Of The Adversary4525Profound Echoes Of The End4526Waters Of Weeping4527Lost In Shadows Grim4528Black Inquisition4529Culling The Herd4530Conquering Legions Of Astaroth4531Midnight Christian Slaying4532Eternal Command Of Atomic Warcult4533Force Banger4534Imperial Forces Of Real Underground Attack4535Nihilists With Honor4536Fucking Fullmoon Foundation4537A Fist In The Face Of Humanity4538Passages Of Black Devotion4539Black Metal Juggernaut4540Chambers Of The Perverted Abuser4541Taste The Blade4542Celebration Of Chaos4543Under The Torment Of Baphometh4544Crowned By The Serpent4545Satanic Anti-human Command4546Bestial Intercourse4547Something Wicked, Raw And Ugly4548Altar Of Goat Fornications4549Eternal Dying Echoes4550He Who Hates4551The Destruction Universe4552From Where Pain Is Born4553Antichristian War Hate4554Bloody Morgue4555Dark Fairy Tales From The Pits Of Hell4556The Witchcraft Trials Of Salem In The Year Of 16924557Truth Or Recreation4558Age Of The Axe4559Venerating The Cult Of Flesh4560Predatorial Instincts4561Drako Gigante4562Drömme Om Evig Nat4563Sprawled Innards Of Festering Demonic Cadaverous Blood Oozing Chunks4564Shade Of Soul4565Devoured By Shadows4566Unleash The Malignant Obscurity4567As Blood Rains From The Sky4568I Am The Sword Of The Luziferian Race4569Bottom Astral4570Black Sorcery Of Darkness4571Grimoire Of Black Pact And Luciferian Invocation4572Call Of The Imperial Throne Spiritus4573Black Metal Night4574To The Eternal Roots4575Ex Regnum Spiritus In Manifestus4576The Cursed Blood Of Eternal Life4577Touch Of Dismay4578Destructive Metal Invasion4579Hallucination With Dead4580Death Becomes Us4581Drink The Blood4582Blood Will Be Spilled4583Obscure Antecedent4584My Prophecy Will Come4585Collision With Oblivion4586Spit Forth Your Lies4587Eternal Nightfall4588Drowned In Stupidity4589Dechristianisation4590Enter The Circus Of Fear4591Unconscious Sons Of The Reptile God4592Those Who Walk The Shadowpath4593The Promethean Concept And The Sinister Archetype Of Satanarchism4594The Masquerade4595Abandon Your Lord4596A Soar Bird4597Evasive Contempt4598The Gospel Of The Horned One4599Our Journey Towards Death4600Crown Of Impiety4601Cult Of Wind Scourge4602Under Black Wings Of Night4603Contemplating The Dark Ages On The Ashes Of The Rotten Christian Empire4604Damned Cult4605Crucified With Horns4606Bloody Days On The Altar4607Animae Damnatae4608Fimbulwinter4609Into The Black Void4610The Life, The Time, The Death4611Supreme Celebration Of Eternal Blasphemy4612Cursed Metal4613The Smell Of Black Metal4614Daemones Imperium4615Through Sheer Will And Black Magic4616One True Black Religion4617Father Lord Is Satan4618Suicidal Catharsis4619Frightful Chronicles Of Human Nature4620Sodomized By Depraved Goat4621The Sorrow And The Dark Ruin4622Manifestation Of The Abyssal Woods4623Du Morgenstjerne, Morgenrødens Sønn4624Fullmoon Over My Castle4625Necrovision4626God And Man Are One4627The Tides Of Damocles4628Descent Into Hell4629Evoking The Tides Of Satan4630Emissions Of Reality4631Witchcraft Of Initiation4632Where Chaos Brings Liberty4633Troops Of Satan4634Gospel Of The Serpent4635Monumental Mutilations4636My Grave Is Calling4637Pervestigationes Incitantes Et Matri Morte Obumbratio4638Hexentrost4639Manifestation Of The Supreme Beast4640Satanik Eon4641Shrouded In Dismal Detest4642Antediluvian4643The Forest Of Hanged Men4644Sorrow Cast Upon The Angels4645Oh, Lord, Amen4646Rites Of The Necromancer4647Bestial Prayers Of The Black Goat4648Supreme Demoniac Order Revenge4649Under The Eyes Of Rising Terror4650Temple Of The Lost Wisdom4651Carnal Lust And Wolfen Hunger4652A Touch Of Medieval Darkness4653Ritual Of Resurrection Of The Fallen4654The Blood Of Angels4655Darkness Has Landed4656Actions Of A Small Mind4657Unchain The Wolves4658At The Dawn Of Sadistic Infernal Holocaust4659Humanity In Decay4660Ace Of Spades4661Merchant Of Death4662Invernal Cold And Night4663Excisions Of Exorcisms4664Ancient Rites To The Moon4665Through Difficulties To Defeat4666The Faces Of The Antichrist4667Blasphemed Betrayal4668The Evil Is Real And Stronger Than Ever4669Arrival Of The Condemned Souls4670Silence Of Angel4671Attack On The Crucified4672My Soul To You O Great Lucifer4673Bastard Son Of Satan4674Liberating Self-destruction4675Cruelty Excellence Of Inner Blaze4676On The Paths Of Blasphemy4677To The Last Sunset At The Gates Of Collapse4678Ode To The Majesty Of The Nightside4679Dimensions Of Hades4680She Who Wears The Serpent Hood And Holds The Keys To Kaos4681Metallic Pit4682Maggot War Command4683The Woods Of Grief4684Of Kali, Of Seth, Of Satan!4685Death Paradigm4686Ecclesia Satani4687May My Will Destroy You4688Whose Wheel Turns Eternal4689Overwhelming Marches And Blasphemous War Hymns4690Revenger Of Blood4691The End Of Things To Come4692Belly Generous Of Evil4693Black Flames Of Blasphemy4694The Gospel According To Satan4695The Long Sorrowful Journey To Death4696Towards The Skullthrone Of Satan4697Envisioned... The Hellternity4698A Child Was Born Of The Underworld4699War And Bloodshed Forever4700Calyx Of Black Metal Blood470180 Days To Go4702Drunk In The Name Of Satan4703The Devil Is Always Looking For Souls4704Total Orgasm Is Consumed4705The Darkest Of Shadows And The Blindness Of The Servants4706Exhumation Of Satan4707Pain, Suffering, Damnation, Death4708Bronze Bull4709Extermination Of Christianity4710Blasphemous Hierarchy4711Open The Door To The Ancients4712Religiocide4713The Halo Of Burning Wings4714To Pass Through The Fire4715Reaping The Hope Of Dirty Humanity4716The Apocalyptic World Of Satan4717Filii Nigrantium Infernalium4718Warcourse Against Mankind4719Thoughts About Worthless Things And The Future4720Contra Mundum In Aeternum4721Spirits From The Medieval Storms4722Before My Eyes The New World Rose4723God4724Insane Addiction4725Through The Eyes Of Night... Winged They Come4726Land Of Eternal Sorrow4727Forgotten Legend Of Asmodeus4728Desecrated, Decayed And Still Holy4729A Pax Of Heretical Evolution4730The Path Of No Return4731Blasphemous Blood4732Silence Begins...4733By Blood And Honor... By Satan4734To Rape The Souls Of God4735Black Cataclysm4736Serpent Manifesto4737Infernal Rants4738Devil's Grin Retaliation4739Hermit Of His Own Labyrinth4740Sacrifice Your Soul For Metal4741Pandemic Transgression4742In Times Of Weakness, My Being Is Compromised4743Nyctophilia4744Days Of Impure Holiness4745Chanting Blasphemies At A Profane Funeral4746Sons Of Devastation4747Sounds Of War4748Godslayer Xul4749Echoes In Eternity4750At The Dawn Of Life Demise4751The Blood I Drink Is Ominous4752Perpetua Devotionis Ille Blasphemous4753To The Great Eternity4754Storm Obliteration4755Dark Procession From The Abyss4756Excruciating Odes Of Condemnation And Apostasy4757Thou I Proclame4758Delirium Daydream4759Black Goat Desecration4760Cryptfucking Demonizers Of Holocaustic Wrath4761Their Nobles With Shackles Of Iron4762Drowned In Black Sorrow4763The Reign Of Hatred4764Socialist Utopia4765Summa Perfectionis4766Born The Prototype4767Castrated On Anvil4768Occult Bewitchment4769Depletion Inflictor4770Waiting For Darker Skies4771What Do We Know Of Horror & Torment4772Humanities Last Judgement4773Devilish Howl And Blasphemous War4774Deadly Shine Of Deceased Metal4775Encountering Darkness4776The Shed4777Penis Metal4778Phobos Anomaly4779For The Years Of War And Hate4780Haeretic Winds4781Nearer To Victory4782Demonic Revolution4783Between Darkness And Death4784Panacea For A Cursed Race4785Pope Crush Evil4786For Whom The Bell Tolls4787We Are A Sign Of Hell (Darkness Become)4788Feast To A Legion Of Possessed Pigs4789Sathanas Trismegistos4790Religious Purification Through Fire4791Vitriol4792Dark Requiems... And Unsilent Massacre4793Gathering Hell's Warriors4794Burn On Your Cross Nazarene4795Triumph Of Bestial Desekrator4796Legacy Of The Nephilim4797Affirmation Of All Inhuman Process4798Vomit In The Church4799The Spectre Of Lonely Souls4800The Evil Emanations4801Spill The Blood Red And Follow The Satanic Cult4802Deathless Dimension4803Satanic Hellride4804Blessed Be The Name Of The Dragon4805Harbinger Of Doom4806Christians Will Be Subjected To Multiple Tortures4807Unsilent Storms In The Northern Abyss4808Prophets To Pillory4809Father Of Filth4810The Cosmic Trance Into The Void4811Lore And Legend4812We Will Honor You!4813Horror Of Abomination4814Si Vis Pacem Para Bellum4815Serpentis Haereticum4816In The Lands Of The Coldness Of The Grave4817The Bloodwine Of Satan4818Helvetes Ild4819Blessed Are The Strong, Cursed Are The Weak4820A Symphony Of Soul Destruction4821Invocation To Destruction Of Jehovah And Christianity4822Blood Stone Over Transylvania4823Atrocious Cult Of Christian Eradication4824Black Communion Of Carnivore Eucharist4825Amalgamation Of Imperial Demonization4826Sanctities We Raped4827Demonic Ass-rape Of The Modern World4828Pagan Black Victory4829In League With Satan4830Centuries Of Sortilege4831Sadistic Mind Manipulation4832Death Before Dishonor4833Upon The Throne Of Apocalypse4834Memory Of A Dead Man4835Apotheosis Ab Obscurus Superi4836The Devil Takes Over Your Soul4837We Like The Goat... And The Goat Likes Us4838Feasting To A Light Of A Black Candle4839All Shadows From Hell4840Birthrate Zero4841Graveyard Hallucinations4842In Nomine Fatalis Erebeus Rebunt Noxiae Omnium4843Eviscerate Yourself4844Under The Kingdom Of Shadows4845Honoring The Funeral Cult4846The Beginning Of The End4847Faustian Monarchy4848In The Infinity Of Lascivia4849The Translucent Liturgy4850Nocturnal Echoes Of Despair4851World Killer4852Ceremony Of Godslaying4853Kyrie Fucking Eleison4854Jotunheim4855Cause The War Never Ends...4856Leviathan4857Buried Alive4858Human Fumes4859The Origins Of Extinction4860In The War With Capeta4861Salvation Through Despair4862...And The Light Falls Into The Shadow4863Jehovah's Funeral4864We Never Lived4865Unleashed From Dismal Light4866Fuck You Jesus4867Of Bloodlust And Eternal Darkness4868Cliffs Of Misery4869The Priest Of Baal Karnaim4870On Road To Frozen Stars4871The Dead Inheritance4872The Satanic Society Of Dead Poets4873Unholy Triumph Over The False Messiah4874Precept Of Delator4875Sacred Incineration4876Sacrifice And Blasphemy Of The Executioner4877The Strongest Force Of Hell4878Slave Of Lies4879Pestis Mordet Corpora Eorum4880A Black Ceremony In Honor To Sathanas4881Sinister Ecstasy4882Whom Aeons Tore Apart4883The Decline Of Man4884Spell Of The Unholy One4885Incompetence Of The Nazarene In The Kingdom Of The Wicked4886Seventh Ceremony For Perversion4887The Price Of Blood4888Infernal Lord The Glory Behind The Abyss4889Maleficarum Sigilium Diaboli4890Shine Through My Scars, Morning Star!4891Death Of Trust4892Laws Written In Blood4893Fragmentary Evidence4894Disco's Out, Slaughter's In4895Heterodox4896Destroyers Of Christian Faith4897Lucifer Conqueror4898Tablets Ov Baphomet In Amenti4899Black Seeds Ov Obscure Arts4900Atrae Materiae Monumentum4901Passage On The Cold Legends4902Omnia Ab Uno, Omnia Ad Unum4903The Sublimation Of Darkness4904Where Ancestral Spirits Roam4905Hic Rugitus Cavernarum Terribilis4906Bloody Nightmare4907Anvil Of Crom4908Unholy Falldown Of Christianism4909Deus Malignum Abruptum4910Lucifer's Call4911Everything Ends4912War Until Silence4913The World Is Ending4914Dogs Of Hell4915Conjuration Of Niggurath4916Blackness Of Siberian Forest4917Black Sun Rising4918Visions Of A Dying Fate4919Coprophilic Prayer4920Vomit On The Image Of The Jesus Christ4921From Once Beneath The Curse4922Invoking The Nusanthropian Supremity4923The Atavism Of Evil4924Black Metal My World Apart4925A Hill To Die Upon4926Lust For The Taste Of Virgin Blood4927Lunar Awakening4928For My Your Blood For Satan Your Soul4929The Beginning Of Darkness (Epitaph)4930Taken Beyond4931It's So Hot Right4932Dark Angels Riding On The Stormfront Of Time4933The Route Of Haeresis4934Cold Winds In The Distants Forests Of Forgotten Lands4935Nightly Storm Of Helpless Knowledge4936Frim And Grostbitten Misanthropic Mayhem4937United In Mankind's Annihilation4938Masquerading As God4939Your Side Of The Triangle4940Fecal Hegemony4941...About The Return Of The Horned One4942Impaled In Possessed Forest4943Morbid Contempt4944Disciples Of The Goat4945Refinery Of Humanity4946Ceremonial Blood Worship4947From The Darkness To The Triumph4948Dawn Of The Armageddon4949Winds Of Madness4950Rotting In Purgatory4951The God Of The Hypocrites4952Christendom Perished4953Maximum Firepower On The Temple Of God4954Toiling, Perishing4955Walking On The Road Of Bloody War4956In Nomine Tenebrae4957Dismember Your Enemy4958Mortuary Dripping4959Under The Cloak Of Cruelty4960Mistress Of The Gloomy Nights4961Engulfed By Genocidal Abhorrence4962Vampyric Stream Of Adversity And Ascension4963At The Ruins Of All Saints4964Night Of Bestial And Profane Sex4965Revolution Of Darkness4966Sex With Satan4967Tormentum Aeternum4968Night, In The Sleeping Forest4969Victorious Satan4970The Total Elimination!4971Decomposition Of The Human Soul4972Signs Of The Befalling Dark4973Necrocosmos4974Nahualistic Ritual4975The Gathering Of Mindless Souls4976The Refuge Of Creation4977Baptized By Satan4978Subatomic Extinction Of Everything4979March To Heaven's Damnation4980Ad Inferos Ascensionis4981Casus Belli4982The Black Night Of Torment4983Schizoid Wizard4984Goluboy Iisus4985Doomed Blood Concatenation4986Escalation4987Eat The Dead4988The Third Antichrist4989NecroSlaughter4990A Stain Upon The Shroud Of Eternity4991Sickly Usurper4992Brutal Mutilation4993Death And Exalted Woe4994Norma Evangelium Diaboli4995Ejakkulation Evil Storm Of Perverse Goatsodomy49966-6-6 Seconds In Hell4997Glory And Absolution4998The Wizard Of Nerath4999Hymns To The Black Cathedral5000Dawn Of The Christian Holocaust5001Iconoclasm And The Circle Of Spilled Blood5002The High Heat Licks Against Heaven5003Instigating An Eternal War5004Nihil Crafting5005Cemetery Of Gods5006Nihilistic Death Cult5007From The Throne Of The Abyss5008Coming Straight With A Vengeance5009Legions Of Hell5010Arrival Of The Carnivore5011Clandestine Theurgy5012Through The Shadowy Branches, Ruins Of A Tragic Story5013Requiem Aeternam Infernum5014Black Warriors Of Leviathan5015Wastelands Of God's Creation5016Under The Unholy Black Ritual5017Under The Protection Of Satan Wings5018Ushering A New Era Of Agony5019Toxic Poem5020Killed By The Cross5021Dark Pleasures Of Death5022It Is A Violent Presence To Whom Reverence Is Done5023Under Moon Sign5024Beneath The Marble Engraving5025Salvation, At One With Hell5026Blasphemous Conqueror5027Human Nature5028The Spawn Of Lost Creation5029The Immortal Flame5030Anti-Evangelistic Process5031Opus Inferna Nocturna5032Primum Somnum5033Black Blood Raised5034Lost Beyond Deepest Forgotten Souls5035Where Eternally Autumn Winds Blow5036Exquisite Submission5037Pleasures Of The Human Flesh5038From The Depths5039Nihilistic Schizophrenia5040Holocaust Of Bestial Lust5041Body Hurting Art5042The God Ov Sick Animals5043Scrolls Of The Necropolis5044Secret Spies Of The Horned Patrician5045A Reflection Of Eternity...5046Under The Sign Of The Horns5047Forging Our Hate5048Unholy Impact Of Evil5049Between The Cracks Of A Dry River5050Sons Of The Abysmal Heaven5051We Have Your Children5052Fear, Perversion And Pain5053Falling For Humiliation5054Invoking The Ancient Horde Of War And Darkness5055The Dark Side Of The Mirror5056A Coal Black Sheep5057I Challenge The Light Of God5058Staring Into The Void5059Silver Veins5060The Magic Of Stellar Entropy5061The Salvation Death Brings5062Militia Of Undead5063Rise Of The Bubonic Death5064Vortex Of Paranormal Rage5065Butterfly Effect5066The Darkness That Dwells Within My Mind5067Macabre Justice5068Fire & Brimstone5069Hopeless Godless5070Hate, Death, Blood, Christian Bastards5071The Cvlt Ov The Old Ones5072A Decade Along The Burning Paths5073Shouts Of Christian Desperation At The Throne Of Lucifer5074Sent To War5075Debauching The Minions5076Vomiting Worms5077Damage Done By Worms5078Worms Inside Your Coffin5079Worms In Celestial Bodies5080Nest Of Worms5081Worship The Worms5082Feed The Worms5083Eaten By Worms5084Worms Of The Universe5085Worms Beneath Your Skin5086Filth Of The Worms5087Pool Of Worms5088Worms And Shit5089A Host Of Worms5090Race Of Worms5091To The Worms5092Pulsating Mass Of Worms5093Food For The Worms5094March Of The Worms5095God Amongs The Worms5096Cenotaph Of Worms5097The Clash Of Worms5098Worms Of The Earth5099Worms Will Feast5100Worms Of Despair5101Weaved Of Worms5102Worms Go In5103Kiss Of Worms5104Colony Of Worms5105Worms In Disguise5106The Worms Consume Me5107Feeble Worms Of Weakness5108Realm Of Worms5109Where Worms Never Die5110Worms Of Premonition5111Savior Of Worms5112Worms That Walk5113Digested By The Crawling Worms5114Worms Expelled From Their Sockets5115Among Worms It Was Whispered5116All-consuming Worms5117Pestilence Shared With The Worms5118Black Eruption Of Dead Worms5119Voracious Putridity Of Phlegmatic Worms5120Existing To Devour The Worms5121Our Mouths Ridden With Worms5122Worms Are Better Than Me5123Worms Of The Modern World5124Amidst The Worms And Bones5125Devoured Alive By Your Own Intestinal Worms5126He Who Wears The Crown Of Worms5127The Worms That Never Touched The Dress5128The Death In Shape Of Worms5129The Beauty Of Worms And Roses5130Defloration By Intestinal Worms Of Alien Origin5131Worms In The Cross Of Jesus5132When Grave Worms Beckon A New Reign5133Near The Worms Far From The Light5134All Those Worms, All Of Me5135The Black Worms Beneath This Soil5136Moribund Ecstasy In The Circle Of Worms5137Tape Worms Are Screaming Though My Heart5138See The Worms In Own Head5139Satisfaction Through Defecation Of Red Worms5140Possessed By The Worms Of Satan5141Nailed To The Bed Of Worms5142Death Thy Conqueror, Worms Thine Heir5143Infested Asmodeustic Realm Of Plasma Worms5144Churning Of Worms Within Duttaphrynus Stomach5145A Ship Of Worms And Putrescence5146Consumed By Neo-cannibalistic Worms5147Posers Poisoned By Everlasting Shredded Coffin Worms5148The Day The Worms Became Kings5149Traumatic Dysmenorrheic Discharge... With Worms5150Eating Intestines Sprinkled With Rotten Worms5151Crown Of Worms Stabbed By Thorns5152Rise And Fall Of The King Of Worms5153Entrance Of One In The Chamber Of Worms5154Shower Mercies On The Worms Of Your Creation5155A Feast Of Worms During The Black Death5156Purulent Decipatation Of Furuncal And Worms In The Bowel Areas5157Your Coffin Packed With Worms And Wants You5158Giant Necrotic Tumour Swollen Of Worms And Dense Liquid5159In Pestilence She Bathes, O Evil Worms Feed5160When The Worms Eaten My Rigid Members Like Juicy Feast5161Decomposition By Worms Of An Exploded Brain On The Sidewalk5162Remedy For Purulent Mass Already Infested With Worms5163Violent Penetration In The Anal Covered By Worms5164May The Worms Have Mercy On My Flesh5165At The Licentious Abortionist's Abattoir, Thine Disinherited Gravid Worms Adjure Excruciatingly5166Hook Worms Dangling From Fecal Ressidue In A Fissured Rectal Cavity5167My Soul Is Already In The Grave And Feeds The Worms5168Buckets Of Spinal Fluids And Skeletal Remains Festering With Worms & Rats In The Basement Of An Aspiring Surgeon Who Is Suffering From Profound Mental Retardation5169The Presence Of Parasitic Worms In The Lymphatic System Causes The Obstruction Of Lymphatic Vessels Which Leads To Scrotal Elephantiasis And Allows To Humiliate Sexual Partners By Teabagging Them With Abnormally Huge Swollen Scrotum5170Ignis Dominus5171Aeonic Hyperborean Satanic Sorcery5172Clawed Out Of Hell5173Invoking The Hell Commanders5174My Cold Dreams Of Eternal Hate Snd Loneliness5175Diabolical Katharsis5176Celebrating Satan's Return5177Remorseless Apprehension5178Hellish Premonitions5179Infernal Devotion5180Unholy Wolves5181Something Strange Inside You5182Sick Sadistik Nekro Destruktive5183Fetch Us Their Souls Lucifer5184Demonic Winter Metal5185Storm Of Immolation5186Isolation Habitat5187The Temple In The Underworld5188Resurrecting The Sodomizer5189The Anatomy Of Madness5190Lamb Upon The Seat Of God5191I Escaped From Divine Captivity5192Modus Chaos5193Between The Walls Of Terror5194Death To Macrocosm5195Khaos Mortem5196In The Chamber Of Eternal Fire5197Necroritual Of Immortality5198Cosmos Is A Great Torture Chamber5199Death In Bondage5200Sworn By Satan5201Demonic Sadiztik Onslaught5202Satanize The Dead5203Scourging The Son Of God5204Brutality Compelled5205Crucify The Innocent5206Existence Precedes Extinction5207King Of The Midnight Legions5208Malignant Thermonuclear Supremacy5209Black Hate And Doom5210Burying The Tears Of The Lord5211Woven Dark Paths5212Times Of Satan5213Rebirth Of The Luciferian Light5214Orgy In The Bastard's Cathedral5215Southern Godless5216Bastard Piece Of Shit5217Satanic Forces Of Evil5218March To Victory5219Gates Of Hell5220Anti-human Theory5221Destroying For Satan's Glories5222Invokation Of Blood And Flesh5223Anality Brutality5224The Soundtrack To The Apocalypse5225Abhor The Christians5226Primitive Underground Manifestation5227The Left Hand Path5228Those Of The Catacombs5229Monolithic Insanity5230Plaguestorm5231Secret Of Ankh5232Triumphant Darkness5233Unpredictable Beast5234Andægtigt Dødsfald5235Secular Threat5236The Uncrowned Heresiarch5237Discarding The Mask5238Lord Hear Our Prayers5239Misery Exhibits5240Victorious Ejaculation Of Bestial Fornication5241Christianicide5242True Metal Subversion5243Voiceless Call5244In Eternal Coldness Of the Night5245Astride The Wings Of Decay5246Oneiric Visions5247A Sower Of Death5248Cross The Styx5249Ave Black Metal5250Evig Og Mork Vinter5251Skull Devil5252Mutated Through Blasphemous Ritual5253The Darkness Of Being5254Superbas Dominationae Tenebrarum Satanae5255Summon The Wardemons5256Eclipse Of Death5257The Satanic Sounds Of Soulers5258Rest In Hell5259Blood Cutting Magick5260Fast And Lethal5261Son Of Man Collapse5262The Burning Rites At The Southern Cave5263The Crypt Of Infinite Secrecy5264Sulfurous Prayers Of Blight And Darkness5265Evocation Of Desolation5266Empowering Black Forces5267Chalice Of Death5268Advance Of Pain5269Satisfied By The Cruelty5270Behind The Witchcraft5271Strange Creature5272Shadow Of The Sword5273The Last Pages Of The Book That Need To Be Torn And Burned5274Twilight Ripping Souls Apart5275Revenge Of The Monarch, The Kingdoom Cult5276Faking Salvation5277Death And The Philosopher5278Omens Of Doom5279Summons For Doomsday5280Transparent Inoculation5281Illuminating The Dark Path Of Existence5282Mordor5283The Sentence Of Satan5284Those Who Crawl And Slither Shall Again Inherit The Earth5285Mot Branta Fjäll5286Luciferian Leftovers Enlightenment5287My Thinks Entwine Darkness5288Liber Scientia5289Cerulean Twilight5290Unthroned Creed5291Black Mass Apocalypse5292Through The Gates Of Acarus5293The Fall Of Worthless Morals5294Impetuous Infernal Terror5295Marionettes Of God5296Between Heaven And Hell5297The Blackpest5298Apostate Zombie Rage5299The Malignant Hymn5300Let The Darkness Begin5301Triumph Ov Blasphemies5302We Live For The Sins They Forbid5303Thy Throne Is Mine5304Thriumvirath5305Chaos War Death5306Storm Of Malediction5307Proclaimer Of Chaos5308There Are Few Tomorrows For Feeding Our Worries5309Invoker Of The Venomous Unlight5310Impiety Command5311Cursed Children5312War, Sex And Magick5313The 7th Day Of The Doom5314Burning, Perpetual, Evil5315The Horned Beast5316After Being5317Cascading Nightmare5318Ahrimanic Trance5319Circle Of Betrayers5320On My Way Through The Eclipse5321Black Velvet Wings5322Humanity, Sweet Vanity5323Profound Blasphemous Proclamation5324The Return To The Cvlt Of The Iron Witches Hammer5325Dance Of St. Vitus5326The Great Cosmic Rebel5327Via Tenebrae... Gloria In Excelsi5328The Glory Of Azathot5329Holy Empire Of Rats5330The Cursed Above - The Pious Below5331Circle Of The Seven Infernal Pacts5332Satanic Assassin Commando5333Hell Is Empty And All The Devils Are Here5334Catastrophic Triumphal Fantasy5335Christ Agony5336Eldest Born Of Hell5337Prophecies Ablaze5338Beacons Of Revolt5339The Triumphant Serpent5340Unholy Medieval Congregation5341The Victory Of Evil5342White Cold Wrath Burnt Frozen Blood5343Dragons From The Other Side5344And The Ravens Forayed The Wounds Of Christ And As Instinct We Feed From The Veins Of The Weak5345Necromentor5346Seduced By The Nite5347My Last Pit Of Salvation5348Obsidian Codex5349Whore Of Nazareth5350In The Shadow Of The Wolf5351Praise Of The Night5352Black Magic Black Night5353Reign Of The Antechrist5354Cold Hate And Misanthropy5355Sodomize The Eternal Abyss Of The Whore Nun5356Total Desecration Of Everything Holy5357A Gloomer Doom For A Drowned5358Traversing Dark Passages5359Suffering And Pain5360Anthems For The Coming War Age5361Muse Of The Damned5362Feeble Antichrist Obliterated5363Extreme Hatred5364Obsession Divine5365I Deserve To Burn5366Uncultivated Grave5367Aged In Anger And Glory5368Gastronomy Of Vivisection5369Satanic Blowjob5370Take Hold Of The Flame5371Excommunication, Blasphemy And Sacrilege Under The Divine Twilight5372Bound In Black Atmosphere5373Dweller On The Threshold5374Regurgitating Maggots Into Your Open Wound5375The Flame Of Satan5376Aeterno Rex Infernus5377666 Rites Of Vampyrick Obscurity5378Filth Of The World5379Leather, Chains And Alcohol5380They've Got Attacked By The Werewolves5381Destroying The Enemy5382Keeper Of The Unknown Paths5383Unapproachable Laws Of The Abyss5384Into The Black Thrones Of Sitra Ahra5385Little People5386Barbaric Triumph Of Evil5387The Screams Call Your Name5388Annihilation Of The Ignorant5389The Archetype Of Destruction5390Dreams Under Surveillance5391Long Way To Deliverance5392Sepulchral Gnosis5393The Skeletons Of Fallen Angels5394Venomous Manifestation Of Detest5395In The Shrines Of The Kingly Dead5396In Satan's Vacuum5397Destiny Rides On The Waves Of The Sea5398Relentless War5399No End In Sight5400Wheel Of Life5401Archaic Remnants Of The Numinous5402Thunder On The Tundra5403Rivers Of Blood5404Necronomicon Ex Mortis5405Storm Of Black Salvation5406Ferocious Blasphemic Warfare5407Regulated Disposal Of Human Disease5408Diabolical Quest5409Irrigation With Goatpiss5410Death Calls5411The Curse Of Kwányep5412Count Of Transylvania5413Hysterical Silence Ends The Night5414The Darkest Mirror Of The Infernal Halls5415Strengthened In Unholy Darkness5416As We Greed Into Eternity5417The Coffin Is Open Again5418The Desolate Years5419Karpathian Bloodthirst5420The Embryonic Penance5421In The Depths Of The Night5422False Gnosis5423...And Silence Will Drown Out The Thunder5424Stop Playing With Devilry!5425Where The Dead Cry5426Confutatis Maledictis5427Prisoners Of The Smoldering Walls5428A Murderer's Thought5429The Principle Of Evil Becomes The Ideal Of The Promethean5430Ritual Brutality5431Sacraments Of The Final Atrocity5432Confound Eternal5433Choose Your God5434Forsaken Home Of The Dead5435Total Global Annihilation And The Return Of Jesus Christ5436Lilith's Awakening5437Devils And Gods5438Aphelic Ascent5439Cemetery Of Hopes5440Thy Numinous Darkness5441The Ninth Summoning Of Suicide5442Endless Venom Ocean5443Syncopated Discord5444Satanic Immolation5445Visions For The Dark Soul5446Burning The Cross Of Lies5447Ascendancy Ov Darkness5448Land Of Frost & Despair5449The Rite Of Darkness5450Cometh Doom, Cometh Death5451Ritual Of Angzhar5452The Black Death Of The Grind Skulls5453The Renaissance Of Triumphant5454Primitive Goat Worship5455The Reign Of Perversion5456Conjuring The New Apocalypse5457Terrorist Commando Resurrection5458Headbangers Legions5459Under Jerusalem's Temple Mount5460Have Mercy On My Longings, Satan5461Disgracefully Vanished5462Penis Perversor5463The Invoked Abomination5464Hell Injection5465Glory Of The Ancient Gods5466Kaos.Kult.Kreation5467...And Unnamed Devils5468Dance Of The Devil5469Forest Princess5470Brought Forth From The Depths5471Evangelical Communion Of The Black Goat Semen5472Shaped To The Image Of The Flames5473Chant For Azagthoth5474You Will Be Blinding5475Flagellation Of The Decrepit5476Of Beasts And Vultures5477Rise Of The Adversary5478Diabolic Ritual In The Cursed Forest5479Morbid Persecutions5480Ancient Templar Initiation5481Carnivorous Void5482Eternal Darkness And Moon Rises5483God's Lamb Hecatomb5484Manifest Excellency5485Brotherhood Of Black Aliance5486Proclaimers Of Satan's Reign5487Sodomic Spirit Disturbed My Shadows5488Possessed With Erection5489Total Fucking Decadence5490Insanity Through Dehydration5491World Blown Up In Dust5492Hope Of Retaliation5493To Slave The Believers5494The Eye Of The Blackmoon5495Hatebound Warfare5496The Howling Grey Werewolf5497Prophets Of The Black Arts Of Samael5498Bestial Occult Ceremony5499Hording Of Evil Vengeance5500Gathered Under The Banner Of Concilium5501Conjuration Of The Watcher5502In Nominae Gloriae5503Angry At The World Compilation5504Nemesis Creation Ov Xul5505Fleshcult Invitation5506Killed By Fear!!5507Ashes In Her Mouth5508Absolute Hate From Hell5509Black Coffin Entities5510Satanic Inquisition Revenge Is The Call5511Defying The Righteous Way5512Rites Of Infinity Darkness5513Welcome The Flames5514Doorway To Eternity5515Hell Hath No Fury Like A Devil Scorned5516Elysium5517Embodiment Of Goat Blasphemy5518Screaming To The World5519Hymns Of Desecration5520From The Dark Hills Of The Past5521Per Lucem Profanis5522The Ungodly Lamentations5523Aeonic Tempest From The Abyss5524Iniquitous Of The Serpent Bearer5525The Cosmic Sphere Falls5526Messiah Ov Malevolence5527Of Lies, Curses And Blood5528Eternities In The Mold5529Mark Of The Witch5530With The Help Of The Devil5531Into The Endless Void5532Shadows Of Our Past Presence5533Arrival Of The Morningstar5534Demiurgic Fallacy5535Forbidden Spaces5536Halberd In The Night Glow5537Voices From The Catacombs5538I Am The Horned King5539Black Rays Of The Dying Sun5540Walkers Of Emperor5541Cursed To Die5542Devoid Of Life5543In The Cold Winter Of Nowhere5544A Journey Through The Hellrotten And Frostbitten5545Undying Light From A Star Long Dead5546Seven Deadly Sins And A Mortal Wound5547When Peace Produced Genocide5548Deathcharge5549Psalms Of Chaotic Darkness5550Cult Of The Dragon5551Massive Attack Against The Legion Of Christ5552The Conjuration Of The Southern Circle5553Gestatorial Chair Of Sathan Asmodeus5554Consanguineous Fury5555Shit Of Death5556Through The Eye Ov God5557Locust From The Abyss5558Under The Aegis Of Damnation5559Convict5560Inhumane Regiment5561Heretic Manifesto5562Trying To Conceive5563An Ill Body Seats My Sinking Sight5564Slay For Satan5565Quando Sanctus Liber Combustus Est5566Heroes Of Might And Magic5567Archaic Correspondence5568Gateways To My Hell5569The Arsonist Academy5570Heaven's Damnation5571A Tribute To The Real Knowledge5572Eradication5573I Piss On Your Moon, I Sodomize Your Stars5574Trinity Of The Dark Pentacle5575Cryptfucking Demonizers Of Holocaustic Wrath5576Black Sun Rises Over Mobius5577Ov Future Wars & Echoes From The Past5578Beast's Millenium Devours The World5579Pillaging The Monastery5580Cemetery5581Terror That Never Ends5582Black Winds Of The Eternal Blasphemy5583Sob As Baphometh Handles5584In Light In Dark In Hate5585Magnificent Spiritual Philosophy Of Darkness5586Absence Of Life5587Tranquility In Suicide5588Transylvanian Concubine5589Satan Give Me Strength5590Into The Depths Of Infernal Agony5591The Blackest Hymn Of God's Disgrace5592Heroes Die While Media Lie5593Clandestine Lust For Power5594Dark Spread Of The Lineage Of Tons5595Explicit Rawness5596As Legends Fade And Gods Die5597Summon The Goats5598Under The Light Of The Outcast Stars5599Firebringer5600Infernal Theodicy5601Bring Forth The Rotten Whore5602Forward The Spears5603Three Number Six5604The Opposition Leader Of Jehova's Kingdom5605Contamination, And Bitter Contempt For Life5606Cursed Cycle Of Ghastly Futility5607Children Of The Urn5608Gnosis Of The Void5609Burning Temples Of The Fake Gods5610Prime Mover5611The Fall Of Jehova's Throne5612Tears Of Blood5613Amalgamation Of The Opposites5614Tribute To The Legions5615Awakening In The New Age Of Hate5616Solomon's Gates5617Horrendous Displays Of Blasphemous Acts5618Vomit Of The Goat5619Burn The Idol5620Odyssey Through The Eternal Forest5621The End Of The World5622The Dream Found Only Through Eternal Sleep5623Bloody Path Of Goat5624Unconquerable5625Dark Flames5626In The Name Of All Who Suffered And Died5627Thus Reigns The Imperial Order Of Tartaros5628On This Day We Fight5629Eliminating The Abrahamic Disease5630The Clan Of Cannibals5631Thirsty For Christian Blood5632The Return Of The Evil Warrior5633Inflict The Pain5634Defender Of The Black Throne5635Triumph And Revenge5636The Arrival Of The Eternal Reign Of Evil5637Last Station On The Road To Death5638Baphometic Nuclear Sadoterrorism5639Angel's Disgrace5640Cruelty Of Draculea, Evil Domain5641Murderer Of Human Emotions5642Rite Of Ragnarok5643Your Possession Is Inevitable5644Set This World In Flames5645Under The Breath Of Satan5646Tyranny Through Honour5647Rejection, Shit, Repudiation, Death And Oblivion Of The Unfortunate Holy Spirit5648The Rise Of Satan's Artillery5649Flames Grow Higher5650Desecrating The Dominical5651Changing Seasons5652Absolute Beheading Of The False Prophet5653Annihilation, Eradication, Extermination5654Human Pathomorphism5655Written On A Cold Stone5656Never To Return5657Never To Be Soiled By The Sun5658Never To Be Found5659Never To Awake5660Never To Dawn5661Never To Be Free5662Never To Late5663Never To Be5664Never To Rise Again5665Never To Shine5666Never To Kneel5667Never To Betray5668Never To Your Own5669Never To Be Seen5670Never To Sleep5671Never To Exist5672Never To Die Again5673Never To Reveal5674Never To Surface5675Never To Be Forgotten5676Never To Be Led5677Never To Give In, Never To Back Down5678Never To Enter Gates Of Flesh5679Never To See The Light Of Day5680Never To Leave The Mountain Alive5681Never To Sit Or Stand Again5682Never To Retrcat On The Battles5683Schrödinger's Uterovaginal Pumpkin Penetration, Dismembered Or Not5684Passage To Eternity5685The Maze Of The Beast5686The Blasphemous Sinner Of Damnation Impurity5687Paramount Evil5688Messages Of The Apocalypse5689The Pestilent Plague5690Nefarious Path Of Desecration5691When The Colors Fade5692The War Of The Witches5693Necrosemen Of Impurity Genocide5694The Spear Of Longinus5695Sentenced To Hell5696Rain Upon The Impure5697The Gospel Of Hatred And Apotheosis Of Genocide5698In The Return Of Paganism...5699Invoking The Majestic Throne Of Satan5700Wolfblood Confrontation5701Mourning Palace5702Total Destruction & Complete Annihilation5703Ungodly Ride5704Demons To The Final War5705The Spreading Of Sadness5706Time Of Revenge5707Thy Resting Place Of Thee Children Of Satan5708Black Empire Descending5709Abysmal Thrones Of The Hidden Souls5710Befallen5711Korpen5712The Viper Is Born5713A Journey Towards The Cosmos5714Stairway To Despair5715Rejected To Perish Below5716Origin Of The Abyss5717Hideous Being5718In Absentia Lucis5719Black Snake Temple5720The Man Sentences Death Pacts5721Total Mayhem (On My Way To Hell)5722The Despair Of The Abyss5723Destrutive Feeling Of Negativism5724Bones Of The Coffin Meal5725Dwell Within The Mysterious Dark5726Hymn Of The Ancient Misanthropic Spirit Of The Forest5727The Madness Of Closed Sleeps5728From The Darkness, To The Hell5729The Battalion Of The Last Son Of The Dawn5730Demonkind5731Demonic Transfixion5732When Hate Burns The Skies5733Cult Of The Blackened Veil5734Wolves Of The Great Dark5735Instinct For Vengeance5736Tribute To The Imperial Militias5737Satan Goes To Heaven To Destroy The Kingdom Of God5738Testament Of An Empty Soul5739The Sorcerer's Writing5740Black Torment Of The Unholy War5741Slay The Messiah, Aberrated Nazarene5742In Cauda Venenum5743The Incapable Carrion5744Magnificent Creation Of The Black Cult5745War Against The Cross5746The Storms We Called5747Obscura Symphonia5748Man In A Leather Apron5749Extirpated Light5750Where Witches Dwell And Labyrinths Confuse5751Demoniac Troops Of Terror5752The Entrails Of The Abyss5753Cosmic Indifference5754Stab My Grave5755Creatures Of The Death Valley5756Don't Break The Oath5757Beneath The Necromancer's Moon5758Pagan Warhymns Of Satanic Haemomancy And Human Sacrifice5759Fuck Your Ideals And Your Damn Faith5760Infernal Militancy5761Misanthropic Nemesis Upon The Bloody Altar Of Ragnarok5762Unholy Genocide Eternal5763Satan's Fetus5764Purification Through Violence5765Marching In The Name Of Satan5766We Are At War!!!5767Perverse Ritualistic Terror5768One Year Of Winter Depression5769Then Came The Silence5770In Cold Blood5771Blacker Than Black5772The Empty Table Of My Wilderness5773Return To The Black Sabbat5774The Darkest Descent5775Fuck God In The Ass5776Den Vandrende Skygge5777Time Of War5778King Of Vikings5779The Last Glow Of Life5780Contemplating Death; On The Reverence Of Labor And Worship5781Diabolical War Rituals5782The Throne Of Blasphemy... Has Arrived!!!5783Enter The Hell Of The Mountain King5784Demon Feast5785The Cry For Darkness5786Inhuman Concerto5787Lord Of Destruction And Damnation5788Flow From The Womb Of Destruction5789River At Dash Scalding5790Winds Of Terror5791Fallen Lords And Kingdoms5792The Ancient Empire5793The Art Of Spiritual Purification5794Immortality Through Homicide5795Chaotic Revelations Of The Left Path5796Defending The Infernal Throne5797Lost On The Threshold5798Crossing The Fiery Path5799Apparitions Of The Obscene5800Bestial Armageddon Warfare5801The Nightwinds Carried Our Names5802Brotherhood Of The Four Serpents5803Unholy Sounds Of Forgotten Lands5804The New Age Of The Gate Runner5805To Strangle The Hero Of Heaven5806Ancient Profane March5807The Darkness Of Consciousness5808All The Churches Burned Down!!!5809Goat Fornicator Of Whores5810Music Of Haunted Inner Emotions5811Blood For Glory Of Satan5812No Retreat... No Surrender5813Creations Of Chaos5814Haunted Fields Of Tormented Spirits5815Pagan Wolves5816Im Schatten Des Hasses5817To Be Free You Must Deny The False God5818Arising From The Past5819Vengeance Through Thermonuclear Obliteration5820Theatre Of Deception5821The Book Ov Nameless Rituals5822Divine Abhorrent Consummation5823Arisen From The Ashes5824The Heavens Cry Black Tears5825Path Of The Black Sun5826Decadence Is A Virtue5827War Communion Of Perversion5828Through Woods And Fog5829Sleeping Giant5830Unholy Mighty Blood5831Eternal Fire In The Dark Forest5832Spear Of Destiny5833Hallucinative Minds5834Punish The Christian5835The Wicked Will Of Almighty Sathanas Shall Convert Through Perversity And Evil5836Decorations Of Pantheon5837In Memoriam, Ill Omen5838The Beasts Of The Apocalypse5839Kingslayer Fury5840As The Shadows Are Watching Me5841Exercising Terrible Disciplines5842Of Rituals And Sacrifices To Serve The Abyss5843A Trace Of The Past5844Sold For Four Souls And A Seed5845Scenes From The Apocalypse5846Atrocius Torment Of Extraterrestrial Majesty5847Ritual Skull5848They Come From The Bottom Of The Abyss5849Collectors Of The King5850Monument Of Despair5851Promote, Support And Glorify Hatred5852Threnody Of The Impaled5853Rites Of Endless Agony5854Behold.Total.Rejection5855Execution Of The Sadistic Goddess5856Genesis To Our Curse5857Mysteries Of Mother Earth5858Signposts To The Underground5859Bestial War Attack Upon The Cross5860Seeking Ecstacy Within The Torment Ov Forsaken Souls5861Thy Black Destiny5862Obliteration Rites5863Winds Of Sacrilium5864Infernal Blood Massacre5865Darkness And The Secrets Of Sorcery5866Decaying Heads Of The Holy5867Evil Prevails5868Irreversible Decay5869Dracula's Revenge5870For We... Who Are Consumed By The Darkness5871Disciple Of The Heinous Path5872Satan's Penis5873Satan Awaits At The Seven Gates5874The Left Hand Of Satan5875Claws And Fangs5876The Wolf Of Dark Moon5877Revenge From The North5878Dawn Of Triumph5879The Palace Of Fire... I Defend The Dark Throne5880I Am The Hellfire5881Twilight Of Sehemeah5882Black Throne Of Blood5883No God Where I Am5884The New Era Of Black Metal5885Behold The Temple Of Liars5886Path To Terror5887Cryptic Curses5888Strength, Sorrow & Darkness5889Obsessed By Cruelty5890Perpetual Nonexistence5891Eradication Of The Human Plague5892Sons Of Odin5893Our Visions Of A Holocaust To Be5894Nailing Shut The Sacrosanct Orifice5895The Incantation5896Spectrums Of Oblivion5897Chronicles Of Life And Death5898His Tempting Ritual5899Metaphysical Contradiction5900Chaosatanas5901Goat Blood Communion5902Yggdrasil I Flammor5903A Night Created By The Shadows5904Creature Of The Underground5905Further Down The Tunnel5906Annihilation Of The Wicked5907Destructive Ceremonies5908Knights Of The Northern Black Empire5909Unleashed Antichrist5910Sound Of Thule5911Satan Goes To Church5912Destroyers Of Worlds5913Thrones Of Suspiria5914Throne Ov Baalberit5915The Burning Deed Of Deceit5916Darkness Rape The Tranquil Shore Of Eternety5917Thy Darkened Shade5918Heart Of The Abyss5919In The Vortex Of Destructive Creations5920Demons Of My Childhood5921Tongues Of Dying Men5922The Tragic Dissonance In The Universe Which Man Inhabits5923Alive In Blasphemy, Chained In Violence5924Tragedy Of Caesar5925Hazardous Aggression5926Decayed Clef Of The Abyss5927Neo-Satanic Supremacy5928Legion Helvete5929God Of Infamy, Lies And Fear5930Summoning The Twisted Possessor5931Echos From The Grave5932The Death's Shadow5933Transplanting The Stragglers5934Ungol5935...On The Precipice Of The Ancient Abyss5936Infernus Resurgit Sathanas Vivit5937Armoured Apocalypse War5938Gladiator5939Massive Terrestrial Strike5940666 Megatons5941Acosmic Visions Of Tiamat5942In The End We Shall Meet Again5943Forest Cover5944Inexorable Human Cleansing5945Knights From Hell5946Total Soul Desecration5947Total Bankruptcy5948Devour Dreams Of The Mystic Mountain5949The Way Of Spirit5950Annunciation5951Morbid Forest5952Tyrannus Maximus5953Festering Carcass Covered With Rot5954Out From The Coffin...5955Lycanthropic Aspirations5956Riding The Demon5957We Are War5958Heralds Of Eternal Order5959The Funeral Of The Dead World5960Burning Scars Of Adoration5961To The Deepest Hell5962Rabid Death's Curse5963In The Candlelight5964Drakonian Paradigm5965Conquest By Darkness5966The Rebirth Of The Night And The Fog5967Crawling On The Vampire's Black Wings5968Into The Chamber Of Suffering5969Wind Of Wrath5970Devil's Rock n' Roll5971Riverbed Empire5972Tower Of The Black Wizard5973Ashen Banners5974Quietly, Undramatically5975Suffering Is The Coin Of The Realm5976Awakening Of Ancient Power5977Wretched Malediction5978Human Mistake5979The Four Arms Of Astaroth5980The Cult Of Satan And His Manifestations5981Cain's Murmur5982Satan's Subterranean Enthronement5983You Must Come With Us5984Take The Hand Ov Death5985Disharmonical Symphony Of Black Dimensions5986Preludium Of The Seven Seals5987Patriarch Of Slaughter5988...And Darkness Was Over The Surface Of The Deep5989Along The Path Of Darkness5990Until Death We Sing Thy Name5991Adgnosco Veteris Vestigia Flammae5992Blasphemovs VVar5993Lovers From Beyond The Grave5994The Crypt Injection5995Captive Of Darkness5996Triumphant Hate & Bloody Swords5997Pure As The Blood Covered Snow5998Order In Chaos5999My Blood Is On Your Hands6000Death Comes With The Winds...6001Who Worships Satan6002Obelisk Of Oblation6003Lust Ritual Under The Light Of The Full Moon6004Unleashing The Darkness Plague6005At The Dawn Of Human Extinction6006Decaying Existence6007Death To Peace Is Our Gospel6008Empire Of The Damned6009Escaping The Myth, Slaying The Shadow6010Throne Of The Desolator6011When Ravenbarn Calls6012We Are The Host For The Fallen Ones6013Wraiths Of The Serpent's Throne6014Cannibal Christ6015Apocatastasis Reversed6016Resonating Blasphemy6017Syndrome Of The End Approaching6018Cruci Affigere6019Ravens Hymns Foreshadows The End6020Visitation Of The Blessed Dead6021Marching To The Death6022Dragging The Pig's Head To Hell6023History Of The World's End6024In Darkness Brooding6025Inferre Bellum Christo6026Dark Corner Of The Mind6027Ghouls Chant6028Subversives For Lucifer6029The Threshold Of Perversion To Dogmatic Virtues6030Enemy Christ6031Deep Black Bloody Red6032Totgeburt6033Grave Offerings6034War, False God And Hate6035Beyond The Lines6036Testimony With Emissious Laconic Vast Emotions6037When Your Nightmares Come True6038...And A Storm Breaks Out!6039When The Old Ones Were Still Young6040Stormhymn Altarlust Perversion6041Theogony6042Immaculate Deception6043Exaltation Of The Infernal Cabal6044Supreme Demonical Providence6045Wrath Of The Mightiest One6046One Alone In Bloodstained Forest6047Doomed6048Christian's Way To Death6049...And There Was A War In Heaven6050The Pale Horse Descends Upon Winter6051Son Of No God6052A Faint Light At The End Of The World6053Wood Of Melancholy6054The Place Of Worship6055Consignatum Satanas Actum6056Wake Up In Pain6057The Death Of His Vicious Light6058Land Of Beasts And Courage6059Inspired By The Devil6060Lamb Of Disease6061Ornaments Of Clandestine Rituals6062Entrance To The Gardens Of Death6063Through Death We Ascend6064...And The Seventh His Soul Detesteth6065Drenched In Victorious Blood6066When The Churches Burn6067Dawn Of Enthrallment6068Necro Lust Invocation6069Those Who Walked In The Christian Sky6070Summoning Our Kingdom Of Darkness6071Black Moon Mother6072Living Forms Of Obscure Shades6073The Resurrection Of The Wandering Shadows6074An Oath Enshrined By Honour And Death6075Living In The Cold Under Dolorous Torment Abyss Of Souls6076Bastard Protestant Liars6077The Burning Noise Of Satanic Annihilation6078Sickle And Hammer6079Grave Of The Ancestors6080Our Revenge Will Be Cruel!6081Lords Of Illusion6082Land Of Destruction6083Anchor For My Burning Soul6084Grimorium Necrosis Magni6085From The Flames With Total Hatred6086Misanthropic Antichrist6087The Night Of Immolation6088Mutilation Of The Holy6089Necro Bestial Apocalypse6090The Magnificent Rebirth Of A Mighty Old Empire6091Algolagnic Rites6092Hymns Of Blod6093Nocturnal Abyss6094Helm Of The Dead6095Victorious Souls6096In Nomine6097And God Created Satan To Blame For His Mistakes6098The Dominant Material Origin6099Unholy Blasphemies From The Putrid Shores Of Lake Narracan6100The Lords Of Corruption6101Far From Salvation6102Personality Dysfunction6103Underneath The Thousand Years Gate6104Ideal Of A Miscreanty6105Controlling The Fear6106Extermination Followed By Cryptic Silence6107Onward To Victory6108Desolate Void Remains6109The Infernal Depths Of Hatred6110Kill The Forgiveness6111A Moment Of Clarity6112Malignant Plague Image Of Your Creator6113Huge Blackness6114The Mirror Of The Soul6115Rotten Icons6116The Plaque Of False Religion6117In The Name Of The Cross...6118Under The Paganic Winter Moon6119The Beast In The Flesh6120Hic Locus Est Ubi Mors Gaudet Succurrure Vitae6121Perpetual Hatred6122Angel Satan6123Iron, Blood & Blasphemy6124Orgia Daemonum, Fornicatio Angelorum6125Bleed Free6126The Reign Of Angels Ablaze6127Rat Feast6128Trollstorm6129Sermons Of Lies6130Recipere Ferum6131Death From Above6132Cognitive Dissonance6133Revelation 6666134Fall Of The Holy Sick6135Welcome To The Beginning Of The End6136Hunter Hunted6137Satanik Nuklear Disorder6138We Will Never Kneel Before The Crucified One6139Coffin Of Satanic Necrophilia6140Hanging Free6141Stick Rusty Hooks Into The Shabby Skull6142To Rule6143Crown Of Maggots6144Curse Of The Living Failures6145Antithesis6146Methods Of Resurrection Through Evisceration6147The Call Of The Ancestors6148A Constellation Of Holes6149Leave None Living6150Hellfire Manifest6151Beyond A Religious Purity6152Satan's Word6153Apokrifos6154Endless Infidelity6155Accuser Of Brethren6156At The Tomb Of Sanity6157The Flames Of The Gospel6158Holy Waters6159Curse Man's Blame6160Bellum Aeterna6161Imperus Magnus Luciferi6162Arcane Necrosis6163You Will Never Achieve Your Will6164Between The Angel And Moon6165Constructive Violence6166Declaration Of War6167Architecture Of Aggression6168The Birth Of A Carnival6169Spawn Of The Sacrilege6170Grotesque Warmachine6171Woods Of Eternal Darkness6172Dark And Eternal6173My Throne Covered In Your Flesh6174Triumph Of The Heretics6175In The Woods6176A Tale About Hatred And Total Enslavement6177The Final War Approaching6178March Of The Victorious6179Forever Undead6180Ancient Sorceries And Old Relics6181Ignis Dominus6182The Ascent To The Quintessence6183Eternal, Permanent, Unchanging Darkness6184Thy Will Be Done On Earth As Is Done In Hell6185Anger And Hatred6186Blessed From Below... Ad Sathanas Noctum6187Under The Sign Of Decadence6188Christian Blood Stains The Battlefield6189Dreadful Disease6190The Ancient Realm Cults6191The Final Battle Of The Fifth6192Of Moonlords And Sunwheel Warriors6193They Are Seven, Seven Are They6194Liberation Strike6195Scars From The Whip6196The Iron Spawn Of Wrath6197Fatal Fury Of Sky Fighters6198Granite Smile6199Heaven Has Sent Us A Sacrifice6200Sons Of A Sick Creation6201Blasphemy Of The Black Gods Of Eternal Fire6202Hell Mary Of Disgrace6203Anhedonia6204Blaspheming With Lucifer6205Beholding The Daughters Of Firmament6206The End Of The Christian Age6207Devoured By Fire6208Book Of Planetary Lies6209Art Of Ancient Seers6210Sights Of Suffering6211Mortal Dawn Of Lust6212Death, Perdition, Destruction And Pain6213Origin Of The Unruly Horde6214Hate Antipathy And Deathcvlt6215Bloodlust Symphony6216Basements Of Lust6217Infest And Desecrate6218A Night Of Goat Ritual And The Slaughteraxe6219Exhuming The Remains Of The Bastard6220In The Temple Of Misery6221Per Austrum Glorium6222Perpetuated Laceration6223As Night Conquers Day6224Creator God6225Fall Of Devotion, Wrath And Blasphemy6226Blood Splatter6227Malevolent Reverence6228Indoctrination Into The Cult Of Death6229Defiant Heathen Spirit6230Ancient Signs Of War6231The Beginning Of The Final Battle6232Condemned Forever6233Echoes Of Dreariness6234The Grim Reign Of Belzebu6235Cry In The Forest6236Silence And Obscurity6237Before Fucking Christ6238Awakening A New Era Of Darkness6239The Death Of Renunciation6240Supreme Guardian Of Hell6241Dirge Of Infinite Hatred6242In Allegiance With Self Wreckage6243Marching Towards Domination6244Hyper Cerebral Machine6245Darkness Warriors6246The Iron Bonehead6247Emanation Of Blackness6248Vile Darkness6249Sailing Unholy Villages, I Am The True Viking6250Condemned Land... The War Begins6251Totemic Anal Turbofucker6252Howling Gale From The Depths Of The Woods6253The Possession6254Nasciturus Coxit6255Immolate The Chapel6256Obligatory Relinquishment (Of The Ceremonial Dagger)6257Our Bloody Footprint On The Moon's Beam6258Decimate The Symbols Of Faith6259To Arm The Integrity6260Seven Deadly Sins6261Revenge For Betrayal6262Warlust & Witchcraft6263Lay Down Thy Burdens6264Dawn Of The Beast6265A Crow's Vision6266Att Omfamnas Av Mörkret6267Bleeding World6268Beggar Of Baphomet6269Dark Spirit Reunion6270Diabolus Eternus Sceptrum6271The First Born Of The Dead6272Peace In The Eye Of The Beholder6273Incantation Of The Loathsome6274Leading The Plague Of Yahweh To Its Grave...6275Tortured From The Darkness6276Procession Of The Beheaded Jehovah6277Eternity Of Hell & Torment6278Eve Of The Conquering6279...And The Pagan Fire Will Blaze6280The Fall Of The Holy City6281Stigmata6282The Ritual Of Forgotten Shadows6283Flame Of Fiery Tendrils6284Adorned With Horns And Stench6285My Powerful And Pagan Lord6286Parts From The Past Revived6287Journey To Eternity6288Perception Kills6289Origin Philosophy Of The Black Prophet6290Black Sunday6291Abominations6292Satanic Whirlwind6293Together We'll Destroy The World6294Treason Of The Dead6295Obscure Vision6296The Return Of The Slaughter6297Garden Of Asphodel6298Palace Of Winds, Waker Of Storms6299Infernum In Terra6300Marks Of Apocalypse6301Through The Burning Fires Ov Hell6302Holy Lust6303Nihilistic Dreams Of An Empty Forest6304From My Cold Dead Hands6305Destroying The Holy... Invoking The Blasphemous6306Bizarre Angel6307Bizarre World6308Bizarre Latex6309Bizarre Diagnosis6310Bizarre Lizard6311Bizarre Bondage6312Bizarre Embalming6313Bizarre Necromancy6314Bizarre Circus6315Bizarre Killer6316Bizarre Surroundings6317Bizarre Soul6318Bizarre Ritual6319Bizarre Carnival6320Bizarre Slayings6321Bizarre Bloodbath6322Bizarre Experience6323Bizarre Culprit6324Bizarre Blaze6325Bizarre Infection6326Bizarre Creature6327Bizarre Occurrence6328Bizarre Dreams6329Bizarre Fullmoon6330Bizarre Bazaar6331Bizarre Sacrifice6332Bizarre Perversion6333Bizarre Insight6334Bizarre Malevolence6335Bizarre Mutilation6336Bizarre Noise6337Bizarre Necrophilia6338Bizarre Moonlight6339Bizarre Creation6340Bizarre Industry6341Bizarre Croak6342Bizarre Orgasm6343Bizarre Waltz6344Bizarre Depression6345Bizarre Employer6346Bizarre Homunculus6347Bizarre Abscess6348Bizarre Tumors6349Bizarre Scatophily6350Bizarre Execution6351Bizarre Perspective6352Bizarre Syndrome6353Bizarre Pestilence6354Bizarre Worms6355Bizarre Dismemberment6356Bizarre Human Sacrifices6357Bizarre Embryophagical Parasites6358Bizarre Syphilic Party6359Bizarre Ejaculation6360Bizarre Occult Ritual6361Bizarre Grindcore Love Triangle6362Bizarre Cosmic Industries6363Bizarre Leprous Malformed Creation6364Bizarre Thoughts Horrificly Conceived6365Bizarre Parasitic Resuscitation6366Bizarre Vaginal Sex Dream6367Bizarre Sex Machine6368Bizarre Body Modification6369Bizarre Vaginal Regurgitation6370Bizarre Psychedelic Forest6371Bizarre Island Massacre6372Bizarre Experiment Of Gynecrology6373Bizarre Ice Cream Break6374Bizarre Reality Of Bestiality6375Bizarre Sexual Hallucinations6376Bizarre Rectal Explotion6377Bizarre Cannibal Necromania6378Bizarre Temptations Of Nazarene6379Bizarre Organ Defilement6380Bizarre Blood And Exhumations6381Bizarre Frozen Planet6382Bizarre Hacking Rituals6383Bizarre Surgery6384Bizarre Carnal Illusions6385Bizarre Cannibalistic Lust6386Bizarre Antiputrefaction Embalming6387Bizarre And Supreme Deliriums6388Bizarre Human Formation6389Bizarre Audacious Fantasy6390Bizarre Troll Technology6391Bizarre Rape6392Bizarre Chaos Triangle6393Bizarre Torture Experiment6394Bizarre Mental Disorder6395Bizarre Sounds Of The Nocturnal6396Bizarre Museum Of Eviscerated Whores6397Bizarre Bruxism In Total Annihilation6398Bizarre Cases Of Medical Malpractice6399Bizarre Black Perversions6400Bizarre Acts Of Gruesome Torture6401Bizarre Born After The Filthiest Night6402Bizarre Mutilation Of The Genital Organ6403Bizarre Mayhems And Nauseating Traumas Left By Morbid Imprisionment In Morbid Vomitation's Inferno With Rotting Living Flesh In C Major6404Transilvanian Winds6405Transilvanian Munchies6406Transilvanian Twilight6407Transilvanian Plague6408Transilvanian Dreams6409Transilvanian Nights6410Transilvanian Darkness6411Transilvanian Love6412Transilvanian Impaler6413Transilvanian Fullmoon6414Transilvanian Thunder6415Transilvanian Fungus6416Transilvanian Transvestite6417Transilvanian Sunrise6418Transilvanian Frost6419Transilvanian Terror6420Transilvanian Problem6421Transilvanian Fullmoon Vampirism6422Transilvanian Old Times6423Transilvanian Fog Encircles The Blood Red Fullmoon Over A Distant Tower6424Blasphemy Reigns In Thy Night6425Resonating Blasphemy6426Generation Blasphemy6427Oceanic Blasphemy6428Blasphemy Night6429Blasphemy Temple6430Blasphemy Machination6431Blasphemy Embodied6432Blasphemy Souls6433Gorefucked Blasphemy6434Eternal Blasphemy6435Into Blasphemy6436Bleeding Blasphemy6437Biohacking Blasphemy6438Infernal Blasphemy6439Blasphemy Storm6440Blasphemy Ritual6441Breathing Blasphemy6442Angelrape Blasphemy6443Duck Blasphemy6444Oriental Blasphemy6445Blasphemy...6446Blasphemy Priest6447Nocturnal Blasphemy6448Last Blasphemy6449Total Blasphemy6450Satanic Blasphemy6451Eternal Blasphemy6452War Blasphemy6453Perpetual Blasphemy6454Chaos Blasphemy6455Seventh Blasphemy6456Manifest Blasphemy6457Hail Blasphemy6458Everlasting Blasphemy6459Winter Blasphemy6460Blood Blasphemy6461Suicide Blasphemy6462Ironic Blasphemy6463Wild Blasphemy6464Blasphemy Law6465Divine Blasphemy6466Pure Blasphemy6467Blasphemy Sign6468Embedding Blasphemy6469Demonic Blasphemy6470Perverted Blasphemy6471Massacrifice Blasphemy6472Blasphemy Occultism6473Nethermost Blasphemy6474Agony Blasphemy6475Poetic Blasphemy6476Blasphemy Embodiment6477Necrophilic Blasphemy6478Blasphemy Command6479Transylvanian Blasphemy6480Sepulchral Blasphemy6481Ceremonial Blasphemy6482Violent Blasphemy6483Procreating Blasphemy6484Unending Blasphemy6485Blasphemy Desecration6486Immortal Blasphemy6487Sorcery Blasphemy6488Venomous Blasphemy6489Your Blasphemy6490The Blasphemy6491Human Blasphemy6492Consecrated Blasphemy6493Christ Blasphemy6494Blasphemy Day6495Blasphemy Articles6496Redesigning Blasphemy6497Father Blasphemy6498Grotesque Blasphemy6499Nuclear Blasphemy6500Merciless Blasphemy6501Repugnant Blasphemy6502Machinegun Blasphemy6503Blasphemy Invocation6504Euphoric Blasphemy6505Proclaims Blasphemy6506Morbid Blasphemy6507Magnificient Blasphemy6508Blasphemy Enthralled6509Fleshcrawling Blasphemy6510Goatspell Blasphemy6511Savage Blasphemy6512Primal Blasphemy6513Aquatic Blasphemy6514Cemetery Blasphemy6515Bathtub Blasphemy6516Urban Blasphemy6517Casual Blasphemy6518Blasphemy Resurrected6519Upcoming Blasphemy6520Whisky Blasphemy6521Cosmic Blasphemy6522Outright Blasphemy6523Artistic Blasphemy6524Liquid Blasphemy6525Crushing Blasphemy6526Violet Blasphemy6527Spread Blasphemy6528Paradoxal Blasphemy6529Digital Blasphemy6530Jubilee Blasphemy6531Chainsaw Blasphemy6532Distorted Blasphemy6533Puritanical Blasphemy6534Thirteenth Blasphemy6535Infectious Blasphemy6536Ancient Blasphemy6537Great Blasphemy6538Ageless Blasphemy6539Blackhorned Blasphemy6540Blasphemy Metal And Lust6541Renewed Vow Of Blasphemy6542Fraternal Order Of Blasphemy6543Triumph In Blasphemy6544Chronic Corporeal Blasphemy6545Thy Follies And Blasphemy6546Troops Of Blasphemy6547Misanthropic Nights Of Blasphemy6548Feasting On Their Blasphemy6549Infancy Of Blasphemy6550Theatric World Of Blasphemy6551Ziggurat Of Blasphemy6552Blasphemy Blessing Of Fire6553Blasphemy To Regularity6554Evil Blasphemy Has Unchained6555Knowledge Dwells In Blasphemy6556Black Speed Blasphemy6557Blasphemy Dream Landscape6558Blasphemy And Suicide6559Ascending Heresies In Blasphemy6560Forever Crowned In Blasphemy6561Impure Souls Of Blasphemy6562Blasphemy Of The Secret6563Radiance Of Putrid Blasphemy6564Bestial Warfucked Blasphemy6565Blasphemy Unto The Blasphemers6566My Holy Blasphemy6567Embraced By Blasphemy6568Western Abominations Of Blasphemy6569Iron Flames Of Blasphemy6570Possesed Through Nightmarish Blasphemy6571Veneration Of Carnal Blasphemy6572Blasphemy From Serpent Tongues6573Impending Solstice Of Blasphemy6574Apogee Of Blasphemy6575Black Sexual Blasphemy6576Propagation Of The Blasphemy6577Blasphemy Through Dismal Actions6578Chaos Blood Blasphemy Rituals6579Coronation In Pure Blasphemy6580Abyss Of Satanic Blasphemy6581Ingress Into Blasphemy6582Eternal Blasphemy Of Hatred6583Hymn To Unholy Blasphemy6584Blasphemy Of The Flesh6585Black Thrashing Blasphemy6586Intoxicated From Blasphemy6587Blasphemy Demoniac Seed6588Runes Of Cosmic Blasphemy6589Thirst For Blasphemy6590The Seventh Horned Blasphemy6591666 Ways To Blasphemy6592Blasphemy In Hallows Eve6593Goat Feeded By Blasphemy6594Apocalyptic Rebirth Through Blasphemy6595Tremolous Adoration In Blasphemy6596The Malice Of Blasphemy6597Satanic Wings Of Blasphemy6598Nun Piss Blasphemy Crucifix6599Blasphemy And Witchery6600Crenellation Tyrannic In Blasphemy6601Desperation Resurrected In Blasphemy6602Morbid Messiah Of Blasphemy6603Possesed Through Nightmarish Blasphemy6604Slave Whipping Blasphemy6605Sexual Blasphemy Purification6606Live In Blasphemy6607The Source Of Blasphemy6608Warhammer Of Blasphemy6609Resurgence Of Blasphemy6610Into The Blasphemy Ritual6611Ceremonial Oath Of Blasphemy6612Gazing Into Eternal Blasphemy6613Thy Blackened Blasphemy6614Death And Blasphemy Unleashed6615I Believe In Blasphemy6616Blasphemy Of The Undead6617Blasphemy Under The Black Sun6618Inflicting Blasphemy Upon The Heavens6619A Cataclysmic Force Driving Blasphemy6620Sailing The Seas Of Blasphemy6621Below The Horns Of Blasphemy6622Ravaging In Sin And Blasphemy6623Noise Of Terror And Blasphemy6624Under The Kingdom Of Blasphemy6625The First Steps Into Blasphemy6626Blasphemy Of The Failed Accuser6627Conquest The Throne Of Blasphemy6628Cleansing The Decay With Blasphemy6629Sedition, Sorcery And Blasphemy6630The Mouths That Spew Blasphemy6631Through Christs Rape And Blasphemy6632The Ultimate Blasphemy To The Christian God6633Sodomized Virgin In The Temple Of Total Blasphemy6634Head Of The Infidel, Head Of Blasphemy6635Empress From The Realms Of Blasphemy6636Heaven Cast Darkness6637From Darkness To Darkness6638Darkness Becomes Darkness6639Darkness, Endless Darkness6640Darkness Driving Darkness6641Darkness Approaches6642Impenetrable Darkness6643Darkness Machine6644Darkness Forever6645Darkness Mystery6646Darkness Awaits6647Beyond Darkness6648Outrun Darkness6649Infallible Darkness6650Rebellious Darkness6651Total Darkness6652Blinding Darkness6653Abject Darkness6654Intoxicating Darkness6655Conquering Darkness6656Perpetual Darkness6657Near Darkness6658Absolute Darkness6659Darkness Fails6660Darkness Embrace6661Darkness Times6662Darkness Confined6663Darkness Within6664Inextricable Darkness6665Create Darkness6666Crimson Chime (Outro) + + diff --git a/tests/fixtures/manifest.json b/tests/fixtures/manifest.json new file mode 100644 index 0000000..2fe1a01 --- /dev/null +++ b/tests/fixtures/manifest.json @@ -0,0 +1,31451 @@ +{ + "generated_at": "2026-02-07T09:13:01.899263+00:00", + "config": { + "input_dir": "/Users/philip/Projects/discogs-xml2db/tmp", + "output_dir": "/Users/philip/Projects/discogs-xml2db/tests/fixtures2", + "sample_size": 25, + "complexity": "highest", + "seed": 1, + "mixed_ratio": 0.7, + "availability_scan": "auto", + "availability_max_mb": 256, + "availability_used": false, + "input_files": { + "artists": "/Users/philip/Projects/discogs-xml2db/tmp/discogs_20260201_artists.xml.gz", + "labels": "/Users/philip/Projects/discogs-xml2db/tmp/discogs_20260201_labels.xml.gz", + "masters": "/Users/philip/Projects/discogs-xml2db/tmp/discogs_20260201_masters.xml.gz", + "releases": "/Users/philip/Projects/discogs-xml2db/tmp/discogs_20260201_releases.xml.gz" + } + }, + "counts": { + "seed_releases": 25, + "releases": 25, + "masters": 4, + "artists": 30527, + "labels": 147 + }, + "ids": { + "seed_releases": [ + 533631, + 1028981, + 1946857, + 4703489, + 5355366, + 7910952, + 7922727, + 8595736, + 8890864, + 8988295, + 9333727, + 11132045, + 12035854, + 13962894, + 14533478, + 14905802, + 14934623, + 14934741, + 16790811, + 16804773, + 20060518, + 24981379, + 27248577, + 29206864, + 29948101 + ], + "releases": [ + 533631, + 1028981, + 1946857, + 4703489, + 5355366, + 7910952, + 7922727, + 8595736, + 8890864, + 8988295, + 9333727, + 11132045, + 12035854, + 13962894, + 14533478, + 14905802, + 14934623, + 14934741, + 16790811, + 16804773, + 20060518, + 24981379, + 27248577, + 29206864, + 29948101 + ], + "masters": [ + 392818, + 1168624, + 2280259, + 3319987 + ], + "artists": [ + 71, + 415, + 1649, + 1680, + 1681, + 1686, + 1687, + 2029, + 2265, + 2433, + 2782, + 3101, + 3233, + 3386, + 3468, + 3631, + 3865, + 3868, + 4013, + 4066, + 4107, + 4205, + 4223, + 4443, + 4629, + 4924, + 5375, + 5522, + 5531, + 5538, + 5539, + 5683, + 5762, + 5775, + 5840, + 5951, + 5969, + 5987, + 6070, + 6123, + 6197, + 6199, + 6216, + 7027, + 7153, + 7527, + 7600, + 8118, + 8284, + 8337, + 8339, + 8346, + 8349, + 8352, + 8358, + 8718, + 9177, + 9181, + 9183, + 9746, + 10096, + 10183, + 10374, + 10589, + 10755, + 10866, + 11001, + 11009, + 11146, + 11148, + 11333, + 11433, + 11438, + 11574, + 11604, + 11680, + 11681, + 11696, + 11712, + 11749, + 11803, + 11804, + 11806, + 11835, + 12070, + 12200, + 12237, + 12251, + 12261, + 12281, + 12628, + 12747, + 12750, + 12764, + 12803, + 13665, + 13690, + 13796, + 13801, + 13803, + 13961, + 14007, + 14033, + 14630, + 15223, + 15346, + 15348, + 15363, + 15364, + 15365, + 15366, + 15443, + 15502, + 15506, + 15510, + 15512, + 15900, + 15914, + 16061, + 16127, + 16293, + 16318, + 16329, + 16375, + 16614, + 17209, + 17254, + 17260, + 17402, + 17428, + 17546, + 17589, + 17630, + 18360, + 18400, + 18435, + 18500, + 18811, + 18956, + 18978, + 19331, + 19367, + 19441, + 19442, + 19516, + 19599, + 19608, + 20104, + 20164, + 20165, + 20170, + 20172, + 20176, + 20179, + 20293, + 20445, + 20485, + 20691, + 20840, + 20907, + 20922, + 20956, + 20958, + 20959, + 21059, + 21060, + 21468, + 21469, + 21470, + 21472, + 21473, + 21480, + 21625, + 21652, + 21945, + 22853, + 22946, + 23165, + 23584, + 23755, + 23825, + 24084, + 24085, + 25284, + 25316, + 25320, + 25830, + 25831, + 25832, + 26657, + 26955, + 27518, + 27519, + 28005, + 28091, + 28275, + 28497, + 29105, + 29376, + 29602, + 29609, + 29956, + 29958, + 29964, + 29966, + 29968, + 29969, + 29970, + 29972, + 29973, + 29974, + 29976, + 29977, + 29979, + 29992, + 30184, + 30486, + 30552, + 30721, + 31566, + 31573, + 31575, + 31615, + 31617, + 31827, + 32180, + 32190, + 32216, + 32426, + 32482, + 32499, + 32511, + 32904, + 32919, + 32920, + 32921, + 33338, + 33585, + 33587, + 33589, + 33759, + 33991, + 34189, + 34252, + 34671, + 34674, + 35301, + 35368, + 36046, + 36377, + 36378, + 36865, + 36979, + 37429, + 37729, + 37731, + 37732, + 37733, + 37735, + 37737, + 38194, + 38201, + 38207, + 38222, + 38223, + 38224, + 38225, + 38228, + 38229, + 38231, + 38232, + 38309, + 38588, + 38910, + 38943, + 39115, + 39204, + 39260, + 39336, + 39507, + 39574, + 39575, + 39692, + 39874, + 39987, + 40042, + 40235, + 40287, + 40892, + 41070, + 41107, + 41320, + 41401, + 41595, + 41715, + 42306, + 42458, + 42776, + 43567, + 43570, + 43786, + 44128, + 44131, + 44453, + 45102, + 45107, + 45593, + 45687, + 45768, + 45876, + 46163, + 46481, + 47101, + 47582, + 47658, + 47785, + 48090, + 48375, + 48526, + 48825, + 49155, + 49598, + 49605, + 49624, + 50266, + 50267, + 51567, + 51722, + 51855, + 52021, + 52022, + 52220, + 52312, + 52753, + 52833, + 53331, + 53801, + 55288, + 55398, + 55683, + 55738, + 55745, + 56057, + 56862, + 57000, + 57103, + 57620, + 57626, + 58335, + 58337, + 58359, + 58397, + 58549, + 58645, + 59246, + 59251, + 59283, + 59287, + 59288, + 59402, + 59405, + 59407, + 59655, + 59659, + 59792, + 60252, + 60453, + 60454, + 60929, + 61070, + 61543, + 61585, + 61587, + 61939, + 62463, + 62464, + 62818, + 62859, + 62916, + 63084, + 63207, + 63211, + 63220, + 63230, + 63234, + 63235, + 63302, + 63316, + 63636, + 63638, + 63639, + 63643, + 63650, + 63651, + 63658, + 63669, + 63680, + 63938, + 64206, + 64277, + 64312, + 64569, + 64652, + 64694, + 64798, + 65744, + 65746, + 65754, + 65755, + 65792, + 65795, + 65796, + 65807, + 66418, + 66733, + 66882, + 67035, + 67218, + 68152, + 68325, + 68613, + 68702, + 68870, + 68994, + 68995, + 69422, + 69653, + 69873, + 70526, + 70590, + 70829, + 71037, + 71255, + 72308, + 72440, + 72480, + 72579, + 72792, + 73609, + 73826, + 74105, + 74212, + 75389, + 75559, + 75617, + 76009, + 76028, + 76040, + 76089, + 77991, + 78406, + 78689, + 78900, + 78954, + 79091, + 79422, + 79662, + 79742, + 79751, + 80613, + 80636, + 80847, + 80950, + 81404, + 81522, + 81523, + 81857, + 82545, + 82902, + 83276, + 83277, + 83943, + 84213, + 84236, + 84239, + 84622, + 84800, + 84839, + 85473, + 85474, + 85524, + 85730, + 86094, + 86339, + 87519, + 88083, + 88401, + 88802, + 89628, + 89693, + 89988, + 90106, + 90119, + 90120, + 90492, + 90517, + 90539, + 90595, + 92051, + 92220, + 92243, + 92431, + 92433, + 92913, + 93460, + 93945, + 94557, + 94844, + 94855, + 95088, + 95204, + 95459, + 95536, + 95537, + 95539, + 95540, + 95541, + 95542, + 95543, + 95544, + 95546, + 95564, + 96123, + 96442, + 96443, + 97033, + 97532, + 97545, + 97882, + 98380, + 98383, + 98397, + 98436, + 98582, + 98585, + 98815, + 100317, + 100584, + 100591, + 100702, + 100940, + 101822, + 101853, + 101918, + 102078, + 102506, + 102507, + 102951, + 103107, + 103441, + 103451, + 104130, + 104175, + 104447, + 104673, + 104676, + 105162, + 105296, + 105805, + 106184, + 106474, + 106584, + 106819, + 106823, + 107709, + 107783, + 107784, + 107890, + 108091, + 108439, + 108565, + 108566, + 108568, + 110567, + 110987, + 111582, + 111645, + 111761, + 112558, + 112613, + 112780, + 112806, + 113146, + 113330, + 113663, + 113916, + 113945, + 114050, + 114457, + 114560, + 115089, + 115461, + 115463, + 115466, + 115467, + 115469, + 115677, + 116337, + 117375, + 117689, + 117761, + 118454, + 118939, + 119084, + 119795, + 120167, + 120312, + 120620, + 120623, + 121112, + 121471, + 121767, + 122384, + 122763, + 123159, + 123414, + 123766, + 124568, + 125461, + 127383, + 127646, + 128044, + 128046, + 128396, + 128576, + 129038, + 129089, + 129347, + 129365, + 129371, + 129731, + 129797, + 129798, + 129805, + 130243, + 130593, + 130735, + 130985, + 131309, + 131320, + 131441, + 131666, + 131879, + 133972, + 134065, + 134284, + 134700, + 134727, + 135238, + 135244, + 135396, + 135849, + 135870, + 135871, + 135872, + 135873, + 135874, + 135885, + 135899, + 135930, + 135931, + 135946, + 136123, + 136133, + 136140, + 136998, + 137418, + 138392, + 138927, + 139019, + 139508, + 139904, + 139984, + 140590, + 140631, + 140632, + 140814, + 141047, + 141104, + 141326, + 142053, + 142502, + 142834, + 142835, + 144310, + 144440, + 145072, + 145255, + 145256, + 145257, + 145262, + 145263, + 145264, + 145273, + 145288, + 146655, + 148227, + 148475, + 149051, + 149254, + 149255, + 149840, + 150019, + 150114, + 150182, + 150409, + 150699, + 151379, + 151384, + 151396, + 151481, + 151486, + 151641, + 151793, + 151851, + 151938, + 152346, + 152402, + 152564, + 152684, + 152707, + 152999, + 153472, + 153544, + 153599, + 154174, + 154207, + 154285, + 154287, + 154315, + 154498, + 155038, + 155967, + 156019, + 156406, + 156712, + 157090, + 157416, + 157707, + 157873, + 159831, + 159967, + 160523, + 160600, + 160829, + 160872, + 161234, + 161696, + 162564, + 163004, + 163085, + 164008, + 164251, + 164253, + 164262, + 164263, + 164277, + 164571, + 164574, + 164578, + 164587, + 165653, + 165824, + 166629, + 166630, + 166685, + 167055, + 167516, + 168453, + 168594, + 169016, + 169199, + 169336, + 169899, + 170370, + 170444, + 170598, + 170609, + 170755, + 170760, + 170933, + 171523, + 171698, + 172007, + 173078, + 173403, + 173710, + 174248, + 175006, + 175020, + 176035, + 176185, + 178788, + 179055, + 179056, + 179389, + 180025, + 180026, + 180027, + 180119, + 180497, + 180619, + 180660, + 180712, + 180713, + 180926, + 180955, + 181108, + 182127, + 182929, + 183212, + 183569, + 183908, + 184451, + 185751, + 185752, + 186252, + 186453, + 186530, + 186773, + 186883, + 187048, + 187444, + 188768, + 188984, + 189718, + 190370, + 190767, + 191327, + 191902, + 192322, + 192325, + 192327, + 192437, + 193583, + 195397, + 195791, + 195969, + 196875, + 196880, + 196909, + 196910, + 197076, + 198502, + 200218, + 200545, + 200764, + 200766, + 200767, + 200772, + 200778, + 200781, + 200784, + 200815, + 201307, + 201472, + 201571, + 201757, + 202092, + 202093, + 202114, + 202611, + 203065, + 204651, + 205062, + 205079, + 206008, + 206018, + 206065, + 206280, + 206281, + 207300, + 207355, + 207945, + 208237, + 208245, + 208458, + 208684, + 208695, + 209250, + 209430, + 209614, + 210917, + 211634, + 211860, + 211957, + 212299, + 212300, + 212335, + 212337, + 212726, + 212786, + 212813, + 214233, + 214409, + 214478, + 214644, + 214973, + 215033, + 215254, + 216138, + 216140, + 216141, + 216294, + 216498, + 217232, + 217242, + 218045, + 218046, + 218417, + 218733, + 218974, + 219565, + 219999, + 220594, + 220728, + 220884, + 220886, + 221282, + 221852, + 222145, + 222583, + 223026, + 223029, + 223030, + 223957, + 224329, + 224600, + 225092, + 225437, + 225484, + 225500, + 225777, + 225965, + 226015, + 226192, + 226335, + 226389, + 226431, + 226461, + 226585, + 227276, + 227875, + 228061, + 228852, + 228917, + 229174, + 229195, + 229467, + 229498, + 229547, + 229566, + 229639, + 229663, + 229994, + 230140, + 230469, + 231641, + 231695, + 232793, + 232913, + 233533, + 233897, + 233933, + 233984, + 234399, + 234407, + 235034, + 235322, + 235382, + 235794, + 235995, + 236705, + 236968, + 237823, + 237977, + 237979, + 238213, + 238626, + 238675, + 238690, + 239071, + 239236, + 239399, + 239499, + 239643, + 239937, + 240349, + 240917, + 240948, + 240986, + 241365, + 241547, + 242317, + 243192, + 243708, + 243896, + 244043, + 244728, + 244729, + 245285, + 245741, + 245767, + 247066, + 247567, + 248847, + 249065, + 249946, + 251216, + 251333, + 251334, + 251511, + 251578, + 251579, + 251605, + 251606, + 251622, + 251623, + 251688, + 251690, + 251750, + 251769, + 251771, + 251776, + 251777, + 251778, + 251779, + 251780, + 251781, + 251782, + 251783, + 251786, + 251873, + 251875, + 251878, + 252016, + 252017, + 252029, + 252034, + 252127, + 252308, + 252310, + 252311, + 252391, + 252539, + 252605, + 252606, + 252608, + 252609, + 252611, + 252612, + 252672, + 252742, + 252748, + 252786, + 252820, + 252821, + 252838, + 252872, + 252967, + 252985, + 252989, + 252990, + 252992, + 252993, + 252996, + 252998, + 252999, + 253001, + 253003, + 253011, + 253033, + 253047, + 253051, + 253061, + 253064, + 253065, + 253066, + 253112, + 253113, + 253115, + 253116, + 253117, + 253118, + 253120, + 253122, + 253123, + 253125, + 253126, + 253133, + 253144, + 253204, + 253205, + 253206, + 253245, + 253347, + 253353, + 253358, + 253367, + 253375, + 253385, + 253419, + 253443, + 253444, + 253445, + 253462, + 253474, + 253475, + 253476, + 253477, + 253478, + 253481, + 253482, + 253632, + 253633, + 253641, + 253649, + 253774, + 253777, + 253780, + 253853, + 253855, + 253858, + 253861, + 253934, + 253939, + 253949, + 254065, + 254073, + 254108, + 254110, + 254115, + 254128, + 254176, + 254394, + 254400, + 254644, + 254645, + 254647, + 254648, + 254649, + 254650, + 254651, + 254652, + 254654, + 254655, + 254656, + 254657, + 254658, + 254768, + 254769, + 254885, + 254886, + 254887, + 254891, + 254892, + 254893, + 254894, + 254895, + 254896, + 254897, + 254899, + 254903, + 254904, + 254906, + 254907, + 254908, + 254909, + 254945, + 254958, + 254959, + 254975, + 254976, + 254990, + 255076, + 255109, + 255111, + 255112, + 255113, + 255116, + 255117, + 255129, + 255137, + 255151, + 255152, + 255156, + 255160, + 255161, + 255164, + 255183, + 255263, + 255280, + 255312, + 255313, + 255468, + 255471, + 255556, + 255559, + 255560, + 255562, + 255563, + 255564, + 255646, + 255649, + 255650, + 255675, + 255678, + 255709, + 255752, + 255767, + 255800, + 255801, + 255804, + 255838, + 255882, + 255945, + 255947, + 255948, + 255979, + 256012, + 256016, + 256053, + 256065, + 256091, + 256167, + 256168, + 256274, + 256554, + 256556, + 256557, + 256558, + 256580, + 256581, + 256727, + 257008, + 257025, + 257028, + 257114, + 257115, + 257250, + 257251, + 257307, + 257353, + 257394, + 257414, + 257421, + 257423, + 257745, + 257871, + 257938, + 258007, + 258009, + 258087, + 258088, + 258089, + 258099, + 258121, + 258130, + 258298, + 258422, + 258423, + 258433, + 258458, + 258459, + 258460, + 258461, + 258462, + 258463, + 258464, + 258465, + 258466, + 258467, + 258469, + 258518, + 258622, + 258645, + 258682, + 258684, + 258685, + 258686, + 258687, + 258688, + 258689, + 258690, + 258692, + 258693, + 258694, + 258696, + 258697, + 258698, + 258699, + 258700, + 258701, + 258702, + 258703, + 258705, + 258706, + 258707, + 258709, + 258710, + 258748, + 258800, + 258903, + 258942, + 259074, + 259075, + 259076, + 259078, + 259079, + 259080, + 259081, + 259082, + 259083, + 259086, + 259087, + 259088, + 259089, + 259090, + 259091, + 259092, + 259312, + 259321, + 259388, + 259472, + 259778, + 259802, + 260458, + 260571, + 260572, + 260584, + 260718, + 260720, + 260721, + 260723, + 260724, + 260727, + 260730, + 260744, + 260757, + 260888, + 260911, + 260912, + 261137, + 261196, + 261286, + 261287, + 261288, + 261289, + 261293, + 261295, + 261339, + 261340, + 261400, + 261451, + 261732, + 261836, + 261974, + 261976, + 262127, + 262128, + 262129, + 262140, + 262141, + 262152, + 262160, + 262293, + 262294, + 262358, + 262505, + 262585, + 262586, + 262587, + 262588, + 262711, + 262712, + 262714, + 262815, + 262816, + 263096, + 263097, + 263098, + 263305, + 263306, + 263319, + 263375, + 263441, + 263472, + 263473, + 263615, + 263731, + 263794, + 263795, + 263796, + 263953, + 264026, + 264105, + 264106, + 264111, + 264203, + 264223, + 264406, + 264428, + 264494, + 264553, + 264563, + 264565, + 264568, + 264572, + 264600, + 264619, + 264620, + 264621, + 264622, + 264626, + 264755, + 264868, + 264870, + 264871, + 264872, + 264990, + 264992, + 265284, + 265354, + 265380, + 265381, + 265382, + 265383, + 265384, + 265385, + 265386, + 265387, + 265388, + 265389, + 265390, + 265391, + 265421, + 265422, + 265423, + 265424, + 265425, + 265426, + 265566, + 265629, + 265631, + 265633, + 265634, + 265635, + 265637, + 265639, + 265640, + 265641, + 265680, + 265682, + 265683, + 266352, + 266392, + 266403, + 266406, + 266425, + 266488, + 266712, + 267030, + 267088, + 267089, + 267091, + 267134, + 267184, + 267185, + 267186, + 267187, + 267225, + 267537, + 267556, + 267651, + 267669, + 267675, + 267708, + 267717, + 267764, + 267765, + 267766, + 267767, + 267768, + 267854, + 267899, + 268095, + 268137, + 268168, + 268217, + 268271, + 268272, + 268297, + 268336, + 268516, + 268548, + 268553, + 268577, + 268583, + 268733, + 268983, + 268984, + 268985, + 268986, + 268989, + 269081, + 269357, + 269594, + 269597, + 269598, + 269601, + 269603, + 269657, + 269663, + 269793, + 269802, + 269804, + 269831, + 269868, + 269869, + 269871, + 270023, + 270025, + 270026, + 270028, + 270029, + 270030, + 270054, + 270225, + 270237, + 270238, + 270603, + 270608, + 270650, + 270858, + 270862, + 271000, + 271001, + 271005, + 271017, + 271022, + 271027, + 271029, + 271031, + 271033, + 271036, + 271037, + 271038, + 271053, + 271126, + 271154, + 271155, + 271274, + 271355, + 271384, + 271409, + 271483, + 271516, + 271566, + 271824, + 271848, + 271875, + 271897, + 271898, + 271934, + 271967, + 272014, + 272015, + 272016, + 272017, + 272018, + 272019, + 272020, + 272021, + 272022, + 272023, + 272024, + 272025, + 272026, + 272027, + 272028, + 272049, + 272142, + 272275, + 272340, + 272354, + 272355, + 272491, + 272493, + 272499, + 272500, + 272598, + 272615, + 272652, + 272653, + 272654, + 272655, + 272656, + 272657, + 272658, + 272659, + 272660, + 272661, + 272662, + 272663, + 272664, + 272665, + 272667, + 272685, + 272743, + 272745, + 272747, + 272756, + 272758, + 272913, + 272929, + 272931, + 272946, + 272947, + 272982, + 273239, + 273256, + 273394, + 273411, + 273615, + 273695, + 273804, + 273806, + 273817, + 273858, + 273883, + 273916, + 273923, + 273983, + 274253, + 274325, + 274433, + 274478, + 274524, + 274525, + 274530, + 274531, + 274691, + 274698, + 274797, + 274811, + 274813, + 274815, + 274957, + 274971, + 274975, + 274976, + 274978, + 274979, + 274980, + 274984, + 274986, + 274988, + 274990, + 275048, + 275172, + 275265, + 275268, + 275269, + 275271, + 275273, + 275274, + 275276, + 275277, + 275584, + 276143, + 276475, + 276489, + 276498, + 276618, + 276775, + 277171, + 277300, + 277423, + 277530, + 277535, + 277537, + 277538, + 277539, + 277632, + 277665, + 277666, + 277683, + 277684, + 277685, + 277687, + 277778, + 277950, + 277951, + 277952, + 277954, + 277957, + 277958, + 277964, + 277965, + 277966, + 277967, + 277968, + 277970, + 277971, + 277972, + 277974, + 278736, + 278737, + 278781, + 279253, + 279273, + 279275, + 279626, + 279708, + 279930, + 279947, + 279974, + 280029, + 280031, + 280032, + 280070, + 280072, + 280075, + 280082, + 280167, + 280177, + 280191, + 280463, + 280662, + 280676, + 280703, + 280705, + 280892, + 280983, + 281037, + 281038, + 281043, + 281311, + 281312, + 281313, + 281314, + 281324, + 281326, + 281327, + 281329, + 281330, + 281331, + 281332, + 281334, + 281335, + 281337, + 281338, + 281340, + 281455, + 281667, + 281927, + 281994, + 282003, + 282067, + 282285, + 282321, + 282391, + 282467, + 282489, + 282490, + 282533, + 282551, + 282552, + 282553, + 282557, + 282558, + 282559, + 282605, + 282608, + 282636, + 282641, + 282643, + 283005, + 283069, + 283102, + 283110, + 283122, + 283125, + 283127, + 283469, + 283844, + 284099, + 284115, + 284204, + 284217, + 284218, + 284422, + 284504, + 284700, + 284743, + 284744, + 284746, + 284747, + 284992, + 285049, + 285177, + 285181, + 285231, + 285420, + 285423, + 285482, + 285786, + 285956, + 286072, + 286254, + 286378, + 286448, + 286888, + 286945, + 286984, + 287386, + 287527, + 287777, + 287785, + 287859, + 287869, + 287994, + 288092, + 288268, + 288386, + 288390, + 289134, + 289323, + 289505, + 289514, + 289519, + 289522, + 289959, + 289983, + 290019, + 290025, + 290091, + 290092, + 290093, + 290370, + 290531, + 290546, + 290579, + 290581, + 290582, + 290601, + 290874, + 290876, + 291257, + 291337, + 291443, + 291751, + 292013, + 292670, + 292742, + 292808, + 292995, + 292996, + 293018, + 293069, + 293080, + 293252, + 293253, + 293352, + 293707, + 293710, + 293803, + 293913, + 293988, + 294300, + 294393, + 294480, + 294491, + 294535, + 294676, + 294706, + 294746, + 295060, + 295202, + 295203, + 295369, + 295397, + 295639, + 295642, + 295645, + 295651, + 295652, + 295771, + 295772, + 295775, + 295776, + 295930, + 296010, + 296160, + 296277, + 296409, + 296464, + 296466, + 296874, + 296955, + 296959, + 296973, + 296976, + 297426, + 297572, + 297675, + 297693, + 297875, + 297991, + 297993, + 297997, + 298065, + 298099, + 298145, + 298150, + 298152, + 298245, + 298457, + 298937, + 298938, + 298939, + 298940, + 298943, + 298945, + 298950, + 298951, + 299092, + 299191, + 299280, + 299282, + 299573, + 299576, + 299701, + 299702, + 299937, + 299939, + 299941, + 299945, + 299946, + 299948, + 299951, + 299953, + 299962, + 300031, + 300032, + 300033, + 300035, + 300036, + 300037, + 300038, + 300041, + 300042, + 300044, + 300046, + 300047, + 300049, + 300050, + 300122, + 300546, + 300548, + 300554, + 300566, + 300580, + 300694, + 300732, + 300859, + 300862, + 301023, + 301065, + 301140, + 301166, + 301167, + 301349, + 301350, + 301351, + 301352, + 301353, + 301354, + 301355, + 301356, + 301357, + 301358, + 301359, + 301360, + 301362, + 301363, + 301364, + 301365, + 301366, + 301367, + 301368, + 301369, + 301370, + 301371, + 301372, + 301373, + 301374, + 301375, + 301376, + 301377, + 301381, + 301427, + 301516, + 301529, + 301721, + 301724, + 301743, + 301974, + 301975, + 301992, + 301993, + 301995, + 301998, + 302076, + 302078, + 302134, + 302315, + 302494, + 302495, + 302498, + 302500, + 302582, + 302641, + 302675, + 303060, + 303141, + 303209, + 303402, + 303407, + 303409, + 303420, + 303473, + 303490, + 303575, + 304236, + 304241, + 304305, + 304310, + 304316, + 304375, + 304477, + 304478, + 304482, + 304483, + 304484, + 304486, + 304487, + 304491, + 304494, + 304496, + 304498, + 304501, + 304502, + 304503, + 304506, + 304508, + 304509, + 304512, + 304513, + 304514, + 304515, + 304516, + 304518, + 304519, + 304520, + 304522, + 304523, + 304525, + 304528, + 304534, + 304535, + 304536, + 304538, + 304702, + 304718, + 304723, + 304776, + 304914, + 304917, + 304968, + 304973, + 304975, + 305083, + 305103, + 305112, + 305122, + 305140, + 305376, + 305448, + 305891, + 306023, + 306264, + 306395, + 306396, + 306397, + 306398, + 306399, + 306411, + 306565, + 306581, + 306610, + 306772, + 306898, + 306935, + 307058, + 307089, + 307111, + 307112, + 307115, + 307147, + 307148, + 307149, + 307151, + 307152, + 307153, + 307160, + 307161, + 307163, + 307165, + 307168, + 307170, + 307171, + 307172, + 307173, + 307174, + 307175, + 307176, + 307178, + 307180, + 307183, + 307185, + 307186, + 307187, + 307188, + 307189, + 307192, + 307194, + 307197, + 307199, + 307201, + 307202, + 307204, + 307205, + 307206, + 307207, + 307209, + 307216, + 307218, + 307219, + 307224, + 307226, + 307230, + 307231, + 307232, + 307233, + 307236, + 307237, + 307238, + 307240, + 307241, + 307244, + 307245, + 307246, + 307248, + 307249, + 307250, + 307251, + 307253, + 307254, + 307255, + 307256, + 307260, + 307262, + 307263, + 307265, + 307268, + 307269, + 307270, + 307274, + 307276, + 307277, + 307278, + 307279, + 307281, + 307282, + 307285, + 307287, + 307292, + 307293, + 307295, + 307296, + 307298, + 307300, + 307304, + 307305, + 307306, + 307307, + 307308, + 307309, + 307310, + 307312, + 307314, + 307315, + 307316, + 307317, + 307318, + 307319, + 307320, + 307323, + 307324, + 307327, + 307328, + 307330, + 307331, + 307332, + 307335, + 307337, + 307340, + 307341, + 307342, + 307345, + 307347, + 307352, + 307355, + 307356, + 307358, + 307359, + 307360, + 307361, + 307363, + 307364, + 307365, + 307366, + 307368, + 307369, + 307370, + 307372, + 307373, + 307378, + 307380, + 307382, + 307384, + 307385, + 307389, + 307390, + 307391, + 307392, + 307393, + 307398, + 307399, + 307401, + 307402, + 307404, + 307406, + 307408, + 307409, + 307410, + 307411, + 307412, + 307413, + 307414, + 307416, + 307417, + 307419, + 307421, + 307422, + 307425, + 307431, + 307432, + 307433, + 307434, + 307435, + 307436, + 307437, + 307438, + 307441, + 307443, + 307444, + 307445, + 307446, + 307447, + 307451, + 307452, + 307453, + 307454, + 307458, + 307459, + 307461, + 307463, + 307464, + 307469, + 307498, + 307543, + 307550, + 307555, + 307563, + 307604, + 307620, + 307621, + 307660, + 307692, + 307693, + 307694, + 307695, + 307700, + 307721, + 307726, + 307843, + 307864, + 307865, + 307866, + 307867, + 307870, + 307885, + 308081, + 308084, + 308085, + 308115, + 308467, + 308512, + 308654, + 309123, + 309140, + 309200, + 309316, + 309765, + 309767, + 309874, + 309962, + 309966, + 309971, + 309976, + 309977, + 309978, + 309979, + 309980, + 309982, + 309983, + 309984, + 309986, + 309987, + 309988, + 309989, + 309990, + 309991, + 310038, + 310109, + 310287, + 310288, + 310293, + 310295, + 310343, + 310351, + 310353, + 310355, + 310358, + 310368, + 310370, + 310372, + 310373, + 310388, + 310443, + 310642, + 310643, + 310912, + 311000, + 311002, + 311056, + 311057, + 311058, + 311059, + 311060, + 311233, + 311234, + 311356, + 311482, + 311628, + 311629, + 311722, + 311723, + 311724, + 311727, + 311730, + 311731, + 311733, + 311734, + 311738, + 311739, + 311741, + 311742, + 311744, + 311745, + 311925, + 311952, + 311953, + 311978, + 311992, + 312014, + 312142, + 312208, + 312249, + 312417, + 312427, + 312428, + 312429, + 312480, + 312517, + 312518, + 312519, + 312520, + 312521, + 312522, + 312523, + 312524, + 312526, + 312527, + 312528, + 312530, + 312531, + 312532, + 312533, + 312534, + 312535, + 312536, + 312537, + 312539, + 312540, + 312541, + 312542, + 312543, + 312544, + 312545, + 312546, + 312547, + 312548, + 312549, + 312550, + 312551, + 312552, + 312553, + 312554, + 312555, + 312556, + 312559, + 312560, + 312561, + 312563, + 312564, + 312565, + 312566, + 312567, + 312568, + 312570, + 312571, + 312641, + 312694, + 312775, + 312858, + 312871, + 312921, + 312922, + 312923, + 312924, + 312925, + 312927, + 312929, + 312930, + 312931, + 312932, + 312933, + 312939, + 312942, + 312944, + 312946, + 312950, + 312953, + 312954, + 312956, + 312957, + 312958, + 312960, + 312961, + 312962, + 312963, + 312966, + 312969, + 312970, + 312971, + 312973, + 312975, + 312976, + 312980, + 312982, + 312983, + 312986, + 312987, + 312988, + 312991, + 312993, + 312994, + 312995, + 312997, + 312999, + 313000, + 313002, + 313008, + 313010, + 313012, + 313014, + 313015, + 313018, + 313021, + 313022, + 313023, + 313024, + 313026, + 313028, + 313030, + 313031, + 313032, + 313033, + 313035, + 313039, + 313040, + 313042, + 313045, + 313048, + 313049, + 313050, + 313052, + 313053, + 313054, + 313055, + 313057, + 313058, + 313059, + 313060, + 313061, + 313064, + 313066, + 313068, + 313070, + 313071, + 313073, + 313074, + 313075, + 313076, + 313077, + 313079, + 313081, + 313082, + 313083, + 313084, + 313085, + 313086, + 313087, + 313088, + 313090, + 313092, + 313093, + 313095, + 313096, + 313097, + 313098, + 313100, + 313102, + 313103, + 313104, + 313107, + 313108, + 313110, + 313112, + 313113, + 313116, + 313117, + 313118, + 313120, + 313121, + 313122, + 313124, + 313126, + 313127, + 313128, + 313129, + 313130, + 313134, + 313135, + 313138, + 313140, + 313142, + 313144, + 313146, + 313147, + 313150, + 313151, + 313152, + 313153, + 313155, + 313156, + 313157, + 313159, + 313160, + 313161, + 313162, + 313166, + 313167, + 313168, + 313171, + 313172, + 313174, + 313175, + 313176, + 313177, + 313178, + 313179, + 313180, + 313185, + 313468, + 313469, + 313571, + 313576, + 313578, + 313645, + 313649, + 313820, + 314008, + 314010, + 314047, + 314166, + 314337, + 314412, + 314413, + 314414, + 314416, + 314417, + 314418, + 314419, + 314420, + 314464, + 314596, + 314639, + 314839, + 314843, + 314915, + 315552, + 315712, + 315729, + 315793, + 315947, + 316302, + 316586, + 316794, + 316797, + 316892, + 317126, + 317155, + 317195, + 317295, + 317335, + 317500, + 317502, + 317503, + 317616, + 317850, + 317852, + 317856, + 317857, + 317859, + 317860, + 317863, + 317873, + 317874, + 317876, + 317882, + 317883, + 317884, + 317885, + 317887, + 317889, + 317893, + 317895, + 317897, + 317901, + 317903, + 317906, + 317907, + 317908, + 317957, + 317969, + 318148, + 318371, + 318476, + 318576, + 318614, + 318743, + 318744, + 318745, + 318746, + 319147, + 319157, + 319158, + 319180, + 319439, + 319531, + 319615, + 319761, + 319789, + 319808, + 319836, + 319880, + 319959, + 319964, + 319984, + 320176, + 320180, + 320237, + 320305, + 320595, + 320597, + 320606, + 320609, + 320610, + 320620, + 320627, + 320629, + 320662, + 320667, + 320674, + 320675, + 320676, + 320678, + 320683, + 320684, + 320685, + 320687, + 320689, + 320690, + 320757, + 320758, + 320759, + 320760, + 320797, + 320804, + 320865, + 321053, + 321128, + 321493, + 321625, + 321705, + 321922, + 321925, + 321926, + 321927, + 321928, + 321929, + 321930, + 321932, + 322016, + 322118, + 322119, + 322121, + 322122, + 322123, + 322124, + 322126, + 322128, + 322131, + 322132, + 322262, + 322266, + 322270, + 322277, + 322281, + 322284, + 322290, + 322293, + 322294, + 322297, + 322300, + 322307, + 322312, + 322314, + 322317, + 322322, + 322325, + 322327, + 322328, + 322358, + 322510, + 322517, + 322519, + 322526, + 322529, + 322537, + 322565, + 322694, + 322780, + 322813, + 322819, + 322825, + 322845, + 322847, + 322933, + 323001, + 323068, + 323069, + 323071, + 323072, + 323163, + 323261, + 323333, + 323463, + 323467, + 323522, + 323733, + 323805, + 323935, + 323991, + 324293, + 324365, + 324479, + 324481, + 324534, + 324733, + 324761, + 324925, + 324926, + 325196, + 325309, + 325523, + 325672, + 325753, + 325762, + 325854, + 325855, + 325856, + 325858, + 325859, + 325860, + 325861, + 325862, + 326081, + 326149, + 326160, + 326413, + 326469, + 326471, + 326480, + 326482, + 326524, + 326613, + 326614, + 326619, + 326626, + 326630, + 326635, + 326642, + 326645, + 326657, + 326789, + 326790, + 326791, + 326792, + 326793, + 326796, + 326797, + 326800, + 326801, + 326805, + 326806, + 326810, + 326812, + 326813, + 326814, + 326816, + 326817, + 326819, + 326820, + 326821, + 326823, + 326825, + 326827, + 326828, + 326830, + 326831, + 326832, + 326834, + 326835, + 326838, + 326840, + 326841, + 326842, + 326844, + 326845, + 326849, + 326850, + 326851, + 326852, + 326853, + 326854, + 326874, + 327018, + 327021, + 327022, + 327026, + 327027, + 327028, + 327029, + 327030, + 327031, + 327033, + 327034, + 327112, + 327339, + 327340, + 327342, + 327344, + 327356, + 327420, + 327451, + 327515, + 327516, + 327539, + 327540, + 327545, + 327625, + 327730, + 327751, + 327833, + 328060, + 328062, + 328082, + 328083, + 328195, + 328245, + 328257, + 328270, + 328319, + 328320, + 328322, + 328323, + 328324, + 328519, + 328591, + 328592, + 328746, + 328747, + 328844, + 329897, + 329898, + 330062, + 330110, + 330113, + 330138, + 330152, + 330252, + 330345, + 330618, + 330692, + 330693, + 330694, + 330696, + 330697, + 330698, + 330699, + 330701, + 330702, + 330703, + 330704, + 330705, + 330706, + 330707, + 330758, + 331401, + 331715, + 332029, + 332217, + 332285, + 332308, + 332326, + 332327, + 332331, + 332336, + 332373, + 332376, + 332377, + 332450, + 332573, + 332582, + 332583, + 332585, + 332589, + 332590, + 332603, + 332608, + 332622, + 332794, + 333548, + 333635, + 333806, + 334067, + 334068, + 334073, + 334074, + 334075, + 334082, + 334084, + 334131, + 334142, + 334313, + 334509, + 334574, + 334577, + 334772, + 334786, + 335045, + 335465, + 335466, + 335468, + 335471, + 335472, + 335474, + 335476, + 335477, + 335478, + 335479, + 335482, + 335483, + 335485, + 335487, + 335489, + 335490, + 335491, + 335492, + 335493, + 335496, + 335497, + 335498, + 335500, + 335501, + 335502, + 335506, + 335509, + 335510, + 335513, + 335514, + 335517, + 335518, + 335520, + 335521, + 335523, + 335527, + 335528, + 335530, + 335533, + 335535, + 335536, + 335537, + 335538, + 335539, + 335541, + 335542, + 335544, + 335545, + 335546, + 335547, + 335548, + 335551, + 335554, + 335555, + 335557, + 335559, + 335562, + 335565, + 335566, + 335569, + 335570, + 335571, + 335573, + 335574, + 335575, + 335577, + 335579, + 335580, + 335581, + 335584, + 335587, + 335589, + 335591, + 335593, + 335595, + 335597, + 335598, + 335599, + 335600, + 335601, + 335604, + 335612, + 335613, + 335614, + 335615, + 335617, + 335620, + 335621, + 335622, + 335624, + 335626, + 335627, + 335628, + 335629, + 335630, + 335632, + 335635, + 335636, + 335639, + 335641, + 335642, + 335643, + 335647, + 335648, + 335650, + 335652, + 335654, + 335655, + 335656, + 335659, + 335660, + 335661, + 335663, + 335665, + 335666, + 335668, + 335670, + 335671, + 335672, + 335673, + 335674, + 335676, + 335760, + 336120, + 336122, + 336123, + 336324, + 336325, + 336415, + 336800, + 336804, + 336808, + 336809, + 336811, + 336812, + 336814, + 336818, + 336821, + 336824, + 337094, + 337593, + 337626, + 337647, + 337650, + 337651, + 337958, + 338103, + 338201, + 338202, + 338343, + 338447, + 338448, + 338449, + 338450, + 338451, + 338489, + 338494, + 338496, + 338587, + 338608, + 338609, + 338619, + 338994, + 339159, + 339161, + 339220, + 339248, + 339271, + 339273, + 339275, + 339373, + 339376, + 339377, + 339378, + 339398, + 339399, + 339401, + 339514, + 339515, + 339516, + 339517, + 339676, + 339677, + 339755, + 339756, + 339875, + 339886, + 339888, + 339892, + 339905, + 339906, + 339910, + 339911, + 339912, + 339913, + 339917, + 339918, + 339922, + 339931, + 339952, + 339953, + 339954, + 340034, + 340120, + 340195, + 340205, + 340404, + 340554, + 340559, + 340586, + 340678, + 340731, + 340732, + 340734, + 340736, + 340864, + 340865, + 340953, + 340967, + 341048, + 341076, + 341084, + 341104, + 341147, + 341250, + 341357, + 341364, + 341395, + 341400, + 341403, + 341415, + 341422, + 341437, + 341441, + 341494, + 341505, + 341527, + 341576, + 341663, + 341782, + 341812, + 341914, + 342140, + 342141, + 342173, + 342236, + 342246, + 342361, + 342496, + 342541, + 342543, + 342667, + 342740, + 342787, + 342795, + 342796, + 342798, + 342801, + 342955, + 342958, + 342960, + 342962, + 342970, + 342972, + 342992, + 343022, + 343223, + 343297, + 343573, + 343577, + 343823, + 343871, + 343905, + 344325, + 344328, + 344334, + 344335, + 344508, + 344509, + 344513, + 344516, + 344522, + 344523, + 344525, + 344528, + 344535, + 344536, + 344537, + 344610, + 344621, + 344970, + 345039, + 345311, + 345542, + 345759, + 346088, + 346157, + 346372, + 346373, + 346387, + 346395, + 346398, + 346569, + 346662, + 346666, + 346667, + 346671, + 346674, + 346676, + 346678, + 346681, + 346715, + 346719, + 347268, + 347273, + 347276, + 347509, + 347516, + 347735, + 347792, + 347836, + 347923, + 348120, + 348179, + 348531, + 348534, + 348565, + 348738, + 348879, + 348881, + 348884, + 348885, + 348886, + 348887, + 348955, + 349247, + 349256, + 349306, + 349484, + 349518, + 349519, + 349559, + 349560, + 349574, + 349577, + 349582, + 349586, + 349796, + 349797, + 349798, + 349799, + 349801, + 349803, + 349929, + 349974, + 350055, + 350089, + 350238, + 350337, + 350615, + 350645, + 351666, + 351754, + 351876, + 352156, + 352478, + 353270, + 353290, + 353291, + 353520, + 353521, + 353591, + 353748, + 353751, + 353754, + 354194, + 354410, + 354411, + 354413, + 354416, + 354417, + 354418, + 354420, + 354423, + 354424, + 354542, + 354573, + 354574, + 354576, + 354581, + 354649, + 354650, + 354651, + 354652, + 354653, + 354654, + 354655, + 354656, + 354657, + 354658, + 354659, + 354660, + 354662, + 354663, + 354747, + 355011, + 355012, + 355185, + 355186, + 355192, + 355193, + 355196, + 355197, + 355571, + 355573, + 355576, + 355580, + 355581, + 355582, + 355584, + 355697, + 355698, + 355699, + 355700, + 355701, + 355750, + 355827, + 355862, + 355975, + 356029, + 356030, + 356219, + 356313, + 356317, + 356319, + 356399, + 356400, + 356437, + 356438, + 356440, + 356442, + 356443, + 356444, + 356446, + 356448, + 356449, + 356450, + 356451, + 356453, + 356526, + 356556, + 356568, + 356641, + 356859, + 357374, + 357468, + 357482, + 357484, + 357486, + 357487, + 357489, + 357490, + 357491, + 357492, + 357493, + 357495, + 357498, + 357499, + 357500, + 357501, + 357502, + 357504, + 357505, + 357508, + 357510, + 357511, + 357512, + 357513, + 357514, + 357515, + 357516, + 357702, + 357704, + 357910, + 357950, + 358034, + 358126, + 358127, + 358129, + 358504, + 358566, + 358567, + 358568, + 358833, + 358834, + 359067, + 359068, + 359080, + 359081, + 359083, + 359085, + 359087, + 359105, + 359106, + 359107, + 359148, + 359216, + 359225, + 359551, + 360222, + 360223, + 360956, + 361065, + 361091, + 361105, + 361252, + 361261, + 361385, + 361389, + 361417, + 361423, + 361544, + 361592, + 361600, + 361603, + 361605, + 361606, + 361608, + 361752, + 361757, + 361805, + 361807, + 361814, + 362041, + 362152, + 362160, + 362162, + 362177, + 362290, + 362341, + 362481, + 362515, + 362592, + 362731, + 362850, + 362933, + 363372, + 363446, + 363532, + 363721, + 363748, + 363968, + 363970, + 363972, + 364253, + 364529, + 364545, + 364778, + 364841, + 364850, + 365245, + 365517, + 365629, + 366152, + 366290, + 366291, + 366863, + 366867, + 366872, + 366873, + 366880, + 366912, + 366922, + 367325, + 367372, + 367736, + 368070, + 368137, + 368138, + 368181, + 368184, + 368185, + 368205, + 368206, + 368208, + 368251, + 368348, + 368358, + 368361, + 368362, + 368489, + 368542, + 368543, + 368674, + 368805, + 369053, + 369576, + 369637, + 370226, + 370227, + 370228, + 370229, + 370230, + 370233, + 370234, + 370291, + 370500, + 370522, + 370651, + 370709, + 370710, + 370712, + 370713, + 370714, + 370715, + 370716, + 370717, + 370721, + 370724, + 370725, + 370727, + 370728, + 370729, + 370730, + 370731, + 370734, + 370736, + 370737, + 370738, + 370739, + 370740, + 370741, + 370743, + 370744, + 370745, + 370748, + 370787, + 370846, + 371107, + 371374, + 371484, + 371586, + 371587, + 371594, + 371597, + 371598, + 371786, + 371787, + 372037, + 372039, + 372362, + 372465, + 372550, + 372551, + 372552, + 372553, + 372554, + 372556, + 372557, + 372559, + 372568, + 372570, + 372571, + 372574, + 372576, + 372579, + 372753, + 372754, + 372755, + 372789, + 372892, + 372977, + 373173, + 373281, + 373295, + 373560, + 373783, + 373788, + 373804, + 373805, + 373806, + 373807, + 373808, + 373809, + 373810, + 373811, + 373812, + 373813, + 373814, + 373815, + 373816, + 373817, + 373819, + 373820, + 373821, + 373822, + 373823, + 373824, + 373825, + 373826, + 373827, + 373828, + 373830, + 373831, + 373832, + 373842, + 373843, + 373844, + 373848, + 373849, + 373850, + 373851, + 373853, + 373854, + 373856, + 373862, + 373863, + 373864, + 373870, + 373888, + 373889, + 373890, + 373891, + 373892, + 373893, + 373894, + 373896, + 373897, + 373898, + 373899, + 373922, + 373924, + 373925, + 373962, + 374006, + 374007, + 374012, + 374076, + 374100, + 374154, + 374155, + 374157, + 374256, + 374257, + 374297, + 374298, + 374319, + 374320, + 374322, + 374398, + 374399, + 374400, + 374502, + 374503, + 374504, + 374505, + 374506, + 374632, + 374633, + 374634, + 374646, + 374747, + 374748, + 374749, + 374750, + 374751, + 374752, + 374754, + 374755, + 374784, + 374794, + 374826, + 374827, + 374828, + 374830, + 374831, + 374832, + 374836, + 374909, + 374915, + 374916, + 374917, + 374918, + 374919, + 374920, + 374921, + 374922, + 374924, + 374925, + 374928, + 374982, + 374983, + 374984, + 374985, + 374987, + 375009, + 375010, + 375011, + 375012, + 375014, + 375016, + 375022, + 375043, + 375085, + 375086, + 375279, + 375341, + 375379, + 375380, + 375381, + 375436, + 375438, + 375439, + 375440, + 375441, + 375460, + 375876, + 375877, + 375977, + 375978, + 375979, + 375980, + 375981, + 376031, + 376039, + 376040, + 376042, + 376043, + 376044, + 376045, + 376069, + 376089, + 376090, + 376091, + 376092, + 376250, + 376337, + 376385, + 376498, + 376539, + 376540, + 376558, + 376566, + 376567, + 376594, + 376851, + 376853, + 376854, + 376855, + 376875, + 376961, + 376962, + 376963, + 376964, + 376984, + 377041, + 377043, + 377045, + 377046, + 377048, + 377049, + 377050, + 377051, + 377098, + 377170, + 377171, + 377172, + 377174, + 377176, + 377183, + 377704, + 377747, + 378001, + 378105, + 378329, + 378792, + 378870, + 378872, + 378963, + 379034, + 379513, + 379683, + 379697, + 379809, + 379816, + 380036, + 380673, + 380704, + 380795, + 380864, + 380870, + 381159, + 381298, + 381327, + 381407, + 381443, + 381505, + 381506, + 381562, + 381563, + 381566, + 381569, + 381637, + 381866, + 381888, + 382103, + 382241, + 382396, + 382495, + 382706, + 383088, + 383089, + 383091, + 383105, + 383107, + 383131, + 383318, + 383330, + 383374, + 383422, + 383442, + 383468, + 383623, + 384186, + 384377, + 384817, + 384819, + 384840, + 384925, + 385425, + 385585, + 385599, + 385953, + 386162, + 386315, + 386326, + 386331, + 386441, + 386443, + 386548, + 386684, + 386760, + 386765, + 386766, + 386944, + 387498, + 387518, + 387615, + 387651, + 387675, + 387782, + 387838, + 387977, + 388159, + 388160, + 388165, + 388217, + 388272, + 388567, + 388723, + 388770, + 388773, + 389044, + 389096, + 389170, + 389193, + 389274, + 389530, + 389532, + 389534, + 389536, + 389746, + 389794, + 390115, + 390182, + 390227, + 390313, + 390316, + 390473, + 390504, + 391046, + 391245, + 391292, + 391301, + 391303, + 391307, + 391309, + 391313, + 391319, + 391328, + 391329, + 391331, + 391733, + 391744, + 391755, + 391773, + 391846, + 392456, + 392677, + 392717, + 392719, + 392724, + 392833, + 392950, + 393019, + 393032, + 393116, + 393315, + 393383, + 394234, + 394237, + 394288, + 394289, + 394487, + 394509, + 394513, + 394529, + 394604, + 394795, + 394796, + 395053, + 395324, + 395349, + 395868, + 395909, + 395911, + 395912, + 395913, + 395914, + 396009, + 396013, + 396255, + 396354, + 396365, + 396368, + 397050, + 397252, + 397264, + 397304, + 397402, + 397616, + 397947, + 398237, + 398438, + 398622, + 398627, + 398628, + 398634, + 398673, + 398820, + 398822, + 398825, + 398826, + 399141, + 399273, + 399309, + 399594, + 399774, + 399868, + 400267, + 400283, + 400404, + 400609, + 400615, + 400677, + 400979, + 401400, + 401517, + 401527, + 401547, + 401548, + 401552, + 401553, + 401554, + 401757, + 401793, + 401794, + 401795, + 401796, + 401798, + 401799, + 401802, + 401803, + 402109, + 402151, + 402484, + 402550, + 402551, + 402552, + 402554, + 402555, + 402799, + 402863, + 403026, + 403042, + 403052, + 403201, + 403314, + 403469, + 403529, + 403584, + 403585, + 403586, + 403588, + 403589, + 403592, + 403603, + 403605, + 403632, + 404329, + 404331, + 404337, + 404351, + 405310, + 405311, + 405317, + 405319, + 405322, + 405402, + 405519, + 405523, + 405526, + 405543, + 405600, + 405607, + 405645, + 405659, + 405736, + 406149, + 406258, + 406271, + 406273, + 406278, + 406283, + 406409, + 406423, + 406615, + 406839, + 407111, + 407204, + 407246, + 407653, + 407932, + 408286, + 408296, + 408298, + 408299, + 408342, + 408788, + 408830, + 408842, + 408897, + 409054, + 409506, + 410027, + 410032, + 410038, + 410234, + 410373, + 410383, + 410426, + 410531, + 410541, + 410547, + 410750, + 411347, + 411402, + 411577, + 411983, + 412531, + 412532, + 412537, + 412540, + 412549, + 412557, + 412559, + 412671, + 412751, + 412753, + 412758, + 412969, + 413008, + 413010, + 413013, + 413014, + 413086, + 413172, + 413455, + 413739, + 413893, + 414338, + 414421, + 414918, + 414919, + 414920, + 414921, + 414926, + 414928, + 414957, + 415015, + 415188, + 415476, + 415507, + 415572, + 415573, + 415720, + 415721, + 415723, + 415724, + 415725, + 415783, + 415785, + 415786, + 415787, + 415788, + 415789, + 415791, + 415792, + 415833, + 415921, + 415922, + 415923, + 415924, + 415926, + 415927, + 415931, + 415940, + 416215, + 416216, + 416399, + 416672, + 416803, + 416804, + 416805, + 416806, + 416807, + 416808, + 416809, + 416811, + 416812, + 416814, + 416816, + 416817, + 416818, + 417042, + 417249, + 417353, + 418232, + 418678, + 418685, + 418708, + 418711, + 418852, + 418854, + 419271, + 419352, + 419412, + 419440, + 420011, + 420273, + 420553, + 421437, + 421442, + 421717, + 421870, + 421925, + 421968, + 421970, + 422050, + 422189, + 422196, + 422199, + 422601, + 423007, + 423096, + 423100, + 423493, + 423502, + 423690, + 423809, + 424108, + 424382, + 424440, + 424527, + 424565, + 424572, + 424575, + 424576, + 424582, + 424586, + 424630, + 425095, + 425096, + 425099, + 425100, + 425124, + 425129, + 425130, + 425509, + 425636, + 425857, + 425986, + 426548, + 426653, + 426832, + 426849, + 427125, + 427174, + 427336, + 427413, + 427758, + 427760, + 427842, + 428218, + 428925, + 429049, + 429300, + 429641, + 429801, + 429895, + 429903, + 429905, + 430093, + 430354, + 430359, + 430360, + 430477, + 430567, + 430629, + 430637, + 430666, + 430742, + 430744, + 430822, + 430825, + 430829, + 430832, + 430835, + 430838, + 430840, + 430843, + 430844, + 430845, + 430878, + 431008, + 431453, + 431526, + 431745, + 431940, + 431994, + 432053, + 432069, + 432166, + 432500, + 433437, + 433707, + 433709, + 433710, + 433712, + 433713, + 433797, + 433899, + 434005, + 434017, + 434124, + 434233, + 434336, + 434650, + 434719, + 434848, + 435081, + 435321, + 435323, + 435325, + 435326, + 435334, + 435340, + 435341, + 435344, + 435493, + 435494, + 435555, + 435560, + 435781, + 435981, + 436074, + 436322, + 436375, + 436598, + 436787, + 436788, + 436985, + 437476, + 437684, + 438242, + 438270, + 438801, + 438925, + 439106, + 439276, + 439277, + 439278, + 439662, + 439765, + 439767, + 439843, + 440245, + 440246, + 440250, + 440316, + 440483, + 440679, + 440741, + 440749, + 440852, + 441147, + 441179, + 441313, + 441315, + 441316, + 441318, + 441319, + 441322, + 441324, + 441367, + 441469, + 441528, + 441634, + 441641, + 441793, + 441899, + 441901, + 441904, + 441908, + 441910, + 441921, + 441922, + 441924, + 441925, + 441940, + 441949, + 442021, + 442174, + 442220, + 442236, + 442961, + 442985, + 442986, + 442987, + 442988, + 442989, + 443120, + 443259, + 443319, + 443694, + 444032, + 444033, + 444097, + 444254, + 444293, + 444386, + 444527, + 444528, + 444585, + 444606, + 445306, + 445665, + 445798, + 445911, + 446042, + 446044, + 446045, + 446047, + 446049, + 446050, + 446102, + 446105, + 446125, + 446441, + 446467, + 446471, + 446472, + 446475, + 446577, + 446580, + 446627, + 446629, + 446631, + 446633, + 446634, + 446638, + 446648, + 446653, + 446654, + 446656, + 446658, + 446664, + 446667, + 446668, + 446671, + 446874, + 446928, + 446946, + 447022, + 447026, + 447081, + 447130, + 447164, + 447385, + 447649, + 447694, + 447843, + 447919, + 447920, + 448007, + 448010, + 448161, + 448472, + 448658, + 448660, + 448661, + 448664, + 448769, + 448833, + 449046, + 449145, + 449216, + 449273, + 449542, + 449575, + 449591, + 450251, + 450252, + 450300, + 450355, + 451368, + 451472, + 451535, + 451852, + 451853, + 451854, + 451911, + 452011, + 452141, + 452264, + 452442, + 452556, + 452558, + 452559, + 452639, + 452768, + 453290, + 453294, + 453402, + 453405, + 453408, + 453409, + 453850, + 453854, + 453937, + 453952, + 454152, + 454154, + 454276, + 454293, + 454332, + 454493, + 454650, + 454690, + 454805, + 454980, + 455008, + 455022, + 455255, + 455296, + 455403, + 455549, + 455550, + 455644, + 455829, + 455839, + 455853, + 455878, + 455886, + 456210, + 456391, + 456440, + 456441, + 456478, + 456508, + 456699, + 456729, + 456731, + 456826, + 456827, + 456907, + 456908, + 456926, + 457141, + 457525, + 457732, + 458148, + 458557, + 458931, + 458932, + 458933, + 459231, + 459266, + 459375, + 459583, + 459586, + 459665, + 459670, + 459673, + 459676, + 459681, + 459734, + 459956, + 460108, + 460621, + 460658, + 460659, + 460838, + 460839, + 460840, + 460961, + 461047, + 461169, + 461445, + 461451, + 461456, + 461464, + 461546, + 461773, + 462043, + 462175, + 462220, + 462314, + 462315, + 462359, + 462374, + 462460, + 462603, + 462826, + 463081, + 463442, + 463691, + 463696, + 463781, + 463782, + 463875, + 463881, + 463895, + 463963, + 464097, + 464105, + 464110, + 464384, + 464390, + 464730, + 465031, + 465064, + 465065, + 465070, + 465257, + 465259, + 465592, + 465844, + 465982, + 465983, + 466144, + 466270, + 466362, + 466369, + 466429, + 466526, + 466527, + 466733, + 466948, + 467254, + 467532, + 467729, + 467730, + 467797, + 467951, + 467999, + 468105, + 468112, + 468276, + 469186, + 469199, + 469216, + 469246, + 469410, + 469874, + 469951, + 470011, + 470027, + 470062, + 470180, + 470181, + 470222, + 470227, + 470246, + 470255, + 470263, + 470264, + 470389, + 470549, + 471201, + 471753, + 471823, + 471944, + 471949, + 471951, + 472144, + 472214, + 472215, + 472391, + 472676, + 472677, + 473375, + 473440, + 473454, + 473461, + 473465, + 473475, + 473837, + 474004, + 474012, + 474298, + 474332, + 474485, + 474992, + 475132, + 475134, + 475255, + 475511, + 475516, + 475556, + 475582, + 475951, + 476228, + 476505, + 476910, + 477108, + 477482, + 477597, + 477765, + 477766, + 478063, + 478093, + 479033, + 479037, + 479121, + 479349, + 479350, + 480062, + 480263, + 480264, + 480445, + 480491, + 480718, + 480804, + 480806, + 480807, + 480810, + 481010, + 481158, + 481269, + 481270, + 481549, + 481796, + 481959, + 482081, + 482089, + 482516, + 483122, + 483254, + 483878, + 483879, + 483880, + 483881, + 483895, + 484058, + 484066, + 484126, + 484127, + 484921, + 485282, + 485405, + 485456, + 485529, + 485825, + 486498, + 486643, + 486668, + 486721, + 486749, + 486844, + 486864, + 486998, + 487150, + 487473, + 487835, + 488082, + 488206, + 488280, + 488362, + 488363, + 488518, + 489108, + 489114, + 489306, + 489336, + 489554, + 489684, + 489685, + 489686, + 489690, + 490003, + 490084, + 490279, + 490281, + 490290, + 490488, + 490495, + 490515, + 490522, + 490524, + 490568, + 490573, + 490777, + 491016, + 491018, + 491022, + 491152, + 491155, + 491321, + 491343, + 491345, + 491346, + 491347, + 491348, + 491392, + 491394, + 491397, + 491421, + 491618, + 491655, + 491875, + 491878, + 491879, + 491882, + 491883, + 492011, + 492124, + 492245, + 492246, + 492333, + 492334, + 492336, + 492337, + 492446, + 492455, + 493464, + 493615, + 493922, + 494049, + 494246, + 494406, + 494726, + 494930, + 495004, + 495017, + 495100, + 495105, + 496511, + 496516, + 497008, + 497530, + 497532, + 497533, + 497534, + 497535, + 497542, + 497763, + 497768, + 498095, + 498178, + 498384, + 498447, + 499135, + 499156, + 499158, + 499163, + 499269, + 499270, + 499278, + 499279, + 499284, + 499287, + 499289, + 499436, + 500231, + 500384, + 500387, + 500419, + 500421, + 500482, + 500672, + 500929, + 501000, + 501175, + 501233, + 501234, + 501615, + 501760, + 501764, + 501972, + 502034, + 502792, + 502814, + 502816, + 502819, + 502823, + 502859, + 502860, + 502861, + 503203, + 503363, + 503479, + 503619, + 504258, + 504261, + 504262, + 504673, + 504675, + 504881, + 504968, + 505113, + 505159, + 505161, + 505163, + 505165, + 505166, + 505169, + 505170, + 505172, + 505177, + 505435, + 505437, + 505439, + 505441, + 505452, + 505454, + 505455, + 505772, + 505931, + 505932, + 506008, + 506718, + 507087, + 507341, + 507353, + 507420, + 507500, + 507728, + 507731, + 508115, + 508131, + 508213, + 508217, + 508218, + 508304, + 508450, + 508531, + 509009, + 509155, + 509714, + 510159, + 510288, + 510320, + 510836, + 511161, + 511498, + 511503, + 511610, + 511613, + 511812, + 511884, + 511891, + 511997, + 512414, + 513526, + 513550, + 513764, + 513873, + 513874, + 513876, + 514348, + 514349, + 514353, + 514465, + 514528, + 514678, + 514869, + 515035, + 515203, + 515224, + 515239, + 515264, + 515766, + 515770, + 515878, + 515881, + 516110, + 516629, + 517042, + 517153, + 517156, + 517158, + 517165, + 517167, + 517292, + 517297, + 517349, + 517370, + 517411, + 517443, + 517444, + 517623, + 517900, + 517938, + 517941, + 517942, + 517947, + 517958, + 518450, + 518647, + 518878, + 519528, + 519586, + 519728, + 520323, + 520617, + 520618, + 520992, + 520996, + 521166, + 521242, + 521601, + 521609, + 521630, + 521797, + 522034, + 522209, + 522210, + 522269, + 522280, + 522286, + 522452, + 522505, + 522630, + 522739, + 522918, + 522920, + 523073, + 523633, + 523641, + 523642, + 523982, + 523989, + 524182, + 524726, + 524756, + 524898, + 524935, + 525097, + 525240, + 525410, + 525459, + 525460, + 525469, + 525470, + 525705, + 525849, + 526409, + 526411, + 526412, + 526416, + 526418, + 526419, + 526420, + 526576, + 526579, + 526590, + 526591, + 526592, + 526593, + 526594, + 526595, + 526604, + 526839, + 527005, + 527059, + 527063, + 527161, + 527166, + 527198, + 527308, + 527797, + 527933, + 527936, + 527956, + 528150, + 528735, + 528844, + 529119, + 529450, + 529504, + 529879, + 529885, + 530169, + 530183, + 530229, + 530230, + 530518, + 530814, + 531005, + 531382, + 531527, + 531602, + 531605, + 531975, + 532002, + 532086, + 532088, + 532089, + 532265, + 532268, + 532276, + 532425, + 532429, + 532434, + 532763, + 532838, + 533132, + 533188, + 533193, + 533357, + 533487, + 533659, + 533865, + 534111, + 534667, + 534822, + 534901, + 535091, + 535524, + 535730, + 535836, + 535879, + 536409, + 536499, + 536545, + 536656, + 537235, + 537381, + 537587, + 537696, + 538094, + 538476, + 538644, + 538821, + 539034, + 539131, + 539272, + 539550, + 539639, + 540187, + 540315, + 540724, + 540727, + 540731, + 540733, + 540751, + 541024, + 541134, + 541368, + 541831, + 542306, + 542687, + 542810, + 542942, + 542943, + 543200, + 543206, + 543673, + 543767, + 544206, + 544872, + 544894, + 545177, + 545204, + 545637, + 545818, + 545908, + 546115, + 546266, + 546396, + 546505, + 546506, + 546606, + 547010, + 547173, + 547316, + 547323, + 547324, + 547334, + 547917, + 547969, + 547971, + 548101, + 548105, + 548187, + 548666, + 548732, + 548733, + 548734, + 548735, + 548737, + 548738, + 548739, + 548740, + 548741, + 548742, + 548743, + 548744, + 548745, + 548746, + 548843, + 548941, + 548942, + 548996, + 549499, + 549757, + 550031, + 550033, + 550244, + 550339, + 550341, + 550342, + 550656, + 550878, + 551071, + 551076, + 551083, + 551091, + 551095, + 551098, + 551164, + 551283, + 551284, + 551598, + 551620, + 551622, + 551626, + 552012, + 552016, + 552021, + 552044, + 552195, + 552306, + 552707, + 552708, + 552712, + 552714, + 552716, + 552717, + 552718, + 552721, + 552723, + 552725, + 552726, + 552728, + 552731, + 552733, + 552734, + 552735, + 552736, + 552738, + 552740, + 552743, + 552746, + 552748, + 552909, + 552915, + 553137, + 553565, + 553731, + 553792, + 554032, + 554201, + 554285, + 554732, + 554868, + 555458, + 555462, + 555490, + 555645, + 555647, + 555746, + 555778, + 555779, + 555780, + 555781, + 555782, + 556376, + 556382, + 556781, + 556973, + 557243, + 557260, + 557276, + 557285, + 557303, + 557325, + 557414, + 557810, + 557956, + 557960, + 557961, + 557967, + 557968, + 558401, + 558403, + 558404, + 558406, + 558408, + 558409, + 558412, + 558413, + 558518, + 558533, + 558679, + 558885, + 558920, + 559185, + 559503, + 559505, + 560080, + 560081, + 560082, + 560083, + 560105, + 560798, + 560801, + 560802, + 560825, + 560907, + 561054, + 561396, + 561398, + 561405, + 561407, + 561421, + 561464, + 561521, + 561560, + 561634, + 561690, + 561722, + 561920, + 562045, + 562202, + 562206, + 562262, + 562375, + 562382, + 562386, + 562393, + 562947, + 562992, + 563086, + 563317, + 563318, + 563320, + 563322, + 563323, + 563324, + 563326, + 564412, + 564413, + 564626, + 564649, + 564749, + 564750, + 564752, + 564754, + 564789, + 564790, + 564791, + 564877, + 564890, + 565233, + 565235, + 565251, + 565349, + 565422, + 565694, + 565710, + 565716, + 566541, + 566763, + 566828, + 566829, + 566834, + 567488, + 567511, + 567580, + 567586, + 567588, + 567591, + 567653, + 567743, + 567747, + 567751, + 567776, + 567876, + 568177, + 568306, + 569062, + 569163, + 569418, + 569429, + 569446, + 569447, + 569576, + 569577, + 570216, + 570543, + 570719, + 570822, + 571402, + 571403, + 571547, + 571862, + 572072, + 572701, + 572706, + 572708, + 572718, + 573073, + 573076, + 573078, + 573116, + 573235, + 573237, + 573239, + 573240, + 573243, + 573244, + 573251, + 573254, + 573351, + 573416, + 573420, + 573428, + 573449, + 573556, + 573565, + 573567, + 573568, + 573569, + 573571, + 573572, + 573573, + 573621, + 573647, + 573702, + 573704, + 573746, + 574009, + 574185, + 574372, + 574682, + 574914, + 574915, + 575045, + 575046, + 575271, + 575479, + 575480, + 575554, + 575721, + 575764, + 575890, + 575947, + 576013, + 576026, + 576325, + 576350, + 576420, + 576552, + 576602, + 576630, + 576808, + 576809, + 576810, + 576913, + 577004, + 577006, + 577010, + 577101, + 577163, + 577646, + 577647, + 577649, + 577650, + 577808, + 577812, + 577854, + 578204, + 578492, + 578524, + 578719, + 578724, + 578727, + 578728, + 578730, + 578734, + 578736, + 578737, + 578738, + 578745, + 578890, + 579162, + 579373, + 579746, + 579747, + 579748, + 580144, + 580166, + 580172, + 580177, + 580349, + 580684, + 581138, + 581287, + 581288, + 581291, + 581384, + 582273, + 582425, + 582646, + 582790, + 582795, + 582798, + 582803, + 582806, + 582942, + 582970, + 582978, + 582992, + 582999, + 583052, + 583074, + 583281, + 583502, + 583503, + 583504, + 583506, + 583802, + 583803, + 583867, + 583932, + 583935, + 584027, + 584035, + 584037, + 584049, + 584051, + 584452, + 584834, + 585336, + 585430, + 585579, + 585657, + 585663, + 585734, + 585918, + 586444, + 586595, + 586602, + 586629, + 586634, + 587098, + 587115, + 587167, + 587330, + 588110, + 588115, + 588622, + 588656, + 588657, + 589190, + 589191, + 589192, + 589715, + 589878, + 589890, + 589903, + 589906, + 590071, + 590139, + 590464, + 590470, + 590880, + 590926, + 591040, + 591085, + 591103, + 591525, + 591865, + 591970, + 592183, + 592184, + 592185, + 592186, + 592188, + 592215, + 592228, + 592250, + 592252, + 592253, + 592339, + 592947, + 593439, + 593477, + 593493, + 593553, + 593627, + 593883, + 593940, + 594308, + 594428, + 594578, + 594579, + 594583, + 594588, + 594589, + 594658, + 594992, + 595046, + 595478, + 595616, + 595653, + 595767, + 595768, + 596086, + 596332, + 596692, + 596694, + 596754, + 597142, + 597589, + 597641, + 597705, + 598074, + 598084, + 598091, + 598246, + 598601, + 598659, + 598828, + 599034, + 599217, + 599247, + 599272, + 599385, + 599488, + 599576, + 599630, + 600371, + 600898, + 601109, + 601251, + 601626, + 601673, + 601710, + 601813, + 602298, + 602300, + 602308, + 602324, + 602330, + 602336, + 602351, + 602352, + 602354, + 602356, + 602364, + 602626, + 602829, + 602873, + 602875, + 603388, + 603389, + 603682, + 603723, + 603733, + 603734, + 603736, + 603846, + 603854, + 604171, + 604396, + 604471, + 604472, + 604473, + 604631, + 604810, + 605286, + 605318, + 605580, + 605814, + 605858, + 606746, + 606891, + 607246, + 607336, + 607478, + 607564, + 607931, + 607938, + 608013, + 608016, + 608482, + 609460, + 609895, + 610159, + 610799, + 610802, + 611218, + 612029, + 612287, + 612494, + 612651, + 613198, + 613245, + 613247, + 613328, + 613980, + 614077, + 614341, + 614342, + 614367, + 615542, + 615543, + 615544, + 615760, + 616575, + 616853, + 616990, + 617116, + 617133, + 617253, + 617404, + 617407, + 618212, + 619193, + 619226, + 619227, + 619231, + 619319, + 619589, + 619886, + 620105, + 620106, + 620153, + 620186, + 620661, + 620726, + 620727, + 620734, + 620814, + 620928, + 620939, + 621302, + 621694, + 621741, + 621761, + 621802, + 622065, + 622341, + 622492, + 622528, + 622613, + 622614, + 622616, + 622617, + 622618, + 622619, + 622972, + 623105, + 623150, + 623169, + 623276, + 623293, + 623692, + 623880, + 623979, + 624196, + 624461, + 624538, + 624588, + 624608, + 624615, + 624749, + 624819, + 624847, + 624848, + 624922, + 625259, + 625261, + 625570, + 625642, + 625651, + 625900, + 625930, + 626175, + 626633, + 626990, + 626993, + 627128, + 627275, + 627442, + 628163, + 628234, + 628264, + 628266, + 628269, + 628584, + 628932, + 629035, + 629252, + 629441, + 629452, + 629472, + 629535, + 629536, + 629545, + 629546, + 629700, + 629850, + 629913, + 630053, + 630489, + 630591, + 630655, + 630941, + 630952, + 631043, + 631047, + 631315, + 631367, + 631368, + 631438, + 631586, + 631820, + 631822, + 632100, + 632254, + 632474, + 632719, + 632765, + 633158, + 633159, + 633160, + 633161, + 633162, + 633164, + 633303, + 633388, + 633477, + 633755, + 634013, + 634318, + 634320, + 634324, + 634411, + 634503, + 634879, + 634882, + 634883, + 634884, + 634885, + 634886, + 634887, + 634888, + 634889, + 634891, + 634895, + 634896, + 634898, + 634910, + 634987, + 634988, + 635056, + 635057, + 635059, + 635140, + 635153, + 635561, + 635865, + 635962, + 635996, + 635997, + 636002, + 636007, + 636075, + 636119, + 636144, + 636147, + 636148, + 636384, + 636430, + 636503, + 636540, + 636767, + 636835, + 636888, + 636892, + 637266, + 637270, + 637324, + 637472, + 638065, + 638130, + 638167, + 638174, + 638182, + 638538, + 638539, + 638584, + 638716, + 638732, + 638736, + 638920, + 639218, + 639405, + 639419, + 639452, + 639453, + 639454, + 639455, + 639459, + 639469, + 639480, + 639751, + 639752, + 639838, + 639930, + 639945, + 639960, + 639962, + 639963, + 639975, + 639976, + 640306, + 640399, + 640418, + 640637, + 640665, + 641304, + 641305, + 641495, + 641764, + 642080, + 642330, + 642505, + 642842, + 643011, + 643018, + 643272, + 643273, + 643484, + 643485, + 643500, + 643633, + 643634, + 643840, + 643847, + 643849, + 643897, + 643902, + 643957, + 644068, + 644236, + 644338, + 644384, + 644434, + 644541, + 644692, + 644985, + 645043, + 645086, + 645092, + 645323, + 645324, + 645325, + 645820, + 645836, + 645837, + 645840, + 646017, + 646392, + 646519, + 646524, + 646527, + 646532, + 646537, + 646563, + 646860, + 646865, + 646866, + 646868, + 647072, + 647136, + 647193, + 647326, + 647404, + 647526, + 647974, + 647976, + 647979, + 647984, + 647996, + 648050, + 648052, + 648208, + 648212, + 648217, + 648218, + 648227, + 648251, + 648314, + 648363, + 648378, + 648575, + 648617, + 648840, + 648975, + 648998, + 648999, + 649392, + 649494, + 649578, + 649582, + 649584, + 649585, + 649589, + 649871, + 650078, + 650250, + 650343, + 650367, + 650368, + 650370, + 650601, + 650623, + 650729, + 651142, + 651143, + 651190, + 651649, + 651654, + 651809, + 651811, + 652074, + 652321, + 652331, + 652908, + 653198, + 653490, + 653500, + 653513, + 653524, + 653535, + 653548, + 653557, + 653582, + 653589, + 653807, + 654439, + 654440, + 654451, + 654453, + 654775, + 654834, + 654835, + 654970, + 655086, + 655221, + 655246, + 655618, + 655640, + 655746, + 655748, + 655749, + 655828, + 656381, + 656620, + 656621, + 656799, + 656806, + 657000, + 657017, + 657082, + 657226, + 657271, + 657340, + 658106, + 658354, + 658861, + 659232, + 659398, + 659464, + 659469, + 659812, + 659814, + 659817, + 659821, + 659823, + 659831, + 659833, + 659837, + 659839, + 659953, + 660067, + 660069, + 660090, + 660407, + 660411, + 661007, + 661057, + 661120, + 661389, + 661417, + 661418, + 661425, + 661483, + 661922, + 662015, + 662168, + 662263, + 662507, + 662608, + 662689, + 662752, + 662757, + 662796, + 662797, + 662849, + 662982, + 663003, + 663178, + 663502, + 663588, + 664077, + 664211, + 664226, + 664352, + 664548, + 664662, + 664669, + 664753, + 664766, + 665004, + 665067, + 665298, + 665647, + 665650, + 665814, + 666089, + 666090, + 666092, + 666093, + 666094, + 666095, + 666096, + 666097, + 666098, + 666360, + 666443, + 666449, + 666508, + 666918, + 668141, + 668292, + 668547, + 668694, + 668946, + 669268, + 669404, + 669730, + 669733, + 669735, + 669738, + 669783, + 669983, + 670045, + 670130, + 670372, + 670543, + 670552, + 670668, + 670887, + 671074, + 671327, + 671328, + 671331, + 671762, + 671764, + 671765, + 671766, + 671768, + 671770, + 671790, + 672025, + 672476, + 672642, + 673139, + 673555, + 674540, + 674606, + 675014, + 675015, + 675017, + 675023, + 675024, + 675026, + 675032, + 675033, + 675266, + 675270, + 675732, + 675733, + 676367, + 676443, + 677510, + 678075, + 678078, + 678255, + 678256, + 678604, + 678665, + 678694, + 678882, + 678968, + 679016, + 679017, + 679108, + 679291, + 679681, + 679801, + 679802, + 679803, + 679804, + 680012, + 680802, + 680946, + 681091, + 681785, + 681925, + 681995, + 682453, + 682663, + 683065, + 683122, + 683130, + 683177, + 683292, + 683570, + 683885, + 683941, + 683943, + 684253, + 684601, + 685142, + 685341, + 685589, + 685691, + 685692, + 686179, + 686224, + 686675, + 686722, + 686723, + 686731, + 686732, + 686904, + 687184, + 687293, + 687403, + 687506, + 687681, + 688034, + 688042, + 688087, + 688088, + 688089, + 688090, + 688091, + 688092, + 688093, + 688094, + 688095, + 688096, + 688097, + 688099, + 688100, + 688103, + 688104, + 688108, + 688109, + 688110, + 688111, + 688112, + 688113, + 688115, + 688116, + 688117, + 688118, + 688119, + 688120, + 688121, + 688122, + 688123, + 688124, + 688125, + 688126, + 688127, + 688128, + 688129, + 688130, + 688131, + 688132, + 688134, + 688135, + 688136, + 688137, + 688138, + 688139, + 688140, + 688143, + 688144, + 688145, + 688146, + 688147, + 688148, + 688149, + 688151, + 688152, + 688153, + 688154, + 688156, + 688157, + 688492, + 688602, + 688672, + 688716, + 688801, + 688929, + 688976, + 689213, + 689564, + 689566, + 689721, + 689952, + 689966, + 690124, + 690577, + 690854, + 690895, + 691506, + 691665, + 692087, + 692093, + 692662, + 692737, + 693019, + 693025, + 693027, + 693030, + 693032, + 693033, + 693035, + 693036, + 693037, + 693038, + 693171, + 693593, + 693693, + 693834, + 693898, + 694124, + 694647, + 694695, + 694863, + 694904, + 695530, + 695549, + 695872, + 695874, + 695876, + 696028, + 696030, + 696134, + 696140, + 696141, + 696143, + 696150, + 696151, + 696159, + 696162, + 696168, + 696171, + 696188, + 696192, + 696200, + 696206, + 696211, + 696215, + 696220, + 696221, + 696225, + 696227, + 696232, + 696236, + 696237, + 696238, + 696240, + 696242, + 696247, + 696253, + 696256, + 696260, + 696264, + 696267, + 696861, + 697091, + 697344, + 697562, + 697563, + 697938, + 698031, + 698040, + 698042, + 698043, + 698076, + 698077, + 698563, + 698921, + 699197, + 699201, + 699205, + 699210, + 699322, + 699327, + 699733, + 699734, + 699735, + 699791, + 700438, + 700443, + 700518, + 701291, + 701412, + 701818, + 702743, + 702877, + 703268, + 703269, + 703271, + 703272, + 703539, + 703599, + 703748, + 703959, + 703960, + 703973, + 703997, + 704140, + 704150, + 704263, + 704264, + 704634, + 704635, + 704780, + 705281, + 705819, + 706103, + 706108, + 706110, + 706173, + 706285, + 706286, + 706385, + 707463, + 707622, + 707877, + 708128, + 708247, + 708256, + 708420, + 708476, + 708507, + 708557, + 708817, + 708879, + 709138, + 709231, + 709700, + 709762, + 710380, + 710652, + 710658, + 710669, + 710685, + 710699, + 710734, + 710823, + 711106, + 711322, + 711355, + 711357, + 711370, + 711658, + 711770, + 711873, + 712217, + 712500, + 712701, + 712722, + 713001, + 713004, + 713461, + 713519, + 713679, + 713851, + 714002, + 714004, + 714652, + 714667, + 714720, + 715021, + 715246, + 715301, + 715403, + 715404, + 715919, + 716084, + 716127, + 716128, + 716138, + 716139, + 716243, + 716244, + 716249, + 716250, + 716430, + 716432, + 716812, + 716866, + 717127, + 717185, + 717326, + 717366, + 717492, + 717949, + 717998, + 718437, + 718732, + 718768, + 718775, + 718805, + 719156, + 719157, + 719163, + 719167, + 719240, + 719354, + 719356, + 719357, + 719434, + 719758, + 719828, + 719910, + 720007, + 720534, + 720580, + 720856, + 720861, + 720869, + 720870, + 720876, + 720880, + 720884, + 721453, + 721517, + 722007, + 722717, + 722802, + 723407, + 723648, + 724038, + 724039, + 724065, + 724088, + 724097, + 724145, + 724146, + 724556, + 725036, + 725132, + 725134, + 725136, + 725137, + 725143, + 725151, + 726070, + 726072, + 726073, + 726529, + 726533, + 726825, + 727243, + 727254, + 727331, + 727951, + 728357, + 728358, + 728360, + 729278, + 729424, + 729541, + 729542, + 729543, + 729544, + 729545, + 729546, + 729547, + 729548, + 729549, + 729551, + 729552, + 729553, + 729554, + 730004, + 730210, + 730811, + 730827, + 730828, + 730832, + 730834, + 731424, + 731586, + 731706, + 731944, + 731950, + 732049, + 732053, + 732178, + 732209, + 732223, + 732244, + 732482, + 732491, + 732706, + 732722, + 732725, + 732727, + 732761, + 732770, + 732775, + 732778, + 732980, + 733175, + 733232, + 733259, + 733262, + 733264, + 733768, + 733816, + 733858, + 734188, + 734491, + 735033, + 735186, + 735195, + 735199, + 735216, + 735323, + 735380, + 736281, + 736526, + 736534, + 736604, + 736605, + 736606, + 736970, + 736976, + 736979, + 736986, + 737101, + 737430, + 737489, + 737501, + 737563, + 737925, + 738279, + 738282, + 738377, + 738471, + 738659, + 739166, + 739208, + 739303, + 739316, + 739322, + 739327, + 739331, + 739362, + 739468, + 739484, + 739929, + 739931, + 739933, + 740086, + 740102, + 740149, + 740361, + 740363, + 740366, + 740424, + 740510, + 740598, + 740603, + 740965, + 740966, + 740967, + 740968, + 740969, + 741301, + 741876, + 741903, + 742027, + 743191, + 743194, + 743196, + 743199, + 743200, + 743202, + 743205, + 743207, + 743209, + 743210, + 743211, + 743217, + 743218, + 743219, + 743222, + 743240, + 743304, + 743309, + 743310, + 743312, + 743317, + 743704, + 743705, + 743753, + 743787, + 743959, + 743981, + 744296, + 744404, + 744651, + 744723, + 744724, + 744730, + 745013, + 745084, + 745088, + 745092, + 745095, + 745254, + 745256, + 745262, + 745297, + 745408, + 745413, + 745437, + 746605, + 746653, + 746657, + 746951, + 747074, + 747123, + 747124, + 747125, + 747126, + 747127, + 747128, + 747130, + 747131, + 747132, + 747135, + 747136, + 747137, + 747139, + 747140, + 747141, + 747142, + 747145, + 747147, + 747206, + 747829, + 747830, + 747833, + 747840, + 747841, + 747842, + 747848, + 747906, + 747908, + 747997, + 748001, + 748011, + 748032, + 748109, + 748167, + 748336, + 748430, + 748477, + 748479, + 748966, + 749188, + 749261, + 749721, + 750454, + 750456, + 750469, + 750510, + 750641, + 751504, + 751505, + 751516, + 751941, + 752202, + 752214, + 752232, + 752350, + 752366, + 752427, + 752428, + 752896, + 752912, + 752914, + 752916, + 752928, + 752929, + 753300, + 753316, + 753318, + 753322, + 753333, + 753336, + 753341, + 753342, + 753344, + 753345, + 753347, + 753353, + 753357, + 753360, + 753365, + 753366, + 753374, + 753376, + 753381, + 753385, + 753388, + 753394, + 753550, + 753579, + 753893, + 754014, + 754113, + 754182, + 754527, + 754781, + 754894, + 754953, + 754954, + 754955, + 754956, + 754957, + 754958, + 754959, + 754960, + 754961, + 754962, + 754963, + 754965, + 754967, + 754968, + 754970, + 754971, + 754974, + 754978, + 754979, + 754980, + 755018, + 755034, + 755035, + 755037, + 755040, + 755046, + 755047, + 755052, + 755055, + 755058, + 755059, + 755250, + 755352, + 755695, + 755901, + 755907, + 755976, + 755979, + 756002, + 756072, + 756893, + 756988, + 757229, + 757355, + 757477, + 757737, + 757740, + 758109, + 758890, + 759093, + 759094, + 759095, + 759096, + 759098, + 759099, + 759101, + 759102, + 759103, + 759104, + 759105, + 759553, + 759652, + 759690, + 759868, + 759908, + 760109, + 760791, + 760946, + 761118, + 761119, + 761266, + 761638, + 761942, + 762076, + 762355, + 762401, + 762644, + 762646, + 762680, + 762941, + 763037, + 763306, + 763419, + 763785, + 763801, + 763815, + 763816, + 764226, + 764227, + 764230, + 764232, + 764233, + 764234, + 764235, + 764239, + 764240, + 764241, + 764242, + 764244, + 764246, + 764249, + 764252, + 764253, + 764254, + 764255, + 764256, + 764259, + 764260, + 764262, + 764265, + 764266, + 764269, + 764270, + 764271, + 764273, + 764274, + 764275, + 764335, + 764780, + 764782, + 764784, + 764785, + 764787, + 764792, + 764793, + 765352, + 766100, + 766138, + 767013, + 767110, + 767606, + 767643, + 767788, + 767935, + 767943, + 767948, + 768091, + 768347, + 768601, + 768643, + 768859, + 768866, + 769459, + 769655, + 769839, + 772042, + 772145, + 772490, + 772749, + 773286, + 773466, + 773467, + 773470, + 773547, + 773618, + 773624, + 773631, + 773771, + 773874, + 773999, + 774257, + 774302, + 774481, + 774482, + 774483, + 774485, + 774594, + 774848, + 774849, + 774850, + 774851, + 774852, + 774853, + 774854, + 774855, + 774857, + 774859, + 774865, + 774866, + 774867, + 774875, + 774876, + 774877, + 774879, + 774881, + 774883, + 774884, + 774885, + 774887, + 774888, + 774889, + 774890, + 775038, + 775647, + 775649, + 775650, + 775657, + 775665, + 775666, + 775858, + 775872, + 775992, + 776650, + 776653, + 776656, + 776660, + 776661, + 776674, + 776678, + 776690, + 776851, + 776852, + 776858, + 777168, + 777285, + 777458, + 777471, + 777536, + 777784, + 777937, + 777941, + 777994, + 778002, + 778285, + 778412, + 778532, + 778582, + 779075, + 779517, + 779571, + 779780, + 779781, + 779815, + 779927, + 780020, + 780225, + 780241, + 780341, + 780345, + 780400, + 780795, + 780939, + 780983, + 781122, + 781123, + 781186, + 781534, + 782238, + 782379, + 782381, + 782382, + 782386, + 782388, + 782389, + 782393, + 782397, + 782399, + 782401, + 782405, + 782408, + 782409, + 782410, + 782412, + 782413, + 783053, + 783054, + 783055, + 783056, + 783057, + 783058, + 783060, + 783061, + 783062, + 783244, + 783300, + 783302, + 783307, + 783326, + 783597, + 784052, + 784405, + 784693, + 784712, + 784717, + 784719, + 784739, + 784748, + 784750, + 785839, + 786022, + 786032, + 786081, + 786082, + 786084, + 786085, + 786106, + 786425, + 786558, + 786723, + 786752, + 787136, + 787138, + 787376, + 787405, + 787956, + 788254, + 788605, + 788677, + 789036, + 789068, + 789173, + 789408, + 789409, + 789569, + 789570, + 789575, + 789692, + 789693, + 789724, + 789776, + 789915, + 790060, + 790169, + 790864, + 790953, + 791377, + 791589, + 791643, + 791675, + 791681, + 791731, + 792431, + 792461, + 792470, + 792603, + 792870, + 792902, + 793064, + 793065, + 793125, + 793453, + 793458, + 793468, + 793470, + 793479, + 793481, + 793488, + 793492, + 793502, + 793508, + 793509, + 793510, + 793523, + 793582, + 793583, + 793628, + 793630, + 793635, + 793741, + 794025, + 794234, + 794664, + 794879, + 794881, + 794882, + 794883, + 794885, + 794889, + 794891, + 795177, + 795180, + 795188, + 795215, + 795659, + 795804, + 796093, + 796211, + 796342, + 796455, + 796588, + 796590, + 796591, + 796592, + 796594, + 796598, + 796599, + 796602, + 796604, + 796607, + 796925, + 798133, + 798251, + 798284, + 798677, + 799182, + 799231, + 799267, + 799348, + 799354, + 799355, + 799688, + 799744, + 800146, + 800153, + 800681, + 800999, + 801098, + 801252, + 801584, + 801774, + 801815, + 801933, + 801983, + 801984, + 801989, + 801993, + 801997, + 802137, + 802448, + 802533, + 802779, + 802832, + 803057, + 803942, + 804010, + 804411, + 804789, + 804818, + 804927, + 805059, + 805282, + 805347, + 805567, + 805609, + 805611, + 805878, + 806272, + 806377, + 806436, + 806702, + 806896, + 806977, + 807313, + 807449, + 807541, + 807992, + 808099, + 808100, + 808104, + 808788, + 809064, + 809356, + 809711, + 809856, + 810423, + 810424, + 810491, + 811395, + 811565, + 811736, + 811757, + 811760, + 812391, + 812453, + 812456, + 812459, + 812656, + 812925, + 812929, + 812938, + 812959, + 813407, + 813472, + 813704, + 813771, + 813877, + 814045, + 814048, + 814488, + 814963, + 814964, + 814965, + 814967, + 814969, + 814972, + 814974, + 814975, + 814976, + 814977, + 814979, + 814980, + 814981, + 814982, + 814983, + 814984, + 814985, + 814986, + 814988, + 814989, + 814990, + 814991, + 814992, + 814993, + 814994, + 814995, + 814996, + 814997, + 815001, + 815003, + 815004, + 815005, + 815006, + 815007, + 815008, + 815009, + 815010, + 815011, + 815076, + 815405, + 815648, + 816180, + 816449, + 816459, + 816643, + 816646, + 816649, + 816701, + 816994, + 817541, + 817818, + 817901, + 817903, + 818188, + 818328, + 818637, + 819519, + 819662, + 819729, + 819841, + 820401, + 820836, + 821285, + 821667, + 822410, + 822473, + 822796, + 823061, + 823325, + 823328, + 823475, + 824330, + 824432, + 825268, + 825850, + 825851, + 825955, + 826055, + 826559, + 826706, + 826708, + 826709, + 826710, + 826711, + 826714, + 826715, + 826716, + 826719, + 826720, + 826721, + 826722, + 826723, + 826724, + 826725, + 826824, + 826827, + 826828, + 826830, + 826832, + 826839, + 826840, + 826841, + 827129, + 827130, + 827132, + 827661, + 828374, + 828587, + 828589, + 828591, + 829342, + 829343, + 829355, + 829363, + 829379, + 829393, + 829406, + 829429, + 829439, + 829528, + 829980, + 829982, + 830091, + 830118, + 830168, + 830187, + 830192, + 830193, + 830195, + 830229, + 830463, + 831046, + 831254, + 831274, + 831276, + 831560, + 832013, + 832565, + 832655, + 832661, + 832688, + 832737, + 832768, + 832770, + 832899, + 832900, + 832905, + 832915, + 832916, + 832917, + 832924, + 832926, + 832951, + 832962, + 832988, + 832989, + 832992, + 833014, + 833027, + 833031, + 833038, + 833068, + 833070, + 833071, + 833073, + 833074, + 833075, + 833076, + 833078, + 833084, + 833087, + 833097, + 833099, + 833108, + 833125, + 833128, + 833155, + 833159, + 833161, + 833162, + 833163, + 833164, + 833165, + 833167, + 833168, + 833169, + 833173, + 833174, + 833175, + 833176, + 833177, + 833178, + 833179, + 833183, + 833198, + 833205, + 833207, + 833208, + 833212, + 833213, + 833214, + 833215, + 833217, + 833231, + 833235, + 833306, + 833315, + 833317, + 833326, + 833383, + 833403, + 833405, + 833408, + 833409, + 833412, + 833413, + 833415, + 833416, + 833417, + 833418, + 833419, + 833422, + 833423, + 833424, + 833425, + 833426, + 833435, + 833446, + 833448, + 833452, + 833454, + 833455, + 833495, + 833503, + 833547, + 833549, + 833554, + 833556, + 833560, + 833561, + 833562, + 833563, + 833579, + 833580, + 833667, + 833686, + 833687, + 833697, + 833698, + 833710, + 833722, + 833723, + 833756, + 833767, + 833770, + 833777, + 833787, + 833792, + 833794, + 833821, + 833824, + 833827, + 833835, + 833837, + 833839, + 833840, + 833843, + 833849, + 833850, + 833851, + 833877, + 833878, + 833879, + 833887, + 833891, + 833904, + 833949, + 833961, + 833964, + 833965, + 833967, + 833970, + 834007, + 834017, + 834019, + 834022, + 834047, + 834048, + 834050, + 834051, + 834067, + 834073, + 834088, + 834090, + 834092, + 834094, + 834101, + 834122, + 834157, + 834226, + 834229, + 834233, + 834240, + 834243, + 834244, + 834287, + 834311, + 834313, + 834316, + 834317, + 834318, + 834319, + 834325, + 834327, + 834329, + 834330, + 834333, + 834388, + 834389, + 834391, + 834392, + 834394, + 834450, + 834464, + 834469, + 834489, + 834491, + 834518, + 834522, + 834528, + 834533, + 834537, + 834577, + 834578, + 834611, + 834612, + 834636, + 834641, + 834645, + 834646, + 834647, + 834703, + 834711, + 834713, + 834839, + 834970, + 834971, + 834972, + 834973, + 834999, + 835005, + 835009, + 835010, + 835043, + 835044, + 835045, + 835054, + 835057, + 835059, + 835060, + 835061, + 835062, + 835063, + 835064, + 835070, + 835073, + 835080, + 835090, + 835100, + 835102, + 835104, + 835112, + 835113, + 835128, + 835187, + 835190, + 835213, + 835268, + 835339, + 835350, + 835378, + 835380, + 835393, + 835413, + 835476, + 835478, + 835481, + 835482, + 835486, + 835487, + 835493, + 835502, + 835518, + 835519, + 835520, + 835526, + 835529, + 835548, + 835562, + 835567, + 835589, + 835622, + 835623, + 835624, + 835626, + 835627, + 835628, + 835629, + 835630, + 835631, + 835632, + 835633, + 835634, + 835635, + 835636, + 835637, + 835638, + 835639, + 835641, + 835643, + 835644, + 835646, + 835647, + 835648, + 835649, + 835650, + 835652, + 835653, + 835655, + 835656, + 835657, + 835658, + 835659, + 835660, + 835661, + 835662, + 835663, + 835664, + 835730, + 835731, + 835732, + 835733, + 835735, + 835739, + 835740, + 835801, + 835861, + 835862, + 835864, + 835865, + 835866, + 835867, + 835869, + 835871, + 835872, + 835873, + 835874, + 835875, + 835876, + 835920, + 835926, + 835968, + 835971, + 835977, + 836005, + 836010, + 836012, + 836049, + 836050, + 836051, + 836052, + 836053, + 836054, + 836055, + 836056, + 836057, + 836058, + 836059, + 836060, + 836061, + 836062, + 836063, + 836064, + 836065, + 836066, + 836067, + 836069, + 836071, + 836072, + 836081, + 836084, + 836085, + 836086, + 836104, + 836105, + 836114, + 836115, + 836116, + 836125, + 836151, + 836152, + 836153, + 836154, + 836155, + 836156, + 836182, + 836184, + 836185, + 836248, + 836285, + 836286, + 836343, + 836344, + 836345, + 836353, + 836354, + 836358, + 836360, + 836361, + 836362, + 836364, + 836365, + 836379, + 836380, + 836389, + 836429, + 836445, + 836446, + 836447, + 836448, + 836509, + 836510, + 836511, + 836512, + 836585, + 836587, + 836588, + 836589, + 836608, + 836654, + 836664, + 836665, + 836671, + 836681, + 836710, + 836714, + 836715, + 836737, + 836738, + 836739, + 836740, + 836741, + 836742, + 836743, + 836744, + 836745, + 836746, + 836747, + 836748, + 836749, + 836750, + 836751, + 836752, + 836753, + 836754, + 836755, + 836756, + 836757, + 836758, + 836759, + 836760, + 836761, + 836762, + 836763, + 836764, + 836765, + 836766, + 836767, + 836768, + 836769, + 836770, + 836771, + 836772, + 836773, + 836774, + 836775, + 836778, + 836779, + 836780, + 836781, + 836782, + 836783, + 836784, + 836785, + 836786, + 836787, + 836788, + 836789, + 836790, + 836791, + 836792, + 836793, + 836798, + 836874, + 836884, + 836885, + 836894, + 836896, + 836897, + 836899, + 836900, + 836901, + 837024, + 837034, + 837036, + 837037, + 837051, + 837062, + 837063, + 837101, + 837102, + 837104, + 837107, + 837109, + 837110, + 837111, + 837112, + 837114, + 837115, + 837116, + 837122, + 837123, + 837127, + 837128, + 837129, + 837130, + 837131, + 837135, + 837136, + 837137, + 837138, + 837140, + 837297, + 837343, + 837386, + 837431, + 837432, + 837433, + 837434, + 837435, + 837437, + 837438, + 837439, + 837440, + 837441, + 837442, + 837443, + 837444, + 837445, + 837446, + 837453, + 837458, + 837495, + 837497, + 837498, + 837502, + 837504, + 837511, + 837512, + 837515, + 837523, + 837527, + 837528, + 837529, + 837532, + 837533, + 837534, + 837535, + 837551, + 837562, + 837568, + 837570, + 837573, + 837575, + 837577, + 837582, + 837583, + 837584, + 837585, + 837588, + 837600, + 837613, + 837614, + 837615, + 837617, + 837618, + 837636, + 837656, + 837661, + 837673, + 837674, + 837701, + 837702, + 837706, + 837721, + 837875, + 837877, + 837881, + 837919, + 838039, + 838040, + 838100, + 838231, + 838234, + 838235, + 838236, + 838237, + 838240, + 838241, + 838243, + 838244, + 838280, + 838281, + 838282, + 838283, + 838284, + 838285, + 838286, + 838287, + 838288, + 838289, + 838290, + 838291, + 838380, + 838381, + 838401, + 838405, + 838407, + 838409, + 838431, + 838432, + 838447, + 838649, + 838839, + 838950, + 838951, + 838972, + 838974, + 838975, + 838984, + 839002, + 839006, + 839007, + 839009, + 839080, + 839085, + 839089, + 839231, + 839233, + 839239, + 839412, + 839498, + 839500, + 839504, + 839505, + 839507, + 839508, + 839510, + 839640, + 839678, + 839679, + 839696, + 839704, + 839875, + 839881, + 839882, + 839887, + 839986, + 839988, + 839989, + 839990, + 840036, + 840037, + 840038, + 840069, + 840070, + 840153, + 840160, + 840349, + 840391, + 840437, + 840438, + 840440, + 840457, + 840464, + 840465, + 840470, + 840471, + 840473, + 840474, + 840475, + 840476, + 840477, + 840483, + 840489, + 840538, + 840585, + 840727, + 840728, + 840729, + 840730, + 840731, + 840732, + 840733, + 840734, + 840735, + 840888, + 840893, + 840894, + 841180, + 841237, + 841252, + 841281, + 841283, + 841294, + 841355, + 841356, + 841431, + 841437, + 841439, + 841441, + 841453, + 841454, + 841455, + 841533, + 841571, + 841582, + 841585, + 841590, + 841592, + 841593, + 841660, + 841674, + 841675, + 841676, + 841735, + 841765, + 841766, + 841770, + 841771, + 841774, + 841776, + 841779, + 841781, + 841783, + 841784, + 841785, + 841787, + 841792, + 841793, + 841794, + 841796, + 841797, + 841802, + 841803, + 841806, + 841810, + 841811, + 842011, + 842085, + 842132, + 842134, + 842135, + 842210, + 842223, + 842233, + 842238, + 842253, + 842305, + 842307, + 842308, + 842309, + 842310, + 842521, + 842642, + 842644, + 842646, + 842647, + 842648, + 842713, + 842799, + 842822, + 842824, + 842825, + 842826, + 842827, + 842832, + 842834, + 842876, + 842888, + 842911, + 842912, + 842913, + 842914, + 842915, + 842917, + 842918, + 842982, + 843011, + 843012, + 843013, + 843014, + 843127, + 843305, + 843323, + 843354, + 843395, + 843396, + 843397, + 843398, + 843399, + 843400, + 843401, + 843402, + 843403, + 843404, + 843405, + 843406, + 843407, + 843408, + 843409, + 843410, + 843411, + 843412, + 843413, + 843414, + 843416, + 843417, + 843418, + 843419, + 843420, + 843421, + 843422, + 843423, + 843424, + 843425, + 843426, + 843427, + 843428, + 843429, + 843430, + 843431, + 843432, + 843433, + 843434, + 843435, + 843436, + 843437, + 843438, + 843439, + 843440, + 843441, + 843442, + 843443, + 843503, + 843530, + 843639, + 843640, + 843641, + 843642, + 843643, + 843644, + 843645, + 843646, + 843647, + 843648, + 843649, + 843651, + 843654, + 843655, + 843656, + 843657, + 843764, + 843766, + 843768, + 843779, + 843780, + 843781, + 843782, + 843783, + 843786, + 843787, + 843788, + 843791, + 843795, + 843798, + 843799, + 843803, + 843805, + 843806, + 843811, + 843814, + 843818, + 843819, + 843820, + 843821, + 843824, + 843825, + 843827, + 843829, + 843831, + 843833, + 843837, + 843839, + 843840, + 843846, + 843897, + 843911, + 843912, + 844065, + 844086, + 844147, + 844151, + 844157, + 844161, + 844166, + 844167, + 844180, + 844181, + 844183, + 844184, + 844185, + 844186, + 844207, + 844246, + 844248, + 844317, + 844322, + 844419, + 844441, + 844450, + 844451, + 844606, + 844616, + 844675, + 844997, + 844998, + 845007, + 845012, + 845013, + 845047, + 845055, + 845060, + 845068, + 845151, + 845152, + 845154, + 845156, + 845157, + 845158, + 845159, + 845160, + 845162, + 845174, + 845238, + 845358, + 845360, + 845430, + 845514, + 845518, + 845613, + 845752, + 845753, + 845756, + 845758, + 845761, + 845763, + 845764, + 845769, + 845770, + 845772, + 845775, + 845786, + 845919, + 846063, + 846066, + 846072, + 846158, + 846180, + 846281, + 846284, + 846285, + 846290, + 846292, + 846293, + 846295, + 846296, + 846301, + 846453, + 846507, + 846510, + 846511, + 846514, + 846515, + 846516, + 846519, + 846523, + 846526, + 846530, + 846531, + 846736, + 846740, + 846741, + 846750, + 846970, + 847110, + 847180, + 847368, + 847372, + 847398, + 847489, + 847739, + 847818, + 848064, + 848161, + 848162, + 848163, + 848261, + 848263, + 848268, + 848339, + 848406, + 848408, + 848409, + 848468, + 848520, + 848521, + 848538, + 848539, + 848540, + 848542, + 848549, + 848554, + 848555, + 848560, + 848757, + 849119, + 849120, + 849122, + 849123, + 849124, + 849126, + 849128, + 849142, + 849147, + 849150, + 849151, + 849152, + 849154, + 849182, + 849183, + 849185, + 849186, + 849187, + 849188, + 849189, + 849190, + 849191, + 849192, + 849194, + 849466, + 849470, + 849674, + 849690, + 849702, + 849733, + 849746, + 849793, + 849795, + 849899, + 850106, + 850115, + 850222, + 850223, + 850300, + 850347, + 850385, + 850428, + 850446, + 850447, + 850536, + 850537, + 850538, + 850889, + 850891, + 850892, + 850894, + 850899, + 850906, + 851135, + 851148, + 851183, + 851241, + 851242, + 851310, + 851312, + 851344, + 851419, + 851652, + 852031, + 852148, + 852160, + 852161, + 852178, + 852179, + 852188, + 852196, + 852202, + 852208, + 852221, + 852344, + 852345, + 852384, + 852386, + 852433, + 852439, + 852508, + 852526, + 852528, + 852529, + 852530, + 852531, + 852703, + 852709, + 852710, + 852712, + 852714, + 852805, + 852987, + 852992, + 853228, + 853272, + 853392, + 853477, + 853844, + 853955, + 853983, + 854011, + 854085, + 854088, + 854090, + 854094, + 854098, + 854099, + 854100, + 854104, + 854106, + 854109, + 854111, + 854113, + 854116, + 854117, + 854118, + 854119, + 854120, + 854121, + 854124, + 854129, + 854132, + 854133, + 854134, + 854136, + 854143, + 854144, + 854146, + 854151, + 854822, + 854823, + 854918, + 855032, + 855061, + 855063, + 855065, + 855066, + 855072, + 855073, + 855099, + 855140, + 855164, + 855167, + 855170, + 855180, + 855181, + 855182, + 855183, + 855185, + 855186, + 855187, + 855189, + 855190, + 855191, + 855217, + 855218, + 855219, + 855283, + 855390, + 855434, + 855438, + 855439, + 855443, + 855579, + 855709, + 855756, + 855785, + 855890, + 855927, + 856141, + 856226, + 856233, + 856238, + 856327, + 856328, + 856333, + 856334, + 856337, + 856586, + 857108, + 857114, + 857123, + 857319, + 857320, + 857321, + 857608, + 857764, + 857765, + 857842, + 857909, + 858371, + 858372, + 858376, + 858380, + 858387, + 858438, + 858441, + 858480, + 858575, + 858577, + 858578, + 858579, + 858633, + 858834, + 858951, + 858952, + 858953, + 858954, + 858955, + 858956, + 858958, + 858959, + 858967, + 858995, + 859024, + 859030, + 859034, + 859035, + 859046, + 859081, + 859087, + 859111, + 859118, + 859122, + 859125, + 859212, + 859339, + 859452, + 859780, + 859783, + 859878, + 860167, + 860230, + 860231, + 860305, + 860696, + 860715, + 860731, + 860803, + 860952, + 861012, + 861013, + 861270, + 861274, + 861275, + 861276, + 861282, + 861473, + 861483, + 861484, + 861487, + 861506, + 861581, + 861648, + 861649, + 861690, + 861716, + 861718, + 861786, + 861787, + 861790, + 861792, + 861793, + 861797, + 861800, + 861802, + 861803, + 861843, + 861951, + 861953, + 862050, + 862115, + 862396, + 862514, + 862516, + 862518, + 862520, + 862523, + 862530, + 862698, + 862724, + 862745, + 862746, + 862837, + 862839, + 862842, + 862885, + 862911, + 862913, + 863164, + 863165, + 863209, + 863220, + 863251, + 863279, + 863411, + 863470, + 863474, + 863475, + 863483, + 863486, + 863487, + 863490, + 863492, + 864315, + 864316, + 864350, + 864351, + 864352, + 864379, + 864546, + 864614, + 864616, + 864617, + 864618, + 864674, + 864684, + 864686, + 864690, + 865120, + 865411, + 865440, + 865497, + 865617, + 865618, + 865654, + 865659, + 865660, + 865661, + 866179, + 866292, + 866498, + 866594, + 866632, + 866646, + 866649, + 866651, + 866814, + 866958, + 866962, + 867046, + 867074, + 867083, + 867177, + 867180, + 867203, + 867250, + 867251, + 867252, + 867253, + 867254, + 867274, + 867276, + 867277, + 867403, + 867407, + 867462, + 867465, + 867470, + 867602, + 867659, + 867660, + 867711, + 867783, + 867824, + 867825, + 867826, + 867827, + 867828, + 867829, + 867830, + 867831, + 867833, + 867834, + 867946, + 867975, + 867980, + 867995, + 868025, + 868147, + 868164, + 868234, + 868235, + 868236, + 868237, + 868238, + 868240, + 868241, + 868242, + 868243, + 868244, + 868245, + 868246, + 868247, + 868248, + 868256, + 868261, + 868262, + 868264, + 868271, + 868298, + 868335, + 868471, + 868580, + 868607, + 868616, + 868752, + 868766, + 868780, + 868824, + 868890, + 868929, + 869031, + 869035, + 869036, + 869037, + 869039, + 869040, + 869570, + 869605, + 869629, + 869656, + 869796, + 869815, + 869956, + 869960, + 869998, + 870000, + 870019, + 870020, + 870029, + 870037, + 870042, + 870590, + 870665, + 870666, + 870667, + 870668, + 870671, + 870672, + 870673, + 870674, + 870676, + 870677, + 870678, + 870679, + 870680, + 870682, + 870683, + 870684, + 870685, + 870686, + 870692, + 870693, + 870694, + 870695, + 870696, + 870697, + 870699, + 870700, + 870701, + 870702, + 870703, + 870777, + 870792, + 870853, + 870854, + 870910, + 870912, + 870932, + 870984, + 871112, + 871147, + 871186, + 871205, + 871288, + 871347, + 871496, + 871582, + 871873, + 871969, + 871970, + 872030, + 872129, + 872440, + 872550, + 872672, + 872743, + 872899, + 873178, + 873182, + 873183, + 873185, + 873273, + 873294, + 873309, + 873346, + 873725, + 873760, + 873814, + 873906, + 874458, + 874477, + 874501, + 874561, + 874562, + 874639, + 874820, + 874821, + 874942, + 874943, + 874944, + 874945, + 874946, + 874947, + 875349, + 875350, + 875351, + 875352, + 875353, + 875354, + 875355, + 875357, + 875359, + 875360, + 875361, + 875362, + 875363, + 875364, + 875365, + 875366, + 875367, + 875368, + 875369, + 875495, + 875497, + 875650, + 875846, + 875851, + 876088, + 876090, + 876092, + 876095, + 876096, + 876098, + 876099, + 876100, + 876102, + 876103, + 876104, + 876107, + 876109, + 876110, + 876112, + 876114, + 876115, + 876117, + 876120, + 876121, + 876122, + 876128, + 876377, + 876378, + 877151, + 877506, + 877516, + 877517, + 877520, + 877521, + 877522, + 877523, + 877524, + 877525, + 877526, + 877527, + 877563, + 877595, + 877614, + 877670, + 877746, + 877776, + 877886, + 878141, + 878310, + 878312, + 878316, + 878386, + 878389, + 878464, + 878651, + 878658, + 878824, + 878825, + 878831, + 878991, + 879156, + 879554, + 879626, + 879794, + 879796, + 880236, + 880285, + 880293, + 880564, + 880605, + 880725, + 880769, + 880941, + 880947, + 880957, + 881437, + 881441, + 881443, + 881596, + 881671, + 881672, + 881673, + 881674, + 881675, + 881676, + 881678, + 881679, + 881680, + 881681, + 881683, + 881684, + 881685, + 881686, + 881687, + 881688, + 881689, + 881690, + 881691, + 881692, + 881693, + 881713, + 881800, + 881979, + 882018, + 882020, + 882024, + 882026, + 882345, + 882348, + 882350, + 882352, + 882354, + 882355, + 882358, + 882717, + 882719, + 882721, + 882724, + 882753, + 882754, + 882755, + 882756, + 882757, + 882758, + 882759, + 882760, + 882761, + 882762, + 882763, + 882764, + 882765, + 882768, + 882769, + 882771, + 882772, + 882773, + 882774, + 882775, + 882776, + 882777, + 882778, + 882779, + 882780, + 882781, + 882782, + 882784, + 882785, + 882787, + 882788, + 882789, + 882790, + 882791, + 882792, + 882793, + 882794, + 882795, + 882796, + 882799, + 882800, + 882801, + 882803, + 882804, + 882805, + 882806, + 882807, + 882808, + 882809, + 882811, + 882812, + 882813, + 882814, + 882815, + 882816, + 882817, + 882818, + 882819, + 882820, + 882822, + 882823, + 882824, + 882825, + 882826, + 882827, + 882828, + 882829, + 882839, + 882840, + 882841, + 882842, + 882846, + 882847, + 882852, + 882854, + 882856, + 882857, + 882858, + 882911, + 883130, + 883257, + 883315, + 883337, + 883373, + 883380, + 883513, + 883566, + 883689, + 883759, + 883762, + 883763, + 883764, + 883765, + 883767, + 883768, + 883770, + 883771, + 883774, + 883777, + 883789, + 883952, + 883953, + 883959, + 883962, + 883964, + 883966, + 883967, + 884062, + 884093, + 884101, + 884113, + 884114, + 884120, + 884124, + 884129, + 884130, + 884343, + 884345, + 884528, + 884529, + 884530, + 884531, + 884544, + 884554, + 884578, + 884579, + 884580, + 884581, + 884584, + 884585, + 884587, + 884593, + 884594, + 884598, + 884599, + 884602, + 884607, + 884699, + 884700, + 885223, + 885383, + 885403, + 885766, + 885767, + 885768, + 885851, + 885858, + 885859, + 885930, + 885969, + 885981, + 885982, + 885983, + 885986, + 885988, + 885989, + 885991, + 886018, + 886376, + 886424, + 886430, + 886435, + 886459, + 886906, + 886911, + 886987, + 887549, + 887550, + 887610, + 888189, + 888190, + 888261, + 888262, + 888264, + 888399, + 888401, + 888402, + 888407, + 888408, + 888414, + 888440, + 888615, + 888659, + 888660, + 888766, + 888772, + 888776, + 888782, + 889053, + 889171, + 889172, + 889174, + 889186, + 889371, + 889695, + 889696, + 889697, + 889698, + 889701, + 889703, + 889704, + 889706, + 889710, + 889711, + 889713, + 889715, + 889717, + 889836, + 889925, + 890065, + 890246, + 890287, + 890290, + 890339, + 890345, + 890346, + 890350, + 890351, + 890352, + 890355, + 890359, + 890360, + 890361, + 890414, + 890817, + 890850, + 890867, + 890868, + 890869, + 890870, + 890871, + 890872, + 890873, + 890874, + 890875, + 890876, + 890877, + 890878, + 890887, + 890888, + 890910, + 890911, + 890912, + 890913, + 890923, + 890924, + 890925, + 890926, + 890943, + 890944, + 890976, + 890989, + 890990, + 890992, + 890993, + 890995, + 890996, + 890997, + 891105, + 891200, + 891202, + 891211, + 891212, + 891213, + 891215, + 891221, + 891222, + 891254, + 891255, + 891256, + 891267, + 891269, + 891270, + 891277, + 891278, + 891287, + 891288, + 891289, + 891320, + 891321, + 891322, + 891323, + 891324, + 891325, + 891326, + 891327, + 891328, + 891329, + 891330, + 891349, + 891350, + 891352, + 891354, + 891355, + 891601, + 892049, + 892553, + 892574, + 892575, + 892576, + 892578, + 892581, + 892583, + 892585, + 892587, + 892643, + 892882, + 893049, + 893051, + 893057, + 893098, + 893101, + 893192, + 893218, + 893241, + 893638, + 893661, + 893771, + 893785, + 893786, + 893854, + 893898, + 893904, + 893999, + 894022, + 894023, + 894200, + 894398, + 894582, + 895079, + 895092, + 895108, + 895152, + 895161, + 895375, + 895390, + 895562, + 895563, + 895682, + 895708, + 895709, + 895780, + 895783, + 895791, + 895795, + 895797, + 895999, + 896005, + 896092, + 896116, + 896126, + 896230, + 896231, + 896232, + 896233, + 896234, + 896236, + 896237, + 896238, + 896239, + 896241, + 896242, + 896243, + 896244, + 896245, + 896246, + 896247, + 896249, + 896436, + 896679, + 896717, + 896858, + 896890, + 896995, + 897150, + 897153, + 897155, + 897273, + 897377, + 897484, + 897507, + 897736, + 897737, + 897863, + 897864, + 897865, + 897866, + 897867, + 897903, + 898168, + 898169, + 898170, + 898171, + 898391, + 898392, + 898393, + 898394, + 898395, + 898396, + 898397, + 898398, + 898400, + 898401, + 898402, + 898403, + 898440, + 898441, + 898543, + 898544, + 898553, + 898570, + 898573, + 898577, + 898580, + 898583, + 898588, + 898590, + 898629, + 898630, + 898753, + 898755, + 898855, + 898908, + 898978, + 899267, + 899270, + 899271, + 899349, + 899353, + 899504, + 899541, + 899552, + 899562, + 899563, + 899564, + 899565, + 899566, + 899567, + 899569, + 899570, + 899574, + 899591, + 899624, + 899625, + 899626, + 899658, + 899689, + 899690, + 899691, + 899692, + 899693, + 899862, + 899863, + 899864, + 899865, + 899899, + 900027, + 900056, + 900100, + 900110, + 900160, + 900180, + 900268, + 900291, + 900292, + 900295, + 900303, + 900304, + 900305, + 900306, + 900310, + 900311, + 900378, + 900433, + 900448, + 900750, + 900808, + 900820, + 900831, + 900884, + 900971, + 900975, + 900979, + 901089, + 901539, + 901588, + 901589, + 901590, + 901591, + 901687, + 901753, + 901879, + 901880, + 901902, + 902275, + 902278, + 902301, + 902335, + 902489, + 902709, + 902732, + 902966, + 902976, + 902977, + 902978, + 902979, + 902988, + 903022, + 903073, + 903290, + 903344, + 903357, + 903358, + 903359, + 903360, + 903361, + 903362, + 903363, + 903364, + 903366, + 903367, + 903368, + 903370, + 903371, + 903373, + 903374, + 903377, + 903378, + 903381, + 903382, + 903383, + 903384, + 903385, + 903386, + 903387, + 903388, + 903390, + 903391, + 903392, + 903393, + 903394, + 903396, + 903397, + 903398, + 903399, + 903400, + 903404, + 903405, + 903406, + 903407, + 903409, + 903476, + 903670, + 903672, + 903731, + 903755, + 903787, + 903789, + 903967, + 904058, + 904084, + 904196, + 904276, + 904278, + 904702, + 905685, + 906347, + 906348, + 906653, + 907451, + 907452, + 907453, + 907457, + 907578, + 907583, + 907617, + 907984, + 907989, + 908380, + 908743, + 908940, + 909198, + 909199, + 909271, + 909567, + 909596, + 909598, + 909599, + 909600, + 909704, + 909705, + 909707, + 909708, + 909709, + 909710, + 909711, + 909713, + 909857, + 909928, + 909961, + 909998, + 909999, + 910000, + 910001, + 910002, + 910003, + 910004, + 910005, + 910006, + 910007, + 910008, + 910010, + 910011, + 910012, + 910013, + 910014, + 910015, + 910016, + 910017, + 910018, + 910019, + 910020, + 910021, + 910022, + 910023, + 910024, + 910025, + 910026, + 910027, + 910028, + 910029, + 910031, + 910032, + 910054, + 910058, + 910066, + 910069, + 910077, + 910082, + 910085, + 910088, + 910091, + 910434, + 910474, + 910587, + 910618, + 910667, + 911589, + 911677, + 911780, + 911781, + 911782, + 911933, + 911965, + 912006, + 912209, + 912298, + 912342, + 912384, + 912385, + 912397, + 912555, + 912702, + 912790, + 912866, + 912978, + 912981, + 912997, + 913003, + 913009, + 913017, + 913018, + 913039, + 913189, + 913190, + 913192, + 913194, + 913209, + 913345, + 913347, + 913348, + 913656, + 913747, + 913758, + 913943, + 913952, + 913965, + 914140, + 914150, + 914662, + 914836, + 914837, + 914838, + 914839, + 914840, + 914842, + 914843, + 914907, + 915084, + 915121, + 915122, + 915123, + 915265, + 915266, + 915267, + 915270, + 915272, + 915325, + 915330, + 915350, + 915351, + 915352, + 915353, + 915354, + 915355, + 915367, + 915368, + 915369, + 915370, + 915371, + 915372, + 915373, + 915374, + 915375, + 915470, + 915478, + 915657, + 915941, + 915970, + 916039, + 916040, + 916044, + 916048, + 916050, + 916053, + 916056, + 916057, + 916058, + 916059, + 916061, + 916063, + 916065, + 916066, + 916067, + 916070, + 916071, + 916073, + 916074, + 916076, + 916077, + 916078, + 916079, + 916080, + 916081, + 916083, + 916085, + 916088, + 916090, + 916363, + 916597, + 917016, + 917023, + 917029, + 917154, + 917253, + 917255, + 917256, + 917257, + 917259, + 917260, + 917262, + 917264, + 917265, + 917267, + 917270, + 917271, + 917272, + 917274, + 917277, + 917320, + 917321, + 917322, + 917324, + 917325, + 917326, + 917327, + 917328, + 917330, + 917331, + 917333, + 917334, + 917335, + 917336, + 917337, + 917338, + 917339, + 917340, + 917341, + 917342, + 917343, + 917344, + 917345, + 917346, + 917347, + 917348, + 917375, + 917384, + 917606, + 917608, + 917610, + 917748, + 918090, + 918107, + 918108, + 918222, + 918761, + 918769, + 918770, + 918924, + 918927, + 918928, + 918929, + 918931, + 918932, + 918983, + 919086, + 919087, + 919090, + 919145, + 919177, + 919182, + 919541, + 919543, + 919598, + 919795, + 919883, + 920106, + 920909, + 920910, + 920911, + 920916, + 921552, + 921595, + 921696, + 922015, + 922016, + 922215, + 922551, + 923103, + 923347, + 923349, + 923350, + 923522, + 924076, + 924326, + 924327, + 924331, + 924332, + 924333, + 924402, + 924404, + 924407, + 924509, + 924651, + 924652, + 924653, + 924654, + 924656, + 924657, + 924870, + 924908, + 925123, + 925130, + 925131, + 925132, + 925134, + 925135, + 925136, + 925137, + 925139, + 925140, + 925197, + 925201, + 925202, + 925207, + 925211, + 925221, + 925230, + 925385, + 925394, + 925545, + 925622, + 925929, + 925944, + 925945, + 925971, + 926198, + 926199, + 926201, + 926208, + 926325, + 926334, + 926336, + 926713, + 926716, + 926717, + 926718, + 926719, + 926720, + 926722, + 926723, + 926725, + 926728, + 926730, + 926731, + 926929, + 926979, + 927180, + 927501, + 927974, + 928271, + 928276, + 928602, + 928771, + 928772, + 928774, + 929026, + 929165, + 929231, + 929234, + 929237, + 929513, + 929640, + 930409, + 930728, + 930730, + 930973, + 931242, + 931243, + 931244, + 931253, + 931254, + 931337, + 931338, + 931339, + 931361, + 931363, + 931368, + 931379, + 931382, + 931394, + 931411, + 931414, + 931425, + 931523, + 931536, + 931579, + 931580, + 931702, + 931708, + 931717, + 931721, + 931733, + 931948, + 932061, + 932064, + 932065, + 932775, + 933312, + 933325, + 933326, + 933395, + 933483, + 933500, + 933737, + 933739, + 933757, + 933896, + 933903, + 934061, + 934063, + 934064, + 934065, + 934067, + 934068, + 934069, + 934070, + 934072, + 934073, + 934076, + 934077, + 934078, + 934080, + 934082, + 934083, + 934084, + 934085, + 934628, + 934629, + 934631, + 934632, + 934633, + 934646, + 934647, + 934706, + 934707, + 934708, + 934709, + 934710, + 934726, + 934732, + 934734, + 934735, + 934736, + 934737, + 934738, + 934788, + 934789, + 934790, + 935385, + 935534, + 935535, + 935538, + 935568, + 935689, + 935690, + 935810, + 935811, + 935812, + 935813, + 935814, + 935815, + 935816, + 935820, + 935828, + 935861, + 935862, + 935863, + 935864, + 935865, + 935866, + 935867, + 935868, + 935869, + 936204, + 936309, + 936310, + 936311, + 936380, + 936381, + 936382, + 936383, + 936804, + 936805, + 936806, + 936807, + 937075, + 937076, + 937077, + 937078, + 937141, + 937142, + 937144, + 937165, + 937175, + 937390, + 937977, + 938083, + 938317, + 938337, + 938655, + 938661, + 938915, + 938925, + 939027, + 939028, + 939029, + 939030, + 939034, + 939545, + 939761, + 939870, + 939899, + 939900, + 940013, + 940093, + 940128, + 940575, + 940576, + 940578, + 940597, + 940943, + 940947, + 940949, + 940959, + 940960, + 940969, + 941001, + 941004, + 941008, + 941010, + 941014, + 941024, + 941027, + 941032, + 941033, + 941045, + 941168, + 941280, + 941539, + 941568, + 941572, + 941638, + 941727, + 941810, + 941864, + 941937, + 941938, + 941939, + 941941, + 941942, + 942019, + 942172, + 942284, + 942342, + 942451, + 942452, + 942540, + 942580, + 942776, + 942788, + 942852, + 942973, + 942974, + 942975, + 942976, + 942977, + 942978, + 942979, + 942980, + 942981, + 942982, + 942983, + 942984, + 942985, + 942986, + 942987, + 942988, + 942990, + 942991, + 942992, + 942993, + 942994, + 942996, + 942997, + 942998, + 942999, + 943001, + 943002, + 943003, + 943004, + 943005, + 943006, + 943007, + 943010, + 943012, + 943013, + 943014, + 943015, + 943016, + 943018, + 943019, + 943020, + 943021, + 943022, + 943023, + 943024, + 943025, + 943026, + 943027, + 943029, + 943031, + 943032, + 943453, + 944042, + 944146, + 944158, + 944523, + 944561, + 944662, + 945556, + 945657, + 945980, + 946192, + 946193, + 946195, + 946242, + 946245, + 946261, + 946262, + 946365, + 946368, + 946554, + 946618, + 946836, + 946913, + 946948, + 946950, + 946996, + 946997, + 947012, + 947047, + 947185, + 947361, + 947769, + 947771, + 947772, + 947778, + 948160, + 948556, + 948560, + 948566, + 948668, + 948983, + 949083, + 949175, + 949276, + 949474, + 949647, + 949917, + 949919, + 950180, + 950551, + 950954, + 951173, + 951194, + 951259, + 951326, + 951720, + 951867, + 952439, + 952624, + 953110, + 953112, + 953178, + 953868, + 953904, + 953906, + 953907, + 953908, + 953909, + 953910, + 953911, + 953912, + 953913, + 953914, + 953915, + 953916, + 953917, + 953920, + 953921, + 953922, + 953923, + 953924, + 953925, + 953926, + 953927, + 953929, + 953930, + 953931, + 953932, + 953933, + 953935, + 953938, + 953939, + 953941, + 953943, + 953944, + 953945, + 953946, + 953947, + 953950, + 953951, + 953953, + 953955, + 953956, + 953957, + 953959, + 953960, + 953961, + 953963, + 953965, + 953966, + 953967, + 953968, + 953969, + 953971, + 953972, + 953973, + 953974, + 953975, + 953976, + 953977, + 953978, + 954270, + 954278, + 954383, + 954495, + 954522, + 954627, + 954629, + 954636, + 954699, + 954701, + 954704, + 954705, + 954707, + 954708, + 954795, + 954965, + 955038, + 955239, + 955632, + 955643, + 955645, + 955646, + 955647, + 955993, + 955997, + 955999, + 956001, + 956216, + 956327, + 956547, + 956561, + 956663, + 956664, + 956668, + 956673, + 956888, + 956980, + 957085, + 957098, + 957152, + 957263, + 957606, + 957607, + 957651, + 957656, + 957658, + 957661, + 957662, + 957663, + 957664, + 957724, + 957730, + 958011, + 958012, + 958146, + 958186, + 958391, + 958561, + 959032, + 959112, + 959326, + 959372, + 959373, + 959374, + 959375, + 959376, + 959400, + 959402, + 959403, + 959406, + 959407, + 959408, + 959409, + 959414, + 959415, + 959418, + 959420, + 959422, + 959423, + 959672, + 959701, + 959702, + 959703, + 959744, + 959846, + 959952, + 960058, + 960086, + 960241, + 960243, + 960293, + 960483, + 960889, + 960890, + 960891, + 960895, + 960897, + 960898, + 960899, + 960900, + 960902, + 960904, + 960905, + 960906, + 960909, + 960910, + 960911, + 960912, + 960913, + 960914, + 960915, + 960921, + 960922, + 960923, + 960924, + 960925, + 960926, + 960927, + 960930, + 960931, + 960932, + 960933, + 960934, + 960935, + 960936, + 960937, + 960938, + 960939, + 960940, + 960941, + 960942, + 960944, + 960945, + 960946, + 960947, + 960948, + 960949, + 960950, + 960951, + 960952, + 961037, + 961371, + 961372, + 961373, + 961375, + 961376, + 961377, + 961378, + 961379, + 961380, + 961381, + 961382, + 961383, + 961384, + 961385, + 961386, + 961387, + 961388, + 961594, + 961681, + 961682, + 961683, + 961684, + 961685, + 961687, + 961688, + 961689, + 961690, + 961691, + 961719, + 961721, + 961722, + 961723, + 961724, + 961726, + 961727, + 961728, + 961729, + 961730, + 961731, + 961733, + 961734, + 961735, + 961736, + 961737, + 961739, + 961740, + 961741, + 961742, + 961743, + 961744, + 961745, + 961746, + 961747, + 961748, + 961749, + 961750, + 961751, + 961752, + 961753, + 961754, + 961755, + 961756, + 961757, + 961758, + 961759, + 961760, + 961770, + 961981, + 961983, + 962064, + 962076, + 962090, + 962096, + 962106, + 962109, + 962110, + 962339, + 962477, + 962479, + 962480, + 962481, + 962484, + 962485, + 962486, + 962487, + 962491, + 962492, + 962493, + 962494, + 962495, + 962496, + 962497, + 962500, + 962501, + 962521, + 962718, + 962719, + 962970, + 963038, + 963375, + 963466, + 963612, + 963656, + 963965, + 963967, + 963968, + 963969, + 963970, + 963971, + 963972, + 963993, + 963995, + 963999, + 964127, + 964128, + 964129, + 964130, + 964132, + 964133, + 964134, + 964135, + 964287, + 964954, + 965045, + 965144, + 965298, + 965299, + 965330, + 965405, + 965556, + 965987, + 966221, + 966367, + 966368, + 966373, + 966676, + 966876, + 966985, + 966990, + 967364, + 967371, + 967372, + 967373, + 967375, + 967378, + 967379, + 967380, + 967381, + 967383, + 967384, + 967388, + 967389, + 967390, + 967480, + 967557, + 967612, + 967686, + 967691, + 967805, + 967822, + 968013, + 968014, + 968015, + 968016, + 968017, + 968018, + 968087, + 968088, + 968106, + 968226, + 968275, + 968296, + 969022, + 969043, + 969045, + 969363, + 969402, + 969404, + 969405, + 969698, + 969701, + 969784, + 969785, + 969787, + 970306, + 970312, + 970339, + 970908, + 971039, + 971041, + 971042, + 971452, + 971453, + 971460, + 971765, + 972329, + 972378, + 972853, + 972925, + 973130, + 973228, + 973369, + 973391, + 973392, + 973393, + 973394, + 973395, + 973397, + 973399, + 973400, + 973401, + 973402, + 973403, + 973471, + 973597, + 973603, + 973661, + 973802, + 973822, + 973825, + 973826, + 974405, + 974486, + 974490, + 974537, + 974618, + 974621, + 974622, + 974623, + 974748, + 975143, + 975170, + 975269, + 975354, + 975875, + 976045, + 976128, + 976462, + 976680, + 977182, + 977192, + 977281, + 977445, + 977673, + 977674, + 977801, + 977853, + 977990, + 978006, + 978039, + 978175, + 978241, + 978332, + 978333, + 978421, + 978428, + 978494, + 978698, + 978975, + 978979, + 979074, + 979192, + 979201, + 979331, + 979429, + 979465, + 979554, + 979750, + 979751, + 979765, + 979766, + 980033, + 980145, + 980181, + 980209, + 980231, + 980566, + 980725, + 980864, + 980987, + 981419, + 981549, + 981660, + 981665, + 981666, + 981747, + 982018, + 982091, + 982364, + 982403, + 982664, + 983107, + 983448, + 983595, + 983603, + 983605, + 983609, + 983622, + 983624, + 983759, + 983794, + 983795, + 983824, + 983825, + 983953, + 984171, + 984174, + 984186, + 984336, + 984444, + 984477, + 984563, + 985039, + 985659, + 985767, + 985837, + 985838, + 985920, + 985932, + 985935, + 986147, + 986215, + 986222, + 986655, + 986715, + 986864, + 986893, + 986947, + 986992, + 987315, + 988312, + 988824, + 988888, + 989029, + 989086, + 989087, + 989088, + 989090, + 989091, + 989093, + 989094, + 989096, + 989097, + 989098, + 989406, + 989684, + 989692, + 990166, + 990169, + 990481, + 990510, + 990584, + 990882, + 990883, + 990885, + 990886, + 990887, + 990888, + 990889, + 990890, + 990891, + 990892, + 990893, + 990894, + 990896, + 990897, + 990898, + 990899, + 990900, + 990901, + 990902, + 991021, + 991389, + 991427, + 991529, + 991532, + 991593, + 991968, + 992204, + 992281, + 992386, + 992633, + 992636, + 992689, + 993609, + 993610, + 993614, + 993621, + 994164, + 994322, + 994323, + 995013, + 995144, + 995259, + 995424, + 995425, + 995426, + 995716, + 995718, + 995722, + 995764, + 995971, + 996244, + 996441, + 996805, + 997071, + 997087, + 997088, + 997089, + 997090, + 997311, + 997415, + 997509, + 997510, + 997511, + 997512, + 997513, + 997515, + 997516, + 997517, + 997520, + 997585, + 997682, + 997683, + 997685, + 997974, + 998332, + 998334, + 998335, + 998337, + 998339, + 998340, + 998416, + 998669, + 998775, + 998809, + 998818, + 998824, + 998825, + 998854, + 998906, + 998946, + 998967, + 999186, + 999656, + 999665, + 999668, + 999670, + 999671, + 999673, + 999676, + 999677, + 999749, + 999750, + 999751, + 999878, + 999882, + 999883, + 999895, + 999914, + 1000049, + 1000068, + 1000282, + 1000529, + 1000564, + 1000565, + 1000567, + 1000570, + 1000578, + 1000583, + 1000588, + 1000591, + 1000885, + 1000886, + 1000942, + 1000997, + 1001308, + 1001316, + 1001319, + 1001462, + 1001506, + 1001522, + 1001528, + 1001534, + 1001539, + 1001615, + 1001616, + 1001660, + 1001735, + 1001736, + 1001737, + 1001738, + 1001741, + 1002039, + 1002256, + 1002257, + 1002261, + 1002262, + 1002264, + 1002368, + 1002414, + 1002435, + 1002575, + 1002590, + 1002595, + 1002661, + 1002662, + 1002663, + 1002665, + 1002666, + 1002667, + 1002668, + 1002669, + 1002670, + 1002671, + 1002672, + 1002963, + 1003175, + 1003248, + 1003368, + 1003562, + 1003563, + 1004107, + 1004108, + 1004109, + 1004110, + 1004111, + 1004113, + 1004114, + 1004115, + 1004117, + 1004118, + 1004119, + 1004123, + 1004125, + 1004126, + 1004127, + 1004130, + 1004131, + 1004133, + 1004135, + 1004136, + 1004137, + 1004144, + 1004148, + 1004149, + 1004150, + 1004151, + 1004152, + 1004155, + 1004160, + 1004163, + 1004167, + 1004171, + 1004172, + 1004176, + 1004177, + 1004365, + 1005047, + 1005207, + 1005209, + 1005618, + 1005619, + 1005633, + 1005869, + 1005870, + 1005871, + 1005872, + 1005873, + 1005874, + 1005875, + 1005876, + 1005879, + 1005880, + 1005881, + 1005882, + 1005883, + 1005884, + 1005885, + 1005886, + 1005888, + 1005890, + 1005891, + 1005892, + 1005893, + 1005894, + 1005895, + 1005897, + 1005898, + 1005899, + 1005900, + 1005901, + 1005902, + 1005903, + 1005904, + 1005905, + 1005954, + 1006070, + 1006206, + 1006585, + 1006697, + 1006839, + 1006992, + 1007099, + 1007116, + 1007236, + 1007862, + 1008345, + 1008367, + 1008524, + 1008810, + 1008899, + 1008900, + 1008901, + 1008905, + 1008906, + 1008910, + 1008913, + 1008914, + 1009231, + 1009232, + 1009274, + 1009276, + 1009722, + 1010097, + 1010357, + 1010601, + 1011080, + 1011289, + 1011291, + 1011478, + 1011627, + 1011647, + 1011659, + 1011663, + 1011738, + 1012143, + 1012162, + 1012163, + 1012165, + 1012166, + 1012167, + 1012169, + 1012509, + 1012570, + 1012862, + 1013241, + 1013244, + 1013245, + 1013331, + 1013451, + 1013532, + 1013533, + 1013781, + 1013817, + 1013933, + 1013937, + 1014032, + 1014090, + 1014176, + 1014210, + 1014247, + 1014314, + 1014466, + 1014627, + 1014631, + 1014814, + 1015406, + 1015420, + 1015581, + 1015586, + 1015587, + 1015647, + 1015648, + 1015821, + 1015822, + 1015824, + 1015828, + 1015907, + 1015967, + 1016008, + 1016009, + 1016302, + 1016349, + 1016352, + 1016355, + 1016356, + 1016359, + 1016869, + 1016904, + 1017619, + 1017624, + 1017625, + 1018262, + 1018266, + 1018283, + 1018371, + 1018373, + 1018374, + 1018963, + 1020052, + 1020054, + 1020056, + 1020057, + 1020163, + 1020483, + 1020953, + 1021032, + 1021444, + 1021575, + 1021588, + 1021589, + 1021590, + 1021593, + 1021594, + 1021595, + 1021596, + 1021598, + 1021599, + 1021600, + 1021601, + 1021604, + 1021605, + 1021606, + 1021607, + 1021608, + 1021610, + 1021613, + 1021614, + 1021616, + 1021617, + 1021618, + 1021708, + 1021950, + 1021957, + 1022315, + 1022322, + 1022419, + 1022474, + 1022578, + 1022692, + 1022779, + 1023073, + 1023082, + 1023084, + 1023087, + 1023088, + 1023089, + 1023648, + 1023670, + 1023672, + 1023975, + 1024263, + 1024296, + 1024298, + 1024332, + 1024333, + 1024709, + 1025074, + 1025143, + 1025144, + 1025159, + 1025162, + 1025199, + 1025200, + 1025212, + 1025214, + 1025222, + 1025295, + 1025298, + 1025303, + 1025374, + 1025548, + 1025653, + 1025663, + 1025964, + 1025979, + 1026196, + 1026197, + 1026198, + 1026388, + 1026736, + 1026737, + 1026738, + 1026741, + 1026778, + 1026902, + 1027253, + 1027263, + 1027572, + 1027681, + 1027687, + 1028000, + 1028005, + 1028007, + 1028021, + 1028079, + 1028119, + 1028272, + 1028273, + 1028293, + 1029418, + 1029576, + 1029577, + 1030125, + 1030149, + 1030674, + 1030968, + 1031130, + 1031133, + 1031135, + 1031138, + 1031140, + 1031144, + 1031145, + 1031146, + 1031169, + 1031230, + 1031883, + 1031969, + 1031971, + 1032050, + 1032052, + 1032218, + 1032224, + 1032225, + 1032227, + 1032243, + 1032252, + 1032253, + 1032254, + 1032256, + 1032258, + 1032262, + 1032265, + 1032272, + 1032273, + 1032276, + 1032277, + 1032278, + 1032279, + 1032367, + 1032371, + 1032422, + 1032914, + 1033026, + 1033033, + 1033035, + 1033059, + 1034209, + 1034210, + 1034213, + 1034454, + 1034456, + 1034460, + 1034461, + 1034466, + 1034470, + 1034911, + 1034913, + 1035445, + 1035763, + 1035764, + 1035768, + 1036751, + 1036752, + 1036777, + 1036778, + 1036899, + 1036933, + 1037075, + 1037332, + 1037523, + 1037595, + 1037608, + 1037646, + 1037650, + 1037654, + 1037655, + 1037660, + 1037686, + 1037718, + 1037719, + 1037813, + 1038052, + 1038095, + 1038472, + 1038491, + 1038545, + 1038546, + 1038994, + 1039457, + 1039605, + 1039625, + 1039991, + 1040429, + 1040439, + 1040665, + 1040963, + 1041382, + 1041404, + 1041897, + 1041914, + 1042141, + 1042414, + 1042588, + 1042860, + 1042880, + 1042892, + 1042951, + 1043138, + 1043142, + 1043204, + 1043206, + 1043555, + 1043556, + 1043557, + 1043663, + 1043664, + 1043795, + 1043813, + 1043843, + 1043922, + 1044092, + 1044097, + 1044103, + 1044350, + 1044539, + 1044793, + 1044799, + 1044808, + 1044981, + 1045342, + 1045366, + 1045369, + 1045526, + 1045528, + 1045529, + 1045530, + 1045583, + 1045598, + 1045602, + 1045606, + 1045608, + 1045613, + 1045932, + 1045974, + 1046398, + 1046400, + 1046875, + 1046944, + 1046945, + 1047057, + 1047060, + 1047061, + 1047066, + 1047073, + 1047075, + 1047078, + 1047084, + 1047624, + 1047625, + 1047626, + 1047628, + 1047977, + 1048110, + 1048250, + 1048395, + 1048400, + 1048401, + 1048445, + 1048603, + 1048615, + 1048678, + 1049040, + 1049152, + 1049153, + 1049210, + 1049255, + 1049326, + 1049477, + 1049594, + 1049596, + 1049653, + 1049670, + 1049683, + 1049829, + 1049871, + 1050148, + 1050149, + 1050297, + 1050408, + 1050426, + 1050427, + 1050428, + 1050990, + 1051011, + 1051012, + 1051015, + 1051016, + 1051018, + 1051021, + 1051024, + 1051025, + 1051027, + 1051030, + 1051031, + 1051034, + 1051441, + 1051684, + 1052027, + 1052061, + 1052346, + 1052350, + 1052708, + 1052806, + 1052826, + 1052897, + 1053116, + 1053118, + 1053170, + 1053175, + 1053178, + 1053193, + 1053318, + 1054247, + 1054524, + 1054858, + 1054875, + 1054894, + 1055018, + 1055111, + 1055112, + 1055113, + 1055114, + 1055115, + 1055116, + 1055481, + 1055499, + 1055500, + 1055556, + 1055628, + 1055629, + 1055645, + 1055827, + 1055828, + 1055973, + 1056557, + 1056605, + 1056743, + 1056764, + 1056911, + 1056912, + 1056913, + 1056950, + 1057049, + 1057050, + 1057051, + 1057052, + 1057110, + 1057146, + 1057176, + 1057178, + 1057180, + 1057182, + 1057183, + 1057187, + 1057191, + 1057193, + 1057194, + 1057451, + 1057595, + 1057598, + 1057602, + 1057609, + 1058035, + 1058065, + 1058304, + 1058306, + 1058372, + 1058373, + 1058540, + 1058865, + 1058867, + 1058952, + 1058958, + 1059539, + 1059674, + 1059881, + 1060060, + 1060234, + 1060268, + 1060429, + 1060931, + 1060941, + 1060985, + 1060989, + 1061187, + 1061329, + 1061330, + 1061331, + 1061332, + 1061986, + 1062013, + 1062358, + 1062375, + 1062420, + 1062622, + 1062624, + 1062789, + 1063195, + 1064269, + 1065000, + 1065420, + 1065421, + 1065422, + 1065423, + 1065456, + 1065788, + 1065789, + 1065803, + 1065804, + 1065823, + 1065827, + 1065866, + 1065868, + 1065941, + 1065942, + 1065943, + 1065944, + 1066081, + 1066698, + 1066757, + 1066758, + 1066759, + 1066760, + 1066761, + 1066763, + 1066764, + 1066765, + 1066766, + 1066767, + 1066889, + 1066996, + 1067818, + 1067835, + 1067868, + 1067869, + 1067871, + 1068415, + 1068769, + 1069320, + 1069321, + 1069542, + 1069551, + 1069931, + 1069942, + 1070016, + 1070043, + 1070145, + 1070247, + 1070253, + 1070272, + 1070462, + 1070898, + 1071226, + 1071276, + 1071292, + 1071295, + 1071394, + 1071895, + 1072691, + 1072693, + 1072719, + 1072850, + 1073028, + 1073030, + 1073031, + 1073032, + 1073033, + 1073034, + 1073035, + 1073036, + 1073037, + 1073038, + 1073039, + 1073040, + 1073041, + 1073042, + 1073043, + 1073044, + 1073045, + 1073046, + 1073047, + 1073049, + 1073050, + 1073051, + 1073052, + 1073053, + 1073054, + 1073055, + 1073058, + 1073059, + 1073060, + 1073061, + 1073062, + 1073063, + 1073064, + 1073065, + 1073066, + 1073067, + 1073068, + 1073069, + 1073070, + 1073073, + 1073074, + 1073075, + 1073076, + 1073079, + 1073080, + 1073083, + 1073084, + 1073085, + 1073086, + 1073088, + 1073089, + 1073090, + 1073091, + 1073253, + 1073315, + 1073422, + 1074121, + 1074286, + 1074805, + 1074934, + 1075201, + 1075205, + 1075206, + 1075220, + 1075221, + 1075222, + 1075365, + 1075366, + 1075368, + 1075369, + 1076877, + 1076878, + 1076879, + 1076880, + 1076881, + 1076889, + 1076890, + 1076891, + 1076893, + 1077175, + 1077224, + 1077226, + 1077504, + 1077671, + 1078027, + 1078088, + 1078097, + 1078101, + 1078102, + 1078356, + 1078799, + 1078990, + 1078999, + 1079222, + 1079483, + 1079561, + 1079862, + 1080246, + 1080247, + 1080249, + 1080401, + 1082287, + 1082785, + 1082857, + 1082859, + 1082898, + 1083234, + 1084955, + 1086439, + 1086440, + 1086443, + 1086453, + 1086480, + 1086500, + 1086954, + 1086955, + 1086956, + 1087001, + 1087828, + 1087901, + 1087902, + 1087905, + 1088119, + 1088122, + 1088123, + 1088124, + 1088127, + 1088130, + 1088131, + 1088133, + 1088135, + 1088136, + 1088137, + 1088138, + 1088142, + 1088143, + 1088528, + 1089423, + 1089596, + 1089970, + 1089978, + 1090044, + 1091236, + 1091237, + 1092018, + 1092096, + 1092316, + 1092464, + 1092466, + 1092478, + 1092480, + 1092481, + 1092482, + 1092492, + 1092516, + 1092532, + 1092535, + 1092538, + 1092551, + 1092564, + 1092565, + 1092582, + 1092607, + 1092619, + 1092623, + 1092624, + 1092665, + 1092669, + 1092675, + 1092988, + 1093560, + 1094852, + 1094857, + 1095206, + 1095207, + 1095275, + 1096115, + 1096165, + 1096413, + 1096640, + 1096780, + 1097174, + 1097300, + 1097301, + 1097302, + 1097307, + 1097545, + 1097616, + 1097801, + 1098076, + 1098128, + 1098156, + 1098157, + 1098168, + 1098169, + 1098411, + 1098413, + 1098414, + 1098427, + 1098438, + 1098511, + 1098946, + 1099135, + 1099136, + 1099138, + 1099139, + 1099140, + 1099192, + 1099651, + 1099682, + 1099685, + 1099693, + 1100931, + 1100940, + 1101237, + 1101261, + 1101507, + 1101965, + 1102136, + 1102140, + 1102191, + 1102235, + 1102665, + 1103793, + 1103862, + 1104220, + 1105192, + 1106854, + 1106856, + 1106955, + 1106956, + 1107692, + 1108294, + 1108461, + 1108599, + 1108752, + 1109388, + 1109390, + 1109396, + 1109463, + 1109465, + 1109521, + 1109708, + 1109712, + 1109713, + 1109725, + 1109917, + 1109936, + 1109937, + 1110018, + 1110108, + 1110264, + 1110713, + 1110771, + 1110799, + 1111031, + 1111129, + 1111130, + 1111133, + 1111201, + 1111202, + 1111203, + 1111204, + 1111205, + 1111206, + 1111208, + 1111209, + 1111210, + 1111211, + 1111212, + 1111213, + 1111214, + 1111215, + 1111217, + 1111218, + 1111219, + 1111220, + 1111221, + 1111222, + 1111223, + 1111224, + 1111225, + 1111503, + 1111506, + 1111658, + 1111680, + 1111681, + 1111970, + 1111971, + 1111972, + 1111973, + 1111974, + 1111975, + 1111976, + 1111977, + 1111978, + 1111979, + 1112044, + 1112265, + 1112507, + 1112516, + 1112536, + 1112559, + 1112561, + 1112581, + 1112619, + 1112637, + 1112643, + 1112654, + 1112660, + 1113369, + 1113567, + 1113573, + 1114061, + 1114064, + 1114630, + 1114634, + 1114675, + 1114938, + 1115013, + 1115062, + 1115441, + 1116385, + 1116616, + 1116776, + 1116780, + 1116781, + 1116785, + 1116787, + 1116813, + 1117427, + 1117569, + 1119138, + 1119142, + 1119327, + 1120029, + 1120513, + 1121501, + 1121502, + 1121506, + 1121508, + 1121511, + 1121512, + 1121513, + 1121514, + 1121515, + 1121516, + 1121963, + 1121966, + 1121969, + 1121970, + 1122013, + 1122169, + 1122349, + 1122351, + 1122352, + 1122435, + 1122665, + 1122706, + 1123200, + 1123587, + 1123920, + 1124571, + 1125417, + 1125621, + 1126029, + 1126031, + 1126052, + 1126256, + 1126545, + 1127051, + 1127429, + 1127480, + 1127509, + 1127621, + 1127713, + 1127889, + 1127909, + 1128606, + 1128809, + 1128811, + 1128812, + 1128813, + 1128814, + 1128815, + 1128816, + 1128817, + 1128818, + 1128819, + 1128820, + 1128821, + 1128822, + 1128823, + 1128824, + 1128826, + 1129218, + 1129328, + 1129568, + 1129612, + 1129727, + 1129768, + 1129843, + 1129949, + 1130079, + 1130128, + 1131071, + 1131072, + 1131077, + 1131247, + 1131465, + 1131625, + 1131674, + 1131987, + 1132278, + 1132419, + 1132489, + 1132530, + 1132811, + 1132854, + 1133471, + 1134397, + 1135197, + 1135198, + 1135199, + 1135200, + 1135201, + 1135202, + 1135203, + 1135213, + 1135214, + 1135215, + 1135216, + 1135217, + 1135218, + 1135219, + 1135221, + 1135222, + 1135223, + 1135224, + 1135225, + 1135226, + 1135227, + 1135228, + 1135229, + 1135230, + 1135232, + 1135233, + 1135234, + 1135235, + 1135236, + 1135237, + 1135238, + 1135239, + 1135241, + 1135242, + 1135244, + 1135246, + 1135247, + 1135248, + 1135250, + 1135251, + 1135252, + 1135253, + 1135254, + 1135255, + 1135256, + 1135557, + 1135686, + 1135752, + 1135755, + 1135760, + 1135915, + 1135919, + 1135920, + 1135959, + 1135993, + 1136866, + 1136867, + 1137096, + 1137317, + 1137344, + 1137345, + 1137844, + 1137908, + 1138261, + 1138264, + 1138963, + 1139434, + 1139438, + 1140240, + 1140377, + 1140391, + 1141005, + 1141462, + 1141466, + 1141778, + 1142495, + 1142516, + 1142700, + 1142704, + 1142705, + 1142791, + 1142842, + 1142919, + 1142926, + 1142985, + 1142987, + 1143254, + 1143787, + 1143790, + 1143791, + 1143795, + 1143797, + 1143798, + 1143801, + 1143802, + 1143803, + 1143805, + 1143806, + 1143807, + 1143809, + 1143810, + 1143811, + 1143812, + 1143814, + 1143816, + 1143817, + 1143818, + 1143819, + 1143821, + 1143822, + 1143823, + 1143824, + 1143825, + 1143827, + 1143828, + 1143829, + 1143830, + 1143832, + 1143833, + 1143834, + 1143835, + 1143837, + 1143838, + 1143842, + 1143843, + 1143844, + 1143845, + 1143847, + 1143848, + 1143849, + 1143984, + 1144055, + 1144101, + 1145013, + 1145432, + 1145518, + 1145547, + 1145548, + 1145773, + 1145774, + 1146252, + 1146254, + 1147087, + 1147128, + 1147305, + 1147753, + 1148341, + 1148343, + 1148353, + 1148585, + 1148855, + 1149455, + 1149462, + 1149724, + 1149894, + 1150481, + 1150483, + 1150486, + 1150838, + 1151005, + 1151051, + 1151370, + 1151371, + 1151373, + 1151375, + 1151483, + 1152069, + 1152072, + 1152441, + 1152442, + 1152519, + 1153248, + 1153406, + 1153407, + 1153477, + 1154254, + 1154271, + 1154532, + 1154978, + 1155116, + 1155381, + 1155390, + 1155392, + 1155410, + 1155411, + 1155412, + 1155414, + 1155918, + 1155919, + 1156005, + 1156601, + 1156772, + 1156807, + 1156829, + 1157658, + 1157659, + 1157660, + 1157661, + 1157662, + 1157663, + 1157665, + 1157666, + 1157667, + 1157716, + 1158089, + 1158488, + 1158515, + 1159067, + 1159069, + 1159088, + 1159316, + 1159317, + 1160097, + 1160328, + 1160352, + 1160358, + 1160366, + 1160459, + 1161031, + 1161032, + 1161165, + 1161893, + 1161896, + 1161897, + 1161898, + 1162431, + 1162508, + 1162509, + 1162514, + 1163169, + 1163419, + 1163580, + 1163814, + 1163827, + 1163830, + 1163831, + 1163832, + 1163833, + 1163834, + 1163835, + 1163836, + 1163837, + 1163838, + 1163840, + 1163841, + 1164174, + 1164670, + 1165194, + 1165453, + 1165455, + 1165456, + 1165457, + 1165459, + 1165460, + 1165581, + 1165651, + 1165652, + 1165658, + 1165713, + 1165715, + 1166067, + 1166068, + 1166075, + 1166076, + 1166086, + 1166090, + 1166093, + 1166095, + 1166190, + 1166757, + 1166822, + 1166984, + 1167112, + 1167467, + 1167756, + 1167870, + 1168118, + 1168575, + 1169324, + 1169484, + 1169517, + 1169734, + 1169735, + 1169736, + 1169737, + 1169738, + 1169741, + 1169743, + 1170020, + 1170095, + 1170284, + 1170286, + 1170316, + 1170321, + 1170503, + 1170758, + 1171234, + 1171322, + 1171497, + 1171740, + 1172204, + 1172206, + 1172295, + 1172316, + 1172364, + 1172367, + 1172538, + 1172896, + 1173663, + 1173798, + 1173812, + 1174166, + 1174461, + 1174678, + 1174878, + 1175029, + 1175034, + 1175218, + 1175335, + 1175512, + 1175600, + 1176054, + 1176300, + 1176565, + 1177534, + 1177538, + 1177540, + 1177747, + 1177807, + 1177808, + 1177809, + 1177810, + 1177811, + 1177812, + 1177814, + 1177858, + 1178098, + 1179156, + 1179157, + 1179159, + 1179523, + 1179524, + 1180422, + 1181207, + 1181345, + 1181451, + 1181717, + 1181718, + 1182505, + 1182817, + 1182819, + 1182956, + 1183365, + 1183410, + 1183542, + 1183568, + 1183570, + 1183571, + 1183572, + 1183573, + 1183574, + 1183577, + 1183578, + 1183579, + 1183580, + 1183581, + 1183592, + 1183639, + 1183948, + 1184041, + 1184414, + 1184532, + 1184533, + 1184534, + 1184535, + 1184536, + 1184537, + 1185201, + 1185341, + 1185444, + 1186406, + 1186514, + 1186848, + 1187061, + 1187710, + 1187713, + 1187719, + 1188255, + 1188339, + 1188573, + 1189032, + 1189033, + 1189045, + 1189711, + 1190049, + 1190050, + 1190051, + 1190052, + 1190053, + 1190207, + 1190922, + 1191064, + 1191309, + 1191310, + 1191311, + 1191379, + 1191432, + 1191813, + 1191921, + 1191988, + 1192841, + 1193114, + 1193496, + 1193697, + 1193698, + 1193699, + 1193700, + 1193702, + 1193703, + 1193705, + 1193706, + 1193707, + 1193708, + 1193709, + 1193710, + 1193711, + 1193712, + 1193713, + 1193714, + 1194142, + 1194418, + 1194420, + 1194994, + 1194995, + 1194996, + 1194998, + 1194999, + 1195000, + 1195066, + 1195154, + 1195419, + 1195423, + 1195743, + 1196085, + 1196154, + 1196155, + 1196162, + 1196323, + 1197249, + 1198682, + 1198952, + 1199196, + 1199230, + 1199356, + 1200084, + 1200823, + 1200824, + 1200825, + 1200827, + 1200828, + 1200830, + 1200832, + 1201611, + 1201661, + 1201996, + 1202122, + 1202189, + 1202376, + 1202489, + 1202490, + 1202799, + 1202811, + 1203182, + 1203183, + 1203189, + 1203705, + 1204610, + 1205095, + 1205705, + 1205706, + 1205707, + 1205708, + 1205709, + 1205710, + 1205711, + 1205712, + 1205713, + 1205714, + 1205716, + 1205717, + 1205729, + 1205755, + 1205972, + 1205976, + 1205986, + 1205988, + 1205989, + 1205995, + 1206001, + 1206004, + 1206013, + 1206019, + 1206026, + 1206028, + 1206031, + 1206041, + 1206044, + 1206045, + 1206048, + 1206055, + 1206058, + 1206060, + 1206069, + 1206834, + 1206835, + 1207028, + 1208144, + 1208171, + 1208173, + 1208174, + 1208175, + 1208279, + 1208280, + 1208281, + 1208435, + 1208545, + 1208600, + 1208805, + 1208908, + 1208917, + 1209040, + 1209296, + 1209478, + 1210098, + 1210845, + 1211017, + 1211023, + 1211247, + 1211491, + 1211492, + 1211627, + 1212699, + 1212701, + 1212712, + 1212835, + 1212848, + 1213373, + 1213446, + 1213572, + 1214163, + 1214204, + 1214209, + 1214213, + 1214337, + 1214510, + 1215349, + 1215596, + 1216638, + 1216869, + 1217189, + 1217191, + 1217873, + 1218653, + 1218990, + 1219002, + 1219271, + 1219285, + 1219715, + 1219717, + 1220318, + 1220643, + 1220645, + 1220653, + 1220654, + 1220655, + 1220882, + 1221123, + 1222136, + 1223704, + 1223708, + 1223712, + 1223715, + 1223779, + 1224095, + 1224392, + 1224393, + 1224890, + 1224896, + 1225733, + 1225971, + 1226277, + 1226283, + 1226409, + 1226411, + 1226412, + 1226495, + 1228325, + 1228473, + 1228479, + 1228502, + 1228537, + 1228539, + 1228673, + 1228719, + 1229800, + 1230090, + 1230956, + 1231339, + 1231771, + 1232027, + 1232030, + 1233338, + 1233341, + 1233375, + 1233376, + 1233653, + 1234080, + 1234289, + 1234504, + 1234708, + 1234737, + 1234840, + 1235016, + 1235044, + 1235046, + 1235076, + 1235088, + 1235130, + 1235888, + 1236074, + 1236248, + 1236438, + 1236553, + 1236557, + 1236616, + 1236787, + 1237203, + 1237206, + 1237240, + 1237285, + 1237690, + 1237968, + 1237972, + 1238205, + 1238206, + 1238207, + 1238208, + 1238209, + 1238210, + 1238211, + 1238214, + 1238215, + 1238216, + 1238217, + 1238219, + 1238220, + 1238221, + 1238737, + 1238738, + 1238775, + 1238955, + 1238961, + 1238962, + 1238964, + 1238966, + 1238967, + 1238968, + 1238969, + 1238970, + 1238973, + 1238976, + 1238977, + 1238978, + 1238979, + 1238981, + 1238983, + 1238986, + 1238988, + 1238990, + 1238993, + 1238994, + 1238995, + 1239045, + 1239046, + 1239048, + 1239190, + 1239199, + 1239500, + 1240013, + 1240014, + 1240015, + 1240016, + 1240017, + 1240019, + 1240020, + 1240022, + 1240023, + 1240125, + 1240195, + 1240200, + 1240202, + 1240346, + 1240405, + 1240569, + 1240679, + 1240827, + 1240829, + 1241244, + 1242028, + 1242130, + 1242561, + 1242690, + 1243030, + 1243032, + 1243034, + 1243037, + 1243038, + 1243039, + 1243040, + 1243510, + 1243675, + 1244006, + 1244806, + 1244926, + 1244927, + 1244928, + 1244929, + 1244930, + 1244931, + 1244932, + 1245065, + 1245113, + 1245573, + 1245585, + 1245697, + 1245776, + 1245778, + 1245779, + 1245781, + 1245988, + 1246089, + 1246251, + 1246393, + 1246395, + 1246396, + 1246398, + 1246399, + 1246472, + 1246567, + 1246661, + 1246786, + 1246963, + 1247254, + 1247309, + 1247496, + 1247623, + 1247899, + 1247902, + 1247904, + 1247906, + 1247910, + 1247911, + 1247914, + 1248199, + 1248431, + 1248433, + 1248614, + 1248894, + 1249024, + 1249032, + 1249309, + 1249597, + 1249806, + 1250029, + 1250709, + 1250754, + 1251054, + 1251888, + 1252004, + 1252068, + 1252185, + 1252247, + 1252384, + 1254403, + 1254458, + 1255228, + 1255280, + 1256158, + 1256345, + 1256420, + 1256820, + 1256953, + 1256954, + 1256955, + 1257130, + 1257131, + 1258946, + 1259101, + 1259314, + 1259627, + 1260508, + 1260923, + 1260952, + 1261301, + 1261428, + 1261682, + 1262290, + 1262505, + 1262588, + 1262599, + 1262669, + 1262782, + 1262987, + 1262989, + 1263034, + 1263621, + 1264019, + 1264020, + 1264023, + 1264026, + 1264582, + 1264697, + 1265003, + 1265006, + 1265211, + 1265311, + 1265426, + 1265758, + 1267003, + 1267172, + 1267194, + 1267261, + 1267293, + 1267307, + 1267374, + 1267718, + 1267838, + 1268060, + 1268070, + 1268108, + 1268204, + 1268205, + 1268507, + 1268648, + 1268649, + 1268650, + 1268695, + 1268696, + 1269379, + 1269993, + 1269998, + 1269999, + 1270002, + 1270539, + 1270558, + 1270768, + 1270958, + 1271464, + 1271591, + 1271592, + 1272322, + 1272323, + 1272356, + 1272492, + 1272579, + 1272583, + 1272920, + 1273074, + 1273075, + 1273077, + 1273078, + 1273079, + 1273081, + 1273083, + 1273084, + 1273085, + 1273086, + 1273087, + 1273088, + 1273089, + 1273090, + 1273091, + 1273092, + 1273093, + 1273094, + 1273104, + 1273107, + 1273144, + 1273162, + 1273869, + 1273870, + 1273881, + 1273883, + 1273958, + 1274039, + 1274131, + 1274188, + 1274191, + 1274505, + 1274750, + 1274940, + 1274961, + 1275135, + 1275745, + 1275748, + 1275749, + 1275750, + 1276463, + 1276589, + 1276590, + 1277324, + 1277431, + 1278267, + 1278269, + 1278364, + 1278365, + 1278366, + 1278900, + 1278901, + 1278902, + 1278905, + 1278906, + 1278910, + 1279345, + 1279474, + 1279750, + 1279989, + 1280508, + 1280509, + 1280574, + 1281325, + 1281326, + 1281327, + 1281328, + 1281329, + 1281330, + 1281331, + 1281332, + 1281333, + 1281334, + 1281335, + 1281336, + 1281337, + 1281339, + 1281340, + 1281341, + 1281342, + 1281371, + 1281786, + 1281810, + 1281812, + 1282553, + 1282555, + 1282565, + 1283141, + 1283142, + 1283143, + 1283145, + 1283148, + 1283149, + 1283386, + 1283393, + 1283449, + 1283476, + 1283842, + 1283928, + 1283941, + 1284573, + 1284867, + 1285052, + 1285364, + 1285369, + 1285370, + 1285372, + 1285373, + 1285374, + 1286158, + 1286356, + 1286357, + 1286358, + 1286359, + 1286360, + 1286361, + 1286362, + 1286363, + 1286364, + 1286365, + 1286366, + 1286368, + 1286369, + 1286370, + 1286371, + 1286372, + 1286373, + 1286374, + 1286382, + 1286570, + 1286571, + 1286572, + 1286573, + 1286574, + 1286575, + 1286646, + 1286663, + 1287392, + 1287444, + 1287499, + 1287625, + 1287912, + 1288164, + 1288199, + 1288200, + 1288455, + 1288456, + 1288665, + 1288674, + 1288676, + 1288807, + 1288944, + 1289019, + 1289157, + 1289185, + 1289462, + 1289791, + 1290054, + 1290141, + 1290640, + 1290642, + 1290643, + 1290644, + 1290646, + 1290647, + 1290648, + 1290650, + 1290764, + 1290766, + 1290767, + 1290899, + 1290900, + 1291465, + 1291528, + 1291821, + 1291847, + 1292078, + 1292321, + 1292381, + 1292433, + 1292481, + 1292673, + 1293509, + 1293693, + 1293995, + 1293996, + 1293997, + 1293998, + 1293999, + 1294000, + 1294002, + 1294003, + 1294004, + 1294005, + 1294343, + 1294349, + 1294492, + 1295267, + 1296304, + 1296305, + 1296306, + 1296309, + 1296665, + 1296670, + 1297571, + 1297801, + 1297852, + 1297856, + 1298050, + 1298861, + 1299183, + 1299189, + 1299190, + 1299199, + 1299207, + 1299209, + 1299212, + 1299417, + 1300548, + 1300895, + 1301616, + 1302055, + 1302161, + 1302528, + 1302530, + 1302561, + 1302562, + 1302610, + 1302612, + 1303186, + 1303369, + 1304501, + 1304502, + 1304504, + 1304869, + 1305067, + 1305292, + 1305665, + 1305667, + 1306131, + 1307558, + 1307609, + 1307639, + 1307711, + 1308384, + 1308604, + 1308610, + 1308664, + 1308897, + 1309321, + 1309985, + 1311014, + 1311018, + 1311196, + 1311197, + 1311198, + 1311199, + 1311431, + 1311437, + 1312215, + 1312217, + 1312281, + 1312283, + 1312369, + 1312374, + 1312375, + 1312523, + 1312531, + 1312532, + 1312680, + 1312700, + 1312701, + 1312702, + 1312703, + 1312997, + 1313194, + 1313291, + 1313493, + 1314039, + 1314056, + 1314092, + 1314209, + 1314730, + 1314731, + 1314732, + 1314733, + 1314914, + 1315077, + 1315080, + 1315083, + 1315088, + 1315089, + 1315091, + 1315097, + 1315098, + 1315099, + 1315105, + 1315107, + 1315110, + 1315238, + 1315239, + 1315279, + 1315283, + 1315591, + 1315851, + 1316160, + 1316922, + 1317013, + 1317014, + 1317688, + 1317856, + 1318579, + 1318609, + 1319304, + 1319340, + 1319360, + 1320043, + 1320202, + 1320203, + 1320205, + 1320206, + 1320714, + 1320715, + 1320726, + 1320727, + 1320728, + 1321612, + 1321613, + 1321614, + 1321615, + 1321616, + 1321617, + 1321619, + 1321620, + 1321622, + 1321623, + 1321625, + 1321626, + 1321653, + 1321703, + 1321704, + 1322063, + 1322085, + 1322088, + 1322283, + 1322286, + 1322993, + 1323378, + 1323394, + 1324365, + 1324366, + 1324368, + 1324369, + 1324661, + 1324894, + 1324895, + 1324899, + 1324902, + 1324903, + 1324911, + 1324958, + 1325015, + 1325194, + 1325377, + 1325700, + 1325773, + 1325776, + 1325919, + 1325965, + 1326152, + 1326752, + 1326884, + 1326887, + 1327027, + 1327170, + 1327173, + 1327174, + 1327176, + 1327228, + 1327230, + 1327306, + 1327432, + 1327642, + 1327644, + 1327645, + 1327646, + 1327647, + 1327648, + 1327649, + 1327651, + 1327653, + 1327656, + 1327657, + 1327659, + 1327664, + 1327666, + 1327682, + 1327683, + 1327685, + 1328735, + 1328743, + 1328919, + 1329084, + 1329421, + 1330476, + 1330477, + 1330643, + 1330749, + 1330750, + 1330751, + 1330752, + 1330754, + 1330755, + 1330756, + 1330757, + 1330759, + 1330760, + 1330762, + 1330763, + 1330764, + 1330766, + 1330769, + 1330774, + 1330776, + 1330899, + 1331145, + 1331223, + 1331224, + 1331296, + 1331370, + 1331522, + 1331552, + 1331667, + 1332155, + 1332213, + 1332854, + 1333221, + 1333391, + 1333897, + 1333901, + 1334049, + 1334169, + 1334309, + 1334310, + 1334312, + 1334313, + 1334314, + 1334315, + 1334420, + 1334588, + 1334648, + 1334778, + 1334779, + 1334780, + 1334781, + 1334782, + 1334783, + 1334784, + 1334785, + 1334786, + 1334787, + 1335218, + 1335219, + 1335220, + 1335221, + 1335223, + 1335224, + 1335314, + 1335315, + 1335318, + 1335466, + 1336043, + 1336044, + 1336405, + 1336408, + 1336423, + 1336424, + 1336425, + 1337039, + 1337724, + 1337725, + 1337811, + 1337833, + 1338224, + 1338489, + 1338828, + 1338829, + 1338908, + 1338965, + 1338967, + 1338970, + 1339106, + 1339107, + 1339484, + 1339486, + 1339491, + 1339627, + 1339903, + 1340323, + 1340569, + 1340808, + 1340851, + 1340854, + 1340855, + 1340902, + 1341150, + 1341190, + 1341322, + 1341323, + 1341325, + 1341328, + 1341330, + 1341332, + 1341389, + 1341390, + 1341436, + 1341603, + 1341880, + 1341881, + 1341882, + 1341883, + 1341884, + 1341885, + 1341886, + 1341887, + 1341888, + 1342003, + 1342007, + 1342018, + 1342026, + 1342028, + 1342104, + 1342190, + 1342382, + 1342383, + 1342919, + 1342920, + 1342921, + 1342929, + 1342930, + 1343113, + 1343114, + 1343255, + 1343909, + 1344167, + 1344171, + 1344232, + 1344233, + 1344849, + 1345068, + 1345070, + 1345805, + 1345810, + 1346278, + 1346687, + 1347015, + 1347376, + 1347377, + 1347549, + 1347720, + 1347940, + 1348172, + 1348203, + 1348249, + 1348279, + 1348288, + 1348596, + 1348871, + 1349319, + 1349689, + 1350168, + 1351159, + 1351721, + 1351986, + 1352031, + 1352032, + 1352886, + 1353073, + 1353160, + 1353161, + 1353163, + 1353164, + 1353167, + 1353170, + 1353208, + 1354505, + 1356055, + 1356495, + 1356834, + 1356963, + 1357456, + 1357965, + 1357982, + 1357983, + 1358027, + 1358030, + 1358031, + 1358072, + 1358086, + 1358122, + 1358264, + 1358349, + 1358440, + 1358909, + 1359239, + 1359899, + 1360088, + 1360736, + 1360738, + 1360800, + 1361021, + 1361023, + 1361024, + 1361228, + 1361232, + 1361233, + 1361235, + 1361240, + 1361400, + 1361463, + 1361470, + 1361474, + 1362183, + 1362185, + 1362186, + 1362187, + 1362188, + 1362189, + 1362190, + 1362191, + 1362192, + 1362193, + 1362194, + 1362195, + 1362196, + 1362197, + 1362198, + 1362199, + 1362200, + 1362201, + 1362203, + 1362204, + 1362205, + 1362206, + 1362207, + 1362208, + 1362209, + 1362210, + 1362211, + 1362213, + 1362214, + 1362216, + 1362217, + 1362218, + 1362219, + 1362221, + 1362222, + 1362225, + 1362226, + 1362227, + 1362305, + 1362383, + 1362384, + 1362385, + 1362546, + 1362720, + 1362721, + 1362722, + 1362726, + 1362727, + 1362729, + 1362730, + 1362732, + 1362733, + 1362734, + 1362735, + 1362736, + 1362738, + 1362740, + 1362741, + 1364362, + 1364371, + 1364628, + 1364632, + 1365101, + 1365104, + 1365485, + 1365558, + 1366183, + 1366198, + 1366612, + 1367024, + 1367249, + 1367250, + 1367387, + 1367388, + 1367480, + 1367639, + 1367640, + 1367724, + 1367799, + 1368367, + 1368407, + 1368495, + 1368925, + 1369121, + 1369772, + 1369833, + 1369934, + 1370073, + 1370074, + 1370076, + 1370516, + 1370702, + 1370723, + 1370890, + 1370946, + 1370975, + 1371012, + 1371062, + 1371065, + 1371809, + 1372269, + 1372337, + 1372607, + 1373185, + 1373197, + 1373382, + 1373457, + 1373712, + 1374321, + 1374598, + 1374691, + 1374722, + 1375479, + 1376627, + 1376703, + 1377311, + 1377312, + 1377313, + 1377314, + 1377316, + 1377768, + 1377769, + 1377770, + 1377774, + 1377777, + 1377779, + 1377974, + 1378331, + 1379749, + 1380023, + 1380024, + 1380025, + 1380472, + 1380705, + 1381090, + 1381091, + 1381487, + 1382003, + 1382326, + 1382699, + 1382705, + 1382709, + 1382713, + 1382931, + 1382940, + 1383404, + 1384133, + 1384493, + 1384495, + 1384688, + 1385029, + 1386200, + 1386455, + 1386630, + 1386635, + 1386636, + 1386640, + 1386648, + 1386651, + 1386652, + 1386672, + 1387480, + 1387748, + 1388186, + 1388422, + 1388756, + 1390360, + 1390472, + 1390673, + 1391387, + 1391913, + 1391914, + 1392067, + 1392163, + 1392164, + 1392168, + 1392400, + 1392972, + 1392974, + 1393153, + 1393483, + 1393485, + 1393486, + 1393487, + 1393521, + 1393622, + 1393683, + 1394624, + 1394631, + 1394637, + 1394640, + 1394881, + 1395607, + 1395652, + 1395917, + 1395985, + 1396305, + 1396347, + 1396988, + 1397180, + 1397237, + 1397690, + 1397778, + 1398622, + 1398979, + 1398992, + 1399695, + 1399805, + 1399934, + 1400009, + 1400010, + 1400011, + 1400012, + 1400175, + 1400177, + 1400979, + 1401352, + 1402043, + 1402044, + 1402112, + 1402206, + 1402207, + 1402406, + 1402543, + 1402544, + 1403205, + 1403321, + 1403324, + 1403974, + 1404001, + 1404002, + 1404012, + 1404053, + 1404060, + 1404063, + 1404066, + 1404167, + 1404504, + 1404506, + 1404886, + 1405274, + 1405817, + 1405818, + 1405819, + 1405822, + 1405947, + 1405964, + 1406386, + 1406432, + 1406731, + 1407130, + 1407140, + 1407545, + 1407546, + 1407971, + 1407976, + 1408150, + 1408304, + 1408566, + 1409325, + 1409385, + 1409386, + 1409387, + 1409388, + 1409390, + 1409391, + 1409392, + 1409393, + 1409396, + 1409513, + 1409738, + 1410329, + 1412005, + 1412119, + 1412612, + 1413229, + 1413514, + 1413600, + 1413604, + 1413607, + 1413650, + 1413651, + 1413762, + 1413763, + 1413764, + 1413765, + 1413766, + 1413767, + 1413768, + 1413769, + 1413770, + 1413771, + 1413772, + 1414172, + 1414275, + 1414960, + 1415464, + 1415622, + 1415625, + 1415638, + 1415639, + 1415649, + 1415657, + 1415659, + 1415662, + 1415675, + 1415683, + 1415684, + 1415686, + 1415719, + 1415721, + 1415722, + 1415771, + 1415778, + 1415800, + 1415801, + 1416017, + 1416675, + 1416997, + 1417030, + 1417290, + 1417670, + 1418805, + 1418824, + 1418831, + 1419186, + 1419187, + 1419421, + 1419764, + 1419768, + 1420154, + 1420156, + 1420158, + 1420647, + 1420865, + 1421085, + 1421385, + 1421402, + 1421832, + 1421833, + 1421834, + 1421835, + 1421836, + 1421837, + 1421838, + 1422291, + 1422295, + 1422301, + 1422302, + 1422303, + 1422313, + 1422405, + 1422509, + 1422599, + 1422685, + 1422861, + 1423881, + 1424032, + 1424466, + 1424467, + 1424613, + 1425631, + 1427885, + 1428247, + 1428412, + 1428466, + 1429194, + 1430000, + 1430001, + 1430197, + 1430390, + 1430723, + 1430726, + 1430734, + 1430775, + 1432837, + 1432840, + 1432908, + 1433157, + 1433249, + 1433250, + 1434553, + 1434559, + 1434564, + 1434874, + 1435026, + 1435337, + 1435343, + 1435794, + 1435863, + 1435924, + 1436429, + 1436987, + 1437007, + 1437009, + 1437014, + 1437015, + 1437749, + 1437780, + 1437782, + 1437783, + 1437875, + 1437991, + 1438026, + 1438129, + 1438281, + 1438600, + 1438649, + 1438650, + 1438735, + 1438736, + 1438804, + 1439089, + 1439192, + 1439208, + 1439553, + 1439615, + 1439806, + 1440217, + 1440391, + 1441040, + 1441041, + 1441078, + 1441552, + 1442248, + 1442480, + 1442813, + 1442832, + 1442905, + 1443564, + 1443565, + 1443566, + 1443567, + 1446253, + 1446479, + 1446701, + 1446777, + 1447035, + 1447178, + 1447773, + 1448299, + 1449358, + 1449360, + 1449464, + 1449486, + 1450714, + 1450842, + 1450896, + 1450901, + 1450902, + 1450904, + 1451490, + 1451701, + 1451991, + 1452008, + 1452035, + 1452129, + 1452473, + 1452486, + 1452490, + 1452512, + 1452513, + 1452890, + 1453116, + 1453521, + 1454358, + 1454929, + 1454959, + 1454962, + 1454968, + 1455303, + 1455734, + 1456028, + 1456056, + 1456181, + 1456184, + 1456185, + 1456378, + 1456698, + 1456836, + 1456837, + 1456838, + 1456840, + 1456841, + 1457056, + 1457526, + 1457527, + 1457637, + 1458014, + 1458285, + 1458286, + 1458373, + 1458657, + 1458875, + 1460041, + 1460156, + 1460813, + 1461378, + 1462131, + 1462185, + 1462257, + 1462899, + 1462900, + 1462925, + 1462926, + 1464264, + 1464644, + 1464835, + 1464837, + 1464838, + 1464839, + 1464840, + 1464842, + 1464843, + 1464844, + 1465455, + 1465927, + 1465928, + 1465929, + 1466864, + 1467100, + 1468087, + 1468230, + 1468644, + 1468651, + 1468654, + 1469328, + 1469330, + 1469387, + 1469598, + 1469887, + 1470557, + 1470987, + 1471715, + 1471717, + 1471718, + 1471719, + 1471806, + 1471807, + 1471808, + 1471810, + 1471811, + 1471812, + 1471813, + 1471816, + 1472027, + 1472664, + 1472716, + 1472734, + 1473057, + 1473436, + 1473828, + 1473829, + 1474019, + 1474248, + 1474310, + 1475204, + 1475786, + 1476025, + 1476027, + 1476028, + 1476029, + 1476030, + 1476031, + 1476032, + 1476033, + 1476034, + 1476035, + 1476036, + 1476037, + 1476038, + 1476039, + 1476040, + 1476041, + 1476042, + 1476043, + 1476044, + 1476046, + 1476047, + 1476048, + 1476293, + 1476564, + 1476565, + 1476838, + 1476955, + 1476995, + 1476999, + 1477015, + 1477048, + 1477181, + 1477360, + 1477455, + 1477973, + 1478158, + 1478925, + 1478927, + 1478928, + 1479482, + 1480099, + 1480414, + 1480469, + 1480914, + 1480915, + 1481065, + 1481614, + 1482171, + 1482345, + 1482514, + 1482515, + 1482910, + 1482911, + 1482913, + 1482968, + 1483337, + 1483338, + 1483707, + 1483709, + 1484313, + 1485430, + 1485549, + 1486018, + 1486572, + 1487184, + 1487405, + 1487954, + 1488036, + 1488587, + 1488589, + 1488594, + 1489086, + 1489143, + 1489167, + 1489480, + 1489483, + 1489509, + 1489510, + 1489511, + 1489519, + 1489522, + 1489605, + 1489741, + 1489948, + 1491311, + 1491897, + 1492188, + 1492189, + 1492210, + 1492270, + 1492272, + 1492455, + 1492920, + 1493311, + 1493409, + 1493410, + 1493412, + 1493522, + 1493527, + 1494251, + 1494517, + 1495144, + 1495149, + 1495150, + 1495153, + 1495443, + 1495743, + 1496081, + 1496913, + 1496956, + 1497855, + 1498939, + 1499466, + 1499470, + 1499694, + 1499810, + 1500212, + 1500213, + 1500385, + 1500844, + 1500859, + 1500865, + 1500871, + 1500874, + 1501265, + 1501989, + 1502289, + 1502290, + 1502291, + 1502779, + 1502783, + 1504131, + 1504132, + 1504270, + 1504474, + 1505242, + 1505243, + 1505246, + 1506186, + 1506190, + 1506226, + 1506227, + 1506229, + 1506411, + 1506412, + 1506567, + 1506712, + 1507176, + 1507644, + 1508048, + 1508049, + 1508473, + 1508487, + 1508530, + 1508692, + 1508792, + 1508985, + 1509445, + 1510100, + 1510101, + 1510102, + 1510103, + 1510104, + 1510107, + 1510115, + 1510116, + 1510125, + 1510128, + 1510129, + 1510917, + 1511694, + 1513547, + 1513548, + 1513632, + 1513716, + 1513769, + 1514109, + 1514110, + 1514270, + 1514279, + 1514389, + 1514516, + 1514571, + 1514926, + 1514928, + 1515372, + 1515376, + 1515384, + 1515682, + 1516244, + 1516246, + 1517083, + 1517091, + 1517095, + 1517575, + 1518103, + 1518733, + 1518736, + 1518738, + 1518754, + 1518755, + 1519501, + 1519502, + 1519903, + 1520056, + 1520624, + 1520626, + 1520629, + 1520635, + 1520788, + 1520789, + 1520790, + 1522155, + 1522284, + 1522745, + 1522898, + 1522900, + 1522946, + 1523138, + 1523609, + 1524344, + 1524422, + 1524424, + 1524488, + 1524490, + 1524496, + 1524498, + 1524719, + 1524797, + 1525516, + 1526185, + 1526193, + 1526197, + 1527331, + 1527447, + 1528151, + 1528199, + 1528200, + 1528201, + 1528202, + 1529359, + 1529447, + 1529453, + 1530049, + 1531128, + 1531266, + 1532292, + 1532297, + 1532570, + 1533112, + 1533124, + 1533473, + 1533663, + 1533844, + 1534003, + 1534310, + 1534403, + 1535516, + 1535517, + 1535518, + 1535519, + 1535520, + 1535523, + 1535872, + 1536501, + 1536502, + 1536503, + 1536504, + 1536506, + 1536509, + 1536510, + 1536512, + 1536515, + 1536670, + 1536672, + 1536759, + 1538878, + 1538879, + 1538923, + 1538931, + 1538999, + 1539000, + 1539199, + 1539200, + 1539456, + 1539523, + 1539845, + 1539851, + 1539866, + 1540453, + 1541099, + 1541244, + 1541657, + 1541662, + 1541663, + 1542331, + 1542639, + 1543091, + 1543351, + 1543620, + 1543641, + 1543787, + 1545829, + 1546131, + 1546325, + 1546330, + 1546598, + 1546940, + 1547133, + 1547775, + 1548002, + 1548139, + 1548143, + 1548620, + 1548878, + 1548882, + 1549498, + 1550340, + 1550545, + 1550564, + 1550851, + 1551508, + 1551880, + 1551881, + 1552019, + 1552349, + 1553426, + 1553821, + 1553946, + 1553950, + 1553961, + 1553963, + 1553965, + 1554201, + 1554202, + 1554203, + 1554204, + 1554205, + 1554206, + 1554208, + 1554209, + 1554211, + 1554675, + 1554740, + 1554772, + 1555553, + 1555723, + 1556124, + 1557875, + 1558092, + 1558211, + 1559201, + 1559717, + 1559721, + 1559723, + 1559868, + 1560185, + 1560186, + 1560188, + 1560207, + 1560293, + 1560396, + 1560593, + 1560767, + 1561043, + 1561044, + 1561045, + 1561742, + 1562006, + 1563308, + 1563313, + 1563366, + 1563934, + 1564461, + 1564789, + 1564790, + 1564814, + 1564897, + 1564899, + 1565287, + 1565297, + 1565703, + 1567732, + 1567740, + 1567741, + 1567744, + 1567745, + 1567994, + 1568101, + 1568102, + 1568324, + 1568347, + 1568727, + 1569382, + 1570627, + 1571154, + 1571518, + 1571634, + 1572318, + 1572321, + 1572325, + 1572940, + 1572943, + 1572948, + 1573059, + 1573158, + 1573261, + 1573346, + 1573347, + 1573733, + 1573747, + 1573761, + 1574164, + 1574166, + 1574332, + 1574333, + 1574545, + 1575255, + 1575294, + 1575296, + 1575298, + 1575299, + 1575358, + 1575359, + 1575360, + 1575363, + 1575364, + 1575365, + 1575366, + 1575367, + 1575420, + 1576387, + 1576721, + 1576896, + 1576897, + 1577073, + 1577213, + 1577658, + 1578728, + 1578798, + 1579231, + 1580436, + 1580562, + 1580876, + 1580890, + 1580891, + 1580892, + 1580893, + 1580896, + 1580897, + 1580898, + 1580899, + 1580900, + 1580901, + 1580902, + 1580903, + 1580904, + 1580905, + 1580906, + 1581717, + 1582036, + 1582480, + 1582495, + 1582496, + 1582535, + 1582558, + 1582587, + 1582914, + 1582977, + 1583077, + 1583478, + 1583513, + 1583914, + 1583943, + 1583946, + 1584039, + 1584830, + 1586306, + 1586402, + 1586471, + 1586589, + 1586943, + 1586944, + 1586974, + 1587143, + 1587270, + 1587279, + 1587280, + 1587326, + 1587359, + 1587360, + 1587366, + 1587367, + 1587368, + 1587406, + 1587407, + 1587408, + 1587409, + 1587411, + 1587516, + 1587826, + 1588109, + 1588231, + 1588237, + 1588243, + 1588246, + 1588248, + 1588252, + 1588253, + 1588277, + 1588452, + 1588554, + 1588739, + 1588745, + 1588864, + 1588930, + 1589802, + 1589838, + 1589840, + 1589841, + 1589930, + 1590028, + 1590063, + 1590142, + 1590189, + 1590465, + 1590467, + 1590469, + 1590970, + 1590972, + 1590973, + 1591117, + 1591118, + 1591182, + 1591391, + 1591757, + 1591760, + 1591764, + 1591768, + 1591771, + 1592121, + 1592628, + 1592630, + 1592631, + 1592632, + 1592634, + 1592636, + 1592637, + 1592638, + 1592640, + 1592641, + 1592644, + 1592645, + 1592647, + 1592649, + 1592650, + 1592651, + 1592652, + 1592653, + 1592655, + 1592974, + 1593003, + 1593216, + 1593272, + 1593412, + 1593433, + 1593459, + 1593798, + 1593800, + 1593802, + 1593803, + 1594165, + 1594167, + 1594196, + 1594255, + 1594409, + 1594414, + 1595156, + 1595674, + 1595864, + 1595965, + 1595986, + 1596104, + 1596402, + 1596592, + 1596595, + 1597133, + 1597135, + 1598553, + 1598555, + 1599921, + 1599922, + 1599948, + 1600565, + 1600715, + 1601160, + 1601707, + 1602766, + 1602881, + 1602941, + 1603382, + 1603423, + 1603424, + 1604395, + 1604742, + 1604749, + 1604866, + 1604887, + 1605311, + 1605508, + 1605596, + 1605834, + 1608167, + 1608449, + 1609138, + 1609269, + 1610382, + 1610802, + 1610814, + 1612283, + 1612363, + 1612365, + 1612368, + 1612665, + 1613501, + 1613503, + 1613504, + 1613506, + 1613507, + 1613508, + 1613509, + 1613910, + 1613911, + 1613912, + 1613954, + 1613955, + 1614064, + 1614068, + 1614073, + 1614931, + 1614932, + 1614935, + 1614939, + 1614942, + 1614956, + 1616106, + 1616157, + 1616159, + 1616589, + 1617047, + 1617050, + 1617846, + 1618479, + 1619230, + 1619231, + 1619384, + 1620495, + 1620499, + 1620556, + 1621265, + 1621268, + 1621269, + 1621418, + 1621684, + 1621777, + 1621780, + 1621854, + 1621983, + 1622636, + 1623542, + 1624097, + 1624100, + 1624573, + 1624575, + 1624577, + 1624766, + 1626189, + 1626370, + 1626583, + 1626588, + 1626592, + 1626596, + 1626603, + 1626606, + 1626751, + 1627204, + 1627206, + 1627209, + 1627213, + 1627662, + 1628108, + 1628109, + 1628264, + 1628265, + 1628268, + 1628992, + 1628993, + 1629260, + 1629413, + 1629557, + 1630280, + 1630394, + 1630772, + 1631067, + 1631286, + 1631309, + 1631520, + 1631884, + 1632281, + 1632335, + 1632526, + 1632612, + 1632795, + 1632796, + 1632797, + 1632798, + 1632853, + 1632944, + 1633087, + 1633330, + 1633597, + 1633702, + 1634151, + 1634152, + 1634153, + 1634154, + 1634155, + 1634293, + 1634343, + 1634344, + 1634345, + 1634409, + 1634712, + 1634713, + 1634825, + 1635712, + 1635932, + 1635938, + 1636160, + 1636340, + 1636342, + 1636348, + 1636362, + 1636364, + 1636638, + 1636811, + 1636952, + 1637225, + 1637342, + 1637594, + 1637702, + 1638152, + 1638168, + 1638394, + 1638501, + 1638502, + 1638931, + 1639012, + 1639175, + 1639292, + 1639293, + 1639336, + 1639410, + 1640131, + 1640201, + 1640220, + 1640232, + 1640321, + 1640338, + 1640347, + 1640348, + 1640534, + 1641446, + 1641486, + 1641488, + 1641547, + 1642445, + 1642685, + 1643149, + 1643321, + 1643325, + 1643498, + 1643500, + 1644005, + 1644098, + 1644132, + 1644325, + 1644327, + 1644641, + 1645114, + 1645116, + 1645146, + 1645165, + 1645166, + 1645167, + 1645292, + 1645446, + 1646047, + 1646875, + 1647148, + 1648950, + 1649042, + 1649043, + 1649046, + 1649050, + 1649051, + 1649052, + 1649053, + 1649055, + 1649057, + 1649058, + 1649064, + 1649065, + 1649069, + 1649077, + 1649079, + 1649184, + 1649458, + 1649528, + 1649624, + 1650400, + 1650486, + 1651399, + 1651773, + 1651774, + 1651831, + 1652217, + 1652416, + 1652417, + 1652421, + 1652422, + 1652423, + 1652426, + 1652428, + 1652429, + 1652430, + 1652436, + 1652438, + 1652439, + 1652440, + 1652441, + 1652443, + 1652444, + 1652445, + 1652446, + 1652447, + 1652449, + 1652451, + 1652453, + 1652454, + 1652455, + 1652456, + 1652457, + 1652458, + 1652459, + 1652460, + 1652463, + 1652464, + 1652466, + 1652467, + 1652468, + 1652469, + 1652470, + 1652471, + 1652475, + 1652477, + 1652479, + 1652480, + 1652481, + 1652483, + 1652485, + 1652487, + 1653039, + 1653062, + 1653583, + 1653590, + 1653725, + 1653844, + 1655048, + 1655701, + 1655902, + 1655904, + 1656163, + 1656172, + 1656173, + 1656174, + 1656175, + 1656176, + 1656177, + 1656515, + 1656809, + 1656812, + 1656813, + 1657003, + 1657169, + 1657257, + 1657871, + 1658131, + 1658257, + 1658480, + 1658481, + 1658482, + 1658578, + 1659281, + 1659359, + 1659362, + 1659363, + 1659364, + 1659365, + 1659604, + 1660301, + 1660543, + 1660547, + 1661496, + 1661825, + 1662692, + 1662770, + 1662788, + 1662945, + 1662946, + 1663218, + 1663454, + 1663613, + 1663637, + 1663638, + 1663684, + 1664523, + 1664946, + 1665783, + 1666474, + 1666707, + 1666902, + 1666946, + 1666947, + 1666978, + 1666979, + 1667274, + 1667447, + 1667448, + 1667585, + 1667588, + 1667841, + 1668065, + 1668684, + 1669362, + 1669506, + 1669507, + 1669510, + 1669994, + 1669995, + 1670089, + 1670145, + 1670293, + 1670300, + 1670523, + 1670979, + 1670982, + 1670993, + 1671457, + 1671466, + 1671513, + 1671543, + 1671544, + 1671546, + 1671547, + 1671548, + 1671672, + 1671673, + 1671764, + 1671765, + 1671766, + 1671767, + 1671768, + 1671770, + 1671772, + 1671773, + 1671774, + 1671775, + 1671776, + 1671777, + 1671779, + 1671780, + 1671781, + 1672579, + 1673071, + 1673073, + 1673153, + 1673518, + 1674015, + 1674448, + 1674598, + 1674746, + 1675636, + 1675701, + 1675702, + 1675705, + 1675707, + 1675709, + 1675710, + 1675712, + 1675713, + 1675714, + 1675716, + 1675718, + 1675719, + 1675721, + 1675888, + 1675901, + 1675905, + 1675907, + 1677731, + 1677817, + 1677820, + 1677925, + 1677926, + 1677927, + 1677932, + 1677939, + 1677944, + 1677948, + 1678080, + 1678093, + 1678274, + 1678294, + 1678295, + 1678297, + 1678298, + 1678300, + 1678801, + 1678805, + 1679540, + 1679570, + 1679571, + 1680313, + 1680730, + 1680876, + 1680877, + 1680878, + 1681098, + 1681121, + 1681122, + 1682148, + 1682381, + 1682388, + 1682725, + 1682943, + 1682977, + 1683091, + 1683169, + 1683171, + 1683172, + 1683173, + 1683175, + 1683176, + 1683177, + 1683181, + 1683183, + 1683184, + 1683289, + 1683290, + 1683793, + 1683847, + 1684071, + 1684467, + 1684569, + 1684570, + 1684572, + 1684725, + 1685483, + 1685745, + 1685811, + 1686061, + 1686436, + 1686438, + 1687036, + 1687062, + 1687177, + 1687221, + 1687561, + 1687562, + 1687693, + 1687849, + 1688037, + 1688039, + 1688041, + 1688107, + 1688733, + 1689336, + 1689342, + 1689345, + 1689348, + 1689349, + 1689419, + 1689427, + 1689481, + 1689483, + 1689501, + 1689520, + 1689522, + 1689550, + 1689551, + 1689553, + 1689557, + 1689559, + 1689626, + 1689628, + 1689643, + 1689646, + 1689738, + 1689792, + 1689794, + 1689795, + 1689796, + 1689797, + 1690753, + 1690803, + 1691140, + 1691157, + 1691173, + 1691191, + 1692263, + 1692323, + 1692634, + 1693625, + 1693729, + 1695071, + 1695111, + 1695238, + 1696062, + 1696351, + 1696352, + 1696353, + 1696418, + 1696720, + 1696721, + 1696722, + 1696723, + 1696725, + 1696726, + 1696727, + 1696728, + 1696831, + 1696980, + 1696981, + 1697106, + 1697107, + 1697191, + 1697252, + 1697255, + 1697371, + 1697737, + 1697919, + 1698132, + 1698244, + 1698249, + 1698330, + 1698519, + 1698881, + 1698882, + 1698883, + 1698884, + 1699454, + 1699455, + 1699803, + 1699924, + 1700121, + 1700418, + 1701673, + 1701674, + 1701676, + 1701678, + 1701680, + 1701681, + 1701682, + 1701684, + 1701685, + 1701686, + 1701688, + 1701689, + 1701690, + 1701691, + 1701692, + 1701694, + 1701695, + 1701696, + 1701697, + 1701698, + 1701699, + 1701700, + 1701701, + 1701702, + 1701703, + 1701704, + 1701705, + 1701707, + 1701708, + 1701709, + 1701710, + 1701711, + 1701712, + 1701713, + 1701714, + 1701715, + 1701716, + 1701717, + 1701718, + 1701719, + 1701720, + 1701721, + 1701722, + 1701723, + 1701724, + 1701725, + 1701726, + 1701727, + 1701728, + 1701729, + 1701731, + 1701732, + 1701733, + 1701734, + 1701735, + 1701736, + 1701737, + 1701738, + 1701739, + 1701740, + 1701741, + 1701742, + 1701743, + 1701744, + 1701766, + 1702166, + 1702390, + 1702444, + 1703293, + 1703571, + 1703674, + 1704338, + 1705547, + 1705551, + 1705983, + 1705985, + 1705987, + 1705992, + 1705996, + 1705998, + 1706007, + 1706051, + 1706145, + 1706147, + 1706148, + 1706185, + 1706454, + 1706742, + 1706743, + 1706744, + 1706745, + 1706753, + 1706986, + 1706988, + 1707223, + 1707225, + 1707227, + 1707228, + 1707229, + 1707627, + 1707628, + 1707629, + 1707630, + 1707632, + 1707633, + 1707636, + 1707637, + 1707638, + 1707639, + 1707642, + 1707645, + 1707646, + 1707647, + 1707648, + 1707649, + 1707650, + 1707651, + 1707652, + 1707653, + 1707654, + 1707655, + 1707656, + 1707657, + 1707658, + 1707659, + 1707660, + 1707661, + 1707662, + 1707664, + 1707665, + 1707666, + 1707667, + 1707669, + 1707671, + 1707672, + 1707866, + 1707950, + 1707951, + 1707952, + 1707953, + 1707958, + 1709820, + 1710018, + 1710030, + 1710789, + 1711102, + 1711235, + 1711407, + 1712233, + 1712766, + 1712784, + 1712842, + 1712897, + 1713748, + 1713749, + 1713753, + 1713756, + 1713758, + 1713762, + 1713764, + 1713766, + 1713772, + 1713775, + 1713780, + 1713782, + 1713785, + 1713788, + 1713795, + 1713824, + 1713846, + 1714065, + 1714169, + 1714170, + 1714171, + 1714281, + 1714406, + 1715635, + 1715636, + 1715637, + 1715908, + 1716925, + 1717222, + 1717590, + 1717995, + 1717996, + 1718019, + 1718162, + 1718320, + 1718321, + 1718322, + 1718323, + 1718325, + 1718326, + 1718491, + 1718648, + 1718649, + 1718965, + 1718979, + 1719039, + 1719483, + 1719491, + 1719493, + 1719496, + 1719506, + 1719622, + 1719785, + 1720197, + 1720856, + 1721010, + 1721227, + 1721312, + 1721631, + 1721687, + 1721723, + 1722294, + 1722486, + 1722520, + 1722790, + 1722795, + 1723327, + 1724071, + 1724421, + 1724735, + 1725001, + 1725072, + 1725073, + 1725471, + 1726199, + 1726982, + 1727454, + 1728063, + 1728557, + 1728560, + 1728966, + 1729415, + 1729479, + 1730115, + 1730122, + 1730266, + 1730268, + 1730271, + 1730849, + 1731588, + 1731770, + 1731772, + 1731934, + 1732175, + 1732723, + 1732872, + 1732873, + 1732912, + 1733971, + 1734187, + 1735690, + 1736262, + 1736663, + 1736679, + 1736680, + 1737206, + 1738255, + 1738506, + 1738508, + 1738775, + 1738919, + 1739304, + 1739927, + 1740170, + 1740171, + 1740172, + 1740173, + 1740181, + 1740182, + 1740183, + 1740184, + 1740185, + 1740186, + 1740187, + 1740188, + 1740189, + 1740190, + 1740191, + 1740192, + 1740193, + 1740194, + 1740195, + 1740196, + 1740198, + 1740199, + 1740200, + 1740201, + 1740202, + 1740203, + 1740427, + 1740888, + 1741729, + 1741848, + 1741866, + 1741964, + 1742318, + 1743106, + 1743114, + 1743263, + 1743566, + 1743574, + 1744070, + 1744258, + 1744860, + 1745238, + 1746288, + 1746289, + 1747992, + 1748680, + 1748741, + 1748805, + 1749594, + 1750013, + 1750093, + 1750857, + 1751208, + 1751421, + 1751506, + 1751552, + 1751857, + 1752174, + 1752688, + 1753085, + 1753086, + 1753806, + 1753821, + 1753822, + 1753828, + 1754222, + 1754225, + 1754227, + 1754469, + 1754470, + 1754726, + 1755379, + 1755531, + 1755831, + 1755933, + 1756469, + 1756474, + 1756555, + 1756853, + 1757209, + 1757261, + 1757388, + 1757595, + 1757598, + 1757608, + 1758723, + 1758724, + 1758726, + 1758728, + 1758729, + 1758731, + 1758737, + 1758741, + 1758742, + 1758743, + 1758749, + 1758750, + 1758752, + 1758754, + 1759234, + 1759813, + 1759852, + 1759856, + 1759866, + 1759869, + 1760260, + 1760439, + 1761289, + 1761989, + 1762011, + 1762094, + 1762555, + 1763048, + 1763284, + 1764842, + 1765338, + 1765609, + 1765707, + 1765751, + 1765758, + 1765762, + 1765794, + 1766249, + 1766561, + 1766641, + 1766668, + 1766671, + 1766675, + 1766681, + 1766686, + 1766706, + 1766876, + 1767206, + 1767448, + 1767606, + 1767608, + 1768221, + 1768583, + 1768696, + 1769577, + 1770904, + 1770967, + 1770973, + 1771067, + 1771068, + 1771431, + 1771822, + 1772432, + 1772434, + 1772837, + 1772838, + 1772839, + 1773061, + 1773177, + 1773373, + 1773940, + 1774825, + 1775593, + 1775958, + 1776123, + 1776385, + 1776844, + 1777032, + 1777082, + 1777084, + 1777088, + 1777181, + 1777192, + 1777380, + 1777802, + 1777819, + 1778225, + 1778413, + 1778433, + 1778434, + 1779400, + 1779537, + 1779774, + 1780209, + 1780229, + 1780245, + 1780299, + 1781472, + 1781475, + 1781476, + 1781480, + 1781484, + 1781485, + 1781486, + 1781487, + 1781489, + 1781490, + 1781493, + 1781494, + 1781640, + 1781645, + 1781755, + 1781764, + 1781774, + 1781934, + 1782380, + 1782565, + 1783094, + 1783126, + 1783127, + 1783128, + 1784239, + 1784240, + 1784642, + 1784779, + 1786452, + 1786622, + 1787194, + 1787195, + 1787196, + 1787197, + 1787198, + 1787200, + 1787201, + 1787202, + 1787203, + 1787206, + 1787207, + 1787208, + 1787209, + 1787210, + 1787211, + 1787212, + 1787213, + 1787214, + 1787215, + 1787216, + 1787217, + 1787218, + 1787219, + 1787221, + 1787222, + 1787224, + 1787226, + 1787227, + 1787228, + 1787229, + 1787232, + 1787233, + 1787234, + 1787237, + 1787238, + 1787239, + 1787240, + 1787241, + 1787242, + 1787243, + 1787244, + 1787245, + 1787246, + 1787247, + 1787248, + 1787249, + 1787251, + 1787252, + 1787253, + 1787254, + 1787255, + 1787257, + 1787259, + 1787260, + 1787645, + 1788151, + 1788229, + 1788230, + 1788233, + 1788255, + 1788274, + 1788292, + 1788881, + 1789214, + 1789215, + 1789216, + 1789853, + 1790355, + 1790563, + 1790796, + 1791592, + 1791707, + 1791709, + 1792225, + 1793283, + 1793415, + 1793540, + 1793541, + 1793842, + 1793879, + 1793880, + 1793881, + 1793930, + 1793952, + 1794453, + 1794556, + 1795599, + 1795707, + 1796040, + 1796042, + 1797004, + 1797007, + 1797020, + 1797035, + 1797041, + 1797048, + 1797454, + 1797455, + 1797457, + 1797460, + 1797700, + 1798000, + 1798828, + 1798833, + 1799369, + 1800290, + 1801104, + 1801108, + 1801109, + 1801110, + 1801111, + 1801328, + 1802107, + 1802386, + 1803223, + 1803224, + 1803225, + 1803226, + 1803227, + 1803408, + 1804470, + 1804818, + 1804986, + 1805460, + 1805583, + 1805989, + 1806452, + 1806675, + 1806884, + 1807063, + 1807064, + 1807575, + 1807907, + 1807909, + 1808608, + 1808812, + 1808859, + 1808863, + 1809401, + 1809596, + 1809600, + 1809719, + 1810212, + 1810320, + 1810333, + 1810904, + 1811656, + 1811657, + 1811659, + 1811664, + 1811667, + 1811671, + 1811672, + 1811742, + 1811745, + 1812578, + 1813204, + 1813278, + 1813322, + 1813970, + 1814039, + 1814040, + 1814609, + 1814768, + 1814769, + 1815777, + 1815778, + 1815781, + 1815783, + 1815785, + 1815786, + 1815787, + 1815855, + 1816349, + 1816903, + 1816904, + 1816905, + 1817251, + 1817252, + 1817521, + 1817741, + 1817821, + 1818170, + 1818425, + 1818442, + 1819270, + 1819499, + 1819726, + 1819815, + 1820392, + 1820587, + 1821141, + 1821777, + 1821782, + 1822045, + 1822513, + 1822514, + 1822515, + 1822516, + 1822934, + 1822946, + 1823637, + 1823673, + 1823704, + 1823707, + 1823947, + 1824823, + 1824893, + 1825131, + 1825132, + 1825648, + 1825735, + 1827545, + 1827549, + 1827551, + 1827931, + 1827970, + 1828378, + 1829078, + 1829488, + 1829743, + 1829749, + 1829750, + 1831013, + 1831017, + 1831643, + 1833292, + 1833351, + 1833371, + 1834065, + 1834129, + 1834893, + 1834961, + 1834966, + 1834967, + 1834970, + 1834973, + 1834975, + 1834976, + 1834978, + 1834979, + 1834981, + 1834982, + 1836079, + 1836081, + 1836888, + 1836958, + 1836959, + 1837551, + 1838142, + 1838239, + 1838241, + 1838242, + 1838467, + 1838550, + 1838551, + 1838616, + 1838794, + 1838862, + 1840287, + 1840887, + 1840888, + 1840890, + 1840891, + 1840892, + 1840894, + 1840974, + 1841568, + 1841633, + 1841664, + 1841917, + 1841926, + 1842093, + 1842269, + 1842490, + 1842647, + 1842648, + 1842650, + 1842651, + 1842657, + 1843418, + 1843594, + 1843821, + 1844056, + 1844076, + 1844078, + 1844270, + 1847462, + 1848360, + 1849444, + 1849894, + 1849896, + 1849898, + 1849902, + 1850058, + 1851924, + 1852464, + 1852713, + 1853148, + 1853154, + 1853882, + 1853883, + 1854060, + 1854148, + 1855232, + 1855233, + 1855494, + 1855541, + 1855839, + 1856811, + 1856990, + 1858115, + 1859325, + 1859336, + 1859337, + 1859349, + 1859845, + 1860033, + 1860073, + 1860121, + 1861694, + 1861829, + 1861896, + 1861904, + 1861906, + 1861907, + 1861908, + 1861911, + 1862222, + 1862766, + 1862958, + 1862973, + 1862979, + 1864250, + 1864252, + 1864898, + 1865088, + 1866247, + 1866499, + 1866506, + 1866539, + 1866760, + 1866780, + 1866781, + 1866898, + 1867029, + 1867201, + 1867844, + 1867847, + 1868527, + 1868841, + 1868842, + 1868887, + 1868889, + 1869106, + 1869107, + 1869108, + 1869514, + 1869727, + 1869731, + 1869749, + 1869761, + 1869777, + 1869780, + 1870277, + 1870417, + 1871469, + 1871531, + 1872636, + 1872637, + 1873191, + 1873859, + 1873860, + 1874785, + 1875697, + 1875699, + 1875748, + 1875753, + 1876463, + 1876984, + 1877195, + 1877334, + 1877336, + 1877338, + 1877340, + 1877341, + 1877344, + 1877595, + 1877631, + 1877878, + 1878421, + 1878428, + 1878993, + 1879949, + 1880370, + 1880413, + 1880469, + 1880877, + 1881089, + 1881200, + 1881498, + 1881587, + 1882616, + 1882742, + 1882925, + 1883006, + 1884239, + 1884305, + 1884306, + 1884679, + 1884681, + 1884682, + 1884687, + 1884805, + 1884810, + 1884912, + 1884952, + 1885053, + 1885149, + 1885150, + 1885299, + 1885419, + 1885702, + 1885855, + 1885856, + 1885857, + 1885858, + 1885859, + 1885860, + 1885861, + 1885862, + 1885863, + 1885864, + 1885865, + 1885866, + 1885868, + 1885870, + 1885871, + 1885872, + 1885873, + 1885874, + 1885875, + 1885876, + 1885877, + 1885879, + 1885880, + 1885881, + 1885882, + 1886183, + 1886952, + 1886953, + 1888014, + 1888026, + 1889923, + 1889965, + 1890009, + 1890349, + 1890350, + 1890926, + 1891146, + 1891340, + 1891492, + 1891508, + 1892420, + 1892722, + 1893266, + 1893275, + 1893285, + 1893396, + 1893897, + 1894530, + 1894868, + 1895018, + 1895019, + 1895707, + 1895825, + 1896112, + 1896131, + 1897107, + 1897112, + 1897204, + 1897596, + 1897717, + 1898509, + 1898653, + 1898654, + 1898656, + 1898657, + 1898686, + 1899119, + 1899277, + 1899285, + 1899409, + 1899410, + 1899411, + 1899412, + 1899413, + 1899414, + 1899415, + 1899416, + 1899417, + 1899637, + 1900104, + 1900148, + 1900525, + 1900622, + 1901274, + 1902179, + 1902180, + 1902464, + 1902508, + 1902511, + 1902709, + 1902711, + 1902934, + 1903013, + 1903222, + 1904247, + 1904932, + 1904933, + 1904934, + 1904935, + 1904937, + 1904938, + 1904939, + 1904941, + 1904942, + 1904944, + 1905592, + 1905936, + 1905939, + 1905983, + 1905984, + 1905985, + 1907619, + 1907621, + 1907623, + 1907624, + 1907626, + 1907628, + 1907631, + 1907632, + 1907635, + 1907639, + 1907641, + 1907644, + 1907645, + 1907648, + 1907652, + 1907656, + 1907661, + 1907668, + 1907670, + 1907977, + 1908874, + 1910460, + 1910724, + 1910725, + 1911162, + 1911256, + 1911340, + 1911367, + 1911868, + 1911974, + 1912286, + 1913021, + 1913481, + 1913498, + 1913992, + 1914160, + 1914417, + 1914660, + 1915380, + 1915381, + 1915382, + 1915844, + 1915916, + 1916313, + 1916314, + 1916316, + 1916319, + 1916322, + 1916704, + 1916705, + 1917102, + 1917106, + 1917195, + 1917198, + 1917208, + 1917212, + 1917961, + 1918152, + 1918153, + 1918154, + 1918155, + 1918156, + 1918157, + 1918158, + 1918159, + 1918878, + 1918879, + 1918880, + 1918881, + 1918882, + 1918883, + 1918884, + 1918885, + 1918886, + 1918887, + 1919432, + 1919497, + 1919594, + 1919779, + 1919830, + 1920040, + 1920254, + 1920409, + 1920903, + 1921539, + 1922270, + 1922275, + 1922278, + 1922281, + 1922282, + 1922283, + 1922285, + 1922286, + 1922287, + 1922288, + 1922292, + 1922776, + 1923542, + 1923679, + 1924460, + 1924654, + 1924887, + 1924996, + 1925015, + 1925513, + 1925538, + 1926421, + 1926516, + 1926624, + 1926955, + 1927246, + 1927284, + 1927513, + 1928588, + 1928589, + 1928591, + 1928595, + 1928597, + 1928598, + 1929463, + 1929465, + 1929472, + 1930176, + 1930895, + 1931179, + 1931180, + 1931301, + 1931726, + 1931756, + 1932504, + 1932533, + 1933006, + 1933087, + 1933091, + 1933095, + 1933252, + 1933349, + 1933735, + 1933748, + 1934008, + 1934139, + 1934271, + 1934436, + 1934437, + 1936326, + 1936807, + 1937024, + 1937025, + 1937645, + 1937807, + 1938123, + 1938289, + 1939982, + 1940046, + 1940047, + 1940064, + 1940080, + 1940081, + 1940082, + 1940094, + 1940234, + 1940242, + 1940244, + 1940739, + 1940740, + 1940741, + 1940755, + 1941188, + 1941336, + 1941339, + 1941511, + 1941669, + 1941670, + 1941771, + 1941772, + 1941775, + 1941872, + 1941909, + 1942573, + 1942600, + 1942964, + 1942969, + 1943303, + 1943895, + 1943976, + 1944193, + 1944662, + 1945038, + 1945306, + 1945359, + 1946076, + 1946125, + 1946126, + 1946341, + 1946344, + 1946347, + 1946348, + 1946350, + 1946747, + 1946749, + 1946800, + 1946906, + 1946920, + 1946934, + 1947087, + 1947861, + 1948477, + 1948482, + 1948792, + 1948794, + 1948830, + 1949128, + 1949280, + 1949528, + 1949648, + 1949867, + 1950076, + 1950181, + 1950544, + 1950545, + 1950546, + 1950547, + 1951305, + 1951471, + 1951472, + 1951473, + 1951474, + 1951475, + 1951476, + 1951478, + 1951479, + 1951480, + 1951481, + 1951482, + 1951777, + 1951821, + 1951845, + 1951846, + 1951847, + 1951849, + 1951977, + 1952206, + 1952207, + 1952208, + 1952209, + 1952210, + 1952211, + 1952212, + 1952213, + 1952214, + 1952215, + 1952334, + 1952335, + 1952337, + 1952401, + 1952578, + 1952599, + 1953593, + 1953594, + 1953595, + 1953596, + 1953597, + 1953598, + 1953599, + 1953600, + 1953601, + 1953602, + 1953604, + 1953606, + 1953609, + 1953610, + 1953611, + 1953613, + 1953614, + 1953615, + 1953616, + 1953797, + 1954832, + 1955262, + 1955807, + 1956575, + 1956953, + 1957396, + 1957722, + 1957724, + 1957729, + 1957732, + 1957738, + 1957748, + 1957749, + 1957750, + 1957751, + 1957752, + 1958073, + 1958160, + 1958318, + 1958976, + 1958977, + 1959161, + 1959172, + 1959173, + 1959368, + 1959381, + 1959579, + 1959593, + 1959617, + 1959618, + 1960538, + 1960539, + 1960541, + 1960815, + 1960816, + 1960829, + 1961743, + 1962702, + 1962783, + 1962800, + 1962801, + 1963313, + 1963938, + 1964297, + 1964302, + 1964869, + 1966137, + 1966321, + 1966803, + 1966805, + 1967337, + 1967828, + 1968057, + 1968198, + 1968544, + 1968674, + 1968675, + 1970125, + 1970127, + 1970128, + 1970130, + 1970131, + 1970134, + 1970149, + 1970423, + 1970424, + 1970425, + 1970426, + 1970703, + 1970721, + 1970882, + 1971537, + 1971584, + 1971816, + 1973667, + 1973668, + 1973669, + 1973670, + 1973671, + 1973672, + 1973675, + 1973676, + 1973677, + 1973679, + 1973680, + 1973681, + 1973898, + 1974353, + 1974363, + 1974367, + 1974368, + 1974369, + 1974370, + 1974371, + 1974372, + 1974373, + 1974374, + 1974375, + 1974376, + 1975297, + 1975541, + 1975962, + 1976108, + 1976114, + 1976122, + 1976938, + 1977479, + 1977958, + 1978852, + 1978862, + 1978959, + 1979294, + 1979590, + 1979719, + 1980682, + 1980905, + 1981807, + 1981919, + 1981926, + 1981929, + 1982056, + 1982105, + 1982111, + 1982112, + 1982114, + 1982119, + 1982739, + 1982951, + 1982977, + 1983288, + 1983306, + 1983315, + 1983322, + 1983327, + 1983516, + 1983521, + 1985846, + 1985974, + 1986354, + 1986355, + 1986379, + 1986596, + 1986634, + 1986712, + 1986771, + 1987359, + 1987856, + 1988719, + 1989181, + 1989182, + 1989346, + 1989349, + 1989478, + 1989491, + 1990571, + 1990693, + 1990920, + 1990921, + 1990922, + 1991202, + 1991203, + 1991204, + 1991205, + 1991442, + 1991447, + 1991448, + 1991449, + 1991900, + 1992194, + 1993323, + 1993780, + 1993887, + 1993951, + 1994790, + 1994933, + 1995109, + 1995963, + 1996153, + 1996396, + 1996398, + 1996401, + 1996420, + 1996512, + 1996513, + 1996514, + 1996515, + 1996516, + 1996759, + 1997527, + 1997892, + 1998201, + 1998409, + 1998411, + 1998774, + 1998852, + 1998950, + 1999169, + 1999262, + 1999314, + 1999323, + 1999388, + 1999392, + 1999758, + 2000011, + 2000184, + 2000309, + 2000310, + 2000311, + 2000581, + 2000621, + 2000859, + 2000861, + 2000862, + 2000864, + 2000865, + 2000867, + 2001084, + 2001153, + 2001154, + 2001160, + 2001162, + 2001447, + 2001448, + 2001624, + 2002688, + 2002940, + 2003498, + 2003566, + 2003567, + 2003568, + 2003569, + 2003572, + 2003658, + 2003659, + 2003660, + 2003661, + 2003663, + 2003664, + 2003851, + 2003852, + 2003883, + 2003884, + 2003950, + 2004617, + 2004632, + 2004633, + 2004637, + 2004650, + 2005706, + 2006098, + 2006099, + 2006100, + 2006224, + 2006391, + 2006949, + 2006950, + 2007130, + 2007131, + 2007797, + 2008238, + 2008464, + 2008697, + 2009181, + 2009204, + 2009308, + 2009484, + 2009486, + 2009487, + 2009489, + 2010002, + 2010115, + 2010116, + 2010234, + 2010269, + 2010398, + 2010611, + 2010698, + 2010906, + 2010943, + 2011083, + 2012022, + 2012044, + 2012099, + 2012355, + 2013454, + 2013781, + 2013782, + 2014386, + 2014556, + 2014636, + 2015943, + 2016026, + 2016757, + 2016984, + 2018023, + 2018025, + 2018109, + 2018307, + 2018323, + 2018544, + 2018625, + 2018649, + 2019055, + 2019057, + 2019059, + 2019062, + 2019069, + 2019070, + 2019071, + 2019072, + 2019077, + 2019080, + 2019081, + 2019082, + 2019160, + 2019689, + 2019698, + 2019771, + 2019785, + 2020261, + 2020570, + 2020577, + 2020655, + 2020799, + 2020806, + 2020834, + 2021041, + 2021376, + 2021683, + 2021769, + 2021770, + 2021981, + 2022032, + 2022047, + 2022363, + 2022616, + 2022913, + 2023151, + 2023394, + 2023589, + 2023923, + 2023971, + 2023972, + 2023973, + 2024026, + 2024700, + 2024865, + 2025291, + 2025962, + 2026088, + 2026093, + 2026094, + 2026467, + 2026546, + 2027260, + 2027628, + 2027690, + 2027976, + 2028052, + 2028530, + 2028533, + 2028805, + 2028812, + 2028933, + 2029148, + 2029158, + 2029175, + 2029626, + 2029879, + 2029972, + 2030033, + 2030034, + 2030035, + 2030036, + 2030037, + 2030038, + 2030780, + 2031322, + 2031526, + 2031529, + 2031537, + 2031884, + 2031885, + 2031886, + 2031887, + 2031888, + 2031889, + 2031891, + 2031894, + 2031898, + 2031901, + 2031903, + 2031904, + 2031905, + 2031909, + 2031910, + 2031915, + 2031916, + 2031917, + 2031918, + 2031919, + 2031920, + 2031923, + 2031924, + 2031925, + 2031928, + 2031930, + 2031931, + 2031932, + 2031933, + 2031934, + 2031935, + 2031937, + 2032199, + 2032201, + 2032202, + 2032512, + 2033385, + 2033505, + 2033571, + 2033933, + 2033934, + 2034031, + 2034037, + 2034453, + 2034499, + 2034769, + 2035029, + 2035698, + 2035815, + 2035816, + 2035962, + 2036157, + 2036241, + 2036266, + 2036563, + 2036564, + 2036565, + 2036653, + 2036700, + 2036891, + 2036907, + 2037251, + 2037252, + 2037564, + 2037565, + 2037578, + 2038212, + 2038214, + 2038215, + 2038216, + 2038217, + 2038220, + 2038221, + 2038259, + 2038260, + 2038343, + 2038347, + 2039426, + 2039427, + 2039428, + 2039970, + 2039971, + 2039972, + 2039973, + 2039975, + 2039976, + 2039977, + 2039978, + 2040093, + 2040138, + 2040171, + 2040172, + 2040958, + 2041348, + 2042206, + 2042551, + 2042661, + 2042826, + 2042871, + 2042874, + 2042972, + 2043047, + 2043080, + 2043307, + 2043353, + 2043470, + 2044057, + 2044382, + 2044441, + 2044508, + 2044509, + 2044753, + 2044872, + 2044945, + 2045421, + 2045433, + 2045439, + 2045543, + 2045545, + 2045547, + 2045548, + 2045848, + 2045849, + 2045850, + 2045851, + 2045852, + 2046079, + 2046172, + 2046710, + 2046782, + 2047060, + 2047849, + 2048680, + 2048947, + 2049371, + 2050184, + 2051037, + 2052149, + 2052554, + 2053168, + 2053264, + 2053378, + 2053390, + 2053478, + 2054022, + 2054085, + 2054087, + 2054088, + 2054158, + 2054580, + 2055070, + 2055483, + 2055514, + 2055516, + 2055727, + 2055729, + 2055760, + 2055968, + 2056598, + 2056599, + 2056600, + 2056619, + 2056887, + 2056889, + 2057049, + 2057097, + 2057208, + 2057456, + 2057459, + 2057463, + 2057895, + 2058692, + 2059628, + 2059722, + 2059723, + 2059724, + 2059736, + 2059739, + 2059740, + 2060133, + 2060136, + 2060413, + 2060752, + 2060753, + 2060792, + 2060798, + 2060802, + 2060806, + 2060808, + 2061733, + 2061734, + 2061735, + 2061737, + 2061738, + 2061741, + 2063127, + 2063383, + 2063824, + 2063908, + 2063909, + 2063911, + 2063912, + 2063914, + 2063915, + 2063916, + 2063917, + 2063918, + 2063919, + 2063920, + 2063921, + 2063922, + 2063923, + 2063925, + 2063926, + 2063927, + 2063928, + 2063929, + 2063930, + 2063931, + 2063932, + 2063934, + 2064214, + 2064220, + 2064520, + 2064921, + 2064922, + 2064924, + 2064951, + 2065004, + 2065006, + 2065364, + 2065378, + 2065932, + 2066026, + 2066037, + 2066200, + 2066289, + 2066290, + 2066811, + 2066863, + 2066867, + 2066868, + 2066965, + 2067336, + 2068094, + 2068261, + 2068262, + 2068263, + 2068266, + 2068309, + 2068499, + 2068590, + 2068594, + 2069861, + 2070198, + 2070199, + 2070200, + 2070202, + 2070203, + 2070427, + 2070428, + 2070429, + 2070431, + 2070825, + 2070900, + 2071600, + 2071648, + 2071826, + 2073085, + 2073092, + 2074006, + 2074117, + 2074938, + 2075040, + 2075441, + 2075442, + 2075443, + 2075444, + 2075445, + 2075597, + 2077123, + 2077125, + 2077130, + 2077131, + 2077409, + 2077458, + 2077587, + 2077591, + 2077592, + 2077597, + 2077599, + 2077600, + 2077601, + 2077602, + 2077603, + 2077605, + 2077608, + 2077610, + 2077613, + 2077915, + 2077916, + 2078300, + 2078371, + 2078372, + 2078374, + 2078572, + 2078573, + 2078574, + 2079082, + 2079154, + 2079175, + 2079372, + 2079534, + 2079620, + 2079743, + 2080871, + 2081623, + 2082231, + 2083324, + 2083729, + 2084229, + 2084686, + 2084687, + 2085066, + 2085185, + 2086464, + 2086508, + 2086545, + 2087063, + 2087069, + 2087474, + 2087483, + 2087498, + 2088758, + 2088939, + 2089362, + 2089363, + 2089818, + 2090299, + 2090984, + 2091933, + 2091934, + 2091937, + 2091941, + 2091943, + 2091946, + 2091948, + 2091949, + 2092612, + 2092647, + 2092648, + 2092649, + 2092650, + 2092651, + 2092652, + 2092653, + 2092654, + 2092655, + 2093175, + 2093176, + 2093177, + 2093741, + 2093970, + 2094530, + 2094806, + 2095140, + 2095448, + 2095470, + 2095651, + 2096374, + 2096999, + 2097417, + 2097420, + 2097423, + 2097530, + 2097539, + 2098343, + 2098411, + 2099004, + 2099005, + 2099006, + 2099007, + 2099008, + 2099010, + 2099011, + 2099012, + 2099013, + 2099015, + 2099099, + 2099640, + 2100110, + 2100131, + 2100550, + 2100657, + 2100991, + 2101134, + 2101136, + 2101224, + 2101442, + 2101444, + 2102283, + 2102284, + 2102457, + 2103228, + 2103354, + 2103833, + 2104212, + 2104612, + 2104637, + 2104651, + 2104655, + 2104839, + 2105292, + 2105341, + 2105558, + 2105559, + 2105563, + 2105600, + 2105601, + 2106120, + 2106156, + 2106383, + 2106746, + 2106818, + 2106922, + 2108055, + 2108486, + 2108615, + 2108757, + 2109296, + 2109303, + 2109308, + 2109402, + 2109412, + 2109655, + 2109657, + 2109699, + 2110048, + 2110057, + 2110152, + 2110485, + 2111009, + 2111330, + 2111661, + 2111662, + 2111666, + 2111668, + 2111670, + 2111672, + 2111674, + 2111675, + 2111678, + 2111687, + 2111689, + 2111691, + 2112679, + 2112954, + 2113046, + 2113068, + 2113069, + 2113099, + 2113100, + 2113164, + 2113168, + 2113172, + 2114488, + 2114490, + 2114491, + 2114492, + 2114493, + 2114494, + 2114495, + 2114497, + 2114627, + 2115381, + 2115510, + 2115743, + 2115746, + 2115748, + 2115750, + 2115800, + 2116126, + 2116127, + 2116128, + 2116533, + 2117165, + 2117595, + 2118677, + 2118678, + 2118679, + 2118680, + 2119130, + 2119132, + 2119133, + 2119234, + 2119239, + 2119241, + 2119242, + 2119588, + 2120539, + 2120912, + 2121471, + 2122205, + 2122635, + 2122864, + 2122866, + 2122871, + 2122872, + 2122942, + 2122989, + 2123445, + 2123838, + 2123841, + 2123958, + 2123961, + 2123962, + 2123970, + 2123971, + 2123972, + 2123977, + 2123980, + 2123981, + 2123983, + 2123984, + 2123990, + 2123991, + 2123993, + 2123996, + 2124008, + 2124466, + 2124471, + 2124481, + 2124486, + 2124488, + 2124980, + 2125012, + 2125017, + 2125518, + 2125592, + 2125929, + 2125947, + 2126578, + 2127200, + 2127515, + 2128084, + 2128548, + 2128847, + 2128924, + 2128950, + 2129458, + 2129819, + 2130273, + 2130739, + 2131002, + 2131007, + 2131010, + 2131017, + 2131746, + 2132797, + 2133598, + 2133601, + 2133821, + 2133946, + 2133950, + 2133972, + 2134338, + 2135220, + 2135223, + 2135228, + 2135231, + 2135288, + 2135319, + 2135320, + 2135321, + 2135323, + 2135419, + 2135535, + 2135650, + 2135840, + 2135842, + 2135843, + 2135979, + 2136730, + 2137248, + 2138145, + 2138148, + 2138199, + 2138484, + 2140039, + 2140636, + 2143203, + 2144801, + 2145298, + 2145818, + 2146155, + 2146185, + 2147161, + 2147383, + 2147882, + 2150054, + 2150149, + 2150152, + 2150679, + 2150873, + 2150874, + 2150875, + 2150876, + 2150877, + 2150879, + 2150880, + 2150881, + 2150900, + 2150901, + 2150954, + 2151115, + 2151256, + 2151501, + 2151809, + 2151820, + 2152028, + 2152345, + 2152904, + 2152910, + 2152936, + 2153162, + 2153251, + 2154170, + 2154173, + 2154478, + 2155099, + 2155159, + 2155351, + 2156368, + 2156429, + 2157294, + 2157715, + 2157719, + 2158306, + 2158865, + 2159468, + 2159580, + 2160247, + 2160248, + 2160250, + 2160251, + 2160252, + 2161000, + 2161057, + 2161058, + 2161063, + 2161071, + 2161126, + 2161284, + 2161285, + 2161286, + 2161287, + 2161288, + 2161289, + 2161291, + 2161292, + 2161293, + 2161294, + 2161295, + 2161296, + 2161297, + 2161298, + 2161299, + 2161300, + 2161302, + 2161303, + 2161304, + 2161305, + 2161306, + 2161307, + 2161308, + 2161309, + 2161310, + 2161311, + 2161312, + 2161313, + 2161314, + 2161315, + 2161316, + 2161317, + 2161318, + 2161319, + 2161321, + 2161323, + 2161324, + 2161325, + 2161326, + 2161327, + 2161328, + 2161329, + 2161330, + 2161331, + 2161332, + 2161333, + 2161360, + 2161599, + 2161600, + 2161601, + 2163045, + 2164250, + 2164266, + 2164546, + 2164550, + 2165361, + 2165362, + 2165364, + 2165365, + 2165366, + 2165461, + 2165462, + 2165503, + 2166366, + 2166367, + 2166368, + 2166484, + 2166581, + 2166582, + 2166891, + 2166998, + 2167427, + 2167428, + 2167476, + 2167542, + 2168650, + 2168656, + 2168687, + 2169044, + 2169045, + 2169050, + 2169054, + 2169631, + 2169700, + 2169955, + 2171416, + 2171514, + 2173745, + 2174003, + 2174004, + 2174005, + 2174007, + 2174010, + 2174404, + 2174775, + 2175894, + 2176072, + 2176133, + 2176135, + 2176139, + 2176594, + 2176600, + 2176953, + 2177546, + 2177548, + 2177551, + 2177641, + 2177884, + 2178069, + 2178796, + 2178798, + 2178799, + 2178819, + 2179538, + 2180223, + 2180240, + 2180275, + 2180277, + 2180534, + 2181402, + 2181625, + 2181630, + 2181633, + 2182371, + 2182372, + 2182386, + 2182486, + 2182487, + 2182946, + 2183346, + 2183349, + 2183524, + 2183539, + 2183655, + 2183666, + 2183667, + 2183668, + 2183669, + 2183678, + 2183691, + 2183904, + 2184522, + 2184524, + 2184525, + 2185049, + 2185381, + 2185398, + 2185437, + 2185819, + 2185820, + 2185823, + 2186264, + 2186431, + 2186611, + 2186612, + 2186613, + 2186614, + 2186639, + 2187336, + 2187340, + 2187848, + 2188422, + 2188423, + 2188424, + 2188425, + 2188426, + 2188427, + 2188453, + 2188820, + 2188821, + 2188825, + 2188826, + 2188827, + 2188834, + 2188835, + 2188837, + 2188838, + 2188888, + 2189749, + 2189971, + 2190686, + 2190763, + 2191373, + 2191374, + 2191375, + 2191377, + 2191378, + 2191643, + 2191895, + 2191896, + 2192657, + 2192937, + 2192985, + 2192986, + 2192988, + 2192989, + 2192990, + 2192991, + 2193358, + 2194402, + 2194616, + 2194978, + 2195490, + 2195815, + 2195829, + 2197089, + 2197090, + 2197092, + 2197100, + 2197177, + 2197302, + 2198228, + 2198229, + 2198230, + 2198231, + 2198232, + 2198233, + 2198234, + 2198235, + 2198299, + 2198651, + 2198903, + 2198904, + 2199227, + 2199623, + 2200268, + 2200273, + 2200330, + 2200334, + 2200768, + 2200923, + 2201084, + 2201330, + 2202258, + 2202449, + 2202450, + 2202778, + 2203117, + 2203832, + 2204243, + 2204244, + 2204686, + 2204862, + 2205674, + 2205828, + 2206367, + 2206461, + 2206467, + 2206642, + 2206644, + 2206645, + 2206647, + 2206839, + 2207204, + 2207375, + 2207376, + 2209027, + 2209033, + 2209110, + 2209317, + 2209319, + 2209320, + 2209478, + 2211014, + 2211020, + 2211065, + 2211274, + 2211537, + 2213548, + 2213844, + 2214144, + 2214478, + 2214524, + 2215170, + 2215290, + 2215294, + 2215900, + 2216670, + 2216889, + 2217139, + 2217171, + 2217175, + 2217273, + 2217460, + 2217580, + 2217581, + 2217582, + 2217583, + 2217584, + 2217585, + 2217586, + 2217588, + 2217589, + 2217590, + 2217591, + 2218115, + 2218131, + 2219032, + 2219508, + 2219539, + 2219660, + 2219661, + 2220087, + 2220787, + 2220788, + 2220789, + 2220858, + 2221290, + 2221292, + 2221295, + 2221297, + 2221298, + 2221299, + 2221300, + 2221302, + 2221303, + 2221305, + 2221653, + 2222056, + 2222061, + 2223540, + 2223547, + 2223725, + 2223929, + 2224510, + 2224512, + 2224516, + 2224518, + 2224525, + 2224767, + 2224950, + 2225453, + 2225506, + 2225535, + 2225536, + 2225739, + 2225926, + 2226294, + 2227819, + 2227895, + 2227926, + 2227929, + 2227936, + 2227949, + 2227950, + 2227953, + 2227960, + 2227962, + 2228222, + 2228228, + 2228279, + 2228316, + 2228580, + 2228582, + 2228583, + 2228829, + 2228830, + 2228958, + 2229042, + 2229084, + 2229413, + 2229470, + 2229493, + 2229722, + 2230788, + 2230941, + 2230942, + 2231223, + 2231598, + 2232405, + 2232594, + 2232595, + 2232596, + 2232597, + 2232601, + 2232605, + 2232609, + 2232611, + 2232612, + 2232613, + 2232617, + 2232624, + 2232625, + 2232630, + 2232631, + 2232632, + 2232634, + 2232635, + 2232636, + 2232637, + 2232639, + 2232642, + 2232643, + 2232648, + 2232649, + 2232652, + 2232654, + 2232655, + 2232656, + 2232657, + 2232659, + 2232663, + 2232666, + 2232669, + 2232800, + 2233758, + 2233759, + 2234651, + 2234876, + 2235929, + 2236001, + 2237582, + 2237613, + 2238314, + 2238469, + 2239163, + 2239359, + 2239504, + 2239808, + 2240215, + 2240398, + 2240733, + 2240799, + 2241287, + 2241339, + 2241400, + 2241401, + 2241492, + 2241560, + 2241597, + 2242146, + 2242149, + 2242150, + 2242233, + 2242952, + 2242953, + 2243434, + 2243436, + 2243438, + 2243492, + 2243511, + 2245858, + 2245859, + 2245977, + 2246098, + 2246104, + 2246658, + 2248181, + 2249224, + 2249460, + 2249467, + 2249994, + 2250503, + 2251405, + 2251450, + 2252497, + 2252684, + 2252773, + 2252809, + 2252810, + 2253180, + 2253755, + 2253759, + 2254573, + 2255202, + 2255203, + 2255204, + 2255208, + 2256331, + 2256334, + 2256917, + 2257291, + 2257503, + 2257854, + 2257891, + 2257893, + 2257897, + 2257900, + 2258311, + 2258359, + 2258360, + 2258466, + 2258485, + 2259136, + 2259801, + 2260166, + 2261367, + 2261512, + 2261656, + 2261700, + 2261758, + 2262666, + 2262681, + 2263364, + 2264354, + 2266131, + 2266278, + 2266385, + 2266398, + 2266400, + 2266404, + 2266650, + 2266766, + 2267391, + 2267403, + 2267668, + 2267671, + 2267673, + 2267674, + 2267675, + 2267676, + 2267677, + 2267678, + 2267680, + 2267682, + 2267684, + 2267858, + 2268207, + 2268409, + 2268412, + 2268488, + 2268525, + 2269596, + 2270072, + 2270074, + 2270338, + 2270571, + 2270801, + 2271488, + 2271490, + 2271895, + 2272372, + 2272590, + 2272597, + 2272600, + 2272602, + 2272605, + 2272611, + 2272660, + 2272661, + 2272936, + 2272977, + 2272978, + 2272980, + 2273754, + 2273755, + 2273756, + 2273829, + 2273882, + 2273942, + 2273949, + 2273951, + 2274934, + 2274936, + 2276911, + 2277280, + 2277708, + 2277732, + 2278183, + 2278333, + 2278560, + 2278892, + 2279498, + 2279977, + 2280181, + 2280836, + 2281098, + 2281170, + 2281310, + 2281311, + 2281877, + 2281878, + 2281879, + 2281881, + 2281882, + 2281883, + 2281884, + 2281885, + 2281886, + 2281887, + 2281889, + 2281890, + 2281891, + 2281892, + 2281894, + 2281895, + 2281897, + 2281898, + 2281899, + 2281900, + 2282267, + 2282270, + 2282407, + 2283520, + 2283521, + 2283522, + 2283523, + 2283525, + 2284601, + 2284602, + 2284609, + 2284637, + 2284751, + 2285322, + 2285627, + 2286125, + 2286786, + 2287042, + 2287054, + 2288031, + 2288056, + 2288416, + 2288664, + 2288731, + 2290132, + 2290385, + 2290392, + 2291183, + 2291890, + 2292183, + 2293047, + 2293048, + 2293049, + 2293052, + 2293054, + 2293056, + 2293426, + 2293583, + 2294448, + 2295435, + 2295632, + 2295910, + 2296081, + 2296082, + 2296086, + 2296089, + 2296090, + 2296091, + 2296092, + 2296095, + 2296096, + 2296097, + 2296100, + 2296101, + 2296102, + 2296107, + 2296341, + 2296406, + 2296972, + 2297237, + 2297239, + 2297416, + 2297619, + 2299210, + 2300188, + 2300191, + 2300704, + 2300712, + 2301221, + 2303648, + 2303921, + 2303966, + 2304063, + 2304852, + 2304883, + 2305249, + 2305250, + 2305252, + 2305253, + 2305255, + 2305256, + 2305480, + 2305484, + 2305487, + 2305641, + 2305663, + 2305666, + 2305689, + 2306501, + 2307057, + 2307617, + 2307982, + 2309242, + 2309265, + 2311898, + 2311901, + 2312300, + 2312317, + 2313112, + 2313947, + 2314236, + 2314245, + 2315258, + 2315428, + 2315430, + 2315799, + 2315876, + 2315877, + 2315879, + 2315880, + 2315881, + 2316264, + 2316269, + 2316304, + 2316319, + 2316606, + 2316858, + 2316860, + 2316864, + 2316865, + 2317260, + 2317327, + 2317328, + 2317330, + 2317331, + 2317332, + 2317333, + 2317334, + 2317335, + 2317336, + 2317337, + 2317338, + 2317339, + 2317340, + 2317341, + 2318207, + 2318804, + 2318891, + 2319450, + 2320229, + 2320595, + 2320597, + 2320598, + 2320599, + 2320600, + 2320601, + 2320602, + 2320603, + 2320605, + 2320606, + 2320608, + 2320609, + 2320611, + 2320612, + 2320613, + 2320731, + 2320752, + 2320756, + 2320878, + 2321395, + 2321558, + 2322369, + 2322372, + 2324412, + 2324413, + 2324415, + 2324419, + 2324420, + 2324696, + 2324880, + 2324935, + 2325677, + 2325720, + 2325723, + 2325726, + 2325727, + 2325904, + 2325907, + 2325925, + 2326274, + 2327234, + 2327983, + 2328173, + 2328549, + 2328550, + 2328551, + 2328554, + 2328555, + 2328556, + 2328557, + 2328559, + 2328561, + 2328562, + 2328563, + 2328565, + 2328568, + 2328569, + 2328572, + 2328573, + 2328574, + 2328575, + 2328576, + 2328577, + 2328579, + 2328580, + 2328581, + 2328582, + 2328583, + 2328584, + 2328586, + 2328587, + 2328589, + 2328590, + 2328592, + 2328593, + 2328594, + 2328595, + 2328596, + 2328597, + 2328599, + 2328603, + 2328604, + 2328605, + 2328606, + 2328607, + 2328608, + 2328610, + 2328611, + 2328612, + 2328613, + 2328614, + 2328616, + 2328618, + 2328619, + 2328621, + 2328854, + 2328931, + 2328995, + 2329008, + 2329009, + 2329011, + 2329014, + 2329015, + 2329016, + 2329074, + 2329326, + 2329736, + 2329827, + 2329913, + 2329916, + 2330093, + 2330242, + 2330246, + 2330986, + 2331120, + 2331381, + 2331998, + 2332066, + 2332464, + 2332469, + 2332886, + 2333219, + 2333224, + 2333227, + 2333530, + 2333550, + 2334987, + 2335207, + 2335356, + 2335667, + 2336140, + 2336661, + 2336662, + 2336863, + 2336902, + 2337081, + 2337177, + 2337730, + 2337732, + 2339130, + 2340051, + 2340257, + 2340465, + 2341464, + 2342052, + 2342560, + 2344420, + 2344541, + 2345455, + 2345458, + 2345577, + 2345578, + 2345981, + 2346545, + 2346731, + 2347850, + 2350448, + 2350683, + 2351195, + 2351491, + 2352269, + 2353597, + 2353598, + 2353601, + 2353643, + 2353682, + 2354651, + 2354931, + 2355301, + 2356127, + 2356722, + 2357621, + 2358844, + 2358917, + 2359559, + 2360625, + 2361229, + 2361289, + 2361311, + 2361312, + 2361600, + 2361879, + 2362236, + 2363091, + 2363399, + 2363516, + 2363517, + 2363755, + 2364182, + 2364184, + 2364185, + 2364187, + 2364188, + 2364189, + 2364190, + 2364191, + 2364192, + 2364193, + 2364194, + 2364195, + 2364196, + 2364197, + 2364200, + 2364201, + 2364202, + 2364204, + 2364757, + 2365741, + 2365743, + 2365801, + 2365877, + 2366172, + 2366278, + 2366429, + 2366695, + 2367873, + 2367880, + 2368078, + 2368637, + 2369544, + 2369549, + 2369755, + 2369756, + 2369967, + 2371048, + 2371349, + 2371354, + 2371471, + 2371481, + 2372183, + 2372788, + 2373231, + 2373232, + 2373858, + 2373863, + 2374482, + 2375060, + 2375182, + 2375237, + 2375652, + 2375929, + 2376276, + 2376623, + 2377167, + 2378270, + 2378815, + 2379961, + 2381404, + 2381502, + 2381781, + 2381784, + 2381888, + 2382781, + 2382844, + 2383087, + 2383088, + 2384360, + 2384361, + 2385669, + 2385676, + 2386617, + 2388064, + 2388573, + 2388575, + 2388825, + 2388898, + 2389873, + 2389874, + 2389900, + 2390740, + 2390879, + 2391181, + 2391184, + 2391185, + 2391186, + 2391187, + 2392048, + 2392551, + 2392570, + 2392750, + 2392751, + 2392876, + 2393037, + 2393038, + 2393076, + 2394474, + 2394641, + 2394642, + 2395073, + 2396216, + 2396237, + 2396573, + 2397559, + 2397922, + 2398587, + 2399606, + 2399683, + 2400122, + 2401209, + 2401287, + 2401367, + 2401368, + 2401887, + 2401888, + 2403989, + 2404233, + 2404250, + 2404251, + 2404253, + 2406241, + 2406295, + 2407693, + 2408160, + 2409336, + 2410308, + 2410361, + 2410477, + 2412701, + 2413102, + 2413499, + 2413500, + 2413501, + 2413502, + 2413503, + 2413504, + 2413943, + 2414270, + 2415399, + 2415409, + 2416284, + 2417234, + 2417519, + 2417710, + 2417807, + 2418190, + 2418504, + 2421516, + 2421871, + 2423060, + 2423069, + 2423076, + 2423087, + 2423868, + 2425628, + 2425629, + 2425630, + 2425631, + 2425632, + 2425802, + 2426218, + 2426501, + 2427189, + 2427436, + 2427713, + 2427714, + 2427721, + 2428179, + 2428343, + 2428570, + 2428576, + 2428579, + 2429740, + 2430852, + 2430853, + 2431233, + 2431632, + 2431640, + 2431812, + 2431976, + 2432961, + 2433943, + 2433945, + 2433946, + 2434059, + 2434085, + 2434276, + 2434500, + 2434503, + 2434944, + 2435444, + 2435445, + 2436521, + 2438192, + 2439816, + 2440048, + 2441181, + 2442754, + 2443049, + 2443537, + 2443586, + 2443589, + 2443731, + 2443981, + 2443991, + 2444073, + 2444623, + 2444767, + 2446519, + 2446924, + 2447631, + 2447883, + 2449227, + 2449244, + 2450206, + 2450732, + 2451706, + 2451928, + 2452112, + 2452624, + 2452860, + 2453298, + 2453559, + 2453657, + 2454109, + 2454582, + 2455980, + 2455981, + 2456308, + 2456613, + 2458383, + 2458409, + 2458874, + 2459078, + 2462060, + 2464744, + 2464796, + 2465113, + 2465512, + 2465700, + 2466536, + 2466667, + 2466714, + 2467728, + 2467965, + 2470643, + 2470648, + 2472248, + 2472706, + 2473395, + 2473396, + 2474056, + 2474057, + 2474827, + 2474828, + 2474829, + 2474830, + 2474831, + 2474835, + 2474836, + 2474837, + 2474838, + 2475727, + 2476341, + 2476342, + 2476345, + 2476347, + 2476349, + 2476350, + 2476400, + 2477476, + 2478376, + 2478377, + 2478660, + 2479226, + 2479945, + 2480145, + 2480612, + 2480750, + 2481296, + 2481455, + 2481730, + 2481771, + 2482325, + 2482581, + 2483126, + 2483147, + 2483501, + 2483583, + 2483707, + 2484150, + 2484359, + 2484367, + 2484371, + 2484395, + 2484405, + 2484971, + 2485112, + 2485385, + 2485401, + 2485672, + 2485673, + 2486399, + 2486505, + 2486544, + 2486944, + 2486945, + 2486946, + 2488536, + 2488545, + 2489127, + 2489540, + 2489713, + 2490189, + 2490570, + 2491679, + 2491682, + 2491685, + 2492887, + 2492996, + 2493534, + 2493542, + 2494381, + 2494382, + 2494383, + 2494384, + 2494387, + 2494388, + 2494390, + 2494782, + 2494783, + 2495111, + 2495597, + 2496488, + 2496585, + 2496591, + 2497557, + 2497574, + 2497747, + 2498581, + 2498690, + 2498795, + 2499623, + 2501561, + 2501563, + 2501564, + 2503275, + 2503785, + 2505561, + 2506262, + 2506267, + 2506271, + 2506306, + 2506352, + 2506554, + 2506811, + 2508855, + 2508856, + 2509627, + 2510170, + 2511179, + 2511183, + 2511184, + 2511209, + 2511710, + 2511716, + 2511744, + 2512433, + 2512540, + 2512545, + 2513738, + 2513832, + 2514518, + 2514519, + 2515522, + 2516253, + 2516538, + 2518108, + 2518320, + 2518321, + 2519326, + 2519869, + 2520212, + 2520216, + 2520460, + 2520472, + 2521280, + 2521336, + 2522400, + 2522401, + 2522970, + 2523100, + 2523102, + 2523103, + 2523104, + 2523107, + 2523108, + 2523109, + 2523110, + 2523111, + 2523112, + 2523113, + 2523119, + 2523120, + 2523121, + 2523122, + 2523124, + 2523126, + 2523129, + 2523133, + 2523135, + 2523137, + 2523139, + 2523140, + 2523141, + 2523145, + 2523148, + 2523150, + 2523153, + 2523154, + 2523155, + 2523159, + 2523272, + 2523692, + 2523697, + 2523708, + 2523716, + 2526402, + 2526459, + 2526461, + 2526605, + 2526965, + 2527502, + 2527503, + 2527795, + 2527870, + 2527992, + 2527993, + 2527994, + 2527995, + 2528000, + 2528003, + 2528004, + 2528112, + 2528114, + 2528115, + 2528116, + 2528117, + 2528907, + 2529206, + 2530300, + 2531401, + 2531418, + 2531830, + 2532528, + 2532798, + 2533153, + 2533154, + 2533155, + 2533156, + 2533384, + 2533985, + 2533986, + 2534055, + 2534058, + 2534076, + 2534101, + 2534105, + 2534243, + 2534359, + 2534361, + 2535102, + 2536442, + 2537711, + 2537947, + 2538550, + 2538552, + 2540086, + 2540133, + 2540357, + 2542022, + 2542336, + 2542828, + 2544021, + 2544517, + 2544830, + 2545046, + 2545048, + 2545049, + 2546316, + 2546521, + 2546531, + 2546845, + 2547320, + 2547374, + 2547946, + 2547952, + 2547955, + 2548127, + 2549279, + 2549782, + 2550342, + 2551944, + 2552415, + 2552416, + 2552417, + 2552418, + 2552419, + 2553429, + 2554777, + 2554779, + 2554781, + 2555257, + 2556272, + 2556637, + 2557356, + 2557515, + 2557516, + 2557517, + 2557518, + 2558110, + 2558124, + 2558125, + 2558127, + 2558633, + 2558750, + 2558777, + 2559315, + 2559562, + 2559982, + 2559990, + 2559992, + 2560110, + 2560963, + 2560966, + 2561060, + 2561246, + 2562212, + 2562348, + 2562439, + 2562441, + 2563419, + 2563553, + 2563575, + 2563782, + 2564223, + 2566067, + 2566596, + 2567002, + 2567003, + 2567307, + 2567926, + 2568636, + 2569297, + 2570635, + 2570715, + 2571011, + 2571060, + 2571062, + 2571063, + 2571554, + 2572043, + 2573633, + 2573820, + 2574026, + 2574592, + 2575613, + 2575777, + 2575861, + 2575958, + 2576318, + 2577101, + 2577984, + 2577987, + 2578624, + 2578625, + 2579693, + 2580098, + 2580428, + 2581676, + 2582889, + 2583455, + 2583457, + 2583528, + 2583961, + 2584046, + 2584886, + 2584911, + 2585312, + 2586567, + 2586909, + 2586912, + 2587028, + 2587147, + 2587805, + 2587807, + 2589064, + 2589097, + 2589430, + 2589808, + 2589810, + 2593440, + 2594778, + 2594979, + 2595786, + 2596814, + 2596832, + 2597106, + 2599148, + 2599551, + 2599727, + 2600701, + 2601097, + 2601152, + 2601189, + 2602152, + 2602563, + 2602867, + 2603896, + 2603897, + 2604347, + 2604445, + 2605757, + 2605908, + 2606241, + 2606286, + 2607327, + 2607694, + 2607695, + 2608093, + 2608617, + 2608661, + 2611581, + 2611694, + 2612908, + 2612909, + 2612912, + 2613081, + 2613331, + 2614799, + 2614976, + 2615093, + 2616101, + 2616112, + 2616117, + 2616615, + 2616616, + 2617173, + 2617456, + 2617852, + 2618089, + 2619666, + 2619943, + 2621396, + 2621397, + 2621672, + 2621673, + 2622144, + 2622146, + 2622328, + 2622331, + 2622332, + 2622930, + 2623581, + 2625345, + 2625347, + 2625348, + 2625349, + 2625354, + 2625473, + 2626721, + 2627954, + 2630264, + 2631274, + 2632523, + 2632524, + 2632525, + 2632526, + 2632527, + 2632528, + 2632529, + 2632530, + 2632531, + 2632532, + 2633068, + 2634185, + 2634786, + 2636463, + 2637358, + 2637360, + 2637529, + 2637530, + 2637531, + 2637845, + 2637861, + 2640770, + 2641655, + 2641934, + 2641935, + 2642944, + 2643466, + 2643629, + 2644552, + 2645568, + 2646383, + 2647072, + 2647352, + 2647442, + 2648285, + 2648344, + 2648704, + 2648907, + 2649955, + 2649959, + 2649961, + 2649966, + 2649967, + 2649972, + 2649982, + 2650027, + 2650130, + 2650174, + 2650177, + 2650194, + 2650390, + 2651130, + 2651185, + 2651515, + 2652175, + 2652177, + 2652597, + 2652602, + 2652607, + 2652610, + 2654233, + 2654764, + 2654929, + 2655199, + 2655734, + 2655736, + 2656182, + 2657585, + 2657589, + 2657590, + 2657591, + 2657595, + 2657596, + 2658456, + 2660070, + 2660494, + 2660725, + 2660837, + 2660951, + 2661882, + 2662729, + 2664258, + 2664275, + 2666961, + 2666962, + 2666970, + 2667001, + 2667195, + 2668888, + 2670193, + 2671652, + 2672403, + 2672404, + 2672616, + 2672618, + 2672670, + 2672673, + 2672674, + 2672675, + 2672676, + 2672677, + 2672678, + 2672679, + 2672680, + 2672681, + 2672682, + 2672683, + 2672684, + 2672685, + 2672686, + 2672690, + 2672691, + 2672692, + 2672851, + 2672988, + 2672991, + 2673325, + 2673853, + 2673855, + 2674470, + 2674680, + 2674931, + 2675301, + 2675985, + 2676319, + 2676482, + 2677896, + 2677908, + 2679430, + 2679498, + 2679781, + 2680182, + 2681253, + 2682949, + 2683321, + 2683322, + 2683980, + 2684369, + 2685044, + 2685879, + 2685880, + 2685881, + 2686315, + 2686397, + 2686398, + 2686826, + 2686827, + 2686828, + 2686830, + 2687090, + 2688234, + 2689777, + 2689781, + 2689914, + 2690381, + 2690405, + 2690424, + 2690858, + 2690937, + 2690942, + 2690944, + 2691006, + 2691122, + 2691570, + 2691574, + 2691577, + 2691581, + 2691583, + 2691585, + 2691586, + 2691587, + 2691589, + 2691591, + 2691592, + 2691593, + 2691599, + 2691603, + 2691605, + 2691607, + 2691608, + 2691609, + 2691784, + 2691785, + 2691787, + 2691788, + 2691789, + 2691790, + 2691792, + 2691794, + 2691795, + 2691796, + 2691797, + 2691799, + 2691800, + 2691804, + 2691805, + 2691806, + 2691807, + 2691808, + 2691809, + 2691811, + 2691812, + 2691813, + 2691814, + 2691815, + 2691816, + 2692155, + 2692156, + 2692728, + 2693462, + 2694566, + 2694583, + 2694602, + 2694958, + 2695006, + 2696038, + 2696799, + 2696801, + 2696803, + 2696804, + 2696806, + 2696868, + 2697209, + 2697282, + 2697283, + 2697968, + 2697969, + 2698331, + 2698333, + 2698767, + 2699107, + 2699520, + 2699710, + 2699837, + 2700288, + 2700491, + 2700502, + 2700911, + 2701505, + 2701974, + 2702083, + 2702548, + 2702577, + 2704178, + 2704465, + 2704466, + 2704468, + 2704469, + 2704529, + 2704532, + 2704533, + 2704534, + 2704535, + 2704600, + 2704601, + 2705592, + 2705958, + 2706409, + 2706467, + 2706786, + 2706787, + 2706788, + 2706789, + 2706791, + 2706792, + 2706793, + 2706794, + 2706796, + 2706798, + 2706799, + 2706803, + 2706804, + 2706805, + 2706806, + 2706807, + 2706808, + 2706809, + 2706810, + 2706812, + 2706814, + 2706816, + 2706817, + 2706819, + 2706820, + 2706821, + 2706822, + 2706823, + 2706824, + 2706826, + 2706827, + 2706828, + 2706829, + 2706831, + 2706832, + 2706834, + 2706835, + 2706836, + 2706837, + 2706838, + 2706840, + 2706841, + 2706842, + 2706844, + 2706845, + 2706846, + 2706847, + 2706848, + 2706849, + 2706850, + 2706851, + 2706852, + 2706853, + 2706855, + 2706856, + 2706857, + 2706858, + 2706860, + 2706861, + 2706862, + 2706863, + 2706865, + 2706866, + 2706869, + 2706870, + 2707287, + 2707530, + 2708451, + 2708452, + 2708797, + 2709527, + 2710018, + 2712069, + 2712547, + 2712552, + 2712555, + 2713539, + 2713602, + 2713603, + 2713604, + 2713605, + 2713606, + 2713607, + 2713608, + 2713610, + 2713612, + 2713613, + 2713614, + 2713615, + 2713616, + 2713617, + 2713619, + 2713620, + 2713621, + 2713622, + 2713623, + 2713624, + 2713625, + 2713626, + 2713627, + 2713628, + 2713630, + 2713631, + 2713632, + 2713633, + 2715526, + 2716298, + 2716299, + 2716300, + 2716301, + 2717604, + 2717798, + 2718272, + 2718603, + 2718789, + 2719983, + 2720011, + 2720490, + 2720551, + 2720663, + 2722484, + 2723381, + 2723524, + 2723977, + 2724166, + 2724513, + 2725183, + 2725184, + 2725185, + 2725186, + 2726536, + 2727448, + 2728973, + 2728975, + 2728976, + 2728978, + 2729341, + 2729773, + 2730384, + 2731772, + 2732297, + 2732301, + 2732302, + 2732304, + 2733598, + 2733602, + 2733766, + 2733913, + 2733961, + 2734284, + 2735750, + 2735752, + 2736124, + 2736468, + 2737327, + 2737508, + 2739223, + 2739230, + 2739740, + 2740188, + 2740449, + 2742159, + 2742202, + 2742868, + 2742869, + 2743500, + 2743656, + 2743773, + 2744654, + 2745750, + 2747393, + 2747395, + 2747396, + 2748169, + 2748187, + 2748823, + 2749545, + 2750488, + 2750541, + 2750622, + 2752080, + 2752648, + 2753391, + 2753392, + 2753399, + 2754244, + 2754555, + 2755197, + 2755352, + 2756613, + 2756764, + 2758335, + 2758639, + 2758894, + 2760099, + 2760941, + 2760943, + 2760944, + 2760945, + 2760946, + 2760947, + 2760948, + 2763706, + 2763713, + 2765789, + 2766210, + 2767585, + 2768237, + 2769555, + 2769962, + 2770146, + 2770386, + 2770647, + 2770648, + 2770649, + 2770650, + 2770825, + 2770837, + 2771315, + 2771938, + 2771952, + 2773821, + 2773920, + 2773923, + 2773935, + 2773936, + 2773938, + 2773945, + 2773952, + 2773954, + 2774375, + 2774377, + 2774380, + 2774426, + 2774468, + 2775269, + 2775272, + 2775274, + 2775276, + 2775277, + 2775278, + 2775279, + 2776270, + 2776471, + 2776950, + 2777182, + 2777187, + 2777188, + 2777191, + 2777192, + 2777196, + 2777584, + 2778415, + 2778421, + 2778589, + 2778590, + 2778591, + 2778665, + 2778852, + 2779831, + 2781207, + 2781209, + 2782266, + 2782548, + 2782550, + 2782553, + 2782556, + 2782565, + 2782566, + 2782567, + 2782569, + 2782574, + 2782577, + 2782580, + 2782590, + 2782596, + 2782601, + 2783166, + 2783168, + 2783256, + 2783552, + 2783966, + 2784251, + 2784585, + 2784586, + 2784953, + 2784954, + 2784955, + 2784960, + 2785288, + 2785364, + 2785365, + 2785689, + 2786262, + 2786278, + 2786612, + 2786614, + 2786616, + 2786841, + 2786918, + 2788082, + 2788083, + 2788085, + 2788086, + 2788087, + 2788088, + 2788089, + 2788090, + 2788091, + 2788092, + 2788093, + 2788094, + 2788096, + 2788097, + 2788098, + 2788100, + 2788101, + 2788102, + 2788103, + 2788105, + 2788107, + 2788108, + 2788110, + 2788111, + 2788112, + 2788113, + 2788115, + 2788116, + 2788119, + 2788123, + 2788125, + 2788126, + 2788127, + 2788129, + 2788130, + 2788131, + 2788132, + 2788133, + 2788137, + 2788140, + 2788337, + 2789177, + 2789582, + 2789583, + 2789584, + 2789585, + 2789586, + 2789587, + 2789588, + 2789627, + 2790153, + 2790163, + 2790166, + 2790168, + 2790169, + 2790670, + 2790796, + 2791065, + 2791079, + 2791133, + 2791140, + 2791166, + 2791172, + 2791482, + 2792155, + 2792400, + 2793881, + 2794071, + 2794073, + 2794537, + 2794989, + 2795577, + 2795604, + 2796127, + 2796379, + 2796757, + 2796758, + 2796759, + 2797084, + 2797085, + 2797154, + 2797159, + 2797166, + 2797281, + 2798324, + 2798325, + 2798326, + 2798327, + 2798329, + 2798330, + 2798331, + 2798333, + 2799067, + 2799076, + 2799077, + 2799367, + 2799371, + 2800163, + 2800715, + 2801021, + 2802374, + 2802375, + 2802977, + 2802979, + 2802981, + 2804052, + 2804909, + 2804910, + 2804911, + 2804912, + 2804919, + 2804920, + 2804921, + 2804925, + 2805757, + 2805886, + 2805894, + 2805895, + 2805899, + 2805902, + 2805910, + 2805911, + 2805923, + 2805940, + 2805959, + 2805962, + 2806056, + 2807557, + 2807991, + 2808175, + 2808177, + 2808967, + 2808988, + 2809135, + 2809404, + 2811044, + 2811050, + 2811053, + 2811424, + 2811784, + 2813220, + 2813831, + 2813837, + 2816413, + 2818788, + 2818789, + 2818790, + 2818791, + 2818792, + 2818794, + 2818795, + 2819098, + 2819100, + 2819101, + 2819999, + 2820017, + 2820459, + 2820506, + 2820510, + 2820846, + 2820911, + 2821024, + 2821550, + 2821678, + 2821764, + 2822995, + 2822999, + 2824338, + 2824340, + 2824958, + 2824959, + 2825654, + 2825655, + 2825657, + 2825912, + 2826005, + 2826077, + 2826322, + 2826448, + 2826889, + 2827543, + 2827727, + 2827728, + 2827729, + 2827730, + 2827731, + 2827732, + 2828076, + 2829431, + 2829583, + 2830539, + 2831694, + 2831848, + 2831849, + 2831850, + 2831853, + 2831855, + 2831856, + 2832504, + 2832895, + 2833385, + 2833849, + 2834815, + 2835089, + 2835947, + 2835998, + 2837131, + 2837281, + 2837606, + 2838044, + 2839321, + 2839322, + 2839323, + 2839325, + 2839326, + 2839333, + 2839336, + 2839586, + 2839833, + 2840786, + 2841047, + 2841656, + 2841751, + 2842012, + 2842700, + 2842905, + 2842913, + 2843505, + 2843506, + 2843661, + 2843788, + 2844148, + 2846755, + 2846843, + 2848430, + 2848431, + 2848432, + 2848433, + 2848434, + 2848435, + 2852232, + 2852233, + 2852428, + 2853059, + 2853181, + 2853699, + 2854632, + 2857023, + 2857644, + 2859344, + 2860240, + 2860632, + 2860653, + 2860796, + 2861444, + 2861886, + 2861887, + 2861888, + 2862055, + 2862074, + 2862553, + 2862560, + 2863633, + 2864152, + 2864766, + 2864784, + 2864893, + 2864895, + 2865427, + 2865562, + 2865575, + 2865987, + 2866277, + 2866385, + 2867860, + 2871428, + 2871430, + 2872192, + 2872260, + 2872288, + 2872296, + 2873193, + 2873684, + 2873685, + 2874250, + 2874385, + 2874578, + 2875237, + 2875536, + 2875557, + 2875566, + 2875662, + 2875679, + 2877479, + 2878009, + 2878898, + 2879760, + 2880825, + 2881535, + 2881682, + 2883258, + 2883389, + 2883620, + 2883807, + 2883872, + 2884245, + 2885970, + 2887653, + 2887654, + 2887655, + 2887656, + 2887657, + 2887658, + 2888796, + 2889969, + 2891786, + 2891964, + 2892147, + 2892156, + 2893492, + 2893710, + 2895691, + 2895738, + 2896458, + 2897498, + 2898777, + 2899031, + 2900298, + 2900545, + 2902420, + 2903282, + 2903448, + 2905008, + 2906240, + 2907476, + 2907477, + 2907479, + 2907480, + 2907740, + 2908649, + 2910128, + 2910782, + 2911327, + 2912233, + 2912270, + 2913150, + 2913612, + 2914717, + 2914892, + 2915040, + 2915041, + 2915043, + 2915047, + 2915051, + 2915053, + 2915220, + 2915875, + 2916679, + 2917985, + 2918257, + 2919503, + 2919719, + 2920512, + 2920516, + 2921229, + 2922786, + 2923332, + 2923346, + 2923699, + 2923701, + 2925110, + 2925585, + 2926234, + 2927980, + 2929847, + 2930066, + 2930178, + 2930259, + 2931106, + 2931456, + 2933010, + 2933546, + 2933706, + 2933966, + 2934303, + 2934865, + 2934873, + 2934877, + 2934878, + 2934881, + 2934884, + 2934949, + 2935376, + 2935428, + 2935721, + 2935730, + 2936698, + 2936699, + 2936701, + 2937209, + 2937210, + 2937325, + 2937739, + 2938118, + 2938209, + 2939570, + 2939583, + 2939585, + 2939586, + 2939587, + 2940376, + 2940518, + 2940519, + 2940520, + 2940926, + 2942014, + 2942024, + 2942766, + 2944019, + 2944097, + 2945447, + 2947150, + 2947736, + 2950123, + 2950126, + 2950329, + 2950607, + 2950609, + 2950613, + 2950614, + 2950617, + 2950618, + 2951791, + 2952762, + 2952937, + 2953034, + 2953065, + 2954573, + 2955047, + 2955475, + 2955579, + 2955821, + 2955824, + 2955826, + 2955827, + 2955828, + 2955830, + 2955833, + 2955834, + 2955841, + 2955846, + 2955847, + 2956974, + 2958355, + 2958759, + 2961402, + 2961550, + 2962004, + 2962275, + 2962586, + 2963024, + 2963441, + 2963633, + 2964491, + 2964493, + 2964495, + 2964498, + 2964499, + 2965874, + 2966158, + 2966393, + 2966578, + 2966676, + 2966680, + 2966683, + 2966684, + 2967850, + 2968662, + 2969103, + 2969108, + 2969109, + 2969115, + 2969120, + 2969125, + 2969132, + 2969961, + 2971316, + 2971739, + 2972328, + 2972854, + 2972888, + 2973029, + 2974706, + 2976462, + 2976479, + 2977303, + 2977677, + 2978929, + 2978963, + 2979060, + 2980203, + 2980640, + 2980784, + 2981245, + 2982159, + 2982160, + 2983552, + 2984638, + 2984645, + 2984761, + 2984789, + 2984791, + 2986765, + 2986906, + 2986915, + 2986918, + 2986922, + 2988410, + 2988948, + 2988949, + 2988951, + 2990253, + 2991070, + 2991691, + 2991694, + 2991697, + 2991698, + 2991699, + 2991700, + 2991702, + 2991704, + 2991705, + 2991707, + 2991708, + 2991712, + 2991713, + 2991715, + 2992054, + 2992869, + 2993086, + 2993089, + 2993558, + 2993575, + 2994105, + 2994205, + 2994499, + 2994646, + 2994908, + 2995520, + 2995827, + 2995949, + 2996256, + 2996287, + 2996793, + 2996794, + 2998101, + 2998160, + 2999822, + 3000264, + 3001540, + 3001790, + 3002030, + 3002379, + 3003071, + 3003581, + 3003582, + 3004966, + 3005035, + 3005960, + 3006887, + 3006890, + 3006891, + 3008203, + 3008351, + 3009093, + 3009353, + 3009655, + 3009657, + 3009666, + 3009667, + 3010208, + 3010569, + 3011251, + 3011447, + 3013379, + 3013668, + 3013812, + 3013866, + 3013985, + 3014084, + 3014169, + 3015003, + 3015723, + 3015877, + 3016319, + 3016490, + 3016694, + 3017016, + 3017283, + 3018016, + 3019804, + 3020923, + 3021435, + 3021710, + 3021711, + 3021870, + 3021872, + 3022057, + 3022060, + 3023376, + 3025437, + 3025631, + 3026032, + 3026034, + 3026035, + 3026036, + 3026037, + 3026590, + 3026593, + 3027107, + 3027382, + 3029482, + 3029483, + 3029775, + 3029985, + 3031640, + 3031645, + 3031717, + 3031803, + 3032498, + 3032694, + 3032698, + 3033186, + 3033720, + 3034066, + 3034265, + 3034783, + 3034784, + 3034785, + 3035056, + 3035057, + 3035063, + 3035819, + 3035976, + 3036748, + 3037129, + 3038774, + 3038983, + 3039353, + 3039430, + 3041747, + 3042378, + 3042866, + 3043522, + 3043697, + 3043731, + 3043746, + 3043791, + 3045092, + 3045098, + 3045099, + 3045782, + 3046990, + 3046991, + 3046992, + 3046993, + 3046994, + 3046995, + 3046996, + 3046997, + 3046998, + 3046999, + 3047000, + 3047001, + 3047002, + 3047003, + 3047004, + 3047005, + 3047006, + 3047007, + 3047008, + 3047446, + 3047525, + 3047789, + 3047791, + 3048029, + 3048119, + 3048255, + 3051707, + 3052246, + 3052248, + 3052249, + 3052250, + 3052251, + 3052252, + 3052254, + 3052255, + 3052256, + 3052258, + 3052335, + 3053148, + 3053810, + 3054097, + 3054709, + 3057436, + 3058446, + 3060383, + 3060385, + 3060386, + 3060507, + 3060739, + 3060895, + 3061442, + 3061472, + 3061746, + 3064429, + 3064430, + 3064431, + 3064432, + 3065189, + 3065454, + 3065557, + 3066527, + 3066661, + 3067621, + 3067698, + 3068457, + 3068466, + 3068549, + 3068552, + 3068553, + 3069078, + 3070172, + 3071844, + 3072662, + 3072663, + 3073097, + 3073226, + 3073236, + 3073251, + 3073256, + 3073311, + 3074887, + 3074893, + 3074899, + 3076028, + 3076036, + 3076429, + 3076430, + 3076431, + 3076432, + 3076433, + 3076434, + 3076435, + 3076436, + 3076437, + 3076438, + 3076439, + 3076440, + 3076441, + 3076442, + 3076443, + 3076444, + 3076445, + 3076446, + 3076447, + 3076448, + 3076449, + 3076450, + 3076451, + 3076452, + 3076453, + 3076637, + 3076638, + 3076639, + 3076641, + 3076642, + 3076643, + 3076644, + 3076645, + 3076646, + 3076647, + 3076648, + 3076649, + 3076650, + 3076651, + 3076652, + 3076653, + 3076654, + 3076691, + 3076692, + 3076693, + 3076695, + 3076697, + 3076698, + 3076699, + 3076700, + 3076701, + 3076702, + 3076704, + 3077465, + 3078149, + 3078154, + 3078217, + 3078305, + 3078632, + 3078816, + 3079059, + 3079663, + 3079757, + 3080167, + 3081003, + 3082759, + 3082762, + 3082764, + 3082765, + 3084893, + 3086163, + 3086170, + 3086223, + 3086550, + 3086801, + 3086802, + 3087229, + 3090747, + 3090818, + 3090900, + 3091337, + 3091496, + 3093055, + 3093087, + 3093476, + 3094514, + 3096798, + 3097608, + 3098125, + 3098126, + 3098127, + 3099373, + 3099374, + 3099711, + 3101243, + 3101386, + 3101634, + 3103110, + 3103548, + 3103931, + 3104496, + 3106290, + 3106446, + 3107609, + 3108417, + 3108652, + 3109868, + 3112738, + 3112741, + 3113963, + 3114410, + 3115120, + 3115571, + 3115620, + 3115621, + 3115623, + 3116677, + 3118811, + 3118812, + 3119650, + 3119651, + 3119654, + 3119661, + 3120247, + 3121988, + 3122827, + 3124487, + 3125281, + 3125282, + 3125445, + 3126237, + 3126870, + 3126875, + 3126877, + 3127092, + 3127218, + 3127220, + 3127221, + 3128282, + 3128283, + 3128644, + 3129093, + 3131443, + 3132330, + 3132842, + 3132844, + 3132973, + 3133099, + 3133400, + 3134107, + 3134335, + 3134337, + 3134341, + 3134344, + 3134346, + 3134574, + 3135088, + 3137830, + 3138358, + 3138624, + 3139127, + 3140846, + 3141533, + 3141579, + 3143920, + 3145434, + 3145903, + 3145904, + 3147185, + 3147188, + 3147312, + 3148232, + 3148233, + 3150762, + 3150994, + 3151177, + 3152292, + 3152919, + 3153204, + 3153643, + 3154579, + 3155878, + 3156155, + 3156237, + 3157552, + 3157636, + 3158071, + 3158166, + 3158171, + 3158173, + 3158926, + 3161257, + 3161258, + 3161361, + 3161568, + 3161640, + 3162168, + 3162769, + 3162770, + 3162771, + 3162831, + 3162832, + 3162834, + 3162836, + 3162869, + 3163820, + 3164237, + 3165609, + 3165670, + 3165671, + 3165773, + 3165971, + 3165972, + 3165973, + 3165974, + 3165975, + 3165976, + 3165977, + 3165978, + 3165979, + 3165980, + 3165982, + 3165983, + 3165984, + 3165985, + 3165986, + 3165987, + 3165988, + 3165989, + 3166173, + 3166432, + 3167802, + 3169261, + 3169444, + 3169641, + 3170171, + 3170972, + 3170975, + 3173783, + 3174044, + 3174058, + 3174059, + 3174060, + 3174061, + 3174062, + 3174063, + 3174065, + 3174066, + 3174067, + 3174069, + 3174070, + 3174071, + 3174072, + 3174073, + 3174074, + 3174075, + 3174077, + 3174079, + 3174080, + 3174081, + 3174082, + 3174083, + 3174084, + 3174085, + 3174086, + 3174087, + 3174093, + 3174094, + 3174095, + 3174096, + 3174097, + 3174098, + 3174100, + 3174101, + 3174102, + 3174103, + 3174104, + 3174107, + 3174108, + 3174110, + 3174111, + 3174112, + 3174113, + 3174114, + 3174116, + 3174119, + 3174122, + 3174123, + 3174124, + 3174125, + 3174126, + 3174127, + 3174128, + 3174129, + 3174130, + 3174131, + 3174132, + 3174134, + 3174138, + 3174139, + 3174140, + 3174141, + 3174142, + 3174143, + 3174144, + 3174145, + 3174147, + 3174148, + 3174149, + 3174150, + 3174151, + 3174153, + 3174154, + 3174155, + 3174156, + 3174157, + 3174159, + 3174160, + 3174161, + 3174162, + 3174163, + 3174164, + 3174165, + 3174166, + 3174167, + 3174168, + 3175061, + 3175062, + 3175188, + 3175428, + 3176022, + 3176451, + 3176452, + 3176454, + 3177045, + 3177046, + 3177066, + 3177075, + 3177106, + 3177388, + 3177567, + 3178593, + 3178772, + 3179350, + 3180297, + 3182001, + 3183530, + 3183531, + 3184202, + 3184949, + 3185920, + 3188036, + 3189052, + 3189378, + 3190270, + 3190482, + 3190484, + 3190539, + 3190540, + 3190541, + 3190544, + 3191504, + 3192277, + 3192481, + 3192483, + 3192484, + 3192485, + 3194140, + 3194148, + 3194158, + 3194169, + 3194384, + 3195059, + 3195725, + 3195820, + 3196548, + 3197010, + 3197107, + 3197302, + 3197503, + 3199728, + 3199731, + 3199733, + 3199736, + 3199737, + 3199740, + 3199741, + 3199742, + 3199743, + 3199747, + 3200154, + 3200165, + 3200491, + 3200492, + 3200542, + 3201133, + 3201723, + 3201896, + 3202342, + 3202870, + 3203047, + 3203403, + 3204012, + 3204131, + 3204134, + 3204138, + 3205188, + 3205198, + 3205416, + 3206898, + 3206901, + 3208056, + 3208267, + 3208268, + 3208336, + 3208749, + 3209057, + 3209324, + 3209676, + 3209696, + 3209756, + 3209757, + 3210106, + 3210118, + 3210907, + 3210911, + 3211393, + 3211397, + 3212935, + 3213737, + 3215143, + 3215295, + 3215297, + 3216695, + 3217188, + 3217189, + 3217196, + 3218030, + 3219821, + 3219825, + 3220247, + 3220672, + 3220772, + 3220774, + 3220775, + 3220780, + 3220784, + 3220787, + 3220788, + 3220789, + 3220793, + 3220794, + 3221768, + 3221967, + 3221969, + 3221971, + 3222857, + 3222858, + 3223105, + 3224113, + 3224366, + 3225721, + 3229261, + 3229392, + 3229760, + 3230035, + 3230167, + 3230275, + 3230278, + 3230434, + 3231296, + 3231663, + 3231865, + 3231866, + 3231867, + 3231868, + 3232143, + 3232976, + 3233265, + 3234658, + 3234660, + 3234665, + 3234666, + 3234669, + 3234670, + 3234672, + 3234673, + 3234675, + 3235118, + 3235147, + 3235493, + 3235496, + 3235501, + 3235503, + 3235504, + 3235987, + 3236741, + 3236743, + 3236748, + 3237015, + 3237401, + 3238299, + 3239220, + 3239221, + 3240652, + 3240933, + 3241038, + 3241106, + 3241107, + 3241108, + 3241113, + 3241115, + 3241116, + 3241117, + 3242135, + 3242700, + 3242701, + 3243825, + 3245334, + 3245337, + 3247926, + 3248530, + 3248532, + 3251785, + 3252553, + 3253250, + 3253482, + 3254143, + 3254390, + 3254391, + 3254393, + 3254397, + 3254400, + 3254402, + 3254403, + 3254404, + 3254406, + 3254408, + 3254410, + 3254414, + 3254415, + 3254416, + 3254418, + 3254419, + 3254420, + 3254421, + 3254423, + 3254425, + 3254428, + 3254431, + 3254493, + 3254494, + 3254495, + 3254498, + 3254499, + 3254500, + 3254503, + 3254508, + 3254513, + 3254515, + 3254518, + 3254520, + 3254521, + 3254522, + 3254549, + 3254550, + 3254552, + 3254554, + 3254558, + 3254560, + 3254563, + 3254595, + 3254602, + 3254603, + 3254607, + 3254661, + 3254664, + 3254665, + 3254667, + 3254668, + 3254781, + 3255001, + 3255028, + 3255034, + 3255037, + 3255044, + 3255049, + 3255072, + 3255075, + 3255257, + 3255258, + 3255261, + 3255262, + 3256083, + 3256105, + 3256110, + 3256257, + 3256769, + 3258802, + 3258973, + 3260346, + 3260545, + 3260546, + 3261620, + 3262136, + 3262378, + 3262435, + 3262442, + 3262545, + 3262546, + 3262547, + 3262549, + 3262792, + 3262793, + 3262795, + 3262796, + 3262799, + 3263968, + 3263971, + 3263983, + 3263995, + 3264003, + 3265655, + 3265688, + 3265768, + 3266840, + 3266841, + 3267306, + 3267887, + 3267984, + 3267990, + 3268062, + 3268611, + 3269742, + 3269953, + 3269954, + 3269955, + 3269956, + 3270667, + 3273787, + 3273788, + 3273789, + 3273790, + 3273791, + 3273793, + 3273794, + 3274476, + 3274705, + 3275258, + 3277120, + 3277141, + 3278821, + 3279360, + 3279490, + 3281351, + 3281354, + 3281394, + 3281822, + 3284930, + 3287063, + 3287294, + 3287295, + 3287520, + 3287521, + 3287943, + 3287944, + 3287983, + 3288391, + 3288755, + 3289106, + 3289219, + 3290464, + 3290599, + 3290600, + 3290650, + 3290651, + 3290925, + 3291563, + 3291938, + 3291997, + 3292223, + 3292890, + 3293085, + 3293913, + 3294689, + 3295005, + 3296303, + 3296305, + 3296307, + 3296309, + 3296574, + 3296575, + 3296576, + 3296590, + 3297095, + 3297872, + 3298252, + 3298999, + 3300464, + 3300465, + 3300466, + 3301236, + 3301245, + 3301402, + 3302141, + 3302699, + 3303013, + 3303735, + 3305227, + 3305502, + 3305639, + 3305641, + 3305643, + 3305644, + 3305646, + 3305647, + 3305681, + 3305757, + 3306408, + 3306907, + 3307290, + 3309558, + 3310131, + 3310364, + 3311911, + 3311912, + 3312675, + 3313737, + 3313957, + 3313994, + 3314214, + 3314444, + 3314547, + 3316294, + 3316356, + 3317474, + 3318968, + 3319388, + 3321005, + 3321104, + 3321105, + 3321715, + 3322573, + 3322580, + 3326145, + 3326634, + 3327373, + 3329747, + 3329968, + 3330831, + 3330891, + 3331331, + 3331629, + 3331632, + 3332853, + 3332985, + 3333462, + 3335343, + 3335344, + 3335453, + 3335564, + 3335861, + 3337551, + 3337828, + 3338024, + 3338780, + 3339088, + 3340237, + 3341083, + 3342089, + 3342501, + 3343133, + 3343134, + 3343180, + 3343277, + 3346084, + 3347406, + 3347944, + 3348123, + 3349702, + 3350010, + 3351807, + 3351947, + 3353083, + 3353344, + 3355279, + 3355449, + 3355455, + 3355615, + 3356167, + 3358321, + 3359132, + 3359133, + 3359786, + 3359844, + 3360629, + 3361915, + 3361916, + 3362715, + 3364521, + 3365573, + 3365793, + 3366388, + 3368386, + 3368917, + 3368949, + 3368950, + 3369630, + 3370350, + 3370354, + 3370357, + 3370688, + 3372064, + 3372352, + 3372669, + 3372889, + 3372898, + 3373207, + 3373834, + 3374205, + 3374631, + 3374964, + 3375709, + 3376036, + 3376282, + 3377660, + 3378091, + 3378355, + 3378377, + 3378380, + 3378382, + 3378387, + 3379824, + 3379946, + 3380118, + 3380450, + 3380560, + 3381418, + 3381920, + 3381921, + 3382342, + 3383212, + 3383830, + 3383836, + 3383880, + 3383881, + 3384372, + 3384572, + 3385014, + 3385048, + 3385058, + 3385059, + 3385269, + 3386378, + 3386512, + 3386514, + 3386740, + 3386806, + 3386807, + 3387201, + 3387748, + 3387974, + 3388009, + 3388095, + 3388096, + 3388097, + 3388098, + 3388099, + 3388100, + 3388101, + 3388102, + 3388103, + 3388105, + 3388323, + 3388886, + 3389144, + 3389512, + 3389885, + 3392013, + 3393211, + 3393215, + 3393216, + 3393588, + 3393698, + 3393700, + 3394957, + 3395409, + 3395423, + 3396508, + 3396586, + 3396589, + 3396590, + 3398065, + 3398067, + 3398074, + 3398075, + 3398501, + 3398826, + 3399265, + 3399267, + 3399273, + 3399889, + 3400176, + 3400183, + 3400185, + 3400480, + 3401456, + 3401762, + 3401763, + 3401910, + 3402141, + 3402690, + 3402849, + 3403763, + 3403789, + 3405434, + 3405809, + 3407713, + 3409132, + 3409135, + 3409529, + 3409946, + 3410010, + 3411605, + 3411606, + 3411607, + 3411639, + 3411966, + 3412030, + 3412072, + 3413242, + 3414084, + 3414537, + 3414540, + 3414541, + 3414544, + 3414546, + 3414548, + 3414549, + 3414551, + 3414552, + 3414553, + 3414554, + 3414556, + 3414557, + 3414669, + 3414974, + 3415005, + 3416074, + 3416075, + 3416596, + 3416599, + 3416600, + 3416852, + 3417078, + 3417521, + 3417545, + 3418128, + 3418129, + 3418130, + 3418131, + 3418132, + 3418865, + 3419281, + 3419330, + 3419372, + 3420236, + 3421701, + 3422029, + 3422657, + 3422874, + 3422877, + 3422882, + 3423386, + 3423788, + 3424136, + 3424262, + 3424273, + 3424642, + 3424655, + 3424657, + 3424895, + 3425033, + 3425368, + 3426185, + 3428079, + 3428186, + 3428266, + 3428346, + 3428347, + 3428349, + 3428562, + 3428563, + 3428564, + 3428565, + 3428566, + 3428567, + 3428633, + 3429737, + 3429774, + 3429989, + 3430167, + 3431228, + 3431529, + 3431530, + 3431533, + 3431646, + 3431682, + 3432311, + 3432385, + 3432627, + 3432629, + 3432630, + 3432633, + 3432634, + 3432863, + 3432864, + 3432966, + 3432968, + 3432969, + 3432970, + 3432971, + 3432972, + 3432975, + 3432977, + 3433871, + 3433873, + 3433874, + 3433989, + 3433991, + 3434151, + 3434152, + 3434153, + 3434154, + 3434155, + 3434156, + 3434649, + 3435021, + 3436103, + 3437324, + 3437325, + 3437326, + 3437407, + 3437432, + 3437433, + 3437436, + 3438318, + 3438319, + 3438654, + 3438865, + 3438866, + 3438882, + 3440224, + 3440225, + 3440226, + 3440569, + 3440572, + 3440644, + 3441116, + 3441160, + 3441417, + 3441418, + 3441437, + 3441769, + 3441773, + 3441950, + 3441952, + 3441966, + 3442086, + 3442087, + 3442088, + 3442090, + 3442091, + 3442092, + 3442093, + 3442094, + 3442095, + 3442096, + 3442097, + 3442098, + 3442099, + 3442100, + 3442101, + 3442102, + 3442103, + 3442105, + 3442106, + 3442107, + 3442108, + 3442109, + 3442110, + 3442111, + 3442112, + 3442114, + 3442115, + 3442117, + 3442119, + 3442173, + 3442176, + 3442602, + 3442952, + 3443070, + 3443273, + 3443414, + 3443418, + 3443426, + 3444201, + 3445049, + 3445693, + 3446006, + 3446007, + 3446047, + 3446414, + 3446420, + 3446423, + 3446424, + 3446429, + 3446437, + 3446445, + 3446447, + 3446448, + 3446474, + 3446957, + 3447365, + 3447870, + 3448320, + 3449668, + 3449670, + 3449676, + 3450004, + 3450026, + 3450028, + 3450500, + 3450858, + 3450859, + 3450861, + 3450862, + 3450863, + 3450864, + 3450917, + 3451381, + 3452392, + 3452480, + 3452491, + 3452751, + 3452752, + 3452753, + 3453317, + 3453482, + 3453760, + 3453798, + 3454537, + 3454739, + 3455141, + 3455161, + 3455668, + 3456728, + 3457178, + 3457422, + 3457430, + 3457882, + 3458847, + 3459636, + 3460157, + 3460300, + 3460441, + 3461207, + 3461457, + 3461745, + 3461862, + 3461950, + 3461952, + 3462414, + 3462570, + 3462792, + 3463352, + 3463353, + 3463358, + 3463453, + 3463982, + 3463983, + 3463987, + 3463993, + 3463996, + 3464172, + 3464174, + 3464177, + 3464178, + 3464180, + 3464181, + 3464183, + 3464184, + 3464185, + 3465574, + 3466525, + 3466941, + 3466942, + 3467351, + 3467352, + 3467353, + 3467354, + 3467355, + 3467356, + 3467357, + 3467959, + 3467961, + 3470430, + 3470910, + 3471374, + 3471386, + 3471531, + 3471588, + 3471589, + 3471813, + 3471814, + 3471818, + 3471821, + 3471929, + 3472022, + 3472042, + 3473656, + 3473657, + 3473659, + 3473743, + 3474104, + 3474338, + 3474346, + 3474348, + 3474400, + 3474658, + 3475423, + 3475424, + 3475543, + 3475564, + 3476482, + 3477147, + 3477903, + 3478263, + 3478510, + 3479322, + 3479323, + 3479408, + 3480057, + 3480410, + 3480900, + 3480955, + 3480956, + 3482611, + 3483338, + 3484177, + 3484532, + 3486279, + 3488582, + 3488771, + 3489376, + 3490536, + 3490780, + 3491132, + 3491871, + 3491917, + 3492311, + 3492312, + 3492370, + 3493953, + 3493954, + 3493955, + 3493961, + 3493962, + 3494034, + 3495319, + 3495744, + 3495773, + 3495775, + 3495850, + 3496035, + 3497449, + 3498005, + 3498064, + 3498158, + 3498163, + 3498464, + 3498568, + 3498569, + 3498812, + 3499879, + 3501164, + 3501165, + 3501166, + 3501302, + 3501303, + 3501307, + 3501308, + 3501309, + 3501310, + 3502347, + 3504369, + 3504371, + 3505543, + 3508320, + 3508321, + 3508322, + 3508323, + 3508596, + 3509288, + 3510303, + 3510658, + 3511750, + 3511751, + 3512356, + 3513340, + 3513342, + 3513343, + 3513436, + 3514359, + 3514754, + 3515070, + 3516614, + 3516700, + 3516701, + 3518405, + 3518406, + 3518407, + 3519292, + 3520410, + 3520411, + 3520412, + 3520789, + 3522350, + 3522353, + 3522354, + 3523163, + 3523164, + 3523165, + 3523166, + 3523168, + 3523169, + 3523172, + 3523173, + 3523174, + 3523480, + 3523481, + 3525217, + 3525397, + 3525477, + 3525848, + 3526463, + 3526657, + 3526659, + 3526660, + 3526661, + 3526662, + 3526663, + 3527291, + 3527529, + 3530399, + 3530755, + 3530757, + 3530760, + 3530898, + 3530928, + 3531032, + 3531420, + 3532216, + 3533449, + 3533484, + 3534208, + 3536236, + 3537855, + 3538242, + 3539886, + 3540357, + 3541064, + 3541139, + 3541251, + 3541253, + 3541255, + 3542003, + 3543718, + 3543720, + 3544631, + 3544995, + 3545008, + 3546642, + 3547377, + 3548027, + 3549221, + 3549373, + 3551605, + 3553772, + 3553776, + 3554032, + 3555036, + 3555038, + 3555359, + 3555361, + 3555365, + 3555368, + 3555965, + 3556366, + 3557293, + 3557766, + 3557824, + 3557825, + 3557826, + 3557832, + 3557833, + 3557834, + 3557835, + 3557839, + 3557894, + 3557895, + 3558007, + 3558585, + 3558803, + 3559556, + 3559828, + 3560644, + 3562378, + 3562380, + 3562484, + 3562900, + 3564318, + 3565040, + 3565114, + 3565492, + 3566750, + 3566974, + 3568408, + 3568684, + 3568965, + 3569103, + 3569689, + 3569690, + 3569692, + 3569695, + 3569697, + 3569699, + 3569700, + 3569702, + 3569703, + 3569705, + 3569706, + 3569707, + 3569710, + 3569711, + 3569712, + 3569715, + 3570413, + 3570415, + 3570555, + 3571337, + 3571383, + 3571420, + 3571833, + 3572457, + 3573467, + 3573514, + 3573797, + 3574708, + 3576513, + 3576518, + 3576730, + 3576979, + 3577313, + 3577728, + 3578228, + 3578266, + 3578274, + 3578277, + 3578280, + 3578282, + 3578288, + 3578300, + 3578841, + 3578842, + 3579854, + 3580161, + 3580192, + 3580229, + 3580246, + 3580382, + 3580914, + 3580978, + 3581477, + 3581479, + 3582130, + 3583413, + 3583414, + 3584685, + 3585982, + 3586077, + 3586237, + 3587014, + 3587471, + 3587800, + 3588588, + 3589122, + 3590055, + 3590606, + 3590607, + 3590608, + 3590609, + 3590610, + 3591925, + 3593551, + 3593574, + 3594957, + 3595199, + 3595391, + 3595477, + 3595584, + 3596166, + 3596405, + 3596410, + 3597319, + 3599586, + 3599587, + 3599589, + 3600906, + 3603105, + 3603106, + 3603295, + 3603329, + 3603671, + 3604206, + 3604284, + 3604285, + 3604286, + 3604288, + 3604289, + 3604290, + 3604292, + 3604293, + 3604295, + 3604296, + 3604297, + 3604299, + 3604300, + 3604301, + 3604302, + 3604532, + 3605478, + 3605480, + 3606154, + 3606992, + 3607290, + 3607292, + 3607860, + 3607887, + 3608679, + 3609158, + 3609159, + 3609861, + 3610276, + 3611556, + 3611557, + 3611559, + 3611897, + 3612155, + 3612506, + 3612788, + 3613206, + 3613207, + 3613339, + 3613341, + 3614176, + 3614689, + 3614920, + 3616041, + 3617611, + 3617612, + 3617613, + 3617729, + 3618854, + 3618855, + 3620368, + 3622117, + 3622121, + 3622124, + 3622218, + 3622219, + 3622220, + 3622221, + 3622277, + 3622651, + 3623631, + 3624038, + 3624920, + 3625539, + 3625598, + 3625654, + 3625906, + 3626058, + 3627525, + 3627532, + 3627535, + 3627547, + 3627549, + 3627578, + 3627795, + 3629461, + 3629965, + 3629984, + 3630995, + 3631104, + 3631105, + 3631106, + 3631108, + 3631109, + 3631110, + 3631111, + 3633362, + 3633363, + 3633364, + 3633365, + 3633367, + 3633368, + 3633369, + 3633370, + 3633371, + 3633372, + 3633373, + 3633374, + 3633376, + 3633377, + 3633378, + 3633379, + 3633841, + 3634437, + 3635769, + 3636335, + 3636338, + 3636341, + 3636347, + 3636510, + 3636511, + 3636513, + 3636515, + 3636518, + 3636519, + 3636520, + 3636521, + 3636522, + 3636538, + 3636993, + 3636994, + 3637552, + 3637910, + 3637911, + 3638062, + 3639206, + 3640327, + 3640793, + 3642223, + 3642542, + 3642566, + 3642567, + 3642695, + 3643398, + 3644545, + 3644546, + 3645555, + 3645583, + 3645815, + 3647398, + 3647400, + 3647403, + 3647404, + 3647406, + 3647407, + 3647410, + 3647412, + 3647413, + 3647415, + 3647416, + 3647418, + 3647420, + 3648101, + 3648397, + 3648910, + 3649121, + 3649512, + 3649516, + 3649521, + 3649525, + 3651009, + 3651010, + 3651011, + 3651013, + 3651014, + 3651018, + 3651493, + 3651720, + 3651721, + 3651722, + 3651724, + 3651725, + 3652140, + 3652141, + 3652142, + 3652143, + 3652144, + 3652145, + 3652146, + 3652615, + 3652682, + 3652683, + 3653374, + 3654617, + 3654849, + 3655556, + 3656239, + 3657751, + 3658082, + 3658202, + 3658203, + 3658205, + 3658207, + 3660947, + 3660948, + 3660949, + 3660951, + 3660953, + 3660954, + 3660955, + 3660956, + 3660957, + 3661017, + 3661443, + 3661493, + 3661869, + 3661952, + 3661953, + 3661979, + 3662818, + 3662926, + 3662929, + 3662930, + 3663127, + 3663129, + 3663130, + 3663131, + 3664271, + 3664842, + 3664843, + 3664844, + 3666302, + 3667459, + 3668067, + 3668073, + 3668078, + 3668834, + 3668911, + 3669135, + 3669425, + 3669430, + 3669432, + 3671809, + 3671875, + 3672344, + 3672345, + 3672364, + 3672379, + 3672528, + 3673052, + 3673308, + 3674450, + 3676227, + 3676231, + 3676233, + 3677745, + 3677747, + 3677748, + 3677749, + 3677750, + 3677751, + 3677752, + 3677753, + 3677754, + 3677755, + 3677756, + 3677829, + 3677849, + 3678019, + 3678022, + 3679448, + 3679449, + 3679457, + 3679569, + 3680046, + 3680277, + 3680470, + 3680709, + 3680745, + 3680746, + 3681191, + 3681513, + 3681742, + 3682022, + 3682043, + 3682134, + 3685583, + 3686621, + 3687097, + 3687098, + 3687099, + 3687100, + 3687237, + 3687243, + 3687244, + 3687249, + 3687253, + 3687259, + 3687262, + 3687264, + 3687687, + 3689743, + 3690172, + 3690220, + 3690315, + 3690342, + 3690353, + 3691204, + 3691551, + 3691552, + 3691553, + 3691555, + 3692445, + 3694052, + 3694054, + 3694352, + 3694364, + 3694447, + 3694515, + 3694724, + 3694900, + 3694901, + 3694902, + 3694903, + 3694905, + 3694944, + 3695385, + 3695973, + 3696438, + 3698335, + 3698574, + 3698580, + 3700434, + 3701019, + 3701020, + 3701809, + 3703407, + 3704061, + 3704068, + 3704077, + 3704087, + 3704372, + 3704374, + 3704376, + 3704571, + 3704597, + 3710439, + 3710479, + 3710591, + 3710938, + 3711213, + 3711224, + 3711504, + 3712448, + 3712596, + 3712600, + 3714738, + 3714745, + 3714926, + 3715010, + 3715551, + 3715552, + 3715555, + 3715556, + 3715895, + 3716237, + 3716238, + 3716241, + 3716242, + 3716243, + 3716244, + 3716245, + 3716246, + 3716247, + 3716248, + 3716249, + 3716250, + 3716251, + 3716252, + 3716253, + 3716254, + 3716255, + 3716256, + 3716257, + 3716258, + 3716259, + 3716260, + 3716261, + 3716262, + 3716263, + 3716264, + 3716265, + 3716266, + 3716267, + 3716268, + 3716269, + 3716270, + 3716271, + 3716272, + 3716273, + 3716274, + 3716275, + 3716276, + 3716277, + 3716278, + 3716279, + 3716280, + 3716281, + 3716282, + 3716283, + 3716284, + 3716285, + 3716286, + 3716287, + 3716288, + 3716289, + 3716290, + 3716291, + 3716292, + 3716293, + 3716294, + 3716295, + 3716296, + 3716297, + 3716298, + 3716299, + 3716300, + 3716301, + 3716302, + 3716303, + 3716880, + 3717557, + 3719101, + 3719778, + 3719804, + 3719806, + 3720294, + 3722411, + 3723215, + 3723216, + 3723217, + 3723219, + 3723220, + 3723221, + 3723223, + 3723225, + 3723227, + 3725288, + 3725368, + 3726084, + 3726203, + 3726592, + 3727689, + 3727975, + 3728566, + 3730815, + 3730816, + 3730817, + 3730818, + 3730819, + 3730820, + 3731398, + 3732756, + 3732933, + 3733596, + 3733785, + 3734735, + 3735218, + 3736313, + 3736394, + 3736640, + 3736641, + 3736642, + 3737415, + 3737681, + 3738311, + 3738918, + 3739448, + 3739721, + 3739772, + 3739773, + 3739774, + 3739775, + 3739776, + 3739777, + 3739778, + 3739779, + 3739780, + 3739781, + 3739782, + 3739783, + 3739784, + 3739785, + 3739786, + 3739787, + 3739788, + 3739789, + 3739790, + 3739791, + 3739792, + 3739793, + 3739794, + 3739795, + 3739796, + 3739797, + 3739798, + 3739799, + 3739800, + 3739801, + 3739802, + 3739803, + 3740167, + 3740288, + 3741512, + 3742189, + 3742219, + 3742907, + 3742908, + 3742909, + 3742935, + 3744110, + 3745917, + 3746046, + 3746602, + 3746606, + 3746607, + 3746608, + 3746610, + 3746612, + 3746615, + 3746619, + 3746621, + 3746624, + 3746625, + 3746626, + 3746627, + 3747736, + 3748545, + 3748547, + 3749359, + 3750514, + 3751693, + 3751694, + 3751748, + 3752203, + 3752231, + 3752234, + 3752753, + 3752848, + 3752913, + 3754695, + 3754759, + 3754944, + 3754945, + 3754946, + 3754947, + 3754949, + 3754950, + 3755001, + 3755189, + 3755237, + 3757187, + 3758446, + 3758448, + 3758450, + 3758453, + 3758456, + 3758460, + 3759682, + 3760416, + 3760423, + 3760430, + 3760498, + 3760943, + 3761231, + 3762083, + 3762086, + 3762924, + 3762925, + 3762926, + 3762927, + 3762928, + 3762929, + 3762930, + 3762931, + 3762932, + 3762934, + 3762935, + 3762936, + 3762937, + 3762938, + 3762939, + 3762940, + 3762942, + 3762943, + 3765758, + 3767090, + 3767992, + 3768146, + 3768863, + 3772047, + 3772828, + 3772981, + 3773271, + 3773272, + 3773425, + 3774618, + 3774949, + 3774953, + 3776041, + 3779125, + 3779126, + 3779223, + 3780064, + 3782525, + 3782787, + 3783056, + 3784715, + 3785620, + 3785621, + 3786924, + 3786948, + 3788070, + 3788071, + 3788072, + 3788628, + 3788629, + 3788883, + 3788889, + 3788974, + 3788975, + 3789196, + 3789202, + 3789205, + 3789213, + 3789215, + 3789810, + 3790054, + 3790104, + 3790427, + 3790429, + 3790433, + 3790435, + 3790439, + 3790703, + 3790779, + 3790881, + 3791619, + 3792267, + 3792268, + 3792269, + 3794175, + 3794178, + 3794271, + 3794471, + 3794472, + 3795191, + 3795192, + 3795193, + 3795194, + 3795195, + 3795196, + 3795197, + 3795198, + 3795199, + 3795200, + 3795201, + 3795202, + 3795203, + 3795204, + 3795205, + 3795242, + 3795806, + 3796090, + 3797570, + 3797571, + 3797573, + 3797576, + 3797577, + 3797609, + 3797635, + 3797948, + 3798747, + 3799631, + 3800512, + 3801118, + 3802687, + 3802689, + 3802691, + 3803617, + 3803618, + 3803619, + 3803620, + 3803722, + 3804016, + 3804017, + 3804018, + 3804019, + 3804021, + 3804022, + 3804024, + 3804025, + 3804027, + 3804029, + 3804030, + 3804641, + 3805025, + 3805032, + 3806561, + 3806606, + 3806607, + 3806613, + 3806766, + 3806954, + 3807182, + 3807183, + 3807184, + 3808318, + 3808320, + 3810612, + 3811509, + 3812178, + 3812179, + 3812839, + 3813258, + 3813379, + 3813380, + 3813381, + 3813382, + 3813383, + 3813384, + 3813385, + 3813386, + 3813387, + 3813388, + 3813389, + 3813390, + 3813392, + 3813393, + 3813394, + 3813395, + 3813396, + 3813397, + 3813399, + 3814090, + 3814091, + 3814219, + 3814377, + 3815086, + 3815499, + 3815618, + 3816180, + 3816235, + 3816236, + 3816237, + 3816240, + 3816259, + 3816839, + 3816845, + 3817348, + 3818438, + 3820638, + 3822692, + 3824287, + 3825704, + 3825999, + 3826471, + 3828052, + 3828211, + 3828212, + 3829151, + 3830050, + 3832044, + 3832182, + 3832239, + 3832369, + 3832372, + 3832375, + 3832377, + 3834699, + 3835309, + 3835398, + 3835902, + 3836522, + 3836819, + 3837254, + 3837343, + 3837346, + 3838407, + 3838408, + 3838409, + 3838410, + 3838416, + 3838417, + 3838420, + 3838423, + 3838427, + 3838428, + 3839173, + 3839174, + 3840134, + 3840230, + 3840653, + 3840819, + 3841108, + 3841129, + 3841502, + 3841877, + 3842183, + 3842243, + 3843522, + 3843793, + 3843794, + 3844521, + 3844784, + 3845302, + 3845856, + 3845903, + 3846368, + 3846606, + 3846754, + 3847976, + 3850614, + 3850783, + 3851585, + 3851672, + 3851701, + 3851807, + 3851808, + 3852200, + 3852204, + 3852458, + 3852645, + 3852646, + 3852647, + 3852648, + 3852649, + 3852650, + 3852651, + 3852653, + 3852654, + 3852655, + 3854231, + 3854560, + 3855507, + 3855508, + 3855512, + 3855513, + 3856839, + 3857894, + 3858474, + 3859654, + 3860052, + 3860487, + 3861412, + 3863266, + 3863520, + 3863605, + 3863832, + 3863902, + 3865556, + 3865722, + 3865918, + 3867405, + 3868385, + 3869018, + 3869366, + 3872087, + 3872950, + 3873017, + 3874455, + 3875089, + 3875090, + 3875091, + 3878746, + 3880171, + 3880859, + 3881155, + 3881158, + 3881375, + 3881413, + 3882585, + 3882633, + 3882635, + 3882684, + 3882852, + 3882853, + 3882855, + 3882856, + 3882857, + 3882858, + 3882859, + 3882860, + 3882861, + 3882863, + 3882865, + 3882866, + 3882869, + 3882870, + 3882872, + 3882874, + 3882875, + 3882876, + 3882877, + 3882878, + 3883445, + 3883447, + 3883871, + 3884504, + 3885117, + 3885400, + 3886388, + 3886676, + 3886711, + 3887138, + 3888734, + 3890318, + 3890492, + 3890495, + 3890496, + 3890863, + 3894100, + 3894101, + 3894103, + 3894105, + 3894106, + 3894109, + 3894110, + 3894111, + 3894112, + 3894115, + 3894116, + 3894117, + 3894118, + 3894120, + 3894121, + 3894122, + 3894123, + 3894124, + 3894127, + 3894128, + 3894129, + 3894133, + 3894135, + 3894136, + 3894138, + 3894139, + 3894143, + 3894144, + 3894145, + 3894146, + 3894147, + 3894148, + 3894149, + 3894152, + 3894156, + 3894158, + 3894159, + 3894161, + 3894162, + 3894165, + 3894169, + 3894172, + 3894173, + 3894175, + 3894176, + 3894177, + 3894179, + 3894559, + 3894971, + 3894998, + 3894999, + 3895000, + 3898170, + 3898171, + 3899134, + 3899523, + 3899644, + 3899877, + 3900787, + 3900788, + 3901816, + 3902606, + 3902706, + 3902707, + 3902708, + 3902709, + 3903257, + 3903887, + 3905955, + 3906749, + 3907943, + 3908545, + 3909866, + 3911007, + 3911279, + 3912214, + 3913341, + 3913955, + 3916718, + 3917707, + 3917963, + 3917964, + 3918876, + 3918954, + 3919447, + 3919449, + 3919450, + 3919451, + 3921165, + 3921395, + 3922054, + 3923625, + 3923786, + 3926656, + 3926659, + 3928146, + 3929565, + 3929566, + 3929955, + 3930080, + 3932114, + 3932981, + 3933533, + 3933535, + 3934075, + 3934081, + 3934226, + 3934614, + 3937537, + 3938447, + 3940118, + 3940880, + 3941601, + 3942108, + 3942246, + 3942633, + 3942704, + 3943021, + 3943491, + 3944227, + 3944683, + 3945408, + 3945409, + 3945868, + 3946842, + 3947468, + 3947768, + 3949285, + 3950293, + 3951669, + 3952709, + 3952935, + 3952936, + 3952937, + 3952938, + 3952939, + 3952940, + 3952941, + 3952942, + 3952943, + 3952944, + 3952945, + 3952946, + 3952947, + 3952948, + 3952949, + 3952950, + 3952951, + 3954856, + 3955609, + 3955613, + 3957168, + 3958368, + 3958372, + 3958374, + 3966256, + 3968625, + 3969281, + 3971504, + 3971708, + 3971797, + 3971879, + 3972134, + 3972349, + 3972676, + 3972983, + 3973593, + 3973761, + 3974809, + 3978203, + 3979337, + 3979957, + 3983093, + 3984036, + 3984037, + 3984038, + 3987644, + 3987649, + 3987898, + 3987904, + 3988356, + 3989600, + 3990049, + 3990220, + 3992087, + 3993960, + 3994075, + 3998709, + 3999062, + 3999727, + 3999728, + 4000002, + 4000438, + 4000621, + 4000622, + 4000623, + 4000624, + 4000625, + 4000627, + 4000628, + 4000630, + 4000631, + 4000632, + 4000633, + 4000635, + 4000636, + 4000637, + 4000638, + 4000639, + 4000640, + 4001469, + 4002028, + 4003035, + 4003036, + 4003037, + 4003038, + 4003536, + 4003544, + 4003569, + 4003571, + 4003573, + 4003613, + 4003614, + 4003615, + 4003616, + 4003617, + 4003618, + 4003619, + 4003709, + 4003711, + 4003874, + 4003875, + 4003877, + 4003879, + 4003881, + 4003884, + 4003890, + 4003893, + 4004061, + 4004062, + 4005606, + 4006352, + 4006397, + 4006399, + 4010376, + 4010743, + 4010936, + 4010938, + 4010940, + 4010943, + 4010946, + 4010948, + 4010950, + 4010951, + 4010954, + 4012535, + 4013348, + 4013581, + 4014183, + 4014800, + 4014872, + 4016777, + 4017062, + 4017065, + 4017067, + 4017085, + 4017873, + 4018060, + 4018809, + 4019121, + 4019254, + 4019542, + 4019543, + 4019544, + 4019545, + 4019546, + 4019547, + 4021716, + 4022180, + 4023062, + 4023243, + 4023771, + 4024352, + 4024688, + 4025050, + 4025928, + 4027247, + 4027845, + 4028633, + 4028634, + 4028635, + 4028636, + 4028776, + 4029857, + 4030722, + 4030919, + 4030923, + 4030924, + 4031457, + 4032228, + 4034125, + 4036203, + 4036365, + 4036375, + 4036630, + 4039268, + 4039864, + 4039867, + 4039871, + 4039872, + 4040439, + 4041716, + 4043149, + 4043927, + 4044835, + 4044839, + 4044843, + 4044845, + 4044847, + 4044852, + 4044853, + 4044854, + 4044855, + 4044856, + 4044857, + 4044858, + 4045894, + 4046244, + 4046445, + 4046607, + 4046763, + 4048525, + 4048862, + 4050153, + 4051640, + 4051653, + 4051654, + 4052695, + 4052836, + 4052837, + 4052839, + 4052841, + 4053252, + 4053254, + 4053599, + 4053838, + 4056246, + 4056342, + 4057196, + 4057197, + 4057199, + 4057200, + 4057202, + 4057203, + 4058035, + 4060313, + 4060584, + 4062154, + 4062156, + 4064829, + 4065361, + 4065362, + 4065659, + 4066122, + 4066864, + 4067054, + 4069341, + 4070496, + 4070599, + 4071045, + 4071052, + 4072171, + 4072781, + 4073402, + 4073674, + 4074815, + 4074991, + 4074992, + 4075216, + 4075622, + 4075654, + 4075937, + 4075989, + 4076223, + 4076278, + 4076710, + 4076711, + 4076712, + 4076713, + 4076714, + 4076715, + 4076716, + 4076717, + 4079315, + 4079316, + 4079317, + 4079655, + 4080190, + 4080556, + 4080558, + 4082094, + 4082560, + 4083340, + 4084151, + 4084496, + 4085314, + 4086035, + 4086036, + 4086037, + 4086038, + 4086039, + 4086456, + 4087720, + 4087906, + 4089735, + 4090014, + 4090016, + 4090285, + 4090583, + 4090584, + 4090585, + 4090586, + 4090787, + 4091358, + 4091741, + 4092659, + 4093175, + 4093262, + 4093658, + 4094536, + 4095782, + 4096463, + 4096877, + 4097538, + 4097539, + 4097540, + 4097541, + 4098009, + 4098189, + 4098782, + 4100850, + 4101093, + 4101198, + 4101199, + 4101200, + 4102229, + 4102441, + 4102888, + 4102939, + 4102940, + 4102942, + 4104026, + 4104030, + 4104715, + 4105747, + 4107490, + 4107491, + 4107493, + 4107494, + 4107497, + 4107499, + 4107501, + 4107504, + 4107505, + 4107506, + 4107508, + 4107669, + 4108422, + 4108548, + 4108549, + 4108551, + 4108552, + 4109901, + 4110935, + 4111098, + 4111711, + 4111712, + 4111820, + 4112150, + 4112398, + 4114000, + 4114095, + 4114371, + 4114372, + 4114373, + 4114463, + 4115171, + 4115172, + 4116493, + 4116632, + 4117227, + 4117565, + 4117567, + 4119048, + 4119596, + 4120268, + 4120677, + 4120717, + 4123244, + 4125914, + 4127145, + 4127400, + 4128389, + 4128390, + 4129106, + 4129107, + 4129109, + 4129973, + 4130779, + 4131939, + 4132027, + 4133234, + 4133319, + 4133596, + 4134063, + 4134066, + 4134076, + 4134077, + 4134202, + 4134223, + 4136891, + 4137098, + 4137099, + 4137100, + 4137101, + 4138026, + 4139235, + 4140649, + 4140991, + 4141317, + 4141319, + 4141323, + 4141324, + 4141325, + 4141383, + 4141526, + 4142275, + 4142704, + 4143605, + 4143606, + 4143609, + 4143610, + 4143611, + 4143612, + 4143613, + 4143614, + 4143616, + 4143618, + 4143620, + 4143621, + 4144149, + 4145269, + 4145552, + 4145897, + 4146311, + 4147335, + 4148933, + 4149101, + 4149905, + 4150286, + 4150472, + 4150857, + 4151769, + 4153388, + 4153591, + 4153816, + 4154441, + 4155945, + 4157311, + 4159562, + 4159693, + 4160392, + 4160393, + 4161293, + 4161857, + 4162007, + 4162389, + 4166700, + 4167911, + 4168052, + 4168535, + 4168948, + 4169025, + 4169027, + 4169605, + 4169607, + 4169608, + 4170101, + 4170122, + 4170605, + 4170989, + 4171018, + 4171416, + 4171465, + 4171961, + 4172151, + 4172166, + 4172192, + 4172962, + 4173966, + 4173973, + 4174775, + 4175611, + 4176156, + 4176605, + 4177057, + 4178108, + 4178169, + 4178413, + 4178649, + 4179155, + 4180621, + 4180943, + 4183299, + 4183955, + 4184191, + 4184192, + 4184193, + 4184194, + 4185010, + 4185012, + 4185013, + 4185861, + 4186200, + 4186924, + 4188793, + 4189122, + 4189336, + 4195756, + 4196697, + 4197180, + 4197181, + 4198089, + 4198095, + 4198658, + 4198667, + 4198668, + 4198669, + 4199907, + 4200374, + 4200825, + 4202509, + 4202510, + 4202511, + 4202512, + 4202513, + 4202514, + 4202515, + 4202516, + 4202517, + 4202518, + 4202519, + 4202520, + 4202522, + 4202523, + 4202524, + 4202525, + 4202526, + 4202527, + 4202528, + 4202529, + 4202530, + 4202531, + 4202532, + 4202533, + 4202534, + 4202749, + 4202750, + 4202751, + 4202752, + 4202753, + 4202754, + 4202755, + 4202756, + 4202758, + 4202760, + 4202761, + 4202762, + 4202763, + 4202764, + 4202765, + 4202766, + 4202767, + 4203034, + 4203035, + 4203036, + 4203037, + 4203038, + 4203039, + 4203040, + 4203041, + 4203042, + 4203043, + 4203044, + 4203120, + 4205093, + 4205248, + 4205493, + 4205783, + 4205818, + 4205819, + 4205825, + 4205832, + 4206120, + 4206486, + 4207551, + 4207881, + 4207882, + 4208099, + 4209723, + 4210199, + 4210237, + 4210850, + 4213707, + 4214913, + 4215552, + 4217017, + 4217314, + 4217936, + 4217945, + 4218293, + 4220428, + 4220429, + 4221066, + 4222627, + 4225742, + 4226226, + 4227539, + 4228405, + 4228407, + 4229537, + 4230634, + 4231148, + 4233750, + 4234535, + 4235174, + 4236661, + 4238546, + 4238572, + 4239847, + 4240844, + 4242677, + 4243658, + 4244838, + 4245725, + 4247145, + 4247163, + 4249431, + 4250090, + 4250108, + 4251332, + 4251333, + 4251335, + 4252470, + 4252472, + 4255636, + 4255637, + 4255638, + 4255639, + 4255640, + 4255641, + 4255643, + 4255644, + 4255647, + 4255649, + 4255772, + 4255775, + 4255777, + 4255778, + 4256935, + 4256937, + 4257102, + 4257103, + 4257105, + 4257416, + 4259666, + 4259702, + 4259703, + 4259788, + 4260850, + 4260871, + 4261046, + 4261770, + 4262571, + 4262572, + 4262574, + 4262576, + 4262577, + 4262578, + 4262579, + 4262866, + 4263331, + 4263448, + 4264032, + 4269486, + 4270988, + 4271573, + 4272606, + 4274304, + 4274847, + 4274851, + 4276701, + 4277656, + 4277657, + 4278891, + 4279045, + 4279076, + 4279080, + 4279081, + 4279084, + 4279085, + 4279086, + 4279087, + 4279088, + 4279089, + 4279148, + 4279847, + 4280299, + 4280377, + 4280569, + 4280571, + 4280667, + 4280795, + 4283464, + 4283661, + 4285138, + 4285139, + 4285496, + 4286163, + 4286168, + 4287307, + 4287535, + 4289727, + 4290964, + 4292026, + 4293455, + 4295460, + 4297669, + 4301216, + 4301584, + 4302342, + 4302620, + 4305163, + 4305393, + 4306020, + 4306062, + 4306479, + 4308983, + 4312173, + 4312732, + 4314651, + 4316300, + 4316302, + 4316305, + 4317905, + 4318042, + 4319128, + 4319769, + 4319788, + 4320289, + 4320604, + 4320833, + 4320834, + 4320836, + 4320868, + 4320926, + 4321214, + 4322605, + 4322606, + 4322860, + 4323063, + 4323065, + 4323067, + 4323335, + 4325194, + 4325372, + 4326233, + 4326544, + 4326864, + 4328574, + 4328619, + 4328623, + 4328866, + 4329301, + 4329774, + 4331343, + 4332523, + 4333610, + 4333615, + 4334303, + 4335540, + 4336104, + 4336355, + 4337950, + 4338144, + 4338338, + 4340896, + 4340960, + 4341085, + 4342278, + 4344103, + 4345362, + 4345618, + 4345737, + 4345959, + 4346395, + 4347704, + 4349313, + 4349373, + 4349375, + 4350733, + 4350744, + 4352059, + 4355166, + 4358585, + 4358710, + 4358731, + 4358865, + 4359479, + 4359822, + 4359860, + 4362370, + 4363026, + 4363079, + 4363439, + 4363772, + 4363973, + 4364466, + 4364835, + 4365673, + 4365745, + 4365746, + 4368253, + 4368921, + 4369272, + 4369322, + 4371165, + 4371403, + 4371469, + 4371471, + 4371574, + 4372850, + 4372852, + 4373260, + 4373749, + 4373780, + 4375340, + 4375372, + 4376491, + 4378693, + 4378694, + 4379740, + 4384097, + 4384746, + 4386026, + 4387449, + 4387489, + 4387492, + 4387561, + 4388922, + 4388923, + 4388924, + 4388926, + 4390039, + 4390040, + 4390250, + 4392639, + 4393074, + 4394828, + 4395002, + 4395224, + 4396149, + 4396152, + 4396156, + 4396157, + 4397370, + 4397375, + 4399065, + 4399111, + 4399759, + 4399762, + 4401067, + 4402140, + 4402374, + 4402718, + 4402719, + 4404753, + 4404779, + 4407108, + 4407809, + 4408053, + 4408054, + 4408055, + 4408920, + 4408989, + 4409107, + 4409151, + 4409692, + 4409693, + 4410460, + 4412366, + 4412571, + 4412596, + 4412710, + 4415161, + 4415742, + 4417800, + 4417824, + 4419071, + 4420632, + 4420760, + 4420893, + 4420894, + 4422074, + 4422082, + 4422975, + 4423147, + 4423150, + 4423598, + 4425030, + 4425597, + 4426162, + 4426172, + 4427238, + 4427283, + 4427668, + 4432253, + 4432549, + 4432557, + 4432758, + 4434176, + 4434725, + 4436422, + 4438562, + 4438896, + 4439318, + 4439319, + 4440080, + 4442800, + 4443211, + 4443426, + 4443515, + 4444263, + 4444558, + 4446093, + 4447240, + 4447316, + 4447695, + 4448427, + 4451334, + 4451336, + 4452067, + 4453319, + 4454332, + 4454334, + 4454508, + 4454601, + 4456625, + 4457433, + 4458287, + 4458373, + 4461326, + 4462443, + 4463553, + 4463884, + 4465279, + 4468296, + 4468466, + 4468494, + 4468893, + 4469400, + 4469613, + 4469702, + 4469703, + 4469704, + 4469708, + 4469709, + 4469728, + 4471677, + 4472646, + 4472819, + 4473332, + 4474035, + 4474756, + 4476033, + 4480371, + 4480968, + 4481562, + 4482100, + 4483221, + 4487511, + 4487784, + 4489786, + 4489788, + 4489791, + 4494861, + 4494939, + 4496000, + 4497291, + 4501400, + 4501401, + 4501403, + 4501406, + 4501615, + 4501616, + 4501617, + 4501618, + 4501620, + 4501621, + 4501622, + 4501623, + 4501645, + 4502383, + 4502673, + 4502675, + 4503194, + 4503195, + 4504437, + 4506633, + 4506980, + 4507603, + 4512063, + 4512401, + 4513801, + 4514026, + 4514923, + 4515960, + 4516739, + 4516740, + 4516798, + 4517324, + 4517325, + 4517749, + 4517842, + 4518736, + 4518737, + 4521139, + 4521397, + 4521403, + 4523898, + 4525513, + 4528947, + 4533577, + 4533735, + 4535580, + 4536331, + 4538230, + 4538234, + 4538236, + 4538238, + 4538406, + 4539095, + 4539222, + 4539607, + 4542463, + 4542519, + 4542520, + 4542521, + 4543212, + 4543213, + 4543214, + 4543468, + 4543723, + 4544157, + 4544360, + 4545697, + 4547913, + 4549903, + 4550054, + 4550390, + 4551313, + 4553317, + 4556610, + 4557109, + 4557112, + 4559183, + 4559324, + 4563073, + 4563479, + 4564300, + 4564898, + 4566192, + 4566408, + 4569045, + 4569960, + 4571473, + 4579094, + 4581502, + 4581972, + 4582326, + 4582576, + 4582633, + 4583010, + 4583385, + 4583386, + 4583387, + 4583388, + 4583389, + 4583390, + 4583391, + 4583392, + 4583394, + 4583395, + 4583396, + 4583397, + 4583398, + 4583399, + 4583400, + 4583401, + 4583402, + 4583403, + 4583404, + 4583405, + 4583406, + 4583407, + 4583408, + 4583409, + 4583410, + 4583411, + 4583412, + 4583413, + 4583414, + 4583415, + 4583416, + 4583417, + 4583418, + 4583419, + 4583420, + 4583421, + 4583422, + 4583423, + 4583424, + 4583425, + 4583426, + 4583427, + 4583428, + 4583429, + 4583430, + 4583431, + 4583432, + 4583433, + 4583434, + 4583435, + 4583436, + 4583437, + 4583438, + 4583439, + 4583440, + 4583441, + 4583442, + 4583443, + 4583444, + 4583445, + 4583446, + 4583447, + 4583448, + 4583449, + 4583450, + 4583451, + 4583452, + 4583453, + 4583454, + 4583455, + 4583456, + 4583457, + 4583459, + 4583460, + 4583461, + 4583462, + 4583463, + 4583464, + 4583465, + 4583466, + 4583467, + 4583468, + 4583469, + 4583659, + 4586205, + 4586394, + 4586665, + 4590127, + 4590616, + 4591250, + 4591254, + 4591261, + 4591409, + 4592473, + 4594087, + 4595508, + 4596409, + 4600889, + 4602130, + 4603484, + 4603486, + 4606947, + 4608801, + 4610119, + 4610229, + 4611602, + 4612001, + 4614386, + 4614387, + 4614388, + 4614389, + 4614390, + 4614729, + 4614920, + 4615731, + 4615876, + 4618270, + 4618272, + 4618546, + 4619623, + 4619624, + 4621630, + 4622335, + 4622337, + 4622797, + 4622800, + 4622806, + 4622807, + 4622811, + 4622812, + 4622817, + 4623138, + 4624477, + 4625546, + 4625547, + 4625549, + 4625550, + 4625551, + 4625552, + 4625554, + 4625555, + 4625556, + 4625557, + 4625558, + 4625559, + 4625560, + 4625561, + 4625562, + 4625563, + 4625564, + 4625565, + 4625566, + 4625567, + 4625568, + 4625569, + 4625570, + 4625571, + 4625572, + 4625573, + 4625574, + 4625575, + 4625576, + 4625577, + 4625578, + 4625579, + 4625580, + 4625581, + 4625582, + 4625583, + 4625584, + 4625585, + 4625586, + 4625587, + 4625588, + 4625589, + 4625590, + 4625591, + 4625592, + 4625593, + 4625594, + 4625595, + 4625596, + 4625597, + 4625598, + 4625599, + 4625601, + 4625602, + 4625603, + 4625604, + 4625605, + 4625606, + 4625607, + 4625608, + 4625609, + 4626166, + 4626167, + 4626289, + 4626293, + 4626760, + 4628506, + 4628687, + 4629947, + 4630404, + 4632966, + 4632995, + 4633720, + 4633869, + 4634055, + 4635589, + 4635590, + 4635591, + 4635592, + 4635593, + 4635594, + 4635596, + 4635597, + 4635599, + 4635601, + 4635602, + 4635603, + 4638046, + 4639167, + 4639260, + 4639363, + 4639748, + 4642872, + 4643640, + 4643642, + 4643648, + 4644251, + 4645208, + 4645792, + 4646608, + 4647347, + 4647987, + 4648844, + 4649200, + 4649411, + 4650771, + 4650928, + 4651300, + 4652607, + 4652608, + 4655221, + 4655223, + 4655224, + 4655294, + 4657487, + 4658752, + 4659668, + 4660156, + 4660675, + 4660815, + 4663056, + 4663562, + 4663620, + 4664617, + 4665735, + 4666212, + 4667930, + 4669931, + 4672249, + 4673433, + 4674372, + 4674872, + 4674874, + 4679799, + 4679930, + 4680276, + 4680277, + 4680278, + 4680279, + 4680280, + 4680281, + 4680282, + 4680283, + 4680284, + 4680285, + 4680286, + 4680288, + 4680290, + 4680291, + 4680292, + 4680293, + 4680294, + 4680295, + 4680296, + 4680297, + 4680298, + 4680299, + 4680300, + 4681474, + 4684378, + 4685720, + 4686018, + 4686989, + 4689090, + 4690636, + 4693246, + 4693248, + 4693551, + 4694868, + 4696415, + 4697265, + 4697742, + 4698348, + 4698477, + 4699547, + 4699742, + 4699743, + 4699763, + 4700274, + 4701572, + 4701573, + 4702234, + 4704209, + 4704210, + 4704211, + 4704212, + 4704213, + 4704215, + 4704216, + 4704217, + 4704218, + 4704219, + 4704220, + 4704221, + 4704222, + 4704223, + 4704224, + 4704225, + 4704226, + 4704227, + 4704228, + 4704229, + 4704230, + 4704231, + 4704413, + 4705819, + 4707156, + 4707157, + 4707158, + 4707225, + 4707360, + 4708823, + 4709076, + 4709971, + 4709972, + 4711160, + 4712037, + 4713045, + 4714520, + 4716042, + 4718776, + 4719810, + 4721124, + 4721608, + 4721609, + 4725031, + 4726190, + 4726373, + 4730761, + 4730762, + 4730763, + 4731307, + 4732981, + 4735183, + 4735935, + 4735955, + 4735962, + 4735969, + 4735976, + 4738968, + 4739073, + 4739555, + 4739676, + 4740429, + 4740430, + 4740432, + 4740433, + 4742079, + 4743286, + 4743290, + 4743297, + 4743299, + 4743750, + 4743751, + 4744166, + 4745010, + 4745011, + 4745407, + 4747632, + 4748052, + 4748714, + 4749797, + 4751142, + 4752161, + 4753973, + 4754077, + 4758288, + 4760241, + 4760920, + 4761225, + 4762894, + 4763175, + 4763176, + 4763179, + 4765366, + 4765831, + 4767003, + 4767006, + 4767013, + 4768076, + 4768640, + 4768641, + 4768646, + 4769895, + 4770290, + 4770292, + 4773054, + 4773631, + 4773659, + 4773677, + 4774244, + 4774944, + 4775366, + 4775368, + 4775369, + 4775370, + 4775372, + 4775384, + 4777580, + 4777760, + 4778978, + 4780150, + 4780151, + 4780156, + 4780174, + 4780180, + 4780640, + 4780641, + 4780643, + 4780693, + 4783056, + 4785213, + 4785897, + 4786147, + 4786875, + 4787023, + 4787025, + 4787110, + 4788238, + 4788597, + 4789877, + 4789943, + 4792314, + 4792498, + 4793245, + 4793519, + 4793797, + 4795376, + 4796346, + 4797474, + 4798191, + 4798974, + 4799750, + 4801165, + 4803857, + 4804487, + 4805099, + 4805408, + 4807369, + 4807830, + 4807865, + 4810713, + 4811300, + 4812074, + 4813127, + 4813131, + 4814434, + 4817517, + 4817518, + 4817523, + 4818415, + 4821643, + 4821646, + 4823623, + 4824707, + 4824797, + 4825059, + 4825825, + 4825827, + 4828869, + 4828870, + 4830871, + 4833564, + 4833565, + 4833566, + 4834110, + 4835008, + 4835009, + 4835018, + 4835019, + 4835020, + 4835021, + 4835025, + 4835026, + 4835027, + 4835053, + 4835054, + 4835055, + 4835056, + 4835063, + 4835068, + 4835185, + 4835193, + 4835824, + 4836171, + 4840548, + 4841333, + 4842092, + 4842364, + 4842739, + 4843728, + 4844223, + 4845592, + 4847612, + 4850112, + 4850558, + 4851209, + 4852450, + 4852451, + 4853213, + 4853215, + 4853216, + 4853217, + 4853218, + 4853287, + 4853710, + 4853711, + 4853755, + 4853756, + 4853757, + 4853758, + 4853760, + 4853761, + 4853925, + 4853946, + 4853947, + 4853955, + 4854003, + 4855471, + 4856093, + 4856094, + 4856095, + 4856096, + 4856097, + 4856098, + 4856099, + 4856100, + 4856101, + 4856102, + 4856103, + 4856104, + 4856105, + 4856106, + 4856107, + 4856108, + 4856109, + 4856110, + 4856111, + 4856112, + 4856113, + 4856114, + 4856205, + 4856733, + 4856734, + 4858086, + 4861806, + 4863461, + 4863836, + 4863837, + 4863838, + 4863839, + 4863840, + 4863841, + 4863842, + 4863843, + 4863844, + 4863845, + 4863846, + 4863847, + 4863848, + 4863849, + 4863870, + 4863871, + 4863873, + 4863874, + 4863875, + 4863876, + 4863877, + 4863878, + 4863879, + 4863912, + 4863913, + 4863914, + 4863915, + 4863916, + 4863917, + 4863918, + 4863919, + 4863920, + 4864023, + 4864024, + 4864025, + 4864026, + 4864029, + 4864030, + 4864031, + 4864032, + 4864033, + 4864034, + 4864035, + 4864036, + 4864037, + 4864038, + 4864039, + 4864040, + 4864041, + 4864042, + 4864043, + 4864044, + 4864045, + 4864046, + 4864047, + 4864048, + 4864050, + 4864051, + 4864053, + 4864054, + 4864056, + 4864057, + 4864059, + 4864060, + 4864063, + 4864064, + 4864065, + 4864067, + 4867435, + 4868226, + 4868788, + 4868789, + 4868790, + 4869503, + 4870711, + 4874878, + 4876242, + 4876248, + 4877930, + 4878542, + 4880661, + 4880812, + 4882423, + 4882424, + 4887336, + 4887337, + 4889852, + 4890894, + 4891420, + 4895309, + 4895701, + 4898149, + 4898340, + 4898341, + 4900038, + 4900137, + 4900280, + 4900294, + 4900448, + 4902506, + 4904804, + 4905625, + 4906260, + 4907693, + 4907892, + 4911570, + 4911814, + 4912506, + 4914884, + 4915573, + 4917343, + 4917344, + 4918809, + 4919109, + 4920061, + 4920408, + 4921515, + 4923584, + 4924068, + 4925293, + 4925565, + 4925664, + 4928225, + 4928226, + 4929345, + 4930931, + 4932899, + 4933401, + 4934404, + 4936185, + 4936714, + 4938663, + 4939207, + 4940109, + 4940667, + 4942665, + 4945285, + 4945671, + 4945998, + 4949511, + 4949962, + 4950837, + 4950918, + 4951006, + 4951260, + 4952790, + 4953309, + 4954221, + 4954699, + 4956496, + 4956689, + 4956697, + 4957049, + 4957053, + 4958480, + 4958499, + 4959010, + 4960496, + 4962856, + 4963288, + 4966196, + 4967221, + 4968616, + 4972661, + 4973360, + 4973400, + 4973640, + 4973701, + 4974450, + 4974938, + 4977330, + 4977334, + 4978823, + 4980332, + 4980680, + 4980867, + 4984960, + 4985315, + 4986474, + 4987270, + 4987515, + 4987517, + 4987518, + 4989416, + 4991041, + 4991043, + 4991644, + 4995395, + 4995443, + 4995694, + 4996355, + 4996971, + 4998051, + 4998888, + 5000502, + 5001437, + 5001438, + 5007311, + 5007312, + 5007313, + 5007314, + 5007315, + 5007316, + 5007317, + 5008100, + 5008164, + 5009698, + 5009700, + 5009712, + 5010785, + 5011254, + 5011831, + 5011842, + 5012252, + 5012286, + 5013173, + 5013175, + 5013758, + 5014103, + 5014502, + 5017355, + 5018852, + 5020251, + 5024039, + 5024465, + 5024469, + 5024470, + 5024472, + 5025189, + 5027039, + 5027042, + 5027043, + 5027044, + 5031795, + 5035020, + 5036028, + 5039266, + 5039835, + 5043172, + 5045138, + 5046992, + 5047892, + 5047917, + 5047921, + 5047954, + 5048300, + 5048303, + 5049836, + 5052392, + 5052600, + 5053399, + 5053861, + 5055697, + 5056083, + 5057338, + 5057680, + 5058315, + 5058319, + 5058368, + 5058369, + 5058370, + 5059891, + 5062970, + 5064396, + 5064400, + 5065094, + 5066708, + 5067197, + 5067527, + 5068257, + 5068717, + 5069783, + 5069991, + 5072730, + 5074231, + 5076129, + 5076455, + 5076456, + 5076457, + 5077106, + 5077108, + 5077109, + 5077238, + 5077660, + 5077663, + 5077672, + 5079472, + 5080843, + 5083106, + 5083892, + 5084877, + 5086300, + 5086307, + 5086652, + 5086712, + 5087274, + 5088569, + 5088740, + 5089030, + 5090435, + 5090504, + 5090542, + 5091499, + 5092466, + 5093490, + 5094376, + 5095685, + 5096809, + 5096810, + 5097125, + 5098623, + 5099107, + 5099623, + 5100211, + 5100499, + 5100500, + 5100501, + 5100502, + 5101016, + 5101017, + 5101037, + 5101617, + 5101633, + 5101969, + 5103945, + 5105162, + 5105778, + 5105779, + 5107002, + 5107003, + 5107273, + 5107628, + 5108444, + 5108890, + 5108891, + 5108892, + 5108893, + 5108894, + 5108895, + 5108899, + 5108900, + 5110440, + 5110674, + 5110954, + 5111645, + 5112394, + 5113636, + 5115044, + 5115681, + 5117148, + 5118143, + 5118752, + 5123812, + 5123815, + 5125766, + 5127585, + 5127736, + 5130351, + 5130355, + 5131059, + 5131586, + 5132023, + 5132024, + 5133336, + 5135407, + 5135618, + 5135950, + 5136964, + 5137615, + 5138221, + 5138226, + 5138616, + 5141309, + 5141311, + 5141592, + 5142020, + 5143414, + 5143895, + 5144155, + 5144610, + 5145256, + 5145567, + 5147490, + 5148007, + 5148558, + 5148559, + 5150130, + 5150921, + 5150993, + 5151318, + 5152226, + 5153479, + 5153481, + 5154475, + 5154477, + 5154949, + 5155250, + 5155255, + 5155256, + 5156631, + 5156633, + 5157801, + 5159709, + 5159931, + 5162932, + 5167693, + 5167753, + 5168692, + 5168693, + 5168696, + 5168697, + 5168698, + 5168701, + 5168702, + 5168703, + 5168705, + 5168706, + 5169663, + 5169848, + 5171045, + 5171047, + 5171049, + 5171052, + 5171053, + 5171054, + 5171055, + 5171056, + 5171059, + 5172232, + 5172475, + 5172696, + 5173111, + 5173116, + 5173855, + 5175632, + 5175921, + 5175922, + 5175924, + 5176543, + 5177846, + 5178679, + 5178684, + 5179435, + 5182194, + 5183007, + 5184344, + 5184346, + 5184347, + 5184348, + 5184350, + 5186200, + 5186773, + 5187623, + 5189001, + 5189047, + 5190084, + 5190317, + 5190491, + 5192227, + 5192232, + 5196507, + 5197022, + 5197171, + 5197601, + 5197604, + 5197611, + 5197683, + 5197937, + 5198368, + 5199356, + 5199436, + 5199440, + 5199444, + 5200805, + 5200806, + 5207667, + 5208057, + 5208064, + 5208065, + 5208992, + 5211165, + 5211315, + 5213161, + 5213488, + 5214655, + 5216793, + 5217216, + 5217217, + 5217218, + 5217219, + 5217220, + 5218632, + 5218633, + 5218845, + 5219313, + 5222231, + 5223024, + 5224212, + 5225839, + 5226271, + 5226303, + 5226954, + 5227846, + 5227847, + 5227848, + 5227849, + 5229483, + 5233812, + 5239489, + 5241170, + 5244035, + 5244718, + 5244926, + 5245367, + 5245372, + 5246073, + 5246486, + 5248777, + 5248981, + 5251648, + 5253605, + 5253752, + 5253755, + 5254463, + 5254464, + 5254465, + 5254467, + 5256264, + 5258338, + 5259961, + 5261155, + 5261242, + 5261243, + 5263657, + 5263658, + 5263659, + 5264120, + 5264737, + 5268125, + 5268920, + 5269070, + 5271850, + 5272374, + 5272595, + 5273972, + 5274995, + 5276019, + 5276712, + 5276889, + 5276890, + 5276892, + 5277275, + 5277415, + 5281460, + 5281573, + 5281972, + 5282805, + 5284553, + 5284558, + 5284559, + 5284567, + 5286111, + 5286115, + 5289459, + 5291989, + 5292710, + 5294030, + 5294063, + 5294064, + 5294065, + 5295099, + 5296095, + 5302792, + 5304413, + 5304416, + 5304417, + 5306656, + 5307522, + 5307524, + 5308028, + 5309778, + 5312696, + 5315159, + 5315683, + 5316143, + 5319979, + 5320171, + 5320174, + 5322288, + 5324838, + 5326900, + 5328309, + 5328315, + 5328521, + 5329666, + 5329815, + 5331208, + 5331428, + 5333298, + 5334008, + 5334692, + 5336517, + 5336518, + 5336519, + 5336619, + 5337258, + 5337813, + 5339340, + 5340646, + 5341824, + 5341881, + 5342112, + 5342114, + 5342116, + 5342117, + 5343480, + 5345172, + 5347670, + 5347671, + 5347673, + 5347855, + 5347856, + 5347857, + 5347858, + 5347859, + 5347860, + 5347861, + 5348148, + 5349897, + 5350552, + 5351304, + 5354072, + 5354323, + 5354986, + 5356084, + 5356967, + 5357400, + 5357401, + 5357403, + 5357404, + 5357406, + 5357944, + 5360254, + 5360435, + 5360487, + 5360488, + 5360489, + 5360490, + 5360492, + 5360493, + 5361250, + 5362409, + 5363145, + 5363169, + 5364083, + 5364391, + 5365258, + 5365767, + 5366912, + 5367083, + 5367087, + 5367091, + 5367092, + 5368121, + 5368315, + 5369667, + 5372324, + 5372464, + 5372520, + 5372533, + 5373201, + 5373694, + 5375368, + 5375489, + 5375490, + 5376296, + 5376747, + 5377141, + 5378049, + 5379292, + 5381224, + 5382210, + 5384024, + 5384025, + 5384026, + 5384027, + 5385647, + 5387696, + 5388279, + 5388286, + 5395890, + 5395895, + 5397319, + 5398928, + 5399132, + 5399302, + 5399399, + 5399502, + 5399926, + 5399928, + 5400666, + 5401346, + 5402331, + 5402676, + 5403703, + 5403704, + 5407663, + 5409907, + 5410735, + 5411609, + 5412871, + 5413428, + 5413429, + 5414424, + 5414431, + 5416297, + 5419652, + 5425014, + 5425015, + 5425016, + 5425043, + 5425920, + 5426294, + 5426295, + 5426296, + 5426297, + 5426356, + 5429281, + 5429624, + 5432101, + 5432450, + 5434446, + 5434765, + 5434769, + 5434772, + 5434774, + 5434775, + 5434776, + 5434778, + 5434779, + 5434781, + 5435658, + 5435997, + 5436000, + 5436003, + 5436004, + 5436006, + 5436007, + 5436008, + 5436013, + 5440068, + 5443504, + 5443505, + 5443771, + 5445803, + 5447497, + 5448203, + 5449052, + 5449056, + 5449919, + 5449969, + 5452147, + 5454339, + 5456586, + 5456587, + 5456589, + 5456712, + 5457100, + 5457101, + 5457211, + 5459139, + 5459229, + 5459447, + 5460085, + 5460087, + 5460092, + 5460095, + 5461172, + 5461770, + 5461772, + 5461998, + 5461999, + 5462000, + 5462143, + 5463071, + 5463161, + 5463234, + 5464198, + 5465111, + 5465178, + 5465180, + 5466035, + 5466792, + 5467435, + 5467436, + 5467704, + 5469462, + 5472402, + 5473355, + 5474384, + 5475392, + 5476517, + 5476683, + 5476787, + 5478162, + 5478775, + 5479377, + 5486337, + 5491333, + 5491453, + 5492430, + 5492847, + 5493236, + 5494508, + 5495585, + 5495666, + 5497448, + 5497471, + 5497899, + 5497961, + 5500246, + 5501412, + 5502076, + 5502491, + 5502943, + 5505322, + 5507404, + 5507436, + 5507439, + 5511044, + 5511492, + 5512484, + 5512654, + 5513195, + 5514805, + 5514900, + 5514903, + 5515181, + 5515442, + 5515443, + 5515444, + 5515445, + 5517243, + 5517382, + 5518747, + 5518750, + 5518754, + 5519271, + 5519272, + 5519275, + 5519846, + 5520276, + 5520428, + 5520995, + 5523368, + 5524725, + 5526720, + 5528116, + 5528117, + 5528118, + 5528119, + 5528120, + 5530181, + 5530199, + 5530206, + 5530210, + 5530310, + 5530574, + 5531213, + 5531216, + 5533265, + 5534688, + 5541858, + 5542767, + 5545831, + 5547816, + 5548588, + 5549858, + 5550591, + 5552432, + 5553991, + 5553992, + 5553996, + 5553997, + 5553998, + 5554002, + 5555004, + 5555977, + 5558626, + 5560187, + 5560359, + 5565175, + 5565176, + 5567252, + 5567253, + 5567254, + 5567255, + 5567256, + 5567257, + 5568457, + 5568569, + 5568612, + 5570027, + 5570136, + 5570233, + 5570295, + 5572313, + 5572333, + 5574302, + 5574906, + 5575140, + 5575333, + 5575500, + 5575925, + 5576241, + 5576242, + 5577318, + 5577626, + 5579728, + 5582356, + 5583022, + 5583023, + 5583025, + 5583142, + 5583154, + 5583871, + 5585094, + 5585096, + 5585102, + 5585107, + 5585254, + 5585515, + 5589988, + 5591157, + 5591233, + 5593317, + 5593492, + 5593502, + 5593982, + 5595002, + 5595662, + 5597732, + 5597960, + 5597993, + 5600817, + 5601112, + 5601355, + 5602200, + 5603988, + 5604260, + 5606332, + 5606433, + 5607698, + 5607699, + 5607702, + 5607703, + 5608043, + 5608209, + 5608210, + 5608607, + 5609776, + 5611200, + 5612954, + 5613476, + 5615960, + 5616953, + 5616959, + 5616960, + 5617192, + 5619555, + 5620235, + 5622343, + 5622621, + 5625160, + 5627401, + 5629246, + 5631048, + 5631050, + 5631051, + 5631052, + 5631053, + 5631054, + 5631679, + 5631687, + 5636334, + 5636336, + 5636342, + 5636837, + 5636857, + 5636902, + 5638775, + 5638911, + 5639381, + 5640800, + 5641399, + 5641869, + 5643443, + 5645650, + 5645913, + 5645914, + 5645917, + 5646089, + 5646092, + 5646095, + 5649389, + 5649715, + 5650198, + 5650206, + 5650691, + 5651189, + 5651192, + 5657169, + 5657170, + 5659118, + 5660279, + 5660625, + 5660646, + 5662603, + 5664048, + 5666253, + 5667103, + 5670274, + 5670709, + 5670785, + 5670915, + 5671566, + 5671981, + 5672737, + 5672738, + 5673094, + 5677293, + 5677631, + 5679818, + 5680075, + 5680289, + 5680290, + 5681585, + 5683323, + 5683324, + 5683325, + 5685160, + 5689065, + 5689736, + 5691661, + 5692799, + 5693090, + 5693091, + 5693092, + 5693095, + 5693099, + 5693101, + 5693106, + 5693107, + 5693109, + 5693110, + 5694530, + 5694544, + 5696750, + 5700548, + 5703160, + 5703416, + 5703754, + 5703832, + 5704039, + 5707564, + 5708827, + 5708938, + 5709874, + 5713472, + 5718214, + 5718215, + 5718502, + 5719335, + 5719767, + 5723494, + 5723677, + 5724451, + 5724453, + 5724454, + 5724456, + 5724457, + 5724458, + 5724459, + 5724460, + 5724463, + 5724464, + 5724465, + 5724466, + 5724467, + 5724741, + 5724743, + 5724900, + 5729545, + 5731458, + 5731636, + 5731637, + 5734856, + 5735077, + 5736630, + 5736702, + 5740060, + 5740061, + 5740988, + 5743335, + 5743558, + 5744681, + 5747936, + 5747937, + 5747939, + 5747940, + 5747941, + 5748668, + 5748670, + 5748671, + 5748677, + 5748836, + 5749738, + 5750382, + 5750819, + 5753457, + 5753459, + 5753460, + 5753625, + 5753626, + 5753715, + 5755579, + 5756109, + 5756981, + 5757046, + 5759960, + 5760537, + 5760539, + 5761432, + 5761622, + 5763555, + 5763603, + 5764674, + 5767175, + 5768459, + 5769011, + 5769013, + 5769014, + 5771565, + 5772421, + 5773493, + 5773508, + 5773806, + 5775757, + 5775955, + 5778200, + 5778201, + 5780555, + 5780713, + 5780906, + 5786379, + 5786382, + 5786387, + 5786388, + 5786773, + 5788111, + 5788628, + 5789384, + 5789486, + 5790235, + 5790236, + 5790348, + 5791981, + 5792338, + 5794424, + 5796732, + 5796816, + 5796819, + 5799240, + 5799716, + 5804888, + 5804903, + 5804934, + 5804977, + 5808837, + 5809062, + 5809063, + 5814649, + 5817498, + 5818137, + 5818456, + 5819083, + 5819571, + 5822859, + 5823205, + 5823231, + 5823645, + 5824576, + 5825474, + 5827426, + 5827612, + 5832113, + 5832114, + 5832610, + 5836113, + 5836401, + 5836579, + 5836580, + 5839116, + 5840655, + 5842027, + 5843505, + 5844702, + 5845044, + 5845324, + 5845449, + 5845995, + 5846535, + 5847536, + 5848516, + 5848915, + 5848957, + 5850031, + 5853117, + 5853119, + 5853120, + 5853121, + 5853122, + 5853123, + 5853124, + 5853125, + 5853126, + 5853128, + 5853129, + 5853130, + 5853132, + 5853133, + 5853134, + 5853135, + 5853136, + 5853137, + 5853138, + 5853139, + 5853140, + 5853142, + 5853144, + 5853146, + 5853832, + 5855143, + 5856276, + 5857864, + 5857997, + 5857998, + 5857999, + 5858000, + 5858001, + 5858002, + 5858003, + 5858004, + 5858005, + 5859739, + 5859750, + 5859754, + 5861160, + 5861161, + 5862500, + 5864038, + 5864433, + 5865785, + 5866846, + 5868334, + 5868878, + 5870477, + 5870478, + 5870485, + 5872340, + 5876550, + 5877386, + 5878319, + 5879480, + 5881942, + 5881943, + 5881945, + 5881952, + 5881953, + 5881960, + 5881961, + 5881962, + 5881964, + 5883446, + 5885474, + 5886284, + 5886379, + 5886493, + 5886495, + 5886496, + 5886497, + 5886498, + 5886499, + 5888177, + 5888219, + 5888540, + 5889689, + 5891304, + 5892034, + 5892037, + 5893889, + 5893897, + 5895622, + 5896385, + 5898022, + 5898041, + 5899662, + 5899857, + 5900534, + 5901049, + 5901713, + 5904649, + 5905015, + 5905025, + 5906056, + 5908897, + 5908899, + 5908900, + 5909016, + 5909017, + 5909072, + 5910041, + 5910056, + 5910061, + 5910064, + 5914989, + 5918780, + 5923102, + 5924007, + 5924163, + 5925377, + 5925492, + 5927172, + 5927903, + 5927962, + 5928908, + 5931599, + 5933292, + 5934203, + 5935730, + 5935731, + 5936347, + 5936349, + 5936663, + 5938938, + 5940249, + 5940480, + 5941724, + 5941805, + 5942543, + 5942921, + 5943554, + 5944128, + 5946717, + 5947800, + 5950910, + 5950921, + 5950933, + 5951716, + 5951717, + 5951718, + 5951719, + 5953066, + 5953067, + 5953069, + 5953494, + 5957573, + 5959080, + 5967126, + 5967128, + 5967131, + 5972419, + 5975598, + 5975600, + 5975601, + 5975603, + 5975604, + 5975605, + 5975607, + 5975609, + 5975610, + 5975611, + 5976015, + 5976651, + 5977980, + 5978769, + 5979081, + 5979154, + 5979641, + 5980729, + 5980896, + 5982147, + 5982148, + 5982165, + 5983009, + 5984475, + 5987911, + 5989555, + 5991730, + 5992475, + 5993595, + 5994276, + 5995753, + 5995769, + 5995787, + 5996094, + 5997488, + 5997490, + 5997499, + 6003300, + 6004016, + 6004019, + 6005546, + 6007643, + 6012652, + 6012653, + 6016521, + 6016522, + 6021556, + 6022805, + 6022806, + 6022807, + 6023358, + 6023359, + 6024158, + 6027422, + 6033384, + 6033385, + 6033943, + 6033944, + 6033945, + 6033946, + 6035615, + 6037404, + 6037405, + 6037406, + 6037407, + 6037408, + 6037409, + 6037411, + 6037486, + 6037487, + 6037488, + 6037489, + 6037490, + 6037491, + 6037492, + 6037493, + 6037495, + 6037496, + 6037497, + 6037897, + 6037898, + 6037899, + 6037900, + 6037901, + 6038292, + 6038294, + 6038295, + 6038296, + 6038297, + 6038298, + 6038315, + 6038484, + 6039485, + 6039916, + 6040082, + 6040083, + 6040741, + 6041786, + 6041787, + 6042121, + 6042215, + 6043731, + 6044788, + 6047138, + 6049192, + 6049193, + 6050262, + 6051184, + 6051246, + 6051884, + 6052852, + 6054326, + 6055019, + 6055020, + 6057277, + 6058157, + 6058476, + 6059147, + 6060798, + 6061000, + 6063405, + 6063407, + 6066195, + 6068815, + 6069249, + 6069310, + 6071966, + 6072805, + 6073827, + 6073828, + 6074195, + 6074198, + 6075877, + 6077592, + 6079465, + 6079466, + 6081868, + 6081871, + 6084545, + 6086047, + 6086910, + 6087542, + 6088106, + 6088493, + 6088494, + 6088610, + 6089529, + 6089737, + 6091453, + 6092396, + 6092534, + 6092590, + 6093924, + 6093926, + 6094577, + 6095286, + 6095537, + 6095541, + 6097999, + 6098002, + 6099026, + 6099752, + 6100708, + 6101901, + 6103030, + 6103268, + 6103275, + 6103279, + 6104061, + 6104064, + 6104067, + 6106093, + 6106701, + 6107565, + 6107577, + 6107580, + 6108460, + 6109091, + 6109092, + 6109473, + 6112039, + 6115668, + 6115683, + 6116039, + 6116334, + 6116477, + 6116523, + 6117457, + 6120783, + 6120820, + 6121342, + 6121349, + 6121454, + 6123671, + 6123948, + 6124395, + 6125212, + 6127840, + 6129039, + 6129604, + 6130230, + 6130730, + 6131344, + 6131870, + 6132516, + 6134403, + 6134404, + 6134405, + 6134964, + 6144272, + 6145429, + 6145432, + 6146165, + 6146166, + 6148071, + 6148797, + 6150604, + 6152204, + 6152330, + 6152331, + 6152334, + 6152335, + 6152336, + 6152337, + 6152339, + 6152341, + 6152343, + 6152344, + 6152345, + 6152347, + 6152678, + 6157346, + 6157499, + 6158021, + 6161970, + 6162700, + 6162701, + 6162703, + 6165181, + 6165528, + 6168373, + 6168856, + 6171189, + 6171191, + 6171683, + 6173235, + 6173239, + 6173241, + 6173242, + 6173244, + 6173264, + 6173884, + 6174739, + 6174742, + 6174745, + 6175028, + 6175042, + 6175169, + 6175171, + 6175993, + 6175996, + 6179040, + 6180384, + 6181194, + 6182201, + 6182599, + 6184048, + 6184454, + 6185277, + 6185466, + 6187106, + 6193096, + 6195719, + 6197639, + 6198321, + 6199786, + 6203207, + 6203719, + 6203891, + 6203892, + 6203893, + 6205662, + 6205671, + 6205672, + 6205673, + 6207101, + 6207102, + 6207103, + 6208207, + 6209129, + 6211533, + 6212198, + 6212761, + 6213392, + 6213578, + 6214736, + 6215179, + 6217568, + 6218844, + 6218845, + 6219519, + 6220151, + 6224705, + 6225292, + 6225805, + 6228538, + 6229887, + 6230609, + 6230610, + 6231681, + 6232366, + 6232367, + 6233576, + 6235178, + 6236029, + 6236030, + 6236031, + 6236032, + 6236033, + 6236034, + 6236036, + 6236037, + 6236038, + 6236039, + 6236041, + 6236043, + 6236044, + 6236045, + 6236046, + 6236047, + 6236048, + 6236050, + 6236052, + 6236053, + 6236054, + 6236056, + 6236057, + 6236058, + 6236059, + 6236061, + 6236063, + 6236065, + 6236066, + 6236068, + 6236069, + 6236070, + 6236071, + 6236072, + 6236073, + 6236074, + 6236075, + 6236076, + 6236077, + 6236078, + 6236079, + 6236080, + 6236081, + 6236083, + 6236084, + 6236086, + 6236087, + 6236088, + 6236089, + 6236090, + 6236091, + 6236092, + 6236093, + 6236096, + 6236097, + 6236098, + 6236099, + 6236100, + 6236101, + 6236102, + 6236110, + 6236401, + 6236554, + 6237262, + 6239669, + 6239673, + 6240492, + 6240577, + 6241167, + 6241831, + 6241851, + 6243822, + 6248118, + 6248821, + 6250094, + 6252103, + 6253313, + 6254482, + 6255485, + 6257069, + 6261554, + 6261588, + 6262565, + 6266999, + 6267232, + 6268262, + 6270549, + 6271172, + 6271179, + 6273516, + 6274651, + 6275602, + 6277484, + 6282011, + 6282075, + 6282091, + 6282093, + 6283364, + 6287459, + 6288111, + 6288602, + 6289573, + 6289769, + 6290879, + 6290880, + 6290881, + 6290882, + 6290883, + 6290884, + 6290885, + 6290887, + 6290888, + 6290891, + 6290892, + 6290893, + 6290894, + 6290895, + 6290896, + 6290897, + 6290898, + 6290899, + 6290900, + 6290901, + 6290902, + 6290903, + 6290905, + 6290906, + 6290907, + 6290908, + 6290909, + 6290910, + 6290911, + 6290912, + 6290913, + 6290915, + 6290916, + 6290917, + 6290918, + 6290919, + 6290920, + 6290921, + 6290922, + 6290923, + 6290924, + 6290925, + 6296226, + 6296723, + 6297540, + 6298151, + 6299143, + 6300760, + 6301906, + 6301950, + 6303153, + 6304683, + 6305082, + 6305087, + 6305090, + 6307581, + 6307668, + 6310723, + 6311104, + 6311109, + 6311112, + 6311114, + 6312100, + 6313873, + 6313879, + 6313882, + 6313995, + 6314882, + 6315530, + 6318995, + 6319139, + 6320983, + 6321869, + 6321923, + 6327988, + 6328001, + 6328010, + 6328303, + 6328650, + 6328651, + 6328652, + 6328655, + 6328657, + 6328835, + 6328838, + 6328839, + 6332661, + 6332904, + 6332905, + 6333879, + 6335123, + 6335440, + 6336617, + 6338352, + 6341103, + 6341104, + 6342410, + 6342686, + 6343506, + 6344517, + 6344519, + 6344522, + 6345105, + 6345880, + 6347183, + 6347325, + 6348522, + 6348696, + 6348778, + 6348780, + 6348783, + 6348788, + 6350764, + 6352888, + 6353328, + 6353995, + 6355497, + 6356072, + 6356860, + 6362926, + 6366900, + 6368043, + 6368466, + 6368817, + 6369860, + 6370169, + 6370398, + 6371966, + 6372077, + 6372351, + 6373990, + 6374923, + 6374924, + 6374926, + 6375138, + 6375627, + 6375909, + 6380176, + 6381900, + 6383653, + 6383875, + 6384298, + 6385315, + 6385316, + 6385317, + 6385318, + 6385319, + 6385320, + 6385321, + 6385322, + 6385323, + 6385324, + 6385325, + 6385326, + 6385327, + 6385328, + 6385329, + 6385330, + 6385331, + 6385332, + 6385333, + 6385334, + 6385335, + 6385336, + 6385337, + 6385338, + 6385339, + 6385340, + 6385341, + 6385825, + 6385868, + 6389107, + 6389760, + 6390488, + 6390489, + 6390496, + 6390497, + 6390498, + 6390622, + 6391439, + 6392653, + 6392654, + 6392656, + 6392956, + 6393129, + 6394000, + 6394001, + 6395606, + 6396591, + 6397393, + 6398539, + 6398540, + 6400206, + 6400396, + 6400399, + 6401969, + 6402460, + 6405220, + 6405587, + 6405592, + 6405598, + 6405599, + 6405601, + 6405605, + 6405606, + 6405961, + 6409132, + 6409606, + 6411632, + 6412664, + 6415228, + 6417784, + 6417785, + 6417786, + 6417789, + 6417791, + 6418287, + 6427852, + 6429249, + 6429868, + 6430524, + 6430525, + 6431919, + 6432724, + 6435040, + 6435721, + 6436131, + 6437829, + 6440007, + 6440015, + 6440019, + 6440585, + 6440698, + 6442537, + 6443890, + 6445259, + 6446336, + 6449654, + 6450243, + 6452209, + 6455194, + 6458317, + 6458618, + 6458684, + 6460817, + 6463976, + 6464534, + 6465072, + 6468570, + 6468758, + 6473286, + 6473290, + 6475147, + 6479927, + 6483412, + 6483413, + 6483415, + 6483416, + 6483417, + 6483418, + 6486505, + 6487976, + 6488843, + 6488877, + 6490152, + 6498363, + 6498979, + 6499903, + 6500682, + 6502422, + 6502430, + 6502432, + 6502434, + 6502445, + 6502459, + 6502769, + 6507630, + 6507716, + 6510224, + 6512980, + 6512991, + 6512995, + 6515426, + 6518164, + 6519891, + 6520708, + 6521837, + 6525005, + 6528649, + 6529460, + 6532756, + 6535261, + 6535758, + 6535959, + 6540595, + 6540611, + 6542424, + 6544357, + 6544951, + 6550390, + 6550434, + 6550564, + 6551713, + 6551727, + 6554023, + 6554457, + 6557865, + 6559271, + 6559272, + 6561006, + 6563018, + 6563045, + 6563046, + 6563584, + 6566692, + 6566752, + 6567622, + 6568157, + 6568216, + 6568218, + 6568219, + 6569808, + 6571271, + 6571424, + 6572214, + 6572221, + 6573630, + 6575817, + 6579347, + 6580180, + 6580333, + 6581671, + 6582117, + 6582139, + 6584104, + 6585175, + 6586283, + 6588564, + 6590587, + 6590591, + 6593832, + 6594791, + 6594800, + 6595506, + 6601907, + 6603455, + 6603643, + 6605708, + 6613238, + 6613828, + 6613834, + 6616591, + 6618057, + 6619597, + 6619598, + 6619599, + 6620758, + 6620807, + 6623431, + 6623919, + 6626394, + 6628211, + 6628302, + 6629464, + 6629465, + 6630251, + 6633794, + 6635724, + 6636458, + 6640713, + 6640715, + 6647769, + 6648291, + 6653997, + 6657687, + 6659946, + 6661736, + 6661971, + 6662366, + 6663148, + 6663848, + 6663850, + 6666252, + 6666943, + 6667093, + 6667097, + 6669206, + 6669422, + 6670919, + 6671096, + 6671097, + 6671228, + 6671229, + 6671581, + 6671753, + 6672146, + 6672206, + 6672207, + 6672254, + 6674549, + 6678197, + 6680634, + 6683907, + 6686163, + 6686872, + 6687672, + 6689878, + 6689879, + 6689880, + 6689881, + 6689882, + 6691785, + 6691786, + 6692507, + 6692902, + 6693536, + 6694763, + 6694892, + 6699517, + 6700842, + 6704385, + 6707247, + 6707925, + 6709694, + 6709695, + 6709696, + 6709697, + 6709698, + 6711351, + 6711352, + 6711353, + 6711356, + 6711357, + 6711358, + 6712299, + 6712842, + 6713131, + 6713132, + 6716138, + 6717763, + 6726756, + 6727673, + 6727828, + 6727830, + 6730027, + 6730760, + 6732953, + 6734342, + 6738737, + 6740853, + 6742309, + 6743052, + 6744547, + 6745546, + 6746090, + 6746236, + 6751893, + 6752474, + 6755533, + 6755534, + 6755535, + 6756542, + 6756858, + 6756859, + 6756991, + 6757072, + 6758028, + 6759114, + 6764806, + 6769609, + 6769686, + 6769893, + 6769894, + 6771720, + 6774086, + 6777251, + 6778076, + 6779475, + 6780068, + 6784669, + 6792209, + 6792297, + 6793936, + 6794942, + 6794959, + 6794960, + 6794961, + 6794962, + 6794964, + 6794965, + 6794966, + 6794967, + 6794968, + 6794969, + 6794970, + 6797292, + 6800101, + 6800853, + 6802127, + 6807800, + 6807801, + 6808734, + 6811171, + 6814236, + 6814586, + 6814588, + 6814763, + 6815942, + 6816474, + 6816592, + 6819505, + 6821897, + 6823563, + 6824053, + 6830942, + 6835263, + 6836514, + 6838735, + 6839259, + 6839616, + 6842189, + 6843268, + 6843419, + 6844157, + 6844414, + 6846031, + 6847778, + 6849234, + 6849769, + 6852482, + 6852819, + 6852820, + 6853882, + 6853883, + 6854704, + 6854713, + 6855749, + 6858079, + 6858370, + 6859698, + 6861674, + 6862440, + 6862864, + 6863514, + 6863523, + 6864151, + 6865581, + 6865955, + 6868382, + 6868839, + 6870093, + 6870223, + 6870224, + 6870226, + 6870227, + 6870230, + 6870659, + 6870660, + 6870661, + 6870662, + 6870698, + 6871546, + 6872479, + 6872636, + 6872701, + 6874646, + 6874858, + 6874881, + 6874901, + 6874928, + 6876217, + 6879893, + 6880113, + 6882168, + 6882169, + 6882234, + 6883230, + 6883341, + 6888014, + 6891692, + 6892013, + 6894586, + 6894590, + 6896980, + 6897551, + 6898182, + 6898183, + 6898184, + 6898185, + 6898186, + 6898187, + 6898189, + 6898190, + 6898191, + 6898192, + 6898193, + 6900205, + 6904678, + 6905942, + 6906035, + 6908034, + 6908063, + 6909481, + 6910732, + 6911957, + 6914296, + 6919002, + 6919636, + 6923737, + 6926445, + 6930353, + 6932044, + 6932085, + 6933175, + 6940422, + 6941236, + 6942338, + 6944147, + 6944289, + 6946839, + 6947475, + 6954107, + 6954108, + 6954762, + 6956163, + 6956164, + 6956165, + 6956222, + 6956223, + 6956623, + 6957039, + 6959654, + 6960925, + 6960929, + 6960931, + 6961715, + 6962466, + 6962467, + 6963216, + 6963269, + 6966849, + 6968304, + 6970527, + 6970746, + 6971571, + 6971657, + 6972167, + 6972568, + 6976146, + 6976263, + 6976324, + 6977720, + 6978559, + 6978563, + 6978565, + 6978566, + 6978567, + 6982699, + 6984442, + 6986526, + 6990442, + 6991996, + 6992019, + 6992038, + 6992041, + 6993332, + 6993337, + 6994466, + 6995371, + 6995372, + 6996534, + 6997779, + 6997810, + 6999107, + 6999697, + 7003916, + 7003917, + 7004883, + 7004894, + 7005188, + 7005189, + 7005190, + 7005192, + 7005461, + 7005710, + 7005864, + 7006900, + 7006901, + 7006902, + 7007090, + 7007097, + 7007098, + 7007099, + 7007101, + 7007376, + 7007377, + 7007378, + 7008318, + 7009568, + 7009569, + 7009570, + 7009936, + 7012056, + 7012057, + 7016271, + 7023248, + 7023278, + 7023280, + 7023282, + 7023793, + 7023796, + 7026305, + 7028694, + 7028700, + 7028706, + 7030528, + 7032568, + 7032956, + 7033776, + 7034977, + 7034978, + 7034979, + 7034980, + 7034981, + 7034982, + 7034983, + 7034984, + 7034994, + 7038699, + 7038864, + 7040008, + 7040027, + 7040149, + 7040950, + 7041252, + 7043267, + 7043667, + 7045126, + 7046224, + 7047434, + 7049682, + 7051762, + 7052924, + 7053322, + 7053420, + 7055672, + 7055832, + 7055838, + 7056441, + 7056456, + 7056475, + 7060991, + 7060992, + 7060993, + 7060994, + 7060995, + 7060996, + 7062582, + 7062738, + 7062782, + 7063054, + 7063055, + 7063057, + 7063058, + 7063812, + 7063816, + 7069205, + 7072883, + 7076201, + 7078657, + 7080699, + 7084206, + 7085824, + 7085826, + 7085827, + 7085828, + 7088167, + 7088892, + 7090130, + 7090135, + 7096524, + 7097104, + 7098888, + 7098889, + 7099629, + 7099630, + 7099631, + 7099637, + 7099639, + 7099641, + 7101415, + 7101438, + 7102034, + 7103320, + 7104865, + 7106200, + 7106201, + 7106203, + 7106205, + 7106207, + 7106208, + 7106209, + 7106948, + 7110113, + 7110114, + 7111655, + 7112976, + 7113741, + 7118592, + 7120913, + 7121610, + 7121613, + 7122981, + 7122982, + 7126052, + 7128283, + 7129390, + 7129520, + 7131067, + 7131070, + 7131432, + 7131703, + 7132816, + 7133349, + 7135227, + 7136562, + 7137510, + 7139785, + 7139808, + 7139815, + 7139817, + 7140084, + 7143999, + 7144915, + 7144916, + 7144962, + 7145048, + 7147765, + 7148120, + 7148166, + 7150975, + 7152754, + 7152867, + 7157029, + 7160896, + 7161917, + 7163202, + 7163379, + 7165198, + 7165764, + 7165766, + 7165768, + 7165770, + 7165776, + 7165968, + 7168268, + 7169064, + 7170716, + 7171689, + 7171691, + 7171692, + 7171693, + 7171695, + 7171697, + 7171698, + 7171951, + 7173127, + 7176287, + 7176477, + 7177540, + 7184633, + 7186645, + 7187268, + 7188429, + 7188652, + 7194249, + 7198213, + 7202767, + 7203064, + 7204104, + 7206470, + 7207823, + 7207936, + 7208684, + 7209670, + 7211979, + 7212156, + 7214888, + 7215426, + 7215507, + 7218461, + 7220203, + 7223106, + 7226376, + 7226941, + 7227076, + 7229288, + 7229458, + 7231219, + 7235881, + 7238816, + 7239829, + 7241046, + 7241255, + 7243185, + 7247919, + 7249383, + 7250225, + 7250248, + 7250318, + 7250946, + 7251645, + 7258311, + 7258813, + 7258945, + 7259615, + 7266956, + 7266958, + 7267051, + 7271567, + 7273350, + 7273769, + 7276788, + 7276849, + 7277511, + 7282971, + 7282994, + 7283235, + 7283601, + 7283602, + 7284003, + 7285069, + 7288342, + 7288344, + 7288515, + 7288519, + 7288597, + 7289218, + 7290127, + 7290309, + 7290537, + 7291008, + 7296411, + 7304625, + 7305400, + 7305518, + 7305519, + 7305524, + 7305525, + 7305526, + 7305531, + 7305532, + 7305533, + 7305664, + 7308886, + 7313442, + 7315070, + 7324044, + 7326679, + 7327136, + 7327645, + 7328299, + 7332306, + 7333124, + 7333752, + 7333947, + 7335235, + 7335279, + 7336292, + 7342162, + 7342390, + 7343361, + 7343557, + 7344960, + 7351346, + 7351422, + 7352290, + 7352437, + 7364404, + 7365154, + 7366885, + 7369955, + 7372026, + 7373094, + 7374601, + 7378268, + 7378547, + 7378880, + 7378881, + 7379574, + 7383072, + 7384231, + 7387659, + 7388952, + 7391057, + 7391475, + 7392618, + 7393198, + 7393349, + 7398288, + 7398291, + 7398292, + 7404284, + 7406562, + 7407803, + 7409727, + 7409843, + 7409993, + 7409995, + 7412609, + 7415111, + 7415831, + 7415838, + 7416453, + 7416456, + 7416477, + 7422670, + 7422887, + 7422888, + 7422889, + 7422890, + 7422891, + 7423925, + 7426547, + 7426550, + 7431012, + 7431015, + 7434688, + 7435270, + 7436763, + 7438326, + 7444782, + 7445341, + 7445825, + 7446997, + 7446998, + 7447247, + 7448403, + 7448404, + 7448405, + 7458841, + 7459571, + 7459575, + 7459576, + 7459667, + 7462050, + 7464963, + 7465163, + 7472265, + 7472941, + 7475563, + 7476335, + 7476639, + 7479640, + 7481538, + 7487067, + 7488370, + 7489274, + 7489275, + 7490549, + 7493193, + 7493194, + 7493195, + 7493196, + 7493197, + 7493198, + 7493199, + 7494262, + 7495295, + 7495552, + 7496506, + 7496583, + 7501885, + 7501895, + 7507587, + 7507599, + 7509301, + 7509882, + 7513334, + 7516078, + 7517984, + 7520221, + 7521657, + 7521661, + 7523266, + 7523385, + 7523397, + 7523753, + 7523755, + 7523756, + 7523758, + 7523759, + 7523760, + 7523761, + 7523762, + 7523763, + 7523764, + 7523765, + 7523767, + 7523768, + 7523772, + 7523773, + 7523774, + 7523776, + 7523777, + 7523780, + 7523782, + 7526056, + 7530981, + 7531015, + 7531070, + 7531457, + 7532348, + 7532349, + 7532586, + 7534162, + 7534201, + 7538454, + 7543259, + 7545987, + 7545990, + 7545991, + 7545994, + 7545997, + 7545998, + 7546000, + 7546358, + 7549009, + 7549094, + 7549440, + 7549443, + 7549734, + 7549758, + 7551506, + 7553045, + 7554877, + 7555614, + 7555865, + 7555866, + 7556043, + 7556532, + 7562900, + 7565436, + 7566650, + 7566654, + 7566655, + 7566660, + 7566661, + 7566668, + 7566672, + 7566675, + 7568194, + 7569992, + 7570398, + 7570632, + 7572467, + 7572468, + 7572469, + 7572470, + 7572471, + 7572472, + 7572848, + 7572849, + 7573909, + 7573910, + 7573911, + 7573912, + 7573913, + 7573914, + 7574012, + 7574453, + 7574454, + 7574455, + 7574456, + 7574457, + 7574458, + 7574459, + 7574460, + 7574461, + 7576650, + 7576671, + 7578158, + 7578516, + 7578519, + 7579247, + 7579707, + 7579922, + 7581332, + 7581333, + 7581644, + 7582121, + 7583899, + 7584042, + 7587727, + 7588883, + 7588884, + 7588885, + 7588886, + 7588887, + 7588888, + 7588889, + 7588890, + 7588891, + 7588892, + 7588893, + 7588894, + 7588895, + 7588897, + 7588898, + 7589246, + 7591279, + 7592242, + 7592316, + 7592401, + 7592448, + 7593595, + 7593857, + 7593859, + 7596024, + 7596033, + 7596034, + 7596050, + 7596051, + 7598351, + 7600352, + 7600353, + 7602351, + 7602363, + 7602386, + 7604019, + 7604020, + 7604025, + 7604592, + 7604593, + 7604958, + 7606073, + 7607422, + 7608524, + 7609444, + 7612275, + 7613058, + 7613973, + 7614551, + 7616388, + 7619468, + 7620388, + 7620392, + 7620411, + 7620415, + 7620607, + 7625420, + 7628513, + 7628525, + 7629733, + 7631174, + 7631569, + 7632321, + 7632322, + 7632324, + 7633058, + 7634779, + 7636191, + 7636193, + 7636196, + 7636199, + 7636203, + 7636204, + 7636207, + 7636208, + 7636209, + 7636213, + 7636214, + 7636215, + 7636219, + 7636228, + 7636236, + 7636239, + 7636240, + 7636242, + 7636243, + 7636251, + 7636254, + 7636255, + 7636261, + 7636265, + 7636268, + 7636270, + 7636272, + 7636273, + 7636275, + 7636277, + 7636279, + 7636284, + 7636298, + 7636299, + 7636302, + 7636305, + 7636311, + 7637474, + 7638147, + 7638150, + 7638151, + 7638152, + 7640114, + 7640115, + 7644093, + 7644174, + 7644176, + 7646434, + 7646435, + 7646436, + 7646437, + 7646438, + 7646439, + 7646440, + 7646441, + 7646442, + 7646443, + 7646444, + 7648518, + 7648521, + 7648956, + 7650663, + 7651795, + 7651796, + 7654463, + 7654474, + 7656009, + 7656542, + 7658421, + 7659049, + 7659675, + 7660424, + 7663302, + 7663396, + 7663397, + 7663398, + 7663401, + 7663409, + 7663410, + 7663412, + 7663414, + 7663415, + 7663417, + 7663419, + 7663420, + 7663422, + 7663423, + 7663429, + 7663430, + 7663432, + 7663433, + 7663434, + 7663435, + 7663437, + 7663439, + 7663445, + 7663447, + 7663448, + 7663452, + 7663453, + 7663457, + 7663467, + 7665272, + 7673377, + 7675931, + 7676891, + 7676893, + 7677789, + 7677790, + 7677791, + 7677792, + 7679260, + 7680323, + 7680324, + 7680449, + 7680463, + 7680469, + 7682817, + 7685396, + 7690245, + 7693190, + 7693192, + 7693195, + 7693197, + 7693344, + 7696590, + 7696992, + 7697205, + 7698753, + 7698797, + 7698832, + 7699184, + 7699672, + 7699674, + 7700001, + 7702958, + 7703078, + 7705353, + 7707393, + 7707734, + 7709034, + 7715293, + 7718079, + 7719165, + 7719301, + 7723101, + 7724994, + 7727420, + 7728371, + 7728474, + 7731805, + 7731806, + 7731807, + 7731811, + 7731812, + 7731828, + 7731829, + 7731831, + 7731832, + 7731835, + 7731837, + 7731862, + 7731865, + 7731866, + 7731867, + 7731893, + 7731896, + 7731898, + 7731904, + 7731905, + 7731906, + 7731907, + 7732785, + 7732786, + 7732787, + 7732788, + 7739221, + 7740779, + 7742765, + 7744511, + 7746913, + 7748303, + 7751575, + 7757296, + 7760777, + 7761602, + 7762546, + 7762601, + 7763960, + 7767128, + 7767130, + 7767131, + 7767132, + 7767459, + 7767474, + 7768350, + 7776402, + 7781018, + 7781182, + 7781269, + 7782618, + 7783447, + 7785038, + 7785043, + 7785044, + 7785494, + 7785728, + 7785733, + 7785736, + 7786274, + 7788499, + 7789248, + 7790581, + 7792476, + 7796417, + 7796519, + 7797753, + 7799652, + 7801305, + 7801930, + 7802051, + 7806655, + 7809731, + 7811178, + 7815506, + 7819168, + 7821943, + 7825065, + 7826071, + 7827560, + 7827562, + 7827565, + 7828009, + 7828020, + 7828153, + 7828769, + 7830484, + 7830932, + 7832201, + 7833114, + 7834965, + 7834975, + 7839535, + 7840735, + 7841573, + 7847836, + 7848164, + 7852473, + 7853806, + 7854857, + 7856412, + 7856576, + 7860742, + 7860743, + 7861190, + 7864093, + 7864536, + 7864537, + 7869568, + 7869622, + 7870428, + 7870834, + 7872743, + 7875516, + 7875567, + 7875918, + 7876198, + 7879717, + 7879719, + 7879725, + 7879744, + 7879752, + 7879760, + 7879774, + 7879778, + 7887707, + 7889547, + 7890166, + 7893949, + 7893950, + 7895877, + 7897374, + 7899261, + 7902305, + 7903536, + 7905656, + 7908693, + 7909086, + 7909087, + 7910848, + 7916262, + 7916263, + 7916266, + 7916268, + 7916269, + 7916275, + 7916349, + 7916350, + 7916351, + 7916352, + 7916353, + 7916354, + 7916355, + 7916356, + 7916357, + 7916358, + 7916359, + 7916360, + 7916362, + 7916363, + 7916364, + 7916365, + 7916366, + 7916368, + 7917145, + 7917147, + 7917156, + 7917325, + 7918011, + 7918502, + 7919596, + 7922405, + 7924868, + 7924886, + 7925901, + 7925902, + 7925903, + 7925904, + 7925905, + 7925907, + 7925911, + 7927047, + 7927642, + 7927785, + 7929578, + 7932068, + 7936090, + 7941890, + 7942038, + 7942425, + 7948345, + 7951392, + 7951932, + 7951933, + 7952400, + 7952701, + 7952702, + 7954870, + 7956014, + 7956342, + 7959170, + 7962067, + 7965279, + 7967483, + 7968270, + 7969413, + 7974720, + 7975757, + 7975758, + 7975847, + 7975848, + 7977880, + 7977881, + 7977882, + 7977883, + 7980168, + 7981397, + 7985111, + 7989212, + 7989213, + 7991243, + 7991315, + 7995712, + 7995715, + 7995716, + 7995718, + 8000171, + 8000310, + 8000314, + 8003124, + 8010053, + 8012361, + 8013735, + 8013736, + 8013737, + 8018875, + 8019748, + 8021254, + 8023810, + 8025379, + 8025886, + 8026958, + 8026959, + 8026960, + 8026962, + 8026963, + 8034776, + 8039954, + 8040392, + 8042745, + 8048858, + 8050041, + 8052157, + 8052972, + 8055651, + 8058438, + 8058439, + 8058440, + 8058441, + 8058754, + 8060168, + 8060654, + 8061498, + 8061820, + 8065293, + 8068567, + 8068940, + 8068944, + 8072849, + 8073332, + 8075093, + 8075155, + 8075156, + 8075157, + 8075158, + 8075159, + 8075160, + 8075161, + 8075162, + 8076183, + 8079090, + 8079155, + 8083480, + 8085022, + 8093299, + 8093383, + 8094817, + 8098265, + 8099131, + 8100841, + 8100842, + 8100845, + 8101223, + 8101842, + 8101845, + 8101846, + 8101848, + 8102701, + 8104729, + 8104730, + 8107224, + 8107276, + 8108553, + 8108554, + 8108774, + 8110382, + 8110383, + 8112596, + 8113522, + 8113524, + 8113525, + 8113532, + 8113536, + 8113539, + 8113540, + 8113541, + 8113596, + 8113628, + 8118755, + 8136239, + 8136240, + 8144620, + 8146428, + 8154579, + 8158176, + 8160194, + 8160262, + 8160365, + 8161222, + 8165792, + 8168710, + 8171014, + 8172745, + 8172827, + 8173452, + 8173455, + 8173458, + 8173459, + 8173460, + 8173461, + 8173462, + 8173463, + 8173464, + 8173465, + 8173466, + 8173467, + 8173469, + 8181268, + 8181269, + 8181450, + 8181666, + 8182544, + 8184637, + 8184761, + 8185011, + 8189312, + 8197109, + 8197110, + 8198812, + 8198817, + 8198900, + 8198901, + 8198902, + 8198903, + 8198904, + 8198905, + 8198906, + 8198907, + 8198908, + 8198909, + 8198910, + 8198911, + 8198912, + 8198913, + 8198914, + 8198915, + 8198916, + 8198917, + 8198918, + 8198919, + 8198920, + 8198921, + 8198922, + 8198923, + 8198924, + 8198925, + 8198926, + 8198927, + 8198928, + 8202275, + 8202790, + 8202791, + 8202792, + 8202794, + 8202796, + 8204727, + 8208208, + 8208834, + 8210817, + 8212561, + 8212562, + 8212563, + 8212564, + 8212565, + 8212566, + 8213068, + 8214476, + 8218939, + 8219723, + 8220683, + 8221328, + 8222523, + 8222524, + 8222841, + 8223567, + 8225968, + 8226000, + 8234070, + 8234072, + 8235293, + 8236085, + 8240578, + 8246123, + 8257024, + 8258139, + 8258819, + 8258820, + 8258821, + 8258822, + 8258823, + 8258824, + 8258825, + 8258826, + 8258827, + 8258828, + 8258829, + 8261669, + 8265251, + 8265637, + 8267818, + 8268735, + 8270001, + 8273328, + 8278599, + 8278600, + 8278601, + 8278602, + 8278603, + 8278604, + 8278605, + 8278606, + 8278607, + 8278608, + 8278610, + 8278611, + 8278613, + 8278617, + 8278619, + 8278621, + 8278623, + 8278624, + 8278626, + 8278628, + 8282849, + 8288378, + 8290567, + 8291063, + 8291896, + 8299389, + 8303792, + 8317560, + 8327283, + 8328042, + 8328993, + 8336127, + 8336151, + 8340543, + 8353638, + 8355753, + 8358753, + 8361387, + 8361405, + 8366580, + 8380431, + 8385645, + 8407032, + 8416236, + 8425938, + 8433375, + 8433378, + 8433381, + 8435415, + 8471190, + 8475390, + 8487531, + 8491221, + 8491224, + 8491227, + 8496450, + 8496453, + 8496456, + 8496465, + 8496480, + 8496483, + 8496486, + 8496489, + 8496492, + 8499873, + 8503986, + 8510466, + 8515425, + 8515626, + 8526654, + 8535741, + 8538567, + 8545065, + 8545068, + 8545077, + 8545086, + 8545089, + 8545092, + 8545095, + 8545098, + 8545107, + 8545110, + 8545113, + 8545116, + 8545119, + 8548947, + 8550624, + 8551878, + 8562309, + 8570622, + 8571258, + 8588397, + 8589807, + 8591208, + 8592696, + 8592699, + 8592702, + 8592705, + 8592708, + 8592711, + 8613231, + 8628183, + 8641320, + 8644545, + 8644557, + 8652969, + 8653374, + 8656590, + 8715277, + 8719258, + 8725504, + 8725516, + 8725519, + 8736622, + 8737753, + 8744338, + 8744716, + 8746858, + 8760136, + 8762821, + 8766928, + 8771701, + 8774953, + 8776555, + 8777539, + 8777542, + 8782468, + 8785288, + 8785306, + 8787973, + 8791576, + 8795416, + 8801995, + 8801998, + 8802901, + 8808469, + 8809738, + 8812411, + 8815714, + 8828188, + 8828926, + 8839522, + 8840227, + 8840230, + 8840233, + 8840236, + 8840239, + 8840242, + 8840245, + 8840248, + 8840251, + 8840254, + 8840257, + 8840260, + 8840263, + 8840266, + 8840269, + 8844622, + 8846740, + 8846746, + 8846761, + 8846764, + 8846767, + 8846773, + 8846776, + 8846779, + 8846785, + 8846788, + 8849380, + 8850607, + 8862976, + 8868388, + 8876362, + 8879911, + 8889805, + 8889946, + 8893456, + 8893459, + 8893462, + 8895940, + 8900029, + 8914471, + 8920807, + 8927221, + 8927224, + 8971399, + 8988379, + 9005776, + 9006763, + 9009409, + 9012451, + 9017617, + 9017815, + 9019402, + 9031210, + 9031213, + 9031216, + 9031219, + 9031222, + 9031225, + 9031228, + 9031231, + 9031234, + 9031237, + 9031240, + 9031243, + 9031246, + 9031252, + 9031255, + 9031258, + 9031264, + 9033784, + 9064231, + 9066808, + 9070789, + 9086899, + 9089086, + 9089089, + 9089092, + 9089095, + 9089098, + 9089101, + 9089104, + 9089107, + 9101374, + 9104029, + 9116572, + 9119320, + 9119485, + 9123853, + 9124240, + 9126622, + 9127978, + 9130813, + 9132613, + 9132616, + 9132622, + 9137281, + 9137290, + 9137359, + 9140368, + 9153376, + 9166117, + 9177169, + 9177175, + 9189466, + 9190204, + 9190228, + 9190234, + 9190240, + 9191626, + 9208159, + 9212263, + 9212266, + 9212482, + 9212485, + 9212491, + 9212494, + 9212497, + 9212506, + 9216670, + 9222181, + 9235990, + 9237562, + 9237565, + 9238474, + 9241174, + 9245107, + 9245929, + 9249982, + 9254419, + 9264487, + 9266383, + 9269548, + 9294592, + 9312796, + 9331237, + 9332719, + 9343030, + 9352309, + 9356509, + 9356548, + 9360772, + 9371833, + 9373603, + 9375718, + 9375721, + 9390253, + 9390373, + 9390961, + 9391765, + 9391978, + 9393190, + 9399805, + 9410128, + 9416566, + 9416572, + 9416575, + 9416590, + 9416599, + 9416602, + 9417595, + 9417676, + 9423685, + 9425890, + 9425893, + 9425896, + 9425899, + 9425902, + 9427330, + 9433270, + 9439015, + 9443911, + 9453976, + 9459904, + 9461230, + 9461233, + 9462553, + 9462556, + 9462559, + 9462562, + 9462565, + 9462568, + 9462571, + 9462574, + 9462577, + 9462580, + 9462583, + 9462586, + 9462589, + 9462592, + 9462595, + 9462598, + 9462601, + 9462604, + 9462607, + 9462610, + 9462613, + 9462616, + 9462619, + 9462622, + 9462625, + 9462628, + 9462631, + 9462634, + 9462637, + 9462640, + 9462643, + 9462646, + 9462649, + 9462652, + 9462655, + 9462658, + 9462661, + 9462664, + 9462667, + 9462670, + 9462673, + 9462676, + 9462679, + 9463159, + 9469048, + 9469051, + 9469054, + 9469057, + 9469060, + 9469063, + 9469066, + 9474706, + 9496324, + 9497248, + 9528589, + 9528910, + 9531439, + 9531445, + 9531457, + 9531460, + 9534031, + 9541012, + 9545212, + 9551983, + 9553504, + 9556327, + 9556390, + 9558475, + 9558535, + 9562066, + 9562975, + 9562984, + 9563812, + 9567904, + 9573181, + 9573646, + 9577045, + 9582718, + 9583003, + 9583009, + 9583012, + 9583015, + 9584116, + 9597901, + 9598684, + 9606895, + 9607027, + 9612754, + 9624589, + 9624592, + 9628039, + 9630775, + 9632623, + 9651298, + 9654793, + 9654796, + 9654799, + 9655228, + 9655480, + 9655483, + 9660655, + 9660658, + 9660661, + 9660664, + 9660667, + 9660670, + 9660673, + 9660676, + 9660679, + 9660682, + 9660685, + 9660688, + 9660691, + 9660694, + 9660697, + 9660700, + 9660703, + 9660706, + 9663832, + 9667480, + 9669532, + 9676750, + 9676753, + 9676756, + 9698125, + 9710533, + 9723694, + 9730561, + 9746350, + 9751987, + 9753061, + 9753064, + 9753067, + 9753088, + 9753094, + 9753097, + 9753100, + 9753103, + 9753112, + 9753118, + 9753121, + 9753124, + 9753127, + 9753133, + 9753136, + 9753139, + 9753142, + 9753145, + 9753151, + 9753157, + 9753160, + 9753169, + 9753172, + 9753175, + 9753184, + 9753187, + 9753190, + 9753196, + 9764350, + 9764737, + 9766345, + 9770917, + 9776785, + 9798484, + 9799867, + 9807868, + 9817177, + 9817189, + 9827863, + 9830920, + 9849106, + 9849109, + 9849112, + 9849934, + 9853801, + 9875764, + 9877516, + 9877519, + 9893737, + 9894373, + 9900505, + 9903340, + 9903457, + 9903466, + 9903472, + 9908461, + 9913963, + 9916255, + 9916945, + 9916948, + 9919633, + 9926758, + 9927250, + 9937654, + 9942253, + 9943789, + 9943822, + 9945958, + 9946516, + 9964003, + 9975838, + 9977446, + 9982648, + 9984883, + 9984889, + 9990385, + 9990637, + 10001161, + 10001164, + 10001167, + 10008391, + 10019380, + 10038796, + 10040992, + 10068829, + 10087873, + 10096795, + 10108825, + 10108828, + 10112068, + 10115212, + 10115512, + 10115524, + 10120636, + 10128592, + 10130584, + 10135930, + 10152196, + 10153528, + 10157608, + 10160800, + 10174633, + 10178776, + 10181416, + 10183927, + 10186231, + 10186372, + 10191781, + 10192192, + 10202020, + 10205755, + 10216675, + 10225585, + 10228309, + 10230859, + 10235014, + 10263496, + 10272163, + 10272169, + 10284520, + 10301293, + 10329922, + 10330531, + 10334788, + 10334797, + 10343398, + 10349137, + 10357726, + 10357729, + 10357732, + 10357735, + 10357738, + 10357741, + 10357744, + 10357747, + 10357750, + 10357753, + 10357756, + 10357759, + 10357762, + 10357765, + 10357768, + 10357771, + 10357774, + 10357777, + 10357780, + 10357783, + 10357789, + 10357792, + 10357795, + 10357798, + 10357801, + 10357810, + 10357816, + 10357819, + 10364962, + 10370122, + 10412836, + 10421752, + 10461703, + 10477198, + 10477204, + 10483507, + 10483510, + 10483513, + 10493155, + 10509247, + 10510969, + 10518988, + 10523158, + 10523161, + 10524898, + 10530367, + 10530439, + 10532317, + 10535629, + 10538065, + 10541992, + 10559506, + 10573288, + 10576369, + 10577680, + 10590349, + 10595005, + 10595596, + 10607179, + 10609948, + 10611601, + 10639036, + 10639042, + 10639687, + 10640668, + 10640671, + 10640674, + 10640680, + 10640683, + 10640686, + 10646893, + 10664221, + 10666378, + 10666381, + 10666384, + 10668247, + 10686589, + 10687681, + 10688896, + 10696480, + 10699663, + 10702987, + 10709062, + 10710784, + 10713184, + 10718254, + 10720720, + 10720723, + 10720726, + 10722319, + 10722580, + 10722886, + 10753816, + 10757119, + 10757125, + 10757140, + 10771306, + 10791727, + 10794577, + 10796101, + 10799539, + 10799548, + 10799557, + 10799566, + 10799569, + 10800103, + 10801744, + 10801747, + 10805917, + 10812244, + 10818067, + 10830622, + 10830709, + 10834180, + 10842472, + 10842475, + 10842484, + 10842487, + 10842493, + 10842496, + 10842499, + 10842502, + 10842505, + 10842508, + 10842511, + 10842514, + 10842517, + 10842520, + 10844197, + 10847173, + 10847233, + 10854169, + 10854172, + 10854175, + 10854181, + 10854184, + 10854187, + 10854193, + 10854196, + 10854199, + 10854202, + 10854205, + 10868974, + 10873006, + 10883167, + 10896898, + 10898101, + 10906075, + 10906078, + 10906081, + 10906087, + 10906447, + 10906645, + 10910365, + 10916056, + 10916863, + 10926805, + 10926808, + 10936727, + 10949816, + 10966829, + 10973144, + 10980833, + 11026976, + 11034620, + 11034623, + 11036450, + 11036453, + 11052956, + 11057696, + 11057699, + 11058443, + 11058551, + 11065946, + 11065949, + 11065955, + 11065958, + 11065961, + 11065967, + 11065973, + 11091155, + 11094233, + 11094236, + 11094239, + 11094242, + 11094248, + 11094251, + 11094254, + 11094257, + 11094959, + 11094962, + 11106176, + 11106179, + 11125823, + 11125835, + 11157461, + 11180495, + 11186465, + 11191061, + 11191487, + 11205572, + 11223989, + 11227226, + 11227238, + 11227271, + 11230034, + 11230037, + 11230040, + 11230043, + 11230046, + 11230049, + 11230052, + 11230055, + 11230058, + 11230061, + 11230064, + 11230067, + 11230073, + 11230076, + 11230079, + 11230082, + 11230085, + 11230088, + 11230091, + 11230094, + 11230097, + 11230100, + 11230106, + 11230112, + 11230115, + 11230118, + 11230121, + 11230124, + 11230127, + 11230130, + 11230133, + 11230136, + 11230139, + 11230142, + 11230145, + 11230148, + 11230151, + 11230154, + 11230157, + 11230160, + 11230163, + 11230166, + 11230169, + 11230172, + 11230175, + 11230178, + 11230181, + 11230184, + 11230187, + 11230190, + 11230193, + 11230196, + 11230199, + 11230202, + 11231483, + 11231486, + 11231492, + 11231495, + 11231498, + 11231501, + 11231507, + 11231510, + 11231516, + 11231519, + 11231522, + 11231528, + 11231531, + 11231534, + 11231537, + 11231540, + 11231543, + 11231546, + 11231549, + 11231552, + 11231555, + 11231558, + 11231561, + 11242229, + 11243621, + 11249210, + 11250422, + 11264492, + 11273846, + 11280179, + 11304344, + 11304773, + 11304776, + 11304779, + 11315315, + 11319044, + 11338334, + 11349116, + 11351957, + 11352611, + 11362124, + 11368847, + 11372399, + 11376503, + 11394617, + 11399654, + 11400716, + 11404868, + 11404871, + 11413328, + 11413331, + 11416655, + 11421323, + 11431685, + 11448062, + 11455496, + 11455499, + 11455502, + 11455505, + 11455508, + 11455511, + 11455514, + 11455517, + 11455520, + 11455523, + 11455526, + 11455529, + 11455532, + 11455535, + 11455538, + 11455541, + 11455544, + 11455547, + 11455550, + 11455553, + 11455556, + 11455559, + 11455562, + 11455565, + 11455568, + 11472842, + 11473850, + 11477348, + 11500757, + 11516096, + 11516105, + 11516111, + 11516114, + 11516117, + 11516120, + 11516123, + 11516126, + 11516129, + 11530700, + 11538821, + 11538824, + 11538827, + 11542490, + 11560706, + 11591657, + 11597084, + 11597087, + 11597090, + 11632946, + 11632949, + 11632958, + 11632961, + 11632967, + 11632970, + 11664533, + 11667980, + 11672489, + 11672492, + 11672495, + 11680976, + 11680979, + 11684351, + 11684354, + 11692895, + 11702705, + 11708198, + 11711171, + 11714273, + 11721446, + 11722109, + 11735432, + 11738675, + 11747708, + 11749523, + 11749526, + 11750585, + 11760323, + 11761322, + 11766968, + 11767760, + 11799398, + 11816255, + 11832413, + 11842301, + 11843219, + 11844431, + 11849285, + 11850158, + 11853008, + 11858756, + 11879339, + 11884235, + 11887829, + 11891033, + 11898878, + 11901581, + 11901584, + 11901590, + 11901593, + 11901596, + 11905202, + 11905205, + 11905208, + 11905211, + 11905217, + 11905220, + 11905223, + 11905226, + 11905229, + 11905232, + 11905235, + 11905238, + 11905241, + 11905244, + 11905247, + 11905250, + 11905253, + 11905256, + 11905259, + 11905262, + 11905265, + 11905268, + 11905277, + 11905280, + 11905283, + 11905286, + 11905289, + 11905292, + 11905295, + 11905298, + 11905301, + 11905304, + 11905307, + 11905310, + 11905313, + 11905316, + 11905319, + 11905322, + 11905325, + 11905328, + 11905331, + 11905334, + 11905337, + 11905340, + 11905343, + 11905346, + 11905352, + 11905355, + 11905358, + 11905364, + 11905367, + 11905370, + 11905373, + 11905376, + 11905379, + 11905382, + 11905385, + 11905388, + 11905391, + 11905394, + 11905397, + 11905400, + 11905403, + 11905406, + 11905409, + 11905412, + 11905415, + 11905418, + 11905421, + 11905424, + 11905427, + 11905763, + 11905844, + 11920493, + 11926910, + 11926916, + 11926922, + 11926925, + 11926928, + 11926934, + 11926937, + 11926940, + 11926943, + 11926955, + 11926958, + 11926961, + 11926964, + 11926967, + 11926970, + 11926973, + 11926976, + 11926979, + 11926982, + 11926985, + 11926988, + 11926994, + 11926997, + 11927000, + 11927003, + 11927006, + 11927009, + 11927012, + 11927015, + 11927018, + 11927024, + 11956685, + 11967491, + 11967494, + 11967497, + 11967521, + 11967524, + 11967527, + 11969558, + 11973938, + 11998318, + 12009001, + 12015835, + 12022210, + 12037369, + 12060310, + 12066244, + 12073840, + 12076897, + 12082963, + 12085237, + 12099391, + 12104434, + 12109534, + 12114091, + 12156337, + 12165151, + 12165481, + 12174676, + 12178135, + 12178459, + 12178462, + 12182539, + 12186970, + 12187924, + 12188761, + 12190243, + 12190249, + 12198853, + 12207634, + 12207646, + 12207649, + 12207652, + 12207655, + 12207658, + 12207661, + 12207664, + 12207670, + 12207673, + 12207676, + 12207679, + 12207682, + 12207685, + 12207688, + 12207691, + 12207694, + 12207697, + 12207700, + 12207703, + 12207706, + 12207709, + 12207712, + 12207781, + 12210892, + 12233221, + 12240514, + 12246103, + 12253357, + 12258205, + 12271093, + 12281812, + 12282586, + 12296500, + 12303412, + 12312847, + 12312853, + 12313678, + 12315820, + 12330814, + 12330847, + 12330877, + 12346648, + 12346651, + 12346654, + 12346657, + 12346660, + 12346669, + 12346672, + 12346675, + 12369484, + 12369496, + 12369499, + 12371179, + 12393736, + 12402631, + 12404476, + 12409645, + 12421945, + 12443983, + 12443989, + 12447598, + 12474925, + 12476329, + 12476332, + 12485716, + 12495763, + 12502411, + 12506887, + 12520864, + 12533578, + 12541175, + 12545627, + 12557360, + 12582224, + 12585170, + 12612053, + 12612062, + 12612896, + 12638270, + 12640295, + 12650189, + 12662006, + 12664073, + 12686288, + 12686351, + 12711029, + 12715697, + 12730361, + 12731453, + 12733676, + 12749567, + 12752039, + 12770792, + 12770798, + 12773720, + 12777146, + 12781169, + 12782858, + 12794798, + 12796418, + 12811418, + 12826184, + 12831437, + 12832199, + 12834536, + 12834539, + 12835874, + 12849854, + 12862853, + 12876056, + 12880913, + 12880919, + 12892337, + 12892904, + 12900053, + 12901805, + 12921974, + 12923282, + 12923345, + 12927293, + 12949803, + 12961407, + 12961422, + 12962133, + 12962139, + 12962142, + 12962157, + 12962160, + 12962169, + 12962172, + 12962175, + 12962187, + 12964710, + 12966240, + 12966279, + 12986058, + 12991110, + 13019196, + 13033983, + 13036959, + 13047903, + 13047966, + 13073844, + 13073847, + 13073853, + 13073856, + 13073859, + 13073862, + 13073865, + 13073868, + 13073871, + 13073874, + 13073877, + 13073880, + 13073883, + 13073886, + 13073889, + 13073892, + 13073895, + 13073898, + 13073901, + 13073904, + 13073907, + 13073910, + 13073913, + 13073916, + 13073919, + 13077750, + 13077753, + 13077756, + 13077759, + 13077762, + 13079043, + 13083252, + 13085622, + 13087053, + 13087290, + 13095639, + 13098087, + 13101804, + 13119771, + 13120647, + 13123494, + 13130427, + 13145595, + 13156377, + 13160415, + 13166829, + 13167720, + 13167726, + 13173429, + 13189440, + 13203447, + 13203453, + 13203456, + 13215483, + 13219722, + 13230477, + 13230486, + 13230531, + 13231437, + 13231440, + 13262559, + 13280700, + 13286694, + 13291392, + 13310601, + 13350027, + 13352898, + 13363629, + 13373997, + 13374624, + 13402989, + 13403751, + 13404861, + 13417737, + 13420923, + 13420926, + 13420938, + 13420944, + 13422561, + 13424337, + 13435147, + 13493791, + 13493794, + 13493797, + 13493800, + 13493803, + 13505662, + 13505767, + 13512916, + 13533640, + 13535416, + 13535923, + 13540579, + 13555699, + 13568155, + 13587934, + 13591711, + 13592086, + 13592869, + 13600312, + 13600315, + 13600318, + 13601278, + 13602160, + 13602163, + 13603912, + 13608700, + 13609495, + 13609498, + 13609501, + 13618663, + 13625857, + 13642039, + 13642042, + 13642045, + 13654636, + 13654642, + 13656265, + 13671130, + 13678888, + 13678891, + 13678894, + 13678906, + 13685374, + 13685386, + 13707529, + 13716034, + 13716037, + 13716040, + 13716049, + 13716052, + 13716055, + 13716058, + 13723018, + 13723810, + 13729498, + 13740991, + 13759543, + 13759546, + 13761295, + 13761298, + 13787515, + 13809970, + 13820065, + 13865176, + 13865182, + 13865188, + 13865200, + 13865203, + 13865215, + 13865218, + 13865230, + 13865233, + 13865248, + 13867819, + 13869493, + 13871239, + 13874125, + 13880668, + 13929277, + 13959973, + 13959976, + 13959982, + 13959985, + 13959988, + 13981192, + 13982041, + 13987564, + 14007907, + 14008099, + 14012263, + 14017183, + 14027263, + 14027980, + 14027983, + 14027992, + 14027995, + 14032453, + 14036947, + 14037199, + 14039740, + 14062480, + 14063911, + 14066320, + 14070385, + 14080141, + 14080144, + 14081545, + 14081548, + 14081551, + 14081554, + 14081653, + 14081698, + 14081701, + 14081770, + 14081773, + 14084767, + 14096143, + 14108692, + 14108695, + 14108698, + 14108701, + 14108704, + 14108707, + 14108710, + 14108812, + 14108818, + 14114713, + 14114716, + 14116528, + 14151529, + 14172697, + 14174980, + 14176909, + 14180026, + 14210632, + 14234650, + 14237971, + 14239231, + 14242810, + 14242813, + 14243770, + 14270521, + 14271337, + 14289829, + 14294440, + 14315057, + 14315060, + 14332508, + 14338622, + 14342054, + 14346434, + 14346485, + 14350385, + 14352929, + 14388071, + 14391299, + 14391302, + 14391887, + 14450711, + 14455553, + 14472473, + 14472476, + 14472479, + 14472512, + 14486342, + 14487479, + 14496304, + 14503120, + 14534131, + 14543905, + 14547970, + 14547973, + 14547976, + 14558863, + 14560477, + 14560483, + 14560486, + 14560492, + 14560498, + 14560501, + 14560507, + 14560510, + 14560513, + 14560519, + 14560615, + 14560621, + 14560627, + 14560630, + 14560633, + 14560639, + 14560642, + 14560648, + 14562070, + 14562076, + 14562079, + 14562085, + 14562091, + 14562094, + 14562097, + 14562100, + 14562103, + 14562106, + 14562109, + 14562112, + 14562115, + 14562118, + 14562127, + 14562136, + 14562139, + 14562142, + 14562145, + 14562148, + 14562154, + 14563537, + 14563555, + 14564131, + 14580877, + 14596742, + 14611794, + 14617416, + 14618049, + 14618259, + 14618262, + 14618265, + 14630820, + 14637144, + 14641632, + 14645115, + 14707729, + 14707732, + 14737945, + 14766791, + 14766794, + 14766797, + 14766812, + 14766815, + 14766845, + 14766848, + 14766851, + 14766857, + 14766866, + 14768555, + 14768561, + 14768564, + 14768573, + 14768582, + 14768591, + 14768672, + 14770217, + 14773175, + 14775494, + 14775509, + 14776631, + 14788718, + 14790020, + 14797319, + 14805959, + 14824060, + 14824132, + 14824180, + 14824207, + 14829379, + 14830156, + 14841874, + 14868449, + 14874035, + 14883753, + 14906476, + 14971109, + 14985859, + 15011986, + 15057416, + 15059150, + 15075371, + 15082421, + 15082424, + 15086213, + 15111566, + 15122777, + 15140548, + 15151420, + 15151423, + 15151432, + 15151456, + 15151465, + 15158347, + 15159250, + 15159265, + 15160546, + 15164917, + 15168922, + 15168961, + 15172823, + 15181505, + 15181508, + 15183542, + 15190640, + 15197183, + 15213365, + 15245706, + 15275331, + 15281715, + 15282891, + 15286173, + 15286188, + 15286191, + 15286194, + 15286203, + 15286206, + 15295191, + 15300498, + 15300984, + 15324609, + 15347997, + 15358821, + 15358824, + 15358833, + 15358836, + 15358839, + 15416793, + 15439548, + 15458271, + 15462480, + 15482835, + 15482838, + 15482841, + 15482844, + 15482847, + 15482850, + 15482853, + 15511845, + 15535152, + 15536649, + 15540435, + 15540438, + 15551262, + 15573129, + 15575124, + 15575127, + 15575130, + 15575133, + 15575136, + 15575142, + 15575145, + 15575148, + 15575151, + 15575154, + 15575157, + 15575160, + 15575163, + 15575166, + 15575169, + 15575172, + 15575175, + 15575178, + 15575181, + 15575184, + 15575187, + 15620745, + 15620748, + 15620757, + 15620760, + 15620781, + 15620790, + 15620796, + 15620799, + 15622026, + 15623334, + 15624225, + 15624954, + 15624957, + 15624960, + 15640542, + 15641370, + 15642306, + 15651441, + 15661191, + 15675405, + 15684468, + 15699909, + 15722364, + 15736140, + 15744486, + 15765324, + 15765327, + 15765330, + 15768171, + 15769329, + 15772281, + 15777798, + 15778725, + 15790995, + 15806661, + 15829409, + 15829613, + 15829616, + 15836621, + 15836876, + 15841691, + 15844487, + 15844532, + 15844589, + 15888494, + 15909311, + 15943035, + 15953310, + 15953394, + 15970965, + 15970977, + 15982233, + 15988527, + 15994641, + 16013319, + 16013325, + 16013328, + 16013331, + 16013334, + 16013337, + 16014000, + 16014003, + 16014009, + 16014117, + 16044648, + 16048110, + 16048119, + 16059735, + 16068021, + 16069281, + 16069284, + 16073427, + 16076562, + 16076565, + 16076568, + 16076571, + 16076574, + 16076577, + 16076583, + 16076589, + 16076592, + 16076595, + 16076598, + 16076601, + 16076604, + 16116489, + 16120137, + 16120140, + 16120143, + 16120146, + 16120149, + 16120152, + 16120155, + 16120158, + 16120161, + 16126659, + 16131894, + 16131897, + 16144128, + 16144131, + 16144134, + 16144137, + 16144146, + 16144149, + 16144152, + 16144155, + 16156602, + 16156991, + 16174714, + 16190533, + 16199272, + 16199275, + 16199278, + 16199281, + 16199284, + 16204177, + 16204180, + 16204183, + 16204186, + 16204189, + 16204192, + 16214806, + 16232821, + 16247644, + 16248343, + 16261684, + 16261687, + 16261705, + 16261708, + 16261711, + 16261714, + 16261717, + 16261720, + 16261723, + 16261726, + 16261768, + 16261771, + 16261774, + 16261777, + 16261780, + 16261783, + 16261786, + 16261789, + 16261792, + 16261795, + 16261798, + 16261801, + 16261804, + 16261807, + 16261810, + 16261813, + 16261816, + 16261819, + 16261834, + 16261837, + 16261840, + 16263502, + 16282051, + 16282054, + 16282057, + 16282060, + 16282063, + 16291357, + 16291360, + 16291363, + 16291366, + 16291372, + 16291384, + 16291387, + 16291390, + 16291393, + 16291396, + 16291399, + 16291402, + 16291405, + 16291408, + 16291411, + 16291414, + 16291417, + 16291468, + 16291513, + 16292380, + 16301101, + 16301104, + 16301371, + 16301383, + 16301437, + 16311283, + 16311286, + 16311289, + 16311292, + 16311295, + 16311298, + 16311301, + 16311304, + 16311307, + 16311310, + 16311313, + 16311316, + 16311319, + 16349875, + 16393546, + 16395727, + 16424464, + 16424470, + 16431328, + 16446820, + 16498553, + 16498565, + 16522103, + 16525514, + 16582619, + 16587770, + 16605536, + 16612238, + 16612241, + 16612262, + 16612268, + 16674787, + 16685881, + 16715254, + 16723366, + 16786495, + 16803103, + 16842688, + 16855351, + 16873312, + 16874566, + 16874572, + 16874575, + 16874578, + 16874584, + 16874590, + 16874593, + 16874596, + 16874602, + 16874611, + 16874620, + 16874662, + 16874665, + 16874674, + 16874680, + 16874683, + 16874686, + 16874692, + 16874695, + 16874707, + 16874713, + 16874731, + 16874737, + 16874743, + 16874746, + 16874752, + 16874758, + 16940251, + 16946869, + 16950193, + 16950205, + 16978477, + 16999906, + 17007403, + 17007418, + 17007526, + 17007553, + 17007562, + 17016109, + 17016115, + 17016118, + 17020990, + 17050426, + 17052727, + 17062858, + 17065093, + 17069119, + 17084299, + 17098222, + 17134516, + 17146090, + 17146093, + 17146096, + 17173282, + 17175718, + 17192239, + 17206321, + 17211649, + 17212162, + 17229346 + ], + "labels": [ + 48207, + 63796, + 99883, + 107799, + 113400, + 116077, + 120441, + 139139, + 159832, + 208790, + 225289, + 243572, + 263916, + 264340, + 264362, + 264510, + 266226, + 266227, + 266610, + 267660, + 267691, + 267706, + 267830, + 268298, + 268312, + 268579, + 268688, + 268983, + 269055, + 269062, + 269369, + 269411, + 273899, + 274237, + 274527, + 274891, + 275406, + 276045, + 277021, + 277790, + 280168, + 280422, + 282288, + 282348, + 282404, + 282465, + 282587, + 282680, + 285739, + 285783, + 285875, + 286855, + 288615, + 291001, + 291100, + 292324, + 293615, + 295798, + 297108, + 297981, + 298524, + 299648, + 300998, + 301000, + 301001, + 304865, + 308054, + 309367, + 309375, + 314152, + 316869, + 319266, + 319268, + 320427, + 343507, + 344907, + 356035, + 356086, + 359178, + 363090, + 364449, + 365610, + 366495, + 382119, + 384133, + 385285, + 387211, + 387214, + 387266, + 387273, + 387292, + 387300, + 387312, + 387315, + 387354, + 387357, + 387362, + 388706, + 388708, + 388719, + 388932, + 388939, + 388943, + 394260, + 411329, + 414417, + 430308, + 430311, + 436936, + 465399, + 467678, + 533052, + 539131, + 545594, + 605268, + 680154, + 687874, + 732243, + 789684, + 829998, + 836439, + 847610, + 864962, + 866522, + 892763, + 897104, + 924460, + 948654, + 976374, + 976375, + 1047850, + 1079773, + 1269148, + 1336101, + 1348299, + 1412710, + 1478420, + 1479458, + 1482356, + 1627101, + 1774956, + 1826264, + 1826784, + 1912221, + 3283851, + 3329784, + 3492271 + ] + }, + "release_complexity": [ + { + "id": 533631, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 3330, + "track_extraartists": 0, + "labels": 1, + "formats": 2, + "tracks": 3248, + "identifiers": 43, + "videos": 1, + "companies": 0, + "images": 0, + "genres": 2, + "styles": 12, + "total": 6640 + }, + "coverage": 0 + }, + { + "id": 1028981, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 69, + "track_artists": 0, + "track_extraartists": 1512, + "labels": 1, + "formats": 3, + "tracks": 2899, + "identifiers": 174, + "videos": 0, + "companies": 70, + "images": 0, + "genres": 1, + "styles": 3, + "total": 4733 + }, + "coverage": 0 + }, + { + "id": 1946857, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 23, + "track_artists": 364, + "track_extraartists": 3460, + "labels": 2, + "formats": 2, + "tracks": 360, + "identifiers": 0, + "videos": 0, + "companies": 42, + "images": 0, + "genres": 4, + "styles": 5, + "total": 4263 + }, + "coverage": 0 + }, + { + "id": 4703489, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 1, + "track_artists": 451, + "track_extraartists": 3478, + "labels": 1, + "formats": 3, + "tracks": 447, + "identifiers": 78, + "videos": 0, + "companies": 18, + "images": 0, + "genres": 1, + "styles": 2, + "total": 4481 + }, + "coverage": 0 + }, + { + "id": 5355366, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 2, + "track_artists": 0, + "track_extraartists": 754, + "labels": 1, + "formats": 3, + "tracks": 3858, + "identifiers": 1, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 3, + "total": 4624 + }, + "coverage": 0 + }, + { + "id": 7910952, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 701, + "track_extraartists": 4224, + "labels": 1, + "formats": 2, + "tracks": 1033, + "identifiers": 0, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 9, + "total": 5972 + }, + "coverage": 0 + }, + { + "id": 7922727, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 496, + "track_extraartists": 2960, + "labels": 1, + "formats": 2, + "tracks": 791, + "identifiers": 0, + "videos": 1, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 7, + "total": 4260 + }, + "coverage": 0 + }, + { + "id": 8595736, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 91, + "track_artists": 0, + "track_extraartists": 4542, + "labels": 3, + "formats": 2, + "tracks": 858, + "identifiers": 30, + "videos": 1, + "companies": 56, + "images": 0, + "genres": 1, + "styles": 7, + "total": 5592 + }, + "coverage": 0 + }, + { + "id": 8890864, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 3677, + "track_extraartists": 0, + "labels": 1, + "formats": 2, + "tracks": 1411, + "identifiers": 1, + "videos": 0, + "companies": 1, + "images": 0, + "genres": 1, + "styles": 1, + "total": 5096 + }, + "coverage": 0 + }, + { + "id": 8988295, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 1, + "track_artists": 0, + "track_extraartists": 1198, + "labels": 1, + "formats": 2, + "tracks": 3853, + "identifiers": 156, + "videos": 0, + "companies": 2, + "images": 0, + "genres": 1, + "styles": 22, + "total": 5237 + }, + "coverage": 0 + }, + { + "id": 9333727, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 165, + "track_artists": 0, + "track_extraartists": 2813, + "labels": 2, + "formats": 2, + "tracks": 931, + "identifiers": 82, + "videos": 0, + "companies": 71, + "images": 0, + "genres": 1, + "styles": 4, + "total": 4072 + }, + "coverage": 0 + }, + { + "id": 11132045, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 815, + "track_extraartists": 2161, + "labels": 1, + "formats": 2, + "tracks": 1149, + "identifiers": 1, + "videos": 0, + "companies": 2, + "images": 0, + "genres": 1, + "styles": 6, + "total": 4139 + }, + "coverage": 0 + }, + { + "id": 12035854, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 1990, + "track_extraartists": 0, + "labels": 1, + "formats": 3, + "tracks": 1931, + "identifiers": 4, + "videos": 0, + "companies": 3, + "images": 0, + "genres": 1, + "styles": 2, + "total": 3936 + }, + "coverage": 0 + }, + { + "id": 13962894, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 1714, + "track_extraartists": 549, + "labels": 1, + "formats": 9, + "tracks": 1894, + "identifiers": 0, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 3, + "total": 4172 + }, + "coverage": 0 + }, + { + "id": 14533478, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 1773, + "track_extraartists": 668, + "labels": 1, + "formats": 18, + "tracks": 1513, + "identifiers": 0, + "videos": 0, + "companies": 2, + "images": 0, + "genres": 1, + "styles": 10, + "total": 3987 + }, + "coverage": 0 + }, + { + "id": 14905802, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 2318, + "track_extraartists": 0, + "labels": 1, + "formats": 2, + "tracks": 2352, + "identifiers": 3, + "videos": 0, + "companies": 3, + "images": 0, + "genres": 1, + "styles": 1, + "total": 4682 + }, + "coverage": 0 + }, + { + "id": 14934623, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 2184, + "track_extraartists": 0, + "labels": 1, + "formats": 2, + "tracks": 2283, + "identifiers": 3, + "videos": 26, + "companies": 3, + "images": 0, + "genres": 1, + "styles": 2, + "total": 4506 + }, + "coverage": 0 + }, + { + "id": 14934741, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 1940, + "track_extraartists": 0, + "labels": 1, + "formats": 2, + "tracks": 1908, + "identifiers": 3, + "videos": 0, + "companies": 3, + "images": 0, + "genres": 1, + "styles": 1, + "total": 3860 + }, + "coverage": 0 + }, + { + "id": 16790811, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 247, + "track_artists": 0, + "track_extraartists": 2517, + "labels": 1, + "formats": 3, + "tracks": 2269, + "identifiers": 2, + "videos": 0, + "companies": 1, + "images": 0, + "genres": 3, + "styles": 12, + "total": 5056 + }, + "coverage": 0 + }, + { + "id": 16804773, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 3015, + "track_extraartists": 162, + "labels": 1, + "formats": 1, + "tracks": 3214, + "identifiers": 0, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 2, + "total": 6397 + }, + "coverage": 0 + }, + { + "id": 20060518, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 2, + "track_artists": 0, + "track_extraartists": 754, + "labels": 2, + "formats": 2, + "tracks": 3858, + "identifiers": 166, + "videos": 0, + "companies": 154, + "images": 0, + "genres": 1, + "styles": 1, + "total": 4941 + }, + "coverage": 0 + }, + { + "id": 24981379, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 3645, + "track_extraartists": 9, + "labels": 1, + "formats": 8, + "tracks": 3826, + "identifiers": 0, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 3, + "total": 7494 + }, + "coverage": 0 + }, + { + "id": 27248577, + "reason": "seed", + "counts": { + "release_artists": 2, + "release_extraartists": 200, + "track_artists": 966, + "track_extraartists": 1500, + "labels": 1, + "formats": 9, + "tracks": 967, + "identifiers": 135, + "videos": 2, + "companies": 24, + "images": 0, + "genres": 3, + "styles": 5, + "total": 3814 + }, + "coverage": 0 + }, + { + "id": 29206864, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 0, + "track_artists": 0, + "track_extraartists": 0, + "labels": 1, + "formats": 1, + "tracks": 4500, + "identifiers": 0, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 1, + "styles": 1, + "total": 4505 + }, + "coverage": 0 + }, + { + "id": 29948101, + "reason": "seed", + "counts": { + "release_artists": 1, + "release_extraartists": 1, + "track_artists": 0, + "track_extraartists": 4, + "labels": 1, + "formats": 1, + "tracks": 6666, + "identifiers": 0, + "videos": 0, + "companies": 0, + "images": 0, + "genres": 5, + "styles": 9, + "total": 6688 + }, + "coverage": 0 + } + ], + "missing": { + "releases": [], + "masters": [ + 0 + ], + "artists": [ + 194, + 355, + 118760, + 290873, + 335511, + 335553, + 346673, + 403587, + 753375, + 858957, + 1169785, + 1273082, + 1290645, + 1400354, + 1671458, + 1866897, + 1976116, + 2019056, + 2130453, + 2490070, + 2522585, + 2523127, + 2559991, + 2561800, + 2616023, + 2782533, + 2782563, + 2971802, + 3160759, + 3396583, + 3464175, + 3490783, + 3522351, + 3625599, + 3852434, + 3889310, + 3958516, + 4076718, + 4641707, + 5545830, + 6107585, + 6107588, + 6116520, + 6175043, + 6200667, + 6590590, + 6995656, + 7064126, + 7580222, + 7859491, + 8407035, + 8693827, + 9314761, + 10001158, + 10929581, + 13667302, + 14562121, + 15436902, + 15710298, + 16291369 + ], + "labels": [ + 895, + 2345, + 2562, + 5320, + 5723, + 5748, + 7703, + 11354, + 20727, + 21677, + 25487, + 25946, + 27122, + 29711, + 31838, + 34406, + 40396, + 41321, + 44294, + 51038, + 53821, + 58356, + 61063, + 63404, + 66183, + 68856, + 82793, + 89052, + 90091, + 92458, + 95626, + 96303, + 101418, + 102090, + 102930, + 107525, + 108193, + 110180, + 112757, + 114913, + 117377, + 117769, + 120551, + 121076, + 131363, + 137224, + 155176, + 165153, + 178324, + 189014, + 206061, + 252406, + 264447, + 266230, + 266418, + 267254, + 269986, + 272782, + 275405, + 278277, + 278369, + 278648, + 279275, + 281875, + 284806, + 293110, + 295056, + 296832, + 300745, + 309725, + 313190, + 316785, + 321331, + 326345, + 330597, + 337270, + 343911, + 356780, + 393014, + 446837, + 563997, + 608162, + 612872, + 617349, + 627504, + 1351680, + 1507291 + ] + } +} \ No newline at end of file